From 39ec835d578f033d43ca66c3fed7697b8a7f3d8c Mon Sep 17 00:00:00 2001 From: Wen Bo Li <50884368+wenovus@users.noreply.github.com> Date: Mon, 29 Jun 2020 14:32:33 -0700 Subject: [PATCH] Merge ypathgen's generator into ygen's generator (#408) Enhanced generator to handle generation of both `GoStructs` and `PathStructs` --- exampleoc/README.md | 7 +- exampleoc/oc.go | 68697 ++++++------- {exampleocpath => exampleoc}/ocpath.go | 115059 +++++++++++----------- exampleoc/ocpath_augment.go | 6 + exampleoc/update.sh | 3 + exampleocpath/README.md | 8 - exampleocpath/ocpath_augment.go | 6 - exampleocpath/update.sh | 41 - generator/generator.go | 271 +- generator/generator_test.go | 38 + ypathgen/generator/generator.go | 157 - ypathgen/generator/generator_test.go | 59 - ypathgen/path_tests/path_test.go | 141 +- 13 files changed, 92231 insertions(+), 92262 deletions(-) rename {exampleocpath => exampleoc}/ocpath.go (62%) create mode 100644 exampleoc/ocpath_augment.go delete mode 100644 exampleocpath/README.md delete mode 100644 exampleocpath/ocpath_augment.go delete mode 100755 exampleocpath/update.sh delete mode 100644 ypathgen/generator/generator.go delete mode 100644 ypathgen/generator/generator_test.go diff --git a/exampleoc/README.md b/exampleoc/README.md index cf209f2b2..f8f65009c 100644 --- a/exampleoc/README.md +++ b/exampleoc/README.md @@ -1,8 +1,9 @@ # OpenConfig ygot Example Go Structs -This directory contains an example generated set of structs from a subset of the -OpenConfig models. They are used within demo applications in the -[ygot/demo](https://github.com/openconfig/ygot/tree/master/demo) directory. +This directory contains an example generated set of structs and path structs +from a subset of the OpenConfig models. They are used within demo applications +in the [ygot/demo](https://github.com/openconfig/ygot/tree/master/demo) +directory. This package **WILL** change without warning, and **SHOULD NOT** be imported into your application. Rather, you should generate bindings directly using the diff --git a/exampleoc/oc.go b/exampleoc/oc.go index 03a0ac9b5..335a1439a 100644 --- a/exampleoc/oc.go +++ b/exampleoc/oc.go @@ -139790,17 +139790,19 @@ func (t *NetworkInstance_Table) ΛEnumTypeMap() map[string][]reflect.Type { retu // NetworkInstance_TableConnection represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection YANG schema element. type NetworkInstance_TableConnection struct { - ΛMetadata []ygot.Annotation `path:"@" ygotAnnotation:"true"` - AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY `path:"config/address-family|address-family" module:"openconfig-network-instance"` - ΛAddressFamily []ygot.Annotation `path:"config/@address-family|@address-family" ygotAnnotation:"true"` - DefaultImportPolicy E_OpenconfigRoutingPolicy_DefaultPolicyType `path:"config/default-import-policy" module:"openconfig-network-instance"` - ΛDefaultImportPolicy []ygot.Annotation `path:"config/@default-import-policy" ygotAnnotation:"true"` - DstProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE `path:"config/dst-protocol|dst-protocol" module:"openconfig-network-instance"` - ΛDstProtocol []ygot.Annotation `path:"config/@dst-protocol|@dst-protocol" ygotAnnotation:"true"` - ImportPolicy []string `path:"config/import-policy" module:"openconfig-network-instance"` - ΛImportPolicy []ygot.Annotation `path:"config/@import-policy" ygotAnnotation:"true"` - SrcProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE `path:"config/src-protocol|src-protocol" module:"openconfig-network-instance"` - ΛSrcProtocol []ygot.Annotation `path:"config/@src-protocol|@src-protocol" ygotAnnotation:"true"` + ΛMetadata []ygot.Annotation `path:"@" ygotAnnotation:"true"` + AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY `path:"config/address-family|address-family" module:"openconfig-network-instance"` + ΛAddressFamily []ygot.Annotation `path:"config/@address-family|@address-family" ygotAnnotation:"true"` + DefaultImportPolicy E_OpenconfigRoutingPolicy_DefaultPolicyType `path:"config/default-import-policy" module:"openconfig-network-instance"` + ΛDefaultImportPolicy []ygot.Annotation `path:"config/@default-import-policy" ygotAnnotation:"true"` + DisableMetricPropagation *bool `path:"config/disable-metric-propagation" module:"openconfig-network-instance"` + ΛDisableMetricPropagation []ygot.Annotation `path:"config/@disable-metric-propagation" ygotAnnotation:"true"` + DstProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE `path:"config/dst-protocol|dst-protocol" module:"openconfig-network-instance"` + ΛDstProtocol []ygot.Annotation `path:"config/@dst-protocol|@dst-protocol" ygotAnnotation:"true"` + ImportPolicy []string `path:"config/import-policy" module:"openconfig-network-instance"` + ΛImportPolicy []ygot.Annotation `path:"config/@import-policy" ygotAnnotation:"true"` + SrcProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE `path:"config/src-protocol|src-protocol" module:"openconfig-network-instance"` + ΛSrcProtocol []ygot.Annotation `path:"config/@src-protocol|@src-protocol" ygotAnnotation:"true"` } // IsYANGGoStruct ensures that NetworkInstance_TableConnection implements the yang.GoStruct @@ -139836,6 +139838,20 @@ func (t *NetworkInstance_TableConnection) GetDefaultImportPolicy() E_OpenconfigR return t.DefaultImportPolicy } +// GetDisableMetricPropagation retrieves the value of the leaf DisableMetricPropagation from the NetworkInstance_TableConnection +// struct. Caution should be exercised whilst using this method since it will return +// the Go zero value if the field is explicitly unset. If the caller explicitly does +// not care if DisableMetricPropagation is set, it can safely use t.GetDisableMetricPropagation() +// to retrieve the value. In the case that the caller has different actions based on +// whether the leaf is set or unset, it should use 'if t.DisableMetricPropagation == nil' +// before retrieving the leaf's value. +func (t *NetworkInstance_TableConnection) GetDisableMetricPropagation() bool { + if t == nil || t.DisableMetricPropagation == nil { + return false + } + return *t.DisableMetricPropagation +} + // GetDstProtocol retrieves the value of the leaf DstProtocol from the NetworkInstance_TableConnection // struct. Caution should be exercised whilst using this method since it will return // the Go zero value if the field is explicitly unset. If the caller explicitly does @@ -161657,12 +161673,14 @@ const ( OpenconfigBgpTypes_BGP_CAPABILITY_ADD_PATHS E_OpenconfigBgpTypes_BGP_CAPABILITY = 1 // OpenconfigBgpTypes_BGP_CAPABILITY_ASN32 corresponds to the value ASN32 of OpenconfigBgpTypes_BGP_CAPABILITY OpenconfigBgpTypes_BGP_CAPABILITY_ASN32 E_OpenconfigBgpTypes_BGP_CAPABILITY = 2 + // OpenconfigBgpTypes_BGP_CAPABILITY_EXTENDED_NEXTHOP_ENCODING corresponds to the value EXTENDED_NEXTHOP_ENCODING of OpenconfigBgpTypes_BGP_CAPABILITY + OpenconfigBgpTypes_BGP_CAPABILITY_EXTENDED_NEXTHOP_ENCODING E_OpenconfigBgpTypes_BGP_CAPABILITY = 3 // OpenconfigBgpTypes_BGP_CAPABILITY_GRACEFUL_RESTART corresponds to the value GRACEFUL_RESTART of OpenconfigBgpTypes_BGP_CAPABILITY - OpenconfigBgpTypes_BGP_CAPABILITY_GRACEFUL_RESTART E_OpenconfigBgpTypes_BGP_CAPABILITY = 3 + OpenconfigBgpTypes_BGP_CAPABILITY_GRACEFUL_RESTART E_OpenconfigBgpTypes_BGP_CAPABILITY = 4 // OpenconfigBgpTypes_BGP_CAPABILITY_MPBGP corresponds to the value MPBGP of OpenconfigBgpTypes_BGP_CAPABILITY - OpenconfigBgpTypes_BGP_CAPABILITY_MPBGP E_OpenconfigBgpTypes_BGP_CAPABILITY = 4 + OpenconfigBgpTypes_BGP_CAPABILITY_MPBGP E_OpenconfigBgpTypes_BGP_CAPABILITY = 5 // OpenconfigBgpTypes_BGP_CAPABILITY_ROUTE_REFRESH corresponds to the value ROUTE_REFRESH of OpenconfigBgpTypes_BGP_CAPABILITY - OpenconfigBgpTypes_BGP_CAPABILITY_ROUTE_REFRESH E_OpenconfigBgpTypes_BGP_CAPABILITY = 5 + OpenconfigBgpTypes_BGP_CAPABILITY_ROUTE_REFRESH E_OpenconfigBgpTypes_BGP_CAPABILITY = 6 ) // E_OpenconfigBgpTypes_BGP_ERROR_CODE is a derived int64 type which is used to represent @@ -168275,9 +168293,10 @@ var ΛEnum = map[string]map[int64]ygot.EnumDefinition{ "E_OpenconfigBgpTypes_BGP_CAPABILITY": { 1: {Name: "ADD_PATHS", DefiningModule: "openconfig-bgp-types"}, 2: {Name: "ASN32", DefiningModule: "openconfig-bgp-types"}, - 3: {Name: "GRACEFUL_RESTART", DefiningModule: "openconfig-bgp-types"}, - 4: {Name: "MPBGP", DefiningModule: "openconfig-bgp-types"}, - 5: {Name: "ROUTE_REFRESH", DefiningModule: "openconfig-bgp-types"}, + 3: {Name: "EXTENDED_NEXTHOP_ENCODING", DefiningModule: "openconfig-bgp-types"}, + 4: {Name: "GRACEFUL_RESTART", DefiningModule: "openconfig-bgp-types"}, + 5: {Name: "MPBGP", DefiningModule: "openconfig-bgp-types"}, + 6: {Name: "ROUTE_REFRESH", DefiningModule: "openconfig-bgp-types"}, }, "E_OpenconfigBgpTypes_BGP_ERROR_CODE": { 1: {Name: "CEASE", DefiningModule: "openconfig-bgp-types"}, @@ -169413,5405 +169432,4567 @@ var ( // contents of a goyang yang.Entry struct, which defines the schema for the // fields within the struct. ySchema = []byte{ - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x4f, 0x1b, 0xc9, - 0xf6, 0xf6, 0xfd, 0x3e, 0x9f, 0x02, 0x59, 0xff, 0x17, 0x13, 0x29, 0x1d, 0xc0, 0x18, 0x18, 0x22, - 0xdd, 0x7a, 0x44, 0x12, 0x67, 0x86, 0x7b, 0x13, 0xb0, 0x80, 0x64, 0xdf, 0xa3, 0x0c, 0x1b, 0x75, - 0xec, 0x86, 0xb4, 0xb6, 0x69, 0xfb, 0xdf, 0x6e, 0x33, 0x41, 0x33, 0x7c, 0xf7, 0x47, 0x3e, 0xe2, - 0x23, 0xee, 0xae, 0x5a, 0x55, 0x7d, 0xfa, 0x45, 0x7b, 0xcf, 0x64, 0x12, 0x5c, 0xed, 0xae, 0xc3, - 0xb5, 0xae, 0x75, 0xd5, 0x3a, 0xfc, 0xfd, 0x6a, 0x6b, 0x6b, 0x6b, 0xab, 0x72, 0xe6, 0xde, 0x7b, - 0x95, 0x77, 0x5b, 0x95, 0x96, 0xf7, 0xe0, 0x37, 0xbd, 0xca, 0x9b, 0xd1, 0x9f, 0xfe, 0xcb, 0x0f, - 0x5a, 0x95, 0x77, 0x5b, 0xbb, 0xe3, 0xff, 0xfc, 0xd0, 0x09, 0x6e, 0xfd, 0xbb, 0xca, 0xbb, 0xad, - 0x9d, 0xf1, 0x1f, 0x7c, 0xf4, 0xc3, 0xca, 0xbb, 0xad, 0xd1, 0x10, 0xc3, 0x3f, 0x70, 0x9b, 0xed, - 0xb9, 0x3f, 0x98, 0x1b, 0x7b, 0xf0, 0x97, 0x6f, 0xe6, 0xff, 0x6a, 0xfe, 0x01, 0xd3, 0x3f, 0x5e, - 0x7c, 0xd0, 0xf4, 0x2f, 0x1a, 0xa1, 0x77, 0xeb, 0xff, 0x5c, 0x7a, 0xc4, 0xdc, 0x63, 0x3a, 0x4d, - 0x67, 0xf9, 0x49, 0xc3, 0x9f, 0xb8, 0xec, 0xf4, 0xc3, 0xa6, 0xb7, 0xf2, 0xd3, 0xa3, 0x6f, 0xe3, - 0x3d, 0xfe, 0xd5, 0x09, 0x07, 0x5f, 0xa8, 0xd2, 0x1d, 0x3d, 0xe8, 0xcd, 0xea, 0x1f, 0xfc, 0xdd, - 0xed, 0x1d, 0x87, 0x77, 0xfd, 0x7b, 0x2f, 0x88, 0x2a, 0xef, 0xb6, 0xa2, 0xb0, 0xef, 0xad, 0xf9, - 0xc1, 0x99, 0x9f, 0x9a, 0x7c, 0xaf, 0xa5, 0x1f, 0x7c, 0x9a, 0xfb, 0x93, 0xa7, 0x85, 0x37, 0x5e, - 0x9c, 0xe2, 0xd9, 0xa9, 0x76, 0x7a, 0x5e, 0xd4, 0x5b, 0xff, 0x3a, 0x33, 0xf3, 0x3e, 0xfa, 0xc9, - 0x35, 0x5f, 0x72, 0xf5, 0x22, 0x6c, 0x5c, 0x8c, 0x38, 0x8b, 0x12, 0x7f, 0x71, 0xe2, 0x2e, 0x52, - 0xe2, 0xc5, 0x4a, 0xbc, 0x68, 0x89, 0x16, 0x6f, 0xf5, 0x22, 0xae, 0x59, 0xcc, 0x8d, 0x8b, 0xba, - 0xb8, 0xb8, 0x9b, 0x67, 0x61, 0x61, 0x8d, 0x37, 0xcd, 0xc1, 0xcb, 0x4b, 0x1d, 0x7b, 0xc9, 0x93, - 0x2c, 0x7d, 0xf2, 0x2d, 0x90, 0x74, 0x2b, 0x28, 0x6f, 0x09, 0xe5, 0xad, 0xa1, 0xb4, 0x45, 0x5e, - 0xde, 0x2a, 0x1b, 0xb6, 0x4c, 0xec, 0xad, 0x33, 0xb7, 0x85, 0xbc, 0x20, 0x0a, 0x7d, 0xaf, 0x17, - 0x7f, 0x06, 0x67, 0xb7, 0xd3, 0xe4, 0xc3, 0x31, 0xa7, 0x22, 0xde, 0xd6, 0x4a, 0xbc, 0xc5, 0x54, - 0xb6, 0x9a, 0xfa, 0x96, 0x53, 0xdd, 0x7a, 0xda, 0x5b, 0x50, 0x7b, 0x2b, 0x6a, 0x6d, 0xc9, 0x78, - 0x5b, 0x33, 0xe6, 0x16, 0x4d, 0xbc, 0x55, 0x97, 0xb6, 0xec, 0x63, 0xf2, 0x79, 0x5f, 0xdc, 0xb8, - 0x8f, 0x49, 0xe7, 0x3d, 0xd9, 0xf6, 0x55, 0xde, 0xc6, 0x3a, 0xdb, 0x59, 0x7f, 0x5b, 0xeb, 0x6e, - 0x6f, 0xb1, 0x6d, 0x2e, 0xb6, 0xdd, 0x45, 0xb6, 0x7d, 0xb2, 0xed, 0x9f, 0xf0, 0x18, 0x28, 0x1f, - 0x87, 0x99, 0x63, 0x11, 0xf9, 0x9d, 0xa0, 0xa7, 0xbe, 0x5a, 0xcf, 0x87, 0x63, 0x34, 0x90, 0xe2, - 0x14, 0xab, 0x1d, 0x11, 0xed, 0xa3, 0x22, 0x71, 0x64, 0xe4, 0x8e, 0x8e, 0xd4, 0x11, 0x12, 0x3f, - 0x4a, 0xe2, 0x47, 0x4a, 0xf4, 0x68, 0xa9, 0x1d, 0x31, 0xc5, 0xa3, 0xa6, 0x7d, 0xe4, 0xa6, 0x03, - 0x34, 0x27, 0x7b, 0x56, 0x73, 0x91, 0x27, 0xdb, 0x6e, 0x3c, 0x9e, 0xe6, 0x82, 0xe8, 0x1d, 0x44, - 0xb1, 0x03, 0x29, 0x79, 0x30, 0xe5, 0x0f, 0xa8, 0xf4, 0x41, 0x35, 0x76, 0x60, 0x8d, 0x1d, 0x5c, - 0x23, 0x07, 0x58, 0xef, 0x20, 0x6b, 0x1e, 0x68, 0xb1, 0x83, 0x3d, 0x1d, 0xe8, 0xb6, 0x13, 0xfe, - 0xe5, 0x86, 0x2d, 0x3f, 0xb8, 0x73, 0x46, 0xd6, 0x51, 0x6e, 0x9f, 0x4c, 0x76, 0xf2, 0xf2, 0x23, - 0x84, 0x96, 0x75, 0x0c, 0x03, 0x3b, 0x42, 0xc3, 0x49, 0xc1, 0x81, 0x09, 0x58, 0x30, 0x07, 0x0f, - 0xa6, 0x60, 0xc2, 0x38, 0x5c, 0x18, 0x87, 0x0d, 0xa3, 0xf0, 0x21, 0x03, 0x23, 0x42, 0x70, 0x32, - 0x7d, 0xd3, 0xab, 0xc7, 0xae, 0x67, 0x66, 0xbf, 0xfa, 0x2d, 0x2f, 0x88, 0xfc, 0xe8, 0x31, 0xf4, - 0x6e, 0x25, 0x37, 0xed, 0x84, 0x09, 0xec, 0x0b, 0x8e, 0x79, 0x32, 0xfe, 0xaa, 0xef, 0xdd, 0x9e, - 0x81, 0xe3, 0x30, 0x99, 0x90, 0x4f, 0xe7, 0x17, 0xff, 0x3e, 0xbe, 0xf8, 0x78, 0x72, 0xf6, 0xdb, - 0xcd, 0xf1, 0x87, 0xab, 0x93, 0xf3, 0x33, 0xe9, 0x63, 0xf1, 0xd5, 0x6d, 0xf7, 0x87, 0xd2, 0xd7, - 0x37, 0xd1, 0x71, 0x07, 0xbf, 0xfe, 0x16, 0x1f, 0x71, 0x6e, 0x6a, 0x2e, 0xea, 0xff, 0xb7, 0xfe, - 0xe1, 0xaa, 0x22, 0xfe, 0x90, 0xa7, 0x37, 0x79, 0x9b, 0x89, 0x8f, 0x17, 0xe7, 0x0d, 0xe6, 0x61, - 0xab, 0x72, 0xfc, 0xe1, 0x43, 0xbd, 0x61, 0x62, 0x47, 0x88, 0x8e, 0x78, 0x9d, 0x35, 0xab, 0xf0, - 0x2a, 0x03, 0x3b, 0xa5, 0xd2, 0xee, 0x98, 0xa3, 0x96, 0x33, 0x63, 0x0b, 0x59, 0xc0, 0x8f, 0xde, - 0xad, 0xdb, 0x6f, 0x0f, 0x4d, 0xfd, 0xe9, 0xf9, 0x6f, 0x37, 0x67, 0xe7, 0x67, 0x75, 0xe8, 0x2a, - 0x74, 0x15, 0xba, 0x0a, 0x5d, 0x2d, 0x35, 0x5d, 0x1d, 0x80, 0x21, 0x3c, 0x75, 0x79, 0x4e, 0x86, - 0x06, 0x02, 0x86, 0x36, 0x9c, 0x8b, 0xcb, 0x3f, 0x2e, 0x4f, 0xcf, 0x7f, 0x83, 0xa5, 0x59, 0x67, - 0x69, 0xa9, 0x4a, 0x91, 0xc7, 0x41, 0xd0, 0x89, 0x5c, 0x31, 0x7e, 0x57, 0xe9, 0x35, 0x7f, 0x78, - 0xf7, 0x6e, 0xd7, 0x8d, 0x7e, 0x0c, 0xf6, 0xd5, 0x76, 0xa7, 0xeb, 0x05, 0xa3, 0x5b, 0x83, 0x81, - 0x25, 0xdb, 0x1e, 0xff, 0x7f, 0x18, 0xcf, 0x35, 0xf9, 0xcd, 0xf6, 0x4c, 0xb4, 0xc6, 0xf4, 0xf7, - 0x8f, 0xdb, 0xe3, 0xdb, 0xbe, 0xed, 0xf1, 0x9d, 0xc3, 0xab, 0x74, 0xa6, 0x58, 0x63, 0x7a, 0x2b, - 0xbd, 0xc8, 0x8d, 0x3c, 0xb9, 0xcb, 0x97, 0xd1, 0x70, 0x19, 0xbb, 0x7b, 0xa9, 0x72, 0xf7, 0x92, - 0x01, 0x76, 0xca, 0xdd, 0x4b, 0x02, 0x17, 0x91, 0xbb, 0x17, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, - 0x9c, 0x59, 0xee, 0x5e, 0x8a, 0xe6, 0xd3, 0x72, 0xf7, 0xc2, 0xdd, 0xcb, 0xfc, 0x3c, 0x70, 0xf7, - 0x92, 0x92, 0x57, 0xcf, 0xdd, 0x0b, 0x77, 0x2f, 0xd0, 0x55, 0xe8, 0x2a, 0x74, 0xb5, 0xe4, 0x74, - 0x95, 0xbb, 0x97, 0xd5, 0x73, 0xc2, 0xdd, 0x0b, 0x77, 0x2f, 0xa9, 0xb3, 0x34, 0xee, 0x5e, 0x5e, - 0xba, 0x7b, 0x19, 0x5d, 0x39, 0xa4, 0x75, 0xf5, 0x62, 0x35, 0xd7, 0x46, 0x68, 0x2d, 0xc4, 0xd7, - 0xa0, 0xa2, 0x75, 0x01, 0x15, 0xf6, 0x9b, 0x51, 0x30, 0xf1, 0x04, 0x9b, 0xed, 0x9b, 0xe3, 0x66, - 0xfb, 0xd2, 0x8b, 0x06, 0xff, 0xaa, 0x0f, 0x1e, 0x72, 0x73, 0x3c, 0x7e, 0xc8, 0x2b, 0x3b, 0x0b, - 0xa4, 0xb0, 0x38, 0xba, 0x39, 0x4c, 0x32, 0xb9, 0x4b, 0x24, 0x0f, 0x9a, 0xf0, 0x20, 0x48, 0x1e, - 0x34, 0x08, 0x68, 0xda, 0xc9, 0x83, 0x2d, 0xaf, 0xd7, 0x0c, 0xfd, 0xae, 0x88, 0x79, 0x9a, 0x29, - 0xd0, 0xf3, 0x3c, 0xa8, 0xcc, 0x55, 0xf6, 0x0e, 0x69, 0x84, 0x29, 0x38, 0xfd, 0x5c, 0x65, 0x67, - 0x80, 0x3f, 0x8a, 0x39, 0xf1, 0x33, 0x31, 0x26, 0xa1, 0x1f, 0xdc, 0x49, 0xec, 0xb7, 0x89, 0xc1, - 0xfc, 0x35, 0x8f, 0x81, 0x3b, 0xde, 0xff, 0xf6, 0xbd, 0xa0, 0xe9, 0x39, 0x7e, 0x4b, 0x30, 0x7c, - 0x67, 0x66, 0x50, 0x90, 0x0f, 0xe4, 0x03, 0xf9, 0x32, 0x85, 0x7c, 0x7d, 0x3f, 0x88, 0xf6, 0xaa, - 0x82, 0xc8, 0x77, 0x28, 0x30, 0xd4, 0x85, 0x1b, 0xdc, 0x79, 0x62, 0xfa, 0x9e, 0xa0, 0xd8, 0xfb, - 0xd9, 0x0f, 0x0c, 0xdc, 0x1f, 0x88, 0xde, 0xf2, 0x4c, 0x87, 0x1d, 0xaa, 0xa4, 0x06, 0xc6, 0xfd, - 0x14, 0x8e, 0x5c, 0xf4, 0x8f, 0xfe, 0x9d, 0x3f, 0xac, 0x63, 0xb8, 0x23, 0x27, 0x8f, 0x09, 0x8a, - 0xdc, 0x9f, 0xdd, 0x9f, 0xb9, 0x5b, 0xaa, 0x5a, 0xf5, 0xa8, 0x76, 0x74, 0x70, 0x58, 0x3d, 0xda, - 0xcf, 0xd1, 0x9a, 0x65, 0x44, 0xd2, 0xbc, 0x46, 0xae, 0x4b, 0x43, 0xae, 0xd3, 0x09, 0x53, 0xb7, - 0x23, 0xa4, 0xf9, 0x41, 0xb7, 0x1f, 0x39, 0x7e, 0x10, 0x79, 0xe1, 0xad, 0xab, 0x53, 0x3d, 0x6d, - 0x7a, 0xd3, 0xb7, 0x30, 0x20, 0xd2, 0x1a, 0xd2, 0x1a, 0xd2, 0x5a, 0x9c, 0x01, 0xa8, 0xcb, 0x85, - 0x5b, 0x89, 0x5b, 0x99, 0x3d, 0xb7, 0x32, 0xb3, 0x17, 0xb2, 0x0b, 0xa6, 0x36, 0xc7, 0x49, 0x71, - 0xd3, 0x77, 0x70, 0x42, 0xef, 0x56, 0x0e, 0x01, 0xe7, 0x87, 0x05, 0x08, 0xe3, 0x00, 0xa1, 0x7f, - 0x0b, 0x0e, 0x1a, 0xc0, 0x41, 0xff, 0x96, 0x14, 0x39, 0x59, 0x9e, 0x63, 0x86, 0xef, 0x08, 0x1f, - 0x77, 0xf1, 0x63, 0x6f, 0xe2, 0xf8, 0x1b, 0x83, 0x01, 0x53, 0x70, 0x60, 0x1c, 0x16, 0x8c, 0xc3, - 0x83, 0x49, 0x98, 0x10, 0xd6, 0x9e, 0xa4, 0x12, 0x01, 0x84, 0xe0, 0x63, 0x99, 0x33, 0x98, 0x0b, - 0xd2, 0xd5, 0x55, 0x31, 0x36, 0x81, 0x8b, 0xb4, 0x52, 0x2a, 0x0d, 0x32, 0x26, 0xc1, 0xc6, 0x38, - 0xe8, 0x98, 0x06, 0x1f, 0x6b, 0x20, 0x64, 0x0d, 0x8c, 0x6c, 0x80, 0x92, 0x2c, 0x38, 0x09, 0x83, - 0xd4, 0x74, 0x02, 0xc4, 0x13, 0x21, 0x96, 0x76, 0x7b, 0xdb, 0x73, 0x6f, 0x65, 0x93, 0x21, 0x96, - 0x98, 0xcb, 0xa1, 0x81, 0xb1, 0x1b, 0x53, 0xaf, 0x75, 0xb0, 0x2d, 0xde, 0x4d, 0x01, 0xb2, 0xb7, - 0xf8, 0x07, 0xe3, 0xff, 0x1e, 0x86, 0x99, 0xbe, 0xca, 0xe6, 0xc6, 0x91, 0xbc, 0x4f, 0xeb, 0xf5, - 0xbf, 0x5b, 0xb0, 0x47, 0x73, 0x4f, 0xc1, 0x24, 0x61, 0x92, 0x30, 0x49, 0x98, 0x24, 0x4c, 0x52, - 0x4c, 0x93, 0xf4, 0xed, 0xd9, 0x24, 0xfd, 0x9f, 0x66, 0x3f, 0x0c, 0xbd, 0x20, 0xfa, 0xe5, 0xf5, - 0xf6, 0xdb, 0xb7, 0xdb, 0xd3, 0x9f, 0xb8, 0x1e, 0x7f, 0x64, 0x16, 0x67, 0x7b, 0x2b, 0xfe, 0x6c, - 0x3a, 0x72, 0xcb, 0xfb, 0x99, 0x59, 0xeb, 0x96, 0x29, 0xef, 0xaf, 0xfe, 0x33, 0x92, 0x4d, 0x49, - 0x34, 0x27, 0x24, 0x74, 0x9a, 0x8e, 0xf7, 0x33, 0x7a, 0x17, 0x79, 0x6d, 0xef, 0xde, 0x8b, 0xc2, - 0x47, 0xa7, 0x13, 0x38, 0xcd, 0x1f, 0xc3, 0x98, 0x2b, 0xa3, 0xe2, 0xc2, 0xad, 0xdb, 0xee, 0x99, - 0x54, 0x17, 0xb2, 0x26, 0x2c, 0x5c, 0x4b, 0x09, 0xad, 0xb2, 0xd7, 0x33, 0xcf, 0x94, 0xce, 0xd4, - 0x35, 0xcd, 0xdc, 0xad, 0x84, 0xc8, 0xa5, 0x8d, 0xdc, 0xc2, 0x48, 0x14, 0xa8, 0x90, 0xa9, 0x70, - 0xb8, 0x4c, 0x7e, 0x05, 0x2a, 0x1d, 0x2e, 0x19, 0x24, 0x69, 0x75, 0xb7, 0x8a, 0xba, 0x9b, 0x1f, - 0x16, 0x8b, 0xba, 0x8b, 0xba, 0x8b, 0x2b, 0x8d, 0x2b, 0x8d, 0x2b, 0x8d, 0x2b, 0x8d, 0x2b, 0x8d, - 0xba, 0xbb, 0x9e, 0xd1, 0xa2, 0xee, 0x62, 0x92, 0x30, 0x49, 0x98, 0x24, 0x4c, 0x52, 0x66, 0x4d, - 0x12, 0xea, 0x6e, 0x7a, 0xde, 0x5f, 0xce, 0x25, 0x38, 0x81, 0x82, 0x56, 0x82, 0x0a, 0x1c, 0xb1, - 0xee, 0x89, 0x57, 0xb0, 0x22, 0xa2, 0x5a, 0x6e, 0x2a, 0x8b, 0x75, 0x32, 0xf8, 0x0a, 0x27, 0x93, - 0xe7, 0xde, 0x4c, 0x7f, 0x77, 0xe1, 0xdd, 0xd2, 0x88, 0x86, 0x46, 0x34, 0x09, 0x68, 0x27, 0xc9, - 0x46, 0x24, 0x1b, 0xe5, 0x1d, 0x80, 0xa9, 0x02, 0x99, 0x99, 0xb5, 0x30, 0x5b, 0x0d, 0x72, 0xde, - 0xec, 0x65, 0x3a, 0x97, 0xbd, 0xfb, 0x50, 0x13, 0x48, 0x60, 0x1f, 0x8c, 0x42, 0xd6, 0xfa, 0x00, - 0x4f, 0xbb, 0xff, 0x8d, 0x9c, 0x7b, 0x37, 0x6a, 0xfe, 0x20, 0x77, 0x5d, 0xc1, 0x1a, 0x3d, 0xcf, - 0x1e, 0x19, 0xec, 0x6a, 0x5b, 0x90, 0x0c, 0x76, 0xcb, 0x87, 0x15, 0x6a, 0x69, 0xf0, 0x30, 0x67, - 0x83, 0x60, 0x8a, 0xa5, 0x71, 0xb6, 0xbc, 0x5e, 0xe4, 0x07, 0x43, 0x5a, 0xe4, 0xb8, 0xad, 0x56, - 0xe8, 0xf5, 0x7a, 0xf2, 0x41, 0x3f, 0xab, 0x1e, 0x42, 0xfb, 0x98, 0xac, 0xc1, 0x85, 0x29, 0xd8, - 0x30, 0x0e, 0x1f, 0xc6, 0x61, 0xc4, 0x02, 0x9c, 0xc8, 0x49, 0x8f, 0x5b, 0xf9, 0x68, 0x25, 0xd3, - 0x7d, 0xa8, 0x39, 0xe2, 0xbb, 0xe0, 0xb9, 0x34, 0xad, 0xe0, 0x98, 0x0d, 0x37, 0x8a, 0xbc, 0x30, - 0x10, 0xef, 0xc5, 0x52, 0xf9, 0xcf, 0x2f, 0xbf, 0x7c, 0xdb, 0x71, 0x8e, 0xae, 0xff, 0xf9, 0xb6, - 0xeb, 0x1c, 0x5d, 0x8f, 0x7e, 0xbb, 0x3b, 0xfc, 0xd7, 0xe8, 0xf7, 0xd5, 0x6f, 0x3b, 0x4e, 0x6d, - 0xf2, 0xfb, 0xfd, 0x6f, 0x3b, 0xce, 0xfe, 0xf5, 0xeb, 0x3f, 0xff, 0x7c, 0xfb, 0xfa, 0xef, 0xbd, - 0xa7, 0xe4, 0x1f, 0xdc, 0x1e, 0x3f, 0xec, 0xf5, 0x3f, 0xbf, 0x7c, 0xdb, 0x75, 0xaa, 0xd7, 0x93, - 0xff, 0xd8, 0xfb, 0xb6, 0xe3, 0x54, 0xaf, 0x5f, 0xbf, 0xfe, 0x1f, 0xb9, 0x3d, 0x7c, 0x5d, 0xa0, - 0x30, 0xd8, 0x56, 0xaf, 0xd9, 0x35, 0x60, 0x10, 0x07, 0xa3, 0x62, 0x01, 0xb1, 0x80, 0x58, 0xc0, - 0xd2, 0x5a, 0x40, 0x41, 0x0c, 0x98, 0xc5, 0x01, 0xc9, 0x26, 0x6a, 0xb2, 0x35, 0x8a, 0x27, 0xbf, - 0x0c, 0x84, 0x47, 0x98, 0xa8, 0x59, 0x6c, 0x08, 0x60, 0x97, 0x86, 0x37, 0x54, 0xc3, 0x78, 0x3a, - 0xbe, 0xc1, 0xba, 0xb8, 0xc2, 0x87, 0x6d, 0x7e, 0x49, 0xdd, 0x9f, 0xb9, 0x5f, 0xd2, 0x83, 0xbd, - 0x1c, 0xaf, 0x69, 0x46, 0x63, 0x66, 0x8a, 0x44, 0x2e, 0x7f, 0x74, 0xba, 0x4e, 0xdb, 0xbf, 0xf7, - 0x23, 0x79, 0x86, 0xf9, 0x3c, 0x34, 0x34, 0x13, 0x9a, 0x09, 0xcd, 0x2c, 0x2d, 0xcd, 0xec, 0xfb, - 0x41, 0xf4, 0x2b, 0x3c, 0x13, 0x9e, 0x09, 0xcf, 0x2c, 0x2c, 0xcf, 0xac, 0xee, 0xef, 0x43, 0x34, - 0x21, 0x9a, 0xeb, 0x97, 0xb1, 0x1b, 0x76, 0xa2, 0x4e, 0xb3, 0xd3, 0x96, 0xe7, 0x99, 0xd3, 0x91, - 0xa1, 0x99, 0xd0, 0x4c, 0x68, 0x66, 0x69, 0x69, 0xa6, 0xdf, 0x75, 0x26, 0x50, 0xe0, 0x44, 0x83, - 0xa7, 0x18, 0xb8, 0xd4, 0x3b, 0x12, 0x1c, 0x73, 0x3c, 0x13, 0x99, 0x67, 0x9c, 0xa6, 0x68, 0xbc, - 0x41, 0x3a, 0x6f, 0x98, 0xd6, 0x9b, 0x9b, 0x6c, 0x2b, 0x34, 0xdf, 0x12, 0x37, 0xb4, 0x45, 0xfb, - 0x6d, 0x32, 0x45, 0x83, 0x6e, 0x80, 0x15, 0x77, 0x20, 0xad, 0xa5, 0xaf, 0xee, 0xd7, 0x0a, 0xb4, - 0xf8, 0xaf, 0xf2, 0x31, 0xea, 0x75, 0x96, 0x33, 0x95, 0x0d, 0x1a, 0x2a, 0xbf, 0xe5, 0x05, 0x91, - 0x1f, 0x3d, 0x1a, 0xce, 0x52, 0x36, 0x61, 0xaf, 0x4e, 0xc6, 0x5f, 0xfd, 0xbd, 0xdb, 0x33, 0x98, - 0xf7, 0x3f, 0x99, 0xa8, 0x93, 0xc6, 0x4d, 0xe3, 0xe2, 0xfc, 0xea, 0xfc, 0xc3, 0xf9, 0x69, 0xc5, - 0xa4, 0x3e, 0xd0, 0x33, 0x66, 0x81, 0xcd, 0x5a, 0xe1, 0xc5, 0xc9, 0xba, 0xb8, 0xfc, 0xda, 0xa8, - 0xe4, 0xd1, 0xa6, 0xd8, 0x9b, 0xa2, 0x93, 0xdf, 0x3e, 0x33, 0x45, 0x2f, 0x4f, 0xd1, 0xd5, 0x07, - 0x66, 0x68, 0xc3, 0x26, 0xfa, 0xc0, 0x26, 0xda, 0x30, 0x45, 0x5f, 0x3e, 0x32, 0x43, 0x2f, 0xcf, - 0xd0, 0x6f, 0x17, 0x75, 0x66, 0xe8, 0x65, 0xdb, 0x7f, 0xf2, 0x99, 0x19, 0x7a, 0x71, 0x86, 0x8e, - 0xbf, 0x5c, 0xfd, 0xce, 0x14, 0xbd, 0x38, 0x45, 0xa7, 0xd5, 0x2b, 0x93, 0x48, 0x64, 0x64, 0xe4, - 0x6b, 0x6e, 0x90, 0x2c, 0x7f, 0x1f, 0x91, 0x72, 0xd0, 0xc3, 0x3b, 0x04, 0x73, 0x29, 0x62, 0x0b, - 0xe3, 0x73, 0x9b, 0xa4, 0x3d, 0xa3, 0xdc, 0x26, 0x2d, 0x3c, 0x80, 0xdb, 0x24, 0x59, 0xd3, 0x47, - 0x76, 0x18, 0xd9, 0x61, 0x79, 0xb6, 0x8a, 0x54, 0x08, 0x5a, 0x59, 0x95, 0xa6, 0xfb, 0x50, 0xcb, - 0x71, 0x0f, 0x72, 0xea, 0xa1, 0x59, 0x65, 0x1d, 0x94, 0xae, 0xa0, 0x74, 0x45, 0xc2, 0xf7, 0xa2, - 0x74, 0x05, 0xce, 0x09, 0xce, 0x09, 0xce, 0x09, 0xce, 0x09, 0xce, 0x09, 0xce, 0x89, 0x41, 0xc9, - 0x8e, 0xd2, 0x15, 0x58, 0x40, 0x2c, 0x20, 0x16, 0x90, 0xd2, 0x15, 0x62, 0xbf, 0x48, 0x29, 0x9c, - 0x1b, 0x9e, 0x94, 0xc2, 0xd5, 0x4b, 0x4a, 0xe9, 0x8a, 0x74, 0xd7, 0x94, 0xfb, 0x60, 0xe3, 0xe4, - 0x92, 0xd2, 0x15, 0xd0, 0x4c, 0x68, 0x26, 0x34, 0x93, 0xd2, 0x15, 0xf0, 0x4c, 0x78, 0x26, 0x3c, - 0x53, 0x75, 0x49, 0x29, 0x5d, 0x01, 0xd1, 0x7c, 0x71, 0x19, 0x29, 0x5d, 0x01, 0xcd, 0x84, 0x66, - 0x42, 0x33, 0x29, 0x5d, 0xb1, 0x30, 0x13, 0x94, 0xae, 0xa0, 0x74, 0x85, 0x5d, 0x9a, 0x6f, 0x89, - 0x1b, 0xda, 0xa2, 0xfd, 0x36, 0x99, 0xa2, 0x41, 0x37, 0xc0, 0x8a, 0x3b, 0x90, 0xd6, 0xd2, 0x53, - 0xba, 0x22, 0x85, 0x51, 0x29, 0x5d, 0x41, 0xe9, 0x8a, 0x17, 0x27, 0x8a, 0xd2, 0x15, 0xc9, 0x26, - 0x8b, 0xd2, 0x15, 0x1b, 0xa7, 0x88, 0xd2, 0x15, 0x1b, 0xa7, 0x88, 0xd2, 0x15, 0x1b, 0x37, 0x11, - 0xa5, 0x2b, 0x36, 0x4d, 0x11, 0xa5, 0x2b, 0x36, 0xcd, 0x10, 0xa5, 0x2b, 0x36, 0xda, 0x7e, 0x4a, - 0x57, 0x6c, 0x98, 0x21, 0x4a, 0x57, 0x6c, 0x9c, 0x22, 0x4a, 0x57, 0x6c, 0x71, 0x83, 0x64, 0x63, - 0xab, 0x53, 0xba, 0x82, 0xdb, 0xa4, 0xf1, 0xf8, 0xdc, 0x26, 0xad, 0x7b, 0x00, 0xb7, 0x49, 0x62, - 0x22, 0x12, 0xd9, 0x61, 0x64, 0x87, 0x99, 0xb6, 0x8a, 0x94, 0xae, 0x58, 0x5b, 0xba, 0x62, 0x54, - 0xb1, 0x21, 0xad, 0xca, 0x15, 0xaf, 0x2c, 0x2e, 0x88, 0xd4, 0x42, 0xc8, 0x2e, 0x40, 0x45, 0xab, - 0x78, 0x47, 0xd8, 0x6f, 0x46, 0xc1, 0x18, 0x49, 0x8f, 0x9b, 0xed, 0x9b, 0xe3, 0x66, 0xfb, 0xd2, - 0x8b, 0x06, 0xff, 0xaa, 0x0f, 0x9e, 0x70, 0x73, 0x32, 0x78, 0xc2, 0x2b, 0x3b, 0x4b, 0xa3, 0xb0, - 0x2c, 0x03, 0xf4, 0x3f, 0x50, 0x5e, 0x8c, 0x59, 0x1b, 0x72, 0xa0, 0x38, 0x8f, 0x9a, 0xc5, 0x46, - 0xb4, 0x79, 0xa2, 0x04, 0x2f, 0x94, 0xe6, 0x81, 0x52, 0xbc, 0x4f, 0x9c, 0xe7, 0x89, 0xf3, 0x3a, - 0x03, 0x3c, 0xce, 0x2e, 0xa4, 0xe9, 0x16, 0x07, 0xa9, 0x34, 0x27, 0xfb, 0x57, 0xa8, 0x00, 0xd0, - 0x78, 0xbc, 0x8c, 0x55, 0x00, 0xda, 0xa1, 0x02, 0x50, 0x66, 0x9c, 0x34, 0x2a, 0x00, 0xd9, 0x3e, - 0xe4, 0xd3, 0x81, 0xa8, 0x00, 0x84, 0xc6, 0x83, 0xc6, 0x83, 0xc6, 0x93, 0x82, 0xc6, 0x73, 0x80, - 0xc6, 0x33, 0x94, 0x5d, 0x5c, 0xe7, 0xf6, 0xd8, 0xf9, 0x74, 0xfd, 0xf7, 0xee, 0x9b, 0xda, 0xd3, - 0xbb, 0xd7, 0x7f, 0x1f, 0x3e, 0x2d, 0xfe, 0xe1, 0x3f, 0xab, 0x7e, 0x6c, 0xf7, 0xcd, 0xe1, 0xd3, - 0xbb, 0x35, 0x7f, 0x73, 0xf0, 0xf4, 0x2e, 0xe6, 0x18, 0xfb, 0x4f, 0xbf, 0x2c, 0xfd, 0xe8, 0xe0, - 0xcf, 0xab, 0xeb, 0x3e, 0x50, 0x5b, 0xf3, 0x81, 0xbd, 0x75, 0x1f, 0xd8, 0x5b, 0xf3, 0x81, 0xb5, - 0x5f, 0xa9, 0xba, 0xe6, 0x03, 0xfb, 0x4f, 0xff, 0x2c, 0xfd, 0xfc, 0x2f, 0xab, 0x7f, 0xf4, 0xe0, - 0xe9, 0xf5, 0x3f, 0xeb, 0xfe, 0xee, 0xf0, 0xe9, 0x9f, 0x77, 0xaf, 0x5f, 0x6f, 0xff, 0xb2, 0x5b, - 0xfd, 0xb6, 0xe3, 0xfc, 0x3a, 0xd2, 0xc6, 0x76, 0xaf, 0x97, 0x24, 0xb3, 0x91, 0x04, 0x46, 0x59, - 0xa4, 0x8d, 0xa4, 0xe1, 0xb6, 0xdd, 0xf9, 0xcb, 0x69, 0xbb, 0xdf, 0xbd, 0xb6, 0x59, 0xde, 0x30, - 0xf3, 0x1c, 0xa8, 0x03, 0xd4, 0x01, 0xea, 0x50, 0x6e, 0xea, 0x20, 0x0e, 0x07, 0xb3, 0x90, 0x70, - 0x48, 0x76, 0xbb, 0xf0, 0xe0, 0x64, 0xb7, 0x5b, 0x3a, 0x77, 0xf3, 0x4b, 0x5a, 0x80, 0xec, 0xf6, - 0xdd, 0x9d, 0xda, 0xaf, 0xfb, 0x87, 0x64, 0xb8, 0x8b, 0x8f, 0x46, 0x9d, 0xce, 0x8d, 0xf4, 0x93, - 0x3a, 0x9d, 0x90, 0x4d, 0xc8, 0x66, 0xa9, 0xc9, 0x26, 0x75, 0x3a, 0x61, 0x98, 0x30, 0xcc, 0x42, - 0x33, 0x4c, 0xea, 0x74, 0x42, 0x2e, 0x5f, 0x5a, 0x46, 0xea, 0x74, 0x42, 0x33, 0xa1, 0x99, 0xd0, - 0x4c, 0xea, 0x74, 0xc2, 0x33, 0xe1, 0x99, 0xf0, 0x4c, 0xd5, 0x25, 0xa5, 0x4e, 0x27, 0x44, 0xf3, - 0xc5, 0x65, 0xa4, 0x4e, 0x27, 0x34, 0x13, 0x9a, 0x09, 0xcd, 0xa4, 0x4e, 0xe7, 0xc2, 0x4c, 0x50, - 0xa7, 0x93, 0x3a, 0x9d, 0x76, 0x69, 0xbe, 0x25, 0x6e, 0x68, 0x8b, 0xf6, 0xdb, 0x64, 0x8a, 0x06, - 0xdd, 0x00, 0x2b, 0xee, 0x40, 0x5a, 0x4b, 0x4f, 0x9d, 0xce, 0x14, 0x46, 0xa5, 0x4e, 0x27, 0x75, - 0x3a, 0x5f, 0x9c, 0x28, 0xea, 0x74, 0x26, 0x9b, 0x2c, 0xea, 0x74, 0x6e, 0x9c, 0x22, 0xea, 0x74, - 0x6e, 0x9c, 0x22, 0xea, 0x74, 0x6e, 0xdc, 0x44, 0xd4, 0xe9, 0xdc, 0x34, 0x45, 0xd4, 0xe9, 0xdc, - 0x34, 0x43, 0xd4, 0xe9, 0xdc, 0x68, 0xfb, 0xa9, 0xd3, 0xb9, 0x61, 0x86, 0xa8, 0xd3, 0xb9, 0x71, - 0x8a, 0xa8, 0xd3, 0xb9, 0xc5, 0x0d, 0x92, 0x8d, 0xad, 0x4e, 0x9d, 0x4e, 0x6e, 0x93, 0xc6, 0xe3, - 0x73, 0x9b, 0xb4, 0xee, 0x01, 0xdc, 0x26, 0x89, 0x89, 0x48, 0xd4, 0x70, 0xa0, 0x86, 0x03, 0x35, - 0x1c, 0x72, 0x4d, 0x15, 0x4c, 0x96, 0x6f, 0x58, 0x7e, 0x04, 0x84, 0x01, 0xc2, 0x00, 0x61, 0x28, - 0x37, 0x61, 0xa0, 0x72, 0x83, 0xb4, 0xd4, 0x40, 0xbc, 0xf3, 0xfa, 0xf1, 0x89, 0x77, 0x4e, 0x6d, - 0x49, 0xa9, 0xdc, 0x50, 0x74, 0xc5, 0x8a, 0x1a, 0xfa, 0x6b, 0x4a, 0xb8, 0x1f, 0x6c, 0x8f, 0x8b, - 0x1e, 0xa7, 0x55, 0x44, 0x5f, 0xab, 0x82, 0xbc, 0x1b, 0x79, 0x72, 0xd5, 0x9f, 0x47, 0xc3, 0x65, - 0xac, 0xf8, 0x73, 0x95, 0xe2, 0xcf, 0x99, 0x21, 0xf2, 0x14, 0x7f, 0x4e, 0xfa, 0x5e, 0x14, 0x7f, - 0x46, 0x07, 0x40, 0x07, 0x40, 0x07, 0xc8, 0xb7, 0x0e, 0xc0, 0xc5, 0x01, 0x17, 0x07, 0x5c, 0x1c, - 0x58, 0xf6, 0xd8, 0x28, 0xfe, 0x0c, 0x75, 0x80, 0x3a, 0x40, 0x1d, 0xf2, 0x4d, 0x1d, 0xb8, 0x42, - 0x90, 0x56, 0x53, 0xb9, 0x42, 0x58, 0x3f, 0x3e, 0x57, 0x08, 0xa9, 0x2d, 0x29, 0x57, 0x08, 0x86, - 0x46, 0xa3, 0xf8, 0xf3, 0x46, 0xfa, 0x49, 0xf1, 0x67, 0xc8, 0x26, 0x64, 0xb3, 0xd4, 0x64, 0x93, - 0xe2, 0xcf, 0x30, 0x4c, 0x18, 0x66, 0xa1, 0x19, 0x26, 0xc5, 0x9f, 0x21, 0x97, 0x2f, 0x2d, 0x23, - 0xc5, 0x9f, 0xa1, 0x99, 0xd0, 0x4c, 0x68, 0x26, 0xc5, 0x9f, 0xe1, 0x99, 0xf0, 0x4c, 0x78, 0xa6, - 0xea, 0x92, 0x52, 0xfc, 0x19, 0xa2, 0xf9, 0xe2, 0x32, 0x52, 0xfc, 0x19, 0x9a, 0x09, 0xcd, 0x84, - 0x66, 0x52, 0xfc, 0x79, 0x61, 0x26, 0x28, 0xfe, 0x4c, 0xf1, 0x67, 0xbb, 0x34, 0xdf, 0x12, 0x37, - 0xb4, 0x45, 0xfb, 0x6d, 0x32, 0x45, 0x83, 0x6e, 0x80, 0x15, 0x77, 0x20, 0xad, 0xa5, 0xa7, 0xf8, - 0x73, 0x0a, 0xa3, 0x52, 0xfc, 0x99, 0xe2, 0xcf, 0x2f, 0x4e, 0x14, 0xc5, 0x9f, 0x93, 0x4d, 0x16, - 0xc5, 0x9f, 0x37, 0x4e, 0x11, 0xc5, 0x9f, 0x37, 0x4e, 0x11, 0xc5, 0x9f, 0x37, 0x6e, 0x22, 0x8a, - 0x3f, 0x6f, 0x9a, 0x22, 0x8a, 0x3f, 0x6f, 0x9a, 0x21, 0x8a, 0x3f, 0x6f, 0xb4, 0xfd, 0x14, 0x7f, - 0xde, 0x30, 0x43, 0x14, 0x7f, 0xde, 0x38, 0x45, 0x14, 0x7f, 0xde, 0xe2, 0x06, 0xc9, 0xc6, 0x56, - 0xa7, 0xf8, 0x33, 0xb7, 0x49, 0xe3, 0xf1, 0xb9, 0x4d, 0x5a, 0xf7, 0x00, 0x6e, 0x93, 0xc4, 0x44, - 0x24, 0x6a, 0x38, 0x50, 0xc3, 0x81, 0x1a, 0x0e, 0xb9, 0xa6, 0x0a, 0x14, 0x7f, 0x86, 0x30, 0x40, - 0x18, 0x20, 0x0c, 0xf6, 0x08, 0x03, 0x95, 0x1b, 0xa4, 0xa5, 0x06, 0xe2, 0x9d, 0xd7, 0x8f, 0x4f, - 0xbc, 0x73, 0x6a, 0x4b, 0x4a, 0xe5, 0x86, 0xa2, 0x2b, 0x56, 0x14, 0x7f, 0x5e, 0x5b, 0xfc, 0x79, - 0x54, 0xf3, 0x38, 0xad, 0xda, 0xcf, 0xaf, 0x2c, 0x2e, 0x88, 0xd4, 0x42, 0xc8, 0x2e, 0x40, 0x45, - 0xab, 0xfc, 0x75, 0xd8, 0x6f, 0x46, 0xc1, 0x98, 0xb4, 0x1c, 0x37, 0xdb, 0x37, 0xc7, 0xcd, 0xf6, - 0xa5, 0x17, 0x0d, 0xfe, 0x55, 0x1f, 0x3c, 0xe1, 0xe6, 0x64, 0xf0, 0x84, 0x57, 0x76, 0x96, 0x46, - 0x61, 0x59, 0x2a, 0xed, 0xaa, 0xf2, 0x52, 0x4c, 0xc9, 0x5a, 0xbb, 0xaa, 0x38, 0x87, 0x9a, 0xa5, - 0xba, 0xb5, 0xdd, 0x31, 0x09, 0xf7, 0x4b, 0xda, 0xdd, 0x92, 0x72, 0xaf, 0xc4, 0xdd, 0x29, 0x71, - 0xf7, 0xc9, 0x80, 0xbb, 0x64, 0x17, 0xce, 0x74, 0x4b, 0x6b, 0x57, 0x9a, 0x93, 0xfd, 0x2b, 0x54, - 0x3e, 0x7f, 0x3c, 0x5e, 0xc6, 0xea, 0xe7, 0xef, 0x50, 0x3f, 0x3f, 0x33, 0x5a, 0x08, 0xf5, 0xf3, - 0x6d, 0x1f, 0xf2, 0xe9, 0x40, 0xb3, 0x25, 0x6a, 0xef, 0xdd, 0xa6, 0xd9, 0x1a, 0xb8, 0x83, 0x07, - 0x20, 0xa1, 0x66, 0x0d, 0x26, 0x4c, 0xc1, 0x85, 0x71, 0xd8, 0x30, 0x0e, 0x1f, 0x16, 0x60, 0x44, - 0xd6, 0xbb, 0xce, 0xbe, 0x84, 0x7a, 0xef, 0x36, 0x85, 0xc3, 0x2f, 0xb6, 0xf2, 0x77, 0xe7, 0x3a, - 0x7b, 0x27, 0xb8, 0x78, 0xd5, 0x58, 0x7d, 0x7a, 0xfd, 0xf7, 0xfe, 0x13, 0x97, 0x7e, 0x71, 0xac, - 0x95, 0x73, 0xef, 0xf6, 0xfe, 0x6b, 0xdc, 0x64, 0x8d, 0x9e, 0x82, 0xdd, 0xc2, 0x6e, 0x61, 0xb7, - 0xb0, 0x5b, 0xd8, 0x2d, 0xec, 0x56, 0xe2, 0x99, 0xf3, 0xa2, 0x1f, 0x5e, 0x18, 0x49, 0x6e, 0xce, - 0xe9, 0xc6, 0x7c, 0x1e, 0x1a, 0x0b, 0x85, 0x85, 0xc2, 0x42, 0x95, 0xd6, 0x42, 0x4d, 0x81, 0x80, - 0xca, 0x28, 0x82, 0xfb, 0x73, 0xb6, 0x32, 0xca, 0xee, 0x81, 0xc1, 0x5c, 0xf3, 0x03, 0x4a, 0xa3, - 0x3c, 0x7f, 0xf1, 0x22, 0x96, 0x46, 0xd9, 0xdd, 0xdf, 0x3b, 0xa0, 0x3a, 0x4a, 0xac, 0xd5, 0x2f, - 0x60, 0x75, 0x94, 0x83, 0xfd, 0xfd, 0xbd, 0x7d, 0xea, 0xa3, 0xd8, 0x1e, 0x95, 0xfa, 0x28, 0xd4, - 0x47, 0x79, 0x71, 0xa2, 0xea, 0x57, 0xbf, 0xd7, 0x2f, 0xae, 0xfe, 0x68, 0xd4, 0xa9, 0x8e, 0x12, - 0x7b, 0xaa, 0x6e, 0x8e, 0x2f, 0xa8, 0x4c, 0x10, 0x6b, 0xa2, 0x3e, 0x37, 0x4e, 0x2f, 0x99, 0xa9, - 0x38, 0x33, 0x75, 0xd2, 0xf8, 0x7a, 0xc0, 0x4c, 0xc5, 0x99, 0xa9, 0x8b, 0xf3, 0x0f, 0x54, 0xbd, - 0x88, 0x35, 0x53, 0xa7, 0xa7, 0x54, 0x50, 0x89, 0x7d, 0xfa, 0x6a, 0xcc, 0x54, 0x9c, 0x99, 0xfa, - 0x7a, 0x7a, 0x7c, 0x46, 0x2d, 0x0c, 0x32, 0x0b, 0x8c, 0xef, 0xf8, 0x49, 0xf6, 0xa9, 0x91, 0xa0, - 0xac, 0x99, 0xb1, 0xb9, 0x35, 0xd0, 0x9e, 0x4d, 0x6e, 0x0d, 0x16, 0x1e, 0xc0, 0xad, 0x81, 0xac, - 0xe5, 0xe3, 0x5e, 0x9b, 0x7b, 0xed, 0x8c, 0xdb, 0x28, 0x43, 0xa1, 0x58, 0x8b, 0x0f, 0xc0, 0x5a, - 0x61, 0xad, 0xb0, 0x56, 0x58, 0x2b, 0xac, 0x55, 0xd9, 0xac, 0x15, 0xb9, 0xda, 0xab, 0x52, 0x85, - 0xdb, 0xd5, 0xed, 0x71, 0x7a, 0x5d, 0x5a, 0xa9, 0xda, 0x5a, 0x79, 0xca, 0x6e, 0xe4, 0xc9, 0xe5, - 0x19, 0x8e, 0x86, 0xcb, 0x58, 0x9a, 0x61, 0x95, 0x34, 0xc3, 0xcc, 0x58, 0x7c, 0xd2, 0x0c, 0x93, - 0xbe, 0x17, 0x69, 0x86, 0x38, 0x0a, 0x38, 0x0a, 0x38, 0x0a, 0x38, 0x0a, 0x38, 0x0a, 0x25, 0x92, - 0xb5, 0x48, 0x33, 0xc4, 0x6e, 0x61, 0xb7, 0xb0, 0x5b, 0xd8, 0x2d, 0xec, 0x56, 0x9e, 0xec, 0x16, - 0x69, 0x86, 0x58, 0x28, 0x2c, 0x14, 0x16, 0x8a, 0x34, 0xc3, 0x85, 0x79, 0x20, 0xcd, 0x90, 0x34, - 0xc3, 0x15, 0x5f, 0x9c, 0x34, 0x43, 0xa5, 0x47, 0x91, 0x66, 0x98, 0xd9, 0xd5, 0x27, 0xcd, 0x30, - 0x95, 0x51, 0x49, 0x33, 0x24, 0xcd, 0xf0, 0xc5, 0x89, 0x22, 0xcd, 0x30, 0xf9, 0x54, 0x91, 0x66, - 0x18, 0x77, 0xa2, 0x48, 0x33, 0x8c, 0x3b, 0x53, 0xa4, 0x19, 0xc6, 0x9d, 0x29, 0xd2, 0x0c, 0xe3, - 0xce, 0x14, 0x69, 0x86, 0x09, 0x4e, 0x1f, 0x69, 0x86, 0xb1, 0x66, 0x8a, 0x34, 0xc3, 0x2d, 0xd2, - 0x0c, 0x6d, 0xec, 0x78, 0xd2, 0x0c, 0xb9, 0x35, 0xe0, 0xd6, 0x60, 0xcd, 0x03, 0xb8, 0x35, 0x90, - 0xda, 0xbb, 0xdc, 0x6b, 0x73, 0xaf, 0x2d, 0x61, 0xa3, 0x48, 0x33, 0xc4, 0x5a, 0x61, 0xad, 0xb0, - 0x56, 0x58, 0x2b, 0xac, 0x95, 0x11, 0x6b, 0x45, 0x9a, 0xe1, 0x9a, 0x34, 0x43, 0x1a, 0xc2, 0xa6, - 0x39, 0xfd, 0x66, 0xdb, 0xc1, 0x9e, 0x56, 0xb3, 0xdc, 0x0c, 0xb6, 0xe7, 0xfd, 0x6f, 0xdf, 0x0b, - 0x9a, 0x9e, 0xe3, 0xb7, 0xf4, 0xbb, 0xc2, 0xce, 0x0e, 0xa6, 0xd7, 0x1e, 0x76, 0xa7, 0x20, 0xed, - 0x61, 0xdd, 0x66, 0x9b, 0xc6, 0xb0, 0x0a, 0xfc, 0x6a, 0x30, 0x6f, 0x39, 0x01, 0x34, 0x6d, 0xa6, - 0xf4, 0xdc, 0x54, 0xd9, 0x73, 0x6f, 0xf5, 0x2e, 0xfb, 0xa7, 0x2c, 0xe8, 0x50, 0x63, 0x8c, 0xc6, - 0x18, 0x53, 0xdf, 0xbe, 0x1d, 0xa7, 0xbf, 0x6f, 0xcf, 0x9e, 0xeb, 0x2c, 0x63, 0x99, 0x56, 0xca, - 0xbb, 0x48, 0xaa, 0xbb, 0x58, 0x7b, 0xeb, 0x2a, 0xf8, 0x05, 0x7e, 0x59, 0xc1, 0x2f, 0xed, 0x96, - 0xd6, 0x2d, 0xaf, 0xd7, 0x0c, 0xfd, 0xae, 0x08, 0xb3, 0x9e, 0xcd, 0xdf, 0x9b, 0x0e, 0x2a, 0x53, - 0x75, 0x62, 0xa7, 0xe0, 0xcd, 0xad, 0xf5, 0x8e, 0xaa, 0x29, 0x09, 0x28, 0xff, 0xf5, 0x26, 0xb4, - 0x8e, 0x72, 0x36, 0x5c, 0x5f, 0x31, 0x31, 0x67, 0xc6, 0x46, 0x86, 0x7e, 0x70, 0x27, 0xb1, 0xdf, - 0xa6, 0xba, 0x4d, 0x0e, 0x6b, 0xec, 0x0c, 0x15, 0x40, 0xaf, 0xe5, 0x74, 0x9a, 0x91, 0x37, 0x0c, - 0xd6, 0x15, 0x02, 0xbf, 0x85, 0x71, 0xc1, 0x3f, 0xf0, 0x0f, 0xfc, 0xcb, 0x14, 0xfe, 0x35, 0x3b, - 0xfd, 0x20, 0xf2, 0xc2, 0x83, 0x9a, 0x20, 0x04, 0x0a, 0x28, 0xd7, 0xc2, 0xd9, 0x42, 0x82, 0xea, - 0xbf, 0x89, 0x6c, 0x20, 0x43, 0xf9, 0x1f, 0xd3, 0x7c, 0x0f, 0xe9, 0x71, 0x0d, 0xe6, 0x76, 0x08, - 0x86, 0xe7, 0x19, 0x49, 0xdd, 0x31, 0xbd, 0x54, 0xbb, 0xbf, 0xd6, 0x6a, 0x07, 0x87, 0xb5, 0xda, - 0xce, 0xe1, 0xde, 0xe1, 0xce, 0xd1, 0xfe, 0xfe, 0xee, 0x81, 0x74, 0x5e, 0x83, 0xd1, 0xd5, 0xcb, - 0xc8, 0x05, 0xcd, 0x75, 0x8e, 0x39, 0x58, 0xd7, 0x6d, 0xfe, 0xd7, 0x08, 0x09, 0x9b, 0x0c, 0x0c, - 0x0b, 0x83, 0x85, 0xc1, 0xc2, 0x60, 0x61, 0xb0, 0x30, 0x58, 0x18, 0x2c, 0x0c, 0x16, 0x06, 0x0b, - 0x9b, 0x59, 0x16, 0x89, 0x30, 0x82, 0x25, 0x78, 0xd7, 0x0f, 0x27, 0x80, 0x7d, 0xc1, 0xbe, 0x60, - 0x5f, 0x86, 0xd8, 0x57, 0xdf, 0x0f, 0xa2, 0xbd, 0xaa, 0x20, 0xf5, 0x3a, 0x84, 0x7a, 0x41, 0xbd, - 0xa0, 0x5e, 0x4a, 0x4b, 0x55, 0xab, 0x1e, 0xd5, 0x8e, 0x0e, 0x0e, 0xab, 0x47, 0x10, 0xae, 0xfc, - 0x10, 0xae, 0x72, 0x07, 0xde, 0x6a, 0x04, 0x3d, 0xdb, 0x89, 0x27, 0x8b, 0x42, 0x37, 0xe8, 0x75, - 0x3b, 0x61, 0xa4, 0x1f, 0x53, 0xf6, 0x3c, 0x54, 0xca, 0x71, 0x65, 0x19, 0x89, 0x8b, 0x95, 0xc8, - 0x5e, 0x2a, 0x6f, 0x74, 0x99, 0x40, 0xf6, 0x51, 0xce, 0x62, 0xcc, 0x9a, 0x93, 0xfd, 0x2b, 0xe4, - 0x5a, 0x8e, 0xc7, 0xcb, 0x58, 0x3f, 0xa3, 0x1d, 0xfa, 0x19, 0x95, 0xcf, 0xb7, 0xa4, 0x9f, 0xd1, - 0xe2, 0x40, 0xb3, 0xbd, 0x1b, 0xb4, 0xcc, 0xef, 0xda, 0x4d, 0xbd, 0xf4, 0x04, 0x72, 0x92, 0xb3, - 0x06, 0x14, 0xa6, 0x00, 0xc3, 0x38, 0x70, 0x18, 0x07, 0x10, 0x0b, 0x40, 0x22, 0xec, 0xa1, 0x65, - 0x3e, 0x27, 0x79, 0x80, 0x01, 0x4e, 0xd0, 0xbf, 0x77, 0xc2, 0xa1, 0x7c, 0x44, 0xdd, 0x6d, 0xd1, - 0xd9, 0x15, 0x0b, 0x16, 0x5e, 0x3b, 0xbb, 0xbf, 0x1a, 0x18, 0xdb, 0x54, 0xf2, 0xf7, 0xf4, 0x01, - 0xff, 0xf9, 0xe5, 0xe0, 0xdb, 0x8e, 0xb3, 0x7f, 0x3d, 0xf9, 0xc7, 0xde, 0xe8, 0x77, 0xff, 0x0c, - 0xff, 0xf9, 0xff, 0x7d, 0xdb, 0x71, 0x8e, 0x56, 0xfd, 0xf3, 0xf5, 0x9f, 0x7f, 0xbe, 0xfd, 0xf3, - 0xcf, 0xb7, 0x6a, 0x9f, 0xfd, 0x9f, 0x0a, 0xd5, 0x79, 0x85, 0x21, 0xe3, 0xbb, 0x17, 0x52, 0x51, - 0xde, 0xe8, 0x94, 0x4f, 0xbf, 0x78, 0x11, 0x2b, 0xca, 0xef, 0x50, 0x4e, 0x3e, 0xd6, 0xd2, 0x53, - 0x4e, 0x3e, 0xf3, 0xcb, 0x4f, 0x39, 0xf9, 0x4c, 0x1b, 0x2c, 0x2f, 0xe8, 0xdf, 0x7b, 0xa1, 0x2b, - 0x90, 0x51, 0xf9, 0x22, 0x15, 0xab, 0x19, 0x18, 0xbb, 0x1e, 0xf4, 0xef, 0x07, 0xc7, 0x9f, 0x92, - 0xa5, 0xc6, 0x37, 0xe3, 0xa4, 0x5a, 0x9b, 0x19, 0xdd, 0x65, 0x76, 0x70, 0x24, 0x17, 0x24, 0x17, - 0x24, 0x17, 0x24, 0x17, 0x24, 0x17, 0x24, 0x17, 0x24, 0x17, 0x18, 0x2c, 0x92, 0x0b, 0x92, 0x0b, - 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x4b, 0x79, 0x24, 0x97, 0xa8, - 0xd9, 0x75, 0x6e, 0xdb, 0xee, 0x5d, 0x4f, 0x5e, 0x70, 0x79, 0x1e, 0x1a, 0xb9, 0x05, 0xb9, 0x05, - 0xb9, 0xa5, 0xb4, 0x72, 0x8b, 0x99, 0x66, 0xb2, 0x26, 0x9a, 0xc8, 0x9a, 0x6d, 0x1e, 0x3b, 0x9d, - 0x90, 0xab, 0x0f, 0x8d, 0x9b, 0x4f, 0xa7, 0xc7, 0xbf, 0x5d, 0x56, 0x4c, 0x64, 0xe4, 0x98, 0x69, - 0x16, 0x6b, 0xb8, 0x8f, 0xee, 0x60, 0x4a, 0x2e, 0x2e, 0xaf, 0xe4, 0x05, 0x0b, 0x03, 0x6e, 0x8a, - 0x85, 0xa9, 0xf8, 0x72, 0xf1, 0x1b, 0x53, 0x31, 0x9a, 0x8a, 0xcb, 0x3f, 0xce, 0x98, 0x8a, 0xd1, - 0x54, 0x1c, 0x7f, 0xf8, 0x17, 0x53, 0x31, 0x86, 0xcf, 0x13, 0x76, 0xc5, 0x78, 0x2a, 0xea, 0x26, - 0xfa, 0xf9, 0xe6, 0x73, 0x2a, 0x1a, 0x97, 0xbf, 0x33, 0x15, 0xa3, 0xa9, 0xf8, 0xf0, 0xef, 0x8b, - 0x4a, 0xc6, 0xfb, 0xb6, 0x5e, 0x17, 0x94, 0x49, 0x9f, 0xfa, 0xbd, 0xe8, 0x38, 0x8a, 0x42, 0x59, - 0x36, 0xfd, 0xd9, 0x0f, 0xea, 0x6d, 0x6f, 0xe0, 0x91, 0x0c, 0x08, 0x5e, 0xd0, 0x6f, 0xb7, 0x65, - 0xd3, 0xce, 0xcd, 0x0d, 0x7e, 0x1e, 0xb6, 0xbc, 0xd0, 0x6b, 0xbd, 0x7f, 0x1c, 0x0f, 0x4d, 0x4b, - 0xa8, 0x2c, 0xb7, 0x84, 0x9a, 0xa6, 0x0b, 0x8f, 0x3b, 0x70, 0x54, 0xf2, 0x58, 0x12, 0x48, 0xab, - 0x1b, 0xc7, 0x12, 0x9e, 0xea, 0x74, 0xe5, 0x58, 0x72, 0x57, 0xa5, 0x12, 0x36, 0xab, 0x24, 0x6c, - 0x66, 0x46, 0x95, 0x22, 0x61, 0x33, 0xe9, 0x7b, 0x91, 0xb0, 0x89, 0x9c, 0x8d, 0x9c, 0x6d, 0x1e, - 0x40, 0x2c, 0x00, 0x49, 0x36, 0x49, 0x38, 0xd1, 0x83, 0x73, 0xf3, 0x40, 0xf4, 0x20, 0xd1, 0x83, - 0x44, 0x0f, 0xa6, 0xb5, 0xa9, 0x89, 0x1e, 0xb4, 0xa9, 0x83, 0x6d, 0x11, 0x3d, 0xa8, 0xf6, 0x1c, - 0xa2, 0x07, 0x33, 0xbb, 0xf4, 0x44, 0x0f, 0xa6, 0x32, 0x2a, 0xd1, 0x83, 0x44, 0x0f, 0x0a, 0x6f, - 0x2d, 0x12, 0x36, 0xe3, 0x7a, 0x02, 0x24, 0x6c, 0x22, 0xb9, 0x20, 0xb9, 0x20, 0xb9, 0x20, 0xb9, - 0x20, 0xb9, 0x20, 0xb9, 0xc0, 0x60, 0x91, 0x5c, 0x90, 0x5c, 0x90, 0x5c, 0x90, 0x5c, 0x90, 0x5c, - 0x90, 0x5c, 0x90, 0x5c, 0x90, 0x5c, 0x4a, 0x29, 0xb9, 0x90, 0xb0, 0x89, 0xdc, 0x82, 0xdc, 0x82, - 0xdc, 0x42, 0xc2, 0xe6, 0x16, 0x09, 0x9b, 0xf6, 0x1d, 0x3d, 0x12, 0x36, 0x57, 0x4f, 0x05, 0x09, - 0x9b, 0x24, 0x6c, 0x2e, 0x4f, 0x05, 0x09, 0x9b, 0x24, 0x6c, 0x2e, 0x4f, 0x05, 0x09, 0x9b, 0x24, - 0x6c, 0x2e, 0x4f, 0x05, 0x09, 0x9b, 0xa9, 0x31, 0x69, 0x12, 0x36, 0xe7, 0x07, 0x27, 0x61, 0x73, - 0x95, 0x7b, 0x99, 0xfd, 0x84, 0x4d, 0x8d, 0xae, 0xb6, 0xfa, 0x73, 0x5c, 0xf2, 0x8e, 0xc2, 0xba, - 0x5d, 0x76, 0x47, 0xdf, 0x26, 0x0a, 0xfb, 0xcd, 0x28, 0x18, 0x5b, 0x85, 0xe3, 0x66, 0xfb, 0xe6, - 0xb8, 0xd9, 0xbe, 0xf4, 0xa2, 0xc1, 0xbf, 0xea, 0x83, 0xc7, 0xdc, 0x5c, 0x4d, 0x1f, 0x63, 0xab, - 0x79, 0xf1, 0x2b, 0x83, 0xcb, 0x59, 0xf9, 0x97, 0xf7, 0x38, 0x8c, 0x40, 0xf0, 0xfe, 0xb7, 0xef, - 0x05, 0x4d, 0xcf, 0xf1, 0x5b, 0x09, 0xa7, 0x4f, 0x0f, 0xbb, 0x45, 0x30, 0x5a, 0x04, 0x8b, 0xf5, - 0x30, 0x37, 0xe9, 0xb4, 0x6b, 0x9e, 0x1e, 0xb1, 0x53, 0xa3, 0x70, 0x56, 0x36, 0x9f, 0x91, 0x64, - 0x27, 0x23, 0xfe, 0xfe, 0x8e, 0xf7, 0x93, 0x31, 0x97, 0x42, 0x75, 0x09, 0x34, 0xa7, 0x3e, 0xde, - 0xdc, 0x6c, 0x7e, 0xd3, 0x18, 0x6f, 0x99, 0xb4, 0x6f, 0xb2, 0x5a, 0x7f, 0xe4, 0x84, 0x69, 0xf5, - 0x89, 0xef, 0x10, 0x54, 0xee, 0x08, 0x66, 0xef, 0x00, 0xdc, 0x66, 0x3b, 0xc1, 0x26, 0x57, 0x55, - 0xf7, 0xb5, 0xd5, 0x7b, 0x6d, 0x75, 0x7e, 0x51, 0x7d, 0x1f, 0xbc, 0x77, 0x4a, 0x27, 0x2b, 0x69, - 0x6a, 0x79, 0xa5, 0xe5, 0xf5, 0x9a, 0xa1, 0xdf, 0x55, 0x82, 0xc3, 0xd9, 0x2c, 0xf1, 0xe9, 0x20, - 0x49, 0x8d, 0xa0, 0xd2, 0x35, 0x99, 0xf2, 0x75, 0x98, 0xce, 0xb5, 0x97, 0xfa, 0xd6, 0xd6, 0xdd, - 0xe2, 0x62, 0x5b, 0x5d, 0x6c, 0xcb, 0x8b, 0x6c, 0x7d, 0x3b, 0x34, 0x4b, 0xf9, 0xaa, 0x48, 0x3f, - 0x46, 0xf4, 0x39, 0x06, 0xd4, 0x94, 0x59, 0x4e, 0x00, 0xaf, 0x63, 0xd6, 0xa0, 0x78, 0xc4, 0x87, - 0x9f, 0xe6, 0x6c, 0x73, 0xb6, 0x39, 0xdb, 0x19, 0x3c, 0xdb, 0x91, 0xca, 0x3c, 0x3c, 0xc7, 0xbe, - 0x0c, 0x3e, 0xcd, 0xd9, 0xe6, 0x6c, 0x17, 0xec, 0x6c, 0xeb, 0x85, 0x72, 0xe8, 0x84, 0x6c, 0xc8, - 0x84, 0x66, 0x4c, 0x5f, 0xe4, 0xf8, 0xc3, 0xe9, 0xcd, 0xd5, 0x1f, 0x8d, 0xba, 0xea, 0xae, 0x11, - 0x88, 0xb4, 0x10, 0xaa, 0x26, 0x37, 0x78, 0x93, 0x93, 0xc6, 0xd7, 0x5a, 0x25, 0x8d, 0xd2, 0x78, - 0x82, 0xef, 0xf0, 0xf9, 0xe4, 0xff, 0xd5, 0x3f, 0xe6, 0xfd, 0x25, 0x4e, 0x1a, 0x5f, 0x0f, 0xf2, - 0xfe, 0x0e, 0xa7, 0xd5, 0x8a, 0x65, 0xd5, 0xfe, 0xda, 0x34, 0x4e, 0x16, 0x5f, 0x94, 0x4b, 0x52, - 0x5c, 0x53, 0x46, 0x8f, 0x4b, 0xe4, 0xfc, 0xa8, 0x38, 0x3d, 0x09, 0x09, 0x11, 0x5a, 0x5c, 0xf1, - 0xb5, 0xb8, 0xc4, 0x04, 0x66, 0xba, 0x5e, 0x6d, 0xcf, 0xbd, 0x4d, 0x46, 0x5a, 0xa6, 0x64, 0xe5, - 0x30, 0xc1, 0x67, 0x1a, 0xe3, 0x33, 0xfb, 0xf6, 0xed, 0xf8, 0x44, 0x6e, 0x0f, 0x37, 0xbc, 0xc5, - 0x63, 0x99, 0xac, 0x56, 0xad, 0x52, 0x4d, 0x5a, 0x65, 0x91, 0xbc, 0xca, 0xc1, 0x2c, 0xe8, 0xc1, - 0x44, 0x24, 0xc7, 0xd9, 0xc6, 0xd9, 0x46, 0x48, 0xd3, 0xe5, 0x89, 0x3a, 0x7c, 0x91, 0xb3, 0xcd, - 0xd9, 0xe6, 0x6c, 0x5b, 0x3d, 0xdb, 0x88, 0xe4, 0x9c, 0x6d, 0xce, 0xf6, 0xe2, 0x7a, 0x23, 0x92, - 0x8f, 0xc7, 0x41, 0x24, 0x97, 0x7e, 0x07, 0x44, 0x72, 0x44, 0x72, 0x53, 0x38, 0x59, 0x7c, 0x91, - 0x3c, 0x41, 0x42, 0x83, 0x8c, 0x18, 0x97, 0x88, 0x1f, 0xa9, 0xf0, 0x22, 0x34, 0x72, 0xa4, 0x38, - 0x5d, 0xfe, 0x92, 0xbe, 0x46, 0x3e, 0xdc, 0xf0, 0x52, 0xc7, 0xf2, 0x95, 0xc6, 0x24, 0x4e, 0x12, - 0x48, 0x02, 0xf7, 0xde, 0xdb, 0x8a, 0x71, 0x0c, 0x93, 0xa5, 0x8b, 0x28, 0xa5, 0x87, 0x28, 0xa5, - 0x83, 0x24, 0x4b, 0xff, 0xd8, 0x34, 0x29, 0x09, 0x11, 0x5a, 0x01, 0x99, 0x2b, 0xb1, 0x2e, 0x36, - 0x56, 0x27, 0x6a, 0xbc, 0xbc, 0x71, 0xd6, 0x6f, 0x87, 0xd5, 0x7f, 0xb3, 0x66, 0x2e, 0xe2, 0xce, - 0x41, 0x82, 0x77, 0x5f, 0xfd, 0xbd, 0x97, 0xbf, 0xd5, 0x8a, 0x6f, 0xb4, 0x29, 0x17, 0x22, 0x5e, - 0xee, 0xc3, 0x86, 0x6b, 0x9c, 0x8d, 0xb6, 0x22, 0x8e, 0x6d, 0x88, 0x6f, 0x0b, 0xe2, 0x62, 0x7f, - 0x62, 0xac, 0x4f, 0x8c, 0xed, 0x89, 0xb0, 0x3c, 0xad, 0x5d, 0xf4, 0xd2, 0x7d, 0x7f, 0xbc, 0x3d, - 0xe4, 0x07, 0x91, 0x17, 0xde, 0xba, 0x4d, 0xaf, 0xb7, 0x79, 0x1f, 0xcd, 0xfc, 0x2c, 0x7b, 0x29, - 0x23, 0x7b, 0x69, 0xd3, 0x95, 0xdb, 0xf3, 0xa2, 0x6d, 0x9e, 0x87, 0xa5, 0x75, 0xde, 0x34, 0x0f, - 0xf1, 0x6e, 0x80, 0x63, 0xd3, 0xcd, 0x24, 0x34, 0x33, 0x39, 0xbd, 0x4c, 0x4a, 0x2b, 0x95, 0xe9, - 0xa4, 0x32, 0x8d, 0x54, 0xa2, 0x8f, 0x7a, 0x4c, 0x27, 0xee, 0x8d, 0x2d, 0x79, 0x77, 0xf8, 0x31, - 0xa9, 0xf8, 0x31, 0x89, 0x43, 0x0a, 0xfc, 0x96, 0xfa, 0x55, 0x44, 0xf2, 0x44, 0x71, 0x2e, 0x22, - 0x6c, 0x6e, 0x6c, 0xb1, 0x0d, 0x2e, 0xb2, 0xd1, 0x15, 0x05, 0x36, 0xfb, 0x17, 0x11, 0x13, 0x73, - 0x9e, 0xbc, 0x10, 0xc2, 0x96, 0x95, 0xab, 0xc6, 0x9c, 0x08, 0x89, 0xcf, 0xf4, 0xf7, 0xf9, 0xb7, - 0x29, 0x44, 0xdc, 0x7a, 0x77, 0xa1, 0xd7, 0xeb, 0x39, 0x53, 0x07, 0x32, 0xb1, 0x49, 0x5e, 0x1c, - 0x00, 0xdb, 0x8c, 0x6d, 0xb6, 0x63, 0x9b, 0xe7, 0x77, 0x9e, 0xba, 0x9d, 0x5e, 0x18, 0x47, 0xcd, - 0x66, 0xef, 0x62, 0xb3, 0xb1, 0xd9, 0x66, 0x6c, 0x76, 0xd2, 0x83, 0x31, 0xfd, 0xe0, 0x6c, 0x51, - 0x15, 0xed, 0x7b, 0xfb, 0xd9, 0xc1, 0x14, 0xa7, 0x5a, 0xed, 0xa8, 0x2c, 0x1f, 0x99, 0xaa, 0xe2, - 0x00, 0x02, 0xb5, 0xd4, 0xf5, 0x8f, 0x90, 0xd4, 0x51, 0x12, 0x3f, 0x52, 0xe2, 0x47, 0x4b, 0xf4, - 0x88, 0xa9, 0x1d, 0x35, 0xc5, 0x23, 0xa7, 0x7d, 0xf4, 0x96, 0x8e, 0xe0, 0xa3, 0xfe, 0x3a, 0x2f, - 0x1e, 0xc4, 0x47, 0xdd, 0x75, 0xd6, 0x3b, 0x8e, 0xda, 0x96, 0xcc, 0xc4, 0xf1, 0x94, 0x3f, 0xa6, - 0xd2, 0xc7, 0xd5, 0xd8, 0xb1, 0x35, 0x76, 0x7c, 0x8d, 0x1c, 0x63, 0xbd, 0xe3, 0xac, 0x79, 0xac, - 0xc5, 0x8e, 0xf7, 0xb3, 0xbb, 0x37, 0x53, 0x1c, 0x50, 0xbe, 0xc9, 0xac, 0x72, 0xe5, 0x41, 0x61, - 0xa1, 0xc9, 0x38, 0x04, 0x98, 0x80, 0x02, 0x73, 0x90, 0x60, 0x0a, 0x1a, 0x8c, 0x43, 0x84, 0x71, - 0xa8, 0x30, 0x0a, 0x19, 0x32, 0xd0, 0x21, 0x04, 0x21, 0xfa, 0xc2, 0xda, 0xc6, 0xfd, 0x9a, 0x3c, - 0x82, 0x26, 0xb6, 0xe5, 0x3f, 0x14, 0x1c, 0x73, 0x26, 0x02, 0x67, 0x18, 0x12, 0xb7, 0x3d, 0x0b, - 0x5b, 0x45, 0xea, 0x27, 0x9e, 0x28, 0x17, 0x36, 0x3e, 0xc8, 0x27, 0xc8, 0x95, 0xb5, 0xc4, 0xec, - 0xc4, 0x1c, 0x2f, 0xe0, 0x1d, 0x78, 0xcf, 0x39, 0xbc, 0x4b, 0x31, 0xc5, 0xe9, 0x80, 0xc3, 0xb6, - 0x5f, 0x5e, 0xcb, 0xe9, 0x34, 0xa3, 0x24, 0xb2, 0x7b, 0xe2, 0xe3, 0xb0, 0xf0, 0x1c, 0xe1, 0x0d, - 0x60, 0xa6, 0xdd, 0xa9, 0x38, 0x9f, 0x34, 0x09, 0x3c, 0xe6, 0x01, 0xc8, 0x34, 0x10, 0x59, 0x03, - 0x24, 0x6b, 0xc0, 0x64, 0x05, 0xa0, 0x64, 0x81, 0x4a, 0x18, 0xb0, 0xcc, 0xf1, 0xd2, 0xa5, 0xfd, - 0xde, 0xec, 0xf4, 0x83, 0xc8, 0x0b, 0x0f, 0x6a, 0x06, 0x5b, 0xc2, 0xfe, 0x4a, 0x0f, 0xf3, 0xe7, - 0x2f, 0x4e, 0x0f, 0xf3, 0xe4, 0xcf, 0xa1, 0x87, 0x79, 0x66, 0x97, 0x7e, 0xf7, 0xd7, 0x5a, 0xed, - 0xe0, 0xb0, 0x56, 0xdb, 0x39, 0xdc, 0x3b, 0xdc, 0x39, 0xda, 0xdf, 0xdf, 0x3d, 0xd8, 0xa5, 0xa5, - 0xb9, 0xf5, 0x51, 0xaf, 0x33, 0xda, 0x17, 0x5b, 0xf0, 0x34, 0x4d, 0xb9, 0x70, 0xd7, 0x6d, 0xfe, - 0xd7, 0x0a, 0xe9, 0x9e, 0x3c, 0x08, 0xd6, 0x0d, 0xeb, 0x86, 0x75, 0xc3, 0xba, 0x61, 0xdd, 0xb0, - 0x6e, 0x58, 0x37, 0xac, 0x1b, 0xd6, 0x0d, 0xeb, 0x2e, 0x0d, 0xeb, 0x36, 0x11, 0x1b, 0xb1, 0x64, - 0x0e, 0xe5, 0x63, 0x24, 0x60, 0xdb, 0xb0, 0x6d, 0xd8, 0x36, 0x6c, 0xdb, 0x50, 0x0c, 0xc6, 0x22, - 0xbc, 0x48, 0xc6, 0x62, 0x3c, 0x43, 0xc1, 0x24, 0xff, 0x68, 0x55, 0x7d, 0x8c, 0x6f, 0x81, 0x7b, - 0xef, 0xfd, 0x9f, 0x66, 0x3f, 0x0c, 0xbd, 0x20, 0xfa, 0xe5, 0xf5, 0xf6, 0xdb, 0xb7, 0xcf, 0xff, - 0xeb, 0x79, 0x91, 0x33, 0xf8, 0xeb, 0xeb, 0x6f, 0xd1, 0x63, 0x77, 0xdd, 0x0f, 0x0d, 0xfe, 0xea, - 0x7a, 0x4d, 0xab, 0x61, 0xf1, 0xe0, 0x0f, 0x03, 0x36, 0x2e, 0x53, 0x17, 0xcc, 0xc2, 0xad, 0xbb, - 0x9f, 0xad, 0xaf, 0x5a, 0x22, 0xda, 0x42, 0x56, 0xd7, 0xc2, 0x7f, 0xaf, 0x5b, 0x74, 0xfd, 0xde, - 0xde, 0x72, 0x8b, 0x93, 0x6e, 0x64, 0xa9, 0x76, 0xd3, 0xe8, 0xa5, 0x11, 0xb5, 0x9a, 0x48, 0xaf, - 0xf2, 0x66, 0xc5, 0x7b, 0xf3, 0x1b, 0x69, 0xf8, 0x2f, 0xdb, 0xe8, 0x3f, 0x7f, 0x0d, 0xf6, 0xc5, - 0x4e, 0x67, 0x45, 0x24, 0xf6, 0x6d, 0xb1, 0x5c, 0xd2, 0xc9, 0xe4, 0x3b, 0xdd, 0xd4, 0x87, 0xdf, - 0x41, 0xab, 0xcf, 0xb5, 0xdc, 0x11, 0x2e, 0x6a, 0xa3, 0x7f, 0xcd, 0xdd, 0x60, 0xad, 0x21, 0xbf, - 0x42, 0x66, 0x61, 0xc2, 0x92, 0x20, 0x6b, 0xa9, 0x5a, 0xa2, 0x12, 0x21, 0x6b, 0xd9, 0x98, 0x6e, - 0x8a, 0xda, 0x0e, 0x29, 0x6a, 0x06, 0x9d, 0x2e, 0x52, 0xd4, 0x9e, 0xbf, 0xb9, 0x76, 0x8a, 0xda, - 0x84, 0xeb, 0xcb, 0x65, 0xa8, 0x4d, 0x47, 0x94, 0x49, 0x50, 0xdb, 0x21, 0x41, 0x2d, 0x05, 0xe5, - 0x84, 0x04, 0xb5, 0x0c, 0xb8, 0x11, 0x62, 0xca, 0x86, 0x01, 0x25, 0x43, 0x52, 0xb9, 0x98, 0xcd, - 0x1e, 0x59, 0xf8, 0xdf, 0x9a, 0xae, 0x84, 0x09, 0x7a, 0xa0, 0x19, 0xa0, 0x97, 0x1a, 0x36, 0x35, - 0x92, 0x58, 0x52, 0x9d, 0x76, 0x17, 0xc0, 0x2c, 0x30, 0x0b, 0xcc, 0x02, 0xb3, 0x2f, 0xc3, 0xec, - 0x0a, 0x75, 0x78, 0x2a, 0x0a, 0x27, 0x2f, 0xb1, 0x8d, 0x87, 0x6f, 0xd2, 0xc3, 0x4f, 0x52, 0x35, - 0x2c, 0x1d, 0xe7, 0x5e, 0xdb, 0xc7, 0x90, 0xf2, 0x2d, 0x34, 0x8d, 0x1d, 0x0e, 0x3e, 0x0e, 0xbe, - 0x6d, 0xec, 0xd1, 0x36, 0x4e, 0x82, 0x46, 0x49, 0xc2, 0x18, 0xad, 0xe8, 0xd5, 0x30, 0x3d, 0xd4, - 0x59, 0x86, 0x30, 0xad, 0xbc, 0x6f, 0x91, 0x3c, 0x6f, 0x0a, 0x68, 0x01, 0x5e, 0xa8, 0x93, 0xa8, - 0x93, 0xb8, 0xcd, 0xb8, 0xcd, 0xb8, 0xcd, 0xa8, 0x93, 0xa8, 0x93, 0xc0, 0x2c, 0x30, 0x0b, 0xcc, - 0xa2, 0x4e, 0xa2, 0x4e, 0x66, 0x57, 0x9d, 0xd4, 0x88, 0x0a, 0xb5, 0xe3, 0xd9, 0x6b, 0xd9, 0x3c, - 0x09, 0x5b, 0x87, 0x28, 0x89, 0x5f, 0x8f, 0x28, 0x99, 0x35, 0x51, 0x52, 0xdd, 0x7e, 0x3c, 0x65, - 0xac, 0x81, 0xc0, 0x34, 0x18, 0x7d, 0x64, 0x21, 0xb7, 0x14, 0xa0, 0x4a, 0x2f, 0xfc, 0x5c, 0x24, - 0xdc, 0x5c, 0x24, 0xbc, 0x5c, 0x2f, 0x9c, 0x3c, 0xe9, 0xc4, 0x6b, 0x1a, 0x66, 0x33, 0x06, 0xb9, - 0xa2, 0x24, 0x7e, 0xc7, 0x0b, 0xfc, 0xae, 0xd0, 0xd4, 0x69, 0xe3, 0x72, 0xd8, 0xec, 0xee, 0x94, - 0x20, 0xe5, 0x36, 0x79, 0xdb, 0x3a, 0xfa, 0xc4, 0x6f, 0xd1, 0xc3, 0x49, 0x93, 0x16, 0xa4, 0xdf, - 0x27, 0x3e, 0x6e, 0x82, 0xa2, 0xd0, 0x81, 0x0c, 0x74, 0xfb, 0xad, 0x2d, 0x8d, 0x40, 0xc3, 0x35, - 0x0e, 0xab, 0xd2, 0x61, 0x4d, 0xde, 0x0c, 0x35, 0x10, 0xea, 0xb8, 0xb6, 0x38, 0x10, 0x2d, 0xd7, - 0xcc, 0xb9, 0xc3, 0xb4, 0x5c, 0xa3, 0xe5, 0x1a, 0x11, 0x23, 0x28, 0x4b, 0xb4, 0x5c, 0xd3, 0x3f, - 0x88, 0xb4, 0x5c, 0xb3, 0x71, 0x4c, 0xa5, 0x8f, 0xab, 0xb1, 0x63, 0x6b, 0xec, 0xf8, 0x1a, 0x39, - 0xc6, 0x7a, 0xc7, 0x59, 0xf3, 0x58, 0x8b, 0x1d, 0xef, 0x67, 0x31, 0x86, 0x96, 0x6b, 0xb4, 0x5c, - 0xa3, 0x27, 0x8f, 0x15, 0xc8, 0x90, 0x81, 0x0e, 0x21, 0x08, 0x51, 0x17, 0x9b, 0x0c, 0x8a, 0x51, - 0x26, 0xc4, 0xaa, 0x24, 0x62, 0x16, 0x2d, 0xd7, 0x14, 0x40, 0x9e, 0x96, 0x6b, 0xc0, 0x3b, 0xf0, - 0x9e, 0x55, 0x78, 0xa7, 0xe5, 0x9a, 0x05, 0x1e, 0x69, 0x8c, 0x4f, 0x9a, 0x04, 0x1e, 0xf3, 0x00, - 0x64, 0x1a, 0x88, 0xac, 0x01, 0x92, 0x35, 0x60, 0xb2, 0x02, 0x50, 0xb2, 0x40, 0x25, 0x0c, 0x58, - 0xe6, 0x78, 0xe9, 0xd2, 0x7e, 0xa7, 0xf9, 0xc3, 0xaa, 0x5f, 0x34, 0x7f, 0x88, 0xf5, 0x18, 0x9a, - 0x3f, 0x24, 0x5b, 0x7a, 0x9a, 0x3f, 0xe4, 0x6d, 0x37, 0xd0, 0xfc, 0x21, 0x2b, 0xa7, 0x89, 0x96, - 0x6b, 0xb0, 0x6e, 0x58, 0x37, 0xac, 0x1b, 0xd6, 0x0d, 0xeb, 0x86, 0x75, 0xc3, 0xba, 0x61, 0xdd, - 0xb0, 0x6e, 0x58, 0xb7, 0x71, 0xd6, 0x4d, 0xcb, 0x35, 0xd8, 0x36, 0x6c, 0x1b, 0xb6, 0x9d, 0x67, - 0xb6, 0x4d, 0xcb, 0x35, 0x5a, 0xae, 0x19, 0xdd, 0xcb, 0x59, 0x6b, 0xb9, 0xb6, 0x98, 0xd8, 0xb5, - 0xf8, 0x07, 0x34, 0x5d, 0x8b, 0x61, 0x68, 0x68, 0xba, 0x46, 0xd3, 0xb5, 0x4c, 0x9d, 0x4f, 0xd3, - 0x6d, 0xd7, 0x4e, 0x02, 0xfa, 0xae, 0xa5, 0x54, 0xf7, 0x28, 0xc9, 0x86, 0xa0, 0xf3, 0x5a, 0x5c, - 0x52, 0x46, 0x0d, 0x24, 0x32, 0xd5, 0xf2, 0x01, 0x3f, 0xd4, 0x36, 0xb6, 0x25, 0xb8, 0x90, 0xa7, - 0x46, 0x9e, 0x9a, 0x65, 0xd2, 0x49, 0xd1, 0x4d, 0x6a, 0x1b, 0xbf, 0xb8, 0x9c, 0xd4, 0x36, 0x06, - 0x66, 0x81, 0x59, 0x60, 0x56, 0x1c, 0x66, 0xa9, 0x6d, 0x9c, 0x27, 0x1f, 0x9f, 0xde, 0x6b, 0xb6, - 0xcc, 0x1d, 0x2e, 0x3e, 0x2e, 0x3e, 0x65, 0x8e, 0xe9, 0xbd, 0xa6, 0x81, 0x5f, 0xf4, 0x5e, 0x03, - 0xbc, 0xd0, 0x27, 0xd1, 0x27, 0x71, 0x9c, 0x71, 0x9c, 0x71, 0x9c, 0xd1, 0x27, 0xd1, 0x27, 0x81, - 0x59, 0x60, 0x16, 0x98, 0x05, 0x66, 0xd1, 0x27, 0x0b, 0xaa, 0x4f, 0xd2, 0x7d, 0x0d, 0x59, 0x12, - 0xcf, 0x1e, 0x59, 0x32, 0x6f, 0xb2, 0x24, 0xdd, 0xd7, 0x66, 0xc7, 0xa0, 0xfb, 0x5a, 0x7e, 0xba, - 0xaf, 0x6d, 0x32, 0xc9, 0xd2, 0xfd, 0xd7, 0xe6, 0x22, 0xc0, 0x69, 0xc0, 0x16, 0x63, 0x45, 0xec, - 0x36, 0x7c, 0x1a, 0x7f, 0x0b, 0x67, 0x00, 0xb3, 0x0a, 0xdd, 0x9e, 0x66, 0x3f, 0x5e, 0x8c, 0x56, - 0x4f, 0xfe, 0x6d, 0x29, 0x3b, 0x3d, 0xf9, 0xb7, 0xb9, 0x69, 0xf4, 0xa4, 0x98, 0x11, 0xa0, 0x97, - 0x09, 0x90, 0xd7, 0xb6, 0x4e, 0xfe, 0x2d, 0x5d, 0x9d, 0x34, 0xb7, 0xbb, 0x1d, 0x22, 0xa6, 0xdc, - 0xd4, 0x69, 0x0a, 0xc2, 0xfa, 0x7e, 0xea, 0xf3, 0x50, 0x38, 0xab, 0xca, 0x87, 0x07, 0x5f, 0x55, - 0xe5, 0x70, 0xe1, 0xaa, 0x8a, 0xba, 0xaa, 0xdb, 0xc3, 0x65, 0x78, 0x37, 0x43, 0x38, 0x17, 0xfe, - 0x60, 0xfc, 0xdf, 0x99, 0x8f, 0xad, 0xe9, 0x7f, 0x17, 0xc4, 0xb7, 0xb9, 0xd1, 0x80, 0x38, 0x20, - 0x0e, 0x88, 0x2b, 0x30, 0xc4, 0x7d, 0x7b, 0x86, 0xb8, 0xf9, 0x0b, 0xa1, 0xe9, 0x4f, 0x5c, 0x8f, - 0x3f, 0x32, 0x8b, 0x0b, 0xbd, 0x15, 0x7f, 0x36, 0x1d, 0xb9, 0xe5, 0xfd, 0x2c, 0x86, 0xec, 0x57, - 0xff, 0x39, 0x14, 0xca, 0x92, 0x17, 0x5d, 0xd4, 0x77, 0x08, 0x3a, 0x4d, 0xc7, 0xfb, 0x19, 0xbd, - 0x8b, 0xbc, 0xb6, 0x77, 0xef, 0x45, 0xe1, 0xa3, 0xd3, 0x09, 0x9c, 0xe6, 0x8f, 0x61, 0x15, 0x48, - 0x11, 0x27, 0xe1, 0xd6, 0x6d, 0xf7, 0x24, 0xbc, 0x04, 0xd3, 0x0e, 0xc2, 0x75, 0x5e, 0x04, 0xc3, - 0x19, 0x8d, 0x47, 0x29, 0xa1, 0x20, 0x81, 0x8e, 0x97, 0x40, 0x79, 0x51, 0x8b, 0xba, 0xd5, 0x8a, - 0xb6, 0xd5, 0xd6, 0x00, 0xaa, 0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x10, 0x64, 0x08, 0x32, 0x04, - 0x19, 0x0d, 0x00, 0x0d, 0x00, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x34, 0x80, 0x54, 0xd8, 0x66, 0x26, - 0x1c, 0x4a, 0x85, 0x08, 0xd0, 0xd2, 0xc4, 0x85, 0x24, 0x0f, 0xae, 0xd8, 0xda, 0x1c, 0x8e, 0x33, - 0xfe, 0xdd, 0x85, 0x77, 0x6b, 0x33, 0xd0, 0x24, 0x99, 0xb7, 0xae, 0xe4, 0xa5, 0x2b, 0x07, 0x96, - 0x54, 0xed, 0x04, 0x96, 0x24, 0x8b, 0x7c, 0x2d, 0x4e, 0x64, 0x49, 0xa2, 0xc8, 0xd5, 0x94, 0x43, - 0x4b, 0x14, 0x3a, 0x12, 0x3c, 0x3b, 0xce, 0x2d, 0x45, 0x39, 0x69, 0x27, 0x67, 0x21, 0x25, 0x6a, - 0x21, 0xdc, 0xc5, 0xd7, 0x93, 0x94, 0x42, 0xb4, 0xcd, 0x9a, 0x78, 0x65, 0xe2, 0xb7, 0x22, 0xc4, - 0x4f, 0xa9, 0x5e, 0xf5, 0x14, 0x94, 0x7f, 0xc5, 0xc4, 0x2f, 0x9b, 0xf8, 0x04, 0xe4, 0x27, 0x86, - 0x19, 0x7e, 0xa5, 0x31, 0x03, 0x93, 0x38, 0xf0, 0x8d, 0x8b, 0x9c, 0x2c, 0xd8, 0x5b, 0x29, 0xb8, - 0x5b, 0x29, 0x98, 0x3b, 0x59, 0xf0, 0xf6, 0xa6, 0xd9, 0x48, 0xb8, 0x0f, 0x14, 0xd7, 0xbf, 0x12, - 0x8b, 0x38, 0xad, 0x25, 0x73, 0x2f, 0x6f, 0x9c, 0xf5, 0xdb, 0x61, 0xf5, 0xdf, 0xac, 0x99, 0x92, - 0xb8, 0x53, 0x91, 0x68, 0x0a, 0x56, 0x7f, 0xf3, 0xe5, 0xef, 0xb5, 0xe2, 0x3b, 0x6d, 0x60, 0x92, - 0xb1, 0x98, 0xe3, 0x06, 0xa6, 0xb8, 0x91, 0x19, 0xc6, 0x31, 0xa4, 0xf1, 0x0d, 0x66, 0x5c, 0xc3, - 0x98, 0xd8, 0x00, 0x26, 0x36, 0x74, 0x89, 0x0c, 0x5a, 0xb2, 0x5d, 0xb4, 0x89, 0x89, 0x4d, 0xda, - 0x17, 0x3a, 0x4d, 0xb7, 0xeb, 0x7e, 0xf7, 0xdb, 0x7e, 0xf4, 0xb8, 0x79, 0x42, 0x16, 0x5a, 0x1f, - 0xce, 0x7e, 0x76, 0x13, 0xda, 0xc5, 0x62, 0x5e, 0xb1, 0x99, 0x56, 0x12, 0x66, 0x95, 0x9c, 0x49, - 0x25, 0x65, 0x4e, 0xca, 0x4c, 0x49, 0x99, 0x19, 0x29, 0x31, 0x21, 0x3d, 0x7b, 0x15, 0x9b, 0xd9, - 0xcc, 0xf0, 0x73, 0x2f, 0x88, 0xfc, 0xe8, 0x31, 0x9e, 0x37, 0x3d, 0xc5, 0x88, 0x18, 0x4d, 0xf0, - 0x2a, 0x27, 0xe3, 0xa1, 0xdf, 0xbb, 0x3d, 0x05, 0x27, 0xf7, 0xf8, 0xc3, 0xe9, 0xcd, 0x87, 0xf3, - 0x2f, 0x67, 0x57, 0xf5, 0x8b, 0x9b, 0x0f, 0xc7, 0x8d, 0xe3, 0xf7, 0x27, 0xa7, 0x27, 0x57, 0x7f, - 0xc4, 0x5d, 0xb3, 0x61, 0xff, 0xbe, 0x64, 0xb1, 0x1c, 0x8a, 0x0e, 0xce, 0xc9, 0xe0, 0x1b, 0x7e, - 0x3a, 0xfe, 0x50, 0xbf, 0x39, 0x3f, 0x3b, 0xfd, 0xa3, 0x62, 0xe2, 0x56, 0x5f, 0xfb, 0x9b, 0x1d, - 0xff, 0xf6, 0xdb, 0x45, 0xfd, 0xb7, 0xe3, 0xab, 0x7a, 0x96, 0xbe, 0xde, 0xf4, 0x4b, 0x25, 0x9d, - 0xb8, 0x58, 0x3f, 0x79, 0xad, 0x7b, 0xd2, 0x32, 0x47, 0x14, 0x5e, 0xa0, 0xc5, 0x2b, 0x38, 0xc2, - 0xab, 0x17, 0xbe, 0xdc, 0xa6, 0x2f, 0xb5, 0xf9, 0xcb, 0x54, 0x56, 0x52, 0x90, 0x05, 0x4e, 0x36, - 0xff, 0x5d, 0x9f, 0xbf, 0xd1, 0xcc, 0xb7, 0xa9, 0xb8, 0xdd, 0xe5, 0xfe, 0xe2, 0xd3, 0x1d, 0x32, - 0xf8, 0xcb, 0x85, 0x6f, 0xbe, 0x9a, 0xa3, 0xac, 0x35, 0x49, 0x2f, 0x99, 0xa0, 0x59, 0x93, 0xd3, - 0xf6, 0x03, 0xcf, 0xe9, 0x86, 0x9d, 0xc8, 0x6b, 0xae, 0xca, 0xf5, 0xdb, 0x64, 0x6b, 0x62, 0xdb, - 0x96, 0xd8, 0xb6, 0x64, 0xd1, 0x76, 0xcc, 0x7d, 0xc1, 0x84, 0xab, 0xbd, 0x8e, 0x65, 0x0c, 0xe6, - 0xd7, 0xb9, 0xef, 0xb4, 0xfa, 0x6d, 0xaf, 0xb7, 0x99, 0x3a, 0xce, 0xfe, 0xb0, 0x26, 0x81, 0xdc, - 0x91, 0x21, 0x90, 0x1b, 0x16, 0x2d, 0xfb, 0x4c, 0xf2, 0xe5, 0x45, 0x35, 0x44, 0x29, 0x9f, 0xd7, - 0x31, 0x3e, 0x95, 0x9c, 0xf9, 0x4c, 0x3c, 0x0a, 0xb9, 0x9b, 0x32, 0x85, 0x8c, 0xb9, 0x35, 0xf2, - 0xcb, 0x25, 0xe3, 0x6d, 0x1d, 0x19, 0x52, 0x19, 0x57, 0x2f, 0x4e, 0x9a, 0x82, 0xa8, 0x96, 0x7a, - 0x98, 0xf5, 0x4c, 0xd9, 0x84, 0x5b, 0xaf, 0x78, 0x37, 0x1b, 0xc9, 0xb6, 0x66, 0x46, 0xae, 0x38, - 0x6e, 0x3b, 0x61, 0xd3, 0x73, 0xa2, 0x8e, 0xd3, 0xed, 0x84, 0x91, 0xfa, 0x6d, 0xc7, 0xfc, 0x30, - 0x49, 0xe3, 0x1c, 0xbd, 0x5b, 0xb7, 0xdf, 0x1e, 0x4e, 0xe3, 0xd9, 0xf9, 0x59, 0xbd, 0x24, 0xf7, - 0x26, 0x8a, 0xe7, 0xa5, 0x3c, 0x17, 0x28, 0x6a, 0xe7, 0x29, 0x2f, 0x37, 0x29, 0x5e, 0xd0, 0xbf, - 0xf7, 0xc2, 0x91, 0x2f, 0xa2, 0x71, 0x91, 0x52, 0x53, 0xf8, 0x6c, 0x3d, 0xe8, 0xdf, 0x0f, 0xbe, - 0xfc, 0x53, 0x06, 0xe2, 0xf6, 0x7f, 0x74, 0xda, 0x2d, 0xa7, 0x73, 0x7b, 0xeb, 0x44, 0xfe, 0xbd, - 0x46, 0xfc, 0xfe, 0xfc, 0x30, 0x00, 0x08, 0x00, 0x52, 0x78, 0x00, 0xe9, 0xfb, 0x41, 0xb4, 0x57, - 0xd5, 0xc0, 0x0e, 0x85, 0x88, 0xbb, 0xca, 0xc5, 0x30, 0x31, 0x4b, 0x25, 0x53, 0x6c, 0x4b, 0x39, - 0x5b, 0x6c, 0x6b, 0x7c, 0x73, 0x28, 0x10, 0x53, 0x2a, 0x53, 0x22, 0x76, 0xa8, 0xb1, 0x0a, 0x8c, - 0xf3, 0x29, 0x74, 0x9b, 0x03, 0xfc, 0xff, 0xe8, 0xdf, 0xf9, 0xc3, 0xbb, 0xcd, 0x9d, 0x54, 0x4a, - 0xf9, 0x7e, 0x76, 0x7f, 0x66, 0x6e, 0x6a, 0x6b, 0xd5, 0xa3, 0xda, 0xd1, 0xc1, 0x61, 0xf5, 0x68, - 0x3f, 0x43, 0x73, 0x6c, 0x29, 0xcc, 0xf3, 0x3a, 0x03, 0x66, 0x59, 0xa9, 0x92, 0xfe, 0x14, 0x9a, - 0x14, 0xaa, 0xe6, 0x63, 0x84, 0x31, 0xc2, 0x39, 0x34, 0xc2, 0xea, 0x01, 0xf0, 0x3a, 0x81, 0xef, - 0x73, 0x01, 0xef, 0xdd, 0xb6, 0x1b, 0xdd, 0x76, 0xc2, 0xfb, 0x77, 0xcd, 0xce, 0x7d, 0xb7, 0x13, - 0x78, 0x41, 0xd4, 0x5b, 0xfd, 0xc7, 0x73, 0x7f, 0x9a, 0x3c, 0xcb, 0xc7, 0x0c, 0xd0, 0x74, 0x43, - 0xff, 0xde, 0x0d, 0x1f, 0x9d, 0xde, 0x5f, 0x7e, 0xd4, 0xfc, 0xe1, 0xfc, 0x78, 0xec, 0x45, 0x5e, - 0xe8, 0xf5, 0xfc, 0x9e, 0x3a, 0xfa, 0xac, 0x1f, 0x52, 0x5d, 0x97, 0xd8, 0x01, 0xce, 0x80, 0xb3, - 0xe2, 0xc3, 0x59, 0xcb, 0x6b, 0xfa, 0xf7, 0x6e, 0xfb, 0xa0, 0xa6, 0x03, 0x68, 0x0a, 0x4d, 0xa3, - 0x96, 0x69, 0x5a, 0xb5, 0xac, 0xce, 0x49, 0x15, 0xe7, 0xc4, 0x94, 0x73, 0xb2, 0x57, 0xc0, 0xa9, - 0x2d, 0x91, 0x4f, 0xb2, 0x60, 0xd7, 0xa3, 0x1f, 0xa1, 0xd7, 0xfb, 0xd1, 0x69, 0xb7, 0xc4, 0x98, - 0xc2, 0xf3, 0x88, 0x18, 0x7b, 0x8c, 0x3d, 0xc6, 0x1e, 0x63, 0x8f, 0xb1, 0xc7, 0xd8, 0x63, 0xec, - 0xd3, 0x30, 0xf6, 0xa1, 0xd7, 0x76, 0x23, 0xff, 0xc1, 0x13, 0xb4, 0xf6, 0xeb, 0x87, 0x44, 0x17, - 0x80, 0x2a, 0x40, 0x15, 0xa0, 0x0a, 0x50, 0x05, 0xa8, 0x02, 0x54, 0xa1, 0x30, 0x54, 0xc1, 0xe9, - 0xdc, 0xde, 0xf6, 0xbc, 0xc8, 0x00, 0x63, 0x98, 0x8c, 0x0c, 0x71, 0x80, 0x38, 0x40, 0x1c, 0x20, - 0x0e, 0x10, 0x07, 0x88, 0x03, 0xc4, 0x21, 0x7f, 0xc4, 0xe1, 0xc1, 0x0b, 0x07, 0xf6, 0x5d, 0x87, - 0x21, 0x4c, 0x86, 0xc0, 0x9c, 0x63, 0xce, 0x0b, 0x6f, 0xce, 0xbf, 0x77, 0x3a, 0x6d, 0xcf, 0xd5, - 0x4a, 0x58, 0xd8, 0xcd, 0x42, 0xb3, 0x00, 0xaf, 0xd9, 0x09, 0x5a, 0xb2, 0x77, 0x89, 0x2f, 0x8c, - 0x09, 0x34, 0x00, 0x0d, 0x30, 0x7d, 0x98, 0x3e, 0x4c, 0x1f, 0xa6, 0x0f, 0xd3, 0x4f, 0xc3, 0xe0, - 0xff, 0xe5, 0xfa, 0x91, 0x13, 0x75, 0x9c, 0xd0, 0xeb, 0x45, 0x9d, 0xd0, 0xd3, 0x4c, 0x36, 0x5c, - 0x39, 0x1a, 0x46, 0x1e, 0x23, 0x4f, 0xce, 0xe1, 0xa6, 0xfd, 0x4e, 0xce, 0x21, 0xb6, 0x99, 0x9c, - 0xc3, 0x12, 0x19, 0xe9, 0x8c, 0xd7, 0x63, 0x8e, 0x42, 0x37, 0xe8, 0x75, 0x3b, 0x61, 0x34, 0x07, - 0xdc, 0x7e, 0x27, 0xd8, 0x76, 0xbb, 0xbd, 0xed, 0x99, 0xd2, 0x5f, 0x33, 0xbf, 0x4f, 0xd4, 0xf5, - 0x50, 0xa6, 0x5f, 0x42, 0xa2, 0x74, 0x4c, 0x95, 0x34, 0xcc, 0x84, 0x67, 0x89, 0xe2, 0x42, 0xa6, - 0xf9, 0x45, 0x16, 0x8b, 0x0b, 0x25, 0xe6, 0x0f, 0x1a, 0x69, 0x92, 0x2a, 0xe9, 0x91, 0xd3, 0xb4, - 0xc8, 0xb7, 0x6f, 0xc7, 0x67, 0x74, 0x3b, 0x7e, 0x9a, 0xa3, 0xcc, 0x41, 0x1d, 0x40, 0x49, 0x2f, - 0xf9, 0x49, 0x1d, 0x7d, 0x8c, 0x3a, 0x60, 0x1c, 0x55, 0xa1, 0xa3, 0x9a, 0xb8, 0x0e, 0x58, 0xb3, - 0x73, 0x7f, 0xdf, 0x09, 0x1c, 0x05, 0xc6, 0x3b, 0x53, 0xcd, 0x6e, 0x32, 0x84, 0xe5, 0x3e, 0xba, - 0xf8, 0xc2, 0xf8, 0xc2, 0xd6, 0x7a, 0xeb, 0x26, 0xac, 0xf5, 0xf8, 0xc2, 0x69, 0x49, 0x50, 0xfb, - 0x51, 0xe8, 0xc8, 0x68, 0x1f, 0x1d, 0x89, 0x23, 0x64, 0xe0, 0x28, 0x49, 0x1d, 0x29, 0xf1, 0xa3, - 0x25, 0x7e, 0xc4, 0xcc, 0x1c, 0x35, 0x4d, 0x6f, 0x53, 0x71, 0x0f, 0xa9, 0x1e, 0xc1, 0xe9, 0x00, - 0x5e, 0xe0, 0x7e, 0x6f, 0x7b, 0x2d, 0xfd, 0xe5, 0x7e, 0xae, 0xc9, 0x37, 0x1a, 0x50, 0x73, 0x6d, - 0x66, 0xc2, 0x3c, 0x07, 0x2b, 0xad, 0x3b, 0x9c, 0x90, 0xcc, 0xa1, 0x7b, 0xe6, 0x25, 0xcf, 0xbe, - 0x41, 0x0c, 0x90, 0xc6, 0x02, 0x63, 0x98, 0x60, 0x0c, 0x1b, 0xcc, 0x62, 0x84, 0x1e, 0x56, 0x08, - 0x68, 0x87, 0x5b, 0x22, 0x2d, 0x6c, 0x97, 0x76, 0xa0, 0x7a, 0x68, 0xcb, 0x5a, 0xe3, 0xbc, 0xfb, - 0x2a, 0x9d, 0x09, 0xd6, 0x11, 0x66, 0x23, 0x37, 0xbc, 0xf3, 0x22, 0xc7, 0x8d, 0x22, 0x2f, 0xe8, - 0xab, 0x77, 0x83, 0x5d, 0x39, 0xc5, 0x2b, 0xc6, 0x06, 0x1a, 0x81, 0x46, 0xa0, 0x31, 0xe3, 0xd0, - 0xa8, 0x13, 0xda, 0xb3, 0x16, 0x1c, 0xab, 0x02, 0x63, 0x49, 0x84, 0xfe, 0x2c, 0x0d, 0xaa, 0x77, - 0xdd, 0xb8, 0xf8, 0x4b, 0xe6, 0x84, 0x6d, 0x49, 0x5d, 0x47, 0xae, 0x5b, 0x8e, 0xea, 0x1b, 0xd9, - 0x61, 0x85, 0xae, 0x2b, 0x37, 0xaf, 0xf8, 0x8e, 0xd8, 0xf8, 0x4f, 0x6f, 0x04, 0x97, 0xca, 0xfd, - 0x69, 0x6c, 0xa9, 0xf6, 0x58, 0xaa, 0xa7, 0x57, 0xd9, 0x18, 0xe5, 0x3a, 0x2d, 0x82, 0x67, 0xd5, - 0x4f, 0x57, 0xbc, 0x75, 0x5d, 0x1a, 0x47, 0xf8, 0x16, 0x76, 0x78, 0x67, 0xb2, 0x3d, 0x15, 0x9d, - 0x13, 0xdd, 0xca, 0xea, 0x4f, 0xa8, 0xc2, 0x64, 0x26, 0xec, 0x7a, 0xbf, 0xd6, 0x1c, 0x27, 0xe9, - 0x82, 0x6f, 0x4c, 0x38, 0xac, 0x22, 0x1c, 0x22, 0x1c, 0xe6, 0x55, 0x38, 0x34, 0xe2, 0xdd, 0xe2, - 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, 0xd6, 0xe2, - 0xd6, 0x5a, 0xdc, 0xaa, 0xdc, 0x05, 0xc3, 0x0c, 0x61, 0x86, 0x30, 0x43, 0x99, 0x1d, 0xc8, 0x5d, - 0xf0, 0xf0, 0xbb, 0x77, 0xba, 0x91, 0xdf, 0x74, 0xdb, 0x4e, 0xb7, 0xf3, 0x97, 0x17, 0xca, 0x21, - 0xeb, 0xfc, 0xb0, 0x32, 0x80, 0xb8, 0x0b, 0x20, 0x02, 0x88, 0x00, 0xa2, 0x8c, 0x3e, 0xf6, 0xac, - 0x93, 0x3d, 0xdc, 0xc9, 0x6d, 0x91, 0xa9, 0x4e, 0xf6, 0x70, 0x27, 0xb5, 0x39, 0x64, 0xd8, 0x90, - 0x38, 0x08, 0x98, 0x00, 0x83, 0x55, 0xa0, 0x10, 0x3d, 0x76, 0xbd, 0x5e, 0x45, 0xd0, 0xbf, 0x13, - 0x46, 0x05, 0xe3, 0xe8, 0x60, 0x1c, 0x25, 0xd6, 0xa1, 0xc5, 0x68, 0xe6, 0xb3, 0xe6, 0xf8, 0x09, - 0xed, 0x5a, 0x31, 0x3e, 0x65, 0x54, 0x71, 0x33, 0xa1, 0xbc, 0x19, 0x55, 0xe0, 0x0c, 0x29, 0x71, - 0xf2, 0x8a, 0x9c, 0x51, 0x65, 0xce, 0xb0, 0x42, 0x67, 0x5a, 0xfe, 0xb1, 0x21, 0x03, 0x19, 0x50, - 0xee, 0x8c, 0x2a, 0x78, 0x86, 0x95, 0xbc, 0x42, 0x2d, 0xe9, 0xab, 0x6c, 0x8e, 0x76, 0x9d, 0x11, - 0xe5, 0x51, 0x60, 0xcb, 0x57, 0xfc, 0xa0, 0x17, 0xb9, 0x41, 0x24, 0x4f, 0x5c, 0x27, 0x03, 0x43, - 0x5e, 0x21, 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0xd3, 0x81, 0xbc, 0x42, 0x5e, - 0x21, 0xaf, 0x72, 0xe4, 0x35, 0xf2, 0xc2, 0x07, 0xb7, 0x6d, 0x82, 0xbd, 0x8e, 0x47, 0x86, 0xbe, - 0x42, 0x5f, 0xa1, 0xaf, 0xa5, 0xa3, 0xaf, 0xbd, 0xc8, 0x8d, 0x1c, 0x61, 0x10, 0x98, 0x05, 0x82, - 0x5f, 0x05, 0x87, 0xfc, 0x12, 0x8c, 0x6c, 0x58, 0x25, 0x70, 0x83, 0xce, 0xa8, 0xb0, 0xbe, 0xe8, - 0x59, 0x83, 0xc4, 0xca, 0x23, 0x38, 0x24, 0x36, 0x3b, 0x24, 0xd6, 0xf4, 0x92, 0xee, 0xfe, 0x5a, - 0xab, 0x1d, 0x1c, 0xd6, 0x6a, 0x3b, 0x87, 0x7b, 0x87, 0x3b, 0x47, 0xfb, 0xfb, 0xbb, 0x07, 0xbb, - 0xfb, 0xf0, 0x5a, 0x78, 0xed, 0xfa, 0x65, 0xbc, 0x17, 0xdc, 0xf5, 0x53, 0x93, 0x36, 0x18, 0x14, - 0x36, 0x0b, 0x9b, 0x85, 0xcd, 0x96, 0x8e, 0xcd, 0x22, 0xc6, 0xc2, 0x63, 0x17, 0x96, 0x0d, 0x31, - 0xb6, 0x70, 0x3c, 0x16, 0x31, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0x55, 0xeb, 0x14, 0x14, 0x87, 0xb9, - 0xaa, 0x74, 0x0d, 0x82, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0x05, 0xa0, 0xaf, 0x83, 0xb3, 0x1f, 0xf9, - 0xcd, 0xff, 0xf6, 0x8c, 0x10, 0x58, 0xa4, 0x58, 0xa4, 0x58, 0x28, 0x6c, 0x36, 0x28, 0x2c, 0x52, - 0x2c, 0xac, 0x36, 0x63, 0xac, 0x56, 0x10, 0xc8, 0x9e, 0x09, 0xad, 0x1f, 0xc0, 0x65, 0xe1, 0xb2, - 0x70, 0xd9, 0xf2, 0x71, 0x59, 0xa4, 0x58, 0x78, 0xec, 0xc2, 0xb2, 0x21, 0xc5, 0x16, 0x8e, 0xc7, - 0x22, 0xc5, 0x42, 0x5a, 0xd3, 0x25, 0xad, 0xa6, 0xa4, 0xd8, 0xc9, 0xc8, 0xd0, 0x57, 0xe8, 0x2b, - 0xf4, 0xb5, 0x74, 0xf4, 0x15, 0x29, 0x16, 0x0a, 0x6b, 0x0e, 0xbf, 0xa1, 0xb0, 0xd9, 0xa1, 0xb0, - 0x48, 0xb1, 0xb0, 0x5a, 0x41, 0x56, 0x9b, 0x6a, 0x89, 0x2f, 0xa1, 0x9e, 0x1c, 0xd3, 0xf1, 0x0c, - 0xf7, 0xe6, 0x18, 0xb6, 0xac, 0xd8, 0x96, 0x2c, 0xfc, 0x37, 0xfa, 0xd6, 0x51, 0xd8, 0x6f, 0x46, - 0xc1, 0xd8, 0x92, 0x1f, 0x77, 0x7b, 0x37, 0xc7, 0xdd, 0xde, 0xe7, 0xe1, 0x57, 0xb8, 0x69, 0x0c, - 0xbe, 0xc2, 0xcd, 0x87, 0xe1, 0x57, 0x38, 0x09, 0x6e, 0xce, 0x47, 0xcf, 0x6e, 0x0c, 0x1f, 0x4d, - 0x5f, 0xbe, 0x2d, 0xfa, 0xf2, 0x09, 0x38, 0x3b, 0x54, 0x65, 0xa4, 0x2a, 0xa3, 0x7d, 0x17, 0x86, - 0x06, 0x06, 0x99, 0x72, 0x4b, 0x68, 0x60, 0x40, 0x03, 0x03, 0x1a, 0x18, 0x48, 0x6a, 0x46, 0xf4, - 0xe5, 0xb3, 0xe9, 0x03, 0x58, 0xe1, 0xfe, 0xd6, 0xda, 0xf2, 0xbd, 0x32, 0x38, 0xf3, 0xba, 0x33, - 0x6e, 0x78, 0xa6, 0x2b, 0x4a, 0x2d, 0x09, 0xe3, 0x7a, 0x50, 0xc9, 0x56, 0x30, 0xfe, 0x3a, 0x24, - 0x58, 0x83, 0xca, 0xf8, 0x55, 0x3b, 0xfd, 0xa8, 0xdb, 0x4f, 0x5e, 0xe0, 0x6f, 0xca, 0x9b, 0xe6, - 0x87, 0x49, 0xb8, 0x07, 0xd4, 0x0a, 0xce, 0x2b, 0xbb, 0x32, 0x3a, 0xae, 0x8b, 0xa0, 0xab, 0xa2, - 0xeb, 0x9a, 0x88, 0xb9, 0x22, 0x62, 0xae, 0x87, 0xac, 0xab, 0x61, 0x16, 0x77, 0x54, 0x0b, 0xba, - 0x57, 0x9a, 0x93, 0x5d, 0xa7, 0xd9, 0x72, 0x74, 0x3c, 0x4e, 0xca, 0x3d, 0x47, 0x77, 0xe8, 0x39, - 0x6a, 0xc3, 0xcb, 0xa7, 0xe7, 0xa8, 0xe0, 0x11, 0x44, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0x43, 0xc0, - 0x43, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0xcb, 0x93, 0x80, 0x37, - 0x12, 0x49, 0xb6, 0xc7, 0x0e, 0xa0, 0x2d, 0x15, 0x4f, 0x49, 0xc9, 0x72, 0x23, 0x4f, 0xdf, 0xd3, - 0x1d, 0x0d, 0x93, 0xb2, 0xa3, 0x5b, 0xc5, 0xd1, 0xc5, 0xd1, 0xcd, 0xab, 0xa3, 0x6b, 0xc4, 0xc3, - 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, 0xc5, 0xb5, - 0xc5, 0xb5, 0xb5, 0xb8, 0x55, 0x69, 0x04, 0x0f, 0xad, 0x83, 0xd6, 0xe5, 0x90, 0xd6, 0xd1, 0x08, - 0x3e, 0x5d, 0x10, 0x30, 0x01, 0x06, 0xab, 0x40, 0x81, 0xa4, 0x6b, 0xd3, 0x28, 0xb1, 0x0e, 0x2d, - 0x48, 0xba, 0x4e, 0xdd, 0x3b, 0x34, 0xe1, 0x25, 0x1a, 0xf5, 0x16, 0x0d, 0x79, 0x8d, 0xf2, 0xde, - 0xa3, 0x51, 0x2f, 0xd2, 0xb0, 0x37, 0x69, 0xda, 0x55, 0xb1, 0xe1, 0xb2, 0x18, 0xf0, 0x32, 0x8d, - 0x7a, 0x9b, 0x86, 0xbd, 0xce, 0x42, 0x2d, 0x29, 0xd9, 0xd5, 0xa6, 0xb7, 0x3c, 0x8d, 0xe0, 0x21, - 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, 0xaf, - 0x79, 0x22, 0xaf, 0x34, 0x82, 0x87, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0xd2, 0x7b, 0x96, 0x46, 0xf0, - 0x90, 0x58, 0x93, 0x08, 0x0e, 0x89, 0xcd, 0x0e, 0x89, 0xa5, 0xe4, 0x25, 0xbc, 0x36, 0x5b, 0xbc, - 0x96, 0x46, 0xf0, 0xb0, 0x59, 0xd8, 0x2c, 0x6c, 0x56, 0x6a, 0xcf, 0x22, 0xc6, 0xc2, 0x63, 0x17, - 0x96, 0x0d, 0x31, 0xb6, 0x70, 0x3c, 0x16, 0x31, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0xa5, 0x11, 0x3c, - 0xf4, 0x15, 0xfa, 0x0a, 0x7d, 0x15, 0xde, 0xb3, 0x74, 0x1f, 0x82, 0xc2, 0x9a, 0xc3, 0x6f, 0x28, - 0x6c, 0x76, 0x28, 0x2c, 0x52, 0x2c, 0xac, 0x36, 0x63, 0xac, 0x96, 0x46, 0xf0, 0x70, 0x59, 0xb8, - 0x2c, 0x5c, 0x56, 0x68, 0xcf, 0x22, 0xc5, 0xc2, 0x63, 0x17, 0x96, 0x0d, 0x29, 0xb6, 0x70, 0x3c, - 0x16, 0x29, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0xa5, 0x11, 0x3c, 0xf4, 0x15, 0xfa, 0x0a, 0x7d, 0x15, - 0xde, 0xb3, 0x48, 0xb1, 0x50, 0x58, 0x73, 0xf8, 0x0d, 0x85, 0xcd, 0x0e, 0x85, 0x45, 0x8a, 0x85, - 0xd5, 0x0a, 0xb2, 0x5a, 0x1a, 0xc1, 0x27, 0xab, 0x25, 0x9f, 0x72, 0x33, 0xf8, 0xf3, 0xe1, 0xb7, - 0xa0, 0x21, 0xfc, 0x4b, 0x54, 0x88, 0x7e, 0x52, 0x6a, 0x4e, 0x0f, 0xd5, 0x19, 0xa9, 0xce, 0x68, - 0xdf, 0x95, 0xa1, 0xe8, 0x76, 0xa6, 0xdc, 0x13, 0x8a, 0x6e, 0x53, 0x74, 0x9b, 0xa2, 0xdb, 0x92, - 0xda, 0x11, 0xfd, 0xa4, 0x6c, 0xfa, 0x02, 0xd6, 0x7c, 0x00, 0x9a, 0xc2, 0xdb, 0x99, 0x6d, 0x93, - 0x8d, 0xe1, 0x47, 0xde, 0x54, 0x16, 0x9a, 0xc3, 0x8f, 0xe7, 0xc8, 0xbf, 0x77, 0xc3, 0x47, 0x47, - 0xc1, 0x02, 0x4f, 0x59, 0xd4, 0xe2, 0x40, 0x34, 0x88, 0xb7, 0xe0, 0xaa, 0xd0, 0x20, 0x5e, 0x07, - 0x83, 0x68, 0x10, 0x4f, 0x83, 0x78, 0x7b, 0x5e, 0x3f, 0x7d, 0xf3, 0x04, 0x8f, 0xe0, 0x74, 0x00, - 0x2f, 0x70, 0xbf, 0xb7, 0xbd, 0x96, 0x9c, 0x8a, 0x37, 0x19, 0x50, 0xb7, 0x89, 0x84, 0x77, 0xeb, - 0xf6, 0xdb, 0xc3, 0xa5, 0x19, 0xac, 0x34, 0x4a, 0x20, 0x4a, 0x20, 0x4a, 0x60, 0xd6, 0x95, 0xc0, - 0xef, 0x9d, 0x4e, 0xdb, 0x73, 0x03, 0x49, 0x1d, 0x70, 0x97, 0x4b, 0x92, 0x2d, 0x2e, 0x49, 0x80, - 0x46, 0xa0, 0x31, 0xdf, 0xd0, 0xc8, 0x25, 0x89, 0xfa, 0x2f, 0x2e, 0x49, 0x44, 0xc7, 0xe5, 0x92, - 0x84, 0x4b, 0x12, 0x2e, 0x49, 0xb8, 0x24, 0x99, 0xca, 0xf6, 0x0b, 0xd2, 0xf3, 0xf6, 0x58, 0x56, - 0xb3, 0x75, 0x4f, 0xa2, 0x74, 0x4f, 0xe0, 0x46, 0x9e, 0xbe, 0x7e, 0x38, 0x1a, 0x26, 0x65, 0xf9, - 0xb0, 0x8a, 0x7c, 0x88, 0x7c, 0x98, 0x57, 0xf9, 0xd0, 0x88, 0x8f, 0x8b, 0x73, 0x8b, 0x73, 0x8b, - 0x73, 0x8b, 0x73, 0x8b, 0x73, 0x8b, 0x73, 0x8b, 0x73, 0x8b, 0x73, 0x8b, 0x73, 0x6b, 0x71, 0xab, - 0x72, 0x23, 0x0c, 0x33, 0x84, 0x19, 0xc2, 0x0c, 0x65, 0x76, 0x20, 0x37, 0xc2, 0xc3, 0xef, 0x3e, - 0x9f, 0x76, 0x28, 0x86, 0xac, 0x92, 0xd9, 0x8c, 0x9a, 0x7a, 0x16, 0x80, 0x08, 0x20, 0x16, 0x0f, - 0x10, 0x75, 0xf5, 0xb1, 0x67, 0x9d, 0xec, 0xe1, 0x4e, 0xbe, 0x76, 0xd0, 0x60, 0x50, 0xca, 0x06, - 0x49, 0x80, 0x02, 0x65, 0x83, 0x4c, 0xa3, 0xc4, 0x3a, 0xb4, 0xa0, 0x6c, 0x50, 0xea, 0x8a, 0x9b, - 0x09, 0xe5, 0xcd, 0xa8, 0x02, 0x67, 0x48, 0x89, 0x93, 0x57, 0xe4, 0x8c, 0x2a, 0x73, 0x86, 0x15, - 0x3a, 0xd3, 0xf2, 0x8f, 0x0d, 0x19, 0xc8, 0x80, 0x72, 0x67, 0x54, 0xc1, 0x33, 0xac, 0xe4, 0x15, - 0x6a, 0x49, 0xa9, 0x0f, 0x64, 0x7a, 0xcb, 0x57, 0xfc, 0xa0, 0x17, 0xb9, 0x43, 0x4b, 0x2d, 0xde, - 0x0c, 0x7e, 0x34, 0x30, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, 0xaf, 0x30, - 0x1d, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x2a, 0x47, 0x5e, 0x23, 0x2f, 0x7c, 0x70, 0xdb, 0x26, 0xd8, - 0xeb, 0x78, 0x64, 0xe8, 0x2b, 0xf4, 0x15, 0xfa, 0x5a, 0x3a, 0xfa, 0xda, 0x8b, 0xdc, 0xc8, 0x11, - 0x06, 0x81, 0x2d, 0x8a, 0xb6, 0xe7, 0x9f, 0xc4, 0x52, 0xb4, 0xbd, 0x70, 0x24, 0x96, 0xa2, 0xed, - 0xf0, 0xda, 0x6c, 0xf1, 0xda, 0x7b, 0xc1, 0x5d, 0x3f, 0xdb, 0x10, 0x1e, 0x36, 0x0b, 0x9b, 0x85, - 0xcd, 0x96, 0x8f, 0xcd, 0x22, 0xc6, 0xc2, 0x63, 0x17, 0x96, 0x0d, 0x31, 0xb6, 0x70, 0x3c, 0x16, - 0x31, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0x35, 0xd5, 0x3f, 0x73, 0x32, 0x32, 0xf4, 0x15, 0xfa, 0x0a, - 0x7d, 0x2d, 0x1d, 0x7d, 0xa5, 0x7f, 0x26, 0x14, 0xd6, 0x1c, 0x7e, 0x43, 0x61, 0xb3, 0x43, 0x61, - 0x91, 0x62, 0x61, 0xb5, 0x19, 0x63, 0xb5, 0x82, 0x40, 0x36, 0xdb, 0x10, 0x1e, 0x2e, 0x0b, 0x97, - 0x85, 0xcb, 0x96, 0x8f, 0xcb, 0x22, 0xc5, 0xc2, 0x63, 0x17, 0x96, 0x0d, 0x29, 0xb6, 0x70, 0x3c, - 0x16, 0x29, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0x35, 0x25, 0xc5, 0x4e, 0x46, 0x86, 0xbe, 0x42, 0x5f, - 0xa1, 0xaf, 0xa5, 0xa3, 0xaf, 0x48, 0xb1, 0x50, 0x58, 0x73, 0xf8, 0x0d, 0x85, 0xcd, 0x0e, 0x85, - 0x45, 0x8a, 0x85, 0xd5, 0x0a, 0xb2, 0xda, 0x54, 0x4b, 0x7c, 0x09, 0x75, 0xe6, 0x98, 0x8e, 0x67, - 0xa5, 0x43, 0xc7, 0xb0, 0x71, 0xc5, 0xb6, 0x64, 0xf9, 0xbf, 0xad, 0x78, 0xed, 0xb7, 0x4f, 0xfd, - 0xc0, 0x6b, 0x8c, 0xbe, 0xc7, 0x49, 0x70, 0x73, 0x3e, 0xfa, 0x02, 0x8d, 0xe1, 0xf3, 0x69, 0xd4, - 0xb7, 0x45, 0xa3, 0x3e, 0x01, 0xbf, 0x87, 0x02, 0x8d, 0x14, 0x68, 0xb4, 0xef, 0xcd, 0xd0, 0xcb, - 0x20, 0x53, 0x1e, 0x0a, 0xbd, 0x0c, 0xe8, 0x65, 0x40, 0x2f, 0x03, 0x49, 0xf9, 0x88, 0x46, 0x7d, - 0x36, 0xdd, 0x01, 0x8b, 0x6e, 0x80, 0xb5, 0x3e, 0x7d, 0xaf, 0x0c, 0xce, 0xbf, 0xee, 0xbc, 0x5b, - 0x99, 0xef, 0x8a, 0x52, 0xa7, 0xc2, 0x44, 0x2e, 0x55, 0xb2, 0xc5, 0x8c, 0xbf, 0x24, 0x09, 0x96, - 0xa3, 0x32, 0xf7, 0xd6, 0x9d, 0x7e, 0xf2, 0xfa, 0x7f, 0x53, 0x2e, 0xb5, 0x34, 0x52, 0xc2, 0x4d, - 0xa1, 0x56, 0x92, 0x5e, 0xd9, 0xc3, 0xd1, 0xf1, 0x68, 0x04, 0x3d, 0x18, 0x5d, 0x8f, 0x45, 0xcc, - 0x43, 0x11, 0xf3, 0x48, 0x64, 0x3d, 0x10, 0xb3, 0x40, 0xa4, 0x5a, 0xf2, 0xbd, 0xd2, 0x9c, 0xec, - 0x3a, 0xcd, 0xa6, 0xa4, 0xe3, 0x71, 0x52, 0xee, 0x4a, 0xba, 0x43, 0x57, 0x52, 0x1b, 0xce, 0x3f, - 0x5d, 0x49, 0x05, 0x8f, 0x20, 0xba, 0x1e, 0xba, 0x1e, 0xba, 0x1e, 0xba, 0x1e, 0xba, 0x1e, 0xba, - 0x1e, 0xba, 0x1e, 0xba, 0x1e, 0xba, 0x1e, 0xba, 0x5e, 0xfe, 0x74, 0xbd, 0x4e, 0x3f, 0xda, 0x1e, - 0xfb, 0x80, 0xb6, 0x94, 0x3d, 0x25, 0x5d, 0xcb, 0x8d, 0x3c, 0x7d, 0x67, 0x77, 0x34, 0x4c, 0xca, - 0xbe, 0x6e, 0x15, 0x5f, 0x17, 0x5f, 0x37, 0xaf, 0xbe, 0xae, 0x11, 0x27, 0x17, 0xef, 0x16, 0xef, - 0x16, 0xef, 0x16, 0xef, 0x16, 0xef, 0x16, 0xef, 0x16, 0xef, 0x16, 0xef, 0x16, 0xef, 0xd6, 0xe2, - 0x56, 0xa5, 0x5b, 0x3c, 0xb4, 0x0e, 0x5a, 0x97, 0x43, 0x5a, 0x47, 0xb7, 0xf8, 0x74, 0x41, 0xc0, - 0x04, 0x18, 0xac, 0x02, 0x05, 0x32, 0xb3, 0x4d, 0xa3, 0xc4, 0x3a, 0xb4, 0x20, 0x33, 0x3b, 0x75, - 0xef, 0xd0, 0x84, 0x97, 0x68, 0xd4, 0x5b, 0x34, 0xe4, 0x35, 0xca, 0x7b, 0x8f, 0x46, 0xbd, 0x48, - 0xc3, 0xde, 0xa4, 0x69, 0x57, 0xc5, 0x86, 0xcb, 0x62, 0xc0, 0xcb, 0x34, 0xea, 0x6d, 0x1a, 0xf6, - 0x3a, 0x0b, 0xb5, 0xa4, 0xa4, 0x60, 0x9b, 0xde, 0xf2, 0x74, 0x8b, 0x87, 0xbc, 0x42, 0x5e, 0x21, - 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0xe6, 0x89, 0xbc, 0xd2, - 0x2d, 0x1e, 0xfa, 0x0a, 0x7d, 0x85, 0xbe, 0x4a, 0xef, 0x59, 0xba, 0xc5, 0x43, 0x62, 0x4d, 0x22, - 0x38, 0x24, 0x36, 0x3b, 0x24, 0x96, 0xba, 0x98, 0xf0, 0xda, 0x6c, 0xf1, 0x5a, 0xba, 0xc5, 0xc3, - 0x66, 0x61, 0xb3, 0xb0, 0x59, 0xa9, 0x3d, 0x8b, 0x18, 0x0b, 0x8f, 0x5d, 0x58, 0x36, 0xc4, 0xd8, - 0xc2, 0xf1, 0x58, 0xc4, 0x58, 0x48, 0x6b, 0xba, 0xa4, 0x95, 0x6e, 0xf1, 0xd0, 0x57, 0xe8, 0x2b, - 0xf4, 0x55, 0x78, 0xcf, 0xd2, 0xa2, 0x08, 0x0a, 0x6b, 0x0e, 0xbf, 0xa1, 0xb0, 0xd9, 0xa1, 0xb0, - 0x48, 0xb1, 0xb0, 0xda, 0x8c, 0xb1, 0x5a, 0xba, 0xc5, 0xc3, 0x65, 0xe1, 0xb2, 0x70, 0x59, 0xa1, - 0x3d, 0x8b, 0x14, 0x0b, 0x8f, 0x5d, 0x58, 0x36, 0xa4, 0xd8, 0xc2, 0xf1, 0x58, 0xa4, 0x58, 0x48, - 0x6b, 0xba, 0xa4, 0x95, 0x6e, 0xf1, 0xd0, 0x57, 0xe8, 0x2b, 0xf4, 0x55, 0x78, 0xcf, 0x22, 0xc5, - 0x42, 0x61, 0xcd, 0xe1, 0x37, 0x14, 0x36, 0x3b, 0x14, 0x16, 0x29, 0x16, 0x56, 0x2b, 0xc8, 0x6a, - 0xe9, 0x16, 0x9f, 0xb8, 0x9c, 0x7c, 0x16, 0xda, 0xc5, 0x9f, 0xf7, 0x23, 0xfa, 0xc5, 0xbf, 0xc4, - 0x87, 0xe8, 0x2b, 0xa5, 0xe6, 0xf9, 0x50, 0xa2, 0x91, 0x12, 0x8d, 0xf6, 0xfd, 0x19, 0x2a, 0x6f, - 0x67, 0xca, 0x47, 0xa1, 0xf2, 0x36, 0x95, 0xb7, 0xa9, 0xbc, 0x2d, 0x29, 0x20, 0xd1, 0x57, 0xca, - 0xa6, 0x43, 0x60, 0xd3, 0x11, 0xa0, 0x61, 0xbc, 0xb5, 0x09, 0x37, 0xde, 0x31, 0xfe, 0xbc, 0x1f, - 0x65, 0xa6, 0x65, 0xfc, 0x48, 0x1a, 0x1d, 0xb7, 0xca, 0xd7, 0xeb, 0x19, 0x3f, 0x37, 0x14, 0x4d, - 0xe3, 0x2d, 0xb8, 0x2d, 0x34, 0x8d, 0xd7, 0x01, 0x23, 0x9a, 0xc6, 0xd3, 0x34, 0xde, 0x9e, 0x02, - 0x40, 0x23, 0x3d, 0xc1, 0x23, 0x38, 0x1d, 0xc0, 0x0b, 0xdc, 0xef, 0x6d, 0xaf, 0x25, 0xa7, 0xe8, - 0x4d, 0x06, 0xd4, 0xed, 0x2a, 0xe1, 0xdd, 0xba, 0xfd, 0xf6, 0x70, 0x69, 0x06, 0x2b, 0x8d, 0x2a, - 0x88, 0x2a, 0x88, 0x2a, 0x98, 0x75, 0x55, 0xf0, 0x7b, 0xa7, 0xd3, 0xf6, 0xdc, 0x40, 0x52, 0x13, - 0xdc, 0xe5, 0xc2, 0x64, 0x8b, 0x0b, 0x13, 0xa0, 0x11, 0x68, 0xcc, 0x37, 0x34, 0x72, 0x61, 0xa2, - 0xfe, 0x8b, 0x0b, 0x13, 0xd1, 0x71, 0xb9, 0x30, 0xe1, 0xc2, 0x84, 0x0b, 0x13, 0x2e, 0x4c, 0xe6, - 0xf5, 0xfb, 0x59, 0xf1, 0x79, 0x7b, 0x2c, 0xac, 0xd9, 0xba, 0x32, 0x51, 0xba, 0x2f, 0x70, 0x23, - 0x4f, 0x5f, 0x41, 0x1c, 0x0d, 0x93, 0xb2, 0x80, 0x58, 0x45, 0x40, 0x44, 0x40, 0xcc, 0xab, 0x80, - 0x68, 0xc4, 0xcb, 0xc5, 0xbd, 0xc5, 0xbd, 0xc5, 0xbd, 0xc5, 0xbd, 0xc5, 0xbd, 0xc5, 0xbd, 0xc5, - 0xbd, 0xc5, 0xbd, 0xc5, 0xbd, 0xb5, 0xb8, 0x55, 0xb9, 0x13, 0x86, 0x19, 0xc2, 0x0c, 0x61, 0x86, - 0x32, 0x3b, 0x90, 0x3b, 0xe1, 0xe1, 0x77, 0x9f, 0x4f, 0x43, 0x14, 0x43, 0x56, 0xc9, 0xec, 0x46, - 0x4d, 0x3d, 0x0b, 0x40, 0x04, 0x10, 0x8b, 0x07, 0x88, 0xba, 0xfa, 0xd8, 0xb3, 0x4e, 0xf6, 0x70, - 0x27, 0x5f, 0x4e, 0x68, 0x30, 0x28, 0x95, 0x84, 0x24, 0x40, 0x81, 0x4a, 0x42, 0xa6, 0x51, 0x62, - 0x1d, 0x5a, 0x50, 0x49, 0x28, 0x75, 0xc5, 0xcd, 0x84, 0xf2, 0x66, 0x54, 0x81, 0x33, 0xa4, 0xc4, - 0xc9, 0x2b, 0x72, 0x46, 0x95, 0x39, 0xc3, 0x0a, 0x9d, 0x69, 0xf9, 0xc7, 0x86, 0x0c, 0x64, 0x40, - 0xb9, 0x33, 0xaa, 0xe0, 0x19, 0x56, 0xf2, 0x0a, 0xb5, 0xa4, 0x94, 0x0c, 0x32, 0xbd, 0xe5, 0x2b, - 0x7e, 0xd0, 0x8b, 0xdc, 0xa1, 0xa5, 0x16, 0xef, 0x0f, 0x3f, 0x1a, 0x18, 0xf2, 0x0a, 0x79, 0x85, - 0xbc, 0x42, 0x5e, 0x21, 0xaf, 0x90, 0x57, 0x98, 0x0e, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x95, 0x23, - 0xaf, 0x91, 0x17, 0x3e, 0xb8, 0x6d, 0x13, 0xec, 0x75, 0x3c, 0x32, 0xf4, 0x15, 0xfa, 0x0a, 0x7d, - 0x2d, 0x1d, 0x7d, 0xed, 0x45, 0x6e, 0xe4, 0x08, 0x83, 0xc0, 0x16, 0x75, 0xdc, 0xf3, 0x4f, 0x62, - 0xa9, 0xe3, 0x5e, 0x38, 0x12, 0x4b, 0x1d, 0x77, 0x78, 0x6d, 0xb6, 0x78, 0xed, 0xbd, 0xe0, 0xae, - 0x9f, 0xed, 0x11, 0x0f, 0x9b, 0x85, 0xcd, 0xc2, 0x66, 0xcb, 0xc7, 0x66, 0x11, 0x63, 0xe1, 0xb1, - 0x0b, 0xcb, 0x86, 0x18, 0x5b, 0x38, 0x1e, 0x8b, 0x18, 0x0b, 0x69, 0x4d, 0x97, 0xb4, 0x9a, 0x6a, - 0xa9, 0x39, 0x19, 0x19, 0xfa, 0x0a, 0x7d, 0x85, 0xbe, 0x96, 0x8e, 0xbe, 0xd2, 0x52, 0x13, 0x0a, - 0x6b, 0x0e, 0xbf, 0xa1, 0xb0, 0xd9, 0xa1, 0xb0, 0x48, 0xb1, 0xb0, 0xda, 0x8c, 0xb1, 0x5a, 0x41, - 0x20, 0x9b, 0xed, 0x11, 0x0f, 0x97, 0x85, 0xcb, 0xc2, 0x65, 0xcb, 0xc7, 0x65, 0x91, 0x62, 0xe1, - 0xb1, 0x0b, 0xcb, 0x86, 0x14, 0x5b, 0x38, 0x1e, 0x8b, 0x14, 0x0b, 0x69, 0x4d, 0x97, 0xb4, 0x9a, - 0x92, 0x62, 0x27, 0x23, 0x43, 0x5f, 0xa1, 0xaf, 0xd0, 0xd7, 0xd2, 0xd1, 0x57, 0xa4, 0x58, 0x28, - 0xac, 0x39, 0xfc, 0x86, 0xc2, 0x66, 0x87, 0xc2, 0x22, 0xc5, 0xc2, 0x6a, 0x05, 0x59, 0x6d, 0xaa, - 0x25, 0xbe, 0x84, 0x7a, 0x73, 0x4c, 0xc7, 0xb3, 0xd4, 0xa3, 0x63, 0xd8, 0xba, 0x62, 0x5b, 0xb2, - 0x00, 0xe0, 0x56, 0xfc, 0x46, 0xdc, 0x97, 0x93, 0x6f, 0x72, 0x12, 0xdc, 0x9c, 0x8f, 0xbe, 0x42, - 0x63, 0xf8, 0x0d, 0x68, 0xd7, 0xb7, 0x45, 0xbb, 0x3e, 0x01, 0xdf, 0x87, 0x22, 0x8d, 0x14, 0x69, - 0xb4, 0xef, 0xd1, 0xd0, 0xcf, 0x20, 0x53, 0x5e, 0x0a, 0xfd, 0x0c, 0xe8, 0x67, 0x40, 0x3f, 0x03, - 0x49, 0x09, 0x89, 0x76, 0x7d, 0x36, 0x5d, 0x02, 0xab, 0xae, 0x80, 0xb5, 0x6e, 0x7d, 0xaf, 0x0c, - 0xae, 0x80, 0xee, 0xcc, 0x5b, 0x9a, 0xf1, 0x8a, 0x52, 0xc7, 0xc2, 0x84, 0x8e, 0x55, 0xb2, 0x05, - 0x8d, 0xbf, 0x2c, 0x09, 0x96, 0xa4, 0xb2, 0xf0, 0xe6, 0x9d, 0x7e, 0xf2, 0x5a, 0x80, 0x53, 0x4e, - 0xb5, 0x62, 0xac, 0x84, 0x9b, 0x43, 0xad, 0x40, 0xbd, 0xb2, 0xaf, 0xa3, 0xe3, 0xdb, 0x08, 0xfa, - 0x32, 0xba, 0xbe, 0x8b, 0x98, 0xaf, 0x22, 0xe6, 0x9b, 0xc8, 0xfa, 0x22, 0x66, 0x01, 0x49, 0xb5, - 0x00, 0x7c, 0xa5, 0x39, 0xd9, 0x75, 0x9a, 0x2d, 0x4a, 0xc7, 0xe3, 0xa4, 0xdc, 0xa3, 0x74, 0x87, - 0x1e, 0xa5, 0x36, 0x64, 0x00, 0x7a, 0x94, 0x0a, 0x1e, 0x41, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, - 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0xbe, 0x3c, 0x2a, - 0x7c, 0x9d, 0x7e, 0xb4, 0x3d, 0xf6, 0x02, 0x6d, 0x69, 0x7c, 0x4a, 0xfa, 0x96, 0x1b, 0x79, 0xfa, - 0xee, 0xee, 0x68, 0x98, 0x94, 0xbd, 0xdd, 0x2a, 0xde, 0x2e, 0xde, 0x6e, 0x5e, 0xbd, 0x5d, 0x23, - 0x6e, 0x2e, 0xfe, 0x2d, 0xfe, 0x2d, 0xfe, 0x2d, 0xfe, 0x2d, 0xfe, 0x2d, 0xfe, 0x2d, 0xfe, 0x2d, - 0xfe, 0x2d, 0xfe, 0xad, 0xc5, 0xad, 0x4a, 0xf7, 0x78, 0x68, 0x1d, 0xb4, 0x2e, 0x87, 0xb4, 0x8e, - 0xee, 0xf1, 0xe9, 0x82, 0x80, 0x09, 0x30, 0x58, 0x05, 0x0a, 0x64, 0x6a, 0x9b, 0x46, 0x89, 0x75, - 0x68, 0x41, 0xa6, 0x76, 0xea, 0xde, 0xa1, 0x09, 0x2f, 0xd1, 0xa8, 0xb7, 0x68, 0xc8, 0x6b, 0x94, - 0xf7, 0x1e, 0x8d, 0x7a, 0x91, 0x86, 0xbd, 0x49, 0xd3, 0xae, 0x8a, 0x0d, 0x97, 0xc5, 0x80, 0x97, - 0x69, 0xd4, 0xdb, 0x34, 0xec, 0x75, 0x16, 0x6a, 0x49, 0x49, 0xc9, 0x36, 0xbd, 0xe5, 0xe9, 0x1e, - 0x0f, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, - 0x79, 0xcd, 0x13, 0x79, 0xa5, 0x7b, 0x3c, 0xf4, 0x15, 0xfa, 0x0a, 0x7d, 0x95, 0xde, 0xb3, 0x74, - 0x8f, 0x87, 0xc4, 0x9a, 0x44, 0x70, 0x48, 0x6c, 0x76, 0x48, 0x2c, 0x75, 0x32, 0xe1, 0xb5, 0xd9, - 0xe2, 0xb5, 0x74, 0x8f, 0x87, 0xcd, 0xc2, 0x66, 0x61, 0xb3, 0x52, 0x7b, 0x16, 0x31, 0x16, 0x1e, - 0xbb, 0xb0, 0x6c, 0x88, 0xb1, 0x85, 0xe3, 0xb1, 0x88, 0xb1, 0x90, 0xd6, 0x74, 0x49, 0x2b, 0xdd, - 0xe3, 0xa1, 0xaf, 0xd0, 0x57, 0xe8, 0xab, 0xf0, 0x9e, 0xa5, 0x65, 0x11, 0x14, 0xd6, 0x1c, 0x7e, - 0x43, 0x61, 0xb3, 0x43, 0x61, 0x91, 0x62, 0x61, 0xb5, 0x19, 0x63, 0xb5, 0x74, 0x8f, 0x87, 0xcb, - 0xc2, 0x65, 0xe1, 0xb2, 0x42, 0x7b, 0x16, 0x29, 0x16, 0x1e, 0xbb, 0xb0, 0x6c, 0x48, 0xb1, 0x85, - 0xe3, 0xb1, 0x48, 0xb1, 0x90, 0xd6, 0x74, 0x49, 0x2b, 0xdd, 0xe3, 0xa1, 0xaf, 0xd0, 0x57, 0xe8, - 0xab, 0xf0, 0x9e, 0x45, 0x8a, 0x85, 0xc2, 0x9a, 0xc3, 0x6f, 0x28, 0x6c, 0x76, 0x28, 0x2c, 0x52, - 0x2c, 0xac, 0x56, 0x90, 0xd5, 0xd2, 0x3d, 0x5e, 0xa1, 0xa0, 0x7c, 0x36, 0xda, 0xc7, 0x9f, 0xf7, - 0x23, 0xfa, 0xc7, 0xbf, 0xc4, 0x89, 0xe8, 0x2e, 0xa5, 0xe6, 0xfd, 0x50, 0xa6, 0x91, 0x32, 0x8d, - 0xf6, 0x7d, 0x1a, 0xaa, 0x6f, 0x67, 0xca, 0x4f, 0xa1, 0xfa, 0x36, 0xd5, 0xb7, 0xa9, 0xbe, 0x2d, - 0x29, 0x22, 0xd1, 0x5d, 0xca, 0xa6, 0x53, 0x60, 0xd7, 0x19, 0xa0, 0x81, 0xbc, 0xc5, 0x29, 0xb7, - 0xd0, 0x41, 0xfe, 0xbc, 0x1f, 0x19, 0x6b, 0x21, 0xff, 0x4a, 0x70, 0xe9, 0x54, 0x97, 0xcc, 0xc8, - 0x52, 0x25, 0x58, 0x97, 0xcd, 0xeb, 0x11, 0x6f, 0xfa, 0x37, 0x4f, 0x66, 0x8c, 0x89, 0x4c, 0xd8, - 0x7e, 0x4d, 0xa9, 0xdd, 0x5a, 0xc2, 0x12, 0xff, 0x89, 0xdb, 0xa9, 0xa9, 0xf8, 0x82, 0x02, 0x3e, - 0x9f, 0xaa, 0x6f, 0xa7, 0xed, 0xc3, 0x69, 0xfb, 0x6a, 0x32, 0x3e, 0x99, 0xec, 0x61, 0x4e, 0x5a, - 0xf2, 0xbe, 0x32, 0xa0, 0x3c, 0x0f, 0x9e, 0x33, 0x3e, 0xc6, 0x09, 0x97, 0x60, 0x5a, 0xca, 0x7e, - 0x66, 0x90, 0x84, 0x73, 0xa8, 0x26, 0x88, 0x28, 0x0b, 0x20, 0x3a, 0x82, 0x87, 0xa0, 0xc0, 0xa1, - 0x2b, 0x68, 0x88, 0x09, 0x18, 0x62, 0x82, 0x85, 0xac, 0x40, 0x61, 0x96, 0xa4, 0x28, 0x0b, 0x0e, - 0xcf, 0x45, 0xc4, 0x5a, 0x5e, 0x10, 0xf9, 0xd1, 0x63, 0xe8, 0xdd, 0xaa, 0xac, 0xfe, 0x04, 0xc9, - 0x15, 0xae, 0x45, 0x2a, 0x27, 0xe3, 0x47, 0xbf, 0x77, 0x7b, 0x02, 0xfd, 0x3e, 0x8f, 0x1b, 0x97, - 0x37, 0x8d, 0xe3, 0xab, 0xdf, 0x2f, 0x55, 0xf7, 0xcf, 0xd0, 0x19, 0xeb, 0x69, 0xa9, 0x0f, 0x42, - 0x62, 0xed, 0x65, 0xfd, 0xc3, 0xf9, 0xd9, 0xc7, 0xe3, 0x8b, 0x3f, 0x2a, 0x69, 0xe8, 0xd0, 0x42, - 0x2f, 0xd1, 0xb8, 0x38, 0xf9, 0xac, 0xf7, 0x0a, 0xaf, 0xec, 0xf8, 0x85, 0x4f, 0xa6, 0xb8, 0x6d, - 0x02, 0xe6, 0x70, 0xdb, 0x09, 0x9b, 0x9e, 0x13, 0x75, 0x9c, 0x01, 0x77, 0x54, 0xb7, 0x5e, 0xf3, - 0xc3, 0x24, 0xc4, 0x92, 0x8f, 0xde, 0xad, 0xdb, 0x6f, 0x0f, 0x51, 0xef, 0xec, 0xfc, 0xac, 0x8e, - 0xf9, 0xc3, 0xfc, 0x15, 0xdf, 0xfc, 0x79, 0x41, 0xff, 0xde, 0x0b, 0x55, 0x2f, 0xc4, 0xa6, 0xe6, - 0xaf, 0xa6, 0xf0, 0xd9, 0x7a, 0xd0, 0xbf, 0x1f, 0x7c, 0xf9, 0x2c, 0xe0, 0xcf, 0x8f, 0x4e, 0xbb, - 0xe5, 0x74, 0x6e, 0x6f, 0xd5, 0x22, 0x32, 0xa7, 0xb3, 0x39, 0x3f, 0x0c, 0x00, 0x02, 0x80, 0x14, - 0x1e, 0x40, 0xfa, 0x7e, 0x10, 0xed, 0x55, 0x35, 0xb0, 0xe3, 0x50, 0xe1, 0xa3, 0x7a, 0xf7, 0x64, - 0x1a, 0x3a, 0xb2, 0xc4, 0x3d, 0x98, 0x54, 0xe4, 0x80, 0xd0, 0xe5, 0x89, 0xe4, 0x65, 0x89, 0x4e, - 0xf4, 0x87, 0xc4, 0xbd, 0x95, 0xf4, 0xd4, 0xd6, 0xaa, 0x47, 0xb5, 0xa3, 0x83, 0xc3, 0xea, 0xd1, - 0x7e, 0x86, 0xe6, 0xd8, 0xd2, 0xed, 0xc2, 0x75, 0x06, 0xcc, 0xf2, 0x58, 0x12, 0x56, 0xb4, 0xc6, - 0xc3, 0x4f, 0x63, 0x84, 0x31, 0xc2, 0x85, 0x37, 0xc2, 0x6d, 0xcf, 0xbd, 0xd5, 0x14, 0xb0, 0x54, - 0xcc, 0x70, 0x63, 0x7a, 0x63, 0xd4, 0x74, 0xba, 0x6d, 0x37, 0xba, 0xed, 0x84, 0xf7, 0xef, 0x9a, - 0x9d, 0xfb, 0x6e, 0x27, 0xf0, 0x82, 0xa8, 0xb7, 0xfa, 0x8f, 0xe7, 0xfe, 0x74, 0x78, 0x44, 0x33, - 0x00, 0x34, 0xdd, 0xd0, 0xbf, 0x77, 0xc3, 0x47, 0xa7, 0xf7, 0x97, 0x1f, 0x35, 0x7f, 0x38, 0x3f, - 0x1e, 0x7b, 0x91, 0x17, 0x7a, 0x3d, 0xbf, 0xa7, 0x8e, 0x3e, 0xeb, 0x87, 0x54, 0xd7, 0x25, 0x76, - 0x80, 0x33, 0xe0, 0xac, 0xf8, 0x70, 0xa6, 0x13, 0xf4, 0xa7, 0x13, 0xe4, 0x27, 0x12, 0xd4, 0x57, - 0x0c, 0xe7, 0xa4, 0x8a, 0x73, 0x62, 0xca, 0x39, 0xd9, 0x2b, 0xe0, 0xd4, 0x96, 0xc8, 0x27, 0x59, - 0xb0, 0xeb, 0xd1, 0x8f, 0xd0, 0xeb, 0xfd, 0xe8, 0xb4, 0x5b, 0x62, 0x4c, 0xe1, 0x79, 0x44, 0x8c, - 0x3d, 0xc6, 0x1e, 0x63, 0x8f, 0xb1, 0xc7, 0xd8, 0x63, 0xec, 0x31, 0xf6, 0x69, 0x18, 0xfb, 0xd0, - 0x6b, 0xbb, 0xc3, 0x80, 0x38, 0x39, 0x6b, 0xbf, 0x7e, 0x48, 0x74, 0x01, 0xa8, 0x02, 0x54, 0x01, - 0xaa, 0x00, 0x55, 0x80, 0x2a, 0x40, 0x15, 0x0a, 0x43, 0x15, 0x9c, 0xce, 0xed, 0x6d, 0xcf, 0x8b, - 0x0c, 0x30, 0x86, 0xc9, 0xc8, 0x10, 0x07, 0x88, 0x03, 0xc4, 0x01, 0xe2, 0x00, 0x71, 0x80, 0x38, - 0x40, 0x1c, 0xf2, 0x47, 0x1c, 0x1e, 0xbc, 0x70, 0x60, 0xdf, 0x75, 0x18, 0xc2, 0x64, 0x08, 0xcc, - 0x39, 0xe6, 0xbc, 0xf0, 0xe6, 0xfc, 0x7b, 0xa7, 0xd3, 0xf6, 0x5c, 0xad, 0x84, 0x85, 0xdd, 0x0c, - 0x1c, 0xfc, 0xe7, 0x3a, 0x06, 0x72, 0xea, 0xe2, 0x0b, 0x63, 0x02, 0x0d, 0x40, 0x03, 0x4c, 0x1f, - 0xa6, 0x0f, 0xd3, 0x87, 0xe9, 0xc3, 0xf4, 0xd3, 0x30, 0xf8, 0x7f, 0xb9, 0x7e, 0xe4, 0x44, 0x1d, - 0x27, 0xf4, 0x7a, 0x51, 0x27, 0xf4, 0x34, 0x93, 0x0d, 0x57, 0x8e, 0x86, 0x91, 0xc7, 0xc8, 0x93, - 0x73, 0xb8, 0x69, 0xbf, 0x93, 0x73, 0x88, 0x6d, 0x26, 0xe7, 0xb0, 0x44, 0x46, 0xba, 0x88, 0x65, - 0xf6, 0x12, 0xd4, 0x9a, 0x8c, 0x51, 0x19, 0xef, 0x95, 0xc6, 0xcc, 0x0c, 0xec, 0x61, 0xcc, 0x84, - 0xcb, 0xca, 0xa9, 0xdf, 0x8b, 0x8e, 0xa3, 0x28, 0x5e, 0x6d, 0xb3, 0x01, 0xf6, 0xd5, 0xdb, 0xde, - 0xc0, 0xb0, 0x0d, 0x36, 0x70, 0xd0, 0x6f, 0xb7, 0x63, 0x54, 0xf0, 0xfb, 0xec, 0xfe, 0x4c, 0xfe, - 0xa1, 0xf3, 0xb0, 0xe5, 0x85, 0x5e, 0xeb, 0xfd, 0xe3, 0xf8, 0x23, 0x5a, 0xf3, 0x91, 0x70, 0x87, - 0x08, 0xef, 0x8c, 0x4a, 0xac, 0x2a, 0x87, 0x6b, 0x4b, 0x2e, 0xbe, 0xbc, 0xa5, 0xd6, 0x6f, 0x94, - 0xd5, 0x7f, 0xb3, 0x66, 0xaa, 0xe2, 0x4e, 0x91, 0xc4, 0xd4, 0xac, 0x7e, 0xa1, 0xe5, 0xaf, 0x3b, - 0xff, 0x27, 0x0b, 0x5f, 0x7c, 0xd3, 0x17, 0x56, 0xfd, 0xa2, 0x2b, 0x16, 0x6b, 0x79, 0x71, 0xe6, - 0xdf, 0xe0, 0xf9, 0x7b, 0xce, 0x7c, 0xc7, 0xca, 0xf7, 0xbb, 0xee, 0xd2, 0x17, 0x7b, 0x56, 0x4c, - 0xef, 0xba, 0x0b, 0x0f, 0x5a, 0x53, 0x83, 0x72, 0x2d, 0xb5, 0x7f, 0x89, 0xba, 0xcf, 0x52, 0xf3, - 0xe5, 0x27, 0xc5, 0x61, 0xdc, 0xb1, 0x19, 0x75, 0x6c, 0xc6, 0xbc, 0xc8, 0x88, 0x07, 0xdf, 0x2b, - 0xe1, 0x8a, 0xaf, 0xab, 0xc0, 0x58, 0xb9, 0x6b, 0x77, 0xbe, 0xbb, 0xed, 0xf5, 0x2f, 0x33, 0x99, - 0x8e, 0xf1, 0xcf, 0xad, 0xf9, 0x82, 0x2f, 0x17, 0x01, 0xdd, 0xe8, 0x63, 0xc5, 0xf1, 0xa5, 0x36, - 0x2f, 0x4c, 0x52, 0x97, 0x28, 0xb1, 0xeb, 0x93, 0xd8, 0xc5, 0x89, 0xb5, 0x70, 0x6a, 0x98, 0xb3, - 0xa9, 0xa4, 0x66, 0xc5, 0xbd, 0xf5, 0x9d, 0x9e, 0x7b, 0x1b, 0x23, 0xed, 0xf7, 0xb9, 0x60, 0xe6, - 0xf4, 0x23, 0x9b, 0x6c, 0x64, 0xac, 0x9a, 0xaf, 0xb1, 0x5d, 0xeb, 0x24, 0xae, 0x74, 0xfc, 0x6d, - 0xa0, 0xea, 0x21, 0x2b, 0x7b, 0xc4, 0xca, 0x1e, 0x70, 0xa2, 0x6d, 0x22, 0xc3, 0x72, 0xe2, 0x56, - 0x64, 0x9d, 0xee, 0x89, 0xe4, 0x55, 0x84, 0xa7, 0x9f, 0x34, 0x5c, 0x48, 0x78, 0xc7, 0x4e, 0x21, - 0xe1, 0x78, 0x9b, 0x4d, 0x57, 0x96, 0xc9, 0x5e, 0xfd, 0xe0, 0x58, 0x9b, 0xd1, 0x8c, 0x73, 0x92, - 0xbc, 0x6c, 0x70, 0xab, 0x35, 0x2c, 0xf7, 0xab, 0x51, 0xea, 0xe0, 0x79, 0x08, 0x35, 0xf9, 0x71, - 0x37, 0x67, 0xf2, 0x63, 0xb2, 0x6d, 0x5d, 0x1e, 0xd5, 0x31, 0xd1, 0xb6, 0xb7, 0x23, 0x36, 0x26, - 0x3d, 0x0e, 0xd3, 0x0f, 0x36, 0x27, 0x7b, 0x4c, 0xb3, 0x2c, 0xef, 0x78, 0x1c, 0xc5, 0x09, 0x56, - 0x3b, 0x20, 0xda, 0x07, 0x45, 0xe2, 0xc0, 0xc8, 0x1d, 0x1c, 0xa9, 0x03, 0x24, 0x7e, 0x90, 0xc4, - 0x0f, 0x94, 0xe8, 0xc1, 0xd2, 0x14, 0xef, 0x14, 0x77, 0x8c, 0xea, 0x81, 0x9b, 0x0e, 0xe0, 0xb5, - 0xfd, 0x3b, 0xff, 0x7b, 0x7b, 0xe0, 0x27, 0x0f, 0x96, 0xc6, 0xe9, 0x76, 0xda, 0x7e, 0xf3, 0x51, - 0xae, 0x13, 0xe0, 0x9a, 0xf1, 0xe9, 0x06, 0x68, 0xfe, 0x00, 0x4b, 0x1f, 0x64, 0x63, 0x07, 0xda, - 0xd8, 0xc1, 0x36, 0x72, 0xc0, 0xf5, 0x0e, 0xba, 0xe6, 0x81, 0x9f, 0xbe, 0x91, 0x7c, 0xef, 0x3f, - 0xf5, 0xaa, 0x66, 0x6b, 0xed, 0xe8, 0xa1, 0xc0, 0x58, 0xb3, 0x55, 0xcf, 0xc2, 0x6e, 0xa7, 0xfd, - 0x2e, 0xec, 0xf4, 0x23, 0x3f, 0xb8, 0x1b, 0x23, 0xc9, 0xf4, 0x8f, 0x47, 0xff, 0xe9, 0xb4, 0xbc, - 0x5b, 0x3f, 0xf0, 0x23, 0xbf, 0x13, 0xf4, 0xd6, 0xff, 0xd5, 0xf4, 0x6f, 0x92, 0x17, 0x44, 0x93, - 0xdb, 0x05, 0x3a, 0x37, 0x69, 0xa1, 0xd7, 0xf4, 0x54, 0x42, 0x98, 0xd7, 0x2e, 0xfe, 0x64, 0x40, - 0xcd, 0x5d, 0x39, 0x93, 0xeb, 0x74, 0xeb, 0xb6, 0x7b, 0x1e, 0x38, 0x0f, 0xce, 0x83, 0xf3, 0xd9, - 0xc2, 0x79, 0xf5, 0x70, 0xee, 0xb5, 0x38, 0xbf, 0x9b, 0x43, 0x08, 0xed, 0x79, 0x41, 0x4b, 0x0e, - 0x3f, 0x87, 0xa3, 0x01, 0x9e, 0x80, 0x27, 0xe0, 0x09, 0x78, 0x96, 0x03, 0x3c, 0x9d, 0x7b, 0x89, - 0x70, 0xae, 0x59, 0x00, 0x1d, 0x8e, 0x08, 0xe8, 0x01, 0x7a, 0x80, 0x5e, 0xa6, 0x40, 0xaf, 0xef, - 0x07, 0xd1, 0xaf, 0x82, 0x90, 0xb7, 0x4f, 0xef, 0xfe, 0x54, 0x50, 0x6d, 0x69, 0x58, 0x7a, 0xf7, - 0xe7, 0x6e, 0xa9, 0xaa, 0xfb, 0xfb, 0x74, 0xef, 0x4f, 0xfa, 0x8b, 0xee, 0xfd, 0x89, 0xc8, 0xdd, - 0xda, 0xd0, 0xca, 0xef, 0x77, 0xdd, 0xed, 0xc1, 0xff, 0x47, 0x91, 0x76, 0xdb, 0xd3, 0x60, 0xac, - 0xe9, 0xef, 0xb6, 0xa7, 0xb1, 0x09, 0xdb, 0xe3, 0x9b, 0x58, 0x5b, 0xcd, 0xf9, 0x95, 0xfa, 0xd2, - 0x27, 0x69, 0x3d, 0xbe, 0x9e, 0xb9, 0x26, 0x68, 0x45, 0xbe, 0xd6, 0x09, 0xd0, 0xbd, 0x71, 0xae, - 0x72, 0xe3, 0x6c, 0x90, 0x86, 0x72, 0xe3, 0x3c, 0xa3, 0x52, 0x71, 0xe3, 0x8c, 0x5f, 0x89, 0x5f, - 0x89, 0x5f, 0xa9, 0xbf, 0xdf, 0xb8, 0x71, 0xce, 0x8f, 0xe2, 0xc7, 0x8d, 0x33, 0x38, 0x0f, 0xce, - 0x83, 0xf3, 0x2a, 0xfb, 0x8d, 0x4b, 0x93, 0x2d, 0x6e, 0x9c, 0x01, 0x4f, 0xc0, 0x13, 0xf0, 0x04, - 0x3c, 0x35, 0xc0, 0x93, 0x1b, 0x67, 0x40, 0x0f, 0xd0, 0x2b, 0x03, 0xe8, 0x71, 0xe3, 0x9c, 0xe0, - 0x8b, 0x71, 0xe3, 0xcc, 0x8d, 0x33, 0x37, 0xce, 0x12, 0x40, 0x28, 0x37, 0x0a, 0x37, 0xce, 0x89, - 0xc8, 0x9d, 0xc8, 0x8d, 0x73, 0x82, 0x0a, 0x5d, 0xfa, 0xd3, 0x66, 0x36, 0x8f, 0x5a, 0x73, 0x62, - 0x65, 0x26, 0xb4, 0xa2, 0x74, 0xa7, 0x3e, 0x5b, 0x4b, 0xe9, 0xfd, 0x5d, 0xf7, 0xe6, 0xb7, 0xe1, - 0x83, 0x6e, 0x8e, 0x6f, 0xfd, 0x4b, 0xf7, 0xd6, 0xbf, 0x39, 0x6e, 0xb5, 0x1a, 0xc3, 0xc1, 0x33, - 0x50, 0x20, 0x76, 0xf2, 0xca, 0xce, 0xf8, 0xfb, 0xaa, 0xd6, 0x63, 0x98, 0x1b, 0xa6, 0x1c, 0x25, - 0x61, 0xa9, 0xc9, 0x20, 0xc8, 0xe6, 0xb3, 0x5e, 0x00, 0x56, 0xfd, 0x9e, 0x4e, 0xe7, 0x5e, 0x6e, - 0x7a, 0x0f, 0xf7, 0xf6, 0xed, 0x38, 0x98, 0x68, 0x7b, 0xfe, 0xa4, 0x65, 0x00, 0x41, 0x14, 0xcb, - 0x56, 0xe8, 0x95, 0xab, 0xa0, 0x8e, 0x0b, 0x98, 0x91, 0xd5, 0x3a, 0x2e, 0x7a, 0x26, 0x55, 0xd4, - 0xb4, 0x0a, 0xf9, 0x47, 0x54, 0x75, 0xb1, 0x23, 0xbc, 0x11, 0x63, 0x27, 0x28, 0xa8, 0x4d, 0xf7, - 0x8b, 0xdf, 0xf2, 0x82, 0xc8, 0x8f, 0x1e, 0xf5, 0xc2, 0x6c, 0xa6, 0x16, 0x47, 0x43, 0x09, 0xa8, - 0x9c, 0x8c, 0xbf, 0xca, 0x7b, 0xb7, 0x27, 0x18, 0x46, 0x72, 0xfc, 0xe9, 0xe4, 0xe6, 0x72, 0xf0, - 0x8f, 0xab, 0x3f, 0x1a, 0xf5, 0x8a, 0x44, 0x51, 0xf0, 0x9e, 0x88, 0xc6, 0x27, 0x24, 0x6f, 0x4f, - 0x5e, 0xf3, 0xa4, 0xf1, 0xf5, 0xe0, 0xe6, 0xf4, 0xf8, 0x7d, 0xfd, 0xb4, 0xfe, 0xf1, 0xe6, 0xcb, - 0xd9, 0xc9, 0x87, 0xe3, 0xcb, 0x2b, 0x01, 0xd9, 0xf8, 0x4d, 0xd6, 0xde, 0xf3, 0xf2, 0xe2, 0xaa, - 0x7e, 0xd3, 0x38, 0x3f, 0x3d, 0xf9, 0xf0, 0xc7, 0xcd, 0xe0, 0x9d, 0x8b, 0xf8, 0x8e, 0xa7, 0x27, - 0x67, 0xff, 0xba, 0xbc, 0x3a, 0xbe, 0xaa, 0x17, 0xf1, 0xe5, 0x4e, 0x1a, 0x5f, 0x6b, 0x45, 0xde, - 0xa0, 0xa7, 0xd5, 0xaf, 0x8d, 0xb3, 0x9b, 0xfa, 0xd7, 0xc6, 0x59, 0xa1, 0xb7, 0xe6, 0xcd, 0x65, - 0xe3, 0x53, 0xb1, 0x5f, 0xb0, 0xa8, 0x2b, 0xb8, 0x37, 0xd8, 0x9f, 0xe5, 0x38, 0x85, 0x5f, 0x1b, - 0xa7, 0x97, 0x85, 0x5e, 0xc3, 0x83, 0x22, 0xaf, 0xe1, 0x70, 0x8f, 0x96, 0x80, 0xd2, 0xcc, 0xac, - 0xe6, 0xe7, 0x2f, 0xa7, 0x57, 0xc5, 0x7f, 0xcf, 0x5a, 0xb1, 0xdf, 0x73, 0x81, 0xa2, 0xd6, 0x8a, - 0xf8, 0x8e, 0x5f, 0x1b, 0x67, 0x5f, 0x6b, 0x37, 0x9f, 0x4e, 0xcf, 0xff, 0x7d, 0xd9, 0xa8, 0x7f, - 0x28, 0x28, 0xfa, 0x14, 0x1f, 0x5d, 0x05, 0x17, 0x50, 0x6b, 0x84, 0xeb, 0xcc, 0xb7, 0xc2, 0x52, - 0xc9, 0x1f, 0xf6, 0x02, 0xf7, 0x7b, 0xdb, 0x6b, 0xe9, 0xab, 0x9c, 0x93, 0x81, 0x54, 0x33, 0x32, - 0x65, 0xa2, 0xb8, 0xd1, 0x49, 0xe7, 0x46, 0x42, 0x27, 0xb5, 0x78, 0x5e, 0x53, 0xd7, 0x49, 0xf5, - 0xa3, 0xac, 0x35, 0xa3, 0xab, 0x89, 0x40, 0x79, 0x8e, 0x40, 0x51, 0x29, 0x1d, 0x61, 0xe6, 0x7e, - 0xf7, 0x2e, 0x74, 0x9b, 0xde, 0x6d, 0xbf, 0x3d, 0xec, 0xfa, 0xeb, 0x86, 0x91, 0xfa, 0x4d, 0xef, - 0xd2, 0x48, 0xdc, 0xf9, 0x9a, 0x03, 0x5f, 0xee, 0x7c, 0xe9, 0xdd, 0x01, 0x7b, 0x81, 0xbd, 0x64, - 0x9b, 0xbd, 0xe8, 0x57, 0x52, 0xd1, 0x74, 0x40, 0x84, 0x1d, 0x11, 0x69, 0x87, 0x44, 0xc8, 0x31, - 0x11, 0x3b, 0xe2, 0x92, 0x47, 0x5d, 0xfe, 0xc8, 0x4b, 0x1f, 0x7d, 0x63, 0x10, 0x60, 0x0c, 0x0a, - 0x8c, 0x40, 0x82, 0x8c, 0x00, 0x42, 0x5a, 0xa9, 0xc1, 0x09, 0x2e, 0x5f, 0xce, 0xc3, 0xa2, 0x33, - 0x41, 0xb1, 0x3d, 0xab, 0x14, 0x91, 0x62, 0x7b, 0x50, 0x44, 0x28, 0x22, 0x14, 0x11, 0x8a, 0x08, - 0x45, 0x84, 0x22, 0x42, 0x11, 0x73, 0x41, 0x11, 0xc9, 0x8e, 0x35, 0x32, 0xaf, 0x46, 0x92, 0x64, - 0x7f, 0x1b, 0x3f, 0xe4, 0x62, 0xfc, 0x8c, 0x0c, 0xdc, 0x84, 0xf8, 0xdd, 0x87, 0x9a, 0xd3, 0x76, - 0xbf, 0x7b, 0x6d, 0xaf, 0xe5, 0xf4, 0x03, 0xbf, 0xe9, 0xf6, 0x34, 0x6e, 0x43, 0x56, 0x8e, 0xc6, - 0x8d, 0x88, 0x39, 0x93, 0xcd, 0x8d, 0x88, 0xcd, 0x1b, 0x91, 0x71, 0xe5, 0xe9, 0xb6, 0x7f, 0xef, - 0x47, 0xfa, 0x3e, 0xef, 0xdc, 0x68, 0xdc, 0x8e, 0xe0, 0xfa, 0xe2, 0xfa, 0xc6, 0x19, 0x40, 0xf3, - 0x5a, 0x72, 0x69, 0xdb, 0x69, 0x5d, 0x4f, 0x0a, 0x1d, 0x44, 0x1c, 0x55, 0x1c, 0xd5, 0xbc, 0x3b, - 0xaa, 0xba, 0x07, 0x7b, 0x3a, 0xd0, 0xbd, 0xfb, 0x73, 0xdc, 0xe3, 0x61, 0x98, 0xb3, 0x29, 0x1c, - 0x40, 0x3b, 0x37, 0xba, 0xd0, 0x62, 0xca, 0x56, 0xea, 0x12, 0x03, 0x01, 0x13, 0x60, 0x60, 0x0e, - 0x14, 0x4c, 0x81, 0x83, 0x71, 0x90, 0x30, 0x0e, 0x16, 0x46, 0x41, 0x43, 0x06, 0x3c, 0x84, 0x40, - 0x44, 0x5e, 0xf5, 0x5a, 0xda, 0xaf, 0x7d, 0x3f, 0x88, 0xf6, 0xaa, 0x92, 0xfb, 0x75, 0x7c, 0xfa, - 0x0f, 0x05, 0x87, 0x94, 0xad, 0x49, 0x39, 0xf9, 0x25, 0x7b, 0x9e, 0xb6, 0x4c, 0xd5, 0xa8, 0x34, - 0x04, 0xab, 0x4b, 0xc3, 0x1b, 0xaa, 0x59, 0x39, 0x1d, 0xdf, 0x60, 0x39, 0x44, 0xe1, 0xe3, 0x36, - 0xbf, 0xa4, 0x06, 0x6a, 0x59, 0xda, 0x5e, 0xd2, 0x5a, 0xf5, 0xa8, 0x76, 0x74, 0x70, 0x58, 0x3d, - 0xda, 0xcf, 0xf1, 0xda, 0xbe, 0xca, 0xe6, 0x68, 0xd7, 0x19, 0x29, 0xc5, 0x29, 0xb0, 0xf7, 0x07, - 0x3c, 0xe0, 0xc1, 0x0b, 0x22, 0x27, 0xf2, 0xdc, 0xb0, 0xd5, 0xf9, 0x2b, 0x90, 0xa7, 0x9b, 0x4b, - 0x4f, 0x10, 0x32, 0x90, 0xc2, 0x17, 0xad, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x36, 0x67, 0x54, 0x56, - 0xee, 0x22, 0x77, 0x49, 0xc6, 0xda, 0x2d, 0x10, 0xc8, 0x8f, 0x6f, 0xf4, 0x9c, 0xc8, 0xbf, 0xf7, - 0x42, 0x79, 0x84, 0x9f, 0x1f, 0x1e, 0x18, 0x06, 0x86, 0x81, 0xe1, 0x52, 0xc1, 0x70, 0xcb, 0x6b, - 0xfa, 0xf7, 0x6e, 0xfb, 0xa0, 0x66, 0x02, 0x88, 0xab, 0x82, 0x63, 0x2e, 0x39, 0x2d, 0x55, 0x24, - 0x0b, 0x33, 0xfe, 0x6d, 0x15, 0xc9, 0xa2, 0x68, 0x92, 0xc5, 0x1e, 0x4b, 0x8a, 0x52, 0x91, 0x1e, - 0x89, 0xfd, 0xcb, 0x0d, 0x03, 0x3f, 0xb8, 0x73, 0xa2, 0x1f, 0xa1, 0xd7, 0xfb, 0xd1, 0x69, 0xb7, - 0x9c, 0x6e, 0x33, 0x92, 0x27, 0xb3, 0xab, 0x1f, 0x03, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x4b, 0x45, - 0x6a, 0xbb, 0x5e, 0xd8, 0xf4, 0x82, 0xc8, 0xbd, 0xf3, 0x0c, 0xb0, 0xda, 0x7d, 0x78, 0xa7, 0x19, - 0x92, 0xc2, 0x55, 0x59, 0xe1, 0x78, 0xa7, 0xe9, 0x25, 0xdd, 0xdd, 0x81, 0x79, 0x16, 0x97, 0x79, - 0xa6, 0x1a, 0x11, 0x26, 0x94, 0x2f, 0x33, 0x1d, 0x4f, 0x27, 0xbf, 0x63, 0x55, 0x66, 0xc2, 0xf6, - 0x6c, 0x04, 0xb6, 0x56, 0xae, 0xb5, 0xfe, 0x7c, 0x6b, 0xf5, 0x50, 0xd6, 0xca, 0xc1, 0x5e, 0x32, - 0xfd, 0x3a, 0xb9, 0xd8, 0x4b, 0xfa, 0x95, 0x54, 0x3c, 0x6c, 0x95, 0x78, 0xd8, 0x0c, 0x70, 0x78, - 0xe2, 0x61, 0xe3, 0xbf, 0x11, 0xf1, 0xb0, 0x38, 0xfa, 0x38, 0xfa, 0x38, 0xfa, 0x19, 0x77, 0xf4, - 0x89, 0x87, 0xc5, 0xc9, 0xc7, 0xc9, 0x2f, 0xb8, 0x93, 0x4f, 0x3c, 0x6c, 0x09, 0x7c, 0x7d, 0xe2, - 0x61, 0x89, 0x87, 0x85, 0xca, 0x42, 0x65, 0x4b, 0x4b, 0x65, 0x89, 0x87, 0x8d, 0xf5, 0x4e, 0xc4, - 0xc3, 0x02, 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0x3c, 0x2c, 0xf1, 0xb0, 0xc4, 0xc3, 0x22, 0x59, 0xa8, - 0x2d, 0x29, 0xf1, 0xb0, 0x28, 0x15, 0x29, 0x92, 0x58, 0xe2, 0x61, 0x21, 0xb5, 0x90, 0x5a, 0x48, - 0xad, 0x2d, 0x52, 0x4b, 0x3c, 0x6c, 0x1e, 0x79, 0x27, 0x57, 0x65, 0x85, 0xe3, 0x9d, 0xc4, 0xc3, - 0xc2, 0x3c, 0x53, 0x1a, 0xa1, 0x5c, 0xf1, 0xb0, 0x1a, 0x85, 0xe5, 0xf5, 0xa7, 0xbb, 0x7c, 0x85, - 0xfd, 0x37, 0x2e, 0x48, 0x45, 0x2b, 0x42, 0x78, 0x43, 0x65, 0xfa, 0x93, 0xee, 0x43, 0xed, 0x74, - 0xf4, 0xf0, 0x2f, 0xa3, 0x67, 0xdf, 0x8c, 0xd8, 0xff, 0xe9, 0xf0, 0xd1, 0xb4, 0x17, 0x30, 0xb0, - 0xba, 0x46, 0x5a, 0x0c, 0x2c, 0x2f, 0x64, 0x66, 0xba, 0x0c, 0xc8, 0x74, 0x17, 0xa0, 0xab, 0x80, - 0x79, 0x5f, 0x98, 0xae, 0x02, 0xf4, 0x59, 0xb6, 0x2c, 0x3e, 0xd1, 0x49, 0x20, 0x1d, 0xb1, 0xa8, - 0xcc, 0x9d, 0x04, 0x7a, 0x5e, 0xd0, 0x72, 0x5a, 0xa3, 0xc0, 0x31, 0x27, 0xec, 0xf4, 0x45, 0x93, - 0xa8, 0x96, 0xc7, 0xa6, 0xb5, 0x9e, 0x69, 0x00, 0x90, 0x07, 0x02, 0x69, 0x40, 0x30, 0x06, 0x0c, - 0xc6, 0x00, 0xc2, 0x08, 0x50, 0x64, 0xc3, 0x1f, 0xa7, 0xb5, 0x1e, 0x1e, 0xf8, 0xa2, 0x8f, 0x36, - 0xf1, 0xbc, 0xb3, 0xdf, 0x79, 0x99, 0x66, 0x54, 0x50, 0x48, 0x28, 0x64, 0xca, 0x14, 0x92, 0x66, - 0x54, 0x50, 0x3b, 0xa8, 0x5d, 0xf6, 0xa8, 0x1d, 0xc9, 0xf7, 0x44, 0x15, 0x89, 0x8c, 0x4c, 0x54, - 0x91, 0x4d, 0xd0, 0x90, 0x01, 0x0f, 0x21, 0x10, 0x91, 0xf7, 0x13, 0x97, 0xf6, 0x2b, 0xc9, 0xf7, - 0x92, 0x3b, 0x92, 0x88, 0xa2, 0xf5, 0xe3, 0x13, 0x51, 0x94, 0xda, 0x92, 0x92, 0x7c, 0x6f, 0x6e, - 0x34, 0x92, 0xef, 0x13, 0x8a, 0x3c, 0x24, 0xdf, 0x43, 0x65, 0xa1, 0xb2, 0x50, 0x59, 0xf1, 0xfd, - 0x4a, 0xf2, 0x7d, 0xac, 0x77, 0x22, 0xf9, 0x1e, 0x18, 0x06, 0x86, 0x81, 0x61, 0x92, 0xef, 0x49, - 0xbe, 0x27, 0xf9, 0x1e, 0xc9, 0x42, 0x6d, 0x49, 0x49, 0xbe, 0x47, 0xa9, 0x48, 0x91, 0xc4, 0x92, - 0x7c, 0x0f, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x6d, 0x91, 0x5a, 0x92, 0xef, 0xf3, 0xc8, 0x3b, 0xb9, - 0x2a, 0x2b, 0x1c, 0xef, 0x24, 0xf9, 0x1e, 0xe6, 0x99, 0xd2, 0x08, 0x85, 0x4b, 0xbe, 0xa7, 0x09, - 0xd5, 0x4b, 0x26, 0x9f, 0x26, 0x54, 0xb6, 0xb9, 0x3c, 0x71, 0xb0, 0xc4, 0xc1, 0xae, 0x1f, 0x88, - 0x38, 0x58, 0x1c, 0x7c, 0x1c, 0x7c, 0x1c, 0x7c, 0xe2, 0x60, 0x71, 0xee, 0x71, 0xee, 0x71, 0xee, - 0x15, 0x96, 0x94, 0x38, 0xd8, 0x12, 0xf8, 0xf8, 0xc4, 0xc1, 0x12, 0x07, 0x0b, 0x95, 0x85, 0xca, - 0x96, 0x96, 0xca, 0x12, 0x07, 0x1b, 0xeb, 0x9d, 0x88, 0x83, 0x05, 0x86, 0x81, 0x61, 0x60, 0x98, - 0x38, 0x58, 0xe2, 0x60, 0x89, 0x83, 0x45, 0xb2, 0x50, 0x5b, 0x52, 0xe2, 0x60, 0x51, 0x2a, 0x52, - 0x24, 0xb1, 0xc4, 0xc1, 0x42, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, 0x96, 0x38, 0xd8, 0x3c, - 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0x89, 0x83, 0x85, 0x79, 0xa6, 0x34, 0x42, 0x39, 0xe2, - 0x60, 0x69, 0x3e, 0x95, 0x8d, 0x85, 0x30, 0xde, 0x74, 0x2a, 0xcd, 0x6e, 0x53, 0x4a, 0xfd, 0x97, - 0x74, 0xa2, 0x9c, 0x45, 0xa2, 0x9b, 0xc5, 0xca, 0x6c, 0x57, 0x29, 0xb3, 0x6d, 0xd0, 0xc3, 0xa2, - 0xcc, 0xf6, 0xf3, 0x37, 0xa7, 0x53, 0x4b, 0x06, 0x48, 0x27, 0xe5, 0xbc, 0xb3, 0x25, 0xbd, 0x90, - 0xc6, 0x90, 0x82, 0xa4, 0x42, 0xa7, 0x96, 0xc2, 0xd1, 0x55, 0x0d, 0x57, 0x81, 0x0e, 0xa5, 0xab, - 0xe7, 0xd4, 0x58, 0x67, 0xd2, 0x6c, 0xb5, 0x24, 0x3d, 0x58, 0xea, 0xc8, 0xaa, 0xd3, 0x9a, 0xf4, - 0x40, 0xb3, 0xbf, 0x2b, 0x2d, 0x4a, 0x53, 0x31, 0xcb, 0xb4, 0x28, 0x8d, 0xf1, 0x41, 0x7a, 0x4d, - 0xe1, 0x04, 0xe3, 0x04, 0xa7, 0xec, 0x04, 0xd3, 0x6b, 0x0a, 0xe7, 0x14, 0xe7, 0x34, 0x7b, 0xce, - 0x29, 0x39, 0xf6, 0x04, 0x0f, 0x89, 0x8c, 0x4c, 0xf0, 0x90, 0x4d, 0xd0, 0x90, 0x01, 0x0f, 0x21, - 0x10, 0x91, 0x57, 0xba, 0x96, 0xf6, 0x2b, 0x39, 0xf6, 0x92, 0x3b, 0x92, 0xc0, 0xa1, 0xf5, 0xe3, - 0x13, 0x38, 0x94, 0xda, 0x92, 0x92, 0x63, 0x6f, 0x6e, 0x34, 0x72, 0xec, 0x13, 0x8a, 0x3c, 0xe4, - 0xd8, 0x43, 0x65, 0xa1, 0xb2, 0x50, 0x59, 0xf1, 0xfd, 0x4a, 0x8e, 0x7d, 0xac, 0x77, 0x22, 0xc7, - 0x1e, 0x18, 0x06, 0x86, 0x81, 0x61, 0x72, 0xec, 0xc9, 0xb1, 0x27, 0xc7, 0x1e, 0xc9, 0x42, 0x6d, - 0x49, 0xc9, 0xb1, 0x47, 0xa9, 0x48, 0x91, 0xc4, 0x92, 0x63, 0x0f, 0xa9, 0x85, 0xd4, 0x42, 0x6a, - 0x6d, 0x91, 0x5a, 0x72, 0xec, 0xf3, 0xc8, 0x3b, 0xb9, 0x2a, 0x2b, 0x1c, 0xef, 0x24, 0xc7, 0x1e, - 0xe6, 0x99, 0xd2, 0x08, 0x05, 0xcb, 0xb1, 0x5f, 0xca, 0x4c, 0xa0, 0xe7, 0xd4, 0x4a, 0xd3, 0x4f, - 0xcf, 0x29, 0xdb, 0x9c, 0x9e, 0x78, 0x58, 0xe2, 0x61, 0xd7, 0x0f, 0x44, 0x3c, 0x2c, 0x8e, 0x3e, - 0x8e, 0x3e, 0x8e, 0x3e, 0xf1, 0xb0, 0x38, 0xf9, 0x38, 0xf9, 0x38, 0xf9, 0x0a, 0x4b, 0x4a, 0x3c, - 0x6c, 0x09, 0x7c, 0x7d, 0xe2, 0x61, 0x89, 0x87, 0x85, 0xca, 0x42, 0x65, 0x4b, 0x4b, 0x65, 0x89, - 0x87, 0x8d, 0xf5, 0x4e, 0xc4, 0xc3, 0x02, 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0x3c, 0x2c, 0xf1, 0xb0, - 0xc4, 0xc3, 0x22, 0x59, 0xa8, 0x2d, 0x29, 0xf1, 0xb0, 0x28, 0x15, 0x29, 0x92, 0x58, 0xe2, 0x61, - 0x21, 0xb5, 0x90, 0x5a, 0x48, 0xad, 0x2d, 0x52, 0x4b, 0x3c, 0x6c, 0x1e, 0x79, 0x27, 0x57, 0x65, - 0x85, 0xe3, 0x9d, 0xc4, 0xc3, 0xc2, 0x3c, 0x53, 0x1a, 0xa1, 0x5c, 0xf1, 0xb0, 0xf4, 0x9e, 0xca, - 0xd6, 0x82, 0x98, 0xee, 0x41, 0x75, 0x70, 0x3a, 0x7a, 0x78, 0x9a, 0xad, 0xa8, 0x8a, 0xdc, 0x56, - 0x40, 0xb7, 0x30, 0xbe, 0xea, 0x42, 0x66, 0xa6, 0xcb, 0x80, 0x4c, 0x77, 0x01, 0xba, 0x0a, 0x98, - 0xf7, 0x85, 0xe9, 0x2a, 0x60, 0xb3, 0xab, 0x80, 0x66, 0x41, 0x73, 0x99, 0x42, 0xe6, 0x74, 0x12, - 0x30, 0x21, 0x26, 0xd1, 0x49, 0xc0, 0x20, 0x6b, 0xa3, 0x9d, 0x5e, 0x06, 0xfc, 0x69, 0x3a, 0x16, - 0x64, 0x03, 0x18, 0x8c, 0x01, 0x84, 0x11, 0xa0, 0xc8, 0x86, 0x3f, 0x4e, 0x3b, 0x3d, 0x3c, 0xf0, - 0x45, 0x1f, 0x6d, 0xe2, 0x79, 0xeb, 0x64, 0x03, 0xdb, 0xe9, 0xc1, 0x4c, 0x33, 0x2a, 0x28, 0x24, - 0x14, 0x32, 0x65, 0x0a, 0x49, 0x33, 0x2a, 0xa8, 0x1d, 0xd4, 0x2e, 0x7b, 0xd4, 0x8e, 0xe4, 0x7b, - 0xa2, 0x8a, 0x44, 0x46, 0x26, 0xaa, 0xc8, 0x26, 0x68, 0xc8, 0x80, 0x87, 0x10, 0x88, 0xc8, 0xfb, - 0x89, 0x4b, 0xfb, 0x95, 0xe4, 0x7b, 0xc9, 0x1d, 0x49, 0x44, 0xd1, 0xfa, 0xf1, 0x89, 0x28, 0x4a, - 0x6d, 0x49, 0x49, 0xbe, 0x37, 0x37, 0x1a, 0xc9, 0xf7, 0x09, 0x45, 0x1e, 0x92, 0xef, 0xa1, 0xb2, - 0x50, 0x59, 0xa8, 0xac, 0xf8, 0x7e, 0x25, 0xf9, 0x3e, 0xd6, 0x3b, 0x91, 0x7c, 0x0f, 0x0c, 0x03, - 0xc3, 0xc0, 0x30, 0xc9, 0xf7, 0x24, 0xdf, 0x93, 0x7c, 0x8f, 0x64, 0xa1, 0xb6, 0xa4, 0x24, 0xdf, - 0xa3, 0x54, 0xa4, 0x48, 0x62, 0x49, 0xbe, 0x87, 0xd4, 0x42, 0x6a, 0x21, 0xb5, 0xb6, 0x48, 0x2d, - 0xc9, 0xf7, 0x79, 0xe4, 0x9d, 0x5c, 0x95, 0x15, 0x8e, 0x77, 0x92, 0x7c, 0x0f, 0xf3, 0x4c, 0x69, - 0x84, 0xc2, 0x25, 0xdf, 0xd3, 0x84, 0xea, 0x25, 0x93, 0x4f, 0x13, 0x2a, 0xdb, 0x5c, 0x9e, 0x38, - 0x58, 0xe2, 0x60, 0xd7, 0x0f, 0x44, 0x1c, 0x2c, 0x0e, 0x3e, 0x0e, 0x3e, 0x0e, 0x3e, 0x71, 0xb0, - 0x38, 0xf7, 0x38, 0xf7, 0x38, 0xf7, 0x0a, 0x4b, 0x4a, 0x1c, 0x6c, 0x09, 0x7c, 0x7c, 0xe2, 0x60, - 0x89, 0x83, 0x85, 0xca, 0x42, 0x65, 0x4b, 0x4b, 0x65, 0x89, 0x83, 0x8d, 0xf5, 0x4e, 0xc4, 0xc1, - 0x02, 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0x1c, 0x2c, 0x71, 0xb0, 0xc4, 0xc1, 0x22, 0x59, 0xa8, 0x2d, - 0x29, 0x71, 0xb0, 0x28, 0x15, 0x29, 0x92, 0x58, 0xe2, 0x60, 0x21, 0xb5, 0x90, 0x5a, 0x48, 0xad, - 0x2d, 0x52, 0x4b, 0x1c, 0x6c, 0x1e, 0x79, 0x27, 0x57, 0x65, 0x85, 0xe3, 0x9d, 0xc4, 0xc1, 0xc2, - 0x3c, 0x53, 0x1a, 0xa1, 0x1c, 0x71, 0xb0, 0x34, 0x9f, 0xca, 0xc6, 0x42, 0x18, 0x6f, 0x3a, 0x95, - 0x66, 0xb7, 0x29, 0xa5, 0xfe, 0x4b, 0x3a, 0x51, 0xce, 0x22, 0xd1, 0xcd, 0x62, 0x65, 0xb6, 0xab, - 0x94, 0xd9, 0x36, 0xe8, 0x61, 0x51, 0x66, 0xfb, 0xf9, 0x9b, 0xd3, 0xa9, 0x25, 0x03, 0xa4, 0x93, - 0x72, 0xde, 0xd9, 0x92, 0x5e, 0x48, 0x63, 0x48, 0x41, 0x52, 0xa1, 0x53, 0x4b, 0xe1, 0xe8, 0xaa, - 0x86, 0xab, 0x40, 0x87, 0xd2, 0xd5, 0x73, 0x6a, 0xac, 0x33, 0x69, 0x86, 0x5a, 0x92, 0xb6, 0xab, - 0x0f, 0xdd, 0xc0, 0xf1, 0x1e, 0xba, 0x81, 0x7a, 0x43, 0xd2, 0x99, 0x31, 0x68, 0x47, 0x6a, 0xce, - 0x24, 0xd3, 0x8e, 0xd4, 0x66, 0x3b, 0x52, 0xfa, 0x4a, 0xe1, 0xf0, 0xe2, 0xf0, 0xa6, 0xec, 0xf0, - 0xd2, 0x57, 0x0a, 0x47, 0x14, 0x47, 0x34, 0x7b, 0x8e, 0x28, 0xf9, 0xf4, 0x04, 0x0a, 0x89, 0x8c, - 0x4c, 0xa0, 0x90, 0x4d, 0xd0, 0x90, 0x01, 0x0f, 0x21, 0x10, 0x91, 0x57, 0xb5, 0x96, 0xf6, 0x2b, - 0xf9, 0xf4, 0x92, 0x3b, 0x92, 0x20, 0xa1, 0xf5, 0xe3, 0x13, 0x24, 0x94, 0xda, 0x92, 0x92, 0x4f, - 0x6f, 0x6e, 0x34, 0xf2, 0xe9, 0x13, 0x8a, 0x3c, 0xe4, 0xd3, 0x43, 0x65, 0xa1, 0xb2, 0x50, 0x59, - 0xf1, 0xfd, 0x4a, 0x3e, 0x7d, 0xac, 0x77, 0x22, 0x9f, 0x1e, 0x18, 0x06, 0x86, 0x81, 0x61, 0xf2, - 0xe9, 0xc9, 0xa7, 0x27, 0x9f, 0x1e, 0xc9, 0x42, 0x6d, 0x49, 0xc9, 0xa7, 0x47, 0xa9, 0x48, 0x91, - 0xc4, 0x92, 0x4f, 0x0f, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x6d, 0x91, 0x5a, 0xf2, 0xe9, 0xf3, 0xc8, - 0x3b, 0xb9, 0x2a, 0x2b, 0x1c, 0xef, 0x24, 0x9f, 0x1e, 0xe6, 0x99, 0xd2, 0x08, 0x45, 0xca, 0xa7, - 0x7f, 0xce, 0x47, 0xa0, 0xab, 0xd4, 0x4a, 0x83, 0x4f, 0x57, 0x29, 0xdb, 0x4c, 0x9e, 0x28, 0x58, - 0xa2, 0x60, 0xd7, 0x0f, 0x44, 0x14, 0x2c, 0xee, 0x3d, 0xee, 0x3d, 0xee, 0x3d, 0x51, 0xb0, 0xb8, - 0xf6, 0xb8, 0xf6, 0xb8, 0xf6, 0x0a, 0x4b, 0x4a, 0x14, 0x6c, 0x09, 0x3c, 0x7c, 0xa2, 0x60, 0x89, - 0x82, 0x85, 0xca, 0x42, 0x65, 0x4b, 0x4b, 0x65, 0x89, 0x82, 0x8d, 0xf5, 0x4e, 0x44, 0xc1, 0x02, - 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0x14, 0x2c, 0x51, 0xb0, 0x44, 0xc1, 0x22, 0x59, 0xa8, 0x2d, 0x29, - 0x51, 0xb0, 0x28, 0x15, 0x29, 0x92, 0x58, 0xa2, 0x60, 0x21, 0xb5, 0x90, 0x5a, 0x48, 0xad, 0x2d, - 0x52, 0x4b, 0x14, 0x6c, 0x1e, 0x79, 0x27, 0x57, 0x65, 0x85, 0xe3, 0x9d, 0x44, 0xc1, 0xc2, 0x3c, - 0x53, 0x1a, 0xa1, 0x0c, 0x51, 0xb0, 0xf4, 0x94, 0xca, 0xc2, 0x32, 0x18, 0xed, 0x28, 0x75, 0x5a, - 0xfd, 0xda, 0x0d, 0xea, 0x0f, 0xdd, 0x20, 0x95, 0x7e, 0x52, 0x85, 0xed, 0x0d, 0xa0, 0x5c, 0xe7, - 0x3e, 0xe1, 0xaa, 0x65, 0xa7, 0x2f, 0xc0, 0x43, 0xb7, 0xdd, 0xd3, 0xed, 0x0b, 0x30, 0x1c, 0x83, - 0xbe, 0x00, 0xe6, 0xfc, 0x5a, 0xfa, 0x02, 0xd0, 0x17, 0x80, 0xbe, 0x00, 0xc2, 0x22, 0x11, 0x7d, - 0x01, 0x0c, 0xf2, 0x32, 0xfa, 0x02, 0x98, 0x3c, 0x90, 0x92, 0x07, 0x53, 0xfe, 0x80, 0x4a, 0x1f, - 0x54, 0x63, 0x07, 0xd6, 0xd8, 0xc1, 0x35, 0x72, 0x80, 0xb3, 0xe1, 0xff, 0x92, 0x11, 0xc5, 0x55, - 0x8f, 0xc8, 0xc8, 0x5c, 0xf5, 0xd8, 0x04, 0x0d, 0x59, 0x39, 0x90, 0x8c, 0x28, 0x91, 0x21, 0xb9, - 0xe6, 0xe1, 0x9a, 0xc7, 0xe2, 0x71, 0x9b, 0x5f, 0x52, 0x32, 0xa2, 0xb2, 0xb1, 0xb6, 0xdc, 0xf6, - 0x98, 0xde, 0xfb, 0x64, 0x44, 0x41, 0x65, 0xa1, 0xb2, 0x50, 0xd9, 0x9c, 0x52, 0x59, 0x32, 0xa2, - 0x62, 0xbd, 0x13, 0x19, 0x51, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x93, 0x11, 0x45, 0x46, 0x14, 0x19, - 0x51, 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x46, 0x14, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x8c, 0x28, 0x48, - 0x2d, 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x92, 0x11, 0x95, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, - 0x78, 0x27, 0x19, 0x51, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x5e, 0x46, 0xd4, 0x43, 0xb7, 0xdd, 0xa3, - 0x2f, 0xc0, 0x4a, 0x83, 0x4f, 0x5f, 0x00, 0xdb, 0x4c, 0x9e, 0x28, 0x58, 0xa2, 0x60, 0xd7, 0x0f, - 0x44, 0x14, 0x2c, 0xee, 0x3d, 0xee, 0x3d, 0xee, 0x3d, 0x51, 0xb0, 0xb8, 0xf6, 0xb8, 0xf6, 0xb8, - 0xf6, 0x0a, 0x4b, 0x4a, 0x14, 0x6c, 0x09, 0x3c, 0x7c, 0xa2, 0x60, 0x89, 0x82, 0x85, 0xca, 0x42, - 0x65, 0x4b, 0x4b, 0x65, 0x89, 0x82, 0x8d, 0xf5, 0x4e, 0x44, 0xc1, 0x02, 0xc3, 0xc0, 0x30, 0x30, - 0x4c, 0x14, 0x2c, 0x51, 0xb0, 0x44, 0xc1, 0x22, 0x59, 0xa8, 0x2d, 0x29, 0x51, 0xb0, 0x28, 0x15, - 0x29, 0x92, 0x58, 0xa2, 0x60, 0x21, 0xb5, 0x90, 0x5a, 0x48, 0xad, 0x2d, 0x52, 0x4b, 0x14, 0x6c, - 0x1e, 0x79, 0x27, 0x57, 0x65, 0x85, 0xe3, 0x9d, 0x44, 0xc1, 0xc2, 0x3c, 0x53, 0x1a, 0xa1, 0x0c, - 0x51, 0xb0, 0xf4, 0x05, 0xc8, 0xc2, 0x32, 0x98, 0xef, 0x0b, 0xf0, 0xb5, 0xdb, 0xee, 0xd1, 0x17, - 0xc0, 0xcc, 0x52, 0x9a, 0xeb, 0x0b, 0x30, 0x58, 0xb5, 0x4c, 0xf4, 0x05, 0xd8, 0x1b, 0xbc, 0xab, - 0xdf, 0x7d, 0xa8, 0x39, 0xf7, 0xfd, 0x76, 0xe4, 0x37, 0xdd, 0x5e, 0xa4, 0xd1, 0x21, 0x60, 0xd5, - 0x68, 0xf4, 0x0a, 0x30, 0xe7, 0xeb, 0xd2, 0x2b, 0x80, 0x5e, 0x01, 0xf4, 0x0a, 0x10, 0x16, 0x8e, - 0xe8, 0x15, 0x60, 0x90, 0xab, 0xd1, 0x2b, 0xc0, 0xe4, 0x81, 0x94, 0x3c, 0x98, 0xf2, 0x07, 0x54, - 0xfa, 0xa0, 0x1a, 0x3b, 0xb0, 0xc6, 0x0e, 0xae, 0x91, 0x03, 0x9c, 0x0d, 0x9f, 0x98, 0x2c, 0x29, - 0xae, 0x7f, 0x44, 0x46, 0xe6, 0xfa, 0xc7, 0x26, 0x68, 0xc8, 0x4a, 0x84, 0x64, 0x49, 0x89, 0x0c, - 0xc9, 0xd5, 0x0f, 0x57, 0x3f, 0x16, 0x8f, 0xdb, 0xfc, 0x92, 0x92, 0x25, 0x95, 0x8d, 0xb5, 0xe5, - 0x06, 0xc8, 0xf4, 0xde, 0x27, 0x4b, 0x0a, 0x2a, 0x0b, 0x95, 0x85, 0xca, 0xe6, 0x94, 0xca, 0x92, - 0x25, 0x15, 0xeb, 0x9d, 0xc8, 0x92, 0x02, 0x86, 0x81, 0x61, 0x60, 0x98, 0x2c, 0x29, 0xb2, 0xa4, - 0xc8, 0x92, 0x42, 0xb2, 0x50, 0x5b, 0x52, 0xb2, 0xa4, 0x50, 0x2a, 0x52, 0x24, 0xb1, 0x64, 0x49, - 0x41, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, 0x96, 0x2c, 0xa9, 0x3c, 0xf2, 0x4e, 0xae, 0xca, - 0x0a, 0xc7, 0x3b, 0xc9, 0x92, 0x82, 0x79, 0xa6, 0x34, 0x42, 0xa1, 0xb2, 0xa4, 0x56, 0x64, 0x26, - 0xd0, 0x35, 0x60, 0xa5, 0xe9, 0xa7, 0x6b, 0x80, 0x6d, 0x4e, 0x4f, 0x3c, 0x2c, 0xf1, 0xb0, 0xeb, - 0x07, 0x22, 0x1e, 0x16, 0x47, 0x1f, 0x47, 0x1f, 0x47, 0x9f, 0x78, 0x58, 0x9c, 0x7c, 0x9c, 0x7c, - 0x9c, 0x7c, 0x85, 0x25, 0x25, 0x1e, 0xb6, 0x04, 0xbe, 0x3e, 0xf1, 0xb0, 0xc4, 0xc3, 0x42, 0x65, - 0xa1, 0xb2, 0xa5, 0xa5, 0xb2, 0xc4, 0xc3, 0xc6, 0x7a, 0x27, 0xe2, 0x61, 0x81, 0x61, 0x60, 0x18, - 0x18, 0x26, 0x1e, 0x96, 0x78, 0x58, 0xe2, 0x61, 0x91, 0x2c, 0xd4, 0x96, 0x94, 0x78, 0x58, 0x94, - 0x8a, 0x14, 0x49, 0x2c, 0xf1, 0xb0, 0x90, 0x5a, 0x48, 0x2d, 0xa4, 0xd6, 0x16, 0xa9, 0x25, 0x1e, - 0x36, 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, 0x4e, 0xe2, 0x61, 0x61, 0x9e, 0x29, 0x8d, 0x50, - 0xae, 0x78, 0x58, 0xfa, 0x07, 0x64, 0x6b, 0x41, 0xcc, 0x76, 0x12, 0xd8, 0xfb, 0xda, 0x0d, 0x4e, - 0xba, 0x0f, 0xb5, 0xcf, 0x93, 0x67, 0xd3, 0x52, 0xc0, 0xf4, 0xea, 0x9a, 0x69, 0x2e, 0xb0, 0xb4, - 0x90, 0x19, 0xeb, 0x32, 0xd0, 0x0f, 0xe4, 0x7a, 0x0c, 0x4c, 0xc6, 0xa2, 0xc3, 0x80, 0x39, 0xbf, - 0x98, 0x0e, 0x03, 0x74, 0x18, 0xa0, 0xc3, 0x80, 0xb0, 0xc8, 0x44, 0x87, 0x01, 0x83, 0x6c, 0x8e, - 0x0e, 0x03, 0x26, 0x0f, 0xa4, 0xe4, 0xc1, 0x94, 0x3f, 0xa0, 0xd2, 0x07, 0xd5, 0xd8, 0x81, 0x35, - 0x76, 0x70, 0x8d, 0x1c, 0xe0, 0x6c, 0xf8, 0xcf, 0x64, 0x54, 0x71, 0x55, 0x24, 0x32, 0x32, 0x57, - 0x45, 0x36, 0x41, 0x43, 0x56, 0x4e, 0x24, 0xa3, 0x4a, 0x64, 0x48, 0xae, 0x89, 0xb8, 0x26, 0xb2, - 0x78, 0xdc, 0xe6, 0x97, 0x94, 0x8c, 0xaa, 0x6c, 0xac, 0x2d, 0xb7, 0x45, 0xa6, 0xf7, 0x3e, 0x19, - 0x55, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x36, 0xa7, 0x54, 0x96, 0x8c, 0xaa, 0x58, 0xef, 0x44, 0x46, - 0x15, 0x30, 0x0c, 0x0c, 0x03, 0xc3, 0x64, 0x54, 0x91, 0x51, 0x45, 0x46, 0x15, 0x92, 0x85, 0xda, - 0x92, 0x92, 0x51, 0x85, 0x52, 0x91, 0x22, 0x89, 0x25, 0xa3, 0x0a, 0x52, 0x0b, 0xa9, 0x85, 0xd4, - 0xda, 0x22, 0xb5, 0x64, 0x54, 0xe5, 0x91, 0x77, 0x72, 0x55, 0x56, 0x38, 0xde, 0x49, 0x46, 0x15, - 0xcc, 0x33, 0xa5, 0x11, 0x0a, 0x9a, 0x51, 0x35, 0xce, 0x4b, 0xa0, 0xbf, 0xc0, 0x4a, 0xc3, 0x4f, - 0x7f, 0x01, 0xdb, 0x8c, 0x9e, 0x68, 0x58, 0xa2, 0x61, 0xd7, 0x0f, 0x44, 0x34, 0x2c, 0x6e, 0x3e, - 0x6e, 0x3e, 0x6e, 0x3e, 0xd1, 0xb0, 0xb8, 0xf8, 0xb8, 0xf8, 0xb8, 0xf8, 0x0a, 0x4b, 0x4a, 0x34, - 0x6c, 0x09, 0x3c, 0x7d, 0xa2, 0x61, 0x89, 0x86, 0x85, 0xca, 0x42, 0x65, 0x4b, 0x4b, 0x65, 0x89, - 0x86, 0x8d, 0xf5, 0x4e, 0x44, 0xc3, 0x02, 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0x34, 0x2c, 0xd1, 0xb0, - 0x44, 0xc3, 0x22, 0x59, 0xa8, 0x2d, 0x29, 0xd1, 0xb0, 0x28, 0x15, 0x29, 0x92, 0x58, 0xa2, 0x61, - 0x21, 0xb5, 0x90, 0x5a, 0x48, 0xad, 0x2d, 0x52, 0x4b, 0x34, 0x6c, 0x1e, 0x79, 0x27, 0x57, 0x65, - 0x85, 0xe3, 0x9d, 0x44, 0xc3, 0xc2, 0x3c, 0x53, 0x1a, 0xa1, 0x4c, 0xd1, 0xb0, 0x74, 0x17, 0xc8, - 0xd2, 0x72, 0xd8, 0xe9, 0x2d, 0xf0, 0x25, 0xa0, 0xb3, 0x80, 0x85, 0x95, 0x35, 0xdb, 0x57, 0x60, - 0xbc, 0x88, 0x99, 0xea, 0x2a, 0x70, 0x30, 0xd3, 0x54, 0x41, 0xbf, 0xaf, 0xc0, 0x81, 0x72, 0x8b, - 0x06, 0x3a, 0x0b, 0xa4, 0xe2, 0xf9, 0xd2, 0x59, 0x20, 0xc6, 0x07, 0xe9, 0x2c, 0x60, 0x40, 0x7e, - 0xa2, 0xb3, 0x40, 0xca, 0x72, 0x11, 0x9d, 0x05, 0xe8, 0x2c, 0x60, 0xe7, 0x80, 0x4a, 0x1f, 0x54, - 0x63, 0x07, 0xd6, 0xd8, 0xc1, 0x35, 0x72, 0x80, 0xb3, 0xe1, 0x39, 0x93, 0x4b, 0xc5, 0x25, 0x91, - 0xc8, 0xc8, 0x5c, 0x12, 0xd9, 0x04, 0x0d, 0x59, 0x21, 0x91, 0x5c, 0x2a, 0x91, 0x21, 0xb9, 0x20, - 0xe2, 0x82, 0xc8, 0xe2, 0x71, 0x9b, 0x5f, 0x52, 0x72, 0xa9, 0xb2, 0xb1, 0xb6, 0xdc, 0x13, 0x99, - 0xde, 0xfb, 0xe4, 0x52, 0x41, 0x65, 0xa1, 0xb2, 0x50, 0xd9, 0x9c, 0x52, 0x59, 0x72, 0xa9, 0x62, - 0xbd, 0x13, 0xb9, 0x54, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x93, 0x4b, 0x45, 0x2e, 0x15, 0xb9, 0x54, - 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x2e, 0x15, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x5c, 0x2a, 0x48, 0x2d, - 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x92, 0x4b, 0x95, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, - 0x27, 0xb9, 0x54, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x64, 0x2e, 0xd5, 0x4c, 0x66, 0x02, 0xbd, 0x05, - 0x56, 0x9a, 0x7e, 0x7a, 0x0b, 0xd8, 0xe6, 0xf4, 0xc4, 0xc3, 0x12, 0x0f, 0xbb, 0x7e, 0x20, 0xe2, - 0x61, 0x71, 0xf4, 0x71, 0xf4, 0x71, 0xf4, 0x89, 0x87, 0xc5, 0xc9, 0xc7, 0xc9, 0xc7, 0xc9, 0x57, - 0x58, 0x52, 0xe2, 0x61, 0x4b, 0xe0, 0xeb, 0x13, 0x0f, 0x4b, 0x3c, 0x2c, 0x54, 0x16, 0x2a, 0x5b, - 0x5a, 0x2a, 0x4b, 0x3c, 0x6c, 0xac, 0x77, 0x22, 0x1e, 0x16, 0x18, 0x06, 0x86, 0x81, 0x61, 0xe2, - 0x61, 0x89, 0x87, 0x25, 0x1e, 0x16, 0xc9, 0x42, 0x6d, 0x49, 0x89, 0x87, 0x45, 0xa9, 0x48, 0x91, - 0xc4, 0x12, 0x0f, 0x0b, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x6d, 0x91, 0x5a, 0xe2, 0x61, 0xf3, 0xc8, - 0x3b, 0xb9, 0x2a, 0x2b, 0x1c, 0xef, 0x24, 0x1e, 0x16, 0xe6, 0x99, 0xd2, 0x08, 0xe5, 0x8a, 0x87, - 0xa5, 0xbb, 0x40, 0xb6, 0x16, 0xc4, 0x4a, 0x7f, 0x81, 0x83, 0xcf, 0x93, 0x67, 0xd3, 0x61, 0xc0, - 0xf4, 0xea, 0x1a, 0xed, 0x31, 0xf0, 0xbc, 0x90, 0x19, 0xeb, 0x32, 0x30, 0x69, 0xb0, 0x20, 0xd1, - 0x63, 0x40, 0xad, 0x59, 0x03, 0x1d, 0x06, 0x52, 0xf1, 0x7f, 0xe9, 0x30, 0x10, 0xe3, 0x83, 0x74, - 0x18, 0x30, 0x20, 0x42, 0xd1, 0x61, 0x20, 0x65, 0xd1, 0x88, 0x0e, 0x03, 0x74, 0x18, 0xb0, 0x73, - 0x40, 0xa5, 0x0f, 0xaa, 0xb1, 0x03, 0x6b, 0xec, 0xe0, 0x1a, 0x39, 0xc0, 0xd9, 0xf0, 0x9f, 0xc9, - 0xa8, 0xe2, 0xaa, 0x48, 0x64, 0x64, 0xae, 0x8a, 0x6c, 0x82, 0x86, 0xac, 0x9c, 0x48, 0x46, 0x95, - 0xc8, 0x90, 0x5c, 0x13, 0x71, 0x4d, 0x64, 0xf1, 0xb8, 0xcd, 0x2f, 0x29, 0x19, 0x55, 0xd9, 0x58, - 0x5b, 0x6e, 0x8b, 0x4c, 0xef, 0x7d, 0x32, 0xaa, 0xa0, 0xb2, 0x50, 0x59, 0xa8, 0x6c, 0x4e, 0xa9, - 0x2c, 0x19, 0x55, 0xb1, 0xde, 0x89, 0x8c, 0x2a, 0x60, 0x18, 0x18, 0x06, 0x86, 0xc9, 0xa8, 0x22, - 0xa3, 0x8a, 0x8c, 0x2a, 0x24, 0x0b, 0xb5, 0x25, 0x25, 0xa3, 0x0a, 0xa5, 0x22, 0x45, 0x12, 0x4b, - 0x46, 0x15, 0xa4, 0x16, 0x52, 0x0b, 0xa9, 0xb5, 0x45, 0x6a, 0xc9, 0xa8, 0xca, 0x23, 0xef, 0xe4, - 0xaa, 0xac, 0x70, 0xbc, 0x93, 0x8c, 0x2a, 0x98, 0x67, 0x4a, 0x23, 0x14, 0x34, 0xa3, 0x6a, 0x9c, - 0x97, 0x40, 0x7f, 0x81, 0x95, 0x86, 0x9f, 0xfe, 0x02, 0xb6, 0x19, 0x3d, 0xd1, 0xb0, 0x44, 0xc3, - 0xae, 0x1f, 0x88, 0x68, 0x58, 0xdc, 0x7c, 0xdc, 0x7c, 0xdc, 0x7c, 0xa2, 0x61, 0x71, 0xf1, 0x71, - 0xf1, 0x71, 0xf1, 0x15, 0x96, 0x94, 0x68, 0xd8, 0x12, 0x78, 0xfa, 0x44, 0xc3, 0x12, 0x0d, 0x0b, - 0x95, 0x85, 0xca, 0x96, 0x96, 0xca, 0x12, 0x0d, 0x1b, 0xeb, 0x9d, 0x88, 0x86, 0x05, 0x86, 0x81, - 0x61, 0x60, 0x98, 0x68, 0x58, 0xa2, 0x61, 0x89, 0x86, 0x45, 0xb2, 0x50, 0x5b, 0x52, 0xa2, 0x61, - 0x51, 0x2a, 0x52, 0x24, 0xb1, 0x44, 0xc3, 0x42, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, 0x96, - 0x68, 0xd8, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0x89, 0x86, 0x85, 0x79, 0xa6, 0x34, - 0x42, 0x99, 0xa2, 0x61, 0xe9, 0x2e, 0x90, 0xa5, 0xe5, 0xb0, 0xd3, 0x5b, 0xe0, 0x4b, 0x40, 0x67, - 0x01, 0x0b, 0x2b, 0x6b, 0xb6, 0xaf, 0xc0, 0x78, 0x11, 0xb3, 0xd0, 0x55, 0x20, 0xec, 0xf4, 0x23, - 0xcf, 0xe9, 0x79, 0x6d, 0x6f, 0x68, 0xf7, 0x9c, 0x4e, 0x77, 0xf0, 0xaf, 0x9e, 0x7a, 0x6b, 0x81, - 0x75, 0x03, 0xd2, 0x5f, 0xc0, 0x9c, 0x5f, 0x4c, 0x7f, 0x01, 0x9b, 0xfd, 0x05, 0x34, 0x4b, 0x9b, - 0xcb, 0x94, 0x34, 0xa7, 0xa7, 0x80, 0x09, 0x61, 0x89, 0x9e, 0x02, 0x06, 0x39, 0x9c, 0x76, 0x4f, - 0x01, 0xb7, 0xf5, 0xe0, 0x85, 0x91, 0xdf, 0xf3, 0x1c, 0x3f, 0x18, 0xb8, 0x69, 0x0f, 0x9e, 0x33, - 0xb4, 0x36, 0x3d, 0xb9, 0xbc, 0xaa, 0xf5, 0x8f, 0xd0, 0xcd, 0x34, 0x91, 0x8d, 0x7d, 0x13, 0xf2, - 0xb4, 0xe9, 0x64, 0x90, 0x0d, 0x98, 0x30, 0x06, 0x17, 0x46, 0x60, 0x23, 0x1b, 0x9e, 0xba, 0x98, - 0x8e, 0x6c, 0x20, 0x36, 0x4d, 0x28, 0x26, 0x2d, 0x9d, 0x54, 0x55, 0xb7, 0xfd, 0x97, 0xfb, 0xd8, - 0x73, 0x9a, 0x9d, 0xfb, 0xae, 0x1b, 0x7a, 0xce, 0xbd, 0xd7, 0x12, 0xc4, 0xd7, 0xe5, 0xb1, 0x01, - 0x56, 0x80, 0x15, 0x60, 0x05, 0x58, 0x8b, 0x0f, 0xac, 0x5e, 0xe0, 0x7e, 0x6f, 0x7b, 0x8e, 0xeb, - 0xdf, 0x75, 0xe5, 0x10, 0x75, 0x76, 0x50, 0xa0, 0x14, 0x28, 0x05, 0x4a, 0x81, 0xd2, 0x12, 0x40, - 0xe9, 0xcf, 0xc8, 0x0b, 0x03, 0xb7, 0x3d, 0x65, 0x92, 0x43, 0x2f, 0x3d, 0x74, 0x7c, 0x41, 0xae, - 0xfa, 0xc2, 0x33, 0xe4, 0x80, 0x76, 0x70, 0x7c, 0xc0, 0x59, 0x70, 0x16, 0x9c, 0x05, 0x67, 0x33, - 0x88, 0xb3, 0xfe, 0x5d, 0xd0, 0x09, 0x3d, 0xc7, 0xed, 0x39, 0x5d, 0x37, 0xfa, 0xe1, 0xb4, 0xbd, - 0xe0, 0x6e, 0x78, 0xc1, 0x2a, 0x04, 0xb1, 0xab, 0x87, 0x87, 0xc6, 0x02, 0xaf, 0xc0, 0x2b, 0xf0, - 0x5a, 0x1a, 0x78, 0x0d, 0xbc, 0x9f, 0x91, 0xf3, 0xa3, 0xd3, 0x75, 0xfc, 0xbb, 0xae, 0x73, 0xef, - 0x45, 0xa1, 0xdf, 0x14, 0xc7, 0xd8, 0x55, 0xcf, 0x00, 0x68, 0x01, 0x5a, 0x80, 0x16, 0xa0, 0xcd, - 0x09, 0xd0, 0x96, 0x2e, 0xe2, 0x74, 0x4d, 0x2c, 0x9d, 0x56, 0x19, 0x5c, 0x85, 0xb8, 0x4f, 0xa5, - 0x58, 0x48, 0x9d, 0x72, 0xb7, 0x22, 0x65, 0x6e, 0xc5, 0x22, 0xa4, 0xaa, 0x44, 0x48, 0x19, 0x34, - 0x13, 0x44, 0x48, 0xcd, 0x10, 0x2a, 0x22, 0xa4, 0x60, 0x93, 0xb0, 0x49, 0xd8, 0x24, 0x6c, 0x32, - 0xd3, 0x6e, 0x3b, 0x11, 0x52, 0x00, 0x2b, 0xc0, 0x0a, 0xb0, 0x02, 0xac, 0xc2, 0xc0, 0x4a, 0x84, - 0x14, 0x50, 0x0a, 0x94, 0x02, 0xa5, 0x40, 0xa9, 0x3e, 0x94, 0x12, 0x21, 0x05, 0xce, 0x82, 0xb3, - 0xe0, 0x2c, 0x38, 0x6b, 0x14, 0x67, 0x89, 0x90, 0x02, 0x5e, 0x81, 0x57, 0xe0, 0x15, 0x78, 0x35, - 0x09, 0xaf, 0x44, 0x48, 0x01, 0xb4, 0x00, 0x2d, 0x40, 0x0b, 0xd0, 0xca, 0x7f, 0xb2, 0x88, 0x11, - 0x52, 0x1a, 0xa5, 0x11, 0x29, 0x8c, 0xb7, 0x71, 0x7a, 0x8d, 0x54, 0xc7, 0xbb, 0x18, 0x3c, 0xeb, - 0x72, 0xf2, 0xa8, 0xf3, 0xf1, 0x93, 0x32, 0x50, 0x22, 0xaf, 0x17, 0x46, 0x9e, 0xd3, 0xed, 0xb4, - 0xfd, 0xe6, 0xa3, 0xe3, 0x77, 0x1f, 0x6a, 0xea, 0xb5, 0xf1, 0x96, 0x46, 0xa2, 0x28, 0x9e, 0x39, - 0xf3, 0x4d, 0x51, 0x3c, 0x9b, 0x45, 0xf1, 0xe6, 0x2a, 0xa1, 0x6a, 0xc7, 0x7d, 0x0a, 0xd4, 0x55, - 0xa5, 0x40, 0x9e, 0x09, 0x2e, 0x4c, 0xf8, 0xa7, 0x41, 0x42, 0xa5, 0x1d, 0xfe, 0xa9, 0x59, 0x99, - 0x72, 0x69, 0xdb, 0x69, 0x55, 0xa8, 0x14, 0x3a, 0x88, 0x38, 0xad, 0x38, 0xad, 0x79, 0x77, 0x5a, - 0x75, 0x0f, 0xf6, 0x74, 0xa0, 0x7b, 0xf7, 0xa7, 0x33, 0x5a, 0x45, 0x81, 0x90, 0xee, 0xa5, 0x4d, - 0x3c, 0x37, 0x3a, 0xfd, 0x93, 0xb2, 0x03, 0x0a, 0xa6, 0xc0, 0xc1, 0x38, 0x48, 0x18, 0x07, 0x0b, - 0xa3, 0xa0, 0x21, 0x03, 0x1e, 0x42, 0x20, 0x22, 0xaf, 0x80, 0x2d, 0xed, 0xd7, 0xbe, 0x1f, 0x44, - 0x7b, 0x55, 0x03, 0xbd, 0x93, 0x0e, 0xe9, 0x9d, 0x24, 0x3c, 0x38, 0xbd, 0x93, 0x2c, 0x1d, 0xb7, - 0xf9, 0x25, 0x2d, 0x40, 0xef, 0xa4, 0x5a, 0xf5, 0xa8, 0x76, 0x74, 0x70, 0x58, 0x3d, 0xda, 0xa7, - 0x85, 0x92, 0xf4, 0x68, 0x45, 0x6a, 0xde, 0xd9, 0x0d, 0xbd, 0x07, 0x2f, 0x88, 0x9c, 0xc8, 0x73, - 0xc3, 0x56, 0xe7, 0xaf, 0x40, 0x9e, 0x6e, 0x2e, 0x3d, 0x41, 0xc8, 0x40, 0x0a, 0x5f, 0xba, 0x42, - 0x65, 0xa1, 0xb2, 0x50, 0xd9, 0x9c, 0x51, 0x59, 0xb9, 0x4b, 0xdd, 0x25, 0x19, 0x6b, 0xb7, 0x40, - 0x20, 0x1f, 0x7a, 0xbd, 0xc8, 0x0d, 0x23, 0x27, 0xf2, 0xef, 0xbd, 0x50, 0x1e, 0xe1, 0xe7, 0x87, - 0x07, 0x86, 0x81, 0x61, 0x60, 0xb8, 0x54, 0x30, 0xdc, 0xf2, 0x9a, 0xfe, 0xbd, 0xdb, 0x3e, 0xa8, - 0x99, 0x00, 0xe2, 0xaa, 0xe0, 0x98, 0x4b, 0x4e, 0x4b, 0x15, 0xc9, 0xc2, 0x8c, 0x7f, 0x5b, 0x45, - 0xb2, 0x28, 0x9a, 0x64, 0xb1, 0xc7, 0x92, 0xa2, 0x54, 0xa4, 0x47, 0x62, 0xff, 0x72, 0xc3, 0xc0, - 0x0f, 0xee, 0x9c, 0xe8, 0x47, 0xe8, 0xf5, 0x7e, 0x74, 0xda, 0x2d, 0xa7, 0xdb, 0x8c, 0xe4, 0xc9, - 0xec, 0xea, 0xc7, 0x40, 0x6a, 0x21, 0xb5, 0x90, 0xda, 0x52, 0x91, 0xda, 0xae, 0x17, 0x36, 0xbd, - 0x20, 0x72, 0xef, 0x3c, 0x03, 0xac, 0x76, 0x1f, 0xde, 0x69, 0x86, 0xa4, 0x70, 0x55, 0x56, 0x38, - 0xde, 0x69, 0x7a, 0x49, 0x77, 0x77, 0x60, 0x9e, 0xc5, 0x65, 0x9e, 0xa9, 0x46, 0x84, 0x09, 0xe5, - 0xce, 0x4c, 0xc7, 0xd3, 0x49, 0xf2, 0x58, 0xcc, 0x4a, 0xd8, 0x9e, 0x8d, 0xbe, 0xd6, 0xaa, 0x35, - 0xac, 0x3f, 0xd7, 0x3a, 0xa9, 0xa3, 0x7a, 0x35, 0x88, 0x97, 0xcc, 0xbe, 0x4e, 0x2d, 0xe2, 0x25, - 0xed, 0x4a, 0x2a, 0x16, 0xb6, 0x4a, 0x2c, 0x6c, 0x06, 0xf8, 0x3b, 0xb1, 0xb0, 0xf1, 0xdf, 0x88, - 0x58, 0x58, 0x9c, 0x7c, 0x9c, 0x7c, 0x9c, 0xfc, 0x8c, 0x3b, 0xf9, 0xc4, 0xc2, 0xe2, 0xe0, 0xe3, - 0xe0, 0x17, 0xdc, 0xc1, 0x27, 0x16, 0xb6, 0x04, 0x7e, 0x3e, 0xb1, 0xb0, 0xc4, 0xc2, 0x42, 0x65, - 0xa1, 0xb2, 0xa5, 0xa5, 0xb2, 0xc4, 0xc2, 0xc6, 0x7a, 0x27, 0x62, 0x61, 0x81, 0x61, 0x60, 0x18, - 0x18, 0x26, 0x16, 0x96, 0x58, 0x58, 0x62, 0x61, 0x91, 0x2c, 0xd4, 0x96, 0x94, 0x58, 0x58, 0x94, - 0x8a, 0x14, 0x49, 0x2c, 0xb1, 0xb0, 0x90, 0x5a, 0x48, 0x2d, 0xa4, 0xd6, 0x16, 0xa9, 0x25, 0x16, - 0x36, 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, 0x4e, 0x62, 0x61, 0x61, 0x9e, 0x29, 0x8d, 0x50, - 0x9e, 0x58, 0x58, 0x8d, 0xaa, 0xf2, 0xfa, 0x53, 0x5d, 0xbe, 0xe2, 0xfe, 0x2f, 0x2e, 0x46, 0x45, - 0x2b, 0x32, 0x78, 0x43, 0x2d, 0xfa, 0xcb, 0x30, 0xf2, 0x1a, 0xc3, 0x07, 0x9f, 0x74, 0x1f, 0x6a, - 0x37, 0x23, 0xc6, 0x7f, 0x3a, 0x7c, 0x2c, 0x3d, 0x05, 0x84, 0x57, 0xd5, 0x48, 0x33, 0x81, 0xf9, - 0x05, 0xcc, 0x60, 0x17, 0x81, 0x03, 0xb1, 0x2e, 0x02, 0x07, 0x74, 0x11, 0x30, 0xe8, 0xff, 0xd2, - 0x45, 0x80, 0x2e, 0x02, 0x74, 0x11, 0x10, 0x16, 0x93, 0xe8, 0x22, 0x60, 0x90, 0xb9, 0xd1, 0x45, - 0xc0, 0xe4, 0x81, 0x94, 0x3c, 0x98, 0xf2, 0x07, 0x54, 0xfa, 0xa0, 0x1a, 0x3b, 0xb0, 0xc6, 0x0e, - 0xae, 0x91, 0x03, 0x9c, 0x0d, 0x3f, 0x99, 0xcc, 0x29, 0xae, 0x84, 0x44, 0x46, 0xe6, 0x4a, 0xc8, - 0x26, 0x68, 0xc8, 0xca, 0x86, 0x64, 0x4e, 0x89, 0x0c, 0xc9, 0x75, 0x10, 0xd7, 0x41, 0x16, 0x8f, - 0xdb, 0xfc, 0x92, 0x92, 0x39, 0x95, 0x8d, 0xb5, 0xe5, 0x56, 0xc8, 0xf4, 0xde, 0x27, 0x73, 0x0a, - 0x2a, 0x0b, 0x95, 0x85, 0xca, 0xe6, 0x94, 0xca, 0x92, 0x39, 0x15, 0xeb, 0x9d, 0xc8, 0x9c, 0x02, - 0x86, 0x81, 0x61, 0x60, 0x98, 0xcc, 0x29, 0x32, 0xa7, 0xc8, 0x9c, 0x42, 0xb2, 0x50, 0x5b, 0x52, - 0x32, 0xa7, 0x50, 0x2a, 0x52, 0x24, 0xb1, 0x64, 0x4e, 0x41, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, - 0xa4, 0x96, 0xcc, 0xa9, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0xc9, 0x9c, 0x82, 0x79, - 0xa6, 0x34, 0x42, 0x81, 0x33, 0xa7, 0x0e, 0xe8, 0x22, 0xb0, 0xd2, 0xec, 0xd3, 0x45, 0xc0, 0x36, - 0x9f, 0x27, 0x16, 0x96, 0x58, 0xd8, 0xf5, 0x03, 0x11, 0x0b, 0x8b, 0x93, 0x8f, 0x93, 0x8f, 0x93, - 0x4f, 0x2c, 0x2c, 0x0e, 0x3e, 0x0e, 0x3e, 0x0e, 0xbe, 0xc2, 0x92, 0x12, 0x0b, 0x5b, 0x02, 0x3f, - 0x9f, 0x58, 0x58, 0x62, 0x61, 0xa1, 0xb2, 0x50, 0xd9, 0xd2, 0x52, 0x59, 0x62, 0x61, 0x63, 0xbd, - 0x13, 0xb1, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x13, 0x0b, 0x4b, 0x2c, 0x2c, 0xb1, 0xb0, 0x48, - 0x16, 0x6a, 0x4b, 0x4a, 0x2c, 0x2c, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x58, 0x58, 0x48, 0x2d, 0xa4, - 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x0b, 0x9b, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, 0x27, - 0xb1, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x4f, 0x2c, 0x2c, 0x5d, 0x04, 0xb2, 0xb3, 0x18, 0xf6, - 0xba, 0x08, 0x1c, 0xd0, 0x45, 0xc0, 0xe4, 0xaa, 0x9a, 0xef, 0x22, 0x70, 0x90, 0x89, 0x2e, 0x02, - 0x4a, 0xd1, 0xe8, 0x5a, 0xd1, 0xe7, 0xda, 0xfd, 0x02, 0xaa, 0xf4, 0x0b, 0x48, 0xd3, 0x73, 0x2d, - 0x72, 0xbf, 0x80, 0x09, 0x1c, 0x38, 0xe3, 0x43, 0xac, 0xd9, 0x30, 0x60, 0x7e, 0x38, 0xbd, 0x8e, - 0x01, 0x3b, 0x74, 0x0c, 0xa0, 0x63, 0x40, 0x3e, 0x58, 0x9a, 0xb6, 0xb0, 0x33, 0xdd, 0x2f, 0x7e, - 0xcb, 0x0b, 0x22, 0x3f, 0x7a, 0x0c, 0xbd, 0x5b, 0x9d, 0x4d, 0x33, 0xb1, 0x38, 0x1a, 0xd2, 0x4d, - 0xe5, 0x64, 0xfc, 0x55, 0xde, 0xbb, 0x3d, 0xc1, 0xf4, 0xad, 0xe3, 0x4f, 0x27, 0x37, 0x97, 0x83, - 0x7f, 0x5c, 0xfd, 0xd1, 0xa8, 0xeb, 0x6e, 0xc1, 0xa1, 0x57, 0xdc, 0x13, 0x91, 0x93, 0x84, 0x95, - 0xf9, 0x93, 0xc6, 0xd7, 0x83, 0x9b, 0xd3, 0xe3, 0xf7, 0xf5, 0xd3, 0xfa, 0xc7, 0x9b, 0x2f, 0x67, - 0x27, 0x1f, 0x8e, 0x2f, 0xaf, 0x2a, 0x59, 0xb8, 0x9a, 0x10, 0x7e, 0xcf, 0xcb, 0x8b, 0xab, 0xfa, - 0x4d, 0xe3, 0xfc, 0xf4, 0xe4, 0xc3, 0x1f, 0x37, 0x83, 0x77, 0x2e, 0xe2, 0x3b, 0x9e, 0x9e, 0x9c, - 0xfd, 0xeb, 0xf2, 0xea, 0xf8, 0xaa, 0x5e, 0xc4, 0x97, 0x3b, 0x69, 0x7c, 0xad, 0x15, 0x79, 0x83, - 0x9e, 0x56, 0xbf, 0x36, 0xce, 0x6e, 0xea, 0x5f, 0x1b, 0x67, 0x85, 0xde, 0x9a, 0x37, 0x97, 0x8d, - 0x4f, 0xc5, 0x7e, 0xc1, 0xa2, 0xae, 0xe0, 0xde, 0x60, 0x7f, 0x96, 0xe3, 0x14, 0x7e, 0x6d, 0x9c, - 0x5e, 0x16, 0x7a, 0x0d, 0x0f, 0x8a, 0xbc, 0x86, 0xc3, 0x3d, 0x5a, 0x02, 0x4a, 0x33, 0xb3, 0x9a, - 0x9f, 0xbf, 0x9c, 0x5e, 0x15, 0xff, 0x3d, 0x6b, 0xc5, 0x7e, 0xcf, 0x05, 0x8a, 0x5a, 0x2b, 0xe2, - 0x3b, 0x7e, 0x6d, 0x9c, 0x7d, 0xad, 0xdd, 0x7c, 0x3a, 0x3d, 0xff, 0xf7, 0x65, 0xa3, 0xfe, 0xa1, - 0xa0, 0xe8, 0x53, 0x7c, 0x74, 0x15, 0x5c, 0x40, 0xad, 0x11, 0xae, 0x6d, 0xeb, 0x2e, 0xaf, 0x2c, - 0x2c, 0x60, 0xc5, 0x0b, 0xdc, 0xef, 0x6d, 0xaf, 0xa5, 0xaf, 0x72, 0x4e, 0x06, 0x52, 0xed, 0x2f, - 0x29, 0x93, 0x0c, 0x88, 0x4e, 0x3a, 0x37, 0x12, 0x3a, 0xa9, 0xc5, 0xf3, 0x9a, 0xba, 0x4e, 0xaa, - 0x9f, 0x4c, 0xa7, 0x99, 0x3c, 0x67, 0x07, 0xb2, 0xa2, 0x4e, 0xe4, 0xb6, 0x9d, 0xae, 0x1b, 0xfd, - 0xe8, 0xe9, 0xc3, 0xd6, 0xec, 0x60, 0x40, 0x0e, 0x90, 0x03, 0xe4, 0x24, 0xda, 0x2f, 0xda, 0xa5, - 0x68, 0x04, 0x4a, 0xcf, 0x08, 0xc5, 0xcf, 0x0a, 0x44, 0x77, 0x49, 0xc6, 0xc7, 0x4a, 0xa7, 0x1a, - 0x08, 0xc7, 0xbf, 0x9a, 0x08, 0x8d, 0x94, 0x48, 0x32, 0x91, 0x8c, 0x67, 0x35, 0xb5, 0x04, 0xd2, - 0xa5, 0x5d, 0x8c, 0xac, 0x45, 0x4a, 0x91, 0x84, 0xd7, 0xd9, 0x27, 0x1e, 0xba, 0x75, 0xfd, 0x16, - 0xb9, 0x87, 0x5e, 0x25, 0x3f, 0xe8, 0x07, 0xf4, 0x03, 0xfa, 0x01, 0xfd, 0x80, 0x7e, 0x40, 0x3f, - 0xa0, 0x1f, 0xb9, 0xa1, 0x1f, 0xc5, 0x0d, 0xa1, 0x4f, 0x9e, 0x87, 0x62, 0x26, 0xa8, 0xbd, 0xdf, - 0xf3, 0x9c, 0xfb, 0x7e, 0x3b, 0xf2, 0xbb, 0x6d, 0x4f, 0x51, 0x2d, 0x7a, 0xb6, 0x33, 0xcb, 0x63, - 0x59, 0x0e, 0x77, 0xdf, 0x21, 0xdc, 0x3d, 0x4d, 0xd6, 0x55, 0xe4, 0x70, 0xf7, 0xe6, 0x64, 0x8f, - 0x69, 0xba, 0x33, 0xe3, 0x71, 0xf4, 0xdc, 0x98, 0x5d, 0xdc, 0x18, 0xdc, 0x98, 0x7c, 0xb8, 0x31, - 0xba, 0xdd, 0x02, 0xb4, 0xef, 0x5e, 0x97, 0xf6, 0x9d, 0xde, 0x1d, 0xec, 0xf3, 0x8b, 0xc9, 0x16, - 0x66, 0x15, 0xe2, 0xb1, 0x62, 0xc5, 0x52, 0x68, 0x2c, 0x42, 0x63, 0x11, 0xbb, 0xae, 0xa1, 0x5c, - 0x91, 0x13, 0x03, 0x85, 0x53, 0x85, 0x0a, 0xa6, 0x92, 0x3c, 0x1e, 0xdf, 0x47, 0x5a, 0x76, 0x27, - 0xb4, 0x5a, 0x59, 0x59, 0x8a, 0x14, 0x1a, 0x9c, 0x43, 0xfd, 0x30, 0x21, 0x75, 0x94, 0x84, 0x22, - 0x42, 0x11, 0xcb, 0x46, 0x11, 0x35, 0x7d, 0x33, 0x59, 0x1f, 0x4d, 0xe8, 0x20, 0x42, 0xe8, 0x20, - 0x74, 0x74, 0x8a, 0x1b, 0x0f, 0xe4, 0xb6, 0xdb, 0x9d, 0xbf, 0x9e, 0xc9, 0x80, 0x6b, 0xa0, 0x5d, - 0xdc, 0xf2, 0x23, 0x68, 0xe0, 0x91, 0x15, 0xb8, 0x31, 0x07, 0x3b, 0xa6, 0xe0, 0xc7, 0x38, 0x0c, - 0x19, 0x87, 0x23, 0xa3, 0xb0, 0x24, 0x03, 0x4f, 0x42, 0x30, 0x25, 0xef, 0x7f, 0x1a, 0xf4, 0x43, - 0x85, 0xfd, 0x51, 0xb9, 0x85, 0x90, 0xb8, 0x17, 0xbe, 0x77, 0x7f, 0xfa, 0xf7, 0xfd, 0x7b, 0xcd, - 0xa8, 0xe5, 0xb5, 0xab, 0x30, 0x3f, 0xbc, 0x3c, 0xbc, 0xef, 0x02, 0xed, 0x40, 0x3b, 0xd0, 0x5e, - 0x2e, 0x68, 0xa7, 0xcd, 0xa8, 0xe4, 0x8e, 0xa4, 0x76, 0xf2, 0xfa, 0xf1, 0xa9, 0x9d, 0x9c, 0xda, - 0x92, 0xd2, 0x66, 0xd4, 0xdc, 0x68, 0x94, 0x50, 0xce, 0x5a, 0x09, 0xe5, 0x15, 0x17, 0x2f, 0xde, - 0xe0, 0x13, 0x3a, 0xb7, 0x2f, 0xfa, 0xb3, 0xfc, 0xa4, 0x55, 0x2e, 0x58, 0xa5, 0x74, 0xeb, 0x5a, - 0x9b, 0xaf, 0x52, 0xca, 0x75, 0xad, 0x03, 0x27, 0x25, 0x0f, 0x57, 0x91, 0x87, 0x33, 0x40, 0xde, - 0x91, 0x87, 0x13, 0xb8, 0xce, 0xc8, 0xc3, 0xc8, 0xc3, 0x68, 0x08, 0x68, 0x08, 0x65, 0xd7, 0x10, - 0x90, 0x87, 0x63, 0xbd, 0x13, 0xf2, 0x30, 0xd0, 0x0e, 0xb4, 0x03, 0xed, 0x79, 0x82, 0x76, 0xe4, - 0x61, 0xc9, 0x1d, 0x89, 0x3c, 0xbc, 0x7e, 0x7c, 0xe4, 0xe1, 0xd4, 0x96, 0x14, 0x79, 0xd8, 0xdc, - 0x68, 0xc8, 0xc3, 0x79, 0x91, 0x87, 0xe9, 0xad, 0x97, 0x85, 0x65, 0x30, 0xda, 0x55, 0xef, 0x4b, - 0xcf, 0xfb, 0x3c, 0x7e, 0x64, 0x63, 0xf0, 0xc4, 0x9b, 0xba, 0x32, 0x29, 0xb4, 0x93, 0x8e, 0xe1, - 0x8b, 0xa4, 0x63, 0xf8, 0xa4, 0x63, 0x90, 0x8e, 0x91, 0xa2, 0xf3, 0x44, 0x3a, 0x06, 0xe9, 0x18, - 0x76, 0xd5, 0x11, 0xee, 0xdb, 0xb8, 0x6f, 0x5b, 0x3f, 0x10, 0x42, 0xac, 0x09, 0xf7, 0x12, 0x21, - 0x16, 0x21, 0xd6, 0x1e, 0x14, 0xc9, 0x7a, 0xea, 0x08, 0xb1, 0x22, 0x43, 0x22, 0xc4, 0x22, 0xc4, - 0x5a, 0x3c, 0x6e, 0xf3, 0x4b, 0x8a, 0x10, 0x9b, 0x8d, 0xb5, 0x45, 0x88, 0xcd, 0x30, 0x87, 0xce, - 0xb8, 0x10, 0xeb, 0x13, 0xa7, 0x4b, 0x9c, 0x2e, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, - 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, 0xba, 0x01, - 0xba, 0x01, 0xba, 0xc1, 0x4b, 0xba, 0x01, 0x01, 0x5c, 0x59, 0x58, 0x06, 0xbb, 0x01, 0x5c, 0x27, - 0x19, 0x0f, 0xe0, 0xd2, 0x53, 0x84, 0x44, 0x94, 0x20, 0xb1, 0x10, 0xae, 0x2a, 0x21, 0x5c, 0x06, - 0xdd, 0x2b, 0x42, 0xb8, 0xe4, 0x14, 0x1b, 0x9a, 0x2e, 0xa4, 0xa3, 0xc0, 0x20, 0xee, 0x22, 0xee, - 0x5a, 0x26, 0xa6, 0x34, 0x5d, 0x80, 0x94, 0xbe, 0x4c, 0x4a, 0x35, 0xdc, 0x02, 0x5a, 0xfe, 0xbd, - 0x34, 0xb3, 0x15, 0x25, 0x3e, 0x9c, 0x90, 0xe1, 0x1b, 0x6b, 0x32, 0xf8, 0x4a, 0x70, 0x81, 0x06, - 0x96, 0x60, 0x58, 0x65, 0x65, 0x3c, 0x59, 0xce, 0xf0, 0x05, 0x63, 0x7e, 0xf6, 0xd4, 0xef, 0x45, - 0xc7, 0x51, 0x94, 0x8c, 0xf1, 0x54, 0x3e, 0xfb, 0x41, 0xbd, 0xed, 0x0d, 0xb0, 0xbc, 0x57, 0x79, - 0xb7, 0x15, 0xf4, 0xdb, 0xed, 0x04, 0x5d, 0x13, 0x3f, 0xbb, 0x3f, 0xd5, 0x3f, 0x7c, 0x1e, 0xb6, - 0xbc, 0xd0, 0x6b, 0xbd, 0x7f, 0x1c, 0x7f, 0x54, 0x74, 0x22, 0x15, 0x77, 0xb8, 0xce, 0xce, 0x4e, - 0xb0, 0x8d, 0x37, 0x6e, 0xdf, 0x78, 0xbb, 0x75, 0xf3, 0xde, 0x7b, 0xf9, 0x27, 0x36, 0x4c, 0x66, - 0xd2, 0x49, 0x54, 0x98, 0xbc, 0x97, 0xdf, 0x73, 0xfd, 0xb7, 0x7f, 0xe1, 0x9b, 0x0f, 0xd3, 0x24, - 0xbc, 0x96, 0x17, 0xc6, 0xfb, 0xe2, 0x73, 0xd9, 0x15, 0xcf, 0x1f, 0xdb, 0x30, 0x33, 0xf1, 0x5c, - 0xe1, 0xd8, 0x7c, 0x38, 0x09, 0xdf, 0x4d, 0xce, 0x67, 0x93, 0xf2, 0x55, 0x65, 0x3e, 0xaa, 0xcc, - 0x37, 0x95, 0xf8, 0xa4, 0xde, 0xde, 0x8e, 0xeb, 0x1a, 0x26, 0xcd, 0xe2, 0x51, 0xcb, 0xd6, 0x49, - 0xa8, 0xad, 0x24, 0x76, 0xb4, 0x54, 0x1c, 0x2a, 0x75, 0xc7, 0x49, 0xd5, 0x41, 0xd2, 0x76, 0x84, - 0xb4, 0x1d, 0x1e, 0x2d, 0xc7, 0x46, 0x96, 0x0a, 0x24, 0xd5, 0x2e, 0x2a, 0x7e, 0xcb, 0x0b, 0x22, - 0xff, 0xd6, 0xf7, 0x42, 0xf5, 0xd6, 0xc5, 0x33, 0x63, 0xa8, 0xb5, 0x2c, 0xde, 0xa1, 0x65, 0xb1, - 0x4d, 0x8f, 0xbf, 0x4c, 0x2d, 0x8b, 0x95, 0x3d, 0xf4, 0xe7, 0xe2, 0x85, 0x3d, 0x27, 0xe8, 0xdf, - 0x7f, 0x4f, 0xbc, 0xb9, 0xb7, 0xf4, 0xc2, 0x15, 0x34, 0xc3, 0x12, 0x34, 0x3c, 0x60, 0x89, 0x30, - 0x03, 0x29, 0x6d, 0x50, 0x28, 0x6c, 0x40, 0xf2, 0x0a, 0x59, 0x27, 0x44, 0x57, 0xe2, 0xba, 0x5f, - 0x7a, 0x6a, 0xa5, 0xae, 0xef, 0x45, 0xe7, 0xd8, 0x92, 0x60, 0x72, 0x6d, 0xca, 0xbf, 0x4f, 0x40, - 0x7b, 0xee, 0xbd, 0x01, 0xb8, 0xa8, 0xd4, 0x5d, 0x7d, 0x8e, 0xdd, 0x9c, 0x0e, 0x81, 0xfd, 0xc5, - 0xfe, 0x62, 0x7f, 0xb1, 0xbf, 0xd8, 0x5f, 0xec, 0x6f, 0xf1, 0xec, 0x6f, 0x42, 0xec, 0x51, 0xd2, - 0xb6, 0x67, 0x8f, 0xa1, 0xb2, 0x4c, 0x3d, 0xbb, 0xe1, 0xf4, 0x07, 0x51, 0xd2, 0xbc, 0x15, 0x48, - 0x4b, 0xbe, 0xb4, 0xf4, 0x39, 0xe9, 0x35, 0x51, 0xda, 0x5e, 0x0c, 0x05, 0x3c, 0x86, 0x3e, 0x9a, - 0x2c, 0xb8, 0x4a, 0x29, 0x98, 0x4a, 0x59, 0xe0, 0xab, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0xe1, - 0x60, 0xe0, 0x60, 0xe0, 0x60, 0xe0, 0x60, 0xe0, 0x60, 0xe0, 0x60, 0x20, 0xf0, 0x61, 0x7f, 0xb1, - 0xbf, 0xd8, 0x5f, 0xec, 0x2f, 0xf6, 0x17, 0xfb, 0x8b, 0xc0, 0x87, 0xc0, 0x97, 0x2f, 0x81, 0x2f, - 0x41, 0x20, 0x7d, 0x6e, 0x23, 0x5c, 0x93, 0x44, 0x93, 0x6e, 0xbd, 0x18, 0x11, 0xfc, 0x61, 0x6e, - 0x24, 0x43, 0xf1, 0xb2, 0x31, 0x02, 0x1c, 0x93, 0x05, 0x36, 0x12, 0x21, 0x2b, 0x4b, 0x27, 0xb3, - 0x1c, 0x21, 0x9b, 0xc0, 0x1d, 0x9a, 0x61, 0x8a, 0x09, 0x85, 0xf3, 0x1d, 0x22, 0x63, 0x11, 0xce, - 0x15, 0xfd, 0x14, 0x2d, 0xff, 0x44, 0xc1, 0x2f, 0x51, 0xf4, 0x47, 0xd4, 0x88, 0x8f, 0x86, 0x8f, - 0xac, 0x45, 0x8e, 0x75, 0xfd, 0x0d, 0x09, 0x0e, 0xfc, 0xa4, 0x46, 0xf3, 0x52, 0x9f, 0x32, 0x5d, - 0x3f, 0x42, 0x64, 0xee, 0x0c, 0x51, 0xd3, 0x6b, 0x8b, 0x17, 0xb7, 0x61, 0xa7, 0x1f, 0x79, 0xa1, - 0xe3, 0xb7, 0x92, 0x1b, 0xa0, 0xe7, 0x8f, 0x62, 0x87, 0xb0, 0x43, 0x96, 0xed, 0x50, 0xab, 0x13, - 0x45, 0x5e, 0xcb, 0xf9, 0xdf, 0xbe, 0xdb, 0x52, 0xb0, 0x44, 0xbb, 0xbf, 0x26, 0xf8, 0x4c, 0xc3, - 0x8d, 0x22, 0x2f, 0x0c, 0x12, 0x1b, 0xa3, 0xca, 0x7f, 0x7e, 0xf9, 0xe5, 0xdb, 0x8e, 0x73, 0x74, - 0xfd, 0xcf, 0xb7, 0x5d, 0xe7, 0xe8, 0x7a, 0xf4, 0xdb, 0xdd, 0xe1, 0xbf, 0x46, 0xbf, 0xaf, 0x7e, - 0xdb, 0x71, 0x6a, 0x93, 0xdf, 0xef, 0x7f, 0xdb, 0x71, 0xf6, 0xaf, 0x5f, 0xff, 0xf9, 0xe7, 0xdb, - 0xd7, 0x7f, 0xef, 0x3d, 0x25, 0xff, 0xe0, 0xff, 0x54, 0xec, 0xe3, 0x4b, 0x76, 0x1d, 0xc7, 0x4d, - 0xd1, 0x2f, 0x6a, 0x7e, 0x5e, 0x6b, 0x54, 0x33, 0xc4, 0x19, 0x22, 0x9f, 0xd3, 0xf2, 0x7b, 0x91, - 0x1b, 0xc4, 0x80, 0x80, 0xe7, 0x4d, 0xbb, 0xfa, 0xf3, 0xf8, 0x81, 0xf8, 0x81, 0x89, 0x84, 0x04, - 0x35, 0x41, 0x21, 0xe1, 0x86, 0xc2, 0x0e, 0x97, 0xc7, 0x0e, 0x27, 0x0e, 0xa4, 0xf2, 0x7e, 0x0e, - 0x4c, 0xa2, 0xdb, 0x4e, 0x0a, 0x85, 0x6b, 0xd7, 0x7d, 0xdd, 0x80, 0x5c, 0xf1, 0xca, 0x6f, 0x7d, - 0xb1, 0x23, 0x20, 0x76, 0x14, 0x44, 0x8e, 0x84, 0xa2, 0x5b, 0x66, 0xfd, 0x8a, 0xb7, 0xef, 0x07, - 0xd1, 0xaf, 0x1a, 0xd7, 0xbb, 0xfb, 0x5c, 0xef, 0x6e, 0x69, 0x69, 0x07, 0xbb, 0x5c, 0xef, 0x9a, - 0x9a, 0xda, 0xea, 0x3e, 0xf7, 0xba, 0x62, 0xe3, 0x27, 0x89, 0xab, 0xf2, 0x03, 0x61, 0x83, 0xbc, - 0x6e, 0x40, 0x0c, 0x32, 0x06, 0x19, 0x83, 0x8c, 0x41, 0xc6, 0x20, 0x63, 0x90, 0x4b, 0x67, 0x90, - 0xf3, 0x15, 0x33, 0xb4, 0x5a, 0x6e, 0x24, 0x3b, 0x90, 0xec, 0x40, 0x44, 0x2d, 0x44, 0x2d, 0x38, - 0x34, 0x1c, 0x1a, 0x0e, 0x0d, 0x87, 0x86, 0x43, 0xc3, 0xa1, 0x11, 0xb5, 0x30, 0xc8, 0x18, 0x64, - 0x0c, 0x32, 0x06, 0x19, 0x83, 0x8c, 0x41, 0x46, 0xd4, 0xca, 0x9f, 0xa8, 0x55, 0x86, 0x8c, 0x38, - 0xa5, 0xf0, 0xc1, 0xad, 0x17, 0x53, 0xe3, 0xc6, 0x5d, 0xd0, 0x2e, 0x06, 0x23, 0x7e, 0x9c, 0x0c, - 0x68, 0x22, 0x72, 0xf2, 0x31, 0x70, 0xef, 0xfd, 0xa6, 0x13, 0x78, 0xfe, 0xdd, 0x8f, 0xef, 0x9d, - 0xd0, 0x19, 0x31, 0x01, 0xaf, 0x97, 0x20, 0x78, 0x72, 0xed, 0x10, 0xc4, 0x4f, 0x12, 0x3f, 0xf9, - 0xe2, 0x36, 0x4b, 0x2e, 0x3d, 0xaf, 0x1b, 0x88, 0x08, 0x4b, 0xc4, 0x68, 0x3b, 0x62, 0x74, 0xc2, - 0x50, 0xe0, 0xa5, 0x65, 0x4e, 0x14, 0x12, 0xac, 0xb8, 0x71, 0xf1, 0x6c, 0xf1, 0x6c, 0x93, 0x7a, - 0xb6, 0xaa, 0x0d, 0x65, 0x2b, 0x5d, 0xcf, 0x0b, 0x9d, 0xbb, 0xb0, 0xd3, 0xef, 0xea, 0x37, 0x71, - 0x9e, 0x19, 0xeb, 0x4d, 0x2a, 0x69, 0x8c, 0xba, 0x6d, 0x5e, 0xe9, 0xe4, 0x6c, 0xf7, 0x60, 0x89, - 0x1e, 0x30, 0x4d, 0xcf, 0x51, 0x71, 0xc7, 0x68, 0xb7, 0x67, 0x9d, 0xee, 0x97, 0xb6, 0xe7, 0xde, - 0x86, 0xde, 0xad, 0xce, 0x86, 0x99, 0xd8, 0x99, 0x43, 0x8d, 0x31, 0x1a, 0x63, 0x8f, 0xe9, 0xed, - 0xdb, 0xed, 0xd9, 0xff, 0x3d, 0x9f, 0xed, 0xde, 0xcc, 0xef, 0xc7, 0x51, 0x0f, 0x33, 0x7f, 0x32, - 0xea, 0x0c, 0x99, 0xe1, 0x86, 0xf5, 0x5d, 0xbd, 0x23, 0xfe, 0x0c, 0x76, 0x5a, 0xa6, 0x09, 0xa0, - 0x03, 0xe8, 0xca, 0x0a, 0x74, 0x7e, 0xd7, 0xd1, 0x5e, 0x9d, 0x29, 0xd4, 0x1d, 0x69, 0x8c, 0x31, - 0x7e, 0xa5, 0x6f, 0x5a, 0x4b, 0x2a, 0xd8, 0x98, 0xdb, 0xef, 0x3e, 0xd4, 0x1c, 0xb1, 0x46, 0xeb, - 0x2a, 0x59, 0xd9, 0x2f, 0x59, 0x05, 0xa5, 0x6c, 0xed, 0xb5, 0x03, 0x5a, 0xcd, 0xe2, 0xde, 0x1e, - 0x3f, 0xec, 0xf5, 0x3f, 0xbf, 0x7c, 0xdb, 0x75, 0xaa, 0xd7, 0x93, 0xff, 0xd8, 0xfb, 0xb6, 0xe3, - 0x54, 0xaf, 0x5f, 0x27, 0xc9, 0xf2, 0x96, 0xd1, 0x91, 0x85, 0x0e, 0xa5, 0x99, 0x3d, 0x78, 0x50, - 0xb2, 0x3d, 0xe8, 0x3a, 0xb7, 0xc7, 0xce, 0xa7, 0xeb, 0xbf, 0x77, 0xdf, 0xd4, 0x9e, 0xde, 0xbd, - 0xfe, 0xfb, 0xf0, 0x69, 0xf1, 0x0f, 0xff, 0x59, 0xf5, 0x63, 0xbb, 0x6f, 0x0e, 0x9f, 0xde, 0xad, - 0xf9, 0x9b, 0x83, 0xa7, 0x77, 0x31, 0xc7, 0xd8, 0x7f, 0xfa, 0x65, 0xe9, 0x47, 0x07, 0x7f, 0x5e, - 0x5d, 0xf7, 0x81, 0xda, 0x9a, 0x0f, 0xec, 0xad, 0xfb, 0xc0, 0xde, 0x9a, 0x0f, 0xac, 0xfd, 0x4a, - 0xd5, 0x35, 0x1f, 0xd8, 0x7f, 0xfa, 0x67, 0xe9, 0xe7, 0x7f, 0x59, 0xfd, 0xa3, 0x07, 0x4f, 0xaf, - 0xff, 0x59, 0xf7, 0x77, 0x87, 0x4f, 0xff, 0xbc, 0x7b, 0xfd, 0x7a, 0xfb, 0x97, 0xdd, 0xc1, 0x41, - 0xfd, 0x75, 0x74, 0x76, 0x77, 0xaf, 0x97, 0x8e, 0xf4, 0xe8, 0x88, 0xa6, 0x7f, 0x30, 0x5f, 0xd9, - 0x7d, 0x6e, 0x69, 0x1b, 0xf2, 0xaf, 0xbd, 0x87, 0x58, 0xf7, 0x37, 0x89, 0x02, 0xae, 0x93, 0x4f, - 0x56, 0x92, 0x80, 0x1a, 0x45, 0x97, 0x42, 0xcf, 0x95, 0x20, 0x5c, 0x06, 0x51, 0x31, 0xf3, 0xe1, - 0x32, 0xea, 0x9a, 0x86, 0x8e, 0x96, 0x31, 0xab, 0x61, 0x4c, 0x04, 0x8a, 0xd1, 0x9a, 0x67, 0x00, - 0x2c, 0x92, 0x65, 0x6d, 0x2c, 0xcd, 0x68, 0x92, 0xec, 0x8d, 0xa5, 0xb9, 0x54, 0x85, 0x8a, 0x2a, - 0x50, 0x01, 0x54, 0xbc, 0xf8, 0x0d, 0xb9, 0x7f, 0x40, 0x96, 0x43, 0x96, 0xcb, 0xb5, 0x2c, 0xc7, - 0xfd, 0x03, 0xf7, 0x0f, 0x00, 0x1d, 0x40, 0x57, 0x78, 0xa0, 0xe3, 0xfe, 0x61, 0xbd, 0xf6, 0xcb, - 0xfd, 0x03, 0xf7, 0x0f, 0x69, 0xef, 0x41, 0xee, 0x1f, 0xb8, 0x7f, 0xe0, 0xfe, 0x41, 0xc7, 0xc6, - 0x6e, 0x71, 0xff, 0x30, 0x51, 0xdb, 0xcc, 0xdd, 0x3f, 0x24, 0xc8, 0x8d, 0x51, 0x50, 0x14, 0x45, - 0xc3, 0xa4, 0xff, 0xe5, 0x3d, 0x26, 0xcf, 0x64, 0x50, 0xea, 0x7c, 0xa6, 0xd5, 0xf1, 0x4c, 0xab, - 0xd3, 0x99, 0x5a, 0x87, 0xb3, 0xec, 0x24, 0x60, 0x25, 0xdd, 0x7f, 0x95, 0x44, 0x9a, 0xf3, 0xba, - 0x44, 0xa5, 0xd1, 0xd8, 0x67, 0xe3, 0xa1, 0x1b, 0x09, 0x54, 0xf2, 0xfc, 0xe6, 0x7b, 0xad, 0xcd, - 0x78, 0x32, 0x90, 0xa1, 0x75, 0x17, 0xba, 0x4d, 0xef, 0xb6, 0xdf, 0x76, 0x42, 0xaf, 0x17, 0xb9, - 0x61, 0x14, 0x3f, 0x31, 0x6b, 0xe9, 0x93, 0xe4, 0x63, 0x91, 0x8f, 0x35, 0xfa, 0x41, 0xea, 0xd9, - 0x93, 0x6d, 0x95, 0x06, 0x8d, 0x48, 0x5e, 0xfa, 0x2b, 0x70, 0xbf, 0xb7, 0xbd, 0x96, 0x46, 0xa9, - 0xaf, 0xf1, 0x00, 0x84, 0x46, 0x98, 0x53, 0x2f, 0xb9, 0xef, 0x4c, 0x25, 0x34, 0xe2, 0x7b, 0xa7, - 0xd3, 0xf6, 0xdc, 0x40, 0x27, 0x34, 0x62, 0x37, 0x03, 0xe1, 0x0c, 0x3f, 0xbc, 0x76, 0xd7, 0x0b, - 0x9d, 0x4e, 0xd0, 0x7e, 0x54, 0x3f, 0xe6, 0xb3, 0x83, 0x70, 0xd4, 0x39, 0xea, 0x1c, 0xf5, 0x2c, - 0x1e, 0xf5, 0xb1, 0x23, 0xe2, 0x44, 0xfe, 0xbd, 0x46, 0x00, 0xd3, 0xdc, 0x28, 0x1c, 0x76, 0x0e, - 0x7b, 0xc1, 0x0e, 0x7b, 0xdf, 0x0f, 0xa2, 0xdd, 0x03, 0x8d, 0xb3, 0x7e, 0x40, 0x89, 0x30, 0xb5, - 0x61, 0x34, 0xfb, 0xfe, 0x4e, 0xc7, 0xa1, 0x44, 0xd8, 0xda, 0xa9, 0xad, 0xed, 0x1c, 0x1d, 0x50, - 0x23, 0x2c, 0x0d, 0xe3, 0xdb, 0x8b, 0xdc, 0xb6, 0x37, 0xaa, 0x51, 0xd5, 0xd3, 0xb4, 0xc0, 0xcb, - 0x43, 0x61, 0x86, 0x31, 0xc3, 0x05, 0x33, 0xc3, 0x2d, 0xaf, 0xe9, 0xdf, 0xbb, 0xed, 0x83, 0x9a, - 0x0e, 0xeb, 0xae, 0x2a, 0x7c, 0x76, 0x09, 0xdf, 0xaa, 0x65, 0xb5, 0xe7, 0x55, 0xec, 0xb9, 0x29, - 0x7b, 0xbe, 0x57, 0xc0, 0xa9, 0xa5, 0xe0, 0xe7, 0x2c, 0x44, 0x9b, 0xbe, 0x6f, 0x5e, 0xbc, 0x5e, - 0xa4, 0x7f, 0x0d, 0xfd, 0x6b, 0xcc, 0x51, 0x0f, 0x2e, 0xb1, 0xb8, 0xc4, 0x82, 0x65, 0xa3, 0x6c, - 0xaf, 0x40, 0x66, 0x2e, 0xb1, 0x38, 0xea, 0x1c, 0x75, 0x8e, 0xba, 0xa5, 0xa3, 0xce, 0x25, 0x16, - 0x87, 0x9d, 0xc3, 0xbe, 0x69, 0xbd, 0xb9, 0xc4, 0x52, 0x7d, 0x71, 0x2e, 0xb1, 0x8c, 0x89, 0x5e, - 0x5c, 0x62, 0x65, 0x52, 0xf7, 0xe2, 0x12, 0x0b, 0x33, 0x8c, 0x19, 0x36, 0x62, 0x86, 0xb9, 0xc4, - 0x4a, 0xdd, 0x9e, 0x73, 0x89, 0x65, 0xcc, 0x9e, 0x73, 0x89, 0x95, 0x3d, 0x63, 0x9e, 0xf3, 0x4b, - 0xac, 0x32, 0xf4, 0xab, 0x4b, 0x98, 0x18, 0xb8, 0xf5, 0x62, 0x02, 0xe8, 0x6f, 0xe3, 0xc1, 0x2e, - 0xc6, 0x63, 0x19, 0x48, 0x81, 0x1c, 0xf5, 0xd5, 0xeb, 0x79, 0x6d, 0x6f, 0x78, 0xca, 0x9c, 0x4e, - 0x77, 0xf0, 0xaf, 0x04, 0x2d, 0xea, 0xd6, 0x0d, 0x40, 0x42, 0x24, 0x09, 0x91, 0xa3, 0x1f, 0x24, - 0x21, 0x92, 0xbb, 0xe4, 0x34, 0x0c, 0x5c, 0xe2, 0xbb, 0x64, 0xb7, 0xf5, 0xe0, 0x85, 0x91, 0xdf, - 0xf3, 0x1c, 0x3f, 0x18, 0x90, 0x8e, 0x87, 0x89, 0x0b, 0xab, 0xee, 0x08, 0xaf, 0x1f, 0x32, 0x69, - 0x09, 0xcf, 0x51, 0xd3, 0xd2, 0xc1, 0x98, 0xb7, 0x6e, 0xbb, 0x87, 0x43, 0x8d, 0x43, 0xcd, 0x25, - 0xd6, 0x32, 0xfa, 0x67, 0xe1, 0x12, 0xcb, 0x6d, 0xff, 0xe5, 0x3e, 0xf6, 0x9c, 0x66, 0xe7, 0xbe, - 0xeb, 0x86, 0x9e, 0x73, 0xaf, 0x13, 0x9d, 0xb2, 0x62, 0x2c, 0x80, 0x03, 0xe0, 0x00, 0x38, 0x8a, - 0x08, 0x1c, 0xa3, 0x50, 0x34, 0xc7, 0xf5, 0xef, 0xba, 0xba, 0xf1, 0x6c, 0xa3, 0x41, 0x80, 0x0a, - 0xa0, 0x02, 0xa8, 0x28, 0x24, 0x54, 0xfc, 0x8c, 0xbc, 0x30, 0x70, 0xdb, 0x53, 0x66, 0x30, 0xf4, - 0x2a, 0x42, 0xc7, 0xd7, 0x89, 0x84, 0x5d, 0x3f, 0xa6, 0x3a, 0x90, 0x0c, 0xb6, 0x23, 0x38, 0x02, - 0x8e, 0x80, 0x23, 0x99, 0xc4, 0x11, 0xff, 0x2e, 0xe8, 0x84, 0x9e, 0xe3, 0xf6, 0x9c, 0xae, 0x1b, - 0xfd, 0x70, 0xda, 0x5e, 0x70, 0x37, 0x94, 0xb8, 0x15, 0x21, 0x64, 0xf5, 0x70, 0xd0, 0x10, 0xe0, - 0x03, 0xf8, 0x28, 0x30, 0x7c, 0x04, 0xde, 0xcf, 0xc8, 0xf9, 0xd1, 0xe9, 0x3a, 0xfe, 0x5d, 0xd7, - 0xb9, 0xf7, 0xa2, 0xd0, 0x6f, 0x6a, 0x63, 0xc8, 0xaa, 0x31, 0x01, 0x12, 0x80, 0x04, 0x20, 0xc9, - 0x0d, 0x90, 0xe4, 0x2b, 0x5c, 0x61, 0xcd, 0x45, 0x36, 0xa9, 0xb7, 0xa4, 0xde, 0x9a, 0xc3, 0x2a, - 0xae, 0x4b, 0xb7, 0xb8, 0x2e, 0xc5, 0xf4, 0x63, 0xfa, 0xcb, 0xeb, 0x43, 0x70, 0x5d, 0x0a, 0x70, - 0x00, 0x1c, 0x00, 0x47, 0x62, 0xe0, 0xe0, 0xba, 0x14, 0xa8, 0x00, 0x2a, 0x80, 0x8a, 0x38, 0x50, - 0xc1, 0x75, 0x29, 0x38, 0x02, 0x8e, 0x80, 0x23, 0x9a, 0x38, 0xc2, 0x75, 0x29, 0xf0, 0x01, 0x7c, - 0x00, 0x1f, 0x7a, 0xf0, 0xc1, 0x75, 0x29, 0x40, 0x02, 0x90, 0x00, 0x24, 0x2a, 0x3f, 0x99, 0xf9, - 0xeb, 0xd2, 0x32, 0x24, 0x79, 0xab, 0xe5, 0x3c, 0x6f, 0xbd, 0x98, 0xeb, 0x7d, 0x31, 0x18, 0xf3, - 0x72, 0x32, 0xe4, 0xf9, 0x78, 0x44, 0x03, 0x19, 0xdf, 0xf1, 0x6e, 0x97, 0x13, 0xdd, 0x2a, 0x27, - 0xce, 0xe6, 0xae, 0x92, 0xcd, 0x2d, 0x0e, 0xc5, 0x96, 0xb2, 0xb9, 0xdd, 0x5e, 0xf2, 0xc8, 0x04, - 0xb7, 0x97, 0x30, 0x2c, 0x61, 0x87, 0x2c, 0x6e, 0xc2, 0x12, 0x14, 0x6d, 0xfe, 0xcc, 0xae, 0x73, - 0x82, 0xfe, 0xfd, 0x77, 0x2f, 0x4c, 0xb2, 0x64, 0xe3, 0x0d, 0x78, 0x98, 0xe0, 0x23, 0x6a, 0x95, - 0x94, 0x14, 0x48, 0x8c, 0x4e, 0xe5, 0x24, 0xcd, 0x32, 0x7d, 0xba, 0xe5, 0x7c, 0x24, 0xca, 0xf8, - 0x28, 0x54, 0x46, 0xd2, 0xaa, 0x88, 0x24, 0x35, 0x65, 0xb5, 0xea, 0x51, 0xed, 0xe8, 0xe0, 0xb0, - 0x7a, 0xb4, 0x9f, 0xe2, 0xdc, 0x19, 0x22, 0xad, 0xd7, 0x16, 0xc3, 0xe2, 0x92, 0x6b, 0xf6, 0xf3, - 0x45, 0x6a, 0x12, 0x48, 0xf3, 0xd8, 0x21, 0xec, 0x90, 0x98, 0x1d, 0x6a, 0x75, 0xa2, 0xc8, 0x6b, - 0x39, 0xff, 0xdb, 0x77, 0x5b, 0x0a, 0x96, 0x68, 0xf7, 0xd7, 0x04, 0x9f, 0x69, 0xb8, 0x51, 0xe4, - 0x85, 0x41, 0x62, 0x63, 0x54, 0xf9, 0xcf, 0x2f, 0xbf, 0x7c, 0xdb, 0x71, 0x8e, 0xae, 0xff, 0xf9, - 0xb6, 0xeb, 0x1c, 0x5d, 0x8f, 0x7e, 0xbb, 0x3b, 0xfc, 0xd7, 0xe8, 0xf7, 0xd5, 0x6f, 0x3b, 0x4e, - 0x6d, 0xf2, 0xfb, 0xfd, 0x6f, 0x3b, 0xce, 0xfe, 0xf5, 0xeb, 0x3f, 0xff, 0x7c, 0xfb, 0xfa, 0xef, - 0xbd, 0xa7, 0xe4, 0x1f, 0xfc, 0x9f, 0x4a, 0x26, 0xf1, 0x25, 0xea, 0x44, 0x6e, 0x7b, 0xa8, 0xc4, - 0x2b, 0x50, 0xdc, 0xd9, 0x0f, 0x83, 0x31, 0x60, 0x8c, 0x65, 0x8c, 0xe9, 0xfb, 0x41, 0xb4, 0x57, - 0x85, 0xe8, 0x42, 0x74, 0x21, 0xba, 0xb9, 0x27, 0xba, 0x63, 0x5b, 0x32, 0x44, 0x43, 0x4f, 0xdd, - 0x16, 0x4d, 0x3e, 0x8f, 0x39, 0xc2, 0x1c, 0x61, 0x8e, 0x30, 0x47, 0x98, 0x23, 0xcc, 0x51, 0xb2, - 0x9f, 0x48, 0xed, 0x82, 0x2d, 0xc6, 0x25, 0xa2, 0xda, 0xe5, 0x57, 0xbf, 0xe7, 0x39, 0xf7, 0xfd, - 0x76, 0xe4, 0x77, 0xdb, 0x5e, 0x4c, 0x57, 0xef, 0x19, 0xd4, 0x96, 0x3f, 0x4b, 0x91, 0x63, 0xae, - 0xc5, 0x46, 0x3f, 0x48, 0x91, 0x63, 0x38, 0x5a, 0x1a, 0x1c, 0x2d, 0x37, 0x0d, 0x73, 0x89, 0x2e, - 0x4b, 0x32, 0x02, 0xd1, 0x65, 0x02, 0x6c, 0x8a, 0xe8, 0x32, 0x53, 0xa8, 0x63, 0x3c, 0xba, 0x6c, - 0x99, 0x6b, 0xa5, 0x50, 0x87, 0xc3, 0xfb, 0x9e, 0x20, 0xb3, 0xf0, 0x19, 0x1f, 0xe3, 0x1f, 0x79, - 0xec, 0x39, 0xf6, 0x5c, 0xd7, 0x9e, 0x27, 0x24, 0x9e, 0x7a, 0x04, 0x54, 0x71, 0xe3, 0x62, 0x8d, - 0xb1, 0xc6, 0x49, 0xad, 0x71, 0xd2, 0x83, 0x30, 0xfd, 0xa0, 0xdb, 0x6e, 0x77, 0xfe, 0x7a, 0x36, - 0x1e, 0x6e, 0x4f, 0x7d, 0xdd, 0x9e, 0xcb, 0x4a, 0x2c, 0x0e, 0xa9, 0x38, 0xed, 0x9a, 0x24, 0x58, - 0x4a, 0x21, 0x53, 0x3d, 0x86, 0x12, 0xc7, 0x51, 0xee, 0x58, 0x4a, 0x1d, 0x4f, 0xf1, 0x63, 0x2a, - 0x7e, 0x5c, 0x45, 0x8f, 0xad, 0xda, 0xf1, 0xd5, 0x10, 0x83, 0xf5, 0xc8, 0xb5, 0x20, 0xc9, 0xd6, - 0x24, 0xdb, 0xea, 0x13, 0xa7, 0xa2, 0xa0, 0xdf, 0xbb, 0x3f, 0xfd, 0xfb, 0xfe, 0x7d, 0xc2, 0x78, - 0x94, 0xb5, 0xb3, 0x36, 0x3f, 0x9c, 0x3e, 0x7c, 0xed, 0x02, 0x5d, 0x40, 0x17, 0xd0, 0x95, 0x6c, - 0xbf, 0x24, 0xbe, 0x16, 0x5d, 0x77, 0x7a, 0x0e, 0x35, 0x86, 0xd0, 0x6b, 0xfc, 0x3b, 0xf9, 0xa5, - 0xb7, 0x5f, 0xb7, 0xa4, 0x1a, 0x01, 0x0b, 0xc1, 0xca, 0xd2, 0x70, 0x42, 0xdd, 0x6b, 0xa7, 0xe3, - 0x09, 0x76, 0xb1, 0xd5, 0xdc, 0xce, 0xf3, 0x4b, 0x20, 0xd0, 0x30, 0xd8, 0xf4, 0x12, 0xe8, 0x5e, - 0xe3, 0x5a, 0x59, 0x8b, 0x57, 0xe9, 0x7c, 0xfa, 0xda, 0x16, 0x81, 0x31, 0xea, 0xea, 0x29, 0xaa, - 0x89, 0x22, 0xaa, 0xa2, 0x37, 0xf8, 0xeb, 0x24, 0xd2, 0xa2, 0x82, 0xf4, 0x9a, 0x40, 0x42, 0x4b, - 0x56, 0xfa, 0x77, 0xc9, 0xc0, 0x24, 0x29, 0x01, 0x2c, 0xa6, 0xe5, 0x54, 0xd1, 0x72, 0xd0, 0x72, - 0xd0, 0x72, 0x70, 0x88, 0x70, 0x88, 0x70, 0x88, 0xd0, 0x72, 0xd0, 0x72, 0x80, 0x2e, 0xa0, 0x0b, - 0x2d, 0x07, 0x2d, 0x07, 0x2d, 0x07, 0x2d, 0x07, 0x2d, 0x07, 0x2d, 0xc7, 0xaa, 0x96, 0x93, 0xa0, - 0xfe, 0x98, 0x82, 0x94, 0x93, 0xfb, 0x28, 0x3a, 0x2f, 0x61, 0x4c, 0xd7, 0xda, 0x7a, 0x65, 0x5f, - 0x7a, 0xde, 0xe7, 0xf1, 0xd0, 0x8d, 0xc1, 0xc8, 0x37, 0xf5, 0xd8, 0x34, 0x40, 0x26, 0x3a, 0xcf, - 0x57, 0x8a, 0xce, 0xf3, 0x89, 0xce, 0x23, 0x3a, 0x4f, 0xf9, 0xc4, 0x12, 0x9d, 0x27, 0xed, 0x87, - 0xa1, 0xe8, 0x1a, 0xf2, 0xaf, 0x32, 0xaa, 0xe8, 0x22, 0x85, 0x20, 0x85, 0x20, 0x85, 0x20, 0x85, - 0x20, 0x85, 0x20, 0x85, 0x20, 0x85, 0x20, 0x85, 0x20, 0x85, 0x18, 0x71, 0xf3, 0x7d, 0xc2, 0x5a, - 0x08, 0x6b, 0xc1, 0x09, 0xc2, 0x09, 0xc2, 0x09, 0xc2, 0x09, 0xc2, 0x09, 0xc2, 0x09, 0xc2, 0x09, - 0xc2, 0x09, 0xc2, 0x09, 0xc2, 0x09, 0x2a, 0x9d, 0x13, 0xc4, 0x7d, 0xf0, 0xc6, 0x39, 0x32, 0x73, - 0x1f, 0x7c, 0x62, 0xf9, 0x3e, 0x38, 0x99, 0x8f, 0xa9, 0xe4, 0x5b, 0x2a, 0xdf, 0x08, 0x57, 0xb9, - 0x11, 0x96, 0x24, 0xa0, 0xd4, 0x5f, 0xa3, 0xfe, 0x1a, 0x72, 0x4a, 0xd1, 0xe4, 0x14, 0xea, 0xaf, - 0x65, 0x9a, 0x29, 0x94, 0xa1, 0xb1, 0x67, 0xe2, 0x12, 0xbf, 0xc9, 0x38, 0x91, 0x72, 0x45, 0xe3, - 0x57, 0x09, 0x66, 0x29, 0xee, 0xec, 0xc4, 0x9e, 0x95, 0xca, 0x8b, 0xcd, 0x44, 0x57, 0xbf, 0xfa, - 0xea, 0x37, 0x5d, 0x7e, 0x8f, 0x15, 0xef, 0x50, 0x09, 0x3c, 0xff, 0xee, 0xc7, 0xf7, 0x4e, 0xb8, - 0x5e, 0x19, 0x9d, 0x1e, 0xf8, 0xe7, 0x1f, 0x5d, 0x33, 0x17, 0x2f, 0x13, 0xb6, 0x8d, 0xd6, 0x29, - 0x8e, 0x15, 0x8a, 0x6f, 0x6d, 0xe2, 0x5a, 0x95, 0xc4, 0xd6, 0x23, 0xb1, 0x95, 0x48, 0x64, 0x0d, - 0x92, 0xed, 0xbe, 0x4d, 0x84, 0x68, 0xba, 0x66, 0xf1, 0x0b, 0x6f, 0x4f, 0x3f, 0x41, 0xb9, 0x6d, - 0xca, 0x6d, 0x8f, 0x7e, 0xd0, 0xbd, 0xf5, 0x9d, 0x9e, 0x7b, 0xeb, 0xab, 0x34, 0xa3, 0x9d, 0x7e, - 0x94, 0x30, 0x60, 0x9c, 0x3e, 0x3b, 0x4e, 0xdf, 0x64, 0xcf, 0xa9, 0x7b, 0x7d, 0xd3, 0x11, 0x08, - 0x05, 0xc6, 0x6d, 0xcb, 0x94, 0xdb, 0xa6, 0x5e, 0xdc, 0xa1, 0xd5, 0x92, 0xba, 0x01, 0x7f, 0x1e, - 0x4a, 0xef, 0xe6, 0x7a, 0x97, 0x9b, 0x6b, 0x6e, 0xae, 0x55, 0x07, 0xb3, 0x7b, 0x73, 0xad, 0x7a, - 0xec, 0xa6, 0x03, 0x28, 0xa6, 0xa6, 0xac, 0xdd, 0x76, 0x4a, 0xa9, 0x2a, 0xc2, 0x07, 0x51, 0xec, - 0x40, 0x4a, 0x1e, 0x4c, 0xf9, 0x03, 0x2a, 0x7d, 0x50, 0x8d, 0x1d, 0x58, 0x63, 0x07, 0xd7, 0xc8, - 0x01, 0xd6, 0x3b, 0xc8, 0x9a, 0x07, 0x5a, 0xec, 0x60, 0x4f, 0x07, 0xf2, 0xda, 0xfe, 0x9d, 0xff, - 0xbd, 0xed, 0x8d, 0x3b, 0x41, 0x3a, 0xdd, 0x4e, 0xdb, 0x6f, 0x3e, 0xca, 0x6d, 0x96, 0xe9, 0x85, - 0xc4, 0xea, 0xe7, 0xbc, 0xc9, 0x64, 0xe4, 0x81, 0x14, 0x30, 0x98, 0x00, 0x08, 0x73, 0x40, 0x61, - 0x0a, 0x30, 0x8c, 0x03, 0x87, 0x71, 0x00, 0x31, 0x0a, 0x24, 0x32, 0x80, 0x22, 0x04, 0x2c, 0xd3, - 0x37, 0xd5, 0x8e, 0x79, 0x5b, 0xbb, 0x5f, 0xdb, 0x9e, 0x7b, 0x1b, 0x7a, 0xb7, 0x92, 0x1b, 0x76, - 0xc2, 0x07, 0x0e, 0x05, 0xc7, 0x6c, 0x4c, 0x25, 0xef, 0xa6, 0x13, 0x76, 0x3b, 0xed, 0x77, 0x61, - 0xa7, 0x1f, 0xf9, 0xc1, 0xdd, 0x18, 0xb9, 0xa6, 0x7f, 0x3c, 0xfa, 0x4f, 0xa7, 0xe5, 0xdd, 0xfa, - 0x81, 0x1f, 0xf9, 0x9d, 0xa0, 0xb7, 0xfe, 0xaf, 0xa6, 0x7f, 0x33, 0xd4, 0xc2, 0x5f, 0x65, 0x63, - 0xd7, 0x48, 0x84, 0x91, 0x85, 0x5e, 0xd3, 0xf3, 0x1f, 0x3c, 0x79, 0xb3, 0x31, 0x19, 0x58, 0x68, - 0x57, 0x0b, 0x95, 0xe3, 0xc3, 0xfe, 0x60, 0x7f, 0xb0, 0x3f, 0x39, 0xb5, 0x3f, 0xfa, 0xe5, 0x04, - 0xd7, 0xda, 0x9f, 0xdd, 0x02, 0x41, 0x7a, 0xcf, 0x0b, 0x5a, 0xf2, 0x78, 0x3e, 0x1c, 0x15, 0x30, - 0x07, 0xcc, 0x01, 0x73, 0xc0, 0x1c, 0x30, 0xb7, 0x09, 0xe6, 0xce, 0xbd, 0x64, 0xae, 0xc7, 0x2c, - 0xa0, 0x0f, 0x47, 0x06, 0x7c, 0x01, 0x5f, 0xc0, 0xb7, 0x54, 0xe0, 0xdb, 0xf7, 0x83, 0xe8, 0x57, - 0x03, 0xd0, 0xbb, 0x2f, 0x38, 0xa4, 0x4c, 0xb2, 0xe3, 0xe2, 0x2f, 0xd9, 0xe3, 0xb4, 0x25, 0x9d, - 0x0c, 0x69, 0x18, 0x55, 0x97, 0x86, 0x17, 0x4e, 0x96, 0x5c, 0x1a, 0xdf, 0x40, 0xc2, 0x9e, 0xa1, - 0xd3, 0x36, 0xbf, 0xa4, 0xee, 0xcf, 0xdc, 0x2f, 0x69, 0x75, 0x7f, 0x3f, 0xc7, 0x8b, 0xfa, 0x2a, - 0x9b, 0xa3, 0x5d, 0x67, 0x85, 0x5a, 0xa6, 0x7a, 0x87, 0xa9, 0x99, 0xf5, 0xb9, 0x4c, 0x72, 0x37, - 0x86, 0xaa, 0x4f, 0x23, 0xc1, 0xa7, 0xbf, 0xdb, 0x9e, 0x06, 0x7a, 0x4e, 0x7f, 0xb7, 0x3d, 0x8d, - 0x13, 0x52, 0xaa, 0x8d, 0x23, 0x37, 0xc7, 0x1a, 0xf3, 0xab, 0x58, 0x4b, 0x67, 0x3d, 0xcb, 0x57, - 0xa8, 0xad, 0xb3, 0xd6, 0xb1, 0x92, 0x8a, 0xda, 0xa8, 0x12, 0xb5, 0x91, 0x01, 0xca, 0x4e, 0xd4, - 0x46, 0xfc, 0x37, 0x22, 0x6a, 0x03, 0x5f, 0x1f, 0x5f, 0x1f, 0x5f, 0x3f, 0x87, 0xbe, 0x3e, 0x51, - 0x1b, 0x44, 0x6d, 0xc4, 0xde, 0x2c, 0x44, 0x6d, 0x60, 0x7f, 0xb0, 0x3f, 0xd8, 0x1f, 0xc1, 0xfd, - 0xca, 0x45, 0x5f, 0x3c, 0xbf, 0x9f, 0xa8, 0x0d, 0xc0, 0x1c, 0x30, 0x07, 0xcc, 0x01, 0xf3, 0x62, - 0x80, 0x39, 0x51, 0x1b, 0x80, 0x2f, 0xe0, 0x0b, 0xf8, 0xca, 0xed, 0x57, 0xa2, 0x36, 0x04, 0x37, - 0x24, 0x51, 0x1b, 0xeb, 0xc7, 0x27, 0x6a, 0x23, 0xb5, 0x25, 0x25, 0x6a, 0xc3, 0xc0, 0x68, 0x44, - 0x6d, 0xe4, 0x23, 0x6a, 0x43, 0xa1, 0x98, 0xb7, 0xdc, 0x14, 0xdb, 0xad, 0xef, 0x21, 0xb4, 0x18, - 0xf2, 0x8b, 0x50, 0xd1, 0x8a, 0x5d, 0x59, 0x2c, 0x17, 0x79, 0x36, 0x7e, 0xe4, 0xcd, 0xf1, 0xad, - 0x7f, 0xe9, 0xde, 0xfa, 0x37, 0xc7, 0xad, 0x56, 0x8c, 0x5a, 0x99, 0x72, 0x6b, 0xa4, 0xb0, 0x3e, - 0xd3, 0x62, 0x5c, 0xce, 0xf8, 0x4d, 0x74, 0xab, 0x17, 0xcd, 0x0d, 0x47, 0xef, 0x1d, 0x2a, 0x18, - 0xa5, 0xe4, 0x37, 0xe5, 0xb5, 0xf7, 0x8e, 0xfe, 0x0d, 0xb6, 0xc4, 0x8d, 0xf5, 0xf4, 0x86, 0xfa, - 0xed, 0xdb, 0x71, 0x78, 0xe1, 0xf6, 0xfc, 0xc9, 0xce, 0x32, 0xa2, 0x75, 0xbb, 0xed, 0x47, 0xdd, - 0x58, 0xa3, 0x67, 0x40, 0x9b, 0x1d, 0x8d, 0x8a, 0x6c, 0x95, 0x71, 0x94, 0x01, 0x80, 0xa6, 0x00, - 0x68, 0xc3, 0x89, 0xa3, 0x26, 0x9b, 0xda, 0xc6, 0xa3, 0x26, 0x9b, 0xbd, 0x23, 0x2a, 0x7d, 0x54, - 0x8d, 0x1d, 0x59, 0x63, 0x47, 0xd7, 0xcc, 0x11, 0xce, 0x86, 0x6f, 0x2c, 0x16, 0xdf, 0xdb, 0x1a, - 0x5d, 0x92, 0x3b, 0xde, 0xcf, 0x6e, 0x27, 0x8c, 0x8c, 0x85, 0xf7, 0xae, 0x7e, 0x8c, 0xfc, 0x45, - 0xff, 0x45, 0xfd, 0xff, 0xd6, 0x3f, 0x5c, 0xdd, 0x5c, 0x9c, 0x7f, 0xb9, 0xaa, 0x73, 0xe5, 0x94, - 0x25, 0x1c, 0x32, 0x85, 0x47, 0xc6, 0x71, 0xc9, 0x38, 0x3e, 0x99, 0xc5, 0x29, 0x59, 0x75, 0x32, - 0xfb, 0x97, 0x4e, 0x13, 0xa4, 0x19, 0x07, 0xd7, 0x46, 0x83, 0x07, 0x19, 0xb8, 0xfd, 0xaf, 0x09, - 0x8e, 0x59, 0x0f, 0xfa, 0xf7, 0x83, 0xc9, 0x78, 0x2a, 0x50, 0x44, 0xc1, 0x64, 0x19, 0xfc, 0x7b, - 0x2b, 0x76, 0x65, 0xfe, 0x31, 0xd8, 0x15, 0xec, 0x0a, 0x76, 0x05, 0xbb, 0x82, 0x5d, 0x29, 0x9c, - 0x5d, 0x31, 0xec, 0xa7, 0x18, 0xf1, 0x4f, 0x00, 0x7a, 0x80, 0x1e, 0xa0, 0xcf, 0x0b, 0xd0, 0x93, - 0x7f, 0x28, 0x9a, 0x7f, 0x28, 0xb4, 0xde, 0xa7, 0x7e, 0x2f, 0x3a, 0x8e, 0xa2, 0x50, 0x76, 0xcd, - 0x3f, 0xfb, 0x41, 0xbd, 0xed, 0x0d, 0x8e, 0x4c, 0xaf, 0xf2, 0x6e, 0x2b, 0xe8, 0xb7, 0xdb, 0x82, - 0x2b, 0xf4, 0xd9, 0xfd, 0x69, 0x6e, 0xf0, 0xf3, 0xb0, 0xe5, 0x85, 0x5e, 0xeb, 0xfd, 0xa3, 0x3c, - 0x0e, 0x4e, 0xc3, 0x37, 0x7b, 0x5e, 0x28, 0x0d, 0x81, 0x86, 0xb0, 0x7b, 0x11, 0xbf, 0x3b, 0xa3, - 0xd9, 0x71, 0xbe, 0x3f, 0x56, 0x0c, 0xc4, 0xed, 0x99, 0xc6, 0xf1, 0x25, 0x2c, 0x1f, 0xae, 0x44, - 0x46, 0x63, 0xd5, 0x8a, 0x44, 0x2e, 0x0d, 0x8b, 0x15, 0x46, 0x44, 0x0a, 0xc8, 0x25, 0xe4, 0x12, - 0x72, 0x09, 0xb9, 0x84, 0x5c, 0x42, 0x2e, 0x21, 0x97, 0x90, 0x4b, 0xc8, 0xa5, 0x09, 0x72, 0x49, - 0x22, 0xc4, 0xaa, 0x18, 0xfc, 0x99, 0xb8, 0x4a, 0x2a, 0x58, 0x52, 0xc1, 0x32, 0x35, 0xf6, 0x4e, - 0x8c, 0x1b, 0x31, 0x6e, 0x2f, 0x0c, 0x44, 0x8c, 0x1b, 0x2a, 0x02, 0x2a, 0x02, 0x2a, 0x42, 0x61, - 0x54, 0x04, 0x62, 0x11, 0x88, 0x71, 0xc3, 0xae, 0x60, 0x57, 0xb0, 0x2b, 0xd8, 0x15, 0xec, 0x0a, - 0x31, 0x6e, 0xc9, 0x56, 0x99, 0x18, 0x37, 0x80, 0x1e, 0xa0, 0x2f, 0x35, 0xd0, 0x73, 0x0d, 0xc9, - 0x35, 0xa4, 0xcc, 0xe0, 0x5c, 0x43, 0xda, 0xc2, 0xee, 0x2d, 0xae, 0x21, 0xd3, 0x00, 0xf3, 0x2d, - 0x62, 0xdc, 0x92, 0x1c, 0x28, 0x62, 0xdc, 0x20, 0x97, 0x90, 0x4b, 0xc8, 0x25, 0xe4, 0x12, 0x72, - 0x09, 0xb9, 0x84, 0x5c, 0x42, 0x2e, 0x73, 0x43, 0x2e, 0x89, 0x71, 0xdb, 0x14, 0xe3, 0x46, 0xbd, - 0xdf, 0x4c, 0xac, 0x83, 0xe9, 0x92, 0xbf, 0x83, 0x47, 0x35, 0x46, 0x4f, 0xca, 0x70, 0x8d, 0x4c, - 0xcd, 0xe2, 0x7c, 0x32, 0x45, 0xf9, 0x8a, 0x56, 0x17, 0x93, 0x3a, 0xbf, 0x6a, 0x9e, 0x52, 0x8e, - 0xea, 0xfc, 0x6a, 0x57, 0xc5, 0x94, 0x29, 0xb7, 0xbd, 0xb4, 0xfb, 0x24, 0xca, 0x6e, 0x0b, 0x2b, - 0x26, 0x99, 0xaf, 0x91, 0x49, 0x07, 0x7c, 0x3a, 0xe0, 0x9b, 0xd6, 0x37, 0x9e, 0xa5, 0xcd, 0x96, - 0x17, 0x44, 0x7e, 0xf4, 0x28, 0xa3, 0x6d, 0x4c, 0x2d, 0xa7, 0x40, 0xff, 0x94, 0xca, 0xc9, 0xf8, - 0xab, 0xbd, 0x77, 0x7b, 0x06, 0x9a, 0x2c, 0x1f, 0x7f, 0x3a, 0xb9, 0xb9, 0x1c, 0xfc, 0xe3, 0xea, - 0x8f, 0x86, 0x58, 0x64, 0xd8, 0xb0, 0x81, 0x4c, 0x4f, 0xb4, 0xf3, 0x92, 0x21, 0x37, 0xfe, 0xa4, - 0xf1, 0xf5, 0xe0, 0xe6, 0xf4, 0xf8, 0x7d, 0xfd, 0xb4, 0xfe, 0xf1, 0xe6, 0xcb, 0xd9, 0xc9, 0x87, - 0xe3, 0xcb, 0x2b, 0x41, 0x55, 0xf0, 0x4d, 0xd6, 0xdf, 0xff, 0xf2, 0xe2, 0xaa, 0x7e, 0xd3, 0x38, - 0x3f, 0x3d, 0xf9, 0xf0, 0xc7, 0xcd, 0x60, 0x2e, 0xca, 0xf4, 0xee, 0xa7, 0x27, 0x67, 0xff, 0xba, - 0xbc, 0x3a, 0xbe, 0xaa, 0x97, 0xe9, 0xa5, 0x4f, 0x1a, 0x5f, 0x6b, 0x65, 0xdc, 0xe8, 0xa7, 0xd5, - 0xaf, 0x8d, 0xb3, 0x9b, 0xfa, 0xd7, 0xc6, 0x59, 0x29, 0xb7, 0xf8, 0xcd, 0x65, 0xe3, 0x53, 0x39, - 0x5f, 0xbc, 0x6c, 0x2b, 0xbe, 0x37, 0xd8, 0xe7, 0xe5, 0x3e, 0xe5, 0x5f, 0x1b, 0xa7, 0x97, 0xa5, - 0x5c, 0xf3, 0x83, 0x32, 0xae, 0xf9, 0x70, 0xaf, 0x97, 0x98, 0xc2, 0xcd, 0xac, 0xfe, 0xe7, 0x2f, - 0xa7, 0x57, 0xe5, 0x7d, 0xff, 0x5a, 0x39, 0xdf, 0x7f, 0x81, 0xc2, 0xd7, 0xca, 0xf4, 0xee, 0x5f, - 0x1b, 0x67, 0x5f, 0x6b, 0x37, 0x9f, 0x4e, 0xcf, 0xff, 0x7d, 0xd9, 0xa8, 0x7f, 0x28, 0x19, 0xea, - 0x95, 0x17, 0xed, 0x0d, 0x2c, 0xb8, 0xc8, 0x48, 0xd7, 0x69, 0xeb, 0x6a, 0xa9, 0xd4, 0xd8, 0xf0, - 0x02, 0xf7, 0x7b, 0xdb, 0x6b, 0xc9, 0xa9, 0xe5, 0x93, 0x01, 0x75, 0x6b, 0x0c, 0x3c, 0xa7, 0x3f, - 0xde, 0xba, 0xed, 0x1e, 0xba, 0x7b, 0x8c, 0xa9, 0x47, 0x77, 0x47, 0x77, 0x5f, 0xff, 0x46, 0xf2, - 0xba, 0xfb, 0xf7, 0x4e, 0xa7, 0xed, 0xb9, 0x81, 0xa4, 0xe6, 0xbe, 0x4b, 0x0c, 0x47, 0x82, 0x71, - 0xa4, 0x62, 0x38, 0x74, 0x4a, 0x44, 0xd9, 0x89, 0xa9, 0xb8, 0x0b, 0xdd, 0xa6, 0x77, 0xdb, 0x6f, - 0x3b, 0xa1, 0xd7, 0x8b, 0xdc, 0x30, 0xd2, 0x8f, 0xae, 0x58, 0x1a, 0x91, 0x38, 0x0b, 0xe2, 0x2c, - 0x52, 0x32, 0x10, 0x74, 0x1f, 0xa5, 0xfb, 0x28, 0x0c, 0x0f, 0x86, 0x97, 0x95, 0xba, 0x6c, 0x52, - 0x4e, 0xa1, 0x21, 0xe7, 0xd0, 0x94, 0x93, 0x28, 0xec, 0x2c, 0x8a, 0x43, 0x8a, 0x09, 0x68, 0x31, - 0x07, 0x31, 0xa6, 0xa0, 0xc6, 0x38, 0xe4, 0x18, 0x87, 0x1e, 0xa3, 0x10, 0x24, 0x2b, 0x8a, 0x65, - 0x3f, 0xa9, 0x4d, 0xce, 0x09, 0x15, 0x76, 0x46, 0xe5, 0x16, 0x82, 0x04, 0x90, 0x55, 0x4e, 0xeb, - 0xa2, 0x03, 0x47, 0xa1, 0x63, 0x0a, 0x1d, 0x43, 0xa7, 0xa1, 0xd3, 0xd9, 0xa3, 0xd3, 0x6e, 0xeb, - 0xc1, 0x0b, 0x23, 0xbf, 0x67, 0x82, 0x51, 0xcf, 0x8c, 0x0d, 0xf9, 0x85, 0xfc, 0x42, 0x7e, 0x21, - 0xbf, 0x05, 0x23, 0xbf, 0x6f, 0xd0, 0x33, 0x80, 0x74, 0x20, 0x1d, 0x48, 0x07, 0xd2, 0x81, 0xf4, - 0xe9, 0x3b, 0x85, 0x5e, 0xd3, 0xf3, 0x1f, 0x4c, 0x60, 0xfa, 0x74, 0x64, 0xc0, 0x17, 0xf0, 0x05, - 0x7c, 0x01, 0xdf, 0x82, 0x81, 0x2f, 0x62, 0x72, 0x1c, 0x31, 0x99, 0x8a, 0x42, 0x99, 0x59, 0x0b, - 0xc3, 0x55, 0x85, 0x7e, 0x1b, 0x3f, 0xee, 0x62, 0xfc, 0xb4, 0x0c, 0x47, 0xc1, 0xf9, 0xdd, 0x87, - 0x9a, 0xd3, 0x76, 0xbf, 0x7b, 0x6d, 0xaf, 0xe5, 0xf4, 0x03, 0xbf, 0xe9, 0xf6, 0x04, 0x22, 0xe1, - 0x56, 0x8e, 0x4a, 0x34, 0x1c, 0xd1, 0x70, 0x29, 0x91, 0x8f, 0x9c, 0x45, 0xc3, 0x8d, 0x56, 0xc4, - 0x69, 0xfb, 0xf7, 0x7e, 0x24, 0x77, 0x87, 0x37, 0x37, 0x2a, 0x91, 0x71, 0xf6, 0x3c, 0x0d, 0xae, - 0xf2, 0xb8, 0xca, 0x5b, 0x3f, 0x90, 0x50, 0xe8, 0xeb, 0xd2, 0xf6, 0x15, 0x09, 0x81, 0x15, 0x3e, - 0xf0, 0x48, 0x0e, 0x48, 0x0e, 0x48, 0x0e, 0xb2, 0x00, 0x32, 0x1d, 0xf0, 0xde, 0xfd, 0xe9, 0x8c, - 0x56, 0x7d, 0x58, 0x6b, 0xcb, 0x50, 0xc2, 0xed, 0xdc, 0x53, 0x84, 0x17, 0x5f, 0x56, 0xd7, 0x34, - 0x06, 0x36, 0x26, 0x41, 0xc7, 0x3c, 0xf8, 0x98, 0x06, 0x21, 0x6b, 0x60, 0x64, 0x0d, 0x94, 0xac, - 0x80, 0x93, 0x2c, 0x48, 0x09, 0x83, 0xd5, 0x74, 0x06, 0xc4, 0x75, 0xd2, 0xa5, 0xfd, 0xde, 0xf7, - 0x83, 0x68, 0xaf, 0x6a, 0x62, 0xbf, 0x8f, 0xd1, 0xe5, 0xd0, 0xc0, 0xd0, 0x17, 0x6e, 0x70, 0xe7, - 0x89, 0xd6, 0x37, 0x9c, 0xfd, 0x65, 0xe6, 0x7c, 0x6e, 0x8d, 0x7b, 0x3a, 0x18, 0x03, 0x00, 0xc3, - 0xb0, 0xbe, 0xf4, 0x98, 0x61, 0x95, 0x49, 0x0b, 0xcf, 0xf9, 0x14, 0xba, 0xcd, 0xc8, 0xef, 0x04, - 0x1f, 0xfd, 0x3b, 0x7f, 0xd8, 0xad, 0x62, 0xc7, 0xd8, 0xf3, 0x9e, 0xde, 0x18, 0x5c, 0x7a, 0xf7, - 0x67, 0xe1, 0x96, 0xbe, 0x56, 0x3d, 0xaa, 0x1d, 0x1d, 0x1c, 0x56, 0x8f, 0xf6, 0x0b, 0xb4, 0x07, - 0x5e, 0xe5, 0x63, 0xd4, 0xeb, 0xac, 0xf6, 0xdc, 0x10, 0xf4, 0xdb, 0xba, 0xa1, 0xf7, 0xe0, 0x05, - 0x91, 0x13, 0x79, 0x6e, 0xd8, 0xea, 0xfc, 0x15, 0x98, 0xa3, 0xd9, 0x4b, 0x4f, 0x12, 0x36, 0xe4, - 0x86, 0xe2, 0xc2, 0xa0, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xde, 0x50, 0xe8, 0xc3, 0x22, 0xbc, - 0x08, 0x85, 0x40, 0x64, 0xdb, 0xe8, 0x8c, 0xef, 0xac, 0x9d, 0xc8, 0xbf, 0xf7, 0x42, 0x73, 0x16, - 0x67, 0xfe, 0x31, 0x98, 0x03, 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x20, 0xb8, 0xdf, 0x5b, 0x5e, 0xd3, - 0xbf, 0x77, 0xdb, 0x07, 0x35, 0x93, 0x06, 0xa1, 0x6a, 0x60, 0xec, 0x25, 0x67, 0xaf, 0x8a, 0x84, - 0x94, 0x8e, 0x84, 0x54, 0x45, 0x42, 0x2a, 0xab, 0x84, 0xb4, 0xc7, 0xd2, 0xa3, 0x1c, 0xe5, 0x97, - 0xc4, 0xff, 0xe5, 0x86, 0x81, 0x1f, 0xdc, 0x39, 0xd1, 0x8f, 0xd0, 0xeb, 0xfd, 0xe8, 0xb4, 0x5b, - 0x4e, 0xb7, 0x19, 0x99, 0x23, 0xf3, 0xab, 0x1f, 0x07, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, - 0x82, 0xfb, 0xbd, 0xeb, 0x85, 0x4d, 0x2f, 0x88, 0xdc, 0x3b, 0xcf, 0x20, 0xab, 0xdf, 0x87, 0x6f, - 0xa7, 0xc3, 0xb7, 0xb9, 0xb2, 0x2d, 0x2d, 0xdf, 0xb6, 0xb5, 0xf4, 0xbb, 0x3b, 0x30, 0x6e, 0x18, - 0xb7, 0xe8, 0x48, 0x52, 0x11, 0x9a, 0xc2, 0x99, 0x85, 0xd3, 0x71, 0xa5, 0xb2, 0xda, 0x56, 0x65, - 0x59, 0x6d, 0xcf, 0x66, 0x79, 0x88, 0xd4, 0xaf, 0x93, 0x5b, 0x1b, 0x89, 0x24, 0x7d, 0x99, 0xba, - 0x76, 0x4b, 0x34, 0x46, 0xa2, 0xbe, 0xdd, 0x22, 0x82, 0x8a, 0xc7, 0xca, 0x57, 0x89, 0x95, 0xcf, - 0x91, 0xbf, 0x43, 0xac, 0x3c, 0xb1, 0xf2, 0xc4, 0xca, 0x23, 0xbe, 0x20, 0xbe, 0x20, 0xbe, 0x18, - 0xda, 0xef, 0xc4, 0xca, 0x23, 0xbc, 0x20, 0xbc, 0x20, 0xbc, 0x28, 0x2d, 0x3d, 0xb1, 0xf2, 0xe8, - 0x2f, 0x06, 0xcf, 0x10, 0xb1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, - 0x13, 0x2b, 0x2f, 0xf2, 0xae, 0xc4, 0xca, 0x63, 0x0e, 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, - 0x62, 0xe5, 0x91, 0x90, 0x34, 0x97, 0x97, 0x58, 0xf9, 0xd2, 0x4a, 0x48, 0xc4, 0xca, 0xa3, 0x1c, - 0xe5, 0x98, 0xc4, 0x13, 0x2b, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x8b, 0x46, 0xea, 0x89, 0x95, - 0x2f, 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, 0x9b, 0x58, 0x79, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, - 0xac, 0xbc, 0x68, 0xac, 0xbc, 0x40, 0x7b, 0x1e, 0xb9, 0xa5, 0xa1, 0xa5, 0x92, 0xd2, 0x22, 0x56, - 0x44, 0x32, 0x0c, 0x36, 0xf6, 0xf7, 0x39, 0xe9, 0x3e, 0xd4, 0x4e, 0x47, 0x5f, 0xe3, 0xcb, 0xe8, - 0x5b, 0xdc, 0x8c, 0xfc, 0xa5, 0xd3, 0xe1, 0x97, 0xa0, 0xc5, 0x53, 0x46, 0xf6, 0x86, 0xe1, 0x36, - 0x4f, 0xcb, 0xdb, 0x20, 0xf3, 0x9d, 0x9e, 0x64, 0x3b, 0x3c, 0xd1, 0xd9, 0x89, 0xce, 0x4e, 0x29, - 0x6b, 0x0d, 0x39, 0xeb, 0xec, 0x24, 0xd4, 0xec, 0x45, 0xb6, 0xc9, 0x0b, 0xdd, 0x9c, 0xd2, 0x14, - 0x17, 0xe9, 0xe6, 0x94, 0x01, 0xc6, 0x2b, 0xd6, 0xcd, 0xa9, 0xe7, 0x05, 0x2d, 0xa7, 0x35, 0x0a, - 0x18, 0x75, 0xc2, 0x4e, 0xdf, 0x48, 0xb2, 0xea, 0xf2, 0x33, 0xa4, 0xf2, 0xec, 0xcc, 0x44, 0xba, - 0xd2, 0xb0, 0x9a, 0x8c, 0x58, 0x32, 0x62, 0x45, 0xf5, 0x16, 0x1a, 0x56, 0xa3, 0xae, 0x98, 0xf0, - 0xa0, 0x27, 0xaa, 0x8a, 0x44, 0xe5, 0x08, 0x0d, 0x29, 0xe3, 0x0d, 0xcd, 0x53, 0xa1, 0xdb, 0xd0, - 0x6d, 0xe8, 0xb6, 0x1d, 0x7f, 0xda, 0x8c, 0x5f, 0x2d, 0x7c, 0xe0, 0xa1, 0xbf, 0xd0, 0x5f, 0xe8, - 0xaf, 0x2c, 0x80, 0x4c, 0x07, 0xa4, 0x20, 0x8c, 0x25, 0xb0, 0x31, 0x09, 0x3a, 0xe6, 0xc1, 0xc7, - 0x34, 0x08, 0x59, 0x03, 0x23, 0x6b, 0xa0, 0x64, 0x05, 0x9c, 0x64, 0x41, 0x4a, 0x18, 0xac, 0xcc, - 0xf9, 0xec, 0x4b, 0xfb, 0x9d, 0x82, 0x30, 0x4b, 0xbf, 0x88, 0x2e, 0x8c, 0xf5, 0x18, 0xa2, 0x0b, - 0x93, 0x2d, 0x3d, 0x05, 0x61, 0xf2, 0xb1, 0x07, 0x08, 0x32, 0xcc, 0xca, 0x19, 0xa2, 0x20, 0x0c, - 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0xc7, 0xda, 0xef, 0x14, 0x84, 0x11, 0x79, 0x57, 0x0a, - 0xc2, 0x60, 0x0e, 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, 0x0a, 0xc2, 0x20, 0x21, 0x69, 0x2e, - 0x2f, 0x05, 0x61, 0x4a, 0x2b, 0x21, 0x51, 0x10, 0x06, 0xe5, 0x28, 0xc7, 0x24, 0x9e, 0x82, 0x30, - 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0xbe, 0x68, 0xa4, 0x9e, 0x82, 0x30, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, - 0x96, 0x96, 0x6f, 0x53, 0x10, 0x06, 0xc6, 0x6d, 0x9f, 0x71, 0x53, 0x10, 0x46, 0x35, 0xdb, 0x85, - 0xa6, 0xa9, 0x2a, 0xf4, 0x85, 0xa6, 0xa9, 0x59, 0xf5, 0x7b, 0x88, 0x91, 0x4f, 0xc5, 0xaf, 0x21, - 0x46, 0x5e, 0xe0, 0x30, 0x10, 0x23, 0x8f, 0xe8, 0x82, 0xe8, 0x82, 0xe8, 0x62, 0x6a, 0xbf, 0x13, - 0x23, 0x8f, 0xe0, 0x82, 0xe0, 0x82, 0xe0, 0xa2, 0xb4, 0xf4, 0xc4, 0xc8, 0xa3, 0xbb, 0x18, 0x3c, - 0x43, 0xc4, 0xc8, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0x8c, 0xbc, - 0xc8, 0xbb, 0x12, 0x23, 0x8f, 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0x88, 0x91, 0x47, - 0x42, 0xd2, 0x5c, 0x5e, 0x62, 0xe4, 0x4b, 0x2b, 0x21, 0x11, 0x23, 0x8f, 0x72, 0x94, 0x63, 0x12, - 0x4f, 0x8c, 0x3c, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x2f, 0x1a, 0xa9, 0x27, 0x46, 0xbe, 0xc8, 0x7c, - 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, 0x6d, 0x62, 0xe4, 0x61, 0xdc, 0xf6, 0x19, 0x37, 0x31, 0xf2, 0x22, - 0x31, 0xf2, 0x34, 0x4b, 0x35, 0xb5, 0x88, 0xe6, 0x17, 0xcf, 0x62, 0x93, 0xd4, 0x2c, 0x75, 0x47, - 0xd5, 0xea, 0x05, 0x2a, 0x91, 0x3f, 0x21, 0x9a, 0x37, 0x21, 0xde, 0x44, 0xa4, 0x4a, 0x13, 0x91, - 0x0c, 0xf8, 0xb2, 0x34, 0x11, 0x89, 0xff, 0x46, 0xf4, 0xec, 0xdb, 0xa2, 0x67, 0x1f, 0x09, 0x59, - 0x24, 0x64, 0xe5, 0x85, 0xee, 0xd3, 0xb3, 0x0f, 0x92, 0x6f, 0x92, 0xe4, 0x0b, 0x38, 0x65, 0x4f, - 0x39, 0x69, 0xc4, 0x2d, 0xb4, 0x1e, 0x46, 0xd6, 0xa1, 0xa2, 0xe5, 0x69, 0x24, 0xf1, 0xab, 0xd4, - 0xd6, 0x3a, 0xf9, 0x4a, 0x29, 0xac, 0x52, 0xc5, 0xef, 0x3e, 0x1c, 0x38, 0x6d, 0xf7, 0xbb, 0xd7, - 0xf6, 0x5a, 0xd3, 0x99, 0x51, 0x5d, 0xab, 0x29, 0xd0, 0xad, 0x1c, 0x55, 0x71, 0x0f, 0xe9, 0x79, - 0x50, 0xda, 0x84, 0x46, 0x82, 0xc0, 0xc8, 0x11, 0x16, 0x29, 0x82, 0x22, 0x4e, 0x48, 0xc4, 0x09, - 0x88, 0x28, 0xe1, 0xb0, 0x8b, 0x7a, 0xba, 0x1e, 0x0f, 0xbd, 0x51, 0x91, 0x35, 0x90, 0x35, 0xca, - 0x22, 0x6b, 0xd0, 0x1b, 0x15, 0x99, 0x01, 0x99, 0xa1, 0x7c, 0x32, 0x03, 0x75, 0x5f, 0x0c, 0x6b, - 0x99, 0xc6, 0xc0, 0xc6, 0x24, 0xe8, 0x98, 0x07, 0x1f, 0xd3, 0x20, 0x64, 0x0d, 0x8c, 0xac, 0x81, - 0x92, 0x15, 0x70, 0x92, 0x05, 0x29, 0x61, 0xb0, 0x9a, 0xce, 0x00, 0x75, 0x5f, 0x56, 0x0e, 0x4d, - 0x10, 0xa1, 0x7d, 0x58, 0x5f, 0x7a, 0x0c, 0x41, 0x84, 0xc9, 0x96, 0x9e, 0xba, 0x2f, 0xf9, 0xd8, - 0x03, 0xc4, 0x12, 0x66, 0xe5, 0x0c, 0x51, 0xf7, 0x05, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, - 0x63, 0xed, 0x77, 0xea, 0xbe, 0x88, 0xbc, 0x2b, 0x75, 0x5f, 0x30, 0x07, 0x98, 0x03, 0xcc, 0x41, - 0xde, 0xcd, 0x01, 0x75, 0x5f, 0x90, 0x90, 0x34, 0x97, 0x97, 0xba, 0x2f, 0xa5, 0x95, 0x90, 0xa8, - 0xfb, 0x82, 0x72, 0x94, 0x63, 0x12, 0x4f, 0xdd, 0x17, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, - 0x52, 0x4f, 0xdd, 0x97, 0x22, 0xf3, 0x6d, 0xae, 0x6c, 0x4b, 0xcb, 0xb7, 0xa9, 0xfb, 0x02, 0xe3, - 0xb6, 0xcf, 0xb8, 0xa9, 0xfb, 0x92, 0x2c, 0x9b, 0x6d, 0x29, 0xcb, 0x8a, 0x1e, 0xa9, 0x4a, 0x34, - 0x86, 0x1e, 0xa9, 0x59, 0xf5, 0x7f, 0x88, 0x95, 0x4f, 0xc5, 0xbf, 0x21, 0x56, 0x5e, 0xe0, 0x30, - 0x10, 0x2b, 0x8f, 0xf8, 0x82, 0xf8, 0x82, 0xf8, 0x62, 0x6a, 0xbf, 0x13, 0x2b, 0x8f, 0xf0, 0x82, - 0xf0, 0x82, 0xf0, 0xa2, 0xb4, 0xf4, 0xc4, 0xca, 0xa3, 0xbf, 0x18, 0x3c, 0x43, 0xc4, 0xca, 0x43, - 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0xac, 0xbc, 0xc8, 0xbb, 0x12, 0x2b, - 0x8f, 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0x88, 0x95, 0x47, 0x42, 0xd2, 0x5c, 0x5e, - 0x62, 0xe5, 0x4b, 0x2b, 0x21, 0x11, 0x2b, 0x8f, 0x72, 0x94, 0x63, 0x12, 0x4f, 0xac, 0x3c, 0xa4, - 0x1e, 0x52, 0x0f, 0xa9, 0x2f, 0x1a, 0xa9, 0x27, 0x56, 0xbe, 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, - 0xf2, 0x6d, 0x62, 0xe5, 0x61, 0xdc, 0xf6, 0x19, 0x37, 0xb1, 0xf2, 0xa2, 0xb1, 0xf2, 0xf4, 0x4a, - 0x35, 0xb5, 0x98, 0xf6, 0x16, 0xd1, 0x5e, 0xcf, 0xd4, 0x83, 0xd3, 0xd1, 0xd7, 0xc8, 0x52, 0xeb, - 0xd4, 0xb2, 0xb7, 0x76, 0x92, 0x6a, 0x39, 0xa4, 0xbe, 0x0d, 0x32, 0xdf, 0xe9, 0x49, 0xb6, 0xc3, - 0x13, 0x9d, 0x9d, 0xe8, 0xec, 0x94, 0xb2, 0xd6, 0x90, 0xb3, 0xce, 0x4e, 0x42, 0xcd, 0x5e, 0x64, - 0x9b, 0xbc, 0xd0, 0xcd, 0x29, 0x4d, 0x71, 0x91, 0x6e, 0x4e, 0x19, 0x60, 0xbc, 0x34, 0xa9, 0xde, - 0xa2, 0x49, 0x35, 0x19, 0xb1, 0x64, 0xc4, 0xe6, 0x45, 0x6f, 0xa1, 0x49, 0x35, 0xea, 0x8a, 0x09, - 0x0f, 0x7a, 0xa2, 0xaa, 0x48, 0x54, 0x8e, 0xd0, 0x90, 0x32, 0xde, 0xd0, 0x3c, 0x15, 0xba, 0x0d, - 0xdd, 0x86, 0x6e, 0xdb, 0xf1, 0xa7, 0xcd, 0xf8, 0xd5, 0xc2, 0x07, 0x1e, 0xfa, 0x0b, 0xfd, 0x85, - 0xfe, 0xca, 0x02, 0xc8, 0x74, 0x40, 0x0a, 0xc2, 0x58, 0x02, 0x1b, 0x93, 0xa0, 0x63, 0x1e, 0x7c, - 0x4c, 0x83, 0x90, 0x35, 0x30, 0xb2, 0x06, 0x4a, 0x56, 0xc0, 0x49, 0x16, 0xa4, 0x84, 0xc1, 0xca, - 0x9c, 0xcf, 0xbe, 0xb4, 0xdf, 0x29, 0x08, 0xb3, 0xf4, 0x8b, 0xe8, 0xc2, 0x58, 0x8f, 0x21, 0xba, - 0x30, 0xd9, 0xd2, 0x53, 0x10, 0x26, 0x1f, 0x7b, 0x80, 0x20, 0xc3, 0xac, 0x9c, 0x21, 0x0a, 0xc2, - 0x40, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0x41, 0x18, 0x91, 0x77, 0xa5, - 0x20, 0x0c, 0xe6, 0x00, 0x73, 0x80, 0x39, 0xc8, 0xbb, 0x39, 0xa0, 0x20, 0x0c, 0x12, 0x92, 0xe6, - 0xf2, 0x52, 0x10, 0xa6, 0xb4, 0x12, 0x12, 0x05, 0x61, 0x50, 0x8e, 0x72, 0x4c, 0xe2, 0x29, 0x08, - 0x03, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x8b, 0x46, 0xea, 0x29, 0x08, 0x53, 0x64, 0xbe, 0xcd, 0x95, - 0x6d, 0x69, 0xf9, 0x36, 0x05, 0x61, 0x60, 0xdc, 0xf6, 0x19, 0x37, 0x05, 0x61, 0x54, 0xb3, 0x5d, - 0x68, 0x9a, 0xaa, 0x42, 0x5f, 0x68, 0x9a, 0x9a, 0x55, 0xbf, 0x87, 0x18, 0xf9, 0x54, 0xfc, 0x1a, - 0x62, 0xe4, 0x05, 0x0e, 0x03, 0x31, 0xf2, 0x88, 0x2e, 0x88, 0x2e, 0x88, 0x2e, 0xa6, 0xf6, 0x3b, - 0x31, 0xf2, 0x08, 0x2e, 0x08, 0x2e, 0x08, 0x2e, 0x4a, 0x4b, 0x4f, 0x8c, 0x3c, 0xba, 0x8b, 0xc1, - 0x33, 0x44, 0x8c, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0xc7, 0xda, 0xef, 0xc4, 0xc8, - 0x8b, 0xbc, 0x2b, 0x31, 0xf2, 0x98, 0x03, 0xcc, 0x01, 0xe6, 0x20, 0xef, 0xe6, 0x80, 0x18, 0x79, - 0x24, 0x24, 0xcd, 0xe5, 0x25, 0x46, 0xbe, 0xb4, 0x12, 0x12, 0x31, 0xf2, 0x28, 0x47, 0x39, 0x26, - 0xf1, 0xc4, 0xc8, 0x43, 0xea, 0x21, 0xf5, 0x90, 0xfa, 0xa2, 0x91, 0x7a, 0x62, 0xe4, 0x8b, 0xcc, - 0xb7, 0xb9, 0xb2, 0x2d, 0x2d, 0xdf, 0x26, 0x46, 0x1e, 0xc6, 0x6d, 0x9f, 0x71, 0x13, 0x23, 0x2f, - 0x12, 0x23, 0x4f, 0xb3, 0x54, 0x53, 0x8b, 0x68, 0x7e, 0xf1, 0x2c, 0x36, 0x49, 0xcd, 0x52, 0x77, - 0x54, 0xad, 0x5e, 0xa0, 0x12, 0xf9, 0x13, 0xa2, 0x79, 0x13, 0xe2, 0x4d, 0x44, 0xaa, 0x34, 0x11, - 0xc9, 0x80, 0x2f, 0x4b, 0x13, 0x91, 0xf8, 0x6f, 0x44, 0xcf, 0xbe, 0x2d, 0x7a, 0xf6, 0x91, 0x90, - 0x45, 0x42, 0x56, 0x5e, 0xe8, 0x3e, 0x3d, 0xfb, 0x20, 0xf9, 0x26, 0x49, 0xbe, 0x80, 0x53, 0xf6, - 0x94, 0x93, 0x46, 0xdc, 0x42, 0xeb, 0x61, 0x64, 0x1d, 0x2a, 0x5a, 0x9e, 0x46, 0x12, 0xbf, 0x4a, - 0x6d, 0xad, 0x93, 0xaf, 0x94, 0xc2, 0x2a, 0x55, 0xda, 0xd5, 0x87, 0x6e, 0xe0, 0x78, 0x0f, 0x5d, - 0xf5, 0x15, 0x9a, 0xc2, 0xdb, 0xcc, 0x58, 0x8a, 0xfb, 0x45, 0xcf, 0x5b, 0xd2, 0x26, 0x2f, 0x12, - 0x64, 0x45, 0x8e, 0x9c, 0x48, 0x91, 0x11, 0x71, 0xf2, 0x21, 0x4e, 0x36, 0x44, 0xc9, 0x85, 0x5d, - 0x84, 0xd3, 0xf5, 0x6e, 0xe8, 0x83, 0x8a, 0x84, 0x81, 0x84, 0x51, 0x16, 0x09, 0x83, 0x3e, 0xa8, - 0x48, 0x0a, 0x48, 0x0a, 0xe5, 0x93, 0x14, 0xa8, 0xf1, 0x62, 0x58, 0xb7, 0x34, 0x06, 0x36, 0x26, - 0x41, 0xc7, 0x3c, 0xf8, 0x98, 0x06, 0x21, 0x6b, 0x60, 0x64, 0x0d, 0x94, 0xac, 0x80, 0x93, 0x2c, - 0x48, 0x09, 0x83, 0xd5, 0x74, 0x06, 0xa8, 0xf1, 0xb2, 0x72, 0x68, 0x02, 0x06, 0xed, 0xc3, 0xfa, - 0xd2, 0x63, 0x08, 0x18, 0x4c, 0xb6, 0xf4, 0xd4, 0x78, 0xc9, 0xc7, 0x1e, 0x20, 0x6e, 0x30, 0x2b, - 0x67, 0x88, 0x1a, 0x2f, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x53, 0xe3, - 0x45, 0xe4, 0x5d, 0xa9, 0xf1, 0x82, 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0xa8, 0xf1, - 0x82, 0x84, 0xa4, 0xb9, 0xbc, 0xd4, 0x78, 0x29, 0xad, 0x84, 0x44, 0x8d, 0x17, 0x94, 0xa3, 0x1c, - 0x93, 0x78, 0x6a, 0xbc, 0x40, 0xea, 0x21, 0xf5, 0x90, 0xfa, 0xa2, 0x91, 0x7a, 0x6a, 0xbc, 0x14, - 0x99, 0x6f, 0x73, 0x65, 0x5b, 0x5a, 0xbe, 0x4d, 0x8d, 0x17, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0x8d, - 0x97, 0x04, 0x99, 0x6b, 0xcf, 0xb9, 0x55, 0x74, 0x41, 0x55, 0x22, 0x2f, 0x74, 0x41, 0xcd, 0xaa, - 0xd7, 0x43, 0x84, 0x7c, 0x2a, 0x5e, 0x0d, 0x11, 0xf2, 0x02, 0x87, 0x81, 0x08, 0x79, 0x24, 0x17, - 0x24, 0x17, 0x24, 0x17, 0x53, 0xfb, 0x9d, 0x08, 0x79, 0xe4, 0x16, 0xe4, 0x16, 0xe4, 0x16, 0xa5, - 0xa5, 0x27, 0x42, 0x1e, 0xd5, 0xc5, 0xe0, 0x19, 0x22, 0x42, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, - 0x43, 0xe5, 0x63, 0xed, 0x77, 0x22, 0xe4, 0x45, 0xde, 0x95, 0x08, 0x79, 0xcc, 0x01, 0xe6, 0x00, - 0x73, 0x90, 0x77, 0x73, 0x40, 0x84, 0x3c, 0x12, 0x92, 0xe6, 0xf2, 0x12, 0x21, 0x5f, 0x5a, 0x09, - 0x89, 0x08, 0x79, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0x22, 0xe4, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x7d, - 0xd1, 0x48, 0x3d, 0x11, 0xf2, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, 0x96, 0x6f, 0x13, 0x21, 0x0f, - 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x90, 0x17, 0x88, 0x90, 0xa7, 0x07, 0xaa, 0xa9, 0x25, 0x34, 0xbd, - 0x74, 0x96, 0x3a, 0xa0, 0x9e, 0x56, 0xbf, 0x76, 0x83, 0xfa, 0x43, 0x37, 0xc8, 0x44, 0xff, 0xd3, - 0x52, 0xf7, 0x67, 0xd2, 0xee, 0x20, 0x94, 0x78, 0xcd, 0xb3, 0xdf, 0x9b, 0xe9, 0xa1, 0xdb, 0xee, - 0x49, 0xf5, 0x66, 0x1a, 0x8e, 0x45, 0x6f, 0x26, 0x7a, 0x33, 0xa5, 0xa4, 0x1b, 0xd0, 0x9b, 0x89, - 0xde, 0x4c, 0xe9, 0x89, 0x88, 0xf4, 0x66, 0xa2, 0x37, 0xd3, 0xfa, 0x81, 0xe8, 0xcd, 0x24, 0x31, - 0x20, 0x99, 0xa7, 0x64, 0x9e, 0xe6, 0x4b, 0xd7, 0x20, 0xf3, 0xd4, 0x92, 0xe8, 0xc9, 0x55, 0xa6, - 0x55, 0x10, 0xb2, 0x06, 0x46, 0xd6, 0x40, 0xc9, 0x0a, 0x38, 0xc9, 0x82, 0x94, 0x30, 0x58, 0x4d, - 0x67, 0x80, 0xcc, 0xd3, 0x95, 0x43, 0x73, 0x8d, 0x69, 0x1f, 0xd6, 0x97, 0x1e, 0xc3, 0x35, 0x66, - 0xb2, 0xa5, 0x27, 0xf3, 0x34, 0x1f, 0x7b, 0x80, 0xdb, 0xcc, 0xac, 0x9c, 0x21, 0x32, 0x4f, 0xa1, - 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x3e, 0xd6, 0x7e, 0x27, 0xf3, 0x54, 0xe4, 0x5d, 0xc9, 0x3c, - 0xc5, 0x1c, 0x60, 0x0e, 0x30, 0x07, 0x79, 0x37, 0x07, 0x64, 0x9e, 0x22, 0x21, 0x69, 0x2e, 0x2f, - 0x99, 0xa7, 0xa5, 0x95, 0x90, 0xc8, 0x3c, 0x45, 0x39, 0xca, 0x31, 0x89, 0x27, 0xf3, 0x14, 0x52, - 0x0f, 0xa9, 0x87, 0xd4, 0x17, 0x8d, 0xd4, 0x93, 0x79, 0x5a, 0x64, 0xbe, 0xcd, 0x95, 0x6d, 0x69, - 0xf9, 0x36, 0x99, 0xa7, 0x30, 0x6e, 0xfb, 0x8c, 0x9b, 0xcc, 0xd3, 0xc4, 0x59, 0x6b, 0x0f, 0xdd, - 0x76, 0x8f, 0xde, 0x4c, 0x4a, 0xe4, 0x85, 0xde, 0x4c, 0x59, 0xf5, 0x7a, 0x88, 0x90, 0x4f, 0xc5, - 0xab, 0x21, 0x42, 0x5e, 0xe0, 0x30, 0x10, 0x21, 0x8f, 0xe4, 0x82, 0xe4, 0x82, 0xe4, 0x62, 0x6a, - 0xbf, 0x13, 0x21, 0x8f, 0xdc, 0x82, 0xdc, 0x82, 0xdc, 0xa2, 0xb4, 0xf4, 0x44, 0xc8, 0xa3, 0xba, - 0x18, 0x3c, 0x43, 0x44, 0xc8, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, - 0x84, 0xbc, 0xc8, 0xbb, 0x12, 0x21, 0x8f, 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0x88, - 0x90, 0x47, 0x42, 0xd2, 0x5c, 0x5e, 0x22, 0xe4, 0x4b, 0x2b, 0x21, 0x11, 0x21, 0x8f, 0x72, 0x94, - 0x63, 0x12, 0x4f, 0x84, 0x3c, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x2f, 0x1a, 0xa9, 0x27, 0x42, 0xbe, - 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, 0x6d, 0x22, 0xe4, 0x61, 0xdc, 0xf6, 0x19, 0x37, 0x11, - 0xf2, 0x02, 0x11, 0xf2, 0xf4, 0x66, 0x32, 0xb5, 0x84, 0xa6, 0x97, 0xce, 0x66, 0x6f, 0xa6, 0xaf, - 0xdd, 0x76, 0x8f, 0xde, 0x4c, 0xd9, 0xd9, 0x08, 0x36, 0x7a, 0x33, 0x0d, 0xd6, 0x3c, 0xd3, 0xbd, - 0x99, 0xf6, 0x06, 0xb3, 0xe1, 0x77, 0x1f, 0x6a, 0xce, 0x7d, 0xbf, 0x1d, 0xf9, 0x4d, 0xb7, 0x17, - 0x09, 0x74, 0x69, 0x5a, 0x35, 0x2a, 0xfd, 0x9a, 0xe8, 0xd7, 0x94, 0x92, 0x96, 0x40, 0xbf, 0x26, - 0xfa, 0x35, 0xa5, 0x27, 0x2c, 0xd2, 0xaf, 0x89, 0x7e, 0x4d, 0xeb, 0x07, 0xa2, 0x5f, 0x93, 0xc4, - 0x80, 0x64, 0xa3, 0x92, 0x8d, 0x9a, 0x2f, 0xad, 0x83, 0x6c, 0x54, 0x4b, 0x42, 0x28, 0xd7, 0x9b, - 0x56, 0x41, 0xc8, 0x1a, 0x18, 0x59, 0x03, 0x25, 0x2b, 0xe0, 0x24, 0x0b, 0x52, 0xc2, 0x60, 0x35, - 0x9d, 0x01, 0xb2, 0x51, 0x57, 0x0e, 0xcd, 0xd5, 0xa6, 0x7d, 0x58, 0x5f, 0x7a, 0x0c, 0x57, 0x9b, - 0xc9, 0x96, 0x9e, 0x6c, 0xd4, 0x7c, 0xec, 0x01, 0x6e, 0x38, 0xb3, 0x72, 0x86, 0xc8, 0x46, 0x85, - 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, 0x9d, 0x6c, 0x54, 0x91, 0x77, 0x25, 0x1b, - 0x15, 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, 0x90, 0x8d, 0x8a, 0x84, 0xa4, 0xb9, 0xbc, - 0x64, 0xa3, 0x96, 0x56, 0x42, 0x22, 0x1b, 0x15, 0xe5, 0x28, 0xc7, 0x24, 0x9e, 0x6c, 0x54, 0x48, - 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0x36, 0x6a, 0x91, 0xf9, 0x36, 0x57, 0xb6, 0xa5, - 0xe5, 0xdb, 0x64, 0xa3, 0xc2, 0xb8, 0xed, 0x33, 0x6e, 0xb2, 0x51, 0x93, 0x64, 0xb2, 0xad, 0xc8, - 0xb2, 0xa2, 0x73, 0x93, 0x12, 0x8d, 0xa1, 0x73, 0x53, 0x56, 0xfd, 0x1f, 0x62, 0xe5, 0x53, 0xf1, - 0x6f, 0x88, 0x95, 0x17, 0x38, 0x0c, 0xc4, 0xca, 0x23, 0xbe, 0x20, 0xbe, 0x20, 0xbe, 0x98, 0xda, - 0xef, 0xc4, 0xca, 0x23, 0xbc, 0x20, 0xbc, 0x20, 0xbc, 0x28, 0x2d, 0x3d, 0xb1, 0xf2, 0xe8, 0x2f, - 0x06, 0xcf, 0x10, 0xb1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x13, - 0x2b, 0x2f, 0xf2, 0xae, 0xc4, 0xca, 0x63, 0x0e, 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, 0x62, - 0xe5, 0x91, 0x90, 0x34, 0x97, 0x97, 0x58, 0xf9, 0xd2, 0x4a, 0x48, 0xc4, 0xca, 0xa3, 0x1c, 0xe5, - 0x98, 0xc4, 0x13, 0x2b, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x8b, 0x46, 0xea, 0x89, 0x95, 0x2f, - 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, 0x9b, 0x58, 0x79, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0xac, - 0xbc, 0x68, 0xac, 0x3c, 0x3d, 0x9c, 0x4c, 0x2d, 0xa6, 0xbd, 0x45, 0xb4, 0xd5, 0xcd, 0x69, 0xef, - 0x6b, 0x37, 0x38, 0xe9, 0x3e, 0xd4, 0x3e, 0x4f, 0xbe, 0x05, 0x6d, 0x9d, 0xb2, 0xb8, 0x37, 0x4c, - 0x37, 0x78, 0x5a, 0xda, 0x06, 0x39, 0xe9, 0xf4, 0xd4, 0x0f, 0xe4, 0xfb, 0x3c, 0x4d, 0xc6, 0xa4, - 0xcb, 0x13, 0x5d, 0x9e, 0x52, 0xd2, 0x1d, 0xe8, 0xf2, 0x44, 0x97, 0xa7, 0xf4, 0x44, 0x48, 0xba, - 0x3c, 0xd1, 0xe5, 0x69, 0xfd, 0x40, 0x74, 0x79, 0x92, 0x18, 0x90, 0xcc, 0x55, 0x32, 0x57, 0xf3, - 0xa5, 0x8b, 0x90, 0xb9, 0x6a, 0x49, 0x34, 0xe5, 0x2a, 0xd4, 0x2a, 0x08, 0x59, 0x03, 0x23, 0x6b, - 0xa0, 0x64, 0x05, 0x9c, 0x64, 0x41, 0x4a, 0x18, 0xac, 0xa6, 0x33, 0x40, 0xe6, 0xea, 0xca, 0xa1, - 0xb9, 0x06, 0xb5, 0x0f, 0xeb, 0x4b, 0x8f, 0xe1, 0x1a, 0x34, 0xd9, 0xd2, 0x93, 0xb9, 0x9a, 0x8f, - 0x3d, 0xc0, 0x6d, 0x68, 0x56, 0xce, 0x10, 0x99, 0xab, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, - 0x1f, 0x6b, 0xbf, 0x93, 0xb9, 0x2a, 0xf2, 0xae, 0x64, 0xae, 0x62, 0x0e, 0x30, 0x07, 0x98, 0x83, - 0xbc, 0x9b, 0x03, 0x32, 0x57, 0x91, 0x90, 0x34, 0x97, 0x97, 0xcc, 0xd5, 0xd2, 0x4a, 0x48, 0x64, - 0xae, 0xa2, 0x1c, 0xe5, 0x98, 0xc4, 0x93, 0xb9, 0x0a, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x8b, 0x46, - 0xea, 0xc9, 0x5c, 0x2d, 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, 0x9b, 0xcc, 0x55, 0x18, 0xb7, - 0x7d, 0xc6, 0x4d, 0xe6, 0xaa, 0x5a, 0x62, 0xdb, 0x38, 0xc7, 0x8a, 0x1e, 0x4f, 0x4a, 0x24, 0x86, - 0x1e, 0x4f, 0x59, 0xf5, 0x7e, 0x88, 0x94, 0x4f, 0xc5, 0xbb, 0x21, 0x52, 0x5e, 0xe0, 0x30, 0x10, - 0x29, 0x8f, 0xf4, 0x82, 0xf4, 0x82, 0xf4, 0x62, 0x6a, 0xbf, 0x13, 0x29, 0x8f, 0xec, 0x82, 0xec, - 0x82, 0xec, 0xa2, 0xb4, 0xf4, 0x44, 0xca, 0xa3, 0xbe, 0x18, 0x3c, 0x43, 0x44, 0xca, 0x43, 0xe5, - 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0xa4, 0xbc, 0xc8, 0xbb, 0x12, 0x29, 0x8f, - 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0x88, 0x94, 0x47, 0x42, 0xd2, 0x5c, 0x5e, 0x22, - 0xe5, 0x4b, 0x2b, 0x21, 0x11, 0x29, 0x8f, 0x72, 0x94, 0x63, 0x12, 0x4f, 0xa4, 0x3c, 0xa4, 0x1e, - 0x52, 0x0f, 0xa9, 0x2f, 0x1a, 0xa9, 0x27, 0x52, 0xbe, 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, - 0x6d, 0x22, 0xe5, 0x61, 0xdc, 0xf6, 0x19, 0x37, 0x91, 0xf2, 0x82, 0x91, 0xf2, 0x74, 0x78, 0x32, - 0xb5, 0x94, 0xb6, 0x96, 0xd0, 0x76, 0x7f, 0xa7, 0x2f, 0x01, 0xdd, 0x9d, 0xb2, 0xd6, 0xdd, 0x49, - 0xaf, 0xd1, 0x90, 0xea, 0x16, 0xc8, 0x45, 0x67, 0xa7, 0x83, 0x99, 0xd6, 0x57, 0x72, 0xbd, 0x9d, - 0x0e, 0xb4, 0x1b, 0x6a, 0xd1, 0xdd, 0xc9, 0x84, 0x72, 0x41, 0x77, 0x27, 0x83, 0x00, 0x48, 0x77, - 0x27, 0xdb, 0xf2, 0x24, 0xdd, 0x9d, 0xe8, 0xee, 0x64, 0x99, 0x05, 0xd3, 0xdd, 0x29, 0x0b, 0x07, - 0xdf, 0x04, 0x00, 0x98, 0x03, 0x02, 0x53, 0x80, 0x60, 0x1c, 0x18, 0x8c, 0x03, 0x84, 0x51, 0xa0, - 0xc8, 0xa6, 0x22, 0x42, 0xce, 0xaa, 0x25, 0xb9, 0x94, 0x4b, 0x50, 0xab, 0x20, 0x64, 0x0d, 0x8c, - 0xac, 0x81, 0x92, 0x15, 0x70, 0x92, 0x05, 0x29, 0x61, 0xb0, 0x9a, 0xce, 0x00, 0x39, 0xab, 0x2b, - 0x87, 0xe6, 0x02, 0xd4, 0x3e, 0xac, 0x2f, 0x3d, 0x86, 0x0b, 0xd0, 0x64, 0x4b, 0x4f, 0xce, 0x6a, - 0x3e, 0xf6, 0x00, 0xf7, 0xa0, 0x59, 0x39, 0x43, 0xe4, 0xac, 0x42, 0xe5, 0xa1, 0xf2, 0x50, 0x79, - 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0xce, 0xaa, 0xc8, 0xbb, 0x92, 0xb3, 0x8a, 0x39, 0xc0, 0x1c, 0x60, - 0x0e, 0xf2, 0x6e, 0x0e, 0xc8, 0x59, 0x45, 0x42, 0xd2, 0x5c, 0x5e, 0x72, 0x56, 0x4b, 0x2b, 0x21, - 0x91, 0xb3, 0x8a, 0x72, 0x94, 0x63, 0x12, 0x4f, 0xce, 0x2a, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x2f, - 0x1a, 0xa9, 0x27, 0x67, 0xb5, 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, 0x6d, 0x72, 0x56, 0x61, - 0xdc, 0xf6, 0x19, 0x37, 0x39, 0xab, 0x2a, 0x89, 0x6d, 0x33, 0x59, 0x56, 0xf4, 0x77, 0x52, 0xa2, - 0x31, 0xf4, 0x77, 0xca, 0xaa, 0xff, 0x43, 0xac, 0x7c, 0x2a, 0xfe, 0x0d, 0xb1, 0xf2, 0x02, 0x87, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x4f, 0x1b, 0x59, + 0xd6, 0xfe, 0xfd, 0x3e, 0x9f, 0x02, 0x59, 0xf3, 0xa2, 0x23, 0xa5, 0x02, 0x18, 0x03, 0x4d, 0xa4, + 0xbf, 0x1e, 0x91, 0xc4, 0xe9, 0xe1, 0x1e, 0x02, 0x16, 0x90, 0xcc, 0xdd, 0x4a, 0x33, 0xa8, 0x62, + 0x17, 0xa4, 0x34, 0xa6, 0xec, 0xbb, 0x5c, 0xa6, 0x83, 0xba, 0xf9, 0xee, 0x8f, 0x7c, 0xc4, 0x47, + 0x5c, 0xb5, 0xf7, 0xda, 0xbb, 0x4e, 0xbf, 0x68, 0xa6, 0x3b, 0x9d, 0xe0, 0x5d, 0xae, 0x7d, 0xb8, + 0xd6, 0xb5, 0xae, 0xbd, 0x0e, 0x7f, 0xbd, 0xda, 0xda, 0xda, 0xda, 0xaa, 0x9c, 0xb9, 0xf7, 0x5e, + 0xe5, 0xdd, 0x56, 0xa5, 0xe5, 0x3d, 0xf8, 0x4d, 0xaf, 0xf2, 0x66, 0xf4, 0xa7, 0xff, 0xf2, 0x83, + 0x56, 0xe5, 0xdd, 0xd6, 0xee, 0xf8, 0x3f, 0x3f, 0x74, 0x82, 0x5b, 0xff, 0xae, 0xf2, 0x6e, 0x6b, + 0x67, 0xfc, 0x07, 0x1f, 0xfd, 0xb0, 0xf2, 0x6e, 0x6b, 0x34, 0xc4, 0xf0, 0x0f, 0xdc, 0x66, 0x7b, + 0xee, 0x0f, 0xe6, 0xc6, 0x1e, 0xfc, 0xe5, 0x9b, 0xf9, 0xbf, 0x9a, 0x7f, 0xc0, 0xf4, 0x8f, 0x17, + 0x1f, 0x34, 0xfd, 0x8b, 0x46, 0xe8, 0xdd, 0xfa, 0x3f, 0x97, 0x1e, 0x31, 0xf7, 0x98, 0x4e, 0xd3, + 0x59, 0x7e, 0xd2, 0xf0, 0x27, 0x2e, 0x3b, 0xfd, 0xb0, 0xe9, 0xad, 0xfc, 0xf4, 0xe8, 0xdb, 0x78, + 0x8f, 0x7f, 0x76, 0xc2, 0xc1, 0x17, 0xaa, 0x74, 0x47, 0x0f, 0x7a, 0xb3, 0xfa, 0x07, 0xff, 0xe9, + 0xf6, 0x8e, 0xc3, 0xbb, 0xfe, 0xbd, 0x17, 0x44, 0x95, 0x77, 0x5b, 0x51, 0xd8, 0xf7, 0xd6, 0xfc, + 0xe0, 0xcc, 0x4f, 0x4d, 0xbe, 0xd7, 0xd2, 0x0f, 0x3e, 0xcd, 0xfd, 0xc9, 0xd3, 0xc2, 0x1b, 0x2f, + 0x4e, 0xf1, 0xec, 0x54, 0x3b, 0x3d, 0x2f, 0xea, 0xad, 0x7f, 0x9d, 0x99, 0x79, 0x1f, 0xfd, 0xe4, + 0x9a, 0x2f, 0xb9, 0x7a, 0x11, 0x36, 0x2e, 0x46, 0x9c, 0x45, 0x89, 0xbf, 0x38, 0x71, 0x17, 0x29, + 0xf1, 0x62, 0x25, 0x5e, 0xb4, 0x44, 0x8b, 0xb7, 0x7a, 0x11, 0xd7, 0x2c, 0xe6, 0xc6, 0x45, 0x5d, + 0x5c, 0xdc, 0xcd, 0xb3, 0xb0, 0xb0, 0xc6, 0x9b, 0xe6, 0xe0, 0xe5, 0xa5, 0x8e, 0xbd, 0xe4, 0x49, + 0x96, 0x3e, 0xf9, 0x16, 0x48, 0xba, 0x15, 0x94, 0xb7, 0x84, 0xf2, 0xd6, 0x50, 0xda, 0x22, 0x2f, + 0x6f, 0x95, 0x0d, 0x5b, 0x26, 0xf6, 0xd6, 0x99, 0xdb, 0x42, 0x5e, 0x10, 0x85, 0xbe, 0xd7, 0x8b, + 0x3f, 0x83, 0xb3, 0xdb, 0x69, 0xf2, 0xe1, 0x98, 0x53, 0x11, 0x6f, 0x6b, 0x25, 0xde, 0x62, 0x2a, + 0x5b, 0x4d, 0x7d, 0xcb, 0xa9, 0x6e, 0x3d, 0xed, 0x2d, 0xa8, 0xbd, 0x15, 0xb5, 0xb6, 0x64, 0xbc, + 0xad, 0x19, 0x73, 0x8b, 0x26, 0xde, 0xaa, 0x4b, 0x5b, 0xf6, 0x31, 0xf9, 0xbc, 0x2f, 0x6e, 0xdc, + 0xc7, 0xa4, 0xf3, 0x9e, 0x6c, 0xfb, 0x2a, 0x6f, 0x63, 0x9d, 0xed, 0xac, 0xbf, 0xad, 0x75, 0xb7, + 0xb7, 0xd8, 0x36, 0x17, 0xdb, 0xee, 0x22, 0xdb, 0x3e, 0xd9, 0xf6, 0x4f, 0x78, 0x0c, 0x94, 0x8f, + 0xc3, 0xcc, 0xb1, 0x88, 0xfc, 0x4e, 0xd0, 0x53, 0x5f, 0xad, 0xe7, 0xc3, 0x31, 0x1a, 0x48, 0x71, + 0x8a, 0xd5, 0x8e, 0x88, 0xf6, 0x51, 0x91, 0x38, 0x32, 0x72, 0x47, 0x47, 0xea, 0x08, 0x89, 0x1f, + 0x25, 0xf1, 0x23, 0x25, 0x7a, 0xb4, 0xd4, 0x8e, 0x98, 0xe2, 0x51, 0xd3, 0x3e, 0x72, 0xd3, 0x01, + 0x9a, 0x93, 0x3d, 0xab, 0xb9, 0xc8, 0x93, 0x6d, 0x37, 0x1e, 0x4f, 0x73, 0x41, 0xf4, 0x0e, 0xa2, + 0xd8, 0x81, 0x94, 0x3c, 0x98, 0xf2, 0x07, 0x54, 0xfa, 0xa0, 0x1a, 0x3b, 0xb0, 0xc6, 0x0e, 0xae, + 0x91, 0x03, 0xac, 0x77, 0x90, 0x35, 0x0f, 0xb4, 0xd8, 0xc1, 0x9e, 0x0e, 0x74, 0xdb, 0x09, 0xff, + 0x74, 0xc3, 0x96, 0x1f, 0xdc, 0x39, 0x23, 0xeb, 0x28, 0xb7, 0x4f, 0x26, 0x3b, 0x79, 0xf9, 0x11, + 0x42, 0xcb, 0x3a, 0x86, 0x81, 0x1d, 0xa1, 0xe1, 0xa4, 0xe0, 0xc0, 0x04, 0x2c, 0x98, 0x83, 0x07, + 0x53, 0x30, 0x61, 0x1c, 0x2e, 0x8c, 0xc3, 0x86, 0x51, 0xf8, 0x90, 0x81, 0x11, 0x21, 0x38, 0x99, + 0xbe, 0xe9, 0xd5, 0x63, 0xd7, 0x33, 0xb3, 0x5f, 0xfd, 0x96, 0x17, 0x44, 0x7e, 0xf4, 0x18, 0x7a, + 0xb7, 0x92, 0x9b, 0x76, 0xc2, 0x04, 0xf6, 0x05, 0xc7, 0x3c, 0x19, 0x7f, 0xd5, 0xf7, 0x6e, 0xcf, + 0xc0, 0x71, 0x98, 0x4c, 0xc8, 0xa7, 0xf3, 0x8b, 0x7f, 0x1f, 0x5f, 0x7c, 0x3c, 0x39, 0xfb, 0xed, + 0xe6, 0xf8, 0xc3, 0xd5, 0xc9, 0xf9, 0x99, 0xf4, 0xb1, 0xf8, 0xea, 0xb6, 0xfb, 0x43, 0xe9, 0xeb, + 0x9b, 0xe8, 0xb8, 0x83, 0x5f, 0x7f, 0x89, 0x8f, 0x38, 0x37, 0x35, 0x1f, 0x2f, 0xce, 0x1b, 0x15, + 0xf1, 0x47, 0x3c, 0xbd, 0xc9, 0xdb, 0x3c, 0x5c, 0xd4, 0xff, 0xa7, 0xfe, 0xe1, 0x8a, 0x99, 0xd8, + 0xaa, 0x1c, 0x7f, 0xf8, 0x50, 0x6f, 0x98, 0x98, 0x09, 0xd1, 0x11, 0xaf, 0xb3, 0x66, 0x15, 0x5e, + 0x65, 0x60, 0xa7, 0x54, 0xda, 0x1d, 0x73, 0xd4, 0x72, 0x66, 0x6c, 0x21, 0x0b, 0xf8, 0xd1, 0xbb, + 0x75, 0xfb, 0xed, 0xa1, 0xa9, 0x3f, 0x3d, 0xff, 0xed, 0xe6, 0xec, 0xfc, 0xac, 0x0e, 0x5d, 0x85, + 0xae, 0x42, 0x57, 0xa1, 0xab, 0xa5, 0xa6, 0xab, 0x03, 0x30, 0x84, 0xa7, 0x2e, 0xcf, 0xc9, 0xd0, + 0x40, 0xc0, 0xd0, 0x86, 0x73, 0x71, 0xf9, 0xfb, 0xe5, 0xe9, 0xf9, 0x6f, 0xb0, 0x34, 0xeb, 0x2c, + 0x2d, 0x55, 0x29, 0xf2, 0x38, 0x08, 0x3a, 0x91, 0x2b, 0xc6, 0xef, 0x2a, 0xbd, 0xe6, 0x0f, 0xef, + 0xde, 0xed, 0xba, 0xd1, 0x8f, 0xc1, 0xbe, 0xda, 0xee, 0x74, 0xbd, 0x60, 0x74, 0x6b, 0x30, 0xb0, + 0x64, 0xdb, 0xe3, 0xff, 0x0f, 0xe3, 0xb9, 0x26, 0xbf, 0xd9, 0x9e, 0x89, 0xd6, 0x98, 0xfe, 0xfe, + 0x71, 0x7b, 0x7c, 0xdb, 0xb7, 0x3d, 0xbe, 0x73, 0x78, 0x95, 0xce, 0x14, 0x6b, 0x4c, 0x6f, 0xa5, + 0x17, 0xb9, 0x91, 0x27, 0x77, 0xf9, 0x32, 0x1a, 0x2e, 0x63, 0x77, 0x2f, 0x55, 0xee, 0x5e, 0x32, + 0xc0, 0x4e, 0xb9, 0x7b, 0x49, 0xe0, 0x22, 0x72, 0xf7, 0x82, 0x33, 0x8b, 0x33, 0x8b, 0x33, 0x8b, + 0x33, 0xcb, 0xdd, 0x4b, 0xd1, 0x7c, 0x5a, 0xee, 0x5e, 0xb8, 0x7b, 0x99, 0x9f, 0x09, 0xee, 0x5e, + 0x52, 0xf2, 0xea, 0xb9, 0x7b, 0xe1, 0xee, 0x05, 0xba, 0x0a, 0x5d, 0x85, 0xae, 0x96, 0x9c, 0xae, + 0x72, 0xf7, 0xb2, 0x7a, 0x4e, 0xb8, 0x7b, 0xe1, 0xee, 0x25, 0x75, 0x96, 0xc6, 0xdd, 0xcb, 0x4b, + 0x77, 0x2f, 0xa3, 0x2b, 0x87, 0xb4, 0xae, 0x5e, 0xac, 0xe6, 0xda, 0x08, 0xad, 0x85, 0xf8, 0x1a, + 0x54, 0xb4, 0x2e, 0xa0, 0xc2, 0x7e, 0x33, 0x0a, 0x26, 0x9e, 0x60, 0xb3, 0x7d, 0x73, 0xdc, 0x6c, + 0x5f, 0x7a, 0xd1, 0xe0, 0x5f, 0xf5, 0xc1, 0x43, 0x6e, 0x8e, 0xc7, 0x0f, 0x79, 0x65, 0x67, 0x81, + 0x14, 0x16, 0x47, 0x37, 0x87, 0x49, 0x26, 0x77, 0x89, 0xe4, 0x41, 0x13, 0x1e, 0x04, 0xc9, 0x83, + 0x06, 0x01, 0x4d, 0x3b, 0x79, 0xb0, 0xe5, 0xf5, 0x9a, 0xa1, 0xdf, 0x15, 0x31, 0x4f, 0x33, 0x05, + 0x7a, 0x9e, 0x07, 0x95, 0xb9, 0xca, 0xde, 0x21, 0x8d, 0x30, 0x05, 0xa7, 0x9f, 0xab, 0xec, 0x0c, + 0xf0, 0x47, 0x31, 0x27, 0x7e, 0x26, 0xc6, 0x24, 0xf4, 0x83, 0x3b, 0x89, 0xfd, 0x36, 0x31, 0x98, + 0xbf, 0xe6, 0x31, 0x70, 0xc7, 0xfb, 0xbf, 0xbe, 0x17, 0x34, 0x3d, 0xc7, 0x6f, 0x09, 0x86, 0xef, + 0xcc, 0x0c, 0x0a, 0xf2, 0x81, 0x7c, 0x20, 0x5f, 0xa6, 0x90, 0xaf, 0xef, 0x07, 0xd1, 0x5e, 0x55, + 0x10, 0xf9, 0x0e, 0x05, 0x86, 0xba, 0x70, 0x83, 0x3b, 0x4f, 0x4c, 0xdf, 0x13, 0x14, 0x7b, 0x3f, + 0xfb, 0x81, 0x81, 0xfb, 0x03, 0xd1, 0x5b, 0x9e, 0xe9, 0xb0, 0x43, 0x95, 0xd4, 0xc0, 0xb8, 0x9f, + 0xc2, 0x91, 0x8b, 0xfe, 0xd1, 0xbf, 0xf3, 0x87, 0x75, 0x0c, 0x77, 0xe4, 0xe4, 0x31, 0x41, 0x91, + 0xfb, 0xb3, 0xfb, 0x33, 0x77, 0x4b, 0x55, 0xab, 0x1e, 0xd5, 0x8e, 0x0e, 0x0e, 0xab, 0x47, 0xfb, + 0x39, 0x5a, 0xb3, 0x8c, 0x48, 0x9a, 0xd7, 0xc8, 0x75, 0x69, 0xc8, 0x75, 0x3a, 0x61, 0xea, 0x76, + 0x84, 0x34, 0x3f, 0xe8, 0xf6, 0x23, 0xc7, 0x0f, 0x22, 0x2f, 0xbc, 0x75, 0x75, 0xaa, 0xa7, 0x4d, + 0x6f, 0xfa, 0x16, 0x06, 0x44, 0x5a, 0x43, 0x5a, 0x43, 0x5a, 0x8b, 0x33, 0x00, 0x75, 0xb9, 0x70, + 0x2b, 0x71, 0x2b, 0xb3, 0xe7, 0x56, 0x66, 0xf6, 0x42, 0x76, 0xc1, 0xd4, 0xe6, 0x38, 0x29, 0x6e, + 0xfa, 0x0e, 0x4e, 0xe8, 0xdd, 0xca, 0x21, 0xe0, 0xfc, 0xb0, 0x00, 0x61, 0x1c, 0x20, 0xf4, 0x6f, + 0xc1, 0x41, 0x03, 0x38, 0xe8, 0xdf, 0x92, 0x22, 0x27, 0xcb, 0x73, 0xcc, 0xf0, 0x1d, 0xe1, 0xe3, + 0x2e, 0x7e, 0xec, 0x4d, 0x1c, 0x7f, 0x63, 0x30, 0x60, 0x0a, 0x0e, 0x8c, 0xc3, 0x82, 0x71, 0x78, + 0x30, 0x09, 0x13, 0xc2, 0xda, 0x93, 0x54, 0x22, 0x80, 0x10, 0x7c, 0x2c, 0x73, 0x06, 0x73, 0x41, + 0xba, 0xba, 0x2a, 0xc6, 0x26, 0x70, 0x91, 0x56, 0x4a, 0xa5, 0x41, 0xc6, 0x24, 0xd8, 0x18, 0x07, + 0x1d, 0xd3, 0xe0, 0x63, 0x0d, 0x84, 0xac, 0x81, 0x91, 0x0d, 0x50, 0x92, 0x05, 0x27, 0x61, 0x90, + 0x9a, 0x4e, 0x80, 0x78, 0x22, 0xc4, 0xd2, 0x6e, 0x6f, 0x7b, 0xee, 0xad, 0x6c, 0x32, 0xc4, 0x12, + 0x73, 0x39, 0x34, 0x30, 0x76, 0x63, 0xea, 0xb5, 0x0e, 0xb6, 0xc5, 0xbb, 0x29, 0x40, 0xf6, 0x16, + 0xff, 0x60, 0xfc, 0xdf, 0xc3, 0x30, 0xd3, 0x57, 0xd9, 0xdc, 0x38, 0x92, 0xf7, 0x69, 0xbd, 0xfe, + 0x77, 0x0b, 0xf6, 0x68, 0xee, 0x29, 0x98, 0x24, 0x4c, 0x12, 0x26, 0x09, 0x93, 0x84, 0x49, 0x8a, + 0x69, 0x92, 0xbe, 0x3d, 0x9b, 0xa4, 0xff, 0xd7, 0xec, 0x87, 0xa1, 0x17, 0x44, 0xbf, 0xbc, 0xde, + 0x7e, 0xfb, 0x76, 0x7b, 0xfa, 0x13, 0xd7, 0xe3, 0x8f, 0xcc, 0xe2, 0x6c, 0x6f, 0xc5, 0x9f, 0x4d, + 0x47, 0x6e, 0x79, 0x3f, 0x33, 0x6b, 0xdd, 0x32, 0xe5, 0xfd, 0xd5, 0x7f, 0x46, 0xb2, 0x29, 0x89, + 0xe6, 0x84, 0x84, 0x4e, 0xd3, 0xf1, 0x7e, 0x46, 0xef, 0x22, 0xaf, 0xed, 0xdd, 0x7b, 0x51, 0xf8, + 0xe8, 0x74, 0x02, 0xa7, 0xf9, 0x63, 0x18, 0x73, 0x65, 0x54, 0x5c, 0xb8, 0x75, 0xdb, 0x3d, 0x93, + 0xea, 0x42, 0xd6, 0x84, 0x85, 0x6b, 0x29, 0xa1, 0x55, 0xf6, 0x7a, 0xe6, 0x99, 0xd2, 0x99, 0xba, + 0xa6, 0x99, 0xbb, 0x95, 0x10, 0xb9, 0xb4, 0x91, 0x5b, 0x18, 0x89, 0x02, 0x15, 0x32, 0x15, 0x0e, + 0x97, 0xc9, 0xaf, 0x40, 0xa5, 0xc3, 0x25, 0x83, 0x24, 0xad, 0xee, 0x56, 0x51, 0x77, 0xf3, 0xc3, + 0x62, 0x51, 0x77, 0x51, 0x77, 0x71, 0xa5, 0x71, 0xa5, 0x71, 0xa5, 0x71, 0xa5, 0x71, 0xa5, 0x51, + 0x77, 0xd7, 0x33, 0x5a, 0xd4, 0x5d, 0x4c, 0x12, 0x26, 0x09, 0x93, 0x84, 0x49, 0xca, 0xac, 0x49, + 0x42, 0xdd, 0x4d, 0xcf, 0xfb, 0xcb, 0xb9, 0x04, 0x27, 0x50, 0xd0, 0x4a, 0x50, 0x81, 0x23, 0xd6, + 0x3d, 0xf1, 0x0a, 0x56, 0x44, 0x54, 0xcb, 0x4d, 0x65, 0xb1, 0x4e, 0x06, 0x5f, 0xe1, 0x64, 0xf2, + 0xdc, 0x9b, 0xe9, 0xef, 0x2e, 0xbc, 0x5b, 0x1a, 0xd1, 0xd0, 0x88, 0x26, 0x01, 0xed, 0x24, 0xd9, + 0x88, 0x64, 0xa3, 0xbc, 0x03, 0x30, 0x55, 0x20, 0x33, 0xb3, 0x16, 0x66, 0xab, 0x41, 0xce, 0x9b, + 0xbd, 0x4c, 0xe7, 0xb2, 0x77, 0x1f, 0x6a, 0x02, 0x09, 0xec, 0x83, 0x51, 0xc8, 0x5a, 0x1f, 0xe0, + 0x69, 0xf7, 0xbf, 0x91, 0x73, 0xef, 0x46, 0xcd, 0x1f, 0xe4, 0xae, 0x2b, 0x58, 0xa3, 0xe7, 0xd9, + 0x23, 0x83, 0x5d, 0x6d, 0x0b, 0x92, 0xc1, 0x6e, 0xf9, 0xb0, 0x42, 0x2d, 0x0d, 0x1e, 0xe6, 0x6c, + 0x10, 0x4c, 0xb1, 0x34, 0xce, 0x96, 0xd7, 0x8b, 0xfc, 0x60, 0x48, 0x8b, 0x1c, 0xb7, 0xd5, 0x0a, + 0xbd, 0x5e, 0x4f, 0x3e, 0xe8, 0x67, 0xd5, 0x43, 0x68, 0x1f, 0x93, 0x35, 0xb8, 0x30, 0x05, 0x1b, + 0xc6, 0xe1, 0xc3, 0x38, 0x8c, 0x58, 0x80, 0x13, 0x39, 0xe9, 0x71, 0x2b, 0x1f, 0xad, 0x64, 0xba, + 0x0f, 0x35, 0x47, 0x7c, 0x17, 0x3c, 0x97, 0xa6, 0x15, 0x1c, 0xb3, 0xe1, 0x46, 0x91, 0x17, 0x06, + 0xe2, 0xbd, 0x58, 0x2a, 0xff, 0xf9, 0xe5, 0x97, 0x6f, 0x3b, 0xce, 0xd1, 0xf5, 0xdf, 0xdf, 0x76, + 0x9d, 0xa3, 0xeb, 0xd1, 0x6f, 0x77, 0x87, 0xff, 0x1a, 0xfd, 0xbe, 0xfa, 0x6d, 0xc7, 0xa9, 0x4d, + 0x7e, 0xbf, 0xff, 0x6d, 0xc7, 0xd9, 0xbf, 0x7e, 0xfd, 0xc7, 0x1f, 0x6f, 0x5f, 0xff, 0xb5, 0xf7, + 0x94, 0xfc, 0x83, 0xdb, 0xe3, 0x87, 0xbd, 0xfe, 0xfb, 0x97, 0x6f, 0xbb, 0x4e, 0xf5, 0x7a, 0xf2, + 0x1f, 0x7b, 0xdf, 0x76, 0x9c, 0xea, 0xf5, 0xeb, 0xd7, 0xff, 0x90, 0xdb, 0xc3, 0xd7, 0x05, 0x0a, + 0x83, 0x6d, 0xf5, 0x9a, 0x5d, 0x03, 0x06, 0x71, 0x30, 0x2a, 0x16, 0x10, 0x0b, 0x88, 0x05, 0x2c, + 0xad, 0x05, 0x14, 0xc4, 0x80, 0x59, 0x1c, 0x90, 0x6c, 0xa2, 0x26, 0x5b, 0xa3, 0x78, 0xf2, 0xcb, + 0x40, 0x78, 0x84, 0x89, 0x9a, 0xc5, 0x86, 0x00, 0x76, 0x69, 0x78, 0x43, 0x35, 0x8c, 0xa7, 0xe3, + 0x1b, 0xac, 0x8b, 0x2b, 0x7c, 0xd8, 0xe6, 0x97, 0xd4, 0xfd, 0x99, 0xfb, 0x25, 0x3d, 0xd8, 0xcb, + 0xf1, 0x9a, 0x66, 0x34, 0x66, 0xa6, 0x48, 0xe4, 0xf2, 0x47, 0xa7, 0xeb, 0xb4, 0xfd, 0x7b, 0x3f, + 0x92, 0x67, 0x98, 0xcf, 0x43, 0x43, 0x33, 0xa1, 0x99, 0xd0, 0xcc, 0xd2, 0xd2, 0xcc, 0xbe, 0x1f, + 0x44, 0xbf, 0xc2, 0x33, 0xe1, 0x99, 0xf0, 0xcc, 0xc2, 0xf2, 0xcc, 0xea, 0xfe, 0x3e, 0x44, 0x13, + 0xa2, 0xb9, 0x7e, 0x19, 0xbb, 0x61, 0x27, 0xea, 0x34, 0x3b, 0x6d, 0x79, 0x9e, 0x39, 0x1d, 0x19, + 0x9a, 0x09, 0xcd, 0x84, 0x66, 0x96, 0x96, 0x66, 0xfa, 0x5d, 0x67, 0x02, 0x05, 0x4e, 0x34, 0x78, + 0x8a, 0x81, 0x4b, 0xbd, 0x23, 0xc1, 0x31, 0xc7, 0x33, 0x91, 0x79, 0xc6, 0x69, 0x8a, 0xc6, 0x1b, + 0xa4, 0xf3, 0x86, 0x69, 0xbd, 0xb9, 0xc9, 0xb6, 0x42, 0xf3, 0x2d, 0x71, 0x43, 0x5b, 0xb4, 0xdf, + 0x26, 0x53, 0x34, 0xe8, 0x06, 0x58, 0x71, 0x07, 0xd2, 0x5a, 0xfa, 0xea, 0x7e, 0xad, 0x40, 0x8b, + 0xff, 0x2a, 0x1f, 0xa3, 0x5e, 0x67, 0x39, 0x53, 0xd9, 0xa0, 0xa1, 0xf2, 0x5b, 0x5e, 0x10, 0xf9, + 0xd1, 0xa3, 0xe1, 0x2c, 0x65, 0x13, 0xf6, 0xea, 0x64, 0xfc, 0xd5, 0xdf, 0xbb, 0x3d, 0x83, 0x79, + 0xff, 0x93, 0x89, 0x3a, 0x69, 0xdc, 0x34, 0x2e, 0xce, 0xaf, 0xce, 0x3f, 0x9c, 0x9f, 0x56, 0x4c, + 0xea, 0x03, 0x3d, 0x63, 0x16, 0xd8, 0xac, 0x15, 0x5e, 0x9c, 0xac, 0xdf, 0x2e, 0xea, 0x95, 0x3c, + 0x9a, 0x14, 0x7b, 0x33, 0x74, 0xf5, 0xa1, 0xc1, 0x0c, 0xbd, 0x7c, 0xe0, 0x4e, 0x3e, 0x33, 0x43, + 0x2f, 0xce, 0xd0, 0xc9, 0x87, 0xcf, 0x6c, 0xa2, 0x97, 0xa7, 0xe8, 0xcb, 0x47, 0x66, 0xe8, 0xe5, + 0x19, 0x3a, 0xad, 0x5e, 0x31, 0x45, 0x1b, 0xce, 0xd9, 0x6f, 0x9c, 0xb3, 0x0d, 0x53, 0x74, 0x71, + 0xf9, 0x95, 0x29, 0x7a, 0x79, 0x8a, 0x8e, 0xbf, 0x5c, 0xfd, 0xb3, 0x92, 0x33, 0x57, 0xeb, 0x9a, + 0x1b, 0x24, 0xcb, 0xdf, 0x47, 0xa4, 0x1c, 0xf4, 0xf0, 0x0e, 0xc1, 0x5c, 0x8a, 0xd8, 0xc2, 0xf8, + 0xdc, 0x26, 0x69, 0xcf, 0x28, 0xb7, 0x49, 0x0b, 0x0f, 0xe0, 0x36, 0x49, 0xd6, 0xf4, 0x91, 0x1d, + 0x46, 0x76, 0x58, 0x9e, 0xad, 0x22, 0x15, 0x82, 0x56, 0x56, 0xa5, 0xe9, 0x3e, 0xd4, 0x72, 0xdc, + 0x83, 0x9c, 0x7a, 0x68, 0x56, 0x59, 0x07, 0xa5, 0x2b, 0x28, 0x5d, 0x91, 0xf0, 0xbd, 0x28, 0x5d, + 0x81, 0x73, 0x82, 0x73, 0x82, 0x73, 0x82, 0x73, 0x82, 0x73, 0x82, 0x73, 0x62, 0x50, 0xb2, 0xa3, + 0x74, 0x05, 0x16, 0x10, 0x0b, 0x88, 0x05, 0xa4, 0x74, 0x85, 0xd8, 0x2f, 0x52, 0x0a, 0xe7, 0x86, + 0x27, 0xa5, 0x70, 0xf5, 0x92, 0x52, 0xba, 0x22, 0xdd, 0x35, 0xe5, 0x3e, 0xd8, 0x38, 0xb9, 0xa4, + 0x74, 0x05, 0x34, 0x13, 0x9a, 0x09, 0xcd, 0xa4, 0x74, 0x05, 0x3c, 0x13, 0x9e, 0x09, 0xcf, 0x54, + 0x5d, 0x52, 0x4a, 0x57, 0x40, 0x34, 0x5f, 0x5c, 0x46, 0x4a, 0x57, 0x40, 0x33, 0xa1, 0x99, 0xd0, + 0x4c, 0x4a, 0x57, 0x2c, 0xcc, 0x04, 0xa5, 0x2b, 0x28, 0x5d, 0x61, 0x97, 0xe6, 0x5b, 0xe2, 0x86, + 0xb6, 0x68, 0xbf, 0x4d, 0xa6, 0x68, 0xd0, 0x0d, 0xb0, 0xe2, 0x0e, 0xa4, 0xb5, 0xf4, 0x94, 0xae, + 0x48, 0x61, 0x54, 0x4a, 0x57, 0x50, 0xba, 0xe2, 0xc5, 0x89, 0xa2, 0x74, 0x45, 0xb2, 0xc9, 0xa2, + 0x74, 0xc5, 0xa6, 0x19, 0xa2, 0x74, 0xc5, 0xc6, 0x03, 0x47, 0xe9, 0x8a, 0x0d, 0x33, 0x44, 0xe9, + 0x8a, 0x8d, 0x53, 0x44, 0xe9, 0x8a, 0x4d, 0x33, 0x44, 0xe9, 0x8a, 0xcd, 0xe7, 0x8c, 0xd2, 0x15, + 0x9b, 0xa6, 0x88, 0xd2, 0x15, 0x1b, 0xa7, 0x88, 0xd2, 0x15, 0x5b, 0xdc, 0x20, 0xd9, 0xd8, 0xea, + 0x94, 0xae, 0xe0, 0x36, 0x69, 0x3c, 0x3e, 0xb7, 0x49, 0xeb, 0x1e, 0xc0, 0x6d, 0x92, 0x98, 0x88, + 0x44, 0x76, 0x18, 0xd9, 0x61, 0xa6, 0xad, 0x22, 0xa5, 0x2b, 0xd6, 0x96, 0xae, 0x18, 0x55, 0x6c, + 0x48, 0xab, 0x72, 0xc5, 0x2b, 0x8b, 0x0b, 0x22, 0xb5, 0x10, 0xb2, 0x0b, 0x50, 0xd1, 0x2a, 0xde, + 0x11, 0xf6, 0x9b, 0x51, 0x30, 0x46, 0xd2, 0xe3, 0x66, 0xfb, 0xe6, 0xb8, 0xd9, 0xbe, 0xf4, 0xa2, + 0xc1, 0xbf, 0xea, 0x83, 0x27, 0xdc, 0x9c, 0x0c, 0x9e, 0xf0, 0xca, 0xce, 0xd2, 0x28, 0x2c, 0xcb, + 0x00, 0xfd, 0x0f, 0x94, 0x17, 0x63, 0xd6, 0x86, 0x1c, 0x28, 0xce, 0xa3, 0x66, 0xb1, 0x11, 0x6d, + 0x9e, 0x28, 0xc1, 0x0b, 0xa5, 0x79, 0xa0, 0x14, 0xef, 0x13, 0xe7, 0x79, 0xe2, 0xbc, 0xce, 0x00, + 0x8f, 0xb3, 0x0b, 0x69, 0xba, 0xc5, 0x41, 0x2a, 0xcd, 0xc9, 0xfe, 0x15, 0x2a, 0x00, 0x34, 0x1e, + 0x2f, 0x63, 0x15, 0x80, 0x76, 0xa8, 0x00, 0x94, 0x19, 0x27, 0x8d, 0x0a, 0x40, 0xb6, 0x0f, 0xf9, + 0x74, 0x20, 0x2a, 0x00, 0xa1, 0xf1, 0xa0, 0xf1, 0xa0, 0xf1, 0xa4, 0xa0, 0xf1, 0x1c, 0xa0, 0xf1, + 0x0c, 0x65, 0x17, 0xd7, 0xb9, 0x3d, 0x76, 0x3e, 0x5d, 0xff, 0xb5, 0xfb, 0xa6, 0xf6, 0xf4, 0xee, + 0xf5, 0x5f, 0x87, 0x4f, 0x8b, 0x7f, 0xf8, 0xf7, 0xaa, 0x1f, 0xdb, 0x7d, 0x73, 0xf8, 0xf4, 0x6e, + 0xcd, 0xdf, 0x1c, 0x3c, 0xbd, 0x8b, 0x39, 0xc6, 0xfe, 0xd3, 0x2f, 0x4b, 0x3f, 0x3a, 0xf8, 0xf3, + 0xea, 0xba, 0x0f, 0xd4, 0xd6, 0x7c, 0x60, 0x6f, 0xdd, 0x07, 0xf6, 0xd6, 0x7c, 0x60, 0xed, 0x57, + 0xaa, 0xae, 0xf9, 0xc0, 0xfe, 0xd3, 0xdf, 0x4b, 0x3f, 0xff, 0xcb, 0xea, 0x1f, 0x3d, 0x78, 0x7a, + 0xfd, 0xf7, 0xba, 0xbf, 0x3b, 0x7c, 0xfa, 0xfb, 0xdd, 0xeb, 0xd7, 0xdb, 0xbf, 0xec, 0x56, 0xbf, + 0xed, 0x38, 0xbf, 0x8e, 0xb4, 0xb1, 0xdd, 0xeb, 0x25, 0xc9, 0x6c, 0x24, 0x81, 0x51, 0x16, 0x69, + 0x23, 0x69, 0xb8, 0x6d, 0x77, 0xfe, 0x74, 0xda, 0xee, 0x77, 0xaf, 0x6d, 0x96, 0x37, 0xcc, 0x3c, + 0x07, 0xea, 0x00, 0x75, 0x80, 0x3a, 0x94, 0x9b, 0x3a, 0x88, 0xc3, 0xc1, 0x2c, 0x24, 0x1c, 0x92, + 0xdd, 0x2e, 0x3c, 0x38, 0xd9, 0xed, 0x96, 0xce, 0xdd, 0xfc, 0x92, 0x16, 0x20, 0xbb, 0x7d, 0x77, + 0xa7, 0xf6, 0xeb, 0xfe, 0x21, 0x19, 0xee, 0xe2, 0xa3, 0x51, 0xa7, 0x73, 0x23, 0xfd, 0xa4, 0x4e, + 0x27, 0x64, 0x13, 0xb2, 0x59, 0x6a, 0xb2, 0x49, 0x9d, 0x4e, 0x18, 0x26, 0x0c, 0xb3, 0xd0, 0x0c, + 0x93, 0x3a, 0x9d, 0x90, 0xcb, 0x97, 0x96, 0x91, 0x3a, 0x9d, 0xd0, 0x4c, 0x68, 0x26, 0x34, 0x93, + 0x3a, 0x9d, 0xf0, 0x4c, 0x78, 0x26, 0x3c, 0x53, 0x75, 0x49, 0xa9, 0xd3, 0x09, 0xd1, 0x7c, 0x71, + 0x19, 0xa9, 0xd3, 0x09, 0xcd, 0x84, 0x66, 0x42, 0x33, 0xa9, 0xd3, 0xb9, 0x30, 0x13, 0xd4, 0xe9, + 0xa4, 0x4e, 0xa7, 0x5d, 0x9a, 0x6f, 0x89, 0x1b, 0xda, 0xa2, 0xfd, 0x36, 0x99, 0xa2, 0x41, 0x37, + 0xc0, 0x8a, 0x3b, 0x90, 0xd6, 0xd2, 0x53, 0xa7, 0x33, 0x85, 0x51, 0xa9, 0xd3, 0x49, 0x9d, 0xce, + 0x17, 0x27, 0x8a, 0x3a, 0x9d, 0xc9, 0x26, 0x8b, 0x3a, 0x9d, 0x9b, 0x66, 0x88, 0x3a, 0x9d, 0x1b, + 0x0f, 0x1c, 0x75, 0x3a, 0x37, 0xcc, 0x10, 0x75, 0x3a, 0x37, 0x4e, 0x11, 0x75, 0x3a, 0x37, 0xcd, + 0x10, 0x75, 0x3a, 0x37, 0x9f, 0x33, 0xea, 0x74, 0x6e, 0x9a, 0x22, 0xea, 0x74, 0x6e, 0x9c, 0x22, + 0xea, 0x74, 0x6e, 0x71, 0x83, 0x64, 0x63, 0xab, 0x53, 0xa7, 0x93, 0xdb, 0xa4, 0xf1, 0xf8, 0xdc, + 0x26, 0xad, 0x7b, 0x00, 0xb7, 0x49, 0x62, 0x22, 0x12, 0x35, 0x1c, 0xa8, 0xe1, 0x40, 0x0d, 0x87, + 0x5c, 0x53, 0x05, 0x93, 0xe5, 0x1b, 0x96, 0x1f, 0x01, 0x61, 0x80, 0x30, 0x40, 0x18, 0xca, 0x4d, + 0x18, 0xa8, 0xdc, 0x20, 0x2d, 0x35, 0x10, 0xef, 0xbc, 0x7e, 0x7c, 0xe2, 0x9d, 0x53, 0x5b, 0x52, + 0x2a, 0x37, 0x14, 0x5d, 0xb1, 0xa2, 0x86, 0xfe, 0x9a, 0x12, 0xee, 0x07, 0xdb, 0xe3, 0xa2, 0xc7, + 0x69, 0x15, 0xd1, 0xd7, 0xaa, 0x20, 0xef, 0x46, 0x9e, 0x5c, 0xf5, 0xe7, 0xd1, 0x70, 0x19, 0x2b, + 0xfe, 0x5c, 0xa5, 0xf8, 0x73, 0x66, 0x88, 0x3c, 0xc5, 0x9f, 0x93, 0xbe, 0x17, 0xc5, 0x9f, 0xd1, + 0x01, 0xd0, 0x01, 0xd0, 0x01, 0xf2, 0xad, 0x03, 0x70, 0x71, 0xc0, 0xc5, 0x01, 0x17, 0x07, 0x96, + 0x3d, 0x36, 0x8a, 0x3f, 0x43, 0x1d, 0xa0, 0x0e, 0x50, 0x87, 0x7c, 0x53, 0x07, 0xae, 0x10, 0xa4, + 0xd5, 0x54, 0xae, 0x10, 0xd6, 0x8f, 0xcf, 0x15, 0x42, 0x6a, 0x4b, 0xca, 0x15, 0x82, 0xa1, 0xd1, + 0x28, 0xfe, 0xbc, 0x91, 0x7e, 0x52, 0xfc, 0x19, 0xb2, 0x09, 0xd9, 0x2c, 0x35, 0xd9, 0xa4, 0xf8, + 0x33, 0x0c, 0x13, 0x86, 0x59, 0x68, 0x86, 0x49, 0xf1, 0x67, 0xc8, 0xe5, 0x4b, 0xcb, 0x48, 0xf1, + 0x67, 0x68, 0x26, 0x34, 0x13, 0x9a, 0x49, 0xf1, 0x67, 0x78, 0x26, 0x3c, 0x13, 0x9e, 0xa9, 0xba, + 0xa4, 0x14, 0x7f, 0x86, 0x68, 0xbe, 0xb8, 0x8c, 0x14, 0x7f, 0x86, 0x66, 0x42, 0x33, 0xa1, 0x99, + 0x14, 0x7f, 0x5e, 0x98, 0x09, 0x8a, 0x3f, 0x53, 0xfc, 0xd9, 0x2e, 0xcd, 0xb7, 0xc4, 0x0d, 0x6d, + 0xd1, 0x7e, 0x9b, 0x4c, 0xd1, 0xa0, 0x1b, 0x60, 0xc5, 0x1d, 0x48, 0x6b, 0xe9, 0x29, 0xfe, 0x9c, + 0xc2, 0xa8, 0x14, 0x7f, 0xa6, 0xf8, 0xf3, 0x8b, 0x13, 0x45, 0xf1, 0xe7, 0x64, 0x93, 0x45, 0xf1, + 0xe7, 0x4d, 0x33, 0x44, 0xf1, 0xe7, 0x8d, 0x07, 0x8e, 0xe2, 0xcf, 0x1b, 0x66, 0x88, 0xe2, 0xcf, + 0x1b, 0xa7, 0x88, 0xe2, 0xcf, 0x9b, 0x66, 0x88, 0xe2, 0xcf, 0x9b, 0xcf, 0x19, 0xc5, 0x9f, 0x37, + 0x4d, 0x11, 0xc5, 0x9f, 0x37, 0x4e, 0x11, 0xc5, 0x9f, 0xb7, 0xb8, 0x41, 0xb2, 0xb1, 0xd5, 0x29, + 0xfe, 0xcc, 0x6d, 0xd2, 0x78, 0x7c, 0x6e, 0x93, 0xd6, 0x3d, 0x80, 0xdb, 0x24, 0x31, 0x11, 0x89, + 0x1a, 0x0e, 0xd4, 0x70, 0xa0, 0x86, 0x43, 0xae, 0xa9, 0x02, 0xc5, 0x9f, 0x21, 0x0c, 0x10, 0x06, + 0x08, 0x83, 0x3d, 0xc2, 0x40, 0xe5, 0x06, 0x69, 0xa9, 0x81, 0x78, 0xe7, 0xf5, 0xe3, 0x13, 0xef, + 0x9c, 0xda, 0x92, 0x52, 0xb9, 0xa1, 0xe8, 0x8a, 0x15, 0xc5, 0x9f, 0xd7, 0x16, 0x7f, 0x1e, 0xd5, + 0x3c, 0x4e, 0xab, 0xf6, 0xf3, 0x2b, 0x8b, 0x0b, 0x22, 0xb5, 0x10, 0xb2, 0x0b, 0x50, 0xd1, 0x2a, + 0x7f, 0x1d, 0xf6, 0x9b, 0x51, 0x30, 0x26, 0x2d, 0xc7, 0xcd, 0xf6, 0xcd, 0x71, 0xb3, 0x7d, 0xe9, + 0x45, 0x83, 0x7f, 0xd5, 0x07, 0x4f, 0xb8, 0x39, 0x19, 0x3c, 0xe1, 0x95, 0x9d, 0xa5, 0x51, 0x58, + 0x96, 0x4a, 0xbb, 0xaa, 0xbc, 0x14, 0x53, 0xb2, 0xd6, 0xae, 0x2a, 0xce, 0xa1, 0x66, 0xa9, 0x6e, + 0x6d, 0x77, 0x4c, 0xc2, 0xfd, 0x92, 0x76, 0xb7, 0xa4, 0xdc, 0x2b, 0x71, 0x77, 0x4a, 0xdc, 0x7d, + 0x32, 0xe0, 0x2e, 0xd9, 0x85, 0x33, 0xdd, 0xd2, 0xda, 0x95, 0xe6, 0x64, 0xff, 0x0a, 0x95, 0xcf, + 0x1f, 0x8f, 0x97, 0xb1, 0xfa, 0xf9, 0x3b, 0xd4, 0xcf, 0xcf, 0x8c, 0x16, 0x42, 0xfd, 0x7c, 0xdb, + 0x87, 0x7c, 0x3a, 0xd0, 0x6c, 0x89, 0xda, 0x7b, 0xb7, 0x69, 0xb6, 0x06, 0xee, 0xe0, 0x01, 0x48, + 0xa8, 0x59, 0x83, 0x09, 0x53, 0x70, 0x61, 0x1c, 0x36, 0x8c, 0xc3, 0x87, 0x05, 0x18, 0x91, 0xf5, + 0xae, 0xb3, 0x2f, 0xa1, 0xde, 0xbb, 0x4d, 0xe1, 0xf0, 0x8b, 0xad, 0xfc, 0xdd, 0xb9, 0xce, 0xde, + 0x09, 0x2e, 0x5e, 0x35, 0x56, 0x9f, 0x5e, 0xff, 0xb5, 0xff, 0xc4, 0xa5, 0x5f, 0x1c, 0x6b, 0xe5, + 0xdc, 0xbb, 0xbd, 0xff, 0x1a, 0x37, 0x59, 0xa3, 0xa7, 0x60, 0xb7, 0xb0, 0x5b, 0xd8, 0x2d, 0xec, + 0x16, 0x76, 0x0b, 0xbb, 0x95, 0x78, 0xe6, 0xbc, 0xe8, 0x87, 0x17, 0x46, 0x92, 0x9b, 0x73, 0xba, + 0x31, 0x9f, 0x87, 0xc6, 0x42, 0x61, 0xa1, 0xb0, 0x50, 0xa5, 0xb5, 0x50, 0x53, 0x20, 0xa0, 0x32, + 0x8a, 0xe0, 0xfe, 0x9c, 0xad, 0x8c, 0xb2, 0x7b, 0x60, 0x30, 0xd7, 0xfc, 0x80, 0xd2, 0x28, 0xcf, + 0x5f, 0xbc, 0x88, 0xa5, 0x51, 0x76, 0xf7, 0xf7, 0x0e, 0xa8, 0x8e, 0x12, 0x6b, 0xf5, 0x0b, 0x58, + 0x1d, 0xe5, 0x60, 0x7f, 0x7f, 0x6f, 0x9f, 0xfa, 0x28, 0xb6, 0x47, 0xa5, 0x3e, 0x0a, 0xf5, 0x51, + 0x5e, 0x9c, 0xa8, 0xfa, 0xd5, 0x3f, 0xeb, 0x17, 0x57, 0xbf, 0x37, 0xea, 0x54, 0x47, 0x89, 0x3d, + 0x55, 0x37, 0x9f, 0x1b, 0xa7, 0x97, 0xe4, 0x4c, 0xc7, 0x99, 0xa9, 0xe3, 0x0b, 0x92, 0xcb, 0x63, + 0x4d, 0xd4, 0xe9, 0x29, 0xf5, 0x2e, 0xe2, 0xcd, 0xd4, 0x49, 0xe3, 0x6b, 0x8d, 0x99, 0x8a, 0x39, + 0x53, 0x07, 0xcc, 0x54, 0x9c, 0x99, 0xba, 0x38, 0xff, 0x40, 0xd9, 0xab, 0x58, 0x33, 0xf5, 0xf5, + 0xf4, 0xf8, 0x8c, 0x5a, 0x18, 0x64, 0x16, 0x18, 0xdf, 0xf1, 0x93, 0xec, 0x53, 0x23, 0x41, 0x59, + 0x33, 0x63, 0x73, 0x6b, 0xa0, 0x3d, 0x9b, 0xdc, 0x1a, 0x2c, 0x3c, 0x80, 0x5b, 0x03, 0x59, 0xcb, + 0xc7, 0xbd, 0x36, 0xf7, 0xda, 0x19, 0xb7, 0x51, 0x86, 0x42, 0xb1, 0x16, 0x1f, 0x80, 0xb5, 0xc2, + 0x5a, 0x61, 0xad, 0xb0, 0x56, 0x58, 0xab, 0xb2, 0x59, 0x2b, 0x72, 0xb5, 0x57, 0xa5, 0x0a, 0xb7, + 0xab, 0xdb, 0xe3, 0xf4, 0xba, 0xb4, 0x52, 0xb5, 0xb5, 0xf2, 0x94, 0xdd, 0xc8, 0x93, 0xcb, 0x33, + 0x1c, 0x0d, 0x97, 0xb1, 0x34, 0xc3, 0x2a, 0x69, 0x86, 0x99, 0xb1, 0xf8, 0xa4, 0x19, 0x26, 0x7d, + 0x2f, 0xd2, 0x0c, 0x71, 0x14, 0x70, 0x14, 0x70, 0x14, 0x70, 0x14, 0x70, 0x14, 0x4a, 0x24, 0x6b, + 0x91, 0x66, 0x88, 0xdd, 0xc2, 0x6e, 0x61, 0xb7, 0xb0, 0x5b, 0xd8, 0xad, 0x3c, 0xd9, 0x2d, 0xd2, + 0x0c, 0xb1, 0x50, 0x58, 0x28, 0x2c, 0x14, 0x69, 0x86, 0x0b, 0xf3, 0x40, 0x9a, 0x21, 0x69, 0x86, + 0x2b, 0xbe, 0x38, 0x69, 0x86, 0x4a, 0x8f, 0x22, 0xcd, 0x30, 0xb3, 0xab, 0x4f, 0x9a, 0x61, 0x2a, + 0xa3, 0x92, 0x66, 0x48, 0x9a, 0xe1, 0x8b, 0x13, 0x45, 0x9a, 0x61, 0xf2, 0xa9, 0x22, 0xcd, 0x30, + 0xf6, 0x4c, 0x91, 0x66, 0x18, 0x73, 0xa2, 0x48, 0x33, 0x8c, 0x3b, 0x53, 0xa4, 0x19, 0x26, 0x98, + 0x29, 0xd2, 0x0c, 0x63, 0xcd, 0x14, 0x69, 0x86, 0x71, 0x67, 0x8a, 0x34, 0xc3, 0x2d, 0xd2, 0x0c, + 0x6d, 0xec, 0x78, 0xd2, 0x0c, 0xb9, 0x35, 0xe0, 0xd6, 0x60, 0xcd, 0x03, 0xb8, 0x35, 0x90, 0xda, + 0xbb, 0xdc, 0x6b, 0x73, 0xaf, 0x2d, 0x61, 0xa3, 0x48, 0x33, 0xc4, 0x5a, 0x61, 0xad, 0xb0, 0x56, + 0x58, 0x2b, 0xac, 0x95, 0x11, 0x6b, 0x45, 0x9a, 0xe1, 0x9a, 0x34, 0x43, 0x1a, 0xc2, 0xa6, 0x39, + 0xfd, 0x66, 0xdb, 0xc1, 0x9e, 0x56, 0xb3, 0xdc, 0x0c, 0xb6, 0xe7, 0xfd, 0x5f, 0xdf, 0x0b, 0x9a, + 0x9e, 0xe3, 0xb7, 0xf4, 0xbb, 0xc2, 0xce, 0x0e, 0xa6, 0xd7, 0x1e, 0x76, 0xa7, 0x20, 0xed, 0x61, + 0xdd, 0x66, 0x9b, 0xc6, 0xb0, 0x0a, 0xfc, 0x6a, 0x30, 0x6f, 0x39, 0x01, 0x34, 0x6d, 0xa6, 0xf4, + 0xdc, 0x54, 0xd9, 0x73, 0x6f, 0xf5, 0x2e, 0xfb, 0xa7, 0x2c, 0xe8, 0x50, 0x63, 0x8c, 0xc6, 0x18, + 0x53, 0xdf, 0xbe, 0x1d, 0xa7, 0xbf, 0x6f, 0xcf, 0x9e, 0xeb, 0x2c, 0x63, 0x99, 0x56, 0xca, 0xbb, + 0x48, 0xaa, 0xbb, 0x58, 0x7b, 0xeb, 0x2a, 0xf8, 0x05, 0x7e, 0x59, 0xc1, 0x2f, 0xed, 0x96, 0xd6, + 0x2d, 0xaf, 0xd7, 0x0c, 0xfd, 0xae, 0x08, 0xb3, 0x9e, 0xcd, 0xdf, 0x9b, 0x0e, 0x2a, 0x53, 0x75, + 0x62, 0xa7, 0xe0, 0xcd, 0xad, 0xf5, 0x8e, 0xaa, 0x29, 0x09, 0x28, 0xff, 0xf5, 0x26, 0xb4, 0x8e, + 0x72, 0x36, 0x5c, 0x5f, 0x31, 0x31, 0x67, 0xc6, 0x46, 0x86, 0x7e, 0x70, 0x27, 0xb1, 0xdf, 0xa6, + 0xba, 0x4d, 0x0e, 0x6b, 0xec, 0x0c, 0x15, 0x40, 0xaf, 0xe5, 0x74, 0x9a, 0x91, 0x37, 0x0c, 0xd6, + 0x15, 0x02, 0xbf, 0x85, 0x71, 0xc1, 0x3f, 0xf0, 0x0f, 0xfc, 0xcb, 0x14, 0xfe, 0x35, 0x3b, 0xfd, + 0x20, 0xf2, 0xc2, 0x83, 0x9a, 0x20, 0x04, 0x0a, 0x28, 0xd7, 0xc2, 0xd9, 0x42, 0x82, 0xea, 0xbf, + 0x89, 0x6c, 0x20, 0x43, 0xf9, 0x1f, 0xd3, 0x7c, 0x0f, 0xe9, 0x71, 0x0d, 0xe6, 0x76, 0x08, 0x86, + 0xe7, 0x19, 0x49, 0xdd, 0x31, 0xbd, 0x54, 0xbb, 0xbf, 0xd6, 0x6a, 0x07, 0x87, 0xb5, 0xda, 0xce, + 0xe1, 0xde, 0xe1, 0xce, 0xd1, 0xfe, 0xfe, 0xee, 0x81, 0x74, 0x5e, 0x83, 0xd1, 0xd5, 0xcb, 0xc8, + 0x05, 0xcd, 0x75, 0x8e, 0x39, 0x58, 0xd7, 0x6d, 0xfe, 0xd7, 0x08, 0x09, 0x9b, 0x0c, 0x0c, 0x0b, + 0x83, 0x85, 0xc1, 0xc2, 0x60, 0x61, 0xb0, 0x30, 0x58, 0x18, 0x2c, 0x0c, 0x16, 0x06, 0x0b, 0x9b, + 0x59, 0x16, 0x89, 0x30, 0x82, 0x25, 0x78, 0xd7, 0x0f, 0x27, 0x80, 0x7d, 0xc1, 0xbe, 0x60, 0x5f, + 0x86, 0xd8, 0x57, 0xdf, 0x0f, 0xa2, 0xbd, 0xaa, 0x20, 0xf5, 0x3a, 0x84, 0x7a, 0x41, 0xbd, 0xa0, + 0x5e, 0x4a, 0x4b, 0x55, 0xab, 0x1e, 0xd5, 0x8e, 0x0e, 0x0e, 0xab, 0x47, 0x10, 0xae, 0xfc, 0x10, + 0xae, 0x72, 0x07, 0xde, 0x6a, 0x04, 0x3d, 0xdb, 0x89, 0x27, 0x8b, 0x42, 0x37, 0xe8, 0x75, 0x3b, + 0x61, 0xa4, 0x1f, 0x53, 0xf6, 0x3c, 0x54, 0xca, 0x71, 0x65, 0x19, 0x89, 0x8b, 0x95, 0xc8, 0x5e, + 0x2a, 0x6f, 0x74, 0x99, 0x40, 0xf6, 0x51, 0xce, 0x62, 0xcc, 0x9a, 0x93, 0xfd, 0x2b, 0xe4, 0x5a, + 0x8e, 0xc7, 0xcb, 0x58, 0x3f, 0xa3, 0x1d, 0xfa, 0x19, 0x95, 0xcf, 0xb7, 0xa4, 0x9f, 0xd1, 0xe2, + 0x40, 0xb3, 0xbd, 0x1b, 0xb4, 0xcc, 0xef, 0xda, 0x4d, 0xbd, 0xf4, 0x04, 0x72, 0x92, 0xb3, 0x06, + 0x14, 0xa6, 0x00, 0xc3, 0x38, 0x70, 0x18, 0x07, 0x10, 0x0b, 0x40, 0x22, 0xec, 0xa1, 0x65, 0x3e, + 0x27, 0x79, 0x80, 0x01, 0x4e, 0xd0, 0xbf, 0x77, 0xc2, 0xa1, 0x7c, 0x44, 0xdd, 0x6d, 0xd1, 0xd9, + 0x15, 0x0b, 0x16, 0x5e, 0x3b, 0xbb, 0xbf, 0x1a, 0x18, 0xdb, 0x54, 0xf2, 0xf7, 0xf4, 0x01, 0xff, + 0xf9, 0xe5, 0xe0, 0xdb, 0x8e, 0xb3, 0x7f, 0x3d, 0xf9, 0xc7, 0xde, 0xe8, 0x77, 0x7f, 0x0f, 0xff, + 0xf9, 0xff, 0x7d, 0xdb, 0x71, 0x8e, 0x56, 0xfd, 0xf3, 0xf5, 0x1f, 0x7f, 0xbc, 0xfd, 0xe3, 0x8f, + 0xb7, 0x6a, 0x9f, 0xfd, 0x47, 0x85, 0xea, 0xbc, 0xc2, 0x90, 0xf1, 0xdd, 0x0b, 0xa9, 0x28, 0x6f, + 0x74, 0xca, 0xa7, 0x5f, 0xbc, 0x88, 0x15, 0xe5, 0x77, 0x28, 0x27, 0x1f, 0x6b, 0xe9, 0x29, 0x27, + 0x9f, 0xf9, 0xe5, 0xa7, 0x9c, 0x7c, 0xa6, 0x0d, 0x96, 0x17, 0xf4, 0xef, 0xbd, 0xd0, 0x15, 0xc8, + 0xa8, 0x7c, 0x91, 0x8a, 0xd5, 0x0c, 0x8c, 0x5d, 0x0f, 0xfa, 0xf7, 0x83, 0xe3, 0x4f, 0xc9, 0x52, + 0xe3, 0x9b, 0x71, 0x52, 0xad, 0xcd, 0x8c, 0xee, 0x32, 0x3b, 0x38, 0x92, 0x0b, 0x92, 0x0b, 0x92, + 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x92, 0x0b, 0x0c, 0x16, 0xc9, 0x05, 0xc9, 0x05, 0xc9, + 0x05, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0xa5, 0x3c, 0x92, 0x4b, 0xd4, 0xec, + 0x3a, 0xb7, 0x6d, 0xf7, 0xae, 0x27, 0x2f, 0xb8, 0x3c, 0x0f, 0x8d, 0xdc, 0x82, 0xdc, 0x82, 0xdc, + 0x52, 0x5a, 0xb9, 0xc5, 0x4c, 0x33, 0x59, 0x13, 0x4d, 0x64, 0xcd, 0x36, 0x8f, 0x9d, 0x4e, 0xc8, + 0xd5, 0x87, 0xc6, 0xcd, 0xa7, 0xd3, 0xe3, 0xdf, 0x2e, 0x2b, 0x26, 0x32, 0x72, 0xcc, 0x34, 0x8b, + 0x35, 0xdc, 0x47, 0x77, 0x30, 0x25, 0x75, 0x13, 0x4d, 0x04, 0x0d, 0xb8, 0x29, 0x16, 0xa6, 0xe2, + 0xf8, 0xc3, 0xbf, 0x98, 0x8a, 0xd1, 0x54, 0x34, 0x2e, 0xff, 0xc9, 0x54, 0x8c, 0xa6, 0xe2, 0xf2, + 0xf7, 0x33, 0xa6, 0x62, 0x0c, 0x9f, 0x27, 0x4c, 0xc5, 0x78, 0x2a, 0x3e, 0xfc, 0xfb, 0x82, 0xa9, + 0x18, 0x4d, 0xc5, 0xc5, 0xe5, 0x15, 0x53, 0x31, 0x9a, 0x8a, 0x2f, 0x17, 0xbf, 0x55, 0x32, 0xde, + 0xb7, 0xf5, 0xba, 0xa0, 0x4c, 0xfa, 0xd4, 0xef, 0x45, 0xc7, 0x51, 0x14, 0xca, 0xb2, 0xe9, 0xcf, + 0x7e, 0x50, 0x6f, 0x7b, 0x03, 0x8f, 0x64, 0x40, 0xf0, 0x82, 0x7e, 0xbb, 0x2d, 0x9b, 0x76, 0x6e, + 0x6e, 0xf0, 0xf3, 0xb0, 0xe5, 0x85, 0x5e, 0xeb, 0xfd, 0xe3, 0x78, 0x68, 0x5a, 0x42, 0x65, 0xb9, + 0x25, 0xd4, 0x34, 0x5d, 0x78, 0xdc, 0x81, 0xa3, 0x92, 0xc7, 0x92, 0x40, 0x5a, 0xdd, 0x38, 0x96, + 0xf0, 0x54, 0xa7, 0x2b, 0xc7, 0x92, 0xbb, 0x2a, 0x95, 0xb0, 0x59, 0x25, 0x61, 0x33, 0x33, 0xaa, + 0x14, 0x09, 0x9b, 0x49, 0xdf, 0x8b, 0x84, 0x4d, 0xe4, 0x6c, 0xe4, 0x6c, 0xf3, 0x00, 0x62, 0x01, + 0x48, 0xb2, 0x49, 0xc2, 0x89, 0x1e, 0x9c, 0x9b, 0x07, 0xa2, 0x07, 0x89, 0x1e, 0x24, 0x7a, 0x30, + 0xad, 0x4d, 0x4d, 0xf4, 0xa0, 0x4d, 0x1d, 0x6c, 0x8b, 0xe8, 0x41, 0xb5, 0xe7, 0x10, 0x3d, 0x98, + 0xd9, 0xa5, 0x27, 0x7a, 0x30, 0x95, 0x51, 0x89, 0x1e, 0x24, 0x7a, 0x50, 0x78, 0x6b, 0x91, 0xb0, + 0x19, 0xd7, 0x13, 0x20, 0x61, 0x13, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0x05, 0xc9, 0x05, + 0xc9, 0x05, 0x06, 0x8b, 0xe4, 0x82, 0xe4, 0x82, 0xe4, 0x82, 0xe4, 0x82, 0xe4, 0x82, 0xe4, 0x82, + 0xe4, 0x82, 0xe4, 0x52, 0x4a, 0xc9, 0x85, 0x84, 0x4d, 0xe4, 0x16, 0xe4, 0x16, 0xe4, 0x16, 0x12, + 0x36, 0xb7, 0x48, 0xd8, 0xb4, 0xef, 0xe8, 0x91, 0xb0, 0xb9, 0x7a, 0x2a, 0x48, 0xd8, 0x24, 0x61, + 0x73, 0x79, 0x2a, 0x48, 0xd8, 0x24, 0x61, 0x73, 0x79, 0x2a, 0x48, 0xd8, 0x24, 0x61, 0x73, 0x79, + 0x2a, 0x48, 0xd8, 0x4c, 0x8d, 0x49, 0x93, 0xb0, 0x39, 0x3f, 0x38, 0x09, 0x9b, 0xab, 0xdc, 0xcb, + 0xec, 0x27, 0x6c, 0x6a, 0x74, 0xb5, 0xd5, 0x9f, 0xe3, 0x92, 0x77, 0x14, 0xd6, 0xed, 0xb2, 0x3b, + 0xfa, 0x36, 0x51, 0xd8, 0x6f, 0x46, 0xc1, 0xd8, 0x2a, 0x1c, 0x37, 0xdb, 0x37, 0xc7, 0xcd, 0xf6, + 0xa5, 0x17, 0x0d, 0xfe, 0x55, 0x1f, 0x3c, 0xe6, 0xe6, 0x6a, 0xfa, 0x18, 0x5b, 0xcd, 0x8b, 0x5f, + 0x19, 0x5c, 0xce, 0xca, 0xbf, 0xbc, 0xc7, 0x61, 0x04, 0x82, 0xf7, 0x7f, 0x7d, 0x2f, 0x68, 0x7a, + 0x8e, 0xdf, 0x4a, 0x38, 0x7d, 0x7a, 0xd8, 0x2d, 0x82, 0xd1, 0x22, 0x58, 0xac, 0x87, 0xb9, 0x49, + 0xa7, 0x5d, 0xf3, 0xf4, 0x88, 0x9d, 0x1a, 0x85, 0xb3, 0xb2, 0xf9, 0x8c, 0x24, 0x3b, 0x19, 0xf1, + 0xf7, 0x77, 0xbc, 0x9f, 0x8c, 0xb9, 0x14, 0xaa, 0x4b, 0xa0, 0x39, 0xf5, 0xf1, 0xe6, 0x66, 0xf3, + 0x9b, 0xc6, 0x78, 0xcb, 0xa4, 0x7d, 0x93, 0xd5, 0xfa, 0x23, 0x27, 0x4c, 0xab, 0x4f, 0x7c, 0x87, + 0xa0, 0x72, 0x47, 0x30, 0x7b, 0x07, 0xe0, 0x36, 0xdb, 0x09, 0x36, 0xb9, 0xaa, 0xba, 0xaf, 0xad, + 0xde, 0x6b, 0xab, 0xf3, 0x8b, 0xea, 0xfb, 0xe0, 0xbd, 0x53, 0x3a, 0x59, 0x49, 0x53, 0xcb, 0x2b, + 0x2d, 0xaf, 0xd7, 0x0c, 0xfd, 0xae, 0x12, 0x1c, 0xce, 0x66, 0x89, 0x4f, 0x07, 0x49, 0x6a, 0x04, + 0x95, 0xae, 0xc9, 0x94, 0xaf, 0xc3, 0x74, 0xae, 0xbd, 0xd4, 0xb7, 0xb6, 0xee, 0x16, 0x17, 0xdb, + 0xea, 0x62, 0x5b, 0x5e, 0x64, 0xeb, 0xdb, 0xa1, 0x59, 0xca, 0x57, 0x45, 0xfa, 0x31, 0xa2, 0xcf, + 0x31, 0xa0, 0xa6, 0xcc, 0x72, 0x02, 0x78, 0x1d, 0xb3, 0x06, 0xc5, 0x23, 0x3e, 0xfc, 0x34, 0x67, + 0x9b, 0xb3, 0xcd, 0xd9, 0xce, 0xe0, 0xd9, 0x8e, 0x54, 0xe6, 0xe1, 0x39, 0xf6, 0x65, 0xf0, 0x69, + 0xce, 0x36, 0x67, 0xbb, 0x60, 0x67, 0x5b, 0x2f, 0x94, 0x43, 0x27, 0x64, 0x43, 0x26, 0x34, 0x63, + 0xfa, 0x22, 0xc7, 0x1f, 0x4e, 0x6f, 0xae, 0x7e, 0x6f, 0xd4, 0x55, 0x77, 0x8d, 0x40, 0xa4, 0x85, + 0x50, 0x35, 0xb9, 0xc1, 0x9b, 0x7c, 0x3e, 0xf9, 0xdf, 0xfa, 0xc7, 0x4a, 0x1a, 0xb5, 0xf1, 0x04, + 0x5f, 0xe2, 0xb4, 0x9a, 0xf7, 0x37, 0x38, 0x69, 0x7c, 0x3d, 0x28, 0xc0, 0x3b, 0xd4, 0x2a, 0x96, + 0x55, 0xfb, 0x6b, 0xd3, 0x38, 0x59, 0x7c, 0x51, 0x2e, 0x49, 0x71, 0x4d, 0x19, 0x3d, 0x2e, 0x91, + 0xf3, 0xa3, 0xe2, 0xf4, 0x24, 0x24, 0x44, 0x68, 0x71, 0xc5, 0xd7, 0xe2, 0x12, 0x13, 0x98, 0xe9, + 0x7a, 0xb5, 0x3d, 0xf7, 0x36, 0x19, 0x69, 0x99, 0x92, 0x95, 0xc3, 0x04, 0x9f, 0x69, 0x8c, 0xcf, + 0xec, 0xdb, 0xb7, 0xe3, 0x13, 0xb9, 0x3d, 0xdc, 0xf0, 0x16, 0x8f, 0x65, 0xb2, 0x5a, 0xb5, 0x4a, + 0x35, 0x69, 0x95, 0x45, 0xf2, 0x2a, 0x07, 0xb3, 0xa0, 0x07, 0x13, 0x91, 0x1c, 0x67, 0x1b, 0x67, + 0x1b, 0x21, 0x4d, 0x97, 0x27, 0xea, 0xf0, 0x45, 0xce, 0x36, 0x67, 0x9b, 0xb3, 0x6d, 0xf5, 0x6c, + 0x23, 0x92, 0x73, 0xb6, 0x39, 0xdb, 0x8b, 0xeb, 0x8d, 0x48, 0x3e, 0x1e, 0x07, 0x91, 0x5c, 0xfc, + 0x25, 0x10, 0xc9, 0x11, 0xc9, 0x0d, 0xe1, 0x64, 0xf1, 0x45, 0xf2, 0x04, 0x09, 0x0d, 0x32, 0x62, + 0x5c, 0x22, 0x7e, 0xa4, 0xc2, 0x8b, 0xd0, 0xc8, 0x91, 0xe2, 0x74, 0xf9, 0x4b, 0xfa, 0x1a, 0xf9, + 0x70, 0xc3, 0x4b, 0x1d, 0xcb, 0x57, 0x1a, 0x93, 0x38, 0x49, 0x20, 0x09, 0xdc, 0x7b, 0x6f, 0x2b, + 0xc6, 0x31, 0x4c, 0x96, 0x2e, 0xa2, 0x94, 0x1e, 0xa2, 0x94, 0x0e, 0x92, 0x2c, 0xfd, 0x63, 0xd3, + 0xa4, 0x24, 0x44, 0x68, 0x05, 0x64, 0xae, 0xc4, 0xba, 0xd8, 0x58, 0x9d, 0xa8, 0xf1, 0xf2, 0xc6, + 0x59, 0xbf, 0x1d, 0x56, 0xff, 0xcd, 0x9a, 0xb9, 0x88, 0x3b, 0x07, 0x09, 0xde, 0x7d, 0xf5, 0xf7, + 0x5e, 0xfe, 0x56, 0x2b, 0xbe, 0xd1, 0xa6, 0x5c, 0x88, 0x78, 0xb9, 0x0f, 0x1b, 0xae, 0x71, 0x36, + 0xda, 0x8a, 0x38, 0xb6, 0x21, 0xbe, 0x2d, 0x88, 0x8b, 0xfd, 0x89, 0xb1, 0x3e, 0x31, 0xb6, 0x27, + 0xc2, 0xf2, 0xb4, 0x76, 0xd1, 0x4b, 0xf7, 0xfd, 0xf1, 0xf6, 0x90, 0x1f, 0x44, 0x5e, 0x78, 0xeb, + 0x36, 0xbd, 0xde, 0xe6, 0x7d, 0x34, 0xf3, 0xb3, 0xec, 0xa5, 0x8c, 0xec, 0xa5, 0x4d, 0x57, 0x6e, + 0xcf, 0x8b, 0xb6, 0x79, 0x1e, 0x96, 0xd6, 0x79, 0xd3, 0x3c, 0xc4, 0xbb, 0x01, 0x8e, 0x4d, 0x37, + 0x93, 0xd0, 0xcc, 0xe4, 0xf4, 0x32, 0x29, 0xad, 0x54, 0xa6, 0x93, 0xca, 0x34, 0x52, 0x89, 0x3e, + 0xea, 0x31, 0x9d, 0xb8, 0x37, 0xb6, 0xe4, 0xdd, 0xe1, 0xc7, 0xa4, 0xe2, 0xc7, 0x24, 0x0e, 0x29, + 0xf0, 0x5b, 0xea, 0x57, 0x11, 0xc9, 0x13, 0xc5, 0xb9, 0x88, 0xb0, 0xb9, 0xb1, 0xc5, 0x36, 0xb8, + 0xc8, 0x46, 0x57, 0x14, 0xd8, 0xec, 0x5f, 0x44, 0x4c, 0xcc, 0x79, 0xf2, 0x42, 0x08, 0x5b, 0x56, + 0xae, 0x1a, 0x73, 0x22, 0x24, 0x3e, 0xd3, 0xdf, 0xe7, 0xdf, 0xa6, 0x10, 0x71, 0xeb, 0xdd, 0x85, + 0x5e, 0xaf, 0xe7, 0x4c, 0x1d, 0xc8, 0xc4, 0x26, 0x79, 0x71, 0x00, 0x6c, 0x33, 0xb6, 0xd9, 0x8e, + 0x6d, 0x9e, 0xdf, 0x79, 0xea, 0x76, 0x7a, 0x61, 0x1c, 0x35, 0x9b, 0xbd, 0x8b, 0xcd, 0xc6, 0x66, + 0x9b, 0xb1, 0xd9, 0x49, 0x0f, 0xc6, 0xf4, 0x83, 0xb3, 0x45, 0x55, 0xb4, 0xef, 0xed, 0x67, 0x07, + 0x53, 0x9c, 0x6a, 0xb5, 0xa3, 0xb2, 0x7c, 0x64, 0xaa, 0x8a, 0x03, 0x08, 0xd4, 0x52, 0xd7, 0x3f, + 0x42, 0x52, 0x47, 0x49, 0xfc, 0x48, 0x89, 0x1f, 0x2d, 0xd1, 0x23, 0xa6, 0x76, 0xd4, 0x14, 0x8f, + 0x9c, 0xf6, 0xd1, 0x5b, 0x3a, 0x82, 0x8f, 0xfa, 0xeb, 0xbc, 0x78, 0x10, 0x1f, 0x75, 0xd7, 0x59, + 0xef, 0x38, 0x6a, 0x5b, 0x32, 0x13, 0xc7, 0x53, 0xfe, 0x98, 0x4a, 0x1f, 0x57, 0x63, 0xc7, 0xd6, + 0xd8, 0xf1, 0x35, 0x72, 0x8c, 0xf5, 0x8e, 0xb3, 0xe6, 0xb1, 0x16, 0x3b, 0xde, 0xcf, 0xee, 0xde, + 0x4c, 0x71, 0x40, 0xf9, 0x26, 0xb3, 0xca, 0x95, 0x07, 0x85, 0x85, 0x26, 0xe3, 0x10, 0x60, 0x02, + 0x0a, 0xcc, 0x41, 0x82, 0x29, 0x68, 0x30, 0x0e, 0x11, 0xc6, 0xa1, 0xc2, 0x28, 0x64, 0xc8, 0x40, + 0x87, 0x10, 0x84, 0xe8, 0x0b, 0x6b, 0x1b, 0xf7, 0x6b, 0xf2, 0x08, 0x9a, 0xd8, 0x96, 0xff, 0x50, + 0x70, 0xcc, 0x99, 0x08, 0x9c, 0x61, 0x48, 0xdc, 0xf6, 0x2c, 0x6c, 0x15, 0xa9, 0x9f, 0x78, 0xa2, + 0x5c, 0xd8, 0xf8, 0x20, 0x9f, 0x20, 0x57, 0xd6, 0x12, 0xb3, 0x13, 0x73, 0xbc, 0x80, 0x77, 0xe0, + 0x3d, 0xe7, 0xf0, 0x2e, 0xc5, 0x14, 0xa7, 0x03, 0x0e, 0xdb, 0x7e, 0x79, 0x2d, 0xa7, 0xd3, 0x8c, + 0x92, 0xc8, 0xee, 0x89, 0x8f, 0xc3, 0xc2, 0x73, 0x84, 0x37, 0x80, 0x99, 0x76, 0xa7, 0xe2, 0x7c, + 0xd2, 0x24, 0xf0, 0x98, 0x07, 0x20, 0xd3, 0x40, 0x64, 0x0d, 0x90, 0xac, 0x01, 0x93, 0x15, 0x80, + 0x92, 0x05, 0x2a, 0x61, 0xc0, 0x32, 0xc7, 0x4b, 0x97, 0xf6, 0x7b, 0xb3, 0xd3, 0x0f, 0x22, 0x2f, + 0x3c, 0xa8, 0x19, 0x6c, 0x09, 0xfb, 0x2b, 0x3d, 0xcc, 0x9f, 0xbf, 0x38, 0x3d, 0xcc, 0x93, 0x3f, + 0x87, 0x1e, 0xe6, 0x99, 0x5d, 0xfa, 0xdd, 0x5f, 0x6b, 0xb5, 0x83, 0xc3, 0x5a, 0x6d, 0xe7, 0x70, + 0xef, 0x70, 0xe7, 0x68, 0x7f, 0x7f, 0xf7, 0x60, 0x97, 0x96, 0xe6, 0xd6, 0x47, 0xbd, 0xce, 0x68, + 0x5f, 0x6c, 0xc1, 0xd3, 0x34, 0xe5, 0xc2, 0x5d, 0xb7, 0xf9, 0x5f, 0x2b, 0xa4, 0x7b, 0xf2, 0x20, + 0x58, 0x37, 0xac, 0x1b, 0xd6, 0x0d, 0xeb, 0x86, 0x75, 0xc3, 0xba, 0x61, 0xdd, 0xb0, 0x6e, 0x58, + 0x37, 0xac, 0xbb, 0x34, 0xac, 0xdb, 0x44, 0x6c, 0xc4, 0x92, 0x39, 0x94, 0x8f, 0x91, 0x80, 0x6d, + 0xc3, 0xb6, 0x61, 0xdb, 0xb0, 0x6d, 0x43, 0x31, 0x18, 0x8b, 0xf0, 0x22, 0x19, 0x8b, 0xf1, 0x0c, + 0x05, 0x93, 0xfc, 0xa3, 0x55, 0xf5, 0x31, 0xbe, 0x05, 0xee, 0xbd, 0xf7, 0xff, 0x9a, 0xfd, 0x30, + 0xf4, 0x82, 0xe8, 0x97, 0xd7, 0xdb, 0x6f, 0xdf, 0x3e, 0xff, 0xaf, 0xe7, 0x45, 0xce, 0xe0, 0xaf, + 0xaf, 0xbf, 0x45, 0x8f, 0xdd, 0x75, 0x3f, 0x34, 0xf8, 0xab, 0xeb, 0x35, 0xad, 0x86, 0xc5, 0x83, + 0x3f, 0x0c, 0xd8, 0xb8, 0x4c, 0x5d, 0x30, 0x0b, 0xb7, 0xee, 0x7e, 0xb6, 0xbe, 0x6a, 0x89, 0x68, + 0x0b, 0x59, 0x5d, 0x0b, 0xff, 0xbd, 0x6e, 0xd1, 0xf5, 0x7b, 0x7b, 0xcb, 0x2d, 0x4e, 0xba, 0x91, + 0xa5, 0xda, 0x4d, 0xa3, 0x97, 0x46, 0xd4, 0x6a, 0x22, 0xbd, 0xca, 0x9b, 0x15, 0xef, 0xcd, 0x6f, + 0xa4, 0xe1, 0xbf, 0x6c, 0xa3, 0xff, 0xfc, 0x35, 0xd8, 0x17, 0x3b, 0x9d, 0x15, 0x91, 0xd8, 0xb7, + 0xc5, 0x72, 0x49, 0x27, 0x93, 0xef, 0x74, 0x53, 0x1f, 0x7e, 0x07, 0xad, 0x3e, 0xd7, 0x72, 0x47, + 0xb8, 0xa8, 0x8d, 0xfe, 0x35, 0x77, 0x83, 0xb5, 0x86, 0xfc, 0x0a, 0x99, 0x85, 0x09, 0x4b, 0x82, + 0xac, 0xa5, 0x6a, 0x89, 0x4a, 0x84, 0xac, 0x65, 0x63, 0xba, 0x29, 0x6a, 0x3b, 0xa4, 0xa8, 0x19, + 0x74, 0xba, 0x48, 0x51, 0x7b, 0xfe, 0xe6, 0xda, 0x29, 0x6a, 0x13, 0xae, 0x2f, 0x97, 0xa1, 0x36, + 0x1d, 0x51, 0x26, 0x41, 0x6d, 0x87, 0x04, 0xb5, 0x14, 0x94, 0x13, 0x12, 0xd4, 0x32, 0xe0, 0x46, + 0x88, 0x29, 0x1b, 0x06, 0x94, 0x0c, 0x49, 0xe5, 0x62, 0x36, 0x7b, 0x64, 0xe1, 0x7f, 0x6b, 0xba, + 0x12, 0x26, 0xe8, 0x81, 0x66, 0x80, 0x5e, 0x6a, 0xd8, 0xd4, 0x48, 0x62, 0x49, 0x75, 0xda, 0x5d, + 0x00, 0xb3, 0xc0, 0x2c, 0x30, 0x0b, 0xcc, 0xbe, 0x0c, 0xb3, 0x2b, 0xd4, 0xe1, 0xa9, 0x28, 0x9c, + 0xbc, 0xc4, 0x36, 0x1e, 0xbe, 0x49, 0x0f, 0x3f, 0x49, 0xd5, 0xb0, 0x74, 0x9c, 0x7b, 0x6d, 0x1f, + 0x43, 0xca, 0xb7, 0xd0, 0x34, 0x76, 0x38, 0xf8, 0x38, 0xf8, 0xb6, 0xb1, 0x47, 0xdb, 0x38, 0x09, + 0x1a, 0x25, 0x09, 0x63, 0xb4, 0xa2, 0x57, 0xc3, 0xf4, 0x50, 0x67, 0x19, 0xc2, 0xb4, 0xf2, 0xbe, + 0x45, 0xf2, 0xbc, 0x29, 0xa0, 0x05, 0x78, 0xa1, 0x4e, 0xa2, 0x4e, 0xe2, 0x36, 0xe3, 0x36, 0xe3, + 0x36, 0xa3, 0x4e, 0xa2, 0x4e, 0x02, 0xb3, 0xc0, 0x2c, 0x30, 0x8b, 0x3a, 0x89, 0x3a, 0x99, 0x5d, + 0x75, 0x52, 0x23, 0x2a, 0xd4, 0x8e, 0x67, 0xaf, 0x65, 0xf3, 0x24, 0x6c, 0x1d, 0xa2, 0x24, 0x7e, + 0x3d, 0xa2, 0x64, 0xd6, 0x44, 0x49, 0x75, 0xfb, 0xf1, 0x94, 0xb1, 0x06, 0x02, 0xd3, 0x60, 0xf4, + 0x91, 0x85, 0xdc, 0x52, 0x80, 0x2a, 0xbd, 0xf0, 0x73, 0x91, 0x70, 0x73, 0x91, 0xf0, 0x72, 0xbd, + 0x70, 0xf2, 0xa4, 0x13, 0xaf, 0x69, 0x98, 0xcd, 0x18, 0xe4, 0x8a, 0x92, 0xf8, 0x1d, 0x2f, 0xf0, + 0xbb, 0x42, 0x53, 0xa7, 0x8d, 0xcb, 0x61, 0xb3, 0xbb, 0x53, 0x82, 0x94, 0xdb, 0xe4, 0x6d, 0xeb, + 0xe8, 0x13, 0xbf, 0x45, 0x0f, 0x27, 0x4d, 0x5a, 0x90, 0x7e, 0x9f, 0xf8, 0xb8, 0x09, 0x8a, 0x42, + 0x07, 0x32, 0xd0, 0xed, 0xb7, 0xb6, 0x34, 0x02, 0x0d, 0xd7, 0x38, 0xac, 0x4a, 0x87, 0x35, 0x79, + 0x33, 0xd4, 0x40, 0xa8, 0xe3, 0xda, 0xe2, 0x40, 0xb4, 0x5c, 0x33, 0xe7, 0x0e, 0xd3, 0x72, 0x8d, + 0x96, 0x6b, 0x44, 0x8c, 0xa0, 0x2c, 0xd1, 0x72, 0x4d, 0xff, 0x20, 0xd2, 0x72, 0xcd, 0xc6, 0x31, + 0x95, 0x3e, 0xae, 0xc6, 0x8e, 0xad, 0xb1, 0xe3, 0x6b, 0xe4, 0x18, 0xeb, 0x1d, 0x67, 0xcd, 0x63, + 0x2d, 0x76, 0xbc, 0x9f, 0xc5, 0x18, 0x5a, 0xae, 0xd1, 0x72, 0x8d, 0x9e, 0x3c, 0x56, 0x20, 0x43, + 0x06, 0x3a, 0x84, 0x20, 0x44, 0x5d, 0x6c, 0x32, 0x28, 0x46, 0x99, 0x10, 0xab, 0x92, 0x88, 0x59, + 0xb4, 0x5c, 0x53, 0x00, 0x79, 0x5a, 0xae, 0x01, 0xef, 0xc0, 0x7b, 0x56, 0xe1, 0x9d, 0x96, 0x6b, + 0x16, 0x78, 0xa4, 0x31, 0x3e, 0x69, 0x12, 0x78, 0xcc, 0x03, 0x90, 0x69, 0x20, 0xb2, 0x06, 0x48, + 0xd6, 0x80, 0xc9, 0x0a, 0x40, 0xc9, 0x02, 0x95, 0x30, 0x60, 0x99, 0xe3, 0xa5, 0x4b, 0xfb, 0x9d, + 0xe6, 0x0f, 0xab, 0x7e, 0xd1, 0xfc, 0x21, 0xd6, 0x63, 0x68, 0xfe, 0x90, 0x6c, 0xe9, 0x69, 0xfe, + 0x90, 0xb7, 0xdd, 0x40, 0xf3, 0x87, 0xac, 0x9c, 0x26, 0x5a, 0xae, 0xc1, 0xba, 0x61, 0xdd, 0xb0, + 0x6e, 0x58, 0x37, 0xac, 0x1b, 0xd6, 0x0d, 0xeb, 0x86, 0x75, 0xc3, 0xba, 0x61, 0xdd, 0xc6, 0x59, + 0x37, 0x2d, 0xd7, 0x60, 0xdb, 0xb0, 0x6d, 0xd8, 0x76, 0x9e, 0xd9, 0x36, 0x2d, 0xd7, 0x68, 0xb9, + 0x66, 0x74, 0x2f, 0x67, 0xad, 0xe5, 0xda, 0x62, 0x62, 0xd7, 0xe2, 0x1f, 0xd0, 0x74, 0x2d, 0x86, + 0xa1, 0xa1, 0xe9, 0x1a, 0x4d, 0xd7, 0x32, 0x75, 0x3e, 0x4d, 0xb7, 0x5d, 0x3b, 0x09, 0xe8, 0xbb, + 0x96, 0x52, 0xdd, 0xa3, 0x24, 0x1b, 0x82, 0xce, 0x6b, 0x71, 0x49, 0x19, 0x35, 0x90, 0xc8, 0x54, + 0xcb, 0x07, 0xfc, 0x50, 0xdb, 0xd8, 0x96, 0xe0, 0x42, 0x9e, 0x1a, 0x79, 0x6a, 0x96, 0x49, 0x27, + 0x45, 0x37, 0xa9, 0x6d, 0xfc, 0xe2, 0x72, 0x52, 0xdb, 0x18, 0x98, 0x05, 0x66, 0x81, 0x59, 0x71, + 0x98, 0xa5, 0xb6, 0x71, 0x9e, 0x7c, 0x7c, 0x7a, 0xaf, 0xd9, 0x32, 0x77, 0xb8, 0xf8, 0xb8, 0xf8, + 0x94, 0x39, 0xa6, 0xf7, 0x9a, 0x06, 0x7e, 0xd1, 0x7b, 0x0d, 0xf0, 0x42, 0x9f, 0x44, 0x9f, 0xc4, + 0x71, 0xc6, 0x71, 0xc6, 0x71, 0x46, 0x9f, 0x44, 0x9f, 0x04, 0x66, 0x81, 0x59, 0x60, 0x16, 0x98, + 0x45, 0x9f, 0x2c, 0xa8, 0x3e, 0x49, 0xf7, 0x35, 0x64, 0x49, 0x3c, 0x7b, 0x64, 0xc9, 0xbc, 0xc9, + 0x92, 0x74, 0x5f, 0x9b, 0x1d, 0x83, 0xee, 0x6b, 0xf9, 0xe9, 0xbe, 0xb6, 0xc9, 0x24, 0x4b, 0xf7, + 0x5f, 0x9b, 0x8b, 0x00, 0xa7, 0x01, 0x5b, 0x8c, 0x15, 0xb1, 0xdb, 0xf0, 0x69, 0xfc, 0x2d, 0x9c, + 0x01, 0xcc, 0x2a, 0x74, 0x7b, 0x9a, 0xfd, 0x78, 0x31, 0x5a, 0x3d, 0xf9, 0xb7, 0xa5, 0xec, 0xf4, + 0xe4, 0xdf, 0xe6, 0xa6, 0xd1, 0x93, 0x62, 0x46, 0x80, 0x5e, 0x26, 0x40, 0x5e, 0xdb, 0x3a, 0xf9, + 0xb7, 0x74, 0x75, 0xd2, 0xdc, 0xee, 0x76, 0x88, 0x98, 0x72, 0x53, 0xa7, 0x29, 0x08, 0xeb, 0xfb, + 0xa9, 0xcf, 0x43, 0xe1, 0xac, 0x2a, 0x1f, 0x1e, 0x7c, 0x55, 0x95, 0xc3, 0x85, 0xab, 0x2a, 0xea, + 0xaa, 0x6e, 0x0f, 0x97, 0xe1, 0xdd, 0x0c, 0xe1, 0x5c, 0xf8, 0x83, 0xf1, 0x7f, 0x67, 0x3e, 0xb6, + 0xa6, 0xff, 0x5d, 0x10, 0xdf, 0xe6, 0x46, 0x03, 0xe2, 0x80, 0x38, 0x20, 0xae, 0xc0, 0x10, 0xf7, + 0xed, 0x19, 0xe2, 0xe6, 0x2f, 0x84, 0xa6, 0x3f, 0x71, 0x3d, 0xfe, 0xc8, 0x2c, 0x2e, 0xf4, 0x56, + 0xfc, 0xd9, 0x74, 0xe4, 0x96, 0xf7, 0xb3, 0x18, 0xb2, 0x5f, 0xfd, 0xe7, 0x50, 0x28, 0x4b, 0x5e, + 0x74, 0x51, 0xdf, 0x21, 0xe8, 0x34, 0x1d, 0xef, 0x67, 0xf4, 0x2e, 0xf2, 0xda, 0xde, 0xbd, 0x17, + 0x85, 0x8f, 0x4e, 0x27, 0x70, 0x9a, 0x3f, 0x86, 0x55, 0x20, 0x45, 0x9c, 0x84, 0x5b, 0xb7, 0xdd, + 0x93, 0xf0, 0x12, 0x4c, 0x3b, 0x08, 0xd7, 0x79, 0x11, 0x0c, 0x67, 0x34, 0x1e, 0xa5, 0x84, 0x82, + 0x04, 0x3a, 0x5e, 0x02, 0xe5, 0x45, 0x2d, 0xea, 0x56, 0x2b, 0xda, 0x56, 0x5b, 0x03, 0xa8, 0xa2, + 0x01, 0xa0, 0x01, 0xa0, 0x01, 0x40, 0x90, 0x21, 0xc8, 0x10, 0x64, 0x34, 0x00, 0x34, 0x00, 0x20, + 0x0e, 0x88, 0x03, 0xe2, 0xd0, 0x00, 0x52, 0x61, 0x9b, 0x99, 0x70, 0x28, 0x15, 0x22, 0x40, 0x4b, + 0x13, 0x17, 0x92, 0x3c, 0xb8, 0x62, 0x6b, 0x73, 0x38, 0xce, 0xf8, 0x77, 0x17, 0xde, 0xad, 0xcd, + 0x40, 0x93, 0x64, 0xde, 0xba, 0x92, 0x97, 0xae, 0x1c, 0x58, 0x52, 0xb5, 0x13, 0x58, 0x92, 0x2c, + 0xf2, 0xb5, 0x38, 0x91, 0x25, 0x89, 0x22, 0x57, 0x53, 0x0e, 0x2d, 0x51, 0xe8, 0x48, 0xf0, 0xec, + 0x38, 0xb7, 0x14, 0xe5, 0xa4, 0x9d, 0x9c, 0x85, 0x94, 0xa8, 0x85, 0x70, 0x17, 0x5f, 0x4f, 0x52, + 0x0a, 0xd1, 0x36, 0x6b, 0xe2, 0x95, 0x89, 0xdf, 0x8a, 0x10, 0x3f, 0xa5, 0x7a, 0xd5, 0x53, 0x50, + 0xfe, 0x15, 0x13, 0xbf, 0x6c, 0xe2, 0x13, 0x90, 0x9f, 0x18, 0x66, 0xf8, 0x95, 0xc6, 0x0c, 0x4c, + 0xe2, 0xc0, 0x37, 0x2e, 0x72, 0xb2, 0x60, 0x6f, 0xa5, 0xe0, 0x6e, 0xa5, 0x60, 0xee, 0x64, 0xc1, + 0xdb, 0x9b, 0x66, 0x23, 0xe1, 0x3e, 0x50, 0x5c, 0xff, 0x4a, 0x2c, 0xe2, 0xb4, 0x96, 0xcc, 0xbd, + 0xbc, 0x71, 0xd6, 0x6f, 0x87, 0xd5, 0x7f, 0xb3, 0x66, 0x4a, 0xe2, 0x4e, 0x45, 0xa2, 0x29, 0x58, + 0xfd, 0xcd, 0x97, 0xbf, 0xd7, 0x8a, 0xef, 0xb4, 0x81, 0x49, 0xc6, 0x62, 0x8e, 0x1b, 0x98, 0xe2, + 0x46, 0x66, 0x18, 0xc7, 0x90, 0xc6, 0x37, 0x98, 0x71, 0x0d, 0x63, 0x62, 0x03, 0x98, 0xd8, 0xd0, + 0x25, 0x32, 0x68, 0xc9, 0x76, 0xd1, 0x26, 0x26, 0x36, 0x69, 0x5f, 0xe8, 0x34, 0xdd, 0xae, 0xfb, + 0xdd, 0x6f, 0xfb, 0xd1, 0xe3, 0xe6, 0x09, 0x59, 0x68, 0x7d, 0x38, 0xfb, 0xd9, 0x4d, 0x68, 0x17, + 0x8b, 0x79, 0xc5, 0x66, 0x5a, 0x49, 0x98, 0x55, 0x72, 0x26, 0x95, 0x94, 0x39, 0x29, 0x33, 0x25, + 0x65, 0x66, 0xa4, 0xc4, 0x84, 0xf4, 0xec, 0x55, 0x6c, 0x66, 0x33, 0xc3, 0xcf, 0xbd, 0x20, 0xf2, + 0xa3, 0xc7, 0x78, 0xde, 0xf4, 0x14, 0x23, 0x62, 0x34, 0xc1, 0xab, 0x9c, 0x8c, 0x87, 0x7e, 0xef, + 0xf6, 0x14, 0x9c, 0xdc, 0xe3, 0x0f, 0xa7, 0x37, 0x1f, 0xce, 0xbf, 0x9c, 0x5d, 0xd5, 0x2f, 0x6e, + 0x3e, 0x1c, 0x37, 0x8e, 0xdf, 0x9f, 0x9c, 0x9e, 0x5c, 0xfd, 0x1e, 0x77, 0xcd, 0x86, 0xfd, 0xfb, + 0x92, 0xc5, 0x72, 0x28, 0x3a, 0x38, 0xc7, 0xbf, 0xfd, 0x76, 0x51, 0xff, 0xed, 0xf8, 0xaa, 0x7e, + 0x73, 0x7e, 0x76, 0xfa, 0x7b, 0xc5, 0xc4, 0xad, 0xbe, 0xe2, 0x37, 0x3b, 0x19, 0xcc, 0xdd, 0xa7, + 0xe3, 0x0f, 0x59, 0xfe, 0x66, 0xd3, 0xd9, 0x93, 0x76, 0x86, 0xaf, 0x75, 0x4f, 0x5a, 0xe6, 0x88, + 0xc2, 0x0b, 0xb4, 0x78, 0x05, 0x47, 0x78, 0xf5, 0xc2, 0x97, 0xdb, 0xf4, 0xa5, 0x36, 0x7f, 0x99, + 0xca, 0x4a, 0x0a, 0xb2, 0xc0, 0xc9, 0xe6, 0xbf, 0xeb, 0xf3, 0x37, 0x9a, 0xf9, 0x36, 0x15, 0xb7, + 0xbb, 0xdc, 0x5f, 0x7c, 0xba, 0x4d, 0x06, 0x7f, 0xb9, 0xf0, 0xcd, 0x57, 0x73, 0x94, 0xb5, 0x26, + 0xe9, 0x25, 0x13, 0x34, 0x6b, 0x72, 0xda, 0x7e, 0xe0, 0x39, 0xdd, 0xb0, 0x13, 0x79, 0xcd, 0x55, + 0xb9, 0x7e, 0x9b, 0x6c, 0x4d, 0x6c, 0xdb, 0x12, 0xdb, 0x96, 0x2c, 0xda, 0x8e, 0xb9, 0x2f, 0x98, + 0x70, 0xb5, 0xd7, 0xb1, 0x8c, 0xc1, 0xfc, 0x3a, 0xf7, 0x9d, 0x56, 0xbf, 0xed, 0xf5, 0x36, 0x53, + 0xc7, 0xd9, 0x1f, 0xd6, 0x24, 0x90, 0x3b, 0x32, 0x04, 0x72, 0xc3, 0xa2, 0x65, 0x9f, 0x49, 0xbe, + 0xbc, 0xa8, 0x86, 0x28, 0xe5, 0xf3, 0x3a, 0xc6, 0xa7, 0x92, 0x33, 0x9f, 0x89, 0x47, 0x21, 0x77, + 0x53, 0xa6, 0x90, 0x31, 0xb7, 0x46, 0x7e, 0xb9, 0x64, 0xbc, 0xad, 0x23, 0x43, 0x2a, 0xe3, 0xea, + 0xc5, 0x49, 0x53, 0x10, 0xd5, 0x52, 0x0f, 0xb3, 0x9e, 0x29, 0x9b, 0x70, 0xeb, 0x15, 0xef, 0x66, + 0x23, 0xd9, 0xd6, 0xcc, 0xc8, 0x15, 0xc7, 0x6d, 0x27, 0x6c, 0x7a, 0x4e, 0xd4, 0x71, 0xba, 0x9d, + 0x30, 0x52, 0xbf, 0xed, 0x98, 0x1f, 0x26, 0x69, 0x9c, 0xa3, 0x77, 0xeb, 0xf6, 0xdb, 0xc3, 0x69, + 0x3c, 0x3b, 0x3f, 0xab, 0x97, 0xe4, 0xde, 0x44, 0xf1, 0xbc, 0x94, 0xe7, 0x02, 0x45, 0xed, 0x3c, + 0xe5, 0xe5, 0x26, 0xc5, 0x0b, 0xfa, 0xf7, 0x5e, 0x38, 0xf2, 0x45, 0x34, 0x2e, 0x52, 0x6a, 0x0a, + 0x9f, 0xad, 0x07, 0xfd, 0xfb, 0xc1, 0x97, 0x7f, 0xca, 0x40, 0xdc, 0xfe, 0x8f, 0x4e, 0xbb, 0xe5, + 0x74, 0x6e, 0x6f, 0x9d, 0xc8, 0xbf, 0xd7, 0x88, 0xdf, 0x9f, 0x1f, 0x06, 0x00, 0x01, 0x40, 0x0a, + 0x0f, 0x20, 0x7d, 0x3f, 0x88, 0xf6, 0xaa, 0x1a, 0xd8, 0xa1, 0x10, 0x71, 0x57, 0xb9, 0x18, 0x26, + 0x66, 0xa9, 0x64, 0x8a, 0x6d, 0x29, 0x67, 0x8b, 0x6d, 0x8d, 0x6f, 0x0e, 0x05, 0x62, 0x4a, 0x65, + 0x4a, 0xc4, 0x0e, 0x35, 0x56, 0x81, 0x71, 0x3e, 0x85, 0x6e, 0x73, 0x80, 0xff, 0x1f, 0xfd, 0x3b, + 0x7f, 0x78, 0xb7, 0xb9, 0x93, 0x4a, 0x29, 0xdf, 0xcf, 0xee, 0xcf, 0xcc, 0x4d, 0x6d, 0xad, 0x7a, + 0x54, 0x3b, 0x3a, 0x38, 0xac, 0x1e, 0xed, 0x67, 0x68, 0x8e, 0x2d, 0x85, 0x79, 0x5e, 0x67, 0xc0, + 0x2c, 0x2b, 0x55, 0xd2, 0x9f, 0x42, 0x93, 0x42, 0xd5, 0x7c, 0x8c, 0x30, 0x46, 0x38, 0x87, 0x46, + 0x58, 0x3d, 0x00, 0x5e, 0x27, 0xf0, 0x7d, 0x2e, 0xe0, 0xbd, 0xdb, 0x76, 0xa3, 0xdb, 0x4e, 0x78, + 0xff, 0xae, 0xd9, 0xb9, 0xef, 0x76, 0x02, 0x2f, 0x88, 0x7a, 0xab, 0xff, 0x78, 0xee, 0x4f, 0x93, + 0x67, 0xf9, 0x98, 0x01, 0x9a, 0x6e, 0xe8, 0xdf, 0xbb, 0xe1, 0xa3, 0xd3, 0xfb, 0xd3, 0x8f, 0x9a, + 0x3f, 0x9c, 0x1f, 0x8f, 0xbd, 0xc8, 0x0b, 0xbd, 0x9e, 0xdf, 0x53, 0x47, 0x9f, 0xf5, 0x43, 0xaa, + 0xeb, 0x12, 0x3b, 0xc0, 0x19, 0x70, 0x56, 0x7c, 0x38, 0x6b, 0x79, 0x4d, 0xff, 0xde, 0x6d, 0x1f, + 0xd4, 0x74, 0x00, 0x4d, 0xa1, 0x69, 0xd4, 0x32, 0x4d, 0xab, 0x96, 0xd5, 0x39, 0xa9, 0xe2, 0x9c, + 0x98, 0x72, 0x4e, 0xf6, 0x0a, 0x38, 0xb5, 0x25, 0xf2, 0x49, 0x16, 0xec, 0x7a, 0xf4, 0x23, 0xf4, + 0x7a, 0x3f, 0x3a, 0xed, 0x96, 0x18, 0x53, 0x78, 0x1e, 0x11, 0x63, 0x8f, 0xb1, 0xc7, 0xd8, 0x63, + 0xec, 0x31, 0xf6, 0x18, 0x7b, 0x8c, 0x7d, 0x1a, 0xc6, 0x3e, 0xf4, 0xda, 0x6e, 0xe4, 0x3f, 0x78, + 0x82, 0xd6, 0x7e, 0xfd, 0x90, 0xe8, 0x02, 0x50, 0x05, 0xa8, 0x02, 0x54, 0x01, 0xaa, 0x00, 0x55, + 0x80, 0x2a, 0x14, 0x86, 0x2a, 0x38, 0x9d, 0xdb, 0xdb, 0x9e, 0x17, 0x19, 0x60, 0x0c, 0x93, 0x91, + 0x21, 0x0e, 0x10, 0x07, 0x88, 0x03, 0xc4, 0x01, 0xe2, 0x00, 0x71, 0x80, 0x38, 0xe4, 0x8f, 0x38, + 0x3c, 0x78, 0xe1, 0xc0, 0xbe, 0xeb, 0x30, 0x84, 0xc9, 0x10, 0x98, 0x73, 0xcc, 0x79, 0xe1, 0xcd, + 0xf9, 0xf7, 0x4e, 0xa7, 0xed, 0xb9, 0x5a, 0x09, 0x0b, 0xbb, 0x59, 0x68, 0x16, 0xe0, 0x35, 0x3b, + 0x41, 0x4b, 0xf6, 0x2e, 0xf1, 0x85, 0x31, 0x81, 0x06, 0xa0, 0x01, 0xa6, 0x0f, 0xd3, 0x87, 0xe9, + 0xc3, 0xf4, 0x61, 0xfa, 0x69, 0x18, 0xfc, 0x3f, 0x5d, 0x3f, 0x72, 0xa2, 0x8e, 0x13, 0x7a, 0xbd, + 0xa8, 0x13, 0x7a, 0x9a, 0xc9, 0x86, 0x2b, 0x47, 0xc3, 0xc8, 0x63, 0xe4, 0xc9, 0x39, 0xdc, 0xb4, + 0xdf, 0xc9, 0x39, 0xc4, 0x36, 0x93, 0x73, 0x58, 0x22, 0x23, 0x9d, 0xf1, 0x7a, 0xcc, 0x51, 0xe8, + 0x06, 0xbd, 0x6e, 0x27, 0x8c, 0xe6, 0x80, 0xdb, 0xef, 0x04, 0xdb, 0x6e, 0xb7, 0xb7, 0x3d, 0x53, + 0xfa, 0x6b, 0xe6, 0xf7, 0x89, 0xba, 0x1e, 0xca, 0xf4, 0x4b, 0x48, 0x94, 0x8e, 0xa9, 0x92, 0x86, + 0x99, 0xf0, 0x2c, 0x51, 0x5c, 0xc8, 0x34, 0xbf, 0xc8, 0x62, 0x71, 0xa1, 0xc4, 0xfc, 0x41, 0x23, + 0x4d, 0x52, 0x25, 0x3d, 0x72, 0x9a, 0x16, 0xf9, 0xf6, 0xed, 0xf8, 0x8c, 0x6e, 0xc7, 0x4f, 0x73, + 0x94, 0x39, 0xa8, 0x03, 0x28, 0xe9, 0x25, 0x3f, 0xa9, 0xa3, 0x8f, 0x51, 0x07, 0x8c, 0xa3, 0x2a, + 0x74, 0x54, 0x13, 0xd7, 0x01, 0x6b, 0x76, 0xee, 0xef, 0x3b, 0x81, 0xa3, 0xc0, 0x78, 0x67, 0xaa, + 0xd9, 0x4d, 0x86, 0xb0, 0xdc, 0x47, 0x17, 0x5f, 0x18, 0x5f, 0xd8, 0x5a, 0x6f, 0xdd, 0x84, 0xb5, + 0x1e, 0x5f, 0x38, 0x2d, 0x09, 0x6a, 0x3f, 0x0a, 0x1d, 0x19, 0xed, 0xa3, 0x23, 0x71, 0x84, 0x0c, + 0x1c, 0x25, 0xa9, 0x23, 0x25, 0x7e, 0xb4, 0xc4, 0x8f, 0x98, 0x99, 0xa3, 0xa6, 0xe9, 0x6d, 0x2a, + 0xee, 0x21, 0xd5, 0x23, 0x38, 0x1d, 0xc0, 0x0b, 0xdc, 0xef, 0x6d, 0xaf, 0xa5, 0xbf, 0xdc, 0xcf, + 0x35, 0xf9, 0x46, 0x03, 0x6a, 0xae, 0xcd, 0x4c, 0x98, 0xe7, 0x60, 0xa5, 0x75, 0x87, 0x13, 0x92, + 0x39, 0x74, 0xcf, 0xbc, 0xe4, 0xd9, 0x37, 0x88, 0x01, 0xd2, 0x58, 0x60, 0x0c, 0x13, 0x8c, 0x61, + 0x83, 0x59, 0x8c, 0xd0, 0xc3, 0x0a, 0x01, 0xed, 0x70, 0x4b, 0xa4, 0x85, 0xed, 0xd2, 0x0e, 0x54, + 0x0f, 0x6d, 0x59, 0x6b, 0x9c, 0x77, 0x5f, 0xa5, 0x33, 0xc1, 0x3a, 0xc2, 0x6c, 0xe4, 0x86, 0x77, + 0x5e, 0xe4, 0xb8, 0x51, 0xe4, 0x05, 0x7d, 0xf5, 0x6e, 0xb0, 0x2b, 0xa7, 0x78, 0xc5, 0xd8, 0x40, + 0x23, 0xd0, 0x08, 0x34, 0x66, 0x1c, 0x1a, 0x75, 0x42, 0x7b, 0xd6, 0x82, 0x63, 0x55, 0x60, 0x2c, + 0x89, 0xd0, 0x9f, 0xa5, 0x41, 0xf5, 0xae, 0x1b, 0x17, 0x7f, 0xc9, 0x9c, 0xb0, 0x2d, 0xa9, 0xeb, + 0xc8, 0x75, 0xcb, 0x51, 0x7d, 0x23, 0x3b, 0xac, 0xd0, 0x75, 0xe5, 0xe6, 0x15, 0xdf, 0x11, 0x1b, + 0xff, 0xe9, 0x8d, 0xe0, 0x52, 0xb9, 0x3f, 0x8d, 0x2d, 0xd5, 0x1e, 0x4b, 0xf5, 0xf4, 0x2a, 0x1b, + 0xa3, 0x5c, 0xa7, 0x45, 0xf0, 0xac, 0xfa, 0xe9, 0x8a, 0xb7, 0xae, 0x4b, 0xe3, 0x08, 0xdf, 0xc2, + 0x0e, 0xef, 0x4c, 0xb6, 0xa7, 0xa2, 0x73, 0xa2, 0x5b, 0x59, 0xfd, 0x09, 0x55, 0x98, 0xcc, 0x84, + 0x5d, 0xef, 0xd7, 0x9a, 0xe3, 0x24, 0x5d, 0xf0, 0x8d, 0x09, 0x87, 0x55, 0x84, 0x43, 0x84, 0xc3, + 0xbc, 0x0a, 0x87, 0x46, 0xbc, 0x5b, 0xdc, 0x5a, 0xdc, 0x5a, 0xdc, 0x5a, 0xdc, 0x5a, 0xdc, 0x5a, + 0xdc, 0x5a, 0xdc, 0x5a, 0xdc, 0x5a, 0xdc, 0x5a, 0x8b, 0x5b, 0x95, 0xbb, 0x60, 0x98, 0x21, 0xcc, + 0x10, 0x66, 0x28, 0xb3, 0x03, 0xb9, 0x0b, 0x1e, 0x7e, 0xf7, 0x4e, 0x37, 0xf2, 0x9b, 0x6e, 0xdb, + 0xe9, 0x76, 0xfe, 0xf4, 0x42, 0x39, 0x64, 0x9d, 0x1f, 0x56, 0x06, 0x10, 0x77, 0x01, 0x44, 0x00, + 0x11, 0x40, 0x94, 0xd1, 0xc7, 0x9e, 0x75, 0xb2, 0x87, 0x3b, 0xb9, 0x2d, 0x32, 0xd5, 0xc9, 0x1e, + 0xee, 0xa4, 0x36, 0x87, 0x0c, 0x1b, 0x12, 0x07, 0x01, 0x13, 0x60, 0xb0, 0x0a, 0x14, 0xa2, 0xc7, + 0xae, 0xd7, 0xab, 0x08, 0xfa, 0x77, 0xc2, 0xa8, 0x60, 0x1c, 0x1d, 0x8c, 0xa3, 0xc4, 0x3a, 0xb4, + 0x18, 0xcd, 0x7c, 0xd6, 0x1c, 0x3f, 0xa1, 0x5d, 0x2b, 0xc6, 0xa7, 0x8c, 0x2a, 0x6e, 0x26, 0x94, + 0x37, 0xa3, 0x0a, 0x9c, 0x21, 0x25, 0x4e, 0x5e, 0x91, 0x33, 0xaa, 0xcc, 0x19, 0x56, 0xe8, 0x4c, + 0xcb, 0x3f, 0x36, 0x64, 0x20, 0x03, 0xca, 0x9d, 0x51, 0x05, 0xcf, 0xb0, 0x92, 0x57, 0xa8, 0x25, + 0x7d, 0x95, 0xcd, 0xd1, 0xae, 0x33, 0xa2, 0x3c, 0x0a, 0x6c, 0xf9, 0x8a, 0x1f, 0xf4, 0x22, 0x37, + 0x88, 0xe4, 0x89, 0xeb, 0x64, 0x60, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0x42, + 0x5e, 0x61, 0x3a, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x55, 0x8e, 0xbc, 0x46, 0x5e, 0xf8, 0xe0, 0xb6, + 0x4d, 0xb0, 0xd7, 0xf1, 0xc8, 0xd0, 0x57, 0xe8, 0x2b, 0xf4, 0xb5, 0x74, 0xf4, 0xb5, 0x17, 0xb9, + 0x91, 0x23, 0x0c, 0x02, 0xb3, 0x40, 0xf0, 0xab, 0xe0, 0x90, 0x5f, 0x82, 0x91, 0x0d, 0xab, 0x04, + 0x6e, 0xd0, 0x19, 0x15, 0xd6, 0x17, 0x3d, 0x6b, 0x90, 0x58, 0x79, 0x04, 0x87, 0xc4, 0x66, 0x87, + 0xc4, 0x9a, 0x5e, 0xd2, 0xdd, 0x5f, 0x6b, 0xb5, 0x83, 0xc3, 0x5a, 0x6d, 0xe7, 0x70, 0xef, 0x70, + 0xe7, 0x68, 0x7f, 0x7f, 0xf7, 0x60, 0x77, 0x1f, 0x5e, 0x0b, 0xaf, 0x5d, 0xbf, 0x8c, 0xf7, 0x82, + 0xbb, 0x7e, 0x6a, 0xd2, 0x06, 0x83, 0xc2, 0x66, 0x61, 0xb3, 0xb0, 0xd9, 0xd2, 0xb1, 0x59, 0xc4, + 0x58, 0x78, 0xec, 0xc2, 0xb2, 0x21, 0xc6, 0x16, 0x8e, 0xc7, 0x22, 0xc6, 0x42, 0x5a, 0xd3, 0x25, + 0xad, 0x6a, 0x9d, 0x82, 0xe2, 0x30, 0x57, 0x95, 0xae, 0x41, 0xd0, 0x57, 0xe8, 0x2b, 0xf4, 0xb5, + 0x00, 0xf4, 0x75, 0x70, 0xf6, 0x23, 0xbf, 0xf9, 0xdf, 0x9e, 0x11, 0x02, 0x8b, 0x14, 0x8b, 0x14, + 0x0b, 0x85, 0xcd, 0x06, 0x85, 0x45, 0x8a, 0x85, 0xd5, 0x66, 0x8c, 0xd5, 0x0a, 0x02, 0xd9, 0x33, + 0xa1, 0xf5, 0x03, 0xb8, 0x2c, 0x5c, 0x16, 0x2e, 0x5b, 0x3e, 0x2e, 0x8b, 0x14, 0x0b, 0x8f, 0x5d, + 0x58, 0x36, 0xa4, 0xd8, 0xc2, 0xf1, 0x58, 0xa4, 0x58, 0x48, 0x6b, 0xba, 0xa4, 0xd5, 0x94, 0x14, + 0x3b, 0x19, 0x19, 0xfa, 0x0a, 0x7d, 0x85, 0xbe, 0x96, 0x8e, 0xbe, 0x22, 0xc5, 0x42, 0x61, 0xcd, + 0xe1, 0x37, 0x14, 0x36, 0x3b, 0x14, 0x16, 0x29, 0x16, 0x56, 0x2b, 0xc8, 0x6a, 0x53, 0x2d, 0xf1, + 0x25, 0xd4, 0x93, 0x63, 0x3a, 0x9e, 0xe1, 0xde, 0x1c, 0xc3, 0x96, 0x15, 0xdb, 0x92, 0x85, 0xff, + 0x46, 0xdf, 0x3a, 0x0a, 0xfb, 0xcd, 0x28, 0x18, 0x5b, 0xf2, 0xe3, 0x6e, 0xef, 0xe6, 0xb8, 0xdb, + 0xfb, 0x3c, 0xfc, 0x0a, 0x37, 0x8d, 0xc1, 0x57, 0xb8, 0xf9, 0x30, 0xfc, 0x0a, 0x27, 0xc1, 0xcd, + 0xf9, 0xe8, 0xd9, 0x8d, 0xe1, 0xa3, 0xe9, 0xcb, 0xb7, 0x45, 0x5f, 0x3e, 0x01, 0x67, 0x87, 0xaa, + 0x8c, 0x54, 0x65, 0xb4, 0xef, 0xc2, 0xd0, 0xc0, 0x20, 0x53, 0x6e, 0x09, 0x0d, 0x0c, 0x68, 0x60, + 0x40, 0x03, 0x03, 0x49, 0xcd, 0x88, 0xbe, 0x7c, 0x36, 0x7d, 0x00, 0x2b, 0xdc, 0xdf, 0x5a, 0x5b, + 0xbe, 0x57, 0x06, 0x67, 0x5e, 0x77, 0xc6, 0x0d, 0xcf, 0x74, 0x45, 0xa9, 0x25, 0x61, 0x5c, 0x0f, + 0x2a, 0xd9, 0x0a, 0xc6, 0x5f, 0x87, 0x04, 0x6b, 0x50, 0x19, 0xbf, 0x6a, 0xa7, 0x1f, 0x75, 0xfb, + 0xc9, 0x0b, 0xfc, 0x4d, 0x79, 0xd3, 0xfc, 0x30, 0x09, 0xf7, 0x80, 0x5a, 0xc1, 0x79, 0x65, 0x57, + 0x46, 0xc7, 0x75, 0x11, 0x74, 0x55, 0x74, 0x5d, 0x13, 0x31, 0x57, 0x44, 0xcc, 0xf5, 0x90, 0x75, + 0x35, 0xcc, 0xe2, 0x8e, 0x6a, 0x41, 0xf7, 0x4a, 0x73, 0xb2, 0xeb, 0x34, 0x5b, 0x8e, 0x8e, 0xc7, + 0x49, 0xb9, 0xe7, 0xe8, 0x0e, 0x3d, 0x47, 0x6d, 0x78, 0xf9, 0xf4, 0x1c, 0x15, 0x3c, 0x82, 0x08, + 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x08, + 0x78, 0x08, 0x78, 0x79, 0x12, 0xf0, 0x46, 0x22, 0xc9, 0xf6, 0xd8, 0x01, 0xb4, 0xa5, 0xe2, 0x29, + 0x29, 0x59, 0x6e, 0xe4, 0xe9, 0x7b, 0xba, 0xa3, 0x61, 0x52, 0x76, 0x74, 0xab, 0x38, 0xba, 0x38, + 0xba, 0x79, 0x75, 0x74, 0x8d, 0x78, 0xb8, 0xb8, 0xb6, 0xb8, 0xb6, 0xb8, 0xb6, 0xb8, 0xb6, 0xb8, + 0xb6, 0xb8, 0xb6, 0xb8, 0xb6, 0xb8, 0xb6, 0xb8, 0xb6, 0x16, 0xb7, 0x2a, 0x8d, 0xe0, 0xa1, 0x75, + 0xd0, 0xba, 0x1c, 0xd2, 0x3a, 0x1a, 0xc1, 0xa7, 0x0b, 0x02, 0x26, 0xc0, 0x60, 0x15, 0x28, 0x90, + 0x74, 0x6d, 0x1a, 0x25, 0xd6, 0xa1, 0x05, 0x49, 0xd7, 0xa9, 0x7b, 0x87, 0x26, 0xbc, 0x44, 0xa3, + 0xde, 0xa2, 0x21, 0xaf, 0x51, 0xde, 0x7b, 0x34, 0xea, 0x45, 0x1a, 0xf6, 0x26, 0x4d, 0xbb, 0x2a, + 0x36, 0x5c, 0x16, 0x03, 0x5e, 0xa6, 0x51, 0x6f, 0xd3, 0xb0, 0xd7, 0x59, 0xa8, 0x25, 0x25, 0xbb, + 0xda, 0xf4, 0x96, 0xa7, 0x11, 0x3c, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, + 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x35, 0x4f, 0xe4, 0x95, 0x46, 0xf0, 0xd0, 0x57, 0xe8, 0x2b, + 0xf4, 0x55, 0x7a, 0xcf, 0xd2, 0x08, 0x1e, 0x12, 0x6b, 0x12, 0xc1, 0x21, 0xb1, 0xd9, 0x21, 0xb1, + 0x94, 0xbc, 0x84, 0xd7, 0x66, 0x8b, 0xd7, 0xd2, 0x08, 0x1e, 0x36, 0x0b, 0x9b, 0x85, 0xcd, 0x4a, + 0xed, 0x59, 0xc4, 0x58, 0x78, 0xec, 0xc2, 0xb2, 0x21, 0xc6, 0x16, 0x8e, 0xc7, 0x22, 0xc6, 0x42, + 0x5a, 0xd3, 0x25, 0xad, 0x34, 0x82, 0x87, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0xc2, 0x7b, 0x96, 0xee, + 0x43, 0x50, 0x58, 0x73, 0xf8, 0x0d, 0x85, 0xcd, 0x0e, 0x85, 0x45, 0x8a, 0x85, 0xd5, 0x66, 0x8c, + 0xd5, 0xd2, 0x08, 0x1e, 0x2e, 0x0b, 0x97, 0x85, 0xcb, 0x0a, 0xed, 0x59, 0xa4, 0x58, 0x78, 0xec, + 0xc2, 0xb2, 0x21, 0xc5, 0x16, 0x8e, 0xc7, 0x22, 0xc5, 0x42, 0x5a, 0xd3, 0x25, 0xad, 0x34, 0x82, + 0x87, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0xc2, 0x7b, 0x16, 0x29, 0x16, 0x0a, 0x6b, 0x0e, 0xbf, 0xa1, + 0xb0, 0xd9, 0xa1, 0xb0, 0x48, 0xb1, 0xb0, 0x5a, 0x41, 0x56, 0x4b, 0x23, 0xf8, 0x64, 0xb5, 0xe4, + 0x53, 0x6e, 0x06, 0x7f, 0x3e, 0xfc, 0x16, 0x34, 0x84, 0x7f, 0x89, 0x0a, 0xd1, 0x4f, 0x4a, 0xcd, + 0xe9, 0xa1, 0x3a, 0x23, 0xd5, 0x19, 0xed, 0xbb, 0x32, 0x14, 0xdd, 0xce, 0x94, 0x7b, 0x42, 0xd1, + 0x6d, 0x8a, 0x6e, 0x53, 0x74, 0x5b, 0x52, 0x3b, 0xa2, 0x9f, 0x94, 0x4d, 0x5f, 0xc0, 0x9a, 0x0f, + 0x40, 0x53, 0x78, 0x3b, 0xb3, 0x6d, 0xb2, 0x31, 0xfc, 0xc8, 0x9b, 0xca, 0x42, 0x73, 0xf8, 0xf1, + 0x1c, 0xf9, 0xf7, 0x6e, 0xf8, 0xe8, 0x28, 0x58, 0xe0, 0x29, 0x8b, 0x5a, 0x1c, 0x88, 0x06, 0xf1, + 0x16, 0x5c, 0x15, 0x1a, 0xc4, 0xeb, 0x60, 0x10, 0x0d, 0xe2, 0x69, 0x10, 0x6f, 0xcf, 0xeb, 0xa7, + 0x6f, 0x9e, 0xe0, 0x11, 0x9c, 0x0e, 0xe0, 0x05, 0xee, 0xf7, 0xb6, 0xd7, 0x92, 0x53, 0xf1, 0x26, + 0x03, 0xea, 0x36, 0x91, 0xf0, 0x6e, 0xdd, 0x7e, 0x7b, 0xb8, 0x34, 0x83, 0x95, 0x46, 0x09, 0x44, + 0x09, 0x44, 0x09, 0xcc, 0xba, 0x12, 0xf8, 0xbd, 0xd3, 0x69, 0x7b, 0x6e, 0x20, 0xa9, 0x03, 0xee, + 0x72, 0x49, 0xb2, 0xc5, 0x25, 0x09, 0xd0, 0x08, 0x34, 0xe6, 0x1b, 0x1a, 0xb9, 0x24, 0x51, 0xff, + 0xc5, 0x25, 0x89, 0xe8, 0xb8, 0x5c, 0x92, 0x70, 0x49, 0xc2, 0x25, 0x09, 0x97, 0x24, 0x53, 0xd9, + 0x7e, 0x41, 0x7a, 0xde, 0x1e, 0xcb, 0x6a, 0xb6, 0xee, 0x49, 0x94, 0xee, 0x09, 0xdc, 0xc8, 0xd3, + 0xd7, 0x0f, 0x47, 0xc3, 0xa4, 0x2c, 0x1f, 0x56, 0x91, 0x0f, 0x91, 0x0f, 0xf3, 0x2a, 0x1f, 0x1a, + 0xf1, 0x71, 0x71, 0x6e, 0x71, 0x6e, 0x71, 0x6e, 0x71, 0x6e, 0x71, 0x6e, 0x71, 0x6e, 0x71, 0x6e, + 0x71, 0x6e, 0x71, 0x6e, 0x2d, 0x6e, 0x55, 0x6e, 0x84, 0x61, 0x86, 0x30, 0x43, 0x98, 0xa1, 0xcc, + 0x0e, 0xe4, 0x46, 0x78, 0xf8, 0xdd, 0xe7, 0xd3, 0x0e, 0xc5, 0x90, 0x55, 0x32, 0x9b, 0x51, 0x53, + 0xcf, 0x02, 0x10, 0x01, 0xc4, 0xe2, 0x01, 0xa2, 0xae, 0x3e, 0xf6, 0xac, 0x93, 0x3d, 0xdc, 0xc9, + 0xd7, 0x0e, 0x1a, 0x0c, 0x4a, 0xd9, 0x20, 0x09, 0x50, 0xa0, 0x6c, 0x90, 0x69, 0x94, 0x58, 0x87, + 0x16, 0x94, 0x0d, 0x4a, 0x5d, 0x71, 0x33, 0xa1, 0xbc, 0x19, 0x55, 0xe0, 0x0c, 0x29, 0x71, 0xf2, + 0x8a, 0x9c, 0x51, 0x65, 0xce, 0xb0, 0x42, 0x67, 0x5a, 0xfe, 0xb1, 0x21, 0x03, 0x19, 0x50, 0xee, + 0x8c, 0x2a, 0x78, 0x86, 0x95, 0xbc, 0x42, 0x2d, 0x29, 0xf5, 0x81, 0x4c, 0x6f, 0xf9, 0x8a, 0x1f, + 0xf4, 0x22, 0x77, 0x68, 0xa9, 0xc5, 0x9b, 0xc1, 0x8f, 0x06, 0x86, 0xbc, 0x42, 0x5e, 0x21, 0xaf, + 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xa6, 0x03, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0xe5, 0xc8, 0x6b, + 0xe4, 0x85, 0x0f, 0x6e, 0xdb, 0x04, 0x7b, 0x1d, 0x8f, 0x0c, 0x7d, 0x85, 0xbe, 0x42, 0x5f, 0x4b, + 0x47, 0x5f, 0x7b, 0x91, 0x1b, 0x39, 0xc2, 0x20, 0xb0, 0x45, 0xd1, 0xf6, 0xfc, 0x93, 0x58, 0x8a, + 0xb6, 0x17, 0x8e, 0xc4, 0x52, 0xb4, 0x1d, 0x5e, 0x9b, 0x2d, 0x5e, 0x7b, 0x2f, 0xb8, 0xeb, 0x67, + 0x1b, 0xc2, 0xc3, 0x66, 0x61, 0xb3, 0xb0, 0xd9, 0xf2, 0xb1, 0x59, 0xc4, 0x58, 0x78, 0xec, 0xc2, + 0xb2, 0x21, 0xc6, 0x16, 0x8e, 0xc7, 0x22, 0xc6, 0x42, 0x5a, 0xd3, 0x25, 0xad, 0xa6, 0xfa, 0x67, + 0x4e, 0x46, 0x86, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0xa5, 0xa3, 0xaf, 0xf4, 0xcf, 0x84, 0xc2, 0x9a, + 0xc3, 0x6f, 0x28, 0x6c, 0x76, 0x28, 0x2c, 0x52, 0x2c, 0xac, 0x36, 0x63, 0xac, 0x56, 0x10, 0xc8, + 0x66, 0x1b, 0xc2, 0xc3, 0x65, 0xe1, 0xb2, 0x70, 0xd9, 0xf2, 0x71, 0x59, 0xa4, 0x58, 0x78, 0xec, + 0xc2, 0xb2, 0x21, 0xc5, 0x16, 0x8e, 0xc7, 0x22, 0xc5, 0x42, 0x5a, 0xd3, 0x25, 0xad, 0xa6, 0xa4, + 0xd8, 0xc9, 0xc8, 0xd0, 0x57, 0xe8, 0x2b, 0xf4, 0xb5, 0x74, 0xf4, 0x15, 0x29, 0x16, 0x0a, 0x6b, + 0x0e, 0xbf, 0xa1, 0xb0, 0xd9, 0xa1, 0xb0, 0x48, 0xb1, 0xb0, 0x5a, 0x41, 0x56, 0x9b, 0x6a, 0x89, + 0x2f, 0xa1, 0xce, 0x1c, 0xd3, 0xf1, 0xac, 0x74, 0xe8, 0x18, 0x36, 0xae, 0xd8, 0x96, 0x2c, 0xff, + 0xb7, 0x15, 0xaf, 0xfd, 0xf6, 0xa9, 0x1f, 0x78, 0x8d, 0xd1, 0xf7, 0x38, 0x09, 0x6e, 0xce, 0x47, + 0x5f, 0xa0, 0x31, 0x7c, 0x3e, 0x8d, 0xfa, 0xb6, 0x68, 0xd4, 0x27, 0xe0, 0xf7, 0x50, 0xa0, 0x91, + 0x02, 0x8d, 0xf6, 0xbd, 0x19, 0x7a, 0x19, 0x64, 0xca, 0x43, 0xa1, 0x97, 0x01, 0xbd, 0x0c, 0xe8, + 0x65, 0x20, 0x29, 0x1f, 0xd1, 0xa8, 0xcf, 0xa6, 0x3b, 0x60, 0xd1, 0x0d, 0xb0, 0xd6, 0xa7, 0xef, + 0x95, 0xc1, 0xf9, 0xd7, 0x9d, 0x77, 0x2b, 0xf3, 0x5d, 0x51, 0xea, 0x54, 0x98, 0xc8, 0xa5, 0x4a, + 0xb6, 0x98, 0xf1, 0x97, 0x24, 0xc1, 0x72, 0x54, 0xe6, 0xde, 0xba, 0xd3, 0x4f, 0x5e, 0xff, 0x6f, + 0xca, 0xa5, 0x96, 0x46, 0x4a, 0xb8, 0x29, 0xd4, 0x4a, 0xd2, 0x2b, 0x7b, 0x38, 0x3a, 0x1e, 0x8d, + 0xa0, 0x07, 0xa3, 0xeb, 0xb1, 0x88, 0x79, 0x28, 0x62, 0x1e, 0x89, 0xac, 0x07, 0x62, 0x16, 0x88, + 0x54, 0x4b, 0xbe, 0x57, 0x9a, 0x93, 0x5d, 0xa7, 0xd9, 0x94, 0x74, 0x3c, 0x4e, 0xca, 0x5d, 0x49, + 0x77, 0xe8, 0x4a, 0x6a, 0xc3, 0xf9, 0xa7, 0x2b, 0xa9, 0xe0, 0x11, 0x44, 0xd7, 0x43, 0xd7, 0x43, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0xcb, + 0x9f, 0xae, 0xd7, 0xe9, 0x47, 0xdb, 0x63, 0x1f, 0xd0, 0x96, 0xb2, 0xa7, 0xa4, 0x6b, 0xb9, 0x91, + 0xa7, 0xef, 0xec, 0x8e, 0x86, 0x49, 0xd9, 0xd7, 0xad, 0xe2, 0xeb, 0xe2, 0xeb, 0xe6, 0xd5, 0xd7, + 0x35, 0xe2, 0xe4, 0xe2, 0xdd, 0xe2, 0xdd, 0xe2, 0xdd, 0xe2, 0xdd, 0xe2, 0xdd, 0xe2, 0xdd, 0xe2, + 0xdd, 0xe2, 0xdd, 0xe2, 0xdd, 0x5a, 0xdc, 0xaa, 0x74, 0x8b, 0x87, 0xd6, 0x41, 0xeb, 0x72, 0x48, + 0xeb, 0xe8, 0x16, 0x9f, 0x2e, 0x08, 0x98, 0x00, 0x83, 0x55, 0xa0, 0x40, 0x66, 0xb6, 0x69, 0x94, + 0x58, 0x87, 0x16, 0x64, 0x66, 0xa7, 0xee, 0x1d, 0x9a, 0xf0, 0x12, 0x8d, 0x7a, 0x8b, 0x86, 0xbc, + 0x46, 0x79, 0xef, 0xd1, 0xa8, 0x17, 0x69, 0xd8, 0x9b, 0x34, 0xed, 0xaa, 0xd8, 0x70, 0x59, 0x0c, + 0x78, 0x99, 0x46, 0xbd, 0x4d, 0xc3, 0x5e, 0x67, 0xa1, 0x96, 0x94, 0x14, 0x6c, 0xd3, 0x5b, 0x9e, + 0x6e, 0xf1, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, + 0xaf, 0x90, 0xd7, 0x3c, 0x91, 0x57, 0xba, 0xc5, 0x43, 0x5f, 0xa1, 0xaf, 0xd0, 0x57, 0xe9, 0x3d, + 0x4b, 0xb7, 0x78, 0x48, 0xac, 0x49, 0x04, 0x87, 0xc4, 0x66, 0x87, 0xc4, 0x52, 0x17, 0x13, 0x5e, + 0x9b, 0x2d, 0x5e, 0x4b, 0xb7, 0x78, 0xd8, 0x2c, 0x6c, 0x16, 0x36, 0x2b, 0xb5, 0x67, 0x11, 0x63, + 0xe1, 0xb1, 0x0b, 0xcb, 0x86, 0x18, 0x5b, 0x38, 0x1e, 0x8b, 0x18, 0x0b, 0x69, 0x4d, 0x97, 0xb4, + 0xd2, 0x2d, 0x1e, 0xfa, 0x0a, 0x7d, 0x85, 0xbe, 0x0a, 0xef, 0x59, 0x5a, 0x14, 0x41, 0x61, 0xcd, + 0xe1, 0x37, 0x14, 0x36, 0x3b, 0x14, 0x16, 0x29, 0x16, 0x56, 0x9b, 0x31, 0x56, 0x4b, 0xb7, 0x78, + 0xb8, 0x2c, 0x5c, 0x16, 0x2e, 0x2b, 0xb4, 0x67, 0x91, 0x62, 0xe1, 0xb1, 0x0b, 0xcb, 0x86, 0x14, + 0x5b, 0x38, 0x1e, 0x8b, 0x14, 0x0b, 0x69, 0x4d, 0x97, 0xb4, 0xd2, 0x2d, 0x1e, 0xfa, 0x0a, 0x7d, + 0x85, 0xbe, 0x0a, 0xef, 0x59, 0xa4, 0x58, 0x28, 0xac, 0x39, 0xfc, 0x86, 0xc2, 0x66, 0x87, 0xc2, + 0x22, 0xc5, 0xc2, 0x6a, 0x05, 0x59, 0x2d, 0xdd, 0xe2, 0x13, 0x97, 0x93, 0xcf, 0x42, 0xbb, 0xf8, + 0xf3, 0x7e, 0x44, 0xbf, 0xf8, 0x97, 0xf8, 0x10, 0x7d, 0xa5, 0xd4, 0x3c, 0x1f, 0x4a, 0x34, 0x52, + 0xa2, 0xd1, 0xbe, 0x3f, 0x43, 0xe5, 0xed, 0x4c, 0xf9, 0x28, 0x54, 0xde, 0xa6, 0xf2, 0x36, 0x95, + 0xb7, 0x25, 0x05, 0x24, 0xfa, 0x4a, 0xd9, 0x74, 0x08, 0x6c, 0x3a, 0x02, 0x34, 0x8c, 0xb7, 0x36, + 0xe1, 0xc6, 0x3b, 0xc6, 0x9f, 0xf7, 0xa3, 0xcc, 0xb4, 0x8c, 0x1f, 0x49, 0xa3, 0xe3, 0x56, 0xf9, + 0x7a, 0x3d, 0xe3, 0xe7, 0x86, 0xa2, 0x69, 0xbc, 0x05, 0xb7, 0x85, 0xa6, 0xf1, 0x3a, 0x60, 0x44, + 0xd3, 0x78, 0x9a, 0xc6, 0xdb, 0x53, 0x00, 0x68, 0xa4, 0x27, 0x78, 0x04, 0xa7, 0x03, 0x78, 0x81, + 0xfb, 0xbd, 0xed, 0xb5, 0xe4, 0x14, 0xbd, 0xc9, 0x80, 0xba, 0x5d, 0x25, 0xbc, 0x5b, 0xb7, 0xdf, + 0x1e, 0x2e, 0xcd, 0x60, 0xa5, 0x51, 0x05, 0x51, 0x05, 0x51, 0x05, 0xb3, 0xae, 0x0a, 0x7e, 0xef, + 0x74, 0xda, 0x9e, 0x1b, 0x48, 0x6a, 0x82, 0xbb, 0x5c, 0x98, 0x6c, 0x71, 0x61, 0x02, 0x34, 0x02, + 0x8d, 0xf9, 0x86, 0x46, 0x2e, 0x4c, 0xd4, 0x7f, 0x71, 0x61, 0x22, 0x3a, 0x2e, 0x17, 0x26, 0x5c, + 0x98, 0x70, 0x61, 0xc2, 0x85, 0xc9, 0xbc, 0x7e, 0x3f, 0x2b, 0x3e, 0x6f, 0x8f, 0x85, 0x35, 0x5b, + 0x57, 0x26, 0x4a, 0xf7, 0x05, 0x6e, 0xe4, 0xe9, 0x2b, 0x88, 0xa3, 0x61, 0x52, 0x16, 0x10, 0xab, + 0x08, 0x88, 0x08, 0x88, 0x79, 0x15, 0x10, 0x8d, 0x78, 0xb9, 0xb8, 0xb7, 0xb8, 0xb7, 0xb8, 0xb7, + 0xb8, 0xb7, 0xb8, 0xb7, 0xb8, 0xb7, 0xb8, 0xb7, 0xb8, 0xb7, 0xb8, 0xb7, 0x16, 0xb7, 0x2a, 0x77, + 0xc2, 0x30, 0x43, 0x98, 0x21, 0xcc, 0x50, 0x66, 0x07, 0x72, 0x27, 0x3c, 0xfc, 0xee, 0xf3, 0x69, + 0x88, 0x62, 0xc8, 0x2a, 0x99, 0xdd, 0xa8, 0xa9, 0x67, 0x01, 0x88, 0x00, 0x62, 0xf1, 0x00, 0x51, + 0x57, 0x1f, 0x7b, 0xd6, 0xc9, 0x1e, 0xee, 0xe4, 0xcb, 0x09, 0x0d, 0x06, 0xa5, 0x92, 0x90, 0x04, + 0x28, 0x50, 0x49, 0xc8, 0x34, 0x4a, 0xac, 0x43, 0x0b, 0x2a, 0x09, 0xa5, 0xae, 0xb8, 0x99, 0x50, + 0xde, 0x8c, 0x2a, 0x70, 0x86, 0x94, 0x38, 0x79, 0x45, 0xce, 0xa8, 0x32, 0x67, 0x58, 0xa1, 0x33, + 0x2d, 0xff, 0xd8, 0x90, 0x81, 0x0c, 0x28, 0x77, 0x46, 0x15, 0x3c, 0xc3, 0x4a, 0x5e, 0xa1, 0x96, + 0x94, 0x92, 0x41, 0xa6, 0xb7, 0x7c, 0xc5, 0x0f, 0x7a, 0x91, 0x3b, 0xb4, 0xd4, 0xe2, 0xfd, 0xe1, + 0x47, 0x03, 0x43, 0x5e, 0x21, 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, 0x0a, 0xd3, 0x81, + 0xbc, 0x42, 0x5e, 0x21, 0xaf, 0x72, 0xe4, 0x35, 0xf2, 0xc2, 0x07, 0xb7, 0x6d, 0x82, 0xbd, 0x8e, + 0x47, 0x86, 0xbe, 0x42, 0x5f, 0xa1, 0xaf, 0xa5, 0xa3, 0xaf, 0xbd, 0xc8, 0x8d, 0x1c, 0x61, 0x10, + 0xd8, 0xa2, 0x8e, 0x7b, 0xfe, 0x49, 0x2c, 0x75, 0xdc, 0x0b, 0x47, 0x62, 0xa9, 0xe3, 0x0e, 0xaf, + 0xcd, 0x16, 0xaf, 0xbd, 0x17, 0xdc, 0xf5, 0xb3, 0x3d, 0xe2, 0x61, 0xb3, 0xb0, 0x59, 0xd8, 0x6c, + 0xf9, 0xd8, 0x2c, 0x62, 0x2c, 0x3c, 0x76, 0x61, 0xd9, 0x10, 0x63, 0x0b, 0xc7, 0x63, 0x11, 0x63, + 0x21, 0xad, 0xe9, 0x92, 0x56, 0x53, 0x2d, 0x35, 0x27, 0x23, 0x43, 0x5f, 0xa1, 0xaf, 0xd0, 0xd7, + 0xd2, 0xd1, 0x57, 0x5a, 0x6a, 0x42, 0x61, 0xcd, 0xe1, 0x37, 0x14, 0x36, 0x3b, 0x14, 0x16, 0x29, + 0x16, 0x56, 0x9b, 0x31, 0x56, 0x2b, 0x08, 0x64, 0xb3, 0x3d, 0xe2, 0xe1, 0xb2, 0x70, 0x59, 0xb8, + 0x6c, 0xf9, 0xb8, 0x2c, 0x52, 0x2c, 0x3c, 0x76, 0x61, 0xd9, 0x90, 0x62, 0x0b, 0xc7, 0x63, 0x91, + 0x62, 0x21, 0xad, 0xe9, 0x92, 0x56, 0x53, 0x52, 0xec, 0x64, 0x64, 0xe8, 0x2b, 0xf4, 0x15, 0xfa, + 0x5a, 0x3a, 0xfa, 0x8a, 0x14, 0x0b, 0x85, 0x35, 0x87, 0xdf, 0x50, 0xd8, 0xec, 0x50, 0x58, 0xa4, + 0x58, 0x58, 0xad, 0x20, 0xab, 0x4d, 0xb5, 0xc4, 0x97, 0x50, 0x6f, 0x8e, 0xe9, 0x78, 0x96, 0x7a, + 0x74, 0x0c, 0x5b, 0x57, 0x6c, 0x4b, 0x16, 0x00, 0xdc, 0x8a, 0xdf, 0x88, 0xfb, 0x72, 0xf2, 0x4d, + 0x4e, 0x82, 0x9b, 0xf3, 0xd1, 0x57, 0x68, 0x0c, 0xbf, 0x01, 0xed, 0xfa, 0xb6, 0x68, 0xd7, 0x27, + 0xe0, 0xfb, 0x50, 0xa4, 0x91, 0x22, 0x8d, 0xf6, 0x3d, 0x1a, 0xfa, 0x19, 0x64, 0xca, 0x4b, 0xa1, + 0x9f, 0x01, 0xfd, 0x0c, 0xe8, 0x67, 0x20, 0x29, 0x21, 0xd1, 0xae, 0xcf, 0xa6, 0x4b, 0x60, 0xd5, + 0x15, 0xb0, 0xd6, 0xad, 0xef, 0x95, 0xc1, 0x15, 0xd0, 0x9d, 0x79, 0x4b, 0x33, 0x5e, 0x51, 0xea, + 0x58, 0x98, 0xd0, 0xb1, 0x4a, 0xb6, 0xa0, 0xf1, 0x97, 0x25, 0xc1, 0x92, 0x54, 0x16, 0xde, 0xbc, + 0xd3, 0x4f, 0x5e, 0x0b, 0x70, 0xca, 0xa9, 0x56, 0x8c, 0x95, 0x70, 0x73, 0xa8, 0x15, 0xa8, 0x57, + 0xf6, 0x75, 0x74, 0x7c, 0x1b, 0x41, 0x5f, 0x46, 0xd7, 0x77, 0x11, 0xf3, 0x55, 0xc4, 0x7c, 0x13, + 0x59, 0x5f, 0xc4, 0x2c, 0x20, 0xa9, 0x16, 0x80, 0xaf, 0x34, 0x27, 0xbb, 0x4e, 0xb3, 0x45, 0xe9, + 0x78, 0x9c, 0x94, 0x7b, 0x94, 0xee, 0xd0, 0xa3, 0xd4, 0x86, 0x0c, 0x40, 0x8f, 0x52, 0xc1, 0x23, + 0x88, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, + 0x87, 0xc2, 0x87, 0xc2, 0x97, 0x47, 0x85, 0xaf, 0xd3, 0x8f, 0xb6, 0xc7, 0x5e, 0xa0, 0x2d, 0x8d, + 0x4f, 0x49, 0xdf, 0x72, 0x23, 0x4f, 0xdf, 0xdd, 0x1d, 0x0d, 0x93, 0xb2, 0xb7, 0x5b, 0xc5, 0xdb, + 0xc5, 0xdb, 0xcd, 0xab, 0xb7, 0x6b, 0xc4, 0xcd, 0xc5, 0xbf, 0xc5, 0xbf, 0xc5, 0xbf, 0xc5, 0xbf, + 0xc5, 0xbf, 0xc5, 0xbf, 0xc5, 0xbf, 0xc5, 0xbf, 0xc5, 0xbf, 0xb5, 0xb8, 0x55, 0xe9, 0x1e, 0x0f, + 0xad, 0x83, 0xd6, 0xe5, 0x90, 0xd6, 0xd1, 0x3d, 0x3e, 0x5d, 0x10, 0x30, 0x01, 0x06, 0xab, 0x40, + 0x81, 0x4c, 0x6d, 0xd3, 0x28, 0xb1, 0x0e, 0x2d, 0xc8, 0xd4, 0x4e, 0xdd, 0x3b, 0x34, 0xe1, 0x25, + 0x1a, 0xf5, 0x16, 0x0d, 0x79, 0x8d, 0xf2, 0xde, 0xa3, 0x51, 0x2f, 0xd2, 0xb0, 0x37, 0x69, 0xda, + 0x55, 0xb1, 0xe1, 0xb2, 0x18, 0xf0, 0x32, 0x8d, 0x7a, 0x9b, 0x86, 0xbd, 0xce, 0x42, 0x2d, 0x29, + 0x29, 0xd9, 0xa6, 0xb7, 0x3c, 0xdd, 0xe3, 0x21, 0xaf, 0x90, 0x57, 0xc8, 0x2b, 0xe4, 0x15, 0xf2, + 0x0a, 0x79, 0x85, 0xbc, 0x42, 0x5e, 0x21, 0xaf, 0x79, 0x22, 0xaf, 0x74, 0x8f, 0x87, 0xbe, 0x42, + 0x5f, 0xa1, 0xaf, 0xd2, 0x7b, 0x96, 0xee, 0xf1, 0x90, 0x58, 0x93, 0x08, 0x0e, 0x89, 0xcd, 0x0e, + 0x89, 0xa5, 0x4e, 0x26, 0xbc, 0x36, 0x5b, 0xbc, 0x96, 0xee, 0xf1, 0xb0, 0x59, 0xd8, 0x2c, 0x6c, + 0x56, 0x6a, 0xcf, 0x22, 0xc6, 0xc2, 0x63, 0x17, 0x96, 0x0d, 0x31, 0xb6, 0x70, 0x3c, 0x16, 0x31, + 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0xa5, 0x7b, 0x3c, 0xf4, 0x15, 0xfa, 0x0a, 0x7d, 0x15, 0xde, 0xb3, + 0xb4, 0x2c, 0x82, 0xc2, 0x9a, 0xc3, 0x6f, 0x28, 0x6c, 0x76, 0x28, 0x2c, 0x52, 0x2c, 0xac, 0x36, + 0x63, 0xac, 0x96, 0xee, 0xf1, 0x70, 0x59, 0xb8, 0x2c, 0x5c, 0x56, 0x68, 0xcf, 0x22, 0xc5, 0xc2, + 0x63, 0x17, 0x96, 0x0d, 0x29, 0xb6, 0x70, 0x3c, 0x16, 0x29, 0x16, 0xd2, 0x9a, 0x2e, 0x69, 0xa5, + 0x7b, 0x3c, 0xf4, 0x15, 0xfa, 0x0a, 0x7d, 0x15, 0xde, 0xb3, 0x48, 0xb1, 0x50, 0x58, 0x73, 0xf8, + 0x0d, 0x85, 0xcd, 0x0e, 0x85, 0x45, 0x8a, 0x85, 0xd5, 0x0a, 0xb2, 0x5a, 0xba, 0xc7, 0x2b, 0x14, + 0x94, 0xcf, 0x46, 0xfb, 0xf8, 0xf3, 0x7e, 0x44, 0xff, 0xf8, 0x97, 0x38, 0x11, 0xdd, 0xa5, 0xd4, + 0xbc, 0x1f, 0xca, 0x34, 0x52, 0xa6, 0xd1, 0xbe, 0x4f, 0x43, 0xf5, 0xed, 0x4c, 0xf9, 0x29, 0x54, + 0xdf, 0xa6, 0xfa, 0x36, 0xd5, 0xb7, 0x25, 0x45, 0x24, 0xba, 0x4b, 0xd9, 0x74, 0x0a, 0xec, 0x3a, + 0x03, 0x34, 0x90, 0xb7, 0x38, 0xe5, 0x16, 0x3a, 0xc8, 0x9f, 0xf7, 0x23, 0x63, 0x2d, 0xe4, 0x5f, + 0x09, 0x2e, 0x9d, 0xea, 0x92, 0x19, 0x59, 0xaa, 0x04, 0xeb, 0xb2, 0x79, 0x3d, 0xe2, 0x4d, 0xff, + 0xe6, 0xc9, 0x8c, 0x31, 0x91, 0x09, 0xdb, 0xaf, 0x29, 0xb5, 0x5b, 0x4b, 0x58, 0xe2, 0x3f, 0x71, + 0x3b, 0x35, 0x15, 0x5f, 0x50, 0xc0, 0xe7, 0x53, 0xf5, 0xed, 0xb4, 0x7d, 0x38, 0x6d, 0x5f, 0x4d, + 0xc6, 0x27, 0x93, 0x3d, 0xcc, 0x49, 0x4b, 0xde, 0x57, 0x06, 0x94, 0xe7, 0xc1, 0x73, 0xc6, 0xc7, + 0x38, 0xe1, 0x12, 0x4c, 0x4b, 0xd9, 0xcf, 0x0c, 0x92, 0x70, 0x0e, 0xd5, 0x04, 0x11, 0x65, 0x01, + 0x44, 0x47, 0xf0, 0x10, 0x14, 0x38, 0x74, 0x05, 0x0d, 0x31, 0x01, 0x43, 0x4c, 0xb0, 0x90, 0x15, + 0x28, 0xcc, 0x92, 0x14, 0x65, 0xc1, 0xe1, 0xb9, 0x88, 0x58, 0xcb, 0x0b, 0x22, 0x3f, 0x7a, 0x0c, + 0xbd, 0x5b, 0x95, 0xd5, 0x9f, 0x20, 0xb9, 0xc2, 0xb5, 0x48, 0xe5, 0x64, 0xfc, 0xe8, 0xf7, 0x6e, + 0x4f, 0xa0, 0xdf, 0xe7, 0x71, 0xe3, 0xf2, 0xa6, 0x71, 0x7c, 0xf5, 0xcf, 0x4b, 0xd5, 0xfd, 0x33, + 0x74, 0xc6, 0x7a, 0x5a, 0xea, 0x83, 0x90, 0x58, 0xdb, 0xb8, 0x38, 0xf9, 0x7c, 0x7c, 0xf1, 0x7b, + 0x25, 0x0d, 0x15, 0x5a, 0xe8, 0x15, 0x2e, 0xeb, 0x1f, 0xce, 0xcf, 0x3e, 0xea, 0xbd, 0xc4, 0x2b, + 0x3b, 0x7e, 0xe1, 0x93, 0x29, 0x6e, 0x9b, 0x80, 0x39, 0xdc, 0x76, 0xc2, 0xa6, 0xe7, 0x44, 0x1d, + 0x67, 0xc0, 0x1d, 0xd5, 0xad, 0xd7, 0xfc, 0x30, 0x09, 0xb1, 0xe4, 0xa3, 0x77, 0xeb, 0xf6, 0xdb, + 0x43, 0xd4, 0x3b, 0x3b, 0x3f, 0xab, 0x63, 0xfe, 0x30, 0x7f, 0xc5, 0x37, 0x7f, 0x5e, 0xd0, 0xbf, + 0xf7, 0x42, 0xd5, 0x0b, 0xb1, 0xa9, 0xf9, 0xab, 0x29, 0x7c, 0xb6, 0x1e, 0xf4, 0xef, 0x07, 0x5f, + 0x3e, 0x0b, 0xf8, 0xf3, 0xa3, 0xd3, 0x6e, 0x39, 0x9d, 0xdb, 0x5b, 0xb5, 0x88, 0xcc, 0xe9, 0x6c, + 0xce, 0x0f, 0x03, 0x80, 0x00, 0x20, 0x85, 0x07, 0x90, 0xbe, 0x1f, 0x44, 0x7b, 0x55, 0x0d, 0xec, + 0x38, 0x54, 0xf8, 0xa8, 0xde, 0x3d, 0x99, 0x86, 0x8e, 0x2c, 0x71, 0x0f, 0x26, 0x15, 0x39, 0x20, + 0x74, 0x79, 0x22, 0x79, 0x59, 0xa2, 0x13, 0xfd, 0x21, 0x71, 0x6f, 0x25, 0x3d, 0xb5, 0xb5, 0xea, + 0x51, 0xed, 0xe8, 0xe0, 0xb0, 0x7a, 0xb4, 0x9f, 0xa1, 0x39, 0xb6, 0x74, 0xbb, 0x70, 0x9d, 0x01, + 0xb3, 0x3c, 0x96, 0x84, 0x15, 0xad, 0xf1, 0xf0, 0xd3, 0x18, 0x61, 0x8c, 0x70, 0xe1, 0x8d, 0x70, + 0xdb, 0x73, 0x6f, 0x35, 0x05, 0x2c, 0x15, 0x33, 0xdc, 0x98, 0xde, 0x18, 0x35, 0x9d, 0x6e, 0xdb, + 0x8d, 0x6e, 0x3b, 0xe1, 0xfd, 0xbb, 0x66, 0xe7, 0xbe, 0xdb, 0x09, 0xbc, 0x20, 0xea, 0xad, 0xfe, + 0xe3, 0xb9, 0x3f, 0x1d, 0x1e, 0xd1, 0x0c, 0x00, 0x4d, 0x37, 0xf4, 0xef, 0xdd, 0xf0, 0xd1, 0xe9, + 0xfd, 0xe9, 0x47, 0xcd, 0x1f, 0xce, 0x8f, 0xc7, 0x5e, 0xe4, 0x85, 0x5e, 0xcf, 0xef, 0xa9, 0xa3, + 0xcf, 0xfa, 0x21, 0xd5, 0x75, 0x89, 0x1d, 0xe0, 0x0c, 0x38, 0x2b, 0x3e, 0x9c, 0xe9, 0x04, 0xfd, + 0xe9, 0x04, 0xf9, 0x89, 0x04, 0xf5, 0x15, 0xc3, 0x39, 0xa9, 0xe2, 0x9c, 0x98, 0x72, 0x4e, 0xf6, + 0x0a, 0x38, 0xb5, 0x25, 0xf2, 0x49, 0x16, 0xec, 0x7a, 0xf4, 0x23, 0xf4, 0x7a, 0x3f, 0x3a, 0xed, + 0x96, 0x18, 0x53, 0x78, 0x1e, 0x11, 0x63, 0x8f, 0xb1, 0xc7, 0xd8, 0x63, 0xec, 0x31, 0xf6, 0x18, + 0x7b, 0x8c, 0x7d, 0x1a, 0xc6, 0x3e, 0xf4, 0xda, 0xee, 0x30, 0x20, 0x4e, 0xce, 0xda, 0xaf, 0x1f, + 0x12, 0x5d, 0x00, 0xaa, 0x00, 0x55, 0x80, 0x2a, 0x40, 0x15, 0xa0, 0x0a, 0x50, 0x85, 0xc2, 0x50, + 0x05, 0xa7, 0x73, 0x7b, 0xdb, 0xf3, 0x22, 0x03, 0x8c, 0x61, 0x32, 0x32, 0xc4, 0x01, 0xe2, 0x00, + 0x71, 0x80, 0x38, 0x40, 0x1c, 0x20, 0x0e, 0x10, 0x87, 0xfc, 0x11, 0x87, 0x07, 0x2f, 0x1c, 0xd8, + 0x77, 0x1d, 0x86, 0x30, 0x19, 0x02, 0x73, 0x8e, 0x39, 0x2f, 0xbc, 0x39, 0xff, 0xde, 0xe9, 0xb4, + 0x3d, 0x57, 0x2b, 0x61, 0x61, 0x37, 0x03, 0x07, 0xff, 0xb9, 0x8e, 0x81, 0x9c, 0xba, 0xf8, 0xc2, + 0x98, 0x40, 0x03, 0xd0, 0x00, 0xd3, 0x87, 0xe9, 0xc3, 0xf4, 0x61, 0xfa, 0x30, 0xfd, 0x34, 0x0c, + 0xfe, 0x9f, 0xae, 0x1f, 0x39, 0x51, 0xc7, 0x09, 0xbd, 0x5e, 0xd4, 0x09, 0x3d, 0xcd, 0x64, 0xc3, + 0x95, 0xa3, 0x61, 0xe4, 0x31, 0xf2, 0xe4, 0x1c, 0x6e, 0xda, 0xef, 0xe4, 0x1c, 0x62, 0x9b, 0xc9, + 0x39, 0x2c, 0x91, 0x91, 0x2e, 0x62, 0x99, 0xbd, 0x04, 0xb5, 0x26, 0x63, 0x54, 0xc6, 0x7b, 0xa5, + 0x31, 0x33, 0x03, 0x7b, 0x18, 0x33, 0xe1, 0xb2, 0x72, 0xea, 0xf7, 0xa2, 0xe3, 0x28, 0x8a, 0x57, + 0xdb, 0x6c, 0x80, 0x7d, 0xf5, 0xb6, 0x37, 0x30, 0x6c, 0x83, 0x0d, 0x1c, 0xf4, 0xdb, 0xed, 0x18, + 0x15, 0xfc, 0x3e, 0xbb, 0x3f, 0x93, 0x7f, 0xe8, 0x3c, 0x6c, 0x79, 0xa1, 0xd7, 0x7a, 0xff, 0x38, + 0xfe, 0x88, 0xd6, 0x7c, 0x24, 0xdc, 0x21, 0xc2, 0x3b, 0xa3, 0x12, 0xab, 0xca, 0xe1, 0xda, 0x92, + 0x8b, 0x2f, 0x6f, 0xa9, 0xf5, 0x1b, 0x65, 0xf5, 0xdf, 0xac, 0x99, 0xaa, 0xb8, 0x53, 0x24, 0x31, + 0x35, 0xab, 0x5f, 0x68, 0xf9, 0xeb, 0xce, 0xff, 0xc9, 0xc2, 0x17, 0xdf, 0xf4, 0x85, 0x55, 0xbf, + 0xe8, 0x8a, 0xc5, 0x5a, 0x5e, 0x9c, 0xf9, 0x37, 0x78, 0xfe, 0x9e, 0x33, 0xdf, 0xb1, 0xf2, 0xfd, + 0xae, 0xbb, 0xf4, 0xc5, 0x9e, 0x15, 0xd3, 0xbb, 0xee, 0xc2, 0x83, 0xd6, 0xd4, 0xa0, 0x5c, 0x4b, + 0xed, 0x5f, 0xa2, 0xee, 0xb3, 0xd4, 0x7c, 0xf9, 0x49, 0x71, 0x18, 0x77, 0x6c, 0x46, 0x1d, 0x9b, + 0x31, 0x2f, 0x32, 0xe2, 0xc1, 0xf7, 0x4a, 0xb8, 0xe2, 0xeb, 0x2a, 0x30, 0x56, 0xee, 0xda, 0x9d, + 0xef, 0x6e, 0x7b, 0xfd, 0xcb, 0x4c, 0xa6, 0x63, 0xfc, 0x73, 0x6b, 0xbe, 0xe0, 0xcb, 0x45, 0x40, + 0x37, 0xfa, 0x58, 0x71, 0x7c, 0xa9, 0xcd, 0x0b, 0x93, 0xd4, 0x25, 0x4a, 0xec, 0xfa, 0x24, 0x76, + 0x71, 0x62, 0x2d, 0x9c, 0x1a, 0xe6, 0x6c, 0x2a, 0xa9, 0x59, 0x71, 0x6f, 0x7d, 0xa7, 0xe7, 0xde, + 0xc6, 0x48, 0xfb, 0x7d, 0x2e, 0x98, 0x39, 0xfd, 0xc8, 0x26, 0x1b, 0x19, 0xab, 0xe6, 0x6b, 0x6c, + 0xd7, 0x3a, 0x89, 0x2b, 0x1d, 0x7f, 0x1b, 0xa8, 0x7a, 0xc8, 0xca, 0x1e, 0xb1, 0xb2, 0x07, 0x9c, + 0x68, 0x9b, 0xc8, 0xb0, 0x9c, 0xb8, 0x15, 0x59, 0xa7, 0x7b, 0x22, 0x79, 0x15, 0xe1, 0xe9, 0x27, + 0x0d, 0x17, 0x12, 0xde, 0xb1, 0x53, 0x48, 0x38, 0xde, 0x66, 0xd3, 0x95, 0x65, 0xb2, 0x57, 0x3f, + 0x38, 0xd6, 0x66, 0x34, 0xe3, 0x9c, 0x24, 0x2f, 0x1b, 0xdc, 0x6a, 0x0d, 0xcb, 0xfd, 0x6a, 0x94, + 0x3a, 0x78, 0x1e, 0x42, 0x4d, 0x7e, 0xdc, 0xcd, 0x99, 0xfc, 0x98, 0x6c, 0x5b, 0x97, 0x47, 0x75, + 0x4c, 0xb4, 0xed, 0xed, 0x88, 0x8d, 0x49, 0x8f, 0xc3, 0xf4, 0x83, 0xcd, 0xc9, 0x1e, 0xd3, 0x2c, + 0xcb, 0x3b, 0x1e, 0x47, 0x71, 0x82, 0xd5, 0x0e, 0x88, 0xf6, 0x41, 0x91, 0x38, 0x30, 0x72, 0x07, + 0x47, 0xea, 0x00, 0x89, 0x1f, 0x24, 0xf1, 0x03, 0x25, 0x7a, 0xb0, 0x34, 0xc5, 0x3b, 0xc5, 0x1d, + 0xa3, 0x7a, 0xe0, 0xa6, 0x03, 0x78, 0x6d, 0xff, 0xce, 0xff, 0xde, 0x1e, 0xf8, 0xc9, 0x83, 0xa5, + 0x71, 0xba, 0x9d, 0xb6, 0xdf, 0x7c, 0x94, 0xeb, 0x04, 0xb8, 0x66, 0x7c, 0xba, 0x01, 0x9a, 0x3f, + 0xc0, 0xd2, 0x07, 0xd9, 0xd8, 0x81, 0x36, 0x76, 0xb0, 0x8d, 0x1c, 0x70, 0xbd, 0x83, 0xae, 0x79, + 0xe0, 0xa7, 0x6f, 0x24, 0xdf, 0xfb, 0x4f, 0xbd, 0xaa, 0xd9, 0x5a, 0x3b, 0x7a, 0x28, 0x30, 0xd6, + 0x6c, 0xd5, 0xb3, 0xb0, 0xdb, 0x69, 0xbf, 0x0b, 0x3b, 0xfd, 0xc8, 0x0f, 0xee, 0xc6, 0x48, 0x32, + 0xfd, 0xe3, 0xd1, 0x7f, 0x3a, 0x2d, 0xef, 0xd6, 0x0f, 0xfc, 0xc8, 0xef, 0x04, 0xbd, 0xf5, 0x7f, + 0x35, 0xfd, 0x9b, 0xe4, 0x05, 0xd1, 0xe4, 0x76, 0x81, 0xce, 0x4d, 0x5a, 0xe8, 0x35, 0x3d, 0x95, + 0x10, 0xe6, 0xb5, 0x8b, 0x3f, 0x19, 0x50, 0x73, 0x57, 0xce, 0xe4, 0x3a, 0xdd, 0xba, 0xed, 0x9e, + 0x07, 0xce, 0x83, 0xf3, 0xe0, 0x7c, 0xb6, 0x70, 0x5e, 0x3d, 0x9c, 0x7b, 0x2d, 0xce, 0xef, 0xe6, + 0x10, 0x42, 0x7b, 0x5e, 0xd0, 0x92, 0xc3, 0xcf, 0xe1, 0x68, 0x80, 0x27, 0xe0, 0x09, 0x78, 0x02, + 0x9e, 0xe5, 0x00, 0x4f, 0xe7, 0x5e, 0x22, 0x9c, 0x6b, 0x16, 0x40, 0x87, 0x23, 0x02, 0x7a, 0x80, + 0x1e, 0xa0, 0x97, 0x29, 0xd0, 0xeb, 0xfb, 0x41, 0xf4, 0xab, 0x20, 0xe4, 0xed, 0xd3, 0xbb, 0x3f, + 0x15, 0x54, 0x5b, 0x1a, 0x96, 0xde, 0xfd, 0xb9, 0x5b, 0xaa, 0xea, 0xfe, 0x3e, 0xdd, 0xfb, 0x93, + 0xfe, 0xa2, 0x7b, 0x7f, 0x22, 0x72, 0xb7, 0x36, 0xb4, 0xf2, 0xfb, 0x5d, 0x77, 0x7b, 0xf0, 0xff, + 0x51, 0xa4, 0xdd, 0xf6, 0x34, 0x18, 0x6b, 0xfa, 0xbb, 0xed, 0x69, 0x6c, 0xc2, 0xf6, 0xf8, 0x26, + 0xd6, 0x56, 0x73, 0x7e, 0xa5, 0xbe, 0xf4, 0x49, 0x5a, 0x8f, 0xaf, 0x67, 0xae, 0x09, 0x5a, 0x91, + 0xaf, 0x75, 0x02, 0x74, 0x6f, 0x9c, 0xab, 0xdc, 0x38, 0x1b, 0xa4, 0xa1, 0xdc, 0x38, 0xcf, 0xa8, + 0x54, 0xdc, 0x38, 0xe3, 0x57, 0xe2, 0x57, 0xe2, 0x57, 0xea, 0xef, 0x37, 0x6e, 0x9c, 0xf3, 0xa3, + 0xf8, 0x71, 0xe3, 0x0c, 0xce, 0x83, 0xf3, 0xe0, 0xbc, 0xca, 0x7e, 0xe3, 0xd2, 0x64, 0x8b, 0x1b, + 0x67, 0xc0, 0x13, 0xf0, 0x04, 0x3c, 0x01, 0x4f, 0x0d, 0xf0, 0xe4, 0xc6, 0x19, 0xd0, 0x03, 0xf4, + 0xca, 0x00, 0x7a, 0xdc, 0x38, 0x27, 0xf8, 0x62, 0xdc, 0x38, 0x73, 0xe3, 0xcc, 0x8d, 0xb3, 0x04, + 0x10, 0xca, 0x8d, 0xc2, 0x8d, 0x73, 0x22, 0x72, 0x27, 0x72, 0xe3, 0x9c, 0xa0, 0x42, 0x97, 0xfe, + 0xb4, 0x99, 0xcd, 0xa3, 0xd6, 0x9c, 0x58, 0x99, 0x09, 0xad, 0x28, 0xdd, 0xa9, 0xcf, 0xd6, 0x52, + 0x7a, 0x7f, 0xd7, 0xbd, 0xf9, 0x6d, 0xf8, 0xa0, 0x9b, 0xe3, 0x5b, 0xff, 0xd2, 0xbd, 0xf5, 0x6f, + 0x8e, 0x5b, 0xad, 0xc6, 0x70, 0xf0, 0x0c, 0x14, 0x88, 0x9d, 0xbc, 0xb2, 0x33, 0xfe, 0xbe, 0xaa, + 0xf5, 0x18, 0xe6, 0x86, 0x29, 0x47, 0x49, 0x58, 0x6a, 0x32, 0x08, 0xb2, 0xf9, 0xac, 0x17, 0x80, + 0x55, 0xbf, 0xa7, 0xd3, 0xb9, 0x97, 0x9b, 0xde, 0xc3, 0xbd, 0x7d, 0x3b, 0x0e, 0x26, 0xda, 0x9e, + 0x3f, 0x69, 0x19, 0x40, 0x10, 0xc5, 0xb2, 0x15, 0x7a, 0xe5, 0x2a, 0xa8, 0xe3, 0x02, 0x66, 0x64, + 0xb5, 0x8e, 0x8b, 0x9e, 0x49, 0x15, 0x35, 0xad, 0x42, 0xfe, 0x11, 0x55, 0x5d, 0xec, 0x08, 0x6f, + 0xc4, 0xd8, 0x09, 0x0a, 0x6a, 0xd3, 0xfd, 0xe2, 0xb7, 0xbc, 0x20, 0xf2, 0xa3, 0x47, 0xbd, 0x30, + 0x9b, 0xa9, 0xc5, 0xd1, 0x50, 0x02, 0x2a, 0x27, 0xe3, 0xaf, 0xf2, 0xde, 0xed, 0x09, 0x86, 0x91, + 0x1c, 0x7f, 0x3a, 0xb9, 0xb9, 0x1c, 0xfc, 0xe3, 0xea, 0xf7, 0x46, 0xbd, 0x22, 0x51, 0x14, 0xbc, + 0x27, 0xa2, 0xf1, 0x09, 0xc9, 0xdb, 0x93, 0xd7, 0x3c, 0x69, 0x7c, 0xad, 0xdd, 0x7c, 0x39, 0x3b, + 0xf9, 0x70, 0x7c, 0x79, 0x25, 0x20, 0x17, 0xbf, 0xc9, 0xda, 0xfb, 0x9d, 0x9e, 0x9c, 0xfd, 0xeb, + 0xf2, 0xea, 0xf8, 0xaa, 0x5e, 0xc4, 0x97, 0xbb, 0xbc, 0xb8, 0xaa, 0xdf, 0x34, 0xce, 0x4f, 0x4f, + 0x3e, 0xfc, 0x7e, 0x73, 0xd2, 0xf8, 0x7a, 0x50, 0xc8, 0x05, 0xdc, 0xfb, 0xda, 0x38, 0x1b, 0xbe, + 0x5d, 0xa1, 0xb7, 0x69, 0x75, 0xf0, 0x96, 0x5f, 0x1b, 0xa7, 0x97, 0x85, 0x3e, 0x84, 0x37, 0x97, + 0x8d, 0x4f, 0xc5, 0x7e, 0xc1, 0xaf, 0x8d, 0xb3, 0x22, 0xbe, 0xe0, 0xd0, 0x4c, 0x7c, 0x3a, 0x3d, + 0xff, 0xf7, 0x65, 0xa3, 0xfe, 0xa1, 0xe0, 0x30, 0xf3, 0xf9, 0xcb, 0xe9, 0x55, 0x61, 0x81, 0xe6, + 0x6b, 0xe3, 0xac, 0x2c, 0x2b, 0x59, 0x2b, 0xf6, 0x4a, 0x0e, 0xf7, 0xea, 0xe9, 0xf1, 0xfb, 0xfa, + 0x69, 0xfd, 0x63, 0xa1, 0x4d, 0xe3, 0xf3, 0x7a, 0x16, 0xf8, 0x2d, 0x87, 0xef, 0x57, 0x82, 0xd5, + 0x2c, 0x3a, 0x91, 0x5b, 0xa0, 0xe4, 0xb5, 0xe2, 0x92, 0xd5, 0xba, 0x0c, 0xd5, 0xd1, 0x1a, 0xe1, + 0x3a, 0xf3, 0xad, 0xb0, 0x54, 0xf2, 0x87, 0xbd, 0xc0, 0xfd, 0xde, 0xf6, 0x5a, 0xfa, 0x2a, 0xe7, + 0x64, 0x20, 0xd5, 0x8c, 0x4c, 0x99, 0x28, 0x6e, 0x74, 0xd2, 0xb9, 0x91, 0xd0, 0x49, 0x2d, 0x9e, + 0xd7, 0xd4, 0x75, 0x52, 0xfd, 0x28, 0x6b, 0xcd, 0xe8, 0x6a, 0x22, 0x50, 0x9e, 0x23, 0x50, 0x54, + 0x4a, 0x47, 0x98, 0xb9, 0xdf, 0xbd, 0x0b, 0xdd, 0xa6, 0x77, 0xdb, 0x6f, 0x0f, 0xbb, 0xfe, 0xba, + 0x61, 0xa4, 0x7e, 0xd3, 0xbb, 0x34, 0x12, 0x77, 0xbe, 0xe6, 0xc0, 0x97, 0x3b, 0x5f, 0x7a, 0x77, + 0xc0, 0x5e, 0x60, 0x2f, 0xd9, 0x66, 0x2f, 0xfa, 0x95, 0x54, 0x34, 0x1d, 0x10, 0x61, 0x47, 0x44, + 0xda, 0x21, 0x11, 0x72, 0x4c, 0xc4, 0x8e, 0xb8, 0xe4, 0x51, 0x97, 0x3f, 0xf2, 0xd2, 0x47, 0xdf, + 0x18, 0x04, 0x18, 0x83, 0x02, 0x23, 0x90, 0x20, 0x23, 0x80, 0x90, 0x56, 0x6a, 0x70, 0x82, 0xcb, + 0x97, 0xf3, 0xb0, 0xe8, 0x4c, 0x50, 0x6c, 0xcf, 0x2a, 0x45, 0xa4, 0xd8, 0x1e, 0x14, 0x11, 0x8a, + 0x08, 0x45, 0x84, 0x22, 0x42, 0x11, 0xa1, 0x88, 0x50, 0xc4, 0x5c, 0x50, 0x44, 0xb2, 0x63, 0x8d, + 0xcc, 0xab, 0x91, 0x24, 0xd9, 0xdf, 0xc6, 0x0f, 0xb9, 0x18, 0x3f, 0x23, 0x03, 0x37, 0x21, 0x7e, + 0xf7, 0xa1, 0xe6, 0xb4, 0xdd, 0xef, 0x5e, 0xdb, 0x6b, 0x39, 0xfd, 0xc0, 0x6f, 0xba, 0x3d, 0x8d, + 0xdb, 0x90, 0x95, 0xa3, 0x71, 0x23, 0x62, 0xce, 0x64, 0x73, 0x23, 0x62, 0xf3, 0x46, 0x64, 0x5c, + 0x79, 0xba, 0xed, 0xdf, 0xfb, 0x91, 0xbe, 0xcf, 0x3b, 0x37, 0x1a, 0xb7, 0x23, 0xb8, 0xbe, 0xb8, + 0xbe, 0x71, 0x06, 0xd0, 0xbc, 0x96, 0x5c, 0xda, 0x76, 0x5a, 0xd7, 0x93, 0x42, 0x07, 0x11, 0x47, + 0x15, 0x47, 0x35, 0xef, 0x8e, 0xaa, 0xee, 0xc1, 0x9e, 0x0e, 0x74, 0xef, 0xfe, 0x1c, 0xf7, 0x78, + 0x18, 0xe6, 0x6c, 0x0a, 0x47, 0xcf, 0xce, 0x8d, 0x2e, 0xb4, 0x98, 0xb2, 0x95, 0xba, 0xc4, 0x40, + 0xc0, 0x04, 0x18, 0x98, 0x03, 0x05, 0x53, 0xe0, 0x60, 0x1c, 0x24, 0x8c, 0x83, 0x85, 0x51, 0xd0, + 0x90, 0x01, 0x0f, 0x21, 0x10, 0x91, 0x57, 0xbd, 0x96, 0xf6, 0x6b, 0xdf, 0x0f, 0xa2, 0xbd, 0xaa, + 0xe4, 0x7e, 0x1d, 0x9f, 0xfe, 0x43, 0xc1, 0x21, 0x65, 0x6b, 0x52, 0x4e, 0x7e, 0xc9, 0x9e, 0xa7, + 0x2d, 0x53, 0x35, 0x2a, 0x0d, 0xc1, 0xea, 0xd2, 0xf0, 0x86, 0x6a, 0x56, 0x4e, 0xc7, 0x37, 0x58, + 0x0e, 0x51, 0xf8, 0xb8, 0xcd, 0x2f, 0xa9, 0x81, 0x5a, 0x96, 0xb6, 0x97, 0xb4, 0x56, 0x3d, 0xaa, + 0x1d, 0x1d, 0x1c, 0x56, 0x8f, 0xf6, 0x73, 0xbc, 0xb6, 0xaf, 0xb2, 0x39, 0xda, 0x75, 0x46, 0x4a, + 0x71, 0x0a, 0xec, 0xfd, 0x01, 0x0f, 0x78, 0xf0, 0x82, 0xc8, 0x89, 0x3c, 0x37, 0x6c, 0x75, 0xfe, + 0x0c, 0xe4, 0xe9, 0xe6, 0xd2, 0x13, 0x84, 0x0c, 0xa4, 0xf0, 0x45, 0x2b, 0x54, 0x16, 0x2a, 0x0b, + 0x95, 0xcd, 0x19, 0x95, 0x95, 0xbb, 0xc8, 0x5d, 0x92, 0xb1, 0x76, 0x0b, 0x04, 0xf2, 0xe3, 0x1b, + 0x3d, 0x27, 0xf2, 0xef, 0xbd, 0x50, 0x1e, 0xe1, 0xe7, 0x87, 0x07, 0x86, 0x81, 0x61, 0x60, 0xb8, + 0x54, 0x30, 0xdc, 0xf2, 0x9a, 0xfe, 0xbd, 0xdb, 0x3e, 0xa8, 0x99, 0x00, 0xe2, 0xaa, 0xe0, 0x98, + 0x4b, 0x4e, 0x4b, 0x15, 0xc9, 0xc2, 0x8c, 0x7f, 0x5b, 0x45, 0xb2, 0x28, 0x9a, 0x64, 0xb1, 0xc7, + 0x92, 0xa2, 0x54, 0xa4, 0x47, 0x62, 0xff, 0x74, 0xc3, 0xc0, 0x0f, 0xee, 0x9c, 0xe8, 0x47, 0xe8, + 0xf5, 0x7e, 0x74, 0xda, 0x2d, 0xa7, 0xdb, 0x8c, 0xe4, 0xc9, 0xec, 0xea, 0xc7, 0x40, 0x6a, 0x21, + 0xb5, 0x90, 0xda, 0x52, 0x91, 0xda, 0xae, 0x17, 0x36, 0xbd, 0x20, 0x72, 0xef, 0x3c, 0x03, 0xac, + 0x76, 0x1f, 0xde, 0x69, 0x86, 0xa4, 0x70, 0x55, 0x56, 0x38, 0xde, 0x69, 0x7a, 0x49, 0x77, 0x77, + 0x60, 0x9e, 0xc5, 0x65, 0x9e, 0xa9, 0x46, 0x84, 0x09, 0xe5, 0xcb, 0x4c, 0xc7, 0xd3, 0xc9, 0xef, + 0x58, 0x95, 0x99, 0xb0, 0x3d, 0x1b, 0x81, 0xad, 0x95, 0x6b, 0xad, 0x3f, 0xdf, 0x5a, 0x3d, 0x94, + 0xb5, 0x72, 0xb0, 0x97, 0x4c, 0xbf, 0x4e, 0x2e, 0xf6, 0x92, 0x7e, 0x25, 0x15, 0x0f, 0x5b, 0x25, + 0x1e, 0x36, 0x03, 0x1c, 0x9e, 0x78, 0xd8, 0xf8, 0x6f, 0x44, 0x3c, 0x2c, 0x8e, 0x3e, 0x8e, 0x3e, + 0x8e, 0x7e, 0xc6, 0x1d, 0x7d, 0xe2, 0x61, 0x71, 0xf2, 0x71, 0xf2, 0x0b, 0xee, 0xe4, 0x13, 0x0f, + 0x5b, 0x02, 0x5f, 0x9f, 0x78, 0x58, 0xe2, 0x61, 0xa1, 0xb2, 0x50, 0xd9, 0xd2, 0x52, 0x59, 0xe2, + 0x61, 0x63, 0xbd, 0x13, 0xf1, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x13, 0x0f, 0x4b, 0x3c, 0x2c, + 0xf1, 0xb0, 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x3c, 0x2c, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x78, 0x58, + 0x48, 0x2d, 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x0f, 0x9b, 0x47, 0xde, 0xc9, 0x55, 0x59, + 0xe1, 0x78, 0x27, 0xf1, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x57, 0x3c, 0xac, 0x46, 0x61, 0x79, + 0xfd, 0xe9, 0x2e, 0x5f, 0x61, 0xff, 0x8d, 0x0b, 0x52, 0xd1, 0x8a, 0x10, 0xde, 0x50, 0x99, 0xfe, + 0xa4, 0xfb, 0x50, 0x3b, 0x1d, 0x3d, 0xfc, 0xcb, 0xe8, 0xd9, 0x37, 0x23, 0xf6, 0x7f, 0x3a, 0x7c, + 0x34, 0xed, 0x05, 0x0c, 0xac, 0xae, 0x91, 0x16, 0x03, 0xcb, 0x0b, 0x99, 0x99, 0x2e, 0x03, 0x32, + 0xdd, 0x05, 0xe8, 0x2a, 0x60, 0xde, 0x17, 0xa6, 0xab, 0x00, 0x7d, 0x96, 0x2d, 0x8b, 0x4f, 0x74, + 0x12, 0x48, 0x47, 0x2c, 0x2a, 0x73, 0x27, 0x81, 0x9e, 0x17, 0xb4, 0x9c, 0xd6, 0x28, 0x70, 0xcc, + 0x09, 0x3b, 0x7d, 0xd1, 0x24, 0xaa, 0xe5, 0xb1, 0x69, 0xad, 0x67, 0x1a, 0x00, 0xe4, 0x81, 0x40, + 0x1a, 0x10, 0x8c, 0x01, 0x83, 0x31, 0x80, 0x30, 0x02, 0x14, 0xd9, 0xf0, 0xc7, 0x69, 0xad, 0x87, + 0x07, 0xbe, 0xe8, 0xa3, 0x4d, 0x3c, 0xef, 0xec, 0x77, 0x5e, 0xa6, 0x19, 0x15, 0x14, 0x12, 0x0a, + 0x99, 0x32, 0x85, 0xa4, 0x19, 0x15, 0xd4, 0x0e, 0x6a, 0x97, 0x3d, 0x6a, 0x47, 0xf2, 0x3d, 0x51, + 0x45, 0x22, 0x23, 0x13, 0x55, 0x64, 0x13, 0x34, 0x64, 0xc0, 0x43, 0x08, 0x44, 0xe4, 0xfd, 0xc4, + 0xa5, 0xfd, 0x4a, 0xf2, 0xbd, 0xe4, 0x8e, 0x24, 0xa2, 0x68, 0xfd, 0xf8, 0x44, 0x14, 0xa5, 0xb6, + 0xa4, 0x24, 0xdf, 0x9b, 0x1b, 0x8d, 0xe4, 0xfb, 0x84, 0x22, 0x0f, 0xc9, 0xf7, 0x50, 0x59, 0xa8, + 0x2c, 0x54, 0x56, 0x7c, 0xbf, 0x92, 0x7c, 0x1f, 0xeb, 0x9d, 0x48, 0xbe, 0x07, 0x86, 0x81, 0x61, + 0x60, 0x98, 0xe4, 0x7b, 0x92, 0xef, 0x49, 0xbe, 0x47, 0xb2, 0x50, 0x5b, 0x52, 0x92, 0xef, 0x51, + 0x2a, 0x52, 0x24, 0xb1, 0x24, 0xdf, 0x43, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, 0x96, 0xe4, + 0xfb, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0x49, 0xbe, 0x87, 0x79, 0xa6, 0x34, 0x42, + 0xe1, 0x92, 0xef, 0x69, 0x42, 0xf5, 0x92, 0xc9, 0xa7, 0x09, 0x95, 0x6d, 0x2e, 0x4f, 0x1c, 0x2c, + 0x71, 0xb0, 0xeb, 0x07, 0x22, 0x0e, 0x16, 0x07, 0x1f, 0x07, 0x1f, 0x07, 0x9f, 0x38, 0x58, 0x9c, + 0x7b, 0x9c, 0x7b, 0x9c, 0x7b, 0x85, 0x25, 0x25, 0x0e, 0xb6, 0x04, 0x3e, 0x3e, 0x71, 0xb0, 0xc4, + 0xc1, 0x42, 0x65, 0xa1, 0xb2, 0xa5, 0xa5, 0xb2, 0xc4, 0xc1, 0xc6, 0x7a, 0x27, 0xe2, 0x60, 0x81, + 0x61, 0x60, 0x18, 0x18, 0x26, 0x0e, 0x96, 0x38, 0x58, 0xe2, 0x60, 0x91, 0x2c, 0xd4, 0x96, 0x94, + 0x38, 0x58, 0x94, 0x8a, 0x14, 0x49, 0x2c, 0x71, 0xb0, 0x90, 0x5a, 0x48, 0x2d, 0xa4, 0xd6, 0x16, + 0xa9, 0x25, 0x0e, 0x36, 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, 0x4e, 0xe2, 0x60, 0x61, 0x9e, + 0x29, 0x8d, 0x50, 0x8e, 0x38, 0x58, 0x9a, 0x4f, 0x65, 0x63, 0x21, 0x8c, 0x37, 0x9d, 0x4a, 0xb3, + 0xdb, 0x94, 0x52, 0xff, 0x25, 0x9d, 0x28, 0x67, 0x91, 0xe8, 0x66, 0xb1, 0x32, 0xdb, 0x55, 0xca, + 0x6c, 0x1b, 0xf4, 0xb0, 0x28, 0xb3, 0xfd, 0xfc, 0xcd, 0xe9, 0xd4, 0x92, 0x01, 0xd2, 0x49, 0x39, + 0xef, 0x6c, 0x49, 0x2f, 0xa4, 0x31, 0xa4, 0x20, 0xa9, 0xd0, 0xa9, 0xa5, 0x70, 0x74, 0x55, 0xc3, + 0x55, 0xa0, 0x43, 0xe9, 0xea, 0x39, 0x35, 0xd6, 0x99, 0x34, 0x5b, 0x2d, 0x49, 0x0f, 0x96, 0x3a, + 0xb2, 0xea, 0xb4, 0x26, 0x3d, 0xd0, 0xec, 0xef, 0x4a, 0x8b, 0xd2, 0x54, 0xcc, 0x32, 0x2d, 0x4a, + 0x63, 0x7c, 0x90, 0x5e, 0x53, 0x38, 0xc1, 0x38, 0xc1, 0x29, 0x3b, 0xc1, 0xf4, 0x9a, 0xc2, 0x39, + 0xc5, 0x39, 0xcd, 0x9e, 0x73, 0x4a, 0x8e, 0x3d, 0xc1, 0x43, 0x22, 0x23, 0x13, 0x3c, 0x64, 0x13, + 0x34, 0x64, 0xc0, 0x43, 0x08, 0x44, 0xe4, 0x95, 0xae, 0xa5, 0xfd, 0x4a, 0x8e, 0xbd, 0xe4, 0x8e, + 0x24, 0x70, 0x68, 0xfd, 0xf8, 0x04, 0x0e, 0xa5, 0xb6, 0xa4, 0xe4, 0xd8, 0x9b, 0x1b, 0x8d, 0x1c, + 0xfb, 0x84, 0x22, 0x0f, 0x39, 0xf6, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x56, 0x7c, 0xbf, 0x92, 0x63, + 0x1f, 0xeb, 0x9d, 0xc8, 0xb1, 0x07, 0x86, 0x81, 0x61, 0x60, 0x98, 0x1c, 0x7b, 0x72, 0xec, 0xc9, + 0xb1, 0x47, 0xb2, 0x50, 0x5b, 0x52, 0x72, 0xec, 0x51, 0x2a, 0x52, 0x24, 0xb1, 0xe4, 0xd8, 0x43, + 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, 0x96, 0x1c, 0xfb, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, + 0xc7, 0x3b, 0xc9, 0xb1, 0x87, 0x79, 0xa6, 0x34, 0x42, 0xc1, 0x72, 0xec, 0x97, 0x32, 0x13, 0xe8, + 0x39, 0xb5, 0xd2, 0xf4, 0xd3, 0x73, 0xca, 0x36, 0xa7, 0x27, 0x1e, 0x96, 0x78, 0xd8, 0xf5, 0x03, + 0x11, 0x0f, 0x8b, 0xa3, 0x8f, 0xa3, 0x8f, 0xa3, 0x4f, 0x3c, 0x2c, 0x4e, 0x3e, 0x4e, 0x3e, 0x4e, + 0xbe, 0xc2, 0x92, 0x12, 0x0f, 0x5b, 0x02, 0x5f, 0x9f, 0x78, 0x58, 0xe2, 0x61, 0xa1, 0xb2, 0x50, + 0xd9, 0xd2, 0x52, 0x59, 0xe2, 0x61, 0x63, 0xbd, 0x13, 0xf1, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, + 0x13, 0x0f, 0x4b, 0x3c, 0x2c, 0xf1, 0xb0, 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x3c, 0x2c, 0x4a, 0x45, + 0x8a, 0x24, 0x96, 0x78, 0x58, 0x48, 0x2d, 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x0f, 0x9b, + 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, 0x27, 0xf1, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x57, + 0x3c, 0x2c, 0xbd, 0xa7, 0xb2, 0xb5, 0x20, 0xa6, 0x7b, 0x50, 0x1d, 0x9c, 0x8e, 0x1e, 0x9e, 0x66, + 0x2b, 0xaa, 0x22, 0xb7, 0x15, 0xd0, 0x2d, 0x8c, 0xaf, 0xba, 0x90, 0x99, 0xe9, 0x32, 0x20, 0xd3, + 0x5d, 0x80, 0xae, 0x02, 0xe6, 0x7d, 0x61, 0xba, 0x0a, 0xd8, 0xec, 0x2a, 0xa0, 0x59, 0xd0, 0x5c, + 0xa6, 0x90, 0x39, 0x9d, 0x04, 0x4c, 0x88, 0x49, 0x74, 0x12, 0x30, 0xc8, 0xda, 0x68, 0xa7, 0x97, + 0x01, 0x7f, 0x9a, 0x8e, 0x05, 0xd9, 0x00, 0x06, 0x63, 0x00, 0x61, 0x04, 0x28, 0xb2, 0xe1, 0x8f, + 0xd3, 0x4e, 0x0f, 0x0f, 0x7c, 0xd1, 0x47, 0x9b, 0x78, 0xde, 0x3a, 0xd9, 0xc0, 0x76, 0x7a, 0x30, + 0xd3, 0x8c, 0x0a, 0x0a, 0x09, 0x85, 0x4c, 0x99, 0x42, 0xd2, 0x8c, 0x0a, 0x6a, 0x07, 0xb5, 0xcb, + 0x1e, 0xb5, 0x23, 0xf9, 0x9e, 0xa8, 0x22, 0x91, 0x91, 0x89, 0x2a, 0xb2, 0x09, 0x1a, 0x32, 0xe0, + 0x21, 0x04, 0x22, 0xf2, 0x7e, 0xe2, 0xd2, 0x7e, 0x25, 0xf9, 0x5e, 0x72, 0x47, 0x12, 0x51, 0xb4, + 0x7e, 0x7c, 0x22, 0x8a, 0x52, 0x5b, 0x52, 0x92, 0xef, 0xcd, 0x8d, 0x46, 0xf2, 0x7d, 0x42, 0x91, + 0x87, 0xe4, 0x7b, 0xa8, 0x2c, 0x54, 0x16, 0x2a, 0x2b, 0xbe, 0x5f, 0x49, 0xbe, 0x8f, 0xf5, 0x4e, + 0x24, 0xdf, 0x03, 0xc3, 0xc0, 0x30, 0x30, 0x4c, 0xf2, 0x3d, 0xc9, 0xf7, 0x24, 0xdf, 0x23, 0x59, + 0xa8, 0x2d, 0x29, 0xc9, 0xf7, 0x28, 0x15, 0x29, 0x92, 0x58, 0x92, 0xef, 0x21, 0xb5, 0x90, 0x5a, + 0x48, 0xad, 0x2d, 0x52, 0x4b, 0xf2, 0x7d, 0x1e, 0x79, 0x27, 0x57, 0x65, 0x85, 0xe3, 0x9d, 0x24, + 0xdf, 0xc3, 0x3c, 0x53, 0x1a, 0xa1, 0x70, 0xc9, 0xf7, 0x34, 0xa1, 0x7a, 0xc9, 0xe4, 0xd3, 0x84, + 0xca, 0x36, 0x97, 0x27, 0x0e, 0x96, 0x38, 0xd8, 0xf5, 0x03, 0x11, 0x07, 0x8b, 0x83, 0x8f, 0x83, + 0x8f, 0x83, 0x4f, 0x1c, 0x2c, 0xce, 0x3d, 0xce, 0x3d, 0xce, 0xbd, 0xc2, 0x92, 0x12, 0x07, 0x5b, + 0x02, 0x1f, 0x9f, 0x38, 0x58, 0xe2, 0x60, 0xa1, 0xb2, 0x50, 0xd9, 0xd2, 0x52, 0x59, 0xe2, 0x60, + 0x63, 0xbd, 0x13, 0x71, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x13, 0x07, 0x4b, 0x1c, 0x2c, 0x71, + 0xb0, 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x1c, 0x2c, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x38, 0x58, 0x48, + 0x2d, 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x07, 0x9b, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, + 0x78, 0x27, 0x71, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x47, 0x1c, 0x2c, 0xcd, 0xa7, 0xb2, 0xb1, + 0x10, 0xc6, 0x9b, 0x4e, 0xa5, 0xd9, 0x6d, 0x4a, 0xa9, 0xff, 0x92, 0x4e, 0x94, 0xb3, 0x48, 0x74, + 0xb3, 0x58, 0x99, 0xed, 0x2a, 0x65, 0xb6, 0x0d, 0x7a, 0x58, 0x94, 0xd9, 0x7e, 0xfe, 0xe6, 0x74, + 0x6a, 0xc9, 0x00, 0xe9, 0xa4, 0x9c, 0x77, 0xb6, 0xa4, 0x17, 0xd2, 0x18, 0x52, 0x90, 0x54, 0xe8, + 0xd4, 0x52, 0x38, 0xba, 0xaa, 0xe1, 0x2a, 0xd0, 0xa1, 0x74, 0xf5, 0x9c, 0x1a, 0xeb, 0x4c, 0x9a, + 0xa1, 0x96, 0xa4, 0xed, 0xea, 0x43, 0x37, 0x70, 0xbc, 0x87, 0x6e, 0xa0, 0xde, 0x90, 0x74, 0x66, + 0x0c, 0xda, 0x91, 0x9a, 0x33, 0xc9, 0xb4, 0x23, 0xb5, 0xd9, 0x8e, 0x94, 0xbe, 0x52, 0x38, 0xbc, + 0x38, 0xbc, 0x29, 0x3b, 0xbc, 0xf4, 0x95, 0xc2, 0x11, 0xc5, 0x11, 0xcd, 0x9e, 0x23, 0x4a, 0x3e, + 0x3d, 0x81, 0x42, 0x22, 0x23, 0x13, 0x28, 0x64, 0x13, 0x34, 0x64, 0xc0, 0x43, 0x08, 0x44, 0xe4, + 0x55, 0xad, 0xa5, 0xfd, 0x4a, 0x3e, 0xbd, 0xe4, 0x8e, 0x24, 0x48, 0x68, 0xfd, 0xf8, 0x04, 0x09, + 0xa5, 0xb6, 0xa4, 0xe4, 0xd3, 0x9b, 0x1b, 0x8d, 0x7c, 0xfa, 0x84, 0x22, 0x0f, 0xf9, 0xf4, 0x50, + 0x59, 0xa8, 0x2c, 0x54, 0x56, 0x7c, 0xbf, 0x92, 0x4f, 0x1f, 0xeb, 0x9d, 0xc8, 0xa7, 0x07, 0x86, + 0x81, 0x61, 0x60, 0x98, 0x7c, 0x7a, 0xf2, 0xe9, 0xc9, 0xa7, 0x47, 0xb2, 0x50, 0x5b, 0x52, 0xf2, + 0xe9, 0x51, 0x2a, 0x52, 0x24, 0xb1, 0xe4, 0xd3, 0x43, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, + 0x96, 0x7c, 0xfa, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0xc9, 0xa7, 0x87, 0x79, 0xa6, + 0x34, 0x42, 0x91, 0xf2, 0xe9, 0x9f, 0xf3, 0x11, 0xe8, 0x2a, 0xb5, 0xd2, 0xe0, 0xd3, 0x55, 0xca, + 0x36, 0x93, 0x27, 0x0a, 0x96, 0x28, 0xd8, 0xf5, 0x03, 0x11, 0x05, 0x8b, 0x7b, 0x8f, 0x7b, 0x8f, + 0x7b, 0x4f, 0x14, 0x2c, 0xae, 0x3d, 0xae, 0x3d, 0xae, 0xbd, 0xc2, 0x92, 0x12, 0x05, 0x5b, 0x02, + 0x0f, 0x9f, 0x28, 0x58, 0xa2, 0x60, 0xa1, 0xb2, 0x50, 0xd9, 0xd2, 0x52, 0x59, 0xa2, 0x60, 0x63, + 0xbd, 0x13, 0x51, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x13, 0x05, 0x4b, 0x14, 0x2c, 0x51, 0xb0, + 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x14, 0x2c, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x28, 0x58, 0x48, 0x2d, + 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x05, 0x9b, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, + 0x27, 0x51, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x43, 0x14, 0x2c, 0x3d, 0xa5, 0xb2, 0xb0, 0x0c, + 0x46, 0x3b, 0x4a, 0x9d, 0x56, 0xbf, 0x76, 0x83, 0xfa, 0x43, 0x37, 0x48, 0xa5, 0x9f, 0x54, 0x61, + 0x7b, 0x03, 0x28, 0xd7, 0xb9, 0x4f, 0xb8, 0x6a, 0xd9, 0xe9, 0x0b, 0xf0, 0xd0, 0x6d, 0xf7, 0x74, + 0xfb, 0x02, 0x0c, 0xc7, 0xa0, 0x2f, 0x80, 0x39, 0xbf, 0x96, 0xbe, 0x00, 0xf4, 0x05, 0xa0, 0x2f, + 0x80, 0xb0, 0x48, 0x44, 0x5f, 0x00, 0x83, 0xbc, 0x8c, 0xbe, 0x00, 0x26, 0x0f, 0xa4, 0xe4, 0xc1, + 0x94, 0x3f, 0xa0, 0xd2, 0x07, 0xd5, 0xd8, 0x81, 0x35, 0x76, 0x70, 0x8d, 0x1c, 0xe0, 0x6c, 0xf8, + 0xbf, 0x64, 0x44, 0x71, 0xd5, 0x23, 0x32, 0x32, 0x57, 0x3d, 0x36, 0x41, 0x43, 0x56, 0x0e, 0x24, + 0x23, 0x4a, 0x64, 0x48, 0xae, 0x79, 0xb8, 0xe6, 0xb1, 0x78, 0xdc, 0xe6, 0x97, 0x94, 0x8c, 0xa8, + 0x6c, 0xac, 0x2d, 0xb7, 0x3d, 0xa6, 0xf7, 0x3e, 0x19, 0x51, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x36, + 0xa7, 0x54, 0x96, 0x8c, 0xa8, 0x58, 0xef, 0x44, 0x46, 0x14, 0x30, 0x0c, 0x0c, 0x03, 0xc3, 0x64, + 0x44, 0x91, 0x11, 0x45, 0x46, 0x14, 0x92, 0x85, 0xda, 0x92, 0x92, 0x11, 0x85, 0x52, 0x91, 0x22, + 0x89, 0x25, 0x23, 0x0a, 0x52, 0x0b, 0xa9, 0x85, 0xd4, 0xda, 0x22, 0xb5, 0x64, 0x44, 0xe5, 0x91, + 0x77, 0x72, 0x55, 0x56, 0x38, 0xde, 0x49, 0x46, 0x14, 0xcc, 0x33, 0xa5, 0x11, 0x8a, 0x97, 0x11, + 0xf5, 0xd0, 0x6d, 0xf7, 0xe8, 0x0b, 0xb0, 0xd2, 0xe0, 0xd3, 0x17, 0xc0, 0x36, 0x93, 0x27, 0x0a, + 0x96, 0x28, 0xd8, 0xf5, 0x03, 0x11, 0x05, 0x8b, 0x7b, 0x8f, 0x7b, 0x8f, 0x7b, 0x4f, 0x14, 0x2c, + 0xae, 0x3d, 0xae, 0x3d, 0xae, 0xbd, 0xc2, 0x92, 0x12, 0x05, 0x5b, 0x02, 0x0f, 0x9f, 0x28, 0x58, + 0xa2, 0x60, 0xa1, 0xb2, 0x50, 0xd9, 0xd2, 0x52, 0x59, 0xa2, 0x60, 0x63, 0xbd, 0x13, 0x51, 0xb0, + 0xc0, 0x30, 0x30, 0x0c, 0x0c, 0x13, 0x05, 0x4b, 0x14, 0x2c, 0x51, 0xb0, 0x48, 0x16, 0x6a, 0x4b, + 0x4a, 0x14, 0x2c, 0x4a, 0x45, 0x8a, 0x24, 0x96, 0x28, 0x58, 0x48, 0x2d, 0xa4, 0x16, 0x52, 0x6b, + 0x8b, 0xd4, 0x12, 0x05, 0x9b, 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, 0x27, 0x51, 0xb0, 0x30, + 0xcf, 0x94, 0x46, 0x28, 0x43, 0x14, 0x2c, 0x7d, 0x01, 0xb2, 0xb0, 0x0c, 0xe6, 0xfb, 0x02, 0x7c, + 0xed, 0xb6, 0x7b, 0xf4, 0x05, 0x30, 0xb3, 0x94, 0xe6, 0xfa, 0x02, 0x0c, 0x56, 0x2d, 0x13, 0x7d, + 0x01, 0xf6, 0x06, 0xef, 0xea, 0x77, 0x1f, 0x6a, 0xce, 0x7d, 0xbf, 0x1d, 0xf9, 0x4d, 0xb7, 0x17, + 0x69, 0x74, 0x08, 0x58, 0x35, 0x1a, 0xbd, 0x02, 0xcc, 0xf9, 0xba, 0xf4, 0x0a, 0xa0, 0x57, 0x00, + 0xbd, 0x02, 0x84, 0x85, 0x23, 0x7a, 0x05, 0x18, 0xe4, 0x6a, 0xf4, 0x0a, 0x30, 0x79, 0x20, 0x25, + 0x0f, 0xa6, 0xfc, 0x01, 0x95, 0x3e, 0xa8, 0xc6, 0x0e, 0xac, 0xb1, 0x83, 0x6b, 0xe4, 0x00, 0x67, + 0xc3, 0x27, 0x26, 0x4b, 0x8a, 0xeb, 0x1f, 0x91, 0x91, 0xb9, 0xfe, 0xb1, 0x09, 0x1a, 0xb2, 0x12, + 0x21, 0x59, 0x52, 0x22, 0x43, 0x72, 0xf5, 0xc3, 0xd5, 0x8f, 0xc5, 0xe3, 0x36, 0xbf, 0xa4, 0x64, + 0x49, 0x65, 0x63, 0x6d, 0xb9, 0x01, 0x32, 0xbd, 0xf7, 0xc9, 0x92, 0x82, 0xca, 0x42, 0x65, 0xa1, + 0xb2, 0x39, 0xa5, 0xb2, 0x64, 0x49, 0xc5, 0x7a, 0x27, 0xb2, 0xa4, 0x80, 0x61, 0x60, 0x18, 0x18, + 0x26, 0x4b, 0x8a, 0x2c, 0x29, 0xb2, 0xa4, 0x90, 0x2c, 0xd4, 0x96, 0x94, 0x2c, 0x29, 0x94, 0x8a, + 0x14, 0x49, 0x2c, 0x59, 0x52, 0x90, 0x5a, 0x48, 0x2d, 0xa4, 0xd6, 0x16, 0xa9, 0x25, 0x4b, 0x2a, + 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, 0x4e, 0xb2, 0xa4, 0x60, 0x9e, 0x29, 0x8d, 0x50, 0xa8, + 0x2c, 0xa9, 0x15, 0x99, 0x09, 0x74, 0x0d, 0x58, 0x69, 0xfa, 0xe9, 0x1a, 0x60, 0x9b, 0xd3, 0x13, + 0x0f, 0x4b, 0x3c, 0xec, 0xfa, 0x81, 0x88, 0x87, 0xc5, 0xd1, 0xc7, 0xd1, 0xc7, 0xd1, 0x27, 0x1e, + 0x16, 0x27, 0x1f, 0x27, 0x1f, 0x27, 0x5f, 0x61, 0x49, 0x89, 0x87, 0x2d, 0x81, 0xaf, 0x4f, 0x3c, + 0x2c, 0xf1, 0xb0, 0x50, 0x59, 0xa8, 0x6c, 0x69, 0xa9, 0x2c, 0xf1, 0xb0, 0xb1, 0xde, 0x89, 0x78, + 0x58, 0x60, 0x18, 0x18, 0x06, 0x86, 0x89, 0x87, 0x25, 0x1e, 0x96, 0x78, 0x58, 0x24, 0x0b, 0xb5, + 0x25, 0x25, 0x1e, 0x16, 0xa5, 0x22, 0x45, 0x12, 0x4b, 0x3c, 0x2c, 0xa4, 0x16, 0x52, 0x0b, 0xa9, + 0xb5, 0x45, 0x6a, 0x89, 0x87, 0xcd, 0x23, 0xef, 0xe4, 0xaa, 0xac, 0x70, 0xbc, 0x93, 0x78, 0x58, + 0x98, 0x67, 0x4a, 0x23, 0x94, 0x2b, 0x1e, 0x96, 0xfe, 0x01, 0xd9, 0x5a, 0x10, 0xb3, 0x9d, 0x04, + 0xf6, 0xbe, 0x76, 0x83, 0x93, 0xee, 0x43, 0xed, 0xf3, 0xe4, 0xd9, 0xb4, 0x14, 0x30, 0xbd, 0xba, + 0x66, 0x9a, 0x0b, 0x2c, 0x2d, 0x64, 0xc6, 0xba, 0x0c, 0xf4, 0x03, 0xb9, 0x1e, 0x03, 0x93, 0xb1, + 0xe8, 0x30, 0x60, 0xce, 0x2f, 0xa6, 0xc3, 0x00, 0x1d, 0x06, 0xe8, 0x30, 0x20, 0x2c, 0x32, 0xd1, + 0x61, 0xc0, 0x20, 0x9b, 0xa3, 0xc3, 0x80, 0xc9, 0x03, 0x29, 0x79, 0x30, 0xe5, 0x0f, 0xa8, 0xf4, + 0x41, 0x35, 0x76, 0x60, 0x8d, 0x1d, 0x5c, 0x23, 0x07, 0x38, 0x1b, 0xfe, 0x33, 0x19, 0x55, 0x5c, + 0x15, 0x89, 0x8c, 0xcc, 0x55, 0x91, 0x4d, 0xd0, 0x90, 0x95, 0x13, 0xc9, 0xa8, 0x12, 0x19, 0x92, + 0x6b, 0x22, 0xae, 0x89, 0x2c, 0x1e, 0xb7, 0xf9, 0x25, 0x25, 0xa3, 0x2a, 0x1b, 0x6b, 0xcb, 0x6d, + 0x91, 0xe9, 0xbd, 0x4f, 0x46, 0x15, 0x54, 0x16, 0x2a, 0x0b, 0x95, 0xcd, 0x29, 0x95, 0x25, 0xa3, + 0x2a, 0xd6, 0x3b, 0x91, 0x51, 0x05, 0x0c, 0x03, 0xc3, 0xc0, 0x30, 0x19, 0x55, 0x64, 0x54, 0x91, + 0x51, 0x85, 0x64, 0xa1, 0xb6, 0xa4, 0x64, 0x54, 0xa1, 0x54, 0xa4, 0x48, 0x62, 0xc9, 0xa8, 0x82, + 0xd4, 0x42, 0x6a, 0x21, 0xb5, 0xb6, 0x48, 0x2d, 0x19, 0x55, 0x79, 0xe4, 0x9d, 0x5c, 0x95, 0x15, + 0x8e, 0x77, 0x92, 0x51, 0x05, 0xf3, 0x4c, 0x69, 0x84, 0x82, 0x66, 0x54, 0x8d, 0xf3, 0x12, 0xe8, + 0x2f, 0xb0, 0xd2, 0xf0, 0xd3, 0x5f, 0xc0, 0x36, 0xa3, 0x27, 0x1a, 0x96, 0x68, 0xd8, 0xf5, 0x03, + 0x11, 0x0d, 0x8b, 0x9b, 0x8f, 0x9b, 0x8f, 0x9b, 0x4f, 0x34, 0x2c, 0x2e, 0x3e, 0x2e, 0x3e, 0x2e, + 0xbe, 0xc2, 0x92, 0x12, 0x0d, 0x5b, 0x02, 0x4f, 0x9f, 0x68, 0x58, 0xa2, 0x61, 0xa1, 0xb2, 0x50, + 0xd9, 0xd2, 0x52, 0x59, 0xa2, 0x61, 0x63, 0xbd, 0x13, 0xd1, 0xb0, 0xc0, 0x30, 0x30, 0x0c, 0x0c, + 0x13, 0x0d, 0x4b, 0x34, 0x2c, 0xd1, 0xb0, 0x48, 0x16, 0x6a, 0x4b, 0x4a, 0x34, 0x2c, 0x4a, 0x45, + 0x8a, 0x24, 0x96, 0x68, 0x58, 0x48, 0x2d, 0xa4, 0x16, 0x52, 0x6b, 0x8b, 0xd4, 0x12, 0x0d, 0x9b, + 0x47, 0xde, 0xc9, 0x55, 0x59, 0xe1, 0x78, 0x27, 0xd1, 0xb0, 0x30, 0xcf, 0x94, 0x46, 0x28, 0x53, + 0x34, 0x2c, 0xdd, 0x05, 0xb2, 0xb4, 0x1c, 0x76, 0x7a, 0x0b, 0x7c, 0x09, 0xe8, 0x2c, 0x60, 0x61, + 0x65, 0xcd, 0xf6, 0x15, 0x18, 0x2f, 0x62, 0xa6, 0xba, 0x0a, 0x1c, 0xcc, 0x34, 0x55, 0xd0, 0xef, + 0x2b, 0x70, 0xa0, 0xdc, 0xa2, 0x81, 0xce, 0x02, 0xa9, 0x78, 0xbe, 0x74, 0x16, 0x88, 0xf1, 0x41, + 0x3a, 0x0b, 0x18, 0x90, 0x9f, 0xe8, 0x2c, 0x90, 0xb2, 0x5c, 0x44, 0x67, 0x01, 0x3a, 0x0b, 0xd8, + 0x39, 0xa0, 0xd2, 0x07, 0xd5, 0xd8, 0x81, 0x35, 0x76, 0x70, 0x8d, 0x1c, 0xe0, 0x6c, 0x78, 0xce, + 0xe4, 0x52, 0x71, 0x49, 0x24, 0x32, 0x32, 0x97, 0x44, 0x36, 0x41, 0x43, 0x56, 0x48, 0x24, 0x97, + 0x4a, 0x64, 0x48, 0x2e, 0x88, 0xb8, 0x20, 0xb2, 0x78, 0xdc, 0xe6, 0x97, 0x94, 0x5c, 0xaa, 0x6c, + 0xac, 0x2d, 0xf7, 0x44, 0xa6, 0xf7, 0x3e, 0xb9, 0x54, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x36, 0xa7, + 0x54, 0x96, 0x5c, 0xaa, 0x58, 0xef, 0x44, 0x2e, 0x15, 0x30, 0x0c, 0x0c, 0x03, 0xc3, 0xe4, 0x52, + 0x91, 0x4b, 0x45, 0x2e, 0x15, 0x92, 0x85, 0xda, 0x92, 0x92, 0x4b, 0x85, 0x52, 0x91, 0x22, 0x89, + 0x25, 0x97, 0x0a, 0x52, 0x0b, 0xa9, 0x85, 0xd4, 0xda, 0x22, 0xb5, 0xe4, 0x52, 0xe5, 0x91, 0x77, + 0x72, 0x55, 0x56, 0x38, 0xde, 0x49, 0x2e, 0x15, 0xcc, 0x33, 0xa5, 0x11, 0x0a, 0x99, 0x4b, 0x35, + 0x93, 0x99, 0x40, 0x6f, 0x81, 0x95, 0xa6, 0x9f, 0xde, 0x02, 0xb6, 0x39, 0x3d, 0xf1, 0xb0, 0xc4, + 0xc3, 0xae, 0x1f, 0x88, 0x78, 0x58, 0x1c, 0x7d, 0x1c, 0x7d, 0x1c, 0x7d, 0xe2, 0x61, 0x71, 0xf2, + 0x71, 0xf2, 0x71, 0xf2, 0x15, 0x96, 0x94, 0x78, 0xd8, 0x12, 0xf8, 0xfa, 0xc4, 0xc3, 0x12, 0x0f, + 0x0b, 0x95, 0x85, 0xca, 0x96, 0x96, 0xca, 0x12, 0x0f, 0x1b, 0xeb, 0x9d, 0x88, 0x87, 0x05, 0x86, + 0x81, 0x61, 0x60, 0x98, 0x78, 0x58, 0xe2, 0x61, 0x89, 0x87, 0x45, 0xb2, 0x50, 0x5b, 0x52, 0xe2, + 0x61, 0x51, 0x2a, 0x52, 0x24, 0xb1, 0xc4, 0xc3, 0x42, 0x6a, 0x21, 0xb5, 0x90, 0x5a, 0x5b, 0xa4, + 0x96, 0x78, 0xd8, 0x3c, 0xf2, 0x4e, 0xae, 0xca, 0x0a, 0xc7, 0x3b, 0x89, 0x87, 0x85, 0x79, 0xa6, + 0x34, 0x42, 0xb9, 0xe2, 0x61, 0xe9, 0x2e, 0x90, 0xad, 0x05, 0xb1, 0xd2, 0x5f, 0xe0, 0xe0, 0xf3, + 0xe4, 0xd9, 0x74, 0x18, 0x30, 0xbd, 0xba, 0x46, 0x7b, 0x0c, 0x3c, 0x2f, 0x64, 0xc6, 0xba, 0x0c, + 0x4c, 0x1a, 0x2c, 0x48, 0xf4, 0x18, 0x50, 0x6b, 0xd6, 0x40, 0x87, 0x81, 0x54, 0xfc, 0x5f, 0x3a, + 0x0c, 0xc4, 0xf8, 0x20, 0x1d, 0x06, 0x0c, 0x88, 0x50, 0x74, 0x18, 0x48, 0x59, 0x34, 0xa2, 0xc3, + 0x00, 0x1d, 0x06, 0xec, 0x1c, 0x50, 0xe9, 0x83, 0x6a, 0xec, 0xc0, 0x1a, 0x3b, 0xb8, 0x46, 0x0e, + 0x70, 0x36, 0xfc, 0x67, 0x32, 0xaa, 0xb8, 0x2a, 0x12, 0x19, 0x99, 0xab, 0x22, 0x9b, 0xa0, 0x21, + 0x2b, 0x27, 0x92, 0x51, 0x25, 0x32, 0x24, 0xd7, 0x44, 0x5c, 0x13, 0x59, 0x3c, 0x6e, 0xf3, 0x4b, + 0x4a, 0x46, 0x55, 0x36, 0xd6, 0x96, 0xdb, 0x22, 0xd3, 0x7b, 0x9f, 0x8c, 0x2a, 0xa8, 0x2c, 0x54, + 0x16, 0x2a, 0x9b, 0x53, 0x2a, 0x4b, 0x46, 0x55, 0xac, 0x77, 0x22, 0xa3, 0x0a, 0x18, 0x06, 0x86, + 0x81, 0x61, 0x32, 0xaa, 0xc8, 0xa8, 0x22, 0xa3, 0x0a, 0xc9, 0x42, 0x6d, 0x49, 0xc9, 0xa8, 0x42, + 0xa9, 0x48, 0x91, 0xc4, 0x92, 0x51, 0x05, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x6d, 0x91, 0x5a, 0x32, + 0xaa, 0xf2, 0xc8, 0x3b, 0xb9, 0x2a, 0x2b, 0x1c, 0xef, 0x24, 0xa3, 0x0a, 0xe6, 0x99, 0xd2, 0x08, + 0x05, 0xcd, 0xa8, 0x1a, 0xe7, 0x25, 0xd0, 0x5f, 0x60, 0xa5, 0xe1, 0xa7, 0xbf, 0x80, 0x6d, 0x46, + 0x4f, 0x34, 0x2c, 0xd1, 0xb0, 0xeb, 0x07, 0x22, 0x1a, 0x16, 0x37, 0x1f, 0x37, 0x1f, 0x37, 0x9f, + 0x68, 0x58, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x7c, 0x85, 0x25, 0x25, 0x1a, 0xb6, 0x04, 0x9e, 0x3e, + 0xd1, 0xb0, 0x44, 0xc3, 0x42, 0x65, 0xa1, 0xb2, 0xa5, 0xa5, 0xb2, 0x44, 0xc3, 0xc6, 0x7a, 0x27, + 0xa2, 0x61, 0x81, 0x61, 0x60, 0x18, 0x18, 0x26, 0x1a, 0x96, 0x68, 0x58, 0xa2, 0x61, 0x91, 0x2c, + 0xd4, 0x96, 0x94, 0x68, 0x58, 0x94, 0x8a, 0x14, 0x49, 0x2c, 0xd1, 0xb0, 0x90, 0x5a, 0x48, 0x2d, + 0xa4, 0xd6, 0x16, 0xa9, 0x25, 0x1a, 0x36, 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, 0x4e, 0xa2, + 0x61, 0x61, 0x9e, 0x29, 0x8d, 0x50, 0xa6, 0x68, 0x58, 0xba, 0x0b, 0x64, 0x69, 0x39, 0xec, 0xf4, + 0x16, 0xf8, 0x12, 0xd0, 0x59, 0xc0, 0xc2, 0xca, 0x9a, 0xed, 0x2b, 0x30, 0x5e, 0xc4, 0x2c, 0x74, + 0x15, 0x08, 0x3b, 0xfd, 0xc8, 0x73, 0x7a, 0x5e, 0xdb, 0x1b, 0xda, 0x3d, 0xa7, 0xd3, 0x1d, 0xfc, + 0xab, 0xa7, 0xde, 0x5a, 0x60, 0xdd, 0x80, 0xf4, 0x17, 0x30, 0xe7, 0x17, 0xd3, 0x5f, 0xc0, 0x66, + 0x7f, 0x01, 0xcd, 0xd2, 0xe6, 0x32, 0x25, 0xcd, 0xe9, 0x29, 0x60, 0x42, 0x58, 0xa2, 0xa7, 0x80, + 0x41, 0x0e, 0xa7, 0xdd, 0x53, 0xc0, 0x6d, 0x3d, 0x78, 0x61, 0xe4, 0xf7, 0x3c, 0xc7, 0x0f, 0x06, + 0x6e, 0xda, 0x83, 0xe7, 0x0c, 0xad, 0x4d, 0x4f, 0x2e, 0xaf, 0x6a, 0xfd, 0x23, 0x74, 0x33, 0x4d, + 0x64, 0x63, 0xdf, 0x84, 0x3c, 0x6d, 0x3a, 0x19, 0x64, 0x03, 0x26, 0x8c, 0xc1, 0x85, 0x11, 0xd8, + 0xc8, 0x86, 0xa7, 0x2e, 0xa6, 0x23, 0x1b, 0x88, 0x4d, 0x13, 0x8a, 0x49, 0x4b, 0x27, 0x55, 0xd5, + 0x6d, 0xff, 0xe9, 0x3e, 0xf6, 0x9c, 0x66, 0xe7, 0xbe, 0xeb, 0x86, 0x9e, 0x73, 0xef, 0xb5, 0x04, + 0xf1, 0x75, 0x79, 0x6c, 0x80, 0x15, 0x60, 0x05, 0x58, 0x01, 0xd6, 0xe2, 0x03, 0xab, 0x17, 0xb8, + 0xdf, 0xdb, 0x9e, 0xe3, 0xfa, 0x77, 0x5d, 0x39, 0x44, 0x9d, 0x1d, 0x14, 0x28, 0x05, 0x4a, 0x81, + 0x52, 0xa0, 0xb4, 0x04, 0x50, 0xfa, 0x33, 0xf2, 0xc2, 0xc0, 0x6d, 0x4f, 0x99, 0xe4, 0xd0, 0x4b, + 0x0f, 0x1d, 0x5f, 0x90, 0xab, 0xbe, 0xf0, 0x0c, 0x39, 0xa0, 0x1d, 0x1c, 0x1f, 0x70, 0x16, 0x9c, + 0x05, 0x67, 0xc1, 0xd9, 0x0c, 0xe2, 0xac, 0x7f, 0x17, 0x74, 0x42, 0xcf, 0x71, 0x7b, 0x4e, 0xd7, + 0x8d, 0x7e, 0x38, 0x6d, 0x2f, 0xb8, 0x1b, 0x5e, 0xb0, 0x0a, 0x41, 0xec, 0xea, 0xe1, 0xa1, 0xb1, + 0xc0, 0x2b, 0xf0, 0x0a, 0xbc, 0x96, 0x06, 0x5e, 0x03, 0xef, 0x67, 0xe4, 0xfc, 0xe8, 0x74, 0x1d, + 0xff, 0xae, 0xeb, 0xdc, 0x7b, 0x51, 0xe8, 0x37, 0xc5, 0x31, 0x76, 0xd5, 0x33, 0x00, 0x5a, 0x80, + 0x16, 0xa0, 0x05, 0x68, 0x73, 0x02, 0xb4, 0xa5, 0x8b, 0x38, 0x5d, 0x13, 0x4b, 0xa7, 0x55, 0x06, + 0x57, 0x21, 0xee, 0x53, 0x29, 0x16, 0x52, 0xa7, 0xdc, 0xad, 0x48, 0x99, 0x5b, 0xb1, 0x08, 0xa9, + 0x2a, 0x11, 0x52, 0x06, 0xcd, 0x04, 0x11, 0x52, 0x33, 0x84, 0x8a, 0x08, 0x29, 0xd8, 0x24, 0x6c, + 0x12, 0x36, 0x09, 0x9b, 0xcc, 0xb4, 0xdb, 0x4e, 0x84, 0x14, 0xc0, 0x0a, 0xb0, 0x02, 0xac, 0x00, + 0xab, 0x30, 0xb0, 0x12, 0x21, 0x05, 0x94, 0x02, 0xa5, 0x40, 0x29, 0x50, 0xaa, 0x0f, 0xa5, 0x44, + 0x48, 0x81, 0xb3, 0xe0, 0x2c, 0x38, 0x0b, 0xce, 0x1a, 0xc5, 0x59, 0x22, 0xa4, 0x80, 0x57, 0xe0, + 0x15, 0x78, 0x05, 0x5e, 0x4d, 0xc2, 0x2b, 0x11, 0x52, 0x00, 0x2d, 0x40, 0x0b, 0xd0, 0x02, 0xb4, + 0xf2, 0x9f, 0x2c, 0x62, 0x84, 0x94, 0x46, 0x69, 0x44, 0x0a, 0xe3, 0x6d, 0x9c, 0x5e, 0x23, 0xd5, + 0xf1, 0x2e, 0x06, 0xcf, 0xba, 0x9c, 0x3c, 0xea, 0x7c, 0xfc, 0xa4, 0x0c, 0x94, 0xc8, 0xeb, 0x85, + 0x91, 0xe7, 0x74, 0x3b, 0x6d, 0xbf, 0xf9, 0xe8, 0xf8, 0xdd, 0x87, 0x9a, 0x7a, 0x6d, 0xbc, 0xa5, + 0x91, 0x28, 0x8a, 0x67, 0xce, 0x7c, 0x53, 0x14, 0xcf, 0x66, 0x51, 0xbc, 0xb9, 0x4a, 0xa8, 0xda, + 0x71, 0x9f, 0x02, 0x75, 0x55, 0x29, 0x90, 0x67, 0x82, 0x0b, 0x13, 0xfe, 0x69, 0x90, 0x50, 0x69, + 0x87, 0x7f, 0x6a, 0x56, 0xa6, 0x5c, 0xda, 0x76, 0x5a, 0x15, 0x2a, 0x85, 0x0e, 0x22, 0x4e, 0x2b, + 0x4e, 0x6b, 0xde, 0x9d, 0x56, 0xdd, 0x83, 0x3d, 0x1d, 0xe8, 0xde, 0xfd, 0xe9, 0x8c, 0x56, 0x51, + 0x20, 0xa4, 0x7b, 0x69, 0x13, 0xcf, 0x8d, 0x4e, 0xff, 0xa4, 0xec, 0x80, 0x82, 0x29, 0x70, 0x30, + 0x0e, 0x12, 0xc6, 0xc1, 0xc2, 0x28, 0x68, 0xc8, 0x80, 0x87, 0x10, 0x88, 0xc8, 0x2b, 0x60, 0x4b, + 0xfb, 0xb5, 0xef, 0x07, 0xd1, 0x5e, 0xd5, 0x40, 0xef, 0xa4, 0x43, 0x7a, 0x27, 0x09, 0x0f, 0x4e, + 0xef, 0x24, 0x4b, 0xc7, 0x6d, 0x7e, 0x49, 0x0b, 0xd0, 0x3b, 0xa9, 0x56, 0x3d, 0xaa, 0x1d, 0x1d, + 0x1c, 0x56, 0x8f, 0xf6, 0x69, 0xa1, 0x24, 0x3d, 0x5a, 0x91, 0x9a, 0x77, 0x76, 0x43, 0xef, 0xc1, + 0x0b, 0x22, 0x27, 0xf2, 0xdc, 0xb0, 0xd5, 0xf9, 0x33, 0x90, 0xa7, 0x9b, 0x4b, 0x4f, 0x10, 0x32, + 0x90, 0xc2, 0x97, 0xae, 0x50, 0x59, 0xa8, 0x2c, 0x54, 0x36, 0x67, 0x54, 0x56, 0xee, 0x52, 0x77, + 0x49, 0xc6, 0xda, 0x2d, 0x10, 0xc8, 0x87, 0x5e, 0x2f, 0x72, 0xc3, 0xc8, 0x89, 0xfc, 0x7b, 0x2f, + 0x94, 0x47, 0xf8, 0xf9, 0xe1, 0x81, 0x61, 0x60, 0x18, 0x18, 0x2e, 0x15, 0x0c, 0xb7, 0xbc, 0xa6, + 0x7f, 0xef, 0xb6, 0x0f, 0x6a, 0x26, 0x80, 0xb8, 0x2a, 0x38, 0xe6, 0x92, 0xd3, 0x52, 0x45, 0xb2, + 0x30, 0xe3, 0xdf, 0x56, 0x91, 0x2c, 0x8a, 0x26, 0x59, 0xec, 0xb1, 0xa4, 0x28, 0x15, 0xe9, 0x91, + 0xd8, 0x3f, 0xdd, 0x30, 0xf0, 0x83, 0x3b, 0x27, 0xfa, 0x11, 0x7a, 0xbd, 0x1f, 0x9d, 0x76, 0xcb, + 0xe9, 0x36, 0x23, 0x79, 0x32, 0xbb, 0xfa, 0x31, 0x90, 0x5a, 0x48, 0x2d, 0xa4, 0xb6, 0x54, 0xa4, + 0xb6, 0xeb, 0x85, 0x4d, 0x2f, 0x88, 0xdc, 0x3b, 0xcf, 0x00, 0xab, 0xdd, 0x87, 0x77, 0x9a, 0x21, + 0x29, 0x5c, 0x95, 0x15, 0x8e, 0x77, 0x9a, 0x5e, 0xd2, 0xdd, 0x1d, 0x98, 0x67, 0x71, 0x99, 0x67, + 0xaa, 0x11, 0x61, 0x42, 0xb9, 0x33, 0xd3, 0xf1, 0x74, 0x92, 0x3c, 0x16, 0xb3, 0x12, 0xb6, 0x67, + 0xa3, 0xaf, 0xb5, 0x6a, 0x0d, 0xeb, 0xcf, 0xb5, 0x4e, 0xea, 0xa8, 0x5e, 0x0d, 0xe2, 0x25, 0xb3, + 0xaf, 0x53, 0x8b, 0x78, 0x49, 0xbb, 0x92, 0x8a, 0x85, 0xad, 0x12, 0x0b, 0x9b, 0x01, 0xfe, 0x4e, + 0x2c, 0x6c, 0xfc, 0x37, 0x22, 0x16, 0x16, 0x27, 0x1f, 0x27, 0x1f, 0x27, 0x3f, 0xe3, 0x4e, 0x3e, + 0xb1, 0xb0, 0x38, 0xf8, 0x38, 0xf8, 0x05, 0x77, 0xf0, 0x89, 0x85, 0x2d, 0x81, 0x9f, 0x4f, 0x2c, + 0x2c, 0xb1, 0xb0, 0x50, 0x59, 0xa8, 0x6c, 0x69, 0xa9, 0x2c, 0xb1, 0xb0, 0xb1, 0xde, 0x89, 0x58, + 0x58, 0x60, 0x18, 0x18, 0x06, 0x86, 0x89, 0x85, 0x25, 0x16, 0x96, 0x58, 0x58, 0x24, 0x0b, 0xb5, + 0x25, 0x25, 0x16, 0x16, 0xa5, 0x22, 0x45, 0x12, 0x4b, 0x2c, 0x2c, 0xa4, 0x16, 0x52, 0x0b, 0xa9, + 0xb5, 0x45, 0x6a, 0x89, 0x85, 0xcd, 0x23, 0xef, 0xe4, 0xaa, 0xac, 0x70, 0xbc, 0x93, 0x58, 0x58, + 0x98, 0x67, 0x4a, 0x23, 0x94, 0x27, 0x16, 0x56, 0xa3, 0xaa, 0xbc, 0xfe, 0x54, 0x97, 0xaf, 0xb8, + 0xff, 0x8b, 0x8b, 0x51, 0xd1, 0x8a, 0x0c, 0xde, 0x50, 0x8b, 0xfe, 0x32, 0x8c, 0xbc, 0xc6, 0xf0, + 0xc1, 0x27, 0xdd, 0x87, 0xda, 0xcd, 0x88, 0xf1, 0x9f, 0x0e, 0x1f, 0x4b, 0x4f, 0x01, 0xe1, 0x55, + 0x35, 0xd2, 0x4c, 0x60, 0x7e, 0x01, 0x33, 0xd8, 0x45, 0xe0, 0x40, 0xac, 0x8b, 0xc0, 0x01, 0x5d, + 0x04, 0x0c, 0xfa, 0xbf, 0x74, 0x11, 0xa0, 0x8b, 0x00, 0x5d, 0x04, 0x84, 0xc5, 0x24, 0xba, 0x08, + 0x18, 0x64, 0x6e, 0x74, 0x11, 0x30, 0x79, 0x20, 0x25, 0x0f, 0xa6, 0xfc, 0x01, 0x95, 0x3e, 0xa8, + 0xc6, 0x0e, 0xac, 0xb1, 0x83, 0x6b, 0xe4, 0x00, 0x67, 0xc3, 0x4f, 0x26, 0x73, 0x8a, 0x2b, 0x21, + 0x91, 0x91, 0xb9, 0x12, 0xb2, 0x09, 0x1a, 0xb2, 0xb2, 0x21, 0x99, 0x53, 0x22, 0x43, 0x72, 0x1d, + 0xc4, 0x75, 0x90, 0xc5, 0xe3, 0x36, 0xbf, 0xa4, 0x64, 0x4e, 0x65, 0x63, 0x6d, 0xb9, 0x15, 0x32, + 0xbd, 0xf7, 0xc9, 0x9c, 0x82, 0xca, 0x42, 0x65, 0xa1, 0xb2, 0x39, 0xa5, 0xb2, 0x64, 0x4e, 0xc5, + 0x7a, 0x27, 0x32, 0xa7, 0x80, 0x61, 0x60, 0x18, 0x18, 0x26, 0x73, 0x8a, 0xcc, 0x29, 0x32, 0xa7, + 0x90, 0x2c, 0xd4, 0x96, 0x94, 0xcc, 0x29, 0x94, 0x8a, 0x14, 0x49, 0x2c, 0x99, 0x53, 0x90, 0x5a, + 0x48, 0x2d, 0xa4, 0xd6, 0x16, 0xa9, 0x25, 0x73, 0x2a, 0x8f, 0xbc, 0x93, 0xab, 0xb2, 0xc2, 0xf1, + 0x4e, 0x32, 0xa7, 0x60, 0x9e, 0x29, 0x8d, 0x50, 0xe0, 0xcc, 0xa9, 0x03, 0xba, 0x08, 0xac, 0x34, + 0xfb, 0x74, 0x11, 0xb0, 0xcd, 0xe7, 0x89, 0x85, 0x25, 0x16, 0x76, 0xfd, 0x40, 0xc4, 0xc2, 0xe2, + 0xe4, 0xe3, 0xe4, 0xe3, 0xe4, 0x13, 0x0b, 0x8b, 0x83, 0x8f, 0x83, 0x8f, 0x83, 0xaf, 0xb0, 0xa4, + 0xc4, 0xc2, 0x96, 0xc0, 0xcf, 0x27, 0x16, 0x96, 0x58, 0x58, 0xa8, 0x2c, 0x54, 0xb6, 0xb4, 0x54, + 0x96, 0x58, 0xd8, 0x58, 0xef, 0x44, 0x2c, 0x2c, 0x30, 0x0c, 0x0c, 0x03, 0xc3, 0xc4, 0xc2, 0x12, + 0x0b, 0x4b, 0x2c, 0x2c, 0x92, 0x85, 0xda, 0x92, 0x12, 0x0b, 0x8b, 0x52, 0x91, 0x22, 0x89, 0x25, + 0x16, 0x16, 0x52, 0x0b, 0xa9, 0x85, 0xd4, 0xda, 0x22, 0xb5, 0xc4, 0xc2, 0xe6, 0x91, 0x77, 0x72, + 0x55, 0x56, 0x38, 0xde, 0x49, 0x2c, 0x2c, 0xcc, 0x33, 0xa5, 0x11, 0xca, 0x13, 0x0b, 0x4b, 0x17, + 0x81, 0xec, 0x2c, 0x86, 0xbd, 0x2e, 0x02, 0x07, 0x74, 0x11, 0x30, 0xb9, 0xaa, 0xe6, 0xbb, 0x08, + 0x1c, 0x64, 0xa2, 0x8b, 0x80, 0x52, 0x34, 0xba, 0x56, 0xf4, 0xb9, 0x76, 0xbf, 0x80, 0x2a, 0xfd, + 0x02, 0xd2, 0xf4, 0x5c, 0x8b, 0xdc, 0x2f, 0x60, 0x02, 0x07, 0xce, 0xf8, 0x10, 0x6b, 0x36, 0x0c, + 0x98, 0x1f, 0x4e, 0xaf, 0x63, 0xc0, 0x0e, 0x1d, 0x03, 0xe8, 0x18, 0x90, 0x0f, 0x96, 0xa6, 0x2d, + 0xec, 0x4c, 0xf7, 0x8b, 0xdf, 0xf2, 0x82, 0xc8, 0x8f, 0x1e, 0x43, 0xef, 0x56, 0x67, 0xd3, 0x4c, + 0x2c, 0x8e, 0x86, 0x74, 0x53, 0x39, 0x19, 0x7f, 0x95, 0xf7, 0x6e, 0x4f, 0x30, 0x7d, 0xeb, 0xf8, + 0xd3, 0xc9, 0xcd, 0xe5, 0xe0, 0x1f, 0x57, 0xbf, 0x37, 0xea, 0xba, 0x5b, 0x70, 0xe8, 0x15, 0xf7, + 0x44, 0xe4, 0x24, 0x61, 0x65, 0xfe, 0xa4, 0xf1, 0xb5, 0x76, 0xf3, 0xe5, 0xec, 0xe4, 0xc3, 0xf1, + 0xe5, 0x55, 0x25, 0x0b, 0x57, 0x12, 0xc2, 0xef, 0x77, 0x7a, 0x72, 0xf6, 0xaf, 0xcb, 0xab, 0xe3, + 0xab, 0x7a, 0x11, 0x5f, 0xee, 0xf2, 0xe2, 0xaa, 0x7e, 0xd3, 0x38, 0x3f, 0x3d, 0xf9, 0xf0, 0xfb, + 0xcd, 0x49, 0xe3, 0xeb, 0x41, 0x21, 0x17, 0x70, 0xef, 0x6b, 0xe3, 0x6c, 0xf8, 0x76, 0x85, 0xde, + 0xa6, 0xd5, 0xc1, 0x5b, 0x7e, 0x6d, 0x9c, 0x5e, 0x16, 0xfa, 0x10, 0xde, 0x5c, 0x36, 0x3e, 0x15, + 0xfb, 0x05, 0xbf, 0x36, 0xce, 0x8a, 0xf8, 0x82, 0x43, 0x33, 0xf1, 0xe9, 0xf4, 0xfc, 0xdf, 0x97, + 0x8d, 0xfa, 0x87, 0x82, 0xc3, 0xcc, 0xe7, 0x2f, 0xa7, 0x57, 0x85, 0x05, 0x9a, 0xaf, 0x8d, 0xb3, + 0xb2, 0xac, 0x64, 0xad, 0xd8, 0x2b, 0x39, 0xdc, 0xab, 0xa7, 0xc7, 0xef, 0xeb, 0xa7, 0xf5, 0x8f, + 0x85, 0x36, 0x8d, 0xcf, 0xeb, 0x59, 0xe0, 0xb7, 0x1c, 0xbe, 0x5f, 0x09, 0x56, 0xb3, 0xe8, 0x44, + 0x6e, 0x81, 0x92, 0xd7, 0x8a, 0x4b, 0x56, 0xeb, 0x32, 0x54, 0x47, 0x6b, 0x84, 0x6b, 0xdb, 0xba, + 0xcb, 0x2b, 0x0b, 0xab, 0x57, 0xf1, 0x02, 0xf7, 0x7b, 0xdb, 0x6b, 0xe9, 0xab, 0x9c, 0x93, 0x81, + 0x54, 0xfb, 0x4b, 0xca, 0x24, 0x03, 0xa2, 0x93, 0xce, 0x8d, 0x84, 0x4e, 0x6a, 0xf1, 0xbc, 0xa6, + 0xae, 0x93, 0xea, 0x27, 0xd3, 0x69, 0x26, 0xcf, 0xd9, 0x81, 0xac, 0xa8, 0x13, 0xb9, 0x6d, 0xa7, + 0xeb, 0x46, 0x3f, 0x7a, 0xfa, 0xb0, 0x35, 0x3b, 0x18, 0x90, 0x03, 0xe4, 0x00, 0x39, 0x89, 0xf6, + 0x8b, 0x76, 0x29, 0x1a, 0x81, 0xd2, 0x33, 0x42, 0xf1, 0xb3, 0x02, 0xd1, 0x5d, 0x92, 0xf1, 0xb1, + 0xd2, 0xa9, 0x06, 0xc2, 0xf1, 0xaf, 0x26, 0x42, 0x23, 0x25, 0x92, 0x4c, 0x24, 0xe3, 0x59, 0x4d, + 0x2d, 0x81, 0x74, 0x69, 0x17, 0x23, 0x6b, 0x91, 0x52, 0x24, 0xe1, 0x75, 0xf6, 0x89, 0x87, 0x6e, + 0x5d, 0xbf, 0x45, 0xee, 0xa1, 0x57, 0xc9, 0x0f, 0xfa, 0x01, 0xfd, 0x80, 0x7e, 0x40, 0x3f, 0xa0, + 0x1f, 0xd0, 0x0f, 0xe8, 0x47, 0x6e, 0xe8, 0x47, 0x71, 0x43, 0xe8, 0x93, 0xe7, 0xa1, 0x98, 0x09, + 0x6a, 0xef, 0xf7, 0x3c, 0xe7, 0xbe, 0xdf, 0x8e, 0xfc, 0x6e, 0xdb, 0x53, 0x54, 0x8b, 0x9e, 0xed, + 0xcc, 0xf2, 0x58, 0x96, 0xc3, 0xdd, 0x77, 0x08, 0x77, 0x4f, 0x93, 0x75, 0x15, 0x39, 0xdc, 0xbd, + 0x39, 0xd9, 0x63, 0x9a, 0xee, 0xcc, 0x78, 0x1c, 0x3d, 0x37, 0x66, 0x17, 0x37, 0x06, 0x37, 0x26, + 0x1f, 0x6e, 0x8c, 0x6e, 0xb7, 0x00, 0xed, 0xbb, 0xd7, 0xa5, 0x7d, 0xa7, 0x77, 0x07, 0xfb, 0xfc, + 0x62, 0xb2, 0x85, 0x59, 0x85, 0x78, 0xac, 0x58, 0xb1, 0x14, 0x1a, 0x8b, 0xd0, 0x58, 0xc4, 0xae, + 0x6b, 0x28, 0x57, 0xe4, 0xc4, 0x40, 0xe1, 0x54, 0xa1, 0x82, 0xa9, 0x24, 0x8f, 0xc7, 0xf7, 0x91, + 0x96, 0xdd, 0x09, 0xad, 0x56, 0x56, 0x96, 0x22, 0x85, 0x06, 0xe7, 0x50, 0x3f, 0x4c, 0x48, 0x1d, + 0x25, 0xa1, 0x88, 0x50, 0xc4, 0xb2, 0x51, 0x44, 0x4d, 0xdf, 0x4c, 0xd6, 0x47, 0x13, 0x3a, 0x88, + 0x10, 0x3a, 0x08, 0x1d, 0x9d, 0xe2, 0xc6, 0x03, 0xb9, 0xed, 0x76, 0xe7, 0xcf, 0x67, 0x32, 0xe0, + 0x1a, 0x68, 0x17, 0xb7, 0xfc, 0x08, 0x1a, 0x78, 0x64, 0x05, 0x6e, 0xcc, 0xc1, 0x8e, 0x29, 0xf8, + 0x31, 0x0e, 0x43, 0xc6, 0xe1, 0xc8, 0x28, 0x2c, 0xc9, 0xc0, 0x93, 0x10, 0x4c, 0xc9, 0xfb, 0x9f, + 0x06, 0xfd, 0x50, 0x61, 0x7f, 0x54, 0x6e, 0x21, 0x24, 0xee, 0x85, 0xef, 0xdd, 0x9f, 0xfe, 0x7d, + 0xff, 0x5e, 0x33, 0x6a, 0x79, 0xed, 0x2a, 0xcc, 0x0f, 0x2f, 0x0f, 0xef, 0xbb, 0x40, 0x3b, 0xd0, + 0x0e, 0xb4, 0x97, 0x0b, 0xda, 0x69, 0x33, 0x2a, 0xb9, 0x23, 0xa9, 0x9d, 0xbc, 0x7e, 0x7c, 0x6a, + 0x27, 0xa7, 0xb6, 0xa4, 0xb4, 0x19, 0x35, 0x37, 0x1a, 0x25, 0x94, 0xb3, 0x56, 0x42, 0x79, 0xc5, + 0xc5, 0x8b, 0x37, 0xf8, 0x84, 0xce, 0xed, 0x8b, 0xfe, 0x2c, 0x3f, 0x69, 0x95, 0x0b, 0x56, 0x29, + 0xdd, 0xba, 0xd6, 0xe6, 0xab, 0x94, 0x72, 0x5d, 0xeb, 0xc0, 0x49, 0xc9, 0xc3, 0x55, 0xe4, 0xe1, + 0x0c, 0x90, 0x77, 0xe4, 0xe1, 0x04, 0xae, 0x33, 0xf2, 0x30, 0xf2, 0x30, 0x1a, 0x02, 0x1a, 0x42, + 0xd9, 0x35, 0x04, 0xe4, 0xe1, 0x58, 0xef, 0x84, 0x3c, 0x0c, 0xb4, 0x03, 0xed, 0x40, 0x7b, 0x9e, + 0xa0, 0x1d, 0x79, 0x58, 0x72, 0x47, 0x22, 0x0f, 0xaf, 0x1f, 0x1f, 0x79, 0x38, 0xb5, 0x25, 0x45, + 0x1e, 0x36, 0x37, 0x1a, 0xf2, 0x70, 0x5e, 0xe4, 0x61, 0x7a, 0xeb, 0x65, 0x61, 0x19, 0x8c, 0x76, + 0xd5, 0xfb, 0xd2, 0xf3, 0x3e, 0x8f, 0x1f, 0xd9, 0x18, 0x3c, 0xf1, 0xa6, 0xae, 0x4c, 0x0a, 0xed, + 0xa4, 0x63, 0xf8, 0x22, 0xe9, 0x18, 0x3e, 0xe9, 0x18, 0xa4, 0x63, 0xa4, 0xe8, 0x3c, 0x91, 0x8e, + 0x41, 0x3a, 0x86, 0x5d, 0x75, 0x84, 0xfb, 0x36, 0xee, 0xdb, 0xd6, 0x0f, 0x84, 0x10, 0x6b, 0xc2, + 0xbd, 0x44, 0x88, 0x45, 0x88, 0xb5, 0x07, 0x45, 0xb2, 0x9e, 0x3a, 0x42, 0xac, 0xc8, 0x90, 0x08, + 0xb1, 0x08, 0xb1, 0x16, 0x8f, 0xdb, 0xfc, 0x92, 0x22, 0xc4, 0x66, 0x63, 0x6d, 0x11, 0x62, 0x33, + 0xcc, 0xa1, 0x33, 0x2e, 0xc4, 0xfa, 0xc4, 0xe9, 0x12, 0xa7, 0x8b, 0x6e, 0x80, 0x6e, 0x80, 0x6e, + 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, + 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0xf0, 0x92, 0x6e, 0x40, 0x00, 0x57, 0x16, 0x96, 0xc1, 0x6e, + 0x00, 0xd7, 0x49, 0xc6, 0x03, 0xb8, 0xf4, 0x14, 0x21, 0x11, 0x25, 0x48, 0x2c, 0x84, 0xab, 0x4a, + 0x08, 0x97, 0x41, 0xf7, 0x8a, 0x10, 0x2e, 0x39, 0xc5, 0x86, 0xa6, 0x0b, 0xe9, 0x28, 0x30, 0x88, + 0xbb, 0x88, 0xbb, 0x96, 0x89, 0x29, 0x4d, 0x17, 0x20, 0xa5, 0x2f, 0x93, 0x52, 0x0d, 0xb7, 0x80, + 0x96, 0x7f, 0x2f, 0xcd, 0x6c, 0x45, 0x89, 0x0f, 0x27, 0x64, 0xf8, 0xc6, 0x9a, 0x0c, 0xbe, 0x12, + 0x5c, 0xa0, 0x81, 0x25, 0x18, 0x56, 0x59, 0x19, 0x4f, 0x96, 0x33, 0x7c, 0xc1, 0x98, 0x9f, 0x3d, + 0xf5, 0x7b, 0xd1, 0x71, 0x14, 0x25, 0x63, 0x3c, 0x95, 0xcf, 0x7e, 0x50, 0x6f, 0x7b, 0x03, 0x2c, + 0xef, 0x55, 0xde, 0x6d, 0x05, 0xfd, 0x76, 0x3b, 0x41, 0xd7, 0xc4, 0xcf, 0xee, 0x4f, 0xf5, 0x0f, + 0x9f, 0x87, 0x2d, 0x2f, 0xf4, 0x5a, 0xef, 0x1f, 0xc7, 0x1f, 0x15, 0x9d, 0x48, 0xc5, 0x1d, 0xae, + 0xb3, 0xb3, 0x13, 0x6c, 0xe3, 0x8d, 0xdb, 0x37, 0xde, 0x6e, 0xdd, 0xbc, 0xf7, 0x5e, 0xfe, 0x89, + 0x0d, 0x93, 0x99, 0x74, 0x12, 0x15, 0x26, 0xef, 0xe5, 0xf7, 0x5c, 0xff, 0xed, 0x5f, 0xf8, 0xe6, + 0xc3, 0x34, 0x09, 0xaf, 0xe5, 0x85, 0xf1, 0xbe, 0xf8, 0x5c, 0x76, 0xc5, 0xf3, 0xc7, 0x36, 0xcc, + 0x4c, 0x3c, 0x57, 0x38, 0x36, 0x1f, 0x4e, 0xc2, 0x77, 0x93, 0xf3, 0xd9, 0xa4, 0x7c, 0x55, 0x99, + 0x8f, 0x2a, 0xf3, 0x4d, 0x25, 0x3e, 0xa9, 0xb7, 0xb7, 0xe3, 0xba, 0x86, 0x49, 0xb3, 0x78, 0xd4, + 0xb2, 0x75, 0x12, 0x6a, 0x2b, 0x89, 0x1d, 0x2d, 0x15, 0x87, 0x4a, 0xdd, 0x71, 0x52, 0x75, 0x90, + 0xb4, 0x1d, 0x21, 0x6d, 0x87, 0x47, 0xcb, 0xb1, 0x91, 0xa5, 0x02, 0x49, 0xb5, 0x8b, 0x8a, 0xdf, + 0xf2, 0x82, 0xc8, 0xbf, 0xf5, 0xbd, 0x50, 0xbd, 0x75, 0xf1, 0xcc, 0x18, 0x6a, 0x2d, 0x8b, 0x77, + 0x68, 0x59, 0x6c, 0xd3, 0xe3, 0x2f, 0x53, 0xcb, 0x62, 0x65, 0x0f, 0xfd, 0xb9, 0x78, 0x61, 0xcf, + 0x09, 0xfa, 0xf7, 0xdf, 0x13, 0x6f, 0xee, 0x2d, 0xbd, 0x70, 0x05, 0xcd, 0xb0, 0x04, 0x0d, 0x0f, + 0x58, 0x22, 0xcc, 0x40, 0x4a, 0x1b, 0x14, 0x0a, 0x1b, 0x90, 0xbc, 0x42, 0xd6, 0x09, 0xd1, 0x95, + 0xb8, 0xee, 0x97, 0x9e, 0x5a, 0xa9, 0xeb, 0x7b, 0xd1, 0x39, 0xb6, 0x24, 0x98, 0x5c, 0x9b, 0xf2, + 0xef, 0x13, 0xd0, 0x9e, 0x7b, 0x6f, 0x00, 0x2e, 0x2a, 0x75, 0x57, 0x9f, 0x63, 0x37, 0xa7, 0x43, + 0x60, 0x7f, 0xb1, 0xbf, 0xd8, 0x5f, 0xec, 0x2f, 0xf6, 0x17, 0xfb, 0x5b, 0x3c, 0xfb, 0x9b, 0x10, + 0x7b, 0x94, 0xb4, 0xed, 0xd9, 0x63, 0xa8, 0x2c, 0x53, 0xcf, 0x6e, 0x38, 0xfd, 0x41, 0x94, 0x34, + 0x6f, 0x05, 0xd2, 0x92, 0x2f, 0x2d, 0x7d, 0x4e, 0x7a, 0x4d, 0x94, 0xb6, 0x17, 0x43, 0x01, 0x8f, + 0xa1, 0x8f, 0x26, 0x0b, 0xae, 0x52, 0x0a, 0xa6, 0x52, 0x16, 0xf8, 0xaa, 0x08, 0x7c, 0x08, 0x7c, + 0x08, 0x7c, 0x38, 0x18, 0x38, 0x18, 0x38, 0x18, 0x38, 0x18, 0x38, 0x18, 0x38, 0x18, 0x08, 0x7c, + 0xd8, 0x5f, 0xec, 0x2f, 0xf6, 0x17, 0xfb, 0x8b, 0xfd, 0xc5, 0xfe, 0x22, 0xf0, 0x21, 0xf0, 0xe5, + 0x4b, 0xe0, 0x4b, 0x10, 0x48, 0x9f, 0xdb, 0x08, 0xd7, 0x24, 0xd1, 0xa4, 0x5b, 0x2f, 0x46, 0x04, + 0x7f, 0x98, 0x1b, 0xc9, 0x50, 0xbc, 0x6c, 0x8c, 0x00, 0xc7, 0x64, 0x81, 0x8d, 0x44, 0xc8, 0xca, + 0xd2, 0xc9, 0x2c, 0x47, 0xc8, 0x26, 0x70, 0x87, 0x66, 0x98, 0x62, 0x42, 0xe1, 0x7c, 0x87, 0xc8, + 0x58, 0x84, 0x73, 0x45, 0x3f, 0x45, 0xcb, 0x3f, 0x51, 0xf0, 0x4b, 0x14, 0xfd, 0x11, 0x35, 0xe2, + 0xa3, 0xe1, 0x23, 0x6b, 0x91, 0x63, 0x5d, 0x7f, 0x43, 0x82, 0x03, 0x3f, 0xa9, 0xd1, 0xbc, 0xd4, + 0xa7, 0x4c, 0xd7, 0x8f, 0x10, 0x99, 0x3b, 0x43, 0xd4, 0xf4, 0xda, 0xe2, 0xc5, 0x6d, 0xd8, 0xe9, + 0x47, 0x5e, 0xe8, 0xf8, 0xad, 0xe4, 0x06, 0xe8, 0xf9, 0xa3, 0xd8, 0x21, 0xec, 0x90, 0x65, 0x3b, + 0xd4, 0xea, 0x44, 0x91, 0xd7, 0x72, 0xfe, 0xaf, 0xef, 0xb6, 0x14, 0x2c, 0xd1, 0xee, 0xaf, 0x09, + 0x3e, 0xd3, 0x70, 0xa3, 0xc8, 0x0b, 0x83, 0xc4, 0xc6, 0xa8, 0xf2, 0x9f, 0x5f, 0x7e, 0xf9, 0xb6, + 0xe3, 0x1c, 0x5d, 0xff, 0xfd, 0x6d, 0xd7, 0x39, 0xba, 0x1e, 0xfd, 0x76, 0x77, 0xf8, 0xaf, 0xd1, + 0xef, 0xab, 0xdf, 0x76, 0x9c, 0xda, 0xe4, 0xf7, 0xfb, 0xdf, 0x76, 0x9c, 0xfd, 0xeb, 0xd7, 0x7f, + 0xfc, 0xf1, 0xf6, 0xf5, 0x5f, 0x7b, 0x4f, 0xc9, 0x3f, 0xf8, 0x8f, 0x8a, 0x7d, 0x7c, 0xc9, 0xae, + 0xe3, 0xb8, 0x29, 0xfa, 0x45, 0xcd, 0xcf, 0x6b, 0x8d, 0x6a, 0x86, 0x38, 0x43, 0xe4, 0x73, 0x5a, + 0x7e, 0x2f, 0x72, 0x83, 0x18, 0x10, 0xf0, 0xbc, 0x69, 0x57, 0x7f, 0x1e, 0x3f, 0x10, 0x3f, 0x30, + 0x91, 0x90, 0xa0, 0x26, 0x28, 0x24, 0xdc, 0x50, 0xd8, 0xe1, 0xf2, 0xd8, 0xe1, 0xc4, 0x81, 0x54, + 0xde, 0xcf, 0x81, 0x49, 0x74, 0xdb, 0x49, 0xa1, 0x70, 0xed, 0xba, 0xaf, 0x1b, 0x90, 0x2b, 0x5e, + 0xf9, 0xad, 0x2f, 0x76, 0x04, 0xc4, 0x8e, 0x82, 0xc8, 0x91, 0x50, 0x74, 0xcb, 0xac, 0x5f, 0xf1, + 0xf6, 0xfd, 0x20, 0xfa, 0x55, 0xe3, 0x7a, 0x77, 0x9f, 0xeb, 0xdd, 0x2d, 0x2d, 0xed, 0x60, 0x97, + 0xeb, 0x5d, 0x53, 0x53, 0x5b, 0xdd, 0xe7, 0x5e, 0x57, 0x6c, 0xfc, 0x24, 0x71, 0x55, 0x7e, 0x20, + 0x6c, 0x90, 0xd7, 0x0d, 0x88, 0x41, 0xc6, 0x20, 0x63, 0x90, 0x31, 0xc8, 0x18, 0x64, 0x0c, 0x72, + 0xe9, 0x0c, 0x72, 0xbe, 0x62, 0x86, 0x56, 0xcb, 0x8d, 0x64, 0x07, 0x92, 0x1d, 0x88, 0xa8, 0x85, + 0xa8, 0x05, 0x87, 0x86, 0x43, 0xc3, 0xa1, 0xe1, 0xd0, 0x70, 0x68, 0x38, 0x34, 0xa2, 0x16, 0x06, + 0x19, 0x83, 0x8c, 0x41, 0xc6, 0x20, 0x63, 0x90, 0x31, 0xc8, 0x88, 0x5a, 0xf9, 0x13, 0xb5, 0xca, + 0x90, 0x11, 0xa7, 0x14, 0x3e, 0xb8, 0xf5, 0x62, 0x6a, 0xdc, 0xb8, 0x0b, 0xda, 0xc5, 0x60, 0xc4, + 0x8f, 0x93, 0x01, 0x4d, 0x44, 0x4e, 0x3e, 0x06, 0xee, 0xbd, 0xdf, 0x74, 0x02, 0xcf, 0xbf, 0xfb, + 0xf1, 0xbd, 0x13, 0x3a, 0x23, 0x26, 0xe0, 0xf5, 0x12, 0x04, 0x4f, 0xae, 0x1d, 0x82, 0xf8, 0x49, + 0xe2, 0x27, 0x5f, 0xdc, 0x66, 0xc9, 0xa5, 0xe7, 0x75, 0x03, 0x11, 0x61, 0x89, 0x18, 0x6d, 0x47, + 0x8c, 0x4e, 0x18, 0x0a, 0xbc, 0xb4, 0xcc, 0x89, 0x42, 0x82, 0x15, 0x37, 0x2e, 0x9e, 0x2d, 0x9e, + 0x6d, 0x52, 0xcf, 0x56, 0xb5, 0xa1, 0x6c, 0xa5, 0xeb, 0x79, 0xa1, 0x73, 0x17, 0x76, 0xfa, 0x5d, + 0xfd, 0x26, 0xce, 0x33, 0x63, 0xbd, 0x49, 0x25, 0x8d, 0x51, 0xb7, 0xcd, 0x2b, 0x9d, 0x9c, 0xed, + 0x1e, 0x2c, 0xd1, 0x03, 0xa6, 0xe9, 0x39, 0x2a, 0xee, 0x18, 0xed, 0xf6, 0xac, 0xd3, 0xfd, 0xd2, + 0xf6, 0xdc, 0xdb, 0xd0, 0xbb, 0xd5, 0xd9, 0x30, 0x13, 0x3b, 0x73, 0xa8, 0x31, 0x46, 0x63, 0xec, + 0x31, 0xbd, 0x7d, 0xbb, 0x3d, 0xfb, 0xbf, 0xe7, 0xb3, 0xdd, 0x9b, 0xf9, 0xfd, 0x38, 0xea, 0x61, + 0xe6, 0x4f, 0x46, 0x9d, 0x21, 0x33, 0xdc, 0xb0, 0xbe, 0xab, 0x77, 0xc4, 0x9f, 0xc1, 0x4e, 0xcb, + 0x34, 0x01, 0x74, 0x00, 0x5d, 0x59, 0x81, 0xce, 0xef, 0x3a, 0xda, 0xab, 0x33, 0x85, 0xba, 0x23, + 0x8d, 0x31, 0xc6, 0xaf, 0xf4, 0x4d, 0x6b, 0x49, 0x05, 0x1b, 0x73, 0xfb, 0xdd, 0x87, 0x9a, 0x23, + 0xd6, 0x68, 0x5d, 0x25, 0x2b, 0xfb, 0x25, 0xab, 0xa0, 0x94, 0xad, 0xbd, 0x76, 0x40, 0xab, 0x59, + 0xdc, 0xdb, 0xe3, 0x87, 0xbd, 0xfe, 0xfb, 0x97, 0x6f, 0xbb, 0x4e, 0xf5, 0x7a, 0xf2, 0x1f, 0x7b, + 0xdf, 0x76, 0x9c, 0xea, 0xf5, 0xeb, 0x24, 0x59, 0xde, 0x32, 0x3a, 0xb2, 0xd0, 0xa1, 0x34, 0xb3, + 0x07, 0x0f, 0x4a, 0xb6, 0x07, 0x5d, 0xe7, 0xf6, 0xd8, 0xf9, 0x74, 0xfd, 0xd7, 0xee, 0x9b, 0xda, + 0xd3, 0xbb, 0xd7, 0x7f, 0x1d, 0x3e, 0x2d, 0xfe, 0xe1, 0xdf, 0xab, 0x7e, 0x6c, 0xf7, 0xcd, 0xe1, + 0xd3, 0xbb, 0x35, 0x7f, 0x73, 0xf0, 0xf4, 0x2e, 0xe6, 0x18, 0xfb, 0x4f, 0xbf, 0x2c, 0xfd, 0xe8, + 0xe0, 0xcf, 0xab, 0xeb, 0x3e, 0x50, 0x5b, 0xf3, 0x81, 0xbd, 0x75, 0x1f, 0xd8, 0x5b, 0xf3, 0x81, + 0xb5, 0x5f, 0xa9, 0xba, 0xe6, 0x03, 0xfb, 0x4f, 0x7f, 0x2f, 0xfd, 0xfc, 0x2f, 0xab, 0x7f, 0xf4, + 0xe0, 0xe9, 0xf5, 0xdf, 0xeb, 0xfe, 0xee, 0xf0, 0xe9, 0xef, 0x77, 0xaf, 0x5f, 0x6f, 0xff, 0xb2, + 0x3b, 0x38, 0xa8, 0xbf, 0x8e, 0xce, 0xee, 0xee, 0xf5, 0xd2, 0x91, 0x1e, 0x1d, 0xd1, 0xf4, 0x0f, + 0xe6, 0x2b, 0xbb, 0xcf, 0x2d, 0x6d, 0x43, 0xfe, 0xb5, 0xf7, 0x10, 0xeb, 0xfe, 0x26, 0x51, 0xc0, + 0x75, 0xf2, 0xc9, 0x4a, 0x12, 0x50, 0xa3, 0xe8, 0x52, 0xe8, 0xb9, 0x12, 0x84, 0xcb, 0x20, 0x2a, + 0x66, 0x3e, 0x5c, 0x46, 0x5d, 0xd3, 0xd0, 0xd1, 0x32, 0x66, 0x35, 0x8c, 0x89, 0x40, 0x31, 0x5a, + 0xf3, 0x0c, 0x80, 0x45, 0xb2, 0xac, 0x8d, 0xa5, 0x19, 0x4d, 0x92, 0xbd, 0xb1, 0x34, 0x97, 0xaa, + 0x50, 0x51, 0x05, 0x2a, 0x80, 0x8a, 0x17, 0xbf, 0x21, 0xf7, 0x0f, 0xc8, 0x72, 0xc8, 0x72, 0xb9, + 0x96, 0xe5, 0xb8, 0x7f, 0xe0, 0xfe, 0x01, 0xa0, 0x03, 0xe8, 0x0a, 0x0f, 0x74, 0xdc, 0x3f, 0xac, + 0xd7, 0x7e, 0xb9, 0x7f, 0xe0, 0xfe, 0x21, 0xed, 0x3d, 0xc8, 0xfd, 0x03, 0xf7, 0x0f, 0xdc, 0x3f, + 0xe8, 0xd8, 0xd8, 0x2d, 0xee, 0x1f, 0x26, 0x6a, 0x9b, 0xb9, 0xfb, 0x87, 0x04, 0xb9, 0x31, 0x0a, + 0x8a, 0xa2, 0x68, 0x98, 0xf4, 0xbf, 0xbc, 0xc7, 0xe4, 0x99, 0x0c, 0x4a, 0x9d, 0xcf, 0xb4, 0x3a, + 0x9e, 0x69, 0x75, 0x3a, 0x53, 0xeb, 0x70, 0x96, 0x9d, 0x04, 0xac, 0xa4, 0xfb, 0xaf, 0x92, 0x48, + 0x73, 0x5e, 0x97, 0xa8, 0x34, 0x1a, 0xfb, 0x6c, 0x3c, 0x74, 0x23, 0x81, 0x4a, 0x9e, 0xdf, 0x7c, + 0xaf, 0xb5, 0x19, 0x4f, 0x06, 0x32, 0xb4, 0xee, 0x42, 0xb7, 0xe9, 0xdd, 0xf6, 0xdb, 0x4e, 0xe8, + 0xf5, 0x22, 0x37, 0x8c, 0xe2, 0x27, 0x66, 0x2d, 0x7d, 0x92, 0x7c, 0x2c, 0xf2, 0xb1, 0x46, 0x3f, + 0x48, 0x3d, 0x7b, 0xb2, 0xad, 0xd2, 0xa0, 0x11, 0xc9, 0x4b, 0x7f, 0x05, 0xee, 0xf7, 0xb6, 0xd7, + 0xd2, 0x28, 0xf5, 0x35, 0x1e, 0x80, 0xd0, 0x08, 0x73, 0xea, 0x25, 0xf7, 0x9d, 0xa9, 0x84, 0x46, + 0x7c, 0xef, 0x74, 0xda, 0x9e, 0x1b, 0xe8, 0x84, 0x46, 0xec, 0x66, 0x20, 0x9c, 0xe1, 0x87, 0xd7, + 0xee, 0x7a, 0xa1, 0xd3, 0x09, 0xda, 0x8f, 0xea, 0xc7, 0x7c, 0x76, 0x10, 0x8e, 0x3a, 0x47, 0x9d, + 0xa3, 0x9e, 0xc5, 0xa3, 0x3e, 0x76, 0x44, 0x9c, 0xc8, 0xbf, 0xd7, 0x08, 0x60, 0x9a, 0x1b, 0x85, + 0xc3, 0xce, 0x61, 0x2f, 0xd8, 0x61, 0xef, 0xfb, 0x41, 0xb4, 0x7b, 0xa0, 0x71, 0xd6, 0x0f, 0x28, + 0x11, 0xa6, 0x36, 0x8c, 0x66, 0xdf, 0xdf, 0xe9, 0x38, 0x94, 0x08, 0x5b, 0x3b, 0xb5, 0xb5, 0x9d, + 0xa3, 0x03, 0x6a, 0x84, 0xa5, 0x61, 0x7c, 0x7b, 0x91, 0xdb, 0xf6, 0x46, 0x35, 0xaa, 0x7a, 0x9a, + 0x16, 0x78, 0x79, 0x28, 0xcc, 0x30, 0x66, 0xb8, 0x60, 0x66, 0xb8, 0xe5, 0x35, 0xfd, 0x7b, 0xb7, + 0x7d, 0x50, 0xd3, 0x61, 0xdd, 0x55, 0x85, 0xcf, 0x2e, 0xe1, 0x5b, 0xb5, 0xac, 0xf6, 0xbc, 0x8a, + 0x3d, 0x37, 0x65, 0xcf, 0xf7, 0x0a, 0x38, 0xb5, 0x14, 0xfc, 0x9c, 0x85, 0x68, 0xd3, 0xf7, 0xcd, + 0x8b, 0xd7, 0x8b, 0xf4, 0xaf, 0xa1, 0x7f, 0x8d, 0x39, 0xea, 0xc1, 0x25, 0x16, 0x97, 0x58, 0xb0, + 0x6c, 0x94, 0xed, 0x15, 0xc8, 0xcc, 0x25, 0x16, 0x47, 0x9d, 0xa3, 0xce, 0x51, 0xb7, 0x74, 0xd4, + 0xb9, 0xc4, 0xe2, 0xb0, 0x73, 0xd8, 0x37, 0xad, 0x37, 0x97, 0x58, 0xaa, 0x2f, 0xce, 0x25, 0x96, + 0x31, 0xd1, 0x8b, 0x4b, 0xac, 0x4c, 0xea, 0x5e, 0x5c, 0x62, 0x61, 0x86, 0x31, 0xc3, 0x46, 0xcc, + 0x30, 0x97, 0x58, 0xa9, 0xdb, 0x73, 0x2e, 0xb1, 0x8c, 0xd9, 0x73, 0x2e, 0xb1, 0xb2, 0x67, 0xcc, + 0x73, 0x7e, 0x89, 0x55, 0x86, 0x7e, 0x75, 0x09, 0x13, 0x03, 0xb7, 0x5e, 0x4c, 0x00, 0xfd, 0x6d, + 0x3c, 0xd8, 0xc5, 0x78, 0x2c, 0x03, 0x29, 0x90, 0xa3, 0xbe, 0x7a, 0x3d, 0xaf, 0xed, 0x0d, 0x4f, + 0x99, 0xd3, 0xe9, 0x0e, 0xfe, 0x95, 0xa0, 0x45, 0xdd, 0xba, 0x01, 0x48, 0x88, 0x24, 0x21, 0x72, + 0xf4, 0x83, 0x24, 0x44, 0x72, 0x97, 0x9c, 0x86, 0x81, 0x4b, 0x7c, 0x97, 0xec, 0xb6, 0x1e, 0xbc, + 0x30, 0xf2, 0x7b, 0x9e, 0xe3, 0x07, 0x03, 0xd2, 0xf1, 0x30, 0x71, 0x61, 0xd5, 0x1d, 0xe1, 0xf5, + 0x43, 0x26, 0x2d, 0xe1, 0x39, 0x6a, 0x5a, 0x3a, 0x18, 0xf3, 0xd6, 0x6d, 0xf7, 0x70, 0xa8, 0x71, + 0xa8, 0xb9, 0xc4, 0x5a, 0x46, 0xff, 0x2c, 0x5c, 0x62, 0xb9, 0xed, 0x3f, 0xdd, 0xc7, 0x9e, 0xd3, + 0xec, 0xdc, 0x77, 0xdd, 0xd0, 0x73, 0xee, 0x75, 0xa2, 0x53, 0x56, 0x8c, 0x05, 0x70, 0x00, 0x1c, + 0x00, 0x47, 0x11, 0x81, 0x63, 0x14, 0x8a, 0xe6, 0xb8, 0xfe, 0x5d, 0x57, 0x37, 0x9e, 0x6d, 0x34, + 0x08, 0x50, 0x01, 0x54, 0x00, 0x15, 0x85, 0x84, 0x8a, 0x9f, 0x91, 0x17, 0x06, 0x6e, 0x7b, 0xca, + 0x0c, 0x86, 0x5e, 0x45, 0xe8, 0xf8, 0x3a, 0x91, 0xb0, 0xeb, 0xc7, 0x54, 0x07, 0x92, 0xc1, 0x76, + 0x04, 0x47, 0xc0, 0x11, 0x70, 0x24, 0x93, 0x38, 0xe2, 0xdf, 0x05, 0x9d, 0xd0, 0x73, 0xdc, 0x9e, + 0xd3, 0x75, 0xa3, 0x1f, 0x4e, 0xdb, 0x0b, 0xee, 0x86, 0x12, 0xb7, 0x22, 0x84, 0xac, 0x1e, 0x0e, + 0x1a, 0x02, 0x7c, 0x00, 0x1f, 0x05, 0x86, 0x8f, 0xc0, 0xfb, 0x19, 0x39, 0x3f, 0x3a, 0x5d, 0xc7, + 0xbf, 0xeb, 0x3a, 0xf7, 0x5e, 0x14, 0xfa, 0x4d, 0x6d, 0x0c, 0x59, 0x35, 0x26, 0x40, 0x02, 0x90, + 0x00, 0x24, 0xb9, 0x01, 0x92, 0x7c, 0x85, 0x2b, 0xac, 0xb9, 0xc8, 0x26, 0xf5, 0x96, 0xd4, 0x5b, + 0x73, 0x58, 0xc5, 0x75, 0xe9, 0x16, 0xd7, 0xa5, 0x98, 0x7e, 0x4c, 0x7f, 0x79, 0x7d, 0x08, 0xae, + 0x4b, 0x01, 0x0e, 0x80, 0x03, 0xe0, 0x48, 0x0c, 0x1c, 0x5c, 0x97, 0x02, 0x15, 0x40, 0x05, 0x50, + 0x11, 0x07, 0x2a, 0xb8, 0x2e, 0x05, 0x47, 0xc0, 0x11, 0x70, 0x44, 0x13, 0x47, 0xb8, 0x2e, 0x05, + 0x3e, 0x80, 0x0f, 0xe0, 0x43, 0x0f, 0x3e, 0xb8, 0x2e, 0x05, 0x48, 0x00, 0x12, 0x80, 0x44, 0xe5, + 0x27, 0x33, 0x7f, 0x5d, 0x5a, 0x86, 0x24, 0x6f, 0xb5, 0x9c, 0xe7, 0xad, 0x17, 0x73, 0xbd, 0x2f, + 0x06, 0x63, 0x5e, 0x4e, 0x86, 0x3c, 0x1f, 0x8f, 0x68, 0x20, 0xe3, 0x3b, 0xde, 0xed, 0x72, 0xa2, + 0x5b, 0xe5, 0xc4, 0xd9, 0xdc, 0x55, 0xb2, 0xb9, 0xc5, 0xa1, 0xd8, 0x52, 0x36, 0xb7, 0xdb, 0x4b, + 0x1e, 0x99, 0xe0, 0xf6, 0x12, 0x86, 0x25, 0xec, 0x90, 0xc5, 0x4d, 0x58, 0x82, 0xa2, 0xcd, 0x9f, + 0xd9, 0x75, 0x4e, 0xd0, 0xbf, 0xff, 0xee, 0x85, 0x49, 0x96, 0x6c, 0xbc, 0x01, 0x0f, 0x13, 0x7c, + 0x44, 0xad, 0x92, 0x92, 0x02, 0x89, 0xd1, 0xa9, 0x9c, 0xa4, 0x59, 0xa6, 0x4f, 0xb7, 0x9c, 0x8f, + 0x44, 0x19, 0x1f, 0x85, 0xca, 0x48, 0x5a, 0x15, 0x91, 0xa4, 0xa6, 0xac, 0x56, 0x3d, 0xaa, 0x1d, + 0x1d, 0x1c, 0x56, 0x8f, 0xf6, 0x53, 0x9c, 0x3b, 0x43, 0xa4, 0xf5, 0xda, 0x62, 0x58, 0x5c, 0x72, + 0xcd, 0x7e, 0xbe, 0x48, 0x4d, 0x02, 0x69, 0x1e, 0x3b, 0x84, 0x1d, 0x12, 0xb3, 0x43, 0xad, 0x4e, + 0x14, 0x79, 0x2d, 0xe7, 0xff, 0xfa, 0x6e, 0x4b, 0xc1, 0x12, 0xed, 0xfe, 0x9a, 0xe0, 0x33, 0x0d, + 0x37, 0x8a, 0xbc, 0x30, 0x48, 0x6c, 0x8c, 0x2a, 0xff, 0xf9, 0xe5, 0x97, 0x6f, 0x3b, 0xce, 0xd1, + 0xf5, 0xdf, 0xdf, 0x76, 0x9d, 0xa3, 0xeb, 0xd1, 0x6f, 0x77, 0x87, 0xff, 0x1a, 0xfd, 0xbe, 0xfa, + 0x6d, 0xc7, 0xa9, 0x4d, 0x7e, 0xbf, 0xff, 0x6d, 0xc7, 0xd9, 0xbf, 0x7e, 0xfd, 0xc7, 0x1f, 0x6f, + 0x5f, 0xff, 0xb5, 0xf7, 0x94, 0xfc, 0x83, 0xff, 0xa8, 0x64, 0x12, 0x5f, 0xa2, 0x4e, 0xe4, 0xb6, + 0x87, 0x4a, 0xbc, 0x02, 0xc5, 0x9d, 0xfd, 0x30, 0x18, 0x03, 0xc6, 0x58, 0xc6, 0x98, 0xbe, 0x1f, + 0x44, 0x7b, 0x55, 0x88, 0x2e, 0x44, 0x17, 0xa2, 0x9b, 0x7b, 0xa2, 0x3b, 0xb6, 0x25, 0x43, 0x34, + 0xf4, 0xd4, 0x6d, 0xd1, 0xe4, 0xf3, 0x98, 0x23, 0xcc, 0x11, 0xe6, 0x08, 0x73, 0x84, 0x39, 0xc2, + 0x1c, 0x25, 0xfb, 0x89, 0xd4, 0x2e, 0xd8, 0x62, 0x5c, 0x22, 0xaa, 0x5d, 0x7e, 0xf5, 0x7b, 0x9e, + 0x73, 0xdf, 0x6f, 0x47, 0x7e, 0xb7, 0xed, 0xc5, 0x74, 0xf5, 0x9e, 0x41, 0x6d, 0xf9, 0xb3, 0x14, + 0x39, 0xe6, 0x5a, 0x6c, 0xf4, 0x83, 0x14, 0x39, 0x86, 0xa3, 0xa5, 0xc1, 0xd1, 0x72, 0xd3, 0x30, + 0x97, 0xe8, 0xb2, 0x24, 0x23, 0x10, 0x5d, 0x26, 0xc0, 0xa6, 0x88, 0x2e, 0x33, 0x85, 0x3a, 0xc6, + 0xa3, 0xcb, 0x96, 0xb9, 0x56, 0x0a, 0x75, 0x38, 0xbc, 0xef, 0x09, 0x32, 0x0b, 0x9f, 0xf1, 0x31, + 0xfe, 0x91, 0xc7, 0x9e, 0x63, 0xcf, 0x75, 0xed, 0x79, 0x42, 0xe2, 0xa9, 0x47, 0x40, 0x15, 0x37, + 0x2e, 0xd6, 0x18, 0x6b, 0x9c, 0xd4, 0x1a, 0x27, 0x3d, 0x08, 0xd3, 0x0f, 0xba, 0xed, 0x76, 0xe7, + 0xcf, 0x67, 0xe3, 0xe1, 0xf6, 0xd4, 0xd7, 0xed, 0xb9, 0xac, 0xc4, 0xe2, 0x90, 0x8a, 0xd3, 0xae, + 0x49, 0x82, 0xa5, 0x14, 0x32, 0xd5, 0x63, 0x28, 0x71, 0x1c, 0xe5, 0x8e, 0xa5, 0xd4, 0xf1, 0x14, + 0x3f, 0xa6, 0xe2, 0xc7, 0x55, 0xf4, 0xd8, 0xaa, 0x1d, 0x5f, 0x0d, 0x31, 0x58, 0x8f, 0x5c, 0x0b, + 0x92, 0x6c, 0x4d, 0xb2, 0xad, 0x3e, 0x71, 0x2a, 0x0a, 0xfa, 0xbd, 0xfb, 0xd3, 0xbf, 0xef, 0xdf, + 0x27, 0x8c, 0x47, 0x59, 0x3b, 0x6b, 0xf3, 0xc3, 0xe9, 0xc3, 0xd7, 0x2e, 0xd0, 0x05, 0x74, 0x01, + 0x5d, 0xc9, 0xf6, 0x4b, 0xe2, 0x6b, 0xd1, 0x75, 0xa7, 0xe7, 0x50, 0x63, 0x08, 0xbd, 0xc6, 0xbf, + 0x93, 0x5f, 0x7a, 0xfb, 0x75, 0x4b, 0xaa, 0x11, 0xb0, 0x10, 0xac, 0x2c, 0x0d, 0x27, 0xd4, 0xbd, + 0x76, 0x3a, 0x9e, 0x60, 0x17, 0x5b, 0xcd, 0xed, 0x3c, 0xbf, 0x04, 0x02, 0x0d, 0x83, 0x4d, 0x2f, + 0x81, 0xee, 0x35, 0xae, 0x95, 0xb5, 0x78, 0x95, 0xce, 0xa7, 0xaf, 0x6d, 0x11, 0x18, 0xa3, 0xae, + 0x9e, 0xa2, 0x9a, 0x28, 0xa2, 0x2a, 0x7a, 0x83, 0xbf, 0x4e, 0x22, 0x2d, 0x2a, 0x48, 0xaf, 0x09, + 0x24, 0xb4, 0x64, 0xa5, 0x7f, 0x97, 0x0c, 0x4c, 0x92, 0x12, 0xc0, 0x62, 0x5a, 0x4e, 0x15, 0x2d, + 0x07, 0x2d, 0x07, 0x2d, 0x07, 0x87, 0x08, 0x87, 0x08, 0x87, 0x08, 0x2d, 0x07, 0x2d, 0x07, 0xe8, + 0x02, 0xba, 0xd0, 0x72, 0xd0, 0x72, 0xd0, 0x72, 0xd0, 0x72, 0xd0, 0x72, 0xd0, 0x72, 0xac, 0x6a, + 0x39, 0x09, 0xea, 0x8f, 0x29, 0x48, 0x39, 0xb9, 0x8f, 0xa2, 0xf3, 0x12, 0xc6, 0x74, 0xad, 0xad, + 0x57, 0xf6, 0xa5, 0xe7, 0x7d, 0x1e, 0x0f, 0xdd, 0x18, 0x8c, 0x7c, 0x53, 0x8f, 0x4d, 0x03, 0x64, + 0xa2, 0xf3, 0x7c, 0xa5, 0xe8, 0x3c, 0x9f, 0xe8, 0x3c, 0xa2, 0xf3, 0x94, 0x4f, 0x2c, 0xd1, 0x79, + 0xd2, 0x7e, 0x18, 0x8a, 0xae, 0x21, 0xff, 0x2a, 0xa3, 0x8a, 0x2e, 0x52, 0x08, 0x52, 0x08, 0x52, + 0x08, 0x52, 0x08, 0x52, 0x08, 0x52, 0x08, 0x52, 0x08, 0x52, 0x08, 0x52, 0x88, 0x11, 0x37, 0xdf, + 0x27, 0xac, 0x85, 0xb0, 0x16, 0x9c, 0x20, 0x9c, 0x20, 0x9c, 0x20, 0x9c, 0x20, 0x9c, 0x20, 0x9c, + 0x20, 0x9c, 0x20, 0x9c, 0x20, 0x9c, 0x20, 0x9c, 0xa0, 0xd2, 0x39, 0x41, 0xdc, 0x07, 0x6f, 0x9c, + 0x23, 0x33, 0xf7, 0xc1, 0x27, 0x96, 0xef, 0x83, 0x93, 0xf9, 0x98, 0x4a, 0xbe, 0xa5, 0xf2, 0x8d, + 0x70, 0x95, 0x1b, 0x61, 0x49, 0x02, 0x4a, 0xfd, 0x35, 0xea, 0xaf, 0x21, 0xa7, 0x14, 0x4d, 0x4e, + 0xa1, 0xfe, 0x5a, 0xa6, 0x99, 0x42, 0x19, 0x1a, 0x7b, 0x26, 0x2e, 0xf1, 0x9b, 0x8c, 0x13, 0x29, + 0x57, 0x34, 0x7e, 0x95, 0x60, 0x96, 0xe2, 0xce, 0x4e, 0xec, 0x59, 0xa9, 0xbc, 0xd8, 0x4c, 0x74, + 0xf5, 0xab, 0xaf, 0x7e, 0xd3, 0xe5, 0xf7, 0x58, 0xf1, 0x0e, 0x95, 0xc0, 0xf3, 0xef, 0x7e, 0x7c, + 0xef, 0x84, 0xeb, 0x95, 0xd1, 0xe9, 0x81, 0x7f, 0xfe, 0xd1, 0x35, 0x73, 0xf1, 0x32, 0x61, 0xdb, + 0x68, 0x9d, 0xe2, 0x58, 0xa1, 0xf8, 0xd6, 0x26, 0xae, 0x55, 0x49, 0x6c, 0x3d, 0x12, 0x5b, 0x89, + 0x44, 0xd6, 0x20, 0xd9, 0xee, 0xdb, 0x44, 0x88, 0xa6, 0x6b, 0x16, 0xbf, 0xf0, 0xf6, 0xf4, 0x13, + 0x94, 0xdb, 0xa6, 0xdc, 0xf6, 0xe8, 0x07, 0xdd, 0x5b, 0xdf, 0xe9, 0xb9, 0xb7, 0xbe, 0x4a, 0x33, + 0xda, 0xe9, 0x47, 0x09, 0x03, 0xc6, 0xe9, 0xb3, 0xe3, 0xf4, 0x4d, 0xf6, 0x9c, 0xba, 0xd7, 0x37, + 0x1d, 0x81, 0x50, 0x60, 0xdc, 0xb6, 0x4c, 0xb9, 0x6d, 0xea, 0xc5, 0x1d, 0x5a, 0x2d, 0xa9, 0x1b, + 0xf0, 0xe7, 0xa1, 0xf4, 0x6e, 0xae, 0x77, 0xb9, 0xb9, 0xe6, 0xe6, 0x5a, 0x75, 0x30, 0xbb, 0x37, + 0xd7, 0xaa, 0xc7, 0x6e, 0x3a, 0x80, 0x62, 0x6a, 0xca, 0xda, 0x6d, 0xa7, 0x94, 0xaa, 0x22, 0x7c, + 0x10, 0xc5, 0x0e, 0xa4, 0xe4, 0xc1, 0x94, 0x3f, 0xa0, 0xd2, 0x07, 0xd5, 0xd8, 0x81, 0x35, 0x76, + 0x70, 0x8d, 0x1c, 0x60, 0xbd, 0x83, 0xac, 0x79, 0xa0, 0xc5, 0x0e, 0xf6, 0x74, 0x20, 0xaf, 0xed, + 0xdf, 0xf9, 0xdf, 0xdb, 0xde, 0xb8, 0x13, 0xa4, 0xd3, 0xed, 0xb4, 0xfd, 0xe6, 0xa3, 0xdc, 0x66, + 0x99, 0x5e, 0x48, 0xac, 0x7e, 0xce, 0x9b, 0x4c, 0x46, 0x1e, 0x48, 0x01, 0x83, 0x09, 0x80, 0x30, + 0x07, 0x14, 0xa6, 0x00, 0xc3, 0x38, 0x70, 0x18, 0x07, 0x10, 0xa3, 0x40, 0x22, 0x03, 0x28, 0x42, + 0xc0, 0x32, 0x7d, 0x53, 0xed, 0x98, 0xb7, 0xb5, 0xfb, 0xb5, 0xed, 0xb9, 0xb7, 0xa1, 0x77, 0x2b, + 0xb9, 0x61, 0x27, 0x7c, 0xe0, 0x50, 0x70, 0xcc, 0xc6, 0x54, 0xf2, 0x6e, 0x3a, 0x61, 0xb7, 0xd3, + 0x7e, 0x17, 0x76, 0xfa, 0x91, 0x1f, 0xdc, 0x8d, 0x91, 0x6b, 0xfa, 0xc7, 0xa3, 0xff, 0x74, 0x5a, + 0xde, 0xad, 0x1f, 0xf8, 0x91, 0xdf, 0x09, 0x7a, 0xeb, 0xff, 0x6a, 0xfa, 0x37, 0x43, 0x2d, 0xfc, + 0x55, 0x36, 0x76, 0x8d, 0x44, 0x18, 0x59, 0xe8, 0x35, 0x3d, 0xff, 0xc1, 0x93, 0x37, 0x1b, 0x93, + 0x81, 0x85, 0x76, 0xb5, 0x50, 0x39, 0x3e, 0xec, 0x0f, 0xf6, 0x07, 0xfb, 0x93, 0x53, 0xfb, 0xa3, + 0x5f, 0x4e, 0x70, 0xad, 0xfd, 0xd9, 0x2d, 0x10, 0xa4, 0xf7, 0xbc, 0xa0, 0x25, 0x8f, 0xe7, 0xc3, + 0x51, 0x01, 0x73, 0xc0, 0x1c, 0x30, 0x07, 0xcc, 0x01, 0x73, 0x9b, 0x60, 0xee, 0xdc, 0x4b, 0xe6, + 0x7a, 0xcc, 0x02, 0xfa, 0x70, 0x64, 0xc0, 0x17, 0xf0, 0x05, 0x7c, 0x4b, 0x05, 0xbe, 0x7d, 0x3f, + 0x88, 0x7e, 0x35, 0x00, 0xbd, 0xfb, 0x82, 0x43, 0xca, 0x24, 0x3b, 0x2e, 0xfe, 0x92, 0x3d, 0x4e, + 0x5b, 0xd2, 0xc9, 0x90, 0x86, 0x51, 0x75, 0x69, 0x78, 0xe1, 0x64, 0xc9, 0xa5, 0xf1, 0x0d, 0x24, + 0xec, 0x19, 0x3a, 0x6d, 0xf3, 0x4b, 0xea, 0xfe, 0xcc, 0xfd, 0x92, 0x56, 0xf7, 0xf7, 0x73, 0xbc, + 0xa8, 0xaf, 0xb2, 0x39, 0xda, 0x75, 0x56, 0xa8, 0x65, 0xaa, 0x77, 0x98, 0x9a, 0x59, 0x9f, 0xcb, + 0x24, 0x77, 0x63, 0xa8, 0xfa, 0x34, 0x12, 0x7c, 0xfa, 0xbb, 0xed, 0x69, 0xa0, 0xe7, 0xf4, 0x77, + 0xdb, 0xd3, 0x38, 0x21, 0xa5, 0xda, 0x38, 0x72, 0x73, 0xac, 0x31, 0xbf, 0x8a, 0xb5, 0x74, 0xd6, + 0xb3, 0x7c, 0x85, 0xda, 0x3a, 0x6b, 0x1d, 0x2b, 0xa9, 0xa8, 0x8d, 0x2a, 0x51, 0x1b, 0x19, 0xa0, + 0xec, 0x44, 0x6d, 0xc4, 0x7f, 0x23, 0xa2, 0x36, 0xf0, 0xf5, 0xf1, 0xf5, 0xf1, 0xf5, 0x73, 0xe8, + 0xeb, 0x13, 0xb5, 0x41, 0xd4, 0x46, 0xec, 0xcd, 0x42, 0xd4, 0x06, 0xf6, 0x07, 0xfb, 0x83, 0xfd, + 0x11, 0xdc, 0xaf, 0x5c, 0xf4, 0xc5, 0xf3, 0xfb, 0x89, 0xda, 0x00, 0xcc, 0x01, 0x73, 0xc0, 0x1c, + 0x30, 0x2f, 0x06, 0x98, 0x13, 0xb5, 0x01, 0xf8, 0x02, 0xbe, 0x80, 0xaf, 0xdc, 0x7e, 0x25, 0x6a, + 0x43, 0x70, 0x43, 0x12, 0xb5, 0xb1, 0x7e, 0x7c, 0xa2, 0x36, 0x52, 0x5b, 0x52, 0xa2, 0x36, 0x0c, + 0x8c, 0x46, 0xd4, 0x46, 0x3e, 0xa2, 0x36, 0x14, 0x8a, 0x79, 0xcb, 0x4d, 0xb1, 0xdd, 0xfa, 0x1e, + 0x42, 0x8b, 0x21, 0xbf, 0x08, 0x15, 0xad, 0xd8, 0x95, 0xc5, 0x72, 0x91, 0x67, 0xe3, 0x47, 0xde, + 0x1c, 0xdf, 0xfa, 0x97, 0xee, 0xad, 0x7f, 0x73, 0xdc, 0x6a, 0xc5, 0xa8, 0x95, 0x29, 0xb7, 0x46, + 0x0a, 0xeb, 0x33, 0x2d, 0xc6, 0xe5, 0x8c, 0xdf, 0x44, 0xb7, 0x7a, 0xd1, 0xdc, 0x70, 0xf4, 0xde, + 0xa1, 0x82, 0x51, 0x4a, 0x7e, 0x53, 0x5e, 0x7b, 0xef, 0xe8, 0xdf, 0x60, 0x4b, 0xdc, 0x58, 0x4f, + 0x6f, 0xa8, 0xdf, 0xbe, 0x1d, 0x87, 0x17, 0x6e, 0xcf, 0x9f, 0xec, 0x2c, 0x23, 0x5a, 0xb7, 0xdb, + 0x7e, 0xd4, 0x8d, 0x35, 0x7a, 0x06, 0xb4, 0xd9, 0xd1, 0xa8, 0xc8, 0x56, 0x19, 0x47, 0x19, 0x00, + 0x68, 0x0a, 0x80, 0x36, 0x9c, 0x38, 0x6a, 0xb2, 0xa9, 0x6d, 0x3c, 0x6a, 0xb2, 0xd9, 0x3b, 0xa2, + 0xd2, 0x47, 0xd5, 0xd8, 0x91, 0x35, 0x76, 0x74, 0xcd, 0x1c, 0xe1, 0x6c, 0xf8, 0xc6, 0x62, 0xf1, + 0xbd, 0xad, 0xd1, 0x25, 0xb9, 0xe3, 0xfd, 0xec, 0x76, 0xc2, 0xc8, 0x58, 0x78, 0xef, 0xea, 0xc7, + 0xc8, 0x5f, 0xf4, 0x5f, 0xd4, 0xff, 0xa7, 0xfe, 0xe1, 0xea, 0xe6, 0xe2, 0xfc, 0xcb, 0x55, 0x9d, + 0x2b, 0xa7, 0x2c, 0xe1, 0x90, 0x29, 0x3c, 0x32, 0x8e, 0x4b, 0xc6, 0xf1, 0xc9, 0x2c, 0x4e, 0xc9, + 0xaa, 0x93, 0xd9, 0xbf, 0x74, 0x9a, 0x20, 0xcd, 0x38, 0xb8, 0x36, 0x1a, 0x3c, 0xc8, 0xc0, 0xed, + 0x7f, 0x4d, 0x70, 0xcc, 0x7a, 0xd0, 0xbf, 0x1f, 0x4c, 0xc6, 0x53, 0x81, 0x22, 0x0a, 0x26, 0xcb, + 0xe0, 0xdf, 0x5b, 0xb1, 0x2b, 0xf3, 0x8f, 0xc1, 0xae, 0x60, 0x57, 0xb0, 0x2b, 0xd8, 0x15, 0xec, + 0x4a, 0xe1, 0xec, 0x8a, 0x61, 0x3f, 0xc5, 0x88, 0x7f, 0x02, 0xd0, 0x03, 0xf4, 0x00, 0x7d, 0x5e, + 0x80, 0x9e, 0xfc, 0x43, 0xd1, 0xfc, 0x43, 0xa1, 0xf5, 0x3e, 0xf5, 0x7b, 0xd1, 0x71, 0x14, 0x85, + 0xb2, 0x6b, 0xfe, 0xd9, 0x0f, 0xea, 0x6d, 0x6f, 0x70, 0x64, 0x7a, 0x95, 0x77, 0x5b, 0x41, 0xbf, + 0xdd, 0x16, 0x5c, 0xa1, 0xcf, 0xee, 0x4f, 0x73, 0x83, 0x9f, 0x87, 0x2d, 0x2f, 0xf4, 0x5a, 0xef, + 0x1f, 0xe5, 0x71, 0x70, 0x1a, 0xbe, 0xd9, 0xf3, 0x42, 0x69, 0x08, 0x34, 0x84, 0xdd, 0x8b, 0xf8, + 0xdd, 0x19, 0xcd, 0x8e, 0xf3, 0xfd, 0xb1, 0x62, 0x20, 0x6e, 0xcf, 0x34, 0x8e, 0x2f, 0x61, 0xf9, + 0x70, 0x25, 0x32, 0x1a, 0xab, 0x56, 0x24, 0x72, 0x69, 0x58, 0xac, 0x30, 0x22, 0x52, 0x40, 0x2e, + 0x21, 0x97, 0x90, 0x4b, 0xc8, 0x25, 0xe4, 0x12, 0x72, 0x09, 0xb9, 0x84, 0x5c, 0x42, 0x2e, 0x4d, + 0x90, 0x4b, 0x12, 0x21, 0x56, 0xc5, 0xe0, 0xcf, 0xc4, 0x55, 0x52, 0xc1, 0x92, 0x0a, 0x96, 0xa9, + 0xb1, 0x77, 0x62, 0xdc, 0x88, 0x71, 0x7b, 0x61, 0x20, 0x62, 0xdc, 0x50, 0x11, 0x50, 0x11, 0x50, + 0x11, 0x0a, 0xa3, 0x22, 0x10, 0x8b, 0x40, 0x8c, 0x1b, 0x76, 0x05, 0xbb, 0x82, 0x5d, 0xc1, 0xae, + 0x60, 0x57, 0x88, 0x71, 0x4b, 0xb6, 0xca, 0xc4, 0xb8, 0x01, 0xf4, 0x00, 0x7d, 0xa9, 0x81, 0x9e, + 0x6b, 0x48, 0xae, 0x21, 0x65, 0x06, 0xe7, 0x1a, 0xd2, 0x16, 0x76, 0x6f, 0x71, 0x0d, 0x99, 0x06, + 0x98, 0x6f, 0x11, 0xe3, 0x96, 0xe4, 0x40, 0x11, 0xe3, 0x06, 0xb9, 0x84, 0x5c, 0x42, 0x2e, 0x21, + 0x97, 0x90, 0x4b, 0xc8, 0x25, 0xe4, 0x12, 0x72, 0x99, 0x1b, 0x72, 0x49, 0x8c, 0xdb, 0xa6, 0x18, + 0x37, 0xea, 0xfd, 0x66, 0x62, 0x1d, 0x4c, 0x97, 0xfc, 0x1d, 0x3c, 0xaa, 0x31, 0x7a, 0x52, 0x86, + 0x6b, 0x64, 0x6a, 0x16, 0xe7, 0x93, 0x29, 0xca, 0x57, 0xb4, 0xba, 0x98, 0xd4, 0xf9, 0x55, 0xf3, + 0x94, 0x72, 0x54, 0xe7, 0x57, 0xbb, 0x2a, 0xa6, 0x4c, 0xb9, 0xed, 0xa5, 0xdd, 0x27, 0x51, 0x76, + 0x5b, 0x58, 0x31, 0xc9, 0x7c, 0x8d, 0x4c, 0x3a, 0xe0, 0xd3, 0x01, 0xdf, 0xb4, 0xbe, 0xf1, 0x2c, + 0x6d, 0xb6, 0xbc, 0x20, 0xf2, 0xa3, 0x47, 0x19, 0x6d, 0x63, 0x6a, 0x39, 0x05, 0xfa, 0xa7, 0x54, + 0x4e, 0xc6, 0x5f, 0xed, 0xbd, 0xdb, 0x33, 0xd0, 0x64, 0xf9, 0xf8, 0xd3, 0xc9, 0xcd, 0xe5, 0xe0, + 0x1f, 0x57, 0xbf, 0x37, 0xc4, 0x22, 0xc3, 0x86, 0x0d, 0x64, 0x7a, 0xa2, 0x9d, 0x97, 0x0c, 0xb9, + 0xf1, 0x27, 0x8d, 0xaf, 0xb5, 0x9b, 0x2f, 0x67, 0x27, 0x1f, 0x8e, 0x2f, 0xaf, 0x04, 0xd5, 0xc0, + 0x37, 0x59, 0x7f, 0xef, 0xd3, 0x93, 0xb3, 0x7f, 0x5d, 0x5e, 0x1d, 0x5f, 0xd5, 0xcb, 0xf4, 0xd2, + 0x97, 0x17, 0x57, 0xf5, 0x9b, 0xc6, 0xf9, 0xe9, 0xc9, 0x87, 0xdf, 0x6f, 0x4e, 0x1a, 0x5f, 0x0f, + 0x4a, 0xb5, 0xe0, 0x7b, 0x5f, 0x1b, 0x67, 0xc3, 0xb7, 0x2e, 0xe5, 0x76, 0xaf, 0x0e, 0xde, 0xfe, + 0x6b, 0xe3, 0xf4, 0xb2, 0x94, 0x87, 0xfc, 0xe6, 0xb2, 0xf1, 0xa9, 0x9c, 0x2f, 0xfe, 0xb5, 0x71, + 0x56, 0xa6, 0x17, 0x1f, 0x9a, 0xb3, 0x4f, 0xa7, 0xe7, 0xff, 0xbe, 0x6c, 0xd4, 0x3f, 0x94, 0x14, + 0xde, 0x3e, 0x7f, 0x39, 0xbd, 0x2a, 0x1d, 0xc0, 0x7d, 0x6d, 0x9c, 0x95, 0x7d, 0xe5, 0x6b, 0xe5, + 0x5c, 0xf9, 0xe1, 0x9e, 0x3f, 0x3d, 0x7e, 0x5f, 0x3f, 0xad, 0x7f, 0x2c, 0xa5, 0x69, 0x7f, 0x5e, + 0xff, 0x12, 0xbe, 0xfd, 0xf0, 0xbd, 0x4b, 0xbc, 0xfa, 0x65, 0x25, 0xb4, 0x0b, 0xae, 0x4c, 0xad, + 0x7c, 0x64, 0xbe, 0x2e, 0x4b, 0xed, 0x44, 0x46, 0xba, 0x4e, 0x5b, 0x57, 0x4b, 0xa5, 0xc6, 0x86, + 0x17, 0xb8, 0xdf, 0xdb, 0x5e, 0x4b, 0x4e, 0x2d, 0x9f, 0x0c, 0xa8, 0x5b, 0x63, 0xe0, 0x39, 0xfd, + 0xf1, 0xd6, 0x6d, 0xf7, 0xd0, 0xdd, 0x63, 0x4c, 0x3d, 0xba, 0x3b, 0xba, 0xfb, 0xfa, 0x37, 0x92, + 0xd7, 0xdd, 0xbf, 0x77, 0x3a, 0x6d, 0xcf, 0x0d, 0x24, 0x35, 0xf7, 0x5d, 0x62, 0x38, 0x12, 0x8c, + 0x23, 0x15, 0xc3, 0xa1, 0x53, 0x22, 0xca, 0x4e, 0x4c, 0xc5, 0x5d, 0xe8, 0x36, 0xbd, 0xdb, 0x7e, + 0xdb, 0x09, 0xbd, 0x5e, 0xe4, 0x86, 0x91, 0x7e, 0x74, 0xc5, 0xd2, 0x88, 0xc4, 0x59, 0x10, 0x67, + 0x91, 0x92, 0x81, 0xa0, 0xfb, 0x28, 0xdd, 0x47, 0x61, 0x78, 0x30, 0xbc, 0xac, 0xd4, 0x65, 0x93, + 0x72, 0x0a, 0x0d, 0x39, 0x87, 0xa6, 0x9c, 0x44, 0x61, 0x67, 0x51, 0x1c, 0x52, 0x4c, 0x40, 0x8b, + 0x39, 0x88, 0x31, 0x05, 0x35, 0xc6, 0x21, 0xc7, 0x38, 0xf4, 0x18, 0x85, 0x20, 0x59, 0x51, 0x2c, + 0xfb, 0x49, 0x6d, 0x72, 0x4e, 0xa8, 0xb0, 0x33, 0x2a, 0xb7, 0x10, 0x24, 0x80, 0xac, 0x72, 0x5a, + 0x17, 0x1d, 0x38, 0x0a, 0x1d, 0x53, 0xe8, 0x18, 0x3a, 0x0d, 0x9d, 0xce, 0x1e, 0x9d, 0x76, 0x5b, + 0x0f, 0x5e, 0x18, 0xf9, 0x3d, 0x13, 0x8c, 0x7a, 0x66, 0x6c, 0xc8, 0x2f, 0xe4, 0x17, 0xf2, 0x0b, + 0xf9, 0x2d, 0x18, 0xf9, 0x7d, 0x83, 0x9e, 0x01, 0xa4, 0x03, 0xe9, 0x40, 0x3a, 0x90, 0x0e, 0xa4, + 0x4f, 0xdf, 0x29, 0xf4, 0x9a, 0x9e, 0xff, 0x60, 0x02, 0xd3, 0xa7, 0x23, 0x03, 0xbe, 0x80, 0x2f, + 0xe0, 0x0b, 0xf8, 0x16, 0x0c, 0x7c, 0x11, 0x93, 0xe3, 0x88, 0xc9, 0x54, 0x14, 0xca, 0xcc, 0x5a, + 0x18, 0xae, 0x2a, 0xf4, 0xdb, 0xf8, 0x71, 0x17, 0xe3, 0xa7, 0x65, 0x38, 0x0a, 0xce, 0xef, 0x3e, + 0xd4, 0x9c, 0xb6, 0xfb, 0xdd, 0x6b, 0x7b, 0x2d, 0xa7, 0x1f, 0xf8, 0x4d, 0xb7, 0x27, 0x10, 0x09, + 0xb7, 0x72, 0x54, 0xa2, 0xe1, 0x88, 0x86, 0x4b, 0x89, 0x7c, 0xe4, 0x2c, 0x1a, 0x6e, 0xb4, 0x22, + 0x4e, 0xdb, 0xbf, 0xf7, 0x23, 0xb9, 0x3b, 0xbc, 0xb9, 0x51, 0x89, 0x8c, 0xb3, 0xe7, 0x69, 0x70, + 0x95, 0xc7, 0x55, 0xde, 0xfa, 0x81, 0x84, 0x42, 0x5f, 0x97, 0xb6, 0xaf, 0x48, 0x08, 0xac, 0xf0, + 0x81, 0x47, 0x72, 0x40, 0x72, 0x40, 0x72, 0x90, 0x05, 0x90, 0xe9, 0x80, 0xf7, 0xee, 0x4f, 0x67, + 0xb4, 0xea, 0xc3, 0x5a, 0x5b, 0x86, 0xb2, 0x6d, 0xe7, 0x9e, 0x22, 0xbc, 0xf8, 0xb2, 0xba, 0xa6, + 0x31, 0xb0, 0x31, 0x09, 0x3a, 0xe6, 0xc1, 0xc7, 0x34, 0x08, 0x59, 0x03, 0x23, 0x6b, 0xa0, 0x64, + 0x05, 0x9c, 0x64, 0x41, 0x4a, 0x18, 0xac, 0xa6, 0x33, 0x20, 0xae, 0x93, 0x2e, 0xed, 0xf7, 0xbe, + 0x1f, 0x44, 0x7b, 0x55, 0x13, 0xfb, 0x7d, 0x8c, 0x2e, 0x87, 0x06, 0x86, 0xbe, 0x70, 0x83, 0x3b, + 0x4f, 0xb4, 0xbe, 0xe1, 0xec, 0x2f, 0x33, 0xe7, 0x73, 0x6b, 0xdc, 0xd3, 0xc1, 0x18, 0x00, 0x18, + 0x86, 0xf5, 0xa5, 0xc7, 0x0c, 0xab, 0x4c, 0x5a, 0x78, 0xce, 0xa7, 0xd0, 0x6d, 0x46, 0x7e, 0x27, + 0xf8, 0xe8, 0xdf, 0xf9, 0xc3, 0x6e, 0x15, 0x3b, 0xc6, 0x9e, 0xf7, 0xf4, 0xc6, 0xe0, 0xd2, 0xbb, + 0x3f, 0x0b, 0xb7, 0xf4, 0xb5, 0xea, 0x51, 0xed, 0xe8, 0xe0, 0xb0, 0x7a, 0xb4, 0x5f, 0xa0, 0x3d, + 0xf0, 0x2a, 0x1f, 0xa3, 0x5e, 0x67, 0xb5, 0xe7, 0x86, 0xa0, 0xdf, 0xd6, 0x0d, 0xbd, 0x07, 0x2f, + 0x88, 0x9c, 0xc8, 0x73, 0xc3, 0x56, 0xe7, 0xcf, 0xc0, 0x1c, 0xcd, 0x5e, 0x7a, 0x92, 0xb0, 0x21, + 0x37, 0x14, 0x17, 0x06, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x86, 0x42, 0x1f, 0x16, 0xe1, + 0x45, 0x28, 0x04, 0x22, 0xdb, 0x46, 0x67, 0x7c, 0x67, 0xed, 0x44, 0xfe, 0xbd, 0x17, 0x9a, 0xb3, + 0x38, 0xf3, 0x8f, 0xc1, 0x1c, 0x60, 0x0e, 0x30, 0x07, 0x98, 0x03, 0xc1, 0xfd, 0xde, 0xf2, 0x9a, + 0xfe, 0xbd, 0xdb, 0x3e, 0xa8, 0x99, 0x34, 0x08, 0x55, 0x03, 0x63, 0x2f, 0x39, 0x7b, 0x55, 0x24, + 0xa4, 0x74, 0x24, 0xa4, 0x2a, 0x12, 0x52, 0x59, 0x25, 0xa4, 0x3d, 0x96, 0x1e, 0xe5, 0x28, 0xbf, + 0x24, 0xfe, 0x4f, 0x37, 0x0c, 0xfc, 0xe0, 0xce, 0x89, 0x7e, 0x84, 0x5e, 0xef, 0x47, 0xa7, 0xdd, + 0x72, 0xba, 0xcd, 0xc8, 0x1c, 0x99, 0x5f, 0xfd, 0x38, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, + 0x17, 0xdc, 0xef, 0x5d, 0x2f, 0x6c, 0x7a, 0x41, 0xe4, 0xde, 0x79, 0x06, 0x59, 0xfd, 0x3e, 0x7c, + 0x3b, 0x1d, 0xbe, 0xcd, 0x95, 0x6d, 0x69, 0xf9, 0xb6, 0xad, 0xa5, 0xdf, 0xdd, 0x81, 0x71, 0xc3, + 0xb8, 0x45, 0x47, 0x92, 0x8a, 0xd0, 0x14, 0xce, 0x2c, 0x9c, 0x8e, 0x2b, 0x95, 0xd5, 0xb6, 0x2a, + 0xcb, 0x6a, 0x7b, 0x36, 0xcb, 0x43, 0xa4, 0x7e, 0x9d, 0xdc, 0xda, 0x48, 0x24, 0xe9, 0xcb, 0xd4, + 0xb5, 0x5b, 0xa2, 0x31, 0x12, 0xf5, 0xed, 0x16, 0x11, 0x54, 0x3c, 0x56, 0xbe, 0x4a, 0xac, 0x7c, + 0x8e, 0xfc, 0x1d, 0x62, 0xe5, 0x89, 0x95, 0x27, 0x56, 0x1e, 0xf1, 0x05, 0xf1, 0x05, 0xf1, 0xc5, + 0xd0, 0x7e, 0x27, 0x56, 0x1e, 0xe1, 0x05, 0xe1, 0x05, 0xe1, 0x45, 0x69, 0xe9, 0x89, 0x95, 0x47, + 0x7f, 0x31, 0x78, 0x86, 0x88, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, + 0x9d, 0x58, 0x79, 0x91, 0x77, 0x25, 0x56, 0x1e, 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, + 0x10, 0x2b, 0x8f, 0x84, 0xa4, 0xb9, 0xbc, 0xc4, 0xca, 0x97, 0x56, 0x42, 0x22, 0x56, 0x1e, 0xe5, + 0x28, 0xc7, 0x24, 0x9e, 0x58, 0x79, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0xac, + 0x7c, 0x91, 0xf9, 0x36, 0x57, 0xb6, 0xa5, 0xe5, 0xdb, 0xc4, 0xca, 0xc3, 0xb8, 0xed, 0x33, 0x6e, + 0x62, 0xe5, 0x45, 0x63, 0xe5, 0x05, 0xda, 0xf3, 0xc8, 0x2d, 0x0d, 0x2d, 0x95, 0x94, 0x16, 0xb1, + 0x22, 0x92, 0x61, 0xb0, 0xb1, 0xbf, 0xcf, 0x49, 0xf7, 0xa1, 0x76, 0x3a, 0xfa, 0x1a, 0x5f, 0x46, + 0xdf, 0xe2, 0x66, 0xe4, 0x2f, 0x9d, 0x0e, 0xbf, 0x04, 0x2d, 0x9e, 0x32, 0xb2, 0x37, 0x0c, 0xb7, + 0x79, 0x5a, 0xde, 0x06, 0x99, 0xef, 0xf4, 0x24, 0xdb, 0xe1, 0x89, 0xce, 0x4e, 0x74, 0x76, 0x4a, + 0x59, 0x6b, 0xc8, 0x59, 0x67, 0x27, 0xa1, 0x66, 0x2f, 0xb2, 0x4d, 0x5e, 0xe8, 0xe6, 0x94, 0xa6, + 0xb8, 0x48, 0x37, 0xa7, 0x0c, 0x30, 0x5e, 0xb1, 0x6e, 0x4e, 0x3d, 0x2f, 0x68, 0x39, 0xad, 0x51, + 0xc0, 0xa8, 0x13, 0x76, 0xfa, 0x46, 0x92, 0x55, 0x97, 0x9f, 0x21, 0x95, 0x67, 0x67, 0x26, 0xd2, + 0x95, 0x86, 0xd5, 0x64, 0xc4, 0x92, 0x11, 0x2b, 0xaa, 0xb7, 0xd0, 0xb0, 0x1a, 0x75, 0xc5, 0x84, + 0x07, 0x3d, 0x51, 0x55, 0x24, 0x2a, 0x47, 0x68, 0x48, 0x19, 0x6f, 0x68, 0x9e, 0x0a, 0xdd, 0x86, + 0x6e, 0x43, 0xb7, 0xed, 0xf8, 0xd3, 0x66, 0xfc, 0x6a, 0xe1, 0x03, 0x0f, 0xfd, 0x85, 0xfe, 0x42, + 0x7f, 0x65, 0x01, 0x64, 0x3a, 0x20, 0x05, 0x61, 0x2c, 0x81, 0x8d, 0x49, 0xd0, 0x31, 0x0f, 0x3e, + 0xa6, 0x41, 0xc8, 0x1a, 0x18, 0x59, 0x03, 0x25, 0x2b, 0xe0, 0x24, 0x0b, 0x52, 0xc2, 0x60, 0x65, + 0xce, 0x67, 0x5f, 0xda, 0xef, 0x14, 0x84, 0x59, 0xfa, 0x45, 0x74, 0x61, 0xac, 0xc7, 0x10, 0x5d, + 0x98, 0x6c, 0xe9, 0x29, 0x08, 0x93, 0x8f, 0x3d, 0x40, 0x90, 0x61, 0x56, 0xce, 0x10, 0x05, 0x61, + 0xa0, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x3e, 0xd6, 0x7e, 0xa7, 0x20, 0x8c, 0xc8, 0xbb, 0x52, + 0x10, 0x06, 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, 0x50, 0x10, 0x06, 0x09, 0x49, 0x73, + 0x79, 0x29, 0x08, 0x53, 0x5a, 0x09, 0x89, 0x82, 0x30, 0x28, 0x47, 0x39, 0x26, 0xf1, 0x14, 0x84, + 0x81, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x45, 0x23, 0xf5, 0x14, 0x84, 0x29, 0x32, 0xdf, 0xe6, 0xca, + 0xb6, 0xb4, 0x7c, 0x9b, 0x82, 0x30, 0x30, 0x6e, 0xfb, 0x8c, 0x9b, 0x82, 0x30, 0xaa, 0xd9, 0x2e, + 0x34, 0x4d, 0x55, 0xa1, 0x2f, 0x34, 0x4d, 0xcd, 0xaa, 0xdf, 0x43, 0x8c, 0x7c, 0x2a, 0x7e, 0x0d, + 0x31, 0xf2, 0x02, 0x87, 0x81, 0x18, 0x79, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x53, 0xfb, 0x9d, + 0x18, 0x79, 0x04, 0x17, 0x04, 0x17, 0x04, 0x17, 0xa5, 0xa5, 0x27, 0x46, 0x1e, 0xdd, 0xc5, 0xe0, + 0x19, 0x22, 0x46, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, 0x62, 0xe4, + 0x45, 0xde, 0x95, 0x18, 0x79, 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, 0x8c, 0x3c, + 0x12, 0x92, 0xe6, 0xf2, 0x12, 0x23, 0x5f, 0x5a, 0x09, 0x89, 0x18, 0x79, 0x94, 0xa3, 0x1c, 0x93, + 0x78, 0x62, 0xe4, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x7d, 0xd1, 0x48, 0x3d, 0x31, 0xf2, 0x45, 0xe6, + 0xdb, 0x5c, 0xd9, 0x96, 0x96, 0x6f, 0x13, 0x23, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x91, 0x17, + 0x89, 0x91, 0xa7, 0x59, 0xaa, 0xa9, 0x45, 0x34, 0xbf, 0x78, 0x16, 0x9b, 0xa4, 0x66, 0xa9, 0x3b, + 0xaa, 0x56, 0x2f, 0x50, 0x89, 0xfc, 0x09, 0xd1, 0xbc, 0x09, 0xf1, 0x26, 0x22, 0x55, 0x9a, 0x88, + 0x64, 0xc0, 0x97, 0xa5, 0x89, 0x48, 0xfc, 0x37, 0xa2, 0x67, 0xdf, 0x16, 0x3d, 0xfb, 0x48, 0xc8, + 0x22, 0x21, 0x2b, 0x2f, 0x74, 0x9f, 0x9e, 0x7d, 0x90, 0x7c, 0x93, 0x24, 0x5f, 0xc0, 0x29, 0x7b, + 0xca, 0x49, 0x23, 0x6e, 0xa1, 0xf5, 0x30, 0xb2, 0x0e, 0x15, 0x2d, 0x4f, 0x23, 0x89, 0x5f, 0xa5, + 0xb6, 0xd6, 0xc9, 0x57, 0x4a, 0x61, 0x95, 0x2a, 0x7e, 0xf7, 0xe1, 0xc0, 0x69, 0xbb, 0xdf, 0xbd, + 0xb6, 0xd7, 0x9a, 0xce, 0x8c, 0xea, 0x5a, 0x4d, 0x81, 0x6e, 0xe5, 0xa8, 0x8a, 0x7b, 0x48, 0xcf, + 0x83, 0xd2, 0x26, 0x34, 0x12, 0x04, 0x46, 0x8e, 0xb0, 0x48, 0x11, 0x14, 0x71, 0x42, 0x22, 0x4e, + 0x40, 0x44, 0x09, 0x87, 0x5d, 0xd4, 0xd3, 0xf5, 0x78, 0xe8, 0x8d, 0x8a, 0xac, 0x81, 0xac, 0x51, + 0x16, 0x59, 0x83, 0xde, 0xa8, 0xc8, 0x0c, 0xc8, 0x0c, 0xe5, 0x93, 0x19, 0xa8, 0xfb, 0x62, 0x58, + 0xcb, 0x34, 0x06, 0x36, 0x26, 0x41, 0xc7, 0x3c, 0xf8, 0x98, 0x06, 0x21, 0x6b, 0x60, 0x64, 0x0d, + 0x94, 0xac, 0x80, 0x93, 0x2c, 0x48, 0x09, 0x83, 0xd5, 0x74, 0x06, 0xa8, 0xfb, 0xb2, 0x72, 0x68, + 0x82, 0x08, 0xed, 0xc3, 0xfa, 0xd2, 0x63, 0x08, 0x22, 0x4c, 0xb6, 0xf4, 0xd4, 0x7d, 0xc9, 0xc7, + 0x1e, 0x20, 0x96, 0x30, 0x2b, 0x67, 0x88, 0xba, 0x2f, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, + 0x1f, 0x6b, 0xbf, 0x53, 0xf7, 0x45, 0xe4, 0x5d, 0xa9, 0xfb, 0x82, 0x39, 0xc0, 0x1c, 0x60, 0x0e, + 0xf2, 0x6e, 0x0e, 0xa8, 0xfb, 0x82, 0x84, 0xa4, 0xb9, 0xbc, 0xd4, 0x7d, 0x29, 0xad, 0x84, 0x44, + 0xdd, 0x17, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0xea, 0xbe, 0x40, 0xea, 0x21, 0xf5, 0x90, 0xfa, 0xa2, + 0x91, 0x7a, 0xea, 0xbe, 0x14, 0x99, 0x6f, 0x73, 0x65, 0x5b, 0x5a, 0xbe, 0x4d, 0xdd, 0x17, 0x18, + 0xb7, 0x7d, 0xc6, 0x4d, 0xdd, 0x97, 0x64, 0xd9, 0x6c, 0x4b, 0x59, 0x56, 0xf4, 0x48, 0x55, 0xa2, + 0x31, 0xf4, 0x48, 0xcd, 0xaa, 0xff, 0x43, 0xac, 0x7c, 0x2a, 0xfe, 0x0d, 0xb1, 0xf2, 0x02, 0x87, 0x81, 0x58, 0x79, 0xc4, 0x17, 0xc4, 0x17, 0xc4, 0x17, 0x53, 0xfb, 0x9d, 0x58, 0x79, 0x84, 0x17, 0x84, 0x17, 0x84, 0x17, 0xa5, 0xa5, 0x27, 0x56, 0x1e, 0xfd, 0xc5, 0xe0, 0x19, 0x22, 0x56, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, 0x62, 0xe5, 0x45, 0xde, 0x95, 0x58, 0x79, 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, 0xac, 0x3c, 0x12, 0x92, 0xe6, 0xf2, 0x12, 0x2b, 0x5f, 0x5a, 0x09, 0x89, 0x58, 0x79, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0x62, 0xe5, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x7d, 0xd1, 0x48, 0x3d, 0xb1, 0xf2, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, - 0x96, 0x6f, 0x13, 0x2b, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x95, 0x17, 0x8d, 0x95, 0xa7, 0xc3, - 0x93, 0xa9, 0xc5, 0xb4, 0xb7, 0x88, 0x96, 0x7b, 0x3c, 0x1d, 0x7c, 0x9e, 0x7c, 0x0b, 0xba, 0x3c, - 0x65, 0x71, 0x6f, 0x58, 0xea, 0xf3, 0xf4, 0xbc, 0x0d, 0x72, 0xd2, 0xe9, 0x69, 0xd2, 0x06, 0x4b, - 0xb2, 0xcf, 0x93, 0x5e, 0x6b, 0x2d, 0xba, 0x3c, 0x99, 0xd0, 0x2f, 0xe8, 0xf2, 0x64, 0x10, 0x00, - 0xe9, 0xf2, 0x64, 0x5b, 0xa4, 0xa4, 0xcb, 0x13, 0x5d, 0x9e, 0x2c, 0x33, 0x61, 0xba, 0x3c, 0x65, - 0xe1, 0xe0, 0x9b, 0x00, 0x00, 0x73, 0x40, 0x60, 0x0a, 0x10, 0x8c, 0x03, 0x83, 0x71, 0x80, 0x30, - 0x0a, 0x14, 0xd9, 0xd4, 0x45, 0xc8, 0x5c, 0xb5, 0x24, 0x9a, 0x72, 0x15, 0x6a, 0x15, 0x84, 0xac, - 0x81, 0x91, 0x35, 0x50, 0xb2, 0x02, 0x4e, 0xb2, 0x20, 0x25, 0x0c, 0x56, 0xd3, 0x19, 0x20, 0x73, - 0x75, 0xe5, 0xd0, 0x5c, 0x83, 0xda, 0x87, 0xf5, 0xa5, 0xc7, 0x70, 0x0d, 0x9a, 0x6c, 0xe9, 0xc9, - 0x5c, 0xcd, 0xc7, 0x1e, 0xe0, 0x36, 0x34, 0x2b, 0x67, 0x88, 0xcc, 0x55, 0xa8, 0x3c, 0x54, 0x1e, - 0x2a, 0x0f, 0x95, 0x8f, 0xb5, 0xdf, 0xc9, 0x5c, 0x15, 0x79, 0x57, 0x32, 0x57, 0x31, 0x07, 0x98, - 0x03, 0xcc, 0x41, 0xde, 0xcd, 0x01, 0x99, 0xab, 0x48, 0x48, 0x9a, 0xcb, 0x4b, 0xe6, 0x6a, 0x69, - 0x25, 0x24, 0x32, 0x57, 0x51, 0x8e, 0x72, 0x4c, 0xe2, 0xc9, 0x5c, 0x85, 0xd4, 0x43, 0xea, 0x21, - 0xf5, 0x45, 0x23, 0xf5, 0x64, 0xae, 0x16, 0x99, 0x6f, 0x73, 0x65, 0x5b, 0x5a, 0xbe, 0x4d, 0xe6, - 0x2a, 0x8c, 0xdb, 0x3e, 0xe3, 0x26, 0x73, 0x55, 0x2d, 0xb1, 0x6d, 0x9c, 0x63, 0x45, 0x8f, 0x27, - 0x25, 0x12, 0x43, 0x8f, 0xa7, 0xac, 0x7a, 0x3f, 0x44, 0xca, 0xa7, 0xe2, 0xdd, 0x10, 0x29, 0x2f, - 0x70, 0x18, 0x88, 0x94, 0x47, 0x7a, 0x41, 0x7a, 0x41, 0x7a, 0x31, 0xb5, 0xdf, 0x89, 0x94, 0x47, - 0x76, 0x41, 0x76, 0x41, 0x76, 0x51, 0x5a, 0x7a, 0x22, 0xe5, 0x51, 0x5f, 0x0c, 0x9e, 0x21, 0x22, - 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x3e, 0xd6, 0x7e, 0x27, 0x52, 0x5e, 0xe4, 0x5d, - 0x89, 0x94, 0xc7, 0x1c, 0x60, 0x0e, 0x30, 0x07, 0x79, 0x37, 0x07, 0x44, 0xca, 0x23, 0x21, 0x69, - 0x2e, 0x2f, 0x91, 0xf2, 0xa5, 0x95, 0x90, 0x88, 0x94, 0x47, 0x39, 0xca, 0x31, 0x89, 0x27, 0x52, - 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x17, 0x8d, 0xd4, 0x13, 0x29, 0x5f, 0x64, 0xbe, 0xcd, 0x95, - 0x6d, 0x69, 0xf9, 0x36, 0x91, 0xf2, 0x30, 0x6e, 0xfb, 0x8c, 0x9b, 0x48, 0x79, 0xc1, 0x48, 0x79, - 0x3a, 0x3c, 0x99, 0x5a, 0x4a, 0x5b, 0x4b, 0x68, 0xbb, 0xbf, 0xd3, 0x97, 0x80, 0xee, 0x4e, 0x59, - 0xeb, 0xee, 0xa4, 0xd7, 0x68, 0x48, 0x75, 0x0b, 0x64, 0xb9, 0xb3, 0x53, 0x2f, 0x8c, 0x3c, 0xa7, - 0xdb, 0x69, 0xfb, 0xcd, 0xc7, 0xc1, 0x14, 0xd5, 0xf4, 0xfb, 0x3a, 0x2d, 0x8d, 0x48, 0x57, 0x27, - 0xba, 0x3a, 0xa5, 0xa4, 0x34, 0xd0, 0xd5, 0x89, 0xae, 0x4e, 0xe9, 0xc9, 0x8e, 0x74, 0x75, 0xa2, - 0xab, 0xd3, 0xfa, 0x81, 0xe8, 0xea, 0x24, 0x31, 0x20, 0xb9, 0xaa, 0xe4, 0xaa, 0xe6, 0x4b, 0x09, - 0x21, 0x57, 0xd5, 0x92, 0x4c, 0xca, 0xe5, 0xa7, 0x55, 0x10, 0xb2, 0x06, 0x46, 0xd6, 0x40, 0xc9, - 0x0a, 0x38, 0xc9, 0x82, 0x94, 0x30, 0x58, 0x4d, 0x67, 0x80, 0x5c, 0xd5, 0x95, 0x43, 0x73, 0xf1, - 0x69, 0x1f, 0xd6, 0x97, 0x1e, 0xc3, 0xc5, 0x67, 0xb2, 0xa5, 0x27, 0x57, 0x35, 0x1f, 0x7b, 0x80, - 0xfb, 0xcf, 0xac, 0x9c, 0x21, 0x72, 0x55, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x3e, 0xd6, - 0x7e, 0x27, 0x57, 0x55, 0xe4, 0x5d, 0xc9, 0x55, 0xc5, 0x1c, 0x60, 0x0e, 0x30, 0x07, 0x79, 0x37, - 0x07, 0xe4, 0xaa, 0x22, 0x21, 0x69, 0x2e, 0x2f, 0xb9, 0xaa, 0xa5, 0x95, 0x90, 0xc8, 0x55, 0x45, - 0x39, 0xca, 0x31, 0x89, 0x27, 0x57, 0x15, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x17, 0x8d, 0xd4, 0x93, - 0xab, 0x5a, 0x64, 0xbe, 0xcd, 0x95, 0x6d, 0x69, 0xf9, 0x36, 0xb9, 0xaa, 0x30, 0x6e, 0xfb, 0x8c, - 0x9b, 0x5c, 0xd5, 0x04, 0x09, 0x6d, 0x8b, 0x19, 0x56, 0xf4, 0x74, 0x52, 0xa2, 0x30, 0xf4, 0x74, - 0xca, 0xaa, 0xef, 0x43, 0x9c, 0x7c, 0x2a, 0xbe, 0x0d, 0x71, 0xf2, 0x02, 0x87, 0x81, 0x38, 0x79, - 0x84, 0x17, 0x84, 0x17, 0x84, 0x17, 0x53, 0xfb, 0x9d, 0x38, 0x79, 0x44, 0x17, 0x44, 0x17, 0x44, - 0x17, 0xa5, 0xa5, 0x27, 0x4e, 0x1e, 0xed, 0xc5, 0xe0, 0x19, 0x22, 0x4e, 0x1e, 0x2a, 0x0f, 0x95, - 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, 0xe2, 0xe4, 0x45, 0xde, 0x95, 0x38, 0x79, 0xcc, 0x01, - 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, 0x9c, 0x3c, 0x12, 0x92, 0xe6, 0xf2, 0x12, 0x27, 0x5f, - 0x5a, 0x09, 0x89, 0x38, 0x79, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0xe2, 0xe4, 0x21, 0xf5, 0x90, 0x7a, - 0x48, 0x7d, 0xd1, 0x48, 0x3d, 0x71, 0xf2, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, 0x96, 0x6f, 0x13, - 0x27, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x93, 0x17, 0x8b, 0x93, 0xa7, 0xa3, 0x93, 0xa9, 0x85, - 0xb4, 0xb3, 0x80, 0x96, 0xfa, 0x39, 0x5d, 0x86, 0x91, 0xd7, 0x18, 0x7e, 0x85, 0x93, 0xee, 0x43, - 0x8d, 0x6e, 0x4e, 0x59, 0xdb, 0x13, 0x86, 0x7b, 0x39, 0xcd, 0x2f, 0x7f, 0x8e, 0x3a, 0x39, 0x1d, - 0x88, 0x77, 0x72, 0x3a, 0xa0, 0x93, 0x13, 0x9d, 0x9c, 0xd2, 0xd2, 0x17, 0xe8, 0xe4, 0x44, 0x27, - 0xa7, 0xf4, 0xc4, 0x46, 0x3a, 0x39, 0xd1, 0xc9, 0x69, 0xfd, 0x40, 0x74, 0x72, 0x92, 0x18, 0x90, - 0x0c, 0x55, 0x32, 0x54, 0xf3, 0xa5, 0x7f, 0x90, 0xa1, 0x6a, 0x49, 0x1c, 0xe5, 0xca, 0xd3, 0x2a, - 0x08, 0x59, 0x03, 0x23, 0x6b, 0xa0, 0x64, 0x05, 0x9c, 0x64, 0x41, 0x4a, 0x18, 0xac, 0xa6, 0x33, - 0x40, 0x86, 0xea, 0xca, 0xa1, 0xb9, 0xee, 0xb4, 0x0f, 0xeb, 0x4b, 0x8f, 0xe1, 0xba, 0x33, 0xd9, - 0xd2, 0x93, 0xa1, 0x9a, 0x8f, 0x3d, 0xc0, 0xad, 0x67, 0x56, 0xce, 0x10, 0x19, 0xaa, 0x50, 0x79, - 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x93, 0xa1, 0x2a, 0xf2, 0xae, 0x64, 0xa8, 0x62, - 0x0e, 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, 0x32, 0x54, 0x91, 0x90, 0x34, 0x97, 0x97, 0x0c, - 0xd5, 0xd2, 0x4a, 0x48, 0x64, 0xa8, 0xa2, 0x1c, 0xe5, 0x98, 0xc4, 0x93, 0xa1, 0x0a, 0xa9, 0x87, - 0xd4, 0x43, 0xea, 0x8b, 0x46, 0xea, 0xc9, 0x50, 0x2d, 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, - 0x9b, 0x0c, 0x55, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0x86, 0xaa, 0x7a, 0x32, 0xdb, 0x01, 0x9d, 0x9c, - 0x94, 0x28, 0x0c, 0x9d, 0x9c, 0xb2, 0xea, 0xfb, 0x10, 0x27, 0x9f, 0x8a, 0x6f, 0x43, 0x9c, 0xbc, - 0xc0, 0x61, 0x20, 0x4e, 0x1e, 0xe1, 0x05, 0xe1, 0x05, 0xe1, 0xc5, 0xd4, 0x7e, 0x27, 0x4e, 0x1e, - 0xd1, 0x05, 0xd1, 0x05, 0xd1, 0x45, 0x69, 0xe9, 0x89, 0x93, 0x47, 0x7b, 0x31, 0x78, 0x86, 0x88, - 0x93, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, 0x9d, 0x38, 0x79, 0x91, 0x77, - 0x25, 0x4e, 0x1e, 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, 0x10, 0x27, 0x8f, 0x84, 0xa4, - 0xb9, 0xbc, 0xc4, 0xc9, 0x97, 0x56, 0x42, 0x22, 0x4e, 0x1e, 0xe5, 0x28, 0xc7, 0x24, 0x9e, 0x38, - 0x79, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0x9c, 0x7c, 0x91, 0xf9, 0x36, 0x57, - 0xb6, 0xa5, 0xe5, 0xdb, 0xc4, 0xc9, 0xc3, 0xb8, 0xed, 0x33, 0x6e, 0xe2, 0xe4, 0xc5, 0xe2, 0xe4, - 0xe9, 0xe4, 0x64, 0x6a, 0x21, 0xed, 0x2c, 0x60, 0x1a, 0x9d, 0x9c, 0x0e, 0xe8, 0xe4, 0x94, 0xb5, - 0x3d, 0x61, 0xb3, 0x93, 0xd3, 0x41, 0xa6, 0x3b, 0x39, 0x69, 0x65, 0xc9, 0x88, 0x64, 0xc5, 0x88, - 0xf5, 0x6c, 0xaa, 0xd2, 0xb3, 0xc9, 0xa0, 0xf2, 0x40, 0xcf, 0xa6, 0xe7, 0x6f, 0xae, 0xdd, 0xb3, - 0x69, 0xc0, 0x9d, 0x1f, 0x3c, 0xb9, 0x6e, 0x4d, 0xe3, 0xf1, 0x64, 0xfa, 0x34, 0xed, 0xd0, 0xa7, - 0x29, 0x05, 0xe9, 0x90, 0x3e, 0x4d, 0x19, 0xe0, 0xb4, 0x62, 0xd2, 0x9e, 0x81, 0x70, 0x2d, 0xa1, - 0xf0, 0x2c, 0x0d, 0x0a, 0xa9, 0x61, 0xd5, 0x26, 0x4c, 0xcc, 0x19, 0xf3, 0x26, 0x29, 0xdc, 0x9b, - 0x1b, 0x16, 0xf8, 0x03, 0xfe, 0x80, 0xbf, 0x4c, 0xc1, 0x9f, 0xdf, 0xf2, 0x82, 0xc8, 0x8f, 0x1e, - 0x43, 0xef, 0x56, 0x12, 0x02, 0x05, 0xee, 0x2e, 0x2a, 0x27, 0xe3, 0xaf, 0xf6, 0xde, 0xed, 0x19, - 0xa8, 0x13, 0x70, 0xfc, 0xe9, 0xe4, 0xe6, 0x72, 0xf0, 0x8f, 0xab, 0x3f, 0x1a, 0x75, 0xa9, 0xad, - 0x3c, 0x94, 0x77, 0x7b, 0xa2, 0xf7, 0x2b, 0x86, 0xae, 0xca, 0x4f, 0x1a, 0x5f, 0x0f, 0x6e, 0x4e, - 0x8f, 0xdf, 0xd7, 0x4f, 0xeb, 0x1f, 0x6f, 0xbe, 0x9c, 0x9d, 0x7c, 0x38, 0xbe, 0xbc, 0xaa, 0x64, - 0x31, 0x86, 0xc0, 0xd0, 0xfb, 0x5f, 0x5e, 0x5c, 0xd5, 0x6f, 0x1a, 0xe7, 0xa7, 0x27, 0x1f, 0xfe, - 0xb8, 0x19, 0xcc, 0x45, 0x99, 0xde, 0xfd, 0xf4, 0xe4, 0xec, 0x5f, 0x97, 0x57, 0xc7, 0x57, 0xf5, - 0x32, 0xbd, 0xf4, 0x49, 0xe3, 0x6b, 0xad, 0x8c, 0x1b, 0xfd, 0xb4, 0xfa, 0xb5, 0x71, 0x76, 0x53, - 0xff, 0xda, 0x38, 0x2b, 0xe5, 0x16, 0xbf, 0xb9, 0x6c, 0x7c, 0x2a, 0xe7, 0x8b, 0x97, 0x6d, 0xc5, - 0xf7, 0x06, 0xfb, 0xbc, 0xdc, 0xa7, 0xfc, 0x6b, 0xe3, 0xf4, 0xb2, 0x94, 0x6b, 0x7e, 0x50, 0xc6, - 0x35, 0x1f, 0xee, 0xf5, 0x12, 0x53, 0xb8, 0x99, 0xd5, 0xff, 0xfc, 0xe5, 0xf4, 0xaa, 0xbc, 0xef, - 0x5f, 0x2b, 0xe7, 0xfb, 0x2f, 0x50, 0xf8, 0x5a, 0x99, 0xde, 0xfd, 0x6b, 0xe3, 0xec, 0x6b, 0xed, - 0xe6, 0xd3, 0xe9, 0xf9, 0xbf, 0x2f, 0x1b, 0xf5, 0x0f, 0x25, 0x43, 0xbd, 0xf2, 0xa2, 0xbd, 0x81, - 0x05, 0x17, 0x19, 0xe9, 0x3a, 0x6d, 0x5d, 0x2d, 0x15, 0xcd, 0xdc, 0x0b, 0xdc, 0xef, 0x6d, 0xaf, - 0x25, 0xa7, 0x96, 0x4f, 0x06, 0xd4, 0x54, 0x09, 0x85, 0xab, 0x5c, 0xa0, 0xbb, 0x27, 0x1a, 0x11, - 0xdd, 0x1d, 0xdd, 0x7d, 0xf3, 0x7e, 0xe3, 0xda, 0x71, 0x6b, 0x5c, 0x5a, 0x48, 0xa6, 0x72, 0xe7, - 0x6c, 0x09, 0x21, 0x89, 0x2a, 0x9d, 0x42, 0xa5, 0x7f, 0x01, 0x3d, 0x40, 0x2f, 0xaf, 0xa0, 0x27, - 0x55, 0xaa, 0xb7, 0xe2, 0x07, 0xbd, 0xc8, 0x6d, 0x4b, 0x30, 0xa5, 0xa5, 0x1d, 0xfc, 0x3c, 0xb4, - 0x6c, 0xc5, 0xef, 0x1d, 0xe9, 0x8a, 0xdf, 0x3b, 0x54, 0xfc, 0x16, 0x74, 0x8a, 0xa8, 0xf8, 0x6d, - 0xde, 0xa7, 0x93, 0xca, 0x27, 0x11, 0xcf, 0xc6, 0x34, 0x57, 0x34, 0xd7, 0x40, 0xb1, 0x5c, 0x43, - 0x19, 0x97, 0x06, 0x72, 0x5b, 0x4d, 0x66, 0x58, 0x1a, 0x4e, 0xaf, 0x33, 0x9d, 0x51, 0x69, 0x23, - 0x99, 0xce, 0x40, 0x06, 0xa5, 0xd1, 0xcc, 0x49, 0x5b, 0x4b, 0x6a, 0xba, 0xb8, 0xad, 0x95, 0xb5, - 0xcd, 0x68, 0xe2, 0xe1, 0x75, 0x81, 0xda, 0xc9, 0x84, 0x5e, 0xd3, 0xf3, 0x1f, 0x4c, 0x70, 0xcc, - 0xe9, 0xc8, 0x50, 0x4c, 0x28, 0x26, 0x14, 0x13, 0x8a, 0x09, 0xc5, 0x84, 0x62, 0x42, 0x31, 0xa1, - 0x98, 0x50, 0xcc, 0x72, 0x52, 0x4c, 0xa7, 0x1b, 0x4e, 0x92, 0xd5, 0xcd, 0xb1, 0xcd, 0xd9, 0x87, - 0x40, 0x3c, 0x21, 0x9e, 0x10, 0x4f, 0x88, 0x27, 0xc4, 0x13, 0xe2, 0x09, 0xf1, 0x84, 0x78, 0x42, - 0x3c, 0xcb, 0x45, 0x3c, 0x7b, 0x23, 0x63, 0x2a, 0xdd, 0x29, 0x7b, 0x30, 0x2a, 0xd4, 0x12, 0x6a, - 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x32, 0x47, 0xd4, - 0x92, 0xf2, 0xb2, 0xab, 0x4a, 0x89, 0x46, 0x6e, 0xe4, 0x6d, 0x0b, 0x85, 0x81, 0x6f, 0xc5, 0x2c, - 0x28, 0xda, 0x98, 0x3c, 0x8e, 0xea, 0xb1, 0x69, 0x2d, 0x79, 0x96, 0xab, 0xb8, 0xf6, 0x7b, 0x9e, - 0x73, 0xdf, 0x6f, 0x47, 0x7e, 0xb7, 0xed, 0x39, 0x83, 0xf7, 0xed, 0xe9, 0x97, 0x74, 0x5d, 0x31, - 0x66, 0xca, 0xf5, 0x5d, 0x77, 0xa8, 0xef, 0x6a, 0xd0, 0xd9, 0xa2, 0xbe, 0xeb, 0xf3, 0x37, 0xd7, - 0xae, 0xef, 0xda, 0x9c, 0xec, 0x59, 0xa1, 0xac, 0xa3, 0xf1, 0x78, 0xe4, 0x1c, 0xd9, 0x53, 0x4b, - 0xc8, 0x39, 0x22, 0xe7, 0x68, 0xfd, 0x40, 0x52, 0xb9, 0xd9, 0x4b, 0xfb, 0x57, 0x26, 0x47, 0xfb, - 0xf9, 0x85, 0x65, 0x73, 0xb5, 0x0d, 0xb9, 0x99, 0x08, 0xb2, 0x08, 0xb2, 0xf6, 0x20, 0x48, 0xd6, - 0x63, 0xcf, 0xbe, 0x20, 0x2b, 0x97, 0x0b, 0xbe, 0xc4, 0x24, 0x76, 0x91, 0x2a, 0x32, 0x2c, 0x55, - 0x2c, 0xbb, 0x70, 0xdb, 0x63, 0x22, 0x99, 0xc7, 0x6a, 0x28, 0x83, 0xb3, 0x2f, 0x57, 0x0a, 0x45, - 0x1f, 0xc1, 0xa1, 0xd3, 0xd0, 0x69, 0xe8, 0xb4, 0xcc, 0x76, 0x13, 0xf2, 0x97, 0xcd, 0xf8, 0xcd, - 0xc2, 0x07, 0x1e, 0xd2, 0x0b, 0xe9, 0x85, 0xf4, 0xca, 0x02, 0xc8, 0x74, 0x40, 0xb7, 0xdd, 0xee, - 0xfc, 0xf5, 0x4c, 0x7a, 0xdc, 0x9e, 0xb9, 0x6e, 0xf0, 0xcb, 0x8f, 0x12, 0xde, 0x06, 0x86, 0x7c, - 0x77, 0x43, 0x3e, 0xbc, 0x31, 0x58, 0x33, 0x09, 0x6f, 0xe6, 0x61, 0xce, 0x34, 0xdc, 0x59, 0x83, - 0x3d, 0x6b, 0xf0, 0x67, 0x05, 0x06, 0x65, 0xe1, 0x50, 0x18, 0x16, 0xcd, 0x69, 0x02, 0x16, 0xb4, - 0x01, 0x43, 0x1a, 0x81, 0xfc, 0x82, 0xd1, 0x16, 0x59, 0x53, 0x4b, 0x18, 0xf8, 0xd0, 0x22, 0x82, - 0x82, 0xa0, 0x0e, 0x24, 0x12, 0x8e, 0xa1, 0xd3, 0x12, 0x75, 0xed, 0x49, 0xd3, 0x69, 0x91, 0x6a, - 0xcd, 0x13, 0xa9, 0xe2, 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe0, - 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe0, 0x89, 0xe4, 0xc4, 0x13, 0xd1, 0x88, 0xd2, 0x35, 0xe0, 0x88, - 0x70, 0x21, 0x1d, 0x7f, 0xe9, 0x2c, 0x05, 0xd1, 0x7f, 0xe9, 0x79, 0x9f, 0xc7, 0x0f, 0x6f, 0x0c, - 0x9e, 0x7d, 0x53, 0xd7, 0x06, 0xf2, 0x74, 0xae, 0xc2, 0x65, 0x3c, 0x54, 0x51, 0xcf, 0x54, 0xfc, - 0x32, 0xbc, 0xca, 0x65, 0x78, 0x06, 0x28, 0x17, 0x97, 0xe1, 0xf6, 0x3d, 0x48, 0x62, 0x4b, 0x89, - 0x2d, 0x45, 0xdc, 0x42, 0xdc, 0x22, 0xb6, 0x14, 0x2a, 0x9f, 0x2b, 0x2a, 0x2f, 0xe0, 0x80, 0x91, - 0xa1, 0x2a, 0xb5, 0x1a, 0x15, 0x2d, 0xff, 0x22, 0xb1, 0x2f, 0x65, 0x2d, 0x3b, 0xf6, 0x95, 0xc1, - 0xe5, 0x1d, 0xd8, 0xb4, 0xa1, 0x9e, 0x3e, 0x9e, 0x56, 0x67, 0x38, 0x05, 0x09, 0xc7, 0x38, 0xf5, - 0x7b, 0xd1, 0x71, 0x14, 0xa9, 0x71, 0xc1, 0xca, 0x67, 0x3f, 0xa8, 0xb7, 0xbd, 0x81, 0x55, 0xea, - 0x55, 0xde, 0x6d, 0x05, 0xfd, 0x76, 0x5b, 0x21, 0x1d, 0xf8, 0xb3, 0xfb, 0x53, 0x7f, 0x90, 0xf3, - 0xb0, 0xe5, 0x85, 0x5e, 0xeb, 0xfd, 0xe3, 0x78, 0x08, 0xa3, 0x13, 0xaf, 0x79, 0x9e, 0xa4, 0xce, - 0x91, 0xc2, 0xa1, 0x89, 0x71, 0x58, 0x92, 0x9d, 0x8d, 0xf8, 0x3b, 0x3c, 0xde, 0x4f, 0xc6, 0x5c, - 0x0a, 0xd5, 0x25, 0xd0, 0x9c, 0xfa, 0x78, 0x73, 0xb3, 0xf9, 0x4d, 0x63, 0xbc, 0x65, 0xc5, 0xed, - 0x76, 0xdb, 0x8f, 0x49, 0x0b, 0xeb, 0x3e, 0x5f, 0xb2, 0xcd, 0x7e, 0x3a, 0xe6, 0x9c, 0x26, 0x13, - 0x45, 0x12, 0x7b, 0x2a, 0x2a, 0x9e, 0xc8, 0xac, 0xa7, 0x11, 0x76, 0x3b, 0xed, 0x04, 0x5b, 0x5e, - 0xd5, 0x95, 0xd0, 0x76, 0x15, 0xb4, 0x5d, 0x81, 0x45, 0xaa, 0x3f, 0x7c, 0xf1, 0x94, 0xce, 0x59, - 0x52, 0x99, 0x40, 0x35, 0x36, 0x5e, 0x2f, 0x06, 0x5e, 0x51, 0xcf, 0x53, 0x76, 0xb6, 0x75, 0x9c, - 0x6a, 0x8d, 0x2d, 0x2d, 0xe5, 0x25, 0x8b, 0x79, 0xc3, 0x62, 0x5e, 0xaf, 0xde, 0x96, 0xb7, 0x43, - 0xb7, 0x54, 0x15, 0xb3, 0x4a, 0x6b, 0xa4, 0x3c, 0x39, 0xde, 0xcf, 0x6e, 0x27, 0x8c, 0x74, 0x6b, - 0xa5, 0x4f, 0xf7, 0xcf, 0xea, 0x61, 0x55, 0x6b, 0x48, 0x3c, 0xab, 0x63, 0x17, 0xf5, 0xff, 0x5b, - 0xff, 0x70, 0x75, 0x73, 0x71, 0xfe, 0xe5, 0xaa, 0xae, 0x59, 0x44, 0x65, 0xa7, 0x20, 0x45, 0x54, - 0x14, 0xcf, 0xa9, 0xb4, 0xaa, 0x95, 0xbf, 0x2a, 0x2a, 0x6a, 0xe7, 0x38, 0x1d, 0x2f, 0x59, 0x5b, - 0x76, 0x5a, 0x3a, 0x99, 0xa3, 0x23, 0xe9, 0x44, 0x83, 0x81, 0x35, 0x76, 0xcf, 0xc4, 0xb8, 0xd5, - 0x34, 0xc6, 0xa8, 0x07, 0xfd, 0xfb, 0xc1, 0xcb, 0x3d, 0x65, 0xb8, 0x2e, 0xd4, 0x64, 0xda, 0xfc, - 0x7b, 0x23, 0x38, 0x39, 0x3f, 0x2c, 0x38, 0x09, 0x4e, 0x82, 0x93, 0xe0, 0x64, 0x0e, 0x71, 0x52, - 0x98, 0x47, 0x8a, 0xf0, 0x47, 0x80, 0x0c, 0x20, 0x2b, 0x2f, 0x90, 0xb5, 0x3d, 0xf7, 0x36, 0xf4, - 0x6e, 0x25, 0xc0, 0x4b, 0xa3, 0x6c, 0x78, 0xa5, 0x31, 0x95, 0x35, 0x47, 0x0b, 0xf1, 0x2e, 0xec, - 0xf4, 0x23, 0x3f, 0xb8, 0x1b, 0x9f, 0xed, 0xe9, 0x1f, 0x8f, 0xf1, 0xb6, 0xe5, 0xdd, 0xfa, 0x81, - 0x1f, 0xf9, 0x9d, 0xa0, 0xb7, 0xfe, 0xaf, 0xa6, 0x7f, 0x33, 0xd4, 0x8c, 0xad, 0xae, 0x8f, 0xd6, - 0xdd, 0xc4, 0x74, 0x14, 0x89, 0x3b, 0x8a, 0xe7, 0xc1, 0x04, 0xee, 0x2a, 0xa6, 0x83, 0xcd, 0xde, - 0x59, 0x08, 0x05, 0xc7, 0xf5, 0x7b, 0x5e, 0xa8, 0x0b, 0x11, 0x82, 0x21, 0x18, 0xb3, 0xf8, 0xd5, - 0x19, 0xbd, 0xad, 0xf3, 0x5d, 0xa2, 0x83, 0x9b, 0x91, 0x70, 0x8b, 0x39, 0x2c, 0x1b, 0xce, 0x64, - 0xbe, 0x6e, 0x87, 0xad, 0x90, 0x0f, 0x61, 0xe7, 0x4c, 0xc4, 0x29, 0x83, 0x7c, 0x40, 0x3e, 0x20, - 0x1f, 0x90, 0x0f, 0xc8, 0x07, 0xe4, 0x03, 0xf2, 0x91, 0x17, 0xf2, 0x51, 0xc0, 0x10, 0x9d, 0x99, - 0xa0, 0x0b, 0xa5, 0x52, 0x13, 0x09, 0xa2, 0x69, 0x12, 0x04, 0x42, 0xa8, 0x25, 0xe0, 0x68, 0x25, - 0xdc, 0x68, 0x5f, 0xc8, 0x57, 0xb9, 0x90, 0x4f, 0x15, 0x9a, 0xb8, 0x90, 0x4f, 0xbe, 0x7f, 0xb8, - 0x90, 0xc7, 0x45, 0xc2, 0x45, 0xca, 0xa2, 0x8b, 0xc4, 0x45, 0x13, 0x17, 0xf2, 0xe0, 0x24, 0x38, - 0x09, 0x4e, 0x82, 0x93, 0x06, 0x70, 0x92, 0x0b, 0x79, 0x80, 0x0c, 0x20, 0xcb, 0x12, 0x90, 0xa1, - 0x89, 0x9b, 0x58, 0x1f, 0x34, 0xf1, 0xc4, 0x1b, 0x11, 0x4d, 0x5c, 0x0a, 0xcb, 0xb8, 0x90, 0x5f, - 0x3d, 0x47, 0x5c, 0xc8, 0x43, 0x3e, 0x20, 0x1f, 0x90, 0x0f, 0xc8, 0x07, 0xe4, 0x03, 0xf2, 0x01, - 0xf9, 0x50, 0x27, 0x1f, 0x05, 0xbf, 0x90, 0x57, 0x28, 0xf8, 0x53, 0x8e, 0xea, 0x16, 0xc9, 0x4b, - 0x45, 0x6c, 0x6d, 0x2a, 0x25, 0x32, 0x18, 0xb2, 0x31, 0x1a, 0xd1, 0x66, 0xc9, 0x8c, 0xde, 0xb0, - 0x9a, 0x90, 0xd3, 0xe9, 0x0e, 0xcd, 0x98, 0x42, 0xd5, 0x8c, 0x85, 0x01, 0x8a, 0x51, 0x38, 0x23, - 0x59, 0x89, 0xbe, 0xe2, 0xd4, 0xcd, 0x48, 0x54, 0x22, 0x8f, 0xb2, 0x19, 0xe6, 0xfd, 0x33, 0xa9, - 0x28, 0x1d, 0xb5, 0x9a, 0x93, 0xc5, 0x0f, 0xd2, 0x51, 0xaa, 0x09, 0x99, 0xd1, 0x18, 0x9d, 0x51, - 0x97, 0x90, 0xce, 0x5f, 0x81, 0x4e, 0x2f, 0x92, 0x85, 0x9e, 0x23, 0xe3, 0xd1, 0xf4, 0x6f, 0x9a, - 0x77, 0x10, 0x46, 0x04, 0x8a, 0xbf, 0x96, 0x57, 0x17, 0xd1, 0x2a, 0xde, 0x9a, 0x57, 0x59, 0xa4, - 0xef, 0x07, 0xd1, 0xaf, 0x02, 0xa2, 0xc8, 0xbe, 0xc6, 0x10, 0x17, 0x6e, 0x70, 0x37, 0xf8, 0x32, - 0xdf, 0xb4, 0x96, 0x53, 0xc0, 0x15, 0xfe, 0xec, 0x07, 0x82, 0xf5, 0xd4, 0x65, 0x4b, 0x50, 0x7f, - 0x75, 0xdb, 0x7d, 0x4f, 0x70, 0xbc, 0x4f, 0xa1, 0xdb, 0x1c, 0xf0, 0xe9, 0x8f, 0xfe, 0x9d, 0x3f, - 0x54, 0x4a, 0x76, 0x32, 0xd1, 0x39, 0xef, 0xb3, 0xfb, 0x33, 0xf3, 0x4b, 0x50, 0xdd, 0xdf, 0xcf, - 0xf0, 0x22, 0xa4, 0x24, 0x88, 0x5c, 0x67, 0x39, 0x64, 0xce, 0xef, 0xb9, 0xdf, 0xdb, 0x9e, 0xd3, - 0xf5, 0xbc, 0xd0, 0x71, 0x7b, 0xce, 0xad, 0xdf, 0x8e, 0xbc, 0x50, 0x20, 0x66, 0x6e, 0xf5, 0xb8, - 0xfa, 0x54, 0x46, 0xa7, 0x16, 0x3e, 0x74, 0x06, 0x3a, 0x53, 0x5a, 0x3a, 0xa3, 0x5f, 0x4b, 0x5e, - 0xb3, 0x76, 0xbc, 0x1d, 0x40, 0x0b, 0xbd, 0x6e, 0xdb, 0x6d, 0x4e, 0x81, 0x47, 0x1f, 0xc9, 0x16, - 0x07, 0x04, 0xc2, 0x80, 0x30, 0x20, 0x0c, 0x08, 0xcb, 0x82, 0x5a, 0x95, 0xce, 0x25, 0xd5, 0xfc, - 0xa5, 0x03, 0x89, 0xa3, 0x79, 0x4c, 0x1c, 0x45, 0x92, 0x16, 0xc4, 0x55, 0x24, 0xe9, 0xe4, 0x24, - 0x08, 0x49, 0x1a, 0x02, 0x04, 0x01, 0x4a, 0xb8, 0x5f, 0x90, 0xa4, 0x67, 0xf5, 0x50, 0x24, 0x69, - 0x2d, 0x3d, 0x13, 0x49, 0x3a, 0x03, 0x8b, 0x80, 0x24, 0xbd, 0x34, 0xcd, 0x48, 0xd2, 0xd0, 0x19, - 0xe8, 0x0c, 0x7a, 0x4e, 0x36, 0xf5, 0x1c, 0x24, 0x69, 0x20, 0x0c, 0x08, 0x03, 0xc2, 0x90, 0xa4, - 0xd7, 0x6c, 0x8a, 0x2c, 0x48, 0xd2, 0xa4, 0x4e, 0xc4, 0x9a, 0x27, 0xa9, 0xec, 0x89, 0x5e, 0xc3, - 0x8d, 0x7e, 0x9c, 0x8f, 0xc7, 0xb4, 0x98, 0x3f, 0x91, 0x30, 0x08, 0x5d, 0x2d, 0xf8, 0x9c, 0x6c, - 0x89, 0x2d, 0xb2, 0x25, 0x16, 0x88, 0x53, 0xd2, 0x6c, 0x09, 0xb7, 0x1f, 0xfd, 0x70, 0xba, 0x6e, - 0xaf, 0x37, 0x9e, 0x42, 0xc5, 0x0b, 0xaa, 0xf9, 0x61, 0xd4, 0x2e, 0xaa, 0x76, 0xc8, 0x9d, 0xb0, - 0xc9, 0xbe, 0xca, 0x74, 0x51, 0xa5, 0xcc, 0xaa, 0x9e, 0x1d, 0x9b, 0x49, 0xc6, 0xb7, 0xda, 0x1e, - 0x9f, 0x83, 0xeb, 0x5f, 0x33, 0x70, 0x21, 0xdd, 0xf2, 0x7a, 0xcd, 0xd0, 0xef, 0x2a, 0xb1, 0xa1, - 0x99, 0x22, 0x67, 0xcf, 0x83, 0x70, 0xe6, 0x39, 0xf3, 0x05, 0x3b, 0xf3, 0xbd, 0x28, 0xf4, 0x83, - 0xbb, 0xbc, 0x9f, 0x74, 0x2f, 0x70, 0xbf, 0xb7, 0x3d, 0x0d, 0xdb, 0x3e, 0x19, 0x20, 0x69, 0x70, - 0xc0, 0xb3, 0x86, 0x33, 0xd8, 0x67, 0x00, 0x04, 0x00, 0x51, 0x34, 0x80, 0x50, 0x97, 0x58, 0x14, - 0xa5, 0x15, 0x33, 0x08, 0xd1, 0xee, 0x34, 0xdd, 0xb6, 0x8a, 0xfc, 0xfb, 0x5c, 0xa7, 0x67, 0x32, - 0x02, 0x87, 0x9c, 0x43, 0x5e, 0xb0, 0x43, 0xee, 0xf6, 0x9c, 0xa0, 0x7f, 0xff, 0x5d, 0xe9, 0x3e, - 0x76, 0xb2, 0xc1, 0x15, 0x8a, 0x4f, 0x69, 0x46, 0xb3, 0xe8, 0x15, 0x76, 0x12, 0xb8, 0x23, 0x10, - 0x09, 0x99, 0x90, 0x8a, 0x56, 0x91, 0x0c, 0x90, 0x78, 0xd2, 0x2b, 0x73, 0x95, 0xb9, 0xa9, 0xad, - 0x55, 0x8f, 0x6a, 0x47, 0x07, 0x87, 0xd5, 0xa3, 0xfd, 0x0c, 0xcd, 0xb1, 0xa5, 0x0b, 0x87, 0xeb, - 0x0c, 0x58, 0xdf, 0x89, 0x04, 0xee, 0xb8, 0xad, 0x56, 0xe8, 0xf5, 0x34, 0xac, 0xf0, 0xd2, 0x48, - 0x58, 0x63, 0xac, 0x71, 0xc1, 0xac, 0xb1, 0xdf, 0x55, 0xdc, 0xdd, 0x73, 0xac, 0xfb, 0x48, 0xe1, - 0xb3, 0xe3, 0xef, 0x6e, 0xdd, 0x1c, 0x3f, 0xbf, 0xf9, 0x43, 0x4d, 0xe3, 0xdd, 0x97, 0xb5, 0x09, - 0xbd, 0x82, 0x98, 0x91, 0x17, 0x06, 0xda, 0xb1, 0xb6, 0x95, 0xff, 0xfc, 0xf2, 0xcb, 0xb7, 0x1d, - 0xe7, 0xe8, 0xfa, 0x9f, 0x6f, 0xbb, 0xce, 0xd1, 0xf5, 0xe8, 0xb7, 0xbb, 0xc3, 0x7f, 0x8d, 0x7e, - 0x5f, 0xfd, 0xb6, 0xe3, 0xd4, 0x26, 0xbf, 0xdf, 0xff, 0xb6, 0xe3, 0xec, 0x5f, 0xbf, 0xfe, 0xf3, - 0xcf, 0xb7, 0xaf, 0xff, 0xde, 0x7b, 0x4a, 0xfe, 0xc1, 0xff, 0xa9, 0xd8, 0x8e, 0x4a, 0x7c, 0x93, - 0xe2, 0x66, 0x39, 0x28, 0xea, 0x66, 0x71, 0x9d, 0xdb, 0x63, 0xe7, 0xd3, 0xf5, 0xdf, 0xbb, 0x6f, - 0x6a, 0x4f, 0xef, 0x5e, 0xff, 0x7d, 0xf8, 0xb4, 0xf8, 0x87, 0xff, 0xac, 0xfa, 0xb1, 0xdd, 0x37, - 0x87, 0x4f, 0xef, 0xd6, 0xfc, 0xcd, 0xc1, 0xd3, 0xbb, 0x98, 0x63, 0xec, 0x3f, 0xfd, 0xb2, 0xf4, - 0xa3, 0x83, 0x3f, 0xaf, 0xae, 0xfb, 0x40, 0x6d, 0xcd, 0x07, 0xf6, 0xd6, 0x7d, 0x60, 0x6f, 0xcd, - 0x07, 0xd6, 0x7e, 0xa5, 0xea, 0x9a, 0x0f, 0xec, 0x3f, 0xfd, 0xb3, 0xf4, 0xf3, 0xbf, 0xac, 0xfe, - 0xd1, 0x83, 0xa7, 0xd7, 0xff, 0xac, 0xfb, 0xbb, 0xc3, 0xa7, 0x7f, 0xde, 0xbd, 0x4e, 0xe1, 0xe8, - 0xe4, 0x92, 0xcb, 0xa9, 0xc6, 0xd1, 0x4d, 0xcf, 0xad, 0x5a, 0xdc, 0x1c, 0xcc, 0x0d, 0xe6, 0x86, - 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x52, 0x5a, 0x1d, 0x65, 0x68, 0x3a, 0xef, 0xc2, 0x4e, - 0xbf, 0xab, 0x69, 0x7e, 0x47, 0x63, 0x60, 0x81, 0xb1, 0xc0, 0x05, 0xb3, 0xc0, 0xea, 0xdd, 0x34, - 0x74, 0xba, 0x68, 0x4c, 0xbb, 0x67, 0xbc, 0x7d, 0xbb, 0x3d, 0xfd, 0xdf, 0xf3, 0x41, 0xeb, 0xcd, - 0xfc, 0x7e, 0xe6, 0xb7, 0x4e, 0xf2, 0xb6, 0x18, 0x06, 0x61, 0x25, 0x52, 0x99, 0xfb, 0x79, 0x54, - 0x51, 0xe8, 0x00, 0x09, 0xa8, 0x00, 0x2a, 0x99, 0x07, 0x15, 0xd5, 0xcd, 0xbd, 0xa5, 0xd9, 0xd6, - 0x54, 0xb1, 0x9d, 0xa9, 0x19, 0x90, 0x08, 0xbd, 0xfb, 0xce, 0x83, 0xe7, 0x74, 0x43, 0xff, 0xc1, - 0x8d, 0x3c, 0x2d, 0x05, 0x60, 0x79, 0x28, 0x40, 0x03, 0xd0, 0x28, 0x18, 0x68, 0x2c, 0x6d, 0xf2, - 0x71, 0xde, 0x8f, 0x0e, 0x86, 0x28, 0xb8, 0x5d, 0x95, 0x93, 0x96, 0x17, 0x44, 0x7e, 0xf4, 0xf8, - 0xde, 0xed, 0x79, 0xfa, 0xc9, 0xaf, 0x17, 0xf5, 0xcf, 0xe7, 0x5f, 0xeb, 0x37, 0x8d, 0x8b, 0x93, - 0xaf, 0xc7, 0x57, 0xf5, 0x9b, 0xe3, 0xcb, 0x9b, 0xf3, 0xc6, 0xd5, 0xc9, 0xf9, 0x99, 0xea, 0x96, - 0x1a, 0x7a, 0x96, 0x3d, 0x2d, 0xdd, 0x5c, 0xa8, 0xfd, 0xd5, 0xcc, 0x2b, 0x8d, 0x5f, 0xf2, 0xf8, - 0xf4, 0xb4, 0x92, 0x86, 0xeb, 0x6f, 0xe2, 0x85, 0x1a, 0xa7, 0xc7, 0x1f, 0x74, 0xdf, 0x48, 0xe9, - 0x93, 0xd7, 0xa6, 0x0f, 0xb6, 0x19, 0x63, 0xd7, 0xe9, 0x47, 0x9e, 0x73, 0xdb, 0x76, 0xbb, 0x4e, - 0xcb, 0xbd, 0xef, 0xfa, 0x81, 0x46, 0xb3, 0x95, 0x15, 0x63, 0xa9, 0x87, 0x19, 0xab, 0xa4, 0x8a, - 0x63, 0x2e, 0x31, 0x97, 0xc4, 0x19, 0xdb, 0x01, 0x8e, 0x9e, 0x17, 0xb4, 0x9c, 0x66, 0xe7, 0xfe, - 0xbe, 0x1f, 0xf8, 0xd1, 0xa3, 0x46, 0x35, 0xcc, 0xf9, 0x71, 0xd4, 0x01, 0xe3, 0xec, 0xfc, 0xac, - 0x0e, 0x5e, 0x80, 0x17, 0x45, 0xc3, 0x8b, 0xe9, 0xd9, 0x28, 0xa6, 0x63, 0x9e, 0xdf, 0x2a, 0x07, - 0x49, 0x0a, 0x12, 0xcb, 0x14, 0x22, 0xf0, 0xbe, 0xdf, 0x75, 0x9d, 0xfb, 0x7e, 0x3b, 0xf2, 0x7f, - 0x74, 0xba, 0xc9, 0xeb, 0x11, 0xcc, 0x7f, 0x9c, 0xb2, 0x04, 0x16, 0xa1, 0x8f, 0x26, 0x8e, 0x34, - 0x71, 0xc4, 0xb6, 0x17, 0xcc, 0xb6, 0x2b, 0x57, 0xcc, 0x56, 0xcd, 0xe2, 0x5d, 0x46, 0x74, 0xa5, - 0x6c, 0x5e, 0x29, 0x77, 0x5b, 0x93, 0x46, 0x6b, 0x1f, 0x39, 0x89, 0xa3, 0x27, 0x77, 0x04, 0xa5, - 0x8e, 0xa2, 0xf8, 0x91, 0x14, 0x3f, 0x9a, 0xa2, 0x47, 0x54, 0x4f, 0x74, 0xa3, 0x32, 0x9b, 0xa5, - 0xe2, 0x92, 0x13, 0xda, 0xe8, 0x44, 0x51, 0x5b, 0x1f, 0xb7, 0xe6, 0x46, 0x03, 0x74, 0x00, 0x1d, - 0x40, 0x27, 0xd1, 0x7e, 0xa1, 0x40, 0xff, 0xcc, 0x17, 0xa1, 0x40, 0xbf, 0xd6, 0x2f, 0x0a, 0xf4, - 0x67, 0x61, 0x11, 0x8a, 0x5e, 0xa0, 0xbf, 0x78, 0xc5, 0x60, 0xe7, 0xd4, 0x34, 0xba, 0x93, 0xd1, - 0x9d, 0x0c, 0xad, 0x05, 0xad, 0x05, 0xad, 0x05, 0xb7, 0x07, 0xb7, 0x07, 0xad, 0x05, 0xad, 0x05, - 0xd0, 0x01, 0x74, 0xd0, 0x5a, 0xd0, 0x5a, 0xd0, 0x5a, 0xd0, 0x5a, 0xd0, 0x5a, 0xd0, 0x5a, 0x04, - 0xb5, 0x16, 0xda, 0xee, 0xc4, 0x98, 0x25, 0xa1, 0xa6, 0x3b, 0xf5, 0xef, 0x77, 0xdd, 0xcf, 0x93, - 0x21, 0x6d, 0x86, 0xba, 0x85, 0x61, 0x27, 0x74, 0x7e, 0xb8, 0x41, 0xab, 0x9d, 0x24, 0x27, 0xe1, - 0xd9, 0x5b, 0x9f, 0xff, 0x3c, 0xc1, 0x6e, 0x16, 0x79, 0x29, 0xc1, 0x6e, 0x04, 0xbb, 0x21, 0xc0, - 0x22, 0xc0, 0x8e, 0x3e, 0x18, 0x85, 0x9e, 0x1b, 0x39, 0x6e, 0xcf, 0xf9, 0xcb, 0x8f, 0x7e, 0xb4, - 0x42, 0xf7, 0x2f, 0x7d, 0x49, 0x63, 0x79, 0x48, 0x44, 0x59, 0xf4, 0x11, 0xf4, 0x11, 0x44, 0xd9, - 0xf2, 0x7a, 0x48, 0x73, 0x7c, 0x97, 0xeb, 0x68, 0xae, 0xa3, 0x61, 0x43, 0x59, 0x64, 0x43, 0x83, - 0x73, 0x1a, 0x78, 0x9d, 0x7e, 0xcf, 0xe9, 0x77, 0x5b, 0x6e, 0xe4, 0x39, 0xf7, 0x5e, 0xaf, 0xe7, - 0xde, 0x79, 0x02, 0xed, 0xda, 0xd7, 0x0f, 0x0d, 0xab, 0x81, 0xd5, 0xc0, 0x6a, 0x12, 0xed, 0x97, - 0xbe, 0x1f, 0x44, 0x7b, 0x55, 0x01, 0x52, 0x73, 0xc8, 0xb5, 0x8f, 0x28, 0xac, 0x2c, 0x0d, 0xc7, - 0xb5, 0x4f, 0x66, 0x96, 0x40, 0xaa, 0x6a, 0xae, 0xd1, 0xb5, 0x28, 0xfa, 0xed, 0xcf, 0x1b, 0x24, - 0x1a, 0xc8, 0x0c, 0x64, 0x06, 0x32, 0x83, 0x44, 0x93, 0x69, 0x89, 0x86, 0x5b, 0xec, 0x38, 0xd3, - 0x24, 0x75, 0x8d, 0x3d, 0x18, 0xf4, 0xf7, 0xc9, 0x98, 0x16, 0xef, 0xb1, 0xef, 0x42, 0xb7, 0xe9, - 0xdd, 0xf6, 0xdb, 0x4e, 0xe8, 0xf5, 0x22, 0x37, 0x8c, 0x92, 0xdf, 0x64, 0x2f, 0x8d, 0xc0, 0x5d, - 0xb6, 0x45, 0x03, 0xc5, 0x5d, 0x36, 0x77, 0xd9, 0xa8, 0xb7, 0xa8, 0xb7, 0x63, 0xf5, 0x36, 0x23, - 0xc9, 0x44, 0x38, 0x33, 0x38, 0x33, 0x38, 0x33, 0xf9, 0x71, 0x66, 0x14, 0xec, 0xc2, 0x0f, 0xaf, - 0xdd, 0xf5, 0x42, 0xa7, 0x13, 0xb4, 0x1f, 0xf5, 0xe1, 0x66, 0x76, 0x30, 0x20, 0x07, 0xc8, 0x01, - 0x72, 0x80, 0x9c, 0xe5, 0xef, 0x38, 0x76, 0x30, 0x9d, 0xc8, 0xbf, 0x17, 0x68, 0xa0, 0x30, 0x37, - 0x1a, 0xa0, 0x03, 0xe8, 0x00, 0x3a, 0x89, 0xf6, 0x4b, 0xdf, 0x0f, 0xa2, 0xdd, 0x03, 0x01, 0xcc, - 0x39, 0xe0, 0x06, 0x5a, 0x14, 0x56, 0x96, 0x86, 0xe3, 0x06, 0x3a, 0x33, 0x4b, 0x50, 0xdb, 0x39, - 0x3a, 0xe0, 0xee, 0x79, 0xf1, 0x57, 0x96, 0xef, 0x9e, 0x7b, 0x91, 0xdb, 0xf6, 0x9c, 0x61, 0xeb, - 0x98, 0x9e, 0x10, 0xf3, 0x58, 0x1e, 0x12, 0xfa, 0x01, 0xfd, 0x80, 0x7e, 0x24, 0xda, 0x2f, 0x2d, - 0xaf, 0xe9, 0xdf, 0xbb, 0xed, 0x83, 0x9a, 0x84, 0xd7, 0x53, 0xd5, 0x18, 0x63, 0x09, 0x87, 0xab, - 0xf0, 0x99, 0xd5, 0xd3, 0x5c, 0x85, 0xcf, 0xa4, 0xcd, 0x67, 0xf6, 0x4a, 0xb4, 0x04, 0x94, 0x51, - 0x50, 0xdf, 0x90, 0xe9, 0x44, 0xa0, 0x2c, 0x86, 0x12, 0x90, 0x26, 0x44, 0x9a, 0x90, 0x75, 0xda, - 0xc6, 0x45, 0x73, 0x8c, 0x0f, 0x72, 0xd1, 0x8c, 0x07, 0x84, 0x07, 0x94, 0xae, 0x07, 0xc4, 0x45, - 0x73, 0xf2, 0x39, 0xe3, 0xa2, 0x19, 0xc8, 0x01, 0x72, 0x80, 0x9c, 0x97, 0xbf, 0x63, 0xbb, 0xd3, - 0x74, 0xa7, 0x4e, 0x88, 0x4a, 0xcb, 0xf1, 0xa5, 0x89, 0x5b, 0x1a, 0x11, 0xf0, 0x01, 0x7c, 0x00, - 0x1f, 0xc0, 0x67, 0xf9, 0x3b, 0xde, 0x77, 0x5a, 0x02, 0x77, 0x4c, 0xc3, 0x51, 0x00, 0x19, 0x40, - 0x06, 0x90, 0x49, 0xa8, 0x47, 0xf4, 0xef, 0xbd, 0x70, 0x24, 0x7c, 0x0a, 0x00, 0x4d, 0x4d, 0x63, - 0x0c, 0xb5, 0xd6, 0xe6, 0x76, 0xc1, 0xaa, 0xeb, 0x79, 0xa1, 0x23, 0x1b, 0x97, 0xb7, 0x3c, 0x24, - 0x30, 0x06, 0x8c, 0x01, 0x63, 0x89, 0xf6, 0x0b, 0xc1, 0x79, 0xb3, 0x5f, 0x84, 0xe0, 0x3c, 0xad, - 0x5f, 0x04, 0xe7, 0x65, 0x62, 0x15, 0x08, 0xce, 0x7b, 0x91, 0x7e, 0x88, 0xe8, 0x34, 0x8b, 0x03, - 0x42, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0x64, 0x9a, 0xe5, 0xef, 0x48, 0x32, 0x12, 0xa0, 0x03, 0xe8, - 0xe0, 0xef, 0xe0, 0xef, 0xe0, 0xef, 0xe0, 0xef, 0xe0, 0xef, 0x90, 0x8c, 0x04, 0xfd, 0x80, 0x7e, - 0x90, 0x8c, 0x44, 0x32, 0x52, 0x3e, 0xf8, 0x0c, 0xc9, 0x48, 0xa9, 0xf3, 0x19, 0x92, 0x91, 0x8a, - 0x43, 0x66, 0x4a, 0x90, 0x8c, 0x44, 0x41, 0xdc, 0x78, 0x13, 0x25, 0x54, 0x12, 0xf7, 0xb7, 0xf1, - 0xb0, 0x17, 0xe3, 0x51, 0x2d, 0x16, 0xc5, 0x6d, 0x77, 0xee, 0xee, 0xfc, 0xe0, 0xce, 0xe9, 0x74, - 0x07, 0x53, 0xd8, 0x4b, 0x5e, 0x13, 0x77, 0x71, 0x00, 0x4a, 0xe2, 0x5a, 0xa4, 0xbc, 0x94, 0xc4, - 0xa5, 0x24, 0xae, 0x49, 0x1f, 0x8f, 0x4c, 0xc5, 0x14, 0x28, 0x80, 0x72, 0xa6, 0x62, 0xbb, 0x73, - 0xe7, 0x4c, 0x4c, 0x95, 0x33, 0x34, 0xe1, 0x4e, 0xf3, 0xc7, 0xc0, 0xb1, 0xe9, 0x49, 0x44, 0xf5, - 0xaf, 0x1d, 0x5b, 0xbf, 0x9b, 0xc8, 0x60, 0x39, 0xd1, 0x62, 0xd0, 0x62, 0xd0, 0x62, 0x92, 0xed, - 0x17, 0x9a, 0x89, 0x64, 0xc1, 0x7b, 0x5a, 0x60, 0xc0, 0x54, 0x72, 0xa0, 0x92, 0x03, 0xfc, 0x08, - 0x7e, 0x04, 0x3f, 0x82, 0x1f, 0xc1, 0x8f, 0xe0, 0x47, 0xf0, 0xa3, 0x05, 0x7e, 0x84, 0xb8, 0x1c, - 0x6b, 0x9e, 0x84, 0xb4, 0xe5, 0xd3, 0xd1, 0xa8, 0xe7, 0xe3, 0x41, 0x2d, 0x4a, 0xcb, 0x53, 0x73, - 0xe8, 0xb6, 0x5a, 0xa1, 0xd7, 0x53, 0xd0, 0x96, 0x97, 0x46, 0x48, 0x26, 0x2e, 0xef, 0x20, 0x2e, - 0x23, 0x2e, 0x2b, 0xda, 0x94, 0x67, 0x62, 0xe7, 0xb9, 0xb7, 0xa1, 0x77, 0x9b, 0x64, 0xc1, 0x26, - 0x36, 0x23, 0x41, 0xbf, 0xf1, 0x4a, 0x63, 0x8c, 0x15, 0x6f, 0xdf, 0x8e, 0xfd, 0xc7, 0xed, 0xa5, - 0xcd, 0x6f, 0xf1, 0xe8, 0x0e, 0x63, 0xa4, 0x9c, 0xd0, 0xbb, 0x6d, 0x7b, 0xcd, 0xa8, 0x13, 0x26, - 0x3f, 0xb9, 0x8b, 0x03, 0x70, 0x2b, 0xc4, 0xc1, 0x55, 0x3a, 0xb8, 0xdc, 0x0a, 0xa1, 0x7a, 0xa0, - 0x7a, 0xe8, 0xa8, 0x1e, 0x0b, 0x50, 0xec, 0x34, 0xdb, 0xfe, 0xe8, 0x45, 0x75, 0xf3, 0x78, 0x56, - 0x8f, 0x4b, 0x6f, 0x79, 0xe4, 0x0e, 0xe4, 0x0e, 0xe4, 0x0e, 0x63, 0x93, 0xb6, 0x02, 0x78, 0xfa, - 0xbd, 0xc8, 0x0b, 0x1d, 0xbf, 0x65, 0x02, 0xd4, 0xa6, 0x63, 0x03, 0x48, 0x00, 0x12, 0x80, 0x94, - 0xec, 0x34, 0xcd, 0x1e, 0x20, 0x27, 0x1a, 0x8c, 0x2b, 0x80, 0x4d, 0x47, 0x1a, 0x63, 0x8c, 0xdf, - 0x2d, 0xf5, 0x30, 0xff, 0xd9, 0x64, 0xce, 0xbd, 0x6a, 0x45, 0x20, 0x6a, 0x7d, 0x3c, 0x3b, 0x87, - 0x02, 0x43, 0xc9, 0x24, 0x43, 0xc8, 0xcd, 0xd6, 0xf4, 0x8b, 0x49, 0x26, 0x47, 0x08, 0x01, 0xf4, - 0xda, 0x61, 0x85, 0x23, 0xf5, 0xa7, 0xe3, 0x1a, 0x88, 0xd8, 0xd7, 0x04, 0x8c, 0xd5, 0x4b, 0x25, - 0x98, 0x44, 0x61, 0x6b, 0xa9, 0x6a, 0xd5, 0xa3, 0xda, 0xd1, 0xc1, 0x61, 0xf5, 0x68, 0x3f, 0x47, - 0x6b, 0xf6, 0x2a, 0x1b, 0xa3, 0x5c, 0xbf, 0x4a, 0x71, 0xe7, 0x09, 0x02, 0xb2, 0xdf, 0x7d, 0xa8, - 0x25, 0xbc, 0x6e, 0x88, 0x65, 0xb4, 0x7e, 0x15, 0x18, 0xab, 0xe1, 0x46, 0x91, 0x17, 0x06, 0x62, - 0xc8, 0x5c, 0xf9, 0xcf, 0x2f, 0xbf, 0x7c, 0xdb, 0x71, 0x8e, 0xae, 0xff, 0xf9, 0xb6, 0xeb, 0x1c, - 0x5d, 0x8f, 0x7e, 0xbb, 0x3b, 0xfc, 0xd7, 0xe8, 0xf7, 0xd5, 0x6f, 0x3b, 0x4e, 0x6d, 0xf2, 0xfb, - 0xfd, 0x6f, 0x3b, 0xce, 0xfe, 0xf5, 0xeb, 0x3f, 0xff, 0x7c, 0xfb, 0xfa, 0xef, 0xbd, 0xa7, 0xe4, - 0x1f, 0xfc, 0x9f, 0x4a, 0xda, 0x9b, 0x8c, 0xd4, 0x22, 0xfb, 0x97, 0xbf, 0x0b, 0x0e, 0x15, 0xc1, - 0x71, 0x04, 0xc7, 0x59, 0x77, 0xf2, 0x90, 0x89, 0x95, 0x54, 0x15, 0x64, 0x62, 0x54, 0x19, 0x54, - 0x99, 0xe2, 0xa9, 0x32, 0xc8, 0xc4, 0xc8, 0xc4, 0x00, 0x12, 0x80, 0x94, 0x19, 0x40, 0x42, 0x26, - 0xde, 0x34, 0x43, 0xc8, 0xc4, 0x89, 0xb4, 0x47, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x19, 0xed, - 0x4b, 0x76, 0x14, 0x64, 0xe2, 0x97, 0x8d, 0x16, 0x32, 0x31, 0x32, 0x71, 0xca, 0x0a, 0x52, 0x26, - 0x64, 0x62, 0x72, 0x84, 0x62, 0xcd, 0x93, 0x50, 0x8e, 0xd0, 0xc5, 0x60, 0xd4, 0x8b, 0xe9, 0xa0, - 0x16, 0x13, 0x0d, 0x92, 0x89, 0xf0, 0x4a, 0xe2, 0xbb, 0x72, 0x52, 0x41, 0x95, 0xa4, 0x02, 0x49, - 0xd7, 0x37, 0xcf, 0x49, 0x05, 0x6e, 0x3f, 0xfa, 0xe1, 0x74, 0xdd, 0x5e, 0x6f, 0x3c, 0x85, 0x8a, - 0x77, 0x46, 0xf3, 0xc3, 0xa8, 0xdd, 0x1d, 0xed, 0x90, 0x62, 0x60, 0x53, 0xf9, 0x29, 0xd3, 0xdd, - 0x91, 0xb2, 0xa2, 0x33, 0xa7, 0x8b, 0xfa, 0xc1, 0x9d, 0xea, 0x1e, 0x9f, 0xa7, 0xc2, 0x19, 0xb8, - 0x23, 0x6e, 0x79, 0xbd, 0x66, 0xe8, 0x77, 0x95, 0xc8, 0xd0, 0x4c, 0xc5, 0xe4, 0xe7, 0x41, 0x38, - 0xf3, 0x9c, 0xf9, 0x82, 0x9d, 0xf9, 0x5e, 0x14, 0xaa, 0xb5, 0x0f, 0xcb, 0xd6, 0x49, 0x7f, 0x0c, - 0xdc, 0x7b, 0xbf, 0xe9, 0xb6, 0xdb, 0x8f, 0xce, 0x88, 0x86, 0xf7, 0x43, 0x4f, 0xc3, 0xd4, 0xaf, - 0x19, 0x2f, 0xe9, 0x6d, 0xbe, 0xde, 0x75, 0x37, 0xf8, 0x01, 0x7e, 0x64, 0x1e, 0x3f, 0xd4, 0xaf, - 0xa3, 0x15, 0xaf, 0xa1, 0xcd, 0x00, 0x88, 0x17, 0xb8, 0xdf, 0xdb, 0x3a, 0x88, 0x31, 0x19, 0x40, - 0x1d, 0x22, 0x14, 0xca, 0x44, 0x81, 0x10, 0x20, 0x04, 0x08, 0x61, 0x09, 0x21, 0x7a, 0x91, 0xfb, - 0xbd, 0xed, 0xf7, 0x7e, 0x78, 0x2d, 0x27, 0x0a, 0xdd, 0xa0, 0xe7, 0x27, 0x2b, 0xb9, 0xbe, 0x8c, - 0x18, 0x6b, 0x06, 0x04, 0x02, 0x80, 0x80, 0x82, 0x41, 0x40, 0xb3, 0xd3, 0x0f, 0x22, 0x2f, 0x54, - 0xea, 0x3a, 0x34, 0xd9, 0xe0, 0x0a, 0x77, 0x6b, 0x9a, 0x31, 0x0e, 0x1a, 0xb1, 0x31, 0x12, 0x31, - 0x0c, 0x42, 0x17, 0xe1, 0x52, 0x31, 0x0a, 0x92, 0xf7, 0xdb, 0x1a, 0x37, 0xc1, 0x22, 0x31, 0x07, - 0xd2, 0x53, 0xbb, 0xfb, 0x6b, 0xad, 0x76, 0x70, 0x58, 0xab, 0xed, 0x1c, 0xee, 0x1d, 0xee, 0x1c, - 0xed, 0xef, 0xef, 0x1e, 0xec, 0xee, 0x67, 0x68, 0xb6, 0x2d, 0x5d, 0x6c, 0x5e, 0x67, 0xc0, 0x4a, - 0xb7, 0xdd, 0x5e, 0xe4, 0xcc, 0x58, 0x56, 0x75, 0xf3, 0xbc, 0x34, 0x12, 0x76, 0x19, 0xbb, 0x5c, - 0x30, 0xbb, 0x1c, 0xf9, 0xf7, 0x5e, 0xe4, 0x37, 0xff, 0xdb, 0xb3, 0x6e, 0x99, 0xbf, 0x04, 0x23, - 0x54, 0xab, 0x04, 0x6e, 0xd0, 0xe9, 0x79, 0xcd, 0x4e, 0xd0, 0x52, 0x89, 0xc4, 0xc1, 0xc2, 0x63, - 0xe1, 0xb1, 0xf0, 0xe5, 0xb2, 0xf0, 0x9d, 0xa6, 0xdb, 0x76, 0x5c, 0x0d, 0xc7, 0x7b, 0x3a, 0x02, - 0x16, 0x1d, 0x8b, 0x5e, 0x30, 0x8b, 0xee, 0xf6, 0x9c, 0xa0, 0x7f, 0xff, 0xdd, 0x0b, 0x35, 0xec, - 0xf9, 0x21, 0x76, 0x18, 0x3b, 0x9c, 0x51, 0x3b, 0x2c, 0x15, 0xbd, 0x8f, 0xf5, 0x55, 0xb3, 0xbe, - 0xf7, 0x5e, 0xaf, 0xe7, 0xaa, 0xb4, 0x5c, 0x99, 0x22, 0xd4, 0x74, 0x04, 0x6a, 0xf4, 0x62, 0x7d, - 0x33, 0x65, 0x7d, 0xd5, 0x8b, 0x2f, 0x78, 0x4d, 0xcf, 0x7f, 0xf0, 0x24, 0x32, 0x93, 0x27, 0x23, - 0xe9, 0xe5, 0x21, 0xef, 0x92, 0x87, 0x4c, 0x1e, 0xb2, 0x65, 0x73, 0xa6, 0x5a, 0x12, 0x44, 0xf1, - 0xd0, 0x3d, 0x6f, 0x97, 0xf3, 0xab, 0x93, 0x4f, 0x27, 0x1f, 0x8e, 0xaf, 0x4e, 0xce, 0xcf, 0xf4, - 0x97, 0x7a, 0xb2, 0xf9, 0xe6, 0x46, 0x7d, 0x93, 0x09, 0x0a, 0xa4, 0x7b, 0x38, 0x25, 0x0f, 0xa9, - 0xfc, 0x61, 0x95, 0x3e, 0xb4, 0xc6, 0x0e, 0xaf, 0xb1, 0x43, 0x6c, 0xe4, 0x30, 0xeb, 0x1d, 0x6a, - 0x01, 0x2f, 0x62, 0x4b, 0xa4, 0xd8, 0xc0, 0xd2, 0x7e, 0xeb, 0xfb, 0x41, 0xa4, 0x24, 0x5a, 0xaf, - 0x3b, 0x9d, 0xbf, 0x92, 0x52, 0x9f, 0x0a, 0xac, 0x99, 0x72, 0xa2, 0x4d, 0x3a, 0x7c, 0xc2, 0xc7, - 0x43, 0xdc, 0xe9, 0xb6, 0xbd, 0x54, 0xf2, 0xe2, 0xb8, 0xd5, 0xd5, 0x2b, 0x46, 0x72, 0x7d, 0x2a, - 0x12, 0xd1, 0x97, 0xc6, 0xc7, 0xe3, 0xab, 0xba, 0x1c, 0xed, 0x1a, 0x8f, 0x07, 0xe1, 0x82, 0x70, - 0x41, 0xb8, 0x20, 0x5c, 0x10, 0x2e, 0x08, 0x17, 0x84, 0x0b, 0xc2, 0x05, 0xe1, 0x9a, 0x2c, 0xcb, - 0x30, 0x2a, 0x31, 0xe8, 0x44, 0xfe, 0xad, 0xdf, 0x1c, 0x56, 0x2d, 0x71, 0xbc, 0x30, 0xec, 0x84, - 0x4e, 0xb3, 0xd3, 0xf2, 0xe4, 0x68, 0xd8, 0x8b, 0x4f, 0x81, 0x9c, 0x41, 0xce, 0x20, 0x67, 0x99, - 0x22, 0x67, 0x7e, 0xcb, 0x0b, 0x22, 0x3f, 0x7a, 0x4c, 0xd6, 0xe9, 0x78, 0xd3, 0x11, 0x95, 0xb0, - 0x29, 0x95, 0x93, 0xf1, 0x57, 0x7b, 0xef, 0xf6, 0x04, 0xb7, 0xf1, 0xe4, 0xc5, 0xdf, 0xff, 0xd6, - 0xb8, 0xa9, 0x5f, 0x5c, 0x9c, 0x5f, 0xdc, 0x7c, 0x38, 0xff, 0x58, 0x97, 0xda, 0xcb, 0x43, 0x33, - 0xdb, 0x13, 0xe3, 0x95, 0xb2, 0xdc, 0x72, 0xee, 0xfd, 0x7f, 0x3f, 0x3f, 0xfd, 0x78, 0x73, 0x75, - 0xf2, 0xb9, 0x7e, 0x71, 0x53, 0xff, 0x7f, 0x8d, 0x93, 0x8b, 0xfa, 0xc7, 0x4a, 0x16, 0x49, 0x96, - 0xa1, 0xb7, 0xff, 0x5c, 0xbf, 0xbc, 0x3c, 0xfe, 0xad, 0x7e, 0xf3, 0x7b, 0xfd, 0xf8, 0xe3, 0x60, - 0x06, 0x06, 0x1b, 0xa1, 0x4c, 0xef, 0x7f, 0xde, 0xa8, 0x9f, 0xdd, 0x4c, 0x26, 0xa1, 0x74, 0x6f, - 0xff, 0xe9, 0xe4, 0xec, 0xe4, 0xaa, 0x7e, 0x73, 0x79, 0x75, 0x7c, 0x55, 0xbf, 0xf9, 0x7c, 0xfc, - 0xe1, 0xf7, 0x93, 0xb3, 0x12, 0xce, 0xc2, 0xc5, 0xf9, 0x97, 0xab, 0xfa, 0xcd, 0x45, 0xfd, 0xd3, - 0x45, 0xfd, 0xf2, 0xf7, 0xf2, 0x6e, 0x86, 0x91, 0x70, 0x58, 0xde, 0xf7, 0xff, 0x50, 0x3f, 0xbe, - 0xac, 0x57, 0x32, 0xe6, 0xa2, 0x5d, 0xa7, 0x4d, 0xd4, 0x32, 0xe5, 0xa2, 0xf5, 0xfa, 0xdf, 0xed, - 0x78, 0x69, 0x93, 0x07, 0xe1, 0xa8, 0xe1, 0xa8, 0xe1, 0xa8, 0xe1, 0xa8, 0x65, 0xcb, 0x51, 0xbb, - 0xfc, 0xf2, 0xbe, 0x9c, 0xbe, 0xda, 0x3c, 0x53, 0x93, 0x9d, 0x06, 0x93, 0xd3, 0x61, 0x66, 0x5a, - 0x96, 0xa6, 0xe7, 0xe4, 0xec, 0xeb, 0xf1, 0xe9, 0xc9, 0xc7, 0x29, 0x85, 0x3b, 0xad, 0x9f, 0xfd, - 0x76, 0xf5, 0x7b, 0x45, 0xfc, 0xa1, 0x4f, 0xa2, 0x23, 0x5e, 0x97, 0x88, 0x63, 0x9a, 0x5e, 0xa1, - 0x9c, 0xb0, 0x6c, 0x8e, 0xee, 0x92, 0x0e, 0x71, 0xf5, 0x7b, 0xfd, 0xe2, 0xe6, 0xc3, 0xf9, 0xd9, - 0xa7, 0x93, 0xdf, 0x6e, 0x3e, 0xfc, 0x7e, 0x7c, 0xf6, 0x5b, 0xdd, 0xc0, 0xb9, 0x7d, 0x93, 0xb7, - 0x69, 0x39, 0xfe, 0xf8, 0xf9, 0xe4, 0xec, 0xe4, 0xf2, 0xea, 0xe2, 0xf8, 0xea, 0xe4, 0xeb, 0x00, - 0xf9, 0x2f, 0xeb, 0x57, 0xcc, 0xcb, 0x56, 0xe5, 0xc3, 0xf9, 0xd9, 0x59, 0xfd, 0xff, 0x67, 0xef, - 0xed, 0x9a, 0xd3, 0x46, 0xb6, 0x36, 0xd0, 0xfb, 0xfc, 0x0a, 0x17, 0x35, 0x17, 0x71, 0x55, 0x14, - 0x1b, 0x0c, 0x38, 0xf6, 0x1d, 0x4e, 0x48, 0x36, 0xef, 0x60, 0xc3, 0xc1, 0x76, 0xde, 0x77, 0x1f, - 0x87, 0xa1, 0x64, 0x68, 0x9c, 0x9e, 0x11, 0x12, 0x47, 0x6a, 0x3c, 0x76, 0xc5, 0xfc, 0xf7, 0x53, - 0x7c, 0xc9, 0xc6, 0x82, 0x18, 0x49, 0xdd, 0xab, 0xf5, 0xf1, 0xa4, 0x32, 0x3b, 0xec, 0xc4, 0x74, - 0x4b, 0xdd, 0xab, 0xd7, 0x7a, 0xd6, 0xd3, 0xeb, 0xe3, 0xf3, 0x55, 0xa3, 0x75, 0xd1, 0xeb, 0xd4, - 0xff, 0xa7, 0xfe, 0xf9, 0x4a, 0x26, 0x6b, 0x99, 0x19, 0x71, 0xb9, 0xfc, 0xcf, 0xf5, 0xd5, 0x97, - 0xd6, 0xff, 0x5e, 0x60, 0x69, 0x16, 0x12, 0xd3, 0xfb, 0xdc, 0x6a, 0x36, 0x1b, 0x97, 0x0b, 0xa9, - 0xb9, 0x6c, 0x35, 0xaf, 0xe7, 0xa1, 0xf9, 0x58, 0x9c, 0x42, 0xbb, 0x5e, 0xef, 0xf4, 0xbe, 0xd4, - 0x97, 0xfa, 0xf7, 0xba, 0x83, 0xd3, 0x34, 0xbf, 0x1b, 0xa8, 0xfd, 0x5f, 0xef, 0xe2, 0xfa, 0xbc, - 0xd7, 0xee, 0xd4, 0xbf, 0x36, 0xfe, 0xaf, 0x7e, 0xd9, 0xeb, 0xd4, 0x6b, 0x9f, 0xff, 0x83, 0xb5, - 0x99, 0xdb, 0xeb, 0xeb, 0xab, 0x5e, 0xeb, 0xeb, 0xfc, 0x18, 0x5d, 0x77, 0x3e, 0xd7, 0x2f, 0x01, - 0xb2, 0x93, 0x03, 0x31, 0x95, 0x62, 0xa9, 0xe4, 0xbf, 0xbe, 0x5a, 0xcc, 0x94, 0x02, 0x0f, 0x43, - 0x25, 0x36, 0x4a, 0xdd, 0xf6, 0xcb, 0xc7, 0x40, 0xe9, 0x90, 0x00, 0xc5, 0x58, 0x27, 0xf9, 0x8b, - 0xa0, 0x12, 0xd3, 0xa4, 0x20, 0xae, 0x41, 0x39, 0x76, 0x49, 0x81, 0x1d, 0x54, 0x86, 0x51, 0x52, - 0x17, 0xd7, 0x02, 0xbe, 0xe9, 0xd5, 0xfa, 0x9c, 0xd5, 0x9e, 0x49, 0xc8, 0xab, 0xff, 0xb6, 0x41, - 0x36, 0xbd, 0x5a, 0x13, 0x65, 0xd4, 0x79, 0x9a, 0xa9, 0xa6, 0x8b, 0xd6, 0x55, 0xef, 0xf2, 0xbf, - 0x17, 0x9f, 0xff, 0xd3, 0x69, 0x5d, 0x34, 0xfe, 0x5f, 0x25, 0x8e, 0x20, 0x9c, 0x9e, 0xc4, 0x1d, - 0xe8, 0x74, 0xbd, 0x7b, 0x0e, 0x6f, 0x54, 0x28, 0x0e, 0x68, 0xca, 0x22, 0x39, 0x61, 0xef, 0x5f, - 0xad, 0xce, 0xf5, 0xc5, 0xe5, 0x75, 0xbb, 0xdd, 0xea, 0x5c, 0xd5, 0xbf, 0xf4, 0x5a, 0xed, 0x99, - 0xb0, 0xd4, 0x9a, 0xbd, 0x76, 0xad, 0x53, 0x3b, 0xaf, 0x5f, 0xd5, 0x3b, 0xb0, 0x73, 0xb3, 0x15, - 0xaa, 0x7d, 0xfe, 0x5c, 0x6f, 0x5f, 0xd5, 0xce, 0x9a, 0xf5, 0x9e, 0x1f, 0x14, 0x8e, 0x95, 0x59, - 0x97, 0x9d, 0xcf, 0xb5, 0x76, 0xed, 0xac, 0xd1, 0x6c, 0x5c, 0xfd, 0x17, 0x2b, 0xb3, 0x30, 0x3c, - 0x73, 0x3f, 0xbb, 0x76, 0x89, 0xe5, 0x58, 0x2c, 0xc7, 0xd9, 0xb7, 0x76, 0xaf, 0xf1, 0xa5, 0x7e, - 0x71, 0xd5, 0xf8, 0xda, 0x80, 0x62, 0x79, 0x7d, 0x7c, 0xbe, 0xd7, 0x3b, 0x73, 0x4a, 0xea, 0xe2, - 0xfa, 0xfc, 0x4c, 0xc9, 0xea, 0x00, 0x3f, 0x27, 0xdc, 0x40, 0xa6, 0x61, 0x25, 0xd4, 0x1a, 0xc2, - 0x74, 0xc9, 0x82, 0x0a, 0x83, 0x97, 0x0e, 0x8f, 0x4a, 0xba, 0x61, 0x4b, 0xc7, 0x6b, 0xab, 0x32, - 0x60, 0xe9, 0x12, 0x7b, 0x55, 0x86, 0x2a, 0x75, 0x69, 0x50, 0xf0, 0x24, 0x5f, 0xad, 0xcf, 0x2a, - 0x84, 0xb5, 0xd5, 0x69, 0x7c, 0x6b, 0x5c, 0xf4, 0x6a, 0x57, 0x57, 0x9d, 0xc6, 0xd9, 0xf5, 0x15, - 0x3c, 0xa5, 0x39, 0x07, 0xb1, 0x04, 0x0e, 0xfe, 0xaa, 0xc8, 0x4e, 0xa3, 0x4b, 0xef, 0xda, 0x9c, - 0xd7, 0x9a, 0x5f, 0x5b, 0x9d, 0xf3, 0xfa, 0x97, 0x5e, 0xed, 0xb2, 0xd7, 0xae, 0x81, 0x5c, 0x7f, - 0x79, 0x98, 0x2e, 0xea, 0x57, 0xff, 0xdb, 0xea, 0xfc, 0xd9, 0xfb, 0xda, 0xa8, 0x37, 0x11, 0x5f, - 0x35, 0x93, 0x96, 0xc6, 0xe5, 0x65, 0xe3, 0xe2, 0x5b, 0xef, 0x7f, 0xeb, 0xcd, 0x66, 0xef, 0xcf, - 0x8b, 0xd6, 0xff, 0x42, 0xd3, 0x6c, 0x11, 0x9c, 0xff, 0xbb, 0xea, 0xfd, 0xa7, 0xd5, 0xc6, 0xea, - 0xac, 0x23, 0x99, 0x4e, 0xfd, 0x73, 0xeb, 0xdb, 0x9c, 0x03, 0x87, 0x08, 0x6d, 0x59, 0xa4, 0x67, - 0x1b, 0xb5, 0xb8, 0x33, 0x81, 0xa9, 0x0a, 0xae, 0xcc, 0xd7, 0x66, 0xed, 0xdb, 0x25, 0x16, 0x66, - 0x83, 0x0d, 0x7f, 0x16, 0x9e, 0xc6, 0xe5, 0x15, 0x88, 0xac, 0xe4, 0xf8, 0x2f, 0xea, 0xf1, 0x79, - 0x1a, 0xee, 0x02, 0x55, 0xe3, 0xf0, 0x34, 0x44, 0xc0, 0x29, 0xc3, 0xdb, 0xe9, 0x39, 0x04, 0x8a, - 0x70, 0x75, 0x0a, 0x76, 0x9f, 0x04, 0x3f, 0xa7, 0x49, 0x10, 0xd4, 0xe1, 0xe4, 0x34, 0x30, 0x7b, - 0x64, 0x78, 0x38, 0x05, 0x01, 0xf2, 0x8a, 0x71, 0x6f, 0x9a, 0x56, 0x40, 0x09, 0xbe, 0x4d, 0x95, - 0x6d, 0x54, 0x84, 0x63, 0x53, 0x5a, 0xfb, 0x0d, 0x6c, 0xf7, 0xab, 0x55, 0xea, 0xd4, 0x3f, 0xd7, - 0x1b, 0xdf, 0xeb, 0xbd, 0xeb, 0x8b, 0xfa, 0xff, 0xb5, 0xe7, 0xb9, 0x44, 0xfe, 0xcd, 0x40, 0xab, - 0x5d, 0xbf, 0x98, 0x27, 0x57, 0x74, 0xce, 0xe1, 0x1b, 0xbe, 0xb9, 0x52, 0x97, 0xf5, 0x0b, 0x64, - 0xee, 0xff, 0x7e, 0x99, 0xea, 0x97, 0x57, 0xb5, 0xb3, 0x66, 0xe3, 0xf2, 0x3f, 0x88, 0xac, 0x4e, - 0x92, 0xa2, 0xa4, 0x56, 0x01, 0xa9, 0x5f, 0x11, 0xb9, 0x47, 0x3d, 0xd5, 0xcb, 0xa1, 0xe4, 0x48, - 0xa7, 0x22, 0x92, 0xa0, 0x5d, 0xff, 0xdc, 0xf8, 0xda, 0xf8, 0x8c, 0x7a, 0x9a, 0xb2, 0xbe, 0x2d, - 0xb7, 0x9e, 0xa6, 0xe0, 0x23, 0xa5, 0x65, 0x34, 0xe7, 0xe3, 0xa3, 0x7a, 0xe6, 0x9b, 0x2b, 0x87, - 0xea, 0x99, 0xa8, 0x9e, 0xb9, 0xfd, 0x8d, 0xe4, 0x57, 0xcf, 0x9c, 0x9d, 0x4b, 0xc1, 0xfb, 0xff, - 0x78, 0x89, 0x6b, 0x44, 0x75, 0x6d, 0x2f, 0x9a, 0xe4, 0x14, 0x6c, 0xd3, 0x76, 0x3c, 0xd6, 0x77, - 0xec, 0x81, 0x57, 0x40, 0x83, 0x2b, 0x2d, 0x3a, 0x73, 0xb3, 0x03, 0x8f, 0x06, 0x57, 0x69, 0xda, - 0x2a, 0x34, 0xb8, 0x4a, 0x75, 0x83, 0x2b, 0xd2, 0x0e, 0xf2, 0x35, 0xdb, 0x76, 0xc4, 0x1c, 0xb8, - 0xc5, 0x6b, 0x24, 0xef, 0xf5, 0x7f, 0xb2, 0x91, 0x39, 0x36, 0xc5, 0xcf, 0x99, 0x22, 0x3f, 0x70, - 0xc6, 0xcc, 0xee, 0xcf, 0xd1, 0xd7, 0xcc, 0x18, 0x1f, 0xcc, 0xfe, 0xb3, 0x19, 0xbf, 0xfb, 0x79, - 0xeb, 0xb8, 0x9e, 0xff, 0xe9, 0xc0, 0x13, 0xa6, 0x60, 0x07, 0x23, 0xe6, 0x79, 0xe6, 0x1d, 0xf3, - 0x0e, 0x5c, 0xd6, 0x67, 0xfc, 0x9e, 0x0d, 0x62, 0xe8, 0xfe, 0x82, 0x27, 0xdc, 0x49, 0x5f, 0xd8, - 0xab, 0xa8, 0xee, 0xbb, 0x71, 0xef, 0x62, 0x39, 0x5b, 0xef, 0x7c, 0x39, 0x4f, 0xaf, 0xb3, 0x9a, - 0xe7, 0x1d, 0xcd, 0xfe, 0x44, 0xd8, 0x9b, 0x82, 0xb7, 0x40, 0x33, 0xd1, 0x76, 0xc4, 0xb7, 0xf9, - 0xf3, 0x51, 0x22, 0x4a, 0xc6, 0xaa, 0x3c, 0x76, 0xc4, 0xaf, 0xc7, 0xc5, 0xde, 0x32, 0x30, 0xb7, - 0x3c, 0xac, 0x2d, 0x0b, 0x63, 0x4b, 0xc7, 0xd6, 0xd2, 0x31, 0xb5, 0x54, 0x2c, 0x4d, 0xab, 0xcb, - 0xbe, 0x70, 0x37, 0xa6, 0xb8, 0xb4, 0xae, 0x1a, 0x5f, 0x1b, 0x9f, 0x6b, 0xf3, 0x82, 0x51, 0xd2, - 0x5c, 0xe4, 0xb5, 0x51, 0xe1, 0x18, 0xc3, 0x31, 0x86, 0x63, 0x9c, 0x28, 0xc7, 0x18, 0xcd, 0x99, - 0xe1, 0xbb, 0xc2, 0x77, 0x85, 0xef, 0x0a, 0xdf, 0x35, 0xbe, 0xef, 0x1a, 0x03, 0x61, 0x2f, 0xb2, - 0x2f, 0xe5, 0xc1, 0xae, 0xe5, 0x78, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, - 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0xab, 0x6d, 0xd9, 0xd6, 0x01, 0x95, 0xa6, 0xcf, - 0x2a, 0x9a, 0xac, 0x02, 0x9c, 0x01, 0x9c, 0xa1, 0xc9, 0x6a, 0x88, 0xb1, 0xa8, 0x9a, 0xac, 0xe6, - 0xb3, 0xc3, 0xaa, 0x5f, 0xef, 0xad, 0xd3, 0xab, 0xff, 0x5f, 0xbb, 0x91, 0xb7, 0xae, 0x11, 0xeb, - 0x5d, 0x03, 0x72, 0x97, 0x17, 0xb5, 0x56, 0x43, 0x39, 0x77, 0x6f, 0xbf, 0x31, 0x23, 0x2a, 0x77, - 0xab, 0xb0, 0xde, 0x63, 0x39, 0xb7, 0xc2, 0xf0, 0xaa, 0x0c, 0x5c, 0xee, 0xde, 0x7f, 0xde, 0xa7, - 0x17, 0xd1, 0xfb, 0x49, 0x76, 0xd1, 0xbc, 0xc9, 0x2d, 0x8d, 0x97, 0xb6, 0x9a, 0x08, 0x8e, 0x1a, - 0x1c, 0x35, 0x38, 0x6a, 0x70, 0xd4, 0x92, 0xe5, 0xa8, 0xc9, 0xcd, 0x59, 0x4f, 0x91, 0xaf, 0xb6, - 0x8e, 0xd4, 0x90, 0xba, 0xff, 0x6a, 0x79, 0x56, 0xa5, 0x5f, 0x94, 0xb7, 0xf4, 0x42, 0x66, 0x75, - 0x42, 0x77, 0x28, 0x25, 0x28, 0x1b, 0x47, 0x37, 0xc0, 0x43, 0xa8, 0xec, 0xe0, 0xac, 0x40, 0x3a, - 0x88, 0x96, 0x45, 0x6d, 0x67, 0xe7, 0xf4, 0xae, 0x8b, 0xd2, 0x8e, 0xcf, 0x99, 0x11, 0x17, 0xf9, - 0x9d, 0xa0, 0xd3, 0x2d, 0x31, 0x8a, 0x3b, 0x44, 0xa7, 0x77, 0x71, 0x54, 0x76, 0x8e, 0x4e, 0xef, - 0xaa, 0xa8, 0xef, 0x28, 0x9d, 0xde, 0xb5, 0x51, 0xd7, 0x69, 0x1a, 0x20, 0x3b, 0xd1, 0x58, 0x2a, - 0x05, 0xb5, 0x0e, 0x95, 0x62, 0xa6, 0x54, 0x75, 0x87, 0x95, 0x8f, 0x8d, 0x52, 0xb7, 0xfd, 0xf2, - 0x31, 0x50, 0x3a, 0x24, 0x40, 0x31, 0xd6, 0x49, 0xfe, 0x22, 0xa8, 0xc4, 0x34, 0x69, 0xa8, 0x77, - 0xaa, 0x1a, 0xbb, 0xa4, 0xc0, 0x0e, 0x2a, 0xc3, 0x28, 0xa9, 0x8b, 0x6b, 0x01, 0xdf, 0xf4, 0x6a, - 0x7d, 0xd4, 0x35, 0xcf, 0x4f, 0x2f, 0xa6, 0x57, 0xd9, 0x54, 0x3f, 0x13, 0x54, 0x93, 0xba, 0x66, - 0xfb, 0x70, 0x7a, 0x92, 0x7b, 0xa0, 0xd3, 0xf5, 0xee, 0x39, 0xbc, 0x51, 0xa1, 0x38, 0xa0, 0x29, - 0x8b, 0xe4, 0x84, 0xbd, 0x7f, 0xb5, 0x3a, 0x54, 0xcd, 0xbe, 0xd3, 0x6b, 0xe7, 0x54, 0x37, 0x01, - 0x4f, 0xf3, 0xca, 0xa8, 0x6d, 0x0e, 0x9e, 0x6e, 0xc4, 0x28, 0xbd, 0x69, 0x78, 0xba, 0x97, 0x43, - 0x55, 0x33, 0xf1, 0x6c, 0x1c, 0x1f, 0x55, 0x4d, 0xc6, 0x81, 0x9f, 0xd3, 0x62, 0x20, 0xd3, 0xb0, - 0x12, 0x6a, 0x0d, 0x61, 0xba, 0x64, 0x41, 0x85, 0xc1, 0x4b, 0x87, 0x47, 0x25, 0xdd, 0xb0, 0xa5, - 0xe3, 0xb5, 0x55, 0x19, 0xb0, 0x74, 0x89, 0xbd, 0x2a, 0x43, 0x95, 0xba, 0x34, 0x28, 0x78, 0x92, - 0xaf, 0xd6, 0x47, 0x7d, 0xb7, 0xdd, 0xf4, 0x42, 0x3d, 0xf5, 0x5d, 0x78, 0xd3, 0xbb, 0x36, 0x0a, - 0xbb, 0xf3, 0xa6, 0x77, 0x51, 0x14, 0x77, 0xed, 0x4d, 0xb1, 0xb4, 0x90, 0x74, 0xf3, 0xcd, 0x82, - 0xe0, 0xa8, 0xeb, 0xf2, 0x9b, 0x66, 0x97, 0x9b, 0xac, 0xfb, 0x6f, 0x7a, 0x17, 0x49, 0x75, 0x57, - 0xe0, 0x2c, 0xac, 0x8c, 0x92, 0x6e, 0xc1, 0x99, 0xb0, 0xe1, 0x8a, 0xba, 0x08, 0x83, 0xc8, 0x4a, - 0x3e, 0x3e, 0x4f, 0xc3, 0x5d, 0xa0, 0x6a, 0x1c, 0x9e, 0xaa, 0x8e, 0xdf, 0xb2, 0xf1, 0x76, 0x7a, - 0x0e, 0x81, 0x22, 0x5c, 0x9d, 0x82, 0xdd, 0x27, 0xc1, 0xcf, 0x69, 0x12, 0x04, 0x75, 0x38, 0x39, - 0x0d, 0xcc, 0x1e, 0x19, 0x1e, 0x4e, 0x41, 0x80, 0xbc, 0x62, 0xdc, 0x9b, 0xa6, 0x15, 0x50, 0x82, - 0x6f, 0x53, 0x65, 0x1b, 0x15, 0xe1, 0xd8, 0x94, 0xd6, 0x7e, 0x03, 0xdb, 0xfd, 0x6a, 0x95, 0xa8, - 0x5b, 0xe1, 0xa7, 0xd7, 0x37, 0x24, 0x6d, 0x91, 0x9f, 0xc9, 0x65, 0x52, 0xd2, 0x3a, 0x1f, 0x0e, - 0x75, 0xda, 0x54, 0x40, 0xea, 0x57, 0x44, 0xee, 0x51, 0x4f, 0xf5, 0x72, 0x28, 0x39, 0xd2, 0xa9, - 0x88, 0x24, 0x68, 0xd7, 0x3f, 0x37, 0xbe, 0x36, 0x3e, 0xa3, 0x9e, 0xa6, 0xac, 0x6f, 0xcb, 0xad, - 0xa7, 0x29, 0xf8, 0x48, 0x69, 0x19, 0xcd, 0xf9, 0xf8, 0xa8, 0x9e, 0xf9, 0xe6, 0xca, 0xa1, 0x7a, - 0x26, 0xaa, 0x67, 0x6e, 0x7f, 0x23, 0xf9, 0xd5, 0x33, 0x67, 0xe7, 0x52, 0xf0, 0xfe, 0x3f, 0x5e, - 0xe2, 0x1a, 0x51, 0x5d, 0xdb, 0x8b, 0x26, 0x39, 0x05, 0xdb, 0xb4, 0x1d, 0x8f, 0xf5, 0x1d, 0x7b, - 0xe0, 0x15, 0xd0, 0xe0, 0x4a, 0x8b, 0xce, 0xdc, 0xec, 0xc0, 0xa3, 0xc1, 0x55, 0x9a, 0xb6, 0x0a, - 0x0d, 0xae, 0x52, 0xdd, 0xe0, 0x8a, 0xb4, 0x83, 0x7c, 0xcd, 0xb6, 0x1d, 0x31, 0x07, 0x6e, 0xf1, - 0x1a, 0xc9, 0x7b, 0xfd, 0x9f, 0x6c, 0x64, 0x8e, 0x4d, 0xf1, 0x73, 0xa6, 0xc8, 0x0f, 0x9c, 0x31, - 0xb3, 0xfb, 0x73, 0xf4, 0x35, 0x33, 0xc6, 0x07, 0xb3, 0xff, 0x6c, 0xc6, 0xef, 0x7e, 0xde, 0x3a, - 0xae, 0xe7, 0x7f, 0x3a, 0xf0, 0x84, 0x29, 0xd8, 0xc1, 0x88, 0x79, 0x9e, 0x79, 0xc7, 0xbc, 0x03, - 0x6f, 0x66, 0xc1, 0x63, 0x60, 0x5d, 0x4f, 0xb8, 0x93, 0xbe, 0xb0, 0x57, 0x11, 0xdd, 0x77, 0xe3, - 0xde, 0xc5, 0x72, 0xa6, 0xde, 0xf9, 0x72, 0x8e, 0xde, 0xe5, 0x6c, 0x8e, 0x77, 0x34, 0xfb, 0x12, - 0xee, 0x1b, 0x21, 0x77, 0x30, 0xee, 0xce, 0xc9, 0xd8, 0xb1, 0x08, 0x9b, 0xb5, 0xcb, 0x26, 0x85, - 0xdb, 0x9f, 0xdd, 0x57, 0x39, 0xc4, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x98, 0x83, 0x81, 0xcb, 0x3c, - 0x2f, 0xf4, 0x1a, 0xfb, 0xb8, 0x2b, 0x30, 0x52, 0xc8, 0x7d, 0x8e, 0x66, 0x2c, 0x22, 0xfb, 0x3e, - 0x71, 0x7c, 0x9d, 0xf8, 0xbe, 0x4d, 0x5c, 0x5f, 0x46, 0x9a, 0xef, 0x22, 0xcd, 0x57, 0x91, 0xe2, - 0x9b, 0xa8, 0xd5, 0x24, 0x91, 0x7d, 0x8d, 0xe7, 0xca, 0xfc, 0xe3, 0x88, 0xd2, 0xfd, 0x52, 0xc2, - 0x8b, 0x27, 0x11, 0xbe, 0xbb, 0x7c, 0xf6, 0x68, 0x10, 0x3f, 0x86, 0xbd, 0x7b, 0x7e, 0xf3, 0xfb, - 0x72, 0x8c, 0x77, 0x0f, 0xac, 0x41, 0x0c, 0x7f, 0xaa, 0xd0, 0x36, 0x85, 0x60, 0xae, 0x1d, 0xdb, - 0xe3, 0x29, 0xfc, 0xf5, 0xfe, 0xfd, 0xcd, 0xa1, 0x71, 0xd2, 0x7d, 0xba, 0x29, 0x1a, 0x27, 0xdd, - 0xc5, 0xc7, 0xe2, 0xfc, 0x8f, 0xc5, 0xe7, 0xd2, 0xcd, 0xa1, 0x51, 0x5e, 0x7d, 0xae, 0xdc, 0x1c, - 0x1a, 0x95, 0xee, 0xfe, 0x8f, 0x1f, 0x1f, 0xf7, 0x7f, 0x1d, 0x4d, 0xc3, 0x7f, 0xf1, 0x8f, 0xe8, - 0xae, 0x7a, 0x97, 0x12, 0x2a, 0xc9, 0x11, 0x96, 0x6a, 0x56, 0x85, 0xc5, 0x34, 0x86, 0x35, 0xe3, - 0x6b, 0xf7, 0x57, 0xf1, 0x43, 0x79, 0x7a, 0xba, 0xff, 0xeb, 0x78, 0xfa, 0xfa, 0x2f, 0x9f, 0x36, - 0xfd, 0x58, 0xf1, 0xc3, 0xf1, 0xf4, 0x74, 0xcb, 0xbf, 0x54, 0xa7, 0xa7, 0x3b, 0x8e, 0x51, 0x99, - 0xbe, 0x0f, 0xfc, 0xe8, 0xec, 0xef, 0x4b, 0xdb, 0xbe, 0x50, 0xde, 0xf2, 0x85, 0xa3, 0x6d, 0x5f, - 0x38, 0xda, 0xf2, 0x85, 0xad, 0x8f, 0x54, 0xda, 0xf2, 0x85, 0xca, 0xf4, 0x29, 0xf0, 0xf3, 0xef, - 0x37, 0xff, 0x68, 0x75, 0xba, 0xff, 0xb4, 0xed, 0xdf, 0x8e, 0xa7, 0x4f, 0xa7, 0xfb, 0x1a, 0x8e, - 0xce, 0x3b, 0xb5, 0xf3, 0xa8, 0xc1, 0x72, 0x63, 0xc6, 0x5c, 0xc3, 0x8c, 0x01, 0xe1, 0x56, 0x03, - 0x00, 0xb9, 0x01, 0xb9, 0x65, 0x0c, 0xb9, 0x99, 0x9e, 0x61, 0x4f, 0x46, 0xb7, 0xcc, 0x8d, 0x01, - 0xdc, 0x8e, 0x23, 0x7c, 0x35, 0x1e, 0x37, 0x1b, 0xc3, 0x16, 0xcb, 0xe0, 0x5e, 0x65, 0xdd, 0x4f, - 0x49, 0xe2, 0x56, 0x65, 0xb2, 0x71, 0x71, 0xee, 0x1a, 0x65, 0x70, 0xa5, 0xb2, 0x97, 0xb6, 0x5c, - 0x3a, 0x29, 0x9f, 0x54, 0x8f, 0x4b, 0x27, 0x95, 0x04, 0xad, 0x71, 0xde, 0x6c, 0xef, 0x9d, 0xeb, - 0x4c, 0xc6, 0x31, 0xcd, 0xef, 0x62, 0x0c, 0x58, 0x60, 0x58, 0xe0, 0x8c, 0x59, 0x60, 0x8b, 0x99, - 0xc3, 0x68, 0x1d, 0x0d, 0x7d, 0x3f, 0x30, 0x8a, 0x01, 0x6e, 0x2f, 0x89, 0xdf, 0x8f, 0x1f, 0x0f, - 0xfc, 0xdf, 0xcf, 0x07, 0xcd, 0x7b, 0xf1, 0xf9, 0xc5, 0x47, 0x63, 0xce, 0xdb, 0x26, 0x45, 0xad, - 0x88, 0x28, 0x6b, 0xbf, 0xae, 0x55, 0xe6, 0x43, 0x40, 0xa9, 0x40, 0xa9, 0x64, 0x4c, 0xa9, 0x44, - 0x15, 0xee, 0x35, 0xb5, 0x52, 0x8e, 0xf0, 0xdd, 0xba, 0x3d, 0x19, 0xcd, 0x1e, 0x7d, 0x9a, 0x00, - 0x25, 0xf1, 0xff, 0x4d, 0xd8, 0x22, 0xf7, 0x20, 0xa2, 0x86, 0x58, 0x7e, 0x3f, 0x9a, 0x7a, 0x28, - 0x42, 0x3d, 0x40, 0x3d, 0xa8, 0x51, 0x0f, 0x5f, 0xb8, 0x1b, 0x6d, 0xbb, 0xb9, 0x3d, 0x9e, 0x88, - 0xe8, 0x7b, 0xe5, 0xd3, 0xd8, 0xf3, 0x61, 0x22, 0x2e, 0x6f, 0x3c, 0xff, 0x2e, 0x76, 0x48, 0xa7, - 0x8c, 0x50, 0x4e, 0x79, 0x21, 0x9c, 0xb2, 0x42, 0x37, 0xa5, 0x87, 0x6c, 0x4a, 0x0f, 0xd5, 0x94, - 0x1a, 0xa2, 0x49, 0x1b, 0x22, 0x13, 0x3b, 0x14, 0xd3, 0x97, 0x97, 0x09, 0xb7, 0xc5, 0x51, 0x49, - 0xc2, 0xcd, 0xcf, 0x71, 0x8c, 0x21, 0xe4, 0x44, 0x45, 0x4a, 0x08, 0x4c, 0x95, 0x19, 0x05, 0x29, - 0x39, 0xa4, 0x4e, 0x76, 0xd4, 0xa3, 0x8a, 0x78, 0x39, 0x09, 0x51, 0x8e, 0x52, 0xa3, 0x1b, 0x55, - 0x6d, 0x81, 0x2c, 0x06, 0x4f, 0xe9, 0x5e, 0x68, 0x8a, 0x15, 0xa4, 0xba, 0xc5, 0x8b, 0x20, 0x6b, - 0x05, 0x67, 0x22, 0xa4, 0xa0, 0x8d, 0xe5, 0x38, 0x80, 0x1b, 0x80, 0x1b, 0x80, 0x1b, 0x80, 0x1b, - 0x80, 0x1b, 0x80, 0x1b, 0x80, 0x1b, 0x19, 0x87, 0x1b, 0x59, 0x0d, 0x9c, 0x8f, 0xc4, 0x28, 0xee, - 0xbd, 0x11, 0x36, 0xff, 0xff, 0x2c, 0x06, 0x4d, 0x00, 0xe1, 0xea, 0xb2, 0x91, 0x73, 0xcf, 0x8c, - 0xb1, 0xcb, 0xef, 0x4d, 0xc1, 0x62, 0x85, 0x5c, 0x05, 0x87, 0xc2, 0x2d, 0x8d, 0x3a, 0x60, 0x07, - 0x1a, 0x56, 0xcb, 0x2d, 0x4d, 0x40, 0xc8, 0x0d, 0x67, 0x3c, 0xd7, 0x4b, 0x31, 0x2e, 0x6d, 0x22, - 0x98, 0xad, 0x42, 0x63, 0xc0, 0x6c, 0xc1, 0xc5, 0xe3, 0x99, 0xe9, 0xb1, 0xf8, 0x0e, 0x5b, 0xa7, - 0x7e, 0xde, 0xfa, 0x5e, 0xef, 0xb5, 0x3b, 0x8d, 0xef, 0xb5, 0xab, 0x7a, 0xaf, 0x76, 0xb9, 0xec, - 0xaa, 0x13, 0x55, 0xa4, 0x24, 0x94, 0x90, 0x92, 0x54, 0xec, 0xe0, 0xc5, 0x2b, 0x2d, 0x5f, 0xb2, - 0xd6, 0x6c, 0x16, 0x74, 0xc4, 0x5a, 0xa9, 0x78, 0xa1, 0x76, 0xb3, 0xf6, 0x39, 0xee, 0x1b, 0xbd, - 0xa3, 0x81, 0x15, 0x49, 0xb8, 0x5d, 0x74, 0x9d, 0x89, 0x60, 0xc6, 0xd0, 0x32, 0xc7, 0xc6, 0xc0, - 0x1c, 0x8d, 0xb9, 0x7d, 0x17, 0xc3, 0xda, 0x05, 0xc7, 0x0a, 0x7b, 0x27, 0xc4, 0x86, 0xe6, 0xc4, - 0x9a, 0x6b, 0xcb, 0xa1, 0x69, 0x79, 0x08, 0x6a, 0x80, 0xb9, 0xcc, 0x9c, 0xb9, 0xbc, 0x75, 0x1c, - 0x8b, 0x99, 0xb1, 0xac, 0x63, 0x31, 0x01, 0x8a, 0xc3, 0x63, 0xf6, 0xc0, 0xe8, 0x3b, 0xa3, 0xd1, - 0xc4, 0xe6, 0xe2, 0x31, 0xba, 0xd2, 0x78, 0x35, 0x4e, 0x74, 0x85, 0x71, 0xd1, 0xba, 0xa8, 0x43, - 0x5f, 0x40, 0x5f, 0x64, 0x4d, 0x5f, 0xf8, 0x67, 0x23, 0xf7, 0x91, 0x50, 0x1e, 0xf3, 0x3c, 0xee, - 0xd8, 0xc6, 0x9c, 0x85, 0x88, 0xa3, 0x71, 0x5e, 0x0e, 0x03, 0x8d, 0x01, 0x8d, 0x91, 0x31, 0x8d, - 0xc1, 0xec, 0xc9, 0x88, 0xb9, 0x66, 0x5c, 0x1f, 0x3c, 0xf5, 0xea, 0x62, 0x32, 0x1e, 0x3b, 0xae, - 0x60, 0x03, 0xa3, 0x6f, 0x8e, 0xcd, 0x5b, 0x6e, 0x71, 0xc1, 0xe3, 0x04, 0x52, 0x6e, 0x19, 0x0f, - 0x0a, 0x04, 0x0a, 0x24, 0x63, 0x0a, 0x84, 0x2f, 0x99, 0xb4, 0x98, 0x09, 0x1d, 0xfa, 0x49, 0xbc, - 0xb3, 0x6f, 0xed, 0x97, 0x0d, 0x90, 0x53, 0x4f, 0xdd, 0x9d, 0xb7, 0xcf, 0xbe, 0xb5, 0xd3, 0x4c, - 0xd5, 0x7d, 0xeb, 0xd4, 0x3e, 0xd7, 0xbf, 0x5e, 0x37, 0x7b, 0x9d, 0xfa, 0xe5, 0x55, 0xad, 0x73, - 0x95, 0xe6, 0x77, 0xa9, 0x5d, 0x5e, 0x1c, 0x95, 0x52, 0xfd, 0x02, 0x5f, 0xbe, 0xcc, 0x1b, 0x2b, - 0x5d, 0xa6, 0xf9, 0x25, 0x3a, 0xad, 0xeb, 0xab, 0x7a, 0xaf, 0x53, 0xff, 0xda, 0xa9, 0x5f, 0xfe, - 0x27, 0x73, 0x9c, 0x6f, 0x48, 0xd5, 0xdf, 0xe4, 0x9e, 0xa8, 0x09, 0x11, 0x31, 0xb0, 0xfe, 0x9c, - 0xdb, 0x75, 0x8b, 0xcd, 0x8c, 0xdb, 0x4c, 0xd9, 0xd9, 0x13, 0xcb, 0x8a, 0xa0, 0xc0, 0xcf, 0xcd, - 0x87, 0xf8, 0x83, 0xb4, 0xdc, 0x01, 0x73, 0xd9, 0xe0, 0xec, 0x71, 0x39, 0x84, 0x2a, 0x34, 0xf9, - 0x4e, 0xe2, 0x26, 0x44, 0xbd, 0x91, 0x8f, 0x71, 0x13, 0xbf, 0x9b, 0xb8, 0xbf, 0xfd, 0x96, 0x3b, - 0xbc, 0xe1, 0xbc, 0xf0, 0xae, 0xbb, 0x3b, 0x7a, 0x5e, 0x2b, 0xd8, 0xeb, 0xee, 0x8a, 0x92, 0x43, - 0xa6, 0x1d, 0x85, 0x46, 0xc5, 0x51, 0xd0, 0x70, 0x74, 0x14, 0x1c, 0x15, 0xfd, 0xc6, 0x46, 0xbd, - 0xb1, 0xd1, 0x6e, 0x2c, 0x94, 0x2b, 0xf7, 0x54, 0x85, 0x4d, 0x13, 0x2a, 0xf4, 0x57, 0x32, 0x11, - 0xd1, 0xcd, 0x5b, 0x7e, 0x1f, 0xf9, 0x72, 0x70, 0xeb, 0x12, 0x65, 0xdb, 0x23, 0xe7, 0xcb, 0xf5, - 0x1d, 0xdb, 0x66, 0x7d, 0x61, 0xb8, 0x4c, 0xb8, 0x8f, 0xf1, 0x7d, 0xaa, 0xf5, 0xe1, 0x22, 0x2e, - 0xf7, 0x8b, 0x7b, 0x9b, 0xa3, 0x43, 0x44, 0xc5, 0x23, 0x2a, 0x9e, 0xfa, 0xac, 0xc6, 0xc3, 0xfd, - 0xfa, 0xa3, 0xe2, 0x07, 0xac, 0xcf, 0x47, 0xa6, 0x15, 0xab, 0x0b, 0x82, 0x6f, 0xb4, 0x4a, 0x31, - 0xc6, 0x08, 0x04, 0x06, 0x97, 0x10, 0x66, 0xbf, 0x79, 0x99, 0x4b, 0x08, 0xb3, 0x0f, 0xe9, 0x48, - 0x4a, 0xdf, 0x82, 0xa3, 0x1c, 0x6d, 0x01, 0x92, 0xf9, 0x02, 0xcb, 0xfc, 0xd3, 0xb1, 0x06, 0xf1, - 0x3a, 0x47, 0xf9, 0xfa, 0xf7, 0x79, 0xa8, 0xf8, 0x08, 0xe8, 0x04, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x48, 0x1d, 0x02, 0xfa, 0x87, 0xb1, - 0xb1, 0x69, 0xf1, 0x7b, 0x66, 0x70, 0x5b, 0x30, 0xf7, 0xde, 0xb4, 0xe2, 0x43, 0xa1, 0x0d, 0x63, - 0x82, 0x15, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, - 0x4a, 0x34, 0x26, 0x1a, 0x71, 0x9b, 0x8f, 0x26, 0x23, 0xc3, 0x1c, 0xdc, 0x33, 0x57, 0x70, 0x6f, - 0x1e, 0xbc, 0x22, 0x11, 0x1f, 0xbd, 0x31, 0x3e, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, - 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xea, 0x53, 0xed, 0x45, 0x8e, 0x8a, 0x5d, 0x04, - 0x9b, 0x1e, 0x2c, 0x43, 0xf8, 0x92, 0x90, 0x83, 0x16, 0x33, 0x55, 0x35, 0x46, 0x8a, 0x6a, 0xe4, - 0x50, 0xc4, 0x12, 0x42, 0x11, 0x75, 0x82, 0x34, 0x84, 0x22, 0xee, 0x2c, 0x35, 0x08, 0x45, 0x84, - 0x23, 0x05, 0x47, 0x0a, 0x8e, 0x14, 0x1c, 0x29, 0x38, 0x52, 0x70, 0xa4, 0xe0, 0x48, 0xe9, 0x72, - 0xa4, 0x10, 0x8a, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0xb4, 0xc3, 0x32, 0x23, 0x14, 0x11, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, - 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0xa1, 0x88, 0xc0, 0x4a, 0xc0, 0x4a, 0xc0, - 0x4a, 0xc0, 0x4a, 0xc0, 0x4a, 0xc0, 0x4a, 0xc0, 0x4a, 0xc0, 0x4a, 0xbf, 0x5b, 0x66, 0x9b, 0xdd, - 0x39, 0x82, 0x9b, 0x82, 0x0d, 0x0c, 0x89, 0x97, 0x69, 0x1b, 0x47, 0x05, 0xa4, 0x01, 0xa4, 0x01, - 0xa4, 0x01, 0xa4, 0x01, 0xa4, 0x01, 0xa4, 0x01, 0xa4, 0x01, 0xa4, 0x91, 0xff, 0x8d, 0x34, 0x65, - 0x57, 0x84, 0x28, 0x3d, 0x1e, 0x7e, 0x31, 0x52, 0x5c, 0x92, 0x3d, 0x54, 0xa5, 0xf3, 0xbd, 0x37, - 0xda, 0xa1, 0x5f, 0x2d, 0x06, 0xa3, 0x2c, 0xf0, 0xee, 0x9a, 0xb6, 0x37, 0x76, 0x5c, 0x11, 0xa1, - 0xc6, 0xbb, 0xff, 0x55, 0x94, 0x79, 0x27, 0x44, 0xb2, 0x28, 0xf3, 0x8e, 0x32, 0xef, 0x2a, 0x5d, - 0x37, 0xe4, 0x56, 0x69, 0xb0, 0xec, 0x91, 0x73, 0xab, 0x2c, 0xa7, 0x6f, 0x5a, 0x86, 0x39, 0x18, - 0xb8, 0xcc, 0xf3, 0xe2, 0x13, 0x21, 0xeb, 0xc3, 0x81, 0x01, 0x01, 0x03, 0x02, 0x06, 0x24, 0x94, - 0xbc, 0x4c, 0xec, 0x68, 0xfd, 0x37, 0x03, 0xb6, 0xe6, 0x24, 0xc6, 0x18, 0xcb, 0xd7, 0xd1, 0xce, - 0x57, 0xf8, 0x9d, 0x05, 0xc7, 0x31, 0x55, 0x8a, 0xec, 0x15, 0x92, 0xbb, 0x52, 0xf2, 0x56, 0x6c, - 0xc3, 0xca, 0xdd, 0x97, 0x25, 0xae, 0x5d, 0x60, 0x0d, 0x3f, 0x49, 0x1c, 0xb3, 0x6d, 0x0a, 0xc1, - 0x5c, 0x5b, 0xda, 0x72, 0xfa, 0x03, 0xff, 0xf5, 0xfe, 0xfd, 0xcd, 0xa1, 0x71, 0xd2, 0x7d, 0xba, - 0x29, 0x1a, 0x27, 0xdd, 0xc5, 0xc7, 0xe2, 0xfc, 0x8f, 0xc5, 0xe7, 0xd2, 0xcd, 0xa1, 0x51, 0x5e, - 0x7d, 0xae, 0xdc, 0x1c, 0x1a, 0x95, 0xee, 0xfe, 0x8f, 0x1f, 0x1f, 0xf7, 0x7f, 0x1d, 0x4d, 0xc3, - 0x7f, 0xf1, 0x8f, 0x82, 0xb4, 0x87, 0xef, 0x4a, 0x19, 0x69, 0xfa, 0x21, 0xc1, 0xc2, 0x59, 0x85, - 0x70, 0x2e, 0x84, 0xd3, 0x34, 0x86, 0x35, 0xe3, 0x6b, 0xf7, 0x57, 0xf1, 0x43, 0x79, 0x7a, 0xba, - 0xff, 0xeb, 0x78, 0xfa, 0xfa, 0x2f, 0x9f, 0x36, 0xfd, 0x58, 0xf1, 0xc3, 0xf1, 0xf4, 0x74, 0xcb, - 0xbf, 0x54, 0xa7, 0xa7, 0x3b, 0x8e, 0x51, 0x99, 0xbe, 0x0f, 0xfc, 0xe8, 0xec, 0xef, 0x4b, 0xdb, - 0xbe, 0x50, 0xde, 0xf2, 0x85, 0xa3, 0x6d, 0x5f, 0x38, 0xda, 0xf2, 0x85, 0xad, 0x8f, 0x54, 0xda, - 0xf2, 0x85, 0xca, 0xf4, 0x29, 0xf0, 0xf3, 0xef, 0x37, 0xff, 0x68, 0x75, 0xba, 0xff, 0xb4, 0xed, - 0xdf, 0x8e, 0xa7, 0x4f, 0xa7, 0xfb, 0x09, 0x3c, 0xaa, 0xef, 0xf4, 0x3e, 0x47, 0x4c, 0x55, 0x21, - 0xd1, 0xe2, 0x7b, 0xc2, 0xe5, 0xf6, 0x9d, 0x4c, 0x6b, 0xff, 0x09, 0x97, 0xe1, 0x81, 0xb5, 0x19, - 0x89, 0x89, 0x31, 0xe0, 0x5e, 0xdf, 0xb9, 0x67, 0x32, 0x0a, 0x6b, 0xac, 0x0f, 0x17, 0x3f, 0x2c, - 0x70, 0x68, 0x5a, 0x1e, 0xae, 0xd1, 0xe1, 0x44, 0xc2, 0x89, 0x0c, 0x29, 0x2f, 0xb7, 0x8e, 0x63, - 0x31, 0x53, 0x8a, 0x1b, 0x59, 0x4c, 0xb0, 0xfa, 0x1a, 0x9b, 0x9e, 0xc7, 0xef, 0x99, 0x31, 0x72, - 0x06, 0x12, 0x62, 0x78, 0xd6, 0x46, 0x83, 0xf2, 0x82, 0xf2, 0x82, 0xf2, 0x82, 0xf2, 0x52, 0xa7, - 0xbc, 0x44, 0x7f, 0x6c, 0x8c, 0x64, 0x50, 0xee, 0xab, 0x81, 0xa0, 0x6a, 0xa0, 0x6a, 0xa0, 0x6a, - 0x42, 0xc9, 0xcb, 0x84, 0xdb, 0xa2, 0x58, 0x95, 0xa0, 0x69, 0xaa, 0x88, 0x0e, 0x94, 0xaa, 0x56, - 0x02, 0xc3, 0x21, 0x3a, 0x30, 0x31, 0x5b, 0x50, 0xad, 0x54, 0x8e, 0x2a, 0x88, 0x10, 0xd4, 0xc6, - 0xf3, 0x64, 0x30, 0x42, 0x70, 0x15, 0x08, 0x86, 0x12, 0xcc, 0x28, 0xc1, 0x4c, 0x0e, 0xb1, 0x10, - 0x26, 0xb4, 0xc3, 0x17, 0x11, 0x26, 0x04, 0xcf, 0x05, 0x9e, 0x4b, 0x82, 0x3c, 0x17, 0x84, 0x09, - 0x05, 0x17, 0x05, 0x61, 0x42, 0xd1, 0x57, 0x0e, 0x61, 0x42, 0x08, 0x13, 0x4a, 0xae, 0x70, 0x22, - 0x4c, 0x08, 0x61, 0x42, 0x08, 0x13, 0x92, 0x43, 0x71, 0xec, 0x21, 0x4c, 0xe8, 0x77, 0xca, 0x00, - 0x61, 0x42, 0x5b, 0x9c, 0xbf, 0x50, 0x49, 0x7e, 0x6f, 0x78, 0x7e, 0x21, 0xb2, 0xfe, 0xe0, 0xf6, - 0xc1, 0xed, 0x83, 0xdb, 0xb7, 0x8a, 0x51, 0x71, 0x5c, 0x61, 0xd8, 0x93, 0xd1, 0x2d, 0x73, 0x71, - 0x6b, 0xb5, 0x78, 0x10, 0xdc, 0x5a, 0xe9, 0x86, 0xfd, 0xb8, 0xb5, 0xc2, 0xad, 0x95, 0x0a, 0xd8, - 0x81, 0xe8, 0x64, 0x80, 0x18, 0x80, 0x98, 0xec, 0x81, 0x18, 0x44, 0x27, 0x47, 0x41, 0x7e, 0x88, - 0x4e, 0x86, 0xf2, 0x82, 0xf2, 0x82, 0xf2, 0xa2, 0x51, 0x5e, 0x2e, 0x1b, 0x39, 0x82, 0xc9, 0xbb, - 0xf0, 0x7f, 0x35, 0x1e, 0x14, 0x0f, 0x14, 0x0f, 0x14, 0x4f, 0x28, 0x79, 0x91, 0x72, 0xb9, 0x9d, - 0xd1, 0x6b, 0x7f, 0xa9, 0x97, 0xd7, 0x32, 0xef, 0x05, 0xa5, 0xdf, 0x07, 0xa6, 0xee, 0x92, 0x3a, - 0x2b, 0x37, 0x4d, 0x92, 0x2f, 0xa1, 0x53, 0x21, 0x64, 0xb8, 0x6c, 0x4e, 0xe5, 0x65, 0x73, 0x17, - 0x5c, 0xe2, 0x36, 0x3c, 0x2b, 0xe7, 0x0e, 0xf3, 0xe5, 0x60, 0x40, 0xb2, 0x40, 0xb2, 0x40, 0xb2, - 0xe1, 0xa8, 0x2c, 0x5c, 0x62, 0xbe, 0x7e, 0x10, 0x5c, 0x62, 0xee, 0x69, 0x84, 0x89, 0x7b, 0xb8, - 0xc4, 0xc4, 0x25, 0xa6, 0x22, 0xe0, 0x81, 0x34, 0x7f, 0x00, 0x0e, 0x00, 0x0e, 0xbd, 0x80, 0x03, - 0x69, 0xfe, 0xc0, 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0xa9, 0xc2, 0x1a, 0x59, 0x4e, 0xf3, 0x47, 0x2f, - 0xa0, 0x37, 0x56, 0x48, 0x56, 0x3b, 0x20, 0x7f, 0x3c, 0xc2, 0x8e, 0x40, 0x13, 0x8f, 0x19, 0xa3, - 0x89, 0x25, 0xf8, 0xd8, 0x62, 0xc6, 0x6c, 0x01, 0xbc, 0xf0, 0xad, 0x81, 0x36, 0x8c, 0x81, 0x1e, - 0x41, 0x84, 0xb8, 0x14, 0x3d, 0x82, 0xd0, 0x23, 0x48, 0xa5, 0x23, 0x86, 0xe2, 0x1f, 0x1a, 0x8c, - 0x7e, 0xe4, 0xe2, 0x1f, 0xcc, 0x36, 0x6f, 0x2d, 0x36, 0x88, 0xcf, 0x61, 0xac, 0x06, 0x42, 0xfc, - 0x22, 0xb8, 0x10, 0x70, 0x21, 0x5a, 0xb8, 0x90, 0x34, 0xc6, 0x2f, 0x66, 0xcf, 0x15, 0x0a, 0xe2, - 0xdb, 0x04, 0x95, 0x3e, 0x63, 0xb3, 0x83, 0x11, 0x19, 0xfd, 0xb0, 0xf0, 0xea, 0x08, 0xd8, 0x07, - 0xd8, 0x27, 0xa9, 0xd8, 0x27, 0xa2, 0x33, 0x20, 0xc7, 0x29, 0x88, 0x79, 0x40, 0x80, 0x58, 0x80, - 0x58, 0x74, 0x21, 0x96, 0xa8, 0x07, 0xce, 0x1f, 0xc0, 0xb4, 0x2c, 0xe7, 0xdf, 0x67, 0x23, 0x69, - 0x7a, 0xf1, 0xf7, 0x7b, 0x25, 0x81, 0xc1, 0xa1, 0x63, 0x6e, 0x93, 0x24, 0xc7, 0x44, 0x92, 0x83, - 0x22, 0xed, 0xd8, 0xcb, 0x3c, 0xfe, 0xf2, 0xd5, 0x80, 0x6c, 0x75, 0xa0, 0x4c, 0x2d, 0x28, 0x53, - 0x0f, 0x4a, 0xd4, 0x44, 0x3c, 0x75, 0x11, 0x53, 0x6d, 0xc8, 0x73, 0x78, 0x14, 0x38, 0x3e, 0x92, - 0x1c, 0xa0, 0xf8, 0x0b, 0x4c, 0xab, 0xc9, 0x63, 0x3a, 0x48, 0xd2, 0x1d, 0xa5, 0x99, 0x83, 0x11, - 0xc9, 0x5b, 0x8a, 0xe1, 0x81, 0x46, 0x40, 0xf9, 0xd1, 0x0a, 0x48, 0x07, 0xc4, 0x36, 0x4a, 0x21, - 0x69, 0xe9, 0xb0, 0xb1, 0x04, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, - 0x08, 0xd8, 0x08, 0xd8, 0x98, 0x56, 0xd8, 0x18, 0x21, 0xf0, 0x28, 0x06, 0x6a, 0xcc, 0xc5, 0xbd, - 0x05, 0x8b, 0xc8, 0x82, 0xff, 0x26, 0x6c, 0xe9, 0xda, 0x63, 0xe7, 0xcb, 0x49, 0xda, 0xb3, 0x39, - 0x7a, 0xf5, 0xd0, 0xaa, 0x09, 0x4d, 0x61, 0xd0, 0x14, 0x06, 0x77, 0x23, 0x6a, 0x31, 0x37, 0xe2, - 0x42, 0xe4, 0xe2, 0x66, 0xb8, 0xcb, 0x70, 0x97, 0xa9, 0xf1, 0x2e, 0xe2, 0x42, 0x92, 0x8e, 0xaf, - 0x10, 0x2b, 0xbf, 0xeb, 0x52, 0x49, 0x0a, 0x9a, 0x7f, 0x8d, 0x3e, 0xa5, 0xc5, 0xce, 0xbf, 0x8b, - 0xb1, 0xc6, 0x33, 0x2d, 0x3a, 0x7b, 0xd2, 0xd5, 0xeb, 0xef, 0x58, 0x8a, 0xa6, 0xd0, 0xe4, 0x9e, - 0xa8, 0x09, 0xb1, 0x9b, 0x81, 0x2f, 0x9c, 0x73, 0xbb, 0x6e, 0xb1, 0x99, 0x2a, 0xf4, 0x0a, 0xa7, - 0x7b, 0xf6, 0xc4, 0xb2, 0x76, 0x88, 0xf7, 0x3f, 0x37, 0x1f, 0xc2, 0x7f, 0xa9, 0xe5, 0x0e, 0x98, - 0xcb, 0x06, 0x67, 0x8f, 0xcb, 0xaf, 0xc4, 0x5a, 0x9b, 0x90, 0x72, 0x17, 0x49, 0xde, 0x76, 0x10, - 0xae, 0xdf, 0x08, 0xd5, 0xef, 0x65, 0x68, 0xbb, 0x64, 0x6c, 0xfe, 0x97, 0x2d, 0xeb, 0xb1, 0xeb, - 0x3a, 0x84, 0x79, 0xff, 0xcd, 0x0f, 0x1e, 0x7c, 0xac, 0x0d, 0x8f, 0x54, 0x18, 0x33, 0xe6, 0x1a, - 0x77, 0xae, 0x33, 0x19, 0x6f, 0x27, 0x61, 0x9f, 0x8b, 0x42, 0xbc, 0xf8, 0xe1, 0x2d, 0xaf, 0xf7, - 0x7b, 0x4f, 0xe8, 0x4d, 0xf8, 0xb5, 0x0b, 0xbc, 0xda, 0x1d, 0x3e, 0xed, 0x0a, 0x8f, 0x42, 0xc3, - 0x9f, 0xd0, 0xf0, 0x26, 0x14, 0x7c, 0x09, 0x27, 0x50, 0x6f, 0x79, 0x06, 0x2f, 0x76, 0xed, 0xed, - 0x85, 0x08, 0xee, 0xf4, 0x5b, 0x2b, 0xb1, 0x9b, 0xeb, 0xbb, 0x33, 0xee, 0x0e, 0x83, 0xaf, 0xc3, - 0xe3, 0xe8, 0xb0, 0x78, 0x39, 0x32, 0x2e, 0x8e, 0x8c, 0x7f, 0x23, 0xe1, 0xdc, 0x78, 0x56, 0x6b, - 0x57, 0xd7, 0xb2, 0x60, 0x0e, 0xb9, 0xe1, 0x99, 0x43, 0x1e, 0x21, 0x57, 0xec, 0xf9, 0xab, 0x48, - 0x11, 0x23, 0x74, 0xcb, 0x72, 0x9d, 0x22, 0xb6, 0x92, 0xb9, 0xe8, 0x5c, 0xa0, 0x3f, 0x02, 0x42, - 0xa5, 0x41, 0x07, 0x66, 0x83, 0x0e, 0x34, 0x07, 0x83, 0x90, 0xf9, 0xbe, 0xdb, 0x4f, 0x87, 0x3f, - 0x14, 0x02, 0xa6, 0x41, 0xe5, 0xe5, 0x82, 0xca, 0x8b, 0x1d, 0xf9, 0x12, 0x33, 0x53, 0x21, 0x20, - 0x76, 0xb1, 0x32, 0x16, 0x24, 0x1d, 0x44, 0x69, 0x07, 0x52, 0xe6, 0xc1, 0x94, 0x7f, 0x40, 0x65, - 0x1f, 0x54, 0x65, 0x07, 0x56, 0xd9, 0xc1, 0x55, 0x72, 0x80, 0xe3, 0x1d, 0xe4, 0x98, 0x07, 0x5a, - 0xda, 0xc1, 0xf6, 0x07, 0x62, 0x16, 0xbf, 0xe3, 0xb7, 0x16, 0x33, 0x16, 0x5b, 0x69, 0x8c, 0x1d, - 0x8b, 0xf7, 0x1f, 0xe5, 0x09, 0x8b, 0x7f, 0x1b, 0xb7, 0x79, 0x9e, 0x0f, 0x89, 0x2c, 0x57, 0x24, - 0x4b, 0x31, 0xa8, 0x50, 0x10, 0xea, 0x14, 0x85, 0x2a, 0x85, 0xa1, 0x5c, 0x71, 0x28, 0x57, 0x20, - 0x4a, 0x15, 0x89, 0x1c, 0x85, 0x22, 0x49, 0xb1, 0xf8, 0x6f, 0x2a, 0x2d, 0xe8, 0x2d, 0x20, 0xaf, - 0x16, 0x33, 0x87, 0x2e, 0x1b, 0xaa, 0x68, 0xba, 0x7e, 0x2c, 0xb7, 0xe9, 0xfa, 0x92, 0xc9, 0xee, - 0x1b, 0xee, 0xd8, 0xb1, 0x4e, 0x5d, 0x67, 0x22, 0xb8, 0x7d, 0xb7, 0xd4, 0x5c, 0xfe, 0x5f, 0x2f, - 0xfe, 0xaf, 0x31, 0x60, 0x43, 0x6e, 0x73, 0xc1, 0x1d, 0xdb, 0xdb, 0xfe, 0x4f, 0xfe, 0xbf, 0xcc, - 0xe9, 0xfc, 0x84, 0xb4, 0xed, 0x96, 0x51, 0x7b, 0xce, 0x65, 0x7d, 0xc6, 0xef, 0x99, 0x7c, 0xb3, - 0xb1, 0x1a, 0x58, 0x92, 0x54, 0x4b, 0x0e, 0x8e, 0x86, 0xfd, 0x81, 0xfd, 0x81, 0xfd, 0x49, 0x99, - 0xfd, 0x91, 0x17, 0x7c, 0x1d, 0xb0, 0x3f, 0xc5, 0x0c, 0xa9, 0x74, 0x8f, 0xd9, 0x03, 0xf9, 0xfa, - 0x7c, 0x3e, 0x2a, 0x94, 0x39, 0x94, 0x39, 0x94, 0x39, 0x94, 0x39, 0x94, 0x39, 0xa5, 0x32, 0x37, - 0x46, 0x32, 0x0b, 0x44, 0xbf, 0x54, 0xe8, 0xf3, 0x91, 0xa1, 0x7c, 0xa1, 0x7c, 0xa1, 0x7c, 0x73, - 0xa5, 0x7c, 0x27, 0xdc, 0x16, 0x9f, 0x14, 0xa8, 0xde, 0x8a, 0xc4, 0x21, 0xe5, 0x74, 0x48, 0x78, - 0xfd, 0x4b, 0xee, 0x71, 0xda, 0x93, 0xdd, 0x41, 0x41, 0xb1, 0x56, 0x0d, 0x0c, 0x2f, 0xb9, 0xc3, - 0x42, 0x60, 0x7c, 0x05, 0xa5, 0xfe, 0x15, 0x9d, 0xb6, 0xf5, 0x2d, 0x35, 0x1f, 0x52, 0xbf, 0xa5, - 0xa5, 0x4a, 0x25, 0xc5, 0x9b, 0xfa, 0x2e, 0x99, 0xa3, 0x75, 0x93, 0x02, 0x2d, 0xb5, 0xde, 0x61, - 0x4a, 0x4a, 0xe6, 0x7e, 0x06, 0xb9, 0x6f, 0x46, 0xa0, 0xbf, 0x88, 0x07, 0x7f, 0xf1, 0xf9, 0xc0, - 0x0f, 0xf6, 0xf4, 0x3f, 0x1d, 0xf8, 0xb1, 0x42, 0xb1, 0x8a, 0x02, 0xc5, 0x5f, 0xe7, 0x18, 0x6b, - 0x1c, 0xb3, 0x58, 0x50, 0x10, 0xe9, 0xc7, 0x28, 0x1a, 0x14, 0x70, 0xae, 0x64, 0x45, 0x6e, 0x94, - 0x10, 0xb9, 0x91, 0x00, 0xd8, 0x8e, 0xc8, 0x8d, 0xdd, 0xdf, 0x08, 0x91, 0x1b, 0xf0, 0xf7, 0xe1, - 0xef, 0xc3, 0xdf, 0x4f, 0xa1, 0xbf, 0x8f, 0xc8, 0x0d, 0x44, 0x6e, 0xec, 0x2c, 0x2c, 0x88, 0xdc, - 0x80, 0xfd, 0x81, 0xfd, 0x81, 0xfd, 0x91, 0x28, 0xaf, 0xb8, 0xec, 0xdb, 0xcd, 0xef, 0x47, 0xe4, - 0x06, 0x94, 0x39, 0x94, 0x39, 0x94, 0x39, 0x94, 0x79, 0x36, 0x94, 0x39, 0x22, 0x37, 0xa0, 0x7c, - 0xa1, 0x7c, 0xa1, 0x7c, 0xe5, 0xc9, 0x2b, 0x22, 0x37, 0x24, 0x0a, 0x24, 0x22, 0x37, 0xb6, 0x8f, - 0x8f, 0xc8, 0x0d, 0x6d, 0x5b, 0x8a, 0xc8, 0x0d, 0x05, 0xa3, 0x21, 0x72, 0x23, 0x3d, 0x91, 0x1b, - 0x31, 0xea, 0xf2, 0xc7, 0x5f, 0xe6, 0xac, 0xf6, 0x45, 0x88, 0xb0, 0x11, 0x85, 0x58, 0x31, 0x2c, - 0xaf, 0xab, 0x5f, 0xb6, 0x19, 0x73, 0xbf, 0xcd, 0xe6, 0xec, 0xd5, 0x86, 0xfc, 0xd2, 0x1c, 0xf2, - 0x5e, 0x6d, 0x30, 0x08, 0x51, 0x53, 0x35, 0xfe, 0x46, 0x45, 0x69, 0xdc, 0xb5, 0x5a, 0x15, 0x63, - 0xf9, 0x2a, 0x71, 0x4b, 0x19, 0xad, 0x0d, 0x87, 0xca, 0xe4, 0x28, 0x67, 0xa4, 0xc9, 0x81, 0x4a, - 0x6b, 0x65, 0xf2, 0xf8, 0x57, 0xd9, 0x32, 0xae, 0xae, 0xfd, 0xab, 0xea, 0x8f, 0x1f, 0x97, 0x71, - 0x86, 0x07, 0xeb, 0x27, 0x3b, 0xc9, 0x1a, 0x6d, 0x3c, 0xb6, 0x1e, 0xe3, 0x06, 0x1d, 0x3d, 0x2b, - 0xb4, 0x97, 0xa3, 0xa1, 0x3c, 0x5b, 0x61, 0x19, 0x6e, 0x00, 0x85, 0x16, 0x41, 0xa1, 0xcd, 0x17, - 0x0e, 0x05, 0xda, 0xa2, 0x09, 0x1e, 0x0a, 0xb4, 0xd1, 0x1d, 0x51, 0xd9, 0x47, 0x55, 0xd9, 0x91, - 0x55, 0x76, 0x74, 0xd5, 0x1c, 0xe1, 0x64, 0x38, 0xc9, 0xd2, 0x02, 0x7d, 0x07, 0x8b, 0xdb, 0x72, - 0x83, 0x3d, 0x8c, 0x1d, 0x57, 0x28, 0x8b, 0xf3, 0xdd, 0x3c, 0x8d, 0xfc, 0x1b, 0xff, 0x4e, 0xfd, - 0x7f, 0xea, 0x9f, 0xaf, 0x7a, 0x9d, 0xd6, 0xf5, 0x55, 0x1d, 0x77, 0x4f, 0x49, 0xd2, 0x43, 0xaa, - 0xf4, 0x91, 0x72, 0xbd, 0xa4, 0x5c, 0x3f, 0xa9, 0xd5, 0x53, 0x72, 0x69, 0xca, 0xe4, 0xdf, 0x3e, - 0xad, 0x34, 0xcd, 0x32, 0xca, 0x56, 0xcc, 0x26, 0x52, 0x10, 0x06, 0x50, 0x96, 0x38, 0x66, 0xdd, - 0x9e, 0x8c, 0x66, 0x8b, 0x31, 0xcd, 0x50, 0x68, 0xc1, 0x6a, 0x1b, 0xf8, 0x88, 0xc4, 0xae, 0xac, - 0x4f, 0x03, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x92, 0x39, 0xbb, 0xa2, 0xd8, - 0x4f, 0x51, 0xe2, 0x9f, 0x40, 0xd1, 0x43, 0xd1, 0x43, 0xd1, 0xa7, 0x45, 0xd1, 0x23, 0x11, 0x51, - 0x6a, 0x22, 0xa2, 0xa4, 0xfd, 0x0e, 0xd5, 0x16, 0x74, 0xe7, 0x51, 0xa3, 0xb4, 0x0f, 0xdd, 0x7d, - 0xf0, 0x08, 0x6d, 0x46, 0x77, 0x1e, 0xfc, 0x65, 0x3b, 0x52, 0xc9, 0x7a, 0xd0, 0x8f, 0xe3, 0xf4, - 0x98, 0x2b, 0x5b, 0x05, 0x2a, 0xd2, 0xdd, 0xaf, 0xf5, 0xb7, 0xb3, 0x58, 0x1d, 0xe3, 0xf6, 0xb1, - 0xa0, 0x20, 0x80, 0x4f, 0xb5, 0x1e, 0x0f, 0xe8, 0xf2, 0xf9, 0x4e, 0x24, 0x34, 0x68, 0x2d, 0x4b, - 0xe0, 0x52, 0x31, 0x59, 0xa1, 0x84, 0xa4, 0x00, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, - 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x54, 0x01, 0x2e, 0x91, 0x11, 0xb1, 0x2d, - 0x10, 0xff, 0x45, 0x6c, 0x25, 0xca, 0x59, 0xa2, 0x9c, 0xa5, 0x36, 0x04, 0x8f, 0x38, 0x37, 0xc4, - 0xb9, 0xfd, 0x66, 0x20, 0xc4, 0xb9, 0x81, 0x49, 0x00, 0x93, 0x00, 0x26, 0x21, 0x33, 0x4c, 0x02, - 0xe2, 0x11, 0x10, 0xe7, 0x06, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x82, 0x38, - 0xb7, 0x70, 0xbb, 0x8c, 0x38, 0x37, 0x28, 0x7a, 0x28, 0xfa, 0x5c, 0x2b, 0x7a, 0x5c, 0x45, 0xe2, - 0x2a, 0x52, 0xce, 0xe0, 0xb8, 0x8a, 0xa4, 0xd2, 0xdd, 0x7b, 0xb8, 0x8a, 0xd4, 0xa1, 0xcc, 0xf7, - 0x10, 0xe7, 0x16, 0xe6, 0x40, 0x21, 0xce, 0x0d, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, - 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x32, 0x35, 0xe0, 0x12, 0x71, 0x6e, 0xbb, 0xc4, 0xb9, - 0xa1, 0xf8, 0x6f, 0x62, 0xf6, 0x42, 0x79, 0xfd, 0xdf, 0xd9, 0x5c, 0xed, 0xc5, 0x54, 0x09, 0x2e, - 0x98, 0x19, 0xb3, 0x52, 0x9f, 0x9c, 0x0a, 0x7d, 0x59, 0x2b, 0x92, 0x89, 0xa2, 0xbf, 0xd1, 0x5c, - 0xa6, 0x14, 0x15, 0xfd, 0x8d, 0x5d, 0x22, 0x53, 0x4e, 0xed, 0xed, 0x80, 0xf4, 0xc9, 0xa8, 0xc1, - 0x2d, 0x99, 0x3a, 0x49, 0x7c, 0xc1, 0x4c, 0xf4, 0xc5, 0x47, 0x5f, 0x7c, 0xd5, 0x44, 0xc7, 0x33, - 0xc7, 0x39, 0x60, 0xb6, 0xe0, 0xe2, 0x51, 0x0e, 0xc9, 0xe1, 0x5b, 0x4e, 0x09, 0x5d, 0x55, 0x0a, - 0x8d, 0xe5, 0xa3, 0x9d, 0x99, 0x9e, 0x82, 0xd6, 0xcb, 0xb5, 0xaf, 0x8d, 0xde, 0xe5, 0xec, 0x7f, - 0xae, 0xfe, 0xdb, 0x96, 0x16, 0x22, 0x36, 0x6f, 0x2b, 0xe3, 0x49, 0xed, 0xc7, 0xa4, 0xc8, 0x9f, - 0x6f, 0xb4, 0xbf, 0x57, 0x7b, 0xcd, 0xda, 0x59, 0xbd, 0x59, 0xff, 0xd2, 0xbb, 0xbe, 0x68, 0x7c, - 0xae, 0x5d, 0x5e, 0x49, 0xa4, 0x07, 0x3f, 0x24, 0xfd, 0xfd, 0x2f, 0x3b, 0x57, 0xf5, 0x5e, 0xbb, - 0xd5, 0x6c, 0x7c, 0xfe, 0x6f, 0x6f, 0xb6, 0x16, 0x79, 0x7a, 0xf7, 0x66, 0xe3, 0xe2, 0xcf, 0xcb, - 0xab, 0xda, 0x55, 0x3d, 0x4f, 0x2f, 0xdd, 0x68, 0x7f, 0x2f, 0xe7, 0x51, 0xd0, 0x9b, 0xa5, 0xef, - 0xed, 0x8b, 0x5e, 0xfd, 0x7b, 0xfb, 0x22, 0x97, 0x22, 0xde, 0xbb, 0x6c, 0x7f, 0xcd, 0xe7, 0x8b, - 0xe7, 0x6d, 0xc7, 0x8f, 0x66, 0x72, 0x9e, 0xef, 0x53, 0xfe, 0xbd, 0xdd, 0xbc, 0xcc, 0xe5, 0x9e, - 0x57, 0xf3, 0xb8, 0xe7, 0x73, 0x59, 0xcf, 0x31, 0x84, 0x7b, 0xb1, 0xfb, 0xe7, 0xd7, 0xcd, 0xab, - 0xfc, 0xbe, 0x7f, 0x39, 0x9f, 0xef, 0xff, 0x0a, 0xc2, 0x97, 0xf3, 0xf4, 0xee, 0xdf, 0xdb, 0x17, - 0xdf, 0xcb, 0xbd, 0xaf, 0xcd, 0xd6, 0xff, 0x5e, 0xb6, 0xeb, 0x9f, 0x73, 0xa6, 0xf5, 0xf2, 0xab, - 0xed, 0x15, 0x6c, 0xb8, 0x94, 0x91, 0xba, 0xba, 0x79, 0x35, 0x2d, 0xc5, 0x36, 0x98, 0x6d, 0xde, - 0x5a, 0x6c, 0x20, 0x8f, 0x2d, 0x5f, 0x0d, 0x18, 0xb7, 0xd8, 0xc0, 0x73, 0x1e, 0xe4, 0xd0, 0xb4, - 0x3c, 0xf0, 0xee, 0x3b, 0x2c, 0x3d, 0x78, 0x77, 0xf0, 0xee, 0xdb, 0xdf, 0x48, 0x3e, 0xef, 0x7e, - 0xeb, 0x38, 0x16, 0x33, 0x6d, 0x99, 0x9c, 0x7b, 0x11, 0x81, 0x1c, 0x21, 0xc6, 0x91, 0x19, 0xc8, - 0x11, 0xa7, 0x5e, 0x14, 0x4d, 0x5c, 0xc5, 0x9d, 0x6b, 0xf6, 0xd9, 0x70, 0x62, 0x19, 0x2e, 0xf3, - 0x84, 0xe9, 0x8a, 0xf8, 0x11, 0x16, 0x81, 0x11, 0x11, 0x6b, 0x81, 0x58, 0x0b, 0x4d, 0x46, 0x02, - 0xed, 0x48, 0xd1, 0x8e, 0x14, 0x28, 0x0f, 0x28, 0x2f, 0x29, 0x45, 0xda, 0x64, 0x39, 0x86, 0x8a, - 0x1c, 0x44, 0x55, 0x8e, 0xa2, 0x64, 0x87, 0x51, 0xba, 0x4a, 0x51, 0xa1, 0x5a, 0xd4, 0xa9, 0x18, - 0x55, 0xaa, 0x46, 0xb9, 0xca, 0x51, 0xae, 0x7a, 0x94, 0xaa, 0x20, 0xb9, 0xc4, 0x58, 0xf2, 0x33, - 0xdc, 0xe4, 0x39, 0xa2, 0x92, 0x1d, 0x52, 0x79, 0x1b, 0x81, 0x6c, 0x90, 0x6d, 0x8e, 0xeb, 0x6b, - 0x27, 0x0e, 0x95, 0x8f, 0x51, 0xf9, 0x18, 0x90, 0x1a, 0x90, 0x1a, 0x90, 0x1a, 0x90, 0x1a, 0x90, - 0x1a, 0x90, 0x1a, 0x90, 0x1a, 0x90, 0x1a, 0x90, 0x3a, 0x1e, 0xa4, 0x46, 0x92, 0x75, 0xa2, 0xf6, - 0x43, 0x75, 0xa2, 0xf5, 0xb7, 0xe5, 0x7c, 0x9d, 0xe5, 0x74, 0x09, 0xbe, 0x14, 0xe4, 0xe3, 0xfb, - 0xb2, 0x61, 0x99, 0xb7, 0xcc, 0x62, 0x03, 0x63, 0x62, 0xf3, 0xbe, 0xe9, 0x49, 0xb8, 0x18, 0xdc, - 0x38, 0x2a, 0x2e, 0x07, 0x71, 0x39, 0xa8, 0x09, 0x85, 0xa4, 0xec, 0x72, 0x70, 0xb1, 0x23, 0x86, - 0xc5, 0x47, 0x5c, 0xc8, 0xa3, 0x33, 0xd6, 0x46, 0xc5, 0x45, 0x21, 0x58, 0x0d, 0xb0, 0x1a, 0x49, - 0x60, 0x35, 0x24, 0x45, 0x02, 0x04, 0xc4, 0x57, 0x4a, 0x44, 0x80, 0xe4, 0x03, 0x0f, 0xee, 0x01, - 0xdc, 0x03, 0xb8, 0x07, 0xb9, 0x0a, 0xc4, 0x1f, 0x70, 0x64, 0x3e, 0x18, 0x8b, 0x5d, 0x9f, 0x97, - 0x1f, 0x50, 0x94, 0x83, 0xb0, 0x36, 0x8b, 0xe4, 0xcd, 0x97, 0x4b, 0x70, 0x2a, 0x53, 0x36, 0x2a, - 0x95, 0x8e, 0x7a, 0xe5, 0xa3, 0x5a, 0x09, 0x91, 0x29, 0x23, 0x32, 0xa5, 0x44, 0xa2, 0x9c, 0xe4, - 0x2a, 0x29, 0xc9, 0xca, 0xca, 0x5f, 0x01, 0xe9, 0x84, 0x69, 0x40, 0xde, 0x27, 0xdc, 0x16, 0x47, - 0x25, 0x15, 0xf2, 0xbe, 0xd4, 0x2e, 0xc7, 0x0a, 0x86, 0xee, 0x98, 0xf6, 0x1d, 0x93, 0x5a, 0xf2, - 0xe5, 0xe5, 0x2f, 0x35, 0xe7, 0x73, 0x6f, 0x59, 0xef, 0x56, 0x99, 0x02, 0x50, 0xac, 0xd6, 0x03, - 0xd3, 0xcc, 0x0b, 0xef, 0x10, 0xcc, 0xf3, 0xd5, 0x35, 0xfb, 0x82, 0x3b, 0xf6, 0x17, 0x7e, 0xc7, - 0xe7, 0x95, 0x7c, 0x0f, 0x95, 0xcd, 0x37, 0xfd, 0xa0, 0x70, 0xeb, 0xcd, 0x87, 0xcc, 0x6d, 0x7d, - 0xb9, 0x74, 0x52, 0x3e, 0xa9, 0x1e, 0x97, 0x4e, 0x2a, 0x19, 0x92, 0x81, 0x77, 0xe9, 0x18, 0xb5, - 0x9b, 0xd4, 0x7a, 0xc4, 0x12, 0xfd, 0xb6, 0xb1, 0xcb, 0xee, 0x99, 0x2d, 0x0c, 0xc1, 0x4c, 0x77, - 0xe0, 0xfc, 0x6b, 0xab, 0x83, 0xd9, 0x81, 0x99, 0x24, 0x1b, 0x72, 0x45, 0x31, 0x0a, 0x80, 0xf2, - 0x80, 0xf2, 0x80, 0xf2, 0x80, 0xf2, 0x8a, 0x62, 0x20, 0x5e, 0xab, 0x17, 0x49, 0xb1, 0x10, 0xc9, - 0x36, 0x3a, 0xcb, 0x4b, 0x6b, 0x43, 0xf0, 0x11, 0x73, 0xd5, 0x59, 0x9c, 0xf5, 0x69, 0x60, 0x0e, - 0x60, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0x24, 0xca, 0xfb, 0x80, 0xf5, 0xf9, 0xc8, 0xb4, 0xaa, 0x65, - 0x95, 0x06, 0xa1, 0xa4, 0x60, 0xec, 0x80, 0xb3, 0x57, 0x02, 0x85, 0xa4, 0x87, 0x42, 0x2a, 0x81, - 0x42, 0xca, 0x2b, 0x85, 0x74, 0x84, 0xad, 0x07, 0x73, 0x94, 0x5e, 0x10, 0xff, 0xaf, 0xe9, 0xda, - 0xdc, 0xbe, 0x33, 0xc4, 0x4f, 0x97, 0x79, 0x3f, 0x1d, 0x6b, 0x60, 0x8c, 0xfb, 0x42, 0x1d, 0x98, - 0xdf, 0x3c, 0x1d, 0x40, 0x3d, 0x40, 0x3d, 0x40, 0x3d, 0x40, 0xbd, 0x44, 0x79, 0x1f, 0x33, 0xb7, - 0xcf, 0x6c, 0x61, 0xde, 0x31, 0x85, 0xa8, 0xbe, 0x02, 0xbc, 0xad, 0x07, 0x6f, 0xe3, 0xca, 0x36, - 0xb7, 0x78, 0x9b, 0x6a, 0xeb, 0x8b, 0x87, 0x40, 0xdc, 0x40, 0xdc, 0x52, 0x47, 0x92, 0x15, 0xa1, - 0x29, 0x39, 0xc5, 0xd0, 0x1f, 0x57, 0x66, 0x6a, 0xdb, 0xa6, 0x4c, 0xab, 0x83, 0x97, 0x99, 0x1e, - 0x52, 0xca, 0x79, 0xc8, 0xdb, 0x1f, 0x09, 0x7b, 0x23, 0xa9, 0xcc, 0x47, 0x00, 0xca, 0xc8, 0x28, - 0xf7, 0xf1, 0x5a, 0x8b, 0x4a, 0x8f, 0x97, 0x2f, 0x21, 0x5e, 0x3e, 0x45, 0x3e, 0x0f, 0xe2, 0xe5, - 0x11, 0x2f, 0x8f, 0x78, 0x79, 0x10, 0x30, 0x20, 0x60, 0x40, 0xc0, 0x28, 0x92, 0x77, 0xc4, 0xcb, - 0x83, 0x7c, 0x01, 0xf9, 0x02, 0xf2, 0x25, 0xd2, 0xd6, 0x23, 0x5e, 0x1e, 0x1c, 0x8c, 0xc2, 0x33, - 0x84, 0x78, 0x79, 0x40, 0x79, 0x40, 0x79, 0x40, 0x79, 0x40, 0xf9, 0x9d, 0xe4, 0x1d, 0xf1, 0xf2, - 0x52, 0xde, 0x15, 0xf1, 0xf2, 0x30, 0x07, 0x30, 0x07, 0x30, 0x07, 0x69, 0x37, 0x07, 0x88, 0x97, - 0x07, 0x85, 0x14, 0x73, 0x7b, 0x11, 0x2f, 0x9f, 0x5b, 0x0a, 0x09, 0xf1, 0xf2, 0x60, 0x8e, 0x52, - 0x0c, 0xe2, 0x11, 0x2f, 0x0f, 0x50, 0x0f, 0x50, 0x0f, 0x50, 0x9f, 0x35, 0x50, 0x8f, 0x78, 0xf9, - 0x2c, 0xe3, 0x6d, 0x5c, 0xd9, 0xe6, 0x16, 0x6f, 0x23, 0x5e, 0x1e, 0x88, 0x9b, 0x1e, 0x71, 0x23, - 0x5e, 0x5e, 0x7a, 0xbc, 0xbc, 0x84, 0x5e, 0x3d, 0xf2, 0xb6, 0x07, 0x3d, 0x96, 0x22, 0x6f, 0x64, - 0x41, 0x4a, 0xa6, 0xc1, 0xdb, 0xcd, 0x7e, 0x1a, 0xe3, 0xfb, 0x72, 0x73, 0xf1, 0x1c, 0xd7, 0x8b, - 0xc7, 0xe8, 0x2d, 0x1c, 0xa7, 0xe6, 0xfc, 0x29, 0xd0, 0xf4, 0x29, 0x41, 0x02, 0xa2, 0xba, 0xf1, - 0x53, 0x50, 0x16, 0x12, 0xdf, 0xfb, 0x49, 0x6e, 0xcf, 0x27, 0xf4, 0x7a, 0x42, 0xaf, 0x27, 0xcd, - 0xcc, 0x43, 0xca, 0x7a, 0x3d, 0x49, 0x6a, 0xff, 0x22, 0xb7, 0xed, 0x0b, 0xfa, 0x3b, 0xe9, 0xa4, - 0x1a, 0xd1, 0xdf, 0x29, 0x01, 0xd8, 0x57, 0x5a, 0x7f, 0x27, 0x8f, 0xd9, 0x03, 0x63, 0xb0, 0x08, - 0x1f, 0x35, 0x5c, 0x67, 0xa2, 0x24, 0x75, 0x35, 0x38, 0x07, 0x7a, 0x59, 0x27, 0x45, 0xe1, 0xa8, - 0x53, 0x3c, 0xaa, 0x14, 0x90, 0x72, 0x45, 0xa4, 0x5c, 0x21, 0x29, 0x55, 0x4c, 0xc9, 0x64, 0x5f, - 0xd0, 0xcb, 0x1a, 0x3c, 0x8b, 0x2a, 0x37, 0x7a, 0xc5, 0xaf, 0xc8, 0xa8, 0x25, 0x11, 0x83, 0xd3, - 0xf8, 0x80, 0x96, 0xaa, 0x80, 0xdc, 0x80, 0xdc, 0x80, 0xdc, 0x34, 0x3e, 0xb5, 0x1a, 0xdf, 0x5a, - 0xf2, 0x81, 0x07, 0x04, 0x06, 0x04, 0x06, 0x04, 0x96, 0xab, 0x40, 0xfc, 0x01, 0x51, 0x22, 0x86, - 0x48, 0xd9, 0xa8, 0x54, 0x3a, 0xea, 0x95, 0x8f, 0x6a, 0x25, 0x44, 0xa6, 0x8c, 0xc8, 0x94, 0x12, - 0x89, 0x72, 0x92, 0xab, 0xa4, 0x24, 0x2b, 0x2b, 0x75, 0x7e, 0x7b, 0x40, 0xde, 0x51, 0x22, 0x26, - 0xf0, 0x0b, 0xf1, 0x86, 0x3b, 0x4d, 0x83, 0x78, 0xc3, 0x70, 0x5b, 0x8f, 0x12, 0x31, 0xe9, 0x90, - 0x01, 0x84, 0x1d, 0x26, 0xe5, 0x0c, 0xa1, 0x44, 0x0c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, - 0xfc, 0x4e, 0xf2, 0x8e, 0x12, 0x31, 0x52, 0xde, 0x15, 0x25, 0x62, 0x60, 0x0e, 0x60, 0x0e, 0x60, - 0x0e, 0xd2, 0x6e, 0x0e, 0x50, 0x22, 0x06, 0x14, 0x52, 0xcc, 0xed, 0x45, 0x89, 0x98, 0xdc, 0x52, - 0x48, 0x28, 0x11, 0x03, 0xe6, 0x28, 0xc5, 0x20, 0x1e, 0x25, 0x62, 0x00, 0xea, 0x01, 0xea, 0x01, - 0xea, 0xb3, 0x06, 0xea, 0x51, 0x22, 0x26, 0xcb, 0x78, 0x1b, 0x57, 0xb6, 0xb9, 0xc5, 0xdb, 0x28, - 0x11, 0x03, 0xc4, 0x4d, 0x8f, 0xb8, 0x51, 0x22, 0x26, 0x4e, 0xc6, 0x0b, 0x5a, 0xa9, 0x46, 0x81, - 0x30, 0x68, 0xa5, 0x9a, 0x54, 0xdf, 0x07, 0x71, 0xf2, 0x5a, 0x7c, 0x1b, 0xc4, 0xc9, 0x4b, 0x38, - 0x0c, 0x88, 0x93, 0x07, 0xf1, 0x02, 0xe2, 0x05, 0xc4, 0x8b, 0x2a, 0x79, 0x47, 0x9c, 0x3c, 0x48, - 0x17, 0x90, 0x2e, 0x20, 0x5d, 0x22, 0x6d, 0x3d, 0xe2, 0xe4, 0xc1, 0xbd, 0x28, 0x3c, 0x43, 0x88, - 0x93, 0x07, 0x94, 0x07, 0x94, 0x07, 0x94, 0x07, 0x94, 0xdf, 0x49, 0xde, 0x11, 0x27, 0x2f, 0xe5, - 0x5d, 0x11, 0x27, 0x0f, 0x73, 0x00, 0x73, 0x00, 0x73, 0x90, 0x76, 0x73, 0x80, 0x38, 0x79, 0x50, - 0x48, 0x31, 0xb7, 0x17, 0x71, 0xf2, 0xb9, 0xa5, 0x90, 0x10, 0x27, 0x0f, 0xe6, 0x28, 0xc5, 0x20, - 0x1e, 0x71, 0xf2, 0x00, 0xf5, 0x00, 0xf5, 0x00, 0xf5, 0x59, 0x03, 0xf5, 0x88, 0x93, 0xcf, 0x32, - 0xde, 0xc6, 0x95, 0x6d, 0x6e, 0xf1, 0x36, 0xe2, 0xe4, 0x81, 0xb8, 0xe9, 0x11, 0x37, 0xe2, 0xe4, - 0xa5, 0xc5, 0xc9, 0xa3, 0x85, 0xaa, 0xaa, 0x8d, 0xa4, 0xd9, 0x40, 0xca, 0xd6, 0xa9, 0x49, 0xea, - 0x99, 0x1a, 0xab, 0x3b, 0xa8, 0x8c, 0x44, 0x0a, 0xa9, 0x09, 0x14, 0xd2, 0x3b, 0x8a, 0x94, 0xd0, - 0x51, 0x24, 0x01, 0x4e, 0x2d, 0x3a, 0x8a, 0xec, 0xfe, 0x46, 0x68, 0xe2, 0xb7, 0x87, 0x26, 0x7e, - 0xc8, 0xcc, 0x42, 0x66, 0x56, 0x5a, 0x70, 0x3f, 0x9a, 0xf8, 0x01, 0xe9, 0xab, 0x46, 0xfa, 0x12, - 0xbc, 0xb3, 0x69, 0x4a, 0xba, 0x73, 0x4b, 0xda, 0x13, 0x65, 0x7b, 0x51, 0x88, 0xe5, 0x71, 0x84, - 0x72, 0xb0, 0xa2, 0x6d, 0x78, 0xf8, 0xed, 0x8a, 0xb0, 0x55, 0x05, 0x3e, 0xbe, 0xaf, 0x1a, 0x96, - 0x79, 0xcb, 0x2c, 0x36, 0xf0, 0x97, 0x26, 0xea, 0x86, 0xf9, 0x1a, 0x6f, 0xe3, 0xa8, 0x11, 0x05, - 0x29, 0x9e, 0x2b, 0x15, 0x1b, 0xd9, 0xc8, 0x40, 0x32, 0xf2, 0x90, 0x8b, 0x2c, 0xa4, 0x22, 0x1d, - 0x99, 0x48, 0x47, 0x22, 0x52, 0x91, 0x07, 0xad, 0xea, 0x8b, 0xeb, 0xfa, 0xa0, 0x63, 0x2a, 0xf8, - 0x0d, 0xf0, 0x1b, 0x79, 0xe1, 0x37, 0xd0, 0x31, 0x15, 0x7c, 0x03, 0xf8, 0x86, 0xfc, 0xf1, 0x0d, - 0xa8, 0x04, 0xa3, 0x98, 0xd4, 0x54, 0xa6, 0x6c, 0x54, 0x2a, 0x1d, 0xf5, 0xca, 0x47, 0xb5, 0x12, - 0x22, 0x53, 0x46, 0x64, 0x4a, 0x89, 0x44, 0x39, 0xc9, 0x55, 0x52, 0x92, 0x95, 0x95, 0xbf, 0x02, - 0xa8, 0x04, 0xb3, 0x71, 0x68, 0x84, 0x15, 0xd2, 0xab, 0xf5, 0xc0, 0x34, 0x08, 0x2b, 0x0c, 0xb7, - 0xf5, 0xa8, 0x04, 0x93, 0x0e, 0x19, 0x40, 0x74, 0x61, 0x52, 0xce, 0x10, 0x2a, 0xc1, 0x00, 0xca, - 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0xef, 0x24, 0xef, 0xa8, 0x04, 0x23, 0xe5, 0x5d, 0x51, 0x09, - 0x06, 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x20, 0xed, 0xe6, 0x00, 0x95, 0x60, 0x40, 0x21, 0xc5, 0xdc, - 0x5e, 0x54, 0x82, 0xc9, 0x2d, 0x85, 0x84, 0x4a, 0x30, 0x60, 0x8e, 0x52, 0x0c, 0xe2, 0x51, 0x09, - 0x06, 0xa0, 0x1e, 0xa0, 0x1e, 0xa0, 0x3e, 0x6b, 0xa0, 0x1e, 0x95, 0x60, 0xb2, 0x8c, 0xb7, 0x71, - 0x65, 0x9b, 0x5b, 0xbc, 0x8d, 0x4a, 0x30, 0x40, 0xdc, 0xf4, 0x88, 0x1b, 0x95, 0x60, 0xc2, 0xa7, - 0xb4, 0x05, 0x32, 0xad, 0xd0, 0x39, 0x35, 0x12, 0x94, 0x41, 0xe7, 0xd4, 0xa4, 0xfa, 0x40, 0x88, - 0x97, 0xd7, 0xe2, 0xe3, 0x20, 0x5e, 0x5e, 0xc2, 0x61, 0x40, 0xbc, 0x3c, 0x08, 0x18, 0x10, 0x30, - 0x20, 0x60, 0x54, 0xc9, 0x3b, 0xe2, 0xe5, 0x41, 0xbe, 0x80, 0x7c, 0x01, 0xf9, 0x12, 0x69, 0xeb, - 0x11, 0x2f, 0x0f, 0x0e, 0x46, 0xe1, 0x19, 0x42, 0xbc, 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, - 0xa0, 0xfc, 0x4e, 0xf2, 0x8e, 0x78, 0x79, 0x29, 0xef, 0x8a, 0x78, 0x79, 0x98, 0x03, 0x98, 0x03, - 0x98, 0x83, 0xb4, 0x9b, 0x03, 0xc4, 0xcb, 0x83, 0x42, 0x8a, 0xb9, 0xbd, 0x88, 0x97, 0xcf, 0x2d, - 0x85, 0x84, 0x78, 0x79, 0x30, 0x47, 0x29, 0x06, 0xf1, 0x88, 0x97, 0x07, 0xa8, 0x07, 0xa8, 0x07, - 0xa8, 0xcf, 0x1a, 0xa8, 0x47, 0xbc, 0x7c, 0x96, 0xf1, 0x36, 0xae, 0x6c, 0x73, 0x8b, 0xb7, 0x11, - 0x2f, 0x0f, 0xc4, 0x4d, 0x8f, 0xb8, 0x11, 0x2f, 0x2f, 0x3d, 0x5e, 0x1e, 0x1d, 0x54, 0x55, 0x6d, - 0x28, 0xed, 0x46, 0x12, 0x76, 0x52, 0xad, 0x36, 0x17, 0xcf, 0x91, 0xa4, 0x86, 0xaa, 0x68, 0xf6, - 0x24, 0xaf, 0x07, 0x51, 0x0c, 0x59, 0x48, 0x7c, 0xef, 0x27, 0xb9, 0x3d, 0x9f, 0xd0, 0xeb, 0x09, - 0xbd, 0x9e, 0x34, 0x33, 0x0f, 0x29, 0xeb, 0xf5, 0x24, 0xa9, 0xfd, 0x8b, 0xdc, 0xb6, 0x2f, 0xe8, - 0xef, 0xa4, 0x93, 0x6a, 0x44, 0x7f, 0xa7, 0x04, 0x60, 0x5f, 0xf4, 0xaf, 0xde, 0x43, 0xff, 0x6a, - 0xe4, 0xc7, 0x22, 0x3f, 0x36, 0x2d, 0xec, 0x0b, 0xfa, 0x57, 0x83, 0x67, 0x51, 0xe5, 0x46, 0xaf, - 0xf8, 0x15, 0x19, 0xb5, 0x24, 0x62, 0x70, 0x1a, 0x1f, 0xd0, 0x52, 0x15, 0x90, 0x1b, 0x90, 0x1b, - 0x90, 0x9b, 0xc6, 0xa7, 0x56, 0xe3, 0x5b, 0x4b, 0x3e, 0xf0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, - 0x72, 0x15, 0x88, 0x3f, 0x20, 0x4a, 0xc4, 0x10, 0x29, 0x1b, 0x95, 0x4a, 0x47, 0xbd, 0xf2, 0x51, - 0xad, 0x84, 0xc8, 0x94, 0x11, 0x99, 0x52, 0x22, 0x51, 0x4e, 0x72, 0x95, 0x94, 0x64, 0x65, 0xa5, - 0xce, 0x6f, 0x0f, 0xc8, 0x3b, 0x4a, 0xc4, 0x04, 0x7e, 0x21, 0xde, 0x70, 0xa7, 0x69, 0x10, 0x6f, - 0x18, 0x6e, 0xeb, 0x51, 0x22, 0x26, 0x1d, 0x32, 0x80, 0xb0, 0xc3, 0xa4, 0x9c, 0x21, 0x94, 0x88, - 0x01, 0x94, 0x07, 0x94, 0x07, 0x94, 0x07, 0x94, 0xdf, 0x49, 0xde, 0x51, 0x22, 0x46, 0xca, 0xbb, - 0xa2, 0x44, 0x0c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0x4a, 0xc4, 0x80, 0x42, - 0x8a, 0xb9, 0xbd, 0x28, 0x11, 0x93, 0x5b, 0x0a, 0x09, 0x25, 0x62, 0xc0, 0x1c, 0xa5, 0x18, 0xc4, - 0xa3, 0x44, 0x0c, 0x40, 0x3d, 0x40, 0x3d, 0x40, 0x7d, 0xd6, 0x40, 0x3d, 0x4a, 0xc4, 0x64, 0x19, - 0x6f, 0xe3, 0xca, 0x36, 0xb7, 0x78, 0x1b, 0x25, 0x62, 0x80, 0xb8, 0xe9, 0x11, 0x37, 0x4a, 0xc4, - 0xc4, 0xc9, 0x78, 0x41, 0x2b, 0xd5, 0x28, 0x10, 0x06, 0xad, 0x54, 0x93, 0xea, 0xfb, 0x20, 0x4e, - 0x5e, 0x8b, 0x6f, 0x83, 0x38, 0x79, 0x09, 0x87, 0x01, 0x71, 0xf2, 0x20, 0x5e, 0x40, 0xbc, 0x80, - 0x78, 0x51, 0x25, 0xef, 0x88, 0x93, 0x07, 0xe9, 0x02, 0xd2, 0x05, 0xa4, 0x4b, 0xa4, 0xad, 0x47, - 0x9c, 0x3c, 0xb8, 0x17, 0x85, 0x67, 0x08, 0x71, 0xf2, 0x80, 0xf2, 0x80, 0xf2, 0x80, 0xf2, 0x80, - 0xf2, 0x3b, 0xc9, 0x3b, 0xe2, 0xe4, 0xa5, 0xbc, 0x2b, 0xe2, 0xe4, 0x61, 0x0e, 0x60, 0x0e, 0x60, - 0x0e, 0xd2, 0x6e, 0x0e, 0x10, 0x27, 0x0f, 0x0a, 0x29, 0xe6, 0xf6, 0x22, 0x4e, 0x3e, 0xb7, 0x14, - 0x12, 0xe2, 0xe4, 0xc1, 0x1c, 0xa5, 0x18, 0xc4, 0x23, 0x4e, 0x1e, 0xa0, 0x1e, 0xa0, 0x1e, 0xa0, - 0x3e, 0x6b, 0xa0, 0x1e, 0x71, 0xf2, 0x59, 0xc6, 0xdb, 0xb8, 0xb2, 0xcd, 0x2d, 0xde, 0x46, 0x9c, - 0x3c, 0x10, 0x37, 0x3d, 0xe2, 0x46, 0x9c, 0xbc, 0xb4, 0x38, 0x79, 0xb4, 0x50, 0x55, 0xb5, 0x91, - 0x34, 0x1b, 0x48, 0xd9, 0x3a, 0x35, 0x49, 0x3d, 0x53, 0x63, 0x75, 0x07, 0x95, 0x91, 0x48, 0x21, - 0x35, 0x81, 0x42, 0x7a, 0x47, 0x91, 0x12, 0x3a, 0x8a, 0x24, 0xc0, 0xa9, 0x45, 0x47, 0x91, 0xdd, - 0xdf, 0x08, 0x4d, 0xfc, 0xf6, 0xd0, 0xc4, 0x0f, 0x99, 0x59, 0xc8, 0xcc, 0x4a, 0x0b, 0xee, 0x47, - 0x13, 0x3f, 0x20, 0x7d, 0xd5, 0x48, 0x5f, 0x82, 0x77, 0x36, 0x4d, 0x49, 0x77, 0x6e, 0x49, 0x7b, - 0xa2, 0x6c, 0x2f, 0x0a, 0xb1, 0x3c, 0x8e, 0x50, 0x0e, 0x56, 0xb4, 0x0d, 0x0f, 0xbf, 0x5d, 0x11, - 0xb6, 0xaa, 0x60, 0x95, 0xee, 0xc7, 0xb6, 0xc1, 0xee, 0xc7, 0xd1, 0xb7, 0xc9, 0xd7, 0x73, 0x2f, - 0xc6, 0x8a, 0x28, 0x34, 0xf1, 0xdc, 0xa6, 0xd8, 0x28, 0x46, 0x06, 0x6a, 0x91, 0x87, 0x52, 0x64, - 0xa1, 0x12, 0xe9, 0x28, 0x44, 0x3a, 0xea, 0x90, 0x8a, 0x32, 0x68, 0xd5, 0x5c, 0x5c, 0x37, 0x07, - 0xdd, 0x51, 0xc1, 0x65, 0x80, 0xcb, 0xc8, 0x0b, 0x97, 0x81, 0xee, 0xa8, 0xe0, 0x16, 0xc0, 0x2d, - 0xe4, 0x8f, 0x5b, 0x40, 0xd5, 0x17, 0xc5, 0x04, 0xa6, 0x32, 0x65, 0xa3, 0x52, 0xe9, 0xa8, 0x57, - 0x3e, 0xaa, 0x95, 0x10, 0x99, 0x32, 0x22, 0x53, 0x4a, 0x24, 0xca, 0x49, 0xae, 0x92, 0x92, 0xac, - 0xac, 0xfc, 0x15, 0x40, 0xd5, 0x97, 0x8d, 0x43, 0x23, 0x84, 0x90, 0x5e, 0xad, 0x07, 0xa6, 0x41, - 0x08, 0x61, 0xb8, 0xad, 0x47, 0xd5, 0x97, 0x74, 0xc8, 0x00, 0x22, 0x09, 0x93, 0x72, 0x86, 0x50, - 0xf5, 0x05, 0x50, 0x1e, 0x50, 0x1e, 0x50, 0x1e, 0x50, 0x7e, 0x27, 0x79, 0x47, 0xd5, 0x17, 0x29, - 0xef, 0x8a, 0xaa, 0x2f, 0x30, 0x07, 0x30, 0x07, 0x30, 0x07, 0x69, 0x37, 0x07, 0xa8, 0xfa, 0x02, - 0x0a, 0x29, 0xe6, 0xf6, 0xa2, 0xea, 0x4b, 0x6e, 0x29, 0x24, 0x54, 0x7d, 0x01, 0x73, 0x94, 0x62, - 0x10, 0x8f, 0xaa, 0x2f, 0x00, 0xf5, 0x00, 0xf5, 0x00, 0xf5, 0x59, 0x03, 0xf5, 0xa8, 0xfa, 0x92, - 0x65, 0xbc, 0x8d, 0x2b, 0xdb, 0xdc, 0xe2, 0x6d, 0x54, 0x7d, 0x01, 0xe2, 0xa6, 0x47, 0xdc, 0xa8, - 0xfa, 0x12, 0x32, 0x7d, 0xed, 0x39, 0xbf, 0x0a, 0xbd, 0x51, 0x23, 0x01, 0x18, 0xf4, 0x46, 0x4d, - 0xaa, 0xe7, 0x83, 0x28, 0x79, 0x2d, 0x9e, 0x0d, 0xa2, 0xe4, 0x25, 0x1c, 0x06, 0x44, 0xc9, 0x83, - 0x76, 0x01, 0xed, 0x02, 0xda, 0x45, 0x95, 0xbc, 0x23, 0x4a, 0x1e, 0x94, 0x0b, 0x28, 0x17, 0x50, - 0x2e, 0x91, 0xb6, 0x1e, 0x51, 0xf2, 0x60, 0x5e, 0x14, 0x9e, 0x21, 0x44, 0xc9, 0x03, 0xca, 0x03, - 0xca, 0x03, 0xca, 0x03, 0xca, 0xef, 0x24, 0xef, 0x88, 0x92, 0x97, 0xf2, 0xae, 0x88, 0x92, 0x87, - 0x39, 0x80, 0x39, 0x80, 0x39, 0x48, 0xbb, 0x39, 0x40, 0x94, 0x3c, 0x28, 0xa4, 0x98, 0xdb, 0x8b, - 0x28, 0xf9, 0xdc, 0x52, 0x48, 0x88, 0x92, 0x07, 0x73, 0x94, 0x62, 0x10, 0x8f, 0x28, 0x79, 0x80, - 0x7a, 0x80, 0x7a, 0x80, 0xfa, 0xac, 0x81, 0x7a, 0x44, 0xc9, 0x67, 0x19, 0x6f, 0xe3, 0xca, 0x36, - 0xb7, 0x78, 0x1b, 0x51, 0xf2, 0x40, 0xdc, 0xf4, 0x88, 0x1b, 0x51, 0xf2, 0x92, 0xa2, 0xe4, 0xd1, - 0x19, 0x55, 0xd5, 0x36, 0x52, 0x6c, 0x1f, 0x55, 0x5f, 0xd4, 0x66, 0xe9, 0xfb, 0xd8, 0xae, 0xdf, - 0x8f, 0xed, 0x44, 0x74, 0x45, 0xcd, 0x7d, 0xc7, 0xa6, 0xd8, 0x2d, 0x85, 0xc2, 0x6f, 0x7c, 0xf2, - 0xbb, 0x35, 0xdd, 0x8f, 0x2d, 0x4f, 0x56, 0xb7, 0xa6, 0xf9, 0x58, 0xe8, 0xd6, 0x84, 0x6e, 0x4d, - 0x9a, 0x58, 0x04, 0x74, 0x6b, 0x42, 0xb7, 0x26, 0x7d, 0x94, 0x22, 0xba, 0x35, 0xa1, 0x5b, 0xd3, - 0xf6, 0x81, 0xd0, 0xad, 0x49, 0xc6, 0x80, 0xc8, 0x43, 0x45, 0x1e, 0x6a, 0xba, 0x58, 0x0e, 0xe4, - 0xa1, 0x12, 0x51, 0xa0, 0xb8, 0xd8, 0x24, 0x55, 0x42, 0x64, 0xca, 0x88, 0x4c, 0x29, 0x91, 0x28, - 0x27, 0xb9, 0x4a, 0x4a, 0xb2, 0xb2, 0xf2, 0x57, 0x00, 0x79, 0xa8, 0x1b, 0x87, 0xc6, 0xa5, 0x26, - 0xbd, 0x5a, 0x0f, 0x4c, 0x83, 0x4b, 0xcd, 0x70, 0x5b, 0x8f, 0x3c, 0xd4, 0x74, 0xc8, 0x00, 0xee, - 0x36, 0x93, 0x72, 0x86, 0x90, 0x87, 0x0a, 0x28, 0x0f, 0x28, 0x0f, 0x28, 0x0f, 0x28, 0xbf, 0x93, - 0xbc, 0x23, 0x0f, 0x55, 0xca, 0xbb, 0x22, 0x0f, 0x15, 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x20, 0xed, - 0xe6, 0x00, 0x79, 0xa8, 0xa0, 0x90, 0x62, 0x6e, 0x2f, 0xf2, 0x50, 0x73, 0x4b, 0x21, 0x21, 0x0f, - 0x15, 0xcc, 0x51, 0x8a, 0x41, 0x3c, 0xf2, 0x50, 0x01, 0xea, 0x01, 0xea, 0x01, 0xea, 0xb3, 0x06, - 0xea, 0x91, 0x87, 0x9a, 0x65, 0xbc, 0x8d, 0x2b, 0xdb, 0xdc, 0xe2, 0x6d, 0xe4, 0xa1, 0x02, 0x71, - 0xd3, 0x23, 0x6e, 0xe4, 0xa1, 0x46, 0x4a, 0x5d, 0xbb, 0x1f, 0x5b, 0x1e, 0xba, 0x35, 0x45, 0x02, - 0x30, 0xe8, 0xd6, 0x94, 0x54, 0xcf, 0x07, 0x51, 0xf2, 0x5a, 0x3c, 0x1b, 0x44, 0xc9, 0x4b, 0x38, - 0x0c, 0x88, 0x92, 0x07, 0xed, 0x02, 0xda, 0x05, 0xb4, 0x8b, 0x2a, 0x79, 0x47, 0x94, 0x3c, 0x28, - 0x17, 0x50, 0x2e, 0xa0, 0x5c, 0x22, 0x6d, 0x3d, 0xa2, 0xe4, 0xc1, 0xbc, 0x28, 0x3c, 0x43, 0x88, - 0x92, 0x07, 0x94, 0x07, 0x94, 0x07, 0x94, 0x07, 0x94, 0xdf, 0x49, 0xde, 0x11, 0x25, 0x2f, 0xe5, - 0x5d, 0x11, 0x25, 0x0f, 0x73, 0x00, 0x73, 0x00, 0x73, 0x90, 0x76, 0x73, 0x80, 0x28, 0x79, 0x50, - 0x48, 0x31, 0xb7, 0x17, 0x51, 0xf2, 0xb9, 0xa5, 0x90, 0x10, 0x25, 0x0f, 0xe6, 0x28, 0xc5, 0x20, - 0x1e, 0x51, 0xf2, 0x00, 0xf5, 0x00, 0xf5, 0x00, 0xf5, 0x59, 0x03, 0xf5, 0x88, 0x92, 0xcf, 0x32, - 0xde, 0xc6, 0x95, 0x6d, 0x6e, 0xf1, 0x36, 0xa2, 0xe4, 0x81, 0xb8, 0xe9, 0x11, 0x37, 0xa2, 0xe4, - 0x25, 0x45, 0xc9, 0xa3, 0x5b, 0x93, 0xaa, 0x6d, 0xa4, 0xd8, 0x3e, 0xd2, 0x6e, 0x4d, 0xdf, 0xc7, - 0x96, 0x87, 0x6e, 0x4d, 0xc9, 0x92, 0x06, 0x92, 0x6e, 0x4d, 0xb3, 0x8d, 0x4f, 0x74, 0xb7, 0xa6, - 0xa3, 0xd9, 0x72, 0xf0, 0xf1, 0x7d, 0xd9, 0x18, 0x4d, 0x2c, 0xc1, 0xfb, 0xa6, 0x27, 0x24, 0xf4, - 0x6d, 0xda, 0x34, 0x2a, 0x3a, 0x38, 0xa1, 0x83, 0x93, 0x26, 0x66, 0x01, 0x1d, 0x9c, 0xd0, 0xc1, - 0x49, 0x1f, 0xcd, 0x88, 0x0e, 0x4e, 0xe8, 0xe0, 0xb4, 0x7d, 0x20, 0x74, 0x70, 0x92, 0x31, 0x20, - 0x72, 0x53, 0x91, 0x9b, 0x9a, 0x2e, 0xe6, 0x03, 0xb9, 0xa9, 0x44, 0xb4, 0x28, 0x2e, 0x3b, 0x49, - 0x95, 0x10, 0x99, 0x32, 0x22, 0x53, 0x4a, 0x24, 0xca, 0x49, 0xae, 0x92, 0x92, 0xac, 0xac, 0xfc, - 0x15, 0x40, 0x6e, 0xea, 0xc6, 0xa1, 0x71, 0xd1, 0x49, 0xaf, 0xd6, 0x03, 0xd3, 0xe0, 0xa2, 0x33, - 0xdc, 0xd6, 0x23, 0x37, 0x35, 0x1d, 0x32, 0x80, 0xfb, 0xce, 0xa4, 0x9c, 0x21, 0xe4, 0xa6, 0x02, - 0xca, 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0xef, 0x24, 0xef, 0xc8, 0x4d, 0x95, 0xf2, 0xae, 0xc8, - 0x4d, 0x85, 0x39, 0x80, 0x39, 0x80, 0x39, 0x48, 0xbb, 0x39, 0x40, 0x6e, 0x2a, 0x28, 0xa4, 0x98, - 0xdb, 0x8b, 0xdc, 0xd4, 0xdc, 0x52, 0x48, 0xc8, 0x4d, 0x05, 0x73, 0x94, 0x62, 0x10, 0x8f, 0xdc, - 0x54, 0x80, 0x7a, 0x80, 0x7a, 0x80, 0xfa, 0xac, 0x81, 0x7a, 0xe4, 0xa6, 0x66, 0x19, 0x6f, 0xe3, - 0xca, 0x36, 0xb7, 0x78, 0x1b, 0xb9, 0xa9, 0x40, 0xdc, 0xf4, 0x88, 0x1b, 0xb9, 0xa9, 0x61, 0xd3, - 0xd9, 0x36, 0x64, 0x5a, 0xa1, 0x97, 0x53, 0x24, 0x28, 0x83, 0x5e, 0x4e, 0x49, 0xf5, 0x81, 0x10, - 0x2f, 0xaf, 0xc5, 0xc7, 0x41, 0xbc, 0xbc, 0x84, 0xc3, 0x80, 0x78, 0x79, 0x10, 0x30, 0x20, 0x60, - 0x40, 0xc0, 0xa8, 0x92, 0x77, 0xc4, 0xcb, 0x83, 0x7c, 0x01, 0xf9, 0x02, 0xf2, 0x25, 0xd2, 0xd6, - 0x23, 0x5e, 0x1e, 0x1c, 0x8c, 0xc2, 0x33, 0x84, 0x78, 0x79, 0x40, 0x79, 0x40, 0x79, 0x40, 0x79, - 0x40, 0xf9, 0x9d, 0xe4, 0x1d, 0xf1, 0xf2, 0x52, 0xde, 0x15, 0xf1, 0xf2, 0x30, 0x07, 0x30, 0x07, - 0x30, 0x07, 0x69, 0x37, 0x07, 0x88, 0x97, 0x07, 0x85, 0x14, 0x73, 0x7b, 0x11, 0x2f, 0x9f, 0x5b, - 0x0a, 0x09, 0xf1, 0xf2, 0x60, 0x8e, 0x52, 0x0c, 0xe2, 0x11, 0x2f, 0x0f, 0x50, 0x0f, 0x50, 0x0f, - 0x50, 0x9f, 0x35, 0x50, 0x8f, 0x78, 0xf9, 0x2c, 0xe3, 0x6d, 0x5c, 0xd9, 0xe6, 0x16, 0x6f, 0x23, - 0x5e, 0x1e, 0x88, 0x9b, 0x1e, 0x71, 0x23, 0x5e, 0x5e, 0x7a, 0xbc, 0x3c, 0xba, 0x3a, 0xa9, 0xda, - 0x50, 0xda, 0x8d, 0x24, 0xeb, 0xef, 0x74, 0xf4, 0x7d, 0x6c, 0x37, 0xc6, 0xf7, 0xe5, 0xf3, 0xd5, - 0x63, 0xa0, 0xd1, 0x53, 0x52, 0x05, 0x44, 0x79, 0xcb, 0xa7, 0x80, 0x2c, 0xa4, 0xa4, 0xf7, 0xd3, - 0xc4, 0x96, 0xdf, 0xf9, 0x69, 0x35, 0x26, 0xfa, 0x3e, 0xa1, 0xef, 0x93, 0x26, 0x16, 0x02, 0x7d, - 0x9f, 0xd0, 0xf7, 0x49, 0x1f, 0x25, 0x89, 0xbe, 0x4f, 0xe8, 0xfb, 0xb4, 0x7d, 0x20, 0xf4, 0x7d, - 0x92, 0x31, 0x20, 0xf2, 0x58, 0x91, 0xc7, 0x9a, 0x2e, 0x96, 0x04, 0x79, 0xac, 0x44, 0x14, 0x2a, - 0x2e, 0x46, 0x49, 0x95, 0x10, 0x99, 0x32, 0x22, 0x53, 0x4a, 0x24, 0xca, 0x49, 0xae, 0x92, 0x92, - 0xac, 0xac, 0xfc, 0x15, 0x40, 0x1e, 0xeb, 0xc6, 0xa1, 0x71, 0x29, 0x4a, 0xaf, 0xd6, 0x03, 0xd3, - 0xe0, 0x52, 0x34, 0xdc, 0xd6, 0x23, 0x8f, 0x35, 0x1d, 0x32, 0x80, 0xbb, 0xd1, 0xa4, 0x9c, 0x21, - 0xe4, 0xb1, 0x02, 0xca, 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0xef, 0x24, 0xef, 0xc8, 0x63, 0x95, - 0xf2, 0xae, 0xc8, 0x63, 0x85, 0x39, 0x80, 0x39, 0x80, 0x39, 0x48, 0xbb, 0x39, 0x40, 0x1e, 0x2b, - 0x28, 0xa4, 0x98, 0xdb, 0x8b, 0x3c, 0xd6, 0xdc, 0x52, 0x48, 0xc8, 0x63, 0x05, 0x73, 0x94, 0x62, - 0x10, 0x8f, 0x3c, 0x56, 0x80, 0x7a, 0x80, 0x7a, 0x80, 0xfa, 0xac, 0x81, 0x7a, 0xe4, 0xb1, 0x66, - 0x19, 0x6f, 0xe3, 0xca, 0x36, 0xb7, 0x78, 0x1b, 0x79, 0xac, 0x40, 0xdc, 0xf4, 0x88, 0x1b, 0x79, - 0xac, 0xd1, 0xb3, 0xdb, 0x96, 0x79, 0x56, 0xe8, 0xfa, 0x14, 0x09, 0xc8, 0xa0, 0xeb, 0x53, 0x52, - 0x3d, 0x20, 0x44, 0xcb, 0x6b, 0xf1, 0x70, 0x10, 0x2d, 0x2f, 0xe1, 0x30, 0x20, 0x5a, 0x1e, 0xf4, - 0x0b, 0xe8, 0x17, 0xd0, 0x2f, 0xaa, 0xe4, 0x1d, 0xd1, 0xf2, 0xa0, 0x5e, 0x40, 0xbd, 0x80, 0x7a, - 0x89, 0xb4, 0xf5, 0x88, 0x96, 0x07, 0x03, 0xa3, 0xf0, 0x0c, 0x21, 0x5a, 0x1e, 0x50, 0x1e, 0x50, - 0x1e, 0x50, 0x1e, 0x50, 0x7e, 0x27, 0x79, 0x47, 0xb4, 0xbc, 0x94, 0x77, 0x45, 0xb4, 0x3c, 0xcc, - 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0xa2, 0xe5, 0x41, 0x21, 0xc5, 0xdc, 0x5e, 0x44, - 0xcb, 0xe7, 0x96, 0x42, 0x42, 0xb4, 0x3c, 0x98, 0xa3, 0x14, 0x83, 0x78, 0x44, 0xcb, 0x03, 0xd4, - 0x03, 0xd4, 0x03, 0xd4, 0x67, 0x0d, 0xd4, 0x23, 0x5a, 0x3e, 0xcb, 0x78, 0x1b, 0x57, 0xb6, 0xb9, - 0xc5, 0xdb, 0x88, 0x96, 0x07, 0xe2, 0xa6, 0x47, 0xdc, 0x88, 0x96, 0x97, 0x1c, 0x2d, 0x8f, 0x9e, - 0x4f, 0xaa, 0xb6, 0x93, 0x72, 0x1b, 0xc9, 0x3b, 0x3e, 0x5d, 0xdb, 0xe8, 0xf7, 0x94, 0xc4, 0x7e, - 0x4f, 0xf1, 0x3a, 0x0f, 0x45, 0x96, 0x83, 0x54, 0xf4, 0x7a, 0xaa, 0xbe, 0xe8, 0x86, 0x25, 0xaf, - 0xdb, 0x53, 0x35, 0x76, 0x8f, 0x2d, 0xf4, 0x7b, 0x52, 0xc1, 0x63, 0xa0, 0xdf, 0x93, 0x42, 0x2d, - 0x88, 0x7e, 0x4f, 0xd4, 0x64, 0x25, 0xfa, 0x3d, 0xa1, 0xdf, 0x13, 0x31, 0x1e, 0x46, 0xbf, 0xa7, - 0x24, 0x1c, 0x7c, 0x15, 0x0a, 0x40, 0x9d, 0x22, 0x50, 0xa5, 0x10, 0x94, 0x2b, 0x06, 0xe5, 0x0a, - 0x42, 0xa9, 0xa2, 0x48, 0x26, 0x3f, 0x82, 0x0c, 0x56, 0x22, 0xf2, 0x14, 0x57, 0xa2, 0xa4, 0x4a, - 0x88, 0x4c, 0x19, 0x91, 0x29, 0x25, 0x12, 0xe5, 0x24, 0x57, 0x49, 0x49, 0x56, 0x56, 0xfe, 0x0a, - 0x20, 0x83, 0x75, 0xe3, 0xd0, 0xb8, 0x0e, 0xa5, 0x57, 0xeb, 0x81, 0x69, 0x70, 0x1d, 0x1a, 0x6e, - 0xeb, 0x91, 0xc1, 0x9a, 0x0e, 0x19, 0xc0, 0xad, 0x68, 0x52, 0xce, 0x10, 0x32, 0x58, 0x01, 0xe5, - 0x01, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x77, 0x92, 0x77, 0x64, 0xb0, 0x4a, 0x79, 0x57, 0x64, 0xb0, - 0xc2, 0x1c, 0xc0, 0x1c, 0xc0, 0x1c, 0xa4, 0xdd, 0x1c, 0x20, 0x83, 0x15, 0x14, 0x52, 0xcc, 0xed, - 0x45, 0x06, 0x6b, 0x6e, 0x29, 0x24, 0x64, 0xb0, 0x82, 0x39, 0x4a, 0x31, 0x88, 0x47, 0x06, 0x2b, - 0x40, 0x3d, 0x40, 0x3d, 0x40, 0x7d, 0xd6, 0x40, 0x3d, 0x32, 0x58, 0xb3, 0x8c, 0xb7, 0x71, 0x65, - 0x9b, 0x5b, 0xbc, 0x8d, 0x0c, 0x56, 0x20, 0x6e, 0x7a, 0xc4, 0x8d, 0x0c, 0xd6, 0xa8, 0xd9, 0x6d, - 0x2f, 0x32, 0xad, 0xd0, 0xf1, 0x29, 0x12, 0x94, 0x41, 0xc7, 0xa7, 0xa4, 0xfa, 0x40, 0x88, 0x97, - 0xd7, 0xe2, 0xe3, 0x20, 0x5e, 0x5e, 0xc2, 0x61, 0x40, 0xbc, 0x3c, 0x08, 0x18, 0x10, 0x30, 0x20, - 0x60, 0x54, 0xc9, 0x3b, 0xe2, 0xe5, 0x41, 0xbe, 0x80, 0x7c, 0x01, 0xf9, 0x12, 0x69, 0xeb, 0x11, - 0x2f, 0x0f, 0x0e, 0x46, 0xe1, 0x19, 0x42, 0xbc, 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, - 0xfc, 0x4e, 0xf2, 0x8e, 0x78, 0x79, 0x29, 0xef, 0x8a, 0x78, 0x79, 0x98, 0x03, 0x98, 0x03, 0x98, - 0x83, 0xb4, 0x9b, 0x03, 0xc4, 0xcb, 0x83, 0x42, 0x8a, 0xb9, 0xbd, 0x88, 0x97, 0xcf, 0x2d, 0x85, - 0x84, 0x78, 0x79, 0x30, 0x47, 0x29, 0x06, 0xf1, 0x88, 0x97, 0x07, 0xa8, 0x07, 0xa8, 0x07, 0xa8, - 0xcf, 0x1a, 0xa8, 0x47, 0xbc, 0x7c, 0x96, 0xf1, 0x36, 0xae, 0x6c, 0x73, 0x8b, 0xb7, 0x11, 0x2f, - 0x0f, 0xc4, 0x4d, 0x8f, 0xb8, 0x11, 0x2f, 0x2f, 0x3d, 0x5e, 0x1e, 0x3d, 0x9f, 0x54, 0x6d, 0x28, - 0xed, 0x46, 0x52, 0x77, 0x7d, 0xaa, 0x9e, 0xaf, 0x1e, 0x03, 0x7d, 0x9f, 0x92, 0x2a, 0x20, 0x54, - 0x9d, 0x9f, 0x9e, 0x65, 0x21, 0x25, 0xbd, 0x9f, 0x56, 0x9d, 0xb1, 0x64, 0x76, 0x7e, 0x8a, 0xd7, - 0x6d, 0x0b, 0x7d, 0x9f, 0x54, 0xb0, 0x19, 0xe8, 0xfb, 0xa4, 0x50, 0x0b, 0xa2, 0xef, 0x13, 0x35, - 0x65, 0x89, 0xbe, 0x4f, 0xe8, 0xfb, 0x44, 0x8c, 0x89, 0xd1, 0xf7, 0x29, 0x09, 0x07, 0x5f, 0x85, - 0x02, 0x50, 0xa7, 0x08, 0x54, 0x29, 0x04, 0xe5, 0x8a, 0x41, 0xb9, 0x82, 0x50, 0xaa, 0x28, 0x92, - 0xc9, 0x92, 0x20, 0x8f, 0x95, 0x88, 0x42, 0xc5, 0xc5, 0x28, 0xa9, 0x12, 0x22, 0x53, 0x46, 0x64, - 0x4a, 0x89, 0x44, 0x39, 0xc9, 0x55, 0x52, 0x92, 0x95, 0x95, 0xbf, 0x02, 0xc8, 0x63, 0xdd, 0x38, - 0x34, 0x2e, 0x45, 0xe9, 0xd5, 0x7a, 0x60, 0x1a, 0x5c, 0x8a, 0x86, 0xdb, 0x7a, 0xe4, 0xb1, 0xa6, - 0x43, 0x06, 0x70, 0x37, 0x9a, 0x94, 0x33, 0x84, 0x3c, 0x56, 0x40, 0x79, 0x40, 0x79, 0x40, 0x79, - 0x40, 0xf9, 0x9d, 0xe4, 0x1d, 0x79, 0xac, 0x52, 0xde, 0x15, 0x79, 0xac, 0x30, 0x07, 0x30, 0x07, - 0x30, 0x07, 0x69, 0x37, 0x07, 0xc8, 0x63, 0x05, 0x85, 0x14, 0x73, 0x7b, 0x91, 0xc7, 0x9a, 0x5b, - 0x0a, 0x09, 0x79, 0xac, 0x60, 0x8e, 0x52, 0x0c, 0xe2, 0x91, 0xc7, 0x0a, 0x50, 0x0f, 0x50, 0x0f, - 0x50, 0x9f, 0x35, 0x50, 0x8f, 0x3c, 0xd6, 0x2c, 0xe3, 0x6d, 0x5c, 0xd9, 0xe6, 0x16, 0x6f, 0x23, - 0x8f, 0x15, 0x88, 0x9b, 0x1e, 0x71, 0x23, 0x8f, 0x35, 0x7a, 0x76, 0xdb, 0x32, 0xcf, 0x0a, 0x5d, - 0x9f, 0x22, 0x01, 0x19, 0x74, 0x7d, 0x4a, 0xaa, 0x07, 0x84, 0x68, 0x79, 0x2d, 0x1e, 0x0e, 0xa2, - 0xe5, 0x25, 0x1c, 0x06, 0x44, 0xcb, 0x83, 0x7e, 0x01, 0xfd, 0x02, 0xfa, 0x45, 0x95, 0xbc, 0x23, - 0x5a, 0x1e, 0xd4, 0x0b, 0xa8, 0x17, 0x50, 0x2f, 0x91, 0xb6, 0x1e, 0xd1, 0xf2, 0x60, 0x60, 0x14, - 0x9e, 0x21, 0x44, 0xcb, 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0xef, 0x24, 0xef, 0x88, - 0x96, 0x97, 0xf2, 0xae, 0x88, 0x96, 0x87, 0x39, 0x80, 0x39, 0x80, 0x39, 0x48, 0xbb, 0x39, 0x40, - 0xb4, 0x3c, 0x28, 0xa4, 0x98, 0xdb, 0x8b, 0x68, 0xf9, 0xdc, 0x52, 0x48, 0x88, 0x96, 0x07, 0x73, - 0x94, 0x62, 0x10, 0x8f, 0x68, 0x79, 0x80, 0x7a, 0x80, 0x7a, 0x80, 0xfa, 0xac, 0x81, 0x7a, 0x44, - 0xcb, 0x67, 0x19, 0x6f, 0xe3, 0xca, 0x36, 0xb7, 0x78, 0x1b, 0xd1, 0xf2, 0x40, 0xdc, 0xf4, 0x88, - 0x1b, 0xd1, 0xf2, 0x92, 0xa3, 0xe5, 0xd1, 0xf3, 0x49, 0xd5, 0x76, 0x52, 0x6e, 0x23, 0x79, 0xc7, - 0xa7, 0x6b, 0x1b, 0xfd, 0x9e, 0x92, 0xd8, 0xef, 0x29, 0x5e, 0xe7, 0xa1, 0xc8, 0x72, 0x90, 0xe4, - 0x5e, 0x4f, 0x9e, 0x2b, 0x98, 0x31, 0x76, 0x2c, 0xde, 0x7f, 0x9c, 0xad, 0x51, 0x39, 0x7e, 0xa7, - 0xa7, 0xc0, 0x88, 0xe8, 0xf3, 0x84, 0x3e, 0x4f, 0x9a, 0x78, 0x07, 0xf4, 0x79, 0x42, 0x9f, 0x27, - 0x7d, 0x24, 0x24, 0xfa, 0x3c, 0xa1, 0xcf, 0xd3, 0xf6, 0x81, 0xd0, 0xe7, 0x49, 0xc6, 0x80, 0xc8, - 0x5c, 0x45, 0xe6, 0x6a, 0xba, 0x78, 0x11, 0x64, 0xae, 0x12, 0x91, 0xa6, 0xb8, 0x0a, 0x25, 0x55, - 0x42, 0x64, 0xca, 0x88, 0x4c, 0x29, 0x91, 0x28, 0x27, 0xb9, 0x4a, 0x4a, 0xb2, 0xb2, 0xf2, 0x57, - 0x00, 0x99, 0xab, 0x1b, 0x87, 0xc6, 0x35, 0x28, 0xbd, 0x5a, 0x0f, 0x4c, 0x83, 0x6b, 0xd0, 0x70, - 0x5b, 0x8f, 0xcc, 0xd5, 0x74, 0xc8, 0x00, 0x6e, 0x43, 0x93, 0x72, 0x86, 0x90, 0xb9, 0x0a, 0x28, - 0x0f, 0x28, 0x0f, 0x28, 0x0f, 0x28, 0xbf, 0x93, 0xbc, 0x23, 0x73, 0x55, 0xca, 0xbb, 0x22, 0x73, - 0x15, 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x20, 0xed, 0xe6, 0x00, 0x99, 0xab, 0xa0, 0x90, 0x62, 0x6e, - 0x2f, 0x32, 0x57, 0x73, 0x4b, 0x21, 0x21, 0x73, 0x15, 0xcc, 0x51, 0x8a, 0x41, 0x3c, 0x32, 0x57, - 0x01, 0xea, 0x01, 0xea, 0x01, 0xea, 0xb3, 0x06, 0xea, 0x91, 0xb9, 0x9a, 0x65, 0xbc, 0x8d, 0x2b, - 0xdb, 0xdc, 0xe2, 0x6d, 0x64, 0xae, 0x02, 0x71, 0xd3, 0x23, 0x6e, 0x64, 0xae, 0x86, 0xcc, 0x6a, - 0x7b, 0x9d, 0x65, 0x85, 0x2e, 0x4f, 0x91, 0x60, 0x0c, 0xba, 0x3c, 0x25, 0xd5, 0xff, 0x41, 0xac, - 0xbc, 0x16, 0xff, 0x06, 0xb1, 0xf2, 0x12, 0x0e, 0x03, 0x62, 0xe5, 0x41, 0xbe, 0x80, 0x7c, 0x01, - 0xf9, 0xa2, 0x4a, 0xde, 0x11, 0x2b, 0x0f, 0xe2, 0x05, 0xc4, 0x0b, 0x88, 0x97, 0x48, 0x5b, 0x8f, - 0x58, 0x79, 0xf0, 0x2f, 0x0a, 0xcf, 0x10, 0x62, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x01, - 0xe5, 0x77, 0x92, 0x77, 0xc4, 0xca, 0x4b, 0x79, 0x57, 0xc4, 0xca, 0xc3, 0x1c, 0xc0, 0x1c, 0xc0, - 0x1c, 0xa4, 0xdd, 0x1c, 0x20, 0x56, 0x1e, 0x14, 0x52, 0xcc, 0xed, 0x45, 0xac, 0x7c, 0x6e, 0x29, - 0x24, 0xc4, 0xca, 0x83, 0x39, 0x4a, 0x31, 0x88, 0x47, 0xac, 0x3c, 0x40, 0x3d, 0x40, 0x3d, 0x40, - 0x7d, 0xd6, 0x40, 0x3d, 0x62, 0xe5, 0xb3, 0x8c, 0xb7, 0x71, 0x65, 0x9b, 0x5b, 0xbc, 0x8d, 0x58, - 0x79, 0x20, 0x6e, 0x7a, 0xc4, 0x8d, 0x58, 0x79, 0xa9, 0xb1, 0xf2, 0xe8, 0xf1, 0xa4, 0x6a, 0x33, - 0xe9, 0x36, 0x91, 0xaa, 0xc3, 0xd3, 0xa5, 0x2b, 0x58, 0x7b, 0xfe, 0x0c, 0x8d, 0xf1, 0x7d, 0x19, - 0xfd, 0x9d, 0x92, 0x28, 0x18, 0xaa, 0xbb, 0x3b, 0xad, 0xcb, 0x40, 0x8a, 0x7a, 0x3b, 0x55, 0xa5, - 0xf7, 0x76, 0xaa, 0xa2, 0xb7, 0x13, 0x7a, 0x3b, 0xe9, 0x62, 0x1b, 0xd0, 0xdb, 0x09, 0xbd, 0x9d, - 0xf4, 0x51, 0x8f, 0xe8, 0xed, 0x84, 0xde, 0x4e, 0xdb, 0x07, 0x42, 0x6f, 0x27, 0x19, 0x03, 0x22, - 0x5f, 0x15, 0xf9, 0xaa, 0xe9, 0x62, 0x43, 0x90, 0xaf, 0x4a, 0x44, 0x95, 0xe2, 0x02, 0x94, 0x54, - 0x09, 0x91, 0x29, 0x23, 0x32, 0xa5, 0x44, 0xa2, 0x9c, 0xe4, 0x2a, 0x29, 0xc9, 0xca, 0xca, 0x5f, - 0x01, 0xe4, 0xab, 0x6e, 0x1c, 0x1a, 0x97, 0x9f, 0xf4, 0x6a, 0x3d, 0x30, 0x0d, 0x2e, 0x3f, 0xc3, - 0x6d, 0x3d, 0xf2, 0x55, 0xd3, 0x21, 0x03, 0xb8, 0x03, 0x4d, 0xca, 0x19, 0x42, 0xbe, 0x2a, 0xa0, - 0x3c, 0xa0, 0x3c, 0xa0, 0x3c, 0xa0, 0xfc, 0x4e, 0xf2, 0x8e, 0x7c, 0x55, 0x29, 0xef, 0x8a, 0x7c, - 0x55, 0x98, 0x03, 0x98, 0x03, 0x98, 0x83, 0xb4, 0x9b, 0x03, 0xe4, 0xab, 0x82, 0x42, 0x8a, 0xb9, - 0xbd, 0xc8, 0x57, 0xcd, 0x2d, 0x85, 0x84, 0x7c, 0x55, 0x30, 0x47, 0x29, 0x06, 0xf1, 0xc8, 0x57, - 0x05, 0xa8, 0x07, 0xa8, 0x07, 0xa8, 0xcf, 0x1a, 0xa8, 0x47, 0xbe, 0x6a, 0x96, 0xf1, 0x36, 0xae, - 0x6c, 0x73, 0x8b, 0xb7, 0x91, 0xaf, 0x0a, 0xc4, 0x4d, 0x8f, 0xb8, 0x91, 0xaf, 0x1a, 0x2f, 0xa3, - 0xad, 0x8a, 0xde, 0x4e, 0x91, 0x60, 0x0c, 0x7a, 0x3b, 0x25, 0xd5, 0xff, 0x41, 0xac, 0xbc, 0x16, - 0xff, 0x06, 0xb1, 0xf2, 0x12, 0x0e, 0x03, 0x62, 0xe5, 0x41, 0xbe, 0x80, 0x7c, 0x01, 0xf9, 0xa2, - 0x4a, 0xde, 0x11, 0x2b, 0x0f, 0xe2, 0x05, 0xc4, 0x0b, 0x88, 0x97, 0x48, 0x5b, 0x8f, 0x58, 0x79, - 0xf0, 0x2f, 0x0a, 0xcf, 0x10, 0x62, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x77, - 0x92, 0x77, 0xc4, 0xca, 0x4b, 0x79, 0x57, 0xc4, 0xca, 0xc3, 0x1c, 0xc0, 0x1c, 0xc0, 0x1c, 0xa4, - 0xdd, 0x1c, 0x20, 0x56, 0x1e, 0x14, 0x52, 0xcc, 0xed, 0x45, 0xac, 0x7c, 0x6e, 0x29, 0x24, 0xc4, - 0xca, 0x83, 0x39, 0x4a, 0x31, 0x88, 0x47, 0xac, 0x3c, 0x40, 0x3d, 0x40, 0x3d, 0x40, 0x7d, 0xd6, - 0x40, 0x3d, 0x62, 0xe5, 0xb3, 0x8c, 0xb7, 0x71, 0x65, 0x9b, 0x5b, 0xbc, 0x8d, 0x58, 0x79, 0x20, - 0x6e, 0x7a, 0xc4, 0x8d, 0x58, 0x79, 0xa9, 0xb1, 0xf2, 0xe8, 0xed, 0xa4, 0x6a, 0x33, 0xe9, 0x36, - 0x51, 0x4b, 0x6f, 0xa7, 0x2a, 0x7a, 0x3b, 0x25, 0x51, 0x30, 0x48, 0x7b, 0x3b, 0x55, 0x13, 0xdd, - 0xdb, 0x29, 0x56, 0xce, 0x8c, 0x94, 0x1c, 0x19, 0x69, 0x5d, 0x9c, 0x4a, 0xe8, 0xe2, 0xa4, 0x90, - 0x87, 0x40, 0x17, 0xa7, 0xe7, 0x27, 0x8f, 0xdd, 0xc5, 0x69, 0xa5, 0x99, 0x8c, 0xa5, 0x1e, 0x91, - 0xd4, 0xc6, 0x69, 0x7d, 0x58, 0x39, 0x7d, 0x9c, 0x0e, 0xd1, 0xc7, 0x49, 0x03, 0xad, 0x88, 0x3e, - 0x4e, 0x09, 0xc0, 0xba, 0xd2, 0x68, 0x3f, 0x5f, 0xde, 0xf8, 0x80, 0xd9, 0x82, 0x8b, 0x47, 0x97, - 0x0d, 0x65, 0x08, 0xdd, 0xca, 0x72, 0x4a, 0x20, 0xf6, 0x0a, 0x8d, 0xe5, 0xa3, 0x9d, 0x99, 0x9e, - 0x82, 0x24, 0xda, 0xda, 0xd7, 0x46, 0xef, 0x72, 0xf6, 0x3f, 0x57, 0xff, 0x6d, 0xd7, 0x65, 0x89, - 0xf2, 0x9c, 0xfb, 0xf0, 0xa4, 0x92, 0x8f, 0x8a, 0xee, 0x91, 0x1a, 0xed, 0xef, 0xd5, 0x5e, 0xb3, - 0x76, 0x56, 0x6f, 0xd6, 0xbf, 0xf4, 0xae, 0x2f, 0x1a, 0x9f, 0x6b, 0x97, 0x57, 0x85, 0x24, 0x5e, - 0xb0, 0x29, 0x7a, 0xff, 0xcb, 0xce, 0x55, 0xbd, 0xd7, 0x6e, 0x35, 0x1b, 0x9f, 0xff, 0xdb, 0x9b, - 0xad, 0x45, 0x9e, 0xde, 0xbd, 0xd9, 0xb8, 0xf8, 0xf3, 0xf2, 0xaa, 0x76, 0x55, 0xcf, 0xd3, 0x4b, - 0x37, 0xda, 0xdf, 0xcb, 0x79, 0x14, 0xf4, 0x66, 0xe9, 0x7b, 0xfb, 0xa2, 0x57, 0xff, 0xde, 0xbe, - 0xc8, 0xa5, 0x88, 0xf7, 0x2e, 0xdb, 0x5f, 0xf3, 0xf9, 0xe2, 0x79, 0xdb, 0xf1, 0xa3, 0x99, 0x9c, - 0xe7, 0xfb, 0x94, 0x7f, 0x6f, 0x37, 0x2f, 0x73, 0xb9, 0xe7, 0xd5, 0x3c, 0xee, 0xf9, 0x5c, 0xd6, - 0x73, 0x0c, 0xe1, 0x5e, 0xec, 0xfe, 0xf9, 0x75, 0xf3, 0x2a, 0xbf, 0xef, 0x5f, 0xce, 0xe7, 0xfb, - 0xbf, 0x82, 0xf0, 0xe5, 0x3c, 0xbd, 0xfb, 0xf7, 0xf6, 0xc5, 0xf7, 0x72, 0xef, 0x6b, 0xb3, 0xf5, - 0xbf, 0x97, 0xed, 0xfa, 0xe7, 0x9c, 0x69, 0xbd, 0xfc, 0x6a, 0x7b, 0x05, 0x1b, 0x2e, 0x65, 0xa4, - 0xae, 0x6e, 0x5e, 0xed, 0x9d, 0x86, 0x8d, 0x2f, 0x30, 0xdb, 0xbc, 0xb5, 0xd8, 0x40, 0x1e, 0x5b, - 0xbe, 0x1a, 0x30, 0x6e, 0xb7, 0x77, 0xb9, 0x29, 0xe0, 0xe0, 0xdd, 0x43, 0x8d, 0x08, 0xde, 0x1d, - 0xbc, 0xfb, 0xdb, 0xf2, 0x26, 0x2f, 0x85, 0x5a, 0x52, 0xca, 0x34, 0xa2, 0x39, 0x62, 0x44, 0x73, - 0x44, 0x8f, 0xc6, 0xa2, 0x09, 0xaa, 0x98, 0x78, 0xcc, 0x18, 0x4d, 0x2c, 0xc1, 0xc7, 0x16, 0x33, - 0x66, 0xef, 0xec, 0xc5, 0x8f, 0xb0, 0xd8, 0x30, 0xa6, 0xe6, 0x70, 0x8b, 0x43, 0x84, 0x5b, 0x28, - 0xb4, 0x1b, 0x08, 0xb7, 0x78, 0x81, 0xb0, 0xe2, 0x86, 0x5b, 0xf4, 0x57, 0x32, 0x2b, 0x09, 0x39, - 0x2e, 0xc7, 0x93, 0x03, 0xf4, 0x8a, 0x00, 0x7a, 0x00, 0x7a, 0xf9, 0x04, 0x7a, 0xb2, 0x6a, 0xf7, - 0x4a, 0xf3, 0x0d, 0x15, 0xf9, 0x88, 0xaa, 0x7c, 0x45, 0xc9, 0x3e, 0xa3, 0x74, 0x95, 0xa2, 0x42, - 0xb5, 0xa8, 0x53, 0x31, 0xaa, 0x54, 0x8d, 0x72, 0x95, 0xa3, 0x5c, 0xf5, 0x28, 0x55, 0x41, 0x72, - 0xb9, 0x31, 0x59, 0x49, 0x2b, 0xd2, 0x53, 0x3e, 0x15, 0x96, 0xf3, 0x92, 0x5c, 0xc6, 0x0b, 0x29, - 0x2a, 0xea, 0x7c, 0xd7, 0xa0, 0x1b, 0x27, 0xa5, 0x11, 0x87, 0x26, 0x46, 0x76, 0x76, 0xfe, 0xe5, - 0xd1, 0xb1, 0xf1, 0xb5, 0x38, 0x20, 0x35, 0x20, 0x35, 0x20, 0xb5, 0x1c, 0x71, 0x93, 0xe4, 0x33, - 0xab, 0xf1, 0x9d, 0x25, 0x1f, 0x78, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5f, 0xb9, 0x0a, 0xc4, 0x1f, - 0xd0, 0xb4, 0x2c, 0xe7, 0xdf, 0x67, 0xd0, 0x63, 0x2a, 0x6c, 0xaa, 0x13, 0x9c, 0x0a, 0xe5, 0xbe, - 0x51, 0x0a, 0x8a, 0x5a, 0xdd, 0x91, 0xa9, 0x3d, 0x32, 0xf5, 0x47, 0xa2, 0x06, 0xe5, 0xaa, 0x43, - 0xc9, 0x6a, 0x51, 0x1d, 0x2f, 0x40, 0xc0, 0x0f, 0x28, 0xe2, 0x09, 0xe4, 0x6f, 0x98, 0xcc, 0x4a, - 0x81, 0x23, 0xf3, 0x81, 0x8f, 0x26, 0xa3, 0x98, 0xf7, 0xaf, 0x6f, 0xee, 0xd6, 0xfa, 0x34, 0xea, - 0xcc, 0x4d, 0x11, 0xa6, 0x06, 0xa6, 0x06, 0xa6, 0x06, 0xa6, 0x46, 0xa6, 0xbc, 0xa3, 0x49, 0x5c, - 0xe0, 0x17, 0x2a, 0x0e, 0xee, 0x34, 0x0d, 0x2a, 0x0e, 0x86, 0xdb, 0x7a, 0x34, 0x89, 0x4b, 0x87, - 0x0c, 0xa0, 0xf0, 0x60, 0x86, 0xa8, 0xac, 0x34, 0x14, 0x1e, 0xdc, 0x70, 0x21, 0xc8, 0x66, 0x23, - 0xa0, 0x3d, 0xff, 0x8e, 0x18, 0x06, 0xed, 0xf9, 0x93, 0xea, 0xfc, 0xe0, 0x3a, 0x41, 0x8b, 0x73, - 0x83, 0xeb, 0x04, 0x59, 0x27, 0x02, 0xd7, 0x09, 0xe0, 0x78, 0xc0, 0xf1, 0x80, 0xe3, 0x49, 0x35, - 0xc7, 0x83, 0xeb, 0x04, 0x29, 0xef, 0x8a, 0xeb, 0x04, 0x98, 0x1a, 0x98, 0x1a, 0x98, 0x1a, 0x98, - 0x9a, 0xed, 0xf2, 0x8e, 0xeb, 0x84, 0xc0, 0x2f, 0x5c, 0x27, 0xec, 0x34, 0x0d, 0xae, 0x13, 0xc2, - 0x6d, 0x3d, 0xae, 0x13, 0xd2, 0x21, 0x03, 0xb8, 0x4e, 0xc8, 0x10, 0x95, 0x95, 0xe6, 0xeb, 0x04, - 0x74, 0x30, 0x52, 0xb5, 0x8d, 0x14, 0xdb, 0x47, 0xd5, 0xbb, 0xe8, 0xda, 0x63, 0xe7, 0xcb, 0xd9, - 0xdb, 0xb3, 0xc9, 0x7b, 0xf5, 0xd8, 0x38, 0x59, 0x4f, 0x66, 0x1a, 0x97, 0x9a, 0x99, 0xc6, 0x91, - 0x99, 0x46, 0xeb, 0xef, 0x22, 0x33, 0x0d, 0x99, 0x69, 0xdb, 0x07, 0x42, 0x66, 0x5a, 0x42, 0x09, - 0x30, 0x5c, 0x25, 0xd3, 0x13, 0x5c, 0xb8, 0x4a, 0x8e, 0x3e, 0x20, 0x38, 0x7d, 0x1d, 0x0c, 0x00, - 0x38, 0x7d, 0x52, 0x15, 0x47, 0xa6, 0xea, 0xc8, 0x54, 0x1e, 0x89, 0xea, 0x53, 0x43, 0xb6, 0x80, - 0xd3, 0x0f, 0x68, 0x17, 0x70, 0xfa, 0x2f, 0x1e, 0x1c, 0x9c, 0x7e, 0xf8, 0x79, 0xc0, 0xe9, 0x27, - 0x76, 0xeb, 0xc1, 0xe9, 0xeb, 0x1b, 0x15, 0x9c, 0xfe, 0x4e, 0x10, 0x22, 0x9d, 0x9c, 0x3e, 0x47, - 0x8a, 0x40, 0x08, 0x0c, 0x83, 0x14, 0x01, 0xf0, 0x3a, 0xe0, 0x75, 0xc0, 0xeb, 0x80, 0xd7, 0x01, - 0xaf, 0x03, 0x5e, 0x07, 0xbc, 0x0e, 0x78, 0x1d, 0xf0, 0x3a, 0xe0, 0x75, 0xc0, 0xeb, 0x80, 0xd7, - 0x01, 0xaf, 0x03, 0x5e, 0x07, 0xbc, 0x4e, 0xc2, 0x78, 0x1d, 0xc4, 0x6a, 0xaa, 0xda, 0x46, 0x8a, - 0xed, 0xd3, 0x16, 0xab, 0xd9, 0x48, 0x69, 0xac, 0xa6, 0x1c, 0xd2, 0x4f, 0x2a, 0xd9, 0x27, 0x3d, - 0x5a, 0xb3, 0x84, 0x68, 0xcd, 0x04, 0x78, 0xb4, 0x88, 0xd6, 0xa4, 0x27, 0xe5, 0xd0, 0x9a, 0x0b, - 0xad, 0xb9, 0x70, 0x5f, 0x80, 0xfb, 0x02, 0xb4, 0xe6, 0x02, 0x9e, 0x4f, 0x1d, 0x9e, 0x97, 0xe0, - 0x89, 0xa1, 0xd1, 0xb7, 0xcc, 0x1d, 0x29, 0xc4, 0xf2, 0x33, 0xc2, 0x3b, 0x55, 0x64, 0x5d, 0xc6, - 0xdf, 0x29, 0xdc, 0xe3, 0x99, 0x71, 0x9b, 0x97, 0x33, 0x5b, 0xae, 0xab, 0x31, 0x5f, 0x83, 0x90, - 0x63, 0x34, 0xb9, 0x27, 0x6a, 0x42, 0x44, 0x03, 0x85, 0x85, 0x73, 0x6e, 0xd7, 0x2d, 0x36, 0x33, - 0x4f, 0x5e, 0xe1, 0x74, 0xcf, 0x9e, 0x58, 0x56, 0x84, 0xb6, 0xea, 0xe7, 0xe6, 0x43, 0xfc, 0x41, - 0x5a, 0xee, 0x80, 0xb9, 0x6c, 0x70, 0xf6, 0xb8, 0x1c, 0x42, 0xe9, 0xc2, 0xc7, 0x3c, 0x54, 0x32, - 0x0f, 0x53, 0x84, 0x93, 0xb3, 0xcb, 0x89, 0x09, 0x77, 0x40, 0x76, 0x17, 0xf3, 0xdd, 0x7e, 0x72, - 0xc7, 0xfd, 0x88, 0xba, 0x0f, 0x12, 0xd6, 0x7f, 0xb7, 0xf5, 0x79, 0xfb, 0x6d, 0x77, 0x78, 0xd3, - 0x82, 0x39, 0x1e, 0x5b, 0x8f, 0xc6, 0xd8, 0xb1, 0x78, 0xff, 0x71, 0xe7, 0xf7, 0x7c, 0x2e, 0x76, - 0xf8, 0xf2, 0xdb, 0x3b, 0xae, 0x6b, 0x38, 0x9a, 0x24, 0xb4, 0xef, 0x12, 0xc5, 0x37, 0x79, 0xe9, - 0x7b, 0xb8, 0x63, 0xc7, 0x0a, 0x21, 0xf7, 0x51, 0x9d, 0x8b, 0xd8, 0xce, 0x43, 0x6c, 0xe7, 0xe0, - 0x35, 0xf8, 0x9f, 0xbf, 0xb8, 0xa6, 0xb3, 0x16, 0x96, 0x38, 0x88, 0x9a, 0xce, 0x19, 0x2f, 0x6d, - 0x33, 0x22, 0xc3, 0x17, 0xd9, 0xfd, 0x8e, 0xe3, 0x66, 0xc7, 0x10, 0x69, 0x59, 0x7e, 0xb3, 0x34, - 0xff, 0x58, 0x9a, 0x1f, 0x1c, 0x4f, 0xe4, 0x69, 0x70, 0x57, 0x54, 0x0e, 0xad, 0x30, 0x58, 0x70, - 0x51, 0x06, 0x7b, 0x18, 0x3b, 0xae, 0x08, 0xab, 0xd2, 0xb7, 0xca, 0xcf, 0xe6, 0x61, 0x23, 0xae, - 0xff, 0x0b, 0xbe, 0xac, 0x53, 0xff, 0x9f, 0xfa, 0xe7, 0xab, 0x5e, 0xa7, 0x75, 0x7d, 0x55, 0x8f, - 0x3a, 0x5c, 0x3c, 0x9a, 0x2c, 0x36, 0x2d, 0x26, 0x83, 0x06, 0x93, 0x70, 0x4e, 0x65, 0xf3, 0x5c, - 0xd2, 0x79, 0x2d, 0xe9, 0x3c, 0x96, 0x9c, 0x73, 0xac, 0xc7, 0x67, 0x8e, 0x4d, 0x44, 0x05, 0x4e, - 0xe6, 0xe2, 0x48, 0x1a, 0x62, 0x36, 0x70, 0x0c, 0xe9, 0x59, 0x19, 0xb7, 0x72, 0x8c, 0x31, 0xea, - 0xf6, 0x64, 0x34, 0x7b, 0xb9, 0x29, 0x95, 0x0b, 0xfc, 0x21, 0xba, 0x9e, 0xe4, 0x23, 0x25, 0x7a, - 0x72, 0x7d, 0x58, 0xe8, 0x49, 0xe8, 0x49, 0xe8, 0x49, 0xe8, 0xc9, 0x14, 0xea, 0x49, 0xc9, 0x38, - 0x52, 0x0a, 0x7e, 0x84, 0x22, 0x83, 0x22, 0xcb, 0xaf, 0x22, 0xb3, 0x98, 0x39, 0x74, 0xd9, 0x50, - 0x86, 0xf2, 0x8a, 0x11, 0x68, 0x5f, 0x68, 0xfb, 0xd4, 0xe6, 0x62, 0x23, 0x4e, 0x5d, 0x67, 0x22, - 0xb8, 0x7d, 0xb7, 0x3c, 0xdb, 0xfe, 0x5f, 0x2f, 0xf5, 0xed, 0x80, 0x0d, 0xb9, 0xcd, 0x05, 0x77, - 0x6c, 0x6f, 0xfb, 0x3f, 0xf9, 0xff, 0x32, 0x27, 0x8e, 0x49, 0xf7, 0x27, 0xd6, 0x25, 0x85, 0x3f, - 0x8a, 0x8c, 0xcb, 0x8a, 0xe7, 0xc1, 0x24, 0x5c, 0x5a, 0xf8, 0x83, 0xbd, 0xbc, 0xbc, 0x90, 0x14, - 0x2e, 0x37, 0xf1, 0x98, 0x1b, 0x57, 0x45, 0x48, 0x0c, 0xca, 0x78, 0xa9, 0xbf, 0x9c, 0xc5, 0xdb, - 0x1a, 0xb7, 0x8f, 0x32, 0x82, 0xd4, 0x54, 0x04, 0x60, 0xac, 0xe9, 0xb2, 0xf9, 0x4a, 0xa6, 0xeb, - 0xae, 0x98, 0x04, 0x7c, 0x48, 0x76, 0xce, 0xa4, 0x38, 0x65, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, - 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x69, 0x01, 0x1f, 0x19, 0x8d, 0xd5, 0x79, 0x11, - 0x78, 0x11, 0xa9, 0xa6, 0x4f, 0x88, 0xa8, 0x9a, 0x10, 0xc1, 0x10, 0xd1, 0xd2, 0x72, 0x62, 0xa5, - 0xe1, 0xc4, 0xbe, 0x94, 0x2f, 0xe1, 0x52, 0x5e, 0xab, 0x7a, 0xc2, 0xa5, 0x7c, 0x78, 0xf9, 0xc1, - 0xa5, 0x3c, 0xdc, 0x24, 0xb8, 0x49, 0x49, 0x74, 0x93, 0x70, 0xd9, 0x84, 0x4b, 0x79, 0xe8, 0x49, - 0xe8, 0x49, 0xe8, 0x49, 0xe8, 0x49, 0x05, 0x7a, 0x12, 0x97, 0xf2, 0x50, 0x64, 0x50, 0x64, 0x49, - 0x52, 0x64, 0xe0, 0xc5, 0x55, 0xec, 0x0f, 0x78, 0xf1, 0xd0, 0x82, 0x08, 0x5e, 0x5c, 0x96, 0x2e, - 0xc3, 0xa5, 0xfc, 0xe6, 0x35, 0xc2, 0xa5, 0x3c, 0xc0, 0x07, 0xc0, 0x07, 0xc0, 0x07, 0xc0, 0x07, - 0xc0, 0x07, 0xc0, 0x07, 0xc0, 0x47, 0x74, 0xf0, 0x91, 0x83, 0x4b, 0xf9, 0x08, 0x65, 0x80, 0xf2, - 0x53, 0xe9, 0x22, 0x7c, 0xd9, 0x88, 0xbd, 0x37, 0x6b, 0x8b, 0xcc, 0xc6, 0x6c, 0x2f, 0x86, 0xa4, - 0xac, 0x9f, 0xe1, 0xcd, 0x8b, 0x0c, 0x19, 0xce, 0x78, 0x6e, 0xcf, 0x22, 0x94, 0xd0, 0x78, 0x35, - 0x40, 0x36, 0xaa, 0x68, 0x84, 0xab, 0xe0, 0x97, 0x9d, 0x22, 0x1a, 0xa1, 0x2a, 0xe8, 0xa1, 0x86, - 0x86, 0x7a, 0x47, 0x4d, 0x56, 0xb8, 0x4e, 0xb4, 0x92, 0x94, 0xd9, 0x8f, 0xd6, 0x89, 0x54, 0x32, - 0x32, 0xa1, 0xc1, 0x3a, 0xa6, 0x65, 0x39, 0xff, 0x1a, 0xce, 0xbf, 0xb6, 0x61, 0x7a, 0xf1, 0xe9, - 0x8d, 0xb5, 0xd1, 0xe2, 0x5f, 0x39, 0x1f, 0x82, 0x21, 0x91, 0x50, 0x1b, 0x36, 0xbf, 0x04, 0x49, - 0xac, 0xda, 0xae, 0x69, 0xe5, 0x47, 0x26, 0xdc, 0x16, 0x9f, 0x24, 0xb0, 0x23, 0x31, 0x5a, 0x96, - 0x48, 0xea, 0x3f, 0x24, 0xc1, 0x27, 0x96, 0xd9, 0x4f, 0x48, 0x76, 0x85, 0x6a, 0xc9, 0xfd, 0x81, - 0x54, 0xf4, 0x80, 0x91, 0xd1, 0xab, 0x54, 0x66, 0x5f, 0x1f, 0x55, 0x5b, 0x50, 0xaa, 0x54, 0x12, - 0xbc, 0x09, 0x9a, 0x98, 0x91, 0x6e, 0x92, 0x63, 0xe7, 0xb8, 0x67, 0xde, 0x5a, 0xcc, 0x98, 0x3b, - 0xd8, 0xa6, 0x67, 0x0c, 0xb9, 0x25, 0x98, 0x2b, 0x21, 0x78, 0x6e, 0xf3, 0xb8, 0xf1, 0xa1, 0x4c, - 0x9c, 0x52, 0xf9, 0x80, 0x33, 0x80, 0x33, 0xb9, 0x85, 0x33, 0xf1, 0x4b, 0xcd, 0xc7, 0x2c, 0x2d, - 0x4f, 0xa3, 0xd0, 0x5c, 0x36, 0xb6, 0xcc, 0xbe, 0xaf, 0x78, 0xe2, 0x6b, 0xb2, 0xd7, 0x03, 0x42, - 0x85, 0x41, 0x85, 0x41, 0x85, 0x41, 0x85, 0x25, 0x81, 0xad, 0xd2, 0x77, 0x5b, 0xb5, 0x7e, 0xf1, - 0x80, 0x2c, 0xd2, 0x34, 0x66, 0x91, 0x82, 0x96, 0x96, 0xa8, 0x5b, 0x41, 0x4b, 0x87, 0x07, 0x42, - 0xa0, 0xa5, 0x01, 0x82, 0x00, 0x82, 0x42, 0xca, 0x0b, 0x68, 0xe9, 0x97, 0x9c, 0x28, 0x68, 0xe9, - 0x58, 0x9c, 0x26, 0x68, 0xe9, 0x04, 0x6c, 0x02, 0x68, 0xe9, 0xc0, 0x32, 0x83, 0x96, 0x06, 0x9c, - 0x01, 0x9c, 0x01, 0xa7, 0x93, 0x4c, 0x4e, 0x07, 0xb4, 0x34, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, - 0x68, 0xe9, 0x2d, 0x42, 0x91, 0x14, 0x5a, 0x1a, 0x79, 0x14, 0x3b, 0xaf, 0x95, 0xb4, 0x54, 0x0a, - 0xaf, 0x6d, 0x8a, 0x9f, 0xad, 0xe5, 0xa0, 0x84, 0xc9, 0x14, 0x21, 0x23, 0xd2, 0xa3, 0x45, 0xa2, - 0x23, 0x75, 0x62, 0x0f, 0xa9, 0x13, 0xaf, 0x10, 0x54, 0xd8, 0xd4, 0x09, 0x73, 0x22, 0x7e, 0x1a, - 0x63, 0xd3, 0xf3, 0x96, 0x4b, 0x18, 0xf1, 0xa6, 0x6a, 0x7d, 0x98, 0x68, 0x37, 0x56, 0x87, 0x48, - 0xa4, 0xa0, 0x84, 0x61, 0x79, 0xba, 0xb1, 0x8a, 0x0c, 0xaf, 0x9e, 0x3d, 0x9c, 0x55, 0x1e, 0x78, - 0x34, 0x19, 0x5f, 0x53, 0xd7, 0x9f, 0x12, 0x70, 0x33, 0x3d, 0x60, 0x5e, 0xdf, 0xe5, 0xe3, 0x48, - 0xb0, 0xe8, 0x45, 0xe9, 0xb3, 0xe7, 0x41, 0x70, 0xe6, 0x71, 0xe6, 0x33, 0x76, 0xe6, 0x3d, 0xe1, - 0x72, 0xfb, 0x2e, 0xed, 0x27, 0xdd, 0x72, 0xfa, 0xa6, 0x15, 0x85, 0xe5, 0x79, 0xae, 0xcd, 0xb1, - 0x1a, 0x01, 0x67, 0x1c, 0x67, 0x3c, 0x63, 0x67, 0xdc, 0xf4, 0x0c, 0x7b, 0x32, 0xba, 0x8d, 0x74, - 0xed, 0xb2, 0x12, 0xf0, 0x08, 0x05, 0x67, 0x62, 0x5e, 0x5a, 0xc7, 0x2b, 0xe6, 0x22, 0x81, 0x0a, - 0x94, 0x72, 0x33, 0x2a, 0xeb, 0x52, 0x5a, 0xe6, 0x3d, 0xe8, 0x34, 0x5e, 0x69, 0x9b, 0xc4, 0x2d, - 0x6d, 0xb9, 0x74, 0x52, 0x3e, 0xa9, 0x1e, 0x97, 0x4e, 0x2a, 0x09, 0x5a, 0x63, 0x22, 0x5e, 0xb1, - 0x9b, 0x00, 0xeb, 0x1b, 0xf5, 0x8a, 0xc5, 0x57, 0x50, 0xd1, 0xae, 0x54, 0x60, 0x7b, 0x61, 0x7b, - 0x61, 0x7b, 0x61, 0x7b, 0x61, 0x7b, 0x61, 0x7b, 0xf3, 0x6d, 0x7b, 0xe7, 0xf7, 0x4b, 0xc6, 0xf2, - 0x7a, 0x28, 0x8e, 0x0d, 0x7e, 0x31, 0x10, 0x6c, 0x31, 0x6c, 0x31, 0xb8, 0xae, 0x04, 0x72, 0x5d, - 0xf3, 0x83, 0x2a, 0xa2, 0x2c, 0xc6, 0xfa, 0x59, 0x8f, 0xd0, 0xc4, 0x03, 0xa7, 0x1c, 0xa7, 0x3c, - 0xf1, 0xa7, 0x3c, 0xaa, 0x70, 0xef, 0xc5, 0xec, 0x4c, 0x13, 0xb1, 0x23, 0x8d, 0x1a, 0x25, 0xe1, - 0xb2, 0x91, 0x73, 0xcf, 0x8c, 0xb1, 0xcb, 0xef, 0x4d, 0xc1, 0x62, 0x39, 0xe7, 0xc1, 0xa1, 0xa0, - 0x34, 0xa0, 0x34, 0x32, 0xa6, 0x34, 0x02, 0x42, 0xbe, 0x8c, 0xd2, 0x8a, 0xa3, 0x43, 0x22, 0x78, - 0x44, 0x85, 0xc6, 0x80, 0xd9, 0x82, 0x8b, 0xc7, 0x33, 0xd3, 0x63, 0xf1, 0x43, 0x96, 0x3b, 0xf5, - 0xf3, 0xd6, 0xf7, 0x7a, 0xaf, 0xdd, 0x69, 0x7c, 0xaf, 0x5d, 0xd5, 0x7b, 0xb5, 0xcb, 0x5e, 0xab, - 0x7d, 0xd5, 0x68, 0x5d, 0x44, 0x15, 0xa9, 0xb9, 0xd3, 0xe7, 0xc5, 0x4a, 0x43, 0x93, 0x54, 0xc1, - 0xfc, 0xc5, 0x2b, 0x2d, 0x5f, 0xb2, 0xd6, 0x6c, 0x16, 0x74, 0x78, 0xe5, 0x2a, 0x5e, 0xa8, 0xdd, - 0xac, 0x7d, 0x8e, 0xfb, 0x46, 0x91, 0xbe, 0xd9, 0x55, 0x7d, 0xb0, 0xd5, 0x18, 0x3b, 0x67, 0x22, - 0x98, 0x31, 0xb4, 0xcc, 0xb1, 0x31, 0x30, 0x47, 0xe3, 0x19, 0xc6, 0x8f, 0x6e, 0xed, 0x82, 0x63, - 0x85, 0xcd, 0x1c, 0x8f, 0x17, 0xe0, 0x0f, 0x73, 0x09, 0x73, 0x99, 0x78, 0x73, 0x19, 0x3d, 0x00, - 0x3f, 0x62, 0xe0, 0xbd, 0xa2, 0xd2, 0x25, 0xcc, 0x1e, 0x18, 0x7d, 0x67, 0x34, 0x9a, 0xd8, 0x5c, - 0x3c, 0xc6, 0xa8, 0x61, 0xb2, 0x3e, 0x4e, 0x74, 0x85, 0x71, 0xd1, 0xba, 0xa8, 0x43, 0x5f, 0x40, - 0x5f, 0x64, 0x4d, 0x5f, 0xf8, 0x67, 0x23, 0x9b, 0x8e, 0x79, 0xba, 0xf3, 0x52, 0xc2, 0x94, 0x92, - 0x92, 0x93, 0x39, 0xc2, 0x6e, 0xef, 0xc6, 0xc6, 0x68, 0x62, 0x09, 0xfe, 0xd3, 0x19, 0x87, 0x4f, - 0x20, 0x59, 0xff, 0x3a, 0xf2, 0x48, 0x08, 0xd5, 0x1f, 0x5a, 0x70, 0xa0, 0x05, 0x07, 0xec, 0x7b, - 0xc6, 0xec, 0x7b, 0xe4, 0x5a, 0x67, 0xcc, 0x36, 0x6f, 0x2d, 0x36, 0x90, 0xd0, 0xd9, 0x7c, 0x39, - 0x10, 0x72, 0xea, 0x91, 0x53, 0x4f, 0x77, 0x34, 0xa5, 0x1e, 0xd1, 0x78, 0xc4, 0x1b, 0x72, 0xea, - 0x89, 0xca, 0x82, 0xac, 0x60, 0xa3, 0x21, 0x84, 0x15, 0x5f, 0x6f, 0xad, 0x8d, 0x06, 0xa5, 0x03, - 0xa5, 0x03, 0xa5, 0x13, 0x4a, 0x5e, 0x50, 0x5a, 0xf1, 0xc5, 0x83, 0xa0, 0xb4, 0x62, 0xac, 0x5f, - 0x28, 0xad, 0x98, 0x84, 0x4d, 0xc8, 0x7a, 0x69, 0xc5, 0x6c, 0x96, 0xf1, 0x59, 0x63, 0xd4, 0x50, - 0x5b, 0x1e, 0xb5, 0xe5, 0xc1, 0xb7, 0x80, 0x6f, 0x01, 0xdf, 0x02, 0xd7, 0x07, 0xae, 0x0f, 0xf8, - 0x16, 0xf0, 0x2d, 0x50, 0x3a, 0x50, 0x3a, 0xe0, 0x5b, 0xc0, 0xb7, 0x80, 0x6f, 0x01, 0xdf, 0x02, - 0xbe, 0x05, 0x7c, 0x8b, 0x64, 0xbe, 0x05, 0x45, 0x93, 0x77, 0x5c, 0x29, 0x59, 0x25, 0x93, 0xeb, - 0xb7, 0x77, 0xe3, 0xf3, 0xd5, 0x98, 0x94, 0x71, 0x6f, 0xae, 0xeb, 0xb8, 0xc6, 0x4f, 0xd3, 0x1e, - 0x58, 0x61, 0x92, 0x14, 0x9e, 0xdd, 0xf6, 0xf5, 0xef, 0x23, 0xf2, 0x8d, 0x10, 0xa0, 0x22, 0xf2, - 0x0d, 0x91, 0x6f, 0x60, 0x62, 0xc1, 0xc4, 0x2e, 0xbe, 0x28, 0x5c, 0x66, 0x0a, 0xc3, 0xf4, 0x8c, - 0x7f, 0xb9, 0xf8, 0x39, 0x70, 0xcd, 0x7f, 0xe3, 0x73, 0x1b, 0xc1, 0x21, 0xc1, 0xce, 0x82, 0x28, - 0x01, 0x51, 0x02, 0x76, 0x36, 0xdf, 0xae, 0xd2, 0x1a, 0xe6, 0xc5, 0xdd, 0x34, 0xee, 0xa6, 0x81, - 0x88, 0x80, 0x88, 0x80, 0x88, 0x80, 0x88, 0x80, 0x88, 0x80, 0x88, 0x80, 0x88, 0xc0, 0x1e, 0xef, - 0xbc, 0x54, 0xd2, 0xe8, 0xe3, 0xd9, 0xa8, 0xff, 0x59, 0x0d, 0x4a, 0xc8, 0x1f, 0xdf, 0xb9, 0x66, - 0x9f, 0x0d, 0x27, 0x96, 0xe1, 0x32, 0x4f, 0x98, 0xae, 0x08, 0xcf, 0x20, 0x07, 0x46, 0x00, 0x87, - 0x0c, 0x0e, 0x19, 0x1c, 0x32, 0x38, 0x64, 0x78, 0x4c, 0xe4, 0x1e, 0x53, 0x52, 0xa2, 0x79, 0xe1, - 0xd5, 0xc0, 0xab, 0x81, 0x57, 0x93, 0x1e, 0xaf, 0x26, 0x82, 0x5d, 0xf8, 0xc9, 0xac, 0x31, 0x73, - 0x0d, 0xc7, 0xb6, 0x1e, 0xe3, 0xab, 0x9b, 0x97, 0x83, 0x41, 0xe5, 0x40, 0xe5, 0x40, 0xe5, 0x40, - 0xe5, 0x04, 0x9f, 0x71, 0xe9, 0x60, 0x1a, 0x82, 0x8f, 0x24, 0x54, 0x32, 0x5e, 0x1b, 0x0d, 0x4a, - 0x07, 0x4a, 0x07, 0x4a, 0x27, 0x94, 0xbc, 0x4c, 0xb8, 0x2d, 0x8a, 0x55, 0x09, 0x3a, 0xa7, 0x8a, - 0xc8, 0x7f, 0xa9, 0x6a, 0x25, 0x30, 0x1c, 0x22, 0xff, 0x13, 0xb3, 0x05, 0xe5, 0xc3, 0x93, 0x2a, - 0x42, 0xff, 0x5f, 0xff, 0xea, 0x26, 0x18, 0x74, 0x78, 0xc2, 0xb4, 0x98, 0x31, 0xaf, 0xe1, 0xee, - 0x49, 0x42, 0x1e, 0xc1, 0x21, 0x01, 0x3f, 0x00, 0x3f, 0x00, 0x3f, 0x42, 0xc9, 0xcb, 0x80, 0xf5, - 0xf9, 0xc8, 0xb4, 0xaa, 0x65, 0x19, 0x5e, 0x4f, 0x29, 0xc6, 0x18, 0x01, 0x3d, 0x5c, 0x02, 0x9e, - 0xd9, 0xbc, 0xcc, 0x25, 0xe0, 0x19, 0xdd, 0x78, 0xe6, 0x28, 0x47, 0x5b, 0x80, 0x3c, 0xc6, 0xe8, - 0x02, 0xa9, 0x2f, 0x14, 0xe5, 0x75, 0x38, 0x01, 0xc2, 0x73, 0x11, 0x9e, 0x4b, 0x0e, 0xdd, 0x70, - 0xd9, 0xbc, 0xc3, 0x17, 0x71, 0xd9, 0x0c, 0x2f, 0x08, 0x5e, 0x90, 0x5e, 0x2f, 0x08, 0x97, 0xcd, - 0xe1, 0xd7, 0x0c, 0x97, 0xcd, 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, 0xbf, 0x7f, 0x46, 0x5c, 0x36, - 0x43, 0xe9, 0x40, 0xe9, 0x24, 0x45, 0xe9, 0xe0, 0xb2, 0x79, 0x8d, 0x19, 0xc4, 0x65, 0x73, 0x2c, - 0x6e, 0x0f, 0x97, 0xcd, 0x49, 0xd8, 0x05, 0x5c, 0x36, 0x6f, 0x62, 0x18, 0x71, 0xd9, 0x0c, 0xf8, - 0x01, 0xf8, 0x91, 0x30, 0xf8, 0x81, 0xcb, 0xe6, 0xd4, 0xe1, 0x19, 0x5c, 0x36, 0x6b, 0xc7, 0x33, - 0xb8, 0x6c, 0xce, 0x0e, 0x98, 0xc9, 0xc9, 0x65, 0x33, 0x2a, 0x1f, 0xec, 0xbe, 0x58, 0xb2, 0x6a, - 0x1f, 0x7c, 0x5b, 0x8e, 0xdb, 0x59, 0x0e, 0x4b, 0x58, 0xfd, 0xc0, 0x72, 0xee, 0xee, 0xb8, 0x7d, - 0x67, 0x38, 0xe3, 0xd9, 0x3a, 0x7a, 0xe1, 0x8b, 0x1f, 0xbc, 0x1e, 0x00, 0xb5, 0x0f, 0x08, 0xb1, - 0x2f, 0x6a, 0x1f, 0xa0, 0xf6, 0x81, 0x4a, 0x67, 0x0f, 0xe1, 0x28, 0x1a, 0xb0, 0x40, 0xe4, 0x70, - 0x14, 0xcb, 0xb9, 0x33, 0x6c, 0xc6, 0xef, 0x7e, 0xde, 0x3a, 0xae, 0x31, 0xb7, 0xe3, 0x46, 0xff, - 0xe7, 0xcc, 0xc3, 0xf1, 0xe2, 0x93, 0x28, 0xbf, 0x19, 0x3b, 0x7e, 0xfd, 0xb8, 0xd9, 0x76, 0x82, - 0x94, 0x01, 0x29, 0x03, 0x52, 0x26, 0x9c, 0xbc, 0xa0, 0x7c, 0x5c, 0x52, 0xdc, 0xa8, 0x57, 0x28, - 0x18, 0x21, 0xbb, 0x08, 0xd9, 0x05, 0x46, 0x02, 0x46, 0x02, 0x46, 0x02, 0x46, 0x02, 0x46, 0x02, - 0x46, 0x02, 0x46, 0xda, 0x80, 0x91, 0xc0, 0x34, 0xef, 0xbc, 0x56, 0xb2, 0x88, 0xe6, 0xe6, 0x62, - 0xd8, 0xd6, 0x72, 0x54, 0x42, 0x9e, 0xf9, 0xf9, 0xdd, 0x8c, 0xe5, 0xa3, 0x85, 0xe4, 0x99, 0x5f, - 0x0f, 0x10, 0x8e, 0x67, 0x3e, 0x04, 0xcf, 0x0c, 0x9e, 0x39, 0xa2, 0x69, 0x79, 0xc6, 0x77, 0xcc, - 0x1c, 0xba, 0x6c, 0x18, 0x66, 0xc3, 0x56, 0xa6, 0xe3, 0x38, 0xc4, 0x77, 0xda, 0x4b, 0x75, 0xf1, - 0xf1, 0xe3, 0xd2, 0x8d, 0x3c, 0x78, 0x2d, 0xfb, 0x84, 0xe7, 0x76, 0x1e, 0x36, 0x65, 0xb8, 0x6c, - 0x68, 0xb1, 0xbe, 0x70, 0xdc, 0xf0, 0xe7, 0xf6, 0xf5, 0x00, 0xb8, 0x1f, 0xc2, 0xb9, 0x8d, 0x74, - 0x6e, 0x71, 0x3f, 0x04, 0xee, 0x03, 0xdc, 0x47, 0x1c, 0xee, 0xe3, 0x95, 0x2a, 0x36, 0xfa, 0x16, - 0x5f, 0xbc, 0x68, 0xdc, 0xd4, 0x9e, 0xcd, 0xe3, 0xa2, 0xaf, 0x10, 0x48, 0x0f, 0x90, 0x1e, 0x20, - 0x3d, 0x94, 0x2d, 0xda, 0x06, 0xc5, 0x33, 0xf1, 0x04, 0x73, 0x0d, 0x3e, 0x50, 0xa1, 0xd4, 0xfc, - 0xb1, 0xa1, 0x90, 0xa0, 0x90, 0xa0, 0x90, 0xc2, 0x9d, 0xa6, 0x97, 0x07, 0xc8, 0x10, 0xb3, 0x71, - 0x25, 0xe8, 0xa6, 0x93, 0x18, 0x63, 0x2c, 0xdf, 0x4d, 0x7b, 0xe4, 0xff, 0xcb, 0xfc, 0xce, 0xa3, - 0x52, 0x41, 0x42, 0x20, 0xfb, 0x72, 0x75, 0x8e, 0x25, 0x0c, 0x25, 0x27, 0x3f, 0x42, 0xde, 0x6a, - 0xf9, 0x0f, 0x26, 0x33, 0x5f, 0x42, 0x92, 0x82, 0xde, 0x3a, 0xac, 0xe4, 0xe0, 0x7d, 0x7f, 0x5c, - 0x05, 0x41, 0xfc, 0x31, 0x15, 0xc6, 0xe6, 0xad, 0x92, 0x98, 0x57, 0x41, 0xb5, 0x55, 0xe5, 0xd2, - 0x49, 0xf9, 0xa4, 0x7a, 0x5c, 0x3a, 0xa9, 0xa4, 0x68, 0xcf, 0xde, 0x25, 0x63, 0x94, 0xee, 0x3b, - 0x8d, 0x92, 0x27, 0x51, 0x21, 0xf3, 0xf1, 0x7d, 0xd9, 0x30, 0x07, 0x03, 0x97, 0x79, 0x9e, 0x44, - 0xb5, 0x5c, 0xfc, 0x24, 0x61, 0xac, 0xb6, 0x29, 0x04, 0x73, 0x6d, 0x69, 0x9a, 0xb9, 0xf0, 0xd7, - 0xfb, 0xf7, 0x37, 0x87, 0xc6, 0x49, 0xf7, 0xe9, 0xa6, 0x68, 0x9c, 0x74, 0x17, 0x1f, 0x8b, 0xf3, - 0x3f, 0x16, 0x9f, 0x4b, 0x37, 0x87, 0x46, 0x79, 0xf5, 0xb9, 0x72, 0x73, 0x68, 0x54, 0xba, 0xfb, - 0x3f, 0x7e, 0x7c, 0xdc, 0xff, 0x75, 0x34, 0x0d, 0xff, 0xc5, 0x3f, 0x0a, 0xba, 0x85, 0x0c, 0xd9, - 0x46, 0x7a, 0xae, 0x80, 0x5f, 0x39, 0x55, 0x08, 0x93, 0x43, 0x98, 0x1c, 0xb9, 0xa3, 0x07, 0xaa, - 0x38, 0x12, 0xb3, 0x02, 0xaa, 0x18, 0xcc, 0x0c, 0x98, 0x99, 0xec, 0x31, 0x33, 0xa0, 0x8a, 0x41, - 0x15, 0x43, 0x21, 0x41, 0x21, 0x25, 0x46, 0x21, 0x81, 0x2a, 0x7e, 0x6b, 0x85, 0x40, 0x15, 0x87, - 0xe2, 0x1f, 0x41, 0x15, 0x83, 0x2a, 0x06, 0x55, 0x2c, 0x87, 0xff, 0x92, 0x3b, 0x0a, 0xa8, 0xe2, - 0xdf, 0x1b, 0x2d, 0x50, 0xc5, 0xa0, 0x8a, 0x35, 0x33, 0x48, 0x89, 0xa1, 0x8a, 0x91, 0x2d, 0xb4, - 0xf3, 0x5a, 0xc9, 0xca, 0x16, 0xea, 0xcc, 0x86, 0xed, 0xf8, 0xa3, 0x12, 0x66, 0x1d, 0x84, 0x63, - 0xe3, 0x23, 0xb1, 0xf0, 0x91, 0x33, 0x0c, 0x4a, 0xc8, 0x30, 0x90, 0xe9, 0x03, 0xa7, 0x39, 0xc3, - 0xc0, 0x9c, 0x88, 0x9f, 0xc6, 0xd8, 0xf4, 0xbc, 0xe5, 0x12, 0x46, 0xbc, 0x3c, 0x5a, 0x1f, 0x26, - 0xda, 0x25, 0xd2, 0x21, 0xf2, 0x0d, 0x28, 0x29, 0xa0, 0x3c, 0x5d, 0x22, 0x45, 0xa6, 0x76, 0xd6, - 0x08, 0x52, 0x6e, 0xdf, 0x45, 0x95, 0xf1, 0x75, 0x4c, 0x9c, 0x80, 0xcb, 0xe2, 0x01, 0xf3, 0xfa, - 0x2e, 0x1f, 0x47, 0x42, 0x45, 0x2f, 0x2a, 0x2a, 0x3f, 0x0f, 0x82, 0x33, 0x8f, 0x33, 0x9f, 0xb1, - 0x33, 0xef, 0x09, 0x97, 0xdb, 0x77, 0x69, 0x3f, 0xe9, 0x96, 0xd3, 0x37, 0x2d, 0xc3, 0xf4, 0xa2, - 0x1f, 0x73, 0x7f, 0x04, 0x9c, 0x71, 0x9c, 0xf1, 0x8c, 0x9d, 0x71, 0xd3, 0x33, 0xec, 0xc9, 0xe8, - 0x96, 0xb9, 0x31, 0x8e, 0x79, 0x84, 0xbb, 0x87, 0x98, 0x77, 0x0d, 0x31, 0xee, 0xa8, 0x64, 0xdc, - 0x25, 0x48, 0x22, 0xa4, 0x65, 0xdd, 0x15, 0xc8, 0xe4, 0x99, 0x63, 0x30, 0xb2, 0x52, 0xb8, 0x7f, - 0xd9, 0x4b, 0x2b, 0x8b, 0xdb, 0x97, 0xba, 0xc6, 0x44, 0xb4, 0x62, 0x37, 0x01, 0xd6, 0x77, 0x4e, - 0x71, 0xc5, 0x31, 0xbe, 0xab, 0x01, 0x60, 0x7b, 0x61, 0x7b, 0x61, 0x7b, 0x61, 0x7b, 0x61, 0x7b, - 0x61, 0x7b, 0x61, 0x7b, 0x77, 0xb7, 0xbd, 0x11, 0x0a, 0xb6, 0x6d, 0xb6, 0xc1, 0xa1, 0x0b, 0xb7, - 0xc1, 0x16, 0xc3, 0x16, 0x83, 0xeb, 0xa2, 0x3f, 0xf1, 0x22, 0xca, 0x62, 0xac, 0x9f, 0xf5, 0x08, - 0x21, 0x9b, 0x38, 0xe5, 0x38, 0xe5, 0x89, 0x3f, 0xe5, 0x51, 0x85, 0x7b, 0xed, 0xa0, 0x97, 0x23, - 0x7c, 0xb7, 0x6e, 0x4f, 0x46, 0xb3, 0x47, 0x9f, 0x26, 0x40, 0x49, 0xb8, 0x6c, 0xe4, 0xdc, 0x33, - 0x63, 0xec, 0xf2, 0x7b, 0x53, 0xb0, 0x58, 0xce, 0x79, 0x70, 0x28, 0x28, 0x0d, 0x28, 0x8d, 0x8c, - 0x29, 0x8d, 0x80, 0x90, 0x2f, 0x4b, 0x3a, 0xc7, 0xd1, 0x21, 0x11, 0x3c, 0xa2, 0x42, 0x63, 0xc0, - 0x6c, 0xc1, 0xc5, 0xe3, 0x99, 0xe9, 0x49, 0x68, 0xa9, 0xdd, 0xa9, 0x9f, 0xb7, 0xbe, 0xd7, 0x7b, - 0xed, 0x4e, 0xe3, 0x7b, 0xed, 0xaa, 0xde, 0xab, 0x5d, 0xf6, 0x5a, 0xed, 0xab, 0x46, 0xeb, 0x22, - 0xaa, 0x48, 0xcd, 0x9d, 0x3e, 0x2f, 0x56, 0x8c, 0x6a, 0x4c, 0xef, 0x75, 0xf5, 0x66, 0x2f, 0x5e, - 0x69, 0xf9, 0x92, 0xb5, 0x66, 0xb3, 0xa0, 0xc3, 0x2b, 0x57, 0xf1, 0x42, 0xed, 0x66, 0xed, 0x73, - 0xdc, 0x37, 0x8a, 0xf4, 0xcd, 0xae, 0xea, 0x83, 0xad, 0xc6, 0xd8, 0xcd, 0xe3, 0x2a, 0x87, 0x96, - 0x39, 0x36, 0x06, 0xe6, 0x68, 0x3c, 0xc3, 0xf8, 0xd1, 0xad, 0x5d, 0x70, 0xac, 0xb0, 0xc9, 0xdc, - 0xf1, 0xb2, 0x9d, 0x61, 0x2e, 0x61, 0x2e, 0x13, 0x6f, 0x2e, 0xa3, 0x67, 0x23, 0x47, 0xcc, 0x42, - 0x56, 0x54, 0x4d, 0x84, 0xd9, 0x03, 0xa3, 0xef, 0x8c, 0x46, 0x13, 0x9b, 0x8b, 0xc7, 0x18, 0x65, - 0x45, 0xd6, 0xc7, 0x89, 0xae, 0x30, 0x2e, 0x5a, 0x17, 0x75, 0xe8, 0x0b, 0xe8, 0x8b, 0xac, 0xe9, - 0x0b, 0xff, 0x6c, 0xe4, 0xde, 0x31, 0x17, 0x8e, 0x30, 0x2d, 0x63, 0x6c, 0x8a, 0x9f, 0x31, 0x5c, - 0xf2, 0x97, 0x83, 0x40, 0x5b, 0x40, 0x5b, 0x64, 0x4c, 0x5b, 0x44, 0x4e, 0x9c, 0xc7, 0x85, 0x39, - 0x2e, 0xcc, 0xd7, 0x96, 0x16, 0x17, 0xe6, 0x0a, 0xc9, 0x82, 0x74, 0x5e, 0x98, 0x2f, 0x6d, 0xe7, - 0x5c, 0x9b, 0xb3, 0xf8, 0x36, 0x78, 0x35, 0x0e, 0xcc, 0x30, 0xcc, 0x30, 0xcc, 0x30, 0xcc, 0x30, - 0xcc, 0x30, 0xcc, 0x70, 0x6e, 0xcd, 0x70, 0xba, 0xcb, 0x33, 0x84, 0x28, 0x5d, 0x21, 0xa7, 0x7c, - 0x82, 0xe0, 0x23, 0xe6, 0x7a, 0xe1, 0xeb, 0x27, 0x2c, 0xbf, 0x87, 0x16, 0x8d, 0x84, 0x10, 0x02, - 0x2d, 0x1a, 0xd1, 0xa2, 0x11, 0x18, 0x39, 0x63, 0x18, 0x39, 0x72, 0xdd, 0xed, 0xbe, 0x63, 0xdb, - 0xac, 0x2f, 0x0c, 0x97, 0x09, 0xf7, 0x31, 0x7e, 0x9c, 0xc6, 0xfa, 0x70, 0xf1, 0xab, 0x6c, 0x1f, - 0x1d, 0xa2, 0xa2, 0x2d, 0x2a, 0xda, 0x52, 0x9f, 0xd5, 0x98, 0x30, 0x56, 0x7b, 0x45, 0xdb, 0x01, - 0xeb, 0xf3, 0x91, 0x69, 0x55, 0xcb, 0x32, 0x0a, 0xd9, 0x96, 0x62, 0x8c, 0x11, 0x70, 0x29, 0xe2, - 0x0c, 0x26, 0xa7, 0xe0, 0xab, 0x84, 0x2a, 0x8c, 0x32, 0x0b, 0xbc, 0xae, 0x96, 0xb9, 0x24, 0xa7, - 0x98, 0xa7, 0xec, 0x82, 0xae, 0x2a, 0x8a, 0x82, 0x4a, 0x28, 0xe0, 0x2a, 0xb5, 0x70, 0xeb, 0x6a, - 0x0b, 0x8e, 0x72, 0xb4, 0x05, 0x59, 0x2f, 0x51, 0x19, 0x01, 0xb6, 0xfe, 0x74, 0xac, 0x81, 0x31, - 0x73, 0x48, 0xe3, 0xa3, 0xa0, 0xe7, 0xa1, 0xe2, 0x23, 0xa0, 0x13, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x08, 0xe8, 0x1f, 0xc6, - 0xc6, 0xa6, 0xc5, 0xef, 0x99, 0xc1, 0x6d, 0xc1, 0xdc, 0x7b, 0xd3, 0x8a, 0x0f, 0x85, 0x36, 0x8c, - 0x09, 0x56, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, 0x08, 0x98, - 0x28, 0xd1, 0x98, 0x68, 0xc4, 0x6d, 0x3e, 0x9a, 0x8c, 0x0c, 0x73, 0x70, 0xcf, 0x5c, 0xc1, 0x3d, - 0x36, 0xb3, 0x22, 0x12, 0xf1, 0xd1, 0x1b, 0xe3, 0x03, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, - 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0xa1, 0xc9, 0xdb, 0x5e, 0xac, 0xc8, 0xd8, 0x45, - 0xc0, 0xe9, 0xc1, 0x32, 0x8c, 0x2f, 0x09, 0x89, 0xfb, 0xa1, 0x1a, 0x8f, 0x05, 0xec, 0x54, 0x98, - 0x06, 0x64, 0x01, 0xbb, 0x14, 0x35, 0x1c, 0xb1, 0x84, 0x70, 0x44, 0x9d, 0x40, 0x0d, 0xe1, 0x88, - 0x3b, 0x4b, 0x0d, 0xc2, 0x11, 0xe1, 0x4c, 0xc1, 0x99, 0x82, 0x33, 0x05, 0x67, 0x0a, 0xce, 0x14, - 0x9c, 0x29, 0x38, 0x53, 0xba, 0x9c, 0x29, 0x84, 0x23, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xed, 0xb0, 0xcc, 0x08, 0x47, 0x04, 0x26, - 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x42, 0x38, - 0x22, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x12, 0xb0, 0x52, 0x8e, - 0xb0, 0x52, 0xa6, 0xc3, 0x11, 0x43, 0xd4, 0xeb, 0x0c, 0xbf, 0x20, 0x29, 0xaf, 0x65, 0x1a, 0xaa, - 0x44, 0xe8, 0x62, 0x2a, 0xe1, 0x4e, 0xfa, 0x62, 0xd9, 0x43, 0xbc, 0x70, 0x76, 0x37, 0xee, 0xb5, - 0x19, 0x73, 0xbf, 0xcd, 0x46, 0xeb, 0x5d, 0x2d, 0x46, 0xa3, 0x2c, 0x8d, 0xea, 0x9a, 0xb6, 0x37, - 0x76, 0x5c, 0x11, 0xa1, 0x3a, 0xaa, 0xff, 0x55, 0x14, 0x48, 0x25, 0x84, 0xb4, 0x28, 0x90, 0x8a, - 0x02, 0xa9, 0x2a, 0x7d, 0x38, 0x44, 0x24, 0x6b, 0x30, 0xf1, 0x91, 0x23, 0x92, 0x2d, 0xa7, 0x6f, - 0x5a, 0x86, 0x39, 0x18, 0xb8, 0xcc, 0xf3, 0xe2, 0x13, 0x2c, 0xeb, 0xc3, 0x81, 0x0a, 0x01, 0x15, - 0x02, 0x2a, 0x24, 0x94, 0xbc, 0x4c, 0xec, 0x68, 0xcd, 0xac, 0x03, 0xb6, 0xe6, 0x24, 0xc6, 0x18, - 0xcb, 0xd7, 0xd1, 0x4e, 0x5c, 0xac, 0x16, 0x85, 0x8f, 0x63, 0xaa, 0x14, 0xd9, 0x2b, 0x24, 0x77, - 0xa5, 0xe4, 0xad, 0xd8, 0x86, 0x95, 0xbb, 0x2f, 0x4b, 0x5c, 0xbb, 0xc0, 0x1a, 0x7e, 0x92, 0x38, - 0x66, 0xdb, 0x14, 0x82, 0xb9, 0xb6, 0xb4, 0xe5, 0xf4, 0x07, 0xfe, 0xeb, 0xfd, 0xfb, 0x9b, 0x43, - 0xe3, 0xa4, 0xfb, 0x74, 0x53, 0x34, 0x4e, 0xba, 0x8b, 0x8f, 0xc5, 0xf9, 0x1f, 0x8b, 0xcf, 0xa5, - 0x9b, 0x43, 0xa3, 0xbc, 0xfa, 0x5c, 0xb9, 0x39, 0x34, 0x2a, 0xdd, 0xfd, 0x1f, 0x3f, 0x3e, 0xee, - 0xff, 0x3a, 0x9a, 0x86, 0xff, 0xe2, 0x1f, 0x05, 0x69, 0x0f, 0xdf, 0x95, 0x32, 0xd2, 0xf4, 0x43, - 0x82, 0x85, 0xb3, 0x0a, 0xe1, 0x5c, 0x08, 0xa7, 0x69, 0x0c, 0x6b, 0xc6, 0xd7, 0xee, 0xaf, 0xe2, - 0x87, 0xf2, 0xf4, 0x74, 0xff, 0xd7, 0xf1, 0xf4, 0xf5, 0x5f, 0x3e, 0x6d, 0xfa, 0xb1, 0xe2, 0x87, - 0xe3, 0xe9, 0xe9, 0x96, 0x7f, 0xa9, 0x4e, 0x4f, 0x77, 0x1c, 0xa3, 0x32, 0x7d, 0x1f, 0xf8, 0xd1, - 0xd9, 0xdf, 0x97, 0xb6, 0x7d, 0xa1, 0xbc, 0xe5, 0x0b, 0x47, 0xdb, 0xbe, 0x70, 0xb4, 0xe5, 0x0b, - 0x5b, 0x1f, 0xa9, 0xb4, 0xe5, 0x0b, 0x95, 0xe9, 0x53, 0xe0, 0xe7, 0xdf, 0x6f, 0xfe, 0xd1, 0xea, - 0x74, 0xff, 0x69, 0xdb, 0xbf, 0x1d, 0x4f, 0x9f, 0x4e, 0xf7, 0x13, 0x78, 0x54, 0xdf, 0xe9, 0x7d, - 0x8e, 0x98, 0xaa, 0x42, 0xa2, 0xc5, 0xf7, 0x84, 0x1b, 0xbe, 0xa3, 0xff, 0xef, 0x95, 0x01, 0xae, - 0xdb, 0x03, 0x6b, 0x33, 0x12, 0x13, 0x63, 0xc0, 0xbd, 0xbe, 0x73, 0xcf, 0x64, 0xa4, 0xa3, 0xae, - 0x0f, 0x17, 0xff, 0x32, 0x7d, 0x68, 0x5a, 0x1e, 0x83, 0x13, 0x09, 0x27, 0x12, 0x4e, 0x64, 0x38, - 0x79, 0xb9, 0x75, 0x1c, 0x8b, 0x99, 0x52, 0xdc, 0xc8, 0x62, 0x82, 0xd5, 0xd7, 0xd8, 0xf4, 0x3c, - 0x7e, 0xcf, 0x8c, 0x91, 0x33, 0x90, 0x90, 0x46, 0xb6, 0x36, 0x1a, 0x94, 0x17, 0x94, 0x17, 0x94, - 0x17, 0x94, 0x97, 0x3a, 0xe5, 0x25, 0xfa, 0x63, 0x63, 0x24, 0x83, 0x72, 0x5f, 0x0d, 0x04, 0x55, - 0x03, 0x55, 0x03, 0x55, 0x13, 0x4a, 0x5e, 0x26, 0xdc, 0x16, 0xc5, 0xaa, 0x04, 0x4d, 0x53, 0x45, - 0x98, 0xa0, 0x54, 0xb5, 0x12, 0x18, 0x0e, 0x61, 0x82, 0x89, 0xd9, 0x82, 0x6a, 0xa5, 0x72, 0x54, - 0x41, 0xa8, 0xa0, 0x36, 0x9e, 0x27, 0xa3, 0xa1, 0x82, 0xab, 0x60, 0x30, 0x14, 0x2f, 0x44, 0xf1, - 0x42, 0x72, 0x98, 0x85, 0x50, 0xa1, 0x1d, 0xbe, 0x88, 0x50, 0x21, 0x78, 0x2f, 0xf0, 0x5e, 0x12, - 0xe4, 0xbd, 0x20, 0x54, 0x28, 0xb8, 0x28, 0x08, 0x15, 0x8a, 0xbe, 0x72, 0x08, 0x15, 0x42, 0xa8, - 0x50, 0x72, 0x85, 0x13, 0xa1, 0x42, 0x08, 0x15, 0x42, 0xa8, 0x90, 0x1c, 0x9a, 0x63, 0x0f, 0xa1, - 0x42, 0xbf, 0x53, 0x06, 0x08, 0x15, 0x0a, 0xac, 0x0d, 0x42, 0x85, 0xe0, 0x44, 0xc2, 0x89, 0xcc, - 0x9e, 0x13, 0x89, 0x50, 0xa1, 0x08, 0x8b, 0x86, 0x50, 0x21, 0x28, 0x2f, 0x28, 0x2f, 0x28, 0x2f, - 0x84, 0x0a, 0x41, 0xd5, 0x40, 0xd5, 0xe4, 0x42, 0xd5, 0x20, 0x54, 0xe8, 0xe5, 0x83, 0x20, 0x54, - 0x48, 0x37, 0xcf, 0x8a, 0x50, 0x21, 0x84, 0x0a, 0xc9, 0xfd, 0x46, 0x0a, 0x43, 0x85, 0x50, 0x58, - 0x6c, 0x87, 0x55, 0x92, 0x56, 0x5b, 0xcc, 0x1f, 0x90, 0xb0, 0xbc, 0xd8, 0xc4, 0x63, 0xc6, 0x68, - 0x62, 0x09, 0x3e, 0xb6, 0x98, 0x31, 0x5b, 0x05, 0x2f, 0x7c, 0x9d, 0xb1, 0x0d, 0x63, 0xa0, 0xe0, - 0x18, 0x21, 0x40, 0x45, 0xc1, 0x31, 0x14, 0x1c, 0x53, 0xe9, 0x91, 0x21, 0x8a, 0x50, 0x83, 0xf5, - 0x8f, 0x1c, 0x45, 0xc8, 0x6c, 0xf3, 0xd6, 0x62, 0x83, 0xf8, 0x64, 0xc6, 0x6a, 0x20, 0xf0, 0xaf, - 0x20, 0x45, 0x40, 0x8a, 0x80, 0x7f, 0xcd, 0xb5, 0x4f, 0x14, 0xc4, 0xb8, 0x09, 0xca, 0xa3, 0x60, - 0xb3, 0xc3, 0x11, 0x19, 0x01, 0xb1, 0xf0, 0x2a, 0x09, 0xf8, 0x07, 0xf8, 0x27, 0xa9, 0xf8, 0x27, - 0xa2, 0x43, 0x20, 0xc7, 0x31, 0x88, 0x79, 0x40, 0x80, 0x5a, 0x80, 0x5a, 0x74, 0xa1, 0x96, 0xa8, - 0x07, 0xce, 0x1f, 0xc0, 0xb4, 0x2c, 0xe7, 0xdf, 0x67, 0x23, 0x69, 0x7a, 0xf1, 0xf7, 0x7b, 0x25, - 0x81, 0xc1, 0xa1, 0x63, 0x6e, 0x93, 0x24, 0xe7, 0x44, 0x92, 0x93, 0x22, 0xed, 0xd8, 0xcb, 0x3c, - 0xfe, 0xf2, 0xd5, 0x80, 0x6c, 0x75, 0xa0, 0x4c, 0x2d, 0x28, 0x53, 0x0f, 0x4a, 0xd4, 0x44, 0x3c, - 0x75, 0x11, 0x53, 0x6d, 0xc8, 0x73, 0x7a, 0x14, 0x38, 0x3f, 0x92, 0x9c, 0xa0, 0xf8, 0x0b, 0x1c, - 0x63, 0x71, 0x0b, 0x23, 0xf3, 0x61, 0xde, 0x52, 0x2f, 0x1c, 0x39, 0xff, 0xe6, 0xea, 0xae, 0x0f, - 0x2b, 0x4f, 0x9d, 0x16, 0xa1, 0x4a, 0xa1, 0x4a, 0xa1, 0x4a, 0x93, 0xa5, 0x4a, 0x27, 0xdc, 0x16, - 0x47, 0x25, 0x89, 0x9a, 0xf4, 0x58, 0xc2, 0x50, 0x72, 0x82, 0x6d, 0x56, 0xbf, 0x24, 0xe6, 0xc4, - 0xc9, 0x0c, 0xbe, 0x91, 0xac, 0xd6, 0x02, 0xc3, 0x4a, 0x0e, 0xc6, 0xf1, 0xc7, 0x55, 0x10, 0x0d, - 0x22, 0xe9, 0x78, 0xac, 0x6f, 0x95, 0xc4, 0x20, 0x1d, 0xaa, 0xad, 0x2a, 0x97, 0x4e, 0xca, 0x27, - 0xd5, 0xe3, 0xd2, 0x49, 0x25, 0x45, 0x7b, 0x96, 0x8d, 0x9c, 0xba, 0x94, 0xb8, 0xe2, 0x31, 0x59, - 0x6e, 0x7f, 0x1c, 0x99, 0x6c, 0x37, 0x9b, 0xfd, 0x78, 0x14, 0xca, 0x3b, 0xfa, 0x12, 0x46, 0x09, - 0xe5, 0x8e, 0x56, 0x52, 0x28, 0x60, 0x30, 0xa3, 0x94, 0x16, 0x92, 0xce, 0xfd, 0x95, 0xc0, 0xfd, - 0x81, 0xfb, 0x03, 0xf7, 0x07, 0xee, 0x0f, 0x0e, 0x2b, 0x1c, 0x56, 0x70, 0x7f, 0xe0, 0xfe, 0xc0, - 0xfd, 0x41, 0x95, 0x42, 0x95, 0x42, 0x95, 0x82, 0xfb, 0x03, 0xf7, 0x07, 0xee, 0x0f, 0xdc, 0x1f, - 0xb8, 0x3f, 0x70, 0x7f, 0x64, 0xdc, 0x5f, 0x84, 0x5c, 0xc0, 0x18, 0xd4, 0x5f, 0x6e, 0xa2, 0x88, - 0x59, 0xc4, 0x98, 0xd4, 0xdf, 0x65, 0x12, 0x5e, 0x7b, 0xec, 0x7c, 0x39, 0x4b, 0x7b, 0x36, 0x49, - 0xaf, 0x1e, 0x1a, 0x19, 0xa9, 0x09, 0x54, 0xe6, 0xb1, 0x02, 0x95, 0x39, 0x02, 0x95, 0xd5, 0x7a, - 0x04, 0x08, 0x54, 0x46, 0xa0, 0x32, 0xb1, 0xab, 0x8d, 0xcb, 0x0a, 0x3d, 0x2e, 0x74, 0x9e, 0x2f, - 0x2b, 0xc0, 0xaa, 0x81, 0x55, 0x03, 0xab, 0x06, 0x56, 0x0d, 0xac, 0x1a, 0x58, 0x35, 0xb0, 0x6a, - 0x60, 0xd5, 0xc0, 0xaa, 0x81, 0x55, 0xd3, 0xc0, 0xfc, 0x70, 0x44, 0xd4, 0x51, 0x3b, 0xa9, 0x88, - 0xa8, 0x83, 0x93, 0x0a, 0x27, 0x15, 0x4e, 0x2a, 0x9c, 0x54, 0x38, 0xa9, 0x70, 0x52, 0xe1, 0xa4, - 0xc2, 0x49, 0x85, 0x93, 0x0a, 0x27, 0x15, 0x4e, 0x2a, 0x9c, 0xd4, 0xdf, 0x3a, 0xa9, 0x08, 0xfd, - 0x50, 0xb6, 0xb6, 0xca, 0x43, 0x3f, 0x1a, 0x09, 0x09, 0xfd, 0x40, 0xaf, 0x7f, 0xc5, 0x3e, 0x02, - 0x82, 0x3f, 0x34, 0xa8, 0x13, 0x54, 0xe9, 0x95, 0x02, 0x9e, 0x10, 0x46, 0x02, 0x86, 0x0e, 0x55, - 0x7a, 0x51, 0xa5, 0x57, 0x01, 0xc8, 0x42, 0x0b, 0x93, 0x30, 0xcb, 0x25, 0xab, 0x97, 0xc9, 0x6b, - 0x18, 0x2a, 0xad, 0xa5, 0xc9, 0xbb, 0x18, 0x0b, 0x3d, 0x53, 0xa7, 0x73, 0x55, 0xea, 0xaf, 0x80, - 0x31, 0x7f, 0xfa, 0x37, 0xbe, 0xd5, 0xe4, 0x9e, 0xa8, 0x09, 0xb1, 0x9b, 0xa1, 0x2f, 0x9c, 0x73, - 0xbb, 0x6e, 0xb1, 0x99, 0x4a, 0x9c, 0xb9, 0xe2, 0xf6, 0xc4, 0xb2, 0x76, 0xe8, 0xc2, 0x72, 0x6e, - 0x3e, 0x84, 0xff, 0x52, 0xcb, 0x1d, 0x30, 0x97, 0x0d, 0xce, 0x1e, 0x97, 0x5f, 0x89, 0xb5, 0x34, - 0x21, 0x65, 0x2f, 0xb2, 0xcc, 0xed, 0x20, 0x60, 0xbf, 0x13, 0xac, 0xdf, 0xcb, 0xd1, 0x76, 0xe9, - 0xd8, 0xfc, 0x2f, 0x5b, 0x16, 0x65, 0xd7, 0xc5, 0x08, 0xb7, 0x08, 0x9b, 0x1f, 0x3d, 0xf8, 0x60, - 0x1b, 0x1e, 0xaa, 0xe0, 0xf2, 0xdb, 0xad, 0x4f, 0xe2, 0x9b, 0xa1, 0xd9, 0x0f, 0x6d, 0x79, 0xa1, - 0xdf, 0x3b, 0x42, 0x6f, 0x3a, 0x3c, 0xbb, 0xa0, 0xab, 0x97, 0xe8, 0xc9, 0xe5, 0xb7, 0x6f, 0x20, - 0xa8, 0x5d, 0x11, 0x52, 0x68, 0x04, 0x14, 0x1a, 0xe1, 0xbc, 0x46, 0x30, 0xab, 0x67, 0x97, 0x24, - 0x4a, 0x6f, 0x39, 0x08, 0x05, 0x73, 0xc8, 0x0d, 0xcf, 0x1c, 0xf2, 0xb7, 0xef, 0xf8, 0x9e, 0x2b, - 0x62, 0xf8, 0x5f, 0x79, 0x4b, 0xdf, 0xed, 0xe4, 0xff, 0xee, 0xec, 0xef, 0x86, 0x01, 0xd9, 0xe1, - 0xc4, 0x21, 0x2a, 0x70, 0x8e, 0x0c, 0x90, 0x23, 0x03, 0xe1, 0xd0, 0xe2, 0x22, 0xc7, 0x72, 0xed, - 0xea, 0x67, 0xfa, 0xb2, 0x11, 0xbe, 0x8b, 0x97, 0xff, 0xcd, 0x6c, 0xf4, 0xee, 0xda, 0x5d, 0xe8, - 0xe2, 0x7a, 0x6d, 0xc9, 0xeb, 0xdf, 0xb5, 0xb3, 0x50, 0xaa, 0xc1, 0xb1, 0xa1, 0x7b, 0x78, 0xad, - 0x44, 0xcf, 0x58, 0xda, 0xfc, 0x88, 0x1c, 0xe1, 0xfa, 0x30, 0xd1, 0xb8, 0xc2, 0xc3, 0x94, 0x25, - 0x8a, 0x85, 0x17, 0xf3, 0xfc, 0xf0, 0x85, 0xa1, 0x8f, 0x01, 0x8d, 0x77, 0x1c, 0x99, 0x78, 0xf0, - 0xf7, 0xdd, 0x62, 0xe6, 0xd0, 0x65, 0xc3, 0x28, 0x9b, 0xbe, 0xd2, 0xda, 0x11, 0x6e, 0xf2, 0x0b, - 0xed, 0x25, 0xd0, 0xfd, 0xf8, 0x71, 0xe1, 0x55, 0x1f, 0xac, 0x1f, 0xb8, 0x24, 0xe4, 0x97, 0x8e, - 0xef, 0xcb, 0x86, 0xe7, 0x0a, 0x66, 0x8c, 0x1d, 0x8b, 0xf7, 0x1f, 0x63, 0xe4, 0x9a, 0xbe, 0x1e, - 0x29, 0x1f, 0x79, 0xa7, 0x50, 0x27, 0xa9, 0x53, 0x27, 0x91, 0xaf, 0x20, 0xac, 0xc5, 0x3b, 0xc5, - 0xbf, 0x82, 0x58, 0x0d, 0x84, 0x0c, 0xd4, 0x78, 0x47, 0x08, 0xd7, 0x07, 0x91, 0x8f, 0x98, 0x9e, - 0x2b, 0x84, 0xd8, 0x41, 0xbe, 0xae, 0x33, 0x11, 0x4c, 0x62, 0x74, 0xef, 0x72, 0x3c, 0x39, 0xa1, - 0xb8, 0xc5, 0x8c, 0x87, 0xe2, 0xc6, 0x3f, 0xa8, 0xb2, 0x0f, 0xac, 0xb2, 0x83, 0xab, 0xec, 0x00, - 0x2b, 0x3b, 0xc8, 0xf1, 0x0e, 0x74, 0xcc, 0x83, 0x2d, 0xed, 0x80, 0xaf, 0x1f, 0x74, 0x79, 0xf2, - 0xb1, 0x76, 0xde, 0x65, 0xc9, 0x86, 0x9c, 0x63, 0x2f, 0xfd, 0xf8, 0xab, 0x50, 0x03, 0x6a, 0xd5, - 0x81, 0x2a, 0xb5, 0xa0, 0x5c, 0x3d, 0x28, 0x57, 0x13, 0xca, 0xd5, 0x85, 0x1c, 0xb5, 0x21, 0x49, - 0x7d, 0x48, 0x57, 0x23, 0xfe, 0x80, 0x7d, 0xc7, 0x72, 0x5c, 0xf9, 0x72, 0xf5, 0x5c, 0x51, 0x66, - 0x36, 0xfc, 0x87, 0x54, 0x84, 0x57, 0xcb, 0x56, 0x33, 0x2a, 0xd5, 0x0d, 0x8d, 0xda, 0x51, 0xad, - 0x7e, 0xc8, 0xd4, 0x10, 0x99, 0x3a, 0x22, 0x53, 0x4b, 0x72, 0xd5, 0x93, 0x64, 0x35, 0x15, 0x9f, - 0xa0, 0xdc, 0x9d, 0x31, 0x88, 0x4c, 0x60, 0xee, 0x8c, 0x62, 0x8e, 0x15, 0x8c, 0x1d, 0x20, 0x40, - 0x17, 0x8a, 0xf2, 0x5d, 0x32, 0x45, 0x43, 0x66, 0xc2, 0x0d, 0xb3, 0x07, 0x63, 0x87, 0xcf, 0x0f, - 0x86, 0x22, 0x9b, 0xe3, 0xcf, 0x00, 0xb3, 0x03, 0xb3, 0x03, 0xb3, 0x03, 0xb3, 0x03, 0xb3, 0xb3, - 0xd5, 0xec, 0xf8, 0xba, 0x32, 0x07, 0x96, 0x67, 0x6c, 0x8a, 0x9f, 0x06, 0x1f, 0xa8, 0x33, 0x3c, - 0xab, 0x09, 0x60, 0x77, 0x60, 0x77, 0x60, 0x77, 0x60, 0x77, 0x60, 0x77, 0xb6, 0xda, 0x9d, 0x95, - 0xaa, 0xcc, 0x81, 0xd9, 0x89, 0x57, 0xf5, 0xea, 0x4d, 0x89, 0x88, 0x53, 0x0d, 0xeb, 0x4d, 0x59, - 0x80, 0xc9, 0x81, 0xc9, 0x81, 0xc9, 0x49, 0xb2, 0xc9, 0x91, 0x7d, 0x21, 0xe0, 0x0f, 0x6c, 0x0a, - 0xe1, 0x1a, 0xdc, 0x1e, 0xb0, 0x07, 0x75, 0x42, 0xe9, 0x87, 0xdb, 0x3e, 0xcf, 0xa5, 0x48, 0x58, - 0xd4, 0x60, 0x68, 0xe5, 0x8a, 0x8d, 0x42, 0xc1, 0xd1, 0x2a, 0x3a, 0x2a, 0x85, 0x47, 0xae, 0xf8, - 0xc8, 0x15, 0x20, 0xb9, 0x22, 0x54, 0xa3, 0x10, 0x15, 0x29, 0x46, 0xf5, 0x98, 0x9c, 0x10, 0x9b, - 0x53, 0x60, 0xf4, 0x4d, 0x58, 0x7d, 0xe3, 0xef, 0xb9, 0xb2, 0xf6, 0x98, 0xf0, 0xfc, 0x4f, 0x4b, - 0x4c, 0xbf, 0x50, 0xe0, 0xef, 0xd2, 0x21, 0x72, 0x0a, 0xc4, 0x4d, 0xd1, 0x5d, 0x7a, 0x40, 0xce, - 0x54, 0xdc, 0xa9, 0xc3, 0x50, 0xc2, 0x50, 0xc2, 0x50, 0xc2, 0x50, 0x92, 0x9c, 0x1b, 0x69, 0xc5, - 0x44, 0xdf, 0xd2, 0x62, 0x2a, 0xcd, 0xa4, 0xdc, 0xe2, 0xa3, 0xdb, 0x7e, 0xa9, 0x3d, 0xf3, 0x7b, - 0xaa, 0x8a, 0x95, 0x6a, 0x32, 0x2f, 0x81, 0xe9, 0x14, 0x15, 0x37, 0xdd, 0x3a, 0x9f, 0xc2, 0x02, - 0x9a, 0xc4, 0xea, 0x60, 0x5d, 0x44, 0xcc, 0x87, 0xcc, 0x8b, 0x88, 0xaa, 0xa2, 0xaa, 0x89, 0x92, - 0x95, 0x77, 0xe9, 0x1c, 0xbd, 0x9b, 0x6b, 0xa7, 0x62, 0x34, 0x9a, 0xd8, 0x5c, 0x3c, 0x52, 0x91, - 0x71, 0xaf, 0x27, 0x84, 0xa3, 0x01, 0x47, 0x03, 0x8e, 0x06, 0x1c, 0x8d, 0x14, 0x3a, 0x1a, 0x39, - 0x61, 0xe4, 0x56, 0x1a, 0x9b, 0x33, 0xcf, 0xff, 0xfc, 0x08, 0x52, 0x6e, 0xb1, 0x78, 0xca, 0xe2, - 0x8d, 0x03, 0xd2, 0xa6, 0x28, 0xee, 0x18, 0x16, 0x13, 0x16, 0x13, 0x16, 0x13, 0x16, 0x93, 0xe4, - 0xdc, 0xf0, 0xb1, 0x61, 0x0e, 0x06, 0x2e, 0xf3, 0x3c, 0x0a, 0xa3, 0x79, 0xa2, 0x70, 0x8e, 0xe5, - 0x9a, 0xa5, 0x9e, 0x9e, 0x5b, 0x2b, 0x23, 0xa4, 0x7e, 0x6f, 0x02, 0x7b, 0xf4, 0x89, 0x60, 0xae, - 0xb6, 0x29, 0x04, 0x73, 0x6d, 0xe5, 0xdb, 0xe5, 0x4f, 0xf8, 0xd7, 0xfb, 0xf7, 0x37, 0x87, 0xc6, - 0x49, 0xf7, 0xe9, 0xa6, 0x68, 0x9c, 0x74, 0x17, 0x1f, 0x8b, 0xf3, 0x3f, 0x16, 0x9f, 0x4b, 0x37, - 0x87, 0x46, 0x79, 0xf5, 0xb9, 0x72, 0x73, 0x68, 0x54, 0xba, 0xfb, 0x3f, 0x7e, 0x7c, 0xdc, 0xff, - 0x75, 0x34, 0x0d, 0xff, 0xc5, 0x3f, 0x0a, 0xca, 0x5f, 0xaa, 0xab, 0x96, 0xd8, 0xf9, 0x90, 0xa1, - 0x43, 0x54, 0xc5, 0x21, 0x92, 0x7b, 0x88, 0x4c, 0x63, 0x58, 0x33, 0xbe, 0x76, 0x7f, 0x15, 0x3f, - 0x94, 0xa7, 0xa7, 0xfb, 0xbf, 0x8e, 0xa7, 0xaf, 0xff, 0xf2, 0x69, 0xd3, 0x8f, 0x15, 0x3f, 0x1c, - 0x4f, 0x4f, 0xb7, 0xfc, 0x4b, 0x75, 0x7a, 0xba, 0xe3, 0x18, 0x95, 0xe9, 0xfb, 0xc0, 0x8f, 0xce, - 0xfe, 0xbe, 0xb4, 0xed, 0x0b, 0xe5, 0x2d, 0x5f, 0x38, 0xda, 0xf6, 0x85, 0xa3, 0x2d, 0x5f, 0xd8, - 0xfa, 0x48, 0xa5, 0x2d, 0x5f, 0xa8, 0x4c, 0x9f, 0x02, 0x3f, 0xff, 0x7e, 0xf3, 0x8f, 0x56, 0xa7, - 0xfb, 0x4f, 0xdb, 0xfe, 0xed, 0x78, 0xfa, 0x74, 0xba, 0x9f, 0x01, 0x95, 0x02, 0xae, 0x58, 0x85, - 0xaf, 0xfb, 0x20, 0x0c, 0x72, 0xbe, 0x78, 0xd3, 0xa4, 0xf0, 0x80, 0xe1, 0x01, 0xc3, 0x03, 0x86, - 0x07, 0x9c, 0x42, 0x0f, 0x38, 0x27, 0x9c, 0xf1, 0x4b, 0xad, 0xcd, 0x99, 0xb7, 0xf6, 0xff, 0xc1, - 0x1d, 0x2f, 0x17, 0x91, 0xdb, 0xf7, 0xa6, 0xc5, 0x07, 0x86, 0xcb, 0x4c, 0xcf, 0xb1, 0xd5, 0x9b, - 0xd2, 0x57, 0xf3, 0xc1, 0x8a, 0xc2, 0x8a, 0xc2, 0x8a, 0xc2, 0x8a, 0xa6, 0xd0, 0x8a, 0xf2, 0x01, - 0xb3, 0x05, 0x17, 0x8f, 0x44, 0x96, 0x54, 0x61, 0xcc, 0x56, 0xa1, 0xb1, 0x7c, 0x95, 0x33, 0xd3, - 0x23, 0x38, 0xa2, 0xab, 0x05, 0x6c, 0x5c, 0x7c, 0xaf, 0x35, 0x1b, 0x5f, 0x7a, 0x9d, 0xd6, 0xf5, - 0x55, 0xbd, 0xd7, 0xa9, 0xd7, 0x2e, 0x5b, 0x17, 0xaa, 0x4f, 0xeb, 0x3c, 0x14, 0xce, 0x23, 0x21, - 0x90, 0x88, 0x62, 0x09, 0x5f, 0xaf, 0x66, 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, 0x5d, 0xb5, 0x3a, - 0x85, 0x2c, 0x04, 0x66, 0x6a, 0x5a, 0xc5, 0xcf, 0xcd, 0xeb, 0xcb, 0xab, 0x7a, 0xa7, 0xd7, 0x6c, - 0xb5, 0xda, 0x58, 0xc7, 0xe8, 0xeb, 0x58, 0xbb, 0xc4, 0x12, 0xc6, 0x15, 0xc5, 0xd6, 0xc5, 0xd7, - 0xfa, 0x97, 0x42, 0xca, 0x23, 0x67, 0xbb, 0x69, 0xc3, 0x27, 0xa9, 0xf0, 0xde, 0x2c, 0xd3, 0x13, - 0xc6, 0xc8, 0x19, 0xf0, 0x21, 0x67, 0x03, 0xf5, 0xce, 0xdb, 0xfa, 0x74, 0xf0, 0xdd, 0xe0, 0xbb, - 0xc1, 0x77, 0x83, 0xef, 0x96, 0x42, 0xdf, 0x4d, 0xf0, 0x11, 0x13, 0xbc, 0xff, 0x8f, 0x57, 0x2d, - 0x13, 0xf8, 0x6e, 0x0a, 0xaf, 0xc6, 0x0b, 0xd7, 0xf6, 0x22, 0xb3, 0xa6, 0x60, 0x9b, 0xb6, 0xe3, - 0xb1, 0xbe, 0x63, 0x0f, 0x94, 0xc6, 0x35, 0x21, 0x27, 0x30, 0x79, 0x36, 0x6d, 0xb3, 0x97, 0x8b, - 0x9c, 0xc0, 0xd8, 0x22, 0x92, 0x83, 0x9c, 0xc0, 0xe2, 0xa7, 0x72, 0xb9, 0x7a, 0x5c, 0x2e, 0x1f, - 0x1e, 0x1f, 0x1d, 0x1f, 0x9e, 0x54, 0x2a, 0xc5, 0x6a, 0x11, 0xd9, 0x81, 0x89, 0x1b, 0x3d, 0xcf, - 0x11, 0x1f, 0xaa, 0x6a, 0xda, 0x06, 0x40, 0x81, 0x9a, 0xda, 0xb6, 0xfe, 0x34, 0x5f, 0xd8, 0xd0, - 0x9c, 0x58, 0x73, 0xe8, 0x77, 0x08, 0xdf, 0x09, 0xbe, 0x13, 0x7c, 0x27, 0xf8, 0x4e, 0x69, 0xf4, - 0x9d, 0x50, 0xda, 0x04, 0x6e, 0x0c, 0xdc, 0x18, 0xb8, 0x31, 0x89, 0x12, 0x11, 0x94, 0x36, 0x81, - 0xf3, 0x92, 0x44, 0xe7, 0x65, 0x19, 0xec, 0x26, 0xb5, 0xa1, 0xe9, 0x56, 0xcb, 0xfc, 0x72, 0x32, - 0x38, 0x18, 0x70, 0x30, 0xe0, 0x60, 0xc0, 0xc1, 0x48, 0xa1, 0x83, 0x71, 0xeb, 0x38, 0x16, 0x33, - 0x6d, 0x8a, 0xa0, 0xba, 0x62, 0x5a, 0x4c, 0x53, 0xa2, 0x0b, 0xf4, 0xd7, 0x6c, 0xdb, 0x11, 0xe6, - 0x0c, 0x0d, 0xa9, 0xa9, 0xd3, 0xef, 0xf5, 0x7f, 0xb2, 0x91, 0x39, 0x5e, 0x86, 0xfb, 0x1f, 0x38, - 0x63, 0x66, 0xf7, 0xe7, 0x86, 0x62, 0x76, 0x3e, 0x0f, 0x66, 0xff, 0xb9, 0xfc, 0xf6, 0xc0, 0x1c, - 0x72, 0xc3, 0x33, 0x87, 0xdc, 0xf3, 0x3f, 0x1d, 0xcc, 0x13, 0xca, 0x3d, 0x57, 0x30, 0x63, 0xec, - 0x58, 0xbc, 0xff, 0x78, 0x60, 0x2d, 0xce, 0xf5, 0xc1, 0xa2, 0xf5, 0xff, 0xe2, 0x8f, 0x45, 0x26, - 0x40, 0x1e, 0xda, 0xb4, 0x4c, 0xec, 0x7f, 0x6c, 0xe7, 0x5f, 0xdb, 0x30, 0x85, 0x70, 0xf9, 0xed, - 0x6c, 0x05, 0xd4, 0xf5, 0x6c, 0xd9, 0x30, 0x17, 0x1a, 0xb8, 0xa0, 0x81, 0x4b, 0x22, 0x20, 0x06, - 0x1a, 0xb8, 0xd0, 0xda, 0x07, 0x65, 0x0d, 0x5c, 0x02, 0x4a, 0x46, 0xbd, 0x8f, 0x15, 0x9c, 0x52, - 0xad, 0xa7, 0x55, 0x84, 0xa7, 0x05, 0x4f, 0x0b, 0x9e, 0x56, 0x9e, 0x3c, 0x2d, 0x55, 0xea, 0xd2, - 0x9f, 0x60, 0xde, 0xd4, 0x44, 0xa8, 0xf6, 0xe7, 0xf6, 0x02, 0xed, 0xaf, 0xe6, 0x53, 0x2a, 0x16, - 0x2d, 0x1a, 0xfe, 0x59, 0xb9, 0xfa, 0xa4, 0x54, 0xa3, 0x7a, 0xd4, 0x29, 0xb5, 0x5a, 0xd5, 0xa6, - 0x5e, 0xb5, 0xa9, 0x59, 0x6d, 0xea, 0x56, 0xad, 0xda, 0x55, 0xac, 0x7e, 0xe9, 0x08, 0xaf, 0xc0, - 0xb9, 0x53, 0x5f, 0x97, 0x21, 0x80, 0x2e, 0x8f, 0x69, 0xaa, 0x76, 0xad, 0x77, 0xc6, 0x7d, 0x36, - 0x06, 0x29, 0xbd, 0xd1, 0x52, 0x28, 0x7a, 0x8a, 0x7a, 0xe9, 0x6e, 0x95, 0x39, 0x15, 0xbd, 0x75, - 0x89, 0x7d, 0x19, 0x18, 0x65, 0x18, 0x65, 0x18, 0xe5, 0x7c, 0x18, 0x65, 0xd5, 0xbe, 0xd1, 0xba, - 0x8f, 0x64, 0x31, 0xc2, 0xe0, 0xaa, 0x35, 0x57, 0x69, 0x36, 0xf3, 0x87, 0x4c, 0x46, 0xec, 0x50, - 0x29, 0x69, 0x1d, 0xca, 0x5a, 0xaf, 0xd2, 0xd6, 0xa5, 0xbc, 0xb5, 0x2b, 0x71, 0xed, 0xca, 0x5c, - 0xbb, 0x52, 0xa7, 0x51, 0xee, 0x44, 0x4a, 0x9e, 0xde, 0x03, 0x0b, 0x9c, 0xdb, 0x09, 0xb7, 0x45, - 0xb1, 0x4a, 0x79, 0x66, 0x97, 0x5a, 0xb8, 0x4a, 0x38, 0x25, 0x4d, 0x0c, 0xf4, 0xeb, 0x5f, 0xb4, - 0x3a, 0x69, 0x8f, 0x3a, 0x46, 0x5a, 0xb3, 0x79, 0x0d, 0x4c, 0x4f, 0x1c, 0x43, 0x1d, 0x98, 0x5f, - 0x43, 0x9c, 0xac, 0x26, 0x75, 0xb5, 0x2e, 0x72, 0xe6, 0x43, 0xee, 0x45, 0xae, 0x5a, 0xa9, 0x1c, - 0x55, 0x72, 0x2c, 0x76, 0xef, 0xb2, 0x39, 0x5b, 0xf7, 0x5d, 0x36, 0xde, 0x87, 0x22, 0xf5, 0x82, - 0xee, 0xa6, 0x6d, 0xb3, 0x1b, 0x49, 0x70, 0xe3, 0x06, 0x3f, 0x12, 0x7e, 0x24, 0xfc, 0x48, 0xf8, - 0x91, 0xf0, 0x23, 0xb7, 0xf8, 0x91, 0x9f, 0x34, 0xb8, 0x91, 0x15, 0xb8, 0x91, 0x70, 0x23, 0xe1, - 0x46, 0xc2, 0x8d, 0xcc, 0x80, 0xc8, 0x95, 0x2a, 0x70, 0x22, 0xe1, 0x44, 0xe6, 0xdd, 0x89, 0xbc, - 0x5f, 0x9e, 0x06, 0x1d, 0x5e, 0xe4, 0x62, 0x6e, 0xb8, 0x91, 0x70, 0x23, 0xe1, 0x46, 0xc2, 0x8d, - 0x84, 0x1b, 0x49, 0x7e, 0x6e, 0x6f, 0xb9, 0x6d, 0xba, 0x8f, 0x1a, 0xfc, 0xc8, 0x13, 0xc2, 0x29, - 0x9b, 0xcc, 0xbe, 0x9b, 0x07, 0x8a, 0xc2, 0x91, 0xcc, 0x01, 0xaa, 0x2f, 0xc2, 0x91, 0x84, 0x23, - 0x49, 0x2b, 0x72, 0xb8, 0x8f, 0x84, 0x2b, 0x99, 0x73, 0x57, 0x92, 0x3d, 0x08, 0x66, 0x0f, 0x14, - 0xb6, 0x0a, 0xd9, 0x0a, 0x61, 0xfc, 0x99, 0xe1, 0x46, 0xc2, 0x8d, 0x84, 0x1b, 0x09, 0x37, 0x12, - 0x6e, 0x24, 0xbd, 0x1b, 0xa9, 0xbc, 0xb0, 0xd6, 0x36, 0x35, 0xac, 0xa8, 0xd0, 0x56, 0x36, 0x8d, - 0xb4, 0x33, 0x9e, 0x21, 0x45, 0xd3, 0xa2, 0x37, 0xd2, 0xfe, 0xcc, 0x30, 0xd2, 0x30, 0xd2, 0x30, - 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x9b, 0xd6, 0x6c, 0x6c, 0xba, 0x82, 0xeb, - 0xb0, 0xd1, 0xab, 0x89, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, - 0x61, 0xa2, 0x37, 0xad, 0x99, 0x70, 0x4d, 0xdb, 0xe3, 0x82, 0xdf, 0x6b, 0x88, 0x9b, 0x7a, 0x31, - 0x37, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x75, 0x0a, 0x0d, 0x75, - 0xaa, 0xcb, 0x45, 0x29, 0xee, 0x4c, 0x11, 0x98, 0x4f, 0x71, 0xa7, 0x8a, 0x60, 0x53, 0x85, 0xe0, - 0x5f, 0xa9, 0x68, 0x67, 0x41, 0x27, 0x14, 0xe9, 0xaa, 0xd4, 0xfc, 0x27, 0x7b, 0xa4, 0x48, 0xb5, - 0x2e, 0x34, 0xb9, 0x27, 0x6a, 0x42, 0x28, 0x2e, 0x0b, 0x7d, 0xce, 0xed, 0xba, 0xc5, 0x66, 0x76, - 0xcf, 0x2b, 0x9c, 0xee, 0xd9, 0x13, 0xcb, 0x52, 0x58, 0xe6, 0xf2, 0xdc, 0x7c, 0xa0, 0x9b, 0xac, - 0xe5, 0x0e, 0x98, 0xcb, 0x06, 0x67, 0x8f, 0xcb, 0xa9, 0x52, 0x25, 0x64, 0x44, 0x3a, 0x2c, 0x09, - 0xba, 0xab, 0xa0, 0xb4, 0xae, 0xaa, 0x3b, 0xe9, 0x0b, 0x7b, 0x89, 0x0c, 0xce, 0xee, 0xc6, 0xbd, - 0x0e, 0xbf, 0xed, 0xd5, 0x86, 0xfc, 0xd2, 0x1c, 0xf2, 0x5e, 0x63, 0x7c, 0x5f, 0xbe, 0x74, 0x05, - 0x6b, 0xcf, 0xdf, 0xa0, 0xd7, 0x74, 0xfa, 0xb3, 0x7f, 0xed, 0xcc, 0x9e, 0xbc, 0x77, 0xbd, 0x78, - 0xcc, 0x9a, 0xff, 0x94, 0x68, 0x1a, 0x95, 0x7c, 0xb1, 0xa6, 0x17, 0xe7, 0xc4, 0x76, 0x90, 0x7a, - 0x97, 0xa0, 0xed, 0x5f, 0x99, 0xcc, 0x65, 0xaf, 0xfd, 0x3d, 0x66, 0x0f, 0xc6, 0x0e, 0xb7, 0xc5, - 0x5e, 0xdf, 0xb1, 0x1c, 0x57, 0xd2, 0xf9, 0x57, 0x63, 0x2f, 0x95, 0xda, 0x47, 0xa5, 0xf6, 0x50, - 0x8d, 0xfd, 0x93, 0x25, 0x11, 0x8a, 0x14, 0x81, 0x62, 0x05, 0x20, 0xd1, 0x54, 0x45, 0x37, 0x4d, - 0x72, 0x54, 0x4e, 0x7c, 0x05, 0x11, 0x6f, 0x84, 0x98, 0x82, 0x24, 0x5b, 0x80, 0x94, 0x09, 0x4e, - 0xbc, 0xdd, 0x8a, 0xbe, 0xc6, 0xd1, 0xbe, 0x19, 0x71, 0x57, 0x64, 0xed, 0x86, 0xfc, 0x5d, 0x88, - 0x71, 0x62, 0xa3, 0x9c, 0xd0, 0x68, 0xbb, 0x1d, 0x7e, 0xaf, 0x22, 0xec, 0x53, 0xc1, 0x66, 0xfc, - 0xee, 0xe7, 0xad, 0xe3, 0x46, 0xef, 0xff, 0xe8, 0x53, 0x6c, 0xcf, 0x43, 0x45, 0x94, 0x97, 0x78, - 0xbd, 0x01, 0x62, 0xdf, 0x43, 0xc8, 0xb8, 0x57, 0x90, 0x7b, 0x4f, 0x20, 0x8b, 0xf7, 0x97, 0xce, - 0xe3, 0x4b, 0xe7, 0xe5, 0xa5, 0xf3, 0xec, 0xb4, 0x9a, 0x2e, 0x6e, 0x2d, 0x7a, 0xff, 0xec, 0xc4, - 0xdf, 0xea, 0xd7, 0xa7, 0x31, 0xee, 0x4e, 0xcb, 0x69, 0xd8, 0x21, 0xed, 0x92, 0x50, 0xe6, 0xe5, - 0x9f, 0x9a, 0x4b, 0x3d, 0xd9, 0x97, 0x75, 0xca, 0x2e, 0xe1, 0x94, 0x5d, 0xae, 0x29, 0xbb, 0x34, - 0xd3, 0x0b, 0x2e, 0x65, 0x35, 0x9c, 0x28, 0x98, 0x83, 0xbf, 0xe7, 0x6b, 0xc2, 0x6d, 0x63, 0xec, - 0x78, 0x42, 0x9e, 0xa4, 0xf8, 0xa5, 0x5a, 0x5e, 0x4d, 0x20, 0xcb, 0x61, 0x97, 0xda, 0xbb, 0x47, - 0x7a, 0xdc, 0x80, 0x8a, 0xb8, 0x00, 0xb5, 0xf7, 0xfe, 0xaa, 0xee, 0xf5, 0x95, 0xdf, 0xdb, 0x2b, - 0xbf, 0x97, 0x57, 0x7e, 0xef, 0x9e, 0x2c, 0x2a, 0x4c, 0x76, 0x2f, 0x9b, 0xc2, 0xd2, 0xcd, 0x54, - 0xd6, 0xd3, 0x7d, 0x39, 0x3e, 0xfa, 0xb8, 0xa3, 0x8f, 0xbb, 0x56, 0x45, 0x44, 0xa6, 0x90, 0xc8, - 0x14, 0x93, 0x5c, 0x05, 0x25, 0x59, 0x51, 0x29, 0x53, 0x58, 0xeb, 0x8a, 0x4b, 0x7d, 0xef, 0x76, - 0xd9, 0xc4, 0x2d, 0x81, 0x1a, 0x53, 0xae, 0xce, 0x28, 0xd4, 0x1a, 0xad, 0x7a, 0xa3, 0x52, 0x73, - 0xe4, 0xea, 0x8e, 0x5c, 0xed, 0x91, 0xab, 0x3f, 0x35, 0x6a, 0x50, 0x91, 0x3a, 0x54, 0xae, 0x16, - 0xfd, 0x09, 0x16, 0x77, 0xa3, 0x64, 0x2d, 0x61, 0x65, 0x5e, 0xc5, 0xbe, 0xa5, 0x2e, 0xd1, 0xa7, - 0x3d, 0xe9, 0x6a, 0x94, 0x5a, 0x9d, 0x6a, 0x53, 0xab, 0xda, 0xd4, 0xab, 0x36, 0x35, 0xab, 0x56, - 0xdd, 0x2a, 0x56, 0xbb, 0xfe, 0xaa, 0xa1, 0x4f, 0xbb, 0x2c, 0x15, 0xf6, 0xba, 0x4f, 0xfb, 0xc2, - 0x10, 0xa0, 0x47, 0x7b, 0x60, 0xa5, 0x56, 0x51, 0x4b, 0x74, 0x36, 0xd9, 0x9f, 0x11, 0x66, 0x19, - 0x66, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x39, 0xb7, 0x66, 0xd9, 0xb7, 0x05, 0xb0, 0xcc, 0x81, - 0xc5, 0x5a, 0xc6, 0x15, 0xd3, 0x19, 0xe6, 0xd5, 0x84, 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, - 0xcb, 0xb0, 0xcb, 0xb9, 0xb5, 0xcb, 0x2b, 0x53, 0x00, 0xb3, 0x1c, 0x58, 0xab, 0x45, 0x4e, 0x32, - 0x99, 0x51, 0x5e, 0x4c, 0x47, 0x63, 0x92, 0x8b, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, - 0xd1, 0x57, 0x4d, 0xf5, 0x05, 0xa2, 0x3f, 0xd1, 0xbc, 0x50, 0x01, 0xb7, 0x07, 0xec, 0x41, 0x53, - 0x27, 0xc1, 0xc5, 0xdc, 0xa8, 0x88, 0x95, 0x36, 0x85, 0xad, 0x57, 0x71, 0xeb, 0x52, 0xe0, 0xda, - 0x15, 0xb9, 0x76, 0x85, 0xae, 0x5d, 0xb1, 0xd3, 0x28, 0x78, 0x22, 0x45, 0x4f, 0xef, 0x83, 0x69, - 0xf4, 0xc5, 0x74, 0xf8, 0x64, 0x9b, 0x7c, 0xb3, 0xdf, 0xfc, 0x9e, 0x9b, 0x24, 0x8f, 0x09, 0xcf, - 0xff, 0xb4, 0xf4, 0xe4, 0x16, 0x66, 0x0a, 0xa5, 0x36, 0x77, 0x5e, 0xef, 0x5b, 0xe6, 0x09, 0x63, - 0x99, 0xab, 0x4b, 0x8c, 0x2b, 0x9e, 0xa7, 0x06, 0xac, 0x00, 0xac, 0x00, 0xac, 0x00, 0xac, 0x00, - 0xac, 0x20, 0x3f, 0xb7, 0x28, 0xb4, 0x99, 0x0a, 0x33, 0x4d, 0x13, 0x48, 0x1c, 0x90, 0x0e, 0x8a, - 0x80, 0x62, 0x98, 0x67, 0x98, 0x67, 0x98, 0x67, 0x98, 0x67, 0x98, 0xe7, 0x0d, 0xe7, 0x76, 0xc2, - 0x6d, 0x71, 0x54, 0xd2, 0x60, 0x9d, 0x29, 0x7d, 0xfe, 0x8e, 0x69, 0xdf, 0xcd, 0xde, 0xf6, 0x86, - 0xf4, 0x8c, 0xfc, 0xd2, 0xd0, 0xcb, 0x9d, 0xdb, 0xb9, 0xef, 0xe5, 0x7e, 0x98, 0xe3, 0x3e, 0xee, - 0x1f, 0x34, 0x88, 0x9c, 0xf9, 0x90, 0x7b, 0x91, 0x2b, 0x97, 0x4e, 0xca, 0x27, 0xd5, 0xe3, 0xd2, - 0x49, 0x25, 0xc7, 0xb2, 0xf7, 0x2e, 0x9b, 0xb3, 0x75, 0xe1, 0x44, 0x86, 0x70, 0x22, 0x47, 0xa3, - 0x89, 0xcd, 0xc5, 0xa3, 0xae, 0x9b, 0xe4, 0xd7, 0x0f, 0x00, 0xc7, 0x12, 0x8e, 0x25, 0x1c, 0x4b, - 0x38, 0x96, 0x70, 0x2c, 0xc9, 0xcf, 0x2d, 0xae, 0x93, 0x5f, 0xfc, 0x5e, 0xd9, 0x25, 0xce, 0x3c, - 0xff, 0xf3, 0x23, 0x6e, 0x94, 0xa3, 0x2d, 0x39, 0x59, 0x8a, 0x6d, 0x40, 0xa6, 0x89, 0x52, 0x6d, - 0x81, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x36, 0x9c, 0x5b, 0x3e, 0x36, 0xcc, - 0xc1, 0xc0, 0x65, 0x9e, 0xa7, 0x03, 0x5a, 0x9c, 0x10, 0xce, 0xb9, 0x5c, 0xe3, 0xcc, 0x93, 0xd6, - 0xcf, 0x3b, 0x7b, 0x5f, 0xd6, 0xb0, 0xb7, 0x81, 0x3d, 0xfe, 0xa4, 0x61, 0xee, 0xb6, 0x29, 0x04, - 0x73, 0x6d, 0xf2, 0xed, 0xf6, 0x1f, 0xe0, 0xaf, 0xf7, 0xef, 0x6f, 0x0e, 0x8d, 0x93, 0xee, 0xd3, - 0x4d, 0xd1, 0x38, 0xe9, 0x2e, 0x3e, 0x16, 0xe7, 0x7f, 0x2c, 0x3e, 0x97, 0x6e, 0x0e, 0x8d, 0xf2, - 0xea, 0x73, 0xe5, 0xe6, 0xd0, 0xa8, 0x74, 0xf7, 0x7f, 0xfc, 0xf8, 0xb8, 0xff, 0xeb, 0x68, 0x1a, - 0xfe, 0x8b, 0x7f, 0x14, 0xc8, 0x5f, 0xb2, 0x4b, 0x4b, 0x4f, 0x7e, 0xc8, 0xd1, 0xa1, 0xad, 0xe2, - 0xd0, 0xea, 0x3d, 0xb4, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, 0xd3, - 0xfd, 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, - 0xfe, 0xa5, 0x3a, 0x3d, 0xdd, 0x71, 0x8c, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, 0xda, - 0xf6, 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, 0xd2, - 0x96, 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, - 0xff, 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xcf, 0x81, 0x0a, 0xc3, 0x0d, 0x4b, 0x12, 0xb9, 0x8f, 0x07, - 0x61, 0x68, 0xbf, 0x65, 0xd9, 0xf4, 0x10, 0x60, 0x44, 0xc0, 0x88, 0x80, 0x11, 0x01, 0x23, 0x02, - 0x46, 0x84, 0xfc, 0xdc, 0xe2, 0xa6, 0xe5, 0xc5, 0xef, 0x97, 0xb6, 0x89, 0x33, 0x6f, 0xed, 0xff, - 0xe3, 0xc6, 0x25, 0xe2, 0xd2, 0x73, 0xfb, 0xde, 0xb4, 0xf8, 0xc0, 0x70, 0x99, 0xe9, 0x39, 0x36, - 0x3d, 0xe0, 0x78, 0x35, 0x3f, 0xb0, 0x06, 0xb0, 0x06, 0xb0, 0x06, 0xb0, 0x06, 0xb0, 0x06, 0x3d, - 0xdd, 0x37, 0x60, 0xb6, 0xe0, 0xe2, 0x51, 0x13, 0xde, 0x20, 0x8c, 0xaf, 0x2d, 0x34, 0x96, 0xaf, - 0x7a, 0x66, 0x7a, 0x1a, 0x54, 0xc6, 0x6a, 0xc1, 0x1b, 0x17, 0xdf, 0x6b, 0xcd, 0xc6, 0x97, 0x5e, - 0xa7, 0x75, 0x7d, 0x55, 0xef, 0x75, 0xea, 0xb5, 0xcb, 0xd6, 0x05, 0xb5, 0xf6, 0x98, 0x87, 0x39, - 0x7b, 0x5a, 0x68, 0x4e, 0x4d, 0x71, 0xe5, 0xaf, 0x57, 0xbf, 0xd5, 0x69, 0x7c, 0x6b, 0x5c, 0xd4, - 0xae, 0x5a, 0x9d, 0x42, 0x1e, 0x82, 0xfa, 0x13, 0xb2, 0xea, 0x9f, 0x9b, 0xd7, 0x97, 0x57, 0xf5, - 0x4e, 0xaf, 0xd9, 0x6a, 0xb5, 0xb1, 0xee, 0x74, 0xeb, 0x5e, 0xbb, 0xc4, 0x92, 0x53, 0x8b, 0x7a, - 0xeb, 0xe2, 0x6b, 0xfd, 0x4b, 0x21, 0xe3, 0x59, 0x1b, 0xdd, 0xac, 0xe1, 0xbd, 0x4c, 0x78, 0xf7, - 0x96, 0xe9, 0x09, 0x63, 0xe4, 0x0c, 0xf8, 0x90, 0xb3, 0x01, 0xbd, 0x73, 0xbf, 0x3e, 0x3d, 0x7c, - 0x7b, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, 0xc3, 0xb7, 0x27, 0x3f, 0xb7, 0x82, 0x8f, 0x98, 0xe0, - 0xfd, 0x7f, 0xbc, 0x6a, 0x59, 0x83, 0x6f, 0x4f, 0x18, 0xc0, 0x53, 0xb8, 0xb6, 0x17, 0x59, 0xb2, - 0x05, 0xdb, 0xb4, 0x1d, 0x8f, 0xf5, 0x1d, 0x7b, 0x40, 0x1a, 0x4d, 0x8a, 0x7a, 0x04, 0xd9, 0xb3, - 0xf1, 0x9b, 0x59, 0x13, 0xd4, 0x23, 0x20, 0x17, 0x39, 0xd4, 0x23, 0xd8, 0x2b, 0x7e, 0x2a, 0x97, - 0xab, 0xc7, 0xe5, 0xf2, 0xe1, 0xf1, 0xd1, 0xf1, 0xe1, 0x49, 0xa5, 0x52, 0xac, 0x16, 0x51, 0x99, - 0x20, 0x73, 0xb3, 0x21, 0x6e, 0x6e, 0x77, 0x31, 0xa4, 0x6a, 0xfe, 0x15, 0x00, 0x55, 0x34, 0x4d, - 0xc0, 0xfc, 0x69, 0xbf, 0xb0, 0xa1, 0x39, 0xb1, 0xe6, 0x50, 0xfc, 0x10, 0xbe, 0x34, 0x7c, 0x69, - 0xf8, 0xd2, 0xf0, 0xa5, 0xe1, 0x4b, 0xa3, 0xac, 0x1e, 0xdc, 0x58, 0xb8, 0xb1, 0x70, 0x63, 0xe1, - 0xc6, 0xa6, 0x4a, 0xe4, 0x50, 0x56, 0x0f, 0xce, 0x2b, 0x9c, 0xd7, 0xbd, 0xc2, 0x32, 0xf8, 0xd9, - 0x99, 0x08, 0x46, 0xef, 0xc0, 0xbe, 0x9c, 0x1c, 0x0e, 0x25, 0x1c, 0x4a, 0x38, 0x94, 0x70, 0x28, - 0xe1, 0x50, 0x92, 0x9f, 0x5b, 0xb4, 0x51, 0x49, 0xf8, 0x0c, 0xaa, 0x3b, 0xc1, 0xd6, 0x6c, 0xdb, - 0x11, 0xe6, 0x0c, 0x8d, 0xd2, 0x34, 0x84, 0xf5, 0xfa, 0x3f, 0xd9, 0xc8, 0x5c, 0x36, 0x6e, 0x2b, - 0x1c, 0x38, 0x63, 0x66, 0xf7, 0xe7, 0x86, 0x72, 0xa6, 0x3f, 0x0e, 0x66, 0xff, 0xb9, 0xfc, 0xf6, - 0xc0, 0x1c, 0x72, 0xc3, 0x33, 0x87, 0xdc, 0xf3, 0x3f, 0x1d, 0xcc, 0xcb, 0xf8, 0x78, 0xae, 0x60, - 0xc6, 0xd8, 0xb1, 0x78, 0xff, 0xf1, 0xc0, 0x66, 0xfc, 0xee, 0xe7, 0xad, 0xe3, 0x7a, 0xfe, 0xa7, - 0x03, 0x73, 0xf0, 0xf7, 0x5c, 0x15, 0x71, 0xdb, 0x18, 0x3b, 0x9e, 0x38, 0x98, 0xc3, 0x0b, 0x6f, - 0xf1, 0xc7, 0x22, 0x49, 0x0f, 0xad, 0xd2, 0x83, 0x5b, 0x32, 0xb1, 0xff, 0xb1, 0x9d, 0x7f, 0x6d, - 0xc3, 0x14, 0xc2, 0xe5, 0xb7, 0xb3, 0x15, 0xa3, 0xeb, 0x9b, 0xbe, 0x61, 0x6e, 0x34, 0x51, 0x4f, - 0x2a, 0xea, 0x43, 0x13, 0xf5, 0x6c, 0xa2, 0x3a, 0x34, 0x51, 0x8f, 0xb4, 0x6a, 0x64, 0x4d, 0xd4, - 0x03, 0x4a, 0x92, 0xde, 0x5d, 0x0f, 0x3e, 0x02, 0xad, 0xd3, 0x5e, 0x84, 0xd3, 0x0e, 0xa7, 0x1d, - 0x4e, 0x3b, 0x9c, 0xf6, 0xe4, 0x38, 0xed, 0x54, 0xea, 0xdf, 0x9f, 0x70, 0xde, 0x32, 0x5c, 0x50, - 0x53, 0x05, 0x6b, 0x1a, 0xe3, 0xf9, 0x11, 0x88, 0x45, 0x57, 0xcf, 0xd5, 0x11, 0xb9, 0x39, 0xd0, - 0x69, 0x16, 0x92, 0x61, 0x1e, 0x74, 0x9b, 0x89, 0xc4, 0x98, 0x8b, 0xc4, 0x98, 0x8d, 0xc4, 0x98, - 0x0f, 0x5a, 0x33, 0x42, 0x6c, 0x4e, 0xfc, 0x55, 0xbe, 0xd2, 0xa1, 0xe0, 0xf7, 0xf4, 0x16, 0xfe, - 0x0a, 0xa0, 0xfd, 0x63, 0x3d, 0x65, 0x77, 0x57, 0x85, 0xc0, 0x16, 0xf5, 0xbc, 0x9e, 0x8d, 0x5d, - 0x46, 0x2f, 0xcb, 0x09, 0x45, 0xbb, 0xb0, 0x60, 0x5f, 0xb5, 0x01, 0x97, 0xc5, 0xf4, 0x7a, 0x40, - 0x4b, 0x11, 0xa0, 0x05, 0xa0, 0x05, 0xa0, 0x05, 0xa0, 0x25, 0xbb, 0xa0, 0x85, 0xda, 0x17, 0x5e, - 0xf7, 0x89, 0x2d, 0xa6, 0x31, 0x8e, 0x76, 0xcd, 0x35, 0x9e, 0x3d, 0xc9, 0x87, 0x5c, 0x06, 0x57, - 0xea, 0x32, 0x3a, 0x49, 0x30, 0x3e, 0xc9, 0x32, 0x42, 0x49, 0x31, 0x46, 0x89, 0x33, 0x4a, 0x89, - 0x33, 0x4e, 0x89, 0x33, 0x52, 0x7a, 0x8c, 0x95, 0x26, 0xa3, 0xa5, 0xdf, 0xe3, 0x0e, 0xe8, 0x8d, - 0x09, 0xb7, 0x45, 0xb1, 0xaa, 0x53, 0x67, 0x2c, 0xad, 0x48, 0x55, 0xe3, 0x23, 0xe8, 0x49, 0xff, - 0x79, 0xfd, 0x4b, 0xaf, 0xce, 0xdc, 0xd3, 0x9d, 0x1e, 0x94, 0x30, 0x78, 0x11, 0x78, 0x1c, 0xcd, - 0xe9, 0x43, 0x81, 0xe7, 0x49, 0x40, 0x4a, 0x47, 0x42, 0xd4, 0xe9, 0xba, 0x08, 0x9b, 0x0f, 0x10, - 0xe1, 0x37, 0x44, 0xb8, 0x5a, 0xa9, 0x1c, 0x55, 0x20, 0xc6, 0xc9, 0xc2, 0x22, 0xfa, 0x67, 0xef, - 0xbe, 0xcb, 0xc7, 0xfb, 0xea, 0xc8, 0x82, 0xd4, 0x77, 0x93, 0xbe, 0x99, 0x36, 0xd0, 0x70, 0xa3, - 0x0e, 0xde, 0x00, 0xbc, 0x01, 0x78, 0x03, 0xf0, 0x06, 0xe0, 0x0d, 0x32, 0xc2, 0x1b, 0x7c, 0x4a, - 0x00, 0x6d, 0x50, 0x01, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xca, 0x45, - 0xb8, 0x54, 0x01, 0x69, 0x00, 0xd2, 0x00, 0xa4, 0x01, 0x2d, 0x69, 0x70, 0xbf, 0x3c, 0x7d, 0x49, - 0x60, 0x0d, 0x16, 0xcf, 0x02, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, - 0x1b, 0x84, 0xd4, 0x1b, 0xb7, 0xdc, 0x36, 0xdd, 0xc7, 0x04, 0xf0, 0x06, 0x27, 0x1a, 0x1f, 0xa1, - 0xc9, 0xec, 0xbb, 0x79, 0xe0, 0x3f, 0x88, 0x03, 0x10, 0x07, 0x6f, 0x7a, 0x5d, 0x45, 0xf8, 0x5c, - 0x20, 0x0e, 0xd2, 0x2d, 0xc2, 0x88, 0x37, 0x00, 0x75, 0x00, 0xea, 0x80, 0x54, 0xcc, 0xd9, 0x83, - 0x60, 0xf6, 0x80, 0xb0, 0x0b, 0xe6, 0x56, 0xc8, 0xe7, 0x3f, 0x09, 0x68, 0x03, 0xd0, 0x06, 0xa0, - 0x0d, 0x40, 0x1b, 0x80, 0x36, 0x00, 0x6d, 0x10, 0x96, 0x36, 0x20, 0xaf, 0x19, 0xbb, 0xcd, 0x8c, - 0x10, 0xd5, 0x90, 0xcd, 0x27, 0x68, 0x71, 0xc6, 0x33, 0x64, 0x6e, 0x5a, 0xfa, 0x41, 0x8b, 0xff, - 0x24, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, - 0x2d, 0xc1, 0x35, 0x1e, 0x9b, 0xae, 0xe0, 0x49, 0xc0, 0x2c, 0xab, 0x07, 0x01, 0x64, 0x01, 0x64, - 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x09, 0xae, 0xb1, 0x70, - 0x4d, 0xdb, 0xe3, 0x82, 0xdf, 0x27, 0x20, 0xae, 0xf4, 0xc5, 0xb3, 0x00, 0xb8, 0x00, 0xb8, 0x00, - 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x24, 0x1e, 0xb8, 0x64, 0xba, 0xbc, 0x28, - 0x71, 0x93, 0xc2, 0xc0, 0xfc, 0xfa, 0x9a, 0x16, 0x06, 0xfb, 0xe3, 0x05, 0xff, 0x8a, 0xa2, 0xb3, - 0xa1, 0x3e, 0x79, 0xcb, 0x56, 0xd3, 0x98, 0x3f, 0xd9, 0xa3, 0x8e, 0xaa, 0x2f, 0x85, 0x26, 0xf7, - 0x44, 0x4d, 0x08, 0xe2, 0x8e, 0x35, 0xe7, 0xdc, 0xae, 0x5b, 0x6c, 0x06, 0x09, 0xbc, 0xc2, 0xe9, - 0x9e, 0x3d, 0xb1, 0x2c, 0xc2, 0x8a, 0xf3, 0xe7, 0xe6, 0x83, 0xbe, 0xc9, 0x5b, 0xee, 0x80, 0xb9, - 0x6c, 0x70, 0xf6, 0xb8, 0x9c, 0x3a, 0x53, 0x42, 0xac, 0x49, 0x1d, 0x27, 0x5c, 0x0d, 0x17, 0x48, - 0xbb, 0x29, 0xb8, 0x93, 0xbe, 0xb0, 0x97, 0x78, 0xeb, 0xec, 0x6e, 0xdc, 0xeb, 0xf0, 0xdb, 0x5e, - 0x6d, 0xc8, 0x2f, 0xcd, 0x21, 0xef, 0x35, 0xc6, 0xf7, 0xe5, 0x4b, 0x57, 0xb0, 0xf6, 0xfc, 0x65, - 0x7b, 0x17, 0xcb, 0x57, 0xec, 0xd5, 0x06, 0x7f, 0x77, 0xf8, 0x6d, 0xc3, 0x6e, 0x3b, 0x9e, 0xe8, - 0x75, 0x66, 0x2f, 0xd6, 0xbb, 0x5e, 0xbc, 0x45, 0xcd, 0x7f, 0x09, 0x34, 0x65, 0xd6, 0x7f, 0xd0, - 0x72, 0xd4, 0x94, 0x79, 0x43, 0xff, 0xdf, 0xb4, 0x76, 0x68, 0x7e, 0x97, 0x22, 0x49, 0x5b, 0xe1, - 0x90, 0xd9, 0x96, 0x1b, 0x7c, 0xb0, 0xc7, 0xec, 0xc1, 0xd8, 0xe1, 0xb6, 0xd8, 0xeb, 0x3b, 0x96, - 0xe3, 0x2a, 0xd2, 0x64, 0x34, 0x20, 0x84, 0x14, 0x74, 0x90, 0x82, 0x0c, 0x1a, 0x50, 0xa1, 0x4a, - 0xe2, 0x88, 0x74, 0x9a, 0x3e, 0x5d, 0xa6, 0xd0, 0xfe, 0x4b, 0xb3, 0xf7, 0x6a, 0x94, 0xab, 0x7c, - 0xd5, 0x27, 0x77, 0x44, 0xc9, 0x22, 0xad, 0x5a, 0x94, 0x75, 0x88, 0xb0, 0x5c, 0xc1, 0x90, 0xb7, - 0x7d, 0x72, 0x46, 0x92, 0x24, 0x00, 0xaa, 0x36, 0x9e, 0x74, 0xc3, 0x25, 0xaa, 0x29, 0x09, 0x6a, - 0x49, 0x8e, 0xdc, 0xc5, 0x97, 0x12, 0x09, 0x12, 0x52, 0x78, 0xb9, 0xd0, 0xae, 0x3c, 0x2a, 0xfe, - 0xb9, 0xe8, 0xcf, 0xfa, 0xf8, 0x92, 0x64, 0x5a, 0x6e, 0x93, 0x3a, 0xe9, 0x17, 0xa8, 0x2a, 0x2e, - 0x44, 0xd5, 0x5e, 0x70, 0xaa, 0xba, 0xb0, 0x54, 0x7e, 0x01, 0xa9, 0xfc, 0x42, 0x51, 0xf9, 0x05, - 0x61, 0xb2, 0xac, 0x85, 0xec, 0xa6, 0x68, 0x85, 0xa5, 0xa9, 0x96, 0x2e, 0x58, 0xab, 0xe3, 0xb0, - 0x1c, 0x5f, 0xf2, 0xa6, 0xab, 0xe9, 0x82, 0xa9, 0x2c, 0x52, 0x43, 0x65, 0x04, 0x06, 0x4d, 0x64, - 0x85, 0xea, 0x88, 0x09, 0xb2, 0x48, 0x08, 0xb2, 0x08, 0x07, 0xb2, 0xc8, 0x85, 0x64, 0xfb, 0x35, - 0xaa, 0xba, 0x38, 0x2e, 0x14, 0x8b, 0x3a, 0x79, 0x5c, 0xd3, 0x5f, 0xaa, 0x64, 0x51, 0x6d, 0x33, - 0x5f, 0xe5, 0x81, 0x67, 0x14, 0x81, 0x65, 0xb4, 0x81, 0x63, 0x54, 0x81, 0x61, 0xe4, 0x81, 0x5f, - 0xe4, 0x81, 0x5d, 0xe4, 0x81, 0x5b, 0xe9, 0xe2, 0xca, 0x55, 0x37, 0xb7, 0x2d, 0x2c, 0x48, 0x77, - 0xe5, 0x72, 0xbc, 0x3a, 0x9d, 0x2a, 0x39, 0xfe, 0xd7, 0xea, 0x52, 0x71, 0x18, 0x2d, 0x59, 0xbc, - 0x2e, 0x65, 0x5c, 0xae, 0x9e, 0xf8, 0x5b, 0xea, 0x38, 0x5b, 0x6d, 0xf1, 0xb4, 0xda, 0xe2, 0x66, - 0xb5, 0xc5, 0xc7, 0xa6, 0xfb, 0x32, 0x9c, 0x2c, 0xae, 0xd5, 0x3f, 0x77, 0x16, 0x33, 0x87, 0x2e, - 0x1b, 0x52, 0x1c, 0xba, 0x15, 0xaa, 0x3c, 0x26, 0x98, 0xab, 0xbd, 0xe4, 0x97, 0x3f, 0x7e, 0x5c, - 0x44, 0x0c, 0x1e, 0x2c, 0x0c, 0x41, 0x5a, 0xef, 0xdb, 0x15, 0x22, 0xcb, 0xd5, 0x75, 0x38, 0x9d, - 0x4d, 0xf6, 0x67, 0x84, 0x59, 0x86, 0x59, 0x86, 0x59, 0x86, 0x59, 0x86, 0x59, 0xce, 0xad, 0x59, - 0xf6, 0x6d, 0x01, 0x2c, 0x73, 0x60, 0xb1, 0x96, 0x01, 0x6b, 0x74, 0x86, 0x79, 0x35, 0x21, 0xec, - 0x32, 0xec, 0x32, 0xec, 0x32, 0xec, 0x32, 0xec, 0x72, 0x6e, 0xed, 0xf2, 0xca, 0x14, 0xc0, 0x2c, - 0x07, 0xd6, 0x6a, 0x91, 0x81, 0x48, 0x66, 0x94, 0x17, 0xd3, 0xd1, 0x98, 0xe4, 0x22, 0x4c, 0x32, - 0x4c, 0x32, 0x4c, 0x32, 0x4c, 0x72, 0xf4, 0x55, 0x53, 0x7d, 0x81, 0xe8, 0x4f, 0x34, 0x4f, 0x2b, - 0xe6, 0xf6, 0x80, 0xd1, 0x15, 0x90, 0x59, 0x6f, 0x49, 0xb9, 0x98, 0x9b, 0x2a, 0x97, 0x9a, 0xb4, - 0x54, 0x10, 0x79, 0x69, 0x20, 0x1d, 0xa5, 0x80, 0xf4, 0x96, 0xfe, 0xd1, 0x55, 0xea, 0x47, 0x7b, - 0x69, 0x1f, 0xed, 0xa5, 0x7c, 0xb4, 0x97, 0xee, 0xc9, 0x56, 0x95, 0x07, 0xf2, 0x52, 0x3c, 0x1a, - 0x7c, 0x31, 0x1d, 0x3e, 0xd9, 0x26, 0xdf, 0xec, 0x37, 0xbf, 0xe7, 0x26, 0xc9, 0x63, 0xc2, 0xf3, - 0x3f, 0x2d, 0x3d, 0xb9, 0x85, 0x99, 0xca, 0x4a, 0xaa, 0x3b, 0x01, 0xb2, 0xa6, 0x89, 0x50, 0x0a, - 0x48, 0x33, 0x45, 0xa4, 0x12, 0xe0, 0x04, 0xe0, 0x04, 0xe0, 0x04, 0xe0, 0x04, 0xe0, 0xc4, 0x86, - 0x73, 0x3b, 0xe1, 0xb6, 0x38, 0x2a, 0x69, 0x40, 0x13, 0x94, 0x60, 0xa2, 0x63, 0xda, 0x77, 0x8c, - 0xbc, 0x01, 0xb4, 0x86, 0x32, 0x76, 0x3a, 0x1b, 0x3c, 0xeb, 0x2e, 0xec, 0xbb, 0xea, 0x7e, 0xab, - 0x6b, 0xfe, 0x04, 0x74, 0xba, 0xd5, 0x51, 0xdc, 0x5a, 0x67, 0x43, 0xe6, 0xa4, 0x88, 0x5c, 0xb9, - 0x74, 0x52, 0x3e, 0xa9, 0x1e, 0x97, 0x4e, 0x2a, 0x39, 0x96, 0xbd, 0x8c, 0x56, 0xa7, 0xec, 0xc2, - 0x89, 0x0c, 0xe1, 0x44, 0x8e, 0x46, 0x13, 0x9b, 0x8b, 0x47, 0x5d, 0x14, 0xf5, 0xeb, 0x07, 0x80, - 0x63, 0x09, 0xc7, 0x12, 0x8e, 0x25, 0x1c, 0x4b, 0x38, 0x96, 0xe4, 0xe7, 0x16, 0x3c, 0xf5, 0x8b, - 0xdf, 0x2b, 0xbb, 0xc4, 0x99, 0xe7, 0x7f, 0x7e, 0x04, 0x55, 0x1d, 0x6d, 0xc9, 0xc9, 0x72, 0x77, - 0x02, 0x32, 0x4d, 0x94, 0xc3, 0x03, 0x5c, 0x01, 0x5c, 0x01, 0x5c, 0x01, 0x5c, 0x01, 0x5c, 0xb1, - 0xe1, 0xdc, 0xf2, 0xb1, 0x61, 0x0e, 0x06, 0x2e, 0xf3, 0x3c, 0x1d, 0xd0, 0xe2, 0x84, 0x70, 0xce, - 0xe5, 0x1a, 0x67, 0x9e, 0xb4, 0x7e, 0xde, 0xd9, 0xfb, 0xb2, 0x86, 0xbd, 0x0d, 0xec, 0xf1, 0x27, - 0x0d, 0x73, 0xb7, 0x4d, 0x21, 0x98, 0x6b, 0x93, 0x6f, 0xb7, 0xff, 0x00, 0x7f, 0xbd, 0x7f, 0x7f, - 0x73, 0x68, 0x9c, 0x74, 0x9f, 0x6e, 0x8a, 0xc6, 0x49, 0x77, 0xf1, 0xb1, 0x38, 0xff, 0x63, 0xf1, - 0xb9, 0x74, 0x73, 0x68, 0x94, 0x57, 0x9f, 0x2b, 0x37, 0x87, 0x46, 0xa5, 0xbb, 0xff, 0xe3, 0xc7, - 0xc7, 0xfd, 0x5f, 0x47, 0xd3, 0xf0, 0x5f, 0xfc, 0x83, 0xbe, 0x63, 0x58, 0x37, 0xcb, 0xed, 0x93, - 0xf4, 0x1e, 0xda, 0x2a, 0x0e, 0xad, 0xde, 0x43, 0x6b, 0x1a, 0xc3, 0x9a, 0xf1, 0xb5, 0xfb, 0xab, - 0xf8, 0xa1, 0x3c, 0x3d, 0xdd, 0xff, 0x75, 0x3c, 0x7d, 0xfd, 0x97, 0x4f, 0x9b, 0x7e, 0xac, 0xf8, - 0xe1, 0x78, 0x7a, 0xba, 0xe5, 0x5f, 0xaa, 0xd3, 0xd3, 0x1d, 0xc7, 0xa8, 0x4c, 0xdf, 0x07, 0x7e, - 0x74, 0xf6, 0xf7, 0xa5, 0x6d, 0x5f, 0x28, 0x6f, 0xf9, 0xc2, 0xd1, 0xb6, 0x2f, 0x1c, 0x6d, 0xf9, - 0xc2, 0xd6, 0x47, 0x2a, 0x6d, 0xf9, 0x42, 0x65, 0xfa, 0x14, 0xf8, 0xf9, 0xf7, 0x9b, 0x7f, 0xb4, - 0x3a, 0xdd, 0x7f, 0xda, 0xf6, 0x6f, 0xc7, 0xd3, 0xa7, 0xd3, 0xfd, 0x1c, 0xa8, 0x30, 0xdc, 0xb0, - 0x24, 0x91, 0xfb, 0x78, 0x10, 0x86, 0xf6, 0x5b, 0x96, 0x4d, 0x0f, 0x01, 0x46, 0x04, 0x8c, 0x08, - 0x18, 0x11, 0x30, 0x22, 0x60, 0x44, 0xc8, 0xcf, 0x2d, 0x6e, 0x5a, 0x5e, 0xfc, 0x7e, 0x69, 0x9b, - 0x38, 0xf3, 0xd6, 0xfe, 0x3f, 0x6e, 0x5c, 0x22, 0x2e, 0x3d, 0xb7, 0xef, 0x4d, 0x8b, 0x0f, 0x0c, - 0x97, 0x99, 0x1e, 0x61, 0x4b, 0xc8, 0x67, 0x27, 0x73, 0x7d, 0x7e, 0x60, 0x0d, 0x60, 0x0d, 0x60, - 0x0d, 0x60, 0x0d, 0x60, 0x0d, 0x7a, 0xba, 0x6f, 0xc0, 0x6c, 0xc1, 0xc5, 0xa3, 0x26, 0xbc, 0x41, - 0x18, 0x5f, 0x5b, 0x68, 0x2c, 0x5f, 0xf5, 0xcc, 0xf4, 0x34, 0xa8, 0x8c, 0xd5, 0x82, 0x37, 0x2e, - 0xbe, 0xd7, 0x9a, 0x8d, 0x2f, 0xbd, 0x4e, 0xeb, 0xfa, 0xaa, 0xde, 0xeb, 0xd4, 0x6b, 0x97, 0xad, - 0x0b, 0x6a, 0xed, 0x31, 0x0f, 0x73, 0xf6, 0xb4, 0xd0, 0x9c, 0x9a, 0xe2, 0xca, 0x5f, 0xaf, 0x7e, - 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, 0x5d, 0xb5, 0x3a, 0x85, 0x3c, 0x04, 0xf5, 0x27, 0x64, 0xd5, - 0x3f, 0x37, 0xaf, 0x2f, 0xaf, 0xea, 0x9d, 0x5e, 0xb3, 0xd5, 0x6a, 0x63, 0xdd, 0xe9, 0xd6, 0xbd, - 0x76, 0x89, 0x25, 0xa7, 0x16, 0xf5, 0xd6, 0xc5, 0xd7, 0xfa, 0x97, 0x42, 0xc6, 0xb3, 0x36, 0xba, - 0x59, 0xc3, 0x7b, 0x99, 0xf0, 0xee, 0x2d, 0xd3, 0x13, 0xc6, 0xc8, 0x19, 0xf0, 0x21, 0x67, 0x03, - 0x7a, 0xe7, 0x7e, 0x7d, 0x7a, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, 0xc3, 0xb7, 0x87, 0x6f, 0x4f, - 0x7e, 0x6e, 0x05, 0x1f, 0x31, 0xc1, 0xfb, 0xff, 0x78, 0xd5, 0xb2, 0x06, 0xdf, 0x9e, 0x30, 0x80, - 0xa7, 0x70, 0x6d, 0x2f, 0xb2, 0x64, 0x0b, 0xb6, 0x69, 0x3b, 0x1e, 0xeb, 0x3b, 0xf6, 0x80, 0x34, - 0x9a, 0x14, 0xf5, 0x08, 0xb2, 0x67, 0xe3, 0x37, 0xb3, 0x26, 0xa8, 0x47, 0x40, 0x2e, 0x72, 0xa8, - 0x47, 0xb0, 0x57, 0xfc, 0x54, 0x2e, 0x57, 0x8f, 0xcb, 0xe5, 0xc3, 0xe3, 0xa3, 0xe3, 0xc3, 0x93, - 0x4a, 0xa5, 0x58, 0x2d, 0xa2, 0x32, 0x41, 0xe6, 0x66, 0x43, 0xdc, 0xdc, 0xee, 0x62, 0x48, 0xd5, - 0x55, 0x24, 0x00, 0xaa, 0x68, 0xba, 0x8b, 0xf8, 0xd3, 0x7e, 0x61, 0x43, 0x73, 0x62, 0xcd, 0xa1, - 0xf8, 0x21, 0x7c, 0x69, 0xf8, 0xd2, 0xf0, 0xa5, 0xe1, 0x4b, 0xc3, 0x97, 0x46, 0x59, 0x3d, 0xb8, - 0xb1, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x4d, 0x95, 0xc8, 0xa1, 0xac, 0x1e, 0x9c, 0x57, 0x38, - 0xaf, 0x7b, 0x85, 0x65, 0xf0, 0xb3, 0x33, 0x11, 0x8c, 0xde, 0x81, 0x7d, 0x39, 0x39, 0x1c, 0x4a, - 0x38, 0x94, 0x70, 0x28, 0xe1, 0x50, 0xc2, 0xa1, 0x24, 0x3f, 0xb7, 0xb7, 0x8e, 0x63, 0x31, 0xd3, - 0xd6, 0x11, 0x74, 0x5d, 0xcc, 0x8a, 0xa9, 0x4e, 0x75, 0x8b, 0xb9, 0x9a, 0x6d, 0x3b, 0xc2, 0x9c, - 0xa1, 0x51, 0x9a, 0x4e, 0x73, 0x5e, 0xff, 0x27, 0x1b, 0x99, 0xe3, 0x65, 0xd2, 0xdd, 0x81, 0x33, - 0x66, 0x76, 0x7f, 0x6e, 0x28, 0x67, 0xfa, 0xe3, 0x60, 0xf6, 0x9f, 0xcb, 0x6f, 0x0f, 0xcc, 0x21, - 0x37, 0x3c, 0x73, 0xc8, 0x3d, 0xff, 0xd3, 0xc1, 0xbc, 0x8c, 0x8f, 0xe7, 0x0a, 0x66, 0x8c, 0x1d, - 0x8b, 0xf7, 0x1f, 0x0f, 0x6c, 0xc6, 0xef, 0x7e, 0xde, 0x3a, 0xae, 0xe7, 0x7f, 0x3a, 0x30, 0x07, - 0x7f, 0xcf, 0x55, 0x11, 0xb7, 0x8d, 0xb1, 0xcb, 0x0e, 0xe6, 0xe8, 0xc2, 0x5b, 0xfc, 0xb1, 0xc8, - 0xd1, 0x43, 0x0b, 0xd6, 0xe0, 0x8e, 0x4c, 0xec, 0x7f, 0x6c, 0xe7, 0x5f, 0xdb, 0x30, 0x85, 0x70, - 0xf9, 0xed, 0x6c, 0xc5, 0xe8, 0xfa, 0xb1, 0x6e, 0x98, 0x1b, 0xcd, 0x59, 0x93, 0x0a, 0xfa, 0xd0, - 0x9c, 0x35, 0x9b, 0xa0, 0x0e, 0xcd, 0x59, 0x23, 0xad, 0x1a, 0x59, 0x73, 0xd6, 0x80, 0x92, 0xa4, - 0xf7, 0xd6, 0x83, 0x8f, 0x40, 0xeb, 0xb3, 0x17, 0xe1, 0xb3, 0xc3, 0x67, 0x87, 0xcf, 0x0e, 0x9f, - 0x3d, 0x39, 0x3e, 0x3b, 0x95, 0xfa, 0xf7, 0x27, 0x9c, 0xb7, 0x22, 0x15, 0xd4, 0x4c, 0xc1, 0x5e, - 0xa0, 0x55, 0xf7, 0xfc, 0x11, 0x88, 0x45, 0x57, 0xcf, 0xcd, 0x11, 0xb9, 0x39, 0xd0, 0x69, 0x16, - 0x92, 0x61, 0x1e, 0x74, 0x9b, 0x89, 0xc4, 0x98, 0x8b, 0xc4, 0x98, 0x8d, 0xc4, 0x98, 0x0f, 0x5a, - 0x33, 0x42, 0x6c, 0x4e, 0xfc, 0x55, 0xbe, 0xd2, 0xa1, 0xe0, 0xf7, 0xf4, 0xd6, 0xfd, 0x0a, 0xa0, - 0xfd, 0x63, 0x3d, 0x55, 0x77, 0x57, 0x75, 0xc0, 0x16, 0xe5, 0xbc, 0x9e, 0x8d, 0x5d, 0x46, 0xef, - 0xca, 0x09, 0x45, 0xbb, 0xb0, 0x60, 0x5f, 0xb5, 0x01, 0x97, 0xc5, 0xf4, 0x7a, 0x40, 0x4b, 0x11, - 0xa0, 0x05, 0xa0, 0x05, 0xa0, 0x05, 0xa0, 0x25, 0xbb, 0xa0, 0x85, 0xda, 0x17, 0x5e, 0xf7, 0x89, - 0x2d, 0xa6, 0x31, 0x8c, 0x76, 0xcd, 0x35, 0x9e, 0x3d, 0xc9, 0x87, 0x5c, 0xc6, 0x56, 0xea, 0x32, - 0x3a, 0x49, 0x30, 0x3e, 0xc9, 0x32, 0x42, 0x49, 0x31, 0x46, 0x89, 0x33, 0x4a, 0x89, 0x33, 0x4e, - 0x89, 0x33, 0x52, 0x7a, 0x8c, 0x95, 0x26, 0xa3, 0xa5, 0xdf, 0xe3, 0x0e, 0xe8, 0x8d, 0x09, 0xb7, - 0x45, 0xb1, 0xaa, 0x53, 0x67, 0x2c, 0xad, 0x48, 0x55, 0xe3, 0x23, 0xe8, 0xc9, 0xfe, 0x79, 0xfd, - 0x4b, 0xaf, 0xce, 0xdc, 0xd3, 0x9d, 0x1d, 0x94, 0x30, 0x78, 0x11, 0x78, 0x1c, 0xcd, 0xd9, 0x43, - 0x81, 0xe7, 0x49, 0x40, 0x46, 0x47, 0x42, 0xd4, 0xe9, 0xba, 0x08, 0x9b, 0x0f, 0x10, 0xe1, 0x37, - 0x44, 0xb8, 0x5a, 0xa9, 0x1c, 0x55, 0x20, 0xc6, 0xc9, 0xc2, 0x22, 0xfa, 0x67, 0xef, 0xbe, 0xcb, - 0xc7, 0xfb, 0xea, 0x48, 0x82, 0xd4, 0x77, 0x93, 0xbe, 0x99, 0x36, 0xd0, 0x70, 0xa3, 0x0e, 0xde, - 0x00, 0xbc, 0x01, 0x78, 0x03, 0xf0, 0x06, 0xe0, 0x0d, 0x32, 0xc2, 0x1b, 0x7c, 0x4a, 0x00, 0x6d, - 0x50, 0x01, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xca, 0x45, 0xb8, 0x54, - 0x01, 0x69, 0x00, 0xd2, 0x00, 0xa4, 0x01, 0x2d, 0x69, 0x70, 0xbf, 0x3c, 0x7d, 0x49, 0x60, 0x0d, - 0x16, 0xcf, 0x02, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, 0x84, - 0xd4, 0x1b, 0xb7, 0xdc, 0x36, 0xdd, 0xc7, 0x04, 0xf0, 0x06, 0x27, 0x1a, 0x1f, 0xa1, 0xc9, 0xec, - 0xbb, 0x79, 0xe0, 0x3f, 0x88, 0x03, 0x10, 0x07, 0x6f, 0x7a, 0x5d, 0x45, 0xf8, 0x5c, 0x20, 0x0e, - 0xd2, 0x2d, 0xc2, 0x88, 0x37, 0x00, 0x75, 0x00, 0xea, 0x80, 0x54, 0xcc, 0xd9, 0x83, 0x60, 0xf6, - 0x80, 0xb0, 0x09, 0xe6, 0x56, 0xc8, 0xe7, 0x3f, 0x09, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, - 0x1b, 0x80, 0x36, 0x00, 0x6d, 0x10, 0x96, 0x36, 0x20, 0x2f, 0x19, 0xbb, 0xcd, 0x8c, 0x10, 0x95, - 0x90, 0xcd, 0x27, 0x68, 0x71, 0xc6, 0x33, 0x64, 0x6e, 0x5a, 0xfa, 0x41, 0x8b, 0xff, 0x24, 0x00, - 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0xc1, - 0x35, 0x1e, 0x9b, 0xae, 0xe0, 0x49, 0xc0, 0x2c, 0xab, 0x07, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, - 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x09, 0xae, 0xb1, 0x70, 0x4d, 0xdb, - 0xe3, 0x82, 0xdf, 0x27, 0x20, 0xae, 0xf4, 0xc5, 0xb3, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, - 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x24, 0x1e, 0xb8, 0x64, 0xba, 0xbc, 0x28, 0x71, 0x8f, - 0xc2, 0xc0, 0xfc, 0xda, 0x7a, 0x16, 0x06, 0xdb, 0xe3, 0x05, 0xff, 0x8a, 0xa2, 0xb1, 0xa1, 0x3e, - 0x71, 0xcb, 0x56, 0xcf, 0x98, 0x3f, 0xd9, 0xa3, 0x8e, 0xa2, 0x2f, 0x85, 0x26, 0xf7, 0x44, 0x4d, - 0x08, 0xe2, 0x86, 0x35, 0xe7, 0xdc, 0xae, 0x5b, 0x6c, 0x86, 0x08, 0xbc, 0xc2, 0xe9, 0x9e, 0x3d, - 0xb1, 0x2c, 0xc2, 0x82, 0xf3, 0xe7, 0xe6, 0x83, 0xbe, 0xc9, 0x5b, 0xee, 0x80, 0xb9, 0x6c, 0x70, - 0xf6, 0xb8, 0x9c, 0x3a, 0x53, 0x42, 0xac, 0x49, 0x1b, 0x27, 0x5b, 0x0b, 0x17, 0x48, 0x7b, 0x29, - 0xb8, 0x93, 0xbe, 0xb0, 0x97, 0x68, 0xeb, 0xec, 0x6e, 0xdc, 0xeb, 0xf0, 0xdb, 0x5e, 0x6d, 0xc8, - 0x2f, 0xcd, 0x21, 0xef, 0x35, 0xc6, 0xf7, 0xe5, 0x4b, 0x57, 0xb0, 0xf6, 0xfc, 0x5d, 0x7b, 0x17, - 0xcb, 0x37, 0xec, 0xd5, 0x06, 0x7f, 0x77, 0xf8, 0x6d, 0xc3, 0x6e, 0xbb, 0xac, 0xd7, 0x99, 0xbd, - 0x57, 0xef, 0x7a, 0xf1, 0x12, 0x35, 0xff, 0x1d, 0xd0, 0x90, 0x59, 0xff, 0x31, 0xcb, 0x4f, 0x43, - 0xe6, 0x0d, 0xbd, 0x7f, 0xd3, 0xda, 0x9d, 0xf9, 0x5d, 0x8a, 0x04, 0x6d, 0x05, 0x42, 0x66, 0x3b, - 0x6e, 0xf0, 0xc1, 0x1e, 0xb3, 0x07, 0x63, 0x87, 0xdb, 0x62, 0xaf, 0xef, 0x58, 0x8e, 0xab, 0x48, - 0x8f, 0xd1, 0x20, 0x10, 0x52, 0xc4, 0x41, 0x8a, 0x30, 0x68, 0x10, 0x85, 0x2a, 0x89, 0x23, 0x52, - 0x69, 0xda, 0x54, 0x99, 0x42, 0xe3, 0x2f, 0xcb, 0xd8, 0xab, 0x51, 0xad, 0xf2, 0x15, 0x9f, 0xdc, - 0x11, 0x25, 0x0b, 0xb4, 0x6a, 0x41, 0xd6, 0x20, 0xc0, 0x72, 0xe5, 0x42, 0xde, 0xee, 0xc9, 0x19, - 0x49, 0xd2, 0xfe, 0xab, 0xda, 0x77, 0xca, 0xfd, 0x96, 0xa8, 0xa3, 0xe2, 0xeb, 0x24, 0x39, 0x52, - 0x17, 0x5f, 0x46, 0x24, 0xc8, 0x47, 0x61, 0xb5, 0xcc, 0xce, 0x44, 0x18, 0x63, 0xc7, 0x13, 0xd2, - 0x24, 0xe4, 0xb9, 0xda, 0xcf, 0xeb, 0x19, 0x24, 0x49, 0xb5, 0xdc, 0xfe, 0x74, 0xd2, 0xef, 0x4e, - 0x55, 0xdc, 0x85, 0xaa, 0xbd, 0xdb, 0x54, 0x75, 0x57, 0xa9, 0xfc, 0xee, 0x51, 0xf9, 0x5d, 0xa2, - 0xf2, 0xbb, 0xc1, 0x64, 0xd9, 0x0b, 0xd9, 0xfd, 0xd0, 0x0a, 0x4b, 0x63, 0x2d, 0x5d, 0xb0, 0x56, - 0xc7, 0x61, 0x39, 0xbe, 0xe4, 0x4d, 0x57, 0xd3, 0x00, 0x53, 0x59, 0x90, 0x86, 0xca, 0xe0, 0x0b, - 0x9a, 0xa0, 0x0a, 0xd5, 0xc1, 0x12, 0x64, 0x41, 0x10, 0x64, 0xc1, 0x0d, 0x64, 0x41, 0x0b, 0xc9, - 0x76, 0x6c, 0x54, 0x35, 0x70, 0x5c, 0x28, 0x16, 0x75, 0xf2, 0xb8, 0xa6, 0xbf, 0x54, 0xc9, 0xa2, - 0xda, 0x3e, 0xbe, 0xca, 0x63, 0xce, 0x28, 0x62, 0xca, 0x68, 0x63, 0xc6, 0xa8, 0x62, 0xc2, 0xc8, - 0x63, 0xbe, 0xc8, 0x63, 0xba, 0xc8, 0x63, 0xb6, 0xd2, 0x45, 0x95, 0xab, 0xee, 0x6b, 0x5b, 0x58, - 0x70, 0xee, 0xca, 0xe5, 0x78, 0x75, 0x3a, 0x55, 0x52, 0xfc, 0xaf, 0xd5, 0xa5, 0xe2, 0x08, 0x5a, - 0xb2, 0x50, 0x5d, 0xca, 0x90, 0x5c, 0x3d, 0xa1, 0xb7, 0xd4, 0x21, 0xb6, 0xda, 0x42, 0x69, 0xb5, - 0x85, 0xcc, 0x6a, 0x0b, 0x8d, 0x4d, 0xf7, 0x55, 0x38, 0x59, 0x48, 0xab, 0x7f, 0xee, 0x2c, 0x66, - 0x0e, 0x5d, 0x36, 0xa4, 0x38, 0x74, 0x2b, 0x54, 0x79, 0x4c, 0x30, 0x57, 0x7b, 0xc9, 0x30, 0x7f, - 0xfc, 0xb8, 0x88, 0x16, 0x3c, 0x58, 0x18, 0x82, 0xb4, 0x5e, 0xb7, 0x2b, 0x44, 0x96, 0xab, 0xdb, - 0x70, 0x3a, 0x9b, 0xec, 0xcf, 0x08, 0xb3, 0x0c, 0xb3, 0x0c, 0xb3, 0x0c, 0xb3, 0x0c, 0xb3, 0x9c, - 0x5b, 0xb3, 0xec, 0xdb, 0x02, 0x58, 0xe6, 0xc0, 0x62, 0x2d, 0xe3, 0xd5, 0xe8, 0x0c, 0xf3, 0x6a, - 0x42, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0xe5, 0xdc, 0xda, 0xe5, 0x95, 0x29, - 0x80, 0x59, 0x0e, 0xac, 0xd5, 0x22, 0xfb, 0x90, 0xcc, 0x28, 0x2f, 0xa6, 0xa3, 0x31, 0xc9, 0x45, - 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0xe4, 0xe8, 0xab, 0xa6, 0xfa, 0x02, 0xd1, 0x9f, 0x68, - 0x9e, 0x52, 0xcc, 0xed, 0x01, 0xa3, 0xab, 0x1d, 0xb3, 0xde, 0x8d, 0x72, 0x31, 0x37, 0x55, 0x1e, - 0x35, 0x69, 0x95, 0x20, 0xf2, 0xaa, 0x40, 0x3a, 0xaa, 0x00, 0xe9, 0xad, 0xfa, 0xa3, 0xab, 0xca, - 0x8f, 0xf6, 0xaa, 0x3e, 0xda, 0xab, 0xf8, 0x68, 0xaf, 0xda, 0x93, 0xad, 0x0a, 0x0f, 0xe4, 0x55, - 0x78, 0x34, 0xf8, 0x62, 0x3a, 0x7c, 0xb2, 0x4d, 0xbe, 0xd9, 0x6f, 0x7e, 0xcf, 0x4d, 0x92, 0xc7, - 0x84, 0xe7, 0x7f, 0x5a, 0x7a, 0x72, 0x0b, 0x33, 0x95, 0x95, 0x44, 0x77, 0x02, 0x64, 0x4d, 0x13, - 0xa1, 0x14, 0x90, 0x66, 0x8a, 0x48, 0x25, 0xc0, 0x09, 0xc0, 0x09, 0xc0, 0x09, 0xc0, 0x09, 0xc0, - 0x89, 0x0d, 0xe7, 0x76, 0xc2, 0x6d, 0x71, 0x54, 0xd2, 0x80, 0x26, 0x28, 0xc1, 0x44, 0xc7, 0xb4, - 0xef, 0x18, 0x79, 0xef, 0x67, 0x0d, 0x15, 0xec, 0x74, 0xf6, 0x76, 0xd6, 0x5d, 0xd3, 0x77, 0xd5, - 0xf8, 0x56, 0xd7, 0xfc, 0x09, 0x68, 0x72, 0xab, 0xa3, 0xae, 0xb5, 0xce, 0x5e, 0xcc, 0x49, 0x11, - 0xb9, 0x72, 0xe9, 0xa4, 0x7c, 0x52, 0x3d, 0x2e, 0x9d, 0x54, 0x72, 0x2c, 0x7b, 0x19, 0xad, 0x4c, - 0xd9, 0x85, 0x13, 0x19, 0xc2, 0x89, 0x1c, 0x8d, 0x26, 0x36, 0x17, 0x8f, 0xba, 0x28, 0xea, 0xd7, - 0x0f, 0x00, 0xc7, 0x12, 0x8e, 0x25, 0x1c, 0x4b, 0x38, 0x96, 0x70, 0x2c, 0xc9, 0xcf, 0x2d, 0x78, - 0xea, 0x17, 0xbf, 0x57, 0x76, 0x89, 0x33, 0xcf, 0xff, 0xfc, 0x08, 0xaa, 0x3a, 0xda, 0x92, 0x93, - 0xe5, 0xee, 0x04, 0x64, 0x9a, 0x28, 0x87, 0x07, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, - 0xb8, 0x62, 0xc3, 0xb9, 0xe5, 0x63, 0xc3, 0x1c, 0x0c, 0x5c, 0xe6, 0x79, 0x3a, 0xa0, 0xc5, 0x09, - 0xe1, 0x9c, 0xcb, 0x35, 0xce, 0x3c, 0x69, 0xfd, 0xbc, 0xb3, 0xf7, 0x65, 0x0d, 0x7b, 0x1b, 0xd8, - 0xe3, 0x4f, 0x1a, 0xe6, 0x6e, 0x9b, 0x42, 0x30, 0xd7, 0x26, 0xdf, 0x6e, 0xff, 0x01, 0xfe, 0x7a, - 0xff, 0xfe, 0xe6, 0xd0, 0x38, 0xe9, 0x3e, 0xdd, 0x14, 0x8d, 0x93, 0xee, 0xe2, 0x63, 0x71, 0xfe, - 0xc7, 0xe2, 0x73, 0xe9, 0xe6, 0xd0, 0x28, 0xaf, 0x3e, 0x57, 0x6e, 0x0e, 0x8d, 0x4a, 0x77, 0xff, - 0xc7, 0x8f, 0x8f, 0xfb, 0xbf, 0x8e, 0xa6, 0xe1, 0xbf, 0xf8, 0x07, 0x7d, 0xb3, 0xb0, 0x6e, 0x96, - 0x3b, 0x27, 0xe9, 0x3d, 0xb4, 0x55, 0x1c, 0x5a, 0xbd, 0x87, 0xd6, 0x34, 0x86, 0x35, 0xe3, 0x6b, - 0xf7, 0x57, 0xf1, 0x43, 0x79, 0x7a, 0xba, 0xff, 0xeb, 0x78, 0xfa, 0xfa, 0x2f, 0x9f, 0x36, 0xfd, - 0x58, 0xf1, 0xc3, 0xf1, 0xf4, 0x74, 0xcb, 0xbf, 0x54, 0xa7, 0xa7, 0x3b, 0x8e, 0x51, 0x99, 0xbe, - 0x0f, 0xfc, 0xe8, 0xec, 0xef, 0x4b, 0xdb, 0xbe, 0x50, 0xde, 0xf2, 0x85, 0xa3, 0x6d, 0x5f, 0x38, - 0xda, 0xf2, 0x85, 0xad, 0x8f, 0x54, 0xda, 0xf2, 0x85, 0xca, 0xf4, 0x29, 0xf0, 0xf3, 0xef, 0x37, - 0xff, 0x68, 0x75, 0xba, 0xff, 0xb4, 0xed, 0xdf, 0x8e, 0xa7, 0x4f, 0xa7, 0xfb, 0x39, 0x50, 0x61, - 0xb8, 0x61, 0x49, 0x22, 0xf7, 0xf1, 0x20, 0x0c, 0xed, 0xb7, 0x2c, 0x9b, 0x1e, 0x02, 0x8c, 0x08, - 0x18, 0x11, 0x30, 0x22, 0x60, 0x44, 0xc0, 0x88, 0x90, 0x9f, 0x5b, 0xdc, 0xb4, 0xbc, 0xf8, 0xfd, - 0xd2, 0x36, 0x71, 0xe6, 0xad, 0xfd, 0x7f, 0xdc, 0xb8, 0x44, 0x5c, 0x7a, 0x6e, 0xdf, 0x9b, 0x16, - 0x1f, 0x18, 0x2e, 0x33, 0x3d, 0xc2, 0x76, 0x90, 0xcf, 0x4e, 0xe6, 0xfa, 0xfc, 0xc0, 0x1a, 0xc0, - 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0xf4, 0x74, 0xdf, 0x80, 0xd9, 0x82, 0x8b, 0x47, 0x4d, - 0x78, 0x83, 0x30, 0xbe, 0xb6, 0xd0, 0x58, 0xbe, 0xea, 0x99, 0xe9, 0x69, 0x50, 0x19, 0xab, 0x05, - 0x6f, 0x5c, 0x7c, 0xaf, 0x35, 0x1b, 0x5f, 0x7a, 0x9d, 0xd6, 0xf5, 0x55, 0xbd, 0xd7, 0xa9, 0xd7, - 0x2e, 0x5b, 0x17, 0xd4, 0xda, 0x63, 0x1e, 0xe6, 0xec, 0x69, 0xa1, 0x39, 0x35, 0xc5, 0x95, 0xbf, - 0x5e, 0xfd, 0x56, 0xa7, 0xf1, 0xad, 0x71, 0x51, 0xbb, 0x6a, 0x75, 0x0a, 0x79, 0x08, 0xea, 0x4f, - 0xc8, 0xaa, 0x7f, 0x6e, 0x5e, 0x5f, 0x5e, 0xd5, 0x3b, 0xbd, 0x66, 0xab, 0xd5, 0xc6, 0xba, 0xd3, - 0xad, 0x7b, 0xed, 0x12, 0x4b, 0x4e, 0x2d, 0xea, 0xad, 0x8b, 0xaf, 0xf5, 0x2f, 0x85, 0x8c, 0x67, - 0x6d, 0x74, 0xb3, 0x86, 0xf7, 0x32, 0xe1, 0xdd, 0x5b, 0xa6, 0x27, 0x8c, 0x91, 0x33, 0xe0, 0x43, - 0xce, 0x06, 0xf4, 0xce, 0xfd, 0xfa, 0xf4, 0xf0, 0xed, 0xe1, 0xdb, 0xc3, 0xb7, 0x87, 0x6f, 0x0f, - 0xdf, 0x9e, 0xfc, 0xdc, 0x0a, 0x3e, 0x62, 0x82, 0xf7, 0xff, 0xf1, 0xaa, 0x65, 0x0d, 0xbe, 0x3d, - 0x61, 0x00, 0x4f, 0xe1, 0xda, 0x5e, 0x64, 0xc9, 0x16, 0x6c, 0xd3, 0x76, 0x3c, 0xd6, 0x77, 0xec, - 0x01, 0x69, 0x34, 0x29, 0xea, 0x11, 0x64, 0xcf, 0xc6, 0x6f, 0x66, 0x4d, 0x50, 0x8f, 0x80, 0x5c, - 0xe4, 0x50, 0x8f, 0x60, 0xaf, 0xf8, 0xa9, 0x5c, 0xae, 0x1e, 0x97, 0xcb, 0x87, 0xc7, 0x47, 0xc7, - 0x87, 0x27, 0x95, 0x4a, 0xb1, 0x5a, 0x44, 0x65, 0x82, 0xcc, 0xcd, 0x86, 0xb8, 0xb9, 0xdd, 0xc5, - 0x90, 0xaa, 0xab, 0x48, 0x00, 0x54, 0xd1, 0x74, 0x17, 0xf1, 0xa7, 0xfd, 0xc2, 0x86, 0xe6, 0xc4, - 0x9a, 0x43, 0xf1, 0x43, 0xf8, 0xd2, 0xf0, 0xa5, 0xe1, 0x4b, 0xc3, 0x97, 0x86, 0x2f, 0x8d, 0xb2, - 0x7a, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x9b, 0x2a, 0x91, 0x43, 0x59, 0x3d, 0x38, - 0xaf, 0x70, 0x5e, 0xf7, 0x0a, 0xcb, 0xe0, 0x67, 0x67, 0x22, 0x18, 0xbd, 0x03, 0xfb, 0x72, 0x72, - 0x38, 0x94, 0x70, 0x28, 0xe1, 0x50, 0xc2, 0xa1, 0x84, 0x43, 0x49, 0x7e, 0x6e, 0x6f, 0x1d, 0xc7, - 0x62, 0xa6, 0xad, 0x23, 0xe8, 0xba, 0x98, 0x15, 0x53, 0x9d, 0xea, 0x16, 0x73, 0x35, 0xdb, 0x76, - 0x84, 0x39, 0x43, 0xa3, 0x34, 0x9d, 0xe6, 0xbc, 0xfe, 0x4f, 0x36, 0x32, 0xc7, 0xcb, 0xa4, 0xbb, - 0x03, 0x67, 0xcc, 0xec, 0xfe, 0xdc, 0x50, 0xce, 0xf4, 0xc7, 0xc1, 0xec, 0x3f, 0x97, 0xdf, 0x1e, - 0x98, 0x43, 0x6e, 0x78, 0xe6, 0x90, 0x7b, 0xfe, 0xa7, 0x83, 0x79, 0x19, 0x1f, 0xcf, 0x15, 0xcc, - 0x18, 0x3b, 0x16, 0xef, 0x3f, 0x1e, 0xd8, 0x8c, 0xdf, 0xfd, 0xbc, 0x75, 0x5c, 0xcf, 0xff, 0x74, - 0x60, 0x0e, 0xfe, 0x9e, 0xab, 0x22, 0x67, 0x22, 0x8c, 0xb1, 0xe3, 0x89, 0x83, 0x39, 0xbe, 0xf0, - 0x16, 0x7f, 0x2c, 0xb2, 0xf4, 0xd0, 0x84, 0x35, 0xb8, 0x27, 0x13, 0xfb, 0x1f, 0xdb, 0xf9, 0xd7, - 0x36, 0x4c, 0x21, 0x5c, 0x7e, 0x3b, 0x5b, 0x31, 0xba, 0x8e, 0xac, 0x1b, 0xe6, 0x46, 0x7b, 0xd6, - 0xa4, 0xc2, 0x3e, 0xb4, 0x67, 0xcd, 0x26, 0xac, 0x43, 0x7b, 0xd6, 0x48, 0xab, 0x46, 0xd6, 0x9e, - 0x35, 0xa0, 0x24, 0xe9, 0xfd, 0xf5, 0xe0, 0x23, 0xd0, 0x7a, 0xed, 0x45, 0x78, 0xed, 0xf0, 0xda, - 0xe1, 0xb5, 0xc3, 0x6b, 0x4f, 0x8e, 0xd7, 0x4e, 0xa5, 0xfe, 0xfd, 0x09, 0xe7, 0xcd, 0x48, 0x05, - 0x35, 0x57, 0xb0, 0x17, 0x68, 0xd6, 0x3d, 0x7f, 0x04, 0x62, 0xd1, 0xd5, 0x73, 0x77, 0x44, 0x6e, - 0x0e, 0x74, 0x9a, 0x85, 0x64, 0x98, 0x07, 0xdd, 0x66, 0x22, 0x31, 0xe6, 0x22, 0x31, 0x66, 0x23, - 0x31, 0xe6, 0x83, 0xd6, 0x8c, 0x10, 0x9b, 0x13, 0x7f, 0x95, 0xaf, 0x74, 0x28, 0xf8, 0x3d, 0xbd, - 0x95, 0xbf, 0x02, 0x68, 0xff, 0x58, 0x4f, 0xdd, 0xdd, 0x55, 0x25, 0xb0, 0x45, 0x41, 0xaf, 0x67, - 0x63, 0x97, 0xd1, 0xdb, 0x72, 0x42, 0xd1, 0x2e, 0x2c, 0xd8, 0x57, 0x6d, 0xc0, 0x65, 0x31, 0xbd, - 0x1e, 0xd0, 0x52, 0x04, 0x68, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0xc9, 0x2e, 0x68, 0xa1, 0xf6, - 0x85, 0xd7, 0x7d, 0x62, 0x8b, 0x69, 0x0c, 0xa4, 0x5d, 0x73, 0x8d, 0x67, 0x4f, 0xf2, 0x21, 0x97, - 0xd1, 0x95, 0xba, 0x8c, 0x4e, 0x12, 0x8c, 0x4f, 0xb2, 0x8c, 0x50, 0x52, 0x8c, 0x51, 0xe2, 0x8c, - 0x52, 0xe2, 0x8c, 0x53, 0xe2, 0x8c, 0x94, 0x1e, 0x63, 0xa5, 0xc9, 0x68, 0xe9, 0xf7, 0xb8, 0x03, - 0x7a, 0x63, 0xc2, 0x6d, 0x51, 0xac, 0xea, 0xd4, 0x19, 0x4b, 0x2b, 0x52, 0xd5, 0xf8, 0x08, 0x7a, - 0xf2, 0x7f, 0x5e, 0xff, 0xd2, 0xab, 0x33, 0xf7, 0x74, 0xe7, 0x07, 0x25, 0x0c, 0x5e, 0x04, 0x1e, - 0x47, 0x73, 0xfe, 0x50, 0xe0, 0x79, 0x12, 0x90, 0xd3, 0x91, 0x10, 0x75, 0xba, 0x2e, 0xc2, 0xe6, - 0x03, 0x44, 0xf8, 0x0d, 0x11, 0xae, 0x56, 0x2a, 0x47, 0x15, 0x88, 0x71, 0xb2, 0xb0, 0x88, 0xfe, - 0xd9, 0xbb, 0xef, 0xf2, 0xf1, 0xbe, 0x3a, 0xd2, 0x20, 0xf5, 0xdd, 0xa4, 0x6f, 0xa6, 0x0d, 0x34, - 0xdc, 0xa8, 0x83, 0x37, 0x00, 0x6f, 0x00, 0xde, 0x00, 0xbc, 0x01, 0x78, 0x83, 0x8c, 0xf0, 0x06, - 0x9f, 0x12, 0x40, 0x1b, 0x54, 0x40, 0x1b, 0x80, 0x36, 0x00, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x81, - 0x72, 0x11, 0x2e, 0x55, 0x40, 0x1a, 0x80, 0x34, 0x00, 0x69, 0x40, 0x4b, 0x1a, 0xdc, 0x2f, 0x4f, - 0x5f, 0x12, 0x58, 0x83, 0xc5, 0xb3, 0x80, 0x36, 0x00, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x01, 0x68, - 0x03, 0xd0, 0x06, 0x21, 0xf5, 0xc6, 0x2d, 0xb7, 0x4d, 0xf7, 0x31, 0x01, 0xbc, 0xc1, 0x89, 0xc6, - 0x47, 0x68, 0x32, 0xfb, 0x6e, 0x1e, 0xf8, 0x0f, 0xe2, 0x00, 0xc4, 0xc1, 0x9b, 0x5e, 0x57, 0x11, - 0x3e, 0x17, 0x88, 0x83, 0x74, 0x8b, 0x30, 0xe2, 0x0d, 0x40, 0x1d, 0x80, 0x3a, 0x20, 0x15, 0x73, - 0xf6, 0x20, 0x98, 0x3d, 0x20, 0x6c, 0x83, 0xb9, 0x15, 0xf2, 0xf9, 0x4f, 0x02, 0xda, 0x00, 0xb4, - 0x01, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, 0x84, 0xa5, 0x0d, 0xc8, 0x8b, 0xc6, 0x6e, - 0x33, 0x23, 0x44, 0x45, 0x64, 0xf3, 0x09, 0x5a, 0x9c, 0xf1, 0x0c, 0x99, 0x9b, 0x96, 0x7e, 0xd0, - 0xe2, 0x3f, 0x09, 0x40, 0x0b, 0x40, 0x0b, 0x40, 0x0b, 0x40, 0x0b, 0x40, 0x0b, 0x40, 0x0b, 0x40, - 0x0b, 0x40, 0x4b, 0x70, 0x8d, 0xc7, 0xa6, 0x2b, 0x78, 0x12, 0x30, 0xcb, 0xea, 0x41, 0x00, 0x59, - 0x00, 0x59, 0x00, 0x59, 0x00, 0x59, 0x00, 0x59, 0x00, 0x59, 0x00, 0x59, 0x00, 0x59, 0x82, 0x6b, - 0x2c, 0x5c, 0xd3, 0xf6, 0xb8, 0xe0, 0xf7, 0x09, 0x88, 0x2b, 0x7d, 0xf1, 0x2c, 0x00, 0x2e, 0x00, - 0x2e, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2e, 0x89, 0x07, 0x2e, 0x99, 0x2e, - 0x2f, 0x4a, 0xdc, 0xa5, 0x30, 0x30, 0xbf, 0xc6, 0xae, 0x85, 0xc1, 0x06, 0x79, 0xc1, 0xbf, 0xa2, - 0x68, 0x6d, 0xa8, 0x4f, 0xe0, 0xb2, 0xd5, 0x35, 0xe6, 0x4f, 0xf6, 0xa8, 0xa3, 0xec, 0x4b, 0xa1, - 0xc9, 0x3d, 0x51, 0x13, 0x82, 0xb8, 0x65, 0xcd, 0x39, 0xb7, 0xeb, 0x16, 0x9b, 0x61, 0x02, 0xaf, - 0x70, 0xba, 0x67, 0x4f, 0x2c, 0x8b, 0xb0, 0xe4, 0xfc, 0xb9, 0xf9, 0xa0, 0x6f, 0xf2, 0x96, 0x3b, - 0x60, 0x2e, 0x1b, 0x9c, 0x3d, 0x2e, 0xa7, 0xce, 0x94, 0x10, 0x6b, 0xd2, 0xc7, 0x49, 0xd7, 0xc3, - 0x05, 0xd2, 0x7e, 0x0a, 0xee, 0xa4, 0x2f, 0xec, 0x25, 0xe2, 0x3a, 0xbb, 0x1b, 0xf7, 0x3a, 0xfc, - 0xb6, 0x57, 0x1b, 0xf2, 0x4b, 0x73, 0xc8, 0x7b, 0x8d, 0xf1, 0x7d, 0xf9, 0xd2, 0x15, 0xac, 0x3d, - 0x7f, 0xdb, 0xde, 0xc5, 0xf2, 0x1d, 0x7b, 0xb5, 0xc1, 0xdf, 0x1d, 0x7e, 0xdb, 0x9a, 0x88, 0xb6, - 0xe3, 0x89, 0x5e, 0x67, 0xf6, 0x66, 0xbd, 0xeb, 0xc5, 0x6b, 0xd4, 0xfc, 0xb7, 0x40, 0x63, 0x66, - 0xfd, 0x47, 0x2d, 0x4f, 0x8d, 0x99, 0x37, 0xf4, 0x00, 0x4e, 0x6b, 0x97, 0xe6, 0x77, 0x29, 0x12, - 0xb5, 0x15, 0x14, 0x99, 0xed, 0xb9, 0xc1, 0x07, 0x7b, 0xcc, 0x1e, 0x8c, 0x1d, 0x6e, 0x8b, 0xbd, - 0xbe, 0x63, 0x39, 0xae, 0x22, 0x5d, 0x46, 0x83, 0x43, 0x48, 0x71, 0x07, 0x29, 0xce, 0xa0, 0xc1, - 0x15, 0xaa, 0x24, 0x8e, 0x48, 0xa9, 0x69, 0x54, 0x66, 0x0a, 0x21, 0x80, 0x3c, 0x93, 0xaf, 0x46, - 0xbd, 0xca, 0x57, 0x7e, 0x72, 0x47, 0x94, 0x2c, 0xd4, 0xaa, 0x85, 0x59, 0x8b, 0x10, 0xcb, 0x95, - 0x0c, 0x79, 0xfb, 0x27, 0x67, 0x24, 0x49, 0x12, 0xa0, 0x6a, 0xe7, 0x69, 0x77, 0x5c, 0xa2, 0xa6, - 0x92, 0xa1, 0x99, 0xe4, 0x48, 0x5e, 0x7c, 0x39, 0x91, 0x20, 0x23, 0x85, 0xb5, 0xa5, 0x76, 0xe5, - 0x91, 0xf2, 0xcf, 0xe5, 0x7f, 0x5e, 0x4d, 0x20, 0x49, 0xae, 0xe5, 0xf6, 0xab, 0x93, 0x7e, 0x97, - 0xaa, 0xe2, 0x6e, 0x54, 0xed, 0x5d, 0xa7, 0xaa, 0xbb, 0x4b, 0xe5, 0x77, 0x91, 0xca, 0xef, 0x16, - 0x95, 0xdf, 0x15, 0x26, 0xcb, 0x62, 0xc8, 0xee, 0x8f, 0x56, 0x58, 0x9a, 0x6b, 0xe9, 0x82, 0xb5, - 0x3a, 0x0e, 0xcb, 0xf1, 0x25, 0x6f, 0xba, 0x9a, 0x86, 0x98, 0xca, 0x82, 0x36, 0x54, 0x06, 0x63, - 0xd0, 0x04, 0x59, 0xa8, 0x0e, 0x9e, 0x20, 0x0b, 0x8a, 0x20, 0x0b, 0x76, 0x20, 0x0b, 0x62, 0x48, - 0xb6, 0x73, 0xa3, 0xaa, 0xa1, 0xe3, 0x42, 0xb1, 0xa8, 0x93, 0xc7, 0x35, 0xfd, 0xa5, 0x4a, 0x16, - 0xd5, 0xf6, 0xf5, 0x55, 0x1e, 0x83, 0x46, 0x11, 0x63, 0x46, 0x1b, 0x43, 0x46, 0x15, 0x23, 0x46, - 0x1e, 0x03, 0x46, 0x1e, 0xe3, 0x45, 0x1e, 0xc3, 0x95, 0x2e, 0xca, 0x5c, 0x75, 0x9f, 0xdb, 0xc2, - 0x82, 0x7b, 0x57, 0x2e, 0xc7, 0xab, 0xd3, 0xa9, 0x92, 0xea, 0x7f, 0xad, 0x2e, 0x15, 0x47, 0xd4, - 0x92, 0x85, 0xee, 0x52, 0x86, 0xe8, 0xea, 0x09, 0xc5, 0xa5, 0x0e, 0xb9, 0xd5, 0x16, 0x5a, 0xab, - 0x2d, 0x84, 0x56, 0x5b, 0xa8, 0x6c, 0xba, 0x2f, 0xc5, 0xc9, 0x42, 0x5c, 0xfd, 0x73, 0x67, 0x31, - 0x73, 0xe8, 0xb2, 0x21, 0xc5, 0xa1, 0x5b, 0xa1, 0xca, 0x63, 0x82, 0xb9, 0xda, 0x4b, 0x8e, 0xf9, - 0xe3, 0xc7, 0x45, 0xec, 0xe0, 0xc1, 0xc2, 0x10, 0xa4, 0xf5, 0xda, 0x5d, 0x21, 0xb2, 0x5c, 0xdd, - 0x8a, 0xd3, 0xd9, 0x64, 0x7f, 0x46, 0x98, 0x65, 0x98, 0x65, 0x98, 0x65, 0x98, 0x65, 0x98, 0xe5, - 0xdc, 0x9a, 0x65, 0xdf, 0x16, 0xc0, 0x32, 0x07, 0x16, 0x6b, 0x19, 0xb7, 0x46, 0x67, 0x98, 0x57, - 0x13, 0xc2, 0x2e, 0xc3, 0x2e, 0xc3, 0x2e, 0xc3, 0x2e, 0xc3, 0x2e, 0xe7, 0xd6, 0x2e, 0xaf, 0x4c, - 0x01, 0xcc, 0x72, 0x60, 0xad, 0x16, 0xb9, 0x88, 0x64, 0x46, 0x79, 0x31, 0x1d, 0x8d, 0x49, 0x2e, - 0xc2, 0x24, 0xc3, 0x24, 0xc3, 0x24, 0xc3, 0x24, 0x47, 0x5f, 0x35, 0xd5, 0x17, 0x88, 0xfe, 0x44, - 0xf3, 0x04, 0x63, 0x6e, 0x0f, 0x18, 0x5d, 0x2d, 0x99, 0xf5, 0xee, 0x94, 0x8b, 0xb9, 0xa9, 0xb2, - 0xaa, 0x49, 0xab, 0x06, 0x91, 0x57, 0x09, 0xd2, 0x51, 0x15, 0x48, 0x6f, 0x15, 0x20, 0x5d, 0x55, - 0x7f, 0xb4, 0x57, 0xf9, 0xd1, 0x5e, 0xd5, 0x47, 0x7b, 0x15, 0x9f, 0x6c, 0xd5, 0x7b, 0x20, 0xaf, - 0xca, 0xa3, 0xc1, 0x17, 0xd3, 0xe1, 0x93, 0x6d, 0xf2, 0xcd, 0x7e, 0xf3, 0x7b, 0x6e, 0x92, 0x3c, - 0x26, 0x3c, 0xff, 0xd3, 0xd2, 0x93, 0x5b, 0x98, 0xa9, 0xac, 0xa4, 0xbc, 0x13, 0x20, 0x6b, 0x9a, - 0x08, 0xa5, 0x80, 0x34, 0x53, 0x44, 0x2a, 0x01, 0x4e, 0x00, 0x4e, 0x00, 0x4e, 0x00, 0x4e, 0x00, - 0x4e, 0x6c, 0x38, 0xb7, 0x13, 0x6e, 0x8b, 0xa3, 0x92, 0x06, 0x34, 0x41, 0x09, 0x26, 0x3a, 0xa6, - 0x7d, 0xc7, 0xc8, 0x7b, 0x41, 0x6b, 0xa8, 0x68, 0xa7, 0xb3, 0xd7, 0xb3, 0xee, 0x1a, 0xbf, 0xab, - 0x46, 0xb8, 0xba, 0xe6, 0x4f, 0x40, 0xd3, 0x5b, 0x1d, 0x75, 0xae, 0x75, 0xf6, 0x66, 0x4e, 0x8a, - 0xc8, 0x95, 0x4b, 0x27, 0xe5, 0x93, 0xea, 0x71, 0xe9, 0xa4, 0x92, 0x63, 0xd9, 0xcb, 0x68, 0x9d, - 0xca, 0x2e, 0x9c, 0xc8, 0x10, 0x4e, 0xe4, 0x68, 0x34, 0xb1, 0xb9, 0x78, 0xd4, 0x45, 0x51, 0xbf, - 0x7e, 0x00, 0x38, 0x96, 0x70, 0x2c, 0xe1, 0x58, 0xc2, 0xb1, 0x84, 0x63, 0x49, 0x7e, 0x6e, 0xc1, - 0x53, 0xbf, 0xf8, 0xbd, 0xb2, 0x4b, 0x9c, 0x79, 0xfe, 0xe7, 0x47, 0x50, 0xd5, 0xd1, 0x96, 0x9c, - 0x2c, 0x77, 0x27, 0x20, 0xd3, 0x44, 0x39, 0x3c, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x15, - 0xc0, 0x15, 0x1b, 0xce, 0x2d, 0x1f, 0x1b, 0xe6, 0x60, 0xe0, 0x32, 0xcf, 0xd3, 0x01, 0x2d, 0x4e, - 0x08, 0xe7, 0x5c, 0xae, 0x71, 0xe6, 0x49, 0xeb, 0xe7, 0x9d, 0xbd, 0x2f, 0x6b, 0xd8, 0xdb, 0xc0, - 0x1e, 0x7f, 0xd2, 0x30, 0x77, 0xdb, 0x14, 0x82, 0xb9, 0x36, 0xf9, 0x76, 0xfb, 0x0f, 0xf0, 0xd7, + 0x96, 0x6f, 0x13, 0x2b, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x95, 0x17, 0x8d, 0x95, 0xa7, 0x57, + 0xaa, 0xa9, 0xc5, 0xb4, 0xb7, 0x88, 0xf6, 0x7a, 0xa6, 0x1e, 0x9c, 0x8e, 0xbe, 0x46, 0x96, 0x5a, + 0xa7, 0x96, 0xbd, 0xb5, 0x93, 0x54, 0xcb, 0x21, 0xf5, 0x6d, 0x90, 0xf9, 0x4e, 0x4f, 0xb2, 0x1d, + 0x9e, 0xe8, 0xec, 0x44, 0x67, 0xa7, 0x94, 0xb5, 0x86, 0x9c, 0x75, 0x76, 0x12, 0x6a, 0xf6, 0x22, + 0xdb, 0xe4, 0x85, 0x6e, 0x4e, 0x69, 0x8a, 0x8b, 0x74, 0x73, 0xca, 0x00, 0xe3, 0xa5, 0x49, 0xf5, + 0x16, 0x4d, 0xaa, 0xc9, 0x88, 0x25, 0x23, 0x36, 0x2f, 0x7a, 0x0b, 0x4d, 0xaa, 0x51, 0x57, 0x4c, + 0x78, 0xd0, 0x13, 0x55, 0x45, 0xa2, 0x72, 0x84, 0x86, 0x94, 0xf1, 0x86, 0xe6, 0xa9, 0xd0, 0x6d, + 0xe8, 0x36, 0x74, 0xdb, 0x8e, 0x3f, 0x6d, 0xc6, 0xaf, 0x16, 0x3e, 0xf0, 0xd0, 0x5f, 0xe8, 0x2f, + 0xf4, 0x57, 0x16, 0x40, 0xa6, 0x03, 0x52, 0x10, 0xc6, 0x12, 0xd8, 0x98, 0x04, 0x1d, 0xf3, 0xe0, + 0x63, 0x1a, 0x84, 0xac, 0x81, 0x91, 0x35, 0x50, 0xb2, 0x02, 0x4e, 0xb2, 0x20, 0x25, 0x0c, 0x56, + 0xe6, 0x7c, 0xf6, 0xa5, 0xfd, 0x4e, 0x41, 0x98, 0xa5, 0x5f, 0x44, 0x17, 0xc6, 0x7a, 0x0c, 0xd1, + 0x85, 0xc9, 0x96, 0x9e, 0x82, 0x30, 0xf9, 0xd8, 0x03, 0x04, 0x19, 0x66, 0xe5, 0x0c, 0x51, 0x10, + 0x06, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, 0x0a, 0xc2, 0x88, 0xbc, 0x2b, + 0x05, 0x61, 0x30, 0x07, 0x98, 0x03, 0xcc, 0x41, 0xde, 0xcd, 0x01, 0x05, 0x61, 0x90, 0x90, 0x34, + 0x97, 0x97, 0x82, 0x30, 0xa5, 0x95, 0x90, 0x28, 0x08, 0x83, 0x72, 0x94, 0x63, 0x12, 0x4f, 0x41, + 0x18, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0x41, 0x98, 0x22, 0xf3, 0x6d, 0xae, + 0x6c, 0x4b, 0xcb, 0xb7, 0x29, 0x08, 0x03, 0xe3, 0xb6, 0xcf, 0xb8, 0x29, 0x08, 0xa3, 0x9a, 0xed, + 0x42, 0xd3, 0x54, 0x15, 0xfa, 0x42, 0xd3, 0xd4, 0xac, 0xfa, 0x3d, 0xc4, 0xc8, 0xa7, 0xe2, 0xd7, + 0x10, 0x23, 0x2f, 0x70, 0x18, 0x88, 0x91, 0x47, 0x74, 0x41, 0x74, 0x41, 0x74, 0x31, 0xb5, 0xdf, + 0x89, 0x91, 0x47, 0x70, 0x41, 0x70, 0x41, 0x70, 0x51, 0x5a, 0x7a, 0x62, 0xe4, 0xd1, 0x5d, 0x0c, + 0x9e, 0x21, 0x62, 0xe4, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x3e, 0xd6, 0x7e, 0x27, 0x46, + 0x5e, 0xe4, 0x5d, 0x89, 0x91, 0xc7, 0x1c, 0x60, 0x0e, 0x30, 0x07, 0x79, 0x37, 0x07, 0xc4, 0xc8, + 0x23, 0x21, 0x69, 0x2e, 0x2f, 0x31, 0xf2, 0xa5, 0x95, 0x90, 0x88, 0x91, 0x47, 0x39, 0xca, 0x31, + 0x89, 0x27, 0x46, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x17, 0x8d, 0xd4, 0x13, 0x23, 0x5f, 0x64, + 0xbe, 0xcd, 0x95, 0x6d, 0x69, 0xf9, 0x36, 0x31, 0xf2, 0x30, 0x6e, 0xfb, 0x8c, 0x9b, 0x18, 0x79, + 0x91, 0x18, 0x79, 0x9a, 0xa5, 0x9a, 0x5a, 0x44, 0xf3, 0x8b, 0x67, 0xb1, 0x49, 0x6a, 0x96, 0xba, + 0xa3, 0x6a, 0xf5, 0x02, 0x95, 0xc8, 0x9f, 0x10, 0xcd, 0x9b, 0x10, 0x6f, 0x22, 0x52, 0xa5, 0x89, + 0x48, 0x06, 0x7c, 0x59, 0x9a, 0x88, 0xc4, 0x7f, 0x23, 0x7a, 0xf6, 0x6d, 0xd1, 0xb3, 0x8f, 0x84, + 0x2c, 0x12, 0xb2, 0xf2, 0x42, 0xf7, 0xe9, 0xd9, 0x07, 0xc9, 0x37, 0x49, 0xf2, 0x05, 0x9c, 0xb2, + 0xa7, 0x9c, 0x34, 0xe2, 0x16, 0x5a, 0x0f, 0x23, 0xeb, 0x50, 0xd1, 0xf2, 0x34, 0x92, 0xf8, 0x55, + 0x6a, 0x6b, 0x9d, 0x7c, 0xa5, 0x14, 0x56, 0xa9, 0xd2, 0xae, 0x3e, 0x74, 0x03, 0xc7, 0x7b, 0xe8, + 0xaa, 0xaf, 0xd0, 0x14, 0xde, 0x66, 0xc6, 0x52, 0xdc, 0x2f, 0x7a, 0xde, 0x92, 0x36, 0x79, 0x91, + 0x20, 0x2b, 0x72, 0xe4, 0x44, 0x8a, 0x8c, 0x88, 0x93, 0x0f, 0x71, 0xb2, 0x21, 0x4a, 0x2e, 0xec, + 0x22, 0x9c, 0xae, 0x77, 0x43, 0x1f, 0x54, 0x24, 0x0c, 0x24, 0x8c, 0xb2, 0x48, 0x18, 0xf4, 0x41, + 0x45, 0x52, 0x40, 0x52, 0x28, 0x9f, 0xa4, 0x40, 0x8d, 0x17, 0xc3, 0xba, 0xa5, 0x31, 0xb0, 0x31, + 0x09, 0x3a, 0xe6, 0xc1, 0xc7, 0x34, 0x08, 0x59, 0x03, 0x23, 0x6b, 0xa0, 0x64, 0x05, 0x9c, 0x64, + 0x41, 0x4a, 0x18, 0xac, 0xa6, 0x33, 0x40, 0x8d, 0x97, 0x95, 0x43, 0x13, 0x30, 0x68, 0x1f, 0xd6, + 0x97, 0x1e, 0x43, 0xc0, 0x60, 0xb2, 0xa5, 0xa7, 0xc6, 0x4b, 0x3e, 0xf6, 0x00, 0x71, 0x83, 0x59, + 0x39, 0x43, 0xd4, 0x78, 0x81, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, 0x9d, 0x1a, + 0x2f, 0x22, 0xef, 0x4a, 0x8d, 0x17, 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, 0x8d, + 0x17, 0x24, 0x24, 0xcd, 0xe5, 0xa5, 0xc6, 0x4b, 0x69, 0x25, 0x24, 0x6a, 0xbc, 0xa0, 0x1c, 0xe5, + 0x98, 0xc4, 0x53, 0xe3, 0x05, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x17, 0x8d, 0xd4, 0x53, 0xe3, 0xa5, + 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, 0x6d, 0x6a, 0xbc, 0xc0, 0xb8, 0xed, 0x33, 0x6e, 0x6a, + 0xbc, 0x24, 0xc8, 0x5c, 0x7b, 0xce, 0xad, 0xa2, 0x0b, 0xaa, 0x12, 0x79, 0xa1, 0x0b, 0x6a, 0x56, + 0xbd, 0x1e, 0x22, 0xe4, 0x53, 0xf1, 0x6a, 0x88, 0x90, 0x17, 0x38, 0x0c, 0x44, 0xc8, 0x23, 0xb9, + 0x20, 0xb9, 0x20, 0xb9, 0x98, 0xda, 0xef, 0x44, 0xc8, 0x23, 0xb7, 0x20, 0xb7, 0x20, 0xb7, 0x28, + 0x2d, 0x3d, 0x11, 0xf2, 0xa8, 0x2e, 0x06, 0xcf, 0x10, 0x11, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, + 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x13, 0x21, 0x2f, 0xf2, 0xae, 0x44, 0xc8, 0x63, 0x0e, 0x30, 0x07, + 0x98, 0x83, 0xbc, 0x9b, 0x03, 0x22, 0xe4, 0x91, 0x90, 0x34, 0x97, 0x97, 0x08, 0xf9, 0xd2, 0x4a, + 0x48, 0x44, 0xc8, 0xa3, 0x1c, 0xe5, 0x98, 0xc4, 0x13, 0x21, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, + 0x8b, 0x46, 0xea, 0x89, 0x90, 0x2f, 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, 0x9b, 0x08, 0x79, + 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0x84, 0xbc, 0x40, 0x84, 0x3c, 0x3d, 0x50, 0x4d, 0x2d, 0xa1, 0xe9, + 0xa5, 0xb3, 0xd4, 0x01, 0xf5, 0xb4, 0xfa, 0xb5, 0x1b, 0xd4, 0x1f, 0xba, 0x41, 0x26, 0xfa, 0x9f, + 0x96, 0xba, 0x3f, 0x93, 0x76, 0x07, 0xa1, 0xc4, 0x6b, 0x9e, 0xfd, 0xde, 0x4c, 0x0f, 0xdd, 0x76, + 0x4f, 0xaa, 0x37, 0xd3, 0x70, 0x2c, 0x7a, 0x33, 0xd1, 0x9b, 0x29, 0x25, 0xdd, 0x80, 0xde, 0x4c, + 0xf4, 0x66, 0x4a, 0x4f, 0x44, 0xa4, 0x37, 0x13, 0xbd, 0x99, 0xd6, 0x0f, 0x44, 0x6f, 0x26, 0x89, + 0x01, 0xc9, 0x3c, 0x25, 0xf3, 0x34, 0x5f, 0xba, 0x06, 0x99, 0xa7, 0x96, 0x44, 0x4f, 0xae, 0x32, + 0xad, 0x82, 0x90, 0x35, 0x30, 0xb2, 0x06, 0x4a, 0x56, 0xc0, 0x49, 0x16, 0xa4, 0x84, 0xc1, 0x6a, + 0x3a, 0x03, 0x64, 0x9e, 0xae, 0x1c, 0x9a, 0x6b, 0x4c, 0xfb, 0xb0, 0xbe, 0xf4, 0x18, 0xae, 0x31, + 0x93, 0x2d, 0x3d, 0x99, 0xa7, 0xf9, 0xd8, 0x03, 0xdc, 0x66, 0x66, 0xe5, 0x0c, 0x91, 0x79, 0x0a, + 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xb1, 0xf6, 0x3b, 0x99, 0xa7, 0x22, 0xef, 0x4a, 0xe6, + 0x29, 0xe6, 0x00, 0x73, 0x80, 0x39, 0xc8, 0xbb, 0x39, 0x20, 0xf3, 0x14, 0x09, 0x49, 0x73, 0x79, + 0xc9, 0x3c, 0x2d, 0xad, 0x84, 0x44, 0xe6, 0x29, 0xca, 0x51, 0x8e, 0x49, 0x3c, 0x99, 0xa7, 0x90, + 0x7a, 0x48, 0x3d, 0xa4, 0xbe, 0x68, 0xa4, 0x9e, 0xcc, 0xd3, 0x22, 0xf3, 0x6d, 0xae, 0x6c, 0x4b, + 0xcb, 0xb7, 0xc9, 0x3c, 0x85, 0x71, 0xdb, 0x67, 0xdc, 0x64, 0x9e, 0x26, 0xce, 0x5a, 0x7b, 0xe8, + 0xb6, 0x7b, 0xf4, 0x66, 0x52, 0x22, 0x2f, 0xf4, 0x66, 0xca, 0xaa, 0xd7, 0x43, 0x84, 0x7c, 0x2a, + 0x5e, 0x0d, 0x11, 0xf2, 0x02, 0x87, 0x81, 0x08, 0x79, 0x24, 0x17, 0x24, 0x17, 0x24, 0x17, 0x53, + 0xfb, 0x9d, 0x08, 0x79, 0xe4, 0x16, 0xe4, 0x16, 0xe4, 0x16, 0xa5, 0xa5, 0x27, 0x42, 0x1e, 0xd5, + 0xc5, 0xe0, 0x19, 0x22, 0x42, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, + 0x22, 0xe4, 0x45, 0xde, 0x95, 0x08, 0x79, 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, + 0x84, 0x3c, 0x12, 0x92, 0xe6, 0xf2, 0x12, 0x21, 0x5f, 0x5a, 0x09, 0x89, 0x08, 0x79, 0x94, 0xa3, + 0x1c, 0x93, 0x78, 0x22, 0xe4, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x7d, 0xd1, 0x48, 0x3d, 0x11, 0xf2, + 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, 0x96, 0x6f, 0x13, 0x21, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, + 0x90, 0x17, 0x88, 0x90, 0xa7, 0x37, 0x93, 0xa9, 0x25, 0x34, 0xbd, 0x74, 0x36, 0x7b, 0x33, 0x7d, + 0xed, 0xb6, 0x7b, 0xf4, 0x66, 0xca, 0xce, 0x46, 0xb0, 0xd1, 0x9b, 0x69, 0xb0, 0xe6, 0x99, 0xee, + 0xcd, 0xb4, 0x37, 0x98, 0x0d, 0xbf, 0xfb, 0x50, 0x73, 0xee, 0xfb, 0xed, 0xc8, 0x6f, 0xba, 0xbd, + 0x48, 0xa0, 0x4b, 0xd3, 0xaa, 0x51, 0xe9, 0xd7, 0x44, 0xbf, 0xa6, 0x94, 0xb4, 0x04, 0xfa, 0x35, + 0xd1, 0xaf, 0x29, 0x3d, 0x61, 0x91, 0x7e, 0x4d, 0xf4, 0x6b, 0x5a, 0x3f, 0x10, 0xfd, 0x9a, 0x24, + 0x06, 0x24, 0x1b, 0x95, 0x6c, 0xd4, 0x7c, 0x69, 0x1d, 0x64, 0xa3, 0x5a, 0x12, 0x42, 0xb9, 0xde, + 0xb4, 0x0a, 0x42, 0xd6, 0xc0, 0xc8, 0x1a, 0x28, 0x59, 0x01, 0x27, 0x59, 0x90, 0x12, 0x06, 0xab, + 0xe9, 0x0c, 0x90, 0x8d, 0xba, 0x72, 0x68, 0xae, 0x36, 0xed, 0xc3, 0xfa, 0xd2, 0x63, 0xb8, 0xda, + 0x4c, 0xb6, 0xf4, 0x64, 0xa3, 0xe6, 0x63, 0x0f, 0x70, 0xc3, 0x99, 0x95, 0x33, 0x44, 0x36, 0x2a, + 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0xc7, 0xda, 0xef, 0x64, 0xa3, 0x8a, 0xbc, 0x2b, 0xd9, + 0xa8, 0x98, 0x03, 0xcc, 0x01, 0xe6, 0x20, 0xef, 0xe6, 0x80, 0x6c, 0x54, 0x24, 0x24, 0xcd, 0xe5, + 0x25, 0x1b, 0xb5, 0xb4, 0x12, 0x12, 0xd9, 0xa8, 0x28, 0x47, 0x39, 0x26, 0xf1, 0x64, 0xa3, 0x42, + 0xea, 0x21, 0xf5, 0x90, 0xfa, 0xa2, 0x91, 0x7a, 0xb2, 0x51, 0x8b, 0xcc, 0xb7, 0xb9, 0xb2, 0x2d, + 0x2d, 0xdf, 0x26, 0x1b, 0x15, 0xc6, 0x6d, 0x9f, 0x71, 0x93, 0x8d, 0x9a, 0x24, 0x93, 0x6d, 0x45, + 0x96, 0x15, 0x9d, 0x9b, 0x94, 0x68, 0x0c, 0x9d, 0x9b, 0xb2, 0xea, 0xff, 0x10, 0x2b, 0x9f, 0x8a, + 0x7f, 0x43, 0xac, 0xbc, 0xc0, 0x61, 0x20, 0x56, 0x1e, 0xf1, 0x05, 0xf1, 0x05, 0xf1, 0xc5, 0xd4, + 0x7e, 0x27, 0x56, 0x1e, 0xe1, 0x05, 0xe1, 0x05, 0xe1, 0x45, 0x69, 0xe9, 0x89, 0x95, 0x47, 0x7f, + 0x31, 0x78, 0x86, 0x88, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, 0x9d, + 0x58, 0x79, 0x91, 0x77, 0x25, 0x56, 0x1e, 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, 0x10, + 0x2b, 0x8f, 0x84, 0xa4, 0xb9, 0xbc, 0xc4, 0xca, 0x97, 0x56, 0x42, 0x22, 0x56, 0x1e, 0xe5, 0x28, + 0xc7, 0x24, 0x9e, 0x58, 0x79, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0xac, 0x7c, + 0x91, 0xf9, 0x36, 0x57, 0xb6, 0xa5, 0xe5, 0xdb, 0xc4, 0xca, 0xc3, 0xb8, 0xed, 0x33, 0x6e, 0x62, + 0xe5, 0x45, 0x63, 0xe5, 0xe9, 0xe1, 0x64, 0x6a, 0x31, 0xed, 0x2d, 0xa2, 0xad, 0x6e, 0x4e, 0x7b, + 0x5f, 0xbb, 0xc1, 0x49, 0xf7, 0xa1, 0xf6, 0x79, 0xf2, 0x2d, 0x68, 0xeb, 0x94, 0xc5, 0xbd, 0x61, + 0xba, 0xc1, 0xd3, 0xd2, 0x36, 0xc8, 0x49, 0xa7, 0xa7, 0x7e, 0x20, 0xdf, 0xe7, 0x69, 0x32, 0x26, + 0x5d, 0x9e, 0xe8, 0xf2, 0x94, 0x92, 0xee, 0x40, 0x97, 0x27, 0xba, 0x3c, 0xa5, 0x27, 0x42, 0xd2, + 0xe5, 0x89, 0x2e, 0x4f, 0xeb, 0x07, 0xa2, 0xcb, 0x93, 0xc4, 0x80, 0x64, 0xae, 0x92, 0xb9, 0x9a, + 0x2f, 0x5d, 0x84, 0xcc, 0x55, 0x4b, 0xa2, 0x29, 0x57, 0xa1, 0x56, 0x41, 0xc8, 0x1a, 0x18, 0x59, + 0x03, 0x25, 0x2b, 0xe0, 0x24, 0x0b, 0x52, 0xc2, 0x60, 0x35, 0x9d, 0x01, 0x32, 0x57, 0x57, 0x0e, + 0xcd, 0x35, 0xa8, 0x7d, 0x58, 0x5f, 0x7a, 0x0c, 0xd7, 0xa0, 0xc9, 0x96, 0x9e, 0xcc, 0xd5, 0x7c, + 0xec, 0x01, 0x6e, 0x43, 0xb3, 0x72, 0x86, 0xc8, 0x5c, 0x85, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, + 0xf9, 0x58, 0xfb, 0x9d, 0xcc, 0x55, 0x91, 0x77, 0x25, 0x73, 0x15, 0x73, 0x80, 0x39, 0xc0, 0x1c, + 0xe4, 0xdd, 0x1c, 0x90, 0xb9, 0x8a, 0x84, 0xa4, 0xb9, 0xbc, 0x64, 0xae, 0x96, 0x56, 0x42, 0x22, + 0x73, 0x15, 0xe5, 0x28, 0xc7, 0x24, 0x9e, 0xcc, 0x55, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x5f, 0x34, + 0x52, 0x4f, 0xe6, 0x6a, 0x91, 0xf9, 0x36, 0x57, 0xb6, 0xa5, 0xe5, 0xdb, 0x64, 0xae, 0xc2, 0xb8, + 0xed, 0x33, 0x6e, 0x32, 0x57, 0xd5, 0x12, 0xdb, 0xc6, 0x39, 0x56, 0xf4, 0x78, 0x52, 0x22, 0x31, + 0xf4, 0x78, 0xca, 0xaa, 0xf7, 0x43, 0xa4, 0x7c, 0x2a, 0xde, 0x0d, 0x91, 0xf2, 0x02, 0x87, 0x81, + 0x48, 0x79, 0xa4, 0x17, 0xa4, 0x17, 0xa4, 0x17, 0x53, 0xfb, 0x9d, 0x48, 0x79, 0x64, 0x17, 0x64, + 0x17, 0x64, 0x17, 0xa5, 0xa5, 0x27, 0x52, 0x1e, 0xf5, 0xc5, 0xe0, 0x19, 0x22, 0x52, 0x1e, 0x2a, + 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x63, 0xed, 0x77, 0x22, 0xe5, 0x45, 0xde, 0x95, 0x48, 0x79, + 0xcc, 0x01, 0xe6, 0x00, 0x73, 0x90, 0x77, 0x73, 0x40, 0xa4, 0x3c, 0x12, 0x92, 0xe6, 0xf2, 0x12, + 0x29, 0x5f, 0x5a, 0x09, 0x89, 0x48, 0x79, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0x22, 0xe5, 0x21, 0xf5, + 0x90, 0x7a, 0x48, 0x7d, 0xd1, 0x48, 0x3d, 0x91, 0xf2, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, 0x96, + 0x6f, 0x13, 0x29, 0x0f, 0xe3, 0xb6, 0xcf, 0xb8, 0x89, 0x94, 0x17, 0x8c, 0x94, 0xa7, 0xc3, 0x93, + 0xa9, 0xa5, 0xb4, 0xb5, 0x84, 0xb6, 0xfb, 0x3b, 0x7d, 0x09, 0xe8, 0xee, 0x94, 0xb5, 0xee, 0x4e, + 0x7a, 0x8d, 0x86, 0x54, 0xb7, 0x40, 0x2e, 0x3a, 0x3b, 0x1d, 0xcc, 0xb4, 0xbe, 0x92, 0xeb, 0xed, + 0x74, 0xa0, 0xdd, 0x50, 0x8b, 0xee, 0x4e, 0x26, 0x94, 0x0b, 0xba, 0x3b, 0x19, 0x04, 0x40, 0xba, + 0x3b, 0xd9, 0x96, 0x27, 0xe9, 0xee, 0x44, 0x77, 0x27, 0xcb, 0x2c, 0x98, 0xee, 0x4e, 0x59, 0x38, + 0xf8, 0x26, 0x00, 0xc0, 0x1c, 0x10, 0x98, 0x02, 0x04, 0xe3, 0xc0, 0x60, 0x1c, 0x20, 0x8c, 0x02, + 0x45, 0x36, 0x15, 0x11, 0x72, 0x56, 0x2d, 0xc9, 0xa5, 0x5c, 0x82, 0x5a, 0x05, 0x21, 0x6b, 0x60, + 0x64, 0x0d, 0x94, 0xac, 0x80, 0x93, 0x2c, 0x48, 0x09, 0x83, 0xd5, 0x74, 0x06, 0xc8, 0x59, 0x5d, + 0x39, 0x34, 0x17, 0xa0, 0xf6, 0x61, 0x7d, 0xe9, 0x31, 0x5c, 0x80, 0x26, 0x5b, 0x7a, 0x72, 0x56, + 0xf3, 0xb1, 0x07, 0xb8, 0x07, 0xcd, 0xca, 0x19, 0x22, 0x67, 0x15, 0x2a, 0x0f, 0x95, 0x87, 0xca, + 0x43, 0xe5, 0x63, 0xed, 0x77, 0x72, 0x56, 0x45, 0xde, 0x95, 0x9c, 0x55, 0xcc, 0x01, 0xe6, 0x00, + 0x73, 0x90, 0x77, 0x73, 0x40, 0xce, 0x2a, 0x12, 0x92, 0xe6, 0xf2, 0x92, 0xb3, 0x5a, 0x5a, 0x09, + 0x89, 0x9c, 0x55, 0x94, 0xa3, 0x1c, 0x93, 0x78, 0x72, 0x56, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x7d, + 0xd1, 0x48, 0x3d, 0x39, 0xab, 0x45, 0xe6, 0xdb, 0x5c, 0xd9, 0x96, 0x96, 0x6f, 0x93, 0xb3, 0x0a, + 0xe3, 0xb6, 0xcf, 0xb8, 0xc9, 0x59, 0x55, 0x49, 0x6c, 0x9b, 0xc9, 0xb2, 0xa2, 0xbf, 0x93, 0x12, + 0x8d, 0xa1, 0xbf, 0x53, 0x56, 0xfd, 0x1f, 0x62, 0xe5, 0x53, 0xf1, 0x6f, 0x88, 0x95, 0x17, 0x38, + 0x0c, 0xc4, 0xca, 0x23, 0xbe, 0x20, 0xbe, 0x20, 0xbe, 0x98, 0xda, 0xef, 0xc4, 0xca, 0x23, 0xbc, + 0x20, 0xbc, 0x20, 0xbc, 0x28, 0x2d, 0x3d, 0xb1, 0xf2, 0xe8, 0x2f, 0x06, 0xcf, 0x10, 0xb1, 0xf2, + 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x13, 0x2b, 0x2f, 0xf2, 0xae, 0xc4, + 0xca, 0x63, 0x0e, 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, 0x62, 0xe5, 0x91, 0x90, 0x34, 0x97, + 0x97, 0x58, 0xf9, 0xd2, 0x4a, 0x48, 0xc4, 0xca, 0xa3, 0x1c, 0xe5, 0x98, 0xc4, 0x13, 0x2b, 0x0f, + 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x8b, 0x46, 0xea, 0x89, 0x95, 0x2f, 0x32, 0xdf, 0xe6, 0xca, 0xb6, + 0xb4, 0x7c, 0x9b, 0x58, 0x79, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0xac, 0xbc, 0x68, 0xac, 0x3c, 0x1d, + 0x9e, 0x4c, 0x2d, 0xa6, 0xbd, 0x45, 0xb4, 0xdc, 0xe3, 0xe9, 0xe0, 0xf3, 0xe4, 0x5b, 0xd0, 0xe5, + 0x29, 0x8b, 0x7b, 0xc3, 0x52, 0x9f, 0xa7, 0xe7, 0x6d, 0x90, 0x93, 0x4e, 0x4f, 0x93, 0x36, 0x58, + 0x92, 0x7d, 0x9e, 0xf4, 0x5a, 0x6b, 0xd1, 0xe5, 0xc9, 0x84, 0x7e, 0x41, 0x97, 0x27, 0x83, 0x00, + 0x48, 0x97, 0x27, 0xdb, 0x22, 0x25, 0x5d, 0x9e, 0xe8, 0xf2, 0x64, 0x99, 0x09, 0xd3, 0xe5, 0x29, + 0x0b, 0x07, 0xdf, 0x04, 0x00, 0x98, 0x03, 0x02, 0x53, 0x80, 0x60, 0x1c, 0x18, 0x8c, 0x03, 0x84, + 0x51, 0xa0, 0xc8, 0xa6, 0x2e, 0x42, 0xe6, 0xaa, 0x25, 0xd1, 0x94, 0xab, 0x50, 0xab, 0x20, 0x64, + 0x0d, 0x8c, 0xac, 0x81, 0x92, 0x15, 0x70, 0x92, 0x05, 0x29, 0x61, 0xb0, 0x9a, 0xce, 0x00, 0x99, + 0xab, 0x2b, 0x87, 0xe6, 0x1a, 0xd4, 0x3e, 0xac, 0x2f, 0x3d, 0x86, 0x6b, 0xd0, 0x64, 0x4b, 0x4f, + 0xe6, 0x6a, 0x3e, 0xf6, 0x00, 0xb7, 0xa1, 0x59, 0x39, 0x43, 0x64, 0xae, 0x42, 0xe5, 0xa1, 0xf2, + 0x50, 0x79, 0xa8, 0x7c, 0xac, 0xfd, 0x4e, 0xe6, 0xaa, 0xc8, 0xbb, 0x92, 0xb9, 0x8a, 0x39, 0xc0, + 0x1c, 0x60, 0x0e, 0xf2, 0x6e, 0x0e, 0xc8, 0x5c, 0x45, 0x42, 0xd2, 0x5c, 0x5e, 0x32, 0x57, 0x4b, + 0x2b, 0x21, 0x91, 0xb9, 0x8a, 0x72, 0x94, 0x63, 0x12, 0x4f, 0xe6, 0x2a, 0xa4, 0x1e, 0x52, 0x0f, + 0xa9, 0x2f, 0x1a, 0xa9, 0x27, 0x73, 0xb5, 0xc8, 0x7c, 0x9b, 0x2b, 0xdb, 0xd2, 0xf2, 0x6d, 0x32, + 0x57, 0x61, 0xdc, 0xf6, 0x19, 0x37, 0x99, 0xab, 0x6a, 0x89, 0x6d, 0xe3, 0x1c, 0x2b, 0x7a, 0x3c, + 0x29, 0x91, 0x18, 0x7a, 0x3c, 0x65, 0xd5, 0xfb, 0x21, 0x52, 0x3e, 0x15, 0xef, 0x86, 0x48, 0x79, + 0x81, 0xc3, 0x40, 0xa4, 0x3c, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x8b, 0xa9, 0xfd, 0x4e, 0xa4, 0x3c, + 0xb2, 0x0b, 0xb2, 0x0b, 0xb2, 0x8b, 0xd2, 0xd2, 0x13, 0x29, 0x8f, 0xfa, 0x62, 0xf0, 0x0c, 0x11, + 0x29, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xb1, 0xf6, 0x3b, 0x91, 0xf2, 0x22, 0xef, + 0x4a, 0xa4, 0x3c, 0xe6, 0x00, 0x73, 0x80, 0x39, 0xc8, 0xbb, 0x39, 0x20, 0x52, 0x1e, 0x09, 0x49, + 0x73, 0x79, 0x89, 0x94, 0x2f, 0xad, 0x84, 0x44, 0xa4, 0x3c, 0xca, 0x51, 0x8e, 0x49, 0x3c, 0x91, + 0xf2, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0xbe, 0x68, 0xa4, 0x9e, 0x48, 0xf9, 0x22, 0xf3, 0x6d, 0xae, + 0x6c, 0x4b, 0xcb, 0xb7, 0x89, 0x94, 0x87, 0x71, 0xdb, 0x67, 0xdc, 0x44, 0xca, 0x0b, 0x46, 0xca, + 0xd3, 0xe1, 0xc9, 0xd4, 0x52, 0xda, 0x5a, 0x42, 0xdb, 0xfd, 0x9d, 0xbe, 0x04, 0x74, 0x77, 0xca, + 0x5a, 0x77, 0x27, 0xbd, 0x46, 0x43, 0xaa, 0x5b, 0x20, 0xcb, 0x9d, 0x9d, 0x7a, 0x61, 0xe4, 0x39, + 0xdd, 0x4e, 0xdb, 0x6f, 0x3e, 0x0e, 0xa6, 0xa8, 0xa6, 0xdf, 0xd7, 0x69, 0x69, 0x44, 0xba, 0x3a, + 0xd1, 0xd5, 0x29, 0x25, 0xa5, 0x81, 0xae, 0x4e, 0x74, 0x75, 0x4a, 0x4f, 0x76, 0xa4, 0xab, 0x13, + 0x5d, 0x9d, 0xd6, 0x0f, 0x44, 0x57, 0x27, 0x89, 0x01, 0xc9, 0x55, 0x25, 0x57, 0x35, 0x5f, 0x4a, + 0x08, 0xb9, 0xaa, 0x96, 0x64, 0x52, 0x2e, 0x3f, 0xad, 0x82, 0x90, 0x35, 0x30, 0xb2, 0x06, 0x4a, + 0x56, 0xc0, 0x49, 0x16, 0xa4, 0x84, 0xc1, 0x6a, 0x3a, 0x03, 0xe4, 0xaa, 0xae, 0x1c, 0x9a, 0x8b, + 0x4f, 0xfb, 0xb0, 0xbe, 0xf4, 0x18, 0x2e, 0x3e, 0x93, 0x2d, 0x3d, 0xb9, 0xaa, 0xf9, 0xd8, 0x03, + 0xdc, 0x7f, 0x66, 0xe5, 0x0c, 0x91, 0xab, 0x0a, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xb1, + 0xf6, 0x3b, 0xb9, 0xaa, 0x22, 0xef, 0x4a, 0xae, 0x2a, 0xe6, 0x00, 0x73, 0x80, 0x39, 0xc8, 0xbb, + 0x39, 0x20, 0x57, 0x15, 0x09, 0x49, 0x73, 0x79, 0xc9, 0x55, 0x2d, 0xad, 0x84, 0x44, 0xae, 0x2a, + 0xca, 0x51, 0x8e, 0x49, 0x3c, 0xb9, 0xaa, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0xbe, 0x68, 0xa4, 0x9e, + 0x5c, 0xd5, 0x22, 0xf3, 0x6d, 0xae, 0x6c, 0x4b, 0xcb, 0xb7, 0xc9, 0x55, 0x85, 0x71, 0xdb, 0x67, + 0xdc, 0xe4, 0xaa, 0x26, 0x48, 0x68, 0x5b, 0xcc, 0xb0, 0xa2, 0xa7, 0x93, 0x12, 0x85, 0xa1, 0xa7, + 0x53, 0x56, 0x7d, 0x1f, 0xe2, 0xe4, 0x53, 0xf1, 0x6d, 0x88, 0x93, 0x17, 0x38, 0x0c, 0xc4, 0xc9, + 0x23, 0xbc, 0x20, 0xbc, 0x20, 0xbc, 0x98, 0xda, 0xef, 0xc4, 0xc9, 0x23, 0xba, 0x20, 0xba, 0x20, + 0xba, 0x28, 0x2d, 0x3d, 0x71, 0xf2, 0x68, 0x2f, 0x06, 0xcf, 0x10, 0x71, 0xf2, 0x50, 0x79, 0xa8, + 0x3c, 0x54, 0x1e, 0x2a, 0x1f, 0x6b, 0xbf, 0x13, 0x27, 0x2f, 0xf2, 0xae, 0xc4, 0xc9, 0x63, 0x0e, + 0x30, 0x07, 0x98, 0x83, 0xbc, 0x9b, 0x03, 0xe2, 0xe4, 0x91, 0x90, 0x34, 0x97, 0x97, 0x38, 0xf9, + 0xd2, 0x4a, 0x48, 0xc4, 0xc9, 0xa3, 0x1c, 0xe5, 0x98, 0xc4, 0x13, 0x27, 0x0f, 0xa9, 0x87, 0xd4, + 0x43, 0xea, 0x8b, 0x46, 0xea, 0x89, 0x93, 0x2f, 0x32, 0xdf, 0xe6, 0xca, 0xb6, 0xb4, 0x7c, 0x9b, + 0x38, 0x79, 0x18, 0xb7, 0x7d, 0xc6, 0x4d, 0x9c, 0xbc, 0x58, 0x9c, 0x3c, 0x1d, 0x9d, 0x4c, 0x2d, + 0xa4, 0x9d, 0x05, 0xb4, 0xd4, 0xcf, 0xe9, 0x32, 0x8c, 0xbc, 0xc6, 0xf0, 0x2b, 0x9c, 0x74, 0x1f, + 0x6a, 0x74, 0x73, 0xca, 0xda, 0x9e, 0x30, 0xdc, 0xcb, 0x69, 0x7e, 0xf9, 0x73, 0xd4, 0xc9, 0xe9, + 0x40, 0xbc, 0x93, 0xd3, 0x01, 0x9d, 0x9c, 0xe8, 0xe4, 0x94, 0x96, 0xbe, 0x40, 0x27, 0x27, 0x3a, + 0x39, 0xa5, 0x27, 0x36, 0xd2, 0xc9, 0x89, 0x4e, 0x4e, 0xeb, 0x07, 0xa2, 0x93, 0x93, 0xc4, 0x80, + 0x64, 0xa8, 0x92, 0xa1, 0x9a, 0x2f, 0xfd, 0x83, 0x0c, 0x55, 0x4b, 0xe2, 0x28, 0x57, 0x9e, 0x56, + 0x41, 0xc8, 0x1a, 0x18, 0x59, 0x03, 0x25, 0x2b, 0xe0, 0x24, 0x0b, 0x52, 0xc2, 0x60, 0x35, 0x9d, + 0x01, 0x32, 0x54, 0x57, 0x0e, 0xcd, 0x75, 0xa7, 0x7d, 0x58, 0x5f, 0x7a, 0x0c, 0xd7, 0x9d, 0xc9, + 0x96, 0x9e, 0x0c, 0xd5, 0x7c, 0xec, 0x01, 0x6e, 0x3d, 0xb3, 0x72, 0x86, 0xc8, 0x50, 0x85, 0xca, + 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0x58, 0xfb, 0x9d, 0x0c, 0x55, 0x91, 0x77, 0x25, 0x43, 0x15, + 0x73, 0x80, 0x39, 0xc0, 0x1c, 0xe4, 0xdd, 0x1c, 0x90, 0xa1, 0x8a, 0x84, 0xa4, 0xb9, 0xbc, 0x64, + 0xa8, 0x96, 0x56, 0x42, 0x22, 0x43, 0x15, 0xe5, 0x28, 0xc7, 0x24, 0x9e, 0x0c, 0x55, 0x48, 0x3d, + 0xa4, 0x1e, 0x52, 0x5f, 0x34, 0x52, 0x4f, 0x86, 0x6a, 0x91, 0xf9, 0x36, 0x57, 0xb6, 0xa5, 0xe5, + 0xdb, 0x64, 0xa8, 0xc2, 0xb8, 0xed, 0x33, 0x6e, 0x32, 0x54, 0xd5, 0x93, 0xd9, 0x0e, 0xe8, 0xe4, + 0xa4, 0x44, 0x61, 0xe8, 0xe4, 0x94, 0x55, 0xdf, 0x87, 0x38, 0xf9, 0x54, 0x7c, 0x1b, 0xe2, 0xe4, + 0x05, 0x0e, 0x03, 0x71, 0xf2, 0x08, 0x2f, 0x08, 0x2f, 0x08, 0x2f, 0xa6, 0xf6, 0x3b, 0x71, 0xf2, + 0x88, 0x2e, 0x88, 0x2e, 0x88, 0x2e, 0x4a, 0x4b, 0x4f, 0x9c, 0x3c, 0xda, 0x8b, 0xc1, 0x33, 0x44, + 0x9c, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0xc7, 0xda, 0xef, 0xc4, 0xc9, 0x8b, 0xbc, + 0x2b, 0x71, 0xf2, 0x98, 0x03, 0xcc, 0x01, 0xe6, 0x20, 0xef, 0xe6, 0x80, 0x38, 0x79, 0x24, 0x24, + 0xcd, 0xe5, 0x25, 0x4e, 0xbe, 0xb4, 0x12, 0x12, 0x71, 0xf2, 0x28, 0x47, 0x39, 0x26, 0xf1, 0xc4, + 0xc9, 0x43, 0xea, 0x21, 0xf5, 0x90, 0xfa, 0xa2, 0x91, 0x7a, 0xe2, 0xe4, 0x8b, 0xcc, 0xb7, 0xb9, + 0xb2, 0x2d, 0x2d, 0xdf, 0x26, 0x4e, 0x1e, 0xc6, 0x6d, 0x9f, 0x71, 0x13, 0x27, 0x2f, 0x16, 0x27, + 0x4f, 0x27, 0x27, 0x53, 0x0b, 0x69, 0x67, 0x01, 0xd3, 0xe8, 0xe4, 0x74, 0x40, 0x27, 0xa7, 0xac, + 0xed, 0x09, 0x9b, 0x9d, 0x9c, 0x0e, 0x32, 0xdd, 0xc9, 0x49, 0x2b, 0x4b, 0x46, 0x24, 0x2b, 0x46, + 0xac, 0x67, 0x53, 0x95, 0x9e, 0x4d, 0x06, 0x95, 0x07, 0x7a, 0x36, 0x3d, 0x7f, 0x73, 0xed, 0x9e, + 0x4d, 0x03, 0xee, 0xfc, 0xe0, 0xc9, 0x75, 0x6b, 0x1a, 0x8f, 0x27, 0xd3, 0xa7, 0x69, 0x87, 0x3e, + 0x4d, 0x29, 0x48, 0x87, 0xf4, 0x69, 0xca, 0x00, 0xa7, 0x15, 0x93, 0xf6, 0x0c, 0x84, 0x6b, 0x09, + 0x85, 0x67, 0x69, 0x50, 0x48, 0x0d, 0xab, 0x36, 0x61, 0x62, 0xce, 0x98, 0x37, 0x49, 0xe1, 0xde, + 0xdc, 0xb0, 0xc0, 0x1f, 0xf0, 0x07, 0xfc, 0x65, 0x0a, 0xfe, 0xfc, 0x96, 0x17, 0x44, 0x7e, 0xf4, + 0x18, 0x7a, 0xb7, 0x92, 0x10, 0x28, 0x70, 0x77, 0x51, 0x39, 0x19, 0x7f, 0xb5, 0xf7, 0x6e, 0xcf, + 0x40, 0x9d, 0x80, 0xe3, 0x4f, 0x27, 0x37, 0x97, 0x83, 0x7f, 0x5c, 0xfd, 0xde, 0xa8, 0x4b, 0x6d, + 0xe5, 0xa1, 0xbc, 0xdb, 0x13, 0xbd, 0x5f, 0x31, 0x74, 0x55, 0x7e, 0xd2, 0xf8, 0x5a, 0xbb, 0xf9, + 0x72, 0x76, 0xf2, 0xe1, 0xf8, 0xf2, 0xaa, 0x92, 0xc5, 0xd8, 0x01, 0x43, 0xef, 0x7d, 0x7a, 0x72, + 0xf6, 0xaf, 0xcb, 0xab, 0xe3, 0xab, 0x7a, 0x99, 0x5e, 0xfa, 0xf2, 0xe2, 0xaa, 0x7e, 0xd3, 0x38, + 0x3f, 0x3d, 0xf9, 0xf0, 0xfb, 0xcd, 0x49, 0xe3, 0xeb, 0x41, 0xa9, 0x16, 0x7c, 0xef, 0x6b, 0xe3, + 0x6c, 0xf8, 0xd6, 0xa5, 0xdc, 0xee, 0xd5, 0xc1, 0xdb, 0x7f, 0x6d, 0x9c, 0x5e, 0x96, 0xf2, 0x90, + 0xdf, 0x5c, 0x36, 0x3e, 0x95, 0xf3, 0xc5, 0xbf, 0x36, 0xce, 0xca, 0xf4, 0xe2, 0x43, 0x73, 0xf6, + 0xe9, 0xf4, 0xfc, 0xdf, 0x97, 0x8d, 0xfa, 0x87, 0x92, 0xc2, 0xdb, 0xe7, 0x2f, 0xa7, 0x57, 0xa5, + 0x03, 0xb8, 0xaf, 0x8d, 0xb3, 0xb2, 0xaf, 0x7c, 0xad, 0x9c, 0x2b, 0x3f, 0xdc, 0xf3, 0xa7, 0xc7, + 0xef, 0xeb, 0xa7, 0xf5, 0x8f, 0xa5, 0x34, 0xed, 0xcf, 0xeb, 0x5f, 0xc2, 0xb7, 0x1f, 0xbe, 0x77, + 0x89, 0x57, 0xbf, 0xac, 0x84, 0x76, 0xc1, 0x95, 0xa9, 0x95, 0x8f, 0xcc, 0xd7, 0x65, 0xa9, 0x9d, + 0xc8, 0x48, 0xd7, 0x69, 0xeb, 0x6a, 0xa9, 0x68, 0xe6, 0x5e, 0xe0, 0x7e, 0x6f, 0x7b, 0x2d, 0x39, + 0xb5, 0x7c, 0x32, 0xa0, 0xa6, 0x4a, 0x28, 0x5c, 0xe5, 0x02, 0xdd, 0x3d, 0xd1, 0x88, 0xe8, 0xee, + 0xe8, 0xee, 0x9b, 0xf7, 0x1b, 0xd7, 0x8e, 0x5b, 0xe3, 0xd2, 0x42, 0x32, 0x95, 0x3b, 0x67, 0x4b, + 0x08, 0x49, 0x54, 0xe9, 0x14, 0x2a, 0xfd, 0x0b, 0xe8, 0x01, 0x7a, 0x79, 0x05, 0x3d, 0xa9, 0x52, + 0xbd, 0x15, 0x3f, 0xe8, 0x45, 0x6e, 0x5b, 0x82, 0x29, 0x2d, 0xed, 0xe0, 0xe7, 0xa1, 0x65, 0x2b, + 0x7e, 0xef, 0x48, 0x57, 0xfc, 0xde, 0xa1, 0xe2, 0xb7, 0xa0, 0x47, 0x44, 0xc5, 0x6f, 0xf3, 0x3e, + 0x9d, 0x54, 0x3e, 0x89, 0x78, 0x36, 0xa6, 0xb9, 0xa2, 0xb9, 0x06, 0x8a, 0xe5, 0x1a, 0xca, 0xb8, + 0x34, 0x90, 0xdb, 0x6a, 0x32, 0xc3, 0xd2, 0x70, 0x7a, 0x9d, 0xe9, 0x8c, 0x4a, 0x1b, 0xc9, 0x74, + 0x06, 0x32, 0x28, 0x8d, 0x66, 0x4e, 0xda, 0x5a, 0x52, 0xd3, 0xc5, 0x6d, 0xad, 0xac, 0x6d, 0x46, + 0x13, 0x0f, 0xaf, 0x0b, 0xd4, 0x4e, 0x26, 0xf4, 0x9a, 0x9e, 0xff, 0x60, 0x82, 0x63, 0x4e, 0x47, + 0x86, 0x62, 0x42, 0x31, 0xa1, 0x98, 0x50, 0x4c, 0x28, 0x26, 0x14, 0x13, 0x8a, 0x09, 0xc5, 0x84, + 0x62, 0x96, 0x93, 0x62, 0x3a, 0xdd, 0x70, 0x92, 0xac, 0x6e, 0x8e, 0x6d, 0xce, 0x3e, 0x04, 0xe2, + 0x09, 0xf1, 0x84, 0x78, 0x42, 0x3c, 0x21, 0x9e, 0x10, 0x4f, 0x88, 0x27, 0xc4, 0x13, 0xe2, 0x59, + 0x2e, 0xe2, 0xd9, 0x1b, 0x19, 0x53, 0xe9, 0x4e, 0xd9, 0x83, 0x51, 0xa1, 0x96, 0x50, 0x4b, 0xa8, + 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x39, 0xa2, 0x96, 0x94, + 0x97, 0x5d, 0x55, 0x4a, 0x34, 0x72, 0x23, 0x6f, 0x5b, 0x28, 0x0c, 0x7c, 0x2b, 0x66, 0x41, 0xd1, + 0xc6, 0xe4, 0x71, 0x54, 0x8f, 0x4d, 0x6b, 0xc9, 0xb3, 0x5c, 0xc5, 0xb5, 0xdf, 0xf3, 0x9c, 0xfb, + 0x7e, 0x3b, 0xf2, 0xbb, 0x6d, 0xcf, 0x19, 0xbc, 0x6f, 0x4f, 0xbf, 0xa4, 0xeb, 0x8a, 0x31, 0x53, + 0xae, 0xef, 0xba, 0x43, 0x7d, 0x57, 0x83, 0xce, 0x16, 0xf5, 0x5d, 0x9f, 0xbf, 0xb9, 0x76, 0x7d, + 0xd7, 0xe6, 0x64, 0xcf, 0x0a, 0x65, 0x1d, 0x8d, 0xc7, 0x23, 0xe7, 0xc8, 0x9e, 0x5a, 0x42, 0xce, + 0x11, 0x39, 0x47, 0xeb, 0x07, 0x92, 0xca, 0xcd, 0x5e, 0xda, 0xbf, 0x32, 0x39, 0xda, 0xcf, 0x2f, + 0x2c, 0x9b, 0xab, 0x6d, 0xc8, 0xcd, 0x44, 0x90, 0x45, 0x90, 0xb5, 0x07, 0x41, 0xb2, 0x1e, 0x7b, + 0xf6, 0x05, 0x59, 0xb9, 0x5c, 0xf0, 0x25, 0x26, 0xb1, 0x8b, 0x54, 0x91, 0x61, 0xa9, 0x62, 0xd9, + 0x85, 0xdb, 0x1e, 0x13, 0xc9, 0x3c, 0x56, 0x43, 0x19, 0x9c, 0x7d, 0xb9, 0x52, 0x28, 0xfa, 0x08, + 0x0e, 0x9d, 0x86, 0x4e, 0x43, 0xa7, 0x65, 0xb6, 0x9b, 0x90, 0xbf, 0x6c, 0xc6, 0x6f, 0x16, 0x3e, + 0xf0, 0x90, 0x5e, 0x48, 0x2f, 0xa4, 0x57, 0x16, 0x40, 0xa6, 0x03, 0xba, 0xed, 0x76, 0xe7, 0xcf, + 0x67, 0xd2, 0xe3, 0xf6, 0xcc, 0x75, 0x83, 0x5f, 0x7e, 0x94, 0xf0, 0x36, 0x30, 0xe4, 0xbb, 0x1b, + 0xf2, 0xe1, 0x8d, 0xc1, 0x9a, 0x49, 0x78, 0x33, 0x0f, 0x73, 0xa6, 0xe1, 0xce, 0x1a, 0xec, 0x59, + 0x83, 0x3f, 0x2b, 0x30, 0x28, 0x0b, 0x87, 0xc2, 0xb0, 0x68, 0x4e, 0x13, 0xb0, 0xa0, 0x0d, 0x18, + 0xd2, 0x08, 0xe4, 0x17, 0x8c, 0xb6, 0xc8, 0x9a, 0x5a, 0xc2, 0xc0, 0x87, 0x16, 0x11, 0x14, 0x04, + 0x75, 0x20, 0x91, 0x70, 0x0c, 0x9d, 0x96, 0xa8, 0x6b, 0x4f, 0x9a, 0x4e, 0x8b, 0x54, 0x6b, 0x9e, + 0x48, 0x15, 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x04, + 0x4f, 0x04, 0x4f, 0x04, 0x4f, 0x24, 0x27, 0x9e, 0x88, 0x46, 0x94, 0xae, 0x01, 0x47, 0x84, 0x0b, + 0xe9, 0xf8, 0x4b, 0x67, 0x29, 0x88, 0xfe, 0x4b, 0xcf, 0xfb, 0x3c, 0x7e, 0x78, 0x63, 0xf0, 0xec, + 0x9b, 0xba, 0x36, 0x90, 0xa7, 0x73, 0x15, 0x2e, 0xe3, 0xa1, 0x8a, 0x7a, 0xa6, 0xe2, 0x97, 0xe1, + 0x55, 0x2e, 0xc3, 0x33, 0x40, 0xb9, 0xb8, 0x0c, 0xb7, 0xef, 0x41, 0x12, 0x5b, 0x4a, 0x6c, 0x29, + 0xe2, 0x16, 0xe2, 0x16, 0xb1, 0xa5, 0x50, 0xf9, 0x5c, 0x51, 0x79, 0x01, 0x07, 0x8c, 0x0c, 0x55, + 0xa9, 0xd5, 0xa8, 0x68, 0xf9, 0x17, 0x89, 0x7d, 0x29, 0x6b, 0xd9, 0xb1, 0xaf, 0x0c, 0x2e, 0xef, + 0xc0, 0xa6, 0x0d, 0xf5, 0xf4, 0xf1, 0xb4, 0x3a, 0xc3, 0x29, 0x48, 0x38, 0xc6, 0xa9, 0xdf, 0x8b, + 0x8e, 0xa3, 0x48, 0x8d, 0x0b, 0x56, 0x3e, 0xfb, 0x41, 0xbd, 0xed, 0x0d, 0xac, 0x52, 0xaf, 0xf2, + 0x6e, 0x2b, 0xe8, 0xb7, 0xdb, 0x0a, 0xe9, 0xc0, 0x9f, 0xdd, 0x9f, 0xfa, 0x83, 0x9c, 0x87, 0x2d, + 0x2f, 0xf4, 0x5a, 0xef, 0x1f, 0xc7, 0x43, 0x18, 0x9d, 0x78, 0xcd, 0xf3, 0x24, 0x75, 0x8e, 0x14, + 0x0e, 0x4d, 0x8c, 0xc3, 0x92, 0xec, 0x6c, 0xc4, 0xdf, 0xe1, 0xf1, 0x7e, 0x32, 0xe6, 0x52, 0xa8, + 0x2e, 0x81, 0xe6, 0xd4, 0xc7, 0x9b, 0x9b, 0xcd, 0x6f, 0x1a, 0xe3, 0x2d, 0x2b, 0x6e, 0xb7, 0xdb, + 0x7e, 0x4c, 0x5a, 0x58, 0xf7, 0xf9, 0x92, 0x6d, 0xf6, 0xd3, 0x31, 0xe7, 0x34, 0x99, 0x28, 0x92, + 0xd8, 0x53, 0x51, 0xf1, 0x44, 0x66, 0x3d, 0x8d, 0xb0, 0xdb, 0x69, 0x27, 0xd8, 0xf2, 0xaa, 0xae, + 0x84, 0xb6, 0xab, 0xa0, 0xed, 0x0a, 0x2c, 0x52, 0xfd, 0xe1, 0x8b, 0xa7, 0x74, 0xce, 0x92, 0xca, + 0x04, 0xaa, 0xb1, 0xf1, 0x7a, 0x31, 0xf0, 0x8a, 0x7a, 0x9e, 0xb2, 0xb3, 0xad, 0xe3, 0x54, 0x6b, + 0x6c, 0x69, 0x29, 0x2f, 0x59, 0xcc, 0x1b, 0x16, 0xf3, 0x7a, 0xf5, 0xb6, 0xbc, 0x1d, 0xba, 0xa5, + 0xaa, 0x98, 0x55, 0x5a, 0x23, 0xe5, 0xc9, 0xf1, 0x7e, 0x76, 0x3b, 0x61, 0xa4, 0x5b, 0x2b, 0x7d, + 0xba, 0x7f, 0x56, 0x0f, 0xab, 0x5a, 0x43, 0xe2, 0x59, 0x1d, 0xbb, 0xa8, 0xff, 0x4f, 0xfd, 0xc3, + 0xd5, 0xcd, 0xc5, 0xf9, 0x97, 0xab, 0xba, 0x66, 0x11, 0x95, 0x9d, 0x82, 0x14, 0x51, 0x51, 0x3c, + 0xa7, 0xd2, 0xaa, 0x56, 0xfe, 0xaa, 0xa8, 0xa8, 0x9d, 0xe3, 0x74, 0xbc, 0x64, 0x6d, 0xd9, 0x69, + 0xe9, 0x64, 0x8e, 0x8e, 0xa4, 0x13, 0x0d, 0x06, 0xd6, 0xd8, 0x3d, 0x13, 0xe3, 0x56, 0xd3, 0x18, + 0xa3, 0x1e, 0xf4, 0xef, 0x07, 0x2f, 0xf7, 0x94, 0xe1, 0xba, 0x50, 0x93, 0x69, 0xf3, 0xef, 0x8d, + 0xe0, 0xe4, 0xfc, 0xb0, 0xe0, 0x24, 0x38, 0x09, 0x4e, 0x82, 0x93, 0x39, 0xc4, 0x49, 0x61, 0x1e, + 0x29, 0xc2, 0x1f, 0x01, 0x32, 0x80, 0xac, 0xbc, 0x40, 0xd6, 0xf6, 0xdc, 0xdb, 0xd0, 0xbb, 0x95, + 0x00, 0x2f, 0x8d, 0xb2, 0xe1, 0x95, 0xc6, 0x54, 0xd6, 0x1c, 0x2d, 0xc4, 0xbb, 0xb0, 0xd3, 0x8f, + 0xfc, 0xe0, 0x6e, 0x7c, 0xb6, 0xa7, 0x7f, 0x3c, 0xc6, 0xdb, 0x96, 0x77, 0xeb, 0x07, 0x7e, 0xe4, + 0x77, 0x82, 0xde, 0xfa, 0xbf, 0x9a, 0xfe, 0xcd, 0x50, 0x33, 0xb6, 0xba, 0x3e, 0x5a, 0x77, 0x13, + 0xd3, 0x51, 0x24, 0xee, 0x28, 0x9e, 0x07, 0x13, 0xb8, 0xab, 0x98, 0x0e, 0x36, 0x7b, 0x67, 0x21, + 0x14, 0x1c, 0xd7, 0xef, 0x79, 0xa1, 0x2e, 0x44, 0x08, 0x86, 0x60, 0xcc, 0xe2, 0x57, 0x67, 0xf4, + 0xb6, 0xce, 0x77, 0x89, 0x0e, 0x6e, 0x46, 0xc2, 0x2d, 0xe6, 0xb0, 0x6c, 0x38, 0x93, 0xf9, 0xba, + 0x1d, 0xb6, 0x42, 0x3e, 0x84, 0x9d, 0x33, 0x11, 0xa7, 0x0c, 0xf2, 0x01, 0xf9, 0x80, 0x7c, 0x40, + 0x3e, 0x20, 0x1f, 0x90, 0x0f, 0xc8, 0x47, 0x5e, 0xc8, 0x47, 0x01, 0x43, 0x74, 0x66, 0x82, 0x2e, + 0x94, 0x4a, 0x4d, 0x24, 0x88, 0xa6, 0x49, 0x10, 0x08, 0xa1, 0x96, 0x80, 0xa3, 0x95, 0x70, 0xa3, + 0x7d, 0x21, 0x5f, 0xe5, 0x42, 0x3e, 0x55, 0x68, 0xe2, 0x42, 0x3e, 0xf9, 0xfe, 0xe1, 0x42, 0x1e, + 0x17, 0x09, 0x17, 0x29, 0x8b, 0x2e, 0x12, 0x17, 0x4d, 0x5c, 0xc8, 0x83, 0x93, 0xe0, 0x24, 0x38, + 0x09, 0x4e, 0x1a, 0xc0, 0x49, 0x2e, 0xe4, 0x01, 0x32, 0x80, 0x2c, 0x4b, 0x40, 0x86, 0x26, 0x6e, + 0x62, 0x7d, 0xd0, 0xc4, 0x13, 0x6f, 0x44, 0x34, 0x71, 0x29, 0x2c, 0xe3, 0x42, 0x7e, 0xf5, 0x1c, + 0x71, 0x21, 0x0f, 0xf9, 0x80, 0x7c, 0x40, 0x3e, 0x20, 0x1f, 0x90, 0x0f, 0xc8, 0x07, 0xe4, 0x43, + 0x9d, 0x7c, 0x14, 0xfc, 0x42, 0x5e, 0xa1, 0xe0, 0x4f, 0x39, 0xaa, 0x5b, 0x24, 0x2f, 0x15, 0xb1, + 0xb5, 0xa9, 0x94, 0xc8, 0x60, 0xc8, 0xc6, 0x68, 0x44, 0x9b, 0x25, 0x33, 0x7a, 0xc3, 0x6a, 0x42, + 0x4e, 0xa7, 0x3b, 0x34, 0x63, 0x0a, 0x55, 0x33, 0x16, 0x06, 0x28, 0x46, 0xe1, 0x8c, 0x64, 0x25, + 0xfa, 0x8a, 0x53, 0x37, 0x23, 0x51, 0x89, 0x3c, 0xca, 0x66, 0x98, 0xf7, 0xcf, 0xa4, 0xa2, 0x74, + 0xd4, 0x6a, 0x4e, 0x16, 0x3f, 0x48, 0x47, 0xa9, 0x26, 0x64, 0x46, 0x63, 0x74, 0x46, 0x5d, 0x42, + 0x3a, 0x7f, 0x06, 0x3a, 0xbd, 0x48, 0x16, 0x7a, 0x8e, 0x8c, 0x47, 0xd3, 0xbf, 0x69, 0xde, 0x41, + 0x18, 0x11, 0x28, 0xfe, 0x5a, 0x5e, 0x5d, 0x44, 0xab, 0x78, 0x6b, 0x5e, 0x65, 0x91, 0xbe, 0x1f, + 0x44, 0xbf, 0x0a, 0x88, 0x22, 0xfb, 0x1a, 0x43, 0x5c, 0xb8, 0xc1, 0xdd, 0xe0, 0xcb, 0x7c, 0xd3, + 0x5a, 0x4e, 0x01, 0x57, 0xf8, 0xb3, 0x1f, 0x08, 0xd6, 0x53, 0x97, 0x2d, 0x41, 0xfd, 0xd5, 0x6d, + 0xf7, 0x3d, 0xc1, 0xf1, 0x3e, 0x85, 0x6e, 0x73, 0xc0, 0xa7, 0x3f, 0xfa, 0x77, 0xfe, 0x50, 0x29, + 0xd9, 0xc9, 0x44, 0xe7, 0xbc, 0xcf, 0xee, 0xcf, 0xcc, 0x2f, 0x41, 0x75, 0x7f, 0x3f, 0xc3, 0x8b, + 0x90, 0x92, 0x20, 0x72, 0x9d, 0xe5, 0x90, 0x39, 0xbf, 0xe7, 0x7e, 0x6f, 0x7b, 0x4e, 0xd7, 0xf3, + 0x42, 0xc7, 0xed, 0x39, 0xb7, 0x7e, 0x3b, 0xf2, 0x42, 0x81, 0x98, 0xb9, 0xd5, 0xe3, 0xea, 0x53, + 0x19, 0x9d, 0x5a, 0xf8, 0xd0, 0x19, 0xe8, 0x4c, 0x69, 0xe9, 0x8c, 0x7e, 0x2d, 0x79, 0xcd, 0xda, + 0xf1, 0x76, 0x00, 0x2d, 0xf4, 0xba, 0x6d, 0xb7, 0x39, 0x05, 0x1e, 0x7d, 0x24, 0x5b, 0x1c, 0x10, + 0x08, 0x03, 0xc2, 0x80, 0x30, 0x20, 0x2c, 0x0b, 0x6a, 0x55, 0x3a, 0x97, 0x54, 0xf3, 0x97, 0x0e, + 0x24, 0x8e, 0xe6, 0x31, 0x71, 0x14, 0x49, 0x5a, 0x10, 0x57, 0x91, 0xa4, 0x93, 0x93, 0x20, 0x24, + 0x69, 0x08, 0x10, 0x04, 0x28, 0xe1, 0x7e, 0x41, 0x92, 0x9e, 0xd5, 0x43, 0x91, 0xa4, 0xb5, 0xf4, + 0x4c, 0x24, 0xe9, 0x0c, 0x2c, 0x02, 0x92, 0xf4, 0xd2, 0x34, 0x23, 0x49, 0x43, 0x67, 0xa0, 0x33, + 0xe8, 0x39, 0xd9, 0xd4, 0x73, 0x90, 0xa4, 0x81, 0x30, 0x20, 0x0c, 0x08, 0x43, 0x92, 0x5e, 0xb3, + 0x29, 0xb2, 0x20, 0x49, 0x93, 0x3a, 0x11, 0x6b, 0x9e, 0xa4, 0xb2, 0x27, 0x7a, 0x0d, 0x37, 0xfa, + 0x71, 0x3e, 0x1e, 0xd3, 0x62, 0xfe, 0x44, 0xc2, 0x20, 0x74, 0xb5, 0xe0, 0x73, 0xb2, 0x25, 0xb6, + 0xc8, 0x96, 0x58, 0x20, 0x4e, 0x49, 0xb3, 0x25, 0xdc, 0x7e, 0xf4, 0xc3, 0xe9, 0xba, 0xbd, 0xde, + 0x78, 0x0a, 0x15, 0x2f, 0xa8, 0xe6, 0x87, 0x51, 0xbb, 0xa8, 0xda, 0x21, 0x77, 0xc2, 0x26, 0xfb, + 0x2a, 0xd3, 0x45, 0x95, 0x32, 0xab, 0x7a, 0x76, 0x6c, 0x26, 0x19, 0xdf, 0x6a, 0x7b, 0x7c, 0x0e, + 0xae, 0x7f, 0xcd, 0xc0, 0x85, 0x74, 0xcb, 0xeb, 0x35, 0x43, 0xbf, 0xab, 0xc4, 0x86, 0x66, 0x8a, + 0x9c, 0x3d, 0x0f, 0xc2, 0x99, 0xe7, 0xcc, 0x17, 0xec, 0xcc, 0xf7, 0xa2, 0xd0, 0x0f, 0xee, 0xf2, + 0x7e, 0xd2, 0xbd, 0xc0, 0xfd, 0xde, 0xf6, 0x34, 0x6c, 0xfb, 0x64, 0x80, 0xa4, 0xc1, 0x01, 0xcf, + 0x1a, 0xce, 0x60, 0x9f, 0x01, 0x10, 0x00, 0x44, 0xd1, 0x00, 0x42, 0x5d, 0x62, 0x51, 0x94, 0x56, + 0xcc, 0x20, 0x44, 0xbb, 0xd3, 0x74, 0xdb, 0x2a, 0xf2, 0xef, 0x73, 0x9d, 0x9e, 0xc9, 0x08, 0x1c, + 0x72, 0x0e, 0x79, 0xc1, 0x0e, 0xb9, 0xdb, 0x73, 0x82, 0xfe, 0xfd, 0x77, 0xa5, 0xfb, 0xd8, 0xc9, + 0x06, 0x57, 0x28, 0x3e, 0xa5, 0x19, 0xcd, 0xa2, 0x57, 0xd8, 0x49, 0xe0, 0x8e, 0x40, 0x24, 0x64, + 0x42, 0x2a, 0x5a, 0x45, 0x32, 0x40, 0xe2, 0x49, 0xaf, 0xcc, 0x55, 0xe6, 0xa6, 0xb6, 0x56, 0x3d, + 0xaa, 0x1d, 0x1d, 0x1c, 0x56, 0x8f, 0xf6, 0x33, 0x34, 0xc7, 0x96, 0x2e, 0x1c, 0xae, 0x33, 0x60, + 0x7d, 0x27, 0x12, 0xb8, 0xe3, 0xb6, 0x5a, 0xa1, 0xd7, 0xd3, 0xb0, 0xc2, 0x4b, 0x23, 0x61, 0x8d, + 0xb1, 0xc6, 0x05, 0xb3, 0xc6, 0x7e, 0x57, 0x71, 0x77, 0xcf, 0xb1, 0xee, 0x23, 0x85, 0xcf, 0x8e, + 0xbf, 0xbb, 0x75, 0x73, 0xfc, 0xfc, 0xe6, 0x0f, 0x35, 0x8d, 0x77, 0x5f, 0xd6, 0x26, 0xf4, 0x0a, + 0x62, 0x46, 0x5e, 0x18, 0x68, 0xc7, 0xda, 0x56, 0xfe, 0xf3, 0xcb, 0x2f, 0xdf, 0x76, 0x9c, 0xa3, + 0xeb, 0xbf, 0xbf, 0xed, 0x3a, 0x47, 0xd7, 0xa3, 0xdf, 0xee, 0x0e, 0xff, 0x35, 0xfa, 0x7d, 0xf5, + 0xdb, 0x8e, 0x53, 0x9b, 0xfc, 0x7e, 0xff, 0xdb, 0x8e, 0xb3, 0x7f, 0xfd, 0xfa, 0x8f, 0x3f, 0xde, + 0xbe, 0xfe, 0x6b, 0xef, 0x29, 0xf9, 0x07, 0xff, 0x51, 0xb1, 0x1d, 0x95, 0xf8, 0x26, 0xc5, 0xcd, + 0x72, 0x50, 0xd4, 0xcd, 0xe2, 0x3a, 0xb7, 0xc7, 0xce, 0xa7, 0xeb, 0xbf, 0x76, 0xdf, 0xd4, 0x9e, + 0xde, 0xbd, 0xfe, 0xeb, 0xf0, 0x69, 0xf1, 0x0f, 0xff, 0x5e, 0xf5, 0x63, 0xbb, 0x6f, 0x0e, 0x9f, + 0xde, 0xad, 0xf9, 0x9b, 0x83, 0xa7, 0x77, 0x31, 0xc7, 0xd8, 0x7f, 0xfa, 0x65, 0xe9, 0x47, 0x07, + 0x7f, 0x5e, 0x5d, 0xf7, 0x81, 0xda, 0x9a, 0x0f, 0xec, 0xad, 0xfb, 0xc0, 0xde, 0x9a, 0x0f, 0xac, + 0xfd, 0x4a, 0xd5, 0x35, 0x1f, 0xd8, 0x7f, 0xfa, 0x7b, 0xe9, 0xe7, 0x7f, 0x59, 0xfd, 0xa3, 0x07, + 0x4f, 0xaf, 0xff, 0x5e, 0xf7, 0x77, 0x87, 0x4f, 0x7f, 0xbf, 0x7b, 0x9d, 0xc2, 0xd1, 0xc9, 0x25, + 0x97, 0x53, 0x8d, 0xa3, 0x9b, 0x9e, 0x5b, 0xb5, 0xb8, 0x39, 0x98, 0x1b, 0xcc, 0x0d, 0x1d, 0x05, + 0x1d, 0x05, 0x1d, 0x05, 0x1d, 0xa5, 0xb4, 0x3a, 0xca, 0xd0, 0x74, 0xde, 0x85, 0x9d, 0x7e, 0x57, + 0xd3, 0xfc, 0x8e, 0xc6, 0xc0, 0x02, 0x63, 0x81, 0x0b, 0x66, 0x81, 0xd5, 0xbb, 0x69, 0xe8, 0x74, + 0xd1, 0x98, 0x76, 0xcf, 0x78, 0xfb, 0x76, 0x7b, 0xfa, 0xbf, 0xe7, 0x83, 0xd6, 0x9b, 0xf9, 0xfd, + 0xcc, 0x6f, 0x9d, 0xe4, 0x6d, 0x31, 0x0c, 0xc2, 0x4a, 0xa4, 0x32, 0xf7, 0xf3, 0xa8, 0xa2, 0xd0, + 0x01, 0x12, 0x50, 0x01, 0x54, 0x32, 0x0f, 0x2a, 0xaa, 0x9b, 0x7b, 0x4b, 0xb3, 0xad, 0xa9, 0x62, + 0x3b, 0x53, 0x33, 0x20, 0x11, 0x7a, 0xf7, 0x9d, 0x07, 0xcf, 0xe9, 0x86, 0xfe, 0x83, 0x1b, 0x79, + 0x5a, 0x0a, 0xc0, 0xf2, 0x50, 0x80, 0x06, 0xa0, 0x51, 0x30, 0xd0, 0x58, 0xda, 0xe4, 0xe3, 0xbc, + 0x1f, 0x1d, 0x0c, 0x51, 0x70, 0xbb, 0x2a, 0x27, 0x2d, 0x2f, 0x88, 0xfc, 0xe8, 0xf1, 0xbd, 0xdb, + 0xf3, 0xf4, 0x93, 0x5f, 0x2f, 0xea, 0x9f, 0xcf, 0xbf, 0xd6, 0x6f, 0x1a, 0x17, 0x27, 0x5f, 0x8f, + 0xaf, 0xea, 0x37, 0xc7, 0x97, 0x37, 0xe7, 0x8d, 0xab, 0x93, 0xf3, 0x33, 0xd5, 0x2d, 0x35, 0xf4, + 0x2c, 0x7b, 0x5a, 0xba, 0xb9, 0x50, 0xfb, 0xab, 0x99, 0x57, 0x1a, 0xbf, 0xe4, 0xf1, 0xe9, 0x69, + 0x25, 0x0d, 0xd7, 0xdf, 0xc4, 0x0b, 0x35, 0x4e, 0x8f, 0x3f, 0xe8, 0xbe, 0x91, 0xd2, 0x27, 0xaf, + 0x4d, 0x1f, 0x6c, 0x33, 0xc6, 0xae, 0xd3, 0x8f, 0x3c, 0xe7, 0xb6, 0xed, 0x76, 0x9d, 0x96, 0x7b, + 0xdf, 0xf5, 0x03, 0x8d, 0x66, 0x2b, 0x2b, 0xc6, 0x52, 0x0f, 0x33, 0x56, 0x49, 0x15, 0xc7, 0x5c, + 0x62, 0x2e, 0x89, 0x33, 0xb6, 0x03, 0x1c, 0x3d, 0x2f, 0x68, 0x39, 0xcd, 0xce, 0xfd, 0x7d, 0x3f, + 0xf0, 0xa3, 0x47, 0x8d, 0x6a, 0x98, 0xf3, 0xe3, 0xa8, 0x03, 0xc6, 0xd9, 0xf9, 0x59, 0x1d, 0xbc, + 0x00, 0x2f, 0x8a, 0x86, 0x17, 0xd3, 0xb3, 0x51, 0x4c, 0xc7, 0x3c, 0xbf, 0x55, 0x0e, 0x92, 0x14, + 0x24, 0x96, 0x29, 0x44, 0xe0, 0x7d, 0xbf, 0xeb, 0x3a, 0xf7, 0xfd, 0x76, 0xe4, 0xff, 0xe8, 0x74, + 0x93, 0xd7, 0x23, 0x98, 0xff, 0x38, 0x65, 0x09, 0x2c, 0x42, 0x1f, 0x4d, 0x1c, 0x69, 0xe2, 0x88, + 0x6d, 0x2f, 0x98, 0x6d, 0x57, 0xae, 0x98, 0xad, 0x9a, 0xc5, 0xbb, 0x8c, 0xe8, 0x4a, 0xd9, 0xbc, + 0x52, 0xee, 0xb6, 0x26, 0x8d, 0xd6, 0x3e, 0x72, 0x12, 0x47, 0x4f, 0xee, 0x08, 0x4a, 0x1d, 0x45, + 0xf1, 0x23, 0x29, 0x7e, 0x34, 0x45, 0x8f, 0xa8, 0x9e, 0xe8, 0x46, 0x65, 0x36, 0x4b, 0xc5, 0x25, + 0x27, 0xb4, 0xd1, 0x89, 0xa2, 0xb6, 0x3e, 0x6e, 0xcd, 0x8d, 0x06, 0xe8, 0x00, 0x3a, 0x80, 0x4e, + 0xa2, 0xfd, 0x42, 0x81, 0xfe, 0x99, 0x2f, 0x42, 0x81, 0x7e, 0xad, 0x5f, 0x14, 0xe8, 0xcf, 0xc2, + 0x22, 0x14, 0xbd, 0x40, 0x7f, 0xf1, 0x8a, 0xc1, 0xce, 0xa9, 0x69, 0x74, 0x27, 0xa3, 0x3b, 0x19, + 0x5a, 0x0b, 0x5a, 0x0b, 0x5a, 0x0b, 0x6e, 0x0f, 0x6e, 0x0f, 0x5a, 0x0b, 0x5a, 0x0b, 0xa0, 0x03, + 0xe8, 0xa0, 0xb5, 0xa0, 0xb5, 0xa0, 0xb5, 0xa0, 0xb5, 0xa0, 0xb5, 0xa0, 0xb5, 0x08, 0x6a, 0x2d, + 0xb4, 0xdd, 0x89, 0x31, 0x4b, 0x42, 0x4d, 0x77, 0xea, 0xdf, 0xef, 0xba, 0x9f, 0x27, 0x43, 0xda, + 0x0c, 0x75, 0x0b, 0xc3, 0x4e, 0xe8, 0xfc, 0x70, 0x83, 0x56, 0x3b, 0x49, 0x4e, 0xc2, 0xb3, 0xb7, + 0x3e, 0xff, 0x79, 0x82, 0xdd, 0x2c, 0xf2, 0x52, 0x82, 0xdd, 0x08, 0x76, 0x43, 0x80, 0x45, 0x80, + 0x1d, 0x7d, 0x30, 0x0a, 0x3d, 0x37, 0x72, 0xdc, 0x9e, 0xf3, 0xa7, 0x1f, 0xfd, 0x68, 0x85, 0xee, + 0x9f, 0xfa, 0x92, 0xc6, 0xf2, 0x90, 0x88, 0xb2, 0xe8, 0x23, 0xe8, 0x23, 0x88, 0xb2, 0xe5, 0xf5, + 0x90, 0xe6, 0xf8, 0x2e, 0xd7, 0xd1, 0x5c, 0x47, 0xc3, 0x86, 0xb2, 0xc8, 0x86, 0x06, 0xe7, 0x34, + 0xf0, 0x3a, 0xfd, 0x9e, 0xd3, 0xef, 0xb6, 0xdc, 0xc8, 0x73, 0xee, 0xbd, 0x5e, 0xcf, 0xbd, 0xf3, + 0x04, 0xda, 0xb5, 0xaf, 0x1f, 0x1a, 0x56, 0x03, 0xab, 0x81, 0xd5, 0x24, 0xda, 0x2f, 0x7d, 0x3f, + 0x88, 0xf6, 0xaa, 0x02, 0xa4, 0xe6, 0x90, 0x6b, 0x1f, 0x51, 0x58, 0x59, 0x1a, 0x8e, 0x6b, 0x9f, + 0xcc, 0x2c, 0x81, 0x54, 0xd5, 0x5c, 0xa3, 0x6b, 0x51, 0xf4, 0xdb, 0x9f, 0x37, 0x48, 0x34, 0x90, + 0x19, 0xc8, 0x0c, 0x64, 0x06, 0x89, 0x26, 0xd3, 0x12, 0x0d, 0xb7, 0xd8, 0x71, 0xa6, 0x49, 0xea, + 0x1a, 0x7b, 0x30, 0xe8, 0x3f, 0x27, 0x63, 0x5a, 0xbc, 0xc7, 0xbe, 0x0b, 0xdd, 0xa6, 0x77, 0xdb, + 0x6f, 0x3b, 0xa1, 0xd7, 0x8b, 0xdc, 0x30, 0x4a, 0x7e, 0x93, 0xbd, 0x34, 0x02, 0x77, 0xd9, 0x16, + 0x0d, 0x14, 0x77, 0xd9, 0xdc, 0x65, 0xa3, 0xde, 0xa2, 0xde, 0x8e, 0xd5, 0xdb, 0x8c, 0x24, 0x13, + 0xe1, 0xcc, 0xe0, 0xcc, 0xe0, 0xcc, 0xe4, 0xc7, 0x99, 0x51, 0xb0, 0x0b, 0x3f, 0xbc, 0x76, 0xd7, + 0x0b, 0x9d, 0x4e, 0xd0, 0x7e, 0xd4, 0x87, 0x9b, 0xd9, 0xc1, 0x80, 0x1c, 0x20, 0x07, 0xc8, 0x01, + 0x72, 0x96, 0xbf, 0xe3, 0xd8, 0xc1, 0x74, 0x22, 0xff, 0x5e, 0xa0, 0x81, 0xc2, 0xdc, 0x68, 0x80, + 0x0e, 0xa0, 0x03, 0xe8, 0x24, 0xda, 0x2f, 0x7d, 0x3f, 0x88, 0x76, 0x0f, 0x04, 0x30, 0xe7, 0x80, + 0x1b, 0x68, 0x51, 0x58, 0x59, 0x1a, 0x8e, 0x1b, 0xe8, 0xcc, 0x2c, 0x41, 0x6d, 0xe7, 0xe8, 0x80, + 0xbb, 0xe7, 0xc5, 0x5f, 0x59, 0xbe, 0x7b, 0xee, 0x45, 0x6e, 0xdb, 0x73, 0x86, 0xad, 0x63, 0x7a, + 0x42, 0xcc, 0x63, 0x79, 0x48, 0xe8, 0x07, 0xf4, 0x03, 0xfa, 0x91, 0x68, 0xbf, 0xb4, 0xbc, 0xa6, + 0x7f, 0xef, 0xb6, 0x0f, 0x6a, 0x12, 0x5e, 0x4f, 0x55, 0x63, 0x8c, 0x25, 0x1c, 0xae, 0xc2, 0x67, + 0x56, 0x4f, 0x73, 0x15, 0x3e, 0x93, 0x36, 0x9f, 0xd9, 0x2b, 0xd1, 0x12, 0x50, 0x46, 0x41, 0x7d, + 0x43, 0xa6, 0x13, 0x81, 0xb2, 0x18, 0x4a, 0x40, 0x9a, 0x10, 0x69, 0x42, 0xd6, 0x69, 0x1b, 0x17, + 0xcd, 0x31, 0x3e, 0xc8, 0x45, 0x33, 0x1e, 0x10, 0x1e, 0x50, 0xba, 0x1e, 0x10, 0x17, 0xcd, 0xc9, + 0xe7, 0x8c, 0x8b, 0x66, 0x20, 0x07, 0xc8, 0x01, 0x72, 0x5e, 0xfe, 0x8e, 0xed, 0x4e, 0xd3, 0x9d, + 0x3a, 0x21, 0x2a, 0x2d, 0xc7, 0x97, 0x26, 0x6e, 0x69, 0x44, 0xc0, 0x07, 0xf0, 0x01, 0x7c, 0x00, + 0x9f, 0xe5, 0xef, 0x78, 0xdf, 0x69, 0x09, 0xdc, 0x31, 0x0d, 0x47, 0x01, 0x64, 0x00, 0x19, 0x40, + 0x26, 0xa1, 0x1e, 0xd1, 0xbf, 0xf7, 0xc2, 0x91, 0xf0, 0x29, 0x00, 0x34, 0x35, 0x8d, 0x31, 0xd4, + 0x5a, 0x9b, 0xdb, 0x05, 0xab, 0xae, 0xe7, 0x85, 0x8e, 0x6c, 0x5c, 0xde, 0xf2, 0x90, 0xc0, 0x18, + 0x30, 0x06, 0x8c, 0x25, 0xda, 0x2f, 0x04, 0xe7, 0xcd, 0x7e, 0x11, 0x82, 0xf3, 0xb4, 0x7e, 0x11, + 0x9c, 0x97, 0x89, 0x55, 0x20, 0x38, 0xef, 0x45, 0xfa, 0x21, 0xa2, 0xd3, 0x2c, 0x0e, 0x08, 0xf5, + 0x80, 0x7a, 0x40, 0x3d, 0x90, 0x69, 0x96, 0xbf, 0x23, 0xc9, 0x48, 0x80, 0x0e, 0xa0, 0x83, 0xbf, + 0x83, 0xbf, 0x83, 0xbf, 0x83, 0xbf, 0x83, 0xbf, 0x43, 0x32, 0x12, 0xf4, 0x03, 0xfa, 0x41, 0x32, + 0x12, 0xc9, 0x48, 0xf9, 0xe0, 0x33, 0x24, 0x23, 0xa5, 0xce, 0x67, 0x48, 0x46, 0x2a, 0x0e, 0x99, + 0x29, 0x41, 0x32, 0x12, 0x05, 0x71, 0xe3, 0x4d, 0x94, 0x50, 0x49, 0xdc, 0xdf, 0xc6, 0xc3, 0x5e, + 0x8c, 0x47, 0xb5, 0x58, 0x14, 0xb7, 0xdd, 0xb9, 0xbb, 0xf3, 0x83, 0x3b, 0xa7, 0xd3, 0x1d, 0x4c, + 0x61, 0x2f, 0x79, 0x4d, 0xdc, 0xc5, 0x01, 0x28, 0x89, 0x6b, 0x91, 0xf2, 0x52, 0x12, 0x97, 0x92, + 0xb8, 0x26, 0x7d, 0x3c, 0x32, 0x15, 0x53, 0xa0, 0x00, 0xca, 0x99, 0x8a, 0xed, 0xce, 0x9d, 0x33, + 0x31, 0x55, 0xce, 0xd0, 0x84, 0x3b, 0xcd, 0x1f, 0x03, 0xc7, 0xa6, 0x27, 0x11, 0xd5, 0xbf, 0x76, + 0x6c, 0xfd, 0x6e, 0x22, 0x83, 0xe5, 0x44, 0x8b, 0x41, 0x8b, 0x41, 0x8b, 0x49, 0xb6, 0x5f, 0x68, + 0x26, 0x92, 0x05, 0xef, 0x69, 0x81, 0x01, 0x53, 0xc9, 0x81, 0x4a, 0x0e, 0xf0, 0x23, 0xf8, 0x11, + 0xfc, 0x08, 0x7e, 0x04, 0x3f, 0x82, 0x1f, 0xc1, 0x8f, 0x16, 0xf8, 0x11, 0xe2, 0x72, 0xac, 0x79, + 0x12, 0xd2, 0x96, 0x4f, 0x47, 0xa3, 0x9e, 0x8f, 0x07, 0xb5, 0x28, 0x2d, 0x4f, 0xcd, 0xa1, 0xdb, + 0x6a, 0x85, 0x5e, 0x4f, 0x41, 0x5b, 0x5e, 0x1a, 0x21, 0x99, 0xb8, 0xbc, 0x83, 0xb8, 0x8c, 0xb8, + 0xac, 0x68, 0x53, 0x9e, 0x89, 0x9d, 0xe7, 0xde, 0x86, 0xde, 0x6d, 0x92, 0x05, 0x9b, 0xd8, 0x8c, + 0x04, 0xfd, 0xc6, 0x2b, 0x8d, 0x31, 0x56, 0xbc, 0x7d, 0x3b, 0xf6, 0x1f, 0xb7, 0x97, 0x36, 0xbf, + 0xc5, 0xa3, 0x3b, 0x8c, 0x91, 0x72, 0x42, 0xef, 0xb6, 0xed, 0x35, 0xa3, 0x4e, 0x98, 0xfc, 0xe4, + 0x2e, 0x0e, 0xc0, 0xad, 0x10, 0x07, 0x57, 0xe9, 0xe0, 0x72, 0x2b, 0x84, 0xea, 0x81, 0xea, 0xa1, + 0xa3, 0x7a, 0x2c, 0x40, 0xb1, 0xd3, 0x6c, 0xfb, 0xa3, 0x17, 0xd5, 0xcd, 0xe3, 0x59, 0x3d, 0x2e, + 0xbd, 0xe5, 0x91, 0x3b, 0x90, 0x3b, 0x90, 0x3b, 0x8c, 0x4d, 0xda, 0x0a, 0xe0, 0xe9, 0xf7, 0x22, + 0x2f, 0x74, 0xfc, 0x96, 0x09, 0x50, 0x9b, 0x8e, 0x0d, 0x20, 0x01, 0x48, 0x00, 0x52, 0xb2, 0xd3, + 0x34, 0x7b, 0x80, 0x9c, 0x68, 0x30, 0xae, 0x00, 0x36, 0x1d, 0x69, 0x8c, 0x31, 0x7e, 0xb7, 0xd4, + 0xc3, 0xfc, 0x67, 0x93, 0x39, 0xf7, 0xaa, 0x15, 0x81, 0xa8, 0xf5, 0xf1, 0xec, 0x1c, 0x0a, 0x0c, + 0x25, 0x93, 0x0c, 0x21, 0x37, 0x5b, 0xd3, 0x2f, 0x26, 0x99, 0x1c, 0x21, 0x04, 0xd0, 0x6b, 0x87, + 0x15, 0x8e, 0xd4, 0x9f, 0x8e, 0x6b, 0x20, 0x62, 0x5f, 0x13, 0x30, 0x56, 0x2f, 0x95, 0x60, 0x12, + 0x85, 0xad, 0xa5, 0xaa, 0x55, 0x8f, 0x6a, 0x47, 0x07, 0x87, 0xd5, 0xa3, 0xfd, 0x1c, 0xad, 0xd9, + 0xab, 0x6c, 0x8c, 0x72, 0xfd, 0x2a, 0xc5, 0x9d, 0x27, 0x08, 0xc8, 0x7e, 0xf7, 0xa1, 0x96, 0xf0, + 0xba, 0x21, 0x96, 0xd1, 0xfa, 0x55, 0x60, 0xac, 0x86, 0x1b, 0x45, 0x5e, 0x18, 0x88, 0x21, 0x73, + 0xe5, 0x3f, 0xbf, 0xfc, 0xf2, 0x6d, 0xc7, 0x39, 0xba, 0xfe, 0xfb, 0xdb, 0xae, 0x73, 0x74, 0x3d, + 0xfa, 0xed, 0xee, 0xf0, 0x5f, 0xa3, 0xdf, 0x57, 0xbf, 0xed, 0x38, 0xb5, 0xc9, 0xef, 0xf7, 0xbf, + 0xed, 0x38, 0xfb, 0xd7, 0xaf, 0xff, 0xf8, 0xe3, 0xed, 0xeb, 0xbf, 0xf6, 0x9e, 0x92, 0x7f, 0xf0, + 0x1f, 0x95, 0xb4, 0x37, 0x19, 0xa9, 0x45, 0xf6, 0x2f, 0x7f, 0x17, 0x1c, 0x2a, 0x82, 0xe3, 0x08, + 0x8e, 0xb3, 0xee, 0xe4, 0x21, 0x13, 0x2b, 0xa9, 0x2a, 0xc8, 0xc4, 0xa8, 0x32, 0xa8, 0x32, 0xc5, + 0x53, 0x65, 0x90, 0x89, 0x91, 0x89, 0x01, 0x24, 0x00, 0x29, 0x33, 0x80, 0x84, 0x4c, 0xbc, 0x69, + 0x86, 0x90, 0x89, 0x13, 0x69, 0x8f, 0xc8, 0xc4, 0xc8, 0xc4, 0xc8, 0xc4, 0x32, 0xda, 0x97, 0xec, + 0x28, 0xc8, 0xc4, 0x2f, 0x1b, 0x2d, 0x64, 0x62, 0x64, 0xe2, 0x94, 0x15, 0xa4, 0x4c, 0xc8, 0xc4, + 0xe4, 0x08, 0xc5, 0x9a, 0x27, 0xa1, 0x1c, 0xa1, 0x8b, 0xc1, 0xa8, 0x17, 0xd3, 0x41, 0x2d, 0x26, + 0x1a, 0x24, 0x13, 0xe1, 0x95, 0xc4, 0x77, 0xe5, 0xa4, 0x82, 0x2a, 0x49, 0x05, 0x92, 0xae, 0x6f, + 0x9e, 0x93, 0x0a, 0xdc, 0x7e, 0xf4, 0xc3, 0xe9, 0xba, 0xbd, 0xde, 0x78, 0x0a, 0x15, 0xef, 0x8c, + 0xe6, 0x87, 0x51, 0xbb, 0x3b, 0xda, 0x21, 0xc5, 0xc0, 0xa6, 0xf2, 0x53, 0xa6, 0xbb, 0x23, 0x65, + 0x45, 0x67, 0x4e, 0x17, 0xf5, 0x83, 0x3b, 0xd5, 0x3d, 0x3e, 0x4f, 0x85, 0x33, 0x70, 0x47, 0xdc, + 0xf2, 0x7a, 0xcd, 0xd0, 0xef, 0x2a, 0x91, 0xa1, 0x99, 0x8a, 0xc9, 0xcf, 0x83, 0x70, 0xe6, 0x39, + 0xf3, 0x05, 0x3b, 0xf3, 0xbd, 0x28, 0x54, 0x6b, 0x1f, 0x96, 0xad, 0x93, 0xfe, 0x18, 0xb8, 0xf7, + 0x7e, 0xd3, 0x6d, 0xb7, 0x1f, 0x9d, 0x11, 0x0d, 0xef, 0x87, 0x9e, 0x86, 0xa9, 0x5f, 0x33, 0x5e, + 0xd2, 0xdb, 0x7c, 0xbd, 0xeb, 0x6e, 0xf0, 0x03, 0xfc, 0xc8, 0x3c, 0x7e, 0xa8, 0x5f, 0x47, 0x2b, + 0x5e, 0x43, 0x9b, 0x01, 0x10, 0x2f, 0x70, 0xbf, 0xb7, 0x75, 0x10, 0x63, 0x32, 0x80, 0x3a, 0x44, + 0x28, 0x94, 0x89, 0x02, 0x21, 0x40, 0x08, 0x10, 0xc2, 0x12, 0x42, 0xf4, 0x22, 0xf7, 0x7b, 0xdb, + 0xef, 0xfd, 0xf0, 0x5a, 0x4e, 0x14, 0xba, 0x41, 0xcf, 0x4f, 0x56, 0x72, 0x7d, 0x19, 0x31, 0xd6, + 0x0c, 0x08, 0x04, 0x00, 0x01, 0x05, 0x83, 0x80, 0x66, 0xa7, 0x1f, 0x44, 0x5e, 0xa8, 0xd4, 0x75, + 0x68, 0xb2, 0xc1, 0x15, 0xee, 0xd6, 0x34, 0x63, 0x1c, 0x34, 0x62, 0x63, 0x24, 0x62, 0x18, 0x84, + 0x2e, 0xc2, 0xa5, 0x62, 0x14, 0x24, 0xef, 0xb7, 0x35, 0x6e, 0x82, 0x45, 0x62, 0x0e, 0xa4, 0xa7, + 0x76, 0xf7, 0xd7, 0x5a, 0xed, 0xe0, 0xb0, 0x56, 0xdb, 0x39, 0xdc, 0x3b, 0xdc, 0x39, 0xda, 0xdf, + 0xdf, 0x3d, 0xd8, 0xdd, 0xcf, 0xd0, 0x6c, 0x5b, 0xba, 0xd8, 0xbc, 0xce, 0x80, 0x95, 0x6e, 0xbb, + 0xbd, 0xc8, 0x99, 0xb1, 0xac, 0xea, 0xe6, 0x79, 0x69, 0x24, 0xec, 0x32, 0x76, 0xb9, 0x60, 0x76, + 0x39, 0xf2, 0xef, 0xbd, 0xc8, 0x6f, 0xfe, 0xb7, 0x67, 0xdd, 0x32, 0x7f, 0x09, 0x46, 0xa8, 0x56, + 0x09, 0xdc, 0xa0, 0xd3, 0xf3, 0x9a, 0x9d, 0xa0, 0xa5, 0x12, 0x89, 0x83, 0x85, 0xc7, 0xc2, 0x63, + 0xe1, 0xcb, 0x65, 0xe1, 0x3b, 0x4d, 0xb7, 0xed, 0xb8, 0x1a, 0x8e, 0xf7, 0x74, 0x04, 0x2c, 0x3a, + 0x16, 0xbd, 0x60, 0x16, 0xdd, 0xed, 0x39, 0x41, 0xff, 0xfe, 0xbb, 0x17, 0x6a, 0xd8, 0xf3, 0x43, + 0xec, 0x30, 0x76, 0x38, 0xa3, 0x76, 0x58, 0x2a, 0x7a, 0x1f, 0xeb, 0xab, 0x66, 0x7d, 0xef, 0xbd, + 0x5e, 0xcf, 0x55, 0x69, 0xb9, 0x32, 0x45, 0xa8, 0xe9, 0x08, 0xd4, 0xe8, 0xc5, 0xfa, 0x66, 0xca, + 0xfa, 0xaa, 0x17, 0x5f, 0xf0, 0x9a, 0x9e, 0xff, 0xe0, 0x49, 0x64, 0x26, 0x4f, 0x46, 0xd2, 0xcb, + 0x43, 0xde, 0x25, 0x0f, 0x99, 0x3c, 0x64, 0xcb, 0xe6, 0x4c, 0xb5, 0x24, 0x88, 0xe2, 0xa1, 0x7b, + 0xde, 0x2e, 0xe7, 0x57, 0x27, 0x9f, 0x4e, 0x3e, 0x1c, 0x5f, 0x9d, 0x9c, 0x9f, 0xe9, 0x2f, 0xf5, + 0x64, 0xf3, 0xcd, 0x8d, 0xfa, 0x26, 0x13, 0x14, 0x48, 0xf7, 0x70, 0x4a, 0x1e, 0x52, 0xf9, 0xc3, + 0x2a, 0x7d, 0x68, 0x8d, 0x1d, 0x5e, 0x63, 0x87, 0xd8, 0xc8, 0x61, 0xd6, 0x3b, 0xd4, 0x02, 0x5e, + 0xc4, 0x96, 0x48, 0xb1, 0x81, 0xa5, 0xfd, 0xd6, 0xf7, 0x83, 0x48, 0x49, 0xb4, 0x5e, 0x77, 0x3a, + 0x7f, 0x25, 0xa5, 0x3e, 0x15, 0x58, 0x33, 0xe5, 0x44, 0x9b, 0x74, 0xf8, 0x84, 0x8f, 0x87, 0xb8, + 0xd3, 0x6d, 0x7b, 0xa9, 0xe4, 0xc5, 0x71, 0xab, 0xab, 0x57, 0x8c, 0xe4, 0xfa, 0x54, 0x24, 0xa2, + 0x2f, 0x8d, 0x8f, 0xc7, 0x57, 0x75, 0x39, 0xda, 0x35, 0x1e, 0x0f, 0xc2, 0x05, 0xe1, 0x82, 0x70, + 0x41, 0xb8, 0x20, 0x5c, 0x10, 0x2e, 0x08, 0x17, 0x84, 0x0b, 0xc2, 0x35, 0x59, 0x96, 0x61, 0x54, + 0x62, 0xd0, 0x89, 0xfc, 0x5b, 0xbf, 0x39, 0xac, 0x5a, 0xe2, 0x78, 0x61, 0xd8, 0x09, 0x9d, 0x66, + 0xa7, 0xe5, 0xc9, 0xd1, 0xb0, 0x17, 0x9f, 0x02, 0x39, 0x83, 0x9c, 0x41, 0xce, 0x32, 0x45, 0xce, + 0xfc, 0x96, 0x17, 0x44, 0x7e, 0xf4, 0x98, 0xac, 0xd3, 0xf1, 0xa6, 0x23, 0x2a, 0x61, 0x53, 0x2a, + 0x27, 0xe3, 0xaf, 0xf6, 0xde, 0xed, 0x09, 0x6e, 0xe3, 0xc9, 0x8b, 0xbf, 0xff, 0xad, 0x71, 0x53, + 0xbf, 0xb8, 0x38, 0xbf, 0xb8, 0xf9, 0x70, 0xfe, 0xb1, 0x2e, 0xb5, 0x97, 0x87, 0x66, 0xb6, 0x27, + 0xc6, 0x2b, 0x65, 0xb9, 0xe5, 0xdc, 0xfb, 0x7f, 0xae, 0x5f, 0x5e, 0x1e, 0xff, 0x56, 0xbf, 0xf9, + 0x67, 0xfd, 0xf8, 0x63, 0xfd, 0x62, 0x34, 0x15, 0x95, 0x2c, 0xd2, 0x2c, 0x43, 0xef, 0xff, 0xcf, + 0xf3, 0xd3, 0x8f, 0x37, 0x57, 0x27, 0x9f, 0x07, 0xef, 0xfe, 0xbf, 0x8d, 0x93, 0x8b, 0xfa, 0xc7, + 0x32, 0xbd, 0xfd, 0x87, 0xfa, 0xf1, 0x65, 0xbd, 0x4c, 0x2f, 0x7c, 0xde, 0xa8, 0x9f, 0xdd, 0x4c, + 0xf6, 0x7c, 0xe9, 0x36, 0xfb, 0xa7, 0x93, 0xb3, 0x93, 0xab, 0xfa, 0xcd, 0xe5, 0xd5, 0xf1, 0x55, + 0xfd, 0xe6, 0xf3, 0xf1, 0x87, 0x7f, 0x9e, 0x9c, 0x95, 0x70, 0x16, 0x46, 0x12, 0x61, 0x79, 0x77, + 0xc1, 0xc5, 0xf9, 0x97, 0xab, 0xfa, 0xcd, 0x45, 0xfd, 0xd3, 0x45, 0xfd, 0xf2, 0x9f, 0xc6, 0xa6, + 0x41, 0x64, 0xa4, 0xeb, 0xb4, 0x89, 0x5a, 0xa6, 0x5c, 0xb4, 0x5e, 0xff, 0xbb, 0x1d, 0x2f, 0x6d, + 0xf2, 0x20, 0x1c, 0x35, 0x1c, 0x35, 0x1c, 0x35, 0x1c, 0xb5, 0x6c, 0x39, 0x6a, 0x97, 0x5f, 0xde, + 0x97, 0xd3, 0x57, 0x5b, 0x49, 0xdf, 0x64, 0x67, 0xc3, 0xe4, 0xac, 0x98, 0x99, 0x9d, 0x65, 0x7a, + 0x53, 0xff, 0x50, 0x3f, 0xf9, 0x5a, 0xbf, 0xf9, 0x72, 0x56, 0xff, 0xdf, 0x46, 0xfd, 0xc3, 0x55, + 0xfd, 0xe3, 0x94, 0xe3, 0x0c, 0xd8, 0xff, 0x65, 0xfd, 0xec, 0xaa, 0x22, 0xfe, 0x0d, 0x9e, 0xde, + 0x14, 0x68, 0x9a, 0xea, 0x97, 0x57, 0xc7, 0xef, 0x4f, 0x4f, 0x2e, 0xff, 0x29, 0xe9, 0x0c, 0x17, + 0x72, 0xa6, 0x06, 0x1b, 0xea, 0xc3, 0xf9, 0xd9, 0xa7, 0x93, 0x8b, 0xcf, 0x06, 0x66, 0x4a, 0x74, + 0xc4, 0xeb, 0x32, 0x79, 0x38, 0x36, 0x21, 0x20, 0xd7, 0xd3, 0x61, 0xe4, 0xa8, 0xe7, 0x7e, 0x83, + 0x88, 0x1f, 0xe9, 0x9c, 0x09, 0x63, 0x70, 0x8a, 0x45, 0xc9, 0xe8, 0xec, 0xf2, 0x4b, 0xa3, 0x71, + 0x7e, 0x31, 0xd8, 0x28, 0x5f, 0xeb, 0x17, 0x97, 0x27, 0xe7, 0x67, 0x37, 0x67, 0x5f, 0x3e, 0xbf, + 0xaf, 0x5f, 0x60, 0x20, 0xb7, 0x2a, 0xef, 0x8f, 0x3f, 0xde, 0x34, 0xea, 0xf5, 0x8b, 0x9b, 0xe3, + 0x4b, 0xa6, 0x63, 0x34, 0x1d, 0xff, 0x3f, 0x7b, 0x6f, 0xdb, 0x9c, 0x36, 0xb2, 0x75, 0x81, 0x7e, + 0xcf, 0xaf, 0x70, 0x51, 0xf3, 0x21, 0xae, 0x8a, 0x62, 0x83, 0x01, 0xc7, 0xfe, 0x46, 0x1c, 0x92, + 0xc3, 0x33, 0xd8, 0x70, 0xb1, 0x9d, 0xe7, 0x39, 0xd7, 0x61, 0x28, 0x19, 0x1a, 0xa7, 0x67, 0x84, + 0xc4, 0x95, 0x1a, 0x8f, 0x5d, 0x31, 0xff, 0xfd, 0x16, 0x6f, 0xb2, 0xb1, 0x20, 0x46, 0x52, 0xf7, + 0x6e, 0xbd, 0xac, 0x54, 0xe6, 0x84, 0x93, 0x98, 0x6e, 0xa9, 0x5f, 0xd6, 0x5e, 0x7b, 0xf5, 0xee, + 0xbd, 0x67, 0xde, 0x4a, 0xe3, 0x4b, 0xfd, 0xe2, 0xaa, 0xf1, 0xb5, 0x81, 0x45, 0xb2, 0xd8, 0x42, + 0xb5, 0xb3, 0xb3, 0x7a, 0x7b, 0x66, 0x6e, 0xea, 0x3d, 0xff, 0xd4, 0x05, 0x23, 0xb3, 0x0e, 0x2e, + 0x67, 0xb5, 0x76, 0xed, 0x73, 0xa3, 0xd9, 0xb8, 0xfa, 0x2f, 0x46, 0x66, 0x7d, 0x64, 0x5a, 0xed, + 0xab, 0x46, 0xeb, 0xa2, 0xd6, 0xec, 0xb5, 0x6b, 0x9d, 0xda, 0x79, 0xfd, 0x4a, 0xc9, 0xae, 0x02, + 0xe3, 0x4e, 0xb0, 0x81, 0x4c, 0xfe, 0x28, 0x28, 0x31, 0x84, 0xe9, 0x78, 0x6d, 0x55, 0x06, 0x2f, + 0x0d, 0x4b, 0x5f, 0xad, 0x61, 0x4b, 0xd7, 0xe6, 0x57, 0x61, 0xc0, 0xd2, 0x35, 0x02, 0x2a, 0x0d, + 0x55, 0xda, 0x0e, 0x97, 0xe1, 0x48, 0xbe, 0x1a, 0x9e, 0xc6, 0xc5, 0xf7, 0x5a, 0xb3, 0xf1, 0xac, + 0x36, 0x34, 0xeb, 0x17, 0xdf, 0xae, 0xfe, 0x03, 0x26, 0x93, 0x9c, 0x05, 0xac, 0x7a, 0x86, 0x52, + 0x01, 0x66, 0xed, 0xfa, 0x59, 0xe3, 0x6b, 0xe3, 0x2c, 0xc7, 0x51, 0x41, 0x40, 0xae, 0x57, 0xe3, + 0x73, 0x5e, 0x6b, 0x7e, 0x6d, 0x75, 0xce, 0xeb, 0x5f, 0x7a, 0xb5, 0xcb, 0x5e, 0xbb, 0xa6, 0x04, + 0xb4, 0x52, 0xe7, 0xa0, 0xfa, 0xb6, 0xbe, 0x76, 0x75, 0xd5, 0x69, 0x7c, 0x9e, 0x99, 0x3e, 0xc9, + 0x71, 0x54, 0x69, 0x76, 0xde, 0x3b, 0xf5, 0xb3, 0xd6, 0xb7, 0x8b, 0xc6, 0xff, 0x5b, 0xff, 0xd2, + 0xfb, 0xdf, 0x7a, 0xb3, 0xd9, 0xfb, 0xf3, 0xa2, 0xf5, 0xbf, 0x17, 0xcf, 0x43, 0x85, 0x41, 0x5a, + 0xdb, 0x55, 0xfe, 0x0a, 0x6a, 0x36, 0x2e, 0x71, 0x42, 0xfd, 0xc2, 0x12, 0x5f, 0xd4, 0xff, 0xef, + 0xaa, 0xf7, 0x9f, 0x56, 0x1b, 0x2b, 0xe7, 0xe5, 0xe8, 0xbc, 0x58, 0x2f, 0x73, 0x86, 0x02, 0xe0, + 0x09, 0xae, 0x9b, 0xab, 0xff, 0x6d, 0x75, 0xfe, 0xec, 0x7d, 0x6d, 0xd4, 0x9b, 0x08, 0x64, 0x78, + 0x31, 0x30, 0xad, 0x4e, 0xe3, 0x5b, 0x03, 0x40, 0xbc, 0x0e, 0xc4, 0x8d, 0xcb, 0xcb, 0xc6, 0xc5, + 0x37, 0x18, 0xaa, 0x37, 0xe1, 0xe6, 0x6b, 0xb3, 0xf6, 0xed, 0x52, 0x19, 0xda, 0xc0, 0x6f, 0x4d, + 0x1e, 0x3f, 0x4f, 0x43, 0xf4, 0x82, 0x6a, 0x1e, 0x9e, 0x06, 0xb7, 0x9d, 0x8c, 0x6f, 0xa7, 0x6a, + 0x37, 0x28, 0xe2, 0xd5, 0xe9, 0x51, 0xb2, 0x54, 0xf2, 0xe7, 0xe4, 0x8f, 0x82, 0x6a, 0x9e, 0x9c, + 0xa6, 0x75, 0xa0, 0x84, 0x0f, 0xa7, 0x67, 0x00, 0xd4, 0xf1, 0xde, 0x14, 0x00, 0x22, 0x09, 0xbf, + 0x4d, 0x13, 0x1c, 0x28, 0xe1, 0xb1, 0x29, 0xb9, 0xf2, 0x0d, 0x79, 0x3b, 0x30, 0x2c, 0xad, 0x8b, + 0x8b, 0xfa, 0xd9, 0x8c, 0x45, 0xf6, 0x3a, 0xf5, 0xff, 0x99, 0x87, 0x04, 0xc3, 0xed, 0xdb, 0x2b, + 0xd4, 0xbe, 0x9c, 0x37, 0x2e, 0x1a, 0x97, 0x57, 0x9d, 0xda, 0x55, 0xe3, 0x7b, 0xbd, 0xd7, 0xa9, + 0x5f, 0xd6, 0xa1, 0x4d, 0xce, 0x1c, 0x8e, 0xab, 0xff, 0xd4, 0x3b, 0xbd, 0x79, 0x9c, 0xf8, 0xb7, + 0xde, 0xd9, 0x7f, 0x6a, 0x17, 0xdf, 0xa0, 0x12, 0x04, 0x97, 0xcb, 0xe5, 0x7f, 0xae, 0xaf, 0xbe, + 0xb4, 0xfe, 0xf7, 0x02, 0x43, 0xb3, 0x00, 0x98, 0xde, 0x59, 0xab, 0xd9, 0x6c, 0x5c, 0x2e, 0x40, + 0xe6, 0xb2, 0xd5, 0xbc, 0x9e, 0x27, 0x87, 0xc7, 0xe0, 0x14, 0x5a, 0xd7, 0x57, 0xbd, 0xd6, 0xd7, + 0xf9, 0xa0, 0x5c, 0x77, 0xce, 0xea, 0x08, 0x23, 0x9f, 0xbb, 0xb0, 0xff, 0xd7, 0xbb, 0xb8, 0x3e, + 0xef, 0xb5, 0x3b, 0xf5, 0xaf, 0x8d, 0xff, 0xab, 0x5f, 0xf6, 0x3a, 0xf5, 0xda, 0x19, 0xae, 0xe4, + 0xcd, 0xc7, 0x66, 0x1e, 0x64, 0xf9, 0xa5, 0xbe, 0x04, 0xe0, 0xeb, 0x8e, 0x92, 0x51, 0x81, 0x14, + 0x99, 0x44, 0x2e, 0x95, 0x02, 0x17, 0x43, 0x29, 0x67, 0x4a, 0x81, 0x18, 0xab, 0x92, 0x1b, 0xa5, + 0x6e, 0xfa, 0xe5, 0x73, 0xa0, 0x74, 0x00, 0x80, 0x62, 0xae, 0x93, 0x82, 0x6d, 0xa0, 0x8c, 0xd3, + 0xa4, 0x41, 0x7e, 0x57, 0xcd, 0x5d, 0x92, 0x3f, 0x06, 0x2a, 0x39, 0x4a, 0x0a, 0x56, 0xc0, 0x7a, + 0x5e, 0x49, 0xe8, 0x4d, 0xaf, 0xc6, 0xe7, 0x73, 0x8d, 0x20, 0x08, 0xfc, 0x43, 0x8a, 0x55, 0xb8, + 0x8b, 0xd6, 0x55, 0xef, 0xf2, 0xbf, 0x17, 0x67, 0xff, 0xe9, 0xb4, 0xe6, 0x47, 0x9a, 0x18, 0x9e, + 0xf5, 0x45, 0x73, 0xf5, 0xdf, 0x76, 0x1d, 0x4e, 0x4f, 0x72, 0x00, 0x4f, 0xe5, 0x86, 0x4e, 0x95, + 0xcb, 0xa7, 0x6e, 0xe3, 0xa6, 0x6b, 0x11, 0xc8, 0xdd, 0xa0, 0xc8, 0xa7, 0x29, 0x33, 0x9f, 0xa6, + 0xe0, 0x23, 0xa5, 0x69, 0x34, 0xe7, 0xed, 0x23, 0x7b, 0xe6, 0x9b, 0x23, 0x87, 0xec, 0x99, 0xc8, + 0x9e, 0xb9, 0xfd, 0x8d, 0xe4, 0x67, 0xcf, 0x9c, 0xed, 0x4b, 0xc1, 0xfb, 0xff, 0x78, 0x89, 0x2b, + 0x44, 0x75, 0x6d, 0x2f, 0x8a, 0xe4, 0x14, 0x6c, 0xd3, 0x76, 0x3c, 0xd6, 0x77, 0xec, 0x81, 0x57, + 0x40, 0x81, 0x2b, 0x2d, 0x98, 0xb9, 0xd9, 0xcd, 0x44, 0x81, 0xab, 0x34, 0x4d, 0x15, 0x0a, 0x5c, + 0xa5, 0xba, 0xc0, 0x15, 0x69, 0x05, 0xf9, 0x9a, 0x6d, 0x3b, 0x62, 0x4e, 0xdc, 0xe2, 0x15, 0x92, + 0xf7, 0xfa, 0x3f, 0xd9, 0xc8, 0x1c, 0x9b, 0xe2, 0xe7, 0x0c, 0xc8, 0x0f, 0x9c, 0x31, 0xb3, 0xfb, + 0x73, 0xf6, 0x35, 0x33, 0xc6, 0x07, 0xb3, 0xff, 0x6c, 0xc6, 0xef, 0x7e, 0xde, 0x3a, 0xae, 0xe7, + 0x7f, 0x3a, 0xf0, 0x84, 0x29, 0xd8, 0xc1, 0x88, 0x79, 0x9e, 0x79, 0xc7, 0xbc, 0x03, 0x97, 0xf5, + 0x19, 0xbf, 0x67, 0x83, 0x18, 0xd8, 0x5f, 0xf0, 0x84, 0x3b, 0xe9, 0x0b, 0x7b, 0xe5, 0x93, 0xdc, + 0x8d, 0x7b, 0x17, 0xcb, 0xde, 0x7a, 0xe7, 0xcb, 0x7e, 0x7a, 0x9d, 0x55, 0x3f, 0xef, 0x68, 0xe6, + 0x27, 0xc2, 0xdc, 0x14, 0xbc, 0x05, 0x9b, 0x89, 0x36, 0x23, 0xbe, 0xcd, 0x9f, 0xb7, 0x12, 0x71, + 0x65, 0xac, 0xd2, 0x63, 0x47, 0xfc, 0x7a, 0x5c, 0xee, 0x2d, 0x83, 0x73, 0xcb, 0xe3, 0xda, 0xb2, + 0x38, 0xb6, 0x74, 0x6e, 0x2d, 0x9d, 0x53, 0x4b, 0xe5, 0xd2, 0xb4, 0x58, 0xf6, 0x85, 0xbb, 0x31, + 0x97, 0x4b, 0xeb, 0xaa, 0xf1, 0xb5, 0x71, 0x56, 0x9b, 0x1f, 0xd7, 0x49, 0x73, 0x91, 0xd7, 0x5a, + 0x85, 0x63, 0x0c, 0xc7, 0x18, 0x8e, 0x71, 0xa2, 0x1c, 0x63, 0x14, 0x67, 0x86, 0xef, 0x0a, 0xdf, + 0x15, 0xbe, 0x2b, 0x7c, 0xd7, 0xf8, 0xbe, 0x6b, 0x0c, 0x86, 0xbd, 0x48, 0x42, 0x25, 0x8f, 0x76, + 0x2d, 0xdb, 0x03, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, + 0x02, 0xe1, 0x02, 0xe1, 0x5a, 0x4d, 0xcb, 0xb6, 0x0a, 0xa8, 0x34, 0x75, 0x56, 0x51, 0x64, 0x15, + 0xe4, 0x0c, 0xe4, 0x0c, 0x45, 0x56, 0x43, 0xb4, 0x45, 0x55, 0x64, 0x35, 0x9f, 0x15, 0x56, 0x5f, + 0xdd, 0x5a, 0xc8, 0x5d, 0x72, 0x10, 0xbf, 0x7c, 0x45, 0xa7, 0x57, 0xff, 0xbf, 0x76, 0x23, 0x67, + 0x77, 0x56, 0xe6, 0xa9, 0x51, 0x72, 0x5b, 0xf4, 0x2f, 0x77, 0x8b, 0x7d, 0x63, 0x39, 0xe5, 0xfc, + 0xa5, 0x0d, 0x5c, 0xcf, 0x7b, 0x9f, 0xbb, 0xf7, 0x5f, 0x2f, 0x58, 0xa2, 0x6a, 0x18, 0x10, 0xbd, + 0x2f, 0xdd, 0x45, 0xf3, 0x26, 0xb7, 0x34, 0x5e, 0xda, 0xaa, 0x23, 0x38, 0x6a, 0x70, 0xd4, 0xe0, + 0xa8, 0xc1, 0x51, 0x4b, 0x96, 0xa3, 0x26, 0xf7, 0x66, 0x75, 0x8a, 0x7c, 0xb5, 0x8d, 0xf4, 0x0d, + 0xf7, 0xcc, 0x5f, 0xd3, 0x1b, 0xca, 0x52, 0xf8, 0x0a, 0x58, 0x9f, 0xfe, 0x61, 0x52, 0x52, 0x22, + 0x3f, 0x93, 0x23, 0xa5, 0xa4, 0x74, 0xbe, 0x5c, 0x0a, 0x2d, 0x8f, 0x4a, 0xa7, 0xc8, 0xc3, 0xa1, + 0x84, 0x80, 0x54, 0x0f, 0x87, 0x92, 0xad, 0x9e, 0xfa, 0x05, 0x22, 0x7d, 0x4b, 0xa7, 0x4c, 0x18, + 0x03, 0xa7, 0x78, 0x2d, 0x19, 0x11, 0x14, 0xfb, 0x4e, 0xaf, 0x81, 0x54, 0x52, 0x04, 0x3c, 0xdd, + 0xc3, 0xa1, 0xaa, 0x38, 0x78, 0x7a, 0x47, 0x45, 0x75, 0xd1, 0xf0, 0x34, 0x8f, 0x8c, 0xda, 0x62, + 0xe2, 0xd9, 0x18, 0x19, 0x95, 0x45, 0xc6, 0xc1, 0xb8, 0xd3, 0x60, 0x20, 0xd3, 0x91, 0x0c, 0x49, + 0xba, 0x21, 0x4c, 0xc7, 0x6b, 0xab, 0x32, 0x78, 0x69, 0x58, 0xfa, 0x6a, 0x0d, 0x5b, 0xba, 0x36, + 0xbf, 0x0a, 0x03, 0x96, 0xae, 0x11, 0x50, 0x69, 0xa8, 0xd2, 0x76, 0xb8, 0x0c, 0x47, 0xf2, 0xd5, + 0xf0, 0xac, 0x0a, 0x73, 0x29, 0x4f, 0x84, 0x0a, 0x26, 0x93, 0xd0, 0x19, 0x4a, 0x05, 0x98, 0xb5, + 0xeb, 0x67, 0x8d, 0xaf, 0x8d, 0xb3, 0x1c, 0x47, 0x05, 0x01, 0xb9, 0x5e, 0x8d, 0x8f, 0xc2, 0x6a, + 0xbb, 0xe9, 0x75, 0x50, 0xd5, 0x57, 0xe1, 0x4d, 0xb3, 0xf3, 0x4e, 0x56, 0x9d, 0x37, 0xbd, 0x83, + 0xa4, 0xbe, 0x6a, 0x6f, 0x7a, 0xc7, 0x86, 0xa2, 0x9a, 0x6f, 0x7a, 0x47, 0x47, 0x75, 0x95, 0xdf, + 0x2c, 0xac, 0x1b, 0x25, 0xd5, 0x7f, 0xd3, 0x3f, 0x30, 0xea, 0xaa, 0x02, 0xa7, 0x18, 0x88, 0x49, + 0xaa, 0x05, 0x67, 0x01, 0x6e, 0x94, 0x54, 0x11, 0x86, 0xdf, 0x9a, 0x60, 0x7e, 0x9e, 0x86, 0xe8, + 0x05, 0xd5, 0x3c, 0x3c, 0x0d, 0x6e, 0x3b, 0x19, 0xdf, 0x4e, 0xd5, 0x6e, 0x50, 0xc4, 0xab, 0xd3, + 0xa3, 0x64, 0xa9, 0xe4, 0xcf, 0x69, 0x2a, 0x7f, 0xaf, 0x86, 0x27, 0xa7, 0x69, 0x1d, 0x28, 0xe1, + 0xc3, 0xe9, 0x19, 0x00, 0x75, 0xbc, 0x37, 0x05, 0x80, 0x48, 0xc2, 0x6f, 0xd3, 0x04, 0x07, 0x4a, + 0x78, 0x6c, 0x4a, 0xae, 0x7c, 0x43, 0xde, 0x0e, 0x0c, 0x8b, 0xca, 0x0a, 0xce, 0x29, 0x76, 0xfb, + 0x94, 0x56, 0x76, 0x4e, 0xef, 0xb8, 0x28, 0xad, 0xf8, 0x9c, 0x99, 0xe5, 0x22, 0xbf, 0x12, 0x74, + 0x7a, 0x87, 0x86, 0xa0, 0x42, 0x74, 0x8a, 0xb7, 0x93, 0xb2, 0xca, 0xd1, 0xe9, 0x1d, 0x13, 0xf5, + 0x15, 0xa5, 0xd3, 0x3b, 0x36, 0x2a, 0x2b, 0x4d, 0xfb, 0xa3, 0x02, 0x29, 0x32, 0x89, 0x5c, 0x2a, + 0x05, 0x2e, 0x86, 0x52, 0xce, 0x94, 0x02, 0x31, 0x56, 0x25, 0x37, 0x4a, 0xdd, 0xf4, 0xcb, 0xe7, + 0x40, 0xe9, 0x00, 0x00, 0xc5, 0x5c, 0x27, 0x05, 0xdb, 0x40, 0x19, 0xa7, 0x49, 0x83, 0xfc, 0xae, + 0x9a, 0xbb, 0x24, 0x7f, 0x0c, 0x54, 0x72, 0x94, 0x14, 0xac, 0x80, 0xf5, 0xbc, 0x92, 0xd0, 0x9b, + 0x5e, 0x8d, 0x8f, 0xca, 0xe2, 0xf9, 0xe9, 0x76, 0x92, 0x95, 0x17, 0xd5, 0x4f, 0xef, 0xf0, 0xa8, + 0x2b, 0xb6, 0x0f, 0xa7, 0x27, 0xc9, 0x1b, 0x3a, 0x55, 0x2e, 0x9f, 0xba, 0x8d, 0x9b, 0xae, 0x45, + 0x20, 0x77, 0x83, 0x22, 0x9f, 0xa6, 0xcc, 0x7c, 0x9a, 0x82, 0x8f, 0x94, 0xa6, 0xd1, 0x9c, 0xb7, + 0x8f, 0xec, 0x99, 0x6f, 0x8e, 0x1c, 0xb2, 0x67, 0x22, 0x7b, 0xe6, 0xf6, 0x37, 0x92, 0x9f, 0x3d, + 0x73, 0xb6, 0x2f, 0x05, 0xef, 0xff, 0xe3, 0x25, 0xae, 0x10, 0xd5, 0xb5, 0xbd, 0x28, 0x92, 0x53, + 0xb0, 0x4d, 0xdb, 0xf1, 0x58, 0xdf, 0xb1, 0x07, 0x5e, 0x01, 0x05, 0xae, 0xb4, 0x60, 0xe6, 0x66, + 0x37, 0x13, 0x05, 0xae, 0xd2, 0x34, 0x55, 0x28, 0x70, 0x95, 0xea, 0x02, 0x57, 0xa4, 0x15, 0xe4, + 0x6b, 0xb6, 0xed, 0x88, 0x39, 0x71, 0x8b, 0x57, 0x48, 0xde, 0xeb, 0xff, 0x64, 0x23, 0x73, 0x6c, + 0x8a, 0x9f, 0x33, 0x20, 0x3f, 0x70, 0xc6, 0xcc, 0xee, 0xcf, 0xd9, 0xd7, 0xcc, 0x18, 0x1f, 0xcc, + 0xfe, 0xb3, 0x19, 0xbf, 0xfb, 0x79, 0xeb, 0xb8, 0x9e, 0xff, 0xe9, 0xc0, 0x13, 0xa6, 0x60, 0x07, + 0x23, 0xe6, 0x79, 0xe6, 0x1d, 0xf3, 0x0e, 0xbc, 0x99, 0x05, 0x8f, 0xc1, 0x75, 0x3d, 0xe1, 0x4e, + 0xfa, 0xc2, 0x5e, 0xf9, 0x23, 0x77, 0xe3, 0xde, 0xc5, 0xb2, 0xa7, 0xde, 0xf9, 0xb2, 0x8f, 0xde, + 0xe5, 0xac, 0x8f, 0x77, 0x34, 0xf3, 0x12, 0xee, 0x1b, 0x21, 0x67, 0x30, 0xee, 0xcc, 0xc9, 0x98, + 0xb1, 0x08, 0x93, 0xb5, 0xcb, 0x24, 0x85, 0x9b, 0x9f, 0xdd, 0x47, 0x39, 0xc4, 0x08, 0x17, 0x56, + 0x6f, 0x6c, 0x98, 0x83, 0x81, 0xcb, 0x3c, 0x2f, 0xf4, 0x18, 0xfb, 0xbc, 0x2b, 0xd0, 0x52, 0xc8, + 0x79, 0x8e, 0x66, 0x2c, 0x22, 0xfb, 0x3e, 0x71, 0x7c, 0x9d, 0xf8, 0xbe, 0x4d, 0x5c, 0x5f, 0x46, + 0x9a, 0xef, 0x22, 0xcd, 0x57, 0x91, 0xe2, 0x9b, 0xa8, 0x45, 0x92, 0xc8, 0xbe, 0xc6, 0x73, 0x66, + 0xfe, 0x71, 0xc4, 0xd5, 0xfd, 0x72, 0x85, 0x17, 0x4f, 0x22, 0x7c, 0x77, 0xf9, 0xec, 0xd1, 0x28, + 0x7e, 0x0c, 0x7b, 0xf7, 0xfc, 0xe6, 0xf7, 0xe5, 0x18, 0xef, 0x1e, 0x18, 0x83, 0x18, 0xfe, 0x54, + 0xa1, 0x6d, 0x0a, 0xc1, 0x5c, 0x3b, 0xb6, 0xc7, 0x53, 0xf8, 0xeb, 0xfd, 0xfb, 0x9b, 0x43, 0xe3, + 0xa4, 0xfb, 0x74, 0x53, 0x34, 0x4e, 0xba, 0x8b, 0x8f, 0xc5, 0xf9, 0x1f, 0x8b, 0xcf, 0xa5, 0x9b, + 0x43, 0xa3, 0xbc, 0xfa, 0x5c, 0xb9, 0x39, 0x34, 0x2a, 0xdd, 0xfd, 0x1f, 0x3f, 0x3e, 0xee, 0xff, + 0x3a, 0x9a, 0x86, 0xff, 0xe2, 0x1f, 0xd1, 0x5d, 0xf5, 0x2e, 0x25, 0x55, 0x92, 0xb3, 0x58, 0xaa, + 0x59, 0x5d, 0x2c, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, 0xd3, 0xfd, + 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, 0xfe, + 0xa5, 0x3a, 0x3d, 0xdd, 0xb1, 0x8d, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, 0xda, 0xf6, + 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, 0xd2, 0x96, + 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, 0xff, + 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xd7, 0xb0, 0x75, 0xde, 0xa9, 0xed, 0x47, 0x0d, 0x97, 0x1b, 0x33, + 0xe6, 0x1a, 0x66, 0x0c, 0x0a, 0xb7, 0x6a, 0x00, 0xcc, 0x0d, 0xcc, 0x2d, 0x63, 0xcc, 0xcd, 0xf4, + 0x0c, 0x7b, 0x32, 0xba, 0x65, 0x6e, 0x0c, 0xe2, 0x76, 0x1c, 0xe1, 0xab, 0xf1, 0xb4, 0xd9, 0x18, + 0xb6, 0x58, 0x86, 0xf6, 0x2a, 0xeb, 0x7c, 0x4a, 0x92, 0xb6, 0x2a, 0x53, 0x8d, 0x8b, 0x73, 0xd6, + 0x28, 0x43, 0x2b, 0x95, 0x3d, 0xb4, 0xe5, 0xd2, 0x49, 0xf9, 0xa4, 0x7a, 0x5c, 0x3a, 0xa9, 0x24, + 0x68, 0x8c, 0xf3, 0x66, 0x7b, 0xef, 0x5c, 0x67, 0x32, 0x8e, 0x69, 0x7e, 0x17, 0x6d, 0xc0, 0x02, + 0xc3, 0x02, 0x67, 0xcc, 0x02, 0x5b, 0xcc, 0x1c, 0x46, 0xab, 0x68, 0xe8, 0xfb, 0x81, 0x51, 0x0c, + 0x70, 0x7b, 0x29, 0xfc, 0x7e, 0xfc, 0x78, 0xe0, 0xff, 0x7e, 0xde, 0x68, 0xde, 0x8b, 0xcf, 0x2f, + 0x3e, 0x1a, 0x73, 0xdd, 0x36, 0x29, 0xb0, 0x22, 0xa2, 0x8c, 0xfd, 0x3a, 0xaa, 0xcc, 0x9b, 0x00, + 0xa8, 0x00, 0x54, 0x32, 0x06, 0x2a, 0x51, 0x17, 0xf7, 0x1a, 0xac, 0x94, 0x23, 0x7c, 0xb7, 0x6e, + 0x4f, 0x46, 0xb3, 0x47, 0x9f, 0x26, 0x00, 0x24, 0xfe, 0xbf, 0x09, 0x5b, 0x44, 0xc8, 0x47, 0x44, + 0x88, 0xe5, 0xf7, 0xa3, 0xc1, 0x43, 0x11, 0xf0, 0x00, 0x78, 0x50, 0x03, 0x0f, 0x5f, 0xb8, 0x1b, + 0x6d, 0xba, 0xb9, 0x3d, 0x9e, 0x88, 0xe8, 0x73, 0xe5, 0xcb, 0xd8, 0xf3, 0x66, 0x22, 0x0e, 0x6f, + 0x3c, 0xff, 0x2e, 0x76, 0x48, 0xa7, 0x8c, 0x50, 0x4e, 0x79, 0x21, 0x9c, 0xb2, 0x42, 0x37, 0xa5, + 0x87, 0x6c, 0x4a, 0x0f, 0xd5, 0x94, 0x1a, 0xa2, 0x49, 0x1b, 0x22, 0x13, 0x3b, 0x14, 0xd3, 0x5f, + 0x2f, 0x13, 0x6e, 0x8b, 0xa3, 0x92, 0x84, 0x93, 0x9f, 0xe3, 0x18, 0x4d, 0xc8, 0x89, 0x8a, 0x94, + 0x10, 0x98, 0x2a, 0x33, 0x0a, 0x52, 0x72, 0x48, 0x9d, 0xec, 0xa8, 0x47, 0x15, 0xf1, 0x72, 0x12, + 0xa2, 0x1c, 0xa5, 0x46, 0x37, 0xaa, 0x9a, 0x02, 0x59, 0x0a, 0x9e, 0xd2, 0xb9, 0xd0, 0x14, 0x2b, + 0x48, 0x75, 0x8a, 0x17, 0x61, 0xad, 0x15, 0x9c, 0x89, 0x90, 0xc2, 0x36, 0x96, 0xed, 0x80, 0x6e, + 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x80, 0x6e, 0x64, 0x9c, 0x6e, 0x64, + 0x35, 0x70, 0x3e, 0x92, 0xa2, 0xb8, 0xf7, 0x46, 0xd8, 0xfc, 0xff, 0xb3, 0x68, 0x34, 0x01, 0x82, + 0xab, 0xcb, 0x46, 0xce, 0x3d, 0x33, 0xc6, 0x2e, 0xbf, 0x37, 0x05, 0x8b, 0x15, 0x72, 0x15, 0x6c, + 0x0a, 0xa7, 0x34, 0xea, 0x88, 0x1d, 0x64, 0x58, 0x2d, 0xa7, 0x34, 0x81, 0x45, 0x6e, 0x38, 0xe3, + 0x39, 0x2e, 0xc5, 0x38, 0xb4, 0x89, 0x60, 0xb6, 0x0a, 0x8d, 0x01, 0xb3, 0x05, 0x17, 0x8f, 0x9f, + 0x4d, 0x8f, 0xc5, 0x77, 0xd8, 0x3a, 0xf5, 0xf3, 0xd6, 0xf7, 0x7a, 0xaf, 0xdd, 0x69, 0x7c, 0xaf, + 0x5d, 0xd5, 0x7b, 0xb5, 0xcb, 0x65, 0x59, 0xe0, 0xa8, 0x4b, 0x4a, 0x42, 0xa2, 0x23, 0x49, 0xc9, + 0x0e, 0x5e, 0xbc, 0xd2, 0xf2, 0x25, 0x6b, 0xcd, 0x66, 0x41, 0x47, 0xac, 0x95, 0x8a, 0x17, 0x6a, + 0x37, 0x6b, 0x67, 0x71, 0xdf, 0xe8, 0x1d, 0x0d, 0xad, 0x48, 0xc2, 0xe9, 0xa2, 0xeb, 0x4c, 0x04, + 0x33, 0x86, 0x96, 0x39, 0x36, 0x06, 0xe6, 0x68, 0xcc, 0xed, 0xbb, 0x18, 0xd6, 0x2e, 0xd8, 0x56, + 0xd8, 0x33, 0x21, 0x36, 0x34, 0x27, 0xd6, 0x1c, 0x2d, 0x87, 0xa6, 0xe5, 0x21, 0xa8, 0x01, 0xe6, + 0x32, 0x73, 0xe6, 0xf2, 0xd6, 0x71, 0x2c, 0x66, 0xc6, 0xb2, 0x8e, 0xc5, 0x04, 0x00, 0x87, 0xc7, + 0xec, 0x81, 0xd1, 0x77, 0x46, 0xa3, 0x89, 0xcd, 0xc5, 0x63, 0x74, 0xd0, 0x78, 0xd5, 0x4e, 0x74, + 0xc0, 0xb8, 0x68, 0x5d, 0xd4, 0x81, 0x17, 0xc0, 0x8b, 0xac, 0xe1, 0x85, 0xbf, 0x37, 0x72, 0x1f, + 0x09, 0xe5, 0x31, 0xcf, 0xe3, 0x8e, 0x6d, 0xcc, 0x55, 0x88, 0x38, 0x88, 0xf3, 0xb2, 0x19, 0x20, + 0x06, 0x10, 0x23, 0x63, 0x88, 0xc1, 0xec, 0xc9, 0x88, 0xb9, 0x66, 0x5c, 0x1f, 0x3c, 0xf5, 0x70, + 0x31, 0x19, 0x8f, 0x1d, 0x57, 0xb0, 0x81, 0xd1, 0x37, 0xc7, 0xe6, 0x2d, 0xb7, 0xb8, 0xe0, 0x71, + 0x02, 0x29, 0xb7, 0xb4, 0x07, 0x00, 0x01, 0x80, 0x64, 0x0c, 0x40, 0xf8, 0x52, 0x49, 0x8b, 0x79, + 0xa1, 0x43, 0xbf, 0x88, 0xf7, 0xf9, 0x5b, 0xbb, 0x77, 0x56, 0x6b, 0xd7, 0x3e, 0x37, 0x9a, 0x8d, + 0xab, 0xff, 0xa6, 0x5f, 0xba, 0xfb, 0xd6, 0xa9, 0x9d, 0xd5, 0xbf, 0x5e, 0x37, 0x7b, 0x9d, 0xfa, + 0xe5, 0x55, 0xad, 0x73, 0x95, 0x66, 0xd5, 0xae, 0x76, 0x79, 0x71, 0x54, 0x4a, 0xf3, 0x0b, 0xd4, + 0xff, 0xef, 0xaa, 0x7e, 0xf1, 0xa5, 0xbe, 0x28, 0xcf, 0xfb, 0x9f, 0x56, 0xbb, 0x57, 0xbf, 0x38, + 0x6b, 0x7d, 0x69, 0x5c, 0x7c, 0x4b, 0xf3, 0x4b, 0x9d, 0xb7, 0x3f, 0x7f, 0x6b, 0xa7, 0x7a, 0x59, + 0x7d, 0xf9, 0x32, 0x2f, 0x9e, 0x7e, 0x99, 0xe6, 0x97, 0xe8, 0xb4, 0xae, 0xaf, 0xea, 0xbd, 0x4e, + 0xfd, 0x6b, 0xa7, 0x7e, 0xf9, 0x9f, 0xcc, 0x09, 0xd9, 0x21, 0xed, 0x59, 0x93, 0x7b, 0xa2, 0x26, + 0x44, 0xc4, 0xdb, 0x02, 0xe7, 0xdc, 0xae, 0x5b, 0x6c, 0x66, 0xb1, 0x67, 0x08, 0x6e, 0x4f, 0x2c, + 0x2b, 0x82, 0x55, 0x3a, 0x37, 0x1f, 0xe2, 0x37, 0xd2, 0x72, 0x07, 0xcc, 0x65, 0x83, 0xcf, 0x8f, + 0xcb, 0x26, 0x54, 0x51, 0xe4, 0x77, 0x12, 0x27, 0x21, 0x6a, 0x98, 0x41, 0x8c, 0xf0, 0x82, 0xdd, + 0x96, 0xfb, 0xdb, 0x6f, 0xb9, 0xc3, 0x1b, 0xce, 0xb3, 0x09, 0xbb, 0xbb, 0xbb, 0x04, 0x6b, 0x59, + 0x88, 0xdd, 0x5d, 0xa9, 0x7f, 0xc8, 0xbb, 0x54, 0xa1, 0xa9, 0x7e, 0x14, 0x8a, 0x1f, 0x9d, 0xda, + 0x47, 0xa5, 0xf4, 0xb1, 0xa9, 0x7c, 0x6c, 0x0a, 0x1f, 0x8b, 0xba, 0xcb, 0xdd, 0x55, 0x61, 0xef, + 0x3e, 0x15, 0xfa, 0xab, 0x35, 0x11, 0xd1, 0x77, 0x5d, 0x7e, 0x1f, 0x97, 0x00, 0xe1, 0xab, 0x26, + 0xca, 0xb6, 0x47, 0xbe, 0x04, 0xd8, 0x77, 0x6c, 0x9b, 0xf5, 0x85, 0xe1, 0x32, 0xe1, 0x3e, 0xc6, + 0x77, 0x14, 0xd7, 0x9b, 0x8b, 0x38, 0xdc, 0x2f, 0x0e, 0xa3, 0x8e, 0x0e, 0x11, 0xea, 0x8f, 0x50, + 0x7f, 0xea, 0xbd, 0x1a, 0x8f, 0xf7, 0xeb, 0x0f, 0xf5, 0x1f, 0xb0, 0x3e, 0x1f, 0x99, 0x56, 0xac, + 0xd2, 0x0e, 0xbe, 0xd1, 0x2a, 0xc5, 0x68, 0x23, 0x10, 0xed, 0x5c, 0xc2, 0xdd, 0x81, 0xcd, 0xc3, + 0x5c, 0xc2, 0xdd, 0x81, 0x90, 0x8e, 0xa4, 0xf4, 0x29, 0x38, 0xca, 0xd1, 0x14, 0xe0, 0x86, 0x62, + 0x60, 0x98, 0x7f, 0x3a, 0xd6, 0x20, 0x5e, 0x39, 0x2c, 0x1f, 0x7f, 0x9f, 0x9b, 0x8a, 0xcf, 0x80, + 0x4e, 0xc0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, 0x80, 0xc0, + 0x80, 0xd4, 0x31, 0xa0, 0x7f, 0x18, 0x1b, 0x9b, 0x16, 0xbf, 0x67, 0x06, 0xb7, 0x05, 0x73, 0xef, + 0x4d, 0x2b, 0x3e, 0x15, 0xda, 0xd0, 0x26, 0x54, 0x21, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, + 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0xa2, 0x44, 0x73, 0xa2, 0x11, 0xb7, 0xf9, 0x68, 0x32, 0x32, + 0xcc, 0xc1, 0x3d, 0x73, 0x05, 0xf7, 0xe6, 0xc1, 0x2b, 0x12, 0xf9, 0xd1, 0x1b, 0xed, 0x83, 0x2b, + 0x81, 0x2b, 0x81, 0x2b, 0x81, 0x2b, 0x81, 0x2b, 0x81, 0x2b, 0x81, 0x2b, 0x81, 0x2b, 0x21, 0xe9, + 0xd6, 0x5e, 0xe4, 0xa8, 0xd8, 0x45, 0xb0, 0xe9, 0xc1, 0x32, 0x84, 0x2f, 0x09, 0x17, 0xeb, 0x62, + 0xde, 0xbf, 0x8d, 0x71, 0xef, 0x36, 0x72, 0x28, 0x62, 0x09, 0xa1, 0x88, 0x3a, 0x49, 0x1a, 0x42, + 0x11, 0x77, 0x5e, 0x35, 0x08, 0x45, 0x84, 0x23, 0x05, 0x47, 0x0a, 0x8e, 0x14, 0x1c, 0x29, 0x38, + 0x52, 0x70, 0xa4, 0xe0, 0x48, 0xe9, 0x72, 0xa4, 0x10, 0x8a, 0x08, 0x06, 0x04, 0x06, 0x04, 0x06, + 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0xb4, 0xc3, 0x30, 0x23, 0x14, 0x11, + 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, 0x9c, 0x08, + 0xa1, 0x88, 0xe0, 0x4a, 0xe0, 0x4a, 0xe0, 0x4a, 0xe0, 0x4a, 0xe0, 0x4a, 0xe0, 0x4a, 0xe0, 0x4a, + 0xe0, 0x4a, 0xbf, 0x1b, 0x66, 0x9b, 0xdd, 0x39, 0x82, 0x9b, 0x82, 0x0d, 0x0c, 0x89, 0x87, 0x69, + 0x1b, 0x5b, 0x05, 0xa5, 0x01, 0xa5, 0x01, 0xa5, 0x01, 0xa5, 0x01, 0xa5, 0x01, 0xa5, 0x01, 0xa5, + 0x01, 0xa5, 0x91, 0xff, 0x8d, 0x34, 0xdd, 0xae, 0x08, 0x91, 0x7a, 0x3c, 0xfc, 0x60, 0xa4, 0x38, + 0x25, 0x7b, 0xa8, 0x4c, 0xe7, 0x7b, 0x6f, 0xd4, 0x78, 0xbf, 0x5a, 0x34, 0x46, 0x99, 0xe0, 0xdd, + 0x35, 0x6d, 0x6f, 0xec, 0xb8, 0x22, 0x42, 0x8e, 0x77, 0xff, 0xab, 0x48, 0xf3, 0x4e, 0xc8, 0x64, + 0x91, 0xe6, 0x1d, 0x69, 0xde, 0x55, 0xba, 0x6e, 0xb8, 0x5b, 0xa5, 0xc1, 0xb2, 0x47, 0xbe, 0x5b, + 0x65, 0x39, 0x7d, 0xd3, 0x32, 0xcc, 0xc1, 0xc0, 0x65, 0x9e, 0x17, 0x5f, 0x08, 0x59, 0x6f, 0x0e, + 0x0a, 0x08, 0x14, 0x10, 0x28, 0x20, 0xa1, 0xd6, 0xcb, 0xc4, 0x8e, 0x56, 0x54, 0x34, 0x60, 0x6b, + 0x4e, 0x62, 0xb4, 0xb1, 0x7c, 0x1d, 0xed, 0x7a, 0x85, 0x5f, 0x2e, 0x71, 0x1c, 0x13, 0x52, 0x64, + 0x8f, 0x90, 0xdc, 0x91, 0x92, 0x37, 0x62, 0x1b, 0x46, 0xee, 0xbe, 0x2c, 0x71, 0xec, 0x02, 0x63, + 0xf8, 0x49, 0x62, 0x9b, 0x6d, 0x53, 0x08, 0xe6, 0xda, 0xd2, 0x86, 0xd3, 0x6f, 0xf8, 0xaf, 0xf7, + 0xef, 0x6f, 0x0e, 0x8d, 0x93, 0xee, 0xd3, 0x4d, 0xd1, 0x38, 0xe9, 0x2e, 0x3e, 0x16, 0xe7, 0x7f, + 0x2c, 0x3e, 0x97, 0x6e, 0x0e, 0x8d, 0xf2, 0xea, 0x73, 0xe5, 0xe6, 0xd0, 0xa8, 0x74, 0xf7, 0x7f, + 0xfc, 0xf8, 0xb8, 0xff, 0xeb, 0x68, 0x1a, 0xfe, 0x8b, 0x7f, 0x14, 0xa4, 0x3d, 0x7c, 0x57, 0x4a, + 0x4b, 0xd3, 0x0f, 0x09, 0x5e, 0x9c, 0x55, 0x2c, 0xce, 0xc5, 0xe2, 0x34, 0x8d, 0x61, 0xcd, 0xf8, + 0xda, 0xfd, 0x55, 0xfc, 0x50, 0x9e, 0x9e, 0xee, 0xff, 0x3a, 0x9e, 0xbe, 0xfe, 0xcb, 0xa7, 0x4d, + 0x3f, 0x56, 0xfc, 0x70, 0x3c, 0x3d, 0xdd, 0xf2, 0x2f, 0xd5, 0xe9, 0xe9, 0x8e, 0x6d, 0x54, 0xa6, + 0xef, 0x03, 0x3f, 0x3a, 0xfb, 0xfb, 0xd2, 0xb6, 0x2f, 0x94, 0xb7, 0x7c, 0xe1, 0x68, 0xdb, 0x17, + 0x8e, 0xb6, 0x7c, 0x61, 0xeb, 0x23, 0x95, 0xb6, 0x7c, 0xa1, 0x32, 0x7d, 0x0a, 0xfc, 0xfc, 0xfb, + 0xcd, 0x3f, 0x5a, 0x9d, 0xee, 0x3f, 0x6d, 0xfb, 0xb7, 0xe3, 0xe9, 0xd3, 0xe9, 0x7e, 0x02, 0xb7, + 0xea, 0x3b, 0xbd, 0xcf, 0x11, 0x13, 0x2a, 0x24, 0x5a, 0x7c, 0x4f, 0xb8, 0xdc, 0xbe, 0x93, 0x69, + 0xed, 0x3f, 0xe1, 0x30, 0x3c, 0x30, 0x36, 0x23, 0x31, 0x31, 0x06, 0xdc, 0xeb, 0x3b, 0xf7, 0x4c, + 0x46, 0x62, 0x8d, 0xf5, 0xe6, 0xe2, 0x87, 0x05, 0x0e, 0x4d, 0xcb, 0xc3, 0x31, 0x3a, 0x9c, 0x48, + 0x38, 0x91, 0x21, 0xd7, 0xcb, 0xad, 0xe3, 0x58, 0xcc, 0x94, 0xe2, 0x46, 0x16, 0x13, 0x0c, 0x5f, + 0x63, 0xd3, 0xf3, 0xf8, 0x3d, 0x33, 0x46, 0xce, 0x40, 0x42, 0x0c, 0xcf, 0x5a, 0x6b, 0x00, 0x2f, + 0x80, 0x17, 0xc0, 0x0b, 0xe0, 0xa5, 0x0e, 0xbc, 0x44, 0x7f, 0x6c, 0x8c, 0x64, 0x48, 0xee, 0xab, + 0x86, 0x00, 0x35, 0x80, 0x1a, 0x40, 0x4d, 0xa8, 0xf5, 0x32, 0xe1, 0xb6, 0x28, 0x56, 0x25, 0x20, + 0x4d, 0x15, 0xd1, 0x81, 0x52, 0x61, 0x25, 0xd0, 0x1c, 0xa2, 0x03, 0x13, 0x33, 0x05, 0xd5, 0x4a, + 0xe5, 0xa8, 0x82, 0x08, 0x41, 0x6d, 0x3a, 0x4f, 0x06, 0x23, 0x04, 0x57, 0x81, 0x60, 0x48, 0xc1, + 0x8c, 0x14, 0xcc, 0xe4, 0x14, 0x0b, 0x61, 0x42, 0x3b, 0x7c, 0x11, 0x61, 0x42, 0xf0, 0x5c, 0xe0, + 0xb9, 0x24, 0xc8, 0x73, 0x41, 0x98, 0x50, 0x70, 0x50, 0x10, 0x26, 0x14, 0x7d, 0xe4, 0x10, 0x26, + 0x84, 0x30, 0xa1, 0xe4, 0x2e, 0x4e, 0x84, 0x09, 0x21, 0x4c, 0x08, 0x61, 0x42, 0x72, 0x24, 0x8e, + 0x3d, 0x84, 0x09, 0xfd, 0x0e, 0x0c, 0x10, 0x26, 0xb4, 0xc5, 0xf9, 0x0b, 0x75, 0xc9, 0xef, 0x0d, + 0xcf, 0x2f, 0xc4, 0xad, 0x3f, 0xb8, 0x7d, 0x70, 0xfb, 0xe0, 0xf6, 0xad, 0x62, 0x54, 0x1c, 0x57, + 0x18, 0xf6, 0x64, 0x74, 0xcb, 0x5c, 0x9c, 0x5a, 0x2d, 0x1e, 0x04, 0xa7, 0x56, 0xba, 0x69, 0x3f, + 0x4e, 0xad, 0x70, 0x6a, 0xa5, 0x82, 0x76, 0x20, 0x3a, 0x19, 0x24, 0x06, 0x24, 0x26, 0x7b, 0x24, + 0x06, 0xd1, 0xc9, 0x51, 0x98, 0x1f, 0xa2, 0x93, 0x01, 0x5e, 0x00, 0x2f, 0x80, 0x17, 0x0d, 0x78, + 0xb9, 0x6c, 0xe4, 0x08, 0x26, 0xef, 0xc0, 0xff, 0x55, 0x7b, 0x00, 0x1e, 0x00, 0x0f, 0x80, 0x27, + 0xd4, 0x7a, 0x91, 0x72, 0xb8, 0x9d, 0xd1, 0x63, 0x7f, 0xa9, 0x87, 0xd7, 0x32, 0xcf, 0x05, 0xa5, + 0x9f, 0x07, 0xa6, 0xee, 0x90, 0x3a, 0x2b, 0x27, 0x4d, 0x92, 0x0f, 0xa1, 0x53, 0xb1, 0xc8, 0x70, + 0xd8, 0x9c, 0xca, 0xc3, 0xe6, 0x2e, 0xb4, 0xc4, 0x6d, 0x7c, 0x56, 0xce, 0x19, 0xe6, 0xcb, 0xc6, + 0xc0, 0x64, 0xc1, 0x64, 0xc1, 0x64, 0xc3, 0x49, 0x59, 0x38, 0xc4, 0x7c, 0xfd, 0x20, 0x38, 0xc4, + 0xdc, 0xd3, 0x48, 0x13, 0xf7, 0x70, 0x88, 0x89, 0x43, 0x4c, 0x45, 0xc4, 0x03, 0xd7, 0xfc, 0x41, + 0x38, 0x40, 0x38, 0xf4, 0x12, 0x0e, 0x5c, 0xf3, 0x07, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x48, 0x15, + 0xd7, 0xc8, 0xf2, 0x35, 0x7f, 0xd4, 0x02, 0x7a, 0x63, 0x84, 0x64, 0x95, 0x03, 0xf2, 0xdb, 0x23, + 0xac, 0x08, 0x34, 0xf1, 0x98, 0x31, 0x9a, 0x58, 0x82, 0x8f, 0x2d, 0x66, 0xcc, 0x06, 0xc0, 0x0b, + 0x5f, 0x1a, 0x68, 0x43, 0x1b, 0xa8, 0x11, 0x44, 0xc8, 0x4b, 0x51, 0x23, 0x08, 0x35, 0x82, 0x54, + 0x3a, 0x62, 0x48, 0xfe, 0xa1, 0xc1, 0xe8, 0x47, 0x4e, 0xfe, 0xc1, 0x6c, 0xf3, 0xd6, 0x62, 0x83, + 0xf8, 0x1a, 0xc6, 0xaa, 0x21, 0xc4, 0x2f, 0x42, 0x0b, 0x81, 0x16, 0xa2, 0x45, 0x0b, 0x49, 0x63, + 0xfc, 0x62, 0xf6, 0x5c, 0xa1, 0x20, 0xbf, 0x4d, 0x50, 0xea, 0x33, 0x36, 0xdb, 0x18, 0x91, 0xd9, + 0x0f, 0x0b, 0x0f, 0x47, 0xe0, 0x3e, 0xe0, 0x3e, 0x49, 0xe5, 0x3e, 0x11, 0x9d, 0x01, 0x39, 0x4e, + 0x41, 0xcc, 0x0d, 0x02, 0xc6, 0x02, 0xc6, 0xa2, 0x8b, 0xb1, 0x44, 0xdd, 0x70, 0x7e, 0x03, 0xa6, + 0x65, 0x39, 0xff, 0x3e, 0x1b, 0x49, 0xd3, 0x8b, 0x3f, 0xdf, 0xab, 0x15, 0x18, 0x6c, 0x3a, 0xe6, + 0x34, 0x49, 0x72, 0x4c, 0x24, 0x39, 0x28, 0xd2, 0xb6, 0xbd, 0xcc, 0xed, 0x2f, 0x1f, 0x06, 0x64, + 0xc3, 0x81, 0x32, 0x58, 0x50, 0x06, 0x0f, 0x4a, 0x60, 0x22, 0x1e, 0x5c, 0xc4, 0x84, 0x0d, 0x79, + 0x0e, 0x8f, 0x02, 0xc7, 0x47, 0x92, 0x03, 0x14, 0x7f, 0x80, 0x69, 0x91, 0x3c, 0xa6, 0x83, 0x24, + 0xdd, 0x51, 0x9a, 0x39, 0x18, 0x91, 0xbc, 0xa5, 0x18, 0x1e, 0x68, 0x04, 0x96, 0x1f, 0x2d, 0x81, + 0x74, 0x60, 0xd9, 0x46, 0x49, 0x24, 0x2d, 0x9d, 0x36, 0x96, 0x40, 0x1b, 0x41, 0x1b, 0x41, 0x1b, + 0x41, 0x1b, 0x41, 0x1b, 0x41, 0x1b, 0x41, 0x1b, 0x41, 0x1b, 0xd3, 0x4a, 0x1b, 0x23, 0x04, 0x1e, + 0xc5, 0x60, 0x8d, 0xb9, 0x38, 0xb7, 0x60, 0x11, 0x55, 0xf0, 0xdf, 0x84, 0x2d, 0x5d, 0x7b, 0xec, + 0x7c, 0xd9, 0x49, 0x7b, 0xd6, 0x47, 0xaf, 0x1e, 0x1a, 0x9a, 0x50, 0x14, 0x06, 0x45, 0x61, 0x70, + 0x36, 0xa2, 0x96, 0x73, 0x23, 0x2e, 0x44, 0x2e, 0x6f, 0x86, 0xbb, 0x0c, 0x77, 0x99, 0x9a, 0xef, + 0x22, 0x2e, 0x24, 0xe9, 0xfc, 0x0a, 0xb1, 0xf2, 0xbb, 0x0e, 0x95, 0xa4, 0xa0, 0xf9, 0xd7, 0xec, + 0x53, 0x5a, 0xec, 0xfc, 0xbb, 0x18, 0x63, 0x3c, 0x43, 0xd1, 0xd9, 0x93, 0xae, 0x5e, 0x7f, 0xc7, + 0x54, 0x34, 0x85, 0x26, 0xf7, 0x44, 0x4d, 0x88, 0xdd, 0x0c, 0x7c, 0xe1, 0x9c, 0xdb, 0x75, 0x8b, + 0xcd, 0xa0, 0xd0, 0x2b, 0x9c, 0xee, 0xd9, 0x13, 0xcb, 0xda, 0x21, 0xde, 0xff, 0xdc, 0x7c, 0x08, + 0xff, 0xa5, 0x96, 0x3b, 0x60, 0x2e, 0x1b, 0x7c, 0x7e, 0x5c, 0x7e, 0x25, 0xd6, 0xd8, 0x84, 0x5c, + 0x77, 0x91, 0xd6, 0xdb, 0x0e, 0x8b, 0xeb, 0x37, 0x8b, 0xea, 0xf7, 0x6b, 0x68, 0xfb, 0xca, 0xd8, + 0xfc, 0x2f, 0x5b, 0xc6, 0x63, 0xd7, 0x71, 0x08, 0xf3, 0xfe, 0x9b, 0x1f, 0x3c, 0xf8, 0x58, 0x1b, + 0x1e, 0xa9, 0x30, 0x66, 0xcc, 0x35, 0xee, 0x5c, 0x67, 0x32, 0xde, 0x2e, 0xc2, 0x3e, 0x27, 0x85, + 0x78, 0xf1, 0xc3, 0x5b, 0x5e, 0xef, 0xf7, 0x9e, 0xd0, 0x9b, 0xf4, 0x6b, 0x17, 0x7a, 0xb5, 0x3b, + 0x7d, 0xda, 0x95, 0x1e, 0x85, 0xa6, 0x3f, 0xa1, 0xe9, 0x4d, 0x28, 0xfa, 0x12, 0x6e, 0x41, 0xbd, + 0xe5, 0x19, 0xbc, 0x98, 0xb5, 0xb7, 0x07, 0x22, 0x38, 0xd3, 0x6f, 0x8d, 0xc4, 0x6e, 0xae, 0xef, + 0xce, 0xbc, 0x3b, 0x0c, 0xbf, 0x0e, 0xcf, 0xa3, 0xc3, 0xf2, 0xe5, 0xc8, 0xbc, 0x38, 0x32, 0xff, + 0x8d, 0xc4, 0x73, 0xe3, 0x59, 0xad, 0x5d, 0x5d, 0xcb, 0x82, 0x39, 0xe4, 0x86, 0x67, 0x0e, 0x79, + 0x84, 0xbb, 0x62, 0xcf, 0x5f, 0xc5, 0x15, 0x31, 0x42, 0xb7, 0x2c, 0xd7, 0x57, 0xc4, 0x56, 0x6b, + 0x2e, 0xba, 0x16, 0xe8, 0xb7, 0x80, 0x50, 0x69, 0xc8, 0x81, 0xd9, 0x90, 0x03, 0xcd, 0xc1, 0x20, + 0xe4, 0x7d, 0xdf, 0xed, 0xbb, 0xc3, 0x6f, 0x0a, 0x01, 0xd3, 0x90, 0xf2, 0x72, 0x21, 0xe5, 0xc5, + 0x8e, 0x7c, 0x89, 0x79, 0x53, 0x21, 0xb0, 0xec, 0x62, 0xdd, 0x58, 0x90, 0xb4, 0x11, 0xa5, 0x6d, + 0x48, 0x99, 0x1b, 0x53, 0xfe, 0x06, 0x95, 0xbd, 0x51, 0x95, 0x6d, 0x58, 0x65, 0x1b, 0x57, 0xc9, + 0x06, 0x8e, 0xb7, 0x91, 0x63, 0x6e, 0x68, 0x69, 0x1b, 0xdb, 0x6f, 0x88, 0x59, 0xfc, 0x8e, 0xdf, + 0x5a, 0xcc, 0x58, 0x4c, 0xa5, 0x31, 0x76, 0x2c, 0xde, 0x7f, 0x94, 0xb7, 0x58, 0xfc, 0xd3, 0xb8, + 0xcd, 0xfd, 0x7c, 0x48, 0x64, 0xba, 0x22, 0x59, 0xc0, 0xa0, 0x02, 0x20, 0xd4, 0x01, 0x85, 0x2a, + 0xc0, 0x50, 0x0e, 0x1c, 0xca, 0x01, 0x44, 0x29, 0x90, 0xc8, 0x01, 0x14, 0x49, 0xc0, 0xe2, 0xbf, + 0xa9, 0xb4, 0xa0, 0xb7, 0xc0, 0x7a, 0xb5, 0x98, 0x39, 0x74, 0xd9, 0x50, 0x45, 0xd1, 0xf5, 0x63, + 0xb9, 0x45, 0xd7, 0x97, 0x4a, 0x76, 0xdf, 0x70, 0xc7, 0x8e, 0x75, 0xea, 0x3a, 0x13, 0xc1, 0xed, + 0xbb, 0x25, 0x72, 0xf9, 0x7f, 0xbd, 0xf8, 0xbf, 0xc6, 0x80, 0x0d, 0xb9, 0xcd, 0x05, 0x77, 0x6c, + 0x6f, 0xfb, 0x3f, 0xf9, 0xff, 0x32, 0x97, 0xf3, 0x13, 0x52, 0xb6, 0x5b, 0x46, 0xee, 0x39, 0x97, + 0xf5, 0x19, 0xbf, 0x67, 0xf2, 0xcd, 0xc6, 0xaa, 0x61, 0x49, 0xab, 0x5a, 0x72, 0x70, 0x34, 0xec, + 0x0f, 0xec, 0x0f, 0xec, 0x4f, 0xca, 0xec, 0x8f, 0xbc, 0xe0, 0xeb, 0x80, 0xfd, 0x29, 0x66, 0x08, + 0xd2, 0x3d, 0x66, 0x0f, 0xe4, 0xe3, 0xf9, 0xbc, 0x55, 0x80, 0x39, 0xc0, 0x1c, 0x60, 0x0e, 0x30, + 0x07, 0x98, 0x53, 0x82, 0xb9, 0x31, 0x92, 0x99, 0x20, 0xfa, 0x25, 0xa0, 0xcf, 0x5b, 0x06, 0xf8, + 0x02, 0x7c, 0x01, 0xbe, 0xb9, 0x02, 0xdf, 0x09, 0xb7, 0xc5, 0x27, 0x05, 0xd0, 0x5b, 0x91, 0xd8, + 0xa4, 0x9c, 0x0a, 0x09, 0xaf, 0x7f, 0xc9, 0xdd, 0x4e, 0x7b, 0xb2, 0x2b, 0x28, 0x28, 0x46, 0xd5, + 0x40, 0xf3, 0x92, 0x2b, 0x2c, 0x04, 0xda, 0x57, 0x90, 0xea, 0x5f, 0xd1, 0x6e, 0x5b, 0x9f, 0x52, + 0xf3, 0x21, 0xf5, 0x53, 0x5a, 0xaa, 0x54, 0x52, 0x3c, 0xa9, 0xef, 0x92, 0xd9, 0x5a, 0x37, 0x29, + 0xd4, 0x52, 0xeb, 0x19, 0xa6, 0xa4, 0xcb, 0xdc, 0xcf, 0x24, 0xf7, 0xcd, 0x08, 0xf4, 0x17, 0xf1, + 0xe0, 0x2f, 0x3e, 0x1f, 0xf8, 0xc1, 0x9e, 0xfe, 0xa7, 0x03, 0x3f, 0x56, 0x28, 0x56, 0x52, 0xa0, + 0xf8, 0xe3, 0x1c, 0x63, 0x8c, 0x63, 0x26, 0x0b, 0x0a, 0x32, 0xfd, 0x18, 0x49, 0x83, 0x02, 0xce, + 0x95, 0xac, 0xc8, 0x8d, 0x12, 0x22, 0x37, 0x12, 0x40, 0xdb, 0x11, 0xb9, 0xb1, 0xfb, 0x1b, 0x21, + 0x72, 0x03, 0xfe, 0x3e, 0xfc, 0x7d, 0xf8, 0xfb, 0x29, 0xf4, 0xf7, 0x11, 0xb9, 0x81, 0xc8, 0x8d, + 0x9d, 0x17, 0x0b, 0x22, 0x37, 0x60, 0x7f, 0x60, 0x7f, 0x60, 0x7f, 0x24, 0xae, 0x57, 0x1c, 0xf6, + 0xed, 0xe6, 0xf7, 0x23, 0x72, 0x03, 0x60, 0x0e, 0x30, 0x07, 0x98, 0x03, 0xcc, 0xb3, 0x01, 0xe6, + 0x88, 0xdc, 0x00, 0xf8, 0x02, 0x7c, 0x01, 0xbe, 0xf2, 0xd6, 0x2b, 0x22, 0x37, 0x24, 0x2e, 0x48, + 0x44, 0x6e, 0x6c, 0x6f, 0x1f, 0x91, 0x1b, 0xda, 0xa6, 0x14, 0x91, 0x1b, 0x0a, 0x5a, 0x43, 0xe4, + 0x46, 0x7a, 0x22, 0x37, 0x62, 0xe4, 0xe5, 0x8f, 0x3f, 0xcc, 0x59, 0xad, 0x8b, 0x10, 0x61, 0x22, + 0x0a, 0xb1, 0x62, 0x58, 0x5e, 0x67, 0xbf, 0x6c, 0x33, 0xe6, 0x7e, 0x9b, 0xf5, 0xd9, 0xab, 0x0d, + 0xf9, 0xa5, 0x39, 0xe4, 0xbd, 0xda, 0x60, 0x10, 0x22, 0xa7, 0x6a, 0xfc, 0x89, 0x8a, 0x52, 0xb8, + 0x6b, 0x35, 0x2a, 0xc6, 0xf2, 0x55, 0xe2, 0xa6, 0x32, 0x5a, 0x6b, 0x0e, 0x99, 0xc9, 0x91, 0xce, + 0x48, 0x93, 0x03, 0x95, 0xd6, 0xcc, 0xe4, 0xf1, 0x8f, 0xb2, 0x65, 0x1c, 0x5d, 0xfb, 0x47, 0xd5, + 0x1f, 0x3f, 0x2e, 0xe3, 0x0c, 0x0f, 0xd6, 0x77, 0x76, 0x92, 0x11, 0x6d, 0x3c, 0xb6, 0x1e, 0xe3, + 0x06, 0x1d, 0x3d, 0x03, 0xda, 0xcb, 0xd6, 0x90, 0x9e, 0xad, 0xb0, 0x0c, 0x37, 0x00, 0xa0, 0x45, + 0x00, 0xb4, 0xf9, 0xc0, 0x21, 0x41, 0x5b, 0xb4, 0x85, 0x87, 0x04, 0x6d, 0x74, 0x5b, 0x54, 0xf6, + 0x56, 0x55, 0xb6, 0x65, 0x95, 0x6d, 0x5d, 0x35, 0x5b, 0x38, 0x19, 0x4e, 0xb2, 0xb4, 0x40, 0xdf, + 0xc1, 0xe2, 0xb4, 0xdc, 0x60, 0x0f, 0x63, 0xc7, 0x15, 0xca, 0xe2, 0x7c, 0x37, 0x77, 0x23, 0xff, + 0xc4, 0xbf, 0x53, 0xff, 0x9f, 0xfa, 0xd9, 0x55, 0xaf, 0xd3, 0xba, 0xbe, 0xaa, 0xe3, 0xec, 0x29, + 0x49, 0x38, 0xa4, 0x0a, 0x8f, 0x94, 0xe3, 0x92, 0x72, 0x7c, 0x52, 0x8b, 0x53, 0x72, 0x65, 0xca, + 0xe4, 0x9f, 0x3e, 0xad, 0x90, 0x66, 0x19, 0x65, 0x2b, 0x66, 0x1d, 0x29, 0x08, 0x03, 0x28, 0x4b, + 0x6c, 0xb3, 0x6e, 0x4f, 0x46, 0xb3, 0xc1, 0x98, 0x66, 0x28, 0xb4, 0x60, 0x35, 0x0d, 0x7c, 0x44, + 0x62, 0x57, 0xd6, 0xbb, 0x81, 0x5d, 0x81, 0x5d, 0x81, 0x5d, 0x81, 0x5d, 0x81, 0x5d, 0xc9, 0x9c, + 0x5d, 0x51, 0xec, 0xa7, 0x28, 0xf1, 0x4f, 0x00, 0xf4, 0x00, 0x7a, 0x00, 0x7d, 0x5a, 0x80, 0x1e, + 0x17, 0x11, 0xa5, 0x5e, 0x44, 0x94, 0x34, 0xdf, 0xa1, 0xca, 0x82, 0xee, 0xdc, 0x6a, 0x94, 0xf2, + 0xa1, 0xbb, 0x37, 0x1e, 0xa1, 0xcc, 0xe8, 0xce, 0x8d, 0xbf, 0x2c, 0x47, 0x2a, 0x19, 0x07, 0xfd, + 0x38, 0x4e, 0x8f, 0xb9, 0xb2, 0x21, 0x50, 0x11, 0x76, 0xbf, 0xc6, 0x6f, 0x67, 0x31, 0x3a, 0xc6, + 0xed, 0x63, 0x41, 0x41, 0x00, 0x9f, 0x6a, 0x1c, 0x0f, 0x60, 0xf9, 0x7c, 0x26, 0x12, 0x1a, 0xb4, + 0x96, 0x25, 0x72, 0xa9, 0x58, 0xac, 0x50, 0x22, 0x52, 0x80, 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0x82, + 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0xaa, 0x20, 0x97, 0xb8, 0x11, + 0xb1, 0x2d, 0x10, 0xff, 0x45, 0x6c, 0x25, 0xd2, 0x59, 0x22, 0x9d, 0xa5, 0x36, 0x06, 0x8f, 0x38, + 0x37, 0xc4, 0xb9, 0xfd, 0xa6, 0x21, 0xc4, 0xb9, 0x41, 0x49, 0x80, 0x92, 0x00, 0x25, 0x21, 0x33, + 0x4a, 0x02, 0xe2, 0x11, 0x10, 0xe7, 0x06, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, 0x02, 0xbb, + 0x82, 0x38, 0xb7, 0x70, 0xb3, 0x8c, 0x38, 0x37, 0x00, 0x3d, 0x80, 0x3e, 0xd7, 0x40, 0x8f, 0xa3, + 0x48, 0x1c, 0x45, 0xca, 0x69, 0x1c, 0x47, 0x91, 0x54, 0xd8, 0xbd, 0x87, 0xa3, 0x48, 0x1d, 0x60, + 0xbe, 0x87, 0x38, 0xb7, 0x30, 0x1b, 0x0a, 0x71, 0x6e, 0x20, 0x97, 0x20, 0x97, 0x20, 0x97, 0x20, + 0x97, 0x20, 0x97, 0x20, 0x97, 0x20, 0x97, 0x20, 0x97, 0xa9, 0x21, 0x97, 0x88, 0x73, 0xdb, 0x25, + 0xce, 0x0d, 0xc9, 0x7f, 0x13, 0x33, 0x17, 0xca, 0xf3, 0xff, 0xce, 0xfa, 0x6a, 0x2f, 0xba, 0x4a, + 0x70, 0xc2, 0xcc, 0x98, 0x99, 0xfa, 0xe4, 0x64, 0xe8, 0xcb, 0x5a, 0x92, 0x4c, 0x24, 0xfd, 0x8d, + 0xe6, 0x32, 0xa5, 0x28, 0xe9, 0x6f, 0xec, 0x14, 0x99, 0x72, 0x72, 0x6f, 0x07, 0x56, 0x9f, 0x8c, + 0x1c, 0xdc, 0x92, 0xa5, 0x93, 0xc4, 0x27, 0xcc, 0x44, 0x5d, 0x7c, 0xd4, 0xc5, 0x57, 0x2d, 0x74, + 0x3c, 0x6b, 0x9c, 0x03, 0x66, 0x0b, 0x2e, 0x1e, 0xe5, 0x88, 0x1c, 0xbe, 0xe5, 0x94, 0x50, 0x55, + 0xa5, 0xd0, 0x58, 0x3e, 0xda, 0x67, 0xd3, 0x53, 0x50, 0x7a, 0xb9, 0xf6, 0xb5, 0xd1, 0xbb, 0x9c, + 0xfd, 0xcf, 0xd5, 0x7f, 0xdb, 0xd2, 0x42, 0xc4, 0xe6, 0x65, 0x65, 0x3c, 0xa9, 0xf5, 0x98, 0x14, + 0xf9, 0xf3, 0x8d, 0xf6, 0xf7, 0x72, 0xef, 0xfa, 0xa2, 0x71, 0x56, 0xbb, 0xbc, 0x92, 0x28, 0x0b, + 0x7e, 0x48, 0xfa, 0x7b, 0x37, 0x1b, 0x17, 0x7f, 0x5e, 0x5e, 0xd5, 0xae, 0xea, 0x79, 0x7a, 0xe9, + 0xcb, 0xce, 0x55, 0xbd, 0xd7, 0x6e, 0x35, 0x1b, 0x67, 0xff, 0xed, 0x35, 0xda, 0xdf, 0xab, 0xb9, + 0x9a, 0xf0, 0xa3, 0xef, 0xed, 0x8b, 0xf9, 0x5b, 0xe7, 0x72, 0xb9, 0x97, 0x66, 0x6f, 0xff, 0xbd, + 0xdd, 0xbc, 0xcc, 0xe5, 0x26, 0xef, 0x5d, 0xb6, 0xbf, 0xe6, 0xf3, 0xc5, 0xbf, 0xb7, 0x2f, 0xf2, + 0xf4, 0xe2, 0x73, 0x73, 0xf6, 0xb5, 0xd9, 0xfa, 0xdf, 0xcb, 0x76, 0xfd, 0x2c, 0xa7, 0xf0, 0x76, + 0x7e, 0xdd, 0xbc, 0xca, 0x1d, 0xc0, 0x7d, 0x6f, 0x5f, 0xe4, 0x7d, 0xe6, 0xcb, 0xf9, 0x9c, 0xf9, + 0xf9, 0x9a, 0x6f, 0xd6, 0x3e, 0xd7, 0x9b, 0xf5, 0x2f, 0xb9, 0x34, 0xed, 0xcf, 0xf3, 0x9f, 0xc3, + 0xb7, 0x9f, 0xbf, 0x77, 0x8e, 0x67, 0x3f, 0xaf, 0x84, 0xf6, 0x95, 0x2b, 0x53, 0xce, 0x1f, 0x99, + 0xaf, 0xcb, 0xa5, 0x76, 0x52, 0x5a, 0xea, 0xea, 0xd6, 0xd5, 0xb4, 0x24, 0xdb, 0x60, 0xb6, 0x79, + 0x6b, 0xb1, 0x81, 0x3c, 0xb5, 0x7c, 0xd5, 0x60, 0xdc, 0x64, 0x03, 0xcf, 0xf7, 0x20, 0x87, 0xa6, + 0xe5, 0x41, 0x77, 0xdf, 0x61, 0xe8, 0xa1, 0xbb, 0x43, 0x77, 0xdf, 0xfe, 0x46, 0xf2, 0x75, 0xf7, + 0x5b, 0xc7, 0xb1, 0x98, 0x69, 0xcb, 0xd4, 0xdc, 0x8b, 0x08, 0xe4, 0x08, 0xd1, 0x8e, 0xcc, 0x40, + 0x8e, 0x38, 0xf9, 0xa2, 0x68, 0xe2, 0x2a, 0xee, 0x5c, 0xb3, 0xcf, 0x86, 0x13, 0xcb, 0x70, 0x99, + 0x27, 0x4c, 0x57, 0xc4, 0x8f, 0xb0, 0x08, 0xb4, 0x88, 0x58, 0x0b, 0xc4, 0x5a, 0x68, 0x32, 0x12, + 0x28, 0x47, 0x8a, 0x72, 0xa4, 0x60, 0x79, 0x60, 0x79, 0x49, 0x49, 0xd2, 0x26, 0xcb, 0x31, 0x54, + 0xe4, 0x20, 0xaa, 0x72, 0x14, 0x25, 0x3b, 0x8c, 0xd2, 0x21, 0x45, 0x05, 0xb4, 0xa8, 0x83, 0x18, + 0x55, 0x50, 0xa3, 0x1c, 0x72, 0x94, 0x43, 0x8f, 0x52, 0x08, 0x92, 0x2b, 0x8c, 0x25, 0xff, 0x86, + 0x9b, 0x3c, 0x47, 0x54, 0xb2, 0x43, 0x2a, 0x6f, 0x22, 0x70, 0x1b, 0x64, 0x9b, 0xe3, 0xfa, 0xda, + 0x89, 0x43, 0xe6, 0x63, 0x64, 0x3e, 0x06, 0xa5, 0x06, 0xa5, 0x06, 0xa5, 0x06, 0xa5, 0x06, 0xa5, + 0x06, 0xa5, 0x06, 0xa5, 0x06, 0xa5, 0x06, 0xa5, 0x8e, 0x47, 0xa9, 0x71, 0xc9, 0x3a, 0x51, 0xf3, + 0xa1, 0xfa, 0xa2, 0xf5, 0xb7, 0x65, 0x7f, 0x9d, 0x65, 0x77, 0x09, 0x3e, 0x14, 0xe4, 0xe3, 0xfb, + 0xb2, 0x61, 0x99, 0xb7, 0xcc, 0x62, 0x03, 0x63, 0x62, 0xf3, 0xbe, 0xe9, 0x49, 0x38, 0x18, 0xdc, + 0xd8, 0x2a, 0x0e, 0x07, 0x71, 0x38, 0xa8, 0x89, 0x85, 0xa4, 0xec, 0x70, 0x70, 0x31, 0x23, 0x86, + 0xc5, 0x47, 0x5c, 0xc8, 0x93, 0x33, 0xd6, 0x5a, 0xc5, 0x41, 0x21, 0x54, 0x0d, 0xa8, 0x1a, 0x49, + 0x50, 0x35, 0x24, 0x45, 0x02, 0x04, 0x96, 0xaf, 0x94, 0x88, 0x00, 0xc9, 0x1b, 0x1e, 0xda, 0x03, + 0xb4, 0x07, 0x68, 0x0f, 0x72, 0x01, 0xc4, 0x6f, 0x70, 0x64, 0x3e, 0x18, 0x8b, 0x59, 0x9f, 0xa7, + 0x1f, 0x50, 0x74, 0x01, 0x61, 0xad, 0x17, 0xc9, 0x93, 0x2f, 0x57, 0xe0, 0x54, 0x06, 0x36, 0x2a, + 0x41, 0x47, 0x3d, 0xf8, 0xa8, 0x06, 0x21, 0x32, 0x30, 0x22, 0x03, 0x25, 0x12, 0x70, 0x92, 0x0b, + 0x52, 0x92, 0xc1, 0xca, 0x1f, 0x01, 0xe9, 0x82, 0x69, 0x60, 0xbd, 0x4f, 0xb8, 0x2d, 0x8e, 0x4a, + 0x2a, 0xd6, 0xfb, 0x12, 0x5d, 0x8e, 0x15, 0x34, 0xdd, 0x31, 0xed, 0x3b, 0x26, 0x35, 0xe5, 0xcb, + 0xcb, 0x5f, 0x6a, 0xf6, 0xe7, 0xde, 0x32, 0xdf, 0xad, 0x32, 0x00, 0x50, 0x0c, 0xeb, 0x81, 0x6e, + 0xe6, 0x89, 0x77, 0x08, 0xfa, 0xf9, 0xea, 0x9a, 0x7d, 0xc1, 0x1d, 0xfb, 0x0b, 0xbf, 0xe3, 0xf3, + 0x4c, 0xbe, 0x87, 0xca, 0xfa, 0x9b, 0x7e, 0x50, 0x38, 0xf5, 0xe6, 0x43, 0xe6, 0xa6, 0xbe, 0x5c, + 0x3a, 0x29, 0x9f, 0x54, 0x8f, 0x4b, 0x27, 0x95, 0x0c, 0xad, 0x81, 0x77, 0xe9, 0x68, 0xb5, 0x9b, + 0xd4, 0x7c, 0xc4, 0x12, 0xfd, 0xb6, 0xb1, 0xcb, 0xee, 0x99, 0x2d, 0x0c, 0xc1, 0x4c, 0x77, 0xe0, + 0xfc, 0x6b, 0xab, 0xa3, 0xd9, 0x81, 0x9e, 0x24, 0x1b, 0x72, 0x45, 0x31, 0x0a, 0xa0, 0xf2, 0xa0, + 0xf2, 0xa0, 0xf2, 0xa0, 0xf2, 0x8a, 0x62, 0x20, 0x5e, 0xc3, 0x8b, 0xa4, 0x58, 0x88, 0x64, 0x1b, + 0x9d, 0xe5, 0xa1, 0xb5, 0x21, 0xf8, 0x88, 0xb9, 0xea, 0x2c, 0xce, 0x7a, 0x37, 0x30, 0x07, 0x30, + 0x07, 0x30, 0x07, 0x30, 0x07, 0x12, 0xd7, 0xfb, 0x80, 0xf5, 0xf9, 0xc8, 0xb4, 0xaa, 0x65, 0x95, + 0x06, 0xa1, 0xa4, 0xa0, 0xed, 0x80, 0xb3, 0x57, 0x82, 0x84, 0xa4, 0x47, 0x42, 0x2a, 0x41, 0x42, + 0xca, 0xab, 0x84, 0x74, 0x84, 0xa9, 0x87, 0x72, 0x94, 0x5e, 0x12, 0xff, 0xaf, 0xe9, 0xda, 0xdc, + 0xbe, 0x33, 0xc4, 0x4f, 0x97, 0x79, 0x3f, 0x1d, 0x6b, 0x60, 0x8c, 0xfb, 0x42, 0x1d, 0x99, 0xdf, + 0xdc, 0x1d, 0x48, 0x3d, 0x48, 0x3d, 0x48, 0x3d, 0x48, 0xbd, 0xc4, 0xf5, 0x3e, 0x66, 0x6e, 0x9f, + 0xd9, 0xc2, 0xbc, 0x63, 0x0a, 0x59, 0x7d, 0x05, 0x7c, 0x5b, 0x0f, 0xdf, 0xc6, 0x91, 0x6d, 0x6e, + 0xf9, 0x36, 0xd5, 0xd4, 0x17, 0x0f, 0xc1, 0xb8, 0xc1, 0xb8, 0xa5, 0xb6, 0x24, 0x2b, 0x42, 0x53, + 0xf2, 0x15, 0x43, 0xbf, 0x5d, 0x99, 0x57, 0xdb, 0x36, 0xdd, 0xb4, 0x3a, 0x78, 0x79, 0xd3, 0x43, + 0x4a, 0x3a, 0x0f, 0x79, 0xf3, 0x23, 0x61, 0x6e, 0x24, 0xa5, 0xf9, 0x08, 0x50, 0x19, 0x19, 0xe9, + 0x3e, 0x5e, 0xa3, 0xa8, 0xf4, 0x78, 0xf9, 0x12, 0xe2, 0xe5, 0x53, 0xe4, 0xf3, 0x20, 0x5e, 0x1e, + 0xf1, 0xf2, 0x88, 0x97, 0x87, 0x00, 0x03, 0x01, 0x06, 0x02, 0x8c, 0xa2, 0xf5, 0x8e, 0x78, 0x79, + 0x88, 0x2f, 0x10, 0x5f, 0x20, 0xbe, 0x44, 0x9a, 0x7a, 0xc4, 0xcb, 0x43, 0x83, 0x51, 0xb8, 0x87, + 0x10, 0x2f, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xbf, 0xd3, 0x7a, 0x47, 0xbc, 0xbc, + 0x94, 0x77, 0x45, 0xbc, 0x3c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0xe2, 0xe5, + 0x21, 0x21, 0xc5, 0x9c, 0x5e, 0xc4, 0xcb, 0xe7, 0x56, 0x42, 0x42, 0xbc, 0x3c, 0x94, 0xa3, 0x14, + 0x93, 0x78, 0xc4, 0xcb, 0x83, 0xd4, 0x83, 0xd4, 0x83, 0xd4, 0x67, 0x8d, 0xd4, 0x23, 0x5e, 0x3e, + 0xcb, 0x7c, 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0x88, 0x97, 0x07, 0xe3, 0xa6, 0x67, 0xdc, 0x88, + 0x97, 0x97, 0x1e, 0x2f, 0x2f, 0xa1, 0x56, 0x8f, 0xbc, 0xe9, 0x41, 0x8d, 0xa5, 0xc8, 0x13, 0x59, + 0x90, 0x72, 0xd3, 0xe0, 0xed, 0x62, 0x3f, 0x8d, 0xf1, 0x7d, 0xb9, 0xb9, 0x78, 0x8e, 0xeb, 0xc5, + 0x63, 0xf4, 0x16, 0x8e, 0x53, 0x73, 0xfe, 0x14, 0x28, 0xfa, 0x94, 0xa0, 0x05, 0xa2, 0xba, 0xf0, + 0x53, 0x70, 0x2d, 0x24, 0xbe, 0xf6, 0x93, 0xdc, 0x9a, 0x4f, 0xa8, 0xf5, 0x84, 0x5a, 0x4f, 0x9a, + 0x95, 0x87, 0x94, 0xd5, 0x7a, 0x92, 0x54, 0xfe, 0x45, 0x6e, 0xd9, 0x17, 0xd4, 0x77, 0xd2, 0x29, + 0x35, 0xa2, 0xbe, 0x53, 0x02, 0xb8, 0xaf, 0xb4, 0xfa, 0x4e, 0x1e, 0xb3, 0x07, 0xc6, 0x60, 0x11, + 0x3e, 0x6a, 0xb8, 0xce, 0x44, 0xc9, 0xd5, 0xd5, 0x60, 0x1f, 0xa8, 0x65, 0x9d, 0x14, 0xc0, 0x51, + 0x07, 0x3c, 0xaa, 0x00, 0x48, 0x39, 0x10, 0x29, 0x07, 0x24, 0xa5, 0xc0, 0x94, 0x4c, 0xf5, 0x05, + 0xb5, 0xac, 0xa1, 0xb3, 0xa8, 0x72, 0xa3, 0x57, 0xfa, 0x8a, 0x8c, 0x5c, 0x12, 0x31, 0x34, 0x8d, + 0x0f, 0x28, 0xa9, 0x0a, 0xca, 0x0d, 0xca, 0x0d, 0xca, 0x4d, 0xe3, 0x53, 0xab, 0xf1, 0xad, 0x25, + 0x6f, 0x78, 0x50, 0x60, 0x50, 0x60, 0x50, 0x60, 0xb9, 0x00, 0xe2, 0x37, 0x88, 0x14, 0x31, 0x44, + 0x60, 0xa3, 0x12, 0x74, 0xd4, 0x83, 0x8f, 0x6a, 0x10, 0x22, 0x03, 0x23, 0x32, 0x50, 0x22, 0x01, + 0x27, 0xb9, 0x20, 0x25, 0x19, 0xac, 0xd4, 0xf9, 0xed, 0x81, 0xf5, 0x8e, 0x14, 0x31, 0x81, 0x5f, + 0x88, 0x37, 0xdc, 0xa9, 0x1b, 0xc4, 0x1b, 0x86, 0x9b, 0x7a, 0xa4, 0x88, 0x49, 0xc7, 0x1a, 0x40, + 0xd8, 0x61, 0x52, 0xf6, 0x10, 0x52, 0xc4, 0x80, 0xca, 0x83, 0xca, 0x83, 0xca, 0x83, 0xca, 0xef, + 0xb4, 0xde, 0x91, 0x22, 0x46, 0xca, 0xbb, 0x22, 0x45, 0x0c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, + 0xda, 0xcd, 0x01, 0x52, 0xc4, 0x40, 0x42, 0x8a, 0x39, 0xbd, 0x48, 0x11, 0x93, 0x5b, 0x09, 0x09, + 0x29, 0x62, 0xa0, 0x1c, 0xa5, 0x98, 0xc4, 0x23, 0x45, 0x0c, 0x48, 0x3d, 0x48, 0x3d, 0x48, 0x7d, + 0xd6, 0x48, 0x3d, 0x52, 0xc4, 0x64, 0x99, 0x6f, 0xe3, 0xc8, 0x36, 0xb7, 0x7c, 0x1b, 0x29, 0x62, + 0xc0, 0xb8, 0xe9, 0x19, 0x37, 0x52, 0xc4, 0xc4, 0xb9, 0xf1, 0x82, 0x52, 0xaa, 0x51, 0x28, 0x0c, + 0x4a, 0xa9, 0x26, 0xd5, 0xf7, 0x41, 0x9c, 0xbc, 0x16, 0xdf, 0x06, 0x71, 0xf2, 0x12, 0x36, 0x03, + 0xe2, 0xe4, 0x21, 0xbc, 0x40, 0x78, 0x81, 0xf0, 0xa2, 0x6a, 0xbd, 0x23, 0x4e, 0x1e, 0xa2, 0x0b, + 0x44, 0x17, 0x88, 0x2e, 0x91, 0xa6, 0x1e, 0x71, 0xf2, 0xd0, 0x5e, 0x14, 0xee, 0x21, 0xc4, 0xc9, + 0x83, 0xca, 0x83, 0xca, 0x83, 0xca, 0x83, 0xca, 0xef, 0xb4, 0xde, 0x11, 0x27, 0x2f, 0xe5, 0x5d, + 0x11, 0x27, 0x0f, 0x73, 0x00, 0x73, 0x00, 0x73, 0x90, 0x76, 0x73, 0x80, 0x38, 0x79, 0x48, 0x48, + 0x31, 0xa7, 0x17, 0x71, 0xf2, 0xb9, 0x95, 0x90, 0x10, 0x27, 0x0f, 0xe5, 0x28, 0xc5, 0x24, 0x1e, + 0x71, 0xf2, 0x20, 0xf5, 0x20, 0xf5, 0x20, 0xf5, 0x59, 0x23, 0xf5, 0x88, 0x93, 0xcf, 0x32, 0xdf, + 0xc6, 0x91, 0x6d, 0x6e, 0xf9, 0x36, 0xe2, 0xe4, 0xc1, 0xb8, 0xe9, 0x19, 0x37, 0xe2, 0xe4, 0xa5, + 0xc5, 0xc9, 0xa3, 0x84, 0xaa, 0xaa, 0x89, 0xa4, 0x99, 0x40, 0xca, 0xd2, 0xa9, 0x49, 0xaa, 0x99, + 0x1a, 0xab, 0x3a, 0xa8, 0x8c, 0x8b, 0x14, 0x52, 0x2f, 0x50, 0x48, 0xaf, 0x28, 0x52, 0x42, 0x45, + 0x91, 0x04, 0x38, 0xb5, 0xa8, 0x28, 0xb2, 0xfb, 0x1b, 0xa1, 0x88, 0xdf, 0x1e, 0x8a, 0xf8, 0xe1, + 0x66, 0x16, 0x6e, 0x66, 0xa5, 0x85, 0xf7, 0xa3, 0x88, 0x1f, 0x98, 0xbe, 0x6a, 0xa6, 0x2f, 0xc1, + 0x3b, 0x9b, 0xa6, 0xa4, 0x3a, 0xb7, 0xa4, 0x39, 0x51, 0x36, 0x17, 0x85, 0x58, 0x1e, 0x47, 0x28, + 0x07, 0x2b, 0xda, 0x84, 0x87, 0x9f, 0xae, 0x08, 0x53, 0x55, 0xe0, 0xe3, 0xfb, 0xaa, 0x61, 0x99, + 0xb7, 0xcc, 0x62, 0x03, 0x7f, 0x68, 0xa2, 0x4e, 0x98, 0x8f, 0x78, 0x1b, 0x5b, 0x8d, 0xb8, 0x90, + 0xe2, 0xb9, 0x52, 0xb1, 0x99, 0x8d, 0x0c, 0x26, 0x23, 0x8f, 0xb9, 0xc8, 0x62, 0x2a, 0xd2, 0x99, + 0x89, 0x74, 0x26, 0x22, 0x95, 0x79, 0xd0, 0x42, 0x5f, 0x5c, 0xd7, 0x07, 0x15, 0x53, 0xa1, 0x6f, + 0x40, 0xdf, 0xc8, 0x8b, 0xbe, 0x81, 0x8a, 0xa9, 0xd0, 0x1b, 0xa0, 0x37, 0xe4, 0x4f, 0x6f, 0x40, + 0x26, 0x18, 0xc5, 0xa2, 0xa6, 0x32, 0xb0, 0x51, 0x09, 0x3a, 0xea, 0xc1, 0x47, 0x35, 0x08, 0x91, + 0x81, 0x11, 0x19, 0x28, 0x91, 0x80, 0x93, 0x5c, 0x90, 0x92, 0x0c, 0x56, 0xfe, 0x08, 0x20, 0x13, + 0xcc, 0xc6, 0xa6, 0x11, 0x56, 0x48, 0x0f, 0xeb, 0x81, 0x6e, 0x10, 0x56, 0x18, 0x6e, 0xea, 0x91, + 0x09, 0x26, 0x1d, 0x6b, 0x00, 0xd1, 0x85, 0x49, 0xd9, 0x43, 0xc8, 0x04, 0x03, 0x2a, 0x0f, 0x2a, + 0x0f, 0x2a, 0x0f, 0x2a, 0xbf, 0xd3, 0x7a, 0x47, 0x26, 0x18, 0x29, 0xef, 0x8a, 0x4c, 0x30, 0x30, + 0x07, 0x30, 0x07, 0x30, 0x07, 0x69, 0x37, 0x07, 0xc8, 0x04, 0x03, 0x09, 0x29, 0xe6, 0xf4, 0x22, + 0x13, 0x4c, 0x6e, 0x25, 0x24, 0x64, 0x82, 0x81, 0x72, 0x94, 0x62, 0x12, 0x8f, 0x4c, 0x30, 0x20, + 0xf5, 0x20, 0xf5, 0x20, 0xf5, 0x59, 0x23, 0xf5, 0xc8, 0x04, 0x93, 0x65, 0xbe, 0x8d, 0x23, 0xdb, + 0xdc, 0xf2, 0x6d, 0x64, 0x82, 0x01, 0xe3, 0xa6, 0x67, 0xdc, 0xc8, 0x04, 0x13, 0xfe, 0x4a, 0x5b, + 0xe0, 0xa6, 0x15, 0x2a, 0xa7, 0x46, 0xa2, 0x32, 0xa8, 0x9c, 0x9a, 0x54, 0x1f, 0x08, 0xf1, 0xf2, + 0x5a, 0x7c, 0x1c, 0xc4, 0xcb, 0x4b, 0xd8, 0x0c, 0x88, 0x97, 0x87, 0x00, 0x03, 0x01, 0x06, 0x02, + 0x8c, 0xaa, 0xf5, 0x8e, 0x78, 0x79, 0x88, 0x2f, 0x10, 0x5f, 0x20, 0xbe, 0x44, 0x9a, 0x7a, 0xc4, + 0xcb, 0x43, 0x83, 0x51, 0xb8, 0x87, 0x10, 0x2f, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, + 0xbf, 0xd3, 0x7a, 0x47, 0xbc, 0xbc, 0x94, 0x77, 0x45, 0xbc, 0x3c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, + 0x41, 0xda, 0xcd, 0x01, 0xe2, 0xe5, 0x21, 0x21, 0xc5, 0x9c, 0x5e, 0xc4, 0xcb, 0xe7, 0x56, 0x42, + 0x42, 0xbc, 0x3c, 0x94, 0xa3, 0x14, 0x93, 0x78, 0xc4, 0xcb, 0x83, 0xd4, 0x83, 0xd4, 0x83, 0xd4, + 0x67, 0x8d, 0xd4, 0x23, 0x5e, 0x3e, 0xcb, 0x7c, 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0x88, 0x97, + 0x07, 0xe3, 0xa6, 0x67, 0xdc, 0x88, 0x97, 0x97, 0x1e, 0x2f, 0x8f, 0x0a, 0xaa, 0xaa, 0x26, 0x94, + 0x76, 0x22, 0x09, 0x2b, 0xa9, 0x56, 0x9b, 0x8b, 0xe7, 0x48, 0x52, 0x41, 0x55, 0x14, 0x7b, 0x92, + 0x57, 0x83, 0x28, 0xc6, 0x5a, 0x48, 0x7c, 0xed, 0x27, 0xb9, 0x35, 0x9f, 0x50, 0xeb, 0x09, 0xb5, + 0x9e, 0x34, 0x2b, 0x0f, 0x29, 0xab, 0xf5, 0x24, 0xa9, 0xfc, 0x8b, 0xdc, 0xb2, 0x2f, 0xa8, 0xef, + 0xa4, 0x53, 0x6a, 0x44, 0x7d, 0xa7, 0x04, 0x70, 0x5f, 0xd4, 0xaf, 0xde, 0x43, 0xfd, 0x6a, 0xdc, + 0x8f, 0xc5, 0xfd, 0xd8, 0xb4, 0xa8, 0x2f, 0xa8, 0x5f, 0x0d, 0x9d, 0x45, 0x95, 0x1b, 0xbd, 0xd2, + 0x57, 0x64, 0xe4, 0x92, 0x88, 0xa1, 0x69, 0x7c, 0x40, 0x49, 0x55, 0x50, 0x6e, 0x50, 0x6e, 0x50, + 0x6e, 0x1a, 0x9f, 0x5a, 0x8d, 0x6f, 0x2d, 0x79, 0xc3, 0x83, 0x02, 0x83, 0x02, 0x83, 0x02, 0xcb, + 0x05, 0x10, 0xbf, 0x41, 0xa4, 0x88, 0x21, 0x02, 0x1b, 0x95, 0xa0, 0xa3, 0x1e, 0x7c, 0x54, 0x83, + 0x10, 0x19, 0x18, 0x91, 0x81, 0x12, 0x09, 0x38, 0xc9, 0x05, 0x29, 0xc9, 0x60, 0xa5, 0xce, 0x6f, + 0x0f, 0xac, 0x77, 0xa4, 0x88, 0x09, 0xfc, 0x42, 0xbc, 0xe1, 0x4e, 0xdd, 0x20, 0xde, 0x30, 0xdc, + 0xd4, 0x23, 0x45, 0x4c, 0x3a, 0xd6, 0x00, 0xc2, 0x0e, 0x93, 0xb2, 0x87, 0x90, 0x22, 0x06, 0x54, + 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, 0x14, 0x31, 0x52, 0xde, 0x15, 0x29, + 0x62, 0x60, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0xd2, 0x6e, 0x0e, 0x90, 0x22, 0x06, 0x12, 0x52, 0xcc, + 0xe9, 0x45, 0x8a, 0x98, 0xdc, 0x4a, 0x48, 0x48, 0x11, 0x03, 0xe5, 0x28, 0xc5, 0x24, 0x1e, 0x29, + 0x62, 0x40, 0xea, 0x41, 0xea, 0x41, 0xea, 0xb3, 0x46, 0xea, 0x91, 0x22, 0x26, 0xcb, 0x7c, 0x1b, + 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0x48, 0x11, 0x03, 0xc6, 0x4d, 0xcf, 0xb8, 0x91, 0x22, 0x26, 0xce, + 0x8d, 0x17, 0x94, 0x52, 0x8d, 0x42, 0x61, 0x50, 0x4a, 0x35, 0xa9, 0xbe, 0x0f, 0xe2, 0xe4, 0xb5, + 0xf8, 0x36, 0x88, 0x93, 0x97, 0xb0, 0x19, 0x10, 0x27, 0x0f, 0xe1, 0x05, 0xc2, 0x0b, 0x84, 0x17, + 0x55, 0xeb, 0x1d, 0x71, 0xf2, 0x10, 0x5d, 0x20, 0xba, 0x40, 0x74, 0x89, 0x34, 0xf5, 0x88, 0x93, + 0x87, 0xf6, 0xa2, 0x70, 0x0f, 0x21, 0x4e, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, + 0xa7, 0xf5, 0x8e, 0x38, 0x79, 0x29, 0xef, 0x8a, 0x38, 0x79, 0x98, 0x03, 0x98, 0x03, 0x98, 0x83, + 0xb4, 0x9b, 0x03, 0xc4, 0xc9, 0x43, 0x42, 0x8a, 0x39, 0xbd, 0x88, 0x93, 0xcf, 0xad, 0x84, 0x84, + 0x38, 0x79, 0x28, 0x47, 0x29, 0x26, 0xf1, 0x88, 0x93, 0x07, 0xa9, 0x07, 0xa9, 0x07, 0xa9, 0xcf, + 0x1a, 0xa9, 0x47, 0x9c, 0x7c, 0x96, 0xf9, 0x36, 0x8e, 0x6c, 0x73, 0xcb, 0xb7, 0x11, 0x27, 0x0f, + 0xc6, 0x4d, 0xcf, 0xb8, 0x11, 0x27, 0x2f, 0x2d, 0x4e, 0x1e, 0x25, 0x54, 0x55, 0x4d, 0x24, 0xcd, + 0x04, 0x52, 0x96, 0x4e, 0x4d, 0x52, 0xcd, 0xd4, 0x58, 0xd5, 0x41, 0x65, 0x5c, 0xa4, 0x90, 0x7a, + 0x81, 0x42, 0x7a, 0x45, 0x91, 0x12, 0x2a, 0x8a, 0x24, 0xc0, 0xa9, 0x45, 0x45, 0x91, 0xdd, 0xdf, + 0x08, 0x45, 0xfc, 0xf6, 0x50, 0xc4, 0x0f, 0x37, 0xb3, 0x70, 0x33, 0x2b, 0x2d, 0xbc, 0x1f, 0x45, + 0xfc, 0xc0, 0xf4, 0x55, 0x33, 0x7d, 0x09, 0xde, 0xd9, 0x34, 0x25, 0xd5, 0xb9, 0x25, 0xcd, 0x89, + 0xb2, 0xb9, 0x28, 0xc4, 0xf2, 0x38, 0x42, 0x39, 0x58, 0xd1, 0x26, 0x3c, 0xfc, 0x74, 0x45, 0x98, + 0xaa, 0x82, 0x55, 0xba, 0x1f, 0xdb, 0x06, 0xbb, 0x1f, 0x47, 0x9f, 0x26, 0x1f, 0xe7, 0x5e, 0xb4, + 0x15, 0x71, 0xd1, 0xc4, 0x73, 0x9b, 0x62, 0xb3, 0x18, 0x19, 0xac, 0x45, 0x1e, 0x4b, 0x91, 0xc5, + 0x4a, 0xa4, 0xb3, 0x10, 0xe9, 0xac, 0x43, 0x2a, 0xcb, 0xa0, 0x85, 0xb9, 0xb8, 0x6e, 0x0e, 0xaa, + 0xa3, 0x42, 0xcb, 0x80, 0x96, 0x91, 0x17, 0x2d, 0x03, 0xd5, 0x51, 0xa1, 0x2d, 0x40, 0x5b, 0xc8, + 0x9f, 0xb6, 0x80, 0xac, 0x2f, 0x8a, 0x05, 0x4c, 0x65, 0x60, 0xa3, 0x12, 0x74, 0xd4, 0x83, 0x8f, + 0x6a, 0x10, 0x22, 0x03, 0x23, 0x32, 0x50, 0x22, 0x01, 0x27, 0xb9, 0x20, 0x25, 0x19, 0xac, 0xfc, + 0x11, 0x40, 0xd6, 0x97, 0x8d, 0x4d, 0x23, 0x84, 0x90, 0x1e, 0xd6, 0x03, 0xdd, 0x20, 0x84, 0x30, + 0xdc, 0xd4, 0x23, 0xeb, 0x4b, 0x3a, 0xd6, 0x00, 0x22, 0x09, 0x93, 0xb2, 0x87, 0x90, 0xf5, 0x05, + 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, 0xac, 0x2f, 0x52, 0xde, 0x15, + 0x59, 0x5f, 0x60, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0xd2, 0x6e, 0x0e, 0x90, 0xf5, 0x05, 0x12, 0x52, + 0xcc, 0xe9, 0x45, 0xd6, 0x97, 0xdc, 0x4a, 0x48, 0xc8, 0xfa, 0x02, 0xe5, 0x28, 0xc5, 0x24, 0x1e, + 0x59, 0x5f, 0x40, 0xea, 0x41, 0xea, 0x41, 0xea, 0xb3, 0x46, 0xea, 0x91, 0xf5, 0x25, 0xcb, 0x7c, + 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0xc8, 0xfa, 0x02, 0xc6, 0x4d, 0xcf, 0xb8, 0x91, 0xf5, 0x25, + 0xe4, 0xf5, 0xb5, 0xe7, 0xfb, 0x55, 0xa8, 0x8d, 0x1a, 0x89, 0xc0, 0xa0, 0x36, 0x6a, 0x52, 0x3d, + 0x1f, 0x44, 0xc9, 0x6b, 0xf1, 0x6c, 0x10, 0x25, 0x2f, 0x61, 0x33, 0x20, 0x4a, 0x1e, 0xb2, 0x0b, + 0x64, 0x17, 0xc8, 0x2e, 0xaa, 0xd6, 0x3b, 0xa2, 0xe4, 0x21, 0xb9, 0x40, 0x72, 0x81, 0xe4, 0x12, + 0x69, 0xea, 0x11, 0x25, 0x0f, 0xe5, 0x45, 0xe1, 0x1e, 0x42, 0x94, 0x3c, 0xa8, 0x3c, 0xa8, 0x3c, + 0xa8, 0x3c, 0xa8, 0xfc, 0x4e, 0xeb, 0x1d, 0x51, 0xf2, 0x52, 0xde, 0x15, 0x51, 0xf2, 0x30, 0x07, + 0x30, 0x07, 0x30, 0x07, 0x69, 0x37, 0x07, 0x88, 0x92, 0x87, 0x84, 0x14, 0x73, 0x7a, 0x11, 0x25, + 0x9f, 0x5b, 0x09, 0x09, 0x51, 0xf2, 0x50, 0x8e, 0x52, 0x4c, 0xe2, 0x11, 0x25, 0x0f, 0x52, 0x0f, + 0x52, 0x0f, 0x52, 0x9f, 0x35, 0x52, 0x8f, 0x28, 0xf9, 0x2c, 0xf3, 0x6d, 0x1c, 0xd9, 0xe6, 0x96, + 0x6f, 0x23, 0x4a, 0x1e, 0x8c, 0x9b, 0x9e, 0x71, 0x23, 0x4a, 0x5e, 0x52, 0x94, 0x3c, 0x2a, 0xa3, + 0xaa, 0x9a, 0x46, 0x8a, 0xe9, 0xa3, 0xaa, 0x8b, 0xda, 0x2c, 0x7d, 0x1f, 0xdb, 0xf5, 0xfb, 0xb1, + 0x9d, 0x88, 0xaa, 0xa8, 0xb9, 0xaf, 0xd8, 0x14, 0xbb, 0xa4, 0x50, 0xf8, 0x89, 0x4f, 0x7e, 0xb5, + 0xa6, 0xfb, 0xb1, 0xe5, 0xc9, 0xaa, 0xd6, 0x34, 0x6f, 0x0b, 0xd5, 0x9a, 0x50, 0xad, 0x49, 0x93, + 0x8a, 0x80, 0x6a, 0x4d, 0xa8, 0xd6, 0xa4, 0x4f, 0x52, 0x44, 0xb5, 0x26, 0x54, 0x6b, 0xda, 0xde, + 0x10, 0xaa, 0x35, 0xc9, 0x68, 0x10, 0xf7, 0x50, 0x71, 0x0f, 0x35, 0x5d, 0x2a, 0x07, 0xee, 0xa1, + 0x12, 0x49, 0xa0, 0x38, 0xd8, 0x24, 0x05, 0x21, 0x32, 0x30, 0x22, 0x03, 0x25, 0x12, 0x70, 0x92, + 0x0b, 0x52, 0x92, 0xc1, 0xca, 0x1f, 0x01, 0xdc, 0x43, 0xdd, 0xd8, 0x34, 0x0e, 0x35, 0xe9, 0x61, + 0x3d, 0xd0, 0x0d, 0x0e, 0x35, 0xc3, 0x4d, 0x3d, 0xee, 0xa1, 0xa6, 0x63, 0x0d, 0xe0, 0x6c, 0x33, + 0x29, 0x7b, 0x08, 0xf7, 0x50, 0x41, 0xe5, 0x41, 0xe5, 0x41, 0xe5, 0x41, 0xe5, 0x77, 0x5a, 0xef, + 0xb8, 0x87, 0x2a, 0xe5, 0x5d, 0x71, 0x0f, 0x15, 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x20, 0xed, 0xe6, + 0x00, 0xf7, 0x50, 0x21, 0x21, 0xc5, 0x9c, 0x5e, 0xdc, 0x43, 0xcd, 0xad, 0x84, 0x84, 0x7b, 0xa8, + 0x50, 0x8e, 0x52, 0x4c, 0xe2, 0x71, 0x0f, 0x15, 0xa4, 0x1e, 0xa4, 0x1e, 0xa4, 0x3e, 0x6b, 0xa4, + 0x1e, 0xf7, 0x50, 0xb3, 0xcc, 0xb7, 0x71, 0x64, 0x9b, 0x5b, 0xbe, 0x8d, 0x7b, 0xa8, 0x60, 0xdc, + 0xf4, 0x8c, 0x1b, 0xf7, 0x50, 0x23, 0x5d, 0x5d, 0xbb, 0x1f, 0x5b, 0x1e, 0xaa, 0x35, 0x45, 0x22, + 0x30, 0xa8, 0xd6, 0x94, 0x54, 0xcf, 0x07, 0x51, 0xf2, 0x5a, 0x3c, 0x1b, 0x44, 0xc9, 0x4b, 0xd8, + 0x0c, 0x88, 0x92, 0x87, 0xec, 0x02, 0xd9, 0x05, 0xb2, 0x8b, 0xaa, 0xf5, 0x8e, 0x28, 0x79, 0x48, + 0x2e, 0x90, 0x5c, 0x20, 0xb9, 0x44, 0x9a, 0x7a, 0x44, 0xc9, 0x43, 0x79, 0x51, 0xb8, 0x87, 0x10, + 0x25, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xbf, 0xd3, 0x7a, 0x47, 0x94, 0xbc, 0x94, + 0x77, 0x45, 0x94, 0x3c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0xa2, 0xe4, 0x21, + 0x21, 0xc5, 0x9c, 0x5e, 0x44, 0xc9, 0xe7, 0x56, 0x42, 0x42, 0x94, 0x3c, 0x94, 0xa3, 0x14, 0x93, + 0x78, 0x44, 0xc9, 0x83, 0xd4, 0x83, 0xd4, 0x83, 0xd4, 0x67, 0x8d, 0xd4, 0x23, 0x4a, 0x3e, 0xcb, + 0x7c, 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0x88, 0x92, 0x07, 0xe3, 0xa6, 0x67, 0xdc, 0x88, 0x92, + 0x97, 0x14, 0x25, 0x8f, 0x6a, 0x4d, 0xaa, 0xa6, 0x91, 0x62, 0xfa, 0x48, 0xab, 0x35, 0x7d, 0x1f, + 0x5b, 0x1e, 0xaa, 0x35, 0x25, 0x6b, 0x35, 0x90, 0x54, 0x6b, 0x9a, 0x4d, 0x7c, 0xa2, 0xab, 0x35, + 0x1d, 0xcd, 0x86, 0x83, 0x8f, 0xef, 0xcb, 0xc6, 0x68, 0x62, 0x09, 0xde, 0x37, 0x3d, 0x21, 0xa1, + 0x6e, 0xd3, 0xa6, 0x56, 0x51, 0xc1, 0x09, 0x15, 0x9c, 0x34, 0x29, 0x0b, 0xa8, 0xe0, 0x84, 0x0a, + 0x4e, 0xfa, 0x64, 0x46, 0x54, 0x70, 0x42, 0x05, 0xa7, 0xed, 0x0d, 0xa1, 0x82, 0x93, 0x8c, 0x06, + 0x71, 0x37, 0x15, 0x77, 0x53, 0xd3, 0xa5, 0x7c, 0xe0, 0x6e, 0x2a, 0x91, 0x2c, 0x8a, 0xc3, 0x4e, + 0x52, 0x10, 0x22, 0x03, 0x23, 0x32, 0x50, 0x22, 0x01, 0x27, 0xb9, 0x20, 0x25, 0x19, 0xac, 0xfc, + 0x11, 0xc0, 0xdd, 0xd4, 0x8d, 0x4d, 0xe3, 0xa0, 0x93, 0x1e, 0xd6, 0x03, 0xdd, 0xe0, 0xa0, 0x33, + 0xdc, 0xd4, 0xe3, 0x6e, 0x6a, 0x3a, 0xd6, 0x00, 0xce, 0x3b, 0x93, 0xb2, 0x87, 0x70, 0x37, 0x15, + 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, 0xbb, 0xa9, 0x52, 0xde, 0x15, + 0x77, 0x53, 0x61, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0xd2, 0x6e, 0x0e, 0x70, 0x37, 0x15, 0x12, 0x52, + 0xcc, 0xe9, 0xc5, 0xdd, 0xd4, 0xdc, 0x4a, 0x48, 0xb8, 0x9b, 0x0a, 0xe5, 0x28, 0xc5, 0x24, 0x1e, + 0x77, 0x53, 0x41, 0xea, 0x41, 0xea, 0x41, 0xea, 0xb3, 0x46, 0xea, 0x71, 0x37, 0x35, 0xcb, 0x7c, + 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0xb8, 0x9b, 0x0a, 0xc6, 0x4d, 0xcf, 0xb8, 0x71, 0x37, 0x35, + 0xec, 0x75, 0xb6, 0x0d, 0x37, 0xad, 0x50, 0xcb, 0x29, 0x12, 0x95, 0x41, 0x2d, 0xa7, 0xa4, 0xfa, + 0x40, 0x88, 0x97, 0xd7, 0xe2, 0xe3, 0x20, 0x5e, 0x5e, 0xc2, 0x66, 0x40, 0xbc, 0x3c, 0x04, 0x18, + 0x08, 0x30, 0x10, 0x60, 0x54, 0xad, 0x77, 0xc4, 0xcb, 0x43, 0x7c, 0x81, 0xf8, 0x02, 0xf1, 0x25, + 0xd2, 0xd4, 0x23, 0x5e, 0x1e, 0x1a, 0x8c, 0xc2, 0x3d, 0x84, 0x78, 0x79, 0x50, 0x79, 0x50, 0x79, + 0x50, 0x79, 0x50, 0xf9, 0x9d, 0xd6, 0x3b, 0xe2, 0xe5, 0xa5, 0xbc, 0x2b, 0xe2, 0xe5, 0x61, 0x0e, + 0x60, 0x0e, 0x60, 0x0e, 0xd2, 0x6e, 0x0e, 0x10, 0x2f, 0x0f, 0x09, 0x29, 0xe6, 0xf4, 0x22, 0x5e, + 0x3e, 0xb7, 0x12, 0x12, 0xe2, 0xe5, 0xa1, 0x1c, 0xa5, 0x98, 0xc4, 0x23, 0x5e, 0x1e, 0xa4, 0x1e, + 0xa4, 0x1e, 0xa4, 0x3e, 0x6b, 0xa4, 0x1e, 0xf1, 0xf2, 0x59, 0xe6, 0xdb, 0x38, 0xb2, 0xcd, 0x2d, + 0xdf, 0x46, 0xbc, 0x3c, 0x18, 0x37, 0x3d, 0xe3, 0x46, 0xbc, 0xbc, 0xf4, 0x78, 0x79, 0x54, 0x75, + 0x52, 0x35, 0xa1, 0xb4, 0x13, 0x49, 0x56, 0xdf, 0xe9, 0xe8, 0xfb, 0xd8, 0x6e, 0x8c, 0xef, 0xcb, + 0xe7, 0xab, 0xc7, 0x40, 0xa1, 0xa7, 0xa4, 0x2e, 0x10, 0xe5, 0x25, 0x9f, 0x02, 0x6b, 0x21, 0x25, + 0xb5, 0x9f, 0x26, 0xb6, 0xfc, 0xca, 0x4f, 0xab, 0x36, 0x51, 0xf7, 0x09, 0x75, 0x9f, 0x34, 0xa9, + 0x10, 0xa8, 0xfb, 0x84, 0xba, 0x4f, 0xfa, 0x24, 0x49, 0xd4, 0x7d, 0x42, 0xdd, 0xa7, 0xed, 0x0d, + 0xa1, 0xee, 0x93, 0x8c, 0x06, 0x71, 0x8f, 0x15, 0xf7, 0x58, 0xd3, 0xa5, 0x92, 0xe0, 0x1e, 0x2b, + 0x91, 0x84, 0x8a, 0x83, 0x51, 0x52, 0x10, 0x22, 0x03, 0x23, 0x32, 0x50, 0x22, 0x01, 0x27, 0xb9, + 0x20, 0x25, 0x19, 0xac, 0xfc, 0x11, 0xc0, 0x3d, 0xd6, 0x8d, 0x4d, 0xe3, 0x50, 0x94, 0x1e, 0xd6, + 0x03, 0xdd, 0xe0, 0x50, 0x34, 0xdc, 0xd4, 0xe3, 0x1e, 0x6b, 0x3a, 0xd6, 0x00, 0xce, 0x46, 0x93, + 0xb2, 0x87, 0x70, 0x8f, 0x15, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, + 0x7b, 0xac, 0x52, 0xde, 0x15, 0xf7, 0x58, 0x61, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0xd2, 0x6e, 0x0e, + 0x70, 0x8f, 0x15, 0x12, 0x52, 0xcc, 0xe9, 0xc5, 0x3d, 0xd6, 0xdc, 0x4a, 0x48, 0xb8, 0xc7, 0x0a, + 0xe5, 0x28, 0xc5, 0x24, 0x1e, 0xf7, 0x58, 0x41, 0xea, 0x41, 0xea, 0x41, 0xea, 0xb3, 0x46, 0xea, + 0x71, 0x8f, 0x35, 0xcb, 0x7c, 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0xb8, 0xc7, 0x0a, 0xc6, 0x4d, + 0xcf, 0xb8, 0x71, 0x8f, 0x35, 0xfa, 0xed, 0xb6, 0xe5, 0x3d, 0x2b, 0x54, 0x7d, 0x8a, 0x44, 0x64, + 0x50, 0xf5, 0x29, 0xa9, 0x1e, 0x10, 0xa2, 0xe5, 0xb5, 0x78, 0x38, 0x88, 0x96, 0x97, 0xb0, 0x19, + 0x10, 0x2d, 0x0f, 0xf9, 0x05, 0xf2, 0x0b, 0xe4, 0x17, 0x55, 0xeb, 0x1d, 0xd1, 0xf2, 0x90, 0x5e, + 0x20, 0xbd, 0x40, 0x7a, 0x89, 0x34, 0xf5, 0x88, 0x96, 0x87, 0x02, 0xa3, 0x70, 0x0f, 0x21, 0x5a, + 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, 0x68, 0x79, 0x29, 0xef, + 0x8a, 0x68, 0x79, 0x98, 0x03, 0x98, 0x03, 0x98, 0x83, 0xb4, 0x9b, 0x03, 0x44, 0xcb, 0x43, 0x42, + 0x8a, 0x39, 0xbd, 0x88, 0x96, 0xcf, 0xad, 0x84, 0x84, 0x68, 0x79, 0x28, 0x47, 0x29, 0x26, 0xf1, + 0x88, 0x96, 0x07, 0xa9, 0x07, 0xa9, 0x07, 0xa9, 0xcf, 0x1a, 0xa9, 0x47, 0xb4, 0x7c, 0x96, 0xf9, + 0x36, 0x8e, 0x6c, 0x73, 0xcb, 0xb7, 0x11, 0x2d, 0x0f, 0xc6, 0x4d, 0xcf, 0xb8, 0x11, 0x2d, 0x2f, + 0x39, 0x5a, 0x1e, 0x35, 0x9f, 0x54, 0x4d, 0x27, 0xe5, 0x34, 0x92, 0x57, 0x7c, 0xba, 0xb6, 0x51, + 0xef, 0x29, 0x89, 0xf5, 0x9e, 0xe2, 0x55, 0x1e, 0x8a, 0xbc, 0x0e, 0x52, 0x51, 0xeb, 0xa9, 0xfa, + 0xa2, 0x1a, 0x96, 0xbc, 0x6a, 0x4f, 0xd5, 0xd8, 0x35, 0xb6, 0x50, 0xef, 0x49, 0x85, 0x8e, 0x81, + 0x7a, 0x4f, 0x0a, 0x51, 0x10, 0xf5, 0x9e, 0xa8, 0xc5, 0x4a, 0xd4, 0x7b, 0x42, 0xbd, 0x27, 0x62, + 0x3e, 0x8c, 0x7a, 0x4f, 0x49, 0xd8, 0xf8, 0x2a, 0x00, 0x40, 0x1d, 0x10, 0xa8, 0x02, 0x04, 0xe5, + 0xc0, 0xa0, 0x1c, 0x20, 0x94, 0x02, 0x45, 0x32, 0xf5, 0x11, 0xdc, 0x60, 0x25, 0x12, 0x4f, 0x71, + 0x24, 0x4a, 0x0a, 0x42, 0x64, 0x60, 0x44, 0x06, 0x4a, 0x24, 0xe0, 0x24, 0x17, 0xa4, 0x24, 0x83, + 0x95, 0x3f, 0x02, 0xb8, 0xc1, 0xba, 0xb1, 0x69, 0x1c, 0x87, 0xd2, 0xc3, 0x7a, 0xa0, 0x1b, 0x1c, + 0x87, 0x86, 0x9b, 0x7a, 0xdc, 0x60, 0x4d, 0xc7, 0x1a, 0xc0, 0xa9, 0x68, 0x52, 0xf6, 0x10, 0x6e, + 0xb0, 0x82, 0xca, 0x83, 0xca, 0x83, 0xca, 0x83, 0xca, 0xef, 0xb4, 0xde, 0x71, 0x83, 0x55, 0xca, + 0xbb, 0xe2, 0x06, 0x2b, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0x6e, 0xb0, 0x42, + 0x42, 0x8a, 0x39, 0xbd, 0xb8, 0xc1, 0x9a, 0x5b, 0x09, 0x09, 0x37, 0x58, 0xa1, 0x1c, 0xa5, 0x98, + 0xc4, 0xe3, 0x06, 0x2b, 0x48, 0x3d, 0x48, 0x3d, 0x48, 0x7d, 0xd6, 0x48, 0x3d, 0x6e, 0xb0, 0x66, + 0x99, 0x6f, 0xe3, 0xc8, 0x36, 0xb7, 0x7c, 0x1b, 0x37, 0x58, 0xc1, 0xb8, 0xe9, 0x19, 0x37, 0x6e, + 0xb0, 0x46, 0xbd, 0xdd, 0xf6, 0xe2, 0xa6, 0x15, 0x2a, 0x3e, 0x45, 0xa2, 0x32, 0xa8, 0xf8, 0x94, + 0x54, 0x1f, 0x08, 0xf1, 0xf2, 0x5a, 0x7c, 0x1c, 0xc4, 0xcb, 0x4b, 0xd8, 0x0c, 0x88, 0x97, 0x87, + 0x00, 0x03, 0x01, 0x06, 0x02, 0x8c, 0xaa, 0xf5, 0x8e, 0x78, 0x79, 0x88, 0x2f, 0x10, 0x5f, 0x20, + 0xbe, 0x44, 0x9a, 0x7a, 0xc4, 0xcb, 0x43, 0x83, 0x51, 0xb8, 0x87, 0x10, 0x2f, 0x0f, 0x2a, 0x0f, + 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xbf, 0xd3, 0x7a, 0x47, 0xbc, 0xbc, 0x94, 0x77, 0x45, 0xbc, 0x3c, + 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0xe2, 0xe5, 0x21, 0x21, 0xc5, 0x9c, 0x5e, + 0xc4, 0xcb, 0xe7, 0x56, 0x42, 0x42, 0xbc, 0x3c, 0x94, 0xa3, 0x14, 0x93, 0x78, 0xc4, 0xcb, 0x83, + 0xd4, 0x83, 0xd4, 0x83, 0xd4, 0x67, 0x8d, 0xd4, 0x23, 0x5e, 0x3e, 0xcb, 0x7c, 0x1b, 0x47, 0xb6, + 0xb9, 0xe5, 0xdb, 0x88, 0x97, 0x07, 0xe3, 0xa6, 0x67, 0xdc, 0x88, 0x97, 0x97, 0x1e, 0x2f, 0x8f, + 0x9a, 0x4f, 0xaa, 0x26, 0x94, 0x76, 0x22, 0xa9, 0xab, 0x3e, 0x55, 0xcf, 0x57, 0x8f, 0x81, 0xba, + 0x4f, 0x49, 0x5d, 0x20, 0x54, 0x95, 0x9f, 0x9e, 0xd7, 0x42, 0x4a, 0x6a, 0x3f, 0xad, 0x2a, 0x63, + 0xc9, 0xac, 0xfc, 0x14, 0xaf, 0xda, 0x16, 0xea, 0x3e, 0xa9, 0x50, 0x33, 0x50, 0xf7, 0x49, 0x21, + 0x0a, 0xa2, 0xee, 0x13, 0xb5, 0x64, 0x89, 0xba, 0x4f, 0xa8, 0xfb, 0x44, 0xcc, 0x89, 0x51, 0xf7, + 0x29, 0x09, 0x1b, 0x5f, 0x05, 0x00, 0xa8, 0x03, 0x02, 0x55, 0x80, 0xa0, 0x1c, 0x18, 0x94, 0x03, + 0x84, 0x52, 0xa0, 0x48, 0xa6, 0x4a, 0x82, 0x7b, 0xac, 0x44, 0x12, 0x2a, 0x0e, 0x46, 0x49, 0x41, + 0x88, 0x0c, 0x8c, 0xc8, 0x40, 0x89, 0x04, 0x9c, 0xe4, 0x82, 0x94, 0x64, 0xb0, 0xf2, 0x47, 0x00, + 0xf7, 0x58, 0x37, 0x36, 0x8d, 0x43, 0x51, 0x7a, 0x58, 0x0f, 0x74, 0x83, 0x43, 0xd1, 0x70, 0x53, + 0x8f, 0x7b, 0xac, 0xe9, 0x58, 0x03, 0x38, 0x1b, 0x4d, 0xca, 0x1e, 0xc2, 0x3d, 0x56, 0x50, 0x79, + 0x50, 0x79, 0x50, 0x79, 0x50, 0xf9, 0x9d, 0xd6, 0x3b, 0xee, 0xb1, 0x4a, 0x79, 0x57, 0xdc, 0x63, + 0x85, 0x39, 0x80, 0x39, 0x80, 0x39, 0x48, 0xbb, 0x39, 0xc0, 0x3d, 0x56, 0x48, 0x48, 0x31, 0xa7, + 0x17, 0xf7, 0x58, 0x73, 0x2b, 0x21, 0xe1, 0x1e, 0x2b, 0x94, 0xa3, 0x14, 0x93, 0x78, 0xdc, 0x63, + 0x05, 0xa9, 0x07, 0xa9, 0x07, 0xa9, 0xcf, 0x1a, 0xa9, 0xc7, 0x3d, 0xd6, 0x2c, 0xf3, 0x6d, 0x1c, + 0xd9, 0xe6, 0x96, 0x6f, 0xe3, 0x1e, 0x2b, 0x18, 0x37, 0x3d, 0xe3, 0xc6, 0x3d, 0xd6, 0xe8, 0xb7, + 0xdb, 0x96, 0xf7, 0xac, 0x50, 0xf5, 0x29, 0x12, 0x91, 0x41, 0xd5, 0xa7, 0xa4, 0x7a, 0x40, 0x88, + 0x96, 0xd7, 0xe2, 0xe1, 0x20, 0x5a, 0x5e, 0xc2, 0x66, 0x40, 0xb4, 0x3c, 0xe4, 0x17, 0xc8, 0x2f, + 0x90, 0x5f, 0x54, 0xad, 0x77, 0x44, 0xcb, 0x43, 0x7a, 0x81, 0xf4, 0x02, 0xe9, 0x25, 0xd2, 0xd4, + 0x23, 0x5a, 0x1e, 0x0a, 0x8c, 0xc2, 0x3d, 0x84, 0x68, 0x79, 0x50, 0x79, 0x50, 0x79, 0x50, 0x79, + 0x50, 0xf9, 0x9d, 0xd6, 0x3b, 0xa2, 0xe5, 0xa5, 0xbc, 0x2b, 0xa2, 0xe5, 0x61, 0x0e, 0x60, 0x0e, + 0x60, 0x0e, 0xd2, 0x6e, 0x0e, 0x10, 0x2d, 0x0f, 0x09, 0x29, 0xe6, 0xf4, 0x22, 0x5a, 0x3e, 0xb7, + 0x12, 0x12, 0xa2, 0xe5, 0xa1, 0x1c, 0xa5, 0x98, 0xc4, 0x23, 0x5a, 0x1e, 0xa4, 0x1e, 0xa4, 0x1e, + 0xa4, 0x3e, 0x6b, 0xa4, 0x1e, 0xd1, 0xf2, 0x59, 0xe6, 0xdb, 0x38, 0xb2, 0xcd, 0x2d, 0xdf, 0x46, + 0xb4, 0x3c, 0x18, 0x37, 0x3d, 0xe3, 0x46, 0xb4, 0xbc, 0xe4, 0x68, 0x79, 0xd4, 0x7c, 0x52, 0x35, + 0x9d, 0x94, 0xd3, 0x48, 0x5e, 0xf1, 0xe9, 0xda, 0x46, 0xbd, 0xa7, 0x24, 0xd6, 0x7b, 0x8a, 0x57, + 0x79, 0x28, 0xf2, 0x3a, 0x48, 0x72, 0xad, 0x27, 0xcf, 0x15, 0xcc, 0x18, 0x3b, 0x16, 0xef, 0x3f, + 0xce, 0xc6, 0xa8, 0x1c, 0xbf, 0xd2, 0x53, 0xa0, 0x45, 0xd4, 0x79, 0x42, 0x9d, 0x27, 0x4d, 0xba, + 0x03, 0xea, 0x3c, 0xa1, 0xce, 0x93, 0x3e, 0x11, 0x12, 0x75, 0x9e, 0x50, 0xe7, 0x69, 0x7b, 0x43, + 0xa8, 0xf3, 0x24, 0xa3, 0x41, 0xdc, 0x5c, 0xc5, 0xcd, 0xd5, 0x74, 0xe9, 0x22, 0xb8, 0xb9, 0x4a, + 0x24, 0x9a, 0xe2, 0x28, 0x94, 0x14, 0x84, 0xc8, 0xc0, 0x88, 0x0c, 0x94, 0x48, 0xc0, 0x49, 0x2e, + 0x48, 0x49, 0x06, 0x2b, 0x7f, 0x04, 0x70, 0x73, 0x75, 0x63, 0xd3, 0x38, 0x06, 0xa5, 0x87, 0xf5, + 0x40, 0x37, 0x38, 0x06, 0x0d, 0x37, 0xf5, 0xb8, 0xb9, 0x9a, 0x8e, 0x35, 0x80, 0xd3, 0xd0, 0xa4, + 0xec, 0x21, 0xdc, 0x5c, 0x05, 0x95, 0x07, 0x95, 0x07, 0x95, 0x07, 0x95, 0xdf, 0x69, 0xbd, 0xe3, + 0xe6, 0xaa, 0x94, 0x77, 0xc5, 0xcd, 0x55, 0x98, 0x03, 0x98, 0x03, 0x98, 0x83, 0xb4, 0x9b, 0x03, + 0xdc, 0x5c, 0x85, 0x84, 0x14, 0x73, 0x7a, 0x71, 0x73, 0x35, 0xb7, 0x12, 0x12, 0x6e, 0xae, 0x42, + 0x39, 0x4a, 0x31, 0x89, 0xc7, 0xcd, 0x55, 0x90, 0x7a, 0x90, 0x7a, 0x90, 0xfa, 0xac, 0x91, 0x7a, + 0xdc, 0x5c, 0xcd, 0x32, 0xdf, 0xc6, 0x91, 0x6d, 0x6e, 0xf9, 0x36, 0x6e, 0xae, 0x82, 0x71, 0xd3, + 0x33, 0x6e, 0xdc, 0x5c, 0x0d, 0x79, 0xab, 0xed, 0xf5, 0x2d, 0x2b, 0x54, 0x79, 0x8a, 0x44, 0x63, + 0x50, 0xe5, 0x29, 0xa9, 0xfe, 0x0f, 0x62, 0xe5, 0xb5, 0xf8, 0x37, 0x88, 0x95, 0x97, 0xb0, 0x19, + 0x10, 0x2b, 0x0f, 0xf1, 0x05, 0xe2, 0x0b, 0xc4, 0x17, 0x55, 0xeb, 0x1d, 0xb1, 0xf2, 0x10, 0x5e, + 0x20, 0xbc, 0x40, 0x78, 0x89, 0x34, 0xf5, 0x88, 0x95, 0x87, 0xfe, 0xa2, 0x70, 0x0f, 0x21, 0x56, + 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, 0xf5, 0x8e, 0x58, 0x79, 0x29, 0xef, + 0x8a, 0x58, 0x79, 0x98, 0x03, 0x98, 0x03, 0x98, 0x83, 0xb4, 0x9b, 0x03, 0xc4, 0xca, 0x43, 0x42, + 0x8a, 0x39, 0xbd, 0x88, 0x95, 0xcf, 0xad, 0x84, 0x84, 0x58, 0x79, 0x28, 0x47, 0x29, 0x26, 0xf1, + 0x88, 0x95, 0x07, 0xa9, 0x07, 0xa9, 0x07, 0xa9, 0xcf, 0x1a, 0xa9, 0x47, 0xac, 0x7c, 0x96, 0xf9, + 0x36, 0x8e, 0x6c, 0x73, 0xcb, 0xb7, 0x11, 0x2b, 0x0f, 0xc6, 0x4d, 0xcf, 0xb8, 0x11, 0x2b, 0x2f, + 0x35, 0x56, 0x1e, 0x35, 0x9e, 0x54, 0x4d, 0x26, 0xdd, 0x24, 0x52, 0x55, 0x78, 0xba, 0x74, 0x05, + 0x6b, 0xcf, 0x9f, 0xa1, 0x31, 0xbe, 0x2f, 0xa3, 0xbe, 0x53, 0x12, 0x17, 0x86, 0xea, 0xea, 0x4e, + 0xeb, 0x6b, 0x20, 0x45, 0xb5, 0x9d, 0xaa, 0xd2, 0x6b, 0x3b, 0x55, 0x51, 0xdb, 0x09, 0xb5, 0x9d, + 0x74, 0xa9, 0x0d, 0xa8, 0xed, 0x84, 0xda, 0x4e, 0xfa, 0xa4, 0x47, 0xd4, 0x76, 0x42, 0x6d, 0xa7, + 0xed, 0x0d, 0xa1, 0xb6, 0x93, 0x8c, 0x06, 0x71, 0x5f, 0x15, 0xf7, 0x55, 0xd3, 0xa5, 0x86, 0xe0, + 0xbe, 0x2a, 0x91, 0x54, 0x8a, 0x03, 0x50, 0x52, 0x10, 0x22, 0x03, 0x23, 0x32, 0x50, 0x22, 0x01, + 0x27, 0xb9, 0x20, 0x25, 0x19, 0xac, 0xfc, 0x11, 0xc0, 0x7d, 0xd5, 0x8d, 0x4d, 0xe3, 0xf0, 0x93, + 0x1e, 0xd6, 0x03, 0xdd, 0xe0, 0xf0, 0x33, 0xdc, 0xd4, 0xe3, 0xbe, 0x6a, 0x3a, 0xd6, 0x00, 0xce, + 0x40, 0x93, 0xb2, 0x87, 0x70, 0x5f, 0x15, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x1e, 0x54, 0x7e, 0xa7, + 0xf5, 0x8e, 0xfb, 0xaa, 0x52, 0xde, 0x15, 0xf7, 0x55, 0x61, 0x0e, 0x60, 0x0e, 0x60, 0x0e, 0xd2, + 0x6e, 0x0e, 0x70, 0x5f, 0x15, 0x12, 0x52, 0xcc, 0xe9, 0xc5, 0x7d, 0xd5, 0xdc, 0x4a, 0x48, 0xb8, + 0xaf, 0x0a, 0xe5, 0x28, 0xc5, 0x24, 0x1e, 0xf7, 0x55, 0x41, 0xea, 0x41, 0xea, 0x41, 0xea, 0xb3, + 0x46, 0xea, 0x71, 0x5f, 0x35, 0xcb, 0x7c, 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0xb8, 0xaf, 0x0a, + 0xc6, 0x4d, 0xcf, 0xb8, 0x71, 0x5f, 0x35, 0xde, 0x8d, 0xb6, 0x2a, 0x6a, 0x3b, 0x45, 0xa2, 0x31, + 0xa8, 0xed, 0x94, 0x54, 0xff, 0x07, 0xb1, 0xf2, 0x5a, 0xfc, 0x1b, 0xc4, 0xca, 0x4b, 0xd8, 0x0c, + 0x88, 0x95, 0x87, 0xf8, 0x02, 0xf1, 0x05, 0xe2, 0x8b, 0xaa, 0xf5, 0x8e, 0x58, 0x79, 0x08, 0x2f, + 0x10, 0x5e, 0x20, 0xbc, 0x44, 0x9a, 0x7a, 0xc4, 0xca, 0x43, 0x7f, 0x51, 0xb8, 0x87, 0x10, 0x2b, + 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xbf, 0xd3, 0x7a, 0x47, 0xac, 0xbc, 0x94, 0x77, + 0x45, 0xac, 0x3c, 0xcc, 0x01, 0xcc, 0x01, 0xcc, 0x41, 0xda, 0xcd, 0x01, 0x62, 0xe5, 0x21, 0x21, + 0xc5, 0x9c, 0x5e, 0xc4, 0xca, 0xe7, 0x56, 0x42, 0x42, 0xac, 0x3c, 0x94, 0xa3, 0x14, 0x93, 0x78, + 0xc4, 0xca, 0x83, 0xd4, 0x83, 0xd4, 0x83, 0xd4, 0x67, 0x8d, 0xd4, 0x23, 0x56, 0x3e, 0xcb, 0x7c, + 0x1b, 0x47, 0xb6, 0xb9, 0xe5, 0xdb, 0x88, 0x95, 0x07, 0xe3, 0xa6, 0x67, 0xdc, 0x88, 0x95, 0x97, + 0x1a, 0x2b, 0x8f, 0xda, 0x4e, 0xaa, 0x26, 0x93, 0x6e, 0x12, 0xb5, 0xd4, 0x76, 0xaa, 0xa2, 0xb6, + 0x53, 0x12, 0x17, 0x06, 0x69, 0x6d, 0xa7, 0x6a, 0xa2, 0x6b, 0x3b, 0xc5, 0xba, 0x33, 0x23, 0xe5, + 0x8e, 0x8c, 0xb4, 0x2a, 0x4e, 0x25, 0x54, 0x71, 0x52, 0xa8, 0x43, 0xa0, 0x8a, 0xd3, 0xf3, 0x93, + 0xc7, 0xae, 0xe2, 0xb4, 0x42, 0x26, 0x63, 0x89, 0x23, 0x92, 0xca, 0x38, 0xad, 0x37, 0x2b, 0xa7, + 0x8e, 0xd3, 0x21, 0xea, 0x38, 0x69, 0x90, 0x15, 0x51, 0xc7, 0x29, 0x01, 0x5c, 0x57, 0x9a, 0xec, + 0xe7, 0xaf, 0x37, 0x3e, 0x60, 0xb6, 0xe0, 0xe2, 0xd1, 0x65, 0x43, 0x19, 0x8b, 0x6e, 0x65, 0x39, + 0x25, 0x08, 0x7b, 0x85, 0xc6, 0xf2, 0xd1, 0x3e, 0x9b, 0x9e, 0x82, 0x4b, 0xb4, 0xb5, 0xaf, 0x8d, + 0xde, 0xe5, 0xec, 0x7f, 0xae, 0xfe, 0xdb, 0xae, 0xcb, 0x5a, 0xca, 0x73, 0xed, 0xc3, 0x93, 0x2a, + 0x3e, 0x2a, 0x3a, 0x47, 0x6a, 0xb4, 0xbf, 0x97, 0x7b, 0xd7, 0x17, 0x8d, 0xb3, 0xda, 0xe5, 0x55, + 0x21, 0x89, 0x07, 0x6b, 0x8a, 0xde, 0xbb, 0xd9, 0xb8, 0xf8, 0xf3, 0xf2, 0xaa, 0x76, 0x55, 0xcf, + 0xd3, 0x4b, 0x5f, 0x76, 0xae, 0xea, 0xbd, 0x76, 0xab, 0xd9, 0x38, 0xfb, 0x6f, 0xaf, 0xd1, 0xfe, + 0x5e, 0xcd, 0xd5, 0x84, 0x1f, 0x7d, 0x6f, 0x5f, 0xcc, 0xdf, 0x3a, 0x97, 0xcb, 0xbd, 0x34, 0x7b, + 0xfb, 0xef, 0xed, 0xe6, 0x65, 0x2e, 0x37, 0x79, 0xef, 0xb2, 0xfd, 0x35, 0x9f, 0x2f, 0xfe, 0xbd, + 0x7d, 0x91, 0xa7, 0x17, 0x9f, 0x9b, 0xb3, 0xaf, 0xcd, 0xd6, 0xff, 0x5e, 0xb6, 0xeb, 0x67, 0x39, + 0x85, 0xb7, 0xf3, 0xeb, 0xe6, 0x55, 0xee, 0x00, 0xee, 0x7b, 0xfb, 0x22, 0xef, 0x33, 0x5f, 0xce, + 0xe7, 0xcc, 0xcf, 0xd7, 0x7c, 0xb3, 0xf6, 0xb9, 0xde, 0xac, 0x7f, 0xc9, 0xa5, 0x69, 0x7f, 0x9e, + 0xff, 0x1c, 0xbe, 0xfd, 0xfc, 0xbd, 0x73, 0x3c, 0xfb, 0x79, 0x25, 0xb4, 0xaf, 0x5c, 0x99, 0x72, + 0xfe, 0xc8, 0x7c, 0x5d, 0x2e, 0xb5, 0x93, 0xd2, 0x52, 0x57, 0xb7, 0xae, 0xf6, 0x4e, 0xc3, 0xac, + 0x17, 0x98, 0x6d, 0xde, 0x5a, 0x6c, 0x20, 0x4f, 0x2d, 0x5f, 0x35, 0x18, 0xb7, 0xda, 0xbb, 0xdc, + 0x2b, 0xe0, 0xd0, 0xdd, 0x43, 0xb5, 0x08, 0xdd, 0x1d, 0xba, 0xfb, 0xdb, 0xeb, 0x4d, 0xde, 0x15, + 0x6a, 0x49, 0x57, 0xa6, 0x11, 0xcd, 0x11, 0x23, 0x9a, 0x23, 0x7a, 0x34, 0x16, 0x4d, 0x50, 0xc5, + 0xc4, 0x63, 0xc6, 0x68, 0x62, 0x09, 0x3e, 0xb6, 0x98, 0x31, 0x7b, 0x67, 0x2f, 0x7e, 0x84, 0xc5, + 0x86, 0x36, 0x35, 0x87, 0x5b, 0x1c, 0x22, 0xdc, 0x42, 0xa1, 0xdd, 0x40, 0xb8, 0xc5, 0x0b, 0x86, + 0x15, 0x37, 0xdc, 0xa2, 0xbf, 0x5a, 0xb3, 0x92, 0x98, 0xe3, 0xb2, 0x3d, 0x39, 0x44, 0xaf, 0x08, + 0xa2, 0x07, 0xa2, 0x97, 0x4f, 0xa2, 0x27, 0x2b, 0x77, 0xaf, 0x34, 0xdf, 0x50, 0x91, 0x8f, 0xa8, + 0xca, 0x57, 0x94, 0xec, 0x33, 0x4a, 0x87, 0x14, 0x15, 0xd0, 0xa2, 0x0e, 0x62, 0x54, 0x41, 0x8d, + 0x72, 0xc8, 0x51, 0x0e, 0x3d, 0x4a, 0x21, 0x48, 0xae, 0x36, 0x26, 0xeb, 0xd2, 0x8a, 0xf4, 0x2b, + 0x9f, 0x0a, 0xd3, 0x79, 0x49, 0x4e, 0xe3, 0x85, 0x2b, 0x2a, 0xea, 0x7c, 0xd7, 0xa0, 0x1b, 0x27, + 0xa5, 0x10, 0x87, 0x26, 0x45, 0x76, 0xb6, 0xff, 0xe5, 0xc9, 0xb1, 0xf1, 0x51, 0x1c, 0x94, 0x1a, + 0x94, 0x1a, 0x94, 0x5a, 0xce, 0x72, 0x93, 0xe4, 0x33, 0xab, 0xf1, 0x9d, 0x25, 0x6f, 0x78, 0x10, + 0x5f, 0x10, 0x5f, 0x10, 0x5f, 0xb9, 0x00, 0xe2, 0x37, 0x68, 0x5a, 0x96, 0xf3, 0xef, 0x33, 0xe9, + 0x31, 0x15, 0x16, 0xd5, 0x09, 0x76, 0x85, 0x74, 0xdf, 0x48, 0x05, 0x45, 0x0d, 0x77, 0x64, 0xb0, + 0x47, 0x06, 0x7f, 0x24, 0x30, 0x28, 0x17, 0x0e, 0x25, 0xc3, 0xa2, 0x3a, 0x5d, 0x80, 0x40, 0x1f, + 0x50, 0xa4, 0x13, 0xc8, 0x9f, 0x30, 0x99, 0x99, 0x02, 0x47, 0xe6, 0x03, 0x1f, 0x4d, 0x46, 0x31, + 0xcf, 0x5f, 0xdf, 0x9c, 0xad, 0xf5, 0x6e, 0xd4, 0x99, 0x9b, 0x22, 0x4c, 0x0d, 0x4c, 0x0d, 0x4c, + 0x0d, 0x4c, 0x8d, 0xcc, 0xf5, 0x8e, 0x22, 0x71, 0x81, 0x5f, 0xc8, 0x38, 0xb8, 0x53, 0x37, 0xc8, + 0x38, 0x18, 0x6e, 0xea, 0x51, 0x24, 0x2e, 0x1d, 0x6b, 0x00, 0x89, 0x07, 0x33, 0x24, 0x65, 0xa5, + 0x21, 0xf1, 0xe0, 0x86, 0x03, 0x41, 0x36, 0x6b, 0x01, 0xe5, 0xf9, 0x77, 0xe4, 0x30, 0x28, 0xcf, + 0x9f, 0x54, 0xe7, 0x07, 0xc7, 0x09, 0x5a, 0x9c, 0x1b, 0x1c, 0x27, 0xc8, 0xda, 0x11, 0x38, 0x4e, + 0x80, 0xc6, 0x03, 0x8d, 0x07, 0x1a, 0x4f, 0xaa, 0x35, 0x1e, 0x1c, 0x27, 0x48, 0x79, 0x57, 0x1c, + 0x27, 0xc0, 0xd4, 0xc0, 0xd4, 0xc0, 0xd4, 0xc0, 0xd4, 0x6c, 0x5f, 0xef, 0x38, 0x4e, 0x08, 0xfc, + 0xc2, 0x71, 0xc2, 0x4e, 0xdd, 0xe0, 0x38, 0x21, 0xdc, 0xd4, 0xe3, 0x38, 0x21, 0x1d, 0x6b, 0x00, + 0xc7, 0x09, 0x19, 0x92, 0xb2, 0xd2, 0x7c, 0x9c, 0x80, 0x0a, 0x46, 0xaa, 0xa6, 0x91, 0x62, 0xfa, + 0xa8, 0x6a, 0x17, 0x5d, 0x7b, 0xec, 0x7c, 0xd9, 0x7b, 0x7b, 0xd6, 0x79, 0xaf, 0x1e, 0x9b, 0x27, + 0xeb, 0xb9, 0x99, 0xc6, 0xa5, 0xde, 0x4c, 0xe3, 0xb8, 0x99, 0x46, 0xeb, 0xef, 0xe2, 0x66, 0x1a, + 0x6e, 0xa6, 0x6d, 0x6f, 0x08, 0x37, 0xd3, 0x12, 0x2a, 0x80, 0xe1, 0x28, 0x99, 0x5e, 0xe0, 0xc2, + 0x51, 0x72, 0xf4, 0x06, 0xa1, 0xe9, 0xeb, 0x50, 0x00, 0xa0, 0xe9, 0x93, 0x42, 0x1c, 0x19, 0xd4, + 0x91, 0x41, 0x1e, 0x09, 0xf4, 0xa9, 0x11, 0x5b, 0xa0, 0xe9, 0x07, 0xd0, 0x05, 0x9a, 0xfe, 0x8b, + 0x07, 0x87, 0xa6, 0x1f, 0xbe, 0x1f, 0x68, 0xfa, 0x89, 0x9d, 0x7a, 0x68, 0xfa, 0xfa, 0x5a, 0x85, + 0xa6, 0xbf, 0x13, 0x85, 0x48, 0xa7, 0xa6, 0xcf, 0x71, 0x45, 0x20, 0x04, 0x87, 0xc1, 0x15, 0x01, + 0xe8, 0x3a, 0xd0, 0x75, 0xa0, 0xeb, 0x40, 0xd7, 0x81, 0xae, 0x03, 0x5d, 0x07, 0xba, 0x0e, 0x74, + 0x1d, 0xe8, 0x3a, 0xd0, 0x75, 0xa0, 0xeb, 0x40, 0xd7, 0x81, 0xae, 0x03, 0x5d, 0x07, 0xba, 0x4e, + 0xc2, 0x74, 0x1d, 0xc4, 0x6a, 0xaa, 0x9a, 0x46, 0x8a, 0xe9, 0xd3, 0x16, 0xab, 0xd9, 0x48, 0x69, + 0xac, 0xa6, 0x1c, 0xd1, 0x4f, 0xaa, 0xd8, 0x27, 0x3d, 0x5a, 0xb3, 0x84, 0x68, 0xcd, 0x04, 0x78, + 0xb4, 0x88, 0xd6, 0xa4, 0x17, 0xe5, 0x50, 0x9a, 0x0b, 0xa5, 0xb9, 0x70, 0x5e, 0x80, 0xf3, 0x02, + 0x94, 0xe6, 0x02, 0x9f, 0x4f, 0x1d, 0x9f, 0x97, 0xe0, 0x89, 0xa1, 0xd0, 0xb7, 0xcc, 0x19, 0x29, + 0xc4, 0xf2, 0x33, 0xc2, 0x3b, 0x55, 0x64, 0x55, 0xc6, 0xdf, 0x29, 0x9c, 0xe3, 0x99, 0x71, 0x9b, + 0xa7, 0x33, 0x5b, 0x8e, 0xab, 0x31, 0x1f, 0x83, 0x90, 0x6d, 0x34, 0xb9, 0x27, 0x6a, 0x42, 0x44, + 0x23, 0x85, 0x85, 0x73, 0x6e, 0xd7, 0x2d, 0x36, 0x33, 0x4f, 0x5e, 0xe1, 0x74, 0xcf, 0x9e, 0x58, + 0x56, 0x84, 0xb2, 0xea, 0xe7, 0xe6, 0x43, 0xfc, 0x46, 0x5a, 0xee, 0x80, 0xb9, 0x6c, 0xf0, 0xf9, + 0x71, 0xd9, 0x84, 0xd2, 0x81, 0x8f, 0xb9, 0xa9, 0x64, 0x6e, 0xa6, 0x08, 0x3b, 0x67, 0x97, 0x1d, + 0x13, 0x6e, 0x83, 0xec, 0xbe, 0xcc, 0x77, 0xfb, 0xc9, 0x1d, 0xe7, 0x23, 0xea, 0x3c, 0x48, 0x18, + 0xff, 0xdd, 0xc6, 0xe7, 0xed, 0xb7, 0xdd, 0xe1, 0x4d, 0x0b, 0xe6, 0x78, 0x6c, 0x3d, 0x1a, 0x63, + 0xc7, 0xe2, 0xfd, 0xc7, 0x9d, 0xdf, 0xf3, 0x39, 0xd9, 0xe1, 0xcb, 0x6f, 0xef, 0x38, 0xae, 0xe1, + 0x64, 0x92, 0xd0, 0xbe, 0x4b, 0x14, 0xdf, 0xe4, 0xa5, 0xef, 0xe1, 0x8e, 0x1d, 0x2b, 0xc4, 0xba, + 0x8f, 0xea, 0x5c, 0xc4, 0x76, 0x1e, 0x62, 0x3b, 0x07, 0xaf, 0xc9, 0xff, 0xfc, 0xc5, 0x35, 0xed, + 0xb5, 0xb0, 0xc2, 0x41, 0xd4, 0xeb, 0x9c, 0xf1, 0xae, 0x6d, 0x46, 0x54, 0xf8, 0x22, 0xbb, 0xdf, + 0x71, 0xdc, 0xec, 0x18, 0x4b, 0x5a, 0x96, 0xdf, 0x2c, 0xcd, 0x3f, 0x96, 0xe6, 0x07, 0xc7, 0x5b, + 0xf2, 0x34, 0xbc, 0x2b, 0xaa, 0x86, 0x56, 0x18, 0x2c, 0xb4, 0x28, 0x83, 0x3d, 0x8c, 0x1d, 0x57, + 0x84, 0x85, 0xf4, 0xad, 0xeb, 0x67, 0x73, 0xb3, 0x11, 0xc7, 0xff, 0x85, 0x5e, 0xd6, 0xa9, 0xff, + 0x4f, 0xfd, 0xec, 0xaa, 0xd7, 0x69, 0x5d, 0x5f, 0xd5, 0xa3, 0x36, 0x17, 0x4f, 0x26, 0x8b, 0x2d, + 0x8b, 0xc9, 0x90, 0xc1, 0x24, 0xec, 0x53, 0xd9, 0x3a, 0x97, 0x74, 0x5d, 0x4b, 0xba, 0x8e, 0x25, + 0x67, 0x1f, 0xeb, 0xf1, 0x99, 0x63, 0x0b, 0x51, 0x81, 0x9d, 0xb9, 0xd8, 0x92, 0x86, 0x98, 0x35, + 0x1c, 0x63, 0xf5, 0xac, 0x8c, 0x5b, 0x39, 0x46, 0x1b, 0x75, 0x7b, 0x32, 0x9a, 0xbd, 0xdc, 0x94, + 0xca, 0x05, 0xfe, 0x10, 0x1d, 0x27, 0xf9, 0x48, 0x09, 0x4e, 0xae, 0x37, 0x0b, 0x9c, 0x04, 0x4e, + 0x02, 0x27, 0x81, 0x93, 0x29, 0xc4, 0x49, 0xc9, 0x3c, 0x52, 0x0a, 0x7f, 0x04, 0x90, 0x01, 0xc8, + 0xf2, 0x0b, 0x64, 0x16, 0x33, 0x87, 0x2e, 0x1b, 0xca, 0x00, 0xaf, 0x18, 0x81, 0xf6, 0x85, 0xb6, + 0x2f, 0x6d, 0x2e, 0x26, 0xe2, 0xd4, 0x75, 0x26, 0x82, 0xdb, 0x77, 0xcb, 0xbd, 0xed, 0xff, 0xf5, + 0x12, 0x6f, 0x07, 0x6c, 0xc8, 0x6d, 0x2e, 0xb8, 0x63, 0x7b, 0xdb, 0xff, 0xc9, 0xff, 0x97, 0xb9, + 0x70, 0x4c, 0x3a, 0x3f, 0xb1, 0x0e, 0x29, 0xfc, 0x56, 0x64, 0x1c, 0x56, 0x3c, 0x37, 0x26, 0xe1, + 0xd0, 0xc2, 0x6f, 0xec, 0xe5, 0xe1, 0x85, 0xa4, 0x70, 0xb9, 0x89, 0xc7, 0xdc, 0xb8, 0x10, 0x21, + 0x31, 0x28, 0xe3, 0x25, 0x7e, 0x39, 0x8b, 0xb7, 0x35, 0x6e, 0x1f, 0x65, 0x04, 0xa9, 0xa9, 0x08, + 0xc0, 0x58, 0xc3, 0xb2, 0xf9, 0x48, 0xa6, 0xeb, 0xac, 0x98, 0x84, 0x7c, 0x48, 0x76, 0xce, 0xa4, + 0x38, 0x65, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, + 0x69, 0x21, 0x1f, 0x19, 0x8d, 0xd5, 0x79, 0x11, 0x78, 0x11, 0x29, 0xa7, 0x4f, 0x88, 0xa8, 0x9a, + 0x10, 0xc1, 0x10, 0xd1, 0xae, 0xe5, 0xc4, 0xba, 0x86, 0x13, 0xfb, 0x50, 0xbe, 0x84, 0x43, 0x79, + 0xad, 0xf0, 0x84, 0x43, 0xf9, 0xf0, 0xeb, 0x07, 0x87, 0xf2, 0x70, 0x93, 0xe0, 0x26, 0x25, 0xd1, + 0x4d, 0xc2, 0x61, 0x13, 0x0e, 0xe5, 0x81, 0x93, 0xc0, 0x49, 0xe0, 0x24, 0x70, 0x52, 0x01, 0x4e, + 0xe2, 0x50, 0x1e, 0x40, 0x06, 0x20, 0x4b, 0x12, 0x90, 0x41, 0x17, 0x57, 0x31, 0x3f, 0xd0, 0xc5, + 0x43, 0x2f, 0x44, 0xe8, 0xe2, 0xb2, 0xb0, 0x0c, 0x87, 0xf2, 0x9b, 0xc7, 0x08, 0x87, 0xf2, 0x20, + 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0xd1, 0xc9, 0x47, + 0x0e, 0x0e, 0xe5, 0x23, 0xa4, 0x01, 0xca, 0x4f, 0xa6, 0x8b, 0xf0, 0x69, 0x23, 0xf6, 0xde, 0xcc, + 0x2d, 0x32, 0x6b, 0xb3, 0xbd, 0x68, 0x92, 0x32, 0x7f, 0x86, 0x37, 0x4f, 0x32, 0x64, 0x38, 0xe3, + 0xb9, 0x3d, 0x8b, 0x90, 0x42, 0xe3, 0x55, 0x03, 0xd9, 0xc8, 0xa2, 0x11, 0x2e, 0x83, 0x5f, 0x76, + 0x92, 0x68, 0x84, 0xca, 0xa0, 0x87, 0x1c, 0x1a, 0xea, 0x1d, 0x35, 0x59, 0xe1, 0x3a, 0xd1, 0x52, + 0x52, 0x66, 0x3f, 0x5a, 0x27, 0x52, 0xca, 0xc8, 0x84, 0x06, 0xeb, 0x98, 0x96, 0xe5, 0xfc, 0x6b, + 0x38, 0xff, 0xda, 0x86, 0xe9, 0xc5, 0x97, 0x37, 0xd6, 0x5a, 0x8b, 0x7f, 0xe4, 0x7c, 0x08, 0x85, + 0x44, 0x42, 0x6e, 0xd8, 0xfc, 0x0a, 0x24, 0xb1, 0x72, 0xbb, 0xa6, 0x55, 0x1f, 0x99, 0x70, 0x5b, + 0x7c, 0x92, 0xa0, 0x8e, 0xc4, 0x28, 0x59, 0x22, 0xa9, 0xfe, 0x90, 0x04, 0x9f, 0x58, 0x66, 0x3d, + 0x21, 0xd9, 0x19, 0xaa, 0x25, 0xd7, 0x07, 0x52, 0x51, 0x03, 0x46, 0x46, 0xad, 0x52, 0x99, 0x75, + 0x7d, 0x54, 0x4d, 0x41, 0xa9, 0x52, 0x49, 0xf0, 0x24, 0x68, 0x52, 0x46, 0xba, 0x49, 0x8e, 0x9d, + 0xe3, 0x9e, 0x79, 0x6b, 0x31, 0x63, 0xee, 0x60, 0x9b, 0x9e, 0x31, 0xe4, 0x96, 0x60, 0xae, 0x84, + 0xe0, 0xb9, 0xcd, 0xed, 0xc6, 0xa7, 0x32, 0x71, 0x52, 0xe5, 0x83, 0xce, 0x80, 0xce, 0xe4, 0x96, + 0xce, 0xc4, 0x4f, 0x35, 0x1f, 0x33, 0xb5, 0x3c, 0x0d, 0xa0, 0xb9, 0x6c, 0x6c, 0x99, 0x7d, 0x1f, + 0x78, 0xe2, 0x23, 0xd9, 0xeb, 0x06, 0x01, 0x61, 0x80, 0x30, 0x40, 0x18, 0x20, 0x2c, 0x09, 0x6a, + 0x95, 0xbe, 0xd3, 0xaa, 0xf5, 0x83, 0x07, 0xdc, 0x22, 0x4d, 0xe3, 0x2d, 0x52, 0xc8, 0xd2, 0x12, + 0xb1, 0x15, 0xb2, 0x74, 0x78, 0x22, 0x04, 0x59, 0x1a, 0x24, 0x08, 0x24, 0x28, 0xe4, 0x7a, 0x81, + 0x2c, 0xfd, 0x52, 0x13, 0x85, 0x2c, 0x1d, 0x4b, 0xd3, 0x84, 0x2c, 0x9d, 0x80, 0x49, 0x80, 0x2c, + 0x1d, 0x18, 0x66, 0xc8, 0xd2, 0xa0, 0x33, 0xa0, 0x33, 0xd0, 0x74, 0x92, 0xa9, 0xe9, 0x40, 0x96, + 0x06, 0x84, 0x01, 0xc2, 0x00, 0x61, 0x90, 0xa5, 0xb7, 0x2c, 0x8a, 0xa4, 0xc8, 0xd2, 0xb8, 0x47, + 0xb1, 0xf3, 0x58, 0x49, 0xbb, 0x4a, 0xe1, 0xb5, 0x4d, 0xf1, 0xb3, 0xb5, 0x6c, 0x94, 0xf0, 0x32, + 0x45, 0xc8, 0x88, 0xf4, 0x68, 0x91, 0xe8, 0xb8, 0x3a, 0xb1, 0x87, 0xab, 0x13, 0xaf, 0x18, 0x54, + 0xd8, 0xab, 0x13, 0xe6, 0x44, 0xfc, 0x34, 0xc6, 0xa6, 0xe7, 0x2d, 0x87, 0x30, 0xe2, 0x49, 0xd5, + 0x7a, 0x33, 0xd1, 0x4e, 0xac, 0x0e, 0x71, 0x91, 0x82, 0x92, 0x86, 0xe5, 0xe9, 0xc4, 0x2a, 0x32, + 0xbd, 0x7a, 0xf6, 0x70, 0x56, 0xf7, 0xc0, 0xa3, 0xad, 0xf1, 0x35, 0xb8, 0xfe, 0x94, 0x80, 0x93, + 0xe9, 0x01, 0xf3, 0xfa, 0x2e, 0x1f, 0x47, 0xa2, 0x45, 0x2f, 0x52, 0x9f, 0x3d, 0x37, 0x82, 0x3d, + 0x8f, 0x3d, 0x9f, 0xb1, 0x3d, 0xef, 0x09, 0x97, 0xdb, 0x77, 0x69, 0xdf, 0xe9, 0x96, 0xd3, 0x37, + 0xad, 0x28, 0x2a, 0xcf, 0x73, 0x6e, 0x8e, 0x55, 0x0b, 0xd8, 0xe3, 0xd8, 0xe3, 0x19, 0xdb, 0xe3, + 0xa6, 0x67, 0xd8, 0x93, 0xd1, 0x6d, 0xa4, 0x63, 0x97, 0xd5, 0x02, 0x8f, 0x90, 0x70, 0x26, 0xe6, + 0xa1, 0x75, 0xbc, 0x64, 0x2e, 0x12, 0xa4, 0x40, 0x29, 0x27, 0xa3, 0xb2, 0x0e, 0xa5, 0x65, 0x9e, + 0x83, 0x4e, 0xe3, 0xa5, 0xb6, 0x49, 0xdc, 0xd0, 0x96, 0x4b, 0x27, 0xe5, 0x93, 0xea, 0x71, 0xe9, + 0xa4, 0x92, 0xa0, 0x31, 0x26, 0xd2, 0x15, 0xbb, 0x09, 0xb0, 0xbe, 0x51, 0x8f, 0x58, 0x7c, 0x80, + 0x8a, 0x76, 0xa4, 0x02, 0xdb, 0x0b, 0xdb, 0x0b, 0xdb, 0x0b, 0xdb, 0x0b, 0xdb, 0x0b, 0xdb, 0x9b, + 0x6f, 0xdb, 0x3b, 0x3f, 0x5f, 0x32, 0x96, 0xc7, 0x43, 0x71, 0x6c, 0xf0, 0x8b, 0x86, 0x60, 0x8b, + 0x61, 0x8b, 0xa1, 0x75, 0x25, 0x50, 0xeb, 0x9a, 0x6f, 0x54, 0x11, 0x65, 0x30, 0xd6, 0xf7, 0x7a, + 0x84, 0x22, 0x1e, 0xd8, 0xe5, 0xd8, 0xe5, 0x89, 0xdf, 0xe5, 0x51, 0x17, 0xf7, 0x5e, 0xcc, 0xca, + 0x34, 0x11, 0x2b, 0xd2, 0xa8, 0x01, 0x09, 0x97, 0x8d, 0x9c, 0x7b, 0x66, 0x8c, 0x5d, 0x7e, 0x6f, + 0x0a, 0x16, 0xcb, 0x39, 0x0f, 0x36, 0x05, 0xd0, 0x00, 0x68, 0x64, 0x0c, 0x34, 0x02, 0x8b, 0x7c, + 0x19, 0xa5, 0x15, 0x07, 0x43, 0x22, 0x78, 0x44, 0x85, 0xc6, 0x80, 0xd9, 0x82, 0x8b, 0xc7, 0xcf, + 0xa6, 0xc7, 0xe2, 0x87, 0x2c, 0x77, 0xea, 0xe7, 0xad, 0xef, 0xf5, 0x5e, 0xbb, 0xd3, 0xf8, 0x5e, + 0xbb, 0xaa, 0xf7, 0x6a, 0x97, 0xbd, 0x56, 0xfb, 0xaa, 0xd1, 0xba, 0x88, 0xba, 0xa4, 0xe6, 0x4e, + 0x9f, 0x17, 0xeb, 0x1a, 0x9a, 0xa4, 0x0c, 0xe6, 0x2f, 0x5e, 0x69, 0xf9, 0x92, 0xb5, 0x66, 0xb3, + 0xa0, 0xc3, 0x2b, 0x57, 0xf1, 0x42, 0xed, 0x66, 0xed, 0x2c, 0xee, 0x1b, 0x45, 0xfa, 0x66, 0x57, + 0xf5, 0xc6, 0x56, 0x63, 0xec, 0x9c, 0x89, 0x60, 0xc6, 0xd0, 0x32, 0xc7, 0xc6, 0xc0, 0x1c, 0x8d, + 0x67, 0x1c, 0x3f, 0xba, 0xb5, 0x0b, 0xb6, 0x15, 0xf6, 0xe6, 0x78, 0xbc, 0x00, 0x7f, 0x98, 0x4b, + 0x98, 0xcb, 0xc4, 0x9b, 0xcb, 0xe8, 0x01, 0xf8, 0x11, 0x03, 0xef, 0x15, 0xa5, 0x2e, 0x61, 0xf6, + 0xc0, 0xe8, 0x3b, 0xa3, 0xd1, 0xc4, 0xe6, 0xe2, 0x31, 0x46, 0x0e, 0x93, 0xf5, 0x76, 0xa2, 0x03, + 0xc6, 0x45, 0xeb, 0xa2, 0x0e, 0xbc, 0x00, 0x5e, 0x64, 0x0d, 0x2f, 0xfc, 0xbd, 0x91, 0x4d, 0xc7, + 0x3c, 0xdd, 0xf7, 0x52, 0xc2, 0xa4, 0x92, 0x92, 0x73, 0x73, 0x84, 0xdd, 0xde, 0x8d, 0x8d, 0xd1, + 0xc4, 0x12, 0xfc, 0xa7, 0x33, 0x0e, 0x7f, 0x81, 0x64, 0xfd, 0xeb, 0xb8, 0x47, 0x42, 0x08, 0x7f, + 0x28, 0xc1, 0x81, 0x12, 0x1c, 0xb0, 0xef, 0x19, 0xb3, 0xef, 0x91, 0x73, 0x9d, 0x31, 0xdb, 0xbc, + 0xb5, 0xd8, 0x40, 0x42, 0x65, 0xf3, 0x65, 0x43, 0xb8, 0x53, 0x8f, 0x3b, 0xf5, 0x74, 0x5b, 0x53, + 0xea, 0x16, 0x8d, 0x27, 0xbc, 0xe1, 0x4e, 0x3d, 0x51, 0x5a, 0x90, 0x15, 0x6d, 0x34, 0x84, 0xb0, + 0xe2, 0xe3, 0xd6, 0x5a, 0x6b, 0x00, 0x1d, 0x80, 0x0e, 0x40, 0x27, 0xd4, 0x7a, 0x41, 0x6a, 0xc5, + 0x17, 0x0f, 0x82, 0xd4, 0x8a, 0xb1, 0x7e, 0x21, 0xb5, 0x62, 0x12, 0x26, 0x21, 0xeb, 0xa9, 0x15, + 0xb3, 0x99, 0xc6, 0x67, 0x4d, 0x51, 0x43, 0x6e, 0x79, 0xe4, 0x96, 0x87, 0xde, 0x02, 0xbd, 0x05, + 0x7a, 0x0b, 0x5c, 0x1f, 0xb8, 0x3e, 0xd0, 0x5b, 0xa0, 0xb7, 0x00, 0x74, 0x00, 0x3a, 0xd0, 0x5b, + 0xa0, 0xb7, 0x40, 0x6f, 0x81, 0xde, 0x02, 0xbd, 0x05, 0x7a, 0x8b, 0x64, 0xbd, 0x05, 0x49, 0x93, + 0x77, 0x1c, 0x29, 0x59, 0x29, 0x93, 0xeb, 0xb7, 0x77, 0xe3, 0xf3, 0x55, 0x9b, 0x94, 0x71, 0x6f, + 0xae, 0xeb, 0xb8, 0xc6, 0x4f, 0xd3, 0x1e, 0x58, 0x61, 0x2e, 0x29, 0x3c, 0xbb, 0xed, 0xeb, 0xdf, + 0x47, 0xe4, 0x1b, 0x21, 0x41, 0x45, 0xe4, 0x1b, 0x22, 0xdf, 0xa0, 0xc4, 0x42, 0x89, 0x5d, 0x7c, + 0x51, 0xb8, 0xcc, 0x14, 0x86, 0xe9, 0x19, 0xff, 0x72, 0xf1, 0x73, 0xe0, 0x9a, 0xff, 0xc6, 0xd7, + 0x36, 0x82, 0x4d, 0x42, 0x9d, 0x85, 0x50, 0x02, 0xa1, 0x04, 0xea, 0x6c, 0xbe, 0x5d, 0xa5, 0x35, + 0xce, 0x8b, 0xb3, 0x69, 0x9c, 0x4d, 0x83, 0x11, 0x81, 0x11, 0x81, 0x11, 0x81, 0x11, 0x81, 0x11, + 0x81, 0x11, 0x81, 0x11, 0x41, 0x3d, 0xde, 0x79, 0xa8, 0xa4, 0xc9, 0xc7, 0xb3, 0x56, 0xff, 0xb3, + 0x6a, 0x94, 0x50, 0x3f, 0xbe, 0x73, 0xcd, 0x3e, 0x1b, 0x4e, 0x2c, 0xc3, 0x65, 0x9e, 0x30, 0x5d, + 0x11, 0x5e, 0x41, 0x0e, 0xb4, 0x00, 0x0d, 0x19, 0x1a, 0x32, 0x34, 0x64, 0x68, 0xc8, 0xf0, 0x98, + 0xc8, 0x3d, 0xa6, 0xa4, 0x44, 0xf3, 0xc2, 0xab, 0x81, 0x57, 0x03, 0xaf, 0x26, 0x3d, 0x5e, 0x4d, + 0x04, 0xbb, 0xf0, 0x93, 0x59, 0x63, 0xe6, 0x1a, 0x8e, 0x6d, 0x3d, 0xc6, 0x87, 0x9b, 0x97, 0x8d, + 0x01, 0x72, 0x00, 0x39, 0x80, 0x1c, 0x40, 0x4e, 0xf0, 0x19, 0x97, 0x0e, 0xa6, 0x21, 0xf8, 0x48, + 0x42, 0x26, 0xe3, 0xb5, 0xd6, 0x00, 0x3a, 0x00, 0x1d, 0x80, 0x4e, 0xa8, 0xf5, 0x32, 0xe1, 0xb6, + 0x28, 0x56, 0x25, 0x60, 0x4e, 0x15, 0x91, 0xff, 0x52, 0x61, 0x25, 0xd0, 0x1c, 0x22, 0xff, 0x13, + 0x33, 0x05, 0xe5, 0xc3, 0x93, 0x2a, 0x42, 0xff, 0x5f, 0xff, 0xea, 0x26, 0x98, 0x74, 0x78, 0xc2, + 0xb4, 0x98, 0x31, 0xcf, 0xe1, 0xee, 0x49, 0x62, 0x1e, 0xc1, 0x26, 0x41, 0x3f, 0x40, 0x3f, 0x40, + 0x3f, 0x42, 0xad, 0x97, 0x01, 0xeb, 0xf3, 0x91, 0x69, 0x55, 0xcb, 0x32, 0xbc, 0x9e, 0x52, 0x8c, + 0x36, 0x02, 0x38, 0x5c, 0x02, 0x9f, 0xd9, 0x3c, 0xcc, 0x25, 0xf0, 0x19, 0xdd, 0x7c, 0xe6, 0x28, + 0x47, 0x53, 0x80, 0x7b, 0x8c, 0xd1, 0x17, 0xa4, 0xbe, 0x50, 0x94, 0xd7, 0xe1, 0x04, 0x08, 0xcf, + 0x45, 0x78, 0x2e, 0x39, 0x75, 0xc3, 0x61, 0xf3, 0x0e, 0x5f, 0xc4, 0x61, 0x33, 0xbc, 0x20, 0x78, + 0x41, 0x7a, 0xbd, 0x20, 0x1c, 0x36, 0x87, 0x1f, 0x33, 0x1c, 0x36, 0x03, 0x72, 0x00, 0x39, 0x80, + 0x9c, 0xdf, 0x3f, 0x23, 0x0e, 0x9b, 0x01, 0x3a, 0x00, 0x9d, 0xa4, 0x80, 0x0e, 0x0e, 0x9b, 0xd7, + 0x94, 0x41, 0x1c, 0x36, 0xc7, 0xd2, 0xf6, 0x70, 0xd8, 0x9c, 0x84, 0x59, 0xc0, 0x61, 0xf3, 0x26, + 0x85, 0x11, 0x87, 0xcd, 0xa0, 0x1f, 0xa0, 0x1f, 0x09, 0xa3, 0x1f, 0x38, 0x6c, 0x4e, 0x1d, 0x9f, + 0xc1, 0x61, 0xb3, 0x76, 0x3e, 0x83, 0xc3, 0xe6, 0xec, 0x90, 0x99, 0x9c, 0x1c, 0x36, 0x23, 0xf3, + 0xc1, 0xee, 0x83, 0x25, 0x2b, 0xf7, 0xc1, 0xb7, 0x65, 0xbb, 0x9d, 0x65, 0xb3, 0x84, 0xd9, 0x0f, + 0x2c, 0xe7, 0xee, 0x8e, 0xdb, 0x77, 0x86, 0x33, 0x9e, 0x8d, 0xa3, 0x17, 0x3e, 0xf9, 0xc1, 0xeb, + 0x06, 0x90, 0xfb, 0x80, 0x90, 0xfb, 0x22, 0xf7, 0x01, 0x72, 0x1f, 0xa8, 0x74, 0xf6, 0x10, 0x8e, + 0xa2, 0x81, 0x0b, 0x44, 0x0e, 0x47, 0xb1, 0x9c, 0x3b, 0xc3, 0x66, 0xfc, 0xee, 0xe7, 0xad, 0xe3, + 0x1a, 0x73, 0x3b, 0x6e, 0xf4, 0x7f, 0xce, 0x3c, 0x1c, 0x2f, 0xbe, 0x88, 0xf2, 0x9b, 0xb6, 0xe3, + 0xe7, 0x8f, 0x9b, 0x4d, 0x27, 0x44, 0x19, 0x88, 0x32, 0x10, 0x65, 0xc2, 0xad, 0x17, 0xa4, 0x8f, + 0x4b, 0x8a, 0x1b, 0xf5, 0x8a, 0x05, 0x23, 0x64, 0x17, 0x21, 0xbb, 0xe0, 0x48, 0xe0, 0x48, 0xe0, + 0x48, 0xe0, 0x48, 0xe0, 0x48, 0xe0, 0x48, 0xe0, 0x48, 0x1b, 0x38, 0x12, 0x94, 0xe6, 0x9d, 0xc7, + 0x4a, 0x96, 0xd0, 0xdc, 0x5c, 0x34, 0xdb, 0x5a, 0xb6, 0x4a, 0xa8, 0x33, 0x3f, 0xbf, 0x9b, 0xb1, + 0x7c, 0xb4, 0x90, 0x3a, 0xf3, 0xeb, 0x06, 0xc2, 0xe9, 0xcc, 0x87, 0xd0, 0x99, 0xa1, 0x33, 0x47, + 0x34, 0x2d, 0xcf, 0xfc, 0x8e, 0x99, 0x43, 0x97, 0x0d, 0xc3, 0x4c, 0xd8, 0xca, 0x74, 0x1c, 0x87, + 0xf8, 0x4e, 0x7b, 0x09, 0x17, 0x1f, 0x3f, 0x2e, 0xdd, 0xc8, 0x83, 0xd7, 0x6b, 0x9f, 0x70, 0xdf, + 0xce, 0xc3, 0xa6, 0x0c, 0x97, 0x0d, 0x2d, 0xd6, 0x17, 0x8e, 0x1b, 0x7e, 0xdf, 0xbe, 0x6e, 0x00, + 0xe7, 0x43, 0xd8, 0xb7, 0x91, 0xf6, 0x2d, 0xce, 0x87, 0xa0, 0x7d, 0x40, 0xfb, 0x88, 0xa3, 0x7d, + 0xbc, 0x82, 0x62, 0xa3, 0x6f, 0xf1, 0xc5, 0x8b, 0xc6, 0xbd, 0xda, 0xb3, 0xb9, 0x5d, 0xd4, 0x15, + 0x82, 0xe8, 0x01, 0xd1, 0x03, 0xa2, 0x87, 0xb2, 0x41, 0xdb, 0x00, 0x3c, 0x13, 0x4f, 0x30, 0xd7, + 0xe0, 0x03, 0x15, 0xa0, 0xe6, 0xb7, 0x0d, 0x40, 0x02, 0x20, 0x01, 0x90, 0xc2, 0xed, 0xa6, 0x97, + 0x1b, 0xc8, 0x10, 0xb3, 0x76, 0x25, 0x60, 0xd3, 0x49, 0x8c, 0x36, 0x96, 0xef, 0xa6, 0x3d, 0xf2, + 0xff, 0xe5, 0xfd, 0xce, 0xa3, 0x52, 0x41, 0x42, 0x20, 0xfb, 0x72, 0x74, 0x8e, 0x25, 0x34, 0x25, + 0xe7, 0x7e, 0x84, 0xbc, 0xd1, 0xf2, 0x1f, 0x4c, 0xe6, 0x7d, 0x09, 0x49, 0x00, 0xbd, 0xb5, 0x59, + 0xc9, 0xc1, 0xfb, 0x7e, 0xbb, 0x0a, 0x82, 0xf8, 0x63, 0x02, 0xc6, 0xe6, 0xa9, 0x92, 0x78, 0xaf, + 0x82, 0x6a, 0xaa, 0xca, 0xa5, 0x93, 0xf2, 0x49, 0xf5, 0xb8, 0x74, 0x52, 0x49, 0xd1, 0x9c, 0xbd, + 0x4b, 0x46, 0x2b, 0xdd, 0x77, 0x1a, 0x57, 0x9e, 0x44, 0x40, 0xe6, 0xe3, 0xfb, 0xb2, 0x61, 0x0e, + 0x06, 0x2e, 0xf3, 0x3c, 0x89, 0xb0, 0x5c, 0xfc, 0x24, 0xa1, 0xad, 0xb6, 0x29, 0x04, 0x73, 0x6d, + 0x69, 0xc8, 0x5c, 0xf8, 0xeb, 0xfd, 0xfb, 0x9b, 0x43, 0xe3, 0xa4, 0xfb, 0x74, 0x53, 0x34, 0x4e, + 0xba, 0x8b, 0x8f, 0xc5, 0xf9, 0x1f, 0x8b, 0xcf, 0xa5, 0x9b, 0x43, 0xa3, 0xbc, 0xfa, 0x5c, 0xb9, + 0x39, 0x34, 0x2a, 0xdd, 0xfd, 0x1f, 0x3f, 0x3e, 0xee, 0xff, 0x3a, 0x9a, 0x86, 0xff, 0xe2, 0x1f, + 0x05, 0xdd, 0x8b, 0x0c, 0xb7, 0x8d, 0xf4, 0x1c, 0x01, 0xbf, 0x72, 0xaa, 0x10, 0x26, 0x87, 0x30, + 0x39, 0x72, 0x47, 0x0f, 0x52, 0x71, 0x24, 0x65, 0x05, 0x52, 0x31, 0x94, 0x19, 0x28, 0x33, 0xd9, + 0x53, 0x66, 0x20, 0x15, 0x43, 0x2a, 0x06, 0x20, 0x01, 0x90, 0x12, 0x03, 0x48, 0x90, 0x8a, 0xdf, + 0x1a, 0x21, 0x48, 0xc5, 0xa1, 0xf4, 0x47, 0x48, 0xc5, 0x90, 0x8a, 0x21, 0x15, 0xcb, 0xd1, 0xbf, + 0xe4, 0xb6, 0x02, 0xa9, 0xf8, 0xf7, 0x46, 0x0b, 0x52, 0x31, 0xa4, 0x62, 0xcd, 0x0a, 0x52, 0x62, + 0xa4, 0x62, 0xdc, 0x16, 0xda, 0x79, 0xac, 0x64, 0xdd, 0x16, 0xea, 0xcc, 0x9a, 0xed, 0xf8, 0xad, + 0x12, 0xde, 0x3a, 0x08, 0xa7, 0xc6, 0x47, 0x52, 0xe1, 0x23, 0xdf, 0x30, 0x28, 0xe1, 0x86, 0x81, + 0x4c, 0x1f, 0x38, 0xcd, 0x37, 0x0c, 0xcc, 0x89, 0xf8, 0x69, 0x8c, 0x4d, 0xcf, 0x5b, 0x0e, 0x61, + 0xc4, 0xc3, 0xa3, 0xf5, 0x66, 0xa2, 0x1d, 0x22, 0x1d, 0xe2, 0xbe, 0x01, 0xa5, 0x04, 0x94, 0xa7, + 0x43, 0xa4, 0xc8, 0xd2, 0xce, 0x9a, 0x40, 0xca, 0xed, 0xbb, 0xa8, 0x6b, 0x7c, 0x9d, 0x13, 0x27, + 0xe0, 0xb0, 0x78, 0xc0, 0xbc, 0xbe, 0xcb, 0xc7, 0x91, 0x58, 0xd1, 0x8b, 0x8c, 0xca, 0xcf, 0x8d, + 0x60, 0xcf, 0x63, 0xcf, 0x67, 0x6c, 0xcf, 0x7b, 0xc2, 0xe5, 0xf6, 0x5d, 0xda, 0x77, 0xba, 0xe5, + 0xf4, 0x4d, 0xcb, 0x30, 0xbd, 0xe8, 0xdb, 0xdc, 0x6f, 0x01, 0x7b, 0x1c, 0x7b, 0x3c, 0x63, 0x7b, + 0xdc, 0xf4, 0x0c, 0x7b, 0x32, 0xba, 0x65, 0x6e, 0x8c, 0x6d, 0x1e, 0xe1, 0xec, 0x21, 0xe6, 0x59, + 0x43, 0x8c, 0x33, 0x2a, 0x19, 0x67, 0x09, 0x92, 0x04, 0x69, 0x59, 0x67, 0x05, 0x32, 0x75, 0xe6, + 0x18, 0x8a, 0xac, 0x14, 0xed, 0x5f, 0xf6, 0xd0, 0xca, 0xd2, 0xf6, 0xa5, 0x8e, 0x31, 0x91, 0xac, + 0xd8, 0x4d, 0x80, 0xf5, 0x9d, 0x4b, 0x5c, 0x71, 0x8c, 0xef, 0xaa, 0x01, 0xd8, 0x5e, 0xd8, 0x5e, + 0xd8, 0x5e, 0xd8, 0x5e, 0xd8, 0x5e, 0xd8, 0x5e, 0xd8, 0xde, 0xdd, 0x6d, 0x6f, 0x84, 0x84, 0x6d, + 0x9b, 0x6d, 0x70, 0xe8, 0xc4, 0x6d, 0xb0, 0xc5, 0xb0, 0xc5, 0xd0, 0xba, 0xe8, 0x77, 0xbc, 0x88, + 0x32, 0x18, 0xeb, 0x7b, 0x3d, 0x42, 0xc8, 0x26, 0x76, 0x39, 0x76, 0x79, 0xe2, 0x77, 0x79, 0xd4, + 0xc5, 0xbd, 0xb6, 0xd1, 0xcb, 0x11, 0xbe, 0x5b, 0xb7, 0x27, 0xa3, 0xd9, 0xa3, 0x4f, 0x13, 0x00, + 0x12, 0x2e, 0x1b, 0x39, 0xf7, 0xcc, 0x18, 0xbb, 0xfc, 0xde, 0x14, 0x2c, 0x96, 0x73, 0x1e, 0x6c, + 0x0a, 0xa0, 0x01, 0xd0, 0xc8, 0x18, 0x68, 0x04, 0x16, 0xf9, 0x32, 0xa5, 0x73, 0x1c, 0x0c, 0x89, + 0xe0, 0x11, 0x15, 0x1a, 0x03, 0x66, 0x0b, 0x2e, 0x1e, 0x3f, 0x9b, 0x9e, 0x84, 0x92, 0xda, 0x9d, + 0xfa, 0x79, 0xeb, 0x7b, 0xbd, 0xd7, 0xee, 0x34, 0xbe, 0xd7, 0xae, 0xea, 0xbd, 0xda, 0x65, 0xaf, + 0xd5, 0xbe, 0x6a, 0xb4, 0x2e, 0xa2, 0x2e, 0xa9, 0xb9, 0xd3, 0xe7, 0xc5, 0x8a, 0x51, 0x8d, 0xe9, + 0xbd, 0xae, 0xde, 0xec, 0xc5, 0x2b, 0x2d, 0x5f, 0xb2, 0xd6, 0x6c, 0x16, 0x74, 0x78, 0xe5, 0x2a, + 0x5e, 0xa8, 0xdd, 0xac, 0x9d, 0xc5, 0x7d, 0xa3, 0x48, 0xdf, 0xec, 0xaa, 0xde, 0xd8, 0x6a, 0x8c, + 0xdd, 0x3c, 0xae, 0x72, 0x68, 0x99, 0x63, 0x63, 0x60, 0x8e, 0xc6, 0x33, 0x8e, 0x1f, 0xdd, 0xda, + 0x05, 0xdb, 0x0a, 0x7b, 0x99, 0x3b, 0xde, 0x6d, 0x67, 0x98, 0x4b, 0x98, 0xcb, 0xc4, 0x9b, 0xcb, + 0xe8, 0xb7, 0x91, 0x23, 0xde, 0x42, 0x56, 0x94, 0x4d, 0x84, 0xd9, 0x03, 0xa3, 0xef, 0x8c, 0x46, + 0x13, 0x9b, 0x8b, 0xc7, 0x18, 0x69, 0x45, 0xd6, 0xdb, 0x89, 0x0e, 0x18, 0x17, 0xad, 0x8b, 0x3a, + 0xf0, 0x02, 0x78, 0x91, 0x35, 0xbc, 0xf0, 0xf7, 0x46, 0xee, 0x1d, 0x73, 0xe1, 0x08, 0xd3, 0x32, + 0xc6, 0xa6, 0xf8, 0x19, 0xc3, 0x25, 0x7f, 0xd9, 0x08, 0xd0, 0x02, 0x68, 0x91, 0x31, 0xb4, 0x88, + 0x7c, 0x71, 0x1e, 0x07, 0xe6, 0x38, 0x30, 0x5f, 0x1b, 0x5a, 0x1c, 0x98, 0x2b, 0x14, 0x0b, 0xd2, + 0x79, 0x60, 0xbe, 0xb4, 0x9d, 0x73, 0x34, 0x67, 0xf1, 0x6d, 0xf0, 0xaa, 0x1d, 0x98, 0x61, 0x98, + 0x61, 0x98, 0x61, 0x98, 0x61, 0x98, 0x61, 0x98, 0xe1, 0xdc, 0x9a, 0xe1, 0x74, 0xa7, 0x67, 0x08, + 0x91, 0xba, 0x42, 0x4e, 0xfa, 0x04, 0xc1, 0x47, 0xcc, 0xf5, 0xc2, 0xe7, 0x4f, 0x58, 0x7e, 0x0f, + 0x25, 0x1a, 0x09, 0x29, 0x04, 0x4a, 0x34, 0xa2, 0x44, 0x23, 0x38, 0x72, 0xc6, 0x38, 0x72, 0xe4, + 0xbc, 0xdb, 0x7d, 0xc7, 0xb6, 0x59, 0x5f, 0x18, 0x2e, 0x13, 0xee, 0x63, 0xfc, 0x38, 0x8d, 0xf5, + 0xe6, 0xe2, 0x67, 0xd9, 0x3e, 0x3a, 0x44, 0x46, 0x5b, 0x64, 0xb4, 0xa5, 0xde, 0xab, 0x31, 0x69, + 0xac, 0xf6, 0x8c, 0xb6, 0x03, 0xd6, 0xe7, 0x23, 0xd3, 0xaa, 0x96, 0x65, 0x24, 0xb2, 0x2d, 0xc5, + 0x68, 0x23, 0xe0, 0x52, 0xc4, 0x69, 0x4c, 0x4e, 0xc2, 0x57, 0x09, 0x59, 0x18, 0x65, 0x26, 0x78, + 0x5d, 0x0d, 0x73, 0x49, 0x4e, 0x32, 0x4f, 0xd9, 0x09, 0x5d, 0x55, 0x24, 0x05, 0x95, 0x90, 0xc0, + 0x55, 0x6a, 0xe2, 0xd6, 0xd5, 0x14, 0x1c, 0xe5, 0x68, 0x0a, 0xb2, 0x9e, 0xa2, 0x32, 0x02, 0x6d, + 0xfd, 0xe9, 0x58, 0x03, 0x63, 0xe6, 0x90, 0xc6, 0x67, 0x41, 0xcf, 0x4d, 0xc5, 0x67, 0x40, 0x27, + 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, + 0xea, 0x18, 0xd0, 0x3f, 0x8c, 0x8d, 0x4d, 0x8b, 0xdf, 0x33, 0x83, 0xdb, 0x82, 0xb9, 0xf7, 0xa6, + 0x15, 0x9f, 0x0a, 0x6d, 0x68, 0x13, 0xaa, 0x10, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, + 0x38, 0x11, 0x38, 0x11, 0x38, 0x51, 0xa2, 0x39, 0xd1, 0x88, 0xdb, 0x7c, 0x34, 0x19, 0x19, 0xe6, + 0xe0, 0x9e, 0xb9, 0x82, 0x7b, 0x6c, 0x66, 0x45, 0x24, 0xf2, 0xa3, 0x37, 0xda, 0x07, 0x57, 0x02, + 0x57, 0x02, 0x57, 0x02, 0x57, 0x02, 0x57, 0x02, 0x57, 0x02, 0x57, 0x02, 0x57, 0x42, 0x91, 0xb7, + 0xbd, 0x58, 0x91, 0xb1, 0x8b, 0x80, 0xd3, 0x83, 0x65, 0x18, 0x5f, 0x12, 0x2e, 0xee, 0x87, 0x2a, + 0x3c, 0x16, 0xb0, 0x53, 0x61, 0x0a, 0x90, 0x05, 0xec, 0x52, 0xd4, 0x70, 0xc4, 0x12, 0xc2, 0x11, + 0x75, 0x12, 0x35, 0x84, 0x23, 0xee, 0xbc, 0x6a, 0x10, 0x8e, 0x08, 0x67, 0x0a, 0xce, 0x14, 0x9c, + 0x29, 0x38, 0x53, 0x70, 0xa6, 0xe0, 0x4c, 0xc1, 0x99, 0xd2, 0xe5, 0x4c, 0x21, 0x1c, 0x11, 0x0c, + 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x68, 0x87, + 0x61, 0x46, 0x38, 0x22, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, 0x38, 0x11, + 0x38, 0x11, 0x38, 0x11, 0xc2, 0x11, 0xc1, 0x95, 0xc0, 0x95, 0xc0, 0x95, 0xc0, 0x95, 0xc0, 0x95, + 0xc0, 0x95, 0xc0, 0x95, 0x72, 0xc4, 0x95, 0x32, 0x1d, 0x8e, 0x18, 0x22, 0x5f, 0x67, 0xf8, 0x01, + 0x49, 0x79, 0x2e, 0xd3, 0x50, 0x29, 0x42, 0x17, 0x5d, 0x09, 0x77, 0xd2, 0x17, 0xcb, 0x1a, 0xe2, + 0x85, 0xcf, 0x77, 0xe3, 0x5e, 0x9b, 0x31, 0xf7, 0xdb, 0xac, 0xb5, 0xde, 0xd5, 0xa2, 0x35, 0xca, + 0xd4, 0xa8, 0xae, 0x69, 0x7b, 0x63, 0xc7, 0x15, 0x11, 0xb2, 0xa3, 0xfa, 0x5f, 0x45, 0x82, 0x54, + 0x42, 0x4a, 0x8b, 0x04, 0xa9, 0x48, 0x90, 0xaa, 0xd2, 0x87, 0x43, 0x44, 0xb2, 0x06, 0x13, 0x1f, + 0x39, 0x22, 0xd9, 0x72, 0xfa, 0xa6, 0x65, 0x98, 0x83, 0x81, 0xcb, 0x3c, 0x2f, 0xbe, 0xc0, 0xb2, + 0xde, 0x1c, 0xa4, 0x10, 0x48, 0x21, 0x90, 0x42, 0x42, 0xad, 0x97, 0x89, 0x1d, 0xad, 0x98, 0x75, + 0xc0, 0xd6, 0x9c, 0xc4, 0x68, 0x63, 0xf9, 0x3a, 0xda, 0x85, 0x8b, 0xd5, 0xa0, 0xf0, 0x71, 0x4c, + 0x48, 0x91, 0x3d, 0x42, 0x72, 0x47, 0x4a, 0xde, 0x88, 0x6d, 0x18, 0xb9, 0xfb, 0xb2, 0xc4, 0xb1, + 0x0b, 0x8c, 0xe1, 0x27, 0x89, 0x6d, 0xb6, 0x4d, 0x21, 0x98, 0x6b, 0x4b, 0x1b, 0x4e, 0xbf, 0xe1, + 0xbf, 0xde, 0xbf, 0xbf, 0x39, 0x34, 0x4e, 0xba, 0x4f, 0x37, 0x45, 0xe3, 0xa4, 0xbb, 0xf8, 0x58, + 0x9c, 0xff, 0xb1, 0xf8, 0x5c, 0xba, 0x39, 0x34, 0xca, 0xab, 0xcf, 0x95, 0x9b, 0x43, 0xa3, 0xd2, + 0xdd, 0xff, 0xf1, 0xe3, 0xe3, 0xfe, 0xaf, 0xa3, 0x69, 0xf8, 0x2f, 0xfe, 0x51, 0x90, 0xf6, 0xf0, + 0x5d, 0x29, 0x2d, 0x4d, 0x3f, 0x24, 0x78, 0x71, 0x56, 0xb1, 0x38, 0x17, 0x8b, 0xd3, 0x34, 0x86, + 0x35, 0xe3, 0x6b, 0xf7, 0x57, 0xf1, 0x43, 0x79, 0x7a, 0xba, 0xff, 0xeb, 0x78, 0xfa, 0xfa, 0x2f, + 0x9f, 0x36, 0xfd, 0x58, 0xf1, 0xc3, 0xf1, 0xf4, 0x74, 0xcb, 0xbf, 0x54, 0xa7, 0xa7, 0x3b, 0xb6, + 0x51, 0x99, 0xbe, 0x0f, 0xfc, 0xe8, 0xec, 0xef, 0x4b, 0xdb, 0xbe, 0x50, 0xde, 0xf2, 0x85, 0xa3, + 0x6d, 0x5f, 0x38, 0xda, 0xf2, 0x85, 0xad, 0x8f, 0x54, 0xda, 0xf2, 0x85, 0xca, 0xf4, 0x29, 0xf0, + 0xf3, 0xef, 0x37, 0xff, 0x68, 0x75, 0xba, 0xff, 0xb4, 0xed, 0xdf, 0x8e, 0xa7, 0x4f, 0xa7, 0xfb, + 0x09, 0xdc, 0xaa, 0xef, 0xf4, 0x3e, 0x47, 0x4c, 0xa8, 0x90, 0x68, 0xf1, 0x3d, 0xe1, 0x86, 0xaf, + 0xe8, 0xff, 0x7b, 0x30, 0xc0, 0x71, 0x7b, 0x60, 0x6c, 0x46, 0x62, 0x62, 0x0c, 0xb8, 0xd7, 0x77, + 0xee, 0x99, 0x8c, 0xeb, 0xa8, 0xeb, 0xcd, 0xc5, 0x3f, 0x4c, 0x1f, 0x9a, 0x96, 0xc7, 0xe0, 0x44, + 0xc2, 0x89, 0x84, 0x13, 0x19, 0x6e, 0xbd, 0xdc, 0x3a, 0x8e, 0xc5, 0x4c, 0x29, 0x6e, 0x64, 0x31, + 0xc1, 0xf0, 0x35, 0x36, 0x3d, 0x8f, 0xdf, 0x33, 0x63, 0xe4, 0x0c, 0x24, 0x5c, 0x23, 0x5b, 0x6b, + 0x0d, 0xe0, 0x05, 0xf0, 0x02, 0x78, 0x01, 0xbc, 0xd4, 0x81, 0x97, 0xe8, 0x8f, 0x8d, 0x91, 0x0c, + 0xc9, 0x7d, 0xd5, 0x10, 0xa0, 0x06, 0x50, 0x03, 0xa8, 0x09, 0xb5, 0x5e, 0x26, 0xdc, 0x16, 0xc5, + 0xaa, 0x04, 0xa4, 0xa9, 0x22, 0x4c, 0x50, 0x2a, 0xac, 0x04, 0x9a, 0x43, 0x98, 0x60, 0x62, 0xa6, + 0xa0, 0x5a, 0xa9, 0x1c, 0x55, 0x10, 0x2a, 0xa8, 0x4d, 0xe7, 0xc9, 0x68, 0xa8, 0xe0, 0x2a, 0x18, + 0x0c, 0xc9, 0x0b, 0x91, 0xbc, 0x90, 0x9c, 0x66, 0x21, 0x54, 0x68, 0x87, 0x2f, 0x22, 0x54, 0x08, + 0xde, 0x0b, 0xbc, 0x97, 0x04, 0x79, 0x2f, 0x08, 0x15, 0x0a, 0x0e, 0x0a, 0x42, 0x85, 0xa2, 0x8f, + 0x1c, 0x42, 0x85, 0x10, 0x2a, 0x94, 0xdc, 0xc5, 0x89, 0x50, 0x21, 0x84, 0x0a, 0x21, 0x54, 0x48, + 0x8e, 0xcc, 0xb1, 0x87, 0x50, 0xa1, 0xdf, 0x81, 0x01, 0x42, 0x85, 0x02, 0x63, 0x83, 0x50, 0x21, + 0x38, 0x91, 0x70, 0x22, 0xb3, 0xe7, 0x44, 0x22, 0x54, 0x28, 0xc2, 0xa0, 0x21, 0x54, 0x08, 0xe0, + 0x05, 0xf0, 0x02, 0x78, 0x21, 0x54, 0x08, 0x50, 0x03, 0xa8, 0xc9, 0x05, 0xd4, 0x20, 0x54, 0xe8, + 0xe5, 0x83, 0x20, 0x54, 0x48, 0xb7, 0xce, 0x8a, 0x50, 0x21, 0x84, 0x0a, 0xc9, 0xfd, 0x46, 0x0a, + 0x43, 0x85, 0x90, 0x58, 0x6c, 0x87, 0x51, 0x92, 0x96, 0x5b, 0xcc, 0x6f, 0x90, 0x30, 0xbd, 0xd8, + 0xc4, 0x63, 0xc6, 0x68, 0x62, 0x09, 0x3e, 0xb6, 0x98, 0x31, 0x1b, 0x05, 0x2f, 0x7c, 0x9e, 0xb1, + 0x0d, 0x6d, 0x20, 0xe1, 0x18, 0x21, 0x41, 0x45, 0xc2, 0x31, 0x24, 0x1c, 0x53, 0xe9, 0x91, 0x21, + 0x8a, 0x50, 0x83, 0xf5, 0x8f, 0x1c, 0x45, 0xc8, 0x6c, 0xf3, 0xd6, 0x62, 0x83, 0xf8, 0x62, 0xc6, + 0xaa, 0x21, 0xe8, 0xaf, 0x10, 0x45, 0x20, 0x8a, 0x40, 0x7f, 0xcd, 0xb5, 0x4f, 0x14, 0xe4, 0xb8, + 0x09, 0xba, 0x47, 0xc1, 0x66, 0x9b, 0x23, 0x32, 0x03, 0x62, 0xe1, 0x21, 0x09, 0xfc, 0x07, 0xfc, + 0x27, 0xa9, 0xfc, 0x27, 0xa2, 0x43, 0x20, 0xc7, 0x31, 0x88, 0xb9, 0x41, 0xc0, 0x5a, 0xc0, 0x5a, + 0x74, 0xb1, 0x96, 0xa8, 0x1b, 0xce, 0x6f, 0xc0, 0xb4, 0x2c, 0xe7, 0xdf, 0x67, 0x23, 0x69, 0x7a, + 0xf1, 0xe7, 0x7b, 0xb5, 0x02, 0x83, 0x4d, 0xc7, 0x9c, 0x26, 0x49, 0xce, 0x89, 0x24, 0x27, 0x45, + 0xda, 0xb6, 0x97, 0xb9, 0xfd, 0xe5, 0xc3, 0x80, 0x6c, 0x38, 0x50, 0x06, 0x0b, 0xca, 0xe0, 0x41, + 0x09, 0x4c, 0xc4, 0x83, 0x8b, 0x98, 0xb0, 0x21, 0xcf, 0xe9, 0x51, 0xe0, 0xfc, 0x48, 0x72, 0x82, + 0xe2, 0x0f, 0x70, 0x8c, 0xc1, 0x2d, 0x8c, 0xcc, 0x87, 0x79, 0x49, 0xbd, 0x70, 0xe2, 0xfc, 0x9b, + 0xa3, 0xbb, 0xde, 0xac, 0x3c, 0x38, 0x2d, 0x02, 0x4a, 0x01, 0xa5, 0x80, 0xd2, 0x64, 0x41, 0xe9, + 0x84, 0xdb, 0xe2, 0xa8, 0x24, 0x11, 0x49, 0x8f, 0x25, 0x34, 0x25, 0x27, 0xd8, 0x66, 0xf5, 0x4b, + 0xe2, 0x9d, 0x38, 0x99, 0xc1, 0x37, 0x92, 0x61, 0x2d, 0xd0, 0xac, 0xe4, 0x60, 0x1c, 0xbf, 0x5d, + 0x05, 0xd1, 0x20, 0x92, 0xb6, 0xc7, 0xfa, 0x54, 0x49, 0x0c, 0xd2, 0xa1, 0x9a, 0xaa, 0x72, 0xe9, + 0xa4, 0x7c, 0x52, 0x3d, 0x2e, 0x9d, 0x54, 0x52, 0x34, 0x67, 0xd9, 0xb8, 0x53, 0x97, 0x12, 0x57, + 0x3c, 0xa6, 0xca, 0xed, 0xb7, 0x23, 0x53, 0xed, 0x66, 0xb3, 0x1f, 0x8f, 0x22, 0x79, 0x47, 0x1f, + 0xc2, 0x28, 0xa1, 0xdc, 0xd1, 0x52, 0x0a, 0x05, 0x0c, 0x66, 0x94, 0xd4, 0x42, 0xd2, 0xb5, 0xbf, + 0x12, 0xb4, 0x3f, 0x68, 0x7f, 0xd0, 0xfe, 0xa0, 0xfd, 0xc1, 0x61, 0x85, 0xc3, 0x0a, 0xed, 0x0f, + 0xda, 0x1f, 0xb4, 0x3f, 0x40, 0x29, 0xa0, 0x14, 0x50, 0x0a, 0xed, 0x0f, 0xda, 0x1f, 0xb4, 0x3f, + 0x68, 0x7f, 0xd0, 0xfe, 0xa0, 0xfd, 0x91, 0x69, 0x7f, 0x11, 0xee, 0x02, 0xc6, 0x90, 0xfe, 0x72, + 0x13, 0x45, 0xcc, 0x22, 0xc6, 0xa4, 0xfe, 0xee, 0x26, 0xe1, 0xb5, 0xc7, 0xce, 0x97, 0xbd, 0xb4, + 0x67, 0x9d, 0xf4, 0xea, 0xa1, 0x99, 0x91, 0x9a, 0x40, 0x65, 0x1e, 0x2b, 0x50, 0x99, 0x23, 0x50, + 0x59, 0xad, 0x47, 0x80, 0x40, 0x65, 0x04, 0x2a, 0x13, 0xbb, 0xda, 0x38, 0xac, 0xd0, 0xe3, 0x42, + 0xe7, 0xf9, 0xb0, 0x02, 0xaa, 0x1a, 0x54, 0x35, 0xa8, 0x6a, 0x50, 0xd5, 0xa0, 0xaa, 0x41, 0x55, + 0x83, 0xaa, 0x06, 0x55, 0x0d, 0xaa, 0x1a, 0x54, 0x35, 0x0d, 0xca, 0x0f, 0x47, 0x44, 0x1d, 0xb5, + 0x93, 0x8a, 0x88, 0x3a, 0x38, 0xa9, 0x70, 0x52, 0xe1, 0xa4, 0xc2, 0x49, 0x85, 0x93, 0x0a, 0x27, + 0x15, 0x4e, 0x2a, 0x9c, 0x54, 0x38, 0xa9, 0x70, 0x52, 0xe1, 0xa4, 0xc2, 0x49, 0xfd, 0xad, 0x93, + 0x8a, 0xd0, 0x0f, 0x65, 0x63, 0xab, 0x3c, 0xf4, 0xa3, 0x91, 0x90, 0xd0, 0x0f, 0xd4, 0xfa, 0x57, + 0xec, 0x23, 0x20, 0xf8, 0x43, 0x03, 0x9c, 0x20, 0x4b, 0xaf, 0x14, 0xf2, 0x84, 0x30, 0x12, 0x28, + 0x74, 0xc8, 0xd2, 0x8b, 0x2c, 0xbd, 0x0a, 0x48, 0x16, 0x4a, 0x98, 0x84, 0x19, 0x2e, 0x59, 0xb5, + 0x4c, 0x5e, 0xd3, 0x50, 0x69, 0x25, 0x4d, 0xde, 0xc5, 0x18, 0xe8, 0x19, 0x9c, 0xce, 0xa1, 0xd4, + 0x1f, 0x01, 0x63, 0xfe, 0xf4, 0x6f, 0x7c, 0xab, 0xc9, 0x3d, 0x51, 0x13, 0x62, 0x37, 0x43, 0x5f, + 0x38, 0xe7, 0x76, 0xdd, 0x62, 0x33, 0x48, 0x9c, 0xb9, 0xe2, 0xf6, 0xc4, 0xb2, 0x76, 0xa8, 0xc2, + 0x72, 0x6e, 0x3e, 0x84, 0xff, 0x52, 0xcb, 0x1d, 0x30, 0x97, 0x0d, 0x3e, 0x3f, 0x2e, 0xbf, 0x12, + 0x6b, 0x68, 0x42, 0xae, 0xbd, 0xc8, 0x6b, 0x6e, 0x87, 0x05, 0xf6, 0xbb, 0x85, 0xf5, 0xfb, 0x75, + 0xb4, 0x7d, 0x75, 0x6c, 0xfe, 0x97, 0x2d, 0x83, 0xb2, 0xeb, 0x60, 0x84, 0x1b, 0x84, 0xcd, 0x8f, + 0x1e, 0x7c, 0xb0, 0x0d, 0x0f, 0x55, 0x70, 0xf9, 0xed, 0xd6, 0x27, 0xf1, 0xcd, 0xd0, 0xec, 0x87, + 0xb6, 0xbc, 0xd0, 0xef, 0x1d, 0xa1, 0x37, 0x1d, 0x9e, 0x5d, 0xd8, 0xd5, 0x4b, 0xf6, 0xe4, 0xf2, + 0xdb, 0x37, 0x18, 0xd4, 0xae, 0x0c, 0x29, 0x34, 0x03, 0x0a, 0xcd, 0x70, 0x5e, 0x33, 0x98, 0xd5, + 0xb3, 0x4b, 0x5a, 0x4a, 0x6f, 0x39, 0x08, 0x05, 0x73, 0xc8, 0x0d, 0xcf, 0x1c, 0xf2, 0xb7, 0xcf, + 0xf8, 0x9e, 0x33, 0x62, 0xf8, 0x5f, 0x79, 0x0b, 0xef, 0x76, 0xf2, 0x7f, 0x77, 0xf6, 0x77, 0xc3, + 0x90, 0xec, 0x70, 0xcb, 0x21, 0x2a, 0x71, 0x8e, 0x4c, 0x90, 0x23, 0x13, 0xe1, 0xd0, 0xcb, 0x45, + 0x8e, 0xe5, 0xda, 0xd5, 0xcf, 0xf4, 0xd7, 0x46, 0xf8, 0x2a, 0x5e, 0xfe, 0x37, 0xb3, 0x51, 0xbb, + 0x6b, 0xf7, 0x45, 0x17, 0xd7, 0x6b, 0x4b, 0x5e, 0xfd, 0xae, 0x9d, 0x17, 0xa5, 0x1a, 0x1e, 0x1b, + 0xba, 0x86, 0xd7, 0x6a, 0xe9, 0x19, 0x4b, 0x9b, 0x1f, 0x51, 0x23, 0x5c, 0x6f, 0x26, 0x9a, 0x56, + 0x78, 0x98, 0xb2, 0x8b, 0x62, 0xe1, 0x97, 0x79, 0x7e, 0xf4, 0xc2, 0xd0, 0xdb, 0x80, 0xc6, 0x3b, + 0x8e, 0x2c, 0x3c, 0xf8, 0xf3, 0x6e, 0x31, 0x73, 0xe8, 0xb2, 0x61, 0x94, 0x49, 0x5f, 0xa1, 0x76, + 0x84, 0x93, 0xfc, 0x42, 0x7b, 0x49, 0x74, 0x3f, 0x7e, 0x5c, 0x78, 0xd5, 0x07, 0xeb, 0x1b, 0x2e, + 0x09, 0xf7, 0x4b, 0xc7, 0xf7, 0x65, 0xc3, 0x73, 0x05, 0x33, 0xc6, 0x8e, 0xc5, 0xfb, 0x8f, 0x31, + 0xee, 0x9a, 0xbe, 0x6e, 0x29, 0x1f, 0xf7, 0x4e, 0x01, 0x27, 0xa9, 0x83, 0x93, 0xc8, 0x47, 0x10, + 0xd6, 0xe2, 0x9d, 0xe2, 0x1f, 0x41, 0xac, 0x1a, 0xc2, 0x0d, 0xd4, 0x78, 0x5b, 0x08, 0xc7, 0x07, + 0x91, 0xb7, 0x98, 0x9e, 0x23, 0x84, 0xd8, 0x41, 0xbe, 0xae, 0x33, 0x11, 0x4c, 0x62, 0x74, 0xef, + 0xb2, 0x3d, 0x39, 0xa1, 0xb8, 0xc5, 0x8c, 0x87, 0xe2, 0xc6, 0xdf, 0xa8, 0xb2, 0x37, 0xac, 0xb2, + 0x8d, 0xab, 0x6c, 0x03, 0x2b, 0xdb, 0xc8, 0xf1, 0x36, 0x74, 0xcc, 0x8d, 0x2d, 0x6d, 0x83, 0xaf, + 0x6f, 0x74, 0x79, 0xeb, 0x63, 0x6d, 0xbf, 0xcb, 0x5a, 0x1b, 0x72, 0xb6, 0xbd, 0xf4, 0xed, 0xaf, + 0x02, 0x06, 0xd4, 0xc2, 0x81, 0x2a, 0x58, 0x50, 0x0e, 0x0f, 0xca, 0x61, 0x42, 0x39, 0x5c, 0xc8, + 0x81, 0x0d, 0x49, 0xf0, 0x21, 0x1d, 0x46, 0xfc, 0x06, 0xfb, 0x8e, 0xe5, 0xb8, 0xf2, 0xd7, 0xd5, + 0x73, 0x46, 0x99, 0x59, 0xf3, 0x1f, 0x52, 0x11, 0x5e, 0x2d, 0x1b, 0x66, 0x54, 0xc2, 0x0d, 0x0d, + 0xec, 0xa8, 0x86, 0x1f, 0x32, 0x18, 0x22, 0x83, 0x23, 0x32, 0x58, 0x92, 0x0b, 0x4f, 0x92, 0x61, + 0x2a, 0xbe, 0x40, 0xb9, 0xbb, 0x62, 0x10, 0x59, 0xc0, 0xdc, 0x99, 0xc5, 0x1c, 0x2b, 0x68, 0x3b, + 0x20, 0x80, 0x2e, 0x80, 0xf2, 0x5d, 0x32, 0x97, 0x86, 0xcc, 0x0b, 0x37, 0xcc, 0x1e, 0x8c, 0x1d, + 0x3e, 0xdf, 0x18, 0x8a, 0x6c, 0x8e, 0xdf, 0x03, 0xcc, 0x0e, 0xcc, 0x0e, 0xcc, 0x0e, 0xcc, 0x0e, + 0xcc, 0xce, 0x56, 0xb3, 0xe3, 0x63, 0x65, 0x0e, 0x2c, 0xcf, 0xd8, 0x14, 0x3f, 0x0d, 0x3e, 0x50, + 0x67, 0x78, 0x56, 0x1d, 0xc0, 0xee, 0xc0, 0xee, 0xc0, 0xee, 0xc0, 0xee, 0xc0, 0xee, 0x6c, 0xb5, + 0x3b, 0x2b, 0xa8, 0xcc, 0x81, 0xd9, 0x89, 0x97, 0xf5, 0xea, 0xcd, 0x15, 0x11, 0x27, 0x1b, 0xd6, + 0x9b, 0x6b, 0x01, 0x26, 0x07, 0x26, 0x07, 0x26, 0x27, 0xc9, 0x26, 0x47, 0xf6, 0x81, 0x80, 0xdf, + 0xb0, 0x29, 0x84, 0x6b, 0x70, 0x7b, 0xc0, 0x1e, 0xd4, 0x2d, 0x4a, 0x3f, 0xdc, 0xf6, 0xb9, 0x2f, + 0x45, 0x8b, 0x45, 0x0d, 0x87, 0x56, 0x0e, 0x6c, 0x14, 0x00, 0x47, 0x0b, 0x74, 0x54, 0x80, 0x47, + 0x0e, 0x7c, 0xe4, 0x00, 0x48, 0x0e, 0x84, 0x6a, 0x00, 0x51, 0x11, 0x30, 0xaa, 0xe7, 0xe4, 0x84, + 0xdc, 0x9c, 0x82, 0xa3, 0x6f, 0xe2, 0xea, 0x1b, 0x7f, 0xcf, 0xc1, 0xda, 0x63, 0xc2, 0xf3, 0x3f, + 0x2d, 0x39, 0xfd, 0x02, 0xc0, 0xdf, 0xa5, 0x63, 0xc9, 0x29, 0x58, 0x6e, 0x8a, 0xce, 0xd2, 0x03, + 0xeb, 0x4c, 0xc5, 0x99, 0x3a, 0x0c, 0x25, 0x0c, 0x25, 0x0c, 0x25, 0x0c, 0x25, 0xc9, 0xbe, 0x91, + 0x96, 0x4c, 0xf4, 0x2d, 0x14, 0x53, 0x69, 0x26, 0xe5, 0x26, 0x1f, 0xdd, 0xf6, 0x4b, 0xed, 0x9e, + 0xdf, 0x53, 0x95, 0xac, 0x54, 0x93, 0x79, 0x09, 0x74, 0xa7, 0x28, 0xb9, 0xe9, 0xd6, 0xfe, 0x14, + 0x26, 0xd0, 0x24, 0x86, 0x83, 0xf5, 0x25, 0x62, 0x3e, 0x64, 0x7e, 0x89, 0xa8, 0x4a, 0xaa, 0x9a, + 0xa8, 0xb5, 0xf2, 0x2e, 0x9d, 0xad, 0x77, 0x73, 0xed, 0x54, 0x8c, 0x46, 0x13, 0x9b, 0x8b, 0x47, + 0x2a, 0x31, 0xee, 0x75, 0x87, 0x70, 0x34, 0xe0, 0x68, 0xc0, 0xd1, 0x80, 0xa3, 0x91, 0x42, 0x47, + 0x23, 0x27, 0x8a, 0xdc, 0x0a, 0xb1, 0x39, 0xf3, 0xfc, 0xcf, 0x8f, 0x10, 0xe5, 0x16, 0x83, 0xa7, + 0x2c, 0xde, 0x38, 0xb0, 0xda, 0x14, 0xc5, 0x1d, 0xc3, 0x62, 0xc2, 0x62, 0xc2, 0x62, 0xc2, 0x62, + 0x92, 0xec, 0x1b, 0x3e, 0x36, 0xcc, 0xc1, 0xc0, 0x65, 0x9e, 0x47, 0x61, 0x34, 0x4f, 0x14, 0xf6, + 0xb1, 0x1c, 0xb3, 0xd4, 0xcb, 0x73, 0x6b, 0x69, 0x84, 0xd4, 0xcf, 0x4d, 0x60, 0x8e, 0x3e, 0x11, + 0xf4, 0xd5, 0x36, 0x85, 0x60, 0xae, 0xad, 0x7c, 0xba, 0xfc, 0x0e, 0xff, 0x7a, 0xff, 0xfe, 0xe6, + 0xd0, 0x38, 0xe9, 0x3e, 0xdd, 0x14, 0x8d, 0x93, 0xee, 0xe2, 0x63, 0x71, 0xfe, 0xc7, 0xe2, 0x73, + 0xe9, 0xe6, 0xd0, 0x28, 0xaf, 0x3e, 0x57, 0x6e, 0x0e, 0x8d, 0x4a, 0x77, 0xff, 0xc7, 0x8f, 0x8f, + 0xfb, 0xbf, 0x8e, 0xa6, 0xe1, 0xbf, 0xf8, 0x47, 0x41, 0xf9, 0x4b, 0x75, 0xd5, 0x0a, 0x3b, 0x1f, + 0x32, 0xb4, 0x89, 0xaa, 0xd8, 0x44, 0x72, 0x37, 0x91, 0x69, 0x0c, 0x6b, 0xc6, 0xd7, 0xee, 0xaf, + 0xe2, 0x87, 0xf2, 0xf4, 0x74, 0xff, 0xd7, 0xf1, 0xf4, 0xf5, 0x5f, 0x3e, 0x6d, 0xfa, 0xb1, 0xe2, + 0x87, 0xe3, 0xe9, 0xe9, 0x96, 0x7f, 0xa9, 0x4e, 0x4f, 0x77, 0x6c, 0xa3, 0x32, 0x7d, 0x1f, 0xf8, + 0xd1, 0xd9, 0xdf, 0x97, 0xb6, 0x7d, 0xa1, 0xbc, 0xe5, 0x0b, 0x47, 0xdb, 0xbe, 0x70, 0xb4, 0xe5, + 0x0b, 0x5b, 0x1f, 0xa9, 0xb4, 0xe5, 0x0b, 0x95, 0xe9, 0x53, 0xe0, 0xe7, 0xdf, 0x6f, 0xfe, 0xd1, + 0xea, 0x74, 0xff, 0x69, 0xdb, 0xbf, 0x1d, 0x4f, 0x9f, 0x4e, 0xf7, 0x33, 0x00, 0x29, 0xd0, 0x8a, + 0x55, 0xf8, 0xba, 0x0f, 0xc2, 0x20, 0xd7, 0x8b, 0x37, 0x75, 0x0a, 0x0f, 0x18, 0x1e, 0x30, 0x3c, + 0x60, 0x78, 0xc0, 0x29, 0xf4, 0x80, 0x73, 0xa2, 0x19, 0xbf, 0x44, 0x6d, 0xce, 0xbc, 0xb5, 0xff, + 0x0f, 0xed, 0x78, 0x39, 0x88, 0xdc, 0xbe, 0x37, 0x2d, 0x3e, 0x30, 0x5c, 0x66, 0x7a, 0x8e, 0xad, + 0xde, 0x94, 0xbe, 0xea, 0x0f, 0x56, 0x14, 0x56, 0x14, 0x56, 0x14, 0x56, 0x34, 0x85, 0x56, 0x94, + 0x0f, 0x98, 0x2d, 0xb8, 0x78, 0x24, 0xb2, 0xa4, 0x0a, 0x63, 0xb6, 0x0a, 0x8d, 0xe5, 0xab, 0x7c, + 0x36, 0x3d, 0x82, 0x2d, 0xba, 0x1a, 0xc0, 0xc6, 0xc5, 0xf7, 0x5a, 0xb3, 0xf1, 0xa5, 0xd7, 0x69, + 0x5d, 0x5f, 0xd5, 0x7b, 0x9d, 0x7a, 0xed, 0xb2, 0x75, 0xa1, 0x7a, 0xb7, 0xce, 0x43, 0xe1, 0x3c, + 0x12, 0x01, 0x89, 0x28, 0x96, 0xf0, 0xf5, 0x68, 0xd6, 0x2e, 0x7b, 0xcd, 0x56, 0xab, 0x5d, 0xc8, + 0x42, 0x54, 0xa6, 0xa6, 0x21, 0x3c, 0x6b, 0x5d, 0x7c, 0xad, 0x7f, 0xc1, 0x08, 0x46, 0x1f, 0xc1, + 0x56, 0xa7, 0xf1, 0xad, 0x71, 0x51, 0xbb, 0x6a, 0x75, 0x30, 0x8a, 0x31, 0xd6, 0x61, 0xf3, 0xfa, + 0xf2, 0xaa, 0xde, 0xa1, 0xda, 0xcf, 0x4a, 0x7b, 0xe8, 0xa6, 0x8d, 0x9f, 0xa4, 0xc2, 0x7b, 0xb3, + 0x4c, 0x4f, 0x18, 0x23, 0x67, 0xc0, 0x87, 0x9c, 0x0d, 0xd4, 0x3b, 0x6f, 0xeb, 0xdd, 0xc1, 0x77, + 0x83, 0xef, 0x06, 0xdf, 0x0d, 0xbe, 0x5b, 0x0a, 0x7d, 0x37, 0xc1, 0x47, 0x4c, 0xf0, 0xfe, 0x3f, + 0x5e, 0xb5, 0x4c, 0xe0, 0xbb, 0x29, 0x3c, 0x1a, 0x2f, 0x5c, 0xdb, 0x8b, 0x9b, 0x35, 0x05, 0xdb, + 0xb4, 0x1d, 0x8f, 0xf5, 0x1d, 0x7b, 0xa0, 0x34, 0xae, 0x09, 0x77, 0x02, 0x93, 0x67, 0xd3, 0x36, + 0x7b, 0xb9, 0xb8, 0x13, 0x18, 0x7b, 0x89, 0xe4, 0xe0, 0x4e, 0x60, 0xf1, 0x53, 0xb9, 0x5c, 0x3d, + 0x2e, 0x97, 0x0f, 0x8f, 0x8f, 0x8e, 0x0f, 0x4f, 0x2a, 0x95, 0x62, 0xb5, 0x88, 0xdb, 0x81, 0x89, + 0x6b, 0x3d, 0xcf, 0x11, 0x1f, 0xaa, 0x72, 0xda, 0x06, 0x48, 0x81, 0x9a, 0xdc, 0xb6, 0x7e, 0x37, + 0x5f, 0xd8, 0xd0, 0x9c, 0x58, 0x73, 0xea, 0x77, 0x08, 0xdf, 0x09, 0xbe, 0x13, 0x7c, 0x27, 0xf8, + 0x4e, 0x69, 0xf4, 0x9d, 0x90, 0xda, 0x04, 0x6e, 0x0c, 0xdc, 0x18, 0xb8, 0x31, 0x89, 0x5a, 0x22, + 0x48, 0x6d, 0x02, 0xe7, 0x25, 0x89, 0xce, 0xcb, 0x32, 0xd8, 0x4d, 0x6a, 0x41, 0xd3, 0xad, 0x96, + 0xf9, 0x65, 0x67, 0x70, 0x30, 0xe0, 0x60, 0xc0, 0xc1, 0x80, 0x83, 0x91, 0x42, 0x07, 0xe3, 0xd6, + 0x71, 0x2c, 0x66, 0xda, 0x14, 0x41, 0x75, 0xc5, 0xb4, 0x98, 0xa6, 0x44, 0x27, 0xe8, 0xaf, 0xd9, + 0xb6, 0x23, 0xcc, 0x19, 0x1b, 0x52, 0x93, 0xa7, 0xdf, 0xeb, 0xff, 0x64, 0x23, 0x73, 0xbc, 0x0c, + 0xf7, 0x3f, 0x70, 0xc6, 0xcc, 0xee, 0xcf, 0x0d, 0xc5, 0x6c, 0x7f, 0x1e, 0xcc, 0xfe, 0x73, 0xf9, + 0xed, 0x81, 0x39, 0xe4, 0x86, 0x67, 0x0e, 0xb9, 0xe7, 0x7f, 0x3a, 0x98, 0x5f, 0x28, 0xf7, 0x5c, + 0xc1, 0x8c, 0xb1, 0x63, 0xf1, 0xfe, 0xe3, 0x81, 0xb5, 0xd8, 0xd7, 0x07, 0x8b, 0xd2, 0xff, 0x8b, + 0x3f, 0x16, 0x37, 0x01, 0xf2, 0x50, 0xa6, 0x65, 0x62, 0xff, 0x63, 0x3b, 0xff, 0xda, 0x86, 0x29, + 0x84, 0xcb, 0x6f, 0x67, 0x23, 0xa0, 0xae, 0x66, 0xcb, 0x86, 0xbe, 0x50, 0xc0, 0x05, 0x05, 0x5c, + 0x12, 0x41, 0x31, 0x50, 0xc0, 0x85, 0xd6, 0x3e, 0x28, 0x2b, 0xe0, 0x12, 0x00, 0x19, 0xf5, 0x3e, + 0x56, 0xb0, 0x4b, 0xb5, 0x9e, 0x56, 0x11, 0x9e, 0x16, 0x3c, 0x2d, 0x78, 0x5a, 0x79, 0xf2, 0xb4, + 0x54, 0xc1, 0xa5, 0xdf, 0xc1, 0xbc, 0xa8, 0x89, 0x50, 0xed, 0xcf, 0xed, 0x05, 0xca, 0x5f, 0xcd, + 0xbb, 0x54, 0xbc, 0xb4, 0x68, 0xf4, 0x67, 0xe5, 0xf0, 0x49, 0x09, 0xa3, 0x7a, 0xe0, 0x94, 0x1a, + 0x56, 0xb5, 0xc1, 0xab, 0x36, 0x98, 0xd5, 0x06, 0xb7, 0x6a, 0x61, 0x57, 0x31, 0xfc, 0xd2, 0x09, + 0x5e, 0x81, 0x7d, 0xa7, 0x3e, 0x2f, 0x43, 0x80, 0x5d, 0x1e, 0xd3, 0x64, 0xed, 0x5a, 0xaf, 0x8c, + 0xfb, 0x6c, 0x0c, 0x52, 0x7a, 0xa2, 0xa5, 0x70, 0xe9, 0x29, 0xaa, 0xa5, 0xbb, 0x75, 0xcd, 0xa9, + 0xa8, 0xad, 0x4b, 0xec, 0xcb, 0xc0, 0x28, 0xc3, 0x28, 0xc3, 0x28, 0xe7, 0xc3, 0x28, 0xab, 0xf6, + 0x8d, 0xd6, 0x7d, 0x24, 0x8b, 0x11, 0x06, 0x57, 0xad, 0xb9, 0x4a, 0xb3, 0x9e, 0x3f, 0x64, 0x32, + 0x62, 0x87, 0x0a, 0xa4, 0x75, 0x80, 0xb5, 0x5e, 0xd0, 0xd6, 0x05, 0xde, 0xda, 0x41, 0x5c, 0x3b, + 0x98, 0x6b, 0x07, 0x75, 0x1a, 0x70, 0x27, 0x02, 0x79, 0x7a, 0x0f, 0x2c, 0xb0, 0x6f, 0x27, 0xdc, + 0x16, 0xc5, 0x2a, 0xe5, 0x9e, 0x5d, 0xa2, 0x70, 0x95, 0xb0, 0x4b, 0x9a, 0x18, 0xe8, 0xd7, 0xbf, + 0x68, 0x31, 0x69, 0x8f, 0x3a, 0x46, 0x5a, 0xb3, 0x79, 0x0d, 0x74, 0x4f, 0x1c, 0x43, 0x1d, 0xe8, + 0x5f, 0x43, 0x9c, 0xac, 0x26, 0xb8, 0x5a, 0x5f, 0x72, 0xe6, 0x43, 0xee, 0x97, 0x5c, 0xb5, 0x52, + 0x39, 0xaa, 0xe4, 0x78, 0xd9, 0xbd, 0xcb, 0x66, 0x6f, 0xdd, 0x77, 0xd9, 0x78, 0x1f, 0x8a, 0xab, + 0x17, 0x74, 0x27, 0x6d, 0x9b, 0xdd, 0x48, 0x82, 0x13, 0x37, 0xf8, 0x91, 0xf0, 0x23, 0xe1, 0x47, + 0xc2, 0x8f, 0x84, 0x1f, 0xb9, 0xc5, 0x8f, 0xfc, 0xa4, 0xc1, 0x8d, 0xac, 0xc0, 0x8d, 0x84, 0x1b, + 0x09, 0x37, 0x12, 0x6e, 0x64, 0x06, 0x96, 0x5c, 0xa9, 0x02, 0x27, 0x12, 0x4e, 0x64, 0xde, 0x9d, + 0xc8, 0xfb, 0xe5, 0x6e, 0xd0, 0xe1, 0x45, 0x2e, 0xfa, 0x86, 0x1b, 0x09, 0x37, 0x12, 0x6e, 0x24, + 0xdc, 0x48, 0xb8, 0x91, 0xe4, 0xfb, 0xf6, 0x96, 0xdb, 0xa6, 0xfb, 0xa8, 0xc1, 0x8f, 0x3c, 0x21, + 0xec, 0xb2, 0xc9, 0xec, 0xbb, 0x79, 0xa0, 0x28, 0x1c, 0xc9, 0x1c, 0xb0, 0xfa, 0x22, 0x1c, 0x49, + 0x38, 0x92, 0xb4, 0x4b, 0x0e, 0xe7, 0x91, 0x70, 0x25, 0x73, 0xee, 0x4a, 0xb2, 0x07, 0xc1, 0xec, + 0x81, 0xc2, 0x52, 0x21, 0x5b, 0x29, 0x8c, 0xdf, 0x33, 0xdc, 0x48, 0xb8, 0x91, 0x70, 0x23, 0xe1, + 0x46, 0xc2, 0x8d, 0xa4, 0x77, 0x23, 0x95, 0x27, 0xd6, 0xda, 0x06, 0xc3, 0x8a, 0x12, 0x6d, 0x65, + 0xd3, 0x48, 0x3b, 0xe3, 0x19, 0x53, 0x34, 0x2d, 0x7a, 0x23, 0xed, 0xf7, 0x0c, 0x23, 0x0d, 0x23, + 0x0d, 0x23, 0x0d, 0x23, 0x0d, 0x23, 0x0d, 0x23, 0x0d, 0x23, 0xbd, 0x69, 0xcc, 0xc6, 0xa6, 0x2b, + 0xb8, 0x0e, 0x1b, 0xbd, 0xea, 0x18, 0x26, 0x1a, 0x26, 0x1a, 0x26, 0x1a, 0x26, 0x1a, 0x26, 0x1a, + 0x26, 0x1a, 0x26, 0x7a, 0xd3, 0x98, 0x09, 0xd7, 0xb4, 0x3d, 0x2e, 0xf8, 0xbd, 0x86, 0xb8, 0xa9, + 0x17, 0x7d, 0xc3, 0x50, 0xc3, 0x50, 0xc3, 0x50, 0xc3, 0x50, 0xc3, 0x50, 0xc3, 0x50, 0xa7, 0xd0, + 0x50, 0xa7, 0x3a, 0x5d, 0x94, 0xe2, 0xca, 0x14, 0x81, 0xfe, 0x14, 0x57, 0xaa, 0x08, 0x16, 0x55, + 0x08, 0xfe, 0x95, 0x8a, 0x72, 0x16, 0x74, 0x8b, 0x22, 0x5d, 0x99, 0x9a, 0xff, 0x64, 0x8f, 0x14, + 0x57, 0xad, 0x0b, 0x4d, 0xee, 0x89, 0x9a, 0x10, 0x8a, 0xd3, 0x42, 0x9f, 0x73, 0xbb, 0x6e, 0xb1, + 0x99, 0xdd, 0xf3, 0x0a, 0xa7, 0x7b, 0xf6, 0xc4, 0xb2, 0x14, 0xa6, 0xb9, 0x3c, 0x37, 0x1f, 0xe8, + 0x3a, 0x6b, 0xb9, 0x03, 0xe6, 0xb2, 0xc1, 0xe7, 0xc7, 0x65, 0x57, 0xa9, 0x5a, 0x64, 0x44, 0x18, + 0x96, 0x04, 0xec, 0x2a, 0x28, 0xcd, 0xab, 0xea, 0x4e, 0xfa, 0xc2, 0x5e, 0x32, 0x83, 0xcf, 0x77, + 0xe3, 0x5e, 0x87, 0xdf, 0xf6, 0x6a, 0x43, 0x7e, 0x69, 0x0e, 0x79, 0xaf, 0x31, 0xbe, 0x2f, 0x5f, + 0xba, 0x82, 0xb5, 0xe7, 0x6f, 0xd0, 0x6b, 0x3a, 0xfd, 0xd9, 0xbf, 0x76, 0x66, 0x4f, 0xde, 0xbb, + 0x5e, 0x3c, 0x66, 0xcd, 0x7f, 0x4a, 0x14, 0x8d, 0x4a, 0xfe, 0xb2, 0xa6, 0x5f, 0xce, 0x89, 0xad, + 0x20, 0xf5, 0x2e, 0x41, 0xd3, 0xbf, 0x32, 0x99, 0xcb, 0x5a, 0xfb, 0x7b, 0xcc, 0x1e, 0x8c, 0x1d, + 0x6e, 0x8b, 0xbd, 0xbe, 0x63, 0x39, 0xae, 0xa4, 0xfd, 0xaf, 0xc6, 0x5e, 0x2a, 0xb5, 0x8f, 0x4a, + 0xed, 0xa1, 0x1a, 0xfb, 0x27, 0x6b, 0x45, 0x28, 0x02, 0x02, 0xc5, 0x00, 0x20, 0xd1, 0x54, 0x45, + 0x37, 0x4d, 0x72, 0x20, 0x27, 0x3e, 0x40, 0xc4, 0x6b, 0x21, 0xe6, 0x42, 0x92, 0xbd, 0x80, 0x94, + 0x2d, 0x9c, 0x78, 0xb3, 0x15, 0x7d, 0x8c, 0xa3, 0x7d, 0x33, 0xe2, 0xac, 0xc8, 0x9a, 0x0d, 0xf9, + 0xb3, 0x10, 0x63, 0xc7, 0x46, 0xd9, 0xa1, 0xd1, 0x66, 0x3b, 0xfc, 0x5c, 0x45, 0x98, 0xa7, 0x82, + 0xcd, 0xf8, 0xdd, 0xcf, 0x5b, 0xc7, 0x8d, 0x5e, 0xff, 0xd1, 0x97, 0xd8, 0x9e, 0x9b, 0x8a, 0xb8, + 0x5e, 0xe2, 0xd5, 0x06, 0x88, 0x7d, 0x0e, 0x21, 0xe3, 0x5c, 0x41, 0xee, 0x39, 0x81, 0x2c, 0xdd, + 0x5f, 0xba, 0x8e, 0x2f, 0x5d, 0x97, 0x97, 0xae, 0xb3, 0xd3, 0x22, 0x5d, 0xdc, 0x5c, 0xf4, 0xfe, + 0xde, 0x89, 0x3f, 0xd5, 0xaf, 0x77, 0x63, 0xdc, 0x99, 0x96, 0x53, 0xb0, 0x43, 0xda, 0x21, 0xa1, + 0xcc, 0xc3, 0x3f, 0x35, 0x87, 0x7a, 0xb2, 0x0f, 0xeb, 0x94, 0x1d, 0xc2, 0x29, 0x3b, 0x5c, 0x53, + 0x76, 0x68, 0xa6, 0x97, 0x5c, 0xca, 0x2a, 0x38, 0x51, 0x30, 0x07, 0x7f, 0xcf, 0xc7, 0x84, 0xdb, + 0xc6, 0xd8, 0xf1, 0x84, 0xbc, 0x95, 0xe2, 0xa7, 0x6a, 0x79, 0xd5, 0x81, 0x2c, 0x87, 0x5d, 0x6a, + 0xed, 0x1e, 0xe9, 0x71, 0x03, 0x2a, 0xe2, 0x02, 0xd4, 0x9e, 0xfb, 0xab, 0x3a, 0xd7, 0x57, 0x7e, + 0x6e, 0xaf, 0xfc, 0x5c, 0x5e, 0xf9, 0xb9, 0x7b, 0xb2, 0xa4, 0x30, 0xd9, 0xb5, 0x6c, 0x0a, 0x4b, + 0x37, 0x53, 0x59, 0x4d, 0xf7, 0x65, 0xfb, 0xa8, 0xe3, 0x8e, 0x3a, 0xee, 0x5a, 0x81, 0x88, 0x0c, + 0x90, 0xc8, 0x80, 0x49, 0x2e, 0x40, 0x49, 0x06, 0x2a, 0x65, 0x80, 0xb5, 0x0e, 0x5c, 0xea, 0x6b, + 0xb7, 0xcb, 0x16, 0x6e, 0x09, 0x60, 0x4c, 0x39, 0x9c, 0x51, 0xc0, 0x1a, 0x2d, 0xbc, 0x51, 0xc1, + 0x1c, 0x39, 0xdc, 0x91, 0xc3, 0x1e, 0x39, 0xfc, 0xa9, 0x81, 0x41, 0x45, 0x70, 0xa8, 0x1c, 0x16, + 0xfd, 0x0e, 0x16, 0x67, 0xa3, 0x64, 0x25, 0x61, 0x65, 0x1e, 0xc5, 0xbe, 0x05, 0x97, 0xa8, 0xd3, + 0x9e, 0x74, 0x18, 0xa5, 0x86, 0x53, 0x6d, 0xb0, 0xaa, 0x0d, 0x5e, 0xb5, 0xc1, 0xac, 0x5a, 0xb8, + 0x55, 0x0c, 0xbb, 0xfe, 0xa8, 0xa1, 0x4e, 0xbb, 0x2c, 0x08, 0x7b, 0x5d, 0xa7, 0x7d, 0x61, 0x08, + 0x50, 0xa3, 0x3d, 0x30, 0x52, 0xab, 0xa8, 0x25, 0x3a, 0x9b, 0xec, 0xf7, 0x08, 0xb3, 0x0c, 0xb3, + 0x0c, 0xb3, 0x0c, 0xb3, 0x0c, 0xb3, 0x9c, 0x5b, 0xb3, 0xec, 0xdb, 0x02, 0x58, 0xe6, 0xc0, 0x60, + 0x2d, 0xe3, 0x8a, 0xe9, 0x0c, 0xf3, 0xaa, 0x43, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, + 0xd8, 0xe5, 0xdc, 0xda, 0xe5, 0x95, 0x29, 0x80, 0x59, 0x0e, 0x8c, 0xd5, 0xe2, 0x4e, 0x32, 0x99, + 0x51, 0x5e, 0x74, 0x47, 0x63, 0x92, 0x8b, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, 0xd1, + 0x47, 0x4d, 0xf5, 0x01, 0xa2, 0xdf, 0xd1, 0x3c, 0x51, 0x01, 0xb7, 0x07, 0xec, 0x41, 0x53, 0x25, + 0xc1, 0x45, 0xdf, 0xc8, 0x88, 0x95, 0x36, 0xc0, 0xd6, 0x0b, 0xdc, 0xba, 0x00, 0x5c, 0x3b, 0x90, + 0x6b, 0x07, 0x74, 0xed, 0xc0, 0x4e, 0x03, 0xf0, 0x44, 0x40, 0x4f, 0xef, 0x83, 0x69, 0xf4, 0xc5, + 0x74, 0xf8, 0x64, 0x9b, 0x7c, 0xb3, 0xdf, 0xfc, 0x9e, 0x9b, 0x24, 0x8f, 0x09, 0xcf, 0xff, 0xb4, + 0xf4, 0xe4, 0x16, 0x66, 0x0a, 0xa9, 0x36, 0x77, 0x1e, 0xef, 0x5b, 0xe6, 0x09, 0x63, 0x79, 0x57, + 0x97, 0x98, 0x57, 0x3c, 0x77, 0x0d, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x41, + 0xbe, 0x6f, 0x91, 0x68, 0x33, 0x15, 0x66, 0x9a, 0x26, 0x90, 0x38, 0xb0, 0x3a, 0x28, 0x02, 0x8a, + 0x61, 0x9e, 0x61, 0x9e, 0x61, 0x9e, 0x61, 0x9e, 0x61, 0x9e, 0x37, 0xec, 0xdb, 0x09, 0xb7, 0xc5, + 0x51, 0x49, 0x83, 0x75, 0xa6, 0xf4, 0xf9, 0x3b, 0xa6, 0x7d, 0x37, 0x7b, 0xdb, 0x1b, 0xd2, 0x3d, + 0xf2, 0x4b, 0x43, 0x2d, 0x77, 0x6e, 0xe7, 0xbe, 0x96, 0xfb, 0x61, 0x8e, 0xeb, 0xb8, 0x7f, 0xd0, + 0xb0, 0xe4, 0xcc, 0x87, 0xdc, 0x2f, 0xb9, 0x72, 0xe9, 0xa4, 0x7c, 0x52, 0x3d, 0x2e, 0x9d, 0x54, + 0x72, 0xbc, 0xf6, 0xde, 0x65, 0xb3, 0xb7, 0x2e, 0x9c, 0xc8, 0x10, 0x4e, 0xe4, 0x68, 0x34, 0xb1, + 0xb9, 0x78, 0xd4, 0x75, 0x92, 0xfc, 0xfa, 0x01, 0xe0, 0x58, 0xc2, 0xb1, 0x84, 0x63, 0x09, 0xc7, + 0x12, 0x8e, 0x25, 0xf9, 0xbe, 0xc5, 0x71, 0xf2, 0x8b, 0xdf, 0x2b, 0xbb, 0xc4, 0x99, 0xe7, 0x7f, + 0x7e, 0xc4, 0x89, 0x72, 0xb4, 0x21, 0x27, 0xbb, 0x62, 0x1b, 0x58, 0xd3, 0x44, 0x57, 0x6d, 0xc1, + 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x36, 0xec, 0x5b, 0x3e, 0x36, 0xcc, 0xc1, + 0xc0, 0x65, 0x9e, 0xa7, 0x83, 0x5a, 0x9c, 0x10, 0xf6, 0xb9, 0x1c, 0xe3, 0xcc, 0x8b, 0xd6, 0xcf, + 0x33, 0x7b, 0x5f, 0xd6, 0x30, 0xb7, 0x81, 0x39, 0xfe, 0xa4, 0xa1, 0xef, 0xb6, 0x29, 0x04, 0x73, + 0x6d, 0xf2, 0xe9, 0xf6, 0x1f, 0xe0, 0xaf, 0xf7, 0xef, 0x6f, 0x0e, 0x8d, 0x93, 0xee, 0xd3, 0x4d, + 0xd1, 0x38, 0xe9, 0x2e, 0x3e, 0x16, 0xe7, 0x7f, 0x2c, 0x3e, 0x97, 0x6e, 0x0e, 0x8d, 0xf2, 0xea, + 0x73, 0xe5, 0xe6, 0xd0, 0xa8, 0x74, 0xf7, 0x7f, 0xfc, 0xf8, 0xb8, 0xff, 0xeb, 0x68, 0x1a, 0xfe, + 0x8b, 0x7f, 0x14, 0xc8, 0x5f, 0xb2, 0x4b, 0x2b, 0x4f, 0x7e, 0xc8, 0xd1, 0xa6, 0xad, 0x62, 0xd3, + 0xea, 0xdd, 0xb4, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, 0xd3, 0xfd, + 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, 0xfe, + 0xa5, 0x3a, 0x3d, 0xdd, 0xb1, 0x8d, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, 0xda, 0xf6, + 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, 0xd2, 0x96, + 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, 0xff, + 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xcf, 0x01, 0x84, 0xe1, 0x84, 0x25, 0x89, 0xda, 0xc7, 0x83, 0x30, + 0xb4, 0x9f, 0xb2, 0x6c, 0x7a, 0x08, 0x28, 0x22, 0x50, 0x44, 0xa0, 0x88, 0x40, 0x11, 0x81, 0x22, + 0x42, 0xbe, 0x6f, 0x71, 0xd2, 0xf2, 0xe2, 0xf7, 0x4b, 0xdb, 0xc4, 0x99, 0xb7, 0xf6, 0xff, 0x71, + 0xe2, 0x12, 0x71, 0xe8, 0xb9, 0x7d, 0x6f, 0x5a, 0x7c, 0x60, 0xb8, 0xcc, 0xf4, 0x1c, 0x9b, 0x9e, + 0x70, 0xbc, 0xea, 0x1f, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x5e, 0xee, + 0x1b, 0x30, 0x5b, 0x70, 0xf1, 0xa8, 0x89, 0x6f, 0x10, 0xc6, 0xd7, 0x16, 0x1a, 0xcb, 0x57, 0xfd, + 0x6c, 0x7a, 0x1a, 0x20, 0x63, 0x35, 0xe0, 0x8d, 0x8b, 0xef, 0xb5, 0x66, 0xe3, 0x4b, 0xaf, 0xd3, + 0xba, 0xbe, 0xaa, 0xf7, 0x3a, 0xf5, 0xda, 0x65, 0xeb, 0x82, 0x1a, 0x3d, 0xe6, 0x61, 0xce, 0x9e, + 0x16, 0x99, 0x53, 0x53, 0x5c, 0xf9, 0xeb, 0xd1, 0xaf, 0x5d, 0xf6, 0x9a, 0xad, 0x56, 0xbb, 0x90, + 0x87, 0x88, 0xfe, 0x84, 0x0c, 0xf9, 0x59, 0xeb, 0xe2, 0x6b, 0xfd, 0x0b, 0x46, 0x9c, 0x6e, 0xc4, + 0x5b, 0x9d, 0xc6, 0xb7, 0xc6, 0x45, 0xed, 0xaa, 0xd5, 0xc1, 0xa8, 0x13, 0xae, 0xf3, 0xe6, 0xf5, + 0xe5, 0x55, 0xbd, 0xa3, 0x0b, 0x5f, 0x48, 0x7b, 0xec, 0x66, 0x8d, 0xef, 0x65, 0xc2, 0xbb, 0xb7, + 0x4c, 0x4f, 0x18, 0x23, 0x67, 0xc0, 0x87, 0x9c, 0x0d, 0xe8, 0x9d, 0xfb, 0xf5, 0xee, 0xe1, 0xdb, + 0xc3, 0xb7, 0x87, 0x6f, 0x0f, 0xdf, 0x1e, 0xbe, 0x3d, 0xf9, 0xbe, 0x15, 0x7c, 0xc4, 0x04, 0xef, + 0xff, 0xe3, 0x55, 0xcb, 0x1a, 0x7c, 0x7b, 0xc2, 0x00, 0x9e, 0xc2, 0xb5, 0xbd, 0xb8, 0x25, 0x5b, + 0xb0, 0x4d, 0xdb, 0xf1, 0x58, 0xdf, 0xb1, 0x07, 0xa4, 0xd1, 0xa4, 0xc8, 0x47, 0x90, 0x3d, 0x1b, + 0xbf, 0x59, 0x35, 0x41, 0x3e, 0x02, 0xf2, 0x25, 0x87, 0x7c, 0x04, 0x7b, 0xc5, 0x4f, 0xe5, 0x72, + 0xf5, 0xb8, 0x5c, 0x3e, 0x3c, 0x3e, 0x3a, 0x3e, 0x3c, 0xa9, 0x54, 0x8a, 0xd5, 0x22, 0x32, 0x13, + 0x64, 0xae, 0x37, 0xc4, 0xcd, 0xed, 0xbe, 0x0c, 0xa9, 0x8a, 0x7f, 0x05, 0x48, 0x15, 0x4d, 0x11, + 0x30, 0xbf, 0xdb, 0x2f, 0x6c, 0x68, 0x4e, 0xac, 0x39, 0x15, 0x3f, 0x84, 0x2f, 0x0d, 0x5f, 0x1a, + 0xbe, 0x34, 0x7c, 0x69, 0xf8, 0xd2, 0x48, 0xab, 0x07, 0x37, 0x16, 0x6e, 0x2c, 0xdc, 0x58, 0xb8, + 0xb1, 0xa9, 0x5a, 0x72, 0x48, 0xab, 0x07, 0xe7, 0x15, 0xce, 0xeb, 0x5e, 0x61, 0x19, 0xfc, 0xec, + 0x4c, 0x04, 0xa3, 0x77, 0x60, 0x5f, 0x76, 0x0e, 0x87, 0x12, 0x0e, 0x25, 0x1c, 0x4a, 0x38, 0x94, + 0x70, 0x28, 0xc9, 0xf7, 0x2d, 0xca, 0xa8, 0x24, 0xbc, 0x07, 0xd5, 0x95, 0x60, 0x6b, 0xb6, 0xed, + 0x08, 0x73, 0xc6, 0x46, 0x69, 0x0a, 0xc2, 0x7a, 0xfd, 0x9f, 0x6c, 0x64, 0x2e, 0x0b, 0xb7, 0x15, + 0x0e, 0x9c, 0x31, 0xb3, 0xfb, 0x73, 0x43, 0x39, 0xc3, 0x8f, 0x83, 0xd9, 0x7f, 0x2e, 0xbf, 0x3d, + 0x30, 0x87, 0xdc, 0xf0, 0xcc, 0x21, 0xf7, 0xfc, 0x4f, 0x07, 0xf3, 0x34, 0x3e, 0x9e, 0x2b, 0x98, + 0x31, 0x76, 0x2c, 0xde, 0x7f, 0x3c, 0xb0, 0x19, 0xbf, 0xfb, 0x79, 0xeb, 0xb8, 0x9e, 0xff, 0xe9, + 0xc0, 0x1c, 0xfc, 0x3d, 0x87, 0x22, 0x6e, 0x1b, 0x63, 0xc7, 0x13, 0x07, 0x73, 0x7a, 0xe1, 0x2d, + 0xfe, 0x58, 0x5c, 0xd2, 0x43, 0xa9, 0xf4, 0xe0, 0x94, 0x4c, 0xec, 0x7f, 0x6c, 0xe7, 0x5f, 0xdb, + 0x30, 0x85, 0x70, 0xf9, 0xed, 0x6c, 0xc4, 0xe8, 0xea, 0xa6, 0x6f, 0xe8, 0x1b, 0x45, 0xd4, 0x93, + 0xca, 0xfa, 0x50, 0x44, 0x3d, 0x9b, 0xac, 0x0e, 0x45, 0xd4, 0x23, 0x8d, 0x1a, 0x59, 0x11, 0xf5, + 0x00, 0x48, 0xd2, 0xbb, 0xeb, 0xc1, 0x47, 0xa0, 0x75, 0xda, 0x8b, 0x70, 0xda, 0xe1, 0xb4, 0xc3, + 0x69, 0x87, 0xd3, 0x9e, 0x1c, 0xa7, 0x9d, 0x0a, 0xfe, 0xfd, 0x0e, 0xe7, 0x25, 0xc3, 0x05, 0xb5, + 0x54, 0xb0, 0x86, 0x18, 0xcf, 0x8f, 0x40, 0xbc, 0x74, 0xf5, 0x1c, 0x1d, 0x91, 0x9b, 0x03, 0x9d, + 0x66, 0x21, 0x19, 0xe6, 0x41, 0xb7, 0x99, 0x48, 0x8c, 0xb9, 0x48, 0x8c, 0xd9, 0x48, 0x8c, 0xf9, + 0xa0, 0x35, 0x23, 0xc4, 0xe6, 0xc4, 0x1f, 0xe5, 0x2b, 0x1d, 0x00, 0xbf, 0xa7, 0x37, 0xf1, 0x57, + 0x80, 0xed, 0x1f, 0xeb, 0x49, 0xbb, 0xbb, 0x4a, 0x04, 0xb6, 0xc8, 0xe7, 0xf5, 0x6c, 0xec, 0x32, + 0x7a, 0x58, 0x4e, 0xb8, 0xb4, 0x0b, 0x0b, 0xf5, 0x55, 0x1b, 0x71, 0x59, 0x74, 0xaf, 0x87, 0xb4, + 0x14, 0x41, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xb2, 0x4b, 0x5a, 0xa8, 0x7d, 0xe1, 0x75, + 0x9f, 0xd8, 0x62, 0x1a, 0xe3, 0x68, 0xd7, 0x5c, 0xe3, 0xd9, 0x93, 0x7c, 0xc8, 0x65, 0x70, 0xa5, + 0x2e, 0xa3, 0x93, 0x04, 0xe3, 0x93, 0x2c, 0x23, 0x94, 0x14, 0x63, 0x94, 0x38, 0xa3, 0x94, 0x38, + 0xe3, 0x94, 0x38, 0x23, 0xa5, 0xc7, 0x58, 0x69, 0x32, 0x5a, 0xfa, 0x3d, 0xee, 0x00, 0x6e, 0x4c, + 0xb8, 0x2d, 0x8a, 0x55, 0x9d, 0x98, 0xb1, 0xb4, 0x22, 0x55, 0x8d, 0x8f, 0xa0, 0xe7, 0xfa, 0xcf, + 0xeb, 0x5f, 0x7a, 0x31, 0x73, 0x4f, 0xf7, 0xf5, 0xa0, 0x84, 0xd1, 0x8b, 0xc0, 0xe3, 0x68, 0xbe, + 0x3e, 0x14, 0x78, 0x9e, 0x04, 0x5c, 0xe9, 0x48, 0x08, 0x9c, 0xae, 0x2f, 0x61, 0xf3, 0x01, 0x4b, + 0xf8, 0x8d, 0x25, 0x5c, 0xad, 0x54, 0x8e, 0x2a, 0x58, 0xc6, 0xc9, 0xe2, 0x22, 0xfa, 0x7b, 0xef, + 0xbe, 0xcb, 0xc7, 0xfb, 0xea, 0xb8, 0x05, 0xa9, 0xef, 0x24, 0x7d, 0xb3, 0x6c, 0xa0, 0xe1, 0x44, + 0x1d, 0xba, 0x01, 0x74, 0x03, 0xe8, 0x06, 0xd0, 0x0d, 0xa0, 0x1b, 0x64, 0x44, 0x37, 0xf8, 0x94, + 0x00, 0xd9, 0xa0, 0x02, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, 0xc8, 0x06, 0x90, 0x0d, 0x94, 0x2f, + 0xe1, 0x52, 0x05, 0xa2, 0x01, 0x44, 0x03, 0x88, 0x06, 0xb4, 0xa2, 0xc1, 0xfd, 0x72, 0xf7, 0x25, + 0x41, 0x35, 0x58, 0x3c, 0x0b, 0x64, 0x03, 0xc8, 0x06, 0x90, 0x0d, 0x20, 0x1b, 0x40, 0x36, 0x80, + 0x6c, 0x10, 0x12, 0x37, 0x6e, 0xb9, 0x6d, 0xba, 0x8f, 0x09, 0xd0, 0x0d, 0x4e, 0x34, 0x3e, 0x42, + 0x93, 0xd9, 0x77, 0xf3, 0xc0, 0x7f, 0x08, 0x07, 0x10, 0x0e, 0xde, 0xf4, 0xba, 0x8a, 0xf0, 0xb9, + 0x20, 0x1c, 0xa4, 0x7b, 0x09, 0x23, 0xde, 0x00, 0xd2, 0x01, 0xa4, 0x03, 0xd2, 0x65, 0xce, 0x1e, + 0x04, 0xb3, 0x07, 0x84, 0x55, 0x30, 0xb7, 0x52, 0x3e, 0xff, 0x49, 0x20, 0x1b, 0x40, 0x36, 0x80, + 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x83, 0xb0, 0xb2, 0x01, 0x79, 0xce, 0xd8, 0x6d, 0x66, + 0x84, 0x28, 0x87, 0x6c, 0x3e, 0x49, 0x8b, 0x33, 0x9e, 0x31, 0x73, 0xd3, 0xd2, 0x4f, 0x5a, 0xfc, + 0x27, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, + 0x69, 0x09, 0x8e, 0xf1, 0xd8, 0x74, 0x05, 0x4f, 0x02, 0x67, 0x59, 0x3d, 0x08, 0x28, 0x0b, 0x28, + 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x4b, 0x70, 0x8c, 0x85, + 0x6b, 0xda, 0x1e, 0x17, 0xfc, 0x3e, 0x01, 0x71, 0xa5, 0x2f, 0x9e, 0x05, 0xc4, 0x05, 0xc4, 0x05, + 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x25, 0xf1, 0xc4, 0x25, 0xd3, 0xe9, 0x45, + 0x89, 0x8b, 0x14, 0x06, 0xfa, 0xd7, 0x57, 0xb4, 0x30, 0x58, 0x1f, 0x2f, 0xf8, 0x57, 0x14, 0x95, + 0x0d, 0xf5, 0xad, 0xb7, 0x6c, 0x15, 0x8d, 0xf9, 0x93, 0x3d, 0xea, 0xc8, 0xfa, 0x52, 0x68, 0x72, + 0x4f, 0xd4, 0x84, 0x20, 0xae, 0x58, 0x73, 0xce, 0xed, 0xba, 0xc5, 0x66, 0x94, 0xc0, 0x2b, 0x9c, + 0xee, 0xd9, 0x13, 0xcb, 0x22, 0xcc, 0x38, 0x7f, 0x6e, 0x3e, 0xe8, 0xeb, 0xbc, 0xe5, 0x0e, 0x98, + 0xcb, 0x06, 0x9f, 0x1f, 0x97, 0x5d, 0x67, 0x6a, 0x11, 0x6b, 0x82, 0xe3, 0x84, 0xc3, 0x70, 0x81, + 0xb4, 0x9a, 0x82, 0x3b, 0xe9, 0x0b, 0x7b, 0xc9, 0xb7, 0x3e, 0xdf, 0x8d, 0x7b, 0x1d, 0x7e, 0xdb, + 0xab, 0x0d, 0xf9, 0xa5, 0x39, 0xe4, 0xbd, 0xc6, 0xf8, 0xbe, 0x7c, 0xe9, 0x0a, 0xd6, 0x9e, 0xbf, + 0x6c, 0xef, 0x62, 0xf9, 0x8a, 0xbd, 0xda, 0xe0, 0xef, 0x0e, 0xbf, 0x6d, 0xd8, 0x6d, 0xc7, 0x13, + 0xbd, 0xce, 0xec, 0xc5, 0x7a, 0xd7, 0x8b, 0xb7, 0xa8, 0xf9, 0x2f, 0x81, 0xa2, 0xcc, 0xfa, 0x37, + 0x5a, 0x8e, 0x8a, 0x32, 0x6f, 0xa8, 0xff, 0x9b, 0xd6, 0x0a, 0xcd, 0xef, 0x52, 0xb4, 0xd2, 0x56, + 0x3c, 0x64, 0x36, 0xe5, 0x06, 0x1f, 0xec, 0x31, 0x7b, 0x30, 0x76, 0xb8, 0x2d, 0xf6, 0xfa, 0x8e, + 0xe5, 0xb8, 0x8a, 0x90, 0x8c, 0x86, 0x84, 0x90, 0x92, 0x0e, 0x52, 0x92, 0x41, 0x43, 0x2a, 0x54, + 0xad, 0x38, 0x22, 0x4c, 0xd3, 0x87, 0x65, 0x0a, 0xed, 0xbf, 0x34, 0x7b, 0xaf, 0x06, 0x5c, 0xe5, + 0x43, 0x9f, 0xdc, 0x16, 0x25, 0x2f, 0x69, 0xd5, 0x4b, 0x59, 0xc7, 0x12, 0x96, 0xbb, 0x30, 0xe4, + 0x4d, 0x9f, 0x9c, 0x96, 0x24, 0x2d, 0x00, 0x55, 0x13, 0x4f, 0x3a, 0xe1, 0x12, 0x61, 0x4a, 0x02, + 0x2c, 0xc9, 0x59, 0x77, 0xf1, 0x57, 0x89, 0x84, 0x15, 0x52, 0x78, 0x39, 0xd0, 0xae, 0x3c, 0x29, + 0xfe, 0x39, 0xe9, 0xcf, 0x7a, 0xfb, 0x92, 0xd6, 0xb4, 0xdc, 0x22, 0x75, 0xd2, 0x0f, 0x50, 0x55, + 0x1c, 0x88, 0xaa, 0x3d, 0xe0, 0x54, 0x75, 0x60, 0xa9, 0xfc, 0x00, 0x52, 0xf9, 0x81, 0xa2, 0xf2, + 0x03, 0xc2, 0x64, 0x59, 0x0b, 0xd9, 0x45, 0xd1, 0x0a, 0x4b, 0x53, 0x2d, 0x7d, 0x61, 0xad, 0xb6, + 0xc3, 0xb2, 0x7d, 0xc9, 0x93, 0xae, 0xa6, 0x0a, 0xa6, 0xb2, 0x48, 0x0d, 0x95, 0x11, 0x18, 0x34, + 0x91, 0x15, 0xaa, 0x23, 0x26, 0xc8, 0x22, 0x21, 0xc8, 0x22, 0x1c, 0xc8, 0x22, 0x17, 0x92, 0xed, + 0xd7, 0xa8, 0xaa, 0xe2, 0xb8, 0x00, 0x16, 0x75, 0xeb, 0x71, 0x0d, 0xbf, 0x54, 0xad, 0x45, 0xb5, + 0xc5, 0x7c, 0x95, 0x07, 0x9e, 0x51, 0x04, 0x96, 0xd1, 0x06, 0x8e, 0x51, 0x05, 0x86, 0x91, 0x07, + 0x7e, 0x91, 0x07, 0x76, 0x91, 0x07, 0x6e, 0xa5, 0x4b, 0x2b, 0x57, 0x5d, 0xdc, 0xb6, 0xb0, 0x10, + 0xdd, 0x95, 0xaf, 0xe3, 0xd5, 0xee, 0x54, 0xa9, 0xf1, 0xbf, 0x86, 0x4b, 0xc5, 0x61, 0xb4, 0x64, + 0xf1, 0xba, 0x94, 0x71, 0xb9, 0x7a, 0xe2, 0x6f, 0xa9, 0xe3, 0x6c, 0xb5, 0xc5, 0xd3, 0x6a, 0x8b, + 0x9b, 0xd5, 0x16, 0x1f, 0x9b, 0xee, 0xc3, 0x70, 0xb2, 0xb8, 0x56, 0x7f, 0xdf, 0x59, 0xcc, 0x1c, + 0xba, 0x6c, 0x48, 0xb1, 0xe9, 0x56, 0xac, 0xf2, 0x98, 0xa0, 0xaf, 0xf6, 0x52, 0x5f, 0xfe, 0xf8, + 0x71, 0x11, 0x31, 0x78, 0xb0, 0x30, 0x04, 0x69, 0x3d, 0x6f, 0x57, 0xc8, 0x2c, 0x57, 0xc7, 0xe1, + 0x74, 0x36, 0xd9, 0xef, 0x11, 0x66, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x39, 0xb7, + 0x66, 0xd9, 0xb7, 0x05, 0xb0, 0xcc, 0x81, 0xc1, 0x5a, 0x06, 0xac, 0xd1, 0x19, 0xe6, 0x55, 0x87, + 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, 0xcb, 0xb9, 0xb5, 0xcb, 0x2b, 0x53, 0x00, + 0xb3, 0x1c, 0x18, 0xab, 0xc5, 0x0d, 0x44, 0x32, 0xa3, 0xbc, 0xe8, 0x8e, 0xc6, 0x24, 0x17, 0x61, + 0x92, 0x61, 0x92, 0x61, 0x92, 0x61, 0x92, 0xa3, 0x8f, 0x9a, 0xea, 0x03, 0x44, 0xbf, 0xa3, 0xf9, + 0xb5, 0x62, 0x6e, 0x0f, 0x18, 0x5d, 0x02, 0x99, 0xf5, 0x92, 0x94, 0x8b, 0xbe, 0xa9, 0xee, 0x52, + 0x93, 0xa6, 0x0a, 0x22, 0x4f, 0x0d, 0xa4, 0x23, 0x15, 0x90, 0xde, 0xd4, 0x3f, 0xba, 0x52, 0xfd, + 0x68, 0x4f, 0xed, 0xa3, 0x3d, 0x95, 0x8f, 0xf6, 0xd4, 0x3d, 0xd9, 0xca, 0xf2, 0x40, 0x9e, 0x8a, + 0x47, 0x83, 0x2f, 0xa6, 0xc3, 0x27, 0xdb, 0xe4, 0x9b, 0xfd, 0xe6, 0xf7, 0xdc, 0x24, 0x79, 0x4c, + 0x78, 0xfe, 0xa7, 0xa5, 0x27, 0xb7, 0x30, 0x53, 0x59, 0xb9, 0xea, 0x4e, 0xc0, 0xac, 0x69, 0x22, + 0x94, 0x02, 0xab, 0x99, 0x22, 0x52, 0x09, 0x74, 0x02, 0x74, 0x02, 0x74, 0x02, 0x74, 0x02, 0x74, + 0x62, 0xc3, 0xbe, 0x9d, 0x70, 0x5b, 0x1c, 0x95, 0x34, 0xb0, 0x09, 0x4a, 0x32, 0xd1, 0x31, 0xed, + 0x3b, 0x46, 0x5e, 0x00, 0x5a, 0x43, 0x1a, 0x3b, 0x9d, 0x05, 0x9e, 0x75, 0x27, 0xf6, 0x5d, 0x55, + 0xbf, 0xd5, 0xd5, 0x7f, 0x02, 0x2a, 0xdd, 0xea, 0x48, 0x6e, 0xad, 0xb3, 0x20, 0x73, 0x52, 0x96, + 0x5c, 0xb9, 0x74, 0x52, 0x3e, 0xa9, 0x1e, 0x97, 0x4e, 0x2a, 0x39, 0x5e, 0x7b, 0x19, 0xcd, 0x4e, + 0xd9, 0x85, 0x13, 0x19, 0xc2, 0x89, 0x1c, 0x8d, 0x26, 0x36, 0x17, 0x8f, 0xba, 0x24, 0xea, 0xd7, + 0x0f, 0x00, 0xc7, 0x12, 0x8e, 0x25, 0x1c, 0x4b, 0x38, 0x96, 0x70, 0x2c, 0xc9, 0xf7, 0x2d, 0x74, + 0xea, 0x17, 0xbf, 0x57, 0x76, 0x89, 0x33, 0xcf, 0xff, 0xfc, 0x08, 0xa9, 0x3a, 0xda, 0x90, 0x93, + 0xdd, 0xdd, 0x09, 0xac, 0x69, 0xa2, 0x3b, 0x3c, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, + 0xe0, 0x15, 0x1b, 0xf6, 0x2d, 0x1f, 0x1b, 0xe6, 0x60, 0xe0, 0x32, 0xcf, 0xd3, 0x41, 0x2d, 0x4e, + 0x08, 0xfb, 0x5c, 0x8e, 0x71, 0xe6, 0x45, 0xeb, 0xe7, 0x99, 0xbd, 0x2f, 0x6b, 0x98, 0xdb, 0xc0, + 0x1c, 0x7f, 0xd2, 0xd0, 0x77, 0xdb, 0x14, 0x82, 0xb9, 0x36, 0xf9, 0x74, 0xfb, 0x0f, 0xf0, 0xd7, 0xfb, 0xf7, 0x37, 0x87, 0xc6, 0x49, 0xf7, 0xe9, 0xa6, 0x68, 0x9c, 0x74, 0x17, 0x1f, 0x8b, 0xf3, 0x3f, 0x16, 0x9f, 0x4b, 0x37, 0x87, 0x46, 0x79, 0xf5, 0xb9, 0x72, 0x73, 0x68, 0x54, 0xba, 0xfb, - 0x3f, 0x7e, 0x7c, 0xdc, 0xff, 0x75, 0x34, 0x0d, 0xff, 0xc5, 0x3f, 0xe8, 0x9b, 0x87, 0x75, 0xb3, - 0xdc, 0x49, 0x49, 0xef, 0xa1, 0xad, 0xe2, 0xd0, 0xea, 0x3d, 0xb4, 0xa6, 0x31, 0xac, 0x19, 0x5f, + 0x3f, 0x7e, 0x7c, 0xdc, 0xff, 0x75, 0x34, 0x0d, 0xff, 0xc5, 0x3f, 0xe8, 0x2b, 0x86, 0x75, 0xb3, + 0x5c, 0x3e, 0x49, 0xef, 0xa6, 0xad, 0x62, 0xd3, 0xea, 0xdd, 0xb4, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, 0xd3, 0xfd, 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, - 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, 0xfe, 0xa5, 0x3a, 0x3d, 0xdd, 0x71, 0x8c, 0xca, 0xf4, + 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, 0xfe, 0xa5, 0x3a, 0x3d, 0xdd, 0xb1, 0x8d, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, 0xda, 0xf6, 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, 0xd2, 0x96, 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, - 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, 0xff, 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xcf, 0x81, 0x0a, - 0xc3, 0x0d, 0x4b, 0x12, 0xb9, 0x8f, 0x07, 0x61, 0x68, 0xbf, 0x65, 0xd9, 0xf4, 0x10, 0x60, 0x44, - 0xc0, 0x88, 0x80, 0x11, 0x01, 0x23, 0x02, 0x46, 0x84, 0xfc, 0xdc, 0xe2, 0xa6, 0xe5, 0xc5, 0xef, - 0x97, 0xb6, 0x89, 0x33, 0x6f, 0xed, 0xff, 0xe3, 0xc6, 0x25, 0xe2, 0xd2, 0x73, 0xfb, 0xde, 0xb4, - 0xf8, 0xc0, 0x70, 0x99, 0xe9, 0x11, 0x36, 0x87, 0x7c, 0x76, 0x32, 0xd7, 0xe7, 0x07, 0xd6, 0x00, - 0xd6, 0x00, 0xd6, 0x00, 0xd6, 0x00, 0xd6, 0xa0, 0xa7, 0xfb, 0x06, 0xcc, 0x16, 0x5c, 0x3c, 0x6a, - 0xc2, 0x1b, 0x84, 0xf1, 0xb5, 0x85, 0xc6, 0xf2, 0x55, 0xcf, 0x4c, 0x4f, 0x83, 0xca, 0x58, 0x2d, - 0x78, 0xe3, 0xe2, 0x7b, 0xad, 0xd9, 0xf8, 0xd2, 0xeb, 0xb4, 0xae, 0xaf, 0xea, 0xbd, 0x4e, 0xbd, - 0x76, 0xd9, 0xba, 0xa0, 0xd6, 0x1e, 0xf3, 0x30, 0x67, 0x4f, 0x0b, 0xcd, 0xa9, 0x29, 0xae, 0xfc, - 0xf5, 0xea, 0xb7, 0x3a, 0x8d, 0x6f, 0x8d, 0x8b, 0xda, 0x55, 0xab, 0x53, 0xc8, 0x43, 0x50, 0x7f, - 0x42, 0x56, 0xfd, 0x73, 0xf3, 0xfa, 0xf2, 0xaa, 0xde, 0xe9, 0x35, 0x5b, 0xad, 0x36, 0xd6, 0x9d, - 0x6e, 0xdd, 0x6b, 0x97, 0x58, 0x72, 0x6a, 0x51, 0x6f, 0x5d, 0x7c, 0xad, 0x7f, 0x29, 0x64, 0x3c, - 0x6b, 0xa3, 0x9b, 0x35, 0xbc, 0x97, 0x09, 0xef, 0xde, 0x32, 0x3d, 0x61, 0x8c, 0x9c, 0x01, 0x1f, - 0x72, 0x36, 0xa0, 0x77, 0xee, 0xd7, 0xa7, 0x87, 0x6f, 0x0f, 0xdf, 0x1e, 0xbe, 0x3d, 0x7c, 0x7b, - 0xf8, 0xf6, 0xe4, 0xe7, 0x56, 0xf0, 0x11, 0x13, 0xbc, 0xff, 0x8f, 0x57, 0x2d, 0x6b, 0xf0, 0xed, - 0x09, 0x03, 0x78, 0x0a, 0xd7, 0xf6, 0x22, 0x4b, 0xb6, 0x60, 0x9b, 0xb6, 0xe3, 0xb1, 0xbe, 0x63, - 0x0f, 0x48, 0xa3, 0x49, 0x51, 0x8f, 0x20, 0x7b, 0x36, 0x7e, 0x33, 0x6b, 0x82, 0x7a, 0x04, 0xe4, - 0x22, 0x87, 0x7a, 0x04, 0x7b, 0xc5, 0x4f, 0xe5, 0x72, 0xf5, 0xb8, 0x5c, 0x3e, 0x3c, 0x3e, 0x3a, - 0x3e, 0x3c, 0xa9, 0x54, 0x8a, 0xd5, 0x22, 0x2a, 0x13, 0x64, 0x6e, 0x36, 0xc4, 0xcd, 0xed, 0x2e, - 0x86, 0x54, 0x5d, 0x45, 0x02, 0xa0, 0x8a, 0xa6, 0xbb, 0x88, 0x3f, 0xed, 0x17, 0x36, 0x34, 0x27, - 0xd6, 0x1c, 0x8a, 0x1f, 0xc2, 0x97, 0x86, 0x2f, 0x0d, 0x5f, 0x1a, 0xbe, 0x34, 0x7c, 0x69, 0x94, - 0xd5, 0x83, 0x1b, 0x0b, 0x37, 0x16, 0x6e, 0x2c, 0xdc, 0xd8, 0x54, 0x89, 0x1c, 0xca, 0xea, 0xc1, - 0x79, 0x85, 0xf3, 0xba, 0x57, 0x58, 0x06, 0x3f, 0x3b, 0x13, 0xc1, 0xe8, 0x1d, 0xd8, 0x97, 0x93, - 0xc3, 0xa1, 0x84, 0x43, 0x09, 0x87, 0x12, 0x0e, 0x25, 0x1c, 0x4a, 0xf2, 0x73, 0x7b, 0xeb, 0x38, - 0x16, 0x33, 0x6d, 0x1d, 0x41, 0xd7, 0xc5, 0xac, 0x98, 0xea, 0x54, 0xb7, 0x98, 0xab, 0xd9, 0xb6, - 0x23, 0xcc, 0x19, 0x1a, 0xa5, 0xe9, 0x34, 0xe7, 0xf5, 0x7f, 0xb2, 0x91, 0x39, 0x5e, 0x26, 0xdd, - 0x1d, 0x38, 0x63, 0x66, 0xf7, 0xe7, 0x86, 0x72, 0xa6, 0x3f, 0x0e, 0x66, 0xff, 0xb9, 0xfc, 0xf6, - 0xc0, 0x1c, 0x72, 0xc3, 0x33, 0x87, 0xdc, 0xf3, 0x3f, 0x1d, 0xcc, 0xcb, 0xf8, 0x78, 0xae, 0x60, - 0xc6, 0xd8, 0xb1, 0x78, 0xff, 0xf1, 0xc0, 0x66, 0xfc, 0xee, 0xe7, 0xad, 0xe3, 0x7a, 0xfe, 0xa7, - 0x03, 0x73, 0xf0, 0xf7, 0x5c, 0x15, 0x39, 0x13, 0x61, 0x8c, 0x5d, 0x76, 0x30, 0x87, 0x17, 0xde, - 0xe2, 0x8f, 0x45, 0x92, 0x1e, 0x7a, 0xb0, 0x06, 0xb7, 0x64, 0x62, 0xff, 0x63, 0x3b, 0xff, 0xda, - 0x86, 0x29, 0x84, 0xcb, 0x6f, 0x67, 0x2b, 0x46, 0xd7, 0x90, 0x75, 0xc3, 0xdc, 0xe8, 0xce, 0x9a, - 0x54, 0xd4, 0x87, 0xee, 0xac, 0xd9, 0x44, 0x75, 0xe8, 0xce, 0x1a, 0x69, 0xd5, 0xc8, 0xba, 0xb3, - 0x06, 0x94, 0x24, 0xbd, 0xbb, 0x1e, 0x7c, 0x04, 0x5a, 0xa7, 0xbd, 0x08, 0xa7, 0x1d, 0x4e, 0x3b, - 0x9c, 0x76, 0x38, 0xed, 0xc9, 0x71, 0xda, 0xa9, 0xd4, 0xbf, 0x3f, 0xe1, 0xbc, 0x17, 0xa9, 0xa0, - 0xa6, 0x0a, 0xf6, 0x02, 0xbd, 0xba, 0xe7, 0x8f, 0x40, 0x2c, 0xba, 0x7a, 0xae, 0x8e, 0xc8, 0xcd, - 0x81, 0x4e, 0xb3, 0x90, 0x0c, 0xf3, 0xa0, 0xdb, 0x4c, 0x24, 0xc6, 0x5c, 0x24, 0xc6, 0x6c, 0x24, - 0xc6, 0x7c, 0xd0, 0x9a, 0x11, 0x62, 0x73, 0xe2, 0xaf, 0xf2, 0x95, 0x0e, 0x05, 0xbf, 0xa7, 0xb7, - 0xf0, 0x57, 0x00, 0xed, 0x1f, 0xeb, 0x29, 0xbb, 0xbb, 0x2a, 0x04, 0xb6, 0xa8, 0xe7, 0xf5, 0x6c, - 0xec, 0x32, 0x7a, 0x59, 0x4e, 0x28, 0xda, 0x85, 0x05, 0xfb, 0xaa, 0x0d, 0xb8, 0x2c, 0xa6, 0xd7, - 0x03, 0x5a, 0x8a, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0xd9, 0x05, 0x2d, 0xd4, 0xbe, - 0xf0, 0xba, 0x4f, 0x6c, 0x31, 0x8d, 0x71, 0xb4, 0x6b, 0xae, 0xf1, 0xec, 0x49, 0x3e, 0xe4, 0x32, - 0xb8, 0x52, 0x97, 0xd1, 0x49, 0x82, 0xf1, 0x49, 0x96, 0x11, 0x4a, 0x8a, 0x31, 0x4a, 0x9c, 0x51, - 0x4a, 0x9c, 0x71, 0x4a, 0x9c, 0x91, 0xd2, 0x63, 0xac, 0x34, 0x19, 0x2d, 0xfd, 0x1e, 0x77, 0x40, - 0x6f, 0x4c, 0xb8, 0x2d, 0x8a, 0x55, 0x9d, 0x3a, 0x63, 0x69, 0x45, 0xaa, 0x1a, 0x1f, 0x41, 0x4f, - 0xfa, 0xcf, 0xeb, 0x5f, 0x7a, 0x75, 0xe6, 0x9e, 0xee, 0xf4, 0xa0, 0x84, 0xc1, 0x8b, 0xc0, 0xe3, - 0x68, 0x4e, 0x1f, 0x0a, 0x3c, 0x4f, 0x02, 0x52, 0x3a, 0x12, 0xa2, 0x4e, 0xd7, 0x45, 0xd8, 0x7c, - 0x80, 0x08, 0xbf, 0x21, 0xc2, 0xd5, 0x4a, 0xe5, 0xa8, 0x02, 0x31, 0x4e, 0x16, 0x16, 0xd1, 0x3f, - 0x7b, 0xf7, 0x5d, 0x3e, 0xde, 0x57, 0x47, 0x16, 0xa4, 0xbe, 0x9b, 0xf4, 0xcd, 0xb4, 0x81, 0x86, - 0x1b, 0x75, 0xf0, 0x06, 0xe0, 0x0d, 0xc0, 0x1b, 0x80, 0x37, 0x00, 0x6f, 0x90, 0x11, 0xde, 0xe0, - 0x53, 0x02, 0x68, 0x83, 0x0a, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, 0x80, 0x36, 0x50, - 0x2e, 0xc2, 0xa5, 0x0a, 0x48, 0x03, 0x90, 0x06, 0x20, 0x0d, 0x68, 0x49, 0x83, 0xfb, 0xe5, 0xe9, - 0x4b, 0x02, 0x6b, 0xb0, 0x78, 0x16, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, 0x80, 0x36, 0x00, 0x6d, - 0x00, 0xda, 0x20, 0xa4, 0xde, 0xb8, 0xe5, 0xb6, 0xe9, 0x3e, 0x26, 0x80, 0x37, 0x38, 0xd1, 0xf8, - 0x08, 0x4d, 0x66, 0xdf, 0xcd, 0x03, 0xff, 0x41, 0x1c, 0x80, 0x38, 0x78, 0xd3, 0xeb, 0x2a, 0xc2, - 0xe7, 0x02, 0x71, 0x90, 0x6e, 0x11, 0x46, 0xbc, 0x01, 0xa8, 0x03, 0x50, 0x07, 0xa4, 0x62, 0xce, - 0x1e, 0x04, 0xb3, 0x07, 0x84, 0x5d, 0x30, 0xb7, 0x42, 0x3e, 0xff, 0x49, 0x40, 0x1b, 0x80, 0x36, - 0x00, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x83, 0xb0, 0xb4, 0x01, 0x79, 0xcd, 0xd8, 0x6d, - 0x66, 0x84, 0xa8, 0x86, 0x6c, 0x3e, 0x41, 0x8b, 0x33, 0x9e, 0x21, 0x73, 0xd3, 0xd2, 0x0f, 0x5a, - 0xfc, 0x27, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, - 0x01, 0x68, 0x09, 0xae, 0xf1, 0xd8, 0x74, 0x05, 0x4f, 0x02, 0x66, 0x59, 0x3d, 0x08, 0x20, 0x0b, - 0x20, 0x0b, 0x20, 0x0b, 0x20, 0x0b, 0x20, 0x0b, 0x20, 0x0b, 0x20, 0x0b, 0x20, 0x4b, 0x70, 0x8d, - 0x85, 0x6b, 0xda, 0x1e, 0x17, 0xfc, 0x3e, 0x01, 0x71, 0xa5, 0x2f, 0x9e, 0x05, 0xc0, 0x05, 0xc0, - 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x25, 0xf1, 0xc0, 0x25, 0xd3, 0xe5, - 0x45, 0x89, 0x9b, 0x14, 0x06, 0xe6, 0xd7, 0xd7, 0xb4, 0x30, 0xd8, 0x1f, 0x2f, 0xf8, 0x57, 0x14, - 0x9d, 0x0d, 0xf5, 0xc9, 0x5b, 0xb6, 0x9a, 0xc6, 0xfc, 0xc9, 0x1e, 0x75, 0x54, 0x7d, 0x29, 0x34, - 0xb9, 0x27, 0x6a, 0x42, 0x10, 0x77, 0xac, 0x39, 0xe7, 0x76, 0xdd, 0x62, 0x33, 0x48, 0xe0, 0x15, - 0x4e, 0xf7, 0xec, 0x89, 0x65, 0x11, 0x56, 0x9c, 0x3f, 0x37, 0x1f, 0xf4, 0x4d, 0xde, 0x72, 0x07, - 0xcc, 0x65, 0x83, 0xb3, 0xc7, 0xe5, 0xd4, 0x99, 0x12, 0x62, 0x4d, 0xea, 0x38, 0xe1, 0x6a, 0xb8, - 0x40, 0xda, 0x4d, 0xc1, 0x9d, 0xf4, 0x85, 0xbd, 0xc4, 0x5b, 0x67, 0x77, 0xe3, 0x5e, 0x87, 0xdf, - 0xf6, 0x6a, 0x43, 0x7e, 0x69, 0x0e, 0x79, 0xaf, 0x31, 0xbe, 0x2f, 0x5f, 0xba, 0x82, 0xb5, 0xe7, - 0x2f, 0xdb, 0xbb, 0x58, 0xbe, 0x62, 0xaf, 0x36, 0xf8, 0xbb, 0xc3, 0x6f, 0x5b, 0x13, 0xd1, 0x76, - 0x59, 0xaf, 0x33, 0x7b, 0xb1, 0xde, 0xf5, 0xe2, 0x2d, 0x6a, 0xfe, 0x4b, 0xa0, 0x29, 0xb3, 0xfe, - 0x83, 0x96, 0xa3, 0xa6, 0xcc, 0x1b, 0xfa, 0xff, 0xa6, 0xb5, 0x43, 0xf3, 0xbb, 0x14, 0x49, 0xda, - 0x0a, 0x87, 0xcc, 0xb6, 0xdc, 0xe0, 0x83, 0x3d, 0x66, 0x0f, 0xc6, 0x0e, 0xb7, 0xc5, 0x5e, 0xdf, - 0xb1, 0x1c, 0x57, 0x91, 0x26, 0xa3, 0x01, 0x21, 0xa4, 0xa0, 0x83, 0x14, 0x64, 0xd0, 0x80, 0x0a, - 0x55, 0x12, 0x47, 0xa4, 0xd3, 0xf4, 0xe9, 0x32, 0x85, 0xf6, 0x5f, 0x9a, 0xbd, 0x57, 0xa3, 0x5c, - 0xe5, 0xab, 0x3e, 0xb9, 0x23, 0x4a, 0x16, 0x69, 0xd5, 0xa2, 0xac, 0x43, 0x84, 0xe5, 0x0a, 0x86, - 0xbc, 0xed, 0x93, 0x33, 0x92, 0x24, 0x01, 0x50, 0xb5, 0xf1, 0xa4, 0x1b, 0x2e, 0x51, 0x4d, 0x49, - 0x50, 0x4b, 0x72, 0xe4, 0x2e, 0xbe, 0x94, 0x48, 0x90, 0x90, 0xc2, 0x6a, 0xc5, 0x0d, 0x73, 0x30, - 0x70, 0x99, 0xe7, 0x49, 0x93, 0x11, 0x9f, 0x58, 0x0f, 0xcc, 0x20, 0x49, 0xae, 0xe5, 0x5e, 0xba, - 0x4a, 0xbf, 0x44, 0x55, 0x71, 0x29, 0xaa, 0xf6, 0x92, 0x53, 0xd5, 0xa5, 0xa5, 0xf2, 0x4b, 0x48, - 0xe5, 0x97, 0x8a, 0xca, 0x2f, 0x09, 0x93, 0x65, 0x31, 0xa4, 0x5f, 0xca, 0x29, 0xec, 0xd2, 0xaa, - 0xa2, 0xfb, 0x6a, 0xb0, 0xab, 0x6a, 0x40, 0x87, 0x65, 0xc8, 0x02, 0xc8, 0x6d, 0x72, 0xaa, 0xa4, - 0x79, 0xa9, 0xe4, 0xa6, 0xa4, 0xd0, 0xf5, 0xd0, 0xf5, 0xd0, 0xf5, 0x8b, 0xb7, 0x95, 0xdd, 0x04, - 0x53, 0x1d, 0xa0, 0xa4, 0x02, 0x96, 0x8a, 0x00, 0xa6, 0x32, 0xe5, 0xa3, 0x52, 0x09, 0xd1, 0x28, - 0x23, 0xd5, 0x4a, 0x89, 0x4c, 0x39, 0x91, 0x29, 0x29, 0x32, 0x65, 0x95, 0x0e, 0x6e, 0x4b, 0x59, - 0x14, 0x99, 0x2f, 0xf7, 0x7c, 0xac, 0x48, 0xcb, 0xac, 0xc1, 0x1b, 0x05, 0x25, 0x05, 0x57, 0x6b, - 0xa3, 0xa6, 0x50, 0xa0, 0x42, 0x4a, 0xfc, 0x79, 0xe5, 0xef, 0xcb, 0x0a, 0xd7, 0x3e, 0xb0, 0x07, - 0x9f, 0x14, 0xce, 0xd1, 0x36, 0x85, 0x60, 0xae, 0xad, 0xbc, 0x6e, 0x63, 0xe1, 0xaf, 0xf7, 0xef, - 0x6f, 0x0e, 0x8d, 0x93, 0xee, 0xd3, 0x4d, 0xd1, 0x38, 0xe9, 0x2e, 0x3e, 0x16, 0xe7, 0x7f, 0x2c, - 0x3e, 0x97, 0x6e, 0x0e, 0x8d, 0xf2, 0xea, 0x73, 0xe5, 0xe6, 0xd0, 0xa8, 0x74, 0xf7, 0x7f, 0xfc, - 0xf8, 0xb8, 0xff, 0xeb, 0x68, 0x1a, 0xfe, 0x8b, 0x7f, 0xa8, 0xbb, 0xfd, 0xec, 0xa6, 0xe9, 0xb6, - 0x88, 0xe6, 0x30, 0x54, 0x71, 0x18, 0xa2, 0x1d, 0x06, 0xd3, 0x18, 0xd6, 0x8c, 0xaf, 0xdd, 0x5f, - 0xc5, 0x0f, 0xe5, 0xe9, 0xe9, 0xfe, 0xaf, 0xe3, 0xe9, 0xeb, 0xbf, 0x7c, 0xda, 0xf4, 0x63, 0xc5, - 0x0f, 0xc7, 0xd3, 0xd3, 0x2d, 0xff, 0x52, 0x9d, 0x9e, 0xee, 0x38, 0x46, 0x65, 0xfa, 0x3e, 0xf0, - 0xa3, 0xb3, 0xbf, 0x2f, 0x6d, 0xfb, 0x42, 0x79, 0xcb, 0x17, 0x8e, 0xb6, 0x7d, 0xe1, 0x68, 0xcb, - 0x17, 0xb6, 0x3e, 0x52, 0x69, 0xcb, 0x17, 0x2a, 0xd3, 0xa7, 0xc0, 0xcf, 0xbf, 0xdf, 0xfc, 0xa3, - 0xd5, 0xe9, 0xfe, 0xd3, 0xb6, 0x7f, 0x3b, 0x9e, 0x3e, 0x9d, 0xee, 0xa7, 0x50, 0x35, 0xbc, 0x4b, - 0xf6, 0x73, 0xe2, 0x92, 0x2a, 0x24, 0xb9, 0xa5, 0xf2, 0x92, 0x4a, 0x62, 0x08, 0xb3, 0x04, 0x2a, - 0xf0, 0x9d, 0xc6, 0x7d, 0x5c, 0x85, 0xe6, 0x48, 0x76, 0xc9, 0xe5, 0x06, 0xdf, 0x28, 0x09, 0xb2, - 0x51, 0x12, 0x4c, 0x23, 0x37, 0x68, 0x26, 0xee, 0xde, 0x4a, 0x3e, 0x9b, 0x4a, 0xcf, 0x64, 0x41, - 0x0a, 0x21, 0x1e, 0xe1, 0x82, 0x38, 0x9e, 0x1a, 0x88, 0x7e, 0x78, 0xa3, 0x7d, 0x33, 0xa2, 0x48, - 0xc8, 0x12, 0x05, 0x15, 0x22, 0x10, 0x6d, 0x03, 0xc2, 0x2f, 0x5f, 0xb8, 0x6f, 0x84, 0x5c, 0xe8, - 0xb8, 0x0b, 0x2c, 0x6f, 0x61, 0x23, 0x1c, 0xa4, 0x50, 0x07, 0x27, 0xdc, 0x76, 0xed, 0xbe, 0xe8, - 0x21, 0x16, 0x7c, 0x41, 0x2d, 0x4c, 0x6c, 0xde, 0x37, 0x3d, 0x11, 0x7a, 0xb9, 0xd7, 0x09, 0x8a, - 0xd5, 0x28, 0x21, 0xb7, 0x3b, 0xda, 0xbd, 0x56, 0x64, 0x0a, 0x39, 0x0e, 0x45, 0x2c, 0x87, 0x02, - 0x8e, 0x4b, 0xf1, 0x4a, 0xa3, 0x70, 0xa5, 0x51, 0xb4, 0xd2, 0x28, 0x58, 0xb5, 0x8a, 0x25, 0xea, - 0x3d, 0x4f, 0xc1, 0x5a, 0xbc, 0x53, 0xf4, 0x1d, 0xf3, 0xef, 0xfe, 0x97, 0x03, 0x45, 0x5c, 0xe6, - 0x78, 0x57, 0xc0, 0xcf, 0x47, 0xa6, 0x14, 0x71, 0x00, 0x09, 0xb7, 0x2b, 0x72, 0x6f, 0x51, 0x64, - 0xdd, 0x96, 0x48, 0xbf, 0x15, 0x91, 0x7e, 0xfb, 0x21, 0xfd, 0x96, 0x83, 0x16, 0x34, 0xc5, 0xbd, - 0x62, 0x2d, 0x2c, 0xa3, 0x5d, 0x63, 0x6f, 0xf4, 0x4a, 0xfc, 0x96, 0xe3, 0xc5, 0x75, 0xf9, 0xa4, - 0xc4, 0x64, 0x48, 0xbb, 0x0e, 0x95, 0x79, 0xfd, 0xa9, 0xe6, 0xba, 0x53, 0xf6, 0xf5, 0xa6, 0xb2, - 0xeb, 0x4c, 0x65, 0xd7, 0x97, 0xca, 0xae, 0x2b, 0xf5, 0x92, 0x1f, 0xb2, 0x62, 0x28, 0x16, 0x07, - 0x53, 0x7e, 0x28, 0x96, 0xcc, 0x4c, 0x0f, 0x84, 0x62, 0x21, 0x14, 0x4b, 0xb5, 0x9a, 0x50, 0xae, - 0x2e, 0xe4, 0xb1, 0xae, 0x7b, 0x49, 0x0e, 0xc5, 0x72, 0x5c, 0x7e, 0xa7, 0xa0, 0x3d, 0xde, 0xf3, - 0x71, 0x58, 0x8c, 0x8f, 0xb0, 0x2b, 0x84, 0x5d, 0x69, 0x55, 0x44, 0x64, 0x0a, 0x89, 0x4c, 0x31, - 0xc9, 0x55, 0x50, 0x92, 0x15, 0x95, 0xbf, 0x0a, 0xea, 0xc3, 0xae, 0xe4, 0xe7, 0x0b, 0x04, 0x70, - 0xcc, 0xb1, 0x82, 0xb1, 0x03, 0xf9, 0x03, 0x4b, 0x4d, 0x99, 0xd4, 0xab, 0x60, 0x89, 0x60, 0x66, - 0x99, 0x9c, 0xaf, 0xce, 0xe8, 0xac, 0x26, 0x80, 0xd5, 0x81, 0xd5, 0x81, 0xd5, 0x81, 0xd5, 0x81, - 0xd5, 0xd9, 0x6a, 0x75, 0x56, 0xaa, 0x32, 0x0f, 0x66, 0x47, 0x8d, 0x3a, 0x7c, 0xb6, 0x3a, 0x4a, - 0x1c, 0x68, 0x18, 0x1d, 0x18, 0x1d, 0x18, 0x1d, 0x18, 0x9d, 0x4c, 0x19, 0x9d, 0x85, 0xd8, 0xe7, - 0xc0, 0xe6, 0xc8, 0x4d, 0x9c, 0x0e, 0x08, 0x84, 0xcc, 0x04, 0xea, 0x80, 0x28, 0xc0, 0xe2, 0xc0, - 0xe2, 0xc0, 0xe2, 0x24, 0xd9, 0xe2, 0xc8, 0xbe, 0x0d, 0xf0, 0x07, 0x9e, 0x97, 0x71, 0xe6, 0xf6, - 0x80, 0xa9, 0x6b, 0xd8, 0xe1, 0x1f, 0xad, 0x17, 0x73, 0xa9, 0xaa, 0x09, 0xa9, 0xb4, 0xf5, 0x8a, - 0xf2, 0xd6, 0x2a, 0x14, 0xad, 0x53, 0x68, 0x5b, 0xa3, 0x50, 0xb5, 0x3e, 0x21, 0x6f, 0x6d, 0x42, - 0xde, 0xba, 0x84, 0xbc, 0x35, 0x49, 0xba, 0xaa, 0xc1, 0x2a, 0x6f, 0x1d, 0x42, 0x00, 0xcd, 0x29, - 0x20, 0xfa, 0x26, 0xa8, 0xbe, 0xf1, 0xf7, 0x5c, 0x59, 0x7b, 0x4c, 0x78, 0xfe, 0xa7, 0x25, 0xa4, - 0x5f, 0x28, 0xf0, 0xb4, 0x54, 0xe1, 0x54, 0x80, 0xe1, 0xfa, 0xce, 0x68, 0x34, 0xb1, 0xb9, 0x78, - 0xa4, 0xb2, 0x9b, 0xaf, 0x27, 0x84, 0xf1, 0x84, 0xf1, 0x84, 0xf1, 0x84, 0xf1, 0x84, 0xf1, 0x4c, - 0xaa, 0xf1, 0x5c, 0x69, 0x6c, 0xce, 0x3c, 0xff, 0xf3, 0x23, 0xec, 0xe7, 0x62, 0xf1, 0xd8, 0x83, - 0x30, 0xc8, 0x6d, 0xe8, 0xa6, 0x49, 0x61, 0x47, 0x61, 0x47, 0x61, 0x47, 0x61, 0x47, 0x61, 0x47, - 0x93, 0x6a, 0x47, 0x5f, 0x6a, 0xed, 0x99, 0x2d, 0x5d, 0xd3, 0xe2, 0xb0, 0xa7, 0x8b, 0x45, 0xe4, - 0xf6, 0xbd, 0x69, 0xf1, 0x81, 0xe1, 0x32, 0xd3, 0x53, 0xd8, 0x9a, 0xe4, 0x39, 0xc5, 0x79, 0x7d, - 0x3e, 0x58, 0x51, 0x58, 0x51, 0x58, 0x51, 0x58, 0xd1, 0x14, 0x5a, 0x51, 0x3e, 0x60, 0xb6, 0xe0, - 0xe2, 0x91, 0xc8, 0x92, 0x56, 0x14, 0xce, 0xd1, 0x58, 0xbe, 0xca, 0x99, 0xe9, 0x11, 0x1c, 0xd1, - 0xd5, 0x02, 0x36, 0x2e, 0xbe, 0xd7, 0x9a, 0x8d, 0x2f, 0xbd, 0x4e, 0xeb, 0xfa, 0xaa, 0xde, 0xeb, - 0xd4, 0x6b, 0x97, 0xad, 0x0b, 0xd5, 0xa7, 0xf5, 0xbb, 0x69, 0x4d, 0xe6, 0xf9, 0xcf, 0x37, 0xca, - 0xbb, 0x0a, 0xd2, 0x34, 0x06, 0x0d, 0xac, 0x66, 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, 0x5d, 0xb5, - 0x3a, 0xea, 0x7b, 0x59, 0x12, 0x34, 0x5c, 0xd5, 0xb4, 0x8a, 0x9f, 0x9b, 0xd7, 0x97, 0x57, 0xf5, - 0x4e, 0xaf, 0xd9, 0x6a, 0xb5, 0xb1, 0x8e, 0xd1, 0xd7, 0xb1, 0x76, 0x89, 0x25, 0x8c, 0x2b, 0x8a, - 0xad, 0x8b, 0xaf, 0xf5, 0x2f, 0x85, 0x94, 0xb7, 0x8c, 0xed, 0xa6, 0x0d, 0x9f, 0xa4, 0xc2, 0x7b, - 0xb3, 0x4c, 0x4f, 0x18, 0x23, 0x67, 0xc0, 0x87, 0x9c, 0x0d, 0xd4, 0x3b, 0x6f, 0xeb, 0xd3, 0xc1, - 0x77, 0x83, 0xef, 0x06, 0xdf, 0x0d, 0xbe, 0x5b, 0x0a, 0x7d, 0x37, 0xc1, 0x47, 0x4c, 0xf0, 0xfe, - 0x3f, 0x5e, 0xb5, 0x4c, 0xe0, 0xbb, 0xa9, 0x2c, 0x7d, 0x7e, 0x6d, 0xf3, 0x79, 0xb5, 0xd8, 0x82, - 0x6d, 0xda, 0x8e, 0xc7, 0xfa, 0x8e, 0x3d, 0x50, 0x5a, 0xce, 0xbd, 0x63, 0xda, 0x77, 0x4c, 0xb9, - 0xff, 0x44, 0xd0, 0xf3, 0xfd, 0x9c, 0xd3, 0x34, 0x97, 0x27, 0xb0, 0x69, 0x9b, 0xbd, 0x5c, 0xc2, - 0xf9, 0xbe, 0xba, 0x66, 0x5f, 0x70, 0xc7, 0xfe, 0xc2, 0xef, 0x16, 0xd2, 0x78, 0x98, 0x05, 0xbc, - 0x5f, 0x38, 0x37, 0x1f, 0x32, 0x2f, 0x22, 0xc5, 0x4f, 0xe5, 0x72, 0xf5, 0xb8, 0x5c, 0x3e, 0x3c, - 0x3e, 0x3a, 0x3e, 0x3c, 0xa9, 0x54, 0x8a, 0x55, 0x95, 0x4c, 0x93, 0x76, 0xa9, 0x79, 0x97, 0xce, - 0xd1, 0xbb, 0x39, 0xf6, 0x71, 0x14, 0x95, 0x1e, 0x0a, 0x62, 0x69, 0x15, 0x25, 0x88, 0xe0, 0xd5, - 0xc0, 0xab, 0x81, 0x57, 0x03, 0xaf, 0x86, 0xe4, 0xdc, 0x4c, 0x6c, 0xae, 0xec, 0x4a, 0x7d, 0x4f, - 0x71, 0x73, 0xb9, 0xd7, 0xcb, 0x95, 0x7a, 0xff, 0x82, 0xa4, 0xdd, 0x9f, 0x8e, 0x1d, 0xa2, 0xdd, - 0x29, 0xba, 0x1d, 0xdb, 0xb0, 0x73, 0x24, 0xed, 0x02, 0xb7, 0xee, 0xe1, 0x27, 0xc2, 0x39, 0xa9, - 0x3a, 0xa8, 0x05, 0x26, 0xce, 0x4a, 0x7b, 0x41, 0x1a, 0xc4, 0xae, 0xc1, 0x0b, 0xd6, 0x77, 0xf8, - 0xaa, 0x38, 0x7c, 0x34, 0x87, 0x0f, 0xed, 0x0c, 0x33, 0xd5, 0xce, 0x50, 0x93, 0x2a, 0x7a, 0x97, - 0xee, 0xf7, 0x50, 0xac, 0x4a, 0x29, 0x11, 0x27, 0x49, 0x60, 0x5a, 0x40, 0x63, 0x12, 0xd0, 0x86, - 0xb4, 0x81, 0x6a, 0x81, 0x85, 0x6d, 0x5c, 0x5c, 0x5e, 0xd5, 0x9a, 0xcd, 0x5e, 0xbb, 0xd3, 0xba, - 0x6a, 0x7d, 0x6e, 0x35, 0x7b, 0x57, 0xff, 0x6d, 0xd7, 0x0b, 0x94, 0x84, 0xad, 0x47, 0x6a, 0x23, - 0x7e, 0xd1, 0x5a, 0x23, 0x7f, 0x99, 0xbf, 0x9d, 0xb7, 0xe9, 0xb4, 0xe3, 0xf4, 0x43, 0xd6, 0xd7, - 0xb3, 0xd9, 0xfa, 0x5c, 0x6b, 0xf6, 0x6a, 0xdf, 0xbe, 0x75, 0xea, 0xdf, 0x6a, 0x57, 0x75, 0x2c, - 0xad, 0x44, 0x51, 0xbd, 0x6c, 0x5c, 0x62, 0x3d, 0xe5, 0xad, 0xe7, 0x97, 0x46, 0xa7, 0xfe, 0xf9, - 0xaa, 0xf9, 0xdf, 0xde, 0xe7, 0xd6, 0xc5, 0x45, 0xfd, 0xf3, 0x15, 0x45, 0xdc, 0x5b, 0x7e, 0x56, - 0xb7, 0xdd, 0x38, 0xc7, 0x72, 0xca, 0x5b, 0xce, 0xd6, 0x65, 0xfb, 0xeb, 0x11, 0x16, 0x54, 0xde, - 0x82, 0x5e, 0x5e, 0xd5, 0xae, 0x1a, 0x9f, 0xb1, 0xa2, 0x72, 0x45, 0x14, 0xeb, 0x29, 0x6f, 0x3d, - 0xcf, 0xbe, 0x51, 0x22, 0xd3, 0x77, 0xd9, 0x60, 0x07, 0x10, 0x74, 0xa1, 0xf6, 0x79, 0x55, 0x04, - 0x5d, 0xa8, 0xea, 0xbd, 0x11, 0x38, 0x51, 0x6a, 0x7a, 0x70, 0xf8, 0xd3, 0x7c, 0x61, 0x43, 0x73, - 0x62, 0xcd, 0x6f, 0xa6, 0x0f, 0x11, 0xda, 0xb1, 0x79, 0x02, 0x84, 0x76, 0x44, 0xde, 0x79, 0x84, - 0x76, 0xa4, 0x42, 0x9b, 0x67, 0x20, 0xb4, 0x83, 0xdb, 0xe2, 0xa8, 0x44, 0x10, 0xdb, 0x71, 0x8c, - 0xd8, 0xf1, 0xb7, 0x5f, 0x04, 0xb1, 0xe3, 0xf2, 0xe6, 0x43, 0xec, 0x78, 0x6a, 0x45, 0xa4, 0x5c, - 0x3a, 0x29, 0x9f, 0x54, 0x8f, 0x4b, 0x27, 0x88, 0x18, 0x87, 0xf3, 0x92, 0x24, 0xe7, 0x45, 0x2d, - 0xa0, 0x55, 0xdb, 0xc9, 0x09, 0x6e, 0x05, 0xdc, 0x0a, 0xb8, 0x15, 0x70, 0x2b, 0x68, 0x6a, 0x18, - 0x8d, 0xef, 0xcb, 0x86, 0x72, 0x19, 0xa3, 0x08, 0xaa, 0x23, 0x0b, 0xa2, 0xa3, 0x8d, 0x58, 0x3d, - 0x58, 0x4e, 0xb6, 0xff, 0xf4, 0xfe, 0xa6, 0x68, 0x94, 0xba, 0xab, 0xff, 0x73, 0x74, 0x73, 0x68, - 0x94, 0xba, 0x4a, 0xc3, 0xc8, 0xf2, 0x8c, 0x20, 0x96, 0x35, 0x0a, 0x9d, 0x89, 0x60, 0xea, 0x61, - 0xc4, 0xcb, 0xc9, 0x80, 0x25, 0x80, 0x25, 0x80, 0x25, 0x80, 0x25, 0x52, 0x88, 0x25, 0x6e, 0x1d, - 0xc7, 0x62, 0x26, 0x49, 0xfe, 0x59, 0x31, 0x2d, 0xa6, 0x29, 0xd1, 0x6d, 0xe1, 0x6a, 0xb6, 0xed, - 0x08, 0x53, 0x70, 0x45, 0x65, 0x7f, 0x0b, 0x5e, 0xff, 0x27, 0x1b, 0x99, 0xe3, 0x65, 0x95, 0xe6, - 0x03, 0x67, 0xcc, 0xec, 0xfe, 0xdc, 0x50, 0xcc, 0xce, 0xe7, 0xc1, 0xec, 0x3f, 0x97, 0xdf, 0x1e, - 0x98, 0x43, 0x6e, 0x78, 0xe6, 0x90, 0x7b, 0xfe, 0xa7, 0x83, 0x39, 0x2a, 0x9d, 0xd8, 0xbc, 0x6f, - 0x7a, 0xe2, 0xc0, 0x5a, 0x9c, 0xe9, 0x83, 0xb9, 0x7d, 0xf4, 0x16, 0x7f, 0x2c, 0x8a, 0x37, 0xe7, - 0xa1, 0x31, 0xe8, 0xc4, 0xfe, 0xc7, 0x76, 0xfe, 0xb5, 0x0d, 0x53, 0x08, 0x97, 0xdf, 0xce, 0x56, - 0x40, 0x5d, 0x97, 0xd0, 0x0d, 0x73, 0xa1, 0x65, 0x28, 0x5a, 0x86, 0x26, 0x02, 0x5e, 0xa0, 0x65, - 0x28, 0xad, 0x6d, 0x50, 0xd6, 0x32, 0x34, 0xa0, 0x64, 0xd4, 0xfb, 0x57, 0xc1, 0x29, 0xd5, 0x7a, - 0x59, 0x45, 0x78, 0x59, 0xf0, 0xb2, 0xe0, 0x65, 0xe5, 0xc9, 0xcb, 0x52, 0xa5, 0x2e, 0xfd, 0x09, - 0xe6, 0x6d, 0x34, 0x85, 0x6a, 0x5f, 0x6e, 0x2f, 0xd0, 0x70, 0x79, 0x3e, 0xa5, 0x62, 0xd1, 0xa2, - 0xb9, 0xbd, 0x56, 0xae, 0x3e, 0x29, 0xd5, 0xa8, 0x1e, 0x75, 0x4a, 0xad, 0x56, 0xb5, 0xa9, 0x57, - 0x6d, 0x6a, 0x56, 0x9b, 0xba, 0x55, 0xab, 0x76, 0x15, 0xab, 0x5f, 0x3a, 0xb2, 0x2b, 0x70, 0xee, - 0xd4, 0xb7, 0xd2, 0x0a, 0xa0, 0xcb, 0x63, 0x82, 0xb9, 0x5e, 0xb4, 0xd6, 0x5a, 0xf4, 0xc9, 0x7a, - 0x36, 0x06, 0x29, 0x8d, 0x87, 0x51, 0x28, 0x7a, 0x85, 0x05, 0x1b, 0x45, 0x66, 0x98, 0x17, 0xd3, - 0xd1, 0x18, 0xe5, 0x22, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x72, 0x72, 0x7d, 0xa3, 0x75, - 0x1f, 0xc9, 0x62, 0x36, 0x7d, 0x61, 0x10, 0x7f, 0xe6, 0x0f, 0x99, 0x8c, 0xf7, 0xa5, 0x52, 0xd2, - 0x3a, 0x94, 0xb5, 0x5e, 0xa5, 0xad, 0x4b, 0x79, 0x6b, 0x57, 0xe2, 0xda, 0x95, 0xb9, 0x76, 0xa5, - 0x4e, 0xa3, 0xdc, 0x89, 0x94, 0x3c, 0xbd, 0x07, 0x16, 0x38, 0xb7, 0x13, 0x6e, 0x8b, 0x62, 0x55, - 0x43, 0xa9, 0xc0, 0x2a, 0xe1, 0x94, 0x34, 0x19, 0x54, 0xaf, 0x7f, 0xd1, 0xea, 0xa4, 0x3d, 0xea, - 0x0c, 0x2b, 0xcd, 0xe6, 0x35, 0x30, 0x3d, 0x71, 0x06, 0x56, 0x60, 0x7e, 0x0d, 0x59, 0x36, 0x9a, - 0xd4, 0xd5, 0xba, 0xc8, 0x99, 0x0f, 0xb9, 0x17, 0xb9, 0x6a, 0xa5, 0x72, 0x54, 0xc9, 0xb1, 0xd8, - 0xbd, 0xcb, 0xe6, 0x6c, 0x59, 0xa9, 0x00, 0x4a, 0x91, 0xb8, 0x49, 0x77, 0xd3, 0xb6, 0xd9, 0x8d, - 0x24, 0xb8, 0x71, 0x83, 0x1f, 0x09, 0x3f, 0x12, 0x7e, 0x24, 0xfc, 0x48, 0xf8, 0x91, 0x5b, 0xfc, - 0xc8, 0x4f, 0x1a, 0xdc, 0xc8, 0x0a, 0xdc, 0x48, 0xb8, 0x91, 0x70, 0x23, 0xe1, 0x46, 0x66, 0x40, - 0xe4, 0x4a, 0x15, 0x38, 0x91, 0x70, 0x22, 0xf3, 0xee, 0x44, 0xde, 0x2f, 0x4f, 0x83, 0x0e, 0x2f, - 0x72, 0x31, 0x37, 0xdc, 0x48, 0xb8, 0x91, 0x70, 0x23, 0xe1, 0x46, 0xc2, 0x8d, 0x24, 0x3f, 0xb7, - 0xb7, 0xdc, 0x36, 0xdd, 0x47, 0x0d, 0x7e, 0xe4, 0x09, 0xe1, 0x94, 0x4d, 0x66, 0xdf, 0xcd, 0x03, - 0x45, 0xe1, 0x48, 0xe6, 0x00, 0xd5, 0x17, 0xe1, 0x48, 0xc2, 0x91, 0xa4, 0x15, 0x39, 0xdc, 0x47, - 0xc2, 0x95, 0xcc, 0xb9, 0x2b, 0xc9, 0x1e, 0x04, 0xb3, 0x07, 0x6c, 0x40, 0xef, 0x48, 0xfa, 0x33, - 0xc3, 0x8d, 0x84, 0x1b, 0x09, 0x37, 0x12, 0x6e, 0x24, 0xdc, 0x48, 0x7a, 0x37, 0x52, 0x79, 0x51, - 0xad, 0x6d, 0x6a, 0x58, 0x51, 0x91, 0xad, 0x6c, 0x1a, 0x69, 0x67, 0x3c, 0x43, 0x8a, 0xa6, 0x45, - 0x6f, 0xa4, 0xfd, 0x99, 0x61, 0xa4, 0x61, 0xa4, 0x61, 0xa4, 0x61, 0xa4, 0x61, 0xa4, 0x61, 0xa4, - 0x61, 0xa4, 0x37, 0xad, 0xd9, 0xd8, 0x74, 0x05, 0xd7, 0x61, 0xa3, 0x57, 0x13, 0xc3, 0x44, 0xc3, - 0x44, 0xc3, 0x44, 0xc3, 0x44, 0xc3, 0x44, 0xc3, 0x44, 0xc3, 0x44, 0x6f, 0x5a, 0x33, 0xe1, 0x9a, - 0xb6, 0xc7, 0x05, 0xbf, 0xd7, 0x10, 0x37, 0xf5, 0x62, 0x6e, 0x18, 0x6a, 0x18, 0x6a, 0x18, 0x6a, - 0x18, 0x6a, 0x18, 0x6a, 0x18, 0xea, 0x14, 0x1a, 0xea, 0x54, 0x97, 0x8b, 0x52, 0xdc, 0x95, 0x22, - 0x30, 0x9f, 0xc2, 0x2e, 0x15, 0xc1, 0x86, 0x0a, 0xc1, 0xbf, 0x52, 0xd1, 0xca, 0x82, 0x4e, 0x20, - 0xd2, 0x55, 0xa5, 0xf9, 0x4f, 0xf6, 0x48, 0x91, 0x66, 0x5d, 0x68, 0x72, 0x4f, 0xd4, 0x84, 0x50, - 0x5c, 0x12, 0xfa, 0x9c, 0xdb, 0x75, 0x8b, 0xcd, 0x6c, 0x9e, 0x57, 0x38, 0xdd, 0xb3, 0x27, 0x96, - 0xa5, 0xb0, 0xc4, 0xe5, 0xb9, 0xf9, 0x40, 0x37, 0x59, 0xcb, 0x1d, 0x30, 0x97, 0x0d, 0xce, 0x1e, - 0x97, 0x53, 0xa5, 0x4a, 0xc8, 0x88, 0xf4, 0x97, 0x6e, 0xbd, 0x55, 0x50, 0x5a, 0x4f, 0xd5, 0x9d, - 0xf4, 0x85, 0xbd, 0x44, 0x04, 0x67, 0x77, 0xe3, 0x5e, 0x87, 0xdf, 0xf6, 0x6a, 0x43, 0x7e, 0x69, - 0x0e, 0x79, 0xaf, 0x31, 0xbe, 0x2f, 0x5f, 0x2f, 0x1e, 0xbf, 0xd7, 0x74, 0xfa, 0xb3, 0x7f, 0xea, - 0xcc, 0x1e, 0xbb, 0x77, 0xbd, 0x78, 0xc6, 0x9a, 0xff, 0x88, 0xe8, 0x12, 0x95, 0x7c, 0x79, 0xa6, - 0x95, 0xe3, 0xc4, 0xb6, 0x8c, 0x7a, 0x97, 0xa0, 0xad, 0x5f, 0xd9, 0xc9, 0x85, 0x27, 0xb9, 0xe7, - 0xb8, 0xfc, 0x8e, 0xdb, 0x7b, 0xb3, 0x1d, 0x32, 0xb8, 0xac, 0x60, 0x40, 0x35, 0x36, 0x52, 0xa9, - 0x4d, 0x54, 0x6a, 0x03, 0xd5, 0xd8, 0x3c, 0x59, 0x02, 0xa1, 0x48, 0x07, 0x28, 0x3c, 0xfb, 0x12, - 0xcd, 0x53, 0x44, 0x73, 0x24, 0x47, 0xd5, 0xc4, 0x57, 0x0c, 0xf1, 0x46, 0x88, 0x29, 0x41, 0xb2, - 0x25, 0x47, 0x89, 0xc4, 0xc4, 0xdb, 0xa9, 0xe8, 0xeb, 0x1b, 0x63, 0x6d, 0x25, 0x95, 0x9c, 0x97, - 0x5a, 0x52, 0x5e, 0x52, 0xc9, 0xf8, 0x67, 0x9a, 0xba, 0x14, 0x73, 0x20, 0x89, 0xf4, 0xb3, 0x1a, - 0x5a, 0x59, 0x36, 0x5d, 0xac, 0x8c, 0x06, 0x56, 0x46, 0xef, 0x2a, 0xa3, 0x6d, 0xa1, 0xf5, 0xb6, - 0x6b, 0x3d, 0x09, 0x8c, 0x53, 0x0c, 0xa5, 0xf7, 0x8e, 0x70, 0x43, 0x64, 0x6d, 0x84, 0xdc, 0x0d, - 0x28, 0xc4, 0xd2, 0xfb, 0xe1, 0xb0, 0x48, 0xb4, 0x6d, 0x0e, 0xbf, 0x49, 0x11, 0x36, 0xa8, 0x60, - 0x33, 0x7e, 0xf7, 0xf3, 0xd6, 0x71, 0xa3, 0xb7, 0xb4, 0xf5, 0xd5, 0xf2, 0xf3, 0x50, 0x11, 0x05, - 0x25, 0x9e, 0xed, 0x8a, 0x6d, 0xb3, 0x64, 0xd8, 0x2a, 0xb9, 0x36, 0x4a, 0x96, 0x6d, 0x92, 0x6e, - 0x93, 0xa4, 0xdb, 0x22, 0xe9, 0x36, 0x88, 0x56, 0xc5, 0xc5, 0x6d, 0xaf, 0xe1, 0x9f, 0x1d, 0x79, - 0x68, 0xd2, 0x1f, 0x31, 0x61, 0x80, 0xf2, 0x10, 0x80, 0x12, 0x80, 0x32, 0x95, 0x80, 0x52, 0x56, - 0x0f, 0x9d, 0x82, 0x39, 0xf8, 0x7b, 0xbe, 0x26, 0xdc, 0x36, 0xc6, 0x8e, 0x27, 0xe4, 0x49, 0x8a, - 0x5f, 0x7d, 0xea, 0xd5, 0x04, 0xb2, 0x28, 0x49, 0xa9, 0xed, 0xc8, 0xa4, 0x87, 0x42, 0xa9, 0x08, - 0x75, 0x52, 0x1b, 0xca, 0xa4, 0x2a, 0x54, 0x49, 0x79, 0x28, 0x92, 0xf2, 0x50, 0x23, 0xe5, 0xa1, - 0x44, 0xc9, 0x22, 0xfb, 0x65, 0xb7, 0xe7, 0x2a, 0x2c, 0x49, 0x35, 0xe9, 0x82, 0xb5, 0x3a, 0x0e, - 0xcb, 0xf1, 0x25, 0x6f, 0xba, 0x9a, 0x7e, 0x87, 0xd2, 0xc8, 0x2c, 0x0a, 0x85, 0x43, 0xa3, 0x78, - 0x54, 0x2b, 0x20, 0x32, 0x45, 0x44, 0xa6, 0x90, 0xc8, 0x14, 0x93, 0x5c, 0x05, 0x25, 0x59, 0x51, - 0x29, 0x53, 0x58, 0xeb, 0x8a, 0x4b, 0x9d, 0x3c, 0xae, 0xe9, 0x2f, 0x55, 0xb2, 0xa8, 0xb6, 0x6d, - 0xab, 0xf2, 0x10, 0x72, 0x8a, 0x90, 0x71, 0xda, 0x10, 0x71, 0xaa, 0x90, 0x70, 0xf2, 0x10, 0x70, - 0xf2, 0x90, 0x6f, 0xf2, 0x10, 0xef, 0x74, 0x05, 0x37, 0xaa, 0x6e, 0xb3, 0x5a, 0x58, 0x05, 0x80, - 0x90, 0xf5, 0xb9, 0x96, 0x1b, 0x71, 0xf2, 0x96, 0xca, 0x3c, 0x44, 0xa7, 0xeb, 0x84, 0xab, 0x52, - 0x6a, 0x95, 0xaa, 0x4d, 0xb5, 0x6a, 0x53, 0xb1, 0xda, 0x54, 0xad, 0x5a, 0x95, 0xab, 0x58, 0xf5, - 0xfa, 0xab, 0x46, 0x96, 0x35, 0xe3, 0x9f, 0x3b, 0x8b, 0x99, 0x43, 0x97, 0x0d, 0x29, 0x0e, 0xdd, - 0x0a, 0x59, 0x1e, 0x13, 0xcc, 0xd5, 0x5e, 0x5e, 0xb4, 0x7e, 0xfc, 0xb8, 0xb8, 0xac, 0x3e, 0x58, - 0x99, 0x82, 0xb4, 0xa6, 0x49, 0x28, 0xc4, 0x97, 0x63, 0x1a, 0x75, 0xff, 0x6c, 0x95, 0x49, 0xc0, - 0x25, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x72, 0x82, 0x8d, 0xf2, 0xe2, 0xd8, - 0xc1, 0x26, 0x07, 0x96, 0x4a, 0x4e, 0x74, 0xee, 0xce, 0x02, 0x27, 0x23, 0x7a, 0x77, 0x67, 0x51, - 0x83, 0x45, 0x86, 0x45, 0x86, 0x45, 0x86, 0x45, 0x8e, 0xbe, 0x6a, 0xaa, 0x99, 0x4a, 0x7f, 0xa2, - 0x79, 0xa2, 0x37, 0xb7, 0x07, 0xec, 0x41, 0x53, 0x17, 0xb6, 0xc5, 0xdc, 0xa8, 0x26, 0x94, 0x36, - 0x85, 0xad, 0x57, 0x71, 0xeb, 0x52, 0xe0, 0xda, 0x15, 0xb9, 0x76, 0x85, 0xae, 0x5d, 0xb1, 0xd3, - 0x28, 0x78, 0x22, 0x45, 0x4f, 0xef, 0x82, 0x69, 0x74, 0xc5, 0x74, 0xb8, 0x64, 0x9b, 0x5c, 0xb3, - 0xdf, 0xfc, 0x9e, 0x9b, 0x24, 0x8f, 0x09, 0xcf, 0xff, 0xb4, 0x74, 0xe4, 0x16, 0x66, 0x0a, 0x65, - 0x0a, 0x77, 0x5e, 0xef, 0x5b, 0xe6, 0x09, 0x63, 0x99, 0x0d, 0x44, 0x8c, 0x2b, 0x9e, 0xa7, 0x06, - 0xac, 0x00, 0xac, 0x00, 0xac, 0x00, 0xac, 0x00, 0xac, 0x20, 0x3f, 0xb7, 0x28, 0x52, 0x98, 0x0a, - 0x33, 0xdd, 0x77, 0x46, 0xa3, 0x89, 0xcd, 0xc5, 0xa3, 0x2e, 0x12, 0xe0, 0xf5, 0x03, 0xc0, 0x64, - 0xc3, 0x64, 0xc3, 0x64, 0xc3, 0x64, 0xc3, 0x64, 0x83, 0x09, 0xd0, 0xc9, 0x04, 0xac, 0xec, 0x12, - 0x67, 0x9e, 0xff, 0xf9, 0x11, 0x64, 0x40, 0xb4, 0x25, 0x67, 0x0f, 0xc2, 0xd0, 0x8e, 0x34, 0x36, - 0x3d, 0x04, 0xd0, 0x06, 0xd0, 0x06, 0xd0, 0x06, 0xd0, 0x06, 0xd0, 0x06, 0xd0, 0x86, 0x4e, 0xb4, - 0xf1, 0xd2, 0x36, 0xcd, 0x10, 0xc7, 0x9a, 0xad, 0x02, 0xea, 0x88, 0xb6, 0xf4, 0xdc, 0xbe, 0x37, - 0x2d, 0x3e, 0x30, 0x5c, 0x66, 0x7a, 0x44, 0xad, 0x12, 0xd6, 0x24, 0xfc, 0xd5, 0xfc, 0xc0, 0x1a, - 0xc0, 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0xe4, 0xe7, 0x96, 0x0f, 0x98, 0x2d, 0xb8, 0x78, - 0xd4, 0x84, 0x37, 0x2a, 0x84, 0x73, 0x36, 0x96, 0xaf, 0x7a, 0x66, 0x7a, 0x1a, 0x54, 0xc6, 0x6a, - 0xc1, 0x1b, 0x17, 0xdf, 0x6b, 0xcd, 0xc6, 0x97, 0x5e, 0xa7, 0x75, 0x7d, 0x55, 0xef, 0x75, 0xea, - 0xb5, 0xcb, 0xd6, 0x05, 0xb5, 0xf6, 0xf8, 0x6e, 0x5a, 0x93, 0x79, 0x91, 0x9d, 0x1b, 0xd2, 0x79, - 0x67, 0xbf, 0x7e, 0x91, 0xcf, 0xb8, 0x71, 0xf5, 0x5b, 0x9d, 0xc6, 0xb7, 0xc6, 0x45, 0xed, 0xaa, - 0xd5, 0x29, 0x90, 0x3f, 0xd0, 0xf4, 0x43, 0x5e, 0x57, 0xfd, 0x73, 0xf3, 0xfa, 0xf2, 0xaa, 0xde, - 0xe9, 0x35, 0x5b, 0xad, 0x36, 0xd6, 0x9d, 0x6e, 0xdd, 0x6b, 0x97, 0x58, 0x72, 0x6a, 0x51, 0x6f, - 0x5d, 0x7c, 0xad, 0x7f, 0xd1, 0xb0, 0xe2, 0xa4, 0x33, 0x76, 0xb3, 0x86, 0xf7, 0x32, 0xe1, 0xdd, - 0x5b, 0xa6, 0x27, 0x8c, 0x91, 0x33, 0xe0, 0x43, 0xce, 0x06, 0xf4, 0xce, 0xfd, 0xfa, 0xf4, 0xf0, - 0xed, 0xe1, 0xdb, 0xc3, 0xb7, 0x87, 0x6f, 0x0f, 0xdf, 0x9e, 0xfc, 0xdc, 0x0a, 0x3e, 0x62, 0x82, - 0xf7, 0xff, 0xf1, 0xaa, 0x65, 0x0d, 0xbe, 0xfd, 0x27, 0xc2, 0x29, 0xaf, 0x6d, 0x3e, 0x6f, 0xab, - 0x56, 0xb0, 0x4d, 0xdb, 0xf1, 0x58, 0xdf, 0xb1, 0x07, 0x1e, 0xe5, 0x2b, 0x77, 0x4c, 0xfb, 0x8e, - 0x91, 0xfb, 0xd3, 0xf4, 0x50, 0xb7, 0x70, 0xce, 0x6d, 0x72, 0x8d, 0xac, 0xc9, 0xc6, 0x6f, 0x66, - 0x4d, 0x34, 0xce, 0xff, 0xd5, 0x35, 0xfb, 0x82, 0x3b, 0xf6, 0x17, 0x7e, 0xb7, 0x90, 0xf6, 0xc3, - 0x3c, 0xf8, 0x73, 0x85, 0x73, 0xf3, 0x21, 0xf7, 0x22, 0x57, 0xfc, 0x54, 0x2e, 0x57, 0x8f, 0xcb, - 0xe5, 0xc3, 0xe3, 0xa3, 0xe3, 0xc3, 0x93, 0x4a, 0xa5, 0x58, 0xa5, 0x64, 0x4e, 0x13, 0x27, 0x85, - 0xef, 0xb2, 0x39, 0x5b, 0x17, 0x3e, 0xee, 0xce, 0x62, 0x48, 0x55, 0x4f, 0x34, 0x00, 0xaa, 0x68, - 0xea, 0x8a, 0xc2, 0xaf, 0x85, 0x5f, 0x0b, 0xbf, 0x16, 0x7e, 0x2d, 0xfc, 0xda, 0x0d, 0xe7, 0x76, - 0xc2, 0x6d, 0x71, 0x54, 0xd2, 0xe0, 0xd2, 0x1e, 0xc3, 0xa5, 0x84, 0x4b, 0x09, 0x97, 0x12, 0x2e, - 0x65, 0x06, 0x44, 0xae, 0x5c, 0x3a, 0x29, 0x9f, 0x54, 0x8f, 0x4b, 0x27, 0x70, 0x24, 0xe1, 0x48, - 0xe6, 0xd9, 0x91, 0xa4, 0x75, 0x40, 0x68, 0x2b, 0x61, 0xc3, 0x8d, 0x84, 0x1b, 0x09, 0x37, 0x12, - 0x6e, 0x24, 0xdc, 0xc8, 0x0d, 0xe7, 0x76, 0xde, 0x5d, 0x9f, 0x5c, 0x86, 0xfd, 0xd0, 0xe7, 0x4f, - 0xb4, 0xa9, 0x56, 0x82, 0xb9, 0x36, 0xb9, 0x3b, 0x59, 0xf8, 0xeb, 0xfd, 0xfb, 0x9b, 0x43, 0xe3, - 0xa4, 0xfb, 0x74, 0x53, 0x34, 0x4e, 0xba, 0x8b, 0x8f, 0xc5, 0xf9, 0x1f, 0x8b, 0xcf, 0xa5, 0x9b, - 0x43, 0xa3, 0xbc, 0xfa, 0x5c, 0xb9, 0x39, 0x34, 0x2a, 0xdd, 0xfd, 0x1f, 0x3f, 0x3e, 0xee, 0xff, - 0x3a, 0x9a, 0x86, 0xff, 0xe2, 0xc1, 0x72, 0xb2, 0xfd, 0xa7, 0xf7, 0x37, 0x45, 0xa3, 0xd4, 0x5d, - 0xfd, 0x9f, 0xa3, 0x9b, 0x43, 0xa3, 0xd4, 0xdd, 0xdf, 0xff, 0xa3, 0x00, 0x04, 0x96, 0x40, 0x04, - 0xb6, 0x4c, 0x05, 0x53, 0xda, 0x3f, 0x71, 0xab, 0x12, 0x78, 0x39, 0x39, 0xb0, 0x18, 0xb0, 0x18, - 0xb0, 0x18, 0xb0, 0x18, 0xb0, 0x18, 0xf9, 0xb9, 0x45, 0x4d, 0xbc, 0x84, 0xcf, 0xa0, 0xba, 0xac, - 0x7f, 0xcd, 0xb6, 0x1d, 0x61, 0x0a, 0x4e, 0x94, 0x8d, 0x5e, 0xf0, 0xfa, 0x3f, 0xd9, 0xc8, 0x5c, - 0x56, 0xe1, 0x2d, 0x1c, 0x38, 0x63, 0x66, 0xf7, 0xe7, 0x86, 0x72, 0xa6, 0x3f, 0x0e, 0x66, 0xff, - 0xb9, 0xfc, 0xf6, 0xc0, 0x1c, 0x72, 0xc3, 0x33, 0x87, 0xdc, 0xf3, 0x3f, 0x1d, 0xcc, 0xbd, 0x86, - 0x89, 0xcd, 0xfb, 0xa6, 0x27, 0x0e, 0x6c, 0xc6, 0xef, 0x7e, 0xde, 0x3a, 0xae, 0xe7, 0x7f, 0x3a, - 0x30, 0x07, 0x7f, 0xcf, 0xd5, 0x10, 0xb7, 0x8d, 0xb1, 0xe3, 0x89, 0x83, 0x45, 0xc3, 0xf9, 0xc5, - 0x1f, 0x8b, 0x72, 0x05, 0xe8, 0x79, 0x13, 0xdc, 0x8e, 0x89, 0xfd, 0x8f, 0xed, 0xfc, 0x6b, 0x1b, - 0xa6, 0x10, 0x2e, 0xbf, 0x9d, 0xb7, 0xe8, 0x27, 0x6b, 0x80, 0xb3, 0x61, 0x6e, 0x74, 0xc3, 0x49, - 0x2a, 0xe2, 0x43, 0x37, 0x9c, 0x6c, 0x22, 0x3a, 0x74, 0xc3, 0x89, 0xb4, 0x6a, 0x64, 0xdd, 0x70, - 0x02, 0x4a, 0x92, 0xde, 0x55, 0x0f, 0x3e, 0x02, 0xad, 0xc3, 0x5e, 0x84, 0xc3, 0x0e, 0x87, 0x1d, - 0x0e, 0x3b, 0x1c, 0xf6, 0xe4, 0x38, 0xec, 0x54, 0xea, 0xdf, 0x9f, 0x70, 0xde, 0xfb, 0x45, 0x50, - 0xd3, 0x04, 0x7b, 0x81, 0xde, 0x68, 0xf3, 0x47, 0x20, 0x16, 0x5d, 0x3d, 0x81, 0x3b, 0xe4, 0xe6, + 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, 0xff, 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xcf, 0x01, 0x84, + 0xe1, 0x84, 0x25, 0x89, 0xda, 0xc7, 0x83, 0x30, 0xb4, 0x9f, 0xb2, 0x6c, 0x7a, 0x08, 0x28, 0x22, + 0x50, 0x44, 0xa0, 0x88, 0x40, 0x11, 0x81, 0x22, 0x42, 0xbe, 0x6f, 0x71, 0xd2, 0xf2, 0xe2, 0xf7, + 0x4b, 0xdb, 0xc4, 0x99, 0xb7, 0xf6, 0xff, 0x71, 0xe2, 0x12, 0x71, 0xe8, 0xb9, 0x7d, 0x6f, 0x5a, + 0x7c, 0x60, 0xb8, 0xcc, 0xf4, 0x08, 0x4b, 0x42, 0x3e, 0x3b, 0x99, 0xeb, 0xfd, 0x83, 0x6b, 0x80, + 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0xd0, 0xcb, 0x7d, 0x03, 0x66, 0x0b, 0x2e, 0x1e, 0x35, + 0xf1, 0x0d, 0xc2, 0xf8, 0xda, 0x42, 0x63, 0xf9, 0xaa, 0x9f, 0x4d, 0x4f, 0x03, 0x64, 0xac, 0x06, + 0xbc, 0x71, 0xf1, 0xbd, 0xd6, 0x6c, 0x7c, 0xe9, 0x75, 0x5a, 0xd7, 0x57, 0xf5, 0x5e, 0xa7, 0x5e, + 0xbb, 0x6c, 0x5d, 0x50, 0xa3, 0xc7, 0x3c, 0xcc, 0xd9, 0xd3, 0x22, 0x73, 0x6a, 0x8a, 0x2b, 0x7f, + 0x3d, 0xfa, 0xb5, 0xcb, 0x5e, 0xb3, 0xd5, 0x6a, 0x17, 0xf2, 0x10, 0xd1, 0x9f, 0x90, 0x21, 0x3f, + 0x6b, 0x5d, 0x7c, 0xad, 0x7f, 0xc1, 0x88, 0xd3, 0x8d, 0x78, 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, + 0x5d, 0xb5, 0x3a, 0x18, 0x75, 0xc2, 0x75, 0xde, 0xbc, 0xbe, 0xbc, 0xaa, 0x77, 0x74, 0xe1, 0x0b, + 0x69, 0x8f, 0xdd, 0xac, 0xf1, 0xbd, 0x4c, 0x78, 0xf7, 0x96, 0xe9, 0x09, 0x63, 0xe4, 0x0c, 0xf8, + 0x90, 0xb3, 0x01, 0xbd, 0x73, 0xbf, 0xde, 0x3d, 0x7c, 0x7b, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, + 0xc3, 0xb7, 0x27, 0xdf, 0xb7, 0x82, 0x8f, 0x98, 0xe0, 0xfd, 0x7f, 0xbc, 0x6a, 0x59, 0x83, 0x6f, + 0x4f, 0x18, 0xc0, 0x53, 0xb8, 0xb6, 0x17, 0xb7, 0x64, 0x0b, 0xb6, 0x69, 0x3b, 0x1e, 0xeb, 0x3b, + 0xf6, 0x80, 0x34, 0x9a, 0x14, 0xf9, 0x08, 0xb2, 0x67, 0xe3, 0x37, 0xab, 0x26, 0xc8, 0x47, 0x40, + 0xbe, 0xe4, 0x90, 0x8f, 0x60, 0xaf, 0xf8, 0xa9, 0x5c, 0xae, 0x1e, 0x97, 0xcb, 0x87, 0xc7, 0x47, + 0xc7, 0x87, 0x27, 0x95, 0x4a, 0xb1, 0x5a, 0x44, 0x66, 0x82, 0xcc, 0xf5, 0x86, 0xb8, 0xb9, 0xdd, + 0x97, 0x21, 0x55, 0x55, 0x91, 0x00, 0xa9, 0xa2, 0xa9, 0x2e, 0xe2, 0x77, 0xfb, 0x85, 0x0d, 0xcd, + 0x89, 0x35, 0xa7, 0xe2, 0x87, 0xf0, 0xa5, 0xe1, 0x4b, 0xc3, 0x97, 0x86, 0x2f, 0x0d, 0x5f, 0x1a, + 0x69, 0xf5, 0xe0, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x0b, 0x37, 0x36, 0x55, 0x4b, 0x0e, 0x69, 0xf5, + 0xe0, 0xbc, 0xc2, 0x79, 0xdd, 0x2b, 0x2c, 0x83, 0x9f, 0x9d, 0x89, 0x60, 0xf4, 0x0e, 0xec, 0xcb, + 0xce, 0xe1, 0x50, 0xc2, 0xa1, 0x84, 0x43, 0x09, 0x87, 0x12, 0x0e, 0x25, 0xf9, 0xbe, 0xbd, 0x75, + 0x1c, 0x8b, 0x99, 0xb6, 0x8e, 0xa0, 0xeb, 0x62, 0x56, 0x4c, 0x75, 0xaa, 0x4b, 0xcc, 0xd5, 0x6c, + 0xdb, 0x11, 0xe6, 0x8c, 0x8d, 0xd2, 0x54, 0x9a, 0xf3, 0xfa, 0x3f, 0xd9, 0xc8, 0x1c, 0x2f, 0x2f, + 0xdd, 0x1d, 0x38, 0x63, 0x66, 0xf7, 0xe7, 0x86, 0x72, 0x86, 0x1f, 0x07, 0xb3, 0xff, 0x5c, 0x7e, + 0x7b, 0x60, 0x0e, 0xb9, 0xe1, 0x99, 0x43, 0xee, 0xf9, 0x9f, 0x0e, 0xe6, 0x69, 0x7c, 0x3c, 0x57, + 0x30, 0x63, 0xec, 0x58, 0xbc, 0xff, 0x78, 0x60, 0x33, 0x7e, 0xf7, 0xf3, 0xd6, 0x71, 0x3d, 0xff, + 0xd3, 0x81, 0x39, 0xf8, 0x7b, 0x0e, 0x45, 0xdc, 0x36, 0xc6, 0x2e, 0x3b, 0x98, 0xb3, 0x0b, 0x6f, + 0xf1, 0xc7, 0xe2, 0x8e, 0x1e, 0x4a, 0xb0, 0x06, 0x67, 0x64, 0x62, 0xff, 0x63, 0x3b, 0xff, 0xda, + 0x86, 0x29, 0x84, 0xcb, 0x6f, 0x67, 0x23, 0x46, 0x57, 0x8f, 0x75, 0x43, 0xdf, 0x28, 0xce, 0x9a, + 0x54, 0xd2, 0x87, 0xe2, 0xac, 0xd9, 0x24, 0x75, 0x28, 0xce, 0x1a, 0x69, 0xd4, 0xc8, 0x8a, 0xb3, + 0x06, 0x40, 0x92, 0xde, 0x5b, 0x0f, 0x3e, 0x02, 0xad, 0xcf, 0x5e, 0x84, 0xcf, 0x0e, 0x9f, 0x1d, + 0x3e, 0x3b, 0x7c, 0xf6, 0xe4, 0xf8, 0xec, 0x54, 0xf0, 0xef, 0x77, 0x38, 0x2f, 0x45, 0x2a, 0xa8, + 0x95, 0x82, 0xbd, 0x40, 0xa9, 0xee, 0xf9, 0x23, 0x10, 0x2f, 0x5d, 0x3d, 0x27, 0x47, 0xe4, 0xe6, 0x40, 0xa7, 0x59, 0x48, 0x86, 0x79, 0xd0, 0x6d, 0x26, 0x12, 0x63, 0x2e, 0x12, 0x63, 0x36, 0x12, - 0x63, 0x3e, 0x68, 0xcd, 0x08, 0xb1, 0x39, 0xf1, 0x57, 0xf9, 0x4a, 0x87, 0x82, 0xdf, 0xd3, 0x5b, - 0x02, 0x35, 0x80, 0xf6, 0x8f, 0x35, 0xcc, 0x1d, 0xe8, 0x92, 0xfd, 0x6c, 0xec, 0x32, 0x1a, 0xaa, - 0x48, 0x28, 0xda, 0x44, 0x8d, 0xb5, 0xb7, 0xca, 0x34, 0x45, 0xa3, 0x6d, 0xcd, 0xbe, 0x2b, 0x40, - 0x0b, 0x40, 0x0b, 0x40, 0x0b, 0x40, 0x8b, 0x0e, 0xd0, 0x42, 0xed, 0x0b, 0xaf, 0xfb, 0xc4, 0x16, - 0xd3, 0x98, 0xc5, 0xb4, 0xe6, 0x1a, 0xcf, 0x9e, 0xe4, 0x43, 0x2e, 0x53, 0x5b, 0x74, 0x19, 0x9d, - 0x24, 0x18, 0x9f, 0x64, 0x19, 0xa1, 0xa4, 0x18, 0xa3, 0xc4, 0x19, 0xa5, 0xc4, 0x19, 0xa7, 0xc4, - 0x19, 0x29, 0x3d, 0xc6, 0x4a, 0x93, 0xd1, 0xd2, 0xef, 0x71, 0x07, 0xf4, 0xc6, 0x84, 0xdb, 0xa2, - 0x58, 0xd5, 0xa9, 0x33, 0x96, 0x56, 0xa4, 0xaa, 0xf1, 0x11, 0xf4, 0x24, 0x5f, 0xbf, 0xfe, 0xa5, - 0x57, 0x67, 0xee, 0xe9, 0x4e, 0xce, 0x4e, 0x18, 0xbc, 0x08, 0x3c, 0x8e, 0xe6, 0xe4, 0xed, 0xc0, - 0xf3, 0x24, 0x20, 0xa1, 0x36, 0x21, 0xea, 0x74, 0x5d, 0x84, 0xcd, 0x07, 0x88, 0xf0, 0x1b, 0x22, - 0x5c, 0xad, 0x54, 0x8e, 0x2a, 0x10, 0xe3, 0x64, 0x61, 0x11, 0xfd, 0xb3, 0x77, 0xdf, 0xe5, 0xe3, - 0x7d, 0x75, 0xd4, 0xa0, 0xd0, 0x77, 0x93, 0xbe, 0x99, 0x36, 0xd0, 0x70, 0xa3, 0x0e, 0xde, 0x00, - 0xbc, 0x01, 0x78, 0x03, 0xf0, 0x06, 0xe0, 0x0d, 0x32, 0xc2, 0x1b, 0x7c, 0x4a, 0x00, 0x6d, 0x50, - 0x01, 0x6d, 0x00, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xca, 0x45, 0xb8, 0x54, 0x01, - 0x69, 0x00, 0xd2, 0x00, 0xa4, 0x01, 0x2d, 0x69, 0x70, 0xbf, 0x3c, 0x7d, 0x49, 0x60, 0x0d, 0x16, - 0xcf, 0x02, 0xda, 0x00, 0xb4, 0x01, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, 0x84, 0xd4, - 0x1b, 0xb7, 0xdc, 0x36, 0xdd, 0xc7, 0x04, 0xf0, 0x06, 0x27, 0x1a, 0x1f, 0xa1, 0xc9, 0xec, 0xbb, - 0x79, 0xe0, 0x3f, 0x88, 0x03, 0x10, 0x07, 0x6f, 0x7a, 0x5d, 0x45, 0xf8, 0x5c, 0x20, 0x0e, 0xd2, - 0x2d, 0xc2, 0x88, 0x37, 0x00, 0x75, 0x00, 0xea, 0x80, 0x54, 0xcc, 0xd9, 0x83, 0x60, 0xf6, 0x80, - 0xb0, 0x1f, 0xf8, 0x56, 0xc8, 0xe7, 0x3f, 0x09, 0x68, 0x03, 0xd0, 0x06, 0xa0, 0x0d, 0x40, 0x1b, - 0x80, 0x36, 0x00, 0x6d, 0x10, 0x96, 0x36, 0x20, 0xaf, 0x17, 0xbb, 0xcd, 0x8c, 0x10, 0xd5, 0x8f, - 0xcd, 0x27, 0x68, 0x71, 0xc6, 0x33, 0x64, 0x6e, 0x5a, 0xfa, 0x41, 0x8b, 0xff, 0x24, 0x00, 0x2d, - 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0xc1, 0x35, - 0x1e, 0x9b, 0xae, 0xe0, 0x49, 0xc0, 0x2c, 0xab, 0x07, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, - 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x09, 0xae, 0xb1, 0x70, 0x4d, 0xdb, 0xe3, - 0x82, 0xdf, 0x27, 0x20, 0xae, 0xf4, 0xc5, 0xb3, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, - 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x24, 0x1e, 0xb8, 0x64, 0xba, 0xbc, 0x28, 0x71, 0x83, 0xc2, - 0xc0, 0xfc, 0x7a, 0x1a, 0x16, 0x06, 0x7b, 0xe3, 0x05, 0xff, 0x8a, 0xa2, 0xab, 0xa1, 0x3e, 0x59, - 0xcb, 0x56, 0xc3, 0x98, 0x3f, 0xd9, 0xa3, 0x8e, 0x8a, 0x2f, 0x85, 0x26, 0xf7, 0x44, 0x4d, 0x08, - 0xe2, 0x6e, 0x35, 0xe7, 0xdc, 0xae, 0x5b, 0x6c, 0x06, 0x07, 0xbc, 0xc2, 0xe9, 0x9e, 0x3d, 0xb1, - 0x2c, 0xc2, 0x6a, 0xf3, 0xe7, 0xe6, 0x83, 0xbe, 0xc9, 0x5b, 0xee, 0x80, 0xb9, 0x6c, 0x70, 0xf6, - 0xb8, 0x9c, 0x3a, 0x53, 0x42, 0xac, 0x49, 0x15, 0x27, 0x58, 0x05, 0x17, 0x48, 0xbb, 0x28, 0xb8, - 0x93, 0xbe, 0xb0, 0x97, 0x38, 0xeb, 0xec, 0x6e, 0xdc, 0xeb, 0xf0, 0xdb, 0x5e, 0x6d, 0xc8, 0x2f, - 0xcd, 0x21, 0xef, 0x35, 0xc6, 0xf7, 0xe5, 0xeb, 0xc5, 0x9b, 0xf6, 0x2e, 0x96, 0xef, 0xd7, 0xab, - 0x0d, 0xfe, 0xee, 0xfc, 0xff, 0xec, 0x7d, 0x5f, 0x53, 0x22, 0x49, 0xf3, 0xf5, 0xfd, 0x7c, 0x0a, - 0x83, 0xd8, 0x0b, 0x8d, 0x98, 0x1e, 0x01, 0xf9, 0x23, 0xde, 0x31, 0x3b, 0xce, 0x06, 0xb1, 0x2a, - 0x06, 0xea, 0xbc, 0xf1, 0x0b, 0x97, 0x25, 0x5a, 0x28, 0xdd, 0xda, 0xc1, 0x6a, 0xa2, 0xbb, 0xf0, - 0xd1, 0x18, 0xf9, 0xee, 0x6f, 0x40, 0x43, 0x2b, 0x36, 0xec, 0x8c, 0x50, 0x95, 0x59, 0x34, 0x67, - 0x62, 0x9e, 0x67, 0x58, 0x05, 0xaa, 0xbb, 0x3a, 0x2b, 0xcf, 0x39, 0x59, 0x59, 0x99, 0xf2, 0xa6, - 0xa1, 0xce, 0x83, 0x48, 0x77, 0x5a, 0xe3, 0xbb, 0xea, 0x5c, 0xc5, 0xb7, 0x50, 0x4f, 0xee, 0x00, - 0x5d, 0x98, 0xf9, 0x57, 0xd8, 0x96, 0x74, 0x61, 0x5e, 0xd0, 0xf0, 0x77, 0x53, 0x5b, 0x32, 0x7f, - 0xd8, 0x20, 0x2b, 0x9b, 0x91, 0x8f, 0x38, 0x72, 0xb1, 0x33, 0x7e, 0xea, 0x9e, 0xb4, 0x95, 0x05, - 0x4e, 0xc3, 0x38, 0x48, 0x19, 0x06, 0x29, 0xa3, 0xa0, 0x61, 0x10, 0xb6, 0x2c, 0x8d, 0xc8, 0x8f, - 0xf1, 0xf8, 0x2f, 0x8b, 0x60, 0x6f, 0x06, 0xdc, 0xed, 0x78, 0x53, 0xf3, 0xbe, 0xce, 0xec, 0x37, - 0x1a, 0xb6, 0x65, 0xdb, 0x36, 0x4c, 0x6d, 0xbb, 0x66, 0x8d, 0xc2, 0xdc, 0xa3, 0x33, 0xf8, 0xd8, - 0x2c, 0x35, 0x18, 0xb3, 0xda, 0x40, 0xcc, 0x52, 0x83, 0xb0, 0x97, 0x4d, 0xac, 0xa2, 0xe1, 0x2f, - 0xb6, 0xb8, 0x39, 0x45, 0xb3, 0xe9, 0x64, 0x7b, 0x33, 0x89, 0x6c, 0x93, 0x88, 0x6c, 0xf3, 0x87, - 0x6c, 0x53, 0x07, 0x80, 0x40, 0x02, 0x08, 0x16, 0xe2, 0xc5, 0x06, 0xf1, 0xe0, 0x83, 0x43, 0xcf, - 0xde, 0xd6, 0x33, 0x27, 0x7b, 0xd6, 0x39, 0xa3, 0xe8, 0xba, 0x16, 0x37, 0x35, 0x63, 0x70, 0xeb, - 0x9b, 0x87, 0x01, 0xd3, 0xc8, 0xbd, 0x9e, 0xe5, 0xd0, 0x1c, 0x94, 0xbc, 0xd4, 0x76, 0x9b, 0xff, - 0x7e, 0x43, 0xc6, 0x6c, 0x96, 0x6a, 0x18, 0xcf, 0x93, 0xb1, 0x41, 0x2d, 0xec, 0x52, 0x0a, 0x5b, - 0x54, 0xc2, 0x3a, 0x85, 0xb0, 0x4e, 0x1d, 0xac, 0x53, 0x06, 0xb7, 0x60, 0xc2, 0x74, 0xef, 0xcb, - 0xdc, 0x54, 0xb3, 0x59, 0x93, 0x32, 0xd3, 0xef, 0x87, 0x96, 0x81, 0x96, 0x81, 0x96, 0xd9, 0x42, - 0x2d, 0x63, 0xab, 0x59, 0x6f, 0xec, 0x58, 0xec, 0xd9, 0xe3, 0x9c, 0xff, 0xb2, 0x65, 0x8b, 0x76, - 0x7b, 0xb6, 0x5b, 0xcf, 0x2f, 0xa6, 0xc8, 0x1f, 0xa6, 0xcd, 0x0f, 0xa6, 0xca, 0xff, 0x25, 0xcf, - 0xef, 0x25, 0xcf, 0xdf, 0x25, 0xcf, 0xcf, 0xdd, 0xac, 0x1d, 0x52, 0xdb, 0x3d, 0xcc, 0x73, 0xb3, - 0x4d, 0x57, 0xeb, 0x96, 0xfc, 0x72, 0x06, 0xd5, 0xe6, 0x2e, 0xef, 0x5b, 0x97, 0x69, 0xf9, 0xc4, - 0x04, 0xd9, 0xd1, 0x0c, 0xca, 0x23, 0x18, 0x3c, 0x47, 0x2d, 0xa8, 0x8f, 0x54, 0xb0, 0x1d, 0x9d, - 0x60, 0x3b, 0x22, 0xc1, 0x76, 0x14, 0x62, 0xb3, 0x53, 0xa0, 0xc8, 0x8e, 0x30, 0x24, 0xeb, 0xae, + 0x63, 0x3e, 0x68, 0xcd, 0x08, 0xb1, 0x39, 0xf1, 0x47, 0xf9, 0x4a, 0x07, 0xc0, 0xef, 0xe9, 0xcd, + 0xfb, 0x15, 0x60, 0xfb, 0xc7, 0x7a, 0xb2, 0xee, 0xae, 0xf2, 0x80, 0x2d, 0xd2, 0x79, 0x3d, 0x1b, + 0xbb, 0x8c, 0x9e, 0x95, 0x13, 0x2e, 0xed, 0xc2, 0x42, 0x7d, 0xd5, 0x46, 0x5c, 0x16, 0xdd, 0xeb, + 0x21, 0x2d, 0x45, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x96, 0xec, 0x92, 0x16, 0x6a, 0x5f, + 0x78, 0xdd, 0x27, 0xb6, 0x98, 0xc6, 0x30, 0xda, 0x35, 0xd7, 0x78, 0xf6, 0x24, 0x1f, 0x72, 0x19, + 0x5b, 0xa9, 0xcb, 0xe8, 0x24, 0xc1, 0xf8, 0x24, 0xcb, 0x08, 0x25, 0xc5, 0x18, 0x25, 0xce, 0x28, + 0x25, 0xce, 0x38, 0x25, 0xce, 0x48, 0xe9, 0x31, 0x56, 0x9a, 0x8c, 0x96, 0x7e, 0x8f, 0x3b, 0x80, + 0x1b, 0x13, 0x6e, 0x8b, 0x62, 0x55, 0x27, 0x66, 0x2c, 0xad, 0x48, 0x55, 0xe3, 0x23, 0xe8, 0xb9, + 0xfd, 0xf3, 0xfa, 0x97, 0x5e, 0xcc, 0xdc, 0xd3, 0x7d, 0x3b, 0x28, 0x61, 0xf4, 0x22, 0xf0, 0x38, + 0x9a, 0x6f, 0x0f, 0x05, 0x9e, 0x27, 0x01, 0x37, 0x3a, 0x12, 0x02, 0xa7, 0xeb, 0x4b, 0xd8, 0x7c, + 0xc0, 0x12, 0x7e, 0x63, 0x09, 0x57, 0x2b, 0x95, 0xa3, 0x0a, 0x96, 0x71, 0xb2, 0xb8, 0x88, 0xfe, + 0xde, 0xbb, 0xef, 0xf2, 0xf1, 0xbe, 0x3a, 0x2e, 0x41, 0xea, 0x3b, 0x49, 0xdf, 0x2c, 0x1b, 0x68, + 0x38, 0x51, 0x87, 0x6e, 0x00, 0xdd, 0x00, 0xba, 0x01, 0x74, 0x03, 0xe8, 0x06, 0x19, 0xd1, 0x0d, + 0x3e, 0x25, 0x40, 0x36, 0xa8, 0x40, 0x36, 0x80, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, + 0xe5, 0x4b, 0xb8, 0x54, 0x81, 0x68, 0x00, 0xd1, 0x00, 0xa2, 0x01, 0xad, 0x68, 0x70, 0xbf, 0xdc, + 0x7d, 0x49, 0x50, 0x0d, 0x16, 0xcf, 0x02, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, 0xc8, 0x06, 0x90, + 0x0d, 0x20, 0x1b, 0x84, 0xc4, 0x8d, 0x5b, 0x6e, 0x9b, 0xee, 0x63, 0x02, 0x74, 0x83, 0x13, 0x8d, + 0x8f, 0xd0, 0x64, 0xf6, 0xdd, 0x3c, 0xf0, 0x1f, 0xc2, 0x01, 0x84, 0x83, 0x37, 0xbd, 0xae, 0x22, + 0x7c, 0x2e, 0x08, 0x07, 0xe9, 0x5e, 0xc2, 0x88, 0x37, 0x80, 0x74, 0x00, 0xe9, 0x80, 0x74, 0x99, + 0xb3, 0x07, 0xc1, 0xec, 0x01, 0x61, 0x11, 0xcc, 0xad, 0x94, 0xcf, 0x7f, 0x12, 0xc8, 0x06, 0x90, + 0x0d, 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x00, 0xd9, 0x20, 0xac, 0x6c, 0x40, 0x9e, 0x32, 0x76, + 0x9b, 0x19, 0x21, 0x4a, 0x21, 0x9b, 0x4f, 0xd2, 0xe2, 0x8c, 0x67, 0xcc, 0xdc, 0xb4, 0xf4, 0x93, + 0x16, 0xff, 0x49, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, + 0x5a, 0x40, 0x5a, 0x82, 0x63, 0x3c, 0x36, 0x5d, 0xc1, 0x93, 0xc0, 0x59, 0x56, 0x0f, 0x02, 0xca, + 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x12, 0x1c, + 0x63, 0xe1, 0x9a, 0xb6, 0xc7, 0x05, 0xbf, 0x4f, 0x40, 0x5c, 0xe9, 0x8b, 0x67, 0x01, 0x71, 0x01, + 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x49, 0x3c, 0x71, 0xc9, 0x74, + 0x7a, 0x51, 0xe2, 0x1a, 0x85, 0x81, 0xfe, 0xb5, 0xd5, 0x2c, 0x0c, 0x96, 0xc7, 0x0b, 0xfe, 0x15, + 0x45, 0x61, 0x43, 0x7d, 0xcb, 0x2d, 0x5b, 0x35, 0x63, 0xfe, 0x64, 0x8f, 0x3a, 0x92, 0xbe, 0x14, + 0x9a, 0xdc, 0x13, 0x35, 0x21, 0x88, 0x0b, 0xd6, 0x9c, 0x73, 0xbb, 0x6e, 0xb1, 0x19, 0x23, 0xf0, + 0x0a, 0xa7, 0x7b, 0xf6, 0xc4, 0xb2, 0x08, 0x13, 0xce, 0x9f, 0x9b, 0x0f, 0xfa, 0x3a, 0x6f, 0xb9, + 0x03, 0xe6, 0xb2, 0xc1, 0xe7, 0xc7, 0x65, 0xd7, 0x99, 0x5a, 0xc4, 0x9a, 0xd0, 0x38, 0xd9, 0x28, + 0x5c, 0x20, 0xad, 0xa5, 0xe0, 0x4e, 0xfa, 0xc2, 0x5e, 0xb2, 0xad, 0xcf, 0x77, 0xe3, 0x5e, 0x87, + 0xdf, 0xf6, 0x6a, 0x43, 0x7e, 0x69, 0x0e, 0x79, 0xaf, 0x31, 0xbe, 0x2f, 0x5f, 0xba, 0x82, 0xb5, + 0xe7, 0xef, 0xda, 0xbb, 0x58, 0xbe, 0x61, 0xaf, 0x36, 0xf8, 0xbb, 0xc3, 0x6f, 0x1b, 0x76, 0xdb, + 0x65, 0xbd, 0xce, 0xec, 0xbd, 0x7a, 0xd7, 0x8b, 0x97, 0xa8, 0xf9, 0xef, 0x80, 0x82, 0xcc, 0xfa, + 0xb7, 0x59, 0x7e, 0x0a, 0x32, 0x6f, 0xa8, 0xfd, 0x9b, 0xd6, 0xea, 0xcc, 0xef, 0x52, 0xb4, 0xd0, + 0x56, 0x24, 0x64, 0x36, 0xe3, 0x06, 0x1f, 0xec, 0x31, 0x7b, 0x30, 0x76, 0xb8, 0x2d, 0xf6, 0xfa, + 0x8e, 0xe5, 0xb8, 0x8a, 0x70, 0x8c, 0x86, 0x81, 0x90, 0x32, 0x0e, 0x52, 0x86, 0x41, 0xc3, 0x28, + 0x54, 0xad, 0x38, 0x22, 0x48, 0xd3, 0x06, 0x65, 0x0a, 0x8d, 0xbf, 0x2c, 0x63, 0xaf, 0x06, 0x5a, + 0xe5, 0x03, 0x9f, 0xdc, 0x16, 0x25, 0x2f, 0x68, 0xd5, 0x0b, 0x59, 0xc3, 0x02, 0x96, 0xbb, 0x2e, + 0xe4, 0xcd, 0x9e, 0x9c, 0x96, 0x24, 0xcd, 0xbf, 0xaa, 0x79, 0xa7, 0x9c, 0x6f, 0x89, 0x18, 0x15, + 0x1f, 0x93, 0xe4, 0xac, 0xba, 0xf8, 0x6b, 0x44, 0xc2, 0xfa, 0x28, 0xac, 0x86, 0xd9, 0x99, 0x08, + 0x63, 0xec, 0x78, 0x42, 0xda, 0x0a, 0x79, 0xce, 0xf6, 0xf3, 0xba, 0x07, 0x49, 0xab, 0x5a, 0x6e, + 0x7d, 0x3a, 0xe9, 0x67, 0xa7, 0x2a, 0xce, 0x42, 0xd5, 0x9e, 0x6d, 0xaa, 0x3a, 0xab, 0x54, 0x7e, + 0xf6, 0xa8, 0xfc, 0x2c, 0x51, 0xf9, 0xd9, 0x60, 0xb2, 0xec, 0x85, 0xec, 0x7a, 0x68, 0x85, 0xa5, + 0xb1, 0x96, 0xbe, 0xb0, 0x56, 0xdb, 0x61, 0xd9, 0xbe, 0xe4, 0x49, 0x57, 0x53, 0x00, 0x53, 0x59, + 0x90, 0x86, 0xca, 0xe0, 0x0b, 0x9a, 0xa0, 0x0a, 0xd5, 0xc1, 0x12, 0x64, 0x41, 0x10, 0x64, 0xc1, + 0x0d, 0x64, 0x41, 0x0b, 0xc9, 0x76, 0x6c, 0x54, 0x15, 0x70, 0x5c, 0x00, 0x8b, 0xba, 0xf5, 0xb8, + 0x86, 0x5f, 0xaa, 0xd6, 0xa2, 0xda, 0x3a, 0xbe, 0xca, 0x63, 0xce, 0x28, 0x62, 0xca, 0x68, 0x63, + 0xc6, 0xa8, 0x62, 0xc2, 0xc8, 0x63, 0xbe, 0xc8, 0x63, 0xba, 0xc8, 0x63, 0xb6, 0xd2, 0x25, 0x95, + 0xab, 0xae, 0x6b, 0x5b, 0x58, 0x68, 0xee, 0xca, 0xd7, 0xf1, 0x6a, 0x77, 0xaa, 0x94, 0xf8, 0x5f, + 0xc3, 0xa5, 0xe2, 0x08, 0x5a, 0xb2, 0x50, 0x5d, 0xca, 0x90, 0x5c, 0x3d, 0xa1, 0xb7, 0xd4, 0x21, + 0xb6, 0xda, 0x42, 0x69, 0xb5, 0x85, 0xcc, 0x6a, 0x0b, 0x8d, 0x4d, 0xf7, 0x51, 0x38, 0x59, 0x48, + 0xab, 0xbf, 0xef, 0x2c, 0x66, 0x0e, 0x5d, 0x36, 0xa4, 0xd8, 0x74, 0x2b, 0x56, 0x79, 0x4c, 0xd0, + 0x57, 0x7b, 0xa9, 0x30, 0x7f, 0xfc, 0xb8, 0x88, 0x16, 0x3c, 0x58, 0x18, 0x82, 0xb4, 0x1e, 0xb7, + 0x2b, 0x64, 0x96, 0xab, 0xd3, 0x70, 0x3a, 0x9b, 0xec, 0xf7, 0x08, 0xb3, 0x0c, 0xb3, 0x0c, 0xb3, + 0x0c, 0xb3, 0x0c, 0xb3, 0x9c, 0x5b, 0xb3, 0xec, 0xdb, 0x02, 0x58, 0xe6, 0xc0, 0x60, 0x2d, 0xe3, + 0xd5, 0xe8, 0x0c, 0xf3, 0xaa, 0x43, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0x65, 0xd8, 0xe5, + 0xdc, 0xda, 0xe5, 0x95, 0x29, 0x80, 0x59, 0x0e, 0x8c, 0xd5, 0xe2, 0xf6, 0x21, 0x99, 0x51, 0x5e, + 0x74, 0x47, 0x63, 0x92, 0x8b, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, 0x30, 0xc9, 0xd1, 0x47, 0x4d, + 0xf5, 0x01, 0xa2, 0xdf, 0xd1, 0xfc, 0x4a, 0x31, 0xb7, 0x07, 0x8c, 0x2e, 0x77, 0xcc, 0x7a, 0x35, + 0xca, 0x45, 0xdf, 0x54, 0xf7, 0xa8, 0x49, 0xb3, 0x04, 0x91, 0x67, 0x05, 0xd2, 0x91, 0x05, 0x48, + 0x6f, 0xd6, 0x1f, 0x5d, 0x59, 0x7e, 0xb4, 0x67, 0xf5, 0xd1, 0x9e, 0xc5, 0x47, 0x7b, 0xd6, 0x9e, + 0x6c, 0x65, 0x78, 0x20, 0xcf, 0xc2, 0xa3, 0xc1, 0x17, 0xd3, 0xe1, 0x93, 0x6d, 0xf2, 0xcd, 0x7e, + 0xf3, 0x7b, 0x6e, 0x92, 0x3c, 0x26, 0x3c, 0xff, 0xd3, 0xd2, 0x93, 0x5b, 0x98, 0xa9, 0xac, 0x5c, + 0x74, 0x27, 0x60, 0xd6, 0x34, 0x11, 0x4a, 0x81, 0xd5, 0x4c, 0x11, 0xa9, 0x04, 0x3a, 0x01, 0x3a, + 0x01, 0x3a, 0x01, 0x3a, 0x01, 0x3a, 0xb1, 0x61, 0xdf, 0x4e, 0xb8, 0x2d, 0x8e, 0x4a, 0x1a, 0xd8, + 0x04, 0x25, 0x99, 0xe8, 0x98, 0xf6, 0x1d, 0x23, 0xaf, 0xfd, 0xac, 0x21, 0x83, 0x9d, 0xce, 0xda, + 0xce, 0xba, 0x73, 0xfa, 0xae, 0x0a, 0xdf, 0xea, 0xea, 0x3f, 0x01, 0x45, 0x6e, 0x75, 0xe4, 0xb5, + 0xd6, 0x59, 0x8b, 0x39, 0x29, 0x4b, 0xae, 0x5c, 0x3a, 0x29, 0x9f, 0x54, 0x8f, 0x4b, 0x27, 0x95, + 0x1c, 0xaf, 0xbd, 0x8c, 0x66, 0xa6, 0xec, 0xc2, 0x89, 0x0c, 0xe1, 0x44, 0x8e, 0x46, 0x13, 0x9b, + 0x8b, 0x47, 0x5d, 0x12, 0xf5, 0xeb, 0x07, 0x80, 0x63, 0x09, 0xc7, 0x12, 0x8e, 0x25, 0x1c, 0x4b, + 0x38, 0x96, 0xe4, 0xfb, 0x16, 0x3a, 0xf5, 0x8b, 0xdf, 0x2b, 0xbb, 0xc4, 0x99, 0xe7, 0x7f, 0x7e, + 0x84, 0x54, 0x1d, 0x6d, 0xc8, 0xc9, 0xee, 0xee, 0x04, 0xd6, 0x34, 0xd1, 0x1d, 0x1e, 0xf0, 0x0a, + 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x8a, 0x0d, 0xfb, 0x96, 0x8f, 0x0d, 0x73, 0x30, 0x70, + 0x99, 0xe7, 0xe9, 0xa0, 0x16, 0x27, 0x84, 0x7d, 0x2e, 0xc7, 0x38, 0xf3, 0xa2, 0xf5, 0xf3, 0xcc, + 0xde, 0x97, 0x35, 0xcc, 0x6d, 0x60, 0x8e, 0x3f, 0x69, 0xe8, 0xbb, 0x6d, 0x0a, 0xc1, 0x5c, 0x9b, + 0x7c, 0xba, 0xfd, 0x07, 0xf8, 0xeb, 0xfd, 0xfb, 0x9b, 0x43, 0xe3, 0xa4, 0xfb, 0x74, 0x53, 0x34, + 0x4e, 0xba, 0x8b, 0x8f, 0xc5, 0xf9, 0x1f, 0x8b, 0xcf, 0xa5, 0x9b, 0x43, 0xa3, 0xbc, 0xfa, 0x5c, + 0xb9, 0x39, 0x34, 0x2a, 0xdd, 0xfd, 0x1f, 0x3f, 0x3e, 0xee, 0xff, 0x3a, 0x9a, 0x86, 0xff, 0xe2, + 0x1f, 0xf4, 0xc5, 0xc2, 0xba, 0x59, 0xae, 0x9c, 0xa4, 0x77, 0xd3, 0x56, 0xb1, 0x69, 0xf5, 0x6e, + 0x5a, 0xd3, 0x18, 0xd6, 0x8c, 0xaf, 0xdd, 0x5f, 0xc5, 0x0f, 0xe5, 0xe9, 0xe9, 0xfe, 0xaf, 0xe3, + 0xe9, 0xeb, 0xbf, 0x7c, 0xda, 0xf4, 0x63, 0xc5, 0x0f, 0xc7, 0xd3, 0xd3, 0x2d, 0xff, 0x52, 0x9d, + 0x9e, 0xee, 0xd8, 0x46, 0x65, 0xfa, 0x3e, 0xf0, 0xa3, 0xb3, 0xbf, 0x2f, 0x6d, 0xfb, 0x42, 0x79, + 0xcb, 0x17, 0x8e, 0xb6, 0x7d, 0xe1, 0x68, 0xcb, 0x17, 0xb6, 0x3e, 0x52, 0x69, 0xcb, 0x17, 0x2a, + 0xd3, 0xa7, 0xc0, 0xcf, 0xbf, 0xdf, 0xfc, 0xa3, 0xd5, 0xe9, 0xfe, 0xd3, 0xb6, 0x7f, 0x3b, 0x9e, + 0x3e, 0x9d, 0xee, 0xe7, 0x00, 0xc2, 0x70, 0xc2, 0x92, 0x44, 0xed, 0xe3, 0x41, 0x18, 0xda, 0x4f, + 0x59, 0x36, 0x3d, 0x04, 0x14, 0x11, 0x28, 0x22, 0x50, 0x44, 0xa0, 0x88, 0x40, 0x11, 0x21, 0xdf, + 0xb7, 0x38, 0x69, 0x79, 0xf1, 0xfb, 0xa5, 0x6d, 0xe2, 0xcc, 0x5b, 0xfb, 0xff, 0x38, 0x71, 0x89, + 0x38, 0xf4, 0xdc, 0xbe, 0x37, 0x2d, 0x3e, 0x30, 0x5c, 0x66, 0x7a, 0x84, 0xe5, 0x20, 0x9f, 0x9d, + 0xcc, 0xf5, 0xfe, 0xc1, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xe8, 0xe5, 0xbe, + 0x01, 0xb3, 0x05, 0x17, 0x8f, 0x9a, 0xf8, 0x06, 0x61, 0x7c, 0x6d, 0xa1, 0xb1, 0x7c, 0xd5, 0xcf, + 0xa6, 0xa7, 0x01, 0x32, 0x56, 0x03, 0xde, 0xb8, 0xf8, 0x5e, 0x6b, 0x36, 0xbe, 0xf4, 0x3a, 0xad, + 0xeb, 0xab, 0x7a, 0xaf, 0x53, 0xaf, 0x5d, 0xb6, 0x2e, 0xa8, 0xd1, 0x63, 0x1e, 0xe6, 0xec, 0x69, + 0x91, 0x39, 0x35, 0xc5, 0x95, 0xbf, 0x1e, 0xfd, 0xda, 0x65, 0xaf, 0xd9, 0x6a, 0xb5, 0x0b, 0x79, + 0x88, 0xe8, 0x4f, 0xc8, 0x90, 0x9f, 0xb5, 0x2e, 0xbe, 0xd6, 0xbf, 0x60, 0xc4, 0xe9, 0x46, 0xbc, + 0xd5, 0x69, 0x7c, 0x6b, 0x5c, 0xd4, 0xae, 0x5a, 0x1d, 0x8c, 0x3a, 0xe1, 0x3a, 0x6f, 0x5e, 0x5f, + 0x5e, 0xd5, 0x3b, 0xba, 0xf0, 0x85, 0xb4, 0xc7, 0x6e, 0xd6, 0xf8, 0x5e, 0x26, 0xbc, 0x7b, 0xcb, + 0xf4, 0x84, 0x31, 0x72, 0x06, 0x7c, 0xc8, 0xd9, 0x80, 0xde, 0xb9, 0x5f, 0xef, 0x1e, 0xbe, 0x3d, + 0x7c, 0x7b, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, 0x93, 0xef, 0x5b, 0xc1, 0x47, 0x4c, 0xf0, 0xfe, + 0x3f, 0x5e, 0xb5, 0xac, 0xc1, 0xb7, 0x27, 0x0c, 0xe0, 0x29, 0x5c, 0xdb, 0x8b, 0x5b, 0xb2, 0x05, + 0xdb, 0xb4, 0x1d, 0x8f, 0xf5, 0x1d, 0x7b, 0x40, 0x1a, 0x4d, 0x8a, 0x7c, 0x04, 0xd9, 0xb3, 0xf1, + 0x9b, 0x55, 0x13, 0xe4, 0x23, 0x20, 0x5f, 0x72, 0xc8, 0x47, 0xb0, 0x57, 0xfc, 0x54, 0x2e, 0x57, + 0x8f, 0xcb, 0xe5, 0xc3, 0xe3, 0xa3, 0xe3, 0xc3, 0x93, 0x4a, 0xa5, 0x58, 0x2d, 0x22, 0x33, 0x41, + 0xe6, 0x7a, 0x43, 0xdc, 0xdc, 0xee, 0xcb, 0x90, 0xaa, 0xaa, 0x48, 0x80, 0x54, 0xd1, 0x54, 0x17, + 0xf1, 0xbb, 0xfd, 0xc2, 0x86, 0xe6, 0xc4, 0x9a, 0x53, 0xf1, 0x43, 0xf8, 0xd2, 0xf0, 0xa5, 0xe1, + 0x4b, 0xc3, 0x97, 0x86, 0x2f, 0x8d, 0xb4, 0x7a, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, + 0x9b, 0xaa, 0x25, 0x87, 0xb4, 0x7a, 0x70, 0x5e, 0xe1, 0xbc, 0xee, 0x15, 0x96, 0xc1, 0xcf, 0xce, + 0x44, 0x30, 0x7a, 0x07, 0xf6, 0x65, 0xe7, 0x70, 0x28, 0xe1, 0x50, 0xc2, 0xa1, 0x84, 0x43, 0x09, + 0x87, 0x92, 0x7c, 0xdf, 0xde, 0x3a, 0x8e, 0xc5, 0x4c, 0x5b, 0x47, 0xd0, 0x75, 0x31, 0x2b, 0xa6, + 0x3a, 0xd5, 0x25, 0xe6, 0x6a, 0xb6, 0xed, 0x08, 0x73, 0xc6, 0x46, 0x69, 0x2a, 0xcd, 0x79, 0xfd, + 0x9f, 0x6c, 0x64, 0x8e, 0x97, 0x97, 0xee, 0x0e, 0x9c, 0x31, 0xb3, 0xfb, 0x73, 0x43, 0x39, 0xc3, + 0x8f, 0x83, 0xd9, 0x7f, 0x2e, 0xbf, 0x3d, 0x30, 0x87, 0xdc, 0xf0, 0xcc, 0x21, 0xf7, 0xfc, 0x4f, + 0x07, 0xf3, 0x34, 0x3e, 0x9e, 0x2b, 0x98, 0x31, 0x76, 0x2c, 0xde, 0x7f, 0x3c, 0xb0, 0x19, 0xbf, + 0xfb, 0x79, 0xeb, 0xb8, 0x9e, 0xff, 0xe9, 0xc0, 0x1c, 0xfc, 0x3d, 0x87, 0x22, 0x67, 0x22, 0x8c, + 0xb1, 0xe3, 0x89, 0x83, 0x39, 0xbf, 0xf0, 0x16, 0x7f, 0x2c, 0x6e, 0xe9, 0xa1, 0x08, 0x6b, 0x70, + 0x4e, 0x26, 0xf6, 0x3f, 0xb6, 0xf3, 0xaf, 0x6d, 0x98, 0x42, 0xb8, 0xfc, 0x76, 0x36, 0x62, 0x74, + 0x15, 0x59, 0x37, 0xf4, 0x8d, 0xf2, 0xac, 0x49, 0xa5, 0x7d, 0x28, 0xcf, 0x9a, 0x4d, 0x5a, 0x87, + 0xf2, 0xac, 0x91, 0x46, 0x8d, 0xac, 0x3c, 0x6b, 0x00, 0x24, 0xe9, 0xfd, 0xf5, 0xe0, 0x23, 0xd0, + 0x7a, 0xed, 0x45, 0x78, 0xed, 0xf0, 0xda, 0xe1, 0xb5, 0xc3, 0x6b, 0x4f, 0x8e, 0xd7, 0x4e, 0x05, + 0xff, 0x7e, 0x87, 0xf3, 0x62, 0xa4, 0x82, 0x5a, 0x2b, 0xd8, 0x0b, 0x14, 0xeb, 0x9e, 0x3f, 0x02, + 0xf1, 0xd2, 0xd5, 0x73, 0x76, 0x44, 0x6e, 0x0e, 0x74, 0x9a, 0x85, 0x64, 0x98, 0x07, 0xdd, 0x66, + 0x22, 0x31, 0xe6, 0x22, 0x31, 0x66, 0x23, 0x31, 0xe6, 0x83, 0xd6, 0x8c, 0x10, 0x9b, 0x13, 0x7f, + 0x94, 0xaf, 0x74, 0x00, 0xfc, 0x9e, 0xde, 0xcc, 0x5f, 0x01, 0xb6, 0x7f, 0xac, 0x27, 0xef, 0xee, + 0x2a, 0x13, 0xd8, 0x22, 0xa1, 0xd7, 0xb3, 0xb1, 0xcb, 0xe8, 0x69, 0x39, 0xe1, 0xd2, 0x2e, 0x2c, + 0xd4, 0x57, 0x6d, 0xc4, 0x65, 0xd1, 0xbd, 0x1e, 0xd2, 0x52, 0x04, 0x69, 0x01, 0x69, 0x01, 0x69, + 0x01, 0x69, 0xc9, 0x2e, 0x69, 0xa1, 0xf6, 0x85, 0xd7, 0x7d, 0x62, 0x8b, 0x69, 0x0c, 0xa4, 0x5d, + 0x73, 0x8d, 0x67, 0x4f, 0xf2, 0x21, 0x97, 0xd1, 0x95, 0xba, 0x8c, 0x4e, 0x12, 0x8c, 0x4f, 0xb2, + 0x8c, 0x50, 0x52, 0x8c, 0x51, 0xe2, 0x8c, 0x52, 0xe2, 0x8c, 0x53, 0xe2, 0x8c, 0x94, 0x1e, 0x63, + 0xa5, 0xc9, 0x68, 0xe9, 0xf7, 0xb8, 0x03, 0xb8, 0x31, 0xe1, 0xb6, 0x28, 0x56, 0x75, 0x62, 0xc6, + 0xd2, 0x8a, 0x54, 0x35, 0x3e, 0x82, 0x9e, 0xfb, 0x3f, 0xaf, 0x7f, 0xe9, 0xc5, 0xcc, 0x3d, 0xdd, + 0xf7, 0x83, 0x12, 0x46, 0x2f, 0x02, 0x8f, 0xa3, 0xf9, 0xfe, 0x50, 0xe0, 0x79, 0x12, 0x70, 0xa7, + 0x23, 0x21, 0x70, 0xba, 0xbe, 0x84, 0xcd, 0x07, 0x2c, 0xe1, 0x37, 0x96, 0x70, 0xb5, 0x52, 0x39, + 0xaa, 0x60, 0x19, 0x27, 0x8b, 0x8b, 0xe8, 0xef, 0xbd, 0xfb, 0x2e, 0x1f, 0xef, 0xab, 0xe3, 0x1a, + 0xa4, 0xbe, 0x93, 0xf4, 0xcd, 0xb2, 0x81, 0x86, 0x13, 0x75, 0xe8, 0x06, 0xd0, 0x0d, 0xa0, 0x1b, + 0x40, 0x37, 0x80, 0x6e, 0x90, 0x11, 0xdd, 0xe0, 0x53, 0x02, 0x64, 0x83, 0x0a, 0x64, 0x03, 0xc8, + 0x06, 0x90, 0x0d, 0x20, 0x1b, 0x40, 0x36, 0x50, 0xbe, 0x84, 0x4b, 0x15, 0x88, 0x06, 0x10, 0x0d, + 0x20, 0x1a, 0xd0, 0x8a, 0x06, 0xf7, 0xcb, 0xdd, 0x97, 0x04, 0xd5, 0x60, 0xf1, 0x2c, 0x90, 0x0d, + 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x41, 0x48, 0xdc, 0xb8, 0xe5, 0xb6, + 0xe9, 0x3e, 0x26, 0x40, 0x37, 0x38, 0xd1, 0xf8, 0x08, 0x4d, 0x66, 0xdf, 0xcd, 0x03, 0xff, 0x21, + 0x1c, 0x40, 0x38, 0x78, 0xd3, 0xeb, 0x2a, 0xc2, 0xe7, 0x82, 0x70, 0x90, 0xee, 0x25, 0x8c, 0x78, + 0x03, 0x48, 0x07, 0x90, 0x0e, 0x48, 0x97, 0x39, 0x7b, 0x10, 0xcc, 0x1e, 0x10, 0x96, 0xc1, 0xdc, + 0x4a, 0xf9, 0xfc, 0x27, 0x81, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, 0xc8, 0x06, 0x90, + 0x0d, 0xc2, 0xca, 0x06, 0xe4, 0x49, 0x63, 0xb7, 0x99, 0x11, 0xa2, 0x24, 0xb2, 0xf9, 0x24, 0x2d, + 0xce, 0x78, 0xc6, 0xcc, 0x4d, 0x4b, 0x3f, 0x69, 0xf1, 0x9f, 0x04, 0xa4, 0x05, 0xa4, 0x05, 0xa4, + 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0x38, 0xc6, 0x63, 0xd3, 0x15, + 0x3c, 0x09, 0x9c, 0x65, 0xf5, 0x20, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, + 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xc1, 0x31, 0x16, 0xae, 0x69, 0x7b, 0x5c, 0xf0, 0xfb, 0x04, + 0xc4, 0x95, 0xbe, 0x78, 0x16, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, + 0x17, 0x10, 0x97, 0xc4, 0x13, 0x97, 0x4c, 0xa7, 0x17, 0x25, 0xae, 0x52, 0x18, 0xe8, 0x5f, 0x63, + 0xd5, 0xc2, 0x60, 0x81, 0xbc, 0xe0, 0x5f, 0x51, 0x94, 0x36, 0xd4, 0xb7, 0xe0, 0xb2, 0x55, 0x35, + 0xe6, 0x4f, 0xf6, 0xa8, 0x23, 0xed, 0x4b, 0xa1, 0xc9, 0x3d, 0x51, 0x13, 0x82, 0xb8, 0x64, 0xcd, + 0x39, 0xb7, 0xeb, 0x16, 0x9b, 0x71, 0x02, 0xaf, 0x70, 0xba, 0x67, 0x4f, 0x2c, 0x8b, 0x30, 0xe5, + 0xfc, 0xb9, 0xf9, 0xa0, 0xaf, 0xf3, 0x96, 0x3b, 0x60, 0x2e, 0x1b, 0x7c, 0x7e, 0x5c, 0x76, 0x9d, + 0xa9, 0x45, 0xac, 0x09, 0x8f, 0x93, 0x8e, 0xc3, 0x05, 0xd2, 0x7a, 0x0a, 0xee, 0xa4, 0x2f, 0xec, + 0x25, 0xe3, 0xfa, 0x7c, 0x37, 0xee, 0x75, 0xf8, 0x6d, 0xaf, 0x36, 0xe4, 0x97, 0xe6, 0x90, 0xf7, + 0x1a, 0xe3, 0xfb, 0xf2, 0xa5, 0x2b, 0x58, 0x7b, 0xfe, 0xb6, 0xbd, 0x8b, 0xe5, 0x3b, 0xf6, 0x6a, + 0x83, 0xbf, 0x3b, 0xfc, 0xb6, 0x35, 0x11, 0x6d, 0xc7, 0x13, 0xbd, 0xce, 0xec, 0xcd, 0x7a, 0xd7, + 0x8b, 0xd7, 0xa8, 0xf9, 0x6f, 0x81, 0xc2, 0xcc, 0xfa, 0xb7, 0x5a, 0x9e, 0x0a, 0x33, 0x6f, 0xa8, + 0x01, 0x9c, 0xd6, 0x2a, 0xcd, 0xef, 0x52, 0xb4, 0xd4, 0x56, 0x54, 0x64, 0x36, 0xe7, 0x06, 0x1f, + 0xec, 0x31, 0x7b, 0x30, 0x76, 0xb8, 0x2d, 0xf6, 0xfa, 0x8e, 0xe5, 0xb8, 0x8a, 0xb0, 0x8c, 0x86, + 0x87, 0x90, 0xf2, 0x0e, 0x52, 0x9e, 0x41, 0xc3, 0x2b, 0x54, 0xad, 0x38, 0x22, 0x50, 0xd3, 0x08, + 0x66, 0x0a, 0x29, 0x80, 0x3c, 0x93, 0xaf, 0x06, 0x5e, 0xe5, 0x83, 0x9f, 0xdc, 0x16, 0x25, 0x2f, + 0x6a, 0xd5, 0x8b, 0x59, 0xcb, 0x22, 0x96, 0xbb, 0x32, 0xe4, 0xcd, 0x9f, 0x9c, 0x96, 0x24, 0xad, + 0x00, 0x55, 0x33, 0x4f, 0x3b, 0xe3, 0x12, 0x91, 0x4a, 0x06, 0x32, 0xc9, 0x59, 0x79, 0xf1, 0xd7, + 0x89, 0x84, 0x35, 0x52, 0x58, 0x1b, 0x6a, 0x57, 0x9e, 0x28, 0xff, 0x9c, 0xfe, 0xe7, 0x55, 0x07, + 0x92, 0xd6, 0xb5, 0xdc, 0x7a, 0x75, 0xd2, 0xcf, 0x52, 0x55, 0x9c, 0x8d, 0xaa, 0x3d, 0xeb, 0x54, + 0x75, 0x76, 0xa9, 0xfc, 0x2c, 0x52, 0xf9, 0xd9, 0xa2, 0xf2, 0xb3, 0xc2, 0x64, 0x59, 0x0c, 0xd9, + 0xf5, 0xd1, 0x0a, 0x4b, 0x73, 0x2d, 0x7d, 0x61, 0xad, 0xb6, 0xc3, 0xb2, 0x7d, 0xc9, 0x93, 0xae, + 0xa6, 0x20, 0xa6, 0xb2, 0xa0, 0x0d, 0x95, 0xc1, 0x18, 0x34, 0x41, 0x16, 0xaa, 0x83, 0x27, 0xc8, + 0x82, 0x22, 0xc8, 0x82, 0x1d, 0xc8, 0x82, 0x18, 0x92, 0xed, 0xdc, 0xa8, 0x2a, 0xe8, 0xb8, 0x00, + 0x16, 0x75, 0xeb, 0x71, 0x0d, 0xbf, 0x54, 0xad, 0x45, 0xb5, 0x75, 0x7d, 0x95, 0xc7, 0xa0, 0x51, + 0xc4, 0x98, 0xd1, 0xc6, 0x90, 0x51, 0xc5, 0x88, 0x91, 0xc7, 0x80, 0x91, 0xc7, 0x78, 0x91, 0xc7, + 0x70, 0xa5, 0x4b, 0x32, 0x57, 0x5d, 0xe7, 0xb6, 0xb0, 0xd0, 0xde, 0x95, 0xaf, 0xe3, 0xd5, 0xee, + 0x54, 0x29, 0xf5, 0xbf, 0x86, 0x4b, 0xc5, 0x11, 0xb5, 0x64, 0xa1, 0xbb, 0x94, 0x21, 0xba, 0x7a, + 0x42, 0x71, 0xa9, 0x43, 0x6e, 0xb5, 0x85, 0xd6, 0x6a, 0x0b, 0xa1, 0xd5, 0x16, 0x2a, 0x9b, 0xee, + 0x43, 0x71, 0xb2, 0x10, 0x57, 0x7f, 0xdf, 0x59, 0xcc, 0x1c, 0xba, 0x6c, 0x48, 0xb1, 0xe9, 0x56, + 0xac, 0xf2, 0x98, 0xa0, 0xaf, 0xf6, 0x52, 0x63, 0xfe, 0xf8, 0x71, 0x11, 0x3b, 0x78, 0xb0, 0x30, + 0x04, 0x69, 0x3d, 0x76, 0x57, 0xc8, 0x2c, 0x57, 0xa7, 0xe2, 0x74, 0x36, 0xd9, 0xef, 0x11, 0x66, + 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x39, 0xb7, 0x66, 0xd9, 0xb7, 0x05, 0xb0, 0xcc, + 0x81, 0xc1, 0x5a, 0xc6, 0xad, 0xd1, 0x19, 0xe6, 0x55, 0x87, 0xb0, 0xcb, 0xb0, 0xcb, 0xb0, 0xcb, + 0xb0, 0xcb, 0xb0, 0xcb, 0xb9, 0xb5, 0xcb, 0x2b, 0x53, 0x00, 0xb3, 0x1c, 0x18, 0xab, 0xc5, 0x5d, + 0x44, 0x32, 0xa3, 0xbc, 0xe8, 0x8e, 0xc6, 0x24, 0x17, 0x61, 0x92, 0x61, 0x92, 0x61, 0x92, 0x61, + 0x92, 0xa3, 0x8f, 0x9a, 0xea, 0x03, 0x44, 0xbf, 0xa3, 0xf9, 0x05, 0x63, 0x6e, 0x0f, 0x18, 0x5d, + 0x2e, 0x99, 0xf5, 0xea, 0x94, 0x8b, 0xbe, 0xa9, 0x6e, 0x55, 0x93, 0x66, 0x0d, 0x22, 0xcf, 0x12, + 0xa4, 0x23, 0x2b, 0x90, 0xde, 0x2c, 0x40, 0xba, 0xb2, 0xfe, 0x68, 0xcf, 0xf2, 0xa3, 0x3d, 0xab, + 0x8f, 0xf6, 0x2c, 0x3e, 0xd9, 0xca, 0xf7, 0x40, 0x9e, 0x95, 0x47, 0x83, 0x2f, 0xa6, 0xc3, 0x27, + 0xdb, 0xe4, 0x9b, 0xfd, 0xe6, 0xf7, 0xdc, 0x24, 0x79, 0x4c, 0x78, 0xfe, 0xa7, 0xa5, 0x27, 0xb7, + 0x30, 0x53, 0x59, 0xb9, 0xf2, 0x4e, 0xc0, 0xac, 0x69, 0x22, 0x94, 0x02, 0xab, 0x99, 0x22, 0x52, + 0x09, 0x74, 0x02, 0x74, 0x02, 0x74, 0x02, 0x74, 0x02, 0x74, 0x62, 0xc3, 0xbe, 0x9d, 0x70, 0x5b, + 0x1c, 0x95, 0x34, 0xb0, 0x09, 0x4a, 0x32, 0xd1, 0x31, 0xed, 0x3b, 0x46, 0x5e, 0x0b, 0x5a, 0x43, + 0x46, 0x3b, 0x9d, 0xb5, 0x9e, 0x75, 0xe7, 0xf8, 0x5d, 0x15, 0xc2, 0xd5, 0xd5, 0x7f, 0x02, 0x8a, + 0xde, 0xea, 0xc8, 0x73, 0xad, 0xb3, 0x36, 0x73, 0x52, 0x96, 0x5c, 0xb9, 0x74, 0x52, 0x3e, 0xa9, + 0x1e, 0x97, 0x4e, 0x2a, 0x39, 0x5e, 0x7b, 0x19, 0xcd, 0x53, 0xd9, 0x85, 0x13, 0x19, 0xc2, 0x89, + 0x1c, 0x8d, 0x26, 0x36, 0x17, 0x8f, 0xba, 0x24, 0xea, 0xd7, 0x0f, 0x00, 0xc7, 0x12, 0x8e, 0x25, + 0x1c, 0x4b, 0x38, 0x96, 0x70, 0x2c, 0xc9, 0xf7, 0x2d, 0x74, 0xea, 0x17, 0xbf, 0x57, 0x76, 0x89, + 0x33, 0xcf, 0xff, 0xfc, 0x08, 0xa9, 0x3a, 0xda, 0x90, 0x93, 0xdd, 0xdd, 0x09, 0xac, 0x69, 0xa2, + 0x3b, 0x3c, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0x1b, 0xf6, 0x2d, 0x1f, + 0x1b, 0xe6, 0x60, 0xe0, 0x32, 0xcf, 0xd3, 0x41, 0x2d, 0x4e, 0x08, 0xfb, 0x5c, 0x8e, 0x71, 0xe6, + 0x45, 0xeb, 0xe7, 0x99, 0xbd, 0x2f, 0x6b, 0x98, 0xdb, 0xc0, 0x1c, 0x7f, 0xd2, 0xd0, 0x77, 0xdb, + 0x14, 0x82, 0xb9, 0x36, 0xf9, 0x74, 0xfb, 0x0f, 0xf0, 0xd7, 0xfb, 0xf7, 0x37, 0x87, 0xc6, 0x49, + 0xf7, 0xe9, 0xa6, 0x68, 0x9c, 0x74, 0x17, 0x1f, 0x8b, 0xf3, 0x3f, 0x16, 0x9f, 0x4b, 0x37, 0x87, + 0x46, 0x79, 0xf5, 0xb9, 0x72, 0x73, 0x68, 0x54, 0xba, 0xfb, 0x3f, 0x7e, 0x7c, 0xdc, 0xff, 0x75, + 0x34, 0x0d, 0xff, 0xc5, 0x3f, 0xe8, 0x8b, 0x87, 0x75, 0xb3, 0x5c, 0x49, 0x49, 0xef, 0xa6, 0xad, + 0x62, 0xd3, 0xea, 0xdd, 0xb4, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, + 0xd3, 0xfd, 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, + 0x5b, 0xfe, 0xa5, 0x3a, 0x3d, 0xdd, 0xb1, 0x8d, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, + 0xda, 0xf6, 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, + 0xd2, 0x96, 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, + 0x6d, 0xff, 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0xcf, 0x01, 0x84, 0xe1, 0x84, 0x25, 0x89, 0xda, 0xc7, + 0x83, 0x30, 0xb4, 0x9f, 0xb2, 0x6c, 0x7a, 0x08, 0x28, 0x22, 0x50, 0x44, 0xa0, 0x88, 0x40, 0x11, + 0x81, 0x22, 0x42, 0xbe, 0x6f, 0x71, 0xd2, 0xf2, 0xe2, 0xf7, 0x4b, 0xdb, 0xc4, 0x99, 0xb7, 0xf6, + 0xff, 0x71, 0xe2, 0x12, 0x71, 0xe8, 0xb9, 0x7d, 0x6f, 0x5a, 0x7c, 0x60, 0xb8, 0xcc, 0xf4, 0x08, + 0x8b, 0x43, 0x3e, 0x3b, 0x99, 0xeb, 0xfd, 0x83, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, + 0x6b, 0xd0, 0xcb, 0x7d, 0x03, 0x66, 0x0b, 0x2e, 0x1e, 0x35, 0xf1, 0x0d, 0xc2, 0xf8, 0xda, 0x42, + 0x63, 0xf9, 0xaa, 0x9f, 0x4d, 0x4f, 0x03, 0x64, 0xac, 0x06, 0xbc, 0x71, 0xf1, 0xbd, 0xd6, 0x6c, + 0x7c, 0xe9, 0x75, 0x5a, 0xd7, 0x57, 0xf5, 0x5e, 0xa7, 0x5e, 0xbb, 0x6c, 0x5d, 0x50, 0xa3, 0xc7, + 0x3c, 0xcc, 0xd9, 0xd3, 0x22, 0x73, 0x6a, 0x8a, 0x2b, 0x7f, 0x3d, 0xfa, 0xb5, 0xcb, 0x5e, 0xb3, + 0xd5, 0x6a, 0x17, 0xf2, 0x10, 0xd1, 0x9f, 0x90, 0x21, 0x3f, 0x6b, 0x5d, 0x7c, 0xad, 0x7f, 0xc1, + 0x88, 0xd3, 0x8d, 0x78, 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, 0x5d, 0xb5, 0x3a, 0x18, 0x75, 0xc2, + 0x75, 0xde, 0xbc, 0xbe, 0xbc, 0xaa, 0x77, 0x74, 0xe1, 0x0b, 0x69, 0x8f, 0xdd, 0xac, 0xf1, 0xbd, + 0x4c, 0x78, 0xf7, 0x96, 0xe9, 0x09, 0x63, 0xe4, 0x0c, 0xf8, 0x90, 0xb3, 0x01, 0xbd, 0x73, 0xbf, + 0xde, 0x3d, 0x7c, 0x7b, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, 0xc3, 0xb7, 0x27, 0xdf, 0xb7, 0x82, + 0x8f, 0x98, 0xe0, 0xfd, 0x7f, 0xbc, 0x6a, 0x59, 0x83, 0x6f, 0x4f, 0x18, 0xc0, 0x53, 0xb8, 0xb6, + 0x17, 0xb7, 0x64, 0x0b, 0xb6, 0x69, 0x3b, 0x1e, 0xeb, 0x3b, 0xf6, 0x80, 0x34, 0x9a, 0x14, 0xf9, + 0x08, 0xb2, 0x67, 0xe3, 0x37, 0xab, 0x26, 0xc8, 0x47, 0x40, 0xbe, 0xe4, 0x90, 0x8f, 0x60, 0xaf, + 0xf8, 0xa9, 0x5c, 0xae, 0x1e, 0x97, 0xcb, 0x87, 0xc7, 0x47, 0xc7, 0x87, 0x27, 0x95, 0x4a, 0xb1, + 0x5a, 0x44, 0x66, 0x82, 0xcc, 0xf5, 0x86, 0xb8, 0xb9, 0xdd, 0x97, 0x21, 0x55, 0x55, 0x91, 0x00, + 0xa9, 0xa2, 0xa9, 0x2e, 0xe2, 0x77, 0xfb, 0x85, 0x0d, 0xcd, 0x89, 0x35, 0xa7, 0xe2, 0x87, 0xf0, + 0xa5, 0xe1, 0x4b, 0xc3, 0x97, 0x86, 0x2f, 0x0d, 0x5f, 0x1a, 0x69, 0xf5, 0xe0, 0xc6, 0xc2, 0x8d, + 0x85, 0x1b, 0x0b, 0x37, 0x36, 0x55, 0x4b, 0x0e, 0x69, 0xf5, 0xe0, 0xbc, 0xc2, 0x79, 0xdd, 0x2b, + 0x2c, 0x83, 0x9f, 0x9d, 0x89, 0x60, 0xf4, 0x0e, 0xec, 0xcb, 0xce, 0xe1, 0x50, 0xc2, 0xa1, 0x84, + 0x43, 0x09, 0x87, 0x12, 0x0e, 0x25, 0xf9, 0xbe, 0xbd, 0x75, 0x1c, 0x8b, 0x99, 0xb6, 0x8e, 0xa0, + 0xeb, 0x62, 0x56, 0x4c, 0x75, 0xaa, 0x4b, 0xcc, 0xd5, 0x6c, 0xdb, 0x11, 0xe6, 0x8c, 0x8d, 0xd2, + 0x54, 0x9a, 0xf3, 0xfa, 0x3f, 0xd9, 0xc8, 0x1c, 0x2f, 0x2f, 0xdd, 0x1d, 0x38, 0x63, 0x66, 0xf7, + 0xe7, 0x86, 0x72, 0x86, 0x1f, 0x07, 0xb3, 0xff, 0x5c, 0x7e, 0x7b, 0x60, 0x0e, 0xb9, 0xe1, 0x99, + 0x43, 0xee, 0xf9, 0x9f, 0x0e, 0xe6, 0x69, 0x7c, 0x3c, 0x57, 0x30, 0x63, 0xec, 0x58, 0xbc, 0xff, + 0x78, 0x60, 0x33, 0x7e, 0xf7, 0xf3, 0xd6, 0x71, 0x3d, 0xff, 0xd3, 0x81, 0x39, 0xf8, 0x7b, 0x0e, + 0x45, 0xce, 0x44, 0x18, 0x63, 0x97, 0x1d, 0xcc, 0xe9, 0x85, 0xb7, 0xf8, 0x63, 0x71, 0x49, 0x0f, + 0x35, 0x58, 0x83, 0x53, 0x32, 0xb1, 0xff, 0xb1, 0x9d, 0x7f, 0x6d, 0xc3, 0x14, 0xc2, 0xe5, 0xb7, + 0xb3, 0x11, 0xa3, 0x2b, 0xc8, 0xba, 0xa1, 0x6f, 0x54, 0x67, 0x4d, 0x2a, 0xeb, 0x43, 0x75, 0xd6, + 0x6c, 0xb2, 0x3a, 0x54, 0x67, 0x8d, 0x34, 0x6a, 0x64, 0xd5, 0x59, 0x03, 0x20, 0x49, 0xef, 0xae, + 0x07, 0x1f, 0x81, 0xd6, 0x69, 0x2f, 0xc2, 0x69, 0x87, 0xd3, 0x0e, 0xa7, 0x1d, 0x4e, 0x7b, 0x72, + 0x9c, 0x76, 0x2a, 0xf8, 0xf7, 0x3b, 0x9c, 0xd7, 0x22, 0x15, 0xd4, 0x52, 0xc1, 0x5e, 0xa0, 0x56, + 0xf7, 0xfc, 0x11, 0x88, 0x97, 0xae, 0x9e, 0xa3, 0x23, 0x72, 0x73, 0xa0, 0xd3, 0x2c, 0x24, 0xc3, + 0x3c, 0xe8, 0x36, 0x13, 0x89, 0x31, 0x17, 0x89, 0x31, 0x1b, 0x89, 0x31, 0x1f, 0xb4, 0x66, 0x84, + 0xd8, 0x9c, 0xf8, 0xa3, 0x7c, 0xa5, 0x03, 0xe0, 0xf7, 0xf4, 0x26, 0xfe, 0x0a, 0xb0, 0xfd, 0x63, + 0x3d, 0x69, 0x77, 0x57, 0x89, 0xc0, 0x16, 0xf9, 0xbc, 0x9e, 0x8d, 0x5d, 0x46, 0x0f, 0xcb, 0x09, + 0x97, 0x76, 0x61, 0xa1, 0xbe, 0x6a, 0x23, 0x2e, 0x8b, 0xee, 0xf5, 0x90, 0x96, 0x22, 0x48, 0x0b, + 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x4b, 0x76, 0x49, 0x0b, 0xb5, 0x2f, 0xbc, 0xee, 0x13, 0x5b, 0x4c, + 0x63, 0x1c, 0xed, 0x9a, 0x6b, 0x3c, 0x7b, 0x92, 0x0f, 0xb9, 0x0c, 0xae, 0xd4, 0x65, 0x74, 0x92, + 0x60, 0x7c, 0x92, 0x65, 0x84, 0x92, 0x62, 0x8c, 0x12, 0x67, 0x94, 0x12, 0x67, 0x9c, 0x12, 0x67, + 0xa4, 0xf4, 0x18, 0x2b, 0x4d, 0x46, 0x4b, 0xbf, 0xc7, 0x1d, 0xc0, 0x8d, 0x09, 0xb7, 0x45, 0xb1, + 0xaa, 0x13, 0x33, 0x96, 0x56, 0xa4, 0xaa, 0xf1, 0x11, 0xf4, 0x5c, 0xff, 0x79, 0xfd, 0x4b, 0x2f, + 0x66, 0xee, 0xe9, 0xbe, 0x1e, 0x94, 0x30, 0x7a, 0x11, 0x78, 0x1c, 0xcd, 0xd7, 0x87, 0x02, 0xcf, + 0x93, 0x80, 0x2b, 0x1d, 0x09, 0x81, 0xd3, 0xf5, 0x25, 0x6c, 0x3e, 0x60, 0x09, 0xbf, 0xb1, 0x84, + 0xab, 0x95, 0xca, 0x51, 0x05, 0xcb, 0x38, 0x59, 0x5c, 0x44, 0x7f, 0xef, 0xdd, 0x77, 0xf9, 0x78, + 0x5f, 0x1d, 0xb7, 0x20, 0xf5, 0x9d, 0xa4, 0x6f, 0x96, 0x0d, 0x34, 0x9c, 0xa8, 0x43, 0x37, 0x80, + 0x6e, 0x00, 0xdd, 0x00, 0xba, 0x01, 0x74, 0x83, 0x8c, 0xe8, 0x06, 0x9f, 0x12, 0x20, 0x1b, 0x54, + 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x81, 0xf2, 0x25, 0x5c, 0xaa, 0x40, + 0x34, 0x80, 0x68, 0x00, 0xd1, 0x80, 0x56, 0x34, 0xb8, 0x5f, 0xee, 0xbe, 0x24, 0xa8, 0x06, 0x8b, + 0x67, 0x81, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, 0xc8, 0x06, 0x90, 0x0d, 0x42, 0xe2, + 0xc6, 0x2d, 0xb7, 0x4d, 0xf7, 0x31, 0x01, 0xba, 0xc1, 0x89, 0xc6, 0x47, 0x68, 0x32, 0xfb, 0x6e, + 0x1e, 0xf8, 0x0f, 0xe1, 0x00, 0xc2, 0xc1, 0x9b, 0x5e, 0x57, 0x11, 0x3e, 0x17, 0x84, 0x83, 0x74, + 0x2f, 0x61, 0xc4, 0x1b, 0x40, 0x3a, 0x80, 0x74, 0x40, 0xba, 0xcc, 0xd9, 0x83, 0x60, 0xf6, 0x80, + 0xb0, 0x0a, 0xe6, 0x56, 0xca, 0xe7, 0x3f, 0x09, 0x64, 0x03, 0xc8, 0x06, 0x90, 0x0d, 0x20, 0x1b, + 0x40, 0x36, 0x80, 0x6c, 0x10, 0x56, 0x36, 0x20, 0xcf, 0x19, 0xbb, 0xcd, 0x8c, 0x10, 0xe5, 0x90, + 0xcd, 0x27, 0x69, 0x71, 0xc6, 0x33, 0x66, 0x6e, 0x5a, 0xfa, 0x49, 0x8b, 0xff, 0x24, 0x20, 0x2d, + 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0xc1, 0x31, + 0x1e, 0x9b, 0xae, 0xe0, 0x49, 0xe0, 0x2c, 0xab, 0x07, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, + 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x09, 0x8e, 0xb1, 0x70, 0x4d, 0xdb, 0xe3, + 0x82, 0xdf, 0x27, 0x20, 0xae, 0xf4, 0xc5, 0xb3, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, + 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x24, 0x9e, 0xb8, 0x64, 0x3a, 0xbd, 0x28, 0x71, 0x91, 0xc2, + 0x40, 0xff, 0xfa, 0x8a, 0x16, 0x06, 0xeb, 0xe3, 0x05, 0xff, 0x8a, 0xa2, 0xb2, 0xa1, 0xbe, 0xf5, + 0x96, 0xad, 0xa2, 0x31, 0x7f, 0xb2, 0x47, 0x1d, 0x59, 0x5f, 0x0a, 0x4d, 0xee, 0x89, 0x9a, 0x10, + 0xc4, 0x15, 0x6b, 0xce, 0xb9, 0x5d, 0xb7, 0xd8, 0x8c, 0x12, 0x78, 0x85, 0xd3, 0x3d, 0x7b, 0x62, + 0x59, 0x84, 0x19, 0xe7, 0xcf, 0xcd, 0x07, 0x7d, 0x9d, 0xb7, 0xdc, 0x01, 0x73, 0xd9, 0xe0, 0xf3, + 0xe3, 0xb2, 0xeb, 0x4c, 0x2d, 0x62, 0x4d, 0x70, 0x9c, 0x70, 0x18, 0x2e, 0x90, 0x56, 0x53, 0x70, + 0x27, 0x7d, 0x61, 0x2f, 0xf9, 0xd6, 0xe7, 0xbb, 0x71, 0xaf, 0xc3, 0x6f, 0x7b, 0xb5, 0x21, 0xbf, + 0x34, 0x87, 0xbc, 0xd7, 0x18, 0xdf, 0x97, 0x2f, 0x5d, 0xc1, 0xda, 0xf3, 0x97, 0xed, 0x5d, 0x2c, + 0x5f, 0xb1, 0x57, 0x1b, 0xfc, 0xdd, 0xe1, 0xb7, 0xad, 0x89, 0x68, 0xbb, 0xac, 0xd7, 0x99, 0xbd, + 0x58, 0xef, 0x7a, 0xf1, 0x16, 0x35, 0xff, 0x25, 0x50, 0x94, 0x59, 0xff, 0x46, 0xcb, 0x51, 0x51, + 0xe6, 0x0d, 0xf5, 0x7f, 0xd3, 0x5a, 0xa1, 0xf9, 0x5d, 0x8a, 0x56, 0xda, 0x8a, 0x87, 0xcc, 0xa6, + 0xdc, 0xe0, 0x83, 0x3d, 0x66, 0x0f, 0xc6, 0x0e, 0xb7, 0xc5, 0x5e, 0xdf, 0xb1, 0x1c, 0x57, 0x11, + 0x92, 0xd1, 0x90, 0x10, 0x52, 0xd2, 0x41, 0x4a, 0x32, 0x68, 0x48, 0x85, 0xaa, 0x15, 0x47, 0x84, + 0x69, 0xfa, 0xb0, 0x4c, 0xa1, 0xfd, 0x97, 0x66, 0xef, 0xd5, 0x80, 0xab, 0x7c, 0xe8, 0x93, 0xdb, + 0xa2, 0xe4, 0x25, 0xad, 0x7a, 0x29, 0xeb, 0x58, 0xc2, 0x72, 0x17, 0x86, 0xbc, 0xe9, 0x93, 0xd3, + 0x92, 0xa4, 0x05, 0xa0, 0x6a, 0xe2, 0x49, 0x27, 0x5c, 0x22, 0x4c, 0x49, 0x80, 0x25, 0x39, 0xeb, + 0x2e, 0xfe, 0x2a, 0x91, 0xb0, 0x42, 0x0a, 0xab, 0x11, 0x37, 0xcc, 0xc1, 0xc0, 0x65, 0x9e, 0x27, + 0x6d, 0x8d, 0xf8, 0xc2, 0x7a, 0xa0, 0x07, 0x49, 0xeb, 0x5a, 0xee, 0xa1, 0xab, 0xf4, 0x43, 0x54, + 0x15, 0x87, 0xa2, 0x6a, 0x0f, 0x39, 0x55, 0x1d, 0x5a, 0x2a, 0x3f, 0x84, 0x54, 0x7e, 0xa8, 0xa8, + 0xfc, 0x90, 0x30, 0x59, 0x16, 0x43, 0xfa, 0xa1, 0x9c, 0xc2, 0x2a, 0xad, 0x2a, 0xaa, 0xaf, 0x06, + 0xab, 0xaa, 0x06, 0x30, 0x2c, 0x43, 0x16, 0x40, 0x6e, 0x91, 0x53, 0x25, 0xc5, 0x4b, 0x25, 0x17, + 0x25, 0x05, 0xd6, 0x03, 0xeb, 0x81, 0xf5, 0x8b, 0xb7, 0x95, 0x5d, 0x04, 0x53, 0x1d, 0xa1, 0xa4, + 0x22, 0x96, 0x8a, 0x08, 0xa6, 0x32, 0xf0, 0x51, 0x09, 0x42, 0x34, 0x60, 0xa4, 0x1a, 0x94, 0xc8, + 0xc0, 0x89, 0x0c, 0xa4, 0xc8, 0xc0, 0x2a, 0x1d, 0xda, 0x96, 0xb2, 0x28, 0x32, 0x7f, 0xdd, 0xf3, + 0xb1, 0x22, 0x94, 0x59, 0xa3, 0x37, 0x0a, 0x52, 0x0a, 0xae, 0xc6, 0x46, 0x4d, 0xa2, 0x40, 0x85, + 0x92, 0xf8, 0xf3, 0xc8, 0xdf, 0x97, 0x15, 0x8e, 0x7d, 0x60, 0x0e, 0x3e, 0x29, 0xec, 0xa3, 0x6d, + 0x0a, 0xc1, 0x5c, 0x5b, 0x79, 0xde, 0xc6, 0xc2, 0x5f, 0xef, 0xdf, 0xdf, 0x1c, 0x1a, 0x27, 0xdd, + 0xa7, 0x9b, 0xa2, 0x71, 0xd2, 0x5d, 0x7c, 0x2c, 0xce, 0xff, 0x58, 0x7c, 0x2e, 0xdd, 0x1c, 0x1a, + 0xe5, 0xd5, 0xe7, 0xca, 0xcd, 0xa1, 0x51, 0xe9, 0xee, 0xff, 0xf8, 0xf1, 0x71, 0xff, 0xd7, 0xd1, + 0x34, 0xfc, 0x17, 0xff, 0x50, 0x77, 0xfa, 0xd9, 0x4d, 0xd3, 0x69, 0x11, 0xcd, 0x66, 0xa8, 0x62, + 0x33, 0x44, 0xdb, 0x0c, 0xa6, 0x31, 0xac, 0x19, 0x5f, 0xbb, 0xbf, 0x8a, 0x1f, 0xca, 0xd3, 0xd3, + 0xfd, 0x5f, 0xc7, 0xd3, 0xd7, 0x7f, 0xf9, 0xb4, 0xe9, 0xc7, 0x8a, 0x1f, 0x8e, 0xa7, 0xa7, 0x5b, + 0xfe, 0xa5, 0x3a, 0x3d, 0xdd, 0xb1, 0x8d, 0xca, 0xf4, 0x7d, 0xe0, 0x47, 0x67, 0x7f, 0x5f, 0xda, + 0xf6, 0x85, 0xf2, 0x96, 0x2f, 0x1c, 0x6d, 0xfb, 0xc2, 0xd1, 0x96, 0x2f, 0x6c, 0x7d, 0xa4, 0xd2, + 0x96, 0x2f, 0x54, 0xa6, 0x4f, 0x81, 0x9f, 0x7f, 0xbf, 0xf9, 0x47, 0xab, 0xd3, 0xfd, 0xa7, 0x6d, + 0xff, 0x76, 0x3c, 0x7d, 0x3a, 0xdd, 0x4f, 0x21, 0x34, 0xbc, 0x4b, 0xf6, 0x73, 0xe2, 0x90, 0x2a, + 0xa4, 0xb8, 0xa5, 0xf2, 0x90, 0x4a, 0x62, 0x08, 0xb3, 0x04, 0x29, 0xf0, 0x9d, 0xc6, 0x79, 0x5c, + 0x85, 0xe6, 0x48, 0x76, 0xc9, 0xe5, 0x06, 0xdf, 0x28, 0x09, 0xb2, 0x51, 0x12, 0x4c, 0x23, 0x37, + 0x68, 0x26, 0xee, 0xdc, 0x4a, 0xde, 0x9b, 0x4a, 0xf7, 0x64, 0x41, 0x8a, 0x20, 0x1e, 0xe1, 0x80, + 0x38, 0x1e, 0x0c, 0x44, 0xdf, 0xbc, 0xd1, 0xbe, 0x19, 0x71, 0x49, 0xc8, 0x5a, 0x0a, 0x2a, 0x96, + 0x40, 0xb4, 0x09, 0x08, 0x3f, 0x7c, 0xe1, 0xbe, 0x11, 0x72, 0xa0, 0xe3, 0x0e, 0xb0, 0xbc, 0x81, + 0x8d, 0xb0, 0x91, 0x42, 0x6d, 0x9c, 0x70, 0xd3, 0xb5, 0xfb, 0xa0, 0x87, 0x18, 0xf0, 0x85, 0xb4, + 0x30, 0xb1, 0x79, 0xdf, 0xf4, 0x44, 0xe8, 0xe1, 0x5e, 0x17, 0x28, 0x56, 0xad, 0x84, 0x9c, 0xee, + 0x68, 0xe7, 0x5a, 0x91, 0x25, 0xe4, 0x38, 0x12, 0xb1, 0x1c, 0x09, 0x38, 0xae, 0xc4, 0x2b, 0x4d, + 0xc2, 0x95, 0x26, 0xd1, 0x4a, 0x93, 0x60, 0xd5, 0x02, 0x4b, 0xd4, 0x73, 0x9e, 0x82, 0xb5, 0x78, + 0xa7, 0xe8, 0x33, 0xe6, 0x9f, 0xfd, 0x2f, 0x1b, 0x8a, 0x38, 0xcc, 0xf1, 0x8e, 0x80, 0x9f, 0xb7, + 0x4c, 0x29, 0x62, 0x03, 0x12, 0x4e, 0x57, 0xe4, 0x9e, 0xa2, 0xc8, 0x3a, 0x2d, 0x91, 0x7e, 0x2a, + 0x22, 0xfd, 0xf4, 0x43, 0xfa, 0x29, 0x07, 0x2d, 0x69, 0x8a, 0x7b, 0xc4, 0x5a, 0x58, 0x46, 0xbb, + 0xc6, 0x9e, 0xe8, 0xd5, 0xf2, 0x5b, 0xb6, 0x17, 0xd7, 0xe5, 0x93, 0x12, 0x93, 0x21, 0xed, 0x38, + 0x54, 0xe6, 0xf1, 0xa7, 0x9a, 0xe3, 0x4e, 0xd9, 0xc7, 0x9b, 0xca, 0x8e, 0x33, 0x95, 0x1d, 0x5f, + 0x2a, 0x3b, 0xae, 0xd4, 0x2b, 0x7e, 0xc8, 0x8a, 0xa1, 0x58, 0x6c, 0x4c, 0xf9, 0xa1, 0x58, 0x32, + 0x6f, 0x7a, 0x20, 0x14, 0x0b, 0xa1, 0x58, 0xaa, 0x61, 0x42, 0x39, 0x5c, 0xc8, 0x53, 0x5d, 0xf7, + 0x92, 0x1c, 0x8a, 0xe5, 0xb8, 0xfc, 0x4e, 0x41, 0x79, 0xbc, 0xe7, 0xed, 0xb0, 0x68, 0x1f, 0x61, + 0x57, 0x08, 0xbb, 0xd2, 0x0a, 0x44, 0x64, 0x80, 0x44, 0x06, 0x4c, 0x72, 0x01, 0x4a, 0x32, 0x50, + 0xf9, 0xa3, 0xa0, 0x3e, 0xec, 0x4a, 0xfe, 0x7d, 0x81, 0x00, 0x8f, 0x39, 0x56, 0xd0, 0x76, 0xe0, + 0xfe, 0xc0, 0x12, 0x29, 0x93, 0x7a, 0x14, 0x2c, 0x91, 0xcc, 0x2c, 0x2f, 0xe7, 0xab, 0x33, 0x3a, + 0xab, 0x0e, 0x60, 0x75, 0x60, 0x75, 0x60, 0x75, 0x60, 0x75, 0x60, 0x75, 0xb6, 0x5a, 0x9d, 0x15, + 0x54, 0xe6, 0xc1, 0xec, 0xa8, 0x81, 0xc3, 0x67, 0xab, 0xa3, 0xc4, 0x81, 0x86, 0xd1, 0x81, 0xd1, + 0x81, 0xd1, 0x81, 0xd1, 0xc9, 0x94, 0xd1, 0x59, 0x2c, 0xfb, 0x1c, 0xd8, 0x1c, 0xb9, 0x17, 0xa7, + 0x03, 0x0b, 0x42, 0xe6, 0x05, 0xea, 0xc0, 0x52, 0x80, 0xc5, 0x81, 0xc5, 0x81, 0xc5, 0x49, 0xb2, + 0xc5, 0x91, 0x7d, 0x1a, 0xe0, 0x37, 0x3c, 0x4f, 0xe3, 0xcc, 0xed, 0x01, 0x53, 0x57, 0xb0, 0xc3, + 0xdf, 0x5a, 0x2f, 0xfa, 0x52, 0x95, 0x13, 0x52, 0x69, 0xe9, 0x15, 0xe5, 0xa5, 0x55, 0x28, 0x4a, + 0xa7, 0xd0, 0x96, 0x46, 0xa1, 0x2a, 0x7d, 0x42, 0x5e, 0xda, 0x84, 0xbc, 0x74, 0x09, 0x79, 0x69, + 0x92, 0x74, 0x65, 0x83, 0x55, 0x5e, 0x3a, 0x84, 0x80, 0x9a, 0x53, 0x50, 0xf4, 0x4d, 0x54, 0x7d, + 0xe3, 0xef, 0x39, 0x58, 0x7b, 0x4c, 0x78, 0xfe, 0xa7, 0x25, 0xa5, 0x5f, 0x00, 0x78, 0x5a, 0xb2, + 0x70, 0x2a, 0xe0, 0x70, 0x7d, 0x67, 0x34, 0x9a, 0xd8, 0x5c, 0x3c, 0x52, 0xd9, 0xcd, 0xd7, 0x1d, + 0xc2, 0x78, 0xc2, 0x78, 0xc2, 0x78, 0xc2, 0x78, 0xc2, 0x78, 0x26, 0xd5, 0x78, 0xae, 0x10, 0x9b, + 0x33, 0xcf, 0xff, 0xfc, 0x08, 0xfb, 0xb9, 0x18, 0x3c, 0xf6, 0x20, 0x0c, 0x72, 0x1b, 0xba, 0xa9, + 0x53, 0xd8, 0x51, 0xd8, 0x51, 0xd8, 0x51, 0xd8, 0x51, 0xd8, 0xd1, 0xa4, 0xda, 0xd1, 0x97, 0xa8, + 0x3d, 0xb3, 0xa5, 0x6b, 0x28, 0x0e, 0x7b, 0xba, 0x18, 0x44, 0x6e, 0xdf, 0x9b, 0x16, 0x1f, 0x18, + 0x2e, 0x33, 0x3d, 0x85, 0xa5, 0x49, 0x9e, 0xaf, 0x38, 0xaf, 0xf7, 0x07, 0x2b, 0x0a, 0x2b, 0x0a, + 0x2b, 0x0a, 0x2b, 0x9a, 0x42, 0x2b, 0xca, 0x07, 0xcc, 0x16, 0x5c, 0x3c, 0x12, 0x59, 0xd2, 0x8a, + 0xc2, 0x3e, 0x1a, 0xcb, 0x57, 0xf9, 0x6c, 0x7a, 0x04, 0x5b, 0x74, 0x35, 0x80, 0x8d, 0x8b, 0xef, + 0xb5, 0x66, 0xe3, 0x4b, 0xaf, 0xd3, 0xba, 0xbe, 0xaa, 0xf7, 0x3a, 0xf5, 0xda, 0x65, 0xeb, 0x42, + 0xf5, 0x6e, 0xfd, 0x6e, 0x5a, 0x93, 0xf9, 0xfd, 0xe7, 0x1b, 0xe5, 0x55, 0x05, 0x69, 0x0a, 0x83, + 0x06, 0x46, 0xb3, 0x76, 0xd9, 0x6b, 0xb6, 0x5a, 0x6d, 0xf5, 0x85, 0x2c, 0x09, 0xaa, 0xad, 0x6a, + 0x1a, 0xc2, 0xb3, 0xd6, 0xc5, 0xd7, 0xfa, 0x17, 0x8c, 0x60, 0xf4, 0x11, 0x6c, 0x75, 0x1a, 0xdf, + 0x1a, 0x17, 0xb5, 0xab, 0x56, 0x07, 0xa3, 0x18, 0x63, 0x1d, 0x36, 0xaf, 0x2f, 0xaf, 0xea, 0x1d, + 0xaa, 0xfd, 0xac, 0xb4, 0x87, 0x6e, 0xda, 0xf8, 0x49, 0x2a, 0xbc, 0x37, 0xcb, 0xf4, 0x84, 0x31, + 0x72, 0x06, 0x7c, 0xc8, 0xd9, 0x40, 0xbd, 0xf3, 0xb6, 0xde, 0x1d, 0x7c, 0x37, 0xf8, 0x6e, 0xf0, + 0xdd, 0xe0, 0xbb, 0xa5, 0xd0, 0x77, 0x13, 0x7c, 0xc4, 0x04, 0xef, 0xff, 0xe3, 0x55, 0xcb, 0x04, + 0xbe, 0x9b, 0xca, 0xd4, 0xe7, 0xd7, 0x36, 0x9f, 0x67, 0x8b, 0x2d, 0xd8, 0xa6, 0xed, 0x78, 0xac, + 0xef, 0xd8, 0x03, 0xa5, 0xe9, 0xdc, 0x3b, 0xa6, 0x7d, 0xc7, 0x94, 0xfb, 0x4f, 0x04, 0x35, 0xdf, + 0xcf, 0x39, 0x4d, 0x71, 0x79, 0x02, 0x9b, 0xb6, 0xd9, 0xcb, 0x25, 0xec, 0xef, 0xab, 0x6b, 0xf6, + 0x05, 0x77, 0xec, 0x2f, 0xfc, 0x6e, 0xb1, 0x1a, 0x0f, 0xb3, 0xc0, 0xfa, 0x0b, 0xe7, 0xe6, 0x43, + 0xe6, 0x97, 0x48, 0xf1, 0x53, 0xb9, 0x5c, 0x3d, 0x2e, 0x97, 0x0f, 0x8f, 0x8f, 0x8e, 0x0f, 0x4f, + 0x2a, 0x95, 0x62, 0x55, 0xa5, 0xd2, 0xa4, 0x7d, 0xd5, 0xbc, 0x4b, 0x67, 0xeb, 0xdd, 0x1c, 0xfb, + 0x38, 0x8a, 0x52, 0x0f, 0x05, 0xb9, 0xb4, 0x8a, 0x14, 0x44, 0xf0, 0x6a, 0xe0, 0xd5, 0xc0, 0xab, + 0x81, 0x57, 0x43, 0xb2, 0x6f, 0x26, 0x36, 0x57, 0x76, 0xa4, 0xbe, 0xa7, 0xb8, 0xb8, 0xdc, 0xeb, + 0xe1, 0x4a, 0xbd, 0x7f, 0x41, 0x52, 0xee, 0x4f, 0xc7, 0x0c, 0xd1, 0xce, 0x14, 0xdd, 0x8c, 0x6d, + 0x98, 0x39, 0x92, 0x72, 0x81, 0x5b, 0xe7, 0xf0, 0x13, 0x61, 0x9f, 0x54, 0x15, 0xd4, 0x02, 0x1d, + 0x67, 0xa5, 0xbc, 0x20, 0x0d, 0x63, 0xd7, 0xe0, 0x05, 0xeb, 0xdb, 0x7c, 0x55, 0x6c, 0x3e, 0x9a, + 0xcd, 0x87, 0x72, 0x86, 0x99, 0x2a, 0x67, 0xa8, 0x09, 0x8a, 0xde, 0xa5, 0xfb, 0x3d, 0x14, 0x43, + 0x29, 0x25, 0xe3, 0x24, 0x09, 0x4c, 0x0b, 0x20, 0x26, 0x81, 0x6c, 0x48, 0x1b, 0xa8, 0x16, 0x18, + 0xd8, 0xc6, 0xc5, 0xe5, 0x55, 0xad, 0xd9, 0xec, 0xb5, 0x3b, 0xad, 0xab, 0xd6, 0x59, 0xab, 0xd9, + 0xbb, 0xfa, 0x6f, 0xbb, 0x5e, 0xa0, 0x14, 0x6c, 0x3d, 0x52, 0x1b, 0xf1, 0x8b, 0xd6, 0x1a, 0xad, + 0x86, 0xb9, 0x75, 0xd9, 0xfe, 0x4a, 0x87, 0x8e, 0xd3, 0x0f, 0x59, 0x1f, 0xcf, 0xc6, 0x65, 0xe3, + 0x12, 0xe3, 0x29, 0x77, 0x7d, 0x1e, 0x61, 0x40, 0xe5, 0x0d, 0x68, 0xb3, 0x75, 0x56, 0x6b, 0xf6, + 0x6a, 0xdf, 0xbe, 0x75, 0xea, 0xdf, 0x6a, 0x57, 0x75, 0x0c, 0xad, 0xbc, 0xa1, 0xfd, 0xd2, 0xe8, + 0xd4, 0xcf, 0xae, 0x9a, 0xff, 0xed, 0x9d, 0xb5, 0x2e, 0x2e, 0xea, 0x67, 0x57, 0x14, 0x61, 0xad, + 0xf9, 0x19, 0xdd, 0xcb, 0xab, 0xda, 0x55, 0xe3, 0x0c, 0x23, 0x2a, 0x6f, 0x44, 0x3f, 0x7f, 0x6b, + 0x63, 0x38, 0xe5, 0x0d, 0x67, 0xbb, 0x71, 0x8e, 0xe1, 0x94, 0xc8, 0xa4, 0xbe, 0x9d, 0x53, 0x2e, + 0xcf, 0x77, 0xd9, 0x50, 0x07, 0x10, 0x74, 0xa1, 0xf6, 0x79, 0x55, 0x04, 0x5d, 0xa8, 0xaa, 0xbd, + 0x11, 0xd8, 0x52, 0x6a, 0x6a, 0x70, 0xf8, 0xdd, 0x7c, 0x61, 0x43, 0x73, 0x62, 0xcd, 0x4f, 0xa6, + 0x0f, 0x11, 0xda, 0xb1, 0xb9, 0x03, 0x84, 0x76, 0x44, 0x9e, 0x79, 0x84, 0x76, 0xa4, 0x02, 0xcd, + 0x33, 0x10, 0xda, 0xc1, 0x6d, 0x71, 0x54, 0x22, 0x88, 0xed, 0x38, 0x46, 0xec, 0xf8, 0xdb, 0x2f, + 0x82, 0xd8, 0x71, 0x79, 0xfd, 0x21, 0x76, 0x3c, 0xb5, 0x4b, 0xa4, 0x5c, 0x3a, 0x29, 0x9f, 0x54, + 0x8f, 0x4b, 0x27, 0x88, 0x18, 0x87, 0xf3, 0x92, 0x24, 0xe7, 0x45, 0x2d, 0xa1, 0x55, 0x5b, 0xc9, + 0x09, 0x6e, 0x05, 0xdc, 0x0a, 0xb8, 0x15, 0x70, 0x2b, 0x68, 0x72, 0x18, 0x8d, 0xef, 0xcb, 0x86, + 0xf2, 0x35, 0x46, 0x11, 0x54, 0x47, 0x16, 0x44, 0x47, 0x1b, 0xb1, 0x7a, 0xb0, 0xec, 0x6c, 0xff, + 0xe9, 0xfd, 0x4d, 0xd1, 0x28, 0x75, 0x57, 0xff, 0xe7, 0xe8, 0xe6, 0xd0, 0x28, 0x75, 0x95, 0x86, + 0x91, 0xe5, 0x99, 0x41, 0x2c, 0x73, 0x14, 0x3a, 0x13, 0xc1, 0xd4, 0xd3, 0x88, 0x97, 0x9d, 0x81, + 0x4b, 0x80, 0x4b, 0x80, 0x4b, 0x80, 0x4b, 0xa4, 0x90, 0x4b, 0xdc, 0x3a, 0x8e, 0xc5, 0x4c, 0x92, + 0xfb, 0x67, 0xc5, 0xb4, 0x98, 0xa6, 0x44, 0x97, 0x85, 0xab, 0xd9, 0xb6, 0x23, 0x4c, 0xc1, 0x15, + 0xa5, 0xfd, 0x2d, 0x78, 0xfd, 0x9f, 0x6c, 0x64, 0x8e, 0x97, 0x59, 0x9a, 0x0f, 0x9c, 0x31, 0xb3, + 0xfb, 0x73, 0x43, 0x31, 0xdb, 0x9f, 0x07, 0xb3, 0xff, 0x5c, 0x7e, 0x7b, 0x60, 0x0e, 0xb9, 0xe1, + 0x99, 0x43, 0xee, 0xf9, 0x9f, 0x0e, 0xe6, 0xac, 0x74, 0x62, 0xf3, 0xbe, 0xe9, 0x89, 0x03, 0x6b, + 0xb1, 0xa7, 0x0f, 0xe6, 0xf6, 0xd1, 0x5b, 0xfc, 0xb1, 0x48, 0xde, 0x9c, 0x87, 0xc2, 0xa0, 0x13, + 0xfb, 0x1f, 0xdb, 0xf9, 0xd7, 0x36, 0x4c, 0x21, 0x5c, 0x7e, 0x3b, 0x1b, 0x01, 0x75, 0x55, 0x42, + 0x37, 0xf4, 0x85, 0x92, 0xa1, 0x28, 0x19, 0x9a, 0x08, 0x7a, 0x81, 0x92, 0xa1, 0xb4, 0xb6, 0x41, + 0x59, 0xc9, 0xd0, 0x00, 0xc8, 0xa8, 0xf7, 0xaf, 0x82, 0x5d, 0xaa, 0xf5, 0xb2, 0x8a, 0xf0, 0xb2, + 0xe0, 0x65, 0xc1, 0xcb, 0xca, 0x93, 0x97, 0xa5, 0x0a, 0x2e, 0xfd, 0x0e, 0xe6, 0x65, 0x34, 0x85, + 0x6a, 0x5f, 0x6e, 0x2f, 0x50, 0x70, 0x79, 0xde, 0xa5, 0xe2, 0xa5, 0x45, 0x73, 0x7a, 0xad, 0x1c, + 0x3e, 0x29, 0x61, 0x54, 0x0f, 0x9c, 0x52, 0xc3, 0xaa, 0x36, 0x78, 0xd5, 0x06, 0xb3, 0xda, 0xe0, + 0x56, 0x2d, 0xec, 0x2a, 0x86, 0x5f, 0x3a, 0xb1, 0x2b, 0xb0, 0xef, 0xd4, 0x97, 0xd2, 0x0a, 0xb0, + 0xcb, 0x63, 0x82, 0xbe, 0x5e, 0x94, 0xd6, 0x5a, 0xd4, 0xc9, 0x7a, 0x36, 0x06, 0x29, 0x8d, 0x87, + 0x51, 0xb8, 0xf4, 0x0a, 0x0b, 0x35, 0x8a, 0xcc, 0x30, 0x2f, 0xba, 0xa3, 0x31, 0xca, 0x45, 0x18, + 0x65, 0x18, 0x65, 0x18, 0x65, 0x18, 0xe5, 0xe4, 0xfa, 0x46, 0xeb, 0x3e, 0x92, 0xc5, 0x6c, 0xfa, + 0xc4, 0x20, 0x7e, 0xcf, 0x1f, 0x32, 0x19, 0xef, 0x4b, 0x05, 0xd2, 0x3a, 0xc0, 0x5a, 0x2f, 0x68, + 0xeb, 0x02, 0x6f, 0xed, 0x20, 0xae, 0x1d, 0xcc, 0xb5, 0x83, 0x3a, 0x0d, 0xb8, 0x13, 0x81, 0x3c, + 0xbd, 0x07, 0x16, 0xd8, 0xb7, 0x13, 0x6e, 0x8b, 0x62, 0x55, 0x43, 0xaa, 0xc0, 0x2a, 0x61, 0x97, + 0x34, 0x37, 0xa8, 0x5e, 0xff, 0xa2, 0xc5, 0xa4, 0x3d, 0xea, 0x1b, 0x56, 0x9a, 0xcd, 0x6b, 0xa0, + 0x7b, 0xe2, 0x1b, 0x58, 0x81, 0xfe, 0x35, 0xdc, 0xb2, 0xd1, 0x04, 0x57, 0xeb, 0x4b, 0xce, 0x7c, + 0xc8, 0xfd, 0x92, 0xab, 0x56, 0x2a, 0x47, 0x95, 0x1c, 0x2f, 0xbb, 0x77, 0xd9, 0xec, 0x2d, 0x2b, + 0x19, 0x40, 0x29, 0x2e, 0x6e, 0xd2, 0x9d, 0xb4, 0x6d, 0x76, 0x23, 0x09, 0x4e, 0xdc, 0xe0, 0x47, + 0xc2, 0x8f, 0x84, 0x1f, 0x09, 0x3f, 0x12, 0x7e, 0xe4, 0x16, 0x3f, 0xf2, 0x93, 0x06, 0x37, 0xb2, + 0x02, 0x37, 0x12, 0x6e, 0x24, 0xdc, 0x48, 0xb8, 0x91, 0x19, 0x58, 0x72, 0xa5, 0x0a, 0x9c, 0x48, + 0x38, 0x91, 0x79, 0x77, 0x22, 0xef, 0x97, 0xbb, 0x41, 0x87, 0x17, 0xb9, 0xe8, 0x1b, 0x6e, 0x24, + 0xdc, 0x48, 0xb8, 0x91, 0x70, 0x23, 0xe1, 0x46, 0x92, 0xef, 0xdb, 0x5b, 0x6e, 0x9b, 0xee, 0xa3, + 0x06, 0x3f, 0xf2, 0x84, 0xb0, 0xcb, 0x26, 0xb3, 0xef, 0xe6, 0x81, 0xa2, 0x70, 0x24, 0x73, 0xc0, + 0xea, 0x8b, 0x70, 0x24, 0xe1, 0x48, 0xd2, 0x2e, 0x39, 0x9c, 0x47, 0xc2, 0x95, 0xcc, 0xb9, 0x2b, + 0xc9, 0x1e, 0x04, 0xb3, 0x07, 0x6c, 0x40, 0xef, 0x48, 0xfa, 0x3d, 0xc3, 0x8d, 0x84, 0x1b, 0x09, + 0x37, 0x12, 0x6e, 0x24, 0xdc, 0x48, 0x7a, 0x37, 0x52, 0x79, 0x52, 0xad, 0x6d, 0x30, 0xac, 0x28, + 0xc9, 0x56, 0x36, 0x8d, 0xb4, 0x33, 0x9e, 0x31, 0x45, 0xd3, 0xa2, 0x37, 0xd2, 0x7e, 0xcf, 0x30, + 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x30, 0xd2, 0x9b, 0xc6, 0x6c, + 0x6c, 0xba, 0x82, 0xeb, 0xb0, 0xd1, 0xab, 0x8e, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, + 0x61, 0xa2, 0x61, 0xa2, 0x61, 0xa2, 0x37, 0x8d, 0x99, 0x70, 0x4d, 0xdb, 0xe3, 0x82, 0xdf, 0x6b, + 0x88, 0x9b, 0x7a, 0xd1, 0x37, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, 0x35, 0x0c, + 0x75, 0x0a, 0x0d, 0x75, 0xaa, 0xd3, 0x45, 0x29, 0xae, 0x4a, 0x11, 0xe8, 0x4f, 0x61, 0x95, 0x8a, + 0x60, 0x41, 0x85, 0xe0, 0x5f, 0xa9, 0x28, 0x65, 0x41, 0xb7, 0x20, 0xd2, 0x95, 0xa5, 0xf9, 0x4f, + 0xf6, 0x48, 0x71, 0xcd, 0xba, 0xd0, 0xe4, 0x9e, 0xa8, 0x09, 0xa1, 0x38, 0x25, 0xf4, 0x39, 0xb7, + 0xeb, 0x16, 0x9b, 0xd9, 0x3c, 0xaf, 0x70, 0xba, 0x67, 0x4f, 0x2c, 0x4b, 0x61, 0x8a, 0xcb, 0x73, + 0xf3, 0x81, 0xae, 0xb3, 0x96, 0x3b, 0x60, 0x2e, 0x1b, 0x7c, 0x7e, 0x5c, 0x76, 0x95, 0xaa, 0x45, + 0x46, 0x84, 0x5f, 0xba, 0x71, 0xab, 0xa0, 0x34, 0x9f, 0xaa, 0x3b, 0xe9, 0x0b, 0x7b, 0xc9, 0x08, + 0x3e, 0xdf, 0x8d, 0x7b, 0x1d, 0x7e, 0xdb, 0xab, 0x0d, 0xf9, 0xa5, 0x39, 0xe4, 0xbd, 0xc6, 0xf8, + 0xbe, 0x7c, 0xbd, 0x78, 0xfc, 0x5e, 0xd3, 0xe9, 0xcf, 0xfe, 0xa9, 0x33, 0x7b, 0xec, 0xde, 0xf5, + 0xe2, 0x19, 0x6b, 0xfe, 0x23, 0xa2, 0x4a, 0x54, 0xf2, 0xd7, 0x33, 0xed, 0x3a, 0x4e, 0x6c, 0xc9, + 0xa8, 0x77, 0x09, 0x9a, 0xfa, 0x95, 0x9d, 0x5c, 0x78, 0x92, 0x7b, 0x8e, 0xcb, 0xef, 0xb8, 0xbd, + 0x37, 0x9b, 0x21, 0x83, 0xcb, 0x0a, 0x06, 0x54, 0x63, 0x23, 0x95, 0xda, 0x44, 0xa5, 0x36, 0x50, + 0x8d, 0xcd, 0x93, 0xb5, 0x20, 0x14, 0x61, 0x80, 0xc2, 0xbd, 0x2f, 0xd1, 0x3c, 0x45, 0x34, 0x47, + 0x72, 0xa0, 0x26, 0x3e, 0x30, 0xc4, 0x6b, 0x21, 0xe6, 0x0a, 0x92, 0xbd, 0x72, 0x94, 0xac, 0x98, + 0x78, 0x33, 0x15, 0x7d, 0x7c, 0x63, 0x8c, 0xad, 0xa4, 0x94, 0xf3, 0x52, 0x53, 0xca, 0x4b, 0x4a, + 0x19, 0xff, 0x2c, 0x53, 0x97, 0x62, 0x36, 0x24, 0x51, 0x7e, 0x56, 0x23, 0x2b, 0xcb, 0x96, 0x8b, + 0x95, 0xc9, 0xc0, 0xca, 0xe4, 0x5d, 0x65, 0xb2, 0x2d, 0x50, 0x6f, 0x3b, 0xea, 0x49, 0x50, 0x9c, + 0x62, 0x80, 0xde, 0x3b, 0xc2, 0x09, 0x91, 0x35, 0x11, 0x72, 0x27, 0xa0, 0x10, 0x0b, 0xf7, 0xc3, + 0x71, 0x91, 0x68, 0xd3, 0x1c, 0x7e, 0x92, 0x22, 0x4c, 0x50, 0xc1, 0x66, 0xfc, 0xee, 0xe7, 0xad, + 0xe3, 0x46, 0x2f, 0x69, 0xeb, 0xc3, 0xf2, 0x73, 0x53, 0x11, 0x17, 0x4a, 0x3c, 0xdb, 0x15, 0xdb, + 0x66, 0xc9, 0xb0, 0x55, 0x72, 0x6d, 0x94, 0x2c, 0xdb, 0x24, 0xdd, 0x26, 0x49, 0xb7, 0x45, 0xd2, + 0x6d, 0x10, 0x2d, 0xc4, 0xc5, 0x2d, 0xaf, 0xe1, 0xef, 0x1d, 0x79, 0x6c, 0xd2, 0x6f, 0x31, 0x61, + 0x84, 0xf2, 0x10, 0x84, 0x12, 0x84, 0x32, 0x95, 0x84, 0x52, 0x56, 0x0d, 0x9d, 0x82, 0x39, 0xf8, + 0x7b, 0x3e, 0x26, 0xdc, 0x36, 0xc6, 0x8e, 0x27, 0xe4, 0xad, 0x14, 0x3f, 0xfb, 0xd4, 0xab, 0x0e, + 0x64, 0x49, 0x92, 0x52, 0xcb, 0x91, 0x49, 0x0f, 0x85, 0x52, 0x11, 0xea, 0xa4, 0x36, 0x94, 0x49, + 0x55, 0xa8, 0x92, 0xf2, 0x50, 0x24, 0xe5, 0xa1, 0x46, 0xca, 0x43, 0x89, 0x92, 0x25, 0xf6, 0xcb, + 0x2e, 0xcf, 0x55, 0x58, 0x8a, 0x6a, 0xd2, 0x17, 0xd6, 0x6a, 0x3b, 0x2c, 0xdb, 0x97, 0x3c, 0xe9, + 0x6a, 0xea, 0x1d, 0x4a, 0x13, 0xb3, 0x28, 0x00, 0x87, 0x06, 0x78, 0x54, 0x03, 0x10, 0x19, 0x10, + 0x91, 0x01, 0x12, 0x19, 0x30, 0xc9, 0x05, 0x28, 0xc9, 0x40, 0xa5, 0x0c, 0xb0, 0xd6, 0x81, 0x4b, + 0xdd, 0x7a, 0x5c, 0xc3, 0x2f, 0x55, 0x6b, 0x51, 0x6d, 0xd9, 0x56, 0xe5, 0x21, 0xe4, 0x14, 0x21, + 0xe3, 0xb4, 0x21, 0xe2, 0x54, 0x21, 0xe1, 0xe4, 0x21, 0xe0, 0xe4, 0x21, 0xdf, 0xe4, 0x21, 0xde, + 0xe9, 0x0a, 0x6e, 0x54, 0x5d, 0x66, 0xb5, 0xb0, 0x0a, 0x00, 0x21, 0xab, 0x73, 0x2d, 0x37, 0xe2, + 0xe4, 0x2d, 0xc8, 0x3c, 0x44, 0xa5, 0xeb, 0x84, 0x43, 0x29, 0x35, 0xa4, 0x6a, 0x83, 0x56, 0x6d, + 0x10, 0xab, 0x0d, 0x6a, 0xd5, 0x42, 0xae, 0x62, 0xe8, 0xf5, 0x47, 0x8d, 0xec, 0xd6, 0x8c, 0xbf, + 0xef, 0x2c, 0x66, 0x0e, 0x5d, 0x36, 0xa4, 0xd8, 0x74, 0x2b, 0x66, 0x79, 0x4c, 0xd0, 0x57, 0x7b, + 0x79, 0xd0, 0xfa, 0xf1, 0xe3, 0xe2, 0xb0, 0xfa, 0x60, 0x65, 0x0a, 0xd2, 0x7a, 0x4d, 0x42, 0x21, + 0xbf, 0x1c, 0xd3, 0xc0, 0xfd, 0xb3, 0x55, 0x26, 0x21, 0x97, 0x30, 0xca, 0x30, 0xca, 0x30, 0xca, + 0x30, 0xca, 0x30, 0xca, 0x09, 0x36, 0xca, 0x8b, 0x6d, 0x07, 0x9b, 0x1c, 0x18, 0x2a, 0x39, 0xd1, + 0xb9, 0x3b, 0x2f, 0x38, 0x19, 0xd1, 0xbb, 0x3b, 0x2f, 0x35, 0x58, 0x64, 0x58, 0x64, 0x58, 0x64, + 0x58, 0xe4, 0xe8, 0xa3, 0xa6, 0x5a, 0xa9, 0xf4, 0x3b, 0x9a, 0x5f, 0xf4, 0xe6, 0xf6, 0x80, 0x3d, + 0x68, 0xaa, 0xc2, 0xb6, 0xe8, 0x1b, 0xd9, 0x84, 0xd2, 0x06, 0xd8, 0x7a, 0x81, 0x5b, 0x17, 0x80, + 0x6b, 0x07, 0x72, 0xed, 0x80, 0xae, 0x1d, 0xd8, 0x69, 0x00, 0x9e, 0x08, 0xe8, 0xe9, 0x5d, 0x30, + 0x8d, 0xae, 0x98, 0x0e, 0x97, 0x6c, 0x93, 0x6b, 0xf6, 0x9b, 0xdf, 0x73, 0x93, 0xe4, 0x31, 0xe1, + 0xf9, 0x9f, 0x96, 0x8e, 0xdc, 0xc2, 0x4c, 0x21, 0x4d, 0xe1, 0xce, 0xe3, 0x7d, 0xcb, 0x3c, 0x61, + 0x2c, 0x6f, 0x03, 0x11, 0xf3, 0x8a, 0xe7, 0xae, 0x41, 0x2b, 0x40, 0x2b, 0x40, 0x2b, 0x40, 0x2b, + 0x40, 0x2b, 0xc8, 0xf7, 0x2d, 0x92, 0x14, 0xa6, 0xc2, 0x4c, 0xf7, 0x9d, 0xd1, 0x68, 0x62, 0x73, + 0xf1, 0xa8, 0x4b, 0x04, 0x78, 0xfd, 0x00, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0x30, + 0xd9, 0x50, 0x02, 0x74, 0x2a, 0x01, 0x2b, 0xbb, 0xc4, 0x99, 0xe7, 0x7f, 0x7e, 0x84, 0x18, 0x10, + 0x6d, 0xc8, 0xd9, 0x83, 0x30, 0xb4, 0x33, 0x8d, 0x4d, 0x0f, 0x01, 0xb6, 0x01, 0xb6, 0x01, 0xb6, + 0x01, 0xb6, 0x01, 0xb6, 0x01, 0xb6, 0xa1, 0x93, 0x6d, 0xbc, 0xb4, 0x4d, 0x33, 0xc6, 0xb1, 0x66, + 0xab, 0xc0, 0x3a, 0xa2, 0x0d, 0x3d, 0xb7, 0xef, 0x4d, 0x8b, 0x0f, 0x0c, 0x97, 0x99, 0x1e, 0x51, + 0xa9, 0x84, 0xb5, 0x15, 0xfe, 0xaa, 0x7f, 0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x70, + 0x0d, 0xf2, 0x7d, 0xcb, 0x07, 0xcc, 0x16, 0x5c, 0x3c, 0x6a, 0xe2, 0x1b, 0x15, 0xc2, 0x3e, 0x1b, + 0xcb, 0x57, 0xfd, 0x6c, 0x7a, 0x1a, 0x20, 0x63, 0x35, 0xe0, 0x8d, 0x8b, 0xef, 0xb5, 0x66, 0xe3, + 0x4b, 0xaf, 0xd3, 0xba, 0xbe, 0xaa, 0xf7, 0x3a, 0xf5, 0xda, 0x65, 0xeb, 0x82, 0x1a, 0x3d, 0xbe, + 0x9b, 0xd6, 0x64, 0x9e, 0x64, 0xe7, 0x86, 0xb4, 0xdf, 0xd9, 0xaf, 0x5f, 0xe4, 0x3d, 0x6e, 0x1c, + 0xfd, 0xda, 0x65, 0xaf, 0xd9, 0x6a, 0xb5, 0x0b, 0xe4, 0x4f, 0x33, 0xfd, 0x90, 0xd7, 0x21, 0x3f, + 0x6b, 0x5d, 0x7c, 0xad, 0x7f, 0xc1, 0x88, 0xd3, 0x8d, 0x78, 0xab, 0xd3, 0xf8, 0xd6, 0xb8, 0xa8, + 0x5d, 0xb5, 0x3a, 0x18, 0x75, 0xc2, 0x75, 0xde, 0xbc, 0xbe, 0xbc, 0xaa, 0x77, 0x74, 0xe1, 0x0b, + 0x69, 0x8f, 0xdd, 0xac, 0xf1, 0xbd, 0x4c, 0x78, 0xf7, 0x96, 0xe9, 0x09, 0x63, 0xe4, 0x0c, 0xf8, + 0x90, 0xb3, 0x01, 0xbd, 0x73, 0xbf, 0xde, 0x3d, 0x7c, 0x7b, 0xf8, 0xf6, 0xf0, 0xed, 0xe1, 0xdb, + 0xc3, 0xb7, 0x27, 0xdf, 0xb7, 0x82, 0x8f, 0x98, 0xe0, 0xfd, 0x7f, 0xbc, 0x6a, 0x59, 0x83, 0x6f, + 0xff, 0x89, 0xb0, 0xcb, 0x6b, 0x9b, 0xcf, 0xcb, 0xaa, 0x15, 0x6c, 0xd3, 0x76, 0x3c, 0xd6, 0x77, + 0xec, 0x81, 0x47, 0xf9, 0xca, 0x1d, 0xd3, 0xbe, 0x63, 0xe4, 0xfe, 0x34, 0x3d, 0xe1, 0x2d, 0x9c, + 0x73, 0x9b, 0x1c, 0x91, 0x35, 0xd9, 0xf8, 0xcd, 0xaa, 0x89, 0xc6, 0xfe, 0xbf, 0xba, 0x66, 0x5f, + 0x70, 0xc7, 0xfe, 0xc2, 0xef, 0x16, 0xab, 0xfd, 0x30, 0x0f, 0x5e, 0x5d, 0xe1, 0xdc, 0x7c, 0xc8, + 0xfd, 0x92, 0x2b, 0x7e, 0x2a, 0x97, 0xab, 0xc7, 0xe5, 0xf2, 0xe1, 0xf1, 0xd1, 0xf1, 0xe1, 0x49, + 0xa5, 0x52, 0xac, 0x52, 0x2a, 0xa7, 0x89, 0x5b, 0x85, 0xef, 0xb2, 0xd9, 0x5b, 0x17, 0x3e, 0xee, + 0xce, 0xcb, 0x90, 0x2a, 0x9f, 0x68, 0x80, 0x54, 0xd1, 0xe4, 0x15, 0x85, 0x5f, 0x0b, 0xbf, 0x16, + 0x7e, 0x2d, 0xfc, 0x5a, 0xf8, 0xb5, 0x1b, 0xf6, 0xed, 0x84, 0xdb, 0xe2, 0xa8, 0xa4, 0xc1, 0xa5, + 0x3d, 0x86, 0x4b, 0x09, 0x97, 0x12, 0x2e, 0x25, 0x5c, 0xca, 0x0c, 0x2c, 0xb9, 0x72, 0xe9, 0xa4, + 0x7c, 0x52, 0x3d, 0x2e, 0x9d, 0xc0, 0x91, 0x84, 0x23, 0x99, 0x67, 0x47, 0x92, 0xd6, 0x01, 0xa1, + 0xcd, 0x84, 0x0d, 0x37, 0x12, 0x6e, 0x24, 0xdc, 0x48, 0xb8, 0x91, 0x70, 0x23, 0x37, 0xec, 0xdb, + 0x79, 0x75, 0x7d, 0xf2, 0x35, 0xec, 0x87, 0x3e, 0x7f, 0xa2, 0xbd, 0x6a, 0x25, 0x98, 0x6b, 0x93, + 0xbb, 0x93, 0x85, 0xbf, 0xde, 0xbf, 0xbf, 0x39, 0x34, 0x4e, 0xba, 0x4f, 0x37, 0x45, 0xe3, 0xa4, + 0xbb, 0xf8, 0x58, 0x9c, 0xff, 0xb1, 0xf8, 0x5c, 0xba, 0x39, 0x34, 0xca, 0xab, 0xcf, 0x95, 0x9b, + 0x43, 0xa3, 0xd2, 0xdd, 0xff, 0xf1, 0xe3, 0xe3, 0xfe, 0xaf, 0xa3, 0x69, 0xf8, 0x2f, 0x1e, 0x2c, + 0x3b, 0xdb, 0x7f, 0x7a, 0x7f, 0x53, 0x34, 0x4a, 0xdd, 0xd5, 0xff, 0x39, 0xba, 0x39, 0x34, 0x4a, + 0xdd, 0xfd, 0xfd, 0x3f, 0x0a, 0x60, 0x60, 0x09, 0x64, 0x60, 0xcb, 0xab, 0x60, 0x4a, 0xeb, 0x27, + 0x6e, 0x05, 0x81, 0x97, 0x9d, 0x83, 0x8b, 0x81, 0x8b, 0x81, 0x8b, 0x81, 0x8b, 0x81, 0x8b, 0x91, + 0xef, 0x5b, 0xe4, 0xc4, 0x4b, 0x78, 0x0f, 0xaa, 0xd3, 0xfa, 0xd7, 0x6c, 0xdb, 0x11, 0xa6, 0xe0, + 0x44, 0xb7, 0xd1, 0x0b, 0x5e, 0xff, 0x27, 0x1b, 0x99, 0xcb, 0x2c, 0xbc, 0x85, 0x03, 0x67, 0xcc, + 0xec, 0xfe, 0xdc, 0x50, 0xce, 0xf0, 0xe3, 0x60, 0xf6, 0x9f, 0xcb, 0x6f, 0x0f, 0xcc, 0x21, 0x37, + 0x3c, 0x73, 0xc8, 0x3d, 0xff, 0xd3, 0xc1, 0xdc, 0x6b, 0x98, 0xd8, 0xbc, 0x6f, 0x7a, 0xe2, 0xc0, + 0x66, 0xfc, 0xee, 0xe7, 0xad, 0xe3, 0x7a, 0xfe, 0xa7, 0x03, 0x73, 0xf0, 0xf7, 0x1c, 0x86, 0xb8, + 0x6d, 0x8c, 0x1d, 0x4f, 0x1c, 0x2c, 0x0a, 0xce, 0x2f, 0xfe, 0x58, 0xa4, 0x2b, 0x40, 0xcd, 0x9b, + 0xe0, 0x74, 0x4c, 0xec, 0x7f, 0x6c, 0xe7, 0x5f, 0xdb, 0x30, 0x85, 0x70, 0xf9, 0xed, 0xbc, 0x44, + 0x3f, 0x59, 0x01, 0x9c, 0x0d, 0x7d, 0xa3, 0x1a, 0x4e, 0x52, 0x19, 0x1f, 0xaa, 0xe1, 0x64, 0x93, + 0xd1, 0xa1, 0x1a, 0x4e, 0xa4, 0x51, 0x23, 0xab, 0x86, 0x13, 0x00, 0x49, 0x7a, 0x57, 0x3d, 0xf8, + 0x08, 0xb4, 0x0e, 0x7b, 0x11, 0x0e, 0x3b, 0x1c, 0x76, 0x38, 0xec, 0x70, 0xd8, 0x93, 0xe3, 0xb0, + 0x53, 0xc1, 0xbf, 0xdf, 0xe1, 0xbc, 0xf6, 0x8b, 0xa0, 0x96, 0x09, 0xf6, 0x02, 0xb5, 0xd1, 0xe6, + 0x8f, 0x40, 0xbc, 0x74, 0xf5, 0x04, 0xee, 0x90, 0x9b, 0x03, 0x9d, 0x66, 0x21, 0x19, 0xe6, 0x41, + 0xb7, 0x99, 0x48, 0x8c, 0xb9, 0x48, 0x8c, 0xd9, 0x48, 0x8c, 0xf9, 0xa0, 0x35, 0x23, 0xc4, 0xe6, + 0xc4, 0x1f, 0xe5, 0x2b, 0x1d, 0x00, 0xbf, 0xa7, 0x37, 0x05, 0x6a, 0x80, 0xed, 0x1f, 0x6b, 0xe8, + 0x3b, 0x50, 0x25, 0xfb, 0xd9, 0xd8, 0x65, 0x34, 0x54, 0x91, 0x70, 0x69, 0x13, 0x15, 0xd6, 0xde, + 0xba, 0xa6, 0x29, 0x0a, 0x6d, 0x6b, 0xf6, 0x5d, 0x41, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, + 0x74, 0x90, 0x16, 0x6a, 0x5f, 0x78, 0xdd, 0x27, 0xb6, 0x98, 0xc6, 0x5b, 0x4c, 0x6b, 0xae, 0xf1, + 0xec, 0x49, 0x3e, 0xe4, 0xf2, 0x6a, 0x8b, 0x2e, 0xa3, 0x93, 0x04, 0xe3, 0x93, 0x2c, 0x23, 0x94, + 0x14, 0x63, 0x94, 0x38, 0xa3, 0x94, 0x38, 0xe3, 0x94, 0x38, 0x23, 0xa5, 0xc7, 0x58, 0x69, 0x32, + 0x5a, 0xfa, 0x3d, 0xee, 0x00, 0x6e, 0x4c, 0xb8, 0x2d, 0x8a, 0x55, 0x9d, 0x98, 0xb1, 0xb4, 0x22, + 0x55, 0x8d, 0x8f, 0xa0, 0xe7, 0xf2, 0xf5, 0xeb, 0x5f, 0x7a, 0x31, 0x73, 0x4f, 0xf7, 0xe5, 0xec, + 0x84, 0xd1, 0x8b, 0xc0, 0xe3, 0x68, 0xbe, 0xbc, 0x1d, 0x78, 0x9e, 0x04, 0x5c, 0xa8, 0x4d, 0x08, + 0x9c, 0xae, 0x2f, 0x61, 0xf3, 0x01, 0x4b, 0xf8, 0x8d, 0x25, 0x5c, 0xad, 0x54, 0x8e, 0x2a, 0x58, + 0xc6, 0xc9, 0xe2, 0x22, 0xfa, 0x7b, 0xef, 0xbe, 0xcb, 0xc7, 0xfb, 0xea, 0xc8, 0x41, 0xa1, 0xef, + 0x24, 0x7d, 0xb3, 0x6c, 0xa0, 0xe1, 0x44, 0x1d, 0xba, 0x01, 0x74, 0x03, 0xe8, 0x06, 0xd0, 0x0d, + 0xa0, 0x1b, 0x64, 0x44, 0x37, 0xf8, 0x94, 0x00, 0xd9, 0xa0, 0x02, 0xd9, 0x00, 0xb2, 0x01, 0x64, + 0x03, 0xc8, 0x06, 0x90, 0x0d, 0x94, 0x2f, 0xe1, 0x52, 0x05, 0xa2, 0x01, 0x44, 0x03, 0x88, 0x06, + 0xb4, 0xa2, 0xc1, 0xfd, 0x72, 0xf7, 0x25, 0x41, 0x35, 0x58, 0x3c, 0x0b, 0x64, 0x03, 0xc8, 0x06, + 0x90, 0x0d, 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x10, 0x12, 0x37, 0x6e, 0xb9, 0x6d, 0xba, 0x8f, + 0x09, 0xd0, 0x0d, 0x4e, 0x34, 0x3e, 0x42, 0x93, 0xd9, 0x77, 0xf3, 0xc0, 0x7f, 0x08, 0x07, 0x10, + 0x0e, 0xde, 0xf4, 0xba, 0x8a, 0xf0, 0xb9, 0x20, 0x1c, 0xa4, 0x7b, 0x09, 0x23, 0xde, 0x00, 0xd2, + 0x01, 0xa4, 0x03, 0xd2, 0x65, 0xce, 0x1e, 0x04, 0xb3, 0x07, 0x84, 0xf5, 0xc0, 0xb7, 0x52, 0x3e, + 0xff, 0x49, 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x83, 0xb0, + 0xb2, 0x01, 0x79, 0xbe, 0xd8, 0x6d, 0x66, 0x84, 0x28, 0x7f, 0x6c, 0x3e, 0x49, 0x8b, 0x33, 0x9e, + 0x31, 0x73, 0xd3, 0xd2, 0x4f, 0x5a, 0xfc, 0x27, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, + 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x09, 0x8e, 0xf1, 0xd8, 0x74, 0x05, 0x4f, 0x02, + 0x67, 0x59, 0x3d, 0x08, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, + 0x28, 0x0b, 0x28, 0x4b, 0x70, 0x8c, 0x85, 0x6b, 0xda, 0x1e, 0x17, 0xfc, 0x3e, 0x01, 0x71, 0xa5, + 0x2f, 0x9e, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, + 0x25, 0xf1, 0xc4, 0x25, 0xd3, 0xe9, 0x45, 0x89, 0x0b, 0x14, 0x06, 0xfa, 0xd7, 0x53, 0xb0, 0x30, + 0x58, 0x1b, 0x2f, 0xf8, 0x57, 0x14, 0x55, 0x0d, 0xf5, 0xad, 0xb5, 0x6c, 0x15, 0x8c, 0xf9, 0x93, + 0x3d, 0xea, 0xc8, 0xf8, 0x52, 0x68, 0x72, 0x4f, 0xd4, 0x84, 0x20, 0xae, 0x56, 0x73, 0xce, 0xed, + 0xba, 0xc5, 0x66, 0x74, 0xc0, 0x2b, 0x9c, 0xee, 0xd9, 0x13, 0xcb, 0x22, 0xcc, 0x36, 0x7f, 0x6e, + 0x3e, 0xe8, 0xeb, 0xbc, 0xe5, 0x0e, 0x98, 0xcb, 0x06, 0x9f, 0x1f, 0x97, 0x5d, 0x67, 0x6a, 0x11, + 0x6b, 0x82, 0xe2, 0x04, 0x43, 0x70, 0x81, 0xb4, 0x8a, 0x82, 0x3b, 0xe9, 0x0b, 0x7b, 0xc9, 0xb3, + 0x3e, 0xdf, 0x8d, 0x7b, 0x1d, 0x7e, 0xdb, 0xab, 0x0d, 0xf9, 0xa5, 0x39, 0xe4, 0xbd, 0xc6, 0xf8, + 0xbe, 0x7c, 0xbd, 0x78, 0xd3, 0xde, 0xc5, 0xf2, 0xfd, 0x7a, 0xb5, 0xc1, 0xdf, 0x1d, 0x7e, 0xdb, + 0xb0, 0xff, 0x7f, 0xf6, 0xbe, 0xaf, 0x29, 0x91, 0xa4, 0xf9, 0xfa, 0x7e, 0x3e, 0x85, 0x41, 0xec, + 0x85, 0x46, 0x4c, 0x8f, 0x80, 0xfc, 0x11, 0xef, 0x98, 0x1d, 0x67, 0x83, 0x58, 0x15, 0x03, 0x75, + 0xde, 0xf8, 0x85, 0xcb, 0x12, 0x2d, 0x94, 0x6e, 0xed, 0x60, 0x35, 0xd1, 0x5d, 0xf8, 0x68, 0x8c, + 0x7c, 0xf7, 0x37, 0xa0, 0xa1, 0x15, 0x1b, 0x76, 0x46, 0xa8, 0xca, 0x2c, 0x9a, 0x33, 0x31, 0xcf, + 0x33, 0xac, 0x02, 0xd5, 0x5d, 0x9d, 0x95, 0xe7, 0x9c, 0xac, 0xac, 0xcc, 0xf3, 0x20, 0xd2, 0x9d, + 0xd6, 0xf8, 0xae, 0x3a, 0x57, 0xf1, 0x2d, 0xd4, 0x93, 0x3b, 0x40, 0x17, 0x66, 0xfe, 0x15, 0xb6, + 0x25, 0x5d, 0x98, 0x17, 0x34, 0xfc, 0xdd, 0xd4, 0x96, 0xcc, 0x1f, 0x36, 0xc8, 0xca, 0x66, 0xe4, + 0x23, 0x8e, 0x5c, 0xec, 0x8c, 0x9f, 0xba, 0x27, 0x6d, 0x65, 0x81, 0xd3, 0x30, 0x0e, 0x52, 0x86, + 0x41, 0xca, 0x28, 0x68, 0x18, 0x84, 0x2d, 0x4b, 0x23, 0xf2, 0x63, 0x3c, 0xfe, 0xcb, 0x22, 0xd8, + 0x9b, 0x01, 0x77, 0x3b, 0xde, 0xd4, 0xbc, 0xaf, 0x33, 0xfb, 0x8d, 0x86, 0x6d, 0xd9, 0xb6, 0x0d, + 0x53, 0xdb, 0xae, 0x59, 0xa3, 0x30, 0xf7, 0xe8, 0x0c, 0x3e, 0x36, 0x4b, 0x0d, 0xc6, 0xac, 0x36, + 0x10, 0xb3, 0xd4, 0x20, 0xec, 0x65, 0x13, 0xab, 0x68, 0xf8, 0x8b, 0x2d, 0x6e, 0x4e, 0xd1, 0x6c, + 0x3a, 0xd9, 0xde, 0x4c, 0x22, 0xdb, 0x24, 0x22, 0xdb, 0xfc, 0x21, 0xdb, 0xd4, 0x01, 0x20, 0x90, + 0x00, 0x82, 0x85, 0x78, 0xb1, 0x41, 0x3c, 0xf8, 0xe0, 0xd0, 0xb3, 0xb7, 0xf5, 0xcc, 0xc9, 0x9e, + 0x75, 0xce, 0x28, 0xba, 0xae, 0xc5, 0x4d, 0xcd, 0x18, 0xdc, 0xfa, 0xe6, 0x61, 0xc0, 0x34, 0x72, + 0xaf, 0x67, 0x39, 0x34, 0x07, 0x25, 0x2f, 0xb5, 0xdd, 0xe6, 0xbf, 0xdf, 0x90, 0x31, 0x9b, 0xa5, + 0x1a, 0xc6, 0xf3, 0x64, 0x6c, 0x50, 0x0b, 0xbb, 0x94, 0xc2, 0x16, 0x95, 0xb0, 0x4e, 0x21, 0xac, + 0x53, 0x07, 0xeb, 0x94, 0xc1, 0x2d, 0x98, 0x30, 0xdd, 0xfb, 0x32, 0x37, 0xd5, 0x6c, 0xd6, 0xa4, + 0xcc, 0xf4, 0xfb, 0xa1, 0x65, 0xa0, 0x65, 0xa0, 0x65, 0xb6, 0x50, 0xcb, 0xd8, 0x6a, 0xd6, 0x1b, + 0x3b, 0x16, 0x7b, 0xf6, 0x38, 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0x9e, 0xed, 0xd6, 0xf3, 0x8b, + 0x29, 0xf2, 0x87, 0x69, 0xf3, 0x83, 0xa9, 0xf2, 0x7f, 0xc9, 0xf3, 0x7b, 0xc9, 0xf3, 0x77, 0xc9, + 0xf3, 0x73, 0x37, 0x6b, 0x87, 0xd4, 0x76, 0x0f, 0xf3, 0xdc, 0x6c, 0xd3, 0xd5, 0xba, 0x25, 0xbf, + 0x9c, 0x41, 0xb5, 0xb9, 0xcb, 0xfb, 0xd6, 0x65, 0x5a, 0x3e, 0x31, 0x41, 0x76, 0x34, 0x83, 0xf2, + 0x08, 0x06, 0xcf, 0x51, 0x0b, 0xea, 0x23, 0x15, 0x6c, 0x47, 0x27, 0xd8, 0x8e, 0x48, 0xb0, 0x1d, + 0x85, 0xd8, 0xec, 0x14, 0x28, 0xb2, 0x23, 0x0c, 0xc9, 0xba, 0xeb, 0x0b, 0xff, 0x36, 0x14, 0xb7, + 0x14, 0x8b, 0x6e, 0xc6, 0x2c, 0xab, 0x04, 0x63, 0x9d, 0x4f, 0x83, 0xcb, 0x9f, 0x3e, 0xc5, 0x01, + 0xff, 0xfd, 0x19, 0x14, 0x6c, 0x6a, 0xae, 0x95, 0x45, 0x7e, 0x39, 0xa0, 0x71, 0xf7, 0x2f, 0xa8, + 0x4c, 0x42, 0x2e, 0x01, 0xca, 0x00, 0x65, 0x80, 0x32, 0x40, 0x19, 0xa0, 0xec, 0x30, 0x28, 0xc7, + 0xcb, 0x0e, 0x98, 0x9c, 0x9a, 0x2a, 0x3b, 0xc9, 0x5c, 0x4b, 0x0d, 0xce, 0x46, 0x72, 0xd7, 0x52, + 0x53, 0x03, 0x22, 0x03, 0x91, 0x81, 0xc8, 0x40, 0xe4, 0xd5, 0x67, 0xcd, 0x76, 0xa4, 0x32, 0x19, + 0x68, 0x72, 0x54, 0x55, 0xaa, 0x9e, 0xa0, 0x2b, 0x48, 0x32, 0xdf, 0xe2, 0x30, 0x1e, 0x9b, 0xea, + 0x7c, 0x2e, 0x69, 0xe9, 0x19, 0xf2, 0x52, 0x33, 0x1c, 0xa5, 0x65, 0x78, 0x4b, 0xc9, 0x70, 0x95, + 0x8e, 0x61, 0x2f, 0x15, 0xc3, 0x5e, 0x1a, 0x86, 0xbd, 0x14, 0x4c, 0xb6, 0x2a, 0x07, 0x90, 0x97, + 0x76, 0x61, 0x90, 0x62, 0x1c, 0x92, 0x6c, 0x91, 0x34, 0xfb, 0x8f, 0xbf, 0x13, 0x48, 0x8a, 0x84, + 0x8e, 0x92, 0x57, 0x53, 0x21, 0x17, 0xc3, 0x54, 0x56, 0x4e, 0x51, 0x13, 0x30, 0xeb, 0x6e, 0x70, + 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x71, 0xb1, 0x8b, 0xb7, 0x17, 0x00, 0x8a, 0x01, 0x8a, 0x01, 0x8a, + 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0xc1, 0x49, 0x31, 0x66, 0xb8, 0x24, 0x45, 0x94, 0xbc, 0x7e, + 0x02, 0xcb, 0x58, 0x6d, 0xca, 0xc5, 0xa3, 0xf6, 0xd8, 0x99, 0xc6, 0xa2, 0x8b, 0x00, 0xdb, 0x00, + 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0xe0, 0x64, 0x1b, 0xaf, 0xb1, 0x69, 0xcc, + 0x38, 0xe6, 0xb0, 0x0a, 0xac, 0x63, 0xb5, 0xa9, 0x97, 0xea, 0xc1, 0xef, 0xcb, 0x9e, 0x17, 0x0a, + 0x3f, 0x22, 0xac, 0x92, 0x98, 0x58, 0xf8, 0x9b, 0xf1, 0xc1, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, + 0x35, 0xc0, 0x35, 0xc8, 0xd7, 0xad, 0xec, 0x09, 0xa5, 0xa5, 0x7e, 0x62, 0xe2, 0x1b, 0x65, 0xc2, + 0x31, 0x1b, 0xd3, 0x5b, 0xfd, 0xec, 0x47, 0x0c, 0x2e, 0x63, 0x36, 0xe1, 0x8d, 0xb3, 0x6f, 0xf5, + 0x93, 0xc6, 0x97, 0x4e, 0xab, 0x79, 0x75, 0x79, 0xdc, 0x69, 0x1d, 0xd7, 0x2f, 0x9a, 0x67, 0xd4, + 0xde, 0xe3, 0x9b, 0xdf, 0x1f, 0x4e, 0x4e, 0xef, 0x5f, 0x93, 0xd7, 0xa9, 0x67, 0x6e, 0x1e, 0x34, + 0x9b, 0xfd, 0xfa, 0x45, 0xe7, 0xa4, 0xd9, 0x3c, 0xcf, 0x6d, 0x43, 0xf7, 0x26, 0x47, 0xa6, 0xfc, + 0xf7, 0xe6, 0xd9, 0xd7, 0xe3, 0x2f, 0x98, 0x71, 0xba, 0x19, 0x6f, 0xb6, 0x1a, 0x7f, 0x34, 0xce, + 0xea, 0x97, 0xcd, 0x16, 0x66, 0x9d, 0xd0, 0xce, 0x4f, 0xae, 0x2e, 0x2e, 0x8f, 0x5b, 0x5c, 0xfe, + 0x85, 0x74, 0xc4, 0x76, 0xd6, 0xf8, 0x5e, 0x26, 0xd4, 0x7d, 0xdf, 0x8f, 0xb4, 0x77, 0x1f, 0xf4, + 0xe4, 0xad, 0x14, 0x3d, 0x7a, 0x71, 0x3f, 0x3f, 0x3c, 0xb4, 0x3d, 0xb4, 0x3d, 0xb4, 0x3d, 0xb4, + 0x3d, 0xb4, 0x3d, 0xf9, 0xba, 0xd5, 0xf2, 0x5e, 0x68, 0xd9, 0xfd, 0x1e, 0x55, 0x4a, 0x0c, 0xda, + 0xfe, 0x90, 0x70, 0xc8, 0x2b, 0x25, 0x27, 0x3d, 0x0f, 0x72, 0xca, 0x57, 0x41, 0x24, 0xba, 0x81, + 0xea, 0x45, 0x94, 0xb7, 0xdc, 0xf2, 0xd5, 0x9d, 0x20, 0xd7, 0xd3, 0x0c, 0x5d, 0xe6, 0x4e, 0xa5, + 0xe2, 0xeb, 0x00, 0xcc, 0xdc, 0x77, 0x77, 0x12, 0x35, 0x61, 0x1c, 0xff, 0x6b, 0xe8, 0x77, 0xb5, + 0x0c, 0xd4, 0x17, 0x79, 0x17, 0x5b, 0x7b, 0x7e, 0x2b, 0x7a, 0x4f, 0x9f, 0xfa, 0x8f, 0x5b, 0x6f, + 0x72, 0x85, 0xc3, 0x52, 0xa9, 0x52, 0x2d, 0x95, 0xf2, 0xd5, 0x83, 0x6a, 0xbe, 0x56, 0x2e, 0x17, + 0x2a, 0x94, 0x91, 0x53, 0xe7, 0xac, 0x30, 0xa3, 0xad, 0x24, 0xdb, 0xd0, 0xb8, 0xbf, 0x6c, 0x86, + 0x54, 0x85, 0xca, 0x52, 0xa4, 0x8a, 0xa6, 0x60, 0x19, 0x74, 0x2d, 0x74, 0x2d, 0x74, 0x2d, 0x74, + 0x2d, 0x74, 0xed, 0x82, 0x75, 0x3b, 0x94, 0x4a, 0x1f, 0x14, 0x19, 0x24, 0x6d, 0x15, 0x92, 0x12, + 0x92, 0x12, 0x92, 0x12, 0x92, 0x32, 0x03, 0x26, 0x57, 0x2a, 0xd6, 0x4a, 0xb5, 0x4a, 0xb5, 0x58, + 0x83, 0x90, 0x84, 0x90, 0xdc, 0x66, 0x21, 0x49, 0x2b, 0x40, 0x68, 0x4b, 0x6c, 0x42, 0x46, 0x42, + 0x46, 0x42, 0x46, 0x42, 0x46, 0x42, 0x46, 0x2e, 0x58, 0xb7, 0x93, 0x56, 0x85, 0xe4, 0x36, 0x9c, + 0xa4, 0x3e, 0x1f, 0xd2, 0x1e, 0xb5, 0xd2, 0x22, 0x54, 0xe4, 0x72, 0x32, 0xf7, 0xf7, 0xee, 0xee, + 0x75, 0xde, 0xab, 0xb5, 0x9f, 0xaf, 0x0b, 0x5e, 0xad, 0x1d, 0xbf, 0x2c, 0x4c, 0xfe, 0x89, 0x5f, + 0x17, 0xaf, 0xf3, 0x5e, 0x69, 0xf6, 0xba, 0x7c, 0x9d, 0xf7, 0xca, 0xed, 0xbd, 0xbf, 0xfe, 0xfa, + 0xb4, 0xf7, 0xe3, 0x60, 0xf4, 0xfe, 0x0f, 0xee, 0x4f, 0x07, 0xdb, 0x7b, 0xde, 0xbd, 0x2e, 0x78, + 0xc5, 0xf6, 0xec, 0x3f, 0x0e, 0xae, 0xf3, 0x5e, 0xb1, 0xbd, 0xb7, 0xf7, 0x5b, 0x0e, 0x0c, 0xcc, + 0x41, 0x06, 0x36, 0x3d, 0x0a, 0x66, 0xb5, 0x31, 0xd3, 0x52, 0x27, 0xf0, 0x7a, 0x70, 0x70, 0x31, + 0x70, 0x31, 0x70, 0x31, 0x70, 0x31, 0x70, 0x31, 0xf2, 0x75, 0x7b, 0x13, 0x04, 0x7d, 0xe1, 0x2b, + 0x0e, 0x1e, 0x56, 0xc8, 0x0a, 0x54, 0x6f, 0x74, 0xbd, 0x60, 0xcb, 0xcd, 0xeb, 0x53, 0xe3, 0x91, + 0x34, 0x38, 0x0f, 0xc5, 0x7e, 0xdc, 0xc8, 0x36, 0xfe, 0xc7, 0x46, 0x63, 0x7b, 0x3a, 0x2b, 0xb0, + 0x59, 0x4b, 0x7f, 0xa8, 0xbe, 0xab, 0xe0, 0x7f, 0xca, 0xf3, 0xb5, 0x0e, 0xe5, 0x8d, 0x95, 0xd6, + 0xc2, 0x4b, 0x5d, 0xcf, 0x82, 0xb1, 0x51, 0x65, 0xdf, 0x55, 0xc2, 0x87, 0x2a, 0xfb, 0xd9, 0x24, + 0x74, 0xa8, 0xb2, 0xbf, 0xd2, 0xac, 0x91, 0x55, 0xd9, 0x4f, 0x39, 0x49, 0x7a, 0xa5, 0x9e, 0xbe, + 0x04, 0x5a, 0xbd, 0x5e, 0x80, 0x5e, 0x87, 0x5e, 0x87, 0x5e, 0x87, 0x5e, 0x77, 0x47, 0xaf, 0x53, + 0xb9, 0xff, 0x64, 0xc0, 0x49, 0x4d, 0x79, 0x4d, 0x1d, 0x25, 0xd8, 0x49, 0xf5, 0x5c, 0x99, 0x5c, + 0x02, 0xb1, 0xe9, 0xf2, 0xe4, 0xed, 0x90, 0xc3, 0x01, 0x27, 0x2c, 0xb8, 0x01, 0x0f, 0xdc, 0x30, + 0xe1, 0x0c, 0x5c, 0x38, 0x03, 0x1b, 0xce, 0xc0, 0x07, 0x2d, 0x8c, 0x10, 0xc3, 0x49, 0x32, 0xcb, + 0x97, 0x1c, 0x0e, 0x7e, 0x87, 0xb7, 0x02, 0x6a, 0x8a, 0xed, 0x57, 0x19, 0xc6, 0x4e, 0x75, 0xdf, + 0x7c, 0x01, 0xbb, 0x8c, 0x66, 0x2a, 0x12, 0x9a, 0x36, 0x51, 0xc3, 0xce, 0xa5, 0x36, 0x4d, 0xd1, + 0xc0, 0x93, 0x59, 0xbb, 0x82, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x70, 0x90, 0x16, 0x6a, + 0x2d, 0x3c, 0xaf, 0x89, 0xfb, 0x82, 0xf1, 0x10, 0xd3, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, + 0x3c, 0xd9, 0xc2, 0x05, 0x3a, 0x2e, 0x80, 0x8f, 0x5b, 0x20, 0xe4, 0x0a, 0x18, 0x39, 0x07, 0x4a, + 0xce, 0x81, 0x93, 0x73, 0x20, 0xc5, 0x03, 0x56, 0x4c, 0xa0, 0xc5, 0xaf, 0xb8, 0x53, 0x7e, 0x63, + 0x28, 0x95, 0x2e, 0x54, 0x38, 0x7d, 0xc6, 0x14, 0x45, 0x2a, 0x8c, 0x97, 0xc0, 0x73, 0xf6, 0xfa, + 0xed, 0x1f, 0x5e, 0x9f, 0xb9, 0xc3, 0x7d, 0x36, 0xdb, 0x31, 0x7a, 0x91, 0xba, 0x1c, 0xe6, 0xb3, + 0xdb, 0xa9, 0xeb, 0x71, 0xe0, 0x3c, 0xad, 0x23, 0xee, 0x74, 0xde, 0x84, 0xfd, 0x47, 0x98, 0xf0, + 0x4f, 0x4c, 0xb8, 0x52, 0x2e, 0x1f, 0x94, 0x61, 0xc6, 0x6e, 0x71, 0x11, 0xfe, 0xd1, 0xdb, 0x1f, + 0xb6, 0xe3, 0x7e, 0x39, 0x4a, 0x50, 0xf0, 0xed, 0xa4, 0x2f, 0x0e, 0x1b, 0x30, 0xec, 0xa8, 0x23, + 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x90, 0x91, 0xb8, 0xc1, 0xa1, 0x03, + 0x61, 0x83, 0x32, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xd6, 0x4d, + 0xb8, 0x58, 0x46, 0xd0, 0x00, 0x41, 0x03, 0x04, 0x0d, 0x68, 0x83, 0x06, 0x0f, 0xd3, 0xd5, 0xe7, + 0x42, 0xd4, 0x20, 0xbe, 0x16, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, + 0x10, 0x36, 0x78, 0xa7, 0xdf, 0xb8, 0x91, 0xca, 0x0f, 0x9f, 0x1c, 0x88, 0x1b, 0xd4, 0x18, 0x2f, + 0xe1, 0x44, 0xa8, 0xbb, 0x49, 0xe2, 0x3f, 0x02, 0x07, 0x08, 0x1c, 0xfc, 0x54, 0x75, 0x15, 0xa0, + 0xb9, 0x10, 0x38, 0xd8, 0x6c, 0x13, 0x46, 0xbe, 0x01, 0x42, 0x07, 0x08, 0x1d, 0x90, 0x9a, 0xb9, + 0x78, 0xd4, 0x42, 0xf5, 0x08, 0xdb, 0x81, 0x2f, 0xa5, 0x7c, 0xc9, 0x95, 0x20, 0x6c, 0x80, 0xb0, + 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0xc1, 0x7b, 0xc3, 0x06, 0xe4, 0xe5, 0x62, + 0x97, 0xc1, 0x08, 0x51, 0xf9, 0xd8, 0xed, 0x24, 0x2d, 0xc1, 0x60, 0xcc, 0xcc, 0xfd, 0x3e, 0x3f, + 0x69, 0x49, 0xae, 0x04, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, + 0xa4, 0x05, 0xa4, 0x25, 0x3d, 0xc7, 0x03, 0x3f, 0xd4, 0xd2, 0x05, 0xce, 0x32, 0xbb, 0x10, 0x50, + 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0xf4, + 0x1c, 0xeb, 0xd0, 0x57, 0x91, 0xd4, 0xf2, 0xc1, 0x81, 0xbc, 0xd2, 0x57, 0xd7, 0x02, 0xe2, 0x02, + 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0x3c, 0x71, 0xc9, 0x74, + 0x79, 0x51, 0xe2, 0xfe, 0x84, 0xa9, 0xf1, 0x59, 0xfa, 0x15, 0xa6, 0x5b, 0xe3, 0xa5, 0x7f, 0x44, + 0xd1, 0xd4, 0x90, 0xcf, 0xd4, 0xb2, 0xd5, 0x2f, 0xe6, 0x4f, 0xf1, 0xc4, 0x51, 0xf0, 0x25, 0x77, + 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xb8, 0x59, 0xcd, 0xa9, 0x54, 0xc7, 0x7d, 0x31, 0x66, 0x03, 0x51, + 0xee, 0x68, 0x47, 0x0d, 0xfb, 0x7d, 0xc2, 0x62, 0xf3, 0xa7, 0xfe, 0x23, 0xdf, 0xe0, 0xcd, 0xb0, + 0x27, 0x42, 0xd1, 0xfb, 0xfc, 0x34, 0x1d, 0x3a, 0x53, 0x46, 0xcc, 0xe4, 0x89, 0xdd, 0xf5, 0xc0, + 0x39, 0xd2, 0x1e, 0x0a, 0xe1, 0xb0, 0xab, 0xd5, 0x94, 0x65, 0x7d, 0xbe, 0x1b, 0x74, 0x5a, 0xf2, + 0xa6, 0x53, 0xbf, 0x95, 0x17, 0xfe, 0xad, 0xec, 0x34, 0x06, 0x0f, 0xa5, 0xab, 0xf8, 0x46, 0x3b, + 0x67, 0xd3, 0xdb, 0xeb, 0xd4, 0x7b, 0xff, 0xb6, 0xe4, 0x4d, 0x43, 0x9d, 0x87, 0xa2, 0xd3, 0x1a, + 0xdf, 0x54, 0xe7, 0x2a, 0xbe, 0x83, 0x7a, 0x72, 0x03, 0xe8, 0xc0, 0xcc, 0xbf, 0xbe, 0xb6, 0xa3, + 0x03, 0xf3, 0x82, 0x66, 0xbf, 0x9b, 0xda, 0x8e, 0xf9, 0xc3, 0x06, 0x19, 0xd9, 0x8c, 0x79, 0xc4, + 0x51, 0x8b, 0x9d, 0xf1, 0x43, 0xf7, 0xa4, 0xad, 0x0c, 0x70, 0x1a, 0xba, 0x41, 0x4a, 0x2f, 0x48, + 0xe9, 0x04, 0x0d, 0x7d, 0xb0, 0x65, 0x69, 0x44, 0x6e, 0x8c, 0xc5, 0x7d, 0x59, 0x44, 0x7a, 0x23, + 0xc8, 0x6e, 0xc7, 0x97, 0x9a, 0xf7, 0x74, 0x66, 0xbf, 0xd1, 0xb0, 0x25, 0xdb, 0xb6, 0x60, 0x62, + 0xcb, 0x35, 0x6b, 0x13, 0xe6, 0x9e, 0x9c, 0xc1, 0xa7, 0x66, 0xa9, 0xb3, 0x98, 0xd5, 0xce, 0x61, + 0x96, 0x3a, 0x83, 0xbd, 0xec, 0x5e, 0x15, 0x0d, 0x7f, 0xb1, 0xc5, 0x5d, 0x29, 0x9a, 0xdd, 0x26, + 0xdb, 0xbb, 0x48, 0x64, 0xbb, 0x43, 0x64, 0xbb, 0x3e, 0x64, 0xbb, 0x39, 0xc0, 0x03, 0x0a, 0x3c, + 0xb0, 0x10, 0x28, 0x36, 0x08, 0x07, 0x1f, 0x1c, 0x7a, 0xf4, 0xb6, 0x1e, 0x39, 0xd5, 0xa3, 0xce, + 0x19, 0xc5, 0xd6, 0x75, 0x78, 0xa9, 0x19, 0x73, 0x5b, 0xdf, 0x38, 0x0c, 0x18, 0x46, 0x6e, 0x36, + 0xc7, 0xc1, 0x50, 0x7b, 0x83, 0x20, 0xd2, 0xc6, 0x4c, 0xe3, 0xa5, 0xa6, 0xdb, 0xdb, 0x11, 0x0c, + 0x99, 0xb3, 0x59, 0xae, 0x61, 0x3c, 0x43, 0xc6, 0x06, 0xb7, 0xb0, 0xcb, 0x29, 0x6c, 0x71, 0x09, + 0xeb, 0x1c, 0xc2, 0x3a, 0x77, 0xb0, 0xce, 0x19, 0xdc, 0x02, 0x0a, 0xd3, 0x5d, 0x2f, 0x73, 0x53, + 0xd1, 0x66, 0x4d, 0xcb, 0x4c, 0xbf, 0x1f, 0x62, 0x06, 0x62, 0x06, 0x62, 0x66, 0x0b, 0xc5, 0x8c, + 0xad, 0x36, 0xbd, 0xb1, 0x63, 0xb1, 0x67, 0x8f, 0x73, 0xfe, 0xcb, 0x96, 0x2d, 0xda, 0xed, 0xd6, + 0x6e, 0x3d, 0xb3, 0x98, 0x22, 0x73, 0x98, 0x36, 0x33, 0x98, 0x2a, 0xf3, 0x97, 0x3c, 0xb3, 0x97, + 0x3c, 0x73, 0x97, 0x3c, 0x33, 0x77, 0xb3, 0xf6, 0x47, 0x6d, 0x77, 0x2f, 0xcf, 0xcd, 0xb6, 0x5c, + 0xad, 0x5b, 0xf2, 0xcb, 0xe9, 0x53, 0x9b, 0x7b, 0xbc, 0x6f, 0x5d, 0xa6, 0xe5, 0xb3, 0x12, 0x64, + 0x87, 0x32, 0x28, 0x0f, 0x5f, 0xf0, 0x1c, 0xb2, 0xa0, 0x3e, 0x4c, 0xc1, 0x76, 0x68, 0x82, 0xed, + 0x70, 0x04, 0xdb, 0x21, 0x88, 0xcd, 0xce, 0x7f, 0x22, 0x3b, 0xbc, 0x90, 0xac, 0xbb, 0xbe, 0xf0, + 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, 0x66, 0xcc, 0xb2, 0x4a, 0x30, 0xd6, 0xf9, 0x34, 0xbc, 0xfc, + 0xe9, 0x53, 0x1c, 0xf2, 0xdf, 0x9f, 0x41, 0xc1, 0xa6, 0x66, 0x5a, 0x59, 0xe4, 0x97, 0x03, 0x1a, + 0x77, 0xff, 0x82, 0xca, 0x24, 0xe4, 0x12, 0xa0, 0x0c, 0x50, 0x06, 0x28, 0x03, 0x94, 0x01, 0xca, + 0x0e, 0x83, 0x72, 0xbc, 0xec, 0x80, 0xc9, 0xa9, 0xa9, 0xb2, 0x93, 0xcd, 0xb5, 0xd4, 0xe0, 0x6c, + 0x64, 0x77, 0x2d, 0x35, 0x35, 0x20, 0x32, 0x10, 0x19, 0x88, 0x0c, 0x44, 0x5e, 0x7d, 0xd6, 0x6c, + 0x47, 0x2a, 0x93, 0x81, 0x26, 0xa7, 0x54, 0xa5, 0xea, 0x09, 0xba, 0x52, 0x24, 0xf3, 0xcd, 0x0d, + 0xe3, 0xb1, 0xa9, 0x8e, 0xe6, 0x92, 0x16, 0x9d, 0x21, 0x2f, 0x32, 0xc3, 0x51, 0x54, 0x86, 0xb7, + 0x88, 0x0c, 0x57, 0xd1, 0x18, 0xf6, 0x22, 0x31, 0xec, 0x45, 0x61, 0xd8, 0x8b, 0xc0, 0x64, 0xab, + 0x68, 0x00, 0x79, 0x51, 0x17, 0x06, 0x29, 0xc6, 0x21, 0xc9, 0x16, 0x49, 0xb3, 0xff, 0xf8, 0x3b, + 0x81, 0xa4, 0x48, 0xe8, 0x28, 0x79, 0x35, 0x15, 0x72, 0x31, 0x4c, 0x65, 0xe5, 0x08, 0x35, 0x01, + 0xb3, 0xee, 0x06, 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x17, 0xbb, 0x78, 0x7b, 0x01, 0xa0, 0x18, + 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0x9c, 0x14, 0x63, 0x86, 0x4b, 0x52, + 0x44, 0xc9, 0xeb, 0x27, 0xb0, 0x8c, 0xd5, 0xa6, 0x5c, 0x3c, 0x6a, 0x8f, 0x9d, 0x69, 0x2c, 0xba, + 0x08, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0x4e, 0xb6, 0xf1, + 0x1a, 0x9b, 0xc6, 0x8c, 0x63, 0x0e, 0xab, 0xc0, 0x3a, 0x56, 0x9b, 0x7a, 0xa9, 0x1e, 0xfc, 0xbe, + 0xec, 0x79, 0xa1, 0xf0, 0x23, 0xc2, 0x02, 0x89, 0x89, 0x85, 0xbf, 0x19, 0x1f, 0x5c, 0x03, 0x5c, + 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x7c, 0xdd, 0xca, 0x9e, 0x50, 0x5a, 0xea, 0x27, 0x26, + 0xbe, 0x51, 0x26, 0x1c, 0xb3, 0x31, 0xbd, 0xd5, 0xcf, 0x7e, 0xc4, 0xe0, 0x32, 0x66, 0x13, 0xde, + 0x38, 0xfb, 0x56, 0x3f, 0x69, 0x7c, 0xe9, 0xb4, 0x9a, 0x57, 0x97, 0xc7, 0x9d, 0xd6, 0x71, 0xfd, + 0xa2, 0x79, 0x46, 0xed, 0x3d, 0xbe, 0xf9, 0xfd, 0xe1, 0xe4, 0xf4, 0xfe, 0x35, 0x79, 0x85, 0x7a, + 0xe6, 0xb6, 0x41, 0xb3, 0xd9, 0xaf, 0x5f, 0x74, 0x4e, 0x9a, 0xcd, 0xf3, 0xdc, 0x36, 0xf4, 0x6d, + 0x72, 0x64, 0xca, 0x7f, 0x6f, 0x9e, 0x7d, 0x3d, 0xfe, 0x82, 0x19, 0xa7, 0x9b, 0xf1, 0x66, 0xab, + 0xf1, 0x47, 0xe3, 0xac, 0x7e, 0xd9, 0x6c, 0x61, 0xd6, 0x09, 0xed, 0xfc, 0xe4, 0xea, 0xe2, 0xf2, + 0xb8, 0xc5, 0xe5, 0x5f, 0x48, 0x47, 0x6c, 0x67, 0x8d, 0xef, 0x65, 0x42, 0xdd, 0xf7, 0xfd, 0x48, + 0x7b, 0xf7, 0x41, 0x4f, 0xde, 0x4a, 0xd1, 0xa3, 0x17, 0xf7, 0xf3, 0xc3, 0x43, 0xdb, 0x43, 0xdb, + 0x43, 0xdb, 0x43, 0xdb, 0x43, 0xdb, 0x93, 0xaf, 0x5b, 0x2d, 0xef, 0x85, 0x96, 0xdd, 0xef, 0x51, + 0xa5, 0xc4, 0xa0, 0xed, 0x0f, 0x09, 0x87, 0xbc, 0x52, 0x72, 0xd2, 0xf1, 0x20, 0xa7, 0x7c, 0x15, + 0x44, 0xa2, 0x1b, 0xa8, 0x5e, 0x44, 0x79, 0xcb, 0x2d, 0x5f, 0xdd, 0x09, 0x72, 0x3d, 0xcd, 0xd0, + 0x5f, 0xee, 0x54, 0x2a, 0xbe, 0xde, 0xbf, 0xcc, 0x1d, 0x77, 0x27, 0x51, 0x13, 0xc6, 0xf1, 0xbf, + 0x86, 0x7e, 0x57, 0xcb, 0x40, 0x7d, 0x91, 0x77, 0xb1, 0xb5, 0xe7, 0xb7, 0xa2, 0xeb, 0xf4, 0xa9, + 0xff, 0xb8, 0xf5, 0x26, 0x57, 0x38, 0x2c, 0x95, 0x2a, 0xd5, 0x52, 0x29, 0x5f, 0x3d, 0xa8, 0xe6, + 0x6b, 0xe5, 0x72, 0xa1, 0x42, 0x19, 0x39, 0x75, 0xce, 0x0a, 0x33, 0xda, 0x45, 0xb2, 0x0d, 0x8d, + 0xfb, 0xcb, 0x66, 0x48, 0x55, 0xa8, 0x2c, 0x45, 0xaa, 0x68, 0x0a, 0x96, 0x41, 0xd7, 0x42, 0xd7, + 0x42, 0xd7, 0x42, 0xd7, 0x42, 0xd7, 0x2e, 0x58, 0xb7, 0x43, 0xa9, 0xf4, 0x41, 0x91, 0x41, 0xd2, + 0x56, 0x21, 0x29, 0x21, 0x29, 0x21, 0x29, 0x21, 0x29, 0x33, 0x60, 0x72, 0xa5, 0x62, 0xad, 0x54, + 0xab, 0x54, 0x8b, 0x35, 0x08, 0x49, 0x08, 0xc9, 0x6d, 0x16, 0x92, 0xb4, 0x02, 0x84, 0xb6, 0xc4, + 0x26, 0x64, 0x24, 0x64, 0x24, 0x64, 0x24, 0x64, 0x24, 0x64, 0xe4, 0x82, 0x75, 0x3b, 0x69, 0x56, + 0x48, 0x6e, 0xc3, 0x49, 0xea, 0xf3, 0x21, 0xed, 0x51, 0x2b, 0x2d, 0x42, 0x45, 0x2e, 0x27, 0x73, + 0x7f, 0xef, 0xee, 0x5e, 0xe7, 0xbd, 0x5a, 0xfb, 0xf9, 0xba, 0xe0, 0xd5, 0xda, 0xf1, 0xcb, 0xc2, + 0xe4, 0x9f, 0xf8, 0x75, 0xf1, 0x3a, 0xef, 0x95, 0x66, 0xaf, 0xcb, 0xd7, 0x79, 0xaf, 0xdc, 0xde, + 0xfb, 0xeb, 0xaf, 0x4f, 0x7b, 0x3f, 0x0e, 0x46, 0xef, 0xff, 0xe0, 0xfe, 0x74, 0xb0, 0xbd, 0xe7, + 0xdd, 0xeb, 0x82, 0x57, 0x6c, 0xcf, 0xfe, 0xe3, 0xe0, 0x3a, 0xef, 0x15, 0xdb, 0x7b, 0x7b, 0xbf, + 0xe5, 0xc0, 0xc0, 0x1c, 0x64, 0x60, 0xd3, 0xa3, 0x60, 0x56, 0x1b, 0x33, 0x2d, 0x75, 0x02, 0xaf, + 0x07, 0x07, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x23, 0x5f, 0xb7, 0x37, 0x41, + 0xd0, 0x17, 0xbe, 0xe2, 0xe0, 0x61, 0x85, 0xac, 0x40, 0xf5, 0x46, 0xd7, 0x0b, 0xb6, 0xdc, 0xbd, + 0x3e, 0x35, 0x9e, 0xf5, 0x16, 0xe7, 0xb3, 0xe6, 0xd8, 0xfb, 0x71, 0x2b, 0xdb, 0xf8, 0x1f, 0x1b, + 0xcd, 0xed, 0xe9, 0xec, 0xc0, 0x66, 0x35, 0xfd, 0xa1, 0xfa, 0xae, 0x82, 0xff, 0x29, 0xcf, 0xd7, + 0x3a, 0x94, 0x37, 0x56, 0x9a, 0x0b, 0x2f, 0x75, 0x3e, 0x0b, 0xc6, 0x46, 0x9d, 0x7d, 0x57, 0x29, + 0x1f, 0xea, 0xec, 0x67, 0x93, 0xd2, 0xa1, 0xce, 0xfe, 0x4a, 0xb3, 0x46, 0x56, 0x67, 0x3f, 0xe5, + 0x24, 0xe9, 0xb5, 0x7a, 0xfa, 0x12, 0x68, 0x15, 0x7b, 0x01, 0x8a, 0x1d, 0x8a, 0x1d, 0x8a, 0x1d, + 0x8a, 0xdd, 0x1d, 0xc5, 0x4e, 0xe5, 0xfe, 0x93, 0x01, 0x27, 0x55, 0xe5, 0x35, 0x75, 0x9c, 0x60, + 0x27, 0xd5, 0x75, 0x65, 0x72, 0x09, 0xc4, 0xa6, 0xcb, 0x93, 0xb9, 0x43, 0x0e, 0x07, 0x9c, 0xb0, + 0xe0, 0x06, 0x3c, 0x70, 0xc3, 0x84, 0x33, 0x70, 0xe1, 0x0c, 0x6c, 0x38, 0x03, 0x1f, 0xb4, 0x30, + 0x42, 0x0c, 0x27, 0xc9, 0x2c, 0x5f, 0x72, 0x38, 0xf8, 0x1d, 0xde, 0x1a, 0xa8, 0x29, 0xb6, 0x5f, + 0x65, 0x18, 0x3b, 0xd5, 0x7f, 0xf3, 0x05, 0xec, 0x32, 0x9a, 0xab, 0x48, 0x68, 0xda, 0x44, 0x2d, + 0x3b, 0x97, 0xda, 0x34, 0x45, 0x0b, 0x4f, 0x66, 0xed, 0x0a, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, + 0xd2, 0xc2, 0x41, 0x5a, 0xa8, 0xb5, 0xf0, 0xbc, 0x26, 0xee, 0x0b, 0xc6, 0x63, 0x4c, 0x73, 0xd2, + 0x78, 0x7c, 0x25, 0x1f, 0xb7, 0xf2, 0x6c, 0x0b, 0x17, 0xe8, 0xb8, 0x00, 0x3e, 0x6e, 0x81, 0x90, + 0x2b, 0x60, 0xe4, 0x1c, 0x28, 0x39, 0x07, 0x4e, 0xce, 0x81, 0x14, 0x0f, 0x58, 0x31, 0x81, 0x16, + 0xbf, 0xe2, 0x4e, 0xf9, 0x8d, 0xa1, 0x54, 0xba, 0x50, 0xe1, 0xf4, 0x19, 0x53, 0x14, 0xa9, 0x30, + 0x5e, 0x02, 0xcf, 0xe9, 0xeb, 0xb7, 0x7f, 0x78, 0x7d, 0xe6, 0x0e, 0xf7, 0xe9, 0x6c, 0xc7, 0xe8, + 0x45, 0xea, 0x72, 0x98, 0x4f, 0x6f, 0xa7, 0xae, 0xc7, 0x81, 0x13, 0xb5, 0x8e, 0xb8, 0xd3, 0x79, + 0x13, 0xf6, 0x1f, 0x61, 0xc2, 0x3f, 0x31, 0xe1, 0x4a, 0xb9, 0x7c, 0x50, 0x86, 0x19, 0xbb, 0xc5, + 0x45, 0xf8, 0x47, 0x6f, 0x7f, 0xd8, 0x8e, 0xfb, 0xe5, 0x28, 0x42, 0xc1, 0xb7, 0x93, 0xbe, 0x38, + 0x6c, 0xc0, 0xb0, 0xa3, 0x8e, 0xb8, 0x01, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, 0xb8, 0x41, + 0x46, 0xe2, 0x06, 0x87, 0x0e, 0x84, 0x0d, 0xca, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, + 0x06, 0x08, 0x1b, 0x58, 0x37, 0xe1, 0x62, 0x19, 0x41, 0x03, 0x04, 0x0d, 0x10, 0x34, 0xa0, 0x0d, + 0x1a, 0x3c, 0x4c, 0x57, 0x9f, 0x0b, 0x51, 0x83, 0xf8, 0x5a, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, + 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0xe0, 0x9d, 0x7e, 0xe3, 0x46, 0x2a, 0x3f, 0x7c, 0x72, + 0x20, 0x6e, 0x50, 0x63, 0xbc, 0x84, 0x13, 0xa1, 0xee, 0x26, 0x89, 0xff, 0x08, 0x1c, 0x20, 0x70, + 0xf0, 0x53, 0xd5, 0x55, 0x80, 0xe6, 0x42, 0xe0, 0x60, 0xb3, 0x4d, 0x18, 0xf9, 0x06, 0x08, 0x1d, + 0x20, 0x74, 0x40, 0x6a, 0xe6, 0xe2, 0x51, 0x0b, 0xd5, 0x23, 0x6c, 0x08, 0xbe, 0x94, 0xf2, 0x25, + 0x57, 0x82, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xef, + 0x0d, 0x1b, 0x90, 0x17, 0x8c, 0x5d, 0x06, 0x23, 0x44, 0x05, 0x64, 0xb7, 0x93, 0xb4, 0x04, 0x83, + 0x31, 0x33, 0xf7, 0xfb, 0xfc, 0xa4, 0x25, 0xb9, 0x12, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, + 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x96, 0xf4, 0x1c, 0x0f, 0xfc, 0x50, 0x4b, 0x17, + 0x38, 0xcb, 0xec, 0x42, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, + 0x40, 0x59, 0x40, 0x59, 0xd2, 0x73, 0xac, 0x43, 0x5f, 0x45, 0x52, 0xcb, 0x07, 0x07, 0xf2, 0x4a, + 0x5f, 0x5d, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, + 0x8b, 0xf3, 0xc4, 0x25, 0xd3, 0xe5, 0x45, 0x89, 0x3b, 0x14, 0xa6, 0xc6, 0x67, 0xea, 0x58, 0x98, + 0x6e, 0x8e, 0x97, 0xfe, 0x11, 0x45, 0x5b, 0x43, 0x3e, 0x63, 0xcb, 0x56, 0xc7, 0x98, 0x3f, 0xc5, + 0x13, 0x47, 0xc9, 0x97, 0xdc, 0x89, 0x8c, 0x74, 0x5d, 0x6b, 0xe2, 0x76, 0x35, 0xa7, 0x52, 0x1d, + 0xf7, 0xc5, 0x98, 0x0f, 0x44, 0xb9, 0xa3, 0x1d, 0x35, 0xec, 0xf7, 0x09, 0xcb, 0xcd, 0x9f, 0xfa, + 0x8f, 0x7c, 0x83, 0x37, 0xc3, 0x9e, 0x08, 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xe8, 0x4c, 0x19, 0x31, + 0x93, 0x2f, 0x76, 0xd9, 0x07, 0xe7, 0x48, 0xfb, 0x28, 0x84, 0xc3, 0xae, 0x56, 0x53, 0xa6, 0xf5, + 0xf9, 0x6e, 0xd0, 0x69, 0xc9, 0x9b, 0x4e, 0xfd, 0x56, 0x5e, 0xf8, 0xb7, 0xb2, 0xd3, 0x18, 0x3c, + 0x94, 0xae, 0xe2, 0x5b, 0xed, 0x9c, 0x4d, 0x6f, 0xb0, 0x53, 0xef, 0xfd, 0xdb, 0x92, 0x37, 0xcd, + 0xa1, 0x3e, 0x0f, 0x22, 0xdd, 0x69, 0x8d, 0x6f, 0xab, 0x73, 0x15, 0xdf, 0x43, 0x3d, 0xb9, 0x05, + 0x74, 0x62, 0xe6, 0x5f, 0x63, 0xdb, 0xd2, 0x89, 0x79, 0x41, 0xd3, 0xdf, 0x4d, 0x6d, 0xcb, 0xfc, + 0x61, 0x83, 0xcc, 0x6c, 0xc6, 0x3f, 0xe2, 0xe8, 0xc5, 0xce, 0xf8, 0xb1, 0x7b, 0xd2, 0x56, 0x26, + 0x38, 0x0d, 0xe9, 0x20, 0x25, 0x19, 0xa4, 0xa4, 0x82, 0x86, 0x44, 0xd8, 0xb2, 0x34, 0x22, 0x47, + 0xc6, 0xe4, 0xc0, 0x2c, 0xe2, 0xbd, 0x21, 0x7c, 0xb7, 0xe3, 0x4f, 0xcd, 0x7b, 0x3b, 0xb3, 0xdf, + 0x68, 0xd8, 0x9a, 0x6d, 0x5b, 0x31, 0xb9, 0xf5, 0x9a, 0xb5, 0x0a, 0x73, 0xcf, 0xce, 0xe0, 0x73, + 0xb3, 0xd4, 0x67, 0xcc, 0x6a, 0x1f, 0x31, 0x4b, 0x7d, 0xc2, 0x5e, 0xf6, 0xb2, 0x8a, 0x86, 0xbf, + 0xd8, 0xe2, 0x1e, 0x15, 0xcd, 0xde, 0x93, 0xed, 0x3d, 0x25, 0xb2, 0xbd, 0x22, 0xb2, 0x3d, 0x20, + 0xb2, 0xbd, 0x1d, 0x20, 0x02, 0x0d, 0x22, 0x58, 0x08, 0x1b, 0x1b, 0x04, 0x84, 0x0f, 0x0e, 0x3d, + 0x7c, 0x5b, 0x0f, 0x9d, 0xee, 0x61, 0xe7, 0x8c, 0xe2, 0xeb, 0x7a, 0xfc, 0xd4, 0x8c, 0xc9, 0xad, + 0x6f, 0x20, 0x06, 0x8c, 0x23, 0x37, 0x37, 0xcf, 0xa1, 0x39, 0x38, 0x79, 0x29, 0xf3, 0xf6, 0x66, + 0x00, 0x43, 0x06, 0x6d, 0x96, 0x6f, 0x18, 0xcf, 0x99, 0xb1, 0xc1, 0x2f, 0xec, 0xf2, 0x0a, 0x5b, + 0x7c, 0xc2, 0x3a, 0x8f, 0xb0, 0xce, 0x1f, 0xac, 0xf3, 0x06, 0xb7, 0xa0, 0xc2, 0x74, 0x1f, 0xcc, + 0xdc, 0x54, 0xb8, 0x59, 0xd3, 0x33, 0xd3, 0xef, 0x87, 0xa0, 0x81, 0xa0, 0x81, 0xa0, 0xd9, 0x42, + 0x41, 0x63, 0xab, 0x71, 0x6f, 0xec, 0x58, 0xec, 0xd9, 0xe3, 0x9c, 0xff, 0xb2, 0x65, 0x8b, 0x76, + 0xfb, 0xb7, 0x5b, 0xcf, 0x35, 0xa6, 0xc8, 0x25, 0xa6, 0xcd, 0x15, 0xa6, 0xca, 0x05, 0x26, 0xcf, + 0xf5, 0x25, 0xcf, 0xe5, 0x25, 0xcf, 0xd5, 0xdd, 0xac, 0x9d, 0x52, 0xdb, 0xfd, 0xcc, 0x73, 0xb3, + 0xcd, 0x57, 0xeb, 0x96, 0xfc, 0x72, 0x1e, 0xd5, 0xe6, 0x6e, 0xef, 0x5b, 0x97, 0x69, 0xf9, 0xf4, + 0x04, 0xd9, 0x31, 0x0d, 0xca, 0xe3, 0x18, 0x3c, 0xc7, 0x2e, 0xa8, 0x8f, 0x57, 0xb0, 0x1d, 0xa3, + 0x60, 0x3b, 0x2e, 0xc1, 0x76, 0x2c, 0x62, 0xb3, 0x73, 0xa1, 0xc8, 0x8e, 0x33, 0x24, 0xeb, 0xae, 0x2f, 0xfc, 0xdb, 0x50, 0xdc, 0x52, 0x2c, 0xba, 0x19, 0xb3, 0xac, 0x12, 0x8c, 0x75, 0x3e, 0x0d, - 0x2e, 0x7f, 0xfa, 0x14, 0x07, 0xfc, 0xf7, 0x67, 0x50, 0xb0, 0xa9, 0xb9, 0x56, 0x16, 0xf9, 0xe5, + 0x30, 0x7f, 0xfa, 0x14, 0x07, 0xfd, 0xf7, 0x67, 0x50, 0xb0, 0xa9, 0x39, 0x57, 0x16, 0xf9, 0xe5, 0x80, 0xc6, 0xdd, 0xbf, 0xa0, 0x32, 0x09, 0xb9, 0x04, 0x28, 0x03, 0x94, 0x01, 0xca, 0x00, 0x65, - 0x80, 0xb2, 0xc3, 0xa0, 0x1c, 0x2f, 0x3b, 0x60, 0x72, 0x6a, 0xaa, 0xec, 0x24, 0x73, 0x2d, 0x35, - 0x38, 0x1b, 0xc9, 0x5d, 0x4b, 0x4d, 0x0d, 0x88, 0x0c, 0x44, 0x06, 0x22, 0x03, 0x91, 0x57, 0x9f, - 0x35, 0xdb, 0x91, 0xca, 0x64, 0xa0, 0xc9, 0x51, 0x55, 0xa9, 0x7a, 0x82, 0xae, 0x20, 0xc9, 0x7c, - 0x8b, 0xc3, 0x78, 0x6c, 0xaa, 0xf3, 0xb9, 0xa4, 0xa5, 0x67, 0xc8, 0x4b, 0xcd, 0x70, 0x94, 0x96, - 0xe1, 0x2d, 0x25, 0xc3, 0x55, 0x3a, 0x86, 0xbd, 0x54, 0x0c, 0x7b, 0x69, 0x18, 0xf6, 0x52, 0x30, - 0xd9, 0xaa, 0x1c, 0x40, 0x5e, 0xda, 0x85, 0x41, 0x8a, 0x71, 0x48, 0xb2, 0x45, 0xd2, 0xec, 0x3f, - 0xfe, 0x4e, 0x20, 0x29, 0x12, 0x3a, 0x4a, 0x5e, 0x4d, 0x85, 0x5c, 0x0c, 0x53, 0x59, 0x39, 0x45, + 0x80, 0xb2, 0xc3, 0xa0, 0x1c, 0x2f, 0x3b, 0x60, 0x72, 0x6a, 0xaa, 0xec, 0x64, 0x74, 0x2d, 0x35, + 0x38, 0x1b, 0x19, 0x5e, 0x4b, 0x4d, 0x0d, 0x88, 0x0c, 0x44, 0x06, 0x22, 0x03, 0x91, 0x57, 0x9f, + 0x35, 0xdb, 0x91, 0xca, 0x64, 0xa0, 0xc9, 0xa9, 0x55, 0xa9, 0x7a, 0x82, 0xae, 0x38, 0xc9, 0x7c, + 0xbb, 0xc3, 0x78, 0x6c, 0xaa, 0xa3, 0xba, 0xa4, 0x65, 0x68, 0xc8, 0xcb, 0xce, 0x70, 0x94, 0x99, + 0xe1, 0x2d, 0x2b, 0xc3, 0x55, 0x46, 0x86, 0xbd, 0x6c, 0x0c, 0x7b, 0x99, 0x18, 0xf6, 0xb2, 0x30, + 0xd9, 0x2a, 0x22, 0x40, 0x5e, 0xe6, 0x85, 0x41, 0x8a, 0x71, 0x48, 0xb2, 0x45, 0xd2, 0xec, 0x3f, + 0xfe, 0x4e, 0x20, 0x29, 0x12, 0x3a, 0x4a, 0x5e, 0x4d, 0x85, 0x5c, 0x0c, 0x53, 0x59, 0x39, 0x4e, 0x4d, 0xc0, 0xac, 0xbb, 0xc1, 0xfd, 0xfd, 0x50, 0x49, 0xfd, 0xc4, 0xc5, 0x2e, 0xde, 0x5e, 0x00, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x27, 0xc5, 0x98, 0xe1, 0x92, 0x14, 0x51, 0xf2, 0xfa, 0x09, 0x2c, 0x63, 0xb5, 0x29, 0x17, 0x8f, 0xda, 0x63, 0x67, 0x1a, 0x8b, 0x2e, 0x02, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x83, 0x93, 0x6d, 0xbc, 0xc6, 0xa6, 0x31, 0xe3, 0x98, 0xc3, 0x2a, 0xb0, 0x8e, 0xd5, 0xa6, 0x5e, 0xaa, 0x07, - 0xbf, 0x2f, 0x7b, 0x5e, 0x28, 0xfc, 0x88, 0xb0, 0x4a, 0x62, 0x62, 0xe1, 0x6f, 0xc6, 0x07, 0xd7, + 0xbf, 0x2f, 0x7b, 0x5e, 0x28, 0xfc, 0x88, 0xb0, 0x60, 0x62, 0x62, 0xe1, 0x6f, 0xc6, 0x07, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x20, 0x5f, 0xb7, 0xb2, 0x27, 0x94, 0x96, 0xfa, 0x89, 0x89, 0x6f, 0x94, 0x09, 0xc7, 0x6c, 0x4c, 0x6f, 0xf5, 0xb3, 0x1f, 0x31, 0xb8, 0x8c, 0xd9, 0x84, 0x37, 0xce, 0xbe, 0xd5, 0x4f, 0x1a, 0x5f, 0x3a, 0xad, 0xe6, 0xd5, 0xe5, 0x71, 0xa7, 0x75, 0x5c, 0xbf, 0x68, 0x9e, 0x51, 0x7b, 0x8f, 0x6f, 0x7e, 0x7f, 0x38, 0x39, 0xbd, 0x7f, 0x4d, 0x5e, - 0xa7, 0x9e, 0xb9, 0x79, 0xd0, 0x6c, 0xf6, 0x9b, 0xad, 0xc6, 0x1f, 0x8d, 0xb3, 0xfa, 0x65, 0xb3, - 0x95, 0xdb, 0x86, 0x06, 0x4e, 0x8e, 0xcc, 0xfa, 0xef, 0x27, 0x57, 0x17, 0x97, 0xc7, 0xad, 0xce, - 0x49, 0xb3, 0x79, 0x8e, 0x79, 0xa7, 0x9b, 0xf7, 0xfa, 0x05, 0xa6, 0x9c, 0xda, 0xd4, 0x9b, 0x67, - 0x5f, 0x8f, 0xbf, 0xe4, 0x32, 0xde, 0x64, 0xa5, 0x9d, 0x35, 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, - 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0x8f, 0x5e, 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, - 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, 0x6e, 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, - 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, 0x1c, 0xf2, 0x4a, 0xc9, 0x49, 0xcf, 0x83, 0x9c, 0xf2, - 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, 0xe5, 0x2d, 0xb7, 0x7c, 0x75, 0x27, 0xc8, 0xf5, 0x34, - 0x43, 0x97, 0xb9, 0x53, 0xa9, 0xf8, 0x3a, 0x00, 0x33, 0xf7, 0xdd, 0x9d, 0x44, 0x4d, 0x18, 0xc7, - 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, 0x45, 0xde, 0xc5, 0xd6, 0x9e, 0xdf, 0x8a, 0xde, 0xd3, - 0xa7, 0xfe, 0xe3, 0xd6, 0x9b, 0x5c, 0xe1, 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, - 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x0a, 0x65, 0xe4, 0xd4, 0x39, 0x2b, 0xcc, 0x68, 0x2b, 0xc9, 0x36, - 0x34, 0xee, 0x2f, 0x9b, 0x21, 0x55, 0xa1, 0xb2, 0x14, 0xa9, 0xa2, 0x29, 0x58, 0x06, 0x5d, 0x0b, - 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0xbb, 0x60, 0xdd, 0x0e, 0xa5, 0xd2, 0x07, 0x45, 0x06, - 0x49, 0x5b, 0x85, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0xcc, 0x80, 0xc9, 0x95, 0x8a, 0xb5, - 0x52, 0xad, 0x52, 0x2d, 0xd6, 0x20, 0x24, 0x21, 0x24, 0xb7, 0x59, 0x48, 0xd2, 0x0a, 0x10, 0xda, - 0x12, 0x9b, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x0b, 0xd6, 0xed, 0xa4, - 0x55, 0x21, 0xb9, 0x0d, 0x27, 0xa9, 0xcf, 0x87, 0xb4, 0x47, 0xad, 0xb4, 0x08, 0x15, 0xb9, 0x9c, - 0xcc, 0xfd, 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, 0x6a, 0xed, 0xe7, 0xeb, 0x82, 0x57, 0x6b, 0xc7, 0x2f, - 0x0b, 0x93, 0x7f, 0xe2, 0xd7, 0xc5, 0xeb, 0xbc, 0x57, 0x9a, 0xbd, 0x2e, 0x5f, 0xe7, 0xbd, 0x72, - 0x7b, 0xef, 0xaf, 0xbf, 0x3e, 0xed, 0xfd, 0x38, 0x18, 0xbd, 0xff, 0x83, 0xfb, 0xd3, 0xc1, 0xf6, - 0x9e, 0x77, 0xaf, 0x0b, 0x5e, 0xb1, 0x3d, 0xfb, 0x8f, 0x83, 0xeb, 0xbc, 0x57, 0x6c, 0xef, 0xed, - 0xfd, 0x96, 0x03, 0x03, 0x73, 0x90, 0x81, 0x4d, 0x8f, 0x82, 0x59, 0x6d, 0xcc, 0xb4, 0xd4, 0x09, - 0xbc, 0x1e, 0x1c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x8c, 0x7c, 0xdd, 0xde, - 0x04, 0x41, 0x5f, 0xf8, 0x8a, 0x83, 0x87, 0x15, 0xb2, 0x02, 0xd5, 0x1b, 0x5d, 0x2f, 0xd8, 0x72, - 0xf3, 0xfa, 0xd4, 0x78, 0x24, 0x0d, 0xce, 0x43, 0xb1, 0x1f, 0x37, 0xb2, 0x8d, 0xff, 0xb1, 0xd1, - 0xd8, 0x9e, 0xce, 0x0a, 0x6c, 0xd6, 0xd2, 0x1f, 0xaa, 0xef, 0x2a, 0xf8, 0x9f, 0xf2, 0x7c, 0xad, - 0x43, 0x79, 0x63, 0xa5, 0xb5, 0xf0, 0x52, 0xd7, 0xb3, 0x60, 0x6c, 0x54, 0xd9, 0x77, 0x95, 0xf0, - 0xa1, 0xca, 0x7e, 0x36, 0x09, 0x1d, 0xaa, 0xec, 0xaf, 0x34, 0x6b, 0x64, 0x55, 0xf6, 0x53, 0x4e, - 0x92, 0x5e, 0xa9, 0xa7, 0x2f, 0x81, 0x56, 0xaf, 0x17, 0xa0, 0xd7, 0xa1, 0xd7, 0xa1, 0xd7, 0xa1, - 0xd7, 0xdd, 0xd1, 0xeb, 0x54, 0xee, 0x3f, 0x19, 0x70, 0x52, 0x53, 0x5e, 0x53, 0x47, 0x09, 0x76, - 0x52, 0x3d, 0x57, 0x26, 0x97, 0x40, 0x6c, 0xba, 0x3c, 0x79, 0x3b, 0xe4, 0x70, 0xc0, 0x09, 0x0b, - 0x6e, 0xc0, 0x03, 0x37, 0x4c, 0x38, 0x03, 0x17, 0xce, 0xc0, 0x86, 0x33, 0xf0, 0x41, 0x0b, 0x23, - 0xc4, 0x70, 0x92, 0xcc, 0xf2, 0x25, 0x87, 0x83, 0xdf, 0xe1, 0xad, 0x80, 0x9a, 0x62, 0xfb, 0x55, - 0x86, 0xb1, 0x53, 0xdd, 0x37, 0x5f, 0xc0, 0x2e, 0xa3, 0x99, 0x8a, 0x84, 0xa6, 0x4d, 0xd4, 0xb0, - 0x73, 0xa9, 0x4d, 0x53, 0x34, 0xf0, 0x64, 0xd6, 0xae, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, - 0x2d, 0x1c, 0xa4, 0x85, 0x5a, 0x0b, 0xcf, 0x6b, 0xe2, 0xbe, 0x60, 0x3c, 0xc4, 0x34, 0x27, 0x8d, - 0xc7, 0x57, 0xf2, 0x71, 0x2b, 0x4f, 0xb6, 0x70, 0x81, 0x8e, 0x0b, 0xe0, 0xe3, 0x16, 0x08, 0xb9, - 0x02, 0x46, 0xce, 0x81, 0x92, 0x73, 0xe0, 0xe4, 0x1c, 0x48, 0xf1, 0x80, 0x15, 0x13, 0x68, 0xf1, - 0x2b, 0xee, 0x94, 0xdf, 0x18, 0x4a, 0xa5, 0x0b, 0x15, 0x4e, 0x9f, 0x31, 0x45, 0x91, 0x0a, 0xe3, - 0x25, 0xf0, 0x9c, 0xbd, 0x7e, 0xfb, 0x87, 0xd7, 0x67, 0xee, 0x70, 0x9f, 0xcd, 0x76, 0x8c, 0x5e, - 0xa4, 0x2e, 0x87, 0xf9, 0xec, 0x76, 0xea, 0x7a, 0x1c, 0x38, 0x4f, 0xeb, 0x88, 0x3b, 0x9d, 0x37, - 0x61, 0xff, 0x11, 0x26, 0xfc, 0x13, 0x13, 0xae, 0x94, 0xcb, 0x07, 0x65, 0x98, 0xb1, 0x5b, 0x5c, - 0x84, 0x7f, 0xf4, 0xf6, 0x87, 0xed, 0xb8, 0x5f, 0x8e, 0x12, 0x14, 0x7c, 0x3b, 0xe9, 0x8b, 0xc3, - 0x06, 0x0c, 0x3b, 0xea, 0x88, 0x1b, 0x20, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x88, 0x1b, 0x64, - 0x24, 0x6e, 0x70, 0xe8, 0x40, 0xd8, 0xa0, 0x8c, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, - 0x80, 0xb0, 0x81, 0x75, 0x13, 0x2e, 0x96, 0x11, 0x34, 0x40, 0xd0, 0x00, 0x41, 0x03, 0xda, 0xa0, - 0xc1, 0xc3, 0x74, 0xf5, 0xb9, 0x10, 0x35, 0x88, 0xaf, 0x05, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, - 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0xde, 0xe9, 0x37, 0x6e, 0xa4, 0xf2, 0xc3, 0x27, 0x07, - 0xe2, 0x06, 0x35, 0xc6, 0x4b, 0x38, 0x11, 0xea, 0x6e, 0x92, 0xf8, 0x8f, 0xc0, 0x01, 0x02, 0x07, - 0x3f, 0x55, 0x5d, 0x05, 0x68, 0x2e, 0x04, 0x0e, 0x36, 0xdb, 0x84, 0x91, 0x6f, 0x80, 0xd0, 0x01, - 0x42, 0x07, 0xa4, 0x66, 0x2e, 0x1e, 0xb5, 0x50, 0x3d, 0xc2, 0x76, 0xe0, 0x4b, 0x29, 0x5f, 0x72, - 0x25, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0xf0, 0xde, - 0xb0, 0x01, 0x79, 0xb9, 0xd8, 0x65, 0x30, 0x42, 0x54, 0x3e, 0x76, 0x3b, 0x49, 0x4b, 0x30, 0x18, - 0x33, 0x73, 0xbf, 0xcf, 0x4f, 0x5a, 0x92, 0x2b, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, - 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0x49, 0xcf, 0xf1, 0xc0, 0x0f, 0xb5, 0x74, 0x81, - 0xb3, 0xcc, 0x2e, 0x04, 0x94, 0x05, 0x94, 0x05, 0x94, 0x05, 0x94, 0x05, 0x94, 0x05, 0x94, 0x05, - 0x94, 0x05, 0x94, 0x25, 0x3d, 0xc7, 0x3a, 0xf4, 0x55, 0x24, 0xb5, 0x7c, 0x70, 0x20, 0xaf, 0xf4, - 0xd5, 0xb5, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, - 0x38, 0x4f, 0x5c, 0x32, 0x5d, 0x5e, 0x94, 0xb8, 0x3f, 0x61, 0x6a, 0x7c, 0x96, 0x7e, 0x85, 0xe9, - 0xd6, 0x78, 0xe9, 0x1f, 0x51, 0x34, 0x35, 0xe4, 0x33, 0xb5, 0x6c, 0xf5, 0x8b, 0xf9, 0x53, 0x3c, - 0x71, 0x14, 0x7c, 0xc9, 0x9d, 0xc8, 0x48, 0xd7, 0xb5, 0x26, 0x6e, 0x56, 0x73, 0x2a, 0xd5, 0x71, - 0x5f, 0x8c, 0xd9, 0x40, 0x94, 0x3b, 0xda, 0x51, 0xc3, 0x7e, 0x9f, 0xb0, 0xd8, 0xfc, 0xa9, 0xff, - 0xc8, 0x37, 0x78, 0x33, 0xec, 0x89, 0x50, 0xf4, 0x3e, 0x3f, 0x4d, 0x87, 0xce, 0x94, 0x11, 0x33, - 0x79, 0x62, 0x77, 0x3d, 0x70, 0x8e, 0xb4, 0x87, 0x42, 0x38, 0xec, 0x6a, 0x35, 0x65, 0x59, 0x9f, - 0xef, 0x06, 0x9d, 0x96, 0xbc, 0xe9, 0xd4, 0x6f, 0xe5, 0x85, 0x7f, 0x2b, 0x3b, 0x8d, 0xc1, 0x43, - 0xe9, 0x2a, 0xbe, 0xd1, 0xce, 0xd9, 0xf4, 0xf6, 0x3a, 0xf5, 0xde, 0xbf, 0x2d, 0x79, 0xd3, 0x50, - 0xe7, 0xa1, 0xe8, 0xb4, 0xc6, 0x37, 0xd5, 0xb9, 0x8a, 0xef, 0xa0, 0x9e, 0xdc, 0x00, 0x3a, 0x30, - 0xf3, 0xaf, 0xaf, 0xed, 0xe8, 0xc0, 0xbc, 0xa0, 0xd9, 0xef, 0xa6, 0xb6, 0x63, 0xfe, 0xb0, 0x41, - 0x46, 0x36, 0x63, 0x1e, 0x71, 0xd4, 0x62, 0x67, 0xfc, 0xd0, 0x3d, 0x69, 0x2b, 0x03, 0x9c, 0x86, - 0x6e, 0x90, 0xd2, 0x0b, 0x52, 0x3a, 0x41, 0x43, 0x1f, 0x6c, 0x59, 0x1a, 0x91, 0x1b, 0x63, 0x71, - 0x5f, 0x16, 0x91, 0xde, 0x08, 0xb2, 0xdb, 0xf1, 0xa5, 0xe6, 0x3d, 0x9d, 0xd9, 0x6f, 0x34, 0x6c, - 0xc9, 0xb6, 0x2d, 0x98, 0xd8, 0x72, 0xcd, 0xda, 0x84, 0xb9, 0x27, 0x67, 0xf0, 0xa9, 0x59, 0xea, - 0x2c, 0x66, 0xb5, 0x73, 0x98, 0xa5, 0xce, 0x60, 0x2f, 0xbb, 0x57, 0x45, 0xc3, 0x5f, 0x6c, 0x71, - 0x57, 0x8a, 0x66, 0xb7, 0xc9, 0xf6, 0x2e, 0x12, 0xd9, 0xee, 0x10, 0xd9, 0xae, 0x0f, 0xd9, 0x6e, - 0x0e, 0xf0, 0x80, 0x02, 0x0f, 0x2c, 0x04, 0x8a, 0x0d, 0xc2, 0xc1, 0x07, 0x87, 0x1e, 0xbd, 0xad, - 0x47, 0x4e, 0xf5, 0xa8, 0x73, 0x46, 0xb1, 0x75, 0x1d, 0x5e, 0x6a, 0xc6, 0xdc, 0xd6, 0x37, 0x0e, - 0x03, 0x86, 0x91, 0x9b, 0xcd, 0x71, 0x30, 0xd4, 0xde, 0x20, 0x88, 0xb4, 0x31, 0xd3, 0x78, 0xa9, - 0xe9, 0xf6, 0x76, 0x04, 0x43, 0xe6, 0x6c, 0x96, 0x6b, 0x18, 0xcf, 0x90, 0xb1, 0xc1, 0x2d, 0xec, - 0x72, 0x0a, 0x5b, 0x5c, 0xc2, 0x3a, 0x87, 0xb0, 0xce, 0x1d, 0xac, 0x73, 0x06, 0xb7, 0x80, 0xc2, - 0x74, 0xd7, 0xcb, 0xdc, 0x54, 0xb4, 0x59, 0xd3, 0x32, 0xd3, 0xef, 0x87, 0x98, 0x81, 0x98, 0x81, - 0x98, 0xd9, 0x42, 0x31, 0x63, 0xab, 0x4d, 0x6f, 0xec, 0x58, 0xec, 0xd9, 0xe3, 0x9c, 0xff, 0xb2, - 0x65, 0x8b, 0x76, 0xbb, 0xb5, 0x5b, 0xcf, 0x2c, 0xa6, 0xc8, 0x1c, 0xa6, 0xcd, 0x0c, 0xa6, 0xca, - 0xfc, 0x25, 0xcf, 0xec, 0x25, 0xcf, 0xdc, 0x25, 0xcf, 0xcc, 0xdd, 0xac, 0xfd, 0x51, 0xdb, 0xdd, - 0xcb, 0x73, 0xb3, 0x2d, 0x57, 0xeb, 0x96, 0xfc, 0x72, 0xfa, 0xd4, 0xe6, 0x1e, 0xef, 0x5b, 0x97, - 0x69, 0xf9, 0xac, 0x04, 0xd9, 0xa1, 0x0c, 0xca, 0xc3, 0x17, 0x3c, 0x87, 0x2c, 0xa8, 0x0f, 0x53, - 0xb0, 0x1d, 0x9a, 0x60, 0x3b, 0x1c, 0xc1, 0x76, 0x08, 0x62, 0xb3, 0xf3, 0x9f, 0xc8, 0x0e, 0x2f, - 0x24, 0xeb, 0xae, 0x2f, 0xfc, 0xdb, 0x50, 0xdc, 0x52, 0x2c, 0xba, 0x19, 0xb3, 0xac, 0x12, 0x8c, - 0x75, 0x3e, 0x0d, 0x2f, 0x7f, 0xfa, 0x14, 0x87, 0xfc, 0xf7, 0x67, 0x50, 0xb0, 0xa9, 0x99, 0x56, - 0x16, 0xf9, 0xe5, 0x80, 0xc6, 0xdd, 0xbf, 0xa0, 0x32, 0x09, 0xb9, 0x04, 0x28, 0x03, 0x94, 0x01, - 0xca, 0x00, 0x65, 0x80, 0xb2, 0xc3, 0xa0, 0x1c, 0x2f, 0x3b, 0x60, 0x72, 0x6a, 0xaa, 0xec, 0x64, - 0x73, 0x2d, 0x35, 0x38, 0x1b, 0xd9, 0x5d, 0x4b, 0x4d, 0x0d, 0x88, 0x0c, 0x44, 0x06, 0x22, 0x03, - 0x91, 0x57, 0x9f, 0x35, 0xdb, 0x91, 0xca, 0x64, 0xa0, 0xc9, 0x29, 0x55, 0xa9, 0x7a, 0x82, 0xae, - 0x14, 0xc9, 0x7c, 0x73, 0xc3, 0x78, 0x6c, 0xaa, 0xa3, 0xb9, 0xa4, 0x45, 0x67, 0xc8, 0x8b, 0xcc, - 0x70, 0x14, 0x95, 0xe1, 0x2d, 0x22, 0xc3, 0x55, 0x34, 0x86, 0xbd, 0x48, 0x0c, 0x7b, 0x51, 0x18, - 0xf6, 0x22, 0x30, 0xd9, 0x2a, 0x1a, 0x40, 0x5e, 0xd4, 0x85, 0x41, 0x8a, 0x71, 0x48, 0xb2, 0x45, - 0xd2, 0xec, 0x3f, 0xfe, 0x4e, 0x20, 0x29, 0x12, 0x3a, 0x4a, 0x5e, 0x4d, 0x85, 0x5c, 0x0c, 0x53, - 0x59, 0x39, 0x42, 0x4d, 0xc0, 0xac, 0xbb, 0xc1, 0xfd, 0xfd, 0x50, 0x49, 0xfd, 0xc4, 0xc5, 0x2e, - 0xde, 0x5e, 0x00, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x28, 0x06, 0x27, - 0xc5, 0x98, 0xe1, 0x92, 0x14, 0x51, 0xf2, 0xfa, 0x09, 0x2c, 0x63, 0xb5, 0x29, 0x17, 0x8f, 0xda, - 0x63, 0x67, 0x1a, 0x8b, 0x2e, 0x02, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, - 0x6c, 0x83, 0x93, 0x6d, 0xbc, 0xc6, 0xa6, 0x31, 0xe3, 0x98, 0xc3, 0x2a, 0xb0, 0x8e, 0xd5, 0xa6, - 0x5e, 0xaa, 0x07, 0xbf, 0x2f, 0x7b, 0x5e, 0x28, 0xfc, 0x88, 0xb0, 0x40, 0x62, 0x62, 0xe1, 0x6f, - 0xc6, 0x07, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x20, 0x5f, 0xb7, 0xb2, 0x27, - 0x94, 0x96, 0xfa, 0x89, 0x89, 0x6f, 0x94, 0x09, 0xc7, 0x6c, 0x4c, 0x6f, 0xf5, 0xb3, 0x1f, 0x31, - 0xb8, 0x8c, 0xd9, 0x84, 0x37, 0xce, 0xbe, 0xd5, 0x4f, 0x1a, 0x5f, 0x3a, 0xad, 0xe6, 0xd5, 0xe5, - 0x71, 0xa7, 0x75, 0x5c, 0xbf, 0x68, 0x9e, 0x51, 0x7b, 0x8f, 0x6f, 0x7e, 0x7f, 0x38, 0x39, 0xbd, - 0x7f, 0x4d, 0x5e, 0xa1, 0x9e, 0xb9, 0x6d, 0xd0, 0x6c, 0xf6, 0x9b, 0xad, 0xc6, 0x1f, 0x8d, 0xb3, - 0xfa, 0x65, 0xb3, 0x95, 0xdb, 0x86, 0xd6, 0x4d, 0x8e, 0xcc, 0xfa, 0xef, 0x27, 0x57, 0x17, 0x97, - 0xc7, 0xad, 0xce, 0x49, 0xb3, 0x79, 0x8e, 0x79, 0xa7, 0x9b, 0xf7, 0xfa, 0x05, 0xa6, 0x9c, 0xda, - 0xd4, 0x9b, 0x67, 0x5f, 0x8f, 0xbf, 0xe4, 0x32, 0xde, 0x5e, 0xa5, 0x9d, 0x35, 0xbe, 0x97, 0x09, - 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0x8f, 0x5e, 0xdc, 0xcf, 0x0f, - 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, 0x6e, 0xb5, 0xbc, 0x17, - 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, 0x1c, 0xf2, 0x4a, 0xc9, 0x49, 0xc7, - 0x83, 0x9c, 0xf2, 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, 0xe5, 0x2d, 0xb7, 0x7c, 0x75, 0x27, - 0xc8, 0xf5, 0x34, 0x43, 0x7f, 0xb9, 0x53, 0xa9, 0xf8, 0x7a, 0xff, 0x32, 0x77, 0xdc, 0x9d, 0x44, - 0x4d, 0x18, 0xc7, 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, 0x45, 0xde, 0xc5, 0xd6, 0x9e, 0xdf, - 0x8a, 0xae, 0xd3, 0xa7, 0xfe, 0xe3, 0xd6, 0x9b, 0x5c, 0xe1, 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, - 0x7c, 0xf5, 0xa0, 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x0a, 0x65, 0xe4, 0xd4, 0x39, 0x2b, 0xcc, 0x68, - 0x17, 0xc9, 0x36, 0x34, 0xee, 0x2f, 0x9b, 0x21, 0x55, 0xa1, 0xb2, 0x14, 0xa9, 0xa2, 0x29, 0x58, - 0x06, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0xbb, 0x60, 0xdd, 0x0e, 0xa5, 0xd2, - 0x07, 0x45, 0x06, 0x49, 0x5b, 0x85, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0xcc, 0x80, 0xc9, - 0x95, 0x8a, 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0x20, 0x24, 0x21, 0x24, 0xb7, 0x59, 0x48, 0xd2, - 0x0a, 0x10, 0xda, 0x12, 0x9b, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x0b, - 0xd6, 0xed, 0xa4, 0x59, 0x21, 0xb9, 0x0d, 0x27, 0xa9, 0xcf, 0x87, 0xb4, 0x47, 0xad, 0xb4, 0x08, - 0x15, 0xb9, 0x9c, 0xcc, 0xfd, 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, 0x6a, 0xed, 0xe7, 0xeb, 0x82, 0x57, - 0x6b, 0xc7, 0x2f, 0x0b, 0x93, 0x7f, 0xe2, 0xd7, 0xc5, 0xeb, 0xbc, 0x57, 0x9a, 0xbd, 0x2e, 0x5f, - 0xe7, 0xbd, 0x72, 0x7b, 0xef, 0xaf, 0xbf, 0x3e, 0xed, 0xfd, 0x38, 0x18, 0xbd, 0xff, 0x83, 0xfb, - 0xd3, 0xc1, 0xf6, 0x9e, 0x77, 0xaf, 0x0b, 0x5e, 0xb1, 0x3d, 0xfb, 0x8f, 0x83, 0xeb, 0xbc, 0x57, - 0x6c, 0xef, 0xed, 0xfd, 0x96, 0x03, 0x03, 0x73, 0x90, 0x81, 0x4d, 0x8f, 0x82, 0x59, 0x6d, 0xcc, - 0xb4, 0xd4, 0x09, 0xbc, 0x1e, 0x1c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x0c, 0x5c, 0x8c, - 0x7c, 0xdd, 0xde, 0x04, 0x41, 0x5f, 0xf8, 0x8a, 0x83, 0x87, 0x15, 0xb2, 0x02, 0xd5, 0x1b, 0x5d, - 0x2f, 0xd8, 0x72, 0xf7, 0xfa, 0xd4, 0x78, 0xd6, 0x5b, 0x9c, 0xcf, 0x9a, 0x63, 0xef, 0xc7, 0xad, - 0x6c, 0xe3, 0x7f, 0x6c, 0x34, 0xb7, 0xa7, 0xb3, 0x03, 0x9b, 0xd5, 0xf4, 0x87, 0xea, 0xbb, 0x0a, - 0xfe, 0xa7, 0x3c, 0x5f, 0xeb, 0x50, 0xde, 0x58, 0x69, 0x2e, 0xbc, 0xd4, 0xf9, 0x2c, 0x18, 0x1b, - 0x75, 0xf6, 0x5d, 0xa5, 0x7c, 0xa8, 0xb3, 0x9f, 0x4d, 0x4a, 0x87, 0x3a, 0xfb, 0x2b, 0xcd, 0x1a, - 0x59, 0x9d, 0xfd, 0x94, 0x93, 0xa4, 0xd7, 0xea, 0xe9, 0x4b, 0xa0, 0x55, 0xec, 0x05, 0x28, 0x76, - 0x28, 0x76, 0x28, 0x76, 0x28, 0x76, 0x77, 0x14, 0x3b, 0x95, 0xfb, 0x4f, 0x06, 0x9c, 0x54, 0x95, - 0xd7, 0xd4, 0x71, 0x82, 0x9d, 0x54, 0xd7, 0x95, 0xc9, 0x25, 0x10, 0x9b, 0x2e, 0x4f, 0xe6, 0x0e, - 0x39, 0x1c, 0x70, 0xc2, 0x82, 0x1b, 0xf0, 0xc0, 0x0d, 0x13, 0xce, 0xc0, 0x85, 0x33, 0xb0, 0xe1, - 0x0c, 0x7c, 0xd0, 0xc2, 0x08, 0x31, 0x9c, 0x24, 0xb3, 0x7c, 0xc9, 0xe1, 0xe0, 0x77, 0x78, 0x6b, - 0xa0, 0xa6, 0xd8, 0x7e, 0x95, 0x61, 0xec, 0x54, 0xff, 0xcd, 0x17, 0xb0, 0xcb, 0x68, 0xae, 0x22, - 0xa1, 0x69, 0x13, 0xb5, 0xec, 0x5c, 0x6a, 0xd3, 0x14, 0x2d, 0x3c, 0x99, 0xb5, 0x2b, 0x48, 0x0b, - 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, 0x07, 0x69, 0xa1, 0xd6, 0xc2, 0xf3, 0x9a, 0xb8, 0x2f, 0x18, - 0x8f, 0x31, 0xcd, 0x49, 0xe3, 0xf1, 0x95, 0x7c, 0xdc, 0xca, 0xb3, 0x2d, 0x5c, 0xa0, 0xe3, 0x02, - 0xf8, 0xb8, 0x05, 0x42, 0xae, 0x80, 0x91, 0x73, 0xa0, 0xe4, 0x1c, 0x38, 0x39, 0x07, 0x52, 0x3c, - 0x60, 0xc5, 0x04, 0x5a, 0xfc, 0x8a, 0x3b, 0xe5, 0x37, 0x86, 0x52, 0xe9, 0x42, 0x85, 0xd3, 0x67, - 0x4c, 0x51, 0xa4, 0xc2, 0x78, 0x09, 0x3c, 0xa7, 0xaf, 0xdf, 0xfe, 0xe1, 0xf5, 0x99, 0x3b, 0xdc, - 0xa7, 0xb3, 0x1d, 0xa3, 0x17, 0xa9, 0xcb, 0x61, 0x3e, 0xbd, 0x9d, 0xba, 0x1e, 0x07, 0x4e, 0xd4, - 0x3a, 0xe2, 0x4e, 0xe7, 0x4d, 0xd8, 0x7f, 0x84, 0x09, 0xff, 0xc4, 0x84, 0x2b, 0xe5, 0xf2, 0x41, - 0x19, 0x66, 0xec, 0x16, 0x17, 0xe1, 0x1f, 0xbd, 0xfd, 0x61, 0x3b, 0xee, 0x97, 0xa3, 0x08, 0x05, - 0xdf, 0x4e, 0xfa, 0xe2, 0xb0, 0x01, 0xc3, 0x8e, 0x3a, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, - 0xb8, 0x01, 0xe2, 0x06, 0x19, 0x89, 0x1b, 0x1c, 0x3a, 0x10, 0x36, 0x28, 0x23, 0x6c, 0x80, 0xb0, - 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x60, 0xdd, 0x84, 0x8b, 0x65, 0x04, 0x0d, 0x10, 0x34, - 0x40, 0xd0, 0x80, 0x36, 0x68, 0xf0, 0x30, 0x5d, 0x7d, 0x2e, 0x44, 0x0d, 0xe2, 0x6b, 0x41, 0xd8, - 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x83, 0x77, 0xfa, 0x8d, 0x1b, - 0xa9, 0xfc, 0xf0, 0xc9, 0x81, 0xb8, 0x41, 0x8d, 0xf1, 0x12, 0x4e, 0x84, 0xba, 0x9b, 0x24, 0xfe, - 0x23, 0x70, 0x80, 0xc0, 0xc1, 0x4f, 0x55, 0x57, 0x01, 0x9a, 0x0b, 0x81, 0x83, 0xcd, 0x36, 0x61, - 0xe4, 0x1b, 0x20, 0x74, 0x80, 0xd0, 0x01, 0xa9, 0x99, 0x8b, 0x47, 0x2d, 0x54, 0x8f, 0xb0, 0x21, - 0xf8, 0x52, 0xca, 0x97, 0x5c, 0x09, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, - 0x06, 0x08, 0x1b, 0xbc, 0x37, 0x6c, 0x40, 0x5e, 0x30, 0x76, 0x19, 0x8c, 0x10, 0x15, 0x90, 0xdd, - 0x4e, 0xd2, 0x12, 0x0c, 0xc6, 0xcc, 0xdc, 0xef, 0xf3, 0x93, 0x96, 0xe4, 0x4a, 0x40, 0x5a, 0x40, - 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xd2, 0x73, 0x3c, - 0xf0, 0x43, 0x2d, 0x5d, 0xe0, 0x2c, 0xb3, 0x0b, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, - 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x49, 0xcf, 0xb1, 0x0e, 0x7d, 0x15, 0x49, 0x2d, - 0x1f, 0x1c, 0xc8, 0x2b, 0x7d, 0x75, 0x2d, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, - 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0xce, 0x13, 0x97, 0x4c, 0x97, 0x17, 0x25, 0xee, 0x50, 0x98, 0x1a, - 0x9f, 0xa9, 0x63, 0x61, 0xba, 0x39, 0x5e, 0xfa, 0x47, 0x14, 0x6d, 0x0d, 0xf9, 0x8c, 0x2d, 0x5b, - 0x1d, 0x63, 0xfe, 0x14, 0x4f, 0x1c, 0x25, 0x5f, 0x72, 0x27, 0x32, 0xd2, 0x75, 0xad, 0x89, 0xdb, - 0xd5, 0x9c, 0x4a, 0x75, 0xdc, 0x17, 0x63, 0x3e, 0x10, 0xe5, 0x8e, 0x76, 0xd4, 0xb0, 0xdf, 0x27, - 0x2c, 0x37, 0x7f, 0xea, 0x3f, 0xf2, 0x0d, 0xde, 0x0c, 0x7b, 0x22, 0x14, 0xbd, 0xcf, 0x4f, 0xd3, - 0xa1, 0x33, 0x65, 0xc4, 0x4c, 0xbe, 0xd8, 0x65, 0x1f, 0x9c, 0x23, 0xed, 0xa3, 0x10, 0x0e, 0xbb, - 0x5a, 0x4d, 0x99, 0xd6, 0xe7, 0xbb, 0x41, 0xa7, 0x25, 0x6f, 0x3a, 0xf5, 0x5b, 0x79, 0xe1, 0xdf, - 0xca, 0x4e, 0x63, 0xf0, 0x50, 0xba, 0x8a, 0x6f, 0xb5, 0x73, 0x36, 0xbd, 0xc1, 0x4e, 0xbd, 0xf7, - 0x6f, 0x4b, 0xde, 0x34, 0x87, 0xfa, 0x3c, 0x88, 0x74, 0xa7, 0x35, 0xbe, 0xad, 0xce, 0x55, 0x7c, - 0x0f, 0xf5, 0xe4, 0x16, 0xd0, 0x89, 0x99, 0x7f, 0x8d, 0x6d, 0x4b, 0x27, 0xe6, 0x05, 0x4d, 0x7f, - 0x37, 0xb5, 0x2d, 0xf3, 0x87, 0x0d, 0x32, 0xb3, 0x19, 0xff, 0x88, 0xa3, 0x17, 0x3b, 0xe3, 0xc7, - 0xee, 0x49, 0x5b, 0x99, 0xe0, 0x34, 0xa4, 0x83, 0x94, 0x64, 0x90, 0x92, 0x0a, 0x1a, 0x12, 0x61, - 0xcb, 0xd2, 0x88, 0x1c, 0x19, 0x93, 0x03, 0xb3, 0x88, 0xf7, 0x86, 0xf0, 0xdd, 0x8e, 0x3f, 0x35, - 0xef, 0xed, 0xcc, 0x7e, 0xa3, 0x61, 0x6b, 0xb6, 0x6d, 0xc5, 0xe4, 0xd6, 0x6b, 0xd6, 0x2a, 0xcc, - 0x3d, 0x3b, 0x83, 0xcf, 0xcd, 0x52, 0x9f, 0x31, 0xab, 0x7d, 0xc4, 0x2c, 0xf5, 0x09, 0x7b, 0xd9, - 0xcb, 0x2a, 0x1a, 0xfe, 0x62, 0x8b, 0x7b, 0x54, 0x34, 0x7b, 0x4f, 0xb6, 0xf7, 0x94, 0xc8, 0xf6, - 0x8a, 0xc8, 0xf6, 0x80, 0xc8, 0xf6, 0x76, 0x80, 0x08, 0x34, 0x88, 0x60, 0x21, 0x6c, 0x6c, 0x10, - 0x10, 0x3e, 0x38, 0xf4, 0xf0, 0x6d, 0x3d, 0x74, 0xba, 0x87, 0x9d, 0x33, 0x8a, 0xaf, 0xeb, 0xf1, - 0x53, 0x33, 0x26, 0xb7, 0xbe, 0x81, 0x18, 0x30, 0x8e, 0xdc, 0xdc, 0x3c, 0x87, 0xe6, 0xe0, 0xe4, - 0xa5, 0xcc, 0xdb, 0x9b, 0x01, 0x0c, 0x19, 0xb4, 0x59, 0xbe, 0x61, 0x3c, 0x67, 0xc6, 0x06, 0xbf, - 0xb0, 0xcb, 0x2b, 0x6c, 0xf1, 0x09, 0xeb, 0x3c, 0xc2, 0x3a, 0x7f, 0xb0, 0xce, 0x1b, 0xdc, 0x82, - 0x0a, 0xd3, 0x7d, 0x30, 0x73, 0x53, 0xe1, 0x66, 0x4d, 0xcf, 0x4c, 0xbf, 0x1f, 0x82, 0x06, 0x82, - 0x06, 0x82, 0x66, 0x0b, 0x05, 0x8d, 0xad, 0xc6, 0xbd, 0xb1, 0x63, 0xb1, 0x67, 0x8f, 0x73, 0xfe, - 0xcb, 0x96, 0x2d, 0xda, 0xed, 0xdf, 0x6e, 0x3d, 0xd7, 0x98, 0x22, 0x97, 0x98, 0x36, 0x57, 0x98, - 0x2a, 0x17, 0x98, 0x3c, 0xd7, 0x97, 0x3c, 0x97, 0x97, 0x3c, 0x57, 0x77, 0xb3, 0x76, 0x4a, 0x6d, - 0xf7, 0x33, 0xcf, 0xcd, 0x36, 0x5f, 0xad, 0x5b, 0xf2, 0xcb, 0x79, 0x54, 0x9b, 0xbb, 0xbd, 0x6f, - 0x5d, 0xa6, 0xe5, 0xd3, 0x13, 0x64, 0xc7, 0x34, 0x28, 0x8f, 0x63, 0xf0, 0x1c, 0xbb, 0xa0, 0x3e, - 0x5e, 0xc1, 0x76, 0x8c, 0x82, 0xed, 0xb8, 0x04, 0xdb, 0xb1, 0x88, 0xcd, 0xce, 0x85, 0x22, 0x3b, - 0xce, 0x90, 0xac, 0xbb, 0xbe, 0xf0, 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, 0x66, 0xcc, 0xb2, 0x4a, - 0x30, 0xd6, 0xf9, 0x34, 0xc0, 0xfc, 0xe9, 0x53, 0x1c, 0xf4, 0xdf, 0x9f, 0x41, 0xc1, 0xa6, 0xe6, - 0x5c, 0x59, 0xe4, 0x97, 0x03, 0x1a, 0x77, 0xff, 0x82, 0xca, 0x24, 0xe4, 0x12, 0xa0, 0x0c, 0x50, - 0x06, 0x28, 0x03, 0x94, 0x01, 0xca, 0x0e, 0x83, 0x72, 0xbc, 0xec, 0x80, 0xc9, 0xa9, 0xa9, 0xb2, - 0x93, 0xd1, 0xb5, 0xd4, 0xe0, 0x6c, 0x64, 0x78, 0x2d, 0x35, 0x35, 0x20, 0x32, 0x10, 0x19, 0x88, - 0x0c, 0x44, 0x5e, 0x7d, 0xd6, 0x6c, 0x47, 0x2a, 0x93, 0x81, 0x26, 0xa7, 0x56, 0xa5, 0xea, 0x09, - 0xba, 0xe2, 0x24, 0xf3, 0xed, 0x0e, 0xe3, 0xb1, 0xa9, 0x8e, 0xea, 0x92, 0x96, 0xa1, 0x21, 0x2f, - 0x3b, 0xc3, 0x51, 0x66, 0x86, 0xb7, 0xac, 0x0c, 0x57, 0x19, 0x19, 0xf6, 0xb2, 0x31, 0xec, 0x65, - 0x62, 0xd8, 0xcb, 0xc2, 0x64, 0xab, 0x88, 0x00, 0x79, 0x99, 0x17, 0x06, 0x29, 0xc6, 0x21, 0xc9, - 0x16, 0x49, 0xb3, 0xff, 0xf8, 0x3b, 0x81, 0xa4, 0x48, 0xe8, 0x28, 0x79, 0x35, 0x15, 0x72, 0x31, - 0x4c, 0x65, 0xe5, 0x38, 0x35, 0x01, 0xb3, 0xee, 0x06, 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x17, - 0xbb, 0x78, 0x7b, 0x01, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, - 0x9c, 0x14, 0x63, 0x86, 0x4b, 0x52, 0x44, 0xc9, 0xeb, 0x27, 0xb0, 0x8c, 0xd5, 0xa6, 0x5c, 0x3c, - 0x6a, 0x8f, 0x9d, 0x69, 0x2c, 0xba, 0x08, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, - 0x0d, 0xb0, 0x0d, 0x4e, 0xb6, 0xf1, 0x1a, 0x9b, 0xc6, 0x8c, 0x63, 0x0e, 0xab, 0xc0, 0x3a, 0x56, - 0x9b, 0x7a, 0xa9, 0x1e, 0xfc, 0xbe, 0xec, 0x79, 0xa1, 0xf0, 0x23, 0xc2, 0x82, 0x89, 0x89, 0x85, - 0xbf, 0x19, 0x1f, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x7c, 0xdd, 0xca, - 0x9e, 0x50, 0x5a, 0xea, 0x27, 0x26, 0xbe, 0x51, 0x26, 0x1c, 0xb3, 0x31, 0xbd, 0xd5, 0xcf, 0x7e, - 0xc4, 0xe0, 0x32, 0x66, 0x13, 0xde, 0x38, 0xfb, 0x56, 0x3f, 0x69, 0x7c, 0xe9, 0xb4, 0x9a, 0x57, - 0x97, 0xc7, 0x9d, 0xd6, 0x71, 0xfd, 0xa2, 0x79, 0x46, 0xed, 0x3d, 0xbe, 0xf9, 0xfd, 0xe1, 0xe4, - 0xf4, 0xfe, 0x35, 0x79, 0xcd, 0x7a, 0xe6, 0x46, 0x42, 0xb3, 0xd9, 0x6f, 0xb6, 0x1a, 0x7f, 0x34, - 0xce, 0xea, 0x97, 0xcd, 0x56, 0x6e, 0x1b, 0x9a, 0x39, 0x39, 0x32, 0xeb, 0xbf, 0x9f, 0x5c, 0x5d, - 0x5c, 0x1e, 0xb7, 0x3a, 0x27, 0xcd, 0xe6, 0x39, 0xe6, 0x9d, 0x6e, 0xde, 0xeb, 0x17, 0x98, 0x72, - 0x6a, 0x53, 0x6f, 0x9e, 0x7d, 0x3d, 0xfe, 0x92, 0xcb, 0x78, 0xc3, 0x95, 0x76, 0xd6, 0xf8, 0x5e, - 0x26, 0xd4, 0x7d, 0xdf, 0x8f, 0xb4, 0x77, 0x1f, 0xf4, 0xe4, 0xad, 0x14, 0x3d, 0x7a, 0x71, 0x3f, - 0x3f, 0x3c, 0xb4, 0x3d, 0xb4, 0x3d, 0xb4, 0x3d, 0xb4, 0x3d, 0xb4, 0x3d, 0xf9, 0xba, 0xd5, 0xf2, - 0x5e, 0x68, 0xd9, 0xfd, 0x1e, 0x55, 0x4a, 0x0c, 0xda, 0xfe, 0x90, 0x70, 0xc8, 0x2b, 0x25, 0x27, - 0xbd, 0x0f, 0x72, 0xca, 0x57, 0x41, 0x24, 0xba, 0x81, 0xea, 0x45, 0x94, 0xb7, 0xdc, 0xf2, 0xd5, - 0x9d, 0x20, 0xd7, 0xd3, 0x0c, 0x1d, 0xe7, 0x4e, 0xa5, 0xe2, 0xeb, 0x06, 0xcc, 0xdc, 0x83, 0x77, - 0x12, 0x35, 0x61, 0x1c, 0xff, 0x6b, 0xe8, 0x77, 0xb5, 0x0c, 0xd4, 0x17, 0x79, 0x17, 0x5b, 0x7b, - 0x7e, 0x2b, 0xfa, 0x50, 0x9f, 0xfa, 0x8f, 0x5b, 0x6f, 0x72, 0x85, 0xc3, 0x52, 0xa9, 0x52, 0x2d, - 0x95, 0xf2, 0xd5, 0x83, 0x6a, 0xbe, 0x56, 0x2e, 0x17, 0x2a, 0x94, 0x91, 0x53, 0xe7, 0xac, 0x30, - 0xa3, 0x5d, 0x25, 0xdb, 0xd0, 0xb8, 0xbf, 0x6c, 0x86, 0x54, 0x85, 0xca, 0x52, 0xa4, 0x8a, 0xa6, - 0x60, 0x19, 0x74, 0x2d, 0x74, 0x2d, 0x74, 0x2d, 0x74, 0x2d, 0x74, 0xed, 0x82, 0x75, 0x3b, 0x94, - 0x4a, 0x1f, 0x14, 0x19, 0x24, 0x6d, 0x15, 0x92, 0x12, 0x92, 0x12, 0x92, 0x12, 0x92, 0x32, 0x03, - 0x26, 0x57, 0x2a, 0xd6, 0x4a, 0xb5, 0x4a, 0xb5, 0x58, 0x83, 0x90, 0x84, 0x90, 0xdc, 0x66, 0x21, - 0x49, 0x2b, 0x40, 0x68, 0x4b, 0x6c, 0x42, 0x46, 0x42, 0x46, 0x42, 0x46, 0x42, 0x46, 0x42, 0x46, - 0x2e, 0x58, 0xb7, 0x93, 0x76, 0x85, 0xe4, 0x36, 0x9c, 0xa4, 0x3e, 0x1f, 0xd2, 0x1e, 0xb5, 0xd2, - 0x22, 0x54, 0xe4, 0x72, 0x32, 0xf7, 0xf7, 0xee, 0xee, 0x75, 0xde, 0xab, 0xb5, 0x9f, 0xaf, 0x0b, - 0x5e, 0xad, 0x1d, 0xbf, 0x2c, 0x4c, 0xfe, 0x89, 0x5f, 0x17, 0xaf, 0xf3, 0x5e, 0x69, 0xf6, 0xba, - 0x7c, 0x9d, 0xf7, 0xca, 0xed, 0xbd, 0xbf, 0xfe, 0xfa, 0xb4, 0xf7, 0xe3, 0x60, 0xf4, 0xfe, 0x0f, - 0xee, 0x4f, 0x07, 0xdb, 0x7b, 0xde, 0xbd, 0x2e, 0x78, 0xc5, 0xf6, 0xec, 0x3f, 0x0e, 0xae, 0xf3, - 0x5e, 0xb1, 0xbd, 0xb7, 0xf7, 0x5b, 0x0e, 0x0c, 0xcc, 0x41, 0x06, 0x36, 0x3d, 0x0a, 0x66, 0xb5, - 0x31, 0xd3, 0x52, 0x27, 0xf0, 0x7a, 0x70, 0x70, 0x31, 0x70, 0x31, 0x70, 0x31, 0x70, 0x31, 0x70, - 0x31, 0xf2, 0x75, 0x7b, 0x13, 0x04, 0x7d, 0xe1, 0x2b, 0x0e, 0x1e, 0x56, 0xc8, 0x0a, 0x54, 0x6f, - 0x74, 0xbd, 0x60, 0xcb, 0x1d, 0xec, 0x53, 0xe3, 0xd1, 0x34, 0x39, 0x0f, 0xc5, 0x7e, 0xdc, 0xc9, - 0x36, 0xfe, 0xc7, 0x46, 0x77, 0x7b, 0x3a, 0x33, 0xb0, 0x59, 0x4c, 0x7f, 0xa8, 0xbe, 0xab, 0xe0, - 0x7f, 0xca, 0xf3, 0xb5, 0x0e, 0xe5, 0x8d, 0x95, 0xde, 0xc2, 0x4b, 0x7d, 0xcf, 0x82, 0xb1, 0x51, - 0x66, 0xdf, 0x55, 0xc6, 0x87, 0x32, 0xfb, 0xd9, 0x64, 0x74, 0x28, 0xb3, 0xbf, 0xd2, 0xac, 0x91, - 0x95, 0xd9, 0x4f, 0x39, 0x49, 0x7a, 0xa9, 0x9e, 0xbe, 0x04, 0x5a, 0xc1, 0x5e, 0x80, 0x60, 0x87, - 0x60, 0x87, 0x60, 0x87, 0x60, 0x77, 0x47, 0xb0, 0x53, 0xb9, 0xff, 0x64, 0xc0, 0x49, 0x51, 0x79, - 0x4d, 0x1d, 0x26, 0xd8, 0x49, 0x35, 0x5d, 0x99, 0x5c, 0x02, 0xb1, 0xe9, 0xf2, 0x24, 0xee, 0x90, - 0xc3, 0x01, 0x27, 0x2c, 0xb8, 0x01, 0x0f, 0xdc, 0x30, 0xe1, 0x0c, 0x5c, 0x38, 0x03, 0x1b, 0xce, - 0xc0, 0x07, 0x2d, 0x8c, 0x10, 0xc3, 0x49, 0x32, 0xcb, 0x97, 0x1c, 0x0e, 0x7e, 0x87, 0xb7, 0x04, - 0x6a, 0x8a, 0xed, 0x57, 0x19, 0xc6, 0x4e, 0xb5, 0xdf, 0x7c, 0x01, 0xbb, 0x8c, 0xa6, 0x2a, 0x12, - 0x9a, 0x36, 0x51, 0xc7, 0xce, 0xa5, 0x36, 0x4d, 0xd1, 0xc1, 0x93, 0x59, 0xbb, 0x82, 0xb4, 0x80, - 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x70, 0x90, 0x16, 0x6a, 0x2d, 0x3c, 0xaf, 0x89, 0xfb, 0x82, 0xf1, - 0x14, 0xd3, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, 0x3c, 0xda, 0xc2, 0x05, 0x3a, 0x2e, 0x80, - 0x8f, 0x5b, 0x20, 0xe4, 0x0a, 0x18, 0x39, 0x07, 0x4a, 0xce, 0x81, 0x93, 0x73, 0x20, 0xc5, 0x03, - 0x56, 0x4c, 0xa0, 0xc5, 0xaf, 0xb8, 0x53, 0x7e, 0x63, 0x28, 0x95, 0x2e, 0x54, 0x38, 0x7d, 0xc6, - 0x14, 0x45, 0x2a, 0x8c, 0x97, 0xc0, 0x73, 0xf8, 0xfa, 0xed, 0x1f, 0x5e, 0x9f, 0xb9, 0xc3, 0x7d, - 0x38, 0xdb, 0x31, 0x7a, 0x91, 0xba, 0x1c, 0xe6, 0xc3, 0xdb, 0xa9, 0xeb, 0x71, 0xe0, 0x40, 0xad, - 0x23, 0xee, 0x74, 0xde, 0x84, 0xfd, 0x47, 0x98, 0xf0, 0x4f, 0x4c, 0xb8, 0x52, 0x2e, 0x1f, 0x94, - 0x61, 0xc6, 0x6e, 0x71, 0x11, 0xfe, 0xd1, 0xdb, 0x1f, 0xb6, 0xe3, 0x7e, 0x39, 0x6a, 0x50, 0xf0, - 0xed, 0xa4, 0x2f, 0x0e, 0x1b, 0x30, 0xec, 0xa8, 0x23, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x88, - 0x1b, 0x20, 0x6e, 0x90, 0x91, 0xb8, 0xc1, 0xa1, 0x03, 0x61, 0x83, 0x32, 0xc2, 0x06, 0x08, 0x1b, - 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xd6, 0x4d, 0xb8, 0x58, 0x46, 0xd0, 0x00, 0x41, 0x03, - 0x04, 0x0d, 0x68, 0x83, 0x06, 0x0f, 0xd3, 0xd5, 0xe7, 0x42, 0xd4, 0x20, 0xbe, 0x16, 0x84, 0x0d, - 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, 0xa7, 0xdf, 0xb8, 0x91, - 0xca, 0x0f, 0x9f, 0x1c, 0x88, 0x1b, 0xd4, 0x18, 0x2f, 0xe1, 0x44, 0xa8, 0xbb, 0x49, 0xe2, 0x3f, - 0x02, 0x07, 0x08, 0x1c, 0xfc, 0x54, 0x75, 0x15, 0xa0, 0xb9, 0x10, 0x38, 0xd8, 0x6c, 0x13, 0x46, - 0xbe, 0x01, 0x42, 0x07, 0x08, 0x1d, 0x90, 0x9a, 0xb9, 0x78, 0xd4, 0x42, 0xf5, 0x08, 0xfb, 0x81, - 0x2f, 0xa5, 0x7c, 0xc9, 0x95, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, - 0x80, 0xb0, 0xc1, 0x7b, 0xc3, 0x06, 0xe4, 0xf5, 0x62, 0x97, 0xc1, 0x08, 0x51, 0xfd, 0xd8, 0xed, - 0x24, 0x2d, 0xc1, 0x60, 0xcc, 0xcc, 0xfd, 0x3e, 0x3f, 0x69, 0x49, 0xae, 0x04, 0xa4, 0x05, 0xa4, - 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0x3d, 0xc7, 0x03, - 0x3f, 0xd4, 0xd2, 0x05, 0xce, 0x32, 0xbb, 0x10, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, - 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0xf4, 0x1c, 0xeb, 0xd0, 0x57, 0x91, 0xd4, 0xf2, - 0xc1, 0x81, 0xbc, 0xd2, 0x57, 0xd7, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, - 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0x3c, 0x71, 0xc9, 0x74, 0x79, 0x51, 0xe2, 0x06, 0x85, 0xa9, 0xf1, - 0x79, 0x1a, 0x16, 0xa6, 0x7b, 0xe3, 0xa5, 0x7f, 0x44, 0xd1, 0xd5, 0x90, 0xcf, 0xd6, 0xb2, 0xd5, - 0x30, 0xe6, 0x4f, 0xf1, 0xc4, 0x51, 0xf1, 0x25, 0x77, 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xb8, 0x5b, - 0xcd, 0xa9, 0x54, 0xc7, 0x7d, 0x31, 0xa6, 0x03, 0x51, 0xee, 0x68, 0x47, 0x0d, 0xfb, 0x7d, 0xc2, - 0x6a, 0xf3, 0xa7, 0xfe, 0x23, 0xdf, 0xe0, 0xcd, 0xb0, 0x27, 0x42, 0xd1, 0xfb, 0xfc, 0x34, 0x1d, - 0x3a, 0x53, 0x46, 0xcc, 0xe4, 0x8a, 0x1d, 0x76, 0xc1, 0x39, 0xd2, 0x2e, 0x0a, 0xe1, 0xb0, 0xab, - 0xd5, 0x94, 0x67, 0x7d, 0xbe, 0x1b, 0x74, 0x5a, 0xf2, 0xa6, 0x53, 0xbf, 0x95, 0x17, 0xfe, 0xad, - 0xec, 0x34, 0x06, 0x0f, 0xa5, 0xab, 0xf8, 0x4e, 0x3b, 0x67, 0xd3, 0xfb, 0xeb, 0xd4, 0x7b, 0xff, - 0xb6, 0xe4, 0x4d, 0x73, 0xa8, 0xcf, 0x43, 0xd1, 0x69, 0x8d, 0xef, 0xaa, 0x73, 0x15, 0xdf, 0x42, - 0x3d, 0xb9, 0x03, 0x74, 0x61, 0xe6, 0x5f, 0x61, 0x5b, 0xd2, 0x85, 0x79, 0x41, 0xc3, 0xdf, 0x4d, - 0x6d, 0xc9, 0xfc, 0x61, 0x83, 0xac, 0x6c, 0x46, 0x3e, 0xe2, 0xc8, 0xc5, 0xce, 0xf8, 0xa9, 0x7b, - 0xd2, 0x56, 0x16, 0x38, 0x0d, 0xe3, 0x20, 0x65, 0x18, 0xa4, 0x8c, 0x82, 0x86, 0x41, 0xd8, 0xb2, - 0x34, 0x22, 0x3f, 0xc6, 0xe3, 0xbf, 0x2c, 0x82, 0xbd, 0x19, 0x70, 0xb7, 0xe3, 0x4d, 0xcd, 0xfb, - 0x3a, 0xb3, 0xdf, 0x68, 0xd8, 0x96, 0x6d, 0xdb, 0x30, 0xb5, 0xed, 0x9a, 0x35, 0x0a, 0x73, 0x8f, - 0xce, 0xe0, 0x63, 0xb3, 0xd4, 0x60, 0xcc, 0x6a, 0x03, 0x31, 0x4b, 0x0d, 0xc2, 0x5e, 0x36, 0xb1, - 0x8a, 0x86, 0xbf, 0xd8, 0xe2, 0xe6, 0x14, 0xcd, 0xa6, 0x93, 0xed, 0xcd, 0x24, 0xb2, 0x4d, 0x22, - 0xb2, 0xcd, 0x1f, 0xb2, 0x4d, 0x1d, 0x00, 0x02, 0x09, 0x20, 0x58, 0x88, 0x17, 0x1b, 0xc4, 0x83, - 0x0f, 0x0e, 0x3d, 0x7b, 0x5b, 0xcf, 0x9c, 0xec, 0x59, 0xe7, 0x8c, 0xa2, 0xeb, 0x5a, 0xdc, 0xd4, - 0x8c, 0xc1, 0xad, 0x6f, 0x1e, 0x06, 0x4c, 0x23, 0x37, 0x9b, 0x6e, 0xcf, 0xef, 0xf5, 0x42, 0x11, - 0x45, 0xc6, 0x8c, 0x23, 0x81, 0xc0, 0xd4, 0x08, 0x86, 0x0c, 0xda, 0x6c, 0x6e, 0x8d, 0xf1, 0x5c, - 0x19, 0x1b, 0xf4, 0xc2, 0x2e, 0xad, 0xb0, 0x45, 0x27, 0xac, 0xd3, 0x08, 0xeb, 0xf4, 0xc1, 0x3a, - 0x6d, 0x70, 0x0b, 0x2a, 0x8c, 0xe7, 0x5e, 0x58, 0x6c, 0xc6, 0x6d, 0xa3, 0xc9, 0x76, 0xba, 0x79, - 0x76, 0xca, 0x87, 0x65, 0x08, 0x01, 0xcc, 0x4a, 0x4d, 0x2b, 0x12, 0xd3, 0xb0, 0xb4, 0x84, 0xaf, - 0x87, 0xaf, 0x87, 0xaf, 0x8f, 0xef, 0xd6, 0x74, 0xaf, 0x63, 0x7b, 0x84, 0x92, 0x8a, 0x58, 0x5a, - 0x22, 0x98, 0xd6, 0x9c, 0x0f, 0xe2, 0x59, 0x88, 0x67, 0x6d, 0x79, 0x3c, 0xcb, 0x5a, 0xb2, 0x70, - 0x62, 0xf7, 0x72, 0x60, 0xc9, 0xcb, 0xcc, 0xd1, 0x1b, 0x0b, 0x95, 0x63, 0x67, 0x73, 0x63, 0xa7, - 0x1e, 0xac, 0xc5, 0x0d, 0xd1, 0x97, 0x99, 0x7f, 0x28, 0x59, 0x9c, 0xfb, 0xd4, 0x33, 0x38, 0xb4, - 0x38, 0xc6, 0xb9, 0xaf, 0xb5, 0x08, 0x95, 0xf5, 0xf2, 0xbc, 0xb9, 0xbf, 0x77, 0x77, 0xaf, 0xf3, - 0x5e, 0xad, 0xfd, 0x7c, 0x5d, 0xf0, 0x6a, 0xed, 0xf8, 0x65, 0x61, 0xf2, 0x4f, 0xfc, 0xba, 0x78, - 0x9d, 0xf7, 0x4a, 0xb3, 0xd7, 0xe5, 0xeb, 0xbc, 0x57, 0x6e, 0xef, 0xfd, 0xf5, 0xd7, 0xa7, 0xbd, - 0x1f, 0x07, 0xa3, 0xf7, 0x7f, 0xf0, 0x37, 0x7b, 0x39, 0x2f, 0xed, 0x4d, 0xca, 0x15, 0xa0, 0x59, - 0x0c, 0x15, 0x2c, 0x86, 0xd5, 0x16, 0x83, 0xef, 0xdd, 0xd6, 0xbd, 0xaf, 0xed, 0x1f, 0x85, 0x8f, - 0xa5, 0xd1, 0xd1, 0xde, 0x8f, 0xea, 0xe8, 0xed, 0x0f, 0x9f, 0x17, 0xbd, 0xad, 0xf0, 0xb1, 0x3a, - 0x3a, 0x5a, 0xf2, 0x9b, 0xca, 0xe8, 0xe8, 0x17, 0xbf, 0xa3, 0x3c, 0xda, 0x4d, 0xbd, 0x75, 0xfc, - 0xf3, 0xe2, 0xb2, 0x0f, 0x94, 0x96, 0x7c, 0xe0, 0x60, 0xd9, 0x07, 0x0e, 0x96, 0x7c, 0x60, 0xe9, - 0x25, 0x15, 0x97, 0x7c, 0xa0, 0x3c, 0x7a, 0x4e, 0xbd, 0x7f, 0x77, 0xf1, 0x5b, 0x2b, 0xa3, 0xbd, - 0xe7, 0x65, 0xbf, 0xab, 0x8e, 0x9e, 0x8f, 0xf6, 0x36, 0xd0, 0x35, 0x7c, 0x70, 0xfb, 0x3a, 0xb1, - 0x3b, 0xf5, 0xce, 0xe0, 0x96, 0xad, 0xdd, 0x29, 0x83, 0x3b, 0x8f, 0x06, 0xc2, 0x80, 0x1f, 0x18, - 0x9f, 0xe1, 0x2c, 0x19, 0xd3, 0xb0, 0x1c, 0x37, 0x9b, 0x76, 0x69, 0x25, 0xbd, 0xd2, 0x4a, 0x1a, - 0xa5, 0xd9, 0x74, 0xc9, 0x75, 0x9f, 0xad, 0xe1, 0x75, 0x69, 0x6d, 0x3d, 0xe6, 0x8c, 0x04, 0xc2, - 0xdf, 0xbb, 0x2b, 0xbc, 0xde, 0xfa, 0x5f, 0x7d, 0xd5, 0xae, 0xf6, 0xc9, 0x15, 0x6d, 0xc1, 0x94, - 0x0d, 0x98, 0x7e, 0xf6, 0xab, 0x4d, 0xfe, 0xfb, 0xa7, 0xee, 0x7d, 0x9f, 0x78, 0xe7, 0x24, 0xaf, - 0x3b, 0xb9, 0x66, 0x26, 0x75, 0x85, 0xd5, 0xf3, 0xeb, 0xab, 0xe5, 0x7d, 0xcf, 0xe9, 0xd7, 0x67, - 0xfb, 0x1d, 0x33, 0x1d, 0xeb, 0xa6, 0x28, 0xd4, 0xc2, 0x1b, 0x04, 0x7d, 0xd9, 0x7d, 0x7a, 0xf7, - 0x5c, 0xcf, 0x2b, 0xb0, 0xd7, 0xdf, 0xf4, 0xce, 0xe7, 0xbd, 0xda, 0x4e, 0xd6, 0xca, 0x41, 0xe3, - 0x75, 0x82, 0xc2, 0x66, 0x82, 0xbe, 0xeb, 0x06, 0x75, 0x8d, 0x05, 0x6d, 0x8d, 0x05, 0x65, 0x8d, - 0x05, 0x5d, 0xed, 0x7a, 0x96, 0x55, 0x77, 0x76, 0x72, 0xfd, 0xf8, 0x9e, 0x56, 0x7f, 0x62, 0xc9, - 0x6e, 0xff, 0xf4, 0x8b, 0x56, 0x9c, 0xe6, 0xf5, 0x36, 0x7d, 0xd7, 0xde, 0x67, 0x31, 0xb1, 0x9f, - 0x62, 0x76, 0xdf, 0xc4, 0xd4, 0xfe, 0x88, 0xf1, 0x7d, 0x10, 0xe3, 0xfb, 0x1d, 0xc6, 0xf7, 0x35, - 0x68, 0x19, 0xd3, 0xba, 0x9b, 0xaa, 0xb9, 0xe9, 0x41, 0x87, 0xb5, 0x1f, 0xf4, 0xcc, 0xfc, 0xa6, - 0xdf, 0xb7, 0xae, 0xd0, 0x33, 0x92, 0x85, 0x61, 0x6c, 0x03, 0xd4, 0xe4, 0x86, 0xa7, 0x9d, 0x0d, - 0x4e, 0xd3, 0x1b, 0x9a, 0xd6, 0x36, 0x30, 0xad, 0x6d, 0x58, 0x5a, 0xdb, 0xa0, 0xe4, 0x0d, 0x79, - 0x98, 0xca, 0x9a, 0x88, 0x17, 0xa6, 0xf9, 0xe4, 0x2b, 0x93, 0xa7, 0xfb, 0x90, 0x7c, 0x85, 0xe4, - 0x2b, 0xdb, 0x6e, 0xc2, 0xba, 0xbb, 0x30, 0x17, 0x6b, 0xdd, 0x71, 0x39, 0xf9, 0xaa, 0x1b, 0xf4, - 0x83, 0xd0, 0x5e, 0xc6, 0x55, 0xfc, 0xf5, 0x48, 0xb3, 0x42, 0x9a, 0x15, 0xab, 0x1b, 0x22, 0x73, - 0x47, 0x64, 0x6e, 0xc9, 0xac, 0x7b, 0x32, 0xec, 0xa6, 0x92, 0x59, 0xb0, 0x9f, 0x66, 0x65, 0xfe, - 0x7c, 0x40, 0x8a, 0xc5, 0x54, 0x2d, 0x7c, 0x77, 0xea, 0xbc, 0x40, 0xec, 0x28, 0xb7, 0xe0, 0x9c, - 0xba, 0x50, 0xbd, 0x41, 0x20, 0x27, 0x0b, 0xc3, 0x12, 0xe6, 0x24, 0x23, 0x00, 0x76, 0x00, 0x3b, - 0x80, 0x1d, 0xc0, 0x0e, 0x60, 0x67, 0x29, 0xec, 0x24, 0xbe, 0x72, 0x0b, 0x90, 0x67, 0x56, 0xf4, - 0xcb, 0x1a, 0xf0, 0xd8, 0xa9, 0x2a, 0x06, 0xdc, 0x01, 0xee, 0x00, 0x77, 0x80, 0x3b, 0x99, 0xc2, - 0x9d, 0x99, 0xab, 0x44, 0x61, 0xae, 0x75, 0x2d, 0x62, 0x23, 0x0b, 0x73, 0x01, 0x72, 0x00, 0x39, - 0x80, 0x1c, 0x13, 0xb3, 0x60, 0x7a, 0x43, 0x20, 0xf9, 0xe2, 0x49, 0x99, 0x7e, 0xa9, 0x7a, 0xc2, - 0x5e, 0x33, 0xa6, 0x64, 0x69, 0xbd, 0x1a, 0xcb, 0x56, 0xf9, 0x5f, 0xab, 0x6d, 0xb5, 0xac, 0xb7, - 0xcd, 0xa2, 0x68, 0x8b, 0x45, 0xdb, 0xf6, 0x8a, 0xaa, 0xad, 0x15, 0x79, 0xdb, 0x2a, 0xf2, 0xb6, - 0x54, 0xe4, 0x6d, 0xa7, 0x36, 0xab, 0xf0, 0xb7, 0xf5, 0xb6, 0x50, 0x04, 0xdc, 0x9c, 0x82, 0xa3, - 0x2f, 0xe2, 0xea, 0x0b, 0xff, 0x4e, 0x9c, 0x75, 0x24, 0x74, 0x94, 0xbc, 0x9a, 0x72, 0xfa, 0xd8, - 0x81, 0x6f, 0x4a, 0xfd, 0x65, 0x0b, 0x1c, 0xce, 0xce, 0x5e, 0x7a, 0xca, 0xce, 0x6c, 0xec, 0xa9, - 0x03, 0x28, 0x01, 0x94, 0x00, 0x4a, 0x00, 0x25, 0xc9, 0xba, 0x19, 0x4a, 0xa5, 0x0f, 0x8a, 0x04, - 0x38, 0x69, 0x13, 0x26, 0x5b, 0xbe, 0xba, 0x13, 0xd6, 0x4b, 0x11, 0x10, 0xf4, 0xc1, 0x39, 0x95, - 0x74, 0xad, 0xac, 0x88, 0xdb, 0x1b, 0xe7, 0xbe, 0xf9, 0xfd, 0xa1, 0x20, 0x1c, 0xef, 0x6b, 0xe8, - 0x77, 0xb5, 0x0c, 0xd4, 0x17, 0x79, 0x27, 0x27, 0x27, 0x7c, 0xf3, 0xf6, 0x9b, 0x3e, 0x7d, 0x24, - 0x30, 0x11, 0xff, 0x31, 0xf3, 0x26, 0x52, 0x2a, 0xd6, 0x4a, 0xb5, 0x4a, 0xb5, 0x58, 0x2b, 0x67, - 0xd8, 0x56, 0x36, 0xb4, 0xd5, 0x54, 0x7b, 0xab, 0x45, 0xc5, 0xfd, 0xfd, 0x50, 0x49, 0xfd, 0x44, - 0x15, 0x8c, 0x7b, 0x3b, 0x20, 0x84, 0x06, 0x84, 0x06, 0x84, 0x06, 0x84, 0xc6, 0x06, 0x0a, 0x8d, - 0x2d, 0x89, 0xc8, 0xcd, 0x3c, 0xb6, 0x14, 0x51, 0xf2, 0xfa, 0x09, 0x41, 0xb9, 0x78, 0xf2, 0xac, - 0xe5, 0x1b, 0xa7, 0xac, 0xcd, 0x52, 0xde, 0x31, 0x10, 0x13, 0x88, 0x09, 0xc4, 0x04, 0x62, 0x1e, - 0xd1, 0x94, 0x0b, 0xa5, 0x2c, 0x16, 0x5a, 0xb3, 0x38, 0x86, 0xd5, 0x2a, 0xc6, 0xb3, 0x3f, 0x04, - 0xe1, 0x39, 0xe2, 0xaa, 0xc6, 0xa9, 0x67, 0x74, 0x48, 0x30, 0x16, 0x55, 0x61, 0xd7, 0x64, 0xc0, - 0xac, 0x54, 0x3b, 0xb6, 0x1b, 0x20, 0xb1, 0xec, 0xd6, 0x78, 0x16, 0x51, 0x05, 0x8b, 0xc8, 0xec, - 0x22, 0x42, 0x95, 0xe4, 0x4c, 0x55, 0x49, 0x26, 0x72, 0x29, 0x88, 0x15, 0xdb, 0xd0, 0xba, 0x8f, - 0xda, 0x23, 0x8f, 0x17, 0x2f, 0x1a, 0x14, 0x0a, 0x18, 0x0a, 0x18, 0x0a, 0x18, 0x0a, 0x78, 0x03, - 0x15, 0xf0, 0x96, 0xc4, 0x8c, 0x5f, 0x7b, 0x6d, 0x29, 0xa2, 0xb9, 0xff, 0x46, 0xec, 0x78, 0x3a, - 0x89, 0x52, 0x3d, 0xf8, 0x7d, 0xd9, 0xf3, 0x42, 0xe1, 0x47, 0x81, 0xb2, 0x0f, 0xa5, 0x6f, 0xc6, - 0x03, 0x8a, 0x02, 0x45, 0x81, 0xa2, 0x40, 0xd1, 0x0d, 0x44, 0x51, 0xd9, 0x13, 0x4a, 0x4b, 0xfd, - 0x44, 0x84, 0xa4, 0x16, 0x73, 0xb6, 0x72, 0x8d, 0xe9, 0xad, 0x7c, 0xf6, 0x23, 0x82, 0x25, 0x3a, - 0x9b, 0xc0, 0xc6, 0xd9, 0xb7, 0xfa, 0x49, 0xe3, 0x4b, 0xa7, 0xd5, 0xbc, 0xba, 0x3c, 0xee, 0xb4, - 0x8e, 0xeb, 0x17, 0xcd, 0x33, 0xdb, 0xab, 0x75, 0x92, 0x0a, 0x17, 0x91, 0x04, 0x90, 0x88, 0x72, - 0x09, 0xdf, 0xce, 0x66, 0xb3, 0xd5, 0xf8, 0xa3, 0x71, 0x56, 0xbf, 0x6c, 0xb6, 0x72, 0x59, 0x48, - 0xcc, 0x64, 0x9a, 0xc5, 0xdf, 0x4f, 0xae, 0x2e, 0x2e, 0x8f, 0x5b, 0x9d, 0x93, 0x66, 0xf3, 0x1c, - 0xf3, 0xb8, 0xfa, 0x3c, 0xd6, 0x2f, 0x30, 0x85, 0xeb, 0x9a, 0x62, 0xf3, 0xec, 0xeb, 0xf1, 0x97, - 0xdc, 0x86, 0x67, 0xce, 0xb6, 0x37, 0x8d, 0x9f, 0x6c, 0x84, 0x7a, 0xeb, 0xfb, 0x91, 0xf6, 0xee, - 0x83, 0x9e, 0xbc, 0x95, 0xa2, 0x67, 0x5f, 0xbc, 0xcd, 0x0f, 0x07, 0xed, 0x06, 0xed, 0x06, 0xed, - 0x06, 0xed, 0xb6, 0x81, 0xda, 0x4d, 0xcb, 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, 0x11, 0x68, - 0x37, 0x9b, 0x0d, 0x83, 0xaf, 0x54, 0x7c, 0xb2, 0x26, 0xa7, 0x7c, 0x15, 0x44, 0xa2, 0x1b, 0xa8, - 0x9e, 0xd5, 0xbc, 0x26, 0x9c, 0x09, 0x74, 0x0f, 0xd3, 0x16, 0xab, 0x5c, 0x9c, 0x09, 0x5c, 0xdb, - 0x44, 0xb6, 0xe0, 0x4c, 0x60, 0xe1, 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, 0x9a, - 0xaf, 0x95, 0xcb, 0x85, 0x4a, 0x01, 0xa7, 0x03, 0x9d, 0xfb, 0xf6, 0x6d, 0xce, 0xf8, 0xb0, 0x55, - 0xd3, 0x36, 0x45, 0x0a, 0xec, 0xd4, 0xb6, 0x4d, 0x86, 0xf9, 0x22, 0x6e, 0xfd, 0x61, 0x7f, 0x42, - 0xfd, 0xf2, 0xd0, 0x4e, 0xd0, 0x4e, 0xd0, 0x4e, 0xd0, 0x4e, 0x9b, 0xa8, 0x9d, 0x50, 0xda, 0x04, - 0x32, 0x06, 0x32, 0x06, 0x32, 0xc6, 0x29, 0x13, 0x41, 0x69, 0x13, 0x88, 0x17, 0x17, 0xc5, 0xcb, - 0x34, 0xd9, 0xcd, 0x68, 0x43, 0xd3, 0xa5, 0xc8, 0xfc, 0x7a, 0x30, 0x08, 0x0c, 0x08, 0x0c, 0x08, - 0x0c, 0x08, 0x8c, 0x0d, 0x14, 0x18, 0x37, 0x41, 0xd0, 0x17, 0xbe, 0xa2, 0x48, 0xaa, 0x2b, 0x6c, - 0x0a, 0x34, 0x39, 0x5d, 0xa0, 0xbf, 0xae, 0x54, 0xa0, 0xfd, 0x31, 0x1b, 0xb2, 0x53, 0xa7, 0x3f, - 0xea, 0xfe, 0x23, 0xee, 0xfd, 0xc1, 0x34, 0xdd, 0x7f, 0x3f, 0x18, 0x08, 0xd5, 0x9d, 0x00, 0xc5, - 0x78, 0x7d, 0xee, 0x8f, 0xff, 0x17, 0xca, 0x9b, 0x7d, 0xff, 0x56, 0x7a, 0x91, 0x7f, 0x2b, 0xa3, - 0xe4, 0xd5, 0xfe, 0xe4, 0x2c, 0x6c, 0x14, 0x6a, 0xe1, 0x0d, 0x82, 0xbe, 0xec, 0x3e, 0xed, 0xf7, - 0xe3, 0x75, 0xbd, 0x1f, 0xb7, 0xfe, 0x8f, 0xff, 0x89, 0x4f, 0x02, 0x6c, 0x43, 0x9b, 0x96, 0xa1, - 0xfa, 0xae, 0x82, 0xff, 0x29, 0xcf, 0xd7, 0x3a, 0x94, 0x37, 0xe3, 0x19, 0xb0, 0xd7, 0xb3, 0x65, - 0xc1, 0x58, 0x68, 0xe0, 0x82, 0x06, 0x2e, 0x4e, 0x50, 0x0c, 0x34, 0x70, 0xa1, 0xc5, 0x07, 0x6b, - 0x0d, 0x5c, 0x52, 0x4e, 0xc6, 0xbe, 0xc6, 0x4a, 0x0f, 0x69, 0x57, 0x69, 0x15, 0xa0, 0xb4, 0xa0, - 0xb4, 0xa0, 0xb4, 0xb6, 0x49, 0x69, 0xd9, 0x72, 0x97, 0xc9, 0x00, 0x93, 0xa6, 0x26, 0xda, 0xb6, - 0x9e, 0xdb, 0x49, 0xb5, 0xbf, 0x9a, 0x0c, 0x69, 0xd9, 0xb4, 0x68, 0xe2, 0xcf, 0xd6, 0xdd, 0x27, - 0xa5, 0x1b, 0xe5, 0x71, 0xa7, 0xd4, 0x6e, 0x95, 0xcd, 0xbd, 0xb2, 0xb9, 0x59, 0x36, 0x77, 0x6b, - 0xd7, 0xed, 0x5a, 0x76, 0xbf, 0x74, 0x01, 0xaf, 0xd4, 0xba, 0xb3, 0x5f, 0x97, 0x21, 0xc5, 0x2e, - 0xab, 0x34, 0x55, 0xbb, 0xe6, 0x3b, 0xe3, 0xbe, 0x80, 0xc1, 0x86, 0xee, 0x68, 0x59, 0x34, 0x3d, - 0x4b, 0xbd, 0x74, 0x97, 0xda, 0x9c, 0x8d, 0xde, 0xba, 0xc4, 0x5a, 0x06, 0xa0, 0x0c, 0x50, 0x06, - 0x28, 0x6f, 0x07, 0x28, 0xdb, 0xd6, 0x46, 0xf3, 0x1a, 0xa9, 0x2f, 0x08, 0x93, 0xab, 0xe6, 0xa4, - 0xd2, 0x78, 0xe4, 0x8f, 0x99, 0xcc, 0xd8, 0xa1, 0x72, 0xd2, 0x1c, 0xce, 0x9a, 0xd7, 0x69, 0x73, - 0x39, 0x6f, 0x76, 0x27, 0xce, 0xee, 0xcc, 0xd9, 0x9d, 0x3a, 0x8d, 0x73, 0x27, 0x72, 0xf2, 0xf4, - 0x0a, 0x2c, 0xb5, 0x6e, 0x87, 0x52, 0xe9, 0x42, 0x85, 0x72, 0xcd, 0x4e, 0xbd, 0x70, 0x85, 0x70, - 0x48, 0x9a, 0x1c, 0xe8, 0xb7, 0x7f, 0x68, 0x7d, 0xd2, 0x0e, 0x75, 0x8e, 0x34, 0x33, 0xbc, 0xa6, - 0x86, 0x27, 0xce, 0xa1, 0x4e, 0x8d, 0xcf, 0x90, 0x27, 0xcb, 0xe4, 0xae, 0xe6, 0x4d, 0xce, 0x7f, - 0xdc, 0x7a, 0x93, 0xab, 0x94, 0xcb, 0x07, 0xe5, 0x2d, 0x36, 0xbb, 0x0f, 0xd9, 0x1c, 0xad, 0xfd, - 0x21, 0x1b, 0xf7, 0x43, 0x71, 0xf4, 0x82, 0x6e, 0xa7, 0x6d, 0xb1, 0x8c, 0x24, 0xd8, 0x71, 0x83, - 0x8e, 0x84, 0x8e, 0x84, 0x8e, 0x84, 0x8e, 0x84, 0x8e, 0x5c, 0xa2, 0x23, 0x0f, 0x19, 0x64, 0x64, - 0x19, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, 0x32, 0x32, 0x03, 0x26, 0x57, 0x2c, 0x43, 0x44, 0x42, - 0x44, 0x6e, 0xbb, 0x88, 0x7c, 0x98, 0xae, 0x06, 0x0e, 0x15, 0x19, 0x8f, 0x0d, 0x19, 0x09, 0x19, - 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x49, 0xbe, 0x6e, 0x6f, 0xa4, 0xf2, 0xc3, 0x27, 0x06, 0x1d, - 0x59, 0x23, 0x1c, 0xf2, 0x44, 0xa8, 0xbb, 0x49, 0xa2, 0x28, 0x84, 0xe4, 0x16, 0xb0, 0xfa, 0x02, - 0x84, 0x24, 0x84, 0x24, 0xad, 0xc9, 0x61, 0x3f, 0x12, 0x52, 0x72, 0xcb, 0xa5, 0xa4, 0x78, 0xd4, - 0x42, 0xf5, 0x2c, 0xb6, 0x0a, 0x59, 0x4a, 0x61, 0x92, 0x91, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, - 0x21, 0x23, 0x21, 0x23, 0xe9, 0x65, 0xa4, 0xf5, 0xc2, 0x5a, 0xcb, 0xdc, 0xb0, 0xa5, 0x42, 0x5b, - 0xd9, 0x04, 0xe9, 0x60, 0x30, 0x66, 0x8a, 0x7e, 0x9f, 0x1e, 0xa4, 0x93, 0x91, 0x01, 0xd2, 0x00, - 0x69, 0x80, 0x34, 0x40, 0x1a, 0x20, 0x0d, 0x90, 0x06, 0x48, 0x2f, 0x9a, 0xb3, 0x81, 0x1f, 0x6a, - 0xc9, 0x81, 0xd1, 0xb3, 0x81, 0x01, 0xd1, 0x80, 0x68, 0x40, 0x34, 0x20, 0x1a, 0x10, 0x0d, 0x88, - 0x06, 0x44, 0x2f, 0x9a, 0x33, 0x1d, 0xfa, 0x2a, 0x92, 0x5a, 0x3e, 0x30, 0xe4, 0x4d, 0xbd, 0x1a, - 0x1b, 0x40, 0x0d, 0xa0, 0x06, 0x50, 0x03, 0xa8, 0x01, 0xd4, 0x00, 0xea, 0x0d, 0x04, 0xea, 0x8d, - 0x2e, 0x17, 0x65, 0xb9, 0x33, 0x45, 0x6a, 0x3c, 0xcb, 0x9d, 0x2a, 0xd2, 0x4d, 0x15, 0xd2, 0x3f, - 0xb2, 0xd1, 0xce, 0x82, 0xce, 0x28, 0x36, 0xab, 0x52, 0xf3, 0x9f, 0xe2, 0x89, 0xe2, 0xa8, 0x75, - 0xee, 0x44, 0x46, 0xba, 0xae, 0xb5, 0xe5, 0xb2, 0xd0, 0xa7, 0x52, 0x1d, 0xf7, 0xc5, 0x18, 0xf7, - 0xa2, 0xdc, 0xd1, 0x8e, 0x1a, 0xf6, 0xfb, 0x16, 0xcb, 0x5c, 0x9e, 0xfa, 0x8f, 0x74, 0x83, 0x35, - 0xc3, 0x9e, 0x08, 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xa8, 0x8d, 0x32, 0x32, 0x22, 0x1f, 0xe6, 0x82, - 0xef, 0xca, 0x59, 0xad, 0xab, 0x1a, 0x0e, 0xbb, 0x5a, 0x4d, 0x99, 0xc1, 0xe7, 0xbb, 0x41, 0xa7, - 0x25, 0x6f, 0x3a, 0xf5, 0x5b, 0x79, 0xe1, 0xdf, 0xca, 0x4e, 0x63, 0xf0, 0x50, 0xb9, 0x08, 0xb5, - 0x38, 0x9f, 0xdc, 0x41, 0xe7, 0x24, 0xe8, 0x8e, 0x7f, 0xdb, 0x1a, 0x5f, 0x79, 0xe7, 0x2a, 0xbe, - 0xcc, 0x7a, 0x72, 0x95, 0x68, 0x1a, 0xe5, 0xbe, 0x59, 0xd3, 0x9b, 0xb3, 0xb3, 0x1d, 0xa4, 0x3e, - 0x38, 0xf4, 0xf8, 0x67, 0x90, 0x39, 0xed, 0xb5, 0xbf, 0x23, 0x54, 0x6f, 0x10, 0x48, 0xa5, 0x77, - 0xba, 0x41, 0x3f, 0x08, 0x0d, 0xad, 0x7f, 0x3b, 0x78, 0x69, 0x15, 0x1f, 0xad, 0xe2, 0xa1, 0x1d, - 0xfc, 0x33, 0x65, 0x11, 0x96, 0x1c, 0x81, 0x65, 0x07, 0x60, 0x10, 0xaa, 0x56, 0x87, 0x26, 0x33, - 0x2e, 0x67, 0x7d, 0x07, 0xb1, 0xde, 0x37, 0xac, 0x69, 0x48, 0xa6, 0x0d, 0xc8, 0x9a, 0xe1, 0xac, - 0xf7, 0xb4, 0x56, 0x9f, 0xe3, 0xd5, 0x3e, 0xb9, 0xe2, 0x53, 0x31, 0xf5, 0x34, 0xcc, 0x3f, 0x85, - 0x35, 0x56, 0xec, 0x2a, 0x2b, 0x74, 0xb5, 0xa7, 0xfd, 0xfe, 0x67, 0xb5, 0xc2, 0x73, 0xca, 0x29, - 0x21, 0xef, 0xfe, 0xb9, 0x09, 0xc2, 0xd5, 0xfb, 0x3f, 0x26, 0x21, 0xb6, 0x97, 0xaf, 0x5a, 0xd1, - 0x5e, 0xd6, 0xeb, 0x0d, 0xb0, 0xf6, 0x3e, 0x84, 0x89, 0x7d, 0x05, 0xb3, 0xfb, 0x04, 0xa6, 0xe2, - 0xfe, 0xc6, 0xe3, 0xf8, 0xc6, 0xe3, 0xf2, 0xc6, 0xe3, 0xec, 0xb4, 0x9e, 0x6e, 0xdd, 0x5a, 0xf4, - 0xc9, 0xda, 0x59, 0xff, 0x51, 0xbf, 0x5d, 0x8d, 0xeb, 0x3e, 0x69, 0x33, 0x0d, 0x3b, 0x8c, 0x6d, - 0x12, 0x9a, 0xdc, 0xfc, 0xb3, 0xb3, 0xa9, 0x67, 0x7a, 0xb3, 0xce, 0xda, 0x26, 0x9c, 0xb5, 0xcd, - 0x35, 0x6b, 0x9b, 0x66, 0xbc, 0xe4, 0xd2, 0x54, 0xc3, 0x89, 0x9c, 0xdf, 0xfb, 0x77, 0x32, 0x27, - 0x52, 0x79, 0x83, 0x20, 0xd2, 0xe6, 0x2c, 0x25, 0x29, 0xd5, 0xf2, 0x66, 0x00, 0x53, 0x82, 0xdd, - 0x68, 0xef, 0x1e, 0xe3, 0x79, 0x03, 0x36, 0xf2, 0x02, 0xec, 0xee, 0xfb, 0xdb, 0xda, 0xd7, 0xb7, - 0xbe, 0x6f, 0x6f, 0x7d, 0x5f, 0xde, 0xfa, 0xbe, 0xbb, 0x5b, 0xa1, 0x30, 0xd3, 0xbd, 0x6c, 0x72, - 0x53, 0x99, 0x69, 0xad, 0xa7, 0xfb, 0xf4, 0xfb, 0xd1, 0xc7, 0x1d, 0x7d, 0xdc, 0x59, 0x1d, 0x11, - 0x99, 0x43, 0x22, 0x73, 0x4c, 0x66, 0x1d, 0x94, 0x61, 0x47, 0x65, 0xcd, 0x61, 0xcd, 0x3b, 0x2e, - 0xfb, 0xbd, 0xdb, 0x4d, 0x07, 0x6e, 0x09, 0xdc, 0x98, 0x75, 0x77, 0x46, 0xe1, 0xd6, 0x68, 0xdd, - 0x1b, 0x95, 0x9b, 0x23, 0x77, 0x77, 0xe4, 0x6e, 0x8f, 0xdc, 0xfd, 0xd9, 0x71, 0x83, 0x96, 0xdc, - 0xa1, 0x75, 0xb7, 0x98, 0x0c, 0x10, 0xef, 0x8d, 0x92, 0xb5, 0x84, 0x35, 0xb9, 0x15, 0xfb, 0x33, - 0x77, 0x89, 0x3e, 0xed, 0xae, 0xbb, 0x51, 0x6a, 0x77, 0xca, 0xe6, 0x56, 0xd9, 0xdc, 0x2b, 0x9b, - 0x9b, 0xb5, 0xeb, 0x6e, 0x2d, 0xbb, 0xdd, 0x64, 0xd6, 0xd0, 0xa7, 0xdd, 0x94, 0x0b, 0x7b, 0xdb, - 0xa7, 0x3d, 0x06, 0x02, 0xf4, 0x68, 0x4f, 0xcd, 0xd4, 0x2c, 0x6b, 0x89, 0x0e, 0x93, 0x93, 0x11, - 0x01, 0xcb, 0x80, 0x65, 0xc0, 0x32, 0x60, 0x19, 0xb0, 0xbc, 0xb5, 0xb0, 0x9c, 0x60, 0x01, 0x90, - 0x39, 0x35, 0x59, 0xd3, 0xbc, 0x62, 0x3a, 0x60, 0x9e, 0x0d, 0x08, 0x5c, 0x06, 0x2e, 0x03, 0x97, - 0x81, 0xcb, 0xc0, 0xe5, 0xad, 0xc5, 0xe5, 0x19, 0x14, 0x00, 0x96, 0x53, 0x73, 0x15, 0x9f, 0x49, - 0x26, 0x03, 0xe5, 0x78, 0x38, 0x1a, 0x48, 0x2e, 0x00, 0x92, 0x01, 0xc9, 0x80, 0x64, 0x40, 0xf2, - 0xea, 0xb3, 0x66, 0x7b, 0x03, 0x31, 0x19, 0x68, 0x52, 0xa8, 0x40, 0xaa, 0x9e, 0x78, 0x64, 0xea, - 0x24, 0x18, 0x8f, 0x8d, 0x8a, 0x58, 0x9b, 0xe6, 0xb0, 0x79, 0x1d, 0x37, 0x97, 0x03, 0x67, 0x77, - 0xe4, 0xec, 0x0e, 0x9d, 0xdd, 0xb1, 0xd3, 0x38, 0x78, 0x22, 0x47, 0x4f, 0xaf, 0xc1, 0x18, 0xb5, - 0x18, 0x87, 0x26, 0x5b, 0xa4, 0xcd, 0xfe, 0xe3, 0xef, 0x04, 0x92, 0x22, 0xa1, 0xa3, 0xe4, 0xd5, - 0x54, 0xc9, 0xc5, 0x30, 0x85, 0x52, 0x9b, 0xbf, 0x3c, 0xdf, 0x37, 0x22, 0xd2, 0xde, 0xf4, 0xac, - 0x2e, 0x31, 0xaf, 0x78, 0x19, 0x1a, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x82, - 0x7c, 0xdd, 0xa2, 0xd0, 0xe6, 0x46, 0xc0, 0x34, 0x4d, 0x22, 0x71, 0xca, 0x3a, 0x28, 0x12, 0x8a, - 0x01, 0xcf, 0x80, 0x67, 0xc0, 0x33, 0xe0, 0x19, 0xf0, 0xbc, 0x60, 0xdd, 0x0e, 0xa5, 0xd2, 0x07, - 0x45, 0x06, 0x74, 0xa6, 0xd4, 0xfc, 0x2d, 0x5f, 0xdd, 0x8d, 0xef, 0xf6, 0x9a, 0x74, 0x8d, 0xfc, - 0x60, 0xe8, 0xe5, 0x2e, 0xd5, 0xd6, 0xf7, 0x72, 0xcf, 0x6f, 0x71, 0x1f, 0xf7, 0x8f, 0x0c, 0x26, - 0xe7, 0x3f, 0x6e, 0xbd, 0xc9, 0x95, 0x8a, 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0xca, 0x5b, 0x6c, - 0x7b, 0x1f, 0xb2, 0x39, 0x5a, 0x1b, 0x22, 0xf2, 0x1d, 0x22, 0xf2, 0xfe, 0x7e, 0xa8, 0xa4, 0x7e, - 0xe2, 0xda, 0x49, 0x7e, 0x7b, 0x01, 0x10, 0x96, 0x10, 0x96, 0x10, 0x96, 0x10, 0x96, 0x10, 0x96, - 0xe4, 0xeb, 0x16, 0xdb, 0xc9, 0xaf, 0xfe, 0xce, 0x70, 0x49, 0x8a, 0x28, 0x79, 0xfd, 0x84, 0x1d, - 0xe5, 0xd5, 0xa6, 0x9c, 0xec, 0x88, 0x6d, 0xca, 0xa6, 0x89, 0x8e, 0xda, 0x82, 0x57, 0x80, 0x57, - 0x80, 0x57, 0x80, 0x57, 0x80, 0x57, 0x2c, 0x58, 0xb7, 0x72, 0xe0, 0xf9, 0xbd, 0x5e, 0x28, 0xa2, - 0x88, 0x83, 0x5a, 0xd4, 0x08, 0xc7, 0x9c, 0xce, 0x71, 0xe6, 0x83, 0xd6, 0x2f, 0x4f, 0xf6, 0xa1, - 0xc4, 0xf0, 0x6c, 0x53, 0xcf, 0xf8, 0x90, 0x61, 0xec, 0x73, 0x5f, 0x6b, 0x11, 0x2a, 0xf2, 0xc7, - 0x9d, 0x5c, 0xc0, 0xdf, 0xbb, 0xbb, 0xd7, 0x79, 0xaf, 0xd6, 0x7e, 0xbe, 0x2e, 0x78, 0xb5, 0x76, - 0xfc, 0xb2, 0x30, 0xf9, 0x27, 0x7e, 0x5d, 0xbc, 0xce, 0x7b, 0xa5, 0xd9, 0xeb, 0xf2, 0x75, 0xde, - 0x2b, 0xb7, 0xf7, 0xfe, 0xfa, 0xeb, 0xd3, 0xde, 0x8f, 0x83, 0xd1, 0xfb, 0x3f, 0xf8, 0x5b, 0x8e, - 0xfc, 0x26, 0xdb, 0xb4, 0xe1, 0xc9, 0x8f, 0x5b, 0xb4, 0x68, 0x2b, 0x58, 0xb4, 0xbc, 0x8b, 0xd6, - 0xf7, 0x6e, 0xeb, 0xde, 0xd7, 0xf6, 0x8f, 0xc2, 0xc7, 0xd2, 0xe8, 0x68, 0xef, 0x47, 0x75, 0xf4, - 0xf6, 0x87, 0xcf, 0x8b, 0xde, 0x56, 0xf8, 0x58, 0x1d, 0x1d, 0x2d, 0xf9, 0x4d, 0x65, 0x74, 0xf4, - 0x8b, 0xdf, 0x51, 0x1e, 0xed, 0xa6, 0xde, 0x3a, 0xfe, 0x79, 0x71, 0xd9, 0x07, 0x4a, 0x4b, 0x3e, - 0x70, 0xb0, 0xec, 0x03, 0x07, 0x4b, 0x3e, 0xb0, 0xf4, 0x92, 0x8a, 0x4b, 0x3e, 0x50, 0x1e, 0x3d, - 0xa7, 0xde, 0xbf, 0xbb, 0xf8, 0xad, 0x95, 0xd1, 0xde, 0xf3, 0xb2, 0xdf, 0x55, 0x47, 0xcf, 0x47, - 0x7b, 0x5b, 0xe0, 0xc2, 0xb0, 0xc3, 0xe2, 0x62, 0xec, 0xe3, 0x51, 0x7b, 0xec, 0xbb, 0x2c, 0x8b, - 0x2e, 0x02, 0x11, 0x11, 0x44, 0x44, 0x10, 0x11, 0x41, 0x44, 0x04, 0x11, 0x11, 0xf2, 0x75, 0x8b, - 0x9d, 0x96, 0x57, 0x7f, 0x5f, 0x63, 0x93, 0x14, 0xd1, 0xdc, 0x7f, 0x63, 0xc7, 0x65, 0xc5, 0xa9, - 0x97, 0xea, 0xc1, 0xef, 0xcb, 0x9e, 0x17, 0x0a, 0x3f, 0x0a, 0x14, 0x3d, 0xe1, 0x78, 0x33, 0x3e, - 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, 0x7d, 0xb8, 0xaf, 0x27, 0x94, 0x96, - 0xfa, 0x89, 0x89, 0x6f, 0x10, 0xe6, 0xd7, 0xe6, 0x1a, 0xd3, 0x5b, 0xfd, 0xec, 0x47, 0x0c, 0x2e, - 0x63, 0x36, 0xe1, 0x8d, 0xb3, 0x6f, 0xf5, 0x93, 0xc6, 0x97, 0x4e, 0xab, 0x79, 0x75, 0x79, 0xdc, - 0x69, 0x1d, 0xd7, 0x2f, 0x9a, 0x67, 0xd4, 0xde, 0x63, 0x92, 0xe6, 0x1c, 0xb1, 0x84, 0x39, 0x99, - 0xf2, 0xca, 0xdf, 0xce, 0x7e, 0xb3, 0xd5, 0xf8, 0xa3, 0x71, 0x56, 0xbf, 0x6c, 0xb6, 0x72, 0xdb, - 0x90, 0xd4, 0xef, 0xc8, 0xac, 0xff, 0x7e, 0x72, 0x75, 0x71, 0x79, 0xdc, 0xea, 0x9c, 0x34, 0x9b, - 0xe7, 0x98, 0x77, 0xba, 0x79, 0xaf, 0x5f, 0x60, 0xca, 0xa9, 0x4d, 0xbd, 0x79, 0xf6, 0xf5, 0xf8, - 0x4b, 0x2e, 0xe3, 0xa7, 0x36, 0xda, 0x59, 0xe3, 0x7b, 0x99, 0x50, 0xf7, 0x7d, 0x3f, 0xd2, 0xde, - 0x7d, 0xd0, 0x93, 0xb7, 0x52, 0xf4, 0xe8, 0xc5, 0xfd, 0xfc, 0xf0, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, - 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xe4, 0xeb, 0x56, 0xcb, 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, - 0x31, 0x68, 0x7b, 0xc2, 0x04, 0x9e, 0xdc, 0x95, 0x8a, 0x4f, 0xc9, 0xe6, 0x94, 0xaf, 0x82, 0x48, - 0x74, 0x03, 0xd5, 0x23, 0xcd, 0x26, 0x45, 0x3d, 0x82, 0xec, 0x61, 0xfc, 0xe2, 0xa8, 0x09, 0xea, - 0x11, 0x90, 0x9b, 0x1c, 0xea, 0x11, 0xec, 0x14, 0x0e, 0x4b, 0xa5, 0x4a, 0xb5, 0x54, 0xca, 0x57, - 0x0f, 0xaa, 0xf9, 0x5a, 0xb9, 0x5c, 0xa8, 0x14, 0x50, 0x99, 0x20, 0x73, 0xa3, 0x21, 0x6f, 0xee, - 0xd7, 0xcd, 0x90, 0xaa, 0xf9, 0x57, 0x8a, 0x54, 0xd1, 0x34, 0x01, 0x4b, 0x86, 0xfd, 0x22, 0x6e, - 0xfd, 0x61, 0x7f, 0x42, 0xc5, 0xf3, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, - 0x28, 0xab, 0x07, 0x19, 0x0b, 0x19, 0x0b, 0x19, 0x0b, 0x19, 0xbb, 0x51, 0x26, 0x87, 0xb2, 0x7a, - 0x10, 0xaf, 0x10, 0xaf, 0x3b, 0xb9, 0x69, 0xf2, 0x73, 0x30, 0xd4, 0x82, 0x5e, 0xc0, 0xbe, 0x1e, - 0x1c, 0x82, 0x12, 0x82, 0x12, 0x82, 0x12, 0x82, 0x12, 0x82, 0x92, 0x7c, 0xdd, 0xa2, 0x8d, 0x8a, - 0xe3, 0x23, 0xd8, 0xee, 0x04, 0x5b, 0x57, 0x2a, 0xd0, 0xfe, 0x98, 0x8d, 0xd2, 0x34, 0x84, 0x8d, - 0xba, 0xff, 0x88, 0x7b, 0x7f, 0xda, 0xb8, 0x2d, 0xb7, 0x1f, 0x0c, 0x84, 0xea, 0x4e, 0x80, 0x72, - 0xec, 0x3f, 0xf6, 0xc7, 0xff, 0x0b, 0xe5, 0xcd, 0xbe, 0x7f, 0x2b, 0xbd, 0xc8, 0xbf, 0x95, 0x51, - 0xf2, 0x6a, 0x7f, 0x52, 0x11, 0x24, 0x0a, 0xb5, 0xf0, 0x06, 0x41, 0x5f, 0x76, 0x9f, 0xf6, 0x95, - 0x90, 0x77, 0xff, 0xdc, 0x04, 0x61, 0x94, 0xbc, 0xda, 0xf7, 0x7b, 0xff, 0x4e, 0x5c, 0x91, 0x54, - 0xde, 0x20, 0x88, 0xf4, 0xfe, 0x84, 0x5e, 0x44, 0xf1, 0x3f, 0xf1, 0x21, 0x3d, 0xb4, 0x4a, 0x4f, - 0x3f, 0x92, 0xa1, 0xfa, 0xae, 0x82, 0xff, 0x29, 0xcf, 0xd7, 0x3a, 0x94, 0x37, 0xe3, 0x19, 0xa3, - 0xeb, 0x9b, 0xbe, 0x60, 0x6c, 0x34, 0x51, 0x77, 0x95, 0xf5, 0xa1, 0x89, 0x7a, 0x36, 0x59, 0x1d, - 0x9a, 0xa8, 0xaf, 0x34, 0x6b, 0x64, 0x4d, 0xd4, 0x53, 0x4e, 0x92, 0x5e, 0xae, 0xa7, 0x2f, 0x81, - 0x56, 0xb4, 0x17, 0x20, 0xda, 0x21, 0xda, 0x21, 0xda, 0x21, 0xda, 0xdd, 0x11, 0xed, 0x54, 0xee, - 0x3f, 0x19, 0x70, 0xd2, 0x32, 0x5c, 0x53, 0x87, 0x0a, 0xe6, 0x3c, 0xc6, 0xcb, 0x25, 0x10, 0x9b, - 0x2e, 0xcf, 0xd6, 0x11, 0x39, 0x1c, 0x70, 0xc2, 0x82, 0x1b, 0xf0, 0xc0, 0x0d, 0x13, 0xce, 0xc0, - 0x85, 0x33, 0xb0, 0xe1, 0x0c, 0x7c, 0xd0, 0xc2, 0x08, 0x31, 0x9c, 0x24, 0xb3, 0x7c, 0xc9, 0xe1, - 0xe0, 0x77, 0x78, 0x0b, 0x7f, 0xa5, 0xd8, 0x7e, 0x95, 0xa7, 0xec, 0xee, 0xac, 0x10, 0x58, 0x5c, - 0xcf, 0xeb, 0x05, 0xec, 0x32, 0xba, 0x59, 0x4e, 0x68, 0xda, 0xb9, 0x38, 0xfa, 0xca, 0x46, 0x5c, - 0xe2, 0xe1, 0x79, 0x48, 0x4b, 0x01, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0xbb, 0xa4, - 0x85, 0x5a, 0x0b, 0xcf, 0x6b, 0xe2, 0xbe, 0x60, 0xcc, 0xa3, 0x9d, 0x93, 0xc6, 0xe3, 0x2b, 0xf9, - 0xb8, 0x95, 0xc9, 0x95, 0x5c, 0xa0, 0xe3, 0x02, 0xf8, 0xb8, 0x05, 0x42, 0xae, 0x80, 0x91, 0x73, - 0xa0, 0xe4, 0x1c, 0x38, 0x39, 0x07, 0x52, 0x3c, 0x60, 0xc5, 0x04, 0x5a, 0xfc, 0x8a, 0x3b, 0xe5, - 0x37, 0x86, 0x52, 0xe9, 0x42, 0x85, 0xd3, 0x67, 0x4c, 0x51, 0xa4, 0xc2, 0x78, 0x09, 0x3c, 0xc7, - 0x7f, 0xde, 0xfe, 0xe1, 0xf5, 0x99, 0x3b, 0xdc, 0xc7, 0x83, 0x1c, 0xa3, 0x17, 0xa9, 0xcb, 0x61, - 0x3e, 0x3e, 0x94, 0xba, 0x1e, 0x07, 0x8e, 0x74, 0x38, 0xe2, 0x4e, 0xe7, 0x4d, 0xd8, 0x7f, 0x84, - 0x09, 0xff, 0xc4, 0x84, 0x2b, 0xe5, 0xf2, 0x41, 0x19, 0x66, 0xec, 0x16, 0x17, 0xe1, 0x1f, 0xbd, - 0xfd, 0x61, 0x3b, 0xee, 0x97, 0xe3, 0x14, 0x24, 0xdf, 0x4e, 0xfa, 0xe2, 0xb0, 0x01, 0xc3, 0x8e, - 0x3a, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x19, 0x89, 0x1b, 0x1c, - 0x3a, 0x10, 0x36, 0x28, 0x23, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x60, - 0xdd, 0x84, 0x8b, 0x65, 0x04, 0x0d, 0x10, 0x34, 0x40, 0xd0, 0x80, 0x36, 0x68, 0xf0, 0x30, 0x5d, - 0x7d, 0x2e, 0x44, 0x0d, 0xe2, 0x6b, 0x41, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, - 0xd8, 0x00, 0x61, 0x83, 0x77, 0xfa, 0x8d, 0x1b, 0xa9, 0xfc, 0xf0, 0xc9, 0x81, 0xb8, 0x41, 0x8d, - 0xf1, 0x12, 0x4e, 0x84, 0xba, 0x9b, 0x24, 0xfe, 0x23, 0x70, 0x80, 0xc0, 0xc1, 0x4f, 0x55, 0x57, - 0x01, 0x9a, 0x0b, 0x81, 0x83, 0xcd, 0x36, 0x61, 0xe4, 0x1b, 0x20, 0x74, 0x80, 0xd0, 0x01, 0xa9, - 0x99, 0x8b, 0x47, 0x2d, 0x54, 0x8f, 0xb0, 0x0b, 0xe6, 0x52, 0xca, 0x97, 0x5c, 0x09, 0xc2, 0x06, - 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0xbc, 0x37, 0x6c, 0x40, 0x5e, - 0x33, 0x76, 0x19, 0x8c, 0x10, 0xd5, 0x90, 0xdd, 0x4e, 0xd2, 0x12, 0x0c, 0xc6, 0xcc, 0xdc, 0xef, - 0xf3, 0x93, 0x96, 0xe4, 0x4a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, - 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xd2, 0x73, 0x3c, 0xf0, 0x43, 0x2d, 0x5d, 0xe0, 0x2c, 0xb3, 0x0b, - 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, - 0x49, 0xcf, 0xb1, 0x0e, 0x7d, 0x15, 0x49, 0x2d, 0x1f, 0x1c, 0xc8, 0x2b, 0x7d, 0x75, 0x2d, 0x20, - 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0xce, 0x13, 0x97, - 0x4c, 0x97, 0x17, 0x25, 0x6e, 0x52, 0x98, 0x1a, 0x9f, 0xaf, 0x69, 0x61, 0xba, 0x3f, 0x5e, 0xfa, - 0x47, 0x14, 0x9d, 0x0d, 0xf9, 0xec, 0x2d, 0x5b, 0x4d, 0x63, 0xfe, 0x14, 0x4f, 0x1c, 0x55, 0x5f, - 0x72, 0x27, 0x32, 0xd2, 0x75, 0xad, 0x89, 0x3b, 0xd6, 0x9c, 0x4a, 0x75, 0xdc, 0x17, 0x63, 0x4a, - 0x10, 0xe5, 0x8e, 0x76, 0xd4, 0xb0, 0xdf, 0x27, 0xac, 0x38, 0x7f, 0xea, 0x3f, 0xf2, 0x0d, 0xde, - 0x0c, 0x7b, 0x22, 0x14, 0xbd, 0xcf, 0x4f, 0xd3, 0xa1, 0x33, 0x65, 0xc4, 0x4c, 0xee, 0xd8, 0x71, - 0x37, 0x9c, 0x23, 0xed, 0xa6, 0x10, 0x0e, 0xbb, 0x5a, 0x4d, 0xf9, 0xd6, 0xe7, 0xbb, 0x41, 0xa7, - 0x25, 0x6f, 0x3a, 0xf5, 0x5b, 0x79, 0xe1, 0xdf, 0xca, 0x4e, 0x63, 0xf0, 0x50, 0xb9, 0x08, 0xb5, - 0x38, 0x9f, 0xdc, 0x6c, 0xe7, 0x6c, 0x7a, 0x8b, 0x9d, 0x7a, 0xef, 0xdf, 0x96, 0xbc, 0x69, 0xa8, - 0xf3, 0x20, 0xd2, 0x9d, 0xd6, 0xf8, 0xc6, 0x3a, 0x57, 0xf1, 0x5d, 0xd4, 0x93, 0x9b, 0x40, 0x53, - 0x66, 0xfe, 0x85, 0xb6, 0x45, 0x4d, 0x99, 0x17, 0xf4, 0xff, 0xdd, 0xd4, 0x0e, 0xcd, 0x1f, 0x36, - 0xc8, 0xd2, 0x66, 0x3c, 0x64, 0xfc, 0xc8, 0x3d, 0xd9, 0xdb, 0x11, 0xaa, 0x37, 0x08, 0xa4, 0xd2, - 0x3b, 0xdd, 0xa0, 0x1f, 0x84, 0x96, 0x3c, 0x19, 0x0d, 0x09, 0x21, 0x25, 0x1d, 0xa4, 0x24, 0x83, - 0x86, 0x54, 0xd8, 0xb2, 0x38, 0x22, 0x9f, 0xc6, 0xe7, 0xcb, 0x2c, 0xe2, 0xbf, 0x31, 0xbc, 0xb7, - 0xe3, 0x5c, 0xcd, 0xbb, 0x3e, 0xb3, 0xdf, 0x68, 0xd8, 0xa4, 0x6d, 0x9b, 0x32, 0x87, 0x09, 0x9b, - 0x35, 0x0c, 0x73, 0x8f, 0xcf, 0xcc, 0x37, 0x19, 0x32, 0x00, 0x5b, 0x0f, 0x9e, 0xf4, 0x81, 0x1b, - 0x74, 0x53, 0x06, 0xdc, 0x92, 0x19, 0xbb, 0x5b, 0xdf, 0x4a, 0x0c, 0x58, 0x48, 0xee, 0xf5, 0x44, - 0x87, 0xe6, 0x42, 0xf1, 0x2f, 0x45, 0x7f, 0xe6, 0xbf, 0xdf, 0x90, 0x4d, 0x9b, 0x6d, 0x52, 0x67, - 0x7c, 0x03, 0xd5, 0xc6, 0x86, 0xa8, 0xdd, 0x0d, 0x4e, 0x5b, 0x1b, 0x96, 0xd6, 0x37, 0x20, 0xad, - 0x6f, 0x28, 0x5a, 0xdf, 0x20, 0x74, 0x0b, 0x2d, 0x4c, 0x37, 0x45, 0xcb, 0x4d, 0xa1, 0xda, 0xb8, - 0x61, 0xcd, 0x96, 0xc3, 0xf4, 0xfb, 0x0d, 0x3f, 0x74, 0x3b, 0x5d, 0x30, 0xad, 0x65, 0x6a, 0xd8, - 0xcc, 0xc0, 0xa0, 0xc9, 0xac, 0xb0, 0x9d, 0x31, 0x41, 0x96, 0x09, 0x41, 0x96, 0xe1, 0x40, 0x96, - 0xb9, 0xe0, 0xb6, 0xae, 0xb1, 0xd5, 0xc5, 0x31, 0x76, 0x2c, 0xf6, 0xec, 0x71, 0xce, 0x7f, 0xd9, - 0xb2, 0x45, 0xbb, 0xcd, 0x7c, 0xad, 0x27, 0x9e, 0x51, 0x24, 0x96, 0xd1, 0x26, 0x8e, 0x51, 0x25, - 0x86, 0x91, 0x27, 0x7e, 0x91, 0x27, 0x76, 0x91, 0x27, 0x6e, 0x6d, 0x56, 0xac, 0xdc, 0x76, 0x73, - 0xdb, 0x5c, 0x1c, 0x74, 0xb7, 0x6e, 0xc7, 0xb3, 0xd5, 0x69, 0x33, 0xc6, 0xff, 0xd6, 0x5d, 0x5a, - 0x4e, 0xa3, 0x25, 0xcb, 0xd7, 0xa5, 0xcc, 0xcb, 0xe5, 0xc9, 0xbf, 0xa5, 0xce, 0xb3, 0x65, 0xcb, - 0xa7, 0x65, 0xcb, 0x9b, 0x65, 0xcb, 0x8f, 0xdd, 0xec, 0xcd, 0x70, 0xb2, 0xbc, 0xd6, 0x64, 0xdd, - 0xf5, 0x85, 0x7f, 0x1b, 0x8a, 0x5b, 0x8a, 0x45, 0x37, 0x63, 0x95, 0x55, 0x82, 0xb1, 0xce, 0xa7, - 0xf1, 0xe5, 0x4f, 0x9f, 0xe2, 0x8c, 0xc1, 0xfd, 0x18, 0x08, 0x36, 0x75, 0xbf, 0xdd, 0x22, 0xb3, - 0x9c, 0x6d, 0x87, 0xd3, 0x61, 0x72, 0x32, 0x22, 0x60, 0x19, 0xb0, 0x0c, 0x58, 0x06, 0x2c, 0x03, - 0x96, 0xb7, 0x16, 0x96, 0x13, 0x2c, 0x00, 0x32, 0xa7, 0x26, 0x6b, 0x9a, 0xb0, 0x46, 0x07, 0xcc, - 0xb3, 0x01, 0x81, 0xcb, 0xc0, 0x65, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0xbc, 0xb5, 0xb8, 0x3c, 0x83, - 0x02, 0xc0, 0x72, 0x6a, 0xae, 0xe2, 0x13, 0x88, 0x64, 0xa0, 0x1c, 0x0f, 0x47, 0x03, 0xc9, 0x05, - 0x40, 0x32, 0x20, 0x19, 0x90, 0x0c, 0x48, 0x5e, 0x7d, 0xd6, 0x6c, 0x6f, 0x20, 0x26, 0x03, 0x4d, - 0x8e, 0x15, 0x4b, 0xd5, 0x13, 0x74, 0x05, 0x64, 0xe6, 0x5b, 0x52, 0xc6, 0x63, 0x53, 0x9d, 0xa5, - 0x26, 0x2d, 0x15, 0x44, 0x5e, 0x1a, 0x88, 0xa3, 0x14, 0x10, 0x6f, 0xe9, 0x1f, 0xae, 0x52, 0x3f, - 0xec, 0xa5, 0x7d, 0xd8, 0x4b, 0xf9, 0xb0, 0x97, 0xee, 0xc9, 0x56, 0x95, 0x07, 0xf2, 0x52, 0x3c, - 0x0c, 0x5a, 0x8c, 0x43, 0x93, 0x2d, 0xd2, 0x66, 0xff, 0xf1, 0x77, 0x02, 0x49, 0x91, 0xd0, 0x51, - 0xf2, 0x6a, 0xaa, 0xe4, 0x62, 0x98, 0xca, 0xca, 0x51, 0x77, 0x02, 0x66, 0x4d, 0x93, 0xa1, 0x94, - 0xb2, 0x66, 0x8a, 0x4c, 0x25, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x89, 0x05, - 0xeb, 0x76, 0x28, 0x95, 0x3e, 0x28, 0x32, 0xb0, 0x09, 0x4a, 0x32, 0xd1, 0xf2, 0xd5, 0x9d, 0x20, - 0x6f, 0x00, 0xcd, 0x50, 0xc6, 0x8e, 0xb3, 0xc1, 0x33, 0x77, 0x61, 0xdf, 0x59, 0xf7, 0x5b, 0xae, - 0xf1, 0x1d, 0xe8, 0x74, 0xcb, 0x51, 0xdc, 0x9a, 0xb3, 0x21, 0xb3, 0x2b, 0x26, 0x57, 0x2a, 0xd6, - 0x4a, 0xb5, 0x4a, 0xb5, 0x58, 0x2b, 0x6f, 0xb1, 0xed, 0x65, 0xb4, 0x3a, 0x65, 0x1b, 0x22, 0xf2, - 0x1d, 0x22, 0xf2, 0xfe, 0x7e, 0xa8, 0xa4, 0x7e, 0xe2, 0x0a, 0x51, 0xbf, 0xbd, 0x00, 0x08, 0x4b, - 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0xf2, 0x75, 0x8b, 0x38, 0xf5, 0xab, 0xbf, 0x33, - 0x5c, 0x92, 0x22, 0x4a, 0x5e, 0x3f, 0x21, 0x54, 0xbd, 0xda, 0x94, 0x93, 0x9d, 0xdd, 0x49, 0xd9, - 0x34, 0xd1, 0x19, 0x1e, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x8a, 0x05, 0xeb, - 0x56, 0x0e, 0x3c, 0xbf, 0xd7, 0x0b, 0x45, 0x14, 0x71, 0x50, 0x8b, 0x1a, 0xe1, 0x98, 0xd3, 0x39, - 0xce, 0x7c, 0xd0, 0xfa, 0xe5, 0xc9, 0x3e, 0x94, 0x18, 0x9e, 0x6d, 0xea, 0x19, 0x1f, 0x32, 0x8c, - 0x7d, 0xee, 0x6b, 0x2d, 0x42, 0x45, 0xfe, 0xb8, 0x93, 0x0b, 0xf8, 0x7b, 0x77, 0xf7, 0x3a, 0xef, - 0xd5, 0xda, 0xcf, 0xd7, 0x05, 0xaf, 0xd6, 0x8e, 0x5f, 0x16, 0x26, 0xff, 0xc4, 0xaf, 0x8b, 0xd7, - 0x79, 0xaf, 0x34, 0x7b, 0x5d, 0xbe, 0xce, 0x7b, 0xe5, 0xf6, 0xde, 0x5f, 0x7f, 0x7d, 0xda, 0xfb, - 0x71, 0x30, 0x7a, 0xff, 0x07, 0x7f, 0xa3, 0xef, 0x18, 0xd6, 0xce, 0x72, 0xfb, 0x24, 0xde, 0x45, - 0x5b, 0xc1, 0xa2, 0xe5, 0x5d, 0xb4, 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, - 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, - 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, - 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, - 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, - 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, 0xda, 0xdb, 0x02, 0x17, 0x86, 0x1d, 0x16, 0x17, 0x63, 0x1f, - 0x8f, 0xda, 0x63, 0xdf, 0x65, 0x59, 0x74, 0x11, 0x88, 0x88, 0x20, 0x22, 0x82, 0x88, 0x08, 0x22, - 0x22, 0x88, 0x88, 0x90, 0xaf, 0x5b, 0xec, 0xb4, 0xbc, 0xfa, 0xfb, 0x1a, 0x9b, 0xa4, 0x88, 0xe6, - 0xfe, 0x1b, 0x3b, 0x2e, 0x2b, 0x4e, 0xbd, 0x54, 0x0f, 0x7e, 0x5f, 0xf6, 0xbc, 0x50, 0xf8, 0x11, - 0x61, 0x4b, 0xc8, 0x17, 0x91, 0x39, 0x3f, 0x3e, 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, - 0xb8, 0x06, 0x7d, 0xb8, 0xaf, 0x27, 0x94, 0x96, 0xfa, 0x89, 0x89, 0x6f, 0x10, 0xe6, 0xd7, 0xe6, - 0x1a, 0xd3, 0x5b, 0xfd, 0xec, 0x47, 0x0c, 0x2e, 0x63, 0x36, 0xe1, 0x8d, 0xb3, 0x6f, 0xf5, 0x93, - 0xc6, 0x97, 0x4e, 0xab, 0x79, 0x75, 0x79, 0xdc, 0x69, 0x1d, 0xd7, 0x2f, 0x9a, 0x67, 0xd4, 0xde, - 0x63, 0x92, 0xe6, 0x1c, 0xb1, 0x84, 0x39, 0x99, 0xf2, 0xca, 0xdf, 0xce, 0x7e, 0xb3, 0xd5, 0xf8, - 0xa3, 0x71, 0x56, 0xbf, 0x6c, 0xb6, 0x72, 0xdb, 0x90, 0xd4, 0xef, 0xc8, 0xac, 0xff, 0x7e, 0x72, - 0x75, 0x71, 0x79, 0xdc, 0xea, 0x9c, 0x34, 0x9b, 0xe7, 0x98, 0x77, 0xba, 0x79, 0xaf, 0x5f, 0x60, - 0xca, 0xa9, 0x4d, 0xbd, 0x79, 0xf6, 0xf5, 0xf8, 0x4b, 0x2e, 0xe3, 0xa7, 0x36, 0xda, 0x59, 0xe3, - 0x7b, 0x99, 0x50, 0xf7, 0x7d, 0x3f, 0xd2, 0xde, 0x7d, 0xd0, 0x93, 0xb7, 0x52, 0xf4, 0xe8, 0xc5, - 0xfd, 0xfc, 0xf0, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xe4, 0xeb, 0x56, - 0xcb, 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, 0x31, 0x68, 0x7b, 0xc2, 0x04, 0x9e, 0xdc, 0x95, - 0x8a, 0x4f, 0xc9, 0xe6, 0x94, 0xaf, 0x82, 0x48, 0x74, 0x03, 0xd5, 0x23, 0xcd, 0x26, 0x45, 0x3d, - 0x82, 0xec, 0x61, 0xfc, 0xe2, 0xa8, 0x09, 0xea, 0x11, 0x90, 0x9b, 0x1c, 0xea, 0x11, 0xec, 0x14, - 0x0e, 0x4b, 0xa5, 0x4a, 0xb5, 0x54, 0xca, 0x57, 0x0f, 0xaa, 0xf9, 0x5a, 0xb9, 0x5c, 0xa8, 0x14, - 0x50, 0x99, 0x20, 0x73, 0xa3, 0x21, 0x6f, 0xee, 0xd7, 0xcd, 0x90, 0xaa, 0xab, 0x48, 0x8a, 0x54, - 0xd1, 0x74, 0x17, 0x49, 0x86, 0xfd, 0x22, 0x6e, 0xfd, 0x61, 0x7f, 0x42, 0xc5, 0xf3, 0xd0, 0xd2, - 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0x28, 0xab, 0x07, 0x19, 0x0b, 0x19, 0x0b, 0x19, - 0x0b, 0x19, 0xbb, 0x51, 0x26, 0x87, 0xb2, 0x7a, 0x10, 0xaf, 0x10, 0xaf, 0x3b, 0xb9, 0x69, 0xf2, - 0x73, 0x30, 0xd4, 0x82, 0x5e, 0xc0, 0xbe, 0x1e, 0x1c, 0x82, 0x12, 0x82, 0x12, 0x82, 0x12, 0x82, - 0x12, 0x82, 0x92, 0x7c, 0xdd, 0xde, 0x04, 0x41, 0x5f, 0xf8, 0x8a, 0x23, 0xe9, 0xba, 0x90, 0x15, - 0xa8, 0xde, 0xe8, 0x16, 0x73, 0x75, 0xa5, 0x02, 0xed, 0x8f, 0xd9, 0x28, 0x4d, 0xa7, 0xb9, 0xa8, - 0xfb, 0x8f, 0xb8, 0xf7, 0x07, 0xd3, 0x43, 0x77, 0xfb, 0xc1, 0x40, 0xa8, 0xee, 0x04, 0x28, 0xc7, - 0xfe, 0x63, 0x7f, 0xfc, 0xbf, 0x50, 0xde, 0xec, 0xfb, 0xb7, 0xd2, 0x8b, 0xfc, 0x5b, 0x19, 0x25, - 0xaf, 0xf6, 0x27, 0x15, 0x41, 0xa2, 0x50, 0x0b, 0x6f, 0x10, 0xf4, 0x65, 0xf7, 0x69, 0x5f, 0x09, - 0x79, 0xf7, 0xcf, 0x4d, 0x10, 0x46, 0xc9, 0xab, 0x7d, 0xbf, 0xf7, 0xef, 0xc4, 0x15, 0x49, 0xe5, - 0x0d, 0x42, 0xb1, 0x3f, 0x61, 0x17, 0x51, 0xfc, 0x4f, 0x7c, 0x46, 0x0f, 0x2d, 0x58, 0xd3, 0x4f, - 0x64, 0xa8, 0xbe, 0xab, 0xe0, 0x7f, 0xca, 0xf3, 0xb5, 0x0e, 0xe5, 0xcd, 0x78, 0xc6, 0xe8, 0xfa, - 0xb1, 0x2e, 0x18, 0x1b, 0xcd, 0x59, 0x5d, 0x25, 0x7d, 0x68, 0xce, 0x9a, 0x4d, 0x52, 0x87, 0xe6, - 0xac, 0x2b, 0xcd, 0x1a, 0x59, 0x73, 0xd6, 0x94, 0x93, 0xa4, 0x57, 0xeb, 0xe9, 0x4b, 0xa0, 0xd5, - 0xec, 0x05, 0x68, 0x76, 0x68, 0x76, 0x68, 0x76, 0x68, 0x76, 0x77, 0x34, 0x3b, 0x95, 0xfb, 0x4f, - 0x06, 0x9c, 0xb4, 0x22, 0xd5, 0xd4, 0x91, 0x82, 0x9d, 0x54, 0xab, 0xee, 0xc9, 0x25, 0x10, 0x9b, - 0x2e, 0xcf, 0xce, 0x11, 0x39, 0x1c, 0x70, 0xc2, 0x82, 0x1b, 0xf0, 0xc0, 0x0d, 0x13, 0xce, 0xc0, - 0x85, 0x33, 0xb0, 0xe1, 0x0c, 0x7c, 0xd0, 0xc2, 0x08, 0x31, 0x9c, 0x24, 0xb3, 0x7c, 0xc9, 0xe1, - 0xe0, 0x77, 0x78, 0xeb, 0x7e, 0xa5, 0xd8, 0x7e, 0x95, 0xa7, 0xea, 0xee, 0xac, 0x0e, 0x58, 0x5c, - 0xce, 0xeb, 0x05, 0xec, 0x32, 0xba, 0x57, 0x4e, 0x68, 0xda, 0xb9, 0x38, 0xfa, 0xca, 0x46, 0x5c, - 0xe2, 0xe1, 0x79, 0x48, 0x4b, 0x01, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0xbb, 0xa4, - 0x85, 0x5a, 0x0b, 0xcf, 0x6b, 0xe2, 0xbe, 0x60, 0x4c, 0xa3, 0x9d, 0x93, 0xc6, 0xe3, 0x2b, 0xf9, - 0xb8, 0x95, 0xb9, 0x95, 0x5c, 0xa0, 0xe3, 0x02, 0xf8, 0xb8, 0x05, 0x42, 0xae, 0x80, 0x91, 0x73, - 0xa0, 0xe4, 0x1c, 0x38, 0x39, 0x07, 0x52, 0x3c, 0x60, 0xc5, 0x04, 0x5a, 0xfc, 0x8a, 0x3b, 0xe5, - 0x37, 0x86, 0x52, 0xe9, 0x42, 0x85, 0xd3, 0x67, 0x4c, 0x51, 0xa4, 0xc2, 0x78, 0x09, 0x3c, 0xa7, - 0x7f, 0xde, 0xfe, 0xe1, 0xf5, 0x99, 0x3b, 0xdc, 0xa7, 0x83, 0x1c, 0xa3, 0x17, 0xa9, 0xcb, 0x61, - 0x3e, 0x3d, 0x94, 0xba, 0x1e, 0x07, 0x4e, 0x74, 0x38, 0xe2, 0x4e, 0xe7, 0x4d, 0xd8, 0x7f, 0x84, - 0x09, 0xff, 0xc4, 0x84, 0x2b, 0xe5, 0xf2, 0x41, 0x19, 0x66, 0xec, 0x16, 0x17, 0xe1, 0x1f, 0xbd, - 0xfd, 0x61, 0x3b, 0xee, 0x97, 0xe3, 0x10, 0x24, 0xdf, 0x4e, 0xfa, 0xe2, 0xb0, 0x01, 0xc3, 0x8e, - 0x3a, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x19, 0x89, 0x1b, 0x1c, - 0x3a, 0x10, 0x36, 0x28, 0x23, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x60, - 0xdd, 0x84, 0x8b, 0x65, 0x04, 0x0d, 0x10, 0x34, 0x40, 0xd0, 0x80, 0x36, 0x68, 0xf0, 0x30, 0x5d, - 0x7d, 0x2e, 0x44, 0x0d, 0xe2, 0x6b, 0x41, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, - 0xd8, 0x00, 0x61, 0x83, 0x77, 0xfa, 0x8d, 0x1b, 0xa9, 0xfc, 0xf0, 0xc9, 0x81, 0xb8, 0x41, 0x8d, - 0xf1, 0x12, 0x4e, 0x84, 0xba, 0x9b, 0x24, 0xfe, 0x23, 0x70, 0x80, 0xc0, 0xc1, 0x4f, 0x55, 0x57, - 0x01, 0x9a, 0x0b, 0x81, 0x83, 0xcd, 0x36, 0x61, 0xe4, 0x1b, 0x20, 0x74, 0x80, 0xd0, 0x01, 0xa9, - 0x99, 0x8b, 0x47, 0x2d, 0x54, 0x8f, 0xb0, 0x09, 0xe6, 0x52, 0xca, 0x97, 0x5c, 0x09, 0xc2, 0x06, - 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0xbc, 0x37, 0x6c, 0x40, 0x5e, - 0x32, 0x76, 0x19, 0x8c, 0x10, 0x95, 0x90, 0xdd, 0x4e, 0xd2, 0x12, 0x0c, 0xc6, 0xcc, 0xdc, 0xef, - 0xf3, 0x93, 0x96, 0xe4, 0x4a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, - 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xd2, 0x73, 0x3c, 0xf0, 0x43, 0x2d, 0x5d, 0xe0, 0x2c, 0xb3, 0x0b, - 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, 0x01, 0x65, - 0x49, 0xcf, 0xb1, 0x0e, 0x7d, 0x15, 0x49, 0x2d, 0x1f, 0x1c, 0xc8, 0x2b, 0x7d, 0x75, 0x2d, 0x20, - 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0xce, 0x13, 0x97, - 0x4c, 0x97, 0x17, 0x25, 0xee, 0x51, 0x98, 0x1a, 0x9f, 0xad, 0x67, 0x61, 0xba, 0x3d, 0x5e, 0xfa, - 0x47, 0x14, 0x8d, 0x0d, 0xf9, 0xcc, 0x2d, 0x5b, 0x3d, 0x63, 0xfe, 0x14, 0x4f, 0x1c, 0x45, 0x5f, - 0x72, 0x27, 0x32, 0xd2, 0x75, 0xad, 0x89, 0x1b, 0xd6, 0x9c, 0x4a, 0x75, 0xdc, 0x17, 0x63, 0x46, - 0x10, 0xe5, 0x8e, 0x76, 0xd4, 0xb0, 0xdf, 0x27, 0x2c, 0x38, 0x7f, 0xea, 0x3f, 0xf2, 0x0d, 0xde, - 0x0c, 0x7b, 0x22, 0x14, 0xbd, 0xcf, 0x4f, 0xd3, 0xa1, 0x33, 0x65, 0xc4, 0x4c, 0xde, 0xd8, 0x6d, - 0x2f, 0x9c, 0x23, 0xed, 0xa5, 0x10, 0x0e, 0xbb, 0x5a, 0x4d, 0xd9, 0xd6, 0xe7, 0xbb, 0x41, 0xa7, - 0x25, 0x6f, 0x3a, 0xf5, 0x5b, 0x79, 0xe1, 0xdf, 0xca, 0x4e, 0x63, 0xf0, 0x50, 0xb9, 0x08, 0xb5, - 0x38, 0x9f, 0xdc, 0x6b, 0xe7, 0x6c, 0x7a, 0x87, 0x9d, 0x7a, 0xef, 0xdf, 0x96, 0xbc, 0x69, 0xa8, - 0xf3, 0x50, 0x74, 0x5a, 0xe3, 0xfb, 0xea, 0x5c, 0xc5, 0x37, 0x51, 0x4f, 0xee, 0x01, 0x0d, 0x99, - 0xf9, 0x97, 0xd9, 0xf6, 0x34, 0x64, 0x5e, 0xd0, 0xfb, 0x77, 0x53, 0xbb, 0x33, 0x7f, 0xd8, 0x20, - 0x43, 0x9b, 0x91, 0x90, 0xf1, 0x13, 0xf7, 0x64, 0x6f, 0x47, 0xa8, 0xde, 0x20, 0x90, 0x4a, 0xef, - 0x74, 0x83, 0x7e, 0x10, 0x5a, 0xf2, 0x63, 0x34, 0x0c, 0x84, 0x94, 0x71, 0x90, 0x32, 0x0c, 0x1a, - 0x46, 0x61, 0xcb, 0xe2, 0x88, 0x5c, 0x1a, 0x9b, 0x2b, 0xb3, 0x08, 0xfe, 0xa6, 0xc0, 0xde, 0x8e, - 0x6b, 0x35, 0xef, 0xf8, 0xcc, 0x7e, 0xa3, 0x61, 0x83, 0xb6, 0x6d, 0xc8, 0x0c, 0x06, 0x6c, 0xd6, - 0x2e, 0xcc, 0x3d, 0x3d, 0x33, 0xdf, 0x64, 0xe8, 0xf9, 0xdb, 0x7a, 0xee, 0x94, 0xcf, 0xdb, 0xa0, - 0x8f, 0x5a, 0xdf, 0x27, 0x99, 0xb1, 0xba, 0xf5, 0x6d, 0xc4, 0x80, 0x7d, 0xe4, 0x66, 0xd3, 0x1c, - 0x0c, 0xb5, 0x37, 0x08, 0x22, 0x6d, 0xcc, 0x42, 0x5e, 0xaa, 0xfd, 0xbc, 0x1d, 0xc1, 0x90, 0x55, - 0x9b, 0xed, 0x4f, 0x67, 0x7c, 0xef, 0xd4, 0xc6, 0x5e, 0xa8, 0xdd, 0xbd, 0x4d, 0x5b, 0x7b, 0x95, - 0xd6, 0xf7, 0x1e, 0xad, 0xef, 0x25, 0x5a, 0xdf, 0x1b, 0x74, 0x0b, 0x2f, 0x4c, 0xf7, 0x43, 0xcb, - 0x4d, 0xc1, 0xda, 0xb8, 0x61, 0xcd, 0x96, 0xc3, 0xf4, 0xfb, 0x0d, 0x3f, 0x74, 0x3b, 0x0d, 0x30, - 0xad, 0x25, 0x69, 0xd8, 0x4c, 0xbe, 0xa0, 0x49, 0xaa, 0xb0, 0x9d, 0x2c, 0x41, 0x96, 0x04, 0x41, - 0x96, 0xdc, 0x40, 0x96, 0xb4, 0xe0, 0xb6, 0xb0, 0xb1, 0xd5, 0xc0, 0x31, 0x76, 0x2c, 0xf6, 0xec, - 0x71, 0xce, 0x7f, 0xd9, 0xb2, 0x45, 0xbb, 0x7d, 0x7c, 0xad, 0xe7, 0x9c, 0x51, 0xe4, 0x94, 0xd1, - 0xe6, 0x8c, 0x51, 0xe5, 0x84, 0x91, 0xe7, 0x7c, 0x91, 0xe7, 0x74, 0x91, 0xe7, 0x6c, 0x6d, 0x56, - 0xa8, 0xdc, 0x76, 0x5f, 0xdb, 0x5c, 0x1c, 0x73, 0xb7, 0x6e, 0xc7, 0xb3, 0xd5, 0x69, 0x33, 0xc4, - 0xff, 0xd6, 0x5d, 0x5a, 0xce, 0xa0, 0x25, 0x4b, 0xd5, 0xa5, 0x4c, 0xc9, 0xe5, 0x49, 0xbd, 0xa5, - 0x4e, 0xb1, 0x65, 0x4b, 0xa5, 0x65, 0x4b, 0x99, 0x65, 0x4b, 0x8d, 0xdd, 0xec, 0xad, 0x70, 0xb2, - 0x94, 0xd6, 0x64, 0xdd, 0xf5, 0x85, 0x7f, 0x1b, 0x8a, 0x5b, 0x8a, 0x45, 0x37, 0x63, 0x95, 0x55, - 0x82, 0xb1, 0xce, 0xa7, 0x11, 0xe6, 0x4f, 0x9f, 0xe2, 0x6c, 0xc1, 0xfd, 0x18, 0x08, 0x36, 0x75, - 0xbb, 0xdd, 0x22, 0xb3, 0x9c, 0xed, 0x86, 0xd3, 0x61, 0x72, 0x32, 0x22, 0x60, 0x19, 0xb0, 0x0c, - 0x58, 0x06, 0x2c, 0x03, 0x96, 0xb7, 0x16, 0x96, 0x13, 0x2c, 0x00, 0x32, 0xa7, 0x26, 0x6b, 0x9a, - 0xaf, 0x46, 0x07, 0xcc, 0xb3, 0x01, 0x81, 0xcb, 0xc0, 0x65, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0xbc, - 0xb5, 0xb8, 0x3c, 0x83, 0x02, 0xc0, 0x72, 0x6a, 0xae, 0xe2, 0xd3, 0x87, 0x64, 0xa0, 0x1c, 0x0f, - 0x47, 0x03, 0xc9, 0x05, 0x40, 0x32, 0x20, 0x19, 0x90, 0x0c, 0x48, 0x5e, 0x7d, 0xd6, 0x6c, 0x6f, - 0x20, 0x26, 0x03, 0x4d, 0x8e, 0x14, 0x4b, 0xd5, 0x13, 0x74, 0xb5, 0x63, 0xe6, 0xbb, 0x51, 0xc6, - 0x63, 0x53, 0x9d, 0xa3, 0x26, 0xad, 0x12, 0x44, 0x5e, 0x15, 0x88, 0xa3, 0x0a, 0x10, 0x6f, 0xd5, - 0x1f, 0xae, 0x2a, 0x3f, 0xec, 0x55, 0x7d, 0xd8, 0xab, 0xf8, 0xb0, 0x57, 0xed, 0xc9, 0x56, 0x85, - 0x07, 0xf2, 0x2a, 0x3c, 0x0c, 0x5a, 0x8c, 0x43, 0x93, 0x2d, 0xd2, 0x66, 0xff, 0xf1, 0x77, 0x02, - 0x49, 0x91, 0xd0, 0x51, 0xf2, 0x6a, 0xaa, 0xe4, 0x62, 0x98, 0xca, 0xca, 0x41, 0x77, 0x02, 0x66, - 0x4d, 0x93, 0xa1, 0x94, 0xb2, 0x66, 0x8a, 0x4c, 0x25, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x09, 0xd0, - 0x09, 0xd0, 0x89, 0x05, 0xeb, 0x76, 0x28, 0x95, 0x3e, 0x28, 0x32, 0xb0, 0x09, 0x4a, 0x32, 0xd1, - 0xf2, 0xd5, 0x9d, 0x20, 0xef, 0xfd, 0xcc, 0x50, 0xc1, 0x8e, 0xb3, 0xb7, 0x33, 0x77, 0x4d, 0xdf, - 0x59, 0xe3, 0x5b, 0xae, 0xf1, 0x1d, 0x68, 0x72, 0xcb, 0x51, 0xd7, 0x9a, 0xb3, 0x17, 0xb3, 0x2b, - 0x26, 0x57, 0x2a, 0xd6, 0x4a, 0xb5, 0x4a, 0xb5, 0x58, 0x2b, 0x6f, 0xb1, 0xed, 0x65, 0xb4, 0x32, - 0x65, 0x1b, 0x22, 0xf2, 0x1d, 0x22, 0xf2, 0xfe, 0x7e, 0xa8, 0xa4, 0x7e, 0xe2, 0x0a, 0x51, 0xbf, - 0xbd, 0x00, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0xf2, 0x75, 0x8b, 0x38, - 0xf5, 0xab, 0xbf, 0x33, 0x5c, 0x92, 0x22, 0x4a, 0x5e, 0x3f, 0x21, 0x54, 0xbd, 0xda, 0x94, 0x93, - 0x9d, 0xdd, 0x49, 0xd9, 0x34, 0xd1, 0x19, 0x1e, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x0a, 0xf0, 0x0a, - 0xf0, 0x8a, 0x05, 0xeb, 0x56, 0x0e, 0x3c, 0xbf, 0xd7, 0x0b, 0x45, 0x14, 0x71, 0x50, 0x8b, 0x1a, - 0xe1, 0x98, 0xd3, 0x39, 0xce, 0x7c, 0xd0, 0xfa, 0xe5, 0xc9, 0x3e, 0x94, 0x18, 0x9e, 0x6d, 0xea, - 0x19, 0x1f, 0x32, 0x8c, 0x7d, 0xee, 0x6b, 0x2d, 0x42, 0x45, 0xfe, 0xb8, 0x93, 0x0b, 0xf8, 0x7b, - 0x77, 0xf7, 0x3a, 0xef, 0xd5, 0xda, 0xcf, 0xd7, 0x05, 0xaf, 0xd6, 0x8e, 0x5f, 0x16, 0x26, 0xff, - 0xc4, 0xaf, 0x8b, 0xd7, 0x79, 0xaf, 0x34, 0x7b, 0x5d, 0xbe, 0xce, 0x7b, 0xe5, 0xf6, 0xde, 0x5f, - 0x7f, 0x7d, 0xda, 0xfb, 0x71, 0x30, 0x7a, 0xff, 0x07, 0x7f, 0xa3, 0x6f, 0x16, 0xd6, 0xce, 0x72, - 0xe7, 0x24, 0xde, 0x45, 0x5b, 0xc1, 0xa2, 0xe5, 0x5d, 0xb4, 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, - 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, - 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, - 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, - 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, - 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, 0xda, 0xdb, 0x02, 0x17, 0x86, 0x1d, - 0x16, 0x17, 0x63, 0x1f, 0x8f, 0xda, 0x63, 0xdf, 0x65, 0x59, 0x74, 0x11, 0x88, 0x88, 0x20, 0x22, - 0x82, 0x88, 0x08, 0x22, 0x22, 0x88, 0x88, 0x90, 0xaf, 0x5b, 0xec, 0xb4, 0xbc, 0xfa, 0xfb, 0x1a, - 0x9b, 0xa4, 0x88, 0xe6, 0xfe, 0x1b, 0x3b, 0x2e, 0x2b, 0x4e, 0xbd, 0x54, 0x0f, 0x7e, 0x5f, 0xf6, - 0xbc, 0x50, 0xf8, 0x11, 0x61, 0x3b, 0xc8, 0x17, 0x91, 0x39, 0x3f, 0x3e, 0xb8, 0x06, 0xb8, 0x06, - 0xb8, 0x06, 0xb8, 0x06, 0xb8, 0x06, 0x7d, 0xb8, 0xaf, 0x27, 0x94, 0x96, 0xfa, 0x89, 0x89, 0x6f, - 0x10, 0xe6, 0xd7, 0xe6, 0x1a, 0xd3, 0x5b, 0xfd, 0xec, 0x47, 0x0c, 0x2e, 0x63, 0x36, 0xe1, 0x8d, - 0xb3, 0x6f, 0xf5, 0x93, 0xc6, 0x97, 0x4e, 0xab, 0x79, 0x75, 0x79, 0xdc, 0x69, 0x1d, 0xd7, 0x2f, - 0x9a, 0x67, 0xd4, 0xde, 0x63, 0x92, 0xe6, 0x1c, 0xb1, 0x84, 0x39, 0x99, 0xf2, 0xca, 0xdf, 0xce, - 0x7e, 0xb3, 0xd5, 0xf8, 0xa3, 0x71, 0x56, 0xbf, 0x6c, 0xb6, 0x72, 0xdb, 0x90, 0xd4, 0xef, 0xc8, - 0xac, 0xff, 0x7e, 0x72, 0x75, 0x71, 0x79, 0xdc, 0xea, 0x9c, 0x34, 0x9b, 0xe7, 0x98, 0x77, 0xba, - 0x79, 0xaf, 0x5f, 0x60, 0xca, 0xa9, 0x4d, 0xbd, 0x79, 0xf6, 0xf5, 0xf8, 0x4b, 0x2e, 0xe3, 0xa7, - 0x36, 0xda, 0x59, 0xe3, 0x7b, 0x99, 0x50, 0xf7, 0x7d, 0x3f, 0xd2, 0xde, 0x7d, 0xd0, 0x93, 0xb7, - 0x52, 0xf4, 0xe8, 0xc5, 0xfd, 0xfc, 0xf0, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, - 0xf6, 0xe4, 0xeb, 0x56, 0xcb, 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, 0x31, 0x68, 0x7b, 0xc2, - 0x04, 0x9e, 0xdc, 0x95, 0x8a, 0x4f, 0xc9, 0xe6, 0x94, 0xaf, 0x82, 0x48, 0x74, 0x03, 0xd5, 0x23, - 0xcd, 0x26, 0x45, 0x3d, 0x82, 0xec, 0x61, 0xfc, 0xe2, 0xa8, 0x09, 0xea, 0x11, 0x90, 0x9b, 0x1c, - 0xea, 0x11, 0xec, 0x14, 0x0e, 0x4b, 0xa5, 0x4a, 0xb5, 0x54, 0xca, 0x57, 0x0f, 0xaa, 0xf9, 0x5a, - 0xb9, 0x5c, 0xa8, 0x14, 0x50, 0x99, 0x20, 0x73, 0xa3, 0x21, 0x6f, 0xee, 0xd7, 0xcd, 0x90, 0xaa, - 0xab, 0x48, 0x8a, 0x54, 0xd1, 0x74, 0x17, 0x49, 0x86, 0xfd, 0x22, 0x6e, 0xfd, 0x61, 0x7f, 0x42, - 0xc5, 0xf3, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0x28, 0xab, 0x07, 0x19, - 0x0b, 0x19, 0x0b, 0x19, 0x0b, 0x19, 0xbb, 0x51, 0x26, 0x87, 0xb2, 0x7a, 0x10, 0xaf, 0x10, 0xaf, - 0x3b, 0xb9, 0x69, 0xf2, 0x73, 0x30, 0xd4, 0x82, 0x5e, 0xc0, 0xbe, 0x1e, 0x1c, 0x82, 0x12, 0x82, - 0x12, 0x82, 0x12, 0x82, 0x12, 0x82, 0x92, 0x7c, 0xdd, 0xde, 0x04, 0x41, 0x5f, 0xf8, 0x8a, 0x23, - 0xe9, 0xba, 0x90, 0x15, 0xa8, 0xde, 0xe8, 0x16, 0x73, 0x75, 0xa5, 0x02, 0xed, 0x8f, 0xd9, 0x28, - 0x4d, 0xa7, 0xb9, 0xa8, 0xfb, 0x8f, 0xb8, 0xf7, 0x07, 0xd3, 0x43, 0x77, 0xfb, 0xc1, 0x40, 0xa8, - 0xee, 0x04, 0x28, 0xc7, 0xfe, 0x63, 0x7f, 0xfc, 0xbf, 0x50, 0xde, 0xec, 0xfb, 0xb7, 0xd2, 0x8b, - 0xfc, 0x5b, 0x19, 0x25, 0xaf, 0xf6, 0x27, 0x15, 0x41, 0xa2, 0x50, 0x0b, 0x6f, 0x10, 0xf4, 0x65, - 0xf7, 0x69, 0x5f, 0x09, 0x79, 0xf7, 0xcf, 0x4d, 0x10, 0x46, 0xc9, 0xab, 0x7d, 0xbf, 0xf7, 0xef, - 0xc4, 0x15, 0x05, 0x43, 0xed, 0x0d, 0x82, 0x48, 0xef, 0x4f, 0xf8, 0x45, 0x14, 0xff, 0x13, 0x9f, - 0xd2, 0x43, 0x13, 0xd6, 0xf4, 0x33, 0x19, 0xaa, 0xef, 0x2a, 0xf8, 0x9f, 0xf2, 0x7c, 0xad, 0x43, - 0x79, 0x33, 0x9e, 0x31, 0xba, 0x8e, 0xac, 0x0b, 0xc6, 0x46, 0x7b, 0x56, 0x57, 0x69, 0x1f, 0xda, - 0xb3, 0x66, 0x93, 0xd6, 0xa1, 0x3d, 0xeb, 0x4a, 0xb3, 0x46, 0xd6, 0x9e, 0x35, 0xe5, 0x24, 0xe9, - 0xf5, 0x7a, 0xfa, 0x12, 0x68, 0x55, 0x7b, 0x01, 0xaa, 0x1d, 0xaa, 0x1d, 0xaa, 0x1d, 0xaa, 0xdd, - 0x1d, 0xd5, 0x4e, 0xe5, 0xfe, 0x93, 0x01, 0x27, 0xcd, 0x48, 0x35, 0x75, 0xac, 0x60, 0x27, 0xd5, - 0xac, 0x7b, 0x72, 0x09, 0xc4, 0xa6, 0xcb, 0xb3, 0x77, 0x44, 0x0e, 0x07, 0x9c, 0xb0, 0xe0, 0x06, - 0x3c, 0x70, 0xc3, 0x84, 0x33, 0x70, 0xe1, 0x0c, 0x6c, 0x38, 0x03, 0x1f, 0xb4, 0x30, 0x42, 0x0c, - 0x27, 0xc9, 0x2c, 0x5f, 0x72, 0x38, 0xf8, 0x1d, 0xde, 0xca, 0x5f, 0x29, 0xb6, 0x5f, 0xe5, 0xa9, - 0xbb, 0x3b, 0xab, 0x04, 0x16, 0x17, 0xf4, 0x7a, 0x01, 0xbb, 0x8c, 0xee, 0x96, 0x13, 0x9a, 0x76, - 0x2e, 0x8e, 0xbe, 0xb2, 0x11, 0x97, 0x78, 0x78, 0x1e, 0xd2, 0x52, 0x00, 0x69, 0x01, 0x69, 0x01, - 0x69, 0x01, 0x69, 0xc9, 0x2e, 0x69, 0xa1, 0xd6, 0xc2, 0xf3, 0x9a, 0xb8, 0x2f, 0x18, 0x13, 0x69, - 0xe7, 0xa4, 0xf1, 0xf8, 0x4a, 0x3e, 0x6e, 0x65, 0x76, 0x25, 0x17, 0xe8, 0xb8, 0x00, 0x3e, 0x6e, - 0x81, 0x90, 0x2b, 0x60, 0xe4, 0x1c, 0x28, 0x39, 0x07, 0x4e, 0xce, 0x81, 0x14, 0x0f, 0x58, 0x31, - 0x81, 0x16, 0xbf, 0xe2, 0x4e, 0xf9, 0x8d, 0xa1, 0x54, 0xba, 0x50, 0xe1, 0xf4, 0x19, 0x53, 0x14, - 0xa9, 0x30, 0x5e, 0x02, 0xcf, 0xf9, 0x9f, 0xb7, 0x7f, 0x78, 0x7d, 0xe6, 0x0e, 0xf7, 0xf9, 0x20, - 0xc7, 0xe8, 0x45, 0xea, 0x72, 0x98, 0xcf, 0x0f, 0xa5, 0xae, 0xc7, 0x81, 0x33, 0x1d, 0x8e, 0xb8, - 0xd3, 0x79, 0x13, 0xf6, 0x1f, 0x61, 0xc2, 0x3f, 0x31, 0xe1, 0x4a, 0xb9, 0x7c, 0x50, 0x86, 0x19, - 0xbb, 0xc5, 0x45, 0xf8, 0x47, 0x6f, 0x7f, 0xd8, 0x8e, 0xfb, 0xe5, 0x38, 0x06, 0xc9, 0xb7, 0x93, - 0xbe, 0x38, 0x6c, 0xc0, 0xb0, 0xa3, 0x8e, 0xb8, 0x01, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, - 0xb8, 0x41, 0x46, 0xe2, 0x06, 0x87, 0x0e, 0x84, 0x0d, 0xca, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, - 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x58, 0x37, 0xe1, 0x62, 0x19, 0x41, 0x03, 0x04, 0x0d, 0x10, 0x34, - 0xa0, 0x0d, 0x1a, 0x3c, 0x4c, 0x57, 0x9f, 0x0b, 0x51, 0x83, 0xf8, 0x5a, 0x10, 0x36, 0x40, 0xd8, - 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0xe0, 0x9d, 0x7e, 0xe3, 0x46, 0x2a, 0x3f, - 0x7c, 0x72, 0x20, 0x6e, 0x50, 0x63, 0xbc, 0x84, 0x13, 0xa1, 0xee, 0x26, 0x89, 0xff, 0x08, 0x1c, - 0x20, 0x70, 0xf0, 0x53, 0xd5, 0x55, 0x80, 0xe6, 0x42, 0xe0, 0x60, 0xb3, 0x4d, 0x18, 0xf9, 0x06, - 0x08, 0x1d, 0x20, 0x74, 0x40, 0x6a, 0xe6, 0xe2, 0x51, 0x0b, 0xd5, 0x23, 0x6c, 0x83, 0xb9, 0x94, - 0xf2, 0x25, 0x57, 0x82, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, - 0x06, 0xef, 0x0d, 0x1b, 0x90, 0x17, 0x8d, 0x5d, 0x06, 0x23, 0x44, 0x45, 0x64, 0xb7, 0x93, 0xb4, - 0x04, 0x83, 0x31, 0x33, 0xf7, 0xfb, 0xfc, 0xa4, 0x25, 0xb9, 0x12, 0x90, 0x16, 0x90, 0x16, 0x90, - 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x96, 0xf4, 0x1c, 0x0f, 0xfc, 0x50, - 0x4b, 0x17, 0x38, 0xcb, 0xec, 0x42, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, - 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0xd2, 0x73, 0xac, 0x43, 0x5f, 0x45, 0x52, 0xcb, 0x07, 0x07, - 0xf2, 0x4a, 0x5f, 0x5d, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, - 0x0b, 0x88, 0x8b, 0xf3, 0xc4, 0x25, 0xd3, 0xe5, 0x45, 0x89, 0xbb, 0x14, 0xa6, 0xc6, 0x67, 0xec, - 0x5a, 0x98, 0x6e, 0x90, 0x97, 0xfe, 0x11, 0x45, 0x6b, 0x43, 0x3e, 0x83, 0xcb, 0x56, 0xd7, 0x98, - 0x3f, 0xc5, 0x13, 0x47, 0xd9, 0x97, 0xdc, 0x89, 0x8c, 0x74, 0x5d, 0x6b, 0xe2, 0x96, 0x35, 0xa7, - 0x52, 0x1d, 0xf7, 0xc5, 0x98, 0x13, 0x44, 0xb9, 0xa3, 0x1d, 0x35, 0xec, 0xf7, 0x09, 0x4b, 0xce, - 0x9f, 0xfa, 0x8f, 0x7c, 0x83, 0x37, 0xc3, 0x9e, 0x08, 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xe8, 0x4c, - 0x19, 0x31, 0x93, 0x3f, 0x76, 0xdd, 0x0f, 0xe7, 0x48, 0xfb, 0x29, 0x84, 0xc3, 0xae, 0x56, 0x53, - 0xc6, 0xf5, 0xf9, 0x6e, 0xd0, 0x69, 0xc9, 0x9b, 0x4e, 0xfd, 0x56, 0x5e, 0xf8, 0xb7, 0xb2, 0xd3, - 0x18, 0x3c, 0x54, 0x2e, 0x42, 0x2d, 0xce, 0x27, 0x77, 0xdb, 0x39, 0x9b, 0xde, 0x63, 0xa7, 0xde, - 0xfb, 0xb7, 0x25, 0x6f, 0x9a, 0x43, 0x7d, 0x1e, 0x44, 0xba, 0xd3, 0x1a, 0xdf, 0x59, 0xe7, 0x2a, - 0xbe, 0x8d, 0x7a, 0x72, 0x17, 0x68, 0xcc, 0xcc, 0xbf, 0xd4, 0xb6, 0xa9, 0x31, 0xf3, 0x82, 0x1e, - 0xc0, 0x9b, 0xda, 0xa5, 0xf9, 0xc3, 0x06, 0x99, 0xda, 0x8c, 0x8a, 0x8c, 0x9f, 0xb9, 0x27, 0x7b, - 0x3b, 0x42, 0xf5, 0x06, 0x81, 0x54, 0x7a, 0xa7, 0x1b, 0xf4, 0x83, 0xd0, 0x92, 0x2f, 0xa3, 0xe1, - 0x21, 0xa4, 0xbc, 0x83, 0x94, 0x67, 0xd0, 0xf0, 0x0a, 0x5b, 0x16, 0x47, 0xe4, 0xd4, 0x18, 0x9d, - 0x99, 0x45, 0x0a, 0x60, 0x0e, 0xf2, 0xed, 0xb8, 0x57, 0xf3, 0xce, 0xcf, 0xec, 0x37, 0x1a, 0x36, - 0x6a, 0xdb, 0xc6, 0xcc, 0x62, 0xc4, 0x66, 0x2d, 0xc3, 0xdc, 0xf3, 0x33, 0xf3, 0x4d, 0x86, 0x2c, - 0xc0, 0xd6, 0x93, 0xa7, 0x7d, 0xe2, 0x06, 0x3d, 0x95, 0x09, 0xcf, 0x64, 0xc6, 0xf2, 0xd6, 0xb7, - 0x13, 0x03, 0x36, 0x92, 0x9b, 0x9b, 0xea, 0xd0, 0x5c, 0x50, 0xfe, 0xa5, 0xfc, 0xcf, 0x9b, 0x01, - 0x0c, 0xd9, 0xb5, 0xd9, 0x7e, 0x75, 0xc6, 0xf7, 0x52, 0x6d, 0xec, 0x8d, 0xda, 0xdd, 0xeb, 0xb4, - 0xb5, 0x77, 0x69, 0x7d, 0x2f, 0xd2, 0xfa, 0xde, 0xa2, 0xf5, 0xbd, 0x42, 0xb7, 0x10, 0xc3, 0x74, - 0x7f, 0xb4, 0xdc, 0x14, 0xae, 0x8d, 0x1b, 0xd6, 0x6c, 0x39, 0x4c, 0xbf, 0xdf, 0xf0, 0x43, 0xb7, - 0xd3, 0x10, 0xd3, 0x5a, 0xd2, 0x86, 0xcd, 0x64, 0x0c, 0x9a, 0x24, 0x0b, 0xdb, 0xc9, 0x13, 0x64, - 0x49, 0x11, 0x64, 0xc9, 0x0e, 0x64, 0x49, 0x0c, 0x6e, 0x8b, 0x1b, 0x5b, 0x0d, 0x1d, 0x63, 0xc7, - 0x62, 0xcf, 0x1e, 0xe7, 0xfc, 0x97, 0x2d, 0x5b, 0xb4, 0xdb, 0xd7, 0xd7, 0x7a, 0x0e, 0x1a, 0x45, - 0x8e, 0x19, 0x6d, 0x0e, 0x19, 0x55, 0x8e, 0x18, 0x79, 0x0e, 0x18, 0x79, 0x8e, 0x17, 0x79, 0x0e, - 0xd7, 0x66, 0x85, 0xcc, 0x6d, 0xf7, 0xb9, 0xcd, 0xc5, 0xb1, 0x77, 0xeb, 0x76, 0x3c, 0x5b, 0x9d, - 0x36, 0x43, 0xfd, 0x6f, 0xdd, 0xa5, 0xe5, 0x8c, 0x5a, 0xb2, 0xd4, 0x5d, 0xca, 0x14, 0x5d, 0x9e, - 0x54, 0x5c, 0xea, 0x94, 0x5b, 0xb6, 0xd4, 0x5a, 0xb6, 0x14, 0x5a, 0xb6, 0x54, 0xd9, 0xcd, 0xde, - 0x14, 0x27, 0x4b, 0x71, 0x4d, 0xd6, 0x5d, 0x5f, 0xf8, 0xb7, 0xa1, 0xb8, 0xa5, 0x58, 0x74, 0x33, - 0x56, 0x59, 0x25, 0x18, 0xeb, 0x7c, 0x1a, 0x63, 0xfe, 0xf4, 0x29, 0xce, 0x1d, 0xdc, 0x8f, 0x81, - 0x60, 0x53, 0xb7, 0xdd, 0x2d, 0x32, 0xcb, 0xd9, 0xae, 0x38, 0x1d, 0x26, 0x27, 0x23, 0x02, 0x96, - 0x01, 0xcb, 0x80, 0x65, 0xc0, 0x32, 0x60, 0x79, 0x6b, 0x61, 0x39, 0xc1, 0x02, 0x20, 0x73, 0x6a, - 0xb2, 0xa6, 0x79, 0x6b, 0x74, 0xc0, 0x3c, 0x1b, 0x10, 0xb8, 0x0c, 0x5c, 0x06, 0x2e, 0x03, 0x97, - 0x81, 0xcb, 0x5b, 0x8b, 0xcb, 0x33, 0x28, 0x00, 0x2c, 0xa7, 0xe6, 0x2a, 0x3e, 0x8b, 0x48, 0x06, - 0xca, 0xf1, 0x70, 0x34, 0x90, 0x5c, 0x00, 0x24, 0x03, 0x92, 0x01, 0xc9, 0x80, 0xe4, 0xd5, 0x67, - 0xcd, 0xf6, 0x06, 0x62, 0x32, 0xd0, 0xe4, 0x80, 0xb1, 0x54, 0x3d, 0x41, 0x57, 0x4b, 0x66, 0xbe, - 0x3b, 0x65, 0x3c, 0x36, 0xd5, 0xa9, 0x6a, 0xd2, 0xaa, 0x41, 0xe4, 0x55, 0x82, 0x38, 0xaa, 0x02, - 0xf1, 0x56, 0x01, 0xe2, 0xaa, 0xfa, 0xc3, 0x5e, 0xe5, 0x87, 0xbd, 0xaa, 0x0f, 0x7b, 0x15, 0x9f, - 0x6c, 0xd5, 0x7b, 0x20, 0xaf, 0xca, 0xc3, 0xa0, 0xc5, 0x38, 0x34, 0xd9, 0x22, 0x6d, 0xf6, 0x1f, - 0x7f, 0x27, 0x90, 0x14, 0x09, 0x1d, 0x25, 0xaf, 0xa6, 0x4a, 0x2e, 0x86, 0xa9, 0xac, 0x1c, 0x79, - 0x27, 0x60, 0xd6, 0x34, 0x19, 0x4a, 0x29, 0x6b, 0xa6, 0xc8, 0x54, 0x02, 0x9d, 0x00, 0x9d, 0x00, - 0x9d, 0x00, 0x9d, 0x00, 0x9d, 0x58, 0xb0, 0x6e, 0x87, 0x52, 0xe9, 0x83, 0x22, 0x03, 0x9b, 0xa0, - 0x24, 0x13, 0x2d, 0x5f, 0xdd, 0x09, 0xf2, 0x5e, 0xd0, 0x0c, 0x15, 0xed, 0x38, 0x7b, 0x3d, 0x73, - 0xd7, 0xf8, 0x9d, 0x35, 0xc2, 0xe5, 0x1a, 0xdf, 0x81, 0xa6, 0xb7, 0x1c, 0x75, 0xae, 0x39, 0x7b, - 0x33, 0xbb, 0x62, 0x72, 0xa5, 0x62, 0xad, 0x54, 0xab, 0x54, 0x8b, 0xb5, 0xf2, 0x16, 0xdb, 0x5e, - 0x46, 0xeb, 0x54, 0xb6, 0x21, 0x22, 0xdf, 0x21, 0x22, 0xef, 0xef, 0x87, 0x4a, 0xea, 0x27, 0xae, - 0x10, 0xf5, 0xdb, 0x0b, 0x80, 0xb0, 0x84, 0xb0, 0x84, 0xb0, 0x84, 0xb0, 0x84, 0xb0, 0x24, 0x5f, - 0xb7, 0x88, 0x53, 0xbf, 0xfa, 0x3b, 0xc3, 0x25, 0x29, 0xa2, 0xe4, 0xf5, 0x13, 0x42, 0xd5, 0xab, - 0x4d, 0x39, 0xd9, 0xd9, 0x9d, 0x94, 0x4d, 0x13, 0x9d, 0xe1, 0x01, 0xaf, 0x00, 0xaf, 0x00, 0xaf, - 0x00, 0xaf, 0x00, 0xaf, 0x58, 0xb0, 0x6e, 0xe5, 0xc0, 0xf3, 0x7b, 0xbd, 0x50, 0x44, 0x11, 0x07, - 0xb5, 0xa8, 0x11, 0x8e, 0x39, 0x9d, 0xe3, 0xcc, 0x07, 0xad, 0x5f, 0x9e, 0xec, 0x43, 0x89, 0xe1, - 0xd9, 0xa6, 0x9e, 0xf1, 0x21, 0xc3, 0xd8, 0xe7, 0xbe, 0xd6, 0x22, 0x54, 0xe4, 0x8f, 0x3b, 0xb9, - 0x80, 0xbf, 0x77, 0x77, 0xaf, 0xf3, 0x5e, 0xad, 0xfd, 0x7c, 0x5d, 0xf0, 0x6a, 0xed, 0xf8, 0x65, - 0x61, 0xf2, 0x4f, 0xfc, 0xba, 0x78, 0x9d, 0xf7, 0x4a, 0xb3, 0xd7, 0xe5, 0xeb, 0xbc, 0x57, 0x6e, - 0xef, 0xfd, 0xf5, 0xd7, 0xa7, 0xbd, 0x1f, 0x07, 0xa3, 0xf7, 0x7f, 0xf0, 0x37, 0xfa, 0xe6, 0x61, - 0xed, 0x2c, 0x77, 0x52, 0xe2, 0x5d, 0xb4, 0x15, 0x2c, 0x5a, 0xde, 0x45, 0xeb, 0x7b, 0xb7, 0x75, - 0xef, 0x6b, 0xfb, 0x47, 0xe1, 0x63, 0x69, 0x74, 0xb4, 0xf7, 0xa3, 0x3a, 0x7a, 0xfb, 0xc3, 0xe7, - 0x45, 0x6f, 0x2b, 0x7c, 0xac, 0x8e, 0x8e, 0x96, 0xfc, 0xa6, 0x32, 0x3a, 0xfa, 0xc5, 0xef, 0x28, - 0x8f, 0x76, 0x53, 0x6f, 0x1d, 0xff, 0xbc, 0xb8, 0xec, 0x03, 0xa5, 0x25, 0x1f, 0x38, 0x58, 0xf6, - 0x81, 0x83, 0x25, 0x1f, 0x58, 0x7a, 0x49, 0xc5, 0x25, 0x1f, 0x28, 0x8f, 0x9e, 0x53, 0xef, 0xdf, - 0x5d, 0xfc, 0xd6, 0xca, 0x68, 0xef, 0x79, 0xd9, 0xef, 0xaa, 0xa3, 0xe7, 0xa3, 0xbd, 0x2d, 0x70, - 0x61, 0xd8, 0x61, 0x71, 0x31, 0xf6, 0xf1, 0xa8, 0x3d, 0xf6, 0x5d, 0x96, 0x45, 0x17, 0x81, 0x88, - 0x08, 0x22, 0x22, 0x88, 0x88, 0x20, 0x22, 0x82, 0x88, 0x08, 0xf9, 0xba, 0xc5, 0x4e, 0xcb, 0xab, - 0xbf, 0xaf, 0xb1, 0x49, 0x8a, 0x68, 0xee, 0xbf, 0xb1, 0xe3, 0xb2, 0xe2, 0xd4, 0x4b, 0xf5, 0xe0, - 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x11, 0x36, 0x87, 0x7c, 0x11, 0x99, 0xf3, 0xe3, 0x83, 0x6b, - 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0xd0, 0x87, 0xfb, 0x7a, 0x42, 0x69, 0xa9, 0x9f, - 0x98, 0xf8, 0x06, 0x61, 0x7e, 0x6d, 0xae, 0x31, 0xbd, 0xd5, 0xcf, 0x7e, 0xc4, 0xe0, 0x32, 0x66, - 0x13, 0xde, 0x38, 0xfb, 0x56, 0x3f, 0x69, 0x7c, 0xe9, 0xb4, 0x9a, 0x57, 0x97, 0xc7, 0x9d, 0xd6, - 0x71, 0xfd, 0xa2, 0x79, 0x46, 0xed, 0x3d, 0x26, 0x69, 0xce, 0x11, 0x4b, 0x98, 0x93, 0x29, 0xaf, - 0xfc, 0xed, 0xec, 0x37, 0x5b, 0x8d, 0x3f, 0x1a, 0x67, 0xf5, 0xcb, 0x66, 0x2b, 0xb7, 0x0d, 0x49, - 0xfd, 0x8e, 0xcc, 0xfa, 0xef, 0x27, 0x57, 0x17, 0x97, 0xc7, 0xad, 0xce, 0x49, 0xb3, 0x79, 0x8e, - 0x79, 0xa7, 0x9b, 0xf7, 0xfa, 0x05, 0xa6, 0x9c, 0xda, 0xd4, 0x9b, 0x67, 0x5f, 0x8f, 0xbf, 0xe4, - 0x32, 0x7e, 0x6a, 0xa3, 0x9d, 0x35, 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, - 0x3d, 0x79, 0x2b, 0x45, 0x8f, 0x5e, 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, - 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, 0x6e, 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, - 0xb6, 0x27, 0x4c, 0xe0, 0xc9, 0x5d, 0xa9, 0xf8, 0x94, 0x6c, 0x4e, 0xf9, 0x2a, 0x88, 0x44, 0x37, - 0x50, 0x3d, 0xd2, 0x6c, 0x52, 0xd4, 0x23, 0xc8, 0x1e, 0xc6, 0x2f, 0x8e, 0x9a, 0xa0, 0x1e, 0x01, - 0xb9, 0xc9, 0xa1, 0x1e, 0xc1, 0x4e, 0xe1, 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, - 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x4a, 0x01, 0x95, 0x09, 0x32, 0x37, 0x1a, 0xf2, 0xe6, 0x7e, 0xdd, - 0x0c, 0xa9, 0xba, 0x8a, 0xa4, 0x48, 0x15, 0x4d, 0x77, 0x91, 0x64, 0xd8, 0x2f, 0xe2, 0xd6, 0x1f, - 0xf6, 0x27, 0x54, 0x3c, 0x0f, 0x2d, 0x0d, 0x2d, 0x0d, 0x2d, 0x0d, 0x2d, 0x0d, 0x2d, 0x8d, 0xb2, - 0x7a, 0x90, 0xb1, 0x90, 0xb1, 0x90, 0xb1, 0x90, 0xb1, 0x1b, 0x65, 0x72, 0x28, 0xab, 0x07, 0xf1, - 0x0a, 0xf1, 0xba, 0x93, 0x9b, 0x26, 0x3f, 0x07, 0x43, 0x2d, 0xe8, 0x05, 0xec, 0xeb, 0xc1, 0x21, - 0x28, 0x21, 0x28, 0x21, 0x28, 0x21, 0x28, 0x21, 0x28, 0xc9, 0xd7, 0xed, 0x4d, 0x10, 0xf4, 0x85, - 0xaf, 0x38, 0x92, 0xae, 0x0b, 0x59, 0x81, 0xea, 0x8d, 0x6e, 0x31, 0x57, 0x57, 0x2a, 0xd0, 0xfe, - 0x98, 0x8d, 0xd2, 0x74, 0x9a, 0x8b, 0xba, 0xff, 0x88, 0x7b, 0x7f, 0x30, 0x3d, 0x74, 0xb7, 0x1f, - 0x0c, 0x84, 0xea, 0x4e, 0x80, 0x72, 0xec, 0x3f, 0xf6, 0xc7, 0xff, 0x0b, 0xe5, 0xcd, 0xbe, 0x7f, - 0x2b, 0xbd, 0xc8, 0xbf, 0x95, 0x51, 0xf2, 0x6a, 0x7f, 0x52, 0x11, 0x24, 0x0a, 0xb5, 0xf0, 0x06, - 0x41, 0x5f, 0x76, 0x9f, 0xf6, 0x95, 0x90, 0x77, 0xff, 0xdc, 0x04, 0x61, 0x94, 0xbc, 0xda, 0xf7, - 0x7b, 0xff, 0x4e, 0x5c, 0x51, 0x30, 0xd4, 0xde, 0x20, 0x14, 0xfb, 0x13, 0x7a, 0x11, 0xc5, 0xff, - 0xc4, 0x87, 0xf4, 0xd0, 0x83, 0x35, 0xfd, 0x48, 0x86, 0xea, 0xbb, 0x0a, 0xfe, 0xa7, 0x3c, 0x5f, - 0xeb, 0x50, 0xde, 0x8c, 0x67, 0x8c, 0xae, 0x21, 0xeb, 0x82, 0xb1, 0xd1, 0x9d, 0xd5, 0x55, 0xd6, - 0x87, 0xee, 0xac, 0xd9, 0x64, 0x75, 0xe8, 0xce, 0xba, 0xd2, 0xac, 0x91, 0x75, 0x67, 0x4d, 0x39, - 0x49, 0x7a, 0xb9, 0x9e, 0xbe, 0x04, 0x5a, 0xd1, 0x5e, 0x80, 0x68, 0x87, 0x68, 0x87, 0x68, 0x87, - 0x68, 0x77, 0x47, 0xb4, 0x53, 0xb9, 0xff, 0x64, 0xc0, 0x49, 0x2f, 0x52, 0x4d, 0x1d, 0x2a, 0xd8, - 0x49, 0xf5, 0xea, 0x9e, 0x5c, 0x02, 0xb1, 0xe9, 0xf2, 0x6c, 0x1d, 0x91, 0xc3, 0x01, 0x27, 0x2c, - 0xb8, 0x01, 0x0f, 0xdc, 0x30, 0xe1, 0x0c, 0x5c, 0x38, 0x03, 0x1b, 0xce, 0xc0, 0x07, 0x2d, 0x8c, - 0x10, 0xc3, 0x49, 0x32, 0xcb, 0x97, 0x1c, 0x0e, 0x7e, 0x87, 0xb7, 0xf0, 0x57, 0x8a, 0xed, 0x57, - 0x79, 0xca, 0xee, 0xce, 0x0a, 0x81, 0xc5, 0xf5, 0xbc, 0x5e, 0xc0, 0x2e, 0xa3, 0x9b, 0xe5, 0x84, - 0xa6, 0x9d, 0x8b, 0xa3, 0xaf, 0x6c, 0xc4, 0x25, 0x1e, 0x9e, 0x87, 0xb4, 0x14, 0x40, 0x5a, 0x40, - 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xb2, 0x4b, 0x5a, 0xa8, 0xb5, 0xf0, 0xbc, 0x26, 0xee, 0x0b, 0xc6, - 0x3c, 0xda, 0x39, 0x69, 0x3c, 0xbe, 0x92, 0x8f, 0x5b, 0x99, 0x5c, 0xc9, 0x05, 0x3a, 0x2e, 0x80, - 0x8f, 0x5b, 0x20, 0xe4, 0x0a, 0x18, 0x39, 0x07, 0x4a, 0xce, 0x81, 0x93, 0x73, 0x20, 0xc5, 0x03, - 0x56, 0x4c, 0xa0, 0xc5, 0xaf, 0xb8, 0x53, 0x7e, 0x63, 0x28, 0x95, 0x2e, 0x54, 0x38, 0x7d, 0xc6, - 0x14, 0x45, 0x2a, 0x8c, 0x97, 0xc0, 0x73, 0xfc, 0xe7, 0xed, 0x1f, 0x5e, 0x9f, 0xb9, 0xc3, 0x7d, - 0x3c, 0xc8, 0x31, 0x7a, 0x91, 0xba, 0x1c, 0xe6, 0xe3, 0x43, 0xa9, 0xeb, 0x71, 0xe0, 0x48, 0x87, - 0x23, 0xee, 0x74, 0xde, 0x84, 0xfd, 0x47, 0x98, 0xf0, 0x4f, 0x4c, 0xb8, 0x52, 0x2e, 0x1f, 0x94, - 0x61, 0xc6, 0x6e, 0x71, 0x11, 0xfe, 0xd1, 0xdb, 0x1f, 0xb6, 0xe3, 0x7e, 0x39, 0x4e, 0x41, 0xf2, - 0xed, 0xa4, 0x2f, 0x0e, 0x1b, 0x30, 0xec, 0xa8, 0x23, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x88, - 0x1b, 0x20, 0x6e, 0x90, 0x91, 0xb8, 0xc1, 0xa1, 0x03, 0x61, 0x83, 0x32, 0xc2, 0x06, 0x08, 0x1b, - 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xd6, 0x4d, 0xb8, 0x58, 0x46, 0xd0, 0x00, 0x41, 0x03, - 0x04, 0x0d, 0x68, 0x83, 0x06, 0x0f, 0xd3, 0xd5, 0xe7, 0x42, 0xd4, 0x20, 0xbe, 0x16, 0x84, 0x0d, - 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, 0xa7, 0xdf, 0xb8, 0x91, - 0xca, 0x0f, 0x9f, 0x1c, 0x88, 0x1b, 0xd4, 0x18, 0x2f, 0xe1, 0x44, 0xa8, 0xbb, 0x49, 0xe2, 0x3f, - 0x02, 0x07, 0x08, 0x1c, 0xfc, 0x54, 0x75, 0x15, 0xa0, 0xb9, 0x10, 0x38, 0xd8, 0x6c, 0x13, 0x46, - 0xbe, 0x01, 0x42, 0x07, 0x08, 0x1d, 0x90, 0x9a, 0xb9, 0x78, 0xd4, 0x42, 0xf5, 0x08, 0xbb, 0x60, - 0x2e, 0xa5, 0x7c, 0xc9, 0x95, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, - 0x80, 0xb0, 0xc1, 0x7b, 0xc3, 0x06, 0xe4, 0x35, 0x63, 0x97, 0xc1, 0x08, 0x51, 0x0d, 0xd9, 0xed, - 0x24, 0x2d, 0xc1, 0x60, 0xcc, 0xcc, 0xfd, 0x3e, 0x3f, 0x69, 0x49, 0xae, 0x04, 0xa4, 0x05, 0xa4, - 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0x3d, 0xc7, 0x03, - 0x3f, 0xd4, 0xd2, 0x05, 0xce, 0x32, 0xbb, 0x10, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, - 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0xf4, 0x1c, 0xeb, 0xd0, 0x57, 0x91, 0xd4, 0xf2, - 0xc1, 0x81, 0xbc, 0xd2, 0x57, 0xd7, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, - 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0x3c, 0x71, 0xc9, 0x74, 0x79, 0x51, 0xe2, 0x26, 0x85, 0xa9, 0xf1, - 0xf9, 0x9a, 0x16, 0xa6, 0xfb, 0xe3, 0xa5, 0x7f, 0x44, 0xd1, 0xd9, 0x90, 0xcf, 0xde, 0xb2, 0xd5, - 0x34, 0xe6, 0x4f, 0xf1, 0xc4, 0x51, 0xf5, 0x25, 0x77, 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xb8, 0x63, - 0xcd, 0xa9, 0x54, 0xc7, 0x7d, 0x31, 0xa6, 0x04, 0x51, 0xee, 0x68, 0x47, 0x0d, 0xfb, 0x7d, 0xc2, - 0x8a, 0xf3, 0xa7, 0xfe, 0x23, 0xdf, 0xe0, 0xcd, 0xb0, 0x27, 0x42, 0xd1, 0xfb, 0xfc, 0x34, 0x1d, - 0x3a, 0x53, 0x46, 0xcc, 0xe4, 0x8e, 0x1d, 0x77, 0xc3, 0x39, 0xd2, 0x6e, 0x0a, 0xe1, 0xb0, 0xab, - 0xd5, 0x94, 0x6f, 0x7d, 0xbe, 0x1b, 0x74, 0x5a, 0xf2, 0xa6, 0x53, 0xbf, 0x95, 0x17, 0xfe, 0xad, - 0xec, 0x34, 0x06, 0x0f, 0x95, 0x8b, 0x50, 0x8b, 0xf3, 0xc9, 0xcd, 0x76, 0xce, 0xa6, 0xb7, 0xd8, - 0xa9, 0xf7, 0xfe, 0x6d, 0xc9, 0x9b, 0xe6, 0x50, 0x9f, 0x87, 0xa2, 0xd3, 0x1a, 0xdf, 0x58, 0xe7, - 0x2a, 0xbe, 0x8b, 0x7a, 0x72, 0x13, 0x68, 0xca, 0xcc, 0xbf, 0xd0, 0xb6, 0xa8, 0x29, 0xf3, 0x82, - 0xfe, 0xbf, 0x9b, 0xda, 0xa1, 0xf9, 0xc3, 0x06, 0x59, 0xda, 0x8c, 0x87, 0x8c, 0x1f, 0xb9, 0x27, - 0x7b, 0x3b, 0x42, 0xf5, 0x06, 0x81, 0x54, 0x7a, 0xa7, 0x1b, 0xf4, 0x83, 0xd0, 0x92, 0x27, 0xa3, - 0x21, 0x21, 0xa4, 0xa4, 0x83, 0x94, 0x64, 0xd0, 0x90, 0x0a, 0x5b, 0x16, 0x47, 0xe4, 0xd3, 0xf8, - 0x7c, 0x99, 0x45, 0xfc, 0x37, 0x86, 0xf7, 0x76, 0x9c, 0xab, 0x79, 0xd7, 0x67, 0xf6, 0x1b, 0x0d, - 0x9b, 0xb4, 0x6d, 0x53, 0xe6, 0x30, 0x61, 0xb3, 0x86, 0x61, 0xee, 0xf1, 0x99, 0xf9, 0x26, 0x43, - 0x06, 0x60, 0xeb, 0xc1, 0x93, 0x3e, 0x70, 0x83, 0x6e, 0xca, 0x80, 0x5b, 0x32, 0x63, 0x77, 0xeb, - 0x5b, 0x89, 0x01, 0x0b, 0xc9, 0xcd, 0x66, 0xdc, 0xf3, 0x7b, 0xbd, 0x50, 0x44, 0x91, 0x31, 0x1b, - 0x49, 0x02, 0xeb, 0xa9, 0x11, 0x0c, 0xd9, 0xb5, 0xd9, 0x4d, 0x57, 0xe3, 0x9b, 0xa8, 0x36, 0x36, - 0x45, 0xed, 0x6e, 0x72, 0xda, 0xda, 0xb4, 0xb4, 0xbe, 0x09, 0x69, 0x7d, 0x53, 0xd1, 0xfa, 0x26, - 0xa1, 0x5b, 0x88, 0x61, 0x7c, 0x53, 0xce, 0x62, 0x97, 0x56, 0x1b, 0xdd, 0x57, 0xd3, 0x5d, 0x55, - 0x53, 0x3e, 0x2c, 0x43, 0x08, 0x60, 0xb6, 0xc9, 0xa9, 0x95, 0xe6, 0xa5, 0x86, 0x9b, 0x92, 0xc2, - 0xd7, 0xc3, 0xd7, 0xc3, 0xd7, 0xc7, 0x77, 0x6b, 0xba, 0x09, 0xa6, 0x3d, 0x42, 0x49, 0x45, 0x2c, - 0x2d, 0x11, 0x4c, 0x6b, 0xce, 0xc7, 0xa6, 0x13, 0xa2, 0x71, 0x46, 0xb6, 0x9d, 0x12, 0x99, 0x73, - 0x22, 0x73, 0x52, 0x64, 0xce, 0x6a, 0x33, 0x62, 0x5b, 0xd6, 0xb2, 0xc8, 0x12, 0xbb, 0x97, 0x03, - 0x4b, 0x5e, 0x66, 0x8e, 0xde, 0x58, 0x28, 0x29, 0x38, 0x9b, 0x1b, 0x3b, 0x85, 0x02, 0x2d, 0x86, - 0xc4, 0x5f, 0x66, 0xfe, 0xa1, 0x64, 0x71, 0xee, 0x53, 0xcf, 0xe0, 0xd0, 0xe2, 0x18, 0xe7, 0xbe, - 0xd6, 0x22, 0x54, 0xd6, 0xeb, 0x36, 0xe6, 0xfe, 0xde, 0xdd, 0xbd, 0xce, 0x7b, 0xb5, 0xf6, 0xf3, + 0xb3, 0x9e, 0xb9, 0x91, 0xd0, 0x6c, 0xf6, 0xeb, 0x17, 0x9d, 0x93, 0x66, 0xf3, 0x3c, 0xb7, 0x0d, + 0x9d, 0x9c, 0x1c, 0x99, 0xf2, 0xdf, 0x9b, 0x67, 0x5f, 0x8f, 0xbf, 0x60, 0xc6, 0xe9, 0x66, 0xbc, + 0xd9, 0x6a, 0xfc, 0xd1, 0x38, 0xab, 0x5f, 0x36, 0x5b, 0x98, 0x75, 0x42, 0x3b, 0x3f, 0xb9, 0xba, + 0xb8, 0x3c, 0x6e, 0x71, 0xf9, 0x17, 0xd2, 0x11, 0xdb, 0x59, 0xe3, 0x7b, 0x99, 0x50, 0xf7, 0x7d, + 0x3f, 0xd2, 0xde, 0x7d, 0xd0, 0x93, 0xb7, 0x52, 0xf4, 0xe8, 0xc5, 0xfd, 0xfc, 0xf0, 0xd0, 0xf6, + 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xe4, 0xeb, 0x56, 0xcb, 0x7b, 0xa1, 0x65, 0xf7, + 0x7b, 0x54, 0x29, 0x31, 0x68, 0xfb, 0x43, 0xc2, 0x21, 0xaf, 0x94, 0x9c, 0xf4, 0x3e, 0xc8, 0x29, + 0x5f, 0x05, 0x91, 0xe8, 0x06, 0xaa, 0x17, 0x51, 0xde, 0x72, 0xcb, 0x57, 0x77, 0x82, 0x5c, 0x4f, + 0x33, 0x74, 0x9c, 0x3b, 0x95, 0x8a, 0xaf, 0x1b, 0x30, 0x73, 0x0f, 0xde, 0x49, 0xd4, 0x84, 0x71, + 0xfc, 0xaf, 0xa1, 0xdf, 0xd5, 0x32, 0x50, 0x5f, 0xe4, 0x5d, 0x6c, 0xed, 0xf9, 0xad, 0xe8, 0x43, + 0x7d, 0xea, 0x3f, 0x6e, 0xbd, 0xc9, 0x15, 0x0e, 0x4b, 0xa5, 0x4a, 0xb5, 0x54, 0xca, 0x57, 0x0f, + 0xaa, 0xf9, 0x5a, 0xb9, 0x5c, 0xa8, 0x50, 0x46, 0x4e, 0x9d, 0xb3, 0xc2, 0x8c, 0x76, 0x95, 0x6c, + 0x43, 0xe3, 0xfe, 0xb2, 0x19, 0x52, 0x15, 0x2a, 0x4b, 0x91, 0x2a, 0x9a, 0x82, 0x65, 0xd0, 0xb5, + 0xd0, 0xb5, 0xd0, 0xb5, 0xd0, 0xb5, 0xd0, 0xb5, 0x0b, 0xd6, 0xed, 0x50, 0x2a, 0x7d, 0x50, 0x64, + 0x90, 0xb4, 0x55, 0x48, 0x4a, 0x48, 0x4a, 0x48, 0x4a, 0x48, 0xca, 0x0c, 0x98, 0x5c, 0xa9, 0x58, + 0x2b, 0xd5, 0x2a, 0xd5, 0x62, 0x0d, 0x42, 0x12, 0x42, 0x72, 0x9b, 0x85, 0x24, 0xad, 0x00, 0xa1, + 0x2d, 0xb1, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0xb9, 0x60, 0xdd, 0x4e, + 0xda, 0x15, 0x92, 0xdb, 0x70, 0x92, 0xfa, 0x7c, 0x48, 0x7b, 0xd4, 0x4a, 0x8b, 0x50, 0x91, 0xcb, + 0xc9, 0xdc, 0xdf, 0xbb, 0xbb, 0xd7, 0x79, 0xaf, 0xd6, 0x7e, 0xbe, 0x2e, 0x78, 0xb5, 0x76, 0xfc, + 0xb2, 0x30, 0xf9, 0x27, 0x7e, 0x5d, 0xbc, 0xce, 0x7b, 0xa5, 0xd9, 0xeb, 0xf2, 0x75, 0xde, 0x2b, + 0xb7, 0xf7, 0xfe, 0xfa, 0xeb, 0xd3, 0xde, 0x8f, 0x83, 0xd1, 0xfb, 0x3f, 0xb8, 0x3f, 0x1d, 0x6c, + 0xef, 0x79, 0xf7, 0xba, 0xe0, 0x15, 0xdb, 0xb3, 0xff, 0x38, 0xb8, 0xce, 0x7b, 0xc5, 0xf6, 0xde, + 0xde, 0x6f, 0x39, 0x30, 0x30, 0x07, 0x19, 0xd8, 0xf4, 0x28, 0x98, 0xd5, 0xc6, 0x4c, 0x4b, 0x9d, + 0xc0, 0xeb, 0xc1, 0xc1, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc8, 0xd7, 0xed, + 0x4d, 0x10, 0xf4, 0x85, 0xaf, 0x38, 0x78, 0x58, 0x21, 0x2b, 0x50, 0xbd, 0xd1, 0xf5, 0x82, 0x2d, + 0x77, 0xb0, 0x4f, 0x8d, 0x47, 0xd3, 0xe4, 0x3c, 0x14, 0xfb, 0x71, 0x27, 0xdb, 0xf8, 0x1f, 0x1b, + 0xdd, 0xed, 0xe9, 0xcc, 0xc0, 0x66, 0x31, 0xfd, 0xa1, 0xfa, 0xae, 0x82, 0xff, 0x29, 0xcf, 0xd7, + 0x3a, 0x94, 0x37, 0x56, 0x7a, 0x0b, 0x2f, 0xf5, 0x3d, 0x0b, 0xc6, 0x46, 0x99, 0x7d, 0x57, 0x19, + 0x1f, 0xca, 0xec, 0x67, 0x93, 0xd1, 0xa1, 0xcc, 0xfe, 0x4a, 0xb3, 0x46, 0x56, 0x66, 0x3f, 0xe5, + 0x24, 0xe9, 0xa5, 0x7a, 0xfa, 0x12, 0x68, 0x05, 0x7b, 0x01, 0x82, 0x1d, 0x82, 0x1d, 0x82, 0x1d, + 0x82, 0xdd, 0x1d, 0xc1, 0x4e, 0xe5, 0xfe, 0x93, 0x01, 0x27, 0x45, 0xe5, 0x35, 0x75, 0x98, 0x60, + 0x27, 0xd5, 0x74, 0x65, 0x72, 0x09, 0xc4, 0xa6, 0xcb, 0x93, 0xb8, 0x43, 0x0e, 0x07, 0x9c, 0xb0, + 0xe0, 0x06, 0x3c, 0x70, 0xc3, 0x84, 0x33, 0x70, 0xe1, 0x0c, 0x6c, 0x38, 0x03, 0x1f, 0xb4, 0x30, + 0x42, 0x0c, 0x27, 0xc9, 0x2c, 0x5f, 0x72, 0x38, 0xf8, 0x1d, 0xde, 0x12, 0xa8, 0x29, 0xb6, 0x5f, + 0x65, 0x18, 0x3b, 0xd5, 0x7e, 0xf3, 0x05, 0xec, 0x32, 0x9a, 0xaa, 0x48, 0x68, 0xda, 0x44, 0x1d, + 0x3b, 0x97, 0xda, 0x34, 0x45, 0x07, 0x4f, 0x66, 0xed, 0x0a, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, + 0xd2, 0xc2, 0x41, 0x5a, 0xa8, 0xb5, 0xf0, 0xbc, 0x26, 0xee, 0x0b, 0xc6, 0x53, 0x4c, 0x73, 0xd2, + 0x78, 0x7c, 0x25, 0x1f, 0xb7, 0xf2, 0x68, 0x0b, 0x17, 0xe8, 0xb8, 0x00, 0x3e, 0x6e, 0x81, 0x90, + 0x2b, 0x60, 0xe4, 0x1c, 0x28, 0x39, 0x07, 0x4e, 0xce, 0x81, 0x14, 0x0f, 0x58, 0x31, 0x81, 0x16, + 0xbf, 0xe2, 0x4e, 0xf9, 0x8d, 0xa1, 0x54, 0xba, 0x50, 0xe1, 0xf4, 0x19, 0x53, 0x14, 0xa9, 0x30, + 0x5e, 0x02, 0xcf, 0xe1, 0xeb, 0xb7, 0x7f, 0x78, 0x7d, 0xe6, 0x0e, 0xf7, 0xe1, 0x6c, 0xc7, 0xe8, + 0x45, 0xea, 0x72, 0x98, 0x0f, 0x6f, 0xa7, 0xae, 0xc7, 0x81, 0x03, 0xb5, 0x8e, 0xb8, 0xd3, 0x79, + 0x13, 0xf6, 0x1f, 0x61, 0xc2, 0x3f, 0x31, 0xe1, 0x4a, 0xb9, 0x7c, 0x50, 0x86, 0x19, 0xbb, 0xc5, + 0x45, 0xf8, 0x47, 0x6f, 0x7f, 0xd8, 0x8e, 0xfb, 0xe5, 0xa8, 0x41, 0xc1, 0xb7, 0x93, 0xbe, 0x38, + 0x6c, 0xc0, 0xb0, 0xa3, 0x8e, 0xb8, 0x01, 0xe2, 0x06, 0x88, 0x1b, 0x20, 0x6e, 0x80, 0xb8, 0x41, + 0x46, 0xe2, 0x06, 0x87, 0x0e, 0x84, 0x0d, 0xca, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, + 0x06, 0x08, 0x1b, 0x58, 0x37, 0xe1, 0x62, 0x19, 0x41, 0x03, 0x04, 0x0d, 0x10, 0x34, 0xa0, 0x0d, + 0x1a, 0x3c, 0x4c, 0x57, 0x9f, 0x0b, 0x51, 0x83, 0xf8, 0x5a, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, + 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0xe0, 0x9d, 0x7e, 0xe3, 0x46, 0x2a, 0x3f, 0x7c, 0x72, + 0x20, 0x6e, 0x50, 0x63, 0xbc, 0x84, 0x13, 0xa1, 0xee, 0x26, 0x89, 0xff, 0x08, 0x1c, 0x20, 0x70, + 0xf0, 0x53, 0xd5, 0x55, 0x80, 0xe6, 0x42, 0xe0, 0x60, 0xb3, 0x4d, 0x18, 0xf9, 0x06, 0x08, 0x1d, + 0x20, 0x74, 0x40, 0x6a, 0xe6, 0xe2, 0x51, 0x0b, 0xd5, 0x23, 0xec, 0x07, 0xbe, 0x94, 0xf2, 0x25, + 0x57, 0x82, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xef, + 0x0d, 0x1b, 0x90, 0xd7, 0x8b, 0x5d, 0x06, 0x23, 0x44, 0xf5, 0x63, 0xb7, 0x93, 0xb4, 0x04, 0x83, + 0x31, 0x33, 0xf7, 0xfb, 0xfc, 0xa4, 0x25, 0xb9, 0x12, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, + 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x96, 0xf4, 0x1c, 0x0f, 0xfc, 0x50, 0x4b, 0x17, + 0x38, 0xcb, 0xec, 0x42, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, 0x40, 0x59, + 0x40, 0x59, 0x40, 0x59, 0xd2, 0x73, 0xac, 0x43, 0x5f, 0x45, 0x52, 0xcb, 0x07, 0x07, 0xf2, 0x4a, + 0x5f, 0x5d, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, 0x0b, 0x88, + 0x8b, 0xf3, 0xc4, 0x25, 0xd3, 0xe5, 0x45, 0x89, 0x1b, 0x14, 0xa6, 0xc6, 0xe7, 0x69, 0x58, 0x98, + 0xee, 0x8d, 0x97, 0xfe, 0x11, 0x45, 0x57, 0x43, 0x3e, 0x5b, 0xcb, 0x56, 0xc3, 0x98, 0x3f, 0xc5, + 0x13, 0x47, 0xc5, 0x97, 0xdc, 0x89, 0x8c, 0x74, 0x5d, 0x6b, 0xe2, 0x6e, 0x35, 0xa7, 0x52, 0x1d, + 0xf7, 0xc5, 0x98, 0x0e, 0x44, 0xb9, 0xa3, 0x1d, 0x35, 0xec, 0xf7, 0x09, 0xab, 0xcd, 0x9f, 0xfa, + 0x8f, 0x7c, 0x83, 0x37, 0xc3, 0x9e, 0x08, 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xe8, 0x4c, 0x19, 0x31, + 0x93, 0x2b, 0x76, 0xd8, 0x05, 0xe7, 0x48, 0xbb, 0x28, 0x84, 0xc3, 0xae, 0x56, 0x53, 0x9e, 0xf5, + 0xf9, 0x6e, 0xd0, 0x69, 0xc9, 0x9b, 0x4e, 0xfd, 0x56, 0x5e, 0xf8, 0xb7, 0xb2, 0xd3, 0x18, 0x3c, + 0x94, 0xae, 0xe2, 0x3b, 0xed, 0x9c, 0x4d, 0xef, 0xaf, 0x53, 0xef, 0xfd, 0xdb, 0x92, 0x37, 0xcd, + 0xa1, 0x3e, 0x0f, 0x45, 0xa7, 0x35, 0xbe, 0xab, 0xce, 0x55, 0x7c, 0x0b, 0xf5, 0xe4, 0x0e, 0xd0, + 0x85, 0x99, 0x7f, 0x85, 0x6d, 0x49, 0x17, 0xe6, 0x05, 0x0d, 0x7f, 0x37, 0xb5, 0x25, 0xf3, 0x87, + 0x0d, 0xb2, 0xb2, 0x19, 0xf9, 0x88, 0x23, 0x17, 0x3b, 0xe3, 0xa7, 0xee, 0x49, 0x5b, 0x59, 0xe0, + 0x34, 0x8c, 0x83, 0x94, 0x61, 0x90, 0x32, 0x0a, 0x1a, 0x06, 0x61, 0xcb, 0xd2, 0x88, 0xfc, 0x18, + 0x8f, 0xff, 0xb2, 0x08, 0xf6, 0x66, 0xc0, 0xdd, 0x8e, 0x37, 0x35, 0xef, 0xeb, 0xcc, 0x7e, 0xa3, + 0x61, 0x5b, 0xb6, 0x6d, 0xc3, 0xd4, 0xb6, 0x6b, 0xd6, 0x28, 0xcc, 0x3d, 0x3a, 0x83, 0x8f, 0xcd, + 0x52, 0x83, 0x31, 0xab, 0x0d, 0xc4, 0x2c, 0x35, 0x08, 0x7b, 0xd9, 0xc4, 0x2a, 0x1a, 0xfe, 0x62, + 0x8b, 0x9b, 0x53, 0x34, 0x9b, 0x4e, 0xb6, 0x37, 0x93, 0xc8, 0x36, 0x89, 0xc8, 0x36, 0x7f, 0xc8, + 0x36, 0x75, 0x00, 0x08, 0x24, 0x80, 0x60, 0x21, 0x5e, 0x6c, 0x10, 0x0f, 0x3e, 0x38, 0xf4, 0xec, + 0x6d, 0x3d, 0x73, 0xb2, 0x67, 0x9d, 0x33, 0x8a, 0xae, 0x6b, 0x71, 0x53, 0x33, 0x06, 0xb7, 0xbe, + 0x79, 0x18, 0x30, 0x8d, 0xdc, 0x6c, 0xba, 0x3d, 0xbf, 0xd7, 0x0b, 0x45, 0x14, 0x19, 0x33, 0x8e, + 0x04, 0x02, 0x53, 0x23, 0x18, 0x32, 0x68, 0xb3, 0xb9, 0x35, 0xc6, 0x73, 0x65, 0x6c, 0xd0, 0x0b, + 0xbb, 0xb4, 0xc2, 0x16, 0x9d, 0xb0, 0x4e, 0x23, 0xac, 0xd3, 0x07, 0xeb, 0xb4, 0xc1, 0x2d, 0xa8, + 0x30, 0x9e, 0x7b, 0x61, 0xb1, 0x19, 0xb7, 0x8d, 0x26, 0xdb, 0xe9, 0xe6, 0xd9, 0x29, 0x1f, 0x96, + 0x21, 0x04, 0x30, 0x2b, 0x35, 0xad, 0x48, 0x4c, 0xc3, 0xd2, 0x12, 0xbe, 0x1e, 0xbe, 0x1e, 0xbe, + 0x3e, 0xbe, 0x5b, 0xd3, 0xbd, 0x8e, 0xed, 0x11, 0x4a, 0x2a, 0x62, 0x69, 0x89, 0x60, 0x5a, 0x73, + 0x3e, 0x88, 0x67, 0x21, 0x9e, 0xb5, 0xe5, 0xf1, 0x2c, 0x6b, 0xc9, 0xc2, 0x89, 0xdd, 0xcb, 0x81, + 0x25, 0x2f, 0x33, 0x47, 0x6f, 0x2c, 0x54, 0x8e, 0x9d, 0xcd, 0x8d, 0x9d, 0x7a, 0xb0, 0x16, 0x37, + 0x44, 0x5f, 0x66, 0xfe, 0xa1, 0x64, 0x71, 0xee, 0x53, 0xcf, 0xe0, 0xd0, 0xe2, 0x18, 0xe7, 0xbe, + 0xd6, 0x22, 0x54, 0xd6, 0xcb, 0xf3, 0xe6, 0xfe, 0xde, 0xdd, 0xbd, 0xce, 0x7b, 0xb5, 0xf6, 0xf3, 0x75, 0xc1, 0xab, 0xb5, 0xe3, 0x97, 0x85, 0xc9, 0x3f, 0xf1, 0xeb, 0xe2, 0x75, 0xde, 0x2b, 0xcd, 0x5e, 0x97, 0xaf, 0xf3, 0x5e, 0xb9, 0xbd, 0xf7, 0xd7, 0x5f, 0x9f, 0xf6, 0x7e, 0x1c, 0x8c, 0xde, - 0xff, 0xc1, 0xdf, 0xec, 0xed, 0x7e, 0xb6, 0x37, 0x69, 0xb7, 0x88, 0x66, 0x31, 0x54, 0xb0, 0x18, + 0xff, 0xc1, 0xdf, 0xec, 0xe5, 0xbc, 0xb4, 0x37, 0x29, 0x57, 0x80, 0x66, 0x31, 0x54, 0xb0, 0x18, 0x56, 0x5b, 0x0c, 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, - 0x3a, 0x7a, 0x3e, 0xda, 0xdb, 0x40, 0xd7, 0xf0, 0xc1, 0xed, 0xeb, 0xc4, 0x26, 0xd5, 0x3b, 0x83, - 0x5b, 0x36, 0x37, 0xa9, 0x0c, 0xa6, 0x30, 0x1b, 0x08, 0x05, 0x7e, 0x60, 0x7c, 0x8e, 0xb3, 0xd4, - 0x1c, 0xc3, 0x92, 0xdc, 0x6c, 0xf2, 0x8d, 0x95, 0x24, 0x1b, 0x2b, 0xc9, 0x34, 0x66, 0x93, 0x66, - 0xd6, 0x7d, 0xb6, 0x86, 0xd7, 0xa6, 0xd5, 0x35, 0x99, 0x33, 0x12, 0x10, 0x5f, 0x61, 0x83, 0x78, - 0x3d, 0x37, 0xb0, 0xfa, 0xe2, 0x5d, 0xed, 0x93, 0x2b, 0x9a, 0x84, 0x29, 0x53, 0xb0, 0x61, 0x02, - 0xab, 0x3d, 0x80, 0xf7, 0x4f, 0xdf, 0xfb, 0x3e, 0xf1, 0xce, 0x89, 0x5e, 0x77, 0x82, 0xcd, 0x4d, - 0xec, 0x0a, 0x0b, 0xe9, 0x5d, 0x0b, 0xe7, 0x7d, 0x8f, 0xeb, 0xd7, 0x27, 0xfd, 0x1d, 0x13, 0x1e, - 0xab, 0xa9, 0xa1, 0x92, 0x5d, 0x3f, 0xd2, 0xef, 0x9e, 0xee, 0x79, 0x4d, 0x36, 0xfb, 0x96, 0x77, - 0x3e, 0xee, 0xd5, 0xf6, 0xb5, 0x56, 0x0e, 0x21, 0xaf, 0x13, 0x22, 0x36, 0x13, 0x02, 0x5e, 0x37, - 0xc4, 0x6b, 0x2c, 0x84, 0x6b, 0x2c, 0x44, 0x6b, 0x2c, 0x04, 0x6b, 0xd7, 0xb1, 0xac, 0xba, 0xcf, - 0x93, 0xeb, 0xc7, 0xf7, 0xb4, 0xfa, 0x13, 0x4b, 0xf6, 0xfe, 0xa7, 0x5f, 0xb4, 0xe2, 0x34, 0xaf, - 0xb7, 0x05, 0xfc, 0xb2, 0x64, 0x8a, 0x2b, 0x7e, 0x81, 0x81, 0xdd, 0x15, 0xb3, 0xbb, 0x28, 0xa6, - 0x76, 0x4b, 0x8c, 0xef, 0x8a, 0x18, 0xdf, 0xfd, 0x30, 0xbe, 0xcb, 0x41, 0x4b, 0x9a, 0xd6, 0xdd, - 0x62, 0xcd, 0x4d, 0xb3, 0x5d, 0xd7, 0x7e, 0xd0, 0x33, 0xf3, 0x9b, 0x7e, 0xdf, 0xba, 0x92, 0xcf, - 0x48, 0x4e, 0x86, 0xb1, 0xed, 0x50, 0x93, 0xdb, 0x9f, 0x76, 0xb6, 0x3b, 0x4d, 0x6f, 0x6f, 0x5a, - 0xdb, 0xce, 0xb4, 0xb6, 0x7d, 0x69, 0x6d, 0xbb, 0x92, 0x37, 0xf8, 0x61, 0x2a, 0x87, 0x22, 0x5e, - 0x98, 0xe6, 0x53, 0xb1, 0x4c, 0x9e, 0xf4, 0x40, 0x2a, 0x16, 0x52, 0xb1, 0x6c, 0xbb, 0x09, 0xeb, - 0xee, 0xc2, 0x5c, 0xd4, 0x75, 0xc7, 0xe5, 0x54, 0xac, 0x20, 0x94, 0x77, 0x16, 0xda, 0xe3, 0xbd, - 0x2c, 0x87, 0xf8, 0xfb, 0x91, 0x76, 0x85, 0xb4, 0x2b, 0x56, 0x47, 0x44, 0xe6, 0x90, 0xc8, 0x1c, - 0x93, 0x59, 0x07, 0x65, 0xd8, 0x51, 0x25, 0xb3, 0x60, 0x3f, 0xed, 0xca, 0xfc, 0x79, 0x81, 0x14, - 0x8f, 0xa9, 0x5a, 0xf8, 0xee, 0xd4, 0xf9, 0x81, 0xa9, 0xa7, 0x74, 0x75, 0x2b, 0xd8, 0x20, 0x99, - 0x99, 0x1e, 0xce, 0xb7, 0x07, 0x3a, 0xb3, 0x01, 0x80, 0x3a, 0x40, 0x1d, 0xa0, 0x0e, 0x50, 0x07, - 0xa8, 0xb3, 0x14, 0x75, 0x66, 0xae, 0x72, 0x1b, 0x60, 0xc7, 0x8e, 0x3b, 0x7c, 0x41, 0x1d, 0x2b, - 0x02, 0x1a, 0xa0, 0x03, 0xd0, 0x01, 0xe8, 0x00, 0x74, 0x32, 0x05, 0x3a, 0xb1, 0xd9, 0x6f, 0x01, - 0xe6, 0x98, 0x3d, 0x38, 0x9d, 0x32, 0x08, 0x93, 0x07, 0xa8, 0x53, 0xa6, 0x00, 0xc4, 0x01, 0xe2, - 0x00, 0x71, 0x5c, 0x46, 0x1c, 0xd3, 0xbb, 0x01, 0xc9, 0x17, 0x4f, 0xca, 0x38, 0x4b, 0xd5, 0x13, - 0xf6, 0x1a, 0x76, 0x24, 0x4b, 0xeb, 0xd5, 0x58, 0xb6, 0x6a, 0x42, 0x5a, 0x6d, 0xbd, 0x62, 0xbd, - 0xb5, 0x0a, 0x45, 0xeb, 0x14, 0xda, 0xd6, 0x28, 0x54, 0xad, 0x4f, 0xc8, 0x5b, 0x9b, 0x90, 0xb7, - 0x2e, 0x21, 0x6f, 0x4d, 0xb2, 0x59, 0xd5, 0x60, 0xad, 0xb7, 0x0e, 0x21, 0xa0, 0xe6, 0x14, 0x14, - 0x7d, 0x11, 0x55, 0x5f, 0xf8, 0x77, 0xe2, 0xac, 0x23, 0xa1, 0xa3, 0xe4, 0xd5, 0x94, 0xd2, 0xc7, - 0x0e, 0x7c, 0x53, 0xaa, 0x70, 0x5a, 0xe0, 0x70, 0xdd, 0xe0, 0xfe, 0x7e, 0xa8, 0xa4, 0x7e, 0xa2, - 0xc2, 0xcd, 0xb7, 0x03, 0x02, 0x3c, 0x01, 0x9e, 0x00, 0x4f, 0x80, 0x27, 0xc0, 0xd3, 0x55, 0xf0, - 0x9c, 0x79, 0x6c, 0x29, 0xa2, 0xe4, 0xf5, 0x13, 0xf0, 0x33, 0x9e, 0x3c, 0xf1, 0xa8, 0x3d, 0x72, - 0x0c, 0x5d, 0x34, 0x28, 0x70, 0x14, 0x38, 0x0a, 0x1c, 0x05, 0x8e, 0x02, 0x47, 0x5d, 0xc5, 0xd1, - 0xd7, 0x5e, 0x7b, 0x8c, 0xa5, 0x73, 0x5e, 0x1c, 0x78, 0x1a, 0x4f, 0xa2, 0x54, 0x0f, 0x7e, 0x5f, - 0xf6, 0xbc, 0x50, 0xf8, 0x91, 0xc5, 0xd6, 0x24, 0x2f, 0x47, 0x9c, 0xe7, 0xc7, 0x03, 0x8a, 0x02, - 0x45, 0x81, 0xa2, 0x40, 0xd1, 0x0d, 0x44, 0x51, 0xd9, 0x13, 0x4a, 0x4b, 0xfd, 0x44, 0x84, 0xa4, - 0x65, 0x8b, 0x63, 0x34, 0xa6, 0xb7, 0xf2, 0xd9, 0x8f, 0x08, 0x96, 0xe8, 0x6c, 0x02, 0x1b, 0x67, + 0x3a, 0x7a, 0x3e, 0xda, 0xdb, 0x40, 0xd7, 0xf0, 0xc1, 0xed, 0xeb, 0xc4, 0xee, 0xd4, 0x3b, 0x83, + 0x5b, 0xb6, 0x76, 0xa7, 0x0c, 0xee, 0x3c, 0x1a, 0x08, 0x03, 0x7e, 0x60, 0x7c, 0x86, 0xb3, 0x64, + 0x4c, 0xc3, 0x72, 0xdc, 0x6c, 0xda, 0xa5, 0x95, 0xf4, 0x4a, 0x2b, 0x69, 0x94, 0x66, 0xd3, 0x25, + 0xd7, 0x7d, 0xb6, 0x86, 0xd7, 0xa5, 0xb5, 0xf5, 0x98, 0x33, 0x12, 0x08, 0x7f, 0xef, 0xae, 0xf0, + 0x7a, 0xeb, 0x7f, 0xf5, 0x55, 0xbb, 0xda, 0x27, 0x57, 0xb4, 0x05, 0x53, 0x36, 0x60, 0xfa, 0xd9, + 0xaf, 0x36, 0xf9, 0xef, 0x9f, 0xba, 0xf7, 0x7d, 0xe2, 0x9d, 0x93, 0xbc, 0xee, 0xe4, 0x9a, 0x99, + 0xd4, 0x15, 0x56, 0xcf, 0xaf, 0xaf, 0x96, 0xf7, 0x3d, 0xa7, 0x5f, 0x9f, 0xed, 0x77, 0xcc, 0x74, + 0xac, 0x9b, 0xa2, 0x50, 0x0b, 0x6f, 0x10, 0xf4, 0x65, 0xf7, 0xe9, 0xdd, 0x73, 0x3d, 0xaf, 0xc0, + 0x5e, 0x7f, 0xd3, 0x3b, 0x9f, 0xf7, 0x6a, 0x3b, 0x59, 0x2b, 0x07, 0x8d, 0xd7, 0x09, 0x0a, 0x9b, + 0x09, 0xfa, 0xae, 0x1b, 0xd4, 0x35, 0x16, 0xb4, 0x35, 0x16, 0x94, 0x35, 0x16, 0x74, 0xb5, 0xeb, + 0x59, 0x56, 0xdd, 0xd9, 0xc9, 0xf5, 0xe3, 0x7b, 0x5a, 0xfd, 0x89, 0x25, 0xbb, 0xfd, 0xd3, 0x2f, + 0x5a, 0x71, 0x9a, 0xd7, 0xdb, 0xf4, 0x5d, 0x7b, 0x9f, 0xc5, 0xc4, 0x7e, 0x8a, 0xd9, 0x7d, 0x13, + 0x53, 0xfb, 0x23, 0xc6, 0xf7, 0x41, 0x8c, 0xef, 0x77, 0x18, 0xdf, 0xd7, 0xa0, 0x65, 0x4c, 0xeb, + 0x6e, 0xaa, 0xe6, 0xa6, 0x07, 0x1d, 0xd6, 0x7e, 0xd0, 0x33, 0xf3, 0x9b, 0x7e, 0xdf, 0xba, 0x42, + 0xcf, 0x48, 0x16, 0x86, 0xb1, 0x0d, 0x50, 0x93, 0x1b, 0x9e, 0x76, 0x36, 0x38, 0x4d, 0x6f, 0x68, + 0x5a, 0xdb, 0xc0, 0xb4, 0xb6, 0x61, 0x69, 0x6d, 0x83, 0x92, 0x37, 0xe4, 0x61, 0x2a, 0x6b, 0x22, + 0x5e, 0x98, 0xe6, 0x93, 0xaf, 0x4c, 0x9e, 0xee, 0x43, 0xf2, 0x15, 0x92, 0xaf, 0x6c, 0xbb, 0x09, + 0xeb, 0xee, 0xc2, 0x5c, 0xac, 0x75, 0xc7, 0xe5, 0xe4, 0xab, 0x6e, 0xd0, 0x0f, 0x42, 0x7b, 0x19, + 0x57, 0xf1, 0xd7, 0x23, 0xcd, 0x0a, 0x69, 0x56, 0xac, 0x6e, 0x88, 0xcc, 0x1d, 0x91, 0xb9, 0x25, + 0xb3, 0xee, 0xc9, 0xb0, 0x9b, 0x4a, 0x66, 0xc1, 0x7e, 0x9a, 0x95, 0xf9, 0xf3, 0x01, 0x29, 0x16, + 0x53, 0xb5, 0xf0, 0xdd, 0xa9, 0xf3, 0x02, 0xb1, 0xa3, 0xdc, 0x82, 0x73, 0xea, 0x42, 0xf5, 0x06, + 0x81, 0x9c, 0x2c, 0x0c, 0x4b, 0x98, 0x93, 0x8c, 0x00, 0xd8, 0x01, 0xec, 0x00, 0x76, 0x00, 0x3b, + 0x80, 0x9d, 0xa5, 0xb0, 0x93, 0xf8, 0xca, 0x2d, 0x40, 0x9e, 0x59, 0xd1, 0x2f, 0x6b, 0xc0, 0x63, + 0xa7, 0xaa, 0x18, 0x70, 0x07, 0xb8, 0x03, 0xdc, 0x01, 0xee, 0x64, 0x0a, 0x77, 0x66, 0xae, 0x12, + 0x85, 0xb9, 0xd6, 0xb5, 0x88, 0x8d, 0x2c, 0xcc, 0x05, 0xc8, 0x01, 0xe4, 0x00, 0x72, 0x4c, 0xcc, + 0x82, 0xe9, 0x0d, 0x81, 0xe4, 0x8b, 0x27, 0x65, 0xfa, 0xa5, 0xea, 0x09, 0x7b, 0xcd, 0x98, 0x92, + 0xa5, 0xf5, 0x6a, 0x2c, 0x5b, 0xe5, 0x7f, 0xad, 0xb6, 0xd5, 0xb2, 0xde, 0x36, 0x8b, 0xa2, 0x2d, + 0x16, 0x6d, 0xdb, 0x2b, 0xaa, 0xb6, 0x56, 0xe4, 0x6d, 0xab, 0xc8, 0xdb, 0x52, 0x91, 0xb7, 0x9d, + 0xda, 0xac, 0xc2, 0xdf, 0xd6, 0xdb, 0x42, 0x11, 0x70, 0x73, 0x0a, 0x8e, 0xbe, 0x88, 0xab, 0x2f, + 0xfc, 0x3b, 0x71, 0xd6, 0x91, 0xd0, 0x51, 0xf2, 0x6a, 0xca, 0xe9, 0x63, 0x07, 0xbe, 0x29, 0xf5, + 0x97, 0x2d, 0x70, 0x38, 0x3b, 0x7b, 0xe9, 0x29, 0x3b, 0xb3, 0xb1, 0xa7, 0x0e, 0xa0, 0x04, 0x50, + 0x02, 0x28, 0x01, 0x94, 0x24, 0xeb, 0x66, 0x28, 0x95, 0x3e, 0x28, 0x12, 0xe0, 0xa4, 0x4d, 0x98, + 0x6c, 0xf9, 0xea, 0x4e, 0x58, 0x2f, 0x45, 0x40, 0xd0, 0x07, 0xe7, 0x54, 0xd2, 0xb5, 0xb2, 0x22, + 0x6e, 0x6f, 0x9c, 0xfb, 0xe6, 0xf7, 0x87, 0x82, 0x70, 0xbc, 0xaf, 0xa1, 0xdf, 0xd5, 0x32, 0x50, + 0x5f, 0xe4, 0x9d, 0x9c, 0x9c, 0xf0, 0xcd, 0xdb, 0x6f, 0xfa, 0xf4, 0x91, 0xc0, 0x44, 0xfc, 0xc7, + 0xcc, 0x9b, 0x48, 0xa9, 0x58, 0x2b, 0xd5, 0x2a, 0xd5, 0x62, 0xad, 0x9c, 0x61, 0x5b, 0xd9, 0xd0, + 0x56, 0x53, 0xed, 0xad, 0x16, 0x15, 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x55, 0x30, 0xee, 0xed, + 0x80, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x1b, 0x28, 0x34, 0xb6, 0x24, 0x22, 0x37, + 0xf3, 0xd8, 0x52, 0x44, 0xc9, 0xeb, 0x27, 0x04, 0xe5, 0xe2, 0xc9, 0xb3, 0x96, 0x6f, 0x9c, 0xb2, + 0x36, 0x4b, 0x79, 0xc7, 0x40, 0x4c, 0x20, 0x26, 0x10, 0x13, 0x88, 0x79, 0x44, 0x53, 0x2e, 0x94, + 0xb2, 0x58, 0x68, 0xcd, 0xe2, 0x18, 0x56, 0xab, 0x18, 0xcf, 0xfe, 0x10, 0x84, 0xe7, 0x88, 0xab, + 0x1a, 0xa7, 0x9e, 0xd1, 0x21, 0xc1, 0x58, 0x54, 0x85, 0x5d, 0x93, 0x01, 0xb3, 0x52, 0xed, 0xd8, + 0x6e, 0x80, 0xc4, 0xb2, 0x5b, 0xe3, 0x59, 0x44, 0x15, 0x2c, 0x22, 0xb3, 0x8b, 0x08, 0x55, 0x92, + 0x33, 0x55, 0x25, 0x99, 0xc8, 0xa5, 0x20, 0x56, 0x6c, 0x43, 0xeb, 0x3e, 0x6a, 0x8f, 0x3c, 0x5e, + 0xbc, 0x68, 0x50, 0x28, 0x60, 0x28, 0x60, 0x28, 0x60, 0x28, 0xe0, 0x0d, 0x54, 0xc0, 0x5b, 0x12, + 0x33, 0x7e, 0xed, 0xb5, 0xa5, 0x88, 0xe6, 0xfe, 0x1b, 0xb1, 0xe3, 0xe9, 0x24, 0x4a, 0xf5, 0xe0, + 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x05, 0xca, 0x3e, 0x94, 0xbe, 0x19, 0x0f, 0x28, 0x0a, 0x14, + 0x05, 0x8a, 0x02, 0x45, 0x37, 0x10, 0x45, 0x65, 0x4f, 0x28, 0x2d, 0xf5, 0x13, 0x11, 0x92, 0x5a, + 0xcc, 0xd9, 0xca, 0x35, 0xa6, 0xb7, 0xf2, 0xd9, 0x8f, 0x08, 0x96, 0xe8, 0x6c, 0x02, 0x1b, 0x67, 0xdf, 0xea, 0x27, 0x8d, 0x2f, 0x9d, 0x56, 0xf3, 0xea, 0xf2, 0xb8, 0xd3, 0x3a, 0xae, 0x5f, 0x34, - 0xcf, 0x6c, 0xaf, 0xd6, 0x6f, 0x7e, 0x7f, 0x38, 0x39, 0xff, 0x7c, 0x6d, 0xbd, 0xab, 0x20, 0x4d, - 0x63, 0xd0, 0xd4, 0x6c, 0x36, 0x5b, 0x8d, 0x3f, 0x1a, 0x67, 0xf5, 0xcb, 0x66, 0xcb, 0x7e, 0x2f, - 0x4b, 0x82, 0x86, 0xab, 0x4c, 0xb3, 0xf8, 0xfb, 0xc9, 0xd5, 0xc5, 0xe5, 0x71, 0xab, 0x73, 0xd2, - 0x6c, 0x9e, 0x63, 0x1e, 0x57, 0x9f, 0xc7, 0xfa, 0x05, 0xa6, 0x70, 0x5d, 0x53, 0x6c, 0x9e, 0x7d, - 0x3d, 0xfe, 0x92, 0xdb, 0xf0, 0x96, 0xb1, 0xed, 0x4d, 0xe3, 0x27, 0x1b, 0xa1, 0xde, 0xfa, 0x7e, - 0xa4, 0xbd, 0xfb, 0xa0, 0x27, 0x6f, 0xa5, 0xe8, 0xd9, 0x17, 0x6f, 0xf3, 0xc3, 0x41, 0xbb, 0x41, - 0xbb, 0x41, 0xbb, 0x41, 0xbb, 0x6d, 0xa0, 0x76, 0xd3, 0xf2, 0x5e, 0x68, 0xd9, 0xfd, 0x1e, 0x55, - 0x4a, 0x04, 0xda, 0xcd, 0x66, 0xe9, 0xf3, 0x2b, 0x25, 0x27, 0xd5, 0x62, 0x73, 0xca, 0x57, 0x41, - 0x24, 0xba, 0x81, 0xea, 0x59, 0x2d, 0xe7, 0xde, 0xf2, 0xd5, 0x9d, 0xb0, 0xae, 0x9f, 0x08, 0x7a, - 0xbe, 0x9f, 0x4a, 0x9a, 0xe6, 0xf2, 0x04, 0x98, 0xb6, 0x58, 0xe5, 0x12, 0x8e, 0xf7, 0x35, 0xf4, - 0xbb, 0x5a, 0x06, 0xea, 0x8b, 0xbc, 0x8b, 0xad, 0x31, 0x9f, 0x05, 0xbe, 0x9f, 0x3b, 0xf5, 0x1f, - 0x33, 0x6f, 0x22, 0x85, 0xc3, 0x52, 0xa9, 0x52, 0x2d, 0x95, 0xf2, 0xd5, 0x83, 0x6a, 0xbe, 0x56, - 0x2e, 0x17, 0x2a, 0x36, 0x23, 0x4d, 0xec, 0x56, 0xf3, 0x61, 0x33, 0xbf, 0xbd, 0xbd, 0xc5, 0x1a, - 0xc7, 0x52, 0xe9, 0xa1, 0x34, 0x97, 0xb6, 0x51, 0x82, 0x08, 0xaa, 0x06, 0xaa, 0x06, 0xaa, 0x06, - 0xaa, 0x86, 0x64, 0xdd, 0x0c, 0x95, 0xb4, 0xb6, 0xa5, 0xbe, 0x63, 0xb9, 0xb9, 0xdc, 0xdb, 0xe9, - 0xda, 0x78, 0x7d, 0x41, 0xd2, 0xee, 0x8f, 0xe3, 0x09, 0xd1, 0x3e, 0x29, 0xba, 0x27, 0xb6, 0xe0, - 0xc9, 0x91, 0xb4, 0x0b, 0x5c, 0xfa, 0x0c, 0x0f, 0x09, 0xc7, 0xa4, 0xea, 0xa0, 0x96, 0x1a, 0x38, - 0x2b, 0xed, 0x05, 0x69, 0x18, 0x3b, 0x83, 0x0a, 0xe6, 0x5b, 0x7c, 0x15, 0x2c, 0x3e, 0x9a, 0xc5, - 0x87, 0x76, 0x86, 0x99, 0x6a, 0x67, 0xc8, 0xe4, 0x8a, 0x3e, 0x6c, 0xf6, 0x7d, 0x58, 0x76, 0xa5, - 0x94, 0x8c, 0x93, 0x24, 0x31, 0x2d, 0xe5, 0x31, 0x09, 0xc2, 0x86, 0xb4, 0x89, 0x6a, 0xa9, 0x89, - 0x6d, 0x9c, 0x5d, 0x5c, 0xd6, 0x4f, 0x4e, 0x3a, 0xe7, 0xad, 0xe6, 0x65, 0xf3, 0xf7, 0xe6, 0x49, - 0xe7, 0xf2, 0xff, 0xce, 0x8f, 0x73, 0x94, 0x01, 0xdb, 0x88, 0x14, 0x23, 0x7e, 0xd0, 0xa2, 0x51, - 0x32, 0xcd, 0x7f, 0x9c, 0x9e, 0xd3, 0x79, 0xc7, 0xd1, 0xc7, 0xac, 0xcf, 0xe7, 0x49, 0xf3, 0xf7, - 0xfa, 0x49, 0xa7, 0xfe, 0xc7, 0x1f, 0xad, 0xe3, 0x3f, 0xea, 0x97, 0xc7, 0x98, 0x5a, 0x83, 0xa6, - 0x7a, 0xd1, 0xb8, 0xc0, 0x7c, 0x9a, 0x9b, 0xcf, 0x2f, 0x8d, 0xd6, 0xf1, 0xef, 0x97, 0x27, 0xff, - 0xd7, 0xf9, 0xbd, 0x79, 0x76, 0x76, 0xfc, 0xfb, 0x25, 0x45, 0xde, 0xdb, 0xf6, 0xcc, 0xee, 0x79, - 0xe3, 0x14, 0xd3, 0x69, 0x6e, 0x3a, 0x9b, 0x17, 0xe7, 0x5f, 0x0f, 0x30, 0xa1, 0xe6, 0x26, 0xf4, - 0xe2, 0xb2, 0x7e, 0xd9, 0xf8, 0x1d, 0x33, 0x6a, 0xd6, 0x44, 0x31, 0x9f, 0xe6, 0xe6, 0xf3, 0xf3, - 0x1f, 0x94, 0xcc, 0xf4, 0x43, 0x36, 0xa2, 0x03, 0x48, 0xba, 0xb0, 0x7b, 0xbd, 0x36, 0x92, 0x2e, - 0x6c, 0xf5, 0xde, 0x48, 0xad, 0x28, 0x3b, 0x3d, 0x38, 0x92, 0x61, 0xbe, 0x88, 0x5b, 0x7f, 0xd8, - 0x9f, 0xec, 0x4c, 0xe7, 0x91, 0xda, 0xb1, 0x78, 0x00, 0xa4, 0x76, 0xac, 0xfc, 0xe4, 0x91, 0xda, - 0xb1, 0x11, 0xde, 0x3c, 0x03, 0xa9, 0x1d, 0x52, 0xe9, 0x83, 0x22, 0x41, 0x6e, 0x47, 0x15, 0xb9, - 0xe3, 0x3f, 0xbf, 0x11, 0xe4, 0x8e, 0x9b, 0x1b, 0x0f, 0xb9, 0xe3, 0x1b, 0x6b, 0x22, 0xa5, 0x62, - 0xad, 0x54, 0xab, 0x54, 0x8b, 0x35, 0x64, 0x8c, 0x43, 0xbc, 0xb8, 0x24, 0x5e, 0xec, 0x12, 0x5a, - 0xbb, 0x9d, 0x9c, 0x20, 0x2b, 0x20, 0x2b, 0x20, 0x2b, 0x20, 0x2b, 0x68, 0x6a, 0x18, 0x0d, 0x1e, - 0x2a, 0x9e, 0x75, 0x1b, 0xa3, 0x48, 0xaa, 0x23, 0x4b, 0xa2, 0x43, 0xd2, 0x1c, 0x5f, 0xd2, 0xdc, - 0xfe, 0x6e, 0xa1, 0x78, 0x9d, 0xf7, 0x0e, 0xe3, 0x4c, 0xdf, 0x42, 0x3b, 0x95, 0x00, 0x3c, 0xf9, - 0x7f, 0x9b, 0xb9, 0x75, 0xdb, 0x4c, 0xab, 0xa6, 0x85, 0x1b, 0x83, 0xa1, 0x16, 0xf6, 0xb9, 0xd5, - 0xeb, 0xc1, 0x40, 0xb0, 0x40, 0xb0, 0x40, 0xb0, 0x40, 0xb0, 0x36, 0x90, 0x60, 0xdd, 0x04, 0x41, - 0x5f, 0xf8, 0x24, 0x87, 0xf2, 0x0a, 0x9b, 0x02, 0x4d, 0x4e, 0xf7, 0xca, 0xab, 0x2b, 0x15, 0x68, - 0x5f, 0x4b, 0x4b, 0xb5, 0x90, 0x73, 0x51, 0xf7, 0x1f, 0x71, 0xef, 0x0f, 0xa6, 0xa5, 0xab, 0xf7, - 0x83, 0x81, 0x50, 0xdd, 0x09, 0x50, 0x8c, 0xd7, 0xe7, 0xfe, 0xf8, 0x7f, 0xa1, 0xbc, 0xd9, 0xf7, - 0x6f, 0xa5, 0x17, 0xf9, 0xb7, 0x32, 0x4a, 0x5e, 0xed, 0x4f, 0xa8, 0xfa, 0x50, 0xc9, 0xae, 0x1f, - 0xe9, 0xfd, 0x7e, 0xbc, 0xa6, 0xf7, 0x27, 0xf8, 0x18, 0xc5, 0xff, 0xc4, 0x15, 0xad, 0xb7, 0xa1, - 0x5b, 0xea, 0x50, 0x7d, 0x57, 0xc1, 0xff, 0x94, 0xe7, 0x6b, 0x1d, 0xca, 0x9b, 0xf1, 0x0c, 0xd8, - 0x6b, 0x9d, 0xba, 0x60, 0x2c, 0xf4, 0x51, 0x45, 0x1f, 0x55, 0x27, 0xe8, 0x05, 0xfa, 0xa8, 0xd2, - 0x62, 0x83, 0xb5, 0x3e, 0xaa, 0x29, 0x27, 0x63, 0x5f, 0x5f, 0xa5, 0x87, 0xb4, 0xab, 0xb2, 0x0a, - 0x50, 0x59, 0x50, 0x59, 0x50, 0x59, 0xdb, 0xa4, 0xb2, 0x6c, 0xb9, 0xcb, 0x64, 0x80, 0x49, 0x6f, - 0x51, 0x6d, 0x5b, 0xcb, 0xed, 0xa4, 0xba, 0x50, 0x4f, 0x86, 0xb4, 0x6c, 0x5a, 0x34, 0x5b, 0xfa, - 0xd6, 0xdd, 0x27, 0xa5, 0x1b, 0xe5, 0x71, 0xa7, 0xd4, 0x6e, 0x95, 0xcd, 0xbd, 0xb2, 0xb9, 0x59, - 0x36, 0x77, 0x6b, 0xd7, 0xed, 0x5a, 0x76, 0xbf, 0x74, 0xc1, 0xae, 0xd4, 0xba, 0xb3, 0xdf, 0x5f, - 0x2c, 0xc5, 0x2e, 0xab, 0x04, 0x63, 0xbd, 0xea, 0x37, 0x16, 0x37, 0x0f, 0x7b, 0x01, 0x83, 0x0d, - 0x4d, 0x12, 0xb2, 0x68, 0x7a, 0xb9, 0x38, 0x1a, 0x45, 0x06, 0xcc, 0xf1, 0x70, 0x34, 0xa0, 0x5c, - 0x00, 0x28, 0x03, 0x94, 0x01, 0xca, 0x00, 0x65, 0x77, 0xb5, 0xd1, 0xbc, 0x46, 0xea, 0x0b, 0x45, - 0x5f, 0x2d, 0x25, 0x19, 0xf9, 0x63, 0x26, 0x93, 0xa0, 0xa9, 0x9c, 0x34, 0x87, 0xb3, 0xe6, 0x75, - 0xda, 0x5c, 0xce, 0x9b, 0xdd, 0x89, 0xb3, 0x3b, 0x73, 0x76, 0xa7, 0x4e, 0xe3, 0xdc, 0x89, 0x9c, - 0x3c, 0xbd, 0x02, 0x4b, 0xad, 0xdb, 0xa1, 0x54, 0xba, 0x50, 0x61, 0xa8, 0x9f, 0x58, 0x21, 0x1c, - 0x92, 0xe6, 0x58, 0xd9, 0xdb, 0x3f, 0xb4, 0x3e, 0x69, 0x87, 0xfa, 0xd8, 0x19, 0x33, 0xbc, 0xa6, - 0x86, 0x27, 0x3e, 0x96, 0x96, 0x1a, 0x9f, 0xe1, 0xe8, 0x11, 0x93, 0xbb, 0x9a, 0x37, 0x39, 0xff, - 0x71, 0xeb, 0x4d, 0xae, 0x52, 0x2e, 0x1f, 0x94, 0xb7, 0xd8, 0xec, 0x3e, 0x64, 0x73, 0xb4, 0xac, - 0x94, 0x45, 0xa5, 0x38, 0xcd, 0x4a, 0xb7, 0xd3, 0xb6, 0x58, 0x46, 0x12, 0xec, 0xb8, 0x41, 0x47, - 0x42, 0x47, 0x42, 0x47, 0x42, 0x47, 0x42, 0x47, 0x2e, 0xd1, 0x91, 0x87, 0x0c, 0x32, 0xb2, 0x0c, - 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x99, 0x01, 0x93, 0x2b, 0x96, 0x21, 0x22, 0x21, 0x22, - 0xb7, 0x5d, 0x44, 0x3e, 0x4c, 0x57, 0x03, 0x87, 0x8a, 0x8c, 0xc7, 0x86, 0x8c, 0x84, 0x8c, 0x84, - 0x8c, 0x84, 0x8c, 0x84, 0x8c, 0x24, 0x5f, 0xb7, 0x37, 0x52, 0xf9, 0xe1, 0x13, 0x83, 0x8e, 0xac, - 0x11, 0x0e, 0x79, 0x22, 0xd4, 0xdd, 0x24, 0x51, 0x14, 0x42, 0x72, 0x0b, 0x58, 0x7d, 0x01, 0x42, - 0x12, 0x42, 0x92, 0xd6, 0xe4, 0xb0, 0x1f, 0x09, 0x29, 0xb9, 0xe5, 0x52, 0x52, 0x3c, 0x6a, 0xa1, - 0x7a, 0xa2, 0x47, 0x2f, 0x24, 0x93, 0x91, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x21, - 0x23, 0xe9, 0x65, 0xa4, 0xf5, 0xa2, 0x5a, 0xcb, 0xdc, 0xb0, 0xa5, 0x22, 0x5b, 0xd9, 0x04, 0xe9, - 0x60, 0x30, 0x66, 0x8a, 0x7e, 0x9f, 0x1e, 0xa4, 0x93, 0x91, 0x01, 0xd2, 0x00, 0x69, 0x80, 0x34, - 0x40, 0x1a, 0x20, 0x0d, 0x90, 0x06, 0x48, 0x2f, 0x9a, 0xb3, 0x81, 0x1f, 0x6a, 0xc9, 0x81, 0xd1, - 0xb3, 0x81, 0x01, 0xd1, 0x80, 0x68, 0x40, 0x34, 0x20, 0x1a, 0x10, 0x0d, 0x88, 0x06, 0x44, 0x2f, - 0x9a, 0x33, 0x1d, 0xfa, 0x2a, 0x92, 0x5a, 0x3e, 0x30, 0xe4, 0x4d, 0xbd, 0x1a, 0x1b, 0x40, 0x0d, - 0xa0, 0x06, 0x50, 0x03, 0xa8, 0x01, 0xd4, 0x00, 0xea, 0x0d, 0x04, 0xea, 0x8d, 0x2e, 0x17, 0x65, - 0xb9, 0x2b, 0x45, 0x6a, 0x3c, 0x8b, 0x5d, 0x2a, 0xd2, 0x0d, 0x15, 0xd2, 0x3f, 0xb2, 0xd1, 0xca, - 0x82, 0xce, 0x20, 0x36, 0xab, 0x4a, 0xf3, 0x9f, 0xe2, 0x89, 0xe2, 0x98, 0x75, 0xee, 0x44, 0x46, - 0xba, 0xae, 0xb5, 0xe5, 0x92, 0xd0, 0xa7, 0x52, 0x1d, 0xf7, 0xc5, 0x18, 0xf3, 0xa2, 0xdc, 0xd1, - 0x8e, 0x1a, 0xf6, 0xfb, 0x16, 0x4b, 0x5c, 0x9e, 0xfa, 0x8f, 0x74, 0x83, 0x35, 0xc3, 0x9e, 0x08, - 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xa8, 0x8d, 0x32, 0x32, 0x22, 0xff, 0xc5, 0xed, 0xb7, 0x72, 0x56, - 0xeb, 0xa9, 0x86, 0xc3, 0xae, 0x56, 0x53, 0x46, 0xf0, 0xf9, 0x6e, 0xd0, 0x69, 0xc9, 0x9b, 0x4e, - 0xfd, 0x56, 0x5e, 0xf8, 0xb7, 0xb2, 0xd3, 0x18, 0x3c, 0x54, 0xae, 0xe2, 0xcb, 0xef, 0x9c, 0x04, - 0xdd, 0xf1, 0xaf, 0x5a, 0xe3, 0xcb, 0xee, 0x5c, 0xc5, 0xd7, 0x58, 0x4f, 0x2e, 0x11, 0x5d, 0xa2, - 0xdc, 0xb7, 0x67, 0x5a, 0x3b, 0x76, 0xb6, 0x65, 0xd4, 0x07, 0x87, 0x1e, 0xfd, 0x0c, 0x27, 0x63, - 0x25, 0xb9, 0x13, 0x84, 0xf2, 0x4e, 0xaa, 0x9d, 0xf1, 0x13, 0xf2, 0xa4, 0xa9, 0x64, 0x40, 0x3b, - 0x18, 0x69, 0x15, 0x13, 0xad, 0x62, 0xa0, 0x1d, 0xcc, 0x33, 0x65, 0x10, 0x96, 0x7c, 0x80, 0xc5, - 0xb5, 0x6f, 0x10, 0x9e, 0x56, 0x84, 0x23, 0x33, 0xae, 0x66, 0x7d, 0xc7, 0xb0, 0xde, 0x37, 0xac, - 0x69, 0x41, 0xa6, 0x2d, 0xc7, 0x8a, 0xc5, 0xac, 0xf7, 0xa4, 0x56, 0x9f, 0xdf, 0x35, 0xe6, 0xd6, - 0x50, 0xc9, 0x79, 0xa3, 0x25, 0xe5, 0x0d, 0x95, 0x8c, 0x7f, 0x09, 0x53, 0x17, 0xd7, 0xfc, 0x22, - 0x83, 0xe1, 0x67, 0x3b, 0x61, 0x65, 0xd3, 0xe1, 0x62, 0x6b, 0x61, 0x60, 0x6b, 0xe1, 0x5d, 0x6b, - 0x61, 0x5b, 0x78, 0xbd, 0xe5, 0x5e, 0xcf, 0x40, 0xc4, 0x69, 0x0d, 0xa7, 0xf7, 0x81, 0xf0, 0x81, - 0x98, 0x7a, 0x10, 0x66, 0x1f, 0x40, 0x6e, 0x2d, 0xbf, 0xff, 0x3e, 0x2e, 0xb2, 0xda, 0x63, 0x7e, - 0xff, 0x43, 0x5a, 0xe1, 0x01, 0xe5, 0x94, 0x90, 0x77, 0xff, 0xdc, 0x04, 0xe1, 0xea, 0x2d, 0x6d, - 0x13, 0xb7, 0xfc, 0xf2, 0x55, 0x2b, 0x1a, 0xca, 0x7a, 0xd8, 0xb5, 0x36, 0x66, 0x99, 0xc0, 0x2a, - 0xb3, 0x18, 0x65, 0x0a, 0x9b, 0x8c, 0x63, 0x92, 0x71, 0x2c, 0x32, 0x8e, 0x41, 0xb4, 0x2e, 0x6e, - 0xdd, 0xf6, 0x1a, 0xc9, 0xda, 0x31, 0xc7, 0x26, 0x93, 0x6f, 0x74, 0x8c, 0x50, 0xe6, 0x41, 0x28, - 0x41, 0x28, 0x37, 0x92, 0x50, 0x9a, 0xea, 0xa1, 0x93, 0xf3, 0x7b, 0xff, 0x4e, 0xe6, 0x44, 0x2a, - 0x6f, 0x10, 0x44, 0xda, 0x9c, 0xa5, 0x24, 0xd5, 0xa7, 0xde, 0x0c, 0x60, 0x2a, 0x24, 0x69, 0xb4, - 0x1d, 0x99, 0xf1, 0x54, 0x28, 0x1b, 0xa9, 0x4e, 0x76, 0x53, 0x99, 0x6c, 0xa5, 0x2a, 0x59, 0x4f, - 0x45, 0xb2, 0x9e, 0x6a, 0x64, 0x3d, 0x95, 0xc8, 0xad, 0x60, 0xbf, 0xe9, 0xf6, 0x5c, 0xb9, 0x69, - 0x50, 0xcd, 0xb8, 0x61, 0xcd, 0x96, 0xc3, 0xf4, 0xfb, 0x0d, 0x3f, 0x74, 0x3b, 0xfd, 0x0e, 0x8d, - 0x05, 0xb3, 0x28, 0x1c, 0x0e, 0x8d, 0xe3, 0xb1, 0xed, 0x80, 0xc8, 0x1c, 0x11, 0x99, 0x43, 0x22, - 0x73, 0x4c, 0x66, 0x1d, 0x94, 0x61, 0x47, 0x65, 0xcd, 0x61, 0xcd, 0x3b, 0x2e, 0x7b, 0xf6, 0x38, - 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0xb6, 0xad, 0xd6, 0x53, 0xc8, 0x29, 0x52, 0xc6, 0x69, 0x53, - 0xc4, 0xa9, 0x52, 0xc2, 0xc9, 0x53, 0xc0, 0xc9, 0x53, 0xbe, 0xc9, 0x53, 0xbc, 0x37, 0x2b, 0xb9, - 0xd1, 0x76, 0x9b, 0xd5, 0xdc, 0x2c, 0x01, 0x84, 0xac, 0xcf, 0xb5, 0xd9, 0x8c, 0x93, 0x9f, 0xb9, - 0xcc, 0x3c, 0x3a, 0x5d, 0x3b, 0xee, 0x4a, 0xa9, 0x5d, 0x2a, 0x9b, 0x6b, 0x65, 0x73, 0xb1, 0x6c, - 0xae, 0xd6, 0xae, 0xcb, 0xb5, 0xec, 0x7a, 0x93, 0x59, 0x23, 0x3b, 0x35, 0x93, 0xac, 0xbb, 0xbe, - 0xf0, 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, 0x66, 0xcc, 0xb2, 0x4a, 0x30, 0xd6, 0xf9, 0x74, 0xa3, - 0xf5, 0xd3, 0xa7, 0x78, 0xb3, 0x7a, 0x7f, 0x06, 0x05, 0x9b, 0x7a, 0x4c, 0xc2, 0x22, 0xbf, 0x1c, - 0xd0, 0xb8, 0xfb, 0x17, 0x54, 0x26, 0x21, 0x97, 0x00, 0x65, 0x80, 0x32, 0x40, 0x19, 0xa0, 0x0c, - 0x50, 0x76, 0x18, 0x94, 0xe3, 0x65, 0x07, 0x4c, 0x4e, 0x4d, 0x95, 0x99, 0xec, 0xdc, 0x5f, 0x36, - 0x38, 0x13, 0xd9, 0xbb, 0xbf, 0x6c, 0x6a, 0x40, 0x64, 0x20, 0x32, 0x10, 0x19, 0x88, 0xbc, 0xfa, - 0xac, 0xd9, 0x8e, 0x54, 0x26, 0x03, 0x4d, 0x0e, 0x7a, 0x4b, 0xd5, 0x13, 0x8f, 0x4c, 0x5d, 0xd8, - 0xe2, 0xb1, 0x51, 0x4d, 0x68, 0xd3, 0x1c, 0x36, 0xaf, 0xe3, 0xe6, 0x72, 0xe0, 0xec, 0x8e, 0x9c, - 0xdd, 0xa1, 0xb3, 0x3b, 0x76, 0x1a, 0x07, 0x4f, 0xe4, 0xe8, 0xe9, 0x25, 0x18, 0xa3, 0x14, 0xe3, - 0x90, 0x64, 0x8b, 0xa4, 0xd9, 0x7f, 0xfc, 0x9d, 0x40, 0x52, 0x24, 0x74, 0x94, 0xbc, 0x9a, 0x0a, - 0xb9, 0x18, 0xa6, 0x50, 0xa6, 0xf0, 0x97, 0xe7, 0xfb, 0x46, 0x44, 0xda, 0x9b, 0x9e, 0x06, 0x22, - 0xe6, 0x15, 0x2f, 0x43, 0x83, 0x56, 0x80, 0x56, 0x80, 0x56, 0x80, 0x56, 0x80, 0x56, 0x90, 0xaf, - 0x5b, 0x14, 0x29, 0xdc, 0x08, 0x98, 0xee, 0x06, 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x57, 0x10, - 0xe0, 0xed, 0x05, 0x00, 0xb2, 0x01, 0xd9, 0x80, 0x6c, 0x40, 0x36, 0x20, 0x1b, 0x91, 0x00, 0xce, - 0x48, 0xc0, 0x0c, 0x97, 0xa4, 0x88, 0x92, 0xd7, 0x4f, 0x08, 0x06, 0xac, 0x36, 0xe5, 0xe2, 0x51, - 0x7b, 0xec, 0x4c, 0x63, 0xd1, 0x45, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, - 0x80, 0x6d, 0x70, 0xb2, 0x8d, 0xd7, 0xd8, 0x34, 0x66, 0x1c, 0x73, 0x58, 0x05, 0xd6, 0xb1, 0xda, - 0xd4, 0x4b, 0xf5, 0xe0, 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x11, 0xb5, 0x4a, 0x98, 0xb3, 0xf0, - 0x37, 0xe3, 0x83, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x90, 0xaf, 0x5b, 0xd9, - 0x13, 0x4a, 0x4b, 0xfd, 0xc4, 0xc4, 0x37, 0xca, 0x84, 0x63, 0x36, 0xa6, 0xb7, 0xfa, 0xd9, 0x8f, - 0x18, 0x5c, 0xc6, 0x6c, 0xc2, 0x1b, 0x67, 0xdf, 0xea, 0x27, 0x8d, 0x2f, 0x9d, 0x56, 0xf3, 0xea, - 0xf2, 0xb8, 0xd3, 0x3a, 0xae, 0x5f, 0x34, 0xcf, 0xa8, 0xbd, 0xc7, 0x37, 0xbf, 0x3f, 0x9c, 0x14, - 0xd9, 0xb9, 0x26, 0x1d, 0x77, 0xfc, 0xe7, 0x07, 0xf9, 0x88, 0x0b, 0x67, 0xbf, 0xd9, 0x6a, 0xfc, - 0xd1, 0x38, 0xab, 0x5f, 0x36, 0x5b, 0x39, 0xf2, 0x0b, 0x1a, 0x7d, 0xdc, 0xd6, 0x59, 0xff, 0xfd, - 0xe4, 0xea, 0xe2, 0xf2, 0xb8, 0xd5, 0x39, 0x69, 0x36, 0xcf, 0x31, 0xef, 0x74, 0xf3, 0x5e, 0xbf, - 0xc0, 0x94, 0x53, 0x9b, 0x7a, 0xf3, 0xec, 0xeb, 0xf1, 0x17, 0x86, 0x19, 0x27, 0x1d, 0xb1, 0x9d, - 0x35, 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0x8f, - 0x5e, 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, - 0x6e, 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, 0x1c, 0xf2, - 0x4a, 0xc9, 0x49, 0x5b, 0xb5, 0x9c, 0xf2, 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, 0xe5, 0x2d, - 0xb7, 0x7c, 0x75, 0x27, 0xc8, 0xf5, 0x34, 0x3d, 0xd5, 0xcd, 0x9d, 0x4a, 0x45, 0xee, 0x91, 0x99, - 0x30, 0x7e, 0x71, 0xd4, 0x84, 0x71, 0xfc, 0xaf, 0xa1, 0xdf, 0xd5, 0x32, 0x50, 0x5f, 0xe4, 0x5d, - 0x6c, 0xed, 0xf9, 0x6d, 0xd0, 0x73, 0xb9, 0x53, 0xff, 0x71, 0xeb, 0x4d, 0xae, 0x70, 0x58, 0x2a, - 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, 0xd7, 0xca, 0xe5, 0x42, 0x85, 0x32, 0x72, 0xea, - 0x9c, 0x15, 0x7e, 0xc8, 0xe6, 0x68, 0x6d, 0x68, 0xdc, 0x5f, 0x36, 0x43, 0xaa, 0x7a, 0xa2, 0x29, - 0x52, 0x45, 0x53, 0x57, 0x14, 0xba, 0x16, 0xba, 0x16, 0xba, 0x16, 0xba, 0x16, 0xba, 0x76, 0xc1, - 0xba, 0x1d, 0x4a, 0xa5, 0x0f, 0x8a, 0x0c, 0x92, 0xb6, 0x0a, 0x49, 0x09, 0x49, 0x09, 0x49, 0x09, - 0x49, 0x99, 0x01, 0x93, 0x2b, 0x15, 0x6b, 0xa5, 0x5a, 0xa5, 0x5a, 0xac, 0x41, 0x48, 0x42, 0x48, - 0x6e, 0xb3, 0x90, 0xa4, 0x15, 0x20, 0xb4, 0x95, 0xb0, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x21, - 0x23, 0x21, 0x23, 0x17, 0xac, 0xdb, 0x49, 0x77, 0x7d, 0x72, 0x1b, 0x4e, 0x52, 0x9f, 0x0f, 0x69, - 0x8f, 0x5a, 0x69, 0x11, 0x2a, 0x72, 0x39, 0x99, 0xfb, 0x7b, 0x77, 0xf7, 0x3a, 0xef, 0xd5, 0x7c, - 0xef, 0xb6, 0xee, 0x7d, 0x6d, 0xff, 0x28, 0x7c, 0x2c, 0x8d, 0x8e, 0xf6, 0x7e, 0x54, 0x47, 0x6f, - 0x7f, 0xf8, 0xbc, 0xe8, 0x6d, 0x85, 0x8f, 0xd5, 0xd1, 0xd1, 0x92, 0xdf, 0x54, 0x46, 0x47, 0xbf, - 0xf8, 0x1d, 0xe5, 0xd1, 0x6e, 0xea, 0xad, 0xe3, 0x9f, 0x17, 0x97, 0x7d, 0xa0, 0xb4, 0xe4, 0x03, - 0x07, 0xcb, 0x3e, 0x70, 0xb0, 0xe4, 0x03, 0x4b, 0x2f, 0xa9, 0xb8, 0xe4, 0x03, 0xe5, 0xd1, 0x73, - 0xea, 0xfd, 0xbb, 0x8b, 0xdf, 0x5a, 0x19, 0xed, 0x3d, 0x2f, 0xfb, 0x5d, 0x75, 0xf4, 0x7c, 0xb4, - 0xb7, 0xb7, 0xbf, 0x5b, 0x28, 0x5e, 0xe7, 0xbd, 0xc3, 0xf6, 0x73, 0xe1, 0x3a, 0xef, 0x15, 0xda, - 0xe3, 0x77, 0xb6, 0x9f, 0xaf, 0x0b, 0x5e, 0x6d, 0xf6, 0x72, 0xfc, 0xff, 0x7b, 0xbf, 0xe5, 0x40, - 0x4b, 0x1d, 0xa4, 0xa5, 0xd3, 0xf3, 0x71, 0x56, 0x9b, 0x4a, 0x2e, 0xf5, 0x8c, 0xaf, 0x07, 0x07, - 0x41, 0x05, 0x41, 0x05, 0x41, 0x05, 0x41, 0x05, 0x41, 0x25, 0x5f, 0xb7, 0x28, 0x14, 0xe8, 0xf8, - 0x08, 0xb6, 0x7b, 0x1d, 0xd4, 0x95, 0x0a, 0xb4, 0xaf, 0x25, 0xd1, 0x11, 0xfd, 0x5c, 0xd4, 0xfd, - 0x47, 0xdc, 0xfb, 0xd3, 0xd2, 0xc4, 0xb9, 0xfd, 0x60, 0x20, 0x54, 0x77, 0x02, 0x94, 0x63, 0xff, - 0xb1, 0x3f, 0xfe, 0x5f, 0x28, 0x6f, 0xf6, 0xfd, 0x5b, 0xe9, 0x45, 0xfe, 0xad, 0x8c, 0x92, 0x57, - 0xfb, 0x13, 0x29, 0x35, 0x54, 0xb2, 0xeb, 0x47, 0x7a, 0x5f, 0x09, 0x79, 0xf7, 0xcf, 0x4d, 0x10, - 0x46, 0xc9, 0xab, 0x7d, 0xbf, 0xf7, 0xef, 0xc4, 0x0d, 0x49, 0xe5, 0x0d, 0x82, 0x48, 0xef, 0xc7, - 0x5d, 0xf8, 0xe3, 0x7f, 0xe2, 0x1a, 0x0e, 0x68, 0x04, 0x94, 0x7e, 0x1c, 0x43, 0xf5, 0x5d, 0x05, - 0xff, 0x53, 0x9e, 0xaf, 0x75, 0x28, 0x6f, 0xc6, 0x33, 0x46, 0xd7, 0x15, 0x68, 0xc1, 0xd8, 0x68, - 0x11, 0xe4, 0x2a, 0xe3, 0x43, 0x8b, 0xa0, 0x6c, 0x32, 0x3a, 0xb4, 0x08, 0x5a, 0x69, 0xd6, 0xc8, - 0x5a, 0x04, 0xa5, 0x9c, 0x24, 0xbd, 0x54, 0x4f, 0x5f, 0x02, 0xad, 0x60, 0x2f, 0x40, 0xb0, 0x43, - 0xb0, 0x43, 0xb0, 0x43, 0xb0, 0xbb, 0x23, 0xd8, 0xa9, 0xdc, 0x7f, 0x32, 0xe0, 0xa4, 0x21, 0x8e, - 0xa6, 0x0e, 0x13, 0xec, 0xa4, 0x1a, 0xc6, 0x4d, 0x2e, 0x81, 0xd8, 0x74, 0x79, 0xb2, 0x99, 0xc8, - 0xe1, 0x80, 0x13, 0x16, 0xdc, 0x80, 0x07, 0x6e, 0x98, 0x70, 0x06, 0x2e, 0x9c, 0x81, 0x0d, 0x67, - 0xe0, 0x83, 0x16, 0x46, 0x88, 0xe1, 0x24, 0x99, 0xe5, 0x4b, 0x0e, 0x07, 0xbf, 0xc3, 0x5b, 0x17, - 0x36, 0xc5, 0xf6, 0xab, 0x0c, 0x63, 0xa7, 0x5a, 0x87, 0xbf, 0x80, 0x5d, 0x46, 0xf3, 0x37, 0x09, - 0x4d, 0x9b, 0xa8, 0xdb, 0xf8, 0x52, 0x9b, 0xa6, 0xe8, 0x3e, 0xce, 0xac, 0x5d, 0x41, 0x5a, 0x40, - 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x38, 0x48, 0x0b, 0xb5, 0x16, 0x9e, 0xd7, 0xc4, 0x7d, 0xc1, 0x78, - 0xb4, 0x6b, 0x4e, 0x1a, 0x8f, 0xaf, 0xe4, 0xe3, 0x56, 0x9e, 0xf7, 0xe1, 0x02, 0x1d, 0x17, 0xc0, - 0xc7, 0x2d, 0x10, 0x72, 0x05, 0x8c, 0x9c, 0x03, 0x25, 0xe7, 0xc0, 0xc9, 0x39, 0x90, 0xe2, 0x01, - 0x2b, 0x26, 0xd0, 0xe2, 0x57, 0xdc, 0x29, 0xbf, 0x31, 0x94, 0x4a, 0x17, 0x2a, 0x9c, 0x3e, 0x63, - 0x8a, 0x22, 0x15, 0xc6, 0x4b, 0xe0, 0x39, 0x91, 0xfe, 0xf6, 0x0f, 0xaf, 0xcf, 0xdc, 0xe1, 0x3e, - 0xb1, 0xee, 0x18, 0xbd, 0x48, 0x5d, 0x0e, 0xf3, 0x89, 0xf6, 0xd4, 0xf5, 0x38, 0x70, 0xca, 0xd8, - 0x11, 0x77, 0x3a, 0x6f, 0xc2, 0xfe, 0x23, 0x4c, 0xf8, 0x27, 0x26, 0x5c, 0x29, 0x97, 0x0f, 0xca, - 0x30, 0x63, 0xb7, 0xb8, 0x08, 0xff, 0xe8, 0xed, 0x0f, 0xdb, 0x71, 0xbf, 0x1c, 0x85, 0x39, 0xf8, - 0x76, 0xd2, 0x17, 0x87, 0x0d, 0x18, 0x76, 0xd4, 0x11, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x03, 0xc4, - 0x0d, 0x10, 0x37, 0xc8, 0x48, 0xdc, 0xe0, 0xd0, 0x81, 0xb0, 0x41, 0x19, 0x61, 0x03, 0x84, 0x0d, - 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0xeb, 0x26, 0x5c, 0x2c, 0x23, 0x68, 0x80, 0xa0, 0x01, - 0x82, 0x06, 0xb4, 0x41, 0x83, 0x87, 0xe9, 0xea, 0x73, 0x21, 0x6a, 0x10, 0x5f, 0x0b, 0xc2, 0x06, - 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0xbc, 0xd3, 0x6f, 0xdc, 0x48, - 0xe5, 0x87, 0x4f, 0x0e, 0xc4, 0x0d, 0x6a, 0x8c, 0x97, 0x70, 0x22, 0xd4, 0xdd, 0x24, 0xf1, 0x1f, - 0x81, 0x03, 0x04, 0x0e, 0x7e, 0xaa, 0xba, 0x0a, 0xd0, 0x5c, 0x08, 0x1c, 0x6c, 0xb6, 0x09, 0x23, - 0xdf, 0x00, 0xa1, 0x03, 0x84, 0x0e, 0x48, 0xcd, 0x5c, 0x3c, 0x6a, 0xa1, 0x7a, 0x84, 0x4d, 0xd2, - 0x97, 0x52, 0xbe, 0xe4, 0x4a, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, - 0x40, 0xd8, 0xe0, 0xbd, 0x61, 0x03, 0xf2, 0x7a, 0xb1, 0xcb, 0x60, 0x84, 0xa8, 0x7e, 0xec, 0x76, - 0x92, 0x96, 0x60, 0x30, 0x66, 0xe6, 0x7e, 0x9f, 0x9f, 0xb4, 0x24, 0x57, 0x02, 0xd2, 0x02, 0xd2, - 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x92, 0x9e, 0xe3, 0x81, - 0x1f, 0x6a, 0xe9, 0x02, 0x67, 0x99, 0x5d, 0x08, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, - 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x4b, 0x7a, 0x8e, 0x75, 0xe8, 0xab, 0x48, 0x6a, 0xf9, - 0xe0, 0x40, 0x5e, 0xe9, 0xab, 0x6b, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, - 0x01, 0x71, 0x01, 0x71, 0x71, 0x9e, 0xb8, 0x64, 0xba, 0xbc, 0x28, 0x71, 0x83, 0xc2, 0xd4, 0xf8, - 0x3c, 0x0d, 0x0b, 0xd3, 0xbd, 0xf1, 0xd2, 0x3f, 0xa2, 0xe8, 0x6a, 0xc8, 0x67, 0x6b, 0xd9, 0x6a, - 0x18, 0xf3, 0xa7, 0x78, 0xe2, 0xa8, 0xf8, 0x92, 0x3b, 0x91, 0x91, 0xae, 0x6b, 0x4d, 0xdc, 0xad, - 0xe6, 0x54, 0xaa, 0xe3, 0xbe, 0x18, 0xd3, 0x81, 0x28, 0x77, 0xb4, 0xa3, 0x86, 0xfd, 0x3e, 0x61, - 0xb5, 0xf9, 0x53, 0xff, 0x91, 0x6f, 0xf0, 0x66, 0xd8, 0x13, 0xa1, 0xe8, 0x7d, 0x7e, 0x9a, 0x0e, - 0x9d, 0x29, 0x23, 0x66, 0x72, 0xc5, 0x0e, 0xbb, 0xe0, 0x1c, 0x69, 0x17, 0x85, 0x70, 0xd8, 0xd5, - 0x6a, 0xca, 0xb3, 0x3e, 0xdf, 0x0d, 0x3a, 0x2d, 0x79, 0xd3, 0xa9, 0xdf, 0xca, 0x0b, 0xff, 0x56, - 0x76, 0x1a, 0x83, 0x87, 0xca, 0x55, 0x7c, 0xa7, 0x9d, 0xb3, 0xe9, 0xfd, 0x75, 0xea, 0xbd, 0x7f, - 0x5b, 0xf2, 0xa6, 0xa1, 0xce, 0x83, 0x48, 0x77, 0x5a, 0xe3, 0xbb, 0xea, 0x5c, 0xc5, 0xb7, 0x50, - 0x4f, 0xee, 0x00, 0x5d, 0x98, 0xf9, 0x57, 0xd8, 0x96, 0x74, 0x61, 0x5e, 0xd0, 0xf0, 0x77, 0x53, - 0x5b, 0x32, 0x7f, 0xd8, 0x20, 0x2b, 0x9b, 0x91, 0x8f, 0x38, 0x72, 0xb1, 0x33, 0x7e, 0xea, 0x9e, - 0xb4, 0x95, 0x05, 0x4e, 0xc3, 0x38, 0x48, 0x19, 0x06, 0x29, 0xa3, 0xa0, 0x61, 0x10, 0xb6, 0x2c, - 0x8d, 0xc8, 0x8f, 0xf1, 0xf8, 0x2f, 0x8b, 0x60, 0x6f, 0x06, 0xdc, 0xed, 0x78, 0x53, 0xf3, 0xbe, - 0xce, 0xec, 0x37, 0x1a, 0xb6, 0x65, 0xdb, 0x36, 0x4c, 0x6d, 0xbb, 0x66, 0x8d, 0xc2, 0xdc, 0xa3, - 0x33, 0xf3, 0x4d, 0x86, 0x1e, 0xbe, 0xad, 0x87, 0x4e, 0xf6, 0xb0, 0x0d, 0xfa, 0xa6, 0x75, 0x7d, - 0x91, 0x19, 0x83, 0x5b, 0xdf, 0x3c, 0x0c, 0x98, 0x46, 0xee, 0xf5, 0x2c, 0x87, 0xe6, 0x22, 0xec, - 0x2f, 0xb5, 0x7c, 0xe6, 0xbf, 0xdf, 0x90, 0x31, 0x9b, 0xed, 0x3d, 0x67, 0x7c, 0x5f, 0xd4, 0xc6, - 0x3e, 0xa7, 0xdd, 0x7d, 0x4b, 0x5b, 0xfb, 0x90, 0xd6, 0xf7, 0x15, 0xad, 0xef, 0x13, 0x5a, 0xdf, - 0xf7, 0x73, 0x0b, 0x26, 0x4c, 0xf7, 0x3a, 0xcb, 0x4d, 0x31, 0xda, 0xb8, 0x61, 0xcd, 0x96, 0xc3, - 0xf4, 0xfb, 0x0d, 0x3f, 0x74, 0x3b, 0xcd, 0x2d, 0x5f, 0x1c, 0x4d, 0xd1, 0xf0, 0x17, 0x5b, 0x4c, - 0xac, 0xa0, 0x49, 0x98, 0xb0, 0x9d, 0x08, 0x41, 0x96, 0xe0, 0x40, 0x96, 0xb8, 0x40, 0x96, 0x90, - 0xe0, 0xb6, 0x98, 0xb1, 0xd5, 0x9c, 0x31, 0x76, 0x2c, 0xf6, 0xec, 0x71, 0xce, 0x7f, 0xd9, 0xb2, - 0x45, 0xbb, 0x3d, 0x7a, 0xad, 0xe7, 0x93, 0x51, 0xe4, 0x8b, 0xd1, 0xe6, 0x83, 0x51, 0xe5, 0x7b, - 0x91, 0xe7, 0x73, 0x91, 0xe7, 0x6b, 0x91, 0xe7, 0x63, 0x6d, 0x56, 0x44, 0xdc, 0x76, 0xcf, 0xda, - 0xdc, 0x2c, 0xc8, 0x6e, 0xdd, 0x92, 0x5f, 0xce, 0x1c, 0xd9, 0x8c, 0xea, 0xbf, 0x75, 0x99, 0x96, - 0x33, 0x64, 0xc9, 0x52, 0x71, 0x29, 0x53, 0x6e, 0x79, 0x52, 0x6b, 0xa9, 0x53, 0x68, 0xd9, 0x52, - 0x65, 0xd9, 0x52, 0x62, 0xd9, 0x52, 0x5f, 0x37, 0x7b, 0xcb, 0x9b, 0x2c, 0x65, 0x35, 0x59, 0x77, - 0x7d, 0xe1, 0xdf, 0x86, 0xe2, 0x96, 0x62, 0xd1, 0xcd, 0x98, 0x65, 0x95, 0x60, 0xac, 0xf3, 0x69, - 0x70, 0xf9, 0xd3, 0xa7, 0x38, 0x21, 0x70, 0x7f, 0x06, 0x05, 0x9b, 0xba, 0xb7, 0x6e, 0x91, 0x5f, - 0x0e, 0x68, 0xdc, 0xfd, 0x0b, 0x2a, 0x93, 0x90, 0x4b, 0x80, 0x32, 0x40, 0x19, 0xa0, 0x0c, 0x50, - 0x06, 0x28, 0x3b, 0x0c, 0xca, 0xf1, 0xb2, 0x03, 0x26, 0xa7, 0xa6, 0x2a, 0x3e, 0xc5, 0x40, 0x06, - 0xc9, 0xf1, 0x70, 0x34, 0x88, 0x5c, 0x00, 0x22, 0x03, 0x91, 0x81, 0xc8, 0x40, 0xe4, 0xd5, 0x67, - 0xcd, 0x76, 0xa4, 0x32, 0x19, 0x68, 0x72, 0x34, 0x49, 0xaa, 0x9e, 0xa0, 0x3b, 0x80, 0x3e, 0xdf, - 0xd2, 0x2a, 0x1e, 0x9b, 0xea, 0x3c, 0x16, 0x69, 0xa9, 0x01, 0xf2, 0xd2, 0x02, 0x1c, 0xa5, 0x04, - 0x78, 0x4b, 0x07, 0x70, 0x95, 0x0a, 0x60, 0x2f, 0x0d, 0xc0, 0x5e, 0x0a, 0x80, 0xfd, 0xe8, 0x7f, - 0xb6, 0x4e, 0x8a, 0x92, 0x1f, 0xe5, 0x67, 0x90, 0x62, 0x1c, 0x92, 0x6c, 0x91, 0x34, 0xfb, 0x8f, - 0xbf, 0x13, 0x48, 0x8a, 0x84, 0x8e, 0x92, 0x57, 0x53, 0x21, 0x17, 0xc3, 0x54, 0x56, 0x4e, 0xcd, - 0x11, 0x30, 0xeb, 0x6e, 0x70, 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x71, 0xb1, 0x8b, 0xb7, 0x17, 0x00, - 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0xc1, 0x49, 0x31, 0x66, 0xb8, - 0x24, 0x45, 0x94, 0xbc, 0x7e, 0x02, 0xcb, 0x58, 0x6d, 0xca, 0xc5, 0xa3, 0xf6, 0xd8, 0x99, 0xc6, - 0xa2, 0x8b, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0x00, 0xdb, 0xe0, 0x64, - 0x1b, 0xaf, 0xb1, 0x69, 0xcc, 0x38, 0xe6, 0xb0, 0x0a, 0xac, 0x63, 0xb5, 0xa9, 0x97, 0xea, 0xc1, - 0xef, 0xcb, 0x9e, 0x17, 0x0a, 0x3f, 0x22, 0xac, 0x8a, 0x95, 0x58, 0xf8, 0x9b, 0xf1, 0xc1, 0x35, - 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc8, 0xd7, 0xad, 0xec, 0x09, 0xa5, 0xa5, 0x7e, - 0x62, 0xe2, 0x1b, 0x84, 0x4d, 0xdd, 0x73, 0x8d, 0xe9, 0xad, 0x7e, 0xf6, 0x23, 0x06, 0x97, 0x31, - 0x9b, 0xf0, 0xc6, 0xd9, 0xb7, 0xfa, 0x49, 0xe3, 0x4b, 0xa7, 0xd5, 0xbc, 0xba, 0x3c, 0xee, 0xb4, - 0x8e, 0xeb, 0x17, 0xcd, 0x33, 0x6a, 0xef, 0x31, 0x69, 0xab, 0x1f, 0xe5, 0x8e, 0x76, 0xae, 0xc9, - 0xeb, 0x12, 0x33, 0x37, 0x8b, 0x98, 0xcd, 0x7e, 0xb3, 0xd5, 0xf8, 0xa3, 0x71, 0x56, 0xbf, 0x6c, - 0xb6, 0x72, 0xdb, 0xd0, 0xb0, 0xc3, 0x91, 0x59, 0xff, 0xfd, 0xe4, 0xea, 0xe2, 0xf2, 0xb8, 0xd5, - 0x39, 0x69, 0x36, 0xcf, 0x31, 0xef, 0x74, 0xf3, 0x5e, 0xbf, 0xc0, 0x94, 0x53, 0x9b, 0x7a, 0xf3, - 0xec, 0xeb, 0xf1, 0x97, 0x5c, 0xc6, 0x8b, 0xea, 0xb7, 0xb3, 0xc6, 0xf7, 0x32, 0xa1, 0xee, 0xfb, - 0x7e, 0xa4, 0xbd, 0xfb, 0xa0, 0x27, 0x6f, 0xa5, 0xe8, 0xd1, 0x8b, 0xfb, 0xf9, 0xe1, 0xa1, 0xed, - 0xa1, 0xed, 0xa1, 0xed, 0xa1, 0xed, 0xa1, 0xed, 0xc9, 0xd7, 0xad, 0x96, 0xf7, 0x42, 0xcb, 0xee, - 0xf7, 0xa8, 0x52, 0x62, 0xd0, 0xf6, 0x87, 0x84, 0x43, 0x5e, 0x29, 0x39, 0xa9, 0x71, 0x9d, 0x53, - 0xbe, 0x0a, 0x22, 0xd1, 0x0d, 0x54, 0x2f, 0xa2, 0xbc, 0xe5, 0x96, 0xaf, 0xee, 0x04, 0xb9, 0x9e, - 0x66, 0xe8, 0x2a, 0x74, 0x2a, 0x15, 0x5f, 0xc7, 0x47, 0xe6, 0x3e, 0x8b, 0x93, 0xa8, 0x09, 0xe3, - 0xf8, 0x5f, 0x43, 0xbf, 0xab, 0x65, 0xa0, 0xbe, 0xc8, 0xbb, 0xd8, 0xda, 0xf3, 0x5b, 0xd1, 0x6b, - 0xf4, 0xd4, 0x7f, 0xdc, 0x7a, 0x93, 0x2b, 0x1c, 0x96, 0x4a, 0x95, 0x6a, 0xa9, 0x94, 0xaf, 0x1e, - 0x54, 0xf3, 0xb5, 0x72, 0xb9, 0x50, 0xa1, 0x8c, 0x9c, 0x3a, 0x67, 0x85, 0x19, 0x6d, 0x1d, 0xd6, - 0x86, 0xc6, 0xfd, 0x65, 0x33, 0xa4, 0x2a, 0x54, 0x96, 0x22, 0x55, 0x34, 0x05, 0xcb, 0xa0, 0x6b, - 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0x17, 0xac, 0xdb, 0xa1, 0x54, 0xfa, 0xa0, 0xc8, - 0x20, 0x69, 0xab, 0x90, 0x94, 0x90, 0x94, 0x90, 0x94, 0x90, 0x94, 0x19, 0x30, 0xb9, 0x52, 0xb1, - 0x56, 0xaa, 0x55, 0xaa, 0xc5, 0x1a, 0x84, 0x24, 0x84, 0xe4, 0x36, 0x0b, 0x49, 0x5a, 0x01, 0x42, - 0x5b, 0x62, 0x13, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, 0x32, 0x72, 0xc1, 0xba, 0x9d, - 0xb4, 0x2a, 0x24, 0xb7, 0xe1, 0x24, 0xf5, 0xf9, 0x90, 0xf6, 0xa8, 0x95, 0x16, 0xa1, 0x22, 0x97, - 0x93, 0xb9, 0xbf, 0x77, 0x77, 0xaf, 0xf3, 0x5e, 0xcd, 0xf7, 0x6e, 0xeb, 0xde, 0xd7, 0xf6, 0x8f, - 0xc2, 0xc7, 0xd2, 0xe8, 0x68, 0xef, 0x47, 0x75, 0xf4, 0xf6, 0x87, 0xcf, 0x8b, 0xde, 0x56, 0xf8, - 0x58, 0x1d, 0x1d, 0x2d, 0xf9, 0x4d, 0x65, 0x74, 0xf4, 0x8b, 0xdf, 0x51, 0x1e, 0xed, 0xa6, 0xde, - 0x3a, 0xfe, 0x79, 0x71, 0xd9, 0x07, 0x4a, 0x4b, 0x3e, 0x70, 0xb0, 0xec, 0x03, 0x07, 0x4b, 0x3e, - 0xb0, 0xf4, 0x92, 0x8a, 0x4b, 0x3e, 0x50, 0x1e, 0x3d, 0xa7, 0xde, 0xbf, 0xbb, 0xf8, 0xad, 0x95, - 0xd1, 0xde, 0xf3, 0xb2, 0xdf, 0x55, 0x47, 0xcf, 0x47, 0x7b, 0x7b, 0xfb, 0xbb, 0x85, 0xe2, 0x75, - 0xde, 0x3b, 0x6c, 0x3f, 0x17, 0xae, 0xf3, 0x5e, 0xa1, 0x3d, 0x7e, 0x67, 0xfb, 0xf9, 0xba, 0xe0, - 0xd5, 0x66, 0x2f, 0xc7, 0xff, 0xbf, 0xf7, 0x5b, 0x0e, 0xb4, 0xd4, 0x41, 0x5a, 0x3a, 0x3d, 0x1f, - 0x67, 0xb5, 0x5b, 0xd5, 0x52, 0xcf, 0xf8, 0x7a, 0x70, 0x10, 0x54, 0x10, 0x54, 0x10, 0x54, 0x10, - 0x54, 0x10, 0x54, 0xf2, 0x75, 0x7b, 0x13, 0x04, 0x7d, 0xe1, 0x2b, 0x0e, 0x72, 0x5a, 0xc8, 0x0a, - 0x54, 0x6f, 0x74, 0x11, 0x65, 0xcb, 0x2d, 0xfd, 0x53, 0xe3, 0x91, 0x74, 0x7d, 0x0f, 0xc5, 0xb4, - 0xc3, 0x7f, 0xfc, 0x4f, 0x5c, 0xc2, 0x01, 0x0d, 0x06, 0xd2, 0x4f, 0x63, 0xa8, 0xbe, 0xab, 0xe0, - 0x7f, 0xca, 0xf3, 0xb5, 0x0e, 0xe5, 0x8d, 0x95, 0x7e, 0xcb, 0x4b, 0x5d, 0xcf, 0x82, 0xb1, 0xd1, - 0x7a, 0xc0, 0x55, 0xc2, 0x87, 0xd6, 0x03, 0xd9, 0x24, 0x74, 0x68, 0x3d, 0xb0, 0xd2, 0xac, 0x91, - 0xb5, 0x1e, 0x48, 0x39, 0x49, 0x7a, 0xa5, 0x9e, 0xbe, 0x04, 0x5a, 0xbd, 0x5e, 0x80, 0x5e, 0x87, - 0x5e, 0x87, 0x5e, 0x87, 0x5e, 0x77, 0x47, 0xaf, 0x53, 0xb9, 0xff, 0x64, 0xc0, 0x49, 0xa1, 0x7d, - 0x4d, 0x1d, 0x25, 0xd8, 0x49, 0x35, 0xa2, 0x99, 0x5c, 0x02, 0xb1, 0xe9, 0xf2, 0x24, 0x33, 0x91, - 0xc3, 0x01, 0x27, 0x2c, 0xb8, 0x01, 0x0f, 0xdc, 0x30, 0xe1, 0x0c, 0x5c, 0x38, 0x03, 0x1b, 0xce, - 0xc0, 0x07, 0x2d, 0x8c, 0x10, 0xc3, 0x49, 0x32, 0xcb, 0x97, 0x1c, 0x0e, 0x7e, 0x87, 0xb7, 0x2c, - 0x6c, 0x8a, 0xed, 0x57, 0x19, 0xc6, 0x4e, 0xb5, 0x24, 0x7d, 0x01, 0xbb, 0x8c, 0xa6, 0x6f, 0x12, - 0x9a, 0x36, 0x51, 0x17, 0xd3, 0xa5, 0x36, 0x4d, 0xd1, 0xd5, 0x94, 0x59, 0xbb, 0x82, 0xb4, 0x80, - 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x70, 0x90, 0x16, 0x6a, 0x2d, 0x3c, 0xaf, 0x89, 0xfb, 0x82, 0xf1, - 0x64, 0xd7, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, 0x3c, 0xee, 0xc3, 0x05, 0x3a, 0x2e, 0x80, - 0x8f, 0x5b, 0x20, 0xe4, 0x0a, 0x18, 0x39, 0x07, 0x4a, 0xce, 0x81, 0x93, 0x73, 0x20, 0xc5, 0x03, - 0x56, 0x4c, 0xa0, 0xc5, 0xaf, 0xb8, 0x53, 0x7e, 0x63, 0x28, 0x95, 0x2e, 0x54, 0x38, 0x7d, 0xc6, - 0x14, 0x45, 0x2a, 0x8c, 0x97, 0xc0, 0x73, 0x20, 0xfd, 0xed, 0x1f, 0x5e, 0x9f, 0xb9, 0xc3, 0x7d, - 0x60, 0xdd, 0x31, 0x7a, 0x91, 0xba, 0x1c, 0xe6, 0x03, 0xed, 0xa9, 0xeb, 0x71, 0xe0, 0x90, 0xb1, - 0x23, 0xee, 0x74, 0xde, 0x84, 0xfd, 0x47, 0x98, 0xf0, 0x4f, 0x4c, 0xb8, 0x52, 0x2e, 0x1f, 0x94, - 0x61, 0xc6, 0x6e, 0x71, 0x11, 0xfe, 0xd1, 0xdb, 0x1f, 0xb6, 0xe3, 0x7e, 0x39, 0xea, 0x72, 0xf0, - 0xed, 0xa4, 0x2f, 0x0e, 0x1b, 0x30, 0xec, 0xa8, 0x23, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, 0x88, - 0x1b, 0x20, 0x6e, 0x90, 0x91, 0xb8, 0xc1, 0xa1, 0x03, 0x61, 0x83, 0x32, 0xc2, 0x06, 0x08, 0x1b, - 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xd6, 0x4d, 0xb8, 0x58, 0x46, 0xd0, 0x00, 0x41, 0x03, - 0x04, 0x0d, 0x68, 0x83, 0x06, 0x0f, 0xd3, 0xd5, 0xe7, 0x42, 0xd4, 0x20, 0xbe, 0x16, 0x84, 0x0d, - 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, 0xa7, 0xdf, 0xb8, 0x91, - 0xca, 0x0f, 0x9f, 0x1c, 0x88, 0x1b, 0xd4, 0x18, 0x2f, 0xe1, 0x44, 0xa8, 0xbb, 0x49, 0xe2, 0x3f, - 0x02, 0x07, 0x08, 0x1c, 0xfc, 0x54, 0x75, 0x15, 0xa0, 0xb9, 0x10, 0x38, 0xd8, 0x6c, 0x13, 0x46, - 0xbe, 0x01, 0x42, 0x07, 0x08, 0x1d, 0x90, 0x9a, 0xb9, 0x78, 0xd4, 0x42, 0xf5, 0x08, 0x7b, 0xa4, - 0x2f, 0xa5, 0x7c, 0xc9, 0x95, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, - 0x80, 0xb0, 0xc1, 0x7b, 0xc3, 0x06, 0xe4, 0xe5, 0x62, 0x97, 0xc1, 0x08, 0x51, 0xf9, 0xd8, 0xed, - 0x24, 0x2d, 0xc1, 0x60, 0xcc, 0xcc, 0xfd, 0x3e, 0x3f, 0x69, 0x49, 0xae, 0x04, 0xa4, 0x05, 0xa4, - 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0x3d, 0xc7, 0x03, - 0x3f, 0xd4, 0xd2, 0x05, 0xce, 0x32, 0xbb, 0x10, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, - 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0xf4, 0x1c, 0xeb, 0xd0, 0x57, 0x91, 0xd4, 0xf2, - 0xc1, 0x81, 0xbc, 0xd2, 0x57, 0xd7, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, - 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0x3c, 0x71, 0xc9, 0x74, 0x79, 0x51, 0xe2, 0xfe, 0x84, 0xa9, 0xf1, - 0x59, 0xfa, 0x15, 0xa6, 0x5b, 0xe3, 0xa5, 0x7f, 0x44, 0xd1, 0xd4, 0x90, 0xcf, 0xd4, 0xb2, 0xd5, - 0x2f, 0xe6, 0x4f, 0xf1, 0xc4, 0x51, 0xf0, 0x25, 0x77, 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xb8, 0x59, - 0xcd, 0xa9, 0x54, 0xc7, 0x7d, 0x31, 0x66, 0x03, 0x51, 0xee, 0x68, 0x47, 0x0d, 0xfb, 0x7d, 0xc2, - 0x62, 0xf3, 0xa7, 0xfe, 0x23, 0xdf, 0xe0, 0xcd, 0xb0, 0x27, 0x42, 0xd1, 0xfb, 0xfc, 0x34, 0x1d, - 0x3a, 0x53, 0x46, 0xcc, 0xe4, 0x89, 0xdd, 0xf5, 0xc0, 0x39, 0xd2, 0x1e, 0x0a, 0xe1, 0xb0, 0xab, - 0xd5, 0x94, 0x65, 0x7d, 0xbe, 0x1b, 0x74, 0x5a, 0xf2, 0xa6, 0x53, 0xbf, 0x95, 0x17, 0xfe, 0xad, - 0xec, 0x34, 0x06, 0x0f, 0x95, 0xab, 0xf8, 0x46, 0x3b, 0x67, 0xd3, 0xdb, 0xeb, 0xd4, 0x7b, 0xff, - 0xb6, 0xe4, 0x4d, 0x43, 0x9d, 0x87, 0xa2, 0xd3, 0x1a, 0xdf, 0x54, 0xe7, 0x2a, 0xbe, 0x83, 0x7a, - 0x72, 0x03, 0xe8, 0xc0, 0xcc, 0xbf, 0xbe, 0xb6, 0xa3, 0x03, 0xf3, 0x82, 0x66, 0xbf, 0x9b, 0xda, - 0x8e, 0xf9, 0xc3, 0x06, 0x19, 0xd9, 0x8c, 0x79, 0xc4, 0x51, 0x8b, 0x9d, 0xf1, 0x43, 0xf7, 0xa4, - 0xad, 0x0c, 0x70, 0x1a, 0xba, 0x41, 0x4a, 0x2f, 0x48, 0xe9, 0x04, 0x0d, 0x7d, 0xb0, 0x65, 0x69, - 0x44, 0x6e, 0x8c, 0xc5, 0x7d, 0x59, 0x44, 0x7a, 0x23, 0xc8, 0x6e, 0xc7, 0x97, 0x9a, 0xf7, 0x74, - 0x66, 0xbf, 0xd1, 0xb0, 0x25, 0xdb, 0xb6, 0x60, 0x62, 0xcb, 0x35, 0x6b, 0x13, 0xe6, 0x9e, 0x9c, - 0x99, 0x6f, 0x32, 0xf4, 0xec, 0x6d, 0x3d, 0x73, 0xaa, 0x67, 0x6d, 0xd0, 0x31, 0xad, 0xe9, 0x88, - 0xcc, 0x98, 0xdb, 0xfa, 0xc6, 0x61, 0xc0, 0x30, 0x72, 0xb3, 0x39, 0x0e, 0x86, 0xda, 0x1b, 0x04, - 0x91, 0x36, 0x66, 0x1a, 0x2f, 0x45, 0x7c, 0xde, 0x8e, 0x60, 0xc8, 0x9c, 0xcd, 0xb6, 0x9d, 0x33, - 0xbe, 0x25, 0x6a, 0x63, 0x8b, 0xd3, 0xee, 0x96, 0xa5, 0xad, 0x2d, 0x48, 0xeb, 0x5b, 0x8a, 0xd6, - 0xb7, 0x08, 0xad, 0x6f, 0xf9, 0xb9, 0x05, 0x14, 0xa6, 0xdb, 0x9c, 0xe5, 0xa6, 0x28, 0x6d, 0xdc, - 0xb0, 0x66, 0xcb, 0x61, 0xfa, 0xfd, 0x86, 0x1f, 0xba, 0x9d, 0xbe, 0x96, 0x2f, 0x8e, 0xa6, 0x68, - 0xf8, 0x8b, 0x2d, 0xe6, 0x54, 0xd0, 0xe4, 0x4a, 0xd8, 0xce, 0x81, 0x20, 0xcb, 0x6d, 0x20, 0xcb, - 0x59, 0x20, 0xcb, 0x45, 0x70, 0x5b, 0xcd, 0xd8, 0xea, 0xcb, 0x18, 0x3b, 0x16, 0x7b, 0xf6, 0x38, - 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0xf6, 0xbc, 0xd6, 0x53, 0xc9, 0x28, 0x52, 0xc5, 0x68, 0x53, - 0xc1, 0xa8, 0x52, 0xbd, 0xc8, 0x53, 0xb9, 0xc8, 0x53, 0xb5, 0xc8, 0x53, 0xb1, 0x36, 0x2b, 0x20, - 0x6e, 0xbb, 0x5d, 0x6d, 0x6e, 0x16, 0x63, 0xb7, 0x6e, 0xc9, 0x2f, 0xc7, 0x8d, 0x6c, 0x06, 0xf5, - 0xdf, 0xba, 0x4c, 0xcb, 0xc9, 0xb1, 0x64, 0x59, 0xb8, 0x94, 0xd9, 0xb6, 0x3c, 0x59, 0xb5, 0xd4, - 0xd9, 0xb3, 0x6c, 0x59, 0xb2, 0x6c, 0xd9, 0xb0, 0x6c, 0x59, 0xaf, 0x9b, 0xbd, 0xe1, 0x4d, 0x96, - 0xad, 0x9a, 0xac, 0xbb, 0xbe, 0xf0, 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, 0x66, 0xcc, 0xb2, 0x4a, - 0x30, 0xd6, 0xf9, 0x34, 0xbc, 0xfc, 0xe9, 0x53, 0x9c, 0x0c, 0xb8, 0x3f, 0x83, 0x82, 0x4d, 0xdd, - 0x5a, 0xb7, 0xc8, 0x2f, 0x07, 0x34, 0xee, 0xfe, 0x05, 0x95, 0x49, 0xc8, 0x25, 0x40, 0x19, 0xa0, - 0x0c, 0x50, 0x06, 0x28, 0x03, 0x94, 0x1d, 0x06, 0xe5, 0x78, 0xd9, 0x01, 0x93, 0x53, 0x53, 0x15, - 0x9f, 0x60, 0x20, 0x83, 0xe4, 0x78, 0x38, 0x1a, 0x44, 0x2e, 0x00, 0x91, 0x81, 0xc8, 0x40, 0x64, - 0x20, 0xf2, 0xea, 0xb3, 0x66, 0x3b, 0x52, 0x99, 0x0c, 0x34, 0x39, 0x96, 0x24, 0x55, 0x4f, 0xd0, - 0x9d, 0x3d, 0x9f, 0xef, 0x66, 0x15, 0x8f, 0x4d, 0x75, 0x16, 0x8b, 0xb4, 0xca, 0x00, 0x79, 0x55, - 0x01, 0x8e, 0x2a, 0x02, 0xbc, 0x55, 0x03, 0xb8, 0xaa, 0x04, 0xb0, 0x57, 0x05, 0x60, 0xaf, 0x02, - 0xc0, 0x7e, 0xea, 0x3f, 0x5b, 0xa7, 0x44, 0xc9, 0x4f, 0xf1, 0x33, 0x48, 0x31, 0x0e, 0x49, 0xb6, - 0x48, 0x9a, 0xfd, 0xc7, 0xdf, 0x09, 0x24, 0x45, 0x42, 0x47, 0xc9, 0xab, 0xa9, 0x90, 0x8b, 0x61, - 0x2a, 0x2b, 0x67, 0xe6, 0x08, 0x98, 0x75, 0x37, 0xb8, 0xbf, 0x1f, 0x2a, 0xa9, 0x9f, 0xb8, 0xd8, - 0xc5, 0xdb, 0x0b, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0xe0, - 0xa4, 0x18, 0x33, 0x5c, 0x92, 0x22, 0x4a, 0x5e, 0x3f, 0x81, 0x65, 0xac, 0x36, 0xe5, 0xe2, 0x51, - 0x7b, 0xec, 0x4c, 0x63, 0xd1, 0x45, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, - 0x80, 0x6d, 0x70, 0xb2, 0x8d, 0xd7, 0xd8, 0x34, 0x66, 0x1c, 0x73, 0x58, 0x05, 0xd6, 0xb1, 0xda, - 0xd4, 0x4b, 0xf5, 0xe0, 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x11, 0x56, 0xc4, 0x4a, 0x2c, 0xfc, - 0xcd, 0xf8, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe4, 0xeb, 0x56, 0xf6, - 0x84, 0xd2, 0x52, 0x3f, 0x31, 0xf1, 0x0d, 0xc2, 0x7e, 0xee, 0xb9, 0xc6, 0xf4, 0x56, 0x3f, 0xfb, - 0x11, 0x83, 0xcb, 0x98, 0x4d, 0x78, 0xe3, 0xec, 0x5b, 0xfd, 0xa4, 0xf1, 0xa5, 0xd3, 0x6a, 0x5e, - 0x5d, 0x1e, 0x77, 0x5a, 0xc7, 0xf5, 0x8b, 0xe6, 0x19, 0xb5, 0xf7, 0x98, 0x74, 0xd4, 0x8f, 0x72, - 0x47, 0x3b, 0xd7, 0xe4, 0x25, 0x89, 0x99, 0xfb, 0x44, 0xcc, 0x66, 0xbf, 0xd9, 0x6a, 0xfc, 0xd1, - 0x38, 0xab, 0x5f, 0x36, 0x5b, 0xb9, 0x6d, 0xe8, 0xd5, 0xe1, 0xc8, 0xac, 0xff, 0x7e, 0x72, 0x75, - 0x71, 0x79, 0xdc, 0xea, 0x9c, 0x34, 0x9b, 0xe7, 0x98, 0x77, 0xba, 0x79, 0xaf, 0x5f, 0x60, 0xca, - 0xa9, 0x4d, 0xbd, 0x79, 0xf6, 0xf5, 0xf8, 0x4b, 0x2e, 0xe3, 0xf5, 0xf4, 0xdb, 0x59, 0xe3, 0x7b, - 0x99, 0x50, 0xf7, 0x7d, 0x3f, 0xd2, 0xde, 0x7d, 0xd0, 0x93, 0xb7, 0x52, 0xf4, 0xe8, 0xc5, 0xfd, - 0xfc, 0xf0, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xe4, 0xeb, 0x56, 0xcb, - 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, 0x31, 0x68, 0xfb, 0x43, 0xc2, 0x21, 0xaf, 0x94, 0x9c, - 0x94, 0xb8, 0xce, 0x29, 0x5f, 0x05, 0x91, 0xe8, 0x06, 0xaa, 0x17, 0x51, 0xde, 0x72, 0xcb, 0x57, - 0x77, 0x82, 0x5c, 0x4f, 0x33, 0x34, 0x14, 0x3a, 0x95, 0x8a, 0xaf, 0xd9, 0x23, 0x73, 0x8b, 0xc5, - 0x49, 0xd4, 0x84, 0x71, 0xfc, 0xaf, 0xa1, 0xdf, 0xd5, 0x32, 0x50, 0x5f, 0xe4, 0x5d, 0x6c, 0xed, - 0xf9, 0xad, 0x68, 0x33, 0x7a, 0xea, 0x3f, 0x6e, 0xbd, 0xc9, 0x15, 0x0e, 0x4b, 0xa5, 0x4a, 0xb5, - 0x54, 0xca, 0x57, 0x0f, 0xaa, 0xf9, 0x5a, 0xb9, 0x5c, 0xa8, 0x50, 0x46, 0x4e, 0x9d, 0xb3, 0xc2, - 0x8c, 0xb6, 0x0d, 0x6b, 0x43, 0xe3, 0xfe, 0xb2, 0x19, 0x52, 0x15, 0x2a, 0x4b, 0x91, 0x2a, 0x9a, - 0x82, 0x65, 0xd0, 0xb5, 0xd0, 0xb5, 0xd0, 0xb5, 0xd0, 0xb5, 0xd0, 0xb5, 0x0b, 0xd6, 0xed, 0x50, - 0x2a, 0x7d, 0x50, 0x64, 0x90, 0xb4, 0x55, 0x48, 0x4a, 0x48, 0x4a, 0x48, 0x4a, 0x48, 0xca, 0x0c, - 0x98, 0x5c, 0xa9, 0x58, 0x2b, 0xd5, 0x2a, 0xd5, 0x62, 0x0d, 0x42, 0x12, 0x42, 0x72, 0x9b, 0x85, - 0x24, 0xad, 0x00, 0xa1, 0x2d, 0xb1, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, - 0xb9, 0x60, 0xdd, 0x4e, 0x9a, 0x15, 0x92, 0xdb, 0x70, 0x92, 0xfa, 0x7c, 0x48, 0x7b, 0xd4, 0x4a, - 0x8b, 0x50, 0x91, 0xcb, 0xc9, 0xdc, 0xdf, 0xbb, 0xbb, 0xd7, 0x79, 0xaf, 0xe6, 0x7b, 0xb7, 0x75, + 0xcf, 0x6c, 0xaf, 0xd6, 0x49, 0x2a, 0x5c, 0x44, 0x12, 0x40, 0x22, 0xca, 0x25, 0x7c, 0x3b, 0x9b, + 0xf5, 0x8b, 0xce, 0x49, 0xb3, 0x79, 0x9e, 0xcb, 0x42, 0x56, 0x26, 0xd3, 0x14, 0xfe, 0xde, 0x3c, + 0xfb, 0x7a, 0xfc, 0x05, 0x33, 0xb8, 0xfa, 0x0c, 0x36, 0x5b, 0x8d, 0x3f, 0x1a, 0x67, 0xf5, 0xcb, + 0x66, 0x0b, 0xb3, 0xb8, 0x86, 0x1d, 0x9e, 0x5c, 0x5d, 0x5c, 0x1e, 0xb7, 0xa8, 0xd6, 0xb3, 0xd5, + 0x11, 0xda, 0x9b, 0xc6, 0x4f, 0x36, 0x42, 0xbd, 0xf5, 0xfd, 0x48, 0x7b, 0xf7, 0x41, 0x4f, 0xde, + 0x4a, 0xd1, 0xb3, 0x2f, 0xde, 0xe6, 0x87, 0x83, 0x76, 0x83, 0x76, 0x83, 0x76, 0x83, 0x76, 0xdb, + 0x40, 0xed, 0xa6, 0xe5, 0xbd, 0xd0, 0xb2, 0xfb, 0x3d, 0xaa, 0x94, 0x08, 0xb4, 0x9b, 0xcd, 0x86, + 0xc1, 0x57, 0x2a, 0x3e, 0x59, 0x93, 0x53, 0xbe, 0x0a, 0x22, 0xd1, 0x0d, 0x54, 0xcf, 0x6a, 0x5e, + 0x13, 0xce, 0x04, 0xba, 0x87, 0x69, 0x8b, 0x55, 0x2e, 0xce, 0x04, 0xae, 0x6d, 0x22, 0x5b, 0x70, + 0x26, 0xb0, 0x70, 0x58, 0x2a, 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, 0xd7, 0xca, 0xe5, + 0x42, 0xa5, 0x80, 0xd3, 0x81, 0xce, 0x7d, 0xfb, 0x36, 0x67, 0x7c, 0xd8, 0xaa, 0x69, 0x9b, 0x22, + 0x05, 0x76, 0x6a, 0xdb, 0x26, 0xc3, 0x7c, 0x11, 0xb7, 0xfe, 0xb0, 0x3f, 0xa1, 0x7e, 0x79, 0x68, + 0x27, 0x68, 0x27, 0x68, 0x27, 0x68, 0xa7, 0x4d, 0xd4, 0x4e, 0x28, 0x6d, 0x02, 0x19, 0x03, 0x19, + 0x03, 0x19, 0xe3, 0x94, 0x89, 0xa0, 0xb4, 0x09, 0xc4, 0x8b, 0x8b, 0xe2, 0x65, 0x9a, 0xec, 0x66, + 0xb4, 0xa1, 0xe9, 0x52, 0x64, 0x7e, 0x3d, 0x18, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0xc6, + 0x06, 0x0a, 0x8c, 0x9b, 0x20, 0xe8, 0x0b, 0x5f, 0x51, 0x24, 0xd5, 0x15, 0x36, 0x05, 0x9a, 0x9c, + 0x2e, 0xd0, 0x5f, 0x57, 0x2a, 0xd0, 0xfe, 0x98, 0x0d, 0xd9, 0xa9, 0xd3, 0x1f, 0x75, 0xff, 0x11, + 0xf7, 0xfe, 0x60, 0x9a, 0xee, 0xbf, 0x1f, 0x0c, 0x84, 0xea, 0x4e, 0x80, 0x62, 0xbc, 0x3e, 0xf7, + 0xc7, 0xff, 0x0b, 0xe5, 0xcd, 0xbe, 0x7f, 0x2b, 0xbd, 0xc8, 0xbf, 0x95, 0x51, 0xf2, 0x6a, 0x7f, + 0x72, 0x16, 0x36, 0x0a, 0xb5, 0xf0, 0x06, 0x41, 0x5f, 0x76, 0x9f, 0xf6, 0xfb, 0xf1, 0xba, 0xde, + 0x8f, 0x5b, 0xff, 0xc7, 0xff, 0xc4, 0x27, 0x01, 0xb6, 0xa1, 0x4d, 0xcb, 0x50, 0x7d, 0x57, 0xc1, + 0xff, 0x94, 0xe7, 0x6b, 0x1d, 0xca, 0x9b, 0xf1, 0x0c, 0xd8, 0xeb, 0xd9, 0xb2, 0x60, 0x2c, 0x34, + 0x70, 0x41, 0x03, 0x17, 0x27, 0x28, 0x06, 0x1a, 0xb8, 0xd0, 0xe2, 0x83, 0xb5, 0x06, 0x2e, 0x29, + 0x27, 0x63, 0x5f, 0x63, 0xa5, 0x87, 0xb4, 0xab, 0xb4, 0x0a, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, + 0xdb, 0xa4, 0xb4, 0x6c, 0xb9, 0xcb, 0x64, 0x80, 0x49, 0x53, 0x13, 0x6d, 0x5b, 0xcf, 0xed, 0xa4, + 0xda, 0x5f, 0x4d, 0x86, 0xb4, 0x6c, 0x5a, 0x34, 0xf1, 0x67, 0xeb, 0xee, 0x93, 0xd2, 0x8d, 0xf2, + 0xb8, 0x53, 0x6a, 0xb7, 0xca, 0xe6, 0x5e, 0xd9, 0xdc, 0x2c, 0x9b, 0xbb, 0xb5, 0xeb, 0x76, 0x2d, + 0xbb, 0x5f, 0xba, 0x80, 0x57, 0x6a, 0xdd, 0xd9, 0xaf, 0xcb, 0x90, 0x62, 0x97, 0x55, 0x9a, 0xaa, + 0x5d, 0xf3, 0x9d, 0x71, 0x5f, 0xc0, 0x60, 0x43, 0x77, 0xb4, 0x2c, 0x9a, 0x9e, 0xa5, 0x5e, 0xba, + 0x4b, 0x6d, 0xce, 0x46, 0x6f, 0x5d, 0x62, 0x2d, 0x03, 0x50, 0x06, 0x28, 0x03, 0x94, 0xb7, 0x03, + 0x94, 0x6d, 0x6b, 0xa3, 0x79, 0x8d, 0xd4, 0x17, 0x84, 0xc9, 0x55, 0x73, 0x52, 0x69, 0x3c, 0xf2, + 0xc7, 0x4c, 0x66, 0xec, 0x50, 0x39, 0x69, 0x0e, 0x67, 0xcd, 0xeb, 0xb4, 0xb9, 0x9c, 0x37, 0xbb, + 0x13, 0x67, 0x77, 0xe6, 0xec, 0x4e, 0x9d, 0xc6, 0xb9, 0x13, 0x39, 0x79, 0x7a, 0x05, 0x96, 0x5a, + 0xb7, 0x43, 0xa9, 0x74, 0xa1, 0x42, 0xb9, 0x66, 0xa7, 0x5e, 0xb8, 0x42, 0x38, 0x24, 0x4d, 0x0e, + 0xf4, 0xdb, 0x3f, 0xb4, 0x3e, 0x69, 0x87, 0x3a, 0x47, 0x9a, 0x19, 0x5e, 0x53, 0xc3, 0x13, 0xe7, + 0x50, 0xa7, 0xc6, 0x67, 0xc8, 0x93, 0x65, 0x72, 0x57, 0xf3, 0x26, 0xe7, 0x3f, 0x6e, 0xbd, 0xc9, + 0x55, 0xca, 0xe5, 0x83, 0xf2, 0x16, 0x9b, 0xdd, 0x87, 0x6c, 0x8e, 0xd6, 0xfe, 0x90, 0x8d, 0xfb, + 0xa1, 0x38, 0x7a, 0x41, 0xb7, 0xd3, 0xb6, 0x58, 0x46, 0x12, 0xec, 0xb8, 0x41, 0x47, 0x42, 0x47, + 0x42, 0x47, 0x42, 0x47, 0x42, 0x47, 0x2e, 0xd1, 0x91, 0x87, 0x0c, 0x32, 0xb2, 0x0c, 0x19, 0x09, + 0x19, 0x09, 0x19, 0x09, 0x19, 0x99, 0x01, 0x93, 0x2b, 0x96, 0x21, 0x22, 0x21, 0x22, 0xb7, 0x5d, + 0x44, 0x3e, 0x4c, 0x57, 0x03, 0x87, 0x8a, 0x8c, 0xc7, 0x86, 0x8c, 0x84, 0x8c, 0x84, 0x8c, 0x84, + 0x8c, 0x84, 0x8c, 0x24, 0x5f, 0xb7, 0x37, 0x52, 0xf9, 0xe1, 0x13, 0x83, 0x8e, 0xac, 0x11, 0x0e, + 0x79, 0x22, 0xd4, 0xdd, 0x24, 0x51, 0x14, 0x42, 0x72, 0x0b, 0x58, 0x7d, 0x01, 0x42, 0x12, 0x42, + 0x92, 0xd6, 0xe4, 0xb0, 0x1f, 0x09, 0x29, 0xb9, 0xe5, 0x52, 0x52, 0x3c, 0x6a, 0xa1, 0x7a, 0x16, + 0x5b, 0x85, 0x2c, 0xa5, 0x30, 0xc9, 0xc8, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, + 0x91, 0xf4, 0x32, 0xd2, 0x7a, 0x61, 0xad, 0x65, 0x6e, 0xd8, 0x52, 0xa1, 0xad, 0x6c, 0x82, 0x74, + 0x30, 0x18, 0x33, 0x45, 0xbf, 0x4f, 0x0f, 0xd2, 0xc9, 0xc8, 0x00, 0x69, 0x80, 0x34, 0x40, 0x1a, + 0x20, 0x0d, 0x90, 0x06, 0x48, 0x03, 0xa4, 0x17, 0xcd, 0xd9, 0xc0, 0x0f, 0xb5, 0xe4, 0xc0, 0xe8, + 0xd9, 0xc0, 0x80, 0x68, 0x40, 0x34, 0x20, 0x1a, 0x10, 0x0d, 0x88, 0x06, 0x44, 0x03, 0xa2, 0x17, + 0xcd, 0x99, 0x0e, 0x7d, 0x15, 0x49, 0x2d, 0x1f, 0x18, 0xf2, 0xa6, 0x5e, 0x8d, 0x0d, 0xa0, 0x06, + 0x50, 0x03, 0xa8, 0x01, 0xd4, 0x00, 0x6a, 0x00, 0xf5, 0x06, 0x02, 0xf5, 0x46, 0x97, 0x8b, 0xb2, + 0xdc, 0x99, 0x22, 0x35, 0x9e, 0xe5, 0x4e, 0x15, 0xe9, 0xa6, 0x0a, 0xe9, 0x1f, 0xd9, 0x68, 0x67, + 0x41, 0x67, 0x14, 0x9b, 0x55, 0xa9, 0xf9, 0x4f, 0xf1, 0x44, 0x71, 0xd4, 0x3a, 0x77, 0x22, 0x23, + 0x5d, 0xd7, 0xda, 0x72, 0x59, 0xe8, 0x53, 0xa9, 0x8e, 0xfb, 0x62, 0x8c, 0x7b, 0x51, 0xee, 0x68, + 0x47, 0x0d, 0xfb, 0x7d, 0x8b, 0x65, 0x2e, 0x4f, 0xfd, 0x47, 0xba, 0xc1, 0x9a, 0x61, 0x4f, 0x84, + 0xa2, 0xf7, 0xf9, 0x69, 0x3a, 0xd4, 0x46, 0x19, 0x19, 0x91, 0x0f, 0x73, 0xc1, 0x77, 0xe5, 0xac, + 0xd6, 0x55, 0x0d, 0x87, 0x5d, 0xad, 0xa6, 0xcc, 0xe0, 0xf3, 0xdd, 0xa0, 0xd3, 0x92, 0x37, 0x9d, + 0xfa, 0xad, 0xbc, 0xf0, 0x6f, 0x65, 0xa7, 0x31, 0x78, 0xa8, 0x5c, 0x84, 0x5a, 0x9c, 0x4f, 0xee, + 0xa0, 0x73, 0x12, 0x74, 0xc7, 0xbf, 0x6d, 0x8d, 0xaf, 0xbc, 0x73, 0x15, 0x5f, 0x66, 0x3d, 0xb9, + 0x4a, 0x34, 0x8d, 0x72, 0xdf, 0xac, 0xe9, 0xcd, 0xd9, 0xd9, 0x0e, 0x52, 0x1f, 0x1c, 0x7a, 0xfc, + 0x33, 0xc8, 0x9c, 0xf6, 0xda, 0xdf, 0x11, 0xaa, 0x37, 0x08, 0xa4, 0xd2, 0x3b, 0xdd, 0xa0, 0x1f, + 0x84, 0x86, 0xd6, 0xbf, 0x1d, 0xbc, 0xb4, 0x8a, 0x8f, 0x56, 0xf1, 0xd0, 0x0e, 0xfe, 0x99, 0xb2, + 0x08, 0x4b, 0x8e, 0xc0, 0xb2, 0x03, 0x30, 0x08, 0x55, 0xab, 0x43, 0x93, 0x19, 0x97, 0xb3, 0xbe, + 0x83, 0x58, 0xef, 0x1b, 0xd6, 0x34, 0x24, 0xd3, 0x06, 0x64, 0xcd, 0x70, 0xd6, 0x7b, 0x5a, 0xab, + 0xcf, 0xf1, 0x6a, 0x9f, 0x5c, 0xf1, 0xa9, 0x98, 0x7a, 0x1a, 0xe6, 0x9f, 0xc2, 0x1a, 0x2b, 0x76, + 0x95, 0x15, 0xba, 0xda, 0xd3, 0x7e, 0xff, 0xb3, 0x5a, 0xe1, 0x39, 0xe5, 0x94, 0x90, 0x77, 0xff, + 0xdc, 0x04, 0xe1, 0xea, 0xfd, 0x1f, 0x93, 0x10, 0xdb, 0xcb, 0x57, 0xad, 0x68, 0x2f, 0xeb, 0xf5, + 0x06, 0x58, 0x7b, 0x1f, 0xc2, 0xc4, 0xbe, 0x82, 0xd9, 0x7d, 0x02, 0x53, 0x71, 0x7f, 0xe3, 0x71, + 0x7c, 0xe3, 0x71, 0x79, 0xe3, 0x71, 0x76, 0x5a, 0x4f, 0xb7, 0x6e, 0x2d, 0xfa, 0x64, 0xed, 0xac, + 0xff, 0xa8, 0xdf, 0xae, 0xc6, 0x75, 0x9f, 0xb4, 0x99, 0x86, 0x1d, 0xc6, 0x36, 0x09, 0x4d, 0x6e, + 0xfe, 0xd9, 0xd9, 0xd4, 0x33, 0xbd, 0x59, 0x67, 0x6d, 0x13, 0xce, 0xda, 0xe6, 0x9a, 0xb5, 0x4d, + 0x33, 0x5e, 0x72, 0x69, 0xaa, 0xe1, 0x44, 0xce, 0xef, 0xfd, 0x3b, 0x99, 0x13, 0xa9, 0xbc, 0x41, + 0x10, 0x69, 0x73, 0x96, 0x92, 0x94, 0x6a, 0x79, 0x33, 0x80, 0x29, 0xc1, 0x6e, 0xb4, 0x77, 0x8f, + 0xf1, 0xbc, 0x01, 0x1b, 0x79, 0x01, 0x76, 0xf7, 0xfd, 0x6d, 0xed, 0xeb, 0x5b, 0xdf, 0xb7, 0xb7, + 0xbe, 0x2f, 0x6f, 0x7d, 0xdf, 0xdd, 0xad, 0x50, 0x98, 0xe9, 0x5e, 0x36, 0xb9, 0xa9, 0xcc, 0xb4, + 0xd6, 0xd3, 0x7d, 0xfa, 0xfd, 0xe8, 0xe3, 0x8e, 0x3e, 0xee, 0xac, 0x8e, 0x88, 0xcc, 0x21, 0x91, + 0x39, 0x26, 0xb3, 0x0e, 0xca, 0xb0, 0xa3, 0xb2, 0xe6, 0xb0, 0xe6, 0x1d, 0x97, 0xfd, 0xde, 0xed, + 0xa6, 0x03, 0xb7, 0x04, 0x6e, 0xcc, 0xba, 0x3b, 0xa3, 0x70, 0x6b, 0xb4, 0xee, 0x8d, 0xca, 0xcd, + 0x91, 0xbb, 0x3b, 0x72, 0xb7, 0x47, 0xee, 0xfe, 0xec, 0xb8, 0x41, 0x4b, 0xee, 0xd0, 0xba, 0x5b, + 0x4c, 0x06, 0x88, 0xf7, 0x46, 0xc9, 0x5a, 0xc2, 0x9a, 0xdc, 0x8a, 0xfd, 0x99, 0xbb, 0x44, 0x9f, + 0x76, 0xd7, 0xdd, 0x28, 0xb5, 0x3b, 0x65, 0x73, 0xab, 0x6c, 0xee, 0x95, 0xcd, 0xcd, 0xda, 0x75, + 0xb7, 0x96, 0xdd, 0x6e, 0x32, 0x6b, 0xe8, 0xd3, 0x6e, 0xca, 0x85, 0xbd, 0xed, 0xd3, 0x1e, 0x03, + 0x01, 0x7a, 0xb4, 0xa7, 0x66, 0x6a, 0x96, 0xb5, 0x44, 0x87, 0xc9, 0xc9, 0x88, 0x80, 0x65, 0xc0, + 0x32, 0x60, 0x19, 0xb0, 0x0c, 0x58, 0xde, 0x5a, 0x58, 0x4e, 0xb0, 0x00, 0xc8, 0x9c, 0x9a, 0xac, + 0x69, 0x5e, 0x31, 0x1d, 0x30, 0xcf, 0x06, 0x04, 0x2e, 0x03, 0x97, 0x81, 0xcb, 0xc0, 0x65, 0xe0, + 0xf2, 0xd6, 0xe2, 0xf2, 0x0c, 0x0a, 0x00, 0xcb, 0xa9, 0xb9, 0x8a, 0xcf, 0x24, 0x93, 0x81, 0x72, + 0x3c, 0x1c, 0x0d, 0x24, 0x17, 0x00, 0xc9, 0x80, 0x64, 0x40, 0x32, 0x20, 0x79, 0xf5, 0x59, 0xb3, + 0xbd, 0x81, 0x98, 0x0c, 0x34, 0x29, 0x54, 0x20, 0x55, 0x4f, 0x3c, 0x32, 0x75, 0x12, 0x8c, 0xc7, + 0x46, 0x45, 0xac, 0x4d, 0x73, 0xd8, 0xbc, 0x8e, 0x9b, 0xcb, 0x81, 0xb3, 0x3b, 0x72, 0x76, 0x87, + 0xce, 0xee, 0xd8, 0x69, 0x1c, 0x3c, 0x91, 0xa3, 0xa7, 0xd7, 0x60, 0x8c, 0x5a, 0x8c, 0x43, 0x93, + 0x2d, 0xd2, 0x66, 0xff, 0xf1, 0x77, 0x02, 0x49, 0x91, 0xd0, 0x51, 0xf2, 0x6a, 0xaa, 0xe4, 0x62, + 0x98, 0x42, 0xa9, 0xcd, 0x5f, 0x9e, 0xef, 0x1b, 0x11, 0x69, 0x6f, 0x7a, 0x56, 0x97, 0x98, 0x57, + 0xbc, 0x0c, 0x0d, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x41, 0xbe, 0x6e, 0x51, + 0x68, 0x73, 0x23, 0x60, 0x9a, 0x26, 0x91, 0x38, 0x65, 0x1d, 0x14, 0x09, 0xc5, 0x80, 0x67, 0xc0, + 0x33, 0xe0, 0x19, 0xf0, 0x0c, 0x78, 0x5e, 0xb0, 0x6e, 0x87, 0x52, 0xe9, 0x83, 0x22, 0x03, 0x3a, + 0x53, 0x6a, 0xfe, 0x96, 0xaf, 0xee, 0xc6, 0x77, 0x7b, 0x4d, 0xba, 0x46, 0x7e, 0x30, 0xf4, 0x72, + 0x97, 0x6a, 0xeb, 0x7b, 0xb9, 0xe7, 0xb7, 0xb8, 0x8f, 0xfb, 0x47, 0x06, 0x93, 0xf3, 0x1f, 0xb7, + 0xde, 0xe4, 0x4a, 0xc5, 0x5a, 0xa9, 0x56, 0xa9, 0x16, 0x6b, 0xe5, 0x2d, 0xb6, 0xbd, 0x0f, 0xd9, + 0x1c, 0xad, 0x0d, 0x11, 0xf9, 0x0e, 0x11, 0x79, 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x71, 0xed, 0x24, + 0xbf, 0xbd, 0x00, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0x08, 0x4b, 0xf2, 0x75, 0x8b, + 0xed, 0xe4, 0x57, 0x7f, 0x67, 0xb8, 0x24, 0x45, 0x94, 0xbc, 0x7e, 0xc2, 0x8e, 0xf2, 0x6a, 0x53, + 0x4e, 0x76, 0xc4, 0x36, 0x65, 0xd3, 0x44, 0x47, 0x6d, 0xc1, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, + 0x2b, 0xc0, 0x2b, 0x16, 0xac, 0x5b, 0x39, 0xf0, 0xfc, 0x5e, 0x2f, 0x14, 0x51, 0xc4, 0x41, 0x2d, + 0x6a, 0x84, 0x63, 0x4e, 0xe7, 0x38, 0xf3, 0x41, 0xeb, 0x97, 0x27, 0xfb, 0x50, 0x62, 0x78, 0xb6, + 0xa9, 0x67, 0x7c, 0xc8, 0x30, 0xf6, 0xb9, 0xaf, 0xb5, 0x08, 0x15, 0xf9, 0xe3, 0x4e, 0x2e, 0xe0, + 0xef, 0xdd, 0xdd, 0xeb, 0xbc, 0x57, 0x6b, 0x3f, 0x5f, 0x17, 0xbc, 0x5a, 0x3b, 0x7e, 0x59, 0x98, + 0xfc, 0x13, 0xbf, 0x2e, 0x5e, 0xe7, 0xbd, 0xd2, 0xec, 0x75, 0xf9, 0x3a, 0xef, 0x95, 0xdb, 0x7b, + 0x7f, 0xfd, 0xf5, 0x69, 0xef, 0xc7, 0xc1, 0xe8, 0xfd, 0x1f, 0xfc, 0x2d, 0x47, 0x7e, 0x93, 0x6d, + 0xda, 0xf0, 0xe4, 0xc7, 0x2d, 0x5a, 0xb4, 0x15, 0x2c, 0x5a, 0xde, 0x45, 0xeb, 0x7b, 0xb7, 0x75, 0xef, 0x6b, 0xfb, 0x47, 0xe1, 0x63, 0x69, 0x74, 0xb4, 0xf7, 0xa3, 0x3a, 0x7a, 0xfb, 0xc3, 0xe7, 0x45, 0x6f, 0x2b, 0x7c, 0xac, 0x8e, 0x8e, 0x96, 0xfc, 0xa6, 0x32, 0x3a, 0xfa, 0xc5, 0xef, 0x28, 0x8f, 0x76, 0x53, 0x6f, 0x1d, 0xff, 0xbc, 0xb8, 0xec, 0x03, 0xa5, 0x25, 0x1f, 0x38, 0x58, 0xf6, 0x81, 0x83, 0x25, 0x1f, 0x58, 0x7a, 0x49, 0xc5, 0x25, 0x1f, 0x28, 0x8f, 0x9e, 0x53, 0xef, 0xdf, - 0x5d, 0xfc, 0xd6, 0xca, 0x68, 0xef, 0x79, 0xd9, 0xef, 0xaa, 0xa3, 0xe7, 0xa3, 0xbd, 0xbd, 0xfd, - 0xdd, 0x42, 0xf1, 0x3a, 0xef, 0x1d, 0xb6, 0x9f, 0x0b, 0xd7, 0x79, 0xaf, 0xd0, 0x1e, 0xbf, 0xb3, - 0xfd, 0x7c, 0x5d, 0xf0, 0x6a, 0xb3, 0x97, 0xe3, 0xff, 0xdf, 0xfb, 0x2d, 0x07, 0x5a, 0xea, 0x20, - 0x2d, 0x9d, 0x9e, 0x8f, 0xb3, 0xda, 0xad, 0x6a, 0xa9, 0x67, 0x7c, 0x3d, 0x38, 0x08, 0x2a, 0x08, - 0x2a, 0x08, 0x2a, 0x08, 0x2a, 0x08, 0x2a, 0xf9, 0xba, 0xbd, 0x09, 0x82, 0xbe, 0xf0, 0x15, 0x07, - 0x39, 0x2d, 0x64, 0x05, 0xaa, 0x37, 0xba, 0x88, 0xb2, 0xe5, 0x9e, 0xfe, 0xa9, 0xf1, 0xac, 0xf7, - 0x7d, 0x9f, 0x75, 0x0c, 0x9f, 0x76, 0xf9, 0x8f, 0xff, 0x89, 0x8b, 0x38, 0xa0, 0xc5, 0x40, 0xfa, - 0x79, 0x0c, 0xd5, 0x77, 0x15, 0xfc, 0x4f, 0x79, 0xbe, 0xd6, 0xa1, 0xbc, 0xb1, 0xd2, 0x71, 0x79, - 0xa9, 0xf3, 0x59, 0x30, 0x36, 0x9a, 0x0f, 0xb8, 0x4a, 0xf9, 0xd0, 0x7c, 0x20, 0x9b, 0x94, 0x0e, - 0xcd, 0x07, 0x56, 0x9a, 0x35, 0xb2, 0xe6, 0x03, 0x29, 0x27, 0x49, 0xaf, 0xd5, 0xd3, 0x97, 0x40, - 0xab, 0xd8, 0x0b, 0x50, 0xec, 0x50, 0xec, 0x50, 0xec, 0x50, 0xec, 0xee, 0x28, 0x76, 0x2a, 0xf7, - 0x9f, 0x0c, 0x38, 0x29, 0xb5, 0xaf, 0xa9, 0xe3, 0x04, 0x3b, 0xa9, 0x56, 0x34, 0x93, 0x4b, 0x20, - 0x36, 0x5d, 0x9e, 0x74, 0x26, 0x72, 0x38, 0xe0, 0x84, 0x05, 0x37, 0xe0, 0x81, 0x1b, 0x26, 0x9c, - 0x81, 0x0b, 0x67, 0x60, 0xc3, 0x19, 0xf8, 0xa0, 0x85, 0x11, 0x62, 0x38, 0x49, 0x66, 0xf9, 0x92, - 0xc3, 0xc1, 0xef, 0xf0, 0x16, 0x86, 0x4d, 0xb1, 0xfd, 0x2a, 0xc3, 0xd8, 0xa9, 0xa6, 0xa4, 0x2f, - 0x60, 0x97, 0xd1, 0x04, 0x4e, 0x42, 0xd3, 0x26, 0xea, 0x63, 0xba, 0xd4, 0xa6, 0x29, 0xfa, 0x9a, - 0x32, 0x6b, 0x57, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x90, 0x16, 0x0e, 0xd2, 0x42, 0xad, 0x85, - 0xe7, 0x35, 0x71, 0x5f, 0x30, 0x9e, 0xed, 0x9a, 0x93, 0xc6, 0xe3, 0x2b, 0xf9, 0xb8, 0x95, 0x07, - 0x7e, 0xb8, 0x40, 0xc7, 0x05, 0xf0, 0x71, 0x0b, 0x84, 0x5c, 0x01, 0x23, 0xe7, 0x40, 0xc9, 0x39, - 0x70, 0x72, 0x0e, 0xa4, 0x78, 0xc0, 0x8a, 0x09, 0xb4, 0xf8, 0x15, 0x77, 0xca, 0x6f, 0x0c, 0xa5, - 0xd2, 0x85, 0x0a, 0xa7, 0xcf, 0x98, 0xa2, 0x48, 0x85, 0xf1, 0x12, 0x78, 0x8e, 0xa4, 0xbf, 0xfd, - 0xc3, 0xeb, 0x33, 0x77, 0xb8, 0x8f, 0xac, 0x3b, 0x46, 0x2f, 0x52, 0x97, 0xc3, 0x7c, 0xa4, 0x3d, - 0x75, 0x3d, 0x0e, 0x1c, 0x33, 0x76, 0xc4, 0x9d, 0xce, 0x9b, 0xb0, 0xff, 0x08, 0x13, 0xfe, 0x89, - 0x09, 0x57, 0xca, 0xe5, 0x83, 0x32, 0xcc, 0xd8, 0x2d, 0x2e, 0xc2, 0x3f, 0x7a, 0xfb, 0xc3, 0x76, - 0xdc, 0x2f, 0x47, 0x65, 0x0e, 0xbe, 0x9d, 0xf4, 0xc5, 0x61, 0x03, 0x86, 0x1d, 0x75, 0xc4, 0x0d, - 0x10, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x03, 0xc4, 0x0d, 0x32, 0x12, 0x37, 0x38, 0x74, 0x20, 0x6c, - 0x50, 0x46, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0xc0, 0xba, 0x09, 0x17, - 0xcb, 0x08, 0x1a, 0x20, 0x68, 0x80, 0xa0, 0x01, 0x6d, 0xd0, 0xe0, 0x61, 0xba, 0xfa, 0x5c, 0x88, - 0x1a, 0xc4, 0xd7, 0x82, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, - 0x06, 0xef, 0xf4, 0x1b, 0x37, 0x52, 0xf9, 0xe1, 0x93, 0x03, 0x71, 0x83, 0x1a, 0xe3, 0x25, 0x9c, - 0x08, 0x75, 0x37, 0x49, 0xfc, 0x47, 0xe0, 0x00, 0x81, 0x83, 0x9f, 0xaa, 0xae, 0x02, 0x34, 0x17, - 0x02, 0x07, 0x9b, 0x6d, 0xc2, 0xc8, 0x37, 0x40, 0xe8, 0x00, 0xa1, 0x03, 0x52, 0x33, 0x17, 0x8f, - 0x5a, 0xa8, 0x1e, 0x61, 0x97, 0xf4, 0xa5, 0x94, 0x2f, 0xb9, 0x12, 0x84, 0x0d, 0x10, 0x36, 0x40, - 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, 0x6f, 0xd8, 0x80, 0xbc, 0x60, 0xec, 0x32, - 0x18, 0x21, 0x2a, 0x20, 0xbb, 0x9d, 0xa4, 0x25, 0x18, 0x8c, 0x99, 0xb9, 0xdf, 0xe7, 0x27, 0x2d, - 0xc9, 0x95, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, - 0x80, 0xb4, 0xa4, 0xe7, 0x78, 0xe0, 0x87, 0x5a, 0xba, 0xc0, 0x59, 0x66, 0x17, 0x02, 0xca, 0x02, - 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x92, 0x9e, 0x63, - 0x1d, 0xfa, 0x2a, 0x92, 0x5a, 0x3e, 0x38, 0x90, 0x57, 0xfa, 0xea, 0x5a, 0x40, 0x5c, 0x40, 0x5c, - 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x9c, 0x27, 0x2e, 0x99, 0x2e, 0x2f, - 0x4a, 0xdc, 0xa1, 0x30, 0x35, 0x3e, 0x53, 0xc7, 0xc2, 0x74, 0x73, 0xbc, 0xf4, 0x8f, 0x28, 0xda, - 0x1a, 0xf2, 0x19, 0x5b, 0xb6, 0x3a, 0xc6, 0xfc, 0x29, 0x9e, 0x38, 0x4a, 0xbe, 0xe4, 0x4e, 0x64, - 0xa4, 0xeb, 0x5a, 0x13, 0xb7, 0xab, 0x39, 0x95, 0xea, 0xb8, 0x2f, 0xc6, 0x7c, 0x20, 0xca, 0x1d, - 0xed, 0xa8, 0x61, 0xbf, 0x4f, 0x58, 0x6e, 0xfe, 0xd4, 0x7f, 0xe4, 0x1b, 0xbc, 0x19, 0xf6, 0x44, - 0x28, 0x7a, 0x9f, 0x9f, 0xa6, 0x43, 0x67, 0xca, 0x88, 0x99, 0x7c, 0xb1, 0xcb, 0x3e, 0x38, 0x47, - 0xda, 0x47, 0x21, 0x1c, 0x76, 0xb5, 0x9a, 0x32, 0xad, 0xcf, 0x77, 0x83, 0x4e, 0x4b, 0xde, 0x74, - 0xea, 0xb7, 0xf2, 0xc2, 0xbf, 0x95, 0x9d, 0xc6, 0xe0, 0xa1, 0x72, 0x15, 0xdf, 0x6a, 0xe7, 0x6c, - 0x7a, 0x83, 0x9d, 0x7a, 0xef, 0xdf, 0x96, 0xbc, 0x69, 0x0e, 0xf5, 0x79, 0x10, 0xe9, 0x4e, 0x6b, - 0x7c, 0x5b, 0x9d, 0xab, 0xf8, 0x1e, 0xea, 0xc9, 0x2d, 0xa0, 0x13, 0x33, 0xff, 0x1a, 0xdb, 0x96, - 0x4e, 0xcc, 0x0b, 0x9a, 0xfe, 0x6e, 0x6a, 0x5b, 0xe6, 0x0f, 0x1b, 0x64, 0x66, 0x33, 0xfe, 0x11, - 0x47, 0x2f, 0x76, 0xc6, 0x8f, 0xdd, 0x93, 0xb6, 0x32, 0xc1, 0x69, 0x48, 0x07, 0x29, 0xc9, 0x20, - 0x25, 0x15, 0x34, 0x24, 0xc2, 0x96, 0xa5, 0x11, 0x39, 0x32, 0x26, 0x07, 0x66, 0x11, 0xef, 0x0d, - 0xe1, 0xbb, 0x1d, 0x7f, 0x6a, 0xde, 0xdb, 0x99, 0xfd, 0x46, 0xc3, 0xd6, 0x6c, 0xdb, 0x8a, 0xc9, - 0xad, 0xd7, 0xac, 0x55, 0x98, 0x7b, 0x76, 0x66, 0xbe, 0xc9, 0xd0, 0xd3, 0xb7, 0xf5, 0xd4, 0xe9, - 0x9e, 0xb6, 0x41, 0xf7, 0xb4, 0xb6, 0x3b, 0x32, 0x63, 0x72, 0xeb, 0x1b, 0x88, 0x01, 0xe3, 0xc8, - 0xcd, 0xcd, 0x73, 0x68, 0x2e, 0xd6, 0xfe, 0x52, 0xd5, 0xe7, 0xcd, 0x00, 0x86, 0x0c, 0xda, 0x6c, - 0x1b, 0x3a, 0xe3, 0x5b, 0xa4, 0x36, 0xb6, 0x3c, 0xed, 0x6e, 0x61, 0xda, 0xda, 0x92, 0xb4, 0xbe, - 0xc5, 0x68, 0x7d, 0xcb, 0xd0, 0xfa, 0x16, 0xa0, 0x5b, 0x50, 0x61, 0xba, 0xed, 0x59, 0x6e, 0x8a, - 0xd3, 0xc6, 0x0d, 0x6b, 0xb6, 0x1c, 0xa6, 0xdf, 0x6f, 0xf8, 0xa1, 0xdb, 0xe9, 0x73, 0xf9, 0xe2, - 0x68, 0x8a, 0x86, 0xbf, 0xd8, 0x62, 0x8e, 0x05, 0x4d, 0xee, 0x84, 0xed, 0x9c, 0x08, 0xb2, 0x5c, - 0x07, 0xb2, 0x1c, 0x06, 0xb2, 0xdc, 0x04, 0xb7, 0x15, 0x8d, 0xad, 0x3e, 0x8d, 0xb1, 0x63, 0xb1, - 0x67, 0x8f, 0x73, 0xfe, 0xcb, 0x96, 0x2d, 0xda, 0x6d, 0xd7, 0x6b, 0x3d, 0xb5, 0x8c, 0x22, 0x75, - 0x8c, 0x36, 0x35, 0x8c, 0x2a, 0xf5, 0x8b, 0x3c, 0xb5, 0x8b, 0x3c, 0x75, 0x8b, 0x3c, 0x35, 0x6b, - 0xb3, 0x02, 0xe3, 0xb6, 0xdb, 0xd7, 0xe6, 0x66, 0xb1, 0x76, 0xeb, 0x96, 0xfc, 0x72, 0xfc, 0xc8, - 0x66, 0x70, 0xff, 0xad, 0xcb, 0xb4, 0x9c, 0x2c, 0x4b, 0x96, 0x95, 0x4b, 0x99, 0x7d, 0xcb, 0x93, - 0x65, 0x4b, 0x9d, 0x4d, 0xcb, 0x96, 0x35, 0xcb, 0x96, 0x1d, 0xcb, 0x96, 0x05, 0xbb, 0xd9, 0x5b, - 0xdf, 0x64, 0xd9, 0xab, 0xc9, 0xba, 0xeb, 0x0b, 0xff, 0x36, 0x14, 0xb7, 0x14, 0x8b, 0x6e, 0xc6, - 0x2c, 0xab, 0x04, 0x63, 0x9d, 0x4f, 0x03, 0xcc, 0x9f, 0x3e, 0xc5, 0xa9, 0x81, 0xfb, 0x33, 0x28, - 0xd8, 0xd4, 0x2d, 0x76, 0x8b, 0xfc, 0x72, 0x40, 0xe3, 0xee, 0x5f, 0x50, 0x99, 0x84, 0x5c, 0x02, - 0x94, 0x01, 0xca, 0x00, 0x65, 0x80, 0x32, 0x40, 0xd9, 0x61, 0x50, 0x8e, 0x97, 0x1d, 0x30, 0x39, - 0x35, 0x55, 0xf1, 0x79, 0x06, 0x32, 0x48, 0x8e, 0x87, 0xa3, 0x41, 0xe4, 0x02, 0x10, 0x19, 0x88, - 0x0c, 0x44, 0x06, 0x22, 0xaf, 0x3e, 0x6b, 0xb6, 0x23, 0x95, 0xc9, 0x40, 0x93, 0x43, 0x4a, 0x52, - 0xf5, 0x04, 0xdd, 0x59, 0xf4, 0xf9, 0xee, 0x56, 0xf1, 0xd8, 0x54, 0x27, 0xb3, 0x48, 0xab, 0x0e, - 0x90, 0x57, 0x19, 0xe0, 0xa8, 0x2a, 0xc0, 0x5b, 0x45, 0x80, 0xab, 0x6a, 0x00, 0x7b, 0x95, 0x00, - 0xf6, 0xaa, 0x00, 0xec, 0x55, 0x00, 0xb2, 0x75, 0x66, 0x94, 0xfc, 0x54, 0x3f, 0x83, 0x14, 0xe3, - 0x90, 0x64, 0x8b, 0xa4, 0xd9, 0x7f, 0xfc, 0x9d, 0x40, 0x52, 0x24, 0x74, 0x94, 0xbc, 0x9a, 0x0a, - 0xb9, 0x18, 0xa6, 0xb2, 0x72, 0x7a, 0x8e, 0x80, 0x59, 0x77, 0x83, 0xfb, 0xfb, 0xa1, 0x92, 0xfa, - 0x89, 0x8b, 0x5d, 0xbc, 0xbd, 0x00, 0x50, 0x0c, 0x50, 0x0c, 0x50, 0x0c, 0x50, 0x0c, 0x50, 0x0c, - 0x50, 0x0c, 0x4e, 0x8a, 0x31, 0xc3, 0x25, 0x29, 0xa2, 0xe4, 0xf5, 0x13, 0x58, 0xc6, 0x6a, 0x53, - 0x2e, 0x1e, 0xb5, 0xc7, 0xce, 0x34, 0x16, 0x5d, 0x04, 0xd8, 0x06, 0xd8, 0x06, 0xd8, 0x06, 0xd8, - 0x06, 0xd8, 0x06, 0xd8, 0x06, 0x27, 0xdb, 0x78, 0x8d, 0x4d, 0x63, 0xc6, 0x31, 0x87, 0x55, 0x60, - 0x1d, 0xab, 0x4d, 0xbd, 0x54, 0x0f, 0x7e, 0x5f, 0xf6, 0xbc, 0x50, 0xf8, 0x11, 0x61, 0x7d, 0xac, - 0xc4, 0xc2, 0xdf, 0x8c, 0x0f, 0xae, 0x01, 0xae, 0x01, 0xae, 0x01, 0xae, 0x01, 0xae, 0x41, 0xbe, - 0x6e, 0x65, 0x4f, 0x28, 0x2d, 0xf5, 0x13, 0x13, 0xdf, 0x20, 0xec, 0xef, 0x9e, 0x6b, 0x4c, 0x6f, - 0xf5, 0xb3, 0x1f, 0x31, 0xb8, 0x8c, 0xd9, 0x84, 0x37, 0xce, 0xbe, 0xd5, 0x4f, 0x1a, 0x5f, 0x3a, - 0xad, 0xe6, 0xd5, 0xe5, 0x71, 0xa7, 0x75, 0x5c, 0xbf, 0x68, 0x9e, 0x51, 0x7b, 0x8f, 0x49, 0x87, - 0xfd, 0x28, 0x77, 0xb4, 0x73, 0x4d, 0x5e, 0xa2, 0x98, 0xb9, 0x6f, 0xc4, 0x6c, 0xf6, 0x9b, 0xad, - 0xc6, 0x1f, 0x8d, 0xb3, 0xfa, 0x65, 0xb3, 0x95, 0xdb, 0x86, 0xde, 0x1d, 0x8e, 0xcc, 0xfa, 0xef, - 0x27, 0x57, 0x17, 0x97, 0xc7, 0xad, 0xce, 0x49, 0xb3, 0x79, 0x8e, 0x79, 0xa7, 0x9b, 0xf7, 0xfa, - 0x05, 0xa6, 0x9c, 0xda, 0xd4, 0x9b, 0x67, 0x5f, 0x8f, 0xbf, 0xe4, 0x32, 0x5e, 0x5f, 0xbf, 0x9d, - 0x35, 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0x8f, - 0x5e, 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, - 0x6e, 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, 0x1c, 0xf2, - 0x4a, 0xc9, 0x49, 0xa9, 0xeb, 0x9c, 0xf2, 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, 0xe5, 0x2d, - 0xb7, 0x7c, 0x75, 0x27, 0xc8, 0xf5, 0x34, 0x43, 0x83, 0xa1, 0x53, 0xa9, 0xf8, 0x9a, 0x3f, 0x32, - 0xb7, 0x5c, 0x9c, 0x44, 0x4d, 0x18, 0xc7, 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, 0x45, 0xde, - 0xc5, 0xd6, 0x9e, 0xdf, 0x8a, 0xb6, 0xa3, 0xa7, 0xfe, 0xe3, 0xd6, 0x9b, 0x5c, 0xe1, 0xb0, 0x54, - 0xaa, 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x0a, 0x65, 0xe4, 0xd4, - 0x39, 0x2b, 0xcc, 0x68, 0x13, 0xb1, 0x36, 0x34, 0xee, 0x2f, 0x9b, 0x21, 0x55, 0xa1, 0xb2, 0x14, - 0xa9, 0xa2, 0x29, 0x58, 0x06, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0xbb, 0x60, - 0xdd, 0x0e, 0xa5, 0xd2, 0x07, 0x45, 0x06, 0x49, 0x5b, 0x85, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0x84, - 0xa4, 0xcc, 0x80, 0xc9, 0x95, 0x8a, 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0x20, 0x24, 0x21, 0x24, - 0xb7, 0x59, 0x48, 0xd2, 0x0a, 0x10, 0xda, 0x12, 0x9b, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, - 0x91, 0x90, 0x91, 0x0b, 0xd6, 0xed, 0xa4, 0x5d, 0x21, 0xb9, 0x0d, 0x27, 0xa9, 0xcf, 0x87, 0xb4, - 0x47, 0xad, 0xb4, 0x08, 0x15, 0xb9, 0x9c, 0xcc, 0xfd, 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, 0x6a, 0xbe, - 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, - 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, - 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, - 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, - 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, 0xda, - 0xdb, 0xdb, 0xdf, 0x2d, 0x14, 0xaf, 0xf3, 0xde, 0x61, 0xfb, 0xb9, 0x70, 0x9d, 0xf7, 0x0a, 0xed, - 0xf1, 0x3b, 0xdb, 0xcf, 0xd7, 0x05, 0xaf, 0x36, 0x7b, 0x39, 0xfe, 0xff, 0xbd, 0xdf, 0x72, 0xa0, - 0xa5, 0x0e, 0xd2, 0xd2, 0xe9, 0xf9, 0x38, 0xab, 0xdd, 0xaa, 0x96, 0x7a, 0xc6, 0xd7, 0x83, 0x83, - 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x92, 0xaf, 0xdb, 0x9b, 0x20, 0xe8, 0x0b, - 0x5f, 0x71, 0x90, 0xd3, 0x42, 0x56, 0xa0, 0x7a, 0xa3, 0x8b, 0x28, 0x5b, 0xee, 0xeb, 0x9f, 0x1a, - 0x8f, 0xa6, 0xf3, 0x7b, 0x28, 0xa6, 0x6d, 0xfe, 0xe3, 0x7f, 0xe2, 0x1a, 0x0e, 0xe8, 0x30, 0x90, - 0x7e, 0x1c, 0x43, 0xf5, 0x5d, 0x05, 0xff, 0x53, 0x9e, 0xaf, 0x75, 0x28, 0x6f, 0xac, 0x34, 0x5c, - 0x5e, 0xea, 0x7b, 0x16, 0x8c, 0x8d, 0xde, 0x03, 0xae, 0x32, 0x3e, 0xf4, 0x1e, 0xc8, 0x26, 0xa3, - 0x43, 0xef, 0x81, 0x95, 0x66, 0x8d, 0xac, 0xf7, 0x40, 0xca, 0x49, 0xd2, 0x4b, 0xf5, 0xf4, 0x25, - 0xd0, 0x0a, 0xf6, 0x02, 0x04, 0x3b, 0x04, 0x3b, 0x04, 0x3b, 0x04, 0xbb, 0x3b, 0x82, 0x9d, 0xca, - 0xfd, 0x27, 0x03, 0x4e, 0x2a, 0xed, 0x6b, 0xea, 0x30, 0xc1, 0x4e, 0xaa, 0x13, 0xcd, 0xe4, 0x12, - 0x88, 0x4d, 0x97, 0x27, 0x9b, 0x89, 0x1c, 0x0e, 0x38, 0x61, 0xc1, 0x0d, 0x78, 0xe0, 0x86, 0x09, - 0x67, 0xe0, 0xc2, 0x19, 0xd8, 0x70, 0x06, 0x3e, 0x68, 0x61, 0x84, 0x18, 0x4e, 0x92, 0x59, 0xbe, - 0xe4, 0x70, 0xf0, 0x3b, 0xbc, 0x75, 0x61, 0x53, 0x6c, 0xbf, 0xca, 0x30, 0x76, 0xaa, 0x27, 0xe9, - 0x0b, 0xd8, 0x65, 0x34, 0x7f, 0x93, 0xd0, 0xb4, 0x89, 0xda, 0x98, 0x2e, 0xb5, 0x69, 0x8a, 0xb6, - 0xa6, 0xcc, 0xda, 0x15, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x85, 0x83, 0xb4, 0x50, 0x6b, - 0xe1, 0x79, 0x4d, 0xdc, 0x17, 0x8c, 0x47, 0xbb, 0xe6, 0xa4, 0xf1, 0xf8, 0x4a, 0x3e, 0x6e, 0xe5, - 0x79, 0x1f, 0x2e, 0xd0, 0x71, 0x01, 0x7c, 0xdc, 0x02, 0x21, 0x57, 0xc0, 0xc8, 0x39, 0x50, 0x72, + 0x5d, 0xfc, 0xd6, 0xca, 0x68, 0xef, 0x79, 0xd9, 0xef, 0xaa, 0xa3, 0xe7, 0xa3, 0xbd, 0x2d, 0x70, + 0x61, 0xd8, 0x61, 0x71, 0x31, 0xf6, 0xf1, 0xa8, 0x3d, 0xf6, 0x5d, 0x96, 0x45, 0x17, 0x81, 0x88, + 0x08, 0x22, 0x22, 0x88, 0x88, 0x20, 0x22, 0x82, 0x88, 0x08, 0xf9, 0xba, 0xc5, 0x4e, 0xcb, 0xab, + 0xbf, 0xaf, 0xb1, 0x49, 0x8a, 0x68, 0xee, 0xbf, 0xb1, 0xe3, 0xb2, 0xe2, 0xd4, 0x4b, 0xf5, 0xe0, + 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x05, 0x8a, 0x9e, 0x70, 0xbc, 0x19, 0x1f, 0x5c, 0x03, 0x5c, + 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x3e, 0xdc, 0xd7, 0x13, 0x4a, 0x4b, 0xfd, 0xc4, 0xc4, + 0x37, 0x08, 0xf3, 0x6b, 0x73, 0x8d, 0xe9, 0xad, 0x7e, 0xf6, 0x23, 0x06, 0x97, 0x31, 0x9b, 0xf0, + 0xc6, 0xd9, 0xb7, 0xfa, 0x49, 0xe3, 0x4b, 0xa7, 0xd5, 0xbc, 0xba, 0x3c, 0xee, 0xb4, 0x8e, 0xeb, + 0x17, 0xcd, 0x33, 0x6a, 0xef, 0x31, 0x49, 0x73, 0x8e, 0x58, 0xc2, 0x9c, 0x4c, 0x79, 0xe5, 0x6f, + 0x67, 0xbf, 0x7e, 0xd1, 0x39, 0x69, 0x36, 0xcf, 0x73, 0xdb, 0x90, 0xd1, 0xef, 0xc8, 0x94, 0xff, + 0xde, 0x3c, 0xfb, 0x7a, 0xfc, 0x05, 0x33, 0x4e, 0x37, 0xe3, 0xcd, 0x56, 0xe3, 0x8f, 0xc6, 0x59, + 0xfd, 0xb2, 0xd9, 0xc2, 0xac, 0x13, 0xda, 0xf9, 0xc9, 0xd5, 0xc5, 0xe5, 0x71, 0x8b, 0xcb, 0xbf, + 0x90, 0x8e, 0xd8, 0xce, 0x1a, 0xdf, 0xcb, 0x84, 0xba, 0xef, 0xfb, 0x91, 0xf6, 0xee, 0x83, 0x9e, + 0xbc, 0x95, 0xa2, 0x47, 0x2f, 0xee, 0xe7, 0x87, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, + 0x87, 0xb6, 0x27, 0x5f, 0xb7, 0x5a, 0xde, 0x0b, 0x2d, 0xbb, 0xdf, 0xa3, 0x4a, 0x89, 0x41, 0xdb, + 0x13, 0x26, 0xf0, 0xe4, 0xae, 0x54, 0x7c, 0x4a, 0x36, 0xa7, 0x7c, 0x15, 0x44, 0xa2, 0x1b, 0xa8, + 0x1e, 0x69, 0x36, 0x29, 0xea, 0x11, 0x64, 0x0f, 0xe3, 0x17, 0x47, 0x4d, 0x50, 0x8f, 0x80, 0xdc, + 0xe4, 0x50, 0x8f, 0x60, 0xa7, 0x70, 0x58, 0x2a, 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, + 0xd7, 0xca, 0xe5, 0x42, 0xa5, 0x80, 0xca, 0x04, 0x99, 0x1b, 0x0d, 0x79, 0x73, 0xbf, 0x6e, 0x86, + 0x54, 0xcd, 0xbf, 0x52, 0xa4, 0x8a, 0xa6, 0x09, 0x58, 0x32, 0xec, 0x17, 0x71, 0xeb, 0x0f, 0xfb, + 0x13, 0x2a, 0x9e, 0x87, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x46, 0x59, 0x3d, + 0xc8, 0x58, 0xc8, 0x58, 0xc8, 0x58, 0xc8, 0xd8, 0x8d, 0x32, 0x39, 0x94, 0xd5, 0x83, 0x78, 0x85, + 0x78, 0xdd, 0xc9, 0x4d, 0x93, 0x9f, 0x83, 0xa1, 0x16, 0xf4, 0x02, 0xf6, 0xf5, 0xe0, 0x10, 0x94, + 0x10, 0x94, 0x10, 0x94, 0x10, 0x94, 0x10, 0x94, 0xe4, 0xeb, 0x16, 0x6d, 0x54, 0x1c, 0x1f, 0xc1, + 0x76, 0x27, 0xd8, 0xba, 0x52, 0x81, 0xf6, 0xc7, 0x6c, 0x94, 0xa6, 0x21, 0x6c, 0xd4, 0xfd, 0x47, + 0xdc, 0xfb, 0xd3, 0xc6, 0x6d, 0xb9, 0xfd, 0x60, 0x20, 0x54, 0x77, 0x02, 0x94, 0x63, 0xff, 0xb1, + 0x3f, 0xfe, 0x5f, 0x28, 0x6f, 0xf6, 0xfd, 0x5b, 0xe9, 0x45, 0xfe, 0xad, 0x8c, 0x92, 0x57, 0xfb, + 0x93, 0x8a, 0x20, 0x51, 0xa8, 0x85, 0x37, 0x08, 0xfa, 0xb2, 0xfb, 0xb4, 0xaf, 0x84, 0xbc, 0xfb, + 0xe7, 0x26, 0x08, 0xa3, 0xe4, 0xd5, 0xbe, 0xdf, 0xfb, 0x77, 0xe2, 0x8a, 0xa4, 0xf2, 0x06, 0x41, + 0xa4, 0xf7, 0x27, 0xf4, 0x22, 0x8a, 0xff, 0x89, 0x0f, 0xe9, 0xa1, 0x55, 0x7a, 0xfa, 0x91, 0x0c, + 0xd5, 0x77, 0x15, 0xfc, 0x4f, 0x79, 0xbe, 0xd6, 0xa1, 0xbc, 0x19, 0xcf, 0x18, 0x5d, 0xdf, 0xf4, + 0x05, 0x63, 0xa3, 0x89, 0xba, 0xab, 0xac, 0x0f, 0x4d, 0xd4, 0xb3, 0xc9, 0xea, 0xd0, 0x44, 0x7d, + 0xa5, 0x59, 0x23, 0x6b, 0xa2, 0x9e, 0x72, 0x92, 0xf4, 0x72, 0x3d, 0x7d, 0x09, 0xb4, 0xa2, 0xbd, + 0x00, 0xd1, 0x0e, 0xd1, 0x0e, 0xd1, 0x0e, 0xd1, 0xee, 0x8e, 0x68, 0xa7, 0x72, 0xff, 0xc9, 0x80, + 0x93, 0x96, 0xe1, 0x9a, 0x3a, 0x54, 0x30, 0xe7, 0x31, 0x5e, 0x2e, 0x81, 0xd8, 0x74, 0x79, 0xb6, + 0x8e, 0xc8, 0xe1, 0x80, 0x13, 0x16, 0xdc, 0x80, 0x07, 0x6e, 0x98, 0x70, 0x06, 0x2e, 0x9c, 0x81, + 0x0d, 0x67, 0xe0, 0x83, 0x16, 0x46, 0x88, 0xe1, 0x24, 0x99, 0xe5, 0x4b, 0x0e, 0x07, 0xbf, 0xc3, + 0x5b, 0xf8, 0x2b, 0xc5, 0xf6, 0xab, 0x3c, 0x65, 0x77, 0x67, 0x85, 0xc0, 0xe2, 0x7a, 0x5e, 0x2f, + 0x60, 0x97, 0xd1, 0xcd, 0x72, 0x42, 0xd3, 0xce, 0xc5, 0xd1, 0x57, 0x36, 0xe2, 0x12, 0x0f, 0xcf, + 0x43, 0x5a, 0x0a, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0xd9, 0x25, 0x2d, 0xd4, 0x5a, + 0x78, 0x5e, 0x13, 0xf7, 0x05, 0x63, 0x1e, 0xed, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, 0x4c, + 0xae, 0xe4, 0x02, 0x1d, 0x17, 0xc0, 0xc7, 0x2d, 0x10, 0x72, 0x05, 0x8c, 0x9c, 0x03, 0x25, 0xe7, + 0xc0, 0xc9, 0x39, 0x90, 0xe2, 0x01, 0x2b, 0x26, 0xd0, 0xe2, 0x57, 0xdc, 0x29, 0xbf, 0x31, 0x94, + 0x4a, 0x17, 0x2a, 0x9c, 0x3e, 0x63, 0x8a, 0x22, 0x15, 0xc6, 0x4b, 0xe0, 0x39, 0xfe, 0xf3, 0xf6, + 0x0f, 0xaf, 0xcf, 0xdc, 0xe1, 0x3e, 0x1e, 0xe4, 0x18, 0xbd, 0x48, 0x5d, 0x0e, 0xf3, 0xf1, 0xa1, + 0xd4, 0xf5, 0x38, 0x70, 0xa4, 0xc3, 0x11, 0x77, 0x3a, 0x6f, 0xc2, 0xfe, 0x23, 0x4c, 0xf8, 0x27, + 0x26, 0x5c, 0x29, 0x97, 0x0f, 0xca, 0x30, 0x63, 0xb7, 0xb8, 0x08, 0xff, 0xe8, 0xed, 0x0f, 0xdb, + 0x71, 0xbf, 0x1c, 0xa7, 0x20, 0xf9, 0x76, 0xd2, 0x17, 0x87, 0x0d, 0x18, 0x76, 0xd4, 0x11, 0x37, + 0x40, 0xdc, 0x00, 0x71, 0x03, 0xc4, 0x0d, 0x10, 0x37, 0xc8, 0x48, 0xdc, 0xe0, 0xd0, 0x81, 0xb0, + 0x41, 0x19, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0xeb, 0x26, 0x5c, + 0x2c, 0x23, 0x68, 0x80, 0xa0, 0x01, 0x82, 0x06, 0xb4, 0x41, 0x83, 0x87, 0xe9, 0xea, 0x73, 0x21, + 0x6a, 0x10, 0x5f, 0x0b, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, + 0x1b, 0xbc, 0xd3, 0x6f, 0xdc, 0x48, 0xe5, 0x87, 0x4f, 0x0e, 0xc4, 0x0d, 0x6a, 0x8c, 0x97, 0x70, + 0x22, 0xd4, 0xdd, 0x24, 0xf1, 0x1f, 0x81, 0x03, 0x04, 0x0e, 0x7e, 0xaa, 0xba, 0x0a, 0xd0, 0x5c, + 0x08, 0x1c, 0x6c, 0xb6, 0x09, 0x23, 0xdf, 0x00, 0xa1, 0x03, 0x84, 0x0e, 0x48, 0xcd, 0x5c, 0x3c, + 0x6a, 0xa1, 0x7a, 0x84, 0x5d, 0x30, 0x97, 0x52, 0xbe, 0xe4, 0x4a, 0x10, 0x36, 0x40, 0xd8, 0x00, + 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0xe0, 0xbd, 0x61, 0x03, 0xf2, 0x9a, 0xb1, 0xcb, + 0x60, 0x84, 0xa8, 0x86, 0xec, 0x76, 0x92, 0x96, 0x60, 0x30, 0x66, 0xe6, 0x7e, 0x9f, 0x9f, 0xb4, + 0x24, 0x57, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, + 0x02, 0xd2, 0x92, 0x9e, 0xe3, 0x81, 0x1f, 0x6a, 0xe9, 0x02, 0x67, 0x99, 0x5d, 0x08, 0x28, 0x0b, + 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x4b, 0x7a, 0x8e, + 0x75, 0xe8, 0xab, 0x48, 0x6a, 0xf9, 0xe0, 0x40, 0x5e, 0xe9, 0xab, 0x6b, 0x01, 0x71, 0x01, 0x71, + 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x71, 0x9e, 0xb8, 0x64, 0xba, 0xbc, + 0x28, 0x71, 0x93, 0xc2, 0xd4, 0xf8, 0x7c, 0x4d, 0x0b, 0xd3, 0xfd, 0xf1, 0xd2, 0x3f, 0xa2, 0xe8, + 0x6c, 0xc8, 0x67, 0x6f, 0xd9, 0x6a, 0x1a, 0xf3, 0xa7, 0x78, 0xe2, 0xa8, 0xfa, 0x92, 0x3b, 0x91, + 0x91, 0xae, 0x6b, 0x4d, 0xdc, 0xb1, 0xe6, 0x54, 0xaa, 0xe3, 0xbe, 0x18, 0x53, 0x82, 0x28, 0x77, + 0xb4, 0xa3, 0x86, 0xfd, 0x3e, 0x61, 0xc5, 0xf9, 0x53, 0xff, 0x91, 0x6f, 0xf0, 0x66, 0xd8, 0x13, + 0xa1, 0xe8, 0x7d, 0x7e, 0x9a, 0x0e, 0x9d, 0x29, 0x23, 0x66, 0x72, 0xc7, 0x8e, 0xbb, 0xe1, 0x1c, + 0x69, 0x37, 0x85, 0x70, 0xd8, 0xd5, 0x6a, 0xca, 0xb7, 0x3e, 0xdf, 0x0d, 0x3a, 0x2d, 0x79, 0xd3, + 0xa9, 0xdf, 0xca, 0x0b, 0xff, 0x56, 0x76, 0x1a, 0x83, 0x87, 0xca, 0x45, 0xa8, 0xc5, 0xf9, 0xe4, + 0x66, 0x3b, 0x67, 0xd3, 0x5b, 0xec, 0xd4, 0x7b, 0xff, 0xb6, 0xe4, 0x4d, 0x43, 0x9d, 0x07, 0x91, + 0xee, 0xb4, 0xc6, 0x37, 0xd6, 0xb9, 0x8a, 0xef, 0xa2, 0x9e, 0xdc, 0x04, 0x9a, 0x32, 0xf3, 0x2f, + 0xb4, 0x2d, 0x6a, 0xca, 0xbc, 0xa0, 0xff, 0xef, 0xa6, 0x76, 0x68, 0xfe, 0xb0, 0x41, 0x96, 0x36, + 0xe3, 0x21, 0xe3, 0x47, 0xee, 0xc9, 0xde, 0x8e, 0x50, 0xbd, 0x41, 0x20, 0x95, 0xde, 0xe9, 0x06, + 0xfd, 0x20, 0xb4, 0xe4, 0xc9, 0x68, 0x48, 0x08, 0x29, 0xe9, 0x20, 0x25, 0x19, 0x34, 0xa4, 0xc2, + 0x96, 0xc5, 0x11, 0xf9, 0x34, 0x3e, 0x5f, 0x66, 0x11, 0xff, 0x8d, 0xe1, 0xbd, 0x1d, 0xe7, 0x6a, + 0xde, 0xf5, 0x99, 0xfd, 0x46, 0xc3, 0x26, 0x6d, 0xdb, 0x94, 0x39, 0x4c, 0xd8, 0xac, 0x61, 0x98, + 0x7b, 0x7c, 0x66, 0xbe, 0xc9, 0x90, 0x01, 0xd8, 0x7a, 0xf0, 0xa4, 0x0f, 0xdc, 0xa0, 0x9b, 0x32, + 0xe0, 0x96, 0xcc, 0xd8, 0xdd, 0xfa, 0x56, 0x62, 0xc0, 0x42, 0x72, 0xaf, 0x27, 0x3a, 0x34, 0x17, + 0x8a, 0x7f, 0x29, 0xfa, 0x33, 0xff, 0xfd, 0x86, 0x6c, 0xda, 0x6c, 0x93, 0x3a, 0xe3, 0x1b, 0xa8, + 0x36, 0x36, 0x44, 0xed, 0x6e, 0x70, 0xda, 0xda, 0xb0, 0xb4, 0xbe, 0x01, 0x69, 0x7d, 0x43, 0xd1, + 0xfa, 0x06, 0xa1, 0x5b, 0x68, 0x61, 0xba, 0x29, 0x5a, 0x6e, 0x0a, 0xd5, 0xc6, 0x0d, 0x6b, 0xb6, + 0x1c, 0xa6, 0xdf, 0x6f, 0xf8, 0xa1, 0xdb, 0xe9, 0x82, 0x69, 0x2d, 0x53, 0xc3, 0x66, 0x06, 0x06, + 0x4d, 0x66, 0x85, 0xed, 0x8c, 0x09, 0xb2, 0x4c, 0x08, 0xb2, 0x0c, 0x07, 0xb2, 0xcc, 0x05, 0xb7, + 0x75, 0x8d, 0xad, 0x2e, 0x8e, 0xb1, 0x63, 0xb1, 0x67, 0x8f, 0x73, 0xfe, 0xcb, 0x96, 0x2d, 0xda, + 0x6d, 0xe6, 0x6b, 0x3d, 0xf1, 0x8c, 0x22, 0xb1, 0x8c, 0x36, 0x71, 0x8c, 0x2a, 0x31, 0x8c, 0x3c, + 0xf1, 0x8b, 0x3c, 0xb1, 0x8b, 0x3c, 0x71, 0x6b, 0xb3, 0x62, 0xe5, 0xb6, 0x9b, 0xdb, 0xe6, 0xe2, + 0xa0, 0xbb, 0x75, 0x3b, 0x9e, 0xad, 0x4e, 0x9b, 0x31, 0xfe, 0xb7, 0xee, 0xd2, 0x72, 0x1a, 0x2d, + 0x59, 0xbe, 0x2e, 0x65, 0x5e, 0x2e, 0x4f, 0xfe, 0x2d, 0x75, 0x9e, 0x2d, 0x5b, 0x3e, 0x2d, 0x5b, + 0xde, 0x2c, 0x5b, 0x7e, 0xec, 0x66, 0x6f, 0x86, 0x93, 0xe5, 0xb5, 0x26, 0xeb, 0xae, 0x2f, 0xfc, + 0xdb, 0x50, 0xdc, 0x52, 0x2c, 0xba, 0x19, 0xab, 0xac, 0x12, 0x8c, 0x75, 0x3e, 0x8d, 0x2f, 0x7f, + 0xfa, 0x14, 0x67, 0x0c, 0xee, 0xc7, 0x40, 0xb0, 0xa9, 0xfb, 0xed, 0x16, 0x99, 0xe5, 0x6c, 0x3b, + 0x9c, 0x0e, 0x93, 0x93, 0x11, 0x01, 0xcb, 0x80, 0x65, 0xc0, 0x32, 0x60, 0x19, 0xb0, 0xbc, 0xb5, + 0xb0, 0x9c, 0x60, 0x01, 0x90, 0x39, 0x35, 0x59, 0xd3, 0x84, 0x35, 0x3a, 0x60, 0x9e, 0x0d, 0x08, + 0x5c, 0x06, 0x2e, 0x03, 0x97, 0x81, 0xcb, 0xc0, 0xe5, 0xad, 0xc5, 0xe5, 0x19, 0x14, 0x00, 0x96, + 0x53, 0x73, 0x15, 0x9f, 0x40, 0x24, 0x03, 0xe5, 0x78, 0x38, 0x1a, 0x48, 0x2e, 0x00, 0x92, 0x01, + 0xc9, 0x80, 0x64, 0x40, 0xf2, 0xea, 0xb3, 0x66, 0x7b, 0x03, 0x31, 0x19, 0x68, 0x72, 0xac, 0x58, + 0xaa, 0x9e, 0xa0, 0x2b, 0x20, 0x33, 0xdf, 0x92, 0x32, 0x1e, 0x9b, 0xea, 0x2c, 0x35, 0x69, 0xa9, + 0x20, 0xf2, 0xd2, 0x40, 0x1c, 0xa5, 0x80, 0x78, 0x4b, 0xff, 0x70, 0x95, 0xfa, 0x61, 0x2f, 0xed, + 0xc3, 0x5e, 0xca, 0x87, 0xbd, 0x74, 0x4f, 0xb6, 0xaa, 0x3c, 0x90, 0x97, 0xe2, 0x61, 0xd0, 0x62, + 0x1c, 0x9a, 0x6c, 0x91, 0x36, 0xfb, 0x8f, 0xbf, 0x13, 0x48, 0x8a, 0x84, 0x8e, 0x92, 0x57, 0x53, + 0x25, 0x17, 0xc3, 0x54, 0x56, 0x8e, 0xba, 0x13, 0x30, 0x6b, 0x9a, 0x0c, 0xa5, 0x94, 0x35, 0x53, + 0x64, 0x2a, 0x81, 0x4e, 0x80, 0x4e, 0x80, 0x4e, 0x80, 0x4e, 0x80, 0x4e, 0x2c, 0x58, 0xb7, 0x43, + 0xa9, 0xf4, 0x41, 0x91, 0x81, 0x4d, 0x50, 0x92, 0x89, 0x96, 0xaf, 0xee, 0x04, 0x79, 0x03, 0x68, + 0x86, 0x32, 0x76, 0x9c, 0x0d, 0x9e, 0xb9, 0x0b, 0xfb, 0xce, 0xba, 0xdf, 0x72, 0x8d, 0xef, 0x40, + 0xa7, 0x5b, 0x8e, 0xe2, 0xd6, 0x9c, 0x0d, 0x99, 0x5d, 0x31, 0xb9, 0x52, 0xb1, 0x56, 0xaa, 0x55, + 0xaa, 0xc5, 0x5a, 0x79, 0x8b, 0x6d, 0x2f, 0xa3, 0xd5, 0x29, 0xdb, 0x10, 0x91, 0xef, 0x10, 0x91, + 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x57, 0x88, 0xfa, 0xed, 0x05, 0x40, 0x58, 0x42, 0x58, 0x42, + 0x58, 0x42, 0x58, 0x42, 0x58, 0x92, 0xaf, 0x5b, 0xc4, 0xa9, 0x5f, 0xfd, 0x9d, 0xe1, 0x92, 0x14, + 0x51, 0xf2, 0xfa, 0x09, 0xa1, 0xea, 0xd5, 0xa6, 0x9c, 0xec, 0xec, 0x4e, 0xca, 0xa6, 0x89, 0xce, + 0xf0, 0x80, 0x57, 0x80, 0x57, 0x80, 0x57, 0x80, 0x57, 0x80, 0x57, 0x2c, 0x58, 0xb7, 0x72, 0xe0, + 0xf9, 0xbd, 0x5e, 0x28, 0xa2, 0x88, 0x83, 0x5a, 0xd4, 0x08, 0xc7, 0x9c, 0xce, 0x71, 0xe6, 0x83, + 0xd6, 0x2f, 0x4f, 0xf6, 0xa1, 0xc4, 0xf0, 0x6c, 0x53, 0xcf, 0xf8, 0x90, 0x61, 0xec, 0x73, 0x5f, + 0x6b, 0x11, 0x2a, 0xf2, 0xc7, 0x9d, 0x5c, 0xc0, 0xdf, 0xbb, 0xbb, 0xd7, 0x79, 0xaf, 0xd6, 0x7e, + 0xbe, 0x2e, 0x78, 0xb5, 0x76, 0xfc, 0xb2, 0x30, 0xf9, 0x27, 0x7e, 0x5d, 0xbc, 0xce, 0x7b, 0xa5, + 0xd9, 0xeb, 0xf2, 0x75, 0xde, 0x2b, 0xb7, 0xf7, 0xfe, 0xfa, 0xeb, 0xd3, 0xde, 0x8f, 0x83, 0xd1, + 0xfb, 0x3f, 0xf8, 0x1b, 0x7d, 0xc7, 0xb0, 0x76, 0x96, 0xdb, 0x27, 0xf1, 0x2e, 0xda, 0x0a, 0x16, + 0x2d, 0xef, 0xa2, 0xf5, 0xbd, 0xdb, 0xba, 0xf7, 0xb5, 0xfd, 0xa3, 0xf0, 0xb1, 0x34, 0x3a, 0xda, + 0xfb, 0x51, 0x1d, 0xbd, 0xfd, 0xe1, 0xf3, 0xa2, 0xb7, 0x15, 0x3e, 0x56, 0x47, 0x47, 0x4b, 0x7e, + 0x53, 0x19, 0x1d, 0xfd, 0xe2, 0x77, 0x94, 0x47, 0xbb, 0xa9, 0xb7, 0x8e, 0x7f, 0x5e, 0x5c, 0xf6, + 0x81, 0xd2, 0x92, 0x0f, 0x1c, 0x2c, 0xfb, 0xc0, 0xc1, 0x92, 0x0f, 0x2c, 0xbd, 0xa4, 0xe2, 0x92, + 0x0f, 0x94, 0x47, 0xcf, 0xa9, 0xf7, 0xef, 0x2e, 0x7e, 0x6b, 0x65, 0xb4, 0xf7, 0xbc, 0xec, 0x77, + 0xd5, 0xd1, 0xf3, 0xd1, 0xde, 0x16, 0xb8, 0x30, 0xec, 0xb0, 0xb8, 0x18, 0xfb, 0x78, 0xd4, 0x1e, + 0xfb, 0x2e, 0xcb, 0xa2, 0x8b, 0x40, 0x44, 0x04, 0x11, 0x11, 0x44, 0x44, 0x10, 0x11, 0x41, 0x44, + 0x84, 0x7c, 0xdd, 0x62, 0xa7, 0xe5, 0xd5, 0xdf, 0xd7, 0xd8, 0x24, 0x45, 0x34, 0xf7, 0xdf, 0xd8, + 0x71, 0x59, 0x71, 0xea, 0xa5, 0x7a, 0xf0, 0xfb, 0xb2, 0xe7, 0x85, 0xc2, 0x8f, 0x08, 0x5b, 0x42, + 0xbe, 0x88, 0xcc, 0xf9, 0xf1, 0xc1, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xc0, 0x35, 0xe8, + 0xc3, 0x7d, 0x3d, 0xa1, 0xb4, 0xd4, 0x4f, 0x4c, 0x7c, 0x83, 0x30, 0xbf, 0x36, 0xd7, 0x98, 0xde, + 0xea, 0x67, 0x3f, 0x62, 0x70, 0x19, 0xb3, 0x09, 0x6f, 0x9c, 0x7d, 0xab, 0x9f, 0x34, 0xbe, 0x74, + 0x5a, 0xcd, 0xab, 0xcb, 0xe3, 0x4e, 0xeb, 0xb8, 0x7e, 0xd1, 0x3c, 0xa3, 0xf6, 0x1e, 0x93, 0x34, + 0xe7, 0x88, 0x25, 0xcc, 0xc9, 0x94, 0x57, 0xfe, 0x76, 0xf6, 0xeb, 0x17, 0x9d, 0x93, 0x66, 0xf3, + 0x3c, 0xb7, 0x0d, 0x19, 0xfd, 0x8e, 0x4c, 0xf9, 0xef, 0xcd, 0xb3, 0xaf, 0xc7, 0x5f, 0x30, 0xe3, + 0x74, 0x33, 0xde, 0x6c, 0x35, 0xfe, 0x68, 0x9c, 0xd5, 0x2f, 0x9b, 0x2d, 0xcc, 0x3a, 0xa1, 0x9d, + 0x9f, 0x5c, 0x5d, 0x5c, 0x1e, 0xb7, 0xb8, 0xfc, 0x0b, 0xe9, 0x88, 0xed, 0xac, 0xf1, 0xbd, 0x4c, + 0xa8, 0xfb, 0xbe, 0x1f, 0x69, 0xef, 0x3e, 0xe8, 0xc9, 0x5b, 0x29, 0x7a, 0xf4, 0xe2, 0x7e, 0x7e, + 0x78, 0x68, 0x7b, 0x68, 0x7b, 0x68, 0x7b, 0x68, 0x7b, 0x68, 0x7b, 0xf2, 0x75, 0xab, 0xe5, 0xbd, + 0xd0, 0xb2, 0xfb, 0x3d, 0xaa, 0x94, 0x18, 0xb4, 0x3d, 0x61, 0x02, 0x4f, 0xee, 0x4a, 0xc5, 0xa7, + 0x64, 0x73, 0xca, 0x57, 0x41, 0x24, 0xba, 0x81, 0xea, 0x91, 0x66, 0x93, 0xa2, 0x1e, 0x41, 0xf6, + 0x30, 0x7e, 0x71, 0xd4, 0x04, 0xf5, 0x08, 0xc8, 0x4d, 0x0e, 0xf5, 0x08, 0x76, 0x0a, 0x87, 0xa5, + 0x52, 0xa5, 0x5a, 0x2a, 0xe5, 0xab, 0x07, 0xd5, 0x7c, 0xad, 0x5c, 0x2e, 0x54, 0x0a, 0xa8, 0x4c, + 0x90, 0xb9, 0xd1, 0x90, 0x37, 0xf7, 0xeb, 0x66, 0x48, 0xd5, 0x55, 0x24, 0x45, 0xaa, 0x68, 0xba, + 0x8b, 0x24, 0xc3, 0x7e, 0x11, 0xb7, 0xfe, 0xb0, 0x3f, 0xa1, 0xe2, 0x79, 0x68, 0x69, 0x68, 0x69, + 0x68, 0x69, 0x68, 0x69, 0x68, 0x69, 0x94, 0xd5, 0x83, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8c, + 0xdd, 0x28, 0x93, 0x43, 0x59, 0x3d, 0x88, 0x57, 0x88, 0xd7, 0x9d, 0xdc, 0x34, 0xf9, 0x39, 0x18, + 0x6a, 0x41, 0x2f, 0x60, 0x5f, 0x0f, 0x0e, 0x41, 0x09, 0x41, 0x09, 0x41, 0x09, 0x41, 0x09, 0x41, + 0x49, 0xbe, 0x6e, 0x6f, 0x82, 0xa0, 0x2f, 0x7c, 0xc5, 0x91, 0x74, 0x5d, 0xc8, 0x0a, 0x54, 0x6f, + 0x74, 0x8b, 0xb9, 0xba, 0x52, 0x81, 0xf6, 0xc7, 0x6c, 0x94, 0xa6, 0xd3, 0x5c, 0xd4, 0xfd, 0x47, + 0xdc, 0xfb, 0x83, 0xe9, 0xa1, 0xbb, 0xfd, 0x60, 0x20, 0x54, 0x77, 0x02, 0x94, 0x63, 0xff, 0xb1, + 0x3f, 0xfe, 0x5f, 0x28, 0x6f, 0xf6, 0xfd, 0x5b, 0xe9, 0x45, 0xfe, 0xad, 0x8c, 0x92, 0x57, 0xfb, + 0x93, 0x8a, 0x20, 0x51, 0xa8, 0x85, 0x37, 0x08, 0xfa, 0xb2, 0xfb, 0xb4, 0xaf, 0x84, 0xbc, 0xfb, + 0xe7, 0x26, 0x08, 0xa3, 0xe4, 0xd5, 0xbe, 0xdf, 0xfb, 0x77, 0xe2, 0x8a, 0xa4, 0xf2, 0x06, 0xa1, + 0xd8, 0x9f, 0xb0, 0x8b, 0x28, 0xfe, 0x27, 0x3e, 0xa3, 0x87, 0x16, 0xac, 0xe9, 0x27, 0x32, 0x54, + 0xdf, 0x55, 0xf0, 0x3f, 0xe5, 0xf9, 0x5a, 0x87, 0xf2, 0x66, 0x3c, 0x63, 0x74, 0xfd, 0x58, 0x17, + 0x8c, 0x8d, 0xe6, 0xac, 0xae, 0x92, 0x3e, 0x34, 0x67, 0xcd, 0x26, 0xa9, 0x43, 0x73, 0xd6, 0x95, + 0x66, 0x8d, 0xac, 0x39, 0x6b, 0xca, 0x49, 0xd2, 0xab, 0xf5, 0xf4, 0x25, 0xd0, 0x6a, 0xf6, 0x02, + 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0xbb, 0x3b, 0x9a, 0x9d, 0xca, 0xfd, 0x27, 0x03, 0x4e, + 0x5a, 0x91, 0x6a, 0xea, 0x48, 0xc1, 0x4e, 0xaa, 0x55, 0xf7, 0xe4, 0x12, 0x88, 0x4d, 0x97, 0x67, + 0xe7, 0x88, 0x1c, 0x0e, 0x38, 0x61, 0xc1, 0x0d, 0x78, 0xe0, 0x86, 0x09, 0x67, 0xe0, 0xc2, 0x19, + 0xd8, 0x70, 0x06, 0x3e, 0x68, 0x61, 0x84, 0x18, 0x4e, 0x92, 0x59, 0xbe, 0xe4, 0x70, 0xf0, 0x3b, + 0xbc, 0x75, 0xbf, 0x52, 0x6c, 0xbf, 0xca, 0x53, 0x75, 0x77, 0x56, 0x07, 0x2c, 0x2e, 0xe7, 0xf5, + 0x02, 0x76, 0x19, 0xdd, 0x2b, 0x27, 0x34, 0xed, 0x5c, 0x1c, 0x7d, 0x65, 0x23, 0x2e, 0xf1, 0xf0, + 0x3c, 0xa4, 0xa5, 0x00, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x92, 0x5d, 0xd2, 0x42, 0xad, + 0x85, 0xe7, 0x35, 0x71, 0x5f, 0x30, 0xa6, 0xd1, 0xce, 0x49, 0xe3, 0xf1, 0x95, 0x7c, 0xdc, 0xca, + 0xdc, 0x4a, 0x2e, 0xd0, 0x71, 0x01, 0x7c, 0xdc, 0x02, 0x21, 0x57, 0xc0, 0xc8, 0x39, 0x50, 0x72, 0x0e, 0x9c, 0x9c, 0x03, 0x29, 0x1e, 0xb0, 0x62, 0x02, 0x2d, 0x7e, 0xc5, 0x9d, 0xf2, 0x1b, 0x43, - 0xa9, 0x74, 0xa1, 0xc2, 0xe9, 0x33, 0xa6, 0x28, 0x52, 0x61, 0xbc, 0x04, 0x9e, 0x13, 0xe9, 0x6f, - 0xff, 0xf0, 0xfa, 0xcc, 0x1d, 0xee, 0x13, 0xeb, 0x8e, 0xd1, 0x8b, 0xd4, 0xe5, 0x30, 0x9f, 0x68, - 0x4f, 0x5d, 0x8f, 0x03, 0xa7, 0x8c, 0x1d, 0x71, 0xa7, 0xf3, 0x26, 0xec, 0x3f, 0xc2, 0x84, 0x7f, + 0xa9, 0x74, 0xa1, 0xc2, 0xe9, 0x33, 0xa6, 0x28, 0x52, 0x61, 0xbc, 0x04, 0x9e, 0xd3, 0x3f, 0x6f, + 0xff, 0xf0, 0xfa, 0xcc, 0x1d, 0xee, 0xd3, 0x41, 0x8e, 0xd1, 0x8b, 0xd4, 0xe5, 0x30, 0x9f, 0x1e, + 0x4a, 0x5d, 0x8f, 0x03, 0x27, 0x3a, 0x1c, 0x71, 0xa7, 0xf3, 0x26, 0xec, 0x3f, 0xc2, 0x84, 0x7f, 0x62, 0xc2, 0x95, 0x72, 0xf9, 0xa0, 0x0c, 0x33, 0x76, 0x8b, 0x8b, 0xf0, 0x8f, 0xde, 0xfe, 0xb0, - 0x1d, 0xf7, 0xcb, 0x51, 0x98, 0x83, 0x6f, 0x27, 0x7d, 0x71, 0xd8, 0x80, 0x61, 0x47, 0x1d, 0x71, + 0x1d, 0xf7, 0xcb, 0x71, 0x08, 0x92, 0x6f, 0x27, 0x7d, 0x71, 0xd8, 0x80, 0x61, 0x47, 0x1d, 0x71, 0x03, 0xc4, 0x0d, 0x10, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x83, 0x8c, 0xc4, 0x0d, 0x0e, 0x1d, 0x08, 0x1b, 0x94, 0x11, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0xb0, 0x6e, 0xc2, 0xc5, 0x32, 0x82, 0x06, 0x08, 0x1a, 0x20, 0x68, 0x40, 0x1b, 0x34, 0x78, 0x98, 0xae, 0x3e, 0x17, @@ -174819,9871 +174000,10713 @@ var ( 0xb0, 0xc1, 0x3b, 0xfd, 0xc6, 0x8d, 0x54, 0x7e, 0xf8, 0xe4, 0x40, 0xdc, 0xa0, 0xc6, 0x78, 0x09, 0x27, 0x42, 0xdd, 0x4d, 0x12, 0xff, 0x11, 0x38, 0x40, 0xe0, 0xe0, 0xa7, 0xaa, 0xab, 0x00, 0xcd, 0x85, 0xc0, 0xc1, 0x66, 0x9b, 0x30, 0xf2, 0x0d, 0x10, 0x3a, 0x40, 0xe8, 0x80, 0xd4, 0xcc, 0xc5, - 0xa3, 0x16, 0xaa, 0x47, 0xd8, 0x24, 0x7d, 0x29, 0xe5, 0x4b, 0xae, 0x04, 0x61, 0x03, 0x84, 0x0d, - 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0xde, 0x1b, 0x36, 0x20, 0xaf, 0x17, 0xbb, - 0x0c, 0x46, 0x88, 0xea, 0xc7, 0x6e, 0x27, 0x69, 0x09, 0x06, 0x63, 0x66, 0xee, 0xf7, 0xf9, 0x49, + 0xa3, 0x16, 0xaa, 0x47, 0xd8, 0x04, 0x73, 0x29, 0xe5, 0x4b, 0xae, 0x04, 0x61, 0x03, 0x84, 0x0d, + 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0xde, 0x1b, 0x36, 0x20, 0x2f, 0x19, 0xbb, + 0x0c, 0x46, 0x88, 0x4a, 0xc8, 0x6e, 0x27, 0x69, 0x09, 0x06, 0x63, 0x66, 0xee, 0xf7, 0xf9, 0x49, 0x4b, 0x72, 0x25, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0xe9, 0x39, 0x1e, 0xf8, 0xa1, 0x96, 0x2e, 0x70, 0x96, 0xd9, 0x85, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0xa4, 0xe7, 0x58, 0x87, 0xbe, 0x8a, 0xa4, 0x96, 0x0f, 0x0e, 0xe4, 0x95, 0xbe, 0xba, 0x16, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0xe7, 0x89, 0x4b, 0xa6, 0xcb, - 0x8b, 0x12, 0x37, 0x28, 0x4c, 0x8d, 0xcf, 0xd3, 0xb0, 0x30, 0xdd, 0x1b, 0x2f, 0xfd, 0x23, 0x8a, - 0xae, 0x86, 0x7c, 0xb6, 0x96, 0xad, 0x86, 0x31, 0x7f, 0x8a, 0x27, 0x8e, 0x8a, 0x2f, 0xb9, 0x13, - 0x19, 0xe9, 0xba, 0xd6, 0xc4, 0xdd, 0x6a, 0x4e, 0xa5, 0x3a, 0xee, 0x8b, 0x31, 0x1d, 0x88, 0x72, - 0x47, 0x3b, 0x6a, 0xd8, 0xef, 0x13, 0x56, 0x9b, 0x3f, 0xf5, 0x1f, 0xf9, 0x06, 0x6f, 0x86, 0x3d, - 0x11, 0x8a, 0xde, 0xe7, 0xa7, 0xe9, 0xd0, 0x99, 0x32, 0x62, 0x26, 0x57, 0xec, 0xb0, 0x0b, 0xce, - 0x91, 0x76, 0x51, 0x08, 0x87, 0x5d, 0xad, 0xa6, 0x3c, 0xeb, 0xf3, 0xdd, 0xa0, 0xd3, 0x92, 0x37, - 0x9d, 0xfa, 0xad, 0xbc, 0xf0, 0x6f, 0x65, 0xa7, 0x31, 0x78, 0xa8, 0x5c, 0xc5, 0x77, 0xda, 0x39, - 0x9b, 0xde, 0x5f, 0xa7, 0xde, 0xfb, 0xb7, 0x25, 0x6f, 0x9a, 0x43, 0x7d, 0x1e, 0x8a, 0x4e, 0x6b, - 0x7c, 0x57, 0x9d, 0xab, 0xf8, 0x16, 0xea, 0xc9, 0x1d, 0xa0, 0x0b, 0x33, 0xff, 0x0a, 0xdb, 0x92, - 0x2e, 0xcc, 0x0b, 0x1a, 0xfe, 0x6e, 0x6a, 0x4b, 0xe6, 0x0f, 0x1b, 0x64, 0x65, 0x33, 0xf2, 0x11, - 0x47, 0x2e, 0x76, 0xc6, 0x4f, 0xdd, 0x93, 0xb6, 0xb2, 0xc0, 0x69, 0x18, 0x07, 0x29, 0xc3, 0x20, - 0x65, 0x14, 0x34, 0x0c, 0xc2, 0x96, 0xa5, 0x11, 0xf9, 0x31, 0x1e, 0xff, 0x65, 0x11, 0xec, 0xcd, - 0x80, 0xbb, 0x1d, 0x6f, 0x6a, 0xde, 0xd7, 0x99, 0xfd, 0x46, 0xc3, 0xb6, 0x6c, 0xdb, 0x86, 0xa9, - 0x6d, 0xd7, 0xac, 0x51, 0x98, 0x7b, 0x74, 0x66, 0xbe, 0xc9, 0xd0, 0xc3, 0xb7, 0xf5, 0xd0, 0xc9, - 0x1e, 0xb6, 0x41, 0xdf, 0xb4, 0xae, 0x2f, 0x32, 0x63, 0x70, 0xeb, 0x9b, 0x87, 0x01, 0xd3, 0xc8, - 0xcd, 0xa6, 0xdb, 0xf3, 0x7b, 0xbd, 0x50, 0x44, 0x91, 0x31, 0xe3, 0x48, 0xe2, 0xe5, 0xa9, 0x11, - 0x0c, 0x19, 0xb4, 0xd9, 0xbd, 0x54, 0xe3, 0x7b, 0xa3, 0x36, 0xf6, 0x3a, 0xed, 0xee, 0x5d, 0xda, - 0xda, 0x8b, 0xb4, 0xbe, 0xb7, 0x68, 0x7d, 0xaf, 0xd0, 0xfa, 0xde, 0x9f, 0x5b, 0x50, 0x61, 0x7c, - 0xaf, 0xcd, 0x62, 0xf3, 0x55, 0x1b, 0x4d, 0x55, 0xd3, 0xcd, 0x52, 0x53, 0x3e, 0x2c, 0x43, 0x08, - 0x60, 0xb6, 0x77, 0xa9, 0x95, 0x9e, 0xa4, 0x86, 0x7b, 0x8d, 0xc2, 0xd7, 0xc3, 0xd7, 0xc3, 0xd7, - 0xc7, 0x77, 0x6b, 0xba, 0xb7, 0xa5, 0x3d, 0x42, 0x49, 0x45, 0x2c, 0x2d, 0x11, 0x4c, 0x6b, 0xce, - 0xc7, 0xa6, 0x13, 0xa2, 0x71, 0x46, 0xb6, 0x9d, 0x12, 0x99, 0x73, 0x22, 0x73, 0x52, 0x64, 0xce, - 0x6a, 0x33, 0x02, 0x5a, 0xd6, 0x92, 0xc3, 0x12, 0xbb, 0x97, 0x03, 0x4b, 0x5e, 0x66, 0x8e, 0xde, - 0x58, 0xa8, 0x14, 0x38, 0x9b, 0x1b, 0x3b, 0xf5, 0xff, 0x2c, 0x06, 0xc0, 0x5f, 0x66, 0xfe, 0xa1, - 0x64, 0x71, 0xee, 0x53, 0xcf, 0xe0, 0xd0, 0xe2, 0x18, 0xe7, 0xbe, 0xd6, 0x22, 0x54, 0xd6, 0xcb, - 0x31, 0xe6, 0xfe, 0xde, 0xdd, 0xbd, 0xce, 0x7b, 0xb5, 0xf6, 0xf3, 0x75, 0xc1, 0xab, 0xb5, 0xe3, - 0x97, 0x85, 0xc9, 0x3f, 0xf1, 0xeb, 0xe2, 0x75, 0xde, 0x2b, 0xcd, 0x5e, 0x97, 0xaf, 0xf3, 0x5e, - 0xb9, 0xbd, 0xf7, 0xd7, 0x5f, 0x9f, 0xf6, 0x7e, 0x1c, 0x8c, 0xde, 0xff, 0xc1, 0xdf, 0xec, 0xed, - 0x71, 0xb6, 0x37, 0x69, 0x6f, 0x88, 0x66, 0x31, 0x54, 0xb0, 0x18, 0x56, 0x5b, 0x0c, 0xbe, 0x77, + 0x8b, 0x12, 0xf7, 0x28, 0x4c, 0x8d, 0xcf, 0xd6, 0xb3, 0x30, 0xdd, 0x1e, 0x2f, 0xfd, 0x23, 0x8a, + 0xc6, 0x86, 0x7c, 0xe6, 0x96, 0xad, 0x9e, 0x31, 0x7f, 0x8a, 0x27, 0x8e, 0xa2, 0x2f, 0xb9, 0x13, + 0x19, 0xe9, 0xba, 0xd6, 0xc4, 0x0d, 0x6b, 0x4e, 0xa5, 0x3a, 0xee, 0x8b, 0x31, 0x23, 0x88, 0x72, + 0x47, 0x3b, 0x6a, 0xd8, 0xef, 0x13, 0x16, 0x9c, 0x3f, 0xf5, 0x1f, 0xf9, 0x06, 0x6f, 0x86, 0x3d, + 0x11, 0x8a, 0xde, 0xe7, 0xa7, 0xe9, 0xd0, 0x99, 0x32, 0x62, 0x26, 0x6f, 0xec, 0xb6, 0x17, 0xce, + 0x91, 0xf6, 0x52, 0x08, 0x87, 0x5d, 0xad, 0xa6, 0x6c, 0xeb, 0xf3, 0xdd, 0xa0, 0xd3, 0x92, 0x37, + 0x9d, 0xfa, 0xad, 0xbc, 0xf0, 0x6f, 0x65, 0xa7, 0x31, 0x78, 0xa8, 0x5c, 0x84, 0x5a, 0x9c, 0x4f, + 0xee, 0xb5, 0x73, 0x36, 0xbd, 0xc3, 0x4e, 0xbd, 0xf7, 0x6f, 0x4b, 0xde, 0x34, 0xd4, 0x79, 0x28, + 0x3a, 0xad, 0xf1, 0x7d, 0x75, 0xae, 0xe2, 0x9b, 0xa8, 0x27, 0xf7, 0x80, 0x86, 0xcc, 0xfc, 0xcb, + 0x6c, 0x7b, 0x1a, 0x32, 0x2f, 0xe8, 0xfd, 0xbb, 0xa9, 0xdd, 0x99, 0x3f, 0x6c, 0x90, 0xa1, 0xcd, + 0x48, 0xc8, 0xf8, 0x89, 0x7b, 0xb2, 0xb7, 0x23, 0x54, 0x6f, 0x10, 0x48, 0xa5, 0x77, 0xba, 0x41, + 0x3f, 0x08, 0x2d, 0xf9, 0x31, 0x1a, 0x06, 0x42, 0xca, 0x38, 0x48, 0x19, 0x06, 0x0d, 0xa3, 0xb0, + 0x65, 0x71, 0x44, 0x2e, 0x8d, 0xcd, 0x95, 0x59, 0x04, 0x7f, 0x53, 0x60, 0x6f, 0xc7, 0xb5, 0x9a, + 0x77, 0x7c, 0x66, 0xbf, 0xd1, 0xb0, 0x41, 0xdb, 0x36, 0x64, 0x06, 0x03, 0x36, 0x6b, 0x17, 0xe6, + 0x9e, 0x9e, 0x99, 0x6f, 0x32, 0xf4, 0xfc, 0x6d, 0x3d, 0x77, 0xca, 0xe7, 0x6d, 0xd0, 0x47, 0xad, + 0xef, 0x93, 0xcc, 0x58, 0xdd, 0xfa, 0x36, 0x62, 0xc0, 0x3e, 0x72, 0xb3, 0x69, 0x0e, 0x86, 0xda, + 0x1b, 0x04, 0x91, 0x36, 0x66, 0x21, 0x2f, 0xd5, 0x7e, 0xde, 0x8e, 0x60, 0xc8, 0xaa, 0xcd, 0xf6, + 0xa7, 0x33, 0xbe, 0x77, 0x6a, 0x63, 0x2f, 0xd4, 0xee, 0xde, 0xa6, 0xad, 0xbd, 0x4a, 0xeb, 0x7b, + 0x8f, 0xd6, 0xf7, 0x12, 0xad, 0xef, 0x0d, 0xba, 0x85, 0x17, 0xa6, 0xfb, 0xa1, 0xe5, 0xa6, 0x60, + 0x6d, 0xdc, 0xb0, 0x66, 0xcb, 0x61, 0xfa, 0xfd, 0x86, 0x1f, 0xba, 0x9d, 0x06, 0x98, 0xd6, 0x92, + 0x34, 0x6c, 0x26, 0x5f, 0xd0, 0x24, 0x55, 0xd8, 0x4e, 0x96, 0x20, 0x4b, 0x82, 0x20, 0x4b, 0x6e, + 0x20, 0x4b, 0x5a, 0x70, 0x5b, 0xd8, 0xd8, 0x6a, 0xe0, 0x18, 0x3b, 0x16, 0x7b, 0xf6, 0x38, 0xe7, + 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0x3e, 0xbe, 0xd6, 0x73, 0xce, 0x28, 0x72, 0xca, 0x68, 0x73, 0xc6, + 0xa8, 0x72, 0xc2, 0xc8, 0x73, 0xbe, 0xc8, 0x73, 0xba, 0xc8, 0x73, 0xb6, 0x36, 0x2b, 0x54, 0x6e, + 0xbb, 0xaf, 0x6d, 0x2e, 0x8e, 0xb9, 0x5b, 0xb7, 0xe3, 0xd9, 0xea, 0xb4, 0x19, 0xe2, 0x7f, 0xeb, + 0x2e, 0x2d, 0x67, 0xd0, 0x92, 0xa5, 0xea, 0x52, 0xa6, 0xe4, 0xf2, 0xa4, 0xde, 0x52, 0xa7, 0xd8, + 0xb2, 0xa5, 0xd2, 0xb2, 0xa5, 0xcc, 0xb2, 0xa5, 0xc6, 0x6e, 0xf6, 0x56, 0x38, 0x59, 0x4a, 0x6b, + 0xb2, 0xee, 0xfa, 0xc2, 0xbf, 0x0d, 0xc5, 0x2d, 0xc5, 0xa2, 0x9b, 0xb1, 0xca, 0x2a, 0xc1, 0x58, + 0xe7, 0xd3, 0x08, 0xf3, 0xa7, 0x4f, 0x71, 0xb6, 0xe0, 0x7e, 0x0c, 0x04, 0x9b, 0xba, 0xdd, 0x6e, + 0x91, 0x59, 0xce, 0x76, 0xc3, 0xe9, 0x30, 0x39, 0x19, 0x11, 0xb0, 0x0c, 0x58, 0x06, 0x2c, 0x03, + 0x96, 0x01, 0xcb, 0x5b, 0x0b, 0xcb, 0x09, 0x16, 0x00, 0x99, 0x53, 0x93, 0x35, 0xcd, 0x57, 0xa3, + 0x03, 0xe6, 0xd9, 0x80, 0xc0, 0x65, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0x0c, 0x5c, 0xde, 0x5a, 0x5c, + 0x9e, 0x41, 0x01, 0x60, 0x39, 0x35, 0x57, 0xf1, 0xe9, 0x43, 0x32, 0x50, 0x8e, 0x87, 0xa3, 0x81, + 0xe4, 0x02, 0x20, 0x19, 0x90, 0x0c, 0x48, 0x06, 0x24, 0xaf, 0x3e, 0x6b, 0xb6, 0x37, 0x10, 0x93, + 0x81, 0x26, 0x47, 0x8a, 0xa5, 0xea, 0x09, 0xba, 0xda, 0x31, 0xf3, 0xdd, 0x28, 0xe3, 0xb1, 0xa9, + 0xce, 0x51, 0x93, 0x56, 0x09, 0x22, 0xaf, 0x0a, 0xc4, 0x51, 0x05, 0x88, 0xb7, 0xea, 0x0f, 0x57, + 0x95, 0x1f, 0xf6, 0xaa, 0x3e, 0xec, 0x55, 0x7c, 0xd8, 0xab, 0xf6, 0x64, 0xab, 0xc2, 0x03, 0x79, + 0x15, 0x1e, 0x06, 0x2d, 0xc6, 0xa1, 0xc9, 0x16, 0x69, 0xb3, 0xff, 0xf8, 0x3b, 0x81, 0xa4, 0x48, + 0xe8, 0x28, 0x79, 0x35, 0x55, 0x72, 0x31, 0x4c, 0x65, 0xe5, 0xa0, 0x3b, 0x01, 0xb3, 0xa6, 0xc9, + 0x50, 0x4a, 0x59, 0x33, 0x45, 0xa6, 0x12, 0xe8, 0x04, 0xe8, 0x04, 0xe8, 0x04, 0xe8, 0x04, 0xe8, + 0xc4, 0x82, 0x75, 0x3b, 0x94, 0x4a, 0x1f, 0x14, 0x19, 0xd8, 0x04, 0x25, 0x99, 0x68, 0xf9, 0xea, + 0x4e, 0x90, 0xf7, 0x7e, 0x66, 0xa8, 0x60, 0xc7, 0xd9, 0xdb, 0x99, 0xbb, 0xa6, 0xef, 0xac, 0xf1, + 0x2d, 0xd7, 0xf8, 0x0e, 0x34, 0xb9, 0xe5, 0xa8, 0x6b, 0xcd, 0xd9, 0x8b, 0xd9, 0x15, 0x93, 0x2b, + 0x15, 0x6b, 0xa5, 0x5a, 0xa5, 0x5a, 0xac, 0x95, 0xb7, 0xd8, 0xf6, 0x32, 0x5a, 0x99, 0xb2, 0x0d, + 0x11, 0xf9, 0x0e, 0x11, 0x79, 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x71, 0x85, 0xa8, 0xdf, 0x5e, 0x00, + 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0xf9, 0xba, 0x45, 0x9c, 0xfa, 0xd5, + 0xdf, 0x19, 0x2e, 0x49, 0x11, 0x25, 0xaf, 0x9f, 0x10, 0xaa, 0x5e, 0x6d, 0xca, 0xc9, 0xce, 0xee, + 0xa4, 0x6c, 0x9a, 0xe8, 0x0c, 0x0f, 0x78, 0x05, 0x78, 0x05, 0x78, 0x05, 0x78, 0x05, 0x78, 0xc5, + 0x82, 0x75, 0x2b, 0x07, 0x9e, 0xdf, 0xeb, 0x85, 0x22, 0x8a, 0x38, 0xa8, 0x45, 0x8d, 0x70, 0xcc, + 0xe9, 0x1c, 0x67, 0x3e, 0x68, 0xfd, 0xf2, 0x64, 0x1f, 0x4a, 0x0c, 0xcf, 0x36, 0xf5, 0x8c, 0x0f, + 0x19, 0xc6, 0x3e, 0xf7, 0xb5, 0x16, 0xa1, 0x22, 0x7f, 0xdc, 0xc9, 0x05, 0xfc, 0xbd, 0xbb, 0x7b, + 0x9d, 0xf7, 0x6a, 0xed, 0xe7, 0xeb, 0x82, 0x57, 0x6b, 0xc7, 0x2f, 0x0b, 0x93, 0x7f, 0xe2, 0xd7, + 0xc5, 0xeb, 0xbc, 0x57, 0x9a, 0xbd, 0x2e, 0x5f, 0xe7, 0xbd, 0x72, 0x7b, 0xef, 0xaf, 0xbf, 0x3e, + 0xed, 0xfd, 0x38, 0x18, 0xbd, 0xff, 0x83, 0xbf, 0xd1, 0x37, 0x0b, 0x6b, 0x67, 0xb9, 0x73, 0x12, + 0xef, 0xa2, 0xad, 0x60, 0xd1, 0xf2, 0x2e, 0x5a, 0xdf, 0xbb, 0xad, 0x7b, 0x5f, 0xdb, 0x3f, 0x0a, + 0x1f, 0x4b, 0xa3, 0xa3, 0xbd, 0x1f, 0xd5, 0xd1, 0xdb, 0x1f, 0x3e, 0x2f, 0x7a, 0x5b, 0xe1, 0x63, + 0x75, 0x74, 0xb4, 0xe4, 0x37, 0x95, 0xd1, 0xd1, 0x2f, 0x7e, 0x47, 0x79, 0xb4, 0x9b, 0x7a, 0xeb, + 0xf8, 0xe7, 0xc5, 0x65, 0x1f, 0x28, 0x2d, 0xf9, 0xc0, 0xc1, 0xb2, 0x0f, 0x1c, 0x2c, 0xf9, 0xc0, + 0xd2, 0x4b, 0x2a, 0x2e, 0xf9, 0x40, 0x79, 0xf4, 0x9c, 0x7a, 0xff, 0xee, 0xe2, 0xb7, 0x56, 0x46, + 0x7b, 0xcf, 0xcb, 0x7e, 0x57, 0x1d, 0x3d, 0x1f, 0xed, 0x6d, 0x81, 0x0b, 0xc3, 0x0e, 0x8b, 0x8b, + 0xb1, 0x8f, 0x47, 0xed, 0xb1, 0xef, 0xb2, 0x2c, 0xba, 0x08, 0x44, 0x44, 0x10, 0x11, 0x41, 0x44, + 0x04, 0x11, 0x11, 0x44, 0x44, 0xc8, 0xd7, 0x2d, 0x76, 0x5a, 0x5e, 0xfd, 0x7d, 0x8d, 0x4d, 0x52, + 0x44, 0x73, 0xff, 0x8d, 0x1d, 0x97, 0x15, 0xa7, 0x5e, 0xaa, 0x07, 0xbf, 0x2f, 0x7b, 0x5e, 0x28, + 0xfc, 0x88, 0xb0, 0x1d, 0xe4, 0x8b, 0xc8, 0x9c, 0x1f, 0x1f, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, + 0x5c, 0x03, 0x5c, 0x83, 0x3e, 0xdc, 0xd7, 0x13, 0x4a, 0x4b, 0xfd, 0xc4, 0xc4, 0x37, 0x08, 0xf3, + 0x6b, 0x73, 0x8d, 0xe9, 0xad, 0x7e, 0xf6, 0x23, 0x06, 0x97, 0x31, 0x9b, 0xf0, 0xc6, 0xd9, 0xb7, + 0xfa, 0x49, 0xe3, 0x4b, 0xa7, 0xd5, 0xbc, 0xba, 0x3c, 0xee, 0xb4, 0x8e, 0xeb, 0x17, 0xcd, 0x33, + 0x6a, 0xef, 0x31, 0x49, 0x73, 0x8e, 0x58, 0xc2, 0x9c, 0x4c, 0x79, 0xe5, 0x6f, 0x67, 0xbf, 0x7e, + 0xd1, 0x39, 0x69, 0x36, 0xcf, 0x73, 0xdb, 0x90, 0xd1, 0xef, 0xc8, 0x94, 0xff, 0xde, 0x3c, 0xfb, + 0x7a, 0xfc, 0x05, 0x33, 0x4e, 0x37, 0xe3, 0xcd, 0x56, 0xe3, 0x8f, 0xc6, 0x59, 0xfd, 0xb2, 0xd9, + 0xc2, 0xac, 0x13, 0xda, 0xf9, 0xc9, 0xd5, 0xc5, 0xe5, 0x71, 0x8b, 0xcb, 0xbf, 0x90, 0x8e, 0xd8, + 0xce, 0x1a, 0xdf, 0xcb, 0x84, 0xba, 0xef, 0xfb, 0x91, 0xf6, 0xee, 0x83, 0x9e, 0xbc, 0x95, 0xa2, + 0x47, 0x2f, 0xee, 0xe7, 0x87, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, 0x27, + 0x5f, 0xb7, 0x5a, 0xde, 0x0b, 0x2d, 0xbb, 0xdf, 0xa3, 0x4a, 0x89, 0x41, 0xdb, 0x13, 0x26, 0xf0, + 0xe4, 0xae, 0x54, 0x7c, 0x4a, 0x36, 0xa7, 0x7c, 0x15, 0x44, 0xa2, 0x1b, 0xa8, 0x1e, 0x69, 0x36, + 0x29, 0xea, 0x11, 0x64, 0x0f, 0xe3, 0x17, 0x47, 0x4d, 0x50, 0x8f, 0x80, 0xdc, 0xe4, 0x50, 0x8f, + 0x60, 0xa7, 0x70, 0x58, 0x2a, 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, 0xd7, 0xca, 0xe5, + 0x42, 0xa5, 0x80, 0xca, 0x04, 0x99, 0x1b, 0x0d, 0x79, 0x73, 0xbf, 0x6e, 0x86, 0x54, 0x5d, 0x45, + 0x52, 0xa4, 0x8a, 0xa6, 0xbb, 0x48, 0x32, 0xec, 0x17, 0x71, 0xeb, 0x0f, 0xfb, 0x13, 0x2a, 0x9e, + 0x87, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x46, 0x59, 0x3d, 0xc8, 0x58, 0xc8, + 0x58, 0xc8, 0x58, 0xc8, 0xd8, 0x8d, 0x32, 0x39, 0x94, 0xd5, 0x83, 0x78, 0x85, 0x78, 0xdd, 0xc9, + 0x4d, 0x93, 0x9f, 0x83, 0xa1, 0x16, 0xf4, 0x02, 0xf6, 0xf5, 0xe0, 0x10, 0x94, 0x10, 0x94, 0x10, + 0x94, 0x10, 0x94, 0x10, 0x94, 0xe4, 0xeb, 0xf6, 0x26, 0x08, 0xfa, 0xc2, 0x57, 0x1c, 0x49, 0xd7, + 0x85, 0xac, 0x40, 0xf5, 0x46, 0xb7, 0x98, 0xab, 0x2b, 0x15, 0x68, 0x7f, 0xcc, 0x46, 0x69, 0x3a, + 0xcd, 0x45, 0xdd, 0x7f, 0xc4, 0xbd, 0x3f, 0x98, 0x1e, 0xba, 0xdb, 0x0f, 0x06, 0x42, 0x75, 0x27, + 0x40, 0x39, 0xf6, 0x1f, 0xfb, 0xe3, 0xff, 0x85, 0xf2, 0x66, 0xdf, 0xbf, 0x95, 0x5e, 0xe4, 0xdf, + 0xca, 0x28, 0x79, 0xb5, 0x3f, 0xa9, 0x08, 0x12, 0x85, 0x5a, 0x78, 0x83, 0xa0, 0x2f, 0xbb, 0x4f, + 0xfb, 0x4a, 0xc8, 0xbb, 0x7f, 0x6e, 0x82, 0x30, 0x4a, 0x5e, 0xed, 0xfb, 0xbd, 0x7f, 0x27, 0xae, + 0x28, 0x18, 0x6a, 0x6f, 0x10, 0x44, 0x7a, 0x7f, 0xc2, 0x2f, 0xa2, 0xf8, 0x9f, 0xf8, 0x94, 0x1e, + 0x9a, 0xb0, 0xa6, 0x9f, 0xc9, 0x50, 0x7d, 0x57, 0xc1, 0xff, 0x94, 0xe7, 0x6b, 0x1d, 0xca, 0x9b, + 0xf1, 0x8c, 0xd1, 0x75, 0x64, 0x5d, 0x30, 0x36, 0xda, 0xb3, 0xba, 0x4a, 0xfb, 0xd0, 0x9e, 0x35, + 0x9b, 0xb4, 0x0e, 0xed, 0x59, 0x57, 0x9a, 0x35, 0xb2, 0xf6, 0xac, 0x29, 0x27, 0x49, 0xaf, 0xd7, + 0xd3, 0x97, 0x40, 0xab, 0xda, 0x0b, 0x50, 0xed, 0x50, 0xed, 0x50, 0xed, 0x50, 0xed, 0xee, 0xa8, + 0x76, 0x2a, 0xf7, 0x9f, 0x0c, 0x38, 0x69, 0x46, 0xaa, 0xa9, 0x63, 0x05, 0x3b, 0xa9, 0x66, 0xdd, + 0x93, 0x4b, 0x20, 0x36, 0x5d, 0x9e, 0xbd, 0x23, 0x72, 0x38, 0xe0, 0x84, 0x05, 0x37, 0xe0, 0x81, + 0x1b, 0x26, 0x9c, 0x81, 0x0b, 0x67, 0x60, 0xc3, 0x19, 0xf8, 0xa0, 0x85, 0x11, 0x62, 0x38, 0x49, + 0x66, 0xf9, 0x92, 0xc3, 0xc1, 0xef, 0xf0, 0x56, 0xfe, 0x4a, 0xb1, 0xfd, 0x2a, 0x4f, 0xdd, 0xdd, + 0x59, 0x25, 0xb0, 0xb8, 0xa0, 0xd7, 0x0b, 0xd8, 0x65, 0x74, 0xb7, 0x9c, 0xd0, 0xb4, 0x73, 0x71, + 0xf4, 0x95, 0x8d, 0xb8, 0xc4, 0xc3, 0xf3, 0x90, 0x96, 0x02, 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, + 0x48, 0x4b, 0x76, 0x49, 0x0b, 0xb5, 0x16, 0x9e, 0xd7, 0xc4, 0x7d, 0xc1, 0x98, 0x48, 0x3b, 0x27, + 0x8d, 0xc7, 0x57, 0xf2, 0x71, 0x2b, 0xb3, 0x2b, 0xb9, 0x40, 0xc7, 0x05, 0xf0, 0x71, 0x0b, 0x84, + 0x5c, 0x01, 0x23, 0xe7, 0x40, 0xc9, 0x39, 0x70, 0x72, 0x0e, 0xa4, 0x78, 0xc0, 0x8a, 0x09, 0xb4, + 0xf8, 0x15, 0x77, 0xca, 0x6f, 0x0c, 0xa5, 0xd2, 0x85, 0x0a, 0xa7, 0xcf, 0x98, 0xa2, 0x48, 0x85, + 0xf1, 0x12, 0x78, 0xce, 0xff, 0xbc, 0xfd, 0xc3, 0xeb, 0x33, 0x77, 0xb8, 0xcf, 0x07, 0x39, 0x46, + 0x2f, 0x52, 0x97, 0xc3, 0x7c, 0x7e, 0x28, 0x75, 0x3d, 0x0e, 0x9c, 0xe9, 0x70, 0xc4, 0x9d, 0xce, + 0x9b, 0xb0, 0xff, 0x08, 0x13, 0xfe, 0x89, 0x09, 0x57, 0xca, 0xe5, 0x83, 0x32, 0xcc, 0xd8, 0x2d, + 0x2e, 0xc2, 0x3f, 0x7a, 0xfb, 0xc3, 0x76, 0xdc, 0x2f, 0xc7, 0x31, 0x48, 0xbe, 0x9d, 0xf4, 0xc5, + 0x61, 0x03, 0x86, 0x1d, 0x75, 0xc4, 0x0d, 0x10, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x03, 0xc4, 0x0d, + 0x32, 0x12, 0x37, 0x38, 0x74, 0x20, 0x6c, 0x50, 0x46, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, + 0x36, 0x40, 0xd8, 0xc0, 0xba, 0x09, 0x17, 0xcb, 0x08, 0x1a, 0x20, 0x68, 0x80, 0xa0, 0x01, 0x6d, + 0xd0, 0xe0, 0x61, 0xba, 0xfa, 0x5c, 0x88, 0x1a, 0xc4, 0xd7, 0x82, 0xb0, 0x01, 0xc2, 0x06, 0x08, + 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xef, 0xf4, 0x1b, 0x37, 0x52, 0xf9, 0xe1, 0x93, + 0x03, 0x71, 0x83, 0x1a, 0xe3, 0x25, 0x9c, 0x08, 0x75, 0x37, 0x49, 0xfc, 0x47, 0xe0, 0x00, 0x81, + 0x83, 0x9f, 0xaa, 0xae, 0x02, 0x34, 0x17, 0x02, 0x07, 0x9b, 0x6d, 0xc2, 0xc8, 0x37, 0x40, 0xe8, + 0x00, 0xa1, 0x03, 0x52, 0x33, 0x17, 0x8f, 0x5a, 0xa8, 0x1e, 0x61, 0x1b, 0xcc, 0xa5, 0x94, 0x2f, + 0xb9, 0x12, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, + 0x6f, 0xd8, 0x80, 0xbc, 0x68, 0xec, 0x32, 0x18, 0x21, 0x2a, 0x22, 0xbb, 0x9d, 0xa4, 0x25, 0x18, + 0x8c, 0x99, 0xb9, 0xdf, 0xe7, 0x27, 0x2d, 0xc9, 0x95, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, + 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0xa4, 0xe7, 0x78, 0xe0, 0x87, 0x5a, 0xba, + 0xc0, 0x59, 0x66, 0x17, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, 0x02, 0xca, + 0x02, 0xca, 0x02, 0xca, 0x92, 0x9e, 0x63, 0x1d, 0xfa, 0x2a, 0x92, 0x5a, 0x3e, 0x38, 0x90, 0x57, + 0xfa, 0xea, 0x5a, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, 0x5c, 0x40, + 0x5c, 0x9c, 0x27, 0x2e, 0x99, 0x2e, 0x2f, 0x4a, 0xdc, 0xa5, 0x30, 0x35, 0x3e, 0x63, 0xd7, 0xc2, + 0x74, 0x83, 0xbc, 0xf4, 0x8f, 0x28, 0x5a, 0x1b, 0xf2, 0x19, 0x5c, 0xb6, 0xba, 0xc6, 0xfc, 0x29, + 0x9e, 0x38, 0xca, 0xbe, 0xe4, 0x4e, 0x64, 0xa4, 0xeb, 0x5a, 0x13, 0xb7, 0xac, 0x39, 0x95, 0xea, + 0xb8, 0x2f, 0xc6, 0x9c, 0x20, 0xca, 0x1d, 0xed, 0xa8, 0x61, 0xbf, 0x4f, 0x58, 0x72, 0xfe, 0xd4, + 0x7f, 0xe4, 0x1b, 0xbc, 0x19, 0xf6, 0x44, 0x28, 0x7a, 0x9f, 0x9f, 0xa6, 0x43, 0x67, 0xca, 0x88, + 0x99, 0xfc, 0xb1, 0xeb, 0x7e, 0x38, 0x47, 0xda, 0x4f, 0x21, 0x1c, 0x76, 0xb5, 0x9a, 0x32, 0xae, + 0xcf, 0x77, 0x83, 0x4e, 0x4b, 0xde, 0x74, 0xea, 0xb7, 0xf2, 0xc2, 0xbf, 0x95, 0x9d, 0xc6, 0xe0, + 0xa1, 0x72, 0x11, 0x6a, 0x71, 0x3e, 0xb9, 0xdb, 0xce, 0xd9, 0xf4, 0x1e, 0x3b, 0xf5, 0xde, 0xbf, + 0x2d, 0x79, 0xd3, 0x1c, 0xea, 0xf3, 0x20, 0xd2, 0x9d, 0xd6, 0xf8, 0xce, 0x3a, 0x57, 0xf1, 0x6d, + 0xd4, 0x93, 0xbb, 0x40, 0x63, 0x66, 0xfe, 0xa5, 0xb6, 0x4d, 0x8d, 0x99, 0x17, 0xf4, 0x00, 0xde, + 0xd4, 0x2e, 0xcd, 0x1f, 0x36, 0xc8, 0xd4, 0x66, 0x54, 0x64, 0xfc, 0xcc, 0x3d, 0xd9, 0xdb, 0x11, + 0xaa, 0x37, 0x08, 0xa4, 0xd2, 0x3b, 0xdd, 0xa0, 0x1f, 0x84, 0x96, 0x7c, 0x19, 0x0d, 0x0f, 0x21, + 0xe5, 0x1d, 0xa4, 0x3c, 0x83, 0x86, 0x57, 0xd8, 0xb2, 0x38, 0x22, 0xa7, 0xc6, 0xe8, 0xcc, 0x2c, + 0x52, 0x00, 0x73, 0x90, 0x6f, 0xc7, 0xbd, 0x9a, 0x77, 0x7e, 0x66, 0xbf, 0xd1, 0xb0, 0x51, 0xdb, + 0x36, 0x66, 0x16, 0x23, 0x36, 0x6b, 0x19, 0xe6, 0x9e, 0x9f, 0x99, 0x6f, 0x32, 0x64, 0x01, 0xb6, + 0x9e, 0x3c, 0xed, 0x13, 0x37, 0xe8, 0xa9, 0x4c, 0x78, 0x26, 0x33, 0x96, 0xb7, 0xbe, 0x9d, 0x18, + 0xb0, 0x91, 0xdc, 0xdc, 0x54, 0x87, 0xe6, 0x82, 0xf2, 0x2f, 0xe5, 0x7f, 0xde, 0x0c, 0x60, 0xc8, + 0xae, 0xcd, 0xf6, 0xab, 0x33, 0xbe, 0x97, 0x6a, 0x63, 0x6f, 0xd4, 0xee, 0x5e, 0xa7, 0xad, 0xbd, + 0x4b, 0xeb, 0x7b, 0x91, 0xd6, 0xf7, 0x16, 0xad, 0xef, 0x15, 0xba, 0x85, 0x18, 0xa6, 0xfb, 0xa3, + 0xe5, 0xa6, 0x70, 0x6d, 0xdc, 0xb0, 0x66, 0xcb, 0x61, 0xfa, 0xfd, 0x86, 0x1f, 0xba, 0x9d, 0x86, + 0x98, 0xd6, 0x92, 0x36, 0x6c, 0x26, 0x63, 0xd0, 0x24, 0x59, 0xd8, 0x4e, 0x9e, 0x20, 0x4b, 0x8a, + 0x20, 0x4b, 0x76, 0x20, 0x4b, 0x62, 0x70, 0x5b, 0xdc, 0xd8, 0x6a, 0xe8, 0x18, 0x3b, 0x16, 0x7b, + 0xf6, 0x38, 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0xbe, 0xbe, 0xd6, 0x73, 0xd0, 0x28, 0x72, 0xcc, + 0x68, 0x73, 0xc8, 0xa8, 0x72, 0xc4, 0xc8, 0x73, 0xc0, 0xc8, 0x73, 0xbc, 0xc8, 0x73, 0xb8, 0x36, + 0x2b, 0x64, 0x6e, 0xbb, 0xcf, 0x6d, 0x2e, 0x8e, 0xbd, 0x5b, 0xb7, 0xe3, 0xd9, 0xea, 0xb4, 0x19, + 0xea, 0x7f, 0xeb, 0x2e, 0x2d, 0x67, 0xd4, 0x92, 0xa5, 0xee, 0x52, 0xa6, 0xe8, 0xf2, 0xa4, 0xe2, + 0x52, 0xa7, 0xdc, 0xb2, 0xa5, 0xd6, 0xb2, 0xa5, 0xd0, 0xb2, 0xa5, 0xca, 0x6e, 0xf6, 0xa6, 0x38, + 0x59, 0x8a, 0x6b, 0xb2, 0xee, 0xfa, 0xc2, 0xbf, 0x0d, 0xc5, 0x2d, 0xc5, 0xa2, 0x9b, 0xb1, 0xca, + 0x2a, 0xc1, 0x58, 0xe7, 0xd3, 0x18, 0xf3, 0xa7, 0x4f, 0x71, 0xee, 0xe0, 0x7e, 0x0c, 0x04, 0x9b, + 0xba, 0xed, 0x6e, 0x91, 0x59, 0xce, 0x76, 0xc5, 0xe9, 0x30, 0x39, 0x19, 0x11, 0xb0, 0x0c, 0x58, + 0x06, 0x2c, 0x03, 0x96, 0x01, 0xcb, 0x5b, 0x0b, 0xcb, 0x09, 0x16, 0x00, 0x99, 0x53, 0x93, 0x35, + 0xcd, 0x5b, 0xa3, 0x03, 0xe6, 0xd9, 0x80, 0xc0, 0x65, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0x0c, 0x5c, + 0xde, 0x5a, 0x5c, 0x9e, 0x41, 0x01, 0x60, 0x39, 0x35, 0x57, 0xf1, 0x59, 0x44, 0x32, 0x50, 0x8e, + 0x87, 0xa3, 0x81, 0xe4, 0x02, 0x20, 0x19, 0x90, 0x0c, 0x48, 0x06, 0x24, 0xaf, 0x3e, 0x6b, 0xb6, + 0x37, 0x10, 0x93, 0x81, 0x26, 0x07, 0x8c, 0xa5, 0xea, 0x09, 0xba, 0x5a, 0x32, 0xf3, 0xdd, 0x29, + 0xe3, 0xb1, 0xa9, 0x4e, 0x55, 0x93, 0x56, 0x0d, 0x22, 0xaf, 0x12, 0xc4, 0x51, 0x15, 0x88, 0xb7, + 0x0a, 0x10, 0x57, 0xd5, 0x1f, 0xf6, 0x2a, 0x3f, 0xec, 0x55, 0x7d, 0xd8, 0xab, 0xf8, 0x64, 0xab, + 0xde, 0x03, 0x79, 0x55, 0x1e, 0x06, 0x2d, 0xc6, 0xa1, 0xc9, 0x16, 0x69, 0xb3, 0xff, 0xf8, 0x3b, + 0x81, 0xa4, 0x48, 0xe8, 0x28, 0x79, 0x35, 0x55, 0x72, 0x31, 0x4c, 0x65, 0xe5, 0xc8, 0x3b, 0x01, + 0xb3, 0xa6, 0xc9, 0x50, 0x4a, 0x59, 0x33, 0x45, 0xa6, 0x12, 0xe8, 0x04, 0xe8, 0x04, 0xe8, 0x04, + 0xe8, 0x04, 0xe8, 0xc4, 0x82, 0x75, 0x3b, 0x94, 0x4a, 0x1f, 0x14, 0x19, 0xd8, 0x04, 0x25, 0x99, + 0x68, 0xf9, 0xea, 0x4e, 0x90, 0xf7, 0x82, 0x66, 0xa8, 0x68, 0xc7, 0xd9, 0xeb, 0x99, 0xbb, 0xc6, + 0xef, 0xac, 0x11, 0x2e, 0xd7, 0xf8, 0x0e, 0x34, 0xbd, 0xe5, 0xa8, 0x73, 0xcd, 0xd9, 0x9b, 0xd9, + 0x15, 0x93, 0x2b, 0x15, 0x6b, 0xa5, 0x5a, 0xa5, 0x5a, 0xac, 0x95, 0xb7, 0xd8, 0xf6, 0x32, 0x5a, + 0xa7, 0xb2, 0x0d, 0x11, 0xf9, 0x0e, 0x11, 0x79, 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x71, 0x85, 0xa8, + 0xdf, 0x5e, 0x00, 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0x84, 0x25, 0xf9, 0xba, 0x45, + 0x9c, 0xfa, 0xd5, 0xdf, 0x19, 0x2e, 0x49, 0x11, 0x25, 0xaf, 0x9f, 0x10, 0xaa, 0x5e, 0x6d, 0xca, + 0xc9, 0xce, 0xee, 0xa4, 0x6c, 0x9a, 0xe8, 0x0c, 0x0f, 0x78, 0x05, 0x78, 0x05, 0x78, 0x05, 0x78, + 0x05, 0x78, 0xc5, 0x82, 0x75, 0x2b, 0x07, 0x9e, 0xdf, 0xeb, 0x85, 0x22, 0x8a, 0x38, 0xa8, 0x45, + 0x8d, 0x70, 0xcc, 0xe9, 0x1c, 0x67, 0x3e, 0x68, 0xfd, 0xf2, 0x64, 0x1f, 0x4a, 0x0c, 0xcf, 0x36, + 0xf5, 0x8c, 0x0f, 0x19, 0xc6, 0x3e, 0xf7, 0xb5, 0x16, 0xa1, 0x22, 0x7f, 0xdc, 0xc9, 0x05, 0xfc, + 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, 0x6a, 0xed, 0xe7, 0xeb, 0x82, 0x57, 0x6b, 0xc7, 0x2f, 0x0b, 0x93, + 0x7f, 0xe2, 0xd7, 0xc5, 0xeb, 0xbc, 0x57, 0x9a, 0xbd, 0x2e, 0x5f, 0xe7, 0xbd, 0x72, 0x7b, 0xef, + 0xaf, 0xbf, 0x3e, 0xed, 0xfd, 0x38, 0x18, 0xbd, 0xff, 0x83, 0xbf, 0xd1, 0x37, 0x0f, 0x6b, 0x67, + 0xb9, 0x93, 0x12, 0xef, 0xa2, 0xad, 0x60, 0xd1, 0xf2, 0x2e, 0x5a, 0xdf, 0xbb, 0xad, 0x7b, 0x5f, + 0xdb, 0x3f, 0x0a, 0x1f, 0x4b, 0xa3, 0xa3, 0xbd, 0x1f, 0xd5, 0xd1, 0xdb, 0x1f, 0x3e, 0x2f, 0x7a, + 0x5b, 0xe1, 0x63, 0x75, 0x74, 0xb4, 0xe4, 0x37, 0x95, 0xd1, 0xd1, 0x2f, 0x7e, 0x47, 0x79, 0xb4, + 0x9b, 0x7a, 0xeb, 0xf8, 0xe7, 0xc5, 0x65, 0x1f, 0x28, 0x2d, 0xf9, 0xc0, 0xc1, 0xb2, 0x0f, 0x1c, + 0x2c, 0xf9, 0xc0, 0xd2, 0x4b, 0x2a, 0x2e, 0xf9, 0x40, 0x79, 0xf4, 0x9c, 0x7a, 0xff, 0xee, 0xe2, + 0xb7, 0x56, 0x46, 0x7b, 0xcf, 0xcb, 0x7e, 0x57, 0x1d, 0x3d, 0x1f, 0xed, 0x6d, 0x81, 0x0b, 0xc3, + 0x0e, 0x8b, 0x8b, 0xb1, 0x8f, 0x47, 0xed, 0xb1, 0xef, 0xb2, 0x2c, 0xba, 0x08, 0x44, 0x44, 0x10, + 0x11, 0x41, 0x44, 0x04, 0x11, 0x11, 0x44, 0x44, 0xc8, 0xd7, 0x2d, 0x76, 0x5a, 0x5e, 0xfd, 0x7d, + 0x8d, 0x4d, 0x52, 0x44, 0x73, 0xff, 0x8d, 0x1d, 0x97, 0x15, 0xa7, 0x5e, 0xaa, 0x07, 0xbf, 0x2f, + 0x7b, 0x5e, 0x28, 0xfc, 0x88, 0xb0, 0x39, 0xe4, 0x8b, 0xc8, 0x9c, 0x1f, 0x1f, 0x5c, 0x03, 0x5c, + 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x3e, 0xdc, 0xd7, 0x13, 0x4a, 0x4b, 0xfd, 0xc4, 0xc4, + 0x37, 0x08, 0xf3, 0x6b, 0x73, 0x8d, 0xe9, 0xad, 0x7e, 0xf6, 0x23, 0x06, 0x97, 0x31, 0x9b, 0xf0, + 0xc6, 0xd9, 0xb7, 0xfa, 0x49, 0xe3, 0x4b, 0xa7, 0xd5, 0xbc, 0xba, 0x3c, 0xee, 0xb4, 0x8e, 0xeb, + 0x17, 0xcd, 0x33, 0x6a, 0xef, 0x31, 0x49, 0x73, 0x8e, 0x58, 0xc2, 0x9c, 0x4c, 0x79, 0xe5, 0x6f, + 0x67, 0xbf, 0x7e, 0xd1, 0x39, 0x69, 0x36, 0xcf, 0x73, 0xdb, 0x90, 0xd1, 0xef, 0xc8, 0x94, 0xff, + 0xde, 0x3c, 0xfb, 0x7a, 0xfc, 0x05, 0x33, 0x4e, 0x37, 0xe3, 0xcd, 0x56, 0xe3, 0x8f, 0xc6, 0x59, + 0xfd, 0xb2, 0xd9, 0xc2, 0xac, 0x13, 0xda, 0xf9, 0xc9, 0xd5, 0xc5, 0xe5, 0x71, 0x8b, 0xcb, 0xbf, + 0x90, 0x8e, 0xd8, 0xce, 0x1a, 0xdf, 0xcb, 0x84, 0xba, 0xef, 0xfb, 0x91, 0xf6, 0xee, 0x83, 0x9e, + 0xbc, 0x95, 0xa2, 0x47, 0x2f, 0xee, 0xe7, 0x87, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, 0x87, 0xb6, + 0x87, 0xb6, 0x27, 0x5f, 0xb7, 0x5a, 0xde, 0x0b, 0x2d, 0xbb, 0xdf, 0xa3, 0x4a, 0x89, 0x41, 0xdb, + 0x13, 0x26, 0xf0, 0xe4, 0xae, 0x54, 0x7c, 0x4a, 0x36, 0xa7, 0x7c, 0x15, 0x44, 0xa2, 0x1b, 0xa8, + 0x1e, 0x69, 0x36, 0x29, 0xea, 0x11, 0x64, 0x0f, 0xe3, 0x17, 0x47, 0x4d, 0x50, 0x8f, 0x80, 0xdc, + 0xe4, 0x50, 0x8f, 0x60, 0xa7, 0x70, 0x58, 0x2a, 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, + 0xd7, 0xca, 0xe5, 0x42, 0xa5, 0x80, 0xca, 0x04, 0x99, 0x1b, 0x0d, 0x79, 0x73, 0xbf, 0x6e, 0x86, + 0x54, 0x5d, 0x45, 0x52, 0xa4, 0x8a, 0xa6, 0xbb, 0x48, 0x32, 0xec, 0x17, 0x71, 0xeb, 0x0f, 0xfb, + 0x13, 0x2a, 0x9e, 0x87, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x86, 0x96, 0x46, 0x59, 0x3d, + 0xc8, 0x58, 0xc8, 0x58, 0xc8, 0x58, 0xc8, 0xd8, 0x8d, 0x32, 0x39, 0x94, 0xd5, 0x83, 0x78, 0x85, + 0x78, 0xdd, 0xc9, 0x4d, 0x93, 0x9f, 0x83, 0xa1, 0x16, 0xf4, 0x02, 0xf6, 0xf5, 0xe0, 0x10, 0x94, + 0x10, 0x94, 0x10, 0x94, 0x10, 0x94, 0x10, 0x94, 0xe4, 0xeb, 0xf6, 0x26, 0x08, 0xfa, 0xc2, 0x57, + 0x1c, 0x49, 0xd7, 0x85, 0xac, 0x40, 0xf5, 0x46, 0xb7, 0x98, 0xab, 0x2b, 0x15, 0x68, 0x7f, 0xcc, + 0x46, 0x69, 0x3a, 0xcd, 0x45, 0xdd, 0x7f, 0xc4, 0xbd, 0x3f, 0x98, 0x1e, 0xba, 0xdb, 0x0f, 0x06, + 0x42, 0x75, 0x27, 0x40, 0x39, 0xf6, 0x1f, 0xfb, 0xe3, 0xff, 0x85, 0xf2, 0x66, 0xdf, 0xbf, 0x95, + 0x5e, 0xe4, 0xdf, 0xca, 0x28, 0x79, 0xb5, 0x3f, 0xa9, 0x08, 0x12, 0x85, 0x5a, 0x78, 0x83, 0xa0, + 0x2f, 0xbb, 0x4f, 0xfb, 0x4a, 0xc8, 0xbb, 0x7f, 0x6e, 0x82, 0x30, 0x4a, 0x5e, 0xed, 0xfb, 0xbd, + 0x7f, 0x27, 0xae, 0x28, 0x18, 0x6a, 0x6f, 0x10, 0x8a, 0xfd, 0x09, 0xbd, 0x88, 0xe2, 0x7f, 0xe2, + 0x43, 0x7a, 0xe8, 0xc1, 0x9a, 0x7e, 0x24, 0x43, 0xf5, 0x5d, 0x05, 0xff, 0x53, 0x9e, 0xaf, 0x75, + 0x28, 0x6f, 0xc6, 0x33, 0x46, 0xd7, 0x90, 0x75, 0xc1, 0xd8, 0xe8, 0xce, 0xea, 0x2a, 0xeb, 0x43, + 0x77, 0xd6, 0x6c, 0xb2, 0x3a, 0x74, 0x67, 0x5d, 0x69, 0xd6, 0xc8, 0xba, 0xb3, 0xa6, 0x9c, 0x24, + 0xbd, 0x5c, 0x4f, 0x5f, 0x02, 0xad, 0x68, 0x2f, 0x40, 0xb4, 0x43, 0xb4, 0x43, 0xb4, 0x43, 0xb4, + 0xbb, 0x23, 0xda, 0xa9, 0xdc, 0x7f, 0x32, 0xe0, 0xa4, 0x17, 0xa9, 0xa6, 0x0e, 0x15, 0xec, 0xa4, + 0x7a, 0x75, 0x4f, 0x2e, 0x81, 0xd8, 0x74, 0x79, 0xb6, 0x8e, 0xc8, 0xe1, 0x80, 0x13, 0x16, 0xdc, + 0x80, 0x07, 0x6e, 0x98, 0x70, 0x06, 0x2e, 0x9c, 0x81, 0x0d, 0x67, 0xe0, 0x83, 0x16, 0x46, 0x88, + 0xe1, 0x24, 0x99, 0xe5, 0x4b, 0x0e, 0x07, 0xbf, 0xc3, 0x5b, 0xf8, 0x2b, 0xc5, 0xf6, 0xab, 0x3c, + 0x65, 0x77, 0x67, 0x85, 0xc0, 0xe2, 0x7a, 0x5e, 0x2f, 0x60, 0x97, 0xd1, 0xcd, 0x72, 0x42, 0xd3, + 0xce, 0xc5, 0xd1, 0x57, 0x36, 0xe2, 0x12, 0x0f, 0xcf, 0x43, 0x5a, 0x0a, 0x20, 0x2d, 0x20, 0x2d, + 0x20, 0x2d, 0x20, 0x2d, 0xd9, 0x25, 0x2d, 0xd4, 0x5a, 0x78, 0x5e, 0x13, 0xf7, 0x05, 0x63, 0x1e, + 0xed, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, 0x4c, 0xae, 0xe4, 0x02, 0x1d, 0x17, 0xc0, 0xc7, + 0x2d, 0x10, 0x72, 0x05, 0x8c, 0x9c, 0x03, 0x25, 0xe7, 0xc0, 0xc9, 0x39, 0x90, 0xe2, 0x01, 0x2b, + 0x26, 0xd0, 0xe2, 0x57, 0xdc, 0x29, 0xbf, 0x31, 0x94, 0x4a, 0x17, 0x2a, 0x9c, 0x3e, 0x63, 0x8a, + 0x22, 0x15, 0xc6, 0x4b, 0xe0, 0x39, 0xfe, 0xf3, 0xf6, 0x0f, 0xaf, 0xcf, 0xdc, 0xe1, 0x3e, 0x1e, + 0xe4, 0x18, 0xbd, 0x48, 0x5d, 0x0e, 0xf3, 0xf1, 0xa1, 0xd4, 0xf5, 0x38, 0x70, 0xa4, 0xc3, 0x11, + 0x77, 0x3a, 0x6f, 0xc2, 0xfe, 0x23, 0x4c, 0xf8, 0x27, 0x26, 0x5c, 0x29, 0x97, 0x0f, 0xca, 0x30, + 0x63, 0xb7, 0xb8, 0x08, 0xff, 0xe8, 0xed, 0x0f, 0xdb, 0x71, 0xbf, 0x1c, 0xa7, 0x20, 0xf9, 0x76, + 0xd2, 0x17, 0x87, 0x0d, 0x18, 0x76, 0xd4, 0x11, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x03, 0xc4, 0x0d, + 0x10, 0x37, 0xc8, 0x48, 0xdc, 0xe0, 0xd0, 0x81, 0xb0, 0x41, 0x19, 0x61, 0x03, 0x84, 0x0d, 0x10, + 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0xeb, 0x26, 0x5c, 0x2c, 0x23, 0x68, 0x80, 0xa0, 0x01, 0x82, + 0x06, 0xb4, 0x41, 0x83, 0x87, 0xe9, 0xea, 0x73, 0x21, 0x6a, 0x10, 0x5f, 0x0b, 0xc2, 0x06, 0x08, + 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0xbc, 0xd3, 0x6f, 0xdc, 0x48, 0xe5, + 0x87, 0x4f, 0x0e, 0xc4, 0x0d, 0x6a, 0x8c, 0x97, 0x70, 0x22, 0xd4, 0xdd, 0x24, 0xf1, 0x1f, 0x81, + 0x03, 0x04, 0x0e, 0x7e, 0xaa, 0xba, 0x0a, 0xd0, 0x5c, 0x08, 0x1c, 0x6c, 0xb6, 0x09, 0x23, 0xdf, + 0x00, 0xa1, 0x03, 0x84, 0x0e, 0x48, 0xcd, 0x5c, 0x3c, 0x6a, 0xa1, 0x7a, 0x84, 0x5d, 0x30, 0x97, + 0x52, 0xbe, 0xe4, 0x4a, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, + 0xd8, 0xe0, 0xbd, 0x61, 0x03, 0xf2, 0x9a, 0xb1, 0xcb, 0x60, 0x84, 0xa8, 0x86, 0xec, 0x76, 0x92, + 0x96, 0x60, 0x30, 0x66, 0xe6, 0x7e, 0x9f, 0x9f, 0xb4, 0x24, 0x57, 0x02, 0xd2, 0x02, 0xd2, 0x02, + 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x02, 0xd2, 0x92, 0x9e, 0xe3, 0x81, 0x1f, + 0x6a, 0xe9, 0x02, 0x67, 0x99, 0x5d, 0x08, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, + 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x4b, 0x7a, 0x8e, 0x75, 0xe8, 0xab, 0x48, 0x6a, 0xf9, 0xe0, + 0x40, 0x5e, 0xe9, 0xab, 0x6b, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, 0x71, 0x01, + 0x71, 0x01, 0x71, 0x71, 0x9e, 0xb8, 0x64, 0xba, 0xbc, 0x28, 0x71, 0x93, 0xc2, 0xd4, 0xf8, 0x7c, + 0x4d, 0x0b, 0xd3, 0xfd, 0xf1, 0xd2, 0x3f, 0xa2, 0xe8, 0x6c, 0xc8, 0x67, 0x6f, 0xd9, 0x6a, 0x1a, + 0xf3, 0xa7, 0x78, 0xe2, 0xa8, 0xfa, 0x92, 0x3b, 0x91, 0x91, 0xae, 0x6b, 0x4d, 0xdc, 0xb1, 0xe6, + 0x54, 0xaa, 0xe3, 0xbe, 0x18, 0x53, 0x82, 0x28, 0x77, 0xb4, 0xa3, 0x86, 0xfd, 0x3e, 0x61, 0xc5, + 0xf9, 0x53, 0xff, 0x91, 0x6f, 0xf0, 0x66, 0xd8, 0x13, 0xa1, 0xe8, 0x7d, 0x7e, 0x9a, 0x0e, 0x9d, + 0x29, 0x23, 0x66, 0x72, 0xc7, 0x8e, 0xbb, 0xe1, 0x1c, 0x69, 0x37, 0x85, 0x70, 0xd8, 0xd5, 0x6a, + 0xca, 0xb7, 0x3e, 0xdf, 0x0d, 0x3a, 0x2d, 0x79, 0xd3, 0xa9, 0xdf, 0xca, 0x0b, 0xff, 0x56, 0x76, + 0x1a, 0x83, 0x87, 0xca, 0x45, 0xa8, 0xc5, 0xf9, 0xe4, 0x66, 0x3b, 0x67, 0xd3, 0x5b, 0xec, 0xd4, + 0x7b, 0xff, 0xb6, 0xe4, 0x4d, 0x73, 0xa8, 0xcf, 0x43, 0xd1, 0x69, 0x8d, 0x6f, 0xac, 0x73, 0x15, + 0xdf, 0x45, 0x3d, 0xb9, 0x09, 0x34, 0x65, 0xe6, 0x5f, 0x68, 0x5b, 0xd4, 0x94, 0x79, 0x41, 0xff, + 0xdf, 0x4d, 0xed, 0xd0, 0xfc, 0x61, 0x83, 0x2c, 0x6d, 0xc6, 0x43, 0xc6, 0x8f, 0xdc, 0x93, 0xbd, + 0x1d, 0xa1, 0x7a, 0x83, 0x40, 0x2a, 0xbd, 0xd3, 0x0d, 0xfa, 0x41, 0x68, 0xc9, 0x93, 0xd1, 0x90, + 0x10, 0x52, 0xd2, 0x41, 0x4a, 0x32, 0x68, 0x48, 0x85, 0x2d, 0x8b, 0x23, 0xf2, 0x69, 0x7c, 0xbe, + 0xcc, 0x22, 0xfe, 0x1b, 0xc3, 0x7b, 0x3b, 0xce, 0xd5, 0xbc, 0xeb, 0x33, 0xfb, 0x8d, 0x86, 0x4d, + 0xda, 0xb6, 0x29, 0x73, 0x98, 0xb0, 0x59, 0xc3, 0x30, 0xf7, 0xf8, 0xcc, 0x7c, 0x93, 0x21, 0x03, + 0xb0, 0xf5, 0xe0, 0x49, 0x1f, 0xb8, 0x41, 0x37, 0x65, 0xc0, 0x2d, 0x99, 0xb1, 0xbb, 0xf5, 0xad, + 0xc4, 0x80, 0x85, 0xe4, 0x66, 0x33, 0xee, 0xf9, 0xbd, 0x5e, 0x28, 0xa2, 0xc8, 0x98, 0x8d, 0x24, + 0x81, 0xf5, 0xd4, 0x08, 0x86, 0xec, 0xda, 0xec, 0xa6, 0xab, 0xf1, 0x4d, 0x54, 0x1b, 0x9b, 0xa2, + 0x76, 0x37, 0x39, 0x6d, 0x6d, 0x5a, 0x5a, 0xdf, 0x84, 0xb4, 0xbe, 0xa9, 0x68, 0x7d, 0x93, 0xd0, + 0x2d, 0xc4, 0x30, 0xbe, 0x29, 0x67, 0xb1, 0x4b, 0xab, 0x8d, 0xee, 0xab, 0xe9, 0xae, 0xaa, 0x29, + 0x1f, 0x96, 0x21, 0x04, 0x30, 0xdb, 0xe4, 0xd4, 0x4a, 0xf3, 0x52, 0xc3, 0x4d, 0x49, 0xe1, 0xeb, + 0xe1, 0xeb, 0xe1, 0xeb, 0xe3, 0xbb, 0x35, 0xdd, 0x04, 0xd3, 0x1e, 0xa1, 0xa4, 0x22, 0x96, 0x96, + 0x08, 0xa6, 0x35, 0xe7, 0x63, 0xd3, 0x09, 0xd1, 0x38, 0x23, 0xdb, 0x4e, 0x89, 0xcc, 0x39, 0x91, + 0x39, 0x29, 0x32, 0x67, 0xb5, 0x19, 0xb1, 0x2d, 0x6b, 0x59, 0x64, 0x89, 0xdd, 0xcb, 0x81, 0x25, + 0x2f, 0x33, 0x47, 0x6f, 0x2c, 0x94, 0x14, 0x9c, 0xcd, 0x8d, 0x9d, 0x42, 0x81, 0x16, 0x43, 0xe2, + 0x2f, 0x33, 0xff, 0x50, 0xb2, 0x38, 0xf7, 0xa9, 0x67, 0x70, 0x68, 0x71, 0x8c, 0x73, 0x5f, 0x6b, + 0x11, 0x2a, 0xeb, 0x75, 0x1b, 0x73, 0x7f, 0xef, 0xee, 0x5e, 0xe7, 0xbd, 0x5a, 0xfb, 0xf9, 0xba, + 0xe0, 0xd5, 0xda, 0xf1, 0xcb, 0xc2, 0xe4, 0x9f, 0xf8, 0x75, 0xf1, 0x3a, 0xef, 0x95, 0x66, 0xaf, + 0xcb, 0xd7, 0x79, 0xaf, 0xdc, 0xde, 0xfb, 0xeb, 0xaf, 0x4f, 0x7b, 0x3f, 0x0e, 0x46, 0xef, 0xff, + 0xe0, 0x6f, 0xf6, 0x76, 0x3f, 0xdb, 0x9b, 0xb4, 0x5b, 0x44, 0xb3, 0x18, 0x2a, 0x58, 0x0c, 0xab, + 0x2d, 0x06, 0xdf, 0xbb, 0xad, 0x7b, 0x5f, 0xdb, 0x3f, 0x0a, 0x1f, 0x4b, 0xa3, 0xa3, 0xbd, 0x1f, + 0xd5, 0xd1, 0xdb, 0x1f, 0x3e, 0x2f, 0x7a, 0x5b, 0xe1, 0x63, 0x75, 0x74, 0xb4, 0xe4, 0x37, 0x95, + 0xd1, 0xd1, 0x2f, 0x7e, 0x47, 0x79, 0xb4, 0x9b, 0x7a, 0xeb, 0xf8, 0xe7, 0xc5, 0x65, 0x1f, 0x28, + 0x2d, 0xf9, 0xc0, 0xc1, 0xb2, 0x0f, 0x1c, 0x2c, 0xf9, 0xc0, 0xd2, 0x4b, 0x2a, 0x2e, 0xf9, 0x40, + 0x79, 0xf4, 0x9c, 0x7a, 0xff, 0xee, 0xe2, 0xb7, 0x56, 0x46, 0x7b, 0xcf, 0xcb, 0x7e, 0x57, 0x1d, + 0x3d, 0x1f, 0xed, 0x6d, 0xa0, 0x6b, 0xf8, 0xe0, 0xf6, 0x75, 0x62, 0x93, 0xea, 0x9d, 0xc1, 0x2d, + 0x9b, 0x9b, 0x54, 0x06, 0x53, 0x98, 0x0d, 0x84, 0x02, 0x3f, 0x30, 0x3e, 0xc7, 0x59, 0x6a, 0x8e, + 0x61, 0x49, 0x6e, 0x36, 0xf9, 0xc6, 0x4a, 0x92, 0x8d, 0x95, 0x64, 0x1a, 0xb3, 0x49, 0x33, 0xeb, + 0x3e, 0x5b, 0xc3, 0x6b, 0xd3, 0xea, 0x9a, 0xcc, 0x19, 0x09, 0x88, 0xaf, 0xb0, 0x41, 0xbc, 0x9e, + 0x1b, 0x58, 0x7d, 0xf1, 0xae, 0xf6, 0xc9, 0x15, 0x4d, 0xc2, 0x94, 0x29, 0xd8, 0x30, 0x81, 0xd5, + 0x1e, 0xc0, 0xfb, 0xa7, 0xef, 0x7d, 0x9f, 0x78, 0xe7, 0x44, 0xaf, 0x3b, 0xc1, 0xe6, 0x26, 0x76, + 0x85, 0x85, 0xf4, 0xae, 0x85, 0xf3, 0xbe, 0xc7, 0xf5, 0xeb, 0x93, 0xfe, 0x8e, 0x09, 0x8f, 0xd5, + 0xd4, 0x50, 0xc9, 0xae, 0x1f, 0xe9, 0x77, 0x4f, 0xf7, 0xbc, 0x26, 0x9b, 0x7d, 0xcb, 0x3b, 0x1f, + 0xf7, 0x6a, 0xfb, 0x5a, 0x2b, 0x87, 0x90, 0xd7, 0x09, 0x11, 0x9b, 0x09, 0x01, 0xaf, 0x1b, 0xe2, + 0x35, 0x16, 0xc2, 0x35, 0x16, 0xa2, 0x35, 0x16, 0x82, 0xb5, 0xeb, 0x58, 0x56, 0xdd, 0xe7, 0xc9, + 0xf5, 0xe3, 0x7b, 0x5a, 0xfd, 0x89, 0x25, 0x7b, 0xff, 0xd3, 0x2f, 0x5a, 0x71, 0x9a, 0xd7, 0xdb, + 0x02, 0x7e, 0x59, 0x32, 0xc5, 0x15, 0xbf, 0xc0, 0xc0, 0xee, 0x8a, 0xd9, 0x5d, 0x14, 0x53, 0xbb, + 0x25, 0xc6, 0x77, 0x45, 0x8c, 0xef, 0x7e, 0x18, 0xdf, 0xe5, 0xa0, 0x25, 0x4d, 0xeb, 0x6e, 0xb1, + 0xe6, 0xa6, 0xd9, 0xae, 0x6b, 0x3f, 0xe8, 0x99, 0xf9, 0x4d, 0xbf, 0x6f, 0x5d, 0xc9, 0x67, 0x24, + 0x27, 0xc3, 0xd8, 0x76, 0xa8, 0xc9, 0xed, 0x4f, 0x3b, 0xdb, 0x9d, 0xa6, 0xb7, 0x37, 0xad, 0x6d, + 0x67, 0x5a, 0xdb, 0xbe, 0xb4, 0xb6, 0x5d, 0xc9, 0x1b, 0xfc, 0x30, 0x95, 0x43, 0x11, 0x2f, 0x4c, + 0xf3, 0xa9, 0x58, 0x26, 0x4f, 0x7a, 0x20, 0x15, 0x0b, 0xa9, 0x58, 0xb6, 0xdd, 0x84, 0x75, 0x77, + 0x61, 0x2e, 0xea, 0xba, 0xe3, 0x72, 0x2a, 0x56, 0x10, 0xca, 0x3b, 0x0b, 0xed, 0xf1, 0x5e, 0x96, + 0x43, 0xfc, 0xfd, 0x48, 0xbb, 0x42, 0xda, 0x15, 0xab, 0x23, 0x22, 0x73, 0x48, 0x64, 0x8e, 0xc9, + 0xac, 0x83, 0x32, 0xec, 0xa8, 0x92, 0x59, 0xb0, 0x9f, 0x76, 0x65, 0xfe, 0xbc, 0x40, 0x8a, 0xc7, + 0x54, 0x2d, 0x7c, 0x77, 0xea, 0xfc, 0xc0, 0xd4, 0x53, 0xba, 0xba, 0x15, 0x6c, 0x90, 0xcc, 0x4c, + 0x0f, 0xe7, 0xdb, 0x03, 0x9d, 0xd9, 0x00, 0x40, 0x1d, 0xa0, 0x0e, 0x50, 0x07, 0xa8, 0x03, 0xd4, + 0x59, 0x8a, 0x3a, 0x33, 0x57, 0xb9, 0x0d, 0xb0, 0x63, 0xc7, 0x1d, 0xbe, 0xa0, 0x8e, 0x15, 0x01, + 0x0d, 0xd0, 0x01, 0xe8, 0x00, 0x74, 0x00, 0x3a, 0x99, 0x02, 0x9d, 0xd8, 0xec, 0xb7, 0x00, 0x73, + 0xcc, 0x1e, 0x9c, 0x4e, 0x19, 0x84, 0xc9, 0x03, 0xd4, 0x29, 0x53, 0x00, 0xe2, 0x00, 0x71, 0x80, + 0x38, 0x2e, 0x23, 0x8e, 0xe9, 0xdd, 0x80, 0xe4, 0x8b, 0x27, 0x65, 0x9c, 0xa5, 0xea, 0x09, 0x7b, + 0x0d, 0x3b, 0x92, 0xa5, 0xf5, 0x6a, 0x2c, 0x5b, 0x35, 0x21, 0xad, 0xb6, 0x5e, 0xb1, 0xde, 0x5a, + 0x85, 0xa2, 0x75, 0x0a, 0x6d, 0x6b, 0x14, 0xaa, 0xd6, 0x27, 0xe4, 0xad, 0x4d, 0xc8, 0x5b, 0x97, + 0x90, 0xb7, 0x26, 0xd9, 0xac, 0x6a, 0xb0, 0xd6, 0x5b, 0x87, 0x10, 0x50, 0x73, 0x0a, 0x8a, 0xbe, + 0x88, 0xaa, 0x2f, 0xfc, 0x3b, 0x71, 0xd6, 0x91, 0xd0, 0x51, 0xf2, 0x6a, 0x4a, 0xe9, 0x63, 0x07, + 0xbe, 0x29, 0x55, 0x38, 0x2d, 0x70, 0xb8, 0x6e, 0x70, 0x7f, 0x3f, 0x54, 0x52, 0x3f, 0x51, 0xe1, + 0xe6, 0xdb, 0x01, 0x01, 0x9e, 0x00, 0x4f, 0x80, 0x27, 0xc0, 0x13, 0xe0, 0xe9, 0x2a, 0x78, 0xce, + 0x3c, 0xb6, 0x14, 0x51, 0xf2, 0xfa, 0x09, 0xf8, 0x19, 0x4f, 0x9e, 0x78, 0xd4, 0x1e, 0x39, 0x86, + 0x2e, 0x1a, 0x14, 0x38, 0x0a, 0x1c, 0x05, 0x8e, 0x02, 0x47, 0x81, 0xa3, 0xae, 0xe2, 0xe8, 0x6b, + 0xaf, 0x3d, 0xc6, 0xd2, 0x39, 0x2f, 0x0e, 0x3c, 0x8d, 0x27, 0x51, 0xaa, 0x07, 0xbf, 0x2f, 0x7b, + 0x5e, 0x28, 0xfc, 0xc8, 0x62, 0x6b, 0x92, 0x97, 0x23, 0xce, 0xf3, 0xe3, 0x01, 0x45, 0x81, 0xa2, + 0x40, 0x51, 0xa0, 0xe8, 0x06, 0xa2, 0xa8, 0xec, 0x09, 0xa5, 0xa5, 0x7e, 0x22, 0x42, 0xd2, 0xb2, + 0xc5, 0x31, 0x1a, 0xd3, 0x5b, 0xf9, 0xec, 0x47, 0x04, 0x4b, 0x74, 0x36, 0x81, 0x8d, 0xb3, 0x6f, + 0xf5, 0x93, 0xc6, 0x97, 0x4e, 0xab, 0x79, 0x75, 0x79, 0xdc, 0x69, 0x1d, 0xd7, 0x2f, 0x9a, 0x67, + 0xb6, 0x57, 0xeb, 0x37, 0xbf, 0x3f, 0x9c, 0x9c, 0x7f, 0xbe, 0xb6, 0xde, 0x55, 0x90, 0xa6, 0x31, + 0x68, 0x6a, 0x36, 0xeb, 0x17, 0x9d, 0x93, 0x66, 0xf3, 0xdc, 0x7e, 0x23, 0x4b, 0x82, 0x6e, 0xab, + 0x4c, 0x53, 0xf8, 0x7b, 0xf3, 0xec, 0xeb, 0xf1, 0x17, 0xcc, 0xe0, 0xea, 0x33, 0xd8, 0x6c, 0x35, + 0xfe, 0x68, 0x9c, 0xd5, 0x2f, 0x9b, 0x2d, 0xcc, 0xe2, 0x1a, 0x76, 0x78, 0x72, 0x75, 0x71, 0x79, + 0xdc, 0xa2, 0x5a, 0xcf, 0x56, 0x47, 0x68, 0x6f, 0x1a, 0x3f, 0xd9, 0x08, 0xf5, 0xd6, 0xf7, 0x23, + 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0xcf, 0xbe, 0x78, 0x9b, 0x1f, 0x0e, 0xda, 0x0d, 0xda, + 0x0d, 0xda, 0x0d, 0xda, 0x6d, 0x03, 0xb5, 0x9b, 0x96, 0xf7, 0x42, 0xcb, 0xee, 0xf7, 0xa8, 0x52, + 0x22, 0xd0, 0x6e, 0x36, 0x4b, 0x9f, 0x5f, 0x29, 0x39, 0xa9, 0x16, 0x9b, 0x53, 0xbe, 0x0a, 0x22, + 0xd1, 0x0d, 0x54, 0xcf, 0x6a, 0x39, 0xf7, 0x96, 0xaf, 0xee, 0x84, 0x75, 0xfd, 0x44, 0xd0, 0xf3, + 0xfd, 0x54, 0xd2, 0x34, 0x97, 0x27, 0xc0, 0xb4, 0xc5, 0x2a, 0x97, 0x70, 0xbc, 0xaf, 0xa1, 0xdf, + 0xd5, 0x32, 0x50, 0x5f, 0xe4, 0x5d, 0x6c, 0x8d, 0xf9, 0x2c, 0xb0, 0xfe, 0xdc, 0xa9, 0xff, 0x98, + 0x79, 0x13, 0x29, 0x1c, 0x96, 0x4a, 0x95, 0x6a, 0xa9, 0x94, 0xaf, 0x1e, 0x54, 0xf3, 0xb5, 0x72, + 0xb9, 0x50, 0xb1, 0x19, 0x69, 0x62, 0xb7, 0x9a, 0x0f, 0x9b, 0xf9, 0xed, 0xed, 0x2d, 0xd6, 0x38, + 0x96, 0x4a, 0x0f, 0xa5, 0xb9, 0xb4, 0x8d, 0x12, 0x44, 0x50, 0x35, 0x50, 0x35, 0x50, 0x35, 0x50, + 0x35, 0x24, 0xeb, 0x66, 0xa8, 0xa4, 0xb5, 0x2d, 0xf5, 0x1d, 0xcb, 0xcd, 0xe5, 0xde, 0x4e, 0xd7, + 0xc6, 0xeb, 0x0b, 0x92, 0x76, 0x7f, 0x1c, 0x4f, 0x88, 0xf6, 0x49, 0xd1, 0x3d, 0xb1, 0x05, 0x4f, + 0x8e, 0xa4, 0x5d, 0xe0, 0xd2, 0x67, 0x78, 0x48, 0x38, 0x26, 0x55, 0x07, 0xb5, 0xd4, 0xc0, 0x59, + 0x69, 0x2f, 0x48, 0xc3, 0xd8, 0x19, 0x54, 0x30, 0xdf, 0xe2, 0xab, 0x60, 0xf1, 0xd1, 0x2c, 0x3e, + 0xb4, 0x33, 0xcc, 0x54, 0x3b, 0x43, 0x26, 0x57, 0xf4, 0x61, 0xb3, 0xef, 0xc3, 0xb2, 0x2b, 0xa5, + 0x64, 0x9c, 0x24, 0x89, 0x69, 0x29, 0x8f, 0x49, 0x10, 0x36, 0xa4, 0x4d, 0x54, 0x4b, 0x4d, 0x6c, + 0xe3, 0xec, 0xe2, 0xb2, 0x7e, 0x72, 0xd2, 0x39, 0x6f, 0x35, 0x2f, 0x9b, 0xbf, 0x37, 0x4f, 0x3a, + 0x97, 0xff, 0x77, 0x7e, 0x9c, 0xa3, 0x0c, 0xd8, 0x46, 0xa4, 0x18, 0xf1, 0x83, 0x16, 0x8d, 0x66, + 0xd3, 0xdc, 0xbc, 0x38, 0xff, 0x4a, 0xe7, 0x1d, 0x47, 0x1f, 0xb3, 0x3e, 0x9f, 0x8d, 0x8b, 0xc6, + 0x05, 0xe6, 0xd3, 0xac, 0x7d, 0x1e, 0x60, 0x42, 0xcd, 0x4d, 0xe8, 0x49, 0xf3, 0xf7, 0xfa, 0x49, + 0xa7, 0xfe, 0xc7, 0x1f, 0xad, 0xe3, 0x3f, 0xea, 0x97, 0xc7, 0x98, 0x5a, 0x73, 0x53, 0xfb, 0xa5, + 0xd1, 0x3a, 0xfe, 0xfd, 0xf2, 0xe4, 0xff, 0x3a, 0xbf, 0x37, 0xcf, 0xce, 0x8e, 0x7f, 0xbf, 0xa4, + 0x48, 0x6b, 0xdd, 0x9e, 0xd9, 0xbd, 0xb8, 0xac, 0x5f, 0x36, 0x7e, 0xc7, 0x8c, 0x9a, 0x9b, 0xd1, + 0xcf, 0x7f, 0x9c, 0x63, 0x3a, 0xcd, 0x4d, 0xe7, 0x79, 0xe3, 0x14, 0xd3, 0x69, 0x90, 0x49, 0xfd, + 0x71, 0x4a, 0x69, 0x9e, 0x1f, 0xb2, 0x11, 0x1d, 0x40, 0xd2, 0x85, 0xdd, 0xeb, 0xb5, 0x91, 0x74, + 0x61, 0xab, 0xf7, 0x46, 0x6a, 0x49, 0xd9, 0xe9, 0xc1, 0x91, 0x0c, 0xf3, 0x45, 0xdc, 0xfa, 0xc3, + 0xfe, 0x64, 0x67, 0x3a, 0x8f, 0xd4, 0x8e, 0xc5, 0x03, 0x20, 0xb5, 0x63, 0xe5, 0x27, 0x8f, 0xd4, + 0x8e, 0x8d, 0xf0, 0xe6, 0x19, 0x48, 0xed, 0x90, 0x4a, 0x1f, 0x14, 0x09, 0x72, 0x3b, 0xaa, 0xc8, + 0x1d, 0xff, 0xf9, 0x8d, 0x20, 0x77, 0xdc, 0xdc, 0x78, 0xc8, 0x1d, 0xdf, 0x58, 0x13, 0x29, 0x15, + 0x6b, 0xa5, 0x5a, 0xa5, 0x5a, 0xac, 0x21, 0x63, 0x1c, 0xe2, 0xc5, 0x25, 0xf1, 0x62, 0x97, 0xd0, + 0xda, 0xed, 0xe4, 0x04, 0x59, 0x01, 0x59, 0x01, 0x59, 0x01, 0x59, 0x41, 0x53, 0xc3, 0x68, 0xf0, + 0x50, 0xf1, 0xac, 0xdb, 0x18, 0x45, 0x52, 0x1d, 0x59, 0x12, 0x1d, 0x92, 0xe6, 0xf8, 0x92, 0xe6, + 0xf6, 0x77, 0x0b, 0xc5, 0xeb, 0xbc, 0x77, 0x18, 0x67, 0xfa, 0x16, 0xda, 0xa9, 0x04, 0xe0, 0xc9, + 0xff, 0xdb, 0xcc, 0xad, 0xdb, 0x66, 0x5a, 0x35, 0x2d, 0xdc, 0x18, 0x0c, 0xb5, 0xb0, 0xcf, 0xad, + 0x5e, 0x0f, 0x06, 0x82, 0x05, 0x82, 0x05, 0x82, 0x05, 0x82, 0xb5, 0x81, 0x04, 0xeb, 0x26, 0x08, + 0xfa, 0xc2, 0x27, 0x39, 0x94, 0x57, 0xd8, 0x14, 0x68, 0x72, 0xba, 0x57, 0x5e, 0x5d, 0xa9, 0x40, + 0xfb, 0x5a, 0x5a, 0xaa, 0x85, 0x9c, 0x8b, 0xba, 0xff, 0x88, 0x7b, 0x7f, 0x30, 0x2d, 0x5d, 0xbd, + 0x1f, 0x0c, 0x84, 0xea, 0x4e, 0x80, 0x62, 0xbc, 0x3e, 0xf7, 0xc7, 0xff, 0x0b, 0xe5, 0xcd, 0xbe, + 0x7f, 0x2b, 0xbd, 0xc8, 0xbf, 0x95, 0x51, 0xf2, 0x6a, 0x7f, 0x42, 0xd5, 0x87, 0x4a, 0x76, 0xfd, + 0x48, 0xef, 0xf7, 0xe3, 0x35, 0xbd, 0x3f, 0xc1, 0xc7, 0x28, 0xfe, 0x27, 0xae, 0x68, 0xbd, 0x0d, + 0xdd, 0x52, 0x87, 0xea, 0xbb, 0x0a, 0xfe, 0xa7, 0x3c, 0x5f, 0xeb, 0x50, 0xde, 0x8c, 0x67, 0xc0, + 0x5e, 0xeb, 0xd4, 0x05, 0x63, 0xa1, 0x8f, 0x2a, 0xfa, 0xa8, 0x3a, 0x41, 0x2f, 0xd0, 0x47, 0x95, + 0x16, 0x1b, 0xac, 0xf5, 0x51, 0x4d, 0x39, 0x19, 0xfb, 0xfa, 0x2a, 0x3d, 0xa4, 0x5d, 0x95, 0x55, + 0x80, 0xca, 0x82, 0xca, 0x82, 0xca, 0xda, 0x26, 0x95, 0x65, 0xcb, 0x5d, 0x26, 0x03, 0x4c, 0x7a, + 0x8b, 0x6a, 0xdb, 0x5a, 0x6e, 0x27, 0xd5, 0x85, 0x7a, 0x32, 0xa4, 0x65, 0xd3, 0xa2, 0xd9, 0xd2, + 0xb7, 0xee, 0x3e, 0x29, 0xdd, 0x28, 0x8f, 0x3b, 0xa5, 0x76, 0xab, 0x6c, 0xee, 0x95, 0xcd, 0xcd, + 0xb2, 0xb9, 0x5b, 0xbb, 0x6e, 0xd7, 0xb2, 0xfb, 0xa5, 0x0b, 0x76, 0xa5, 0xd6, 0x9d, 0xfd, 0xfe, + 0x62, 0x29, 0x76, 0x59, 0x25, 0x18, 0xeb, 0x55, 0xbf, 0xb1, 0xb8, 0x79, 0xd8, 0x0b, 0x18, 0x6c, + 0x68, 0x92, 0x90, 0x45, 0xd3, 0xcb, 0xc5, 0xd1, 0x28, 0x32, 0x60, 0x8e, 0x87, 0xa3, 0x01, 0xe5, + 0x02, 0x40, 0x19, 0xa0, 0x0c, 0x50, 0x06, 0x28, 0xbb, 0xab, 0x8d, 0xe6, 0x35, 0x52, 0x5f, 0x28, + 0xfa, 0x6a, 0x29, 0xc9, 0xc8, 0x1f, 0x33, 0x99, 0x04, 0x4d, 0xe5, 0xa4, 0x39, 0x9c, 0x35, 0xaf, + 0xd3, 0xe6, 0x72, 0xde, 0xec, 0x4e, 0x9c, 0xdd, 0x99, 0xb3, 0x3b, 0x75, 0x1a, 0xe7, 0x4e, 0xe4, + 0xe4, 0xe9, 0x15, 0x58, 0x6a, 0xdd, 0x0e, 0xa5, 0xd2, 0x85, 0x0a, 0x43, 0xfd, 0xc4, 0x0a, 0xe1, + 0x90, 0x34, 0xc7, 0xca, 0xde, 0xfe, 0xa1, 0xf5, 0x49, 0x3b, 0xd4, 0xc7, 0xce, 0x98, 0xe1, 0x35, + 0x35, 0x3c, 0xf1, 0xb1, 0xb4, 0xd4, 0xf8, 0x0c, 0x47, 0x8f, 0x98, 0xdc, 0xd5, 0xbc, 0xc9, 0xf9, + 0x8f, 0x5b, 0x6f, 0x72, 0x95, 0x72, 0xf9, 0xa0, 0xbc, 0xc5, 0x66, 0xf7, 0x21, 0x9b, 0xa3, 0x65, + 0xa5, 0x2c, 0x2a, 0xc5, 0x69, 0x56, 0xba, 0x9d, 0xb6, 0xc5, 0x32, 0x92, 0x60, 0xc7, 0x0d, 0x3a, + 0x12, 0x3a, 0x12, 0x3a, 0x12, 0x3a, 0x12, 0x3a, 0x72, 0x89, 0x8e, 0x3c, 0x64, 0x90, 0x91, 0x65, + 0xc8, 0x48, 0xc8, 0x48, 0xc8, 0x48, 0xc8, 0xc8, 0x0c, 0x98, 0x5c, 0xb1, 0x0c, 0x11, 0x09, 0x11, + 0xb9, 0xed, 0x22, 0xf2, 0x61, 0xba, 0x1a, 0x38, 0x54, 0x64, 0x3c, 0x36, 0x64, 0x24, 0x64, 0x24, + 0x64, 0x24, 0x64, 0x24, 0x64, 0x24, 0xf9, 0xba, 0xbd, 0x91, 0xca, 0x0f, 0x9f, 0x18, 0x74, 0x64, + 0x8d, 0x70, 0xc8, 0x13, 0xa1, 0xee, 0x26, 0x89, 0xa2, 0x10, 0x92, 0x5b, 0xc0, 0xea, 0x0b, 0x10, + 0x92, 0x10, 0x92, 0xb4, 0x26, 0x87, 0xfd, 0x48, 0x48, 0xc9, 0x2d, 0x97, 0x92, 0xe2, 0x51, 0x0b, + 0xd5, 0x13, 0x3d, 0x7a, 0x21, 0x99, 0x8c, 0x0c, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, 0x19, 0x09, + 0x19, 0x49, 0x2f, 0x23, 0xad, 0x17, 0xd5, 0x5a, 0xe6, 0x86, 0x2d, 0x15, 0xd9, 0xca, 0x26, 0x48, + 0x07, 0x83, 0x31, 0x53, 0xf4, 0xfb, 0xf4, 0x20, 0x9d, 0x8c, 0x0c, 0x90, 0x06, 0x48, 0x03, 0xa4, + 0x01, 0xd2, 0x00, 0x69, 0x80, 0x34, 0x40, 0x7a, 0xd1, 0x9c, 0x0d, 0xfc, 0x50, 0x4b, 0x0e, 0x8c, + 0x9e, 0x0d, 0x0c, 0x88, 0x06, 0x44, 0x03, 0xa2, 0x01, 0xd1, 0x80, 0x68, 0x40, 0x34, 0x20, 0x7a, + 0xd1, 0x9c, 0xe9, 0xd0, 0x57, 0x91, 0xd4, 0xf2, 0x81, 0x21, 0x6f, 0xea, 0xd5, 0xd8, 0x00, 0x6a, + 0x00, 0x35, 0x80, 0x1a, 0x40, 0x0d, 0xa0, 0x06, 0x50, 0x6f, 0x20, 0x50, 0x6f, 0x74, 0xb9, 0x28, + 0xcb, 0x5d, 0x29, 0x52, 0xe3, 0x59, 0xec, 0x52, 0x91, 0x6e, 0xa8, 0x90, 0xfe, 0x91, 0x8d, 0x56, + 0x16, 0x74, 0x06, 0xb1, 0x59, 0x55, 0x9a, 0xff, 0x14, 0x4f, 0x14, 0xc7, 0xac, 0x73, 0x27, 0x32, + 0xd2, 0x75, 0xad, 0x2d, 0x97, 0x84, 0x3e, 0x95, 0xea, 0xb8, 0x2f, 0xc6, 0x98, 0x17, 0xe5, 0x8e, + 0x76, 0xd4, 0xb0, 0xdf, 0xb7, 0x58, 0xe2, 0xf2, 0xd4, 0x7f, 0xa4, 0x1b, 0xac, 0x19, 0xf6, 0x44, + 0x28, 0x7a, 0x9f, 0x9f, 0xa6, 0x43, 0x6d, 0x94, 0x91, 0x11, 0xf9, 0x2f, 0x6e, 0xbf, 0x95, 0xb3, + 0x5a, 0x4f, 0x35, 0x1c, 0x76, 0xb5, 0x9a, 0x32, 0x82, 0xcf, 0x77, 0x83, 0x4e, 0x4b, 0xde, 0x74, + 0xea, 0xb7, 0xf2, 0xc2, 0xbf, 0x95, 0x9d, 0xc6, 0xe0, 0xa1, 0x72, 0x15, 0x5f, 0x7e, 0xe7, 0x24, + 0xe8, 0x8e, 0x7f, 0xd5, 0x1a, 0x5f, 0x76, 0xe7, 0x2a, 0xbe, 0xc6, 0x7a, 0x72, 0x89, 0xe8, 0x12, + 0xe5, 0xbe, 0x3d, 0xd3, 0xda, 0xb1, 0xb3, 0x2d, 0xa3, 0x3e, 0x38, 0xf4, 0xe8, 0x67, 0x38, 0x19, + 0x2b, 0xc9, 0x9d, 0x20, 0x94, 0x77, 0x52, 0xed, 0x8c, 0x9f, 0x90, 0x27, 0x4d, 0x25, 0x03, 0xda, + 0xc1, 0x48, 0xab, 0x98, 0x68, 0x15, 0x03, 0xed, 0x60, 0x9e, 0x29, 0x83, 0xb0, 0xe4, 0x03, 0x2c, + 0xae, 0x7d, 0x83, 0xf0, 0xb4, 0x22, 0x1c, 0x99, 0x71, 0x35, 0xeb, 0x3b, 0x86, 0xf5, 0xbe, 0x61, + 0x4d, 0x0b, 0x32, 0x6d, 0x39, 0x56, 0x2c, 0x66, 0xbd, 0x27, 0xb5, 0xfa, 0xfc, 0xae, 0x31, 0xb7, + 0x86, 0x4a, 0xce, 0x1b, 0x2d, 0x29, 0x6f, 0xa8, 0x64, 0xfc, 0x4b, 0x98, 0xba, 0xb8, 0xe6, 0x17, + 0x19, 0x0c, 0x3f, 0xdb, 0x09, 0x2b, 0x9b, 0x0e, 0x17, 0x5b, 0x0b, 0x03, 0x5b, 0x0b, 0xef, 0x5a, + 0x0b, 0xdb, 0xc2, 0xeb, 0x2d, 0xf7, 0x7a, 0x06, 0x22, 0x4e, 0x6b, 0x38, 0xbd, 0x0f, 0x84, 0x0f, + 0xc4, 0xd4, 0x83, 0x30, 0xfb, 0x00, 0x72, 0x6b, 0xf9, 0xfd, 0xf7, 0x71, 0x91, 0xd5, 0x1e, 0xf3, + 0xfb, 0x1f, 0xd2, 0x0a, 0x0f, 0x28, 0xa7, 0x84, 0xbc, 0xfb, 0xe7, 0x26, 0x08, 0x57, 0x6f, 0x69, + 0x9b, 0xb8, 0xe5, 0x97, 0xaf, 0x5a, 0xd1, 0x50, 0xd6, 0xc3, 0xae, 0xb5, 0x31, 0xcb, 0x04, 0x56, + 0x99, 0xc5, 0x28, 0x53, 0xd8, 0x64, 0x1c, 0x93, 0x8c, 0x63, 0x91, 0x71, 0x0c, 0xa2, 0x75, 0x71, + 0xeb, 0xb6, 0xd7, 0x48, 0xd6, 0x8e, 0x39, 0x36, 0x99, 0x7c, 0xa3, 0x63, 0x84, 0x32, 0x0f, 0x42, + 0x09, 0x42, 0xb9, 0x91, 0x84, 0xd2, 0x54, 0x0f, 0x9d, 0x9c, 0xdf, 0xfb, 0x77, 0x32, 0x27, 0x52, + 0x79, 0x83, 0x20, 0xd2, 0xe6, 0x2c, 0x25, 0xa9, 0x3e, 0xf5, 0x66, 0x00, 0x53, 0x21, 0x49, 0xa3, + 0xed, 0xc8, 0x8c, 0xa7, 0x42, 0xd9, 0x48, 0x75, 0xb2, 0x9b, 0xca, 0x64, 0x2b, 0x55, 0xc9, 0x7a, + 0x2a, 0x92, 0xf5, 0x54, 0x23, 0xeb, 0xa9, 0x44, 0x6e, 0x05, 0xfb, 0x4d, 0xb7, 0xe7, 0xca, 0x4d, + 0x83, 0x6a, 0xc6, 0x0d, 0x6b, 0xb6, 0x1c, 0xa6, 0xdf, 0x6f, 0xf8, 0xa1, 0xdb, 0xe9, 0x77, 0x68, + 0x2c, 0x98, 0x45, 0xe1, 0x70, 0x68, 0x1c, 0x8f, 0x6d, 0x07, 0x44, 0xe6, 0x88, 0xc8, 0x1c, 0x12, + 0x99, 0x63, 0x32, 0xeb, 0xa0, 0x0c, 0x3b, 0x2a, 0x6b, 0x0e, 0x6b, 0xde, 0x71, 0xd9, 0xb3, 0xc7, + 0x39, 0xff, 0x65, 0xcb, 0x16, 0xed, 0xb6, 0x6d, 0xb5, 0x9e, 0x42, 0x4e, 0x91, 0x32, 0x4e, 0x9b, + 0x22, 0x4e, 0x95, 0x12, 0x4e, 0x9e, 0x02, 0x4e, 0x9e, 0xf2, 0x4d, 0x9e, 0xe2, 0xbd, 0x59, 0xc9, + 0x8d, 0xb6, 0xdb, 0xac, 0xe6, 0x66, 0x09, 0x20, 0x64, 0x7d, 0xae, 0xcd, 0x66, 0x9c, 0xfc, 0xcc, + 0x65, 0xe6, 0xd1, 0xe9, 0xda, 0x71, 0x57, 0x4a, 0xed, 0x52, 0xd9, 0x5c, 0x2b, 0x9b, 0x8b, 0x65, + 0x73, 0xb5, 0x76, 0x5d, 0xae, 0x65, 0xd7, 0x9b, 0xcc, 0x1a, 0xd9, 0xa9, 0x99, 0x64, 0xdd, 0xf5, + 0x85, 0x7f, 0x1b, 0x8a, 0x5b, 0x8a, 0x45, 0x37, 0x63, 0x96, 0x55, 0x82, 0xb1, 0xce, 0xa7, 0x1b, + 0xad, 0x9f, 0x3e, 0xc5, 0x9b, 0xd5, 0xfb, 0x33, 0x28, 0xd8, 0xd4, 0x63, 0x12, 0x16, 0xf9, 0xe5, + 0x80, 0xc6, 0xdd, 0xbf, 0xa0, 0x32, 0x09, 0xb9, 0x04, 0x28, 0x03, 0x94, 0x01, 0xca, 0x00, 0x65, + 0x80, 0xb2, 0xc3, 0xa0, 0x1c, 0x2f, 0x3b, 0x60, 0x72, 0x6a, 0xaa, 0xcc, 0x64, 0xe7, 0xfe, 0xb2, + 0xc1, 0x99, 0xc8, 0xde, 0xfd, 0x65, 0x53, 0x03, 0x22, 0x03, 0x91, 0x81, 0xc8, 0x40, 0xe4, 0xd5, + 0x67, 0xcd, 0x76, 0xa4, 0x32, 0x19, 0x68, 0x72, 0xd0, 0x5b, 0xaa, 0x9e, 0x78, 0x64, 0xea, 0xc2, + 0x16, 0x8f, 0x8d, 0x6a, 0x42, 0x9b, 0xe6, 0xb0, 0x79, 0x1d, 0x37, 0x97, 0x03, 0x67, 0x77, 0xe4, + 0xec, 0x0e, 0x9d, 0xdd, 0xb1, 0xd3, 0x38, 0x78, 0x22, 0x47, 0x4f, 0x2f, 0xc1, 0x18, 0xa5, 0x18, + 0x87, 0x24, 0x5b, 0x24, 0xcd, 0xfe, 0xe3, 0xef, 0x04, 0x92, 0x22, 0xa1, 0xa3, 0xe4, 0xd5, 0x54, + 0xc8, 0xc5, 0x30, 0x85, 0x32, 0x85, 0xbf, 0x3c, 0xdf, 0x37, 0x22, 0xd2, 0xde, 0xf4, 0x34, 0x10, + 0x31, 0xaf, 0x78, 0x19, 0x1a, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x82, 0x7c, + 0xdd, 0xa2, 0x48, 0xe1, 0x46, 0xc0, 0x74, 0x37, 0xb8, 0xbf, 0x1f, 0x2a, 0xa9, 0x9f, 0xb8, 0x82, + 0x00, 0x6f, 0x2f, 0x00, 0x90, 0x0d, 0xc8, 0x06, 0x64, 0x03, 0xb2, 0x01, 0xd9, 0x88, 0x04, 0x70, + 0x46, 0x02, 0x66, 0xb8, 0x24, 0x45, 0x94, 0xbc, 0x7e, 0x42, 0x30, 0x60, 0xb5, 0x29, 0x17, 0x8f, + 0xda, 0x63, 0x67, 0x1a, 0x8b, 0x2e, 0x02, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, 0x03, 0x6c, + 0x03, 0x6c, 0x83, 0x93, 0x6d, 0xbc, 0xc6, 0xa6, 0x31, 0xe3, 0x98, 0xc3, 0x2a, 0xb0, 0x8e, 0xd5, + 0xa6, 0x5e, 0xaa, 0x07, 0xbf, 0x2f, 0x7b, 0x5e, 0x28, 0xfc, 0x88, 0xa8, 0x55, 0xc2, 0x9c, 0x85, + 0xbf, 0x19, 0x1f, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x7c, 0xdd, 0xca, + 0x9e, 0x50, 0x5a, 0xea, 0x27, 0x26, 0xbe, 0x51, 0x26, 0x1c, 0xb3, 0x31, 0xbd, 0xd5, 0xcf, 0x7e, + 0xc4, 0xe0, 0x32, 0x66, 0x13, 0xde, 0x38, 0xfb, 0x56, 0x3f, 0x69, 0x7c, 0xe9, 0xb4, 0x9a, 0x57, + 0x97, 0xc7, 0x9d, 0xd6, 0x71, 0xfd, 0xa2, 0x79, 0x46, 0xed, 0x3d, 0xbe, 0xf9, 0xfd, 0xe1, 0xa4, + 0xc8, 0xce, 0x35, 0xe9, 0xb8, 0xe3, 0x3f, 0x3f, 0xc8, 0x47, 0x5c, 0x38, 0xfb, 0xf5, 0x8b, 0xce, + 0x49, 0xb3, 0x79, 0x9e, 0x23, 0xbf, 0x9a, 0xd1, 0xc7, 0x6d, 0x9d, 0xf2, 0xdf, 0x9b, 0x67, 0x5f, + 0x8f, 0xbf, 0x60, 0xc6, 0xe9, 0x66, 0xbc, 0xd9, 0x6a, 0xfc, 0xd1, 0x38, 0xab, 0x5f, 0x36, 0x5b, + 0x98, 0x75, 0x42, 0x3b, 0x3f, 0xb9, 0xba, 0xb8, 0x3c, 0x6e, 0x71, 0xf9, 0x17, 0xd2, 0x11, 0xdb, + 0x59, 0xe3, 0x7b, 0x99, 0x50, 0xf7, 0x7d, 0x3f, 0xd2, 0xde, 0x7d, 0xd0, 0x93, 0xb7, 0x52, 0xf4, + 0xe8, 0xc5, 0xfd, 0xfc, 0xf0, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xd0, 0xf6, 0xe4, + 0xeb, 0x56, 0xcb, 0x7b, 0xa1, 0x65, 0xf7, 0x7b, 0x54, 0x29, 0x31, 0x68, 0xfb, 0x43, 0xc2, 0x21, + 0xaf, 0x94, 0x9c, 0xb4, 0x55, 0xcb, 0x29, 0x5f, 0x05, 0x91, 0xe8, 0x06, 0xaa, 0x17, 0x51, 0xde, + 0x72, 0xcb, 0x57, 0x77, 0x82, 0x5c, 0x4f, 0xd3, 0x13, 0xde, 0xdc, 0xa9, 0x54, 0xe4, 0x1e, 0x99, + 0x09, 0xe3, 0x17, 0x47, 0x4d, 0x18, 0xc7, 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, 0x45, 0xde, + 0xc5, 0xd6, 0x9e, 0xdf, 0x06, 0x55, 0x97, 0x3b, 0xf5, 0x1f, 0xb7, 0xde, 0xe4, 0x0a, 0x87, 0xa5, + 0x52, 0xa5, 0x5a, 0x2a, 0xe5, 0xab, 0x07, 0xd5, 0x7c, 0xad, 0x5c, 0x2e, 0x54, 0x28, 0x23, 0xa7, + 0xce, 0x59, 0xe1, 0x87, 0x6c, 0x8e, 0xd6, 0x86, 0xc6, 0xfd, 0x65, 0x33, 0xa4, 0xaa, 0x27, 0x9a, + 0x22, 0x55, 0x34, 0x75, 0x45, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0x17, + 0xac, 0xdb, 0xa1, 0x54, 0xfa, 0xa0, 0xc8, 0x20, 0x69, 0xab, 0x90, 0x94, 0x90, 0x94, 0x90, 0x94, + 0x90, 0x94, 0x19, 0x30, 0xb9, 0x52, 0xb1, 0x56, 0xaa, 0x55, 0xaa, 0xc5, 0x1a, 0x84, 0x24, 0x84, + 0xe4, 0x36, 0x0b, 0x49, 0x5a, 0x01, 0x42, 0x5b, 0x09, 0x1b, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, + 0x32, 0x12, 0x32, 0x72, 0xc1, 0xba, 0x9d, 0x74, 0xd7, 0x27, 0xb7, 0xe1, 0x24, 0xf5, 0xf9, 0x90, + 0xf6, 0xa8, 0x95, 0x16, 0xa1, 0x22, 0x97, 0x93, 0xb9, 0xbf, 0x77, 0x77, 0xaf, 0xf3, 0x5e, 0xcd, + 0xf7, 0x6e, 0xeb, 0xde, 0xd7, 0xf6, 0x8f, 0xc2, 0xc7, 0xd2, 0xe8, 0x68, 0xef, 0x47, 0x75, 0xf4, + 0xf6, 0x87, 0xcf, 0x8b, 0xde, 0x56, 0xf8, 0x58, 0x1d, 0x1d, 0x2d, 0xf9, 0x4d, 0x65, 0x74, 0xf4, + 0x8b, 0xdf, 0x51, 0x1e, 0xed, 0xa6, 0xde, 0x3a, 0xfe, 0x79, 0x71, 0xd9, 0x07, 0x4a, 0x4b, 0x3e, + 0x70, 0xb0, 0xec, 0x03, 0x07, 0x4b, 0x3e, 0xb0, 0xf4, 0x92, 0x8a, 0x4b, 0x3e, 0x50, 0x1e, 0x3d, + 0xa7, 0xde, 0xbf, 0xbb, 0xf8, 0xad, 0x95, 0xd1, 0xde, 0xf3, 0xb2, 0xdf, 0x55, 0x47, 0xcf, 0x47, + 0x7b, 0x7b, 0xfb, 0xbb, 0x85, 0xe2, 0x75, 0xde, 0x3b, 0x6c, 0x3f, 0x17, 0xae, 0xf3, 0x5e, 0xa1, + 0x3d, 0x7e, 0x67, 0xfb, 0xf9, 0xba, 0xe0, 0xd5, 0x66, 0x2f, 0xc7, 0xff, 0xbf, 0xf7, 0x5b, 0x0e, + 0xb4, 0xd4, 0x41, 0x5a, 0x3a, 0x3d, 0x1f, 0x67, 0xb5, 0xa9, 0xe4, 0x52, 0xcf, 0xf8, 0x7a, 0x70, + 0x10, 0x54, 0x10, 0x54, 0x10, 0x54, 0x10, 0x54, 0x10, 0x54, 0xf2, 0x75, 0x8b, 0x42, 0x81, 0x8e, + 0x8f, 0x60, 0xbb, 0xd7, 0x41, 0x5d, 0xa9, 0x40, 0xfb, 0x5a, 0x12, 0x1d, 0xd1, 0xcf, 0x45, 0xdd, + 0x7f, 0xc4, 0xbd, 0x3f, 0x2d, 0x4d, 0x9c, 0xdb, 0x0f, 0x06, 0x42, 0x75, 0x27, 0x40, 0x39, 0xf6, + 0x1f, 0xfb, 0xe3, 0xff, 0x85, 0xf2, 0x66, 0xdf, 0xbf, 0x95, 0x5e, 0xe4, 0xdf, 0xca, 0x28, 0x79, + 0xb5, 0x3f, 0x91, 0x52, 0x43, 0x25, 0xbb, 0x7e, 0xa4, 0xf7, 0x95, 0x90, 0x77, 0xff, 0xdc, 0x04, + 0x61, 0x94, 0xbc, 0xda, 0xf7, 0x7b, 0xff, 0x4e, 0xdc, 0x90, 0x54, 0xde, 0x20, 0x88, 0xf4, 0x7e, + 0xdc, 0x85, 0x3f, 0xfe, 0x27, 0xae, 0xe1, 0x80, 0x46, 0x40, 0xe9, 0xc7, 0x31, 0x54, 0xdf, 0x55, + 0xf0, 0x3f, 0xe5, 0xf9, 0x5a, 0x87, 0xf2, 0x66, 0x3c, 0x63, 0x74, 0x5d, 0x81, 0x16, 0x8c, 0x8d, + 0x16, 0x41, 0xae, 0x32, 0x3e, 0xb4, 0x08, 0xca, 0x26, 0xa3, 0x43, 0x8b, 0xa0, 0x95, 0x66, 0x8d, + 0xac, 0x45, 0x50, 0xca, 0x49, 0xd2, 0x4b, 0xf5, 0xf4, 0x25, 0xd0, 0x0a, 0xf6, 0x02, 0x04, 0x3b, + 0x04, 0x3b, 0x04, 0x3b, 0x04, 0xbb, 0x3b, 0x82, 0x9d, 0xca, 0xfd, 0x27, 0x03, 0x4e, 0x1a, 0xe2, + 0x68, 0xea, 0x30, 0xc1, 0x4e, 0xaa, 0x61, 0xdc, 0xe4, 0x12, 0x88, 0x4d, 0x97, 0x27, 0x9b, 0x89, + 0x1c, 0x0e, 0x38, 0x61, 0xc1, 0x0d, 0x78, 0xe0, 0x86, 0x09, 0x67, 0xe0, 0xc2, 0x19, 0xd8, 0x70, + 0x06, 0x3e, 0x68, 0x61, 0x84, 0x18, 0x4e, 0x92, 0x59, 0xbe, 0xe4, 0x70, 0xf0, 0x3b, 0xbc, 0x75, + 0x61, 0x53, 0x6c, 0xbf, 0xca, 0x30, 0x76, 0xaa, 0x75, 0xf8, 0x0b, 0xd8, 0x65, 0x34, 0x7f, 0x93, + 0xd0, 0xb4, 0x89, 0xba, 0x8d, 0x2f, 0xb5, 0x69, 0x8a, 0xee, 0xe3, 0xcc, 0xda, 0x15, 0xa4, 0x05, + 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x85, 0x83, 0xb4, 0x50, 0x6b, 0xe1, 0x79, 0x4d, 0xdc, 0x17, 0x8c, + 0x47, 0xbb, 0xe6, 0xa4, 0xf1, 0xf8, 0x4a, 0x3e, 0x6e, 0xe5, 0x79, 0x1f, 0x2e, 0xd0, 0x71, 0x01, + 0x7c, 0xdc, 0x02, 0x21, 0x57, 0xc0, 0xc8, 0x39, 0x50, 0x72, 0x0e, 0x9c, 0x9c, 0x03, 0x29, 0x1e, + 0xb0, 0x62, 0x02, 0x2d, 0x7e, 0xc5, 0x9d, 0xf2, 0x1b, 0x43, 0xa9, 0x74, 0xa1, 0xc2, 0xe9, 0x33, + 0xa6, 0x28, 0x52, 0x61, 0xbc, 0x04, 0x9e, 0x13, 0xe9, 0x6f, 0xff, 0xf0, 0xfa, 0xcc, 0x1d, 0xee, + 0x13, 0xeb, 0x8e, 0xd1, 0x8b, 0xd4, 0xe5, 0x30, 0x9f, 0x68, 0x4f, 0x5d, 0x8f, 0x03, 0xa7, 0x8c, + 0x1d, 0x71, 0xa7, 0xf3, 0x26, 0xec, 0x3f, 0xc2, 0x84, 0x7f, 0x62, 0xc2, 0x95, 0x72, 0xf9, 0xa0, + 0x0c, 0x33, 0x76, 0x8b, 0x8b, 0xf0, 0x8f, 0xde, 0xfe, 0xb0, 0x1d, 0xf7, 0xcb, 0x51, 0x98, 0x83, + 0x6f, 0x27, 0x7d, 0x71, 0xd8, 0x80, 0x61, 0x47, 0x1d, 0x71, 0x03, 0xc4, 0x0d, 0x10, 0x37, 0x40, + 0xdc, 0x00, 0x71, 0x83, 0x8c, 0xc4, 0x0d, 0x0e, 0x1d, 0x08, 0x1b, 0x94, 0x11, 0x36, 0x40, 0xd8, + 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0xb0, 0x6e, 0xc2, 0xc5, 0x32, 0x82, 0x06, 0x08, 0x1a, + 0x20, 0x68, 0x40, 0x1b, 0x34, 0x78, 0x98, 0xae, 0x3e, 0x17, 0xa2, 0x06, 0xf1, 0xb5, 0x20, 0x6c, + 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0xc1, 0x3b, 0xfd, 0xc6, 0x8d, + 0x54, 0x7e, 0xf8, 0xe4, 0x40, 0xdc, 0xa0, 0xc6, 0x78, 0x09, 0x27, 0x42, 0xdd, 0x4d, 0x12, 0xff, + 0x11, 0x38, 0x40, 0xe0, 0xe0, 0xa7, 0xaa, 0xab, 0x00, 0xcd, 0x85, 0xc0, 0xc1, 0x66, 0x9b, 0x30, + 0xf2, 0x0d, 0x10, 0x3a, 0x40, 0xe8, 0x80, 0xd4, 0xcc, 0xc5, 0xa3, 0x16, 0xaa, 0x47, 0xd8, 0x24, + 0x7d, 0x29, 0xe5, 0x4b, 0xae, 0x04, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, + 0x03, 0x84, 0x0d, 0xde, 0x1b, 0x36, 0x20, 0xaf, 0x17, 0xbb, 0x0c, 0x46, 0x88, 0xea, 0xc7, 0x6e, + 0x27, 0x69, 0x09, 0x06, 0x63, 0x66, 0xee, 0xf7, 0xf9, 0x49, 0x4b, 0x72, 0x25, 0x20, 0x2d, 0x20, + 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0xe9, 0x39, 0x1e, + 0xf8, 0xa1, 0x96, 0x2e, 0x70, 0x96, 0xd9, 0x85, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, + 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0xa4, 0xe7, 0x58, 0x87, 0xbe, 0x8a, 0xa4, 0x96, + 0x0f, 0x0e, 0xe4, 0x95, 0xbe, 0xba, 0x16, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, + 0x17, 0x10, 0x17, 0x10, 0x17, 0xe7, 0x89, 0x4b, 0xa6, 0xcb, 0x8b, 0x12, 0x37, 0x28, 0x4c, 0x8d, + 0xcf, 0xd3, 0xb0, 0x30, 0xdd, 0x1b, 0x2f, 0xfd, 0x23, 0x8a, 0xae, 0x86, 0x7c, 0xb6, 0x96, 0xad, + 0x86, 0x31, 0x7f, 0x8a, 0x27, 0x8e, 0x8a, 0x2f, 0xb9, 0x13, 0x19, 0xe9, 0xba, 0xd6, 0xc4, 0xdd, + 0x6a, 0x4e, 0xa5, 0x3a, 0xee, 0x8b, 0x31, 0x1d, 0x88, 0x72, 0x47, 0x3b, 0x6a, 0xd8, 0xef, 0x13, + 0x56, 0x9b, 0x3f, 0xf5, 0x1f, 0xf9, 0x06, 0x6f, 0x86, 0x3d, 0x11, 0x8a, 0xde, 0xe7, 0xa7, 0xe9, + 0xd0, 0x99, 0x32, 0x62, 0x26, 0x57, 0xec, 0xb0, 0x0b, 0xce, 0x91, 0x76, 0x51, 0x08, 0x87, 0x5d, + 0xad, 0xa6, 0x3c, 0xeb, 0xf3, 0xdd, 0xa0, 0xd3, 0x92, 0x37, 0x9d, 0xfa, 0xad, 0xbc, 0xf0, 0x6f, + 0x65, 0xa7, 0x31, 0x78, 0xa8, 0x5c, 0xc5, 0x77, 0xda, 0x39, 0x9b, 0xde, 0x5f, 0xa7, 0xde, 0xfb, + 0xb7, 0x25, 0x6f, 0x1a, 0xea, 0x3c, 0x88, 0x74, 0xa7, 0x35, 0xbe, 0xab, 0xce, 0x55, 0x7c, 0x0b, + 0xf5, 0xe4, 0x0e, 0xd0, 0x85, 0x99, 0x7f, 0x85, 0x6d, 0x49, 0x17, 0xe6, 0x05, 0x0d, 0x7f, 0x37, + 0xb5, 0x25, 0xf3, 0x87, 0x0d, 0xb2, 0xb2, 0x19, 0xf9, 0x88, 0x23, 0x17, 0x3b, 0xe3, 0xa7, 0xee, + 0x49, 0x5b, 0x59, 0xe0, 0x34, 0x8c, 0x83, 0x94, 0x61, 0x90, 0x32, 0x0a, 0x1a, 0x06, 0x61, 0xcb, + 0xd2, 0x88, 0xfc, 0x18, 0x8f, 0xff, 0xb2, 0x08, 0xf6, 0x66, 0xc0, 0xdd, 0x8e, 0x37, 0x35, 0xef, + 0xeb, 0xcc, 0x7e, 0xa3, 0x61, 0x5b, 0xb6, 0x6d, 0xc3, 0xd4, 0xb6, 0x6b, 0xd6, 0x28, 0xcc, 0x3d, + 0x3a, 0x33, 0xdf, 0x64, 0xe8, 0xe1, 0xdb, 0x7a, 0xe8, 0x64, 0x0f, 0xdb, 0xa0, 0x6f, 0x5a, 0xd7, + 0x17, 0x99, 0x31, 0xb8, 0xf5, 0xcd, 0xc3, 0x80, 0x69, 0xe4, 0x5e, 0xcf, 0x72, 0x68, 0x2e, 0xc2, + 0xfe, 0x52, 0xcb, 0x67, 0xfe, 0xfb, 0x0d, 0x19, 0xb3, 0xd9, 0xde, 0x73, 0xc6, 0xf7, 0x45, 0x6d, + 0xec, 0x73, 0xda, 0xdd, 0xb7, 0xb4, 0xb5, 0x0f, 0x69, 0x7d, 0x5f, 0xd1, 0xfa, 0x3e, 0xa1, 0xf5, + 0x7d, 0x3f, 0xb7, 0x60, 0xc2, 0x74, 0xaf, 0xb3, 0xdc, 0x14, 0xa3, 0x8d, 0x1b, 0xd6, 0x6c, 0x39, + 0x4c, 0xbf, 0xdf, 0xf0, 0x43, 0xb7, 0xd3, 0xdc, 0xf2, 0xc5, 0xd1, 0x14, 0x0d, 0x7f, 0xb1, 0xc5, + 0xc4, 0x0a, 0x9a, 0x84, 0x09, 0xdb, 0x89, 0x10, 0x64, 0x09, 0x0e, 0x64, 0x89, 0x0b, 0x64, 0x09, + 0x09, 0x6e, 0x8b, 0x19, 0x5b, 0xcd, 0x19, 0x63, 0xc7, 0x62, 0xcf, 0x1e, 0xe7, 0xfc, 0x97, 0x2d, + 0x5b, 0xb4, 0xdb, 0xa3, 0xd7, 0x7a, 0x3e, 0x19, 0x45, 0xbe, 0x18, 0x6d, 0x3e, 0x18, 0x55, 0xbe, + 0x17, 0x79, 0x3e, 0x17, 0x79, 0xbe, 0x16, 0x79, 0x3e, 0xd6, 0x66, 0x45, 0xc4, 0x6d, 0xf7, 0xac, + 0xcd, 0xcd, 0x82, 0xec, 0xd6, 0x2d, 0xf9, 0xe5, 0xcc, 0x91, 0xcd, 0xa8, 0xfe, 0x5b, 0x97, 0x69, + 0x39, 0x43, 0x96, 0x2c, 0x15, 0x97, 0x32, 0xe5, 0x96, 0x27, 0xb5, 0x96, 0x3a, 0x85, 0x96, 0x2d, + 0x55, 0x96, 0x2d, 0x25, 0x96, 0x2d, 0xf5, 0x75, 0xb3, 0xb7, 0xbc, 0xc9, 0x52, 0x56, 0x93, 0x75, + 0xd7, 0x17, 0xfe, 0x6d, 0x28, 0x6e, 0x29, 0x16, 0xdd, 0x8c, 0x59, 0x56, 0x09, 0xc6, 0x3a, 0x9f, + 0x06, 0x97, 0x3f, 0x7d, 0x8a, 0x13, 0x02, 0xf7, 0x67, 0x50, 0xb0, 0xa9, 0x7b, 0xeb, 0x16, 0xf9, + 0xe5, 0x80, 0xc6, 0xdd, 0xbf, 0xa0, 0x32, 0x09, 0xb9, 0x04, 0x28, 0x03, 0x94, 0x01, 0xca, 0x00, + 0x65, 0x80, 0xb2, 0xc3, 0xa0, 0x1c, 0x2f, 0x3b, 0x60, 0x72, 0x6a, 0xaa, 0xe2, 0x53, 0x0c, 0x64, + 0x90, 0x1c, 0x0f, 0x47, 0x83, 0xc8, 0x05, 0x20, 0x32, 0x10, 0x19, 0x88, 0x0c, 0x44, 0x5e, 0x7d, + 0xd6, 0x6c, 0x47, 0x2a, 0x93, 0x81, 0x26, 0x47, 0x93, 0xa4, 0xea, 0x09, 0xba, 0x03, 0xe8, 0xf3, + 0x2d, 0xad, 0xe2, 0xb1, 0xa9, 0xce, 0x63, 0x91, 0x96, 0x1a, 0x20, 0x2f, 0x2d, 0xc0, 0x51, 0x4a, + 0x80, 0xb7, 0x74, 0x00, 0x57, 0xa9, 0x00, 0xf6, 0xd2, 0x00, 0xec, 0xa5, 0x00, 0xd8, 0x8f, 0xfe, + 0x67, 0xeb, 0xa4, 0x28, 0xf9, 0x51, 0x7e, 0x06, 0x29, 0xc6, 0x21, 0xc9, 0x16, 0x49, 0xb3, 0xff, + 0xf8, 0x3b, 0x81, 0xa4, 0x48, 0xe8, 0x28, 0x79, 0x35, 0x15, 0x72, 0x31, 0x4c, 0x65, 0xe5, 0xd4, + 0x1c, 0x01, 0xb3, 0xee, 0x06, 0xf7, 0xf7, 0x43, 0x25, 0xf5, 0x13, 0x17, 0xbb, 0x78, 0x7b, 0x01, + 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0x9c, 0x14, 0x63, 0x86, + 0x4b, 0x52, 0x44, 0xc9, 0xeb, 0x27, 0xb0, 0x8c, 0xd5, 0xa6, 0x5c, 0x3c, 0x6a, 0x8f, 0x9d, 0x69, + 0x2c, 0xba, 0x08, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0xb0, 0x0d, 0x4e, + 0xb6, 0xf1, 0x1a, 0x9b, 0xc6, 0x8c, 0x63, 0x0e, 0xab, 0xc0, 0x3a, 0x56, 0x9b, 0x7a, 0xa9, 0x1e, + 0xfc, 0xbe, 0xec, 0x79, 0xa1, 0xf0, 0x23, 0xc2, 0xaa, 0x58, 0x89, 0x85, 0xbf, 0x19, 0x1f, 0x5c, + 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x7c, 0xdd, 0xca, 0x9e, 0x50, 0x5a, 0xea, + 0x27, 0x26, 0xbe, 0x41, 0xd8, 0xd4, 0x3d, 0xd7, 0x98, 0xde, 0xea, 0x67, 0x3f, 0x62, 0x70, 0x19, + 0xb3, 0x09, 0x6f, 0x9c, 0x7d, 0xab, 0x9f, 0x34, 0xbe, 0x74, 0x5a, 0xcd, 0xab, 0xcb, 0xe3, 0x4e, + 0xeb, 0xb8, 0x7e, 0xd1, 0x3c, 0xa3, 0xf6, 0x1e, 0x93, 0xb6, 0xfa, 0x51, 0xee, 0x68, 0xe7, 0x9a, + 0xbc, 0x2e, 0x31, 0x73, 0xb3, 0x88, 0xd9, 0xec, 0xd7, 0x2f, 0x3a, 0x27, 0xcd, 0xe6, 0x79, 0x6e, + 0x1b, 0xba, 0x75, 0x38, 0x32, 0xe5, 0xbf, 0x37, 0xcf, 0xbe, 0x1e, 0x7f, 0xc1, 0x8c, 0xd3, 0xcd, + 0x78, 0xb3, 0xd5, 0xf8, 0xa3, 0x71, 0x56, 0xbf, 0x6c, 0xb6, 0x30, 0xeb, 0x84, 0x76, 0x7e, 0x72, + 0x75, 0x71, 0x79, 0xdc, 0xe2, 0xf2, 0x2f, 0xa4, 0x23, 0xb6, 0xb3, 0xc6, 0xf7, 0x32, 0xa1, 0xee, + 0xfb, 0x7e, 0xa4, 0xbd, 0xfb, 0xa0, 0x27, 0x6f, 0xa5, 0xe8, 0xd1, 0x8b, 0xfb, 0xf9, 0xe1, 0xa1, + 0xed, 0xa1, 0xed, 0xa1, 0xed, 0xa1, 0xed, 0xa1, 0xed, 0xc9, 0xd7, 0xad, 0x96, 0xf7, 0x42, 0xcb, + 0xee, 0xf7, 0xa8, 0x52, 0x62, 0xd0, 0xf6, 0x87, 0x84, 0x43, 0x5e, 0x29, 0x39, 0xa9, 0x71, 0x9d, + 0x53, 0xbe, 0x0a, 0x22, 0xd1, 0x0d, 0x54, 0x2f, 0xa2, 0xbc, 0xe5, 0x96, 0xaf, 0xee, 0x04, 0xb9, + 0x9e, 0x66, 0xe8, 0x2a, 0x74, 0x2a, 0x15, 0x5f, 0xc7, 0x47, 0xe6, 0x3e, 0x8b, 0x93, 0xa8, 0x09, + 0xe3, 0xf8, 0x5f, 0x43, 0xbf, 0xab, 0x65, 0xa0, 0xbe, 0xc8, 0xbb, 0xd8, 0xda, 0xf3, 0x5b, 0xd1, + 0x6b, 0xf4, 0xd4, 0x7f, 0xdc, 0x7a, 0x93, 0x2b, 0x1c, 0x96, 0x4a, 0x95, 0x6a, 0xa9, 0x94, 0xaf, + 0x1e, 0x54, 0xf3, 0xb5, 0x72, 0xb9, 0x50, 0xa1, 0x8c, 0x9c, 0x3a, 0x67, 0x85, 0x19, 0x6d, 0x1d, + 0xd6, 0x86, 0xc6, 0xfd, 0x65, 0x33, 0xa4, 0x2a, 0x54, 0x96, 0x22, 0x55, 0x34, 0x05, 0xcb, 0xa0, + 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0xa1, 0x6b, 0x17, 0xac, 0xdb, 0xa1, 0x54, 0xfa, 0xa0, + 0xc8, 0x20, 0x69, 0xab, 0x90, 0x94, 0x90, 0x94, 0x90, 0x94, 0x90, 0x94, 0x19, 0x30, 0xb9, 0x52, + 0xb1, 0x56, 0xaa, 0x55, 0xaa, 0xc5, 0x1a, 0x84, 0x24, 0x84, 0xe4, 0x36, 0x0b, 0x49, 0x5a, 0x01, + 0x42, 0x5b, 0x62, 0x13, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, 0x32, 0x12, 0x32, 0x72, 0xc1, 0xba, + 0x9d, 0xb4, 0x2a, 0x24, 0xb7, 0xe1, 0x24, 0xf5, 0xf9, 0x90, 0xf6, 0xa8, 0x95, 0x16, 0xa1, 0x22, + 0x97, 0x93, 0xb9, 0xbf, 0x77, 0x77, 0xaf, 0xf3, 0x5e, 0xcd, 0xf7, 0x6e, 0xeb, 0xde, 0xd7, 0xf6, + 0x8f, 0xc2, 0xc7, 0xd2, 0xe8, 0x68, 0xef, 0x47, 0x75, 0xf4, 0xf6, 0x87, 0xcf, 0x8b, 0xde, 0x56, + 0xf8, 0x58, 0x1d, 0x1d, 0x2d, 0xf9, 0x4d, 0x65, 0x74, 0xf4, 0x8b, 0xdf, 0x51, 0x1e, 0xed, 0xa6, + 0xde, 0x3a, 0xfe, 0x79, 0x71, 0xd9, 0x07, 0x4a, 0x4b, 0x3e, 0x70, 0xb0, 0xec, 0x03, 0x07, 0x4b, + 0x3e, 0xb0, 0xf4, 0x92, 0x8a, 0x4b, 0x3e, 0x50, 0x1e, 0x3d, 0xa7, 0xde, 0xbf, 0xbb, 0xf8, 0xad, + 0x95, 0xd1, 0xde, 0xf3, 0xb2, 0xdf, 0x55, 0x47, 0xcf, 0x47, 0x7b, 0x7b, 0xfb, 0xbb, 0x85, 0xe2, + 0x75, 0xde, 0x3b, 0x6c, 0x3f, 0x17, 0xae, 0xf3, 0x5e, 0xa1, 0x3d, 0x7e, 0x67, 0xfb, 0xf9, 0xba, + 0xe0, 0xd5, 0x66, 0x2f, 0xc7, 0xff, 0xbf, 0xf7, 0x5b, 0x0e, 0xb4, 0xd4, 0x41, 0x5a, 0x3a, 0x3d, + 0x1f, 0x67, 0xb5, 0x5b, 0xd5, 0x52, 0xcf, 0xf8, 0x7a, 0x70, 0x10, 0x54, 0x10, 0x54, 0x10, 0x54, + 0x10, 0x54, 0x10, 0x54, 0xf2, 0x75, 0x7b, 0x13, 0x04, 0x7d, 0xe1, 0x2b, 0x0e, 0x72, 0x5a, 0xc8, + 0x0a, 0x54, 0x6f, 0x74, 0x11, 0x65, 0xcb, 0x2d, 0xfd, 0x53, 0xe3, 0x91, 0x74, 0x7d, 0x0f, 0xc5, + 0xb4, 0xc3, 0x7f, 0xfc, 0x4f, 0x5c, 0xc2, 0x01, 0x0d, 0x06, 0xd2, 0x4f, 0x63, 0xa8, 0xbe, 0xab, + 0xe0, 0x7f, 0xca, 0xf3, 0xb5, 0x0e, 0xe5, 0x8d, 0x95, 0x7e, 0xcb, 0x4b, 0x5d, 0xcf, 0x82, 0xb1, + 0xd1, 0x7a, 0xc0, 0x55, 0xc2, 0x87, 0xd6, 0x03, 0xd9, 0x24, 0x74, 0x68, 0x3d, 0xb0, 0xd2, 0xac, + 0x91, 0xb5, 0x1e, 0x48, 0x39, 0x49, 0x7a, 0xa5, 0x9e, 0xbe, 0x04, 0x5a, 0xbd, 0x5e, 0x80, 0x5e, + 0x87, 0x5e, 0x87, 0x5e, 0x87, 0x5e, 0x77, 0x47, 0xaf, 0x53, 0xb9, 0xff, 0x64, 0xc0, 0x49, 0xa1, + 0x7d, 0x4d, 0x1d, 0x25, 0xd8, 0x49, 0x35, 0xa2, 0x99, 0x5c, 0x02, 0xb1, 0xe9, 0xf2, 0x24, 0x33, + 0x91, 0xc3, 0x01, 0x27, 0x2c, 0xb8, 0x01, 0x0f, 0xdc, 0x30, 0xe1, 0x0c, 0x5c, 0x38, 0x03, 0x1b, + 0xce, 0xc0, 0x07, 0x2d, 0x8c, 0x10, 0xc3, 0x49, 0x32, 0xcb, 0x97, 0x1c, 0x0e, 0x7e, 0x87, 0xb7, + 0x2c, 0x6c, 0x8a, 0xed, 0x57, 0x19, 0xc6, 0x4e, 0xb5, 0x24, 0x7d, 0x01, 0xbb, 0x8c, 0xa6, 0x6f, + 0x12, 0x9a, 0x36, 0x51, 0x17, 0xd3, 0xa5, 0x36, 0x4d, 0xd1, 0xd5, 0x94, 0x59, 0xbb, 0x82, 0xb4, + 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x70, 0x90, 0x16, 0x6a, 0x2d, 0x3c, 0xaf, 0x89, 0xfb, 0x82, + 0xf1, 0x64, 0xd7, 0x9c, 0x34, 0x1e, 0x5f, 0xc9, 0xc7, 0xad, 0x3c, 0xee, 0xc3, 0x05, 0x3a, 0x2e, + 0x80, 0x8f, 0x5b, 0x20, 0xe4, 0x0a, 0x18, 0x39, 0x07, 0x4a, 0xce, 0x81, 0x93, 0x73, 0x20, 0xc5, + 0x03, 0x56, 0x4c, 0xa0, 0xc5, 0xaf, 0xb8, 0x53, 0x7e, 0x63, 0x28, 0x95, 0x2e, 0x54, 0x38, 0x7d, + 0xc6, 0x14, 0x45, 0x2a, 0x8c, 0x97, 0xc0, 0x73, 0x20, 0xfd, 0xed, 0x1f, 0x5e, 0x9f, 0xb9, 0xc3, + 0x7d, 0x60, 0xdd, 0x31, 0x7a, 0x91, 0xba, 0x1c, 0xe6, 0x03, 0xed, 0xa9, 0xeb, 0x71, 0xe0, 0x90, + 0xb1, 0x23, 0xee, 0x74, 0xde, 0x84, 0xfd, 0x47, 0x98, 0xf0, 0x4f, 0x4c, 0xb8, 0x52, 0x2e, 0x1f, + 0x94, 0x61, 0xc6, 0x6e, 0x71, 0x11, 0xfe, 0xd1, 0xdb, 0x1f, 0xb6, 0xe3, 0x7e, 0x39, 0xea, 0x72, + 0xf0, 0xed, 0xa4, 0x2f, 0x0e, 0x1b, 0x30, 0xec, 0xa8, 0x23, 0x6e, 0x80, 0xb8, 0x01, 0xe2, 0x06, + 0x88, 0x1b, 0x20, 0x6e, 0x90, 0x91, 0xb8, 0xc1, 0xa1, 0x03, 0x61, 0x83, 0x32, 0xc2, 0x06, 0x08, + 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0xd6, 0x4d, 0xb8, 0x58, 0x46, 0xd0, 0x00, 0x41, + 0x03, 0x04, 0x0d, 0x68, 0x83, 0x06, 0x0f, 0xd3, 0xd5, 0xe7, 0x42, 0xd4, 0x20, 0xbe, 0x16, 0x84, + 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0x78, 0xa7, 0xdf, 0xb8, + 0x91, 0xca, 0x0f, 0x9f, 0x1c, 0x88, 0x1b, 0xd4, 0x18, 0x2f, 0xe1, 0x44, 0xa8, 0xbb, 0x49, 0xe2, + 0x3f, 0x02, 0x07, 0x08, 0x1c, 0xfc, 0x54, 0x75, 0x15, 0xa0, 0xb9, 0x10, 0x38, 0xd8, 0x6c, 0x13, + 0x46, 0xbe, 0x01, 0x42, 0x07, 0x08, 0x1d, 0x90, 0x9a, 0xb9, 0x78, 0xd4, 0x42, 0xf5, 0x08, 0x7b, + 0xa4, 0x2f, 0xa5, 0x7c, 0xc9, 0x95, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, + 0x6c, 0x80, 0xb0, 0xc1, 0x7b, 0xc3, 0x06, 0xe4, 0xe5, 0x62, 0x97, 0xc1, 0x08, 0x51, 0xf9, 0xd8, + 0xed, 0x24, 0x2d, 0xc1, 0x60, 0xcc, 0xcc, 0xfd, 0x3e, 0x3f, 0x69, 0x49, 0xae, 0x04, 0xa4, 0x05, + 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x25, 0x3d, 0xc7, + 0x03, 0x3f, 0xd4, 0xd2, 0x05, 0xce, 0x32, 0xbb, 0x10, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, + 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0xf4, 0x1c, 0xeb, 0xd0, 0x57, 0x91, 0xd4, + 0xf2, 0xc1, 0x81, 0xbc, 0xd2, 0x57, 0xd7, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0x02, + 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0x3c, 0x71, 0xc9, 0x74, 0x79, 0x51, 0xe2, 0xfe, 0x84, 0xa9, + 0xf1, 0x59, 0xfa, 0x15, 0xa6, 0x5b, 0xe3, 0xa5, 0x7f, 0x44, 0xd1, 0xd4, 0x90, 0xcf, 0xd4, 0xb2, + 0xd5, 0x2f, 0xe6, 0x4f, 0xf1, 0xc4, 0x51, 0xf0, 0x25, 0x77, 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xb8, + 0x59, 0xcd, 0xa9, 0x54, 0xc7, 0x7d, 0x31, 0x66, 0x03, 0x51, 0xee, 0x68, 0x47, 0x0d, 0xfb, 0x7d, + 0xc2, 0x62, 0xf3, 0xa7, 0xfe, 0x23, 0xdf, 0xe0, 0xcd, 0xb0, 0x27, 0x42, 0xd1, 0xfb, 0xfc, 0x34, + 0x1d, 0x3a, 0x53, 0x46, 0xcc, 0xe4, 0x89, 0xdd, 0xf5, 0xc0, 0x39, 0xd2, 0x1e, 0x0a, 0xe1, 0xb0, + 0xab, 0xd5, 0x94, 0x65, 0x7d, 0xbe, 0x1b, 0x74, 0x5a, 0xf2, 0xa6, 0x53, 0xbf, 0x95, 0x17, 0xfe, + 0xad, 0xec, 0x34, 0x06, 0x0f, 0x95, 0xab, 0xf8, 0x46, 0x3b, 0x67, 0xd3, 0xdb, 0xeb, 0xd4, 0x7b, + 0xff, 0xb6, 0xe4, 0x4d, 0x43, 0x9d, 0x87, 0xa2, 0xd3, 0x1a, 0xdf, 0x54, 0xe7, 0x2a, 0xbe, 0x83, + 0x7a, 0x72, 0x03, 0xe8, 0xc0, 0xcc, 0xbf, 0xbe, 0xb6, 0xa3, 0x03, 0xf3, 0x82, 0x66, 0xbf, 0x9b, + 0xda, 0x8e, 0xf9, 0xc3, 0x06, 0x19, 0xd9, 0x8c, 0x79, 0xc4, 0x51, 0x8b, 0x9d, 0xf1, 0x43, 0xf7, + 0xa4, 0xad, 0x0c, 0x70, 0x1a, 0xba, 0x41, 0x4a, 0x2f, 0x48, 0xe9, 0x04, 0x0d, 0x7d, 0xb0, 0x65, + 0x69, 0x44, 0x6e, 0x8c, 0xc5, 0x7d, 0x59, 0x44, 0x7a, 0x23, 0xc8, 0x6e, 0xc7, 0x97, 0x9a, 0xf7, + 0x74, 0x66, 0xbf, 0xd1, 0xb0, 0x25, 0xdb, 0xb6, 0x60, 0x62, 0xcb, 0x35, 0x6b, 0x13, 0xe6, 0x9e, + 0x9c, 0x99, 0x6f, 0x32, 0xf4, 0xec, 0x6d, 0x3d, 0x73, 0xaa, 0x67, 0x6d, 0xd0, 0x31, 0xad, 0xe9, + 0x88, 0xcc, 0x98, 0xdb, 0xfa, 0xc6, 0x61, 0xc0, 0x30, 0x72, 0xb3, 0x39, 0x0e, 0x86, 0xda, 0x1b, + 0x04, 0x91, 0x36, 0x66, 0x1a, 0x2f, 0x45, 0x7c, 0xde, 0x8e, 0x60, 0xc8, 0x9c, 0xcd, 0xb6, 0x9d, + 0x33, 0xbe, 0x25, 0x6a, 0x63, 0x8b, 0xd3, 0xee, 0x96, 0xa5, 0xad, 0x2d, 0x48, 0xeb, 0x5b, 0x8a, + 0xd6, 0xb7, 0x08, 0xad, 0x6f, 0xf9, 0xb9, 0x05, 0x14, 0xa6, 0xdb, 0x9c, 0xe5, 0xa6, 0x28, 0x6d, + 0xdc, 0xb0, 0x66, 0xcb, 0x61, 0xfa, 0xfd, 0x86, 0x1f, 0xba, 0x9d, 0xbe, 0x96, 0x2f, 0x8e, 0xa6, + 0x68, 0xf8, 0x8b, 0x2d, 0xe6, 0x54, 0xd0, 0xe4, 0x4a, 0xd8, 0xce, 0x81, 0x20, 0xcb, 0x6d, 0x20, + 0xcb, 0x59, 0x20, 0xcb, 0x45, 0x70, 0x5b, 0xcd, 0xd8, 0xea, 0xcb, 0x18, 0x3b, 0x16, 0x7b, 0xf6, + 0x38, 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0xf6, 0xbc, 0xd6, 0x53, 0xc9, 0x28, 0x52, 0xc5, 0x68, + 0x53, 0xc1, 0xa8, 0x52, 0xbd, 0xc8, 0x53, 0xb9, 0xc8, 0x53, 0xb5, 0xc8, 0x53, 0xb1, 0x36, 0x2b, + 0x20, 0x6e, 0xbb, 0x5d, 0x6d, 0x6e, 0x16, 0x63, 0xb7, 0x6e, 0xc9, 0x2f, 0xc7, 0x8d, 0x6c, 0x06, + 0xf5, 0xdf, 0xba, 0x4c, 0xcb, 0xc9, 0xb1, 0x64, 0x59, 0xb8, 0x94, 0xd9, 0xb6, 0x3c, 0x59, 0xb5, + 0xd4, 0xd9, 0xb3, 0x6c, 0x59, 0xb2, 0x6c, 0xd9, 0xb0, 0x6c, 0x59, 0xaf, 0x9b, 0xbd, 0xe1, 0x4d, + 0x96, 0xad, 0x9a, 0xac, 0xbb, 0xbe, 0xf0, 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, 0x66, 0xcc, 0xb2, + 0x4a, 0x30, 0xd6, 0xf9, 0x34, 0xbc, 0xfc, 0xe9, 0x53, 0x9c, 0x0c, 0xb8, 0x3f, 0x83, 0x82, 0x4d, + 0xdd, 0x5a, 0xb7, 0xc8, 0x2f, 0x07, 0x34, 0xee, 0xfe, 0x05, 0x95, 0x49, 0xc8, 0x25, 0x40, 0x19, + 0xa0, 0x0c, 0x50, 0x06, 0x28, 0x03, 0x94, 0x1d, 0x06, 0xe5, 0x78, 0xd9, 0x01, 0x93, 0x53, 0x53, + 0x15, 0x9f, 0x60, 0x20, 0x83, 0xe4, 0x78, 0x38, 0x1a, 0x44, 0x2e, 0x00, 0x91, 0x81, 0xc8, 0x40, + 0x64, 0x20, 0xf2, 0xea, 0xb3, 0x66, 0x3b, 0x52, 0x99, 0x0c, 0x34, 0x39, 0x96, 0x24, 0x55, 0x4f, + 0xd0, 0x9d, 0x3d, 0x9f, 0xef, 0x66, 0x15, 0x8f, 0x4d, 0x75, 0x16, 0x8b, 0xb4, 0xca, 0x00, 0x79, + 0x55, 0x01, 0x8e, 0x2a, 0x02, 0xbc, 0x55, 0x03, 0xb8, 0xaa, 0x04, 0xb0, 0x57, 0x05, 0x60, 0xaf, + 0x02, 0xc0, 0x7e, 0xea, 0x3f, 0x5b, 0xa7, 0x44, 0xc9, 0x4f, 0xf1, 0x33, 0x48, 0x31, 0x0e, 0x49, + 0xb6, 0x48, 0x9a, 0xfd, 0xc7, 0xdf, 0x09, 0x24, 0x45, 0x42, 0x47, 0xc9, 0xab, 0xa9, 0x90, 0x8b, + 0x61, 0x2a, 0x2b, 0x67, 0xe6, 0x08, 0x98, 0x75, 0x37, 0xb8, 0xbf, 0x1f, 0x2a, 0xa9, 0x9f, 0xb8, + 0xd8, 0xc5, 0xdb, 0x0b, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, + 0xe0, 0xa4, 0x18, 0x33, 0x5c, 0x92, 0x22, 0x4a, 0x5e, 0x3f, 0x81, 0x65, 0xac, 0x36, 0xe5, 0xe2, + 0x51, 0x7b, 0xec, 0x4c, 0x63, 0xd1, 0x45, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, + 0x6d, 0x80, 0x6d, 0x70, 0xb2, 0x8d, 0xd7, 0xd8, 0x34, 0x66, 0x1c, 0x73, 0x58, 0x05, 0xd6, 0xb1, + 0xda, 0xd4, 0x4b, 0xf5, 0xe0, 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x11, 0x56, 0xc4, 0x4a, 0x2c, + 0xfc, 0xcd, 0xf8, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe4, 0xeb, 0x56, + 0xf6, 0x84, 0xd2, 0x52, 0x3f, 0x31, 0xf1, 0x0d, 0xc2, 0x7e, 0xee, 0xb9, 0xc6, 0xf4, 0x56, 0x3f, + 0xfb, 0x11, 0x83, 0xcb, 0x98, 0x4d, 0x78, 0xe3, 0xec, 0x5b, 0xfd, 0xa4, 0xf1, 0xa5, 0xd3, 0x6a, + 0x5e, 0x5d, 0x1e, 0x77, 0x5a, 0xc7, 0xf5, 0x8b, 0xe6, 0x19, 0xb5, 0xf7, 0x98, 0x74, 0xd4, 0x8f, + 0x72, 0x47, 0x3b, 0xd7, 0xe4, 0x25, 0x89, 0x99, 0xfb, 0x44, 0xcc, 0x66, 0xbf, 0x7e, 0xd1, 0x39, + 0x69, 0x36, 0xcf, 0x73, 0xdb, 0xd0, 0xa8, 0xc3, 0x91, 0x29, 0xff, 0xbd, 0x79, 0xf6, 0xf5, 0xf8, + 0x0b, 0x66, 0x9c, 0x6e, 0xc6, 0x9b, 0xad, 0xc6, 0x1f, 0x8d, 0xb3, 0xfa, 0x65, 0xb3, 0x85, 0x59, + 0x27, 0xb4, 0xf3, 0x93, 0xab, 0x8b, 0xcb, 0xe3, 0x16, 0x97, 0x7f, 0x21, 0x1d, 0xb1, 0x9d, 0x35, + 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, 0x45, 0x8f, 0x5e, + 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x4f, 0xbe, 0x6e, + 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, 0x1c, 0xf2, 0x4a, + 0xc9, 0x49, 0x89, 0xeb, 0x9c, 0xf2, 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, 0xe5, 0x2d, 0xb7, + 0x7c, 0x75, 0x27, 0xc8, 0xf5, 0x34, 0x43, 0x43, 0xa1, 0x53, 0xa9, 0xf8, 0x9a, 0x3d, 0x32, 0xb7, + 0x58, 0x9c, 0x44, 0x4d, 0x18, 0xc7, 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, 0x45, 0xde, 0xc5, + 0xd6, 0x9e, 0xdf, 0x8a, 0x36, 0xa3, 0xa7, 0xfe, 0xe3, 0xd6, 0x9b, 0x5c, 0xe1, 0xb0, 0x54, 0xaa, + 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x0a, 0x65, 0xe4, 0xd4, 0x39, + 0x2b, 0xcc, 0x68, 0xdb, 0xb0, 0x36, 0x34, 0xee, 0x2f, 0x9b, 0x21, 0x55, 0xa1, 0xb2, 0x14, 0xa9, + 0xa2, 0x29, 0x58, 0x06, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0xbb, 0x60, 0xdd, + 0x0e, 0xa5, 0xd2, 0x07, 0x45, 0x06, 0x49, 0x5b, 0x85, 0xa4, 0x84, 0xa4, 0x84, 0xa4, 0x84, 0xa4, + 0xcc, 0x80, 0xc9, 0x95, 0x8a, 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0x20, 0x24, 0x21, 0x24, 0xb7, + 0x59, 0x48, 0xd2, 0x0a, 0x10, 0xda, 0x12, 0x9b, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, 0x90, 0x91, + 0x90, 0x91, 0x0b, 0xd6, 0xed, 0xa4, 0x59, 0x21, 0xb9, 0x0d, 0x27, 0xa9, 0xcf, 0x87, 0xb4, 0x47, + 0xad, 0xb4, 0x08, 0x15, 0xb9, 0x9c, 0xcc, 0xfd, 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, 0x6a, 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, 0xda, 0xdb, - 0x40, 0xd7, 0xf0, 0xc1, 0xed, 0xeb, 0xc4, 0xee, 0xd4, 0x3b, 0x83, 0x5b, 0xb6, 0x76, 0xa7, 0x0c, - 0x66, 0x26, 0x1b, 0x08, 0x03, 0x7e, 0x60, 0x7c, 0x86, 0xb3, 0xe4, 0x1b, 0xc3, 0x72, 0xdc, 0x6c, - 0x9a, 0x8d, 0x95, 0x74, 0x1a, 0x2b, 0x69, 0x33, 0x66, 0xd3, 0x63, 0xd6, 0x7d, 0xb6, 0x86, 0xd7, - 0xa5, 0xb5, 0xf5, 0x98, 0x33, 0x12, 0x08, 0x7f, 0xef, 0xae, 0xf0, 0x7a, 0xeb, 0x7f, 0xf5, 0x55, - 0xbb, 0xda, 0x27, 0x57, 0xb4, 0x05, 0x53, 0x36, 0x60, 0xfa, 0xd9, 0xaf, 0x36, 0xf9, 0xef, 0x9f, - 0xba, 0xf7, 0x7d, 0xe2, 0x9d, 0x93, 0xbc, 0xee, 0xe4, 0x9a, 0x99, 0xd4, 0x15, 0x56, 0xcf, 0xaf, - 0xaf, 0x96, 0xf7, 0x3d, 0xa7, 0x5f, 0x9f, 0xed, 0x77, 0xcc, 0xf4, 0x8a, 0x7b, 0x5c, 0x6b, 0xed, - 0x65, 0xad, 0xb8, 0x67, 0xf5, 0x12, 0x1e, 0x2e, 0xbe, 0xf3, 0x83, 0x6b, 0x84, 0x7f, 0xcd, 0x84, - 0x77, 0xd7, 0x0d, 0xdf, 0x1a, 0x0b, 0xcf, 0x1a, 0x0b, 0xbf, 0x1a, 0x0b, 0xaf, 0xda, 0xf5, 0x21, - 0xab, 0xee, 0xe1, 0xe4, 0x66, 0xce, 0xc0, 0x9b, 0x2e, 0xe3, 0x15, 0x9f, 0x5b, 0xd2, 0xb7, 0x6b, - 0xee, 0xeb, 0x56, 0x9c, 0xf2, 0xf5, 0x76, 0x5d, 0xd6, 0xde, 0x5d, 0x31, 0xb1, 0x8b, 0x62, 0x76, - 0xb7, 0xc4, 0xd4, 0xae, 0x88, 0xf1, 0xdd, 0x0f, 0xe3, 0xbb, 0x1c, 0xc6, 0x77, 0x33, 0x68, 0x79, - 0xd2, 0xda, 0xbb, 0x10, 0x2f, 0x61, 0xbe, 0x9e, 0x50, 0x5a, 0xea, 0xa7, 0xf5, 0x52, 0x65, 0x12, - 0x04, 0x5a, 0xa3, 0x1f, 0x46, 0xae, 0x31, 0xbd, 0x94, 0xcf, 0x7e, 0x64, 0xc0, 0x04, 0x67, 0x37, - 0x58, 0xff, 0xda, 0xe8, 0x5c, 0x8c, 0xff, 0xef, 0xf2, 0xff, 0xce, 0x8f, 0xd7, 0x35, 0xc3, 0x49, - 0xeb, 0x8f, 0xc8, 0x48, 0x1c, 0xd1, 0x70, 0x0e, 0x4c, 0xe3, 0xfc, 0x5b, 0xa5, 0x73, 0x52, 0xff, - 0x7c, 0x7c, 0x72, 0xfc, 0xa5, 0x73, 0x75, 0xd6, 0xf8, 0xbd, 0x7e, 0x71, 0x99, 0x73, 0x21, 0xe9, - 0xc7, 0xf0, 0x7d, 0x5e, 0xb4, 0x2e, 0x8f, 0x3b, 0xe7, 0xcd, 0x93, 0xc6, 0xef, 0xff, 0xd7, 0x19, - 0xdf, 0x73, 0x16, 0xef, 0xf1, 0xa4, 0x71, 0xf6, 0xe7, 0xc5, 0x65, 0xfd, 0xf2, 0x38, 0x8b, 0x37, - 0xd7, 0x38, 0xff, 0x56, 0xca, 0xb2, 0x81, 0x9e, 0x14, 0xbf, 0x9d, 0x9f, 0x75, 0x8e, 0xbf, 0x9d, - 0x9f, 0x65, 0xda, 0x34, 0x3b, 0x17, 0xe7, 0x5f, 0xb3, 0x7d, 0x83, 0x59, 0x7d, 0x82, 0x07, 0x63, - 0xfb, 0xdc, 0x8e, 0x55, 0xf8, 0xed, 0xfc, 0xe4, 0x22, 0xd3, 0xcf, 0xb0, 0x92, 0xe5, 0x67, 0x38, - 0xb1, 0xd1, 0x2d, 0xa0, 0x34, 0xaf, 0x9e, 0xe6, 0xe9, 0xd5, 0xc9, 0x65, 0xf6, 0xef, 0xb3, 0x94, - 0xed, 0xfb, 0x7c, 0x43, 0x51, 0x4b, 0x59, 0xbc, 0xc7, 0x6f, 0xe7, 0x67, 0xdf, 0x4a, 0x9d, 0xaf, - 0x27, 0xcd, 0xff, 0x77, 0x71, 0x7e, 0xfc, 0x7b, 0x46, 0xbd, 0x4f, 0xf6, 0xbd, 0xab, 0xc1, 0x07, - 0xb8, 0xd6, 0x37, 0xb4, 0xa9, 0xe3, 0x2e, 0xd8, 0x9a, 0x89, 0xb7, 0x66, 0x56, 0xc8, 0x2d, 0x78, - 0xc7, 0xb6, 0xc9, 0x07, 0x83, 0x73, 0x95, 0x54, 0xfd, 0x5a, 0x21, 0xf2, 0xbb, 0xda, 0x06, 0xff, - 0x5a, 0x1b, 0xf9, 0x6b, 0x6d, 0xd8, 0xaf, 0xb6, 0x31, 0xff, 0xab, 0x13, 0xb9, 0xa2, 0xb1, 0xad, - 0x6c, 0x64, 0xb9, 0x77, 0xed, 0x9e, 0xfd, 0xc7, 0x56, 0xdf, 0xaf, 0xd9, 0xe9, 0xcf, 0xad, 0xee, - 0xbf, 0xdf, 0xf1, 0x93, 0x69, 0x7c, 0xef, 0xf4, 0xbd, 0x77, 0xda, 0xfe, 0xfb, 0x26, 0x97, 0x5f, - 0xfa, 0x7f, 0x5c, 0x76, 0x5c, 0x29, 0x2f, 0x12, 0xfa, 0xe7, 0x27, 0x64, 0x5e, 0x36, 0x58, 0x92, - 0x8f, 0xfc, 0x64, 0x3a, 0x7e, 0x6d, 0xef, 0xf1, 0x97, 0x37, 0x4b, 0xde, 0xb3, 0x29, 0xb2, 0xda, - 0xe6, 0xc7, 0x7b, 0x37, 0x39, 0x56, 0xde, 0xcc, 0x58, 0x79, 0xd3, 0x62, 0xe5, 0xcd, 0x89, 0xf5, - 0x0c, 0xfb, 0x57, 0xf7, 0xf6, 0x12, 0xdb, 0xf8, 0xf5, 0x29, 0x7c, 0x6b, 0x55, 0xbf, 0x3a, 0x83, - 0xef, 0xdb, 0xd8, 0x7e, 0xf7, 0x8e, 0xdc, 0x2a, 0x3b, 0x70, 0xeb, 0xed, 0xb8, 0xad, 0xba, 0xc3, - 0xb6, 0xf6, 0x8e, 0xda, 0xda, 0x3b, 0x68, 0x6b, 0xef, 0x98, 0x99, 0x65, 0x03, 0xef, 0xdd, 0x88, - 0xce, 0xf9, 0x77, 0x77, 0xa1, 0xb8, 0xf3, 0x75, 0x10, 0xae, 0x9e, 0x9c, 0xf1, 0xea, 0x3b, 0x88, - 0x33, 0x34, 0xf2, 0xc8, 0xd0, 0x40, 0x86, 0x86, 0x95, 0x85, 0xf1, 0x8a, 0x7a, 0xad, 0x73, 0x38, - 0xdf, 0xc8, 0x61, 0xfc, 0x35, 0x0f, 0xdf, 0xaf, 0x9c, 0xd0, 0x64, 0x62, 0xd9, 0x98, 0x5d, 0x3e, - 0xa6, 0x96, 0x91, 0xf1, 0xe5, 0x64, 0x7c, 0x59, 0x19, 0x5f, 0x5e, 0x6b, 0x46, 0x06, 0x56, 0xb4, - 0x9c, 0x75, 0x0f, 0xb7, 0xe7, 0x4c, 0x9d, 0x61, 0x7f, 0x01, 0x2b, 0x33, 0xb9, 0xf1, 0x66, 0x8e, - 0xa6, 0x1b, 0x3b, 0x8a, 0x6e, 0xf2, 0xe8, 0xb9, 0x9d, 0xa3, 0xe6, 0xa6, 0x8f, 0x96, 0x5b, 0x3b, - 0x4a, 0x6e, 0xed, 0xe8, 0xb8, 0xb5, 0xa3, 0xe2, 0xbc, 0x87, 0x4f, 0x8c, 0x1d, 0xfd, 0xb6, 0x75, - 0xe0, 0xd8, 0xe4, 0x59, 0x4a, 0xe3, 0x67, 0x26, 0x37, 0xee, 0xa0, 0x70, 0x9b, 0xeb, 0xc4, 0xc5, - 0x1a, 0x6c, 0xc1, 0x37, 0x89, 0x1f, 0x80, 0x0e, 0x40, 0x07, 0xa0, 0xc3, 0x51, 0xe8, 0xf0, 0x23, - 0x4f, 0x0d, 0xef, 0x6f, 0x44, 0x68, 0x10, 0x37, 0x0c, 0xd4, 0xb5, 0xcb, 0xb5, 0x7c, 0x75, 0x67, - 0xae, 0x08, 0x88, 0xc1, 0xe3, 0xb9, 0xa7, 0x52, 0x59, 0x28, 0x41, 0x66, 0xa7, 0x6e, 0xd3, 0x24, - 0xcd, 0xd8, 0xc2, 0xf7, 0x7e, 0x0d, 0xfd, 0xae, 0x96, 0x81, 0xfa, 0x22, 0xef, 0xe4, 0x64, 0x33, - 0x20, 0x6f, 0xee, 0x8c, 0xb7, 0xc1, 0x82, 0x71, 0xa7, 0xfe, 0xe3, 0xc6, 0x3d, 0xaa, 0x52, 0xb1, - 0x56, 0xaa, 0x55, 0xaa, 0xc5, 0x5a, 0x79, 0x83, 0x9e, 0x99, 0x23, 0x67, 0xca, 0x37, 0x93, 0x69, - 0x95, 0x4c, 0x52, 0xad, 0x12, 0xb8, 0x16, 0xb8, 0x16, 0xb8, 0x16, 0xb8, 0x16, 0xb8, 0x16, 0xb8, - 0x16, 0xb8, 0x16, 0xb8, 0x56, 0xe6, 0xb8, 0x56, 0x96, 0xeb, 0x88, 0xcc, 0x72, 0xa5, 0x92, 0x57, - 0xfb, 0x2f, 0x99, 0x02, 0xeb, 0x94, 0x6f, 0xda, 0xd2, 0x34, 0xd5, 0xff, 0x9a, 0x4e, 0x83, 0xf5, - 0x43, 0xb4, 0x0e, 0x2f, 0x84, 0xee, 0xd4, 0x5f, 0xbe, 0xdb, 0x81, 0xf2, 0x21, 0x7e, 0xe4, 0x4d, - 0xe7, 0x67, 0xd5, 0x1c, 0x95, 0xe9, 0x17, 0x20, 0x41, 0xc5, 0x2e, 0xff, 0x47, 0x82, 0xca, 0x8a, - 0x4e, 0x64, 0xf5, 0x12, 0x22, 0x91, 0x17, 0x89, 0xbb, 0xe9, 0x0d, 0xae, 0x5b, 0x3f, 0xe4, 0xe5, - 0xbb, 0x98, 0x53, 0x55, 0x50, 0x3c, 0xc4, 0xb6, 0x90, 0x46, 0xaa, 0x8a, 0x99, 0x05, 0xf8, 0x0a, - 0x4f, 0x4d, 0xb4, 0x71, 0x31, 0xda, 0xbe, 0xc5, 0x50, 0xdb, 0x96, 0xb5, 0x33, 0xc8, 0x10, 0xff, - 0x42, 0xfc, 0x8b, 0x39, 0xfe, 0x65, 0xaa, 0xcd, 0x4a, 0xee, 0x5e, 0x4c, 0x62, 0x5e, 0xc6, 0xdb, - 0x35, 0x4d, 0xbf, 0x17, 0xbd, 0xf9, 0xdc, 0x72, 0x08, 0xb6, 0x1c, 0x83, 0x75, 0x07, 0x61, 0xdd, - 0x51, 0x58, 0x77, 0x18, 0x86, 0x83, 0x44, 0xce, 0xf7, 0xe6, 0x33, 0x19, 0x50, 0x7f, 0xeb, 0x08, - 0x4c, 0x36, 0xe7, 0x33, 0x1b, 0x60, 0x9f, 0xfd, 0xb1, 0xd0, 0x3b, 0xc6, 0x46, 0xc0, 0xdd, 0x92, - 0x87, 0x4d, 0x7d, 0xbd, 0xa5, 0x00, 0x7c, 0xf2, 0xfd, 0x16, 0x83, 0xba, 0x86, 0x57, 0xdc, 0xfc, - 0x23, 0xf5, 0x1f, 0x37, 0xfe, 0x91, 0xda, 0x0a, 0xd4, 0x93, 0x3e, 0x5b, 0x47, 0x9b, 0x2a, 0xb4, - 0x9d, 0xc2, 0x0a, 0xa3, 0x15, 0xf4, 0x5f, 0xbb, 0x35, 0xe3, 0x45, 0xef, 0x5f, 0x2f, 0x30, 0x7b, - 0x5f, 0x6e, 0xb4, 0xb2, 0xbe, 0x39, 0xe3, 0x31, 0xd1, 0xc4, 0x55, 0x9b, 0xa4, 0x05, 0x09, 0x25, - 0x98, 0x7c, 0x2b, 0x24, 0x01, 0x24, 0x01, 0x24, 0xc1, 0xb6, 0x4a, 0x82, 0x81, 0xaf, 0xff, 0x99, - 0x45, 0xe5, 0x3d, 0x83, 0xfe, 0xe0, 0xb5, 0x4f, 0x28, 0x94, 0x0c, 0x7e, 0xe7, 0xb1, 0x1a, 0xde, - 0x8f, 0x67, 0x63, 0x84, 0xde, 0x3c, 0x7c, 0xfd, 0x5b, 0x16, 0x6c, 0x16, 0xc7, 0xa6, 0xb4, 0xff, - 0xb2, 0xc7, 0x63, 0xa2, 0x85, 0xd2, 0xa6, 0xa4, 0x3e, 0x18, 0x61, 0x62, 0x46, 0x99, 0x97, 0x51, - 0xa6, 0x65, 0x86, 0x59, 0x6d, 0x6e, 0x5e, 0x49, 0xca, 0xb6, 0xd7, 0xd9, 0xb1, 0xfb, 0x49, 0x62, - 0x44, 0x74, 0x31, 0x1d, 0x02, 0xc9, 0x2b, 0x06, 0x9e, 0x99, 0x1b, 0xd9, 0x25, 0xa5, 0xb5, 0xd3, - 0x4b, 0x4a, 0xc8, 0x2f, 0xa1, 0xe0, 0xcc, 0xc8, 0x2f, 0x59, 0x71, 0x9d, 0xaf, 0x91, 0x5f, 0x52, - 0x32, 0x99, 0x60, 0x52, 0x42, 0x86, 0x09, 0x32, 0x4c, 0x5c, 0x91, 0x95, 0xc8, 0x30, 0x41, 0x86, - 0x09, 0x75, 0xf4, 0x08, 0x19, 0x26, 0xc8, 0x30, 0xf9, 0xef, 0x2f, 0x42, 0x86, 0x89, 0x89, 0x2f, - 0x44, 0x38, 0xd9, 0xb6, 0x83, 0xb0, 0xee, 0x28, 0xac, 0x3b, 0x0c, 0x73, 0x41, 0xc6, 0x1d, 0x64, - 0x98, 0x20, 0xc3, 0xc4, 0xf0, 0x97, 0x23, 0xc3, 0x84, 0x68, 0xc5, 0xcd, 0x3f, 0x52, 0x64, 0x98, - 0xb8, 0xf1, 0x6c, 0x91, 0x61, 0xf2, 0x0b, 0x0f, 0x02, 0x19, 0x26, 0xf3, 0x5f, 0x8e, 0x0c, 0x93, - 0x77, 0x52, 0x02, 0x64, 0x98, 0x40, 0x12, 0x40, 0x12, 0x6c, 0xb5, 0x24, 0x40, 0x86, 0xc9, 0x46, - 0xc7, 0x9d, 0x1c, 0xca, 0x30, 0x29, 0xcd, 0xb6, 0xe1, 0x4b, 0xc8, 0x31, 0x71, 0x81, 0x7b, 0x21, - 0xc7, 0xc4, 0xae, 0x75, 0xdb, 0xcc, 0x32, 0x29, 0x21, 0xcd, 0xc4, 0xe4, 0x63, 0x73, 0x21, 0xcf, - 0x44, 0xaa, 0x9e, 0x78, 0x5c, 0x3d, 0xc9, 0x24, 0xfe, 0xf8, 0x6a, 0x19, 0x26, 0x79, 0x64, 0x98, - 0x50, 0x73, 0xe3, 0x6d, 0xcb, 0x30, 0x59, 0x99, 0xa3, 0x26, 0xcf, 0xbd, 0x2f, 0xfc, 0xdb, 0x50, - 0xdc, 0xae, 0xf2, 0xd0, 0x67, 0x34, 0x73, 0x85, 0x28, 0x74, 0xee, 0x7c, 0xea, 0x55, 0x3e, 0x7d, - 0x8a, 0xd9, 0xca, 0x7e, 0xbc, 0xd0, 0x1c, 0x70, 0x18, 0xab, 0x6d, 0xf8, 0xaf, 0xb5, 0xc1, 0xbf, - 0x76, 0x4a, 0x5a, 0x11, 0x0e, 0x03, 0x0e, 0xe3, 0x97, 0xae, 0x72, 0xf5, 0x94, 0x34, 0x79, 0x37, - 0x30, 0x90, 0x8b, 0x26, 0x57, 0x8e, 0xd5, 0xac, 0x19, 0xe9, 0x42, 0x12, 0x1a, 0x5d, 0x64, 0x0a, - 0x49, 0x68, 0x86, 0x23, 0x49, 0x89, 0xdd, 0x0c, 0xa5, 0xd2, 0x95, 0x75, 0x2a, 0x74, 0xcf, 0x56, - 0xd1, 0x1a, 0x7d, 0x79, 0x0c, 0xed, 0x14, 0x1b, 0x88, 0x9a, 0x98, 0xdc, 0x09, 0x36, 0x1d, 0x48, - 0x37, 0xbc, 0xd3, 0x6b, 0x63, 0xf7, 0xcf, 0xc4, 0x06, 0x89, 0xc9, 0x9d, 0x5b, 0x5b, 0x8f, 0xa0, - 0x70, 0x58, 0x2a, 0x55, 0xaa, 0xa5, 0x52, 0xbe, 0x7a, 0x50, 0xcd, 0xd7, 0xca, 0xe5, 0x42, 0xa5, - 0x50, 0x76, 0xf8, 0xa9, 0x30, 0xc5, 0xed, 0xda, 0x54, 0x31, 0x8f, 0x15, 0xd8, 0xa2, 0xaf, 0x83, - 0x7b, 0xd9, 0xf5, 0x66, 0xb5, 0x57, 0x0d, 0xf4, 0x06, 0x4d, 0x7d, 0x23, 0x48, 0x09, 0x48, 0x09, - 0x48, 0xc9, 0x4a, 0x76, 0x73, 0x13, 0x04, 0x7d, 0xe1, 0x2b, 0x03, 0xac, 0xa4, 0x50, 0x70, 0xd8, - 0x09, 0x75, 0xfb, 0xc3, 0x48, 0x8b, 0xd0, 0xeb, 0xcb, 0xc8, 0xc0, 0xa9, 0x9c, 0xb9, 0x6f, 0x83, - 0xf3, 0x81, 0xf3, 0x81, 0xf3, 0x59, 0xc9, 0x6e, 0x0c, 0x35, 0x2e, 0x35, 0xd1, 0xb0, 0xd4, 0x58, - 0xa3, 0xd2, 0x8d, 0x69, 0x50, 0xda, 0xc6, 0x5e, 0xaf, 0x73, 0x7b, 0xbd, 0x24, 0x58, 0xb8, 0xda, - 0xae, 0x5a, 0x7a, 0xf1, 0xae, 0xb0, 0xbb, 0x06, 0xf4, 0x03, 0xfa, 0x01, 0xfd, 0x10, 0x0f, 0x44, - 0x3c, 0x10, 0xf1, 0x40, 0xc4, 0x03, 0xb7, 0x33, 0x1e, 0xd8, 0x0f, 0xba, 0x7e, 0xdf, 0x1b, 0x63, - 0xd3, 0xfa, 0x1c, 0xe4, 0xd5, 0x77, 0x81, 0x88, 0x80, 0x88, 0x80, 0x88, 0xac, 0x4c, 0x44, 0x0e, - 0x8a, 0x06, 0x88, 0x48, 0x15, 0x44, 0x04, 0x44, 0x64, 0x4b, 0x88, 0x88, 0xe9, 0x23, 0xa3, 0xa0, - 0x1f, 0x34, 0xf4, 0xe3, 0x5e, 0xf4, 0xd6, 0xe7, 0x1d, 0xe3, 0x2f, 0x01, 0xe1, 0x00, 0xe1, 0x00, - 0xe1, 0x00, 0xe1, 0x00, 0xe1, 0x00, 0xe1, 0x00, 0xe1, 0x00, 0xe1, 0x58, 0x36, 0xcd, 0x4a, 0x3c, - 0x6a, 0xef, 0x9f, 0xc0, 0x40, 0x02, 0x76, 0xf2, 0x4d, 0xa0, 0x1e, 0xa0, 0x1e, 0xa0, 0x1e, 0x2b, - 0xd9, 0x8d, 0x1c, 0x98, 0x4c, 0x38, 0xa8, 0xad, 0xf1, 0x1d, 0xd3, 0x7b, 0x62, 0xa7, 0x1f, 0x86, - 0x93, 0x31, 0x52, 0x73, 0x74, 0x68, 0xe0, 0xbb, 0x4c, 0x25, 0x67, 0x24, 0x5f, 0xb8, 0x29, 0x49, - 0x1a, 0xeb, 0x01, 0x9c, 0x21, 0x8a, 0x64, 0xd6, 0xc8, 0x2a, 0xdb, 0x66, 0x64, 0xbe, 0x77, 0x5b, - 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, 0xb7, 0x3f, 0x7c, - 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, 0x5f, 0xfc, 0x8e, - 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, 0x81, 0x83, 0x65, - 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, 0x39, 0xf5, 0xfe, - 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, 0xda, 0x73, 0x60, - 0xc9, 0x65, 0x92, 0xcb, 0x06, 0xa1, 0xbc, 0x5b, 0x43, 0xad, 0xbe, 0xb0, 0xb7, 0xf8, 0x7b, 0xc0, - 0x63, 0xc1, 0x63, 0xc1, 0x63, 0x57, 0xb2, 0x9b, 0x9b, 0xbb, 0x81, 0x17, 0xaf, 0x22, 0x6f, 0x52, - 0xba, 0x63, 0xcd, 0x32, 0x54, 0x26, 0xca, 0x4e, 0xad, 0x59, 0x66, 0x8a, 0xd2, 0x83, 0xf9, 0x3a, - 0x08, 0x3d, 0xd9, 0x33, 0xe5, 0xc8, 0x66, 0x5f, 0x07, 0x7f, 0x06, 0x7f, 0x06, 0x7f, 0xc6, 0xa9, - 0x3e, 0x71, 0x14, 0xc0, 0x69, 0xca, 0x99, 0xcd, 0x92, 0x59, 0x2b, 0x94, 0xec, 0xb3, 0x53, 0xfe, - 0x46, 0x0f, 0x95, 0x12, 0x7d, 0x4f, 0xa8, 0xae, 0x3f, 0x88, 0x86, 0xfd, 0xd5, 0xe6, 0xe2, 0xa5, - 0xd2, 0xed, 0xa2, 0x6f, 0x43, 0x71, 0x1c, 0xbb, 0xd0, 0x85, 0xe2, 0x38, 0x2b, 0xae, 0xfe, 0x95, - 0x8b, 0xe3, 0xc4, 0x66, 0x1e, 0xad, 0xcf, 0x05, 0x67, 0x5f, 0x84, 0x3e, 0x6d, 0x60, 0x81, 0x5b, - 0xc5, 0x02, 0xd7, 0xee, 0xd3, 0x16, 0xaf, 0x1c, 0x73, 0x8d, 0xda, 0xa6, 0xdf, 0xe7, 0x58, 0xa7, - 0xb6, 0x3c, 0x3a, 0xb5, 0x31, 0x2f, 0x5c, 0x6b, 0x0b, 0xd8, 0xda, 0x42, 0x5e, 0x6f, 0x41, 0xaf, - 0xb9, 0xb0, 0x8d, 0x2d, 0xf0, 0x17, 0x8a, 0x6d, 0xa4, 0x21, 0x63, 0xca, 0x8a, 0x4d, 0x34, 0x66, - 0x34, 0xbc, 0xec, 0xd7, 0xa6, 0xb2, 0x14, 0x6e, 0xc0, 0xae, 0x3b, 0xb0, 0xe5, 0x16, 0xac, 0xbb, - 0x07, 0xeb, 0x6e, 0xc2, 0xba, 0xbb, 0x30, 0xe3, 0x36, 0x0c, 0xb9, 0x0f, 0xe3, 0x6e, 0xe4, 0x85, - 0x37, 0x98, 0xee, 0xf2, 0xb0, 0x63, 0xa9, 0xd3, 0xcb, 0x5b, 0xe7, 0x62, 0xb8, 0x9f, 0x95, 0xf1, - 0xce, 0x2f, 0x36, 0x9d, 0x0d, 0x8d, 0xd3, 0xb1, 0xed, 0x7c, 0xc8, 0x9c, 0x10, 0x99, 0x33, 0x22, - 0x73, 0x4a, 0x66, 0x9d, 0x93, 0x61, 0x27, 0x95, 0xcc, 0xc2, 0xa5, 0x0d, 0xdf, 0x32, 0x67, 0xf7, - 0xb2, 0x27, 0x94, 0x96, 0xfa, 0x69, 0xf5, 0xd3, 0xab, 0xbf, 0xc4, 0x63, 0x2c, 0xb4, 0xb4, 0xcb, - 0x35, 0xa6, 0x97, 0xfe, 0xd9, 0x8f, 0x2c, 0x2e, 0xad, 0xd9, 0x44, 0x5d, 0x5e, 0x9d, 0x9d, 0x1d, - 0x9f, 0x74, 0x8e, 0xcf, 0x7e, 0xaf, 0x9f, 0x5f, 0x5c, 0x9d, 0xd4, 0x2f, 0x1b, 0xcd, 0xb3, 0xce, - 0xe5, 0xff, 0x9d, 0x1f, 0xe7, 0x6c, 0xb6, 0x05, 0x8c, 0x8c, 0xf7, 0xd3, 0x7c, 0xfd, 0xe7, 0x87, - 0xb5, 0x6f, 0x9e, 0x9b, 0xba, 0x8b, 0xd6, 0xe5, 0x71, 0xe7, 0xbc, 0x79, 0xd2, 0xf8, 0xfd, 0xff, - 0x3a, 0xf1, 0x34, 0xe6, 0xac, 0x0d, 0x3c, 0xb2, 0xf2, 0xcd, 0xed, 0xad, 0x69, 0x94, 0xe8, 0x16, - 0x59, 0x33, 0xdc, 0x25, 0xe9, 0x45, 0x02, 0xae, 0xba, 0xcb, 0xb2, 0x68, 0x3b, 0x62, 0xfa, 0xc3, - 0x68, 0xfa, 0xaf, 0x89, 0xe6, 0x49, 0xe6, 0x9e, 0x86, 0x89, 0x83, 0x29, 0xd1, 0xf0, 0x46, 0xf7, - 0x1f, 0x22, 0x0b, 0x92, 0x79, 0xfa, 0xc5, 0x8e, 0x8b, 0x66, 0x74, 0x32, 0x84, 0x68, 0x86, 0x68, - 0x36, 0xeb, 0x80, 0x27, 0x2b, 0xdf, 0x9e, 0x6c, 0x9e, 0x7e, 0xbf, 0x1d, 0xe1, 0x5c, 0x80, 0x70, - 0x86, 0x70, 0x86, 0x70, 0x76, 0x59, 0x38, 0x9b, 0x76, 0x58, 0xc9, 0x17, 0x87, 0xe2, 0x3e, 0xd0, - 0xc2, 0x13, 0xaa, 0x37, 0x08, 0x64, 0x5c, 0xb4, 0xd3, 0xb2, 0xf0, 0x4c, 0x8d, 0xf8, 0xd1, 0x6a, - 0x97, 0xfb, 0x82, 0xa5, 0xaf, 0xb7, 0xe5, 0xe4, 0x28, 0x9c, 0x1d, 0xad, 0xd3, 0xa3, 0x72, 0x7e, - 0xe4, 0x4e, 0x90, 0xdc, 0x19, 0x92, 0x3b, 0x45, 0xbb, 0x51, 0x88, 0x91, 0xa5, 0x95, 0x63, 0xcb, - 0x59, 0x2e, 0x73, 0x9a, 0xf6, 0x2d, 0x7a, 0x89, 0xef, 0xb4, 0x6d, 0xd7, 0x76, 0x5d, 0x28, 0x99, - 0x2b, 0xa5, 0x74, 0xa9, 0x3c, 0xae, 0x95, 0xda, 0xc5, 0xb2, 0xb9, 0x5a, 0x36, 0x97, 0xcb, 0xe6, - 0x7a, 0xed, 0xba, 0x60, 0xcb, 0xae, 0x98, 0xcc, 0x25, 0x27, 0x03, 0x91, 0xf9, 0xe4, 0xd4, 0x42, - 0x27, 0x72, 0xca, 0x6f, 0x9d, 0x73, 0x9e, 0x68, 0x38, 0x2a, 0x27, 0xcd, 0xe1, 0xac, 0x79, 0x9d, - 0x36, 0x97, 0xf3, 0x66, 0x77, 0xe2, 0xec, 0xce, 0x9c, 0xdd, 0xa9, 0xd3, 0x38, 0x77, 0x22, 0x27, - 0x9f, 0xcc, 0xa6, 0xb5, 0x5d, 0xfe, 0x9f, 0xae, 0xdb, 0xd5, 0x7b, 0x77, 0xaf, 0xcd, 0x91, 0xab, - 0x84, 0x63, 0xa6, 0x7a, 0x85, 0x27, 0xd8, 0xf3, 0x21, 0x1b, 0xd6, 0x4a, 0x60, 0xa9, 0x86, 0xd3, - 0x66, 0x7f, 0xd9, 0x44, 0x4d, 0xa6, 0xd5, 0x3a, 0x22, 0xe0, 0xd2, 0x1c, 0xa1, 0x08, 0x8e, 0x00, - 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0xc0, 0x2e, 0x08, 0x93, 0x01, 0xfd, 0x88, 0x7e, 0xd1, 0x24, 0xbd, - 0x75, 0x23, 0xea, 0xd5, 0x42, 0x2b, 0x0e, 0xd9, 0x44, 0x22, 0x27, 0x10, 0xb8, 0x01, 0x08, 0xdc, - 0xc0, 0xe0, 0x0c, 0x40, 0x38, 0x03, 0x14, 0xce, 0x00, 0x06, 0x2d, 0x70, 0x10, 0x03, 0x08, 0x9f, - 0xd8, 0x5c, 0xe0, 0xdd, 0x3d, 0x35, 0xbc, 0xbf, 0x11, 0x21, 0xc7, 0xb2, 0x5f, 0xbf, 0x66, 0xfb, - 0xca, 0x43, 0x9b, 0xa9, 0xf5, 0xbe, 0xea, 0x1f, 0x1e, 0x37, 0xb7, 0x63, 0xba, 0xb6, 0xfc, 0x86, - 0x21, 0x7c, 0xea, 0x32, 0x0c, 0xd7, 0xb2, 0x5f, 0xf9, 0x3a, 0x2c, 0xd4, 0x5d, 0xdf, 0x10, 0x0f, - 0x38, 0x6f, 0x9a, 0xfe, 0x23, 0x4c, 0xf3, 0x8d, 0x69, 0x9a, 0xae, 0xf1, 0x9f, 0x09, 0x1b, 0xfd, - 0xb0, 0x1d, 0xa3, 0xb6, 0x3f, 0x64, 0xf3, 0xfe, 0x08, 0x7d, 0x0c, 0xfd, 0x96, 0x6a, 0x8a, 0x61, - 0x11, 0x6f, 0xad, 0x42, 0x45, 0x43, 0x45, 0x43, 0x45, 0x43, 0x45, 0x43, 0x45, 0x13, 0xae, 0x7b, - 0x23, 0x3d, 0x44, 0xd6, 0xf5, 0xf4, 0xeb, 0xf4, 0x1e, 0x59, 0x77, 0xee, 0xb7, 0x4e, 0x46, 0x5b, - 0xea, 0x91, 0xb2, 0xb6, 0x0d, 0x1c, 0x32, 0x5e, 0x83, 0xe9, 0x76, 0x19, 0x2b, 0x5f, 0xc8, 0xa6, - 0xf5, 0x72, 0xd9, 0x0c, 0x81, 0xc0, 0x1c, 0x22, 0x70, 0x63, 0xb1, 0x57, 0xb0, 0xd8, 0xdd, 0x5c, - 0xec, 0xe8, 0xa9, 0xb3, 0x91, 0x3d, 0x75, 0x36, 0xcc, 0xf5, 0x21, 0x06, 0xb4, 0x51, 0x23, 0x51, - 0x25, 0x84, 0x58, 0x2a, 0x8d, 0xf2, 0xd3, 0x71, 0xed, 0x96, 0x4e, 0x89, 0x0b, 0x82, 0x4c, 0xff, - 0xdd, 0x7f, 0x7b, 0xf4, 0xf5, 0xed, 0x0f, 0x4c, 0x96, 0x5a, 0xe1, 0xb7, 0x9e, 0xcd, 0x3e, 0xb1, - 0xf2, 0xa7, 0x78, 0x22, 0x0c, 0x3d, 0xe6, 0x4e, 0x64, 0xa4, 0xeb, 0x5a, 0x13, 0x9d, 0x92, 0x39, - 0x95, 0xea, 0xb8, 0x2f, 0xee, 0x45, 0x7c, 0xe0, 0x5b, 0x0d, 0xfb, 0x7d, 0x82, 0x84, 0xdb, 0x53, - 0xff, 0x91, 0x7e, 0xd0, 0x66, 0xd8, 0x13, 0xa1, 0xe8, 0x7d, 0x7e, 0x9a, 0x0e, 0xb9, 0xd1, 0x36, - 0x49, 0xec, 0x23, 0x9d, 0xf2, 0x8d, 0x39, 0x92, 0x94, 0xf0, 0x70, 0xd8, 0xd5, 0x6a, 0x2a, 0x55, - 0x3e, 0xdf, 0x0d, 0x3a, 0x2d, 0x79, 0xd3, 0x19, 0x2f, 0xcb, 0x0b, 0xa1, 0x3b, 0x97, 0x93, 0xeb, - 0x3e, 0x7e, 0x7d, 0x4f, 0xd3, 0x9f, 0x75, 0x2e, 0x26, 0xf7, 0xd0, 0x69, 0x4d, 0x2e, 0xf9, 0x98, - 0x24, 0x19, 0x7f, 0x84, 0xc3, 0xde, 0x94, 0x6b, 0x82, 0x75, 0x2d, 0xd8, 0xb1, 0x24, 0xf3, 0xcf, - 0xd9, 0xc2, 0x33, 0xce, 0x45, 0xe2, 0x6e, 0x0c, 0x19, 0x5e, 0x5f, 0x46, 0x14, 0xd5, 0x49, 0xe6, - 0x87, 0x43, 0x69, 0x92, 0xc5, 0x81, 0x0b, 0x94, 0x26, 0x59, 0x9d, 0x55, 0xa2, 0x34, 0xc9, 0x16, - 0xa3, 0x95, 0xf5, 0xd2, 0x24, 0xaf, 0xfd, 0x17, 0x5d, 0x5d, 0x92, 0xb9, 0x51, 0x51, 0x94, 0xc4, - 0x35, 0x67, 0xca, 0xe3, 0x54, 0xa9, 0x9d, 0x2b, 0x9b, 0x93, 0x65, 0x73, 0xb6, 0x6c, 0x4e, 0x37, - 0x1b, 0x21, 0x1e, 0xb2, 0xa2, 0x24, 0x52, 0x45, 0xda, 0x57, 0x5d, 0xb1, 0x4e, 0x77, 0xe4, 0x95, - 0xd7, 0xfa, 0xeb, 0xc1, 0x51, 0x9a, 0x64, 0xd3, 0x5c, 0x36, 0xaf, 0xeb, 0xe6, 0x72, 0xe1, 0xec, - 0xae, 0x9c, 0xdd, 0xa5, 0xb3, 0xbb, 0x76, 0x1a, 0x17, 0x4f, 0xe4, 0xea, 0x93, 0xd9, 0x44, 0x69, - 0x12, 0xdb, 0xae, 0xf1, 0x6d, 0x69, 0x92, 0xd7, 0xf0, 0x83, 0xea, 0x24, 0xef, 0xd5, 0x71, 0x11, - 0x43, 0x81, 0x92, 0xd9, 0xc8, 0x19, 0xaf, 0x51, 0x02, 0xb2, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0xb2, - 0xc0, 0xaf, 0x0f, 0xdf, 0x3a, 0x7d, 0xbe, 0x83, 0x56, 0xb3, 0x0b, 0xe0, 0x39, 0x67, 0x55, 0xc0, - 0x39, 0xab, 0x8c, 0x43, 0x03, 0x37, 0x44, 0x38, 0x03, 0x15, 0xce, 0x40, 0x86, 0x33, 0xd0, 0x41, - 0x0b, 0x21, 0xc4, 0x50, 0xc2, 0x06, 0x29, 0xc9, 0xc0, 0x52, 0xf5, 0x04, 0x5f, 0x69, 0x80, 0x57, - 0xc1, 0xc8, 0xf1, 0x65, 0x30, 0x99, 0x38, 0x6f, 0x5d, 0x02, 0x36, 0xb8, 0x71, 0x01, 0x76, 0xdc, - 0x82, 0x1f, 0x57, 0x60, 0xc8, 0x39, 0x38, 0x72, 0x0e, 0x96, 0x9c, 0x83, 0x27, 0x1e, 0x98, 0x62, - 0x82, 0xab, 0x64, 0xf6, 0xd9, 0x8e, 0x07, 0xa7, 0xfc, 0x06, 0x7d, 0x18, 0x75, 0xa9, 0x5a, 0xa9, - 0xf2, 0x1e, 0x1d, 0x7b, 0x1b, 0x66, 0x1d, 0x03, 0xeb, 0x96, 0x9c, 0xe8, 0x61, 0x58, 0x06, 0xc4, - 0xe5, 0xa2, 0x97, 0x2b, 0x74, 0xc2, 0xf2, 0xd1, 0x8e, 0xe8, 0xf4, 0x34, 0x81, 0x2a, 0x82, 0x40, - 0x81, 0x40, 0x81, 0x40, 0x81, 0x40, 0x6d, 0x0c, 0x81, 0xe2, 0xd2, 0xfd, 0x8e, 0xe8, 0x7f, 0xa7, - 0xe2, 0x00, 0x8e, 0xc4, 0x03, 0x9c, 0x89, 0x0b, 0xb8, 0x04, 0x6f, 0x6e, 0xc2, 0x9c, 0x6b, 0x70, - 0xe7, 0x2c, 0xec, 0x39, 0x0b, 0x7f, 0xce, 0xc2, 0x20, 0x2f, 0x1c, 0x32, 0xc3, 0xa2, 0x3b, 0xf1, - 0x85, 0x94, 0xdf, 0x19, 0x4a, 0xa5, 0x2b, 0x25, 0x17, 0x7c, 0xce, 0x14, 0xa5, 0x0e, 0x1d, 0xb8, - 0x14, 0xde, 0x8a, 0xdf, 0x6f, 0xff, 0xb8, 0xe1, 0x83, 0x77, 0x5c, 0xa9, 0x08, 0xee, 0x28, 0xbd, - 0x49, 0x5d, 0x96, 0x23, 0x15, 0xc3, 0x53, 0xd7, 0xe5, 0x50, 0x75, 0x66, 0xc7, 0xdc, 0xf3, 0xbc, - 0xa9, 0xfb, 0x8f, 0x30, 0xf5, 0x77, 0x9a, 0x7a, 0xe1, 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x7c, - 0xf5, 0xa0, 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x4a, 0xa1, 0x0c, 0xeb, 0xdf, 0x0c, 0x6a, 0xe4, 0xce, - 0x55, 0xb4, 0x3f, 0x6c, 0xe7, 0xfd, 0x73, 0xf6, 0x53, 0xe8, 0x07, 0x5d, 0xbf, 0xef, 0x49, 0xa5, - 0x45, 0x78, 0xeb, 0xd3, 0x1e, 0xe0, 0xfa, 0x29, 0x45, 0x5d, 0x70, 0x6d, 0x08, 0xa8, 0x20, 0xa0, - 0x82, 0x80, 0x0a, 0x02, 0x2a, 0x08, 0xa8, 0x20, 0xa0, 0xe2, 0x60, 0x40, 0xe5, 0xa0, 0xe8, 0x50, - 0x40, 0xa5, 0x8a, 0x80, 0x0a, 0x02, 0x2a, 0x08, 0xa8, 0x20, 0xa0, 0x82, 0x80, 0xca, 0xc6, 0x99, - 0xba, 0x2b, 0x2d, 0xdd, 0x10, 0x46, 0x41, 0x18, 0x05, 0x61, 0x94, 0x5f, 0x0e, 0xa3, 0xbc, 0x6e, - 0xf4, 0xe2, 0x5a, 0x18, 0xc5, 0x8d, 0x26, 0x34, 0x08, 0xa3, 0x20, 0x8c, 0x82, 0x30, 0x0a, 0xc2, - 0x28, 0x08, 0xa3, 0x20, 0x8c, 0xb2, 0xd0, 0xef, 0x38, 0x84, 0x53, 0x3b, 0x8e, 0xf4, 0x51, 0x7a, - 0xc1, 0x09, 0x47, 0xfa, 0x29, 0x25, 0x17, 0xb4, 0x2d, 0x4d, 0xd4, 0x40, 0xad, 0x1d, 0xa0, 0xd6, - 0x15, 0x87, 0xa9, 0x75, 0x05, 0xd4, 0x1a, 0xd4, 0x1a, 0xd4, 0x1a, 0xd4, 0x1a, 0xd4, 0x1a, 0xd4, - 0xda, 0x61, 0x6a, 0x5d, 0x01, 0xb5, 0xde, 0x2c, 0x6a, 0x8d, 0x96, 0xa5, 0x5b, 0xd5, 0xb2, 0x14, - 0x42, 0x83, 0x4f, 0x68, 0xdc, 0x0f, 0xfa, 0x91, 0x77, 0x13, 0x38, 0x24, 0x2f, 0x92, 0x2b, 0x82, - 0xa8, 0x80, 0xa8, 0x80, 0xa8, 0x80, 0xa8, 0x80, 0xa8, 0x80, 0xa8, 0x70, 0x4c, 0x54, 0xdc, 0x04, - 0x41, 0x5f, 0xf8, 0xca, 0x25, 0x3d, 0x51, 0x00, 0x79, 0xe2, 0x21, 0x4f, 0xba, 0xeb, 0x18, 0x77, - 0xd2, 0x5d, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x17, 0x4f, - 0x8c, 0x1c, 0x3a, 0x44, 0x9c, 0xca, 0x38, 0x30, 0xf2, 0xe6, 0x0f, 0x0e, 0x8c, 0x6c, 0x02, 0xbb, - 0x49, 0x5d, 0x16, 0x0e, 0x8c, 0x6c, 0x9a, 0x77, 0x9e, 0x37, 0x75, 0x1c, 0x18, 0x79, 0xb7, 0xa9, - 0x57, 0x61, 0xea, 0x9b, 0x41, 0x83, 0xdc, 0xb9, 0x0a, 0xec, 0x31, 0x71, 0x85, 0x49, 0x74, 0xdf, - 0xb5, 0x38, 0x89, 0xee, 0x23, 0x50, 0x82, 0x40, 0x09, 0x02, 0x25, 0x08, 0x94, 0x20, 0x50, 0x82, - 0x40, 0x09, 0x02, 0x25, 0x08, 0x94, 0x20, 0x50, 0x82, 0x40, 0x09, 0xd4, 0x23, 0x02, 0x25, 0x59, - 0x33, 0xf5, 0x62, 0x19, 0x25, 0x35, 0x10, 0x2a, 0x41, 0xa8, 0xc4, 0xf9, 0x50, 0x49, 0x28, 0xee, - 0x03, 0x2d, 0x1c, 0xad, 0xa9, 0xb1, 0xe8, 0xe2, 0x10, 0x40, 0x41, 0x00, 0x05, 0x01, 0x14, 0x04, - 0x50, 0x10, 0x40, 0x41, 0x00, 0x05, 0x45, 0x35, 0x7e, 0x05, 0xab, 0x70, 0xf2, 0x6f, 0xd1, 0x05, - 0xa1, 0xa8, 0x06, 0xc8, 0x35, 0x1d, 0xb9, 0xae, 0xb8, 0x4c, 0xae, 0x51, 0x56, 0x03, 0xe4, 0x1a, - 0xe4, 0x1a, 0xe4, 0x1a, 0xe4, 0x1a, 0xe4, 0xda, 0x65, 0x72, 0x8d, 0xb2, 0x1a, 0x1b, 0x46, 0xae, - 0x51, 0x56, 0x03, 0x65, 0x35, 0x20, 0x35, 0x48, 0x56, 0x5c, 0xe4, 0x52, 0x4b, 0xb1, 0x08, 0x3d, - 0xc4, 0x20, 0x25, 0x20, 0x25, 0x20, 0x25, 0x20, 0x25, 0x20, 0x25, 0xdc, 0x93, 0x12, 0x51, 0xe8, - 0x45, 0xb2, 0xe7, 0xe9, 0xf1, 0x85, 0x39, 0xa4, 0x24, 0x6a, 0x0e, 0x5c, 0xcb, 0xf4, 0x61, 0x21, - 0xdd, 0x71, 0x89, 0xe9, 0x4c, 0xce, 0x71, 0xf4, 0xfd, 0x1b, 0xd1, 0xcf, 0x39, 0x94, 0xa1, 0xe6, - 0x90, 0x05, 0xb9, 0x69, 0x49, 0xee, 0x59, 0x54, 0xca, 0xb2, 0x9c, 0x69, 0x6c, 0xb8, 0xcc, 0xba, - 0xaa, 0x0e, 0x5e, 0x9a, 0x5b, 0xe9, 0xd9, 0xee, 0x5b, 0x5b, 0x32, 0x71, 0x2e, 0xa6, 0x6f, 0x3b, - 0xaa, 0xe1, 0x7e, 0x7a, 0x99, 0x49, 0x7b, 0xfe, 0x8a, 0xe3, 0x17, 0xea, 0x70, 0x0a, 0xac, 0x63, - 0xa4, 0xf5, 0xbf, 0xd7, 0x8e, 0x83, 0xf9, 0xe0, 0x1b, 0xbf, 0x76, 0xf2, 0xa5, 0xc3, 0x72, 0xb5, - 0x8c, 0x05, 0x94, 0x0d, 0xcd, 0xb9, 0x39, 0x57, 0xd5, 0xfe, 0x00, 0xb7, 0xb7, 0x89, 0x74, 0x59, - 0xa8, 0xe1, 0xbd, 0x08, 0xfd, 0xf1, 0x6a, 0x74, 0x98, 0x33, 0x17, 0x4a, 0x0e, 0x5e, 0xdb, 0xb1, - 0x1a, 0xde, 0x8f, 0x01, 0xcc, 0xad, 0xc5, 0xe8, 0xce, 0xd5, 0xb8, 0xe1, 0x12, 0x1c, 0x71, 0x05, - 0x0e, 0xc6, 0x60, 0x1c, 0xcb, 0x04, 0xf8, 0xff, 0xec, 0xfd, 0x6b, 0x73, 0xdb, 0x46, 0xb7, 0x2d, - 0x0a, 0x7f, 0xf7, 0xaf, 0x60, 0xb1, 0x9e, 0xaa, 0x37, 0x79, 0xb7, 0x61, 0x91, 0xd4, 0xdd, 0x5f, - 0x76, 0x51, 0x12, 0xe5, 0xf0, 0x44, 0x12, 0xb9, 0x45, 0xda, 0x49, 0xb6, 0xad, 0x47, 0xd5, 0x02, - 0x9a, 0x54, 0x1f, 0x83, 0x00, 0x02, 0x34, 0x65, 0x6b, 0x25, 0xfa, 0xef, 0xa7, 0x08, 0x5e, 0x25, - 0xea, 0x02, 0xf4, 0x05, 0x40, 0x83, 0x23, 0xb5, 0x56, 0x3d, 0xb2, 0x6c, 0x34, 0xd0, 0x97, 0x39, - 0xe7, 0x98, 0xa3, 0x67, 0x8f, 0x5e, 0xb3, 0xf9, 0x83, 0x02, 0x7d, 0x53, 0xd1, 0x2a, 0x03, 0x16, - 0x1f, 0x86, 0x0a, 0x81, 0x4d, 0xae, 0x10, 0x28, 0x98, 0xab, 0x45, 0xc5, 0xc4, 0xe6, 0x05, 0xb9, - 0x2a, 0x2f, 0xc2, 0xbe, 0xd4, 0x22, 0xa8, 0x15, 0x60, 0x33, 0x0a, 0x35, 0x13, 0x4f, 0x83, 0x27, - 0x6a, 0x26, 0xde, 0xf8, 0x2a, 0xd4, 0x4c, 0x24, 0xfc, 0x30, 0xd4, 0x4c, 0x18, 0x15, 0x93, 0x51, - 0x33, 0x51, 0x6c, 0xbe, 0xa5, 0x48, 0xfc, 0x4a, 0x41, 0xf8, 0x94, 0x1c, 0x41, 0xdc, 0xbb, 0x0d, - 0x32, 0xd1, 0x6a, 0xd3, 0xf3, 0x7c, 0x3e, 0xb5, 0x83, 0x3c, 0x0d, 0xb4, 0x1a, 0xd9, 0xb7, 0x74, - 0x44, 0x02, 0xc2, 0x6f, 0x27, 0xe6, 0xb9, 0xe5, 0x07, 0xd4, 0xb3, 0x63, 0xe0, 0x34, 0xf1, 0xdf, - 0x5b, 0x93, 0xff, 0x0f, 0xd9, 0xcd, 0x16, 0xe1, 0x3c, 0xb4, 0x22, 0xca, 0xa3, 0xc5, 0x4f, 0x5b, - 0x7c, 0xec, 0x79, 0xd4, 0xb5, 0xa8, 0x67, 0x93, 0x20, 0x1a, 0xbb, 0x71, 0x57, 0x66, 0xbf, 0x8c, - 0x66, 0xff, 0xbb, 0x15, 0x8d, 0x6f, 0xb8, 0x7b, 0x17, 0xcd, 0xfe, 0x77, 0x2b, 0xa2, 0xc3, 0x49, - 0x8c, 0xb0, 0x5c, 0x16, 0xf1, 0xe8, 0xd1, 0x9f, 0xe6, 0x7f, 0x58, 0xfc, 0x76, 0x2b, 0xe2, 0x84, - 0xd3, 0x7c, 0xe2, 0x47, 0xf6, 0x0b, 0x31, 0xdb, 0x37, 0x66, 0xbc, 0xe4, 0x27, 0x68, 0x2a, 0xe6, - 0xdb, 0x3c, 0x87, 0x66, 0x0d, 0xa4, 0xaa, 0x67, 0x2c, 0xe2, 0x4d, 0xce, 0xc3, 0x5c, 0x8c, 0xac, - 0x7a, 0xce, 0xbc, 0x96, 0x4b, 0xe3, 0x85, 0x5d, 0xfd, 0x58, 0xf1, 0xc6, 0xae, 0xfb, 0x3e, 0x87, - 0x8f, 0x20, 0x3f, 0xf3, 0xff, 0x88, 0x4e, 0xe8, 0xd0, 0x90, 0x3a, 0x47, 0xf7, 0xb3, 0x4f, 0x28, - 0xf5, 0x82, 0xcf, 0xd9, 0xb7, 0x17, 0xd5, 0xa7, 0xe7, 0x00, 0xf8, 0xaa, 0x11, 0x0f, 0xc7, 0x36, - 0xf7, 0x66, 0xe8, 0xf3, 0x68, 0x18, 0x5c, 0x5f, 0xb2, 0x9b, 0xeb, 0x89, 0x47, 0xe8, 0x51, 0x7e, - 0xdd, 0x8f, 0xbb, 0xd4, 0x5a, 0xed, 0xee, 0xec, 0x77, 0xd7, 0xbd, 0xb8, 0x7b, 0xd7, 0xbd, 0xe9, - 0xa7, 0x4f, 0xdc, 0xc8, 0xfc, 0xe7, 0x6c, 0x83, 0x52, 0x76, 0xa1, 0x21, 0x9b, 0x37, 0x65, 0x64, - 0x8b, 0x79, 0xd9, 0x60, 0xd1, 0x6c, 0x2f, 0x9b, 0xc5, 0xaa, 0x7f, 0xe9, 0x64, 0xb0, 0x6c, 0xaa, - 0x53, 0xc8, 0x99, 0xd5, 0x6a, 0x59, 0x1e, 0x23, 0x88, 0x5f, 0x9b, 0x91, 0x59, 0xcc, 0x13, 0xde, - 0x8c, 0x5e, 0xb7, 0xe0, 0x60, 0x1b, 0x19, 0xbd, 0x30, 0x07, 0xae, 0x35, 0x5f, 0x4e, 0x35, 0x2f, - 0xee, 0x34, 0x77, 0x8e, 0x34, 0x77, 0x2e, 0x34, 0x77, 0xce, 0xb3, 0x5c, 0x01, 0xfb, 0x84, 0x65, - 0x9b, 0xa4, 0x55, 0x99, 0x17, 0x71, 0xe2, 0xd9, 0xd4, 0xca, 0xe1, 0xc8, 0xf3, 0xb2, 0x08, 0x65, - 0xe5, 0x23, 0xb2, 0x4e, 0xcb, 0x73, 0xd9, 0xa6, 0xcb, 0x6d, 0x5b, 0x2e, 0xcf, 0x6d, 0xb8, 0x62, - 0x6c, 0xbb, 0xe5, 0xbd, 0xcd, 0x56, 0x98, 0x6d, 0xb5, 0xc2, 0x6c, 0xa3, 0x15, 0x66, 0xdb, 0xac, - 0xdc, 0x04, 0x64, 0x6e, 0xdb, 0x60, 0x8f, 0x4e, 0xe5, 0xed, 0xed, 0xe4, 0x61, 0xf3, 0x33, 0x2f, - 0x9f, 0x43, 0x31, 0x61, 0xce, 0xa7, 0xea, 0x72, 0xdc, 0x53, 0x29, 0xc2, 0xa9, 0xb8, 0xa2, 0x54, - 0xe1, 0x14, 0xe4, 0xd2, 0x92, 0x22, 0x9d, 0xb9, 0xc9, 0xb3, 0x5a, 0xad, 0x08, 0x87, 0xce, 0x8a, - 0xb6, 0x34, 0xeb, 0x07, 0x3b, 0x3b, 0x7b, 0xfb, 0x3b, 0x3b, 0xb5, 0xfd, 0xed, 0xfd, 0xda, 0xe1, - 0xee, 0x6e, 0x7d, 0xaf, 0xbe, 0x8b, 0xd5, 0x9a, 0x0f, 0x34, 0xc8, 0xef, 0xad, 0x57, 0x65, 0xa5, - 0xf5, 0x33, 0xe4, 0xa2, 0x7e, 0x50, 0x36, 0xbc, 0xe5, 0xf9, 0x65, 0xd3, 0xb3, 0xf7, 0x23, 0x91, - 0x46, 0x22, 0x8d, 0x44, 0x1a, 0x89, 0x34, 0x12, 0xe9, 0x52, 0x26, 0xd2, 0xb9, 0xc8, 0xdb, 0xe4, - 0x28, 0x5f, 0x83, 0x44, 0x1a, 0xd9, 0x0a, 0x12, 0x69, 0x24, 0xd2, 0x85, 0x5f, 0x9a, 0x3b, 0x8d, - 0xc3, 0x9d, 0xc3, 0xbd, 0xfd, 0xc6, 0x21, 0xd2, 0x67, 0xa4, 0xcf, 0x65, 0x49, 0x9f, 0x51, 0x15, - 0xa7, 0xe0, 0xbd, 0x45, 0xa9, 0x8a, 0xcb, 0xee, 0x50, 0x41, 0x06, 0x25, 0x71, 0xef, 0x0c, 0x5e, - 0x91, 0xcb, 0x43, 0x01, 0x59, 0xd5, 0x3f, 0x64, 0x7b, 0x14, 0x20, 0x97, 0xd2, 0xff, 0x5c, 0x4a, - 0xfd, 0xb3, 0x2d, 0xed, 0xd7, 0xbd, 0x2c, 0x33, 0x76, 0x90, 0x05, 0x71, 0x8c, 0xd5, 0x4c, 0xaa, - 0x6b, 0x95, 0x55, 0xe2, 0xeb, 0xf5, 0xe0, 0xfa, 0xfc, 0xaa, 0x9e, 0x96, 0x35, 0x99, 0x44, 0x56, - 0xa6, 0x90, 0x9f, 0x09, 0xe8, 0x59, 0x46, 0xea, 0x27, 0x59, 0xc3, 0x04, 0x6b, 0xae, 0x75, 0xcf, - 0xa4, 0xb6, 0x5d, 0x73, 0x2d, 0xbb, 0xf6, 0xda, 0xf5, 0x2c, 0xf6, 0x51, 0xb2, 0xdd, 0x2f, 0xc9, - 0x6a, 0x5f, 0x24, 0xf3, 0xfd, 0x8f, 0xcc, 0xf7, 0x39, 0x32, 0xdf, 0xcf, 0x30, 0x2b, 0x34, 0xe9, - 0xae, 0x15, 0xaf, 0xde, 0x30, 0xcf, 0x61, 0xde, 0xd0, 0xca, 0xe2, 0x3a, 0xac, 0x85, 0x8d, 0xae, - 0xbe, 0x54, 0x77, 0xf6, 0x95, 0x09, 0x71, 0x98, 0xd9, 0x16, 0x75, 0x96, 0x5b, 0xd2, 0xf9, 0x6c, - 0x41, 0x67, 0xbd, 0xe5, 0x9c, 0xdb, 0x16, 0x73, 0x6e, 0x5b, 0xca, 0xb9, 0x6d, 0x21, 0x9b, 0xcd, - 0xe3, 0x64, 0xb6, 0x25, 0x9c, 0xd3, 0xb5, 0x4b, 0x59, 0x5e, 0x8a, 0x93, 0xed, 0x65, 0x37, 0x39, - 0x9c, 0x90, 0xcc, 0xe5, 0xda, 0xa3, 0x3c, 0xae, 0x35, 0xca, 0xe7, 0xda, 0x22, 0xd4, 0x65, 0x64, - 0xfb, 0x6a, 0xd4, 0x65, 0xe4, 0xf8, 0x5f, 0xe1, 0xaa, 0xc8, 0xf7, 0xb0, 0xe9, 0x9d, 0x11, 0xe8, - 0x78, 0x7d, 0x6d, 0xa2, 0x30, 0x63, 0x7d, 0x6d, 0x16, 0xe1, 0x5a, 0x1c, 0x54, 0x65, 0x94, 0xbe, - 0x2a, 0xe3, 0xfd, 0xa6, 0xc0, 0x9d, 0x7c, 0x65, 0x4c, 0xf3, 0x94, 0x2d, 0xcd, 0x49, 0xa6, 0x34, - 0xbb, 0xb7, 0x5d, 0x95, 0xa9, 0xe0, 0x27, 0x87, 0x1c, 0x2f, 0xa7, 0x6b, 0x55, 0xf2, 0xb8, 0x36, - 0x25, 0xb7, 0x6b, 0x51, 0x70, 0xed, 0xc9, 0x46, 0x5c, 0x7b, 0x72, 0x55, 0x92, 0x4a, 0xb5, 0x2b, - 0x53, 0xeb, 0x35, 0x34, 0x6e, 0x95, 0xda, 0xbe, 0xeb, 0x87, 0x51, 0x76, 0x9b, 0x4b, 0xb3, 0xf7, - 0x61, 0x5f, 0x29, 0x9d, 0x83, 0xc7, 0xbe, 0x92, 0xea, 0x15, 0x82, 0x7d, 0x25, 0xec, 0x2b, 0x25, - 0x18, 0xb5, 0xec, 0xf7, 0x95, 0x32, 0xa3, 0xb0, 0x33, 0xa4, 0xac, 0x33, 0xa6, 0xa8, 0x33, 0x4c, - 0x37, 0xf2, 0xa0, 0xa0, 0xf3, 0x3a, 0xe9, 0x9f, 0xd3, 0xd1, 0xbf, 0x3c, 0x09, 0xbb, 0x2c, 0x55, - 0x2b, 0xf2, 0x60, 0x8c, 0xf3, 0x5e, 0x4a, 0x79, 0x1d, 0xd5, 0xcb, 0x75, 0x4d, 0x21, 0x9d, 0x2a, - 0x40, 0x60, 0xc7, 0x31, 0x1c, 0x3d, 0x2f, 0xcd, 0xf6, 0x18, 0x8e, 0x91, 0x39, 0xf7, 0x24, 0xe1, - 0xa0, 0x21, 0xf5, 0xb2, 0x28, 0x51, 0x9e, 0xa3, 0xca, 0x95, 0x77, 0x6a, 0x36, 0xac, 0x13, 0x3a, - 0x20, 0x63, 0x37, 0x4e, 0x33, 0xea, 0xb5, 0x1a, 0x32, 0x7d, 0x64, 0xfa, 0xc8, 0xf4, 0x91, 0xe9, - 0x23, 0xd3, 0x47, 0xa6, 0x8f, 0x4c, 0x1f, 0x99, 0x3e, 0x32, 0x7d, 0x64, 0xfa, 0xc8, 0xf4, 0x91, - 0xe9, 0x1b, 0x9f, 0xc4, 0xf1, 0x2c, 0xe0, 0xc2, 0x02, 0x2a, 0x64, 0x70, 0xca, 0x04, 0xa9, 0x14, - 0x52, 0x29, 0xa4, 0x52, 0x48, 0xa5, 0x8c, 0x4c, 0xa5, 0x98, 0x43, 0x3d, 0xce, 0xf8, 0x7d, 0x48, - 0x07, 0x59, 0x1e, 0xc6, 0xcb, 0x00, 0xcb, 0x54, 0xdb, 0xb3, 0xae, 0x1d, 0x91, 0x28, 0x87, 0x5b, - 0x21, 0xfb, 0x9f, 0x2f, 0x2e, 0x5a, 0x67, 0xd7, 0xad, 0x8b, 0xe3, 0x66, 0xb7, 0xf7, 0xf9, 0xac, - 0xd9, 0x6f, 0x77, 0x2e, 0xae, 0x7b, 0x9f, 0x8f, 0xfa, 0x67, 0x5f, 0xae, 0xfb, 0x7f, 0x75, 0x5b, - 0x59, 0x79, 0x80, 0x18, 0x46, 0x46, 0x99, 0x56, 0x38, 0xe6, 0x24, 0x1e, 0xdf, 0xbb, 0xec, 0xb7, - 0xae, 0x8f, 0xda, 0x17, 0x27, 0xed, 0x8b, 0x4f, 0xd7, 0xbd, 0xf6, 0x49, 0xb5, 0x8c, 0x29, 0x50, - 0x4e, 0x63, 0x3b, 0x5b, 0xcd, 0xc7, 0x9d, 0xb3, 0xce, 0x25, 0xc6, 0x55, 0xf9, 0xb8, 0x5e, 0xb6, - 0xce, 0x3b, 0xfd, 0xd6, 0x75, 0xeb, 0xe2, 0xa4, 0xdb, 0x69, 0x5f, 0xf4, 0x31, 0xc2, 0x8a, 0xbd, - 0x42, 0xf7, 0xb2, 0x75, 0xda, 0xba, 0x6c, 0x5d, 0x1c, 0xb7, 0x30, 0xb4, 0x8a, 0x87, 0xb6, 0xd7, - 0xfa, 0x74, 0xde, 0xba, 0xe8, 0x5f, 0x9f, 0xb5, 0x7b, 0xfd, 0xb2, 0x5d, 0x9d, 0x7a, 0x65, 0x3a, - 0x5c, 0x85, 0xdc, 0x50, 0xa5, 0xb4, 0x4a, 0x78, 0xfa, 0xa4, 0x70, 0xcd, 0x50, 0xc0, 0xd3, 0xca, - 0x23, 0x65, 0xc1, 0x1f, 0x69, 0xe6, 0x8d, 0xb4, 0xf3, 0x45, 0xd0, 0xbf, 0x33, 0x86, 0x0f, 0x82, - 0xfe, 0x5d, 0xb1, 0x02, 0x92, 0x76, 0x9e, 0x67, 0x61, 0x37, 0x2e, 0x25, 0x03, 0xbd, 0xdc, 0xce, - 0x82, 0xd3, 0xd1, 0xb8, 0x49, 0x5e, 0xed, 0xce, 0x62, 0xea, 0x87, 0x0f, 0xd3, 0xc0, 0xb7, 0x15, - 0xfb, 0x65, 0x53, 0xa2, 0xdf, 0xbb, 0x02, 0xaf, 0xc9, 0xb9, 0x90, 0xbb, 0x86, 0x40, 0xa7, 0xb7, - 0x54, 0x34, 0x93, 0xd2, 0xd0, 0x4c, 0x4a, 0x41, 0xf5, 0x96, 0x7e, 0xaa, 0x5e, 0x2f, 0x9a, 0xc1, - 0x74, 0x96, 0x20, 0xba, 0xaa, 0x45, 0x98, 0x59, 0x4a, 0x26, 0x5d, 0xad, 0x4f, 0x53, 0xe7, 0x79, - 0xd4, 0xb4, 0xa4, 0x68, 0x2d, 0xea, 0x5a, 0x83, 0x99, 0xac, 0x3d, 0x35, 0x33, 0x2c, 0x3f, 0x1f, - 0x0a, 0xe6, 0x42, 0x6d, 0x0e, 0xa6, 0x23, 0xe7, 0x52, 0x9c, 0x63, 0x29, 0xcf, 0xa9, 0x74, 0xe4, - 0x50, 0x7a, 0x73, 0x26, 0x5d, 0x39, 0x92, 0xf6, 0x9c, 0x48, 0x7b, 0x0e, 0xa4, 0x3d, 0xe7, 0x29, - 0x96, 0x0f, 0x56, 0x9e, 0xc3, 0x68, 0xcc, 0x59, 0x74, 0xe4, 0x28, 0x3a, 0x73, 0x12, 0x05, 0xde, - 0xfd, 0x5d, 0x8e, 0x6b, 0x44, 0x61, 0x4e, 0xa1, 0x36, 0x87, 0xd0, 0x92, 0x33, 0x68, 0xc9, 0x11, - 0xd4, 0xe6, 0x04, 0xb2, 0xf3, 0xa9, 0x18, 0x6f, 0x69, 0xc5, 0x59, 0x0a, 0xdc, 0x86, 0x30, 0x88, - 0x97, 0xb3, 0x7e, 0x71, 0x9b, 0x15, 0x7b, 0x52, 0x70, 0x55, 0xa8, 0x5a, 0x0d, 0x7a, 0x56, 0x81, - 0xd8, 0x14, 0xa4, 0x1f, 0xc0, 0x74, 0x4f, 0xa4, 0x1c, 0x6a, 0xd9, 0x21, 0x56, 0x3b, 0xb4, 0x02, - 0x16, 0x95, 0xde, 0x82, 0xd2, 0xcd, 0x5b, 0xf2, 0xd1, 0x4f, 0xf6, 0x2f, 0x13, 0xce, 0xcf, 0xf2, - 0xd6, 0x43, 0x87, 0x26, 0xc5, 0xa7, 0x62, 0x11, 0x4c, 0x2a, 0x52, 0x49, 0x45, 0x24, 0xb1, 0xc8, - 0x93, 0x74, 0x00, 0x05, 0x17, 0xb6, 0xf0, 0x82, 0x4e, 0xb1, 0x76, 0x5f, 0x5f, 0xb3, 0xc9, 0xd6, - 0xe7, 0xdb, 0xab, 0xed, 0xf5, 0x7f, 0xf1, 0xc6, 0x30, 0xa6, 0x1d, 0xbe, 0xb4, 0xc3, 0xf6, 0x7a, - 0x27, 0x5f, 0xfe, 0xf4, 0x57, 0x3e, 0xbb, 0x6a, 0xfb, 0xa3, 0xd1, 0xd8, 0x63, 0x9c, 0xd1, 0xb7, - 0xd5, 0xd2, 0x56, 0xd4, 0xce, 0x96, 0x0f, 0xbd, 0x31, 0x24, 0xc9, 0x6e, 0x11, 0x4b, 0x9c, 0xb9, - 0xa7, 0xc9, 0xc8, 0xc5, 0x32, 0xed, 0xb4, 0x19, 0xb4, 0x70, 0x66, 0x2c, 0x9c, 0xf1, 0x0a, 0x67, - 0xb2, 0x72, 0x8b, 0x3b, 0xe9, 0xad, 0x50, 0x8b, 0xd5, 0x71, 0x9f, 0x7c, 0x0c, 0x9f, 0x2e, 0xac, - 0xfb, 0xa4, 0x63, 0x98, 0xee, 0x92, 0xba, 0xd4, 0x04, 0x91, 0x08, 0x01, 0x24, 0x47, 0xf0, 0x88, - 0x12, 0x38, 0xd2, 0x04, 0x8d, 0x34, 0x01, 0x23, 0x4d, 0xb0, 0xa8, 0xc5, 0x02, 0x69, 0x2f, 0x31, - 0x9b, 0xa1, 0x86, 0xd4, 0xe3, 0xbe, 0x28, 0xd5, 0x4f, 0x01, 0x3a, 0x24, 0xf9, 0x4f, 0x61, 0x9e, - 0x53, 0x86, 0xcf, 0x54, 0xc3, 0x5b, 0xca, 0xf2, 0x93, 0xca, 0x78, 0x48, 0x65, 0x7c, 0xa3, 0x32, - 0x5e, 0x51, 0x6f, 0xca, 0x22, 0xcc, 0x07, 0x2a, 0xe0, 0xfd, 0x64, 0xf8, 0xbd, 0x75, 0x1e, 0x6f, - 0x6a, 0x68, 0xba, 0xf2, 0x91, 0x54, 0x80, 0x54, 0xe4, 0x92, 0x57, 0xa9, 0xcb, 0x5b, 0x05, 0x2f, - 0x65, 0x15, 0xbe, 0x6c, 0x15, 0x0e, 0x63, 0x63, 0x1d, 0x86, 0xe8, 0x25, 0xa0, 0x02, 0xf0, 0x4f, - 0x19, 0x1c, 0x54, 0x14, 0x5f, 0xa5, 0xe3, 0xac, 0x0a, 0xf3, 0x51, 0x6b, 0x46, 0xaa, 0xcc, 0x49, - 0xb9, 0x59, 0x29, 0x37, 0x2f, 0xe5, 0x66, 0x96, 0x0f, 0x8b, 0x2b, 0xbd, 0x7f, 0xb7, 0x94, 0xe3, - 0xf1, 0xe4, 0xae, 0x51, 0x51, 0x71, 0xc1, 0x9f, 0x9a, 0x0b, 0xfb, 0x14, 0x6c, 0x6d, 0x2c, 0x2e, - 0x03, 0x1e, 0x06, 0xd6, 0x0f, 0xea, 0xba, 0xd6, 0x77, 0xcf, 0xff, 0xe1, 0x59, 0x0b, 0x47, 0xa3, - 0xea, 0xde, 0x4b, 0x95, 0x47, 0x69, 0xf5, 0x1c, 0x95, 0x5d, 0x0c, 0xc5, 0xd1, 0xa7, 0xee, 0xf5, - 0x1f, 0xad, 0xb3, 0xb3, 0xeb, 0xdf, 0x2f, 0x3a, 0x7f, 0x5c, 0x5c, 0xf7, 0xfa, 0x27, 0xd7, 0xc7, - 0x9d, 0xf3, 0xf3, 0xcf, 0x17, 0xed, 0xfe, 0x5f, 0xaa, 0xea, 0x3c, 0x34, 0x1c, 0x73, 0x55, 0x5c, - 0xdf, 0x30, 0x1f, 0x8d, 0x8b, 0xce, 0x75, 0xeb, 0xcf, 0x6e, 0xe7, 0xb2, 0x7f, 0xdd, 0xfb, 0x7c, - 0x74, 0xdc, 0xb9, 0x38, 0x6d, 0x29, 0x3c, 0xa9, 0xaa, 0xb0, 0xd8, 0x4f, 0x5f, 0xf7, 0x9b, 0x27, - 0x5f, 0x5a, 0x97, 0xfd, 0x76, 0xaf, 0xb5, 0x61, 0xfd, 0x9e, 0x4e, 0xfb, 0x66, 0x75, 0xba, 0xdb, - 0x6a, 0x5d, 0x16, 0xad, 0x02, 0xe6, 0xca, 0xec, 0xea, 0x0a, 0xc5, 0x41, 0x2a, 0xe2, 0x8e, 0xc6, - 0xe8, 0xa4, 0xe0, 0xce, 0x5e, 0xb5, 0x77, 0xf1, 0x6a, 0xa8, 0x57, 0x52, 0x2e, 0x47, 0xa8, 0x41, - 0x76, 0x50, 0x93, 0xbc, 0xa0, 0x9e, 0xb2, 0x7e, 0x7d, 0xc7, 0xfa, 0x34, 0x1f, 0xb9, 0xd3, 0x2c, - 0xff, 0x97, 0x85, 0x24, 0xdb, 0x83, 0x9e, 0x43, 0x14, 0xc6, 0x4f, 0xa9, 0x6e, 0x19, 0xbe, 0x4c, - 0xe6, 0xb6, 0xa0, 0x87, 0x0b, 0xae, 0x8a, 0x54, 0xd8, 0xaa, 0x21, 0x40, 0x44, 0x3c, 0x64, 0xde, - 0x50, 0x47, 0x3d, 0xeb, 0x81, 0xda, 0x7a, 0x56, 0x2d, 0x97, 0x21, 0x56, 0xff, 0xfb, 0xcb, 0xde, - 0xee, 0xee, 0xf6, 0xd7, 0x9a, 0xb5, 0x7b, 0xf5, 0xef, 0xde, 0xee, 0xee, 0xd7, 0x9a, 0xd5, 0xb8, - 0xfa, 0x5a, 0xb3, 0x0e, 0x27, 0x7f, 0xda, 0x89, 0x7f, 0xf8, 0xa7, 0xf1, 0xf0, 0xef, 0xde, 0xe4, - 0x2f, 0x76, 0xae, 0x96, 0x7f, 0x5e, 0xf9, 0xe3, 0xf6, 0xc3, 0xbf, 0x5f, 0xeb, 0xd6, 0xee, 0xec, - 0x4f, 0x3b, 0xf1, 0x9f, 0x0e, 0x67, 0x7f, 0x8a, 0x2f, 0x20, 0x8c, 0x7f, 0xfc, 0xf5, 0x63, 0x56, - 0x2f, 0x52, 0x78, 0x87, 0xe0, 0x55, 0x41, 0x0a, 0x86, 0xaf, 0x72, 0x2a, 0x5d, 0xbc, 0xca, 0x94, - 0xf4, 0x52, 0x52, 0x4d, 0xac, 0xb4, 0x8a, 0x58, 0x69, 0xf5, 0xb0, 0x9a, 0xaa, 0x61, 0x81, 0x62, - 0x48, 0x81, 0x6d, 0x17, 0xb1, 0xdd, 0xf0, 0x35, 0xdf, 0x2a, 0xb2, 0x2b, 0xae, 0x08, 0x3b, 0x80, - 0xbd, 0x7f, 0x65, 0x64, 0xc1, 0xde, 0x6b, 0x75, 0x64, 0x0a, 0xd9, 0x7b, 0xe6, 0xf1, 0xbd, 0x1d, - 0x05, 0xf4, 0xbd, 0x04, 0x16, 0x51, 0x94, 0x9d, 0xaa, 0x39, 0x20, 0xa2, 0x8e, 0x00, 0x57, 0x7c, - 0xf8, 0x50, 0x71, 0x76, 0xa9, 0x23, 0xe3, 0x78, 0x50, 0x73, 0x9c, 0xa6, 0xf0, 0x53, 0x50, 0x3f, - 0xd8, 0xd9, 0xd9, 0xdb, 0xdf, 0xd9, 0xa9, 0xed, 0x6f, 0xef, 0xd7, 0x0e, 0x77, 0x77, 0xeb, 0x7b, - 0xaa, 0x24, 0x4d, 0xb5, 0xcc, 0x8a, 0x59, 0xd8, 0x6e, 0x23, 0xcf, 0x62, 0xac, 0x54, 0x3c, 0x2f, - 0x7e, 0xbe, 0x17, 0x51, 0xf9, 0xc2, 0xd1, 0x08, 0x6d, 0x70, 0xdb, 0xe4, 0xa3, 0x11, 0xcf, 0xae, - 0x2f, 0xf9, 0xd3, 0x11, 0xc7, 0x8b, 0xa6, 0x4a, 0x7c, 0x3e, 0x62, 0xf5, 0x34, 0x82, 0x86, 0x13, - 0x12, 0xf4, 0x27, 0xb7, 0x84, 0x4e, 0x49, 0x3c, 0x7d, 0x10, 0x27, 0x25, 0x70, 0x52, 0xe2, 0xe5, - 0xa5, 0x25, 0x70, 0x5a, 0xe2, 0xf1, 0xe3, 0x38, 0x31, 0x81, 0x13, 0x13, 0x52, 0x11, 0x0e, 0x27, - 0x26, 0xd4, 0x72, 0x40, 0x28, 0x80, 0xd6, 0xcc, 0xed, 0xe0, 0xc4, 0xc4, 0xf3, 0x4b, 0x16, 0x27, - 0x26, 0x84, 0xe3, 0xdd, 0xba, 0xc3, 0xc0, 0x89, 0x09, 0x38, 0x8c, 0x8a, 0x96, 0xf8, 0x29, 0x09, - 0x03, 0x95, 0xc2, 0x42, 0xc5, 0xcc, 0x1c, 0xf6, 0x5e, 0xf4, 0x9b, 0x97, 0x72, 0x33, 0x53, 0x6e, - 0x6e, 0x72, 0x14, 0x65, 0xfe, 0x7b, 0x2f, 0x37, 0xc3, 0xc0, 0x7a, 0x64, 0x4c, 0x56, 0x48, 0xed, - 0x3b, 0xd9, 0x22, 0xcc, 0xd2, 0x9e, 0xa7, 0x78, 0x3c, 0x54, 0x28, 0x55, 0x15, 0x01, 0x38, 0xa8, - 0x44, 0xca, 0xa6, 0x12, 0x69, 0x51, 0x2f, 0x38, 0x7d, 0xdb, 0xfc, 0x8f, 0x5f, 0x6b, 0xd6, 0xc1, - 0xec, 0x95, 0xb3, 0x5f, 0x7d, 0xad, 0x59, 0xf5, 0xe5, 0xbb, 0xa6, 0xbf, 0xfc, 0x5a, 0xb3, 0xf6, - 0x96, 0x2f, 0x8c, 0x7f, 0x17, 0x37, 0xb3, 0x78, 0xeb, 0xe4, 0x57, 0xcb, 0xa6, 0xfe, 0xd9, 0x8d, - 0x7f, 0xf3, 0xb5, 0x66, 0x6d, 0xcf, 0x7e, 0xb1, 0xf7, 0xf0, 0xef, 0xce, 0x4a, 0xc3, 0xfb, 0xf1, - 0x77, 0xce, 0xff, 0xf2, 0xf0, 0xc9, 0x57, 0x1f, 0x14, 0xb7, 0xac, 0x09, 0x25, 0x7d, 0x45, 0x35, - 0xa4, 0x5f, 0xa6, 0x8b, 0x78, 0xb9, 0x90, 0xfe, 0xad, 0xc7, 0xff, 0x33, 0xfd, 0xb9, 0xb1, 0x34, - 0x99, 0x7f, 0x1b, 0xbb, 0xf1, 0xda, 0xfd, 0xf5, 0xdb, 0xb7, 0x0f, 0xbf, 0xfe, 0xb3, 0xfd, 0x90, - 0xfe, 0xc1, 0x0d, 0x2e, 0xeb, 0xc3, 0xfa, 0x2f, 0xea, 0xfa, 0x37, 0xd1, 0xbf, 0xc3, 0x90, 0x60, - 0x48, 0x45, 0x33, 0xa4, 0xd0, 0x1f, 0x73, 0xfa, 0xed, 0x9b, 0xc5, 0x49, 0x38, 0xa4, 0xfc, 0x23, - 0x00, 0x1a, 0x00, 0x1a, 0xec, 0x4a, 0x83, 0x5d, 0x01, 0xaf, 0xc1, 0x1c, 0x60, 0x0e, 0x0b, 0x73, - 0x00, 0x7c, 0x83, 0x5d, 0xc1, 0xae, 0xd4, 0xd9, 0x95, 0x1f, 0xb2, 0x21, 0xf3, 0x00, 0xdf, 0x00, - 0xdf, 0x60, 0x57, 0x3a, 0xec, 0x0a, 0xf0, 0x0d, 0xe6, 0x00, 0x73, 0x58, 0x98, 0x03, 0xe0, 0x1b, - 0xec, 0x0a, 0x76, 0x25, 0x6f, 0x57, 0xb6, 0xef, 0xfa, 0xe1, 0xc7, 0x78, 0x2d, 0xff, 0xd3, 0x78, - 0x00, 0xaa, 0x2a, 0x87, 0x18, 0x43, 0x71, 0xf4, 0xc5, 0x98, 0x47, 0xc2, 0x7b, 0x85, 0x45, 0x1a, - 0x2a, 0x6a, 0x34, 0xce, 0xa8, 0x37, 0x8c, 0xeb, 0x57, 0x0b, 0x57, 0xa5, 0xa1, 0x43, 0xfa, 0x4a, - 0x93, 0x3e, 0xd2, 0xe2, 0x24, 0xec, 0x81, 0xe2, 0x76, 0x35, 0xca, 0x20, 0x29, 0x94, 0xb6, 0xd2, - 0x22, 0x69, 0x85, 0xa9, 0x52, 0xe8, 0x42, 0x2b, 0x50, 0xc5, 0x49, 0xee, 0x11, 0xa1, 0x8a, 0xa3, - 0x63, 0x32, 0xa1, 0x8a, 0x83, 0xca, 0xec, 0x27, 0x23, 0x8b, 0xca, 0x6c, 0xad, 0x8e, 0x0c, 0xaa, - 0x38, 0x7a, 0xf0, 0x3c, 0x54, 0x71, 0xf2, 0x06, 0x9e, 0x50, 0xc5, 0x81, 0x2a, 0x8e, 0xd6, 0x27, - 0x8a, 0xa9, 0x8a, 0xf3, 0x44, 0xe1, 0xe2, 0xd1, 0x9f, 0xa1, 0x8e, 0xa3, 0x1c, 0x86, 0x6f, 0xac, - 0x3a, 0xce, 0xab, 0xeb, 0x4c, 0x5e, 0x25, 0xa7, 0xf5, 0x93, 0x6f, 0x84, 0x50, 0xce, 0x53, 0x41, - 0x1a, 0x51, 0xb1, 0x9c, 0x77, 0x29, 0xba, 0x94, 0xb4, 0x2b, 0xc9, 0xba, 0xf0, 0xca, 0x5c, 0x3f, - 0x3f, 0xb7, 0xcf, 0xf7, 0x71, 0xbd, 0x07, 0x8f, 0x7f, 0xf3, 0xa4, 0x2f, 0x6f, 0xf5, 0xe1, 0xed, - 0x6f, 0x7f, 0xe6, 0xbb, 0xd7, 0xbf, 0xf7, 0xf1, 0xb7, 0x2e, 0xbf, 0x68, 0xe5, 0x6b, 0xaa, 0xb6, - 0x3f, 0x0a, 0x7c, 0x6f, 0xe6, 0x00, 0x1e, 0x7f, 0xc9, 0xea, 0xad, 0x69, 0xf3, 0x7f, 0xf3, 0xa4, - 0x1f, 0xcf, 0x9f, 0x85, 0x7f, 0x31, 0x25, 0x7c, 0x2d, 0xd5, 0x5b, 0x4d, 0xe1, 0x02, 0x97, 0xf0, - 0x81, 0x1f, 0x8e, 0x9e, 0xeb, 0xe5, 0x1b, 0xb9, 0x59, 0xe2, 0x9c, 0x2b, 0x71, 0x2e, 0xf5, 0x34, - 0x47, 0x5a, 0x7c, 0x5c, 0xca, 0x39, 0x7f, 0xe9, 0x34, 0xf7, 0x72, 0x78, 0x5f, 0xee, 0xd4, 0xda, - 0x4c, 0xbc, 0xd4, 0xa9, 0xd7, 0xc5, 0x09, 0xde, 0xcc, 0xd5, 0x93, 0xe4, 0xe2, 0x09, 0x27, 0x2a, - 0x6d, 0x32, 0x9d, 0x3a, 0x59, 0x4e, 0x9d, 0x0c, 0x27, 0x9f, 0x48, 0x31, 0xc7, 0xf4, 0xd6, 0x71, - 0xfd, 0xea, 0x0d, 0xb1, 0xbf, 0x07, 0x2e, 0xf1, 0x68, 0x72, 0xc9, 0xaf, 0xe5, 0x23, 0x66, 0x88, - 0x7d, 0x25, 0x58, 0x10, 0xa2, 0x2c, 0x4b, 0xfe, 0x6a, 0x5f, 0x6f, 0x2f, 0x18, 0x35, 0xc1, 0x3a, - 0xc5, 0xc5, 0xe8, 0xb3, 0xd9, 0x4c, 0x7d, 0x2b, 0x7a, 0xfc, 0x5c, 0x39, 0x04, 0xbe, 0x52, 0x2c, - 0x39, 0x59, 0x82, 0xaf, 0x78, 0x0a, 0x5f, 0xc9, 0x97, 0xa4, 0x9e, 0x3c, 0x47, 0x3d, 0x4c, 0x9f, - 0xf7, 0x68, 0x6b, 0x89, 0x3a, 0x96, 0x3f, 0x6e, 0x2d, 0xfc, 0xe1, 0xd6, 0x6c, 0x0d, 0xab, 0x42, - 0xd7, 0x09, 0xfc, 0x55, 0x3a, 0xb1, 0x21, 0x21, 0x91, 0x21, 0x61, 0x5b, 0x6b, 0xc0, 0xd6, 0x60, - 0x6b, 0xda, 0x6c, 0x2d, 0x05, 0xf1, 0x62, 0x4e, 0x22, 0x9b, 0xb0, 0xf3, 0xd5, 0x44, 0x9e, 0x61, - 0x35, 0xf3, 0x3a, 0x9e, 0x37, 0x72, 0x7d, 0xb4, 0x68, 0x44, 0x83, 0x8c, 0xac, 0x7d, 0x4b, 0xa2, - 0x88, 0xa5, 0x90, 0x8f, 0x9d, 0x3f, 0x00, 0x24, 0x09, 0x24, 0x09, 0x24, 0x89, 0xe8, 0xb6, 0xd9, - 0xd1, 0x6d, 0xe6, 0x0d, 0x81, 0x23, 0x81, 0x23, 0x61, 0x69, 0x99, 0x58, 0xda, 0x06, 0xa2, 0xc8, - 0x64, 0x90, 0xeb, 0x55, 0x0c, 0x79, 0x3c, 0x6b, 0x42, 0x07, 0x82, 0x4c, 0x16, 0xf4, 0xd3, 0x05, - 0x7b, 0xe0, 0xc7, 0x4d, 0xc4, 0x8f, 0xb3, 0x75, 0x9b, 0x32, 0xa4, 0xc5, 0x4f, 0xa5, 0x8b, 0x68, - 0x35, 0x60, 0x47, 0x44, 0xb4, 0xa7, 0x9f, 0x93, 0xba, 0x0e, 0x50, 0xfc, 0x40, 0xd8, 0xf2, 0xc0, - 0xd7, 0x66, 0x05, 0xb2, 0x04, 0x28, 0x59, 0x30, 0x08, 0x05, 0xe3, 0x14, 0x11, 0x28, 0x18, 0x23, - 0xfc, 0x20, 0xfc, 0x80, 0xbe, 0x40, 0x08, 0xda, 0xf4, 0xa4, 0x2a, 0x18, 0x83, 0xba, 0x00, 0x75, - 0x01, 0x2b, 0xd3, 0x6e, 0x65, 0x9b, 0x48, 0x5b, 0xbc, 0x09, 0xb3, 0x5e, 0xa7, 0x2c, 0x82, 0xb1, - 0x0e, 0xa4, 0x38, 0x20, 0x37, 0x21, 0xb3, 0x93, 0x83, 0xc5, 0xd9, 0xbf, 0x07, 0x5e, 0x04, 0x5e, - 0x04, 0x5e, 0x44, 0x24, 0xdb, 0xec, 0x48, 0x36, 0x75, 0x86, 0x80, 0x8c, 0x80, 0x8c, 0x30, 0xb4, - 0x2c, 0x0c, 0x6d, 0x03, 0x51, 0x63, 0x22, 0xbc, 0xf5, 0x2a, 0x70, 0x3c, 0x9d, 0xb6, 0xa0, 0x05, - 0x3b, 0x7a, 0x69, 0x80, 0xa3, 0x07, 0xd4, 0x08, 0xd4, 0x08, 0xd4, 0x88, 0x60, 0xb6, 0xf1, 0xc1, - 0xcc, 0x03, 0x64, 0x04, 0x64, 0x84, 0x95, 0x69, 0xb7, 0xb2, 0x8d, 0xc4, 0x8b, 0x9e, 0x1c, 0x58, - 0xf4, 0x74, 0x20, 0x45, 0xe6, 0x71, 0x3a, 0x0c, 0x09, 0xa7, 0x8e, 0x65, 0xb3, 0xd0, 0x1e, 0x33, - 0x9e, 0x1c, 0x38, 0x3e, 0xf3, 0x2c, 0x70, 0x24, 0x70, 0x24, 0x70, 0x24, 0x22, 0xdc, 0x66, 0x47, - 0xb8, 0x75, 0xc7, 0x08, 0x58, 0x09, 0x58, 0x09, 0xa3, 0xcb, 0xda, 0xe8, 0x36, 0x10, 0x65, 0xa6, - 0xc6, 0x64, 0xaf, 0x82, 0xce, 0xf6, 0xa2, 0xb5, 0xe3, 0x59, 0x63, 0x1a, 0x20, 0x68, 0xa2, 0x62, - 0xea, 0x34, 0x45, 0xd4, 0x09, 0x8b, 0xa7, 0x01, 0x33, 0x4d, 0x80, 0x99, 0x89, 0x8b, 0x9d, 0x17, - 0x23, 0xef, 0x52, 0x32, 0x08, 0xe9, 0x20, 0xc9, 0xa8, 0xcf, 0xe3, 0xd7, 0x7e, 0x82, 0x7f, 0xdb, - 0x9d, 0xd9, 0xe2, 0x87, 0x0f, 0xb3, 0x60, 0xbe, 0x15, 0x2f, 0x45, 0x0d, 0x06, 0xe1, 0x07, 0x9c, - 0xd9, 0xc4, 0xb5, 0xec, 0x5b, 0xe2, 0x79, 0xd4, 0x4d, 0x6e, 0x1b, 0x4f, 0x1f, 0x34, 0x23, 0x1b, - 0xf3, 0x03, 0x6e, 0x71, 0x5a, 0x52, 0x33, 0x59, 0x74, 0x0e, 0xd9, 0x58, 0x81, 0xb2, 0xb1, 0x14, - 0x4b, 0xae, 0x7c, 0xc0, 0x30, 0xf9, 0x92, 0xd4, 0x03, 0x0c, 0x93, 0x2e, 0xd5, 0xc5, 0x03, 0x83, - 0x90, 0xfe, 0x3d, 0xa6, 0x9e, 0x7d, 0x9f, 0x7e, 0xf0, 0x17, 0x7b, 0x9c, 0x8b, 0x26, 0x52, 0x8e, - 0x9d, 0x98, 0x96, 0xb0, 0xb0, 0x4a, 0xbc, 0x8c, 0x3a, 0xbc, 0xe4, 0x02, 0x97, 0x5d, 0xe8, 0xca, - 0x16, 0xbc, 0xb2, 0x85, 0xaf, 0xce, 0x00, 0xd2, 0x19, 0x42, 0x4a, 0x83, 0x48, 0x0f, 0x75, 0xde, - 0x5e, 0xe6, 0x16, 0x9f, 0xb4, 0x25, 0x30, 0xf9, 0xe2, 0xba, 0xee, 0xd5, 0xcf, 0xde, 0x54, 0xbb, - 0xba, 0x7a, 0xfe, 0xdb, 0xff, 0x88, 0xbc, 0x5a, 0x4e, 0x0f, 0x5e, 0xee, 0x6a, 0x0f, 0x05, 0x97, - 0x1f, 0x28, 0x11, 0x1d, 0x57, 0xa5, 0xf7, 0xae, 0x52, 0x51, 0xfc, 0x41, 0xee, 0xa2, 0x93, 0xc2, - 0x0d, 0xad, 0x7a, 0x1d, 0x77, 0xa5, 0xa3, 0x9d, 0x91, 0x7e, 0xfa, 0x95, 0x2e, 0x61, 0xf1, 0x14, - 0x90, 0xca, 0x65, 0x1e, 0xb5, 0x02, 0x3f, 0xe4, 0xe2, 0x81, 0x7d, 0xd9, 0x04, 0x02, 0x3b, 0x02, - 0x7b, 0x69, 0x03, 0x7b, 0x72, 0x4e, 0x43, 0x86, 0xe3, 0x78, 0x91, 0xf3, 0xd8, 0x5a, 0x21, 0x7c, - 0x3e, 0xae, 0xf0, 0x8e, 0xcf, 0xfe, 0xfa, 0xd1, 0x6f, 0xdf, 0xe6, 0x48, 0xb2, 0x71, 0x35, 0x7e, - 0x40, 0xc3, 0x98, 0x7e, 0x25, 0xae, 0x35, 0xf2, 0x1d, 0x2a, 0xee, 0x71, 0xd6, 0x5a, 0x82, 0xe3, - 0x81, 0xe3, 0x29, 0xad, 0xe3, 0x19, 0x33, 0x8f, 0xd7, 0xf7, 0x24, 0xfc, 0xce, 0x1e, 0x32, 0x01, - 0x64, 0x02, 0x05, 0xcd, 0x04, 0xf6, 0x76, 0x77, 0xb7, 0x01, 0xfd, 0x73, 0x89, 0xc7, 0x9c, 0x84, - 0x43, 0xca, 0x2d, 0x7f, 0xcc, 0x83, 0x31, 0xb7, 0x02, 0xff, 0x07, 0x0d, 0xc5, 0x43, 0xf2, 0x73, - 0x8d, 0x21, 0x2a, 0x23, 0x2a, 0x97, 0x36, 0x2a, 0x3b, 0xd4, 0x66, 0x23, 0xe2, 0x0a, 0x5d, 0xe1, - 0xb8, 0x48, 0x08, 0x1a, 0x02, 0xcf, 0xae, 0x79, 0xbb, 0xc6, 0xa6, 0x86, 0xf7, 0x06, 0xc2, 0xbb, - 0xae, 0xf0, 0xbe, 0x5d, 0xc2, 0xa1, 0x35, 0x3d, 0xb4, 0x1b, 0x5d, 0x1a, 0xf6, 0xa4, 0x2e, 0x02, - 0xc5, 0x98, 0x79, 0x14, 0x63, 0x62, 0xcf, 0xdd, 0xa4, 0x3d, 0x77, 0xfb, 0x36, 0xf4, 0x47, 0x84, - 0x33, 0xdb, 0x72, 0x58, 0x14, 0xd0, 0x30, 0x12, 0xb9, 0x0a, 0x75, 0xe5, 0x2e, 0x86, 0x67, 0x5a, - 0x13, 0x43, 0xe8, 0x75, 0x20, 0x74, 0x20, 0x74, 0xdd, 0x08, 0x3d, 0xad, 0xb9, 0x2c, 0x1e, 0x24, - 0x77, 0x43, 0xf1, 0xe9, 0x9a, 0xaf, 0x9a, 0x49, 0x23, 0x82, 0xe3, 0x2b, 0x47, 0x90, 0x08, 0x1b, - 0x8b, 0x0a, 0xa3, 0x79, 0xd1, 0x78, 0xee, 0x03, 0x1a, 0xc9, 0x5c, 0x55, 0x2f, 0x69, 0x45, 0xca, - 0xad, 0x49, 0xb9, 0x55, 0xbd, 0x6a, 0x5d, 0xf1, 0xe8, 0x65, 0x8d, 0x5b, 0x05, 0x57, 0x8f, 0x70, - 0x62, 0xac, 0x34, 0x41, 0x56, 0x91, 0x28, 0x2b, 0x4d, 0x98, 0x15, 0x25, 0xce, 0xf2, 0x09, 0xb4, - 0xd2, 0x44, 0x5a, 0x71, 0x42, 0xad, 0x3a, 0xfb, 0xd3, 0x91, 0x05, 0x2a, 0x48, 0xb4, 0x95, 0x26, - 0xdc, 0x8a, 0x13, 0x6f, 0xa3, 0xa6, 0xe0, 0x5d, 0x3e, 0x4f, 0x5f, 0x65, 0x44, 0x04, 0x08, 0x2c, - 0xb1, 0x2a, 0xf3, 0x22, 0x4e, 0x3c, 0x2e, 0x0f, 0x60, 0xe6, 0x0d, 0x01, 0xc4, 0x00, 0xc4, 0x00, - 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x64, 0x03, 0x62, 0x38, 0x0d, - 0xef, 0x88, 0xab, 0x02, 0xc5, 0xcc, 0x5a, 0x02, 0x8c, 0x99, 0x04, 0x62, 0x40, 0x18, 0x51, 0x08, - 0xb3, 0xa1, 0xf0, 0x25, 0xe2, 0x84, 0x5b, 0x92, 0x46, 0x54, 0x91, 0x3b, 0x93, 0xb4, 0x68, 0x62, - 0x71, 0x36, 0xc9, 0x23, 0x9e, 0x1f, 0x51, 0xdb, 0xf7, 0x1c, 0xa9, 0xb5, 0x5c, 0x6a, 0x10, 0x53, - 0x03, 0x88, 0xc9, 0x1b, 0xc4, 0xa8, 0x9e, 0x02, 0xf5, 0x67, 0x9e, 0x80, 0x6b, 0xb2, 0xc5, 0x35, - 0x23, 0x89, 0x55, 0xb6, 0x70, 0xc9, 0x93, 0x46, 0x80, 0x66, 0x40, 0xca, 0x80, 0x94, 0x01, 0x29, - 0x03, 0x52, 0x06, 0x78, 0x06, 0xa4, 0x0c, 0xc0, 0x4b, 0x46, 0xe0, 0xc5, 0xe2, 0x6c, 0x44, 0x95, - 0x20, 0x98, 0x69, 0x4b, 0x80, 0x31, 0x20, 0x65, 0x40, 0xca, 0xa4, 0x5e, 0x33, 0x13, 0xdb, 0xe1, - 0xcc, 0xfe, 0x1e, 0x29, 0x01, 0x30, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0xb3, 0xa1, - 0xa8, 0x46, 0xc2, 0xd0, 0x97, 0x80, 0x86, 0x79, 0xc0, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, - 0x01, 0x25, 0x03, 0x3c, 0x03, 0x4a, 0x06, 0xe0, 0x25, 0x2b, 0xf0, 0xa2, 0x8a, 0x92, 0x99, 0xb7, - 0x04, 0x18, 0x03, 0x4a, 0x06, 0x94, 0x0c, 0x28, 0x19, 0x50, 0x32, 0x80, 0x30, 0xa0, 0x64, 0x80, - 0x6a, 0x64, 0x51, 0x8d, 0xd6, 0x23, 0xde, 0x82, 0x1a, 0x24, 0x8b, 0xe7, 0x55, 0x69, 0x91, 0xc4, - 0x12, 0x1f, 0x5b, 0x0a, 0x04, 0x12, 0x2a, 0xaf, 0x5d, 0xe4, 0xd4, 0x99, 0xbe, 0xf5, 0x78, 0xfa, - 0xd2, 0xeb, 0xe3, 0xf9, 0xeb, 0x4e, 0x96, 0x6f, 0x2b, 0x80, 0x28, 0x1c, 0x2e, 0x7a, 0x10, 0x23, - 0xcd, 0x20, 0x2f, 0xf1, 0x0a, 0x27, 0x86, 0x8b, 0x1e, 0x14, 0xc3, 0x45, 0x5c, 0xf4, 0x00, 0x79, - 0x57, 0x2d, 0xf0, 0x0e, 0x17, 0x3d, 0xe8, 0x78, 0xaa, 0x08, 0x6a, 0xaf, 0xc3, 0xd0, 0x1f, 0x07, - 0x16, 0x73, 0xc4, 0xe3, 0xfa, 0xa2, 0x05, 0x84, 0x75, 0x84, 0xf5, 0x52, 0xab, 0xad, 0x6f, 0x37, - 0x24, 0xc2, 0xf9, 0x3e, 0xc2, 0x31, 0xc2, 0x71, 0x41, 0xc3, 0xf1, 0x4e, 0xe3, 0x70, 0xe7, 0x70, - 0x6f, 0xbf, 0x71, 0x88, 0x20, 0x9c, 0x4b, 0x10, 0x66, 0x9e, 0x02, 0xa9, 0xf5, 0xd5, 0x46, 0x36, - 0x43, 0xc0, 0x91, 0x87, 0xc4, 0x8b, 0x6c, 0xca, 0xee, 0x52, 0xf7, 0x78, 0x33, 0xa2, 0xf1, 0xea, - 0xf8, 0x40, 0xc6, 0x11, 0x32, 0x8e, 0xcf, 0x99, 0x10, 0xb6, 0x44, 0x45, 0x8d, 0x0b, 0x15, 0x5d, - 0xb2, 0xf0, 0x05, 0x15, 0x5d, 0x5a, 0x80, 0xf7, 0xd3, 0x61, 0x46, 0x45, 0x57, 0xe6, 0x00, 0xfd, - 0xe9, 0x14, 0xa0, 0xa2, 0x4b, 0xfb, 0xd3, 0x90, 0x6f, 0x04, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, - 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x51, 0x06, 0x5e, 0x20, 0xdb, 0x08, 0xf8, - 0x02, 0xf8, 0x02, 0xd9, 0xc6, 0xd5, 0x26, 0x50, 0x90, 0xae, 0xdf, 0x63, 0x01, 0xc4, 0x14, 0x77, - 0x0a, 0x50, 0x90, 0x6e, 0x3a, 0xae, 0x81, 0x6c, 0x23, 0xd0, 0x0c, 0xd0, 0x0c, 0xc8, 0x18, 0x90, - 0x31, 0x20, 0x63, 0x40, 0xc6, 0x00, 0xb4, 0x98, 0x02, 0x5a, 0x20, 0xd7, 0x08, 0xf8, 0x02, 0xf8, - 0x02, 0x6d, 0x00, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x29, 0x03, 0xaa, 0x81, 0x5c, - 0x23, 0xb0, 0x0c, 0xb0, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x00, 0xb4, 0x18, - 0x02, 0x5a, 0x20, 0xd3, 0x08, 0xf8, 0x02, 0xf8, 0x02, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x50, - 0x31, 0xa0, 0x62, 0x8a, 0x86, 0x6a, 0x36, 0x48, 0xa6, 0x51, 0x5c, 0xfd, 0xa0, 0x92, 0x42, 0x9d, - 0xb1, 0x3d, 0x79, 0x4b, 0x37, 0x7e, 0x49, 0x01, 0x64, 0x23, 0x5c, 0x12, 0xd1, 0xd0, 0xba, 0x61, - 0x24, 0xb2, 0xec, 0x71, 0x18, 0x52, 0x81, 0x13, 0x66, 0x8b, 0x18, 0xfa, 0x4c, 0x5b, 0x10, 0x91, - 0xd0, 0x8f, 0x35, 0x21, 0x22, 0x21, 0xe1, 0x81, 0x20, 0x22, 0x81, 0x84, 0x0d, 0x09, 0x9b, 0x81, - 0x09, 0x1b, 0xf8, 0x66, 0xe3, 0x92, 0x35, 0xf0, 0xcd, 0xb9, 0x27, 0x6b, 0xe0, 0x9b, 0xcb, 0x93, - 0x99, 0x41, 0x44, 0x02, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, - 0xe0, 0xa5, 0xfc, 0xe0, 0x05, 0x22, 0x12, 0x80, 0x2f, 0x80, 0x2f, 0x10, 0x91, 0x58, 0x6d, 0x02, - 0xdb, 0xe5, 0xfa, 0x3d, 0x16, 0x40, 0x4c, 0x71, 0xa7, 0x00, 0xdb, 0xe5, 0xa6, 0xe3, 0x1a, 0x88, - 0x48, 0x00, 0xcd, 0x00, 0xcd, 0x80, 0x8c, 0x01, 0x19, 0x03, 0x32, 0x06, 0x64, 0x0c, 0x40, 0x8b, - 0x29, 0xa0, 0x05, 0x22, 0x12, 0x80, 0x2f, 0x80, 0x2f, 0x38, 0xb9, 0x00, 0x2a, 0x06, 0x54, 0x0c, - 0xa8, 0x18, 0x50, 0x31, 0x65, 0x40, 0x35, 0x10, 0x91, 0x00, 0x96, 0x01, 0x96, 0x01, 0x15, 0x03, - 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x80, 0x16, 0x43, 0x40, 0x0b, 0x44, 0x24, 0x00, 0x5f, 0x00, - 0x5f, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x03, 0x2a, 0x06, 0x54, 0x4c, 0xd1, 0x50, 0xcd, 0x06, - 0x89, 0x48, 0x48, 0x8b, 0x20, 0x54, 0x52, 0x68, 0x49, 0x9c, 0x4d, 0x5e, 0x76, 0xc4, 0x48, 0x74, - 0x3c, 0x7b, 0x55, 0x11, 0x14, 0x25, 0x98, 0x47, 0xad, 0xc0, 0x0f, 0x65, 0x84, 0x24, 0x16, 0x4d, - 0x88, 0xe9, 0x47, 0xd4, 0x0c, 0xd3, 0x8f, 0xf0, 0x03, 0x6e, 0x71, 0x1a, 0x8e, 0x20, 0x1e, 0xf1, - 0x0c, 0x96, 0x5c, 0x0c, 0x4e, 0xc1, 0xdc, 0x8e, 0x30, 0x6c, 0x5c, 0x2e, 0x73, 0x4a, 0x06, 0x21, - 0x1d, 0x88, 0xcc, 0xfa, 0x9c, 0xe3, 0xda, 0x17, 0x78, 0xb6, 0xbb, 0xf0, 0x74, 0xf6, 0xc2, 0xc3, - 0x7d, 0x5c, 0xf1, 0x70, 0xcf, 0xfe, 0xfa, 0xd1, 0x6f, 0x63, 0xbf, 0x54, 0x00, 0x57, 0xe3, 0x07, - 0x34, 0x8c, 0x1d, 0x3f, 0x71, 0xad, 0x91, 0xef, 0x50, 0x71, 0x8f, 0xb3, 0xd6, 0x12, 0x1c, 0x0f, - 0x1c, 0x4f, 0x69, 0x1d, 0xcf, 0x98, 0x79, 0xbc, 0xbe, 0x27, 0xe1, 0x77, 0xf6, 0x04, 0x1e, 0x95, - 0x4b, 0x21, 0x25, 0xb2, 0x73, 0x15, 0x29, 0xa3, 0xa2, 0x3c, 0x45, 0x55, 0x8a, 0xa8, 0x32, 0x09, - 0x91, 0x48, 0x09, 0x95, 0xa4, 0x82, 0xaa, 0x87, 0x76, 0x6f, 0x77, 0x77, 0x7b, 0xb7, 0x40, 0xc3, - 0x9b, 0x51, 0x8e, 0x75, 0x55, 0x84, 0x78, 0x3c, 0xe6, 0x4b, 0x05, 0x3d, 0xf1, 0x58, 0xbc, 0xda, - 0x0a, 0x04, 0xe4, 0x10, 0x8a, 0x21, 0x20, 0xf7, 0xe2, 0xda, 0x81, 0x80, 0x1c, 0x36, 0x6b, 0xa4, - 0x8d, 0x0b, 0xb5, 0x26, 0xb2, 0xd8, 0x05, 0xb5, 0x26, 0x5a, 0x50, 0xf7, 0xd3, 0x61, 0x46, 0xad, - 0x49, 0xe6, 0xe8, 0xfc, 0xe9, 0x14, 0xa0, 0xd6, 0x44, 0xfb, 0xd3, 0x10, 0x90, 0x03, 0x78, 0x01, - 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x51, 0x06, 0x5e, - 0x20, 0x20, 0x07, 0xf8, 0x02, 0xf8, 0x02, 0x01, 0xb9, 0xd5, 0x26, 0x50, 0x2a, 0xab, 0xdf, 0x63, - 0x01, 0xc4, 0x14, 0x77, 0x0a, 0x50, 0x2a, 0x6b, 0x3a, 0xae, 0x81, 0x80, 0x1c, 0xd0, 0x0c, 0xd0, - 0x0c, 0xc8, 0x18, 0x90, 0x31, 0x20, 0x63, 0x40, 0xc6, 0x00, 0xb4, 0x98, 0x02, 0x5a, 0x20, 0x20, - 0x07, 0xf8, 0x02, 0xf8, 0x82, 0x53, 0xcb, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x53, - 0x06, 0x54, 0x03, 0x01, 0x39, 0x60, 0x19, 0x60, 0x19, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, - 0x8a, 0x01, 0x68, 0x31, 0x04, 0xb4, 0x40, 0x40, 0x0e, 0xf0, 0x05, 0xf0, 0x05, 0x54, 0x0c, 0xa8, - 0x18, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x14, 0x0d, 0xd5, 0x6c, 0x90, 0x80, 0x9c, 0x84, 0xfc, - 0x41, 0x25, 0x85, 0x74, 0x5c, 0x27, 0x7e, 0x4d, 0x37, 0x7e, 0x4b, 0x01, 0xa4, 0x23, 0x02, 0xdf, - 0x25, 0x21, 0xfb, 0x9f, 0x78, 0x16, 0x2c, 0x87, 0x06, 0xd4, 0x73, 0xa8, 0xc7, 0x2d, 0xd7, 0x8f, - 0x22, 0x71, 0x25, 0x89, 0xd7, 0x1a, 0xdd, 0x0c, 0x61, 0x09, 0x08, 0x3c, 0xbd, 0x02, 0x32, 0x8b, - 0x2a, 0xf0, 0x04, 0x49, 0x09, 0xa4, 0x6f, 0x48, 0xdf, 0x0c, 0x4c, 0xdf, 0xc0, 0x3e, 0x1b, 0x97, - 0xba, 0x81, 0x7d, 0xce, 0x3d, 0x75, 0x03, 0xfb, 0x5c, 0x9e, 0x3c, 0x0d, 0x92, 0x12, 0x00, 0x2f, - 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0xe5, 0x07, 0x2f, 0x90, - 0x94, 0x00, 0x7c, 0x01, 0x7c, 0x81, 0xa4, 0xc4, 0x6a, 0x13, 0xd8, 0x3c, 0xd7, 0xef, 0xb1, 0x00, - 0x62, 0x8a, 0x3b, 0x05, 0xd8, 0x3c, 0x37, 0x1d, 0xd7, 0x40, 0x52, 0x02, 0x68, 0x06, 0x68, 0x06, - 0x64, 0x0c, 0xc8, 0x18, 0x90, 0x31, 0x20, 0x63, 0x00, 0x5a, 0x4c, 0x01, 0x2d, 0x90, 0x94, 0x00, - 0x7c, 0x01, 0x7c, 0xc1, 0x39, 0x06, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x29, 0x03, - 0xaa, 0x81, 0xa4, 0x04, 0xb0, 0x0c, 0xb0, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, - 0x00, 0xb4, 0x18, 0x02, 0x5a, 0x20, 0x29, 0x01, 0xf8, 0x02, 0xf8, 0x02, 0x2a, 0x06, 0x54, 0x0c, - 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, 0x8a, 0x86, 0x6a, 0x36, 0x48, 0x52, 0x42, 0x9d, 0x0e, 0x42, - 0x25, 0x85, 0xc2, 0x44, 0x77, 0xe5, 0xad, 0x27, 0xf3, 0x97, 0x9e, 0x4d, 0xde, 0x59, 0x34, 0xbd, - 0x89, 0x91, 0xef, 0x50, 0xcb, 0x61, 0x51, 0x40, 0xc3, 0x48, 0x64, 0xca, 0x9e, 0x17, 0x9c, 0x78, - 0xda, 0x2a, 0x14, 0x27, 0x34, 0x63, 0x53, 0x28, 0x4e, 0x88, 0xba, 0x2b, 0x28, 0x4e, 0x14, 0x23, - 0xbb, 0x8b, 0xd7, 0x07, 0x32, 0x3c, 0x19, 0xeb, 0x02, 0x49, 0x2d, 0x8b, 0x7b, 0x41, 0x52, 0x67, - 0x92, 0xe1, 0x81, 0xa4, 0xce, 0x3d, 0xc3, 0x03, 0x49, 0x5d, 0x9e, 0x74, 0x0e, 0xca, 0x13, 0x00, - 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x9b, 0x03, 0x62, - 0xa0, 0x40, 0xa1, 0x05, 0xc6, 0x00, 0xc2, 0x88, 0x42, 0x18, 0x28, 0x50, 0x40, 0x81, 0xc2, 0x24, - 0x10, 0x83, 0xbd, 0xf6, 0xdc, 0x41, 0x0c, 0xf6, 0xda, 0x81, 0x6b, 0x1e, 0x0f, 0x33, 0x14, 0x28, - 0x40, 0xca, 0x80, 0x94, 0x01, 0x29, 0x03, 0x52, 0x06, 0xa4, 0x0c, 0x48, 0x19, 0x90, 0x32, 0xa6, - 0x81, 0x17, 0x28, 0x51, 0x80, 0x94, 0x01, 0x29, 0x83, 0xe3, 0x0f, 0xa0, 0x64, 0x40, 0xc9, 0x80, - 0x92, 0x01, 0x25, 0x53, 0x06, 0x54, 0x03, 0x25, 0x0a, 0x50, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, - 0x92, 0x01, 0x25, 0x03, 0x4a, 0x06, 0xe0, 0xc5, 0x30, 0xf0, 0x02, 0x45, 0x0a, 0x50, 0x32, 0xa0, - 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, 0x4a, 0x06, 0x94, 0x4c, 0xd1, 0x50, 0xcd, 0xa6, - 0x2a, 0x52, 0xc8, 0x09, 0x25, 0x54, 0x04, 0x25, 0x29, 0xce, 0x7d, 0x87, 0x9e, 0x2c, 0x5f, 0x5a, - 0x00, 0x4d, 0x8a, 0x69, 0x04, 0xb2, 0xfc, 0xd0, 0xa1, 0xa1, 0xa5, 0x47, 0xa0, 0x22, 0xf9, 0x2b, - 0xa0, 0x56, 0xa1, 0x19, 0xb7, 0x42, 0xad, 0x42, 0xd4, 0x95, 0x41, 0xad, 0x02, 0x04, 0xb6, 0xf9, - 0xd9, 0x1f, 0x08, 0x6c, 0x10, 0xd8, 0xe6, 0x64, 0x7f, 0x20, 0xb0, 0x73, 0xcf, 0xfe, 0x40, 0x60, - 0x97, 0x27, 0xd5, 0x83, 0x5a, 0x05, 0x40, 0x0c, 0x40, 0x0c, 0x40, 0x0c, 0x40, 0x0c, 0x40, 0x0c, - 0x40, 0x0c, 0x40, 0xcc, 0xe6, 0x80, 0x18, 0xa8, 0x55, 0x68, 0x81, 0x31, 0x80, 0x30, 0xa2, 0x10, - 0x06, 0x6a, 0x15, 0x50, 0xab, 0x30, 0x09, 0xc4, 0x60, 0x1f, 0x3e, 0x77, 0x10, 0x83, 0x7d, 0x78, - 0xe0, 0x9a, 0xc7, 0xc3, 0x0c, 0xb5, 0x0a, 0x90, 0x32, 0x20, 0x65, 0x40, 0xca, 0x80, 0x94, 0x01, - 0x29, 0x03, 0x52, 0x06, 0xa4, 0x8c, 0x69, 0xe0, 0x05, 0x6a, 0x15, 0x20, 0x65, 0x40, 0xca, 0xe0, - 0x68, 0x04, 0x28, 0x19, 0x50, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x94, 0x01, 0xd5, 0x40, 0xad, 0x02, - 0x94, 0x0c, 0x28, 0x19, 0x50, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x78, 0x31, 0x0c, - 0xbc, 0x40, 0xad, 0x02, 0x94, 0x0c, 0x28, 0x19, 0x50, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, - 0x01, 0x25, 0x53, 0x34, 0x54, 0xb3, 0x41, 0x6a, 0x15, 0xba, 0x54, 0x13, 0x2a, 0x29, 0xa4, 0x2b, - 0x7a, 0xf1, 0x37, 0x74, 0x26, 0x9f, 0x50, 0x6c, 0x15, 0x0b, 0x4e, 0xc2, 0x21, 0xe5, 0x96, 0x3f, - 0xe6, 0xc1, 0x98, 0x5b, 0x81, 0xff, 0x83, 0x86, 0xe2, 0x7a, 0x15, 0xcf, 0x35, 0x26, 0xa6, 0x4c, - 0x51, 0x83, 0x32, 0x45, 0xe6, 0xd8, 0x74, 0xe3, 0x94, 0x29, 0x84, 0x61, 0xa7, 0x12, 0xb6, 0x4c, - 0x86, 0x25, 0x53, 0xc2, 0x8e, 0x49, 0x42, 0x4a, 0x09, 0xb4, 0xae, 0x02, 0x42, 0x2a, 0x62, 0xbf, - 0x54, 0x41, 0x46, 0x95, 0xa0, 0x44, 0x02, 0x22, 0x2a, 0x81, 0x86, 0x8a, 0x58, 0xad, 0x42, 0x0e, - 0x6d, 0x46, 0x78, 0xeb, 0x4a, 0x57, 0x68, 0x7f, 0xa7, 0x70, 0x01, 0x89, 0xe2, 0x36, 0xb5, 0x78, - 0x2d, 0x59, 0x54, 0x78, 0xbb, 0xe3, 0xaf, 0xff, 0x8b, 0x37, 0x86, 0x24, 0xed, 0x50, 0xa8, 0x1a, - 0x82, 0x04, 0x71, 0x23, 0x21, 0xe4, 0x7c, 0x7d, 0x18, 0x5f, 0x1e, 0x9c, 0x57, 0x06, 0xa6, 0x1a, - 0xf8, 0xe1, 0xdb, 0x0a, 0x06, 0x8b, 0x60, 0x18, 0xff, 0xeb, 0x37, 0x86, 0x39, 0x99, 0xf0, 0x58, - 0x62, 0x38, 0x97, 0x06, 0xbe, 0xad, 0xc2, 0xb5, 0xf9, 0x1c, 0x25, 0x19, 0xfe, 0x94, 0xf0, 0x4c, - 0x18, 0x8e, 0x09, 0xc3, 0xaf, 0xa7, 0x70, 0x6b, 0xd1, 0x39, 0xcd, 0x26, 0x93, 0x54, 0xd8, 0xab, - 0x7a, 0x13, 0x52, 0xf2, 0xdd, 0x1f, 0xf3, 0x38, 0xff, 0x4a, 0x3e, 0x90, 0xf3, 0xf9, 0x7a, 0xfc, - 0x78, 0xc2, 0x31, 0x49, 0xa7, 0x70, 0x97, 0x3a, 0x7f, 0x10, 0xc9, 0x1b, 0x1e, 0x2d, 0xc0, 0xb7, - 0x6d, 0x45, 0x45, 0x8e, 0x20, 0x9d, 0x1b, 0x48, 0xe7, 0x04, 0x6b, 0x8b, 0x73, 0xd2, 0xf1, 0x9c, - 0xc2, 0x5d, 0x5a, 0x25, 0xba, 0xaa, 0x3d, 0x5f, 0x15, 0x82, 0xf9, 0xf0, 0xec, 0xf9, 0xcd, 0x10, - 0x67, 0x4c, 0xb9, 0xa4, 0x37, 0x27, 0xfd, 0x4d, 0xb7, 0xe4, 0xb3, 0x49, 0x7d, 0x85, 0x45, 0x19, - 0x67, 0xb8, 0xc5, 0x8a, 0x02, 0x4a, 0x1d, 0xf9, 0xfd, 0xce, 0xc7, 0xcd, 0x61, 0xd3, 0x53, 0xc2, - 0x90, 0x54, 0x19, 0x94, 0x72, 0xc3, 0x52, 0x6e, 0x60, 0x6a, 0x0d, 0x4d, 0x32, 0x35, 0xcc, 0x7d, - 0xcb, 0x93, 0x39, 0xd4, 0xe3, 0x8c, 0xdf, 0x87, 0x74, 0xa0, 0xa2, 0x66, 0x4b, 0x62, 0x93, 0xa6, - 0xda, 0x9e, 0x7d, 0xca, 0x11, 0x89, 0x14, 0xac, 0xbf, 0x79, 0x07, 0x5b, 0xfd, 0xdf, 0x5a, 0x97, - 0x17, 0xad, 0xfe, 0x75, 0xaf, 0xdb, 0x6a, 0x9d, 0x54, 0x55, 0x90, 0x12, 0x91, 0xf4, 0x46, 0x6a, - 0x45, 0xc9, 0x66, 0xea, 0xa3, 0x7e, 0xc6, 0xdd, 0xbb, 0xae, 0xd7, 0xce, 0x8f, 0xaa, 0x45, 0xd8, - 0x65, 0xd4, 0xd2, 0xbb, 0x83, 0x5a, 0xed, 0x53, 0x89, 0xbb, 0xb7, 0x53, 0xea, 0xde, 0xd5, 0xcb, - 0xdd, 0xbb, 0x32, 0x77, 0xae, 0xb1, 0x5b, 0x2b, 0xb5, 0x5f, 0xa9, 0x97, 0xdb, 0xaf, 0xec, 0x96, - 0xdb, 0x69, 0x96, 0x7b, 0xee, 0x4a, 0xdd, 0xbb, 0x46, 0xb9, 0x27, 0x6f, 0xaf, 0xdc, 0xdd, 0x6b, - 0x94, 0xda, 0xb1, 0x7c, 0xbe, 0xf8, 0xfd, 0xa2, 0xf3, 0xc7, 0x45, 0xa9, 0xa3, 0x9e, 0x92, 0xa0, - 0x2e, 0xd5, 0xc2, 0x55, 0xe1, 0x37, 0x63, 0x45, 0x4a, 0xfa, 0xbd, 0xf1, 0x68, 0xbe, 0x47, 0x17, - 0xc9, 0xd3, 0x5c, 0x8f, 0x5a, 0x03, 0xcb, 0x05, 0x96, 0x0b, 0x2c, 0x57, 0xca, 0x15, 0x33, 0x66, - 0x1e, 0x3f, 0x50, 0xc0, 0x6f, 0xed, 0xa2, 0x04, 0x5f, 0xa9, 0x5f, 0x79, 0x9e, 0x5f, 0x43, 0x09, - 0x7e, 0x11, 0xa6, 0xa0, 0xb1, 0x8b, 0x8a, 0x7b, 0x45, 0x70, 0x05, 0x15, 0xf7, 0xd3, 0xf2, 0xa5, - 0x49, 0xf0, 0xd9, 0x7a, 0x54, 0x90, 0xb1, 0x35, 0xdb, 0xe4, 0x2e, 0xc2, 0x8d, 0x8c, 0x71, 0x39, - 0x99, 0xf8, 0x6d, 0x8b, 0xf1, 0xe3, 0x19, 0x6f, 0xd6, 0x37, 0xb0, 0x59, 0x9f, 0x2b, 0xca, 0xc2, - 0x66, 0x7d, 0xf2, 0x75, 0x83, 0xcd, 0x7a, 0xa4, 0x31, 0x48, 0x63, 0xa4, 0x56, 0x0c, 0x36, 0xeb, - 0xd3, 0x23, 0x59, 0x6c, 0xd6, 0xe7, 0xd4, 0x3b, 0x6c, 0xd6, 0x1b, 0xdc, 0x3b, 0x6c, 0xd6, 0x1b, - 0xdb, 0x39, 0x6c, 0xd6, 0x1b, 0xdd, 0x3d, 0x6c, 0xd6, 0x1b, 0x3c, 0x77, 0xd8, 0xac, 0x37, 0xb7, - 0x7b, 0xd8, 0xac, 0x37, 0xb8, 0x77, 0xd8, 0xac, 0xd7, 0x99, 0xf9, 0xce, 0xff, 0xc3, 0x66, 0xfd, - 0xdb, 0xd3, 0x85, 0xcd, 0x7a, 0xb0, 0x5c, 0x60, 0xb9, 0x64, 0x56, 0x0c, 0x36, 0xeb, 0x57, 0x3e, - 0x04, 0x9b, 0xf5, 0x79, 0x87, 0x73, 0x6c, 0xd6, 0xe7, 0x0b, 0x3a, 0xb0, 0x59, 0x5f, 0x98, 0xcd, - 0xfa, 0x14, 0x8a, 0x2b, 0xe9, 0xc7, 0xc6, 0x6c, 0x71, 0x9a, 0xf5, 0xd1, 0xaa, 0xa6, 0xaa, 0x3d, - 0x78, 0x5e, 0xa4, 0xa5, 0xeb, 0x87, 0xfc, 0xfa, 0x68, 0xd6, 0xea, 0xf9, 0xa4, 0x51, 0x55, 0x72, - 0x37, 0x09, 0xa4, 0x4b, 0x52, 0xea, 0x17, 0x88, 0xe9, 0x16, 0x14, 0x5e, 0x6a, 0x23, 0xb9, 0xd6, - 0x8b, 0x2c, 0x5e, 0x2d, 0xa0, 0xdc, 0x46, 0x62, 0x2d, 0x98, 0x12, 0x19, 0x71, 0x9a, 0x8a, 0x24, - 0x35, 0x86, 0x36, 0x57, 0x75, 0x4a, 0x24, 0x98, 0xb4, 0xbe, 0x48, 0x57, 0x9f, 0x2e, 0x87, 0xd1, - 0xb9, 0xcc, 0xa3, 0x96, 0xed, 0x6f, 0xa6, 0xd1, 0x2d, 0x3a, 0x0f, 0x9d, 0x1b, 0x75, 0x4b, 0x58, - 0x9a, 0x1b, 0x51, 0x55, 0x3a, 0x27, 0xb0, 0xb4, 0x55, 0xf1, 0x20, 0xc5, 0x2f, 0x9f, 0x4b, 0xbf, - 0xf4, 0xb3, 0x81, 0xe0, 0xc2, 0x25, 0x74, 0xc4, 0x19, 0x31, 0xcf, 0x12, 0xab, 0x2c, 0x5d, 0x5b, - 0x3d, 0xab, 0x8d, 0x81, 0x58, 0x94, 0x34, 0x26, 0x90, 0x8b, 0xe2, 0xc6, 0x66, 0x3a, 0xc1, 0xb8, - 0x62, 0x48, 0xf1, 0x4d, 0x27, 0x2a, 0x6a, 0xe9, 0x76, 0x24, 0xda, 0x68, 0x79, 0xe3, 0xd1, 0xa4, - 0x67, 0x0f, 0xe0, 0x2b, 0x64, 0xc1, 0xfb, 0x2a, 0x18, 0xc6, 0xd9, 0x02, 0x13, 0xcf, 0x16, 0x00, - 0x20, 0x01, 0x20, 0x01, 0x20, 0x01, 0x20, 0x01, 0x20, 0x01, 0x20, 0xe5, 0x06, 0x90, 0x04, 0x62, - 0x0f, 0xf3, 0xc4, 0xaf, 0xc0, 0x59, 0x9b, 0x80, 0xd5, 0xc6, 0xe4, 0x3c, 0x59, 0x1d, 0x9e, 0x0c, - 0x9e, 0xcc, 0x34, 0x4f, 0x26, 0x0a, 0x27, 0x96, 0xb0, 0xe2, 0x6e, 0xa8, 0xee, 0x50, 0xd2, 0xa4, - 0xb1, 0xf7, 0x4a, 0xae, 0x44, 0x91, 0xbd, 0xca, 0x44, 0xd6, 0x28, 0x55, 0x1a, 0xe7, 0x73, 0x46, - 0x2a, 0x7b, 0xe1, 0xaa, 0x6a, 0x4b, 0xd5, 0x66, 0xb1, 0xda, 0x2c, 0xf7, 0x25, 0x0b, 0x96, 0xbc, - 0x90, 0x55, 0xce, 0x8c, 0x25, 0xcd, 0x59, 0x1d, 0x40, 0x59, 0x5b, 0x73, 0x2a, 0xee, 0x9b, 0x5f, - 0x8b, 0x98, 0x0a, 0x6e, 0x44, 0x57, 0x7a, 0xff, 0xfc, 0xa2, 0x51, 0x35, 0x45, 0x69, 0xf3, 0xff, - 0xd4, 0x98, 0x56, 0x45, 0x75, 0x91, 0xda, 0xd3, 0xe9, 0x50, 0x74, 0x3f, 0xfd, 0xa2, 0x59, 0xc5, - 0x45, 0x6b, 0x2f, 0xcf, 0x78, 0x4d, 0x59, 0xfb, 0x0f, 0xef, 0x15, 0x4e, 0x95, 0xc2, 0x62, 0xb6, - 0xa7, 0x53, 0xb5, 0x8d, 0xa9, 0x7a, 0x78, 0x57, 0x8c, 0x56, 0xae, 0x72, 0x2a, 0xb9, 0x93, 0xb9, - 0x7c, 0x8e, 0x79, 0x11, 0x27, 0x1e, 0x57, 0x07, 0xdc, 0xe6, 0x0d, 0x02, 0xbc, 0x01, 0xbc, 0x01, - 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0xe9, 0x00, 0x6f, - 0x9c, 0x86, 0x77, 0xc4, 0x55, 0x89, 0xde, 0x66, 0x2d, 0x02, 0xbe, 0x01, 0xbe, 0x01, 0xbe, 0x15, - 0x0e, 0xbe, 0x45, 0x9c, 0x70, 0x4b, 0x91, 0x91, 0xae, 0x1a, 0xea, 0x81, 0x82, 0xa6, 0x3e, 0x7b, - 0xd3, 0xd8, 0x50, 0xf5, 0x88, 0xe7, 0x47, 0xd4, 0xf6, 0x3d, 0x47, 0x89, 0x6d, 0x6c, 0x24, 0x88, - 0xab, 0x01, 0x19, 0x98, 0x02, 0xe2, 0x74, 0x4d, 0x55, 0xfd, 0x60, 0x67, 0x67, 0x6f, 0x7f, 0x67, - 0xa7, 0xb6, 0xbf, 0xbd, 0x5f, 0x3b, 0xdc, 0xdd, 0xad, 0xef, 0xd5, 0x77, 0x81, 0xeb, 0x36, 0x01, - 0xd7, 0x8d, 0x14, 0xac, 0xd6, 0x45, 0xc8, 0x98, 0x34, 0x06, 0x34, 0x07, 0x34, 0x07, 0x34, 0x07, - 0x32, 0x0e, 0x64, 0x1c, 0xc8, 0x38, 0xe0, 0x38, 0x90, 0x71, 0x00, 0x6d, 0x5a, 0x40, 0x9b, 0xc5, - 0xd9, 0x88, 0x2a, 0x45, 0x6e, 0xd3, 0x16, 0x01, 0xdf, 0x00, 0xdf, 0x00, 0xdf, 0x0a, 0x07, 0xdf, - 0x26, 0xb6, 0xc9, 0x99, 0xfd, 0x3d, 0x52, 0x0a, 0xe0, 0x40, 0xc5, 0x81, 0x8a, 0x03, 0x84, 0x03, - 0x15, 0x07, 0x54, 0x57, 0x08, 0x54, 0xa7, 0xc0, 0xb1, 0x2c, 0x01, 0x1d, 0xf3, 0x80, 0xe5, 0x80, - 0xe5, 0x80, 0xe5, 0x40, 0xc5, 0x81, 0x8a, 0x03, 0x15, 0x07, 0x1c, 0x07, 0x2a, 0x0e, 0xa0, 0x4d, - 0x0f, 0x68, 0x53, 0x4d, 0xc5, 0xcd, 0x5b, 0x04, 0x7c, 0x03, 0x7c, 0x03, 0x7c, 0x03, 0x15, 0x07, - 0x2a, 0x0e, 0x54, 0x1c, 0x20, 0x1c, 0xa8, 0x38, 0xa0, 0xba, 0x0c, 0x9e, 0x14, 0x95, 0x34, 0x91, - 0x54, 0x45, 0x5c, 0xb4, 0xa3, 0x4e, 0x1d, 0x31, 0x96, 0x77, 0xda, 0x92, 0x57, 0x1a, 0xaa, 0xbc, - 0x79, 0x81, 0x41, 0x67, 0xfa, 0xda, 0xf8, 0xe7, 0xf6, 0xe4, 0x7d, 0xdd, 0xf8, 0x75, 0x05, 0x16, - 0x73, 0x5a, 0x1d, 0xa8, 0xa9, 0x02, 0x96, 0xb4, 0xa4, 0xd3, 0x7a, 0x93, 0x90, 0xa8, 0x83, 0xb0, - 0x93, 0x24, 0x04, 0xdf, 0x5c, 0x89, 0xba, 0xd2, 0x5f, 0x85, 0xdf, 0xe9, 0xf6, 0xdb, 0xc7, 0xcd, - 0xb3, 0xeb, 0x6e, 0xe7, 0xb2, 0x7f, 0xdd, 0xff, 0xab, 0xdb, 0x2a, 0xef, 0x6d, 0xf8, 0x27, 0x97, - 0x9d, 0x6e, 0x19, 0x6f, 0xee, 0x6c, 0x7d, 0xba, 0x6c, 0xf5, 0x7a, 0x65, 0xec, 0x59, 0xbf, 0x75, - 0x79, 0xde, 0xbe, 0x68, 0x9e, 0x5d, 0x9f, 0xb5, 0x2f, 0x5a, 0xa5, 0xee, 0xe0, 0xf1, 0x59, 0xbb, - 0x75, 0xd1, 0x2f, 0x63, 0x17, 0xcf, 0x3b, 0x17, 0xed, 0x7e, 0xe7, 0xb2, 0x8c, 0x5d, 0x6b, 0x9e, - 0x9c, 0x94, 0xb1, 0x5b, 0xed, 0x0b, 0x55, 0x0e, 0x05, 0xb7, 0x00, 0xaf, 0x43, 0xfe, 0x31, 0x57, - 0x28, 0xe0, 0xfa, 0xa8, 0x35, 0x28, 0xb8, 0x02, 0xe8, 0x6f, 0x18, 0xd0, 0x87, 0x82, 0xab, 0x1e, - 0xa3, 0x54, 0x69, 0x9c, 0xcf, 0x19, 0x29, 0x76, 0xcb, 0xb0, 0x5b, 0xa6, 0x33, 0x7f, 0x5f, 0x5b, - 0x73, 0x28, 0x76, 0xca, 0x1b, 0x5e, 0x56, 0x50, 0xec, 0xf4, 0xc2, 0x8c, 0xa3, 0xd8, 0x69, 0x13, - 0xa7, 0x0a, 0xc5, 0x4e, 0xc2, 0xd3, 0x02, 0x05, 0x57, 0x80, 0x37, 0x80, 0x37, 0x80, 0x37, 0x80, - 0x37, 0x80, 0x37, 0x80, 0x37, 0x80, 0x37, 0x80, 0x37, 0xa3, 0xc0, 0x1b, 0x14, 0x5c, 0x01, 0xdf, - 0x00, 0xdf, 0x36, 0x07, 0xbe, 0x41, 0xc1, 0x75, 0x43, 0x40, 0x1c, 0x6a, 0xd5, 0x51, 0xab, 0x8e, - 0x5a, 0x75, 0x28, 0xb8, 0xca, 0x87, 0x0c, 0x28, 0xb8, 0x02, 0xcd, 0x01, 0xcd, 0x81, 0x8c, 0x03, - 0x19, 0x07, 0x32, 0x0e, 0x38, 0x0e, 0x64, 0x1c, 0x40, 0x9b, 0x36, 0xd0, 0x06, 0x05, 0x57, 0xc0, - 0x37, 0xc0, 0xb7, 0x8d, 0x81, 0x6f, 0x90, 0x8d, 0x00, 0x15, 0x07, 0x08, 0x07, 0x2a, 0x0e, 0xa8, - 0xae, 0xc4, 0xa8, 0x0e, 0x0a, 0xae, 0xc0, 0x72, 0xc0, 0x72, 0xa0, 0xe2, 0x40, 0xc5, 0x81, 0x8a, - 0x03, 0x8e, 0x03, 0x15, 0x07, 0xd0, 0x66, 0x04, 0x68, 0x83, 0x82, 0x2b, 0xe0, 0x1b, 0xe0, 0x1b, - 0xa8, 0x38, 0x50, 0x71, 0xa0, 0xe2, 0x00, 0xe1, 0x40, 0xc5, 0x01, 0xd5, 0x15, 0x03, 0xd5, 0x41, - 0xc1, 0x95, 0xd3, 0x2d, 0x05, 0x52, 0x43, 0x95, 0x54, 0x12, 0xae, 0x9d, 0xf8, 0x85, 0x85, 0xd7, - 0x70, 0xe5, 0xcc, 0xe5, 0xf2, 0x42, 0x4e, 0x71, 0x2b, 0x50, 0x6a, 0x85, 0x80, 0x93, 0x24, 0xd4, - 0xde, 0x5c, 0xa5, 0x56, 0x15, 0x64, 0xa8, 0x0a, 0x12, 0x54, 0x29, 0xf9, 0xa9, 0x08, 0x31, 0x2b, - 0x48, 0x5a, 0x54, 0x22, 0x64, 0xc5, 0xe4, 0xa6, 0x6a, 0x44, 0xac, 0x03, 0x4b, 0x29, 0x40, 0xc0, - 0x4a, 0x91, 0xaf, 0x62, 0xd2, 0xd2, 0x88, 0x29, 0xc8, 0x09, 0x3e, 0x5e, 0x65, 0x05, 0x5e, 0xde, - 0x69, 0x5c, 0x90, 0xb2, 0xb0, 0x54, 0x35, 0x1c, 0x4d, 0x17, 0xdf, 0x92, 0x0f, 0x4d, 0xb2, 0x7f, - 0x99, 0x70, 0xf0, 0x44, 0x07, 0x4d, 0xdd, 0x60, 0xa5, 0x88, 0x85, 0x89, 0x81, 0x79, 0xb2, 0xa1, - 0x7f, 0x7b, 0x20, 0x13, 0x0c, 0x62, 0x75, 0x3a, 0xd7, 0x49, 0xc7, 0xee, 0xd1, 0x89, 0xd3, 0xa4, - 0xb4, 0x77, 0x4a, 0xfd, 0xd3, 0x25, 0x5c, 0x4e, 0x18, 0xbd, 0x44, 0xe0, 0xf1, 0x2a, 0x1c, 0x9e, - 0xcf, 0x78, 0x9a, 0xa9, 0x14, 0x84, 0xbf, 0xd2, 0x70, 0x57, 0x1a, 0xde, 0x3e, 0x85, 0xb3, 0x8b, - 0xce, 0x6f, 0x92, 0x01, 0xa7, 0x70, 0x70, 0x09, 0xac, 0xec, 0x9d, 0xc4, 0x38, 0x54, 0x9b, 0xe3, - 0xe1, 0x64, 0x36, 0xa8, 0x93, 0x08, 0x82, 0xa6, 0xb4, 0xd2, 0xad, 0x95, 0x09, 0xfe, 0xb8, 0x32, - 0x1c, 0xcf, 0xfe, 0xfa, 0xd1, 0x6f, 0x53, 0xb8, 0xb6, 0xea, 0x09, 0x8d, 0xec, 0x90, 0x05, 0xb3, - 0x39, 0xac, 0x36, 0x1d, 0x87, 0x79, 0xc3, 0xca, 0xa4, 0x85, 0xca, 0x4d, 0x48, 0xc9, 0x77, 0x7f, - 0xcc, 0x2b, 0x0e, 0xe1, 0xa4, 0xc2, 0xfd, 0x4a, 0x70, 0x7b, 0x1f, 0x4d, 0xdc, 0x5c, 0x65, 0xfe, - 0xa6, 0xf8, 0x6f, 0x74, 0x3b, 0x92, 0x5a, 0x46, 0x8e, 0x24, 0x65, 0x3c, 0x28, 0x8f, 0x13, 0x49, - 0x1c, 0xb4, 0xd4, 0x3b, 0x90, 0xb4, 0x02, 0xc5, 0xd5, 0xf9, 0x9a, 0xb4, 0x46, 0xbe, 0x23, 0x30, - 0xf8, 0xf3, 0xf9, 0x7e, 0xdc, 0x4c, 0xca, 0xf1, 0x7b, 0x62, 0x32, 0x7d, 0x3f, 0xb0, 0x5c, 0x7a, - 0x47, 0xdd, 0x8a, 0xed, 0x7b, 0x9c, 0x30, 0x8f, 0x86, 0x95, 0x81, 0x1f, 0x3e, 0x63, 0x43, 0x69, - 0x5f, 0x24, 0x26, 0x3d, 0x2e, 0xcc, 0x58, 0xc9, 0x30, 0x55, 0x12, 0x96, 0xa4, 0x8a, 0x95, 0x52, - 0xc6, 0x46, 0x29, 0x63, 0xa1, 0xe4, 0x2c, 0x4d, 0x30, 0x71, 0x51, 0x6d, 0xc9, 0x2a, 0x80, 0xaa, - 0x41, 0x91, 0x6f, 0x96, 0x1e, 0x4c, 0xad, 0x77, 0x11, 0xf8, 0xe6, 0xf1, 0x6e, 0xf9, 0x31, 0x95, - 0x89, 0xe7, 0x70, 0x4b, 0x12, 0xfb, 0x04, 0x38, 0xe5, 0xf2, 0xc4, 0xbf, 0xf4, 0x9c, 0x70, 0xce, - 0x31, 0xf0, 0x51, 0x06, 0x2b, 0x1c, 0x02, 0x05, 0xf3, 0xe0, 0xe7, 0x4c, 0xe7, 0x78, 0x1a, 0xf7, - 0xa2, 0xa9, 0xbd, 0x44, 0x01, 0xb5, 0xd9, 0x80, 0xd9, 0xb1, 0xe1, 0xf8, 0x21, 0x8f, 0x2a, 0xbe, - 0xb7, 0x30, 0x2b, 0x1e, 0x12, 0x2f, 0x9a, 0xfc, 0xf6, 0x9b, 0xe7, 0xd0, 0x3b, 0x66, 0xd3, 0xe8, - 0xc3, 0x86, 0x44, 0x45, 0x89, 0x7d, 0x9b, 0xf2, 0x47, 0x46, 0xf1, 0x7d, 0x99, 0xc2, 0x47, 0xc7, - 0x57, 0xff, 0xc5, 0xd5, 0x5b, 0x09, 0x66, 0xba, 0x04, 0x5b, 0x2a, 0xb1, 0xae, 0x26, 0x22, 0x9c, - 0x5e, 0x26, 0xc1, 0x5e, 0x9f, 0xbb, 0x97, 0xc7, 0xe1, 0x15, 0x3f, 0x59, 0x8d, 0xb7, 0xd3, 0xad, - 0x68, 0x1c, 0x04, 0xee, 0xfd, 0x9b, 0x23, 0xb0, 0xb0, 0xb6, 0x47, 0x4f, 0xbd, 0x31, 0xc2, 0xc9, - 0xbc, 0x49, 0x62, 0xef, 0x91, 0xc6, 0x5b, 0x08, 0xd2, 0x58, 0x69, 0xbd, 0x81, 0xb0, 0xf5, 0x0b, - 0x5b, 0xbb, 0x38, 0x4d, 0x25, 0x47, 0xc7, 0x24, 0x8d, 0xa4, 0x55, 0x7b, 0x3e, 0x9b, 0x29, 0x81, - 0xe9, 0xec, 0xb9, 0x92, 0x10, 0x1e, 0x60, 0x4e, 0x37, 0x89, 0x39, 0x5d, 0xba, 0xc4, 0xad, 0xd9, - 0x32, 0xc6, 0x46, 0x05, 0x36, 0x2a, 0x60, 0x6e, 0xfa, 0xcd, 0xad, 0x48, 0x1b, 0x16, 0x99, 0xe1, - 0xc9, 0xc4, 0x08, 0xec, 0x0d, 0x5c, 0xf9, 0x83, 0x86, 0xbd, 0x69, 0x33, 0x3a, 0xe0, 0x65, 0xe8, - 0x07, 0x34, 0xe4, 0x2c, 0xbe, 0x90, 0x39, 0x29, 0xb8, 0x5c, 0x3e, 0x03, 0x68, 0x09, 0x68, 0xf9, - 0xc2, 0x92, 0xba, 0x4f, 0x1f, 0xec, 0x16, 0x4f, 0x02, 0x5e, 0x22, 0xde, 0x65, 0xcd, 0x29, 0xa6, - 0xcc, 0x88, 0xe4, 0x32, 0x23, 0xd3, 0xa9, 0x3c, 0x81, 0xa5, 0xbd, 0x39, 0x54, 0x5e, 0xfa, 0xa5, - 0x2f, 0x48, 0xe5, 0xa5, 0xe5, 0xac, 0x05, 0xef, 0xc2, 0xad, 0xce, 0x50, 0x89, 0xe4, 0x09, 0x86, - 0xb8, 0x15, 0x9c, 0x60, 0x90, 0x34, 0x1f, 0x55, 0x66, 0xa4, 0xdc, 0x9c, 0x94, 0x9b, 0x95, 0x7a, - 0xf3, 0x12, 0x33, 0x33, 0x41, 0x73, 0x5b, 0x7c, 0xbe, 0xba, 0x13, 0x0c, 0x11, 0x0f, 0x99, 0x37, - 0x54, 0x71, 0x7c, 0xe1, 0xa0, 0xc0, 0xe7, 0xa5, 0xee, 0x66, 0x95, 0xe2, 0x92, 0xee, 0x66, 0xda, - 0x0c, 0xfc, 0x0d, 0xfc, 0x0d, 0xfc, 0x8d, 0xe0, 0xca, 0x19, 0x7b, 0xcc, 0xf7, 0x54, 0xb8, 0x9b, - 0x43, 0x89, 0x36, 0x66, 0xdd, 0xc9, 0xfd, 0x7c, 0x93, 0x32, 0x27, 0xac, 0xc8, 0x19, 0x4b, 0x2e, - 0x13, 0x0d, 0x23, 0x73, 0xe3, 0xfb, 0x2e, 0x25, 0x9e, 0xca, 0xa1, 0xa9, 0x97, 0x64, 0x68, 0x98, - 0xc7, 0x95, 0x6a, 0x78, 0xec, 0x40, 0x6b, 0x43, 0x70, 0x45, 0x69, 0x12, 0x70, 0x38, 0x6c, 0x34, - 0xb6, 0xb7, 0xf7, 0x1b, 0xb5, 0xed, 0xbd, 0x83, 0xdd, 0x9d, 0xfd, 0xfd, 0xdd, 0x83, 0xda, 0x01, - 0xd4, 0x37, 0x54, 0x4f, 0x5e, 0x2d, 0xb3, 0xc9, 0xdb, 0x87, 0xf8, 0x46, 0xda, 0xff, 0xae, 0x4a, - 0xe2, 0xaa, 0xc7, 0xaa, 0x7d, 0xf5, 0x01, 0x7c, 0x75, 0xb1, 0xcc, 0x1d, 0xba, 0x48, 0xc6, 0x4c, - 0x15, 0x74, 0x91, 0xe0, 0x9a, 0x21, 0x67, 0xbc, 0x41, 0x3e, 0x1f, 0x72, 0xc6, 0x90, 0x33, 0x86, - 0x83, 0xcf, 0xd8, 0xc1, 0x43, 0xb9, 0x24, 0x1f, 0xe5, 0x92, 0x45, 0x1d, 0xd5, 0xfc, 0xc7, 0x74, - 0x85, 0xa9, 0xe9, 0x47, 0x27, 0xc5, 0xc8, 0x88, 0x6d, 0xfa, 0xca, 0x6c, 0xf6, 0x0a, 0x62, 0x49, - 0xd4, 0x42, 0xa0, 0x16, 0x22, 0xbd, 0xcd, 0x0b, 0x6f, 0x92, 0x2c, 0x66, 0xde, 0xa5, 0x64, 0x10, - 0xd2, 0x81, 0xc8, 0xac, 0xcf, 0xa1, 0xa7, 0x00, 0xcb, 0x54, 0xed, 0xce, 0xdc, 0xcc, 0x87, 0x0f, - 0x33, 0x5f, 0xb1, 0x15, 0x9b, 0x5a, 0x01, 0x1c, 0x46, 0xba, 0x0a, 0xf7, 0xb5, 0xf1, 0x4c, 0x53, - 0xe9, 0xbe, 0x36, 0x92, 0xa2, 0x2e, 0xa3, 0x01, 0x97, 0x01, 0x97, 0x91, 0xf0, 0x33, 0x85, 0xcb, - 0xa7, 0xa6, 0x76, 0x3a, 0x0e, 0xc9, 0x8d, 0xab, 0xa0, 0xae, 0xe1, 0x51, 0x6b, 0x28, 0x6f, 0x40, - 0x79, 0x43, 0x6e, 0xe6, 0x26, 0x97, 0x3f, 0xe4, 0x5f, 0xde, 0x20, 0xbf, 0x5f, 0x2d, 0xb9, 0x4f, - 0x9d, 0x4d, 0x3d, 0x15, 0xaa, 0x37, 0xe1, 0x6e, 0xe0, 0x6e, 0x50, 0xbd, 0x89, 0xea, 0x4d, 0xf8, - 0x1b, 0xf8, 0x9b, 0xcd, 0xf1, 0x37, 0xa8, 0xde, 0xd4, 0xe1, 0x84, 0x15, 0x39, 0x63, 0xc9, 0x65, - 0xa2, 0x61, 0x64, 0x50, 0xbd, 0xf9, 0xe2, 0xd0, 0xa0, 0x7a, 0x33, 0xc5, 0x87, 0xa1, 0x7a, 0xf3, - 0xb9, 0x37, 0x61, 0xbf, 0x18, 0xd5, 0x9b, 0xea, 0xc0, 0x85, 0xfa, 0x56, 0x50, 0xbd, 0xf9, 0xc2, - 0xaa, 0x45, 0xf5, 0x66, 0xc1, 0xcc, 0x1d, 0x95, 0x3c, 0xc6, 0x4c, 0x15, 0xaa, 0x37, 0xe1, 0x9a, - 0x51, 0xbd, 0xb9, 0x41, 0x3e, 0x1f, 0xd5, 0x9b, 0xa8, 0xde, 0x84, 0x83, 0xcf, 0xd8, 0xc1, 0xa3, - 0x7a, 0xb3, 0x30, 0xd5, 0x9b, 0x06, 0xdd, 0x3c, 0xf7, 0x3b, 0xbd, 0x4f, 0xb9, 0xad, 0x5b, 0x3d, - 0x63, 0x11, 0x6f, 0x72, 0x9e, 0x52, 0x57, 0xeb, 0x9c, 0x79, 0x2d, 0x97, 0x8e, 0x26, 0xa3, 0x57, - 0xfd, 0x58, 0xf1, 0xc6, 0xae, 0x9b, 0xa2, 0xa6, 0xec, 0x9c, 0xfc, 0x14, 0x7f, 0xb8, 0x13, 0x3a, - 0x34, 0xa4, 0xce, 0xd1, 0xfd, 0xec, 0x51, 0xb3, 0xf5, 0x34, 0xd7, 0x97, 0x9b, 0x92, 0xbb, 0xfb, - 0xe6, 0x6d, 0x6d, 0x96, 0x38, 0xe7, 0x52, 0xc1, 0x52, 0x83, 0xa6, 0x66, 0xb2, 0x42, 0xc8, 0x54, - 0x85, 0x8f, 0xa9, 0x95, 0x34, 0x1b, 0x50, 0xd2, 0x4c, 0x60, 0xc3, 0x05, 0x57, 0xd2, 0x24, 0xae, - 0xeb, 0xdb, 0x84, 0x53, 0x67, 0x76, 0xa9, 0x7e, 0x6a, 0x41, 0xcd, 0xa7, 0x0d, 0xa4, 0xd3, 0xd5, - 0xac, 0x41, 0x57, 0x13, 0xba, 0x9a, 0x4f, 0x3f, 0x27, 0xf5, 0xfe, 0xf4, 0x23, 0x6a, 0x76, 0xbb, - 0x91, 0x66, 0xd2, 0x66, 0xeb, 0x30, 0x05, 0x9d, 0x2f, 0x98, 0x76, 0x0b, 0xc0, 0x46, 0x99, 0x34, - 0x5a, 0xb6, 0x40, 0x45, 0x32, 0xd7, 0x52, 0x91, 0x53, 0x89, 0x94, 0x06, 0xc9, 0xa4, 0xb3, 0xaa, - 0x86, 0x6c, 0xa7, 0x71, 0xb8, 0x73, 0xb8, 0xb7, 0xdf, 0x38, 0xdc, 0xcd, 0x71, 0xec, 0x34, 0x25, - 0x08, 0x57, 0x19, 0x5e, 0x67, 0xe0, 0x3c, 0xba, 0xff, 0x2a, 0x65, 0x58, 0x5a, 0x7d, 0x18, 0x21, - 0x09, 0x21, 0x29, 0xb7, 0x90, 0x94, 0xba, 0x1a, 0x28, 0x65, 0xd5, 0x8f, 0x1a, 0x5b, 0xa3, 0xa3, - 0x40, 0x44, 0x4d, 0x7d, 0xfa, 0x58, 0xe2, 0xab, 0x20, 0x07, 0x64, 0xec, 0xc6, 0x33, 0x3a, 0x20, - 0x6e, 0x44, 0x61, 0x97, 0xb0, 0xcb, 0xfc, 0xec, 0x32, 0x7d, 0x2d, 0x5a, 0xca, 0x9a, 0x33, 0x45, - 0x86, 0xf9, 0xf7, 0x98, 0x05, 0x93, 0x01, 0xb7, 0x06, 0x84, 0xb9, 0xe3, 0x50, 0xe0, 0x7e, 0x9f, - 0xf5, 0x26, 0x36, 0xdb, 0x60, 0x89, 0x4b, 0xc2, 0x51, 0xb4, 0x91, 0xe6, 0x3a, 0xeb, 0x3a, 0x8c, - 0x55, 0xb7, 0xb1, 0x8e, 0x58, 0x34, 0x22, 0xdc, 0xbe, 0x95, 0xb1, 0xd6, 0x45, 0x1b, 0x30, 0x57, - 0x98, 0x2b, 0xcc, 0x55, 0xbd, 0xb9, 0x0e, 0x58, 0x38, 0xfa, 0x41, 0x42, 0x6a, 0xdd, 0xd1, 0x30, - 0x12, 0xca, 0x32, 0xd7, 0x5a, 0x00, 0xa4, 0x05, 0xa4, 0x45, 0xaa, 0xf9, 0xea, 0x3b, 0x6f, 0x49, - 0xe8, 0xc8, 0x59, 0xdd, 0x5a, 0x0b, 0xb0, 0x3a, 0x58, 0x1d, 0xac, 0xee, 0xd5, 0x77, 0x32, 0x27, - 0xbd, 0x9d, 0x31, 0x07, 0x96, 0x05, 0xcb, 0x82, 0x65, 0xbd, 0xfe, 0xce, 0x78, 0xfb, 0x5b, 0x28, - 0x8e, 0x2d, 0x9e, 0x84, 0x95, 0xc1, 0xca, 0x60, 0x65, 0xaf, 0xbe, 0x73, 0x44, 0x47, 0x7e, 0x28, - 0xb0, 0x43, 0x31, 0x7b, 0x0e, 0xb7, 0xbd, 0xc2, 0xc2, 0x24, 0x2d, 0x2c, 0xf5, 0x6d, 0xaf, 0xe4, - 0x8e, 0x30, 0x57, 0x48, 0x90, 0x6d, 0x59, 0x5c, 0xb5, 0x68, 0x02, 0x3a, 0xa7, 0x9a, 0x16, 0xba, - 0xb2, 0x05, 0xaf, 0x6c, 0xe1, 0xab, 0x33, 0x80, 0x74, 0x86, 0x90, 0xd2, 0x20, 0xc4, 0x43, 0xcf, - 0xda, 0xcc, 0x0b, 0x9f, 0xa8, 0x95, 0x38, 0x41, 0x2b, 0x79, 0x7a, 0x4a, 0x42, 0x3c, 0x45, 0xc5, - 0xe9, 0x28, 0x45, 0xc7, 0x2a, 0x55, 0x1d, 0xa9, 0x51, 0x79, 0x84, 0x46, 0xe2, 0x74, 0x93, 0x92, - 0xd3, 0x4c, 0xaa, 0x87, 0x56, 0xfd, 0x09, 0x55, 0xa5, 0xa3, 0x9d, 0xd1, 0x01, 0x9d, 0xab, 0x02, - 0xa8, 0x07, 0x8f, 0x39, 0x73, 0xd9, 0xff, 0x50, 0x47, 0x3c, 0x1e, 0x2f, 0x5a, 0x40, 0x38, 0x46, - 0x38, 0x46, 0x38, 0x46, 0x38, 0x46, 0x38, 0x46, 0x38, 0x46, 0x38, 0xd6, 0x95, 0x72, 0x67, 0x7d, - 0x00, 0x32, 0x3e, 0x26, 0xb7, 0x95, 0x8a, 0x32, 0xaa, 0xbc, 0x76, 0xf2, 0xf1, 0x7c, 0xda, 0x52, - 0x96, 0x34, 0xd9, 0x60, 0x68, 0x39, 0x69, 0xee, 0x48, 0x58, 0x12, 0x65, 0xf3, 0x27, 0x41, 0x46, - 0x83, 0x2a, 0x93, 0xb4, 0x5b, 0x71, 0x32, 0xda, 0x49, 0x77, 0x41, 0xc7, 0x92, 0x8a, 0x4e, 0xf1, - 0x4c, 0x97, 0x70, 0x4e, 0x43, 0x2f, 0x35, 0xd6, 0xa8, 0xfe, 0xf7, 0x6b, 0xcd, 0x3a, 0xbc, 0xfa, - 0x67, 0xe7, 0xe1, 0xdb, 0x37, 0x6b, 0xfa, 0x63, 0x63, 0xf5, 0xc7, 0xff, 0x54, 0x0b, 0x79, 0x8c, - 0x66, 0x62, 0xd8, 0xa9, 0xf4, 0xd9, 0x1f, 0xb9, 0x84, 0x34, 0x87, 0xf7, 0xe1, 0x12, 0xe0, 0x12, - 0xd4, 0xbb, 0x04, 0x33, 0xf6, 0xa7, 0xc4, 0x2c, 0x0c, 0xd6, 0x05, 0xeb, 0x82, 0x75, 0xbd, 0x6d, - 0x5d, 0x7e, 0x40, 0x43, 0x6b, 0x82, 0xce, 0xc7, 0x51, 0x7a, 0x23, 0x5b, 0x7d, 0x18, 0xb6, 0x06, - 0x5b, 0xcb, 0xcd, 0xd6, 0x98, 0x43, 0x3d, 0xce, 0xf8, 0x7d, 0xba, 0x2b, 0xfd, 0x16, 0x06, 0x97, - 0x82, 0xa6, 0xa8, 0xb6, 0x67, 0xaf, 0x3a, 0x22, 0x91, 0xc4, 0xf6, 0xf3, 0x71, 0xe7, 0xbc, 0xdb, - 0xb9, 0x68, 0x5d, 0xf4, 0xaf, 0x3b, 0xdd, 0xd6, 0xe5, 0x75, 0xaf, 0xdf, 0xec, 0x7f, 0xee, 0xa5, - 0x9d, 0xff, 0x98, 0x78, 0x89, 0x84, 0x98, 0x3d, 0xc9, 0x0b, 0x3e, 0x4e, 0xda, 0xbd, 0xe6, 0xd1, - 0x59, 0xeb, 0xa4, 0x9a, 0x85, 0xf4, 0x80, 0xe4, 0xb7, 0xb6, 0x2f, 0x9a, 0xc7, 0xfd, 0xf6, 0x97, - 0x96, 0x09, 0xdf, 0x2a, 0xfc, 0xa5, 0xef, 0xf4, 0x50, 0x54, 0x0f, 0x19, 0x46, 0xa2, 0x80, 0x84, - 0x53, 0x57, 0x94, 0x32, 0x08, 0xcd, 0x9e, 0x43, 0xfc, 0x41, 0xfc, 0xc9, 0x2d, 0xfe, 0xa4, 0xbf, - 0x4e, 0x56, 0xe4, 0x1a, 0xd9, 0xd5, 0xeb, 0x63, 0xa7, 0xff, 0xb7, 0x24, 0x58, 0x53, 0x5f, 0x27, - 0xab, 0xcc, 0x68, 0xb9, 0xe5, 0xf9, 0x42, 0x56, 0x1b, 0x3f, 0x08, 0xb3, 0x85, 0xd9, 0x22, 0x45, - 0x7b, 0xf5, 0x9d, 0x21, 0x1d, 0xf9, 0x77, 0xa9, 0xaa, 0x1d, 0x17, 0x1d, 0x5c, 0x3e, 0x0a, 0x3b, - 0x83, 0x9d, 0xe5, 0x66, 0x67, 0x86, 0x9c, 0x5a, 0x8e, 0x68, 0xc8, 0x88, 0x2b, 0x14, 0xce, 0x96, - 0x8f, 0xc2, 0xd0, 0x60, 0x68, 0x08, 0x68, 0xaf, 0xdb, 0x99, 0x3f, 0xe0, 0x72, 0xe7, 0x94, 0xd7, - 0x5a, 0x80, 0xd5, 0xc1, 0xea, 0x60, 0x75, 0xaf, 0xbe, 0x93, 0xd3, 0x51, 0x40, 0x43, 0xc2, 0x85, - 0x94, 0xae, 0x56, 0x1f, 0xc6, 0x89, 0x2f, 0xd8, 0x9a, 0xa4, 0xad, 0xa5, 0x3f, 0xf1, 0xe5, 0x92, - 0x70, 0x64, 0x45, 0xf4, 0x8e, 0x86, 0x2c, 0x85, 0x9c, 0xe2, 0xda, 0xc4, 0x3f, 0x69, 0x07, 0xc5, - 0xe6, 0x9a, 0x96, 0xbc, 0xb2, 0xa5, 0xaf, 0xcc, 0x04, 0xd4, 0x99, 0x42, 0x3a, 0x93, 0x48, 0x69, - 0x1a, 0xe2, 0xe1, 0x68, 0x6d, 0xe6, 0xc5, 0x36, 0xc5, 0xd6, 0xfc, 0xb7, 0x40, 0x0d, 0xaf, 0xdc, - 0x26, 0xd9, 0x5a, 0x47, 0x3a, 0xdd, 0xd6, 0xc5, 0x71, 0xe7, 0xe2, 0xb4, 0xfd, 0xe9, 0xba, 0x79, - 0xd6, 0xbc, 0x3c, 0xbf, 0xee, 0xb5, 0xbe, 0xb4, 0x2e, 0xdb, 0xfd, 0xbf, 0xaa, 0x32, 0x7a, 0xd2, - 0x91, 0xd4, 0xfd, 0x5e, 0x92, 0xa5, 0xd7, 0xf3, 0xae, 0x7d, 0xbe, 0xf8, 0xfd, 0xa2, 0xf3, 0xc7, - 0x45, 0x35, 0x8f, 0x22, 0x72, 0x45, 0x5d, 0xf8, 0xa3, 0x79, 0x79, 0xd1, 0xbe, 0xf8, 0x64, 0x72, - 0x17, 0x8e, 0x2f, 0xdb, 0xfd, 0xf6, 0x71, 0xf3, 0xcc, 0xe4, 0x3e, 0x9c, 0xb7, 0x2f, 0x3a, 0x97, - 0x46, 0x77, 0xa0, 0xf9, 0xff, 0x48, 0x75, 0x40, 0xe8, 0xc9, 0xab, 0xc2, 0xe8, 0xbf, 0xa7, 0x39, - 0x6e, 0x37, 0x43, 0x31, 0xe9, 0xaa, 0x76, 0x5e, 0xc2, 0x42, 0x69, 0xca, 0x77, 0x80, 0x84, 0x80, - 0x84, 0x0c, 0x44, 0x42, 0xe9, 0xf9, 0xe7, 0x35, 0x14, 0x54, 0x2f, 0x8c, 0xd9, 0xf3, 0xdb, 0x90, - 0x46, 0xb7, 0xbe, 0xeb, 0xc8, 0x5a, 0xfe, 0xb2, 0x21, 0x18, 0x3f, 0x8c, 0xbf, 0xd4, 0x67, 0x6e, - 0x53, 0xdd, 0x5c, 0xf4, 0x74, 0x9d, 0xef, 0xe3, 0xcc, 0x6d, 0x45, 0x3c, 0xcd, 0xc2, 0x99, 0x5b, - 0x9d, 0x43, 0x2b, 0x7b, 0x23, 0x92, 0x96, 0x31, 0xde, 0x20, 0xe1, 0x0b, 0x72, 0x37, 0x94, 0xd1, - 0xa0, 0x1a, 0x6e, 0x58, 0xe8, 0xb5, 0xf8, 0x7d, 0x40, 0x23, 0x04, 0xe0, 0x57, 0x02, 0xf0, 0x6c, - 0x88, 0x4a, 0x17, 0x86, 0x1d, 0x6a, 0xb3, 0x11, 0x71, 0xa5, 0xd4, 0x2f, 0xea, 0x02, 0x57, 0xd4, - 0xaf, 0x7b, 0xb6, 0xfa, 0xa6, 0xc6, 0xf3, 0x06, 0xe2, 0xb9, 0xae, 0x78, 0xbe, 0x5d, 0xc2, 0xa1, - 0xdd, 0xa0, 0x30, 0xce, 0xbc, 0x88, 0x93, 0x14, 0x87, 0x0f, 0xd6, 0xbc, 0xdb, 0xbc, 0x01, 0x84, - 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0xf3, 0xfc, 0xc2, 0x39, - 0xa7, 0xe1, 0x1d, 0x71, 0x65, 0xe2, 0xf9, 0xac, 0x85, 0xcd, 0x08, 0xe8, 0x88, 0xe3, 0x2f, 0xc5, - 0xf1, 0x92, 0x86, 0xef, 0x88, 0x13, 0x6e, 0x09, 0x2e, 0xf2, 0x8a, 0xa4, 0x1e, 0xe5, 0x67, 0x6f, - 0xea, 0xcb, 0xaa, 0x1e, 0xf1, 0xfc, 0x88, 0xda, 0xbe, 0xe7, 0x08, 0xad, 0x3d, 0x70, 0xec, 0x08, - 0xe2, 0x59, 0x0c, 0x2d, 0x74, 0x2d, 0x8b, 0x12, 0xd7, 0x47, 0x02, 0xab, 0x63, 0xa9, 0xb9, 0x46, - 0x7e, 0x22, 0x3d, 0x47, 0x58, 0x47, 0x7a, 0x8e, 0xf4, 0x1c, 0xe9, 0x39, 0xd2, 0x73, 0xa4, 0xe7, - 0x79, 0x86, 0x71, 0x8b, 0xb3, 0x11, 0x95, 0x8a, 0xe5, 0xd3, 0x16, 0x90, 0x9e, 0x23, 0x3d, 0x2f, - 0x61, 0xf8, 0x9e, 0xac, 0x6d, 0xce, 0xec, 0xef, 0x51, 0xe6, 0x97, 0x45, 0x20, 0x39, 0x47, 0x72, - 0x8e, 0xe4, 0x1c, 0x51, 0x5d, 0x20, 0xaa, 0x0b, 0x18, 0xde, 0x32, 0xa0, 0x33, 0x0f, 0xc9, 0x39, - 0x82, 0x3a, 0x92, 0x73, 0x24, 0xe7, 0x48, 0xce, 0x91, 0x9c, 0x23, 0x39, 0xcf, 0x33, 0x8c, 0xcb, - 0x26, 0xe7, 0xf3, 0x16, 0x90, 0x9c, 0x23, 0x39, 0x47, 0x72, 0x8e, 0xe4, 0x1c, 0xc9, 0x39, 0x92, - 0x73, 0x24, 0xe7, 0xea, 0xa3, 0x7a, 0x09, 0x6e, 0x84, 0x4c, 0xaf, 0x2b, 0x57, 0x79, 0xed, 0x5a, - 0xc8, 0xfe, 0x4a, 0x73, 0x59, 0x4a, 0xeb, 0xa5, 0x89, 0x29, 0xcb, 0x38, 0x32, 0x79, 0x0a, 0xc2, - 0x95, 0x10, 0xd3, 0x93, 0xb4, 0x5c, 0x71, 0xe1, 0xca, 0xb1, 0x97, 0x5c, 0x3b, 0xf5, 0x11, 0xf9, - 0x70, 0x98, 0xe2, 0x99, 0xd9, 0xe7, 0xa5, 0xc3, 0x1a, 0x90, 0x3d, 0x7b, 0x24, 0x7b, 0xf6, 0x5b, - 0xf3, 0xf2, 0xe4, 0x8f, 0xe6, 0x65, 0xeb, 0x7a, 0x71, 0x6f, 0x90, 0xf9, 0xd2, 0x67, 0xc7, 0xbf, - 0x35, 0x7b, 0xbd, 0x76, 0xcf, 0x64, 0xc9, 0xaa, 0x6e, 0xe7, 0xb2, 0x6f, 0xf2, 0xf7, 0x9f, 0x36, - 0x8d, 0x56, 0x9e, 0x3b, 0x6a, 0x1e, 0xff, 0xde, 0x3d, 0x6b, 0x5e, 0xb4, 0x8c, 0xd6, 0x9e, 0xeb, - 0x7e, 0x36, 0xfa, 0xf3, 0x3b, 0x17, 0xfd, 0xcb, 0xce, 0xd9, 0x59, 0xeb, 0xf2, 0xfa, 0xb8, 0x79, - 0x79, 0x62, 0x72, 0x57, 0xfa, 0x97, 0xcd, 0x8b, 0xde, 0x71, 0xab, 0xfd, 0xa5, 0x65, 0xb4, 0x8e, - 0x5e, 0xaf, 0xdf, 0xb9, 0x6c, 0x7e, 0x32, 0xda, 0x26, 0x3a, 0xdd, 0x58, 0x8e, 0xf1, 0xfa, 0xf8, - 0xb7, 0xe6, 0xc5, 0x45, 0xcb, 0x68, 0x59, 0xc6, 0xf6, 0x45, 0xbf, 0xf5, 0xe9, 0xb2, 0xd9, 0x6f, - 0x9d, 0x5c, 0x1f, 0xb7, 0x2f, 0x8f, 0x3f, 0xb7, 0x8d, 0x0e, 0x18, 0xbd, 0xd6, 0x45, 0xcf, 0x6c, - 0x95, 0xc9, 0xd3, 0xe6, 0xd1, 0x65, 0xfb, 0xd8, 0xe8, 0x1e, 0x5c, 0x7e, 0x36, 0x1b, 0x33, 0xfd, - 0xd1, 0xba, 0xbc, 0xee, 0x7d, 0xee, 0x76, 0xcf, 0xfe, 0x32, 0xb9, 0x1f, 0x67, 0xed, 0x8b, 0x96, - 0x64, 0xc4, 0x2b, 0xa6, 0x62, 0xe9, 0x7b, 0x24, 0x6a, 0xe2, 0x89, 0x5a, 0xaf, 0x73, 0xda, 0x2f, - 0x5b, 0xa2, 0xd6, 0xe9, 0xb6, 0x2e, 0x9b, 0xfd, 0xf6, 0xc5, 0xa7, 0xeb, 0xde, 0x5f, 0xbd, 0x7e, - 0xeb, 0xdc, 0x6c, 0x64, 0xf1, 0xb8, 0x2f, 0xd7, 0x9f, 0xbb, 0x27, 0xcd, 0x7e, 0x6b, 0x73, 0x65, - 0x87, 0xaf, 0x32, 0xa4, 0x49, 0xc7, 0x11, 0x75, 0xac, 0xc0, 0xff, 0x41, 0xc3, 0xf4, 0x64, 0xe9, - 0xca, 0xb3, 0xa0, 0x4c, 0x41, 0x99, 0xca, 0x39, 0x18, 0x19, 0xca, 0x34, 0xad, 0x9a, 0xa8, 0x80, - 0x8a, 0xa8, 0xe0, 0xfe, 0xac, 0x40, 0x28, 0x96, 0xd9, 0x8f, 0x95, 0xdc, 0x2c, 0x94, 0xdd, 0x7f, - 0x55, 0xb1, 0x13, 0x28, 0x10, 0x8f, 0xa4, 0xf6, 0x59, 0x55, 0x0d, 0x99, 0xac, 0xea, 0xa7, 0x92, - 0xb1, 0x2b, 0x7a, 0x40, 0x7a, 0x27, 0x31, 0xf3, 0xd5, 0xe6, 0x78, 0x38, 0x71, 0x57, 0xd4, 0x49, - 0x64, 0x85, 0x29, 0x63, 0xd9, 0xd6, 0x8a, 0x07, 0xfc, 0xb8, 0xb2, 0x39, 0xfa, 0xec, 0xaf, 0x1f, - 0xfd, 0x36, 0xde, 0x34, 0x4d, 0x1a, 0x00, 0x4f, 0x68, 0x64, 0x87, 0x2c, 0x98, 0x6d, 0xe9, 0x56, - 0x9b, 0x8e, 0x13, 0x55, 0xa2, 0x80, 0xda, 0x6c, 0xc0, 0xec, 0x4a, 0x2c, 0x01, 0x1e, 0x55, 0x42, - 0xea, 0x12, 0x4e, 0x9d, 0x0a, 0xf7, 0x2b, 0xa4, 0xb2, 0x78, 0xe7, 0x87, 0x92, 0xdc, 0xf1, 0x35, - 0xed, 0xe4, 0x46, 0x46, 0xd8, 0x59, 0xd7, 0x4d, 0xb9, 0xdf, 0x8b, 0xfe, 0x3d, 0x66, 0xc1, 0xe4, - 0xf3, 0xad, 0x01, 0x61, 0x6e, 0x9a, 0x2b, 0xea, 0xd6, 0xe6, 0x7d, 0xbd, 0xa9, 0x94, 0x23, 0xf9, - 0xc4, 0x6e, 0xda, 0x83, 0xe9, 0x74, 0x54, 0xf8, 0x2d, 0xad, 0xdc, 0x92, 0xd0, 0xf9, 0x41, 0x42, - 0x5a, 0x61, 0x9e, 0xc3, 0x6c, 0xc2, 0x69, 0x54, 0xe1, 0xb7, 0x84, 0xc7, 0x7f, 0xb7, 0x30, 0x9f, - 0xff, 0x5f, 0x54, 0x09, 0x6e, 0xef, 0x23, 0x66, 0x13, 0xb7, 0xb2, 0xf8, 0x9a, 0x6f, 0xde, 0x2d, - 0x89, 0x2a, 0x93, 0x4f, 0xa2, 0x4e, 0xfa, 0x2f, 0x1a, 0x90, 0xb1, 0x1b, 0x4f, 0xed, 0x80, 0xb8, - 0xd1, 0xa6, 0x54, 0x56, 0xa6, 0x36, 0x5f, 0x59, 0x33, 0x56, 0x66, 0xce, 0xca, 0xcc, 0x5a, 0x95, - 0x79, 0x67, 0xc2, 0x05, 0xe1, 0xa6, 0x8e, 0x75, 0x77, 0x36, 0x62, 0xd1, 0x88, 0x70, 0xfb, 0x56, - 0x85, 0x3f, 0x5b, 0xb4, 0x95, 0xb5, 0x43, 0xab, 0x30, 0x2f, 0xa2, 0xe1, 0x04, 0x27, 0x30, 0x8f, - 0xfb, 0x93, 0xbf, 0xfb, 0xe6, 0x91, 0xc1, 0x80, 0xda, 0x93, 0x5f, 0x3d, 0xeb, 0xf6, 0x5c, 0xdf, - 0x8e, 0x6b, 0xc9, 0x2a, 0x2c, 0xaa, 0xf8, 0x83, 0x0a, 0xa9, 0x38, 0x6c, 0x30, 0xa0, 0xe1, 0xa4, - 0x2d, 0x7e, 0x1f, 0xd0, 0xc9, 0x3b, 0xbc, 0xca, 0x8f, 0x5b, 0xc2, 0xbf, 0x79, 0x2c, 0xaa, 0x4c, - 0x0b, 0xc6, 0xc6, 0x21, 0x3c, 0x23, 0x3c, 0x23, 0x3c, 0xa3, 0x79, 0x9e, 0x31, 0x93, 0x94, 0xed, - 0xea, 0xad, 0x94, 0x2d, 0x5d, 0x01, 0xab, 0x5c, 0xe1, 0xea, 0xeb, 0xeb, 0xeb, 0xe5, 0x8e, 0xbc, - 0xb2, 0x6e, 0xaa, 0x11, 0xf7, 0x43, 0x32, 0x7c, 0x7b, 0x99, 0xac, 0x88, 0xf8, 0x4d, 0x1f, 0x78, - 0x63, 0x60, 0x92, 0x25, 0x69, 0x89, 0x7d, 0x5a, 0x1a, 0x1f, 0x26, 0x48, 0x78, 0xa6, 0xf5, 0x52, - 0xc2, 0x5e, 0x49, 0xd8, 0x0b, 0x89, 0x13, 0x9a, 0x72, 0xbc, 0x44, 0xd2, 0xc4, 0xaa, 0x6a, 0xcf, - 0x67, 0x33, 0x25, 0x37, 0x31, 0x7b, 0x0e, 0x77, 0x7c, 0x83, 0x63, 0x97, 0xe4, 0x00, 0xb2, 0x3f, - 0x50, 0x10, 0x7b, 0xc3, 0xad, 0xd9, 0x0a, 0xce, 0x70, 0x5f, 0x6b, 0x1a, 0x11, 0x52, 0x9b, 0x5a, - 0x2a, 0x32, 0x4f, 0xd4, 0xd2, 0x1a, 0xb0, 0x34, 0x58, 0x9a, 0x26, 0x4b, 0x4b, 0x80, 0x84, 0x32, - 0xe3, 0xeb, 0x33, 0x03, 0x7f, 0x49, 0x20, 0x57, 0xe5, 0xb5, 0x33, 0x4a, 0xbd, 0x59, 0x13, 0x3a, - 0x10, 0xe4, 0xf8, 0x66, 0xf9, 0xd5, 0x29, 0x70, 0xe4, 0xa3, 0xc7, 0x80, 0x26, 0x81, 0x26, 0x5f, - 0x5b, 0x58, 0x02, 0x81, 0x6e, 0xf5, 0x69, 0x20, 0x4b, 0xc4, 0x3b, 0xc9, 0x78, 0x97, 0x7a, 0x77, - 0x29, 0x65, 0x32, 0x24, 0x97, 0x14, 0x09, 0x2e, 0xe1, 0xc2, 0x70, 0x8b, 0xb8, 0x26, 0x59, 0xe9, - 0xd2, 0xcf, 0x86, 0x5f, 0x4c, 0x6b, 0x12, 0x8b, 0x07, 0x67, 0xf8, 0x44, 0xb2, 0x02, 0x36, 0x6e, - 0xe5, 0x7d, 0x2e, 0x35, 0x31, 0xa2, 0xe6, 0xa2, 0xc2, 0x6c, 0x14, 0x9b, 0x8f, 0x2a, 0x33, 0x52, - 0x6e, 0x4e, 0xca, 0xcd, 0x4a, 0xbd, 0x79, 0x89, 0x99, 0x99, 0xa0, 0xb9, 0xc9, 0xd3, 0xfa, 0x6b, - 0x2b, 0xc7, 0xa5, 0x64, 0x20, 0x56, 0x08, 0xbf, 0x16, 0x6f, 0xf6, 0x25, 0xda, 0xe8, 0xce, 0x32, - 0xa2, 0x0f, 0x1f, 0xb6, 0x56, 0xff, 0x6f, 0x99, 0x00, 0x4d, 0x43, 0xe1, 0x56, 0x6c, 0xf0, 0x19, - 0xe9, 0x67, 0xe8, 0xf5, 0x9c, 0x82, 0xc9, 0xb3, 0x7c, 0x26, 0xb9, 0x9a, 0x74, 0x3d, 0xfa, 0x53, - 0x2a, 0x06, 0x2b, 0xfd, 0x20, 0xa5, 0xd9, 0xc7, 0x16, 0x8a, 0x0e, 0x32, 0x51, 0xc1, 0x74, 0x55, - 0x4f, 0x80, 0x26, 0x83, 0x40, 0x93, 0xfc, 0xa6, 0xac, 0xb8, 0xd7, 0x96, 0xf1, 0xd6, 0xab, 0x5e, - 0x5a, 0xd8, 0x1f, 0xeb, 0x71, 0x18, 0xe9, 0xa8, 0x70, 0x29, 0x4a, 0x5c, 0x59, 0x9e, 0xd5, 0x80, - 0xcb, 0x80, 0xcb, 0x40, 0x9e, 0x85, 0x3c, 0x0b, 0x79, 0x16, 0xf2, 0x2c, 0xe4, 0x59, 0x9b, 0x93, - 0x67, 0xa5, 0xd8, 0xbf, 0x14, 0x40, 0x4d, 0x4a, 0x29, 0xef, 0xdf, 0xe9, 0x7d, 0x4a, 0xff, 0x5f, - 0x3d, 0x63, 0x11, 0x6f, 0x72, 0x9e, 0x92, 0x2a, 0x3f, 0x67, 0x5e, 0xcb, 0xa5, 0xa3, 0xd9, 0x06, - 0xa2, 0x37, 0x76, 0xdd, 0x14, 0xe8, 0xef, 0x9c, 0xfc, 0x14, 0x7f, 0xb8, 0x13, 0x3a, 0x34, 0xa4, - 0xce, 0xd1, 0xfd, 0xec, 0x51, 0xb3, 0xb7, 0xc8, 0x5f, 0x5c, 0x75, 0x2a, 0x64, 0x2e, 0x7b, 0xab, - 0xed, 0x6d, 0xd6, 0xfe, 0xfb, 0xa3, 0xad, 0x6a, 0x0d, 0x5b, 0xe8, 0x3c, 0x24, 0x5e, 0x64, 0x53, - 0x76, 0x97, 0xe0, 0x90, 0xfa, 0x52, 0xc9, 0x73, 0xe5, 0x21, 0x33, 0xb6, 0xcf, 0x93, 0x7f, 0x71, - 0xc5, 0xc8, 0x1d, 0xf4, 0xd5, 0xfe, 0xa1, 0x24, 0x53, 0x21, 0xac, 0x97, 0xdd, 0x38, 0x4f, 0xb7, - 0xf0, 0x64, 0x91, 0x7a, 0xf1, 0xf6, 0xce, 0x53, 0x2d, 0x4c, 0x3d, 0x58, 0x22, 0xfd, 0xe1, 0x4c, - 0x8f, 0xdc, 0xb8, 0xf1, 0x51, 0x68, 0xd1, 0x23, 0x4c, 0xb3, 0x06, 0x36, 0xe4, 0x42, 0x08, 0xa1, - 0x25, 0xbe, 0x39, 0xdc, 0x8e, 0x90, 0x09, 0x98, 0xc2, 0x08, 0x97, 0xe5, 0x00, 0x23, 0xbf, 0xa5, - 0xa1, 0x47, 0xb9, 0x15, 0x8c, 0x1c, 0x2b, 0x08, 0xe9, 0x24, 0x06, 0x49, 0xd8, 0xff, 0x73, 0xad, - 0xc1, 0x19, 0xc0, 0x19, 0x94, 0xdc, 0x19, 0x94, 0x46, 0xe1, 0xae, 0xd5, 0xff, 0xad, 0x75, 0x79, - 0xd1, 0xea, 0x5f, 0x77, 0xcf, 0x4f, 0xae, 0xfb, 0x7f, 0x75, 0x5b, 0xe6, 0xab, 0xda, 0xb5, 0xfa, - 0xbf, 0x5d, 0xd7, 0x6b, 0xb5, 0x4f, 0x47, 0xcd, 0x5e, 0xeb, 0xfa, 0xf8, 0x72, 0xc7, 0x64, 0x55, - 0xbb, 0x69, 0x5f, 0xa6, 0x5d, 0xe9, 0x5d, 0x96, 0xa5, 0x27, 0xad, 0x12, 0xf4, 0x64, 0x31, 0x29, - 0xf5, 0x5a, 0x89, 0x3a, 0x63, 0xbc, 0xb1, 0xec, 0x2c, 0x96, 0x58, 0x69, 0xec, 0xfe, 0xec, 0xb2, - 0x3c, 0x3d, 0x39, 0x37, 0x7e, 0x7d, 0xfd, 0x59, 0x1e, 0x77, 0xfc, 0xf9, 0xe2, 0xa4, 0x75, 0xda, - 0xbe, 0x68, 0x9d, 0x94, 0xc6, 0x81, 0x75, 0x7b, 0xe7, 0x3b, 0xa5, 0xe9, 0xcc, 0xd9, 0x65, 0x29, - 0xfa, 0x72, 0xdd, 0x3c, 0x3e, 0x2e, 0x4b, 0x54, 0x39, 0x2e, 0xcb, 0x94, 0x74, 0x4a, 0x33, 0x25, - 0x25, 0xb0, 0x92, 0x65, 0x4c, 0x39, 0x2b, 0x0f, 0x30, 0x3e, 0x3e, 0x2b, 0x0f, 0x02, 0xfb, 0xbf, - 0x97, 0x65, 0xb1, 0x96, 0xde, 0x65, 0x79, 0xe2, 0x63, 0xab, 0x44, 0x7d, 0x39, 0xfe, 0xe3, 0xe4, - 0xbc, 0x34, 0xb9, 0x97, 0x24, 0x0a, 0x33, 0x5c, 0x77, 0x3f, 0x0d, 0x19, 0x3f, 0xa0, 0xb6, 0x35, - 0xf2, 0x1d, 0x89, 0xba, 0xea, 0x45, 0x0b, 0x20, 0xdd, 0x13, 0xb4, 0x04, 0xd2, 0x5d, 0xa1, 0x45, - 0x80, 0x74, 0x17, 0xed, 0xc8, 0x69, 0xeb, 0xf8, 0xfa, 0xbc, 0x73, 0xd2, 0x2a, 0x09, 0xe1, 0x3e, - 0xe9, 0x4e, 0xeb, 0xa2, 0x79, 0x74, 0x66, 0x36, 0x93, 0x30, 0xe9, 0xc6, 0x49, 0xbb, 0x57, 0x8a, - 0x7e, 0x34, 0x3f, 0xf7, 0x3b, 0x08, 0xc1, 0x89, 0x42, 0xb0, 0x1f, 0x8e, 0xac, 0x01, 0xb1, 0xb9, - 0x1f, 0xca, 0x6f, 0x87, 0x3f, 0xd7, 0x18, 0x02, 0x33, 0x02, 0x33, 0x02, 0xb3, 0x19, 0x81, 0x79, - 0xe5, 0xa2, 0xd8, 0xeb, 0xd3, 0xce, 0xe5, 0xf9, 0xf5, 0x69, 0xf3, 0xb8, 0xdf, 0xb9, 0x2c, 0x49, - 0x9c, 0x3e, 0x3e, 0xed, 0x36, 0x8c, 0xbe, 0xa3, 0xf4, 0xb4, 0x7b, 0xdd, 0x3d, 0xfb, 0x6c, 0xf4, - 0xc5, 0xe2, 0x7f, 0x9e, 0x76, 0x8d, 0xbe, 0x65, 0xaf, 0xff, 0x9b, 0xd9, 0x9b, 0xf7, 0xc7, 0xa7, - 0x5d, 0xa3, 0x79, 0x96, 0xff, 0xd3, 0x3b, 0xed, 0x36, 0x0e, 0x4c, 0xee, 0xc1, 0x45, 0xe7, 0x62, - 0x62, 0xc5, 0x9f, 0x3e, 0x4d, 0x80, 0xb6, 0xd1, 0xa6, 0xdc, 0x30, 0xdc, 0x10, 0x1a, 0xd7, 0xcd, - 0xe3, 0x8e, 0xe9, 0xc6, 0x60, 0xfa, 0xf7, 0x1b, 0x1f, 0xd1, 0x0c, 0x9f, 0x83, 0x63, 0xc3, 0x3f, - 0xbf, 0xdb, 0xfc, 0x7d, 0x83, 0x13, 0x7d, 0xa3, 0x8f, 0x92, 0xae, 0xe4, 0x84, 0x39, 0x68, 0x9b, - 0xcf, 0x6f, 0xf4, 0xb1, 0xec, 0x5b, 0xe2, 0x79, 0xd4, 0x8d, 0xd2, 0x9f, 0x5f, 0x5b, 0x6f, 0x02, - 0x47, 0xd9, 0x70, 0x94, 0x4d, 0x89, 0x2d, 0xa6, 0x57, 0x82, 0x9d, 0x2e, 0x41, 0x09, 0x29, 0xd8, - 0x59, 0x03, 0x9b, 0xa1, 0x05, 0x0b, 0xbe, 0xce, 0x58, 0xbe, 0x4e, 0x58, 0xa9, 0x48, 0x50, 0x2c, - 0x79, 0xdd, 0x52, 0x44, 0x44, 0x93, 0x25, 0x0d, 0x46, 0xda, 0x70, 0x54, 0x18, 0x90, 0x7a, 0x43, - 0x52, 0x65, 0x50, 0xca, 0x0d, 0x4b, 0xb9, 0x81, 0x69, 0x31, 0x34, 0x39, 0x1c, 0x2b, 0xaa, 0x59, - 0x24, 0x6a, 0x80, 0x8b, 0x06, 0x9c, 0x47, 0xd7, 0x36, 0x2a, 0xca, 0x04, 0x56, 0x1b, 0x95, 0x9c, - 0x22, 0x39, 0x41, 0x31, 0x65, 0xa6, 0xaa, 0xd2, 0x64, 0xf5, 0x99, 0xae, 0x6a, 0x13, 0xd6, 0x66, - 0xca, 0xda, 0x4c, 0x5a, 0xab, 0x69, 0xcb, 0x99, 0xb8, 0x82, 0x44, 0xbd, 0xa2, 0x44, 0xa6, 0x6c, - 0x6d, 0xfd, 0x45, 0x3c, 0x64, 0xde, 0x50, 0xc5, 0xba, 0x9b, 0x07, 0xd4, 0x83, 0x77, 0xf9, 0x8c, - 0xaf, 0xc4, 0xd8, 0x56, 0x99, 0xe7, 0xd0, 0x9f, 0xea, 0x7c, 0xe0, 0xb4, 0x39, 0x78, 0x3f, 0x78, - 0x3f, 0x78, 0xbf, 0x42, 0x7b, 0xbf, 0x31, 0xf3, 0x78, 0x7d, 0x4f, 0xa1, 0xf7, 0xdb, 0x53, 0xd0, - 0xd4, 0x25, 0xf1, 0xe2, 0x4b, 0x5a, 0xbf, 0x2a, 0x59, 0x0f, 0x6a, 0xec, 0xa0, 0x32, 0x93, 0xee, - 0x53, 0x66, 0x58, 0x8a, 0xdd, 0xdc, 0x5a, 0xb3, 0x71, 0xb9, 0x83, 0x86, 0x76, 0x4f, 0x43, 0x62, - 0x4f, 0xb0, 0xed, 0x09, 0x1b, 0xb2, 0x58, 0x84, 0xb0, 0xa6, 0xac, 0xfd, 0x87, 0xf7, 0x0a, 0xa7, - 0x8a, 0xfc, 0xd4, 0x36, 0x55, 0xdb, 0x98, 0xaa, 0x87, 0x77, 0xc5, 0x68, 0xe5, 0xca, 0x40, 0xac, - 0xc5, 0x49, 0x38, 0xa4, 0xdc, 0xf2, 0xc7, 0x3c, 0x18, 0x73, 0x2b, 0xf0, 0x7f, 0xd0, 0x50, 0x1d, - 0xf2, 0x7a, 0xae, 0x71, 0xe0, 0x30, 0xe0, 0x30, 0xe0, 0xb0, 0x42, 0xe3, 0x30, 0x87, 0xda, 0x6c, - 0x44, 0xdc, 0xbd, 0x1d, 0x95, 0x89, 0x68, 0x43, 0x41, 0x5b, 0x6b, 0x31, 0xa4, 0x01, 0x80, 0x27, - 0x36, 0x1d, 0x0d, 0xa0, 0x06, 0x00, 0x3c, 0x00, 0xbc, 0x4d, 0x00, 0x78, 0x3f, 0x2d, 0x97, 0x44, - 0x4a, 0x51, 0xdd, 0xbc, 0x45, 0x40, 0x39, 0x40, 0x39, 0x40, 0xb9, 0x42, 0x43, 0x39, 0x71, 0x7d, - 0xda, 0x17, 0x81, 0x5c, 0x3d, 0x2f, 0x27, 0x98, 0xe9, 0x76, 0xae, 0xe4, 0xfd, 0x25, 0x8b, 0x76, - 0x54, 0x94, 0x01, 0xae, 0x55, 0xd4, 0x6d, 0xcd, 0x7e, 0x10, 0xba, 0x3a, 0x52, 0x7c, 0x3c, 0x05, - 0xc6, 0x52, 0x72, 0x2f, 0x47, 0xc9, 0x1e, 0x4e, 0xd9, 0xae, 0xc2, 0x42, 0x71, 0x49, 0x01, 0x02, - 0x06, 0x2e, 0xc4, 0x52, 0x75, 0x21, 0xd6, 0xec, 0xea, 0xab, 0xa9, 0x85, 0x17, 0xd8, 0x93, 0x89, - 0xdd, 0x75, 0xb9, 0x36, 0x01, 0x22, 0x77, 0x5e, 0xae, 0x0d, 0xbd, 0xac, 0x27, 0x6b, 0xc0, 0x93, - 0xc1, 0x93, 0xe5, 0xe2, 0xc9, 0x50, 0x26, 0x87, 0xac, 0x16, 0x59, 0x2d, 0xb2, 0x5a, 0xc9, 0x18, - 0x8a, 0x32, 0x39, 0x94, 0xc9, 0xc1, 0xfb, 0xc1, 0xfb, 0x6d, 0xa2, 0xf7, 0x43, 0x99, 0x5c, 0x9a, - 0x0f, 0x43, 0x99, 0x1c, 0x76, 0x51, 0xb1, 0x8b, 0x5a, 0xc1, 0x2e, 0xaa, 0x24, 0xd6, 0xd2, 0x50, - 0x1e, 0xb7, 0xda, 0xa8, 0x1a, 0xdc, 0x55, 0x07, 0xee, 0x02, 0xee, 0x02, 0xee, 0x52, 0x41, 0x34, - 0x2d, 0x1a, 0x22, 0x77, 0x43, 0x75, 0x2b, 0x64, 0xbe, 0x96, 0x27, 0x8d, 0x2a, 0x9a, 0x42, 0xb5, - 0x58, 0x44, 0x99, 0x0b, 0xd0, 0xe1, 0x0a, 0x9e, 0x75, 0x09, 0xf7, 0x01, 0x8d, 0xaa, 0x0a, 0x51, - 0x88, 0x62, 0xa7, 0xa0, 0xdd, 0x39, 0x68, 0x77, 0x12, 0x2f, 0x3a, 0x8b, 0x78, 0xe4, 0x8b, 0x06, - 0x4f, 0x14, 0xad, 0x5a, 0x65, 0x69, 0xdb, 0xda, 0x9a, 0x55, 0x59, 0x5d, 0xbb, 0x16, 0xff, 0x15, - 0xd6, 0x75, 0x6a, 0xa9, 0xb6, 0xd5, 0x94, 0x2f, 0xaa, 0xcf, 0x1b, 0xb5, 0xe6, 0x8f, 0x4f, 0xa7, - 0x4d, 0x71, 0x35, 0xae, 0xee, 0x24, 0x25, 0x8b, 0x64, 0x45, 0x43, 0x7e, 0xa9, 0x35, 0xcf, 0xd4, - 0x9c, 0x6f, 0x96, 0x6a, 0x4a, 0xdf, 0x15, 0xb3, 0xb5, 0xab, 0x82, 0xe4, 0xc7, 0x0a, 0x96, 0x7c, - 0x95, 0x79, 0x11, 0x27, 0x71, 0xa4, 0x56, 0x0c, 0x5c, 0xe7, 0x0d, 0x03, 0xbc, 0x02, 0xbc, 0x02, - 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xe9, 0x00, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0xaa, - 0x03, 0xaf, 0x9c, 0x86, 0x77, 0xc4, 0xd5, 0x81, 0x5e, 0x67, 0x2d, 0x03, 0xbe, 0x02, 0xbe, 0x02, - 0xbe, 0x6e, 0x1c, 0x7c, 0x8d, 0x38, 0xe1, 0x96, 0x62, 0x27, 0xb0, 0xea, 0x08, 0x0e, 0x14, 0x36, - 0xf9, 0xd9, 0x9b, 0xc6, 0xb0, 0xaa, 0x47, 0x3c, 0x3f, 0xa2, 0xb6, 0xef, 0x39, 0x4a, 0x6d, 0x0d, - 0x20, 0x56, 0x5f, 0x25, 0x0f, 0x40, 0x6c, 0xfe, 0x20, 0x56, 0xf7, 0x94, 0xd6, 0x0f, 0x76, 0x76, - 0xf6, 0xf6, 0x77, 0x76, 0x6a, 0xfb, 0xdb, 0xfb, 0xb5, 0xc3, 0xdd, 0xdd, 0xfa, 0x9e, 0xc8, 0x5d, - 0x75, 0xc0, 0xb5, 0x9b, 0x83, 0x6b, 0x47, 0x0a, 0x57, 0xfd, 0x22, 0xa4, 0x4d, 0x1a, 0x05, 0x9a, - 0x05, 0x9a, 0x05, 0x9a, 0xdd, 0x38, 0x34, 0x0b, 0x32, 0x16, 0x38, 0xf6, 0xc9, 0xb4, 0x81, 0x8c, - 0x2d, 0x1d, 0x8e, 0x05, 0x19, 0x0b, 0xd0, 0x9a, 0x2f, 0x68, 0xb5, 0x38, 0x1b, 0x51, 0x2d, 0xc8, - 0x75, 0xda, 0x32, 0xe0, 0x2b, 0xe0, 0x2b, 0xe0, 0xeb, 0xc6, 0xc1, 0xd7, 0x89, 0xed, 0x73, 0x66, - 0x7f, 0x8f, 0xb4, 0x00, 0x58, 0x50, 0xb1, 0xa0, 0x62, 0x01, 0x61, 0x8b, 0x01, 0x61, 0x41, 0xc5, - 0x02, 0xd5, 0x16, 0x0c, 0xd5, 0x2a, 0x74, 0x64, 0x4b, 0x40, 0xcb, 0x3c, 0x60, 0x59, 0x60, 0x59, - 0x60, 0xd9, 0xcd, 0xc3, 0xb2, 0xa0, 0x62, 0x81, 0x63, 0x9f, 0x4c, 0x1b, 0xa8, 0xd8, 0xd2, 0xe1, - 0x58, 0x50, 0xb1, 0x00, 0xad, 0xf9, 0x82, 0x56, 0x5d, 0x54, 0xec, 0xbc, 0x65, 0xc0, 0x57, 0xc0, - 0x57, 0xc0, 0xd7, 0x8d, 0x83, 0xaf, 0xa0, 0x62, 0x01, 0x61, 0xf5, 0xf9, 0x6f, 0x40, 0xd8, 0xe2, - 0x40, 0x58, 0x50, 0xb1, 0x40, 0xb5, 0x0a, 0x51, 0x6d, 0xae, 0x12, 0x5f, 0x8a, 0xee, 0xe8, 0x59, - 0xb4, 0xa7, 0xf7, 0xae, 0x9e, 0xf8, 0xe2, 0x87, 0x2d, 0x75, 0x9a, 0x7f, 0xd3, 0x4f, 0xe6, 0xe1, - 0xd8, 0xe6, 0xde, 0x2c, 0x8c, 0x1f, 0xcf, 0x3f, 0xe9, 0xba, 0xbf, 0xfc, 0xa4, 0xeb, 0xe3, 0xe9, - 0x07, 0x5c, 0xb7, 0x27, 0xaf, 0xee, 0xc6, 0x6f, 0x36, 0x50, 0x81, 0x31, 0xbe, 0x72, 0xce, 0xba, - 0x61, 0x24, 0xb2, 0xec, 0x71, 0x18, 0x52, 0x05, 0xe2, 0x16, 0xcb, 0x4b, 0x51, 0xd6, 0xdb, 0x86, - 0x1e, 0x63, 0xa2, 0x44, 0x07, 0x7a, 0x8c, 0xd0, 0x63, 0x4c, 0xd6, 0x33, 0xe8, 0x31, 0x82, 0xfb, - 0x00, 0xf7, 0x01, 0xee, 0xa3, 0x70, 0xdc, 0x07, 0xb6, 0xee, 0xc0, 0x7b, 0x3c, 0x99, 0x36, 0x6c, - 0xdd, 0x95, 0x8e, 0xf7, 0xc0, 0xd6, 0x1d, 0x48, 0x8e, 0xfc, 0x96, 0x3c, 0xf4, 0x18, 0x01, 0x5e, - 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, - 0x4d, 0x02, 0xaf, 0xd0, 0x63, 0x04, 0x7c, 0x05, 0x7c, 0x05, 0x7c, 0x55, 0xbd, 0x66, 0xa1, 0xc7, - 0x08, 0x10, 0xab, 0xd3, 0x83, 0x03, 0xc4, 0x16, 0x07, 0xc4, 0xa2, 0xf2, 0x0c, 0xb8, 0xb6, 0x58, - 0xb8, 0x16, 0x7a, 0x8c, 0x40, 0xb3, 0x40, 0xb3, 0x40, 0xb3, 0xaa, 0xd6, 0x2c, 0xc8, 0x58, 0xe0, - 0xd8, 0x27, 0xd3, 0x06, 0x32, 0xb6, 0x74, 0x38, 0x16, 0x64, 0x2c, 0x40, 0x6b, 0xbe, 0xa0, 0x15, - 0x7a, 0x8c, 0x80, 0xaf, 0x80, 0xaf, 0x80, 0xaf, 0x8a, 0xd7, 0x2c, 0x0e, 0x01, 0x03, 0xc2, 0xea, - 0xf3, 0xdf, 0x80, 0xb0, 0xc5, 0x81, 0xb0, 0xa0, 0x62, 0x81, 0x6a, 0x0b, 0x86, 0x6a, 0xa1, 0xc7, - 0x08, 0x2c, 0x0b, 0x2c, 0x0b, 0x2c, 0xab, 0x68, 0xcd, 0x82, 0x8a, 0x05, 0x8e, 0x7d, 0x32, 0x6d, - 0xa0, 0x62, 0x4b, 0x87, 0x63, 0x41, 0xc5, 0x02, 0xb4, 0xe6, 0x0b, 0x5a, 0xa1, 0xc7, 0x08, 0xf8, - 0x0a, 0xf8, 0x0a, 0xf8, 0xaa, 0x78, 0xcd, 0x82, 0x8a, 0x05, 0x84, 0xd5, 0xe7, 0xbf, 0x01, 0x61, - 0x8b, 0x03, 0x61, 0x41, 0xc5, 0x02, 0xd5, 0x2a, 0x44, 0xb5, 0xd0, 0x63, 0x4c, 0xa9, 0xc7, 0xa8, - 0x5c, 0xfa, 0xaf, 0x92, 0x56, 0x96, 0xf1, 0x6c, 0xf2, 0x05, 0x47, 0x8c, 0x44, 0xc7, 0xb3, 0xf7, - 0x1b, 0x28, 0xce, 0xe8, 0x8f, 0x79, 0x30, 0xe6, 0xd6, 0x20, 0xa4, 0x7f, 0x8f, 0xa9, 0x67, 0xdf, - 0xab, 0x93, 0x66, 0x5c, 0x6b, 0x59, 0x8d, 0x30, 0x63, 0x0d, 0xc2, 0x8c, 0x39, 0xe6, 0x3b, 0x10, - 0x66, 0x2c, 0x90, 0xd7, 0x56, 0x96, 0xc5, 0x2c, 0xd6, 0xdf, 0xc2, 0x58, 0xe3, 0xf4, 0x4f, 0xc5, - 0xfa, 0x53, 0x97, 0xb8, 0x2c, 0x13, 0x96, 0xf3, 0xdf, 0xfe, 0x47, 0xc5, 0xa7, 0xa9, 0x4d, 0x50, - 0x14, 0xe6, 0x92, 0x3a, 0x12, 0x12, 0x4d, 0xa8, 0x55, 0x57, 0x02, 0xa2, 0x13, 0x92, 0x2a, 0x4c, - 0x38, 0xb4, 0x24, 0x1a, 0xba, 0xa7, 0x4a, 0x7f, 0x62, 0xa1, 0x75, 0xf6, 0x0a, 0x02, 0xd8, 0xaf, - 0xcc, 0x05, 0x7b, 0x53, 0x0d, 0x73, 0xd5, 0x40, 0x4f, 0x85, 0x32, 0x3a, 0xd4, 0xb7, 0x01, 0xf2, - 0x00, 0xf2, 0x1e, 0xf5, 0x0c, 0xea, 0xdb, 0xf9, 0xba, 0x00, 0x1d, 0xae, 0xe0, 0x59, 0x97, 0x80, - 0x9d, 0x2e, 0xcd, 0x4e, 0xe2, 0x45, 0x67, 0x81, 0x9d, 0x2e, 0x91, 0x35, 0x8b, 0x42, 0x2d, 0xec, - 0x72, 0x3d, 0x99, 0x36, 0x14, 0x6a, 0x65, 0x91, 0x74, 0x6a, 0x4d, 0x3e, 0x9f, 0x4e, 0x29, 0x0a, - 0xb5, 0x34, 0x3b, 0x7a, 0xf5, 0xad, 0x41, 0x7d, 0x3b, 0x41, 0xf4, 0x82, 0xfa, 0x36, 0xc0, 0x2b, - 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0xab, - 0x7a, 0xf0, 0x0a, 0xf5, 0x6d, 0xc0, 0x57, 0xc0, 0x57, 0xc0, 0x57, 0xd5, 0x6b, 0x16, 0xea, 0xdb, - 0x00, 0xb1, 0x3a, 0x3d, 0x38, 0x40, 0x6c, 0x71, 0x40, 0x2c, 0xce, 0x19, 0x00, 0xd7, 0x16, 0x0b, - 0xd7, 0x42, 0x7d, 0x1b, 0x68, 0x16, 0x68, 0x16, 0x68, 0x56, 0xd5, 0x9a, 0x05, 0x19, 0x0b, 0x1c, - 0xfb, 0x64, 0xda, 0x40, 0xc6, 0x96, 0x0e, 0xc7, 0x82, 0x8c, 0x05, 0x68, 0xcd, 0x17, 0xb4, 0x42, - 0x7d, 0x1b, 0xf0, 0x15, 0xf0, 0x15, 0xf0, 0x55, 0xf1, 0x9a, 0x85, 0xe4, 0x0b, 0x20, 0xac, 0x3e, - 0xff, 0x0d, 0x08, 0x5b, 0x1c, 0x08, 0x0b, 0x2a, 0x16, 0xa8, 0xb6, 0x60, 0xa8, 0x16, 0xea, 0xdb, - 0xc0, 0xb2, 0xc0, 0xb2, 0xc0, 0xb2, 0x8a, 0xd6, 0x2c, 0xa8, 0x58, 0xe0, 0xd8, 0x27, 0xd3, 0x06, - 0x2a, 0xb6, 0x74, 0x38, 0x16, 0x54, 0x2c, 0x40, 0x6b, 0xbe, 0xa0, 0x15, 0xea, 0xdb, 0x80, 0xaf, - 0x80, 0xaf, 0x80, 0xaf, 0x8a, 0xd7, 0x2c, 0xa8, 0x58, 0x40, 0x58, 0x7d, 0xfe, 0x1b, 0x10, 0xb6, - 0x38, 0x10, 0x16, 0x54, 0x2c, 0x50, 0xad, 0x42, 0x54, 0x0b, 0xf5, 0xed, 0x94, 0xea, 0xdb, 0x0a, - 0x45, 0xff, 0x2a, 0x69, 0x75, 0xb7, 0x3b, 0xf1, 0xbb, 0xbb, 0xf1, 0xab, 0x0d, 0x54, 0x61, 0xe4, - 0x24, 0x1c, 0x52, 0x6e, 0xe9, 0x11, 0x63, 0x7c, 0xae, 0x71, 0x08, 0x6f, 0x27, 0x4a, 0x76, 0xa0, - 0xc9, 0x08, 0x4d, 0xc6, 0x8c, 0x13, 0x18, 0x2d, 0xbc, 0xbb, 0x4a, 0xbe, 0x5d, 0x0b, 0xcf, 0xbe, - 0x99, 0xca, 0xdb, 0x0d, 0x28, 0x6f, 0x9b, 0xa2, 0xbc, 0xbd, 0x8d, 0xa9, 0x82, 0xcc, 0xb6, 0x04, - 0xc0, 0xfb, 0x69, 0xc5, 0x97, 0xd3, 0x28, 0x44, 0x75, 0xf3, 0x16, 0x01, 0xe5, 0x00, 0xe5, 0x00, - 0xe5, 0x0a, 0x0d, 0xe5, 0x6e, 0x7c, 0xdf, 0xa5, 0xc4, 0x53, 0x09, 0xe4, 0xea, 0x79, 0x39, 0xc1, - 0x77, 0x19, 0x4e, 0x89, 0x2a, 0x1a, 0x24, 0x0b, 0xfa, 0x43, 0x6c, 0xd5, 0xa7, 0x1f, 0xce, 0x74, - 0x4f, 0xa4, 0x1c, 0xf8, 0x89, 0x1f, 0x9a, 0x8a, 0x09, 0x39, 0x34, 0xad, 0x0b, 0xaa, 0x9e, 0xb1, - 0x88, 0x37, 0x39, 0x17, 0x8b, 0x71, 0x13, 0x9c, 0xdd, 0x72, 0xe9, 0xc4, 0xa3, 0x4c, 0x50, 0x8b, - 0x37, 0x76, 0xdd, 0xf7, 0xef, 0x44, 0x10, 0xa0, 0x7c, 0x23, 0x9d, 0xd0, 0xa1, 0x21, 0x75, 0x8e, - 0xee, 0x67, 0x4d, 0x68, 0x1d, 0x70, 0xc9, 0x15, 0xae, 0x77, 0x65, 0x0b, 0x38, 0xac, 0x34, 0xac, - 0x5d, 0x3a, 0x93, 0x49, 0xbe, 0xf0, 0x93, 0xfd, 0xcb, 0x84, 0x33, 0x25, 0x3a, 0x43, 0x7a, 0x66, - 0x26, 0xd9, 0x90, 0xbd, 0x3d, 0x00, 0x09, 0x3a, 0x5f, 0x9d, 0xba, 0xb5, 0xa4, 0x7d, 0x7e, 0x24, - 0x44, 0x94, 0xb4, 0xda, 0x22, 0xe5, 0xe5, 0x2e, 0x4b, 0x94, 0x99, 0x30, 0x73, 0x16, 0x41, 0x93, - 0xf2, 0xa8, 0x51, 0x14, 0x1d, 0x4a, 0xa3, 0x40, 0x69, 0xb4, 0xa7, 0x04, 0xd5, 0xa9, 0x35, 0xbf, - 0xb4, 0x97, 0x9d, 0x54, 0x6d, 0xdf, 0xf3, 0xa8, 0xcd, 0xfd, 0x70, 0x7a, 0x61, 0x5d, 0xea, 0x49, - 0x98, 0x4f, 0xff, 0x93, 0x76, 0xd2, 0x06, 0x52, 0xa1, 0xb4, 0x4a, 0x38, 0x8d, 0x92, 0x49, 0x9b, - 0xd4, 0xa5, 0x49, 0xb2, 0x69, 0x91, 0xb2, 0x34, 0x48, 0x59, 0xda, 0xa3, 0x34, 0xcd, 0xd1, 0x0b, - 0xdd, 0x84, 0xd3, 0x96, 0xa5, 0x84, 0xa4, 0x43, 0x3d, 0xce, 0xf8, 0x7d, 0x48, 0x07, 0x22, 0x93, - 0x3f, 0xf7, 0xe5, 0x02, 0x9b, 0xe2, 0xd5, 0xf6, 0xec, 0xd5, 0x47, 0x24, 0x92, 0x58, 0x3e, 0xf3, - 0x8e, 0x9c, 0xb6, 0x8f, 0x5a, 0x97, 0xd7, 0xc7, 0x9d, 0x8b, 0x8b, 0xd6, 0x71, 0xbf, 0x73, 0x79, - 0xdd, 0xff, 0xab, 0xdb, 0x12, 0x5d, 0x49, 0x31, 0x51, 0x17, 0x49, 0x31, 0xd3, 0x8a, 0x18, 0x9f, - 0xb3, 0xe3, 0x65, 0x97, 0xaa, 0x79, 0xb0, 0x58, 0x8a, 0xfa, 0x71, 0xde, 0xed, 0x94, 0xa3, 0x23, - 0xbd, 0x92, 0x4c, 0xc8, 0x49, 0xb3, 0x24, 0x1d, 0x69, 0x76, 0xd4, 0x74, 0x44, 0xe8, 0xc9, 0x2b, - 0xdd, 0xf1, 0xe0, 0x9d, 0x86, 0x89, 0xa8, 0x3a, 0x84, 0x53, 0xcb, 0xf6, 0x1d, 0x09, 0xa0, 0xb4, - 0x6c, 0x02, 0x18, 0x09, 0x18, 0xa9, 0xe4, 0x18, 0x29, 0x5e, 0xec, 0xc4, 0x73, 0x44, 0xcf, 0x14, - 0x2c, 0x50, 0x92, 0x40, 0xe5, 0x70, 0xb5, 0x4b, 0x38, 0xa7, 0xa1, 0x27, 0x0c, 0x46, 0xaa, 0xff, - 0xfd, 0x5a, 0xb3, 0x0e, 0xaf, 0xfe, 0xd9, 0x79, 0xf8, 0xf6, 0xcd, 0x9a, 0xfe, 0xd8, 0x58, 0xfd, - 0xb1, 0x3f, 0xff, 0xe1, 0xe3, 0xda, 0x0f, 0xbf, 0x7c, 0xfb, 0xf6, 0x21, 0xfe, 0xf9, 0x7f, 0xfd, - 0xfa, 0xbf, 0xff, 0xef, 0xd7, 0xff, 0x65, 0x5d, 0xad, 0xfd, 0x8b, 0xff, 0xa4, 0x9f, 0xec, 0xab, - 0x02, 0x38, 0x40, 0xea, 0x91, 0x1b, 0x97, 0x3a, 0xe2, 0xee, 0x6f, 0xde, 0x00, 0x9c, 0x1f, 0x9c, - 0x5f, 0xc9, 0x9d, 0x9f, 0xf8, 0x3e, 0x96, 0xe0, 0xbe, 0x95, 0x26, 0x93, 0xe7, 0xb7, 0x34, 0xf4, - 0x28, 0xb7, 0x82, 0x91, 0x8c, 0xdd, 0xaf, 0xb6, 0x02, 0xe3, 0x87, 0xf1, 0x83, 0x1d, 0x32, 0x83, - 0x1d, 0x6a, 0xf5, 0x7f, 0x6b, 0x5d, 0x5e, 0xb4, 0xfa, 0xd7, 0xdd, 0xf3, 0x93, 0x92, 0x50, 0x43, - 0xad, 0xfe, 0x6f, 0xd7, 0xf5, 0x5a, 0xed, 0xd3, 0x51, 0xb3, 0xd7, 0xba, 0x3e, 0xbe, 0xdc, 0x31, - 0x39, 0x89, 0x9f, 0xf6, 0x65, 0xda, 0x95, 0xde, 0x65, 0x59, 0x7a, 0xd2, 0x2a, 0x41, 0x4f, 0x16, - 0x93, 0x52, 0xaf, 0x95, 0xa8, 0x33, 0xc6, 0x1b, 0xcb, 0xce, 0x62, 0x89, 0x95, 0xc6, 0xee, 0xcf, - 0x2e, 0xcb, 0xd3, 0x93, 0x73, 0xe3, 0xd7, 0xd7, 0x9f, 0xe5, 0x71, 0xc7, 0x9f, 0x2f, 0x4e, 0x5a, - 0xa7, 0xed, 0x8b, 0xd6, 0x49, 0x69, 0x1c, 0x58, 0xb7, 0x77, 0xbe, 0x53, 0x9a, 0xce, 0x9c, 0x5d, - 0x96, 0xa2, 0x2f, 0xd7, 0xcd, 0xe3, 0xe3, 0xb2, 0x44, 0x95, 0xe3, 0xb2, 0x4c, 0x49, 0xa7, 0x34, - 0x53, 0x52, 0x02, 0x2b, 0x59, 0xc6, 0x94, 0xb3, 0xf2, 0x00, 0xe3, 0xe3, 0xb3, 0xf2, 0x20, 0xb0, - 0xff, 0x7b, 0x59, 0x16, 0x6b, 0xe9, 0x5d, 0x96, 0x27, 0x3e, 0xb6, 0x4a, 0xd4, 0x97, 0xe3, 0x3f, - 0x4e, 0xce, 0x4b, 0x93, 0x7b, 0x49, 0xa2, 0xb0, 0x0d, 0x2a, 0x38, 0x58, 0xa5, 0xcd, 0xad, 0x20, - 0xa4, 0xb6, 0xef, 0x0d, 0xd4, 0x90, 0xf0, 0x8b, 0xd6, 0x40, 0xc6, 0x27, 0x68, 0x09, 0x64, 0xbc, - 0x42, 0x4b, 0x01, 0x19, 0x2f, 0xe1, 0x44, 0x41, 0xc6, 0x9b, 0x01, 0x09, 0x41, 0xc6, 0x57, 0x40, - 0xc6, 0x6b, 0xee, 0x0c, 0xc8, 0xf8, 0x0a, 0xc8, 0x78, 0x8d, 0x3d, 0x01, 0x19, 0x5f, 0xa0, 0xbe, - 0x80, 0x8c, 0x2f, 0x74, 0x67, 0x40, 0xc6, 0x83, 0x8c, 0xd7, 0x35, 0x25, 0x20, 0xe3, 0x0b, 0x19, - 0x53, 0x40, 0xc6, 0x17, 0x12, 0xb7, 0x80, 0x8c, 0x2f, 0xe2, 0x0a, 0x03, 0x19, 0x5f, 0xd0, 0x45, - 0x06, 0x32, 0x3e, 0xe9, 0xe8, 0x0d, 0xc8, 0xd8, 0xe5, 0x96, 0xed, 0x7b, 0x0e, 0x13, 0x92, 0xa0, - 0x59, 0x0c, 0xff, 0xd3, 0x86, 0x40, 0xc1, 0x27, 0x68, 0x09, 0x14, 0xbc, 0x42, 0xfb, 0xc0, 0x61, - 0x18, 0x41, 0x17, 0x40, 0x6d, 0xcb, 0xf6, 0xc3, 0x90, 0xda, 0x9c, 0x3a, 0xd6, 0xcd, 0x54, 0x34, - 0x54, 0xd4, 0x0b, 0xac, 0xb7, 0x05, 0x47, 0x00, 0x47, 0x50, 0x72, 0x47, 0x60, 0xfb, 0x63, 0x8f, - 0xd3, 0x50, 0x48, 0xa8, 0x5b, 0xe2, 0x1e, 0x21, 0x49, 0xc9, 0x6c, 0x09, 0x35, 0x45, 0x15, 0x92, - 0xd8, 0xaa, 0x74, 0x67, 0x15, 0xe9, 0x28, 0xab, 0xd4, 0x4d, 0x96, 0xd1, 0x09, 0x56, 0x21, 0x61, - 0xad, 0x7a, 0x68, 0xd5, 0xdf, 0x7b, 0xa3, 0x74, 0xb4, 0x33, 0xd2, 0xdd, 0xbc, 0x2a, 0x5e, 0xac, - 0xbe, 0xe7, 0x54, 0x5d, 0xb0, 0x8e, 0x1b, 0x43, 0xb4, 0x46, 0xb4, 0x46, 0xb4, 0x46, 0xb4, 0x46, - 0xb4, 0x46, 0xb4, 0x46, 0xb4, 0x56, 0x10, 0xad, 0x47, 0x52, 0xca, 0x5a, 0x8b, 0x16, 0x10, 0x97, - 0x11, 0x97, 0x51, 0xd1, 0x9a, 0x84, 0x52, 0x2b, 0x80, 0xf8, 0x68, 0xeb, 0xf8, 0xfa, 0xbc, 0x73, - 0xd2, 0x2a, 0x49, 0x35, 0xeb, 0xa4, 0x3b, 0xad, 0x8b, 0xe6, 0xd1, 0x99, 0xd9, 0x65, 0x3a, 0x93, - 0x6e, 0x9c, 0xb4, 0x7b, 0xa5, 0xe8, 0x47, 0xf3, 0x73, 0xbf, 0x83, 0xfd, 0xad, 0xa4, 0x21, 0x38, - 0xe2, 0x84, 0x8f, 0x25, 0xf3, 0xe4, 0x59, 0x1b, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc3, 0xe6, 0x84, - 0xe1, 0x5e, 0xbf, 0xd9, 0xff, 0xdc, 0x2b, 0x51, 0x20, 0x9e, 0x75, 0xe8, 0xac, 0x73, 0xfc, 0xbb, - 0xf9, 0x61, 0x6c, 0xd6, 0x99, 0xcf, 0x17, 0xd2, 0xdd, 0xd9, 0xb0, 0x88, 0x36, 0xf6, 0x66, 0xbc, - 0x2d, 0xb9, 0x71, 0xa9, 0x75, 0xe3, 0xfa, 0xf6, 0x77, 0xc9, 0xf8, 0xf6, 0x6c, 0x8b, 0x88, 0x76, - 0x88, 0x76, 0x20, 0x83, 0xdf, 0x5c, 0xf0, 0x20, 0x83, 0x25, 0x19, 0x4b, 0x90, 0xc1, 0xda, 0x86, - 0x16, 0x64, 0x70, 0xa5, 0x40, 0x64, 0xf0, 0xe3, 0x28, 0x3b, 0x71, 0xfb, 0x4a, 0xc3, 0xf6, 0xb4, - 0x41, 0x44, 0x6d, 0x44, 0x6d, 0x44, 0x6d, 0x44, 0x6d, 0x44, 0x6d, 0x44, 0x6d, 0x44, 0x6d, 0xd9, - 0xa8, 0xed, 0x87, 0x23, 0x6b, 0x40, 0x6c, 0xee, 0x87, 0x12, 0x91, 0x7a, 0xa5, 0x11, 0x44, 0x67, - 0x44, 0x67, 0x30, 0xc8, 0x09, 0x96, 0x7c, 0x01, 0x18, 0xe4, 0xfe, 0x65, 0xf3, 0xa2, 0x77, 0xdc, - 0x6a, 0x7f, 0x69, 0x5d, 0x5e, 0x9f, 0x76, 0x2e, 0xcf, 0xaf, 0x4f, 0x9b, 0x25, 0xba, 0x4d, 0xf2, - 0xf8, 0xb4, 0xdb, 0x30, 0xfa, 0xf2, 0xc5, 0xd3, 0xee, 0x75, 0xf7, 0xec, 0x73, 0xcf, 0xe4, 0x3e, - 0xfc, 0x79, 0xda, 0x35, 0xf9, 0xf3, 0x3b, 0xfd, 0xdf, 0xcc, 0x56, 0x52, 0x3a, 0x3e, 0xed, 0x1a, - 0x7d, 0xe8, 0xf5, 0xff, 0xf4, 0x4e, 0xbb, 0x8d, 0x03, 0x93, 0x7b, 0x70, 0xd1, 0xb9, 0x98, 0x58, - 0xf1, 0xa7, 0x4f, 0xcd, 0xa3, 0xb3, 0x96, 0xd1, 0xa6, 0xdc, 0x30, 0xdc, 0x10, 0x1a, 0xd7, 0xcd, - 0xe3, 0x8e, 0xe9, 0xc6, 0x60, 0xfa, 0xf7, 0x1b, 0x1f, 0xd1, 0x0c, 0x9f, 0x83, 0x63, 0xc3, 0x3f, - 0xbf, 0xdb, 0xfc, 0x1d, 0xdb, 0xe8, 0x29, 0x13, 0x7b, 0x79, 0x11, 0xe2, 0xe7, 0x1a, 0x43, 0xa2, - 0x8f, 0x44, 0x1f, 0x89, 0x3e, 0x12, 0x7d, 0x24, 0xfa, 0x48, 0xf4, 0x91, 0xe8, 0x23, 0xd1, 0x47, - 0xa2, 0x8f, 0x44, 0x1f, 0x89, 0x3e, 0x12, 0x7d, 0x24, 0xfa, 0x48, 0xf4, 0x91, 0xe8, 0x67, 0x97, - 0xe8, 0x33, 0x2f, 0x18, 0x73, 0x2b, 0xf0, 0x7f, 0x50, 0x89, 0x1d, 0xfc, 0xd5, 0x46, 0xc4, 0x12, - 0xfb, 0x3a, 0x12, 0x7b, 0x24, 0xf6, 0xd9, 0x24, 0xf6, 0x27, 0x2c, 0x14, 0x9b, 0x7e, 0x72, 0x37, - 0x94, 0xcf, 0xa5, 0x27, 0x8d, 0x08, 0x0e, 0xb1, 0x5c, 0x15, 0x95, 0xb0, 0xc9, 0xa8, 0x30, 0x9d, - 0x67, 0x4d, 0xe8, 0x3e, 0x48, 0xad, 0xa8, 0xa4, 0xd2, 0x88, 0x94, 0x1b, 0x93, 0x72, 0xa3, 0x7a, - 0xd1, 0xb8, 0xe2, 0x91, 0xcb, 0xba, 0x40, 0x4d, 0x70, 0xd5, 0x08, 0xf3, 0x68, 0x6b, 0x6b, 0xc6, - 0xa1, 0x36, 0x1b, 0x11, 0x57, 0xa8, 0xac, 0x75, 0x2d, 0xde, 0x34, 0x24, 0xda, 0x58, 0x2b, 0x16, - 0x94, 0x69, 0x4c, 0xae, 0x68, 0x56, 0x0d, 0x6e, 0xaa, 0xa8, 0x2a, 0xa2, 0x7d, 0x3a, 0xcc, 0x8d, - 0xf7, 0x6a, 0x9a, 0x53, 0x54, 0x54, 0xfb, 0xf2, 0x0c, 0xd6, 0xa4, 0xdb, 0x7d, 0x78, 0xaf, 0x60, - 0x0a, 0x14, 0x14, 0xdb, 0x3e, 0x9d, 0x82, 0xed, 0x0d, 0x9a, 0x82, 0x77, 0xf9, 0x3c, 0x7d, 0x95, - 0x51, 0xc5, 0xaf, 0xc0, 0x12, 0xab, 0x32, 0x2f, 0xe2, 0x24, 0x8e, 0x1c, 0x92, 0xc0, 0x65, 0xde, - 0x10, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, - 0x8b, 0x5e, 0xf0, 0xc2, 0x69, 0x78, 0x47, 0x5c, 0x15, 0xe8, 0x65, 0xd6, 0x12, 0xe0, 0x0b, 0xe0, - 0x0b, 0xe0, 0x4b, 0xea, 0x35, 0x13, 0x71, 0xc2, 0x2d, 0x49, 0x23, 0xaa, 0xc8, 0x1d, 0x2f, 0x5e, - 0x34, 0xf1, 0xd9, 0x9b, 0xfa, 0xdc, 0xaa, 0x47, 0x3c, 0x3f, 0xa2, 0xb6, 0xef, 0x39, 0x52, 0x6b, - 0xb9, 0xd4, 0x20, 0xa6, 0x06, 0x10, 0x93, 0x37, 0x88, 0x51, 0x3d, 0x05, 0xea, 0x8f, 0x3f, 0x03, - 0xd7, 0x64, 0x8b, 0x6b, 0x46, 0x12, 0xab, 0x6c, 0xe1, 0x92, 0x27, 0x8d, 0x00, 0xcd, 0x00, 0xcd, - 0x00, 0xcd, 0x80, 0x8c, 0x01, 0x19, 0x03, 0x1c, 0x03, 0x32, 0x06, 0xa0, 0x45, 0x33, 0x68, 0xb1, - 0x38, 0x1b, 0x51, 0x25, 0xc8, 0x65, 0xda, 0x12, 0xe0, 0x0b, 0xe0, 0x0b, 0xe0, 0x4b, 0xea, 0x35, - 0x33, 0xb1, 0x1d, 0xce, 0xec, 0xef, 0x91, 0x12, 0x00, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, - 0x50, 0x31, 0x1b, 0x8a, 0x6a, 0x24, 0x0c, 0x7d, 0x09, 0x68, 0x98, 0x07, 0x2c, 0x03, 0x2c, 0x03, - 0x2c, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0x70, 0x0c, 0xa8, 0x18, 0x80, 0x16, 0xdd, 0xa0, 0x45, 0x15, - 0x15, 0x33, 0x6f, 0x09, 0xf0, 0x05, 0xf0, 0x05, 0xf0, 0x05, 0x54, 0x0c, 0xa8, 0x18, 0x40, 0x18, - 0x50, 0x31, 0x40, 0x35, 0xb2, 0xa8, 0x46, 0xeb, 0x11, 0xee, 0xa6, 0xe7, 0xf9, 0x9c, 0x4c, 0xa6, - 0x44, 0xec, 0x24, 0x77, 0x64, 0xdf, 0xd2, 0x11, 0x09, 0x08, 0xbf, 0x9d, 0x38, 0xcc, 0x2d, 0x3f, - 0xa0, 0x9e, 0x1d, 0x23, 0x11, 0x2b, 0x70, 0x09, 0x1f, 0xf8, 0xe1, 0x68, 0xcb, 0xf6, 0x47, 0x81, - 0xef, 0x51, 0x8f, 0x47, 0xcb, 0x1f, 0xb7, 0x56, 0x4e, 0xb5, 0x6f, 0x45, 0x9c, 0x70, 0xba, 0x25, - 0xae, 0x7c, 0x30, 0xfd, 0x10, 0x1e, 0x8e, 0x6d, 0xee, 0xcd, 0x55, 0x2b, 0xe6, 0x2f, 0xba, 0xee, - 0x2f, 0x5f, 0x74, 0xdd, 0x9e, 0xbc, 0xa2, 0x1b, 0xbf, 0xa1, 0x00, 0x7a, 0x11, 0x2e, 0x89, 0x68, - 0x68, 0xdd, 0x30, 0x12, 0x59, 0xf6, 0x38, 0x0c, 0xa9, 0xc0, 0xd1, 0xb2, 0x45, 0xf0, 0x7c, 0xa6, - 0x2d, 0xa8, 0x47, 0xe8, 0x07, 0x99, 0x50, 0x8f, 0x90, 0x70, 0x3d, 0x50, 0x8f, 0x40, 0xa6, 0x86, - 0x4c, 0xcd, 0xc0, 0x4c, 0x0d, 0x44, 0xb3, 0x71, 0x59, 0x1a, 0x88, 0xe6, 0xdc, 0xb3, 0x34, 0x10, - 0xcd, 0xe5, 0x49, 0xc9, 0xa0, 0x1e, 0x01, 0xf0, 0x02, 0xf0, 0x02, 0xf0, 0x02, 0xf0, 0x02, 0xf0, - 0x02, 0xf0, 0x02, 0xf0, 0x52, 0x7e, 0xf0, 0x02, 0xf5, 0x08, 0xc0, 0x17, 0xc0, 0x17, 0xa8, 0x47, - 0xac, 0x36, 0x81, 0x7d, 0x72, 0xfd, 0x1e, 0x0b, 0x20, 0xa6, 0xb8, 0x53, 0x80, 0x7d, 0x72, 0xd3, - 0x71, 0x0d, 0xd4, 0x23, 0x80, 0x66, 0x80, 0x66, 0x40, 0xc6, 0x80, 0x8c, 0x01, 0x19, 0x03, 0x32, - 0x06, 0xa0, 0xc5, 0x14, 0xd0, 0x02, 0xf5, 0x08, 0xc0, 0x17, 0xc0, 0x17, 0x1c, 0x59, 0x00, 0x15, - 0x03, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x98, 0x32, 0xa0, 0x1a, 0xa8, 0x47, 0x00, 0xcb, 0x00, 0xcb, - 0x80, 0x8a, 0x01, 0x15, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0x40, 0x8b, 0x21, 0xa0, 0x05, 0xea, 0x11, - 0x80, 0x2f, 0x80, 0x2f, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x03, 0x2a, 0xa6, 0x68, - 0xa8, 0x66, 0x43, 0xd4, 0x23, 0xa4, 0x05, 0x10, 0x2a, 0x49, 0x45, 0x24, 0xce, 0x26, 0x6f, 0x3a, - 0x62, 0x24, 0x3a, 0x9e, 0xbd, 0xa7, 0x00, 0x52, 0x12, 0x3e, 0xf7, 0xac, 0xc9, 0xe8, 0xb8, 0x8c, - 0x78, 0x36, 0xb5, 0x6c, 0xdf, 0xa1, 0xe2, 0x5a, 0x12, 0xcf, 0x35, 0x26, 0x26, 0x26, 0x51, 0x83, - 0x98, 0x44, 0x1e, 0x58, 0x73, 0x13, 0xc5, 0x24, 0x84, 0x91, 0xe4, 0xf2, 0x64, 0x82, 0x43, 0x3d, - 0xce, 0xf8, 0x7d, 0x48, 0x07, 0x22, 0x93, 0x3f, 0xa7, 0xbe, 0x04, 0x62, 0x5d, 0xb5, 0x3d, 0x7b, - 0xf5, 0x11, 0x89, 0x14, 0xa4, 0x92, 0x9d, 0xfe, 0xc5, 0x75, 0xb3, 0xdb, 0x3d, 0x6b, 0x1f, 0x37, - 0xfb, 0xed, 0xce, 0xc5, 0xf5, 0x71, 0xe7, 0xa4, 0x25, 0xba, 0x92, 0xe2, 0xa0, 0x1e, 0x49, 0xa1, - 0x4f, 0xc9, 0x04, 0x6c, 0xde, 0xab, 0x6e, 0xfd, 0xac, 0x7e, 0xdd, 0x38, 0x69, 0x48, 0xa4, 0x36, - 0xef, 0x0b, 0xd2, 0x87, 0xba, 0xd9, 0x7d, 0xe8, 0x19, 0x3f, 0x0f, 0x13, 0x0b, 0xf9, 0x7c, 0x71, - 0xd2, 0x3a, 0x6d, 0x5f, 0xb4, 0x4e, 0xb2, 0xce, 0x95, 0xaf, 0x74, 0x7b, 0x4e, 0x3d, 0x08, 0x63, - 0xcc, 0x97, 0xf2, 0x5c, 0xe2, 0xd0, 0x62, 0xb5, 0x15, 0x08, 0x54, 0x01, 0x53, 0x40, 0xa0, 0xea, - 0xc5, 0xb5, 0x03, 0x81, 0x2a, 0x90, 0xc1, 0xd2, 0xc6, 0x85, 0xbd, 0x6c, 0x59, 0x7a, 0x0c, 0x7b, - 0xd9, 0xeb, 0x2c, 0x24, 0xf6, 0xb2, 0xa5, 0x48, 0x43, 0xec, 0x65, 0xe7, 0x3e, 0x05, 0xd8, 0xcb, - 0x5e, 0x1b, 0x66, 0x08, 0x54, 0x01, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, - 0xbc, 0x00, 0xbc, 0x18, 0x06, 0x5e, 0x20, 0x50, 0x05, 0xf8, 0x02, 0xf8, 0x02, 0x81, 0xaa, 0xd5, - 0x26, 0x50, 0x8a, 0xa7, 0xdf, 0x63, 0x01, 0xc4, 0x14, 0x77, 0x0a, 0x50, 0x8a, 0x67, 0x3a, 0xae, - 0x81, 0x40, 0x15, 0xd0, 0x0c, 0xd0, 0x0c, 0xc8, 0x18, 0x90, 0x31, 0x20, 0x63, 0x40, 0xc6, 0x00, - 0xb4, 0x98, 0x02, 0x5a, 0x20, 0x50, 0x05, 0xf8, 0x02, 0xf8, 0x82, 0x53, 0x91, 0xa0, 0x62, 0x40, - 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x53, 0x06, 0x54, 0x03, 0x81, 0x2a, 0x60, 0x19, 0x60, 0x19, 0x50, - 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x68, 0x31, 0x04, 0xb4, 0x40, 0xa0, 0x0a, 0xf0, - 0x05, 0xf0, 0x05, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x14, 0x0d, 0xd5, - 0x6c, 0x88, 0x40, 0x95, 0x84, 0xf4, 0x41, 0x25, 0xa9, 0x34, 0x55, 0x27, 0x7e, 0x47, 0x37, 0x7e, - 0x45, 0x01, 0x34, 0x23, 0x02, 0x3f, 0xe2, 0xd6, 0x80, 0xda, 0xd6, 0x8d, 0x8c, 0x66, 0xc4, 0xa3, - 0x56, 0xa0, 0x19, 0xa1, 0x1f, 0x5a, 0x42, 0x33, 0x42, 0xc2, 0xe1, 0x40, 0x33, 0xa2, 0x18, 0xf9, - 0x99, 0x1f, 0x70, 0xe4, 0x68, 0xc2, 0x06, 0xb6, 0x1c, 0x3d, 0xd0, 0xcc, 0x12, 0xc6, 0xa4, 0x96, - 0x66, 0xae, 0x1f, 0x20, 0x49, 0x7b, 0x7e, 0x9c, 0xc1, 0x33, 0xe7, 0x9e, 0xa4, 0x81, 0x67, 0x2e, - 0x4f, 0x46, 0x06, 0xf1, 0x08, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, - 0x18, 0xa0, 0x98, 0x0d, 0x42, 0x31, 0x50, 0x91, 0xd0, 0x82, 0x63, 0x80, 0x61, 0x44, 0x31, 0x0c, - 0x54, 0x24, 0xa0, 0x22, 0x61, 0x12, 0x88, 0xc1, 0x7e, 0x79, 0xee, 0x20, 0x06, 0xfb, 0xe5, 0xc0, - 0x35, 0x8f, 0x87, 0x19, 0x2a, 0x12, 0x60, 0x65, 0xc0, 0xca, 0x80, 0x95, 0x01, 0x2b, 0x03, 0x56, - 0x06, 0xac, 0x0c, 0x58, 0x19, 0xe3, 0xd0, 0x0b, 0xe4, 0x24, 0xc0, 0xca, 0x80, 0x95, 0xc1, 0x19, - 0x06, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, 0x29, 0x03, 0xaa, 0x81, 0x9c, 0x04, 0x38, - 0x19, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, 0x01, 0x27, 0x03, 0x4e, 0xc6, 0x34, 0xf4, - 0x02, 0x5d, 0x09, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, 0x01, 0x27, 0x03, 0x4e, 0x06, - 0x9c, 0x4c, 0xd1, 0x50, 0xcd, 0x86, 0xe8, 0x4a, 0x48, 0xc8, 0x23, 0x54, 0x92, 0xea, 0x4a, 0x74, - 0xfd, 0x88, 0x9f, 0x52, 0xfb, 0xa8, 0x20, 0xb2, 0x12, 0x21, 0x55, 0xa0, 0x2a, 0xb1, 0xd2, 0x08, - 0x44, 0x25, 0xf4, 0xe3, 0x4a, 0x88, 0x4a, 0x48, 0x78, 0x1b, 0x88, 0x4a, 0x80, 0x64, 0x36, 0x3f, - 0x41, 0x03, 0xc9, 0x0c, 0x92, 0xd9, 0xa0, 0x0c, 0x0d, 0x24, 0x73, 0xee, 0x19, 0x1a, 0x48, 0xe6, - 0xf2, 0xa4, 0x63, 0x10, 0x95, 0x00, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, - 0x8a, 0x01, 0x8a, 0xd9, 0x20, 0x14, 0x03, 0x51, 0x09, 0x2d, 0x38, 0x06, 0x18, 0x46, 0x14, 0xc3, - 0x40, 0x54, 0x02, 0xa2, 0x12, 0x26, 0x81, 0x18, 0x6c, 0x96, 0xe7, 0x0e, 0x62, 0xb0, 0x59, 0x0e, - 0x5c, 0xf3, 0x78, 0x98, 0x21, 0x2a, 0x01, 0x56, 0x06, 0xac, 0x0c, 0x58, 0x19, 0xb0, 0x32, 0x60, - 0x65, 0xc0, 0xca, 0x80, 0x95, 0x31, 0x0e, 0xbd, 0x40, 0x54, 0x02, 0xac, 0x0c, 0x58, 0x19, 0x1c, - 0x60, 0x00, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, 0x99, 0x32, 0xa0, 0x1a, 0x88, 0x4a, 0x80, - 0x93, 0x01, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, 0x19, 0x70, 0x32, 0xe0, 0x64, 0x4c, 0x43, - 0x2f, 0x10, 0x95, 0x00, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, 0x19, 0x70, 0x32, 0xe0, 0x64, - 0xc0, 0xc9, 0x14, 0x0d, 0xd5, 0x6c, 0x8a, 0xa8, 0x84, 0xb0, 0x3a, 0x42, 0x25, 0xb1, 0xa6, 0x44, - 0x48, 0x0b, 0x25, 0x29, 0x11, 0x51, 0x81, 0x93, 0x66, 0xab, 0x72, 0x12, 0x71, 0x03, 0x62, 0x52, - 0x12, 0x35, 0x48, 0x49, 0xe4, 0x81, 0x22, 0x37, 0x51, 0x4a, 0x42, 0x18, 0x23, 0x2e, 0xe6, 0x9f, - 0x7a, 0xe3, 0x11, 0x0d, 0xa7, 0x6e, 0x4a, 0x60, 0xf2, 0xe7, 0xac, 0xd6, 0x8e, 0xc0, 0xb3, 0x2d, - 0x6f, 0x3c, 0x9a, 0x7c, 0xfc, 0x43, 0x01, 0x5c, 0x46, 0x44, 0x43, 0x46, 0x5c, 0xcb, 0xf3, 0xc5, - 0x9d, 0xc6, 0xb2, 0x09, 0xb8, 0x0d, 0xb8, 0x8d, 0x92, 0xbb, 0x8d, 0x88, 0x87, 0xcc, 0x1b, 0xca, - 0x78, 0x0c, 0x81, 0x34, 0xb2, 0x7a, 0x46, 0xbd, 0x61, 0x0c, 0x87, 0xc4, 0xf2, 0x3d, 0x89, 0x54, - 0x5a, 0x45, 0x7e, 0xa7, 0x28, 0xa9, 0x58, 0x26, 0x13, 0x92, 0xed, 0x28, 0xcc, 0x18, 0x24, 0xf2, - 0x37, 0x25, 0x79, 0x9b, 0xf2, 0xa1, 0xdd, 0x2b, 0xd0, 0xd8, 0x66, 0x94, 0x0d, 0x5d, 0x15, 0x21, - 0x0c, 0xfb, 0x1e, 0xe5, 0x56, 0xe4, 0xdc, 0x5a, 0x93, 0x7c, 0xc6, 0x65, 0xc4, 0xb3, 0xa9, 0x65, - 0xfb, 0x0e, 0x95, 0x08, 0xcb, 0x2f, 0x36, 0x89, 0x30, 0x8d, 0x30, 0x5d, 0xf2, 0x30, 0xcd, 0x1c, - 0xea, 0x71, 0xc6, 0xef, 0x43, 0x3a, 0x90, 0x89, 0xd5, 0x02, 0x1c, 0x55, 0xb5, 0x3d, 0x7b, 0xf5, - 0x11, 0x89, 0x14, 0x6c, 0x01, 0xf5, 0x3a, 0x17, 0xad, 0xfe, 0x75, 0xb3, 0xdb, 0x3d, 0x6b, 0x1f, - 0x37, 0xfb, 0xed, 0xce, 0xc5, 0xf5, 0x71, 0xe7, 0xa4, 0x25, 0xba, 0x96, 0x62, 0x37, 0x1f, 0x49, - 0xf1, 0xc6, 0x92, 0xf1, 0xea, 0x71, 0xbf, 0x3e, 0x5f, 0x9c, 0xb4, 0x4e, 0xdb, 0x17, 0xad, 0x93, - 0x6a, 0x1e, 0x11, 0x58, 0x51, 0x57, 0xbe, 0xf4, 0x2e, 0x1b, 0xb5, 0x5a, 0xed, 0x7a, 0xfb, 0x72, - 0xb7, 0x1c, 0xdd, 0xd8, 0x2e, 0x47, 0x37, 0x1a, 0x59, 0x6f, 0x78, 0x5d, 0xe9, 0x76, 0xa3, 0x5a, - 0xa0, 0xc7, 0x1d, 0xf5, 0x1c, 0x5f, 0x42, 0x82, 0x76, 0xf6, 0x3c, 0x40, 0x05, 0x40, 0x05, 0x72, - 0x7f, 0xe4, 0xfe, 0xc8, 0xfd, 0x91, 0xfb, 0x23, 0xf7, 0x4f, 0x1f, 0x80, 0xad, 0x80, 0x84, 0x5c, - 0x36, 0x0a, 0x4f, 0x1b, 0x41, 0x28, 0x46, 0x28, 0x46, 0x28, 0x46, 0x28, 0x46, 0x28, 0x46, 0x28, - 0x46, 0x28, 0x16, 0x08, 0xc5, 0x21, 0xbd, 0x93, 0x8e, 0xc4, 0x93, 0x36, 0x10, 0x88, 0x11, 0x88, - 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x4d, 0x0d, 0xc4, 0x0d, 0xc4, 0x61, 0x65, 0x71, 0xf8, 0x9d, - 0xc2, 0x05, 0x24, 0x5a, 0x64, 0xac, 0xae, 0xb8, 0x38, 0x99, 0x2b, 0x7f, 0xbb, 0xd3, 0xaf, 0xff, - 0x8b, 0x37, 0x86, 0x23, 0xed, 0x30, 0xa8, 0xe8, 0x7e, 0x02, 0x5f, 0x9f, 0xa4, 0x72, 0xfa, 0xf5, - 0xf1, 0x7b, 0x79, 0x54, 0x9e, 0xff, 0x9b, 0x17, 0xc6, 0x69, 0x02, 0x0e, 0xa6, 0xa7, 0x6e, 0x5e, - 0x3c, 0x44, 0x57, 0x3d, 0x63, 0x11, 0x6f, 0x72, 0xfe, 0xfa, 0x0e, 0xc8, 0xc4, 0xef, 0xb7, 0x5c, - 0x3a, 0x89, 0xea, 0x13, 0x2b, 0xf6, 0xc6, 0xae, 0xfb, 0xfe, 0xdd, 0x6b, 0x9e, 0x2c, 0xf9, 0x3f, - 0xee, 0x84, 0x0e, 0x0d, 0xa9, 0x73, 0x74, 0x3f, 0xfb, 0xa7, 0xa9, 0xfa, 0xd7, 0x1c, 0x0f, 0x27, - 0xaf, 0xa1, 0xce, 0xab, 0xb1, 0xf0, 0xf5, 0x85, 0xb1, 0x88, 0xe5, 0x5b, 0xbe, 0xbd, 0x58, 0x06, - 0x1f, 0x57, 0x96, 0xc1, 0xb3, 0xbf, 0x7e, 0x63, 0x19, 0x54, 0x4f, 0x68, 0x64, 0x87, 0x2c, 0x98, - 0x2d, 0xcd, 0x6a, 0xd3, 0x71, 0x98, 0x37, 0xac, 0xf8, 0x01, 0x67, 0x36, 0x71, 0x2b, 0xf6, 0x2d, - 0xf1, 0x3c, 0xea, 0x56, 0x1c, 0xc2, 0x49, 0x85, 0xfb, 0x95, 0xe0, 0xf6, 0x3e, 0x8a, 0xff, 0x82, - 0x79, 0x77, 0xd4, 0xe3, 0x7e, 0x78, 0xff, 0x56, 0xfb, 0xc9, 0xae, 0x2f, 0x4c, 0x0c, 0x8e, 0xd3, - 0x80, 0xe1, 0x35, 0x6d, 0x05, 0x1a, 0x8e, 0x92, 0x58, 0x45, 0x4a, 0xa4, 0x2b, 0x8c, 0x6c, 0x85, - 0x91, 0xec, 0xb3, 0xd2, 0x07, 0x93, 0xce, 0x69, 0xf6, 0x62, 0x49, 0x2f, 0x06, 0xac, 0xce, 0x96, - 0x8f, 0x35, 0x5b, 0x3e, 0xc9, 0x87, 0x72, 0x31, 0x63, 0x4f, 0x1a, 0x48, 0x38, 0x2e, 0x4f, 0x16, - 0x73, 0xcb, 0xb3, 0x5d, 0x3f, 0x9a, 0xac, 0x67, 0xdb, 0xf7, 0x38, 0x61, 0x1e, 0x0d, 0x2b, 0x03, - 0x3f, 0xac, 0xf0, 0x5b, 0x5a, 0x71, 0x59, 0xc4, 0x2b, 0xfe, 0xe0, 0xe9, 0x4a, 0x4f, 0x7a, 0xda, - 0x2f, 0xe5, 0xb5, 0x9c, 0xa9, 0x93, 0x3f, 0x91, 0xa4, 0x4f, 0x70, 0xbd, 0xcb, 0x66, 0x78, 0xd2, - 0x99, 0x9d, 0x74, 0x46, 0x27, 0x6e, 0x0f, 0x29, 0x41, 0x8f, 0xac, 0x7d, 0xbd, 0x13, 0xb0, 0xbc, - 0xe2, 0x04, 0x85, 0x15, 0x70, 0x61, 0x7e, 0x40, 0x48, 0x89, 0x94, 0x8c, 0x8b, 0x09, 0xa9, 0xd8, - 0x8c, 0x8c, 0xc2, 0xc2, 0xea, 0x37, 0xa5, 0x0e, 0x09, 0xe9, 0xe9, 0xab, 0xa7, 0xcb, 0xb8, 0xef, - 0x07, 0x96, 0x4b, 0xef, 0xa8, 0xfb, 0x24, 0x1c, 0xd8, 0x2e, 0xa3, 0x1e, 0xaf, 0x04, 0x7e, 0xc8, - 0xd7, 0xd6, 0x78, 0x49, 0xc2, 0x81, 0x18, 0xf7, 0x57, 0x9e, 0x88, 0x20, 0xc4, 0xed, 0xe5, 0x1e, - 0x14, 0x9e, 0xfd, 0x9b, 0xab, 0x97, 0x52, 0x8c, 0x64, 0x29, 0xa6, 0x68, 0x6a, 0xf9, 0xca, 0x0c, - 0xbe, 0x94, 0x46, 0x3e, 0x3f, 0xd2, 0xeb, 0xbd, 0x7a, 0xfc, 0x9b, 0x27, 0xde, 0xe6, 0xad, 0x7e, - 0xa5, 0xeb, 0xcf, 0xe3, 0x4f, 0x5a, 0xbe, 0x78, 0xe5, 0xa5, 0xd3, 0x7b, 0x8f, 0x06, 0xc4, 0x8e, - 0x0b, 0x70, 0x1f, 0xbf, 0xf0, 0xf1, 0xdd, 0x48, 0xd3, 0x7f, 0xf3, 0xe4, 0x73, 0x9f, 0x77, 0x04, - 0x2f, 0x1a, 0xfc, 0x6b, 0x86, 0xbd, 0x6a, 0xc0, 0xec, 0xb9, 0xfa, 0xe8, 0xb7, 0xec, 0x33, 0xb1, - 0x1d, 0x26, 0xb6, 0xb7, 0xa7, 0x76, 0xc5, 0x06, 0xd5, 0x94, 0xd3, 0xf9, 0x52, 0xb0, 0x58, 0x0e, - 0xe9, 0xcb, 0xdd, 0x59, 0x1b, 0xfd, 0x97, 0xba, 0xf3, 0xba, 0x37, 0x7e, 0xd3, 0xfb, 0x26, 0xf1, - 0xb6, 0x6f, 0x4e, 0x4e, 0x5a, 0x27, 0x9a, 0xda, 0x69, 0xa6, 0x76, 0x92, 0x49, 0x26, 0x4f, 0x8c, - 0xbe, 0x79, 0x0b, 0x01, 0x54, 0xc9, 0x70, 0x18, 0xd2, 0x61, 0x32, 0x02, 0x6c, 0x79, 0x13, 0xfc, - 0xca, 0x43, 0x66, 0x80, 0x4a, 0x97, 0x0c, 0x4b, 0x09, 0x26, 0x27, 0xfd, 0x2a, 0x0a, 0x88, 0xb4, - 0xe7, 0x73, 0x98, 0x12, 0x3f, 0xce, 0x9e, 0x2b, 0x07, 0x9e, 0x4b, 0xb6, 0xd0, 0xca, 0x87, 0xe3, - 0x12, 0x2d, 0x44, 0x3d, 0x3b, 0x19, 0x49, 0x17, 0xe8, 0xe2, 0x01, 0x97, 0x0c, 0x63, 0x41, 0x2f, - 0xf1, 0x12, 0x85, 0x45, 0x0b, 0x9b, 0x51, 0xa0, 0x90, 0x6e, 0x51, 0xcb, 0x2e, 0x6e, 0x65, 0x8b, - 0x5c, 0xd9, 0x62, 0x57, 0xb2, 0xe8, 0xd3, 0x2d, 0xfe, 0x94, 0x46, 0xb0, 0xf8, 0x42, 0xf9, 0x82, - 0x84, 0x95, 0xe0, 0x2e, 0xb2, 0xc6, 0x2b, 0x65, 0x12, 0xf7, 0x18, 0x31, 0xcf, 0x72, 0x99, 0xf7, - 0x3d, 0x12, 0x77, 0x15, 0xcb, 0x26, 0xe0, 0x2b, 0xe0, 0x2b, 0x4a, 0xe6, 0x2b, 0xc6, 0xcc, 0xe3, - 0xf5, 0x3d, 0x09, 0x0f, 0x21, 0x50, 0xa6, 0x29, 0x29, 0xdd, 0x58, 0xb2, 0xd2, 0xa5, 0x1a, 0x4a, - 0x97, 0x74, 0x0d, 0xed, 0xde, 0xee, 0xee, 0xf6, 0x2e, 0xca, 0x97, 0x94, 0xc5, 0xdd, 0x82, 0x97, - 0x2f, 0x2d, 0x99, 0xc3, 0xad, 0xe7, 0x7e, 0xdc, 0x5a, 0xc1, 0x45, 0x5b, 0xb3, 0x94, 0x55, 0x15, - 0x0d, 0x9d, 0xa8, 0x20, 0x88, 0x70, 0x9a, 0x3e, 0xb7, 0x9e, 0x3e, 0xa6, 0x39, 0xb5, 0x6e, 0x20, - 0xb5, 0x46, 0x6a, 0xbd, 0x4c, 0xad, 0xa3, 0x80, 0xc6, 0xe5, 0x54, 0x12, 0xb9, 0xf5, 0xb4, 0x09, - 0x00, 0x66, 0x00, 0xe6, 0x12, 0x02, 0xe6, 0xed, 0x86, 0x04, 0x60, 0xde, 0x07, 0x60, 0x06, 0x60, - 0x2e, 0x28, 0x60, 0xde, 0x69, 0x1c, 0xee, 0x1c, 0xee, 0xed, 0x37, 0x0e, 0x81, 0x9a, 0x73, 0x61, - 0xab, 0xc0, 0x6b, 0x23, 0xf4, 0x22, 0xf4, 0xbe, 0x34, 0xdf, 0xe0, 0xb5, 0x97, 0xdf, 0x32, 0xa2, - 0xa3, 0x1b, 0x2a, 0x21, 0x59, 0x35, 0x7b, 0x1e, 0x5e, 0x02, 0x5e, 0xa2, 0x64, 0x5e, 0xe2, 0x86, - 0x44, 0x74, 0x49, 0x05, 0x59, 0x92, 0xf2, 0x97, 0x22, 0x68, 0xbd, 0xbb, 0xe0, 0xa6, 0x6c, 0x8b, - 0x0d, 0x3e, 0xae, 0x70, 0x51, 0x4f, 0x7e, 0x31, 0xfb, 0x73, 0x5c, 0xdd, 0xa7, 0x75, 0x54, 0x13, - 0x1d, 0xf0, 0x7a, 0x2d, 0x09, 0x48, 0x7c, 0x96, 0xeb, 0x35, 0xb8, 0x2b, 0xdf, 0x48, 0xa2, 0x83, - 0x62, 0x19, 0x3b, 0x62, 0x6c, 0x30, 0xc2, 0x1d, 0xc3, 0x1d, 0xbf, 0xca, 0x97, 0x60, 0x83, 0x11, - 0x7c, 0x49, 0x29, 0xf9, 0x12, 0x6c, 0x30, 0xaa, 0x8d, 0xbb, 0x25, 0xda, 0x60, 0x54, 0xab, 0x90, - 0x90, 0x64, 0x7f, 0xf1, 0x07, 0xe3, 0xf6, 0x2d, 0x75, 0xac, 0x3b, 0x97, 0x78, 0x02, 0xfb, 0x8c, - 0x8f, 0x1e, 0x2f, 0x47, 0x29, 0x6f, 0x8a, 0xae, 0x54, 0x4a, 0xb5, 0xe1, 0x18, 0x77, 0xdc, 0x94, - 0x1d, 0xc7, 0x94, 0x55, 0xe7, 0x6b, 0x13, 0x9d, 0xaa, 0xfa, 0x5c, 0x70, 0xe9, 0x16, 0x06, 0x3b, - 0xa7, 0x5c, 0xd2, 0x9b, 0x03, 0x9e, 0xd3, 0x2d, 0xf9, 0x6c, 0xd0, 0x73, 0x5a, 0x53, 0x58, 0x3c, - 0x48, 0x6c, 0x9b, 0x46, 0x51, 0x3a, 0x4f, 0xfe, 0x32, 0x6d, 0xba, 0xd2, 0x18, 0x6e, 0x51, 0x97, - 0x30, 0x22, 0x55, 0xc6, 0xa4, 0xdc, 0xa8, 0x94, 0x1b, 0x97, 0x5a, 0x23, 0x93, 0x84, 0xa7, 0xb9, - 0xdf, 0xa1, 0x3e, 0xe9, 0xb5, 0xc5, 0x1c, 0x05, 0xf7, 0xa7, 0xef, 0xe1, 0xbe, 0x73, 0x2d, 0x09, - 0xd9, 0x5a, 0x62, 0x56, 0xc7, 0x7d, 0xe7, 0x79, 0x4f, 0xc1, 0x4e, 0xed, 0x70, 0x07, 0xf7, 0x9b, - 0xcb, 0xa5, 0xce, 0xe2, 0xef, 0x13, 0x58, 0x65, 0xcb, 0xb3, 0xdf, 0xd6, 0x48, 0xe4, 0xda, 0xbd, - 0x35, 0xbf, 0xf9, 0xa4, 0x3d, 0x60, 0x0f, 0x60, 0x0f, 0x60, 0x0f, 0x11, 0xec, 0x31, 0x31, 0x1f, - 0xd1, 0x8a, 0x87, 0xb5, 0x84, 0x57, 0xc2, 0x29, 0x0b, 0x56, 0x40, 0x64, 0xeb, 0xc5, 0x3c, 0xc2, - 0xd9, 0x1d, 0x55, 0x94, 0x3b, 0xad, 0x36, 0x06, 0xff, 0x05, 0xff, 0x05, 0xff, 0x85, 0xdc, 0x09, - 0xb9, 0x13, 0x72, 0x27, 0xe4, 0x4e, 0xc8, 0x9d, 0x1e, 0x0d, 0x33, 0x0f, 0xc7, 0xde, 0xf7, 0xd8, - 0xc7, 0x47, 0xf2, 0xa8, 0x63, 0xb5, 0x31, 0xa0, 0x0e, 0xa0, 0x0e, 0xa0, 0x8e, 0x94, 0x2b, 0x66, - 0xec, 0xbd, 0x2d, 0x6c, 0x96, 0x28, 0x59, 0x3a, 0x94, 0x68, 0x63, 0xd6, 0x9d, 0xdc, 0x31, 0x87, - 0x3a, 0x28, 0xa6, 0x10, 0x92, 0x29, 0x86, 0x66, 0xea, 0x86, 0x4b, 0x0b, 0x54, 0xd3, 0x84, 0x17, - 0x74, 0x41, 0x37, 0x9d, 0xe0, 0x41, 0x21, 0x94, 0xd3, 0x02, 0xe9, 0xb2, 0x9a, 0x2a, 0x75, 0x10, - 0x2f, 0x93, 0xd9, 0x7a, 0x57, 0x8c, 0x56, 0xae, 0xde, 0xe5, 0xb8, 0xe6, 0x54, 0xfb, 0xe2, 0x30, - 0x76, 0x7d, 0xea, 0xdc, 0xb1, 0xc8, 0x3d, 0x62, 0xeb, 0xc0, 0x8d, 0x70, 0x4e, 0x43, 0x4f, 0x99, - 0x47, 0xae, 0xfe, 0xf7, 0x97, 0x9d, 0xda, 0xe1, 0xd7, 0x9a, 0xb5, 0x73, 0xf5, 0xef, 0x4e, 0xed, - 0x6b, 0xcd, 0x3a, 0xb8, 0xfa, 0x5a, 0xb3, 0x0e, 0xaf, 0xfe, 0xfd, 0x5a, 0xb7, 0xb6, 0xa7, 0x3f, - 0xfe, 0xb3, 0xfd, 0x30, 0xf9, 0xd3, 0xe1, 0xec, 0x4f, 0xf5, 0xf7, 0x8d, 0xd9, 0x9f, 0x7f, 0xfd, - 0xf6, 0xed, 0xc3, 0xb7, 0x6f, 0x1f, 0x24, 0x1a, 0xf8, 0x4f, 0x35, 0xef, 0x25, 0x97, 0x75, 0xb6, - 0x23, 0x88, 0xbd, 0xa4, 0x4e, 0x88, 0xac, 0xc6, 0x4c, 0xe9, 0x43, 0x1e, 0xab, 0x5e, 0x5d, 0x5d, - 0x63, 0x52, 0x27, 0x47, 0x24, 0x52, 0x49, 0xad, 0xf5, 0x45, 0x82, 0x15, 0xae, 0x8b, 0xe7, 0x15, - 0x55, 0xba, 0xae, 0x56, 0x8e, 0xa6, 0x12, 0xd6, 0x49, 0x3f, 0x4a, 0x69, 0x4e, 0xe6, 0xa4, 0x13, - 0xdc, 0x59, 0x73, 0xd1, 0x69, 0x84, 0x77, 0xd6, 0x3c, 0xb1, 0x68, 0x55, 0x61, 0x03, 0x55, 0x85, - 0xb9, 0xa6, 0xd1, 0xa8, 0x2a, 0x4c, 0xba, 0x6a, 0x50, 0x55, 0x08, 0x8e, 0x0a, 0x1c, 0x55, 0xae, - 0x74, 0x0c, 0x76, 0xc6, 0xb2, 0xc9, 0xdd, 0xb1, 0x33, 0x56, 0x9c, 0x29, 0xc0, 0xce, 0x98, 0xc2, - 0x5c, 0x11, 0x55, 0x85, 0xc0, 0x1e, 0xc0, 0x1e, 0xa8, 0x2a, 0x44, 0x55, 0xe1, 0x9b, 0xdf, 0x88, - 0xaa, 0x42, 0xf8, 0x2f, 0xf8, 0x2f, 0xe4, 0x4e, 0xc8, 0x9d, 0x90, 0x3b, 0x21, 0x77, 0x42, 0xee, - 0x84, 0xaa, 0x42, 0xa0, 0x0e, 0xa0, 0x8e, 0xcd, 0x42, 0x1d, 0xa8, 0x2a, 0xd4, 0x02, 0xc5, 0x14, - 0x42, 0x32, 0xc5, 0xd0, 0x4c, 0xdd, 0x70, 0x69, 0x81, 0x6a, 0x9a, 0xf0, 0x82, 0x2e, 0xe8, 0xa6, - 0x13, 0x3c, 0x28, 0x84, 0x72, 0x5a, 0x20, 0x5d, 0x56, 0x53, 0x85, 0xaa, 0xc2, 0xec, 0x20, 0xa0, - 0xa2, 0x35, 0x87, 0xaa, 0x42, 0x91, 0x06, 0x51, 0x55, 0x98, 0x69, 0xb6, 0x83, 0xaa, 0xc2, 0x67, - 0x1b, 0x43, 0x55, 0xe1, 0x33, 0xcf, 0xeb, 0xa8, 0x2a, 0x4c, 0xa1, 0xa6, 0x99, 0x7e, 0x90, 0x4a, - 0x25, 0x3b, 0x2a, 0x20, 0xe3, 0x39, 0x7d, 0x3d, 0x0f, 0xc7, 0x36, 0xf7, 0x66, 0x91, 0xa4, 0x3d, - 0x6f, 0xfc, 0xba, 0xb9, 0x6c, 0xfc, 0xba, 0x37, 0x6b, 0xfc, 0x4b, 0xe2, 0xf4, 0x2f, 0x81, 0xb4, - 0xe9, 0x3b, 0x89, 0x41, 0xaf, 0x36, 0xc7, 0xc3, 0x89, 0x29, 0xc7, 0xb7, 0xd5, 0xbd, 0x1d, 0x59, - 0x52, 0x4a, 0xa2, 0x26, 0xd2, 0xef, 0x77, 0xc9, 0xf0, 0xe3, 0xca, 0x04, 0x24, 0x55, 0x4e, 0x3d, - 0xa1, 0x91, 0x1d, 0xb2, 0x60, 0xb6, 0x4c, 0xaa, 0x4d, 0xc7, 0x89, 0x2a, 0x5f, 0xce, 0x9a, 0x17, - 0x95, 0x88, 0x72, 0xce, 0xbc, 0x61, 0x54, 0xe1, 0x7e, 0x85, 0x54, 0xce, 0x9a, 0x9f, 0x2a, 0x8b, - 0xd7, 0x41, 0x95, 0x35, 0x53, 0x56, 0x65, 0xb3, 0x55, 0x59, 0xc5, 0xe4, 0x84, 0xd7, 0xe6, 0x5b, - 0xd4, 0x1f, 0x3d, 0x67, 0x24, 0x2d, 0xcf, 0x76, 0xfd, 0x88, 0x79, 0xc3, 0x8a, 0xed, 0x7b, 0x9c, - 0x30, 0x8f, 0x86, 0x95, 0x81, 0x1f, 0x4e, 0xed, 0x66, 0x59, 0x16, 0x12, 0x05, 0xd4, 0x66, 0x03, - 0x66, 0x7f, 0xf3, 0x1c, 0xc2, 0x49, 0xc5, 0xf7, 0x2a, 0x2d, 0x7e, 0x4b, 0x43, 0x8f, 0xf2, 0xe5, - 0x3f, 0x8a, 0x3e, 0x54, 0x2a, 0xfd, 0x5b, 0x1a, 0xd1, 0x0a, 0x09, 0x69, 0xdc, 0x48, 0xc4, 0x89, - 0xe7, 0x90, 0xd0, 0xf9, 0xe6, 0x9d, 0x35, 0xde, 0x57, 0x16, 0x9f, 0x1d, 0xf1, 0x7b, 0x97, 0xc6, - 0x6f, 0x88, 0x3e, 0x40, 0x62, 0x56, 0x27, 0x1b, 0x8a, 0x62, 0x70, 0x2d, 0xa8, 0x45, 0x32, 0x00, - 0x5f, 0xbd, 0x15, 0x80, 0xd3, 0xa1, 0x1d, 0x35, 0x28, 0xa7, 0x9a, 0xe8, 0xba, 0xe5, 0x37, 0xf1, - 0xcc, 0xeb, 0x73, 0xf9, 0xf2, 0xb8, 0xbc, 0xe2, 0x73, 0x93, 0x8a, 0x59, 0xa7, 0x13, 0xaf, 0x4e, - 0xe8, 0x49, 0x12, 0x7b, 0x8e, 0x34, 0x9e, 0x62, 0xd5, 0x33, 0xb0, 0x24, 0x57, 0x29, 0xa5, 0xf5, - 0x03, 0xc2, 0x76, 0x2f, 0x6c, 0xe7, 0x4f, 0xed, 0x9a, 0x0d, 0xaa, 0x9a, 0x61, 0x6a, 0xd2, 0xe8, - 0x5b, 0x75, 0x1e, 0x45, 0xbc, 0x94, 0x78, 0x75, 0xf5, 0xe1, 0x74, 0x50, 0xb1, 0x56, 0x50, 0xa8, - 0xc8, 0x06, 0x1b, 0x09, 0x14, 0x93, 0x2c, 0x48, 0x3d, 0x30, 0x31, 0xf5, 0x66, 0xd9, 0xca, 0x71, - 0xb9, 0x90, 0x79, 0xa9, 0xae, 0x77, 0x5f, 0xf0, 0x8b, 0x19, 0x5e, 0x92, 0x41, 0x3d, 0x72, 0xe3, - 0xa6, 0xb8, 0xdb, 0x7c, 0xd1, 0xbd, 0xf9, 0x83, 0x89, 0xd3, 0xbb, 0x01, 0x19, 0xbb, 0x7c, 0xb6, - 0xed, 0x4e, 0x61, 0x8e, 0x30, 0xc7, 0x6c, 0xcd, 0xf1, 0xc6, 0xf7, 0x5d, 0x9a, 0x2e, 0xcf, 0x9e, - 0xdb, 0x63, 0x3d, 0x43, 0x7b, 0x74, 0x7d, 0x3f, 0xb8, 0x21, 0xf6, 0xf7, 0x74, 0x67, 0x03, 0x96, - 0xb7, 0x1d, 0x3f, 0x7a, 0x3c, 0xbd, 0x6d, 0x0e, 0x88, 0x1b, 0xc1, 0x38, 0x61, 0x9c, 0x30, 0xce, - 0xe7, 0xde, 0x39, 0xe2, 0xe3, 0xf4, 0x26, 0x39, 0x79, 0x08, 0x06, 0x05, 0x83, 0xca, 0xd4, 0xa0, - 0x52, 0x5f, 0x32, 0x29, 0x50, 0x6b, 0x24, 0x58, 0x53, 0x24, 0x76, 0xdf, 0xae, 0x04, 0x8b, 0x26, - 0x57, 0xa2, 0x29, 0x79, 0x69, 0xa4, 0x8a, 0x6a, 0x91, 0x07, 0xb1, 0xdb, 0x85, 0x73, 0x1f, 0x32, - 0x89, 0xcb, 0x20, 0x95, 0x0c, 0x9b, 0x26, 0x9e, 0xf1, 0x2a, 0xc3, 0x88, 0x33, 0xa3, 0xeb, 0x52, - 0x86, 0x9c, 0xf8, 0x29, 0xc4, 0x1c, 0xc4, 0x1c, 0x10, 0x1e, 0x6b, 0xef, 0xe4, 0x01, 0x13, 0x60, - 0x3b, 0xe2, 0xa7, 0xd2, 0xa7, 0x53, 0xb3, 0x3d, 0x92, 0xf8, 0x50, 0x69, 0xf4, 0xb1, 0xdf, 0x6d, - 0x9f, 0x5c, 0xd7, 0xfe, 0x3c, 0xa8, 0xd7, 0x6a, 0x25, 0xb1, 0x4e, 0xec, 0x5c, 0x1b, 0x65, 0xa1, - 0xcc, 0xa1, 0x1e, 0x67, 0xfc, 0x3e, 0xa4, 0x03, 0x11, 0x33, 0x4d, 0x11, 0xcb, 0xab, 0xed, 0xd9, - 0xab, 0x8e, 0x48, 0x24, 0x21, 0x39, 0x16, 0x5b, 0x4c, 0xff, 0xaf, 0x6e, 0xab, 0x97, 0x76, 0xc2, - 0x63, 0x0c, 0x12, 0x09, 0x95, 0x57, 0x4a, 0x9e, 0x2a, 0x9a, 0x5b, 0xf9, 0x41, 0xf3, 0xa0, 0x9a, - 0x05, 0xd4, 0x53, 0xf1, 0xb9, 0xcd, 0x8b, 0xbf, 0x8c, 0xf9, 0xd6, 0xda, 0x9f, 0x87, 0x13, 0x07, - 0x6a, 0xce, 0xe7, 0x1e, 0x98, 0xf5, 0xb9, 0x87, 0x0d, 0xa1, 0xcf, 0x4d, 0xf5, 0xc4, 0x55, 0xf6, - 0x9b, 0xfa, 0x49, 0xa0, 0x41, 0x1a, 0xc7, 0xba, 0x84, 0x06, 0xc9, 0x05, 0x23, 0x00, 0xb6, 0x01, - 0xb6, 0x37, 0x35, 0x94, 0x2f, 0xcb, 0xd1, 0x04, 0x14, 0x56, 0x72, 0x0c, 0xe7, 0x8c, 0x78, 0xc4, - 0x92, 0xfa, 0x78, 0x15, 0x9d, 0x90, 0xeb, 0xcc, 0x7a, 0xa7, 0x22, 0xc7, 0x1b, 0x4b, 0x9c, 0x57, - 0x7d, 0x9f, 0x77, 0x07, 0x08, 0x1f, 0x9d, 0x8e, 0x3d, 0x66, 0x72, 0x17, 0x22, 0x16, 0xf4, 0x87, - 0x26, 0x77, 0xc0, 0xf1, 0xed, 0xa8, 0x33, 0x70, 0x46, 0xe4, 0x73, 0x10, 0xf1, 0x90, 0x92, 0x91, - 0xc9, 0x9d, 0xb9, 0xf5, 0x47, 0x34, 0xf0, 0x88, 0xd1, 0xf3, 0x11, 0xd5, 0x4f, 0x4f, 0xce, 0x4c, - 0xee, 0x01, 0x9d, 0x95, 0x25, 0x1f, 0x47, 0x23, 0x62, 0x3b, 0x26, 0xf7, 0xe4, 0xce, 0x67, 0x36, - 0x6d, 0x9d, 0x9b, 0xdc, 0x85, 0x21, 0x0f, 0xcc, 0xb6, 0x86, 0xda, 0xd1, 0xd8, 0x73, 0x5c, 0x6a, - 0x74, 0x98, 0x73, 0xc7, 0xad, 0xb3, 0xae, 0xc9, 0x3d, 0x60, 0x91, 0x7f, 0x70, 0x50, 0x6b, 0xec, - 0xf4, 0xfd, 0xef, 0xd4, 0x3b, 0x1a, 0x47, 0x86, 0x83, 0x8e, 0xde, 0xf8, 0x66, 0x51, 0x39, 0x6d, - 0x78, 0x57, 0x6e, 0x7c, 0xcf, 0x68, 0x17, 0x1b, 0x90, 0x90, 0x98, 0x0e, 0x9f, 0x8e, 0xc9, 0x8d, - 0x4b, 0x4f, 0xfc, 0x1f, 0x9e, 0xf9, 0x00, 0x2a, 0x8e, 0x78, 0x9d, 0x3b, 0x1a, 0x36, 0xb9, 0xd1, - 0xfd, 0x20, 0x4e, 0xe4, 0x36, 0x0c, 0x37, 0xed, 0xf6, 0x88, 0x18, 0xbf, 0x94, 0x4e, 0xda, 0x27, - 0x26, 0xf7, 0x61, 0x40, 0x22, 0x1e, 0x9f, 0xb2, 0x3b, 0xfd, 0xd3, 0xe4, 0x6e, 0xf8, 0xdc, 0xeb, - 0x38, 0x63, 0xb3, 0x7b, 0x70, 0x4b, 0x43, 0xe3, 0xad, 0xe1, 0xf4, 0xcf, 0x8e, 0xd1, 0x28, 0x30, - 0x28, 0x41, 0x64, 0x08, 0x27, 0xa1, 0xc1, 0xe8, 0x8c, 0xee, 0xf0, 0xf0, 0xa0, 0x6e, 0x7c, 0x6c, - 0x0e, 0x5c, 0xb3, 0xb3, 0x88, 0x20, 0x64, 0x23, 0x12, 0xde, 0xb7, 0x7b, 0x27, 0x17, 0x26, 0x77, - 0x63, 0x14, 0xb8, 0x51, 0x7f, 0xec, 0x79, 0xd4, 0x6c, 0x93, 0x08, 0xb7, 0x6b, 0xdb, 0xed, 0x93, - 0xbe, 0xd1, 0x44, 0xb2, 0xef, 0x51, 0xde, 0x25, 0xfc, 0xd6, 0x68, 0xbc, 0x64, 0xb3, 0xe0, 0x8c, - 0x79, 0xdf, 0x8d, 0x0e, 0x10, 0x51, 0x63, 0xdb, 0xe8, 0xd4, 0xe1, 0x6e, 0xf4, 0x83, 0x84, 0xf4, - 0x82, 0xd9, 0x7d, 0xc3, 0x93, 0x51, 0x97, 0x04, 0x03, 0x93, 0xbf, 0xff, 0x86, 0x71, 0xa3, 0x63, - 0x9c, 0xed, 0x0f, 0x06, 0x94, 0x1a, 0x0e, 0xf6, 0x98, 0x7f, 0xde, 0x3c, 0x36, 0x3a, 0xb8, 0x05, - 0xbe, 0x67, 0x34, 0x43, 0x76, 0x77, 0x73, 0x69, 0xdb, 0x65, 0xd8, 0x5d, 0xe4, 0x61, 0xad, 0x76, - 0x60, 0x34, 0xda, 0xbb, 0x33, 0x1a, 0xe6, 0xf9, 0x01, 0x67, 0x36, 0x71, 0xfb, 0x21, 0xf1, 0xa2, - 0xc0, 0x0f, 0xb9, 0xc9, 0x7d, 0xf9, 0xd9, 0xd8, 0x1d, 0xb9, 0x81, 0xe9, 0x79, 0xa8, 0xd1, 0x38, - 0x29, 0x1a, 0x39, 0xd1, 0xc9, 0x4f, 0x66, 0x76, 0x84, 0x1e, 0x05, 0x7e, 0xc4, 0x38, 0x35, 0x1d, - 0x74, 0x07, 0x81, 0xd1, 0xb6, 0x40, 0xcd, 0x0e, 0xd1, 0xf6, 0x8d, 0xfb, 0x85, 0xda, 0x9c, 0xf4, - 0x38, 0x09, 0xcd, 0x26, 0x28, 0x4f, 0xfd, 0xf0, 0x07, 0x09, 0x8d, 0xde, 0x11, 0xb5, 0x69, 0x64, - 0xfa, 0x5e, 0x03, 0x1f, 0x9b, 0x4f, 0x73, 0x1f, 0xbb, 0xe4, 0x87, 0xd1, 0x2c, 0xeb, 0xc0, 0x25, - 0x1e, 0x3d, 0xa8, 0x35, 0x76, 0x8d, 0x06, 0x19, 0xfb, 0xb5, 0x6d, 0xc2, 0x1b, 0xa3, 0x9b, 0x12, - 0xe0, 0xd6, 0xe3, 0x5b, 0xe2, 0x79, 0xd4, 0xfd, 0x14, 0xfa, 0x63, 0xa3, 0x83, 0xdd, 0xed, 0x7d, - 0x40, 0x43, 0x7b, 0xda, 0x19, 0xc3, 0xe9, 0xa5, 0x1b, 0xb3, 0xb7, 0x20, 0xfc, 0xe0, 0x7c, 0xec, - 0x72, 0x16, 0xb8, 0xf4, 0xa7, 0x1f, 0x96, 0xa2, 0xec, 0xe4, 0x34, 0x24, 0x23, 0x7a, 0x49, 0x5d, - 0x72, 0x6f, 0x7e, 0xdd, 0xa8, 0x67, 0x93, 0xa0, 0x14, 0xa5, 0x4d, 0x73, 0xee, 0xe6, 0xd8, 0x7c, - 0x9b, 0xa7, 0x81, 0x1b, 0x46, 0xa6, 0x1b, 0xfd, 0x89, 0x6f, 0x47, 0x7f, 0xb0, 0x90, 0xba, 0x34, - 0x8a, 0xca, 0xc0, 0xab, 0x2d, 0xaa, 0x6c, 0x8c, 0xb6, 0x16, 0xb3, 0xcb, 0x22, 0x82, 0xd0, 0xe7, - 0xd4, 0xf7, 0xea, 0xb5, 0xf3, 0x1b, 0xc6, 0x4b, 0x80, 0xde, 0x1d, 0xd7, 0x36, 0x3a, 0x09, 0x24, - 0xc1, 0x0f, 0x12, 0x9c, 0xf8, 0xbc, 0x5e, 0x3f, 0x8a, 0x8c, 0x76, 0x58, 0x11, 0x27, 0xe1, 0x19, - 0x31, 0x9a, 0x1e, 0x21, 0xa1, 0xed, 0x51, 0x6e, 0x78, 0x35, 0xe9, 0x99, 0x3f, 0x9c, 0x24, 0x21, - 0x65, 0x38, 0x58, 0xb4, 0x6d, 0xba, 0x8f, 0x72, 0x99, 0x47, 0x87, 0xa6, 0xa7, 0x81, 0x71, 0xc1, - 0xca, 0xc4, 0xd7, 0xde, 0x52, 0xe2, 0x94, 0x00, 0x1a, 0x8e, 0x88, 0xdd, 0xa3, 0xf6, 0x67, 0xcf, - 0xf6, 0x3d, 0x1e, 0xfa, 0xae, 0x4b, 0x9d, 0xf6, 0xa9, 0xd1, 0x81, 0x70, 0xf0, 0x65, 0xc0, 0xe2, - 0xa3, 0xe9, 0x26, 0x2f, 0x32, 0xc3, 0x8b, 0x35, 0x03, 0xdf, 0xab, 0xef, 0x1a, 0xcd, 0xc0, 0xdd, - 0xb1, 0x90, 0x8f, 0x89, 0x6b, 0xf6, 0x21, 0xe7, 0x9f, 0x07, 0x7b, 0x67, 0x24, 0x88, 0x4a, 0x70, - 0x16, 0xf5, 0xf4, 0x93, 0xd1, 0x07, 0x2a, 0xa8, 0xd1, 0x95, 0xcb, 0xae, 0x6f, 0x13, 0xb7, 0x4f, - 0x5c, 0xa3, 0xb7, 0x5a, 0xef, 0x4c, 0x3f, 0x1a, 0xe5, 0xdc, 0xdd, 0x34, 0x23, 0xd6, 0x36, 0x3a, - 0xa5, 0x18, 0x0e, 0x02, 0xf3, 0x4f, 0xb3, 0x7c, 0x3a, 0xe9, 0xf4, 0x4c, 0xe7, 0xd2, 0xba, 0x3e, - 0xf3, 0x78, 0xdf, 0x8f, 0xff, 0xa7, 0x47, 0x43, 0x46, 0x0c, 0x87, 0x1b, 0x66, 0x73, 0x05, 0xd1, - 0x7e, 0x8f, 0x0d, 0x8d, 0x2f, 0x20, 0x1f, 0xd8, 0xf5, 0x9d, 0x83, 0xed, 0x32, 0xd8, 0x77, 0xab, - 0x79, 0xd1, 0x34, 0xb9, 0x1f, 0x3f, 0x7e, 0x10, 0xaf, 0xdb, 0x35, 0xdd, 0x47, 0x1d, 0x7b, 0xae, - 0xd1, 0x66, 0xcd, 0x28, 0xa5, 0x07, 0xb5, 0x46, 0x7d, 0x77, 0xc7, 0x70, 0x15, 0x8f, 0x4f, 0x81, - 0xef, 0x75, 0xcc, 0x96, 0xdc, 0x9a, 0x9d, 0x43, 0xed, 0x19, 0x0e, 0x00, 0xfb, 0x8e, 0xd9, 0x32, - 0x0b, 0xdb, 0x46, 0x73, 0x02, 0xe3, 0xc8, 0xe8, 0xc2, 0x89, 0x41, 0x78, 0xe2, 0xda, 0xac, 0xe5, - 0x39, 0x5d, 0x6e, 0xf6, 0x22, 0xda, 0x37, 0x1a, 0x26, 0x05, 0x46, 0xef, 0xf7, 0x12, 0x9b, 0x53, - 0x97, 0x45, 0xe7, 0x94, 0x93, 0xb3, 0x4e, 0xa7, 0x6b, 0x36, 0x93, 0x3f, 0xe0, 0x3f, 0x48, 0x48, - 0xcf, 0x66, 0xd7, 0x8e, 0x19, 0xae, 0xc7, 0x68, 0xfc, 0x49, 0xe6, 0x4b, 0xb3, 0x4f, 0x32, 0x4f, - 0xf7, 0xae, 0xff, 0xe0, 0xc1, 0x97, 0x29, 0x75, 0x7c, 0x49, 0x1c, 0xe6, 0x1b, 0x4d, 0x5a, 0xda, - 0xbe, 0xe1, 0xfb, 0xbf, 0x93, 0x2c, 0x62, 0x36, 0x1b, 0x46, 0x6f, 0xd1, 0xf9, 0x0e, 0x1d, 0x99, - 0xbd, 0x27, 0x67, 0x0d, 0x23, 0xcf, 0x6c, 0xec, 0x34, 0x2f, 0xd0, 0xec, 0xd1, 0xf0, 0x8e, 0xd9, - 0xc6, 0x0b, 0x33, 0x9a, 0x9f, 0xd2, 0x45, 0x86, 0xd7, 0x3a, 0xcd, 0xc4, 0x25, 0x77, 0x8f, 0x2f, - 0x4f, 0xbb, 0x6d, 0x8f, 0x9b, 0x4d, 0xeb, 0x93, 0x88, 0x97, 0x81, 0xaa, 0x31, 0x7a, 0x83, 0x68, - 0x64, 0x7a, 0xd5, 0xc0, 0x0d, 0x89, 0x98, 0x6d, 0xba, 0xb4, 0x90, 0xd9, 0x40, 0x7c, 0xe4, 0xdb, - 0xe4, 0x0b, 0x0d, 0x23, 0xe6, 0x7b, 0x75, 0xe3, 0xab, 0xb4, 0xbe, 0x18, 0x9d, 0x4f, 0x90, 0xe8, - 0xde, 0x33, 0x3a, 0xc0, 0xdd, 0x84, 0xcc, 0x19, 0x1a, 0x0d, 0x94, 0x6e, 0x4d, 0xaf, 0x19, 0xa0, - 0x91, 0x6d, 0xb8, 0x8a, 0x0a, 0x1b, 0x32, 0x4e, 0xdc, 0x3f, 0x42, 0x12, 0x04, 0x34, 0x2c, 0x51, - 0xd9, 0x65, 0x60, 0xb8, 0xd0, 0x30, 0x31, 0x5c, 0x67, 0x78, 0x9a, 0x02, 0xcd, 0xaa, 0xc3, 0x4d, - 0xdf, 0x7a, 0x1f, 0xbb, 0xdc, 0x6c, 0x39, 0xf1, 0xf8, 0x8a, 0x22, 0x97, 0x92, 0x3b, 0x6a, 0x3a, - 0xdd, 0x74, 0xf4, 0x47, 0x33, 0x68, 0x9c, 0x07, 0xe6, 0x57, 0x0f, 0x98, 0x9d, 0x0a, 0x31, 0xff, - 0xa7, 0xd9, 0x0a, 0x00, 0x91, 0x6b, 0x76, 0x22, 0x11, 0x46, 0xe1, 0x8d, 0xe9, 0x0a, 0xb1, 0x46, - 0xaf, 0x9f, 0xb0, 0x1c, 0x87, 0xb0, 0x7b, 0x36, 0xa7, 0xbb, 0xbb, 0x4e, 0xfd, 0x92, 0xf2, 0x8e, - 0x6f, 0xf4, 0x8a, 0xe2, 0x34, 0x1c, 0x75, 0x89, 0x53, 0x06, 0x9a, 0x6c, 0xef, 0x8f, 0xf3, 0xa6, - 0xd1, 0x24, 0xcd, 0xdf, 0xae, 0xe1, 0xdc, 0xb1, 0x37, 0x60, 0x1e, 0xbb, 0x21, 0x66, 0x5f, 0x82, - 0xc3, 0x5c, 0xc3, 0x0f, 0xc8, 0x4e, 0x93, 0x88, 0xee, 0xed, 0x7d, 0x34, 0xc9, 0x22, 0x3e, 0x9b, - 0x7d, 0xa5, 0xe3, 0x72, 0x8b, 0xeb, 0xbc, 0xdb, 0x36, 0x3a, 0x74, 0x0f, 0xca, 0x50, 0x4d, 0x4d, - 0x87, 0x63, 0x97, 0x84, 0xf5, 0x83, 0x46, 0xc3, 0xf0, 0x6b, 0x1d, 0x8d, 0xae, 0xe9, 0xf0, 0xc2, - 0x32, 0xa1, 0xa8, 0xc6, 0xe7, 0xc8, 0x70, 0x10, 0x15, 0x04, 0x53, 0xed, 0x27, 0x97, 0x79, 0xdf, - 0xcd, 0xbf, 0x21, 0x71, 0x4d, 0x6a, 0xe8, 0x72, 0xd0, 0x35, 0x5c, 0xe0, 0xf7, 0xd6, 0xb9, 0x35, - 0xdd, 0x67, 0xb1, 0x11, 0x2f, 0x01, 0x65, 0xde, 0xf5, 0x7f, 0xd0, 0xd0, 0x65, 0x1e, 0x35, 0x7b, - 0x33, 0xb5, 0xf7, 0x83, 0x71, 0xfb, 0xd6, 0x70, 0x11, 0x12, 0xe3, 0x75, 0xec, 0xa3, 0x73, 0x62, - 0x9f, 0x91, 0x7b, 0xb3, 0xa5, 0xaa, 0x66, 0x05, 0x37, 0x0d, 0xb7, 0x14, 0x75, 0x43, 0xdb, 0xe6, - 0xdf, 0x33, 0xfd, 0xb3, 0x51, 0xdf, 0x36, 0xfd, 0x46, 0x2f, 0xa3, 0xc1, 0x94, 0xe3, 0xc5, 0xfa, - 0x73, 0x67, 0xbe, 0x1f, 0xd4, 0x4b, 0x20, 0xd6, 0xd1, 0x0e, 0x9a, 0x8e, 0x13, 0xd2, 0xc8, 0xf4, - 0x7b, 0x9a, 0x0d, 0x57, 0xe7, 0x7f, 0xaa, 0xd5, 0x58, 0x8e, 0x2b, 0x82, 0x07, 0xec, 0x26, 0xa4, - 0x25, 0x28, 0x3c, 0x98, 0xde, 0x4b, 0x53, 0x8e, 0x39, 0x71, 0x1c, 0xef, 0x4f, 0xb3, 0xb7, 0xf9, - 0xd8, 0xcd, 0x68, 0x7b, 0xbf, 0x16, 0x90, 0x70, 0xb2, 0xb2, 0x0c, 0x77, 0x5b, 0x25, 0x38, 0x69, - 0xb1, 0x46, 0x98, 0x9c, 0x98, 0x4e, 0x98, 0xcc, 0xb6, 0x6c, 0xb6, 0x89, 0x73, 0x46, 0x8c, 0xd6, - 0xb2, 0xba, 0x65, 0x01, 0x0d, 0x5d, 0xe2, 0x99, 0x4d, 0x87, 0xda, 0x9e, 0xf9, 0x57, 0x2c, 0xce, - 0xec, 0xfc, 0x82, 0x95, 0x21, 0x8d, 0xda, 0x3b, 0x37, 0xdb, 0xef, 0x8e, 0xa8, 0xc3, 0xc8, 0x39, - 0x61, 0x6e, 0xe7, 0x8e, 0x86, 0xed, 0xa0, 0x4c, 0xb8, 0xf1, 0x9c, 0xd8, 0xae, 0xe9, 0x9c, 0xc3, - 0xdd, 0xf6, 0x9e, 0xd1, 0xca, 0x6f, 0xdb, 0x2c, 0xb8, 0x33, 0x7c, 0x97, 0xd6, 0x71, 0xa3, 0x1f, - 0x86, 0x07, 0xbe, 0x80, 0xb5, 0x3d, 0x4e, 0xc3, 0x01, 0xb1, 0x8d, 0xaf, 0x8f, 0x34, 0xfc, 0x1a, - 0xfd, 0x05, 0x40, 0x3c, 0x3f, 0x1e, 0xf1, 0x92, 0x64, 0xb6, 0xdc, 0xf0, 0x83, 0x94, 0xcb, 0x39, - 0x29, 0x41, 0xc0, 0x88, 0x6e, 0x0d, 0x27, 0x15, 0xe7, 0xc7, 0x5a, 0x4f, 0xd9, 0x8d, 0xd9, 0x33, - 0x31, 0x0a, 0xcc, 0xc6, 0xb7, 0x86, 0xaf, 0x23, 0xf3, 0x2f, 0xf7, 0xb4, 0x59, 0x64, 0xfb, 0xed, - 0xde, 0x99, 0xe9, 0x00, 0x8a, 0xd4, 0x1b, 0xe7, 0x41, 0x09, 0x36, 0x62, 0x43, 0x4a, 0xec, 0xdb, - 0x93, 0xde, 0x99, 0xe1, 0x97, 0xb7, 0x39, 0x66, 0xdf, 0x29, 0x62, 0xf6, 0xe5, 0x60, 0xa3, 0xfb, - 0x90, 0x19, 0x2e, 0x8a, 0xe3, 0x8e, 0xcc, 0xbf, 0x7f, 0xc3, 0x6c, 0x80, 0xe4, 0x78, 0x86, 0xeb, - 0xfc, 0x1e, 0xec, 0xef, 0x1b, 0x7e, 0xbc, 0x6a, 0x5a, 0xd5, 0xd2, 0x77, 0x46, 0xa4, 0x04, 0x05, - 0xe8, 0xe6, 0x6f, 0x47, 0x96, 0xa1, 0xbc, 0xe8, 0xe7, 0x8d, 0xff, 0x73, 0x4e, 0x5d, 0x1a, 0x7e, - 0xb4, 0x7b, 0xd7, 0xf0, 0x9b, 0xd7, 0xec, 0xef, 0x7d, 0xbf, 0xc7, 0x0d, 0x97, 0x74, 0x0c, 0x7c, - 0x6f, 0xcf, 0xec, 0x42, 0x5a, 0x1e, 0x12, 0x2f, 0x0a, 0x7e, 0x33, 0x9c, 0x5e, 0xba, 0x33, 0x3c, - 0x91, 0x8e, 0x58, 0xd0, 0x63, 0x46, 0x6f, 0xfd, 0x46, 0x23, 0x27, 0x6a, 0xdb, 0x66, 0x9f, 0x87, - 0x9e, 0xd3, 0x62, 0x27, 0xdc, 0x6c, 0x7a, 0x92, 0xfd, 0xec, 0xfb, 0xa7, 0xfe, 0x38, 0x34, 0xfd, - 0xe2, 0x5d, 0xc3, 0x8d, 0xfa, 0xf1, 0xdd, 0xfa, 0x46, 0xab, 0x44, 0x45, 0x46, 0x47, 0x07, 0x72, - 0xc7, 0x6c, 0xd6, 0x99, 0xce, 0x86, 0xf1, 0x97, 0x39, 0xdf, 0xfa, 0x11, 0x37, 0xfc, 0x88, 0xfa, - 0x5d, 0xbd, 0x6e, 0x3a, 0x39, 0x10, 0x99, 0x7d, 0x8a, 0x78, 0x50, 0xdf, 0x3b, 0x1f, 0x84, 0xe5, - 0x38, 0x9c, 0xd7, 0x19, 0x38, 0xa3, 0x72, 0x6c, 0xf2, 0x0e, 0xf7, 0x6b, 0xdb, 0x84, 0xef, 0xed, - 0x7c, 0x2f, 0xd5, 0x79, 0x49, 0xb3, 0x4f, 0xbf, 0xec, 0xde, 0x8e, 0x3d, 0xfe, 0xc9, 0xf4, 0x0b, - 0x91, 0x03, 0x66, 0xfe, 0x9d, 0x7e, 0xad, 0xa3, 0x5e, 0x09, 0xee, 0x68, 0x2a, 0x89, 0x10, 0xc5, - 0xad, 0xe1, 0x84, 0xc1, 0x52, 0x48, 0xc3, 0xf8, 0xb2, 0x33, 0xd3, 0x4f, 0x24, 0x94, 0xe0, 0xba, - 0xa3, 0xc8, 0xb1, 0x59, 0x29, 0x62, 0xf6, 0x85, 0x33, 0x30, 0xba, 0x9a, 0xc3, 0xfc, 0x54, 0x9b, - 0xf0, 0x91, 0xf1, 0x97, 0xd2, 0x0c, 0x0f, 0x0f, 0xcd, 0xbe, 0x63, 0xf4, 0x6f, 0xb3, 0x51, 0x2b, - 0x09, 0x6d, 0x8f, 0xf2, 0xae, 0x3b, 0x36, 0x7b, 0x8f, 0x6b, 0xe0, 0x12, 0x2f, 0x3e, 0x17, 0x55, - 0x06, 0x39, 0xbe, 0xba, 0xd9, 0x68, 0xe9, 0xd4, 0x0f, 0x7f, 0x90, 0xd0, 0x68, 0xd6, 0x29, 0x30, - 0x1b, 0xb1, 0xde, 0x6e, 0x37, 0xb6, 0xbb, 0xa1, 0xff, 0xf3, 0xde, 0x6c, 0xa9, 0xb1, 0x9a, 0xf9, - 0xd7, 0xfb, 0x77, 0xc6, 0x66, 0xd7, 0x36, 0x0d, 0xba, 0x3f, 0xfa, 0xf7, 0x01, 0x2d, 0x95, 0xf4, - 0xec, 0xe9, 0x0f, 0xc7, 0x74, 0xe9, 0xd9, 0xb1, 0xe9, 0xd0, 0x35, 0x66, 0x69, 0x3a, 0x77, 0x34, - 0x8c, 0x67, 0xa6, 0x2c, 0xa2, 0x2b, 0x0d, 0xc3, 0xf9, 0xcb, 0xc0, 0xec, 0xa9, 0x58, 0x2c, 0x2a, - 0xb3, 0xcf, 0xcd, 0x7a, 0x86, 0x5f, 0xfe, 0x3a, 0xbd, 0x38, 0xf5, 0xc4, 0xe7, 0xf5, 0x7a, 0x37, - 0xf4, 0x07, 0xcc, 0xec, 0x45, 0xc5, 0xa2, 0xb1, 0xe1, 0xb3, 0x71, 0xe3, 0xd2, 0xe5, 0x9e, 0x97, - 0xf9, 0x8a, 0x94, 0xee, 0x36, 0x0b, 0x7e, 0x9a, 0x7e, 0x06, 0x67, 0xc8, 0x86, 0xe4, 0x86, 0xf1, - 0x38, 0x72, 0x18, 0x5e, 0xff, 0xbe, 0x42, 0x08, 0x1a, 0x5d, 0x2c, 0xe1, 0x36, 0x4c, 0x5f, 0x54, - 0xf3, 0x9a, 0xb4, 0xbe, 0xff, 0x9d, 0x7a, 0x97, 0xcc, 0x1b, 0x9a, 0x9d, 0xfe, 0x6d, 0x9b, 0x7e, - 0x36, 0x7e, 0x5e, 0x3d, 0xde, 0x6d, 0x74, 0x0d, 0xef, 0x0a, 0xa7, 0xbe, 0x77, 0x50, 0x3b, 0xbf, - 0x61, 0x66, 0x6b, 0x19, 0x47, 0x91, 0xd1, 0x5b, 0x2f, 0x7f, 0x37, 0x0e, 0xb7, 0xeb, 0xa6, 0x17, - 0x6a, 0x1a, 0x8d, 0xa5, 0x6c, 0xde, 0x1a, 0x8d, 0x8d, 0x4e, 0xbc, 0xbd, 0x01, 0x89, 0x4c, 0xa7, - 0x36, 0x3f, 0x11, 0x4e, 0xbf, 0x53, 0x1a, 0x18, 0xae, 0x47, 0x40, 0xec, 0x1e, 0xb5, 0x8f, 0x7d, - 0x8f, 0x87, 0xbe, 0xeb, 0x52, 0xa7, 0x7d, 0x6a, 0xb4, 0x69, 0x3b, 0x0e, 0x33, 0x7d, 0xef, 0xa5, - 0xbe, 0x7d, 0xb8, 0x63, 0x74, 0xe9, 0xf5, 0x30, 0x08, 0x7c, 0x97, 0xd9, 0xf7, 0xc4, 0xb6, 0xfd, - 0xb1, 0xc7, 0x0d, 0x47, 0x80, 0xcb, 0xba, 0x9b, 0x58, 0x2d, 0xc9, 0xf6, 0x3d, 0x8f, 0xda, 0xdc, - 0x6c, 0x09, 0x12, 0x3a, 0xec, 0xc7, 0x87, 0xa8, 0xe4, 0x72, 0x70, 0xa1, 0x27, 0xaf, 0xde, 0x65, - 0x30, 0x60, 0x62, 0x03, 0xf5, 0xa8, 0x5c, 0x7a, 0x5c, 0x35, 0xe0, 0x43, 0x09, 0x1f, 0x9d, 0x8e, - 0x45, 0xca, 0xf2, 0xb2, 0xff, 0xd4, 0x88, 0x05, 0xfd, 0xa1, 0x09, 0x1f, 0x3a, 0x2f, 0xd0, 0x26, - 0xe2, 0xd5, 0xc0, 0xd9, 0x7f, 0xf4, 0xad, 0x3f, 0xa2, 0x81, 0x47, 0x8c, 0x18, 0xdf, 0xa8, 0x7e, - 0x7a, 0x72, 0x66, 0xc2, 0x97, 0xd2, 0x19, 0x2d, 0x26, 0x7a, 0x25, 0x42, 0xf6, 0x5f, 0x3c, 0xad, - 0x3a, 0x3e, 0x37, 0xe1, 0x53, 0x87, 0x3c, 0x30, 0x63, 0xb5, 0xd6, 0x44, 0xcf, 0x9c, 0xe4, 0x10, - 0x0e, 0xdc, 0x71, 0xeb, 0xac, 0x5b, 0x35, 0x22, 0xc2, 0xc6, 0x1c, 0xe1, 0x4e, 0xcc, 0x11, 0x1e, - 0x89, 0x54, 0x7d, 0xe5, 0x12, 0x6c, 0x7b, 0xe3, 0x1b, 0x09, 0xc9, 0xcc, 0x5c, 0x3e, 0xf9, 0xc6, - 0xf7, 0x8c, 0x70, 0x5d, 0x01, 0x09, 0x89, 0x29, 0xf0, 0xe0, 0xf8, 0xf1, 0x66, 0x96, 0x31, 0x91, - 0xa1, 0x73, 0x47, 0x43, 0x21, 0xa5, 0xd4, 0x1c, 0x56, 0xae, 0x13, 0xb9, 0x0d, 0x43, 0x4c, 0xac, - 0x3d, 0x22, 0xc6, 0x2c, 0x81, 0x93, 0xf6, 0x89, 0x09, 0xdf, 0x3a, 0x20, 0xd1, 0x74, 0x57, 0xf2, - 0xf4, 0x4f, 0x13, 0x3e, 0xd7, 0xe7, 0x5e, 0xc7, 0x19, 0x9b, 0xf1, 0xa5, 0x42, 0x87, 0xc9, 0x73, - 0x5a, 0xad, 0xa7, 0x7f, 0x76, 0x8c, 0x40, 0x33, 0x81, 0x41, 0x9e, 0x35, 0x14, 0xbb, 0x5f, 0x2c, - 0x87, 0x0c, 0xe1, 0xf0, 0xf0, 0xa0, 0x6e, 0x4c, 0xac, 0x0a, 0x5c, 0x33, 0x50, 0x6c, 0x10, 0xb2, - 0x11, 0x09, 0xef, 0xdb, 0xbd, 0x93, 0x0b, 0x13, 0x3e, 0x77, 0x14, 0xb8, 0x51, 0x5f, 0xb0, 0xce, - 0x34, 0x87, 0x25, 0x1b, 0x6e, 0xd7, 0xb6, 0xdb, 0x27, 0x7d, 0x23, 0x08, 0x39, 0xdf, 0xa3, 0xbc, - 0x4b, 0xf8, 0xad, 0x11, 0x78, 0xc0, 0x66, 0x81, 0x98, 0x70, 0x73, 0x0e, 0x0e, 0x36, 0x6a, 0x6c, - 0x1b, 0x01, 0x5d, 0xa7, 0xf7, 0xee, 0x5c, 0x30, 0xbb, 0x6f, 0x48, 0x12, 0xe3, 0x92, 0x60, 0x60, - 0xc2, 0x77, 0xde, 0x30, 0x6e, 0x44, 0x2c, 0xb0, 0xfd, 0xc1, 0x80, 0x52, 0x43, 0x40, 0x0b, 0xf3, - 0xcf, 0x9b, 0xc7, 0x46, 0x04, 0x01, 0x21, 0xed, 0xd4, 0x1c, 0x98, 0x8c, 0x58, 0x23, 0xd5, 0xa4, - 0x5d, 0x0e, 0x1e, 0xd6, 0x6a, 0x07, 0x46, 0xa0, 0x96, 0x3b, 0x23, 0xe0, 0xca, 0x4c, 0xee, 0x4d, - 0x62, 0x2f, 0x38, 0xfb, 0x6f, 0xfe, 0xd9, 0xd8, 0x1d, 0xb9, 0x81, 0x29, 0xf9, 0x8b, 0x11, 0x38, - 0x20, 0x1a, 0x39, 0x91, 0xd0, 0xe5, 0xc0, 0x79, 0x44, 0xac, 0x51, 0xe0, 0x47, 0x4c, 0xf4, 0x16, - 0x8f, 0x1c, 0xd2, 0xad, 0xc0, 0x88, 0xb5, 0x4a, 0xcd, 0x08, 0x59, 0xf6, 0x8d, 0xfb, 0x85, 0xda, - 0x9c, 0xf4, 0x38, 0x09, 0xcd, 0x20, 0x86, 0x84, 0x4f, 0xa1, 0xe7, 0x30, 0xb8, 0x34, 0x32, 0x85, - 0x6b, 0xe5, 0x63, 0x73, 0x68, 0xc1, 0x63, 0x97, 0xfc, 0x30, 0x82, 0xc5, 0x9a, 0x8b, 0x57, 0xec, - 0x1a, 0x11, 0x5c, 0x63, 0xe1, 0xc1, 0xc6, 0xe8, 0xc6, 0x20, 0x9c, 0x35, 0x93, 0xd5, 0x15, 0x94, - 0xe6, 0xcb, 0xa1, 0xa8, 0xe8, 0x3e, 0xa0, 0xa1, 0xb0, 0x40, 0x51, 0x2e, 0xf4, 0xc0, 0x8d, 0x19, - 0x14, 0xac, 0x1f, 0x9c, 0x8f, 0x5d, 0xce, 0x02, 0x97, 0xfe, 0xf4, 0x43, 0xa3, 0xb6, 0x8f, 0x4f, - 0x25, 0x54, 0xe8, 0xf2, 0xaa, 0x87, 0xf2, 0x6c, 0x12, 0x18, 0x55, 0x5a, 0x30, 0xcf, 0xc9, 0x8f, - 0xcd, 0xb1, 0x3d, 0x1a, 0xb8, 0x61, 0x64, 0x8a, 0xf1, 0xad, 0x5e, 0x07, 0x6d, 0x12, 0xff, 0xb1, - 0xd8, 0x15, 0x37, 0x62, 0x35, 0x9b, 0xb1, 0x1d, 0x3a, 0x3b, 0x56, 0x58, 0x17, 0x3c, 0x56, 0x98, - 0x1b, 0xaa, 0x14, 0x52, 0x33, 0xcd, 0x21, 0xa9, 0x58, 0xaa, 0x30, 0x1c, 0x45, 0x46, 0x38, 0x88, - 0x88, 0x93, 0xf0, 0x8c, 0x18, 0x91, 0x0e, 0x4f, 0x55, 0xf3, 0x0c, 0xa9, 0x92, 0x3a, 0xf3, 0x87, - 0x13, 0x10, 0x6c, 0x52, 0xe1, 0xf7, 0xb6, 0x29, 0x3e, 0xc1, 0x65, 0x1e, 0x1d, 0x9a, 0x92, 0x56, - 0xc4, 0x1b, 0xcf, 0x13, 0x1f, 0x76, 0x4b, 0x89, 0x63, 0x10, 0xc4, 0x99, 0x9e, 0x94, 0xfc, 0xec, - 0xd9, 0x52, 0x67, 0x25, 0x73, 0x08, 0x18, 0x83, 0x2f, 0x03, 0x26, 0x26, 0x9f, 0x96, 0xc3, 0xe2, - 0x30, 0xa4, 0x38, 0x29, 0xf0, 0xbd, 0xfa, 0xae, 0x11, 0x4c, 0xc9, 0x1d, 0x0b, 0xf9, 0x98, 0xb8, - 0x66, 0x1c, 0xbe, 0xfa, 0x79, 0xb0, 0x77, 0x46, 0x82, 0xc8, 0xa0, 0xb3, 0x36, 0xa7, 0x9f, 0x8c, - 0x28, 0xa8, 0xa5, 0x46, 0x54, 0xd2, 0xb9, 0xbe, 0x4d, 0xdc, 0x3e, 0x71, 0x8d, 0xd8, 0xda, 0xb9, - 0x33, 0xa5, 0x44, 0x7d, 0xaa, 0x01, 0xda, 0x36, 0x02, 0xd2, 0x0e, 0x07, 0x81, 0x39, 0xd5, 0xc9, - 0x9f, 0x4e, 0x3a, 0x3d, 0x53, 0x38, 0x8f, 0xae, 0xcf, 0x3c, 0xde, 0xf7, 0xe3, 0xff, 0xe9, 0xd1, - 0x90, 0x11, 0x43, 0xc2, 0xac, 0x19, 0x39, 0x63, 0xb4, 0xdf, 0x63, 0x43, 0x63, 0x0a, 0x14, 0x07, - 0x76, 0x7d, 0x47, 0x44, 0xee, 0x3e, 0x3f, 0x3b, 0x6b, 0x35, 0x2f, 0x9a, 0x26, 0x7c, 0xef, 0x8f, - 0x1f, 0xc4, 0xeb, 0x76, 0x4d, 0xf1, 0x09, 0xc7, 0x9e, 0x6b, 0x84, 0x79, 0xcd, 0x15, 0xe9, 0x77, - 0x77, 0x0c, 0x39, 0x85, 0xfb, 0x29, 0xf0, 0xbd, 0x8e, 0x19, 0x12, 0x12, 0xb3, 0x73, 0x36, 0x3d, - 0x43, 0x80, 0x4c, 0xdf, 0x31, 0xe3, 0xb8, 0xe5, 0xb6, 0x11, 0xb9, 0xe1, 0x38, 0x32, 0x62, 0xc3, - 0x74, 0x10, 0x9e, 0xb8, 0xc2, 0x77, 0x2e, 0xe5, 0x31, 0xf9, 0xfb, 0x46, 0xc0, 0x80, 0xc0, 0x88, - 0x7d, 0x24, 0x62, 0x73, 0xea, 0xb2, 0xe8, 0x9c, 0x72, 0x72, 0xd6, 0xe9, 0x74, 0xcd, 0x60, 0x38, - 0x07, 0xfc, 0x07, 0x09, 0xe9, 0x99, 0xef, 0x07, 0x37, 0xc4, 0xfe, 0x6e, 0x88, 0x3e, 0x8f, 0x31, - 0x27, 0xac, 0x2e, 0xcd, 0x38, 0x61, 0x35, 0xdd, 0xfb, 0xfa, 0x83, 0x07, 0x5f, 0xa6, 0x14, 0x9c, - 0xe0, 0x2d, 0x59, 0x39, 0x90, 0x45, 0xb6, 0x6f, 0xc8, 0xbe, 0xd2, 0x04, 0xc5, 0xce, 0x46, 0xd7, - 0x88, 0x2d, 0x04, 0xdf, 0xa1, 0x23, 0x33, 0xf6, 0x0c, 0xac, 0x61, 0xe4, 0x99, 0x81, 0x0d, 0xe6, - 0x05, 0x49, 0x3d, 0x1a, 0xde, 0x31, 0xdb, 0x18, 0xa1, 0x1e, 0x73, 0x52, 0x84, 0xc8, 0x90, 0x5a, - 0x83, 0xb9, 0xf0, 0xf8, 0xf1, 0xe5, 0x69, 0xb7, 0xed, 0x71, 0x33, 0xe8, 0x4e, 0x21, 0x2d, 0xe2, - 0xfc, 0x52, 0x70, 0x23, 0x08, 0xef, 0x91, 0x29, 0xbb, 0x88, 0x37, 0x24, 0x62, 0xb6, 0x29, 0x47, - 0xf1, 0xcd, 0x00, 0x88, 0x23, 0xdf, 0x26, 0x5f, 0x68, 0x18, 0x31, 0xdf, 0xab, 0x1b, 0x53, 0x0d, - 0xf1, 0xc5, 0x08, 0x3c, 0x4b, 0xa2, 0x7b, 0xcf, 0x88, 0x40, 0x70, 0x13, 0x32, 0x67, 0x68, 0x04, - 0x10, 0xb8, 0x35, 0x65, 0x0f, 0x91, 0x46, 0xb6, 0x21, 0xa7, 0x9a, 0xd9, 0x90, 0x71, 0xe2, 0xfe, - 0x11, 0x92, 0x20, 0xa0, 0xa1, 0x81, 0x65, 0x46, 0x81, 0x21, 0x02, 0x6d, 0xc4, 0x10, 0x7d, 0xb6, - 0x29, 0xd4, 0x9e, 0x55, 0x1f, 0x9a, 0xb2, 0x45, 0x37, 0x76, 0xb9, 0x19, 0x72, 0x88, 0xcc, 0xe3, - 0x34, 0x74, 0x29, 0xb9, 0xa3, 0xa6, 0xd0, 0x05, 0x47, 0x7f, 0x34, 0x83, 0xc6, 0x79, 0x60, 0xce, - 0x6e, 0xa2, 0x19, 0x90, 0x9b, 0xf9, 0x3f, 0xcd, 0x38, 0x39, 0x18, 0xb9, 0x66, 0x00, 0xd9, 0x30, - 0x0a, 0x6f, 0x4c, 0x51, 0xe8, 0x32, 0x62, 0xde, 0x43, 0xb3, 0x0e, 0x81, 0xcd, 0xef, 0x09, 0xbe, - 0xa4, 0x5c, 0xe8, 0x9e, 0xe0, 0x1c, 0xe4, 0x59, 0x68, 0x38, 0xea, 0x12, 0xc7, 0x24, 0x3a, 0x63, - 0xef, 0x8f, 0xf3, 0xa6, 0x11, 0xc9, 0xf7, 0xdf, 0xae, 0x21, 0x1c, 0x9c, 0x37, 0x60, 0x1e, 0xbb, - 0x21, 0x66, 0x88, 0x4e, 0x33, 0xd7, 0x90, 0x83, 0x3e, 0x53, 0x10, 0xdb, 0xbd, 0xbd, 0x8f, 0x26, - 0x28, 0xf6, 0xb3, 0x19, 0x57, 0x7e, 0x2c, 0xa9, 0xf9, 0xf3, 0x6e, 0xdb, 0x88, 0x50, 0x36, 0x30, - 0xa9, 0x8a, 0x8f, 0x0e, 0xc7, 0x2e, 0x09, 0xeb, 0x07, 0x8d, 0x86, 0x21, 0xd7, 0x7e, 0x18, 0xb1, - 0x67, 0xeb, 0x85, 0x26, 0xa2, 0x84, 0xc6, 0xe7, 0xc8, 0x10, 0x90, 0x10, 0x04, 0x53, 0xed, 0x03, - 0x97, 0x79, 0xdf, 0xcd, 0xb9, 0x59, 0x63, 0xed, 0x68, 0xbe, 0xe8, 0x05, 0xd6, 0x79, 0x50, 0x8c, - 0xb7, 0xa6, 0xf8, 0x08, 0x36, 0xe2, 0x06, 0x51, 0x8c, 0x5d, 0xff, 0x07, 0x0d, 0x5d, 0xe6, 0x51, - 0x33, 0x36, 0x6f, 0x7a, 0x3f, 0x18, 0xb7, 0x6f, 0x0d, 0x39, 0x2c, 0x6c, 0x8c, 0x7e, 0x66, 0x74, - 0x4e, 0xec, 0x33, 0x72, 0x6f, 0x86, 0x24, 0xc3, 0x6c, 0x83, 0xbc, 0xe1, 0x1a, 0xb5, 0x9f, 0xbf, - 0x6d, 0xce, 0xfd, 0x5b, 0x3f, 0x1b, 0xf5, 0x6d, 0x53, 0x14, 0xeb, 0x8d, 0x00, 0x0b, 0x8e, 0x17, - 0xeb, 0x9d, 0x9c, 0xf9, 0x7e, 0x50, 0x37, 0xe8, 0xb0, 0x6d, 0x3b, 0x68, 0x3a, 0x4e, 0x48, 0x23, - 0x53, 0xee, 0xb5, 0x32, 0x44, 0xfd, 0xf3, 0xa9, 0x76, 0x8f, 0x59, 0x57, 0x30, 0x0d, 0xd8, 0x4d, - 0x48, 0x0d, 0xda, 0x88, 0x9c, 0xea, 0x43, 0x9b, 0x35, 0xc6, 0x8e, 0xe3, 0xfd, 0x69, 0xc6, 0x36, - 0x04, 0xbb, 0x19, 0x6d, 0xef, 0xd7, 0x02, 0x12, 0x4e, 0x56, 0x84, 0x21, 0x6e, 0xc2, 0xa0, 0x4a, - 0xdb, 0xb5, 0x04, 0xf9, 0xc4, 0x94, 0x04, 0x79, 0x46, 0x4d, 0x6f, 0x13, 0xe7, 0x8c, 0x18, 0xa1, - 0xd9, 0x70, 0xcb, 0x02, 0x1a, 0xba, 0xc4, 0x33, 0x83, 0x86, 0xb2, 0x3d, 0x73, 0xae, 0xe6, 0x98, - 0xd9, 0xdb, 0x05, 0x33, 0x09, 0xae, 0xef, 0x9d, 0x9b, 0xe1, 0xcf, 0x46, 0xd4, 0x61, 0xe4, 0x9c, - 0x30, 0xb7, 0x73, 0x47, 0xc3, 0x76, 0x60, 0x22, 0xfe, 0x39, 0x27, 0xb6, 0x6b, 0x4a, 0xee, 0x79, - 0xb7, 0xbd, 0x67, 0x84, 0x02, 0xc9, 0x36, 0x0b, 0xee, 0x0c, 0xd9, 0x15, 0x72, 0xdc, 0xe8, 0x87, - 0x21, 0x01, 0x22, 0x60, 0x46, 0xdd, 0x9b, 0x3b, 0x31, 0x34, 0x43, 0xae, 0xf3, 0x5b, 0x00, 0x9d, - 0xf3, 0xe3, 0x11, 0x37, 0x2c, 0x23, 0xe2, 0x86, 0x1c, 0x2c, 0x59, 0x8e, 0xb1, 0x41, 0x0e, 0x37, - 0xba, 0x35, 0x84, 0xe4, 0x99, 0x1f, 0xdb, 0x39, 0x65, 0x37, 0x66, 0x8c, 0xec, 0x28, 0x30, 0x03, - 0x8f, 0x19, 0x32, 0xff, 0xe6, 0x5c, 0xe6, 0x62, 0xb3, 0xc8, 0xf6, 0xdb, 0xbd, 0x33, 0x53, 0x00, - 0x02, 0xa9, 0x37, 0xce, 0x03, 0x83, 0x36, 0x7e, 0x42, 0x4a, 0xec, 0xdb, 0x93, 0xde, 0x99, 0x21, - 0x97, 0x0d, 0x38, 0x66, 0x68, 0x04, 0x9b, 0x21, 0x7e, 0x3f, 0xba, 0x0f, 0x99, 0x21, 0x87, 0xce, - 0xdd, 0x91, 0x39, 0x3a, 0xbb, 0x66, 0x00, 0x00, 0xc7, 0x33, 0x44, 0x37, 0xed, 0x60, 0x7f, 0xdf, - 0x90, 0x32, 0xf7, 0xe9, 0xee, 0x74, 0xdf, 0x19, 0x11, 0x83, 0x0a, 0x1c, 0xcd, 0xd9, 0x16, 0x31, - 0x69, 0xdb, 0xff, 0xe7, 0x8d, 0xff, 0x73, 0x4e, 0x19, 0x19, 0x72, 0xb4, 0x6c, 0xd7, 0x90, 0x9b, - 0x02, 0xec, 0xef, 0x7d, 0xbf, 0xc7, 0x0d, 0x91, 0xf8, 0x09, 0x7c, 0x6f, 0xcf, 0x8c, 0x42, 0x30, - 0x1e, 0xdf, 0x48, 0xfa, 0x9b, 0x21, 0xf4, 0xc0, 0x9d, 0x21, 0x89, 0x56, 0xc4, 0x82, 0x1e, 0x1b, - 0x9a, 0x72, 0x23, 0x69, 0xdb, 0x36, 0xe3, 0x9c, 0xd6, 0x9c, 0xbe, 0x38, 0xe1, 0x66, 0xd0, 0x42, - 0xec, 0x67, 0xdf, 0x3f, 0xf5, 0xc7, 0xa1, 0x29, 0x17, 0x1e, 0x19, 0x62, 0x5c, 0x8f, 0xef, 0xf8, - 0x33, 0x42, 0x25, 0x21, 0x32, 0xc2, 0xbb, 0x92, 0x3b, 0x66, 0xb3, 0xce, 0x74, 0x74, 0x8d, 0xb9, - 0xfc, 0xea, 0xd6, 0x8f, 0xb8, 0x21, 0x47, 0xe1, 0xee, 0xea, 0x75, 0x53, 0x92, 0xc4, 0xc8, 0x8c, - 0x53, 0x4f, 0x83, 0xfa, 0xde, 0xf9, 0x20, 0x34, 0xeb, 0x70, 0x43, 0x67, 0xe0, 0x8c, 0xcc, 0xda, - 0x3c, 0x9a, 0xde, 0x00, 0xbb, 0xb7, 0xf3, 0xdd, 0xc8, 0xf3, 0x23, 0x86, 0x5c, 0xb5, 0x7f, 0x3b, - 0xf6, 0xb8, 0x31, 0xf7, 0xd5, 0x06, 0xcc, 0x9c, 0xbb, 0x23, 0x5a, 0x47, 0x3d, 0x83, 0xb4, 0xcc, - 0x0d, 0x3b, 0x78, 0x7a, 0x6b, 0x48, 0xe2, 0x38, 0x30, 0xea, 0x32, 0xdd, 0xb8, 0x8c, 0xc3, 0x94, - 0x4a, 0x55, 0x83, 0xe4, 0xc2, 0x23, 0xc7, 0x66, 0x46, 0xc5, 0xb0, 0x0b, 0x67, 0x60, 0xc4, 0x6e, - 0xad, 0x39, 0xa9, 0x18, 0xe1, 0x23, 0x63, 0xc4, 0xa1, 0x87, 0x87, 0x87, 0x66, 0xdc, 0x1d, 0xf3, - 0xb7, 0x19, 0x28, 0x6b, 0x7a, 0x89, 0x6b, 0xd7, 0x1d, 0x9b, 0xc1, 0xcd, 0x0f, 0x5c, 0xe2, 0xc5, - 0xf5, 0xe9, 0x26, 0xc9, 0xbc, 0xd4, 0xcd, 0x40, 0x03, 0xa7, 0x7e, 0xf8, 0x83, 0x84, 0x46, 0xb0, - 0x06, 0x81, 0x19, 0x08, 0xeb, 0x76, 0xbb, 0xb1, 0xdd, 0x0d, 0xfd, 0x9f, 0xf7, 0x66, 0x48, 0x64, - 0xd4, 0xcc, 0xb9, 0x4e, 0xb0, 0x33, 0x36, 0xa3, 0xb6, 0x60, 0xd0, 0xfd, 0x61, 0xca, 0xdd, 0xb7, - 0x6b, 0xd2, 0x5f, 0xa7, 0x3f, 0x1c, 0x53, 0xa4, 0xbf, 0xc6, 0xa6, 0x40, 0xad, 0x38, 0xfb, 0x8e, - 0x6f, 0xd0, 0x9f, 0x8c, 0xb4, 0x69, 0x87, 0xa0, 0x1b, 0x86, 0xf0, 0x46, 0x81, 0x19, 0x43, 0xbb, - 0x58, 0x0c, 0x66, 0x9c, 0xff, 0xf1, 0x0c, 0xb9, 0xa4, 0x67, 0x7a, 0xf1, 0xcd, 0x89, 0xcf, 0xeb, - 0xf5, 0x6e, 0xe8, 0x0f, 0x98, 0x19, 0x8b, 0x81, 0x45, 0x63, 0x43, 0x46, 0xf7, 0xc6, 0xa5, 0x4b, - 0xae, 0xde, 0x1c, 0x25, 0x22, 0x77, 0x9b, 0x05, 0x3f, 0x4d, 0xa9, 0x9d, 0x1e, 0xb2, 0x21, 0xb9, - 0x61, 0x3c, 0xf6, 0xbc, 0x86, 0xd4, 0x51, 0xae, 0x10, 0x34, 0x46, 0x6c, 0x92, 0xba, 0x0d, 0x53, - 0x16, 0xc3, 0xbc, 0xc6, 0xa3, 0xef, 0x7f, 0xa7, 0xde, 0x25, 0xf3, 0x86, 0x66, 0xa4, 0x13, 0xdb, - 0xa6, 0x9c, 0xb5, 0x9b, 0x57, 0x27, 0x76, 0x1b, 0xa6, 0xdc, 0x9d, 0xcb, 0xa9, 0xef, 0x1d, 0xd4, - 0xce, 0x6f, 0x98, 0x19, 0x1a, 0x70, 0x51, 0x64, 0x04, 0xc5, 0xfc, 0x77, 0xe3, 0x70, 0xbb, 0x6e, - 0x4a, 0x61, 0x92, 0x11, 0x58, 0xc1, 0xe6, 0xad, 0xd1, 0xd8, 0x88, 0xc4, 0xcc, 0x1b, 0x90, 0xc8, - 0x14, 0x4a, 0xe9, 0x13, 0xe1, 0xf4, 0x3b, 0xa5, 0x81, 0x21, 0xe7, 0x15, 0x89, 0xdd, 0xa3, 0xf6, - 0xb1, 0xef, 0xf1, 0xd0, 0x77, 0x5d, 0xea, 0xb4, 0x4f, 0x8d, 0x30, 0x31, 0xc7, 0x61, 0xa6, 0x70, - 0xcc, 0xf5, 0xed, 0x43, 0x23, 0xae, 0x26, 0xbf, 0x19, 0x06, 0x81, 0xef, 0x32, 0xfb, 0x9e, 0xd8, - 0xb6, 0x3f, 0xf6, 0xb8, 0x21, 0x48, 0x66, 0xb9, 0x4f, 0x1e, 0xab, 0x08, 0xd8, 0xbe, 0xe7, 0x51, - 0x9b, 0x9b, 0x71, 0x54, 0x98, 0x0e, 0xfb, 0x71, 0x31, 0xbb, 0x58, 0x8e, 0x96, 0xea, 0x89, 0xab, - 0x77, 0x6a, 0xdb, 0x7d, 0xfb, 0x5f, 0xbd, 0xfe, 0x2f, 0xde, 0x18, 0xee, 0x6a, 0xeb, 0x27, 0x8f, - 0xaa, 0x1f, 0x2b, 0x5f, 0xdf, 0xa9, 0x99, 0x84, 0xea, 0xef, 0xf4, 0xfe, 0x87, 0x1f, 0x3a, 0x71, - 0x35, 0xae, 0x6d, 0xd1, 0x9f, 0xfc, 0x23, 0xa7, 0x2e, 0x1d, 0x51, 0x1e, 0xde, 0x5b, 0xbe, 0x67, - 0xd9, 0xb7, 0xc4, 0x1b, 0xd2, 0x6a, 0xb2, 0x35, 0x50, 0xfd, 0x8d, 0x44, 0xcd, 0x70, 0x38, 0x1e, - 0x51, 0x8f, 0x57, 0x3f, 0x56, 0x06, 0xc4, 0x8d, 0x68, 0xc2, 0x27, 0x57, 0x1e, 0xab, 0x56, 0x25, - 0x87, 0xf0, 0xea, 0x8d, 0x21, 0x6c, 0x8e, 0x87, 0x93, 0x57, 0x51, 0x47, 0xe5, 0x38, 0xce, 0x17, - 0xef, 0x96, 0x6f, 0x5b, 0x6c, 0xf0, 0x91, 0xcd, 0x95, 0x3b, 0xa2, 0xa7, 0xbf, 0x98, 0xfd, 0xd9, - 0xf6, 0xbd, 0x01, 0x1b, 0x26, 0x1d, 0xd8, 0x13, 0x1a, 0xd9, 0x21, 0x0b, 0x38, 0xf3, 0xbd, 0xc9, - 0x4b, 0x9a, 0x8e, 0x13, 0x55, 0xfa, 0xdd, 0xf6, 0x49, 0x65, 0xab, 0x42, 0x27, 0xc9, 0x36, 0xbf, - 0x0f, 0x68, 0x25, 0xa2, 0x7c, 0xe2, 0x9c, 0x2a, 0x03, 0x3f, 0xac, 0xf0, 0x5b, 0x5a, 0xb9, 0x21, - 0x11, 0xad, 0x2c, 0xde, 0x9b, 0xf4, 0x55, 0xbf, 0x33, 0x6f, 0x32, 0x30, 0xf5, 0x84, 0xff, 0xfc, - 0x78, 0xda, 0x8f, 0x8f, 0x95, 0x5a, 0xc2, 0x07, 0xba, 0x21, 0x1d, 0xb0, 0x9f, 0xd5, 0x8f, 0x29, - 0xbc, 0xc4, 0xb2, 0x5e, 0xdc, 0xb6, 0xe2, 0xec, 0x37, 0xb9, 0x4b, 0xaa, 0xf6, 0xfc, 0x71, 0x68, - 0xd3, 0x54, 0xaf, 0x7b, 0x6a, 0x17, 0xc1, 0xf4, 0x8b, 0xd3, 0xf9, 0xc1, 0x27, 0xb6, 0xc0, 0xc3, - 0x31, 0x4d, 0xd9, 0xc0, 0xaa, 0x49, 0xcc, 0x3b, 0xae, 0xda, 0x59, 0x25, 0x5d, 0x7e, 0x2c, 0x4c, - 0x37, 0x61, 0x3c, 0x60, 0x4e, 0xfa, 0x31, 0x5f, 0x6c, 0x8c, 0x4c, 0x9e, 0x4e, 0x39, 0x5a, 0x4f, - 0x2c, 0xa4, 0x13, 0xff, 0x44, 0x5c, 0xf7, 0x7e, 0x62, 0x16, 0xb1, 0x39, 0x70, 0x32, 0xac, 0x4c, - 0x92, 0x50, 0xdf, 0xf6, 0xdd, 0x0a, 0x73, 0xa8, 0xc7, 0xd9, 0x80, 0xd1, 0xb0, 0x32, 0x60, 0xd4, - 0x75, 0x2a, 0xbf, 0x4c, 0xcc, 0xe9, 0xd7, 0x0a, 0xbf, 0x25, 0xfc, 0x9b, 0xc7, 0xa2, 0x0a, 0xb1, - 0x6d, 0x1a, 0x70, 0xea, 0x54, 0x7c, 0x2f, 0x7e, 0xfa, 0xcb, 0x59, 0xf3, 0x22, 0xfd, 0x37, 0x0d, - 0xc8, 0xd8, 0x5d, 0x9d, 0x40, 0x6b, 0x62, 0xa8, 0xd1, 0xc7, 0xc9, 0xbb, 0xae, 0x6b, 0x7f, 0x1e, - 0xd4, 0x6b, 0xb5, 0xb4, 0x6d, 0xce, 0xcc, 0xb3, 0x96, 0xf2, 0xb1, 0xb4, 0x66, 0x2a, 0x63, 0xae, - 0x0a, 0xcc, 0x56, 0xd6, 0x7c, 0x95, 0x99, 0xb1, 0x32, 0x73, 0x56, 0x63, 0xd6, 0x62, 0x18, 0x27, - 0x25, 0x84, 0xab, 0xc6, 0x7b, 0xbf, 0x52, 0x33, 0x3e, 0x35, 0x2f, 0x7e, 0x1f, 0xd2, 0x81, 0xc8, - 0xac, 0xcf, 0x63, 0xd0, 0xae, 0xc0, 0xb3, 0xed, 0xd9, 0xab, 0x8f, 0x48, 0x24, 0xb1, 0x6e, 0xe6, - 0x1d, 0x89, 0x2d, 0xb5, 0xff, 0x57, 0xb7, 0xd5, 0x13, 0x5d, 0x38, 0x5f, 0x88, 0x3b, 0xa6, 0xc9, - 0x20, 0x9b, 0x5a, 0x3c, 0xfd, 0x7c, 0x5f, 0x6a, 0x7f, 0x1e, 0x1c, 0x34, 0x0f, 0xaa, 0xc2, 0x2d, - 0x3e, 0xbc, 0x2f, 0x44, 0x37, 0x9a, 0x17, 0x7f, 0x19, 0xdf, 0x87, 0xda, 0x9f, 0x87, 0x93, 0x00, - 0x60, 0x7e, 0x37, 0x0e, 0xca, 0xd1, 0x8d, 0xc3, 0x86, 0x54, 0x37, 0x84, 0x9e, 0xbc, 0xd2, 0xed, - 0xfa, 0x0b, 0x96, 0xde, 0xbe, 0x99, 0x9b, 0x79, 0x9e, 0xcf, 0xc9, 0x0c, 0xc5, 0xbd, 0x3d, 0xbd, - 0xd5, 0xc8, 0xbe, 0xa5, 0x23, 0x12, 0x10, 0x7e, 0x3b, 0x4d, 0xbe, 0x02, 0xea, 0x4d, 0x33, 0x2b, - 0x6b, 0x25, 0x03, 0x7b, 0xee, 0xc7, 0xad, 0x59, 0x02, 0xf6, 0x4e, 0xac, 0x2f, 0xaf, 0x2c, 0xda, - 0x2a, 0x9d, 0x6f, 0x7f, 0xbe, 0xd5, 0x83, 0xe5, 0x45, 0xd1, 0xf3, 0x27, 0xde, 0x18, 0x9d, 0x64, - 0xb9, 0x59, 0x62, 0xb0, 0x97, 0x06, 0xdc, 0xad, 0x82, 0x39, 0xca, 0x6f, 0x13, 0x44, 0xc3, 0xb4, - 0xd8, 0x4d, 0x18, 0xab, 0x09, 0x63, 0xb3, 0xa7, 0x58, 0x6c, 0xd2, 0x2f, 0xcd, 0xf4, 0x4d, 0xd2, - 0x4c, 0xaa, 0x6a, 0xcf, 0xe7, 0x30, 0x25, 0xff, 0x90, 0x8e, 0x57, 0x28, 0x78, 0xb2, 0x9f, 0x6c, - 0xa1, 0x95, 0x2f, 0xd7, 0x4f, 0xb4, 0x10, 0x0b, 0x92, 0xea, 0x93, 0xe1, 0x30, 0xa4, 0x43, 0xc2, - 0xa9, 0x25, 0x93, 0xf2, 0x3f, 0x6a, 0x65, 0x33, 0x52, 0x62, 0x97, 0x0c, 0x91, 0x11, 0x3f, 0xb3, - 0xf8, 0x5d, 0x21, 0x05, 0xff, 0x82, 0x27, 0xc4, 0x2e, 0x25, 0x03, 0xc9, 0x64, 0x78, 0x5f, 0xe0, - 0xd9, 0xee, 0x02, 0x18, 0x25, 0x63, 0xa5, 0xbd, 0xc9, 0xe7, 0xea, 0x02, 0x98, 0x29, 0x3c, 0x39, - 0x19, 0x73, 0xdf, 0xf2, 0xe8, 0xd0, 0xe7, 0x8c, 0x70, 0x2a, 0xe1, 0x56, 0x1e, 0xb7, 0x23, 0xce, - 0xdf, 0x4d, 0x96, 0xf7, 0x86, 0xf8, 0xa5, 0x74, 0x41, 0x77, 0x73, 0xfc, 0x52, 0xaa, 0xa0, 0x6c, - 0x8a, 0x5f, 0xba, 0xf1, 0x7d, 0x97, 0x8a, 0x51, 0xb3, 0x73, 0xbf, 0x54, 0x2f, 0x80, 0xbf, 0x70, - 0xc6, 0x81, 0x4b, 0x7f, 0x5a, 0x23, 0xdf, 0x91, 0x70, 0x16, 0xab, 0x8d, 0xc0, 0xd4, 0x61, 0xea, - 0x25, 0x33, 0x75, 0xea, 0x8d, 0x47, 0x34, 0x9c, 0x72, 0x2b, 0x12, 0xe6, 0xbe, 0x23, 0xf0, 0x6c, - 0xcb, 0x1b, 0x8f, 0x26, 0x1f, 0xff, 0x50, 0x00, 0x57, 0x41, 0x3d, 0x72, 0xe3, 0x52, 0x6b, 0xe0, - 0xfa, 0x3f, 0x2c, 0x7b, 0x5a, 0xde, 0x25, 0xee, 0x32, 0x9e, 0x6b, 0x4c, 0x1c, 0x64, 0xc4, 0x05, - 0x13, 0x70, 0x3d, 0x70, 0x3d, 0x40, 0x19, 0x85, 0x44, 0x19, 0x23, 0x62, 0x5b, 0x64, 0x76, 0x47, - 0xa9, 0xb0, 0xcb, 0x58, 0x6d, 0x04, 0xa6, 0x0e, 0x53, 0x2f, 0x99, 0xa9, 0x8b, 0x2f, 0xef, 0x47, - 0xe6, 0x7e, 0x20, 0x46, 0x76, 0x70, 0x1a, 0x7a, 0xc2, 0x5b, 0xed, 0xd5, 0xff, 0x7e, 0xad, 0x59, - 0x87, 0xc4, 0x1a, 0x34, 0xad, 0xd3, 0xab, 0x7f, 0x1a, 0x0f, 0xbf, 0x7c, 0x7c, 0xfc, 0xe7, 0x5f, - 0xff, 0xd9, 0x7d, 0xf8, 0x4f, 0xfa, 0x19, 0xbb, 0x2a, 0x80, 0xe7, 0x0a, 0xfc, 0x90, 0x5b, 0x51, - 0x40, 0xa9, 0x04, 0x45, 0xbb, 0xd2, 0x06, 0xfc, 0x16, 0xfc, 0x56, 0xc9, 0xfc, 0x56, 0x69, 0x2a, - 0x96, 0x5a, 0xfd, 0xdf, 0x5a, 0x97, 0x17, 0xad, 0xfe, 0x75, 0xaf, 0xdb, 0x6a, 0x9d, 0x98, 0x5f, - 0xb5, 0x14, 0x77, 0xe3, 0xba, 0x5e, 0x3b, 0x3f, 0x32, 0xb9, 0xc4, 0x64, 0xda, 0x8b, 0x83, 0x5a, - 0xed, 0x53, 0x09, 0xba, 0xb1, 0x53, 0x8a, 0x5e, 0xd4, 0xcb, 0xd1, 0x8b, 0x32, 0x74, 0xa2, 0xb1, - 0x5b, 0x2b, 0x85, 0x7d, 0xd7, 0xcb, 0x61, 0xdf, 0xbb, 0xe5, 0x70, 0x52, 0xe5, 0x98, 0x8b, 0x52, - 0xf4, 0xa2, 0x51, 0x8e, 0xc9, 0xd8, 0x2b, 0x47, 0x37, 0x1a, 0xa5, 0x30, 0xf0, 0xcf, 0x17, 0xbf, - 0x5f, 0x74, 0xfe, 0xb8, 0x28, 0x45, 0xd4, 0x90, 0x0a, 0x7e, 0x9b, 0x51, 0x78, 0x9c, 0xb4, 0xa4, - 0x33, 0xd5, 0xe1, 0x4e, 0xb1, 0xf9, 0x4c, 0x77, 0xd8, 0x93, 0xf2, 0xdb, 0x8f, 0xf3, 0x02, 0xdf, - 0xf9, 0x9f, 0x53, 0x55, 0x69, 0x2e, 0x5e, 0xfb, 0xdc, 0x29, 0xd0, 0xb3, 0xe6, 0xa7, 0xf9, 0xc1, - 0xcf, 0xa8, 0xc2, 0xfd, 0x0a, 0xf3, 0x1c, 0x76, 0xc7, 0x9c, 0x31, 0x71, 0x2b, 0x73, 0x19, 0xa6, - 0xe5, 0x19, 0x50, 0x51, 0xc6, 0xb9, 0x8e, 0xd2, 0xba, 0x52, 0x30, 0x37, 0x05, 0x2c, 0xad, 0x4b, - 0x5b, 0x6f, 0xba, 0x78, 0x50, 0xaa, 0xee, 0x74, 0x6d, 0xd1, 0x48, 0xd4, 0x9f, 0xbe, 0x64, 0x9e, - 0xbd, 0x80, 0xda, 0x6c, 0x70, 0x1f, 0x9f, 0x1e, 0x75, 0xfd, 0x21, 0xb3, 0x89, 0x5b, 0x59, 0xbc, - 0x66, 0x69, 0x93, 0x13, 0xa3, 0xfd, 0x71, 0xcb, 0xec, 0xdb, 0x6f, 0x1e, 0xbf, 0x65, 0xd1, 0xca, - 0x5f, 0xdc, 0x50, 0xd7, 0xf7, 0x86, 0x91, 0xe8, 0xe7, 0x88, 0xb1, 0xae, 0xd2, 0x36, 0xac, 0xc2, - 0x96, 0xd5, 0xd9, 0xb4, 0x2a, 0xdb, 0x56, 0x6e, 0xe3, 0xca, 0x6d, 0x5d, 0xa9, 0xcd, 0xcb, 0x61, - 0x0b, 0x41, 0x60, 0x25, 0xce, 0xe2, 0xae, 0xad, 0x17, 0xf1, 0x72, 0xdb, 0xb5, 0xd0, 0xb7, 0x2f, - 0xd1, 0x86, 0xfe, 0xf2, 0x5b, 0xf1, 0x89, 0xca, 0x17, 0xce, 0x5d, 0x25, 0x85, 0x73, 0xe9, 0xce, - 0x83, 0x2d, 0x9e, 0x13, 0x3f, 0x17, 0xb6, 0x80, 0x6a, 0x49, 0x0e, 0x88, 0x25, 0xef, 0x74, 0x02, - 0x9b, 0xa8, 0x46, 0x3c, 0x4d, 0xb1, 0xf3, 0xea, 0x95, 0xba, 0x5c, 0xbb, 0xbc, 0x47, 0x03, 0x27, - 0x7e, 0x54, 0x7a, 0x6d, 0x9c, 0xf8, 0xc1, 0x89, 0x1f, 0xa4, 0x25, 0x38, 0xf1, 0xa3, 0x1a, 0x7a, - 0xe0, 0xc4, 0x0f, 0x4e, 0xfc, 0x68, 0x0e, 0xba, 0x9b, 0xe3, 0x97, 0x50, 0x8b, 0xfb, 0xbc, 0x5f, - 0x2a, 0x42, 0x2d, 0x6e, 0x2c, 0xc5, 0x49, 0x43, 0x89, 0x42, 0xdc, 0x45, 0x0b, 0x9b, 0xc1, 0x89, - 0xc2, 0xc8, 0x8d, 0x31, 0x72, 0x61, 0x4e, 0x94, 0x79, 0xd6, 0x41, 0xad, 0x51, 0xff, 0xdb, 0x8a, - 0xc5, 0x5f, 0x23, 0x79, 0x5a, 0xf4, 0x69, 0x83, 0xa0, 0x22, 0xc5, 0x4d, 0x09, 0x54, 0xa4, 0x90, - 0xa9, 0x99, 0x4e, 0x45, 0xce, 0xc2, 0xcc, 0xde, 0x8e, 0x02, 0x32, 0xf2, 0x40, 0xa2, 0x89, 0xcb, - 0x58, 0xc8, 0x57, 0xa6, 0xa0, 0xb3, 0x22, 0xbd, 0xf1, 0x1d, 0x7f, 0xc8, 0x39, 0xf3, 0xa4, 0xd7, - 0xbe, 0x22, 0xcf, 0xb2, 0xd6, 0x5c, 0x5c, 0xf6, 0xaa, 0xb0, 0xbd, 0xd3, 0x90, 0xd8, 0x9c, 0xf9, - 0xde, 0x09, 0x1b, 0xb2, 0x58, 0xb7, 0xb9, 0x26, 0xdd, 0xee, 0xc3, 0x7b, 0x05, 0x53, 0x40, 0x7e, - 0x16, 0x7e, 0x0a, 0xea, 0x07, 0x3b, 0x3b, 0x7b, 0xfb, 0x3b, 0x3b, 0xb5, 0xfd, 0xed, 0xfd, 0xda, - 0xe1, 0xee, 0x6e, 0x7d, 0x4f, 0xa4, 0xb8, 0x3a, 0xb3, 0x59, 0x79, 0x97, 0xcf, 0xd3, 0x57, 0x59, - 0xed, 0x16, 0xbc, 0x17, 0x42, 0x23, 0x37, 0xae, 0x6f, 0x7f, 0xb7, 0x68, 0x18, 0xfa, 0xa1, 0x1a, - 0x34, 0xf2, 0xa8, 0x41, 0xa0, 0x11, 0xa0, 0x11, 0xa0, 0x11, 0xa0, 0x11, 0xa0, 0x11, 0xa0, 0x11, - 0xa0, 0x11, 0xa0, 0x91, 0xb7, 0xd0, 0x88, 0x1d, 0xda, 0x2a, 0xb1, 0xc8, 0x4a, 0x73, 0x40, 0x22, - 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x6f, 0x21, - 0x91, 0x41, 0x48, 0xe2, 0x63, 0x2a, 0x2a, 0x37, 0x6a, 0x9e, 0xb6, 0x09, 0x4c, 0x02, 0x4c, 0x02, - 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0xf2, 0x16, 0x26, 0xf9, 0x7f, - 0xc9, 0xcd, 0x0d, 0x0d, 0x55, 0x22, 0x92, 0xc7, 0x2d, 0x02, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, - 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0xbc, 0x85, 0x47, 0x46, 0xc4, 0x9e, 0x6b, - 0xaa, 0xab, 0x04, 0x25, 0xcf, 0x34, 0x0b, 0x64, 0x02, 0x64, 0x02, 0x64, 0x02, 0x64, 0x02, 0x64, - 0x02, 0x64, 0x02, 0x64, 0x02, 0x64, 0x92, 0x04, 0x99, 0x04, 0x64, 0x1c, 0x51, 0xd5, 0xb8, 0xe4, - 0x51, 0xa3, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, - 0x40, 0x25, 0x6f, 0xa1, 0x12, 0xff, 0x8e, 0x86, 0x11, 0xfb, 0x1f, 0xa5, 0xa0, 0xe4, 0x69, 0x9b, - 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, 0xc0, 0x24, - 0x6f, 0x61, 0x92, 0xb1, 0xe7, 0xa8, 0x07, 0x25, 0x6b, 0x8d, 0x02, 0x95, 0x00, 0x95, 0x00, 0x95, - 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0xbc, 0x3a, 0xcc, 0xfe, 0x98, 0x2b, - 0x16, 0x49, 0x5b, 0x6b, 0x11, 0x78, 0x04, 0x78, 0x04, 0x78, 0x04, 0x78, 0x04, 0x78, 0x04, 0x78, - 0x04, 0x78, 0x04, 0x78, 0xe4, 0x4d, 0x3c, 0xa2, 0xa3, 0xd4, 0xf5, 0x85, 0x76, 0x81, 0x4d, 0x80, - 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x12, 0x61, 0x13, - 0xb5, 0xc5, 0xae, 0xcf, 0xb6, 0x0a, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, - 0x5c, 0x02, 0x5c, 0xb2, 0x49, 0xb8, 0x44, 0xeb, 0x55, 0x3a, 0x82, 0xf7, 0xc7, 0x2e, 0x9e, 0x57, - 0x70, 0x8f, 0x6c, 0x7c, 0x3d, 0xeb, 0x96, 0xe0, 0x6d, 0x53, 0xd3, 0x8f, 0xe0, 0xe1, 0xd8, 0xe6, - 0xde, 0xcc, 0xed, 0xb7, 0xe7, 0xaf, 0xb8, 0x9e, 0x5f, 0xf0, 0x7f, 0x7d, 0x3c, 0x6f, 0xbc, 0x00, - 0x17, 0x73, 0x39, 0xe3, 0xc0, 0xa5, 0x3f, 0xad, 0x91, 0xef, 0x48, 0xdc, 0xe2, 0xb7, 0xda, 0x08, - 0xee, 0xe0, 0xd3, 0x87, 0xf8, 0x70, 0x3d, 0x57, 0x2e, 0x77, 0xf0, 0x51, 0x6f, 0x3c, 0xa2, 0xe1, - 0xd4, 0x2d, 0x49, 0xdc, 0xc3, 0xb7, 0x23, 0xf0, 0x6c, 0xcb, 0x1b, 0x8f, 0x26, 0x1f, 0xff, 0x50, - 0x00, 0x57, 0x41, 0x3d, 0x72, 0xe3, 0x52, 0x6b, 0xe0, 0xfa, 0x3f, 0xe6, 0x34, 0xb5, 0xb8, 0xcb, - 0x78, 0xae, 0x31, 0xf1, 0xdb, 0x3f, 0x07, 0xc4, 0x8d, 0xe0, 0x7a, 0xe0, 0x7a, 0x70, 0xfd, 0xe7, - 0xba, 0xdb, 0x29, 0xc2, 0xf5, 0x9f, 0xb7, 0x3f, 0x62, 0x0a, 0x89, 0x38, 0x4e, 0x48, 0x23, 0x89, - 0x4b, 0x40, 0x9f, 0xb4, 0x03, 0x83, 0x87, 0xc1, 0x97, 0xcc, 0xe0, 0xc5, 0x97, 0xf7, 0x23, 0xa3, - 0x3f, 0x10, 0xbb, 0x8b, 0x9c, 0xd3, 0xd0, 0x13, 0xa6, 0x86, 0xaa, 0xff, 0xfd, 0x5a, 0xb3, 0x0e, - 0x89, 0x35, 0x68, 0x5a, 0xa7, 0x57, 0xff, 0x34, 0x1e, 0x7e, 0xf9, 0xf8, 0xf8, 0xcf, 0xbf, 0xfe, - 0xb3, 0xfb, 0xf0, 0x9f, 0xf4, 0x33, 0x76, 0x55, 0x00, 0xff, 0xa5, 0xc4, 0x79, 0xc1, 0x73, 0xc1, - 0x73, 0xc1, 0x73, 0xc1, 0x73, 0x65, 0xea, 0xb9, 0x3c, 0x3a, 0xf4, 0x39, 0x23, 0x9c, 0x3a, 0x96, - 0x12, 0xaa, 0xe7, 0x85, 0xf6, 0xe0, 0xcf, 0xe0, 0xcf, 0xc0, 0xfa, 0x94, 0x91, 0xf5, 0x59, 0x31, - 0xf8, 0xc0, 0x0f, 0xb9, 0x15, 0x05, 0x94, 0x3a, 0x4a, 0xfc, 0xc7, 0x4a, 0x73, 0x70, 0x1f, 0x70, - 0x1f, 0x25, 0x73, 0x1f, 0xcc, 0xa1, 0x1e, 0x67, 0xfc, 0x3e, 0xa4, 0x03, 0x19, 0xf7, 0x21, 0xb0, - 0xd5, 0x59, 0x6d, 0xcf, 0x5e, 0x7d, 0x44, 0x22, 0x2a, 0x5f, 0xff, 0xd3, 0xea, 0xff, 0xd6, 0xba, - 0xbc, 0x68, 0xf5, 0xaf, 0x7b, 0xdd, 0x56, 0xeb, 0x44, 0x74, 0xed, 0xc4, 0xbb, 0xb9, 0x91, 0x54, - 0xd9, 0x81, 0x64, 0x95, 0xcc, 0xbc, 0x3f, 0x71, 0x37, 0xae, 0xeb, 0xb5, 0xf3, 0x23, 0x89, 0x1a, - 0x94, 0xf7, 0xc5, 0xe8, 0xc5, 0x41, 0xad, 0xf6, 0xa9, 0x04, 0xdd, 0xd8, 0x29, 0x45, 0x2f, 0xea, - 0xe5, 0xe8, 0x45, 0x19, 0x3a, 0xd1, 0xd8, 0xad, 0x95, 0xc2, 0xbe, 0xeb, 0xe5, 0xb0, 0xef, 0xdd, - 0x72, 0x38, 0xa9, 0x72, 0xcc, 0x45, 0x29, 0x7a, 0xd1, 0x28, 0xc7, 0x64, 0xec, 0x95, 0xa3, 0x1b, - 0x8d, 0x52, 0x18, 0xf8, 0xe7, 0x8b, 0xdf, 0x2f, 0x3a, 0x7f, 0x5c, 0x94, 0x22, 0x6a, 0x48, 0x05, - 0x3f, 0xa1, 0x27, 0xaf, 0x74, 0x67, 0x70, 0x5a, 0xd8, 0x0d, 0x15, 0x94, 0x06, 0x78, 0x0c, 0xf0, - 0x18, 0xe0, 0x31, 0xc0, 0x63, 0x80, 0xc7, 0x00, 0x8f, 0x01, 0x1e, 0x03, 0x3c, 0x06, 0x78, 0x0c, - 0xf0, 0x18, 0xe0, 0x31, 0xc0, 0x63, 0x80, 0xc7, 0x00, 0x8f, 0x01, 0x1e, 0x03, 0x3c, 0x86, 0x30, - 0x8f, 0xf1, 0x4e, 0xe1, 0x64, 0x55, 0x9b, 0xe3, 0xe1, 0x24, 0x55, 0x8d, 0x89, 0x8e, 0xe4, 0xb9, - 0x8b, 0x20, 0x25, 0xb2, 0xe5, 0xdb, 0x16, 0x1b, 0x7c, 0x5c, 0x39, 0x69, 0xf9, 0xe4, 0x17, 0x5b, - 0xd3, 0x74, 0xf9, 0xe3, 0xe2, 0xd8, 0xe5, 0xec, 0xcf, 0xf1, 0xe9, 0xcb, 0xf4, 0x07, 0x81, 0x22, - 0x3b, 0x64, 0xc1, 0xec, 0xd8, 0x68, 0xb5, 0xe9, 0x38, 0x51, 0xe5, 0xac, 0xf9, 0xa9, 0x12, 0x51, - 0xce, 0x99, 0x37, 0x8c, 0x2a, 0xdc, 0xaf, 0x30, 0xcf, 0x61, 0x77, 0xcc, 0x19, 0x13, 0xb7, 0x32, - 0x3f, 0x87, 0x59, 0x59, 0x7e, 0x9e, 0x20, 0x71, 0x53, 0x37, 0x8c, 0xb8, 0x71, 0xc9, 0x10, 0xc4, - 0xcd, 0x33, 0xc4, 0xcd, 0x64, 0x5c, 0x0a, 0x46, 0xdc, 0x9c, 0xb0, 0x50, 0x6c, 0xba, 0xc9, 0x70, - 0x18, 0xd2, 0x21, 0xe1, 0xd4, 0x62, 0x8e, 0x3c, 0x69, 0xf2, 0xa8, 0x35, 0xc1, 0xc1, 0x7e, 0x62, - 0x9e, 0xbd, 0x80, 0xda, 0x6c, 0x70, 0x5f, 0xe1, 0xb7, 0xb4, 0xe2, 0xfa, 0x43, 0x66, 0x13, 0xb7, - 0xb2, 0x78, 0xcd, 0xd2, 0x26, 0x27, 0x46, 0xfb, 0xe3, 0x96, 0xd9, 0xb7, 0xdf, 0x3c, 0x7e, 0xcb, - 0xa2, 0x95, 0xbf, 0xb8, 0xa1, 0xae, 0xef, 0x0d, 0xa1, 0x41, 0x23, 0x63, 0xd3, 0xaa, 0x6c, 0x5b, - 0xb9, 0x8d, 0x2b, 0xb7, 0x75, 0xa5, 0x36, 0x2f, 0x07, 0x2d, 0xf2, 0xd7, 0xa0, 0x71, 0x29, 0x19, - 0x88, 0x11, 0xb9, 0x6b, 0xa1, 0x6f, 0x5f, 0xa2, 0x8d, 0xee, 0x42, 0xa0, 0x21, 0x01, 0x4c, 0x60, - 0x83, 0x8f, 0xb1, 0x96, 0x42, 0x31, 0x05, 0x2e, 0x14, 0xa3, 0xb9, 0xab, 0xa4, 0x68, 0x4e, 0x4c, - 0x28, 0x43, 0x99, 0x40, 0x46, 0xb2, 0xd9, 0x78, 0xbb, 0xcf, 0x09, 0x4c, 0xa2, 0x1a, 0xfd, 0x60, - 0xdc, 0xbe, 0xa5, 0x8e, 0x75, 0xe7, 0x92, 0xe4, 0xdd, 0x5d, 0xac, 0xf9, 0xc7, 0x8f, 0x27, 0x1c, - 0xdf, 0x74, 0x00, 0x2f, 0x75, 0x50, 0x10, 0x09, 0x02, 0xab, 0x4e, 0x3f, 0x45, 0x57, 0x64, 0xbc, - 0xbc, 0xb4, 0x57, 0x97, 0xf6, 0xe2, 0x4f, 0xbd, 0x76, 0xdc, 0xf1, 0x9c, 0x32, 0xa8, 0xb4, 0x90, - 0xac, 0x6a, 0xcf, 0x57, 0x85, 0x60, 0x16, 0x35, 0x7b, 0x7e, 0x33, 0x72, 0x93, 0x94, 0x4b, 0x7a, - 0x73, 0x92, 0x93, 0x74, 0x4b, 0xbe, 0xe8, 0xd9, 0x89, 0x6d, 0xd3, 0x28, 0x4a, 0xe7, 0xc9, 0x5f, - 0x4e, 0x4e, 0x56, 0x1a, 0x43, 0x32, 0x20, 0x61, 0x44, 0xc8, 0x06, 0xc4, 0x8c, 0xcc, 0xf4, 0x74, - 0x60, 0xd2, 0x6b, 0xf1, 0xc4, 0x7e, 0xd5, 0x80, 0xf6, 0x20, 0x48, 0xa9, 0xd4, 0xb3, 0xac, 0x35, - 0xb7, 0x50, 0x43, 0x84, 0x20, 0x65, 0xde, 0x53, 0xb0, 0x53, 0x3b, 0xdc, 0x81, 0x00, 0xe5, 0x5a, - 0xe6, 0x5a, 0xe8, 0xab, 0x4d, 0x67, 0x59, 0xac, 0xd8, 0xe1, 0xf7, 0x35, 0xbf, 0xf9, 0xa4, 0x3d, - 0x60, 0x0f, 0x60, 0x0f, 0x60, 0x0f, 0x11, 0xec, 0x31, 0x31, 0x1f, 0x8b, 0x4f, 0xda, 0x54, 0xc0, - 0x48, 0x4a, 0x38, 0x65, 0xc1, 0x13, 0xf7, 0xd9, 0x7a, 0x31, 0x8f, 0x70, 0x76, 0x47, 0x15, 0xe5, - 0x4e, 0xab, 0x8d, 0xc1, 0x7f, 0xc1, 0x7f, 0xc1, 0x7f, 0x21, 0x77, 0x42, 0xee, 0x84, 0xdc, 0x09, - 0xb9, 0x13, 0x72, 0xa7, 0x47, 0xc3, 0xcc, 0xc3, 0xb1, 0xf7, 0x3d, 0xf6, 0xf1, 0x0a, 0xee, 0x12, - 0x5a, 0x6d, 0x0c, 0xa8, 0x03, 0xa8, 0x03, 0xa8, 0x23, 0xe5, 0x8a, 0x19, 0x7b, 0x62, 0x72, 0x64, - 0x6b, 0xc9, 0xd2, 0xa1, 0x44, 0x1b, 0xb3, 0xee, 0xe4, 0x8e, 0x39, 0xd4, 0x41, 0x31, 0x85, 0x90, - 0x4c, 0x31, 0x34, 0x53, 0x37, 0x5c, 0x5a, 0xa0, 0x9a, 0x26, 0xbc, 0xa0, 0x0b, 0xba, 0xe9, 0x04, - 0x0f, 0x0a, 0xa1, 0x9c, 0x16, 0x48, 0x97, 0xd5, 0x54, 0xa9, 0x83, 0x78, 0x99, 0xcc, 0xd6, 0xbb, - 0x62, 0xb4, 0x72, 0xf5, 0x2e, 0xc7, 0x35, 0xa7, 0xda, 0x17, 0x87, 0xb1, 0xeb, 0x53, 0xe7, 0x8e, - 0xeb, 0x07, 0x0a, 0xda, 0x92, 0x15, 0x09, 0x5e, 0x6b, 0xf0, 0xbf, 0xbf, 0xec, 0xd4, 0x0e, 0xbf, - 0xd6, 0xac, 0x9d, 0xab, 0x7f, 0x77, 0x6a, 0x5f, 0x6b, 0xd6, 0xc1, 0xd5, 0xd7, 0x9a, 0x75, 0x78, - 0xf5, 0xef, 0xd7, 0xba, 0xb5, 0x3d, 0xfd, 0xf1, 0x9f, 0xed, 0x87, 0xc9, 0x9f, 0x0e, 0x67, 0x7f, - 0xaa, 0xbf, 0x6f, 0xcc, 0xfe, 0xfc, 0xeb, 0xb7, 0x6f, 0x1f, 0xbe, 0x7d, 0xfb, 0x20, 0xd1, 0xc0, - 0x7f, 0xaa, 0x79, 0x2f, 0xb9, 0xac, 0xb3, 0x1d, 0x41, 0xec, 0x75, 0xc6, 0x22, 0xde, 0xe4, 0x3c, - 0x94, 0xc3, 0x5f, 0xe7, 0xcc, 0x6b, 0xb9, 0x74, 0x02, 0x3f, 0x27, 0xee, 0xc7, 0x1b, 0xbb, 0xae, - 0x04, 0x7e, 0x3a, 0x27, 0x3f, 0xd5, 0x35, 0xd6, 0x09, 0x1d, 0x1a, 0x52, 0xe7, 0xe8, 0x7e, 0xd6, - 0x14, 0xee, 0x81, 0x53, 0x54, 0xe6, 0xba, 0x5a, 0x36, 0xba, 0x35, 0x2b, 0xc5, 0x2b, 0x80, 0x62, - 0xcd, 0xb4, 0xfc, 0x56, 0xb8, 0xa6, 0x50, 0xe8, 0x80, 0x95, 0x6c, 0x49, 0x61, 0x03, 0x25, 0x85, - 0xb9, 0xe6, 0xd0, 0x28, 0x29, 0x4c, 0xba, 0x6a, 0x50, 0x52, 0x08, 0x82, 0x0a, 0x04, 0x55, 0xae, - 0x5c, 0x0c, 0xb6, 0xc5, 0xb2, 0x49, 0xdc, 0xb1, 0x2d, 0x56, 0x9c, 0x29, 0xc0, 0xb6, 0x98, 0xc2, - 0x44, 0x11, 0x25, 0x85, 0xc0, 0x1e, 0xc0, 0x1e, 0x28, 0x29, 0x44, 0x49, 0xe1, 0x9b, 0xdf, 0x88, - 0x92, 0x42, 0xf8, 0x2f, 0xf8, 0x2f, 0xe4, 0x4e, 0xc8, 0x9d, 0x90, 0x3b, 0x21, 0x77, 0x42, 0xee, - 0x84, 0x92, 0x42, 0xa0, 0x0e, 0xa0, 0x8e, 0xcd, 0x42, 0x1d, 0x28, 0x29, 0xd4, 0x02, 0xc5, 0x14, - 0x42, 0x32, 0xc5, 0xd0, 0x4c, 0xdd, 0x70, 0x69, 0x81, 0x6a, 0x9a, 0xf0, 0x82, 0x2e, 0xe8, 0xa6, - 0x13, 0x3c, 0x28, 0x84, 0x72, 0x5a, 0x20, 0x5d, 0x56, 0x53, 0x85, 0x92, 0xc2, 0xec, 0x20, 0xa0, - 0xa2, 0x35, 0x87, 0x92, 0x42, 0x91, 0x06, 0x51, 0x52, 0x98, 0x69, 0xb6, 0x83, 0x92, 0xc2, 0x67, - 0x1b, 0x43, 0x49, 0xe1, 0x33, 0xcf, 0x2b, 0x2f, 0x29, 0x4c, 0xa1, 0xa3, 0x99, 0x7e, 0x84, 0x14, - 0x6b, 0xc7, 0xe7, 0xa8, 0x36, 0x2a, 0xa0, 0xde, 0x39, 0x7d, 0x37, 0x0f, 0xc7, 0x36, 0xf7, 0x66, - 0x31, 0xa4, 0x3d, 0x6f, 0xf9, 0x7a, 0xae, 0xfe, 0x7e, 0xdd, 0x9b, 0xb5, 0xfc, 0x25, 0x71, 0xd6, - 0x97, 0x40, 0xce, 0xf4, 0x9d, 0xc4, 0x70, 0xa7, 0x94, 0xe8, 0x4f, 0x29, 0x83, 0x9a, 0x5a, 0x92, - 0x3f, 0xa9, 0x54, 0xea, 0x73, 0xea, 0xfb, 0x5f, 0xce, 0x9a, 0x17, 0xea, 0xe5, 0xf7, 0xa1, 0xca, - 0xaa, 0x86, 0x58, 0xd9, 0x6c, 0x55, 0x56, 0x31, 0x39, 0xe1, 0xb5, 0xf9, 0x16, 0x75, 0x4c, 0xcf, - 0xd9, 0x4c, 0xcb, 0xb3, 0x5d, 0x3f, 0x62, 0xde, 0xb0, 0x62, 0xfb, 0x1e, 0x27, 0xcc, 0xa3, 0x61, - 0x65, 0xe0, 0x87, 0x53, 0x33, 0x5a, 0x56, 0x86, 0x44, 0xb1, 0x72, 0x3e, 0xb3, 0xbf, 0x79, 0x0e, - 0xe1, 0xa4, 0xe2, 0x7b, 0xcf, 0xd9, 0xd2, 0x87, 0x4a, 0xa5, 0x7f, 0x4b, 0x23, 0x5a, 0x21, 0x21, - 0x8d, 0x1b, 0x89, 0x38, 0xf1, 0x1c, 0x12, 0x3a, 0xdf, 0xbc, 0xb3, 0xc6, 0xfb, 0xca, 0xe2, 0xb3, - 0x23, 0x7e, 0xef, 0xd2, 0xf8, 0x0d, 0xd1, 0x07, 0x48, 0xcc, 0xea, 0x24, 0x44, 0x51, 0x0f, 0xae, - 0x05, 0xbb, 0x48, 0x06, 0xe3, 0xab, 0xb7, 0x82, 0x71, 0x3a, 0xcc, 0xa3, 0x00, 0xeb, 0x54, 0x93, - 0x68, 0xa1, 0xbf, 0x81, 0x6a, 0x5e, 0x9f, 0xc5, 0x97, 0x47, 0xe4, 0x15, 0x6f, 0x5b, 0xbd, 0xf5, - 0x5d, 0xc7, 0xe2, 0x6c, 0xf4, 0xb6, 0x05, 0x2c, 0x8c, 0x6d, 0xf9, 0xc8, 0x1b, 0xa3, 0x9c, 0xcc, - 0x93, 0x24, 0xf6, 0x1c, 0x69, 0x3c, 0xc5, 0xaa, 0x67, 0x60, 0x49, 0xae, 0x44, 0x48, 0xeb, 0x07, - 0x84, 0xed, 0x5e, 0xd8, 0xce, 0x9f, 0xda, 0x35, 0x1b, 0x54, 0x35, 0x43, 0xd6, 0xa4, 0xd1, 0x37, - 0xad, 0x16, 0xba, 0x98, 0x06, 0x7a, 0xd1, 0x01, 0x22, 0x1b, 0x6c, 0x24, 0x3c, 0x4c, 0xb2, 0x0c, - 0x0b, 0x02, 0x0e, 0x1d, 0xff, 0x87, 0x04, 0x26, 0x8c, 0x9f, 0x4e, 0x0d, 0x05, 0x07, 0x64, 0xec, - 0xc6, 0x43, 0x55, 0xdb, 0x90, 0xfb, 0xe3, 0xd9, 0x00, 0x28, 0x4c, 0xd2, 0x4c, 0xb2, 0xe1, 0xcc, - 0xe4, 0x6f, 0x8f, 0x1f, 0x33, 0x8f, 0x6f, 0x37, 0x24, 0x2e, 0x8e, 0x17, 0xb8, 0x66, 0x48, 0x72, - 0x9b, 0x54, 0x8e, 0xd2, 0x55, 0x50, 0x36, 0xa1, 0x64, 0x2f, 0x6d, 0xb1, 0x77, 0x26, 0xdb, 0x8e, - 0xc2, 0x8d, 0xb2, 0x07, 0x39, 0x82, 0xbb, 0x70, 0x43, 0xbb, 0xd3, 0x38, 0xdc, 0x39, 0xdc, 0xdb, - 0x6f, 0x1c, 0xee, 0x16, 0x68, 0x8c, 0x33, 0x22, 0xeb, 0xaf, 0x0a, 0x70, 0x14, 0x7e, 0x1c, 0x88, - 0x87, 0xea, 0x71, 0x80, 0x40, 0x8d, 0x40, 0x8d, 0x40, 0x8d, 0x40, 0x8d, 0x40, 0x8d, 0x40, 0x8d, - 0x40, 0xad, 0x8b, 0xa5, 0x4d, 0x98, 0xa8, 0xb7, 0x7e, 0xc6, 0xc3, 0xa9, 0xed, 0x62, 0xf2, 0x95, - 0x98, 0xe2, 0xdb, 0x16, 0xfd, 0xc9, 0x3f, 0x72, 0xea, 0xd2, 0x11, 0xe5, 0xe1, 0xbd, 0xe5, 0x7b, - 0x96, 0x7d, 0x2b, 0x50, 0x5e, 0xf4, 0x24, 0xbe, 0x0c, 0x88, 0x1b, 0xc9, 0x10, 0x25, 0xd5, 0x8d, - 0xb9, 0x4a, 0x74, 0xc1, 0x0e, 0xa7, 0x92, 0x55, 0x52, 0x74, 0x99, 0x68, 0x2a, 0xf9, 0x24, 0x21, - 0xd9, 0x24, 0x61, 0x16, 0xb2, 0x01, 0x16, 0x12, 0x2c, 0x24, 0x58, 0x48, 0x24, 0x37, 0x48, 0x6e, - 0x90, 0xdc, 0x20, 0xb9, 0x41, 0x72, 0x83, 0xe4, 0x06, 0x2c, 0x24, 0x02, 0x35, 0x02, 0x35, 0x02, - 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0xb5, 0xde, 0x44, 0x3d, 0x4f, 0x2a, 0x2c, 0xc5, - 0x71, 0x20, 0xed, 0xe7, 0x50, 0x32, 0x2b, 0x7d, 0x4d, 0x5a, 0x27, 0x5a, 0x79, 0xad, 0xf6, 0xf5, - 0x37, 0xdf, 0x75, 0xfa, 0x93, 0x36, 0x34, 0xd4, 0xbe, 0xce, 0xde, 0x96, 0xb0, 0xec, 0x35, 0xfe, - 0xd7, 0xc9, 0x2a, 0x5e, 0x6b, 0xa8, 0x78, 0x55, 0x01, 0x92, 0xb2, 0xaf, 0x78, 0x4d, 0x0c, 0x72, - 0x16, 0xa3, 0xed, 0x52, 0x32, 0x08, 0x69, 0xa2, 0xf1, 0x9e, 0x33, 0xc7, 0x09, 0x60, 0x4c, 0xb5, - 0x3b, 0xb3, 0xb7, 0x0f, 0x1f, 0x66, 0x34, 0xfa, 0x56, 0xbc, 0xfc, 0x34, 0x18, 0x41, 0xe8, 0x8f, - 0x79, 0xd2, 0xf3, 0x32, 0x8b, 0x5e, 0xaf, 0x3e, 0x64, 0x46, 0x11, 0x78, 0xc2, 0xe3, 0x21, 0xe6, - 0x19, 0x45, 0xb2, 0xe3, 0x1d, 0x28, 0x04, 0xc7, 0x49, 0x41, 0xe5, 0xc9, 0xab, 0xd1, 0x27, 0x05, - 0xe5, 0x0e, 0x08, 0x8a, 0x9c, 0x0b, 0x34, 0x94, 0xa1, 0xc1, 0xc1, 0x3a, 0x25, 0xcb, 0xdd, 0x18, - 0x96, 0x46, 0x50, 0x31, 0x4c, 0x46, 0x29, 0x4c, 0x4e, 0x21, 0x4c, 0x85, 0x4c, 0x1a, 0xf3, 0x78, - 0x7d, 0x0f, 0xda, 0xac, 0xea, 0xa8, 0x2b, 0xc5, 0x3c, 0x8b, 0x6a, 0x2a, 0x4b, 0x07, 0xdd, 0xa2, - 0x80, 0xda, 0x52, 0x4a, 0x71, 0xe9, 0x9e, 0x82, 0xbd, 0xdd, 0xdd, 0xed, 0x5d, 0x88, 0xb3, 0xca, - 0xb1, 0x61, 0x92, 0x8b, 0x46, 0x81, 0xef, 0x8b, 0x78, 0xc8, 0xbc, 0xa1, 0x0a, 0x8d, 0xc8, 0x03, - 0xf0, 0x8d, 0xb9, 0xf2, 0x8d, 0x2b, 0x59, 0x79, 0x0e, 0xc5, 0x77, 0x2c, 0xb8, 0xdb, 0x49, 0x9f, - 0xf9, 0xc5, 0x4f, 0x95, 0xe4, 0x00, 0x70, 0xb0, 0x99, 0xa5, 0x77, 0x81, 0x31, 0x39, 0x1f, 0x71, - 0x9c, 0x90, 0x46, 0x11, 0x8d, 0xc4, 0x13, 0xbf, 0x65, 0x13, 0x9b, 0x21, 0xab, 0xc2, 0x02, 0xe4, - 0x7e, 0x92, 0x8b, 0x3e, 0x9b, 0xcc, 0x4f, 0xfc, 0x8a, 0xcd, 0xe9, 0x8a, 0x56, 0x70, 0xbd, 0xe6, - 0xac, 0x21, 0x39, 0xa1, 0xf6, 0x7a, 0x49, 0x84, 0xda, 0x85, 0x0c, 0x47, 0x95, 0x01, 0x29, 0x37, - 0x24, 0xe5, 0x06, 0xa5, 0xd2, 0xb0, 0xe4, 0x30, 0xbb, 0xa8, 0x50, 0xa8, 0xa8, 0xc1, 0x2d, 0x1a, - 0x48, 0x49, 0x96, 0xbf, 0xb9, 0xe8, 0x52, 0x91, 0xe8, 0x9a, 0xcc, 0x50, 0x99, 0x39, 0xaa, 0x34, - 0x4b, 0xe5, 0xe6, 0xa9, 0xda, 0x4c, 0xb5, 0x99, 0xab, 0x36, 0xb3, 0xd5, 0x61, 0xbe, 0x8a, 0x12, - 0x77, 0xc9, 0xf5, 0x26, 0x6b, 0xd6, 0x2b, 0xf9, 0x90, 0xba, 0x75, 0xb1, 0xcc, 0x96, 0x54, 0x2d, - 0x08, 0xc5, 0x9c, 0x90, 0x2a, 0x73, 0xd7, 0x61, 0xf6, 0xda, 0xcc, 0x5f, 0x97, 0x1b, 0xd0, 0xee, - 0x0e, 0xb4, 0xbb, 0x05, 0x9d, 0xee, 0x41, 0x8d, 0x9b, 0x50, 0xe4, 0x2e, 0x16, 0x1d, 0x95, 0xbe, - 0xb2, 0xe5, 0x55, 0x86, 0xc4, 0x92, 0xc3, 0xd6, 0xaf, 0xb3, 0x76, 0x0a, 0xdb, 0x54, 0xad, 0x99, - 0xbf, 0x68, 0xf8, 0xbf, 0xbf, 0xfc, 0xb2, 0xd0, 0xba, 0x9f, 0xa9, 0xdb, 0xff, 0x5b, 0x8f, 0xff, - 0x67, 0xfa, 0x73, 0x23, 0x96, 0xc5, 0x9f, 0xfd, 0xbc, 0xfb, 0xb5, 0x66, 0xed, 0xc6, 0x9a, 0xf9, - 0xbf, 0xfe, 0xb3, 0xfd, 0x90, 0xfe, 0xc1, 0xff, 0xa8, 0x5b, 0xa4, 0x57, 0x05, 0xb9, 0x2e, 0x42, - 0xc5, 0x9e, 0xc4, 0xd4, 0x05, 0x59, 0x2e, 0xf5, 0x86, 0x31, 0x37, 0xa9, 0x38, 0xb6, 0x3d, 0x6e, - 0x1e, 0x61, 0x0e, 0x61, 0x0e, 0x61, 0x6e, 0x83, 0xc2, 0xdc, 0x98, 0x79, 0xfc, 0x40, 0x43, 0x7c, - 0xdb, 0x55, 0xd8, 0xa4, 0xda, 0x2b, 0xba, 0xe6, 0xff, 0xa9, 0xb5, 0xa6, 0x8a, 0xae, 0x2b, 0xbb, - 0x34, 0xf9, 0xd4, 0xb5, 0xe6, 0x15, 0xef, 0xf0, 0xaf, 0xb5, 0xaf, 0xf1, 0x72, 0x28, 0xc5, 0xd6, - 0xf6, 0x78, 0x4a, 0x35, 0x5c, 0xed, 0x95, 0xf5, 0x94, 0x6e, 0x37, 0x0c, 0x9e, 0xd3, 0x77, 0xc5, - 0x6c, 0xad, 0x30, 0x08, 0x33, 0x57, 0xd6, 0x46, 0xf2, 0x02, 0xa0, 0xb5, 0xf6, 0xd4, 0x6c, 0xc2, - 0x4f, 0x52, 0xb7, 0xad, 0xc5, 0x8e, 0xe1, 0xfc, 0xa7, 0x54, 0x7b, 0xf3, 0xea, 0x87, 0x5b, 0xe6, - 0xe4, 0x9d, 0x02, 0x4e, 0x4b, 0x1d, 0x97, 0xa5, 0xea, 0x08, 0x1f, 0xa8, 0xea, 0x22, 0x81, 0x76, - 0x50, 0xd5, 0xd9, 0x83, 0x71, 0x81, 0xd3, 0x4c, 0x89, 0xe9, 0xa5, 0x7d, 0x35, 0x57, 0x31, 0x3e, - 0x39, 0x0d, 0x25, 0x3b, 0x79, 0xf9, 0xb8, 0xcf, 0x74, 0xfa, 0x64, 0x6f, 0xce, 0x56, 0x1a, 0xdd, - 0xb2, 0x37, 0xe7, 0x49, 0x95, 0x13, 0x6d, 0xc0, 0x89, 0xc2, 0x89, 0x1a, 0xe4, 0x44, 0xb1, 0xdf, - 0x97, 0x27, 0x66, 0xd2, 0x61, 0xf6, 0xda, 0xcc, 0x5f, 0x97, 0x1b, 0xd0, 0xee, 0x0e, 0xb4, 0xbb, - 0x05, 0x9d, 0xee, 0x41, 0x6d, 0xca, 0x8c, 0xfd, 0x3e, 0xec, 0xf7, 0x61, 0xbf, 0x2f, 0xd1, 0x1c, - 0xf8, 0x21, 0x1b, 0xaa, 0x3c, 0x09, 0xb6, 0x70, 0xc7, 0xd3, 0x76, 0x11, 0xd8, 0x10, 0xd8, 0x10, - 0xd8, 0x36, 0x2a, 0xb0, 0xcd, 0xc3, 0x9a, 0xa5, 0xd4, 0x05, 0x3c, 0x8a, 0x6e, 0x3b, 0x0a, 0xdb, - 0x6c, 0x79, 0xe3, 0xd1, 0x64, 0x28, 0x1e, 0x50, 0xc4, 0x91, 0x74, 0x8e, 0x51, 0xc4, 0x01, 0x17, - 0x0f, 0x17, 0xbf, 0xb1, 0x2e, 0x1e, 0x45, 0x1c, 0x0a, 0xd7, 0x23, 0x8a, 0x38, 0x5e, 0x6e, 0x1f, - 0x45, 0x1c, 0xb9, 0x4d, 0x29, 0x8a, 0x38, 0xd4, 0xb7, 0x86, 0x22, 0x0e, 0xe3, 0x8a, 0x38, 0x52, - 0x48, 0xba, 0xaa, 0x1f, 0x6d, 0x99, 0x4d, 0xc8, 0xbb, 0x30, 0x54, 0x58, 0xc5, 0x11, 0xb7, 0x86, - 0x23, 0x87, 0x99, 0xe1, 0x78, 0x6c, 0x41, 0x62, 0x0b, 0xf2, 0x55, 0xd3, 0xb6, 0x86, 0xa1, 0x3f, - 0xd6, 0xb0, 0x15, 0xb9, 0xd2, 0xb6, 0xda, 0xb4, 0xbe, 0x8e, 0xb4, 0x1e, 0x69, 0x3d, 0xd2, 0x7a, - 0xf9, 0x8e, 0xaa, 0x72, 0x23, 0x8b, 0x06, 0x15, 0x09, 0x14, 0xbc, 0x68, 0x04, 0x4a, 0x04, 0x0b, - 0x34, 0xbb, 0x15, 0x6d, 0xee, 0x45, 0xa7, 0x9b, 0xd1, 0xee, 0x6e, 0x74, 0xbb, 0x9d, 0xcc, 0xdc, - 0x4f, 0x66, 0x6e, 0x28, 0x0b, 0x77, 0xa4, 0x29, 0xcb, 0x55, 0xbc, 0xde, 0x55, 0xbb, 0xa9, 0x45, - 0xc3, 0xc4, 0xb6, 0x69, 0xc0, 0xad, 0x91, 0xef, 0x68, 0x5c, 0x90, 0x0b, 0xb1, 0xa3, 0x95, 0x97, - 0x69, 0x5a, 0x29, 0x2b, 0xb7, 0x81, 0xc5, 0xd7, 0x0f, 0xeb, 0x7a, 0x8f, 0x66, 0xde, 0x48, 0x97, - 0xe3, 0xcc, 0xc2, 0x81, 0x66, 0xe6, 0x48, 0xb3, 0x72, 0xa8, 0x99, 0x3b, 0xd6, 0xcc, 0x1d, 0x6c, - 0x96, 0x8e, 0x56, 0x8f, 0xc3, 0xd5, 0xe4, 0x78, 0x17, 0x03, 0xa3, 0x7c, 0xfb, 0xe7, 0x45, 0x6b, - 0xb9, 0xf1, 0x7d, 0x97, 0x12, 0x4f, 0xa7, 0xbd, 0xcc, 0xd1, 0x5e, 0xfd, 0x9d, 0x19, 0x13, 0xab, - 0x63, 0x57, 0x81, 0x38, 0x77, 0x34, 0xe4, 0x2c, 0xa2, 0x93, 0xe5, 0x3e, 0xe5, 0x36, 0xef, 0x88, - 0x9b, 0x41, 0x0c, 0x7c, 0xfe, 0xbd, 0xfa, 0xc3, 0x61, 0xbd, 0x56, 0x43, 0x30, 0x44, 0x30, 0x44, - 0x30, 0x44, 0x30, 0x34, 0x27, 0x18, 0x4a, 0xdf, 0x31, 0x91, 0xd4, 0x77, 0xed, 0x69, 0x7c, 0x85, - 0x9e, 0xe2, 0x89, 0xa7, 0xff, 0xe9, 0x35, 0xf7, 0x8a, 0xee, 0xe2, 0x8a, 0x8c, 0x83, 0xca, 0xda, - 0xeb, 0xe6, 0x3b, 0xf5, 0xf5, 0x8c, 0xde, 0x97, 0xc1, 0xc6, 0x7d, 0x46, 0xee, 0xe0, 0xf1, 0x12, - 0x21, 0x3f, 0x4b, 0xbf, 0x44, 0x76, 0x6a, 0x87, 0xbb, 0x25, 0x5e, 0x25, 0xef, 0xcc, 0x6c, 0xfd, - 0x6a, 0x83, 0x93, 0x99, 0x20, 0xa4, 0x74, 0x14, 0x70, 0xfd, 0xd9, 0xcb, 0xfc, 0x45, 0xfa, 0xd3, - 0x95, 0x09, 0xbe, 0x43, 0xbe, 0x82, 0x7c, 0x05, 0xf9, 0x0a, 0xf2, 0x15, 0x73, 0xf2, 0x15, 0x90, - 0x77, 0x59, 0xc6, 0x3b, 0xcb, 0xa1, 0x2e, 0xb9, 0xcf, 0x2c, 0xea, 0xcd, 0x5e, 0xa7, 0x3f, 0xf6, - 0x81, 0xa8, 0x43, 0xe0, 0x43, 0xe0, 0x43, 0xe0, 0x33, 0x28, 0xf0, 0x81, 0xa8, 0x4b, 0xfc, 0x1f, - 0x88, 0x3a, 0x25, 0x2c, 0x4c, 0x0d, 0x44, 0x9d, 0xd4, 0x12, 0xd9, 0x00, 0xa2, 0x6e, 0x7b, 0xaf, - 0x56, 0x03, 0x51, 0x57, 0xb4, 0xd6, 0x37, 0x9b, 0xa8, 0x63, 0x7e, 0xc8, 0x78, 0x26, 0x39, 0xcb, - 0xec, 0x4d, 0xa8, 0x2c, 0x40, 0xc2, 0x82, 0x84, 0x05, 0x09, 0x0b, 0x12, 0x96, 0x8a, 0x4e, 0xd5, - 0x85, 0x97, 0x5c, 0xd7, 0x2e, 0xf2, 0x15, 0xe4, 0x2b, 0x28, 0x2c, 0x40, 0xbe, 0x92, 0x60, 0x89, - 0x34, 0x76, 0x77, 0x90, 0xae, 0x20, 0x5d, 0x29, 0x4e, 0xba, 0x72, 0xc7, 0x42, 0x3e, 0x26, 0xae, - 0x25, 0x7b, 0xdd, 0x79, 0xe2, 0xa8, 0xfc, 0xf4, 0x85, 0x48, 0x2b, 0x90, 0x56, 0x20, 0xad, 0x40, - 0x5a, 0x61, 0x4c, 0x5a, 0xb1, 0xd4, 0xeb, 0xcc, 0xa2, 0x06, 0xe0, 0x50, 0xe3, 0x3b, 0x66, 0x63, - 0x66, 0x7c, 0x6e, 0xa1, 0x59, 0x22, 0xfc, 0xcd, 0x39, 0x3a, 0xc8, 0xe0, 0x5d, 0xba, 0x24, 0xc5, - 0x5f, 0x7c, 0xa1, 0xa9, 0x52, 0xe3, 0xd9, 0x82, 0xbc, 0x8c, 0xf2, 0xa3, 0x6c, 0x8d, 0x68, 0x0f, - 0x46, 0xa4, 0xd6, 0x88, 0x88, 0x35, 0x68, 0x5a, 0xa7, 0x57, 0xff, 0xd4, 0xdf, 0xef, 0x3c, 0x7c, - 0xfc, 0xf5, 0x9f, 0xfd, 0x87, 0xa7, 0xbf, 0xfc, 0xf7, 0xb9, 0x7f, 0x56, 0x7f, 0xbf, 0xff, 0xf0, - 0xf1, 0x85, 0xbf, 0xd9, 0x7b, 0xf8, 0x98, 0xb0, 0x8d, 0xdd, 0x87, 0x5f, 0xd6, 0xfe, 0xe9, 0xe4, - 0xf7, 0x8d, 0x97, 0x1e, 0xd8, 0x79, 0xe1, 0x81, 0xed, 0x97, 0x1e, 0xd8, 0x7e, 0xe1, 0x81, 0x17, - 0x3f, 0xa9, 0xf1, 0xc2, 0x03, 0xbb, 0x0f, 0xff, 0xae, 0xfd, 0xfb, 0x5f, 0x9e, 0xff, 0xa7, 0x7b, - 0x0f, 0xbf, 0xfe, 0xfb, 0xd2, 0xdf, 0xed, 0x3f, 0xfc, 0xfb, 0xf1, 0xd7, 0x12, 0xb8, 0x14, 0xd3, - 0xf2, 0x5d, 0x4d, 0xc8, 0xee, 0x8c, 0x45, 0xbc, 0xc9, 0x79, 0xa8, 0x17, 0xdd, 0x9d, 0x33, 0xaf, - 0xe5, 0xc6, 0x27, 0x76, 0x27, 0x39, 0xb0, 0x37, 0x76, 0x5d, 0x8d, 0xc0, 0xeb, 0x9c, 0xfc, 0xcc, - 0xee, 0x65, 0x9d, 0xd0, 0xa1, 0x21, 0x75, 0x8e, 0xee, 0x67, 0xaf, 0x02, 0xd9, 0x61, 0xc5, 0x3a, - 0x96, 0xa1, 0xc5, 0x9c, 0xec, 0xe8, 0x8e, 0xe5, 0x2b, 0x41, 0x78, 0x80, 0xf0, 0x00, 0xe1, 0x01, - 0xc2, 0xc3, 0x18, 0xc2, 0x03, 0xfb, 0xa8, 0x05, 0x4a, 0xd3, 0xb0, 0x8f, 0xaa, 0xee, 0x7d, 0xd8, - 0x47, 0x35, 0x76, 0x89, 0x34, 0x76, 0x71, 0x3e, 0x7b, 0x53, 0xf2, 0xca, 0x0d, 0x13, 0x82, 0x54, - 0x2c, 0xf7, 0xbf, 0xd6, 0xbe, 0x56, 0xf9, 0xff, 0xbb, 0x30, 0x0c, 0xb6, 0x96, 0x9a, 0xd8, 0xb3, - 0x7b, 0xc9, 0xab, 0x05, 0xbd, 0x5f, 0x42, 0xe1, 0xd4, 0x55, 0x17, 0xc3, 0x64, 0xf1, 0x90, 0xd8, - 0xdf, 0x99, 0xa7, 0x51, 0x21, 0xf8, 0x99, 0x77, 0x41, 0x2d, 0x18, 0x6a, 0xc1, 0x79, 0x67, 0x89, - 0x50, 0x0b, 0xce, 0x2c, 0x48, 0x68, 0x53, 0x0b, 0xd6, 0x24, 0x6e, 0xbe, 0x66, 0x4c, 0x5a, 0x44, - 0xce, 0x35, 0xbb, 0x2f, 0x90, 0x61, 0x20, 0xc3, 0x40, 0x86, 0x15, 0x91, 0x0c, 0xd3, 0xe5, 0x0e, - 0x17, 0x2f, 0x98, 0x9f, 0xb5, 0xb2, 0x1c, 0x6a, 0x87, 0x74, 0x36, 0x07, 0x9a, 0xd7, 0xf3, 0xd3, - 0x73, 0x5e, 0x2b, 0xef, 0xd6, 0xbc, 0xce, 0x32, 0x10, 0xaa, 0xc8, 0x98, 0x40, 0xd0, 0xee, 0xb2, - 0xb3, 0x74, 0xdd, 0x99, 0xbb, 0xf0, 0xac, 0x5d, 0x79, 0x6e, 0x2e, 0x3d, 0x37, 0xd7, 0x9e, 0x87, - 0x8b, 0xcf, 0x88, 0x6e, 0xd2, 0x6c, 0x6f, 0xda, 0xf7, 0x41, 0xd6, 0xac, 0x4d, 0xf7, 0x7e, 0xc8, - 0x53, 0xd7, 0x98, 0x01, 0xd3, 0x99, 0xd1, 0xfe, 0xc8, 0xfc, 0xbf, 0x6c, 0xbc, 0x47, 0x25, 0xeb, - 0xfd, 0x92, 0x8c, 0x63, 0xda, 0xda, 0x6b, 0x33, 0xd6, 0xcd, 0x58, 0xbc, 0x37, 0x07, 0x8a, 0x3c, - 0x23, 0xef, 0xf2, 0x78, 0x29, 0x65, 0xb8, 0xaf, 0x52, 0x94, 0xa5, 0x94, 0xd9, 0x79, 0xb5, 0x42, - 0x2c, 0xa6, 0x77, 0xe5, 0x78, 0x8b, 0xa9, 0x75, 0x89, 0x1a, 0x8d, 0xb9, 0x1a, 0x13, 0xe5, 0xcb, - 0x1d, 0x8e, 0xec, 0xb2, 0xb7, 0xa7, 0x2f, 0x46, 0x3a, 0x85, 0x74, 0x0a, 0xe9, 0x14, 0xd2, 0x29, - 0xa4, 0x53, 0x33, 0x6b, 0x73, 0x29, 0x19, 0x84, 0x74, 0x90, 0xe5, 0x59, 0x93, 0xfd, 0x6c, 0xce, - 0x9a, 0xcc, 0x36, 0xd8, 0x6d, 0x8b, 0x0d, 0x3e, 0xae, 0x6c, 0xa8, 0x3f, 0xf9, 0xc5, 0xec, 0xcf, - 0xde, 0x64, 0x38, 0x8c, 0x5e, 0x3a, 0x99, 0x14, 0xea, 0xaf, 0x26, 0x76, 0x99, 0xd5, 0xd0, 0xaf, - 0xa6, 0x00, 0xd9, 0xbf, 0x34, 0x93, 0x02, 0xfe, 0x0c, 0xd0, 0x9d, 0x51, 0x3b, 0x0a, 0x9a, 0xab, - 0x70, 0x16, 0xef, 0xc9, 0xb4, 0x1a, 0x67, 0xbd, 0x6e, 0x44, 0x4b, 0x81, 0x8e, 0xbe, 0x19, 0xd7, - 0x71, 0x28, 0x24, 0xe2, 0x84, 0x67, 0x70, 0x33, 0xee, 0xf4, 0x35, 0x86, 0xef, 0x77, 0x37, 0xb0, - 0xdf, 0x5d, 0x18, 0x54, 0x8f, 0xfd, 0xee, 0xcd, 0x8d, 0x4e, 0xd8, 0xef, 0x56, 0x3b, 0x9c, 0xd8, - 0xef, 0x06, 0x41, 0x03, 0x82, 0x06, 0x04, 0x0d, 0x08, 0x9a, 0x67, 0xac, 0x0d, 0xfb, 0xdd, 0xb2, - 0xff, 0x61, 0xbf, 0x5b, 0xcb, 0x6b, 0xb1, 0xdf, 0xad, 0x9b, 0xec, 0xc2, 0x7e, 0x77, 0xa9, 0x17, - 0x13, 0xf6, 0xbb, 0x73, 0xfd, 0x7e, 0xec, 0x77, 0x23, 0x9d, 0x42, 0x3a, 0x85, 0x74, 0x0a, 0xe9, - 0xd4, 0x26, 0xa5, 0x53, 0xd8, 0xef, 0xc6, 0x7e, 0xb7, 0x58, 0x62, 0x87, 0xfd, 0x6e, 0xa3, 0xd0, - 0x1d, 0xf6, 0xbb, 0x9f, 0x79, 0x4f, 0xde, 0xfb, 0xdd, 0xd3, 0x6d, 0x58, 0x08, 0x95, 0x14, 0x7f, - 0xc9, 0xe4, 0xbd, 0x54, 0xaa, 0x5a, 0x6a, 0x0d, 0xc2, 0xb1, 0xcd, 0xbd, 0x19, 0x12, 0x68, 0xcf, - 0xdf, 0x79, 0x7d, 0x19, 0x7f, 0xf0, 0x17, 0x97, 0x78, 0xd7, 0xed, 0xe0, 0x6e, 0xe7, 0xba, 0x39, - 0xfd, 0xca, 0xeb, 0x2f, 0x61, 0x18, 0x7c, 0x9a, 0x7c, 0xdf, 0xf5, 0xe2, 0xdf, 0xf6, 0xe7, 0x9f, - 0xb7, 0x01, 0x9a, 0x2a, 0x7a, 0x4a, 0x33, 0xb4, 0x96, 0x64, 0x68, 0x57, 0x4e, 0x69, 0x40, 0x39, - 0x25, 0xb3, 0x84, 0x12, 0xca, 0x29, 0xe5, 0x8b, 0x5a, 0xda, 0x94, 0x53, 0x88, 0x6d, 0xd3, 0x80, - 0x5b, 0x23, 0xdf, 0xc9, 0xa0, 0x9a, 0x6c, 0xf5, 0x65, 0xfa, 0xaf, 0x7f, 0x1d, 0x10, 0x37, 0xa2, - 0x10, 0x2e, 0xce, 0x8d, 0xb1, 0x43, 0xed, 0x9a, 0x71, 0x8c, 0x1c, 0x6a, 0xd7, 0x72, 0x63, 0xdc, - 0x16, 0xd6, 0x72, 0xe3, 0xfb, 0x2e, 0x25, 0x5e, 0x16, 0xd7, 0x34, 0xd5, 0x37, 0xb8, 0x80, 0x9a, - 0x38, 0x77, 0x34, 0xe4, 0x2c, 0x8a, 0x79, 0xa2, 0x69, 0x6e, 0x76, 0x47, 0xdc, 0x0c, 0x62, 0xe0, - 0xf3, 0xef, 0xc5, 0x6d, 0xe8, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0x95, 0xa7, 0x55, - 0x7c, 0xf5, 0xbd, 0x0c, 0x62, 0xe1, 0x1e, 0x64, 0xfc, 0xdf, 0xee, 0x08, 0x64, 0xfc, 0xd5, 0xbd, - 0x0f, 0x32, 0xfe, 0xc6, 0x2e, 0x91, 0x9d, 0xda, 0x21, 0x74, 0xfc, 0x0b, 0xd7, 0xfa, 0x26, 0xdf, - 0x87, 0x6e, 0x8f, 0xc3, 0x70, 0x92, 0x4e, 0xcc, 0x0f, 0x21, 0x65, 0xa0, 0x84, 0xfc, 0xf4, 0x8d, - 0x48, 0x2d, 0x90, 0x5a, 0x20, 0xb5, 0x40, 0x6a, 0x61, 0x54, 0x6a, 0x81, 0x0b, 0xc2, 0x90, 0x59, - 0x64, 0x06, 0x1b, 0x6b, 0xc8, 0x2c, 0x90, 0x59, 0xbc, 0xbe, 0x44, 0x70, 0x41, 0x18, 0x12, 0x8b, - 0x42, 0x25, 0x16, 0x41, 0x48, 0xe9, 0x28, 0xe0, 0xfa, 0xf3, 0x89, 0xf9, 0x8b, 0xf4, 0xef, 0x83, - 0x4c, 0xd0, 0x1d, 0xb2, 0x15, 0x64, 0x2b, 0xc8, 0x56, 0x90, 0xad, 0x98, 0x93, 0xad, 0xa0, 0x2a, - 0x20, 0xcb, 0x78, 0x67, 0x39, 0xd4, 0x25, 0xf7, 0x99, 0x45, 0xbd, 0xd9, 0xeb, 0xf4, 0xc7, 0x3e, - 0x54, 0x00, 0x20, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x19, 0x14, 0xf8, 0x50, 0x01, 0x90, 0xf8, 0x3f, - 0xf0, 0x74, 0x4a, 0x48, 0x18, 0xf0, 0x74, 0x72, 0x4b, 0x64, 0x03, 0x78, 0xba, 0xed, 0xbd, 0x5a, - 0x0d, 0x44, 0x5d, 0xd1, 0x5a, 0xdf, 0x6c, 0xa2, 0x2e, 0xab, 0x9d, 0x7f, 0xdd, 0x3b, 0xfe, 0x28, - 0x59, 0x46, 0xc2, 0x82, 0x84, 0x05, 0x09, 0x8b, 0xc9, 0x09, 0x0b, 0xea, 0x0a, 0x90, 0xaf, 0x64, - 0x06, 0x46, 0x51, 0xb1, 0x8c, 0x7c, 0xe5, 0x8d, 0x25, 0x92, 0x99, 0x40, 0x28, 0xd2, 0x15, 0xa4, - 0x2b, 0x49, 0x96, 0xc9, 0x1d, 0x0b, 0xf9, 0x98, 0xb8, 0xd6, 0x4c, 0xd8, 0x46, 0x7f, 0xd6, 0xf2, - 0xf4, 0x85, 0x48, 0x2b, 0x90, 0x56, 0x20, 0xad, 0x40, 0x5a, 0x61, 0x4c, 0x5a, 0xc1, 0x02, 0xcd, - 0xbe, 0x6b, 0xd5, 0x7f, 0xd5, 0x0f, 0x35, 0xbe, 0x63, 0x36, 0x66, 0xc6, 0xe7, 0x16, 0xcb, 0x99, - 0xb9, 0xdb, 0xc9, 0x60, 0x6e, 0xd6, 0xe6, 0xe8, 0x20, 0x1b, 0x7d, 0x54, 0x4e, 0x43, 0x2f, 0xb3, - 0x3b, 0x27, 0xaa, 0xff, 0xfd, 0xe5, 0x97, 0xaf, 0x35, 0xeb, 0xf0, 0xea, 0xdf, 0xaf, 0x75, 0xeb, - 0xf0, 0x6a, 0xfa, 0x63, 0x3d, 0xfe, 0x9f, 0xe9, 0xcf, 0x8d, 0xaf, 0x35, 0x6b, 0x67, 0xfe, 0xf3, - 0xee, 0xd7, 0x9a, 0xb5, 0x7b, 0xf5, 0xeb, 0xb7, 0x6f, 0x1f, 0x7e, 0xfd, 0x67, 0xfb, 0x21, 0xfd, - 0x83, 0xff, 0xa9, 0x9a, 0xae, 0xf2, 0xfe, 0xbe, 0x44, 0x46, 0xb4, 0x07, 0x23, 0x52, 0x6b, 0x44, - 0xc4, 0x1a, 0x34, 0xad, 0xd3, 0xab, 0x7f, 0xea, 0xef, 0x77, 0x1e, 0x3e, 0xfe, 0xfa, 0xcf, 0xfe, - 0xc3, 0xd3, 0x5f, 0xfe, 0xfb, 0xdc, 0x3f, 0xab, 0xbf, 0xdf, 0x7f, 0xf8, 0xf8, 0xc2, 0xdf, 0xec, - 0x3d, 0x7c, 0x4c, 0xd8, 0xc6, 0xee, 0xc3, 0x2f, 0x6b, 0xff, 0x74, 0xf2, 0xfb, 0xc6, 0x4b, 0x0f, - 0xec, 0xbc, 0xf0, 0xc0, 0xf6, 0x4b, 0x0f, 0x6c, 0xbf, 0xf0, 0xc0, 0x8b, 0x9f, 0xd4, 0x78, 0xe1, - 0x81, 0xdd, 0x87, 0x7f, 0xd7, 0xfe, 0xfd, 0x2f, 0xcf, 0xff, 0xd3, 0xbd, 0x87, 0x5f, 0xff, 0x7d, - 0xe9, 0xef, 0xf6, 0x1f, 0xfe, 0xfd, 0xf8, 0x6b, 0x09, 0x5c, 0x8a, 0x69, 0xf9, 0xae, 0x26, 0x64, - 0x97, 0x89, 0x4e, 0x76, 0xa6, 0xfa, 0xd8, 0x99, 0xea, 0x62, 0x67, 0xa3, 0x87, 0x6d, 0x16, 0xd9, - 0x11, 0x0b, 0xfc, 0x86, 0x16, 0x73, 0xb2, 0xa3, 0x3b, 0x96, 0xaf, 0x04, 0xe1, 0x01, 0xc2, 0x03, - 0x84, 0x07, 0x08, 0x0f, 0x63, 0x08, 0x0f, 0xec, 0xa3, 0x16, 0x28, 0x4d, 0xc3, 0x3e, 0xaa, 0xba, - 0xf7, 0x61, 0x1f, 0xd5, 0xd8, 0x25, 0x82, 0xf3, 0xd9, 0x9b, 0x93, 0x57, 0xe2, 0x5e, 0x14, 0xa5, - 0xed, 0x67, 0x7a, 0x2f, 0x8a, 0x86, 0xfb, 0x72, 0x8a, 0x79, 0xd7, 0x88, 0xfe, 0xd4, 0x32, 0xb3, - 0x94, 0x52, 0x93, 0x4f, 0xd7, 0x96, 0x42, 0xe2, 0x0e, 0x92, 0x22, 0xa4, 0x88, 0xb8, 0x83, 0x24, - 0xb3, 0x08, 0xa1, 0x2d, 0xf5, 0xcb, 0xe0, 0x92, 0x49, 0x9d, 0x97, 0x4a, 0x2e, 0x2e, 0x91, 0xfc, - 0xf0, 0x61, 0x6b, 0x1a, 0xd2, 0xb6, 0xd6, 0x7d, 0x65, 0x51, 0x63, 0xd1, 0xbb, 0x02, 0xad, 0xb4, - 0x89, 0xd3, 0xd0, 0x19, 0x69, 0xf4, 0x70, 0xfa, 0x5a, 0x39, 0x7c, 0xad, 0x9c, 0xbd, 0x1e, 0x8e, - 0x5e, 0xd5, 0x62, 0xd0, 0x04, 0x48, 0x33, 0x05, 0xa2, 0x55, 0xa5, 0xd7, 0xca, 0x09, 0xde, 0xc2, - 0xa7, 0xc6, 0xf7, 0xc8, 0x7b, 0x0a, 0xb9, 0x16, 0x24, 0x97, 0x95, 0xea, 0xe5, 0xa4, 0x7f, 0x19, - 0xc9, 0x4d, 0x9b, 0xf8, 0x60, 0x8b, 0x3d, 0x29, 0x38, 0x3d, 0x73, 0x97, 0x2f, 0x0c, 0x72, 0xd5, - 0xf8, 0x74, 0xa5, 0x3e, 0x5c, 0xa9, 0xcf, 0x56, 0xe3, 0xa3, 0x45, 0x67, 0xa7, 0x39, 0x1e, 0x4e, - 0xba, 0x41, 0x1d, 0x29, 0x0e, 0x5b, 0xce, 0xda, 0x16, 0xe8, 0x30, 0xd1, 0x1d, 0xdd, 0x13, 0xab, - 0xfa, 0xb8, 0x6a, 0x61, 0x31, 0x54, 0xff, 0x18, 0xdb, 0xd9, 0xf4, 0xc7, 0xa5, 0xb5, 0x3d, 0xfa, - 0xb3, 0xa4, 0xab, 0xae, 0x9e, 0xd0, 0xc8, 0x0e, 0x59, 0x30, 0x73, 0x30, 0xd5, 0xa6, 0xe3, 0xb0, - 0xc9, 0xcf, 0xc4, 0xad, 0xb4, 0xbb, 0x95, 0xc9, 0x3b, 0x2a, 0x03, 0x32, 0x62, 0xee, 0x7d, 0x65, - 0xea, 0x25, 0xc6, 0x61, 0xec, 0x8b, 0x2a, 0x03, 0x3f, 0xfc, 0xe6, 0x2d, 0xbb, 0x24, 0xfb, 0x15, - 0x6a, 0xee, 0xf1, 0x54, 0x96, 0x33, 0xab, 0xcc, 0x91, 0x95, 0xe7, 0xc4, 0xaa, 0x73, 0x60, 0x6d, - 0x39, 0xaf, 0xb6, 0x1c, 0x57, 0x47, 0x4e, 0x9b, 0x6f, 0x94, 0x57, 0x75, 0x4f, 0x66, 0x35, 0x8e, - 0xc0, 0xca, 0x56, 0xc6, 0x82, 0x43, 0x9b, 0xb4, 0xaa, 0x68, 0xee, 0x9e, 0x38, 0x9c, 0x96, 0x67, - 0xbb, 0x7e, 0xc4, 0xbc, 0xe1, 0xc4, 0xc1, 0x70, 0xc2, 0x3c, 0x1a, 0x4e, 0x9c, 0x4b, 0xe5, 0xcb, - 0xe5, 0x65, 0xb7, 0x12, 0x83, 0xd1, 0xa8, 0x72, 0x4b, 0x3c, 0xc7, 0xa5, 0x4e, 0xe5, 0xe6, 0xbe, - 0xc2, 0x6f, 0x59, 0xf4, 0xcd, 0x6b, 0x77, 0x2b, 0x0b, 0xdf, 0xa3, 0xea, 0xbb, 0xd4, 0x5e, 0x25, - 0xac, 0x9c, 0xbe, 0xd3, 0x41, 0xdb, 0x69, 0xa3, 0xeb, 0x74, 0xd1, 0x74, 0xda, 0xe9, 0x39, 0xed, - 0xb4, 0x9c, 0x4e, 0x3a, 0xee, 0xa1, 0x1c, 0x09, 0x53, 0xc6, 0x19, 0xc0, 0x95, 0x28, 0xc6, 0x54, - 0x93, 0x98, 0x69, 0x4d, 0xc8, 0x24, 0xac, 0x23, 0x6d, 0xde, 0x2e, 0xb6, 0x8c, 0xd3, 0x4f, 0x59, - 0xba, 0x27, 0x52, 0xc6, 0x65, 0xd9, 0x49, 0xd5, 0x32, 0x99, 0xe9, 0x46, 0x36, 0xf9, 0xf8, 0xa4, - 0x18, 0x9b, 0xaa, 0x3d, 0x8f, 0x66, 0xe9, 0xc6, 0x64, 0x79, 0xed, 0xce, 0xf4, 0xf9, 0x94, 0xb3, - 0x21, 0x16, 0x92, 0x85, 0x43, 0xaf, 0x4c, 0x88, 0x95, 0x0e, 0xa5, 0xb2, 0x21, 0x53, 0x59, 0x68, - 0x54, 0x16, 0x02, 0x55, 0x84, 0x3a, 0xbd, 0xd6, 0x2e, 0x8a, 0xba, 0xab, 0xce, 0xad, 0x1d, 0x58, - 0xb6, 0xcb, 0xa6, 0x9d, 0x13, 0x9c, 0xb0, 0xf9, 0x8a, 0x59, 0x6d, 0x4c, 0x70, 0xa4, 0x15, 0xdd, - 0x1e, 0x2f, 0xb9, 0x95, 0x2d, 0x8d, 0x79, 0x55, 0x60, 0x5c, 0x65, 0x98, 0x56, 0x15, 0x86, 0x55, - 0x8e, 0x59, 0x95, 0x63, 0x54, 0x95, 0x98, 0x34, 0x5b, 0x16, 0x56, 0x7a, 0x6b, 0x57, 0xa1, 0x4e, - 0xb9, 0xa4, 0x0e, 0xb9, 0x00, 0x12, 0x12, 0x08, 0x32, 0xd4, 0x23, 0x37, 0x2e, 0x75, 0xe4, 0x9d, - 0xd6, 0xbc, 0x21, 0x79, 0x87, 0x25, 0x71, 0xaf, 0x05, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x55, 0x99, - 0xfd, 0xd5, 0x88, 0x8f, 0xe5, 0x7d, 0xd5, 0xa4, 0x11, 0x38, 0x18, 0x38, 0x18, 0x38, 0x98, 0x14, - 0xab, 0x45, 0x5a, 0xbf, 0x5e, 0x81, 0x3e, 0xbd, 0xa2, 0x73, 0x48, 0x0a, 0xb6, 0x55, 0x54, 0x9e, - 0x23, 0x52, 0x5c, 0x30, 0xbc, 0x38, 0xe4, 0xb1, 0xa7, 0x48, 0x13, 0x42, 0xc7, 0x19, 0x0e, 0x05, - 0xc5, 0x55, 0x4a, 0x0f, 0xea, 0xcc, 0xe7, 0x60, 0x5b, 0xf1, 0x1c, 0xd4, 0x0a, 0x3c, 0x05, 0x39, - 0xb1, 0xf2, 0x57, 0x20, 0x86, 0xd5, 0x12, 0xc3, 0x33, 0x2e, 0xb5, 0x00, 0xac, 0xb0, 0x47, 0xd9, - 0xf0, 0xf6, 0xc6, 0x0f, 0x23, 0x71, 0x62, 0x78, 0xd9, 0x04, 0xb8, 0x61, 0x6d, 0xc8, 0x0b, 0xdc, - 0x70, 0x86, 0xdc, 0xf0, 0x7c, 0x45, 0xcb, 0xe7, 0x2d, 0x8b, 0x96, 0xe4, 0x92, 0x97, 0x3a, 0x92, - 0x17, 0x24, 0x2f, 0x26, 0x24, 0x2f, 0xb2, 0x45, 0x50, 0xa2, 0xbb, 0x94, 0x2f, 0x2e, 0x3a, 0xa1, - 0x5d, 0x4b, 0xc5, 0x66, 0xa8, 0xcc, 0x1c, 0x55, 0x9a, 0xa5, 0x72, 0xf3, 0x54, 0x6d, 0xa6, 0xda, - 0xcc, 0x55, 0x9b, 0xd9, 0xea, 0x30, 0x5f, 0x45, 0xd0, 0xbf, 0x28, 0xb5, 0x8d, 0x4c, 0x43, 0x65, - 0xa3, 0xb2, 0xb2, 0x37, 0xd5, 0x59, 0x3d, 0xea, 0x07, 0x51, 0x3f, 0x98, 0x91, 0x7b, 0x50, 0xe3, - 0x26, 0x14, 0x52, 0x3d, 0x15, 0x2d, 0xc7, 0x76, 0x75, 0x0b, 0x1f, 0xeb, 0xd0, 0x66, 0xd5, 0xa6, - 0xc1, 0x6a, 0xac, 0x60, 0xf1, 0x55, 0x51, 0x8a, 0x5c, 0x15, 0x80, 0x1d, 0x97, 0x79, 0xdf, 0x2d, - 0x97, 0xdc, 0xd3, 0x50, 0xf9, 0x85, 0x12, 0xcb, 0xb3, 0xe9, 0xeb, 0xef, 0x40, 0xc0, 0x43, 0xc0, - 0x43, 0xc0, 0xdb, 0xa0, 0x80, 0x17, 0xdc, 0xde, 0x47, 0x08, 0x78, 0x8f, 0xd4, 0xb5, 0x9f, 0x8a, - 0x6a, 0x37, 0x1e, 0x7e, 0xfd, 0xff, 0xff, 0xfa, 0xbf, 0xcb, 0x18, 0xa7, 0x70, 0x7a, 0xfd, 0xf9, - 0x6d, 0x94, 0xc5, 0xce, 0xc3, 0xe2, 0x27, 0xa1, 0x9d, 0x15, 0x75, 0xe3, 0x2d, 0x31, 0xd6, 0x2a, - 0x52, 0x63, 0x75, 0x29, 0xb1, 0x22, 0x64, 0x00, 0xc6, 0x0b, 0x8c, 0x97, 0x99, 0x5e, 0x4f, 0x59, - 0x24, 0xd7, 0xa0, 0x30, 0xa5, 0x52, 0x51, 0xea, 0x19, 0x05, 0x29, 0x16, 0x98, 0xe8, 0x3e, 0xa7, - 0xba, 0x8b, 0xca, 0x3c, 0xe8, 0xb4, 0xb9, 0x82, 0x6d, 0x1b, 0x34, 0xe0, 0x44, 0xe1, 0x44, 0x0d, - 0x72, 0xa2, 0xd8, 0x36, 0x00, 0x8b, 0x02, 0x16, 0x05, 0x2c, 0x4a, 0x61, 0x58, 0x14, 0x6c, 0x1b, - 0x60, 0xdb, 0x00, 0xdb, 0x06, 0x08, 0x78, 0x08, 0x78, 0x08, 0x78, 0x1b, 0x11, 0xf0, 0xb0, 0x6d, - 0xb0, 0xc1, 0xdb, 0x06, 0x0a, 0xe2, 0x94, 0x1f, 0xb2, 0xa1, 0xca, 0x73, 0x53, 0x0b, 0x2f, 0x3a, - 0x6d, 0x17, 0xf1, 0x08, 0xf1, 0x08, 0xf1, 0x68, 0x83, 0xe2, 0xd1, 0x7c, 0x9f, 0xce, 0x52, 0xea, - 0x00, 0x1e, 0x85, 0xa4, 0x1d, 0x85, 0x6d, 0xb6, 0xbc, 0xf1, 0x68, 0x32, 0x10, 0x0f, 0xd8, 0x09, - 0x36, 0x6e, 0x27, 0x58, 0xc1, 0x45, 0x4c, 0x50, 0x32, 0x4f, 0xd5, 0x0a, 0x94, 0xcc, 0x75, 0x9a, - 0x8d, 0x5e, 0x73, 0xc9, 0x42, 0x66, 0xf2, 0x62, 0xfe, 0x2e, 0x1c, 0x27, 0xd6, 0x34, 0x9d, 0x45, - 0x38, 0x51, 0x1c, 0x84, 0xfe, 0xcf, 0x7b, 0x8b, 0x08, 0x68, 0x58, 0x2f, 0xb3, 0xd6, 0x45, 0x13, - 0x38, 0x51, 0xac, 0x0d, 0xa8, 0xe3, 0x44, 0x71, 0x86, 0x27, 0x8a, 0x25, 0x8f, 0x35, 0xaa, 0x39, - 0xce, 0x88, 0xd3, 0xc4, 0x1a, 0xf2, 0x5c, 0x9c, 0x26, 0xd6, 0x87, 0x9c, 0xa4, 0x4f, 0x13, 0x8f, - 0x7c, 0x47, 0x61, 0x4d, 0x50, 0xdc, 0x9a, 0xf4, 0x5d, 0x2d, 0x0b, 0xd5, 0xc4, 0x93, 0x76, 0xaf, - 0x79, 0x74, 0xd6, 0x42, 0xa5, 0x66, 0x76, 0x24, 0x17, 0x8a, 0x8c, 0x50, 0xa9, 0xf9, 0xf6, 0x6a, - 0xa3, 0xde, 0x78, 0x44, 0xa7, 0x97, 0x24, 0xa9, 0xac, 0xd6, 0x54, 0x40, 0x4c, 0x29, 0x22, 0xa4, - 0x4c, 0xe1, 0x35, 0x0a, 0x98, 0x39, 0x2f, 0x52, 0x13, 0xa9, 0x93, 0x06, 0xd9, 0x28, 0x6f, 0xca, - 0x95, 0xc4, 0x2a, 0x29, 0x85, 0x55, 0x06, 0x39, 0x1b, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, - 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x9b, 0x08, 0x39, 0x25, 0xb6, 0x34, 0xb1, - 0x7b, 0xf2, 0xf6, 0xf8, 0x56, 0x85, 0x30, 0x76, 0xb2, 0xbd, 0xaf, 0xee, 0xe4, 0x25, 0xcd, 0xb4, - 0x57, 0x6b, 0xeb, 0xd9, 0xa1, 0x11, 0xcb, 0x0b, 0xa4, 0xf2, 0x01, 0xe9, 0x9d, 0x99, 0x06, 0x76, - 0x66, 0x72, 0x0c, 0xe9, 0xa5, 0xde, 0x99, 0x19, 0x4f, 0x8c, 0x36, 0x52, 0xb1, 0x37, 0x33, 0x6b, - 0x09, 0xbb, 0x33, 0x48, 0x95, 0x91, 0x2a, 0xbf, 0xdd, 0x00, 0xf3, 0x2c, 0x87, 0x45, 0x36, 0x09, - 0x1d, 0xea, 0x58, 0xc1, 0x77, 0x1e, 0x29, 0x14, 0xc0, 0x58, 0x6b, 0x1a, 0x29, 0x2f, 0x52, 0x5e, - 0xa4, 0xbc, 0x05, 0x4a, 0x79, 0x67, 0xe1, 0x72, 0x6f, 0x47, 0x61, 0xc2, 0xab, 0xe0, 0x38, 0x8a, - 0xa2, 0x0b, 0x6b, 0xfe, 0x3f, 0xf6, 0xde, 0xae, 0xb7, 0x6d, 0x1d, 0xeb, 0x1e, 0xbf, 0xcf, 0xa7, - 0x30, 0x8c, 0xb9, 0x68, 0x1e, 0x54, 0x8d, 0xed, 0x38, 0xce, 0x0b, 0x30, 0x78, 0x90, 0xd3, 0xb4, - 0xe7, 0x09, 0x7e, 0xcd, 0x69, 0xd0, 0xf4, 0x74, 0xce, 0xa0, 0xf5, 0x14, 0x8c, 0x44, 0xc7, 0x42, - 0x65, 0x4a, 0x43, 0x51, 0x6e, 0xf2, 0x3f, 0xcd, 0x77, 0xff, 0xc3, 0xef, 0xef, 0xad, 0x25, 0x6d, - 0x52, 0xa2, 0xbd, 0x72, 0x53, 0x27, 0xb5, 0x48, 0x49, 0x24, 0xf7, 0x5e, 0x6b, 0xed, 0xcd, 0xcd, - 0xc9, 0x0f, 0x61, 0x0e, 0x35, 0xe5, 0x01, 0x36, 0xc4, 0x76, 0x6d, 0xa5, 0x59, 0xe2, 0xc3, 0x54, - 0xa6, 0xed, 0x6a, 0x38, 0x54, 0x85, 0x68, 0x85, 0x2c, 0x0e, 0x15, 0x7b, 0xb4, 0x6e, 0xa8, 0xea, - 0x67, 0xcd, 0x66, 0xeb, 0xb4, 0xd9, 0xac, 0x9d, 0x1e, 0x9f, 0xd6, 0xce, 0x4f, 0x4e, 0xea, 0xad, - 0xfa, 0x89, 0x45, 0xa3, 0x57, 0x92, 0x0c, 0xfd, 0xb6, 0x8d, 0x95, 0xc7, 0x84, 0xc3, 0xa5, 0x0c, - 0x25, 0x3d, 0x06, 0x9b, 0x6b, 0x16, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, - 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x6b, 0x1e, 0x7f, 0x75, 0x42, 0xf9, 0x7d, 0x24, 0x56, - 0x85, 0xae, 0xe2, 0xc4, 0x28, 0x6c, 0xa5, 0x71, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, - 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0xb1, 0xf5, 0x58, 0x8c, 0x5c, 0x0f, 0x5b, - 0x6a, 0x1a, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, - 0x38, 0x0c, 0x38, 0x6c, 0x1e, 0x87, 0x69, 0x50, 0xc2, 0xa0, 0x7f, 0x01, 0x77, 0x01, 0x77, 0x01, - 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0xad, 0xc1, 0x5d, 0xe4, 0xaa, - 0x17, 0xb4, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, - 0x2e, 0x60, 0xae, 0xc5, 0x61, 0x09, 0x13, 0xa5, 0x6d, 0x23, 0xe4, 0x9a, 0xb6, 0x81, 0xc4, 0x80, - 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x16, - 0x90, 0x98, 0x8e, 0xad, 0x90, 0x4b, 0xed, 0x02, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, - 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x2d, 0x20, 0x30, 0x7d, 0x9b, 0x21, 0xd7, - 0xb6, 0x0e, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, - 0x34, 0x06, 0x34, 0xb6, 0x01, 0x8d, 0xd1, 0x6b, 0x62, 0xd8, 0x0f, 0x09, 0x24, 0x06, 0x24, 0x06, - 0x24, 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, 0xf6, 0x33, 0x24, 0xa6, 0x43, - 0x0d, 0x83, 0x06, 0x06, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, - 0xe4, 0x05, 0xe4, 0xb5, 0x0e, 0x79, 0xd1, 0x2b, 0x5f, 0xd0, 0xbb, 0x80, 0xba, 0x80, 0xba, 0x80, - 0xba, 0x80, 0xba, 0x80, 0xba, 0x80, 0xba, 0x80, 0xba, 0x76, 0x12, 0x75, 0xed, 0xfb, 0xc9, 0xdd, - 0xc3, 0x93, 0x92, 0x8f, 0x72, 0x9e, 0x0b, 0x5b, 0x49, 0x73, 0xcc, 0xf4, 0xeb, 0x49, 0x5f, 0xa6, - 0x0e, 0x09, 0xcf, 0x70, 0x3a, 0xb2, 0xd7, 0x75, 0x23, 0xc7, 0x0d, 0xfc, 0x11, 0x14, 0xc9, 0x79, - 0xe8, 0xee, 0x7c, 0x63, 0x59, 0xcf, 0x31, 0xe5, 0x1d, 0x96, 0x04, 0x43, 0x58, 0xd4, 0x61, 0x41, - 0xcc, 0x73, 0x9e, 0xdf, 0x5b, 0xc3, 0xf9, 0xbd, 0x38, 0xbf, 0xd7, 0x06, 0x83, 0x99, 0x1b, 0x3e, - 0x4f, 0x67, 0xcb, 0x7d, 0x18, 0x06, 0x9c, 0x89, 0x3c, 0xf3, 0x65, 0x72, 0xf8, 0x75, 0xbd, 0xc4, - 0x86, 0x8b, 0x0b, 0x76, 0x1f, 0x70, 0x2f, 0xbf, 0xd1, 0x9a, 0x34, 0x94, 0xdf, 0x60, 0x0d, 0xe6, - 0x2f, 0xec, 0x15, 0xec, 0x15, 0xec, 0x15, 0xec, 0xd5, 0xca, 0x3d, 0xf6, 0x54, 0x92, 0xdf, 0x56, - 0x0d, 0x1a, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x49, 0x31, 0x5b, 0x12, 0x5f, 0xa8, 0x7a, 0x8b, - 0xc0, 0xbe, 0xb4, 0x72, 0x34, 0x41, 0x23, 0x1a, 0x12, 0xa8, 0xab, 0x94, 0x22, 0x21, 0xb1, 0xe2, - 0x34, 0x55, 0x9a, 0x5a, 0x67, 0x44, 0x0d, 0x6a, 0xd0, 0x93, 0x08, 0x54, 0x40, 0x52, 0xf5, 0x6f, - 0x32, 0x06, 0xc7, 0xc4, 0x63, 0x50, 0x2b, 0xf1, 0x10, 0x14, 0x24, 0xa1, 0xb5, 0x4d, 0xc1, 0x8b, - 0x03, 0x8d, 0x13, 0x32, 0xaf, 0x34, 0x47, 0x2e, 0xc9, 0xa5, 0x73, 0x48, 0xdb, 0xbf, 0x9b, 0x14, - 0xef, 0xa5, 0x9a, 0x08, 0x91, 0xf4, 0xee, 0xb9, 0xcc, 0xc0, 0x27, 0x67, 0x6e, 0x66, 0xd6, 0x46, - 0xca, 0x11, 0x99, 0xc0, 0xd7, 0x94, 0x97, 0x65, 0x85, 0x64, 0x79, 0xa0, 0xd8, 0x02, 0x04, 0xeb, - 0x64, 0xf0, 0xa9, 0x79, 0xa1, 0x17, 0x19, 0xe4, 0x22, 0x83, 0x5a, 0x2b, 0x10, 0xab, 0x53, 0x2d, - 0xd9, 0x8a, 0xbf, 0xf2, 0x65, 0xb6, 0xc1, 0x76, 0x27, 0x33, 0x2c, 0x27, 0x6d, 0x19, 0xb7, 0x93, - 0x8f, 0xb9, 0xd4, 0x77, 0x85, 0xb9, 0x74, 0xc0, 0x5c, 0x0c, 0x2d, 0xab, 0x62, 0x98, 0x4b, 0xd6, - 0xe5, 0x46, 0x26, 0x6d, 0x12, 0x4b, 0x9c, 0xb3, 0x07, 0xa3, 0x89, 0xcd, 0x10, 0xb3, 0x87, 0xf2, - 0xa7, 0x4c, 0x75, 0x90, 0x32, 0x45, 0xd1, 0x30, 0xa1, 0x41, 0x20, 0x62, 0x12, 0xa5, 0x4b, 0x99, - 0xca, 0xaf, 0xa5, 0xae, 0x78, 0xdd, 0xfa, 0x5e, 0xe4, 0x2b, 0xbc, 0x79, 0x1c, 0x72, 0xd3, 0xec, - 0xea, 0x0c, 0x9d, 0x3b, 0x0e, 0x5d, 0x87, 0x3f, 0xaa, 0x0b, 0xc5, 0x03, 0xde, 0xe3, 0x4a, 0x3e, - 0x39, 0xa1, 0x70, 0xdc, 0xee, 0x50, 0x3e, 0x22, 0x75, 0xd1, 0x43, 0x13, 0x4e, 0xe8, 0xa3, 0x4d, - 0xbb, 0xe7, 0xf6, 0xee, 0xa4, 0xa6, 0xcc, 0xa8, 0xe3, 0xd1, 0x18, 0x2a, 0x97, 0x38, 0x90, 0x31, - 0x7d, 0x0e, 0x47, 0xf2, 0x4e, 0x7e, 0x6e, 0xb0, 0xd8, 0x1c, 0x28, 0x02, 0x28, 0x02, 0x28, 0x82, - 0x76, 0x66, 0x4e, 0xcb, 0xd0, 0x89, 0x96, 0x21, 0x00, 0x3d, 0x00, 0xbd, 0xdd, 0x80, 0x3e, 0xef, - 0xb2, 0x5e, 0xf5, 0xb1, 0x74, 0xd3, 0x63, 0xc5, 0xdf, 0x52, 0x4d, 0x0f, 0xe2, 0x18, 0x20, 0xd5, - 0xe2, 0xd7, 0x61, 0x04, 0xb4, 0x19, 0x03, 0x5d, 0x46, 0x41, 0xbb, 0x71, 0xd0, 0x6e, 0x24, 0x74, - 0x1a, 0x0b, 0x1a, 0xa3, 0x41, 0x64, 0x3c, 0xe8, 0x55, 0x81, 0x95, 0xd9, 0x1a, 0x70, 0xd6, 0xc9, - 0x0e, 0xb2, 0x7f, 0xea, 0xf1, 0x4f, 0x09, 0xdb, 0xbc, 0x9d, 0x52, 0xaa, 0xc1, 0x30, 0x5f, 0xcc, - 0x51, 0xa8, 0xa5, 0x3f, 0x8c, 0x7f, 0x1f, 0x26, 0xe2, 0x97, 0x64, 0x77, 0x07, 0x45, 0x76, 0x40, - 0x9c, 0xdc, 0x6b, 0xb4, 0xff, 0x0b, 0xad, 0xc3, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0x58, - 0xeb, 0x02, 0x3e, 0xcf, 0x5c, 0xc0, 0x3f, 0xdd, 0x44, 0x4a, 0x2e, 0xd4, 0x8b, 0xc3, 0xa3, 0x57, - 0xaf, 0x66, 0x6a, 0x5b, 0x7b, 0x7c, 0xc9, 0xbc, 0xdd, 0x8b, 0xd7, 0xfc, 0x6d, 0xda, 0xb2, 0xc7, - 0x1f, 0x4b, 0xe3, 0x4d, 0x0a, 0x65, 0x33, 0xb9, 0x35, 0xf1, 0xc9, 0x0f, 0x3d, 0xc1, 0xd5, 0xa6, - 0x91, 0x6f, 0x30, 0x66, 0x04, 0x5a, 0xf9, 0x5a, 0x2b, 0x56, 0x34, 0xe1, 0x6d, 0xe7, 0x15, 0xe0, - 0x68, 0xb4, 0xf4, 0x19, 0xf4, 0xd1, 0xa2, 0xa9, 0x2f, 0x48, 0xcc, 0xb9, 0x14, 0xf6, 0xfc, 0x6f, - 0xfd, 0x39, 0xd7, 0xbe, 0x53, 0xa6, 0x38, 0x9d, 0xe6, 0x37, 0x6a, 0xae, 0x64, 0x92, 0x5f, 0x03, - 0x92, 0x1f, 0x24, 0x3f, 0x48, 0x7e, 0x90, 0xfc, 0xc0, 0xf7, 0xc0, 0xf7, 0xc0, 0xf7, 0xc0, 0xf7, - 0x20, 0xf9, 0x41, 0xf2, 0x83, 0x0b, 0x80, 0x0b, 0x80, 0x0b, 0x80, 0x0b, 0x80, 0xe4, 0xa7, 0x99, - 0xcd, 0xd8, 0xa8, 0xe7, 0x64, 0xd8, 0x44, 0x48, 0x28, 0xe7, 0xec, 0x7b, 0x55, 0xb5, 0x4d, 0xc3, - 0x62, 0xa2, 0xbe, 0xda, 0x9f, 0xd3, 0xbe, 0xbf, 0x4e, 0xbf, 0xf4, 0x81, 0x77, 0xca, 0x9c, 0x3c, - 0x9b, 0x4f, 0xc2, 0x23, 0x91, 0xee, 0xc8, 0x92, 0x65, 0x1b, 0x48, 0x96, 0xd5, 0x07, 0xb5, 0x90, - 0x2c, 0x4b, 0x26, 0xb1, 0x61, 0x3f, 0x5d, 0x31, 0x5c, 0x0c, 0x5a, 0x7c, 0xa9, 0x39, 0x16, 0xf6, - 0xd3, 0xfd, 0x7a, 0xb6, 0x61, 0x3f, 0xdd, 0x4e, 0x22, 0xd5, 0x1c, 0x94, 0x01, 0xd5, 0x5c, 0xb6, - 0x78, 0xc1, 0xd5, 0x4c, 0xc8, 0x38, 0x2d, 0xe8, 0xd7, 0x56, 0x38, 0xe6, 0x80, 0x70, 0xa0, 0xb2, - 0x0e, 0x10, 0xe1, 0xc0, 0xa4, 0x18, 0x8d, 0x6d, 0x47, 0x61, 0xbb, 0x57, 0xff, 0xeb, 0x17, 0xb9, - 0xc5, 0x4b, 0xac, 0xfa, 0x51, 0xbf, 0xb5, 0xf5, 0xab, 0x9b, 0xc5, 0x3c, 0x07, 0x57, 0x6d, 0x39, - 0x44, 0xe9, 0x08, 0x51, 0x6a, 0x7c, 0x94, 0x05, 0x07, 0x65, 0x2e, 0x75, 0x98, 0x15, 0xd7, 0xe4, - 0xc6, 0x2f, 0xb9, 0x71, 0x4a, 0x9e, 0x52, 0x85, 0xb4, 0x4b, 0x36, 0x2d, 0xe1, 0xa8, 0x32, 0xcf, - 0x93, 0x3c, 0x8e, 0x79, 0x9c, 0xbd, 0x7a, 0xd4, 0xac, 0x89, 0x3d, 0x29, 0x1e, 0x15, 0xa1, 0x78, - 0x14, 0x51, 0x7d, 0xce, 0x92, 0x16, 0x8f, 0x1a, 0xcf, 0xe8, 0xfc, 0x62, 0xd7, 0xa4, 0x21, 0xec, - 0x0d, 0x47, 0xe1, 0x5b, 0xa3, 0x0b, 0xcb, 0x52, 0xb9, 0x0b, 0x7b, 0xc3, 0x8b, 0x14, 0xa7, 0x70, - 0x3e, 0x9e, 0x16, 0x71, 0x2a, 0x42, 0xa2, 0xe8, 0x94, 0x0f, 0x69, 0xc8, 0x10, 0x8d, 0x90, 0x17, - 0x54, 0x9e, 0xe5, 0xaf, 0xcb, 0x0c, 0x68, 0x37, 0x07, 0xda, 0xcd, 0x82, 0x4e, 0xf3, 0x40, 0x63, - 0x26, 0x88, 0xcc, 0xc5, 0xf4, 0x41, 0xf5, 0xe5, 0x05, 0xf9, 0x51, 0xbf, 0xe5, 0xe4, 0xc3, 0xd6, - 0x3f, 0x75, 0xf4, 0x67, 0xb4, 0xc9, 0x41, 0x8a, 0x4b, 0x41, 0x76, 0xe8, 0xe6, 0xb4, 0xe1, 0xff, - 0xbc, 0x78, 0xf1, 0xb9, 0xe6, 0x9c, 0x33, 0xa7, 0x73, 0xe9, 0xbc, 0x6d, 0xff, 0x5d, 0x7f, 0xd9, - 0x7c, 0xbe, 0x38, 0xfc, 0xfb, 0xf4, 0x79, 0xf9, 0x8f, 0x3f, 0xd6, 0x7d, 0xad, 0xfe, 0xf2, 0xf4, - 0xf9, 0x62, 0xc3, 0xff, 0xb4, 0x9e, 0x2f, 0xb6, 0x6c, 0xe3, 0xe4, 0xf9, 0xc5, 0xca, 0x57, 0x07, - 0x7f, 0x6f, 0x6c, 0xba, 0xa0, 0xb9, 0xe1, 0x82, 0xe3, 0x4d, 0x17, 0x1c, 0x6f, 0xb8, 0x60, 0xe3, - 0x2d, 0x35, 0x36, 0x5c, 0x70, 0xf2, 0xfc, 0x63, 0xe5, 0xfb, 0x2f, 0xd6, 0x7f, 0xb5, 0xf5, 0x7c, - 0xf8, 0x63, 0xd3, 0xff, 0x9d, 0x3e, 0xff, 0xb8, 0x38, 0x3c, 0xfc, 0x07, 0xdd, 0x92, 0x6d, 0xef, - 0x50, 0x2a, 0xf0, 0xc8, 0x20, 0x3b, 0x01, 0x17, 0x0f, 0x43, 0xe9, 0x97, 0xd8, 0xd3, 0x2f, 0x36, - 0x0f, 0xa7, 0x0f, 0xa7, 0x0f, 0xa7, 0xbf, 0x47, 0x4e, 0x3f, 0xf1, 0x85, 0x3a, 0xd3, 0xe0, 0xed, - 0x09, 0x0f, 0x02, 0x26, 0x3e, 0x5f, 0x7b, 0xf2, 0x43, 0xbb, 0x9a, 0x2a, 0xba, 0xce, 0xdb, 0xd6, - 0x64, 0x53, 0x57, 0x9a, 0xd7, 0x74, 0xfe, 0xf6, 0xb4, 0x7d, 0x8d, 0x27, 0x39, 0x13, 0xaf, 0xb6, - 0xc5, 0x21, 0xd5, 0x70, 0x2e, 0xb7, 0xe9, 0x21, 0xad, 0x37, 0xce, 0x2c, 0x1e, 0xd4, 0x83, 0x72, - 0xb6, 0xd6, 0xc6, 0xfe, 0x80, 0x32, 0xef, 0x0f, 0x68, 0x1d, 0x4d, 0x03, 0xa8, 0x93, 0x4f, 0x16, - 0x17, 0x7a, 0x20, 0x90, 0xf8, 0xe8, 0xa4, 0xbd, 0xbd, 0x49, 0x2b, 0x85, 0x72, 0x5f, 0x56, 0x94, - 0xbe, 0x6b, 0x69, 0xa5, 0x74, 0x5b, 0xf2, 0x28, 0xb7, 0xe2, 0x4d, 0xb7, 0xe0, 0xbd, 0x7a, 0x35, - 0xb6, 0x9d, 0x47, 0x79, 0x07, 0x0f, 0x75, 0x72, 0x96, 0xc7, 0x69, 0xd7, 0xeb, 0xe4, 0xc0, 0x88, - 0xc2, 0x88, 0xae, 0x7b, 0x20, 0x84, 0x3f, 0x8b, 0xc4, 0x4c, 0x3a, 0x96, 0xbd, 0xb6, 0xe5, 0xaf, - 0xcb, 0x0c, 0x68, 0x37, 0x07, 0xda, 0xcd, 0x82, 0x4e, 0xf3, 0x40, 0x4b, 0x99, 0x11, 0xfe, 0x44, - 0xf8, 0x13, 0xe1, 0x4f, 0x84, 0x3f, 0x53, 0xcf, 0xc8, 0x50, 0xfa, 0x0f, 0x94, 0x27, 0xd4, 0x4f, - 0x9d, 0xd3, 0xa8, 0x5d, 0xb8, 0x79, 0xb8, 0x79, 0xb8, 0xf9, 0xbd, 0x72, 0xf3, 0x13, 0x27, 0xef, - 0x90, 0x9a, 0x80, 0x05, 0x5f, 0xdf, 0x24, 0x6c, 0xf3, 0x8d, 0x48, 0x7a, 0x83, 0x57, 0xf1, 0x8c, - 0x9c, 0x96, 0x6d, 0xc7, 0x18, 0x39, 0x2d, 0x30, 0xf1, 0x30, 0xf1, 0x7b, 0x6b, 0xe2, 0x91, 0xd3, - 0x42, 0x38, 0x1f, 0x91, 0xd3, 0xb2, 0xb9, 0x7d, 0xe4, 0xb4, 0x14, 0x36, 0xa4, 0xc8, 0x69, 0xd1, - 0xd0, 0xda, 0x2e, 0xe9, 0x06, 0xb1, 0x62, 0x2a, 0x89, 0x35, 0xd4, 0x4e, 0x1e, 0xb5, 0x0b, 0x50, - 0x09, 0x50, 0x09, 0x50, 0xb9, 0x47, 0xa0, 0x92, 0x8b, 0xa4, 0xc7, 0xe5, 0x28, 0xd5, 0x0d, 0x8a, - 0x81, 0xc1, 0x16, 0xf6, 0x2a, 0x45, 0xb1, 0xd8, 0xda, 0xc5, 0x39, 0x52, 0x6c, 0xfa, 0x52, 0x12, - 0xe6, 0x28, 0x0e, 0x5b, 0x43, 0x7d, 0x01, 0x63, 0x2e, 0x14, 0x09, 0x36, 0x48, 0xb0, 0xf9, 0xe9, - 0xd2, 0x76, 0x1e, 0x64, 0x98, 0x68, 0x48, 0xb4, 0x99, 0x6b, 0x9b, 0x16, 0x51, 0xd7, 0x81, 0xa8, - 0x81, 0xa8, 0x81, 0xa8, 0xf3, 0x3f, 0x28, 0x95, 0x19, 0x99, 0x36, 0x48, 0x54, 0x8d, 0x68, 0xe3, - 0x22, 0x20, 0xa9, 0x4e, 0xa4, 0xd9, 0xac, 0x68, 0x33, 0x2f, 0x3a, 0xcd, 0x8c, 0x76, 0x73, 0xa3, - 0xdb, 0xec, 0x18, 0x33, 0x3f, 0xc6, 0xcc, 0x90, 0x09, 0x73, 0x44, 0x6b, 0x96, 0x88, 0xcd, 0x93, - 0x36, 0x33, 0x35, 0x6d, 0x98, 0xb9, 0x2e, 0x8f, 0x94, 0xd3, 0x0b, 0x3d, 0x8d, 0x13, 0x72, 0x5a, - 0xd9, 0x70, 0xae, 0x33, 0x4d, 0x33, 0x85, 0xf8, 0x8c, 0x81, 0x5f, 0x19, 0x4c, 0x5d, 0x71, 0x00, - 0x5d, 0x86, 0xd3, 0x84, 0x01, 0x35, 0x66, 0x48, 0x4d, 0x19, 0x54, 0xe3, 0x86, 0xd5, 0xb8, 0x81, - 0x35, 0x69, 0x68, 0xf5, 0x18, 0x5c, 0x4d, 0x86, 0x77, 0xfa, 0x62, 0xc8, 0x95, 0xd7, 0x8d, 0xab, - 0x85, 0xee, 0x0c, 0x86, 0x5f, 0xa2, 0xbd, 0xfa, 0x81, 0x1d, 0x03, 0xab, 0x23, 0x4a, 0xcc, 0xbc, - 0x3e, 0x97, 0xca, 0x8f, 0xf9, 0x60, 0xba, 0x8f, 0xb4, 0xcd, 0x3e, 0x0b, 0x0c, 0xf8, 0xc0, 0xf5, - 0xfd, 0xea, 0x77, 0x87, 0xf5, 0x5a, 0x0d, 0xce, 0x10, 0xce, 0x10, 0xce, 0x10, 0xce, 0xd0, 0x1e, - 0x67, 0x98, 0xf8, 0x42, 0xd5, 0x5b, 0x06, 0x7c, 0x61, 0x4b, 0x63, 0x17, 0x7a, 0x92, 0xe1, 0x96, - 0x7f, 0xf4, 0x2e, 0xf7, 0x8a, 0xee, 0x64, 0x39, 0xc3, 0x4e, 0x65, 0xa5, 0xbb, 0x69, 0xe6, 0x95, - 0xa1, 0xfe, 0x0c, 0xe4, 0x61, 0x19, 0x32, 0x07, 0x8b, 0x53, 0x84, 0x3d, 0xee, 0xfc, 0x14, 0x69, - 0xd6, 0xce, 0x4f, 0x76, 0x78, 0x96, 0x1c, 0xd8, 0xd9, 0x7a, 0x7b, 0x8f, 0xc9, 0x4c, 0x24, 0x39, - 0xef, 0x45, 0x4a, 0x3f, 0x7b, 0x99, 0x74, 0xa4, 0x9f, 0xae, 0x0c, 0xf0, 0x1d, 0xf8, 0x0a, 0xf8, - 0x0a, 0xf8, 0x0a, 0xf8, 0x8a, 0x3d, 0x7c, 0x05, 0xe2, 0x9d, 0x49, 0x7f, 0xe7, 0x78, 0x3c, 0x60, - 0x4f, 0xc6, 0xbc, 0xde, 0xb8, 0x3b, 0xfd, 0xbe, 0x0f, 0x42, 0x1d, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, - 0x9f, 0x45, 0x8e, 0x0f, 0x42, 0xdd, 0xd6, 0x3f, 0x10, 0xea, 0x48, 0x54, 0x98, 0x1a, 0x84, 0xba, - 0x5c, 0x53, 0x64, 0x0f, 0x84, 0xba, 0xe3, 0x56, 0xad, 0x06, 0xa1, 0xae, 0x6c, 0xad, 0xef, 0xb7, - 0x50, 0xe7, 0x87, 0xd2, 0x57, 0x46, 0x38, 0xcb, 0xb8, 0x27, 0x64, 0x16, 0x80, 0xb0, 0x80, 0xb0, - 0x80, 0xb0, 0x80, 0xb0, 0x54, 0x74, 0x56, 0xd1, 0xd9, 0x64, 0xba, 0x4e, 0xc0, 0x57, 0xc0, 0x57, - 0x90, 0x58, 0x00, 0xbe, 0xb2, 0xc5, 0x14, 0x69, 0x9c, 0x34, 0x41, 0x57, 0x40, 0x57, 0xca, 0x43, - 0x57, 0xfa, 0xbe, 0x54, 0x09, 0x0b, 0xa6, 0x75, 0xc3, 0xb5, 0xb3, 0x96, 0xe5, 0x0e, 0x41, 0x2b, - 0x40, 0x2b, 0x40, 0x2b, 0x40, 0x2b, 0xac, 0xa1, 0x15, 0xb3, 0xfa, 0xcb, 0x26, 0x72, 0x00, 0xce, - 0x35, 0xf6, 0x31, 0x7e, 0x67, 0xd6, 0x73, 0x8b, 0xb9, 0x03, 0x30, 0x9a, 0x06, 0xc6, 0x66, 0x65, - 0x8c, 0xce, 0x0c, 0xf4, 0xa5, 0xeb, 0xc0, 0x8c, 0x8d, 0x1d, 0x8e, 0x0f, 0xd2, 0x68, 0xff, 0xf8, - 0x5c, 0x77, 0xce, 0xdb, 0xa3, 0x8f, 0xf5, 0xe1, 0x3f, 0xa3, 0xcf, 0x8d, 0xcf, 0x35, 0xa7, 0x39, - 0xf9, 0x7c, 0xf2, 0xb9, 0xe6, 0x9c, 0xb4, 0x0f, 0xbf, 0x7c, 0x79, 0x75, 0xf8, 0xf7, 0xf1, 0x73, - 0xfa, 0x0b, 0xff, 0x51, 0xd5, 0xfe, 0x50, 0xed, 0x03, 0x8b, 0xf9, 0x91, 0xd9, 0x45, 0xd4, 0xc2, - 0x22, 0xa2, 0x5d, 0x44, 0x38, 0x8d, 0xc6, 0xea, 0xd3, 0x68, 0x0a, 0x32, 0x29, 0xb6, 0xf1, 0x5d, - 0x4d, 0xc8, 0xee, 0x9d, 0x1f, 0xab, 0x4b, 0xa5, 0xa4, 0x5e, 0x74, 0x77, 0xe3, 0x8b, 0x37, 0xc1, - 0x70, 0xc7, 0xee, 0x80, 0x03, 0x8b, 0x24, 0x08, 0x34, 0x02, 0xaf, 0x1b, 0xf6, 0x68, 0xae, 0xb3, - 0xf7, 0xd2, 0xe3, 0x92, 0x7b, 0xbf, 0x3d, 0x8d, 0xbb, 0x82, 0xd8, 0xe1, 0x04, 0xbe, 0xf8, 0xe6, - 0x04, 0xa1, 0x6b, 0x62, 0x37, 0xf8, 0x9a, 0x3e, 0x21, 0x79, 0x40, 0xf2, 0x80, 0xe4, 0x01, 0xc9, - 0x03, 0x92, 0x07, 0x24, 0x0f, 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x80, 0xe4, 0x01, - 0xc9, 0x03, 0x92, 0x07, 0x42, 0xfc, 0x1a, 0x59, 0xef, 0xf0, 0xf4, 0x06, 0xe9, 0xf8, 0x9e, 0x39, - 0xd2, 0x3b, 0xeb, 0x12, 0x9c, 0x17, 0x9c, 0x17, 0x9c, 0x17, 0x9c, 0xd7, 0x1a, 0xce, 0x8b, 0xec, - 0xe1, 0x12, 0x21, 0x75, 0x64, 0x0f, 0xd3, 0xf5, 0x87, 0xec, 0x61, 0x6b, 0xa7, 0x48, 0xe3, 0x04, - 0x55, 0xc9, 0x40, 0x2d, 0x4a, 0xd1, 0x22, 0xf5, 0xf1, 0x07, 0x97, 0xc9, 0xc3, 0x00, 0xf0, 0x70, - 0x4f, 0x8b, 0xbb, 0xd2, 0x4c, 0x77, 0x8e, 0x06, 0x18, 0xad, 0x73, 0x31, 0x77, 0x66, 0xde, 0xd2, - 0x1f, 0x06, 0xbf, 0xf7, 0x03, 0x26, 0x2e, 0xe6, 0x4f, 0xd0, 0x1b, 0x02, 0xbb, 0x8b, 0xe1, 0x39, - 0x7a, 0xa3, 0x8f, 0xb3, 0xd3, 0xf4, 0x16, 0x7e, 0x3f, 0xea, 0x4b, 0x19, 0x1d, 0xcd, 0x0e, 0x9a, - 0x3a, 0xd2, 0x72, 0x40, 0xcc, 0xf4, 0xa1, 0xae, 0x78, 0xec, 0x4a, 0x3f, 0x1a, 0x9f, 0x37, 0x58, - 0xbd, 0xf4, 0x3c, 0x7f, 0xf0, 0x99, 0x05, 0x95, 0x4f, 0x1f, 0x3e, 0xdc, 0x56, 0x3c, 0xa6, 0x58, - 0xa5, 0x13, 0xca, 0xca, 0xf5, 0x6d, 0xbf, 0x55, 0x99, 0x3d, 0xb2, 0x66, 0x86, 0x57, 0x07, 0xc3, - 0x03, 0xc3, 0x03, 0xc3, 0xdb, 0x7d, 0x86, 0xa7, 0xeb, 0x1c, 0x9c, 0x15, 0x39, 0xcc, 0x40, 0x12, - 0xc8, 0x46, 0x5d, 0x4c, 0x7b, 0x32, 0xc8, 0x26, 0x6b, 0xfe, 0x36, 0x94, 0x23, 0x33, 0x1e, 0x8a, - 0x65, 0x03, 0xfe, 0xb2, 0x12, 0x73, 0x15, 0x57, 0x54, 0x97, 0x57, 0xc6, 0xb7, 0x59, 0x19, 0xdc, - 0x66, 0x65, 0x78, 0x9b, 0x5f, 0x84, 0x99, 0xf8, 0x88, 0x21, 0x64, 0xad, 0xdd, 0xec, 0x9b, 0x34, - 0xff, 0xc6, 0xdd, 0x80, 0x69, 0x77, 0x50, 0x98, 0x5b, 0x28, 0xcc, 0x3d, 0x14, 0xe1, 0x26, 0x0c, - 0xf1, 0x30, 0xcd, 0xeb, 0x4d, 0xbb, 0x40, 0xb8, 0xb2, 0xda, 0x8c, 0x24, 0xc7, 0xac, 0xc0, 0xe1, - 0x73, 0x03, 0x7d, 0x19, 0x49, 0x96, 0xd1, 0x4b, 0xd1, 0x7e, 0x31, 0x72, 0x46, 0x93, 0x67, 0x56, - 0xc6, 0xf0, 0xcc, 0x60, 0x9f, 0xa6, 0xf3, 0x00, 0xa6, 0x1d, 0xef, 0x5a, 0x52, 0x8d, 0x5e, 0xd9, - 0xc7, 0xb0, 0xb9, 0x2c, 0x76, 0xf1, 0xb5, 0xb0, 0xf8, 0xcc, 0x2c, 0x3e, 0x24, 0xe3, 0xec, 0x64, - 0x32, 0x8e, 0x61, 0x53, 0x84, 0xe4, 0x22, 0xb3, 0x02, 0x4b, 0xc9, 0x23, 0x00, 0x6d, 0xea, 0x08, - 0x80, 0x10, 0xa1, 0x62, 0x63, 0xa1, 0x42, 0xc3, 0x39, 0xc8, 0xb1, 0xdb, 0xe5, 0x3d, 0x16, 0x31, - 0xd5, 0x1d, 0x49, 0xf6, 0x11, 0x17, 0x23, 0x21, 0xdd, 0x99, 0xd3, 0xed, 0xd7, 0x7d, 0x3c, 0x9a, - 0x17, 0xed, 0x87, 0x72, 0xfd, 0x4c, 0xa8, 0xff, 0x85, 0x44, 0x7f, 0x50, 0xce, 0xe1, 0x23, 0x44, - 0x15, 0xd5, 0xe9, 0x6b, 0x72, 0x94, 0x64, 0xee, 0x37, 0x5f, 0x68, 0x3c, 0x19, 0x7f, 0x4d, 0x5f, - 0x38, 0x25, 0x1f, 0xa7, 0xe4, 0x17, 0x2d, 0x17, 0xe1, 0x94, 0x7c, 0x53, 0xfc, 0x45, 0xdf, 0x29, - 0xf9, 0xee, 0x64, 0x85, 0x6a, 0x0e, 0x15, 0xeb, 0x8d, 0xdd, 0x22, 0x58, 0x5a, 0xbc, 0x59, 0x33, - 0x65, 0xde, 0x8c, 0x9b, 0x39, 0xe3, 0xe6, 0xce, 0xa4, 0xd9, 0xd3, 0x8c, 0xe5, 0x6d, 0x0d, 0x96, - 0x4e, 0x6a, 0x8c, 0x3b, 0x1e, 0x77, 0x25, 0x1f, 0x8f, 0x81, 0xa1, 0x60, 0xe9, 0x9a, 0xbe, 0xb5, - 0x07, 0x4b, 0xb5, 0x1f, 0xd0, 0xb4, 0x6c, 0xaa, 0x11, 0xe8, 0x2c, 0xb1, 0x09, 0x37, 0x6d, 0xca, - 0x0b, 0x33, 0xe9, 0x85, 0x99, 0xf6, 0x22, 0x4c, 0xbc, 0x19, 0x41, 0x6b, 0xf7, 0x02, 0x9d, 0xba, - 0x77, 0x44, 0x2c, 0x9b, 0x46, 0x03, 0xb9, 0xce, 0x86, 0x76, 0x48, 0x4c, 0x7e, 0x0c, 0x86, 0x59, - 0x4c, 0xee, 0x98, 0x30, 0xec, 0xd3, 0x56, 0xba, 0x35, 0x7c, 0x5e, 0xd4, 0xb4, 0xdf, 0x02, 0x92, - 0xe4, 0x0d, 0x59, 0x97, 0xc5, 0xa9, 0x64, 0x70, 0x67, 0x45, 0x59, 0xa6, 0x92, 0xb1, 0x3a, 0xed, - 0xa5, 0x98, 0x4c, 0x88, 0x1f, 0x15, 0x7a, 0xff, 0x1a, 0x17, 0x73, 0x75, 0x28, 0x94, 0xcf, 0x22, - 0x1c, 0xe6, 0xd8, 0xdb, 0x72, 0xc7, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, - 0xe3, 0xd5, 0x16, 0x70, 0xd6, 0x91, 0xbc, 0x63, 0x32, 0x69, 0xf4, 0xd4, 0x4c, 0xc1, 0xa1, 0xee, - 0xd6, 0x7b, 0xe2, 0xfc, 0xce, 0x85, 0x18, 0xbc, 0x0e, 0xab, 0xa7, 0x8e, 0x91, 0x02, 0xb5, 0xf3, - 0xc4, 0xce, 0x58, 0xed, 0xd8, 0x79, 0x0a, 0x60, 0xbe, 0x53, 0x23, 0x85, 0x6b, 0x0d, 0xa0, 0x3b, - 0xab, 0x22, 0x0a, 0x9a, 0xb3, 0x70, 0xa6, 0xfd, 0x18, 0xcd, 0xc6, 0x59, 0xcd, 0x1b, 0xd1, 0x92, - 0xa0, 0xa3, 0x6f, 0xc4, 0x75, 0x94, 0x85, 0x8a, 0x15, 0x53, 0x5c, 0x7f, 0xc0, 0x7b, 0xd4, 0x8d, - 0xe5, 0xf1, 0xee, 0x06, 0xe2, 0xdd, 0xa5, 0x41, 0xf5, 0x88, 0x77, 0xef, 0xaf, 0x77, 0x42, 0xbc, - 0x9b, 0xf6, 0x75, 0x22, 0xde, 0x0d, 0x81, 0x06, 0x02, 0x0d, 0x04, 0x1a, 0x08, 0x34, 0x6b, 0x56, - 0x1b, 0xe2, 0xdd, 0x79, 0x7f, 0x10, 0xef, 0xd6, 0xd2, 0x2d, 0xe2, 0xdd, 0xba, 0xc5, 0x2e, 0xc4, - 0xbb, 0x77, 0x7a, 0x32, 0x21, 0xde, 0x5d, 0xe8, 0xfd, 0x23, 0xde, 0x0d, 0x3a, 0x05, 0x3a, 0x05, - 0x3a, 0x05, 0x3a, 0xb5, 0x4f, 0x74, 0x0a, 0xf1, 0x6e, 0xc4, 0xbb, 0xb3, 0x11, 0x3b, 0xc4, 0xbb, - 0xad, 0x42, 0x77, 0x88, 0x77, 0xaf, 0xe9, 0xa7, 0xe8, 0x78, 0xf7, 0x28, 0x0c, 0x8b, 0x52, 0xe5, - 0xe5, 0x9f, 0x32, 0x45, 0x4f, 0x95, 0xaa, 0x96, 0x5c, 0x03, 0x99, 0xb8, 0x4a, 0x8c, 0x91, 0xc0, - 0xf5, 0xa4, 0xcf, 0xaf, 0x1f, 0x86, 0x37, 0xfc, 0x29, 0x60, 0xe2, 0xeb, 0x75, 0xd4, 0x6f, 0x7d, - 0xbd, 0x1c, 0xdd, 0xe5, 0xd7, 0x4f, 0x52, 0x46, 0xbf, 0x0f, 0xee, 0xef, 0xeb, 0xf4, 0xbb, 0x1f, - 0x27, 0xb7, 0xb7, 0x07, 0x35, 0x55, 0xf4, 0xa4, 0x66, 0x68, 0x4d, 0xc9, 0xd0, 0x5e, 0x39, 0xa5, - 0x81, 0xca, 0x29, 0xc6, 0x08, 0x25, 0x2a, 0xa7, 0xec, 0x9e, 0xd7, 0xd2, 0x56, 0x39, 0x85, 0xb9, - 0x2e, 0x8f, 0x94, 0xd3, 0x0b, 0x3d, 0x03, 0xd9, 0x64, 0xf3, 0x9d, 0x69, 0x3b, 0xff, 0x62, 0x9a, - 0x14, 0xd1, 0x61, 0x41, 0xcc, 0x71, 0x74, 0x61, 0x61, 0x8a, 0x1d, 0x72, 0xd7, 0xac, 0x53, 0xe4, - 0x90, 0xbb, 0x56, 0x98, 0xe2, 0x36, 0x5d, 0x2d, 0xf7, 0x61, 0x18, 0x70, 0x26, 0x4c, 0x9c, 0xd5, - 0x5f, 0xdf, 0xe3, 0x04, 0x6a, 0xe6, 0xf5, 0xb9, 0x54, 0x7e, 0x3c, 0xd4, 0x89, 0x46, 0xdc, 0xac, - 0xaf, 0xf1, 0x30, 0x91, 0x99, 0x0f, 0x5c, 0xdf, 0xaf, 0x7e, 0x77, 0x58, 0xaf, 0xd5, 0xe0, 0x0c, - 0xe1, 0x0c, 0xe1, 0x0c, 0xe1, 0x0c, 0xed, 0x71, 0x86, 0x89, 0x2f, 0x54, 0xbd, 0x65, 0xc0, 0x17, - 0xb6, 0x70, 0x90, 0xef, 0xaf, 0x1f, 0x04, 0x07, 0xf9, 0xd2, 0xf5, 0x87, 0x83, 0x7c, 0xad, 0x9d, - 0x22, 0xcd, 0xda, 0x39, 0x4e, 0xf2, 0x2d, 0x5d, 0xeb, 0xed, 0x3d, 0x26, 0x33, 0x6e, 0x22, 0xe5, - 0x80, 0x4e, 0x4c, 0x36, 0x21, 0x19, 0xa8, 0x84, 0xbc, 0xdc, 0x23, 0xa8, 0x05, 0xa8, 0x05, 0xa8, - 0x05, 0xa8, 0x85, 0x55, 0xd4, 0xe2, 0xcc, 0x00, 0xb3, 0x38, 0x01, 0xb3, 0x00, 0xb3, 0x30, 0xb8, - 0xe1, 0x07, 0xcc, 0xc2, 0xde, 0x29, 0xd2, 0x38, 0x01, 0xb1, 0x00, 0xb1, 0x28, 0x11, 0xb1, 0x88, - 0x24, 0xe7, 0xbd, 0x48, 0xe9, 0xe7, 0x13, 0x93, 0x8e, 0xf4, 0xc7, 0x41, 0x06, 0xe8, 0x0e, 0x6c, - 0x05, 0x6c, 0x05, 0x6c, 0x05, 0x6c, 0xc5, 0x1e, 0xb6, 0x82, 0xac, 0x00, 0x93, 0xfe, 0xce, 0xf1, - 0x78, 0xc0, 0x9e, 0x8c, 0x79, 0xbd, 0x71, 0x77, 0xfa, 0x7d, 0x1f, 0x32, 0x00, 0xe0, 0xf8, 0xe0, - 0xf8, 0xe0, 0xf8, 0x2c, 0x72, 0x7c, 0xc8, 0x00, 0xd8, 0xfa, 0x07, 0x3a, 0x1d, 0x89, 0x08, 0x03, - 0x9d, 0x2e, 0xdf, 0x14, 0xd9, 0x03, 0x9d, 0xee, 0xb8, 0x55, 0xab, 0x41, 0xa8, 0x2b, 0x5b, 0xeb, - 0xfb, 0x2d, 0xd4, 0x99, 0x8a, 0xfc, 0xeb, 0x8e, 0xf8, 0x23, 0x65, 0x19, 0x84, 0x05, 0x84, 0x05, - 0x84, 0xc5, 0x66, 0xc2, 0x82, 0xbc, 0x02, 0xf0, 0x15, 0x63, 0x60, 0x14, 0x19, 0xcb, 0xe0, 0x2b, - 0xbf, 0x98, 0x22, 0xc6, 0x0a, 0x84, 0x82, 0xae, 0x80, 0xae, 0x6c, 0x33, 0x4d, 0xfa, 0xbe, 0x54, - 0x09, 0x0b, 0x9c, 0x71, 0x61, 0x1b, 0xfd, 0xac, 0x65, 0xb9, 0x43, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, - 0x0a, 0xd0, 0x0a, 0x6b, 0x68, 0x85, 0x1f, 0x69, 0xb6, 0x5d, 0xf3, 0xf6, 0xab, 0x7e, 0xae, 0xb1, - 0x8f, 0xf1, 0x3b, 0xb3, 0x9e, 0x5b, 0xcc, 0x46, 0xa6, 0xdf, 0x34, 0x30, 0x36, 0x2b, 0x63, 0x74, - 0x66, 0xa6, 0x3e, 0xaa, 0xe2, 0x52, 0x18, 0x3b, 0x73, 0xa2, 0xfa, 0x9f, 0x17, 0x2f, 0x3e, 0xd7, - 0x9c, 0xf3, 0xf6, 0x8f, 0xcf, 0x75, 0xe7, 0xbc, 0x3d, 0xfa, 0x58, 0x1f, 0xfe, 0x33, 0xfa, 0xdc, - 0xf8, 0x5c, 0x73, 0x9a, 0x93, 0xcf, 0x27, 0x9f, 0x6b, 0xce, 0x49, 0xfb, 0xf0, 0xcb, 0x97, 0x57, - 0x87, 0x7f, 0x1f, 0x3f, 0xa7, 0xbf, 0xf0, 0x1f, 0x55, 0xdb, 0xab, 0xbc, 0xbf, 0xdc, 0xa1, 0x45, - 0xd4, 0xc2, 0x22, 0xa2, 0x5d, 0x44, 0xcc, 0xe9, 0x5c, 0x3a, 0x6f, 0xdb, 0x7f, 0xd7, 0x5f, 0x36, - 0x9f, 0x2f, 0x0e, 0xff, 0x3e, 0x7d, 0x5e, 0xfe, 0xe3, 0x8f, 0x75, 0x5f, 0xab, 0xbf, 0x3c, 0x7d, - 0xbe, 0xd8, 0xf0, 0x3f, 0xad, 0xe7, 0x8b, 0x2d, 0xdb, 0x38, 0x79, 0x7e, 0xb1, 0xf2, 0xd5, 0xc1, - 0xdf, 0x1b, 0x9b, 0x2e, 0x68, 0x6e, 0xb8, 0xe0, 0x78, 0xd3, 0x05, 0xc7, 0x1b, 0x2e, 0xd8, 0x78, - 0x4b, 0x8d, 0x0d, 0x17, 0x9c, 0x3c, 0xff, 0x58, 0xf9, 0xfe, 0x8b, 0xf5, 0x5f, 0x6d, 0x3d, 0x1f, - 0xfe, 0xd8, 0xf4, 0x7f, 0xa7, 0xcf, 0x3f, 0x2e, 0x0e, 0x77, 0xc0, 0xa4, 0xd8, 0xc6, 0x77, 0x35, - 0x21, 0x3b, 0x23, 0x75, 0xb2, 0x8d, 0xd6, 0xc7, 0x36, 0x5a, 0x17, 0xdb, 0x4c, 0x3d, 0x6c, 0xbb, - 0xc4, 0x8e, 0xc0, 0x17, 0xdf, 0x9c, 0x20, 0x74, 0x4d, 0x94, 0x99, 0x5a, 0xd3, 0x27, 0x24, 0x0f, - 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x80, 0xe4, 0x01, 0xc9, 0x03, 0x92, 0x07, 0x24, - 0x0f, 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x40, 0x88, 0x5f, 0x23, 0xeb, 0x1d, 0x1e, - 0x6b, 0x23, 0x1d, 0xdf, 0x33, 0x47, 0x7a, 0x67, 0x5d, 0x82, 0xf3, 0x82, 0xf3, 0x82, 0xf3, 0x82, - 0xf3, 0x5a, 0xc3, 0x79, 0x91, 0x3d, 0x5c, 0x22, 0xa4, 0x8e, 0xec, 0x61, 0xba, 0xfe, 0x90, 0x3d, - 0x6c, 0xed, 0x14, 0x41, 0x55, 0x32, 0x50, 0x8b, 0x92, 0xb4, 0x48, 0x7e, 0x1a, 0x68, 0xf2, 0x30, - 0x00, 0x3c, 0xdc, 0xd3, 0xe2, 0xae, 0x34, 0xd3, 0x9d, 0xad, 0x0e, 0xad, 0xee, 0x07, 0x4c, 0x5c, - 0xcc, 0x1f, 0x2d, 0x3a, 0x04, 0x76, 0x17, 0xc3, 0x03, 0x46, 0x47, 0x1f, 0x67, 0xc7, 0x8c, 0x2e, - 0xfc, 0xbe, 0x72, 0xd8, 0xa8, 0x8e, 0x83, 0x27, 0xa7, 0xcf, 0x74, 0xc5, 0x63, 0x57, 0xfa, 0xd1, - 0xf8, 0x5c, 0xd6, 0xea, 0xa5, 0xe7, 0xf9, 0x83, 0xcf, 0x2c, 0xa8, 0x7c, 0xfa, 0xf0, 0xe1, 0xb6, - 0xe2, 0x31, 0xc5, 0x2a, 0x9d, 0x50, 0x56, 0xae, 0x6f, 0xfb, 0xad, 0xca, 0xec, 0x89, 0x35, 0x13, - 0xbc, 0x3a, 0x08, 0x1e, 0x08, 0x1e, 0x08, 0xde, 0xee, 0x13, 0x3c, 0x5d, 0xe7, 0x6b, 0xae, 0xa8, - 0x61, 0x06, 0x72, 0x40, 0x36, 0xca, 0x62, 0xda, 0x73, 0x41, 0x36, 0x59, 0xf3, 0xb7, 0xa1, 0x1c, - 0x99, 0xf1, 0x50, 0x2c, 0x1b, 0xf0, 0x97, 0x95, 0x98, 0xab, 0xb8, 0xa2, 0xba, 0xbc, 0x32, 0xbe, - 0xcd, 0xca, 0xe0, 0x36, 0x2b, 0xc3, 0xdb, 0xfc, 0x22, 0xcc, 0x84, 0x47, 0x0c, 0x01, 0x6b, 0xed, - 0x66, 0xdf, 0xa4, 0xf9, 0x37, 0xee, 0x06, 0x4c, 0xbb, 0x83, 0xc2, 0xdc, 0x42, 0x61, 0xee, 0xa1, - 0x08, 0x37, 0x61, 0x88, 0x86, 0x69, 0x5e, 0x6f, 0xda, 0xf5, 0xc1, 0x95, 0xd5, 0x66, 0x24, 0x37, - 0x66, 0x05, 0x0e, 0x9f, 0x1b, 0xe8, 0xcb, 0x48, 0xae, 0x8c, 0x5e, 0x86, 0xf6, 0x8b, 0x91, 0x33, - 0x9a, 0x3b, 0xb3, 0x32, 0x86, 0x67, 0x06, 0xfb, 0x34, 0x9d, 0x06, 0x30, 0xed, 0x78, 0xd7, 0x72, - 0x6a, 0xf4, 0xaa, 0x3e, 0x86, 0xcd, 0x65, 0xb1, 0x8b, 0xaf, 0x85, 0xc5, 0x67, 0x66, 0xf1, 0x21, - 0x17, 0x67, 0x27, 0x73, 0x71, 0x0c, 0x9b, 0x22, 0xe4, 0x16, 0x99, 0x15, 0x58, 0x4a, 0x1e, 0x00, - 0x68, 0x53, 0x07, 0x00, 0x84, 0x08, 0x15, 0x1b, 0x0b, 0x15, 0xf4, 0x0e, 0xa9, 0x1a, 0xbb, 0x5d, - 0xde, 0x63, 0x11, 0x53, 0xdd, 0x91, 0x62, 0x1f, 0x71, 0xe1, 0x0e, 0x55, 0x00, 0x67, 0x4e, 0xb6, - 0x5f, 0xf7, 0xf1, 0x68, 0x5e, 0xb3, 0x1f, 0xaa, 0xf5, 0x33, 0x9d, 0xfe, 0xe7, 0x0a, 0xfd, 0x41, - 0x39, 0x47, 0x8f, 0x10, 0x54, 0x18, 0xc8, 0x2d, 0x33, 0x96, 0x53, 0xa6, 0x49, 0x7b, 0xd2, 0xa6, - 0x35, 0xe9, 0xd4, 0x96, 0xb4, 0x6b, 0x49, 0xba, 0xb5, 0x23, 0x63, 0x5a, 0x91, 0x31, 0x6d, 0xc8, - 0x84, 0x16, 0x54, 0xee, 0x10, 0xb1, 0x36, 0x6d, 0x67, 0x3a, 0xdb, 0x03, 0xce, 0x3a, 0x92, 0x77, - 0x74, 0xcc, 0xf7, 0x09, 0xef, 0x38, 0xd5, 0xd0, 0xf6, 0xed, 0xd8, 0xa9, 0xbd, 0x7a, 0x75, 0x34, - 0x72, 0x69, 0x47, 0xab, 0xb6, 0xb2, 0xac, 0xbe, 0xe8, 0xa0, 0x44, 0x33, 0x6d, 0x60, 0x34, 0x74, - 0x7a, 0x1a, 0x3d, 0x5b, 0xd9, 0xb5, 0x6e, 0x5d, 0xd7, 0xba, 0x55, 0x5d, 0xcf, 0xd6, 0x74, 0xaa, - 0xc9, 0xa0, 0x09, 0x90, 0x1a, 0x05, 0xa2, 0x84, 0x96, 0xac, 0x1a, 0x2b, 0x99, 0xb8, 0x4a, 0x8c, - 0x4d, 0xe5, 0xf5, 0xe4, 0xae, 0xbe, 0x7e, 0x18, 0xde, 0xd5, 0xa7, 0x80, 0x89, 0xaf, 0xd7, 0x51, - 0xbf, 0xf5, 0xf5, 0x72, 0x74, 0x2b, 0x5f, 0x3f, 0x49, 0x19, 0xfd, 0x3e, 0xbc, 0x89, 0x83, 0x72, - 0x58, 0x8a, 0x7c, 0x2d, 0xe4, 0x9c, 0x56, 0xd4, 0xd3, 0x49, 0xff, 0x34, 0xca, 0x37, 0x6c, 0xd9, - 0x5f, 0x76, 0xb6, 0x2b, 0x33, 0x0e, 0xcf, 0xc4, 0xe4, 0x67, 0x06, 0xb9, 0x34, 0x36, 0x9d, 0xd4, - 0x86, 0x93, 0xda, 0x6c, 0x1a, 0x1b, 0x9d, 0x75, 0x74, 0x68, 0xb2, 0x02, 0xf3, 0xad, 0x36, 0x43, - 0x59, 0x7e, 0x39, 0x4d, 0xf5, 0x4f, 0xf2, 0xf6, 0xae, 0x6f, 0x2b, 0x83, 0x3e, 0x2a, 0x1d, 0xd6, - 0xf3, 0x83, 0xa7, 0xca, 0xc8, 0x4a, 0x24, 0x72, 0x68, 0x8b, 0x2a, 0x9d, 0x50, 0x7e, 0x11, 0x64, - 0x69, 0x7c, 0x44, 0xe9, 0x7a, 0x64, 0x9c, 0x99, 0x92, 0x23, 0x93, 0x73, 0x62, 0x6a, 0x0e, 0xac, - 0x8d, 0xf3, 0x6a, 0xe3, 0xb8, 0x3a, 0x38, 0x6d, 0xb1, 0x5e, 0x9e, 0x2a, 0x7d, 0xad, 0x3a, 0xf4, - 0xc0, 0x64, 0x33, 0x63, 0xaa, 0xa1, 0x0d, 0x5a, 0x25, 0x1a, 0xbb, 0x25, 0x83, 0xf3, 0x46, 0xb8, - 0x41, 0x18, 0xfb, 0xe2, 0x61, 0x60, 0x60, 0x14, 0xf3, 0x05, 0x97, 0xc3, 0x3c, 0xe1, 0x61, 0xba, - 0xd9, 0x10, 0x8c, 0xc6, 0x95, 0x2e, 0x13, 0x5e, 0xc0, 0xbd, 0xca, 0xfd, 0x53, 0x45, 0x75, 0xfd, - 0xf8, 0x8b, 0xb8, 0xbe, 0x9d, 0x65, 0xa0, 0x51, 0xdd, 0x17, 0x6d, 0xc6, 0x30, 0xb9, 0x7c, 0xa7, - 0x43, 0xb6, 0xd3, 0x26, 0xd7, 0xe9, 0x92, 0xe9, 0xb4, 0xcb, 0x73, 0xda, 0x65, 0x39, 0x9d, 0x72, - 0xdc, 0xf3, 0x6e, 0x10, 0x26, 0xc3, 0x0c, 0xa0, 0x9d, 0x15, 0x63, 0xd2, 0x10, 0x33, 0xad, 0x84, - 0x2c, 0xc7, 0xea, 0x48, 0xcb, 0xdb, 0xb3, 0x4d, 0xe3, 0xf4, 0x43, 0x96, 0xee, 0x8a, 0x94, 0x7e, - 0x39, 0xef, 0xa0, 0x6a, 0x19, 0xcc, 0x74, 0x6f, 0x76, 0xfb, 0xf7, 0x93, 0xe2, 0xdd, 0x54, 0xdd, - 0x89, 0x37, 0x4b, 0xf7, 0x4e, 0xa6, 0x0e, 0x66, 0x7c, 0x7d, 0xca, 0xd1, 0xc8, 0xe6, 0x92, 0x33, - 0xbb, 0xde, 0x3c, 0x2e, 0x36, 0xb7, 0x2b, 0xcd, 0xeb, 0x32, 0xc9, 0x5c, 0x23, 0x99, 0x0b, 0xa4, - 0x70, 0x75, 0x7a, 0x57, 0x7b, 0x56, 0xd4, 0x5d, 0xf5, 0xba, 0x6e, 0xe4, 0xb8, 0x81, 0x3f, 0x7a, - 0xb8, 0x8c, 0x03, 0x36, 0x99, 0x31, 0xf3, 0x8d, 0x65, 0x7c, 0xd3, 0x73, 0x47, 0x2e, 0x76, 0x58, - 0x10, 0x67, 0xc5, 0xc4, 0x39, 0x43, 0xd9, 0xb9, 0x31, 0x2f, 0x05, 0xc6, 0x25, 0xc3, 0xb4, 0x54, - 0x18, 0x96, 0x1c, 0xb3, 0x92, 0x63, 0x54, 0x4a, 0x4c, 0x6a, 0x56, 0x85, 0xcd, 0x1d, 0xda, 0x9d, - 0xce, 0x96, 0xfb, 0x30, 0x0c, 0x38, 0x13, 0x79, 0xe6, 0xcb, 0xc4, 0x5b, 0xd5, 0x4d, 0x21, 0xa1, - 0x0c, 0x4e, 0xc6, 0x4b, 0x46, 0xdb, 0x0e, 0x1c, 0x8f, 0x2b, 0xee, 0x2a, 0x47, 0x49, 0x26, 0xe2, - 0xde, 0x68, 0xab, 0x7e, 0x5e, 0x33, 0xb6, 0xb1, 0xe9, 0xfc, 0x46, 0xad, 0x0e, 0x83, 0x06, 0x83, - 0x06, 0x83, 0x96, 0x66, 0xb6, 0x24, 0xbe, 0x50, 0xc7, 0x0d, 0x02, 0x7b, 0x96, 0x23, 0xf3, 0x84, - 0xa8, 0x90, 0x10, 0x81, 0x2c, 0x4a, 0x59, 0x08, 0x88, 0x38, 0xe1, 0x6f, 0x5a, 0xa5, 0x85, 0xaa, - 0x3d, 0x0d, 0x35, 0x58, 0x08, 0x72, 0x23, 0x48, 0x0b, 0xed, 0xe8, 0x1a, 0x82, 0x66, 0xe3, 0xbc, - 0x79, 0xde, 0x3a, 0x6d, 0x9c, 0x9f, 0x94, 0x78, 0x2c, 0x0a, 0x52, 0xd7, 0xda, 0x25, 0x86, 0x35, - 0x5c, 0xb0, 0xfb, 0x80, 0x7b, 0xf9, 0x41, 0xcc, 0xa4, 0xa1, 0xfc, 0x90, 0x65, 0xe0, 0xc5, 0x80, - 0x5a, 0x80, 0x5a, 0x80, 0x5a, 0x40, 0xc3, 0x56, 0xee, 0xb1, 0xa7, 0x92, 0xfc, 0xb6, 0x6a, 0xd0, - 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x68, 0xd1, 0x0e, 0xd3, 0xa2, 0x7a, 0xe3, 0x0c, 0xcc, - 0x28, 0xf5, 0x28, 0x1c, 0xef, 0x11, 0x39, 0xdd, 0x75, 0x42, 0xb4, 0x2f, 0x11, 0xef, 0x71, 0x90, - 0xb8, 0x04, 0xe1, 0x6e, 0xc1, 0xfd, 0x87, 0xee, 0x7d, 0x28, 0xe3, 0xec, 0x11, 0xef, 0x59, 0x13, - 0x08, 0x7a, 0x6b, 0xc3, 0x5e, 0x08, 0x7a, 0x1b, 0x0c, 0x7a, 0x4f, 0x66, 0x74, 0x7e, 0xe6, 0x32, - 0x6d, 0x29, 0x1f, 0x7d, 0xa9, 0x83, 0xbe, 0x80, 0xbe, 0xd8, 0x40, 0x5f, 0xf2, 0x66, 0x77, 0x67, - 0x4d, 0xbf, 0xda, 0x38, 0xe9, 0x32, 0xa5, 0x63, 0x11, 0x2f, 0x43, 0xb2, 0xe5, 0x48, 0xb9, 0x2c, - 0xc9, 0x97, 0x27, 0xf5, 0x32, 0xd5, 0xb6, 0x5c, 0xb5, 0x2d, 0x5b, 0x1d, 0xcb, 0x97, 0x08, 0xfa, - 0x97, 0x65, 0xd3, 0x86, 0xaf, 0x61, 0xcb, 0x06, 0x59, 0x3e, 0x3f, 0x35, 0xaf, 0xc7, 0xc6, 0x08, - 0x6c, 0x8c, 0x30, 0x64, 0x1e, 0x68, 0xcc, 0x04, 0xa1, 0xd4, 0x53, 0xd1, 0x52, 0x8f, 0x44, 0x77, - 0x71, 0x44, 0x1d, 0xc5, 0x0f, 0xb5, 0x15, 0x37, 0x44, 0xf1, 0xc2, 0x9d, 0x28, 0x5e, 0xd8, 0x2e, - 0xcb, 0x5e, 0x26, 0x02, 0xe8, 0x37, 0x2a, 0xdb, 0xcf, 0x9e, 0xb8, 0x9c, 0x2e, 0x4e, 0x72, 0x77, - 0xbf, 0xa6, 0x0f, 0xb8, 0x7f, 0xb8, 0x7f, 0xb8, 0xff, 0x3d, 0x72, 0xff, 0x51, 0xf7, 0x29, 0x86, - 0xfb, 0x5f, 0xf0, 0x7f, 0xcb, 0x6e, 0xaf, 0xf1, 0x7c, 0xf8, 0x3f, 0x87, 0xff, 0xbb, 0x8b, 0x7e, - 0x0a, 0x45, 0x8a, 0xd6, 0x07, 0x95, 0xa6, 0x71, 0x98, 0xe9, 0xa7, 0x4c, 0x71, 0x26, 0xba, 0xf7, - 0x9d, 0xe3, 0x5d, 0x53, 0x08, 0x05, 0x74, 0x02, 0x01, 0x11, 0x32, 0x80, 0xfe, 0x07, 0xfd, 0xcf, - 0x4e, 0xab, 0x47, 0xe6, 0xc9, 0x35, 0x14, 0x12, 0xa5, 0x2c, 0x1c, 0xba, 0xa6, 0x50, 0xa8, 0x1f, - 0xd9, 0x68, 0x3e, 0x47, 0xe5, 0xb5, 0xc9, 0x2c, 0x28, 0xc5, 0x79, 0x9a, 0xe4, 0x41, 0x94, 0x06, - 0x8c, 0x28, 0x8c, 0xa8, 0x45, 0x46, 0x14, 0x41, 0x14, 0xa8, 0x28, 0x50, 0x51, 0xa0, 0xa2, 0x94, - 0x46, 0x45, 0x41, 0x10, 0x05, 0x41, 0x14, 0x04, 0x51, 0x68, 0xc5, 0x29, 0x02, 0xe8, 0xe7, 0xc7, - 0xe3, 0xba, 0xfa, 0x1a, 0xbc, 0xfc, 0xb4, 0x69, 0x38, 0x7b, 0x38, 0x7b, 0x38, 0xfb, 0x3d, 0x72, - 0xf6, 0xf9, 0xf7, 0x9b, 0x6e, 0xf4, 0xf3, 0x75, 0x44, 0xb0, 0xd3, 0x69, 0x5f, 0x88, 0x60, 0xc3, - 0x1c, 0xc3, 0x1c, 0xef, 0xb5, 0x39, 0x46, 0x04, 0x7b, 0x8f, 0x23, 0xd8, 0x04, 0x7e, 0x6a, 0x12, - 0xe2, 0x75, 0x68, 0x94, 0xfe, 0x95, 0xf9, 0xb9, 0xd4, 0x3e, 0xfc, 0x13, 0xfc, 0x13, 0xfc, 0xd3, - 0x1e, 0xf9, 0x27, 0x2e, 0x92, 0x1e, 0x1f, 0x9d, 0x80, 0xa3, 0xc3, 0x3d, 0x35, 0x09, 0xdb, 0x7c, - 0x23, 0x92, 0xde, 0xe0, 0x25, 0x3c, 0xef, 0x90, 0x79, 0x0f, 0xa5, 0xff, 0x40, 0x59, 0xb1, 0x62, - 0x6a, 0x84, 0x46, 0xed, 0xc2, 0x9c, 0xc3, 0x9c, 0xc3, 0x9c, 0xef, 0x91, 0x39, 0x9f, 0xc2, 0x39, - 0x52, 0x03, 0xb0, 0x3f, 0x26, 0x1d, 0x39, 0xa7, 0x5b, 0xe7, 0x9c, 0x12, 0x9c, 0xec, 0x8f, 0xa3, - 0x31, 0x53, 0xb5, 0x82, 0xa3, 0x31, 0x75, 0x2e, 0x1b, 0xbd, 0xcb, 0xc5, 0xc4, 0xb9, 0x45, 0x7f, - 0x4c, 0xfa, 0x42, 0x19, 0x27, 0x4d, 0xc3, 0x59, 0x86, 0x4a, 0x4e, 0xe3, 0xb3, 0xd8, 0x99, 0xd7, - 0xe7, 0x52, 0xf9, 0x31, 0xef, 0x65, 0x39, 0xb2, 0x65, 0x0a, 0x18, 0xd6, 0xb6, 0x86, 0xfa, 0x4e, - 0xda, 0xe0, 0x3b, 0xea, 0x3b, 0x19, 0xac, 0xef, 0x94, 0xb3, 0xc8, 0x0c, 0x4d, 0x71, 0x19, 0xd4, - 0x76, 0xd2, 0xc0, 0x7e, 0x51, 0xdb, 0x49, 0x1f, 0x9e, 0xca, 0x5d, 0xdb, 0x69, 0xe8, 0x49, 0xfb, - 0x2c, 0x20, 0xdc, 0xd9, 0x35, 0x69, 0x11, 0xfb, 0xbb, 0x8c, 0x09, 0x56, 0xd8, 0x9a, 0x80, 0xfd, - 0x5d, 0xbf, 0x9e, 0x6d, 0xb9, 0xab, 0x4f, 0x2f, 0xaf, 0x4d, 0x8a, 0xdd, 0x5d, 0x34, 0xd5, 0xa8, - 0x27, 0x3f, 0x84, 0x32, 0x1d, 0x65, 0x75, 0x6a, 0x62, 0xa3, 0xb6, 0xd2, 0x2c, 0x71, 0x9d, 0xe4, - 0x69, 0xbb, 0x1a, 0xea, 0x25, 0x13, 0x2d, 0x8f, 0x65, 0x7d, 0xc4, 0xba, 0xa1, 0xa2, 0x3e, 0xec, - 0xc7, 0xc8, 0x98, 0x95, 0x44, 0xfa, 0x6d, 0x5b, 0xb8, 0xfb, 0x33, 0xf0, 0x3b, 0x5c, 0xf9, 0x3d, - 0xc2, 0x0d, 0xa0, 0xd3, 0x16, 0x01, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, - 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xf6, 0x1b, 0x68, 0xc5, 0x49, 0x14, 0x91, 0xec, 0x11, 0x99, 0x55, - 0xda, 0x98, 0xb4, 0x98, 0xb7, 0xd8, 0x00, 0xcd, 0x39, 0xf9, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x6e, - 0x5a, 0x80, 0x1b, 0xdd, 0x86, 0x3c, 0xa2, 0x8d, 0x78, 0xb6, 0x64, 0xdd, 0x94, 0x30, 0xaf, 0x63, - 0x5d, 0xb4, 0x3c, 0x57, 0xf1, 0x3d, 0x33, 0x87, 0x73, 0xe6, 0xdb, 0x3b, 0x42, 0x52, 0x1d, 0x8a, - 0x2c, 0x0a, 0xda, 0x40, 0x14, 0x54, 0x9f, 0xc3, 0x40, 0x14, 0x74, 0x06, 0xac, 0x10, 0x05, 0x05, - 0xc6, 0x03, 0xc6, 0x03, 0xc6, 0x83, 0x38, 0x07, 0x71, 0x0e, 0xe2, 0x1c, 0xc4, 0x39, 0x88, 0x73, - 0x25, 0x15, 0xe7, 0x10, 0x05, 0x05, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x02, - 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0xd2, 0x04, 0xb4, 0x10, 0x05, 0x05, 0x70, 0x03, 0x70, 0x03, 0x70, - 0xcb, 0x32, 0xdb, 0x10, 0x05, 0xdd, 0xf1, 0x28, 0x68, 0x8e, 0x72, 0x10, 0xd8, 0x79, 0x9e, 0xea, - 0x55, 0x57, 0x33, 0x45, 0x80, 0xb7, 0x2b, 0x21, 0x30, 0xfc, 0x5d, 0x5e, 0x2e, 0x74, 0x57, 0x82, - 0x3d, 0xef, 0xd9, 0x02, 0xd8, 0xb9, 0x02, 0xd7, 0xb9, 0x77, 0xb5, 0x37, 0xb0, 0xab, 0xbd, 0x40, - 0x1f, 0xbd, 0xd3, 0xbb, 0xda, 0x93, 0xc1, 0xfa, 0x8d, 0x29, 0xf6, 0xb5, 0x8f, 0x5b, 0xc2, 0xce, - 0x76, 0xe4, 0x74, 0x14, 0x02, 0x77, 0xad, 0xcb, 0xe9, 0x70, 0x3c, 0x3f, 0x76, 0x99, 0xf4, 0xb8, - 0xe7, 0x44, 0xdf, 0x54, 0x4c, 0x99, 0xdc, 0xb1, 0xdc, 0x34, 0x38, 0x2c, 0x38, 0x2c, 0x38, 0x6c, - 0x89, 0x38, 0xec, 0xd8, 0x5d, 0xb6, 0x9a, 0x84, 0x2c, 0xf6, 0x0c, 0xf1, 0x87, 0x42, 0xec, 0xda, - 0x4a, 0xb3, 0x88, 0x3f, 0x58, 0x37, 0x54, 0xf5, 0xb3, 0x66, 0xb3, 0x75, 0xda, 0x6c, 0xd6, 0x4e, - 0x8f, 0x4f, 0x6b, 0xe7, 0x27, 0x27, 0xf5, 0x56, 0x1d, 0x91, 0x88, 0xd4, 0x3f, 0x36, 0x46, 0x22, - 0x7c, 0xe1, 0x70, 0x29, 0x43, 0x49, 0x8f, 0xc1, 0xe6, 0x9a, 0x05, 0xfe, 0x02, 0xfe, 0x02, 0xfe, - 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x9a, 0xc7, 0x5f, 0x9d, - 0x50, 0x7e, 0x1f, 0x89, 0x55, 0xa1, 0xab, 0x38, 0x31, 0x0a, 0x5b, 0x69, 0x1c, 0x58, 0x0c, 0x58, - 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x6c, 0x3d, - 0x16, 0x23, 0xd7, 0xc3, 0x96, 0x9a, 0x06, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, - 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x9b, 0xc7, 0x61, 0x1a, 0x94, 0x30, 0xe8, 0x5f, - 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, - 0x6b, 0x70, 0x17, 0xb9, 0xea, 0x05, 0xad, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, - 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x6b, 0x71, 0x58, 0xc2, 0x44, 0x69, 0xdb, 0x08, 0xb9, - 0xa6, 0x6d, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, - 0x20, 0x31, 0x20, 0xb1, 0x05, 0x24, 0xa6, 0x63, 0x2b, 0xe4, 0x52, 0xbb, 0x40, 0x60, 0x40, 0x60, - 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x0b, 0x08, - 0x4c, 0xdf, 0x66, 0xc8, 0xb5, 0xad, 0x03, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, - 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x6d, 0x40, 0x63, 0xf4, 0x9a, 0x18, 0xf6, 0x43, - 0x02, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, - 0xfd, 0x0c, 0x89, 0xe9, 0x50, 0xc3, 0xa0, 0x81, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, - 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0xad, 0x43, 0x5e, 0xf4, 0xca, 0x17, 0xf4, 0x2e, - 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0xae, 0x9d, 0x44, - 0x5d, 0xfb, 0x7e, 0xb4, 0xf7, 0xf0, 0xa4, 0xe4, 0xa3, 0x9c, 0xe7, 0xc2, 0x56, 0xd2, 0x9c, 0x38, - 0xfd, 0x7a, 0xd2, 0x97, 0xa9, 0xa3, 0xc3, 0x33, 0x9c, 0x8e, 0xec, 0x75, 0xdd, 0xc8, 0x71, 0x03, - 0x7f, 0x04, 0x45, 0x72, 0x1e, 0xba, 0x3b, 0xdf, 0x58, 0xd6, 0x73, 0x4c, 0x79, 0x87, 0x25, 0xc1, - 0x10, 0x16, 0x75, 0x58, 0x10, 0xf3, 0x9c, 0xe7, 0xf7, 0xd6, 0x70, 0x7e, 0x2f, 0xce, 0xef, 0xb5, - 0xc1, 0x60, 0xe6, 0x86, 0xcf, 0xd3, 0xd9, 0x72, 0x1f, 0x86, 0x01, 0x67, 0x22, 0xcf, 0x7c, 0x99, - 0x1c, 0x7e, 0x5d, 0x2f, 0xb3, 0xe1, 0x4a, 0x22, 0x87, 0x79, 0x9e, 0x74, 0x3c, 0xae, 0xb8, 0xab, - 0x1c, 0x25, 0x99, 0x88, 0x7b, 0xbe, 0x22, 0x38, 0x3b, 0x7c, 0x73, 0xd3, 0xf9, 0x8d, 0x5a, 0x1d, - 0x06, 0x0d, 0x06, 0x0d, 0x06, 0x2d, 0xcd, 0x6c, 0x49, 0x7c, 0xa1, 0x8e, 0x1b, 0x04, 0xf6, 0xec, - 0x34, 0x47, 0x13, 0x34, 0xa4, 0x9f, 0x40, 0x1d, 0xa1, 0x24, 0xf9, 0xc4, 0x8c, 0x91, 0x9a, 0xd4, - 0xeb, 0xa0, 0x83, 0x04, 0x24, 0x9e, 0x94, 0xbc, 0xeb, 0x1a, 0x82, 0x66, 0xe3, 0xbc, 0x79, 0xde, - 0x3a, 0x6d, 0x9c, 0x9f, 0x94, 0x78, 0x2c, 0x0a, 0xa2, 0xc2, 0xed, 0x12, 0xc3, 0x1a, 0x2e, 0xd8, - 0x7d, 0xc0, 0xbd, 0xfc, 0x20, 0x66, 0xd2, 0x50, 0x7e, 0xc8, 0x32, 0xf0, 0x62, 0x40, 0x2d, 0x40, - 0x2d, 0x40, 0x2d, 0xa0, 0x61, 0x2b, 0xf7, 0xd8, 0x53, 0x49, 0x7e, 0x5b, 0x35, 0x68, 0x04, 0x06, - 0x06, 0x06, 0x06, 0x06, 0x06, 0xb4, 0x68, 0x87, 0x69, 0x51, 0xbd, 0x71, 0x06, 0x66, 0x94, 0x7a, - 0x14, 0x8e, 0xf7, 0x88, 0x9c, 0xee, 0x3a, 0x21, 0x3a, 0xd0, 0x38, 0x21, 0xf3, 0xc6, 0x1c, 0xc9, - 0x63, 0x8d, 0xe9, 0x5c, 0xd2, 0xf6, 0xef, 0x26, 0xc5, 0x7b, 0xa9, 0x26, 0x42, 0x24, 0xbd, 0x7b, - 0x2e, 0x33, 0x30, 0xca, 0x99, 0xa3, 0x99, 0xb5, 0x91, 0x72, 0x44, 0x26, 0x00, 0x36, 0xe5, 0x65, - 0x59, 0x41, 0x59, 0x1e, 0x30, 0xb6, 0x00, 0xc2, 0x3a, 0x19, 0xbc, 0x6a, 0x5e, 0xf0, 0x45, 0x06, - 0xba, 0xc8, 0xc0, 0xd6, 0x0a, 0xc8, 0xea, 0x54, 0x4b, 0xb6, 0xe2, 0xaf, 0x7c, 0x99, 0x6d, 0xb0, - 0xdd, 0xc9, 0x0c, 0xcb, 0x49, 0x5c, 0xc6, 0xed, 0xe4, 0xe3, 0x2e, 0xf5, 0x5d, 0xe1, 0x2e, 0x1d, - 0x70, 0x17, 0x43, 0xcb, 0xaa, 0x18, 0xee, 0x92, 0x75, 0xb9, 0x91, 0x89, 0x9b, 0xc4, 0x22, 0xe7, - 0xec, 0xc1, 0x68, 0x92, 0x4e, 0x88, 0xf9, 0x43, 0xf9, 0x73, 0xc1, 0x3b, 0xc8, 0x05, 0xa7, 0x68, - 0x98, 0xd0, 0x20, 0x10, 0x31, 0x89, 0xd2, 0xe5, 0x82, 0xe7, 0x57, 0x53, 0x57, 0xbc, 0x6e, 0x7d, - 0x2f, 0x12, 0x31, 0xdf, 0x3c, 0x0e, 0xb9, 0x69, 0x76, 0x7d, 0x86, 0xce, 0x1d, 0x87, 0xae, 0xc3, - 0x1f, 0xd5, 0x85, 0xe2, 0x01, 0xef, 0x71, 0x25, 0x9f, 0x9c, 0x50, 0x38, 0x6e, 0x77, 0x28, 0x20, - 0x91, 0xba, 0xe8, 0xa1, 0x09, 0x27, 0xf4, 0xd1, 0xa6, 0xdd, 0x73, 0x7b, 0x77, 0x72, 0x6e, 0x67, - 0xd4, 0xf1, 0x68, 0x0c, 0x95, 0x4b, 0x1c, 0xca, 0x98, 0x3e, 0x87, 0x23, 0x79, 0x27, 0x3f, 0x37, - 0x58, 0x6c, 0x0e, 0x14, 0x01, 0x14, 0x01, 0x14, 0x41, 0x3b, 0x33, 0xa7, 0x65, 0xe8, 0x44, 0xcb, - 0x10, 0x80, 0x1e, 0x80, 0xde, 0x6e, 0x40, 0x9f, 0x77, 0x59, 0xaf, 0xfa, 0x58, 0xba, 0xe9, 0xb1, - 0xe2, 0x6f, 0xa9, 0xa6, 0x07, 0x71, 0x14, 0x90, 0x6a, 0xf1, 0xeb, 0x30, 0x02, 0xda, 0x8c, 0x81, - 0x2e, 0xa3, 0xa0, 0xdd, 0x38, 0x68, 0x37, 0x12, 0x3a, 0x8d, 0x05, 0x8d, 0xd1, 0x20, 0x32, 0x1e, - 0xf4, 0xaa, 0xc0, 0xca, 0x6c, 0x0d, 0x38, 0xeb, 0x64, 0x07, 0xd9, 0x3f, 0xf5, 0xf8, 0xa7, 0x84, - 0x6d, 0xde, 0x4e, 0x29, 0xd5, 0x60, 0x98, 0x2f, 0xe6, 0x28, 0xd4, 0xd2, 0x1f, 0xc6, 0xbf, 0x0f, - 0x77, 0x18, 0x96, 0x64, 0xdb, 0x2a, 0x45, 0x76, 0x40, 0x9c, 0xdc, 0x6b, 0xb4, 0xff, 0x0b, 0xad, - 0xc3, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0x58, 0xeb, 0x02, 0x3e, 0xcf, 0x5c, 0xc0, 0x3f, - 0xdd, 0x44, 0x4a, 0x2e, 0xd4, 0x8b, 0xc3, 0xa3, 0x57, 0xaf, 0x66, 0x6a, 0x5b, 0x7b, 0x7c, 0xc9, - 0xbc, 0xdd, 0x8b, 0xd7, 0xfc, 0x6d, 0xda, 0xb2, 0xc7, 0x1f, 0x4b, 0xe3, 0x4d, 0x0a, 0x65, 0x33, - 0xb9, 0x35, 0xf1, 0xc9, 0x0f, 0x3d, 0xc1, 0xd5, 0xa6, 0x91, 0x6f, 0x30, 0x66, 0x04, 0x5a, 0xf9, - 0x5a, 0x2b, 0x56, 0x34, 0xe1, 0x6d, 0xe7, 0x15, 0xe0, 0x68, 0xb4, 0xf4, 0x19, 0xf4, 0xd1, 0xa2, - 0xa9, 0x2f, 0x48, 0xcc, 0xb9, 0x14, 0xf6, 0xfc, 0x6f, 0xfd, 0x39, 0x57, 0x41, 0x0d, 0xa6, 0x38, - 0x9d, 0xe6, 0x37, 0x6a, 0xae, 0x64, 0x92, 0x5f, 0x03, 0x92, 0x1f, 0x24, 0x3f, 0x48, 0x7e, 0x90, - 0xfc, 0xc0, 0xf7, 0xc0, 0xf7, 0xc0, 0xf7, 0xc0, 0xf7, 0x20, 0xf9, 0x41, 0xf2, 0x83, 0x0b, 0x80, - 0x0b, 0x80, 0x0b, 0x80, 0x0b, 0x80, 0xe4, 0xa7, 0x99, 0xcd, 0xd8, 0xa8, 0xe7, 0x64, 0xd8, 0x44, - 0x48, 0x28, 0xe7, 0xec, 0x7b, 0xb9, 0xd8, 0x4d, 0xc3, 0x62, 0xa2, 0x70, 0xec, 0x9f, 0xd3, 0xbe, - 0xbf, 0x4e, 0xbf, 0xf4, 0x81, 0x77, 0xca, 0x9c, 0x3c, 0x9b, 0x4f, 0xc2, 0x23, 0x91, 0xee, 0xc8, - 0x92, 0x65, 0x1b, 0x48, 0x96, 0xd5, 0x07, 0xb5, 0x90, 0x2c, 0x4b, 0x26, 0xb1, 0x61, 0x3f, 0x5d, - 0x31, 0x5c, 0x0c, 0x5a, 0x7c, 0xa9, 0x39, 0x16, 0xf6, 0xd3, 0xfd, 0x7a, 0xb6, 0x61, 0x3f, 0xdd, - 0x4e, 0x22, 0xd5, 0x1c, 0x94, 0x01, 0xd5, 0x5c, 0xb6, 0x78, 0xc1, 0xd5, 0x4c, 0xc8, 0x38, 0x2d, - 0xe8, 0xd7, 0x56, 0x38, 0xe6, 0x80, 0x70, 0xa0, 0xb2, 0x0e, 0x10, 0xe1, 0xc0, 0xa4, 0x18, 0x8d, - 0x6d, 0x47, 0x61, 0xbb, 0x57, 0xff, 0xeb, 0x17, 0xb9, 0xc5, 0x4b, 0x4c, 0x49, 0x99, 0x32, 0x51, - 0xa4, 0x94, 0x94, 0x28, 0x35, 0x05, 0xca, 0x82, 0x84, 0xe6, 0x11, 0xcf, 0x60, 0x28, 0xd3, 0x8c, - 0x62, 0x46, 0x6c, 0x93, 0x1b, 0xc3, 0xe4, 0xc6, 0x2a, 0xcb, 0x98, 0x64, 0xf8, 0xe0, 0x05, 0x2d, - 0xdc, 0xb4, 0xb4, 0xa3, 0x3a, 0xbc, 0xd9, 0xcc, 0xe5, 0xa3, 0x52, 0x8e, 0x71, 0x0e, 0xc0, 0x5f, - 0x78, 0xe1, 0xa8, 0x0c, 0x8f, 0x5a, 0xd9, 0x8b, 0xd2, 0x51, 0xe9, 0xa6, 0xbb, 0x19, 0x80, 0x91, - 0x19, 0x54, 0xcf, 0x15, 0x46, 0x1b, 0x38, 0xbf, 0x0c, 0xe3, 0x3d, 0xb1, 0xca, 0xe7, 0x19, 0xae, - 0x1d, 0xdf, 0x76, 0xb6, 0xe4, 0x55, 0xa2, 0xb2, 0xa3, 0xf5, 0x16, 0x41, 0xd9, 0xd1, 0x16, 0xca, - 0x8e, 0x6a, 0x91, 0x39, 0xa6, 0xcd, 0xe1, 0x34, 0x86, 0xd2, 0x0c, 0x41, 0xeb, 0xe4, 0xe4, 0x18, - 0x07, 0x31, 0xac, 0xfc, 0xb4, 0x4d, 0x52, 0x77, 0x02, 0xdb, 0x17, 0x2b, 0xe9, 0x8b, 0x07, 0x8a, - 0x92, 0xee, 0x67, 0x86, 0x38, 0x7a, 0x1b, 0x54, 0xf2, 0x97, 0x54, 0x32, 0x85, 0x68, 0xb2, 0x05, - 0xf1, 0x3b, 0xc8, 0xf1, 0x42, 0xaa, 0x97, 0xc9, 0xc3, 0x00, 0x35, 0x0d, 0x25, 0xfd, 0x5f, 0xfb, - 0xb6, 0x94, 0xc4, 0x71, 0xab, 0x1c, 0xb4, 0xc1, 0x1b, 0xb9, 0x98, 0x7b, 0x3b, 0xdb, 0x12, 0xcd, - 0x2b, 0x1e, 0xbb, 0xd2, 0x8f, 0xc6, 0x63, 0x58, 0xbd, 0xbe, 0xed, 0x37, 0x2b, 0xcc, 0xf3, 0x24, - 0x8f, 0xe3, 0x4a, 0x87, 0xf5, 0xfc, 0xe0, 0xa9, 0x32, 0x1a, 0x9a, 0x44, 0x0e, 0x07, 0xba, 0xd2, - 0x09, 0xe5, 0x17, 0x31, 0xbb, 0x17, 0xdd, 0x84, 0xb6, 0x66, 0x86, 0xd0, 0xa6, 0xaa, 0xdf, 0xbf, - 0x3b, 0x74, 0x36, 0x4d, 0xfd, 0xfd, 0x82, 0xc9, 0xac, 0x1f, 0xf5, 0x9b, 0xd9, 0xc9, 0xec, 0xf0, - 0xea, 0xb4, 0x55, 0x6a, 0x17, 0x97, 0xc6, 0x2d, 0x93, 0xac, 0xc7, 0x15, 0x97, 0xf1, 0x60, 0x0d, - 0x54, 0x54, 0x97, 0x57, 0xd6, 0xac, 0x96, 0x57, 0xfb, 0x52, 0x6b, 0x39, 0x02, 0x61, 0x26, 0x3a, - 0xd0, 0xe2, 0xb9, 0x58, 0x5f, 0x4f, 0xa1, 0x89, 0x96, 0xdb, 0xa3, 0xb5, 0xe0, 0xd1, 0xe0, 0xd1, - 0x4a, 0xe9, 0xd1, 0x5a, 0xb9, 0x3c, 0x5a, 0x4b, 0x8b, 0x47, 0x6b, 0xc1, 0xa3, 0xc1, 0xa3, 0xed, - 0xb8, 0x47, 0xfb, 0xe9, 0x37, 0xda, 0xbf, 0x22, 0x7b, 0xe9, 0x58, 0x2f, 0x0d, 0xdb, 0xad, 0x6e, - 0x15, 0x98, 0xfc, 0x55, 0xac, 0xf4, 0xe7, 0x43, 0xb9, 0xf9, 0xb5, 0xfc, 0xc4, 0x06, 0x56, 0xe3, - 0x50, 0x70, 0xf5, 0xcb, 0x37, 0x31, 0xd3, 0x62, 0x86, 0x5f, 0xff, 0xc5, 0x2b, 0xde, 0xce, 0x84, - 0x6c, 0x6d, 0x32, 0xd2, 0x98, 0x88, 0x79, 0x93, 0x10, 0xf8, 0x82, 0x3b, 0x6e, 0xd8, 0xdb, 0xe6, - 0xe5, 0xa7, 0x34, 0x04, 0x99, 0x17, 0x7e, 0xe6, 0x85, 0xbe, 0xbc, 0xb0, 0xa7, 0x0f, 0xa7, 0x5b, - 0x1b, 0x31, 0xb6, 0x5c, 0xb6, 0x99, 0x5a, 0x3f, 0x5d, 0x28, 0x77, 0xc3, 0x06, 0x74, 0xac, 0x91, - 0xad, 0x52, 0x06, 0x52, 0xa5, 0x0a, 0xa4, 0x5e, 0x23, 0x0d, 0x3d, 0x6b, 0x64, 0xab, 0xe4, 0x47, - 0xfb, 0x56, 0xc7, 0x36, 0xc9, 0x87, 0xf9, 0xd6, 0xc5, 0xb6, 0x78, 0xb1, 0xca, 0xbc, 0x9e, 0x2f, - 0x9c, 0xc1, 0x9c, 0x48, 0xe2, 0xf4, 0x69, 0x27, 0x0b, 0x57, 0xa7, 0xa3, 0x36, 0xb5, 0xb2, 0x52, - 0x9b, 0xce, 0x7e, 0x52, 0x9b, 0x4e, 0x51, 0xd4, 0x26, 0x75, 0xc8, 0x7d, 0x2e, 0x31, 0x3d, 0xe9, - 0xf1, 0x11, 0xcf, 0x4e, 0x33, 0x66, 0x13, 0xdb, 0xd6, 0x4c, 0x71, 0xcd, 0x1b, 0x91, 0xf4, 0x06, - 0x37, 0x49, 0xfb, 0xe8, 0xa9, 0x6b, 0x4e, 0x65, 0x9f, 0x65, 0x64, 0x35, 0xa4, 0xf2, 0xd7, 0x8a, - 0xca, 0x58, 0x13, 0x2a, 0x45, 0x84, 0x2f, 0xf7, 0x6b, 0x0a, 0xa3, 0xf1, 0xbc, 0x62, 0x81, 0x35, - 0xaf, 0x67, 0xab, 0x6f, 0xb6, 0x49, 0x92, 0x14, 0xdd, 0x30, 0x19, 0xc0, 0x9a, 0x0c, 0x0e, 0x63, - 0x7a, 0xe5, 0x8e, 0xe8, 0x60, 0x70, 0x16, 0x25, 0xd7, 0xc1, 0x5c, 0x26, 0xa5, 0xcf, 0xa5, 0xa3, - 0x24, 0x13, 0xb1, 0x3f, 0x58, 0xd2, 0x71, 0x76, 0x59, 0x6c, 0x5d, 0x63, 0xfb, 0x91, 0xc4, 0x88, - 0xd3, 0x2f, 0x73, 0x2f, 0x84, 0x8c, 0xfa, 0x95, 0xf1, 0x04, 0xc6, 0xb1, 0x89, 0x6e, 0x35, 0x73, - 0x24, 0x31, 0x9e, 0x65, 0xb8, 0x34, 0x5f, 0xfa, 0x5e, 0x8e, 0x44, 0x1e, 0x8a, 0x74, 0x3d, 0xaa, - 0xdd, 0x88, 0x44, 0xe9, 0x79, 0x94, 0xf9, 0x60, 0x79, 0x6a, 0x38, 0x52, 0xa4, 0xe1, 0x51, 0xbf, - 0xda, 0xfa, 0x59, 0xb3, 0xd9, 0x3a, 0x6d, 0x36, 0x6b, 0xa7, 0xc7, 0xa7, 0xb5, 0xf3, 0x93, 0x93, - 0x7a, 0xab, 0x7e, 0x52, 0xa2, 0xb7, 0x5d, 0xce, 0x1c, 0xb0, 0x94, 0x56, 0x28, 0x73, 0x31, 0xdd, - 0xfc, 0x8e, 0x82, 0xbc, 0x58, 0x2e, 0x5d, 0x71, 0xdc, 0x9c, 0xc5, 0x70, 0xd3, 0x0d, 0x72, 0x5b, - 0xcb, 0xd1, 0xe1, 0xbe, 0x70, 0xee, 0x65, 0xc8, 0x3c, 0x97, 0xc5, 0xca, 0x89, 0xbe, 0xa9, 0x1c, - 0x60, 0x6a, 0xb5, 0x29, 0x40, 0x29, 0x40, 0x29, 0x40, 0x29, 0x40, 0x29, 0x40, 0x29, 0x40, 0xa9, - 0xdd, 0x85, 0x52, 0xba, 0xfc, 0xb2, 0xe7, 0xc7, 0x2e, 0x93, 0x5e, 0x3e, 0x8f, 0x3c, 0x6d, 0x04, - 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x38, 0xad, 0x2f, - 0xe6, 0x52, 0x86, 0x32, 0x9f, 0x27, 0x1e, 0x37, 0x01, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, - 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x9c, 0xd6, 0x0f, 0x77, 0xdc, 0x98, 0xc2, 0x17, 0xcf, 0x35, - 0x03, 0x7f, 0x0c, 0x7f, 0x0c, 0x7f, 0x0c, 0x7f, 0x0c, 0x7f, 0x0c, 0x7f, 0x0c, 0x7f, 0x9c, 0xd6, - 0x1f, 0xf7, 0x92, 0x40, 0xf9, 0x34, 0xb1, 0xe3, 0xa5, 0xa6, 0xe0, 0x97, 0xe1, 0x97, 0xe1, 0x97, - 0xe1, 0x97, 0xe1, 0x97, 0xe1, 0x97, 0xe1, 0x97, 0xd3, 0xfa, 0xe5, 0xd0, 0x55, 0x3c, 0xa7, 0x3f, - 0x1e, 0x37, 0x01, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, 0x0c, 0x3f, - 0x9c, 0xd6, 0x0f, 0xe7, 0x66, 0xc5, 0xe0, 0xc2, 0xf0, 0xc1, 0xf0, 0xc1, 0xf0, 0xc1, 0xf0, 0xc1, - 0xf0, 0xc1, 0xf0, 0xc1, 0x99, 0x7c, 0x70, 0x22, 0x88, 0x14, 0xea, 0x85, 0x86, 0xe0, 0x93, 0xe1, - 0x93, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0x93, 0xd3, 0xfb, 0xe4, 0x6f, 0x22, - 0xfc, 0x2e, 0x9c, 0x48, 0x86, 0x2a, 0xcc, 0xeb, 0x95, 0x17, 0x9a, 0x82, 0x5f, 0x86, 0x5f, 0x86, - 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x4e, 0xe5, 0x97, 0x83, 0x01, 0xb9, 0x75, - 0x03, 0xce, 0x64, 0x76, 0x87, 0x3c, 0xd7, 0x06, 0x3c, 0x31, 0x3c, 0xf1, 0x4e, 0x79, 0x62, 0xe5, - 0xf7, 0xb8, 0xf2, 0xdd, 0x6f, 0xb1, 0x71, 0x5f, 0xfc, 0xa7, 0x18, 0xd9, 0xb1, 0xaa, 0x60, 0x22, - 0x8c, 0xb9, 0x1b, 0x8a, 0xd4, 0x3b, 0xfa, 0xe1, 0xd3, 0xe1, 0xd3, 0xe1, 0xd3, 0xcb, 0xec, 0xd3, - 0x51, 0x92, 0x0d, 0x25, 0xd9, 0x06, 0x4f, 0x10, 0x26, 0x8a, 0xac, 0x26, 0xdb, 0x9a, 0xb6, 0x00, - 0xcb, 0x00, 0xcb, 0x20, 0x90, 0x40, 0x20, 0x01, 0x98, 0x02, 0x98, 0x82, 0x40, 0x92, 0xda, 0x33, - 0xe7, 0xaf, 0xca, 0xb6, 0xd0, 0x0a, 0xbc, 0x31, 0xbc, 0x31, 0xbc, 0x31, 0xbc, 0x31, 0xbc, 0x31, - 0xbc, 0x31, 0xbc, 0x71, 0x6a, 0x6f, 0x9c, 0xb7, 0x16, 0xcc, 0x5c, 0x1b, 0xf0, 0xc4, 0xf0, 0xc4, - 0xf0, 0xc4, 0xf0, 0xc4, 0xf0, 0xc4, 0xf0, 0xc4, 0xf0, 0xc4, 0xa9, 0x3d, 0x31, 0x55, 0x25, 0x98, - 0x35, 0x6d, 0xc1, 0x33, 0xc3, 0x33, 0xc3, 0x33, 0xc3, 0x33, 0xc3, 0x33, 0xc3, 0x33, 0xc3, 0x33, - 0xa7, 0xf6, 0xcc, 0x79, 0x6b, 0xc1, 0xcc, 0xb5, 0x01, 0x4f, 0x0c, 0x4f, 0x0c, 0x4f, 0x0c, 0x4f, - 0x0c, 0x4f, 0x0c, 0x4f, 0x0c, 0x4f, 0x9c, 0xda, 0x13, 0xe7, 0x67, 0xc6, 0xe0, 0xc3, 0xf0, 0xc2, - 0xf0, 0xc2, 0xf0, 0xc2, 0xf0, 0xc2, 0xf0, 0xc2, 0xf0, 0xc2, 0xd9, 0xbc, 0x30, 0x4d, 0x3d, 0x98, - 0x95, 0x96, 0xe0, 0x95, 0xe1, 0x95, 0xe1, 0x95, 0xe1, 0x95, 0xe1, 0x95, 0xe1, 0x95, 0xe1, 0x95, - 0xb7, 0xfc, 0xe6, 0x96, 0x73, 0x2a, 0xfd, 0x66, 0xb7, 0x94, 0x5e, 0x7d, 0x75, 0x73, 0x5b, 0x18, - 0x71, 0xc9, 0x06, 0x63, 0xc9, 0x82, 0xb4, 0xae, 0x3d, 0xf7, 0x66, 0xb6, 0x8c, 0x9b, 0xd8, 0xb6, - 0x7b, 0xe5, 0xed, 0x2d, 0x5f, 0xf9, 0xa5, 0x10, 0xa1, 0x1a, 0xbe, 0x81, 0x54, 0x2b, 0xb7, 0x1a, - 0xbb, 0x5d, 0xde, 0x63, 0x11, 0x53, 0xdd, 0xc1, 0xdd, 0x1f, 0x85, 0x11, 0x17, 0xee, 0x10, 0xb4, - 0x38, 0xfe, 0xc0, 0x9d, 0x74, 0x98, 0xcb, 0xe3, 0xa3, 0x75, 0x1f, 0x8f, 0x62, 0xc5, 0x14, 0x3f, - 0x1a, 0xbb, 0x9d, 0x34, 0x80, 0xaa, 0x1a, 0x2b, 0x99, 0xb8, 0x4a, 0x8c, 0x1d, 0xd7, 0xf5, 0xa4, - 0xc5, 0xaf, 0xaf, 0x27, 0x6d, 0x1d, 0xd0, 0xbc, 0xbf, 0x2d, 0xa6, 0x6b, 0xd5, 0xe3, 0xb1, 0x2b, - 0xfd, 0x28, 0xd5, 0x8b, 0x9b, 0xfa, 0xdc, 0xf9, 0x8b, 0xb7, 0x1c, 0xa7, 0x74, 0x56, 0x31, 0x35, - 0x80, 0xcc, 0x02, 0x1c, 0x33, 0x03, 0xc6, 0xac, 0x40, 0x31, 0x37, 0x40, 0xcc, 0x0d, 0x0c, 0xf3, - 0x00, 0x42, 0x5a, 0x53, 0x99, 0x1a, 0xf8, 0x4d, 0x47, 0x2b, 0x56, 0xd2, 0x17, 0x0f, 0x69, 0x86, - 0x6b, 0x3c, 0xf7, 0xea, 0x67, 0x06, 0xd7, 0x17, 0x17, 0xec, 0x3e, 0xe0, 0x5e, 0xfa, 0xb5, 0x35, - 0xb9, 0x70, 0xcb, 0xf7, 0x78, 0xc5, 0x3b, 0x2c, 0x09, 0x86, 0xe3, 0x39, 0x98, 0x0e, 0x58, 0x8e, - 0x58, 0x8e, 0x66, 0x97, 0xe3, 0x7d, 0x18, 0x06, 0x9c, 0x89, 0x2c, 0xeb, 0xb1, 0x6e, 0x70, 0x3d, - 0x76, 0x99, 0xf4, 0xbe, 0x33, 0xc9, 0x9d, 0x28, 0x94, 0x2a, 0xfd, 0xaa, 0x5c, 0xbc, 0x7c, 0x37, - 0x16, 0x59, 0x8a, 0x47, 0xd9, 0xad, 0x65, 0x36, 0x7c, 0x70, 0xeb, 0x16, 0x5a, 0xc0, 0x59, 0x47, - 0xf2, 0x4e, 0x96, 0x85, 0x76, 0x9a, 0xe2, 0x9a, 0xdb, 0x29, 0x24, 0x76, 0x9d, 0x28, 0x60, 0xaa, - 0x13, 0xca, 0xde, 0x85, 0x1b, 0xf6, 0xa2, 0x50, 0x70, 0xa1, 0xe2, 0xf5, 0x7f, 0x5e, 0xf8, 0xeb, - 0x10, 0xe0, 0x1a, 0x5c, 0xda, 0x7e, 0xc7, 0x17, 0x1e, 0x7f, 0x4c, 0xbf, 0xa8, 0x27, 0x17, 0xc2, - 0x67, 0xc2, 0x67, 0x1a, 0x5d, 0xca, 0x89, 0x2f, 0xd4, 0x71, 0x23, 0xc3, 0x4a, 0x4e, 0xb3, 0x90, - 0xb3, 0x09, 0x94, 0x19, 0x94, 0xd8, 0x3c, 0x82, 0x64, 0x4e, 0xb5, 0x2c, 0xaf, 0x00, 0x49, 0x21, - 0x85, 0x65, 0x10, 0x1c, 0x73, 0x09, 0x8d, 0x54, 0xaf, 0xac, 0xd9, 0x38, 0x6f, 0x9e, 0xb7, 0x4e, - 0x1b, 0xe7, 0x27, 0x05, 0xbe, 0x3b, 0x4d, 0xb2, 0x5e, 0xdb, 0x72, 0x59, 0x2f, 0x7f, 0xcd, 0xaa, - 0xe2, 0xe4, 0xbd, 0x97, 0x50, 0x3f, 0xf3, 0xab, 0x9f, 0x24, 0xc0, 0x68, 0x54, 0xe5, 0xb4, 0x3b, - 0xf6, 0x03, 0x29, 0xc1, 0xd1, 0xfc, 0xc5, 0x00, 0x48, 0x00, 0x48, 0x46, 0x01, 0x52, 0xb6, 0x1a, - 0xa6, 0x19, 0xc2, 0xb9, 0x79, 0x6b, 0x96, 0x02, 0x65, 0x01, 0x65, 0xfd, 0xf4, 0x95, 0xd1, 0x85, - 0x6f, 0x81, 0xb7, 0x80, 0xb7, 0x80, 0xb7, 0x4a, 0x8d, 0xb7, 0xc2, 0x07, 0xdf, 0x65, 0x41, 0x06, - 0xac, 0x35, 0xbe, 0x10, 0x38, 0x0b, 0x38, 0xcb, 0x28, 0xce, 0xd2, 0x1f, 0xbc, 0x81, 0xc9, 0x87, - 0xc9, 0xdf, 0x69, 0x93, 0x1f, 0x46, 0xf7, 0xcc, 0xfd, 0xe6, 0xf4, 0x42, 0x2f, 0x0b, 0xc9, 0x5e, - 0xb8, 0x3c, 0x7d, 0xc8, 0x7f, 0xf8, 0x52, 0xe1, 0x36, 0xe0, 0x36, 0x76, 0xcd, 0x6d, 0x90, 0x2c, - 0xce, 0x9e, 0x4a, 0xd2, 0x2f, 0xc9, 0xc1, 0x45, 0x58, 0x50, 0x58, 0x50, 0x46, 0x17, 0x54, 0xe2, - 0x0b, 0x55, 0x6f, 0x65, 0x58, 0x4f, 0x2d, 0x48, 0x55, 0x90, 0xaa, 0x88, 0x5e, 0x59, 0xeb, 0xe4, - 0xe4, 0x78, 0x7f, 0xb5, 0x29, 0x12, 0x8f, 0x33, 0xce, 0xed, 0x4e, 0xe9, 0x72, 0x86, 0x57, 0xc1, - 0xe7, 0xc0, 0xe7, 0x18, 0xf5, 0x39, 0x76, 0xe4, 0x51, 0x0f, 0xf8, 0xa7, 0x13, 0x2b, 0xa6, 0x92, - 0x38, 0xfd, 0xc2, 0x9a, 0xbf, 0x18, 0xeb, 0x0b, 0xeb, 0xcb, 0xe8, 0xfa, 0xe2, 0x22, 0xe9, 0x8d, - 0xb5, 0x93, 0x2c, 0x8b, 0xac, 0x99, 0xe2, 0x9a, 0x37, 0x22, 0xe9, 0x0d, 0x6e, 0xf2, 0x19, 0x9a, - 0x1c, 0x34, 0xb9, 0xbd, 0xd7, 0xe4, 0xa2, 0xee, 0x53, 0xec, 0xbb, 0x2c, 0x18, 0xce, 0x20, 0xc1, - 0x33, 0xc4, 0x63, 0x56, 0x5a, 0xd8, 0x0d, 0xe7, 0xa1, 0x24, 0x13, 0xb1, 0xcb, 0xfd, 0x3e, 0x97, - 0x7b, 0xe9, 0x45, 0xe6, 0x9f, 0x1f, 0xe9, 0xff, 0x1b, 0xa6, 0x58, 0x96, 0xf4, 0xff, 0xcf, 0xcb, - 0xe9, 0xff, 0xff, 0x74, 0x13, 0x29, 0xb9, 0x50, 0x2f, 0x0e, 0x8f, 0x5e, 0xbd, 0x3a, 0x5a, 0x7c, - 0xf5, 0x17, 0x73, 0x9f, 0xdb, 0x3f, 0xf9, 0xbf, 0xe5, 0xff, 0x5a, 0x5e, 0x94, 0xf1, 0xf2, 0x17, - 0xc6, 0x7f, 0x5f, 0xfe, 0xf3, 0x28, 0xc7, 0x9f, 0x74, 0x14, 0xdf, 0xf9, 0xb1, 0xba, 0x54, 0x2a, - 0xdd, 0x01, 0xe4, 0xd5, 0x1b, 0x5f, 0xbc, 0x19, 0xf8, 0x37, 0x31, 0x74, 0xab, 0x22, 0x09, 0x82, - 0x14, 0xe3, 0x72, 0xc3, 0x1e, 0xb3, 0x5f, 0xfc, 0x5e, 0x7a, 0x5c, 0x72, 0xef, 0xb7, 0xa7, 0xf1, - 0xa5, 0x06, 0xf1, 0xbb, 0x8a, 0xfc, 0x0c, 0x9b, 0x20, 0x87, 0x57, 0xa5, 0x0f, 0x87, 0x84, 0xae, - 0xd3, 0x0f, 0x98, 0x70, 0xd4, 0x53, 0xc4, 0xe3, 0x8b, 0x8f, 0xb7, 0xd7, 0x57, 0x5f, 0x6b, 0x7f, - 0x9d, 0xd5, 0x6b, 0xb5, 0x1d, 0x31, 0xe0, 0x83, 0x87, 0xdb, 0x4b, 0xcb, 0x3d, 0x7c, 0x70, 0xeb, - 0x4c, 0xb6, 0xef, 0x71, 0xa1, 0x7c, 0xf5, 0x94, 0xd1, 0x6c, 0xa7, 0xd0, 0xe2, 0xaa, 0xd7, 0xe3, - 0xae, 0x7e, 0x63, 0x31, 0xcf, 0x5e, 0x2d, 0x6a, 0xb8, 0x62, 0x3e, 0xfe, 0xfb, 0xf6, 0xcd, 0x5d, - 0xda, 0x01, 0x1f, 0x6a, 0x88, 0x46, 0x0f, 0x7a, 0x5e, 0xb8, 0xe7, 0xda, 0x5f, 0x67, 0x67, 0x97, - 0x67, 0x55, 0x13, 0x52, 0x2d, 0xc5, 0xed, 0x5e, 0xfe, 0xf1, 0x6f, 0x6b, 0xee, 0xb5, 0xf6, 0xd7, - 0xf9, 0xc0, 0x80, 0xda, 0x73, 0xbb, 0x67, 0x76, 0xdd, 0xee, 0x79, 0x23, 0xd3, 0xed, 0xea, 0x3a, - 0x01, 0xdc, 0x24, 0x34, 0x98, 0x83, 0xe3, 0xe9, 0x11, 0x42, 0x6a, 0x2e, 0x03, 0x76, 0x06, 0x76, - 0x06, 0x76, 0xb6, 0x96, 0x9d, 0x45, 0xa1, 0x54, 0x17, 0x0b, 0x25, 0x0e, 0xda, 0x0b, 0x4d, 0xc5, - 0xc9, 0xfd, 0x86, 0x4e, 0xe6, 0xff, 0xa7, 0xd0, 0x4d, 0xe0, 0x2a, 0xcd, 0xd0, 0xcd, 0xac, 0xc8, - 0xe0, 0x2a, 0x44, 0x06, 0x10, 0x19, 0x00, 0x2f, 0xf8, 0xe9, 0x0d, 0x4f, 0x4a, 0x95, 0x39, 0x29, - 0x16, 0x4c, 0x09, 0xb8, 0x81, 0xcf, 0x04, 0x73, 0x72, 0xdd, 0x3c, 0xc5, 0x43, 0xe4, 0x7b, 0x98, - 0xd5, 0x87, 0x8a, 0x3d, 0x91, 0x54, 0x8b, 0xa8, 0x8f, 0x49, 0xf4, 0x00, 0x4c, 0xf5, 0xde, 0x26, - 0xc2, 0xb7, 0xf9, 0x11, 0x62, 0x3f, 0xfa, 0xf8, 0x60, 0xf3, 0x03, 0x78, 0xa1, 0x1b, 0xbf, 0xef, - 0x78, 0x3d, 0xf6, 0x67, 0x14, 0x2b, 0xc9, 0x59, 0xcf, 0xe6, 0x87, 0xe9, 0x86, 0x3d, 0x1e, 0x09, - 0x66, 0xf5, 0x78, 0xc4, 0xf5, 0xb7, 0x57, 0xef, 0x6c, 0x7e, 0x02, 0xae, 0xba, 0x5c, 0x0a, 0xae, - 0x5e, 0xc7, 0x3d, 0xe6, 0x7a, 0x36, 0x3f, 0x49, 0x3f, 0xf4, 0x5d, 0xfe, 0xe6, 0xc6, 0xe6, 0x47, - 0x78, 0x50, 0x91, 0xdd, 0xab, 0xa1, 0xf6, 0x5b, 0x22, 0xbc, 0x80, 0x5b, 0xed, 0xe6, 0x82, 0xe4, - 0xcd, 0xbb, 0x5b, 0x9b, 0x9f, 0xc0, 0x8f, 0xc3, 0xb3, 0xb3, 0x5a, 0xa3, 0xf9, 0x31, 0xfc, 0xc6, - 0xc5, 0x6f, 0x49, 0x6c, 0x39, 0xe8, 0xb8, 0x4b, 0xee, 0xa7, 0x35, 0x77, 0x2d, 0x7f, 0x94, 0xfb, - 0x50, 0x58, 0x6d, 0x62, 0x23, 0x26, 0x99, 0xed, 0xf0, 0xe9, 0x35, 0xbb, 0x0f, 0xf8, 0x55, 0xf8, - 0x5d, 0xd8, 0x0f, 0xa0, 0x86, 0x1e, 0xef, 0x7d, 0x9f, 0xcb, 0x4b, 0x65, 0xf5, 0x73, 0x30, 0x2f, - 0x0e, 0x1a, 0x96, 0x2f, 0xed, 0xeb, 0x1e, 0xb3, 0x7e, 0x2a, 0x5d, 0x5d, 0x5f, 0xd9, 0xfc, 0x0c, - 0x1d, 0x16, 0xab, 0x37, 0x03, 0x38, 0xfb, 0xf6, 0x2f, 0x9b, 0x1f, 0x23, 0x54, 0xe2, 0xbd, 0x97, - 0xd8, 0xfd, 0x04, 0xdd, 0x34, 0xc1, 0x80, 0x92, 0xae, 0x86, 0xb7, 0x7f, 0xbd, 0xb7, 0x1a, 0x05, - 0x46, 0x3b, 0xe0, 0x19, 0xe4, 0xc0, 0x35, 0x58, 0xcd, 0xe8, 0xce, 0xcf, 0xcf, 0xea, 0xd6, 0xfb, - 0xe6, 0x28, 0xb0, 0x9b, 0x45, 0x44, 0xd2, 0xef, 0x31, 0xf9, 0x74, 0x7d, 0x77, 0xf5, 0x87, 0xcd, - 0x8f, 0xd1, 0x8b, 0x82, 0xf8, 0x63, 0x32, 0xcc, 0x6c, 0xb6, 0x79, 0x49, 0xc8, 0xe3, 0xda, 0xf1, - 0xf5, 0xd5, 0x47, 0xab, 0x85, 0xe4, 0x50, 0x70, 0x35, 0x8c, 0xea, 0xda, 0x8c, 0x97, 0x5c, 0x3f, - 0x7a, 0xe7, 0x8b, 0x6f, 0x56, 0x3b, 0x88, 0xb8, 0x71, 0x6c, 0x35, 0x75, 0xe8, 0xf7, 0xbe, 0x33, - 0xc9, 0xff, 0xf0, 0xdd, 0x8f, 0x96, 0x93, 0xd1, 0x80, 0x45, 0x1d, 0x9b, 0xef, 0xff, 0xde, 0x57, - 0x56, 0xfb, 0x38, 0x37, 0xec, 0x74, 0x38, 0xb7, 0x1c, 0xec, 0xf9, 0xe1, 0xcd, 0xe5, 0x6b, 0xab, - 0x9d, 0x5b, 0x14, 0x0a, 0xab, 0x15, 0xb2, 0xfe, 0xfd, 0x07, 0xd7, 0xdd, 0x85, 0xe8, 0xa2, 0x92, - 0xb5, 0xda, 0x99, 0xd5, 0x68, 0xaf, 0x6f, 0x35, 0xcc, 0x0b, 0x23, 0xe5, 0xbb, 0x2c, 0xf8, 0x28, - 0x99, 0x88, 0xd3, 0x9d, 0xdc, 0x52, 0xbe, 0x67, 0x79, 0x6c, 0x9c, 0xf4, 0x82, 0xc8, 0x76, 0x1e, - 0x6a, 0x35, 0x4e, 0x8a, 0x7b, 0x5e, 0x7c, 0xf5, 0xe8, 0xdb, 0xed, 0xa1, 0x7b, 0x51, 0x18, 0xfb, - 0x8a, 0xdb, 0x0e, 0xba, 0xa3, 0xc8, 0xea, 0xb5, 0xc0, 0xed, 0x76, 0xd1, 0xee, 0x7d, 0xf0, 0x89, - 0xbb, 0x8a, 0xdd, 0x29, 0x26, 0xed, 0x16, 0x28, 0xdf, 0x86, 0xf2, 0x3b, 0x93, 0x56, 0x47, 0x44, - 0x5d, 0x1e, 0xdb, 0x1e, 0x6b, 0x50, 0x89, 0xfd, 0x32, 0xf7, 0xeb, 0x80, 0x7d, 0xb7, 0x5a, 0x65, - 0xed, 0x04, 0x4c, 0xf0, 0xb3, 0x5a, 0xe3, 0xc4, 0x6a, 0x90, 0x71, 0x5a, 0x3b, 0x66, 0xaa, 0xd1, - 0xbb, 0xdf, 0x01, 0xdc, 0xfa, 0x7a, 0xb4, 0x2b, 0xfd, 0x77, 0x19, 0x26, 0x56, 0x3b, 0xbb, 0xee, - 0x53, 0xc4, 0xe5, 0xa4, 0x1e, 0x86, 0xdd, 0xf2, 0xd2, 0xbd, 0xdd, 0x21, 0x88, 0x30, 0xba, 0x49, - 0x02, 0xe5, 0x47, 0x01, 0x7f, 0x0c, 0xe5, 0x4e, 0xa4, 0x9d, 0xbc, 0x95, 0xac, 0xc7, 0x3f, 0xf0, - 0x80, 0x3d, 0xd9, 0x9f, 0x37, 0x2a, 0x5c, 0x16, 0xed, 0x44, 0x6a, 0xd3, 0x44, 0xbb, 0x79, 0x6d, - 0xff, 0x9a, 0xe7, 0x51, 0x20, 0x63, 0xdb, 0x17, 0xfd, 0x55, 0xe8, 0xc6, 0xff, 0xf2, 0x25, 0x0f, - 0x78, 0x1c, 0xef, 0x82, 0xae, 0x36, 0xcd, 0xb2, 0xb1, 0x7a, 0xb5, 0xd8, 0x9d, 0x16, 0x11, 0xc9, - 0x50, 0xf1, 0x50, 0xd4, 0x6b, 0x37, 0xf7, 0xbe, 0xda, 0x01, 0xf4, 0xee, 0x05, 0xae, 0xd5, 0x24, - 0x90, 0x45, 0xdf, 0x59, 0x74, 0x15, 0xaa, 0x7a, 0xfd, 0xb7, 0xd8, 0x6a, 0x83, 0x15, 0x2b, 0x26, - 0xdf, 0x31, 0xab, 0xe5, 0x11, 0x26, 0x5d, 0xc1, 0x95, 0xe5, 0xd9, 0xa4, 0xef, 0xc6, 0x27, 0x0b, - 0xed, 0xc0, 0xc6, 0xa2, 0x63, 0xdb, 0x6d, 0x54, 0xe0, 0x0b, 0xfe, 0x60, 0x3b, 0x0d, 0x1c, 0x26, - 0xac, 0x0c, 0x6c, 0x6d, 0x97, 0x33, 0x6f, 0x07, 0xa0, 0x61, 0x8f, 0xb9, 0x77, 0xdc, 0xfd, 0x53, - 0xb8, 0xa1, 0x50, 0x32, 0x0c, 0x02, 0xee, 0x5d, 0xbf, 0xb5, 0xda, 0x11, 0x76, 0x3e, 0x75, 0xfc, - 0xe1, 0xd6, 0x74, 0x9b, 0x27, 0x99, 0xe5, 0xc9, 0x9a, 0x51, 0x28, 0xea, 0x27, 0x56, 0x2b, 0x70, - 0x7d, 0x5f, 0xaa, 0x84, 0x05, 0x76, 0x6f, 0x72, 0x7e, 0x3c, 0x6b, 0xbd, 0x63, 0x51, 0xbc, 0x03, - 0x7b, 0x51, 0xdf, 0xfe, 0x6e, 0xf5, 0x86, 0x0a, 0x6e, 0x75, 0xe6, 0x72, 0x10, 0xba, 0x2c, 0xf8, - 0xc8, 0x02, 0xab, 0x43, 0xad, 0x7d, 0xdb, 0xb7, 0x46, 0x79, 0xfd, 0xfb, 0xcb, 0xd8, 0xbf, 0xb6, - 0x9a, 0x52, 0x3c, 0x74, 0x22, 0xfb, 0x77, 0xb3, 0xfc, 0x7e, 0xf5, 0xfe, 0xce, 0x76, 0x2d, 0xed, - 0x36, 0xf4, 0x85, 0xfa, 0x18, 0x0e, 0xff, 0xb9, 0xe3, 0xd2, 0x67, 0x96, 0xc3, 0x0d, 0xbb, 0xb5, - 0x82, 0xf8, 0xf4, 0xce, 0x7f, 0xb0, 0x3e, 0x81, 0xbc, 0xe3, 0xd6, 0x9b, 0x67, 0xc7, 0xbb, 0xb0, - 0xbe, 0xdf, 0x5c, 0xfe, 0x71, 0x69, 0xf3, 0x73, 0x7c, 0xff, 0xce, 0xc4, 0xed, 0xad, 0xed, 0x36, - 0xea, 0xb5, 0x08, 0xac, 0x5e, 0xd6, 0x3e, 0xe7, 0xfc, 0xac, 0xd6, 0xa8, 0x9f, 0x34, 0x2d, 0xaf, - 0xe2, 0xf1, 0x7b, 0x14, 0x8a, 0xf7, 0x76, 0x97, 0xdc, 0x1a, 0xef, 0x43, 0xbd, 0xb3, 0x1c, 0x00, - 0x7e, 0xf4, 0xec, 0x2e, 0xb3, 0x70, 0x6c, 0xb5, 0x26, 0x90, 0xc4, 0x56, 0x27, 0x4e, 0x74, 0xe4, - 0x55, 0xe0, 0xfa, 0x6f, 0x84, 0x77, 0xab, 0xec, 0x9e, 0x44, 0xa7, 0x56, 0xc3, 0xa4, 0xc8, 0xea, - 0x78, 0x2f, 0x73, 0x15, 0x0f, 0xfc, 0xf8, 0x86, 0x2b, 0xf6, 0xee, 0xfd, 0xfb, 0x5b, 0xbb, 0x95, - 0xfc, 0x8e, 0xfa, 0xce, 0x24, 0x7f, 0x37, 0x3e, 0x83, 0xdc, 0xf2, 0x7a, 0x8c, 0xd6, 0xef, 0x64, - 0xfe, 0x60, 0xf7, 0x4e, 0xe6, 0x51, 0xec, 0xfa, 0x5f, 0x2a, 0xfa, 0x34, 0x92, 0x8e, 0x3f, 0x30, - 0xcf, 0x0f, 0xad, 0x16, 0x2d, 0xdd, 0xd0, 0xf2, 0xf8, 0xef, 0x80, 0x45, 0x8c, 0x47, 0xc3, 0xea, - 0x10, 0x5d, 0xe8, 0xf1, 0x9e, 0xdd, 0x31, 0x39, 0xe7, 0x21, 0x16, 0x76, 0x63, 0xa7, 0x49, 0x82, - 0xe6, 0x1d, 0x97, 0x7d, 0xdf, 0xb5, 0xbe, 0x30, 0xa3, 0xfd, 0x94, 0x2e, 0xb6, 0x3c, 0xd7, 0x69, - 0x5c, 0x5c, 0xf2, 0xe4, 0xf5, 0x87, 0xb7, 0xb7, 0xd7, 0x42, 0xd9, 0x2d, 0xeb, 0xb3, 0x58, 0xed, - 0x82, 0x54, 0x63, 0x75, 0x80, 0xa8, 0x67, 0x7b, 0xd6, 0xc0, 0x3d, 0x8b, 0x7d, 0xd7, 0xf6, 0xd2, - 0x42, 0x76, 0x03, 0xf1, 0x5e, 0xe8, 0xb2, 0x4f, 0x5c, 0xc6, 0x7e, 0x28, 0xea, 0xd6, 0x67, 0x69, - 0x7d, 0xb2, 0x9a, 0x4f, 0xb0, 0xf8, 0x49, 0x58, 0xed, 0xe0, 0xee, 0xa5, 0xef, 0x3d, 0x58, 0x0d, - 0x94, 0xba, 0xb6, 0xe7, 0x0c, 0xf0, 0xd8, 0xb5, 0xbc, 0x8a, 0x8a, 0xff, 0xe0, 0x2b, 0x16, 0xfc, - 0x4b, 0xb2, 0x28, 0xe2, 0x72, 0x87, 0xd2, 0x2e, 0x23, 0xcb, 0x0b, 0x0d, 0x33, 0xcb, 0xeb, 0x0c, - 0x8f, 0x28, 0xd0, 0x38, 0x3b, 0xdc, 0xf6, 0xd0, 0x7b, 0x12, 0x28, 0xbb, 0xcb, 0x89, 0x0f, 0x8f, - 0x28, 0x0a, 0x38, 0xeb, 0x73, 0xdb, 0xe5, 0xa6, 0xdf, 0xfe, 0x75, 0x19, 0x35, 0x6e, 0x22, 0xfb, - 0xb3, 0x07, 0xec, 0xa6, 0x42, 0x7e, 0xf8, 0x68, 0x77, 0x05, 0x80, 0x38, 0xb0, 0x9b, 0x48, 0xc8, - 0x58, 0xde, 0xdb, 0x5e, 0x21, 0xd6, 0xea, 0xf9, 0x23, 0x77, 0x63, 0x13, 0xf6, 0x9d, 0xab, 0xf8, - 0xc9, 0x89, 0x57, 0xff, 0xc0, 0xd5, 0xfb, 0xd0, 0xea, 0x19, 0xa5, 0xb8, 0xec, 0xdd, 0x32, 0x6f, - 0x17, 0x64, 0xb2, 0xd6, 0xbf, 0x6e, 0x2e, 0xad, 0x16, 0x69, 0xfe, 0x1b, 0x58, 0xae, 0x1d, 0x8b, - 0x8e, 0x2f, 0xfc, 0x7b, 0x66, 0xf7, 0x21, 0x38, 0x7e, 0x60, 0xf9, 0x06, 0xd9, 0x11, 0x89, 0xb8, - 0xed, 0x3e, 0xc5, 0x03, 0x16, 0xf1, 0xa7, 0xdd, 0x47, 0x3a, 0xce, 0x42, 0x5c, 0x37, 0xb7, 0xd7, - 0x56, 0xbb, 0xee, 0xce, 0x2e, 0x64, 0x53, 0xf3, 0x87, 0x24, 0x60, 0xb2, 0x7e, 0xd6, 0x68, 0x58, - 0x7e, 0xac, 0xa3, 0xd5, 0x39, 0x1d, 0x42, 0xee, 0x12, 0x8a, 0x6a, 0xfc, 0x19, 0x5b, 0x0e, 0xa2, - 0xa2, 0x68, 0x54, 0xfb, 0x29, 0xf0, 0xc5, 0x37, 0xfb, 0x4f, 0x48, 0x5c, 0x29, 0x35, 0xf4, 0xa1, - 0x73, 0x6b, 0x79, 0x81, 0xdf, 0xae, 0xd7, 0xb5, 0xdd, 0x66, 0xf9, 0x3d, 0xb5, 0x03, 0x92, 0xf9, - 0x6d, 0xf8, 0x9d, 0xcb, 0xc0, 0x17, 0xdc, 0xee, 0x60, 0xea, 0xdd, 0x77, 0x5f, 0xb9, 0x5d, 0xcb, - 0x8b, 0x90, 0x58, 0x5f, 0xc7, 0x3e, 0xbe, 0x61, 0xee, 0x3b, 0xf6, 0x64, 0x77, 0xa9, 0xaa, 0x71, - 0xc2, 0x4d, 0x23, 0xd8, 0x89, 0xbc, 0xa1, 0x63, 0xfb, 0xcf, 0x99, 0x7e, 0x6c, 0xd4, 0x8f, 0x6d, - 0x3f, 0xd1, 0xcb, 0x6a, 0x30, 0xe5, 0x89, 0x61, 0xfd, 0xb9, 0x77, 0x61, 0x18, 0xd5, 0x77, 0xa0, - 0x58, 0xc7, 0x75, 0x74, 0xe9, 0x79, 0x92, 0xc7, 0xb6, 0x9f, 0xd3, 0x6c, 0x79, 0x75, 0xfe, 0xe5, - 0x5a, 0x8d, 0xbb, 0x71, 0x44, 0x70, 0xc7, 0xbf, 0x97, 0x7c, 0x07, 0x12, 0x0f, 0x46, 0xe7, 0xd2, - 0xec, 0xc6, 0x98, 0x78, 0x9e, 0xf8, 0xcb, 0xee, 0x30, 0x9f, 0x7f, 0xdf, 0x3b, 0x3e, 0xad, 0x45, - 0x4c, 0x0e, 0x66, 0x96, 0xe5, 0x66, 0x6b, 0x07, 0x76, 0x5a, 0xac, 0x08, 0x26, 0x57, 0xb6, 0x0b, - 0x26, 0xe3, 0x90, 0xcd, 0x31, 0xf3, 0xde, 0x31, 0xab, 0x6b, 0x59, 0x75, 0xfd, 0x88, 0xcb, 0x80, - 0x09, 0xbb, 0xe5, 0x50, 0x57, 0xd8, 0x7f, 0xc4, 0xe2, 0x78, 0x9d, 0xff, 0xe1, 0xef, 0x02, 0x8d, - 0x6a, 0xdd, 0xd8, 0x6d, 0x77, 0x7b, 0xdc, 0xf3, 0xd9, 0x0d, 0xf3, 0x83, 0xf7, 0x7d, 0x2e, 0xaf, - 0xa3, 0x5d, 0xc2, 0x8d, 0x37, 0xcc, 0x0d, 0x6c, 0xd7, 0x1c, 0xfa, 0xc7, 0x2d, 0xab, 0x2b, 0xbf, - 0x1d, 0xfb, 0x51, 0xdf, 0xf2, 0x28, 0xad, 0x17, 0xc4, 0xdf, 0x2d, 0x77, 0x7c, 0x91, 0x7f, 0x2d, - 0x14, 0x97, 0x1d, 0xe6, 0x5a, 0x9f, 0x1f, 0x69, 0xf9, 0x31, 0xfa, 0x53, 0x80, 0x78, 0xf3, 0xba, - 0xa7, 0x76, 0x84, 0xd9, 0x2a, 0xcb, 0x37, 0x52, 0xce, 0xc6, 0x64, 0x07, 0x1c, 0x46, 0xdc, 0xb5, - 0x5c, 0x54, 0x9c, 0x6c, 0x6b, 0x7d, 0xeb, 0xdf, 0xdb, 0x3d, 0x12, 0xbd, 0xc8, 0x6e, 0x7c, 0x6b, - 0xf9, 0x3c, 0xb2, 0xff, 0x70, 0x4f, 0xd7, 0x8f, 0xdd, 0xf0, 0xfa, 0xee, 0x9d, 0xed, 0x00, 0x8a, - 0xd5, 0x1b, 0x37, 0xd1, 0x0e, 0x04, 0x62, 0x25, 0x67, 0x6e, 0xf7, 0xea, 0xee, 0x9d, 0xe5, 0x87, - 0xb7, 0x79, 0x76, 0x9f, 0x29, 0x62, 0xf7, 0xe1, 0x60, 0xbd, 0x27, 0xe9, 0x5b, 0x5e, 0x14, 0x27, - 0xe8, 0xd9, 0x7f, 0xfe, 0x86, 0xdd, 0x00, 0xc9, 0x13, 0x96, 0xd7, 0xf9, 0x3d, 0x3b, 0x3d, 0xb5, - 0x7c, 0x7b, 0xd5, 0x28, 0xab, 0xe5, 0xa3, 0xd7, 0x63, 0x3b, 0x90, 0x80, 0x6e, 0x7f, 0x38, 0x72, - 0x17, 0xd2, 0x8b, 0x1e, 0xef, 0xc3, 0xc7, 0x89, 0x74, 0x69, 0xf9, 0xd6, 0xee, 0x13, 0xcb, 0x4f, - 0x5e, 0x73, 0xbf, 0x7d, 0x0c, 0xef, 0x94, 0xe5, 0x25, 0x1d, 0xa3, 0x50, 0xb4, 0xec, 0x4e, 0xa4, - 0x55, 0x92, 0x89, 0x38, 0xfa, 0x3f, 0xcb, 0xe5, 0xa5, 0xbe, 0xe5, 0x44, 0x3a, 0xf6, 0xa3, 0x3b, - 0xdf, 0xea, 0xd0, 0x6f, 0xdc, 0xf3, 0xe2, 0x6b, 0xd7, 0xee, 0xfd, 0xd0, 0x13, 0x59, 0xec, 0x4a, - 0xd9, 0x2d, 0x4f, 0xfa, 0x8f, 0x1f, 0xc3, 0xb7, 0x61, 0x22, 0x6d, 0x3f, 0x78, 0xd7, 0xf2, 0x45, - 0x1d, 0x46, 0xca, 0x77, 0x59, 0xb0, 0x03, 0xf9, 0x68, 0xf7, 0xb1, 0xd5, 0xde, 0x81, 0xf5, 0x7d, - 0xd7, 0x7f, 0x3f, 0x1a, 0x0d, 0xeb, 0x0f, 0x73, 0xee, 0x86, 0xb1, 0xb2, 0x7c, 0x8b, 0x7a, 0xbf, - 0x5e, 0xb7, 0x5d, 0x1c, 0x88, 0xed, 0xde, 0x45, 0xdc, 0xa9, 0xb7, 0x6e, 0x3a, 0x72, 0x37, 0x36, - 0xe7, 0xbd, 0xef, 0x78, 0xbd, 0xdd, 0x08, 0xf2, 0x3e, 0x9c, 0xd6, 0x8e, 0x99, 0x6a, 0x35, 0xbf, - 0xed, 0xd4, 0x7e, 0x49, 0xbb, 0x77, 0xbf, 0x9c, 0x74, 0x13, 0xa1, 0x7e, 0xb7, 0xfd, 0x40, 0xe4, - 0xc8, 0xb7, 0xff, 0x4c, 0xbf, 0x37, 0xbf, 0xdd, 0xed, 0xc0, 0x19, 0x4d, 0x3b, 0x52, 0x88, 0xa2, - 0x6b, 0xb9, 0x60, 0x30, 0x2b, 0xa4, 0x61, 0x7d, 0xda, 0x99, 0xed, 0x3b, 0x12, 0x76, 0xe0, 0xb8, - 0xa3, 0xd8, 0x73, 0xfd, 0x9d, 0xf0, 0xd9, 0x7f, 0x78, 0x1d, 0xab, 0xb3, 0x39, 0xec, 0xa7, 0xda, - 0x4c, 0xf5, 0xac, 0x3f, 0x94, 0xe6, 0xe1, 0xfc, 0xdc, 0xee, 0x33, 0x46, 0xff, 0x6b, 0x37, 0x6a, - 0x65, 0xd2, 0x15, 0x5c, 0xdd, 0x06, 0x89, 0xdd, 0x31, 0xae, 0x4e, 0xc0, 0xc4, 0x70, 0x5f, 0xd4, - 0x2e, 0x94, 0xe3, 0xab, 0xdb, 0x8d, 0x96, 0xde, 0x86, 0xf2, 0x3b, 0x93, 0x56, 0xab, 0x4e, 0x91, - 0xdd, 0x88, 0xb5, 0x7b, 0xdc, 0x38, 0xbe, 0x95, 0xe1, 0xe3, 0x93, 0xdd, 0xa5, 0xc6, 0x6a, 0xf6, - 0x1f, 0xef, 0xff, 0x3e, 0xb1, 0x3b, 0xb7, 0xa9, 0x73, 0xfb, 0xfd, 0xe3, 0x53, 0xc4, 0x77, 0xaa, - 0xf4, 0xec, 0xdb, 0xef, 0x9e, 0xed, 0xa5, 0x67, 0x13, 0xdb, 0xa1, 0xeb, 0x50, 0xa5, 0x79, 0xdf, - 0xe7, 0x72, 0x38, 0x32, 0xbb, 0x52, 0x74, 0xa5, 0x61, 0xb9, 0x7e, 0x19, 0xd9, 0x3d, 0x14, 0xd3, - 0x49, 0x65, 0xf7, 0xbe, 0x59, 0x61, 0xf9, 0xe1, 0xaf, 0xa3, 0x83, 0x53, 0xaf, 0x42, 0x55, 0xaf, - 0xdf, 0xca, 0xb0, 0xe3, 0xdb, 0x3d, 0xa9, 0xfc, 0x38, 0xb1, 0x7c, 0x34, 0xee, 0x03, 0x3e, 0x8b, - 0x79, 0xd9, 0x5f, 0x91, 0x32, 0x38, 0xf6, 0xa3, 0x47, 0xdb, 0xf7, 0xe0, 0x3c, 0xf8, 0x0f, 0xec, - 0xde, 0x57, 0x43, 0xcf, 0x61, 0x79, 0xfe, 0xfb, 0x9c, 0x20, 0x68, 0x75, 0xb2, 0x44, 0xd0, 0xb0, - 0x7d, 0x52, 0x4d, 0x72, 0xd2, 0x3e, 0x86, 0xdf, 0xb8, 0xf8, 0xe0, 0x8b, 0x07, 0xbb, 0xe9, 0xdf, - 0xb1, 0xed, 0x7b, 0xe3, 0x27, 0xd9, 0xe3, 0xb7, 0x8d, 0x5b, 0xcb, 0x1f, 0x45, 0xf1, 0x50, 0x9c, - 0xd5, 0x6e, 0xee, 0x7d, 0xbb, 0x6b, 0x19, 0xc7, 0xb1, 0xd5, 0xa1, 0x97, 0xff, 0x36, 0xce, 0x8f, - 0xeb, 0xb6, 0x27, 0x6a, 0x5a, 0x8d, 0xa5, 0x5c, 0xf5, 0xa6, 0x97, 0x58, 0x4d, 0xbc, 0x45, 0x87, - 0xc5, 0xb6, 0x4b, 0x9b, 0xbf, 0x33, 0xc5, 0xbf, 0x71, 0x1e, 0x59, 0x5e, 0x8f, 0x80, 0xb9, 0x77, - 0xdc, 0x7d, 0x1d, 0x0a, 0x25, 0xc3, 0x20, 0xe0, 0xde, 0xf5, 0x5b, 0xab, 0x97, 0xb6, 0xe7, 0xf9, - 0xb6, 0xc7, 0x5e, 0xea, 0xc7, 0xe7, 0x4d, 0xab, 0x53, 0xaf, 0x1f, 0xa2, 0x28, 0x0c, 0x7c, 0xf7, - 0x89, 0xb9, 0x6e, 0x98, 0x08, 0x65, 0x39, 0x02, 0x9c, 0xe5, 0xdd, 0x0c, 0xab, 0x25, 0xb9, 0xa1, - 0x10, 0xdc, 0x55, 0x76, 0x97, 0x20, 0xe1, 0x0f, 0x1f, 0x87, 0x9b, 0xa8, 0xf2, 0x71, 0xf0, 0x4c, - 0x57, 0xb6, 0x0f, 0x0c, 0xbc, 0xb0, 0x6c, 0x2f, 0x6a, 0x21, 0x5d, 0x3a, 0xa9, 0x5a, 0x70, 0xa3, - 0x4c, 0xf5, 0xde, 0x26, 0x59, 0xd2, 0xf2, 0xcc, 0xdf, 0x6a, 0xec, 0x47, 0x1f, 0x1f, 0x6c, 0xb8, - 0xd1, 0x49, 0x82, 0x36, 0xcb, 0x9e, 0x0d, 0x6c, 0xfe, 0xa6, 0xbb, 0x61, 0x8f, 0x47, 0x82, 0x59, - 0xf1, 0x7e, 0xe3, 0xfa, 0xdb, 0xab, 0x77, 0x36, 0xdc, 0x29, 0x1f, 0xcb, 0x62, 0x59, 0x8f, 0x44, - 0x30, 0x7f, 0xc7, 0xa3, 0xac, 0xe3, 0x1b, 0x1b, 0x6e, 0xf5, 0x41, 0x45, 0x76, 0xcc, 0xd6, 0x5a, - 0xd6, 0x3d, 0x27, 0x05, 0xb8, 0x83, 0x20, 0x79, 0xf3, 0xee, 0xb6, 0x6a, 0x85, 0x87, 0x1d, 0x6a, - 0x84, 0xcd, 0xa1, 0x46, 0xf8, 0x5b, 0x96, 0xac, 0xaf, 0x42, 0x9c, 0xed, 0x5d, 0x72, 0x9f, 0xa3, - 0x64, 0x66, 0x21, 0xb7, 0x7c, 0x1f, 0x0a, 0x2b, 0x4c, 0x57, 0xc4, 0x24, 0xb3, 0x05, 0x1e, 0xbc, - 0x5e, 0x0c, 0x66, 0x59, 0xe3, 0x19, 0xde, 0xf7, 0xb9, 0xcc, 0x54, 0x29, 0xb5, 0x80, 0x99, 0xeb, - 0xc5, 0x41, 0xc3, 0x92, 0x25, 0x76, 0xdd, 0x63, 0xd6, 0x4c, 0x81, 0xab, 0xeb, 0x2b, 0x1b, 0xee, - 0xb5, 0xc3, 0xe2, 0x51, 0x54, 0xf2, 0xed, 0x5f, 0x36, 0xdc, 0x6e, 0xa8, 0xc4, 0x7b, 0x2f, 0xb1, - 0xe3, 0x4e, 0x33, 0x6d, 0x26, 0x2f, 0x68, 0xb6, 0xbe, 0xfd, 0xeb, 0xbd, 0x15, 0x68, 0x26, 0xb2, - 0xc8, 0xb2, 0xca, 0x6c, 0xe7, 0x8b, 0x15, 0xc0, 0x10, 0xce, 0xcf, 0xcf, 0xea, 0xd6, 0xf8, 0xaa, - 0x28, 0xb0, 0x03, 0xc5, 0x46, 0xd2, 0xef, 0x31, 0xf9, 0x74, 0x7d, 0x77, 0xf5, 0x87, 0x0d, 0xb7, - 0xdb, 0x8b, 0x82, 0xf8, 0x63, 0xc6, 0x3c, 0xd3, 0x02, 0xa6, 0xac, 0x3c, 0xae, 0x1d, 0x5f, 0x5f, - 0x7d, 0xb4, 0x42, 0x90, 0x0b, 0x05, 0x57, 0xb7, 0x4c, 0x75, 0xad, 0xc0, 0x03, 0xae, 0x1f, 0x65, - 0x2b, 0xdc, 0x5c, 0x80, 0x81, 0x8d, 0x1b, 0xc7, 0x56, 0x40, 0xd7, 0xd1, 0xb9, 0x3b, 0x7f, 0xf8, - 0xee, 0x47, 0x4b, 0x48, 0x4c, 0xc0, 0xa2, 0x8e, 0x0d, 0xf7, 0x79, 0xef, 0x2b, 0x2b, 0x7c, 0x81, - 0x1b, 0x76, 0x3a, 0x9c, 0x5b, 0x02, 0x5a, 0xfc, 0xf0, 0xe6, 0xf2, 0xb5, 0x15, 0x4e, 0x20, 0x53, - 0xed, 0xd4, 0x02, 0x94, 0x8c, 0x61, 0x8d, 0x54, 0x9b, 0xa2, 0x1c, 0x4a, 0xd6, 0x6a, 0x67, 0x56, - 0xa0, 0x96, 0xbe, 0x15, 0x70, 0x65, 0x5c, 0xee, 0x2d, 0x47, 0x2c, 0xd8, 0xfc, 0x3d, 0x3f, 0x36, - 0x4e, 0x7a, 0x41, 0x64, 0x0b, 0x7f, 0xb1, 0x02, 0x07, 0xc4, 0x3d, 0x2f, 0xce, 0x74, 0x38, 0x70, - 0x11, 0x1e, 0xab, 0x17, 0x85, 0xb1, 0x9f, 0xf5, 0x14, 0x8f, 0x02, 0xe8, 0x56, 0x64, 0xc5, 0x5c, - 0xe5, 0x76, 0xb8, 0x2c, 0xf7, 0x3e, 0xf8, 0xc4, 0x5d, 0xc5, 0xee, 0x14, 0x93, 0x76, 0x08, 0x43, - 0x99, 0x77, 0xa1, 0x17, 0xf0, 0x72, 0x79, 0x6c, 0x8b, 0xd6, 0xaa, 0x12, 0x7b, 0x64, 0xc1, 0xd7, - 0x01, 0xfb, 0x6e, 0x85, 0x8a, 0x35, 0x29, 0x5e, 0x71, 0x62, 0x85, 0x73, 0x1d, 0x16, 0x1e, 0x6c, - 0xf4, 0xee, 0x2d, 0xc2, 0x59, 0xe3, 0xb2, 0xba, 0x19, 0x4b, 0xf3, 0x15, 0x90, 0x54, 0xf4, 0x14, - 0x71, 0x99, 0xb9, 0x40, 0x51, 0x21, 0xf2, 0xc0, 0xbd, 0x1d, 0x12, 0x6c, 0x18, 0xdd, 0x24, 0x81, - 0xf2, 0xa3, 0x80, 0x3f, 0x86, 0xd2, 0xaa, 0xf0, 0xf1, 0xdb, 0x1c, 0x55, 0xe8, 0x8a, 0xca, 0x87, - 0x12, 0x2e, 0x8b, 0xac, 0x4a, 0x2d, 0x98, 0x70, 0xf2, 0xd7, 0xf6, 0xac, 0x3d, 0x1e, 0x05, 0x32, - 0xb6, 0x65, 0xf1, 0xcd, 0x1f, 0x07, 0x6d, 0x93, 0xfe, 0x31, 0x8d, 0x8a, 0x5b, 0x31, 0x9b, 0xed, - 0x08, 0x87, 0x8e, 0xb7, 0x15, 0xd6, 0x33, 0x6e, 0x2b, 0x2c, 0x0c, 0x55, 0x66, 0xaa, 0x66, 0x5a, - 0x00, 0xa9, 0x98, 0x55, 0x61, 0xf8, 0x2d, 0xb6, 0xc2, 0x40, 0xc4, 0x8a, 0xc9, 0x77, 0xcc, 0x0a, - 0x3a, 0x3c, 0xaa, 0x9a, 0x67, 0x49, 0x96, 0xd4, 0xbb, 0xf0, 0x61, 0x00, 0x82, 0x6d, 0x4a, 0xfc, - 0x3e, 0xb6, 0xc5, 0x26, 0x04, 0xbe, 0xe0, 0x0f, 0xb6, 0xd0, 0x8a, 0x61, 0xe0, 0x79, 0x60, 0xc3, - 0xba, 0x9c, 0x79, 0x16, 0x41, 0x9c, 0xd1, 0x4e, 0xc9, 0x3f, 0x85, 0x9b, 0x6b, 0xaf, 0x64, 0x01, - 0x0e, 0xa3, 0xf3, 0xa9, 0xe3, 0x67, 0x2b, 0x9f, 0x56, 0xc0, 0xe4, 0xb0, 0x24, 0x39, 0x29, 0x0a, - 0x45, 0xfd, 0xc4, 0x0a, 0xa5, 0xa4, 0xef, 0x4b, 0x95, 0xb0, 0xc0, 0x8e, 0xcd, 0x57, 0x8f, 0x67, - 0xad, 0x77, 0x2c, 0x8a, 0x2d, 0xda, 0x6b, 0xf3, 0xf6, 0x77, 0x2b, 0x12, 0x6a, 0xb9, 0x15, 0x99, - 0x74, 0x41, 0xe8, 0xb2, 0xe0, 0x23, 0x0b, 0xac, 0x08, 0xed, 0xf4, 0x6d, 0x49, 0x51, 0x1f, 0xd5, - 0x00, 0xbd, 0xb6, 0x02, 0xd2, 0x3e, 0x74, 0x22, 0x7b, 0xb2, 0x93, 0x7f, 0xbf, 0x7a, 0x7f, 0x67, - 0x8b, 0xe6, 0x71, 0x1b, 0xfa, 0x42, 0x7d, 0x0c, 0x87, 0xff, 0xdc, 0x71, 0xe9, 0x33, 0x4b, 0xdc, - 0xac, 0x1d, 0x9c, 0x31, 0x3e, 0xbd, 0xf3, 0x1f, 0xac, 0x49, 0x50, 0xec, 0xb8, 0xf5, 0x66, 0x96, - 0x72, 0xf7, 0xc5, 0xad, 0xb3, 0x37, 0x97, 0x7f, 0x5c, 0xda, 0x70, 0xbf, 0xdf, 0xbf, 0x33, 0x71, - 0x7b, 0x6b, 0x8b, 0x4d, 0x78, 0x2d, 0x02, 0x2b, 0x96, 0xd7, 0xa4, 0x22, 0xfd, 0x49, 0xd3, 0x92, - 0x5d, 0xb8, 0xbf, 0x47, 0xa1, 0x78, 0x6f, 0x47, 0x09, 0x89, 0xf1, 0x3e, 0x9b, 0x3b, 0x4b, 0x80, - 0xcc, 0x47, 0xcf, 0x8e, 0xed, 0x96, 0xc7, 0x56, 0x70, 0xc3, 0x24, 0xb6, 0x22, 0x60, 0xda, 0x91, - 0x57, 0x41, 0xe6, 0x33, 0x97, 0x8a, 0x18, 0xfc, 0x53, 0x2b, 0x60, 0x40, 0x64, 0x45, 0x1c, 0x89, - 0xb9, 0x8a, 0x07, 0x7e, 0x7c, 0xc3, 0x15, 0x7b, 0xf7, 0xfe, 0xfd, 0xad, 0x1d, 0x0a, 0x67, 0x47, - 0x7d, 0x67, 0x92, 0xbf, 0x0b, 0xc3, 0xe8, 0x9e, 0xb9, 0xdf, 0x2c, 0xa9, 0xcf, 0x63, 0xcd, 0x0e, - 0xab, 0x0f, 0x76, 0xec, 0xb0, 0x1a, 0xc5, 0xbe, 0xfe, 0xa5, 0xa2, 0x4f, 0x23, 0x09, 0x2e, 0xe3, - 0x29, 0x59, 0x05, 0x88, 0x45, 0x6e, 0x68, 0x49, 0x5c, 0x69, 0x80, 0x62, 0xc7, 0x6f, 0xd7, 0x8a, - 0x10, 0x42, 0xe8, 0xf1, 0x9e, 0x1d, 0x31, 0x03, 0xe7, 0x21, 0x16, 0x76, 0x60, 0x83, 0x49, 0x42, - 0xd2, 0x1d, 0x97, 0x7d, 0xdf, 0xb5, 0xa6, 0x50, 0x8f, 0x3d, 0x14, 0x21, 0xb6, 0x24, 0xd7, 0x60, - 0x52, 0x78, 0xfc, 0xf5, 0x87, 0xb7, 0xb7, 0xd7, 0x42, 0xd9, 0x21, 0x77, 0x66, 0xaa, 0x45, 0x5c, - 0x1c, 0x05, 0xb7, 0x42, 0xf0, 0xee, 0xd9, 0x12, 0x45, 0xbc, 0x67, 0xb1, 0xef, 0xda, 0xb2, 0x15, - 0xdf, 0x0e, 0x80, 0xd8, 0x0b, 0x5d, 0xf6, 0x89, 0xcb, 0xd8, 0x0f, 0x45, 0xdd, 0x9a, 0x6c, 0x88, - 0x4f, 0x56, 0xe0, 0x59, 0x16, 0x3f, 0x09, 0x2b, 0x1c, 0xc1, 0xbd, 0xf4, 0xbd, 0x07, 0x2b, 0x80, - 0x40, 0xd7, 0x96, 0x18, 0x22, 0x8f, 0x5d, 0x4b, 0x76, 0x35, 0xfb, 0x0f, 0xbe, 0x62, 0xc1, 0xbf, - 0x24, 0x8b, 0x22, 0x2e, 0x2d, 0x4c, 0x33, 0x8a, 0x2c, 0x29, 0xd0, 0xc6, 0x2c, 0xa9, 0xcf, 0x36, - 0x82, 0xda, 0xe3, 0xec, 0x43, 0x5b, 0x42, 0x74, 0x49, 0xa0, 0xec, 0x28, 0x87, 0xe8, 0x0b, 0xc5, - 0x65, 0xc0, 0x59, 0x9f, 0xdb, 0x22, 0x17, 0xfc, 0xf6, 0xaf, 0xcb, 0xa8, 0x71, 0x13, 0xd9, 0x13, - 0x4d, 0xb4, 0x03, 0x72, 0xfb, 0xe1, 0xa3, 0x1d, 0x3b, 0x07, 0xe3, 0xc0, 0x0e, 0x20, 0x2b, 0x63, - 0x79, 0x6f, 0x4b, 0x85, 0x2e, 0x2b, 0xc6, 0x5d, 0xda, 0xb5, 0x09, 0x6c, 0x72, 0x4e, 0xf0, 0x07, - 0xae, 0x32, 0x9d, 0x13, 0x5c, 0x40, 0x79, 0x16, 0x2e, 0x7b, 0xb7, 0xcc, 0xb3, 0x49, 0xce, 0x68, - 0xfd, 0xeb, 0xe6, 0xd2, 0x0a, 0xf2, 0xfd, 0xdf, 0xc0, 0x12, 0x0d, 0x4e, 0x74, 0x7c, 0xe1, 0xdf, - 0x33, 0x3b, 0x8a, 0x4e, 0xfb, 0x81, 0x25, 0x1b, 0x7d, 0x46, 0x20, 0xf6, 0xb6, 0xfb, 0x14, 0x0f, - 0x50, 0xec, 0x9f, 0x76, 0x1c, 0xf9, 0x31, 0x93, 0xe6, 0x6f, 0x6e, 0xaf, 0xad, 0x70, 0x65, 0x1d, - 0x9b, 0xb2, 0xf8, 0xf8, 0x43, 0x12, 0x30, 0x59, 0x3f, 0x6b, 0x34, 0x2c, 0x39, 0xf6, 0xc3, 0x8a, - 0x98, 0xad, 0x90, 0x36, 0xa2, 0x84, 0xc6, 0x9f, 0xb1, 0x25, 0x20, 0x21, 0x8a, 0x46, 0xb5, 0x0f, - 0x02, 0x5f, 0x7c, 0xb3, 0xe7, 0x64, 0x8d, 0x95, 0xad, 0xf9, 0x59, 0x0f, 0xb0, 0x2e, 0x42, 0x62, - 0xec, 0xda, 0x62, 0x23, 0xfc, 0x9e, 0xb2, 0x48, 0x62, 0xbc, 0x0d, 0xbf, 0x73, 0x19, 0xf8, 0x82, - 0xdb, 0x11, 0xbc, 0xb9, 0xfb, 0xee, 0x2b, 0xb7, 0x6b, 0xc9, 0x66, 0x61, 0x6b, 0xea, 0x67, 0xc6, - 0x37, 0xcc, 0x7d, 0xc7, 0x9e, 0xec, 0x28, 0xc9, 0x30, 0x0e, 0x90, 0x37, 0x02, 0xab, 0xe2, 0xf9, - 0xc7, 0xf6, 0x9c, 0xbf, 0xf5, 0xd8, 0xa8, 0x1f, 0xdb, 0x52, 0xb1, 0xde, 0x0a, 0xb0, 0xe0, 0x89, - 0x61, 0xbd, 0x93, 0x77, 0x61, 0x18, 0xd5, 0x2d, 0xda, 0x6c, 0x7b, 0x1d, 0x5d, 0x7a, 0x9e, 0xe4, - 0xb1, 0x2d, 0xe7, 0x5a, 0x59, 0x52, 0xfd, 0x73, 0xb9, 0x76, 0x8f, 0x5d, 0x47, 0x30, 0x75, 0xfc, - 0x7b, 0xc9, 0x2d, 0x0a, 0x44, 0x8e, 0xea, 0x43, 0xdb, 0xf5, 0x8e, 0x3d, 0x4f, 0xfc, 0x65, 0x47, - 0x18, 0xc2, 0xbf, 0xef, 0x1d, 0x9f, 0xd6, 0x22, 0x26, 0x07, 0x33, 0xc2, 0x12, 0x33, 0x61, 0x51, - 0xa6, 0xed, 0x0a, 0x41, 0xbe, 0xb2, 0x85, 0x20, 0x8f, 0xa5, 0xe9, 0x63, 0xe6, 0xbd, 0x63, 0x56, - 0xd4, 0x6c, 0xe8, 0xfa, 0x11, 0x97, 0x01, 0x13, 0x76, 0xc8, 0x50, 0xae, 0xb0, 0xe7, 0x68, 0x8e, - 0xf1, 0x7a, 0xfb, 0xc3, 0xb7, 0x09, 0xae, 0xb7, 0x6e, 0xec, 0xb0, 0x67, 0x3d, 0xee, 0xf9, 0xec, - 0x86, 0xf9, 0xc1, 0xfb, 0x3e, 0x97, 0xd7, 0x91, 0x8d, 0xf8, 0xe7, 0x86, 0xb9, 0x81, 0x2d, 0xdc, - 0xb3, 0x7f, 0xdc, 0xb2, 0xa2, 0x02, 0xc9, 0xb1, 0x1f, 0xf5, 0x2d, 0x89, 0x0a, 0x79, 0x41, 0xfc, - 0xdd, 0x12, 0x07, 0x11, 0xf9, 0x56, 0x9d, 0x9b, 0x3b, 0x58, 0x68, 0x96, 0x1c, 0xe7, 0x37, 0x05, - 0x3a, 0x37, 0xaf, 0x7b, 0xca, 0x32, 0x46, 0xa4, 0x2c, 0xd9, 0x58, 0x32, 0x7b, 0xc7, 0x16, 0x19, - 0xdc, 0xb8, 0x6b, 0x89, 0xc8, 0x33, 0xd9, 0xb6, 0xf3, 0xd6, 0xbf, 0xb7, 0xe3, 0xcd, 0xf6, 0x22, - 0x3b, 0xf0, 0x98, 0x25, 0xe3, 0x6f, 0xcf, 0x61, 0x2e, 0xae, 0x1f, 0xbb, 0xe1, 0xf5, 0xdd, 0x3b, - 0x5b, 0x00, 0x02, 0xab, 0x37, 0x6e, 0x22, 0x8b, 0x02, 0x3f, 0x92, 0x33, 0xb7, 0x7b, 0x75, 0xf7, - 0xce, 0x92, 0xc3, 0x06, 0x3c, 0x3b, 0x6a, 0x04, 0xdb, 0x51, 0xfc, 0xbe, 0xf7, 0x24, 0x7d, 0x4b, - 0x36, 0x9d, 0x07, 0x3d, 0x7b, 0xea, 0xec, 0xda, 0x01, 0x00, 0x3c, 0x61, 0x49, 0xdd, 0xb4, 0xb3, - 0xd3, 0x53, 0x4b, 0xd2, 0xdc, 0x47, 0xd1, 0xe9, 0x8f, 0x5e, 0x8f, 0x59, 0x94, 0xe0, 0x68, 0x4f, - 0x58, 0xc4, 0xa6, 0xb0, 0xff, 0xe3, 0x7d, 0xf8, 0x38, 0x91, 0x8c, 0x2c, 0xd9, 0x5a, 0x76, 0x62, - 0xc9, 0x49, 0x01, 0xee, 0xb7, 0x8f, 0xe1, 0x9d, 0xb2, 0xa4, 0xc4, 0x4f, 0x14, 0x8a, 0x96, 0x1d, - 0x89, 0x60, 0x6a, 0x78, 0x22, 0xe9, 0xff, 0x59, 0x22, 0x0f, 0xf4, 0x2d, 0x21, 0x5a, 0xb1, 0x1f, - 0xdd, 0xf9, 0x0f, 0xb6, 0x9c, 0x48, 0x7a, 0xed, 0xda, 0xb1, 0x4f, 0x6b, 0x22, 0x5f, 0x5c, 0x29, - 0x3b, 0x64, 0x21, 0xff, 0xf1, 0x63, 0xf8, 0x36, 0x4c, 0xa4, 0x2d, 0x07, 0x1e, 0x59, 0xb2, 0xb8, - 0x16, 0xcf, 0xf8, 0xb3, 0xa2, 0x4a, 0x42, 0x6c, 0x85, 0x75, 0x65, 0x7d, 0xdf, 0xf5, 0xdf, 0x8f, - 0xde, 0xae, 0x35, 0x87, 0x5f, 0x75, 0xc3, 0x58, 0x59, 0xb2, 0x15, 0xae, 0x5f, 0xaf, 0xdb, 0x42, - 0x12, 0x63, 0x3b, 0x76, 0x3d, 0x75, 0xea, 0xad, 0x9b, 0x8e, 0xb4, 0x6b, 0x73, 0xc3, 0xfb, 0x8e, - 0xd7, 0xb3, 0x2b, 0x78, 0x34, 0x3a, 0x01, 0xb6, 0xd5, 0xfc, 0x66, 0xe5, 0xfe, 0x11, 0x4b, 0x8e, - 0xda, 0xef, 0x26, 0x42, 0x59, 0x73, 0x5e, 0x6d, 0xe4, 0xdb, 0x73, 0x76, 0xc4, 0x9b, 0xdf, 0xee, - 0x2c, 0xaa, 0x65, 0x6e, 0xd9, 0xc6, 0xd3, 0xae, 0x25, 0xc4, 0xb1, 0x63, 0xd5, 0x61, 0xba, 0xc3, - 0x34, 0x0e, 0x5b, 0x32, 0x55, 0x2d, 0x2a, 0x17, 0x1e, 0x7b, 0xae, 0x6f, 0x95, 0x0f, 0xfb, 0xc3, - 0xeb, 0x58, 0x11, 0xad, 0xb5, 0x87, 0x8a, 0x31, 0xd5, 0xb3, 0xa6, 0x38, 0xf4, 0xc3, 0xf9, 0xb9, - 0x1d, 0x67, 0xc7, 0xfc, 0xd7, 0x0e, 0x94, 0x35, 0x3a, 0xc4, 0xf5, 0x36, 0x48, 0xec, 0xd0, 0xe6, - 0x3b, 0x01, 0x13, 0xc3, 0xfc, 0x74, 0x9b, 0xca, 0xbc, 0xd4, 0xed, 0x40, 0x03, 0x6f, 0x43, 0xf9, - 0x9d, 0x49, 0x2b, 0x54, 0x83, 0xc8, 0x0e, 0x84, 0xd5, 0x3d, 0x6e, 0x1c, 0xdf, 0xca, 0xf0, 0xf1, - 0xc9, 0x8e, 0x12, 0x19, 0x35, 0x7b, 0x8e, 0x13, 0x7c, 0x9f, 0xd8, 0x91, 0x5b, 0xd0, 0xb9, 0xfd, - 0x6e, 0xcb, 0xd9, 0xb7, 0x2b, 0xa5, 0xbf, 0xde, 0x7e, 0xf7, 0x6c, 0x29, 0xfd, 0x95, 0xd8, 0x02, - 0xb5, 0x86, 0xec, 0x7b, 0x78, 0x82, 0xfe, 0xe0, 0x4d, 0xdb, 0xb6, 0x09, 0xba, 0x61, 0x89, 0x6e, - 0x14, 0xd9, 0xf1, 0x6a, 0xa7, 0x93, 0xc1, 0x8e, 0xfd, 0x3f, 0xc2, 0x92, 0x43, 0x7a, 0x46, 0x07, - 0xdf, 0x5c, 0x85, 0xaa, 0x5e, 0xbf, 0x95, 0x61, 0xc7, 0xb7, 0x63, 0x32, 0xf8, 0x71, 0x62, 0xc9, - 0xdb, 0xbd, 0x0f, 0xf8, 0x4c, 0xab, 0xb7, 0xa7, 0x12, 0x51, 0x70, 0xec, 0x47, 0x8f, 0xb6, 0xe4, - 0x4e, 0x3f, 0xf8, 0x0f, 0xec, 0xde, 0x57, 0x43, 0xcb, 0x6b, 0x49, 0x1e, 0xe5, 0x9c, 0x40, 0x63, - 0x45, 0x90, 0x34, 0x68, 0xd8, 0x32, 0x19, 0x26, 0x39, 0x1e, 0x1f, 0xc3, 0x6f, 0x5c, 0x7c, 0xf0, - 0xc5, 0x83, 0x1d, 0x74, 0xe2, 0xd8, 0x96, 0xbd, 0x76, 0x93, 0xec, 0xc4, 0xdb, 0x86, 0x2d, 0x67, - 0xe7, 0x2a, 0x1e, 0x8a, 0xb3, 0xda, 0xcd, 0xbd, 0x6f, 0x47, 0x0d, 0xb8, 0x38, 0xb6, 0x42, 0x62, - 0xfe, 0x6f, 0xe3, 0xfc, 0xb8, 0x6e, 0x4b, 0x62, 0x92, 0x15, 0x58, 0xc1, 0x55, 0x6f, 0x7a, 0x89, - 0x15, 0xc4, 0x4c, 0x74, 0x58, 0x6c, 0x8b, 0xa4, 0xf4, 0x3b, 0x53, 0xfc, 0x1b, 0xe7, 0x91, 0x25, - 0xfb, 0x15, 0x99, 0x7b, 0xc7, 0xdd, 0xd7, 0xa1, 0x50, 0x32, 0x0c, 0x02, 0xee, 0x5d, 0xbf, 0xb5, - 0x62, 0x89, 0x79, 0x9e, 0x6f, 0x8b, 0xc6, 0x5c, 0x3f, 0x3e, 0xb7, 0xe2, 0x68, 0xf2, 0xfb, 0x87, - 0x28, 0x0a, 0x03, 0xdf, 0x7d, 0x62, 0xae, 0x1b, 0x26, 0x42, 0x59, 0x82, 0x64, 0x66, 0x71, 0xf2, - 0x61, 0x15, 0x01, 0x37, 0x14, 0x82, 0xbb, 0xca, 0x8e, 0xad, 0xc2, 0xfc, 0xe1, 0xe3, 0x30, 0x99, - 0x3d, 0x1b, 0x47, 0x4b, 0x75, 0x45, 0xfb, 0x80, 0xb6, 0xdd, 0x5f, 0x7f, 0xeb, 0xe7, 0xdf, 0xf8, - 0xc5, 0xeb, 0xae, 0x5e, 0x26, 0x0f, 0x3d, 0x2e, 0x14, 0xf7, 0xaa, 0x17, 0x95, 0xcf, 0x07, 0x34, - 0x23, 0x31, 0x7d, 0xf3, 0x47, 0xa1, 0xeb, 0xf8, 0x9d, 0x0b, 0x7f, 0x52, 0x76, 0x22, 0x5e, 0xfe, - 0xc3, 0xf8, 0xf7, 0x58, 0x31, 0xc5, 0xab, 0xdb, 0x4d, 0x8c, 0xea, 0x15, 0x8f, 0x5d, 0xe9, 0x47, - 0xca, 0x0f, 0xc5, 0xa0, 0x8f, 0x4b, 0xcf, 0x8b, 0x2b, 0xac, 0x22, 0x79, 0x87, 0x4b, 0x2e, 0x5c, - 0x5e, 0xe9, 0xc8, 0xb0, 0x57, 0x51, 0x5d, 0x5e, 0xb9, 0x67, 0x31, 0xaf, 0x4c, 0xbb, 0xaa, 0xa8, - 0x70, 0xf8, 0x57, 0x37, 0x94, 0x92, 0xc7, 0x51, 0x28, 0x3c, 0x5f, 0x3c, 0x7c, 0x11, 0x83, 0x39, - 0x51, 0x71, 0xc3, 0x5e, 0x14, 0x0a, 0x2e, 0x54, 0xc5, 0x17, 0xc3, 0x2f, 0x79, 0xbc, 0xef, 0xbb, - 0x83, 0x8b, 0xfb, 0x5c, 0xa8, 0x50, 0x3e, 0xbd, 0xda, 0xf6, 0xe6, 0xfe, 0x9f, 0x2f, 0x06, 0x6f, - 0xb2, 0xbe, 0xe5, 0xd7, 0x5f, 0x87, 0xa2, 0xe3, 0x3f, 0x54, 0x2f, 0x2a, 0xb5, 0x2d, 0x2f, 0xb8, - 0x95, 0xbc, 0xe3, 0x3f, 0x56, 0x2f, 0x52, 0xac, 0x89, 0x59, 0x76, 0xb4, 0xeb, 0x0c, 0x57, 0xc0, - 0xf6, 0x0b, 0xb0, 0x7a, 0x17, 0x26, 0xd2, 0xe5, 0xa9, 0xba, 0x1b, 0xbd, 0x06, 0xfe, 0xf4, 0x3d, - 0x94, 0xde, 0x08, 0xa7, 0x0f, 0xef, 0x38, 0xdd, 0xaa, 0xaf, 0xfe, 0x1f, 0x8b, 0x2f, 0xe5, 0x43, - 0x32, 0x98, 0x9a, 0xd5, 0x8b, 0x8a, 0x92, 0x09, 0x4f, 0xd9, 0xc0, 0xdc, 0xd5, 0xd3, 0x07, 0xa7, - 0x5e, 0x9a, 0xdb, 0x4e, 0x58, 0x5f, 0xa6, 0x1b, 0xb0, 0x2e, 0x93, 0xde, 0x77, 0x26, 0xf9, 0xe8, - 0xae, 0x53, 0xbf, 0xfc, 0x29, 0x48, 0x5a, 0x68, 0x26, 0xe5, 0xfb, 0x5b, 0x5a, 0x65, 0x6f, 0x43, - 0x59, 0x11, 0xa1, 0x70, 0xc6, 0xf9, 0x1c, 0xfe, 0xff, 0xc7, 0xbd, 0xd9, 0xd2, 0x8a, 0x5f, 0xce, - 0x96, 0x5f, 0x3c, 0x5c, 0x3f, 0x93, 0xae, 0x2b, 0x83, 0xae, 0xbf, 0x88, 0x85, 0x35, 0x37, 0x59, - 0x88, 0x8b, 0xcb, 0xf3, 0x55, 0xda, 0x1b, 0x1c, 0xaf, 0xb4, 0x5a, 0xca, 0xcb, 0xd2, 0xae, 0xb8, - 0x3c, 0x2b, 0x8f, 0x60, 0x05, 0xe6, 0x5d, 0x89, 0x64, 0x2b, 0x92, 0x6c, 0x65, 0xd2, 0xac, 0xd0, - 0x6c, 0xce, 0x39, 0x25, 0xf6, 0xa8, 0x0e, 0x83, 0x96, 0xb9, 0x46, 0x3c, 0xe0, 0xac, 0x23, 0x79, - 0x27, 0xcb, 0x88, 0x4f, 0x5c, 0xc9, 0x69, 0x86, 0x6b, 0x6f, 0x99, 0xea, 0x4e, 0x1c, 0x70, 0x14, - 0x30, 0xd5, 0x09, 0x65, 0xef, 0x62, 0xea, 0xe5, 0xe2, 0xf5, 0x7f, 0x5e, 0xf8, 0xab, 0x18, 0x3c, - 0xc0, 0x81, 0x9e, 0xa1, 0x20, 0x43, 0x3e, 0x2f, 0xad, 0x05, 0x2c, 0x1f, 0x6f, 0xaf, 0xaf, 0x2a, - 0x47, 0x15, 0xae, 0xba, 0x5c, 0xaa, 0xa7, 0x88, 0x57, 0xc2, 0x68, 0xd8, 0x66, 0xa5, 0x13, 0xca, - 0x35, 0xd6, 0x71, 0x47, 0xe0, 0xc7, 0x50, 0x6a, 0xde, 0x47, 0xf8, 0x91, 0x4e, 0x63, 0x2f, 0x18, - 0x7e, 0xa8, 0xc8, 0xf7, 0xb2, 0xa3, 0x8e, 0xe1, 0xd5, 0xf9, 0xc0, 0xc6, 0xfb, 0xe1, 0x27, 0x16, - 0x04, 0x4f, 0x95, 0x98, 0xab, 0xe1, 0x72, 0x50, 0xec, 0xa1, 0x12, 0xc9, 0x50, 0x85, 0x6e, 0x18, - 0x54, 0x7c, 0x8f, 0x0b, 0xe5, 0x77, 0x7c, 0x2e, 0x2b, 0x1d, 0x9f, 0x07, 0x5e, 0xe5, 0xc5, 0x60, - 0x39, 0x1d, 0x56, 0x54, 0x97, 0xa9, 0x2f, 0xc2, 0x8f, 0x2b, 0xcc, 0x75, 0x79, 0xa4, 0xb8, 0x57, - 0x09, 0x47, 0x70, 0xfe, 0xd3, 0xbb, 0xcb, 0x3f, 0xd2, 0xdf, 0x53, 0x87, 0x25, 0xc1, 0xfc, 0x00, - 0x3a, 0x83, 0x85, 0x1a, 0x5f, 0x0c, 0xfa, 0xfa, 0x5a, 0xfb, 0xeb, 0xac, 0x5e, 0xab, 0xed, 0x09, - 0x66, 0x49, 0xb9, 0x6c, 0xf7, 0x07, 0xb3, 0x64, 0x0c, 0x9d, 0x95, 0x1c, 0xb3, 0x8c, 0x96, 0x97, - 0x7a, 0xca, 0x89, 0x5b, 0x4e, 0x32, 0x5c, 0x7b, 0x3d, 0xee, 0xfa, 0x37, 0x16, 0xe7, 0x98, 0x37, - 0x93, 0x07, 0x19, 0xae, 0xd4, 0x8f, 0xff, 0xbe, 0x7d, 0x73, 0x97, 0x75, 0xe2, 0x7c, 0x62, 0x41, - 0xc2, 0xe3, 0xad, 0xa4, 0x11, 0x5a, 0xf1, 0x6a, 0xfd, 0xb3, 0xd4, 0xfe, 0x3a, 0x3b, 0xbb, 0x3c, - 0xab, 0x66, 0x6e, 0xf1, 0xf9, 0x65, 0x29, 0x1e, 0xe3, 0xf2, 0x8f, 0x7f, 0x5b, 0xff, 0x0c, 0xb5, - 0xbf, 0xce, 0x07, 0x0e, 0xc0, 0xfe, 0xc7, 0x38, 0xdb, 0x8d, 0xc7, 0x38, 0x6f, 0xe4, 0x7a, 0x8c, - 0x4c, 0x57, 0xb6, 0x75, 0x9b, 0x7e, 0x30, 0xaa, 0x1c, 0x12, 0x30, 0x13, 0xbf, 0x14, 0x7f, 0x87, - 0x25, 0x6e, 0x5c, 0xee, 0xf7, 0xb9, 0x9c, 0x69, 0xc0, 0xbb, 0xa2, 0xf5, 0xce, 0x3d, 0xdc, 0x5e, - 0x72, 0xae, 0xf9, 0xe7, 0xb7, 0x86, 0x7a, 0xcd, 0xdd, 0x73, 0x76, 0x06, 0x96, 0x69, 0xe0, 0xd7, - 0x2d, 0xac, 0x5b, 0x19, 0xf6, 0x7d, 0x8f, 0x2f, 0x2e, 0xae, 0xf1, 0x52, 0x9a, 0x5f, 0x3b, 0x71, - 0x72, 0x3f, 0x0b, 0xa1, 0x8c, 0x58, 0xd8, 0x6c, 0xa5, 0xc5, 0x93, 0x2b, 0xa2, 0xf1, 0x06, 0xe6, - 0xca, 0x52, 0xcc, 0x65, 0x24, 0x79, 0xf8, 0xf1, 0x9c, 0x18, 0xfc, 0x45, 0x7c, 0x9c, 0x45, 0x61, - 0x7a, 0x49, 0xac, 0x2a, 0xa1, 0x08, 0x9e, 0x2a, 0x51, 0x18, 0x25, 0x01, 0x53, 0x7c, 0xf4, 0xf5, - 0x80, 0xb3, 0x4e, 0xe5, 0xbb, 0xaf, 0xba, 0x4b, 0xb7, 0xf7, 0x45, 0xb0, 0xb9, 0xd6, 0xc3, 0x4e, - 0x65, 0x28, 0xb0, 0x7c, 0xfc, 0x70, 0xf9, 0xc7, 0xdd, 0xeb, 0x37, 0xd7, 0x9f, 0xde, 0x7c, 0xd8, - 0x17, 0xad, 0x39, 0xfb, 0x44, 0xd8, 0x0f, 0xfa, 0x96, 0xc9, 0x42, 0x40, 0x79, 0xa6, 0x57, 0x9e, - 0x3f, 0x2f, 0x2b, 0xcf, 0xff, 0x74, 0x13, 0x29, 0xb9, 0x50, 0x2f, 0x0e, 0x8f, 0x5e, 0xbd, 0x3a, - 0x1a, 0x47, 0x07, 0x2e, 0x16, 0x02, 0x5a, 0xed, 0x85, 0xa6, 0xe6, 0x2d, 0x50, 0xbc, 0xf1, 0x7f, - 0xa0, 0x70, 0x97, 0x2e, 0x24, 0xef, 0xab, 0x78, 0x25, 0x24, 0x3f, 0xf1, 0x13, 0xe3, 0x60, 0x63, - 0x0c, 0x44, 0x06, 0x44, 0x56, 0x14, 0x22, 0x9b, 0x4c, 0xc6, 0x49, 0xe4, 0x3b, 0x3b, 0x2c, 0x5b, - 0x69, 0x29, 0x7f, 0x44, 0x9e, 0x55, 0xd6, 0xc6, 0xe3, 0x5f, 0x56, 0x02, 0x3f, 0x1e, 0x22, 0x9f, - 0xf9, 0xb0, 0xfc, 0x10, 0x84, 0xad, 0x59, 0x5d, 0x95, 0x17, 0x01, 0x13, 0x3c, 0x3e, 0xac, 0xac, - 0x8d, 0xd2, 0x2f, 0x63, 0xb2, 0xd5, 0xcb, 0x99, 0xe4, 0x15, 0x1e, 0xf0, 0xc1, 0x38, 0xc7, 0x83, - 0x3e, 0x59, 0x65, 0x2d, 0xad, 0xfa, 0x22, 0xc6, 0xb9, 0x35, 0x13, 0x03, 0x5c, 0xe9, 0x85, 0x1e, - 0x0f, 0x80, 0xc5, 0x80, 0xc5, 0x80, 0xc5, 0xac, 0xc2, 0x62, 0x73, 0x43, 0x75, 0x31, 0xf7, 0xb9, - 0xfd, 0x93, 0xff, 0x5b, 0xfe, 0xaf, 0x65, 0x5b, 0x18, 0x2f, 0x7f, 0x61, 0xfc, 0xf7, 0xe5, 0x3f, - 0xfb, 0xc2, 0xe3, 0x8f, 0x55, 0xad, 0xa3, 0xfd, 0xce, 0x8f, 0xd5, 0xa5, 0x52, 0x32, 0xdb, 0x88, - 0xdf, 0xf8, 0xe2, 0xcd, 0xd8, 0x16, 0x56, 0x2f, 0x2a, 0x22, 0x09, 0x82, 0x0c, 0xe3, 0x76, 0xc3, - 0x1e, 0xf3, 0x37, 0xf2, 0x5e, 0x7a, 0x5c, 0x72, 0xef, 0xb7, 0xa7, 0x71, 0x13, 0x65, 0x47, 0xba, - 0x3f, 0xfd, 0x46, 0xfb, 0x57, 0x59, 0xac, 0x42, 0x84, 0x8a, 0x8d, 0x5d, 0xe3, 0xaf, 0x87, 0xad, - 0x1a, 0xbb, 0x5d, 0xde, 0x63, 0xd1, 0x74, 0x7d, 0x44, 0x5c, 0xb8, 0x43, 0x07, 0xe1, 0xcc, 0x01, - 0xe3, 0x75, 0x1f, 0x8f, 0x46, 0xb8, 0xf8, 0x20, 0xdb, 0xa3, 0xfc, 0x64, 0x2e, 0x56, 0xe3, 0xe4, - 0x7e, 0xd6, 0xe1, 0x2f, 0x9f, 0x62, 0x56, 0xb8, 0x6a, 0xe1, 0xb2, 0x5f, 0xbc, 0xa6, 0xed, 0xf0, - 0xf1, 0xd6, 0xbe, 0x32, 0x8d, 0x6f, 0x9c, 0xf7, 0x85, 0xfe, 0x36, 0x96, 0x30, 0xad, 0xcb, 0xcb, - 0xec, 0xe2, 0x32, 0xbb, 0xb4, 0x65, 0x17, 0xe6, 0x6f, 0x51, 0x91, 0x2b, 0x5f, 0xb2, 0xf6, 0xb6, - 0xe8, 0x75, 0x61, 0x56, 0x6c, 0xff, 0x06, 0xd7, 0xcd, 0xa9, 0x1d, 0xa1, 0x5e, 0x7e, 0x67, 0x2f, - 0x19, 0x97, 0xdf, 0xb1, 0x86, 0x68, 0xb9, 0x93, 0x19, 0x91, 0x91, 0x5e, 0x8d, 0xaf, 0xcf, 0xc6, - 0x26, 0xea, 0x96, 0xb1, 0x09, 0xbf, 0x03, 0x12, 0x91, 0x73, 0xba, 0x9b, 0xe1, 0x0e, 0x69, 0x97, - 0xc1, 0xf4, 0x42, 0x6f, 0x81, 0xed, 0xe7, 0xdd, 0x85, 0x3e, 0xd7, 0x58, 0xc6, 0x37, 0x9d, 0x8d, - 0x76, 0xe7, 0x5e, 0x30, 0x14, 0x0b, 0x87, 0x6c, 0x01, 0x51, 0x2d, 0x24, 0xf2, 0x05, 0x45, 0xbe, - 0xb0, 0x28, 0x17, 0x58, 0xb6, 0x85, 0x96, 0x71, 0xc1, 0xe5, 0x27, 0xed, 0xab, 0x68, 0x48, 0x49, - 0x5f, 0x3c, 0xe4, 0x99, 0x2e, 0x13, 0x27, 0x73, 0x76, 0x60, 0xe6, 0xbd, 0x65, 0x78, 0x67, 0x55, - 0x2e, 0xd8, 0x7d, 0xc0, 0xbd, 0xfc, 0xb6, 0x66, 0xd2, 0x50, 0xc6, 0x71, 0x9b, 0x4b, 0xbb, 0x1d, - 0x4c, 0x5f, 0x98, 0x2b, 0x98, 0x2b, 0x98, 0xab, 0x34, 0xb3, 0xe5, 0x3e, 0x0c, 0x03, 0xce, 0x04, - 0x85, 0xbd, 0xaa, 0x97, 0xd8, 0x5e, 0x8d, 0x94, 0xc0, 0xdc, 0xd6, 0x6a, 0xd4, 0x4c, 0x7e, 0x5b, - 0x55, 0x83, 0xa1, 0x82, 0xa1, 0x82, 0xa1, 0x4a, 0x33, 0x5b, 0x12, 0x5f, 0xa8, 0xe3, 0x06, 0x81, - 0x9d, 0x3a, 0xcd, 0xd1, 0xc4, 0x07, 0x26, 0x1e, 0x78, 0xae, 0xfc, 0xfe, 0x4a, 0xee, 0x54, 0xe6, - 0xca, 0x38, 0x70, 0x90, 0x7b, 0xde, 0x13, 0x19, 0x95, 0x95, 0xe6, 0x86, 0xbb, 0x20, 0x08, 0xdb, - 0x7b, 0x2b, 0x99, 0x3b, 0xe0, 0xa2, 0x57, 0xfe, 0x83, 0x3f, 0x0c, 0x71, 0xd4, 0x72, 0xb7, 0xfb, - 0xfc, 0x92, 0x60, 0x08, 0xd8, 0x63, 0xe9, 0x87, 0xa0, 0xd9, 0x38, 0x6f, 0x9e, 0xb7, 0x4e, 0x1b, - 0xe7, 0x27, 0x25, 0x1e, 0x8b, 0x83, 0x62, 0xae, 0x6e, 0x9b, 0x82, 0x2b, 0x5a, 0x15, 0xa3, 0x37, - 0x8f, 0x2a, 0xdb, 0x86, 0xa3, 0xfc, 0xa2, 0x5e, 0xe8, 0x3a, 0xfc, 0x51, 0x5d, 0xa8, 0x61, 0x36, - 0x87, 0x92, 0x4f, 0xce, 0xb8, 0xe0, 0xc3, 0x03, 0xa7, 0x11, 0xfa, 0x3a, 0x2c, 0x88, 0x29, 0x94, - 0x3e, 0xed, 0x35, 0x7c, 0xd2, 0x8a, 0xee, 0xe9, 0xa2, 0x8f, 0x2b, 0xd7, 0xe7, 0x88, 0x46, 0xce, - 0x47, 0xff, 0x16, 0x7e, 0x3b, 0x1a, 0xeb, 0xe1, 0xba, 0xc2, 0xbe, 0x29, 0xa2, 0x29, 0xd9, 0xa0, - 0x7a, 0x2e, 0x88, 0x6e, 0x6b, 0x96, 0x10, 0x74, 0x7d, 0x32, 0x78, 0x8c, 0x9c, 0xa0, 0xf5, 0x13, - 0x75, 0x6c, 0x65, 0x5e, 0xbd, 0x1a, 0x5b, 0x88, 0xa3, 0x2c, 0x39, 0x35, 0x7a, 0xec, 0x44, 0xd4, - 0x6f, 0xe6, 0x30, 0x13, 0x83, 0xab, 0xf7, 0x24, 0xfa, 0x17, 0xc1, 0x4a, 0xac, 0xb3, 0x12, 0xd1, - 0xce, 0x44, 0xff, 0x98, 0xe7, 0x49, 0x1e, 0xc7, 0x5b, 0x24, 0x02, 0xfd, 0x72, 0xbe, 0xcc, 0x9a, - 0xca, 0xa7, 0x50, 0xd5, 0x77, 0x45, 0xa1, 0x8a, 0xa0, 0x50, 0x19, 0x5a, 0x5c, 0xc5, 0x28, 0x54, - 0x59, 0x17, 0xdd, 0xf2, 0xe2, 0xcb, 0x3f, 0xc8, 0x4b, 0x4b, 0x30, 0xef, 0x10, 0xe7, 0x5b, 0x88, - 0x64, 0x0b, 0x92, 0x72, 0x61, 0x92, 0x2f, 0x50, 0xea, 0x85, 0xaa, 0x6d, 0xc1, 0x6a, 0x5b, 0xb8, - 0x3a, 0x16, 0x30, 0x91, 0xb2, 0x93, 0x73, 0xbe, 0xe5, 0x5d, 0xd8, 0xd3, 0x86, 0x32, 0xa6, 0x9a, - 0xfd, 0x72, 0xf2, 0x66, 0x4a, 0x41, 0xd3, 0xbc, 0xdc, 0xc9, 0x97, 0xbd, 0x8e, 0xe5, 0xaf, 0xcd, - 0x0c, 0xe8, 0x32, 0x07, 0xda, 0xcd, 0x82, 0x76, 0xf3, 0xa0, 0xd3, 0x4c, 0xd0, 0x98, 0x0b, 0x22, - 0xb3, 0x41, 0x6e, 0x3e, 0xe6, 0xf8, 0x2a, 0xfd, 0x7c, 0x9a, 0xb1, 0x59, 0xea, 0x89, 0x44, 0x1b, - 0x90, 0xd0, 0x66, 0x56, 0x74, 0x9a, 0x17, 0xed, 0x66, 0x46, 0xb7, 0xb9, 0x31, 0x66, 0x76, 0x8c, - 0x99, 0x1f, 0x13, 0x66, 0x88, 0xd6, 0x1c, 0x11, 0x9b, 0xa5, 0xfc, 0x8a, 0x62, 0x2a, 0x85, 0xcc, - 0xa1, 0xe1, 0x22, 0x3f, 0x05, 0x2c, 0x67, 0x1a, 0xda, 0xbe, 0x65, 0x4a, 0x71, 0x29, 0x72, 0x47, - 0xea, 0x37, 0x76, 0xf0, 0x9f, 0x17, 0x2f, 0x3e, 0xd7, 0x9c, 0xf3, 0xf6, 0x8f, 0xcf, 0x75, 0xe7, - 0xbc, 0x3d, 0xfa, 0x58, 0x1f, 0xfe, 0x33, 0xfa, 0xdc, 0xf8, 0x5c, 0x73, 0x9a, 0x93, 0xcf, 0x27, - 0x9f, 0x6b, 0xce, 0x49, 0xfb, 0xf0, 0xcb, 0x97, 0x57, 0x87, 0x7f, 0x1f, 0x3f, 0xa7, 0xbf, 0xf0, - 0x1f, 0xf4, 0x93, 0xbb, 0x7d, 0x50, 0xce, 0xa5, 0x42, 0xb8, 0x4c, 0xc6, 0xa6, 0xce, 0x09, 0xb8, - 0x78, 0x18, 0x8a, 0xd8, 0x9a, 0x7c, 0xef, 0x62, 0x37, 0x70, 0xc3, 0x70, 0xc3, 0x70, 0xc3, 0x70, - 0xc3, 0x64, 0xb3, 0x3d, 0xf1, 0x85, 0x3a, 0xd3, 0xe8, 0x7f, 0x4f, 0x34, 0x34, 0x4d, 0x93, 0x26, - 0xb7, 0xe9, 0x47, 0xcf, 0xea, 0xac, 0x50, 0xa7, 0xd5, 0x19, 0xb6, 0xe9, 0x2b, 0xdd, 0x10, 0xa7, - 0xe1, 0x6d, 0xec, 0x47, 0x43, 0x4a, 0x98, 0xa1, 0xd5, 0xbb, 0x38, 0xf4, 0xec, 0x71, 0xe7, 0x86, - 0xfe, 0xb8, 0xb1, 0x43, 0x63, 0x7f, 0x60, 0x47, 0xab, 0xa5, 0x45, 0xd6, 0xa5, 0x52, 0xd7, 0x72, - 0xe6, 0xc0, 0x6d, 0x6c, 0x57, 0x4b, 0x6e, 0xdc, 0x80, 0x09, 0x1f, 0x4d, 0x03, 0xe3, 0x93, 0x4f, - 0x99, 0x52, 0xe6, 0xf4, 0x8d, 0x0e, 0x45, 0x4a, 0x33, 0xa1, 0x44, 0x49, 0x2f, 0x4d, 0x52, 0xe7, - 0x48, 0x23, 0xc2, 0x81, 0x08, 0x87, 0x61, 0x4e, 0x53, 0x2e, 0x1b, 0x4c, 0xce, 0x5d, 0x08, 0x92, - 0x15, 0x7f, 0xb5, 0xf8, 0xeb, 0xa7, 0x84, 0x6d, 0xae, 0x49, 0x6e, 0x8c, 0x76, 0xc9, 0x9c, 0x8f, - 0x8a, 0x4f, 0x91, 0x5b, 0xf4, 0x34, 0xb5, 0x5e, 0xb7, 0x1e, 0x57, 0x6a, 0xa3, 0xde, 0x80, 0x51, - 0x87, 0x51, 0xdf, 0x43, 0xa3, 0x8e, 0xb0, 0x35, 0xf4, 0x72, 0xcd, 0x66, 0x46, 0xb7, 0xb9, 0x31, - 0x66, 0x76, 0x8c, 0x99, 0x1f, 0x13, 0x66, 0x48, 0x8f, 0xa2, 0x81, 0xb0, 0xf5, 0x26, 0xc0, 0x82, - 0xb0, 0x35, 0xc2, 0xd6, 0x3a, 0x96, 0x49, 0x35, 0x94, 0xfe, 0x83, 0x86, 0x30, 0xc4, 0xcc, 0x1d, - 0x8c, 0xda, 0x87, 0xe3, 0x85, 0xe3, 0x85, 0xe3, 0x85, 0xe3, 0x25, 0x74, 0xbc, 0x13, 0xb7, 0xeb, - 0x68, 0x31, 0x31, 0x0b, 0xde, 0xb7, 0xa9, 0xa1, 0xed, 0x37, 0x22, 0xe9, 0x0d, 0x5e, 0xd1, 0x33, - 0x72, 0xa3, 0xa8, 0xe6, 0x04, 0x72, 0xa3, 0xe0, 0x72, 0xe0, 0x72, 0xe0, 0x72, 0x34, 0xcd, 0x76, - 0xe4, 0x46, 0x2d, 0xff, 0x20, 0x37, 0x6a, 0xab, 0x6e, 0x90, 0x1b, 0x95, 0x6e, 0xe8, 0x91, 0x1b, - 0x55, 0xee, 0xb1, 0x47, 0x6e, 0x54, 0x09, 0x5a, 0x42, 0x6e, 0xd4, 0x2c, 0x37, 0x6a, 0x8b, 0x73, - 0x8f, 0xcc, 0x0d, 0x0e, 0x45, 0x2c, 0xbd, 0x2f, 0xa5, 0x86, 0xe4, 0xa8, 0x61, 0xab, 0xd8, 0x00, - 0x5e, 0x3a, 0xda, 0x83, 0x48, 0x7a, 0x11, 0xb4, 0x66, 0xc7, 0x23, 0xe9, 0x83, 0xc5, 0xee, 0x3c, - 0xc8, 0x30, 0xd1, 0x18, 0x51, 0x9f, 0xeb, 0x43, 0x8f, 0xda, 0x52, 0x87, 0xda, 0x02, 0xb5, 0x05, - 0x6a, 0x4b, 0xf9, 0xd4, 0x16, 0x6a, 0x73, 0x35, 0x6d, 0x98, 0xb8, 0xfc, 0xcd, 0xc6, 0xc5, 0x44, - 0x5a, 0x0e, 0xc7, 0x90, 0xf9, 0xd2, 0x6e, 0xc6, 0x4c, 0x98, 0x33, 0x63, 0x66, 0xcd, 0x94, 0x79, - 0x33, 0x6e, 0xe6, 0x8c, 0x9b, 0x3b, 0x93, 0x66, 0x4f, 0xb3, 0xc8, 0xa0, 0x69, 0xbd, 0xe8, 0x32, - 0x87, 0xd3, 0x0e, 0x98, 0xeb, 0xf2, 0x48, 0x39, 0xbd, 0xd0, 0x33, 0x30, 0x91, 0xa7, 0xa5, 0x01, - 0xe7, 0x3a, 0xd5, 0x3c, 0xb3, 0xe6, 0x4e, 0xab, 0x19, 0x16, 0x62, 0xd7, 0xdd, 0x9f, 0x21, 0xf9, - 0x4f, 0xb7, 0xa1, 0x36, 0x69, 0xb0, 0x8d, 0x1b, 0x6e, 0xd3, 0x06, 0xbc, 0x30, 0x43, 0x5e, 0x98, - 0x41, 0x2f, 0xc2, 0xb0, 0xeb, 0x35, 0xf0, 0x9a, 0x0d, 0xfd, 0xf4, 0x85, 0x69, 0x8b, 0x36, 0x6e, - 0x5c, 0x6d, 0xf9, 0x8f, 0x4e, 0x4b, 0x8d, 0x5e, 0xeb, 0x07, 0x76, 0x4e, 0x00, 0x9d, 0xc1, 0x29, - 0xe6, 0xf5, 0xb9, 0x54, 0x7e, 0xcc, 0x07, 0xcb, 0x65, 0x24, 0x65, 0xf7, 0x59, 0x60, 0xd0, 0x27, - 0xaf, 0xef, 0xdf, 0x9c, 0x7b, 0xae, 0xd7, 0x6a, 0x70, 0xce, 0x70, 0xce, 0x70, 0xce, 0x70, 0xce, - 0x70, 0xce, 0xf3, 0xa9, 0x41, 0xf5, 0x96, 0x41, 0xdf, 0xdc, 0x32, 0xd0, 0x95, 0xde, 0xdc, 0xa1, - 0xe5, 0x1f, 0x33, 0xe6, 0xa3, 0x62, 0x2a, 0xb7, 0xa8, 0x20, 0xa7, 0xb6, 0xd2, 0xed, 0x24, 0x01, - 0xa5, 0x6e, 0xb8, 0x5f, 0x83, 0xf9, 0x28, 0x86, 0xcd, 0xcb, 0xe2, 0x54, 0x62, 0x8f, 0x7b, 0x37, - 0x95, 0x9a, 0xb5, 0xf3, 0x93, 0x3d, 0x9a, 0x4d, 0x07, 0xbb, 0xd1, 0x4b, 0x1b, 0x64, 0x6e, 0x65, - 0x5a, 0x45, 0x92, 0xf3, 0x5e, 0xa4, 0xcc, 0xb1, 0xb7, 0x49, 0x87, 0xe6, 0xe8, 0xda, 0x00, 0xa7, - 0x82, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x41, 0x4c, 0x2d, 0xa3, 0xff, 0x75, - 0x3c, 0x1e, 0xb0, 0x27, 0xe3, 0x5e, 0x78, 0xdc, 0xad, 0x39, 0x5f, 0x0c, 0xe1, 0x14, 0x8e, 0x18, - 0x8e, 0x18, 0x8e, 0x18, 0x8e, 0x18, 0xc2, 0x29, 0xdd, 0x0f, 0x84, 0x53, 0x2d, 0xdd, 0x1a, 0xda, - 0xb4, 0xb9, 0xd2, 0x2f, 0x84, 0xd3, 0x9d, 0x9d, 0x4a, 0xc7, 0xad, 0x5a, 0x0d, 0xc2, 0xa9, 0x6d, - 0xbd, 0x40, 0x38, 0x5d, 0x47, 0xdc, 0xfc, 0x50, 0xfa, 0xca, 0x28, 0x67, 0x1b, 0xf7, 0x88, 0x4c, - 0x17, 0x10, 0x36, 0x10, 0x36, 0x10, 0x36, 0x10, 0xb6, 0xc2, 0x08, 0xdb, 0x99, 0x41, 0xbe, 0x76, - 0x02, 0xbe, 0x06, 0xbe, 0x96, 0x06, 0x64, 0x23, 0xd1, 0x05, 0x7c, 0x8d, 0x68, 0x2a, 0x35, 0x4e, - 0x9a, 0xa0, 0x6b, 0xa0, 0x6b, 0xf6, 0xd3, 0xb5, 0xbe, 0x2f, 0x55, 0xc2, 0x82, 0x69, 0xa1, 0x72, - 0x63, 0xac, 0x6d, 0xb9, 0x63, 0xd0, 0x29, 0xd0, 0x29, 0xd0, 0x29, 0xd0, 0x29, 0xd0, 0xa9, 0x95, - 0x32, 0xd6, 0x26, 0x73, 0x51, 0xce, 0x0d, 0xf4, 0x35, 0x7e, 0x97, 0x3b, 0xc7, 0xa9, 0x0c, 0x9d, - 0xfc, 0xf1, 0xcb, 0x31, 0x3c, 0x33, 0xd8, 0xa7, 0xee, 0x93, 0x42, 0x36, 0x76, 0x6c, 0xfb, 0x09, - 0x22, 0xc5, 0x80, 0x54, 0xc3, 0xfc, 0xb0, 0x98, 0xc5, 0xd7, 0xc2, 0xe2, 0x33, 0xb3, 0xf8, 0x98, - 0xd3, 0xb9, 0x74, 0xde, 0xb6, 0xff, 0xae, 0xbf, 0x6c, 0x3e, 0x5f, 0x1c, 0xfe, 0x7d, 0xfa, 0xbc, - 0xfc, 0xc7, 0x1f, 0xeb, 0xbe, 0x56, 0x7f, 0x79, 0xfa, 0x7c, 0xb1, 0xe1, 0x7f, 0x5a, 0xcf, 0x17, - 0x5b, 0xb6, 0x71, 0xf2, 0xfc, 0x62, 0xe5, 0xab, 0x83, 0xbf, 0x37, 0x36, 0x5d, 0xd0, 0xdc, 0x70, - 0xc1, 0xf1, 0xa6, 0x0b, 0x8e, 0x37, 0x5c, 0xb0, 0xf1, 0x96, 0x1a, 0x1b, 0x2e, 0x38, 0x79, 0xfe, - 0xb1, 0xf2, 0xfd, 0x17, 0xeb, 0xbf, 0xda, 0x7a, 0x3e, 0xfc, 0xb1, 0xe9, 0xff, 0x4e, 0x9f, 0x7f, - 0x5c, 0x1c, 0xee, 0xa0, 0x29, 0xb2, 0x9d, 0xf7, 0x6b, 0x46, 0x9e, 0xef, 0xfc, 0x58, 0x5d, 0x2a, - 0x25, 0xcd, 0xa0, 0xcf, 0x1b, 0x5f, 0xbc, 0x09, 0x86, 0x15, 0x04, 0xe2, 0xea, 0x45, 0x45, 0x24, - 0x41, 0x60, 0x00, 0x10, 0xde, 0xb0, 0x47, 0xf3, 0x9d, 0xbe, 0x97, 0x1e, 0x97, 0xdc, 0xfb, 0xed, - 0x69, 0xdc, 0x25, 0xc4, 0xa1, 0x8d, 0xe2, 0x90, 0x0c, 0x13, 0xc5, 0xa5, 0xe3, 0x7b, 0xe6, 0xe5, - 0xa1, 0x59, 0xd7, 0x10, 0x88, 0x20, 0x10, 0x41, 0x20, 0x82, 0x40, 0x04, 0x81, 0x08, 0xf1, 0x76, - 0xfb, 0xe8, 0x29, 0xe2, 0xed, 0xfa, 0xfb, 0x45, 0xbc, 0x7d, 0x67, 0xa7, 0x52, 0xe3, 0x04, 0x75, - 0x25, 0xc0, 0xbb, 0x4d, 0x51, 0x2a, 0xab, 0x0a, 0x0c, 0x6b, 0x3a, 0xa5, 0x67, 0xa5, 0x1f, 0x93, - 0xa7, 0xf6, 0xf4, 0xa5, 0x8c, 0x8e, 0x66, 0x47, 0x48, 0x1c, 0x8d, 0x4b, 0xb2, 0x5b, 0x72, 0xba, - 0x94, 0x86, 0x91, 0xae, 0x4e, 0x5f, 0x99, 0xa3, 0x24, 0x73, 0xbf, 0xf9, 0xc2, 0x40, 0x21, 0xfc, - 0x35, 0x7d, 0xa2, 0x28, 0x7e, 0x51, 0x64, 0x1b, 0x45, 0xf1, 0xad, 0x23, 0xd3, 0x28, 0x8a, 0xbf, - 0xe9, 0xc5, 0x68, 0x2f, 0x8a, 0xaf, 0xf9, 0xac, 0x90, 0x95, 0x45, 0xa9, 0xf5, 0xcc, 0x10, 0x43, - 0x66, 0xd2, 0x98, 0xb9, 0x34, 0x69, 0x36, 0x8d, 0x9b, 0x4f, 0xd3, 0x66, 0xb4, 0x30, 0x73, 0x5a, - 0x98, 0x59, 0x2d, 0xc2, 0xbc, 0x9a, 0x21, 0x4d, 0xba, 0x35, 0x4a, 0xdd, 0x66, 0x77, 0xda, 0xd1, - 0x64, 0x4b, 0xa6, 0xe3, 0x71, 0x57, 0xf2, 0xf1, 0x18, 0x19, 0x5a, 0x07, 0xcb, 0xdb, 0x42, 0xe7, - 0xee, 0xc1, 0xd0, 0xbc, 0x34, 0x58, 0xd7, 0xa7, 0x20, 0x7d, 0xc6, 0x98, 0x8b, 0x28, 0xc2, 0x55, - 0x14, 0xe6, 0x32, 0x8a, 0x72, 0x1d, 0x85, 0xbb, 0x90, 0xc2, 0x5d, 0x49, 0x91, 0x2e, 0xc5, 0x8c, - 0x6b, 0x31, 0xe4, 0x62, 0xa6, 0x2f, 0xd2, 0x58, 0x38, 0x6c, 0x65, 0xb5, 0x9a, 0x0a, 0x8b, 0x2d, - 0x9b, 0x5e, 0x83, 0x02, 0xb5, 0xe1, 0x30, 0xd9, 0xe4, 0xc7, 0xac, 0x35, 0xaa, 0x14, 0x15, 0x36, - 0x2b, 0xc8, 0xa7, 0xae, 0x74, 0x5f, 0x50, 0x99, 0xa1, 0x69, 0xff, 0x05, 0x46, 0x40, 0x0c, 0x5b, - 0xab, 0xc5, 0x29, 0x57, 0x40, 0x78, 0xad, 0x6c, 0x53, 0xce, 0xf8, 0xf6, 0xd6, 0x52, 0x4d, 0xba, - 0x83, 0xdd, 0xec, 0x6d, 0x57, 0xd2, 0x79, 0x0d, 0x18, 0x85, 0xea, 0x30, 0xe0, 0x31, 0x0b, 0x6c, - 0x99, 0x67, 0xaf, 0xcb, 0x37, 0x00, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x69, - 0x68, 0xb5, 0x06, 0x9c, 0x75, 0x24, 0xef, 0x14, 0xb1, 0x85, 0xec, 0xd4, 0xec, 0x16, 0xb2, 0x71, - 0x3e, 0x87, 0xeb, 0xf8, 0x9d, 0x8b, 0xb9, 0x3c, 0x8d, 0xa5, 0x3f, 0x8c, 0x7f, 0x17, 0x83, 0xd7, - 0xb3, 0x53, 0x53, 0xcc, 0xe8, 0xfe, 0x9a, 0x79, 0x62, 0x6b, 0x7c, 0xcb, 0xcb, 0x3c, 0xc5, 0x29, - 0xae, 0x73, 0xa3, 0xfb, 0x6e, 0x0c, 0xa2, 0x52, 0xab, 0x23, 0x43, 0x86, 0x92, 0xc8, 0xa6, 0xfd, - 0x15, 0x99, 0x4c, 0xb6, 0x9a, 0xd6, 0xa4, 0x35, 0xbf, 0x4c, 0xff, 0x04, 0xd1, 0xb9, 0x05, 0x2c, - 0x56, 0x4c, 0x71, 0x73, 0x79, 0x14, 0xa3, 0xee, 0x76, 0x2c, 0x8d, 0xa2, 0x81, 0x34, 0x0a, 0x6b, - 0x48, 0x0c, 0xd2, 0x28, 0x90, 0x46, 0xf1, 0xab, 0x17, 0x86, 0x34, 0x0a, 0x23, 0x77, 0x80, 0x34, - 0x0a, 0xe8, 0x5f, 0xd0, 0xbf, 0xa0, 0x7f, 0x41, 0xff, 0x42, 0x1a, 0x85, 0x9e, 0x2e, 0x91, 0x46, - 0xb1, 0x7b, 0x3e, 0x75, 0xa5, 0x7b, 0xa4, 0x51, 0x20, 0x8d, 0xa2, 0xa0, 0x29, 0x87, 0x34, 0x8a, - 0x1d, 0xec, 0x0d, 0x69, 0x14, 0xdb, 0x4f, 0x43, 0xa4, 0x51, 0x80, 0x46, 0x82, 0x46, 0x82, 0x46, - 0x82, 0x46, 0xee, 0x2b, 0x8d, 0x44, 0x1a, 0x05, 0xd2, 0x28, 0xf4, 0x12, 0x5b, 0xa4, 0x51, 0x20, - 0x8d, 0xa2, 0x24, 0x8b, 0x61, 0xdf, 0xd3, 0x28, 0x46, 0xd1, 0x7b, 0x54, 0x7d, 0xd2, 0x3f, 0xe3, - 0xf6, 0xa2, 0xea, 0x93, 0xb1, 0xfa, 0x43, 0xa3, 0x27, 0x55, 0x32, 0x71, 0x95, 0x18, 0xe3, 0x96, - 0xeb, 0x49, 0xdf, 0x5f, 0xef, 0xe6, 0xee, 0xfc, 0xeb, 0x75, 0xd4, 0x6f, 0x7e, 0xbd, 0x1c, 0xdd, - 0xef, 0xd7, 0x4f, 0x52, 0x46, 0xbf, 0x0f, 0xee, 0xf4, 0xeb, 0xf4, 0xdb, 0x1f, 0x27, 0x37, 0xba, - 0xc7, 0xa5, 0xaa, 0xf4, 0xa6, 0x0c, 0x19, 0x49, 0x15, 0x32, 0x56, 0x90, 0xaa, 0x81, 0x82, 0x54, - 0xa5, 0x21, 0xe0, 0x28, 0x48, 0xb5, 0xbf, 0xee, 0x54, 0x7b, 0x41, 0x2a, 0xe6, 0xba, 0x3c, 0x52, - 0x4e, 0x2f, 0xf4, 0x0c, 0x66, 0x53, 0xce, 0x77, 0x6a, 0xee, 0x70, 0xfc, 0x0e, 0x0b, 0x62, 0x8e, - 0x72, 0xfd, 0xa5, 0x33, 0xd8, 0xc6, 0x0d, 0xb7, 0x69, 0x03, 0x5e, 0x98, 0x21, 0x2f, 0xcc, 0xa0, - 0x17, 0x61, 0xd8, 0x77, 0x83, 0xa9, 0x9b, 0x2f, 0xd7, 0x7f, 0x1f, 0x86, 0x01, 0x67, 0xc2, 0xe4, - 0x61, 0x8e, 0x75, 0x6c, 0x68, 0x58, 0x75, 0xc4, 0x5e, 0x9f, 0x4b, 0xe5, 0xc7, 0x43, 0xdd, 0x6e, - 0x44, 0x62, 0xfb, 0x2c, 0x30, 0xe8, 0x93, 0xd7, 0xf7, 0x6f, 0xce, 0x3d, 0xd7, 0x6b, 0x35, 0x38, - 0x67, 0x38, 0x67, 0x38, 0x67, 0x38, 0x67, 0x38, 0xe7, 0xf9, 0x6c, 0xd7, 0x7a, 0xcb, 0xa0, 0x6f, - 0x6e, 0xe1, 0x30, 0x9d, 0xec, 0x0f, 0x86, 0xc3, 0x74, 0xf4, 0xf7, 0x8b, 0xc3, 0x74, 0x76, 0x76, - 0x2a, 0x35, 0x6b, 0xe7, 0x38, 0x4d, 0xc7, 0xba, 0x5e, 0xda, 0x20, 0x73, 0x2b, 0xd3, 0xca, 0x4d, - 0xa4, 0x1c, 0xd0, 0xa8, 0xc9, 0x26, 0x45, 0x83, 0x05, 0xff, 0x97, 0x7b, 0x06, 0xa5, 0x02, 0xa5, - 0x02, 0xa5, 0x02, 0xa5, 0x02, 0xa5, 0xc2, 0xf1, 0xa4, 0x60, 0x54, 0x36, 0xc0, 0xe0, 0x1a, 0x18, - 0x15, 0x18, 0x15, 0xcd, 0x54, 0xc2, 0xf1, 0xa4, 0x20, 0x54, 0x3b, 0x41, 0xa8, 0x22, 0xc9, 0x79, - 0x2f, 0x52, 0xe6, 0x78, 0xd4, 0xa4, 0x43, 0x73, 0xf1, 0xaf, 0x01, 0x4a, 0x05, 0x5b, 0x03, 0x5b, - 0x03, 0x5b, 0x03, 0x5b, 0x03, 0x5b, 0x43, 0x76, 0x4a, 0x19, 0xfd, 0xaf, 0xe3, 0xf1, 0x80, 0x3d, - 0x19, 0xf7, 0xc2, 0xe3, 0x6e, 0xcd, 0xf9, 0x62, 0x64, 0xa2, 0xc0, 0x11, 0xc3, 0x11, 0xc3, 0x11, - 0xc3, 0x11, 0x23, 0x13, 0x85, 0xee, 0x07, 0xba, 0xa9, 0x96, 0x6e, 0xa1, 0x9b, 0xea, 0x9d, 0x4a, - 0x7b, 0xa8, 0x9b, 0x1e, 0xb7, 0x6a, 0x35, 0x08, 0xa7, 0xb6, 0xf5, 0x02, 0xe1, 0x74, 0x1d, 0x71, - 0x33, 0x9d, 0x81, 0x62, 0x2a, 0xf3, 0x04, 0x5b, 0x07, 0x40, 0xd8, 0x40, 0xd8, 0x40, 0xd8, 0x40, - 0xd8, 0x36, 0x13, 0x36, 0xe4, 0xb9, 0x80, 0xaf, 0x95, 0x16, 0x64, 0x63, 0xe7, 0x00, 0xf8, 0x1a, - 0xd1, 0x54, 0x32, 0x5e, 0xd0, 0x1a, 0x74, 0x0d, 0x74, 0x4d, 0xc7, 0xb4, 0xea, 0xfb, 0x52, 0x25, - 0x2c, 0x70, 0xc6, 0xa5, 0xc7, 0xcc, 0xb1, 0xb6, 0xe5, 0x8e, 0x41, 0xa7, 0x40, 0xa7, 0x40, 0xa7, - 0x40, 0xa7, 0x40, 0xa7, 0xc6, 0xab, 0xcd, 0x8f, 0x0c, 0xd9, 0xc6, 0x79, 0xfb, 0x58, 0x3f, 0x37, - 0xd0, 0xd7, 0xf8, 0x5d, 0xee, 0x1c, 0xa7, 0x9a, 0x8d, 0x5c, 0xbf, 0x69, 0x70, 0xec, 0x56, 0xc6, - 0xf0, 0xcc, 0x6c, 0xbd, 0x6f, 0xc5, 0xa5, 0x30, 0x7e, 0x76, 0x54, 0xf5, 0x3f, 0x2f, 0x5e, 0x7c, - 0xae, 0x39, 0xe7, 0xed, 0x1f, 0x9f, 0xeb, 0xce, 0x79, 0x7b, 0xf4, 0xb1, 0x3e, 0xfc, 0x67, 0xf4, - 0xb9, 0xf1, 0xb9, 0xe6, 0x34, 0x27, 0x9f, 0x4f, 0x3e, 0xd7, 0x9c, 0x93, 0xf6, 0xe1, 0x97, 0x2f, - 0xaf, 0x0e, 0xff, 0x3e, 0x7e, 0x4e, 0x7f, 0xe1, 0x3f, 0xaa, 0xbb, 0x76, 0xaa, 0xca, 0xcb, 0x1d, - 0x5e, 0x7c, 0x2d, 0x2c, 0x3e, 0x33, 0x8b, 0x8f, 0x39, 0x9d, 0x4b, 0xe7, 0x6d, 0xfb, 0xef, 0xfa, - 0xcb, 0xe6, 0xf3, 0xc5, 0xe1, 0xdf, 0xa7, 0xcf, 0xcb, 0x7f, 0xfc, 0xb1, 0xee, 0x6b, 0xf5, 0x97, - 0xa7, 0xcf, 0x17, 0x1b, 0xfe, 0xa7, 0xf5, 0x7c, 0xb1, 0x65, 0x1b, 0x27, 0xcf, 0x2f, 0x56, 0xbe, - 0x3a, 0xf8, 0x7b, 0x63, 0xd3, 0x05, 0xcd, 0x0d, 0x17, 0x1c, 0x6f, 0xba, 0xe0, 0x78, 0xc3, 0x05, - 0x1b, 0x6f, 0xa9, 0xb1, 0xe1, 0x82, 0x93, 0xe7, 0x1f, 0x2b, 0xdf, 0x7f, 0xb1, 0xfe, 0xab, 0xad, - 0xe7, 0xc3, 0x1f, 0x9b, 0xfe, 0xef, 0xf4, 0xf9, 0xc7, 0xc5, 0xe1, 0x0e, 0x9a, 0x22, 0xdb, 0x79, - 0xbf, 0x66, 0xe4, 0x69, 0xf4, 0x3c, 0x89, 0x42, 0xce, 0x91, 0x28, 0xe4, 0xfc, 0x08, 0xb3, 0xe7, - 0x46, 0xd8, 0x2d, 0x0e, 0xc9, 0x30, 0x51, 0x5c, 0x3a, 0xbe, 0x67, 0x5e, 0x1e, 0x9a, 0x75, 0x0d, - 0x81, 0x08, 0x02, 0x11, 0x04, 0x22, 0x08, 0x44, 0x10, 0x88, 0x10, 0x6f, 0xb7, 0x8f, 0x9e, 0x22, - 0xde, 0xae, 0xbf, 0x5f, 0xc4, 0xdb, 0x77, 0x76, 0x2a, 0xa1, 0xae, 0x04, 0x78, 0xb7, 0x39, 0x4a, - 0x85, 0x03, 0xd0, 0xd6, 0xf4, 0x53, 0xe4, 0x01, 0x68, 0x1a, 0xcf, 0xd3, 0xb3, 0xe3, 0x28, 0x31, - 0x73, 0x4c, 0xdc, 0x38, 0x03, 0xd7, 0xec, 0x5a, 0xb4, 0x33, 0x6e, 0x1c, 0x31, 0x66, 0x03, 0xa3, - 0xc6, 0x11, 0x63, 0xa5, 0x71, 0x58, 0xda, 0x99, 0xb2, 0xc1, 0x33, 0xb7, 0x4d, 0x9c, 0xb1, 0x3d, - 0x3d, 0x53, 0xfb, 0xd5, 0xab, 0xa3, 0x91, 0xc7, 0x3d, 0x5a, 0xb5, 0xcd, 0xb6, 0xf8, 0xc6, 0x83, - 0x12, 0xcf, 0xd0, 0x81, 0x51, 0x32, 0xe1, 0xf9, 0xf4, 0x86, 0x74, 0x8c, 0x84, 0x70, 0x8c, 0x84, - 0x6c, 0xf4, 0x86, 0x68, 0xa8, 0x27, 0x8f, 0x66, 0x1c, 0x5e, 0x24, 0xfe, 0xae, 0x6a, 0x39, 0x1c, - 0x37, 0xf3, 0x29, 0xc3, 0xb4, 0xc6, 0x8e, 0xce, 0x24, 0xd1, 0xb4, 0x44, 0x34, 0x2f, 0x75, 0xcd, - 0x47, 0xe3, 0xf3, 0x90, 0x66, 0xb4, 0xf3, 0x8f, 0x4d, 0xbe, 0x16, 0x72, 0x8e, 0xea, 0xc4, 0x35, - 0xe5, 0x06, 0xff, 0xb4, 0xbe, 0x47, 0x8b, 0xaf, 0xd1, 0xe2, 0x5b, 0x68, 0x7d, 0x49, 0xde, 0xd1, - 0xbc, 0x4c, 0x1e, 0x06, 0x8f, 0xc7, 0x3d, 0x92, 0x50, 0x07, 0xcd, 0xe2, 0x9e, 0xa2, 0xe6, 0xa3, - 0x01, 0x5b, 0xe9, 0x5c, 0xcc, 0x2d, 0xd5, 0xa5, 0x3f, 0x8c, 0x7f, 0x5f, 0x5c, 0xce, 0xab, 0x7f, - 0x1b, 0xfe, 0x29, 0xba, 0x18, 0x2e, 0xed, 0xd1, 0xc7, 0xd9, 0x02, 0x5f, 0xf8, 0x9d, 0xc8, 0xbd, - 0x54, 0xaf, 0x78, 0xec, 0x4a, 0x3f, 0x1a, 0x9b, 0xbc, 0xea, 0xa5, 0xe7, 0xf9, 0x83, 0xcf, 0x2c, - 0xa8, 0x5c, 0xdf, 0x56, 0x06, 0x7d, 0x55, 0x3a, 0xac, 0xe7, 0x07, 0x4f, 0x95, 0x91, 0xbd, 0x4a, - 0xe4, 0xd0, 0x3a, 0x56, 0x3a, 0xa1, 0xfc, 0x22, 0x66, 0x4f, 0x42, 0x75, 0x37, 0xb4, 0x27, 0xa7, - 0x93, 0xcb, 0x18, 0x3a, 0x64, 0x0b, 0x6d, 0x32, 0x85, 0x2e, 0x59, 0x42, 0xbb, 0x0c, 0xa1, 0x5d, - 0x76, 0xd0, 0x29, 0x33, 0x94, 0x0b, 0xcf, 0x50, 0x9f, 0x4c, 0x5e, 0x1d, 0x82, 0x0b, 0xf2, 0x19, - 0x35, 0x95, 0x4f, 0x07, 0xad, 0x13, 0x8f, 0xf5, 0x92, 0x81, 0x7b, 0x23, 0xdc, 0x20, 0x8c, 0x7d, - 0xf1, 0x30, 0x30, 0x68, 0x8a, 0xf9, 0x82, 0xcb, 0x81, 0x31, 0xab, 0x7c, 0xfa, 0xf0, 0xe1, 0xb6, - 0x32, 0x04, 0xee, 0x71, 0xa5, 0xcb, 0x84, 0x17, 0x70, 0xaf, 0x72, 0xff, 0x54, 0x51, 0x5d, 0x3f, - 0xfe, 0x22, 0xae, 0x6f, 0x2b, 0x53, 0x5b, 0x47, 0x7d, 0x7f, 0xb4, 0x26, 0x4f, 0x9b, 0xe9, 0xd3, - 0x69, 0x02, 0xb5, 0x9b, 0x42, 0xdd, 0x26, 0xd1, 0x98, 0x69, 0x34, 0x66, 0x22, 0x4d, 0x98, 0x4a, - 0x4d, 0xfa, 0x56, 0xd9, 0x4c, 0x79, 0xc1, 0x24, 0xaa, 0x9d, 0x17, 0x76, 0xd3, 0x52, 0x62, 0x93, - 0x54, 0x98, 0x60, 0xf1, 0xa5, 0x97, 0x5c, 0xf2, 0xad, 0x8f, 0xec, 0x63, 0x9d, 0xed, 0xca, 0x8c, - 0x40, 0x83, 0x6a, 0x56, 0x98, 0x98, 0x0d, 0xd9, 0x06, 0x24, 0xfd, 0xeb, 0xcc, 0xf0, 0x2a, 0xab, - 0xee, 0xc4, 0x4b, 0x67, 0x7b, 0x85, 0xb3, 0x03, 0x05, 0x47, 0xed, 0x64, 0x1c, 0xcc, 0x7c, 0x10, - 0x24, 0x37, 0xd4, 0xa0, 0x80, 0x14, 0x64, 0xd0, 0x81, 0x0a, 0x22, 0x90, 0x43, 0x01, 0x72, 0x97, - 0x4f, 0xe9, 0xda, 0xcd, 0x1a, 0x9f, 0xbc, 0xac, 0xa6, 0xea, 0x75, 0xdd, 0xc8, 0x71, 0x03, 0x7f, - 0xf4, 0xf0, 0x39, 0x07, 0x7a, 0x32, 0xf3, 0xe6, 0x1b, 0xcd, 0x39, 0x32, 0x73, 0x55, 0x13, 0x3b, - 0x2c, 0x88, 0xf3, 0x72, 0x0e, 0xa2, 0x6c, 0x11, 0x32, 0x4e, 0x41, 0xc9, 0x21, 0xc8, 0x39, 0x03, - 0x35, 0x47, 0xd0, 0xc6, 0x09, 0xb4, 0x71, 0x00, 0x1d, 0x98, 0xbf, 0xd8, 0x40, 0x00, 0x59, 0xf6, - 0x84, 0x86, 0x13, 0x4f, 0x88, 0x4e, 0x34, 0xc9, 0x01, 0x1c, 0x73, 0x38, 0x4b, 0x2e, 0xd8, 0x7d, - 0xc0, 0x3d, 0x3a, 0x23, 0x3a, 0x69, 0x90, 0xce, 0x80, 0x12, 0x9c, 0xd8, 0x05, 0xfb, 0x09, 0xfb, - 0x09, 0xfb, 0x09, 0xfb, 0x49, 0x6f, 0x3f, 0x7b, 0x2a, 0xa1, 0xb3, 0x9d, 0x83, 0xc6, 0x60, 0xe8, - 0x60, 0xe8, 0x60, 0xe8, 0x4a, 0x64, 0xe8, 0xc8, 0x4e, 0xe4, 0x21, 0x3c, 0x71, 0x87, 0x78, 0xc7, - 0x28, 0x61, 0x78, 0x51, 0xc7, 0x8e, 0x4f, 0x4d, 0x7b, 0x25, 0xa6, 0xdb, 0xec, 0x5a, 0xc4, 0xd5, - 0x8b, 0x74, 0xee, 0xa2, 0x23, 0xcc, 0xdf, 0xd4, 0xb2, 0xa5, 0x72, 0x32, 0x56, 0xc7, 0x9a, 0xc6, - 0xaa, 0x66, 0xd1, 0x50, 0x95, 0x24, 0xfa, 0xd4, 0x46, 0x3c, 0x23, 0x45, 0x3b, 0xfa, 0xe2, 0x19, - 0x63, 0x89, 0xbf, 0xc4, 0xc1, 0x0c, 0xc1, 0xfd, 0x87, 0xee, 0x7d, 0x28, 0xe3, 0xfc, 0xf1, 0x8c, - 0x59, 0x53, 0x08, 0x69, 0x20, 0xa4, 0x51, 0x08, 0x20, 0xb5, 0x2c, 0xa4, 0x31, 0x59, 0x31, 0x74, - 0x74, 0x72, 0xda, 0x22, 0x0d, 0xa7, 0xac, 0x83, 0x53, 0x82, 0x53, 0xee, 0x23, 0xa7, 0xa4, 0xca, - 0xc1, 0xcc, 0x9b, 0x2c, 0xb0, 0x71, 0xf2, 0xe6, 0x4a, 0x1e, 0xd0, 0xb4, 0xdc, 0xc9, 0x97, 0xbd, - 0x8e, 0xe5, 0xaf, 0xcd, 0x0c, 0xe8, 0x32, 0x07, 0xda, 0xcd, 0x82, 0x76, 0xf3, 0xa0, 0xd3, 0x4c, - 0x10, 0x33, 0xaf, 0xb2, 0xa6, 0x70, 0xfb, 0x1a, 0x13, 0xb8, 0xc9, 0xb3, 0x76, 0x75, 0x89, 0x37, - 0x48, 0x8f, 0x36, 0x68, 0x6e, 0x8c, 0x99, 0x1d, 0x63, 0xe6, 0xc7, 0x84, 0x19, 0xa2, 0x35, 0x47, - 0x1a, 0x14, 0xc0, 0x8a, 0xd6, 0xc2, 0x14, 0xa6, 0x4e, 0x86, 0xd0, 0x59, 0x84, 0x5e, 0x7b, 0xb1, - 0x79, 0xeb, 0x4f, 0x74, 0x68, 0x97, 0x35, 0xf7, 0x9f, 0x10, 0xc4, 0x05, 0xbe, 0xf8, 0xe6, 0x04, - 0xec, 0x89, 0x4b, 0x6d, 0x27, 0x86, 0xcd, 0xaa, 0xb7, 0xac, 0xf6, 0x05, 0x87, 0x0c, 0x87, 0x0c, - 0x87, 0x0c, 0x87, 0x4c, 0x36, 0xdb, 0xa3, 0xee, 0x53, 0x0c, 0x87, 0xbc, 0xd1, 0x21, 0xcf, 0x1f, - 0x43, 0xb2, 0x7c, 0xba, 0x49, 0xe3, 0xf9, 0xf0, 0x7f, 0x0e, 0xff, 0x77, 0x9f, 0xfc, 0x28, 0xca, - 0xbb, 0xe4, 0x8a, 0xfa, 0x4d, 0x03, 0x61, 0xd3, 0x4f, 0xb9, 0x02, 0x81, 0xf4, 0xc3, 0x43, 0x30, - 0x34, 0x94, 0x8a, 0x04, 0xbd, 0x12, 0x41, 0x0c, 0x78, 0x20, 0x68, 0x42, 0xd0, 0x34, 0x0d, 0x5c, - 0xca, 0x65, 0x84, 0xc9, 0x01, 0x8a, 0xc6, 0xd2, 0x95, 0x3a, 0x4a, 0x55, 0xae, 0x29, 0x4d, 0xe9, - 0x47, 0xbb, 0x64, 0xce, 0x47, 0x85, 0xa7, 0xc9, 0x2d, 0xfa, 0xa8, 0xd9, 0x92, 0x47, 0xa9, 0x1a, - 0x30, 0xea, 0x30, 0xea, 0x7b, 0x68, 0xd4, 0x11, 0xa5, 0x82, 0x28, 0x06, 0x51, 0x0c, 0xa2, 0xd8, - 0xde, 0x8a, 0x62, 0x88, 0x52, 0xfd, 0x54, 0x14, 0x43, 0x94, 0x4a, 0x8b, 0xba, 0x86, 0x28, 0x15, - 0x1c, 0x32, 0x1c, 0x32, 0x1c, 0x32, 0x1c, 0xf2, 0xca, 0x6c, 0x47, 0x94, 0xea, 0xa7, 0x0e, 0x19, - 0x51, 0x2a, 0x4d, 0x7e, 0x34, 0x94, 0xfe, 0x83, 0x8e, 0x5d, 0xac, 0x53, 0x2b, 0x3e, 0x6a, 0x1f, - 0xfe, 0x12, 0xfe, 0x12, 0xfe, 0x12, 0xfe, 0x92, 0x6c, 0xb6, 0x4f, 0xe2, 0xcb, 0x8e, 0x16, 0x03, - 0xb3, 0xe0, 0x32, 0x9b, 0x1a, 0xda, 0x7e, 0x23, 0x92, 0xde, 0xe0, 0x05, 0x3d, 0x23, 0x11, 0x62, - 0x9b, 0xf5, 0xb4, 0x0b, 0x89, 0x10, 0x84, 0x07, 0x9c, 0xe2, 0xa4, 0x9b, 0x71, 0x43, 0x38, 0xe9, - 0xa6, 0x0c, 0x27, 0xdd, 0x58, 0x53, 0x72, 0x7b, 0x75, 0x55, 0x9a, 0xad, 0xb9, 0xfd, 0xc7, 0xa4, - 0x57, 0x14, 0xa9, 0x28, 0xd7, 0x7c, 0x28, 0x73, 0x9d, 0x8a, 0x48, 0x86, 0x8f, 0x4f, 0x0e, 0xcb, - 0x71, 0x90, 0xc9, 0x4c, 0x64, 0x98, 0x36, 0x85, 0x3a, 0x15, 0xa8, 0x53, 0x51, 0x08, 0x9f, 0xb1, - 0xac, 0x4e, 0x05, 0xd1, 0x26, 0x76, 0xda, 0xcd, 0xeb, 0xa8, 0x51, 0x51, 0xa0, 0x7c, 0x81, 0x1a, - 0x15, 0x95, 0xdd, 0xa9, 0x51, 0xd1, 0x0b, 0x3d, 0x0d, 0xa9, 0x7f, 0xc3, 0x56, 0xc9, 0x0e, 0x3c, - 0x9c, 0x96, 0x86, 0xbe, 0xba, 0xbe, 0xbb, 0xfc, 0xed, 0xdd, 0x1b, 0x24, 0x8a, 0x97, 0x4f, 0x2b, - 0x45, 0x4e, 0x61, 0x11, 0x5a, 0xe8, 0xbe, 0x24, 0x8a, 0x73, 0x91, 0xf4, 0xf8, 0xe8, 0x24, 0x53, - 0x1d, 0xc9, 0xe2, 0x84, 0xfa, 0x26, 0xb1, 0xae, 0x69, 0xbb, 0xce, 0x65, 0x8f, 0x32, 0x32, 0x65, - 0x86, 0x24, 0xfb, 0xb5, 0x8a, 0xa9, 0x4e, 0x4e, 0x93, 0xc8, 0x4f, 0x9a, 0xc0, 0x4f, 0x8e, 0xd4, - 0x1b, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, - 0xea, 0x40, 0xea, 0x7b, 0x8b, 0xd4, 0x09, 0x12, 0x0a, 0x10, 0x4a, 0x24, 0x1f, 0x96, 0x6a, 0x2e, - 0x06, 0xb3, 0x6d, 0x24, 0xf9, 0x76, 0xd0, 0xdd, 0xa5, 0x8c, 0xca, 0x1c, 0xb8, 0xcc, 0xc7, 0xc7, - 0x48, 0x78, 0x18, 0x59, 0xc0, 0xb2, 0x81, 0x80, 0xa5, 0x3e, 0xa8, 0x83, 0x80, 0x25, 0x19, 0x5f, - 0xaa, 0xba, 0x61, 0x32, 0xb0, 0x14, 0x31, 0x65, 0xc8, 0x72, 0xdc, 0x22, 0x82, 0x96, 0x90, 0x42, - 0x20, 0x85, 0x14, 0x2f, 0x85, 0xf8, 0xc2, 0xf1, 0xfc, 0xd8, 0x65, 0xd2, 0xe3, 0x9e, 0x13, 0x7d, - 0x53, 0xb1, 0x86, 0x72, 0x54, 0x2b, 0x5d, 0x40, 0xca, 0x80, 0x94, 0x01, 0x29, 0x63, 0x8f, 0xa4, - 0x8c, 0xb1, 0xdb, 0x6f, 0x35, 0x35, 0x08, 0x19, 0x84, 0x9b, 0x10, 0x89, 0x0f, 0x87, 0x9c, 0xfc, - 0x68, 0xd8, 0xb9, 0xa2, 0xe3, 0xb0, 0x48, 0x4d, 0x76, 0x75, 0xa5, 0x79, 0x4d, 0x07, 0x12, 0x4e, - 0xdb, 0xd7, 0x78, 0x30, 0x21, 0xf1, 0x8a, 0x5b, 0x1c, 0x52, 0xf6, 0x68, 0xfd, 0x90, 0xd6, 0xcf, - 0x9a, 0xcd, 0xd6, 0x69, 0xb3, 0x59, 0x3b, 0x3d, 0x3e, 0xad, 0x9d, 0x9f, 0x9c, 0xd4, 0x5b, 0xf5, - 0x13, 0x8b, 0x47, 0xb9, 0xa4, 0xfb, 0xa9, 0xda, 0xbb, 0x54, 0xff, 0x54, 0x38, 0x5c, 0xca, 0x50, - 0xea, 0xc3, 0x9e, 0x73, 0xcd, 0x03, 0x77, 0x02, 0x77, 0x02, 0x77, 0x02, 0x77, 0x02, 0x77, 0x02, - 0x77, 0x02, 0x77, 0x02, 0x77, 0x02, 0x77, 0xee, 0x33, 0xee, 0xec, 0x84, 0xf2, 0xfb, 0x48, 0x94, - 0x0c, 0x5d, 0xc5, 0x35, 0xa1, 0xcf, 0x95, 0x4e, 0x80, 0x41, 0x81, 0x41, 0x81, 0x41, 0x81, 0x41, - 0x81, 0x41, 0x81, 0x41, 0x81, 0x41, 0x81, 0x41, 0x81, 0x41, 0x81, 0x41, 0xb5, 0xc6, 0xde, 0x97, - 0xba, 0x00, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, - 0xfe, 0x04, 0xfe, 0xdc, 0x67, 0xfc, 0xa9, 0x51, 0xf9, 0x84, 0xde, 0x09, 0xbc, 0x09, 0xbc, 0x09, - 0xbc, 0x09, 0xbc, 0x09, 0xbc, 0x09, 0xbc, 0x09, 0xbc, 0x09, 0xbc, 0x09, 0xbc, 0xa9, 0x4f, 0xe5, - 0x84, 0xb6, 0x09, 0xac, 0x09, 0xac, 0x09, 0xac, 0x09, 0xac, 0x09, 0xac, 0x09, 0xac, 0x09, 0xac, - 0x09, 0xac, 0xb9, 0xdf, 0x58, 0x33, 0x4c, 0x94, 0xf6, 0x8d, 0xed, 0x6b, 0xfa, 0x00, 0x02, 0x05, - 0x02, 0x05, 0x02, 0x05, 0x02, 0x05, 0x02, 0x05, 0x02, 0x05, 0x02, 0x05, 0x02, 0x05, 0x02, 0xdd, - 0x6b, 0x04, 0xaa, 0x73, 0x6b, 0xfb, 0x52, 0xfb, 0x40, 0x9e, 0x40, 0x9e, 0x40, 0x9e, 0x40, 0x9e, - 0x40, 0x9e, 0x40, 0x9e, 0x40, 0x9e, 0x40, 0x9e, 0x40, 0x9e, 0x7b, 0x8d, 0x3c, 0xf5, 0x6f, 0x6e, - 0x5f, 0xdb, 0x0b, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, - 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0xa8, 0xe6, 0x08, 0x3c, 0xf6, 0xb7, 0x03, 0x81, 0x02, 0x81, - 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0xce, 0x10, - 0xa8, 0x4e, 0xf5, 0x13, 0x9a, 0x27, 0x10, 0x27, 0x10, 0x27, 0x10, 0x27, 0x10, 0x27, 0x10, 0x27, - 0x10, 0x27, 0x10, 0x27, 0x10, 0x27, 0x10, 0xa7, 0xd2, 0xa8, 0x74, 0x42, 0xdf, 0x04, 0xda, 0x04, - 0xda, 0x04, 0xda, 0x04, 0xda, 0x04, 0xda, 0x04, 0xda, 0x04, 0xda, 0x04, 0xda, 0xb4, 0x18, 0x6d, - 0x16, 0x7a, 0x7c, 0xfc, 0xa5, 0x10, 0xa1, 0x62, 0x83, 0x29, 0x40, 0x73, 0x8a, 0x7c, 0xec, 0x76, - 0x79, 0x8f, 0x45, 0x4c, 0x75, 0x07, 0x1e, 0xeb, 0x28, 0x8c, 0xb8, 0x70, 0x87, 0x88, 0xd0, 0xf1, - 0x07, 0xbe, 0xab, 0xc3, 0x5c, 0x1e, 0x1f, 0xad, 0xfb, 0x78, 0x14, 0x27, 0xf7, 0x73, 0x7f, 0x9f, - 0xff, 0xed, 0xc8, 0x8f, 0xfa, 0xcd, 0xa3, 0x58, 0x31, 0xc5, 0x8f, 0xc6, 0x3e, 0x90, 0x02, 0xfd, - 0x56, 0x63, 0x25, 0x13, 0x57, 0x89, 0xb1, 0x77, 0xbd, 0x9e, 0x74, 0xf7, 0xf5, 0x6e, 0xae, 0xef, - 0xaf, 0xd7, 0x51, 0xbf, 0xf9, 0xf5, 0xf5, 0xa4, 0xd7, 0x83, 0x62, 0x46, 0x3a, 0xc7, 0x28, 0x57, - 0xbd, 0xae, 0x1b, 0x39, 0x6e, 0xe0, 0x8f, 0xb0, 0x57, 0xbe, 0x21, 0x9e, 0x42, 0x91, 0xf9, 0x46, - 0x73, 0xce, 0xc0, 0x2b, 0xde, 0x61, 0x49, 0x30, 0xc4, 0x85, 0x1d, 0x16, 0xc4, 0x3c, 0x6f, 0x7b, - 0x34, 0x46, 0x9a, 0x8c, 0xc7, 0x50, 0xf2, 0x17, 0x72, 0xde, 0x42, 0xcd, 0x57, 0xb4, 0xf1, 0x14, - 0x6d, 0xfc, 0x44, 0x07, 0x2f, 0x29, 0xd6, 0xa2, 0x93, 0xf1, 0x8f, 0xe9, 0x6c, 0xbb, 0x0f, 0xc3, - 0x80, 0x33, 0x41, 0x31, 0xdf, 0xc6, 0x8b, 0xb3, 0x5e, 0xb7, 0xd0, 0x90, 0x72, 0xc1, 0xee, 0x03, - 0xee, 0xd1, 0x19, 0xd1, 0x49, 0x83, 0x74, 0x06, 0x74, 0xb0, 0x2e, 0x60, 0x3f, 0x61, 0x3f, 0x61, - 0x3f, 0x61, 0x3f, 0x4b, 0x67, 0x3f, 0x7b, 0x2a, 0xa1, 0xb3, 0x9d, 0x83, 0xc6, 0x60, 0xe8, 0x60, - 0xe8, 0x60, 0xe8, 0x4a, 0x64, 0xe8, 0x12, 0x5f, 0xa8, 0x7a, 0x8b, 0xd0, 0xce, 0xb5, 0x08, 0x9a, - 0xa2, 0x55, 0xa3, 0x09, 0x65, 0x7d, 0x1d, 0xea, 0xb3, 0x26, 0x89, 0x72, 0x2a, 0x4d, 0xb6, 0xce, - 0x88, 0x1b, 0xd6, 0x28, 0x40, 0x12, 0xca, 0xcb, 0x5a, 0x64, 0xe5, 0xc9, 0x58, 0x1d, 0x6b, 0x1a, - 0xab, 0x9a, 0x45, 0x43, 0x55, 0x12, 0x2d, 0xb6, 0x5d, 0x14, 0xac, 0x3a, 0x30, 0x38, 0xc1, 0xa9, - 0x34, 0x5f, 0xdd, 0x5a, 0x6f, 0x36, 0xff, 0x9a, 0xfe, 0x55, 0x66, 0x78, 0x8d, 0xd5, 0x44, 0x88, - 0xa4, 0x77, 0xcf, 0x65, 0x0e, 0x39, 0x60, 0xe6, 0x35, 0x67, 0x6d, 0x65, 0x1c, 0xd0, 0x09, 0x2b, - 0xc8, 0x78, 0x79, 0x5e, 0x04, 0x4b, 0x81, 0x5c, 0x17, 0x10, 0x6b, 0x27, 0x07, 0x84, 0xa0, 0x42, - 0xaa, 0xe4, 0x08, 0x95, 0x1c, 0x99, 0xae, 0x20, 0xd2, 0x4e, 0xd5, 0x12, 0x03, 0x74, 0xe5, 0xcb, - 0x7c, 0x93, 0xc5, 0x9d, 0xcc, 0x58, 0x22, 0x36, 0x39, 0x6e, 0x8f, 0x86, 0x50, 0xd6, 0x77, 0x9d, - 0x50, 0x76, 0x40, 0x28, 0x75, 0x10, 0xca, 0x8e, 0xed, 0x84, 0x32, 0xef, 0xb2, 0x9e, 0x36, 0x44, - 0xa5, 0xb4, 0xaf, 0xcc, 0x5e, 0x1a, 0xc5, 0x7d, 0xf6, 0xc0, 0xb4, 0xa1, 0x4b, 0x4d, 0x24, 0xce, - 0xbe, 0x94, 0xcc, 0x0e, 0x52, 0x32, 0x8b, 0x48, 0xc9, 0xec, 0x20, 0x25, 0x33, 0xed, 0x6c, 0xa5, - 0x93, 0xf6, 0x57, 0x50, 0x44, 0x1d, 0xf9, 0x49, 0x95, 0x4a, 0xf5, 0xcd, 0xe3, 0x50, 0x6a, 0xc8, - 0x2f, 0xde, 0xd1, 0xc3, 0x8c, 0xd0, 0x75, 0xf8, 0xa3, 0xba, 0x50, 0x3c, 0xe0, 0x3d, 0xae, 0xe4, - 0x93, 0x13, 0x0a, 0xc7, 0xed, 0x0e, 0xd5, 0x46, 0x2d, 0xd0, 0x63, 0xe8, 0x62, 0x34, 0x60, 0x8f, - 0xa2, 0x61, 0x47, 0x7b, 0x6f, 0x52, 0xd8, 0x66, 0x4c, 0xff, 0x68, 0xcc, 0x38, 0x2c, 0x0c, 0xe3, - 0x4d, 0x9f, 0xc9, 0x91, 0xbc, 0x43, 0x47, 0xc1, 0x16, 0x9b, 0x05, 0x13, 0x03, 0x13, 0x03, 0x13, - 0x2b, 0x9e, 0x89, 0x11, 0x09, 0x2d, 0x7a, 0x04, 0x17, 0xe2, 0xe5, 0x0e, 0xbe, 0x04, 0xbe, 0x04, - 0xbe, 0x44, 0x69, 0x3e, 0x56, 0x31, 0x03, 0xfd, 0xb4, 0x5a, 0xc1, 0x0f, 0xd4, 0xd3, 0x4a, 0x53, - 0x44, 0x9d, 0xda, 0xc8, 0xe8, 0x34, 0x36, 0xda, 0x8d, 0x8e, 0x6e, 0xe3, 0x63, 0xcc, 0x08, 0x19, - 0x33, 0x46, 0x26, 0x8c, 0x12, 0xad, 0x71, 0x22, 0x36, 0x52, 0xfa, 0xc4, 0x9d, 0x95, 0xd9, 0x1e, - 0x70, 0xd6, 0xc9, 0x4f, 0x4a, 0x7e, 0x8a, 0x5c, 0x4e, 0x35, 0xb4, 0x7d, 0x3b, 0x65, 0xb0, 0x83, - 0x69, 0x71, 0x31, 0xc7, 0x4c, 0x97, 0xfe, 0x30, 0xfe, 0x7d, 0xb8, 0x11, 0xaa, 0xa4, 0x9b, 0xf5, - 0x28, 0x73, 0x79, 0xe6, 0x79, 0xb9, 0x3e, 0x7f, 0xb4, 0xd0, 0x0b, 0x5c, 0x12, 0x5c, 0x12, 0x5c, - 0x12, 0x5c, 0x12, 0x5c, 0xd2, 0x96, 0x2e, 0xe9, 0xf3, 0xcc, 0x25, 0xfd, 0xd3, 0x4d, 0xa4, 0xe4, - 0x42, 0xbd, 0x38, 0x3c, 0x7a, 0xf5, 0x6a, 0x26, 0xb6, 0xb6, 0xc7, 0x97, 0x2c, 0x6a, 0xae, 0xab, - 0x7f, 0x9b, 0xb6, 0xec, 0xf1, 0xc7, 0xd2, 0x7a, 0xb7, 0x52, 0xb1, 0x3f, 0xb2, 0x90, 0xcb, 0xe4, - 0x47, 0x9f, 0x90, 0xa0, 0x3d, 0x04, 0xb3, 0xc1, 0x78, 0x12, 0x86, 0x62, 0xd6, 0x5a, 0xcd, 0xb2, - 0x09, 0x0b, 0x6d, 0x2a, 0xa1, 0x95, 0x36, 0x54, 0x33, 0x83, 0x74, 0x26, 0x42, 0x36, 0x0b, 0x11, - 0x0a, 0x92, 0x00, 0x0e, 0xdd, 0x20, 0x3d, 0x93, 0x94, 0x43, 0x60, 0x8a, 0xd3, 0x4b, 0xbd, 0xa3, - 0x66, 0x4b, 0xae, 0xf4, 0x36, 0xa0, 0xf4, 0xda, 0x83, 0x68, 0xa1, 0xf4, 0x42, 0xe9, 0x05, 0xad, - 0x06, 0xad, 0x06, 0xad, 0x06, 0xad, 0x06, 0xad, 0x86, 0xd2, 0xbb, 0x19, 0xd1, 0x42, 0xe9, 0x85, - 0x4b, 0x82, 0x4b, 0x82, 0x4b, 0x82, 0x4b, 0x2a, 0xad, 0x4b, 0x82, 0xd2, 0x5b, 0x1c, 0xfb, 0xdb, - 0x21, 0x39, 0x2e, 0xc7, 0x8e, 0x71, 0x0d, 0x6a, 0x1c, 0x4a, 0xba, 0xe6, 0x1a, 0x4d, 0xb3, 0xc5, - 0x5d, 0xff, 0x9c, 0xde, 0xc5, 0xd7, 0xe9, 0xd7, 0x3e, 0xf0, 0x8e, 0x8d, 0xb9, 0xf9, 0x34, 0x12, - 0x2e, 0xa9, 0x74, 0x4b, 0x9e, 0x8b, 0xdf, 0x40, 0x2e, 0x7e, 0xf1, 0x90, 0x13, 0xb9, 0xf8, 0x5b, - 0x3f, 0x10, 0x76, 0x45, 0x63, 0x57, 0x74, 0xe9, 0x38, 0x2f, 0x62, 0x3f, 0x45, 0x70, 0x5a, 0xec, - 0x8a, 0xce, 0x8d, 0x22, 0xb0, 0x2b, 0xda, 0x5a, 0x88, 0x4f, 0x40, 0xd1, 0x50, 0x61, 0x8d, 0x7e, - 0x5c, 0xaa, 0xb9, 0xf8, 0x46, 0x7a, 0x92, 0x65, 0xac, 0xac, 0xdb, 0x81, 0xc6, 0x91, 0xce, 0x3b, - 0xc2, 0xfa, 0x46, 0x36, 0xc3, 0x70, 0x6e, 0x3f, 0x8c, 0xe9, 0xc6, 0x6e, 0xfb, 0x11, 0x48, 0xf1, - 0xf6, 0xab, 0x7e, 0xd4, 0x6f, 0xa5, 0x7e, 0xe7, 0xb3, 0xe4, 0x81, 0xc1, 0xd5, 0x29, 0xc7, 0x3a, - 0x1b, 0x83, 0xcd, 0x0c, 0x30, 0xf3, 0x00, 0xc9, 0xdc, 0x85, 0x9f, 0xf3, 0x02, 0x43, 0x32, 0x00, - 0x48, 0x06, 0xf4, 0x28, 0x0a, 0x37, 0xeb, 0xb5, 0x25, 0x59, 0x19, 0x62, 0x95, 0x79, 0x9e, 0xe4, - 0x71, 0xcc, 0xe3, 0xfc, 0x45, 0x28, 0x67, 0x4d, 0xa1, 0x06, 0x65, 0xee, 0xaa, 0xe9, 0x7b, 0x5c, - 0x83, 0x32, 0xda, 0x9b, 0x1a, 0x94, 0xe3, 0x15, 0x43, 0xa7, 0xb6, 0x4e, 0x1a, 0x44, 0xed, 0x13, - 0xed, 0x0b, 0x14, 0x7a, 0xab, 0x8e, 0x05, 0xbc, 0x63, 0x7a, 0x2b, 0x6a, 0x9f, 0xd8, 0xa0, 0x8a, - 0xe2, 0xf8, 0x6e, 0x1c, 0xdf, 0x5d, 0x29, 0x75, 0x46, 0x7c, 0xa4, 0x31, 0x15, 0x3e, 0x42, 0xc2, - 0xa1, 0x99, 0x84, 0xc3, 0x08, 0x09, 0x87, 0x05, 0x9a, 0x1f, 0x13, 0x66, 0x88, 0xd6, 0x1c, 0x11, - 0x9b, 0xa5, 0xe9, 0x0b, 0xd0, 0x9f, 0x70, 0xe8, 0x47, 0xfd, 0x96, 0x43, 0xc3, 0x45, 0x7e, 0x0a, - 0x58, 0xce, 0xf4, 0x64, 0x1d, 0x2a, 0x2e, 0x05, 0xe9, 0xee, 0xe5, 0x85, 0x0e, 0xfe, 0xf3, 0xe2, - 0xc5, 0xe7, 0x9a, 0x73, 0xce, 0x9c, 0xce, 0xa5, 0xf3, 0xb6, 0xfd, 0x77, 0xfd, 0x65, 0xf3, 0xf9, - 0xe2, 0xf0, 0xef, 0xd3, 0xe7, 0xe5, 0x3f, 0xfe, 0x58, 0xf7, 0xb5, 0xfa, 0xcb, 0xd3, 0xe7, 0x8b, - 0x0d, 0xff, 0xd3, 0x7a, 0xbe, 0xd8, 0xb2, 0x8d, 0x93, 0xe7, 0x17, 0x2b, 0x5f, 0x1d, 0xfc, 0xbd, - 0xb1, 0xe9, 0x82, 0xe6, 0x86, 0x0b, 0x8e, 0x37, 0x5d, 0x70, 0xbc, 0xe1, 0x82, 0x8d, 0xb7, 0xd4, - 0xd8, 0x70, 0xc1, 0xc9, 0xf3, 0x8f, 0x95, 0xef, 0xbf, 0x58, 0xff, 0xd5, 0xd6, 0xf3, 0xe1, 0x8f, - 0x4d, 0xff, 0x77, 0xfa, 0xfc, 0xe3, 0xe2, 0xf0, 0xf0, 0x1f, 0xf4, 0x4b, 0xbd, 0xbd, 0x07, 0x7b, - 0x20, 0x46, 0x86, 0xdf, 0x09, 0xb8, 0x78, 0x18, 0xc6, 0x1a, 0x34, 0x21, 0x91, 0xc5, 0x6e, 0x00, - 0x4a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4a, 0xc8, 0x66, 0x7b, 0xe2, 0x0b, 0x75, 0xa6, 0x11, 0x8d, - 0x9c, 0x68, 0x68, 0x9a, 0xf6, 0xe0, 0xc9, 0xe5, 0x1f, 0x3d, 0xab, 0xb3, 0xa2, 0xeb, 0x60, 0x4a, - 0x43, 0x36, 0x7d, 0xa5, 0x1b, 0x4d, 0x87, 0x21, 0xae, 0xf4, 0xa3, 0xf1, 0x70, 0x44, 0xcd, 0xab, - 0x77, 0x71, 0xe8, 0xd9, 0xe3, 0xce, 0x0d, 0x7d, 0xbd, 0x71, 0xb6, 0x43, 0x83, 0x7f, 0x60, 0x47, - 0xab, 0x6d, 0x6c, 0xc0, 0xda, 0x06, 0x39, 0x58, 0xb6, 0x01, 0xab, 0x75, 0x34, 0xcd, 0x13, 0x98, - 0x7c, 0xda, 0xc1, 0x42, 0x48, 0x84, 0x8a, 0x2d, 0xbd, 0x52, 0xbb, 0xf7, 0x69, 0xf0, 0x08, 0xf8, - 0x20, 0xe0, 0x53, 0xb1, 0x22, 0x0d, 0x9e, 0x7e, 0xeb, 0xb6, 0x8e, 0x2d, 0xdb, 0xd3, 0xad, 0xda, - 0xaf, 0x5e, 0x8d, 0x6d, 0xf9, 0x11, 0xd5, 0x60, 0xa3, 0xae, 0x5d, 0xda, 0x71, 0xdd, 0xd7, 0xba, - 0x76, 0x30, 0xea, 0x30, 0xea, 0x15, 0x44, 0xf1, 0xcb, 0xcd, 0xb0, 0x21, 0x98, 0x9b, 0x34, 0x37, - 0xc6, 0xcc, 0x8e, 0x31, 0xf3, 0x63, 0xc2, 0x0c, 0xe9, 0x51, 0x34, 0x10, 0xc5, 0xdf, 0x04, 0x58, - 0x10, 0xc5, 0x47, 0x14, 0x1f, 0x51, 0x7c, 0xdd, 0x46, 0xa3, 0x1a, 0x4a, 0xff, 0x41, 0x43, 0x54, - 0x66, 0xe6, 0x1c, 0x47, 0xed, 0x03, 0x86, 0x00, 0x86, 0x00, 0x86, 0x00, 0x86, 0x10, 0xc2, 0x90, - 0x09, 0x08, 0x71, 0xb4, 0x98, 0x98, 0x05, 0x2c, 0xd2, 0xd4, 0xd0, 0xf6, 0x1b, 0x91, 0xf4, 0x06, - 0xaf, 0xe8, 0x19, 0xa9, 0x62, 0x54, 0x73, 0x02, 0xa9, 0x62, 0x70, 0x39, 0x70, 0x39, 0x70, 0x39, - 0x9a, 0x66, 0x3b, 0x52, 0xc5, 0x96, 0x7f, 0x90, 0x2a, 0xb6, 0x55, 0x37, 0x48, 0x15, 0x4b, 0x37, - 0xf4, 0x48, 0x15, 0x2b, 0xf9, 0xe0, 0x23, 0x55, 0xac, 0x34, 0xd0, 0x3a, 0x56, 0x4c, 0x25, 0xb1, - 0xc6, 0x33, 0x28, 0x46, 0xed, 0x03, 0x4c, 0x03, 0x4c, 0x03, 0x4c, 0x03, 0x4c, 0x93, 0xcd, 0x76, - 0x2e, 0x92, 0x1e, 0x97, 0xa3, 0x0c, 0x55, 0x28, 0x37, 0xc8, 0x44, 0x4e, 0xef, 0xf8, 0x0c, 0x66, - 0x22, 0x97, 0xeb, 0x0c, 0x08, 0x82, 0xcc, 0xb5, 0xbe, 0x94, 0x1a, 0x52, 0x91, 0x87, 0xad, 0xa2, - 0xfa, 0x4c, 0xe9, 0x90, 0x00, 0xf2, 0xd6, 0x8a, 0xf0, 0xf4, 0x3b, 0x9e, 0xb7, 0x36, 0x58, 0xec, - 0xce, 0x83, 0x0c, 0x13, 0x8d, 0xf9, 0x6b, 0x73, 0x7d, 0xe8, 0x21, 0x20, 0x75, 0x10, 0x10, 0x10, - 0x10, 0x10, 0x90, 0xf2, 0x11, 0x10, 0x6a, 0x73, 0x35, 0x6d, 0x98, 0xb8, 0xf6, 0xde, 0xc6, 0xc5, - 0x44, 0x5a, 0x8b, 0xcf, 0x90, 0xf9, 0xd2, 0x6e, 0xc6, 0x4c, 0x98, 0x33, 0x63, 0x66, 0xcd, 0x94, - 0x79, 0x33, 0x6e, 0xe6, 0x8c, 0x9b, 0x3b, 0x93, 0x66, 0x4f, 0x8f, 0xf9, 0xd3, 0x64, 0x06, 0xb5, - 0x9b, 0xc3, 0x69, 0x07, 0xcc, 0x75, 0x79, 0xa4, 0x9c, 0x5e, 0xe8, 0x19, 0x98, 0xc8, 0xd3, 0xba, - 0xc4, 0x73, 0x9d, 0x6a, 0x9e, 0x59, 0x9a, 0x8e, 0x8e, 0xfa, 0x95, 0x81, 0xd6, 0x1d, 0x5e, 0xd2, - 0x6d, 0xa8, 0x4d, 0x1a, 0x6c, 0xe3, 0x86, 0xdb, 0xb4, 0x01, 0x2f, 0xcc, 0x90, 0x17, 0x66, 0xd0, - 0x8b, 0x30, 0xec, 0x7a, 0x0d, 0xbc, 0x66, 0x43, 0x3f, 0x7d, 0x61, 0xda, 0x04, 0xf8, 0x8d, 0xab, - 0x8d, 0xfe, 0x68, 0xad, 0x5f, 0xa2, 0xd7, 0xfa, 0x81, 0x9d, 0x13, 0x40, 0x67, 0xf2, 0x03, 0xf3, - 0xfa, 0x5c, 0x2a, 0x3f, 0xe6, 0x83, 0xe5, 0x32, 0x92, 0xb2, 0xfb, 0x2c, 0x30, 0xe8, 0x93, 0xd7, - 0xf7, 0x6f, 0xce, 0x3d, 0xd7, 0x6b, 0x35, 0x38, 0x67, 0x38, 0x67, 0x38, 0x67, 0x38, 0x67, 0x38, - 0xe7, 0xf9, 0xd4, 0xd3, 0x7a, 0xcb, 0xa0, 0x6f, 0x6e, 0x19, 0xe8, 0x4a, 0x6f, 0x6e, 0xea, 0xf2, - 0x8f, 0x19, 0xf3, 0x51, 0x31, 0x95, 0xbb, 0x5a, 0x90, 0x53, 0x5b, 0xe9, 0x76, 0x9a, 0xe0, 0x68, - 0xb8, 0x5f, 0x83, 0xe9, 0x8e, 0x86, 0xcd, 0xcb, 0xe2, 0x54, 0x62, 0x8f, 0x7b, 0x37, 0x95, 0x9a, - 0xb5, 0xf3, 0x93, 0x3d, 0x9a, 0x4d, 0x07, 0xbb, 0xd1, 0x4b, 0x1b, 0x64, 0x6e, 0x65, 0x5a, 0x45, - 0x92, 0xf3, 0x5e, 0xa4, 0xcc, 0xb1, 0xb7, 0x49, 0x87, 0xe6, 0xe8, 0xda, 0x00, 0xa7, 0x82, 0xaf, - 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x41, 0x4c, 0x2d, 0xa3, 0xff, 0x75, 0x3c, 0x1e, - 0xb0, 0x27, 0xe3, 0x5e, 0x78, 0xdc, 0xad, 0x39, 0x5f, 0x0c, 0xe1, 0x14, 0x8e, 0x18, 0x8e, 0x18, - 0x8e, 0x18, 0x8e, 0x18, 0xc2, 0x29, 0xdd, 0x0f, 0x84, 0x53, 0x2d, 0xdd, 0x1a, 0x2a, 0x0a, 0xb0, - 0xd2, 0x2f, 0x84, 0xd3, 0x9d, 0x9d, 0x4a, 0xc7, 0xad, 0x5a, 0x0d, 0xc2, 0xa9, 0x6d, 0xbd, 0x40, - 0x38, 0x5d, 0x47, 0xdc, 0xfc, 0x50, 0xfa, 0xca, 0x28, 0x67, 0x1b, 0xf7, 0x88, 0x4c, 0x17, 0x10, - 0x36, 0x10, 0x36, 0x10, 0x36, 0x10, 0xb6, 0xc2, 0x08, 0xdb, 0x99, 0x41, 0xbe, 0x76, 0x02, 0xbe, - 0x06, 0xbe, 0x96, 0x06, 0x64, 0x23, 0xd1, 0x05, 0x7c, 0x8d, 0x68, 0x2a, 0x35, 0x4e, 0x9a, 0xa0, - 0x6b, 0xa0, 0x6b, 0xf6, 0xd3, 0xb5, 0xbe, 0x2f, 0x55, 0xc2, 0x82, 0xe9, 0xb1, 0x20, 0xc6, 0x58, - 0xdb, 0x72, 0xc7, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0x2b, 0xc7, 0x24, - 0x98, 0xcc, 0x45, 0x39, 0x37, 0xd0, 0xd7, 0xf8, 0x5d, 0xee, 0x1c, 0xa7, 0x9a, 0x3b, 0x67, 0xab, - 0x69, 0x70, 0xec, 0x56, 0xc6, 0xf0, 0xcc, 0x60, 0x9f, 0xba, 0xcf, 0xe5, 0xda, 0xd8, 0xf1, 0xf8, - 0xbc, 0xae, 0xf6, 0x8f, 0xcf, 0x75, 0xe7, 0xbc, 0x3d, 0xfa, 0x58, 0x1f, 0xfe, 0x33, 0xfa, 0xdc, - 0xf8, 0x5c, 0x73, 0x9a, 0x93, 0xcf, 0x27, 0x9f, 0x6b, 0xce, 0x49, 0xfb, 0xf0, 0xcb, 0x97, 0x57, - 0x87, 0x7f, 0x1f, 0x3f, 0xa7, 0xbf, 0xf0, 0x1f, 0x55, 0x63, 0x0f, 0xd7, 0x3e, 0xd8, 0x21, 0x7e, - 0x58, 0xcc, 0xe2, 0x6b, 0x61, 0xf1, 0x99, 0x59, 0x7c, 0x38, 0x2c, 0x6f, 0x27, 0x0e, 0xcb, 0x2b, - 0xd8, 0x14, 0xd9, 0xce, 0xfb, 0x35, 0x23, 0xcf, 0x77, 0x7e, 0xac, 0x2e, 0x95, 0x92, 0x66, 0xd0, - 0xe7, 0x8d, 0x2f, 0xde, 0x04, 0xc3, 0x0a, 0x02, 0x71, 0xf5, 0xa2, 0x22, 0x92, 0x20, 0x30, 0x00, - 0x08, 0x6f, 0xd8, 0xa3, 0xf9, 0x4e, 0xdf, 0x4b, 0x8f, 0x4b, 0xee, 0xfd, 0xf6, 0x34, 0xee, 0x12, - 0xe2, 0xd0, 0x46, 0x71, 0x28, 0xf0, 0xc5, 0x37, 0x27, 0x08, 0x5d, 0x93, 0xd5, 0x2c, 0xd6, 0xf4, - 0x0d, 0x89, 0x08, 0x12, 0x11, 0x24, 0x22, 0x48, 0x44, 0x90, 0x88, 0x20, 0x11, 0x41, 0x22, 0x02, - 0x4b, 0x85, 0x44, 0x04, 0x89, 0x08, 0x12, 0x11, 0x24, 0x22, 0x48, 0x44, 0x90, 0x88, 0xca, 0x2d, - 0x11, 0x59, 0xcd, 0xfe, 0x65, 0x98, 0x28, 0x2e, 0x1d, 0xdf, 0x33, 0x4f, 0xfe, 0x67, 0x5d, 0x83, - 0xfb, 0x83, 0xfb, 0x83, 0xfb, 0x83, 0xfb, 0x83, 0xfb, 0x23, 0xdb, 0xde, 0x3e, 0xe6, 0x81, 0x6c, - 0x7b, 0xfd, 0xfd, 0x22, 0xdb, 0x7e, 0x67, 0xa7, 0x52, 0xe3, 0x04, 0x55, 0x25, 0x41, 0xa9, 0x4c, - 0x51, 0x2a, 0xab, 0x8e, 0x17, 0xba, 0x4c, 0x1e, 0x06, 0x40, 0x8d, 0x7b, 0x5a, 0xdd, 0xa6, 0x21, - 0xda, 0x77, 0x34, 0xc0, 0x9a, 0x9d, 0x8b, 0xb9, 0x23, 0x7e, 0x97, 0xfe, 0x30, 0xfe, 0x7d, 0xf1, - 0x18, 0xe0, 0xd5, 0xbf, 0x0d, 0xff, 0x14, 0x5d, 0x0c, 0x8f, 0x04, 0x1e, 0x7d, 0x9c, 0x1d, 0x0c, - 0xbc, 0xf0, 0xfb, 0x51, 0x5f, 0xca, 0xe8, 0x68, 0x76, 0x56, 0xe5, 0x91, 0xd6, 0xb3, 0xdf, 0xa6, - 0xcf, 0x7b, 0xc5, 0x63, 0x57, 0xfa, 0xd1, 0xf8, 0x64, 0xe5, 0xea, 0xa5, 0xe7, 0xf9, 0x83, 0xcf, - 0x2c, 0xa8, 0x7c, 0xfa, 0xf0, 0xe1, 0xb6, 0xe2, 0x31, 0xc5, 0x2a, 0x9d, 0x50, 0x56, 0xae, 0x6f, - 0xfb, 0xad, 0xca, 0xec, 0x49, 0x0d, 0x91, 0xe0, 0x3a, 0x48, 0x30, 0x48, 0x30, 0x48, 0x30, 0x48, - 0x70, 0x6a, 0xb3, 0xe6, 0x1b, 0x4a, 0x52, 0x2b, 0x20, 0x2f, 0x69, 0x65, 0xa1, 0x1b, 0xcf, 0x4f, - 0xda, 0xe4, 0x3d, 0xde, 0x86, 0x72, 0xe4, 0x36, 0x42, 0xb1, 0xec, 0x30, 0x5e, 0x56, 0x62, 0xae, - 0xe2, 0x8a, 0xea, 0xf2, 0xca, 0xf8, 0x76, 0x2b, 0x83, 0xdb, 0xad, 0x0c, 0x6f, 0xf7, 0x8b, 0x30, - 0x1b, 0x02, 0x33, 0x4c, 0x22, 0x8c, 0xb9, 0x99, 0x22, 0xdc, 0x4d, 0x61, 0x6e, 0xa7, 0x28, 0xf7, - 0x53, 0xb8, 0x1b, 0x2a, 0xdc, 0x1d, 0x15, 0xe9, 0x96, 0x0c, 0x53, 0x53, 0x43, 0xeb, 0xd5, 0x98, - 0x66, 0xbb, 0xb2, 0x5a, 0x8d, 0xe6, 0x6d, 0xad, 0xc0, 0xfb, 0x73, 0x83, 0x7d, 0x1a, 0xcd, 0xe3, - 0x32, 0xc3, 0x56, 0x7f, 0x31, 0xb2, 0x85, 0xe4, 0x75, 0xad, 0x8c, 0xf1, 0x59, 0x01, 0x7d, 0x17, - 0x95, 0x6a, 0x32, 0xbd, 0x81, 0x5d, 0xcd, 0xf7, 0x32, 0xa3, 0xa8, 0x15, 0x64, 0x86, 0xcb, 0xb1, - 0x68, 0x5b, 0x58, 0xb4, 0xc5, 0x2e, 0x5a, 0xe4, 0x89, 0xed, 0x74, 0x9e, 0x58, 0x41, 0x26, 0x0c, - 0x79, 0x70, 0xe5, 0x12, 0xa0, 0x2c, 0x0b, 0xda, 0xb4, 0x75, 0x05, 0x6d, 0x84, 0x08, 0x15, 0x1b, - 0x0b, 0x38, 0xfa, 0x1c, 0x5f, 0x35, 0x76, 0xbb, 0xbc, 0xc7, 0x22, 0xa6, 0xba, 0xa3, 0xe8, 0x4a, - 0xc4, 0xc5, 0x28, 0xc0, 0xe1, 0xcc, 0x85, 0x4f, 0xd6, 0x7d, 0x3c, 0x5a, 0x8c, 0xb0, 0x2c, 0xc4, - 0x56, 0x86, 0x51, 0x95, 0x59, 0x3c, 0xe5, 0x17, 0x91, 0x94, 0x03, 0x3b, 0x46, 0x5b, 0x03, 0xd8, - 0xa9, 0x4e, 0x5f, 0x99, 0xa3, 0x24, 0x73, 0xbf, 0xf9, 0xe2, 0x41, 0xdb, 0x68, 0xcf, 0xa0, 0xcc, - 0x6a, 0x9f, 0x9a, 0xe6, 0xb0, 0xde, 0x60, 0x91, 0x76, 0xf5, 0xce, 0x84, 0x5a, 0x67, 0x4c, 0x9d, - 0x33, 0xa5, 0xc6, 0x19, 0x57, 0xdf, 0x8c, 0xab, 0x6d, 0x26, 0xd5, 0x35, 0xbb, 0x12, 0x0d, 0x74, - 0x07, 0x77, 0xaa, 0xee, 0x64, 0xc5, 0x1b, 0x4a, 0x36, 0x30, 0x13, 0xea, 0x47, 0x4c, 0xbd, 0xfc, - 0xe6, 0xd3, 0xb4, 0x19, 0x2d, 0xcc, 0x9c, 0x16, 0x66, 0x56, 0x8b, 0x30, 0xaf, 0x86, 0x28, 0xcd, - 0xae, 0xc4, 0xd4, 0x27, 0xa7, 0x68, 0x38, 0x1e, 0x77, 0x25, 0x1f, 0x8f, 0x91, 0xe1, 0x98, 0xfa, - 0x9a, 0x7b, 0x30, 0x16, 0x53, 0x37, 0x76, 0x14, 0xe3, 0xb2, 0x6b, 0x40, 0x3c, 0xdc, 0x62, 0x97, - 0x51, 0x94, 0xeb, 0x28, 0xdc, 0x85, 0x14, 0xee, 0x4a, 0x8a, 0x74, 0x29, 0x66, 0x5c, 0x8b, 0x21, - 0x17, 0x33, 0x7d, 0x91, 0xc5, 0xc5, 0xc3, 0x4d, 0xed, 0x65, 0x5a, 0x36, 0xbd, 0x06, 0x77, 0x15, - 0x18, 0xde, 0xdb, 0x34, 0xf9, 0x29, 0x20, 0xaa, 0x56, 0xc4, 0x5e, 0xa7, 0x82, 0x7c, 0xea, 0x4a, - 0xf7, 0x05, 0x9d, 0x0c, 0x39, 0xed, 0xbf, 0xc0, 0x6d, 0x2b, 0x86, 0xad, 0xd5, 0xe2, 0x94, 0x2b, - 0x60, 0x4f, 0x54, 0xd9, 0xa6, 0x9c, 0xf1, 0x13, 0x49, 0x4a, 0x35, 0xe9, 0x10, 0x56, 0x2c, 0xf5, - 0xf3, 0x18, 0x30, 0x0a, 0xd5, 0x61, 0xc0, 0x63, 0x16, 0xd8, 0x32, 0xcf, 0x5e, 0x97, 0x6f, 0x00, - 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0xd2, 0xd0, 0x6a, 0x0d, 0x38, 0xeb, 0x48, - 0xde, 0x29, 0x22, 0xa7, 0xfa, 0xd4, 0x6c, 0x49, 0xb7, 0x6e, 0x9a, 0xdd, 0xb2, 0x62, 0xf0, 0x7a, - 0x76, 0x6a, 0x8a, 0x19, 0x2d, 0x89, 0x3e, 0x4f, 0x6c, 0x8d, 0x57, 0x29, 0x9f, 0xa7, 0x38, 0xc5, - 0x75, 0x6e, 0xb4, 0x54, 0xba, 0x41, 0x54, 0x6a, 0x75, 0x64, 0xc8, 0x50, 0x12, 0xd9, 0xb4, 0xbf, - 0x22, 0x93, 0xc9, 0x56, 0xd3, 0x9a, 0xb4, 0xe6, 0x97, 0xe9, 0x9f, 0x20, 0x3a, 0xeb, 0xf6, 0xc5, - 0x8a, 0x29, 0x6e, 0x2e, 0x8f, 0x62, 0xd4, 0xdd, 0x8e, 0xa5, 0x51, 0x34, 0x90, 0x46, 0x61, 0x0d, - 0x89, 0x41, 0x1a, 0x05, 0xd2, 0x28, 0x7e, 0xf5, 0xc2, 0x90, 0x46, 0x61, 0xe4, 0x0e, 0x90, 0x46, - 0x01, 0xfd, 0x0b, 0xfa, 0x17, 0xf4, 0x2f, 0xe8, 0x5f, 0x48, 0xa3, 0xd0, 0xd3, 0x25, 0xd2, 0x28, - 0x76, 0xcf, 0xa7, 0xae, 0x74, 0x8f, 0x34, 0x0a, 0xa4, 0x51, 0x14, 0x34, 0xe5, 0x90, 0x46, 0xb1, - 0x83, 0xbd, 0x21, 0x8d, 0x62, 0xfb, 0x69, 0x88, 0x34, 0x0a, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, - 0xd0, 0xc8, 0x7d, 0xa5, 0x91, 0x48, 0xa3, 0x40, 0x1a, 0x85, 0x5e, 0x62, 0x8b, 0x34, 0x0a, 0xa4, - 0x51, 0x94, 0x64, 0x31, 0xec, 0x7b, 0x1a, 0xc5, 0x28, 0x7a, 0x8f, 0xaa, 0x4f, 0xfa, 0x67, 0xdc, - 0x5e, 0x54, 0x7d, 0x32, 0x56, 0x7f, 0x68, 0xf4, 0xa4, 0x4a, 0x26, 0xae, 0x12, 0x63, 0xdc, 0x72, - 0x3d, 0xe9, 0xfb, 0xeb, 0xdd, 0xdc, 0x9d, 0x7f, 0xbd, 0x8e, 0xfa, 0xad, 0xaf, 0x97, 0xa3, 0xfb, - 0xfd, 0xfa, 0x49, 0xca, 0xe8, 0xf7, 0xc1, 0x9d, 0x7e, 0x9d, 0x7e, 0xfb, 0xe3, 0xe4, 0x46, 0xf7, - 0xb8, 0x54, 0x95, 0xde, 0x94, 0x21, 0x23, 0xa9, 0x42, 0xc6, 0x0a, 0x52, 0x35, 0x50, 0x90, 0xaa, - 0x34, 0x04, 0x1c, 0x05, 0xa9, 0xf6, 0xd7, 0x9d, 0x6a, 0x2f, 0x48, 0xc5, 0x5c, 0x97, 0x47, 0xca, - 0xe9, 0x85, 0x9e, 0xc1, 0x6c, 0xca, 0xf9, 0x4e, 0xb5, 0x9f, 0x42, 0x35, 0x4d, 0xd6, 0xe9, 0xb0, - 0x20, 0xe6, 0x38, 0x63, 0xb9, 0x74, 0x06, 0xdb, 0xb8, 0xe1, 0x36, 0x6d, 0xc0, 0x0b, 0x33, 0xe4, - 0x85, 0x19, 0xf4, 0x22, 0x0c, 0xfb, 0x6e, 0x30, 0x75, 0xf3, 0x67, 0x2c, 0xdf, 0x87, 0x61, 0xc0, - 0x99, 0x30, 0x78, 0xca, 0x72, 0xbd, 0x8e, 0x0d, 0x0d, 0xab, 0x8e, 0xd8, 0xeb, 0x73, 0xa9, 0xfc, - 0x78, 0xa8, 0xdb, 0x8d, 0x48, 0x6c, 0xdf, 0xc0, 0x91, 0x5f, 0x33, 0x9f, 0xbc, 0xbe, 0x7f, 0x73, - 0xee, 0xb9, 0x5e, 0xab, 0xc1, 0x39, 0xc3, 0x39, 0xc3, 0x39, 0xc3, 0x39, 0xc3, 0x39, 0xcf, 0x67, - 0xbb, 0xd6, 0x5b, 0x06, 0x7d, 0x73, 0xcb, 0x40, 0x57, 0x66, 0xd3, 0x5b, 0xcd, 0x46, 0xfd, 0xf6, - 0xee, 0xd8, 0xfa, 0xfa, 0x1e, 0x1d, 0x5a, 0x6f, 0x36, 0x86, 0xbb, 0x77, 0x53, 0xa9, 0x59, 0x3b, - 0x3f, 0xd9, 0xa3, 0xd9, 0xb4, 0x23, 0x91, 0xf1, 0x36, 0xc8, 0xdc, 0xca, 0xb4, 0x72, 0x13, 0x29, - 0x07, 0x34, 0x6a, 0xb2, 0x49, 0xd1, 0x60, 0xc1, 0xff, 0xe5, 0x9e, 0x41, 0xa9, 0x40, 0xa9, 0x40, - 0xa9, 0x40, 0xa9, 0x40, 0xa9, 0x0c, 0x6f, 0x20, 0x34, 0xb8, 0x71, 0x10, 0x8c, 0x6a, 0x97, 0x60, - 0x70, 0x0d, 0x8c, 0x0a, 0x8c, 0x8a, 0x66, 0x2a, 0x35, 0x4e, 0x40, 0xa8, 0x40, 0xa8, 0x76, 0x80, - 0x50, 0x45, 0x92, 0xf3, 0x5e, 0xa4, 0xcc, 0xf1, 0xa8, 0x49, 0x87, 0xe6, 0xe2, 0x5f, 0x03, 0x94, - 0x0a, 0xb6, 0x06, 0xb6, 0x06, 0xb6, 0x06, 0xb6, 0x06, 0xb6, 0x86, 0xec, 0x94, 0x32, 0xfa, 0x5f, - 0xc7, 0xe3, 0x01, 0x7b, 0x32, 0xee, 0x85, 0xc7, 0xdd, 0x9a, 0xf3, 0xc5, 0xc8, 0x44, 0x81, 0x23, - 0x86, 0x23, 0x86, 0x23, 0x86, 0x23, 0x46, 0x26, 0x0a, 0xdd, 0x0f, 0x74, 0x53, 0x2d, 0xdd, 0x42, - 0x37, 0xd5, 0x3b, 0x95, 0xf6, 0x50, 0x37, 0x3d, 0x6e, 0xd5, 0x6a, 0x10, 0x4e, 0x6d, 0xeb, 0x05, - 0xc2, 0xe9, 0x3a, 0xe2, 0x66, 0x3a, 0x03, 0xc5, 0x54, 0xe6, 0x09, 0xb6, 0x0e, 0x80, 0xb0, 0x81, - 0xb0, 0x81, 0xb0, 0x81, 0xb0, 0x6d, 0x26, 0x6c, 0xc8, 0x73, 0x01, 0x5f, 0x2b, 0x2d, 0xc8, 0xc6, - 0xce, 0x01, 0xf0, 0x35, 0xa2, 0xa9, 0x64, 0xbc, 0xa0, 0x35, 0xe8, 0x1a, 0xe8, 0x9a, 0x8e, 0x69, - 0xd5, 0xf7, 0xa5, 0x4a, 0x58, 0xe0, 0x8c, 0x4b, 0x8f, 0x99, 0x63, 0x6d, 0xcb, 0x1d, 0x83, 0x4e, - 0x81, 0x4e, 0x81, 0x4e, 0x81, 0x4e, 0x81, 0x4e, 0x8d, 0x57, 0x9b, 0x1f, 0x19, 0xb2, 0x8d, 0xf3, - 0xf6, 0xb1, 0x7e, 0x6e, 0xa0, 0xaf, 0xf1, 0xbb, 0xdc, 0x39, 0x4e, 0x35, 0x1b, 0xb9, 0x7e, 0xd3, - 0xe0, 0xd8, 0xad, 0x8c, 0xe1, 0x99, 0xd9, 0x7a, 0xdf, 0x8a, 0x4b, 0x61, 0xfc, 0xec, 0xa8, 0xea, - 0x7f, 0x5e, 0xbc, 0xf8, 0x5c, 0x73, 0xce, 0xdb, 0x3f, 0x3e, 0xd7, 0x9d, 0xf3, 0xf6, 0xe8, 0x63, - 0x7d, 0xf8, 0xcf, 0xe8, 0x73, 0xe3, 0x73, 0xcd, 0x69, 0x4e, 0x3e, 0x9f, 0x7c, 0xae, 0x39, 0x27, - 0xed, 0xc3, 0x2f, 0x5f, 0x5e, 0x1d, 0xfe, 0x7d, 0xfc, 0x9c, 0xfe, 0xc2, 0x7f, 0x54, 0x77, 0xed, - 0x54, 0x95, 0x97, 0x3b, 0xbc, 0xf8, 0x5a, 0x58, 0x7c, 0x66, 0x16, 0x1f, 0x73, 0x3a, 0x97, 0xce, - 0xdb, 0xf6, 0xdf, 0xf5, 0x97, 0xcd, 0xe7, 0x8b, 0xc3, 0xbf, 0x4f, 0x9f, 0x97, 0xff, 0xf8, 0x63, - 0xdd, 0xd7, 0xea, 0x2f, 0x4f, 0x9f, 0x2f, 0x36, 0xfc, 0x4f, 0xeb, 0xf9, 0x62, 0xcb, 0x36, 0x4e, - 0x9e, 0x5f, 0xac, 0x7c, 0x75, 0xf0, 0xf7, 0xc6, 0xa6, 0x0b, 0x9a, 0x1b, 0x2e, 0x38, 0xde, 0x74, - 0xc1, 0xf1, 0x86, 0x0b, 0x36, 0xde, 0x52, 0x63, 0xc3, 0x05, 0x27, 0xcf, 0x3f, 0x56, 0xbe, 0xff, - 0x62, 0xfd, 0x57, 0x5b, 0xcf, 0x87, 0x3f, 0x36, 0xfd, 0xdf, 0xe9, 0xf3, 0x8f, 0x8b, 0xc3, 0x1d, - 0x34, 0x45, 0xb6, 0xf3, 0x7e, 0xcd, 0xc8, 0xd3, 0xe8, 0x79, 0x12, 0x85, 0x9c, 0x23, 0x51, 0xc8, - 0xf9, 0x11, 0x66, 0xcf, 0x8d, 0xb0, 0x5b, 0x1c, 0x0a, 0x7c, 0xf1, 0xcd, 0x09, 0x42, 0xd7, 0x64, - 0x79, 0xc0, 0x35, 0x7d, 0x43, 0x22, 0x82, 0x44, 0x04, 0x89, 0x08, 0x12, 0x11, 0x24, 0x22, 0x48, - 0x44, 0x90, 0x88, 0xc0, 0x52, 0x21, 0x11, 0x41, 0x22, 0x82, 0x44, 0x04, 0x89, 0x08, 0x12, 0x11, - 0x24, 0xa2, 0x72, 0x4b, 0x44, 0x56, 0xb3, 0x7f, 0x19, 0x26, 0x8a, 0x4b, 0xc7, 0xf7, 0xcc, 0x93, - 0xff, 0x59, 0xd7, 0xe0, 0xfe, 0xe0, 0xfe, 0xe0, 0xfe, 0xe0, 0xfe, 0xe0, 0xfe, 0xc8, 0xb6, 0xb7, - 0x8f, 0x79, 0x20, 0xdb, 0x5e, 0x7f, 0xbf, 0xc8, 0xb6, 0xdf, 0xd9, 0xa9, 0x84, 0xaa, 0x92, 0xa0, - 0x54, 0xe6, 0x28, 0x95, 0x5d, 0xc7, 0x9f, 0x27, 0x0f, 0x03, 0xa0, 0xc6, 0x3d, 0xad, 0x6e, 0xd3, - 0x10, 0xed, 0x3b, 0x1a, 0x60, 0xcd, 0xce, 0xc5, 0xdc, 0x69, 0xe9, 0x4b, 0x7f, 0x18, 0xff, 0xbe, - 0x78, 0xa2, 0xfa, 0xea, 0xdf, 0x86, 0x7f, 0x8a, 0x2e, 0x86, 0xa7, 0xab, 0x8f, 0x3e, 0xce, 0xce, - 0x58, 0x5f, 0xf8, 0x7d, 0xe5, 0xa4, 0x75, 0x9d, 0x67, 0x69, 0x4f, 0x1f, 0xf7, 0x8a, 0xc7, 0xae, - 0xf4, 0xa3, 0xf1, 0x99, 0xf5, 0xd5, 0x4b, 0xcf, 0xf3, 0x07, 0x9f, 0x59, 0x50, 0xf9, 0xf4, 0xe1, - 0xc3, 0x6d, 0xc5, 0x63, 0x8a, 0x55, 0x3a, 0xa1, 0xac, 0x5c, 0xdf, 0xf6, 0x5b, 0x95, 0xd9, 0x83, - 0x1a, 0xe2, 0xc0, 0x75, 0x70, 0x60, 0x70, 0x60, 0x70, 0x60, 0x70, 0xe0, 0xd4, 0x66, 0xcd, 0x37, - 0x94, 0xa3, 0x56, 0x40, 0x5a, 0xd2, 0xca, 0x42, 0x37, 0x9e, 0x9e, 0xb4, 0xc9, 0x7b, 0xbc, 0x0d, - 0xe5, 0xc8, 0x6d, 0x84, 0x62, 0xd9, 0x61, 0xbc, 0xac, 0xc4, 0x5c, 0xc5, 0x15, 0xd5, 0xe5, 0x95, - 0xf1, 0xed, 0x56, 0x06, 0xb7, 0x5b, 0x19, 0xde, 0xee, 0x17, 0x61, 0x36, 0x02, 0x66, 0x98, 0x43, - 0x18, 0x73, 0x33, 0x45, 0xb8, 0x9b, 0xc2, 0xdc, 0x4e, 0x51, 0xee, 0xa7, 0x70, 0x37, 0x54, 0xb8, - 0x3b, 0x2a, 0xd2, 0x2d, 0x19, 0x66, 0xa6, 0x86, 0xd6, 0xab, 0x31, 0xc9, 0x76, 0x65, 0xb5, 0x1a, - 0x4d, 0xdb, 0x5a, 0x81, 0xf7, 0xe7, 0x06, 0xfb, 0x34, 0x9a, 0xc6, 0x65, 0x86, 0xac, 0xfe, 0x62, - 0x64, 0x0b, 0x49, 0xeb, 0x5a, 0x19, 0xe3, 0xb3, 0x02, 0xfa, 0x2e, 0x2a, 0xd3, 0x64, 0x7a, 0x03, - 0xbb, 0x9a, 0xee, 0x65, 0x46, 0x50, 0x2b, 0xc8, 0x0c, 0x97, 0x63, 0xd1, 0xb6, 0xb0, 0x68, 0x8b, - 0x5d, 0xb4, 0x48, 0x13, 0xdb, 0xe9, 0x34, 0xb1, 0x82, 0x4c, 0x18, 0xd2, 0xe0, 0xca, 0x25, 0x40, - 0x59, 0x16, 0xb3, 0x69, 0xeb, 0x8a, 0xd9, 0x08, 0x11, 0x2a, 0x36, 0x16, 0x70, 0xf4, 0x39, 0xbe, - 0x6a, 0xec, 0x76, 0x79, 0x8f, 0x45, 0x4c, 0x75, 0x47, 0xc1, 0x95, 0x88, 0x0b, 0x77, 0xa8, 0x8a, - 0x38, 0x73, 0xd1, 0x93, 0x75, 0x1f, 0x8f, 0x16, 0x03, 0x2c, 0x0b, 0xa1, 0x95, 0x61, 0x50, 0x65, - 0x16, 0x4e, 0xf9, 0x79, 0x20, 0xe5, 0xc0, 0x8e, 0xc1, 0xd6, 0x80, 0x75, 0x0c, 0x66, 0x4f, 0x1a, - 0xcf, 0x9a, 0xd4, 0x2c, 0xe5, 0x69, 0x97, 0xee, 0x4c, 0x48, 0x75, 0xc6, 0xa4, 0x39, 0x53, 0x52, - 0x9c, 0x71, 0xe9, 0xcd, 0xb8, 0xd4, 0x66, 0x52, 0x5a, 0xb3, 0x2b, 0xc9, 0x40, 0xbb, 0x54, 0x36, - 0x5d, 0x2d, 0x01, 0x67, 0x1d, 0xc9, 0x3b, 0x3a, 0xd7, 0xcb, 0x84, 0x6e, 0x9d, 0x6a, 0xec, 0xe3, - 0x76, 0xec, 0x73, 0x5f, 0xbd, 0x3a, 0x1a, 0x79, 0xdc, 0xa3, 0x55, 0xdb, 0x6c, 0x8b, 0x6f, 0x3c, - 0x28, 0xf1, 0x0c, 0x1d, 0x18, 0x25, 0x13, 0x9e, 0x4f, 0x6f, 0x11, 0x0e, 0x23, 0x45, 0x37, 0x8c, - 0x14, 0xd9, 0xd0, 0x5b, 0x54, 0x83, 0x7a, 0xf2, 0x68, 0xc6, 0xe1, 0x45, 0xe2, 0x6f, 0x0d, 0x06, - 0xb4, 0x1a, 0x2b, 0x99, 0xb8, 0x4a, 0x8c, 0x2d, 0xf5, 0xf5, 0xe4, 0x8e, 0xbe, 0xde, 0xcd, 0xdd, - 0xde, 0xd7, 0xeb, 0xa8, 0xdf, 0xfa, 0x7a, 0x39, 0xba, 0xa9, 0xaf, 0x9f, 0xa4, 0x8c, 0x7e, 0x1f, - 0xde, 0xce, 0x41, 0x39, 0x4d, 0x12, 0x4d, 0x4b, 0x44, 0xf3, 0x52, 0xd7, 0x7c, 0x34, 0x3e, 0x0f, - 0x69, 0x46, 0x3b, 0xff, 0xd8, 0xe4, 0x6b, 0x21, 0xe7, 0xa8, 0x4e, 0x5c, 0x53, 0x6e, 0xf0, 0x4f, - 0xeb, 0x7b, 0xb4, 0xf8, 0x1a, 0x2d, 0xbe, 0x85, 0xd6, 0x97, 0xe4, 0x1d, 0x4d, 0xda, 0x3c, 0x5b, - 0x9a, 0xc5, 0x5d, 0x5c, 0xde, 0x2c, 0x91, 0x7b, 0xf9, 0x49, 0x26, 0xec, 0xf5, 0x6d, 0x65, 0xd0, - 0x57, 0xa5, 0xc3, 0x7a, 0x7e, 0xf0, 0x54, 0x19, 0xd9, 0xab, 0x44, 0x0e, 0xad, 0x63, 0xa5, 0x13, - 0xca, 0x2f, 0x82, 0x3c, 0x31, 0x96, 0x38, 0x01, 0x96, 0x5c, 0xc6, 0xd0, 0x21, 0x5b, 0x68, 0x93, - 0x29, 0x74, 0xc9, 0x12, 0xda, 0x65, 0x08, 0xed, 0xb2, 0x83, 0x4e, 0x99, 0xa1, 0x5c, 0x78, 0x86, - 0x3a, 0x21, 0xb4, 0x3a, 0x04, 0x17, 0xe4, 0x33, 0x6a, 0x2a, 0x9f, 0x0e, 0x5a, 0x27, 0x1e, 0xeb, - 0x25, 0x03, 0xf7, 0x46, 0xb8, 0x41, 0x18, 0xfb, 0xe2, 0x61, 0x60, 0xd0, 0x14, 0xf3, 0x05, 0x97, - 0xc3, 0x4c, 0xff, 0x61, 0x02, 0xe7, 0x10, 0xb8, 0xc7, 0x95, 0x2e, 0x13, 0x5e, 0xc0, 0xbd, 0xca, - 0xfd, 0x53, 0x45, 0x75, 0xfd, 0xf8, 0x8b, 0xb8, 0xbe, 0x9d, 0xe5, 0x74, 0x52, 0xdf, 0x9f, 0x9e, - 0x9c, 0x7f, 0x6d, 0x0a, 0xae, 0x4e, 0xe5, 0x56, 0xbb, 0x62, 0xab, 0x5b, 0xa9, 0x35, 0xa6, 0xd0, - 0x1a, 0x53, 0x66, 0x4d, 0x28, 0xb2, 0xcf, 0xbb, 0x4d, 0x4d, 0x0b, 0x26, 0x51, 0xed, 0xbc, 0xb0, - 0x9b, 0x96, 0x12, 0x9b, 0xa4, 0xc2, 0x04, 0x8b, 0x2f, 0xbd, 0xe4, 0x92, 0x6f, 0x7d, 0x64, 0x1f, - 0xeb, 0x6c, 0x57, 0x66, 0x04, 0x1a, 0x54, 0xb3, 0xc2, 0xc4, 0x6c, 0xc8, 0x36, 0x20, 0xe9, 0x5f, - 0x67, 0x86, 0x57, 0x59, 0x65, 0x89, 0x0a, 0x07, 0xcf, 0x9b, 0xf9, 0x25, 0x4e, 0x5d, 0xe6, 0xb4, - 0xa5, 0x8c, 0x03, 0x9a, 0x0f, 0x86, 0xe4, 0x86, 0x1b, 0x14, 0xb0, 0x62, 0x11, 0x3e, 0x38, 0xfc, - 0x51, 0xe5, 0x30, 0x00, 0x54, 0x50, 0x81, 0x1c, 0x12, 0x90, 0xbb, 0xfe, 0x55, 0x17, 0x3f, 0x7c, - 0x75, 0x96, 0x18, 0xa2, 0xbc, 0x0c, 0xa7, 0xea, 0x4e, 0x66, 0x6e, 0xce, 0x71, 0x9e, 0x4c, 0xbe, - 0x71, 0x7b, 0x79, 0xa5, 0x4b, 0x12, 0x56, 0x40, 0xc6, 0x02, 0x28, 0x51, 0x3f, 0xe9, 0x32, 0xd5, - 0x85, 0xec, 0xb5, 0x21, 0x79, 0x6d, 0xc8, 0x9d, 0x7a, 0x19, 0xd3, 0xa0, 0xcf, 0xbc, 0xa2, 0x2f, - 0x95, 0x80, 0x51, 0x75, 0x25, 0x67, 0x8a, 0x3b, 0x0f, 0x41, 0x78, 0x3f, 0x3b, 0xf2, 0x90, 0xd3, - 0x9d, 0xb6, 0x38, 0x5b, 0xff, 0x1b, 0x3a, 0x22, 0xd3, 0x6b, 0xa7, 0x47, 0xe0, 0x0f, 0xe6, 0x0e, - 0xb1, 0xf0, 0x5a, 0xdb, 0x5b, 0xe1, 0x95, 0xc8, 0x0e, 0xe9, 0x56, 0x1a, 0x76, 0x51, 0x7c, 0xa5, - 0xb1, 0x53, 0xc4, 0xac, 0x9d, 0x68, 0xde, 0x92, 0xe7, 0x6d, 0x4d, 0x67, 0xed, 0x7d, 0x18, 0x06, - 0x9c, 0x09, 0xca, 0x39, 0x3b, 0x01, 0x1d, 0xf5, 0xb2, 0x08, 0x1f, 0x2f, 0xc9, 0xec, 0xbe, 0xe2, - 0xbd, 0x28, 0x94, 0x4c, 0x3e, 0x19, 0x30, 0xfd, 0xeb, 0xfa, 0xa2, 0xb7, 0xfe, 0x1d, 0x16, 0xc4, - 0x30, 0xff, 0x30, 0xff, 0x30, 0xff, 0x30, 0xff, 0x30, 0xff, 0x9b, 0x9e, 0x69, 0x66, 0x8b, 0x07, - 0xcb, 0x85, 0x4b, 0xc9, 0x3d, 0x27, 0xf0, 0x3b, 0x5c, 0xf9, 0x3d, 0x4e, 0xef, 0x00, 0x7e, 0xda, - 0x1b, 0xbd, 0x0b, 0x38, 0x6b, 0x35, 0x6b, 0x35, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x80, 0x7d, 0x74, - 0x01, 0x89, 0x2f, 0xd4, 0x71, 0x43, 0x83, 0x07, 0x20, 0xdc, 0x97, 0xa1, 0xa9, 0xa0, 0xb4, 0x9e, - 0x1d, 0x00, 0x1a, 0xf3, 0x02, 0xf4, 0x6e, 0xd7, 0x9b, 0x54, 0xe9, 0xd5, 0xd5, 0xbe, 0x81, 0x5a, - 0xbc, 0xcf, 0x7a, 0xf6, 0x5b, 0x58, 0x3f, 0xa4, 0xcd, 0xc6, 0x79, 0xf3, 0xbc, 0x75, 0xda, 0x38, - 0x3f, 0xb1, 0x78, 0x6c, 0x4b, 0x9a, 0xe0, 0xd1, 0xde, 0x49, 0xa0, 0xdb, 0x67, 0x81, 0x6f, 0x06, - 0xe4, 0x2e, 0xf5, 0x44, 0x0f, 0x70, 0x5b, 0xb5, 0xe6, 0x19, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, - 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0xae, 0x8d, 0x08, 0xb7, 0xd8, - 0x9d, 0x83, 0xf6, 0xa4, 0x30, 0x8f, 0xb3, 0x38, 0xc7, 0x35, 0x2b, 0x0a, 0xcb, 0x25, 0xce, 0x91, - 0x37, 0x39, 0x2a, 0x3b, 0x45, 0x96, 0x4e, 0x47, 0x71, 0x1c, 0x08, 0x79, 0x36, 0x5d, 0x03, 0xd9, - 0x74, 0xe5, 0x40, 0xf4, 0xc8, 0xa6, 0x4b, 0x47, 0xad, 0x91, 0x4d, 0xb7, 0x51, 0x6b, 0x40, 0x36, - 0x1d, 0x94, 0x06, 0x28, 0x0d, 0xfb, 0xaa, 0x34, 0x20, 0x9d, 0x22, 0x8d, 0xdd, 0x47, 0x36, 0x1d, - 0xcc, 0x3f, 0xcc, 0x3f, 0xcc, 0x3f, 0xcc, 0xff, 0x7e, 0x99, 0x7f, 0x64, 0xd3, 0xc1, 0x05, 0xc0, - 0x05, 0xc0, 0x05, 0xec, 0xa2, 0x0b, 0x40, 0xac, 0x91, 0x72, 0x52, 0x22, 0xd6, 0xb8, 0xb9, 0x7d, - 0xc4, 0x1a, 0x0b, 0x1b, 0x52, 0xc4, 0x1a, 0xf5, 0xb5, 0x86, 0x6c, 0xba, 0x7c, 0x20, 0x17, 0xd9, - 0x74, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, - 0xb8, 0x40, 0xb8, 0x3a, 0x5a, 0xd8, 0xc3, 0x6c, 0x3a, 0x82, 0xa3, 0x10, 0x51, 0x98, 0x93, 0x7a, - 0x54, 0xaa, 0xb9, 0x92, 0x0c, 0xb7, 0xae, 0xca, 0x3a, 0xe9, 0xad, 0xc4, 0x55, 0x40, 0x73, 0x96, - 0x20, 0xa4, 0x29, 0x3d, 0xb8, 0x7b, 0x15, 0x40, 0x51, 0xfd, 0x33, 0x13, 0xb9, 0xda, 0x9b, 0xca, - 0x9f, 0x5e, 0xd7, 0x8d, 0x1c, 0x37, 0xf0, 0x47, 0x0f, 0x4f, 0x94, 0xaf, 0x3c, 0xdf, 0x68, 0xde, - 0x6c, 0x4d, 0xda, 0xf4, 0x14, 0x22, 0x04, 0x6a, 0x41, 0x4d, 0x51, 0x64, 0x40, 0x6b, 0x51, 0x5d, - 0x6c, 0xcf, 0x7e, 0x26, 0x53, 0x56, 0x34, 0xa4, 0x8d, 0x10, 0xa5, 0x8b, 0x14, 0xb3, 0xe5, 0xc3, - 0x4b, 0xa2, 0x61, 0x72, 0x9e, 0xe3, 0x71, 0xc5, 0x5d, 0xe5, 0x28, 0xc9, 0x44, 0xdc, 0x1b, 0xb1, - 0x43, 0x2a, 0xb3, 0xba, 0xb1, 0x0b, 0x3a, 0x23, 0x5b, 0x87, 0x81, 0x85, 0x81, 0x85, 0x81, 0x2d, - 0x93, 0x81, 0x25, 0x93, 0xac, 0x09, 0xa5, 0x6a, 0x62, 0x89, 0x9a, 0x50, 0xe8, 0xd7, 0x21, 0x49, - 0x6b, 0xd2, 0x2d, 0x75, 0x49, 0xd0, 0x3a, 0xe5, 0x49, 0x42, 0xc9, 0x59, 0x8b, 0xd4, 0xac, 0x7b, - 0xa8, 0x74, 0x49, 0xcb, 0x5a, 0xc7, 0xac, 0x24, 0x92, 0x6d, 0xdb, 0x42, 0x58, 0xc7, 0x05, 0xbb, - 0x0f, 0x86, 0xc7, 0xad, 0x12, 0x81, 0xb8, 0x49, 0x83, 0x74, 0x90, 0x8d, 0x60, 0xd3, 0x1e, 0x50, - 0x1b, 0x50, 0x1b, 0x50, 0x1b, 0x68, 0x31, 0xbd, 0xfd, 0xec, 0xa9, 0x84, 0xce, 0x76, 0x0e, 0x1a, - 0x83, 0xa1, 0x83, 0xa1, 0x83, 0xa1, 0x03, 0x3d, 0x05, 0x3d, 0x35, 0xc6, 0x79, 0xea, 0x8d, 0x33, - 0x30, 0x54, 0xf2, 0xd1, 0x3a, 0x86, 0x98, 0xb0, 0xf7, 0xc4, 0x14, 0x59, 0x31, 0x0b, 0x59, 0x31, - 0x79, 0x0a, 0x7e, 0x99, 0xc9, 0x52, 0x11, 0xdc, 0x7f, 0xe8, 0xde, 0x87, 0x32, 0xce, 0x9f, 0xa8, - 0x32, 0x6b, 0x0a, 0xb9, 0x2a, 0xc8, 0x55, 0x29, 0x04, 0x92, 0x5a, 0x96, 0xab, 0x32, 0x59, 0x31, - 0x74, 0x84, 0x72, 0xda, 0x22, 0x4e, 0xaa, 0x05, 0xab, 0x04, 0xab, 0xcc, 0xfc, 0x40, 0x74, 0x35, - 0xf5, 0x68, 0x0e, 0xa2, 0x5e, 0x99, 0xbc, 0x24, 0x07, 0x52, 0x13, 0x2f, 0x77, 0xf2, 0x65, 0xaf, - 0x63, 0xf9, 0x6b, 0x33, 0x03, 0xba, 0xcc, 0x81, 0x76, 0xb3, 0xa0, 0xdd, 0x3c, 0xe8, 0x34, 0x13, - 0xc4, 0xcc, 0x8b, 0x6a, 0x7f, 0x2e, 0x91, 0xf9, 0x98, 0x36, 0xe8, 0x47, 0xf4, 0xf3, 0x69, 0xb2, - 0x00, 0x48, 0x67, 0xbf, 0x4e, 0xf9, 0x86, 0xda, 0xac, 0xe8, 0x34, 0x2f, 0xda, 0xcd, 0x8c, 0x6e, - 0x73, 0x63, 0xcc, 0xec, 0x18, 0x33, 0x3f, 0x26, 0xcc, 0x10, 0xad, 0x39, 0xd2, 0xa0, 0x00, 0x56, - 0xb4, 0xec, 0x46, 0x5e, 0x63, 0x53, 0xfa, 0xad, 0x49, 0x69, 0x47, 0x1d, 0x93, 0x7e, 0x02, 0x58, - 0xce, 0x34, 0xb4, 0x7d, 0xcb, 0x94, 0xe2, 0x52, 0x90, 0x6f, 0x57, 0x9e, 0x76, 0xf0, 0x9f, 0x17, - 0x2f, 0x3e, 0xd7, 0x9c, 0x73, 0xe6, 0x74, 0x2e, 0x9d, 0xb7, 0xed, 0xbf, 0xeb, 0x2f, 0x9b, 0xcf, - 0x17, 0x87, 0x7f, 0x9f, 0x3e, 0x2f, 0xff, 0xf1, 0xc7, 0xba, 0xaf, 0xd5, 0x5f, 0x9e, 0x3e, 0x5f, - 0x6c, 0xf8, 0x9f, 0xd6, 0xf3, 0xc5, 0x96, 0x6d, 0x9c, 0x3c, 0xbf, 0x58, 0xf9, 0xea, 0xe0, 0xef, - 0x8d, 0x4d, 0x17, 0x34, 0x37, 0x5c, 0x70, 0xbc, 0xe9, 0x82, 0xe3, 0x0d, 0x17, 0x6c, 0xbc, 0xa5, - 0xc6, 0x86, 0x0b, 0x4e, 0x9e, 0x7f, 0xac, 0x7c, 0xff, 0xc5, 0xfa, 0xaf, 0xb6, 0x9e, 0x0f, 0x7f, - 0x6c, 0xfa, 0xbf, 0xd3, 0xe7, 0x1f, 0x17, 0x87, 0x87, 0xff, 0xa0, 0x5f, 0xea, 0xed, 0x92, 0xee, - 0x6b, 0xa5, 0x0c, 0x1b, 0x04, 0xbe, 0xf8, 0xe6, 0x04, 0xec, 0x89, 0xcb, 0xe9, 0xa2, 0xd6, 0x06, - 0x47, 0xd6, 0xf4, 0x05, 0x78, 0x02, 0x78, 0x02, 0x78, 0x02, 0x78, 0x42, 0x36, 0xdb, 0xa3, 0xee, - 0x53, 0x0c, 0x78, 0xb2, 0x11, 0x9e, 0xcc, 0xfb, 0xcf, 0x65, 0xb7, 0xdc, 0x78, 0x3e, 0xfc, 0x9f, - 0xc3, 0xff, 0xdd, 0x27, 0x3f, 0x5a, 0x2a, 0x65, 0x81, 0xb8, 0x4e, 0xc3, 0xb4, 0x5d, 0x7d, 0x31, - 0xd0, 0x69, 0x58, 0x70, 0xfa, 0x89, 0xe4, 0x1c, 0x24, 0xba, 0xe1, 0xa1, 0x28, 0x2d, 0x47, 0xa8, - 0xcf, 0xd0, 0xeb, 0x32, 0xa8, 0xea, 0x06, 0x79, 0x17, 0xf2, 0xae, 0x15, 0xd5, 0xdc, 0x02, 0xce, - 0x3a, 0x92, 0x77, 0x74, 0x94, 0xac, 0xa7, 0xac, 0xe7, 0x76, 0x3b, 0xf6, 0x13, 0xaf, 0x5e, 0x8d, - 0x6d, 0xf9, 0x11, 0xd5, 0x60, 0x97, 0xc3, 0x9c, 0xd3, 0x1c, 0x77, 0xb7, 0x32, 0xba, 0x14, 0xc7, - 0xde, 0xad, 0x8c, 0x2b, 0xb5, 0x51, 0x6f, 0xc0, 0xa8, 0xc3, 0xa8, 0xef, 0xa1, 0x51, 0x47, 0xcc, - 0x0e, 0xa2, 0x18, 0x44, 0x31, 0x88, 0x62, 0x7b, 0x2b, 0x8a, 0x21, 0x66, 0xf7, 0x53, 0x51, 0x0c, - 0x31, 0x3b, 0xc4, 0xec, 0xb4, 0x6b, 0x8d, 0x84, 0x90, 0xd6, 0x8f, 0x1d, 0x19, 0x26, 0x8a, 0x4b, - 0x8d, 0x28, 0x64, 0xda, 0x05, 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x08, 0xd9, 0x6c, 0xa7, - 0x3f, 0xbb, 0x71, 0x05, 0x87, 0xd4, 0x91, 0xb8, 0x41, 0xab, 0x5d, 0x22, 0x71, 0x03, 0x6e, 0x01, - 0x6e, 0x01, 0x6e, 0x01, 0x89, 0x1b, 0x45, 0x71, 0x54, 0x24, 0x6e, 0x68, 0xf2, 0xa3, 0x93, 0xd4, - 0x05, 0x87, 0x36, 0x32, 0xb4, 0x32, 0xbf, 0x97, 0xfa, 0x81, 0xff, 0x84, 0xff, 0x84, 0xff, 0x84, - 0xff, 0x24, 0x9b, 0xed, 0x5c, 0x24, 0x3d, 0x2e, 0x47, 0xf9, 0x63, 0x1a, 0xdd, 0x67, 0x53, 0x43, - 0xdb, 0x6f, 0x44, 0xd2, 0x1b, 0xbc, 0x9c, 0xe7, 0x3d, 0x70, 0x37, 0xa1, 0xf4, 0x1f, 0x74, 0xd4, - 0x55, 0x9a, 0x1a, 0xbd, 0x51, 0xfb, 0x70, 0x2f, 0x70, 0x2f, 0x70, 0x2f, 0x70, 0x2f, 0xf4, 0xf0, - 0x55, 0x8b, 0x81, 0x81, 0x8b, 0x41, 0x2a, 0x3a, 0x75, 0x2a, 0x3a, 0xc1, 0x21, 0x82, 0x74, 0xa3, - 0x53, 0x6c, 0xcd, 0x93, 0xff, 0xc7, 0x9f, 0x48, 0x52, 0x8b, 0xaa, 0xef, 0xfc, 0x58, 0x5d, 0x2a, - 0x45, 0x54, 0x41, 0xe5, 0xc6, 0x17, 0x6f, 0x02, 0x3e, 0x30, 0xdc, 0x71, 0xf5, 0xa2, 0x22, 0x92, - 0x20, 0x20, 0x48, 0xf0, 0xbc, 0x61, 0x8f, 0xf4, 0x8d, 0xbe, 0x97, 0x1e, 0x97, 0xdc, 0xfb, 0xed, - 0x69, 0xdc, 0x24, 0x0e, 0xf4, 0xcc, 0xb8, 0x2a, 0xab, 0x24, 0x29, 0xbc, 0xdb, 0x1e, 0x26, 0xf9, - 0xc7, 0xa4, 0x57, 0x14, 0x4d, 0x2c, 0xd7, 0x7c, 0x28, 0x73, 0xdd, 0xc4, 0x51, 0xde, 0x83, 0xc3, - 0xbc, 0x3e, 0x97, 0xca, 0x8f, 0x79, 0x2f, 0xcf, 0x79, 0x83, 0x53, 0xfc, 0xb4, 0xb6, 0x55, 0x54, - 0x53, 0x44, 0x35, 0xc5, 0x42, 0x58, 0x8e, 0x65, 0xd5, 0x14, 0x89, 0x4a, 0xad, 0xd1, 0x96, 0x58, - 0x43, 0x25, 0xc5, 0x02, 0x45, 0x0d, 0x54, 0x52, 0xac, 0xec, 0x4e, 0x25, 0xc5, 0x21, 0x4a, 0xe8, - 0xb3, 0x40, 0xc3, 0x46, 0xdb, 0x49, 0xcb, 0xd8, 0x6e, 0x5b, 0x3a, 0xbd, 0x13, 0x3b, 0xb3, 0x8a, - 0xd0, 0x33, 0xf7, 0x65, 0xbb, 0x2d, 0xd9, 0x51, 0x1f, 0xcb, 0x6b, 0x9f, 0x72, 0xb3, 0x2d, 0xed, - 0xd1, 0x1f, 0x93, 0x1f, 0x0d, 0x2a, 0xb0, 0x8e, 0xa3, 0x40, 0x34, 0x19, 0xd5, 0x95, 0xe6, 0x35, - 0x1d, 0x36, 0x31, 0x6d, 0x5f, 0xe3, 0xa1, 0x13, 0xc4, 0xcb, 0x6d, 0x59, 0x27, 0xb3, 0x7e, 0x48, - 0x75, 0x9d, 0x70, 0x69, 0x74, 0x6c, 0x4b, 0x1a, 0x91, 0x68, 0xef, 0xd0, 0xa6, 0xff, 0xc0, 0xef, - 0x70, 0xe5, 0xf7, 0x34, 0xec, 0xfb, 0x9f, 0xb6, 0x0c, 0x80, 0x09, 0x80, 0x09, 0x80, 0x09, 0x80, - 0x09, 0x80, 0x09, 0x80, 0x09, 0x80, 0x09, 0x80, 0x09, 0x80, 0xb9, 0x4f, 0x00, 0x33, 0x4e, 0xa2, - 0x88, 0x74, 0x0b, 0xde, 0xac, 0xb0, 0xd4, 0xa4, 0x65, 0xaa, 0x5a, 0x38, 0xb3, 0xc3, 0xd8, 0x3b, - 0x2c, 0x88, 0x01, 0x5c, 0x01, 0x5c, 0x01, 0x5c, 0xf7, 0x0a, 0xb8, 0xd2, 0xef, 0xbf, 0x26, 0xde, - 0x77, 0x6d, 0x7b, 0xb6, 0x9d, 0x3d, 0xf9, 0x59, 0xeb, 0x92, 0x52, 0x48, 0x4a, 0xf8, 0x16, 0x73, - 0x80, 0x3f, 0xcd, 0x0e, 0x3e, 0xd2, 0x9a, 0x8e, 0xe4, 0x49, 0x02, 0x0d, 0x24, 0x09, 0x14, 0xef, - 0xef, 0x90, 0x24, 0xb0, 0x3d, 0xde, 0x44, 0x92, 0x00, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0x70, 0x19, - 0xa1, 0x30, 0x34, 0x5c, 0x52, 0xc1, 0x0f, 0x1a, 0x6e, 0xa1, 0x3a, 0x1f, 0x34, 0xdc, 0xb5, 0x43, - 0x0a, 0x0d, 0x57, 0x5f, 0x6b, 0x48, 0x12, 0xd8, 0xc6, 0xcd, 0x20, 0x49, 0x00, 0x00, 0x13, 0x00, - 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x73, 0x2f, 0x01, 0x26, - 0x92, 0x04, 0x00, 0x5c, 0x01, 0x5c, 0x01, 0x5c, 0x91, 0x24, 0x50, 0x0e, 0x93, 0x8e, 0x24, 0x81, - 0xec, 0x49, 0x02, 0x04, 0xc5, 0x95, 0x50, 0x56, 0x45, 0xe7, 0x08, 0x55, 0x73, 0xe5, 0x51, 0x6c, - 0x5b, 0x60, 0xe7, 0xc3, 0xb0, 0xe7, 0xcb, 0x85, 0x8e, 0x4b, 0x5c, 0xda, 0x25, 0x5f, 0x82, 0x08, - 0x49, 0x62, 0x08, 0x59, 0xf1, 0x96, 0x06, 0x8a, 0xb7, 0xe8, 0xc3, 0x2c, 0x28, 0xde, 0x32, 0xe3, - 0x02, 0xf9, 0x8b, 0xb7, 0x24, 0x03, 0xa3, 0x11, 0x53, 0x96, 0x6f, 0x19, 0xb7, 0x88, 0x02, 0x2e, - 0xc6, 0x68, 0x07, 0x72, 0xb3, 0x90, 0x9b, 0xb5, 0xb1, 0x21, 0x5f, 0x38, 0x9e, 0x1f, 0xbb, 0x4c, - 0x7a, 0xdc, 0x73, 0xa2, 0x6f, 0x2a, 0xd6, 0x91, 0xa4, 0xb5, 0xdc, 0x05, 0x34, 0x09, 0x68, 0x12, - 0xd0, 0x24, 0xf6, 0x48, 0x93, 0x18, 0xbb, 0xfd, 0x56, 0x53, 0x83, 0x2a, 0x71, 0x86, 0x78, 0x1a, - 0x71, 0xe3, 0x88, 0xa7, 0x19, 0x5a, 0x71, 0x8b, 0x43, 0xba, 0x03, 0xf1, 0xb4, 0xfa, 0x59, 0xb3, - 0xd9, 0x3a, 0x6d, 0x36, 0x6b, 0xa7, 0xc7, 0xa7, 0xb5, 0xf3, 0x93, 0x93, 0x7a, 0xab, 0x8e, 0xc8, - 0x1a, 0x79, 0x6b, 0xbb, 0x14, 0x59, 0xf3, 0x85, 0xc3, 0xa5, 0x0c, 0xa5, 0x3e, 0xec, 0x39, 0xd7, - 0x3c, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, - 0x27, 0x70, 0xe7, 0x3e, 0xe3, 0xce, 0x4e, 0x28, 0xbf, 0x8f, 0x44, 0xc9, 0xd0, 0x55, 0x5c, 0x13, - 0xfa, 0x5c, 0xe9, 0x04, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, - 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x54, 0x6b, 0xec, 0x7d, 0xa9, 0x0b, 0xe0, 0x4f, 0xe0, - 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0xcf, 0x7d, - 0xc6, 0x9f, 0x1a, 0x95, 0x4f, 0xe8, 0x9d, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, - 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xfa, 0x54, 0x4e, 0x68, 0x9b, 0xc0, 0x9a, - 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xfb, 0x8d, - 0x35, 0xc3, 0x44, 0x69, 0xdf, 0xd8, 0xbe, 0xa6, 0x0f, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, - 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0xd0, 0xbd, 0x46, 0xa0, 0x3a, 0xb7, - 0xb6, 0x2f, 0xb5, 0x0f, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, - 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0xb9, 0xd7, 0xc8, 0x53, 0xff, 0xe6, 0xf6, 0xb5, 0xbd, 0x00, 0x85, - 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, - 0x02, 0x85, 0x6a, 0x8e, 0xc0, 0x63, 0x7f, 0x3b, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, - 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0xe8, 0x0c, 0x81, 0xea, 0x54, 0x3f, 0xa1, - 0x79, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, - 0x71, 0x02, 0x71, 0x2a, 0x8d, 0x4a, 0x27, 0xf4, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, - 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0x8b, 0xd1, 0x66, 0xa1, 0xc7, 0xc7, 0x5f, - 0x0a, 0x11, 0x2a, 0x36, 0x98, 0x02, 0x34, 0xa7, 0xc8, 0xc7, 0x6e, 0x97, 0xf7, 0x58, 0xc4, 0x54, - 0x77, 0xe0, 0xb1, 0x8e, 0xc2, 0x88, 0x0b, 0x77, 0x88, 0x08, 0x1d, 0x7f, 0xe0, 0xbb, 0x3a, 0xcc, - 0xe5, 0xf1, 0xd1, 0xba, 0x8f, 0x47, 0x71, 0x72, 0x3f, 0xf7, 0xf7, 0xf9, 0xdf, 0x8e, 0xfc, 0xa8, - 0xdf, 0x3a, 0x8a, 0x15, 0x53, 0xfc, 0x68, 0xec, 0x03, 0x29, 0xd0, 0x6f, 0x35, 0x56, 0x32, 0x71, - 0x95, 0x18, 0x7b, 0xd7, 0xeb, 0x49, 0x77, 0x5f, 0xef, 0xe6, 0xfa, 0xfe, 0x7a, 0x1d, 0xf5, 0x5b, - 0x5f, 0x5f, 0x4f, 0x7a, 0x3d, 0x28, 0x66, 0xa4, 0x73, 0x8c, 0x72, 0xd5, 0xeb, 0xba, 0x91, 0xe3, - 0x06, 0xfe, 0x08, 0x7b, 0xe5, 0x1b, 0xe2, 0x29, 0x14, 0x99, 0x6f, 0x34, 0xe7, 0x0c, 0xbc, 0xe2, - 0x1d, 0x96, 0x04, 0x43, 0x5c, 0xd8, 0x61, 0x41, 0xcc, 0xf3, 0xb6, 0x47, 0x63, 0xa4, 0xc9, 0x78, - 0x0c, 0x25, 0x7f, 0x21, 0xe7, 0x2d, 0xd4, 0x7c, 0x45, 0x1b, 0x4f, 0xd1, 0xc6, 0x4f, 0x74, 0xf0, - 0x92, 0x62, 0x2d, 0x3a, 0x19, 0xff, 0x98, 0xce, 0xb6, 0xfb, 0x30, 0x0c, 0x38, 0x13, 0x14, 0xf3, - 0x6d, 0xbc, 0x38, 0xeb, 0x75, 0x1b, 0x0d, 0x69, 0x12, 0x39, 0xcc, 0xf3, 0xa4, 0xe3, 0x71, 0xc5, - 0x5d, 0xe5, 0x28, 0xc9, 0x44, 0xdc, 0xf3, 0x09, 0x34, 0x9e, 0x99, 0x59, 0xdd, 0xd8, 0x05, 0x9d, - 0x91, 0xad, 0xc3, 0xc0, 0xc2, 0xc0, 0xc2, 0xc0, 0x96, 0xc9, 0xc0, 0x26, 0xbe, 0x50, 0xc7, 0x0d, - 0x42, 0xfb, 0x7a, 0x4a, 0xd0, 0x14, 0xad, 0x8a, 0x43, 0x28, 0x87, 0xe9, 0x50, 0x6d, 0x34, 0x51, - 0x7b, 0x5d, 0x2a, 0x8d, 0x4e, 0xde, 0x4e, 0xa8, 0xca, 0x68, 0x51, 0x63, 0x74, 0x0f, 0x55, 0xb3, - 0x71, 0xde, 0x3c, 0x6f, 0x9d, 0x36, 0xce, 0x4f, 0x2c, 0x1a, 0xb3, 0x92, 0x68, 0x19, 0x6d, 0x0b, - 0x61, 0x1d, 0x17, 0xec, 0x3e, 0xe0, 0x1e, 0x1d, 0x88, 0x9b, 0x34, 0x48, 0x07, 0xd9, 0x06, 0xde, - 0x18, 0xa8, 0x0d, 0xa8, 0x0d, 0xa8, 0x0d, 0xb4, 0xb8, 0x74, 0xf6, 0xb3, 0xa7, 0x12, 0x3a, 0xdb, - 0x39, 0x68, 0x0c, 0x86, 0x0e, 0x86, 0x0e, 0x86, 0x0e, 0xf4, 0x14, 0xf4, 0xd4, 0x18, 0xe7, 0xa9, - 0x37, 0xce, 0xc0, 0x50, 0xc9, 0x47, 0xeb, 0x18, 0x62, 0xc2, 0xde, 0x13, 0xd3, 0x03, 0x83, 0x13, - 0x9c, 0x2a, 0x98, 0xaf, 0x3b, 0x88, 0x9f, 0xcd, 0xc3, 0xa6, 0x7f, 0x95, 0x19, 0x5e, 0x63, 0x35, - 0x11, 0x22, 0xe9, 0xdd, 0x73, 0x99, 0x43, 0x10, 0x98, 0xf9, 0xcd, 0x59, 0x5b, 0x19, 0x07, 0x74, - 0xc2, 0x0b, 0x32, 0x5e, 0x9e, 0x17, 0xc3, 0x52, 0x60, 0xd7, 0x05, 0xcc, 0xda, 0xc9, 0x01, 0x22, - 0xa8, 0xb0, 0x2a, 0x39, 0x46, 0x25, 0xc7, 0xa6, 0x2b, 0x98, 0xb4, 0x53, 0xb5, 0xc4, 0x00, 0x5d, - 0xf9, 0x32, 0xdf, 0x64, 0x71, 0x27, 0x33, 0x96, 0x88, 0x4f, 0x8e, 0xdb, 0xa3, 0xa1, 0x94, 0xf5, - 0x5d, 0xa7, 0x94, 0x1d, 0x50, 0x4a, 0x1d, 0x94, 0xb2, 0x63, 0x3b, 0xa5, 0xcc, 0xbb, 0xac, 0xa7, - 0x0d, 0x51, 0x69, 0xed, 0x2b, 0xb3, 0x97, 0x46, 0x73, 0x9f, 0x3d, 0x30, 0x6d, 0x4e, 0x9a, 0x26, - 0x1a, 0x67, 0xdf, 0x5e, 0x9b, 0x0e, 0xf6, 0xda, 0x14, 0xb1, 0xd7, 0xa6, 0x83, 0xbd, 0x36, 0x69, - 0x67, 0x2b, 0x9d, 0xb8, 0xbf, 0x82, 0x22, 0xea, 0x48, 0x3c, 0xaf, 0x54, 0xaa, 0x6f, 0x1e, 0x87, - 0x52, 0x43, 0x7e, 0xf9, 0x8e, 0x1e, 0x66, 0x84, 0xae, 0xc3, 0x1f, 0xd5, 0x85, 0xe2, 0x01, 0xef, - 0x71, 0x25, 0x9f, 0x9c, 0x50, 0x38, 0x6e, 0x77, 0xa8, 0x37, 0x6a, 0x81, 0x1e, 0x43, 0x17, 0xa3, - 0x01, 0x7b, 0x14, 0x0d, 0x3b, 0xda, 0x7b, 0xb3, 0x37, 0x61, 0xc6, 0xf4, 0x8f, 0xc6, 0x8c, 0xc3, - 0xc2, 0x40, 0xde, 0xf4, 0x99, 0x1c, 0xc9, 0x3b, 0x74, 0x14, 0x6c, 0xb1, 0x59, 0x30, 0x31, 0x30, - 0x31, 0x30, 0xb1, 0xe2, 0x99, 0x18, 0x91, 0xd0, 0xa2, 0x47, 0x70, 0x21, 0x5e, 0xee, 0xe0, 0x4b, - 0xe0, 0x4b, 0xe0, 0x4b, 0x94, 0xe6, 0x63, 0x15, 0x33, 0xd0, 0x4f, 0xab, 0x15, 0xfc, 0x40, 0x3d, - 0xad, 0x34, 0xc5, 0xd4, 0xa9, 0x8d, 0x8c, 0x4e, 0x63, 0xa3, 0xdd, 0xe8, 0xe8, 0x36, 0x3e, 0xc6, - 0x8c, 0x90, 0x31, 0x63, 0x64, 0xc2, 0x28, 0xd1, 0x1a, 0x27, 0x62, 0x23, 0xa5, 0x4f, 0xdc, 0x59, - 0x99, 0xed, 0x01, 0x67, 0x9d, 0xfc, 0xa4, 0xe4, 0xa7, 0xc8, 0xe5, 0x54, 0x43, 0xdb, 0xb7, 0x53, - 0x06, 0x3b, 0x98, 0x16, 0x17, 0x73, 0xcc, 0x74, 0xe9, 0x0f, 0xe3, 0xdf, 0x87, 0x3b, 0xdc, 0x4b, - 0x5a, 0x85, 0x81, 0x32, 0x97, 0x67, 0x9e, 0x97, 0xeb, 0xf3, 0x47, 0x0b, 0xbd, 0xc0, 0x25, 0xc1, - 0x25, 0xc1, 0x25, 0xc1, 0x25, 0xc1, 0x25, 0x6d, 0xe9, 0x92, 0x3e, 0xcf, 0x5c, 0xd2, 0x3f, 0xdd, - 0x44, 0x4a, 0x2e, 0xd4, 0x8b, 0xc3, 0xa3, 0x57, 0xaf, 0x66, 0x62, 0x6b, 0x7b, 0x7c, 0xc9, 0xa2, - 0xe6, 0xba, 0xfa, 0xb7, 0x69, 0xcb, 0x1e, 0x7f, 0x2c, 0xad, 0x77, 0x2b, 0x15, 0xfb, 0x23, 0x0b, - 0xb9, 0x4c, 0x7e, 0xf4, 0x09, 0x09, 0xda, 0x43, 0x30, 0x1b, 0x8c, 0x27, 0x61, 0x28, 0x66, 0xad, - 0xd5, 0x2c, 0x9b, 0xb0, 0xd0, 0xa6, 0x12, 0x5a, 0x69, 0x43, 0x35, 0x33, 0x48, 0x67, 0x22, 0x64, - 0xb3, 0x10, 0xa1, 0x20, 0x09, 0xe0, 0xd0, 0x0d, 0xd2, 0x33, 0x49, 0x9d, 0x2b, 0xa6, 0x38, 0xbd, - 0xd4, 0x3b, 0x6a, 0xb6, 0xe4, 0x4a, 0x6f, 0x03, 0x4a, 0xaf, 0x3d, 0x88, 0x16, 0x4a, 0x2f, 0x94, - 0x5e, 0xd0, 0x6a, 0xd0, 0x6a, 0xd0, 0x6a, 0xd0, 0x6a, 0xd0, 0x6a, 0x28, 0xbd, 0x9b, 0x11, 0x2d, - 0x94, 0x5e, 0xb8, 0x24, 0xb8, 0x24, 0xb8, 0x24, 0xb8, 0xa4, 0xd2, 0xba, 0x24, 0x28, 0xbd, 0xc5, - 0xb1, 0xbf, 0x1d, 0x92, 0xe3, 0x72, 0xec, 0x18, 0xd7, 0xa0, 0xc6, 0xa1, 0x56, 0x7f, 0xae, 0xd1, - 0x34, 0x5b, 0xb5, 0xff, 0xcf, 0xe9, 0x5d, 0x7c, 0x9d, 0x7e, 0xed, 0x03, 0xef, 0xd8, 0x98, 0x9b, - 0x4f, 0x23, 0xe1, 0x92, 0x4a, 0xb7, 0xe4, 0xb9, 0xf8, 0x0d, 0xe4, 0xe2, 0x17, 0x0f, 0x39, 0x91, - 0x8b, 0xbf, 0xf5, 0x03, 0x61, 0x57, 0x34, 0x76, 0x45, 0x97, 0x8e, 0xf3, 0x22, 0xf6, 0x53, 0x04, - 0xa7, 0xc5, 0xae, 0xe8, 0xdc, 0x28, 0x02, 0xbb, 0xa2, 0xad, 0x85, 0xf8, 0x04, 0x14, 0x0d, 0x15, - 0xd6, 0xe8, 0xc7, 0xa5, 0x9a, 0x8b, 0x6f, 0xa4, 0x27, 0x59, 0xc6, 0xca, 0xba, 0x1d, 0x68, 0x1c, - 0xe9, 0xea, 0x65, 0xf2, 0x30, 0x70, 0x12, 0x43, 0x38, 0x96, 0x3e, 0x53, 0x2e, 0x67, 0xc5, 0xb8, - 0x6d, 0xe3, 0x3c, 0x5b, 0x29, 0x66, 0xd1, 0xc5, 0x60, 0x42, 0x64, 0x2d, 0x3d, 0x77, 0xc5, 0x63, - 0x57, 0xfa, 0xd1, 0x78, 0xaa, 0x57, 0x2f, 0x3d, 0x2f, 0xae, 0x30, 0xcf, 0x93, 0x3c, 0x8e, 0x2b, - 0x2c, 0x51, 0xe1, 0x68, 0xba, 0x26, 0x72, 0xb8, 0x18, 0x2a, 0x2a, 0xac, 0xa8, 0x2e, 0xaf, 0xdc, - 0xb3, 0x98, 0x57, 0xae, 0x6f, 0x2b, 0xbd, 0xd0, 0xe3, 0x01, 0x8a, 0xde, 0x8d, 0x2b, 0x0a, 0x3b, - 0xfc, 0x51, 0xa1, 0xf0, 0x5d, 0x16, 0x88, 0x36, 0x7a, 0x75, 0xfb, 0x52, 0xfc, 0x6e, 0xb2, 0xac, - 0xe8, 0x74, 0x9e, 0x69, 0x8b, 0xb9, 0xcf, 0xa2, 0x58, 0x30, 0x06, 0x1f, 0xc3, 0xc8, 0x09, 0x78, - 0x9f, 0x07, 0x15, 0x37, 0x14, 0x8a, 0xf9, 0x82, 0xcb, 0x4a, 0x27, 0x94, 0x95, 0xeb, 0xdb, 0x7e, - 0xab, 0x42, 0xd5, 0xe7, 0xbe, 0x94, 0x7a, 0xc8, 0x6b, 0x1e, 0x20, 0x31, 0xe9, 0x32, 0x1f, 0x44, - 0x94, 0xc0, 0xb4, 0xf9, 0xd2, 0x0c, 0xa8, 0xda, 0x69, 0x01, 0x55, 0x3e, 0xc8, 0xac, 0x0f, 0x2a, - 0x67, 0x98, 0xce, 0xdb, 0xe3, 0xe2, 0x74, 0xb3, 0x6e, 0xfb, 0x11, 0x48, 0xe1, 0x9c, 0x32, 0x06, - 0x0d, 0x72, 0x05, 0x09, 0x32, 0x5a, 0xed, 0xcc, 0x41, 0x80, 0x3c, 0x56, 0x39, 0xb7, 0x06, 0x97, - 0xd7, 0xe2, 0x92, 0x59, 0x58, 0x32, 0x8b, 0x4a, 0xa1, 0x91, 0xe9, 0xa5, 0x67, 0x59, 0x41, 0x56, - 0x95, 0x79, 0x3d, 0x5f, 0x38, 0x83, 0x39, 0x9d, 0xc4, 0xf9, 0x4b, 0x7b, 0x2f, 0xb4, 0x96, 0x8f, - 0xe7, 0xd4, 0x50, 0xdc, 0x1b, 0xc5, 0xbd, 0x6d, 0xe0, 0x37, 0xb9, 0x65, 0xe5, 0xb9, 0xb8, 0x54, - 0xd2, 0xe3, 0x23, 0xe5, 0x20, 0xcf, 0x9c, 0x99, 0xf8, 0x9a, 0x66, 0x8e, 0x36, 0xde, 0x88, 0xa4, - 0x37, 0x78, 0x28, 0xb3, 0xaf, 0x32, 0xf7, 0x4e, 0x4c, 0xba, 0x55, 0xa2, 0x6d, 0xa7, 0x25, 0xfd, - 0xce, 0x4a, 0xa2, 0x9d, 0x94, 0x39, 0x34, 0x7a, 0xf2, 0xd7, 0x1e, 0x46, 0xe3, 0x75, 0xc0, 0x02, - 0xbc, 0x6e, 0xbc, 0x6e, 0x8a, 0xd7, 0x9d, 0xe9, 0xca, 0xb6, 0x91, 0xc3, 0x55, 0xdc, 0x30, 0x19, - 0x90, 0x24, 0x02, 0xfc, 0x35, 0x6d, 0x09, 0x1a, 0x33, 0xb0, 0xd7, 0x1e, 0x60, 0xaf, 0xfc, 0x07, - 0xab, 0x30, 0x29, 0x7d, 0x2e, 0x1d, 0x25, 0x99, 0x88, 0xfd, 0x81, 0x09, 0x8c, 0x09, 0x4f, 0x59, - 0x59, 0xd3, 0x38, 0x4e, 0xf1, 0xd4, 0xbe, 0x70, 0xa9, 0x17, 0xb0, 0xb6, 0x85, 0xac, 0x6d, 0x41, - 0xeb, 0x58, 0xd8, 0xf9, 0x16, 0x38, 0x01, 0xea, 0xa9, 0xe8, 0x39, 0xc5, 0x73, 0xec, 0x32, 0x5b, - 0x4d, 0xc2, 0x83, 0x3c, 0xcf, 0x70, 0x90, 0x67, 0x21, 0x76, 0x6d, 0xa5, 0x59, 0x1b, 0x8f, 0x86, - 0xb4, 0xe4, 0x14, 0x4f, 0x6d, 0x67, 0xae, 0x9e, 0x35, 0x9b, 0xad, 0xd3, 0x66, 0xb3, 0x76, 0x7a, - 0x7c, 0x5a, 0x3b, 0x3f, 0x39, 0xa9, 0xb7, 0xea, 0x27, 0x38, 0xd8, 0x53, 0x3f, 0x71, 0xa1, 0xb4, - 0xd2, 0x38, 0xc4, 0x64, 0xf7, 0x0f, 0x31, 0x29, 0xe8, 0x2c, 0x0e, 0xe7, 0x5e, 0x86, 0xcc, 0x73, - 0x59, 0xac, 0x9c, 0xe8, 0x9b, 0x8a, 0x29, 0xcf, 0xe3, 0x58, 0x6e, 0x1a, 0x50, 0x1d, 0x50, 0x1d, - 0x50, 0x1d, 0x50, 0x1d, 0x50, 0x1d, 0x50, 0x1d, 0x50, 0x1d, 0x50, 0xbd, 0x9c, 0x50, 0xbd, 0x28, - 0x1c, 0xe6, 0xf9, 0xb1, 0xcb, 0xa4, 0x47, 0x8b, 0xc0, 0xa6, 0x8d, 0x02, 0x7b, 0x01, 0x7b, 0x01, - 0x7b, 0x01, 0x7b, 0x01, 0x7b, 0x01, 0x7b, 0x01, 0x7b, 0x01, 0x7b, 0x01, 0x7b, 0xcd, 0x63, 0x2f, - 0x2e, 0x65, 0x28, 0x69, 0x91, 0xd7, 0xb8, 0x49, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, - 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0xae, 0x79, 0xdc, 0xd5, 0x71, 0x63, 0x1d, - 0xd8, 0x6b, 0xae, 0x59, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, - 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0xaf, 0x79, 0xfc, 0xd5, 0x4b, 0x02, 0xe5, 0xeb, 0xc9, 0xfd, 0x5a, - 0x6a, 0x1a, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, - 0x38, 0x0c, 0x38, 0x6c, 0x1e, 0x87, 0x85, 0xae, 0xe2, 0xc4, 0xf8, 0x6b, 0xdc, 0x24, 0x70, 0x17, - 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0xd7, - 0x3c, 0xee, 0x22, 0x57, 0xbd, 0xa0, 0x75, 0x01, 0x73, 0x01, 0x73, 0x01, 0x73, 0x01, 0x73, 0x01, - 0x73, 0x01, 0x73, 0x01, 0x73, 0x01, 0x73, 0xad, 0x60, 0xae, 0x44, 0x68, 0x8a, 0x38, 0x2e, 0x34, - 0x0c, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, - 0x06, 0x0c, 0xb6, 0x88, 0xc1, 0xbe, 0x89, 0xf0, 0xbb, 0x70, 0x22, 0x19, 0xaa, 0x90, 0x1a, 0x85, - 0x2d, 0x34, 0x0d, 0x1c, 0x06, 0x1c, 0x06, 0x1c, 0x06, 0x1c, 0x06, 0x1c, 0x06, 0x1c, 0x06, 0x1c, - 0x06, 0x1c, 0x06, 0x1c, 0x36, 0x1d, 0x96, 0x80, 0xc5, 0xca, 0x71, 0x03, 0xce, 0x24, 0x1d, 0x00, - 0x9b, 0x6b, 0x13, 0xc8, 0x0b, 0xc8, 0x0b, 0xc8, 0xab, 0x44, 0xc8, 0x4b, 0xf9, 0x3d, 0xae, 0x7c, - 0xf7, 0x5b, 0x5c, 0x3a, 0xec, 0xf5, 0xa7, 0x18, 0xf9, 0x85, 0xaa, 0x60, 0x22, 0x8c, 0xb9, 0x1b, - 0x8a, 0xdc, 0x15, 0x03, 0x81, 0xe9, 0x80, 0xe9, 0x80, 0xe9, 0x80, 0xe9, 0x8a, 0xc3, 0x74, 0x38, - 0x72, 0x81, 0x0a, 0x26, 0xe0, 0xc8, 0x05, 0x4a, 0xd8, 0x1f, 0x26, 0x4a, 0xdb, 0x99, 0x0b, 0x6b, - 0xda, 0x06, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x28, 0x11, 0x0d, 0x80, 0x00, 0x0b, 0xb0, 0x0e, 0xb0, - 0x0e, 0xb0, 0x0e, 0xb0, 0x4e, 0xd1, 0x7f, 0x5e, 0x24, 0x46, 0x7f, 0xea, 0xc2, 0x42, 0xab, 0x40, - 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, 0x5f, 0x40, - 0x5f, 0x0b, 0xe8, 0x8b, 0xba, 0xf6, 0xef, 0x5c, 0x9b, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, - 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x0b, 0xc8, 0x4b, 0x57, 0xe5, - 0xdf, 0x35, 0x6d, 0x03, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, - 0x89, 0x01, 0x89, 0x01, 0x89, 0x2d, 0x20, 0x31, 0xea, 0xda, 0xbf, 0x73, 0x6d, 0x02, 0x79, 0x01, - 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x2d, - 0x20, 0x2f, 0x7a, 0xe5, 0x0b, 0x7a, 0x17, 0x50, 0x17, 0x50, 0x17, 0x50, 0x17, 0x50, 0x17, 0x50, - 0x17, 0x50, 0x17, 0x50, 0x17, 0x50, 0xd7, 0x2a, 0xea, 0xd2, 0x53, 0xff, 0x77, 0xa5, 0x65, 0xa0, - 0x30, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0x30, 0xa0, 0xb0, 0x5d, - 0x43, 0x61, 0x07, 0x06, 0xe7, 0x7c, 0xfe, 0x62, 0x28, 0x39, 0x51, 0xde, 0x6a, 0xf1, 0x93, 0x30, - 0xe2, 0x92, 0x0d, 0xe6, 0x16, 0x0b, 0xf2, 0x42, 0x3d, 0xf2, 0x62, 0x27, 0x44, 0x45, 0x4e, 0x72, - 0x18, 0x28, 0xbc, 0x6e, 0x53, 0x2b, 0xaa, 0x9d, 0x71, 0x45, 0x5d, 0x0a, 0x11, 0xaa, 0xe1, 0x1b, - 0xcd, 0xe5, 0x38, 0xaa, 0xb1, 0xdb, 0xe5, 0x3d, 0x16, 0x31, 0xd5, 0x1d, 0x3c, 0xfd, 0x51, 0x18, - 0x71, 0xe1, 0x0e, 0x39, 0x87, 0xe3, 0x0f, 0xd0, 0x56, 0x87, 0xb9, 0x3c, 0x3e, 0x5a, 0xf7, 0xf1, - 0x28, 0x4e, 0xee, 0xe7, 0xfe, 0x3e, 0xff, 0xdb, 0x51, 0xac, 0x98, 0xe2, 0x47, 0x63, 0xc0, 0x96, - 0x87, 0x4a, 0x55, 0x63, 0x25, 0x13, 0x57, 0x89, 0x31, 0x04, 0xbc, 0x9e, 0xf4, 0xf0, 0xf5, 0x6e, - 0xae, 0xbb, 0xaf, 0xaf, 0x27, 0x1d, 0x1d, 0x98, 0x19, 0xb7, 0x0c, 0x0b, 0xab, 0xea, 0xf1, 0xd8, - 0x95, 0x7e, 0x94, 0x6b, 0xc0, 0xa6, 0x50, 0x78, 0xbe, 0xb1, 0x8c, 0xf3, 0x27, 0x1f, 0x38, 0xc8, - 0xcd, 0x4b, 0x29, 0xf8, 0x28, 0x19, 0x0f, 0xa5, 0xe2, 0x9f, 0xe4, 0xbc, 0x93, 0x9c, 0x6f, 0x52, - 0xf2, 0x4c, 0xb3, 0x08, 0x22, 0x37, 0x9f, 0x9c, 0xce, 0x96, 0x58, 0x49, 0x5f, 0x3c, 0xe4, 0x99, - 0x2e, 0xe3, 0xb5, 0x53, 0x3f, 0x2b, 0xb1, 0xbd, 0xe1, 0x82, 0xdd, 0x07, 0xdc, 0xcb, 0x6f, 0x6b, - 0x26, 0x0d, 0x65, 0x1c, 0xb7, 0x2b, 0xde, 0x61, 0x49, 0x30, 0x9c, 0x6f, 0x83, 0xe9, 0x0b, 0x73, - 0x05, 0x73, 0x05, 0x73, 0x95, 0x66, 0xb6, 0xdc, 0x87, 0x61, 0xc0, 0x99, 0xa0, 0xb0, 0x57, 0xf5, - 0x12, 0xdb, 0x2b, 0xbf, 0xe3, 0x0b, 0x8f, 0x3f, 0xe6, 0xb7, 0x57, 0x93, 0x86, 0x60, 0x68, 0x60, - 0x68, 0x60, 0x68, 0x52, 0xcc, 0x96, 0xc4, 0x17, 0xea, 0xb8, 0x41, 0x60, 0x67, 0x4e, 0x73, 0x34, - 0x41, 0x23, 0xa6, 0x13, 0x44, 0x1d, 0x28, 0xc5, 0x73, 0x62, 0x25, 0x96, 0x5a, 0x2c, 0xd7, 0x21, - 0xb3, 0x12, 0x88, 0xe3, 0xa4, 0xa2, 0xb8, 0xae, 0x21, 0x68, 0x36, 0xce, 0x9b, 0xe7, 0xad, 0xd3, - 0xc6, 0xf9, 0x49, 0x89, 0xc7, 0xa2, 0x20, 0x89, 0xb9, 0xbd, 0xe7, 0x12, 0x33, 0x7d, 0x7d, 0x6d, - 0x48, 0xcd, 0x5b, 0xbc, 0x76, 0x28, 0xfb, 0x78, 0xdd, 0xc4, 0xaf, 0xfb, 0xc0, 0x8c, 0xf9, 0xcb, - 0xc4, 0x9b, 0x88, 0x58, 0x53, 0x1e, 0xce, 0x34, 0xa7, 0xf1, 0xd4, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, - 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0x6c, 0xe2, 0x5d, 0x46, 0xe0, 0xca, 0xe8, - 0x7c, 0xc9, 0xee, 0xd8, 0xda, 0xe4, 0x04, 0x2d, 0xf3, 0x8d, 0x01, 0x76, 0x00, 0x76, 0x00, 0x76, - 0xa4, 0x98, 0x2d, 0x34, 0xa7, 0x49, 0x12, 0x24, 0x52, 0x53, 0x9f, 0x1e, 0x09, 0x2c, 0x03, 0x2c, - 0x63, 0x15, 0x96, 0xd1, 0x97, 0x48, 0x0d, 0x54, 0x03, 0x35, 0xd9, 0x46, 0xbd, 0x0d, 0xf2, 0x26, - 0x5e, 0x37, 0xd4, 0xe4, 0x9c, 0xe6, 0x2f, 0x13, 0x3d, 0x0b, 0x1f, 0x7c, 0x97, 0x05, 0x04, 0xd4, - 0x6c, 0xdc, 0x10, 0x68, 0x19, 0x68, 0x19, 0x68, 0x59, 0x8a, 0xd9, 0x52, 0x7c, 0xba, 0x1f, 0x10, - 0x13, 0x5c, 0x38, 0x5c, 0x38, 0x5e, 0x37, 0x10, 0xd3, 0x36, 0x4f, 0x38, 0xde, 0x9a, 0x96, 0x13, - 0x2e, 0x0d, 0x5b, 0x01, 0x56, 0x02, 0x56, 0x02, 0x56, 0x4a, 0x31, 0x5b, 0x0a, 0xdf, 0xc9, 0x05, - 0xa8, 0x04, 0xdf, 0x0d, 0xdf, 0x6d, 0xad, 0xef, 0x1e, 0xbc, 0x7e, 0x27, 0x56, 0x4c, 0x25, 0x71, - 0x7e, 0x17, 0x3e, 0xdf, 0x18, 0x3c, 0x39, 0x3c, 0x39, 0x3c, 0x79, 0x8a, 0xd9, 0xc2, 0x45, 0xd2, - 0x1b, 0x9b, 0x42, 0x0a, 0x77, 0xde, 0xcc, 0xd1, 0xc6, 0x1b, 0x91, 0xf4, 0x06, 0x0f, 0xf5, 0x0c, - 0x48, 0x00, 0x48, 0x00, 0x48, 0x80, 0xd7, 0x0d, 0x04, 0xa6, 0xa3, 0x9f, 0x94, 0x93, 0x20, 0x6f, - 0xbd, 0x23, 0x8d, 0x75, 0x8e, 0xd2, 0x8d, 0xcc, 0xf6, 0x6f, 0x29, 0xc5, 0x1b, 0xaa, 0xf6, 0x03, - 0x96, 0xfe, 0xbd, 0x4c, 0xbd, 0xef, 0xf0, 0xea, 0x94, 0xe3, 0x31, 0x71, 0xb5, 0x29, 0x2f, 0xcb, - 0x8a, 0x51, 0xf3, 0x60, 0xd3, 0x79, 0x4c, 0x9a, 0xe1, 0x51, 0x29, 0xd0, 0x28, 0x19, 0x0a, 0x25, - 0x43, 0x9f, 0xcb, 0xa8, 0x73, 0xf8, 0x62, 0x4a, 0xb6, 0xe6, 0xaf, 0x7c, 0x99, 0x6d, 0xc0, 0xdd, - 0xc9, 0x2c, 0xcb, 0xc9, 0xe9, 0xc6, 0xed, 0xe4, 0xa3, 0x73, 0xf5, 0x1d, 0xa1, 0x73, 0x19, 0x97, - 0x0e, 0x08, 0x5d, 0xb6, 0xa5, 0x55, 0x0c, 0xa5, 0xcb, 0xba, 0xe4, 0x16, 0x3c, 0x91, 0xe3, 0x7b, - 0x74, 0x85, 0xd9, 0x27, 0x0d, 0xa2, 0x1e, 0xbb, 0x81, 0x45, 0x4a, 0xbd, 0x58, 0xb5, 0x2d, 0x5a, - 0x6d, 0x8b, 0x57, 0xcf, 0x22, 0xce, 0xb7, 0x98, 0x09, 0x88, 0x53, 0x45, 0x4f, 0x4d, 0xf6, 0x44, - 0xe4, 0x53, 0x6c, 0x56, 0x7c, 0xe5, 0x39, 0x41, 0x5b, 0xe3, 0xc7, 0x2c, 0x5d, 0x3d, 0x76, 0x5a, - 0x8b, 0xb6, 0xee, 0xf5, 0xb5, 0x08, 0x9b, 0xa4, 0x2d, 0x6b, 0x4f, 0xff, 0x3a, 0xa7, 0x37, 0xaa, - 0xa3, 0xcc, 0x3d, 0xb1, 0xdb, 0xd8, 0xd8, 0xfc, 0x74, 0x0b, 0x80, 0xa6, 0xf6, 0x35, 0x16, 0x50, - 0x27, 0x32, 0x4a, 0xeb, 0x87, 0x54, 0x43, 0x39, 0x7c, 0xd3, 0x43, 0xda, 0xac, 0x9d, 0x37, 0x2d, - 0x1e, 0xd5, 0x83, 0x72, 0xb6, 0xd6, 0x3e, 0x28, 0xd1, 0x9c, 0xd5, 0xe0, 0x1b, 0xfe, 0xeb, 0x8b, - 0xff, 0xea, 0xf1, 0x0d, 0xf5, 0x33, 0xc2, 0x36, 0x6f, 0x99, 0x52, 0x5c, 0x0a, 0x72, 0xf7, 0x50, - 0xfd, 0xcf, 0x8b, 0x66, 0xed, 0xfc, 0x73, 0xcd, 0x69, 0xb6, 0x7f, 0x34, 0x6b, 0x9f, 0x6b, 0xce, - 0x59, 0xfb, 0x73, 0xcd, 0x39, 0x6f, 0xff, 0xf8, 0x5c, 0x77, 0x8e, 0x47, 0x1f, 0xff, 0x3e, 0x7e, - 0x1e, 0xfc, 0x76, 0x3e, 0xfe, 0xad, 0xfe, 0xb2, 0x31, 0xfe, 0xfd, 0xf0, 0xcb, 0x97, 0x57, 0x2f, - 0x72, 0x5c, 0xfe, 0xe3, 0xcb, 0x97, 0xff, 0x39, 0xfc, 0x47, 0xb5, 0x6c, 0x53, 0x15, 0x27, 0x4c, - 0x6c, 0x07, 0xd7, 0xcb, 0x5c, 0x0f, 0x7f, 0x80, 0xf8, 0x8e, 0xc6, 0x62, 0x52, 0x99, 0x6b, 0x46, - 0x3f, 0x48, 0x1e, 0xc7, 0x4e, 0x8f, 0x45, 0x91, 0x2f, 0x08, 0xe4, 0xb3, 0xa5, 0xf6, 0x20, 0xa3, - 0x41, 0x46, 0x83, 0x8c, 0xb6, 0x5d, 0x03, 0x39, 0x15, 0xec, 0x95, 0x89, 0x97, 0x4b, 0xc9, 0x26, - 0x5a, 0x8a, 0x10, 0xd1, 0x20, 0xa2, 0xd9, 0x2f, 0xa2, 0xe5, 0x5d, 0xda, 0xd3, 0x86, 0x54, 0x44, - 0x20, 0x93, 0xaf, 0x4c, 0xdf, 0x61, 0xab, 0x2f, 0x4b, 0x59, 0xef, 0x80, 0x6a, 0xd9, 0xeb, 0x58, - 0xfe, 0x1a, 0xcd, 0x80, 0x2e, 0x73, 0xa0, 0xdd, 0x2c, 0x68, 0x37, 0x0f, 0x7a, 0xcd, 0x04, 0xad, - 0xf8, 0x40, 0x24, 0x19, 0xd0, 0x69, 0xf0, 0x2b, 0x33, 0xd6, 0xf7, 0xb8, 0x50, 0xbe, 0x7a, 0x92, - 0xbc, 0xa3, 0x43, 0x3e, 0x20, 0x3c, 0xdb, 0xb1, 0x7a, 0x3d, 0xbe, 0xd5, 0xdf, 0x58, 0xac, 0x61, - 0x3d, 0x4c, 0x5e, 0xc8, 0xc7, 0xdb, 0xeb, 0xab, 0xaf, 0x1f, 0xff, 0x7d, 0xfb, 0xe6, 0xae, 0xaa, - 0xe3, 0x08, 0xcc, 0x98, 0x5c, 0xfd, 0xa8, 0x68, 0x11, 0xc8, 0x57, 0xdf, 0x49, 0xed, 0xaf, 0xb3, - 0xb3, 0xcb, 0xb3, 0xaa, 0x0d, 0x52, 0xb0, 0x89, 0xd7, 0x71, 0xf9, 0xc7, 0xbf, 0xf1, 0x2e, 0xa6, - 0x53, 0xe3, 0xbc, 0x5e, 0xab, 0xe1, 0x75, 0xcc, 0x56, 0x0a, 0x5e, 0xc7, 0xc2, 0xec, 0x68, 0x68, - 0x79, 0x1d, 0xa4, 0x2d, 0xb6, 0x77, 0xee, 0x90, 0x60, 0x8a, 0x4a, 0x68, 0x54, 0x89, 0x39, 0x2b, - 0x33, 0x83, 0x36, 0x9c, 0x0d, 0xd2, 0x01, 0xd2, 0x01, 0xd2, 0x61, 0x0d, 0xe9, 0x40, 0x2e, 0x0b, - 0xe9, 0x9c, 0x44, 0x2e, 0xcb, 0xe6, 0xf6, 0x91, 0xcb, 0x52, 0xd8, 0x90, 0x22, 0x97, 0x45, 0x47, - 0x6b, 0xed, 0x5d, 0x43, 0x97, 0xb1, 0x62, 0xee, 0x37, 0x67, 0x34, 0x9e, 0x9a, 0x70, 0xe6, 0x42, - 0x17, 0x40, 0x9c, 0x40, 0x9c, 0x40, 0x9c, 0xfb, 0x88, 0x38, 0x35, 0x98, 0x81, 0x0a, 0x51, 0x01, - 0x81, 0x95, 0x36, 0xf3, 0x15, 0x14, 0xd0, 0x60, 0xee, 0x0b, 0x0d, 0x9f, 0x12, 0xe5, 0x69, 0x4d, - 0xdb, 0xd3, 0x97, 0xaf, 0xb5, 0x98, 0xbd, 0x94, 0x2b, 0x7d, 0x2b, 0xff, 0xab, 0xcf, 0xf1, 0xda, - 0xab, 0xa3, 0x5d, 0xca, 0x64, 0xa9, 0x24, 0xa3, 0xe6, 0x4a, 0x96, 0x49, 0xd2, 0x40, 0x26, 0x49, - 0x19, 0x7c, 0x29, 0x32, 0x49, 0x52, 0x3c, 0x12, 0x32, 0x49, 0x00, 0xb1, 0x01, 0xb1, 0x01, 0xb1, - 0x4b, 0x07, 0xb1, 0x91, 0x49, 0xb2, 0xf4, 0x42, 0x90, 0x49, 0xb2, 0xe1, 0x9d, 0x20, 0x93, 0x04, - 0x99, 0x24, 0x1b, 0xa7, 0x06, 0x32, 0x49, 0x90, 0x49, 0xf2, 0x93, 0xd9, 0x81, 0x4c, 0x92, 0x22, - 0xc4, 0x1f, 0x64, 0x92, 0x80, 0x74, 0x80, 0x74, 0x80, 0x74, 0x94, 0x8e, 0x74, 0x20, 0x93, 0x84, - 0x74, 0x4e, 0x22, 0x93, 0x64, 0x73, 0xfb, 0xc8, 0x24, 0x29, 0x6c, 0x48, 0x91, 0x49, 0xa2, 0xa3, - 0x35, 0x64, 0x92, 0xa4, 0x77, 0x35, 0xc8, 0x24, 0x01, 0xe2, 0x04, 0xe2, 0xdc, 0x7b, 0xc4, 0x89, - 0x4c, 0x92, 0xa2, 0x5a, 0xd8, 0xdb, 0x4c, 0x92, 0x0c, 0x55, 0xe3, 0xe9, 0xde, 0x3c, 0xaa, 0x32, - 0xfd, 0x6c, 0x6c, 0xaa, 0xb9, 0xd2, 0x6c, 0x64, 0xe2, 0xaa, 0xf1, 0x79, 0x90, 0xd5, 0xeb, 0x49, - 0x37, 0x5f, 0xef, 0xe6, 0xfa, 0xfc, 0xfa, 0x29, 0x60, 0xe2, 0xeb, 0x9b, 0x61, 0x9f, 0x37, 0xe3, - 0x2e, 0x4b, 0x5c, 0x10, 0xca, 0x17, 0xc4, 0x15, 0xa1, 0x96, 0x1b, 0x44, 0x49, 0x28, 0x94, 0x84, - 0x2a, 0x0c, 0xf7, 0xa0, 0x24, 0x14, 0x4a, 0x42, 0x19, 0xa6, 0x36, 0x48, 0xe4, 0x43, 0x22, 0xdf, - 0x4f, 0x1a, 0x42, 0x22, 0x1f, 0x14, 0x0e, 0x28, 0x1c, 0x50, 0x38, 0xa8, 0x66, 0x2c, 0x12, 0xf9, - 0x96, 0x5e, 0x08, 0x12, 0xf9, 0x36, 0xbc, 0x13, 0x24, 0xf2, 0x21, 0x91, 0x6f, 0xe3, 0xd4, 0x40, - 0x22, 0x1f, 0x12, 0xf9, 0x7e, 0x32, 0x3b, 0x90, 0xc8, 0x57, 0x40, 0x2b, 0x48, 0xe4, 0x03, 0xe9, - 0x00, 0xe9, 0x00, 0xe9, 0x28, 0x1f, 0xe9, 0x40, 0x22, 0x1f, 0xe9, 0x9c, 0x44, 0x22, 0xdf, 0xe6, - 0xf6, 0x91, 0xc8, 0x57, 0xd8, 0x90, 0x22, 0x91, 0x4f, 0x47, 0x6b, 0x48, 0xe4, 0x4b, 0xef, 0x6a, - 0x90, 0xc8, 0x07, 0xc4, 0x09, 0xc4, 0xb9, 0xf7, 0x88, 0x13, 0x89, 0x7c, 0x45, 0xb5, 0xb0, 0x3f, - 0x89, 0x7c, 0x4b, 0xe9, 0x4b, 0xa8, 0x09, 0x85, 0x9a, 0x50, 0x85, 0x39, 0x57, 0xa4, 0x92, 0x20, - 0x95, 0xe4, 0x27, 0x0d, 0x21, 0x95, 0x04, 0x18, 0x1b, 0x18, 0x1b, 0x18, 0x9b, 0x6a, 0xc6, 0x22, - 0x95, 0x64, 0xe9, 0x85, 0x20, 0x95, 0x64, 0xc3, 0x3b, 0x41, 0x2a, 0x09, 0x52, 0x49, 0x36, 0x4e, - 0x0d, 0xa4, 0x92, 0x20, 0x95, 0xe4, 0x27, 0xb3, 0x03, 0xa9, 0x24, 0x45, 0xa8, 0x3f, 0x48, 0x25, - 0x01, 0xe9, 0x00, 0xe9, 0x00, 0xe9, 0x28, 0x1d, 0xe9, 0x40, 0x2a, 0x09, 0xe9, 0x9c, 0x44, 0x2a, - 0xc9, 0xe6, 0xf6, 0x91, 0x4a, 0x52, 0xd8, 0x90, 0x22, 0x95, 0x44, 0x47, 0x6b, 0x48, 0x25, 0x49, - 0xef, 0x6a, 0x90, 0x4a, 0x02, 0xc4, 0x09, 0xc4, 0xb9, 0xf7, 0x88, 0x13, 0xa9, 0x24, 0x45, 0xb5, - 0xb0, 0xbf, 0xa9, 0x24, 0x28, 0x0a, 0x55, 0xde, 0xc1, 0x31, 0x53, 0x15, 0xea, 0x5a, 0xd8, 0x52, - 0x16, 0xaa, 0xc7, 0x94, 0xdb, 0xcd, 0x5f, 0x0c, 0x6a, 0xd4, 0x0c, 0x4a, 0x40, 0xa1, 0x04, 0x54, - 0x61, 0x30, 0xc7, 0xb2, 0x12, 0x50, 0x5e, 0x98, 0xdc, 0x07, 0xdc, 0x51, 0xec, 0xe1, 0x81, 0x7b, - 0x74, 0xd9, 0x7b, 0x8b, 0xcd, 0xa2, 0x20, 0x94, 0x41, 0x5e, 0x83, 0x2c, 0x3e, 0x64, 0xf1, 0xfd, - 0xa4, 0x21, 0xa2, 0x9a, 0x6f, 0x2b, 0x13, 0x98, 0xa4, 0xf6, 0x1b, 0xf1, 0x92, 0x87, 0xc4, 0x01, - 0x89, 0x03, 0x12, 0x07, 0xb5, 0x09, 0x99, 0x36, 0xe8, 0x0b, 0xc1, 0xa5, 0x43, 0x1d, 0xa7, 0x5f, - 0x59, 0x0f, 0x8b, 0xdd, 0x10, 0x8f, 0xbf, 0x9e, 0x80, 0x04, 0xb9, 0xc1, 0xd1, 0x69, 0x78, 0x0c, - 0x18, 0x20, 0xdd, 0x86, 0xc8, 0x98, 0x41, 0x32, 0x66, 0x98, 0xcc, 0x18, 0x28, 0x5a, 0x43, 0x45, - 0x6c, 0xb0, 0xa6, 0xaf, 0x80, 0x5c, 0x9b, 0x5d, 0x99, 0xf1, 0x7a, 0x8c, 0x4b, 0x45, 0x4f, 0x76, - 0xc0, 0xb4, 0x69, 0x3d, 0x59, 0x02, 0x93, 0x1f, 0x3d, 0x2b, 0xb4, 0xa2, 0x3b, 0x6b, 0x40, 0xb3, - 0x65, 0x5f, 0xe9, 0x46, 0x73, 0x16, 0xc1, 0xb4, 0x1f, 0x03, 0x71, 0x67, 0x4d, 0xeb, 0x77, 0x71, - 0xe8, 0x35, 0x66, 0x17, 0x14, 0x35, 0xf4, 0xfa, 0xb2, 0x0d, 0x0a, 0x19, 0xfd, 0x03, 0x3b, 0x5a, - 0x6d, 0x97, 0x34, 0x4b, 0x82, 0x70, 0xf5, 0x54, 0xc3, 0x44, 0x99, 0x40, 0xd8, 0x8b, 0xdd, 0x00, - 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, - 0x61, 0x03, 0x61, 0x97, 0x0b, 0x61, 0x97, 0x4a, 0x56, 0x27, 0x4e, 0x10, 0x9b, 0xb6, 0xab, 0x2f, - 0x17, 0x69, 0x98, 0x25, 0x73, 0xb4, 0x10, 0xa2, 0x27, 0xa9, 0x3b, 0x44, 0x37, 0x3e, 0x14, 0x19, - 0xde, 0x34, 0xf5, 0x88, 0x56, 0x80, 0x0c, 0x45, 0x5d, 0xa2, 0x65, 0x33, 0x4a, 0x1e, 0xe6, 0x6c, - 0x20, 0xcc, 0x69, 0x13, 0xe7, 0x41, 0x98, 0x13, 0x61, 0x4e, 0x84, 0x39, 0x21, 0xc2, 0x40, 0x84, - 0x81, 0x08, 0x03, 0x11, 0x06, 0x22, 0x0c, 0x44, 0x18, 0x88, 0x30, 0x10, 0x61, 0x20, 0xc2, 0x54, - 0x10, 0xe6, 0x24, 0x05, 0x7c, 0x08, 0x73, 0x02, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, - 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0x23, 0xcc, 0xb9, 0x25, 0x7c, 0xd8, 0x89, - 0x30, 0x27, 0x41, 0x4d, 0x0c, 0xba, 0xe1, 0x41, 0x61, 0x93, 0xcc, 0x03, 0x59, 0x25, 0x09, 0x10, - 0x6f, 0x5b, 0x47, 0xe3, 0x66, 0x70, 0x03, 0x5f, 0xaf, 0x86, 0x37, 0xf0, 0x71, 0xd4, 0xbf, 0x85, - 0x07, 0xf4, 0x2c, 0xbc, 0x40, 0x67, 0x14, 0x6e, 0x0a, 0xfc, 0x58, 0x69, 0xda, 0xf5, 0x3f, 0xdf, - 0x03, 0x0a, 0x00, 0x18, 0xe4, 0xca, 0x28, 0x00, 0x80, 0x02, 0x00, 0x3f, 0x69, 0x08, 0x05, 0x00, - 0x4a, 0x2a, 0x9f, 0x21, 0x33, 0xa6, 0x00, 0x79, 0x0c, 0x99, 0x31, 0x39, 0x1a, 0x5c, 0x48, 0x59, - 0x89, 0x0d, 0xa5, 0xc6, 0xc4, 0x50, 0xee, 0xa1, 0xdc, 0x17, 0x68, 0x92, 0x8c, 0x99, 0x26, 0x33, - 0x26, 0x4a, 0x8f, 0xae, 0x02, 0xe5, 0x7e, 0xd5, 0xc0, 0x40, 0xb9, 0x9f, 0xbb, 0x71, 0x28, 0xf7, - 0xe9, 0xfb, 0x81, 0x72, 0x5f, 0xda, 0xa1, 0x87, 0x72, 0x5f, 0x44, 0xab, 0xed, 0x52, 0xfb, 0xac, - 0x77, 0x7e, 0xac, 0x2e, 0x95, 0x92, 0x7a, 0xfc, 0xd6, 0x8d, 0x2f, 0xde, 0x04, 0x7c, 0x00, 0x0b, - 0x06, 0x73, 0x41, 0x24, 0x41, 0xa0, 0xe7, 0x2c, 0x10, 0xfd, 0x9d, 0xbc, 0x97, 0x1e, 0x97, 0xdc, - 0xfb, 0xed, 0x69, 0xdc, 0x05, 0x12, 0x9e, 0xc8, 0x50, 0x3c, 0x12, 0x9e, 0x40, 0x9b, 0x40, 0x9b, - 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x90, 0xf0, - 0xb4, 0x25, 0x7c, 0xd8, 0x85, 0x84, 0xa7, 0xb9, 0x24, 0x0c, 0x94, 0x78, 0xd8, 0x16, 0xd3, 0xa0, - 0xc4, 0x43, 0x69, 0xe9, 0x10, 0x02, 0xd9, 0xc5, 0xd0, 0x1d, 0x04, 0xb2, 0x49, 0x16, 0x04, 0x02, - 0xd9, 0x50, 0x64, 0xa0, 0xc8, 0x40, 0x91, 0x81, 0x22, 0x03, 0x45, 0x06, 0x8a, 0x0c, 0x14, 0x19, - 0x28, 0x32, 0x50, 0x64, 0x2a, 0x08, 0x64, 0x23, 0x90, 0x6d, 0x54, 0x66, 0x43, 0x20, 0x1b, 0xb4, + 0xdb, 0xdf, 0x2d, 0x14, 0xaf, 0xf3, 0xde, 0x61, 0xfb, 0xb9, 0x70, 0x9d, 0xf7, 0x0a, 0xed, 0xf1, + 0x3b, 0xdb, 0xcf, 0xd7, 0x05, 0xaf, 0x36, 0x7b, 0x39, 0xfe, 0xff, 0xbd, 0xdf, 0x72, 0xa0, 0xa5, + 0x0e, 0xd2, 0xd2, 0xe9, 0xf9, 0x38, 0xab, 0xdd, 0xaa, 0x96, 0x7a, 0xc6, 0xd7, 0x83, 0x83, 0xa0, + 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x92, 0xaf, 0xdb, 0x9b, 0x20, 0xe8, 0x0b, 0x5f, + 0x71, 0x90, 0xd3, 0x42, 0x56, 0xa0, 0x7a, 0xa3, 0x8b, 0x28, 0x5b, 0xee, 0xe9, 0x9f, 0x1a, 0xcf, + 0x7a, 0xdf, 0xf7, 0x59, 0xc7, 0xf0, 0x69, 0x97, 0xff, 0xf8, 0x9f, 0xb8, 0x88, 0x03, 0x5a, 0x0c, + 0xa4, 0x9f, 0xc7, 0x50, 0x7d, 0x57, 0xc1, 0xff, 0x94, 0xe7, 0x6b, 0x1d, 0xca, 0x1b, 0x2b, 0x1d, + 0x97, 0x97, 0x3a, 0x9f, 0x05, 0x63, 0xa3, 0xf9, 0x80, 0xab, 0x94, 0x0f, 0xcd, 0x07, 0xb2, 0x49, + 0xe9, 0xd0, 0x7c, 0x60, 0xa5, 0x59, 0x23, 0x6b, 0x3e, 0x90, 0x72, 0x92, 0xf4, 0x5a, 0x3d, 0x7d, + 0x09, 0xb4, 0x8a, 0xbd, 0x00, 0xc5, 0x0e, 0xc5, 0x0e, 0xc5, 0x0e, 0xc5, 0xee, 0x8e, 0x62, 0xa7, + 0x72, 0xff, 0xc9, 0x80, 0x93, 0x52, 0xfb, 0x9a, 0x3a, 0x4e, 0xb0, 0x93, 0x6a, 0x45, 0x33, 0xb9, + 0x04, 0x62, 0xd3, 0xe5, 0x49, 0x67, 0x22, 0x87, 0x03, 0x4e, 0x58, 0x70, 0x03, 0x1e, 0xb8, 0x61, + 0xc2, 0x19, 0xb8, 0x70, 0x06, 0x36, 0x9c, 0x81, 0x0f, 0x5a, 0x18, 0x21, 0x86, 0x93, 0x64, 0x96, + 0x2f, 0x39, 0x1c, 0xfc, 0x0e, 0x6f, 0x61, 0xd8, 0x14, 0xdb, 0xaf, 0x32, 0x8c, 0x9d, 0x6a, 0x4a, + 0xfa, 0x02, 0x76, 0x19, 0x4d, 0xe0, 0x24, 0x34, 0x6d, 0xa2, 0x3e, 0xa6, 0x4b, 0x6d, 0x9a, 0xa2, + 0xaf, 0x29, 0xb3, 0x76, 0x05, 0x69, 0x01, 0x69, 0x01, 0x69, 0x01, 0x69, 0xe1, 0x20, 0x2d, 0xd4, + 0x5a, 0x78, 0x5e, 0x13, 0xf7, 0x05, 0xe3, 0xd9, 0xae, 0x39, 0x69, 0x3c, 0xbe, 0x92, 0x8f, 0x5b, + 0x79, 0xe0, 0x87, 0x0b, 0x74, 0x5c, 0x00, 0x1f, 0xb7, 0x40, 0xc8, 0x15, 0x30, 0x72, 0x0e, 0x94, + 0x9c, 0x03, 0x27, 0xe7, 0x40, 0x8a, 0x07, 0xac, 0x98, 0x40, 0x8b, 0x5f, 0x71, 0xa7, 0xfc, 0xc6, + 0x50, 0x2a, 0x5d, 0xa8, 0x70, 0xfa, 0x8c, 0x29, 0x8a, 0x54, 0x18, 0x2f, 0x81, 0xe7, 0x48, 0xfa, + 0xdb, 0x3f, 0xbc, 0x3e, 0x73, 0x87, 0xfb, 0xc8, 0xba, 0x63, 0xf4, 0x22, 0x75, 0x39, 0xcc, 0x47, + 0xda, 0x53, 0xd7, 0xe3, 0xc0, 0x31, 0x63, 0x47, 0xdc, 0xe9, 0xbc, 0x09, 0xfb, 0x8f, 0x30, 0xe1, + 0x9f, 0x98, 0x70, 0xa5, 0x5c, 0x3e, 0x28, 0xc3, 0x8c, 0xdd, 0xe2, 0x22, 0xfc, 0xa3, 0xb7, 0x3f, + 0x6c, 0xc7, 0xfd, 0x72, 0x54, 0xe6, 0xe0, 0xdb, 0x49, 0x5f, 0x1c, 0x36, 0x60, 0xd8, 0x51, 0x47, + 0xdc, 0x00, 0x71, 0x03, 0xc4, 0x0d, 0x10, 0x37, 0x40, 0xdc, 0x20, 0x23, 0x71, 0x83, 0x43, 0x07, + 0xc2, 0x06, 0x65, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0xac, 0x9b, + 0x70, 0xb1, 0x8c, 0xa0, 0x01, 0x82, 0x06, 0x08, 0x1a, 0xd0, 0x06, 0x0d, 0x1e, 0xa6, 0xab, 0xcf, + 0x85, 0xa8, 0x41, 0x7c, 0x2d, 0x08, 0x1b, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, + 0x20, 0x6c, 0xf0, 0x4e, 0xbf, 0x71, 0x23, 0x95, 0x1f, 0x3e, 0x39, 0x10, 0x37, 0xa8, 0x31, 0x5e, + 0xc2, 0x89, 0x50, 0x77, 0x93, 0xc4, 0x7f, 0x04, 0x0e, 0x10, 0x38, 0xf8, 0xa9, 0xea, 0x2a, 0x40, + 0x73, 0x21, 0x70, 0xb0, 0xd9, 0x26, 0x8c, 0x7c, 0x03, 0x84, 0x0e, 0x10, 0x3a, 0x20, 0x35, 0x73, + 0xf1, 0xa8, 0x85, 0xea, 0x11, 0x76, 0x49, 0x5f, 0x4a, 0xf9, 0x92, 0x2b, 0x41, 0xd8, 0x00, 0x61, + 0x03, 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x83, 0xf7, 0x86, 0x0d, 0xc8, 0x0b, 0xc6, + 0x2e, 0x83, 0x11, 0xa2, 0x02, 0xb2, 0xdb, 0x49, 0x5a, 0x82, 0xc1, 0x98, 0x99, 0xfb, 0x7d, 0x7e, + 0xd2, 0x92, 0x5c, 0x09, 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, 0x48, 0x0b, + 0x48, 0x0b, 0x48, 0x4b, 0x7a, 0x8e, 0x07, 0x7e, 0xa8, 0xa5, 0x0b, 0x9c, 0x65, 0x76, 0x21, 0xa0, + 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xa0, 0x2c, 0xe9, + 0x39, 0xd6, 0xa1, 0xaf, 0x22, 0xa9, 0xe5, 0x83, 0x03, 0x79, 0xa5, 0xaf, 0xae, 0x05, 0xc4, 0x05, + 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0x05, 0xc4, 0xc5, 0x79, 0xe2, 0x92, 0xe9, + 0xf2, 0xa2, 0xc4, 0x1d, 0x0a, 0x53, 0xe3, 0x33, 0x75, 0x2c, 0x4c, 0x37, 0xc7, 0x4b, 0xff, 0x88, + 0xa2, 0xad, 0x21, 0x9f, 0xb1, 0x65, 0xab, 0x63, 0xcc, 0x9f, 0xe2, 0x89, 0xa3, 0xe4, 0x4b, 0xee, + 0x44, 0x46, 0xba, 0xae, 0x35, 0x71, 0xbb, 0x9a, 0x53, 0xa9, 0x8e, 0xfb, 0x62, 0xcc, 0x07, 0xa2, + 0xdc, 0xd1, 0x8e, 0x1a, 0xf6, 0xfb, 0x84, 0xe5, 0xe6, 0x4f, 0xfd, 0x47, 0xbe, 0xc1, 0x9b, 0x61, + 0x4f, 0x84, 0xa2, 0xf7, 0xf9, 0x69, 0x3a, 0x74, 0xa6, 0x8c, 0x98, 0xc9, 0x17, 0xbb, 0xec, 0x83, + 0x73, 0xa4, 0x7d, 0x14, 0xc2, 0x61, 0x57, 0xab, 0x29, 0xd3, 0xfa, 0x7c, 0x37, 0xe8, 0xb4, 0xe4, + 0x4d, 0xa7, 0x7e, 0x2b, 0x2f, 0xfc, 0x5b, 0xd9, 0x69, 0x0c, 0x1e, 0x2a, 0x57, 0xf1, 0xad, 0x76, + 0xce, 0xa6, 0x37, 0xd8, 0xa9, 0xf7, 0xfe, 0x6d, 0xc9, 0x9b, 0xe6, 0x50, 0x9f, 0x07, 0x91, 0xee, + 0xb4, 0xc6, 0xb7, 0xd5, 0xb9, 0x8a, 0xef, 0xa1, 0x9e, 0xdc, 0x02, 0x3a, 0x31, 0xf3, 0xaf, 0xb1, + 0x6d, 0xe9, 0xc4, 0xbc, 0xa0, 0xe9, 0xef, 0xa6, 0xb6, 0x65, 0xfe, 0xb0, 0x41, 0x66, 0x36, 0xe3, + 0x1f, 0x71, 0xf4, 0x62, 0x67, 0xfc, 0xd8, 0x3d, 0x69, 0x2b, 0x13, 0x9c, 0x86, 0x74, 0x90, 0x92, + 0x0c, 0x52, 0x52, 0x41, 0x43, 0x22, 0x6c, 0x59, 0x1a, 0x91, 0x23, 0x63, 0x72, 0x60, 0x16, 0xf1, + 0xde, 0x10, 0xbe, 0xdb, 0xf1, 0xa7, 0xe6, 0xbd, 0x9d, 0xd9, 0x6f, 0x34, 0x6c, 0xcd, 0xb6, 0xad, + 0x98, 0xdc, 0x7a, 0xcd, 0x5a, 0x85, 0xb9, 0x67, 0x67, 0xe6, 0x9b, 0x0c, 0x3d, 0x7d, 0x5b, 0x4f, + 0x9d, 0xee, 0x69, 0x1b, 0x74, 0x4f, 0x6b, 0xbb, 0x23, 0x33, 0x26, 0xb7, 0xbe, 0x81, 0x18, 0x30, + 0x8e, 0xdc, 0xdc, 0x3c, 0x87, 0xe6, 0x62, 0xed, 0x2f, 0x55, 0x7d, 0xde, 0x0c, 0x60, 0xc8, 0xa0, + 0xcd, 0xb6, 0xa1, 0x33, 0xbe, 0x45, 0x6a, 0x63, 0xcb, 0xd3, 0xee, 0x16, 0xa6, 0xad, 0x2d, 0x49, + 0xeb, 0x5b, 0x8c, 0xd6, 0xb7, 0x0c, 0xad, 0x6f, 0x01, 0xba, 0x05, 0x15, 0xa6, 0xdb, 0x9e, 0xe5, + 0xa6, 0x38, 0x6d, 0xdc, 0xb0, 0x66, 0xcb, 0x61, 0xfa, 0xfd, 0x86, 0x1f, 0xba, 0x9d, 0x3e, 0x97, + 0x2f, 0x8e, 0xa6, 0x68, 0xf8, 0x8b, 0x2d, 0xe6, 0x58, 0xd0, 0xe4, 0x4e, 0xd8, 0xce, 0x89, 0x20, + 0xcb, 0x75, 0x20, 0xcb, 0x61, 0x20, 0xcb, 0x4d, 0x70, 0x5b, 0xd1, 0xd8, 0xea, 0xd3, 0x18, 0x3b, + 0x16, 0x7b, 0xf6, 0x38, 0xe7, 0xbf, 0x6c, 0xd9, 0xa2, 0xdd, 0x76, 0xbd, 0xd6, 0x53, 0xcb, 0x28, + 0x52, 0xc7, 0x68, 0x53, 0xc3, 0xa8, 0x52, 0xbf, 0xc8, 0x53, 0xbb, 0xc8, 0x53, 0xb7, 0xc8, 0x53, + 0xb3, 0x36, 0x2b, 0x30, 0x6e, 0xbb, 0x7d, 0x6d, 0x6e, 0x16, 0x6b, 0xb7, 0x6e, 0xc9, 0x2f, 0xc7, + 0x8f, 0x6c, 0x06, 0xf7, 0xdf, 0xba, 0x4c, 0xcb, 0xc9, 0xb2, 0x64, 0x59, 0xb9, 0x94, 0xd9, 0xb7, + 0x3c, 0x59, 0xb6, 0xd4, 0xd9, 0xb4, 0x6c, 0x59, 0xb3, 0x6c, 0xd9, 0xb1, 0x6c, 0x59, 0xb0, 0x9b, + 0xbd, 0xf5, 0x4d, 0x96, 0xbd, 0x9a, 0xac, 0xbb, 0xbe, 0xf0, 0x6f, 0x43, 0x71, 0x4b, 0xb1, 0xe8, + 0x66, 0xcc, 0xb2, 0x4a, 0x30, 0xd6, 0xf9, 0x34, 0xc0, 0xfc, 0xe9, 0x53, 0x9c, 0x1a, 0xb8, 0x3f, + 0x83, 0x82, 0x4d, 0xdd, 0x62, 0xb7, 0xc8, 0x2f, 0x07, 0x34, 0xee, 0xfe, 0x05, 0x95, 0x49, 0xc8, + 0x25, 0x40, 0x19, 0xa0, 0x0c, 0x50, 0x06, 0x28, 0x03, 0x94, 0x1d, 0x06, 0xe5, 0x78, 0xd9, 0x01, + 0x93, 0x53, 0x53, 0x15, 0x9f, 0x67, 0x20, 0x83, 0xe4, 0x78, 0x38, 0x1a, 0x44, 0x2e, 0x00, 0x91, + 0x81, 0xc8, 0x40, 0x64, 0x20, 0xf2, 0xea, 0xb3, 0x66, 0x3b, 0x52, 0x99, 0x0c, 0x34, 0x39, 0xa4, + 0x24, 0x55, 0x4f, 0xd0, 0x9d, 0x45, 0x9f, 0xef, 0x6e, 0x15, 0x8f, 0x4d, 0x75, 0x32, 0x8b, 0xb4, + 0xea, 0x00, 0x79, 0x95, 0x01, 0x8e, 0xaa, 0x02, 0xbc, 0x55, 0x04, 0xb8, 0xaa, 0x06, 0xb0, 0x57, + 0x09, 0x60, 0xaf, 0x0a, 0xc0, 0x5e, 0x05, 0x20, 0x5b, 0x67, 0x46, 0xc9, 0x4f, 0xf5, 0x33, 0x48, + 0x31, 0x0e, 0x49, 0xb6, 0x48, 0x9a, 0xfd, 0xc7, 0xdf, 0x09, 0x24, 0x45, 0x42, 0x47, 0xc9, 0xab, + 0xa9, 0x90, 0x8b, 0x61, 0x2a, 0x2b, 0xa7, 0xe7, 0x08, 0x98, 0x75, 0x37, 0xb8, 0xbf, 0x1f, 0x2a, + 0xa9, 0x9f, 0xb8, 0xd8, 0xc5, 0xdb, 0x0b, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc5, 0x00, + 0xc5, 0x00, 0xc5, 0xe0, 0xa4, 0x18, 0x33, 0x5c, 0x92, 0x22, 0x4a, 0x5e, 0x3f, 0x81, 0x65, 0xac, + 0x36, 0xe5, 0xe2, 0x51, 0x7b, 0xec, 0x4c, 0x63, 0xd1, 0x45, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, + 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x70, 0xb2, 0x8d, 0xd7, 0xd8, 0x34, 0x66, 0x1c, 0x73, 0x58, + 0x05, 0xd6, 0xb1, 0xda, 0xd4, 0x4b, 0xf5, 0xe0, 0xf7, 0x65, 0xcf, 0x0b, 0x85, 0x1f, 0x11, 0xd6, + 0xc7, 0x4a, 0x2c, 0xfc, 0xcd, 0xf8, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, 0xe0, 0x1a, + 0xe4, 0xeb, 0x56, 0xf6, 0x84, 0xd2, 0x52, 0x3f, 0x31, 0xf1, 0x0d, 0xc2, 0xfe, 0xee, 0xb9, 0xc6, + 0xf4, 0x56, 0x3f, 0xfb, 0x11, 0x83, 0xcb, 0x98, 0x4d, 0x78, 0xe3, 0xec, 0x5b, 0xfd, 0xa4, 0xf1, + 0xa5, 0xd3, 0x6a, 0x5e, 0x5d, 0x1e, 0x77, 0x5a, 0xc7, 0xf5, 0x8b, 0xe6, 0x19, 0xb5, 0xf7, 0x98, + 0x74, 0xd8, 0x8f, 0x72, 0x47, 0x3b, 0xd7, 0xe4, 0x25, 0x8a, 0x99, 0xfb, 0x46, 0xcc, 0x66, 0xbf, + 0x7e, 0xd1, 0x39, 0x69, 0x36, 0xcf, 0x73, 0xdb, 0xd0, 0xb8, 0xc3, 0x91, 0x29, 0xff, 0xbd, 0x79, + 0xf6, 0xf5, 0xf8, 0x0b, 0x66, 0x9c, 0x6e, 0xc6, 0x9b, 0xad, 0xc6, 0x1f, 0x8d, 0xb3, 0xfa, 0x65, + 0xb3, 0x85, 0x59, 0x27, 0xb4, 0xf3, 0x93, 0xab, 0x8b, 0xcb, 0xe3, 0x16, 0x97, 0x7f, 0x21, 0x1d, + 0xb1, 0x9d, 0x35, 0xbe, 0x97, 0x09, 0x75, 0xdf, 0xf7, 0x23, 0xed, 0xdd, 0x07, 0x3d, 0x79, 0x2b, + 0x45, 0x8f, 0x5e, 0xdc, 0xcf, 0x0f, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, 0x0f, 0x6d, + 0x4f, 0xbe, 0x6e, 0xb5, 0xbc, 0x17, 0x5a, 0x76, 0xbf, 0x47, 0x95, 0x12, 0x83, 0xb6, 0x3f, 0x24, + 0x1c, 0xf2, 0x4a, 0xc9, 0x49, 0xa9, 0xeb, 0x9c, 0xf2, 0x55, 0x10, 0x89, 0x6e, 0xa0, 0x7a, 0x11, + 0xe5, 0x2d, 0xb7, 0x7c, 0x75, 0x27, 0xc8, 0xf5, 0x34, 0x43, 0x83, 0xa1, 0x53, 0xa9, 0xf8, 0x9a, + 0x3f, 0x32, 0xb7, 0x5c, 0x9c, 0x44, 0x4d, 0x18, 0xc7, 0xff, 0x1a, 0xfa, 0x5d, 0x2d, 0x03, 0xf5, + 0x45, 0xde, 0xc5, 0xd6, 0x9e, 0xdf, 0x8a, 0xb6, 0xa3, 0xa7, 0xfe, 0xe3, 0xd6, 0x9b, 0x5c, 0xe1, + 0xb0, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x7c, 0xf5, 0xa0, 0x9a, 0xaf, 0x95, 0xcb, 0x85, 0x0a, 0x65, + 0xe4, 0xd4, 0x39, 0x2b, 0xcc, 0x68, 0x13, 0xb1, 0x36, 0x34, 0xee, 0x2f, 0x9b, 0x21, 0x55, 0xa1, + 0xb2, 0x14, 0xa9, 0xa2, 0x29, 0x58, 0x06, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, 0x0b, 0x5d, + 0xbb, 0x60, 0xdd, 0x0e, 0xa5, 0xd2, 0x07, 0x45, 0x06, 0x49, 0x5b, 0x85, 0xa4, 0x84, 0xa4, 0x84, + 0xa4, 0x84, 0xa4, 0xcc, 0x80, 0xc9, 0x95, 0x8a, 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0x20, 0x24, + 0x21, 0x24, 0xb7, 0x59, 0x48, 0xd2, 0x0a, 0x10, 0xda, 0x12, 0x9b, 0x90, 0x91, 0x90, 0x91, 0x90, + 0x91, 0x90, 0x91, 0x90, 0x91, 0x0b, 0xd6, 0xed, 0xa4, 0x5d, 0x21, 0xb9, 0x0d, 0x27, 0xa9, 0xcf, + 0x87, 0xb4, 0x47, 0xad, 0xb4, 0x08, 0x15, 0xb9, 0x9c, 0xcc, 0xfd, 0xbd, 0xbb, 0x7b, 0x9d, 0xf7, + 0x6a, 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, + 0xa3, 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, + 0xa3, 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, + 0xf2, 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, + 0xe8, 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, + 0x3e, 0xda, 0xdb, 0xdb, 0xdf, 0x2d, 0x14, 0xaf, 0xf3, 0xde, 0x61, 0xfb, 0xb9, 0x70, 0x9d, 0xf7, + 0x0a, 0xed, 0xf1, 0x3b, 0xdb, 0xcf, 0xd7, 0x05, 0xaf, 0x36, 0x7b, 0x39, 0xfe, 0xff, 0xbd, 0xdf, + 0x72, 0xa0, 0xa5, 0x0e, 0xd2, 0xd2, 0xe9, 0xf9, 0x38, 0xab, 0xdd, 0xaa, 0x96, 0x7a, 0xc6, 0xd7, + 0x83, 0x83, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x92, 0xaf, 0xdb, 0x9b, 0x20, + 0xe8, 0x0b, 0x5f, 0x71, 0x90, 0xd3, 0x42, 0x56, 0xa0, 0x7a, 0xa3, 0x8b, 0x28, 0x5b, 0xee, 0xeb, + 0x9f, 0x1a, 0x8f, 0xa6, 0xf3, 0x7b, 0x28, 0xa6, 0x6d, 0xfe, 0xe3, 0x7f, 0xe2, 0x1a, 0x0e, 0xe8, + 0x30, 0x90, 0x7e, 0x1c, 0x43, 0xf5, 0x5d, 0x05, 0xff, 0x53, 0x9e, 0xaf, 0x75, 0x28, 0x6f, 0xac, + 0x34, 0x5c, 0x5e, 0xea, 0x7b, 0x16, 0x8c, 0x8d, 0xde, 0x03, 0xae, 0x32, 0x3e, 0xf4, 0x1e, 0xc8, + 0x26, 0xa3, 0x43, 0xef, 0x81, 0x95, 0x66, 0x8d, 0xac, 0xf7, 0x40, 0xca, 0x49, 0xd2, 0x4b, 0xf5, + 0xf4, 0x25, 0xd0, 0x0a, 0xf6, 0x02, 0x04, 0x3b, 0x04, 0x3b, 0x04, 0x3b, 0x04, 0xbb, 0x3b, 0x82, + 0x9d, 0xca, 0xfd, 0x27, 0x03, 0x4e, 0x2a, 0xed, 0x6b, 0xea, 0x30, 0xc1, 0x4e, 0xaa, 0x13, 0xcd, + 0xe4, 0x12, 0x88, 0x4d, 0x97, 0x27, 0x9b, 0x89, 0x1c, 0x0e, 0x38, 0x61, 0xc1, 0x0d, 0x78, 0xe0, + 0x86, 0x09, 0x67, 0xe0, 0xc2, 0x19, 0xd8, 0x70, 0x06, 0x3e, 0x68, 0x61, 0x84, 0x18, 0x4e, 0x92, + 0x59, 0xbe, 0xe4, 0x70, 0xf0, 0x3b, 0xbc, 0x75, 0x61, 0x53, 0x6c, 0xbf, 0xca, 0x30, 0x76, 0xaa, + 0x27, 0xe9, 0x0b, 0xd8, 0x65, 0x34, 0x7f, 0x93, 0xd0, 0xb4, 0x89, 0xda, 0x98, 0x2e, 0xb5, 0x69, + 0x8a, 0xb6, 0xa6, 0xcc, 0xda, 0x15, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x05, 0xa4, 0x85, 0x83, 0xb4, + 0x50, 0x6b, 0xe1, 0x79, 0x4d, 0xdc, 0x17, 0x8c, 0x47, 0xbb, 0xe6, 0xa4, 0xf1, 0xf8, 0x4a, 0x3e, + 0x6e, 0xe5, 0x79, 0x1f, 0x2e, 0xd0, 0x71, 0x01, 0x7c, 0xdc, 0x02, 0x21, 0x57, 0xc0, 0xc8, 0x39, + 0x50, 0x72, 0x0e, 0x9c, 0x9c, 0x03, 0x29, 0x1e, 0xb0, 0x62, 0x02, 0x2d, 0x7e, 0xc5, 0x9d, 0xf2, + 0x1b, 0x43, 0xa9, 0x74, 0xa1, 0xc2, 0xe9, 0x33, 0xa6, 0x28, 0x52, 0x61, 0xbc, 0x04, 0x9e, 0x13, + 0xe9, 0x6f, 0xff, 0xf0, 0xfa, 0xcc, 0x1d, 0xee, 0x13, 0xeb, 0x8e, 0xd1, 0x8b, 0xd4, 0xe5, 0x30, + 0x9f, 0x68, 0x4f, 0x5d, 0x8f, 0x03, 0xa7, 0x8c, 0x1d, 0x71, 0xa7, 0xf3, 0x26, 0xec, 0x3f, 0xc2, + 0x84, 0x7f, 0x62, 0xc2, 0x95, 0x72, 0xf9, 0xa0, 0x0c, 0x33, 0x76, 0x8b, 0x8b, 0xf0, 0x8f, 0xde, + 0xfe, 0xb0, 0x1d, 0xf7, 0xcb, 0x51, 0x98, 0x83, 0x6f, 0x27, 0x7d, 0x71, 0xd8, 0x80, 0x61, 0x47, + 0x1d, 0x71, 0x03, 0xc4, 0x0d, 0x10, 0x37, 0x40, 0xdc, 0x00, 0x71, 0x83, 0x8c, 0xc4, 0x0d, 0x0e, + 0x1d, 0x08, 0x1b, 0x94, 0x11, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0x10, 0x36, 0xb0, + 0x6e, 0xc2, 0xc5, 0x32, 0x82, 0x06, 0x08, 0x1a, 0x20, 0x68, 0x40, 0x1b, 0x34, 0x78, 0x98, 0xae, + 0x3e, 0x17, 0xa2, 0x06, 0xf1, 0xb5, 0x20, 0x6c, 0x80, 0xb0, 0x01, 0xc2, 0x06, 0x08, 0x1b, 0x20, + 0x6c, 0x80, 0xb0, 0xc1, 0x3b, 0xfd, 0xc6, 0x8d, 0x54, 0x7e, 0xf8, 0xe4, 0x40, 0xdc, 0xa0, 0xc6, + 0x78, 0x09, 0x27, 0x42, 0xdd, 0x4d, 0x12, 0xff, 0x11, 0x38, 0x40, 0xe0, 0xe0, 0xa7, 0xaa, 0xab, + 0x00, 0xcd, 0x85, 0xc0, 0xc1, 0x66, 0x9b, 0x30, 0xf2, 0x0d, 0x10, 0x3a, 0x40, 0xe8, 0x80, 0xd4, + 0xcc, 0xc5, 0xa3, 0x16, 0xaa, 0x47, 0xd8, 0x24, 0x7d, 0x29, 0xe5, 0x4b, 0xae, 0x04, 0x61, 0x03, + 0x84, 0x0d, 0x10, 0x36, 0x40, 0xd8, 0x00, 0x61, 0x03, 0x84, 0x0d, 0xde, 0x1b, 0x36, 0x20, 0xaf, + 0x17, 0xbb, 0x0c, 0x46, 0x88, 0xea, 0xc7, 0x6e, 0x27, 0x69, 0x09, 0x06, 0x63, 0x66, 0xee, 0xf7, + 0xf9, 0x49, 0x4b, 0x72, 0x25, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, + 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0xe9, 0x39, 0x1e, 0xf8, 0xa1, 0x96, 0x2e, 0x70, 0x96, 0xd9, 0x85, + 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, + 0xa4, 0xe7, 0x58, 0x87, 0xbe, 0x8a, 0xa4, 0x96, 0x0f, 0x0e, 0xe4, 0x95, 0xbe, 0xba, 0x16, 0x10, + 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0x10, 0x17, 0xe7, 0x89, 0x4b, + 0xa6, 0xcb, 0x8b, 0x12, 0x37, 0x28, 0x4c, 0x8d, 0xcf, 0xd3, 0xb0, 0x30, 0xdd, 0x1b, 0x2f, 0xfd, + 0x23, 0x8a, 0xae, 0x86, 0x7c, 0xb6, 0x96, 0xad, 0x86, 0x31, 0x7f, 0x8a, 0x27, 0x8e, 0x8a, 0x2f, + 0xb9, 0x13, 0x19, 0xe9, 0xba, 0xd6, 0xc4, 0xdd, 0x6a, 0x4e, 0xa5, 0x3a, 0xee, 0x8b, 0x31, 0x1d, + 0x88, 0x72, 0x47, 0x3b, 0x6a, 0xd8, 0xef, 0x13, 0x56, 0x9b, 0x3f, 0xf5, 0x1f, 0xf9, 0x06, 0x6f, + 0x86, 0x3d, 0x11, 0x8a, 0xde, 0xe7, 0xa7, 0xe9, 0xd0, 0x99, 0x32, 0x62, 0x26, 0x57, 0xec, 0xb0, + 0x0b, 0xce, 0x91, 0x76, 0x51, 0x08, 0x87, 0x5d, 0xad, 0xa6, 0x3c, 0xeb, 0xf3, 0xdd, 0xa0, 0xd3, + 0x92, 0x37, 0x9d, 0xfa, 0xad, 0xbc, 0xf0, 0x6f, 0x65, 0xa7, 0x31, 0x78, 0xa8, 0x5c, 0xc5, 0x77, + 0xda, 0x39, 0x9b, 0xde, 0x5f, 0xa7, 0xde, 0xfb, 0xb7, 0x25, 0x6f, 0x9a, 0x43, 0x7d, 0x1e, 0x8a, + 0x4e, 0x6b, 0x7c, 0x57, 0x9d, 0xab, 0xf8, 0x16, 0xea, 0xc9, 0x1d, 0xa0, 0x0b, 0x33, 0xff, 0x0a, + 0xdb, 0x92, 0x2e, 0xcc, 0x0b, 0x1a, 0xfe, 0x6e, 0x6a, 0x4b, 0xe6, 0x0f, 0x1b, 0x64, 0x65, 0x33, + 0xf2, 0x11, 0x47, 0x2e, 0x76, 0xc6, 0x4f, 0xdd, 0x93, 0xb6, 0xb2, 0xc0, 0x69, 0x18, 0x07, 0x29, + 0xc3, 0x20, 0x65, 0x14, 0x34, 0x0c, 0xc2, 0x96, 0xa5, 0x11, 0xf9, 0x31, 0x1e, 0xff, 0x65, 0x11, + 0xec, 0xcd, 0x80, 0xbb, 0x1d, 0x6f, 0x6a, 0xde, 0xd7, 0x99, 0xfd, 0x46, 0xc3, 0xb6, 0x6c, 0xdb, + 0x86, 0xa9, 0x6d, 0xd7, 0xac, 0x51, 0x98, 0x7b, 0x74, 0x66, 0xbe, 0xc9, 0xd0, 0xc3, 0xb7, 0xf5, + 0xd0, 0xc9, 0x1e, 0xb6, 0x41, 0xdf, 0xb4, 0xae, 0x2f, 0x32, 0x63, 0x70, 0xeb, 0x9b, 0x87, 0x01, + 0xd3, 0xc8, 0xcd, 0xa6, 0xdb, 0xf3, 0x7b, 0xbd, 0x50, 0x44, 0x91, 0x31, 0xe3, 0x48, 0xe2, 0xe5, + 0xa9, 0x11, 0x0c, 0x19, 0xb4, 0xd9, 0xbd, 0x54, 0xe3, 0x7b, 0xa3, 0x36, 0xf6, 0x3a, 0xed, 0xee, + 0x5d, 0xda, 0xda, 0x8b, 0xb4, 0xbe, 0xb7, 0x68, 0x7d, 0xaf, 0xd0, 0xfa, 0xde, 0x9f, 0x5b, 0x50, + 0x61, 0x7c, 0xaf, 0xcd, 0x62, 0xf3, 0x55, 0x1b, 0x4d, 0x55, 0xd3, 0xcd, 0x52, 0x53, 0x3e, 0x2c, + 0x43, 0x08, 0x60, 0xb6, 0x77, 0xa9, 0x95, 0x9e, 0xa4, 0x86, 0x7b, 0x8d, 0xc2, 0xd7, 0xc3, 0xd7, + 0xc3, 0xd7, 0xc7, 0x77, 0x6b, 0xba, 0xb7, 0xa5, 0x3d, 0x42, 0x49, 0x45, 0x2c, 0x2d, 0x11, 0x4c, + 0x6b, 0xce, 0xc7, 0xa6, 0x13, 0xa2, 0x71, 0x46, 0xb6, 0x9d, 0x12, 0x99, 0x73, 0x22, 0x73, 0x52, + 0x64, 0xce, 0x6a, 0x33, 0x02, 0x5a, 0xd6, 0x92, 0xc3, 0x12, 0xbb, 0x97, 0x03, 0x4b, 0x5e, 0x66, + 0x8e, 0xde, 0x58, 0xa8, 0x14, 0x38, 0x9b, 0x1b, 0x3b, 0xf5, 0xff, 0x2c, 0x06, 0xc0, 0x5f, 0x66, + 0xfe, 0xa1, 0x64, 0x71, 0xee, 0x53, 0xcf, 0xe0, 0xd0, 0xe2, 0x18, 0xe7, 0xbe, 0xd6, 0x22, 0x54, + 0xd6, 0xcb, 0x31, 0xe6, 0xfe, 0xde, 0xdd, 0xbd, 0xce, 0x7b, 0xb5, 0xf6, 0xf3, 0x75, 0xc1, 0xab, + 0xb5, 0xe3, 0x97, 0x85, 0xc9, 0x3f, 0xf1, 0xeb, 0xe2, 0x75, 0xde, 0x2b, 0xcd, 0x5e, 0x97, 0xaf, + 0xf3, 0x5e, 0xb9, 0xbd, 0xf7, 0xd7, 0x5f, 0x9f, 0xf6, 0x7e, 0x1c, 0x8c, 0xde, 0xff, 0xc1, 0xdf, + 0xec, 0xed, 0x71, 0xb6, 0x37, 0x69, 0x6f, 0x88, 0x66, 0x31, 0x54, 0xb0, 0x18, 0x56, 0x5b, 0x0c, + 0xbe, 0x77, 0x5b, 0xf7, 0xbe, 0xb6, 0x7f, 0x14, 0x3e, 0x96, 0x46, 0x47, 0x7b, 0x3f, 0xaa, 0xa3, + 0xb7, 0x3f, 0x7c, 0x5e, 0xf4, 0xb6, 0xc2, 0xc7, 0xea, 0xe8, 0x68, 0xc9, 0x6f, 0x2a, 0xa3, 0xa3, + 0x5f, 0xfc, 0x8e, 0xf2, 0x68, 0x37, 0xf5, 0xd6, 0xf1, 0xcf, 0x8b, 0xcb, 0x3e, 0x50, 0x5a, 0xf2, + 0x81, 0x83, 0x65, 0x1f, 0x38, 0x58, 0xf2, 0x81, 0xa5, 0x97, 0x54, 0x5c, 0xf2, 0x81, 0xf2, 0xe8, + 0x39, 0xf5, 0xfe, 0xdd, 0xc5, 0x6f, 0xad, 0x8c, 0xf6, 0x9e, 0x97, 0xfd, 0xae, 0x3a, 0x7a, 0x3e, + 0xda, 0xdb, 0x40, 0xd7, 0xf0, 0xc1, 0xed, 0xeb, 0xc4, 0xee, 0xd4, 0x3b, 0x83, 0x5b, 0xb6, 0x76, + 0xa7, 0x0c, 0x66, 0x26, 0x1b, 0x08, 0x03, 0x7e, 0x60, 0x7c, 0x86, 0xb3, 0xe4, 0x1b, 0xc3, 0x72, + 0xdc, 0x6c, 0x9a, 0x8d, 0x95, 0x74, 0x1a, 0x2b, 0x69, 0x33, 0x66, 0xd3, 0x63, 0xd6, 0x7d, 0xb6, + 0x86, 0xd7, 0xa5, 0xb5, 0xf5, 0x98, 0x33, 0x12, 0x08, 0x7f, 0xef, 0xae, 0xf0, 0x7a, 0xeb, 0x7f, + 0xf5, 0x55, 0xbb, 0xda, 0x27, 0x57, 0xb4, 0x05, 0x53, 0x36, 0x60, 0xfa, 0xd9, 0xaf, 0x36, 0xf9, + 0xef, 0x9f, 0xba, 0xf7, 0x7d, 0xe2, 0x9d, 0x93, 0xbc, 0xee, 0xe4, 0x9a, 0x99, 0xd4, 0x15, 0x56, + 0xcf, 0xaf, 0xaf, 0x96, 0xf7, 0x3d, 0xa7, 0x5f, 0x9f, 0xed, 0x77, 0xcc, 0xf4, 0x8a, 0x7b, 0x5c, + 0x6b, 0xed, 0x65, 0xad, 0xb8, 0x67, 0xf5, 0x12, 0x1e, 0x2e, 0xbe, 0xf3, 0x83, 0x6b, 0x84, 0x7f, + 0xcd, 0x84, 0x77, 0xd7, 0x0d, 0xdf, 0x1a, 0x0b, 0xcf, 0x1a, 0x0b, 0xbf, 0x1a, 0x0b, 0xaf, 0xda, + 0xf5, 0x21, 0xab, 0xee, 0xe1, 0xe4, 0x66, 0xce, 0xc0, 0x9b, 0x2e, 0xe3, 0x15, 0x9f, 0x5b, 0xd2, + 0xb7, 0x6b, 0xee, 0xeb, 0x56, 0x9c, 0xf2, 0xf5, 0x76, 0x5d, 0xd6, 0xde, 0x5d, 0x31, 0xb1, 0x8b, + 0x62, 0x76, 0xb7, 0xc4, 0xd4, 0xae, 0x88, 0xf1, 0xdd, 0x0f, 0xe3, 0xbb, 0x1c, 0xc6, 0x77, 0x33, + 0x68, 0x79, 0xd2, 0xda, 0xbb, 0x10, 0x2f, 0x61, 0xbe, 0x9e, 0x50, 0x5a, 0xea, 0xa7, 0xf5, 0x52, + 0x65, 0x12, 0x04, 0x5a, 0xa3, 0x1f, 0x46, 0xae, 0x31, 0xbd, 0x94, 0xcf, 0x7e, 0x64, 0xc0, 0x04, + 0x67, 0x37, 0x58, 0xff, 0xda, 0xe8, 0x5c, 0x8c, 0xff, 0xef, 0xf2, 0xff, 0xce, 0x8f, 0xd7, 0x35, + 0xc3, 0x49, 0xeb, 0x8f, 0xc8, 0x48, 0x1c, 0xd1, 0x70, 0x0e, 0x4c, 0xe3, 0xfc, 0x5b, 0xa9, 0x73, + 0x75, 0xd6, 0xf8, 0xbd, 0x7e, 0x71, 0x99, 0x73, 0x21, 0xd9, 0xc7, 0xf0, 0xfd, 0x9d, 0x34, 0xce, + 0xfe, 0xbc, 0xb8, 0xac, 0x5f, 0x1e, 0x67, 0xf1, 0xe6, 0x2e, 0x5a, 0x97, 0xc7, 0x9d, 0xf3, 0xe6, + 0x49, 0xe3, 0xf7, 0xff, 0xeb, 0x34, 0xce, 0xbf, 0x55, 0x32, 0xf9, 0x00, 0x0f, 0xbe, 0x9d, 0x9f, + 0x4d, 0xee, 0x2e, 0xd3, 0x66, 0x5a, 0x1c, 0xdf, 0xe5, 0xb7, 0xf3, 0x93, 0x8b, 0x4c, 0x2f, 0xc2, + 0xce, 0xc5, 0xf9, 0xd7, 0x6c, 0xdf, 0xe0, 0xb7, 0xf3, 0xb3, 0x2c, 0xde, 0xe0, 0x04, 0x26, 0xbe, + 0x9e, 0x34, 0xff, 0xdf, 0xc5, 0xf9, 0xf1, 0xef, 0x19, 0x77, 0x33, 0xa7, 0x57, 0x27, 0x97, 0x99, + 0x75, 0x34, 0xdf, 0xce, 0xcf, 0xb6, 0xe5, 0x49, 0x96, 0xb2, 0xfd, 0x24, 0x27, 0xb6, 0x7a, 0x52, + 0xff, 0x7c, 0x7c, 0x72, 0xfc, 0x25, 0xd3, 0xd0, 0xf8, 0xf2, 0x3c, 0x33, 0x7c, 0x97, 0x93, 0xfb, + 0xdb, 0x82, 0xa7, 0x99, 0x75, 0x22, 0xf7, 0x86, 0x92, 0x97, 0xb2, 0x4b, 0x56, 0x8f, 0xcd, 0x50, + 0x9d, 0xb5, 0xbe, 0xa1, 0x4d, 0x1d, 0x77, 0xc1, 0xd6, 0x4c, 0xbc, 0x35, 0xb3, 0x42, 0x6e, 0xc1, + 0x3b, 0xb6, 0x4d, 0x3e, 0x18, 0x9c, 0xab, 0xa4, 0xea, 0xd7, 0x0a, 0x91, 0xdf, 0xd5, 0x36, 0xf8, + 0xd7, 0xda, 0xc8, 0x5f, 0x6b, 0xc3, 0x7e, 0xb5, 0x8d, 0xf9, 0x5f, 0x9d, 0xc8, 0x15, 0x8d, 0x6d, + 0x65, 0x23, 0xcb, 0xbd, 0x6b, 0xf7, 0xec, 0x3f, 0xb6, 0xfa, 0x7e, 0xcd, 0x4e, 0x7f, 0x6e, 0x75, + 0xff, 0xfd, 0x8e, 0x9f, 0x4c, 0xe3, 0x7b, 0xa7, 0xef, 0xbd, 0xd3, 0xf6, 0xdf, 0x37, 0xb9, 0xfc, + 0xd2, 0xff, 0xe3, 0xb2, 0xe3, 0x4a, 0x79, 0x91, 0xd0, 0x3f, 0x3f, 0x21, 0xf3, 0xb2, 0xc1, 0x92, + 0x7c, 0xe4, 0x27, 0xd3, 0xf1, 0x6b, 0x7b, 0x8f, 0xbf, 0xbc, 0x59, 0xf2, 0x9e, 0x4d, 0x91, 0xd5, + 0x36, 0x3f, 0xde, 0xbb, 0xc9, 0xb1, 0xf2, 0x66, 0xc6, 0xca, 0x9b, 0x16, 0x2b, 0x6f, 0x4e, 0xac, + 0x67, 0xd8, 0xbf, 0xba, 0xb7, 0x97, 0xd8, 0xc6, 0xaf, 0x4f, 0xe1, 0x5b, 0xab, 0xfa, 0xd5, 0x19, + 0x7c, 0xdf, 0xc6, 0xf6, 0xbb, 0x77, 0xe4, 0x56, 0xd9, 0x81, 0x5b, 0x6f, 0xc7, 0x6d, 0xd5, 0x1d, + 0xb6, 0xb5, 0x77, 0xd4, 0xd6, 0xde, 0x41, 0x5b, 0x7b, 0xc7, 0xcc, 0x2c, 0x1b, 0x78, 0xef, 0x46, + 0x74, 0xce, 0xbf, 0xbb, 0x0b, 0xc5, 0x9d, 0xaf, 0x83, 0x70, 0xf5, 0xe4, 0x8c, 0x57, 0xdf, 0x41, + 0x9c, 0xa1, 0x91, 0x47, 0x86, 0x06, 0x32, 0x34, 0xac, 0x2c, 0x8c, 0x57, 0xd4, 0x6b, 0x9d, 0xc3, + 0xf9, 0x46, 0x0e, 0xe3, 0xaf, 0x79, 0xf8, 0x7e, 0xe5, 0x84, 0x26, 0x13, 0xcb, 0xc6, 0xec, 0xf2, + 0x31, 0xb5, 0x8c, 0x8c, 0x2f, 0x27, 0xe3, 0xcb, 0xca, 0xf8, 0xf2, 0x5a, 0x33, 0x32, 0xb0, 0xa2, + 0xe5, 0xac, 0x7b, 0xb8, 0x3d, 0x67, 0xea, 0x0c, 0xfb, 0x0b, 0x58, 0x99, 0xc9, 0x8d, 0x37, 0x73, + 0x34, 0xdd, 0xd8, 0x51, 0x74, 0x93, 0x47, 0xcf, 0xed, 0x1c, 0x35, 0x37, 0x7d, 0xb4, 0xdc, 0xda, + 0x51, 0x72, 0x6b, 0x47, 0xc7, 0xad, 0x1d, 0x15, 0xe7, 0x3d, 0x7c, 0x62, 0xec, 0xe8, 0xb7, 0xad, + 0x03, 0xc7, 0x26, 0xcf, 0x52, 0x1a, 0x3f, 0x33, 0xb9, 0x71, 0x07, 0x85, 0xdb, 0x5c, 0x27, 0x2e, + 0xd6, 0x60, 0x0b, 0xbe, 0x49, 0xfc, 0x00, 0x74, 0x00, 0x3a, 0x00, 0x1d, 0x8e, 0x42, 0x87, 0x1f, + 0x79, 0x6a, 0x78, 0x7f, 0x23, 0x42, 0x83, 0xb8, 0x61, 0xa0, 0xae, 0x5d, 0xae, 0xe5, 0xab, 0x3b, + 0x73, 0x45, 0x40, 0x0c, 0x1e, 0xcf, 0x3d, 0x95, 0xca, 0x42, 0x09, 0x32, 0x3b, 0x75, 0x9b, 0x26, + 0x69, 0xc6, 0x16, 0xbe, 0xf7, 0x6b, 0xe8, 0x77, 0xb5, 0x0c, 0xd4, 0x17, 0x79, 0x27, 0x27, 0x9b, + 0x01, 0x79, 0x73, 0x67, 0xbc, 0x0d, 0x16, 0x8c, 0x3b, 0xf5, 0x1f, 0x37, 0xee, 0x51, 0x95, 0x8a, + 0xb5, 0x52, 0xad, 0x52, 0x2d, 0xd6, 0xca, 0x1b, 0xf4, 0xcc, 0x1c, 0x39, 0x53, 0xbe, 0x99, 0x4c, + 0xab, 0x64, 0x92, 0x6a, 0x95, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, + 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0x32, 0xc7, 0xb5, 0xb2, 0x5c, 0x47, 0x64, 0x96, 0x2b, 0x95, 0xbc, + 0xda, 0x7f, 0xc9, 0x14, 0x58, 0xa7, 0x7c, 0xd3, 0x96, 0xa6, 0xa9, 0xfe, 0xd7, 0x74, 0x1a, 0xac, + 0x1f, 0xa2, 0x75, 0x78, 0x21, 0x74, 0xa7, 0xfe, 0xf2, 0xdd, 0x0e, 0x94, 0x0f, 0xf1, 0x23, 0x6f, + 0x3a, 0x3f, 0xab, 0xe6, 0xa8, 0x4c, 0xbf, 0x00, 0x09, 0x2a, 0x76, 0xf9, 0x3f, 0x12, 0x54, 0x56, + 0x74, 0x22, 0xab, 0x97, 0x10, 0x89, 0xbc, 0x48, 0xdc, 0x4d, 0x6f, 0x70, 0xdd, 0xfa, 0x21, 0x2f, + 0xdf, 0xc5, 0x9c, 0xaa, 0x82, 0xe2, 0x21, 0xb6, 0x85, 0x34, 0x52, 0x55, 0xcc, 0x2c, 0xc0, 0x57, + 0x78, 0x6a, 0xa2, 0x8d, 0x8b, 0xd1, 0xf6, 0x2d, 0x86, 0xda, 0xb6, 0xac, 0x9d, 0x41, 0x86, 0xf8, + 0x17, 0xe2, 0x5f, 0xcc, 0xf1, 0x2f, 0x53, 0x6d, 0x56, 0x72, 0xf7, 0x62, 0x12, 0xf3, 0x32, 0xde, + 0xae, 0x69, 0xfa, 0xbd, 0xe8, 0xcd, 0xe7, 0x96, 0x43, 0xb0, 0xe5, 0x18, 0xac, 0x3b, 0x08, 0xeb, + 0x8e, 0xc2, 0xba, 0xc3, 0x30, 0x1c, 0x24, 0x72, 0xbe, 0x37, 0x9f, 0xc9, 0x80, 0xfa, 0x5b, 0x47, + 0x60, 0xb2, 0x39, 0x9f, 0xd9, 0x00, 0xfb, 0xec, 0x8f, 0x85, 0xde, 0x31, 0x36, 0x02, 0xee, 0x96, + 0x3c, 0x6c, 0xea, 0xeb, 0x2d, 0x05, 0xe0, 0x93, 0xef, 0xb7, 0x18, 0xd4, 0x35, 0xbc, 0xe2, 0xe6, + 0x1f, 0xa9, 0xff, 0xb8, 0xf1, 0x8f, 0xd4, 0x56, 0xa0, 0x9e, 0xf4, 0xd9, 0x3a, 0xda, 0x54, 0xa1, + 0xed, 0x14, 0x56, 0x18, 0xad, 0xa0, 0xff, 0xda, 0xad, 0x19, 0x2f, 0x7a, 0xff, 0x7a, 0x81, 0xd9, + 0xfb, 0x72, 0xa3, 0x95, 0xf5, 0xcd, 0x19, 0x8f, 0x89, 0x26, 0xae, 0xda, 0x24, 0x2d, 0x48, 0x28, + 0xc1, 0xe4, 0x5b, 0x21, 0x09, 0x20, 0x09, 0x20, 0x09, 0xb6, 0x55, 0x12, 0x0c, 0x7c, 0xfd, 0xcf, + 0x2c, 0x2a, 0xef, 0x19, 0xf4, 0x07, 0xaf, 0x7d, 0x42, 0xa1, 0x64, 0xf0, 0x3b, 0x8f, 0xd5, 0xf0, + 0x7e, 0x3c, 0x1b, 0x23, 0xf4, 0xe6, 0xe1, 0xeb, 0xdf, 0xb2, 0x60, 0xb3, 0x38, 0x36, 0xa5, 0xfd, + 0x97, 0x3d, 0x1e, 0x13, 0x2d, 0x94, 0x36, 0x25, 0xf5, 0xc1, 0x08, 0x13, 0x33, 0xca, 0xbc, 0x8c, + 0x32, 0x2d, 0x33, 0xcc, 0x6a, 0x73, 0xf3, 0x4a, 0x52, 0xb6, 0xbd, 0xce, 0x8e, 0xdd, 0x4f, 0x12, + 0x23, 0xa2, 0x8b, 0xe9, 0x10, 0x48, 0x5e, 0x31, 0xf0, 0xcc, 0xdc, 0xc8, 0x2e, 0x29, 0xad, 0x9d, + 0x5e, 0x52, 0x42, 0x7e, 0x09, 0x05, 0x67, 0x46, 0x7e, 0xc9, 0x8a, 0xeb, 0x7c, 0x8d, 0xfc, 0x92, + 0x92, 0xc9, 0x04, 0x93, 0x12, 0x32, 0x4c, 0x90, 0x61, 0xe2, 0x8a, 0xac, 0x44, 0x86, 0x09, 0x32, + 0x4c, 0xa8, 0xa3, 0x47, 0xc8, 0x30, 0x41, 0x86, 0xc9, 0x7f, 0x7f, 0x11, 0x32, 0x4c, 0x4c, 0x7c, + 0x21, 0xc2, 0xc9, 0xb6, 0x1d, 0x84, 0x75, 0x47, 0x61, 0xdd, 0x61, 0x98, 0x0b, 0x32, 0xee, 0x20, + 0xc3, 0x04, 0x19, 0x26, 0x86, 0xbf, 0x1c, 0x19, 0x26, 0x44, 0x2b, 0x6e, 0xfe, 0x91, 0x22, 0xc3, + 0xc4, 0x8d, 0x67, 0x8b, 0x0c, 0x93, 0x5f, 0x78, 0x10, 0xc8, 0x30, 0x99, 0xff, 0x72, 0x64, 0x98, + 0xbc, 0x93, 0x12, 0x20, 0xc3, 0x04, 0x92, 0x00, 0x92, 0x60, 0xab, 0x25, 0x01, 0x32, 0x4c, 0x36, + 0x3a, 0xee, 0xe4, 0x50, 0x86, 0x49, 0x69, 0xb6, 0x0d, 0x5f, 0x42, 0x8e, 0x89, 0x0b, 0xdc, 0x0b, + 0x39, 0x26, 0x76, 0xad, 0xdb, 0x66, 0x96, 0x49, 0x09, 0x69, 0x26, 0x26, 0x1f, 0x9b, 0x0b, 0x79, + 0x26, 0x52, 0xf5, 0xc4, 0xe3, 0xea, 0x49, 0x26, 0xf1, 0xc7, 0x57, 0xcb, 0x30, 0xc9, 0x23, 0xc3, + 0x84, 0x9a, 0x1b, 0x6f, 0x5b, 0x86, 0xc9, 0xca, 0x1c, 0x35, 0x79, 0xee, 0x7d, 0xe1, 0xdf, 0x86, + 0xe2, 0x76, 0x95, 0x87, 0x3e, 0xa3, 0x99, 0x2b, 0x44, 0xa1, 0x73, 0xe7, 0x53, 0xaf, 0xf2, 0xe9, + 0x53, 0xcc, 0x56, 0xf6, 0xe3, 0x85, 0xe6, 0x80, 0xc3, 0x58, 0x6d, 0xc3, 0x7f, 0xad, 0x0d, 0xfe, + 0xb5, 0x53, 0xd2, 0x8a, 0x70, 0x18, 0x70, 0x18, 0xbf, 0x74, 0x95, 0xab, 0xa7, 0xa4, 0xc9, 0xbb, + 0x81, 0x81, 0x5c, 0x34, 0xb9, 0x72, 0xac, 0x66, 0xcd, 0x48, 0x17, 0x92, 0xd0, 0xe8, 0x22, 0x53, + 0x48, 0x42, 0x33, 0x1c, 0x49, 0x4a, 0xec, 0x66, 0x28, 0x95, 0xae, 0xac, 0x53, 0xa1, 0x7b, 0xb6, + 0x8a, 0xd6, 0xe8, 0xcb, 0x63, 0x68, 0xa7, 0xd8, 0x40, 0xd4, 0xc4, 0xe4, 0x4e, 0xb0, 0xe9, 0x40, + 0xba, 0xe1, 0x9d, 0x5e, 0x1b, 0xbb, 0x7f, 0x26, 0x36, 0x48, 0x4c, 0xee, 0xdc, 0xda, 0x7a, 0x04, + 0x85, 0xc3, 0x52, 0xa9, 0x52, 0x2d, 0x95, 0xf2, 0xd5, 0x83, 0x6a, 0xbe, 0x56, 0x2e, 0x17, 0x2a, + 0x85, 0xb2, 0xc3, 0x4f, 0x85, 0x29, 0x6e, 0xd7, 0xa6, 0x8a, 0x79, 0xac, 0xc0, 0x16, 0x7d, 0x1d, + 0xdc, 0xcb, 0xae, 0x37, 0xab, 0xbd, 0x6a, 0xa0, 0x37, 0x68, 0xea, 0x1b, 0x41, 0x4a, 0x40, 0x4a, + 0x40, 0x4a, 0x56, 0xb2, 0x9b, 0x9b, 0x20, 0xe8, 0x0b, 0x5f, 0x19, 0x60, 0x25, 0x85, 0x82, 0xc3, + 0x4e, 0xa8, 0xdb, 0x1f, 0x46, 0x5a, 0x84, 0x5e, 0x5f, 0x46, 0x06, 0x4e, 0xe5, 0xcc, 0x7d, 0x1b, + 0x9c, 0x0f, 0x9c, 0x0f, 0x9c, 0xcf, 0x4a, 0x76, 0x63, 0xa8, 0x71, 0xa9, 0x89, 0x86, 0xa5, 0xc6, + 0x1a, 0x95, 0x6e, 0x4c, 0x83, 0xd2, 0x36, 0xf6, 0x7a, 0x9d, 0xdb, 0xeb, 0x25, 0xc1, 0xc2, 0xd5, + 0x76, 0xd5, 0xd2, 0x8b, 0x77, 0x85, 0xdd, 0x35, 0xa0, 0x1f, 0xd0, 0x0f, 0xe8, 0x87, 0x78, 0x20, + 0xe2, 0x81, 0x88, 0x07, 0x22, 0x1e, 0xb8, 0x9d, 0xf1, 0xc0, 0x7e, 0xd0, 0xf5, 0xfb, 0xde, 0x18, + 0x9b, 0xd6, 0xe7, 0x20, 0xaf, 0xbe, 0x0b, 0x44, 0x04, 0x44, 0x04, 0x44, 0x64, 0x65, 0x22, 0x72, + 0x50, 0x34, 0x40, 0x44, 0xaa, 0x20, 0x22, 0x20, 0x22, 0x5b, 0x42, 0x44, 0x4c, 0x1f, 0x19, 0x05, + 0xfd, 0xa0, 0xa1, 0x1f, 0xf7, 0xa2, 0xb7, 0x3e, 0xef, 0x18, 0x7f, 0x09, 0x08, 0x07, 0x08, 0x07, + 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0xc7, 0xb2, 0x69, 0x56, 0xe2, + 0x51, 0x7b, 0xff, 0x04, 0x06, 0x12, 0xb0, 0x93, 0x6f, 0x02, 0xf5, 0x00, 0xf5, 0x00, 0xf5, 0x58, + 0xc9, 0x6e, 0xe4, 0xc0, 0x64, 0xc2, 0x41, 0x6d, 0x8d, 0xef, 0x98, 0xde, 0x13, 0x3b, 0xfd, 0x30, + 0x9c, 0x8c, 0x91, 0x9a, 0xa3, 0x43, 0x03, 0xdf, 0x65, 0x2a, 0x39, 0x23, 0xf9, 0xc2, 0x4d, 0x49, + 0xd2, 0x58, 0x0f, 0xe0, 0x0c, 0x51, 0x24, 0xb3, 0x46, 0x56, 0xd9, 0x36, 0x23, 0xf3, 0xbd, 0xdb, + 0xba, 0xf7, 0xb5, 0xfd, 0xa3, 0xf0, 0xb1, 0x34, 0x3a, 0xda, 0xfb, 0x51, 0x1d, 0xbd, 0xfd, 0xe1, + 0xf3, 0xa2, 0xb7, 0x15, 0x3e, 0x56, 0x47, 0x47, 0x4b, 0x7e, 0x53, 0x19, 0x1d, 0xfd, 0xe2, 0x77, + 0x94, 0x47, 0xbb, 0xa9, 0xb7, 0x8e, 0x7f, 0x5e, 0x5c, 0xf6, 0x81, 0xd2, 0x92, 0x0f, 0x1c, 0x2c, + 0xfb, 0xc0, 0xc1, 0x92, 0x0f, 0x2c, 0xbd, 0xa4, 0xe2, 0x92, 0x0f, 0x94, 0x47, 0xcf, 0xa9, 0xf7, + 0xef, 0x2e, 0x7e, 0x6b, 0x65, 0xb4, 0xf7, 0xbc, 0xec, 0x77, 0xd5, 0xd1, 0xf3, 0xd1, 0x9e, 0x03, + 0x4b, 0x2e, 0x93, 0x5c, 0x36, 0x08, 0xe5, 0xdd, 0x1a, 0x6a, 0xf5, 0x85, 0xbd, 0xc5, 0xdf, 0x03, + 0x1e, 0x0b, 0x1e, 0x0b, 0x1e, 0xbb, 0x92, 0xdd, 0xdc, 0xdc, 0x0d, 0xbc, 0x78, 0x15, 0x79, 0x93, + 0xd2, 0x1d, 0x6b, 0x96, 0xa1, 0x32, 0x51, 0x76, 0x6a, 0xcd, 0x32, 0x53, 0x94, 0x1e, 0xcc, 0xd7, + 0x41, 0xe8, 0xc9, 0x9e, 0x29, 0x47, 0x36, 0xfb, 0x3a, 0xf8, 0x33, 0xf8, 0x33, 0xf8, 0x33, 0x4e, + 0xf5, 0x89, 0xa3, 0x00, 0x4e, 0x53, 0xce, 0x6c, 0x96, 0xcc, 0x5a, 0xa1, 0x64, 0x9f, 0x9d, 0xf2, + 0x37, 0x7a, 0xa8, 0x94, 0xe8, 0x7b, 0x42, 0x75, 0xfd, 0x41, 0x34, 0xec, 0xaf, 0x36, 0x17, 0x2f, + 0x95, 0x6e, 0x17, 0x7d, 0x1b, 0x8a, 0xe3, 0xd8, 0x85, 0x2e, 0x14, 0xc7, 0x59, 0x71, 0xf5, 0xaf, + 0x5c, 0x1c, 0x27, 0x36, 0xf3, 0x68, 0x7d, 0x2e, 0x38, 0xfb, 0x22, 0xf4, 0x69, 0x03, 0x0b, 0xdc, + 0x2a, 0x16, 0xb8, 0x76, 0x9f, 0xb6, 0x78, 0xe5, 0x98, 0x6b, 0xd4, 0x36, 0xfd, 0x3e, 0xc7, 0x3a, + 0xb5, 0xe5, 0xd1, 0xa9, 0x8d, 0x79, 0xe1, 0x5a, 0x5b, 0xc0, 0xd6, 0x16, 0xf2, 0x7a, 0x0b, 0x7a, + 0xcd, 0x85, 0x6d, 0x6c, 0x81, 0xbf, 0x50, 0x6c, 0x23, 0x0d, 0x19, 0x53, 0x56, 0x6c, 0xa2, 0x31, + 0xa3, 0xe1, 0x65, 0xbf, 0x36, 0x95, 0xa5, 0x70, 0x03, 0x76, 0xdd, 0x81, 0x2d, 0xb7, 0x60, 0xdd, + 0x3d, 0x58, 0x77, 0x13, 0xd6, 0xdd, 0x85, 0x19, 0xb7, 0x61, 0xc8, 0x7d, 0x18, 0x77, 0x23, 0x2f, + 0xbc, 0xc1, 0x74, 0x97, 0x87, 0x1d, 0x4b, 0x9d, 0x5e, 0xde, 0x3a, 0x17, 0xc3, 0xfd, 0xac, 0x8c, + 0x77, 0x7e, 0xb1, 0xe9, 0x6c, 0x68, 0x9c, 0x8e, 0x6d, 0xe7, 0x43, 0xe6, 0x84, 0xc8, 0x9c, 0x11, + 0x99, 0x53, 0x32, 0xeb, 0x9c, 0x0c, 0x3b, 0xa9, 0x64, 0x16, 0x2e, 0x6d, 0xf8, 0x96, 0x39, 0xbb, + 0x97, 0x3d, 0xa1, 0xb4, 0xd4, 0x4f, 0xab, 0x9f, 0x5e, 0xfd, 0x25, 0x1e, 0x63, 0xa1, 0xa5, 0x5d, + 0xae, 0x31, 0xbd, 0xf4, 0xcf, 0x7e, 0x64, 0x71, 0x69, 0xcd, 0x26, 0xea, 0xf2, 0xea, 0xec, 0xec, + 0xf8, 0xa4, 0x73, 0x7c, 0xf6, 0x7b, 0xfd, 0xfc, 0xe2, 0xea, 0xa4, 0x7e, 0xd9, 0x68, 0x9e, 0x75, + 0x2e, 0xff, 0xef, 0xfc, 0x38, 0x67, 0xb3, 0x2d, 0x60, 0x64, 0xbc, 0x9f, 0xe6, 0xeb, 0x3f, 0x3f, + 0xac, 0x7d, 0xf3, 0xdc, 0xd4, 0x5d, 0xb4, 0x2e, 0x8f, 0x3b, 0xe7, 0xcd, 0x93, 0xc6, 0xef, 0xff, + 0xd7, 0x89, 0xa7, 0x31, 0x67, 0x6d, 0xe0, 0x91, 0x95, 0x6f, 0x6e, 0x6f, 0x4d, 0xa3, 0x44, 0xb7, + 0xc8, 0x9a, 0xe1, 0x2e, 0x49, 0x2f, 0x12, 0x70, 0xd5, 0x5d, 0x96, 0x45, 0xdb, 0x11, 0xd3, 0x1f, + 0x46, 0xd3, 0x7f, 0x4d, 0x34, 0x4f, 0x32, 0xf7, 0x34, 0x4c, 0x1c, 0x4c, 0x89, 0x86, 0x37, 0xba, + 0xff, 0x10, 0x59, 0x90, 0xcc, 0xd3, 0x2f, 0x76, 0x5c, 0x34, 0xa3, 0x93, 0x21, 0x44, 0x33, 0x44, + 0xb3, 0x59, 0x07, 0x3c, 0x59, 0xf9, 0xf6, 0x64, 0xf3, 0xf4, 0xfb, 0xed, 0x08, 0xe7, 0x02, 0x84, + 0x33, 0x84, 0x33, 0x84, 0xb3, 0xcb, 0xc2, 0xd9, 0xb4, 0xc3, 0x4a, 0xbe, 0x38, 0x14, 0xf7, 0x81, + 0x16, 0x9e, 0x50, 0xbd, 0x41, 0x20, 0xe3, 0xa2, 0x9d, 0x96, 0x85, 0x67, 0x6a, 0xc4, 0x8f, 0x56, + 0xbb, 0xdc, 0x17, 0x2c, 0x7d, 0xbd, 0x2d, 0x27, 0x47, 0xe1, 0xec, 0x68, 0x9d, 0x1e, 0x95, 0xf3, + 0x23, 0x77, 0x82, 0xe4, 0xce, 0x90, 0xdc, 0x29, 0xda, 0x8d, 0x42, 0x8c, 0x2c, 0xad, 0x1c, 0x5b, + 0xce, 0x72, 0x99, 0xd3, 0xb4, 0x6f, 0xd1, 0x4b, 0x7c, 0xa7, 0x6d, 0xbb, 0xb6, 0xeb, 0x42, 0xc9, + 0x5c, 0x29, 0xa5, 0x4b, 0xe5, 0x71, 0xad, 0xd4, 0x2e, 0x96, 0xcd, 0xd5, 0xb2, 0xb9, 0x5c, 0x36, + 0xd7, 0x6b, 0xd7, 0x05, 0x5b, 0x76, 0xc5, 0x64, 0x2e, 0x39, 0x19, 0x88, 0xcc, 0x27, 0xa7, 0x16, + 0x3a, 0x91, 0x53, 0x7e, 0xeb, 0x9c, 0xf3, 0x44, 0xc3, 0x51, 0x39, 0x69, 0x0e, 0x67, 0xcd, 0xeb, + 0xb4, 0xb9, 0x9c, 0x37, 0xbb, 0x13, 0x67, 0x77, 0xe6, 0xec, 0x4e, 0x9d, 0xc6, 0xb9, 0x13, 0x39, + 0xf9, 0x64, 0x36, 0xad, 0xed, 0xf2, 0xff, 0x74, 0xdd, 0xae, 0xde, 0xbb, 0x7b, 0x6d, 0x8e, 0x5c, + 0x25, 0x1c, 0x33, 0xd5, 0x2b, 0x3c, 0xc1, 0x9e, 0x0f, 0xd9, 0xb0, 0x56, 0x02, 0x4b, 0x35, 0x9c, + 0x36, 0xfb, 0xcb, 0x26, 0x6a, 0x32, 0xad, 0xd6, 0x11, 0x01, 0x97, 0xe6, 0x08, 0x45, 0x70, 0x04, + 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, 0x76, 0x41, 0x98, 0x0c, 0xe8, 0x47, 0xf4, 0x8b, 0x26, 0xe9, + 0xad, 0x1b, 0x51, 0xaf, 0x16, 0x5a, 0x71, 0xc8, 0x26, 0x12, 0x39, 0x81, 0xc0, 0x0d, 0x40, 0xe0, + 0x06, 0x06, 0x67, 0x00, 0xc2, 0x19, 0xa0, 0x70, 0x06, 0x30, 0x68, 0x81, 0x83, 0x18, 0x40, 0xf8, + 0xc4, 0xe6, 0x02, 0xef, 0xee, 0xa9, 0xe1, 0xfd, 0x8d, 0x08, 0x39, 0x96, 0xfd, 0xfa, 0x35, 0xdb, + 0x57, 0x1e, 0xda, 0x4c, 0xad, 0xf7, 0x55, 0xff, 0xf0, 0xb8, 0xb9, 0x1d, 0xd3, 0xb5, 0xe5, 0x37, + 0x0c, 0xe1, 0x53, 0x97, 0x61, 0xb8, 0x96, 0xfd, 0xca, 0xd7, 0x61, 0xa1, 0xee, 0xfa, 0x86, 0x78, + 0xc0, 0x79, 0xd3, 0xf4, 0x1f, 0x61, 0x9a, 0x6f, 0x4c, 0xd3, 0x74, 0x8d, 0xff, 0x4c, 0xd8, 0xe8, + 0x87, 0xed, 0x18, 0xb5, 0xfd, 0x21, 0x9b, 0xf7, 0x47, 0xe8, 0x63, 0xe8, 0xb7, 0x54, 0x53, 0x0c, + 0x8b, 0x78, 0x6b, 0x15, 0x2a, 0x1a, 0x2a, 0x1a, 0x2a, 0x1a, 0x2a, 0x1a, 0x2a, 0x9a, 0x70, 0xdd, + 0x1b, 0xe9, 0x21, 0xb2, 0xae, 0xa7, 0x5f, 0xa7, 0xf7, 0xc8, 0xba, 0x73, 0xbf, 0x75, 0x32, 0xda, + 0x52, 0x8f, 0x94, 0xb5, 0x6d, 0xe0, 0x90, 0xf1, 0x1a, 0x4c, 0xb7, 0xcb, 0x58, 0xf9, 0x42, 0x36, + 0xad, 0x97, 0xcb, 0x66, 0x08, 0x04, 0xe6, 0x10, 0x81, 0x1b, 0x8b, 0xbd, 0x82, 0xc5, 0xee, 0xe6, + 0x62, 0x47, 0x4f, 0x9d, 0x8d, 0xec, 0xa9, 0xb3, 0x61, 0xae, 0x0f, 0x31, 0xa0, 0x8d, 0x1a, 0x89, + 0x2a, 0x21, 0xc4, 0x52, 0x69, 0x94, 0x9f, 0x8e, 0x6b, 0xb7, 0x74, 0x4a, 0x5c, 0x10, 0x64, 0xfa, + 0xef, 0xfe, 0xdb, 0xa3, 0xaf, 0x6f, 0x7f, 0x60, 0xb2, 0xd4, 0x0a, 0xbf, 0xf5, 0x6c, 0xf6, 0x89, + 0x95, 0x3f, 0xc5, 0x13, 0x61, 0xe8, 0x31, 0x77, 0x22, 0x23, 0x5d, 0xd7, 0x9a, 0xe8, 0x94, 0xcc, + 0xa9, 0x54, 0xc7, 0x7d, 0x71, 0x2f, 0xe2, 0x03, 0xdf, 0x6a, 0xd8, 0xef, 0x13, 0x24, 0xdc, 0x9e, + 0xfa, 0x8f, 0xf4, 0x83, 0x36, 0xc3, 0x9e, 0x08, 0x45, 0xef, 0xf3, 0xd3, 0x74, 0xc8, 0x8d, 0xb6, + 0x49, 0x62, 0x1f, 0xe9, 0x94, 0x6f, 0xcc, 0x91, 0xa4, 0x84, 0x87, 0xc3, 0xae, 0x56, 0x53, 0xa9, + 0xf2, 0xf9, 0x6e, 0xd0, 0x69, 0xc9, 0x9b, 0xce, 0x78, 0x59, 0x5e, 0x08, 0xdd, 0xb9, 0x9c, 0x5c, + 0xf7, 0xf1, 0xeb, 0x7b, 0x9a, 0xfe, 0xac, 0x73, 0x31, 0xb9, 0x87, 0x4e, 0x6b, 0x72, 0xc9, 0xc7, + 0x24, 0xc9, 0xf8, 0x23, 0x1c, 0xf6, 0xa6, 0x5c, 0x13, 0xac, 0x6b, 0xc1, 0x8e, 0x25, 0x99, 0x7f, + 0xce, 0x16, 0x9e, 0x71, 0x2e, 0x12, 0x77, 0x63, 0xc8, 0xf0, 0xfa, 0x32, 0xa2, 0xa8, 0x4e, 0x32, + 0x3f, 0x1c, 0x4a, 0x93, 0x2c, 0x0e, 0x5c, 0xa0, 0x34, 0xc9, 0xea, 0xac, 0x12, 0xa5, 0x49, 0xb6, + 0x18, 0xad, 0xac, 0x97, 0x26, 0x79, 0xed, 0xbf, 0xe8, 0xea, 0x92, 0xcc, 0x8d, 0x8a, 0xa2, 0x24, + 0xae, 0x39, 0x53, 0x1e, 0xa7, 0x4a, 0xed, 0x5c, 0xd9, 0x9c, 0x2c, 0x9b, 0xb3, 0x65, 0x73, 0xba, + 0xd9, 0x08, 0xf1, 0x90, 0x15, 0x25, 0x91, 0x2a, 0xd2, 0xbe, 0xea, 0x8a, 0x75, 0xba, 0x23, 0xaf, + 0xbc, 0xd6, 0x5f, 0x0f, 0x8e, 0xd2, 0x24, 0x9b, 0xe6, 0xb2, 0x79, 0x5d, 0x37, 0x97, 0x0b, 0x67, + 0x77, 0xe5, 0xec, 0x2e, 0x9d, 0xdd, 0xb5, 0xd3, 0xb8, 0x78, 0x22, 0x57, 0x9f, 0xcc, 0x26, 0x4a, + 0x93, 0xd8, 0x76, 0x8d, 0x6f, 0x4b, 0x93, 0xbc, 0x86, 0x1f, 0x54, 0x27, 0x79, 0xaf, 0x8e, 0x8b, + 0x18, 0x0a, 0x94, 0xcc, 0x46, 0xce, 0x78, 0x8d, 0x12, 0x90, 0x05, 0x90, 0x05, 0x90, 0x05, 0x90, + 0x05, 0x7e, 0x7d, 0xf8, 0xd6, 0xe9, 0xf3, 0x1d, 0xb4, 0x9a, 0x5d, 0x00, 0xcf, 0x39, 0xab, 0x02, + 0xce, 0x59, 0x65, 0x1c, 0x1a, 0xb8, 0x21, 0xc2, 0x19, 0xa8, 0x70, 0x06, 0x32, 0x9c, 0x81, 0x0e, + 0x5a, 0x08, 0x21, 0x86, 0x12, 0x36, 0x48, 0x49, 0x06, 0x96, 0xaa, 0x27, 0xf8, 0x4a, 0x03, 0xbc, + 0x0a, 0x46, 0x8e, 0x2f, 0x83, 0xc9, 0xc4, 0x79, 0xeb, 0x12, 0xb0, 0xc1, 0x8d, 0x0b, 0xb0, 0xe3, + 0x16, 0xfc, 0xb8, 0x02, 0x43, 0xce, 0xc1, 0x91, 0x73, 0xb0, 0xe4, 0x1c, 0x3c, 0xf1, 0xc0, 0x14, + 0x13, 0x5c, 0x25, 0xb3, 0xcf, 0x76, 0x3c, 0x38, 0xe5, 0x37, 0xe8, 0xc3, 0xa8, 0x4b, 0xd5, 0x4a, + 0x95, 0xf7, 0xe8, 0xd8, 0xdb, 0x30, 0xeb, 0x18, 0x58, 0xb7, 0xe4, 0x44, 0x0f, 0xc3, 0x32, 0x20, + 0x2e, 0x17, 0xbd, 0x5c, 0xa1, 0x13, 0x96, 0x8f, 0x76, 0x44, 0xa7, 0xa7, 0x09, 0x54, 0x11, 0x04, + 0x0a, 0x04, 0x0a, 0x04, 0x0a, 0x04, 0x6a, 0x63, 0x08, 0x14, 0x97, 0xee, 0x77, 0x44, 0xff, 0x3b, + 0x15, 0x07, 0x70, 0x24, 0x1e, 0xe0, 0x4c, 0x5c, 0xc0, 0x25, 0x78, 0x73, 0x13, 0xe6, 0x5c, 0x83, + 0x3b, 0x67, 0x61, 0xcf, 0x59, 0xf8, 0x73, 0x16, 0x06, 0x79, 0xe1, 0x90, 0x19, 0x16, 0xdd, 0x89, + 0x2f, 0xa4, 0xfc, 0xce, 0x50, 0x2a, 0x5d, 0x29, 0xb9, 0xe0, 0x73, 0xa6, 0x28, 0x75, 0xe8, 0xc0, + 0xa5, 0xf0, 0x56, 0xfc, 0x7e, 0xfb, 0xc7, 0x0d, 0x1f, 0xbc, 0xe3, 0x4a, 0x45, 0x70, 0x47, 0xe9, + 0x4d, 0xea, 0xb2, 0x1c, 0xa9, 0x18, 0x9e, 0xba, 0x2e, 0x87, 0xaa, 0x33, 0x3b, 0xe6, 0x9e, 0xe7, + 0x4d, 0xdd, 0x7f, 0x84, 0xa9, 0xbf, 0xd3, 0xd4, 0x0b, 0x87, 0xa5, 0x52, 0xa5, 0x5a, 0x2a, 0xe5, + 0xab, 0x07, 0xd5, 0x7c, 0xad, 0x5c, 0x2e, 0x54, 0x0a, 0x65, 0x58, 0xff, 0x66, 0x50, 0x23, 0x77, + 0xae, 0xa2, 0xfd, 0x61, 0x3b, 0xef, 0x9f, 0xb3, 0x9f, 0x42, 0x3f, 0xe8, 0xfa, 0x7d, 0x4f, 0x2a, + 0x2d, 0xc2, 0x5b, 0x9f, 0xf6, 0x00, 0xd7, 0x4f, 0x29, 0xea, 0x82, 0x6b, 0x43, 0x40, 0x05, 0x01, + 0x15, 0x04, 0x54, 0x10, 0x50, 0x41, 0x40, 0x05, 0x01, 0x15, 0x07, 0x03, 0x2a, 0x07, 0x45, 0x87, + 0x02, 0x2a, 0x55, 0x04, 0x54, 0x10, 0x50, 0x41, 0x40, 0x05, 0x01, 0x15, 0x04, 0x54, 0x36, 0xce, + 0xd4, 0x5d, 0x69, 0xe9, 0x86, 0x30, 0x0a, 0xc2, 0x28, 0x08, 0xa3, 0xfc, 0x72, 0x18, 0xe5, 0x75, + 0xa3, 0x17, 0xd7, 0xc2, 0x28, 0x6e, 0x34, 0xa1, 0x41, 0x18, 0x05, 0x61, 0x14, 0x84, 0x51, 0x10, + 0x46, 0x41, 0x18, 0x05, 0x61, 0x94, 0x85, 0x7e, 0xc7, 0x21, 0x9c, 0xda, 0x71, 0xa4, 0x8f, 0xd2, + 0x0b, 0x4e, 0x38, 0xd2, 0x4f, 0x29, 0xb9, 0xa0, 0x6d, 0x69, 0xa2, 0x06, 0x6a, 0xed, 0x00, 0xb5, + 0xae, 0x38, 0x4c, 0xad, 0x2b, 0xa0, 0xd6, 0xa0, 0xd6, 0xa0, 0xd6, 0xa0, 0xd6, 0xa0, 0xd6, 0xa0, + 0xd6, 0x0e, 0x53, 0xeb, 0x0a, 0xa8, 0xf5, 0x66, 0x51, 0x6b, 0xb4, 0x2c, 0xdd, 0xaa, 0x96, 0xa5, + 0x10, 0x1a, 0x7c, 0x42, 0xe3, 0x7e, 0xd0, 0x8f, 0xbc, 0x9b, 0xc0, 0x21, 0x79, 0x91, 0x5c, 0x11, + 0x44, 0x05, 0x44, 0x05, 0x44, 0x05, 0x44, 0x05, 0x44, 0x05, 0x44, 0x85, 0x63, 0xa2, 0xe2, 0x26, + 0x08, 0xfa, 0xc2, 0x57, 0x2e, 0xe9, 0x89, 0x02, 0xc8, 0x13, 0x0f, 0x79, 0xd2, 0x5d, 0xc7, 0xb8, + 0x93, 0xee, 0x82, 0x3a, 0x81, 0x3a, 0x81, 0x3a, 0x81, 0x3a, 0x81, 0x3a, 0x81, 0x3a, 0xb9, 0x78, + 0x62, 0xe4, 0xd0, 0x21, 0xe2, 0x54, 0xc6, 0x81, 0x91, 0x37, 0x7f, 0x70, 0x60, 0x64, 0x13, 0xd8, + 0x4d, 0xea, 0xb2, 0x70, 0x60, 0x64, 0xd3, 0xbc, 0xf3, 0xbc, 0xa9, 0xe3, 0xc0, 0xc8, 0xbb, 0x4d, + 0xbd, 0x0a, 0x53, 0xdf, 0x0c, 0x1a, 0xe4, 0xce, 0x55, 0x60, 0x8f, 0x89, 0x2b, 0x4c, 0xa2, 0xfb, + 0xae, 0xc5, 0x49, 0x74, 0x1f, 0x81, 0x12, 0x04, 0x4a, 0x10, 0x28, 0x41, 0xa0, 0x04, 0x81, 0x12, + 0x04, 0x4a, 0x10, 0x28, 0x41, 0xa0, 0x04, 0x81, 0x12, 0x04, 0x4a, 0xa0, 0x1e, 0x11, 0x28, 0xc9, + 0x9a, 0xa9, 0x17, 0xcb, 0x28, 0xa9, 0x81, 0x50, 0x09, 0x42, 0x25, 0xce, 0x87, 0x4a, 0x42, 0x71, + 0x1f, 0x68, 0xe1, 0x68, 0x4d, 0x8d, 0x45, 0x17, 0x87, 0x00, 0x0a, 0x02, 0x28, 0x08, 0xa0, 0x20, + 0x80, 0x82, 0x00, 0x0a, 0x02, 0x28, 0x28, 0xaa, 0xf1, 0x2b, 0x58, 0x85, 0x93, 0x7f, 0x8b, 0x2e, + 0x08, 0x45, 0x35, 0x40, 0xae, 0xe9, 0xc8, 0x75, 0xc5, 0x65, 0x72, 0x8d, 0xb2, 0x1a, 0x20, 0xd7, + 0x20, 0xd7, 0x20, 0xd7, 0x20, 0xd7, 0x20, 0xd7, 0x2e, 0x93, 0x6b, 0x94, 0xd5, 0xd8, 0x30, 0x72, + 0x8d, 0xb2, 0x1a, 0x28, 0xab, 0x01, 0xa9, 0x41, 0xb2, 0xe2, 0x22, 0x97, 0x5a, 0x8a, 0x45, 0xe8, + 0x21, 0x06, 0x29, 0x01, 0x29, 0x01, 0x29, 0x01, 0x29, 0x01, 0x29, 0xe1, 0x9e, 0x94, 0x88, 0x42, + 0x2f, 0x92, 0x3d, 0x4f, 0x8f, 0x2f, 0xcc, 0x21, 0x25, 0x51, 0x73, 0xe0, 0x5a, 0xa6, 0x0f, 0x0b, + 0xe9, 0x8e, 0x4b, 0x4c, 0x67, 0x72, 0x8e, 0xa3, 0xef, 0xdf, 0x88, 0x7e, 0xce, 0xa1, 0x0c, 0x35, + 0x87, 0x2c, 0xc8, 0x4d, 0x4b, 0x72, 0xcf, 0xa2, 0x52, 0x96, 0xe5, 0x4c, 0x63, 0xc3, 0x65, 0xd6, + 0x55, 0x75, 0xf0, 0xd2, 0xdc, 0x4a, 0xcf, 0x76, 0xdf, 0xda, 0x92, 0x89, 0x73, 0x31, 0x7d, 0xdb, + 0x51, 0x0d, 0xf7, 0xd3, 0xcb, 0x4c, 0xda, 0xf3, 0x57, 0x1c, 0xbf, 0x50, 0x87, 0x53, 0x60, 0x1d, + 0x23, 0xad, 0xff, 0xbd, 0x76, 0x1c, 0xcc, 0x07, 0xdf, 0xf8, 0xb5, 0x93, 0x2f, 0x1d, 0x96, 0xab, + 0x65, 0x2c, 0xa0, 0x6c, 0x68, 0xce, 0xcd, 0xb9, 0xaa, 0xf6, 0x07, 0xb8, 0xbd, 0x4d, 0xa4, 0xcb, + 0x42, 0x0d, 0xef, 0x45, 0xe8, 0x8f, 0x57, 0xa3, 0xc3, 0x9c, 0xb9, 0x50, 0x72, 0xf0, 0xda, 0x8e, + 0xd5, 0xf0, 0x7e, 0x0c, 0x60, 0x6e, 0x2d, 0x46, 0x77, 0xae, 0xc6, 0x0d, 0x97, 0xe0, 0x88, 0x2b, + 0x70, 0x30, 0x06, 0xe3, 0x58, 0x26, 0x40, 0x6a, 0xcd, 0x1f, 0x3a, 0x74, 0x4d, 0xae, 0x65, 0x06, + 0x24, 0x17, 0x86, 0x0c, 0x81, 0x6d, 0xce, 0x10, 0x70, 0xcc, 0xd5, 0xfe, 0x7f, 0xf6, 0xfe, 0xb5, + 0xb9, 0x6d, 0xa3, 0xdb, 0x16, 0x85, 0xbf, 0xfb, 0x57, 0xb0, 0x58, 0x4f, 0xd5, 0x9b, 0xbc, 0xdb, + 0xb0, 0x48, 0xea, 0xee, 0x2f, 0xbb, 0x28, 0x89, 0x72, 0x74, 0x22, 0x91, 0xdc, 0x22, 0xed, 0x24, + 0xdb, 0xd6, 0xa3, 0x6a, 0x01, 0x4d, 0xaa, 0x8f, 0x41, 0x00, 0x01, 0x9a, 0xb2, 0xb5, 0x12, 0xfd, + 0xf7, 0x53, 0x04, 0xaf, 0x12, 0x75, 0x01, 0xfa, 0x02, 0xa0, 0xc1, 0x91, 0x5a, 0xab, 0x1e, 0x59, + 0x36, 0x1a, 0xe8, 0xcb, 0x9c, 0x73, 0xcc, 0xd1, 0xb3, 0x47, 0xa3, 0x62, 0x62, 0xf3, 0x82, 0x5c, + 0x95, 0x17, 0x61, 0x5f, 0x6a, 0x11, 0xd4, 0x0a, 0xb0, 0x19, 0x85, 0x9a, 0x89, 0xa7, 0xc1, 0x13, + 0x35, 0x13, 0x6f, 0x7c, 0x15, 0x6a, 0x26, 0x12, 0x7e, 0x18, 0x6a, 0x26, 0x8c, 0x8a, 0xc9, 0xa8, + 0x99, 0x28, 0x36, 0xdf, 0x52, 0x24, 0x7e, 0xa5, 0x20, 0x7c, 0x4a, 0x8e, 0x20, 0xee, 0xdd, 0x06, + 0x99, 0x68, 0xb5, 0xe9, 0x79, 0x3e, 0x9f, 0xda, 0x41, 0x9e, 0x06, 0x5a, 0x8d, 0xec, 0x5b, 0x3a, + 0x22, 0x01, 0xe1, 0xb7, 0x13, 0xf3, 0xdc, 0xf2, 0x03, 0xea, 0xd9, 0x31, 0x70, 0x9a, 0xf8, 0xef, + 0xad, 0xc9, 0xff, 0x87, 0xec, 0x66, 0x8b, 0x70, 0x1e, 0x5a, 0x11, 0xe5, 0xd1, 0xe2, 0xa7, 0x2d, + 0x3e, 0xf6, 0x3c, 0xea, 0x5a, 0xd4, 0xb3, 0x49, 0x10, 0x8d, 0xdd, 0xb8, 0x2b, 0xb3, 0x5f, 0x46, + 0xb3, 0xff, 0xdd, 0x8a, 0xc6, 0x37, 0xdc, 0xbd, 0x8b, 0x66, 0xff, 0xbb, 0x15, 0xd1, 0xe1, 0x24, + 0x46, 0x58, 0x2e, 0x8b, 0x78, 0xf4, 0xe8, 0x4f, 0xf3, 0x3f, 0x2c, 0x7e, 0xbb, 0x15, 0x71, 0xc2, + 0x69, 0x3e, 0xf1, 0x23, 0xfb, 0x85, 0x98, 0xed, 0x1b, 0x33, 0x5e, 0xf2, 0x13, 0x34, 0x15, 0xf3, + 0x6d, 0x9e, 0x43, 0xb3, 0x06, 0x52, 0xd5, 0x73, 0x16, 0xf1, 0x26, 0xe7, 0x61, 0x2e, 0x46, 0x56, + 0xbd, 0x60, 0x5e, 0xcb, 0xa5, 0xf1, 0xc2, 0xae, 0x7e, 0xac, 0x78, 0x63, 0xd7, 0x7d, 0x9f, 0xc3, + 0x47, 0x90, 0x9f, 0xf9, 0x7f, 0x44, 0x27, 0x74, 0x68, 0x48, 0x9d, 0xa3, 0xfb, 0xd9, 0x27, 0x94, + 0x7a, 0xc1, 0xe7, 0xec, 0xdb, 0x8b, 0xea, 0xd3, 0x73, 0x00, 0x7c, 0xd5, 0x88, 0x87, 0x63, 0x9b, + 0x7b, 0x33, 0xf4, 0x79, 0x34, 0x0c, 0xae, 0x2f, 0xd9, 0xcd, 0xf5, 0xc4, 0x23, 0xf4, 0x28, 0xbf, + 0xee, 0xc7, 0x5d, 0x6a, 0xad, 0x76, 0x77, 0xf6, 0xbb, 0xeb, 0x5e, 0xdc, 0xbd, 0xeb, 0xde, 0xf4, + 0xd3, 0x27, 0x6e, 0x64, 0xfe, 0x73, 0xb6, 0x41, 0x29, 0xbb, 0xd0, 0x90, 0xcd, 0x9b, 0x32, 0xb2, + 0xc5, 0xbc, 0x6c, 0xb0, 0x68, 0xb6, 0x97, 0xcd, 0x62, 0xd5, 0xbf, 0x74, 0x32, 0x58, 0x36, 0xd5, + 0x29, 0xe4, 0xcc, 0x6a, 0xb5, 0x2c, 0x8f, 0x11, 0xc4, 0xaf, 0xcd, 0xc8, 0x2c, 0xe6, 0x09, 0x6f, + 0x46, 0xaf, 0x5b, 0x70, 0xb0, 0x8d, 0x8c, 0x5e, 0x98, 0x03, 0xd7, 0x9a, 0x2f, 0xa7, 0x9a, 0x17, + 0x77, 0x9a, 0x3b, 0x47, 0x9a, 0x3b, 0x17, 0x9a, 0x3b, 0xe7, 0x59, 0xae, 0x80, 0x7d, 0xc2, 0xb2, + 0x4d, 0xd2, 0xaa, 0xcc, 0x8b, 0x38, 0xf1, 0x6c, 0x6a, 0xe5, 0x70, 0xe4, 0x79, 0x59, 0x84, 0xb2, + 0xf2, 0x11, 0x59, 0xa7, 0xe5, 0xb9, 0x6c, 0xd3, 0xe5, 0xb6, 0x2d, 0x97, 0xe7, 0x36, 0x5c, 0x31, + 0xb6, 0xdd, 0xf2, 0xde, 0x66, 0x2b, 0xcc, 0xb6, 0x5a, 0x61, 0xb6, 0xd1, 0x0a, 0xb3, 0x6d, 0x56, + 0x6e, 0x02, 0x32, 0xb7, 0x6d, 0xb0, 0x47, 0xa7, 0xf2, 0xf6, 0x76, 0xf2, 0xb0, 0xf9, 0x99, 0x97, + 0xcf, 0xa1, 0x98, 0x30, 0xe7, 0x53, 0x75, 0x39, 0xee, 0xa9, 0x14, 0xe1, 0x54, 0x5c, 0x51, 0xaa, + 0x70, 0x0a, 0x72, 0x69, 0x49, 0x91, 0xce, 0xdc, 0xe4, 0x59, 0xad, 0x56, 0x84, 0x43, 0x67, 0x45, + 0x5b, 0x9a, 0xf5, 0x83, 0x9d, 0x9d, 0xbd, 0xfd, 0x9d, 0x9d, 0xda, 0xfe, 0xf6, 0x7e, 0xed, 0x70, + 0x77, 0xb7, 0xbe, 0x57, 0xdf, 0xc5, 0x6a, 0xcd, 0x07, 0x1a, 0xe4, 0xf7, 0xd6, 0xab, 0xb2, 0xd2, + 0xfa, 0x19, 0x72, 0x51, 0x3f, 0x28, 0x1b, 0xde, 0xf2, 0xfc, 0xb2, 0xe9, 0xd9, 0xfb, 0x91, 0x48, + 0x23, 0x91, 0x46, 0x22, 0x8d, 0x44, 0x1a, 0x89, 0x74, 0x29, 0x13, 0xe9, 0x5c, 0xe4, 0x6d, 0x72, + 0x94, 0xaf, 0x41, 0x22, 0x8d, 0x6c, 0x05, 0x89, 0x34, 0x12, 0xe9, 0xc2, 0x2f, 0xcd, 0x9d, 0xc6, + 0xe1, 0xce, 0xe1, 0xde, 0x7e, 0xe3, 0x10, 0xe9, 0x33, 0xd2, 0xe7, 0xb2, 0xa4, 0xcf, 0xa8, 0x8a, + 0x53, 0xf0, 0xde, 0xa2, 0x54, 0xc5, 0x65, 0x77, 0xa8, 0x20, 0x83, 0x92, 0xb8, 0x77, 0x06, 0xaf, + 0xc8, 0xe5, 0xa1, 0x80, 0xac, 0xea, 0x1f, 0xb2, 0x3d, 0x0a, 0x90, 0x4b, 0xe9, 0x7f, 0x2e, 0xa5, + 0xfe, 0xd9, 0x96, 0xf6, 0xeb, 0x5e, 0x96, 0x19, 0x3b, 0xc8, 0x82, 0x38, 0xc6, 0x6a, 0x26, 0xd5, + 0xb5, 0xca, 0x2a, 0xf1, 0xf5, 0x7a, 0x70, 0x7d, 0x7e, 0x55, 0x4f, 0xcb, 0x9a, 0x4c, 0x22, 0x2b, + 0x53, 0xc8, 0xcf, 0x04, 0xf4, 0x2c, 0x23, 0xf5, 0x93, 0xac, 0x61, 0x82, 0x35, 0xd7, 0xba, 0x67, + 0x52, 0xdb, 0xae, 0xb9, 0x96, 0x5d, 0x7b, 0xed, 0x7a, 0x16, 0xfb, 0x28, 0xd9, 0xee, 0x97, 0x64, + 0xb5, 0x2f, 0x92, 0xf9, 0xfe, 0x47, 0xe6, 0xfb, 0x1c, 0x99, 0xef, 0x67, 0x98, 0x15, 0x9a, 0x74, + 0xd7, 0x8a, 0x57, 0x6f, 0x98, 0xe7, 0x30, 0x6f, 0x68, 0x65, 0x71, 0x1d, 0xd6, 0xc2, 0x46, 0x57, + 0x5f, 0xaa, 0x3b, 0xfb, 0xca, 0x84, 0x38, 0xcc, 0x6c, 0x8b, 0x3a, 0xcb, 0x2d, 0xe9, 0x7c, 0xb6, + 0xa0, 0xb3, 0xde, 0x72, 0xce, 0x6d, 0x8b, 0x39, 0xb7, 0x2d, 0xe5, 0xdc, 0xb6, 0x90, 0xcd, 0xe6, + 0x71, 0x32, 0xdb, 0x12, 0xce, 0xe9, 0xda, 0xa5, 0x2c, 0x2f, 0xc5, 0xc9, 0xf6, 0xb2, 0x9b, 0x1c, + 0x4e, 0x48, 0xe6, 0x72, 0xed, 0x51, 0x1e, 0xd7, 0x1a, 0xe5, 0x73, 0x6d, 0x11, 0xea, 0x32, 0xb2, + 0x7d, 0x35, 0xea, 0x32, 0x72, 0xfc, 0xaf, 0x70, 0x55, 0xe4, 0x7b, 0xd8, 0xf4, 0xce, 0x08, 0x74, + 0xbc, 0xbe, 0x36, 0x51, 0x98, 0xb1, 0xbe, 0x36, 0x8b, 0x70, 0x2d, 0x0e, 0xaa, 0x32, 0x4a, 0x5f, + 0x95, 0xf1, 0x7e, 0x53, 0xe0, 0x4e, 0xbe, 0x32, 0xa6, 0x79, 0xca, 0x96, 0xe6, 0x24, 0x53, 0x9a, + 0xdd, 0xdb, 0xae, 0xca, 0x54, 0xf0, 0x93, 0x43, 0x8e, 0x97, 0xd3, 0xb5, 0x2a, 0x79, 0x5c, 0x9b, + 0x92, 0xdb, 0xb5, 0x28, 0xb8, 0xf6, 0x64, 0x23, 0xae, 0x3d, 0xb9, 0x2a, 0x49, 0xa5, 0xda, 0x95, + 0xa9, 0xf5, 0x1a, 0x1a, 0xb7, 0x4a, 0x6d, 0xdf, 0xf5, 0xc3, 0x28, 0xbb, 0xcd, 0xa5, 0xd9, 0xfb, + 0xb0, 0xaf, 0x94, 0xce, 0xc1, 0x63, 0x5f, 0x49, 0xf5, 0x0a, 0xc1, 0xbe, 0x12, 0xf6, 0x95, 0x12, + 0x8c, 0x5a, 0xf6, 0xfb, 0x4a, 0x99, 0x51, 0xd8, 0x19, 0x52, 0xd6, 0x19, 0x53, 0xd4, 0x19, 0xa6, + 0x1b, 0x79, 0x50, 0xd0, 0x79, 0x9d, 0xf4, 0xcf, 0xe9, 0xe8, 0x5f, 0x9e, 0x84, 0x5d, 0x96, 0xaa, + 0x15, 0x79, 0x30, 0xc6, 0x79, 0x2f, 0xa5, 0xbc, 0x8e, 0xea, 0xe5, 0xba, 0xa6, 0x90, 0x4e, 0x15, + 0x20, 0xb0, 0xe3, 0x18, 0x8e, 0x9e, 0x97, 0x66, 0x7b, 0x0c, 0xc7, 0xc8, 0x9c, 0x7b, 0x92, 0x70, + 0xd0, 0x90, 0x7a, 0x59, 0x94, 0x28, 0xcf, 0x51, 0xe5, 0xca, 0x3b, 0x35, 0x1b, 0xd6, 0x09, 0x1d, + 0x90, 0xb1, 0x1b, 0xa7, 0x19, 0xf5, 0x5a, 0x0d, 0x99, 0x3e, 0x32, 0x7d, 0x64, 0xfa, 0xc8, 0xf4, + 0x91, 0xe9, 0x23, 0xd3, 0x47, 0xa6, 0x8f, 0x4c, 0x1f, 0x99, 0x3e, 0x32, 0x7d, 0x64, 0xfa, 0xc8, + 0xf4, 0x8d, 0x4f, 0xe2, 0x78, 0x16, 0x70, 0x61, 0x01, 0x15, 0x32, 0x38, 0x65, 0x82, 0x54, 0x0a, + 0xa9, 0x14, 0x52, 0x29, 0xa4, 0x52, 0x46, 0xa6, 0x52, 0xcc, 0xa1, 0x1e, 0x67, 0xfc, 0x3e, 0xa4, + 0x83, 0x2c, 0x0f, 0xe3, 0x65, 0x80, 0x65, 0xaa, 0x67, 0xb3, 0xae, 0x1d, 0x91, 0x28, 0x87, 0x5b, + 0x21, 0xfb, 0x9f, 0xdb, 0xed, 0xd6, 0xf9, 0x75, 0xab, 0x7d, 0xdc, 0xec, 0xf6, 0x3e, 0x9f, 0x37, + 0xfb, 0x67, 0x9d, 0xf6, 0x75, 0xef, 0xf3, 0x51, 0xff, 0xfc, 0xcb, 0x75, 0xff, 0xaf, 0x6e, 0x2b, + 0x2b, 0x0f, 0x10, 0xc3, 0xc8, 0x28, 0xd3, 0x0a, 0xc7, 0x9c, 0xc4, 0xe3, 0x67, 0x23, 0x7e, 0xdc, + 0x39, 0xef, 0x5c, 0x56, 0xcb, 0x98, 0xfe, 0xe4, 0x34, 0xae, 0xbd, 0xcb, 0x7e, 0xeb, 0xba, 0x7b, + 0xd9, 0x3a, 0x6d, 0x5d, 0xb6, 0xda, 0xc7, 0x2d, 0x0c, 0xad, 0xe2, 0xa1, 0x3d, 0x3a, 0x6b, 0x9f, + 0x9c, 0xb5, 0x3f, 0x5d, 0xf7, 0xce, 0x4e, 0x30, 0xb6, 0xca, 0xdd, 0xc1, 0x65, 0xeb, 0xa2, 0xd3, + 0x6f, 0x5d, 0xb7, 0xda, 0x27, 0xdd, 0xce, 0x59, 0xbb, 0x8f, 0x11, 0x56, 0xbc, 0x7a, 0x7b, 0xad, + 0x4f, 0x17, 0xad, 0x76, 0xff, 0xfa, 0xfc, 0xac, 0xd7, 0x2f, 0xdb, 0xd5, 0xa9, 0x57, 0xa6, 0xc3, + 0x55, 0xc8, 0x0d, 0x55, 0x4a, 0xab, 0x84, 0xa7, 0x4f, 0x0a, 0xd7, 0x0c, 0x05, 0x3c, 0xad, 0x3c, + 0x52, 0x16, 0xfc, 0x91, 0x66, 0xde, 0x48, 0x3b, 0x5f, 0x04, 0xfd, 0x3b, 0x63, 0xf8, 0x20, 0xe8, + 0xdf, 0x15, 0x2b, 0x20, 0x69, 0xe7, 0x79, 0x16, 0x76, 0xe3, 0x52, 0x32, 0xd0, 0xcb, 0xed, 0x2c, + 0x38, 0x1d, 0x8d, 0x9b, 0xe4, 0xd5, 0xee, 0x2c, 0xa6, 0x7e, 0xf8, 0x30, 0x0d, 0x7c, 0x5b, 0xb1, + 0x5f, 0x36, 0x25, 0xfa, 0xbd, 0x2b, 0xf0, 0x9a, 0x9c, 0x0b, 0xb9, 0x6b, 0x08, 0x74, 0x7a, 0x4b, + 0x45, 0x33, 0x29, 0x0d, 0xcd, 0xa4, 0x14, 0x54, 0x6f, 0xe9, 0xa7, 0xea, 0xf5, 0xa2, 0x19, 0x4c, + 0x67, 0x09, 0xa2, 0xab, 0x5a, 0x84, 0x99, 0xa5, 0x64, 0xd2, 0xd5, 0xfa, 0x34, 0x75, 0x9e, 0x47, + 0x4d, 0x4b, 0x8a, 0xd6, 0xa2, 0xae, 0x35, 0x98, 0xc9, 0xda, 0x53, 0x33, 0xc3, 0xf2, 0xf3, 0xa1, + 0x60, 0x2e, 0xd4, 0xe6, 0x60, 0x3a, 0x72, 0x2e, 0xc5, 0x39, 0x96, 0xf2, 0x9c, 0x4a, 0x47, 0x0e, + 0xa5, 0x37, 0x67, 0xd2, 0x95, 0x23, 0x69, 0xcf, 0x89, 0xb4, 0xe7, 0x40, 0xda, 0x73, 0x9e, 0x62, + 0xf9, 0x60, 0xe5, 0x39, 0x8c, 0xc6, 0x9c, 0x45, 0x47, 0x8e, 0xa2, 0x33, 0x27, 0x51, 0xe0, 0xdd, + 0xdf, 0xe5, 0xb8, 0x46, 0x14, 0xe6, 0x14, 0x6a, 0x73, 0x08, 0x2d, 0x39, 0x83, 0x96, 0x1c, 0x41, + 0x6d, 0x4e, 0x20, 0x3b, 0x9f, 0x8a, 0xf1, 0x96, 0x56, 0x9c, 0xa5, 0xc0, 0x6d, 0x08, 0x83, 0x78, + 0x39, 0xeb, 0x17, 0xb7, 0x59, 0xb1, 0x27, 0x05, 0x57, 0x85, 0xaa, 0xd5, 0xa0, 0x67, 0x15, 0x88, + 0x4d, 0x41, 0xfa, 0x01, 0x4c, 0xf7, 0x44, 0xca, 0xa1, 0x96, 0x1d, 0x62, 0xb5, 0x43, 0x2b, 0x60, + 0x51, 0xe9, 0x2d, 0x28, 0xdd, 0xbc, 0x25, 0x1f, 0xfd, 0x64, 0xff, 0x32, 0xe1, 0xfc, 0x2c, 0x6f, + 0x3d, 0x74, 0x68, 0x52, 0x7c, 0x2a, 0x16, 0xc1, 0xa4, 0x22, 0x95, 0x54, 0x44, 0x12, 0x8b, 0x3c, + 0x49, 0x07, 0x50, 0x70, 0x61, 0x0b, 0x2f, 0xe8, 0x14, 0x6b, 0xf7, 0xf5, 0x35, 0x9b, 0x6c, 0x7d, + 0xbe, 0xbd, 0xda, 0x5e, 0xff, 0x17, 0x6f, 0x0c, 0x63, 0xda, 0xe1, 0x4b, 0x3b, 0x6c, 0xaf, 0x77, + 0xf2, 0xe5, 0x4f, 0x7f, 0xe5, 0xb3, 0xab, 0xb6, 0x3f, 0x1a, 0x8d, 0x3d, 0xc6, 0x19, 0x7d, 0x5b, + 0x2d, 0x6d, 0x45, 0xed, 0x6c, 0xf9, 0xd0, 0x1b, 0x43, 0x92, 0xec, 0x16, 0xb1, 0xc4, 0x99, 0x7b, + 0x9a, 0x8c, 0x5c, 0x2c, 0xd3, 0x4e, 0x9b, 0x41, 0x0b, 0x67, 0xc6, 0xc2, 0x19, 0xaf, 0x70, 0x26, + 0x2b, 0xb7, 0xb8, 0x93, 0xde, 0x0a, 0xb5, 0x58, 0x1d, 0xf7, 0xc9, 0xc7, 0xf0, 0xe9, 0xc2, 0xba, + 0x4f, 0x3a, 0x86, 0xe9, 0x2e, 0xa9, 0x4b, 0x4d, 0x10, 0x89, 0x10, 0x40, 0x72, 0x04, 0x8f, 0x28, + 0x81, 0x23, 0x4d, 0xd0, 0x48, 0x13, 0x30, 0xd2, 0x04, 0x8b, 0x5a, 0x2c, 0x90, 0xf6, 0x12, 0xb3, + 0x19, 0x6a, 0x48, 0x3d, 0xee, 0x8b, 0x52, 0xfd, 0x14, 0xa0, 0x43, 0x92, 0xff, 0x14, 0xe6, 0x39, + 0x65, 0xf8, 0x4c, 0x35, 0xbc, 0xa5, 0x2c, 0x3f, 0xa9, 0x8c, 0x87, 0x54, 0xc6, 0x37, 0x2a, 0xe3, + 0x15, 0xf5, 0xa6, 0x2c, 0xc2, 0x7c, 0xa0, 0x02, 0xde, 0x4f, 0x86, 0xdf, 0x5b, 0xe7, 0xf1, 0xa6, + 0x86, 0xa6, 0x2b, 0x1f, 0x49, 0x05, 0x48, 0x45, 0x2e, 0x79, 0x95, 0xba, 0xbc, 0x55, 0xf0, 0x52, + 0x56, 0xe1, 0xcb, 0x56, 0xe1, 0x30, 0x36, 0xd6, 0x61, 0x88, 0x5e, 0x02, 0x2a, 0x00, 0xff, 0x94, + 0xc1, 0x41, 0x45, 0xf1, 0x55, 0x3a, 0xce, 0xaa, 0x30, 0x1f, 0xb5, 0x66, 0xa4, 0xca, 0x9c, 0x94, + 0x9b, 0x95, 0x72, 0xf3, 0x52, 0x6e, 0x66, 0xf9, 0xb0, 0xb8, 0xd2, 0xfb, 0x77, 0x4b, 0x39, 0x1e, + 0x4f, 0xee, 0x1a, 0x15, 0x15, 0x17, 0xfc, 0xa9, 0xb9, 0xb0, 0x4f, 0xc1, 0xd6, 0xc6, 0xe2, 0x32, + 0xe0, 0x61, 0x60, 0xfd, 0xa0, 0xae, 0x6b, 0x7d, 0xf7, 0xfc, 0x1f, 0x9e, 0xb5, 0x70, 0x34, 0xaa, + 0xee, 0xbd, 0x54, 0x79, 0x94, 0x56, 0xcf, 0x51, 0xd9, 0xc5, 0x50, 0x1c, 0x7d, 0xea, 0x5e, 0xff, + 0xd1, 0x3a, 0x3f, 0xbf, 0xfe, 0xbd, 0xdd, 0xf9, 0xa3, 0x7d, 0xdd, 0xeb, 0x9f, 0x5c, 0x1f, 0x77, + 0x2e, 0x2e, 0x3e, 0xb7, 0xcf, 0xfa, 0x7f, 0xa9, 0xaa, 0xf3, 0xd0, 0x70, 0xcc, 0x55, 0x71, 0x7d, + 0xc3, 0x7c, 0x34, 0xda, 0x9d, 0x6e, 0xab, 0xa5, 0xf0, 0x80, 0xaa, 0xc2, 0xfa, 0x3e, 0x6d, 0x3d, + 0xbe, 0x6e, 0xfd, 0xd9, 0xed, 0x5c, 0xf6, 0xaf, 0x7b, 0x9f, 0x8f, 0x8e, 0x3b, 0xed, 0xd3, 0xd6, + 0xc9, 0x86, 0x75, 0xbf, 0x79, 0xf2, 0xa5, 0x75, 0xd9, 0x3f, 0xeb, 0xb5, 0x36, 0x72, 0xda, 0x8b, + 0x56, 0x01, 0x73, 0x65, 0x76, 0x75, 0x85, 0xe2, 0x20, 0x15, 0x71, 0x47, 0x63, 0x74, 0x52, 0x70, + 0x67, 0xaf, 0xda, 0xbb, 0x78, 0x35, 0xd4, 0x2b, 0x29, 0x97, 0x23, 0xd4, 0x20, 0x3b, 0xa8, 0x49, + 0x5e, 0x50, 0x4f, 0x59, 0xbf, 0xbe, 0x63, 0x7d, 0x9a, 0x8f, 0xdc, 0x69, 0x96, 0xff, 0xcb, 0x42, + 0x92, 0xed, 0x41, 0xcf, 0x21, 0x0a, 0xe3, 0xa7, 0x54, 0xb7, 0x0c, 0x5f, 0x26, 0x73, 0x5b, 0xd0, + 0xc3, 0x05, 0x57, 0x45, 0x2a, 0x6c, 0xd5, 0x10, 0x20, 0x22, 0x1e, 0x32, 0x6f, 0xa8, 0xa3, 0x9e, + 0xf5, 0x40, 0x6d, 0x3d, 0xab, 0x96, 0xcb, 0x10, 0xab, 0xff, 0xfd, 0x65, 0x6f, 0x77, 0x77, 0xfb, + 0x6b, 0xcd, 0xda, 0xbd, 0xfa, 0x77, 0x6f, 0x77, 0xf7, 0x6b, 0xcd, 0x6a, 0x5c, 0x7d, 0xad, 0x59, + 0x87, 0x93, 0x3f, 0xed, 0xc4, 0x3f, 0xfc, 0xd3, 0x78, 0xf8, 0x77, 0x6f, 0xf2, 0x17, 0x3b, 0x57, + 0xcb, 0x3f, 0xaf, 0xfc, 0x71, 0xfb, 0xe1, 0xdf, 0xaf, 0x75, 0x6b, 0x77, 0xf6, 0xa7, 0x9d, 0xf8, + 0x4f, 0x87, 0xb3, 0x3f, 0xc5, 0x17, 0x10, 0xc6, 0x3f, 0xfe, 0xfa, 0x31, 0xab, 0x17, 0x29, 0xbc, + 0x43, 0xf0, 0xaa, 0x20, 0x05, 0xc3, 0x57, 0x39, 0x95, 0x2e, 0x5e, 0x65, 0x4a, 0x7a, 0x29, 0xa9, + 0x26, 0x56, 0x5a, 0x45, 0xac, 0xb4, 0x7a, 0x58, 0x4d, 0xd5, 0xb0, 0x40, 0x31, 0xa4, 0xc0, 0xb6, + 0x8b, 0xd8, 0x6e, 0xf8, 0x9a, 0x6f, 0x15, 0xd9, 0x15, 0x57, 0x84, 0x1d, 0xc0, 0xde, 0xbf, 0x32, + 0xb2, 0x60, 0xef, 0xb5, 0x3a, 0x32, 0x85, 0xec, 0x3d, 0xf3, 0xf8, 0xde, 0x8e, 0x02, 0xfa, 0x5e, + 0x02, 0x8b, 0x28, 0xca, 0x4e, 0xd5, 0x1c, 0x10, 0x51, 0x47, 0x80, 0x2b, 0x3e, 0x7c, 0xa8, 0x38, + 0xbb, 0xd4, 0x91, 0x71, 0x3c, 0xa8, 0x39, 0x4e, 0x53, 0xf8, 0x29, 0xa8, 0x1f, 0xec, 0xec, 0xec, + 0xed, 0xef, 0xec, 0xd4, 0xf6, 0xb7, 0xf7, 0x6b, 0x87, 0xbb, 0xbb, 0xf5, 0x3d, 0x55, 0x92, 0xa6, + 0x5a, 0x66, 0xc5, 0x2c, 0x6c, 0xb7, 0x91, 0x67, 0x31, 0x56, 0x2a, 0x9e, 0x17, 0x3f, 0xdf, 0x8b, + 0xa8, 0x7c, 0xe1, 0x68, 0x84, 0x36, 0xb8, 0x6d, 0xf2, 0xd1, 0x88, 0x67, 0xd7, 0x97, 0xfc, 0xe9, + 0x88, 0xe3, 0x45, 0x53, 0x25, 0x3e, 0x1f, 0xb1, 0x7a, 0x1a, 0x41, 0xc3, 0x09, 0x09, 0xfa, 0x93, + 0x5b, 0x42, 0xa7, 0x24, 0x9e, 0x3e, 0x88, 0x93, 0x12, 0x38, 0x29, 0xf1, 0xf2, 0xd2, 0x12, 0x38, + 0x2d, 0xf1, 0xf8, 0x71, 0x9c, 0x98, 0xc0, 0x89, 0x09, 0xa9, 0x08, 0x87, 0x13, 0x13, 0x6a, 0x39, + 0x20, 0x14, 0x40, 0x6b, 0xe6, 0x76, 0x70, 0x62, 0xe2, 0xf9, 0x25, 0x8b, 0x13, 0x13, 0xc2, 0xf1, + 0x6e, 0xdd, 0x61, 0xe0, 0xc4, 0x04, 0x1c, 0x46, 0x45, 0x4b, 0xfc, 0x94, 0x84, 0x81, 0x4a, 0x61, + 0xa1, 0x62, 0x66, 0x0e, 0x7b, 0x2f, 0xfa, 0xcd, 0x4b, 0xb9, 0x99, 0x29, 0x37, 0x37, 0x39, 0x8a, + 0x32, 0xff, 0xbd, 0x97, 0x9b, 0x61, 0x60, 0x3d, 0x32, 0x26, 0x2b, 0xa4, 0xf6, 0x9d, 0x6c, 0x11, + 0x66, 0x69, 0xcf, 0x53, 0x3c, 0x1e, 0x2a, 0x94, 0xaa, 0x8a, 0x00, 0x1c, 0x54, 0x22, 0x65, 0x53, + 0x89, 0xb4, 0xa8, 0x17, 0x9c, 0xbe, 0x6d, 0xfe, 0xc7, 0xaf, 0x35, 0xeb, 0x60, 0xf6, 0xca, 0xd9, + 0xaf, 0xbe, 0xd6, 0xac, 0xfa, 0xf2, 0x5d, 0xd3, 0x5f, 0x7e, 0xad, 0x59, 0x7b, 0xcb, 0x17, 0xc6, + 0xbf, 0x8b, 0x9b, 0x59, 0xbc, 0x75, 0xf2, 0xab, 0x65, 0x53, 0xff, 0xec, 0xc6, 0xbf, 0xf9, 0x5a, + 0xb3, 0xb6, 0x67, 0xbf, 0xd8, 0x7b, 0xf8, 0x77, 0x67, 0xa5, 0xe1, 0xfd, 0xf8, 0x3b, 0xe7, 0x7f, + 0x79, 0xf8, 0xe4, 0xab, 0x0f, 0x8a, 0x5b, 0xd6, 0x84, 0x92, 0xbe, 0xa2, 0x1a, 0xd2, 0x2f, 0xd3, + 0x45, 0xbc, 0x5c, 0x48, 0xff, 0xd6, 0xe3, 0xff, 0x99, 0xfe, 0xdc, 0x58, 0x9a, 0xcc, 0xbf, 0x8d, + 0xdd, 0x78, 0xed, 0xfe, 0xfa, 0xed, 0xdb, 0x87, 0x5f, 0xff, 0xd9, 0x7e, 0x48, 0xff, 0xe0, 0x06, + 0x97, 0xf5, 0x61, 0xfd, 0x17, 0x75, 0xfd, 0x9b, 0xe8, 0xdf, 0x61, 0x48, 0x30, 0xa4, 0xa2, 0x19, + 0x52, 0xe8, 0x8f, 0x39, 0xfd, 0xf6, 0xcd, 0xe2, 0x24, 0x1c, 0x52, 0xfe, 0x11, 0x00, 0x0d, 0x00, + 0x0d, 0x76, 0xa5, 0xc1, 0xae, 0x80, 0xd7, 0x60, 0x0e, 0x30, 0x87, 0x85, 0x39, 0x00, 0xbe, 0xc1, + 0xae, 0x60, 0x57, 0xea, 0xec, 0xca, 0x0f, 0xd9, 0x90, 0x79, 0x80, 0x6f, 0x80, 0x6f, 0xb0, 0x2b, + 0x1d, 0x76, 0x05, 0xf8, 0x06, 0x73, 0x80, 0x39, 0x2c, 0xcc, 0x01, 0xf0, 0x0d, 0x76, 0x05, 0xbb, + 0x92, 0xb7, 0x2b, 0xdb, 0x77, 0xfd, 0xf0, 0x63, 0xbc, 0x96, 0xff, 0x69, 0x3c, 0x00, 0x55, 0x95, + 0x43, 0x8c, 0xa1, 0x38, 0xfa, 0x62, 0xcc, 0x23, 0xe1, 0xbd, 0xc2, 0x22, 0x0d, 0x15, 0x35, 0x1a, + 0xe7, 0xd4, 0x1b, 0xc6, 0xf5, 0xab, 0x85, 0xab, 0xd2, 0xd0, 0x21, 0x7d, 0xa5, 0x49, 0x1f, 0x69, + 0x71, 0x12, 0xf6, 0x40, 0x71, 0xbb, 0x1a, 0x65, 0x90, 0x14, 0x4a, 0x5b, 0x69, 0x91, 0xb4, 0xc2, + 0x54, 0x29, 0x74, 0xa1, 0x15, 0xa8, 0xe2, 0x24, 0xf7, 0x88, 0x50, 0xc5, 0xd1, 0x31, 0x99, 0x50, + 0xc5, 0x41, 0x65, 0xf6, 0x93, 0x91, 0x45, 0x65, 0xb6, 0x56, 0x47, 0x06, 0x55, 0x1c, 0x3d, 0x78, + 0x1e, 0xaa, 0x38, 0x79, 0x03, 0x4f, 0xa8, 0xe2, 0x40, 0x15, 0x47, 0xeb, 0x13, 0xc5, 0x54, 0xc5, + 0x79, 0xa2, 0x70, 0xf1, 0xe8, 0xcf, 0x50, 0xc7, 0x51, 0x0e, 0xc3, 0x37, 0x56, 0x1d, 0xe7, 0xd5, + 0x75, 0x26, 0xaf, 0x92, 0xd3, 0xfa, 0xc9, 0x37, 0x42, 0x28, 0xe7, 0xa9, 0x20, 0x8d, 0xa8, 0x58, + 0xce, 0xbb, 0x14, 0x5d, 0x4a, 0xda, 0x95, 0x64, 0x5d, 0x78, 0x65, 0xae, 0x9f, 0x9f, 0xdb, 0xe7, + 0xfb, 0xb8, 0xde, 0x83, 0xc7, 0xbf, 0x79, 0xd2, 0x97, 0xb7, 0xfa, 0xf0, 0xf6, 0xb7, 0x3f, 0xf3, + 0xdd, 0xeb, 0xdf, 0xfb, 0xf8, 0x5b, 0x97, 0x5f, 0xb4, 0xf2, 0x35, 0x55, 0xdb, 0x1f, 0x05, 0xbe, + 0x37, 0x73, 0x00, 0x8f, 0xbf, 0x64, 0xf5, 0xd6, 0xb4, 0xf9, 0xbf, 0x79, 0xd2, 0x8f, 0xe7, 0xcf, + 0xc2, 0xbf, 0x98, 0x12, 0xbe, 0x96, 0xea, 0xad, 0xa6, 0x70, 0x81, 0x4b, 0xf8, 0xc0, 0x0f, 0x47, + 0xcf, 0xf5, 0xf2, 0x8d, 0xdc, 0x2c, 0x71, 0xce, 0x95, 0x38, 0x97, 0x7a, 0x9a, 0x23, 0x2d, 0x3e, + 0x2e, 0xe5, 0x9c, 0xbf, 0x74, 0x9a, 0x7b, 0x39, 0xbc, 0x2f, 0x77, 0x6a, 0x6d, 0x26, 0x5e, 0xea, + 0xd4, 0xeb, 0xe2, 0x04, 0x6f, 0xe6, 0xea, 0x49, 0x72, 0xf1, 0x84, 0x13, 0x95, 0x36, 0x99, 0x4e, + 0x9d, 0x2c, 0xa7, 0x4e, 0x86, 0x93, 0x4f, 0xa4, 0x98, 0x63, 0x7a, 0xeb, 0xb8, 0x7e, 0xf5, 0x86, + 0xd8, 0xdf, 0x03, 0x97, 0x78, 0x34, 0xb9, 0xe4, 0xd7, 0xf2, 0x11, 0x33, 0xc4, 0xbe, 0x12, 0x2c, + 0x08, 0x51, 0x96, 0x25, 0x7f, 0xb5, 0xaf, 0xb7, 0x17, 0x8c, 0x9a, 0x60, 0x9d, 0xe2, 0x62, 0xf4, + 0xd9, 0x6c, 0xa6, 0xbe, 0x15, 0x3d, 0x7e, 0xae, 0x1c, 0x02, 0x5f, 0x29, 0x96, 0x9c, 0x2c, 0xc1, + 0x57, 0x3c, 0x85, 0xaf, 0xe4, 0x4b, 0x52, 0x4f, 0x9e, 0xa3, 0x1e, 0xa6, 0xcf, 0x7b, 0xb4, 0xb5, + 0x44, 0x1d, 0xcb, 0x1f, 0xb7, 0x16, 0xfe, 0x70, 0x6b, 0xb6, 0x86, 0x55, 0xa1, 0xeb, 0x04, 0xfe, + 0x2a, 0x9d, 0xd8, 0x90, 0x90, 0xc8, 0x90, 0xb0, 0xad, 0x35, 0x60, 0x6b, 0xb0, 0x35, 0x6d, 0xb6, + 0x96, 0x82, 0x78, 0x31, 0x27, 0x91, 0x4d, 0xd8, 0xf9, 0x6a, 0x22, 0xcf, 0xb0, 0x9a, 0x79, 0x1d, + 0xcf, 0x1b, 0xb9, 0x3e, 0x5a, 0x34, 0xa2, 0x41, 0x46, 0xd6, 0xbe, 0x25, 0x51, 0xc4, 0x52, 0xc8, + 0xc7, 0xce, 0x1f, 0x00, 0x92, 0x04, 0x92, 0x04, 0x92, 0x44, 0x74, 0xdb, 0xec, 0xe8, 0x36, 0xf3, + 0x86, 0xc0, 0x91, 0xc0, 0x91, 0xb0, 0xb4, 0x4c, 0x2c, 0x6d, 0x03, 0x51, 0x64, 0x32, 0xc8, 0xf5, + 0x2a, 0x86, 0x3c, 0x9e, 0x35, 0xa1, 0x03, 0x41, 0x26, 0x0b, 0xfa, 0xe9, 0x82, 0x3d, 0xf0, 0xe3, + 0x26, 0xe2, 0xc7, 0xd9, 0xba, 0x4d, 0x19, 0xd2, 0xe2, 0xa7, 0xd2, 0x45, 0xb4, 0x1a, 0xb0, 0x23, + 0x22, 0xda, 0xd3, 0xcf, 0x49, 0x5d, 0x07, 0x28, 0x7e, 0x20, 0x6c, 0x79, 0xe0, 0x6b, 0xb3, 0x02, + 0x59, 0x02, 0x94, 0x2c, 0x18, 0x84, 0x82, 0x71, 0x8a, 0x08, 0x14, 0x8c, 0x11, 0x7e, 0x10, 0x7e, + 0x40, 0x5f, 0x20, 0x04, 0x6d, 0x7a, 0x52, 0x15, 0x8c, 0x41, 0x5d, 0x80, 0xba, 0x80, 0x95, 0x69, + 0xb7, 0xb2, 0x4d, 0xa4, 0x2d, 0xde, 0x84, 0x59, 0xaf, 0x53, 0x16, 0xc1, 0x58, 0x07, 0x52, 0x1c, + 0x90, 0x9b, 0x90, 0xd9, 0xc9, 0xc1, 0xe2, 0xec, 0xdf, 0x03, 0x2f, 0x02, 0x2f, 0x02, 0x2f, 0x22, + 0x92, 0x6d, 0x76, 0x24, 0x9b, 0x3a, 0x43, 0x40, 0x46, 0x40, 0x46, 0x18, 0x5a, 0x16, 0x86, 0xb6, + 0x81, 0xa8, 0x31, 0x11, 0xde, 0x7a, 0x15, 0x38, 0x9e, 0x4e, 0x5b, 0xd0, 0x82, 0x1d, 0xbd, 0x34, + 0xc0, 0xd1, 0x03, 0x6a, 0x04, 0x6a, 0x04, 0x6a, 0x44, 0x30, 0xdb, 0xf8, 0x60, 0xe6, 0x01, 0x32, + 0x02, 0x32, 0xc2, 0xca, 0xb4, 0x5b, 0xd9, 0x46, 0xe2, 0x45, 0x4f, 0x0e, 0x2c, 0x7a, 0x3a, 0x90, + 0x22, 0xf3, 0x38, 0x1d, 0x86, 0x84, 0x53, 0xc7, 0xb2, 0x59, 0x68, 0x8f, 0x19, 0x4f, 0x0e, 0x1c, + 0x9f, 0x79, 0x16, 0x38, 0x12, 0x38, 0x12, 0x38, 0x12, 0x11, 0x6e, 0xb3, 0x23, 0xdc, 0xba, 0x63, + 0x04, 0xac, 0x04, 0xac, 0x84, 0xd1, 0x65, 0x6d, 0x74, 0x1b, 0x88, 0x32, 0x53, 0x63, 0xb2, 0x57, + 0x41, 0xe7, 0xd9, 0xa2, 0xb5, 0xe3, 0x59, 0x63, 0x1a, 0x20, 0x68, 0xa2, 0x62, 0xea, 0x34, 0x45, + 0xd4, 0x09, 0x8b, 0xa7, 0x01, 0x33, 0x4d, 0x80, 0x99, 0x89, 0x8b, 0x9d, 0x17, 0x23, 0xef, 0x52, + 0x32, 0x08, 0xe9, 0x20, 0xc9, 0xa8, 0xcf, 0xe3, 0xd7, 0x7e, 0x82, 0x7f, 0xdb, 0x9d, 0xd9, 0xe2, + 0x87, 0x0f, 0xb3, 0x60, 0xbe, 0x15, 0x2f, 0x45, 0x0d, 0x06, 0xe1, 0x07, 0x9c, 0xd9, 0xc4, 0xb5, + 0xec, 0x5b, 0xe2, 0x79, 0xd4, 0x4d, 0x6e, 0x1b, 0x4f, 0x1f, 0x34, 0x23, 0x1b, 0xf3, 0x03, 0x6e, + 0x71, 0x5a, 0x52, 0x33, 0x59, 0x74, 0x0e, 0xd9, 0x58, 0x81, 0xb2, 0xb1, 0x14, 0x4b, 0xae, 0x7c, + 0xc0, 0x30, 0xf9, 0x92, 0xd4, 0x03, 0x0c, 0x93, 0x2e, 0xd5, 0xc5, 0x03, 0x83, 0x90, 0xfe, 0x3d, + 0xa6, 0x9e, 0x7d, 0x9f, 0x7e, 0xf0, 0x17, 0x7b, 0x9c, 0x8b, 0x26, 0x52, 0x8e, 0x9d, 0x98, 0x96, + 0xb0, 0xb0, 0x4a, 0xbc, 0x8c, 0x3a, 0xbc, 0xe4, 0x02, 0x97, 0x5d, 0xe8, 0xca, 0x16, 0xbc, 0xb2, + 0x85, 0xaf, 0xce, 0x00, 0xd2, 0x19, 0x42, 0x4a, 0x83, 0x48, 0x0f, 0x75, 0xde, 0x5e, 0xe6, 0x16, + 0x9f, 0xb4, 0x25, 0x30, 0xf9, 0xe2, 0xba, 0xee, 0xd5, 0xcf, 0xde, 0x54, 0xbb, 0xba, 0x7a, 0xf1, + 0xdb, 0xff, 0x88, 0xbc, 0x5a, 0x4e, 0x0f, 0x5e, 0xee, 0x6a, 0x0f, 0x05, 0x97, 0x1f, 0x28, 0x11, + 0x1d, 0x57, 0xa5, 0xf7, 0xae, 0x52, 0x51, 0xfc, 0x41, 0xee, 0xa2, 0x93, 0xc2, 0x0d, 0xad, 0x7a, + 0x1d, 0x77, 0xa5, 0xa3, 0x9d, 0x91, 0x7e, 0xfa, 0x95, 0x2e, 0x61, 0xf1, 0x14, 0x90, 0xca, 0x65, + 0x1e, 0xb5, 0x02, 0x3f, 0xe4, 0xe2, 0x81, 0x7d, 0xd9, 0x04, 0x02, 0x3b, 0x02, 0x7b, 0x69, 0x03, + 0x7b, 0x72, 0x4e, 0x43, 0x86, 0xe3, 0x78, 0x91, 0xf3, 0xd8, 0x5a, 0x21, 0x7c, 0x3e, 0xae, 0xf0, + 0x8e, 0xcf, 0xfe, 0xfa, 0xd1, 0x6f, 0xdf, 0xe6, 0x48, 0xb2, 0x71, 0x35, 0x7e, 0x40, 0xc3, 0x98, + 0x7e, 0x25, 0xae, 0x35, 0xf2, 0x1d, 0x2a, 0xee, 0x71, 0xd6, 0x5a, 0x82, 0xe3, 0x81, 0xe3, 0x29, + 0xad, 0xe3, 0x19, 0x33, 0x8f, 0xd7, 0xf7, 0x24, 0xfc, 0xce, 0x1e, 0x32, 0x01, 0x64, 0x02, 0x05, + 0xcd, 0x04, 0xf6, 0x76, 0x77, 0xb7, 0x01, 0xfd, 0x73, 0x89, 0xc7, 0x9c, 0x84, 0x43, 0xca, 0x2d, + 0x7f, 0xcc, 0x83, 0x31, 0xb7, 0x02, 0xff, 0x07, 0x0d, 0xc5, 0x43, 0xf2, 0x73, 0x8d, 0x21, 0x2a, + 0x23, 0x2a, 0x97, 0x36, 0x2a, 0x3b, 0xd4, 0x66, 0x23, 0xe2, 0x0a, 0x5d, 0xe1, 0xb8, 0x48, 0x08, + 0x1a, 0x02, 0xcf, 0xae, 0x79, 0xbb, 0xc6, 0xa6, 0x86, 0xf7, 0x06, 0xc2, 0xbb, 0xae, 0xf0, 0xbe, + 0x5d, 0xc2, 0xa1, 0x35, 0x3d, 0xb4, 0x1b, 0x5d, 0x1a, 0xf6, 0xa4, 0x2e, 0x02, 0xc5, 0x98, 0x79, + 0x14, 0x63, 0x62, 0xcf, 0xdd, 0xa4, 0x3d, 0x77, 0xfb, 0x36, 0xf4, 0x47, 0x84, 0x33, 0xdb, 0x72, + 0x58, 0x14, 0xd0, 0x30, 0x12, 0xb9, 0x0a, 0x75, 0xe5, 0x2e, 0x86, 0x67, 0x5a, 0x13, 0x43, 0xe8, + 0x75, 0x20, 0x74, 0x20, 0x74, 0xdd, 0x08, 0x3d, 0xad, 0xb9, 0x2c, 0x1e, 0x24, 0x77, 0x43, 0xf1, + 0xe9, 0x9a, 0xaf, 0x9a, 0x49, 0x23, 0x82, 0xe3, 0x2b, 0x47, 0x90, 0x08, 0x1b, 0x8b, 0x0a, 0xa3, + 0x79, 0xd1, 0x78, 0xee, 0x03, 0x1a, 0xc9, 0x5c, 0x55, 0x2f, 0x69, 0x45, 0xca, 0xad, 0x49, 0xb9, + 0x55, 0xbd, 0x6a, 0x5d, 0xf1, 0xe8, 0x65, 0x8d, 0x5b, 0x05, 0x57, 0x8f, 0x70, 0x62, 0xac, 0x34, + 0x41, 0x56, 0x91, 0x28, 0x2b, 0x4d, 0x98, 0x15, 0x25, 0xce, 0xf2, 0x09, 0xb4, 0xd2, 0x44, 0x5a, + 0x71, 0x42, 0xad, 0x3a, 0xfb, 0xd3, 0x91, 0x05, 0x2a, 0x48, 0xb4, 0x95, 0x26, 0xdc, 0x8a, 0x13, + 0x6f, 0xa3, 0xa6, 0xe0, 0x5d, 0x3e, 0x4f, 0x5f, 0x65, 0x44, 0x04, 0x08, 0x2c, 0xb1, 0x2a, 0xf3, + 0x22, 0x4e, 0x3c, 0x2e, 0x0f, 0x60, 0xe6, 0x0d, 0x01, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, + 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc4, 0x64, 0x03, 0x62, 0x38, 0x0d, 0xef, 0x88, 0xab, + 0x02, 0xc5, 0xcc, 0x5a, 0x02, 0x8c, 0x99, 0x04, 0x62, 0x40, 0x18, 0x51, 0x08, 0xb3, 0xa1, 0xf0, + 0x25, 0xe2, 0x84, 0x5b, 0x92, 0x46, 0x54, 0x91, 0x3b, 0x93, 0xb4, 0x68, 0x62, 0x71, 0x36, 0xc9, + 0x23, 0x9e, 0x1f, 0x51, 0xdb, 0xf7, 0x1c, 0xa9, 0xb5, 0x5c, 0x6a, 0x10, 0x53, 0x03, 0x88, 0xc9, + 0x1b, 0xc4, 0xa8, 0x9e, 0x02, 0xf5, 0x67, 0x9e, 0x80, 0x6b, 0xb2, 0xc5, 0x35, 0x23, 0x89, 0x55, + 0xb6, 0x70, 0xc9, 0x93, 0x46, 0x80, 0x66, 0x40, 0xca, 0x80, 0x94, 0x01, 0x29, 0x03, 0x52, 0x06, + 0x78, 0x06, 0xa4, 0x0c, 0xc0, 0x4b, 0x46, 0xe0, 0xc5, 0xe2, 0x6c, 0x44, 0x95, 0x20, 0x98, 0x69, + 0x4b, 0x80, 0x31, 0x20, 0x65, 0x40, 0xca, 0xa4, 0x5e, 0x33, 0x13, 0xdb, 0xe1, 0xcc, 0xfe, 0x1e, + 0x29, 0x01, 0x30, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0xb3, 0xa1, 0xa8, 0x46, 0xc2, + 0xd0, 0x97, 0x80, 0x86, 0x79, 0xc0, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, + 0x3c, 0x03, 0x4a, 0x06, 0xe0, 0x25, 0x2b, 0xf0, 0xa2, 0x8a, 0x92, 0x99, 0xb7, 0x04, 0x18, 0x03, + 0x4a, 0x06, 0x94, 0x0c, 0x28, 0x19, 0x50, 0x32, 0x80, 0x30, 0xa0, 0x64, 0x80, 0x6a, 0x64, 0x51, + 0x8d, 0xd6, 0x23, 0xde, 0x82, 0x1a, 0x24, 0x8b, 0xe7, 0x55, 0x69, 0x91, 0xc4, 0x12, 0x1f, 0x5b, + 0x0a, 0x04, 0x12, 0x2a, 0xaf, 0x5d, 0xe4, 0xd4, 0x99, 0xbe, 0xf5, 0x78, 0xfa, 0xd2, 0xeb, 0xe3, + 0xf9, 0xeb, 0x4e, 0x96, 0x6f, 0x2b, 0x80, 0x28, 0x1c, 0x2e, 0x7a, 0x10, 0x23, 0xcd, 0x20, 0x2f, + 0xf1, 0x0a, 0x27, 0x86, 0x8b, 0x1e, 0x14, 0xc3, 0x45, 0x5c, 0xf4, 0x00, 0x79, 0x57, 0x2d, 0xf0, + 0x0e, 0x17, 0x3d, 0xe8, 0x78, 0xaa, 0x08, 0x6a, 0xaf, 0xc3, 0xd0, 0x1f, 0x07, 0x16, 0x73, 0xc4, + 0xe3, 0xfa, 0xa2, 0x05, 0x84, 0x75, 0x84, 0xf5, 0x52, 0xab, 0xad, 0x6f, 0x37, 0x24, 0xc2, 0xf9, + 0x3e, 0xc2, 0x31, 0xc2, 0x71, 0x41, 0xc3, 0xf1, 0x4e, 0xe3, 0x70, 0xe7, 0x70, 0x6f, 0xbf, 0x71, + 0x88, 0x20, 0x9c, 0x4b, 0x10, 0x66, 0x9e, 0x02, 0xa9, 0xf5, 0xd5, 0x46, 0x36, 0x43, 0xc0, 0x91, + 0x87, 0xc4, 0x8b, 0x6c, 0xca, 0xee, 0x52, 0xf7, 0x78, 0x33, 0xa2, 0xf1, 0xea, 0xf8, 0x40, 0xc6, + 0x11, 0x32, 0x8e, 0xcf, 0x99, 0x10, 0xb6, 0x44, 0x45, 0x8d, 0x0b, 0x15, 0x5d, 0xb2, 0xf0, 0x05, + 0x15, 0x5d, 0x5a, 0x80, 0xf7, 0xd3, 0x61, 0x46, 0x45, 0x57, 0xe6, 0x00, 0xfd, 0xe9, 0x14, 0xa0, + 0xa2, 0x4b, 0xfb, 0xd3, 0x90, 0x6f, 0x04, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, + 0x01, 0x78, 0x01, 0x78, 0x01, 0x78, 0x51, 0x06, 0x5e, 0x20, 0xdb, 0x08, 0xf8, 0x02, 0xf8, 0x02, + 0xd9, 0xc6, 0xd5, 0x26, 0x50, 0x90, 0xae, 0xdf, 0x63, 0x01, 0xc4, 0x14, 0x77, 0x0a, 0x50, 0x90, + 0x6e, 0x3a, 0xae, 0x81, 0x6c, 0x23, 0xd0, 0x0c, 0xd0, 0x0c, 0xc8, 0x18, 0x90, 0x31, 0x20, 0x63, + 0x40, 0xc6, 0x00, 0xb4, 0x98, 0x02, 0x5a, 0x20, 0xd7, 0x08, 0xf8, 0x02, 0xf8, 0x02, 0x6d, 0x00, + 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x29, 0x03, 0xaa, 0x81, 0x5c, 0x23, 0xb0, 0x0c, + 0xb0, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x00, 0xb4, 0x18, 0x02, 0x5a, 0x20, + 0xd3, 0x08, 0xf8, 0x02, 0xf8, 0x02, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, + 0x8a, 0x86, 0x6a, 0x36, 0x48, 0xa6, 0x51, 0x5c, 0xfd, 0xa0, 0x92, 0x42, 0x9d, 0xf1, 0x6c, 0xf2, + 0x96, 0x6e, 0xfc, 0x92, 0x02, 0xc8, 0x46, 0xb8, 0x24, 0xa2, 0xa1, 0x75, 0xc3, 0x48, 0x64, 0xd9, + 0xe3, 0x30, 0xa4, 0x02, 0x27, 0xcc, 0x16, 0x31, 0xf4, 0x99, 0xb6, 0x20, 0x22, 0xa1, 0x1f, 0x6b, + 0x42, 0x44, 0x42, 0xc2, 0x03, 0x41, 0x44, 0x02, 0x09, 0x1b, 0x12, 0x36, 0x03, 0x13, 0x36, 0xf0, + 0xcd, 0xc6, 0x25, 0x6b, 0xe0, 0x9b, 0x73, 0x4f, 0xd6, 0xc0, 0x37, 0x97, 0x27, 0x33, 0x83, 0x88, + 0x04, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x4b, 0xf9, + 0xc1, 0x0b, 0x44, 0x24, 0x00, 0x5f, 0x00, 0x5f, 0x20, 0x22, 0xb1, 0xda, 0x04, 0xb6, 0xcb, 0xf5, + 0x7b, 0x2c, 0x80, 0x98, 0xe2, 0x4e, 0x01, 0xb6, 0xcb, 0x4d, 0xc7, 0x35, 0x10, 0x91, 0x00, 0x9a, + 0x01, 0x9a, 0x01, 0x19, 0x03, 0x32, 0x06, 0x64, 0x0c, 0xc8, 0x18, 0x80, 0x16, 0x53, 0x40, 0x0b, + 0x44, 0x24, 0x00, 0x5f, 0x00, 0x5f, 0x70, 0x72, 0x01, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, + 0x62, 0xca, 0x80, 0x6a, 0x20, 0x22, 0x01, 0x2c, 0x03, 0x2c, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0xa8, + 0x18, 0x50, 0x31, 0x00, 0x2d, 0x86, 0x80, 0x16, 0x88, 0x48, 0x00, 0xbe, 0x00, 0xbe, 0x80, 0x8a, + 0x01, 0x15, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x98, 0xa2, 0xa1, 0x9a, 0x0d, 0x12, 0x91, 0x90, + 0x16, 0x41, 0xa8, 0xa4, 0xd0, 0x92, 0x38, 0x9f, 0xbc, 0xec, 0x88, 0x91, 0xe8, 0x78, 0xf6, 0xaa, + 0x22, 0x28, 0x4a, 0x30, 0x8f, 0x5a, 0x81, 0x1f, 0xca, 0x08, 0x49, 0x2c, 0x9a, 0x10, 0xd3, 0x8f, + 0xa8, 0x19, 0xa6, 0x1f, 0xe1, 0x07, 0xdc, 0xe2, 0x34, 0x1c, 0x41, 0x3c, 0xe2, 0x19, 0x2c, 0xb9, + 0x18, 0x9c, 0x82, 0xb9, 0x1d, 0x61, 0xd8, 0xb8, 0x5c, 0xe6, 0x94, 0x0c, 0x42, 0x3a, 0x10, 0x99, + 0xf5, 0x39, 0xc7, 0xb5, 0x2f, 0xf0, 0x6c, 0x77, 0xe1, 0xe9, 0xec, 0x85, 0x87, 0xfb, 0xb8, 0xe2, + 0xe1, 0x9e, 0xfd, 0xf5, 0xa3, 0xdf, 0xc6, 0x7e, 0xa9, 0x00, 0xae, 0xc6, 0x0f, 0x68, 0x18, 0x3b, + 0x7e, 0xe2, 0x5a, 0x23, 0xdf, 0xa1, 0xe2, 0x1e, 0x67, 0xad, 0x25, 0x38, 0x1e, 0x38, 0x9e, 0xd2, + 0x3a, 0x9e, 0x31, 0xf3, 0x78, 0x7d, 0x4f, 0xc2, 0xef, 0xec, 0x09, 0x3c, 0x2a, 0x97, 0x42, 0x4a, + 0x64, 0xe7, 0x2a, 0x52, 0x46, 0x45, 0x79, 0x8a, 0xaa, 0x14, 0x51, 0x65, 0x12, 0x22, 0x91, 0x12, + 0x2a, 0x49, 0x05, 0x55, 0x0f, 0xed, 0xde, 0xee, 0xee, 0xf6, 0x6e, 0x81, 0x86, 0x37, 0xa3, 0x1c, + 0xeb, 0xaa, 0x08, 0xf1, 0x78, 0xcc, 0x97, 0x0a, 0x7a, 0xe2, 0xb1, 0x78, 0xb5, 0x15, 0x08, 0xc8, + 0x21, 0x14, 0x43, 0x40, 0xee, 0xc5, 0xb5, 0x03, 0x01, 0x39, 0x6c, 0xd6, 0x48, 0x1b, 0x17, 0x6a, + 0x4d, 0x64, 0xb1, 0x0b, 0x6a, 0x4d, 0xb4, 0xa0, 0xee, 0xa7, 0xc3, 0x8c, 0x5a, 0x93, 0xcc, 0xd1, + 0xf9, 0xd3, 0x29, 0x40, 0xad, 0x89, 0xf6, 0xa7, 0x21, 0x20, 0x07, 0xf0, 0x02, 0xf0, 0x02, 0xf0, + 0x02, 0xf0, 0x02, 0xf0, 0x02, 0xf0, 0x02, 0xf0, 0x02, 0xf0, 0xa2, 0x0c, 0xbc, 0x40, 0x40, 0x0e, + 0xf0, 0x05, 0xf0, 0x05, 0x02, 0x72, 0xab, 0x4d, 0xa0, 0x54, 0x56, 0xbf, 0xc7, 0x02, 0x88, 0x29, + 0xee, 0x14, 0xa0, 0x54, 0xd6, 0x74, 0x5c, 0x03, 0x01, 0x39, 0xa0, 0x19, 0xa0, 0x19, 0x90, 0x31, + 0x20, 0x63, 0x40, 0xc6, 0x80, 0x8c, 0x01, 0x68, 0x31, 0x05, 0xb4, 0x40, 0x40, 0x0e, 0xf0, 0x05, + 0xf0, 0x05, 0xa7, 0x96, 0x41, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x03, 0x2a, 0xa6, 0x0c, 0xa8, 0x06, + 0x02, 0x72, 0xc0, 0x32, 0xc0, 0x32, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x03, 0xd0, + 0x62, 0x08, 0x68, 0x81, 0x80, 0x1c, 0xe0, 0x0b, 0xe0, 0x0b, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, + 0x40, 0xc5, 0x80, 0x8a, 0x29, 0x1a, 0xaa, 0xd9, 0x20, 0x01, 0x39, 0x09, 0xf9, 0x83, 0x4a, 0x0a, + 0xe9, 0xb8, 0x4e, 0xfc, 0x9a, 0x6e, 0xfc, 0x96, 0x02, 0x48, 0x47, 0x04, 0xbe, 0x4b, 0x42, 0xf6, + 0x3f, 0xf1, 0x2c, 0x58, 0x0e, 0x0d, 0xa8, 0xe7, 0x50, 0x8f, 0x5b, 0xae, 0x1f, 0x45, 0xe2, 0x4a, + 0x12, 0xaf, 0x35, 0xba, 0x19, 0xc2, 0x12, 0x10, 0x78, 0x7a, 0x05, 0x64, 0x16, 0x55, 0xe0, 0x09, + 0x92, 0x12, 0x48, 0xdf, 0x90, 0xbe, 0x19, 0x98, 0xbe, 0x81, 0x7d, 0x36, 0x2e, 0x75, 0x03, 0xfb, + 0x9c, 0x7b, 0xea, 0x06, 0xf6, 0xb9, 0x3c, 0x79, 0x1a, 0x24, 0x25, 0x00, 0x5e, 0x00, 0x5e, 0x00, + 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0xca, 0x0f, 0x5e, 0x20, 0x29, 0x01, 0xf8, + 0x02, 0xf8, 0x02, 0x49, 0x89, 0xd5, 0x26, 0xb0, 0x79, 0xae, 0xdf, 0x63, 0x01, 0xc4, 0x14, 0x77, + 0x0a, 0xb0, 0x79, 0x6e, 0x3a, 0xae, 0x81, 0xa4, 0x04, 0xd0, 0x0c, 0xd0, 0x0c, 0xc8, 0x18, 0x90, + 0x31, 0x20, 0x63, 0x40, 0xc6, 0x00, 0xb4, 0x98, 0x02, 0x5a, 0x20, 0x29, 0x01, 0xf8, 0x02, 0xf8, + 0x82, 0x73, 0x0c, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x53, 0x06, 0x54, 0x03, 0x49, + 0x09, 0x60, 0x19, 0x60, 0x19, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x68, 0x31, + 0x04, 0xb4, 0x40, 0x52, 0x02, 0xf0, 0x05, 0xf0, 0x05, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, + 0x62, 0x40, 0xc5, 0x14, 0x0d, 0xd5, 0x6c, 0x90, 0xa4, 0x84, 0x3a, 0x1d, 0x84, 0x4a, 0x0a, 0x85, + 0x89, 0xee, 0xca, 0x5b, 0x4f, 0xe6, 0x2f, 0x3d, 0x9f, 0xbc, 0xb3, 0x68, 0x7a, 0x13, 0x23, 0xdf, + 0xa1, 0x96, 0xc3, 0xa2, 0x80, 0x86, 0x91, 0xc8, 0x94, 0x3d, 0x2f, 0x38, 0xf1, 0xb4, 0x55, 0x28, + 0x4e, 0x68, 0xc6, 0xa6, 0x50, 0x9c, 0x10, 0x75, 0x57, 0x50, 0x9c, 0x28, 0x46, 0x76, 0x17, 0xaf, + 0x0f, 0x64, 0x78, 0x32, 0xd6, 0x05, 0x92, 0x5a, 0x16, 0xf7, 0x82, 0xa4, 0xce, 0x24, 0xc3, 0x03, + 0x49, 0x9d, 0x7b, 0x86, 0x07, 0x92, 0xba, 0x3c, 0xe9, 0x1c, 0x94, 0x27, 0x00, 0x62, 0x00, 0x62, + 0x00, 0x62, 0x00, 0x62, 0x00, 0x62, 0x00, 0x62, 0x00, 0x62, 0x36, 0x07, 0xc4, 0x40, 0x81, 0x42, + 0x0b, 0x8c, 0x01, 0x84, 0x11, 0x85, 0x30, 0x50, 0xa0, 0x80, 0x02, 0x85, 0x49, 0x20, 0x06, 0x7b, + 0xed, 0xb9, 0x83, 0x18, 0xec, 0xb5, 0x03, 0xd7, 0x3c, 0x1e, 0x66, 0x28, 0x50, 0x80, 0x94, 0x01, + 0x29, 0x03, 0x52, 0x06, 0xa4, 0x0c, 0x48, 0x19, 0x90, 0x32, 0x20, 0x65, 0x4c, 0x03, 0x2f, 0x50, + 0xa2, 0x00, 0x29, 0x03, 0x52, 0x06, 0xc7, 0x1f, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, 0x4a, + 0xa6, 0x0c, 0xa8, 0x06, 0x4a, 0x14, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, 0x4a, + 0x06, 0x94, 0x0c, 0xc0, 0x8b, 0x61, 0xe0, 0x05, 0x8a, 0x14, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, + 0x01, 0x25, 0x03, 0x4a, 0x06, 0x94, 0x0c, 0x28, 0x99, 0xa2, 0xa1, 0x9a, 0x4d, 0x55, 0xa4, 0x90, + 0x13, 0x4a, 0xa8, 0x08, 0x4a, 0x52, 0x5c, 0xf8, 0x0e, 0x3d, 0x59, 0xbe, 0xb4, 0x00, 0x9a, 0x14, + 0xd3, 0x08, 0x64, 0xf9, 0xa1, 0x43, 0x43, 0x4b, 0x8f, 0x40, 0x45, 0xf2, 0x57, 0x40, 0xad, 0x42, + 0x33, 0x6e, 0x85, 0x5a, 0x85, 0xa8, 0x2b, 0x83, 0x5a, 0x05, 0x08, 0x6c, 0xf3, 0xb3, 0x3f, 0x10, + 0xd8, 0x20, 0xb0, 0xcd, 0xc9, 0xfe, 0x40, 0x60, 0xe7, 0x9e, 0xfd, 0x81, 0xc0, 0x2e, 0x4f, 0xaa, + 0x07, 0xb5, 0x0a, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, + 0x98, 0xcd, 0x01, 0x31, 0x50, 0xab, 0xd0, 0x02, 0x63, 0x00, 0x61, 0x44, 0x21, 0x0c, 0xd4, 0x2a, + 0xa0, 0x56, 0x61, 0x12, 0x88, 0xc1, 0x3e, 0x7c, 0xee, 0x20, 0x06, 0xfb, 0xf0, 0xc0, 0x35, 0x8f, + 0x87, 0x19, 0x6a, 0x15, 0x20, 0x65, 0x40, 0xca, 0x80, 0x94, 0x01, 0x29, 0x03, 0x52, 0x06, 0xa4, + 0x0c, 0x48, 0x19, 0xd3, 0xc0, 0x0b, 0xd4, 0x2a, 0x40, 0xca, 0x80, 0x94, 0xc1, 0xd1, 0x08, 0x50, + 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x29, 0x03, 0xaa, 0x81, 0x5a, 0x05, 0x28, 0x19, 0x50, + 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, 0xf0, 0x62, 0x18, 0x78, 0x81, 0x5a, + 0x05, 0x28, 0x19, 0x50, 0x32, 0xa0, 0x64, 0x40, 0xc9, 0x80, 0x92, 0x01, 0x25, 0x03, 0x4a, 0xa6, + 0x68, 0xa8, 0x66, 0x83, 0xd4, 0x2a, 0x74, 0xa9, 0x26, 0x54, 0x52, 0x48, 0x57, 0xf4, 0xe2, 0x6f, + 0xe8, 0x4c, 0x3e, 0xa1, 0xd8, 0x2a, 0x16, 0x9c, 0x84, 0x43, 0xca, 0x2d, 0x7f, 0xcc, 0x83, 0x31, + 0xb7, 0x02, 0xff, 0x07, 0x0d, 0xc5, 0xf5, 0x2a, 0x9e, 0x6b, 0x4c, 0x4c, 0x99, 0xa2, 0x06, 0x65, + 0x8a, 0xcc, 0xb1, 0xe9, 0xc6, 0x29, 0x53, 0x08, 0xc3, 0x4e, 0x25, 0x6c, 0x99, 0x0c, 0x4b, 0xa6, + 0x84, 0x1d, 0x93, 0x84, 0x94, 0x12, 0x68, 0x5d, 0x05, 0x84, 0x54, 0xc4, 0x7e, 0xa9, 0x82, 0x8c, + 0x2a, 0x41, 0x89, 0x04, 0x44, 0x54, 0x02, 0x0d, 0x15, 0xb1, 0x5a, 0x85, 0x1c, 0xda, 0x8c, 0xf0, + 0xd6, 0x95, 0xae, 0xd0, 0xfe, 0x4e, 0xe1, 0x02, 0x12, 0xc5, 0x6d, 0x6a, 0xf1, 0x5a, 0xb2, 0xa8, + 0xf0, 0x76, 0xc7, 0x5f, 0xff, 0x17, 0x6f, 0x0c, 0x49, 0xda, 0xa1, 0x50, 0x35, 0x04, 0x09, 0xe2, + 0x46, 0x42, 0xc8, 0xf9, 0xfa, 0x30, 0xbe, 0x3c, 0x38, 0xaf, 0x0c, 0x4c, 0x35, 0xf0, 0xc3, 0xb7, + 0x15, 0x0c, 0x16, 0xc1, 0x30, 0xfe, 0xd7, 0x6f, 0x0c, 0x73, 0x32, 0xe1, 0xb1, 0xc4, 0x70, 0x2e, + 0x0d, 0x7c, 0x5b, 0x85, 0x6b, 0xf3, 0x39, 0x4a, 0x32, 0xfc, 0x29, 0xe1, 0x99, 0x30, 0x1c, 0x13, + 0x86, 0x5f, 0x4f, 0xe1, 0xd6, 0xa2, 0x73, 0x9a, 0x4d, 0x26, 0xa9, 0xb0, 0x57, 0xf5, 0x26, 0xa4, + 0xe4, 0xbb, 0x3f, 0xe6, 0x71, 0xfe, 0x95, 0x7c, 0x20, 0xe7, 0xf3, 0xf5, 0xf8, 0xf1, 0x84, 0x63, + 0x92, 0x4e, 0xe1, 0x2e, 0x75, 0xfe, 0x20, 0x92, 0x37, 0x3c, 0x5a, 0x80, 0x6f, 0xdb, 0x8a, 0x8a, + 0x1c, 0x41, 0x3a, 0x37, 0x90, 0xce, 0x09, 0xd6, 0x16, 0xe7, 0xa4, 0xe3, 0x39, 0x85, 0xbb, 0xb4, + 0x4a, 0x74, 0x55, 0x7b, 0xbe, 0x2a, 0x04, 0xf3, 0xe1, 0xd9, 0xf3, 0x9b, 0x21, 0xce, 0x98, 0x72, + 0x49, 0x6f, 0x4e, 0xfa, 0x9b, 0x6e, 0xc9, 0x67, 0x93, 0xfa, 0x0a, 0x8b, 0x32, 0xce, 0x70, 0x8b, + 0x15, 0x05, 0x94, 0x3a, 0xf2, 0xfb, 0x9d, 0x8f, 0x9b, 0xc3, 0xa6, 0xa7, 0x84, 0x21, 0xa9, 0x32, + 0x28, 0xe5, 0x86, 0xa5, 0xdc, 0xc0, 0xd4, 0x1a, 0x9a, 0x64, 0x6a, 0x98, 0xfb, 0x96, 0x27, 0x73, + 0xa8, 0xc7, 0x19, 0xbf, 0x0f, 0xe9, 0x40, 0x45, 0xcd, 0x96, 0xc4, 0x26, 0x4d, 0xf5, 0x6c, 0xf6, + 0x29, 0x47, 0x24, 0x52, 0xb0, 0xfe, 0xe6, 0x1d, 0x6c, 0xf5, 0x7f, 0x6b, 0x5d, 0xb6, 0x5b, 0xfd, + 0xeb, 0x5e, 0xb7, 0xd5, 0x3a, 0xa9, 0xaa, 0x20, 0x25, 0x22, 0xe9, 0x8d, 0xd4, 0x8a, 0x92, 0xcd, + 0xd4, 0x47, 0xfd, 0x8c, 0xbb, 0x77, 0xbd, 0xfb, 0xe9, 0xa8, 0x5a, 0x84, 0x4d, 0x46, 0x2d, 0x9d, + 0xab, 0xd7, 0x2e, 0x4a, 0xdc, 0xbb, 0xdd, 0x5a, 0x99, 0xe7, 0x6e, 0xaf, 0x56, 0x2b, 0xf7, 0xd2, + 0x2c, 0xf5, 0xda, 0x3c, 0x28, 0xf7, 0xec, 0x35, 0x76, 0xcb, 0x3d, 0x7d, 0x8d, 0x72, 0x4f, 0xdf, + 0x4e, 0xd9, 0x5d, 0x4b, 0xa9, 0xbb, 0x57, 0xee, 0xb9, 0x2b, 0xb7, 0xdb, 0x2c, 0xb7, 0x57, 0x29, + 0xf5, 0xe4, 0x7d, 0x6e, 0xff, 0xde, 0xee, 0xfc, 0xd1, 0xae, 0xe6, 0x5c, 0xfc, 0x76, 0x55, 0xf8, + 0xcd, 0x58, 0x91, 0x92, 0x7e, 0x6f, 0x3c, 0x9a, 0xef, 0xd1, 0x45, 0xf2, 0x34, 0xd7, 0xa3, 0xd6, + 0xc0, 0x72, 0x81, 0xe5, 0x02, 0xcb, 0x95, 0x72, 0xc5, 0x8c, 0x99, 0xc7, 0x0f, 0x14, 0xf0, 0x5b, + 0xbb, 0x28, 0xc1, 0x57, 0xea, 0x57, 0x9e, 0xe7, 0xd7, 0x50, 0x82, 0x5f, 0x84, 0x29, 0x68, 0xec, + 0xa2, 0xe2, 0x5e, 0x11, 0x5c, 0x41, 0xc5, 0xfd, 0xb4, 0x7c, 0x69, 0x12, 0x7c, 0xb6, 0x1e, 0x15, + 0x64, 0x6c, 0xcd, 0x36, 0xb9, 0x8b, 0x70, 0x23, 0x63, 0x5c, 0x4e, 0x26, 0x7e, 0xdb, 0x62, 0xfc, + 0x78, 0xc6, 0x9b, 0xf5, 0x0d, 0x6c, 0xd6, 0xe7, 0x8a, 0xb2, 0xb0, 0x59, 0x9f, 0x7c, 0xdd, 0x60, + 0xb3, 0x1e, 0x69, 0x0c, 0xd2, 0x18, 0xa9, 0x15, 0x83, 0xcd, 0xfa, 0xf4, 0x48, 0x16, 0x9b, 0xf5, + 0xf9, 0x74, 0x0e, 0x9b, 0xf5, 0xe6, 0xf6, 0x0e, 0x9b, 0xf5, 0x26, 0x77, 0x0f, 0x9b, 0xf5, 0x66, + 0xf7, 0x0f, 0x9b, 0xf5, 0x46, 0xbb, 0x16, 0x6c, 0xd6, 0x1b, 0x3b, 0x77, 0xd8, 0xac, 0x37, 0xd7, + 0xab, 0x60, 0xb3, 0x5e, 0x5f, 0xe6, 0x3b, 0xff, 0x0f, 0x9b, 0xf5, 0x6f, 0x4f, 0x18, 0x36, 0xeb, + 0xc1, 0x72, 0x81, 0xe5, 0x92, 0x59, 0x31, 0xd8, 0xac, 0x5f, 0xf9, 0x10, 0x6c, 0xd6, 0xe7, 0x1d, + 0xd0, 0xb1, 0x59, 0x9f, 0x2f, 0xe8, 0xc0, 0x66, 0x7d, 0x61, 0x36, 0xeb, 0x53, 0x28, 0xae, 0xa4, + 0x1f, 0x1b, 0xb3, 0xc5, 0x69, 0xd6, 0x47, 0xab, 0x9a, 0xaa, 0xf6, 0xe0, 0x79, 0x91, 0x96, 0xae, + 0x1f, 0xf2, 0xeb, 0xa3, 0x59, 0xab, 0x17, 0x93, 0x46, 0x55, 0xc9, 0xdd, 0x24, 0x90, 0x2e, 0x49, + 0xa9, 0x5f, 0x20, 0xa6, 0x5b, 0x50, 0x78, 0xa9, 0x8d, 0xe4, 0x5a, 0x2f, 0xb2, 0x78, 0xb5, 0x80, + 0x72, 0x1b, 0x89, 0xb5, 0x60, 0x4a, 0x64, 0xc4, 0x69, 0x2a, 0x92, 0xd4, 0x18, 0xda, 0x5c, 0xd5, + 0x29, 0x91, 0x60, 0xd2, 0xfa, 0x22, 0x5d, 0x7d, 0xba, 0x1c, 0x46, 0xe7, 0x32, 0x8f, 0x5a, 0xb6, + 0xbf, 0x99, 0x46, 0xb7, 0xe8, 0x3c, 0x74, 0x6e, 0xd4, 0x2d, 0x61, 0x69, 0x6e, 0x44, 0x55, 0xe9, + 0x9c, 0xc0, 0xd2, 0x56, 0xc5, 0x83, 0x14, 0xbf, 0x7c, 0x2e, 0xfd, 0xd2, 0xcf, 0x06, 0x82, 0x0b, + 0x97, 0xd0, 0x11, 0x67, 0xc4, 0x3c, 0x4b, 0xac, 0xb2, 0x74, 0x6d, 0xf5, 0xac, 0x36, 0x06, 0x62, + 0x51, 0xd2, 0x98, 0x40, 0x2e, 0x8a, 0x1b, 0x9b, 0xe9, 0x04, 0xe3, 0x8a, 0x21, 0xc5, 0x37, 0x9d, + 0xa8, 0xa8, 0xa5, 0xdb, 0x91, 0x68, 0xa3, 0xe5, 0x8d, 0x47, 0x93, 0x9e, 0x3d, 0x80, 0xaf, 0x90, + 0x05, 0xef, 0xab, 0x60, 0x18, 0x67, 0x0b, 0x4c, 0x3c, 0x5b, 0x00, 0x80, 0x04, 0x80, 0x04, 0x80, + 0x04, 0x80, 0x04, 0x80, 0x04, 0x80, 0x94, 0x1b, 0x40, 0x12, 0x88, 0x3d, 0xcc, 0x13, 0xbf, 0x02, + 0x67, 0x6d, 0x02, 0x56, 0x1b, 0x93, 0xf3, 0x64, 0x75, 0x78, 0x32, 0x78, 0x32, 0xd3, 0x3c, 0x99, + 0x28, 0x9c, 0x58, 0xc2, 0x8a, 0xbb, 0xa1, 0xba, 0x43, 0x49, 0x93, 0xc6, 0xde, 0x2b, 0xb9, 0x12, + 0x45, 0xf6, 0x2a, 0x13, 0x59, 0xa3, 0x54, 0x69, 0x9c, 0xcf, 0x19, 0xa9, 0xec, 0x85, 0xab, 0xaa, + 0x2d, 0x55, 0x9b, 0xc5, 0x6a, 0xb3, 0xdc, 0x97, 0x2c, 0x58, 0xf2, 0x42, 0x56, 0x39, 0x33, 0x96, + 0x34, 0x67, 0x75, 0x00, 0x65, 0x6d, 0xcd, 0xa9, 0xb8, 0x6f, 0x7e, 0x2d, 0x62, 0x2a, 0xb8, 0x11, + 0x5d, 0xe9, 0xfd, 0xf3, 0x8b, 0x46, 0xd5, 0x14, 0xa5, 0xcd, 0xff, 0x53, 0x63, 0x5a, 0x15, 0xd5, + 0x45, 0x6a, 0x4f, 0xa7, 0x43, 0xd1, 0xfd, 0xf4, 0x8b, 0x66, 0x15, 0x17, 0xad, 0xbd, 0x3c, 0xe3, + 0x35, 0x65, 0xed, 0x3f, 0xbc, 0x57, 0x38, 0x55, 0x0a, 0x8b, 0xd9, 0x9e, 0x4e, 0xd5, 0x36, 0xa6, + 0xea, 0xe1, 0x5d, 0x31, 0x5a, 0xb9, 0xca, 0xa9, 0xe4, 0x4e, 0xe6, 0xf2, 0x39, 0xe6, 0x45, 0x9c, + 0x78, 0x5c, 0x1d, 0x70, 0x9b, 0x37, 0x08, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, + 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0xa6, 0x03, 0xbc, 0x71, 0x1a, 0xde, 0x11, 0x57, + 0x25, 0x7a, 0x9b, 0xb5, 0x08, 0xf8, 0x06, 0xf8, 0x06, 0xf8, 0x56, 0x38, 0xf8, 0x16, 0x71, 0xc2, + 0x2d, 0x45, 0x46, 0xba, 0x6a, 0xa8, 0x07, 0x0a, 0x9a, 0xfa, 0xec, 0x4d, 0x63, 0x43, 0xd5, 0x23, + 0x9e, 0x1f, 0x51, 0xdb, 0xf7, 0x1c, 0x25, 0xb6, 0xb1, 0x91, 0x20, 0xae, 0x06, 0x64, 0x60, 0x0a, + 0x88, 0xd3, 0x35, 0x55, 0xf5, 0x83, 0x9d, 0x9d, 0xbd, 0xfd, 0x9d, 0x9d, 0xda, 0xfe, 0xf6, 0x7e, + 0xed, 0x70, 0x77, 0xb7, 0xbe, 0x57, 0xdf, 0x05, 0xae, 0xdb, 0x04, 0x5c, 0x37, 0x52, 0xb0, 0x5a, + 0x17, 0x21, 0x63, 0xd2, 0x18, 0xd0, 0x1c, 0xd0, 0x1c, 0xd0, 0x1c, 0xc8, 0x38, 0x90, 0x71, 0x20, + 0xe3, 0x80, 0xe3, 0x40, 0xc6, 0x01, 0xb4, 0x69, 0x01, 0x6d, 0x16, 0x67, 0x23, 0xaa, 0x14, 0xb9, + 0x4d, 0x5b, 0x04, 0x7c, 0x03, 0x7c, 0x03, 0x7c, 0x2b, 0x1c, 0x7c, 0x9b, 0xd8, 0x26, 0x67, 0xf6, + 0xf7, 0x48, 0x29, 0x80, 0x03, 0x15, 0x07, 0x2a, 0x0e, 0x10, 0x0e, 0x54, 0x1c, 0x50, 0x5d, 0x21, + 0x50, 0x9d, 0x02, 0xc7, 0xb2, 0x04, 0x74, 0xcc, 0x03, 0x96, 0x03, 0x96, 0x03, 0x96, 0x03, 0x15, + 0x07, 0x2a, 0x0e, 0x54, 0x1c, 0x70, 0x1c, 0xa8, 0x38, 0x80, 0x36, 0x3d, 0xa0, 0x4d, 0x35, 0x15, + 0x37, 0x6f, 0x11, 0xf0, 0x0d, 0xf0, 0x0d, 0xf0, 0x0d, 0x54, 0x1c, 0xa8, 0x38, 0x50, 0x71, 0x80, + 0x70, 0xa0, 0xe2, 0x80, 0xea, 0x32, 0x78, 0x52, 0x54, 0xd2, 0x44, 0x52, 0x15, 0x71, 0xd1, 0x8e, + 0x3a, 0x75, 0xc4, 0x58, 0xde, 0x69, 0x4b, 0x5e, 0x69, 0xa8, 0xf2, 0xe6, 0x05, 0x06, 0x9d, 0xe9, + 0x6b, 0xe3, 0x9f, 0xcf, 0x26, 0xef, 0xeb, 0xc6, 0xaf, 0x2b, 0xb0, 0x98, 0xd3, 0xea, 0x40, 0x4d, + 0x15, 0xb0, 0xa4, 0x25, 0x9d, 0xd6, 0x9b, 0x84, 0x44, 0x1d, 0x84, 0x9d, 0x24, 0x21, 0xf8, 0xe6, + 0x4a, 0xd4, 0x95, 0xfe, 0x2a, 0xfc, 0x4e, 0xb7, 0x7f, 0x76, 0xdc, 0x3c, 0xbf, 0xee, 0x76, 0x2e, + 0xfb, 0xd7, 0xfd, 0xbf, 0xba, 0xad, 0xf2, 0xde, 0x86, 0x7f, 0xd1, 0x69, 0x9f, 0xf5, 0x3b, 0x97, + 0x65, 0xbc, 0xbe, 0xb3, 0xdf, 0xba, 0xbc, 0x38, 0x6b, 0x37, 0xcf, 0xaf, 0x8f, 0xcf, 0xcf, 0x5a, + 0xed, 0x7e, 0x19, 0xbb, 0x78, 0xd6, 0xfe, 0x74, 0xd9, 0xea, 0xf5, 0x4a, 0x3d, 0x7b, 0xe7, 0x67, + 0xed, 0x56, 0x19, 0x3b, 0xd8, 0x3c, 0x39, 0x29, 0x63, 0xb7, 0x5a, 0xa5, 0x5d, 0x91, 0x27, 0x97, + 0x9d, 0x2e, 0x6e, 0x01, 0xd6, 0x02, 0xf9, 0xc7, 0x5c, 0xa1, 0x80, 0xeb, 0xa3, 0xd6, 0xa0, 0xe0, + 0x0a, 0xa0, 0xbf, 0x61, 0x40, 0x1f, 0x0a, 0xae, 0x7a, 0x8c, 0x52, 0xa5, 0x71, 0x3e, 0x67, 0xa4, + 0xd8, 0x2d, 0xc3, 0x6e, 0x99, 0xce, 0xfc, 0x7d, 0x6d, 0xcd, 0xa1, 0xd8, 0x29, 0x6f, 0x6c, 0x59, + 0x41, 0xb1, 0xd3, 0x0b, 0x33, 0x8e, 0x62, 0xa7, 0x4d, 0x9c, 0x2a, 0x14, 0x3b, 0x09, 0x4f, 0x0b, + 0x14, 0x5c, 0x01, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, + 0x00, 0xde, 0x8c, 0x02, 0x6f, 0x50, 0x70, 0x05, 0x7c, 0x03, 0x7c, 0xdb, 0x1c, 0xf8, 0x06, 0x05, + 0xd7, 0x0d, 0x01, 0x71, 0xa8, 0x55, 0x47, 0xad, 0x3a, 0x6a, 0xd5, 0xa1, 0xe0, 0x2a, 0x1f, 0x32, + 0xa0, 0xe0, 0x0a, 0x34, 0x07, 0x34, 0x07, 0x32, 0x0e, 0x64, 0x1c, 0xc8, 0x38, 0xe0, 0x38, 0x90, + 0x71, 0x00, 0x6d, 0xda, 0x40, 0x1b, 0x14, 0x5c, 0x01, 0xdf, 0x00, 0xdf, 0x36, 0x06, 0xbe, 0x41, + 0x36, 0x02, 0x54, 0x1c, 0x20, 0x1c, 0xa8, 0x38, 0xa0, 0xba, 0x12, 0xa3, 0x3a, 0x28, 0xb8, 0x02, + 0xcb, 0x01, 0xcb, 0x81, 0x8a, 0x03, 0x15, 0x07, 0x2a, 0x0e, 0x38, 0x0e, 0x54, 0x1c, 0x40, 0x9b, + 0x11, 0xa0, 0x0d, 0x0a, 0xae, 0x80, 0x6f, 0x80, 0x6f, 0xa0, 0xe2, 0x40, 0xc5, 0x81, 0x8a, 0x03, + 0x84, 0x03, 0x15, 0x07, 0x54, 0x57, 0x0c, 0x54, 0x07, 0x05, 0x57, 0x4e, 0xb7, 0x14, 0x48, 0x0d, + 0x55, 0x52, 0x49, 0xb8, 0x76, 0xe2, 0x17, 0x16, 0x5e, 0xc3, 0x95, 0x33, 0x97, 0xcb, 0x0b, 0x39, + 0xc5, 0xad, 0x40, 0xa9, 0x15, 0x02, 0x4e, 0x92, 0x50, 0x7b, 0x73, 0x95, 0x5a, 0x55, 0x90, 0xa1, + 0x2a, 0x48, 0x50, 0xa5, 0xe4, 0xa7, 0x22, 0xc4, 0xac, 0x20, 0x69, 0x51, 0x89, 0x90, 0x15, 0x93, + 0x9b, 0xaa, 0x11, 0xb1, 0x0e, 0x2c, 0xa5, 0x00, 0x01, 0x2b, 0x45, 0xbe, 0x8a, 0x49, 0x4b, 0x23, + 0xa6, 0x20, 0x27, 0xf8, 0x78, 0x95, 0x15, 0x78, 0x79, 0xa7, 0x71, 0x41, 0xca, 0xc2, 0x52, 0xd5, + 0x70, 0x34, 0x5d, 0x7c, 0x4b, 0x3e, 0x34, 0xc9, 0xfe, 0x65, 0xc2, 0xc1, 0x13, 0x1d, 0x34, 0x75, + 0x83, 0x95, 0x22, 0x16, 0x26, 0x06, 0xe6, 0xc9, 0x86, 0xfe, 0xed, 0x81, 0x4c, 0x30, 0x88, 0xd5, + 0xe9, 0x5c, 0x27, 0x1d, 0xbb, 0x47, 0x27, 0x4e, 0x93, 0xd2, 0xde, 0x29, 0xf5, 0x4f, 0x97, 0x70, + 0x39, 0x61, 0xf4, 0x12, 0x81, 0xc7, 0xab, 0x70, 0x78, 0x3e, 0xe3, 0x69, 0xa6, 0x52, 0x10, 0xfe, + 0x4a, 0xc3, 0x5d, 0x69, 0x78, 0xfb, 0x14, 0xce, 0x2e, 0x3a, 0xbf, 0x49, 0x06, 0x9c, 0xc2, 0xc1, + 0x25, 0xb0, 0xb2, 0x77, 0x12, 0xe3, 0x50, 0x6d, 0x8e, 0x87, 0x93, 0xd9, 0xa0, 0x4e, 0x22, 0x08, + 0x9a, 0xd2, 0x4a, 0xb7, 0x56, 0x26, 0xf8, 0xe3, 0xca, 0x70, 0x3c, 0xfb, 0xeb, 0x47, 0xbf, 0x4d, + 0xe1, 0xda, 0xaa, 0x27, 0x34, 0xb2, 0x43, 0x16, 0xcc, 0xe6, 0xb0, 0xda, 0x74, 0x1c, 0xe6, 0x0d, + 0x2b, 0x33, 0x27, 0x59, 0x99, 0xb4, 0x54, 0x71, 0x08, 0x27, 0x15, 0xee, 0x57, 0xe6, 0xed, 0x57, + 0x96, 0x1f, 0x53, 0x19, 0xf9, 0x0e, 0x75, 0x75, 0xbb, 0x92, 0x5a, 0x36, 0xae, 0x44, 0x20, 0xb3, + 0x2e, 0x8f, 0x2b, 0x49, 0x9f, 0x19, 0xab, 0x75, 0x25, 0x69, 0xa5, 0x8a, 0x1f, 0xdd, 0xe4, 0x93, + 0x7e, 0xfc, 0x9f, 0xbb, 0x0f, 0x28, 0xed, 0x14, 0x3c, 0x31, 0x9d, 0x63, 0xdf, 0xe3, 0x84, 0x79, + 0xd1, 0xd4, 0x5e, 0xa2, 0x80, 0xda, 0x6c, 0xc0, 0xec, 0xd8, 0x70, 0xfc, 0x90, 0x47, 0x15, 0xdf, + 0x5b, 0x98, 0x15, 0x0f, 0x89, 0x17, 0x4d, 0x7e, 0xfb, 0xcd, 0x73, 0xe8, 0x1d, 0xb3, 0x69, 0xf4, + 0x21, 0xed, 0xcb, 0xc5, 0x64, 0xc9, 0x85, 0xd9, 0x2c, 0x19, 0x16, 0x4b, 0x11, 0x7b, 0x25, 0xcb, + 0x5a, 0x29, 0x63, 0xab, 0x94, 0xb1, 0x54, 0xea, 0xd8, 0xa9, 0x87, 0x7c, 0xf1, 0xbe, 0x0a, 0x30, + 0x6b, 0x50, 0x74, 0x8c, 0xa3, 0xe2, 0x4d, 0x48, 0xc9, 0x77, 0x7f, 0xbc, 0x12, 0x1e, 0x6f, 0xef, + 0xa3, 0x69, 0xd0, 0x9c, 0xc7, 0xc9, 0xc9, 0xdf, 0x7c, 0xa8, 0xf4, 0x6f, 0x59, 0x54, 0x89, 0xc6, + 0x37, 0x3c, 0xa4, 0xf4, 0x9b, 0xc7, 0x26, 0x8e, 0xc0, 0xbd, 0xaf, 0xdc, 0x11, 0x97, 0x39, 0x95, + 0x1f, 0xb7, 0xd4, 0xab, 0xf0, 0x5b, 0x5a, 0xe1, 0xf7, 0x01, 0xad, 0xf8, 0x83, 0xf8, 0xe7, 0xc5, + 0x67, 0x57, 0x58, 0x54, 0xe9, 0x76, 0x2e, 0xfb, 0x1f, 0x4a, 0x12, 0x60, 0xd3, 0xa6, 0x5c, 0xe5, + 0xc1, 0xe9, 0x89, 0xf3, 0xc2, 0x02, 0x04, 0xd6, 0xf9, 0xc2, 0xb6, 0x26, 0xd8, 0x4e, 0x3c, 0xb2, + 0x3e, 0x6e, 0x46, 0x2e, 0xb4, 0xf6, 0xfd, 0xc0, 0x72, 0xe9, 0x1d, 0x75, 0x2b, 0xf6, 0x34, 0xc8, + 0xd2, 0xb0, 0x32, 0xf0, 0xc3, 0x67, 0x0c, 0x71, 0x43, 0xc2, 0xa8, 0x00, 0x5c, 0xd9, 0x8c, 0x10, + 0x9a, 0xce, 0xd2, 0x8c, 0x09, 0x9f, 0xaf, 0xfe, 0x8b, 0xab, 0xb7, 0xb2, 0xd4, 0x74, 0x59, 0xba, + 0x54, 0x76, 0x5e, 0x4d, 0xc4, 0x5a, 0xbd, 0xcc, 0xa4, 0xbd, 0x3e, 0x77, 0x2f, 0x8f, 0xc3, 0x2b, + 0xde, 0xb0, 0x1a, 0xef, 0xc9, 0x5b, 0xd1, 0x38, 0x08, 0xdc, 0xfb, 0x37, 0x47, 0x60, 0x61, 0x65, + 0x8f, 0x9e, 0x7a, 0x63, 0x84, 0x93, 0x79, 0x91, 0xc4, 0x5e, 0x23, 0x8d, 0x97, 0x10, 0xe4, 0xc2, + 0xd2, 0x7a, 0x02, 0x61, 0xcb, 0x17, 0xb6, 0x74, 0x71, 0xae, 0x4b, 0x8e, 0xd3, 0x49, 0x1a, 0x2f, + 0xab, 0xf6, 0x7c, 0x36, 0x53, 0x22, 0xd7, 0xd9, 0x73, 0x25, 0x81, 0x74, 0xa0, 0x5f, 0x37, 0x89, + 0x7e, 0x5d, 0xba, 0xc4, 0xad, 0xd9, 0x32, 0xc6, 0x6e, 0x07, 0x76, 0x3b, 0x60, 0x6e, 0xfa, 0xcd, + 0xad, 0x48, 0xbb, 0x1e, 0x99, 0xe1, 0xc9, 0xc4, 0x08, 0xec, 0x0d, 0x5c, 0xf9, 0x83, 0x86, 0xbd, + 0x69, 0x33, 0x3a, 0xe0, 0x65, 0xe8, 0x07, 0x34, 0xe4, 0x2c, 0xbe, 0xd5, 0x39, 0x29, 0xb8, 0x5c, + 0x3e, 0x03, 0x68, 0x09, 0x68, 0xf9, 0xc2, 0x92, 0xba, 0x4f, 0x1f, 0xec, 0x16, 0x4f, 0x02, 0x5e, + 0x22, 0xde, 0x65, 0xcd, 0x1c, 0xa6, 0xcc, 0x88, 0xe4, 0x32, 0x23, 0xe3, 0x29, 0xbc, 0xf4, 0x4b, + 0x7b, 0x83, 0x68, 0xbc, 0xd4, 0x4b, 0x5f, 0x90, 0xca, 0x4b, 0xcb, 0x4b, 0x0b, 0x5e, 0xa8, 0x5b, + 0x9d, 0xa1, 0x12, 0xc9, 0x63, 0x10, 0x71, 0x2b, 0x38, 0x06, 0x21, 0x69, 0x3e, 0xaa, 0xcc, 0x48, + 0xb9, 0x39, 0x29, 0x37, 0x2b, 0xf5, 0xe6, 0x25, 0x66, 0x66, 0x82, 0xe6, 0xb6, 0xf8, 0x7c, 0x75, + 0xc7, 0x20, 0x22, 0x1e, 0x32, 0x6f, 0xa8, 0xe2, 0x0c, 0xc4, 0x41, 0x81, 0x0f, 0x5d, 0xdd, 0xcd, + 0xca, 0xcd, 0x25, 0xdd, 0xcd, 0xb4, 0x19, 0xf8, 0x1b, 0xf8, 0x1b, 0xf8, 0x1b, 0xc1, 0x95, 0x33, + 0xf6, 0x98, 0xef, 0xa9, 0x70, 0x37, 0x87, 0x12, 0x6d, 0xcc, 0xba, 0x93, 0xfb, 0x21, 0x29, 0x65, + 0x4e, 0x58, 0x91, 0x33, 0x96, 0x5c, 0x26, 0x1a, 0x46, 0xe6, 0xc6, 0xf7, 0x5d, 0x4a, 0x3c, 0x95, + 0x43, 0x53, 0x2f, 0xc9, 0xd0, 0x30, 0x8f, 0x2b, 0x15, 0x02, 0xd9, 0x81, 0x60, 0x87, 0xe0, 0x8a, + 0xd2, 0xa4, 0x02, 0x71, 0xd8, 0x68, 0x6c, 0x6f, 0xef, 0x37, 0x6a, 0xdb, 0x7b, 0x07, 0xbb, 0x3b, + 0xfb, 0xfb, 0xbb, 0x07, 0xb5, 0x03, 0x48, 0x78, 0xa8, 0x9e, 0xbc, 0x5a, 0x66, 0x93, 0xb7, 0x0f, + 0x05, 0x8f, 0xb4, 0xff, 0x5d, 0x95, 0xc4, 0x55, 0x8f, 0x55, 0xfb, 0xea, 0x03, 0xf8, 0xea, 0x62, + 0x99, 0x3b, 0xc4, 0x95, 0x8c, 0x99, 0x2a, 0x88, 0x2b, 0xc1, 0x35, 0x43, 0x13, 0x79, 0x83, 0x7c, + 0x3e, 0x34, 0x91, 0xa1, 0x89, 0x0c, 0x07, 0x9f, 0xb1, 0x83, 0x87, 0xfc, 0x49, 0x3e, 0xf2, 0x27, + 0x8b, 0x3a, 0xaa, 0xf9, 0x8f, 0xe9, 0x0a, 0x53, 0xd3, 0x8f, 0x4e, 0x8a, 0x91, 0x11, 0xdb, 0xf4, + 0x95, 0xd9, 0xec, 0x15, 0xc4, 0x92, 0xa8, 0x85, 0x40, 0x2d, 0x44, 0x7a, 0x9b, 0x17, 0xde, 0x24, + 0x59, 0xcc, 0xbc, 0x4b, 0xc9, 0x20, 0xa4, 0x03, 0x91, 0x59, 0x9f, 0x43, 0x4f, 0x01, 0x96, 0xa9, + 0xda, 0x9d, 0xb9, 0x99, 0x0f, 0x1f, 0x66, 0xbe, 0x62, 0x2b, 0x36, 0xb5, 0x02, 0x38, 0x8c, 0x74, + 0x15, 0xee, 0x6b, 0xe3, 0x99, 0xa6, 0xd2, 0x7d, 0x6d, 0x24, 0x45, 0x5d, 0x46, 0x03, 0x2e, 0x03, + 0x2e, 0x23, 0xe1, 0x67, 0x0a, 0x97, 0x4f, 0x4d, 0xed, 0x74, 0x1c, 0x92, 0x1b, 0x57, 0x41, 0x5d, + 0xc3, 0xa3, 0xd6, 0x50, 0xde, 0x80, 0xf2, 0x86, 0xdc, 0xcc, 0x4d, 0x2e, 0x7f, 0xc8, 0xbf, 0xbc, + 0x41, 0x7e, 0xbf, 0x5a, 0x72, 0x9f, 0x3a, 0x9b, 0x7a, 0x2a, 0x54, 0x6f, 0xc2, 0xdd, 0xc0, 0xdd, + 0xa0, 0x7a, 0x13, 0xd5, 0x9b, 0xf0, 0x37, 0xf0, 0x37, 0x9b, 0xe3, 0x6f, 0x50, 0xbd, 0xa9, 0xc3, + 0x09, 0x2b, 0x72, 0xc6, 0x92, 0xcb, 0x44, 0xc3, 0xc8, 0xa0, 0x7a, 0xf3, 0xc5, 0xa1, 0x41, 0xf5, + 0x66, 0x8a, 0x0f, 0x43, 0xf5, 0xe6, 0x73, 0x6f, 0xc2, 0x7e, 0x31, 0xaa, 0x37, 0xd5, 0x81, 0x0b, + 0xf5, 0xad, 0xa0, 0x7a, 0xf3, 0x85, 0x55, 0x8b, 0xea, 0xcd, 0x82, 0x99, 0x3b, 0x2a, 0x79, 0x8c, + 0x99, 0x2a, 0x54, 0x6f, 0xc2, 0x35, 0xa3, 0x7a, 0x73, 0x83, 0x7c, 0x3e, 0xaa, 0x37, 0x51, 0xbd, + 0x09, 0x07, 0x9f, 0xb1, 0x83, 0x47, 0xf5, 0x66, 0x61, 0xaa, 0x37, 0x0d, 0xba, 0xbe, 0xee, 0x77, + 0x7a, 0x9f, 0x72, 0x5b, 0xb7, 0x7a, 0xce, 0x22, 0xde, 0xe4, 0x3c, 0xa5, 0xae, 0xd6, 0x05, 0xf3, + 0x5a, 0x2e, 0x1d, 0x4d, 0x46, 0xaf, 0xfa, 0xb1, 0xe2, 0x8d, 0x5d, 0x37, 0x45, 0x4d, 0xd9, 0x05, + 0xf9, 0x29, 0xfe, 0x70, 0x27, 0x74, 0x68, 0x48, 0x9d, 0xa3, 0xfb, 0xd9, 0xa3, 0x66, 0xeb, 0x69, + 0xae, 0x2f, 0x37, 0x25, 0x17, 0x00, 0xce, 0xdb, 0xda, 0x2c, 0x71, 0xce, 0xa5, 0x82, 0xa5, 0x06, + 0x4d, 0xcd, 0x64, 0x85, 0x90, 0xa9, 0x0a, 0x1f, 0x53, 0x2b, 0x69, 0x36, 0xa0, 0xa4, 0x99, 0xc0, + 0x86, 0x0b, 0xae, 0xa4, 0x49, 0x5c, 0xd7, 0xb7, 0x09, 0xa7, 0xce, 0xec, 0x66, 0xfe, 0xd4, 0x82, + 0x9a, 0x4f, 0x1b, 0x48, 0xa7, 0xab, 0x59, 0x83, 0xae, 0x26, 0x74, 0x35, 0x9f, 0x7e, 0x4e, 0xea, + 0xfd, 0xe9, 0x47, 0xd4, 0xec, 0x76, 0x23, 0xcd, 0xa4, 0xcd, 0xd6, 0x61, 0x0a, 0x3a, 0x5f, 0x30, + 0xed, 0x16, 0x80, 0x8d, 0x32, 0x69, 0xb4, 0x6c, 0x81, 0x8a, 0x64, 0xae, 0xa5, 0x22, 0xa7, 0x12, + 0x29, 0x0d, 0x92, 0x49, 0x67, 0x55, 0x0d, 0xd9, 0x4e, 0xe3, 0x70, 0xe7, 0x70, 0x6f, 0xbf, 0x71, + 0xb8, 0x9b, 0xe3, 0xd8, 0x69, 0x4a, 0x10, 0xae, 0x32, 0xbc, 0xce, 0xc0, 0x79, 0x74, 0xc7, 0x55, + 0xca, 0xb0, 0xb4, 0xfa, 0x30, 0x42, 0x12, 0x42, 0x52, 0x6e, 0x21, 0x29, 0x75, 0x35, 0x50, 0xca, + 0xaa, 0x1f, 0x35, 0xb6, 0x46, 0x47, 0x81, 0x88, 0x9a, 0xfa, 0xf4, 0xb1, 0xc4, 0x77, 0x45, 0x0e, + 0xc8, 0xd8, 0x8d, 0x67, 0x74, 0x40, 0xdc, 0x88, 0xc2, 0x2e, 0x61, 0x97, 0xf9, 0xd9, 0x65, 0xfa, + 0x5a, 0xb4, 0x94, 0x35, 0x67, 0x8a, 0x0c, 0xf3, 0xef, 0x31, 0x0b, 0x26, 0x03, 0x6e, 0x0d, 0x08, + 0x73, 0xc7, 0xa1, 0xc0, 0xfd, 0x3e, 0xeb, 0x4d, 0x6c, 0xb6, 0xc1, 0x12, 0x97, 0x84, 0xa3, 0x68, + 0x23, 0xcd, 0x75, 0xd6, 0x75, 0x18, 0xab, 0x6e, 0x63, 0x1d, 0xb1, 0x68, 0x44, 0xb8, 0x7d, 0x2b, + 0x63, 0xad, 0x8b, 0x36, 0x60, 0xae, 0x30, 0x57, 0x98, 0xab, 0x7a, 0x73, 0x1d, 0xb0, 0x70, 0xf4, + 0x83, 0x84, 0xd4, 0xba, 0xa3, 0x61, 0x24, 0x94, 0x65, 0xae, 0xb5, 0x00, 0x48, 0x0b, 0x48, 0x8b, + 0x54, 0xf3, 0xd5, 0x77, 0xde, 0x92, 0xd0, 0x91, 0xb3, 0xba, 0xb5, 0x16, 0x60, 0x75, 0xb0, 0x3a, + 0x58, 0xdd, 0xab, 0xef, 0x64, 0x4e, 0x7a, 0x3b, 0x63, 0x0e, 0x2c, 0x0b, 0x96, 0x05, 0xcb, 0x7a, + 0xfd, 0x9d, 0xf1, 0xf6, 0xb7, 0x50, 0x1c, 0x5b, 0x3c, 0x09, 0x2b, 0x83, 0x95, 0xc1, 0xca, 0x5e, + 0x7d, 0xe7, 0x88, 0x8e, 0xfc, 0x50, 0x60, 0x87, 0x62, 0xf6, 0x1c, 0x6e, 0x7b, 0x85, 0x85, 0x49, + 0x5a, 0x58, 0xea, 0xdb, 0x5e, 0xc9, 0x1d, 0x61, 0xae, 0x90, 0x20, 0xdb, 0xb2, 0xb8, 0x6a, 0xd1, + 0x04, 0x74, 0x4e, 0x35, 0x2d, 0x74, 0x65, 0x0b, 0x5e, 0xd9, 0xc2, 0x57, 0x67, 0x00, 0xe9, 0x0c, + 0x21, 0xa5, 0x41, 0x88, 0x87, 0x9e, 0xb5, 0x99, 0x17, 0x3e, 0x51, 0x2b, 0x71, 0x82, 0x56, 0xf2, + 0xf4, 0x94, 0x84, 0x78, 0x8a, 0x8a, 0xd3, 0x51, 0x8a, 0x8e, 0x55, 0xaa, 0x3a, 0x52, 0xa3, 0xf2, + 0x08, 0x8d, 0xc4, 0xe9, 0x26, 0x25, 0xa7, 0x99, 0x54, 0x0f, 0xad, 0xfa, 0x13, 0xaa, 0x4a, 0x47, + 0x3b, 0xa3, 0x03, 0x3a, 0x57, 0x05, 0x50, 0x0f, 0x1e, 0x73, 0xe6, 0xb2, 0xff, 0xa1, 0x8e, 0x78, + 0x3c, 0x5e, 0xb4, 0x80, 0x70, 0x8c, 0x70, 0x8c, 0x70, 0x8c, 0x70, 0x8c, 0x70, 0x8c, 0x70, 0x8c, + 0x70, 0xac, 0x2b, 0xe5, 0xce, 0xfa, 0x00, 0x64, 0x7c, 0x4c, 0x6e, 0x2b, 0x15, 0x65, 0x54, 0x79, + 0xed, 0xe4, 0xe3, 0xc5, 0xb4, 0xa5, 0x2c, 0x69, 0xb2, 0xc1, 0xd0, 0x72, 0xd2, 0xdc, 0x91, 0xb0, + 0x24, 0xca, 0xe6, 0x4f, 0x82, 0x8c, 0x06, 0x55, 0x26, 0x69, 0xb7, 0xe2, 0x64, 0xb4, 0x93, 0xee, + 0x82, 0x8e, 0x25, 0x15, 0x9d, 0xe2, 0x99, 0x2e, 0xe1, 0x9c, 0x86, 0x5e, 0x6a, 0xac, 0x51, 0xfd, + 0xef, 0xd7, 0x9a, 0x75, 0x78, 0xf5, 0xcf, 0xce, 0xc3, 0xb7, 0x6f, 0xd6, 0xf4, 0xc7, 0xc6, 0xea, + 0x8f, 0xff, 0xa9, 0x16, 0xf2, 0x18, 0xcd, 0xc4, 0xb0, 0x53, 0xe9, 0xb3, 0x3f, 0x72, 0x09, 0x69, + 0x0e, 0xef, 0xc3, 0x25, 0xc0, 0x25, 0xa8, 0x77, 0x09, 0x66, 0xec, 0x4f, 0x89, 0x59, 0x18, 0xac, + 0x0b, 0xd6, 0x05, 0xeb, 0x7a, 0xdb, 0xba, 0xfc, 0x80, 0x86, 0xd6, 0x04, 0x9d, 0x8f, 0xa3, 0xf4, + 0x46, 0xb6, 0xfa, 0x30, 0x6c, 0x0d, 0xb6, 0x96, 0x9b, 0xad, 0x31, 0x87, 0x7a, 0x9c, 0xf1, 0xfb, + 0x74, 0x57, 0xfa, 0x2d, 0x0c, 0x2e, 0x05, 0x4d, 0x51, 0x3d, 0x9b, 0xbd, 0xea, 0x88, 0x44, 0x12, + 0xdb, 0xcf, 0xc7, 0x9d, 0x8b, 0x6e, 0xa7, 0xdd, 0x6a, 0xf7, 0xaf, 0x3b, 0xdd, 0xd6, 0xe5, 0x75, + 0xaf, 0xdf, 0xec, 0x7f, 0xee, 0xa5, 0x9d, 0xff, 0x98, 0x78, 0x89, 0x84, 0x98, 0x3d, 0xc9, 0x0b, + 0x3e, 0x9a, 0xc7, 0xfd, 0xb3, 0x2f, 0xad, 0x6a, 0x16, 0xc2, 0x03, 0x92, 0x5f, 0x7a, 0xd6, 0x36, + 0xe7, 0x5b, 0x4f, 0xce, 0x7a, 0xcd, 0xa3, 0xf3, 0xd6, 0x89, 0x6e, 0xde, 0xfb, 0x4a, 0xb5, 0x7d, + 0x2b, 0x89, 0x44, 0x01, 0x09, 0xa7, 0xae, 0x28, 0x65, 0x10, 0x9a, 0x3d, 0x87, 0xf8, 0x83, 0xf8, + 0x93, 0x5b, 0xfc, 0x49, 0x7f, 0x9d, 0xac, 0xc8, 0x35, 0xb2, 0xab, 0xd7, 0xc7, 0x4e, 0xff, 0x6f, + 0x49, 0xb0, 0xa6, 0xbe, 0x4e, 0x56, 0x99, 0xd1, 0x72, 0xcb, 0xf3, 0x85, 0xac, 0x36, 0x7e, 0x10, + 0x66, 0x0b, 0xb3, 0x45, 0x8a, 0xf6, 0xea, 0x3b, 0x43, 0x3a, 0xf2, 0xef, 0x52, 0x55, 0x3b, 0x2e, + 0x3a, 0xb8, 0x7c, 0x14, 0x76, 0x06, 0x3b, 0xcb, 0xcd, 0xce, 0x0c, 0x39, 0xb5, 0x1c, 0xd1, 0x90, + 0x11, 0x57, 0x28, 0x9c, 0x2d, 0x1f, 0x85, 0xa1, 0xc1, 0xd0, 0x10, 0xd0, 0x5e, 0xb7, 0x33, 0x7f, + 0xc0, 0xe5, 0xce, 0x29, 0xaf, 0xb5, 0x00, 0xab, 0x83, 0xd5, 0xc1, 0xea, 0x5e, 0x7d, 0x27, 0xa7, + 0xa3, 0x80, 0x86, 0x84, 0x0b, 0x29, 0x5d, 0xad, 0x3e, 0x8c, 0x13, 0x5f, 0xb0, 0x35, 0x49, 0x5b, + 0x4b, 0x7f, 0xe2, 0xcb, 0x25, 0xe1, 0xc8, 0x8a, 0xe8, 0x1d, 0x0d, 0x59, 0x0a, 0x39, 0xc5, 0xb5, + 0x89, 0x7f, 0xd2, 0x0e, 0x8a, 0xcd, 0x35, 0x2d, 0x79, 0x65, 0x4b, 0x5f, 0x99, 0x09, 0xa8, 0x33, + 0x85, 0x74, 0x26, 0x91, 0xd2, 0x34, 0xc4, 0xc3, 0xd1, 0xda, 0xcc, 0x8b, 0x6d, 0x8a, 0xad, 0xf9, + 0x6f, 0x81, 0x1a, 0x5e, 0xb9, 0x4d, 0xb2, 0xb5, 0x8e, 0x74, 0xba, 0xad, 0xf6, 0x71, 0xa7, 0x7d, + 0x7a, 0xf6, 0xe9, 0xba, 0x79, 0xde, 0xbc, 0xbc, 0xb8, 0xee, 0xb5, 0xbe, 0xb4, 0x2e, 0xcf, 0xfa, + 0x7f, 0x55, 0x65, 0xf4, 0xa4, 0x23, 0xa9, 0xfb, 0xbd, 0x24, 0x4b, 0xaf, 0xe7, 0x5d, 0xbb, 0x38, + 0x6b, 0x77, 0x2e, 0xab, 0x79, 0x94, 0x90, 0x2b, 0xea, 0xc0, 0xe7, 0xf6, 0xef, 0xed, 0xce, 0x1f, + 0x6d, 0x93, 0xbb, 0xf0, 0x47, 0xf3, 0xb2, 0x7d, 0xd6, 0xfe, 0x64, 0x72, 0x17, 0x2e, 0x9a, 0xff, + 0x8f, 0xd9, 0xcb, 0xe8, 0xf8, 0xf2, 0xac, 0x7f, 0x76, 0xdc, 0x3c, 0xcf, 0xfa, 0xa2, 0xff, 0xab, + 0xc2, 0xe8, 0xbf, 0xa7, 0x39, 0x6e, 0x37, 0x43, 0x31, 0xe9, 0xaa, 0x76, 0x5e, 0xc2, 0x42, 0x69, + 0xca, 0x77, 0x80, 0x84, 0x80, 0x84, 0x0c, 0x44, 0x42, 0xe9, 0xf9, 0xe7, 0x35, 0x14, 0x54, 0x2f, + 0x8c, 0xd9, 0xf3, 0xdb, 0x90, 0x46, 0xb7, 0xbe, 0xeb, 0xc8, 0x5a, 0xfe, 0xb2, 0x21, 0x18, 0x3f, + 0x8c, 0xbf, 0xd4, 0x67, 0x6e, 0x53, 0xdd, 0x5c, 0xf4, 0x74, 0x9d, 0xef, 0xe3, 0xcc, 0x6d, 0x45, + 0x3c, 0xcd, 0xc2, 0x99, 0x5b, 0x9d, 0x43, 0x2b, 0x7b, 0x23, 0x92, 0x96, 0x31, 0xde, 0x20, 0xe1, + 0x0b, 0x72, 0x37, 0x94, 0xd1, 0xa0, 0x1a, 0x6e, 0x58, 0xe8, 0xb5, 0xf8, 0x7d, 0x40, 0x23, 0x04, + 0xe0, 0x57, 0x02, 0xf0, 0x6c, 0x88, 0x4a, 0x17, 0x86, 0x1d, 0x6a, 0xb3, 0x11, 0x71, 0xa5, 0xd4, + 0x2f, 0xea, 0x02, 0x57, 0xd4, 0xaf, 0x7b, 0xb6, 0xfa, 0xa6, 0xc6, 0xf3, 0x06, 0xe2, 0xb9, 0xae, + 0x78, 0xbe, 0x5d, 0xc2, 0xa1, 0xdd, 0xa0, 0x30, 0xce, 0xbc, 0x88, 0x93, 0x14, 0x87, 0x0f, 0xd6, + 0xbc, 0xdb, 0xbc, 0x01, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, 0x84, 0x73, + 0x84, 0xf3, 0xfc, 0xc2, 0x39, 0xa7, 0xe1, 0x1d, 0x71, 0x65, 0xe2, 0xf9, 0xac, 0x85, 0xcd, 0x08, + 0xe8, 0x88, 0xe3, 0x2f, 0xc5, 0xf1, 0x92, 0x86, 0xef, 0x88, 0x13, 0x6e, 0x09, 0x2e, 0xf2, 0x8a, + 0xa4, 0x1e, 0xe5, 0x67, 0x6f, 0xea, 0xcb, 0xaa, 0x1e, 0xf1, 0xfc, 0x88, 0xda, 0xbe, 0xe7, 0x08, + 0xad, 0x3d, 0x70, 0xec, 0x08, 0xe2, 0x59, 0x0c, 0x2d, 0x74, 0x2d, 0x8b, 0x12, 0xd7, 0x47, 0x02, + 0xab, 0x63, 0xa9, 0xb9, 0x46, 0x7e, 0x22, 0x3d, 0x47, 0x58, 0x47, 0x7a, 0x8e, 0xf4, 0x1c, 0xe9, + 0x39, 0xd2, 0x73, 0xa4, 0xe7, 0x79, 0x86, 0x71, 0x8b, 0xb3, 0x11, 0x95, 0x8a, 0xe5, 0xd3, 0x16, + 0x90, 0x9e, 0x23, 0x3d, 0x2f, 0x61, 0xf8, 0x9e, 0xac, 0x6d, 0xce, 0xec, 0xef, 0x51, 0xe6, 0x97, + 0x45, 0x20, 0x39, 0x47, 0x72, 0x8e, 0xe4, 0x1c, 0x51, 0x5d, 0x20, 0xaa, 0x0b, 0x18, 0xde, 0x32, + 0xa0, 0x33, 0x0f, 0xc9, 0x39, 0x82, 0x3a, 0x92, 0x73, 0x24, 0xe7, 0x48, 0xce, 0x91, 0x9c, 0x23, + 0x39, 0xcf, 0x33, 0x8c, 0xcb, 0x26, 0xe7, 0xf3, 0x16, 0x90, 0x9c, 0x23, 0x39, 0x47, 0x72, 0x8e, + 0xe4, 0x1c, 0xc9, 0x39, 0x92, 0x73, 0x24, 0xe7, 0xea, 0xa3, 0x7a, 0x09, 0x6e, 0x84, 0x4c, 0xaf, + 0x2b, 0x57, 0x79, 0xed, 0x5a, 0xc8, 0xfe, 0x4a, 0x73, 0x59, 0x4a, 0xeb, 0xa5, 0x89, 0x29, 0xcb, + 0x38, 0x32, 0x79, 0x0a, 0xc2, 0x95, 0x10, 0xd3, 0x93, 0xb4, 0x5c, 0x71, 0xe1, 0xca, 0xb1, 0x97, + 0x5c, 0x3b, 0xf5, 0x11, 0xf9, 0x70, 0x98, 0xe2, 0x99, 0xd9, 0xe7, 0xa5, 0xc3, 0x1a, 0x90, 0x3d, + 0x7b, 0x24, 0x7b, 0xf6, 0x5b, 0xf3, 0xf2, 0xe4, 0x8f, 0xe6, 0x65, 0xeb, 0x7a, 0x71, 0x6f, 0x90, + 0xf9, 0xd2, 0x67, 0xc7, 0xdd, 0xcf, 0x26, 0x2b, 0x56, 0x9d, 0x9f, 0xb5, 0x5b, 0xc7, 0xcd, 0xcb, + 0x13, 0x93, 0xfb, 0x70, 0xd4, 0x3c, 0xfe, 0xbd, 0x7b, 0xde, 0x6c, 0xb7, 0x4c, 0xee, 0xc4, 0x69, + 0xf3, 0xe8, 0xf2, 0xec, 0xd8, 0x68, 0xf1, 0xb3, 0xdf, 0x9a, 0xbd, 0xde, 0x59, 0xcf, 0xe4, 0x2e, + 0xf4, 0xfa, 0x9d, 0xcb, 0xe6, 0x27, 0xa3, 0xd7, 0x51, 0xff, 0xb2, 0xd9, 0xee, 0x1d, 0xb7, 0xce, + 0xbe, 0xb4, 0x8c, 0x56, 0xd2, 0xeb, 0x76, 0xfe, 0x68, 0x5d, 0x5e, 0xf7, 0x3e, 0x77, 0xbb, 0xe7, + 0x7f, 0x19, 0xbd, 0xa2, 0x5a, 0xed, 0x5e, 0xc7, 0xf0, 0x99, 0xb8, 0xec, 0x9b, 0xed, 0x58, 0x8d, + 0x96, 0xf5, 0x3c, 0xbd, 0x34, 0x1a, 0x5f, 0x1c, 0x77, 0xda, 0xfd, 0xcb, 0xce, 0xf9, 0x79, 0xeb, + 0xf2, 0xda, 0x74, 0x98, 0x71, 0xd6, 0xee, 0xb7, 0x3e, 0x5d, 0x36, 0xfb, 0xad, 0x93, 0xeb, 0xe3, + 0xb3, 0xcb, 0xe3, 0xcf, 0x67, 0x46, 0x9b, 0x45, 0xa7, 0x1b, 0x2b, 0x95, 0x5e, 0x1f, 0xff, 0xd6, + 0x6c, 0xb7, 0x5b, 0xe5, 0x53, 0x2c, 0x7d, 0x8f, 0x44, 0x4d, 0x3c, 0x51, 0xeb, 0x75, 0x4e, 0xfb, + 0x65, 0x4b, 0xd4, 0x3a, 0xdd, 0xd6, 0x65, 0xb3, 0x7f, 0xd6, 0xfe, 0x74, 0xdd, 0xfb, 0xab, 0xd7, + 0x6f, 0x5d, 0x5c, 0x7f, 0xee, 0x9e, 0x34, 0xfb, 0x2d, 0xb3, 0x6d, 0xf8, 0x71, 0x97, 0x36, 0x57, + 0x76, 0xf8, 0x2a, 0x43, 0x9a, 0x74, 0x1c, 0x51, 0xc7, 0x0a, 0xfc, 0x1f, 0x34, 0x4c, 0x4f, 0x96, + 0xae, 0x3c, 0x0b, 0xca, 0x14, 0x94, 0xa9, 0x9c, 0x67, 0x91, 0xa1, 0x4c, 0xd3, 0xaa, 0x89, 0x0a, + 0xa8, 0x88, 0x0a, 0xee, 0xcf, 0x0a, 0x84, 0x62, 0x99, 0xfd, 0x58, 0xc9, 0xcd, 0x42, 0xd9, 0xfd, + 0x57, 0x15, 0x3b, 0x81, 0x02, 0x81, 0x48, 0x6a, 0x9f, 0x55, 0xd5, 0x90, 0xc9, 0xaa, 0x7e, 0x2a, + 0x19, 0xbb, 0xa2, 0x07, 0xa4, 0x77, 0x12, 0x33, 0x5f, 0x6d, 0x8e, 0x87, 0x13, 0x77, 0x45, 0x9d, + 0x44, 0x56, 0x98, 0x32, 0x96, 0x6d, 0xad, 0x78, 0xc0, 0x8f, 0x2b, 0x9b, 0xa3, 0xcf, 0xfe, 0xfa, + 0xd1, 0x6f, 0xe3, 0x4d, 0xd3, 0xa4, 0x01, 0xf0, 0x84, 0x46, 0x76, 0xc8, 0x82, 0xd9, 0x96, 0x6e, + 0xb5, 0xe9, 0x38, 0x51, 0x25, 0x0a, 0xa8, 0xcd, 0x06, 0xcc, 0xae, 0xc4, 0x12, 0xe0, 0x51, 0x25, + 0xa4, 0x2e, 0xe1, 0xd4, 0xa9, 0x70, 0xbf, 0x42, 0x2a, 0x8b, 0x77, 0x7e, 0x28, 0xc9, 0x1d, 0x5f, + 0xd3, 0x4e, 0x6e, 0x64, 0x84, 0x9d, 0x75, 0xdd, 0x94, 0xfb, 0xbd, 0xe8, 0xdf, 0x63, 0x16, 0x4c, + 0x3e, 0xdf, 0x1a, 0x10, 0xe6, 0xa6, 0xb9, 0xa2, 0x6e, 0x6d, 0xde, 0xd7, 0x9b, 0x4a, 0x39, 0x92, + 0x4f, 0xec, 0xe6, 0x6c, 0x30, 0x9d, 0x8e, 0x0a, 0xbf, 0xa5, 0x95, 0x5b, 0x12, 0x3a, 0x3f, 0x48, + 0x48, 0x2b, 0xcc, 0x73, 0x98, 0x4d, 0x38, 0x8d, 0x2a, 0xfc, 0x96, 0xf0, 0xf8, 0xef, 0x16, 0xe6, + 0xf3, 0xff, 0x8b, 0x2a, 0xc1, 0xed, 0x7d, 0xc4, 0x6c, 0xe2, 0x56, 0x16, 0x5f, 0xf3, 0xcd, 0xbb, + 0x25, 0x51, 0x65, 0xf2, 0x49, 0xd4, 0x49, 0xff, 0x45, 0x03, 0x32, 0x76, 0xe3, 0xa9, 0x1d, 0x10, + 0x37, 0xda, 0x94, 0xca, 0xca, 0xd4, 0xe6, 0x2b, 0x6b, 0xc6, 0xca, 0xcc, 0x59, 0x99, 0x59, 0xab, + 0x32, 0xef, 0x4c, 0xb8, 0x20, 0xdc, 0xd4, 0xb1, 0xee, 0xce, 0x46, 0x2c, 0x1a, 0x11, 0x6e, 0xdf, + 0xaa, 0xf0, 0x67, 0x8b, 0xb6, 0xb2, 0x76, 0x68, 0x15, 0xe6, 0x45, 0x34, 0x9c, 0xe0, 0x04, 0xe6, + 0x71, 0x7f, 0xf2, 0x77, 0xdf, 0x3c, 0x32, 0x18, 0x50, 0x7b, 0xf2, 0xab, 0x67, 0xdd, 0x9e, 0xeb, + 0xdb, 0x71, 0x2d, 0x59, 0x85, 0x45, 0x15, 0x7f, 0x50, 0x21, 0x15, 0x87, 0x0d, 0x06, 0x34, 0x9c, + 0xb4, 0xc5, 0xef, 0x03, 0x3a, 0x79, 0x87, 0x57, 0xf9, 0x71, 0x4b, 0xf8, 0x37, 0x8f, 0x45, 0x95, + 0x69, 0xc1, 0xd8, 0x38, 0x84, 0x67, 0x84, 0x67, 0x84, 0x67, 0x34, 0xcf, 0x33, 0x66, 0x92, 0xb2, + 0x5d, 0xbd, 0x95, 0xb2, 0xa5, 0x2b, 0x60, 0x95, 0x2b, 0x5c, 0x7d, 0x7d, 0x7d, 0xbd, 0xdc, 0x91, + 0x57, 0xd6, 0x4d, 0x35, 0xe2, 0x7e, 0x48, 0x86, 0x6f, 0x2f, 0x93, 0x15, 0x11, 0xbf, 0xe9, 0x03, + 0x6f, 0x0c, 0x4c, 0xb2, 0x24, 0x2d, 0xb1, 0x4f, 0x4b, 0xe3, 0xc3, 0x04, 0x09, 0xcf, 0xb4, 0x5e, + 0x4a, 0xd8, 0x2b, 0x09, 0x7b, 0x21, 0x71, 0x42, 0x53, 0x8e, 0x97, 0x48, 0x9a, 0x58, 0x55, 0xed, + 0xf9, 0x6c, 0xa6, 0xe4, 0x26, 0x66, 0xcf, 0xe1, 0x8e, 0x6f, 0x70, 0xec, 0x92, 0x1c, 0x40, 0xf6, + 0x07, 0x0a, 0x62, 0x6f, 0xb8, 0x35, 0x5b, 0xc1, 0x19, 0xee, 0x6b, 0x4d, 0x23, 0x42, 0x6a, 0x53, + 0x4b, 0x45, 0xe6, 0x89, 0x5a, 0x5a, 0x03, 0x96, 0x06, 0x4b, 0xd3, 0x64, 0x69, 0x09, 0x90, 0x50, + 0x66, 0x7c, 0x7d, 0x66, 0xe0, 0x2f, 0x09, 0xe4, 0xaa, 0xbc, 0x76, 0x46, 0xa9, 0x37, 0x6b, 0x42, + 0x07, 0x82, 0x1c, 0xdf, 0x2c, 0xbf, 0x3a, 0x05, 0x8e, 0x7c, 0xf4, 0x18, 0xd0, 0x24, 0xd0, 0xe4, + 0x6b, 0x0b, 0x4b, 0x20, 0xd0, 0xad, 0x3e, 0x0d, 0x64, 0x89, 0x78, 0x27, 0x19, 0xef, 0x52, 0xef, + 0x2e, 0xa5, 0x4c, 0x86, 0xe4, 0x92, 0x22, 0xc1, 0x25, 0x5c, 0x18, 0x6e, 0x11, 0xd7, 0x24, 0x2b, + 0x5d, 0xfa, 0xd9, 0xf0, 0x8b, 0x69, 0x4d, 0x62, 0xf1, 0xe0, 0x0c, 0x9f, 0x48, 0x56, 0xc0, 0xc6, + 0xad, 0xbc, 0xcf, 0xa5, 0x26, 0x46, 0xd4, 0x5c, 0x54, 0x98, 0x8d, 0x62, 0xf3, 0x51, 0x65, 0x46, + 0xca, 0xcd, 0x49, 0xb9, 0x59, 0xa9, 0x37, 0x2f, 0x31, 0x33, 0x13, 0x34, 0x37, 0x79, 0x5a, 0x7f, + 0x6d, 0xe5, 0xb8, 0x94, 0x0c, 0xc4, 0x0a, 0xe1, 0xd7, 0xe2, 0xcd, 0xbe, 0x44, 0x1b, 0xdd, 0x59, + 0x46, 0xf4, 0xe1, 0xc3, 0xd6, 0xea, 0xff, 0x2d, 0x13, 0xa0, 0x69, 0x28, 0xdc, 0x8a, 0x0d, 0x3e, + 0x23, 0xfd, 0x0c, 0xbd, 0x9e, 0x53, 0x30, 0x79, 0x96, 0xcf, 0x24, 0x57, 0x93, 0xae, 0x47, 0x7f, + 0x4a, 0xc5, 0x60, 0xa5, 0x1f, 0xa4, 0x34, 0xfb, 0xd8, 0x42, 0xd1, 0x41, 0x26, 0x2a, 0x98, 0xae, + 0xea, 0x09, 0xd0, 0x64, 0x10, 0x68, 0x92, 0xdf, 0x94, 0x15, 0xf7, 0xda, 0x32, 0xde, 0x7a, 0xd5, + 0x4b, 0x0b, 0xfb, 0x63, 0x3d, 0x0e, 0x23, 0x1d, 0x15, 0x2e, 0x45, 0x89, 0x2b, 0xcb, 0xb3, 0x1a, + 0x70, 0x19, 0x70, 0x19, 0xc8, 0xb3, 0x90, 0x67, 0x21, 0xcf, 0x42, 0x9e, 0x85, 0x3c, 0x6b, 0x73, + 0xf2, 0xac, 0x14, 0xfb, 0x97, 0x02, 0xa8, 0x49, 0x29, 0xe5, 0xfd, 0x3b, 0xbd, 0x4f, 0xe9, 0xff, + 0xab, 0xe7, 0x2c, 0xe2, 0x4d, 0xce, 0x53, 0x52, 0xe5, 0x17, 0xcc, 0x6b, 0xb9, 0x74, 0x34, 0xdb, + 0x40, 0xf4, 0xc6, 0xae, 0x9b, 0x02, 0xfd, 0x5d, 0x90, 0x9f, 0xe2, 0x0f, 0x77, 0x42, 0x87, 0x86, + 0xd4, 0x39, 0xba, 0x9f, 0x3d, 0x6a, 0xf6, 0x16, 0xf9, 0x8b, 0xab, 0x4e, 0x85, 0xcc, 0x65, 0x6f, + 0xb5, 0xbd, 0xcd, 0xda, 0x7f, 0x7f, 0xb4, 0x55, 0xad, 0x61, 0x0b, 0x9d, 0x87, 0xc4, 0x8b, 0x6c, + 0xca, 0xee, 0x12, 0x1c, 0x52, 0x5f, 0x2a, 0x79, 0xae, 0x3c, 0x64, 0xc6, 0xf6, 0x79, 0xf2, 0x2f, + 0xae, 0x18, 0xb9, 0x83, 0xbe, 0xda, 0x3f, 0x94, 0x64, 0x2a, 0x84, 0xf5, 0xb2, 0x1b, 0xe7, 0xe9, + 0x16, 0x9e, 0x2c, 0x52, 0x2f, 0xde, 0xde, 0x79, 0xaa, 0x85, 0xa9, 0x07, 0x4b, 0xa4, 0x3f, 0x9c, + 0xe9, 0x91, 0x1b, 0x37, 0x3e, 0x0a, 0x2d, 0x7a, 0x84, 0x69, 0xd6, 0xc0, 0x86, 0x5c, 0x08, 0x21, + 0xb4, 0xc4, 0x37, 0x87, 0xdb, 0x11, 0x32, 0x01, 0x53, 0x18, 0xe1, 0xb2, 0x1c, 0x60, 0xe4, 0xb7, + 0x34, 0xf4, 0x28, 0xb7, 0x82, 0x91, 0x63, 0x05, 0x21, 0x9d, 0xc4, 0x20, 0x09, 0xfb, 0x7f, 0xae, + 0x35, 0x38, 0x03, 0x38, 0x83, 0x92, 0x3b, 0x83, 0xd2, 0x28, 0xdc, 0xb5, 0xfa, 0xbf, 0xb5, 0x2e, + 0xdb, 0xad, 0xfe, 0x75, 0xf7, 0xe2, 0xe4, 0xba, 0xff, 0x57, 0xb7, 0x65, 0xbe, 0xaa, 0x5d, 0xab, + 0xff, 0xdb, 0x75, 0xbd, 0x56, 0xfb, 0x74, 0xdd, 0xec, 0x18, 0x2d, 0x1e, 0x3d, 0xed, 0xc7, 0xa7, + 0xa3, 0x66, 0xaf, 0x75, 0x6d, 0xb6, 0x72, 0xf1, 0xa4, 0x27, 0x3b, 0xb3, 0x9e, 0x9c, 0x5f, 0xee, + 0x98, 0x3f, 0x29, 0x8b, 0x59, 0x29, 0x4f, 0x5f, 0x8e, 0xcb, 0xd0, 0x97, 0x69, 0x57, 0xfe, 0xef, + 0x65, 0x69, 0x66, 0xa5, 0x77, 0x59, 0xaf, 0x95, 0x67, 0x89, 0xfd, 0x71, 0x72, 0xb1, 0x53, 0x16, + 0x3f, 0xd6, 0xed, 0x5d, 0x94, 0xc7, 0xf8, 0x4b, 0xd5, 0x99, 0xe3, 0x12, 0x84, 0x98, 0x9d, 0x3f, + 0xeb, 0x8b, 0x78, 0x69, 0x7a, 0x5f, 0x3e, 0xb7, 0x4f, 0x5a, 0xa7, 0x67, 0xed, 0xd6, 0x49, 0x89, + 0xbc, 0x72, 0x69, 0x62, 0xe5, 0x79, 0x29, 0x62, 0xe5, 0x75, 0xf3, 0xf8, 0xb8, 0x2c, 0x81, 0xe5, + 0xb8, 0x44, 0xa0, 0xb2, 0x0c, 0x9e, 0xb8, 0x8c, 0x36, 0x7f, 0x51, 0x96, 0x59, 0x69, 0x95, 0x67, + 0x56, 0x7a, 0x97, 0xe5, 0x01, 0x2d, 0x52, 0x7d, 0x31, 0x5c, 0x77, 0x3f, 0x0d, 0x19, 0x3f, 0xa0, + 0xb6, 0x35, 0xf2, 0x1d, 0x89, 0xba, 0xea, 0x45, 0x0b, 0x20, 0xdd, 0x13, 0xb4, 0x04, 0xd2, 0x5d, + 0xa1, 0x45, 0x80, 0x74, 0x17, 0xed, 0xc8, 0x69, 0xeb, 0xf8, 0xfa, 0xa2, 0x73, 0xd2, 0x2a, 0x09, + 0xe1, 0x3e, 0xe9, 0x4e, 0xab, 0xdd, 0x3c, 0x3a, 0x37, 0x3b, 0xc5, 0x9b, 0x74, 0xe3, 0xe4, 0xac, + 0x57, 0x8a, 0x7e, 0x34, 0x3f, 0xf7, 0x3b, 0x08, 0xc1, 0x89, 0x42, 0xb0, 0x1f, 0x8e, 0xac, 0x01, + 0xb1, 0xb9, 0x1f, 0xca, 0x6f, 0x87, 0x3f, 0xd7, 0x18, 0x02, 0x33, 0x02, 0x33, 0x02, 0xb3, 0x19, + 0x81, 0x79, 0xe5, 0xa6, 0xd8, 0xeb, 0xd3, 0xce, 0xe5, 0xc5, 0xf5, 0x69, 0xf3, 0xb8, 0xdf, 0xb9, + 0x2c, 0x49, 0x9c, 0xee, 0x9d, 0x76, 0xaf, 0xbb, 0xe7, 0x9f, 0x8d, 0xbe, 0x8e, 0xf8, 0xff, 0xf4, + 0x4e, 0xbb, 0x8d, 0x03, 0x93, 0x7b, 0xd0, 0xee, 0xb4, 0x27, 0xb3, 0xf0, 0xe9, 0xd3, 0x04, 0x68, + 0x98, 0xdc, 0x91, 0x3f, 0x4f, 0xbb, 0xa6, 0xaf, 0x24, 0xe3, 0xcd, 0xe1, 0xf8, 0xb4, 0x6b, 0x34, + 0x01, 0xd6, 0xe9, 0xff, 0x66, 0x76, 0x69, 0xcb, 0xf1, 0x69, 0xb7, 0x71, 0xdd, 0x3c, 0xee, 0x98, + 0xde, 0x07, 0xa3, 0x2f, 0x14, 0x37, 0xdb, 0x11, 0xfd, 0x69, 0xf4, 0xe0, 0x1f, 0x77, 0x9b, 0xbf, + 0x1b, 0xbe, 0xf8, 0x4d, 0x8f, 0x62, 0x1b, 0x9c, 0xe8, 0x1b, 0x7d, 0x94, 0x74, 0x25, 0x27, 0xcc, + 0x41, 0xdb, 0x7c, 0x7e, 0xa3, 0x8f, 0x65, 0xdf, 0x12, 0xcf, 0xa3, 0x6e, 0x94, 0xfe, 0xfc, 0xda, + 0x7a, 0x13, 0x38, 0xca, 0x86, 0xa3, 0x6c, 0x4a, 0x6c, 0x31, 0xbd, 0x12, 0xec, 0x74, 0x09, 0x4a, + 0x48, 0xc1, 0xce, 0x1a, 0xd8, 0x0c, 0x2d, 0x58, 0xf0, 0x75, 0xc6, 0xf2, 0x75, 0xc2, 0x4a, 0x45, + 0x82, 0x62, 0xc9, 0xeb, 0x96, 0x22, 0x22, 0x9a, 0x2c, 0x69, 0x30, 0xd2, 0x86, 0xa3, 0xc2, 0x80, + 0xd4, 0x1b, 0x92, 0x2a, 0x83, 0x52, 0x6e, 0x58, 0xca, 0x0d, 0x4c, 0x8b, 0xa1, 0xc9, 0xe1, 0x58, + 0x51, 0xcd, 0x22, 0x51, 0x03, 0x5c, 0x34, 0xe0, 0x3c, 0xba, 0xb6, 0x51, 0x51, 0x26, 0xb0, 0xda, + 0xa8, 0xe4, 0x14, 0xc9, 0x09, 0x8a, 0x29, 0x33, 0x55, 0x95, 0x26, 0xab, 0xcf, 0x74, 0x55, 0x9b, + 0xb0, 0x36, 0x53, 0xd6, 0x66, 0xd2, 0x5a, 0x4d, 0x5b, 0xce, 0xc4, 0x15, 0x24, 0xea, 0x15, 0x25, + 0x32, 0x65, 0x6b, 0xeb, 0x2f, 0xe2, 0x21, 0xf3, 0x86, 0x2a, 0xd6, 0xdd, 0x3c, 0xa0, 0x1e, 0xbc, + 0xcb, 0x67, 0x7c, 0x25, 0xc6, 0xb6, 0xca, 0x3c, 0x87, 0xfe, 0x54, 0xe7, 0x03, 0xa7, 0xcd, 0xc1, + 0xfb, 0xc1, 0xfb, 0xc1, 0xfb, 0x15, 0xda, 0xfb, 0x8d, 0x99, 0xc7, 0xeb, 0x7b, 0x0a, 0xbd, 0xdf, + 0x9e, 0x82, 0xa6, 0x2e, 0x89, 0x17, 0x5f, 0xd2, 0xfa, 0x55, 0xc9, 0x7a, 0x50, 0x63, 0x07, 0x95, + 0x99, 0x74, 0x9f, 0x32, 0xc3, 0x52, 0xec, 0xe6, 0xd6, 0x9a, 0x8d, 0xcb, 0x1d, 0x34, 0xb4, 0x7b, + 0x1a, 0x12, 0x7b, 0x82, 0x6d, 0x4f, 0xd8, 0x90, 0xc5, 0x22, 0x84, 0x35, 0x65, 0xed, 0x3f, 0xbc, + 0x57, 0x38, 0x55, 0xe4, 0xa7, 0xb6, 0xa9, 0xda, 0xc6, 0x54, 0x3d, 0xbc, 0x2b, 0x46, 0x2b, 0x57, + 0x06, 0x62, 0x2d, 0x4e, 0xc2, 0x21, 0xe5, 0x96, 0x3f, 0xe6, 0xc1, 0x98, 0x5b, 0x81, 0xff, 0x83, + 0x86, 0xea, 0x90, 0xd7, 0x73, 0x8d, 0x03, 0x87, 0x01, 0x87, 0x01, 0x87, 0x15, 0x1a, 0x87, 0x39, + 0xd4, 0x66, 0x23, 0xe2, 0xee, 0xed, 0xa8, 0x4c, 0x44, 0x1b, 0x0a, 0xda, 0x5a, 0x8b, 0x21, 0x0d, + 0x00, 0x3c, 0xb1, 0xe9, 0x68, 0x00, 0x35, 0x00, 0xe0, 0x01, 0xe0, 0x6d, 0x02, 0xc0, 0xfb, 0x69, + 0xb9, 0x24, 0x52, 0x8a, 0xea, 0xe6, 0x2d, 0x02, 0xca, 0x01, 0xca, 0x01, 0xca, 0x15, 0x1a, 0xca, + 0x89, 0xeb, 0xd3, 0xbe, 0x08, 0xe4, 0xea, 0x79, 0x39, 0xc1, 0x4c, 0xb7, 0x73, 0x25, 0xef, 0x2f, + 0x59, 0xb4, 0xa3, 0xa2, 0x0c, 0x70, 0xad, 0xa2, 0x6e, 0x6b, 0xf6, 0x83, 0xd0, 0xd5, 0x91, 0xe2, + 0xe3, 0x29, 0x30, 0x96, 0x92, 0x7b, 0x39, 0x4a, 0xf6, 0x70, 0xca, 0x76, 0x15, 0x16, 0x8a, 0x4b, + 0x0a, 0x10, 0x30, 0x70, 0x21, 0x96, 0xaa, 0x0b, 0xb1, 0x66, 0x57, 0x5f, 0x4d, 0x2d, 0xbc, 0xc0, + 0x9e, 0x4c, 0xec, 0xae, 0xcb, 0xb5, 0x09, 0x10, 0xb9, 0xf3, 0x72, 0x6d, 0xe8, 0x65, 0x3d, 0x59, + 0x03, 0x9e, 0x0c, 0x9e, 0x2c, 0x17, 0x4f, 0x86, 0x32, 0x39, 0x64, 0xb5, 0xc8, 0x6a, 0x91, 0xd5, + 0x4a, 0xc6, 0x50, 0x94, 0xc9, 0xa1, 0x4c, 0x0e, 0xde, 0x0f, 0xde, 0x6f, 0x13, 0xbd, 0x1f, 0xca, + 0xe4, 0xd2, 0x7c, 0x18, 0xca, 0xe4, 0xb0, 0x8b, 0x8a, 0x5d, 0xd4, 0x0a, 0x76, 0x51, 0x25, 0xb1, + 0x96, 0x86, 0xf2, 0xb8, 0xd5, 0x46, 0xd5, 0xe0, 0xae, 0x3a, 0x70, 0x17, 0x70, 0x17, 0x70, 0x97, + 0x0a, 0xa2, 0x69, 0xd1, 0x10, 0xb9, 0x1b, 0xaa, 0x5b, 0x21, 0xf3, 0xb5, 0x3c, 0x69, 0x54, 0xd1, + 0x14, 0xaa, 0xc5, 0x22, 0xca, 0x5c, 0x80, 0x0e, 0x57, 0xf0, 0xac, 0x4b, 0xb8, 0x0f, 0x68, 0x54, + 0x55, 0x88, 0x42, 0x14, 0x3b, 0x05, 0xed, 0xce, 0x41, 0xbb, 0x93, 0x78, 0xd1, 0x59, 0xc4, 0x23, + 0x5f, 0x34, 0x78, 0xa2, 0x68, 0xd5, 0x2a, 0x4b, 0xdb, 0xd6, 0xd6, 0xac, 0xca, 0xea, 0xda, 0xb5, + 0xf8, 0xaf, 0xb0, 0xae, 0x53, 0x4b, 0xb5, 0xad, 0xa6, 0x7c, 0x51, 0x7d, 0xde, 0xa8, 0x35, 0x7f, + 0x7c, 0x3a, 0x6d, 0x8a, 0xab, 0x71, 0x75, 0x27, 0x29, 0x59, 0x24, 0x2b, 0x1a, 0xf2, 0x4b, 0xad, + 0x79, 0xa6, 0xe6, 0x7c, 0xb3, 0x54, 0x53, 0xfa, 0xae, 0x98, 0xad, 0x5d, 0x15, 0x24, 0x3f, 0x56, + 0xb0, 0xe4, 0xab, 0xcc, 0x8b, 0x38, 0x89, 0x23, 0xb5, 0x62, 0xe0, 0x3a, 0x6f, 0x18, 0xe0, 0x15, + 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0x48, 0x07, 0xe0, 0x15, 0xe0, 0x15, + 0xe0, 0x55, 0x1d, 0x78, 0xe5, 0x34, 0xbc, 0x23, 0xae, 0x0e, 0xf4, 0x3a, 0x6b, 0x19, 0xf0, 0x15, + 0xf0, 0x15, 0xf0, 0x75, 0xe3, 0xe0, 0x6b, 0xc4, 0x09, 0xb7, 0x14, 0x3b, 0x81, 0x55, 0x47, 0x70, + 0xa0, 0xb0, 0xc9, 0xcf, 0xde, 0x34, 0x86, 0x55, 0x3d, 0xe2, 0xf9, 0x11, 0xb5, 0x7d, 0xcf, 0x51, + 0x6a, 0x6b, 0x00, 0xb1, 0xfa, 0x2a, 0x79, 0x00, 0x62, 0xf3, 0x07, 0xb1, 0xba, 0xa7, 0xb4, 0x7e, + 0xb0, 0xb3, 0xb3, 0xb7, 0xbf, 0xb3, 0x53, 0xdb, 0xdf, 0xde, 0xaf, 0x1d, 0xee, 0xee, 0xd6, 0xf7, + 0x44, 0xee, 0xaa, 0x03, 0xae, 0xdd, 0x1c, 0x5c, 0x3b, 0x52, 0xb8, 0xea, 0x17, 0x21, 0x6d, 0xd2, + 0x28, 0xd0, 0x2c, 0xd0, 0x2c, 0xd0, 0xec, 0xc6, 0xa1, 0x59, 0x90, 0xb1, 0xc0, 0xb1, 0x4f, 0xa6, + 0x0d, 0x64, 0x6c, 0xe9, 0x70, 0x2c, 0xc8, 0x58, 0x80, 0xd6, 0x7c, 0x41, 0xab, 0xc5, 0xd9, 0x88, + 0x6a, 0x41, 0xae, 0xd3, 0x96, 0x01, 0x5f, 0x01, 0x5f, 0x01, 0x5f, 0x37, 0x0e, 0xbe, 0x4e, 0x6c, + 0x9f, 0x33, 0xfb, 0x7b, 0xa4, 0x05, 0xc0, 0x82, 0x8a, 0x05, 0x15, 0x0b, 0x08, 0x5b, 0x0c, 0x08, + 0x0b, 0x2a, 0x16, 0xa8, 0xb6, 0x60, 0xa8, 0x56, 0xa1, 0x23, 0x5b, 0x02, 0x5a, 0xe6, 0x01, 0xcb, + 0x02, 0xcb, 0x02, 0xcb, 0x6e, 0x1e, 0x96, 0x05, 0x15, 0x0b, 0x1c, 0xfb, 0x64, 0xda, 0x40, 0xc5, + 0x96, 0x0e, 0xc7, 0x82, 0x8a, 0x05, 0x68, 0xcd, 0x17, 0xb4, 0xea, 0xa2, 0x62, 0xe7, 0x2d, 0x03, + 0xbe, 0x02, 0xbe, 0x02, 0xbe, 0x6e, 0x1c, 0x7c, 0x05, 0x15, 0x0b, 0x08, 0xab, 0xcf, 0x7f, 0x03, + 0xc2, 0x16, 0x07, 0xc2, 0x82, 0x8a, 0x05, 0xaa, 0x55, 0x88, 0x6a, 0x73, 0x95, 0xf8, 0x52, 0x74, + 0x47, 0xcf, 0xa2, 0x3d, 0xbd, 0x77, 0xf5, 0xc4, 0x17, 0x3f, 0x6c, 0xa9, 0xd3, 0xfc, 0x9b, 0x7e, + 0x32, 0x0f, 0xc7, 0x36, 0xf7, 0x66, 0x61, 0xfc, 0x78, 0xfe, 0x49, 0xd7, 0xfd, 0xe5, 0x27, 0x5d, + 0x1f, 0x4f, 0x3f, 0xe0, 0xfa, 0x6c, 0xf2, 0xea, 0x6e, 0xfc, 0x66, 0x03, 0x15, 0x18, 0xe3, 0x2b, + 0xe7, 0xac, 0x1b, 0x46, 0x22, 0xcb, 0x1e, 0x87, 0x21, 0x55, 0x20, 0x6e, 0xb1, 0xbc, 0x14, 0x65, + 0xbd, 0x6d, 0xe8, 0x31, 0x26, 0x4a, 0x74, 0xa0, 0xc7, 0x08, 0x3d, 0xc6, 0x64, 0x3d, 0x83, 0x1e, + 0x23, 0xb8, 0x0f, 0x70, 0x1f, 0xe0, 0x3e, 0x0a, 0xc7, 0x7d, 0x60, 0xeb, 0x0e, 0xbc, 0xc7, 0x93, + 0x69, 0xc3, 0xd6, 0x5d, 0xe9, 0x78, 0x0f, 0x6c, 0xdd, 0x81, 0xe4, 0xc8, 0x6f, 0xc9, 0x43, 0x8f, + 0x11, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, 0x15, 0xe0, + 0x15, 0xe0, 0xd5, 0x24, 0xf0, 0x0a, 0x3d, 0x46, 0xc0, 0x57, 0xc0, 0x57, 0xc0, 0x57, 0xd5, 0x6b, + 0x16, 0x7a, 0x8c, 0x00, 0xb1, 0x3a, 0x3d, 0x38, 0x40, 0x6c, 0x71, 0x40, 0x2c, 0x2a, 0xcf, 0x80, + 0x6b, 0x8b, 0x85, 0x6b, 0xa1, 0xc7, 0x08, 0x34, 0x0b, 0x34, 0x0b, 0x34, 0xab, 0x6a, 0xcd, 0x82, + 0x8c, 0x05, 0x8e, 0x7d, 0x32, 0x6d, 0x20, 0x63, 0x4b, 0x87, 0x63, 0x41, 0xc6, 0x02, 0xb4, 0xe6, + 0x0b, 0x5a, 0xa1, 0xc7, 0x08, 0xf8, 0x0a, 0xf8, 0x0a, 0xf8, 0xaa, 0x78, 0xcd, 0xe2, 0x10, 0x30, + 0x20, 0xac, 0x3e, 0xff, 0x0d, 0x08, 0x5b, 0x1c, 0x08, 0x0b, 0x2a, 0x16, 0xa8, 0xb6, 0x60, 0xa8, + 0x16, 0x7a, 0x8c, 0xc0, 0xb2, 0xc0, 0xb2, 0xc0, 0xb2, 0x8a, 0xd6, 0x2c, 0xa8, 0x58, 0xe0, 0xd8, + 0x27, 0xd3, 0x06, 0x2a, 0xb6, 0x74, 0x38, 0x16, 0x54, 0x2c, 0x40, 0x6b, 0xbe, 0xa0, 0x15, 0x7a, + 0x8c, 0x80, 0xaf, 0x80, 0xaf, 0x80, 0xaf, 0x8a, 0xd7, 0x2c, 0xa8, 0x58, 0x40, 0x58, 0x7d, 0xfe, + 0x1b, 0x10, 0xb6, 0x38, 0x10, 0x16, 0x54, 0x2c, 0x50, 0xad, 0x42, 0x54, 0x0b, 0x3d, 0xc6, 0x94, + 0x7a, 0x8c, 0xca, 0xa5, 0xff, 0x2a, 0x69, 0x65, 0x19, 0xcf, 0x27, 0x5f, 0x70, 0xc4, 0x48, 0x74, + 0x3c, 0x7b, 0xbf, 0x81, 0xe2, 0x8c, 0xfe, 0x98, 0x07, 0x63, 0x6e, 0x0d, 0x42, 0xfa, 0xf7, 0x98, + 0x7a, 0xf6, 0xbd, 0x3a, 0x69, 0xc6, 0xb5, 0x96, 0xd5, 0x08, 0x33, 0xd6, 0x20, 0xcc, 0x98, 0x63, + 0xbe, 0x03, 0x61, 0xc6, 0x02, 0x79, 0x6d, 0x65, 0x59, 0xcc, 0x62, 0xfd, 0x2d, 0x8c, 0x35, 0x4e, + 0xff, 0x54, 0xac, 0x3f, 0x75, 0x89, 0xcb, 0x32, 0x61, 0xb9, 0xf8, 0xed, 0x7f, 0x54, 0x7c, 0x9a, + 0xda, 0x04, 0x45, 0x61, 0x2e, 0xa9, 0x23, 0x21, 0xd1, 0x84, 0x5a, 0x75, 0x25, 0x20, 0x3a, 0x21, + 0xa9, 0xc2, 0x84, 0x43, 0x4b, 0xa2, 0xa1, 0x7b, 0xaa, 0xf4, 0x27, 0x16, 0x5a, 0x67, 0xaf, 0x20, + 0x80, 0xfd, 0xca, 0x5c, 0xb0, 0x37, 0xd5, 0x30, 0x57, 0x0d, 0xf4, 0x54, 0x28, 0xa3, 0x43, 0x7d, + 0x1b, 0x20, 0x0f, 0x20, 0xef, 0x51, 0xcf, 0xa0, 0xbe, 0x9d, 0xaf, 0x0b, 0xd0, 0xe1, 0x0a, 0x9e, + 0x75, 0x09, 0xd8, 0xe9, 0xd2, 0xec, 0x24, 0x5e, 0x74, 0x16, 0xd8, 0xe9, 0x12, 0x59, 0xb3, 0x28, + 0xd4, 0xc2, 0x2e, 0xd7, 0x93, 0x69, 0x43, 0xa1, 0x56, 0x16, 0x49, 0xa7, 0xd6, 0xe4, 0xf3, 0xe9, + 0x94, 0xa2, 0x50, 0x4b, 0xb3, 0xa3, 0x57, 0xdf, 0x1a, 0xd4, 0xb7, 0x13, 0x44, 0x2f, 0xa8, 0x6f, + 0x03, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, 0x02, 0xbc, + 0x02, 0xbc, 0xaa, 0x07, 0xaf, 0x50, 0xdf, 0x06, 0x7c, 0x05, 0x7c, 0x05, 0x7c, 0x55, 0xbd, 0x66, + 0xa1, 0xbe, 0x0d, 0x10, 0xab, 0xd3, 0x83, 0x03, 0xc4, 0x16, 0x07, 0xc4, 0xe2, 0x9c, 0x01, 0x70, + 0x6d, 0xb1, 0x70, 0x2d, 0xd4, 0xb7, 0x81, 0x66, 0x81, 0x66, 0x81, 0x66, 0x55, 0xad, 0x59, 0x90, + 0xb1, 0xc0, 0xb1, 0x4f, 0xa6, 0x0d, 0x64, 0x6c, 0xe9, 0x70, 0x2c, 0xc8, 0x58, 0x80, 0xd6, 0x7c, + 0x41, 0x2b, 0xd4, 0xb7, 0x01, 0x5f, 0x01, 0x5f, 0x01, 0x5f, 0x15, 0xaf, 0x59, 0x48, 0xbe, 0x00, + 0xc2, 0xea, 0xf3, 0xdf, 0x80, 0xb0, 0xc5, 0x81, 0xb0, 0xa0, 0x62, 0x81, 0x6a, 0x0b, 0x86, 0x6a, + 0xa1, 0xbe, 0x0d, 0x2c, 0x0b, 0x2c, 0x0b, 0x2c, 0xab, 0x68, 0xcd, 0x82, 0x8a, 0x05, 0x8e, 0x7d, + 0x32, 0x6d, 0xa0, 0x62, 0x4b, 0x87, 0x63, 0x41, 0xc5, 0x02, 0xb4, 0xe6, 0x0b, 0x5a, 0xa1, 0xbe, + 0x0d, 0xf8, 0x0a, 0xf8, 0x0a, 0xf8, 0xaa, 0x78, 0xcd, 0x82, 0x8a, 0x05, 0x84, 0xd5, 0xe7, 0xbf, + 0x01, 0x61, 0x8b, 0x03, 0x61, 0x41, 0xc5, 0x02, 0xd5, 0x2a, 0x44, 0xb5, 0x50, 0xdf, 0x4e, 0xa9, + 0xbe, 0xad, 0x50, 0xf4, 0xaf, 0x92, 0x56, 0x77, 0xbb, 0x13, 0xbf, 0xbb, 0x1b, 0xbf, 0xda, 0x40, + 0x15, 0x46, 0x4e, 0xc2, 0x21, 0xe5, 0x96, 0x1e, 0x31, 0xc6, 0xe7, 0x1a, 0x87, 0xf0, 0x76, 0xa2, + 0x64, 0x07, 0x9a, 0x8c, 0xd0, 0x64, 0xcc, 0x38, 0x81, 0xd1, 0xc2, 0xbb, 0xab, 0xe4, 0xdb, 0xb5, + 0xf0, 0xec, 0x9b, 0xa9, 0xbc, 0xdd, 0x80, 0xf2, 0xb6, 0x29, 0xca, 0xdb, 0xdb, 0x98, 0x2a, 0xc8, + 0x6c, 0x4b, 0x00, 0xbc, 0x9f, 0x56, 0x7c, 0x39, 0x8d, 0x42, 0x54, 0x37, 0x6f, 0x11, 0x50, 0x0e, + 0x50, 0x0e, 0x50, 0xae, 0xd0, 0x50, 0xee, 0xc6, 0xf7, 0x5d, 0x4a, 0x3c, 0x95, 0x40, 0xae, 0x9e, + 0x97, 0x13, 0x7c, 0x97, 0xe1, 0x94, 0xa8, 0xa2, 0x41, 0xb2, 0xa0, 0x3f, 0xc4, 0x56, 0x7d, 0xfa, + 0xe1, 0x4c, 0xf7, 0x44, 0xca, 0x81, 0x9f, 0xf8, 0xa1, 0xa9, 0x98, 0x90, 0x43, 0xd3, 0xba, 0xa0, + 0xea, 0x39, 0x8b, 0x78, 0x93, 0x73, 0xb1, 0x18, 0x37, 0xc1, 0xd9, 0x2d, 0x97, 0x4e, 0x3c, 0xca, + 0x04, 0xb5, 0x78, 0x63, 0xd7, 0x7d, 0xff, 0x4e, 0x04, 0x01, 0xca, 0x37, 0xd2, 0x09, 0x1d, 0x1a, + 0x52, 0xe7, 0xe8, 0x7e, 0xd6, 0x84, 0xd6, 0x01, 0x97, 0x5c, 0xe1, 0x7a, 0x57, 0xb6, 0x80, 0xc3, + 0x4a, 0xc3, 0xda, 0xa5, 0x33, 0x99, 0xe4, 0x0b, 0x3f, 0xd9, 0xbf, 0x4c, 0x38, 0x53, 0xa2, 0x33, + 0xa4, 0x67, 0x66, 0x92, 0x0d, 0xd9, 0xdb, 0x03, 0x90, 0xa0, 0xf3, 0xd5, 0xa9, 0x5b, 0x4b, 0xda, + 0xe7, 0x47, 0x42, 0x44, 0x49, 0xab, 0x2d, 0x52, 0x5e, 0xee, 0xb2, 0x44, 0x99, 0x09, 0x33, 0x67, + 0x11, 0x34, 0x29, 0x8f, 0x1a, 0x45, 0xd1, 0xa1, 0x34, 0x0a, 0x94, 0x46, 0x7b, 0x4a, 0x50, 0x9d, + 0x5a, 0xf3, 0x4b, 0x7b, 0xd9, 0x49, 0xd5, 0xf6, 0x3d, 0x8f, 0xda, 0xdc, 0x0f, 0xa7, 0x17, 0xd6, + 0xa5, 0x9e, 0x84, 0xf9, 0xf4, 0x3f, 0x69, 0x27, 0x6d, 0x20, 0x15, 0x4a, 0xab, 0x84, 0xd3, 0x28, + 0x99, 0xb4, 0x49, 0x5d, 0x9a, 0x24, 0x9b, 0x16, 0x29, 0x4b, 0x83, 0x94, 0xa5, 0x3d, 0x4a, 0xd3, + 0x1c, 0xbd, 0xd0, 0x4d, 0x38, 0x6d, 0x59, 0x4a, 0x48, 0x3a, 0xd4, 0xe3, 0x8c, 0xdf, 0x87, 0x74, + 0x20, 0x32, 0xf9, 0x73, 0x5f, 0x2e, 0xb0, 0x29, 0x5e, 0x3d, 0x9b, 0xbd, 0xfa, 0x88, 0x44, 0x12, + 0xcb, 0x67, 0xde, 0x91, 0xd3, 0xb3, 0xa3, 0xd6, 0xe5, 0xf5, 0x71, 0xa7, 0xdd, 0x6e, 0x1d, 0xf7, + 0x3b, 0x97, 0xd7, 0xfd, 0xbf, 0xba, 0x2d, 0xd1, 0x95, 0x14, 0x13, 0x75, 0x91, 0x14, 0x33, 0xad, + 0x88, 0xf1, 0x69, 0x76, 0x8e, 0x97, 0x7d, 0xaa, 0xe6, 0x41, 0x63, 0x29, 0xea, 0x48, 0xaf, 0x24, + 0xfd, 0x38, 0x69, 0x96, 0xa4, 0x23, 0x17, 0xdd, 0x4e, 0x39, 0x3a, 0x72, 0xae, 0x66, 0x42, 0x84, + 0x9e, 0xbc, 0xd2, 0x1d, 0x0f, 0xde, 0x69, 0x98, 0x87, 0xaa, 0x43, 0x38, 0xb5, 0x6c, 0xdf, 0x91, + 0x00, 0x4a, 0xcb, 0x26, 0x80, 0x91, 0x80, 0x91, 0x4a, 0x8e, 0x91, 0xe2, 0xc5, 0x4e, 0x3c, 0x47, + 0xf4, 0x4c, 0xc1, 0x02, 0x25, 0x09, 0x54, 0x0e, 0x57, 0xbb, 0x84, 0x73, 0x1a, 0x7a, 0xc2, 0x60, + 0xa4, 0xfa, 0xdf, 0xaf, 0x35, 0xeb, 0xf0, 0xea, 0x9f, 0x9d, 0x87, 0x6f, 0xdf, 0xac, 0xe9, 0x8f, + 0x8d, 0xd5, 0x1f, 0xfb, 0xf3, 0x1f, 0x3e, 0xae, 0xfd, 0xf0, 0xcb, 0xb7, 0x6f, 0x1f, 0xe2, 0x9f, + 0xff, 0xd7, 0xaf, 0xff, 0xfb, 0xff, 0x7e, 0xfd, 0x5f, 0xd6, 0xd5, 0xda, 0xbf, 0xf8, 0x4f, 0xfa, + 0xc9, 0xbe, 0x2a, 0x80, 0x03, 0xa4, 0x1e, 0xb9, 0x71, 0xa9, 0x23, 0xee, 0xfe, 0xe6, 0x0d, 0xc0, + 0xf9, 0xc1, 0xf9, 0x95, 0xdc, 0xf9, 0x89, 0xef, 0x63, 0x09, 0xee, 0x5b, 0x69, 0x32, 0x79, 0x7e, + 0x4b, 0x43, 0x8f, 0x72, 0x2b, 0x18, 0xc9, 0xd8, 0xfd, 0x6a, 0x2b, 0x30, 0x7e, 0x18, 0x3f, 0xd8, + 0x21, 0x33, 0xd8, 0xa1, 0x56, 0xff, 0xb7, 0xd6, 0x65, 0xbb, 0xd5, 0xbf, 0xee, 0x5e, 0x9c, 0x94, + 0x84, 0x1a, 0x6a, 0xf5, 0x7f, 0xbb, 0xae, 0xd7, 0x6a, 0x9f, 0xae, 0x9b, 0x9d, 0x63, 0x93, 0xf3, + 0xf7, 0x69, 0x3f, 0x3e, 0x1d, 0x35, 0x7b, 0xad, 0xeb, 0xd6, 0xa5, 0xe9, 0x3d, 0xd9, 0x99, 0xf5, + 0xe4, 0xfc, 0x72, 0xc7, 0xfc, 0x49, 0x59, 0xcc, 0x4a, 0x79, 0xfa, 0x72, 0x5c, 0x86, 0xbe, 0x4c, + 0xbb, 0xf2, 0x7f, 0x2f, 0x4b, 0x33, 0x2b, 0xbd, 0xcb, 0x7a, 0xad, 0x3c, 0x4b, 0xec, 0x8f, 0x93, + 0x8b, 0x9d, 0xb2, 0xf8, 0xb1, 0x6e, 0xef, 0xa2, 0x3c, 0xc6, 0x5f, 0xaa, 0xce, 0x1c, 0x97, 0x20, + 0xc4, 0xec, 0xfc, 0x59, 0x5f, 0xc4, 0x4b, 0xd3, 0xfb, 0xf2, 0xb9, 0x7d, 0xd2, 0x3a, 0x3d, 0x6b, + 0xb7, 0x4e, 0x4a, 0xe4, 0x95, 0x4b, 0x13, 0x2b, 0xcf, 0x4b, 0x11, 0x2b, 0xaf, 0x9b, 0xc7, 0xc7, + 0x65, 0x09, 0x2c, 0xc7, 0x25, 0x02, 0x95, 0x65, 0xf0, 0xc4, 0x65, 0xb4, 0xf9, 0x8b, 0xb2, 0xcc, + 0x4a, 0xab, 0x3c, 0xb3, 0xd2, 0xbb, 0x2c, 0x0f, 0x68, 0xe9, 0xa1, 0xe0, 0x20, 0xd1, 0xe8, 0xad, + 0xd2, 0xe6, 0x56, 0x10, 0x52, 0xdb, 0xf7, 0x06, 0x6a, 0x48, 0xf8, 0x45, 0x6b, 0x20, 0xe3, 0x13, + 0xb4, 0x04, 0x32, 0x5e, 0xa1, 0xa5, 0x80, 0x8c, 0x97, 0x70, 0xa2, 0x20, 0xe3, 0x8b, 0x1f, 0xa9, + 0x41, 0xc6, 0x17, 0x31, 0xd7, 0x00, 0x19, 0x5f, 0x48, 0x63, 0x01, 0x19, 0x5f, 0xd0, 0x25, 0x06, + 0x32, 0xbe, 0xa0, 0x33, 0x03, 0x32, 0xbe, 0xb0, 0x79, 0x2d, 0xc8, 0x78, 0x90, 0xf1, 0x5a, 0x89, + 0x39, 0x90, 0xf1, 0x20, 0xe3, 0x2b, 0x20, 0xe3, 0xdf, 0x9a, 0x16, 0x90, 0xf1, 0x45, 0x9c, 0x15, + 0x90, 0xf1, 0x85, 0x04, 0x2d, 0x20, 0xe3, 0x93, 0x8d, 0xde, 0x80, 0x8c, 0x5d, 0x6e, 0xd9, 0xbe, + 0xe7, 0x30, 0x21, 0x09, 0x9a, 0xc5, 0xf0, 0x3f, 0x6d, 0x08, 0x14, 0x7c, 0x82, 0x96, 0x40, 0xc1, + 0x2b, 0xb4, 0x0f, 0x1c, 0x86, 0x11, 0x74, 0x01, 0xd4, 0xb6, 0x6c, 0x3f, 0x0c, 0xa9, 0xcd, 0xa9, + 0x63, 0xdd, 0x4c, 0x45, 0x43, 0x45, 0xbd, 0xc0, 0x7a, 0x5b, 0x70, 0x04, 0x70, 0x04, 0x25, 0x77, + 0x04, 0xb6, 0x3f, 0xf6, 0x38, 0x0d, 0x85, 0x84, 0xba, 0x25, 0xee, 0x11, 0x92, 0x94, 0xcc, 0x96, + 0x50, 0x53, 0x54, 0x21, 0x89, 0xad, 0x4a, 0x77, 0x56, 0x91, 0x8e, 0xb2, 0x4a, 0xdd, 0x64, 0x19, + 0x9d, 0x60, 0x15, 0x12, 0xd6, 0xaa, 0x87, 0x56, 0xfd, 0xbd, 0x37, 0x4a, 0x47, 0x3b, 0x23, 0xdd, + 0xcd, 0xab, 0xe2, 0xc5, 0xea, 0x7b, 0x4e, 0xd5, 0x05, 0xeb, 0xb8, 0x31, 0x44, 0x6b, 0x44, 0x6b, + 0x44, 0x6b, 0x44, 0x6b, 0x44, 0x6b, 0x44, 0x6b, 0x44, 0x6b, 0x05, 0xd1, 0x7a, 0x24, 0xa5, 0xac, + 0xb5, 0x68, 0x01, 0x71, 0x19, 0x71, 0x19, 0x15, 0xad, 0x49, 0x28, 0xb5, 0x02, 0x88, 0x8f, 0xb6, + 0x8e, 0xaf, 0x2f, 0x3a, 0x27, 0xad, 0x92, 0x54, 0xb3, 0x4e, 0xba, 0xd3, 0x6a, 0x37, 0x8f, 0xce, + 0xcd, 0xae, 0x9f, 0x98, 0x74, 0xe3, 0xe4, 0xac, 0x57, 0x8a, 0x7e, 0x34, 0x3f, 0xf7, 0x3b, 0xd8, + 0xdf, 0x4a, 0x1a, 0x82, 0x23, 0x4e, 0xf8, 0x58, 0x32, 0x4f, 0x9e, 0xb5, 0x81, 0x30, 0x8c, 0x30, + 0x8c, 0x30, 0x6c, 0x4e, 0x18, 0xee, 0xf5, 0x9b, 0xfd, 0xcf, 0xbd, 0x12, 0x05, 0xe2, 0x59, 0x87, + 0x3e, 0xb7, 0xcf, 0x3b, 0xc7, 0xbf, 0x9b, 0x1f, 0xc8, 0x66, 0xdd, 0x91, 0xee, 0xcc, 0x86, 0x45, + 0xb4, 0xb1, 0x37, 0xe3, 0x6d, 0xc9, 0x8d, 0x4b, 0xad, 0x1b, 0xd7, 0xb7, 0xbf, 0x4b, 0xc6, 0xb7, + 0x67, 0x5b, 0x44, 0xb4, 0x43, 0xb4, 0x03, 0x19, 0xfc, 0xe6, 0x82, 0x07, 0x19, 0x2c, 0xc9, 0x58, + 0x82, 0x0c, 0xd6, 0x36, 0xb4, 0x20, 0x83, 0x2b, 0x05, 0x22, 0x83, 0x1f, 0x47, 0xd9, 0x89, 0xdb, + 0x57, 0x1a, 0xb6, 0xa7, 0x0d, 0x22, 0x6a, 0x23, 0x6a, 0x23, 0x6a, 0x23, 0x6a, 0x23, 0x6a, 0x23, + 0x6a, 0x23, 0x6a, 0xcb, 0x46, 0x6d, 0x3f, 0x1c, 0x59, 0x03, 0x62, 0x73, 0x3f, 0x94, 0x88, 0xd4, + 0x2b, 0x8d, 0x20, 0x3a, 0x23, 0x3a, 0x83, 0x41, 0x4e, 0xb0, 0xe4, 0x0b, 0xc0, 0x20, 0xf7, 0x2f, + 0x9b, 0xed, 0xde, 0x71, 0xeb, 0xec, 0x4b, 0xeb, 0xf2, 0xfa, 0xb4, 0x73, 0x79, 0x71, 0x7d, 0xda, + 0x2c, 0xd1, 0x6d, 0x92, 0xbd, 0xd3, 0xee, 0x75, 0xf7, 0xfc, 0x73, 0xcf, 0x64, 0x0e, 0xf9, 0xff, + 0xf4, 0x4e, 0xbb, 0x8d, 0x03, 0x93, 0x7b, 0xd0, 0xee, 0xb4, 0x27, 0xb3, 0xf0, 0xe9, 0x53, 0xf3, + 0xe8, 0xbc, 0x65, 0x72, 0x47, 0xfe, 0x3c, 0xed, 0x9a, 0xbe, 0x92, 0x8c, 0x37, 0x87, 0xe3, 0xd3, + 0xae, 0xd1, 0xa7, 0x91, 0x3b, 0xfd, 0xdf, 0xcc, 0xd6, 0x19, 0x3b, 0x3e, 0xed, 0x36, 0xae, 0x9b, + 0xc7, 0x1d, 0xd3, 0xfb, 0x60, 0xf4, 0xe5, 0xc2, 0x66, 0x3b, 0xa2, 0x3f, 0x8d, 0x1e, 0xfc, 0xe3, + 0x6e, 0xf3, 0x77, 0xc3, 0x17, 0xbf, 0xe9, 0x51, 0x0c, 0xdb, 0xe8, 0x29, 0x13, 0x7b, 0x79, 0x11, + 0xe2, 0xe7, 0x1a, 0x43, 0xa2, 0x8f, 0x44, 0x1f, 0x89, 0x3e, 0x12, 0x7d, 0x24, 0xfa, 0x48, 0xf4, + 0x91, 0xe8, 0x23, 0xd1, 0x47, 0xa2, 0x8f, 0x44, 0x1f, 0x89, 0x3e, 0x12, 0x7d, 0x24, 0xfa, 0x48, + 0xf4, 0x91, 0xe8, 0x67, 0x97, 0xe8, 0x33, 0x2f, 0x18, 0x73, 0x2b, 0xf0, 0x7f, 0x50, 0x89, 0x1d, + 0xfc, 0xd5, 0x46, 0xc4, 0x12, 0xfb, 0x3a, 0x12, 0x7b, 0x24, 0xf6, 0xd9, 0x24, 0xf6, 0x27, 0x2c, + 0x14, 0x9b, 0x7e, 0x72, 0x37, 0x94, 0xcf, 0xa5, 0x27, 0x8d, 0x08, 0x0e, 0xb1, 0x5c, 0x15, 0x95, + 0xb0, 0xc9, 0xa8, 0x30, 0x9d, 0x67, 0x4d, 0xe8, 0x3e, 0x48, 0xad, 0xa8, 0xa4, 0xd2, 0x88, 0x94, + 0x1b, 0x93, 0x72, 0xa3, 0x7a, 0xd1, 0xb8, 0xe2, 0x91, 0xcb, 0xba, 0x40, 0x4d, 0x70, 0xd5, 0x08, + 0xf3, 0x68, 0x6b, 0x6b, 0xc6, 0xa1, 0x36, 0x1b, 0x11, 0x57, 0xa8, 0xac, 0x75, 0x2d, 0xde, 0x34, + 0x24, 0xda, 0x58, 0x2b, 0x16, 0x94, 0x69, 0x4c, 0xae, 0x68, 0x56, 0x0d, 0x6e, 0xaa, 0xa8, 0x2a, + 0xa2, 0x7d, 0x3a, 0xcc, 0x8d, 0xf7, 0x6a, 0x9a, 0x53, 0x54, 0x54, 0xfb, 0xf2, 0x0c, 0xd6, 0xa4, + 0xdb, 0x7d, 0x78, 0xaf, 0x60, 0x0a, 0x14, 0x14, 0xdb, 0x3e, 0x9d, 0x82, 0xed, 0x0d, 0x9a, 0x82, + 0x77, 0xf9, 0x3c, 0x7d, 0x95, 0x51, 0xc5, 0xaf, 0xc0, 0x12, 0xab, 0x32, 0x2f, 0xe2, 0x24, 0x8e, + 0x1c, 0x92, 0xc0, 0x65, 0xde, 0x10, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x0b, + 0xc0, 0x0b, 0xc0, 0x0b, 0xc0, 0x8b, 0x5e, 0xf0, 0xc2, 0x69, 0x78, 0x47, 0x5c, 0x15, 0xe8, 0x65, + 0xd6, 0x12, 0xe0, 0x0b, 0xe0, 0x0b, 0xe0, 0x4b, 0xea, 0x35, 0x13, 0x71, 0xc2, 0x2d, 0x49, 0x23, + 0xaa, 0xc8, 0x1d, 0x2f, 0x5e, 0x34, 0xf1, 0xd9, 0x9b, 0xfa, 0xdc, 0xaa, 0x47, 0x3c, 0x3f, 0xa2, + 0xb6, 0xef, 0x39, 0x52, 0x6b, 0xb9, 0xd4, 0x20, 0xa6, 0x06, 0x10, 0x93, 0x37, 0x88, 0x51, 0x3d, + 0x05, 0xea, 0x8f, 0x3f, 0x03, 0xd7, 0x64, 0x8b, 0x6b, 0x46, 0x12, 0xab, 0x6c, 0xe1, 0x92, 0x27, + 0x8d, 0x00, 0xcd, 0x00, 0xcd, 0x00, 0xcd, 0x80, 0x8c, 0x01, 0x19, 0x03, 0x1c, 0x03, 0x32, 0x06, + 0xa0, 0x45, 0x33, 0x68, 0xb1, 0x38, 0x1b, 0x51, 0x25, 0xc8, 0x65, 0xda, 0x12, 0xe0, 0x0b, 0xe0, + 0x0b, 0xe0, 0x4b, 0xea, 0x35, 0x33, 0xb1, 0x1d, 0xce, 0xec, 0xef, 0x91, 0x12, 0x00, 0x03, 0x2a, + 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0x1b, 0x8a, 0x6a, 0x24, 0x0c, 0x7d, 0x09, 0x68, 0x98, + 0x07, 0x2c, 0x03, 0x2c, 0x03, 0x2c, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0x70, 0x0c, 0xa8, 0x18, 0x80, + 0x16, 0xdd, 0xa0, 0x45, 0x15, 0x15, 0x33, 0x6f, 0x09, 0xf0, 0x05, 0xf0, 0x05, 0xf0, 0x05, 0x54, + 0x0c, 0xa8, 0x18, 0x40, 0x18, 0x50, 0x31, 0x40, 0x35, 0xb2, 0xa8, 0x46, 0xeb, 0x11, 0xee, 0xa6, + 0xe7, 0xf9, 0x9c, 0x4c, 0xa6, 0x44, 0xec, 0x24, 0x77, 0x64, 0xdf, 0xd2, 0x11, 0x09, 0x08, 0xbf, + 0x9d, 0x38, 0xcc, 0x2d, 0x3f, 0xa0, 0x9e, 0x1d, 0x23, 0x11, 0x2b, 0x70, 0x09, 0x1f, 0xf8, 0xe1, + 0x68, 0xcb, 0xf6, 0x47, 0x81, 0xef, 0x51, 0x8f, 0x47, 0xcb, 0x1f, 0xb7, 0x56, 0x4e, 0xb5, 0x6f, + 0x45, 0x9c, 0x70, 0xba, 0x25, 0xae, 0x7c, 0x30, 0xfd, 0x10, 0x1e, 0x8e, 0x6d, 0xee, 0xcd, 0x45, + 0x37, 0xe6, 0x2f, 0xba, 0xee, 0x2f, 0x5f, 0x74, 0x7d, 0x36, 0x79, 0x45, 0x37, 0x7e, 0x43, 0x01, + 0xf4, 0x22, 0x5c, 0x12, 0xd1, 0xd0, 0xba, 0x61, 0x24, 0xb2, 0xec, 0x71, 0x18, 0x52, 0x81, 0xa3, + 0x65, 0x8b, 0xe0, 0xf9, 0x4c, 0x5b, 0x50, 0x8f, 0xd0, 0x0f, 0x32, 0xa1, 0x1e, 0x21, 0xe1, 0x7a, + 0xa0, 0x1e, 0x81, 0x4c, 0x0d, 0x99, 0x9a, 0x81, 0x99, 0x1a, 0x88, 0x66, 0xe3, 0xb2, 0x34, 0x10, + 0xcd, 0xb9, 0x67, 0x69, 0x20, 0x9a, 0xcb, 0x93, 0x92, 0x41, 0x3d, 0x02, 0xe0, 0x05, 0xe0, 0x05, + 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0x05, 0xe0, 0xa5, 0xfc, 0xe0, 0x05, 0xea, 0x11, 0x80, + 0x2f, 0x80, 0x2f, 0x50, 0x8f, 0x58, 0x6d, 0x02, 0xfb, 0xe4, 0xfa, 0x3d, 0x16, 0x40, 0x4c, 0x71, + 0xa7, 0x00, 0xfb, 0xe4, 0xa6, 0xe3, 0x1a, 0xa8, 0x47, 0x00, 0xcd, 0x00, 0xcd, 0x80, 0x8c, 0x01, + 0x19, 0x03, 0x32, 0x06, 0x64, 0x0c, 0x40, 0x8b, 0x29, 0xa0, 0x05, 0xea, 0x11, 0x80, 0x2f, 0x80, + 0x2f, 0x38, 0xb2, 0x00, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0x65, 0x40, 0x35, 0x50, + 0x8f, 0x00, 0x96, 0x01, 0x96, 0x01, 0x15, 0x03, 0x2a, 0x06, 0x54, 0x0c, 0xa8, 0x18, 0x80, 0x16, + 0x43, 0x40, 0x0b, 0xd4, 0x23, 0x00, 0x5f, 0x00, 0x5f, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x03, + 0x2a, 0x06, 0x54, 0x4c, 0xd1, 0x50, 0xcd, 0x86, 0xa8, 0x47, 0x48, 0x0b, 0x20, 0x54, 0x92, 0x8a, + 0x48, 0x9c, 0x4f, 0xde, 0x74, 0xc4, 0x48, 0x74, 0x3c, 0x7b, 0x4f, 0x01, 0xa4, 0x24, 0x7c, 0xee, + 0x59, 0x93, 0xd1, 0x71, 0x19, 0xf1, 0x6c, 0x6a, 0xd9, 0xbe, 0x43, 0xc5, 0xb5, 0x24, 0x9e, 0x6b, + 0x4c, 0x4c, 0x4c, 0xa2, 0x06, 0x31, 0x89, 0x3c, 0xb0, 0xe6, 0x26, 0x8a, 0x49, 0x08, 0x23, 0xc9, + 0xe5, 0xc9, 0x04, 0x87, 0x7a, 0x9c, 0xf1, 0xfb, 0x90, 0x0e, 0x44, 0x26, 0x7f, 0x4e, 0x7d, 0x09, + 0xc4, 0xba, 0xea, 0xd9, 0xec, 0xd5, 0x47, 0x24, 0x52, 0x90, 0x4a, 0x76, 0xfa, 0xed, 0xeb, 0x66, + 0xb7, 0x7b, 0x7e, 0x76, 0xdc, 0xec, 0x9f, 0x75, 0xda, 0xd7, 0xc7, 0x9d, 0x93, 0x96, 0xe8, 0x4a, + 0x8a, 0x83, 0x7a, 0x24, 0x85, 0x3e, 0x25, 0x13, 0xb0, 0x79, 0xaf, 0xba, 0xf5, 0xf3, 0xfa, 0x75, + 0xe3, 0xa4, 0x2e, 0x91, 0xda, 0xbc, 0x2f, 0x48, 0x1f, 0x1a, 0x66, 0xf7, 0xa1, 0x67, 0x7c, 0x1f, + 0x26, 0x16, 0xf2, 0xb9, 0x7d, 0xd2, 0x3a, 0x3d, 0x6b, 0xb7, 0x4e, 0xb2, 0xce, 0x95, 0xaf, 0x74, + 0x7b, 0x4e, 0x3d, 0x08, 0x63, 0xcc, 0x97, 0xf2, 0x5c, 0xe2, 0xd0, 0x62, 0xb5, 0x15, 0x08, 0x54, + 0x01, 0x53, 0x40, 0xa0, 0xea, 0xc5, 0xb5, 0x03, 0x81, 0x2a, 0x90, 0xc1, 0xd2, 0xc6, 0x85, 0xbd, + 0x6c, 0x59, 0x7a, 0x0c, 0x7b, 0xd9, 0xeb, 0x2c, 0x24, 0xf6, 0xb2, 0xa5, 0x48, 0x43, 0xec, 0x65, + 0xe7, 0x3e, 0x05, 0xd8, 0xcb, 0x5e, 0x1b, 0x66, 0x08, 0x54, 0x01, 0xbc, 0x00, 0xbc, 0x00, 0xbc, + 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x18, 0x06, 0x5e, 0x20, 0x50, 0x05, 0xf8, 0x02, + 0xf8, 0x02, 0x81, 0xaa, 0xd5, 0x26, 0x50, 0x8a, 0xa7, 0xdf, 0x63, 0x01, 0xc4, 0x14, 0x77, 0x0a, + 0x50, 0x8a, 0x67, 0x3a, 0xae, 0x81, 0x40, 0x15, 0xd0, 0x0c, 0xd0, 0x0c, 0xc8, 0x18, 0x90, 0x31, + 0x20, 0x63, 0x40, 0xc6, 0x00, 0xb4, 0x98, 0x02, 0x5a, 0x20, 0x50, 0x05, 0xf8, 0x02, 0xf8, 0x82, + 0x53, 0x91, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x15, 0x53, 0x06, 0x54, 0x03, 0x81, 0x2a, + 0x60, 0x19, 0x60, 0x19, 0x50, 0x31, 0xa0, 0x62, 0x40, 0xc5, 0x80, 0x8a, 0x01, 0x68, 0x31, 0x04, + 0xb4, 0x40, 0xa0, 0x0a, 0xf0, 0x05, 0xf0, 0x05, 0x54, 0x0c, 0xa8, 0x18, 0x50, 0x31, 0xa0, 0x62, + 0x40, 0xc5, 0x14, 0x0d, 0xd5, 0x6c, 0x88, 0x40, 0x95, 0x84, 0xf4, 0x41, 0x25, 0xa9, 0x34, 0x55, + 0x27, 0x7e, 0x47, 0x37, 0x7e, 0x45, 0x01, 0x34, 0x23, 0x02, 0x3f, 0xe2, 0xd6, 0x80, 0xda, 0xd6, + 0x8d, 0x8c, 0x66, 0xc4, 0xa3, 0x56, 0xa0, 0x19, 0xa1, 0x1f, 0x5a, 0x42, 0x33, 0x42, 0xc2, 0xe1, + 0x40, 0x33, 0xa2, 0x18, 0xf9, 0x99, 0x1f, 0x70, 0xe4, 0x68, 0xc2, 0x06, 0xb6, 0x1c, 0x3d, 0xd0, + 0xcc, 0x12, 0xc6, 0xa4, 0x96, 0x66, 0xae, 0x1f, 0x20, 0x49, 0x7b, 0x7e, 0x9c, 0xc1, 0x33, 0xe7, + 0x9e, 0xa4, 0x81, 0x67, 0x2e, 0x4f, 0x46, 0x06, 0xf1, 0x08, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, + 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x18, 0xa0, 0x98, 0x0d, 0x42, 0x31, 0x50, 0x91, 0xd0, 0x82, 0x63, + 0x80, 0x61, 0x44, 0x31, 0x0c, 0x54, 0x24, 0xa0, 0x22, 0x61, 0x12, 0x88, 0xc1, 0x7e, 0x79, 0xee, + 0x20, 0x06, 0xfb, 0xe5, 0xc0, 0x35, 0x8f, 0x87, 0x19, 0x2a, 0x12, 0x60, 0x65, 0xc0, 0xca, 0x80, + 0x95, 0x01, 0x2b, 0x03, 0x56, 0x06, 0xac, 0x0c, 0x58, 0x19, 0xe3, 0xd0, 0x0b, 0xe4, 0x24, 0xc0, + 0xca, 0x80, 0x95, 0xc1, 0x19, 0x06, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, 0x29, 0x03, + 0xaa, 0x81, 0x9c, 0x04, 0x38, 0x19, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, 0x01, 0x27, + 0x03, 0x4e, 0xc6, 0x34, 0xf4, 0x02, 0x5d, 0x09, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x80, 0x93, + 0x01, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x4c, 0xd1, 0x50, 0xcd, 0x86, 0xe8, 0x4a, 0x48, 0xc8, 0x23, + 0x54, 0x92, 0xea, 0x4a, 0x74, 0xfd, 0x88, 0x9f, 0x52, 0xfb, 0xa8, 0x20, 0xb2, 0x12, 0x21, 0x55, + 0xa0, 0x2a, 0xb1, 0xd2, 0x08, 0x44, 0x25, 0xf4, 0xe3, 0x4a, 0x88, 0x4a, 0x48, 0x78, 0x1b, 0x88, + 0x4a, 0x80, 0x64, 0x36, 0x3f, 0x41, 0x03, 0xc9, 0x0c, 0x92, 0xd9, 0xa0, 0x0c, 0x0d, 0x24, 0x73, + 0xee, 0x19, 0x1a, 0x48, 0xe6, 0xf2, 0xa4, 0x63, 0x10, 0x95, 0x00, 0x8a, 0x01, 0x8a, 0x01, 0x8a, + 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0xd9, 0x20, 0x14, 0x03, 0x51, 0x09, 0x2d, 0x38, + 0x06, 0x18, 0x46, 0x14, 0xc3, 0x40, 0x54, 0x02, 0xa2, 0x12, 0x26, 0x81, 0x18, 0x6c, 0x96, 0xe7, + 0x0e, 0x62, 0xb0, 0x59, 0x0e, 0x5c, 0xf3, 0x78, 0x98, 0x21, 0x2a, 0x01, 0x56, 0x06, 0xac, 0x0c, + 0x58, 0x19, 0xb0, 0x32, 0x60, 0x65, 0xc0, 0xca, 0x80, 0x95, 0x31, 0x0e, 0xbd, 0x40, 0x54, 0x02, + 0xac, 0x0c, 0x58, 0x19, 0x1c, 0x60, 0x00, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, 0x99, 0x32, + 0xa0, 0x1a, 0x88, 0x4a, 0x80, 0x93, 0x01, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, 0x19, 0x70, + 0x32, 0xe0, 0x64, 0x4c, 0x43, 0x2f, 0x10, 0x95, 0x00, 0x27, 0x03, 0x4e, 0x06, 0x9c, 0x0c, 0x38, + 0x19, 0x70, 0x32, 0xe0, 0x64, 0xc0, 0xc9, 0x14, 0x0d, 0xd5, 0x6c, 0x8a, 0xa8, 0x84, 0xb0, 0x3a, + 0x42, 0x25, 0xb1, 0xa6, 0x44, 0x48, 0x0b, 0x25, 0x29, 0x11, 0x51, 0x81, 0x93, 0x66, 0xab, 0x72, + 0x12, 0x71, 0x03, 0x62, 0x52, 0x12, 0x35, 0x48, 0x49, 0xe4, 0x81, 0x22, 0x37, 0x51, 0x4a, 0x42, + 0x18, 0x23, 0x2e, 0xe6, 0x9f, 0x7a, 0xe3, 0x11, 0x0d, 0xa7, 0x6e, 0x4a, 0x60, 0xf2, 0xe7, 0xac, + 0xd6, 0x8e, 0xc0, 0xb3, 0x2d, 0x6f, 0x3c, 0x9a, 0x7c, 0xfc, 0x43, 0x01, 0x5c, 0x46, 0x44, 0x43, + 0x46, 0x5c, 0xcb, 0xf3, 0xc5, 0x9d, 0xc6, 0xb2, 0x09, 0xb8, 0x0d, 0xb8, 0x8d, 0x92, 0xbb, 0x8d, + 0x88, 0x87, 0xcc, 0x1b, 0xca, 0x78, 0x0c, 0x81, 0x34, 0xb2, 0x7a, 0x4e, 0xbd, 0x61, 0x0c, 0x87, + 0xc4, 0xf2, 0x3d, 0x89, 0x54, 0x5a, 0x45, 0x7e, 0xa7, 0x28, 0xa9, 0x58, 0x26, 0x13, 0x92, 0xed, + 0x28, 0xcc, 0x18, 0x24, 0xf2, 0x37, 0x25, 0x79, 0x9b, 0xf2, 0xa1, 0xdd, 0x2b, 0xd0, 0xd8, 0x66, + 0x94, 0x0d, 0x5d, 0x15, 0x21, 0x0c, 0xfb, 0x1e, 0xe5, 0x56, 0xe4, 0xdc, 0x5a, 0x93, 0x7c, 0xc6, + 0x65, 0xc4, 0xb3, 0xa9, 0x65, 0xfb, 0x0e, 0x95, 0x08, 0xcb, 0x2f, 0x36, 0x89, 0x30, 0x8d, 0x30, + 0x5d, 0xf2, 0x30, 0xcd, 0x1c, 0xea, 0x71, 0xc6, 0xef, 0x43, 0x3a, 0x90, 0x89, 0xd5, 0x02, 0x1c, + 0x55, 0xf5, 0x6c, 0xf6, 0xea, 0x23, 0x12, 0x29, 0xd8, 0x02, 0xea, 0x75, 0xda, 0xad, 0xfe, 0x75, + 0xb3, 0xdb, 0x3d, 0x3f, 0x3b, 0x6e, 0xf6, 0xcf, 0x3a, 0xed, 0xeb, 0xe3, 0xce, 0x49, 0x4b, 0x74, + 0x2d, 0xc5, 0x6e, 0x3e, 0x92, 0xe2, 0x8d, 0x25, 0xe3, 0xd5, 0xbc, 0x5f, 0x5f, 0x7a, 0x97, 0x8d, + 0x5a, 0xad, 0x76, 0xbd, 0x7d, 0xb9, 0x5b, 0xcd, 0x23, 0xfa, 0x2a, 0xef, 0x46, 0xc3, 0xe4, 0x6e, + 0x4c, 0x57, 0xd9, 0xe7, 0xf6, 0x49, 0xeb, 0xf4, 0xac, 0xdd, 0x3a, 0x29, 0xc7, 0x8c, 0x6c, 0x67, + 0xbd, 0xe1, 0x75, 0xa5, 0xdb, 0x8d, 0x6a, 0x81, 0x1e, 0x77, 0xd4, 0x73, 0x7c, 0x09, 0x09, 0xda, + 0xd9, 0xf3, 0x00, 0x15, 0x00, 0x15, 0xc8, 0xfd, 0x91, 0xfb, 0x23, 0xf7, 0x47, 0xee, 0x8f, 0xdc, + 0x3f, 0x7d, 0x00, 0xb6, 0x02, 0x12, 0x72, 0xd9, 0x28, 0x3c, 0x6d, 0x04, 0xa1, 0x18, 0xa1, 0x18, + 0xa1, 0x18, 0xa1, 0x18, 0xa1, 0x18, 0xa1, 0x18, 0xa1, 0x58, 0x20, 0x14, 0x87, 0xf4, 0x4e, 0x3a, + 0x12, 0x4f, 0xda, 0x40, 0x20, 0x46, 0x20, 0x46, 0x20, 0x46, 0x20, 0x46, 0x20, 0x36, 0x35, 0x10, + 0x37, 0x10, 0x87, 0x95, 0xc5, 0xe1, 0x77, 0x0a, 0x17, 0x90, 0x68, 0x91, 0xb1, 0xba, 0xe2, 0xe2, + 0x64, 0xae, 0xfc, 0xed, 0x4e, 0xbf, 0xfe, 0x2f, 0xde, 0x18, 0x8e, 0xb4, 0xc3, 0xa0, 0xa2, 0xfb, + 0x09, 0x7c, 0x7d, 0x92, 0xca, 0xe9, 0xd7, 0xc7, 0xef, 0xe5, 0x51, 0x79, 0xfe, 0x6f, 0x5e, 0x18, + 0xa7, 0x09, 0x38, 0x98, 0x9e, 0xba, 0x79, 0xf1, 0x10, 0x5d, 0xf5, 0x9c, 0x45, 0xbc, 0xc9, 0xf9, + 0xeb, 0x3b, 0x20, 0x13, 0xbf, 0xdf, 0x72, 0xe9, 0x24, 0xaa, 0x4f, 0xac, 0xd8, 0x1b, 0xbb, 0xee, + 0xfb, 0x77, 0xaf, 0x79, 0xb2, 0xe4, 0xff, 0xb8, 0x13, 0x3a, 0x34, 0xa4, 0xce, 0xd1, 0xfd, 0xec, + 0x9f, 0xa6, 0xea, 0x5f, 0x73, 0x3c, 0x9c, 0xbc, 0x86, 0x3a, 0xaf, 0xc6, 0xc2, 0xd7, 0x17, 0xc6, + 0x22, 0x96, 0x6f, 0xf9, 0xf6, 0x62, 0x19, 0x7c, 0x5c, 0x59, 0x06, 0xcf, 0xfe, 0xfa, 0x8d, 0x65, + 0x50, 0x3d, 0xa1, 0x91, 0x1d, 0xb2, 0x60, 0xb6, 0x34, 0xab, 0x4d, 0xc7, 0x61, 0xde, 0xb0, 0xe2, + 0x07, 0x9c, 0xd9, 0xc4, 0xad, 0xd8, 0xb7, 0xc4, 0xf3, 0xa8, 0x5b, 0x71, 0x08, 0x27, 0x15, 0xee, + 0x57, 0x82, 0xdb, 0xfb, 0x28, 0xfe, 0x0b, 0xe6, 0xdd, 0x51, 0x8f, 0xfb, 0xe1, 0xfd, 0x87, 0x4a, + 0xff, 0x96, 0x45, 0xdf, 0x3c, 0x32, 0xed, 0x61, 0xbc, 0xc6, 0x2b, 0x2c, 0xaa, 0xf8, 0x9e, 0x7b, + 0x5f, 0xb9, 0x23, 0x2e, 0x73, 0x2a, 0x3f, 0x6e, 0xa9, 0x57, 0xe1, 0xb7, 0xb4, 0xc2, 0xef, 0x03, + 0x5a, 0xf1, 0x07, 0xf1, 0xcf, 0x8b, 0x0f, 0xfc, 0xe6, 0xb1, 0xa8, 0xd2, 0xe9, 0xf6, 0xcf, 0x8e, + 0x9b, 0xe7, 0xd7, 0xc7, 0xbf, 0x35, 0xdb, 0xed, 0xd6, 0xf9, 0x87, 0xb7, 0xbe, 0x3a, 0xd9, 0xa5, + 0x88, 0x89, 0x21, 0x77, 0x1a, 0x88, 0xbd, 0xa6, 0xd8, 0x40, 0xc3, 0x51, 0x12, 0x5b, 0x4b, 0x89, + 0x9f, 0x85, 0xf1, 0xb2, 0x30, 0x3e, 0x7e, 0x56, 0x50, 0x61, 0xd2, 0x39, 0xcd, 0xbe, 0x31, 0xe9, + 0x75, 0x83, 0xd5, 0xd9, 0xa2, 0xb4, 0x66, 0x8b, 0x32, 0xf9, 0x50, 0x2e, 0x66, 0xec, 0x49, 0x03, + 0x09, 0xc7, 0xe5, 0x89, 0x89, 0xb4, 0x3c, 0xdb, 0xf5, 0xa3, 0x89, 0x95, 0xd8, 0xbe, 0xc7, 0x09, + 0xf3, 0x68, 0x58, 0x19, 0xf8, 0x61, 0xbc, 0xaa, 0x5d, 0x16, 0xf1, 0xc9, 0x0a, 0x7f, 0x62, 0x3f, + 0x49, 0xcf, 0x10, 0xa6, 0xbc, 0xec, 0x33, 0x75, 0x4a, 0x29, 0x92, 0x4a, 0x0a, 0xae, 0x77, 0xd9, + 0xbc, 0x51, 0x3a, 0x5f, 0x94, 0xce, 0x13, 0xc5, 0xed, 0x21, 0x25, 0x94, 0x92, 0xb5, 0xaf, 0x77, + 0x02, 0x96, 0x57, 0x9c, 0x50, 0xb3, 0x02, 0x59, 0xde, 0x0c, 0x33, 0x95, 0x68, 0x7c, 0xc3, 0x43, + 0x4a, 0x2b, 0x93, 0x88, 0x93, 0x38, 0xc2, 0x4c, 0xc2, 0x51, 0xff, 0xb2, 0xd9, 0xee, 0x1d, 0xb7, + 0xce, 0xbe, 0xb4, 0x2e, 0x4d, 0x09, 0x2e, 0x29, 0xb1, 0x9c, 0x71, 0xf1, 0x25, 0x15, 0xdf, 0x92, + 0x51, 0x88, 0x59, 0xfd, 0xa6, 0xd4, 0xe1, 0x25, 0x3d, 0xc1, 0xf6, 0xd4, 0x24, 0xfa, 0x7e, 0x60, + 0xb9, 0xf4, 0x8e, 0xba, 0x4f, 0x42, 0x8b, 0xed, 0xb2, 0xc9, 0x3a, 0x0e, 0xfc, 0x90, 0xaf, 0xd9, + 0x4b, 0x49, 0x42, 0x8b, 0x18, 0x3b, 0x59, 0x9e, 0xe8, 0x22, 0xc4, 0x3e, 0xe6, 0x1e, 0x60, 0x9e, + 0xfd, 0x9b, 0xab, 0x97, 0x92, 0xa0, 0x64, 0x49, 0xb0, 0x68, 0xf2, 0xfb, 0xca, 0x0c, 0xbe, 0x94, + 0xe8, 0x3e, 0x3f, 0xd2, 0xeb, 0xbd, 0x7a, 0xfc, 0x9b, 0x27, 0xde, 0xe6, 0xad, 0x7e, 0xa5, 0xeb, + 0xcf, 0xe3, 0x4f, 0x5a, 0xbe, 0x78, 0xe5, 0xa5, 0xd3, 0x9b, 0x99, 0x06, 0xc4, 0x8e, 0x4b, 0x84, + 0x1f, 0xbf, 0xf0, 0xf1, 0xed, 0x4d, 0xd3, 0x7f, 0xf3, 0xe4, 0x73, 0x9f, 0x77, 0x04, 0x2f, 0x1a, + 0xfc, 0x6b, 0x86, 0xbd, 0x6a, 0xc0, 0xec, 0xb9, 0x0a, 0xee, 0xb7, 0xec, 0x33, 0xb1, 0x1d, 0x26, + 0xb6, 0xb7, 0xa7, 0x76, 0xc5, 0x06, 0xd5, 0x94, 0xd3, 0xf9, 0x52, 0xb0, 0x58, 0x0e, 0xe9, 0xcb, + 0xdd, 0x59, 0x1b, 0xfd, 0x97, 0xba, 0xf3, 0xba, 0x37, 0x7e, 0xd3, 0xfb, 0x26, 0xf1, 0xb6, 0x6f, + 0x4e, 0x4e, 0x5a, 0x27, 0x9a, 0xda, 0x69, 0xa6, 0x76, 0x92, 0x49, 0x26, 0x4f, 0x8c, 0x60, 0x7a, + 0x0b, 0x01, 0x54, 0xc9, 0x70, 0x18, 0xd2, 0x61, 0x32, 0x8a, 0x6e, 0x79, 0x57, 0xfd, 0xca, 0x43, + 0x66, 0x80, 0x4a, 0x97, 0x0c, 0x4b, 0x09, 0x26, 0x27, 0xfd, 0x2a, 0x0a, 0x88, 0xb4, 0xe7, 0x73, + 0x98, 0x12, 0x3f, 0xce, 0x9e, 0x2b, 0x07, 0x9e, 0x4b, 0xb6, 0xd0, 0xca, 0x87, 0xe3, 0x12, 0x2d, + 0x44, 0x3d, 0x7b, 0x2d, 0x49, 0x17, 0xe8, 0xe2, 0x01, 0x97, 0x0c, 0x63, 0xc9, 0x31, 0xf1, 0x22, + 0x8a, 0x45, 0x0b, 0x9b, 0x51, 0x42, 0x91, 0x6e, 0x51, 0xcb, 0x2e, 0x6e, 0x65, 0x8b, 0x5c, 0xd9, + 0x62, 0x57, 0xb2, 0xe8, 0xd3, 0x2d, 0xfe, 0x94, 0x46, 0xb0, 0xf8, 0x42, 0xf9, 0x92, 0x89, 0x95, + 0xe0, 0x2e, 0xb2, 0xc6, 0x2b, 0x65, 0x92, 0x1f, 0x19, 0x31, 0xcf, 0x72, 0x99, 0xf7, 0x3d, 0x12, + 0x77, 0x15, 0xcb, 0x26, 0xe0, 0x2b, 0xe0, 0x2b, 0x4a, 0xe6, 0x2b, 0xc6, 0xcc, 0xe3, 0xf5, 0x3d, + 0x09, 0x0f, 0x21, 0x50, 0x48, 0x2a, 0x29, 0x2e, 0x59, 0xb2, 0xe2, 0xaa, 0x1a, 0x8a, 0xab, 0x74, + 0x0d, 0xed, 0xde, 0xee, 0xee, 0xf6, 0x2e, 0x0a, 0xac, 0x94, 0xc5, 0xdd, 0x82, 0x17, 0x58, 0x2d, + 0x99, 0xc3, 0xad, 0xe7, 0x7e, 0xdc, 0x5a, 0xc1, 0x45, 0x5b, 0xb3, 0x94, 0x55, 0x15, 0x0d, 0x9d, + 0xa8, 0x64, 0x89, 0x70, 0x9a, 0x3e, 0xb7, 0x9e, 0x3e, 0xa6, 0x39, 0xb5, 0x6e, 0x20, 0xb5, 0x46, + 0x6a, 0xbd, 0x4c, 0xad, 0xa3, 0x80, 0xc6, 0x05, 0x5f, 0x12, 0xb9, 0xf5, 0xb4, 0x09, 0x00, 0x66, + 0x00, 0xe6, 0x12, 0x02, 0xe6, 0xed, 0x86, 0x04, 0x60, 0xde, 0x07, 0x60, 0x06, 0x60, 0x2e, 0x28, + 0x60, 0xde, 0x69, 0x1c, 0xee, 0x1c, 0xee, 0xed, 0x37, 0x0e, 0x81, 0x9a, 0x73, 0x61, 0xab, 0xc0, + 0x6b, 0x23, 0xf4, 0x22, 0xf4, 0xbe, 0x34, 0xdf, 0xe0, 0xb5, 0x97, 0xdf, 0x32, 0xa2, 0xa3, 0x1b, + 0x2a, 0x21, 0xaa, 0x35, 0x7b, 0x1e, 0x5e, 0x02, 0x5e, 0xa2, 0x64, 0x5e, 0xe2, 0x86, 0x44, 0x74, + 0x49, 0x05, 0x59, 0x92, 0x02, 0x9d, 0x22, 0x68, 0xbd, 0xbb, 0xe0, 0xa6, 0x6c, 0x8b, 0x0d, 0x3e, + 0xae, 0x70, 0x51, 0x4f, 0x7e, 0x31, 0xfb, 0x73, 0x5c, 0xdd, 0xa7, 0x75, 0x54, 0x13, 0x1d, 0x41, + 0x7b, 0x2d, 0x09, 0x48, 0x7c, 0xda, 0xec, 0x35, 0xb8, 0x2b, 0xdf, 0x48, 0xa2, 0xa3, 0x6c, 0x19, + 0x3b, 0x62, 0x6c, 0x30, 0xc2, 0x1d, 0xc3, 0x1d, 0xbf, 0xca, 0x97, 0x60, 0x83, 0x11, 0x7c, 0x49, + 0x29, 0xf9, 0x12, 0x6c, 0x30, 0xaa, 0x8d, 0xbb, 0x25, 0xda, 0x60, 0x54, 0xab, 0xe1, 0x90, 0x64, + 0x7f, 0xf1, 0x07, 0xe3, 0xf6, 0x2d, 0x75, 0xac, 0x3b, 0x97, 0x78, 0x02, 0xfb, 0x8c, 0x8f, 0x1e, + 0x2f, 0x47, 0x29, 0x6f, 0x8a, 0xae, 0x54, 0x4a, 0xb5, 0xe1, 0x18, 0x77, 0xdc, 0x94, 0x1d, 0xc7, + 0x94, 0x55, 0xe7, 0x6b, 0x13, 0x9d, 0xaa, 0xfa, 0x5c, 0x70, 0xe9, 0x16, 0x06, 0x3b, 0xa7, 0x5c, + 0xd2, 0x9b, 0x03, 0x9e, 0xd3, 0x2d, 0xf9, 0x6c, 0xd0, 0x73, 0x5a, 0x53, 0x58, 0x3c, 0x48, 0x6c, + 0x9b, 0x46, 0x51, 0x3a, 0x4f, 0xfe, 0x32, 0x6d, 0xba, 0xd2, 0x18, 0xee, 0x79, 0x97, 0x30, 0x22, + 0x55, 0xc6, 0xa4, 0xdc, 0xa8, 0x94, 0x1b, 0x97, 0x5a, 0x23, 0x93, 0x84, 0xa7, 0xb9, 0xdf, 0xf2, + 0x3e, 0xe9, 0xb5, 0xc5, 0x1c, 0x05, 0x37, 0xbc, 0xef, 0xe1, 0x46, 0x76, 0x2d, 0x09, 0xd9, 0x5a, + 0x62, 0x56, 0xc7, 0x8d, 0xec, 0x79, 0x4f, 0xc1, 0x4e, 0xed, 0x70, 0x07, 0x37, 0xb0, 0xcb, 0xa5, + 0xce, 0xe2, 0xef, 0x13, 0x58, 0x65, 0xcb, 0xb3, 0xdf, 0xd6, 0x48, 0xe4, 0x62, 0xc0, 0x35, 0xbf, + 0xf9, 0xa4, 0x3d, 0x60, 0x0f, 0x60, 0x0f, 0x60, 0x0f, 0x11, 0xec, 0x31, 0x31, 0x1f, 0xd1, 0x8a, + 0x87, 0xb5, 0x84, 0x57, 0xc2, 0x29, 0x0b, 0x56, 0x40, 0x64, 0xeb, 0xc5, 0x3c, 0xc2, 0xd9, 0x1d, + 0x55, 0x94, 0x3b, 0xad, 0x36, 0x06, 0xff, 0x05, 0xff, 0x05, 0xff, 0x85, 0xdc, 0x09, 0xb9, 0x13, + 0x72, 0x27, 0xe4, 0x4e, 0xc8, 0x9d, 0x1e, 0x0d, 0x33, 0x0f, 0xc7, 0xde, 0xf7, 0xd8, 0xc7, 0x47, + 0xf2, 0xa8, 0x63, 0xb5, 0x31, 0xa0, 0x0e, 0xa0, 0x0e, 0xa0, 0x8e, 0x94, 0x2b, 0x66, 0xec, 0xbd, + 0x2d, 0x6c, 0x96, 0x28, 0x59, 0x3a, 0x94, 0x68, 0x63, 0xd6, 0x9d, 0xdc, 0x31, 0x87, 0x3a, 0x28, + 0xa6, 0x10, 0x92, 0x29, 0x86, 0x66, 0xea, 0x86, 0x4b, 0x0b, 0x54, 0xd3, 0x84, 0x17, 0x74, 0x41, + 0x37, 0x9d, 0xe0, 0x41, 0x21, 0x94, 0xd3, 0x02, 0xe9, 0xb2, 0x9a, 0x2a, 0x75, 0x10, 0x2f, 0x93, + 0xd9, 0x7a, 0x57, 0x8c, 0x56, 0xae, 0xde, 0xe5, 0xb8, 0xe6, 0x54, 0xfb, 0xe2, 0x30, 0x76, 0x7d, + 0xea, 0xdc, 0xb1, 0xc8, 0x4d, 0x67, 0xeb, 0xc0, 0x8d, 0x70, 0x4e, 0x43, 0x4f, 0x99, 0x47, 0xae, + 0xfe, 0xf7, 0x97, 0x9d, 0xda, 0xe1, 0xd7, 0x9a, 0xb5, 0x73, 0xf5, 0xef, 0x4e, 0xed, 0x6b, 0xcd, + 0x3a, 0xb8, 0xfa, 0x5a, 0xb3, 0x0e, 0xaf, 0xfe, 0xfd, 0x5a, 0xb7, 0xb6, 0xa7, 0x3f, 0xfe, 0xb3, + 0xfd, 0x30, 0xf9, 0xd3, 0xe1, 0xec, 0x4f, 0xf5, 0xf7, 0x8d, 0xd9, 0x9f, 0x7f, 0xfd, 0xf6, 0xed, + 0xc3, 0xb7, 0x6f, 0x1f, 0x24, 0x1a, 0xf8, 0x4f, 0x35, 0xef, 0x25, 0x97, 0x75, 0xb6, 0x23, 0x88, + 0xbd, 0xa4, 0x4e, 0x88, 0xac, 0xc6, 0x4c, 0xe9, 0x43, 0x1e, 0xab, 0x5e, 0x5d, 0x5d, 0x63, 0x52, + 0x27, 0x47, 0x24, 0x52, 0x49, 0xad, 0xf5, 0x45, 0x82, 0x15, 0xae, 0x8b, 0xe7, 0x15, 0x55, 0xba, + 0xae, 0x56, 0x8e, 0xa6, 0x12, 0xd6, 0x49, 0x3f, 0x4a, 0x69, 0x4e, 0xe6, 0xa4, 0x13, 0xdc, 0x59, + 0x73, 0xd1, 0x69, 0x84, 0x77, 0xd6, 0x3c, 0xb1, 0x68, 0x55, 0x61, 0x03, 0x55, 0x85, 0xb9, 0xa6, + 0xd1, 0xa8, 0x2a, 0x4c, 0xba, 0x6a, 0x50, 0x55, 0x08, 0x8e, 0x0a, 0x1c, 0x55, 0xae, 0x74, 0x0c, + 0x76, 0xc6, 0xb2, 0xc9, 0xdd, 0xb1, 0x33, 0x56, 0x9c, 0x29, 0xc0, 0xce, 0x98, 0xc2, 0x5c, 0x11, + 0x55, 0x85, 0xc0, 0x1e, 0xc0, 0x1e, 0xa8, 0x2a, 0x44, 0x55, 0xe1, 0x9b, 0xdf, 0x88, 0xaa, 0x42, + 0xf8, 0x2f, 0xf8, 0x2f, 0xe4, 0x4e, 0xc8, 0x9d, 0x90, 0x3b, 0x21, 0x77, 0x42, 0xee, 0x84, 0xaa, + 0x42, 0xa0, 0x0e, 0xa0, 0x8e, 0xcd, 0x42, 0x1d, 0xa8, 0x2a, 0xd4, 0x02, 0xc5, 0x14, 0x42, 0x32, + 0xc5, 0xd0, 0x4c, 0xdd, 0x70, 0x69, 0x81, 0x6a, 0x9a, 0xf0, 0x82, 0x2e, 0xe8, 0xa6, 0x13, 0x3c, + 0x28, 0x84, 0x72, 0x5a, 0x20, 0x5d, 0x56, 0x53, 0x85, 0xaa, 0xc2, 0xec, 0x20, 0xa0, 0xa2, 0x35, + 0x87, 0xaa, 0x42, 0x91, 0x06, 0x51, 0x55, 0x98, 0x69, 0xb6, 0x83, 0xaa, 0xc2, 0x67, 0x1b, 0x43, + 0x55, 0xe1, 0x33, 0xcf, 0xeb, 0xa8, 0x2a, 0x4c, 0xa1, 0xa6, 0x99, 0x7e, 0x90, 0x4a, 0x25, 0x3b, + 0x2a, 0x20, 0xe3, 0x39, 0x7d, 0x3d, 0x0f, 0xc7, 0x36, 0xf7, 0x66, 0x91, 0xe4, 0x6c, 0xde, 0xf8, + 0x75, 0x73, 0xd9, 0xf8, 0x75, 0x6f, 0xd6, 0xf8, 0x97, 0xc4, 0xe9, 0x5f, 0x02, 0x69, 0xd3, 0x77, + 0x12, 0x83, 0x5e, 0x6d, 0x8e, 0x87, 0x13, 0x53, 0x8e, 0x6f, 0xab, 0x7b, 0x3b, 0xb2, 0xa4, 0x94, + 0x44, 0x4d, 0xa4, 0xdf, 0xef, 0x92, 0xe1, 0xc7, 0x95, 0x09, 0x48, 0xaa, 0x9c, 0x7a, 0x42, 0x23, + 0x3b, 0x64, 0xc1, 0x6c, 0x99, 0x54, 0x9b, 0x8e, 0x13, 0x55, 0xbe, 0x9c, 0x37, 0xdb, 0x95, 0x88, + 0x72, 0xce, 0xbc, 0x61, 0x54, 0xe1, 0x7e, 0x85, 0x54, 0xce, 0x9b, 0x9f, 0x2a, 0x8b, 0xd7, 0x41, + 0x95, 0x35, 0x53, 0x56, 0x65, 0xb3, 0x55, 0x59, 0xc5, 0xe4, 0x84, 0xd7, 0xe6, 0x5b, 0xd4, 0x1f, + 0x3d, 0x67, 0x24, 0x2d, 0xcf, 0x76, 0xfd, 0x88, 0x79, 0xc3, 0x8a, 0xed, 0x7b, 0x9c, 0x30, 0x8f, + 0x86, 0x95, 0x81, 0x1f, 0x4e, 0xed, 0x66, 0x59, 0x16, 0x12, 0x05, 0xd4, 0x66, 0x03, 0x66, 0x7f, + 0xf3, 0x1c, 0xc2, 0x49, 0xc5, 0xf7, 0x2a, 0x2d, 0x7e, 0x4b, 0x43, 0x8f, 0xf2, 0xe5, 0x3f, 0x8a, + 0x3e, 0x54, 0x2a, 0xfd, 0x5b, 0x1a, 0xd1, 0x0a, 0x09, 0x69, 0xdc, 0x48, 0xc4, 0x89, 0xe7, 0x90, + 0xd0, 0xf9, 0xe6, 0x9d, 0x37, 0xde, 0x57, 0x16, 0x9f, 0x1d, 0xf1, 0x7b, 0x97, 0xc6, 0x6f, 0x88, + 0x3e, 0x40, 0x62, 0x56, 0x27, 0x1b, 0x8a, 0x62, 0x70, 0x2d, 0xa8, 0x45, 0x32, 0x00, 0x5f, 0xbd, + 0x15, 0x80, 0xd3, 0xa1, 0x1d, 0x35, 0x28, 0xa7, 0x9a, 0xe8, 0xba, 0xe5, 0x37, 0xf1, 0xcc, 0xeb, + 0x73, 0xf9, 0xf2, 0xb8, 0xbc, 0xe2, 0x73, 0x93, 0x8a, 0x59, 0xa7, 0x13, 0xaf, 0x4e, 0xe8, 0x49, + 0x12, 0x7b, 0x8e, 0x34, 0x9e, 0x62, 0xd5, 0x33, 0xb0, 0x24, 0x57, 0x29, 0xa5, 0xf5, 0x03, 0xc2, + 0x76, 0x2f, 0x6c, 0xe7, 0x4f, 0xed, 0x9a, 0x0d, 0xaa, 0x9a, 0x61, 0x6a, 0xd2, 0xe8, 0x5b, 0x75, + 0x1e, 0x45, 0xbc, 0x94, 0x78, 0x75, 0xf5, 0xe1, 0x74, 0x50, 0xb1, 0x56, 0x50, 0xa8, 0xc8, 0x06, + 0x1b, 0x09, 0x14, 0x93, 0x2c, 0x48, 0x3d, 0x30, 0x31, 0xf5, 0x66, 0xd9, 0xca, 0x71, 0xb9, 0x90, + 0x79, 0xa9, 0xae, 0x77, 0x5f, 0xf0, 0x8b, 0x19, 0x5e, 0x92, 0x41, 0x3d, 0x72, 0xe3, 0xa6, 0xb8, + 0xdb, 0x7c, 0xd1, 0xbd, 0xf9, 0x83, 0x89, 0xd3, 0xbb, 0x01, 0x19, 0xbb, 0x7c, 0xb6, 0xed, 0x4e, + 0x61, 0x8e, 0x30, 0xc7, 0x6c, 0xcd, 0xf1, 0xc6, 0xf7, 0x5d, 0x9a, 0x2e, 0xcf, 0x9e, 0xdb, 0x63, + 0x3d, 0x43, 0x7b, 0x74, 0x7d, 0x3f, 0xb8, 0x21, 0xf6, 0xf7, 0x74, 0x67, 0x03, 0x96, 0xb7, 0x1d, + 0x3f, 0x7a, 0x3c, 0xbd, 0x6d, 0x0e, 0x88, 0x1b, 0xc1, 0x38, 0x61, 0x9c, 0x30, 0xce, 0xe7, 0xde, + 0x39, 0xe2, 0xe3, 0xf4, 0x26, 0x39, 0x79, 0x08, 0x06, 0x05, 0x83, 0xca, 0xd4, 0xa0, 0x52, 0x5f, + 0x32, 0x29, 0x50, 0x6b, 0x24, 0x58, 0x53, 0x24, 0x76, 0xdf, 0xae, 0x04, 0x8b, 0x26, 0x57, 0xa2, + 0x29, 0x79, 0x69, 0xa4, 0x8a, 0x6a, 0x91, 0x07, 0xb1, 0xdb, 0x85, 0x73, 0x1f, 0x32, 0x89, 0xcb, + 0x20, 0x95, 0x0c, 0x9b, 0x26, 0x9e, 0xf1, 0x2a, 0xc3, 0x88, 0x33, 0xa3, 0xeb, 0x52, 0x86, 0x9c, + 0xf8, 0x29, 0xc4, 0x1c, 0xc4, 0x1c, 0x10, 0x1e, 0x6b, 0xef, 0xe4, 0x01, 0x13, 0x60, 0x3b, 0xe2, + 0xa7, 0xd2, 0xa7, 0x53, 0xb3, 0x3d, 0x92, 0xf8, 0x50, 0x69, 0xf4, 0xb1, 0xdf, 0x3d, 0x3b, 0xb9, + 0xae, 0xfd, 0x79, 0x50, 0xaf, 0xd5, 0x4a, 0x62, 0x9d, 0xd8, 0xb9, 0x36, 0xca, 0x42, 0x99, 0x43, + 0x3d, 0xce, 0xf8, 0x7d, 0x48, 0x07, 0x22, 0x66, 0x9a, 0x22, 0x96, 0x57, 0xcf, 0x66, 0xaf, 0x3a, + 0x22, 0x91, 0x84, 0xe4, 0x58, 0x6c, 0x31, 0xfd, 0xbf, 0xba, 0xad, 0x5e, 0xda, 0x09, 0x8f, 0x31, + 0x48, 0x24, 0x54, 0x5e, 0x29, 0x79, 0xaa, 0x68, 0x66, 0xe5, 0x87, 0x8d, 0x5a, 0xad, 0x9a, 0x05, + 0xd4, 0x53, 0xf4, 0xb9, 0x75, 0xa3, 0x3e, 0xf7, 0xc0, 0xa4, 0xcf, 0x6d, 0xb6, 0xff, 0x32, 0x69, + 0x68, 0x0f, 0x9a, 0x07, 0xba, 0x37, 0xf5, 0xaf, 0xb2, 0xdf, 0xd4, 0x4f, 0x02, 0x0d, 0xd2, 0x38, + 0xd6, 0x25, 0x34, 0x48, 0x2e, 0x18, 0x01, 0xb0, 0x0d, 0xb0, 0xbd, 0xa9, 0xa1, 0x7c, 0x59, 0x8e, + 0x26, 0xa0, 0xb0, 0x92, 0x63, 0x38, 0x67, 0xc4, 0x23, 0x96, 0xd4, 0xc7, 0xab, 0xe8, 0x84, 0x5c, + 0x67, 0xd6, 0x53, 0xb5, 0x5b, 0x27, 0x72, 0x25, 0xce, 0xab, 0xbe, 0xcf, 0xbb, 0x03, 0x2c, 0x30, + 0xfa, 0xeb, 0x0d, 0x1f, 0xfd, 0x5b, 0xc7, 0xb5, 0x4d, 0xfe, 0x7e, 0xc7, 0xb7, 0xa3, 0x63, 0x72, + 0xe3, 0xd2, 0x13, 0xff, 0x87, 0x17, 0xf1, 0x90, 0x92, 0x91, 0xc9, 0xdd, 0xf9, 0xd9, 0xd8, 0x0d, + 0x5c, 0x6a, 0x72, 0x0f, 0xee, 0x7c, 0x66, 0xd3, 0xce, 0x1d, 0x0d, 0xe3, 0x59, 0x31, 0xb9, 0x27, + 0x81, 0xe3, 0xc5, 0xc5, 0xd5, 0xe7, 0xbe, 0x1f, 0xd4, 0x4d, 0xee, 0x08, 0x71, 0xc7, 0x9f, 0x02, + 0xdf, 0xeb, 0xde, 0xde, 0x47, 0xcc, 0x26, 0xee, 0x67, 0x8f, 0x99, 0xdc, 0x9b, 0x01, 0x89, 0xb8, + 0xe1, 0x4e, 0x97, 0xf0, 0xd1, 0xd9, 0x88, 0x98, 0xdc, 0x03, 0x6e, 0x78, 0xd8, 0x18, 0xbb, 0x3c, + 0x34, 0x7a, 0x02, 0xc8, 0xc0, 0x25, 0x1e, 0x3d, 0xa8, 0x35, 0x76, 0x4d, 0xee, 0xc5, 0xc8, 0x77, + 0xa8, 0xd1, 0xf1, 0x3a, 0xf0, 0xbd, 0xbd, 0x46, 0xc3, 0xe8, 0x78, 0xbd, 0xbd, 0x6f, 0xf2, 0xe7, + 0xdb, 0x37, 0xee, 0x17, 0x6a, 0x73, 0xd2, 0xe3, 0x24, 0x34, 0x3c, 0x46, 0xb7, 0xca, 0x13, 0xa3, + 0x63, 0x10, 0x78, 0xfa, 0x67, 0xc7, 0xe4, 0x3e, 0xfc, 0xf8, 0x41, 0xbc, 0x6e, 0xd7, 0x6c, 0xdb, + 0x1e, 0xfd, 0x20, 0x21, 0xfd, 0xc2, 0x42, 0x3e, 0x26, 0x6e, 0x9b, 0x19, 0x9f, 0xe8, 0x75, 0x06, + 0xce, 0x88, 0x7c, 0x0e, 0xcc, 0x4f, 0xf3, 0x58, 0x10, 0x67, 0x48, 0x2e, 0xf9, 0x61, 0x74, 0xf0, + 0x2b, 0x09, 0x75, 0xd0, 0xb3, 0x39, 0xdd, 0xdd, 0x75, 0xea, 0x97, 0x94, 0x77, 0xfc, 0x1b, 0x93, + 0xbb, 0xe4, 0x45, 0x66, 0xb3, 0x69, 0x83, 0x90, 0x8c, 0xe8, 0x25, 0x75, 0xc9, 0x7d, 0x8f, 0x86, + 0x77, 0xcc, 0x36, 0x9a, 0x3f, 0x18, 0xee, 0xd7, 0xb6, 0x09, 0x6f, 0x8c, 0x6e, 0x4a, 0x41, 0xe7, + 0x9c, 0x19, 0xbd, 0xb0, 0x46, 0xc4, 0xee, 0x51, 0xfb, 0xd8, 0xf7, 0x78, 0xe8, 0xbb, 0x2e, 0x75, + 0xce, 0x4e, 0x8d, 0x0e, 0x1f, 0x91, 0xe3, 0x19, 0x6d, 0x19, 0x87, 0x87, 0x07, 0xdb, 0x25, 0x60, + 0xd4, 0x3a, 0xde, 0xd8, 0xe4, 0x5e, 0x44, 0xbe, 0x47, 0xf9, 0x97, 0xbe, 0xd1, 0x01, 0x83, 0xdd, + 0x84, 0xf4, 0xf8, 0x96, 0x78, 0x1e, 0x75, 0xcd, 0x0e, 0x7c, 0x83, 0xfa, 0xde, 0xc5, 0x20, 0x3c, + 0x1a, 0x7b, 0x8e, 0xd9, 0xac, 0xf9, 0xed, 0x76, 0x63, 0xfb, 0x13, 0xe1, 0xf4, 0x3b, 0xa5, 0x01, + 0x35, 0x3a, 0x25, 0x0f, 0x42, 0x36, 0x22, 0xe1, 0xfd, 0x59, 0xef, 0xa4, 0x6d, 0xf4, 0x96, 0xd2, + 0xc1, 0xde, 0x39, 0x09, 0x22, 0xd3, 0xc9, 0x91, 0xf3, 0x6e, 0x39, 0x80, 0xad, 0xd9, 0xb8, 0xc3, + 0x3f, 0x38, 0xa8, 0x35, 0x1a, 0xae, 0xd9, 0x89, 0x1f, 0xa7, 0xe1, 0xa8, 0x4b, 0x1c, 0xb3, 0x09, + 0x84, 0x53, 0x3f, 0xfc, 0x41, 0x42, 0xa3, 0x3b, 0x41, 0x42, 0xdb, 0xa3, 0xdc, 0xe4, 0x1e, 0xfc, + 0xdd, 0x38, 0xdc, 0x36, 0x7a, 0x6b, 0x38, 0x1a, 0x39, 0xd1, 0x99, 0x6d, 0x36, 0x69, 0x40, 0xf8, + 0xe8, 0xc6, 0xf7, 0x8c, 0xb6, 0x04, 0x97, 0x04, 0x37, 0x86, 0x4f, 0x41, 0x6f, 0x7c, 0xb3, 0x10, + 0xa2, 0x32, 0x7a, 0x43, 0xe9, 0x71, 0x31, 0xd1, 0xe5, 0xa0, 0xeb, 0x87, 0xdc, 0xf0, 0xb9, 0xf9, + 0x62, 0xb3, 0x96, 0xe7, 0x74, 0x8d, 0xee, 0xc6, 0xad, 0x1f, 0x71, 0xc3, 0x83, 0x76, 0x14, 0x1a, + 0x4e, 0xce, 0x9e, 0xb8, 0x25, 0x58, 0x48, 0xb6, 0x3f, 0x18, 0xd0, 0x72, 0x94, 0xd8, 0x9d, 0x96, + 0x22, 0xab, 0x18, 0xf9, 0x36, 0xf9, 0x42, 0xc3, 0x88, 0xf9, 0x9e, 0xf1, 0x58, 0xea, 0xe4, 0xa7, + 0xd1, 0xfb, 0xf6, 0x23, 0xea, 0x30, 0x72, 0x41, 0x98, 0x6b, 0x3e, 0xe3, 0xef, 0x44, 0xdb, 0xc6, + 0x73, 0xb3, 0x46, 0xc3, 0x0e, 0x27, 0x72, 0x1b, 0x81, 0x3b, 0x36, 0x9b, 0x78, 0xba, 0x63, 0x36, + 0xeb, 0x04, 0x9c, 0xd9, 0xc4, 0x8d, 0x6b, 0x81, 0x4d, 0xee, 0x0c, 0x35, 0xdb, 0xbb, 0x1a, 0x5e, + 0xf3, 0x6b, 0x93, 0xe0, 0x07, 0x09, 0xfe, 0xe0, 0xc1, 0xac, 0x1c, 0xe7, 0x92, 0x38, 0xcc, 0x37, + 0xdd, 0xc0, 0x0d, 0xcf, 0xb9, 0x07, 0x46, 0x07, 0x38, 0x36, 0x64, 0x9c, 0xb8, 0x5d, 0xff, 0x07, + 0x0d, 0x5d, 0xe6, 0x19, 0x8d, 0x68, 0x47, 0xa6, 0x5b, 0xb7, 0x73, 0x77, 0x73, 0x69, 0xdb, 0x17, + 0xc4, 0x3e, 0x27, 0xf7, 0x66, 0x47, 0x89, 0x70, 0x60, 0x1f, 0xec, 0xef, 0xff, 0x34, 0xbb, 0xae, + 0x9c, 0x44, 0xf7, 0x9e, 0xd1, 0x5b, 0x14, 0xa4, 0xde, 0xb8, 0x08, 0x82, 0xe9, 0x9d, 0x34, 0x66, + 0xef, 0xa1, 0xfa, 0xc1, 0xb1, 0xe7, 0x46, 0xa6, 0xf7, 0xe1, 0x0f, 0x16, 0x52, 0x97, 0x46, 0x51, + 0xb7, 0x61, 0xf4, 0x36, 0xa4, 0xe1, 0xe5, 0x81, 0xa3, 0x80, 0x0e, 0xfb, 0x21, 0xf1, 0xa2, 0xc0, + 0x70, 0x4e, 0xf6, 0xd6, 0xb9, 0xad, 0x1f, 0x98, 0x7d, 0x6e, 0x64, 0x18, 0x6e, 0xd7, 0xb6, 0x2f, + 0x4f, 0xfa, 0xc6, 0x13, 0x69, 0x27, 0x67, 0x27, 0x46, 0x9b, 0x34, 0x27, 0xf6, 0xf7, 0xbe, 0xdf, + 0x9b, 0xfc, 0x4f, 0x09, 0x8e, 0x8c, 0xf4, 0x8c, 0xce, 0xf1, 0xa8, 0xd1, 0x81, 0xee, 0x86, 0x44, + 0xcc, 0x36, 0xbd, 0xdc, 0x29, 0x26, 0xce, 0xba, 0x84, 0x1b, 0x0f, 0x9b, 0x4e, 0x7c, 0x3b, 0x9a, + 0xc3, 0x8e, 0x0b, 0x62, 0xbb, 0xa6, 0x27, 0x16, 0xb7, 0xfe, 0x88, 0x06, 0x1e, 0x31, 0x7d, 0x5a, + 0xba, 0x3e, 0xf3, 0x78, 0xdf, 0x8f, 0xff, 0xa7, 0x47, 0x43, 0x46, 0x8c, 0xce, 0x5b, 0x03, 0x62, + 0xf6, 0x31, 0xe8, 0xc8, 0x1f, 0xf0, 0x1f, 0x24, 0xa4, 0xe7, 0xb3, 0xcb, 0x12, 0x4c, 0xaf, 0x8a, + 0x37, 0x9a, 0xa2, 0x65, 0x94, 0xd2, 0x83, 0x5a, 0xa3, 0x5e, 0x37, 0xbd, 0x7e, 0xb9, 0x1b, 0xfa, + 0x3f, 0xef, 0x4d, 0xd7, 0xc8, 0x88, 0xf7, 0x2b, 0x4e, 0xff, 0x34, 0x7a, 0xc7, 0x22, 0x70, 0xc3, + 0xa8, 0x04, 0x05, 0xb3, 0xdb, 0xc7, 0xd1, 0x88, 0xd8, 0x46, 0xd7, 0xae, 0xdc, 0xde, 0x07, 0x34, + 0xb4, 0xcd, 0x3f, 0x68, 0x11, 0x04, 0x41, 0x99, 0xce, 0xac, 0x36, 0x4e, 0x22, 0xc3, 0x8f, 0xac, + 0xb2, 0x9b, 0xd1, 0xf6, 0x7e, 0x2d, 0x20, 0xe1, 0xf1, 0x2d, 0x31, 0xfb, 0x50, 0x1b, 0x0f, 0xca, + 0x10, 0xbc, 0x77, 0x77, 0x8c, 0x66, 0x08, 0xef, 0x5c, 0xb3, 0x4f, 0x26, 0x9c, 0x33, 0xef, 0x7b, + 0x09, 0x76, 0x25, 0xff, 0x08, 0x49, 0x10, 0xd0, 0xb0, 0x73, 0x47, 0xc3, 0x5b, 0x4a, 0x9c, 0x32, + 0x9c, 0xd0, 0xb3, 0x59, 0x60, 0xfa, 0xe4, 0x8c, 0x98, 0x6f, 0xf8, 0xc6, 0x5e, 0xcc, 0xee, 0x94, + 0x68, 0x55, 0xb9, 0x0d, 0xb1, 0x8b, 0xb7, 0x0b, 0x34, 0x23, 0x2c, 0xe8, 0x0f, 0x4b, 0x80, 0xd1, + 0x77, 0x8f, 0x2f, 0x4f, 0xbb, 0x67, 0x9e, 0xe1, 0xa5, 0xcd, 0xa3, 0xc0, 0x8f, 0x58, 0x09, 0xa2, + 0xc8, 0x53, 0x98, 0xfb, 0xd9, 0x74, 0x98, 0x1b, 0xd2, 0xe1, 0xd8, 0x25, 0xa1, 0xe9, 0xbb, 0x7e, + 0x77, 0x86, 0xd7, 0xe9, 0x0c, 0x07, 0x24, 0xe2, 0x66, 0x7b, 0xab, 0xb1, 0xd1, 0x69, 0xc6, 0x4d, + 0x64, 0x74, 0x5d, 0xce, 0xe8, 0x3e, 0x64, 0x86, 0x17, 0x66, 0x2f, 0x7c, 0x6b, 0x19, 0x36, 0x95, + 0x86, 0x6c, 0x48, 0x6e, 0xd8, 0x94, 0xeb, 0x34, 0x7d, 0x5e, 0xee, 0x6e, 0x9a, 0x11, 0xeb, 0x8c, + 0xb9, 0xe1, 0x3b, 0x64, 0x9c, 0xfa, 0xde, 0x41, 0xed, 0xe2, 0x86, 0x19, 0xdd, 0x91, 0x9b, 0x61, + 0x10, 0xf8, 0x2e, 0xb3, 0xef, 0x89, 0x6d, 0xfb, 0x63, 0x8f, 0x33, 0x6f, 0x68, 0x7e, 0x75, 0xc5, + 0xa7, 0x93, 0x56, 0xb3, 0xdd, 0x34, 0xfc, 0x30, 0xeb, 0xe9, 0xd8, 0x6c, 0x6d, 0x54, 0x7f, 0x7a, + 0x9c, 0x64, 0x96, 0xbc, 0x7e, 0x0a, 0x7d, 0xb3, 0x03, 0x3a, 0x1f, 0x9b, 0x9e, 0x83, 0x4f, 0x1d, + 0xef, 0x99, 0x67, 0xb8, 0x5d, 0x18, 0x7f, 0xa0, 0x64, 0x78, 0x78, 0x78, 0xd0, 0x28, 0x01, 0x93, + 0xb0, 0x77, 0x61, 0x3a, 0xa3, 0xf3, 0xb3, 0xef, 0x9f, 0xfa, 0xe3, 0xd0, 0xf8, 0x80, 0xd7, 0xf2, + 0x6c, 0x52, 0x8e, 0xed, 0xbe, 0xb9, 0xe8, 0xb1, 0xf9, 0x72, 0x14, 0x53, 0x55, 0xd4, 0xbd, 0x9d, + 0xef, 0x25, 0x88, 0xe1, 0xa5, 0xa8, 0x45, 0x8f, 0x8f, 0x2e, 0x45, 0xa5, 0x38, 0xba, 0x14, 0x84, + 0xe6, 0x0b, 0xce, 0x1b, 0x2d, 0x35, 0x78, 0xe3, 0xff, 0x9c, 0x97, 0xac, 0x1a, 0x1d, 0xc8, 0x07, + 0x5f, 0x06, 0x2c, 0xbe, 0xd0, 0xd1, 0x64, 0x1f, 0x65, 0xfa, 0x79, 0xf5, 0x70, 0x60, 0xd7, 0x77, + 0x0c, 0xd7, 0x09, 0x9e, 0xdf, 0xd2, 0xb3, 0x5d, 0x82, 0xbb, 0x49, 0x0c, 0x57, 0x3b, 0xa6, 0x33, + 0x8e, 0x70, 0xdb, 0x74, 0x6a, 0x2a, 0xf0, 0xcb, 0x50, 0x13, 0xb9, 0x7b, 0xca, 0x6e, 0xcc, 0xf6, + 0x4f, 0xa3, 0x41, 0x8f, 0x0d, 0x4d, 0xdf, 0x69, 0x5d, 0x0a, 0xd3, 0xc6, 0xea, 0x7d, 0xb6, 0xef, + 0x79, 0xd4, 0x36, 0x5d, 0xef, 0xee, 0xdc, 0x1f, 0x4e, 0xe0, 0x79, 0x99, 0x4e, 0x00, 0x95, 0xe1, + 0xd6, 0x9b, 0x49, 0x9f, 0x8e, 0xfe, 0x68, 0x06, 0x8d, 0x8b, 0x72, 0x25, 0xe5, 0x25, 0xa8, 0x43, + 0x9a, 0x3b, 0xe5, 0x13, 0x1e, 0x96, 0xa1, 0x88, 0x75, 0xef, 0x8f, 0x8b, 0x66, 0xdb, 0xec, 0x93, + 0xee, 0x66, 0x6b, 0x26, 0x10, 0xe2, 0x9a, 0x5d, 0xe7, 0x62, 0xf6, 0x21, 0x26, 0x97, 0x04, 0x46, + 0x9f, 0x36, 0x09, 0xf8, 0xa8, 0x04, 0xbb, 0xe0, 0x75, 0xe3, 0x77, 0xc1, 0xd7, 0xae, 0x48, 0x3b, + 0xfd, 0xe1, 0x18, 0x5e, 0x88, 0x37, 0x4f, 0x03, 0xcd, 0x3f, 0x92, 0x35, 0xd5, 0x9c, 0x2a, 0xc7, + 0xbd, 0xf7, 0xb7, 0x2c, 0x08, 0x98, 0xe9, 0xd8, 0x76, 0xa6, 0xec, 0x67, 0xfa, 0xcd, 0x62, 0x91, + 0xf9, 0x57, 0x9e, 0xb6, 0x99, 0xdd, 0x37, 0xdc, 0x22, 0xa6, 0x7a, 0x91, 0x27, 0x3e, 0xaf, 0xd7, + 0x8f, 0xcc, 0x66, 0xd3, 0x9d, 0xa8, 0x6e, 0xbc, 0xd0, 0xd1, 0x99, 0xe1, 0x42, 0x47, 0xdb, 0x7b, + 0x66, 0xcb, 0x65, 0x45, 0x66, 0xa7, 0x13, 0xac, 0x04, 0x52, 0x7e, 0x2b, 0x0e, 0xa9, 0x1b, 0xfa, + 0x03, 0x66, 0xf6, 0x35, 0x75, 0xd3, 0xbb, 0x87, 0xba, 0x86, 0xeb, 0x53, 0xdf, 0x4d, 0x11, 0xc7, + 0x59, 0xd0, 0x74, 0x9c, 0xd0, 0xf0, 0x4d, 0xd7, 0x9b, 0x90, 0x39, 0x43, 0x6a, 0xb8, 0xb6, 0xc0, + 0xc5, 0xd8, 0xe5, 0xcc, 0x65, 0xde, 0x77, 0xf3, 0x2f, 0x72, 0xfc, 0xdb, 0x6c, 0xfc, 0x14, 0x52, + 0x62, 0xdf, 0x9e, 0xf4, 0xce, 0x8d, 0x46, 0x4e, 0x66, 0xd3, 0x20, 0xae, 0x6f, 0x13, 0xb7, 0x4f, + 0xdc, 0xef, 0xa6, 0x4b, 0xe9, 0x18, 0x1d, 0xe8, 0x6c, 0x4e, 0x5d, 0x16, 0x5d, 0x50, 0x4e, 0xce, + 0x3b, 0x9d, 0xae, 0xe9, 0x6c, 0x54, 0x67, 0xe0, 0x8c, 0xca, 0x41, 0x79, 0xfc, 0x6d, 0xf8, 0x2d, + 0x9a, 0xee, 0x36, 0x0b, 0x7e, 0x9a, 0x7e, 0x7a, 0x9d, 0x0d, 0xba, 0x3f, 0x4c, 0x2f, 0xf4, 0x22, + 0xa1, 0xd9, 0x45, 0xce, 0xb3, 0xf2, 0xa2, 0xd9, 0xa6, 0xbd, 0xe9, 0x05, 0x15, 0x6c, 0x60, 0x0d, + 0x23, 0xa3, 0x6d, 0x22, 0x70, 0xbc, 0xf8, 0x3c, 0xe5, 0xb9, 0xef, 0x07, 0x65, 0x38, 0x8f, 0xb1, + 0xdb, 0xf7, 0xbf, 0x53, 0xef, 0xd2, 0xf0, 0x13, 0x7c, 0x91, 0x63, 0x33, 0xd3, 0xaf, 0xa1, 0x34, + 0x9f, 0x1f, 0x1f, 0x06, 0xbe, 0x57, 0x0a, 0x61, 0x48, 0x93, 0x3b, 0xe1, 0x0d, 0x88, 0xd1, 0x4c, + 0x07, 0x35, 0x7b, 0x0d, 0x51, 0xdb, 0xf4, 0xbb, 0xe9, 0x66, 0xb4, 0x99, 0xd9, 0xba, 0x45, 0x01, + 0x2b, 0x47, 0x15, 0x5d, 0xdb, 0x31, 0xda, 0x19, 0x45, 0xd1, 0x7e, 0x09, 0xca, 0x80, 0x59, 0xd0, + 0xb9, 0xa3, 0xe1, 0xb1, 0x63, 0x76, 0x4a, 0x3a, 0x1c, 0x04, 0x65, 0x10, 0x69, 0xe8, 0xf4, 0xcc, + 0x3f, 0x79, 0x7b, 0x64, 0x74, 0x1f, 0x98, 0xc7, 0x69, 0xe8, 0x52, 0x72, 0x47, 0xcd, 0xae, 0xed, + 0x3f, 0xf5, 0xc3, 0x1f, 0x24, 0x34, 0xba, 0xca, 0xc9, 0x65, 0x1e, 0x1d, 0x9a, 0x2e, 0x92, 0x11, + 0xb9, 0x66, 0x07, 0x6b, 0x42, 0xdc, 0x5d, 0xc3, 0x93, 0x4f, 0xc3, 0x6f, 0xe6, 0x7e, 0xac, 0x1a, + 0x63, 0xf4, 0x3e, 0x2f, 0xe3, 0x46, 0x67, 0x6f, 0x23, 0x62, 0xf7, 0xa8, 0xfd, 0xd9, 0xb3, 0x7d, + 0x8f, 0x87, 0xbe, 0xeb, 0x52, 0xe7, 0xec, 0xd4, 0xec, 0xa3, 0x06, 0x46, 0x63, 0xbe, 0x9f, 0x8d, + 0xdd, 0x91, 0x6b, 0xf8, 0x4d, 0xf5, 0x35, 0xc3, 0xcb, 0xfb, 0x4e, 0x4f, 0xce, 0xcd, 0x57, 0xc0, + 0xe8, 0x3b, 0x23, 0xa3, 0xaf, 0x42, 0x2a, 0xc1, 0xe5, 0x1c, 0x4b, 0x69, 0xca, 0xe3, 0x11, 0x8f, + 0xca, 0xb1, 0xcd, 0x1b, 0x46, 0x8d, 0x6d, 0xa3, 0x77, 0x51, 0x6c, 0x9b, 0xb7, 0x46, 0x63, 0xd7, + 0xec, 0xbd, 0x13, 0xb3, 0x79, 0x0d, 0x1a, 0xd9, 0x66, 0x53, 0xc6, 0x77, 0xdb, 0x46, 0xa7, 0x0f, + 0xb7, 0x51, 0xc4, 0x0c, 0x3f, 0x5d, 0x43, 0x43, 0x97, 0x78, 0x0d, 0xb3, 0x81, 0x5e, 0xdd, 0x68, + 0x15, 0x15, 0x1e, 0xd6, 0x6a, 0x07, 0x65, 0x38, 0x5c, 0xdd, 0x30, 0x9f, 0x9d, 0xbc, 0x30, 0xbe, + 0x0b, 0x9d, 0x3b, 0x1a, 0x36, 0xb9, 0xe1, 0xc8, 0x28, 0x34, 0xfa, 0x24, 0xa9, 0x3b, 0x32, 0x9b, + 0xd3, 0x33, 0xfd, 0x50, 0xcd, 0x9d, 0xe9, 0x1d, 0x58, 0xd9, 0x02, 0x1d, 0x98, 0x5e, 0x09, 0x6a, + 0x7a, 0x21, 0xe8, 0x53, 0xbd, 0x9d, 0x72, 0x24, 0x9f, 0x6c, 0xc4, 0xcd, 0x86, 0x4c, 0xc4, 0x8b, + 0x82, 0xdf, 0x0c, 0xcf, 0xde, 0x42, 0xe2, 0x30, 0xff, 0xa2, 0x79, 0x6c, 0x74, 0x06, 0xcd, 0x49, + 0x78, 0x6e, 0x78, 0xa9, 0x77, 0xe4, 0x98, 0x2d, 0x60, 0x38, 0xc1, 0xdf, 0xf5, 0xed, 0xc3, 0x1d, + 0xc3, 0xa9, 0xd6, 0xbe, 0x33, 0x32, 0xbf, 0x52, 0xc6, 0x70, 0xe8, 0x1d, 0xcb, 0x6d, 0xc4, 0x82, + 0x7f, 0x03, 0x62, 0xd3, 0x52, 0x89, 0xb1, 0x19, 0x4d, 0xb5, 0xb2, 0xc8, 0xf6, 0xcf, 0x7a, 0xe7, + 0xa6, 0x83, 0xa9, 0x71, 0x64, 0x74, 0x62, 0xe7, 0xd8, 0x5e, 0x09, 0x28, 0x8e, 0xd3, 0x4f, 0x27, + 0x86, 0xa3, 0x26, 0xb3, 0xaf, 0x1a, 0x9c, 0xd1, 0x65, 0xdb, 0xc4, 0x39, 0x27, 0x43, 0xc3, 0x6f, + 0x78, 0xed, 0x31, 0xa3, 0x7b, 0x30, 0x70, 0x1c, 0x56, 0x82, 0x13, 0x72, 0x66, 0xab, 0xd1, 0x7b, + 0x1d, 0x67, 0x6c, 0x78, 0x0d, 0x99, 0xd9, 0x25, 0xad, 0x03, 0xe6, 0xb1, 0x1b, 0xe2, 0x99, 0xad, + 0x79, 0xe7, 0x78, 0x7f, 0x9a, 0x7d, 0x83, 0xb9, 0xed, 0x85, 0x86, 0x97, 0x5b, 0xdd, 0x8e, 0x3d, + 0x6e, 0xfc, 0xb5, 0x75, 0x4b, 0xdd, 0xf3, 0x8b, 0xee, 0x99, 0xf9, 0x2a, 0x90, 0x65, 0xc8, 0x7e, + 0x46, 0x81, 0x1b, 0xf5, 0xc7, 0x25, 0x51, 0xd2, 0xde, 0x89, 0x0f, 0x1d, 0x1f, 0x99, 0x2d, 0x2f, + 0x15, 0x84, 0xfe, 0x54, 0xd1, 0x28, 0x70, 0xe9, 0x4f, 0xdf, 0x68, 0xbf, 0xe5, 0xb8, 0xd1, 0x0f, + 0xc3, 0x8b, 0x44, 0xcd, 0x97, 0x94, 0x9a, 0x80, 0x40, 0x6e, 0x36, 0x07, 0x5b, 0x82, 0x6d, 0x2e, + 0xc3, 0xb9, 0xcb, 0xc0, 0xf7, 0xea, 0xbb, 0x32, 0x10, 0x50, 0xe8, 0xc9, 0xab, 0x77, 0x19, 0x8c, + 0x94, 0xd8, 0x08, 0x2d, 0x13, 0xf5, 0x5b, 0x21, 0xca, 0x24, 0xfb, 0x0f, 0x15, 0x39, 0x0c, 0x95, + 0xc3, 0x57, 0x1a, 0x32, 0x9a, 0xb7, 0x42, 0xfb, 0xa3, 0xd9, 0x7f, 0xe7, 0x82, 0xaa, 0x97, 0xd9, + 0x5b, 0xcf, 0xfe, 0xb3, 0x7f, 0x36, 0x76, 0x03, 0x91, 0xb0, 0x9b, 0xfd, 0x97, 0x2e, 0x0a, 0xc3, + 0xe2, 0x51, 0x36, 0xe1, 0x8b, 0x57, 0xa5, 0x86, 0xea, 0x26, 0x7c, 0x30, 0x71, 0xc7, 0x9f, 0x02, + 0xdf, 0xeb, 0xde, 0xde, 0x47, 0xcc, 0x26, 0xee, 0x67, 0x91, 0xab, 0xe8, 0xb3, 0xff, 0xea, 0x01, + 0x89, 0xb8, 0x21, 0xce, 0x8c, 0xf0, 0xd1, 0x99, 0xc8, 0x39, 0x9c, 0xec, 0xbf, 0x94, 0x1b, 0xe2, + 0x76, 0xc7, 0x2e, 0x0f, 0x8d, 0x18, 0xd0, 0xc5, 0x65, 0x99, 0xbb, 0x26, 0x7c, 0xed, 0xc8, 0x77, + 0xa8, 0x11, 0xf1, 0x2b, 0xf0, 0xbd, 0xbd, 0x46, 0xc3, 0x88, 0xf8, 0xb5, 0xbd, 0x6f, 0xc2, 0x67, + 0xda, 0x37, 0xee, 0x17, 0x6a, 0x73, 0xd2, 0xe3, 0x24, 0x34, 0x24, 0x66, 0xb5, 0xcc, 0x8b, 0x59, + 0x53, 0x31, 0x94, 0x3f, 0x3b, 0x26, 0x7c, 0xeb, 0xf4, 0xe6, 0x6e, 0x33, 0x6c, 0x2c, 0xbe, 0x1f, + 0x65, 0xa6, 0xc4, 0xd7, 0x66, 0xc6, 0x24, 0x0e, 0x9d, 0x81, 0x33, 0x22, 0xe2, 0x2c, 0x77, 0x1e, + 0x39, 0x6e, 0x8c, 0xc4, 0x5d, 0xf2, 0xc3, 0x88, 0x20, 0x61, 0x58, 0x0a, 0x39, 0xbf, 0x8f, 0xec, + 0x92, 0x72, 0xa1, 0xfb, 0xc8, 0xb2, 0xff, 0x74, 0x2f, 0x32, 0x83, 0xf5, 0x58, 0x6e, 0x8c, 0xf5, + 0x68, 0x78, 0xc7, 0x6c, 0x23, 0xf2, 0xc8, 0xe1, 0x7e, 0x6d, 0x9b, 0xf0, 0xc6, 0xe8, 0xc6, 0xa8, + 0x34, 0xfd, 0xcc, 0x88, 0x05, 0x31, 0xd5, 0x3b, 0x39, 0x96, 0x52, 0x3b, 0xc9, 0xc1, 0xfd, 0x46, + 0x8e, 0x67, 0xc4, 0xca, 0x3d, 0x3c, 0x3c, 0xd8, 0x36, 0x88, 0xf9, 0xe8, 0x88, 0xd4, 0xd0, 0xe7, + 0x40, 0x85, 0xfb, 0x1e, 0xe5, 0x5f, 0xfa, 0x46, 0x38, 0x5c, 0x76, 0x13, 0x52, 0x61, 0x5d, 0xa7, + 0x3c, 0x02, 0xc4, 0xa0, 0xbe, 0x77, 0x31, 0x08, 0x45, 0xb7, 0x23, 0x73, 0x20, 0xc8, 0xb7, 0x1b, + 0xdb, 0x9f, 0x08, 0xa7, 0xdf, 0x29, 0x0d, 0xa8, 0x11, 0x29, 0x5b, 0x10, 0xb2, 0x11, 0x09, 0xef, + 0xcf, 0x7a, 0x27, 0x6d, 0x23, 0x28, 0xf2, 0x83, 0xbd, 0x73, 0x12, 0x44, 0xa6, 0x24, 0xc3, 0xe7, + 0x5d, 0xb3, 0x80, 0x98, 0x19, 0xf1, 0x36, 0x2e, 0x7b, 0x69, 0xb8, 0x66, 0x24, 0x12, 0x9c, 0x86, + 0xa3, 0x2e, 0x71, 0xcc, 0x48, 0x24, 0x85, 0x55, 0x3c, 0x73, 0x30, 0xaf, 0xf8, 0x5a, 0x3d, 0x13, + 0xbe, 0xf4, 0xef, 0xc6, 0xe1, 0xb6, 0x11, 0x5b, 0x4e, 0xd1, 0xc8, 0x89, 0xce, 0x6c, 0x33, 0x92, + 0x47, 0xc2, 0x47, 0x37, 0xbe, 0x67, 0xc4, 0x4a, 0x75, 0x49, 0x70, 0x63, 0xc8, 0x90, 0xf6, 0xc6, + 0x37, 0x12, 0x67, 0xf5, 0x72, 0x20, 0xc8, 0x1f, 0x6f, 0xf2, 0x5f, 0x0e, 0xba, 0x7e, 0xc8, 0x0d, + 0x19, 0xeb, 0x2f, 0x36, 0x6b, 0x79, 0x4e, 0xd7, 0x88, 0xcf, 0xbd, 0xf5, 0x23, 0x6e, 0x48, 0x10, + 0x8b, 0x42, 0x43, 0xc8, 0xaf, 0x13, 0xd7, 0xa0, 0x05, 0x60, 0xfb, 0x83, 0x01, 0x35, 0xab, 0x34, + 0xe5, 0xd4, 0x28, 0x54, 0x3b, 0xf2, 0x6d, 0xf2, 0x85, 0x86, 0x11, 0xf3, 0x3d, 0x63, 0xb0, 0x82, + 0x90, 0xd0, 0x75, 0x0e, 0x43, 0x4b, 0x1d, 0x46, 0x2e, 0x08, 0x73, 0xcd, 0x61, 0x42, 0x9d, 0x68, + 0xdb, 0x18, 0xee, 0xcb, 0x88, 0x70, 0xeb, 0x44, 0x6e, 0x23, 0x10, 0xba, 0x82, 0x3b, 0x87, 0x8f, + 0xbd, 0x63, 0x36, 0xeb, 0x4c, 0x55, 0xd8, 0x05, 0x6f, 0xd0, 0xca, 0xfe, 0xa3, 0xa9, 0x19, 0x5e, + 0xcb, 0x90, 0xda, 0xb4, 0xe9, 0x0d, 0xf8, 0x7f, 0xf0, 0x60, 0xb6, 0x7d, 0x7e, 0x49, 0x1c, 0xe6, + 0x9b, 0x62, 0x68, 0x86, 0xe4, 0x64, 0x03, 0x23, 0x02, 0x01, 0x1b, 0x32, 0x4e, 0xdc, 0xae, 0xff, + 0x83, 0x86, 0x2e, 0xf3, 0x8c, 0x40, 0x60, 0x23, 0x53, 0xac, 0x6c, 0x7a, 0xa0, 0xf1, 0x82, 0xd8, + 0xe7, 0xe4, 0xde, 0x0c, 0x2f, 0x1b, 0x0e, 0xec, 0x83, 0xfd, 0xfd, 0x9f, 0x66, 0xd4, 0x2d, 0x92, + 0xe8, 0xde, 0x33, 0x82, 0xa2, 0x25, 0xf5, 0xc6, 0x45, 0x10, 0xf4, 0x7e, 0x30, 0x6e, 0xdf, 0x9a, + 0xb1, 0x67, 0xe3, 0x07, 0xc7, 0x9e, 0x1b, 0x99, 0xf2, 0xad, 0x73, 0xa5, 0xc3, 0x6e, 0xc3, 0x88, + 0xed, 0x10, 0x43, 0xca, 0x67, 0x46, 0x01, 0x1d, 0xf6, 0x63, 0xd9, 0x42, 0x43, 0x38, 0xaf, 0x5b, + 0xe7, 0xb6, 0x7e, 0x60, 0x46, 0x7d, 0xf0, 0x30, 0xdc, 0xae, 0x6d, 0x5f, 0x9e, 0xf4, 0x8d, 0x21, + 0x3c, 0x4e, 0xce, 0x4e, 0x8c, 0x30, 0x2d, 0x4e, 0xec, 0xef, 0x7d, 0xbf, 0x37, 0xf9, 0x1f, 0x83, + 0x4a, 0x83, 0x7b, 0x46, 0xe4, 0x0c, 0xd4, 0x88, 0x80, 0x70, 0x43, 0x22, 0x66, 0x9b, 0x52, 0x6e, + 0x10, 0x13, 0x1c, 0x5d, 0xc2, 0x8d, 0x81, 0x05, 0xab, 0xc2, 0xc2, 0x17, 0xc4, 0x76, 0x4d, 0x01, + 0xb6, 0xb7, 0xfe, 0x88, 0x06, 0x1e, 0x31, 0x65, 0x98, 0xbb, 0x3e, 0xf3, 0x78, 0xdf, 0x8f, 0xff, + 0xa7, 0x47, 0x43, 0x46, 0x8c, 0xc8, 0x77, 0x02, 0x62, 0xc6, 0xf1, 0xac, 0xc8, 0x1f, 0xf0, 0x1f, + 0x24, 0xa4, 0xe7, 0xbe, 0x1f, 0xdc, 0x18, 0x12, 0x29, 0x86, 0x87, 0x87, 0x07, 0x46, 0x50, 0x60, + 0xf3, 0xbb, 0x35, 0xea, 0xa6, 0xd4, 0xd3, 0x75, 0x43, 0xff, 0xe7, 0xbd, 0x29, 0x67, 0x5f, 0x63, + 0xbe, 0xf6, 0xf4, 0x4f, 0x23, 0x18, 0xdb, 0xc0, 0x0d, 0x23, 0x83, 0x0a, 0xbe, 0xb6, 0x8f, 0xa3, + 0x11, 0xb1, 0x8d, 0xd8, 0x83, 0xbe, 0xbd, 0x0f, 0x68, 0x68, 0x9b, 0x53, 0x68, 0x1b, 0x04, 0x81, + 0x89, 0x67, 0x72, 0x1a, 0x27, 0x91, 0x21, 0x47, 0x72, 0xd8, 0xcd, 0x68, 0x7b, 0xbf, 0x16, 0x90, + 0xf0, 0xf8, 0x96, 0x98, 0x71, 0x58, 0x80, 0x07, 0x26, 0x05, 0xb3, 0xdd, 0x1d, 0x23, 0x18, 0x9b, + 0x3b, 0xd7, 0x8c, 0x8a, 0xd5, 0x73, 0xe6, 0x7d, 0x37, 0x68, 0x77, 0xe4, 0x8f, 0x90, 0x04, 0x01, + 0x0d, 0x3b, 0x77, 0x34, 0xbc, 0xa5, 0xc4, 0x31, 0xe9, 0x84, 0x83, 0xcd, 0x02, 0x53, 0x06, 0x7b, + 0xc4, 0x7c, 0x43, 0x36, 0x1e, 0xe2, 0xac, 0xdd, 0xc0, 0xd5, 0xe0, 0x36, 0xc4, 0xe4, 0xf8, 0x73, + 0xa1, 0xc8, 0xfb, 0x43, 0x83, 0xb0, 0xe3, 0xee, 0xf1, 0xe5, 0x69, 0xf7, 0xcc, 0x33, 0xa4, 0xd4, + 0x6e, 0x14, 0xf8, 0x11, 0x33, 0xc8, 0x0b, 0x3f, 0x85, 0x65, 0x9f, 0x4d, 0x81, 0x65, 0x21, 0x1d, + 0x8e, 0x5d, 0x12, 0x9a, 0xb2, 0x2b, 0x71, 0x67, 0xc8, 0xbe, 0xfa, 0x70, 0x92, 0x09, 0x9b, 0xe1, + 0x1d, 0xc6, 0x46, 0xc0, 0xdc, 0x9b, 0xc8, 0x88, 0x7d, 0xf4, 0xd1, 0x7d, 0xc8, 0x0c, 0x29, 0x08, + 0x5c, 0xde, 0xff, 0x6e, 0x10, 0x49, 0x3e, 0x64, 0x43, 0x72, 0xc3, 0xa6, 0x1c, 0x93, 0x29, 0xe3, + 0x7c, 0x77, 0xd3, 0x8c, 0x58, 0x67, 0xcc, 0x0d, 0x61, 0xf6, 0x39, 0xf5, 0xbd, 0x83, 0xda, 0xc5, + 0x0d, 0x33, 0xe2, 0x83, 0x6f, 0x86, 0x41, 0xe0, 0xbb, 0xcc, 0xbe, 0x27, 0xb6, 0xed, 0x8f, 0x3d, + 0xce, 0xbc, 0xa1, 0x39, 0xbb, 0xaa, 0x9f, 0x4e, 0x5a, 0xcd, 0x76, 0xd3, 0x90, 0xc3, 0x3a, 0xa7, + 0x63, 0x33, 0xb4, 0xac, 0xfc, 0x69, 0xd9, 0xf0, 0x2c, 0xe9, 0x11, 0xbc, 0x3b, 0x21, 0x07, 0xca, + 0x61, 0x6c, 0x4a, 0x8e, 0x36, 0x75, 0x68, 0x67, 0x9e, 0x21, 0xeb, 0xd6, 0x98, 0xc2, 0xe1, 0xe1, + 0xe1, 0xe1, 0x41, 0xc3, 0xa0, 0x8c, 0x72, 0xef, 0xc2, 0x94, 0x4c, 0xfd, 0x67, 0xdf, 0x3f, 0xf5, + 0xc7, 0xa1, 0x31, 0x81, 0xa1, 0xe5, 0xd9, 0xc4, 0xac, 0xed, 0x88, 0xb9, 0x58, 0x9c, 0x39, 0xc7, + 0x4f, 0xa7, 0x2a, 0x56, 0x7b, 0x3b, 0xdf, 0x0d, 0x8a, 0x69, 0x46, 0xd5, 0x3a, 0xc6, 0xa5, 0xe5, + 0x91, 0x51, 0xa5, 0xe5, 0x41, 0x68, 0x8e, 0x00, 0xa6, 0x11, 0x52, 0x35, 0x37, 0xfe, 0xcf, 0x79, + 0x29, 0x96, 0x11, 0x81, 0x6d, 0xf0, 0x65, 0xc0, 0xfa, 0xf7, 0x81, 0x11, 0x67, 0x4c, 0x7c, 0x53, + 0xce, 0xc5, 0x85, 0x03, 0xbb, 0xbe, 0x63, 0x88, 0xee, 0xda, 0x5c, 0x15, 0x7b, 0xdb, 0x20, 0xad, + 0x61, 0x43, 0x54, 0xe2, 0xe8, 0x8c, 0xb3, 0xd9, 0x36, 0x85, 0x5a, 0x08, 0x7c, 0x93, 0x6a, 0x83, + 0x76, 0x4f, 0xd9, 0x8d, 0x19, 0xfe, 0x60, 0x34, 0xe8, 0xb1, 0xa1, 0x29, 0x3b, 0x3b, 0x4b, 0x61, + 0xb0, 0x58, 0x15, 0xc6, 0xf6, 0x3d, 0x8f, 0xda, 0xa6, 0xe8, 0xab, 0x9c, 0xfb, 0xc3, 0x09, 0x6c, + 0x34, 0xb1, 0x72, 0xdb, 0x24, 0xf5, 0xe9, 0xc9, 0xb7, 0x1f, 0xfd, 0xd1, 0x0c, 0x1a, 0x17, 0x66, + 0x26, 0x6d, 0x06, 0xd5, 0x07, 0xcc, 0x9d, 0xdd, 0x09, 0x0f, 0x4d, 0x2a, 0xce, 0xda, 0xfb, 0xe3, + 0xa2, 0xd9, 0x36, 0xe3, 0x44, 0x9d, 0x19, 0x67, 0x2a, 0x09, 0x71, 0xcd, 0xd8, 0xaf, 0x36, 0xa3, + 0xc8, 0xdc, 0x25, 0x81, 0x11, 0x55, 0xc5, 0x01, 0x1f, 0x19, 0xb4, 0x8b, 0x56, 0x37, 0x66, 0x17, + 0x6d, 0x4d, 0xea, 0xff, 0xf4, 0x87, 0x63, 0x48, 0x01, 0xcb, 0x3c, 0xad, 0x30, 0xa7, 0x34, 0x7e, + 0xaa, 0xb9, 0x60, 0xd6, 0xbd, 0x7c, 0xb7, 0x2c, 0x08, 0x98, 0x29, 0x58, 0x6c, 0xa6, 0x18, 0x63, + 0x8a, 0x72, 0x7e, 0x64, 0xce, 0x55, 0x36, 0x6d, 0x66, 0xf7, 0x0d, 0x59, 0xb1, 0x53, 0xfd, 0xa0, + 0x13, 0x9f, 0xd7, 0xeb, 0x47, 0x66, 0xb0, 0x8f, 0x4e, 0x54, 0x37, 0x46, 0x18, 0xe0, 0xcc, 0x10, + 0x61, 0x80, 0xed, 0x3d, 0x33, 0x64, 0x21, 0x22, 0x33, 0xe0, 0x2c, 0x33, 0x48, 0x22, 0x66, 0xc5, + 0x01, 0x74, 0x43, 0x7f, 0xc0, 0xcc, 0xb8, 0x3e, 0x61, 0xaa, 0xe9, 0xdd, 0x35, 0x44, 0xa7, 0xef, + 0x6e, 0x1a, 0x69, 0xcf, 0x82, 0xa6, 0xe3, 0x84, 0x86, 0x6c, 0xf2, 0xdc, 0x84, 0xcc, 0x19, 0x52, + 0x43, 0xce, 0x24, 0x5e, 0x8c, 0x5d, 0xce, 0x5c, 0xe6, 0x7d, 0x37, 0xe7, 0x02, 0x90, 0xbf, 0xcd, + 0xc0, 0x07, 0x21, 0x25, 0xf6, 0xed, 0x49, 0xef, 0xdc, 0x08, 0x64, 0x60, 0x46, 0xda, 0xeb, 0xfa, + 0x36, 0x71, 0xfb, 0xc4, 0xfd, 0x6e, 0xca, 0x51, 0x75, 0x23, 0x02, 0x82, 0xcd, 0xa9, 0xcb, 0xa2, + 0x0b, 0xca, 0xc9, 0x79, 0xa7, 0xd3, 0x35, 0xe9, 0x0a, 0x49, 0xb3, 0x52, 0xdc, 0xbf, 0x0d, 0xb9, + 0x4d, 0xc5, 0xdd, 0x66, 0xc1, 0x4f, 0x53, 0x4e, 0xc9, 0xb1, 0x41, 0xf7, 0x87, 0x29, 0x05, 0x15, + 0x24, 0x34, 0xa3, 0xe8, 0x6e, 0xb6, 0xed, 0x3f, 0xdb, 0xdc, 0x33, 0x65, 0x23, 0x95, 0x0d, 0xac, + 0x61, 0x64, 0xc4, 0x9a, 0x0d, 0x1c, 0x2f, 0x3e, 0x5f, 0x72, 0xee, 0xfb, 0x81, 0x49, 0xf5, 0xb8, + 0xbb, 0x7d, 0xff, 0x3b, 0xf5, 0x2e, 0x0d, 0x39, 0x01, 0x11, 0x39, 0x36, 0x33, 0xe5, 0x9a, 0x12, + 0x73, 0xf8, 0xc4, 0x61, 0xe0, 0x7b, 0x46, 0x09, 0x05, 0x19, 0x71, 0x9b, 0xf0, 0x80, 0x18, 0x91, + 0xd9, 0x52, 0x33, 0xe6, 0x9e, 0xda, 0xa6, 0xdc, 0x99, 0x30, 0xa3, 0x37, 0xcc, 0x38, 0xe7, 0x1f, + 0x30, 0xb3, 0xaa, 0x4f, 0xda, 0x8e, 0x11, 0xc6, 0x1f, 0x45, 0xfb, 0x06, 0x95, 0xab, 0xcd, 0x2e, + 0xc2, 0x77, 0xcc, 0x48, 0x65, 0x86, 0x83, 0xc0, 0xa4, 0xc3, 0x9a, 0x9d, 0x9e, 0x39, 0x27, 0x88, + 0x8e, 0x8c, 0xf8, 0x56, 0xe6, 0x71, 0x1a, 0xba, 0x94, 0xdc, 0x51, 0x33, 0x6a, 0x41, 0x0d, 0xba, + 0x1c, 0xd4, 0x65, 0x1e, 0x1d, 0x9a, 0x72, 0xf8, 0x35, 0x72, 0x0d, 0xb9, 0x72, 0x93, 0xb8, 0xbb, + 0x86, 0x24, 0x2d, 0x86, 0xdc, 0x4c, 0xf6, 0xf8, 0xb4, 0xb6, 0x11, 0xfb, 0x47, 0x8c, 0x1b, 0x91, + 0x0d, 0x8c, 0x88, 0xdd, 0xa3, 0xf6, 0x67, 0xcf, 0xf6, 0x3d, 0x1e, 0xfa, 0xae, 0x4b, 0x9d, 0xb3, + 0x53, 0x33, 0x4a, 0x50, 0x8d, 0xc0, 0x2e, 0x3f, 0x1b, 0xbb, 0x23, 0xd7, 0x90, 0x9b, 0xf4, 0x6a, + 0x86, 0x94, 0xbf, 0x9c, 0x9e, 0x9c, 0x9b, 0x73, 0xb2, 0xb5, 0xef, 0x8c, 0x8c, 0x90, 0x12, 0x37, + 0x48, 0x84, 0x77, 0x29, 0x49, 0x74, 0x3c, 0xe2, 0x91, 0x59, 0xdb, 0x47, 0x61, 0xd4, 0xd8, 0x36, + 0x82, 0x2d, 0xb6, 0x6d, 0xde, 0x1a, 0x8d, 0x5d, 0x33, 0x38, 0x62, 0x33, 0xf2, 0x58, 0x1a, 0xd9, + 0x66, 0x50, 0x6f, 0x77, 0xdb, 0x46, 0xc0, 0xd7, 0xdb, 0x28, 0x62, 0x86, 0x54, 0x45, 0xd3, 0xd0, + 0x25, 0x5e, 0xc3, 0x0c, 0xc0, 0x52, 0x37, 0xe2, 0x54, 0x33, 0x0f, 0x6b, 0xb5, 0x03, 0x93, 0x0e, + 0x77, 0x35, 0xcc, 0x61, 0x85, 0x2e, 0x8c, 0xba, 0xbe, 0xbc, 0xc9, 0x0d, 0x89, 0xfc, 0xa1, 0x11, + 0x27, 0x65, 0xdc, 0x51, 0x60, 0xcc, 0x45, 0xd5, 0xa6, 0x68, 0xd1, 0x36, 0x0c, 0xdb, 0x72, 0x19, + 0x98, 0x52, 0xe1, 0x64, 0x4a, 0x81, 0xd3, 0xd3, 0x73, 0xeb, 0x66, 0x25, 0x2d, 0x6c, 0xc4, 0xcd, + 0x80, 0x04, 0xc4, 0x8b, 0x82, 0xdf, 0x0c, 0xc9, 0x06, 0x42, 0xe2, 0x30, 0xff, 0xa2, 0x79, 0x6c, + 0xc8, 0x6d, 0x94, 0xe1, 0xb9, 0x21, 0xa5, 0x84, 0x91, 0x63, 0x86, 0xd0, 0xcd, 0x04, 0x17, 0xd6, + 0xb7, 0x0f, 0x77, 0x0c, 0xa1, 0xb2, 0xfa, 0xce, 0xc8, 0x9c, 0x9d, 0x6d, 0x43, 0x20, 0x61, 0x7c, + 0x5c, 0x36, 0x16, 0x8c, 0x19, 0x10, 0x9b, 0x1a, 0x29, 0x0a, 0x62, 0x04, 0x95, 0xc5, 0x22, 0xdb, + 0x3f, 0xeb, 0x9d, 0x9b, 0x02, 0x16, 0xc6, 0x91, 0x11, 0x89, 0x82, 0x63, 0x7b, 0x06, 0xa5, 0xb4, + 0xa7, 0x9f, 0x4e, 0x0c, 0x41, 0x05, 0x66, 0x5c, 0x5d, 0x31, 0xa3, 0x35, 0xb6, 0x89, 0x73, 0x4e, + 0x86, 0x86, 0xdc, 0xc4, 0xd3, 0x63, 0x46, 0x7c, 0xe9, 0xc0, 0x71, 0x98, 0x41, 0x27, 0x0c, 0xcc, + 0x50, 0xc1, 0xf4, 0x3a, 0xce, 0xd8, 0x90, 0x9a, 0x0c, 0x33, 0x4a, 0xb2, 0x06, 0xcc, 0x63, 0x37, + 0xc4, 0x33, 0x43, 0x4b, 0xc5, 0xf1, 0xfe, 0x34, 0xe3, 0x46, 0x36, 0xdb, 0x0b, 0x0d, 0x29, 0x6b, + 0xb8, 0x1d, 0x7b, 0xdc, 0x98, 0x6b, 0x13, 0x96, 0xfa, 0x8c, 0x17, 0xdd, 0x33, 0x73, 0xd4, 0x7f, + 0x4c, 0x42, 0xd9, 0xa3, 0xc0, 0x8d, 0xfa, 0x63, 0xc3, 0x14, 0x02, 0x77, 0xe2, 0xc3, 0x50, 0x47, + 0x66, 0xc8, 0x28, 0x04, 0xa1, 0x3f, 0x3d, 0xe9, 0x1f, 0xb8, 0xf4, 0xa7, 0x6f, 0x84, 0x9f, 0x70, + 0xdc, 0xe8, 0x87, 0x21, 0xc5, 0x4f, 0xe6, 0x48, 0x27, 0x4c, 0xc0, 0x0c, 0x37, 0x83, 0xe3, 0x32, + 0x88, 0x9e, 0x37, 0x84, 0x33, 0x0a, 0x7c, 0xaf, 0xbe, 0x2b, 0x02, 0x65, 0x52, 0x3d, 0x71, 0xf5, + 0x4e, 0x6d, 0xbb, 0x6f, 0xff, 0xab, 0xd7, 0xff, 0xc5, 0x1b, 0xe3, 0x5c, 0x6d, 0xfd, 0xe4, 0x51, + 0xf5, 0x63, 0xe5, 0xeb, 0x3b, 0x35, 0xa3, 0x5f, 0xfd, 0x9d, 0xde, 0xff, 0xf0, 0x43, 0x27, 0xb6, + 0x36, 0xdb, 0xa2, 0x3f, 0xf9, 0x47, 0x4e, 0x5d, 0x3a, 0xa2, 0x3c, 0xbc, 0xb7, 0x7c, 0xcf, 0xb2, + 0x6f, 0x89, 0x37, 0xa4, 0xd5, 0x64, 0x93, 0x5f, 0xfd, 0x8d, 0x44, 0xcd, 0x70, 0x38, 0x1e, 0x51, + 0x8f, 0x57, 0x3f, 0x56, 0x06, 0xc4, 0x8d, 0x68, 0xc2, 0x27, 0x57, 0x1e, 0xab, 0x56, 0x25, 0x87, + 0xf0, 0xea, 0x8d, 0x21, 0x6c, 0x8e, 0x87, 0x93, 0x57, 0x51, 0x47, 0xe5, 0x38, 0xce, 0x57, 0xed, + 0x96, 0x6f, 0x5b, 0x6c, 0xf0, 0x91, 0xcd, 0xb9, 0xce, 0xe8, 0xe9, 0x2f, 0x66, 0x7f, 0xb6, 0x7d, + 0x6f, 0xc0, 0x86, 0x49, 0x07, 0xf6, 0x84, 0x46, 0x76, 0xc8, 0x02, 0xce, 0x7c, 0x6f, 0xf2, 0x92, + 0xa6, 0xe3, 0x44, 0x95, 0x7e, 0xf7, 0xec, 0xa4, 0xb2, 0x55, 0x89, 0xf5, 0x1e, 0xf9, 0x7d, 0x40, + 0x2b, 0x11, 0xe5, 0x9c, 0x79, 0xc3, 0xca, 0xc0, 0x0f, 0x2b, 0xfc, 0x96, 0x56, 0x6e, 0x48, 0x44, + 0x2b, 0x8b, 0xf7, 0x26, 0x7d, 0xd5, 0xef, 0xcc, 0x9b, 0x0c, 0x4c, 0x3d, 0xe1, 0x3f, 0x3f, 0x9e, + 0xf6, 0xe3, 0x63, 0xa5, 0x96, 0xf0, 0x81, 0x6e, 0x48, 0x07, 0xec, 0x67, 0xf5, 0x63, 0x0a, 0xf7, + 0xb0, 0x8c, 0x07, 0xb6, 0x15, 0x53, 0x9b, 0xc9, 0x7d, 0x51, 0xb5, 0xe7, 0x8f, 0x43, 0x9b, 0xa6, + 0x7a, 0xdd, 0x53, 0xbb, 0x08, 0xa6, 0x5f, 0x9c, 0xce, 0x01, 0x3e, 0xb1, 0x05, 0x1e, 0x8e, 0x69, + 0xca, 0x06, 0x56, 0x4d, 0x62, 0xde, 0x71, 0xd5, 0xce, 0x2a, 0xe9, 0xf2, 0x63, 0x61, 0xba, 0x09, + 0xe3, 0x01, 0x73, 0xd2, 0x8f, 0xf9, 0x62, 0x7b, 0x73, 0xf2, 0x74, 0xca, 0xd1, 0x7a, 0x62, 0x21, + 0x9d, 0xf8, 0x27, 0xe2, 0xba, 0xf7, 0x13, 0xb3, 0x88, 0xcd, 0x81, 0x93, 0x61, 0x25, 0x08, 0x7d, + 0xee, 0xdb, 0xbe, 0x5b, 0x61, 0x0e, 0xf5, 0x38, 0x1b, 0x30, 0x1a, 0x56, 0x06, 0x8c, 0xba, 0x4e, + 0xe5, 0x97, 0x89, 0x39, 0xfd, 0x5a, 0xe1, 0xb7, 0x84, 0x7f, 0xf3, 0x58, 0x54, 0x21, 0xb6, 0x4d, + 0x03, 0x4e, 0x9d, 0x8a, 0xef, 0xc5, 0x4f, 0x7f, 0x39, 0x6f, 0xb6, 0xd3, 0x7f, 0xd3, 0x80, 0x8c, + 0xdd, 0xd5, 0x09, 0xb4, 0x26, 0x86, 0x1a, 0x7d, 0x9c, 0xbc, 0xeb, 0xba, 0xf6, 0xe7, 0x41, 0xbd, + 0x56, 0x4b, 0xdb, 0xe6, 0xcc, 0x3c, 0x6b, 0x29, 0x1f, 0x4b, 0x6b, 0xa6, 0x32, 0xe6, 0xaa, 0xc0, + 0x6c, 0x65, 0xcd, 0x57, 0x99, 0x19, 0x2b, 0x33, 0x67, 0x35, 0x66, 0x2d, 0x86, 0x71, 0x52, 0x62, + 0xb7, 0x6a, 0x2c, 0x50, 0x23, 0x35, 0xe3, 0x53, 0xf3, 0xe2, 0xf7, 0x21, 0x1d, 0x88, 0xcc, 0xfa, + 0x3c, 0x06, 0xed, 0x0a, 0x3c, 0x7b, 0x36, 0x7b, 0xf5, 0x11, 0x89, 0x24, 0xd6, 0xcd, 0xbc, 0x23, + 0xb1, 0xa5, 0xf6, 0xff, 0xea, 0xb6, 0x7a, 0xa2, 0x0b, 0xe7, 0x0b, 0x71, 0xc7, 0x34, 0x19, 0x64, + 0x53, 0x0b, 0xa4, 0x9f, 0xef, 0x4b, 0xed, 0xcf, 0xc3, 0x46, 0x4d, 0xe0, 0xfc, 0x8b, 0x44, 0x1e, + 0xa0, 0xa9, 0x1b, 0xf5, 0x52, 0x74, 0xe3, 0xa0, 0x0c, 0xdd, 0x68, 0xb6, 0xff, 0x2a, 0xc3, 0x54, + 0x1c, 0x34, 0x0f, 0x24, 0xba, 0x21, 0xf4, 0xe4, 0x95, 0x6e, 0xd7, 0x5f, 0xb0, 0xf4, 0xf6, 0xcd, + 0xdc, 0xcc, 0xf3, 0x7c, 0x4e, 0x66, 0x28, 0xee, 0xed, 0xe9, 0xad, 0x46, 0xf6, 0x2d, 0x1d, 0x91, + 0x80, 0xf0, 0xdb, 0x69, 0xf2, 0x15, 0x50, 0x6f, 0x9a, 0x59, 0x59, 0x2b, 0x19, 0xd8, 0x73, 0x3f, + 0x6e, 0xcd, 0x12, 0xb0, 0x77, 0x62, 0x7d, 0x79, 0x65, 0xd1, 0x2e, 0x14, 0xf8, 0xdf, 0xec, 0xc1, + 0x9a, 0x66, 0xff, 0x1b, 0x31, 0x26, 0x61, 0x6e, 0x96, 0x18, 0xec, 0xa5, 0x01, 0x77, 0xab, 0x60, + 0x8e, 0xf2, 0xdb, 0x04, 0xd1, 0x30, 0x2d, 0x76, 0x13, 0xc6, 0x6a, 0xc2, 0xd8, 0xec, 0x29, 0x16, + 0x9b, 0xf4, 0x4b, 0x33, 0x7d, 0x93, 0x34, 0x93, 0xaa, 0xda, 0xf3, 0x39, 0x4c, 0xc9, 0x3f, 0xa4, + 0xe3, 0x15, 0x0a, 0x9e, 0xec, 0x27, 0x5b, 0x68, 0xe5, 0xcb, 0xf5, 0x13, 0x2d, 0xc4, 0x82, 0xa4, + 0xfa, 0x64, 0x38, 0x0c, 0xe9, 0x90, 0x70, 0x6a, 0xc9, 0xa4, 0xfc, 0x8f, 0x5a, 0xd9, 0x8c, 0x94, + 0xd8, 0x25, 0x43, 0x64, 0xc4, 0xcf, 0x2c, 0x7e, 0x57, 0xa8, 0xca, 0xaa, 0xe0, 0x09, 0xb1, 0x4b, + 0xc9, 0x40, 0x32, 0x19, 0xde, 0x17, 0x78, 0xb6, 0xbb, 0x00, 0x46, 0xc9, 0x58, 0x69, 0x6f, 0xf2, + 0xb9, 0xba, 0x00, 0x66, 0x0a, 0x4f, 0x4e, 0xc6, 0xdc, 0xb7, 0x3c, 0x3a, 0xf4, 0x39, 0x23, 0x9c, + 0x4a, 0xb8, 0x95, 0xc7, 0xed, 0x88, 0xf3, 0x77, 0x93, 0xe5, 0xbd, 0x21, 0x7e, 0x29, 0x5d, 0xd0, + 0xdd, 0x1c, 0xbf, 0x94, 0x2a, 0x28, 0x9b, 0xe2, 0x97, 0x6e, 0x7c, 0xdf, 0xa5, 0x62, 0xd4, 0xec, + 0xdc, 0x2f, 0xd5, 0x0b, 0xe0, 0x2f, 0x9c, 0x71, 0xe0, 0xd2, 0x9f, 0xd6, 0xc8, 0x77, 0x24, 0x9c, + 0xc5, 0x6a, 0x23, 0x30, 0x75, 0x98, 0x7a, 0xc9, 0x4c, 0x9d, 0x7a, 0xe3, 0x11, 0x0d, 0xa7, 0xdc, + 0x8a, 0x84, 0xb9, 0xef, 0x08, 0x3c, 0xdb, 0xf2, 0xc6, 0xa3, 0xc9, 0xc7, 0x3f, 0x14, 0xc0, 0x55, + 0x50, 0x8f, 0xdc, 0xb8, 0xd4, 0x1a, 0xb8, 0xfe, 0x0f, 0x6b, 0x26, 0x05, 0x26, 0xee, 0x32, 0x9e, + 0x6b, 0x4c, 0x1c, 0x64, 0xc4, 0x05, 0x13, 0x70, 0x3d, 0x70, 0x3d, 0x40, 0x19, 0x85, 0x44, 0x19, + 0x23, 0x62, 0x5b, 0x64, 0x76, 0xb1, 0x97, 0xb0, 0xcb, 0x58, 0x6d, 0x04, 0xa6, 0x0e, 0x53, 0x2f, + 0x99, 0xa9, 0x8b, 0x2f, 0xef, 0x47, 0xe6, 0x7e, 0x20, 0x46, 0x76, 0x70, 0x1a, 0x7a, 0xc2, 0x5b, + 0xed, 0xd5, 0xff, 0x7e, 0xad, 0x59, 0x87, 0xc4, 0x1a, 0x34, 0xad, 0xd3, 0xab, 0x7f, 0x1a, 0x0f, + 0xbf, 0x7c, 0x7c, 0xfc, 0xe7, 0x5f, 0xff, 0xd9, 0x7d, 0xf8, 0x4f, 0xfa, 0x19, 0xbb, 0x2a, 0x80, + 0xe7, 0x0a, 0xfc, 0x90, 0x5b, 0x51, 0x40, 0xa9, 0x04, 0x45, 0xbb, 0xd2, 0x06, 0xfc, 0x16, 0xfc, + 0x56, 0xc9, 0xfc, 0x56, 0x69, 0x2a, 0x96, 0x5a, 0xfd, 0xdf, 0x5a, 0x97, 0xed, 0x56, 0xff, 0xba, + 0xd7, 0x6d, 0xb5, 0x4e, 0xcc, 0xaf, 0x5a, 0x8a, 0xbb, 0x71, 0xbd, 0xfb, 0xe9, 0xc8, 0xe4, 0x0a, + 0x93, 0x69, 0x27, 0xea, 0xb5, 0x8b, 0x12, 0xf4, 0x62, 0xb7, 0x56, 0x86, 0xb9, 0xd8, 0xab, 0xd5, + 0xca, 0xb1, 0xa4, 0x4a, 0xb1, 0xa6, 0x0e, 0xca, 0x31, 0x1b, 0x8d, 0xdd, 0x72, 0x4c, 0x47, 0xa3, + 0x1c, 0xd3, 0xb1, 0x53, 0x16, 0x13, 0x2f, 0x45, 0x37, 0xca, 0x31, 0x17, 0xe5, 0x70, 0x53, 0xe5, + 0xb0, 0xee, 0x52, 0x4c, 0xc6, 0xe7, 0xf6, 0xef, 0xed, 0xce, 0x1f, 0x6d, 0x14, 0x1e, 0x2b, 0x99, + 0xae, 0x94, 0x87, 0x3b, 0xc5, 0x66, 0x34, 0xdd, 0x61, 0x4f, 0xca, 0x6f, 0x3f, 0xce, 0x0b, 0x7c, + 0xe7, 0x7f, 0x4e, 0x55, 0xa5, 0xb9, 0x78, 0xed, 0x73, 0xa7, 0x40, 0xcf, 0x9b, 0x9f, 0xe6, 0x07, + 0x3f, 0xa3, 0x0a, 0xf7, 0x2b, 0xcc, 0x73, 0xd8, 0x1d, 0x73, 0xc6, 0xc4, 0xad, 0xb4, 0x66, 0x2f, + 0x5d, 0x9e, 0x01, 0x15, 0x65, 0x9c, 0xeb, 0x28, 0xad, 0x2b, 0x05, 0x73, 0x53, 0xc0, 0xd2, 0xba, + 0xb4, 0xf5, 0xa6, 0x8b, 0x07, 0xa5, 0xea, 0x4e, 0xd7, 0x16, 0x8d, 0x44, 0xfd, 0xe9, 0x4b, 0xe6, + 0xd9, 0x0b, 0xa8, 0xcd, 0x06, 0xf7, 0xf1, 0xe9, 0x51, 0x77, 0x7a, 0x37, 0x79, 0x65, 0xf1, 0x9a, + 0xa5, 0x4d, 0x4e, 0x8c, 0xf6, 0xc7, 0x2d, 0xb3, 0x6f, 0xbf, 0x79, 0xfc, 0x96, 0x45, 0x2b, 0x7f, + 0x71, 0x43, 0x5d, 0xdf, 0x1b, 0x46, 0xa2, 0x9f, 0x23, 0xc6, 0xba, 0x4a, 0xdb, 0xb0, 0x0a, 0x5b, + 0x56, 0x67, 0xd3, 0xaa, 0x6c, 0x5b, 0xb9, 0x8d, 0x2b, 0xb7, 0x75, 0xa5, 0x36, 0x2f, 0x87, 0x2d, + 0x04, 0xa1, 0x95, 0x38, 0x8b, 0xbb, 0xb6, 0x5e, 0xc4, 0xcb, 0x6d, 0xd7, 0x42, 0xdf, 0xbe, 0x44, + 0x1b, 0xfa, 0xcb, 0x6f, 0xc5, 0x27, 0x2a, 0x5f, 0x38, 0x77, 0x95, 0x14, 0xce, 0xa5, 0x3b, 0x0f, + 0xb6, 0x78, 0x4e, 0xfc, 0x5c, 0xd8, 0x02, 0xaa, 0x25, 0x39, 0x20, 0x96, 0xbc, 0xd3, 0x09, 0x6c, + 0xa2, 0x1a, 0xf1, 0x34, 0xc5, 0xce, 0xab, 0x9a, 0xe5, 0x5c, 0xbb, 0xbc, 0x47, 0x03, 0x27, 0x7e, + 0x54, 0x7a, 0x6d, 0x9c, 0xf8, 0xc1, 0x89, 0x1f, 0xa4, 0x25, 0x38, 0xf1, 0xa3, 0x1a, 0x7a, 0xe0, + 0xc4, 0x0f, 0x4e, 0xfc, 0x68, 0x0e, 0xba, 0x9b, 0xe3, 0x97, 0x50, 0x8b, 0xfb, 0xbc, 0x5f, 0x2a, + 0x42, 0x2d, 0xae, 0xed, 0x8f, 0x27, 0x9e, 0x4c, 0xa2, 0x10, 0x77, 0xd1, 0xc2, 0x66, 0x70, 0xa2, + 0x30, 0x72, 0x63, 0x8c, 0x5c, 0x98, 0x13, 0x65, 0x9e, 0x75, 0x50, 0x6b, 0xd4, 0xff, 0xb6, 0x62, + 0x15, 0xf0, 0x48, 0x9e, 0x16, 0x7d, 0xda, 0x20, 0xa8, 0x48, 0x71, 0x53, 0x02, 0x15, 0x29, 0x64, + 0x6a, 0xa6, 0x53, 0x91, 0xb3, 0x30, 0xb3, 0xb7, 0xa3, 0x80, 0x8c, 0x3c, 0x90, 0x68, 0xe2, 0x32, + 0x16, 0xf2, 0x95, 0x29, 0xe8, 0xac, 0x48, 0x6f, 0x7d, 0xc7, 0x1f, 0x72, 0xc1, 0x3c, 0xe9, 0xb5, + 0xaf, 0xc8, 0xb3, 0xac, 0x35, 0x17, 0x97, 0xbd, 0x2a, 0x6c, 0xef, 0x34, 0x24, 0x36, 0x67, 0xbe, + 0x77, 0xc2, 0x86, 0x2c, 0xd6, 0x6d, 0xae, 0x49, 0xb7, 0xfb, 0xf0, 0x5e, 0xc1, 0x14, 0x90, 0x9f, + 0x85, 0x9f, 0x82, 0xfa, 0xc1, 0xce, 0xce, 0xde, 0xfe, 0xce, 0x4e, 0x6d, 0x7f, 0x7b, 0xbf, 0x76, + 0xb8, 0xbb, 0x5b, 0xdf, 0x13, 0x29, 0xae, 0xce, 0x6c, 0x56, 0xde, 0xe5, 0xf3, 0xf4, 0x55, 0x56, + 0xbb, 0x05, 0xef, 0x85, 0xd0, 0xc8, 0x8d, 0xeb, 0xdb, 0xdf, 0x2d, 0x1a, 0x86, 0x7e, 0xa8, 0x06, + 0x8d, 0x3c, 0x6a, 0x10, 0x68, 0x04, 0x68, 0x04, 0x68, 0x04, 0x68, 0x04, 0x68, 0x04, 0x68, 0x04, + 0x68, 0x04, 0x68, 0xe4, 0x2d, 0x34, 0x62, 0x87, 0xb6, 0x4a, 0x2c, 0xb2, 0xd2, 0x1c, 0x90, 0x08, + 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0xc8, 0x5b, 0x48, + 0x64, 0x10, 0x92, 0xf8, 0x98, 0x8a, 0xca, 0x8d, 0x9a, 0xa7, 0x6d, 0x02, 0x93, 0x00, 0x93, 0x00, + 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0xbc, 0x85, 0x49, 0xfe, 0x5f, + 0x72, 0x73, 0x43, 0x43, 0x95, 0x88, 0xe4, 0x71, 0x8b, 0xc0, 0x23, 0xc0, 0x23, 0xc0, 0x23, 0xc0, + 0x23, 0xc0, 0x23, 0xc0, 0x23, 0xc0, 0x23, 0xc0, 0x23, 0x6f, 0xe1, 0x91, 0x11, 0xb1, 0xe7, 0x9a, + 0xea, 0x2a, 0x41, 0xc9, 0x33, 0xcd, 0x02, 0x99, 0x00, 0x99, 0x00, 0x99, 0x00, 0x99, 0x00, 0x99, + 0x00, 0x99, 0x00, 0x99, 0x00, 0x99, 0x24, 0x41, 0x26, 0x01, 0x19, 0x47, 0x54, 0x35, 0x2e, 0x79, + 0xd4, 0x28, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, + 0x50, 0xc9, 0x5b, 0xa8, 0xc4, 0xbf, 0xa3, 0x61, 0xc4, 0xfe, 0x47, 0x29, 0x28, 0x79, 0xda, 0x26, + 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0xc9, + 0x5b, 0x98, 0x64, 0xec, 0x39, 0xea, 0x41, 0xc9, 0x5a, 0xa3, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, + 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0x40, 0x25, 0xaf, 0x0e, 0xb3, 0x3f, 0xe6, 0x8a, + 0x45, 0xd2, 0xd6, 0x5a, 0x04, 0x1e, 0x01, 0x1e, 0x01, 0x1e, 0x01, 0x1e, 0x01, 0x1e, 0x01, 0x1e, + 0x01, 0x1e, 0x01, 0x1e, 0x79, 0x13, 0x8f, 0xe8, 0x28, 0x75, 0x7d, 0xa1, 0x5d, 0x60, 0x13, 0x60, + 0x13, 0x60, 0x13, 0x60, 0x13, 0x60, 0x13, 0x60, 0x13, 0x60, 0x13, 0x60, 0x93, 0x44, 0xd8, 0x44, + 0x6d, 0xb1, 0xeb, 0xb3, 0xad, 0x02, 0x97, 0x00, 0x97, 0x00, 0x97, 0x00, 0x97, 0x00, 0x97, 0x00, + 0x97, 0x00, 0x97, 0x6c, 0x12, 0x2e, 0xd1, 0x7a, 0x95, 0x8e, 0xe0, 0xfd, 0xb1, 0x8b, 0xe7, 0x15, + 0xdc, 0x23, 0x1b, 0x5f, 0xcf, 0xba, 0x25, 0x78, 0xdb, 0xd4, 0xf4, 0x23, 0x78, 0x38, 0xb6, 0xb9, + 0x37, 0x73, 0xfb, 0x67, 0xf3, 0x57, 0x5c, 0xcf, 0x2f, 0xf8, 0xbf, 0x3e, 0x9e, 0x37, 0x5e, 0x80, + 0x8b, 0xb9, 0x9c, 0x71, 0xe0, 0xd2, 0x9f, 0xd6, 0xc8, 0x77, 0x24, 0x6e, 0xf1, 0x5b, 0x6d, 0x04, + 0x77, 0xf0, 0xe9, 0x43, 0x7c, 0xb8, 0x9e, 0x2b, 0x97, 0x3b, 0xf8, 0xa8, 0x37, 0x1e, 0xd1, 0x70, + 0xea, 0x96, 0x24, 0xee, 0xe1, 0xdb, 0x11, 0x78, 0xb6, 0xe5, 0x8d, 0x47, 0x93, 0x8f, 0x7f, 0x28, + 0x80, 0xab, 0xa0, 0x1e, 0xb9, 0x71, 0xa9, 0x35, 0x70, 0xfd, 0x1f, 0x73, 0x9a, 0x5a, 0xdc, 0x65, + 0x3c, 0xd7, 0x98, 0xf8, 0xed, 0x9f, 0x03, 0xe2, 0x46, 0x70, 0x3d, 0x70, 0x3d, 0xb8, 0xfe, 0x73, + 0xdd, 0xed, 0x14, 0xe1, 0xfa, 0xcf, 0xdb, 0x1f, 0x31, 0x85, 0x44, 0x1c, 0x27, 0xa4, 0x91, 0xc4, + 0x25, 0xa0, 0x4f, 0xda, 0x81, 0xc1, 0xc3, 0xe0, 0x4b, 0x66, 0xf0, 0xe2, 0xcb, 0xfb, 0x91, 0xd1, + 0x1f, 0x88, 0xdd, 0x45, 0xce, 0x69, 0xe8, 0x09, 0x53, 0x43, 0xd5, 0xff, 0x7e, 0xad, 0x59, 0x87, + 0xc4, 0x1a, 0x34, 0xad, 0xd3, 0xab, 0x7f, 0x1a, 0x0f, 0xbf, 0x7c, 0x7c, 0xfc, 0xe7, 0x5f, 0xff, + 0xd9, 0x7d, 0xf8, 0x4f, 0xfa, 0x19, 0xbb, 0x2a, 0x80, 0xff, 0x52, 0xe2, 0xbc, 0xe0, 0xb9, 0xe0, + 0xb9, 0xe0, 0xb9, 0xe0, 0xb9, 0x32, 0xf5, 0x5c, 0x1e, 0x1d, 0xfa, 0x9c, 0x11, 0x4e, 0x1d, 0x4b, + 0x09, 0xd5, 0xf3, 0x42, 0x7b, 0xf0, 0x67, 0xf0, 0x67, 0x60, 0x7d, 0xca, 0xc8, 0xfa, 0xac, 0x18, + 0x7c, 0xe0, 0x87, 0xdc, 0x8a, 0x02, 0x4a, 0x1d, 0x25, 0xfe, 0x63, 0xa5, 0x39, 0xb8, 0x0f, 0xb8, + 0x8f, 0x92, 0xb9, 0x0f, 0xe6, 0x50, 0x8f, 0x33, 0x7e, 0x1f, 0xd2, 0x81, 0x8c, 0xfb, 0x10, 0xd8, + 0xea, 0xac, 0x9e, 0xcd, 0x5e, 0x7d, 0x44, 0x22, 0x2a, 0x5f, 0xff, 0xd3, 0xea, 0xff, 0xd6, 0xba, + 0x6c, 0xb7, 0xfa, 0xd7, 0xbd, 0x6e, 0xab, 0x75, 0x22, 0xba, 0x76, 0xe2, 0xdd, 0xdc, 0x48, 0xaa, + 0xec, 0x40, 0xb2, 0x4a, 0x66, 0xde, 0x9f, 0xb8, 0x1b, 0xd7, 0xbb, 0x9f, 0x8e, 0x24, 0x4a, 0x50, + 0xde, 0x17, 0xa3, 0x13, 0xf5, 0xda, 0x45, 0x09, 0x7a, 0xb1, 0x5b, 0x2b, 0xc3, 0x5c, 0xec, 0xd5, + 0x6a, 0xe5, 0x58, 0x52, 0xa5, 0x58, 0x53, 0x07, 0xe5, 0x98, 0x8d, 0xc6, 0x6e, 0x39, 0xa6, 0xa3, + 0x51, 0x8e, 0xe9, 0xd8, 0x29, 0x8b, 0x89, 0x97, 0xa2, 0x1b, 0xe5, 0x98, 0x8b, 0x72, 0xb8, 0xa9, + 0x72, 0x58, 0x77, 0x29, 0x26, 0xe3, 0x73, 0xfb, 0xf7, 0x76, 0xe7, 0x8f, 0x76, 0xd6, 0x05, 0xd6, + 0x57, 0xba, 0x33, 0x38, 0x2d, 0xec, 0x86, 0x0a, 0x4a, 0x03, 0x3c, 0x06, 0x78, 0x0c, 0xf0, 0x18, + 0xe0, 0x31, 0xc0, 0x63, 0x80, 0xc7, 0x00, 0x8f, 0x01, 0x1e, 0x03, 0x3c, 0x06, 0x78, 0x0c, 0xf0, + 0x18, 0xe0, 0x31, 0xc0, 0x63, 0x80, 0xc7, 0x00, 0x8f, 0x01, 0x1e, 0x43, 0x98, 0xc7, 0x78, 0xa7, + 0x70, 0xba, 0xaa, 0xcd, 0xf1, 0x70, 0x92, 0xaa, 0xc6, 0x44, 0x47, 0xf2, 0xdc, 0x45, 0x90, 0x12, + 0xd9, 0xf2, 0x6d, 0x8b, 0x0d, 0x3e, 0xae, 0x9c, 0xb4, 0x7c, 0xf2, 0x8b, 0xad, 0x69, 0xba, 0xfc, + 0x71, 0x71, 0xec, 0x72, 0xf6, 0xe7, 0xf8, 0xf4, 0x65, 0xfa, 0x83, 0x40, 0x91, 0x1d, 0xb2, 0x60, + 0x76, 0x6c, 0xb4, 0xda, 0x74, 0x9c, 0xa8, 0x72, 0xde, 0xfc, 0x54, 0x89, 0x28, 0xe7, 0xcc, 0x1b, + 0x46, 0x15, 0xee, 0x57, 0x98, 0xe7, 0xb0, 0x3b, 0xe6, 0x8c, 0x89, 0x5b, 0x99, 0x9f, 0xc3, 0xac, + 0x2c, 0x3f, 0x4f, 0x90, 0xb8, 0xa9, 0x1b, 0x46, 0xdc, 0xb8, 0x64, 0x08, 0xe2, 0xe6, 0x19, 0xe2, + 0x66, 0x32, 0x2e, 0x05, 0x23, 0x6e, 0x4e, 0x58, 0x28, 0x36, 0xdd, 0x64, 0x38, 0x0c, 0xe9, 0x90, + 0x70, 0x6a, 0x31, 0x47, 0x9e, 0x34, 0x79, 0xd4, 0x9a, 0xe0, 0x60, 0x3f, 0x31, 0xcf, 0x5e, 0x40, + 0x6d, 0x36, 0xb8, 0xaf, 0xf0, 0x5b, 0x5a, 0x71, 0xfd, 0x21, 0xb3, 0x89, 0x5b, 0x59, 0xbc, 0x66, + 0x69, 0x93, 0x13, 0xa3, 0xfd, 0x71, 0xcb, 0xec, 0xdb, 0x6f, 0x1e, 0xbf, 0x65, 0xd1, 0xca, 0x5f, + 0xdc, 0x50, 0xd7, 0xf7, 0x86, 0xd0, 0xa0, 0x91, 0xb1, 0x69, 0x55, 0xb6, 0xad, 0xdc, 0xc6, 0x95, + 0xdb, 0xba, 0x52, 0x9b, 0x97, 0x83, 0x16, 0xf9, 0x6b, 0xd0, 0xb8, 0x94, 0x0c, 0xc4, 0x88, 0xdc, + 0xb5, 0xd0, 0xb7, 0x2f, 0xd1, 0x46, 0x77, 0x21, 0xd0, 0x90, 0x00, 0x26, 0xb0, 0xc1, 0xc7, 0x58, + 0x4b, 0xa1, 0x98, 0x02, 0x17, 0x8a, 0xd1, 0xdc, 0x55, 0x52, 0x34, 0x27, 0x26, 0x94, 0xa1, 0x4c, + 0x20, 0x23, 0xd9, 0x6c, 0xbc, 0xdd, 0xe7, 0x04, 0x26, 0x51, 0x8d, 0x7e, 0x30, 0x6e, 0xdf, 0x52, + 0xc7, 0xba, 0x73, 0x49, 0xf2, 0xee, 0x2e, 0xd6, 0xfc, 0xe3, 0xc7, 0x13, 0x8e, 0x6f, 0x3a, 0x80, + 0x97, 0x3a, 0x28, 0x88, 0x04, 0x81, 0x55, 0xa7, 0x9f, 0xa2, 0x2b, 0x32, 0x5e, 0x5e, 0xda, 0xab, + 0x4b, 0x7b, 0xf1, 0xa7, 0x5e, 0x3b, 0xee, 0x78, 0x4e, 0x19, 0x54, 0x5a, 0x48, 0x56, 0xb5, 0xe7, + 0xab, 0x42, 0x30, 0x8b, 0x9a, 0x3d, 0xbf, 0x19, 0xb9, 0x49, 0xca, 0x25, 0xbd, 0x39, 0xc9, 0x49, + 0xba, 0x25, 0x5f, 0xf4, 0xec, 0xc4, 0xb6, 0x69, 0x14, 0xa5, 0xf3, 0xe4, 0x2f, 0x27, 0x27, 0x2b, + 0x8d, 0x21, 0x19, 0x90, 0x30, 0x22, 0x64, 0x03, 0x62, 0x46, 0x66, 0x7a, 0x3a, 0x30, 0xe9, 0xb5, + 0x78, 0x62, 0xbf, 0x6a, 0x40, 0x7b, 0x10, 0xa4, 0x54, 0xea, 0x59, 0xd6, 0x9a, 0x5b, 0xa8, 0x21, + 0x42, 0x90, 0x32, 0xef, 0x29, 0xd8, 0xa9, 0x1d, 0xee, 0x40, 0x80, 0x72, 0x2d, 0x73, 0x2d, 0xf4, + 0xd5, 0xa6, 0xb3, 0x2c, 0x56, 0xec, 0xf0, 0xfb, 0x9a, 0xdf, 0x7c, 0xd2, 0x1e, 0xb0, 0x07, 0xb0, + 0x07, 0xb0, 0x87, 0x08, 0xf6, 0x98, 0x98, 0x8f, 0xc5, 0x27, 0x6d, 0x2a, 0x60, 0x24, 0x25, 0x9c, + 0xb2, 0xe0, 0x89, 0xfb, 0x6c, 0xbd, 0x98, 0x47, 0x38, 0xbb, 0xa3, 0x8a, 0x72, 0xa7, 0xd5, 0xc6, + 0xe0, 0xbf, 0xe0, 0xbf, 0xe0, 0xbf, 0x90, 0x3b, 0x21, 0x77, 0x42, 0xee, 0x84, 0xdc, 0x09, 0xb9, + 0xd3, 0xa3, 0x61, 0xe6, 0xe1, 0xd8, 0xfb, 0x1e, 0xfb, 0x78, 0x05, 0x77, 0x09, 0xad, 0x36, 0x06, + 0xd4, 0x01, 0xd4, 0x01, 0xd4, 0x91, 0x72, 0xc5, 0x8c, 0x3d, 0x31, 0x39, 0xb2, 0xb5, 0x64, 0xe9, + 0x50, 0xa2, 0x8d, 0x59, 0x77, 0x72, 0xc7, 0x1c, 0xea, 0xa0, 0x98, 0x42, 0x48, 0xa6, 0x18, 0x9a, + 0xa9, 0x1b, 0x2e, 0x2d, 0x50, 0x4d, 0x13, 0x5e, 0xd0, 0x05, 0xdd, 0x74, 0x82, 0x07, 0x85, 0x50, + 0x4e, 0x0b, 0xa4, 0xcb, 0x6a, 0xaa, 0xd4, 0x41, 0xbc, 0x4c, 0x66, 0xeb, 0x5d, 0x31, 0x5a, 0xb9, + 0x7a, 0x97, 0xe3, 0x9a, 0x53, 0xed, 0x8b, 0xc3, 0xd8, 0xf5, 0xa9, 0x73, 0xc7, 0xf5, 0x03, 0x05, + 0x6d, 0xc9, 0x8a, 0x04, 0xaf, 0x35, 0xf8, 0xdf, 0x5f, 0x76, 0x6a, 0x87, 0x5f, 0x6b, 0xd6, 0xce, + 0xd5, 0xbf, 0x3b, 0xb5, 0xaf, 0x35, 0xeb, 0xe0, 0xea, 0x6b, 0xcd, 0x3a, 0xbc, 0xfa, 0xf7, 0x6b, + 0xdd, 0xda, 0x9e, 0xfe, 0xf8, 0xcf, 0xf6, 0xc3, 0xe4, 0x4f, 0x87, 0xb3, 0x3f, 0xd5, 0xdf, 0x37, + 0x66, 0x7f, 0xfe, 0xf5, 0xdb, 0xb7, 0x0f, 0xdf, 0xbe, 0x7d, 0x90, 0x68, 0xe0, 0x3f, 0xd5, 0xbc, + 0x97, 0x5c, 0xd6, 0xd9, 0x8e, 0x20, 0xf6, 0x3a, 0x67, 0x11, 0x6f, 0x72, 0x1e, 0xca, 0xe1, 0xaf, + 0x0b, 0xe6, 0xb5, 0x5c, 0x3a, 0x81, 0x9f, 0x13, 0xf7, 0xe3, 0x8d, 0x5d, 0x57, 0x02, 0x3f, 0x5d, + 0x90, 0x9f, 0xea, 0x1a, 0xeb, 0x84, 0x0e, 0x0d, 0xa9, 0x73, 0x74, 0x3f, 0x6b, 0x0a, 0xf7, 0xc0, + 0x29, 0x2a, 0x73, 0x5d, 0x2d, 0x1b, 0xdd, 0x9a, 0x95, 0xe2, 0x15, 0x40, 0xb1, 0x66, 0x5a, 0x7e, + 0x2b, 0x5c, 0x53, 0x28, 0x74, 0xc0, 0x4a, 0xb6, 0xa4, 0xb0, 0x81, 0x92, 0xc2, 0x5c, 0x73, 0x68, + 0x94, 0x14, 0x26, 0x5d, 0x35, 0x28, 0x29, 0x04, 0x41, 0x05, 0x82, 0x2a, 0x57, 0x2e, 0x06, 0xdb, + 0x62, 0xd9, 0x24, 0xee, 0xd8, 0x16, 0x2b, 0xce, 0x14, 0x60, 0x5b, 0x4c, 0x61, 0xa2, 0x88, 0x92, + 0x42, 0x60, 0x0f, 0x60, 0x0f, 0x94, 0x14, 0xa2, 0xa4, 0xf0, 0xcd, 0x6f, 0x44, 0x49, 0x21, 0xfc, + 0x17, 0xfc, 0x17, 0x72, 0x27, 0xe4, 0x4e, 0xc8, 0x9d, 0x90, 0x3b, 0x21, 0x77, 0x42, 0x49, 0x21, + 0x50, 0x07, 0x50, 0xc7, 0x66, 0xa1, 0x0e, 0x94, 0x14, 0x6a, 0x81, 0x62, 0x0a, 0x21, 0x99, 0x62, + 0x68, 0xa6, 0x6e, 0xb8, 0xb4, 0x40, 0x35, 0x4d, 0x78, 0x41, 0x17, 0x74, 0xd3, 0x09, 0x1e, 0x14, + 0x42, 0x39, 0x2d, 0x90, 0x2e, 0xab, 0xa9, 0x42, 0x49, 0x61, 0x76, 0x10, 0x50, 0xd1, 0x9a, 0x43, + 0x49, 0xa1, 0x48, 0x83, 0x28, 0x29, 0xcc, 0x34, 0xdb, 0x41, 0x49, 0xe1, 0xb3, 0x8d, 0xa1, 0xa4, + 0xf0, 0x99, 0xe7, 0x95, 0x97, 0x14, 0xa6, 0xd0, 0xd1, 0x4c, 0x3f, 0x42, 0x8a, 0xb5, 0xe3, 0x73, + 0x54, 0x1b, 0x15, 0x50, 0xef, 0x9c, 0xbe, 0x9b, 0x87, 0x63, 0x9b, 0x7b, 0xb3, 0x18, 0x72, 0x36, + 0x6f, 0xf9, 0x7a, 0xae, 0xfe, 0x7e, 0xdd, 0x9b, 0xb5, 0xfc, 0x25, 0x71, 0xd6, 0x97, 0x40, 0xce, + 0xf4, 0x9d, 0xc4, 0x70, 0xa7, 0x94, 0xe8, 0x4f, 0x29, 0x83, 0x9a, 0x5a, 0x92, 0x3f, 0xa9, 0x54, + 0xea, 0x73, 0xea, 0xfb, 0x5f, 0xce, 0x9b, 0x6d, 0xf5, 0xf2, 0xfb, 0x50, 0x65, 0x55, 0x43, 0xac, + 0x6c, 0xb6, 0x2a, 0xab, 0x98, 0x9c, 0xf0, 0xda, 0x7c, 0x8b, 0x3a, 0xa6, 0xe7, 0x6c, 0xa6, 0xe5, + 0xd9, 0xae, 0x1f, 0x31, 0x6f, 0x58, 0xb1, 0x7d, 0x8f, 0x13, 0xe6, 0xd1, 0xb0, 0x32, 0xf0, 0xc3, + 0xa9, 0x19, 0x2d, 0x2b, 0x43, 0xa2, 0x58, 0x39, 0x9f, 0xd9, 0xdf, 0x3c, 0x87, 0x70, 0x52, 0xf1, + 0xbd, 0xe7, 0x6c, 0xe9, 0x43, 0xa5, 0xd2, 0xbf, 0xa5, 0x11, 0xad, 0x90, 0x90, 0xc6, 0x8d, 0x44, + 0x9c, 0x78, 0x0e, 0x09, 0x9d, 0x6f, 0xde, 0x79, 0xe3, 0x7d, 0x65, 0xf1, 0xd9, 0x11, 0xbf, 0x77, + 0x69, 0xfc, 0x86, 0xe8, 0x03, 0x24, 0x66, 0x75, 0x12, 0xa2, 0xa8, 0x07, 0xd7, 0x82, 0x5d, 0x24, + 0x83, 0xf1, 0xd5, 0x5b, 0xc1, 0x38, 0x1d, 0xe6, 0x51, 0x80, 0x75, 0xaa, 0x49, 0xb4, 0xd0, 0xdf, + 0x40, 0x35, 0xaf, 0xcf, 0xe2, 0xcb, 0x23, 0xf2, 0x8a, 0xb7, 0xad, 0xde, 0xfa, 0xae, 0x63, 0x71, + 0x36, 0x7a, 0xdb, 0x02, 0x16, 0xc6, 0xb6, 0x7c, 0xe4, 0x8d, 0x51, 0x4e, 0xe6, 0x49, 0x12, 0x7b, + 0x8e, 0x34, 0x9e, 0x62, 0xd5, 0x33, 0xb0, 0x24, 0x57, 0x22, 0xa4, 0xf5, 0x03, 0xc2, 0x76, 0x2f, + 0x6c, 0xe7, 0x4f, 0xed, 0x9a, 0x0d, 0xaa, 0x9a, 0x21, 0x6b, 0xd2, 0xe8, 0x9b, 0x56, 0x0b, 0x5d, + 0x4c, 0x03, 0xbd, 0xe8, 0x00, 0x91, 0x0d, 0x36, 0x12, 0x1e, 0x26, 0x59, 0x86, 0x05, 0x01, 0x87, + 0x8e, 0xff, 0x43, 0x02, 0x13, 0xc6, 0x4f, 0xa7, 0x86, 0x82, 0x03, 0x32, 0x76, 0xe3, 0xa1, 0xaa, + 0x6d, 0xc8, 0xfd, 0xf1, 0x6c, 0x00, 0x14, 0x26, 0x69, 0x26, 0xd9, 0x70, 0x66, 0xf2, 0xb7, 0xc7, + 0x8f, 0x99, 0xc7, 0xb7, 0x1b, 0x12, 0x17, 0xc7, 0x0b, 0x5c, 0x33, 0x24, 0xb9, 0x4d, 0x2a, 0x47, + 0xe9, 0x2a, 0x28, 0x9b, 0x50, 0xb2, 0x97, 0xb6, 0xd8, 0x3b, 0x93, 0x6d, 0x47, 0xe1, 0x46, 0xd9, + 0x83, 0x1c, 0xc1, 0x5d, 0xb8, 0xa1, 0xdd, 0x69, 0x1c, 0xee, 0x1c, 0xee, 0xed, 0x37, 0x0e, 0x77, + 0x0b, 0x34, 0xc6, 0x19, 0x91, 0xf5, 0x57, 0x05, 0x38, 0x0a, 0x3f, 0x0e, 0xc4, 0x43, 0xf5, 0x38, + 0x40, 0xa0, 0x46, 0xa0, 0x46, 0xa0, 0x46, 0xa0, 0x46, 0xa0, 0x46, 0xa0, 0x46, 0xa0, 0xd6, 0xc5, + 0xd2, 0x26, 0x4c, 0xd4, 0x5b, 0x3f, 0xe3, 0xe1, 0xd4, 0x76, 0x31, 0xf9, 0x4a, 0x4c, 0xf1, 0x6d, + 0x8b, 0xfe, 0xe4, 0x1f, 0x39, 0x75, 0xe9, 0x88, 0xf2, 0xf0, 0xde, 0xf2, 0x3d, 0xcb, 0xbe, 0x15, + 0x28, 0x2f, 0x7a, 0x12, 0x5f, 0x06, 0xc4, 0x8d, 0x64, 0x88, 0x92, 0xea, 0xc6, 0x5c, 0x25, 0xba, + 0x60, 0x87, 0x53, 0xc9, 0x2a, 0x29, 0xba, 0x4c, 0x34, 0x95, 0x7c, 0x92, 0x90, 0x6c, 0x92, 0x30, + 0x0b, 0xd9, 0x00, 0x0b, 0x09, 0x16, 0x12, 0x2c, 0x24, 0x92, 0x1b, 0x24, 0x37, 0x48, 0x6e, 0x90, + 0xdc, 0x20, 0xb9, 0x41, 0x72, 0x03, 0x16, 0x12, 0x81, 0x1a, 0x81, 0x1a, 0x81, 0x1a, 0x81, 0x1a, + 0x81, 0x1a, 0x81, 0x1a, 0x81, 0x5a, 0x6f, 0xa2, 0x9e, 0x27, 0x15, 0x96, 0xe2, 0x38, 0x90, 0xf6, + 0x73, 0x28, 0x99, 0x95, 0xbe, 0x26, 0xad, 0x13, 0xad, 0xbc, 0x56, 0xfb, 0xfa, 0x9b, 0xef, 0x3a, + 0xfd, 0x49, 0x1b, 0x1a, 0x6a, 0x5f, 0x67, 0x6f, 0x4b, 0x58, 0xf6, 0x1a, 0xff, 0xeb, 0x64, 0x15, + 0xaf, 0x35, 0x54, 0xbc, 0xaa, 0x00, 0x49, 0xd9, 0x57, 0xbc, 0x26, 0x06, 0x39, 0x8b, 0xd1, 0x76, + 0x29, 0x19, 0x84, 0x34, 0xd1, 0x78, 0xcf, 0x99, 0xe3, 0x04, 0x30, 0xa6, 0xda, 0x9d, 0xd9, 0xdb, + 0x87, 0x0f, 0x33, 0x1a, 0x7d, 0x2b, 0x5e, 0x7e, 0x1a, 0x8c, 0x20, 0xf4, 0xc7, 0x3c, 0xe9, 0x79, + 0x99, 0x45, 0xaf, 0x57, 0x1f, 0x32, 0xa3, 0x08, 0x3c, 0xe1, 0xf1, 0x10, 0xf3, 0x8c, 0x22, 0xd9, + 0xf1, 0x0e, 0x14, 0x82, 0xe3, 0xa4, 0xa0, 0xf2, 0xe4, 0xd5, 0xe8, 0x93, 0x82, 0x72, 0x07, 0x04, + 0x45, 0xce, 0x05, 0x1a, 0xca, 0xd0, 0xe0, 0x60, 0x9d, 0x92, 0xe5, 0x6e, 0x0c, 0x4b, 0x23, 0xa8, + 0x18, 0x26, 0xa3, 0x14, 0x26, 0xa7, 0x10, 0xa6, 0x42, 0x26, 0x8d, 0x79, 0xbc, 0xbe, 0x07, 0x6d, + 0x56, 0x75, 0xd4, 0x95, 0x62, 0x9e, 0x45, 0x35, 0x95, 0xa5, 0x83, 0x6e, 0x51, 0x40, 0x6d, 0x29, + 0xa5, 0xb8, 0x74, 0x4f, 0xc1, 0xde, 0xee, 0xee, 0xf6, 0x2e, 0xc4, 0x59, 0xe5, 0xd8, 0x30, 0xc9, + 0x45, 0xa3, 0xc0, 0xf7, 0x45, 0x3c, 0x64, 0xde, 0x50, 0x85, 0x46, 0xe4, 0x01, 0xf8, 0xc6, 0x5c, + 0xf9, 0xc6, 0x95, 0xac, 0x3c, 0x87, 0xe2, 0x3b, 0x16, 0xdc, 0xed, 0xa4, 0xcf, 0xfc, 0xe2, 0xa7, + 0x4a, 0x72, 0x00, 0x38, 0xd8, 0xcc, 0xd2, 0xbb, 0xc0, 0x98, 0x9c, 0x8f, 0x38, 0x4e, 0x48, 0xa3, + 0x88, 0x46, 0xe2, 0x89, 0xdf, 0xb2, 0x89, 0xcd, 0x90, 0x55, 0x61, 0x01, 0x72, 0x3f, 0xc9, 0x45, + 0x9f, 0x4d, 0xe6, 0x27, 0x7e, 0xc5, 0xe6, 0x74, 0x45, 0x2b, 0xb8, 0x5e, 0x73, 0xd6, 0x90, 0x9c, + 0x50, 0x7b, 0xbd, 0x24, 0x42, 0xed, 0x42, 0x86, 0xa3, 0xca, 0x80, 0x94, 0x1b, 0x92, 0x72, 0x83, + 0x52, 0x69, 0x58, 0x72, 0x98, 0x5d, 0x54, 0x28, 0x54, 0xd4, 0xe0, 0x16, 0x0d, 0xa4, 0x24, 0xcb, + 0xdf, 0x5c, 0x74, 0xa9, 0x48, 0x74, 0x4d, 0x66, 0xa8, 0xcc, 0x1c, 0x55, 0x9a, 0xa5, 0x72, 0xf3, + 0x54, 0x6d, 0xa6, 0xda, 0xcc, 0x55, 0x9b, 0xd9, 0xea, 0x30, 0x5f, 0x45, 0x89, 0xbb, 0xe4, 0x7a, + 0x93, 0x35, 0xeb, 0x95, 0x7c, 0x48, 0xdd, 0xba, 0x58, 0x66, 0x4b, 0xaa, 0x16, 0x84, 0x62, 0x4e, + 0x48, 0x95, 0xb9, 0xeb, 0x30, 0x7b, 0x6d, 0xe6, 0xaf, 0xcb, 0x0d, 0x68, 0x77, 0x07, 0xda, 0xdd, + 0x82, 0x4e, 0xf7, 0xa0, 0xc6, 0x4d, 0x28, 0x72, 0x17, 0x8b, 0x8e, 0x4a, 0x5f, 0xd9, 0xf2, 0x2a, + 0x43, 0x62, 0xc9, 0x61, 0xeb, 0xd7, 0x59, 0x3b, 0x85, 0x6d, 0xaa, 0xd6, 0xcc, 0x5f, 0x34, 0xfc, + 0xdf, 0x5f, 0x7e, 0x59, 0x68, 0xdd, 0xcf, 0xd4, 0xed, 0xff, 0xad, 0xc7, 0xff, 0x33, 0xfd, 0xb9, + 0x11, 0xcb, 0xe2, 0xcf, 0x7e, 0xde, 0xfd, 0x5a, 0xb3, 0x76, 0x63, 0xcd, 0xfc, 0x5f, 0xff, 0xd9, + 0x7e, 0x48, 0xff, 0xe0, 0x7f, 0xd4, 0x2d, 0xd2, 0xab, 0x82, 0x5c, 0x17, 0xa1, 0x62, 0x4f, 0x62, + 0xea, 0x82, 0x2c, 0x97, 0x7a, 0xc3, 0x98, 0x9b, 0x54, 0x1c, 0xdb, 0x1e, 0x37, 0x8f, 0x30, 0x87, + 0x30, 0x87, 0x30, 0xb7, 0x41, 0x61, 0x6e, 0xcc, 0x3c, 0x7e, 0xa0, 0x21, 0xbe, 0xed, 0x2a, 0x6c, + 0x52, 0xed, 0x15, 0x5d, 0xf3, 0xff, 0xd4, 0x5a, 0x53, 0x45, 0xd7, 0x95, 0x5d, 0x9a, 0x7c, 0xea, + 0x5a, 0xf3, 0x8a, 0x77, 0xf8, 0xd7, 0xda, 0xd7, 0x78, 0x39, 0x94, 0x62, 0x6b, 0x7b, 0x3c, 0xa5, + 0x1a, 0xae, 0xf6, 0xca, 0x7a, 0x4a, 0xb7, 0x1b, 0x06, 0xcf, 0xe9, 0xbb, 0x62, 0xb6, 0x56, 0x18, + 0x84, 0x99, 0x2b, 0x6b, 0x23, 0x79, 0x01, 0xd0, 0x5a, 0x7b, 0x6a, 0x36, 0xe1, 0x27, 0xa9, 0xdb, + 0xd6, 0x62, 0xc7, 0x70, 0xfe, 0x53, 0xaa, 0xbd, 0x79, 0xf5, 0xc3, 0x2d, 0x73, 0xf2, 0x4e, 0x01, + 0xa7, 0xa5, 0x8e, 0xcb, 0x52, 0x75, 0x84, 0x0f, 0x54, 0x75, 0x91, 0x40, 0x3b, 0xa8, 0xea, 0xec, + 0xc1, 0xb8, 0xc0, 0x69, 0xa6, 0xc4, 0xf4, 0xd2, 0xbe, 0x9a, 0xab, 0x18, 0x9f, 0x9c, 0x86, 0x92, + 0x9d, 0xbc, 0x7c, 0xdc, 0x67, 0x3a, 0x7d, 0xb2, 0x37, 0x67, 0x2b, 0x8d, 0x6e, 0xd9, 0x9b, 0xf3, + 0xa4, 0xca, 0x89, 0x36, 0xe0, 0x44, 0xe1, 0x44, 0x0d, 0x72, 0xa2, 0xd8, 0xef, 0xcb, 0x13, 0x33, + 0xe9, 0x30, 0x7b, 0x6d, 0xe6, 0xaf, 0xcb, 0x0d, 0x68, 0x77, 0x07, 0xda, 0xdd, 0x82, 0x4e, 0xf7, + 0xa0, 0x36, 0x65, 0xc6, 0x7e, 0x1f, 0xf6, 0xfb, 0xb0, 0xdf, 0x97, 0x68, 0x0e, 0xfc, 0x90, 0x0d, + 0x55, 0x9e, 0x04, 0x5b, 0xb8, 0xe3, 0x69, 0xbb, 0x08, 0x6c, 0x08, 0x6c, 0x08, 0x6c, 0x1b, 0x15, + 0xd8, 0xe6, 0x61, 0xcd, 0x52, 0xea, 0x02, 0x1e, 0x45, 0xb7, 0x1d, 0x85, 0x6d, 0xb6, 0xbc, 0xf1, + 0x68, 0x32, 0x14, 0x0f, 0x28, 0xe2, 0x48, 0x3a, 0xc7, 0x28, 0xe2, 0x80, 0x8b, 0x87, 0x8b, 0xdf, + 0x58, 0x17, 0x8f, 0x22, 0x0e, 0x85, 0xeb, 0x11, 0x45, 0x1c, 0x2f, 0xb7, 0x8f, 0x22, 0x8e, 0xdc, + 0xa6, 0x14, 0x45, 0x1c, 0xea, 0x5b, 0x43, 0x11, 0x87, 0x71, 0x45, 0x1c, 0x29, 0x24, 0x5d, 0xd5, + 0x8f, 0xb6, 0xcc, 0x26, 0xe4, 0x5d, 0x18, 0x2a, 0xac, 0xe2, 0x88, 0x5b, 0xc3, 0x91, 0xc3, 0xcc, + 0x70, 0x3c, 0xb6, 0x20, 0xb1, 0x05, 0xf9, 0xaa, 0x69, 0x5b, 0xc3, 0xd0, 0x1f, 0x6b, 0xd8, 0x8a, + 0x5c, 0x69, 0x5b, 0x6d, 0x5a, 0x5f, 0x47, 0x5a, 0x8f, 0xb4, 0x1e, 0x69, 0xbd, 0x7c, 0x47, 0x55, + 0xb9, 0x91, 0x45, 0x83, 0x8a, 0x04, 0x0a, 0x5e, 0x34, 0x02, 0x25, 0x82, 0x05, 0x9a, 0xdd, 0x8a, + 0x36, 0xf7, 0xa2, 0xd3, 0xcd, 0x68, 0x77, 0x37, 0xba, 0xdd, 0x4e, 0x66, 0xee, 0x27, 0x33, 0x37, + 0x94, 0x85, 0x3b, 0xd2, 0x94, 0xe5, 0x2a, 0x5e, 0xef, 0xaa, 0xdd, 0xd4, 0xa2, 0x61, 0x62, 0xdb, + 0x34, 0xe0, 0xd6, 0xc8, 0x77, 0x34, 0x2e, 0xc8, 0x85, 0xd8, 0xd1, 0xca, 0xcb, 0x34, 0xad, 0x94, + 0x95, 0xdb, 0xc0, 0xe2, 0xeb, 0x87, 0x75, 0xbd, 0x47, 0x33, 0x6f, 0xa4, 0xcb, 0x71, 0x66, 0xe1, + 0x40, 0x33, 0x73, 0xa4, 0x59, 0x39, 0xd4, 0xcc, 0x1d, 0x6b, 0xe6, 0x0e, 0x36, 0x4b, 0x47, 0xab, + 0xc7, 0xe1, 0x6a, 0x72, 0xbc, 0x8b, 0x81, 0x51, 0xbe, 0xfd, 0xf3, 0xa2, 0xb5, 0xdc, 0xf8, 0xbe, + 0x4b, 0x89, 0xa7, 0xd3, 0x5e, 0xe6, 0x68, 0xaf, 0xfe, 0xce, 0x8c, 0x89, 0xd5, 0xb1, 0xab, 0x40, + 0x9c, 0x3b, 0x1a, 0x72, 0x16, 0xd1, 0xc9, 0x72, 0x9f, 0x72, 0x9b, 0x77, 0xc4, 0xcd, 0x20, 0x06, + 0x3e, 0xff, 0x5e, 0xfd, 0xe1, 0xb0, 0x5e, 0xab, 0x21, 0x18, 0x22, 0x18, 0x22, 0x18, 0x22, 0x18, + 0x9a, 0x13, 0x0c, 0xa5, 0xef, 0x98, 0x48, 0xea, 0xbb, 0xf6, 0x34, 0xbe, 0x42, 0x4f, 0xf1, 0xc4, + 0xd3, 0xff, 0xf4, 0x9a, 0x7b, 0x45, 0x77, 0x71, 0x45, 0xc6, 0x41, 0x65, 0xed, 0x75, 0xf3, 0x9d, + 0xfa, 0x7a, 0x46, 0xef, 0xcb, 0x60, 0xe3, 0x3e, 0x23, 0x77, 0xf0, 0x78, 0x89, 0x90, 0x9f, 0xa5, + 0x5f, 0x22, 0x3b, 0xb5, 0xc3, 0xdd, 0x12, 0xaf, 0x92, 0x77, 0x66, 0xb6, 0x7e, 0xb5, 0xc1, 0xc9, + 0x4c, 0x10, 0x52, 0x3a, 0x0a, 0xb8, 0xfe, 0xec, 0x65, 0xfe, 0x22, 0xfd, 0xe9, 0xca, 0x04, 0xdf, + 0x21, 0x5f, 0x41, 0xbe, 0x82, 0x7c, 0x05, 0xf9, 0x8a, 0x39, 0xf9, 0x0a, 0xc8, 0xbb, 0x2c, 0xe3, + 0x9d, 0xe5, 0x50, 0x97, 0xdc, 0x67, 0x16, 0xf5, 0x66, 0xaf, 0xd3, 0x1f, 0xfb, 0x40, 0xd4, 0x21, + 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x19, 0x14, 0xf8, 0x40, 0xd4, 0x25, 0xfe, 0x0f, 0x44, 0x9d, 0x12, + 0x16, 0xa6, 0x06, 0xa2, 0x4e, 0x6a, 0x89, 0x6c, 0x00, 0x51, 0xb7, 0xbd, 0x57, 0xab, 0x81, 0xa8, + 0x2b, 0x5a, 0xeb, 0x9b, 0x4d, 0xd4, 0x31, 0x3f, 0x64, 0x3c, 0x93, 0x9c, 0x65, 0xf6, 0x26, 0x54, + 0x16, 0x20, 0x61, 0x41, 0xc2, 0x82, 0x84, 0x05, 0x09, 0x4b, 0x45, 0xa7, 0xea, 0xc2, 0x4b, 0xae, + 0x6b, 0x17, 0xf9, 0x0a, 0xf2, 0x15, 0x14, 0x16, 0x20, 0x5f, 0x49, 0xb0, 0x44, 0x1a, 0xbb, 0x3b, + 0x48, 0x57, 0x90, 0xae, 0x14, 0x27, 0x5d, 0xb9, 0x63, 0x21, 0x1f, 0x13, 0xd7, 0x92, 0xbd, 0xee, + 0x3c, 0x71, 0x54, 0x7e, 0xfa, 0x42, 0xa4, 0x15, 0x48, 0x2b, 0x90, 0x56, 0x20, 0xad, 0x30, 0x26, + 0xad, 0x58, 0xea, 0x75, 0x66, 0x51, 0x03, 0x70, 0xa8, 0xf1, 0x1d, 0xb3, 0x31, 0x33, 0x3e, 0xb7, + 0xd0, 0x2c, 0x11, 0xfe, 0xe6, 0x1c, 0x1d, 0x64, 0xf0, 0x2e, 0x5d, 0x92, 0xe2, 0x2f, 0xbe, 0xd0, + 0x54, 0xa9, 0xf1, 0x6c, 0x41, 0x5e, 0x46, 0xf9, 0x51, 0xb6, 0x46, 0xb4, 0x07, 0x23, 0x52, 0x6b, + 0x44, 0xc4, 0x1a, 0x34, 0xad, 0xd3, 0xab, 0x7f, 0xea, 0xef, 0x77, 0x1e, 0x3e, 0xfe, 0xfa, 0xcf, + 0xfe, 0xc3, 0xd3, 0x5f, 0xfe, 0xfb, 0xdc, 0x3f, 0xab, 0xbf, 0xdf, 0x7f, 0xf8, 0xf8, 0xc2, 0xdf, + 0xec, 0x3d, 0x7c, 0x4c, 0xd8, 0xc6, 0xee, 0xc3, 0x2f, 0x6b, 0xff, 0x74, 0xf2, 0xfb, 0xc6, 0x4b, + 0x0f, 0xec, 0xbc, 0xf0, 0xc0, 0xf6, 0x4b, 0x0f, 0x6c, 0xbf, 0xf0, 0xc0, 0x8b, 0x9f, 0xd4, 0x78, + 0xe1, 0x81, 0xdd, 0x87, 0x7f, 0xd7, 0xfe, 0xfd, 0x2f, 0xcf, 0xff, 0xd3, 0xbd, 0x87, 0x5f, 0xff, + 0x7d, 0xe9, 0xef, 0xf6, 0x1f, 0xfe, 0xfd, 0xf8, 0x6b, 0x09, 0x5c, 0x8a, 0x69, 0xf9, 0xae, 0x26, + 0x64, 0x77, 0xce, 0x22, 0xde, 0xe4, 0x3c, 0xd4, 0x8b, 0xee, 0x2e, 0x98, 0xd7, 0x72, 0xe3, 0x13, + 0xbb, 0x93, 0x1c, 0xd8, 0x1b, 0xbb, 0xae, 0x46, 0xe0, 0x75, 0x41, 0x7e, 0x66, 0xf7, 0xb2, 0x4e, + 0xe8, 0xd0, 0x90, 0x3a, 0x47, 0xf7, 0xb3, 0x57, 0x81, 0xec, 0xb0, 0x62, 0x1d, 0xcb, 0xd0, 0x62, + 0x4e, 0x76, 0x74, 0xc7, 0xf2, 0x95, 0x20, 0x3c, 0x40, 0x78, 0x80, 0xf0, 0x00, 0xe1, 0x61, 0x0c, + 0xe1, 0x81, 0x7d, 0xd4, 0x02, 0xa5, 0x69, 0xd8, 0x47, 0x55, 0xf7, 0x3e, 0xec, 0xa3, 0x1a, 0xbb, + 0x44, 0x1a, 0xbb, 0x38, 0x9f, 0xbd, 0x29, 0x79, 0xe5, 0x86, 0x09, 0x41, 0x2a, 0x96, 0xfb, 0x5f, + 0x6b, 0x5f, 0xab, 0xfc, 0xff, 0x5d, 0x18, 0x06, 0x5b, 0x4b, 0x4d, 0xec, 0xd9, 0xbd, 0xe4, 0xd5, + 0x82, 0xde, 0x2f, 0xa1, 0x70, 0xea, 0xaa, 0x8b, 0x61, 0xb2, 0x78, 0x48, 0xec, 0xef, 0xcc, 0xd3, + 0xa8, 0x10, 0xfc, 0xcc, 0xbb, 0xa0, 0x16, 0x0c, 0xb5, 0xe0, 0xbc, 0xb3, 0x44, 0xa8, 0x05, 0x67, + 0x16, 0x24, 0xb4, 0xa9, 0x05, 0x6b, 0x12, 0x37, 0x5f, 0x33, 0x26, 0x2d, 0x22, 0xe7, 0x9a, 0xdd, + 0x17, 0xc8, 0x30, 0x90, 0x61, 0x20, 0xc3, 0x8a, 0x48, 0x86, 0xe9, 0x72, 0x87, 0x8b, 0x17, 0xcc, + 0xcf, 0x5a, 0x59, 0x0e, 0xb5, 0x43, 0x3a, 0x9b, 0x03, 0xcd, 0xeb, 0xf9, 0xe9, 0x39, 0xaf, 0x95, + 0x77, 0x6b, 0x5e, 0x67, 0x19, 0x08, 0x55, 0x64, 0x4c, 0x20, 0x68, 0x77, 0xd9, 0x59, 0xba, 0xee, + 0xcc, 0x5d, 0x78, 0xd6, 0xae, 0x3c, 0x37, 0x97, 0x9e, 0x9b, 0x6b, 0xcf, 0xc3, 0xc5, 0x67, 0x44, + 0x37, 0x69, 0xb6, 0x37, 0xed, 0xfb, 0x20, 0x6b, 0xd6, 0xa6, 0x7b, 0x3f, 0xe4, 0xa9, 0x6b, 0xcc, + 0x80, 0xe9, 0xcc, 0x68, 0x7f, 0x64, 0xfe, 0x5f, 0x36, 0xde, 0xa3, 0x92, 0xf5, 0x7e, 0x49, 0xc6, + 0x31, 0x6d, 0xed, 0xb5, 0x19, 0xeb, 0x66, 0x2c, 0xde, 0x9b, 0x03, 0x45, 0x9e, 0x91, 0x77, 0x79, + 0xbc, 0x94, 0x32, 0xdc, 0x57, 0x29, 0xca, 0x52, 0xca, 0xec, 0xbc, 0x5a, 0x21, 0x16, 0xd3, 0xbb, + 0x72, 0xbc, 0xc5, 0xd4, 0xba, 0x44, 0x8d, 0xc6, 0x5c, 0x8d, 0x89, 0xf2, 0xe5, 0x0e, 0x47, 0x76, + 0xd9, 0xdb, 0xd3, 0x17, 0x23, 0x9d, 0x42, 0x3a, 0x85, 0x74, 0x0a, 0xe9, 0x14, 0xd2, 0xa9, 0x99, + 0xb5, 0xb9, 0x94, 0x0c, 0x42, 0x3a, 0xc8, 0xf2, 0xac, 0xc9, 0x7e, 0x36, 0x67, 0x4d, 0x66, 0x1b, + 0xec, 0xb6, 0xc5, 0x06, 0x1f, 0x57, 0x36, 0xd4, 0x9f, 0xfc, 0x62, 0xf6, 0x67, 0x6f, 0x32, 0x1c, + 0x46, 0x2f, 0x9d, 0x4c, 0x0a, 0xf5, 0x57, 0x13, 0xbb, 0xcc, 0x6a, 0xe8, 0x57, 0x53, 0x80, 0xec, + 0x5f, 0x9a, 0x49, 0x01, 0x7f, 0x06, 0xe8, 0xce, 0xa8, 0x1d, 0x05, 0xcd, 0x55, 0x38, 0x8b, 0xf7, + 0x64, 0x5a, 0x8d, 0xb3, 0x5e, 0x37, 0xa2, 0xa5, 0x40, 0x47, 0xdf, 0x8c, 0xeb, 0x38, 0x14, 0x12, + 0x71, 0xc2, 0x33, 0xb8, 0x19, 0x77, 0xfa, 0x1a, 0xc3, 0xf7, 0xbb, 0x1b, 0xd8, 0xef, 0x2e, 0x0c, + 0xaa, 0xc7, 0x7e, 0xf7, 0xe6, 0x46, 0x27, 0xec, 0x77, 0xab, 0x1d, 0x4e, 0xec, 0x77, 0x83, 0xa0, + 0x01, 0x41, 0x03, 0x82, 0x06, 0x04, 0xcd, 0x33, 0xd6, 0x86, 0xfd, 0x6e, 0xd9, 0xff, 0xb0, 0xdf, + 0xad, 0xe5, 0xb5, 0xd8, 0xef, 0xd6, 0x4d, 0x76, 0x61, 0xbf, 0xbb, 0xd4, 0x8b, 0x09, 0xfb, 0xdd, + 0xb9, 0x7e, 0x3f, 0xf6, 0xbb, 0x91, 0x4e, 0x21, 0x9d, 0x42, 0x3a, 0x85, 0x74, 0x6a, 0x93, 0xd2, + 0x29, 0xec, 0x77, 0x63, 0xbf, 0x5b, 0x2c, 0xb1, 0xc3, 0x7e, 0xb7, 0x51, 0xe8, 0x0e, 0xfb, 0xdd, + 0xcf, 0xbc, 0x27, 0xef, 0xfd, 0xee, 0xe9, 0x36, 0x2c, 0x84, 0x4a, 0x8a, 0xbf, 0x64, 0xf2, 0x5e, + 0x2a, 0x55, 0x2d, 0xb5, 0x06, 0xe1, 0xd8, 0xe6, 0xde, 0x0c, 0x09, 0x9c, 0xcd, 0xdf, 0x79, 0x7d, + 0x19, 0x7f, 0xf0, 0x17, 0x97, 0x78, 0xd7, 0x67, 0xc1, 0xdd, 0xce, 0x75, 0x73, 0xfa, 0x95, 0xd7, + 0x5f, 0xc2, 0x30, 0xf8, 0x34, 0xf9, 0xbe, 0xeb, 0xc5, 0xbf, 0xed, 0xcf, 0x3f, 0x6f, 0x03, 0x34, + 0x55, 0xf4, 0x94, 0x66, 0x68, 0x2d, 0xc9, 0xd0, 0xae, 0x9c, 0xd2, 0x80, 0x72, 0x4a, 0x66, 0x09, + 0x25, 0x94, 0x53, 0xca, 0x17, 0xb5, 0xb4, 0x29, 0xa7, 0x10, 0xdb, 0xa6, 0x01, 0xb7, 0x46, 0xbe, + 0x93, 0x41, 0x35, 0xd9, 0xea, 0xcb, 0xf4, 0x5f, 0xff, 0x3a, 0x20, 0x6e, 0x44, 0x21, 0x5c, 0x9c, + 0x1b, 0x63, 0x87, 0xda, 0x35, 0xe3, 0x18, 0x39, 0xd4, 0xae, 0xe5, 0xc6, 0xb8, 0x2d, 0xac, 0xe5, + 0xc6, 0xf7, 0x5d, 0x4a, 0xbc, 0x2c, 0xae, 0x69, 0xaa, 0x6f, 0x70, 0x01, 0x35, 0x71, 0xee, 0x68, + 0xc8, 0x59, 0x14, 0xf3, 0x44, 0xd3, 0xdc, 0xec, 0x8e, 0xb8, 0x19, 0xc4, 0xc0, 0xe7, 0xdf, 0x8b, + 0xdb, 0xd0, 0x11, 0x0c, 0x11, 0x0c, 0x11, 0x0c, 0x11, 0x0c, 0x2b, 0x4f, 0xab, 0xf8, 0xea, 0x7b, + 0x19, 0xc4, 0xc2, 0x3d, 0xc8, 0xf8, 0xbf, 0xdd, 0x11, 0xc8, 0xf8, 0xab, 0x7b, 0x1f, 0x64, 0xfc, + 0x8d, 0x5d, 0x22, 0x3b, 0xb5, 0x43, 0xe8, 0xf8, 0x17, 0xae, 0xf5, 0x4d, 0xbe, 0x0f, 0xdd, 0x1e, + 0x87, 0xe1, 0x24, 0x9d, 0x98, 0x1f, 0x42, 0xca, 0x40, 0x09, 0xf9, 0xe9, 0x1b, 0x91, 0x5a, 0x20, + 0xb5, 0x40, 0x6a, 0x81, 0xd4, 0xc2, 0xa8, 0xd4, 0x02, 0x17, 0x84, 0x21, 0xb3, 0xc8, 0x0c, 0x36, + 0xd6, 0x90, 0x59, 0x20, 0xb3, 0x78, 0x7d, 0x89, 0xe0, 0x82, 0x30, 0x24, 0x16, 0x85, 0x4a, 0x2c, + 0x82, 0x90, 0xd2, 0x51, 0xc0, 0xf5, 0xe7, 0x13, 0xf3, 0x17, 0xe9, 0xdf, 0x07, 0x99, 0xa0, 0x3b, + 0x64, 0x2b, 0xc8, 0x56, 0x90, 0xad, 0x20, 0x5b, 0x31, 0x27, 0x5b, 0x41, 0x55, 0x40, 0x96, 0xf1, + 0xce, 0x72, 0xa8, 0x4b, 0xee, 0x33, 0x8b, 0x7a, 0xb3, 0xd7, 0xe9, 0x8f, 0x7d, 0xa8, 0x00, 0x40, + 0xe0, 0x43, 0xe0, 0x43, 0xe0, 0x33, 0x28, 0xf0, 0xa1, 0x02, 0x20, 0xf1, 0x7f, 0xe0, 0xe9, 0x94, + 0x90, 0x30, 0xe0, 0xe9, 0xe4, 0x96, 0xc8, 0x06, 0xf0, 0x74, 0xdb, 0x7b, 0xb5, 0x1a, 0x88, 0xba, + 0xa2, 0xb5, 0xbe, 0xd9, 0x44, 0x5d, 0x56, 0x3b, 0xff, 0xba, 0x77, 0xfc, 0x51, 0xb2, 0x8c, 0x84, + 0x05, 0x09, 0x0b, 0x12, 0x16, 0x93, 0x13, 0x16, 0xd4, 0x15, 0x20, 0x5f, 0xc9, 0x0c, 0x8c, 0xa2, + 0x62, 0x19, 0xf9, 0xca, 0x1b, 0x4b, 0x24, 0x33, 0x81, 0x50, 0xa4, 0x2b, 0x48, 0x57, 0x92, 0x2c, + 0x93, 0x3b, 0x16, 0xf2, 0x31, 0x71, 0xad, 0x99, 0xb0, 0x8d, 0xfe, 0xac, 0xe5, 0xe9, 0x0b, 0x91, + 0x56, 0x20, 0xad, 0x40, 0x5a, 0x81, 0xb4, 0xc2, 0x98, 0xb4, 0x82, 0x05, 0x9a, 0x7d, 0xd7, 0xaa, + 0xff, 0xaa, 0x1f, 0x6a, 0x7c, 0xc7, 0x6c, 0xcc, 0x8c, 0xcf, 0x2d, 0x96, 0x33, 0x73, 0xb7, 0x93, + 0xc1, 0xdc, 0xac, 0xcd, 0xd1, 0x41, 0x36, 0xfa, 0xa8, 0x9c, 0x86, 0x5e, 0x66, 0x77, 0x4e, 0x54, + 0xff, 0xfb, 0xcb, 0x2f, 0x5f, 0x6b, 0xd6, 0xe1, 0xd5, 0xbf, 0x5f, 0xeb, 0xd6, 0xe1, 0xd5, 0xf4, + 0xc7, 0x7a, 0xfc, 0x3f, 0xd3, 0x9f, 0x1b, 0x5f, 0x6b, 0xd6, 0xce, 0xfc, 0xe7, 0xdd, 0xaf, 0x35, + 0x6b, 0xf7, 0xea, 0xd7, 0x6f, 0xdf, 0x3e, 0xfc, 0xfa, 0xcf, 0xf6, 0x43, 0xfa, 0x07, 0xff, 0x53, + 0x35, 0x5d, 0xe5, 0xfd, 0x7d, 0x89, 0x8c, 0x68, 0x0f, 0x46, 0xa4, 0xd6, 0x88, 0x88, 0x35, 0x68, + 0x5a, 0xa7, 0x57, 0xff, 0xd4, 0xdf, 0xef, 0x3c, 0x7c, 0xfc, 0xf5, 0x9f, 0xfd, 0x87, 0xa7, 0xbf, + 0xfc, 0xf7, 0xb9, 0x7f, 0x56, 0x7f, 0xbf, 0xff, 0xf0, 0xf1, 0x85, 0xbf, 0xd9, 0x7b, 0xf8, 0x98, + 0xb0, 0x8d, 0xdd, 0x87, 0x5f, 0xd6, 0xfe, 0xe9, 0xe4, 0xf7, 0x8d, 0x97, 0x1e, 0xd8, 0x79, 0xe1, + 0x81, 0xed, 0x97, 0x1e, 0xd8, 0x7e, 0xe1, 0x81, 0x17, 0x3f, 0xa9, 0xf1, 0xc2, 0x03, 0xbb, 0x0f, + 0xff, 0xae, 0xfd, 0xfb, 0x5f, 0x9e, 0xff, 0xa7, 0x7b, 0x0f, 0xbf, 0xfe, 0xfb, 0xd2, 0xdf, 0xed, + 0x3f, 0xfc, 0xfb, 0xf1, 0xd7, 0x12, 0xb8, 0x14, 0xd3, 0xf2, 0x5d, 0x4d, 0xc8, 0x2e, 0x13, 0x9d, + 0xec, 0x4c, 0xf5, 0xb1, 0x33, 0xd5, 0xc5, 0xce, 0x46, 0x0f, 0xdb, 0x2c, 0xb2, 0x23, 0x16, 0xf8, + 0x0d, 0x2d, 0xe6, 0x64, 0x47, 0x77, 0x2c, 0x5f, 0x09, 0xc2, 0x03, 0x84, 0x07, 0x08, 0x0f, 0x10, + 0x1e, 0xc6, 0x10, 0x1e, 0xd8, 0x47, 0x2d, 0x50, 0x9a, 0x86, 0x7d, 0x54, 0x75, 0xef, 0xc3, 0x3e, + 0xaa, 0xb1, 0x4b, 0x04, 0xe7, 0xb3, 0x37, 0x27, 0xaf, 0xc4, 0xbd, 0x28, 0x4a, 0xdb, 0xcf, 0xf4, + 0x5e, 0x14, 0x0d, 0xf7, 0xe5, 0x14, 0xf3, 0xae, 0x11, 0xfd, 0xa9, 0x65, 0x66, 0x29, 0xa5, 0x26, + 0x9f, 0xae, 0x2d, 0x85, 0xc4, 0x1d, 0x24, 0x45, 0x48, 0x11, 0x71, 0x07, 0x49, 0x66, 0x11, 0x42, + 0x5b, 0xea, 0x97, 0xc1, 0x25, 0x93, 0x3a, 0x2f, 0x95, 0x5c, 0x5c, 0x22, 0xf9, 0xe1, 0xc3, 0xd6, + 0x34, 0xa4, 0x6d, 0xad, 0xfb, 0xca, 0xa2, 0xc6, 0xa2, 0x77, 0x05, 0x5a, 0x69, 0x13, 0xa7, 0xa1, + 0x33, 0xd2, 0xe8, 0xe1, 0xf4, 0xb5, 0x72, 0xf8, 0x5a, 0x39, 0x7b, 0x3d, 0x1c, 0xbd, 0xaa, 0xc5, + 0xa0, 0x09, 0x90, 0x66, 0x0a, 0x44, 0xab, 0x4a, 0xaf, 0x95, 0x13, 0xbc, 0x85, 0x4f, 0x8d, 0xef, + 0x91, 0xf7, 0x14, 0x72, 0x2d, 0x48, 0x2e, 0x2b, 0xd5, 0xcb, 0x49, 0xff, 0x32, 0x92, 0x9b, 0x36, + 0xf1, 0xc1, 0x16, 0x7b, 0x52, 0x70, 0x7a, 0xe6, 0x2e, 0x5f, 0x18, 0xe4, 0xaa, 0xf1, 0xe9, 0x4a, + 0x7d, 0xb8, 0x52, 0x9f, 0xad, 0xc6, 0x47, 0x8b, 0xce, 0x4e, 0x73, 0x3c, 0x9c, 0x74, 0x83, 0x3a, + 0x52, 0x1c, 0xb6, 0x9c, 0xb5, 0x2d, 0xd0, 0x61, 0xa2, 0x3b, 0xba, 0x27, 0x56, 0xf5, 0x71, 0xd5, + 0xc2, 0x62, 0xa8, 0xfe, 0x31, 0xb6, 0xb3, 0xe9, 0x8f, 0x4b, 0x6b, 0x7b, 0xf4, 0x67, 0x49, 0x57, + 0x5d, 0x3d, 0xa1, 0x91, 0x1d, 0xb2, 0x60, 0xe6, 0x60, 0xaa, 0x4d, 0xc7, 0x61, 0x93, 0x9f, 0x89, + 0x5b, 0x39, 0xeb, 0x56, 0x26, 0xef, 0xa8, 0x0c, 0xc8, 0x88, 0xb9, 0xf7, 0x95, 0xa9, 0x97, 0x18, + 0x87, 0xb1, 0x2f, 0xaa, 0x0c, 0xfc, 0xf0, 0x9b, 0xb7, 0xec, 0x92, 0xec, 0x57, 0xa8, 0xb9, 0xc7, + 0x53, 0x59, 0xce, 0xac, 0x32, 0x47, 0x56, 0x9e, 0x13, 0xab, 0xce, 0x81, 0xb5, 0xe5, 0xbc, 0xda, + 0x72, 0x5c, 0x1d, 0x39, 0x6d, 0xbe, 0x51, 0x5e, 0xd5, 0x3d, 0x99, 0xd5, 0x38, 0x02, 0x2b, 0x5b, + 0x19, 0x0b, 0x0e, 0x6d, 0xd2, 0xaa, 0xa2, 0xb9, 0x7b, 0xe2, 0x70, 0x5a, 0x9e, 0xed, 0xfa, 0x11, + 0xf3, 0x86, 0x13, 0x07, 0xc3, 0x09, 0xf3, 0x68, 0x38, 0x71, 0x2e, 0x95, 0x2f, 0x97, 0x97, 0xdd, + 0x4a, 0x0c, 0x46, 0xa3, 0xca, 0x2d, 0xf1, 0x1c, 0x97, 0x3a, 0x95, 0x9b, 0xfb, 0x0a, 0xbf, 0x65, + 0xd1, 0x37, 0xef, 0xac, 0x5b, 0x59, 0xf8, 0x1e, 0x55, 0xdf, 0xa5, 0xf6, 0x2a, 0x61, 0xe5, 0xf4, + 0x9d, 0x0e, 0xda, 0x4e, 0x1b, 0x5d, 0xa7, 0x8b, 0xa6, 0xd3, 0x4e, 0xcf, 0x69, 0xa7, 0xe5, 0x74, + 0xd2, 0x71, 0x0f, 0xe5, 0x48, 0x98, 0x32, 0xce, 0x00, 0xae, 0x44, 0x31, 0xa6, 0x9a, 0xc4, 0x4c, + 0x6b, 0x42, 0x26, 0x61, 0x1d, 0x69, 0xf3, 0x76, 0xb1, 0x65, 0x9c, 0x7e, 0xca, 0xd2, 0x3d, 0x91, + 0x32, 0x2e, 0xcb, 0x4e, 0xaa, 0x96, 0xc9, 0x4c, 0x37, 0xb2, 0xc9, 0xc7, 0x27, 0xc5, 0xd8, 0x54, + 0xed, 0x79, 0x34, 0x4b, 0x37, 0x26, 0xcb, 0x6b, 0x77, 0xa6, 0xcf, 0xa7, 0x9c, 0x0d, 0xb1, 0x90, + 0x2c, 0x1c, 0x7a, 0x65, 0x42, 0xac, 0x74, 0x28, 0x95, 0x0d, 0x99, 0xca, 0x42, 0xa3, 0xb2, 0x10, + 0xa8, 0x22, 0xd4, 0xe9, 0xb5, 0x76, 0x51, 0xd4, 0x5d, 0x75, 0x6e, 0xed, 0xc0, 0xb2, 0x5d, 0x36, + 0xed, 0x9c, 0xe0, 0x84, 0xcd, 0x57, 0xcc, 0x6a, 0x63, 0x82, 0x23, 0xad, 0xe8, 0xf6, 0x78, 0xc9, + 0xad, 0x6c, 0x69, 0xcc, 0xab, 0x02, 0xe3, 0x2a, 0xc3, 0xb4, 0xaa, 0x30, 0xac, 0x72, 0xcc, 0xaa, + 0x1c, 0xa3, 0xaa, 0xc4, 0xa4, 0xd9, 0xb2, 0xb0, 0xd2, 0x5b, 0xbb, 0x0a, 0x75, 0xca, 0x25, 0x75, + 0xc8, 0x05, 0x90, 0x90, 0x40, 0x90, 0xa1, 0x1e, 0xb9, 0x71, 0xa9, 0x23, 0xef, 0xb4, 0xe6, 0x0d, + 0xc9, 0x3b, 0x2c, 0x89, 0x7b, 0x2d, 0xe0, 0xaf, 0xe0, 0xaf, 0xe0, 0xaf, 0xca, 0xec, 0xaf, 0x46, + 0x7c, 0x2c, 0xef, 0xab, 0x26, 0x8d, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xa4, 0x58, 0x2d, 0xd2, + 0xfa, 0xf5, 0x0a, 0xf4, 0xe9, 0x15, 0x9d, 0x43, 0x52, 0xb0, 0xad, 0xa2, 0xf2, 0x1c, 0x91, 0xe2, + 0x82, 0xe1, 0xc5, 0x21, 0x8f, 0x3d, 0x45, 0x9a, 0x10, 0x3a, 0xce, 0x70, 0x28, 0x28, 0xae, 0x52, + 0x7a, 0x50, 0x67, 0x3e, 0x07, 0xdb, 0x8a, 0xe7, 0xa0, 0x56, 0xe0, 0x29, 0xc8, 0x89, 0x95, 0xbf, + 0x02, 0x31, 0xac, 0x96, 0x18, 0x9e, 0x71, 0xa9, 0x05, 0x60, 0x85, 0x3d, 0xca, 0x86, 0xb7, 0x37, + 0x7e, 0x18, 0x89, 0x13, 0xc3, 0xcb, 0x26, 0xc0, 0x0d, 0x6b, 0x43, 0x5e, 0xe0, 0x86, 0x33, 0xe4, + 0x86, 0xe7, 0x2b, 0x5a, 0x3e, 0x6f, 0x59, 0xb4, 0x24, 0x97, 0xbc, 0xd4, 0x91, 0xbc, 0x20, 0x79, + 0x31, 0x21, 0x79, 0x91, 0x2d, 0x82, 0x12, 0xdd, 0xa5, 0x7c, 0x71, 0xd1, 0x09, 0xed, 0x5a, 0x2a, + 0x36, 0x43, 0x65, 0xe6, 0xa8, 0xd2, 0x2c, 0x95, 0x9b, 0xa7, 0x6a, 0x33, 0xd5, 0x66, 0xae, 0xda, + 0xcc, 0x56, 0x87, 0xf9, 0x2a, 0x82, 0xfe, 0x45, 0xa9, 0x6d, 0x64, 0x1a, 0x2a, 0x1b, 0x95, 0x95, + 0xbd, 0xa9, 0xce, 0xea, 0x51, 0x3f, 0x88, 0xfa, 0xc1, 0x8c, 0xdc, 0x83, 0x1a, 0x37, 0xa1, 0x90, + 0xea, 0xa9, 0x68, 0x39, 0xb6, 0xab, 0x5b, 0xf8, 0x58, 0x87, 0x36, 0xab, 0x36, 0x0d, 0x56, 0x63, + 0x05, 0x8b, 0xaf, 0x8a, 0x52, 0xe4, 0xaa, 0x00, 0xec, 0xb8, 0xcc, 0xfb, 0x6e, 0xb9, 0xe4, 0x9e, + 0x86, 0xca, 0x2f, 0x94, 0x58, 0x9e, 0x4d, 0x5f, 0x7f, 0x07, 0x02, 0x1e, 0x02, 0x1e, 0x02, 0xde, + 0x06, 0x05, 0xbc, 0xe0, 0xf6, 0x3e, 0x42, 0xc0, 0x7b, 0xa4, 0xae, 0xfd, 0x54, 0x54, 0xbb, 0xf1, + 0xf0, 0xeb, 0xff, 0xff, 0xd7, 0xff, 0x5d, 0xc6, 0x38, 0x85, 0xd3, 0xeb, 0xcf, 0x6f, 0xa3, 0x2c, + 0x76, 0x1e, 0x16, 0x3f, 0x09, 0xed, 0xac, 0xa8, 0x1b, 0x6f, 0x89, 0xb1, 0x56, 0x91, 0x1a, 0xab, + 0x4b, 0x89, 0x15, 0x21, 0x03, 0x30, 0x5e, 0x60, 0xbc, 0xcc, 0xf4, 0x7a, 0xca, 0x22, 0xb9, 0x06, + 0x85, 0x29, 0x95, 0x8a, 0x52, 0xcf, 0x28, 0x48, 0xb1, 0xc0, 0x44, 0xf7, 0x39, 0xd5, 0x5d, 0x54, + 0xe6, 0x41, 0xa7, 0xcd, 0x15, 0x6c, 0xdb, 0xa0, 0x01, 0x27, 0x0a, 0x27, 0x6a, 0x90, 0x13, 0xc5, + 0xb6, 0x01, 0x58, 0x14, 0xb0, 0x28, 0x60, 0x51, 0x0a, 0xc3, 0xa2, 0x60, 0xdb, 0x00, 0xdb, 0x06, + 0xd8, 0x36, 0x40, 0xc0, 0x43, 0xc0, 0x43, 0xc0, 0xdb, 0x88, 0x80, 0x87, 0x6d, 0x83, 0x0d, 0xde, + 0x36, 0x50, 0x10, 0xa7, 0xfc, 0x90, 0x0d, 0x55, 0x9e, 0x9b, 0x5a, 0x78, 0xd1, 0x69, 0xbb, 0x88, + 0x47, 0x88, 0x47, 0x88, 0x47, 0x1b, 0x14, 0x8f, 0xe6, 0xfb, 0x74, 0x96, 0x52, 0x07, 0xf0, 0x28, + 0x24, 0xed, 0x28, 0x6c, 0xb3, 0xe5, 0x8d, 0x47, 0x93, 0x81, 0x78, 0xc0, 0x4e, 0xb0, 0x71, 0x3b, + 0xc1, 0x0a, 0x2e, 0x62, 0x82, 0x92, 0x79, 0xaa, 0x56, 0xa0, 0x64, 0xae, 0xd3, 0x6c, 0xf4, 0x9a, + 0x4b, 0x16, 0x32, 0x93, 0xed, 0xf9, 0xbb, 0x70, 0x9c, 0x58, 0xd3, 0x74, 0x16, 0xe1, 0x44, 0x71, + 0x10, 0xfa, 0x3f, 0xef, 0x2d, 0x22, 0xa0, 0x61, 0xbd, 0xcc, 0x5a, 0x17, 0x4d, 0xe0, 0x44, 0xb1, + 0x36, 0xa0, 0x8e, 0x13, 0xc5, 0x19, 0x9e, 0x28, 0x96, 0x3c, 0xd6, 0xa8, 0xe6, 0x38, 0x23, 0x4e, + 0x13, 0x6b, 0xc8, 0x73, 0x71, 0x9a, 0x58, 0x1f, 0x72, 0x92, 0x3e, 0x4d, 0x3c, 0xf2, 0x1d, 0x85, + 0x35, 0x41, 0x71, 0x6b, 0xd2, 0x77, 0xb5, 0x2c, 0x54, 0x13, 0x4f, 0xce, 0x7a, 0xcd, 0xff, 0x8f, + 0xbd, 0xb7, 0xeb, 0x6d, 0x5b, 0xc7, 0xba, 0xc7, 0xef, 0xf3, 0x29, 0x0c, 0x63, 0x2e, 0x9a, 0x07, + 0x55, 0xe3, 0xf7, 0xbc, 0x00, 0x83, 0x07, 0x39, 0x4d, 0x7b, 0x9e, 0xe0, 0xd7, 0x9e, 0x06, 0x6d, + 0x4f, 0xe7, 0x0c, 0x5a, 0x4f, 0xc1, 0x48, 0x74, 0x2c, 0x54, 0x96, 0x34, 0x14, 0x95, 0x26, 0xff, + 0xd3, 0x7c, 0xf7, 0x3f, 0x6c, 0xcb, 0xef, 0x76, 0x6b, 0x49, 0x9b, 0x94, 0x28, 0xaf, 0xdc, 0xd4, + 0x49, 0x2d, 0x52, 0x12, 0xc9, 0xbd, 0xd7, 0x5a, 0x7b, 0x73, 0xf3, 0xb7, 0x37, 0xaf, 0x90, 0xa9, + 0xa9, 0x4f, 0xe4, 0x42, 0x92, 0x11, 0x32, 0x35, 0x7f, 0x3d, 0xdb, 0xb8, 0x1f, 0x8f, 0xf8, 0xf4, + 0x90, 0x24, 0xca, 0x6c, 0x4d, 0x02, 0x61, 0x8a, 0x48, 0x90, 0x32, 0x45, 0xd7, 0x28, 0x21, 0x73, + 0x9e, 0x53, 0x93, 0x5c, 0x3b, 0x0d, 0xf4, 0x54, 0xde, 0xcc, 0x97, 0x12, 0x4b, 0x92, 0x0a, 0x4b, + 0x06, 0x39, 0x5b, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, 0x9c, 0x80, + 0x9c, 0x80, 0x9c, 0x87, 0x08, 0x39, 0x73, 0x84, 0x34, 0x11, 0x3d, 0xf9, 0xf5, 0xfb, 0xad, 0x67, + 0xc2, 0xd8, 0xfb, 0xc5, 0xbe, 0x6e, 0xc6, 0x9d, 0x5c, 0xa6, 0x3d, 0x5a, 0x5b, 0x4d, 0x84, 0x26, + 0x1b, 0x2f, 0xc8, 0xc5, 0x07, 0x72, 0x47, 0x66, 0x5a, 0x88, 0xcc, 0x14, 0xe8, 0xd2, 0x2b, 0x1d, + 0x99, 0x89, 0xc7, 0x8b, 0x36, 0xa2, 0x88, 0xcd, 0x24, 0x2d, 0x21, 0x3a, 0x03, 0xaa, 0x0c, 0xaa, + 0xfc, 0xeb, 0x06, 0x5c, 0xdf, 0x72, 0xdc, 0xc8, 0x66, 0xc2, 0xe1, 0x8e, 0x15, 0x7e, 0x93, 0x11, + 0x61, 0x01, 0x8c, 0x8d, 0xa6, 0x41, 0x79, 0x41, 0x79, 0x41, 0x79, 0x4b, 0x44, 0x79, 0x13, 0x77, + 0xd9, 0xeb, 0x10, 0x12, 0x5e, 0x82, 0xed, 0x28, 0x44, 0x07, 0xd6, 0xcc, 0x7e, 0x08, 0x73, 0xa8, + 0x29, 0x0f, 0xb0, 0x21, 0xb6, 0x6b, 0x1b, 0xcd, 0x12, 0x1f, 0xa6, 0x32, 0x6f, 0x57, 0xc1, 0xa1, + 0x2a, 0x44, 0x2b, 0x64, 0x75, 0xa8, 0xd8, 0x83, 0x71, 0x43, 0xd5, 0x3c, 0xeb, 0x74, 0x7a, 0xa7, + 0x9d, 0x4e, 0xe3, 0xb4, 0x7d, 0xda, 0x38, 0xef, 0x76, 0x9b, 0xbd, 0x66, 0xd7, 0xa0, 0xd1, 0x2b, + 0x49, 0x86, 0x7e, 0xdf, 0xc4, 0xca, 0x63, 0xbe, 0xc5, 0x85, 0x08, 0x04, 0x3d, 0x06, 0x5b, 0x6a, + 0x16, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, 0x0b, 0xf8, + 0x0b, 0xf8, 0x6b, 0x19, 0x7f, 0x0d, 0x02, 0xf1, 0x7d, 0x2a, 0x56, 0x05, 0xb6, 0xe4, 0xc4, 0x28, + 0x6c, 0xa3, 0x71, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, 0x31, 0x60, + 0x31, 0x60, 0x31, 0x60, 0xb1, 0xed, 0x58, 0x8c, 0x5c, 0x0f, 0x5b, 0x6b, 0x1a, 0x38, 0x0c, 0x38, + 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x6c, 0x19, + 0x87, 0x29, 0x50, 0xc2, 0xa0, 0x7f, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, + 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x6d, 0xc1, 0x5d, 0xe4, 0xaa, 0x17, 0xb4, 0x2e, 0x60, 0x2e, + 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0x2e, 0x60, 0xae, 0xd5, 0x61, + 0x09, 0x62, 0xa9, 0x6c, 0x23, 0xe4, 0x96, 0xb6, 0x81, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, + 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x80, 0xc4, 0x56, 0x90, 0x98, 0x8a, 0xad, 0x90, + 0x6b, 0xed, 0x02, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, + 0x01, 0x81, 0x01, 0x81, 0xad, 0x20, 0x30, 0x75, 0x9b, 0x21, 0xb7, 0xb6, 0x0e, 0x34, 0x06, 0x34, + 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0xb6, 0x03, + 0x8d, 0xd1, 0x6b, 0x62, 0xd8, 0x0f, 0x09, 0x24, 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, + 0x06, 0x24, 0x06, 0x24, 0x06, 0x24, 0xf6, 0x33, 0x24, 0xa6, 0x42, 0x0d, 0x83, 0x06, 0x06, 0xe4, + 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0xb5, 0x0d, + 0x79, 0xd1, 0x2b, 0x5f, 0xd0, 0xbb, 0x80, 0xba, 0x80, 0xba, 0x80, 0xba, 0x80, 0xba, 0x80, 0xba, + 0x80, 0xba, 0x80, 0xba, 0x2a, 0x89, 0xba, 0x0e, 0xfd, 0xe4, 0xee, 0xc9, 0x49, 0xc9, 0x27, 0x39, + 0xcf, 0x85, 0xad, 0xa5, 0x39, 0x66, 0xfa, 0xe5, 0xac, 0x2f, 0x5d, 0x87, 0x84, 0x67, 0x38, 0x1d, + 0xd9, 0x19, 0xda, 0xa1, 0x65, 0x7b, 0xee, 0x14, 0x8a, 0xe4, 0x3c, 0x74, 0x77, 0xb9, 0xb1, 0xac, + 0xe7, 0x98, 0xf2, 0x01, 0x8b, 0xbd, 0x09, 0x2c, 0x1a, 0x30, 0x2f, 0xe2, 0x39, 0xcf, 0xef, 0x6d, + 0xe0, 0xfc, 0x5e, 0x9c, 0xdf, 0x6b, 0x82, 0xc1, 0xcc, 0x0d, 0x9f, 0xe7, 0xb3, 0xe5, 0x36, 0x08, + 0x3c, 0xce, 0xfc, 0x3c, 0xf3, 0x65, 0x76, 0xf8, 0x75, 0xb3, 0xc4, 0x86, 0x8b, 0xfb, 0xec, 0xd6, + 0xe3, 0x4e, 0x7e, 0xa3, 0x35, 0x6b, 0x28, 0xbf, 0xc1, 0x1a, 0xcf, 0x5f, 0xd8, 0x2b, 0xd8, 0x2b, + 0xd8, 0x2b, 0xd8, 0xab, 0x8d, 0x7b, 0x1c, 0xc9, 0x38, 0xbf, 0xad, 0x1a, 0x37, 0x02, 0x03, 0x03, + 0x03, 0x03, 0x03, 0x93, 0x62, 0xb6, 0xc4, 0xae, 0x2f, 0x9b, 0x3d, 0x02, 0xfb, 0xd2, 0xcb, 0xd1, + 0x04, 0x8d, 0x68, 0x48, 0xa0, 0xae, 0x52, 0x8a, 0x84, 0xc4, 0x8a, 0xd3, 0x5c, 0x69, 0xea, 0x9d, + 0x11, 0x35, 0xa8, 0x40, 0x4f, 0x22, 0x50, 0x01, 0x49, 0xd5, 0xbf, 0xd9, 0x18, 0xb4, 0x89, 0xc7, + 0xa0, 0x51, 0xe2, 0x21, 0x28, 0x48, 0x42, 0xeb, 0xeb, 0x82, 0x17, 0x47, 0x0a, 0x27, 0x64, 0x5e, + 0x69, 0x8e, 0x5c, 0x92, 0x4b, 0xe7, 0x90, 0xf6, 0x7f, 0x37, 0x29, 0xde, 0x4b, 0x3d, 0xf6, 0xfd, + 0x78, 0x74, 0xcb, 0x45, 0x06, 0x3e, 0xb9, 0x70, 0x33, 0x8b, 0x36, 0x52, 0x8e, 0xc8, 0x0c, 0xbe, + 0xa6, 0xbc, 0x2c, 0x2b, 0x24, 0xcb, 0x03, 0xc5, 0x56, 0x20, 0xd8, 0x20, 0x83, 0x4f, 0xcd, 0x0b, + 0xbd, 0xc8, 0x20, 0x17, 0x19, 0xd4, 0xda, 0x80, 0x58, 0x83, 0x7a, 0xc9, 0x56, 0xfc, 0x95, 0x2b, + 0xb2, 0x0d, 0xb6, 0x3d, 0x9b, 0x61, 0x39, 0x69, 0x4b, 0xd2, 0x4e, 0x3e, 0xe6, 0xd2, 0xac, 0x0a, + 0x73, 0x19, 0x80, 0xb9, 0x68, 0x5a, 0x56, 0xc5, 0x30, 0x97, 0xac, 0xcb, 0x8d, 0x4c, 0xda, 0x24, + 0x96, 0x38, 0x17, 0x0f, 0x46, 0x13, 0x9b, 0x21, 0x66, 0x0f, 0xe5, 0x4f, 0x99, 0x1a, 0x20, 0x65, + 0x8a, 0xa2, 0x61, 0x42, 0x83, 0x40, 0xc4, 0x24, 0x4a, 0x97, 0x32, 0x95, 0x5f, 0x4b, 0xdd, 0xf0, + 0xba, 0xcd, 0x83, 0xc8, 0x57, 0x78, 0xf5, 0x30, 0xe1, 0xa6, 0xd9, 0xd5, 0x19, 0x3a, 0x77, 0x1c, + 0xd8, 0x16, 0x7f, 0x90, 0x17, 0x92, 0x7b, 0x7c, 0xc4, 0xa5, 0x78, 0xb4, 0x02, 0xdf, 0xb2, 0x87, + 0x13, 0xf9, 0x88, 0xd4, 0x45, 0x4f, 0x4c, 0x38, 0xa1, 0x8f, 0xd6, 0xed, 0x9e, 0xfb, 0xd5, 0x49, + 0x4d, 0x59, 0x50, 0xc7, 0x93, 0x04, 0x2a, 0x97, 0x38, 0x90, 0x31, 0x7f, 0x0e, 0x4b, 0xf0, 0x41, + 0x7e, 0x6e, 0xb0, 0xda, 0x1c, 0x28, 0x02, 0x28, 0x02, 0x28, 0x82, 0x72, 0x66, 0x4e, 0xcb, 0xd0, + 0x89, 0x96, 0x21, 0x00, 0x3d, 0x00, 0xbd, 0xd9, 0x80, 0x3e, 0xef, 0xb2, 0xde, 0xf4, 0xb1, 0x74, + 0xd3, 0x63, 0xc3, 0xdf, 0x52, 0x4d, 0x0f, 0xe2, 0x18, 0x20, 0xd5, 0xe2, 0x57, 0x61, 0x04, 0x94, + 0x19, 0x03, 0x55, 0x46, 0x41, 0xb9, 0x71, 0x50, 0x6e, 0x24, 0x54, 0x1a, 0x0b, 0x1a, 0xa3, 0x41, + 0x64, 0x3c, 0xe8, 0x55, 0x81, 0x8d, 0xd9, 0xea, 0x71, 0x36, 0xc8, 0x0e, 0xb2, 0x7f, 0xea, 0xf1, + 0x4f, 0x09, 0xdb, 0xbc, 0x99, 0x53, 0xaa, 0xf1, 0x30, 0x5f, 0x2c, 0x51, 0xa8, 0xb5, 0x3f, 0x24, + 0xbf, 0x4f, 0x12, 0xf1, 0x4b, 0xb2, 0xbb, 0x83, 0x22, 0x3b, 0x20, 0x8a, 0x6f, 0x15, 0xda, 0xff, + 0x95, 0xd6, 0xe1, 0x02, 0xe0, 0x02, 0xe0, 0x02, 0xe0, 0x02, 0x8c, 0x75, 0x01, 0x9f, 0x17, 0x2e, + 0xe0, 0x9f, 0x76, 0x2c, 0x04, 0xf7, 0xe5, 0xb3, 0xe3, 0x93, 0x17, 0x2f, 0x16, 0x6a, 0x5b, 0x3f, + 0xb9, 0x64, 0xd9, 0xee, 0x45, 0x5b, 0xfe, 0x36, 0x6f, 0xd9, 0xe1, 0x0f, 0xa5, 0xf1, 0x26, 0x85, + 0xb2, 0x99, 0xdc, 0x9a, 0xf8, 0xec, 0x87, 0x9e, 0xe0, 0x2a, 0xd3, 0xc8, 0x77, 0x18, 0x33, 0x02, + 0xad, 0x7c, 0xab, 0x15, 0x2b, 0x9a, 0xf0, 0xf6, 0xf3, 0x0a, 0x70, 0x34, 0x5a, 0xfa, 0x02, 0xfa, + 0x28, 0xd1, 0xd4, 0x57, 0x24, 0xe6, 0x5c, 0x0a, 0x7b, 0xfe, 0xb7, 0xfe, 0x94, 0x6b, 0xdf, 0x29, + 0x93, 0x9c, 0x4e, 0xf3, 0x9b, 0x36, 0x57, 0x32, 0xc9, 0xaf, 0x05, 0xc9, 0x0f, 0x92, 0x1f, 0x24, + 0x3f, 0x48, 0x7e, 0xe0, 0x7b, 0xe0, 0x7b, 0xe0, 0x7b, 0xe0, 0x7b, 0x90, 0xfc, 0x20, 0xf9, 0xc1, + 0x05, 0xc0, 0x05, 0xc0, 0x05, 0xc0, 0x05, 0x40, 0xf2, 0x53, 0xcc, 0x66, 0x4c, 0xd4, 0x73, 0x32, + 0x6c, 0x22, 0x24, 0x94, 0x73, 0x0e, 0xbd, 0xaa, 0xda, 0xae, 0x61, 0xd1, 0x51, 0x5f, 0xed, 0xcf, + 0x79, 0xdf, 0x5f, 0xe7, 0x5f, 0x7a, 0xcf, 0x07, 0x65, 0x4e, 0x9e, 0xcd, 0x27, 0xe1, 0x91, 0x48, + 0x77, 0x64, 0xc9, 0xb2, 0x2d, 0x24, 0xcb, 0xaa, 0x83, 0x5a, 0x48, 0x96, 0x25, 0x93, 0xd8, 0xb0, + 0x9f, 0xae, 0x18, 0x2e, 0x06, 0x2d, 0xbe, 0xd4, 0x1c, 0x0b, 0xfb, 0xe9, 0x7e, 0x3d, 0xdb, 0xb0, + 0x9f, 0xae, 0x92, 0x48, 0x35, 0x07, 0x65, 0x40, 0x35, 0x97, 0x3d, 0x5e, 0x70, 0x3d, 0x13, 0x32, + 0x4e, 0x0b, 0xfa, 0x95, 0x15, 0x8e, 0x39, 0x22, 0x1c, 0xa8, 0xac, 0x03, 0x44, 0x38, 0x30, 0x29, + 0x46, 0x63, 0xdf, 0x51, 0xd8, 0xef, 0xd5, 0xff, 0xfa, 0x45, 0xee, 0xf1, 0x12, 0xeb, 0x6e, 0x78, + 0xdf, 0xdb, 0xfb, 0xd5, 0x2d, 0x62, 0x9e, 0xe3, 0xab, 0xf6, 0x1c, 0xa2, 0x74, 0x84, 0x28, 0x35, + 0x3e, 0xca, 0x82, 0x83, 0x32, 0x97, 0x3a, 0xcc, 0x8a, 0x6b, 0x72, 0xe3, 0x97, 0xdc, 0x38, 0x25, + 0x4f, 0xa9, 0x42, 0xda, 0x25, 0x9b, 0x96, 0x70, 0xd4, 0x99, 0xe3, 0x08, 0x1e, 0x45, 0x3c, 0xca, + 0x5e, 0x3d, 0x6a, 0xd1, 0xc4, 0x81, 0x14, 0x8f, 0x0a, 0x51, 0x3c, 0x8a, 0xa8, 0x3e, 0x67, 0x49, + 0x8b, 0x47, 0x25, 0x33, 0x3a, 0xbf, 0xd8, 0x35, 0x6b, 0x08, 0x7b, 0xc3, 0x51, 0xf8, 0x56, 0xeb, + 0xc2, 0x32, 0x54, 0xee, 0xc2, 0xde, 0xf0, 0x22, 0xc5, 0x29, 0x9c, 0x8f, 0xa7, 0x44, 0x9c, 0x0a, + 0x91, 0x28, 0x3a, 0xe7, 0x43, 0x0a, 0x32, 0x44, 0x43, 0xe4, 0x05, 0x95, 0x67, 0xf9, 0xab, 0x32, + 0x03, 0xca, 0xcd, 0x81, 0x72, 0xb3, 0xa0, 0xd2, 0x3c, 0xd0, 0x98, 0x09, 0x22, 0x73, 0x31, 0x7f, + 0x50, 0x75, 0x79, 0x41, 0x6e, 0x78, 0xdf, 0xb3, 0xf2, 0x61, 0xeb, 0x9f, 0x3a, 0xfa, 0x33, 0xda, + 0xe4, 0x20, 0xc9, 0x85, 0x4f, 0x76, 0xe8, 0xe6, 0xbc, 0xe1, 0xff, 0x3c, 0x7b, 0xf6, 0xb9, 0x61, + 0x9d, 0x33, 0x6b, 0x70, 0x69, 0xbd, 0xee, 0xff, 0xdd, 0x7c, 0xde, 0x79, 0xba, 0x38, 0xfe, 0xfb, + 0xf4, 0x69, 0xfd, 0x8f, 0x3f, 0xb6, 0x7d, 0xad, 0xf9, 0xfc, 0xf4, 0xe9, 0x62, 0xc7, 0xff, 0xf4, + 0x9e, 0x2e, 0xf6, 0x6c, 0xa3, 0xfb, 0xf4, 0x6c, 0xe3, 0xab, 0xe3, 0xbf, 0xb7, 0x76, 0x5d, 0xd0, + 0xd9, 0x71, 0x41, 0x7b, 0xd7, 0x05, 0xed, 0x1d, 0x17, 0xec, 0xbc, 0xa5, 0xd6, 0x8e, 0x0b, 0xba, + 0x4f, 0x3f, 0x36, 0xbe, 0xff, 0x6c, 0xfb, 0x57, 0x7b, 0x4f, 0xc7, 0x3f, 0x76, 0xfd, 0xdf, 0xe9, + 0xd3, 0x8f, 0x8b, 0xe3, 0xe3, 0x7f, 0xd0, 0x2d, 0xd9, 0x7e, 0x85, 0x52, 0x81, 0xa7, 0x06, 0xd9, + 0xf2, 0xb8, 0x7f, 0x37, 0x91, 0x7e, 0x89, 0x3d, 0xfd, 0x6a, 0xf3, 0x70, 0xfa, 0x70, 0xfa, 0x70, + 0xfa, 0x07, 0xe4, 0xf4, 0x63, 0xd7, 0x97, 0x67, 0x0a, 0xbc, 0x3d, 0xe1, 0x41, 0xc0, 0xc4, 0xe7, + 0x6b, 0xcf, 0x7e, 0x68, 0x57, 0x53, 0x4d, 0xd5, 0x79, 0xdb, 0x8a, 0x6c, 0xea, 0x46, 0xf3, 0x8a, + 0xce, 0xdf, 0x9e, 0xb7, 0xaf, 0xf0, 0x24, 0x67, 0xe2, 0xd5, 0xb6, 0x3a, 0xa4, 0x0a, 0xce, 0xe5, + 0xd6, 0x3d, 0xa4, 0xcd, 0xd6, 0x99, 0xc1, 0x83, 0x7a, 0x54, 0xce, 0xd6, 0xfa, 0xd8, 0x1f, 0x50, + 0xe6, 0xfd, 0x01, 0xbd, 0x93, 0x79, 0x00, 0x75, 0xf6, 0xc9, 0xe0, 0x42, 0x0f, 0x04, 0x12, 0x1f, + 0x9d, 0xb4, 0x77, 0x30, 0x69, 0xa5, 0x50, 0xee, 0xcb, 0x8a, 0xd2, 0xab, 0x96, 0x56, 0x4a, 0xb7, + 0x25, 0x8f, 0x72, 0x2b, 0xde, 0x7c, 0x0b, 0xde, 0x8b, 0x17, 0x89, 0xed, 0x3c, 0xc9, 0x3b, 0x78, + 0xa8, 0x93, 0xb3, 0x3e, 0x4e, 0x55, 0xaf, 0x93, 0x03, 0x23, 0x0a, 0x23, 0xba, 0xed, 0x81, 0x10, + 0xfe, 0x2c, 0x12, 0x33, 0xa9, 0x58, 0xf6, 0xca, 0x96, 0xbf, 0x2a, 0x33, 0xa0, 0xdc, 0x1c, 0x28, + 0x37, 0x0b, 0x2a, 0xcd, 0x03, 0x2d, 0x65, 0x46, 0xf8, 0x13, 0xe1, 0x4f, 0x84, 0x3f, 0x11, 0xfe, + 0x4c, 0x3d, 0x23, 0x03, 0xe1, 0xde, 0x51, 0x9e, 0x50, 0x3f, 0x77, 0x4e, 0xd3, 0x76, 0xe1, 0xe6, + 0xe1, 0xe6, 0xe1, 0xe6, 0x0f, 0xca, 0xcd, 0xcf, 0x9c, 0xbc, 0x45, 0x6a, 0x02, 0x56, 0x7c, 0x7d, + 0x87, 0xb0, 0xcd, 0x57, 0x7e, 0x3c, 0x1a, 0xbf, 0x8a, 0x27, 0xe4, 0xb4, 0xec, 0x3b, 0xc6, 0xc8, + 0x69, 0x81, 0x89, 0x87, 0x89, 0x3f, 0x58, 0x13, 0x8f, 0x9c, 0x16, 0xc2, 0xf9, 0x88, 0x9c, 0x96, + 0xdd, 0xed, 0x23, 0xa7, 0xa5, 0xb0, 0x21, 0x45, 0x4e, 0x8b, 0x82, 0xd6, 0xaa, 0xa4, 0x1b, 0x44, + 0x92, 0xc9, 0x38, 0x52, 0x50, 0x3b, 0x79, 0xda, 0x2e, 0x40, 0x25, 0x40, 0x25, 0x40, 0xe5, 0x01, + 0x81, 0x4a, 0xee, 0xc7, 0x23, 0x2e, 0xa6, 0xa9, 0x6e, 0x50, 0x0c, 0x34, 0xb6, 0x70, 0x50, 0x29, + 0x8a, 0xc5, 0xd6, 0x2e, 0xce, 0x91, 0x62, 0x73, 0x2f, 0x04, 0x61, 0x8e, 0xe2, 0xa4, 0x35, 0xd4, + 0x17, 0xd0, 0xe6, 0x42, 0x91, 0x60, 0x83, 0x04, 0x9b, 0x9f, 0x2e, 0x6d, 0xeb, 0x4e, 0x04, 0xb1, + 0x82, 0x44, 0x9b, 0xa5, 0xb6, 0x69, 0x11, 0x75, 0x13, 0x88, 0x1a, 0x88, 0x1a, 0x88, 0x3a, 0xff, + 0x83, 0x52, 0x99, 0x91, 0x79, 0x83, 0x44, 0xd5, 0x88, 0x76, 0x2e, 0x02, 0x92, 0xea, 0x44, 0x8a, + 0xcd, 0x8a, 0x32, 0xf3, 0xa2, 0xd2, 0xcc, 0x28, 0x37, 0x37, 0xaa, 0xcd, 0x8e, 0x36, 0xf3, 0xa3, + 0xcd, 0x0c, 0xe9, 0x30, 0x47, 0xb4, 0x66, 0x89, 0xd8, 0x3c, 0x29, 0x33, 0x53, 0xf3, 0x86, 0x99, + 0x6d, 0xf3, 0x50, 0x5a, 0xa3, 0xc0, 0x51, 0x38, 0x21, 0xe7, 0x95, 0x0d, 0x97, 0x3a, 0x53, 0x34, + 0x53, 0x88, 0xcf, 0x18, 0xf8, 0x95, 0xc1, 0x54, 0x15, 0x07, 0x50, 0x65, 0x38, 0x75, 0x18, 0x50, + 0x6d, 0x86, 0x54, 0x97, 0x41, 0xd5, 0x6e, 0x58, 0xb5, 0x1b, 0x58, 0x9d, 0x86, 0x56, 0x8d, 0xc1, + 0x55, 0x64, 0x78, 0xe7, 0x2f, 0x86, 0x5c, 0x79, 0xdd, 0xb9, 0x5a, 0xe8, 0xce, 0x60, 0xf8, 0x25, + 0xda, 0x6b, 0x1e, 0x99, 0x31, 0xb0, 0x2a, 0xa2, 0xc4, 0xcc, 0xb9, 0xe7, 0x42, 0xba, 0x11, 0x1f, + 0x4f, 0xf7, 0xa9, 0xb6, 0x79, 0xcf, 0x3c, 0x0d, 0x3e, 0x70, 0x7b, 0xbf, 0xea, 0xdd, 0x61, 0xb3, + 0xd1, 0x80, 0x33, 0x84, 0x33, 0x84, 0x33, 0x84, 0x33, 0x34, 0xc7, 0x19, 0xc6, 0xae, 0x2f, 0x9b, + 0x3d, 0x0d, 0xbe, 0xb0, 0xa7, 0xb0, 0x0b, 0x35, 0xc9, 0x70, 0xeb, 0x3f, 0x6a, 0x97, 0x7b, 0x4d, + 0x75, 0xb2, 0x9c, 0x66, 0xa7, 0xb2, 0xd1, 0xdd, 0x3c, 0xf3, 0x4a, 0x53, 0x7f, 0x1a, 0xf2, 0xb0, + 0x34, 0x99, 0x83, 0xd5, 0x29, 0xc2, 0x1e, 0x2a, 0x3f, 0x45, 0x3a, 0x8d, 0xf3, 0x6e, 0x85, 0x67, + 0xc9, 0x91, 0x99, 0xad, 0xf7, 0x0f, 0x98, 0xcc, 0x84, 0x82, 0xf3, 0x51, 0x28, 0xd5, 0xb3, 0x97, + 0x59, 0x47, 0xea, 0xe9, 0xca, 0x18, 0xdf, 0x81, 0xaf, 0x80, 0xaf, 0x80, 0xaf, 0x80, 0xaf, 0x98, + 0xc3, 0x57, 0x20, 0xde, 0xe9, 0xf4, 0x77, 0x96, 0xc3, 0x3d, 0xf6, 0xa8, 0xcd, 0xeb, 0x25, 0xdd, + 0xa9, 0xf7, 0x7d, 0x10, 0xea, 0xe0, 0xf8, 0xe0, 0xf8, 0xe0, 0xf8, 0x0c, 0x72, 0x7c, 0x10, 0xea, + 0xf6, 0xfe, 0x81, 0x50, 0x47, 0xa2, 0xc2, 0x34, 0x20, 0xd4, 0xe5, 0x9a, 0x22, 0x07, 0x20, 0xd4, + 0xb5, 0x7b, 0x8d, 0x06, 0x84, 0xba, 0xb2, 0xb5, 0x7e, 0xd8, 0x42, 0x9d, 0x1b, 0x08, 0x57, 0x6a, + 0xe1, 0x2c, 0x49, 0x4f, 0xc8, 0x2c, 0x00, 0x61, 0x01, 0x61, 0x01, 0x61, 0x01, 0x61, 0xa9, 0xa9, + 0xac, 0xa2, 0xb3, 0xcb, 0x74, 0x75, 0xc1, 0x57, 0xc0, 0x57, 0x90, 0x58, 0x00, 0xbe, 0xb2, 0xc7, + 0x14, 0x69, 0x75, 0x3b, 0xa0, 0x2b, 0xa0, 0x2b, 0xe5, 0xa1, 0x2b, 0xf7, 0xae, 0x90, 0x31, 0xf3, + 0xe6, 0x75, 0xc3, 0x95, 0xb3, 0x96, 0xf5, 0x0e, 0x41, 0x2b, 0x40, 0x2b, 0x40, 0x2b, 0x40, 0x2b, + 0x8c, 0xa1, 0x15, 0x8b, 0xfa, 0xcb, 0x3a, 0x72, 0x00, 0xce, 0x15, 0xf6, 0x91, 0xbc, 0x33, 0xe3, + 0xb9, 0xc5, 0xd2, 0x01, 0x18, 0x1d, 0x0d, 0x63, 0xb3, 0x31, 0x46, 0x67, 0x1a, 0xfa, 0x52, 0x75, + 0x60, 0xc6, 0xce, 0x0e, 0x93, 0x83, 0x34, 0xfa, 0x3f, 0x3e, 0x37, 0xad, 0xf3, 0xfe, 0xf4, 0x63, + 0x73, 0xf2, 0xcf, 0xf4, 0x73, 0xeb, 0x73, 0xc3, 0xea, 0xcc, 0x3e, 0x77, 0x3f, 0x37, 0xac, 0x6e, + 0xff, 0xf8, 0xcb, 0x97, 0x17, 0xc7, 0x7f, 0xb7, 0x9f, 0xd2, 0x5f, 0xf8, 0x8f, 0xba, 0xf2, 0x87, + 0xea, 0x1f, 0x19, 0xcc, 0x8f, 0xf4, 0x2e, 0xa2, 0x1e, 0x16, 0x11, 0xed, 0x22, 0xc2, 0x69, 0x34, + 0x46, 0x9f, 0x46, 0x53, 0x90, 0x49, 0x31, 0x8d, 0xef, 0x2a, 0x42, 0x76, 0x6f, 0xdc, 0x48, 0x5e, + 0x4a, 0x29, 0xd4, 0xa2, 0xbb, 0xb7, 0xae, 0xff, 0xca, 0x9b, 0xec, 0xd8, 0x1d, 0x73, 0x60, 0x3f, + 0xf6, 0x3c, 0x85, 0xc0, 0xeb, 0x2d, 0x7b, 0xd0, 0xd7, 0xd9, 0x3b, 0xe1, 0x70, 0xc1, 0x9d, 0xdf, + 0x1e, 0x93, 0xae, 0x20, 0x76, 0x58, 0x9e, 0xeb, 0x7f, 0xb3, 0xbc, 0xc0, 0xd6, 0xb1, 0x1b, 0x7c, + 0x4b, 0x9f, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x80, 0xe4, 0x01, 0xc9, 0x03, 0x92, 0x07, 0x24, + 0x0f, 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x80, 0xe4, 0x01, 0xc9, 0x03, 0x21, 0x7e, + 0x85, 0xac, 0x77, 0x72, 0x7a, 0x83, 0xb0, 0x5c, 0x47, 0x1f, 0xe9, 0x5d, 0x74, 0x09, 0xce, 0x0b, + 0xce, 0x0b, 0xce, 0x0b, 0xce, 0x6b, 0x0c, 0xe7, 0x45, 0xf6, 0x70, 0x89, 0x90, 0x3a, 0xb2, 0x87, + 0xe9, 0xfa, 0x43, 0xf6, 0xb0, 0xb1, 0x53, 0xa4, 0xd5, 0x45, 0x55, 0x32, 0x50, 0x8b, 0x52, 0xb4, + 0x48, 0x7d, 0xfc, 0xc1, 0x65, 0x7c, 0x37, 0x06, 0x3c, 0xdc, 0x51, 0xe2, 0xae, 0x14, 0xd3, 0x9d, + 0x93, 0x31, 0x46, 0x1b, 0x5c, 0x2c, 0x9d, 0x99, 0xb7, 0xf6, 0x87, 0xf1, 0xef, 0xf7, 0x1e, 0xf3, + 0x2f, 0x96, 0x4f, 0xd0, 0x9b, 0x00, 0xbb, 0x8b, 0xc9, 0x39, 0x7a, 0xd3, 0x8f, 0x8b, 0xd3, 0xf4, + 0x56, 0x7e, 0x3f, 0xb9, 0x17, 0x22, 0x3c, 0x59, 0x1c, 0x34, 0x75, 0xa2, 0xe4, 0x80, 0x98, 0xf9, + 0x43, 0x5d, 0xf1, 0xc8, 0x16, 0x6e, 0x98, 0x9c, 0x37, 0x58, 0xbf, 0x74, 0x1c, 0x77, 0xfc, 0x99, + 0x79, 0xb5, 0x4f, 0xef, 0xdf, 0xdf, 0xd4, 0x1c, 0x26, 0x59, 0x6d, 0x10, 0x88, 0xda, 0xf5, 0xcd, + 0x7d, 0xaf, 0xb6, 0x78, 0x64, 0xc5, 0x0c, 0xaf, 0x09, 0x86, 0x07, 0x86, 0x07, 0x86, 0x57, 0x7d, + 0x86, 0xa7, 0xea, 0x1c, 0x9c, 0x0d, 0x39, 0x4c, 0x43, 0x12, 0xc8, 0x4e, 0x5d, 0x4c, 0x79, 0x32, + 0xc8, 0x2e, 0x6b, 0xfe, 0x3a, 0x10, 0x53, 0x33, 0x1e, 0xf8, 0xeb, 0x06, 0xfc, 0x79, 0x2d, 0xe2, + 0x32, 0xaa, 0xc9, 0x21, 0xaf, 0x25, 0xb7, 0x59, 0x1b, 0xdf, 0x66, 0x6d, 0x72, 0x9b, 0x5f, 0x7c, + 0x3d, 0xf1, 0x11, 0x4d, 0xc8, 0x5a, 0xb9, 0xd9, 0xd7, 0x69, 0xfe, 0xb5, 0xbb, 0x01, 0xdd, 0xee, + 0xa0, 0x30, 0xb7, 0x50, 0x98, 0x7b, 0x28, 0xc2, 0x4d, 0x68, 0xe2, 0x61, 0x8a, 0xd7, 0x9b, 0x72, + 0x81, 0x70, 0x63, 0xb5, 0x69, 0x49, 0x8e, 0xd9, 0x80, 0xc3, 0xe7, 0x1a, 0xfa, 0xd2, 0x92, 0x2c, + 0xa3, 0x96, 0xa2, 0xfd, 0x62, 0xe4, 0xb4, 0x26, 0xcf, 0x6c, 0x8c, 0xe1, 0x99, 0xc6, 0x3e, 0x75, + 0xe7, 0x01, 0xcc, 0x3b, 0xae, 0x5a, 0x52, 0x8d, 0x5a, 0xd9, 0x47, 0xb3, 0xb9, 0x2c, 0x76, 0xf1, + 0xf5, 0xb0, 0xf8, 0xf4, 0x2c, 0x3e, 0x24, 0xe3, 0x54, 0x32, 0x19, 0x47, 0xb3, 0x29, 0x42, 0x72, + 0x91, 0x5e, 0x81, 0xa5, 0xe4, 0x11, 0x80, 0x3e, 0x75, 0x04, 0xc0, 0xf7, 0x03, 0xc9, 0x12, 0xa1, + 0x42, 0xc1, 0x39, 0xc8, 0x91, 0x3d, 0xe4, 0x23, 0x16, 0x32, 0x39, 0x9c, 0x4a, 0xf6, 0x21, 0xf7, + 0xa7, 0x42, 0xba, 0xb5, 0xa4, 0xdb, 0x6f, 0xfb, 0x78, 0xb2, 0x2c, 0xda, 0x4f, 0xe4, 0xfa, 0x85, + 0x50, 0xff, 0x0b, 0x89, 0xfe, 0xa8, 0x9c, 0xc3, 0x47, 0x88, 0x2a, 0xea, 0xf3, 0xd7, 0x64, 0x49, + 0xc1, 0xec, 0x6f, 0xae, 0xaf, 0xf0, 0x64, 0xfc, 0x2d, 0x7d, 0xe1, 0x94, 0x7c, 0x9c, 0x92, 0x5f, + 0xb4, 0x5c, 0x84, 0x53, 0xf2, 0x75, 0xf1, 0x17, 0x75, 0xa7, 0xe4, 0xdb, 0xb3, 0x15, 0xaa, 0x38, + 0x54, 0xac, 0x36, 0x76, 0x8b, 0x60, 0x69, 0xf1, 0x66, 0x4d, 0x97, 0x79, 0xd3, 0x6e, 0xe6, 0xb4, + 0x9b, 0x3b, 0x9d, 0x66, 0x4f, 0x31, 0x96, 0x37, 0x35, 0x58, 0x3a, 0xab, 0x31, 0x6e, 0x39, 0xdc, + 0x16, 0x3c, 0x19, 0x03, 0x4d, 0xc1, 0xd2, 0x2d, 0x7d, 0x2b, 0x0f, 0x96, 0x2a, 0x3f, 0xa0, 0x69, + 0xdd, 0x54, 0x23, 0xd0, 0x59, 0x62, 0x13, 0xae, 0xdb, 0x94, 0x17, 0x66, 0xd2, 0x0b, 0x33, 0xed, + 0x45, 0x98, 0x78, 0x3d, 0x82, 0x56, 0xf5, 0x02, 0x9d, 0xaa, 0x77, 0x44, 0xac, 0x9b, 0x46, 0x0d, + 0xb9, 0xce, 0x9a, 0x76, 0x48, 0xcc, 0x7e, 0x34, 0x86, 0x59, 0x74, 0xee, 0x98, 0xd0, 0xec, 0xd3, + 0x36, 0xba, 0xd5, 0x7c, 0x5e, 0xd4, 0xbc, 0xdf, 0x02, 0x92, 0xe4, 0x35, 0x59, 0x97, 0xd5, 0xa9, + 0xa4, 0x71, 0x67, 0x45, 0x59, 0xa6, 0x92, 0xb6, 0x3a, 0xed, 0xa5, 0x98, 0x4c, 0x88, 0x1f, 0x15, + 0x7a, 0xff, 0x0a, 0x17, 0x73, 0x7d, 0x22, 0x94, 0x2f, 0x22, 0x1c, 0xfa, 0xd8, 0xdb, 0x7a, 0xc7, + 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, 0xc9, 0x6a, 0xf3, 0x38, 0x1b, 0x08, + 0x3e, 0xd0, 0x99, 0x34, 0x7a, 0xaa, 0xa7, 0xe0, 0xd0, 0x70, 0xef, 0x3d, 0x71, 0xee, 0xe0, 0xc2, + 0x1f, 0xbf, 0x0e, 0xa3, 0xa7, 0x8e, 0x96, 0x02, 0xb5, 0xcb, 0xc4, 0x4e, 0x5b, 0xed, 0xd8, 0x65, + 0x0a, 0xa0, 0xbf, 0x53, 0x2d, 0x85, 0x6b, 0x35, 0xa0, 0x3b, 0xa3, 0x22, 0x0a, 0x8a, 0xb3, 0x70, + 0xe6, 0xfd, 0x68, 0xcd, 0xc6, 0xd9, 0xcc, 0x1b, 0x51, 0x92, 0xa0, 0xa3, 0x6e, 0xc4, 0x55, 0x94, + 0x85, 0x8a, 0x24, 0x93, 0x5c, 0x7d, 0xc0, 0x7b, 0xda, 0x8d, 0xe1, 0xf1, 0xee, 0x16, 0xe2, 0xdd, + 0xa5, 0x41, 0xf5, 0x88, 0x77, 0x1f, 0xae, 0x77, 0x42, 0xbc, 0x9b, 0xf6, 0x75, 0x22, 0xde, 0x0d, + 0x81, 0x06, 0x02, 0x0d, 0x04, 0x1a, 0x08, 0x34, 0x5b, 0x56, 0x1b, 0xe2, 0xdd, 0x79, 0x7f, 0x10, + 0xef, 0x56, 0xd2, 0x2d, 0xe2, 0xdd, 0xaa, 0xc5, 0x2e, 0xc4, 0xbb, 0x2b, 0x3d, 0x99, 0x10, 0xef, + 0x2e, 0xf4, 0xfe, 0x11, 0xef, 0x06, 0x9d, 0x02, 0x9d, 0x02, 0x9d, 0x02, 0x9d, 0x3a, 0x24, 0x3a, + 0x85, 0x78, 0x37, 0xe2, 0xdd, 0xd9, 0x88, 0x1d, 0xe2, 0xdd, 0x46, 0xa1, 0x3b, 0xc4, 0xbb, 0xb7, + 0xf4, 0x53, 0x74, 0xbc, 0x7b, 0x1a, 0x86, 0x45, 0xa9, 0xf2, 0xf2, 0x4f, 0x99, 0xa2, 0xa7, 0x4a, + 0x5d, 0x49, 0xae, 0x81, 0x88, 0x6d, 0xe9, 0x27, 0x48, 0xe0, 0x7a, 0xd6, 0xe7, 0xd7, 0xf7, 0x93, + 0x1b, 0xfe, 0xe4, 0x31, 0xff, 0xeb, 0x75, 0x78, 0xdf, 0xfb, 0x7a, 0x39, 0xbd, 0xcb, 0xaf, 0x9f, + 0x84, 0x08, 0x7f, 0x1f, 0xdf, 0xdf, 0xd7, 0xf9, 0x77, 0x3f, 0xce, 0x6e, 0xef, 0x00, 0x6a, 0xaa, + 0xa8, 0x49, 0xcd, 0x50, 0x9a, 0x92, 0xa1, 0xbc, 0x72, 0x4a, 0x0b, 0x95, 0x53, 0xb4, 0x11, 0x4a, + 0x54, 0x4e, 0xa9, 0x9e, 0xd7, 0x52, 0x56, 0x39, 0x85, 0xd9, 0x36, 0x0f, 0xa5, 0x35, 0x0a, 0x1c, + 0x0d, 0xd9, 0x64, 0xcb, 0x9d, 0x29, 0x3b, 0xff, 0x62, 0x9e, 0x14, 0x31, 0x60, 0x5e, 0xc4, 0x71, + 0x74, 0x61, 0x61, 0x8a, 0x1d, 0x72, 0xd7, 0x8c, 0x53, 0xe4, 0x90, 0xbb, 0x56, 0x98, 0xe2, 0x36, + 0x5f, 0x2d, 0xb7, 0x41, 0xe0, 0x71, 0xe6, 0xeb, 0x38, 0xab, 0xbf, 0x79, 0xc0, 0x09, 0xd4, 0xcc, + 0xb9, 0xe7, 0x42, 0xba, 0xd1, 0x44, 0x27, 0x9a, 0x72, 0xb3, 0x7b, 0x85, 0x87, 0x89, 0x2c, 0x7c, + 0xe0, 0xf6, 0x7e, 0xd5, 0xbb, 0xc3, 0x66, 0xa3, 0x01, 0x67, 0x08, 0x67, 0x08, 0x67, 0x08, 0x67, + 0x68, 0x8e, 0x33, 0x8c, 0x5d, 0x5f, 0x36, 0x7b, 0x1a, 0x7c, 0x61, 0x0f, 0x07, 0xf9, 0xfe, 0xfa, + 0x41, 0x70, 0x90, 0x2f, 0x5d, 0x7f, 0x38, 0xc8, 0xd7, 0xd8, 0x29, 0xd2, 0x69, 0x9c, 0xe3, 0x24, + 0xdf, 0xd2, 0xb5, 0xde, 0x3f, 0x60, 0x32, 0x63, 0xc7, 0x42, 0x8c, 0xe9, 0xc4, 0x6c, 0x13, 0x92, + 0x86, 0x4a, 0xc8, 0xeb, 0x3d, 0x82, 0x5a, 0x80, 0x5a, 0x80, 0x5a, 0x80, 0x5a, 0x18, 0x45, 0x2d, + 0xce, 0x34, 0x30, 0x8b, 0x2e, 0x98, 0x05, 0x98, 0x85, 0xc6, 0x0d, 0x3f, 0x60, 0x16, 0xe6, 0x4e, + 0x91, 0x56, 0x17, 0xc4, 0x02, 0xc4, 0xa2, 0x44, 0xc4, 0x22, 0x14, 0x9c, 0x8f, 0x42, 0xa9, 0x9e, + 0x4f, 0xcc, 0x3a, 0x52, 0x1f, 0x07, 0x19, 0xa3, 0x3b, 0xb0, 0x15, 0xb0, 0x15, 0xb0, 0x15, 0xb0, + 0x15, 0x73, 0xd8, 0x0a, 0xb2, 0x02, 0x74, 0xfa, 0x3b, 0xcb, 0xe1, 0x1e, 0x7b, 0xd4, 0xe6, 0xf5, + 0x92, 0xee, 0xd4, 0xfb, 0x3e, 0x64, 0x00, 0xc0, 0xf1, 0xc1, 0xf1, 0xc1, 0xf1, 0x19, 0xe4, 0xf8, + 0x90, 0x01, 0xb0, 0xf7, 0x0f, 0x74, 0x3a, 0x12, 0x11, 0x06, 0x3a, 0x5d, 0xbe, 0x29, 0x72, 0x00, + 0x3a, 0x5d, 0xbb, 0xd7, 0x68, 0x40, 0xa8, 0x2b, 0x5b, 0xeb, 0x87, 0x2d, 0xd4, 0xe9, 0x8a, 0xfc, + 0xab, 0x8e, 0xf8, 0x23, 0x65, 0x19, 0x84, 0x05, 0x84, 0x05, 0x84, 0xc5, 0x64, 0xc2, 0x82, 0xbc, + 0x02, 0xf0, 0x15, 0x6d, 0x60, 0x14, 0x19, 0xcb, 0xe0, 0x2b, 0xbf, 0x98, 0x22, 0xda, 0x0a, 0x84, + 0x82, 0xae, 0x80, 0xae, 0xec, 0x33, 0x4d, 0xee, 0x5d, 0x21, 0x63, 0xe6, 0x59, 0x49, 0x61, 0x1b, + 0xf5, 0xac, 0x65, 0xbd, 0x43, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0x63, 0x68, 0x85, + 0x1b, 0x2a, 0xb6, 0x5d, 0xcb, 0xf6, 0xab, 0x79, 0xae, 0xb0, 0x8f, 0xe4, 0x9d, 0x19, 0xcf, 0x2d, + 0x16, 0x23, 0x73, 0xdf, 0xd1, 0x30, 0x36, 0x1b, 0x63, 0x74, 0xa6, 0xa7, 0x3e, 0xaa, 0xe4, 0xc2, + 0xd7, 0x76, 0xe6, 0x44, 0xfd, 0x3f, 0xcf, 0x9e, 0x7d, 0x6e, 0x58, 0xe7, 0xfd, 0x1f, 0x9f, 0x9b, + 0xd6, 0x79, 0x7f, 0xfa, 0xb1, 0x39, 0xf9, 0x67, 0xfa, 0xb9, 0xf5, 0xb9, 0x61, 0x75, 0x66, 0x9f, + 0xbb, 0x9f, 0x1b, 0x56, 0xb7, 0x7f, 0xfc, 0xe5, 0xcb, 0x8b, 0xe3, 0xbf, 0xdb, 0x4f, 0xe9, 0x2f, + 0xfc, 0x47, 0xdd, 0xf4, 0x2a, 0xef, 0xcf, 0x2b, 0xb4, 0x88, 0x7a, 0x58, 0x44, 0xb4, 0x8b, 0x88, + 0x59, 0x83, 0x4b, 0xeb, 0x75, 0xff, 0xef, 0xe6, 0xf3, 0xce, 0xd3, 0xc5, 0xf1, 0xdf, 0xa7, 0x4f, + 0xeb, 0x7f, 0xfc, 0xb1, 0xed, 0x6b, 0xcd, 0xe7, 0xa7, 0x4f, 0x17, 0x3b, 0xfe, 0xa7, 0xf7, 0x74, + 0xb1, 0x67, 0x1b, 0xdd, 0xa7, 0x67, 0x1b, 0x5f, 0x1d, 0xff, 0xbd, 0xb5, 0xeb, 0x82, 0xce, 0x8e, + 0x0b, 0xda, 0xbb, 0x2e, 0x68, 0xef, 0xb8, 0x60, 0xe7, 0x2d, 0xb5, 0x76, 0x5c, 0xd0, 0x7d, 0xfa, + 0xb1, 0xf1, 0xfd, 0x67, 0xdb, 0xbf, 0xda, 0x7b, 0x3a, 0xfe, 0xb1, 0xeb, 0xff, 0x4e, 0x9f, 0x7e, + 0x5c, 0x1c, 0x57, 0xc0, 0xa4, 0x98, 0xc6, 0x77, 0x15, 0x21, 0x3b, 0x2d, 0x75, 0xb2, 0xb5, 0xd6, + 0xc7, 0xd6, 0x5a, 0x17, 0x5b, 0x4f, 0x3d, 0x6c, 0xb3, 0xc4, 0x0e, 0xcf, 0xf5, 0xbf, 0x59, 0x5e, + 0x60, 0xeb, 0x28, 0x33, 0xb5, 0xa5, 0x4f, 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, 0x80, + 0xe4, 0x01, 0xc9, 0x03, 0x92, 0x07, 0x24, 0x0f, 0x48, 0x1e, 0x90, 0x3c, 0x20, 0x79, 0x40, 0xf2, + 0x80, 0xe4, 0x81, 0x10, 0xbf, 0x42, 0xd6, 0x3b, 0x39, 0xd6, 0x46, 0x58, 0xae, 0xa3, 0x8f, 0xf4, + 0x2e, 0xba, 0x04, 0xe7, 0x05, 0xe7, 0x05, 0xe7, 0x05, 0xe7, 0x35, 0x86, 0xf3, 0x22, 0x7b, 0xb8, + 0x44, 0x48, 0x1d, 0xd9, 0xc3, 0x74, 0xfd, 0x21, 0x7b, 0xd8, 0xd8, 0x29, 0x82, 0xaa, 0x64, 0xa0, + 0x16, 0x25, 0x69, 0x91, 0xfc, 0x34, 0xd0, 0xf8, 0x6e, 0x0c, 0x78, 0xb8, 0xa3, 0xc4, 0x5d, 0x29, + 0xa6, 0x3b, 0x7b, 0x1d, 0x5a, 0x7d, 0xef, 0x31, 0xff, 0x62, 0xf9, 0x68, 0xd1, 0x09, 0xb0, 0xbb, + 0x98, 0x1c, 0x30, 0x3a, 0xfd, 0xb8, 0x38, 0x66, 0x74, 0xe5, 0xf7, 0x8d, 0xc3, 0x46, 0x55, 0x1c, + 0x3c, 0x39, 0x7f, 0xa6, 0x2b, 0x1e, 0xd9, 0xc2, 0x0d, 0x93, 0x73, 0x59, 0xeb, 0x97, 0x8e, 0xe3, + 0x8e, 0x3f, 0x33, 0xaf, 0xf6, 0xe9, 0xfd, 0xfb, 0x9b, 0x9a, 0xc3, 0x24, 0xab, 0x0d, 0x02, 0x51, + 0xbb, 0xbe, 0xb9, 0xef, 0xd5, 0x16, 0x4f, 0xac, 0x98, 0xe0, 0x35, 0x41, 0xf0, 0x40, 0xf0, 0x40, + 0xf0, 0xaa, 0x4f, 0xf0, 0x54, 0x9d, 0xaf, 0xb9, 0xa1, 0x86, 0x69, 0xc8, 0x01, 0xd9, 0x29, 0x8b, + 0x29, 0xcf, 0x05, 0xd9, 0x65, 0xcd, 0x5f, 0x07, 0x62, 0x6a, 0xc6, 0x03, 0x7f, 0xdd, 0x80, 0x3f, + 0xaf, 0x45, 0x5c, 0x46, 0x35, 0x39, 0xe4, 0xb5, 0xe4, 0x36, 0x6b, 0xe3, 0xdb, 0xac, 0x4d, 0x6e, + 0xf3, 0x8b, 0xaf, 0x27, 0x3c, 0xa2, 0x09, 0x58, 0x2b, 0x37, 0xfb, 0x3a, 0xcd, 0xbf, 0x76, 0x37, + 0xa0, 0xdb, 0x1d, 0x14, 0xe6, 0x16, 0x0a, 0x73, 0x0f, 0x45, 0xb8, 0x09, 0x4d, 0x34, 0x4c, 0xf1, + 0x7a, 0x53, 0xae, 0x0f, 0x6e, 0xac, 0x36, 0x2d, 0xb9, 0x31, 0x1b, 0x70, 0xf8, 0x5c, 0x43, 0x5f, + 0x5a, 0x72, 0x65, 0xd4, 0x32, 0xb4, 0x5f, 0x8c, 0x9c, 0xd6, 0xdc, 0x99, 0x8d, 0x31, 0x3c, 0xd3, + 0xd8, 0xa7, 0xee, 0x34, 0x80, 0x79, 0xc7, 0x55, 0xcb, 0xa9, 0x51, 0xab, 0xfa, 0x68, 0x36, 0x97, + 0xc5, 0x2e, 0xbe, 0x1e, 0x16, 0x9f, 0x9e, 0xc5, 0x87, 0x5c, 0x9c, 0x4a, 0xe6, 0xe2, 0x68, 0x36, + 0x45, 0xc8, 0x2d, 0xd2, 0x2b, 0xb0, 0x94, 0x3c, 0x00, 0xd0, 0xa7, 0x0e, 0x00, 0xf8, 0x7e, 0x20, + 0x59, 0x22, 0x54, 0xd0, 0x3b, 0xa4, 0x7a, 0x64, 0x0f, 0xf9, 0x88, 0x85, 0x4c, 0x0e, 0xa7, 0x8a, + 0x7d, 0xc8, 0x7d, 0x7b, 0xa2, 0x02, 0x58, 0x4b, 0xb2, 0xfd, 0xb6, 0x8f, 0x27, 0xcb, 0x9a, 0xfd, + 0x44, 0xad, 0x5f, 0xe8, 0xf4, 0x3f, 0x57, 0xe8, 0x8f, 0xca, 0x39, 0x7a, 0x84, 0xa0, 0x42, 0x43, + 0x6e, 0x99, 0xb6, 0x9c, 0x32, 0x45, 0xda, 0x93, 0x32, 0xad, 0x49, 0xa5, 0xb6, 0xa4, 0x5c, 0x4b, + 0x52, 0xad, 0x1d, 0x69, 0xd3, 0x8a, 0xb4, 0x69, 0x43, 0x3a, 0xb4, 0xa0, 0x72, 0x87, 0x88, 0x95, + 0x69, 0x3b, 0xf3, 0xd9, 0xee, 0x71, 0x36, 0x10, 0x7c, 0xa0, 0x62, 0xbe, 0xcf, 0x78, 0xc7, 0xa9, + 0x82, 0xb6, 0x6f, 0x12, 0xa7, 0xf6, 0xe2, 0xc5, 0xc9, 0xd4, 0xa5, 0x9d, 0x6c, 0xda, 0xca, 0xb2, + 0xfa, 0xa2, 0xa3, 0x12, 0xcd, 0xb4, 0xb1, 0xd1, 0x50, 0xe9, 0x69, 0xd4, 0x6c, 0x65, 0x57, 0xba, + 0x75, 0x5d, 0xe9, 0x56, 0x75, 0x35, 0x5b, 0xd3, 0xa9, 0x26, 0x83, 0x22, 0x40, 0xaa, 0x15, 0x88, + 0x12, 0x5a, 0xb2, 0x7a, 0x24, 0x45, 0x6c, 0x4b, 0x3f, 0x31, 0x95, 0xd7, 0xb3, 0xbb, 0xfa, 0xfa, + 0x7e, 0x72, 0x57, 0x9f, 0x3c, 0xe6, 0x7f, 0xbd, 0x0e, 0xef, 0x7b, 0x5f, 0x2f, 0xa7, 0xb7, 0xf2, + 0xf5, 0x93, 0x10, 0xe1, 0xef, 0x93, 0x9b, 0x38, 0x2a, 0x87, 0xa5, 0xc8, 0xd7, 0x42, 0xce, 0x69, + 0x45, 0x3d, 0x9d, 0xd4, 0x4f, 0xa3, 0x7c, 0xc3, 0x96, 0xfd, 0x65, 0x67, 0xbb, 0x32, 0xe3, 0xf0, + 0xcc, 0x4c, 0x7e, 0x66, 0x90, 0x4b, 0x63, 0xd3, 0x49, 0x6d, 0x38, 0xa9, 0xcd, 0xa6, 0xb1, 0xd1, + 0x59, 0x47, 0x87, 0x26, 0x2b, 0x30, 0xdf, 0x6a, 0xd3, 0x94, 0xe5, 0x97, 0xd3, 0x54, 0xff, 0x24, + 0x6f, 0xef, 0xfa, 0xa6, 0x36, 0xee, 0xa3, 0x36, 0x60, 0x23, 0xd7, 0x7b, 0xac, 0x4d, 0xad, 0x44, + 0x2c, 0x26, 0xb6, 0xa8, 0x36, 0x08, 0xc4, 0x17, 0x9f, 0x2c, 0x8d, 0x8f, 0x28, 0x5d, 0x8f, 0x8c, + 0x33, 0x53, 0x72, 0x64, 0x72, 0x4e, 0x4c, 0xcd, 0x81, 0x95, 0x71, 0x5e, 0x65, 0x1c, 0x57, 0x05, + 0xa7, 0x2d, 0xd6, 0xcb, 0x53, 0xa5, 0xaf, 0xd5, 0x27, 0x1e, 0x98, 0x6c, 0x66, 0xcc, 0x35, 0xb4, + 0x71, 0xab, 0x44, 0x63, 0xb7, 0x66, 0x70, 0x5e, 0xf9, 0xb6, 0x17, 0x44, 0xae, 0x7f, 0x37, 0x36, + 0x30, 0x92, 0xb9, 0x3e, 0x17, 0x93, 0x3c, 0xe1, 0x49, 0xba, 0xd9, 0x04, 0x8c, 0x46, 0xb5, 0x21, + 0xf3, 0x1d, 0x8f, 0x3b, 0xb5, 0xdb, 0xc7, 0x9a, 0x1c, 0xba, 0xd1, 0x17, 0xff, 0xfa, 0x66, 0x91, + 0x81, 0x46, 0x75, 0x5f, 0xb4, 0x19, 0xc3, 0xe4, 0xf2, 0x9d, 0x0a, 0xd9, 0x4e, 0x99, 0x5c, 0xa7, + 0x4a, 0xa6, 0x53, 0x2e, 0xcf, 0x29, 0x97, 0xe5, 0x54, 0xca, 0x71, 0x4f, 0xd5, 0x20, 0x4c, 0x9a, + 0x19, 0x40, 0x3f, 0x2b, 0xc6, 0xa4, 0x21, 0x66, 0x4a, 0x09, 0x59, 0x8e, 0xd5, 0x91, 0x96, 0xb7, + 0x67, 0x9b, 0xc6, 0xe9, 0x87, 0x2c, 0xdd, 0x15, 0x29, 0xfd, 0x72, 0xde, 0x41, 0x55, 0x32, 0x98, + 0xe9, 0xde, 0xec, 0xfe, 0xef, 0x27, 0xc5, 0xbb, 0xa9, 0xdb, 0x33, 0x6f, 0x96, 0xee, 0x9d, 0xcc, + 0x1d, 0x4c, 0x72, 0x7d, 0xca, 0xd1, 0xc8, 0xe6, 0x92, 0x33, 0xbb, 0xde, 0x3c, 0x2e, 0x36, 0xb7, + 0x2b, 0xcd, 0xeb, 0x32, 0xc9, 0x5c, 0x23, 0x99, 0x0b, 0xa4, 0x70, 0x75, 0x6a, 0x57, 0x7b, 0x56, + 0xd4, 0x5d, 0x77, 0x86, 0x76, 0x68, 0xd9, 0x9e, 0x3b, 0x7d, 0xb8, 0x8c, 0x03, 0x36, 0x9b, 0x31, + 0xcb, 0x8d, 0x65, 0x7c, 0xd3, 0x4b, 0x47, 0x2e, 0x0e, 0x98, 0x17, 0x65, 0xc5, 0xc4, 0x39, 0x43, + 0xd9, 0xb9, 0x31, 0x2f, 0x05, 0xc6, 0x25, 0xc3, 0xb4, 0x54, 0x18, 0x96, 0x1c, 0xb3, 0x92, 0x63, + 0x54, 0x4a, 0x4c, 0xaa, 0x57, 0x85, 0xcd, 0x1d, 0xda, 0x9d, 0xcf, 0x96, 0xdb, 0x20, 0xf0, 0x38, + 0xf3, 0xf3, 0xcc, 0x97, 0x99, 0xb7, 0x6a, 0xea, 0x42, 0x42, 0x19, 0x9c, 0x8c, 0x13, 0x4f, 0xb7, + 0x1d, 0x58, 0x0e, 0x97, 0xdc, 0x96, 0x96, 0x14, 0xcc, 0x8f, 0x46, 0xd3, 0xad, 0xfa, 0x79, 0xcd, + 0xd8, 0xce, 0xa6, 0xf3, 0x1b, 0xb5, 0x26, 0x0c, 0x1a, 0x0c, 0x1a, 0x0c, 0x5a, 0x9a, 0xd9, 0x12, + 0xbb, 0xbe, 0x6c, 0xb7, 0x08, 0xec, 0x59, 0x8e, 0xcc, 0x13, 0xa2, 0x42, 0x42, 0x04, 0xb2, 0x28, + 0x65, 0x21, 0x20, 0xe2, 0x84, 0xbf, 0x79, 0x95, 0x16, 0xaa, 0xf6, 0x14, 0xd4, 0x60, 0x21, 0xc8, + 0x8d, 0x20, 0x2d, 0xb4, 0xa3, 0x6a, 0x08, 0x3a, 0xad, 0xf3, 0xce, 0x79, 0xef, 0xb4, 0x75, 0xde, + 0x2d, 0xf1, 0x58, 0x14, 0xa4, 0xae, 0xf5, 0x4b, 0x0c, 0x6b, 0xb8, 0xcf, 0x6e, 0x3d, 0xee, 0xe4, + 0x07, 0x31, 0xb3, 0x86, 0xf2, 0x43, 0x96, 0xb1, 0x17, 0x03, 0x6a, 0x01, 0x6a, 0x01, 0x6a, 0x01, + 0x0d, 0xdb, 0xb8, 0xc7, 0x91, 0x8c, 0xf3, 0xdb, 0xaa, 0x71, 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0xa0, 0x45, 0x15, 0xa6, 0x45, 0xcd, 0xd6, 0x19, 0x98, 0x51, 0xea, 0x51, 0x68, 0x1f, 0x10, + 0x39, 0xad, 0x3a, 0x21, 0x3a, 0x94, 0x88, 0x77, 0x12, 0x24, 0x2e, 0x41, 0xb8, 0xdb, 0xe7, 0xee, + 0xdd, 0xf0, 0x36, 0x10, 0x51, 0xf6, 0x88, 0xf7, 0xa2, 0x09, 0x04, 0xbd, 0x95, 0x61, 0x2f, 0x04, + 0xbd, 0x35, 0x06, 0xbd, 0x67, 0x33, 0x3a, 0x3f, 0x73, 0x99, 0xb7, 0x94, 0x8f, 0xbe, 0x34, 0x41, + 0x5f, 0x40, 0x5f, 0x4c, 0xa0, 0x2f, 0x79, 0xb3, 0xbb, 0xb3, 0xa6, 0x5f, 0xed, 0x9c, 0x74, 0x99, + 0xd2, 0xb1, 0x88, 0x97, 0x21, 0xd9, 0x72, 0xa4, 0x5c, 0x96, 0xe4, 0xcb, 0x93, 0x7a, 0x99, 0x2a, + 0x5b, 0xae, 0xca, 0x96, 0xad, 0x8a, 0xe5, 0x4b, 0x04, 0xfd, 0xcb, 0xb2, 0x69, 0xc3, 0x55, 0xb0, + 0x65, 0x83, 0x2c, 0x9f, 0x9f, 0x9a, 0xd7, 0x63, 0x63, 0x04, 0x36, 0x46, 0x68, 0x32, 0x0f, 0x34, + 0x66, 0x82, 0x50, 0xea, 0xa9, 0x29, 0xa9, 0x47, 0xa2, 0xba, 0x38, 0xa2, 0x8a, 0xe2, 0x87, 0xca, + 0x8a, 0x1b, 0xa2, 0x78, 0x61, 0x25, 0x8a, 0x17, 0xf6, 0xcb, 0xb2, 0x97, 0x89, 0x00, 0xfa, 0x4d, + 0xcb, 0xf6, 0xb3, 0x47, 0x2e, 0xe6, 0x8b, 0x93, 0xdc, 0xdd, 0x6f, 0xe9, 0x03, 0xee, 0x1f, 0xee, + 0x1f, 0xee, 0xff, 0x80, 0xdc, 0x7f, 0x38, 0x7c, 0x8c, 0xe0, 0xfe, 0x57, 0xfc, 0xdf, 0xba, 0xdb, + 0x6b, 0x3d, 0x1d, 0xff, 0xcf, 0xf1, 0xff, 0x56, 0xd1, 0x4f, 0xa1, 0x48, 0xd1, 0xf6, 0xa0, 0xd2, + 0x3c, 0x0e, 0x33, 0xff, 0x94, 0x29, 0xce, 0x44, 0xf7, 0xbe, 0x73, 0xbc, 0x6b, 0x0a, 0xa1, 0x80, + 0x4e, 0x20, 0x20, 0x42, 0x06, 0xd0, 0xff, 0xa0, 0xff, 0x99, 0x69, 0xf5, 0xc8, 0x3c, 0xb9, 0x82, + 0x42, 0xa2, 0x94, 0x85, 0x43, 0xb7, 0x14, 0x0a, 0x75, 0x43, 0x13, 0xcd, 0xe7, 0xb4, 0xbc, 0x36, + 0x99, 0x05, 0xa5, 0x38, 0x4f, 0x93, 0x3c, 0x88, 0xd2, 0x82, 0x11, 0x85, 0x11, 0x35, 0xc8, 0x88, + 0x22, 0x88, 0x02, 0x15, 0x05, 0x2a, 0x0a, 0x54, 0x94, 0xd2, 0xa8, 0x28, 0x08, 0xa2, 0x20, 0x88, + 0x82, 0x20, 0x0a, 0xad, 0x38, 0x45, 0x00, 0xfd, 0xdc, 0x28, 0xa9, 0xab, 0xaf, 0xc0, 0xcb, 0xcf, + 0x9b, 0x86, 0xb3, 0x87, 0xb3, 0x87, 0xb3, 0x3f, 0x20, 0x67, 0x9f, 0x7f, 0xbf, 0xe9, 0x4e, 0x3f, + 0xdf, 0x44, 0x04, 0x3b, 0x9d, 0xf6, 0x85, 0x08, 0x36, 0xcc, 0x31, 0xcc, 0xf1, 0x41, 0x9b, 0x63, + 0x44, 0xb0, 0x0f, 0x38, 0x82, 0x4d, 0xe0, 0xa7, 0x66, 0x21, 0x5e, 0x8b, 0x46, 0xe9, 0xdf, 0x98, + 0x9f, 0x6b, 0xed, 0xc3, 0x3f, 0xc1, 0x3f, 0xc1, 0x3f, 0x1d, 0x90, 0x7f, 0xe2, 0x7e, 0x3c, 0xe2, + 0xd3, 0x13, 0x70, 0x54, 0xb8, 0xa7, 0x0e, 0x61, 0x9b, 0xaf, 0xfc, 0x78, 0x34, 0x7e, 0x09, 0x4f, + 0x15, 0x32, 0xef, 0x81, 0x70, 0xef, 0x28, 0x2b, 0x56, 0xcc, 0x8d, 0xd0, 0xb4, 0x5d, 0x98, 0x73, + 0x98, 0x73, 0x98, 0xf3, 0x03, 0x32, 0xe7, 0x73, 0x38, 0x47, 0x6a, 0x00, 0x0e, 0xc7, 0xa4, 0x23, + 0xe7, 0x74, 0xef, 0x9c, 0x53, 0x82, 0x93, 0xfd, 0x71, 0x34, 0x66, 0xaa, 0x56, 0x70, 0x34, 0xa6, + 0xca, 0x65, 0xa3, 0x76, 0xb9, 0xe8, 0x38, 0xb7, 0xe8, 0x8f, 0x59, 0x5f, 0x28, 0xe3, 0xa4, 0x68, + 0x38, 0xcb, 0x50, 0xc9, 0x29, 0x39, 0x8b, 0x9d, 0x39, 0xf7, 0x5c, 0x48, 0x37, 0xe2, 0xa3, 0x2c, + 0x47, 0xb6, 0xcc, 0x01, 0xc3, 0xd6, 0xd6, 0x50, 0xdf, 0x49, 0x19, 0x7c, 0x47, 0x7d, 0x27, 0x8d, + 0xf5, 0x9d, 0x72, 0x16, 0x99, 0xa1, 0x29, 0x2e, 0x83, 0xda, 0x4e, 0x0a, 0xd8, 0x2f, 0x6a, 0x3b, + 0xa9, 0xc3, 0x53, 0xb9, 0x6b, 0x3b, 0x4d, 0x3c, 0xe9, 0x3d, 0xf3, 0x08, 0x77, 0x76, 0xcd, 0x5a, + 0xc4, 0xfe, 0x2e, 0x6d, 0x82, 0x15, 0xb6, 0x26, 0x60, 0x7f, 0xd7, 0xaf, 0x67, 0x5b, 0xee, 0xea, + 0xd3, 0xeb, 0x6b, 0x93, 0x62, 0x77, 0x17, 0x4d, 0x35, 0xea, 0xd9, 0x0f, 0xa1, 0x4c, 0x47, 0x59, + 0x9d, 0x9a, 0xd8, 0xa8, 0x6d, 0x34, 0x4b, 0x5c, 0x27, 0x79, 0xde, 0xae, 0x82, 0x7a, 0xc9, 0x44, + 0xcb, 0x63, 0x5d, 0x1f, 0x31, 0x6e, 0xa8, 0xa8, 0x0f, 0xfb, 0xd1, 0x32, 0x66, 0x25, 0x91, 0x7e, + 0xfb, 0x06, 0xee, 0xfe, 0xf4, 0xdc, 0x01, 0x97, 0xee, 0x88, 0x70, 0x03, 0xe8, 0xbc, 0x45, 0x00, + 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0xad, 0xc3, + 0x06, 0x5a, 0x51, 0x1c, 0x86, 0x24, 0x7b, 0x44, 0x16, 0x95, 0x36, 0x66, 0x2d, 0xe6, 0x2d, 0x36, + 0x40, 0x73, 0x4e, 0x3e, 0x80, 0x1b, 0x80, 0x1b, 0x80, 0x9b, 0x12, 0xe0, 0x46, 0xb7, 0x21, 0x8f, + 0x68, 0x23, 0x9e, 0x29, 0x59, 0x37, 0x25, 0xcc, 0xeb, 0xd8, 0x16, 0x2d, 0xcf, 0x55, 0x7c, 0x4f, + 0xcf, 0xe1, 0x9c, 0xf9, 0xf6, 0x8e, 0x90, 0x54, 0x87, 0x22, 0x8b, 0x82, 0xb6, 0x10, 0x05, 0x55, + 0xe7, 0x30, 0x10, 0x05, 0x5d, 0x00, 0x2b, 0x44, 0x41, 0x81, 0xf1, 0x80, 0xf1, 0x80, 0xf1, 0x20, + 0xce, 0x41, 0x9c, 0x83, 0x38, 0x07, 0x71, 0x0e, 0xe2, 0x5c, 0x49, 0xc5, 0x39, 0x44, 0x41, 0x01, + 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x14, + 0x01, 0x2d, 0x44, 0x41, 0x01, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0xb2, 0xcc, 0x36, 0x44, 0x41, 0x2b, + 0x1e, 0x05, 0xcd, 0x51, 0x0e, 0x02, 0x3b, 0xcf, 0x53, 0xbd, 0xea, 0x7a, 0xa6, 0x08, 0xf0, 0x7e, + 0x25, 0x04, 0x26, 0xbf, 0x8b, 0xcb, 0x95, 0xee, 0x4a, 0xb0, 0xe7, 0x3d, 0x5b, 0x00, 0x3b, 0x57, + 0xe0, 0x3a, 0xf7, 0xae, 0xf6, 0x16, 0x76, 0xb5, 0x17, 0xe8, 0xa3, 0x2b, 0xbd, 0xab, 0x3d, 0x1e, + 0xaf, 0xdf, 0x88, 0x62, 0x5f, 0x7b, 0xd2, 0x12, 0x76, 0xb6, 0x23, 0xa7, 0xa3, 0x10, 0xb8, 0x6b, + 0x5c, 0x4e, 0x87, 0xe5, 0xb8, 0x91, 0xcd, 0x84, 0xc3, 0x1d, 0x2b, 0xfc, 0x26, 0x23, 0xca, 0xe4, + 0x8e, 0xf5, 0xa6, 0xc1, 0x61, 0xc1, 0x61, 0xc1, 0x61, 0x4b, 0xc4, 0x61, 0x13, 0x77, 0xd9, 0xeb, + 0x10, 0xb2, 0xd8, 0x33, 0xc4, 0x1f, 0x0a, 0xb1, 0x6b, 0x1b, 0xcd, 0x22, 0xfe, 0x60, 0xdc, 0x50, + 0x35, 0xcf, 0x3a, 0x9d, 0xde, 0x69, 0xa7, 0xd3, 0x38, 0x6d, 0x9f, 0x36, 0xce, 0xbb, 0xdd, 0x66, + 0xaf, 0x89, 0x48, 0x44, 0xea, 0x1f, 0x13, 0x23, 0x11, 0xae, 0x6f, 0x71, 0x21, 0x02, 0x41, 0x8f, + 0xc1, 0x96, 0x9a, 0x05, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x02, + 0xfe, 0x02, 0xfe, 0x02, 0xfe, 0x5a, 0xc6, 0x5f, 0x83, 0x40, 0x7c, 0x9f, 0x8a, 0x55, 0x81, 0x2d, + 0x39, 0x31, 0x0a, 0xdb, 0x68, 0x1c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, + 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x0c, 0x58, 0x6c, 0x3b, 0x16, 0x23, 0xd7, 0xc3, 0xd6, 0x9a, 0x06, + 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, 0x0e, 0x03, + 0x0e, 0x5b, 0xc6, 0x61, 0x0a, 0x94, 0x30, 0xe8, 0x5f, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, + 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0x5b, 0x70, 0x17, 0xb9, 0xea, 0x05, 0xad, + 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, 0x0b, 0x98, + 0x6b, 0x75, 0x58, 0x82, 0x58, 0x2a, 0xdb, 0x08, 0xb9, 0xa5, 0x6d, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0xb1, 0x15, 0x24, 0xa6, + 0x62, 0x2b, 0xe4, 0x5a, 0xbb, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, + 0x60, 0x40, 0x60, 0x40, 0x60, 0x40, 0x60, 0x2b, 0x08, 0x4c, 0xdd, 0x66, 0xc8, 0xad, 0xad, 0x03, + 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, + 0x8d, 0xed, 0x40, 0x63, 0xf4, 0x9a, 0x18, 0xf6, 0x43, 0x02, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, + 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0xfd, 0x0c, 0x89, 0xa9, 0x50, 0xc3, 0xa0, + 0x81, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, 0x79, 0x01, + 0x79, 0x6d, 0x43, 0x5e, 0xf4, 0xca, 0x17, 0xf4, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, + 0x2e, 0xa0, 0x2e, 0xa0, 0x2e, 0xa0, 0xae, 0x4a, 0xa2, 0xae, 0x43, 0x3f, 0xda, 0x7b, 0x72, 0x52, + 0xf2, 0x49, 0xce, 0x73, 0x61, 0x6b, 0x69, 0x4e, 0x9c, 0x7e, 0x39, 0xeb, 0x4b, 0xd7, 0xd1, 0xe1, + 0x19, 0x4e, 0x47, 0x76, 0x86, 0x76, 0x68, 0xd9, 0x9e, 0x3b, 0x85, 0x22, 0x39, 0x0f, 0xdd, 0x5d, + 0x6e, 0x2c, 0xeb, 0x39, 0xa6, 0x7c, 0xc0, 0x62, 0x6f, 0x02, 0x8b, 0x06, 0xcc, 0x8b, 0x78, 0xce, + 0xf3, 0x7b, 0x1b, 0x38, 0xbf, 0x17, 0xe7, 0xf7, 0x9a, 0x60, 0x30, 0x73, 0xc3, 0xe7, 0xf9, 0x6c, + 0xb9, 0x0d, 0x02, 0x8f, 0x33, 0x3f, 0xcf, 0x7c, 0x99, 0x1d, 0x7e, 0xdd, 0x2c, 0xb3, 0xe1, 0x8a, + 0x43, 0x8b, 0x39, 0x8e, 0xb0, 0x1c, 0x2e, 0xb9, 0x2d, 0x2d, 0x29, 0x98, 0x1f, 0x8d, 0x5c, 0x49, + 0x70, 0x76, 0xf8, 0xee, 0xa6, 0xf3, 0x1b, 0xb5, 0x26, 0x0c, 0x1a, 0x0c, 0x1a, 0x0c, 0x5a, 0x9a, + 0xd9, 0x12, 0xbb, 0xbe, 0x6c, 0xb7, 0x08, 0xec, 0xd9, 0x69, 0x8e, 0x26, 0x68, 0x48, 0x3f, 0x81, + 0x3a, 0x42, 0x49, 0xf2, 0x89, 0x19, 0x23, 0x35, 0xa9, 0x57, 0x41, 0x07, 0x09, 0x48, 0x3c, 0x29, + 0x79, 0x57, 0x35, 0x04, 0x9d, 0xd6, 0x79, 0xe7, 0xbc, 0x77, 0xda, 0x3a, 0xef, 0x96, 0x78, 0x2c, + 0x0a, 0xa2, 0xc2, 0xfd, 0x12, 0xc3, 0x1a, 0xee, 0xb3, 0x5b, 0x8f, 0x3b, 0xf9, 0x41, 0xcc, 0xac, + 0xa1, 0xfc, 0x90, 0x65, 0xec, 0xc5, 0x80, 0x5a, 0x80, 0x5a, 0x80, 0x5a, 0x40, 0xc3, 0x36, 0xee, + 0x71, 0x24, 0xe3, 0xfc, 0xb6, 0x6a, 0xdc, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x68, 0x51, + 0x85, 0x69, 0x51, 0xb3, 0x75, 0x06, 0x66, 0x94, 0x7a, 0x14, 0xda, 0x07, 0x44, 0x4e, 0xab, 0x4e, + 0x88, 0x8e, 0x14, 0x4e, 0xc8, 0xbc, 0x31, 0x47, 0xf2, 0x58, 0x63, 0x3a, 0x97, 0xb4, 0xff, 0xbb, + 0x49, 0xf1, 0x5e, 0xea, 0xb1, 0xef, 0xc7, 0xa3, 0x5b, 0x2e, 0x32, 0x30, 0xca, 0x85, 0xa3, 0x59, + 0xb4, 0x91, 0x72, 0x44, 0x66, 0x00, 0x36, 0xe5, 0x65, 0x59, 0x41, 0x59, 0x1e, 0x30, 0xb6, 0x02, + 0xc2, 0x06, 0x19, 0xbc, 0x6a, 0x5e, 0xf0, 0x45, 0x06, 0xba, 0xc8, 0xc0, 0xd6, 0x06, 0xc8, 0x1a, + 0xd4, 0x4b, 0xb6, 0xe2, 0xaf, 0x5c, 0x91, 0x6d, 0xb0, 0xed, 0xd9, 0x0c, 0xcb, 0x49, 0x5c, 0x92, + 0x76, 0xf2, 0x71, 0x97, 0x66, 0x55, 0xb8, 0xcb, 0x00, 0xdc, 0x45, 0xd3, 0xb2, 0x2a, 0x86, 0xbb, + 0x64, 0x5d, 0x6e, 0x64, 0xe2, 0x26, 0xb1, 0xc8, 0xb9, 0x78, 0x30, 0x9a, 0xa4, 0x13, 0x62, 0xfe, + 0x50, 0xfe, 0x5c, 0xf0, 0x01, 0x72, 0xc1, 0x29, 0x1a, 0x26, 0x34, 0x08, 0x44, 0x4c, 0xa2, 0x74, + 0xb9, 0xe0, 0xf9, 0xd5, 0xd4, 0x0d, 0xaf, 0xdb, 0x3c, 0x88, 0x44, 0xcc, 0x57, 0x0f, 0x13, 0x6e, + 0x9a, 0x5d, 0x9f, 0xa1, 0x73, 0xc7, 0x81, 0x6d, 0xf1, 0x07, 0x79, 0x21, 0xb9, 0xc7, 0x47, 0x5c, + 0x8a, 0x47, 0x2b, 0xf0, 0x2d, 0x7b, 0x38, 0x11, 0x90, 0x48, 0x5d, 0xf4, 0xc4, 0x84, 0x13, 0xfa, + 0x68, 0xdd, 0xee, 0xb9, 0x5f, 0x9d, 0x9c, 0xdb, 0x05, 0x75, 0x3c, 0x49, 0xa0, 0x72, 0x89, 0x43, + 0x19, 0xf3, 0xe7, 0xb0, 0x04, 0x1f, 0xe4, 0xe7, 0x06, 0xab, 0xcd, 0x81, 0x22, 0x80, 0x22, 0x80, + 0x22, 0x28, 0x67, 0xe6, 0xb4, 0x0c, 0x9d, 0x68, 0x19, 0x02, 0xd0, 0x03, 0xd0, 0x9b, 0x0d, 0xe8, + 0xf3, 0x2e, 0xeb, 0x4d, 0x1f, 0x4b, 0x37, 0x3d, 0x36, 0xfc, 0x2d, 0xd5, 0xf4, 0x20, 0x8e, 0x02, + 0x52, 0x2d, 0x7e, 0x15, 0x46, 0x40, 0x99, 0x31, 0x50, 0x65, 0x14, 0x94, 0x1b, 0x07, 0xe5, 0x46, + 0x42, 0xa5, 0xb1, 0xa0, 0x31, 0x1a, 0x44, 0xc6, 0x83, 0x5e, 0x15, 0xd8, 0x98, 0xad, 0x1e, 0x67, + 0x83, 0xec, 0x20, 0xfb, 0xa7, 0x1e, 0xff, 0x94, 0xb0, 0xcd, 0x9b, 0x39, 0xa5, 0x1a, 0x0f, 0xf3, + 0xc5, 0x12, 0x85, 0x5a, 0xfb, 0x43, 0xf2, 0xfb, 0x64, 0x87, 0x61, 0x49, 0xb6, 0xad, 0x52, 0x64, + 0x07, 0x44, 0xf1, 0xad, 0x42, 0xfb, 0xbf, 0xd2, 0x3a, 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5c, + 0x80, 0xb1, 0x2e, 0xe0, 0xf3, 0xc2, 0x05, 0xfc, 0xd3, 0x8e, 0x85, 0xe0, 0xbe, 0x7c, 0x76, 0x7c, + 0xf2, 0xe2, 0xc5, 0x42, 0x6d, 0xeb, 0x27, 0x97, 0x2c, 0xdb, 0xbd, 0x68, 0xcb, 0xdf, 0xe6, 0x2d, + 0x3b, 0xfc, 0xa1, 0x34, 0xde, 0xa4, 0x50, 0x36, 0x93, 0x5b, 0x13, 0x9f, 0xfd, 0xd0, 0x13, 0x5c, + 0x65, 0x1a, 0xf9, 0x0e, 0x63, 0x46, 0xa0, 0x95, 0x6f, 0xb5, 0x62, 0x45, 0x13, 0xde, 0x7e, 0x5e, + 0x01, 0x8e, 0x46, 0x4b, 0x5f, 0x40, 0x1f, 0x25, 0x9a, 0xfa, 0x8a, 0xc4, 0x9c, 0x4b, 0x61, 0xcf, + 0xff, 0xd6, 0x9f, 0x72, 0x15, 0xd4, 0x60, 0x92, 0xd3, 0x69, 0x7e, 0xd3, 0xe6, 0x4a, 0x26, 0xf9, + 0xb5, 0x20, 0xf9, 0x41, 0xf2, 0x83, 0xe4, 0x07, 0xc9, 0x0f, 0x7c, 0x0f, 0x7c, 0x0f, 0x7c, 0x0f, + 0x7c, 0x0f, 0x92, 0x1f, 0x24, 0x3f, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0x48, 0x7e, + 0x8a, 0xd9, 0x8c, 0x89, 0x7a, 0x4e, 0x86, 0x4d, 0x84, 0x84, 0x72, 0xce, 0xa1, 0x97, 0x8b, 0xdd, + 0x35, 0x2c, 0x3a, 0x0a, 0xc7, 0xfe, 0x39, 0xef, 0xfb, 0xeb, 0xfc, 0x4b, 0xef, 0xf9, 0xa0, 0xcc, + 0xc9, 0xb3, 0xf9, 0x24, 0x3c, 0x12, 0xe9, 0x8e, 0x2c, 0x59, 0xb6, 0x85, 0x64, 0x59, 0x75, 0x50, + 0x0b, 0xc9, 0xb2, 0x64, 0x12, 0x1b, 0xf6, 0xd3, 0x15, 0xc3, 0xc5, 0xa0, 0xc5, 0x97, 0x9a, 0x63, + 0x61, 0x3f, 0xdd, 0xaf, 0x67, 0x1b, 0xf6, 0xd3, 0x55, 0x12, 0xa9, 0xe6, 0xa0, 0x0c, 0xa8, 0xe6, + 0xb2, 0xc7, 0x0b, 0xae, 0x67, 0x42, 0xc6, 0x69, 0x41, 0xbf, 0xb2, 0xc2, 0x31, 0x47, 0x84, 0x03, + 0x95, 0x75, 0x80, 0x08, 0x07, 0x26, 0xc5, 0x68, 0xec, 0x3b, 0x0a, 0xfb, 0xbd, 0xfa, 0x5f, 0xbf, + 0xc8, 0x3d, 0x5e, 0x62, 0x4a, 0xca, 0x94, 0x89, 0x22, 0xa5, 0xa4, 0x44, 0xa9, 0x29, 0x50, 0x16, + 0x24, 0xb4, 0x8c, 0x78, 0xc6, 0x43, 0x99, 0x66, 0x14, 0x33, 0x62, 0x9b, 0xdc, 0x18, 0x26, 0x37, + 0x56, 0x59, 0xc7, 0x24, 0x93, 0x07, 0x2f, 0x68, 0xe1, 0xa6, 0xa5, 0x1d, 0xf5, 0xc9, 0xcd, 0x66, + 0x2e, 0x1f, 0x95, 0x72, 0x8c, 0x73, 0x00, 0xfe, 0xc2, 0x0b, 0x47, 0x65, 0x78, 0xd4, 0xda, 0x41, + 0x94, 0x8e, 0x4a, 0x37, 0xdd, 0xf5, 0x00, 0x8c, 0xcc, 0xa0, 0x7a, 0xa9, 0x30, 0xda, 0xd8, 0xf9, + 0x65, 0x18, 0xef, 0x99, 0x55, 0x3e, 0xcf, 0x70, 0x6d, 0x72, 0xdb, 0xd9, 0x92, 0x57, 0x89, 0xca, + 0x8e, 0x36, 0x7b, 0x04, 0x65, 0x47, 0x7b, 0x28, 0x3b, 0xaa, 0x44, 0xe6, 0x98, 0x37, 0x87, 0xd3, + 0x18, 0x4a, 0x33, 0x04, 0xbd, 0x6e, 0xb7, 0x8d, 0x83, 0x18, 0x36, 0x7e, 0xfa, 0x3a, 0xa9, 0x3b, + 0x81, 0xed, 0x8b, 0xa4, 0x70, 0xfd, 0x3b, 0x8a, 0x92, 0xee, 0x67, 0x9a, 0x38, 0x7a, 0x1f, 0x54, + 0xf2, 0x97, 0x54, 0x32, 0x85, 0x68, 0xb2, 0x07, 0xf1, 0x3b, 0xca, 0xf1, 0x42, 0xea, 0x97, 0xf1, + 0xdd, 0x18, 0x35, 0x4d, 0x24, 0xfd, 0x5f, 0xfb, 0xb6, 0x94, 0xc4, 0x71, 0xaf, 0x1c, 0xb4, 0xf1, + 0x1b, 0xb9, 0x58, 0x7a, 0x3b, 0xfb, 0x12, 0xcd, 0x2b, 0x1e, 0xd9, 0xc2, 0x0d, 0x93, 0x31, 0xac, + 0x5f, 0xdf, 0xdc, 0x77, 0x6a, 0xcc, 0x71, 0x04, 0x8f, 0xa2, 0xda, 0x80, 0x8d, 0x5c, 0xef, 0xb1, + 0x36, 0x1d, 0x9a, 0x58, 0x4c, 0x06, 0xba, 0x36, 0x08, 0xc4, 0x17, 0x7f, 0x71, 0x2f, 0xaa, 0x09, + 0x6d, 0x43, 0x0f, 0xa1, 0x4d, 0x55, 0xbf, 0xbf, 0x3a, 0x74, 0x36, 0x4d, 0xfd, 0xfd, 0x82, 0xc9, + 0xac, 0x1b, 0xde, 0x77, 0xb2, 0x93, 0xd9, 0xc9, 0xd5, 0x69, 0xab, 0xd4, 0xae, 0x2e, 0x8d, 0x1b, + 0x26, 0xd8, 0x88, 0x4b, 0x2e, 0xa2, 0xf1, 0x1a, 0xa8, 0xc9, 0x21, 0xaf, 0x6d, 0x59, 0x2d, 0x2f, + 0x0e, 0xa5, 0xd6, 0x72, 0x08, 0xc2, 0x4c, 0x74, 0xa0, 0xc5, 0x53, 0xb1, 0xbe, 0x9e, 0x42, 0x13, + 0x2d, 0xb7, 0x47, 0xeb, 0xc1, 0xa3, 0xc1, 0xa3, 0x95, 0xd2, 0xa3, 0xf5, 0x72, 0x79, 0xb4, 0x9e, + 0x12, 0x8f, 0xd6, 0x83, 0x47, 0x83, 0x47, 0xab, 0xb8, 0x47, 0xfb, 0xe9, 0x37, 0xfa, 0xbf, 0x22, + 0x7b, 0xe9, 0x58, 0x2f, 0x0d, 0xdb, 0xad, 0xef, 0x15, 0x98, 0xfc, 0x55, 0xac, 0xf4, 0xe7, 0x43, + 0xb9, 0xfb, 0xb5, 0xfc, 0xc4, 0x06, 0xd6, 0xa3, 0xc0, 0xe7, 0xf2, 0x97, 0x6f, 0x62, 0xa1, 0xc5, + 0x4c, 0xbe, 0xfe, 0x8b, 0x57, 0xbc, 0x9f, 0x09, 0xd9, 0xdb, 0x64, 0xa4, 0x31, 0x11, 0xcb, 0x26, + 0xc1, 0x73, 0x7d, 0x6e, 0xd9, 0xc1, 0x68, 0x9f, 0x97, 0x9f, 0xd2, 0x10, 0x64, 0x5e, 0xf8, 0x99, + 0x17, 0xfa, 0xfa, 0xc2, 0x9e, 0x3f, 0x9c, 0x6a, 0x6d, 0x44, 0xdb, 0x72, 0xd9, 0x67, 0x6a, 0xfd, + 0x74, 0xa1, 0x7c, 0x98, 0x34, 0xa0, 0x62, 0x8d, 0xec, 0x95, 0x32, 0x90, 0x2a, 0x55, 0x20, 0xf5, + 0x1a, 0x69, 0xa9, 0x59, 0x23, 0x7b, 0x25, 0x3f, 0x9a, 0xb7, 0x3a, 0xf6, 0x49, 0x3e, 0xcc, 0xb7, + 0x2e, 0xf6, 0xc5, 0x8b, 0x75, 0xe6, 0x8c, 0x5c, 0xdf, 0x1a, 0xcf, 0x89, 0x38, 0x4a, 0x9f, 0x76, + 0xb2, 0x72, 0x75, 0x3a, 0x6a, 0xd3, 0x28, 0x2b, 0xb5, 0x19, 0x1c, 0x26, 0xb5, 0x19, 0x14, 0x45, + 0x6d, 0x52, 0x87, 0xdc, 0x97, 0x12, 0xd3, 0xe3, 0x11, 0x9f, 0xf2, 0xec, 0x34, 0x63, 0x36, 0xb3, + 0x6d, 0x9d, 0x14, 0xd7, 0xbc, 0xf2, 0xe3, 0xd1, 0xf8, 0x26, 0x69, 0x1f, 0x3d, 0x75, 0xcd, 0xa9, + 0xec, 0xb3, 0x8c, 0xac, 0x86, 0x54, 0xfe, 0x5a, 0x51, 0x19, 0x6b, 0x42, 0xa5, 0x88, 0xf0, 0xe5, + 0x7e, 0x4d, 0x41, 0x98, 0xcc, 0x2b, 0xe6, 0x19, 0xf3, 0x7a, 0xf6, 0xfa, 0x66, 0x9f, 0x24, 0x49, + 0xd1, 0x0e, 0xe2, 0x31, 0xac, 0xc9, 0xe0, 0x30, 0xe6, 0x57, 0x56, 0x44, 0x07, 0x83, 0xb3, 0x28, + 0xb9, 0x0e, 0x66, 0x33, 0x21, 0x5c, 0x2e, 0x2c, 0x29, 0x98, 0x1f, 0xb9, 0xe3, 0x25, 0x1d, 0x65, + 0x97, 0xc5, 0xb6, 0x35, 0x76, 0x18, 0x49, 0x8c, 0x38, 0xfd, 0x32, 0xf7, 0x42, 0xc8, 0xa8, 0x5f, + 0x69, 0x4f, 0x60, 0x4c, 0x4c, 0x74, 0xaf, 0x93, 0x23, 0x89, 0xf1, 0x2c, 0xc3, 0xa5, 0xf9, 0xd2, + 0xf7, 0x72, 0x24, 0xf2, 0x50, 0xa4, 0xeb, 0x51, 0xed, 0x46, 0x24, 0x4a, 0xcf, 0xa3, 0xcc, 0x07, + 0xcb, 0x53, 0xc3, 0x91, 0x22, 0x0d, 0x8f, 0xfa, 0xd5, 0x36, 0xcf, 0x3a, 0x9d, 0xde, 0x69, 0xa7, + 0xd3, 0x38, 0x6d, 0x9f, 0x36, 0xce, 0xbb, 0xdd, 0x66, 0xaf, 0xd9, 0x2d, 0xd1, 0xdb, 0x2e, 0x67, + 0x0e, 0x58, 0x4a, 0x2b, 0x94, 0xb9, 0x98, 0x6e, 0x7e, 0x47, 0x41, 0x5e, 0x2c, 0x97, 0xae, 0x38, + 0x6e, 0xce, 0x62, 0xb8, 0xe9, 0x06, 0xb9, 0xaf, 0xe4, 0xe8, 0x70, 0xd7, 0xb7, 0x6e, 0x45, 0xc0, + 0x1c, 0x9b, 0x45, 0xd2, 0x0a, 0xbf, 0xc9, 0x1c, 0x60, 0x6a, 0xb3, 0x29, 0x40, 0x29, 0x40, 0x29, + 0x40, 0x29, 0x40, 0x29, 0x40, 0x29, 0x40, 0xa9, 0xea, 0x42, 0x29, 0x55, 0x7e, 0xd9, 0x71, 0x23, + 0x9b, 0x09, 0x27, 0x9f, 0x47, 0x9e, 0x37, 0x02, 0x5f, 0x0c, 0x5f, 0x0c, 0x5f, 0x0c, 0x5f, 0x0c, + 0x5f, 0x0c, 0x5f, 0x0c, 0x5f, 0x9c, 0xd6, 0x17, 0x73, 0x21, 0x02, 0x91, 0xcf, 0x13, 0x27, 0x4d, + 0xc0, 0x0f, 0xc3, 0x0f, 0xc3, 0x0f, 0xc3, 0x0f, 0xc3, 0x0f, 0xc3, 0x0f, 0xc3, 0x0f, 0xa7, 0xf5, + 0xc3, 0x03, 0x3b, 0xa2, 0xf0, 0xc5, 0x4b, 0xcd, 0xc0, 0x1f, 0xc3, 0x1f, 0xc3, 0x1f, 0xc3, 0x1f, + 0xc3, 0x1f, 0xc3, 0x1f, 0xc3, 0x1f, 0xa7, 0xf5, 0xc7, 0xa3, 0xd8, 0x93, 0x2e, 0x4d, 0xec, 0x78, + 0xad, 0x29, 0xf8, 0x65, 0xf8, 0x65, 0xf8, 0x65, 0xf8, 0x65, 0xf8, 0x65, 0xf8, 0x65, 0xf8, 0xe5, + 0xb4, 0x7e, 0x39, 0xb0, 0x25, 0xcf, 0xe9, 0x8f, 0x93, 0x26, 0xe0, 0x87, 0xe1, 0x87, 0xe1, 0x87, + 0xe1, 0x87, 0xe1, 0x87, 0xe1, 0x87, 0xe1, 0x87, 0xd3, 0xfa, 0xe1, 0xdc, 0xac, 0x18, 0x5c, 0x18, + 0x3e, 0x18, 0x3e, 0x18, 0x3e, 0x18, 0x3e, 0x18, 0x3e, 0x18, 0x3e, 0x38, 0x93, 0x0f, 0x8e, 0x7d, + 0x22, 0x85, 0x7a, 0xa5, 0x21, 0xf8, 0x64, 0xf8, 0x64, 0xf8, 0x64, 0xf8, 0x64, 0xf8, 0x64, 0xf8, + 0x64, 0xf8, 0xe4, 0xf4, 0x3e, 0xf9, 0x9b, 0x1f, 0x7c, 0xf7, 0xad, 0x50, 0x04, 0x32, 0xc8, 0xeb, + 0x95, 0x57, 0x9a, 0x82, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, + 0x5f, 0x4e, 0xe5, 0x97, 0xbd, 0x31, 0xb9, 0xb5, 0x3d, 0xce, 0x44, 0x76, 0x87, 0xbc, 0xd4, 0x06, + 0x3c, 0x31, 0x3c, 0x71, 0xa5, 0x3c, 0xb1, 0x74, 0x47, 0x5c, 0xba, 0xf6, 0xb7, 0x48, 0xbb, 0x2f, + 0xfe, 0xd3, 0x9f, 0xda, 0xb1, 0xba, 0xcf, 0xfc, 0x20, 0xe2, 0x76, 0xe0, 0xa7, 0xde, 0xd1, 0x0f, + 0x9f, 0x0e, 0x9f, 0x0e, 0x9f, 0x5e, 0x66, 0x9f, 0x8e, 0x92, 0x6c, 0x28, 0xc9, 0x36, 0x7e, 0x82, + 0x20, 0x96, 0x64, 0x35, 0xd9, 0xb6, 0xb4, 0x05, 0x58, 0x06, 0x58, 0x06, 0x81, 0x04, 0x02, 0x09, + 0xc0, 0x14, 0xc0, 0x14, 0x04, 0x92, 0xd4, 0x9e, 0x39, 0x7f, 0x55, 0xb6, 0x95, 0x56, 0xe0, 0x8d, + 0xe1, 0x8d, 0xe1, 0x8d, 0xe1, 0x8d, 0xe1, 0x8d, 0xe1, 0x8d, 0xe1, 0x8d, 0x53, 0x7b, 0xe3, 0xbc, + 0xb5, 0x60, 0x96, 0xda, 0x80, 0x27, 0x86, 0x27, 0x86, 0x27, 0x86, 0x27, 0x86, 0x27, 0x86, 0x27, + 0x86, 0x27, 0x4e, 0xed, 0x89, 0xa9, 0x2a, 0xc1, 0x6c, 0x69, 0x0b, 0x9e, 0x19, 0x9e, 0x19, 0x9e, + 0x19, 0x9e, 0x19, 0x9e, 0x19, 0x9e, 0x19, 0x9e, 0x39, 0xb5, 0x67, 0xce, 0x5b, 0x0b, 0x66, 0xa9, + 0x0d, 0x78, 0x62, 0x78, 0x62, 0x78, 0x62, 0x78, 0x62, 0x78, 0x62, 0x78, 0x62, 0x78, 0xe2, 0xd4, + 0x9e, 0x38, 0x3f, 0x33, 0x06, 0x1f, 0x86, 0x17, 0x86, 0x17, 0x86, 0x17, 0x86, 0x17, 0x86, 0x17, + 0x86, 0x17, 0xce, 0xe6, 0x85, 0x69, 0xea, 0xc1, 0x6c, 0xb4, 0x04, 0xaf, 0x0c, 0xaf, 0x0c, 0xaf, + 0x0c, 0xaf, 0x0c, 0xaf, 0x0c, 0xaf, 0x0c, 0xaf, 0xbc, 0xe7, 0x37, 0xf7, 0x9c, 0x53, 0xe9, 0x37, + 0xbb, 0xa5, 0xf4, 0xea, 0x9b, 0x9b, 0xdb, 0x82, 0x90, 0x0b, 0x36, 0x1e, 0x4b, 0xe6, 0xa5, 0x75, + 0xed, 0xb9, 0x37, 0xb3, 0x65, 0xdc, 0xc4, 0xb6, 0xdf, 0x2b, 0xef, 0xef, 0xf9, 0xca, 0x2f, 0x7d, + 0x3f, 0x90, 0x93, 0x37, 0x90, 0x6a, 0xe5, 0xd6, 0x23, 0x7b, 0xc8, 0x47, 0x2c, 0x64, 0x72, 0x38, + 0xbe, 0xfb, 0x93, 0x20, 0xe4, 0xbe, 0x3d, 0x01, 0x2d, 0x96, 0x3b, 0x76, 0x27, 0x03, 0x66, 0xf3, + 0xe8, 0x64, 0xdb, 0xc7, 0x93, 0x48, 0x32, 0xc9, 0x4f, 0x12, 0xb7, 0x93, 0x06, 0x50, 0xd5, 0x23, + 0x29, 0x62, 0x5b, 0xfa, 0x89, 0xe3, 0xba, 0x9e, 0xb5, 0xf8, 0xf5, 0xe5, 0xac, 0xad, 0x23, 0x9a, + 0xf7, 0xb7, 0xc7, 0x74, 0xad, 0x3b, 0x3c, 0xb2, 0x85, 0x1b, 0xa6, 0x7a, 0x71, 0x73, 0x9f, 0xbb, + 0x7c, 0xf1, 0x9e, 0xe3, 0x94, 0xce, 0x2a, 0xa6, 0x06, 0x90, 0x59, 0x80, 0x63, 0x66, 0xc0, 0x98, + 0x15, 0x28, 0xe6, 0x06, 0x88, 0xb9, 0x81, 0x61, 0x1e, 0x40, 0x48, 0x6b, 0x2a, 0x53, 0x03, 0xbf, + 0xf9, 0x68, 0x45, 0x52, 0xb8, 0xfe, 0x5d, 0x9a, 0xe1, 0x4a, 0xe6, 0x5e, 0xf3, 0x4c, 0xe3, 0xfa, + 0xe2, 0x3e, 0xbb, 0xf5, 0xb8, 0x93, 0x7e, 0x6d, 0xcd, 0x2e, 0xdc, 0xf3, 0x3d, 0x5e, 0xf1, 0x01, + 0x8b, 0xbd, 0xc9, 0x78, 0x8e, 0xa7, 0x03, 0x96, 0x23, 0x96, 0xa3, 0xde, 0xe5, 0x78, 0x1b, 0x04, + 0x1e, 0x67, 0x7e, 0x96, 0xf5, 0xd8, 0xd4, 0xb8, 0x1e, 0x87, 0x4c, 0x38, 0xdf, 0x99, 0xe0, 0x56, + 0x18, 0x08, 0x99, 0x7e, 0x55, 0xae, 0x5e, 0x5e, 0x8d, 0x45, 0x96, 0xe2, 0x51, 0xaa, 0xb5, 0xcc, + 0x26, 0x0f, 0x6e, 0xdc, 0x42, 0xf3, 0x38, 0x1b, 0x08, 0x3e, 0xc8, 0xb2, 0xd0, 0x4e, 0x53, 0x5c, + 0x73, 0x33, 0x87, 0xc4, 0xb6, 0x15, 0x7a, 0x4c, 0x0e, 0x02, 0x31, 0xba, 0xb0, 0x83, 0x51, 0x18, + 0xf8, 0xdc, 0x97, 0xd1, 0xf6, 0x3f, 0xaf, 0xfc, 0x75, 0x02, 0x70, 0x35, 0x2e, 0x6d, 0x77, 0xe0, + 0xfa, 0x0e, 0x7f, 0x48, 0xbf, 0xa8, 0x67, 0x17, 0xc2, 0x67, 0xc2, 0x67, 0x6a, 0x5d, 0xca, 0xb1, + 0xeb, 0xcb, 0x76, 0x2b, 0xc3, 0x4a, 0x4e, 0xb3, 0x90, 0xb3, 0x09, 0x94, 0x19, 0x94, 0xd8, 0x3c, + 0x82, 0x64, 0x4e, 0xb5, 0x2c, 0xaf, 0x00, 0x49, 0x21, 0x85, 0x65, 0x10, 0x1c, 0x73, 0x09, 0x8d, + 0x54, 0xaf, 0xac, 0xd3, 0x3a, 0xef, 0x9c, 0xf7, 0x4e, 0x5b, 0xe7, 0xdd, 0x02, 0xdf, 0x9d, 0x22, + 0x59, 0xaf, 0x6f, 0xb8, 0xac, 0x97, 0xbf, 0x66, 0x55, 0x71, 0xf2, 0xde, 0x73, 0xa8, 0x9f, 0xf9, + 0xd5, 0x4f, 0x12, 0x60, 0x34, 0xad, 0x72, 0x3a, 0x4c, 0xfc, 0x40, 0x4a, 0x70, 0xb4, 0x7c, 0x31, + 0x00, 0x12, 0x00, 0x92, 0x56, 0x80, 0x94, 0xad, 0x86, 0x69, 0x86, 0x70, 0x6e, 0xde, 0x9a, 0xa5, + 0x40, 0x59, 0x40, 0x59, 0x3f, 0x7d, 0x65, 0x74, 0xe1, 0x5b, 0xe0, 0x2d, 0xe0, 0x2d, 0xe0, 0xad, + 0x52, 0xe3, 0xad, 0xe0, 0xce, 0xb5, 0x99, 0x97, 0x01, 0x6b, 0x25, 0x17, 0x02, 0x67, 0x01, 0x67, + 0x69, 0xc5, 0x59, 0xea, 0x83, 0x37, 0x30, 0xf9, 0x30, 0xf9, 0x95, 0x36, 0xf9, 0x41, 0x78, 0xcb, + 0xec, 0x6f, 0xd6, 0x28, 0x70, 0xb2, 0x90, 0xec, 0x95, 0xcb, 0xd3, 0x87, 0xfc, 0x27, 0x2f, 0x15, + 0x6e, 0x03, 0x6e, 0xa3, 0x6a, 0x6e, 0x83, 0x64, 0x71, 0x8e, 0x64, 0x9c, 0x7e, 0x49, 0x8e, 0x2f, + 0xc2, 0x82, 0xc2, 0x82, 0xd2, 0xba, 0xa0, 0x62, 0xd7, 0x97, 0xcd, 0x5e, 0x86, 0xf5, 0xd4, 0x83, + 0x54, 0x05, 0xa9, 0x8a, 0xe8, 0x95, 0xf5, 0xba, 0xdd, 0xf6, 0xe1, 0x6a, 0x53, 0x24, 0x1e, 0x27, + 0xc9, 0xed, 0x4e, 0xe9, 0x72, 0x26, 0x57, 0xc1, 0xe7, 0xc0, 0xe7, 0x68, 0xf5, 0x39, 0x66, 0xe4, + 0x51, 0x8f, 0xf9, 0xa7, 0x15, 0x49, 0x26, 0xe3, 0x28, 0xfd, 0xc2, 0x5a, 0xbe, 0x18, 0xeb, 0x0b, + 0xeb, 0x4b, 0xeb, 0xfa, 0xe2, 0x7e, 0x3c, 0x4a, 0xb4, 0x93, 0x2c, 0x8b, 0xac, 0x93, 0xe2, 0x9a, + 0x57, 0x7e, 0x3c, 0x1a, 0xdf, 0xe4, 0x13, 0x34, 0x39, 0x68, 0x72, 0x07, 0xaf, 0xc9, 0x85, 0xc3, + 0xc7, 0xc8, 0xb5, 0x99, 0x37, 0x99, 0x41, 0x3e, 0xcf, 0x10, 0x8f, 0xd9, 0x68, 0xa1, 0x1a, 0xce, + 0x43, 0x0a, 0xe6, 0x47, 0x36, 0x77, 0xef, 0xb9, 0x38, 0x48, 0x2f, 0xb2, 0xfc, 0xfc, 0x48, 0xff, + 0xdf, 0x31, 0xc5, 0xb2, 0xa4, 0xff, 0x7f, 0x5e, 0x4f, 0xff, 0xff, 0xa7, 0x1d, 0x0b, 0xc1, 0x7d, + 0xf9, 0xec, 0xf8, 0xe4, 0xc5, 0x8b, 0x93, 0xd5, 0x57, 0x7f, 0xb1, 0xf4, 0xb9, 0xff, 0x93, 0xff, + 0x5b, 0xff, 0xaf, 0xf5, 0x45, 0x19, 0xad, 0x7f, 0x21, 0xf9, 0xfb, 0xfa, 0x9f, 0xa7, 0x39, 0xfe, + 0xa4, 0xa3, 0xf8, 0xc6, 0x8d, 0xe4, 0xa5, 0x94, 0xe9, 0x0e, 0x20, 0xaf, 0xbf, 0x75, 0xfd, 0x57, + 0x63, 0xff, 0xe6, 0x4f, 0xdc, 0xaa, 0x1f, 0x7b, 0x5e, 0x8a, 0x71, 0x79, 0xcb, 0x1e, 0xb2, 0x5f, + 0xfc, 0x4e, 0x38, 0x5c, 0x70, 0xe7, 0xb7, 0xc7, 0xe4, 0x52, 0x8d, 0xf8, 0x5d, 0x86, 0x6e, 0x86, + 0x4d, 0x90, 0x93, 0xab, 0xd2, 0x87, 0x43, 0x02, 0xdb, 0xba, 0xf7, 0x98, 0x6f, 0xc9, 0xc7, 0x90, + 0x47, 0x17, 0x1f, 0x6f, 0xae, 0xaf, 0xbe, 0x36, 0xfe, 0x3a, 0x6b, 0x36, 0x1a, 0x15, 0x31, 0xe0, + 0xe3, 0x87, 0x3b, 0x48, 0xcb, 0x3d, 0x79, 0x70, 0xe3, 0x4c, 0xb6, 0xeb, 0x70, 0x5f, 0xba, 0xf2, + 0x31, 0xa3, 0xd9, 0x4e, 0xa1, 0xc5, 0xd5, 0xaf, 0x93, 0xae, 0x7e, 0x63, 0x11, 0xcf, 0x5e, 0x2d, + 0x6a, 0xb2, 0x62, 0x3e, 0xfe, 0xfb, 0xe6, 0xd5, 0x87, 0xb4, 0x03, 0x3e, 0xd1, 0x10, 0xb5, 0x1e, + 0xf4, 0xbc, 0x72, 0xcf, 0x8d, 0xbf, 0xce, 0x5b, 0x8d, 0x46, 0x5d, 0x87, 0x54, 0x4b, 0x74, 0xbb, + 0x4d, 0xa3, 0x6e, 0xf7, 0xcc, 0xa4, 0xdb, 0xbd, 0xfc, 0xe3, 0xdf, 0x26, 0xbd, 0xda, 0xb3, 0xcb, + 0xb3, 0x12, 0x9d, 0x00, 0xae, 0x13, 0x1a, 0x2c, 0xc1, 0xf1, 0xf4, 0x08, 0x21, 0x35, 0x97, 0x01, + 0x3b, 0x03, 0x3b, 0x03, 0x3b, 0xdb, 0xca, 0xce, 0xc2, 0x40, 0xc8, 0x8b, 0x95, 0x12, 0x07, 0xfd, + 0x95, 0xa6, 0xa2, 0xf8, 0x76, 0x47, 0x27, 0xcb, 0xff, 0x53, 0xe8, 0x26, 0x70, 0x99, 0x66, 0xe8, + 0x16, 0x56, 0x64, 0x7c, 0x15, 0x22, 0x03, 0x88, 0x0c, 0x80, 0x17, 0xfc, 0xf4, 0x86, 0x67, 0xa5, + 0xca, 0xac, 0x14, 0x0b, 0xa6, 0x04, 0xdc, 0xc0, 0x65, 0x3e, 0xb3, 0x72, 0xdd, 0x3c, 0xc5, 0x43, + 0xe4, 0x7b, 0x98, 0x8d, 0x87, 0x8a, 0x86, 0x4e, 0xe4, 0xd5, 0x8b, 0xa8, 0x8f, 0x49, 0xf4, 0x00, + 0x6e, 0x68, 0xf4, 0xdd, 0x1b, 0xfe, 0xf6, 0x87, 0x8e, 0x67, 0x9b, 0x7c, 0xff, 0x4e, 0x60, 0x47, + 0x2f, 0xd9, 0xad, 0xc7, 0xaf, 0x82, 0xef, 0x7e, 0x24, 0x05, 0x67, 0x23, 0x93, 0x1f, 0xe7, 0xa1, + 0xd5, 0x0d, 0x3d, 0x6e, 0xf2, 0x13, 0xdc, 0x07, 0xae, 0xcd, 0xdf, 0xdd, 0x73, 0x31, 0x19, 0x15, + 0x93, 0x9f, 0x24, 0x74, 0xfc, 0x57, 0x72, 0xc8, 0xc5, 0x9b, 0x20, 0x08, 0x9b, 0x26, 0x3f, 0x08, + 0xf3, 0xe2, 0xdf, 0xc3, 0xc0, 0xbf, 0x49, 0x22, 0x26, 0x7f, 0xfa, 0xae, 0xc9, 0x4f, 0x33, 0x60, + 0x91, 0x34, 0xdc, 0xe8, 0x32, 0x39, 0xba, 0x1e, 0x31, 0x93, 0x9f, 0x40, 0x1a, 0xee, 0x36, 0x62, + 0x4f, 0x0a, 0xa3, 0x07, 0x80, 0x0d, 0x3c, 0xe6, 0xf3, 0xb3, 0x46, 0xab, 0x6b, 0xf2, 0x53, 0x8c, + 0x02, 0x87, 0x1b, 0xed, 0xaf, 0xc3, 0xc0, 0xef, 0xb5, 0x5a, 0x46, 0xfb, 0xeb, 0xf6, 0xa9, 0xc9, + 0xb7, 0x6f, 0xdf, 0x7a, 0x9f, 0xb8, 0x2d, 0xd9, 0x07, 0xc9, 0x84, 0xe1, 0x3e, 0xfa, 0x55, 0x75, + 0x7c, 0xf4, 0x04, 0x04, 0xbe, 0xfe, 0xeb, 0x9d, 0xc9, 0xcf, 0xf0, 0xfd, 0x3b, 0xf3, 0x6f, 0x6e, + 0xcc, 0x5e, 0xdb, 0xa3, 0xef, 0x4c, 0xf0, 0x4f, 0xae, 0x90, 0x31, 0xf3, 0xfe, 0x70, 0x8d, 0x27, + 0x7a, 0xef, 0x06, 0xce, 0x88, 0xfd, 0x19, 0x9a, 0x4f, 0xf3, 0xdc, 0x70, 0xc2, 0x90, 0x3c, 0xf6, + 0xdd, 0x68, 0xe7, 0x57, 0x11, 0xe9, 0xe0, 0x83, 0x2d, 0x79, 0xb7, 0xeb, 0x34, 0xdf, 0x73, 0xf9, + 0x2e, 0xb8, 0x35, 0xf9, 0x91, 0xfc, 0xc8, 0x6c, 0x35, 0x6d, 0x20, 0xd8, 0x88, 0xbf, 0xe7, 0x1e, + 0x7b, 0xfc, 0xc0, 0xc5, 0xbd, 0x6b, 0x1b, 0xad, 0x1f, 0xdc, 0x9d, 0x36, 0xda, 0x4c, 0xb6, 0x46, + 0xb7, 0x95, 0x90, 0x73, 0xae, 0x8d, 0x9e, 0x58, 0x23, 0x66, 0x7f, 0xe0, 0xf6, 0xcb, 0xc0, 0x97, + 0x22, 0xf0, 0x3c, 0xee, 0x5c, 0xbf, 0x36, 0xda, 0x7d, 0x44, 0x8e, 0x6f, 0xf4, 0xca, 0x38, 0x3f, + 0x3f, 0x6b, 0x57, 0x40, 0x51, 0x7b, 0xe7, 0xc7, 0x26, 0x3f, 0x45, 0x14, 0xf8, 0x5c, 0x7e, 0xfa, + 0x68, 0xb4, 0xc3, 0x70, 0x6f, 0x05, 0x7f, 0x99, 0x6c, 0xcb, 0x30, 0xda, 0xf1, 0x0d, 0x9a, 0xbd, + 0xb7, 0x03, 0xf1, 0x5b, 0xec, 0x3b, 0x66, 0xab, 0xe6, 0xc3, 0x76, 0xab, 0xfd, 0x3b, 0x93, 0xfc, + 0x1b, 0xe7, 0x21, 0x37, 0x9a, 0x92, 0x87, 0xc2, 0x1d, 0x31, 0xf1, 0x78, 0xfd, 0xe1, 0xea, 0x0f, + 0xa3, 0x43, 0x4a, 0x67, 0xbd, 0x37, 0x2c, 0x8c, 0x4c, 0x17, 0x47, 0xde, 0xdc, 0x54, 0x03, 0xd8, + 0x9a, 0x8d, 0x3b, 0x82, 0xb3, 0xb3, 0x46, 0xab, 0xe5, 0x99, 0x4d, 0xfc, 0x24, 0x17, 0xa3, 0x1b, + 0xe6, 0x98, 0x2d, 0x20, 0xbc, 0x0e, 0xc4, 0x77, 0x26, 0x8c, 0x7e, 0x08, 0x26, 0x6c, 0x9f, 0x4b, + 0x93, 0x9f, 0xe0, 0xbf, 0xad, 0xf3, 0xb6, 0xd1, 0xa1, 0xe1, 0x68, 0xe4, 0x44, 0xd7, 0xb6, 0xd9, + 0xa2, 0x01, 0x93, 0xa3, 0xdb, 0xc0, 0x37, 0x7a, 0x25, 0x78, 0x2c, 0xbc, 0x35, 0x7c, 0x08, 0x3e, + 0xc4, 0xb7, 0xf3, 0x23, 0x4c, 0x8d, 0x0e, 0x28, 0xad, 0x26, 0x13, 0xbd, 0x1f, 0xdc, 0xa4, 0x3a, + 0x1e, 0xac, 0x94, 0x63, 0xf3, 0xc9, 0x76, 0x5f, 0xf9, 0xce, 0x8d, 0xd1, 0x8f, 0x31, 0x0c, 0x22, + 0x69, 0xb8, 0xd3, 0x8e, 0x84, 0xe1, 0xe2, 0xec, 0x95, 0x57, 0x81, 0x89, 0x64, 0x07, 0x83, 0x01, + 0xaf, 0x46, 0x8a, 0xdd, 0xeb, 0x4a, 0xb0, 0x8a, 0x51, 0x60, 0xb3, 0x4f, 0x5c, 0x44, 0x6e, 0xe0, + 0x1b, 0x8f, 0xa5, 0xae, 0x1e, 0x8c, 0x8e, 0xdb, 0x8f, 0xb8, 0xe3, 0xb2, 0xb7, 0xcc, 0xf5, 0xcc, + 0x57, 0xfc, 0x9d, 0xa8, 0x6d, 0xbc, 0x36, 0x6b, 0x34, 0xec, 0x70, 0x22, 0xaf, 0x15, 0x7a, 0xb1, + 0xd9, 0xc2, 0xd3, 0xbd, 0x6b, 0xbb, 0xef, 0x42, 0xe9, 0xda, 0xcc, 0x9b, 0xe4, 0x02, 0x9b, 0xfc, + 0x30, 0xdc, 0x6c, 0xeb, 0x6a, 0x78, 0xce, 0xaf, 0xcd, 0xc2, 0xef, 0x2c, 0xfc, 0x97, 0x0c, 0x93, + 0x74, 0x9c, 0xf7, 0xcc, 0x71, 0x03, 0xd3, 0x17, 0xb8, 0xe1, 0x9c, 0x7b, 0x60, 0xb4, 0x83, 0x73, + 0xef, 0x5c, 0xc9, 0xbc, 0x9b, 0xe0, 0x3b, 0x17, 0x9e, 0xeb, 0x1b, 0x8d, 0x68, 0x47, 0xa6, 0xaf, + 0x6e, 0xe7, 0xfe, 0xf6, 0xbd, 0x6d, 0xbf, 0x65, 0xf6, 0x1b, 0xf6, 0x68, 0xb6, 0x97, 0x10, 0x03, + 0xfb, 0xec, 0xf4, 0xf4, 0xc1, 0xec, 0xbc, 0x72, 0x16, 0x3d, 0xfa, 0x46, 0x87, 0x28, 0x58, 0xb3, + 0xf5, 0x36, 0x0c, 0x3f, 0x7c, 0x77, 0xa5, 0x3d, 0x34, 0x3b, 0x86, 0x1a, 0x84, 0x2f, 0x7d, 0x2f, + 0x32, 0xfd, 0x19, 0xfe, 0xe5, 0x0a, 0xee, 0xf1, 0x28, 0xba, 0x69, 0x19, 0x1d, 0x86, 0x34, 0x3c, + 0x3d, 0x70, 0x14, 0xf2, 0xbb, 0x8f, 0x82, 0xf9, 0x51, 0x68, 0xb8, 0x26, 0x3b, 0x74, 0x86, 0xcd, + 0x33, 0xb3, 0xf7, 0x8d, 0xdc, 0x89, 0x76, 0xa3, 0xfd, 0xfe, 0xea, 0xa3, 0xf1, 0x42, 0xda, 0xd5, + 0xf5, 0x95, 0xd1, 0x4b, 0x5a, 0x32, 0xfb, 0xdb, 0xc7, 0xe0, 0xc3, 0xf8, 0x9f, 0x0a, 0x6c, 0x19, + 0xf9, 0x60, 0x34, 0xc7, 0xe3, 0x46, 0x3b, 0xba, 0x5b, 0x16, 0xb9, 0xb6, 0xe9, 0xe9, 0x4e, 0x13, + 0xe1, 0x6c, 0x52, 0x18, 0xc9, 0x70, 0xc8, 0x71, 0x15, 0xd8, 0xd1, 0x0c, 0x76, 0xbc, 0x65, 0xb6, + 0x67, 0x3a, 0xb1, 0x18, 0x06, 0x23, 0x1e, 0xfa, 0xcc, 0xf4, 0x61, 0xb9, 0x09, 0x5c, 0x5f, 0x7e, + 0x0c, 0x26, 0xff, 0x7c, 0xe0, 0xc2, 0x65, 0x46, 0xf3, 0xd6, 0x90, 0x99, 0xbd, 0x0d, 0x3a, 0x0a, + 0x06, 0xf2, 0x3b, 0x13, 0xfc, 0x4d, 0x72, 0x72, 0xa2, 0xe9, 0x59, 0xf1, 0x46, 0x4b, 0xb4, 0x2e, + 0xe7, 0xfc, 0xac, 0xd1, 0x6a, 0x36, 0x4d, 0xcf, 0x5f, 0xbe, 0x11, 0xc1, 0xc3, 0xa3, 0xe9, 0x35, + 0x32, 0x26, 0xf1, 0x8a, 0xd7, 0x7f, 0x19, 0x1d, 0xb1, 0x08, 0x3d, 0x11, 0x55, 0x20, 0x61, 0xb6, + 0xfd, 0x32, 0x1a, 0x31, 0xdb, 0xe8, 0xdc, 0x95, 0xe1, 0x63, 0xc8, 0x85, 0x6d, 0xfe, 0x46, 0x8b, + 0x30, 0x0c, 0xab, 0xb4, 0x67, 0xb5, 0x75, 0x15, 0x19, 0xbe, 0x65, 0xd5, 0xbd, 0x1d, 0xb5, 0x4f, + 0x1b, 0x21, 0x13, 0x2f, 0x87, 0xcc, 0xec, 0x4d, 0x6d, 0x32, 0xac, 0x82, 0xf3, 0xee, 0x76, 0x8c, + 0x56, 0x08, 0xef, 0x3d, 0xb3, 0x77, 0x26, 0xbc, 0x71, 0xfd, 0x6f, 0x15, 0x88, 0x4a, 0xfe, 0x4b, + 0xb0, 0x30, 0xe4, 0xe2, 0xdd, 0x3d, 0x17, 0x43, 0xce, 0x9c, 0x2a, 0xec, 0xd0, 0xb3, 0xdd, 0xd0, + 0xf4, 0xc1, 0x19, 0xb9, 0x81, 0xe1, 0x81, 0xbd, 0x89, 0xba, 0x53, 0xa1, 0x59, 0xe5, 0xb5, 0xd2, + 0x9d, 0x65, 0x52, 0xc2, 0x11, 0x71, 0xc3, 0x8f, 0x77, 0x15, 0xc0, 0xe8, 0xdd, 0x97, 0xef, 0x5f, + 0xdf, 0x5c, 0xfb, 0x86, 0xa7, 0x36, 0x8f, 0xc2, 0x20, 0x72, 0x2b, 0xe0, 0x45, 0xd6, 0x61, 0xee, + 0x9f, 0xa6, 0xc3, 0x5c, 0xc1, 0xef, 0x62, 0x8f, 0x09, 0xd3, 0xa3, 0x7e, 0xf7, 0x86, 0xe7, 0xe9, + 0xdc, 0x0d, 0x58, 0x24, 0xcd, 0xb6, 0x56, 0xb1, 0xd1, 0x34, 0xe3, 0x36, 0x32, 0x3a, 0x2f, 0x67, + 0xf4, 0x28, 0x5c, 0xc3, 0x13, 0xb3, 0xe7, 0xb6, 0xb5, 0x0a, 0x41, 0xa5, 0x3b, 0xf7, 0x8e, 0xdd, + 0xba, 0x53, 0xad, 0xd3, 0xf4, 0x71, 0xb9, 0xbf, 0xbd, 0x8c, 0xdc, 0x77, 0xb1, 0x34, 0x3c, 0x42, + 0x26, 0x79, 0xe0, 0x9f, 0x35, 0xde, 0xde, 0xba, 0x46, 0x3f, 0xc8, 0xed, 0x5d, 0x18, 0x06, 0x9e, + 0x6b, 0x3f, 0x32, 0xdb, 0x0e, 0x62, 0x5f, 0xba, 0xfe, 0x9d, 0xf9, 0xd9, 0x15, 0xbf, 0x5f, 0xbd, + 0xba, 0xfc, 0xe3, 0xd2, 0xf0, 0xcd, 0xac, 0xaf, 0x63, 0xb3, 0x6b, 0xa3, 0x06, 0xd3, 0xed, 0x24, + 0x09, 0x79, 0xfd, 0x5d, 0x04, 0x66, 0x3b, 0x74, 0x19, 0x9b, 0xce, 0xc1, 0xa7, 0x86, 0xf7, 0xda, + 0x37, 0x7c, 0x5d, 0x18, 0xbf, 0xa1, 0xe4, 0xee, 0xfc, 0xfc, 0xac, 0x55, 0x01, 0x25, 0xa1, 0xf7, + 0xd6, 0x74, 0x45, 0xe7, 0xe1, 0x63, 0xf0, 0x3a, 0x88, 0x85, 0xf1, 0x0e, 0xef, 0x95, 0x6f, 0xb3, + 0x6a, 0x84, 0xfb, 0x66, 0x45, 0x8f, 0xcd, 0x2f, 0x47, 0x31, 0xad, 0x8a, 0xda, 0xeb, 0x7c, 0xab, + 0x80, 0x0f, 0xaf, 0x44, 0x2e, 0xfa, 0x64, 0xeb, 0x52, 0x54, 0x89, 0xad, 0x4b, 0xa1, 0x30, 0xbf, + 0xe0, 0xbc, 0xd1, 0xa5, 0x06, 0x6f, 0x83, 0x87, 0x59, 0xca, 0xaa, 0xd1, 0x8e, 0x7c, 0xf0, 0x69, + 0xe0, 0x4e, 0x0e, 0x74, 0x34, 0xd9, 0x46, 0x99, 0xbe, 0x5f, 0x5d, 0x0c, 0xec, 0x66, 0xc7, 0xf0, + 0x3a, 0xc1, 0xb3, 0x53, 0x7a, 0xda, 0x15, 0x38, 0x9b, 0xc4, 0xf0, 0x6a, 0xc7, 0x3c, 0xd1, 0x08, + 0xdb, 0xa6, 0x4b, 0x53, 0x61, 0x50, 0x85, 0x9c, 0xc8, 0xee, 0x6b, 0xf7, 0xd6, 0x6c, 0xfb, 0x34, + 0x1a, 0x7c, 0x70, 0xef, 0x4c, 0x8f, 0xb4, 0x2e, 0x0a, 0xd3, 0x4e, 0xaa, 0xf7, 0xd9, 0x81, 0xef, + 0x73, 0xdb, 0xf4, 0x7a, 0x77, 0x6f, 0x82, 0xbb, 0x31, 0x3c, 0xaf, 0xd2, 0x0e, 0xa0, 0x2a, 0x9c, + 0x7a, 0x33, 0x7e, 0xa6, 0xdf, 0xfe, 0x75, 0x19, 0xb6, 0xde, 0x56, 0x8b, 0x94, 0x57, 0x20, 0x0f, + 0x69, 0x66, 0x94, 0xaf, 0xa4, 0xa8, 0x42, 0x12, 0x6b, 0xef, 0x5f, 0x6f, 0x2f, 0xff, 0x30, 0x7b, + 0xa7, 0xbb, 0xd9, 0x35, 0x13, 0x18, 0xf3, 0xcc, 0xce, 0x73, 0x31, 0x7b, 0x13, 0x93, 0xc7, 0x42, + 0xa3, 0x77, 0x9b, 0x84, 0x72, 0x54, 0x81, 0x28, 0x78, 0xd3, 0xf8, 0x28, 0xf8, 0xc6, 0x11, 0x69, + 0xaf, 0xbf, 0x3b, 0x86, 0x27, 0xe2, 0xcd, 0x68, 0xa0, 0xf9, 0x5b, 0xb2, 0xa6, 0x35, 0xa7, 0xaa, + 0x71, 0xee, 0xfd, 0xd0, 0x0d, 0x43, 0xd7, 0x74, 0x6c, 0x9b, 0x54, 0xf6, 0x33, 0xfd, 0x64, 0xb1, + 0xc8, 0xfc, 0x23, 0x4f, 0xff, 0x70, 0xed, 0x8f, 0x86, 0xaf, 0x88, 0x69, 0xbd, 0xc8, 0xab, 0x40, + 0x36, 0x9b, 0xbf, 0x99, 0xad, 0xa6, 0x3b, 0x51, 0xd3, 0xf8, 0x42, 0x47, 0xd7, 0x86, 0x17, 0x3a, + 0x6a, 0xf7, 0xcc, 0x2e, 0x97, 0x15, 0x99, 0x4d, 0x27, 0xdc, 0x0a, 0x94, 0xf2, 0x5b, 0x32, 0x48, + 0x37, 0x22, 0x18, 0xb8, 0x66, 0x1f, 0x53, 0x37, 0x3d, 0x7b, 0xe8, 0xc6, 0xf0, 0xfa, 0xd4, 0xf7, + 0x53, 0xc4, 0x71, 0x1d, 0x5e, 0x3a, 0x8e, 0x30, 0x3c, 0xe8, 0x7a, 0x2b, 0x5c, 0xe7, 0x8e, 0x1b, + 0x5e, 0x5b, 0xe0, 0x6d, 0xec, 0x49, 0xd7, 0x73, 0xfd, 0x6f, 0xe6, 0x1f, 0xe4, 0xf8, 0x5f, 0xb3, + 0xf1, 0x93, 0xe0, 0xcc, 0x1e, 0x5e, 0x7d, 0x78, 0x63, 0x34, 0x72, 0x32, 0x5b, 0x06, 0xf1, 0x02, + 0x9b, 0x79, 0x1f, 0x99, 0xf7, 0xcd, 0xf4, 0x52, 0x3a, 0x46, 0x3b, 0x3a, 0x5b, 0x72, 0xcf, 0x8d, + 0xde, 0x72, 0xc9, 0xde, 0xbc, 0x7b, 0x77, 0x63, 0xba, 0x1a, 0xf5, 0x6e, 0xe0, 0x8c, 0xaa, 0x21, + 0x79, 0xfc, 0xd7, 0xf0, 0x53, 0x34, 0xbd, 0xb6, 0x1b, 0x3e, 0x98, 0xbe, 0x7b, 0xdd, 0x1d, 0xdc, + 0x7c, 0x37, 0x3d, 0xd1, 0x8b, 0x09, 0xb3, 0x93, 0x9c, 0x93, 0xf4, 0xa2, 0x24, 0x68, 0x6f, 0x7a, + 0x42, 0x85, 0x3b, 0xb0, 0xee, 0x22, 0xa3, 0xd7, 0x44, 0xe8, 0xf8, 0x93, 0xfd, 0x94, 0x6f, 0x82, + 0x20, 0xac, 0xc2, 0x7e, 0x8c, 0xee, 0xc7, 0xe0, 0x1b, 0xf7, 0xdf, 0x1b, 0xbe, 0x83, 0x2f, 0x72, + 0x6c, 0xd7, 0xf4, 0x63, 0x28, 0xcd, 0xd7, 0xc7, 0xef, 0xc2, 0xc0, 0xaf, 0x44, 0x61, 0x48, 0x93, + 0x1f, 0xc2, 0x1f, 0x30, 0xa3, 0x95, 0x0e, 0x6e, 0xf6, 0x1c, 0xe2, 0xb6, 0xe9, 0x67, 0xd3, 0x25, + 0xb2, 0x99, 0xd9, 0x75, 0x8b, 0x42, 0xb7, 0x1a, 0x59, 0x74, 0x7f, 0x38, 0x46, 0x1b, 0xa3, 0x28, + 0x3a, 0xad, 0x40, 0x1a, 0xb0, 0x1b, 0xbe, 0xbb, 0xe7, 0xe2, 0xa5, 0x63, 0x36, 0x25, 0xbd, 0x1b, + 0x84, 0x55, 0x28, 0xd2, 0xf0, 0xee, 0x83, 0xf9, 0x3b, 0x6f, 0x7f, 0x33, 0xfa, 0x19, 0x5c, 0x5f, + 0x72, 0xe1, 0x71, 0x76, 0xcf, 0xcd, 0xce, 0xed, 0x7f, 0x1d, 0x88, 0xef, 0x4c, 0x18, 0x9d, 0xe5, + 0xe4, 0xb9, 0x3e, 0xbf, 0x33, 0xbd, 0x48, 0x46, 0xe4, 0x99, 0xed, 0xac, 0x19, 0xf3, 0xba, 0x86, + 0x93, 0x4f, 0xc3, 0x4f, 0xe6, 0x5e, 0xad, 0x1a, 0x63, 0x74, 0x9c, 0xd7, 0x95, 0x46, 0xb3, 0xb7, + 0x11, 0xb3, 0x3f, 0x70, 0xfb, 0x4f, 0xdf, 0x0e, 0x7c, 0x29, 0x02, 0xcf, 0xe3, 0xce, 0xf5, 0x6b, + 0xb3, 0xb7, 0x1a, 0x18, 0x8d, 0xf9, 0x1e, 0x5a, 0xdd, 0x91, 0x67, 0xf8, 0x49, 0xf5, 0x0d, 0xc3, + 0xd3, 0xfb, 0x5e, 0x5f, 0xbd, 0x31, 0xbf, 0x02, 0xc6, 0x47, 0x67, 0x64, 0xf4, 0x51, 0x48, 0x15, + 0x38, 0x9c, 0x63, 0x51, 0x9a, 0xf2, 0xe5, 0x48, 0x46, 0xd5, 0x08, 0xf3, 0x8a, 0xa8, 0xd5, 0x36, + 0x3a, 0x8a, 0x62, 0xdb, 0xf2, 0xd5, 0x28, 0xf6, 0xcc, 0x8e, 0x9d, 0x98, 0xad, 0x6b, 0xf0, 0xc8, + 0x36, 0x5b, 0x32, 0xbe, 0x6f, 0x1b, 0x4d, 0x1f, 0x86, 0x51, 0xe4, 0x1a, 0xbe, 0xbb, 0x86, 0x0b, + 0x8f, 0xf9, 0x2d, 0xb3, 0x81, 0x5e, 0xd3, 0xe8, 0x2a, 0x2a, 0x52, 0x34, 0x1a, 0x67, 0x55, 0xd8, + 0x5c, 0xdd, 0x32, 0x5f, 0x9d, 0x7c, 0x6b, 0xfc, 0x23, 0xbc, 0xbb, 0xe7, 0xe2, 0x52, 0x1a, 0x8e, + 0x8c, 0x84, 0xd1, 0x3b, 0x49, 0xbd, 0x91, 0xd9, 0x9a, 0x9e, 0xe9, 0x9b, 0x6a, 0xee, 0x4d, 0x7f, + 0x80, 0xa5, 0x10, 0xe8, 0xc0, 0xf4, 0x4c, 0x50, 0xd3, 0x13, 0x41, 0xd7, 0xeb, 0xed, 0x54, 0x83, + 0x7c, 0xba, 0x23, 0x69, 0x36, 0x64, 0x62, 0x7e, 0x14, 0xfe, 0x9f, 0xe1, 0xec, 0x4d, 0x30, 0xc7, + 0x0d, 0xde, 0x5e, 0xbe, 0x34, 0x9a, 0x41, 0x4b, 0x26, 0xde, 0x18, 0x9e, 0xea, 0x1d, 0x39, 0x66, + 0x17, 0x30, 0x1c, 0xe3, 0xef, 0x66, 0xfb, 0xbc, 0x63, 0xb8, 0xd4, 0xfa, 0xd1, 0x19, 0x99, 0x9f, + 0x29, 0x63, 0x38, 0xf4, 0x9e, 0x94, 0xdb, 0x98, 0x14, 0xfc, 0x1b, 0x30, 0x9b, 0x57, 0xaa, 0x18, + 0x9b, 0xd1, 0x52, 0xab, 0x1b, 0xd9, 0xc1, 0xf5, 0x87, 0x37, 0xa6, 0x83, 0xa9, 0x38, 0x32, 0x9a, + 0xd8, 0x39, 0xb6, 0x5f, 0x01, 0x89, 0xe3, 0xf5, 0xef, 0x57, 0x86, 0xa3, 0x26, 0xb3, 0x8f, 0x1a, + 0x4c, 0xe4, 0xb2, 0x36, 0x73, 0xde, 0xb0, 0x3b, 0xc3, 0x4f, 0x78, 0xfd, 0xe0, 0x1a, 0xfd, 0x04, + 0x03, 0xc7, 0x71, 0x2b, 0xb0, 0x43, 0xce, 0xec, 0x6a, 0xf4, 0xfe, 0x3b, 0x27, 0x36, 0x3c, 0x87, + 0xcc, 0xec, 0x94, 0xd6, 0x81, 0xeb, 0xbb, 0xb7, 0xcc, 0x37, 0xbb, 0xe6, 0x9d, 0xe3, 0xff, 0x65, + 0xf6, 0x09, 0xe6, 0xb6, 0x2f, 0x0c, 0x4f, 0xb7, 0x1a, 0xc6, 0xbe, 0x34, 0xfe, 0xd8, 0xba, 0x45, + 0xdd, 0xf3, 0xb7, 0x37, 0xd7, 0xe6, 0x57, 0x81, 0xac, 0x02, 0xfb, 0x19, 0x85, 0x5e, 0xf4, 0x31, + 0xae, 0x48, 0x25, 0xed, 0xce, 0x64, 0xd3, 0xf1, 0x6f, 0x66, 0x97, 0x97, 0x0a, 0x45, 0x30, 0xad, + 0x68, 0x14, 0x7a, 0xfc, 0x21, 0x30, 0xda, 0x6e, 0x39, 0x5e, 0xf4, 0xdd, 0xf0, 0x24, 0x51, 0xf3, + 0x4b, 0x4a, 0x8d, 0x41, 0xa0, 0x34, 0x5b, 0x83, 0xad, 0x40, 0x98, 0xcb, 0x70, 0xed, 0x32, 0x0c, + 0xfc, 0x66, 0x37, 0x0f, 0x04, 0xcc, 0x74, 0x65, 0xff, 0x48, 0xc3, 0x9b, 0xca, 0xf6, 0x86, 0x16, + 0x44, 0x7d, 0x98, 0x49, 0x32, 0xd1, 0x7f, 0xa3, 0x59, 0x36, 0x43, 0x15, 0x70, 0x97, 0x86, 0xbc, + 0xcd, 0x61, 0xa6, 0xf8, 0xa8, 0xfe, 0xfb, 0x9c, 0x4b, 0xf5, 0x79, 0x62, 0xeb, 0xfa, 0x6f, 0xfb, + 0xa1, 0xd5, 0x0d, 0xb3, 0xb8, 0x5d, 0xfd, 0x77, 0x3a, 0x4f, 0x0c, 0x9b, 0xbc, 0x65, 0x13, 0xee, + 0x78, 0xb9, 0xd4, 0x50, 0xd3, 0x84, 0x1b, 0x66, 0x5e, 0xfc, 0x7b, 0x18, 0xf8, 0x37, 0xc3, 0xc7, + 0xc8, 0xb5, 0x99, 0xf7, 0x67, 0x96, 0xa3, 0xe8, 0xf5, 0xdf, 0xf5, 0x80, 0x45, 0xd2, 0x10, 0x63, + 0xc6, 0xe4, 0xe8, 0x3a, 0xcb, 0x3e, 0x1c, 0xfd, 0x77, 0x2a, 0x0d, 0x31, 0xbb, 0xb1, 0x27, 0x85, + 0x11, 0x2f, 0x74, 0x7e, 0x58, 0x66, 0xd7, 0x84, 0xbb, 0x1d, 0x05, 0x0e, 0x37, 0xc2, 0x7f, 0x85, + 0x81, 0xdf, 0x6b, 0xb5, 0x8c, 0xf0, 0x5f, 0xed, 0x53, 0x13, 0x6e, 0xd3, 0xbe, 0xf5, 0x3e, 0x71, + 0x5b, 0xb2, 0x0f, 0x92, 0x09, 0x43, 0x7c, 0xd6, 0x2b, 0xf3, 0x7c, 0xd6, 0xb4, 0x18, 0xca, 0x5f, + 0xef, 0x4c, 0xb8, 0xd7, 0xe9, 0xc9, 0xdd, 0x66, 0xac, 0xb1, 0xc9, 0xf9, 0x28, 0x49, 0x25, 0xbe, + 0x3f, 0x5c, 0x63, 0x88, 0xc3, 0xbb, 0x81, 0x33, 0x62, 0xd9, 0x55, 0xee, 0x22, 0x38, 0xee, 0x04, + 0x89, 0x7b, 0xec, 0xbb, 0x11, 0x4e, 0xc2, 0x30, 0x0a, 0x39, 0x3b, 0x8f, 0xec, 0x3d, 0x97, 0x99, + 0xce, 0x23, 0xd3, 0x7f, 0xeb, 0x7e, 0x64, 0x86, 0xea, 0xb1, 0x08, 0x8c, 0x7d, 0xe0, 0xe2, 0xde, + 0xb5, 0x8d, 0xe0, 0x91, 0x77, 0xa7, 0x8d, 0x36, 0x93, 0xad, 0xd1, 0xad, 0x51, 0x34, 0xfd, 0xda, + 0x88, 0x09, 0x31, 0xad, 0x77, 0xf2, 0x32, 0x57, 0xb5, 0x93, 0x02, 0xcc, 0x6f, 0xe4, 0xf8, 0x46, + 0xcc, 0xdc, 0xf3, 0xf3, 0xb3, 0xb6, 0x41, 0xca, 0xc7, 0xbb, 0x2c, 0x39, 0xf4, 0x05, 0x48, 0xe1, + 0x81, 0xcf, 0xe5, 0xa7, 0x8f, 0x46, 0x18, 0x5c, 0xf7, 0x56, 0xf0, 0xcc, 0x75, 0x9d, 0x8a, 0x70, + 0x10, 0x83, 0x66, 0xef, 0xed, 0x40, 0x64, 0x0d, 0x47, 0x16, 0x20, 0x90, 0xb7, 0x5b, 0xed, 0xdf, + 0x99, 0xe4, 0xdf, 0x38, 0x0f, 0xb9, 0x11, 0x94, 0x2d, 0x14, 0xee, 0x88, 0x89, 0xc7, 0xeb, 0x0f, + 0x57, 0x7f, 0x18, 0x21, 0x91, 0x9f, 0xf5, 0xde, 0xb0, 0x30, 0x32, 0x85, 0x0c, 0xbf, 0xb9, 0x31, + 0x0b, 0x88, 0x99, 0xe1, 0x6f, 0x27, 0x69, 0x2f, 0x2d, 0xcf, 0x0c, 0x22, 0x21, 0xb9, 0x18, 0xdd, + 0x30, 0xc7, 0x0c, 0x22, 0x99, 0xb9, 0x8a, 0x67, 0x01, 0xcb, 0x6b, 0x72, 0xac, 0x9e, 0x09, 0x77, + 0xfa, 0xdf, 0xd6, 0x79, 0xdb, 0x88, 0x90, 0x53, 0x34, 0x72, 0xa2, 0x6b, 0xdb, 0x0c, 0xf2, 0xc8, + 0xe4, 0xe8, 0x36, 0xf0, 0x8d, 0x98, 0xa9, 0x1e, 0x0b, 0x6f, 0x0d, 0x79, 0xa5, 0x1f, 0xe2, 0xdb, + 0x1c, 0x7b, 0xf5, 0x0a, 0x10, 0xc8, 0x57, 0x83, 0xfc, 0xef, 0x07, 0x37, 0x81, 0x90, 0x86, 0xbc, + 0xeb, 0x4f, 0xb6, 0xfb, 0xca, 0x77, 0x6e, 0x8c, 0xb8, 0xdd, 0x61, 0x10, 0x49, 0x43, 0x9c, 0x58, + 0x24, 0x0c, 0x11, 0xbf, 0xae, 0x3c, 0x83, 0x26, 0x80, 0x1d, 0x0c, 0x06, 0xdc, 0xac, 0xd4, 0x94, + 0xd7, 0x46, 0xa1, 0xda, 0x51, 0x60, 0xb3, 0x4f, 0x5c, 0x44, 0x6e, 0xe0, 0x1b, 0x83, 0x15, 0x32, + 0x15, 0xba, 0x2e, 0xe0, 0xd5, 0x72, 0xc7, 0x65, 0x6f, 0x99, 0xeb, 0x99, 0xa3, 0x84, 0x3a, 0x51, + 0xdb, 0x18, 0xed, 0xcb, 0x08, 0x77, 0xeb, 0x44, 0x5e, 0x2b, 0xcc, 0x74, 0x04, 0x77, 0x01, 0x37, + 0x7b, 0xef, 0xda, 0xee, 0xbb, 0x69, 0x15, 0xf6, 0x8c, 0x27, 0x68, 0xe9, 0xbf, 0x69, 0x6e, 0x86, + 0xd5, 0x32, 0x24, 0x37, 0x6d, 0x7a, 0x02, 0xfe, 0xbf, 0x64, 0x98, 0x84, 0xcf, 0xdf, 0x33, 0xc7, + 0x0d, 0x4c, 0x59, 0x68, 0x86, 0x70, 0xb2, 0x81, 0x11, 0x8e, 0xc0, 0xbd, 0x73, 0x25, 0xf3, 0x6e, + 0x82, 0xef, 0x5c, 0x78, 0xae, 0x6f, 0x04, 0x02, 0x1b, 0x99, 0xb2, 0xca, 0xa6, 0x1b, 0x1a, 0xdf, + 0x32, 0xfb, 0x0d, 0x7b, 0x34, 0xc3, 0xca, 0x8a, 0x81, 0x7d, 0x76, 0x7a, 0xfa, 0x60, 0x46, 0xde, + 0x22, 0x8b, 0x1e, 0x7d, 0x23, 0x24, 0x5a, 0xd6, 0x6c, 0xbd, 0x0d, 0xc3, 0x0f, 0xdf, 0x5d, 0x69, + 0x0f, 0xcd, 0x88, 0xd9, 0x04, 0xe1, 0x4b, 0xdf, 0x8b, 0x4c, 0xb9, 0xd7, 0x59, 0xa5, 0xc3, 0x9b, + 0x96, 0x11, 0xe1, 0x10, 0x43, 0xd2, 0x67, 0x46, 0x21, 0xbf, 0xfb, 0x38, 0x29, 0x5b, 0x68, 0x88, + 0xe6, 0x35, 0x74, 0x86, 0xcd, 0x33, 0x33, 0xf2, 0x83, 0xef, 0x44, 0xbb, 0xd1, 0x7e, 0x7f, 0xf5, + 0xd1, 0x18, 0xc1, 0xe3, 0xea, 0xfa, 0xca, 0x88, 0xa5, 0x25, 0x99, 0xfd, 0xed, 0x63, 0xf0, 0x61, + 0xfc, 0x8f, 0x41, 0xa9, 0xc1, 0x1f, 0x8c, 0xe0, 0x0c, 0xdc, 0x08, 0x87, 0x70, 0xcb, 0x22, 0xd7, + 0x36, 0x25, 0xdd, 0x60, 0x22, 0x70, 0xdc, 0x30, 0x69, 0x0c, 0x2c, 0x58, 0x2e, 0x2c, 0xfc, 0x96, + 0xd9, 0x9e, 0x29, 0xc0, 0x76, 0x18, 0x8c, 0x78, 0xe8, 0x33, 0x53, 0x5e, 0xf3, 0x4d, 0xe0, 0xfa, + 0xf2, 0x63, 0x30, 0xf9, 0xe7, 0x03, 0x17, 0x2e, 0x33, 0x82, 0xef, 0x84, 0xcc, 0x8c, 0xed, 0x59, + 0x51, 0x30, 0x90, 0xdf, 0x99, 0xe0, 0x6f, 0x82, 0x20, 0xbc, 0x35, 0xc4, 0x53, 0xdc, 0x9d, 0x9f, + 0x9f, 0x19, 0x21, 0x81, 0xcd, 0xce, 0xd6, 0x68, 0x9a, 0x92, 0x4f, 0x77, 0x23, 0x82, 0x87, 0x47, + 0x53, 0xf6, 0xbe, 0x4e, 0xf4, 0xda, 0xd7, 0x7f, 0x19, 0xa1, 0xd8, 0x86, 0x9e, 0x88, 0x0c, 0x4a, + 0xf8, 0x6a, 0xbf, 0x8c, 0x46, 0xcc, 0x36, 0x22, 0x06, 0x3d, 0x7c, 0x0c, 0xb9, 0xb0, 0xcd, 0x49, + 0xb4, 0x0d, 0xc3, 0xd0, 0xc4, 0x3d, 0x39, 0xad, 0xab, 0xc8, 0x90, 0x2d, 0x39, 0xee, 0xed, 0xa8, + 0x7d, 0xda, 0x08, 0x99, 0x78, 0x39, 0x64, 0x66, 0x6c, 0x16, 0x90, 0xa1, 0x49, 0xce, 0xac, 0xdb, + 0x31, 0x42, 0xb1, 0xb9, 0xf7, 0xcc, 0xc8, 0x58, 0x7d, 0xe3, 0xfa, 0xdf, 0x0c, 0x8a, 0x8e, 0xfc, + 0x4b, 0xb0, 0x30, 0xe4, 0xe2, 0xdd, 0x3d, 0x17, 0x43, 0xce, 0x1c, 0x93, 0x76, 0x38, 0xd8, 0x6e, + 0x68, 0xca, 0xcb, 0x1e, 0xb9, 0x81, 0x21, 0x81, 0x87, 0x09, 0x6b, 0x37, 0x70, 0x36, 0x78, 0xad, + 0x6c, 0xe5, 0xf8, 0x0b, 0x91, 0xc8, 0x3f, 0xde, 0x19, 0x84, 0x1d, 0xbb, 0x2f, 0xdf, 0xbf, 0xbe, + 0xb9, 0xf6, 0x0d, 0x49, 0xb5, 0x1b, 0x85, 0x41, 0xe4, 0x1a, 0x64, 0x85, 0xd7, 0x61, 0xd9, 0x9f, + 0xa6, 0xc0, 0x32, 0xc1, 0xef, 0x62, 0x8f, 0x09, 0x53, 0xa2, 0x12, 0xf7, 0x86, 0xc4, 0xd5, 0xef, + 0xc6, 0x4c, 0xd8, 0x0c, 0xeb, 0x10, 0x1b, 0x01, 0x73, 0x6f, 0x23, 0x23, 0xe2, 0xe8, 0xa3, 0x47, + 0xe1, 0x1a, 0x92, 0x10, 0xb8, 0x38, 0xff, 0xdd, 0x20, 0x91, 0xfc, 0xce, 0xbd, 0x63, 0xb7, 0xee, + 0x54, 0x63, 0x32, 0xe5, 0x3d, 0xdf, 0xdf, 0x5e, 0x46, 0xee, 0xbb, 0x58, 0x1a, 0xa2, 0xec, 0x4b, + 0x1e, 0xf8, 0x67, 0x8d, 0xb7, 0xb7, 0xae, 0x11, 0x37, 0x7c, 0x7b, 0x17, 0x86, 0x81, 0xe7, 0xda, + 0x8f, 0xcc, 0xb6, 0x83, 0xd8, 0x97, 0xae, 0x7f, 0x67, 0x4e, 0x54, 0xf5, 0xf7, 0xab, 0x57, 0x97, + 0x7f, 0x5c, 0x1a, 0xb2, 0x59, 0xe7, 0x75, 0x6c, 0x46, 0x2d, 0xab, 0x60, 0x9a, 0x36, 0x9c, 0x90, + 0x9e, 0x8c, 0x67, 0x27, 0x14, 0x20, 0x39, 0xc4, 0xa6, 0x70, 0xb4, 0xa9, 0x41, 0xbb, 0xf6, 0x0d, + 0x99, 0xb7, 0xc6, 0x24, 0x0e, 0xdf, 0x9d, 0x9f, 0x9f, 0xb5, 0x0c, 0x62, 0x94, 0xbd, 0xb7, 0xa6, + 0x30, 0xf5, 0x87, 0x8f, 0xc1, 0xeb, 0x20, 0x16, 0xc6, 0x38, 0x86, 0x57, 0xbe, 0xcd, 0xcc, 0x0a, + 0x47, 0xcc, 0x8a, 0xc5, 0x99, 0xb3, 0xfd, 0x74, 0x5a, 0xc5, 0xaa, 0xd7, 0xf9, 0x66, 0x90, 0x4f, + 0x33, 0x2a, 0xd7, 0x71, 0x92, 0x5a, 0x1e, 0x19, 0x95, 0x5a, 0x1e, 0x0a, 0x73, 0x0a, 0x60, 0x1a, + 0x51, 0xaa, 0xe6, 0x36, 0x78, 0x98, 0xa5, 0x62, 0x19, 0xe1, 0xd8, 0x06, 0x9f, 0x06, 0xee, 0xc7, + 0xc7, 0xd0, 0x88, 0x3d, 0x26, 0x81, 0x29, 0xfb, 0xe2, 0xc4, 0xc0, 0x6e, 0x76, 0x0c, 0xa9, 0xbb, + 0x36, 0xab, 0x8a, 0xdd, 0x36, 0xa8, 0xd6, 0xb0, 0x21, 0x55, 0xe2, 0x78, 0xa2, 0xd9, 0xb4, 0x4d, + 0x91, 0x16, 0xc2, 0xc0, 0xa4, 0xdc, 0xa0, 0xee, 0x6b, 0xf7, 0xd6, 0x0c, 0x7b, 0x30, 0x1a, 0x7c, + 0x70, 0xef, 0x4c, 0x89, 0xec, 0x2c, 0x0a, 0x83, 0x4d, 0xaa, 0xc2, 0xd8, 0x81, 0xef, 0x73, 0xdb, + 0x94, 0xfa, 0x2a, 0x6f, 0x82, 0xbb, 0x31, 0x6c, 0x34, 0x31, 0x73, 0xdb, 0xa4, 0xea, 0xd3, 0xe3, + 0x7b, 0xff, 0xed, 0x5f, 0x97, 0x61, 0xeb, 0xad, 0x99, 0xa4, 0xcd, 0xa0, 0xfc, 0x80, 0x99, 0xb1, + 0xbb, 0x92, 0xc2, 0xa4, 0xe4, 0xac, 0xde, 0xbf, 0xde, 0x5e, 0xfe, 0x61, 0xc6, 0x8e, 0x3a, 0x33, + 0xf6, 0x54, 0x32, 0xe6, 0x99, 0x11, 0xaf, 0x36, 0x23, 0xc9, 0xdc, 0x63, 0xa1, 0x11, 0x59, 0xc5, + 0xa1, 0x1c, 0x19, 0x14, 0x45, 0x6b, 0x1a, 0x13, 0x45, 0xdb, 0x28, 0xf5, 0xff, 0xfa, 0xbb, 0x63, + 0x48, 0x02, 0xcb, 0x8c, 0x56, 0x98, 0x93, 0x1a, 0x3f, 0xad, 0xb9, 0x60, 0xd6, 0xb9, 0x7c, 0x43, + 0x37, 0x0c, 0x5d, 0x53, 0xb0, 0x58, 0x52, 0x31, 0xc6, 0x94, 0xca, 0xf9, 0x91, 0x39, 0x47, 0xd9, + 0xfc, 0xe1, 0xda, 0x1f, 0x0d, 0x99, 0xb1, 0xd3, 0xfa, 0x41, 0x57, 0x81, 0x6c, 0x36, 0x7f, 0x33, + 0x43, 0x7d, 0x74, 0xa2, 0xa6, 0x31, 0x85, 0x01, 0xae, 0x0d, 0x29, 0x0c, 0xd0, 0xee, 0x99, 0x51, + 0x16, 0x22, 0x32, 0x03, 0xce, 0xba, 0x06, 0x95, 0x88, 0x59, 0x32, 0x00, 0x37, 0x22, 0x18, 0xb8, + 0x66, 0x1c, 0x9f, 0x30, 0xad, 0xe9, 0x7d, 0x63, 0x48, 0x9d, 0xbe, 0xfb, 0xa9, 0xa7, 0xbd, 0x0e, + 0x2f, 0x1d, 0x47, 0x18, 0x12, 0xe4, 0xb9, 0x15, 0xae, 0x73, 0xc7, 0x0d, 0xd9, 0x93, 0xf8, 0x36, + 0xf6, 0xa4, 0xeb, 0xb9, 0xfe, 0x37, 0x73, 0x0e, 0x00, 0xf9, 0xaf, 0x19, 0xf8, 0x40, 0x70, 0x66, + 0x0f, 0xaf, 0x3e, 0xbc, 0x31, 0x02, 0x19, 0x98, 0x41, 0x7b, 0xbd, 0xc0, 0x66, 0xde, 0x47, 0xe6, + 0x7d, 0x33, 0x65, 0xab, 0xba, 0x11, 0x0e, 0xc1, 0x96, 0xdc, 0x73, 0xa3, 0xb7, 0x5c, 0xb2, 0x37, + 0xef, 0xde, 0xdd, 0x98, 0x74, 0x84, 0xa4, 0x59, 0x14, 0xf7, 0xbf, 0x86, 0x9c, 0xa6, 0xe2, 0xb5, + 0xdd, 0xf0, 0xc1, 0x94, 0x5d, 0x72, 0xee, 0xe0, 0xe6, 0xbb, 0x29, 0x09, 0x15, 0x4c, 0x98, 0x91, + 0x74, 0x97, 0x84, 0xfd, 0x93, 0xe0, 0x9e, 0x29, 0x81, 0x54, 0x77, 0x60, 0xdd, 0x45, 0x46, 0xcc, + 0xd9, 0xd0, 0xf1, 0x27, 0xfb, 0x4b, 0xde, 0x04, 0x41, 0x68, 0x52, 0x3e, 0x6e, 0xf7, 0x63, 0xf0, + 0x8d, 0xfb, 0xef, 0x0d, 0xd9, 0x01, 0x11, 0x39, 0xb6, 0x6b, 0xca, 0x31, 0x25, 0xe6, 0xe8, 0x89, + 0x77, 0x61, 0xe0, 0x1b, 0x55, 0x28, 0xc8, 0x88, 0xd3, 0x84, 0x07, 0xcc, 0x08, 0x66, 0xcb, 0xcd, + 0x18, 0x7b, 0x6e, 0x9b, 0x72, 0x66, 0x42, 0x22, 0x6f, 0x98, 0xb1, 0xcf, 0x3f, 0x74, 0xcd, 0xca, + 0x3e, 0xf9, 0xc3, 0x31, 0x62, 0xf1, 0x47, 0xd1, 0xa9, 0x41, 0xe9, 0x6a, 0xc9, 0x41, 0xf8, 0x8e, + 0x19, 0x54, 0xe6, 0x6e, 0x10, 0x9a, 0xb4, 0x59, 0xf3, 0xdd, 0x07, 0x73, 0x76, 0x10, 0xfd, 0x66, + 0xc4, 0xbd, 0xba, 0xbe, 0xe4, 0xc2, 0xe3, 0xec, 0x9e, 0x9b, 0x91, 0x0b, 0x6a, 0xd0, 0xe1, 0xa0, + 0x9e, 0xeb, 0xf3, 0x3b, 0x53, 0x36, 0xbf, 0x46, 0x9e, 0x21, 0x47, 0x6e, 0x32, 0xaf, 0x6b, 0x08, + 0x69, 0x31, 0xe4, 0x64, 0xb2, 0xd5, 0xdd, 0xda, 0x46, 0xc4, 0x8f, 0x5c, 0x69, 0x04, 0x1b, 0x18, + 0x31, 0xfb, 0x03, 0xb7, 0xff, 0xf4, 0xed, 0xc0, 0x97, 0x22, 0xf0, 0x3c, 0xee, 0x5c, 0xbf, 0x36, + 0x23, 0x05, 0xd5, 0x08, 0xec, 0xf2, 0xd0, 0xea, 0x8e, 0x3c, 0x43, 0x4e, 0xd2, 0x6b, 0x18, 0x92, + 0xfe, 0xf2, 0xfa, 0xea, 0x8d, 0x39, 0x3b, 0x5b, 0x3f, 0x3a, 0x23, 0x23, 0x4a, 0x89, 0x1b, 0x54, + 0x84, 0x77, 0x51, 0x92, 0xe8, 0xe5, 0x48, 0x46, 0x66, 0x85, 0x8f, 0x44, 0xd4, 0x6a, 0x1b, 0xa1, + 0x16, 0xdb, 0xb6, 0x7c, 0x35, 0x8a, 0x3d, 0x33, 0x34, 0x62, 0x33, 0x78, 0x2c, 0x8f, 0x6c, 0x33, + 0xa4, 0xb7, 0xfb, 0xb6, 0x11, 0xf0, 0x75, 0x18, 0x45, 0xae, 0x21, 0x59, 0xd1, 0x5c, 0x78, 0xcc, + 0x6f, 0x99, 0x01, 0x58, 0x9a, 0x46, 0xec, 0x6a, 0x96, 0xa2, 0xd1, 0x38, 0x33, 0x69, 0x73, 0x57, + 0xcb, 0x1c, 0x55, 0xe8, 0xad, 0x51, 0xc7, 0x97, 0x5f, 0x4a, 0x43, 0x3c, 0xbf, 0x30, 0x62, 0xa7, + 0x8c, 0x37, 0x0a, 0x8d, 0x39, 0xa8, 0xda, 0x94, 0x5a, 0xb4, 0x2d, 0xc3, 0x42, 0x2e, 0x03, 0x53, + 0x32, 0x9c, 0x4c, 0x49, 0x70, 0x5a, 0xdf, 0xb7, 0x6e, 0x16, 0x69, 0x71, 0x47, 0xd2, 0x0c, 0x48, + 0xc0, 0xfc, 0x28, 0xfc, 0x3f, 0x43, 0xd8, 0x80, 0x60, 0x8e, 0x1b, 0xbc, 0xbd, 0x7c, 0x69, 0xc8, + 0x69, 0x94, 0xe2, 0x8d, 0x21, 0xa9, 0x84, 0x91, 0x63, 0x46, 0xa1, 0x9b, 0x31, 0x2e, 0x6c, 0xb6, + 0xcf, 0x3b, 0x86, 0x48, 0x59, 0x1f, 0x9d, 0x91, 0x39, 0x91, 0x6d, 0x43, 0x20, 0xe1, 0x64, 0xbb, + 0xec, 0xa4, 0x60, 0xcc, 0x80, 0xd9, 0xdc, 0xc8, 0xa2, 0x20, 0x46, 0x48, 0x59, 0x6e, 0x64, 0x07, + 0xd7, 0x1f, 0xde, 0x98, 0x02, 0x16, 0xe2, 0xc8, 0x08, 0xa2, 0xe0, 0xd8, 0xbe, 0x41, 0x94, 0xf6, + 0xf5, 0xef, 0x57, 0x86, 0xa0, 0x02, 0x33, 0x8e, 0xae, 0x48, 0x64, 0x8d, 0x36, 0x73, 0xde, 0xb0, + 0x3b, 0x43, 0x4e, 0xe2, 0xf9, 0xe0, 0x1a, 0x71, 0xa7, 0x03, 0xc7, 0x71, 0x0d, 0xda, 0x61, 0x60, + 0x46, 0x15, 0x4c, 0xff, 0x9d, 0x13, 0x1b, 0x92, 0x93, 0x61, 0x46, 0x4a, 0xd6, 0xc0, 0xf5, 0xdd, + 0x5b, 0xe6, 0x9b, 0x51, 0x4b, 0xc5, 0xf1, 0xff, 0x32, 0xe3, 0x44, 0x36, 0xdb, 0x17, 0x86, 0xa4, + 0x35, 0x0c, 0x63, 0x5f, 0x1a, 0x73, 0x6c, 0xc2, 0xa2, 0x3e, 0xe3, 0xdb, 0x9b, 0x6b, 0x73, 0xaa, + 0xff, 0x98, 0x84, 0xb2, 0x47, 0xa1, 0x17, 0x7d, 0x8c, 0x0d, 0xab, 0x10, 0xd8, 0x99, 0x6c, 0x86, + 0xfa, 0xcd, 0x8c, 0x32, 0x0a, 0xa1, 0x08, 0xa6, 0x3b, 0xfd, 0x43, 0x8f, 0x3f, 0x04, 0x46, 0xd8, + 0x09, 0xc7, 0x8b, 0xbe, 0x1b, 0x92, 0xfc, 0x64, 0x4e, 0xe9, 0x84, 0x31, 0x98, 0x91, 0x66, 0x68, + 0x5c, 0x06, 0xc9, 0xf3, 0x86, 0x68, 0x46, 0x61, 0xe0, 0x37, 0xbb, 0x59, 0xa0, 0x4c, 0xaa, 0x2b, + 0xfa, 0x47, 0xb4, 0xed, 0xfe, 0xfa, 0x5b, 0x3f, 0xff, 0xc6, 0x2f, 0xde, 0x73, 0xfd, 0x32, 0xbe, + 0x1b, 0x71, 0x5f, 0x72, 0xa7, 0x7e, 0x51, 0xfb, 0x7c, 0x44, 0x33, 0x04, 0xf3, 0x57, 0x7e, 0x12, + 0xd8, 0x96, 0x3b, 0xb8, 0x70, 0x67, 0x42, 0x5d, 0xb4, 0xfe, 0x87, 0xe4, 0xf7, 0x48, 0x32, 0xc9, + 0xeb, 0xfb, 0xcd, 0x88, 0xfa, 0x15, 0x8f, 0x6c, 0xe1, 0x86, 0xd2, 0x0d, 0xfc, 0x71, 0x1f, 0x97, + 0x8e, 0x13, 0xd5, 0x3e, 0xde, 0x5c, 0x5f, 0xd5, 0x4e, 0x6a, 0x93, 0x5a, 0x85, 0xf2, 0x31, 0xe4, + 0xb5, 0x20, 0x9c, 0xb4, 0x59, 0x1b, 0x04, 0xa2, 0x26, 0x87, 0xbc, 0x76, 0xcb, 0x22, 0x5e, 0x9b, + 0x77, 0xbb, 0x6f, 0x57, 0xff, 0xcf, 0xf5, 0xc7, 0xef, 0xa5, 0xb9, 0xe7, 0xd7, 0x5f, 0x06, 0xfe, + 0xc0, 0xbd, 0xab, 0x5f, 0xd4, 0x1a, 0x7b, 0x5e, 0x70, 0x23, 0xf8, 0xc0, 0x7d, 0xa8, 0x5f, 0xa4, + 0x98, 0xda, 0x0b, 0x5b, 0x66, 0x5b, 0x13, 0x59, 0x6e, 0xff, 0x75, 0x54, 0xff, 0x10, 0xc4, 0xc2, + 0xe6, 0xa9, 0xba, 0x9b, 0xbe, 0x06, 0xfe, 0xf8, 0x3d, 0x10, 0xce, 0x74, 0xbd, 0x4f, 0xee, 0x38, + 0xdd, 0xe2, 0xad, 0xff, 0x1f, 0x8b, 0x2e, 0xc5, 0x5d, 0x3c, 0x9e, 0x68, 0xf5, 0x8b, 0x9a, 0x14, + 0x31, 0x4f, 0xd9, 0xc0, 0xd2, 0xd5, 0xf3, 0x07, 0xa7, 0x5e, 0x68, 0xfb, 0x4e, 0x3f, 0x57, 0xa4, + 0x1b, 0x30, 0x19, 0xba, 0x4e, 0xfa, 0x77, 0x3e, 0x0f, 0xcd, 0x8d, 0xaf, 0x4e, 0xf9, 0xb6, 0xd6, + 0x56, 0xc8, 0xbb, 0xc9, 0x27, 0xe6, 0x79, 0x8f, 0xb5, 0x88, 0xcb, 0xc9, 0x72, 0x90, 0xec, 0xae, + 0x16, 0x8a, 0x40, 0x06, 0x76, 0xe0, 0xd5, 0x5c, 0x87, 0xfb, 0xd2, 0x1d, 0xb8, 0x5c, 0xd4, 0x06, + 0x2e, 0xf7, 0x9c, 0xda, 0xb3, 0xf1, 0x72, 0x3a, 0xae, 0xc9, 0x21, 0x93, 0x5f, 0x7c, 0x37, 0xaa, + 0x31, 0xdb, 0xe6, 0xa1, 0xe4, 0x4e, 0x2d, 0xf0, 0x27, 0x57, 0x7f, 0x7a, 0x73, 0xf9, 0x47, 0xfa, + 0x7b, 0x1a, 0xb0, 0xd8, 0x5b, 0x1e, 0x40, 0x6b, 0xbc, 0x50, 0xa3, 0x8b, 0x71, 0x5f, 0x5f, 0x1b, + 0x7f, 0x9d, 0x35, 0x1b, 0x8d, 0xb4, 0x6d, 0x26, 0xcb, 0xb3, 0x91, 0xf2, 0xb2, 0xb4, 0xcb, 0x34, + 0xcf, 0x72, 0x25, 0x58, 0xb6, 0x79, 0x97, 0x2f, 0xd9, 0x32, 0x26, 0x5b, 0xce, 0x34, 0xcb, 0x3a, + 0x9b, 0x7f, 0x4e, 0x89, 0x3b, 0xea, 0x93, 0xe2, 0x2a, 0xb9, 0x46, 0x7c, 0xba, 0xbc, 0xe4, 0xa3, + 0xe0, 0x83, 0x2c, 0xa3, 0x3e, 0xf3, 0x41, 0xdd, 0x0c, 0xd7, 0x5e, 0x27, 0x5d, 0xff, 0xc6, 0xa2, + 0x1c, 0xf3, 0x66, 0xf6, 0x20, 0x93, 0x95, 0xfa, 0xf1, 0xdf, 0x37, 0xaf, 0x3e, 0x64, 0x9d, 0x38, + 0x9f, 0x98, 0x17, 0xf3, 0x68, 0x2f, 0xa4, 0x41, 0x0b, 0x02, 0xb7, 0x3f, 0x4b, 0xe3, 0xaf, 0xf3, + 0x56, 0x23, 0xc3, 0xde, 0x8d, 0x1c, 0x18, 0x56, 0xd1, 0x63, 0x34, 0x2b, 0xf1, 0x18, 0x67, 0x55, + 0x78, 0x8c, 0xcb, 0x3f, 0xfe, 0x5d, 0x85, 0xa1, 0x38, 0xbb, 0x3c, 0xcb, 0xf1, 0x18, 0x99, 0xae, + 0xec, 0xab, 0x36, 0xfd, 0xfa, 0xa9, 0xd9, 0x73, 0x63, 0x19, 0x15, 0xab, 0x09, 0x3e, 0xe0, 0x82, + 0xfb, 0x36, 0xaf, 0x0d, 0x44, 0x30, 0xaa, 0x31, 0x7f, 0xc1, 0x9f, 0x6a, 0x32, 0x98, 0x00, 0x41, + 0x3b, 0x10, 0x82, 0x47, 0x61, 0xe0, 0x3b, 0xae, 0x7f, 0xf7, 0xc5, 0x9f, 0xa4, 0x91, 0xd9, 0xdc, + 0xbd, 0xe7, 0xa2, 0x66, 0x07, 0xa3, 0x30, 0xf0, 0xb9, 0x2f, 0x5f, 0x54, 0x84, 0x6c, 0x2d, 0x3d, + 0xdc, 0x41, 0x72, 0xae, 0xe5, 0xe7, 0x37, 0x86, 0x7a, 0x2d, 0xdd, 0x73, 0x76, 0x06, 0x96, 0x69, + 0xe0, 0xb7, 0x2d, 0xac, 0x1b, 0x11, 0xdc, 0xbb, 0x0e, 0x5f, 0x5d, 0x5c, 0xc9, 0x52, 0x5a, 0x5e, + 0x3b, 0x51, 0x7c, 0x3b, 0x5f, 0x3e, 0x09, 0x0b, 0x5b, 0xac, 0xb4, 0x68, 0x76, 0x45, 0x38, 0x7c, + 0x8c, 0x5c, 0x9b, 0x79, 0xb5, 0x30, 0x10, 0x72, 0xb1, 0xde, 0x12, 0xc9, 0xc3, 0x8d, 0x16, 0xcb, + 0xf5, 0xc5, 0x17, 0xff, 0xe3, 0x90, 0xd7, 0x1c, 0x7e, 0xef, 0xda, 0xbc, 0x36, 0x8a, 0x23, 0x59, + 0x0b, 0x7c, 0xef, 0xb1, 0x16, 0x06, 0x61, 0xec, 0x31, 0xc9, 0xa7, 0x5f, 0xf7, 0x38, 0x1b, 0xd4, + 0xbe, 0xbb, 0x72, 0xb8, 0x76, 0x7b, 0x5f, 0x7c, 0xb6, 0xd4, 0x7a, 0x30, 0xa8, 0x4d, 0x04, 0x96, + 0x8f, 0xef, 0x2f, 0xff, 0xf8, 0xf0, 0xf2, 0xd5, 0xf5, 0xa7, 0x57, 0xef, 0x5f, 0x1c, 0x08, 0x6f, + 0xcb, 0x3e, 0x11, 0x0e, 0x83, 0xbe, 0x65, 0xb2, 0x10, 0xa6, 0xb0, 0xb8, 0xf1, 0xea, 0xc8, 0xc9, + 0xe0, 0x4e, 0x33, 0x5c, 0x7b, 0xc3, 0xe4, 0x70, 0xe6, 0xf7, 0x43, 0x8f, 0xc9, 0x41, 0x20, 0x46, + 0x17, 0xf3, 0xd5, 0x18, 0x6d, 0xff, 0xf3, 0xe7, 0xe5, 0xbf, 0xfa, 0x6c, 0xc4, 0xff, 0x69, 0xc7, + 0x42, 0x70, 0x5f, 0x3e, 0x3b, 0x3e, 0x79, 0xf1, 0x62, 0x72, 0x4d, 0x20, 0xe4, 0xc5, 0x90, 0x09, + 0xe7, 0x3b, 0x13, 0x7c, 0xf2, 0x5b, 0x7f, 0xa5, 0xa9, 0x65, 0x0b, 0x14, 0xed, 0xfc, 0x9f, 0x93, + 0xf5, 0x7e, 0xea, 0xc0, 0x63, 0xda, 0xf0, 0xd8, 0xa6, 0xaa, 0x3d, 0x76, 0x0c, 0xae, 0x8c, 0xd6, + 0x51, 0xd9, 0xdc, 0x4f, 0x24, 0x1b, 0xd5, 0x23, 0x20, 0x32, 0x20, 0xb2, 0xa2, 0x10, 0xd9, 0x6c, + 0x32, 0x5a, 0xb3, 0xaa, 0x09, 0x99, 0x61, 0xd9, 0x46, 0x4b, 0xf9, 0xb0, 0xd9, 0xeb, 0x40, 0xd4, + 0xd8, 0x6c, 0x89, 0xb8, 0xff, 0x1f, 0x77, 0x16, 0xeb, 0xea, 0x79, 0xcd, 0x73, 0xa3, 0x09, 0xf2, + 0x99, 0x2f, 0xc1, 0x19, 0x08, 0xdb, 0xb2, 0xba, 0x6a, 0xcf, 0x3c, 0xe6, 0xf3, 0xe8, 0x78, 0x75, + 0x19, 0xce, 0x40, 0xdb, 0x3a, 0x26, 0xdb, 0xbc, 0x9c, 0x09, 0x5e, 0xe3, 0x1e, 0x1f, 0x8f, 0x73, + 0x34, 0xee, 0x93, 0xd5, 0xb6, 0xd2, 0xaa, 0x2f, 0xbe, 0x3b, 0x15, 0xe3, 0x67, 0x06, 0xb8, 0x36, + 0x0a, 0x1c, 0xee, 0x01, 0x8b, 0x01, 0x8b, 0x01, 0x8b, 0x19, 0x85, 0xc5, 0x96, 0x86, 0xea, 0x62, + 0xe9, 0x73, 0xff, 0x27, 0xff, 0xb7, 0xfe, 0x5f, 0xeb, 0xb6, 0x30, 0x5a, 0xff, 0x42, 0xf2, 0xf7, + 0xf5, 0x3f, 0xbb, 0xbe, 0xc3, 0x1f, 0xea, 0x4a, 0x47, 0xfb, 0x8d, 0x1b, 0xc9, 0x4b, 0x29, 0x45, + 0xb6, 0x11, 0x7f, 0xeb, 0xfa, 0xaf, 0x12, 0x5b, 0x58, 0xbf, 0xa8, 0xf9, 0xb1, 0xe7, 0x65, 0x18, + 0xb7, 0xb7, 0xec, 0x21, 0x7f, 0x23, 0xef, 0x84, 0xc3, 0x05, 0x77, 0x7e, 0x7b, 0x4c, 0x9a, 0x00, + 0xd2, 0x2d, 0x18, 0xe9, 0x6e, 0xd1, 0x1f, 0xd7, 0x84, 0x90, 0xc4, 0x41, 0x26, 0xb2, 0x87, 0xeb, + 0xdf, 0x73, 0x5f, 0x06, 0xe2, 0xb1, 0x2a, 0xf0, 0x77, 0xfc, 0xb4, 0x07, 0x89, 0x7b, 0x27, 0x0f, + 0x6e, 0x0a, 0xe0, 0x5d, 0x21, 0xd9, 0xd9, 0xd1, 0xee, 0x6a, 0x33, 0xf9, 0xa1, 0xae, 0x1f, 0xf8, + 0xd6, 0x56, 0xb0, 0x1b, 0x3d, 0x5f, 0x41, 0xb9, 0x43, 0x5e, 0x9b, 0x75, 0x3d, 0xd1, 0x19, 0x97, + 0x95, 0xc8, 0x25, 0x58, 0xbb, 0xba, 0x3c, 0x0f, 0x05, 0x84, 0x66, 0x18, 0x8b, 0xc3, 0x40, 0x9f, + 0xe9, 0x56, 0x28, 0x60, 0x27, 0x3d, 0xec, 0x34, 0x4f, 0x9a, 0xfb, 0xe9, 0x37, 0xfa, 0xbf, 0xca, + 0x62, 0xf5, 0xfd, 0x40, 0xb2, 0xc4, 0xc0, 0xfd, 0x7a, 0x88, 0xeb, 0x91, 0x3d, 0xe4, 0x23, 0x16, + 0xce, 0xdf, 0x6c, 0xc8, 0x7d, 0x7b, 0x62, 0x4c, 0xac, 0x25, 0x7c, 0xb3, 0xed, 0xe3, 0xc9, 0x14, + 0xde, 0x1c, 0x65, 0x7b, 0x94, 0x9f, 0xcc, 0xd9, 0x7a, 0x14, 0xdf, 0x2e, 0x3a, 0xfc, 0xe5, 0x53, + 0x2c, 0x36, 0x67, 0xae, 0x5c, 0xf6, 0x8b, 0xd7, 0xb4, 0x1f, 0xa2, 0xd9, 0xdb, 0xae, 0xa6, 0xb1, + 0xa3, 0xcb, 0x76, 0xd3, 0xdd, 0x67, 0x0d, 0xa5, 0xb5, 0x92, 0x99, 0xad, 0x62, 0x66, 0x2b, 0xb8, + 0x6e, 0xf5, 0xdc, 0x3d, 0x8a, 0xff, 0xe4, 0x4b, 0xd6, 0xde, 0x17, 0x7d, 0xac, 0xcc, 0x8a, 0xfd, + 0xdf, 0xe0, 0xb6, 0x39, 0x55, 0x11, 0xb0, 0xec, 0x0e, 0x0e, 0x12, 0x2a, 0xbb, 0x03, 0x63, 0x80, + 0xb2, 0x3d, 0x9b, 0x11, 0x19, 0x11, 0x72, 0x72, 0x7d, 0x36, 0xe4, 0xd9, 0x34, 0x0c, 0x79, 0xba, + 0x03, 0xe0, 0xce, 0x9c, 0xd3, 0x5d, 0x0f, 0xea, 0x4c, 0xbb, 0x0c, 0xe6, 0x17, 0x3a, 0x2b, 0x9c, + 0x2d, 0xef, 0x26, 0xbd, 0xa5, 0xc6, 0x32, 0xbe, 0xe9, 0x6c, 0x14, 0x2d, 0xf7, 0x82, 0xa1, 0x58, + 0x38, 0x64, 0x0b, 0x88, 0x6a, 0x21, 0x91, 0x2f, 0x28, 0xf2, 0x85, 0x45, 0xb9, 0xc0, 0xb2, 0x2d, + 0xb4, 0x8c, 0x0b, 0x2e, 0x3f, 0xdd, 0xdb, 0x44, 0x43, 0x52, 0xb8, 0xfe, 0x5d, 0x9e, 0xe9, 0x32, + 0x73, 0x32, 0x67, 0x47, 0x7a, 0xde, 0x5b, 0x86, 0x77, 0x56, 0xe7, 0x3e, 0xbb, 0xf5, 0xb8, 0x93, + 0xdf, 0xd6, 0xcc, 0x1a, 0xca, 0x38, 0x6e, 0x4b, 0xfb, 0x84, 0xc6, 0xd3, 0x17, 0xe6, 0x0a, 0xe6, + 0x0a, 0xe6, 0x2a, 0xcd, 0x6c, 0xb9, 0x0d, 0x02, 0x8f, 0x33, 0x9f, 0xc2, 0x5e, 0x35, 0x4b, 0x6c, + 0xaf, 0xa6, 0xa1, 0xcb, 0x8b, 0xfc, 0xd5, 0x78, 0xc6, 0xcd, 0xe4, 0xb7, 0x55, 0x0d, 0x18, 0x2a, + 0x18, 0x2a, 0x18, 0xaa, 0x34, 0xb3, 0x25, 0x76, 0x7d, 0xd9, 0x6e, 0x11, 0xd8, 0xa9, 0xd3, 0x1c, + 0x4d, 0xbc, 0x67, 0xfe, 0x1d, 0xcf, 0xb5, 0x21, 0xb1, 0x96, 0x7b, 0xef, 0x55, 0x2d, 0xc9, 0x74, + 0xc8, 0x3d, 0xef, 0x89, 0x8c, 0xca, 0x46, 0x73, 0x93, 0x6d, 0x9b, 0x84, 0xed, 0xbd, 0x16, 0xcc, + 0x1e, 0x73, 0xd1, 0x2b, 0xf7, 0xce, 0x9d, 0xe4, 0x64, 0x34, 0x72, 0xb7, 0xfb, 0xf4, 0x9c, 0x60, + 0x08, 0xd8, 0x43, 0xe9, 0x87, 0xa0, 0xd3, 0x3a, 0xef, 0x9c, 0xf7, 0x4e, 0x5b, 0xe7, 0xdd, 0x12, + 0x8f, 0xc5, 0x51, 0x31, 0x57, 0xf7, 0x75, 0xc1, 0x15, 0xa5, 0x8a, 0xd1, 0xab, 0x07, 0x99, 0x6d, + 0x87, 0x74, 0x7e, 0x51, 0x2f, 0xb0, 0x2d, 0xfe, 0x20, 0x2f, 0xe4, 0x24, 0xfd, 0x54, 0x8a, 0x47, + 0x2b, 0x49, 0x12, 0xb8, 0xe3, 0x34, 0x42, 0xdf, 0x80, 0x79, 0x11, 0x85, 0xd2, 0xa7, 0xbc, 0x86, + 0x4f, 0x5a, 0xd1, 0x3d, 0x5d, 0xf4, 0x71, 0xe3, 0xfa, 0x1c, 0xd1, 0xc8, 0xe5, 0xe8, 0xdf, 0xca, + 0x6f, 0x27, 0x89, 0x1e, 0xae, 0x2a, 0xec, 0x9b, 0x22, 0x9a, 0x92, 0x0d, 0xaa, 0xe7, 0x82, 0xe8, + 0xa6, 0x66, 0x94, 0x40, 0xd7, 0x27, 0x83, 0xc7, 0xc8, 0x26, 0xd9, 0x3e, 0x51, 0x13, 0x2b, 0xf3, + 0xe2, 0x45, 0x62, 0x21, 0x4e, 0xb2, 0x24, 0x01, 0xab, 0xb1, 0x13, 0xe1, 0x7d, 0x27, 0x87, 0x99, + 0x18, 0x5f, 0x7d, 0x20, 0xd1, 0xbf, 0x10, 0x56, 0x62, 0x9b, 0x95, 0x08, 0x2b, 0x13, 0xfd, 0x63, + 0x8e, 0x23, 0x78, 0x14, 0xed, 0x91, 0x08, 0xf4, 0xcb, 0xf9, 0xb2, 0x68, 0x2a, 0x9f, 0x42, 0xd5, + 0xac, 0x8a, 0x42, 0x15, 0x42, 0xa1, 0xd2, 0xb4, 0xb8, 0x8a, 0x51, 0xa8, 0xb2, 0x2e, 0xba, 0xf5, + 0xc5, 0x97, 0x7f, 0x90, 0xd7, 0x96, 0x60, 0xde, 0x21, 0xce, 0xb7, 0x10, 0xc9, 0x16, 0x24, 0xe5, + 0xc2, 0x24, 0x5f, 0xa0, 0xd4, 0x0b, 0x55, 0xd9, 0x82, 0x55, 0xb6, 0x70, 0x55, 0x2c, 0x60, 0x22, + 0x65, 0x27, 0xe7, 0x7c, 0xcb, 0xbb, 0xb0, 0xe7, 0x0d, 0x65, 0x4c, 0x35, 0xfb, 0xe5, 0xe4, 0xcd, + 0x94, 0x82, 0xa6, 0x78, 0xb9, 0x93, 0x2f, 0x7b, 0x15, 0xcb, 0x5f, 0x99, 0x19, 0x50, 0x65, 0x0e, + 0x94, 0x9b, 0x05, 0xe5, 0xe6, 0x41, 0xa5, 0x99, 0xa0, 0x31, 0x17, 0x44, 0x66, 0x83, 0xdc, 0x7c, + 0x2c, 0xf1, 0x55, 0xfa, 0xf9, 0xb4, 0x60, 0xb3, 0xd4, 0x13, 0x89, 0x36, 0x20, 0xa1, 0xcc, 0xac, + 0xa8, 0x34, 0x2f, 0xca, 0xcd, 0x8c, 0x6a, 0x73, 0xa3, 0xcd, 0xec, 0x68, 0x33, 0x3f, 0x3a, 0xcc, + 0x10, 0xad, 0x39, 0x22, 0x36, 0x4b, 0xf9, 0x15, 0xc5, 0x54, 0x0a, 0x99, 0x45, 0xc3, 0x45, 0x7e, + 0x0a, 0x58, 0xce, 0x14, 0xb4, 0x7d, 0xc3, 0xa4, 0xe4, 0xc2, 0xcf, 0x1d, 0xa9, 0xdf, 0xd9, 0xc1, + 0x7f, 0x9e, 0x3d, 0xfb, 0xdc, 0xb0, 0xce, 0xfb, 0x3f, 0x3e, 0x37, 0xad, 0xf3, 0xfe, 0xf4, 0x63, + 0x73, 0xf2, 0xcf, 0xf4, 0x73, 0xeb, 0x73, 0xc3, 0xea, 0xcc, 0x3e, 0x77, 0x3f, 0x37, 0xac, 0x6e, + 0xff, 0xf8, 0xcb, 0x97, 0x17, 0xc7, 0x7f, 0xb7, 0x9f, 0xd2, 0x5f, 0xf8, 0x0f, 0xfa, 0xc9, 0xdd, + 0x3f, 0x2a, 0xe7, 0x52, 0x21, 0x5c, 0x26, 0x89, 0xa9, 0xb3, 0x3c, 0xee, 0xdf, 0x4d, 0x44, 0x6c, + 0x45, 0xbe, 0x77, 0xb5, 0x1b, 0xb8, 0x61, 0xb8, 0x61, 0xb8, 0x61, 0xb8, 0x61, 0xb2, 0xd9, 0x1e, + 0xbb, 0xbe, 0x3c, 0x53, 0xe8, 0x7f, 0xbb, 0x0a, 0x9a, 0xa6, 0x49, 0x93, 0xdb, 0xf5, 0xa3, 0x66, + 0x75, 0xd6, 0xa8, 0xd3, 0xea, 0x34, 0xdb, 0xf4, 0x8d, 0x6e, 0x88, 0xd3, 0xf0, 0x76, 0xf6, 0xa3, + 0x20, 0x25, 0x4c, 0xd3, 0xea, 0x5d, 0x1d, 0x7a, 0xf6, 0x50, 0xb9, 0xa1, 0x6f, 0xb7, 0x2a, 0x34, + 0xf6, 0x47, 0x66, 0xb4, 0x5a, 0x5a, 0x64, 0x5d, 0x2a, 0x75, 0x2d, 0x67, 0x0e, 0xdc, 0xce, 0x76, + 0x95, 0xe4, 0xc6, 0x8d, 0x99, 0xf0, 0xc9, 0x3c, 0x30, 0x3e, 0xfb, 0x94, 0x29, 0x65, 0x4e, 0xdd, + 0xe8, 0x50, 0xa4, 0x34, 0x13, 0x4a, 0x94, 0xf4, 0xd2, 0x24, 0x75, 0x8e, 0x34, 0x22, 0x1c, 0x88, + 0x70, 0x68, 0xe6, 0x34, 0xe5, 0xb2, 0xc1, 0xe4, 0xdc, 0x85, 0x20, 0x59, 0xf1, 0x57, 0x8b, 0xbf, + 0x79, 0x4a, 0xd8, 0xe6, 0x96, 0xe4, 0xc6, 0xb0, 0x4a, 0xe6, 0x7c, 0x5a, 0x7c, 0x8a, 0xdc, 0xa2, + 0xa7, 0x29, 0xd9, 0xb9, 0xf7, 0xb8, 0x52, 0x1b, 0xf5, 0x16, 0x8c, 0x3a, 0x8c, 0xfa, 0x01, 0x1a, + 0x75, 0x84, 0xad, 0xa1, 0x97, 0x2b, 0x36, 0x33, 0xaa, 0xcd, 0x8d, 0x36, 0xb3, 0xa3, 0xcd, 0xfc, + 0xe8, 0x30, 0x43, 0x6a, 0x14, 0x0d, 0x84, 0xad, 0x77, 0x01, 0x16, 0x84, 0xad, 0x11, 0xb6, 0x56, + 0xb1, 0x4c, 0xea, 0x81, 0x70, 0xef, 0x14, 0x84, 0x21, 0x16, 0xee, 0x60, 0xda, 0x3e, 0x1c, 0x2f, + 0x1c, 0x2f, 0x1c, 0x2f, 0x1c, 0x2f, 0xa1, 0xe3, 0x9d, 0xb9, 0x5d, 0x4b, 0x89, 0x89, 0x59, 0xf1, + 0xbe, 0x1d, 0x05, 0x6d, 0xbf, 0xf2, 0xe3, 0xd1, 0xf8, 0x15, 0x3d, 0x21, 0x37, 0x8a, 0x6a, 0x4e, + 0x20, 0x37, 0x0a, 0x2e, 0x07, 0x2e, 0x07, 0x2e, 0x47, 0xd1, 0x6c, 0x47, 0x6e, 0xd4, 0xfa, 0x0f, + 0x72, 0xa3, 0xf6, 0xea, 0x06, 0xb9, 0x51, 0xe9, 0x86, 0x1e, 0xb9, 0x51, 0xe5, 0x1e, 0x7b, 0xe4, + 0x46, 0x95, 0xa0, 0x25, 0xe4, 0x46, 0x2d, 0x72, 0xa3, 0xf6, 0x38, 0xf7, 0x48, 0xdf, 0xe0, 0x50, + 0xc4, 0xd2, 0xef, 0x85, 0x50, 0x90, 0x1c, 0x35, 0x69, 0x15, 0x1b, 0xc0, 0x4b, 0x47, 0x7b, 0x10, + 0x49, 0x2f, 0x82, 0xd6, 0x54, 0x3c, 0x92, 0x3e, 0x5e, 0xec, 0xd6, 0x9d, 0x08, 0x62, 0x85, 0x11, + 0xf5, 0xa5, 0x3e, 0xd4, 0xa8, 0x2d, 0x4d, 0xa8, 0x2d, 0x50, 0x5b, 0xa0, 0xb6, 0x94, 0x4f, 0x6d, + 0xa1, 0x36, 0x57, 0xf3, 0x86, 0x89, 0xcb, 0xdf, 0xec, 0x5c, 0x4c, 0xa4, 0xe5, 0x70, 0x34, 0x99, + 0x2f, 0xe5, 0x66, 0x4c, 0x87, 0x39, 0xd3, 0x66, 0xd6, 0x74, 0x99, 0x37, 0xed, 0x66, 0x4e, 0xbb, + 0xb9, 0xd3, 0x69, 0xf6, 0x14, 0x8b, 0x0c, 0x8a, 0xd6, 0x8b, 0x2a, 0x73, 0x38, 0xef, 0x80, 0xd9, + 0x36, 0x0f, 0xa5, 0x35, 0x0a, 0x1c, 0x0d, 0x13, 0x79, 0x5e, 0x1a, 0x70, 0xa9, 0x53, 0xc5, 0x33, + 0x6b, 0xe9, 0xb4, 0x9a, 0x49, 0x21, 0x76, 0xd5, 0xfd, 0x69, 0x92, 0xff, 0x54, 0x1b, 0x6a, 0x9d, + 0x06, 0x5b, 0xbb, 0xe1, 0xd6, 0x6d, 0xc0, 0x0b, 0x33, 0xe4, 0x85, 0x19, 0xf4, 0x22, 0x0c, 0xbb, + 0x5a, 0x03, 0xaf, 0xd8, 0xd0, 0xcf, 0x5f, 0x98, 0xb2, 0x68, 0xe3, 0xce, 0xd5, 0x96, 0xff, 0xe8, + 0xb4, 0xd4, 0xe8, 0xb5, 0x79, 0x64, 0xe6, 0x04, 0x50, 0x19, 0x9c, 0x62, 0xce, 0x3d, 0x17, 0xd2, + 0x8d, 0xf8, 0x78, 0xb9, 0x4c, 0xa5, 0xec, 0x7b, 0xe6, 0x69, 0xf4, 0xc9, 0xdb, 0xfb, 0xd7, 0xe7, + 0x9e, 0x9b, 0x8d, 0x06, 0x9c, 0x33, 0x9c, 0x33, 0x9c, 0x33, 0x9c, 0x33, 0x9c, 0xf3, 0x72, 0x6a, + 0x50, 0xb3, 0xa7, 0xd1, 0x37, 0xf7, 0x34, 0x74, 0xa5, 0x36, 0x77, 0x68, 0xfd, 0x47, 0x8f, 0xf9, + 0xa8, 0xe9, 0xca, 0x2d, 0x2a, 0xc8, 0xa9, 0x6d, 0x74, 0x3b, 0x4b, 0x40, 0x69, 0x6a, 0xee, 0x57, + 0x63, 0x3e, 0x8a, 0x66, 0xf3, 0xb2, 0x3a, 0x95, 0xd8, 0xc3, 0xc1, 0x4d, 0xa5, 0x4e, 0xe3, 0xbc, + 0x7b, 0x40, 0xb3, 0xe9, 0xa8, 0x1a, 0xbd, 0xf4, 0x41, 0xe6, 0x36, 0xa6, 0x55, 0x28, 0x38, 0x1f, + 0x85, 0x52, 0x1f, 0x7b, 0x9b, 0x75, 0xa8, 0x8f, 0xae, 0x8d, 0x71, 0x2a, 0xf8, 0x1a, 0xf8, 0x1a, + 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xc4, 0xd4, 0x32, 0xfa, 0x5f, 0xcb, 0xe1, 0x1e, 0x7b, 0xd4, + 0xee, 0x85, 0x93, 0x6e, 0xf5, 0xf9, 0x62, 0x08, 0xa7, 0x70, 0xc4, 0x70, 0xc4, 0x70, 0xc4, 0x70, + 0xc4, 0x10, 0x4e, 0xe9, 0x7e, 0x20, 0x9c, 0x2a, 0xe9, 0x56, 0xd3, 0xa6, 0xcd, 0x8d, 0x7e, 0x21, + 0x9c, 0x56, 0x76, 0x2a, 0xb5, 0x7b, 0x8d, 0x06, 0x84, 0x53, 0xd3, 0x7a, 0x81, 0x70, 0xba, 0x8d, + 0xb8, 0xb9, 0x81, 0x70, 0xa5, 0x56, 0xce, 0x96, 0xf4, 0x88, 0x4c, 0x17, 0x10, 0x36, 0x10, 0x36, + 0x10, 0x36, 0x10, 0xb6, 0xc2, 0x08, 0xdb, 0x99, 0x46, 0xbe, 0xd6, 0x05, 0x5f, 0x03, 0x5f, 0x4b, + 0x03, 0xb2, 0x91, 0xe8, 0x02, 0xbe, 0x46, 0x34, 0x95, 0x5a, 0xdd, 0x0e, 0xe8, 0x1a, 0xe8, 0x9a, + 0xf9, 0x74, 0xed, 0xde, 0x15, 0x32, 0x66, 0xde, 0xbc, 0x50, 0xb9, 0x36, 0xd6, 0xb6, 0xde, 0x31, + 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0xd4, 0x46, 0x19, 0x6b, 0x9d, 0xb9, 0x28, + 0xe7, 0x1a, 0xfa, 0x4a, 0xde, 0x65, 0xe5, 0x38, 0x95, 0xa6, 0x93, 0x3f, 0x7e, 0x39, 0x86, 0x67, + 0x1a, 0xfb, 0x54, 0x7d, 0x52, 0xc8, 0xce, 0x8e, 0x4d, 0x3f, 0x41, 0xa4, 0x18, 0x90, 0xaa, 0x99, + 0x1f, 0x16, 0xb3, 0xf8, 0x7a, 0x58, 0x7c, 0x7a, 0x16, 0x1f, 0xb3, 0x06, 0x97, 0xd6, 0xeb, 0xfe, + 0xdf, 0xcd, 0xe7, 0x9d, 0xa7, 0x8b, 0xe3, 0xbf, 0x4f, 0x9f, 0xd6, 0xff, 0xf8, 0x63, 0xdb, 0xd7, + 0x9a, 0xcf, 0x4f, 0x9f, 0x2e, 0x76, 0xfc, 0x4f, 0xef, 0xe9, 0x62, 0xcf, 0x36, 0xba, 0x4f, 0xcf, + 0x36, 0xbe, 0x3a, 0xfe, 0x7b, 0x6b, 0xd7, 0x05, 0x9d, 0x1d, 0x17, 0xb4, 0x77, 0x5d, 0xd0, 0xde, + 0x71, 0xc1, 0xce, 0x5b, 0x6a, 0xed, 0xb8, 0xa0, 0xfb, 0xf4, 0x63, 0xe3, 0xfb, 0xcf, 0xb6, 0x7f, + 0xb5, 0xf7, 0x74, 0xfc, 0x63, 0xd7, 0xff, 0x9d, 0x3e, 0xfd, 0xb8, 0x38, 0xae, 0xa0, 0x29, 0x32, + 0x9d, 0xf7, 0x2b, 0x46, 0x9e, 0x6f, 0xdc, 0x48, 0x5e, 0x4a, 0x29, 0xf4, 0xa0, 0xcf, 0xb7, 0xae, + 0xff, 0xca, 0x9b, 0x54, 0x10, 0x88, 0xea, 0x17, 0x35, 0x3f, 0xf6, 0x3c, 0x0d, 0x80, 0xf0, 0x2d, + 0x7b, 0xd0, 0xdf, 0xe9, 0x3b, 0xe1, 0x70, 0xc1, 0x9d, 0xdf, 0x1e, 0x93, 0x2e, 0x21, 0x0e, 0xed, + 0x14, 0x87, 0x44, 0x10, 0x4b, 0x2e, 0x2c, 0xd7, 0xd1, 0x2f, 0x0f, 0x2d, 0xba, 0x86, 0x40, 0x04, + 0x81, 0x08, 0x02, 0x11, 0x04, 0x22, 0x08, 0x44, 0x88, 0xb7, 0x9b, 0x47, 0x4f, 0x11, 0x6f, 0x57, + 0xdf, 0x2f, 0xe2, 0xed, 0x95, 0x9d, 0x4a, 0xad, 0x2e, 0xea, 0x4a, 0x80, 0x77, 0xeb, 0xa2, 0x54, + 0x46, 0x15, 0x18, 0x56, 0x74, 0x4a, 0xcf, 0x46, 0x3f, 0x3a, 0x4f, 0xed, 0xb9, 0x17, 0x22, 0x3c, + 0x59, 0x1c, 0x21, 0x71, 0x92, 0x94, 0x64, 0x37, 0xe4, 0x74, 0x29, 0x05, 0x23, 0x5d, 0x9f, 0xbf, + 0x32, 0x4b, 0x0a, 0x66, 0x7f, 0x73, 0x7d, 0x0d, 0x85, 0xf0, 0xb7, 0xf4, 0x89, 0xa2, 0xf8, 0x45, + 0x91, 0x6d, 0x14, 0xc5, 0x37, 0x8e, 0x4c, 0xa3, 0x28, 0xfe, 0xae, 0x17, 0xa3, 0xbc, 0x28, 0xbe, + 0xe2, 0xb3, 0x42, 0x36, 0x16, 0xa5, 0xd2, 0x33, 0x43, 0x34, 0x99, 0x49, 0x6d, 0xe6, 0x52, 0xa7, + 0xd9, 0xd4, 0x6e, 0x3e, 0x75, 0x9b, 0xd1, 0xc2, 0xcc, 0x69, 0x61, 0x66, 0xb5, 0x08, 0xf3, 0xaa, + 0x87, 0x34, 0xa9, 0xd6, 0x28, 0x55, 0x9b, 0xdd, 0x79, 0x47, 0xb3, 0x2d, 0x99, 0x96, 0xc3, 0x6d, + 0xc1, 0x93, 0x31, 0xd2, 0xb4, 0x0e, 0xd6, 0xb7, 0x85, 0x2e, 0xdd, 0x83, 0xa6, 0x79, 0xa9, 0xb1, + 0xae, 0x4f, 0x41, 0xfa, 0x8c, 0x36, 0x17, 0x51, 0x84, 0xab, 0x28, 0xcc, 0x65, 0x14, 0xe5, 0x3a, + 0x0a, 0x77, 0x21, 0x85, 0xbb, 0x92, 0x22, 0x5d, 0x8a, 0x1e, 0xd7, 0xa2, 0xc9, 0xc5, 0xcc, 0x5f, + 0xa4, 0xb6, 0x70, 0xd8, 0xc6, 0x6a, 0xd5, 0x15, 0x16, 0x5b, 0x37, 0xbd, 0x1a, 0x05, 0x6a, 0xcd, + 0x61, 0xb2, 0xd9, 0x8f, 0x5e, 0x6b, 0x54, 0x2b, 0x2a, 0x6c, 0x56, 0x90, 0x4f, 0xdd, 0xe8, 0xbe, + 0xa0, 0x32, 0x43, 0xf3, 0xfe, 0x0b, 0x8c, 0x80, 0x68, 0xb6, 0x56, 0xab, 0x53, 0xae, 0x80, 0xf0, + 0x5a, 0xd9, 0xa6, 0x9c, 0xf6, 0xed, 0xad, 0xa5, 0x9a, 0x74, 0x47, 0xd5, 0xec, 0xad, 0x2a, 0xe9, + 0xbc, 0x1a, 0x8c, 0x42, 0x7d, 0x12, 0xf0, 0x58, 0x04, 0xb6, 0xf4, 0xb3, 0xd7, 0xf5, 0x1b, 0x00, + 0x8d, 0x04, 0x8d, 0x04, 0x8d, 0x04, 0x8d, 0x04, 0x8d, 0xd4, 0xb4, 0x5a, 0x3d, 0xce, 0x06, 0x82, + 0x0f, 0x8a, 0xd8, 0x42, 0x76, 0xaa, 0x77, 0x0b, 0x59, 0x92, 0xcf, 0x61, 0x5b, 0xee, 0xe0, 0x62, + 0x29, 0x4f, 0x63, 0xed, 0x0f, 0xc9, 0xef, 0xfe, 0xf8, 0xf5, 0x54, 0x6a, 0x8a, 0x69, 0xdd, 0x5f, + 0xb3, 0x4c, 0x6c, 0xb5, 0x6f, 0x79, 0x59, 0xa6, 0x38, 0xc5, 0x75, 0xae, 0x75, 0xdf, 0x8d, 0x46, + 0x54, 0x6a, 0x74, 0x64, 0x48, 0x53, 0x12, 0xd9, 0xbc, 0xbf, 0x22, 0x93, 0xc9, 0x36, 0xd3, 0x9a, + 0x94, 0xe6, 0x97, 0xa9, 0x9f, 0x20, 0x2a, 0xb7, 0x80, 0x45, 0x92, 0x49, 0xae, 0x2f, 0x8f, 0x62, + 0xda, 0x5d, 0xc5, 0xd2, 0x28, 0x5a, 0x48, 0xa3, 0x30, 0x86, 0xc4, 0x20, 0x8d, 0x02, 0x69, 0x14, + 0xbf, 0x7a, 0x61, 0x48, 0xa3, 0xd0, 0x72, 0x07, 0x48, 0xa3, 0x80, 0xfe, 0x05, 0xfd, 0x0b, 0xfa, + 0x17, 0xf4, 0x2f, 0xa4, 0x51, 0xa8, 0xe9, 0x12, 0x69, 0x14, 0xd5, 0xf3, 0xa9, 0x1b, 0xdd, 0x23, + 0x8d, 0x02, 0x69, 0x14, 0x05, 0x4d, 0x39, 0xa4, 0x51, 0x54, 0xb0, 0x37, 0xa4, 0x51, 0xec, 0x3f, + 0x0d, 0x91, 0x46, 0x01, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x79, 0xa8, 0x34, 0x12, 0x69, + 0x14, 0x48, 0xa3, 0x50, 0x4b, 0x6c, 0x91, 0x46, 0x81, 0x34, 0x8a, 0x92, 0x2c, 0x86, 0x43, 0x4f, + 0xa3, 0x98, 0x46, 0xef, 0x51, 0xf5, 0x49, 0xfd, 0x8c, 0x3b, 0x88, 0xaa, 0x4f, 0xda, 0xea, 0x0f, + 0x4d, 0x9f, 0x54, 0x8a, 0xd8, 0x96, 0x7e, 0x82, 0x5b, 0xae, 0x67, 0x7d, 0x7f, 0xfd, 0xb0, 0x74, + 0xe7, 0x5f, 0xaf, 0xc3, 0xfb, 0xce, 0xd7, 0xcb, 0xe9, 0xfd, 0x7e, 0xfd, 0x24, 0x44, 0xf8, 0xfb, + 0xf8, 0x4e, 0xbf, 0xce, 0xbf, 0xfd, 0x71, 0x76, 0xa3, 0x07, 0x5c, 0xaa, 0x4a, 0x6d, 0xca, 0x90, + 0x96, 0x54, 0x21, 0x6d, 0x05, 0xa9, 0x5a, 0x28, 0x48, 0x55, 0x1a, 0x02, 0x8e, 0x82, 0x54, 0x87, + 0xeb, 0x4e, 0x95, 0x17, 0xa4, 0x62, 0xb6, 0xcd, 0x43, 0x69, 0x8d, 0x02, 0x47, 0x63, 0x36, 0xe5, + 0x72, 0xa7, 0xfa, 0x0e, 0xc7, 0x1f, 0x30, 0x2f, 0xe2, 0x28, 0xd7, 0x5f, 0x3a, 0x83, 0xad, 0xdd, + 0x70, 0xeb, 0x36, 0xe0, 0x85, 0x19, 0xf2, 0xc2, 0x0c, 0x7a, 0x11, 0x86, 0xbd, 0x1a, 0x4c, 0x5d, + 0x7f, 0xb9, 0xfe, 0xdb, 0x20, 0xf0, 0x38, 0xf3, 0x75, 0x1e, 0xe6, 0xd8, 0xc4, 0x86, 0x86, 0x4d, + 0x47, 0xec, 0xdc, 0x73, 0x21, 0xdd, 0x68, 0xa2, 0xdb, 0x4d, 0x49, 0xec, 0x3d, 0xf3, 0x34, 0xfa, + 0xe4, 0xed, 0xfd, 0xeb, 0x73, 0xcf, 0xcd, 0x46, 0x03, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, + 0x19, 0xce, 0x79, 0x39, 0xdb, 0xb5, 0xd9, 0xd3, 0xe8, 0x9b, 0x7b, 0x38, 0x4c, 0x27, 0xfb, 0x83, + 0xe1, 0x30, 0x1d, 0xf5, 0xfd, 0xe2, 0x30, 0x9d, 0xca, 0x4e, 0xa5, 0x4e, 0xe3, 0x1c, 0xa7, 0xe9, + 0x18, 0xd7, 0x4b, 0x1f, 0x64, 0x6e, 0x63, 0x5a, 0xd9, 0xb1, 0x10, 0x63, 0x1a, 0x35, 0xdb, 0xa4, + 0xa8, 0xb1, 0xe0, 0xff, 0x7a, 0xcf, 0xa0, 0x54, 0xa0, 0x54, 0xa0, 0x54, 0xa0, 0x54, 0xa0, 0x54, + 0x38, 0x9e, 0x14, 0x8c, 0xca, 0x04, 0x18, 0xdc, 0x00, 0xa3, 0x02, 0xa3, 0xa2, 0x99, 0x4a, 0x38, + 0x9e, 0x14, 0x84, 0xaa, 0x12, 0x84, 0x2a, 0x14, 0x9c, 0x8f, 0x42, 0xa9, 0x8f, 0x47, 0xcd, 0x3a, + 0xd4, 0x17, 0xff, 0x1a, 0xa3, 0x54, 0xb0, 0x35, 0xb0, 0x35, 0xb0, 0x35, 0xb0, 0x35, 0xb0, 0x35, + 0x64, 0xa7, 0x94, 0xd1, 0xff, 0x5a, 0x0e, 0xf7, 0xd8, 0xa3, 0x76, 0x2f, 0x9c, 0x74, 0xab, 0xcf, + 0x17, 0x23, 0x13, 0x05, 0x8e, 0x18, 0x8e, 0x18, 0x8e, 0x18, 0x8e, 0x18, 0x99, 0x28, 0x74, 0x3f, + 0xd0, 0x4d, 0x95, 0x74, 0x0b, 0xdd, 0x54, 0xed, 0x54, 0x3a, 0x40, 0xdd, 0xb4, 0xdd, 0x6b, 0x34, + 0x20, 0x9c, 0x9a, 0xd6, 0x0b, 0x84, 0xd3, 0x6d, 0xc4, 0x4d, 0x77, 0x06, 0x8a, 0xae, 0xcc, 0x13, + 0x6c, 0x1d, 0x00, 0x61, 0x03, 0x61, 0x03, 0x61, 0x03, 0x61, 0xdb, 0x4d, 0xd8, 0x90, 0xe7, 0x02, + 0xbe, 0x56, 0x5a, 0x90, 0x8d, 0x9d, 0x03, 0xe0, 0x6b, 0x44, 0x53, 0x49, 0x7b, 0x41, 0x6b, 0xd0, + 0x35, 0xd0, 0x35, 0x15, 0xd3, 0xea, 0xde, 0x15, 0x32, 0x66, 0x9e, 0x95, 0x94, 0x1e, 0xd3, 0xc7, + 0xda, 0xd6, 0x3b, 0x06, 0x9d, 0x02, 0x9d, 0x02, 0x9d, 0x02, 0x9d, 0x02, 0x9d, 0x4a, 0x56, 0x9b, + 0x1b, 0x6a, 0xb2, 0x8d, 0xcb, 0xf6, 0xb1, 0x79, 0xae, 0xa1, 0xaf, 0xe4, 0x5d, 0x56, 0x8e, 0x53, + 0x2d, 0x46, 0xee, 0xbe, 0xa3, 0x71, 0xec, 0x36, 0xc6, 0xf0, 0x4c, 0x6f, 0xbd, 0x6f, 0xc9, 0x85, + 0xaf, 0xfd, 0xec, 0xa8, 0xfa, 0x7f, 0x9e, 0x3d, 0xfb, 0xdc, 0xb0, 0xce, 0xfb, 0x3f, 0x3e, 0x37, + 0xad, 0xf3, 0xfe, 0xf4, 0x63, 0x73, 0xf2, 0xcf, 0xf4, 0x73, 0xeb, 0x73, 0xc3, 0xea, 0xcc, 0x3e, + 0x77, 0x3f, 0x37, 0xac, 0x6e, 0xff, 0xf8, 0xcb, 0x97, 0x17, 0xc7, 0x7f, 0xb7, 0x9f, 0xd2, 0x5f, + 0xf8, 0x8f, 0x7a, 0xd5, 0x4e, 0x55, 0x79, 0x5e, 0xe1, 0xc5, 0xd7, 0xc3, 0xe2, 0xd3, 0xb3, 0xf8, + 0x98, 0x35, 0xb8, 0xb4, 0x5e, 0xf7, 0xff, 0x6e, 0x3e, 0xef, 0x3c, 0x5d, 0x1c, 0xff, 0x7d, 0xfa, + 0xb4, 0xfe, 0xc7, 0x1f, 0xdb, 0xbe, 0xd6, 0x7c, 0x7e, 0xfa, 0x74, 0xb1, 0xe3, 0x7f, 0x7a, 0x4f, + 0x17, 0x7b, 0xb6, 0xd1, 0x7d, 0x7a, 0xb6, 0xf1, 0xd5, 0xf1, 0xdf, 0x5b, 0xbb, 0x2e, 0xe8, 0xec, + 0xb8, 0xa0, 0xbd, 0xeb, 0x82, 0xf6, 0x8e, 0x0b, 0x76, 0xde, 0x52, 0x6b, 0xc7, 0x05, 0xdd, 0xa7, + 0x1f, 0x1b, 0xdf, 0x7f, 0xb6, 0xfd, 0xab, 0xbd, 0xa7, 0xe3, 0x1f, 0xbb, 0xfe, 0xef, 0xf4, 0xe9, + 0xc7, 0xc5, 0x71, 0x05, 0x4d, 0x91, 0xe9, 0xbc, 0x5f, 0x31, 0xf2, 0xd4, 0x7a, 0x9e, 0x44, 0x21, + 0xe7, 0x48, 0x14, 0x72, 0x7e, 0x84, 0xde, 0x73, 0x23, 0xcc, 0x16, 0x87, 0x44, 0x10, 0x4b, 0x2e, + 0x2c, 0xd7, 0xd1, 0x2f, 0x0f, 0x2d, 0xba, 0x86, 0x40, 0x04, 0x81, 0x08, 0x02, 0x11, 0x04, 0x22, + 0x08, 0x44, 0x88, 0xb7, 0x9b, 0x47, 0x4f, 0x11, 0x6f, 0x57, 0xdf, 0x2f, 0xe2, 0xed, 0x95, 0x9d, + 0x4a, 0xa8, 0x2b, 0x01, 0xde, 0xad, 0x8f, 0x52, 0xe1, 0x00, 0xb4, 0x2d, 0xfd, 0x14, 0x79, 0x00, + 0x9a, 0xc2, 0xf3, 0xf4, 0xcc, 0x38, 0x4a, 0x4c, 0x1f, 0x13, 0xd7, 0xce, 0xc0, 0x15, 0xbb, 0x16, + 0xe5, 0x8c, 0x1b, 0x47, 0x8c, 0x99, 0xc0, 0xa8, 0x71, 0xc4, 0x58, 0x69, 0x1c, 0x96, 0x72, 0xa6, + 0xac, 0xf1, 0xcc, 0x6d, 0x1d, 0x67, 0x6c, 0xcf, 0xcf, 0xd4, 0x7e, 0xf1, 0xe2, 0x64, 0xea, 0x71, + 0x4f, 0x36, 0x6d, 0xb3, 0x29, 0xbe, 0xf1, 0xa8, 0xc4, 0x33, 0x74, 0x6c, 0x94, 0x74, 0x78, 0x3e, + 0xb5, 0x21, 0x1d, 0x2d, 0x21, 0x1c, 0x2d, 0x21, 0x1b, 0xb5, 0x21, 0x1a, 0xea, 0xc9, 0xa3, 0x18, + 0x87, 0x17, 0x89, 0xbf, 0xeb, 0x4a, 0x0e, 0xc7, 0xcd, 0x7c, 0xca, 0x30, 0xad, 0xb1, 0xa3, 0x33, + 0x49, 0x34, 0x2d, 0x11, 0xcd, 0x4b, 0x55, 0xf3, 0x51, 0xfb, 0x3c, 0xa4, 0x19, 0xed, 0xfc, 0x63, + 0x93, 0xaf, 0x85, 0x9c, 0xa3, 0x3a, 0x73, 0x4d, 0xb9, 0xc1, 0x3f, 0xad, 0xef, 0x51, 0xe2, 0x6b, + 0x94, 0xf8, 0x16, 0x5a, 0x5f, 0x92, 0x77, 0x34, 0x2f, 0xe3, 0xbb, 0xf1, 0xe3, 0x71, 0x87, 0x24, + 0xd4, 0x41, 0xb3, 0xb8, 0xe7, 0xa8, 0xf9, 0x64, 0xcc, 0x56, 0x06, 0x17, 0x4b, 0x4b, 0x75, 0xed, + 0x0f, 0xc9, 0xef, 0xab, 0xcb, 0x79, 0xf3, 0x6f, 0x93, 0x3f, 0x85, 0x17, 0x93, 0xa5, 0x3d, 0xfd, + 0xb8, 0x58, 0xe0, 0x2b, 0xbf, 0x13, 0xb9, 0x97, 0xfa, 0x15, 0x8f, 0x6c, 0xe1, 0x86, 0x89, 0xc9, + 0xab, 0x5f, 0x3a, 0x8e, 0x3b, 0xfe, 0xcc, 0xbc, 0xda, 0xf5, 0x4d, 0x6d, 0xdc, 0x57, 0x6d, 0xc0, + 0x46, 0xae, 0xf7, 0x58, 0x9b, 0xda, 0xab, 0x58, 0x4c, 0xac, 0x63, 0x6d, 0x10, 0x88, 0x2f, 0xfe, + 0xe2, 0x49, 0xa8, 0xee, 0x86, 0xf6, 0xe4, 0x74, 0x72, 0x19, 0x43, 0x85, 0x6c, 0xa1, 0x4c, 0xa6, + 0x50, 0x25, 0x4b, 0x28, 0x97, 0x21, 0x94, 0xcb, 0x0e, 0x2a, 0x65, 0x86, 0x72, 0xe1, 0x19, 0xea, + 0x93, 0xc9, 0xeb, 0x13, 0x70, 0x41, 0x3e, 0xa3, 0xe6, 0xf2, 0xe9, 0xb8, 0x75, 0xe2, 0xb1, 0x5e, + 0x33, 0x70, 0xaf, 0x7c, 0xdb, 0x0b, 0x22, 0xd7, 0xbf, 0x1b, 0x1b, 0x34, 0xc9, 0x5c, 0x9f, 0x8b, + 0xb1, 0x31, 0xab, 0x7d, 0x7a, 0xff, 0xfe, 0xa6, 0x36, 0x01, 0xee, 0x51, 0x6d, 0xc8, 0x7c, 0xc7, + 0xe3, 0x4e, 0xed, 0xf6, 0xb1, 0x26, 0x87, 0x6e, 0xf4, 0xc5, 0xbf, 0xbe, 0xa9, 0xcd, 0x6d, 0x1d, + 0xf5, 0xfd, 0xd1, 0x9a, 0x3c, 0x65, 0xa6, 0x4f, 0xa5, 0x09, 0x54, 0x6e, 0x0a, 0x55, 0x9b, 0x44, + 0x6d, 0xa6, 0x51, 0x9b, 0x89, 0xd4, 0x61, 0x2a, 0x15, 0xe9, 0x5b, 0x65, 0x33, 0xe5, 0x05, 0x93, + 0xa8, 0x7e, 0x5e, 0xd8, 0x4d, 0x4b, 0x89, 0x75, 0x52, 0x61, 0x82, 0xc5, 0x97, 0x5e, 0x72, 0xc9, + 0xb7, 0x3e, 0xb2, 0x8f, 0x75, 0xb6, 0x2b, 0x33, 0x02, 0x0d, 0xaa, 0x59, 0xa1, 0x63, 0x36, 0x64, + 0x1b, 0x90, 0xf4, 0xaf, 0x33, 0xc3, 0xab, 0xac, 0xdb, 0x33, 0x2f, 0x9d, 0xed, 0x15, 0x2e, 0x0e, + 0x14, 0x9c, 0xb6, 0x93, 0x71, 0x30, 0xf3, 0x41, 0x90, 0xdc, 0x50, 0x83, 0x02, 0x52, 0x90, 0x41, + 0x07, 0x2a, 0x88, 0x40, 0x0e, 0x05, 0xc8, 0x5d, 0x3e, 0xa5, 0x6b, 0xd7, 0x6b, 0x7c, 0xf2, 0xb2, + 0x9a, 0xba, 0x33, 0xb4, 0x43, 0xcb, 0xf6, 0xdc, 0xe9, 0xc3, 0xe7, 0x1c, 0xe8, 0xd9, 0xcc, 0x5b, + 0x6e, 0x34, 0xe7, 0xc8, 0x2c, 0x55, 0x4d, 0x1c, 0x30, 0x2f, 0xca, 0xcb, 0x39, 0x88, 0xb2, 0x45, + 0xc8, 0x38, 0x05, 0x25, 0x87, 0x20, 0xe7, 0x0c, 0xd4, 0x1c, 0x41, 0x19, 0x27, 0x50, 0xc6, 0x01, + 0x54, 0x60, 0xfe, 0x62, 0x03, 0x01, 0x64, 0xd9, 0x13, 0x0a, 0x4e, 0x3c, 0x21, 0x3a, 0xd1, 0x24, + 0x07, 0x70, 0xcc, 0xe1, 0x2c, 0xb9, 0xcf, 0x6e, 0x3d, 0xee, 0xd0, 0x19, 0xd1, 0x59, 0x83, 0x74, + 0x06, 0x94, 0xe0, 0xc4, 0x2e, 0xd8, 0x4f, 0xd8, 0x4f, 0xd8, 0x4f, 0xd8, 0x4f, 0x7a, 0xfb, 0x39, + 0x92, 0x31, 0x9d, 0xed, 0x1c, 0x37, 0x06, 0x43, 0x07, 0x43, 0x07, 0x43, 0x57, 0x22, 0x43, 0x47, + 0x76, 0x22, 0x0f, 0xe1, 0x89, 0x3b, 0xc4, 0x3b, 0x46, 0x09, 0xc3, 0x8b, 0x2a, 0x76, 0x7c, 0x2a, + 0xda, 0x2b, 0x31, 0xdf, 0x66, 0xd7, 0x23, 0xae, 0x5e, 0xa4, 0x72, 0x17, 0x1d, 0x61, 0xfe, 0xa6, + 0x92, 0x2d, 0x95, 0xb3, 0xb1, 0x6a, 0x2b, 0x1a, 0xab, 0x86, 0x41, 0x43, 0x55, 0x92, 0xe8, 0x53, + 0x1f, 0xf1, 0x8c, 0x14, 0xed, 0xa8, 0x8b, 0x67, 0x24, 0x12, 0x7f, 0x89, 0x83, 0x19, 0x3e, 0x77, + 0xef, 0x86, 0xb7, 0x81, 0x88, 0xf2, 0xc7, 0x33, 0x16, 0x4d, 0x21, 0xa4, 0x81, 0x90, 0x46, 0x21, + 0x80, 0xd4, 0xb0, 0x90, 0xc6, 0x6c, 0xc5, 0xd0, 0xd1, 0xc9, 0x79, 0x8b, 0x34, 0x9c, 0xb2, 0x09, + 0x4e, 0x09, 0x4e, 0x79, 0x88, 0x9c, 0x92, 0x2a, 0x07, 0x33, 0x6f, 0xb2, 0xc0, 0xce, 0xc9, 0x9b, + 0x2b, 0x79, 0x40, 0xd1, 0x72, 0x27, 0x5f, 0xf6, 0x2a, 0x96, 0xbf, 0x32, 0x33, 0xa0, 0xca, 0x1c, + 0x28, 0x37, 0x0b, 0xca, 0xcd, 0x83, 0x4a, 0x33, 0x41, 0xcc, 0xbc, 0xca, 0x9a, 0xc2, 0xed, 0x2a, + 0x4c, 0xe0, 0x26, 0xcf, 0xda, 0x55, 0x25, 0xde, 0x20, 0x3d, 0x5a, 0xa3, 0xb9, 0xd1, 0x66, 0x76, + 0xb4, 0x99, 0x1f, 0x1d, 0x66, 0x88, 0xd6, 0x1c, 0x29, 0x50, 0x00, 0x6b, 0x4a, 0x0b, 0x53, 0xe8, + 0x3a, 0x19, 0x42, 0x65, 0x11, 0x7a, 0xe5, 0xc5, 0xe6, 0x8d, 0x3f, 0xd1, 0xa1, 0x5f, 0xd6, 0xdc, + 0x7f, 0x42, 0x10, 0xe7, 0xb9, 0xfe, 0x37, 0xcb, 0x63, 0x8f, 0x5c, 0x28, 0x3b, 0x31, 0x6c, 0x51, + 0xbd, 0x65, 0xb3, 0x2f, 0x38, 0x64, 0x38, 0x64, 0x38, 0x64, 0x38, 0x64, 0xb2, 0xd9, 0x1e, 0x0e, + 0x1f, 0x23, 0x38, 0xe4, 0x9d, 0x0e, 0x79, 0xf9, 0x18, 0x92, 0xf5, 0xd3, 0x4d, 0x5a, 0x4f, 0xc7, + 0xff, 0x73, 0xfc, 0xbf, 0x87, 0xe4, 0x47, 0x51, 0xde, 0x25, 0x57, 0xd4, 0x6f, 0x1e, 0x08, 0x9b, + 0x7f, 0xca, 0x15, 0x08, 0xa4, 0x1f, 0x1e, 0x82, 0xa1, 0xa1, 0x54, 0x24, 0xe8, 0x95, 0x08, 0x62, + 0xc0, 0x03, 0x41, 0x13, 0x82, 0xa6, 0x6e, 0xe0, 0x52, 0x2e, 0x23, 0x4c, 0x0e, 0x50, 0x14, 0x96, + 0xae, 0x54, 0x51, 0xaa, 0x72, 0x4b, 0x69, 0x4a, 0x37, 0xac, 0x92, 0x39, 0x9f, 0x16, 0x9e, 0x26, + 0xb7, 0xe8, 0xd3, 0x66, 0x4b, 0x1e, 0xa5, 0x6a, 0xc1, 0xa8, 0xc3, 0xa8, 0x1f, 0xa0, 0x51, 0x47, + 0x94, 0x0a, 0xa2, 0x18, 0x44, 0x31, 0x88, 0x62, 0x07, 0x2b, 0x8a, 0x21, 0x4a, 0xf5, 0x53, 0x51, + 0x0c, 0x51, 0x2a, 0x25, 0xea, 0x1a, 0xa2, 0x54, 0x70, 0xc8, 0x70, 0xc8, 0x70, 0xc8, 0x70, 0xc8, + 0x1b, 0xb3, 0x1d, 0x51, 0xaa, 0x9f, 0x3a, 0x64, 0x44, 0xa9, 0x14, 0xf9, 0xd1, 0x40, 0xb8, 0x77, + 0x2a, 0x76, 0xb1, 0xce, 0xad, 0xf8, 0xb4, 0x7d, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, + 0xb2, 0xd9, 0x3e, 0x8b, 0x2f, 0x5b, 0x4a, 0x0c, 0xcc, 0x8a, 0xcb, 0xec, 0x28, 0x68, 0xfb, 0x95, + 0x1f, 0x8f, 0xc6, 0x2f, 0xe8, 0x09, 0x89, 0x10, 0xfb, 0xac, 0xa7, 0x2a, 0x24, 0x42, 0x10, 0x1e, + 0x70, 0x8a, 0x93, 0x6e, 0x92, 0x86, 0x70, 0xd2, 0x4d, 0x19, 0x4e, 0xba, 0x31, 0xa6, 0xe4, 0xf6, + 0xe6, 0xaa, 0xd4, 0x5b, 0x73, 0xfb, 0x8f, 0x59, 0xaf, 0x28, 0x52, 0x51, 0xae, 0xf9, 0x50, 0xe6, + 0x3a, 0x15, 0xa1, 0x08, 0x1e, 0x1e, 0x2d, 0x96, 0xe3, 0x20, 0x93, 0x85, 0xc8, 0x30, 0x6f, 0x0a, + 0x75, 0x2a, 0x50, 0xa7, 0xa2, 0x10, 0x3e, 0x63, 0x58, 0x9d, 0x0a, 0xa2, 0x4d, 0xec, 0xb4, 0x9b, + 0xd7, 0x51, 0xa3, 0xa2, 0x40, 0xf9, 0x02, 0x35, 0x2a, 0x6a, 0xd5, 0xa9, 0x51, 0x31, 0x0a, 0x1c, + 0x05, 0xa9, 0x7f, 0x93, 0x56, 0xc9, 0x0e, 0x3c, 0x9c, 0x97, 0x86, 0xbe, 0xba, 0xfe, 0x70, 0xf9, + 0xdb, 0x9b, 0x57, 0x48, 0x14, 0x2f, 0x9f, 0x56, 0x8a, 0x9c, 0xc2, 0x22, 0xb4, 0xd0, 0x43, 0x49, + 0x14, 0xe7, 0x7e, 0x3c, 0xe2, 0xd3, 0x93, 0x4c, 0x55, 0x24, 0x8b, 0x13, 0xea, 0x9b, 0xc4, 0xba, + 0xa6, 0xe9, 0x3a, 0x97, 0x39, 0xca, 0xc8, 0x9c, 0x19, 0x92, 0xec, 0xd7, 0x2a, 0xa6, 0x3a, 0x39, + 0x4d, 0x22, 0x3f, 0x69, 0x02, 0x3f, 0x39, 0x52, 0x6f, 0x01, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, + 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x1f, 0x2c, 0x52, 0x27, 0x48, + 0x28, 0x40, 0x28, 0x91, 0x7c, 0x58, 0xea, 0xb9, 0x18, 0xcc, 0xbe, 0x91, 0xe4, 0x9b, 0x71, 0x77, + 0x97, 0x22, 0x2c, 0x73, 0xe0, 0x32, 0x1f, 0x1f, 0x23, 0xe1, 0x61, 0x64, 0x01, 0xcb, 0x16, 0x02, + 0x96, 0xea, 0xa0, 0x0e, 0x02, 0x96, 0x64, 0x7c, 0xa9, 0x6e, 0x07, 0xf1, 0xd8, 0x52, 0x44, 0x94, + 0x21, 0xcb, 0xa4, 0x45, 0x04, 0x2d, 0x21, 0x85, 0x40, 0x0a, 0x29, 0x5e, 0x0a, 0x71, 0x7d, 0xcb, + 0x71, 0x23, 0x9b, 0x09, 0x87, 0x3b, 0x56, 0xf8, 0x4d, 0x46, 0x0a, 0xca, 0x51, 0x6d, 0x74, 0x01, + 0x29, 0x03, 0x52, 0x06, 0xa4, 0x8c, 0x03, 0x92, 0x32, 0x12, 0xb7, 0xdf, 0xeb, 0x28, 0x10, 0x32, + 0x08, 0x37, 0x21, 0x12, 0x1f, 0x0e, 0x39, 0xfb, 0x51, 0xb0, 0x73, 0x45, 0xc5, 0x61, 0x91, 0x8a, + 0xec, 0xea, 0x46, 0xf3, 0x8a, 0x0e, 0x24, 0x9c, 0xb7, 0xaf, 0xf0, 0x60, 0x42, 0xe2, 0x15, 0xb7, + 0x3a, 0xa4, 0xec, 0xc1, 0xf8, 0x21, 0x6d, 0x9e, 0x75, 0x3a, 0xbd, 0xd3, 0x4e, 0xa7, 0x71, 0xda, + 0x3e, 0x6d, 0x9c, 0x77, 0xbb, 0xcd, 0x5e, 0xb3, 0x6b, 0xf0, 0x28, 0x97, 0x74, 0x3f, 0x55, 0xbf, + 0x4a, 0xf5, 0x4f, 0x7d, 0x8b, 0x0b, 0x11, 0x08, 0x75, 0xd8, 0x73, 0xa9, 0x79, 0xe0, 0x4e, 0xe0, + 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0xce, 0x43, + 0xc6, 0x9d, 0x83, 0x40, 0x7c, 0x9f, 0x8a, 0x92, 0x81, 0x2d, 0xb9, 0x22, 0xf4, 0xb9, 0xd1, 0x09, + 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, 0x30, 0x28, + 0x30, 0x28, 0x30, 0xa8, 0xd2, 0xd8, 0xfb, 0x5a, 0x17, 0xc0, 0x9f, 0xc0, 0x9f, 0xc0, 0x9f, 0xc0, + 0x9f, 0xc0, 0x9f, 0xc0, 0x9f, 0xc0, 0x9f, 0xc0, 0x9f, 0xc0, 0x9f, 0x87, 0x8c, 0x3f, 0x15, 0x2a, + 0x9f, 0xd0, 0x3b, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, + 0x37, 0x81, 0x37, 0x81, 0x37, 0xd5, 0xa9, 0x9c, 0xd0, 0x36, 0x81, 0x35, 0x81, 0x35, 0x81, 0x35, + 0x81, 0x35, 0x81, 0x35, 0x81, 0x35, 0x81, 0x35, 0x81, 0x35, 0x0f, 0x1b, 0x6b, 0x06, 0xb1, 0x54, + 0xbe, 0xb1, 0x7d, 0x4b, 0x1f, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, + 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x07, 0x8d, 0x40, 0x55, 0x6e, 0x6d, 0x5f, 0x6b, 0x1f, + 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, 0xc8, 0x13, + 0xc8, 0xf3, 0xa0, 0x91, 0xa7, 0xfa, 0xcd, 0xed, 0x5b, 0x7b, 0x01, 0x0a, 0x05, 0x0a, 0x05, 0x0a, + 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x55, 0x1c, + 0x81, 0xc7, 0xfe, 0x76, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, + 0x20, 0x50, 0x20, 0x50, 0x20, 0xd0, 0x05, 0x02, 0x55, 0xa9, 0x7e, 0x42, 0xf3, 0x04, 0xe2, 0x04, + 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x94, + 0x0a, 0x95, 0x4e, 0xe8, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x40, + 0x9b, 0x40, 0x9b, 0x40, 0x9b, 0x06, 0xa3, 0xcd, 0x42, 0x8f, 0x8f, 0xbf, 0xf4, 0xfd, 0x40, 0xb2, + 0xf1, 0x14, 0xa0, 0x39, 0x45, 0x3e, 0xb2, 0x87, 0x7c, 0xc4, 0x42, 0x26, 0x87, 0x63, 0x8f, 0x75, + 0x12, 0x84, 0xdc, 0xb7, 0x27, 0x88, 0xd0, 0x72, 0xc7, 0xbe, 0x6b, 0xc0, 0x6c, 0x1e, 0x9d, 0x6c, + 0xfb, 0x78, 0x12, 0xc5, 0xb7, 0x4b, 0x7f, 0x5f, 0xfe, 0xed, 0xc4, 0x0d, 0xef, 0x3b, 0x27, 0x91, + 0x64, 0x92, 0x9f, 0x24, 0x3e, 0x90, 0x02, 0xfd, 0xd6, 0x23, 0x29, 0x62, 0x5b, 0xfa, 0x89, 0x77, + 0xbd, 0x9e, 0x75, 0xf7, 0xf5, 0xc3, 0x52, 0xdf, 0x5f, 0xaf, 0xc3, 0xfb, 0xce, 0xd7, 0x97, 0xb3, + 0x5e, 0x8f, 0x8a, 0x19, 0xe9, 0x1c, 0xa3, 0x5c, 0x77, 0x86, 0x76, 0x68, 0xd9, 0x9e, 0x3b, 0xc5, + 0x5e, 0xf9, 0x86, 0x78, 0x0e, 0x45, 0x96, 0x1b, 0xcd, 0x39, 0x03, 0xaf, 0xf8, 0x80, 0xc5, 0xde, + 0x04, 0x17, 0x0e, 0x98, 0x17, 0xf1, 0xbc, 0xed, 0xd1, 0x18, 0x69, 0x32, 0x1e, 0x43, 0xc9, 0x5f, + 0xc8, 0x79, 0x0b, 0x35, 0x5f, 0x51, 0xc6, 0x53, 0x94, 0xf1, 0x13, 0x15, 0xbc, 0xa4, 0x58, 0x8b, + 0x4e, 0xc6, 0x3f, 0xe6, 0xb3, 0xed, 0x36, 0x08, 0x3c, 0xce, 0x7c, 0x8a, 0xf9, 0x96, 0x2c, 0xce, + 0x66, 0xd3, 0x40, 0x43, 0xca, 0x7d, 0x76, 0xeb, 0x71, 0x87, 0xce, 0x88, 0xce, 0x1a, 0xa4, 0x33, + 0xa0, 0xe3, 0x75, 0x01, 0xfb, 0x09, 0xfb, 0x09, 0xfb, 0x09, 0xfb, 0x59, 0x3a, 0xfb, 0x39, 0x92, + 0x31, 0x9d, 0xed, 0x1c, 0x37, 0x06, 0x43, 0x07, 0x43, 0x07, 0x43, 0x57, 0x22, 0x43, 0x17, 0xbb, + 0xbe, 0x6c, 0xf6, 0x08, 0xed, 0x5c, 0x8f, 0xa0, 0x29, 0x5a, 0x35, 0x9a, 0x50, 0xd6, 0x57, 0xa1, + 0x3e, 0x2b, 0x92, 0x28, 0xe7, 0xd2, 0x64, 0xef, 0x8c, 0xb8, 0x61, 0x85, 0x02, 0x24, 0xa1, 0xbc, + 0xac, 0x44, 0x56, 0x9e, 0x8d, 0x55, 0x5b, 0xd1, 0x58, 0x35, 0x0c, 0x1a, 0xaa, 0x92, 0x68, 0xb1, + 0xfd, 0xa2, 0x60, 0xd5, 0x91, 0xc6, 0x09, 0x4e, 0xa5, 0xf9, 0xaa, 0xd6, 0x7a, 0xb3, 0xf9, 0xd7, + 0xf4, 0xaf, 0x32, 0xc3, 0x6b, 0xac, 0xc7, 0xbe, 0x1f, 0x8f, 0x6e, 0xb9, 0xc8, 0x21, 0x07, 0x2c, + 0xbc, 0xe6, 0xa2, 0xad, 0x8c, 0x03, 0x3a, 0x63, 0x05, 0x19, 0x2f, 0xcf, 0x8b, 0x60, 0x29, 0x90, + 0xeb, 0x0a, 0x62, 0x1d, 0xe4, 0x80, 0x10, 0x54, 0x48, 0x95, 0x1c, 0xa1, 0x92, 0x23, 0xd3, 0x0d, + 0x44, 0x3a, 0xa8, 0x1b, 0x62, 0x80, 0xae, 0x5c, 0x91, 0x6f, 0xb2, 0xd8, 0xb3, 0x19, 0x4b, 0xc4, + 0x26, 0x93, 0xf6, 0x68, 0x08, 0x65, 0xb3, 0xea, 0x84, 0x72, 0x00, 0x42, 0xa9, 0x82, 0x50, 0x0e, + 0x4c, 0x27, 0x94, 0x79, 0x97, 0xf5, 0xbc, 0x21, 0x2a, 0xa5, 0x7d, 0x63, 0xf6, 0xd2, 0x28, 0xee, + 0x8b, 0x07, 0xa6, 0x0d, 0x5d, 0x2a, 0x22, 0x71, 0xe6, 0xa5, 0x64, 0x0e, 0x90, 0x92, 0x59, 0x44, + 0x4a, 0xe6, 0x00, 0x29, 0x99, 0x69, 0x67, 0x2b, 0x9d, 0xb4, 0xbf, 0x81, 0x22, 0x9a, 0xc8, 0x4f, + 0xaa, 0xd5, 0xea, 0xaf, 0x1e, 0x26, 0x52, 0x43, 0x7e, 0xf1, 0x8e, 0x1e, 0x66, 0x04, 0xb6, 0xc5, + 0x1f, 0xe4, 0x85, 0xe4, 0x1e, 0x1f, 0x71, 0x29, 0x1e, 0xad, 0xc0, 0xb7, 0xec, 0xe1, 0x44, 0x6d, + 0x54, 0x02, 0x3d, 0x26, 0x2e, 0x46, 0x01, 0xf6, 0x28, 0x1a, 0x76, 0xf4, 0x0f, 0x26, 0x85, 0x6d, + 0xc1, 0xf4, 0x4f, 0x12, 0xc6, 0x61, 0x60, 0x18, 0x6f, 0xfe, 0x4c, 0x96, 0xe0, 0x03, 0x3a, 0x0a, + 0xb6, 0xda, 0x2c, 0x98, 0x18, 0x98, 0x18, 0x98, 0x58, 0xf1, 0x4c, 0x8c, 0x48, 0x68, 0x51, 0x23, + 0xb8, 0x10, 0x2f, 0x77, 0xf0, 0x25, 0xf0, 0x25, 0xf0, 0x25, 0x4a, 0xf3, 0xb1, 0x89, 0x19, 0xe8, + 0xa7, 0xd5, 0x06, 0x7e, 0xa0, 0x9e, 0x56, 0x8a, 0x22, 0xea, 0xd4, 0x46, 0x46, 0xa5, 0xb1, 0x51, + 0x6e, 0x74, 0x54, 0x1b, 0x1f, 0x6d, 0x46, 0x48, 0x9b, 0x31, 0xd2, 0x61, 0x94, 0x68, 0x8d, 0x13, + 0xb1, 0x91, 0x52, 0x27, 0xee, 0x6c, 0xcc, 0x76, 0x8f, 0xb3, 0x41, 0x7e, 0x52, 0xf2, 0x53, 0xe4, + 0x72, 0xaa, 0xa0, 0xed, 0x9b, 0x39, 0x83, 0x1d, 0x4f, 0x8b, 0x8b, 0x25, 0x66, 0xba, 0xf6, 0x87, + 0xe4, 0xf7, 0xc9, 0x46, 0xa8, 0x92, 0x6e, 0xd6, 0xa3, 0xcc, 0xe5, 0x59, 0xe6, 0xe5, 0xea, 0xfc, + 0xd1, 0x4a, 0x2f, 0x70, 0x49, 0x70, 0x49, 0x70, 0x49, 0x70, 0x49, 0x70, 0x49, 0x7b, 0xba, 0xa4, + 0xcf, 0x0b, 0x97, 0xf4, 0x4f, 0x3b, 0x16, 0x82, 0xfb, 0xf2, 0xd9, 0xf1, 0xc9, 0x8b, 0x17, 0x0b, + 0xb1, 0xb5, 0x9f, 0x5c, 0xb2, 0xaa, 0xb9, 0x6e, 0xfe, 0x6d, 0xde, 0xb2, 0xc3, 0x1f, 0x4a, 0xeb, + 0xdd, 0x4a, 0xc5, 0xfe, 0xc8, 0x42, 0x2e, 0xb3, 0x1f, 0x75, 0x42, 0x82, 0xf2, 0x10, 0xcc, 0x0e, + 0xe3, 0x49, 0x18, 0x8a, 0xd9, 0x6a, 0x35, 0xcb, 0x26, 0x2c, 0xf4, 0xa9, 0x84, 0x56, 0xda, 0x50, + 0xcd, 0x02, 0xd2, 0xe9, 0x08, 0xd9, 0xac, 0x44, 0x28, 0x48, 0x02, 0x38, 0x74, 0x83, 0xf4, 0x44, + 0x52, 0x0e, 0x81, 0x49, 0x4e, 0x2f, 0xf5, 0x4e, 0x9b, 0x2d, 0xb9, 0xd2, 0xdb, 0x82, 0xd2, 0x6b, + 0x0e, 0xa2, 0x85, 0xd2, 0x0b, 0xa5, 0x17, 0xb4, 0x1a, 0xb4, 0x1a, 0xb4, 0x1a, 0xb4, 0x1a, 0xb4, + 0x1a, 0x4a, 0xef, 0x6e, 0x44, 0x0b, 0xa5, 0x17, 0x2e, 0x09, 0x2e, 0x09, 0x2e, 0x09, 0x2e, 0xa9, + 0xb4, 0x2e, 0x09, 0x4a, 0x6f, 0x71, 0xec, 0xaf, 0x42, 0x72, 0x5c, 0x8e, 0x1d, 0xe3, 0x0a, 0xd4, + 0x38, 0x94, 0x74, 0xcd, 0x35, 0x9a, 0x7a, 0x8b, 0xbb, 0xfe, 0x39, 0xbf, 0x8b, 0xaf, 0xf3, 0xaf, + 0xbd, 0xe7, 0x03, 0x13, 0x73, 0xf3, 0x69, 0x24, 0x5c, 0x52, 0xe9, 0x96, 0x3c, 0x17, 0xbf, 0x85, + 0x5c, 0xfc, 0xe2, 0x21, 0x27, 0x72, 0xf1, 0xf7, 0x7e, 0x20, 0xec, 0x8a, 0xc6, 0xae, 0xe8, 0xd2, + 0x71, 0x5e, 0xc4, 0x7e, 0x8a, 0xe0, 0xb4, 0xd8, 0x15, 0x9d, 0x1b, 0x45, 0x60, 0x57, 0xb4, 0xb1, + 0x10, 0x9f, 0x80, 0xa2, 0xa1, 0xc2, 0x1a, 0xfd, 0xb8, 0xd4, 0x73, 0xf1, 0x8d, 0xf4, 0x24, 0x4b, + 0x5b, 0x59, 0xb7, 0x23, 0x85, 0x23, 0x9d, 0x77, 0x84, 0xd5, 0x8d, 0x6c, 0x86, 0xe1, 0xdc, 0x7f, + 0x18, 0xd3, 0x8d, 0xdd, 0xfe, 0x23, 0x90, 0xe2, 0xed, 0xd7, 0xdd, 0xf0, 0xbe, 0x97, 0xfa, 0x9d, + 0x2f, 0x92, 0x07, 0xc6, 0x57, 0xa7, 0x1c, 0xeb, 0x6c, 0x0c, 0x36, 0x33, 0xc0, 0xcc, 0x03, 0x24, + 0x73, 0x17, 0x7e, 0xce, 0x0b, 0x0c, 0xc9, 0x00, 0x20, 0x19, 0xd0, 0xa3, 0x28, 0xdc, 0xac, 0xd6, + 0x96, 0x64, 0x65, 0x88, 0x75, 0xe6, 0x38, 0x82, 0x47, 0x11, 0x8f, 0xf2, 0x17, 0xa1, 0x5c, 0x34, + 0x85, 0x1a, 0x94, 0xb9, 0xab, 0xa6, 0x1f, 0x70, 0x0d, 0xca, 0xf0, 0x60, 0x6a, 0x50, 0x26, 0x2b, + 0x86, 0x4e, 0x6d, 0x9d, 0x35, 0x88, 0xda, 0x27, 0xca, 0x17, 0x28, 0xf4, 0x56, 0x15, 0x0b, 0xb8, + 0x62, 0x7a, 0x2b, 0x6a, 0x9f, 0x98, 0xa0, 0x8a, 0xe2, 0xf8, 0x6e, 0x1c, 0xdf, 0x5d, 0x2b, 0x75, + 0x46, 0x7c, 0xa8, 0x30, 0x15, 0x3e, 0x44, 0xc2, 0xa1, 0x9e, 0x84, 0xc3, 0x10, 0x09, 0x87, 0x05, + 0x9a, 0x1f, 0x1d, 0x66, 0x88, 0xd6, 0x1c, 0x11, 0x9b, 0xa5, 0xf9, 0x0b, 0x50, 0x9f, 0x70, 0xe8, + 0x86, 0xf7, 0x3d, 0x8b, 0x86, 0x8b, 0xfc, 0x14, 0xb0, 0x9c, 0xa9, 0xc9, 0x3a, 0x94, 0x5c, 0xf8, + 0xa4, 0xbb, 0x97, 0x57, 0x3a, 0xf8, 0xcf, 0xb3, 0x67, 0x9f, 0x1b, 0xd6, 0x39, 0xb3, 0x06, 0x97, + 0xd6, 0xeb, 0xfe, 0xdf, 0xcd, 0xe7, 0x9d, 0xa7, 0x8b, 0xe3, 0xbf, 0x4f, 0x9f, 0xd6, 0xff, 0xf8, + 0x63, 0xdb, 0xd7, 0x9a, 0xcf, 0x4f, 0x9f, 0x2e, 0x76, 0xfc, 0x4f, 0xef, 0xe9, 0x62, 0xcf, 0x36, + 0xba, 0x4f, 0xcf, 0x36, 0xbe, 0x3a, 0xfe, 0x7b, 0x6b, 0xd7, 0x05, 0x9d, 0x1d, 0x17, 0xb4, 0x77, + 0x5d, 0xd0, 0xde, 0x71, 0xc1, 0xce, 0x5b, 0x6a, 0xed, 0xb8, 0xa0, 0xfb, 0xf4, 0x63, 0xe3, 0xfb, + 0xcf, 0xb6, 0x7f, 0xb5, 0xf7, 0x74, 0xfc, 0x63, 0xd7, 0xff, 0x9d, 0x3e, 0xfd, 0xb8, 0x38, 0x3e, + 0xfe, 0x07, 0xfd, 0x52, 0xef, 0x1f, 0xc0, 0x1e, 0x88, 0xa9, 0xe1, 0xb7, 0x3c, 0xee, 0xdf, 0x4d, + 0x62, 0x0d, 0x8a, 0x90, 0xc8, 0x6a, 0x37, 0x00, 0x25, 0x00, 0x25, 0x00, 0x25, 0x00, 0x25, 0x64, + 0xb3, 0x3d, 0x76, 0x7d, 0x79, 0xa6, 0x10, 0x8d, 0x74, 0x15, 0x34, 0x4d, 0x7b, 0xf0, 0xe4, 0xfa, + 0x8f, 0x9a, 0xd5, 0x59, 0x53, 0x75, 0x30, 0xa5, 0x26, 0x9b, 0xbe, 0xd1, 0x8d, 0xa2, 0xc3, 0x10, + 0x37, 0xfa, 0x51, 0x78, 0x38, 0xa2, 0xe2, 0xd5, 0xbb, 0x3a, 0xf4, 0xec, 0xa1, 0x72, 0x43, 0xdf, + 0x6c, 0x9d, 0x55, 0x68, 0xf0, 0x8f, 0xcc, 0x68, 0xb5, 0x8f, 0x0d, 0x58, 0xfb, 0x20, 0x07, 0xc3, + 0x36, 0x60, 0xf5, 0x4e, 0xe6, 0x79, 0x02, 0xb3, 0x4f, 0x15, 0x2c, 0x84, 0x44, 0xa8, 0xd8, 0xd2, + 0x2b, 0xb5, 0x07, 0x9f, 0x06, 0x8f, 0x80, 0x0f, 0x02, 0x3e, 0x35, 0x23, 0xd2, 0xe0, 0xe9, 0xb7, + 0x6e, 0xab, 0xd8, 0xb2, 0x3d, 0xdf, 0xaa, 0xfd, 0xe2, 0x45, 0x62, 0xcb, 0x4f, 0xa8, 0x06, 0x1b, + 0x75, 0xed, 0xd2, 0x8e, 0xeb, 0xa1, 0xd6, 0xb5, 0x83, 0x51, 0x87, 0x51, 0xaf, 0x21, 0x8a, 0x5f, + 0x6e, 0x86, 0x0d, 0xc1, 0x5c, 0xa7, 0xb9, 0xd1, 0x66, 0x76, 0xb4, 0x99, 0x1f, 0x1d, 0x66, 0x48, + 0x8d, 0xa2, 0x81, 0x28, 0xfe, 0x2e, 0xc0, 0x82, 0x28, 0x3e, 0xa2, 0xf8, 0x88, 0xe2, 0xab, 0x36, + 0x1a, 0xf5, 0x40, 0xb8, 0x77, 0x0a, 0xa2, 0x32, 0x0b, 0xe7, 0x38, 0x6d, 0x1f, 0x30, 0x04, 0x30, + 0x04, 0x30, 0x04, 0x30, 0x84, 0x10, 0x86, 0xcc, 0x40, 0x88, 0xa5, 0xc4, 0xc4, 0xac, 0x60, 0x91, + 0x8e, 0x82, 0xb6, 0x5f, 0xf9, 0xf1, 0x68, 0xfc, 0x8a, 0x9e, 0x90, 0x2a, 0x46, 0x35, 0x27, 0x90, + 0x2a, 0x06, 0x97, 0x03, 0x97, 0x03, 0x97, 0xa3, 0x68, 0xb6, 0x23, 0x55, 0x6c, 0xfd, 0x07, 0xa9, + 0x62, 0x7b, 0x75, 0x83, 0x54, 0xb1, 0x74, 0x43, 0x8f, 0x54, 0xb1, 0x92, 0x0f, 0x3e, 0x52, 0xc5, + 0x4a, 0x03, 0xad, 0x23, 0xc9, 0x64, 0x1c, 0x29, 0x3c, 0x83, 0x62, 0xda, 0x3e, 0xc0, 0x34, 0xc0, + 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xd9, 0x6c, 0xe7, 0x7e, 0x3c, 0xe2, 0x62, 0x9a, 0xa1, 0x0a, 0xe5, + 0x06, 0x99, 0xc8, 0xe9, 0x1d, 0x9f, 0xc6, 0x4c, 0xe4, 0x72, 0x9d, 0x01, 0x41, 0x90, 0xb9, 0x76, + 0x2f, 0x84, 0x82, 0x54, 0xe4, 0x49, 0xab, 0xa8, 0x3e, 0x53, 0x3a, 0x24, 0x80, 0xbc, 0xb5, 0x22, + 0x3c, 0x7d, 0xc5, 0xf3, 0xd6, 0xc6, 0x8b, 0xdd, 0xba, 0x13, 0x41, 0xac, 0x30, 0x7f, 0x6d, 0xa9, + 0x0f, 0x35, 0x04, 0xa4, 0x09, 0x02, 0x02, 0x02, 0x02, 0x02, 0x52, 0x3e, 0x02, 0x42, 0x6d, 0xae, + 0xe6, 0x0d, 0x13, 0xd7, 0xde, 0xdb, 0xb9, 0x98, 0x48, 0x6b, 0xf1, 0x69, 0x32, 0x5f, 0xca, 0xcd, + 0x98, 0x0e, 0x73, 0xa6, 0xcd, 0xac, 0xe9, 0x32, 0x6f, 0xda, 0xcd, 0x9c, 0x76, 0x73, 0xa7, 0xd3, + 0xec, 0xa9, 0x31, 0x7f, 0x8a, 0xcc, 0xa0, 0x72, 0x73, 0x38, 0xef, 0x80, 0xd9, 0x36, 0x0f, 0xa5, + 0x35, 0x0a, 0x1c, 0x0d, 0x13, 0x79, 0x5e, 0x97, 0x78, 0xa9, 0x53, 0xc5, 0x33, 0x4b, 0xd1, 0xd1, + 0x51, 0xbf, 0x32, 0xd0, 0xaa, 0xc3, 0x4b, 0xaa, 0x0d, 0xb5, 0x4e, 0x83, 0xad, 0xdd, 0x70, 0xeb, + 0x36, 0xe0, 0x85, 0x19, 0xf2, 0xc2, 0x0c, 0x7a, 0x11, 0x86, 0x5d, 0xad, 0x81, 0x57, 0x6c, 0xe8, + 0xe7, 0x2f, 0x4c, 0x99, 0x00, 0xbf, 0x73, 0xb5, 0xd1, 0x1f, 0xad, 0xf5, 0x4b, 0xf4, 0xda, 0x3c, + 0x32, 0x73, 0x02, 0xa8, 0x4c, 0x7e, 0x60, 0xce, 0x3d, 0x17, 0xd2, 0x8d, 0xf8, 0x78, 0xb9, 0x4c, + 0xa5, 0xec, 0x7b, 0xe6, 0x69, 0xf4, 0xc9, 0xdb, 0xfb, 0xd7, 0xe7, 0x9e, 0x9b, 0x8d, 0x06, 0x9c, + 0x33, 0x9c, 0x33, 0x9c, 0x33, 0x9c, 0x33, 0x9c, 0xf3, 0x72, 0xea, 0x69, 0xb3, 0xa7, 0xd1, 0x37, + 0xf7, 0x34, 0x74, 0xa5, 0x36, 0x37, 0x75, 0xfd, 0x47, 0x8f, 0xf9, 0xa8, 0xe9, 0xca, 0x5d, 0x2d, + 0xc8, 0xa9, 0x6d, 0x74, 0x3b, 0x4f, 0x70, 0xd4, 0xdc, 0xaf, 0xc6, 0x74, 0x47, 0xcd, 0xe6, 0x65, + 0x75, 0x2a, 0xb1, 0x87, 0x83, 0x9b, 0x4a, 0x9d, 0xc6, 0x79, 0xf7, 0x80, 0x66, 0xd3, 0x51, 0x35, + 0x7a, 0xe9, 0x83, 0xcc, 0x6d, 0x4c, 0xab, 0x50, 0x70, 0x3e, 0x0a, 0xa5, 0x3e, 0xf6, 0x36, 0xeb, + 0x50, 0x1f, 0x5d, 0x1b, 0xe3, 0x54, 0xf0, 0x35, 0xf0, 0x35, 0xf0, 0x35, 0xf0, 0x35, 0xf0, 0x35, + 0x88, 0xa9, 0x65, 0xf4, 0xbf, 0x96, 0xc3, 0x3d, 0xf6, 0xa8, 0xdd, 0x0b, 0x27, 0xdd, 0xea, 0xf3, + 0xc5, 0x10, 0x4e, 0xe1, 0x88, 0xe1, 0x88, 0xe1, 0x88, 0xe1, 0x88, 0x21, 0x9c, 0xd2, 0xfd, 0x40, + 0x38, 0x55, 0xd2, 0xad, 0xa6, 0xa2, 0x00, 0x1b, 0xfd, 0x42, 0x38, 0xad, 0xec, 0x54, 0x6a, 0xf7, + 0x1a, 0x0d, 0x08, 0xa7, 0xa6, 0xf5, 0x02, 0xe1, 0x74, 0x1b, 0x71, 0x73, 0x03, 0xe1, 0x4a, 0xad, + 0x9c, 0x2d, 0xe9, 0x11, 0x99, 0x2e, 0x20, 0x6c, 0x20, 0x6c, 0x20, 0x6c, 0x20, 0x6c, 0x85, 0x11, + 0xb6, 0x33, 0x8d, 0x7c, 0xad, 0x0b, 0xbe, 0x06, 0xbe, 0x96, 0x06, 0x64, 0x23, 0xd1, 0x05, 0x7c, + 0x8d, 0x68, 0x2a, 0xb5, 0xba, 0x1d, 0xd0, 0x35, 0xd0, 0x35, 0xf3, 0xe9, 0xda, 0xbd, 0x2b, 0x64, + 0xcc, 0xbc, 0xf9, 0xb1, 0x20, 0xda, 0x58, 0xdb, 0x7a, 0xc7, 0xa0, 0x53, 0xa0, 0x53, 0xa0, 0x53, + 0xa0, 0x53, 0xa0, 0x53, 0x1b, 0xc7, 0x24, 0xe8, 0xcc, 0x45, 0x39, 0xd7, 0xd0, 0x57, 0xf2, 0x2e, + 0x2b, 0xc7, 0xa9, 0x96, 0xce, 0xd9, 0xea, 0x68, 0x1c, 0xbb, 0x8d, 0x31, 0x3c, 0xd3, 0xd8, 0xa7, + 0xea, 0x73, 0xb9, 0x76, 0x76, 0x9c, 0x9c, 0xd7, 0xd5, 0xff, 0xf1, 0xb9, 0x69, 0x9d, 0xf7, 0xa7, + 0x1f, 0x9b, 0x93, 0x7f, 0xa6, 0x9f, 0x5b, 0x9f, 0x1b, 0x56, 0x67, 0xf6, 0xb9, 0xfb, 0xb9, 0x61, + 0x75, 0xfb, 0xc7, 0x5f, 0xbe, 0xbc, 0x38, 0xfe, 0xbb, 0xfd, 0x94, 0xfe, 0xc2, 0x7f, 0xd4, 0xb5, + 0x3d, 0x5c, 0xff, 0xa8, 0x42, 0xfc, 0xb0, 0x98, 0xc5, 0xd7, 0xc3, 0xe2, 0xd3, 0xb3, 0xf8, 0x70, + 0x58, 0x5e, 0x25, 0x0e, 0xcb, 0x2b, 0xd8, 0x14, 0x99, 0xce, 0xfb, 0x15, 0x23, 0xcf, 0x37, 0x6e, + 0x24, 0x2f, 0xa5, 0x14, 0x7a, 0xd0, 0xe7, 0x5b, 0xd7, 0x7f, 0xe5, 0x4d, 0x2a, 0x08, 0x44, 0xf5, + 0x8b, 0x9a, 0x1f, 0x7b, 0x9e, 0x06, 0x40, 0xf8, 0x96, 0x3d, 0xe8, 0xef, 0xf4, 0x9d, 0x70, 0xb8, + 0xe0, 0xce, 0x6f, 0x8f, 0x49, 0x97, 0x10, 0x87, 0x76, 0x8a, 0x43, 0x9e, 0xeb, 0x7f, 0xb3, 0xbc, + 0xc0, 0xd6, 0x59, 0xcd, 0x62, 0x4b, 0xdf, 0x90, 0x88, 0x20, 0x11, 0x41, 0x22, 0x82, 0x44, 0x04, + 0x89, 0x08, 0x12, 0x11, 0x24, 0x22, 0xb0, 0x54, 0x48, 0x44, 0x90, 0x88, 0x20, 0x11, 0x41, 0x22, + 0x82, 0x44, 0x04, 0x89, 0xa8, 0xdc, 0x12, 0x91, 0xd1, 0xec, 0x5f, 0x04, 0xb1, 0xe4, 0xc2, 0x72, + 0x1d, 0xfd, 0xe4, 0x7f, 0xd1, 0x35, 0xb8, 0x3f, 0xb8, 0x3f, 0xb8, 0x3f, 0xb8, 0x3f, 0xb8, 0x3f, + 0xb2, 0xed, 0xcd, 0x63, 0x1e, 0xc8, 0xb6, 0x57, 0xdf, 0x2f, 0xb2, 0xed, 0x2b, 0x3b, 0x95, 0x5a, + 0x5d, 0x54, 0x95, 0x04, 0xa5, 0xd2, 0x45, 0xa9, 0x8c, 0x3a, 0x5e, 0xe8, 0x32, 0xbe, 0x1b, 0x03, + 0x35, 0xee, 0x28, 0x75, 0x9b, 0x9a, 0x68, 0xdf, 0xc9, 0x18, 0x6b, 0x0e, 0x2e, 0x96, 0x8e, 0xf8, + 0x5d, 0xfb, 0x43, 0xf2, 0xfb, 0xea, 0x31, 0xc0, 0x9b, 0x7f, 0x9b, 0xfc, 0x29, 0xbc, 0x98, 0x1c, + 0x09, 0x3c, 0xfd, 0xb8, 0x38, 0x18, 0x78, 0xe5, 0xf7, 0x93, 0x7b, 0x21, 0xc2, 0x93, 0xc5, 0x59, + 0x95, 0x27, 0x4a, 0xcf, 0x7e, 0x9b, 0x3f, 0xef, 0x15, 0x8f, 0x6c, 0xe1, 0x86, 0xc9, 0xc9, 0xca, + 0xf5, 0x4b, 0xc7, 0x71, 0xc7, 0x9f, 0x99, 0x57, 0xfb, 0xf4, 0xfe, 0xfd, 0x4d, 0xcd, 0x61, 0x92, + 0xd5, 0x06, 0x81, 0xa8, 0x5d, 0xdf, 0xdc, 0xf7, 0x6a, 0x8b, 0x27, 0xd5, 0x44, 0x82, 0x9b, 0x20, + 0xc1, 0x20, 0xc1, 0x20, 0xc1, 0x20, 0xc1, 0xa9, 0xcd, 0x9a, 0xab, 0x29, 0x49, 0xad, 0x80, 0xbc, + 0xa4, 0x8d, 0x85, 0xae, 0x3d, 0x3f, 0x69, 0x97, 0xf7, 0x78, 0x1d, 0x88, 0xa9, 0xdb, 0x08, 0xfc, + 0x75, 0x87, 0xf1, 0xbc, 0x16, 0x71, 0x19, 0xd5, 0xe4, 0x90, 0xd7, 0x92, 0xdb, 0xad, 0x8d, 0x6f, + 0xb7, 0x36, 0xb9, 0xdd, 0x2f, 0xbe, 0xde, 0x10, 0x98, 0x66, 0x12, 0xa1, 0xcd, 0xcd, 0x14, 0xe1, + 0x6e, 0x0a, 0x73, 0x3b, 0x45, 0xb9, 0x9f, 0xc2, 0xdd, 0x50, 0xe1, 0xee, 0xa8, 0x48, 0xb7, 0xa4, + 0x99, 0x9a, 0x6a, 0x5a, 0xaf, 0xda, 0x34, 0xdb, 0x8d, 0xd5, 0xaa, 0x35, 0x6f, 0x6b, 0x03, 0xde, + 0x9f, 0x6b, 0xec, 0x53, 0x6b, 0x1e, 0x97, 0x1e, 0xb6, 0xfa, 0x8b, 0x91, 0x2d, 0x24, 0xaf, 0x6b, + 0x63, 0x8c, 0xcf, 0x0a, 0xe8, 0xbb, 0xa8, 0x54, 0x93, 0xf9, 0x0d, 0x54, 0x35, 0xdf, 0x4b, 0x8f, + 0xa2, 0x56, 0x90, 0x19, 0x2e, 0xc7, 0xa2, 0xed, 0x61, 0xd1, 0x16, 0xbb, 0x68, 0x91, 0x27, 0x56, + 0xe9, 0x3c, 0xb1, 0x82, 0x4c, 0x18, 0xf2, 0xe0, 0xca, 0x25, 0x40, 0x19, 0x16, 0xb4, 0xe9, 0xab, + 0x0a, 0xda, 0xf8, 0x7e, 0x20, 0x59, 0x22, 0xe0, 0xa8, 0x73, 0x7c, 0xf5, 0xc8, 0x1e, 0xf2, 0x11, + 0x0b, 0x99, 0x1c, 0x4e, 0xa3, 0x2b, 0x21, 0xf7, 0xa7, 0x01, 0x0e, 0x6b, 0x29, 0x7c, 0xb2, 0xed, + 0xe3, 0xc9, 0x6a, 0x84, 0x65, 0x25, 0xb6, 0x32, 0x89, 0xaa, 0x2c, 0xe2, 0x29, 0xbf, 0x88, 0xa4, + 0x1c, 0x99, 0x31, 0xda, 0x0a, 0xc0, 0x4e, 0x7d, 0xfe, 0xca, 0x2c, 0x29, 0x98, 0xfd, 0xcd, 0xf5, + 0xef, 0x94, 0x8d, 0xf6, 0x02, 0xca, 0x6c, 0xf6, 0xa9, 0x68, 0x0e, 0xab, 0x0d, 0x16, 0x29, 0x57, + 0xef, 0x74, 0xa8, 0x75, 0xda, 0xd4, 0x39, 0x5d, 0x6a, 0x9c, 0x76, 0xf5, 0x4d, 0xbb, 0xda, 0xa6, + 0x53, 0x5d, 0x33, 0x2b, 0xd1, 0x40, 0x75, 0x70, 0xa7, 0x6e, 0xcf, 0x56, 0xbc, 0xa6, 0x64, 0x03, + 0x3d, 0xa1, 0x7e, 0xc4, 0xd4, 0xcb, 0x6f, 0x3e, 0x75, 0x9b, 0xd1, 0xc2, 0xcc, 0x69, 0x61, 0x66, + 0xb5, 0x08, 0xf3, 0xaa, 0x89, 0xd2, 0x54, 0x25, 0xa6, 0x3e, 0x3b, 0x45, 0xc3, 0x72, 0xb8, 0x2d, + 0x78, 0x32, 0x46, 0x9a, 0x63, 0xea, 0x5b, 0xee, 0x41, 0x5b, 0x4c, 0x5d, 0xdb, 0x51, 0x8c, 0xeb, + 0xae, 0x01, 0xf1, 0x70, 0x83, 0x5d, 0x46, 0x51, 0xae, 0xa3, 0x70, 0x17, 0x52, 0xb8, 0x2b, 0x29, + 0xd2, 0xa5, 0xe8, 0x71, 0x2d, 0x9a, 0x5c, 0xcc, 0xfc, 0x45, 0x16, 0x17, 0x0f, 0xd7, 0xb5, 0x97, + 0x69, 0xdd, 0xf4, 0x6a, 0xdc, 0x55, 0xa0, 0x79, 0x6f, 0xd3, 0xec, 0xa7, 0x80, 0xa8, 0x5a, 0x11, + 0x7b, 0x9d, 0x0a, 0xf2, 0xa9, 0x1b, 0xdd, 0x17, 0x74, 0x32, 0xe4, 0xbc, 0xff, 0x02, 0xb7, 0xad, + 0x68, 0xb6, 0x56, 0xab, 0x53, 0xae, 0x80, 0x3d, 0x51, 0x65, 0x9b, 0x72, 0xda, 0x4f, 0x24, 0x29, + 0xd5, 0xa4, 0x43, 0x58, 0xb1, 0xd4, 0xcf, 0xa3, 0xc1, 0x28, 0xd4, 0x27, 0x01, 0x8f, 0x45, 0x60, + 0x4b, 0x3f, 0x7b, 0x5d, 0xbf, 0x01, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, + 0x4d, 0xab, 0xd5, 0xe3, 0x6c, 0x20, 0xf8, 0xa0, 0x88, 0x9c, 0xea, 0x53, 0xbd, 0x25, 0xdd, 0x86, + 0x69, 0x76, 0xcb, 0xfa, 0xe3, 0xd7, 0x53, 0xa9, 0x29, 0xa6, 0xb5, 0x24, 0xfa, 0x32, 0xb1, 0xd5, + 0x5e, 0xa5, 0x7c, 0x99, 0xe2, 0x14, 0xd7, 0xb9, 0xd6, 0x52, 0xe9, 0x1a, 0x51, 0xa9, 0xd1, 0x91, + 0x21, 0x4d, 0x49, 0x64, 0xf3, 0xfe, 0x8a, 0x4c, 0x26, 0xdb, 0x4c, 0x6b, 0x52, 0x9a, 0x5f, 0xa6, + 0x7e, 0x82, 0xa8, 0xac, 0xdb, 0x17, 0x49, 0x26, 0xb9, 0xbe, 0x3c, 0x8a, 0x69, 0x77, 0x15, 0x4b, + 0xa3, 0x68, 0x21, 0x8d, 0xc2, 0x18, 0x12, 0x83, 0x34, 0x0a, 0xa4, 0x51, 0xfc, 0xea, 0x85, 0x21, + 0x8d, 0x42, 0xcb, 0x1d, 0x20, 0x8d, 0x02, 0xfa, 0x17, 0xf4, 0x2f, 0xe8, 0x5f, 0xd0, 0xbf, 0x90, + 0x46, 0xa1, 0xa6, 0x4b, 0xa4, 0x51, 0x54, 0xcf, 0xa7, 0x6e, 0x74, 0x8f, 0x34, 0x0a, 0xa4, 0x51, + 0x14, 0x34, 0xe5, 0x90, 0x46, 0x51, 0xc1, 0xde, 0x90, 0x46, 0xb1, 0xff, 0x34, 0x44, 0x1a, 0x05, + 0x68, 0x24, 0x68, 0x24, 0x68, 0x24, 0x68, 0xe4, 0xa1, 0xd2, 0x48, 0xa4, 0x51, 0x20, 0x8d, 0x42, + 0x2d, 0xb1, 0x45, 0x1a, 0x05, 0xd2, 0x28, 0x4a, 0xb2, 0x18, 0x0e, 0x3d, 0x8d, 0x62, 0x1a, 0xbd, + 0x47, 0xd5, 0x27, 0xf5, 0x33, 0xee, 0x20, 0xaa, 0x3e, 0x69, 0xab, 0x3f, 0x34, 0x7d, 0x52, 0x29, + 0x62, 0x5b, 0xfa, 0x09, 0x6e, 0xb9, 0x9e, 0xf5, 0xfd, 0xf5, 0xc3, 0xd2, 0x9d, 0x7f, 0xbd, 0x0e, + 0xef, 0x7b, 0x5f, 0x2f, 0xa7, 0xf7, 0xfb, 0xf5, 0x93, 0x10, 0xe1, 0xef, 0xe3, 0x3b, 0xfd, 0x3a, + 0xff, 0xf6, 0xc7, 0xd9, 0x8d, 0x1e, 0x70, 0xa9, 0x2a, 0xb5, 0x29, 0x43, 0x5a, 0x52, 0x85, 0xb4, + 0x15, 0xa4, 0x6a, 0xa1, 0x20, 0x55, 0x69, 0x08, 0x38, 0x0a, 0x52, 0x1d, 0xae, 0x3b, 0x55, 0x5e, + 0x90, 0x8a, 0xd9, 0x36, 0x0f, 0xa5, 0x35, 0x0a, 0x1c, 0x8d, 0xd9, 0x94, 0xcb, 0x9d, 0x2a, 0x3f, + 0x85, 0x6a, 0x9e, 0xac, 0x33, 0x60, 0x5e, 0xc4, 0x71, 0xc6, 0x72, 0xe9, 0x0c, 0xb6, 0x76, 0xc3, + 0xad, 0xdb, 0x80, 0x17, 0x66, 0xc8, 0x0b, 0x33, 0xe8, 0x45, 0x18, 0xf6, 0x6a, 0x30, 0x75, 0xfd, + 0x67, 0x2c, 0xdf, 0x06, 0x81, 0xc7, 0x99, 0xaf, 0xf1, 0x94, 0xe5, 0x66, 0x13, 0x1b, 0x1a, 0x36, + 0x1d, 0xb1, 0x73, 0xcf, 0x85, 0x74, 0xa3, 0x89, 0x6e, 0x37, 0x25, 0xb1, 0xf7, 0x1a, 0x8e, 0xfc, + 0x5a, 0xf8, 0xe4, 0xed, 0xfd, 0xeb, 0x73, 0xcf, 0xcd, 0x46, 0x03, 0xce, 0x19, 0xce, 0x19, 0xce, + 0x19, 0xce, 0x19, 0xce, 0x79, 0x39, 0xdb, 0xb5, 0xd9, 0xd3, 0xe8, 0x9b, 0x7b, 0x1a, 0xba, 0xd2, + 0x9b, 0xde, 0xaa, 0x37, 0xea, 0x77, 0x70, 0xc7, 0xd6, 0x37, 0x0f, 0xe8, 0xd0, 0x7a, 0xbd, 0x31, + 0xdc, 0x83, 0x9b, 0x4a, 0x9d, 0xc6, 0x79, 0xf7, 0x80, 0x66, 0x53, 0x45, 0x22, 0xe3, 0x7d, 0x90, + 0xb9, 0x8d, 0x69, 0x65, 0xc7, 0x42, 0x8c, 0x69, 0xd4, 0x6c, 0x93, 0xa2, 0xc6, 0x82, 0xff, 0xeb, + 0x3d, 0x83, 0x52, 0x81, 0x52, 0x81, 0x52, 0x81, 0x52, 0x81, 0x52, 0x69, 0xde, 0x40, 0xa8, 0x71, + 0xe3, 0x20, 0x18, 0x55, 0x95, 0x60, 0x70, 0x03, 0x8c, 0x0a, 0x8c, 0x8a, 0x66, 0x2a, 0xb5, 0xba, + 0x20, 0x54, 0x20, 0x54, 0x15, 0x20, 0x54, 0xa1, 0xe0, 0x7c, 0x14, 0x4a, 0x7d, 0x3c, 0x6a, 0xd6, + 0xa1, 0xbe, 0xf8, 0xd7, 0x18, 0xa5, 0x82, 0xad, 0x81, 0xad, 0x81, 0xad, 0x81, 0xad, 0x81, 0xad, + 0x21, 0x3b, 0xa5, 0x8c, 0xfe, 0xd7, 0x72, 0xb8, 0xc7, 0x1e, 0xb5, 0x7b, 0xe1, 0xa4, 0x5b, 0x7d, + 0xbe, 0x18, 0x99, 0x28, 0x70, 0xc4, 0x70, 0xc4, 0x70, 0xc4, 0x70, 0xc4, 0xc8, 0x44, 0xa1, 0xfb, + 0x81, 0x6e, 0xaa, 0xa4, 0x5b, 0xe8, 0xa6, 0x6a, 0xa7, 0xd2, 0x01, 0xea, 0xa6, 0xed, 0x5e, 0xa3, + 0x01, 0xe1, 0xd4, 0xb4, 0x5e, 0x20, 0x9c, 0x6e, 0x23, 0x6e, 0xba, 0x33, 0x50, 0x74, 0x65, 0x9e, + 0x60, 0xeb, 0x00, 0x08, 0x1b, 0x08, 0x1b, 0x08, 0x1b, 0x08, 0xdb, 0x6e, 0xc2, 0x86, 0x3c, 0x17, + 0xf0, 0xb5, 0xd2, 0x82, 0x6c, 0xec, 0x1c, 0x00, 0x5f, 0x23, 0x9a, 0x4a, 0xda, 0x0b, 0x5a, 0x83, + 0xae, 0x81, 0xae, 0xa9, 0x98, 0x56, 0xf7, 0xae, 0x90, 0x31, 0xf3, 0xac, 0xa4, 0xf4, 0x98, 0x3e, + 0xd6, 0xb6, 0xde, 0x31, 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0x14, 0xe8, 0x54, 0xb2, 0xda, + 0xdc, 0x50, 0x93, 0x6d, 0x5c, 0xb6, 0x8f, 0xcd, 0x73, 0x0d, 0x7d, 0x25, 0xef, 0xb2, 0x72, 0x9c, + 0x6a, 0x31, 0x72, 0xf7, 0x1d, 0x8d, 0x63, 0xb7, 0x31, 0x86, 0x67, 0x7a, 0xeb, 0x7d, 0x4b, 0x2e, + 0x7c, 0xed, 0x67, 0x47, 0xd5, 0xff, 0xf3, 0xec, 0xd9, 0xe7, 0x86, 0x75, 0xde, 0xff, 0xf1, 0xb9, + 0x69, 0x9d, 0xf7, 0xa7, 0x1f, 0x9b, 0x93, 0x7f, 0xa6, 0x9f, 0x5b, 0x9f, 0x1b, 0x56, 0x67, 0xf6, + 0xb9, 0xfb, 0xb9, 0x61, 0x75, 0xfb, 0xc7, 0x5f, 0xbe, 0xbc, 0x38, 0xfe, 0xbb, 0xfd, 0x94, 0xfe, + 0xc2, 0x7f, 0xd4, 0xab, 0x76, 0xaa, 0xca, 0xf3, 0x0a, 0x2f, 0xbe, 0x1e, 0x16, 0x9f, 0x9e, 0xc5, + 0xc7, 0xac, 0xc1, 0xa5, 0xf5, 0xba, 0xff, 0x77, 0xf3, 0x79, 0xe7, 0xe9, 0xe2, 0xf8, 0xef, 0xd3, + 0xa7, 0xf5, 0x3f, 0xfe, 0xd8, 0xf6, 0xb5, 0xe6, 0xf3, 0xd3, 0xa7, 0x8b, 0x1d, 0xff, 0xd3, 0x7b, + 0xba, 0xd8, 0xb3, 0x8d, 0xee, 0xd3, 0xb3, 0x8d, 0xaf, 0x8e, 0xff, 0xde, 0xda, 0x75, 0x41, 0x67, + 0xc7, 0x05, 0xed, 0x5d, 0x17, 0xb4, 0x77, 0x5c, 0xb0, 0xf3, 0x96, 0x5a, 0x3b, 0x2e, 0xe8, 0x3e, + 0xfd, 0xd8, 0xf8, 0xfe, 0xb3, 0xed, 0x5f, 0xed, 0x3d, 0x1d, 0xff, 0xd8, 0xf5, 0x7f, 0xa7, 0x4f, + 0x3f, 0x2e, 0x8e, 0x2b, 0x68, 0x8a, 0x4c, 0xe7, 0xfd, 0x8a, 0x91, 0xa7, 0xd6, 0xf3, 0x24, 0x0a, + 0x39, 0x47, 0xa2, 0x90, 0xf3, 0x23, 0xf4, 0x9e, 0x1b, 0x61, 0xb6, 0x38, 0xe4, 0xb9, 0xfe, 0x37, + 0xcb, 0x0b, 0x6c, 0x9d, 0xe5, 0x01, 0xb7, 0xf4, 0x0d, 0x89, 0x08, 0x12, 0x11, 0x24, 0x22, 0x48, + 0x44, 0x90, 0x88, 0x20, 0x11, 0x41, 0x22, 0x02, 0x4b, 0x85, 0x44, 0x04, 0x89, 0x08, 0x12, 0x11, + 0x24, 0x22, 0x48, 0x44, 0x90, 0x88, 0xca, 0x2d, 0x11, 0x19, 0xcd, 0xfe, 0x45, 0x10, 0x4b, 0x2e, + 0x2c, 0xd7, 0xd1, 0x4f, 0xfe, 0x17, 0x5d, 0x83, 0xfb, 0x83, 0xfb, 0x83, 0xfb, 0x83, 0xfb, 0x83, + 0xfb, 0x23, 0xdb, 0xde, 0x3c, 0xe6, 0x81, 0x6c, 0x7b, 0xf5, 0xfd, 0x22, 0xdb, 0xbe, 0xb2, 0x53, + 0x09, 0x55, 0x25, 0x41, 0xa9, 0xf4, 0x51, 0x2a, 0xb3, 0x8e, 0x3f, 0x8f, 0xef, 0xc6, 0x40, 0x8d, + 0x3b, 0x4a, 0xdd, 0xa6, 0x26, 0xda, 0x77, 0x32, 0xc6, 0x9a, 0x83, 0x8b, 0xa5, 0xd3, 0xd2, 0xd7, + 0xfe, 0x90, 0xfc, 0xbe, 0x7a, 0xa2, 0xfa, 0xe6, 0xdf, 0x26, 0x7f, 0x0a, 0x2f, 0x26, 0xa7, 0xab, + 0x4f, 0x3f, 0x2e, 0xce, 0x58, 0x5f, 0xf9, 0x7d, 0xe3, 0xa4, 0x75, 0x95, 0x67, 0x69, 0xcf, 0x1f, + 0xf7, 0x8a, 0x47, 0xb6, 0x70, 0xc3, 0xe4, 0xcc, 0xfa, 0xfa, 0xa5, 0xe3, 0xb8, 0xe3, 0xcf, 0xcc, + 0xab, 0x7d, 0x7a, 0xff, 0xfe, 0xa6, 0xe6, 0x30, 0xc9, 0x6a, 0x83, 0x40, 0xd4, 0xae, 0x6f, 0xee, + 0x7b, 0xb5, 0xc5, 0x83, 0x6a, 0xe2, 0xc0, 0x4d, 0x70, 0x60, 0x70, 0x60, 0x70, 0x60, 0x70, 0xe0, + 0xd4, 0x66, 0xcd, 0xd5, 0x94, 0xa3, 0x56, 0x40, 0x5a, 0xd2, 0xc6, 0x42, 0xd7, 0x9e, 0x9e, 0xb4, + 0xcb, 0x7b, 0xbc, 0x0e, 0xc4, 0xd4, 0x6d, 0x04, 0xfe, 0xba, 0xc3, 0x78, 0x5e, 0x8b, 0xb8, 0x8c, + 0x6a, 0x72, 0xc8, 0x6b, 0xc9, 0xed, 0xd6, 0xc6, 0xb7, 0x5b, 0x9b, 0xdc, 0xee, 0x17, 0x5f, 0x6f, + 0x04, 0x4c, 0x33, 0x87, 0xd0, 0xe6, 0x66, 0x8a, 0x70, 0x37, 0x85, 0xb9, 0x9d, 0xa2, 0xdc, 0x4f, + 0xe1, 0x6e, 0xa8, 0x70, 0x77, 0x54, 0xa4, 0x5b, 0xd2, 0xcc, 0x4c, 0x35, 0xad, 0x57, 0x6d, 0x92, + 0xed, 0xc6, 0x6a, 0xd5, 0x9a, 0xb6, 0xb5, 0x01, 0xef, 0xcf, 0x35, 0xf6, 0xa9, 0x35, 0x8d, 0x4b, + 0x0f, 0x59, 0xfd, 0xc5, 0xc8, 0x16, 0x92, 0xd6, 0xb5, 0x31, 0xc6, 0x67, 0x05, 0xf4, 0x5d, 0x54, + 0xa6, 0xc9, 0xfc, 0x06, 0xaa, 0x9a, 0xee, 0xa5, 0x47, 0x50, 0x2b, 0xc8, 0x0c, 0x97, 0x63, 0xd1, + 0xf6, 0xb0, 0x68, 0x8b, 0x5d, 0xb4, 0x48, 0x13, 0xab, 0x74, 0x9a, 0x58, 0x41, 0x26, 0x0c, 0x69, + 0x70, 0xe5, 0x12, 0xa0, 0x0c, 0x8b, 0xd9, 0xf4, 0x55, 0xc5, 0x6c, 0x7c, 0x3f, 0x90, 0x2c, 0x11, + 0x70, 0xd4, 0x39, 0xbe, 0x7a, 0x64, 0x0f, 0xf9, 0x88, 0x85, 0x4c, 0x0e, 0xa7, 0xc1, 0x95, 0x90, + 0xfb, 0xf6, 0x44, 0x15, 0xb1, 0x96, 0xa2, 0x27, 0xdb, 0x3e, 0x9e, 0xac, 0x06, 0x58, 0x56, 0x42, + 0x2b, 0x93, 0xa0, 0xca, 0x22, 0x9c, 0xf2, 0xf3, 0x40, 0xca, 0x91, 0x19, 0x83, 0xad, 0x00, 0xeb, + 0x68, 0xcc, 0x9e, 0xd4, 0x9e, 0x35, 0xa9, 0x58, 0xca, 0x53, 0x2e, 0xdd, 0xe9, 0x90, 0xea, 0xb4, + 0x49, 0x73, 0xba, 0xa4, 0x38, 0xed, 0xd2, 0x9b, 0x76, 0xa9, 0x4d, 0xa7, 0xb4, 0x66, 0x56, 0x92, + 0x81, 0x72, 0xa9, 0x6c, 0xbe, 0x5a, 0x3c, 0xce, 0x06, 0x82, 0x0f, 0x54, 0xae, 0x97, 0x19, 0xdd, + 0x3a, 0x55, 0xd8, 0xc7, 0x4d, 0xe2, 0x73, 0x5f, 0xbc, 0x38, 0x99, 0x7a, 0xdc, 0x93, 0x4d, 0xdb, + 0x6c, 0x8a, 0x6f, 0x3c, 0x2a, 0xf1, 0x0c, 0x1d, 0x1b, 0x25, 0x1d, 0x9e, 0x4f, 0x6d, 0x11, 0x0e, + 0x2d, 0x45, 0x37, 0xb4, 0x14, 0xd9, 0x50, 0x5b, 0x54, 0x83, 0x7a, 0xf2, 0x28, 0xc6, 0xe1, 0x45, + 0xe2, 0x6f, 0x05, 0x06, 0xb4, 0x1e, 0x49, 0x11, 0xdb, 0xd2, 0x4f, 0x2c, 0xf5, 0xf5, 0xec, 0x8e, + 0xbe, 0x7e, 0x58, 0xba, 0xbd, 0xaf, 0xd7, 0xe1, 0x7d, 0xef, 0xeb, 0xe5, 0xf4, 0xa6, 0xbe, 0x7e, + 0x12, 0x22, 0xfc, 0x7d, 0x72, 0x3b, 0x47, 0xe5, 0x34, 0x49, 0x34, 0x2d, 0x11, 0xcd, 0x4b, 0x55, + 0xf3, 0x51, 0xfb, 0x3c, 0xa4, 0x19, 0xed, 0xfc, 0x63, 0x93, 0xaf, 0x85, 0x9c, 0xa3, 0x3a, 0x73, + 0x4d, 0xb9, 0xc1, 0x3f, 0xad, 0xef, 0x51, 0xe2, 0x6b, 0x94, 0xf8, 0x16, 0x5a, 0x5f, 0x92, 0x77, + 0x34, 0x69, 0xf3, 0x6c, 0x69, 0x16, 0x77, 0x71, 0x79, 0xb3, 0x44, 0xee, 0xe5, 0x27, 0x99, 0xb0, + 0xd7, 0x37, 0xb5, 0x71, 0x5f, 0xb5, 0x01, 0x1b, 0xb9, 0xde, 0x63, 0x6d, 0x6a, 0xaf, 0x62, 0x31, + 0xb1, 0x8e, 0xb5, 0x41, 0x20, 0xbe, 0xf8, 0xe4, 0x89, 0xb1, 0xc4, 0x09, 0xb0, 0xe4, 0x32, 0x86, + 0x0a, 0xd9, 0x42, 0x99, 0x4c, 0xa1, 0x4a, 0x96, 0x50, 0x2e, 0x43, 0x28, 0x97, 0x1d, 0x54, 0xca, + 0x0c, 0xe5, 0xc2, 0x33, 0xd4, 0x09, 0xa1, 0xf5, 0x09, 0xb8, 0x20, 0x9f, 0x51, 0x73, 0xf9, 0x74, + 0xdc, 0x3a, 0xf1, 0x58, 0xaf, 0x19, 0xb8, 0x57, 0xbe, 0xed, 0x05, 0x91, 0xeb, 0xdf, 0x8d, 0x0d, + 0x9a, 0x64, 0xae, 0xcf, 0xc5, 0x24, 0xd3, 0x7f, 0x92, 0xc0, 0x39, 0x01, 0xee, 0x51, 0x6d, 0xc8, + 0x7c, 0xc7, 0xe3, 0x4e, 0xed, 0xf6, 0xb1, 0x26, 0x87, 0x6e, 0xf4, 0xc5, 0xbf, 0xbe, 0x59, 0xe4, + 0x74, 0x52, 0xdf, 0x9f, 0x9a, 0x9c, 0x7f, 0x65, 0x0a, 0xae, 0x4a, 0xe5, 0x56, 0xb9, 0x62, 0xab, + 0x5a, 0xa9, 0xd5, 0xa6, 0xd0, 0x6a, 0x53, 0x66, 0x75, 0x28, 0xb2, 0x4f, 0xd5, 0xa6, 0xa6, 0x05, + 0x93, 0xa8, 0x7e, 0x5e, 0xd8, 0x4d, 0x4b, 0x89, 0x75, 0x52, 0x61, 0x82, 0xc5, 0x97, 0x5e, 0x72, + 0xc9, 0xb7, 0x3e, 0xb2, 0x8f, 0x75, 0xb6, 0x2b, 0x33, 0x02, 0x0d, 0xaa, 0x59, 0xa1, 0x63, 0x36, + 0x64, 0x1b, 0x90, 0xf4, 0xaf, 0x33, 0xc3, 0xab, 0xac, 0xb3, 0x58, 0x06, 0xe3, 0xe7, 0xcd, 0xfc, + 0x12, 0xe7, 0x2e, 0x73, 0xde, 0x52, 0xc6, 0x01, 0xcd, 0x07, 0x43, 0x72, 0xc3, 0x0d, 0x0a, 0x58, + 0xb1, 0x0a, 0x1f, 0x2c, 0xfe, 0x20, 0x73, 0x18, 0x00, 0x2a, 0xa8, 0x40, 0x0e, 0x09, 0xc8, 0x5d, + 0xff, 0xa6, 0x8b, 0x9f, 0xbc, 0x3a, 0x43, 0x0c, 0x51, 0x5e, 0x86, 0x53, 0xb7, 0x67, 0x33, 0x37, + 0xe7, 0x38, 0xcf, 0x26, 0x5f, 0xd2, 0x5e, 0x5e, 0xe9, 0x92, 0x84, 0x15, 0x90, 0xb1, 0x00, 0x4a, + 0xd4, 0x4f, 0xba, 0x4c, 0x55, 0x21, 0x7b, 0x65, 0x48, 0x5e, 0x19, 0x72, 0xa7, 0x5e, 0xc6, 0x34, + 0xe8, 0x33, 0xaf, 0xe8, 0x4b, 0x25, 0x60, 0xd4, 0x6d, 0xc1, 0x99, 0xe4, 0xd6, 0x9d, 0x17, 0xdc, + 0x2e, 0x8e, 0x3c, 0xe4, 0x74, 0xa7, 0x2d, 0x2e, 0xd6, 0xff, 0x8e, 0x8e, 0xc8, 0xf4, 0xda, 0xf9, + 0x11, 0xf8, 0xe3, 0xb9, 0x43, 0x2c, 0xbc, 0x36, 0x0e, 0x56, 0x78, 0x25, 0xb2, 0x43, 0xaa, 0x95, + 0x86, 0x2a, 0x8a, 0xaf, 0x34, 0x76, 0x8a, 0x98, 0xb5, 0x13, 0xcd, 0x5b, 0xf2, 0xbc, 0xad, 0xf9, + 0xac, 0xbd, 0x0d, 0x02, 0x8f, 0x33, 0x9f, 0x72, 0xce, 0xce, 0x40, 0x47, 0xb3, 0x2c, 0xc2, 0xc7, + 0x73, 0x32, 0xbb, 0x2f, 0xf9, 0x28, 0x0c, 0x04, 0x13, 0x8f, 0x1a, 0x4c, 0xff, 0xb6, 0xbe, 0xe8, + 0xad, 0xff, 0x80, 0x79, 0x11, 0xcc, 0x3f, 0xcc, 0x3f, 0xcc, 0x3f, 0xcc, 0x3f, 0xcc, 0xff, 0xae, + 0x67, 0x5a, 0xd8, 0xe2, 0xf1, 0x72, 0xe1, 0x42, 0x70, 0xc7, 0xf2, 0xdc, 0x01, 0x97, 0xee, 0x88, + 0xd3, 0x3b, 0x80, 0x9f, 0xf6, 0x46, 0xef, 0x02, 0xce, 0x7a, 0x9d, 0x46, 0x03, 0x2e, 0x00, 0x2e, + 0x00, 0x2e, 0xe0, 0x10, 0x5d, 0x40, 0xec, 0xfa, 0xb2, 0xdd, 0x52, 0xe0, 0x01, 0x08, 0xf7, 0x65, + 0x28, 0x2a, 0x28, 0xad, 0x66, 0x07, 0x80, 0xc2, 0xbc, 0x00, 0xb5, 0xdb, 0xf5, 0x66, 0x55, 0x7a, + 0x55, 0xb5, 0xaf, 0xa1, 0x16, 0xef, 0x93, 0x9a, 0xfd, 0x16, 0xc6, 0x0f, 0x69, 0xa7, 0x75, 0xde, + 0x39, 0xef, 0x9d, 0xb6, 0xce, 0xbb, 0x06, 0x8f, 0x6d, 0x49, 0x13, 0x3c, 0xfa, 0x95, 0x04, 0xba, + 0xf7, 0xcc, 0x73, 0xf5, 0x80, 0xdc, 0xb5, 0x9e, 0xe8, 0x01, 0x6e, 0xaf, 0xd1, 0x39, 0x03, 0xc2, + 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, + 0x35, 0x11, 0xe1, 0x16, 0xbb, 0x73, 0xd0, 0x9c, 0x14, 0xe6, 0x24, 0x8b, 0x33, 0xa9, 0x59, 0x51, + 0x58, 0x2e, 0x71, 0x8e, 0xbc, 0xc9, 0x69, 0xd9, 0x29, 0xb2, 0x74, 0x3a, 0x8a, 0xe3, 0x40, 0xc8, + 0xb3, 0xe9, 0x5a, 0xc8, 0xa6, 0x2b, 0x07, 0xa2, 0x47, 0x36, 0x5d, 0x3a, 0x6a, 0x8d, 0x6c, 0xba, + 0x9d, 0x5a, 0x03, 0xb2, 0xe9, 0xa0, 0x34, 0x40, 0x69, 0x38, 0x54, 0xa5, 0x01, 0xe9, 0x14, 0x69, + 0xec, 0x3e, 0xb2, 0xe9, 0x60, 0xfe, 0x61, 0xfe, 0x61, 0xfe, 0x61, 0xfe, 0x0f, 0xcb, 0xfc, 0x23, + 0x9b, 0x0e, 0x2e, 0x00, 0x2e, 0x00, 0x2e, 0xa0, 0x8a, 0x2e, 0x00, 0xb1, 0x46, 0xca, 0x49, 0x89, + 0x58, 0xe3, 0xee, 0xf6, 0x11, 0x6b, 0x2c, 0x6c, 0x48, 0x11, 0x6b, 0x54, 0xd7, 0x1a, 0xb2, 0xe9, + 0xf2, 0x81, 0x5c, 0x64, 0xd3, 0x01, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, + 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0xaa, 0x68, 0xe1, 0x00, 0xb3, 0xe9, 0x08, 0x8e, 0x42, + 0x44, 0x61, 0x4e, 0xea, 0x51, 0xa9, 0xe7, 0x4a, 0x32, 0xdc, 0xbb, 0x2a, 0xeb, 0xac, 0xb7, 0x12, + 0x57, 0x01, 0xcd, 0x59, 0x82, 0x90, 0xa6, 0xf4, 0x60, 0xf5, 0x2a, 0x80, 0xa2, 0xfa, 0x67, 0x26, + 0x72, 0x75, 0x30, 0x95, 0x3f, 0x9d, 0xa1, 0x1d, 0x5a, 0xb6, 0xe7, 0x4e, 0x1f, 0x9e, 0x28, 0x5f, + 0x79, 0xb9, 0xd1, 0xbc, 0xd9, 0x9a, 0xb4, 0xe9, 0x29, 0x44, 0x08, 0xd4, 0x80, 0x9a, 0xa2, 0xc8, + 0x80, 0x56, 0xa2, 0xba, 0x98, 0x9e, 0xfd, 0x4c, 0xa6, 0xac, 0x28, 0x48, 0x1b, 0x21, 0x4a, 0x17, + 0x29, 0x66, 0xcb, 0x87, 0x13, 0x87, 0x93, 0xe4, 0x3c, 0xcb, 0xe1, 0x92, 0xdb, 0xd2, 0x92, 0x82, + 0xf9, 0xd1, 0x68, 0xca, 0x0e, 0xa9, 0xcc, 0xea, 0xce, 0x2e, 0xe8, 0x8c, 0x6c, 0x13, 0x06, 0x16, + 0x06, 0x16, 0x06, 0xb6, 0x4c, 0x06, 0x96, 0x4c, 0xb2, 0x26, 0x94, 0xaa, 0x89, 0x25, 0x6a, 0x42, + 0xa1, 0x5f, 0x85, 0x24, 0xad, 0x48, 0xb7, 0x54, 0x25, 0x41, 0xab, 0x94, 0x27, 0x09, 0x25, 0x67, + 0x25, 0x52, 0xb3, 0xea, 0xa1, 0x52, 0x25, 0x2d, 0x2b, 0x1d, 0xb3, 0x92, 0x48, 0xb6, 0x7d, 0x03, + 0x61, 0x1d, 0xf7, 0xd9, 0xad, 0x37, 0x39, 0x6e, 0x95, 0x08, 0xc4, 0xcd, 0x1a, 0xa4, 0x83, 0x6c, + 0x04, 0x9b, 0xf6, 0x80, 0xda, 0x80, 0xda, 0x80, 0xda, 0x40, 0x8b, 0xe9, 0xed, 0xe7, 0x48, 0xc6, + 0x74, 0xb6, 0x73, 0xdc, 0x18, 0x0c, 0x1d, 0x0c, 0x1d, 0x0c, 0x1d, 0xe8, 0x29, 0xe8, 0xa9, 0x36, + 0xce, 0xd3, 0x6c, 0x9d, 0x81, 0xa1, 0x92, 0x8f, 0x56, 0x1b, 0x62, 0xc2, 0xc1, 0x13, 0x53, 0x64, + 0xc5, 0xac, 0x64, 0xc5, 0xe4, 0x29, 0xf8, 0xa5, 0x27, 0x4b, 0xc5, 0xe7, 0xee, 0xdd, 0xf0, 0x36, + 0x10, 0x51, 0xfe, 0x44, 0x95, 0x45, 0x53, 0xc8, 0x55, 0x41, 0xae, 0x4a, 0x21, 0x90, 0xd4, 0xb0, + 0x5c, 0x95, 0xd9, 0x8a, 0xa1, 0x23, 0x94, 0xf3, 0x16, 0x71, 0x52, 0x2d, 0x58, 0x25, 0x58, 0x65, + 0xe6, 0x07, 0xa2, 0xab, 0xa9, 0x47, 0x73, 0x10, 0xf5, 0xc6, 0xe4, 0x25, 0x39, 0x90, 0x9a, 0x78, + 0xb9, 0x93, 0x2f, 0x7b, 0x15, 0xcb, 0x5f, 0x99, 0x19, 0x50, 0x65, 0x0e, 0x94, 0x9b, 0x05, 0xe5, + 0xe6, 0x41, 0xa5, 0x99, 0x20, 0x66, 0x5e, 0x54, 0xfb, 0x73, 0x89, 0xcc, 0xc7, 0xbc, 0x41, 0x37, + 0xa4, 0x9f, 0x4f, 0xb3, 0x05, 0x40, 0x3a, 0xfb, 0x55, 0xca, 0x37, 0xd4, 0x66, 0x45, 0xa5, 0x79, + 0x51, 0x6e, 0x66, 0x54, 0x9b, 0x1b, 0x6d, 0x66, 0x47, 0x9b, 0xf9, 0xd1, 0x61, 0x86, 0x68, 0xcd, + 0x91, 0x02, 0x05, 0xb0, 0xa6, 0x64, 0x37, 0xf2, 0x16, 0x9b, 0x72, 0xdf, 0x9b, 0x95, 0x76, 0x54, + 0x31, 0xe9, 0x67, 0x80, 0xe5, 0x4c, 0x41, 0xdb, 0x37, 0x4c, 0x4a, 0x2e, 0x7c, 0xf2, 0xed, 0xca, + 0xf3, 0x0e, 0xfe, 0xf3, 0xec, 0xd9, 0xe7, 0x86, 0x75, 0xce, 0xac, 0xc1, 0xa5, 0xf5, 0xba, 0xff, + 0x77, 0xf3, 0x79, 0xe7, 0xe9, 0xe2, 0xf8, 0xef, 0xd3, 0xa7, 0xf5, 0x3f, 0xfe, 0xd8, 0xf6, 0xb5, + 0xe6, 0xf3, 0xd3, 0xa7, 0x8b, 0x1d, 0xff, 0xd3, 0x7b, 0xba, 0xd8, 0xb3, 0x8d, 0xee, 0xd3, 0xb3, + 0x8d, 0xaf, 0x8e, 0xff, 0xde, 0xda, 0x75, 0x41, 0x67, 0xc7, 0x05, 0xed, 0x5d, 0x17, 0xb4, 0x77, + 0x5c, 0xb0, 0xf3, 0x96, 0x5a, 0x3b, 0x2e, 0xe8, 0x3e, 0xfd, 0xd8, 0xf8, 0xfe, 0xb3, 0xed, 0x5f, + 0xed, 0x3d, 0x1d, 0xff, 0xd8, 0xf5, 0x7f, 0xa7, 0x4f, 0x3f, 0x2e, 0x8e, 0x8f, 0xff, 0x41, 0xbf, + 0xd4, 0xfb, 0x25, 0xdd, 0xd7, 0x4a, 0x19, 0x36, 0xf0, 0x5c, 0xff, 0x9b, 0xe5, 0xb1, 0x47, 0x2e, + 0xe6, 0x8b, 0x5a, 0x19, 0x1c, 0xd9, 0xd2, 0x17, 0xe0, 0x09, 0xe0, 0x09, 0xe0, 0x09, 0xe0, 0x09, + 0xd9, 0x6c, 0x0f, 0x87, 0x8f, 0x11, 0xe0, 0xc9, 0x4e, 0x78, 0xb2, 0xec, 0x3f, 0xd7, 0xdd, 0x72, + 0xeb, 0xe9, 0xf8, 0x7f, 0x8e, 0xff, 0xf7, 0x90, 0xfc, 0x68, 0xa9, 0x94, 0x05, 0xe2, 0x3a, 0x0d, + 0xf3, 0x76, 0xd5, 0xc5, 0x40, 0xe7, 0x61, 0xc1, 0xf9, 0x27, 0x92, 0x73, 0x90, 0xe8, 0x86, 0x87, + 0xa2, 0xb4, 0x1c, 0xa1, 0x3e, 0x43, 0xaf, 0xcb, 0xa0, 0xaa, 0x1b, 0xe4, 0x5d, 0xc8, 0xbb, 0x46, + 0x54, 0x73, 0xf3, 0x38, 0x1b, 0x08, 0x3e, 0x50, 0x51, 0xb2, 0x9e, 0xb2, 0x9e, 0xdb, 0x4d, 0xe2, + 0x27, 0x5e, 0xbc, 0x48, 0x6c, 0xf9, 0x09, 0xd5, 0x60, 0x97, 0xc3, 0x9c, 0xd3, 0x1c, 0x77, 0xb7, + 0x31, 0xba, 0x14, 0xc7, 0xde, 0x6d, 0x8c, 0x2b, 0xb5, 0x51, 0x6f, 0xc1, 0xa8, 0xc3, 0xa8, 0x1f, + 0xa0, 0x51, 0x47, 0xcc, 0x0e, 0xa2, 0x18, 0x44, 0x31, 0x88, 0x62, 0x07, 0x2b, 0x8a, 0x21, 0x66, + 0xf7, 0x53, 0x51, 0x0c, 0x31, 0x3b, 0xc4, 0xec, 0x94, 0x6b, 0x8d, 0x84, 0x90, 0xd6, 0x8d, 0x2c, + 0x11, 0xc4, 0x92, 0x0b, 0x85, 0x28, 0x64, 0xde, 0x05, 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x08, 0xc0, + 0x08, 0xd9, 0x6c, 0xa7, 0x3f, 0xbb, 0x71, 0x03, 0x87, 0x34, 0x91, 0xb8, 0x41, 0xab, 0x5d, 0x22, + 0x71, 0x03, 0x6e, 0x01, 0x6e, 0x01, 0x6e, 0x01, 0x89, 0x1b, 0x45, 0x71, 0x54, 0x24, 0x6e, 0x28, + 0xf2, 0xa3, 0xb3, 0xd4, 0x05, 0x8b, 0x36, 0x32, 0xb4, 0x31, 0xbf, 0xd7, 0xfa, 0x81, 0xff, 0x84, + 0xff, 0x84, 0xff, 0x84, 0xff, 0x24, 0x9b, 0xed, 0xdc, 0x8f, 0x47, 0x5c, 0x4c, 0xf3, 0xc7, 0x14, + 0xba, 0xcf, 0x8e, 0x82, 0xb6, 0x5f, 0xf9, 0xf1, 0x68, 0xfc, 0x72, 0x9e, 0x0e, 0xc0, 0xdd, 0x04, + 0xc2, 0xbd, 0x53, 0x51, 0x57, 0x69, 0x6e, 0xf4, 0xa6, 0xed, 0xc3, 0xbd, 0xc0, 0xbd, 0xc0, 0xbd, + 0xc0, 0xbd, 0xd0, 0xc3, 0x57, 0x25, 0x06, 0x06, 0x2e, 0x06, 0xa9, 0xe8, 0xd4, 0xa9, 0xe8, 0x04, + 0x87, 0x08, 0xd2, 0x8d, 0x4e, 0xb1, 0x35, 0x4f, 0xfe, 0x1f, 0x7f, 0x24, 0x49, 0x2d, 0xaa, 0xbf, + 0x71, 0x23, 0x79, 0x29, 0x25, 0x51, 0x05, 0x95, 0xb7, 0xae, 0xff, 0xca, 0xe3, 0x63, 0xc3, 0x1d, + 0xd5, 0x2f, 0x6a, 0x7e, 0xec, 0x79, 0x04, 0x09, 0x9e, 0x6f, 0xd9, 0x03, 0x7d, 0xa3, 0xef, 0x84, + 0xc3, 0x05, 0x77, 0x7e, 0x7b, 0x4c, 0x9a, 0xc4, 0x81, 0x9e, 0x19, 0x57, 0x65, 0x9d, 0x24, 0x85, + 0x77, 0xdf, 0xc3, 0x24, 0xff, 0x98, 0xf5, 0x8a, 0xa2, 0x89, 0xe5, 0x9a, 0x0f, 0x65, 0xae, 0x9b, + 0x38, 0xcd, 0x7b, 0xb0, 0x98, 0x73, 0xcf, 0x85, 0x74, 0x23, 0x3e, 0xca, 0x73, 0xde, 0xe0, 0x1c, + 0x3f, 0x6d, 0x6d, 0x15, 0xd5, 0x14, 0x51, 0x4d, 0xb1, 0x10, 0x96, 0x63, 0x58, 0x35, 0x45, 0xa2, + 0x52, 0x6b, 0xb4, 0x25, 0xd6, 0x50, 0x49, 0xb1, 0x40, 0x51, 0x03, 0x95, 0x14, 0x6b, 0xd5, 0xa9, + 0xa4, 0x38, 0x41, 0x09, 0xf7, 0xcc, 0x53, 0xb0, 0xd1, 0x76, 0xd6, 0x32, 0xb6, 0xdb, 0x96, 0x4e, + 0xef, 0xc4, 0xce, 0xac, 0x22, 0xf4, 0xcc, 0x43, 0xd9, 0x6e, 0x4b, 0x76, 0xd4, 0xc7, 0xfa, 0xda, + 0xa7, 0xdc, 0x6c, 0x4b, 0x7b, 0xf4, 0xc7, 0xec, 0x47, 0x81, 0x0a, 0xac, 0xe2, 0x28, 0x10, 0x45, + 0x46, 0x75, 0xa3, 0x79, 0x45, 0x87, 0x4d, 0xcc, 0xdb, 0x57, 0x78, 0xe8, 0x04, 0xf1, 0x72, 0x5b, + 0xd7, 0xc9, 0x8c, 0x1f, 0x52, 0x55, 0x27, 0x5c, 0x6a, 0x1d, 0xdb, 0x92, 0x46, 0x24, 0xfa, 0x15, + 0xda, 0xf4, 0xef, 0xb9, 0x03, 0x2e, 0xdd, 0x91, 0x82, 0x7d, 0xff, 0xf3, 0x96, 0x01, 0x30, 0x01, + 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x0f, + 0x09, 0x60, 0x46, 0x71, 0x18, 0x92, 0x6e, 0xc1, 0x5b, 0x14, 0x96, 0x9a, 0xb5, 0x4c, 0x55, 0x0b, + 0x67, 0x71, 0x18, 0xfb, 0x80, 0x79, 0x11, 0x80, 0x2b, 0x80, 0x2b, 0x80, 0xeb, 0x41, 0x01, 0x57, + 0xfa, 0xfd, 0xd7, 0xc4, 0xfb, 0xae, 0x4d, 0xcf, 0xb6, 0x33, 0x27, 0x3f, 0x6b, 0x5b, 0x52, 0x0a, + 0x49, 0x09, 0xdf, 0x62, 0x0e, 0xf0, 0xa7, 0xd9, 0xc1, 0x47, 0x5a, 0xd3, 0x91, 0x3c, 0x49, 0xa0, + 0x85, 0x24, 0x81, 0xe2, 0xfd, 0x1d, 0x92, 0x04, 0xf6, 0xc7, 0x9b, 0x48, 0x12, 0x00, 0x14, 0x06, + 0x14, 0x06, 0x14, 0x2e, 0x23, 0x14, 0x86, 0x86, 0x4b, 0x2a, 0xf8, 0x41, 0xc3, 0x2d, 0x54, 0xe7, + 0x83, 0x86, 0xbb, 0x75, 0x48, 0xa1, 0xe1, 0xaa, 0x6b, 0x0d, 0x49, 0x02, 0xfb, 0xb8, 0x19, 0x24, + 0x09, 0x00, 0x60, 0x02, 0x60, 0x02, 0x60, 0x02, 0x60, 0x02, 0x60, 0x02, 0x60, 0x02, 0x60, 0x02, + 0x60, 0x1e, 0x24, 0xc0, 0x44, 0x92, 0x00, 0x80, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x92, 0x04, 0xca, + 0x61, 0xd2, 0x91, 0x24, 0x90, 0x3d, 0x49, 0x80, 0xa0, 0xb8, 0x12, 0xca, 0xaa, 0xa8, 0x1c, 0xa1, + 0x7a, 0xae, 0x3c, 0x8a, 0x7d, 0x0b, 0xec, 0xbc, 0x9f, 0xf4, 0x7c, 0xb9, 0xd2, 0x71, 0x89, 0x4b, + 0xbb, 0xe4, 0x4b, 0x10, 0x21, 0x49, 0x0c, 0x21, 0x2b, 0xde, 0xd2, 0x42, 0xf1, 0x16, 0x75, 0x98, + 0x05, 0xc5, 0x5b, 0x16, 0x5c, 0x20, 0x7f, 0xf1, 0x96, 0x78, 0x6c, 0x34, 0x22, 0xca, 0xf2, 0x2d, + 0x49, 0x8b, 0x28, 0xe0, 0xa2, 0x8d, 0x76, 0x20, 0x37, 0x0b, 0xb9, 0x59, 0x3b, 0x1b, 0x72, 0x7d, + 0xcb, 0x71, 0x23, 0x9b, 0x09, 0x87, 0x3b, 0x56, 0xf8, 0x4d, 0x46, 0x2a, 0x92, 0xb4, 0xd6, 0xbb, + 0x80, 0x26, 0x01, 0x4d, 0x02, 0x9a, 0xc4, 0x01, 0x69, 0x12, 0x89, 0xdb, 0xef, 0x75, 0x14, 0xa8, + 0x12, 0x67, 0x88, 0xa7, 0x11, 0x37, 0x8e, 0x78, 0x9a, 0xa6, 0x15, 0xb7, 0x3a, 0xa4, 0x15, 0x88, + 0xa7, 0x35, 0xcf, 0x3a, 0x9d, 0xde, 0x69, 0xa7, 0xd3, 0x38, 0x6d, 0x9f, 0x36, 0xce, 0xbb, 0xdd, + 0x66, 0xaf, 0x89, 0xc8, 0x1a, 0x79, 0x6b, 0x55, 0x8a, 0xac, 0xb9, 0xbe, 0xc5, 0x85, 0x08, 0x84, + 0x3a, 0xec, 0xb9, 0xd4, 0x3c, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, + 0x27, 0x70, 0x27, 0x70, 0x27, 0x70, 0xe7, 0x21, 0xe3, 0xce, 0x41, 0x20, 0xbe, 0x4f, 0x45, 0xc9, + 0xc0, 0x96, 0x5c, 0x11, 0xfa, 0xdc, 0xe8, 0x04, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, + 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x14, 0x18, 0x54, 0x69, 0xec, 0x7d, 0xad, + 0x0b, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, + 0x4f, 0xe0, 0xcf, 0x43, 0xc6, 0x9f, 0x0a, 0x95, 0x4f, 0xe8, 0x9d, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, + 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xc0, 0x9b, 0xea, 0x54, 0x4e, + 0x68, 0x9b, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, 0xc0, 0x9a, + 0xc0, 0x9a, 0x87, 0x8d, 0x35, 0x83, 0x58, 0x2a, 0xdf, 0xd8, 0xbe, 0xa5, 0x0f, 0x20, 0x50, 0x20, + 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0x50, 0x20, 0xd0, 0x83, + 0x46, 0xa0, 0x2a, 0xb7, 0xb6, 0xaf, 0xb5, 0x0f, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, + 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x09, 0xe4, 0x79, 0xd0, 0xc8, 0x53, 0xfd, 0xe6, 0xf6, + 0xad, 0xbd, 0x00, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, + 0x02, 0x85, 0x02, 0x85, 0x02, 0x85, 0x2a, 0x8e, 0xc0, 0x63, 0x7f, 0x3b, 0x10, 0x28, 0x10, 0x28, + 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0xe8, 0x02, 0x81, + 0xaa, 0x54, 0x3f, 0xa1, 0x79, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, + 0x71, 0x02, 0x71, 0x02, 0x71, 0x02, 0x71, 0x4a, 0x85, 0x4a, 0x27, 0xf4, 0x4d, 0xa0, 0x4d, 0xa0, + 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0x83, 0xd1, 0x66, + 0xa1, 0xc7, 0xc7, 0x5f, 0xfa, 0x7e, 0x20, 0xd9, 0x78, 0x0a, 0xd0, 0x9c, 0x22, 0x1f, 0xd9, 0x43, + 0x3e, 0x62, 0x21, 0x93, 0xc3, 0xb1, 0xc7, 0x3a, 0x09, 0x42, 0xee, 0xdb, 0x13, 0x44, 0x68, 0xb9, + 0x63, 0xdf, 0x35, 0x60, 0x36, 0x8f, 0x4e, 0xb6, 0x7d, 0x3c, 0x89, 0xe2, 0xdb, 0xa5, 0xbf, 0x2f, + 0xff, 0x76, 0xe2, 0x86, 0xf7, 0xbd, 0x93, 0x48, 0x32, 0xc9, 0x4f, 0x12, 0x1f, 0x48, 0x81, 0x7e, + 0xeb, 0x91, 0x14, 0xb1, 0x2d, 0xfd, 0xc4, 0xbb, 0x5e, 0xcf, 0xba, 0xfb, 0xfa, 0x61, 0xa9, 0xef, + 0xaf, 0xd7, 0xe1, 0x7d, 0xef, 0xeb, 0xcb, 0x59, 0xaf, 0x47, 0xc5, 0x8c, 0x74, 0x8e, 0x51, 0xae, + 0x3b, 0x43, 0x3b, 0xb4, 0x6c, 0xcf, 0x9d, 0x62, 0xaf, 0x7c, 0x43, 0x3c, 0x87, 0x22, 0xcb, 0x8d, + 0xe6, 0x9c, 0x81, 0x57, 0x7c, 0xc0, 0x62, 0x6f, 0x82, 0x0b, 0x07, 0xcc, 0x8b, 0x78, 0xde, 0xf6, + 0x68, 0x8c, 0x34, 0x19, 0x8f, 0xa1, 0xe4, 0x2f, 0xe4, 0xbc, 0x85, 0x9a, 0xaf, 0x28, 0xe3, 0x29, + 0xca, 0xf8, 0x89, 0x0a, 0x5e, 0x52, 0xac, 0x45, 0x27, 0xe3, 0x1f, 0xf3, 0xd9, 0x76, 0x1b, 0x04, + 0x1e, 0x67, 0x3e, 0xc5, 0x7c, 0x4b, 0x16, 0x67, 0xb3, 0x69, 0xa2, 0x21, 0x8d, 0x43, 0x8b, 0x39, + 0x8e, 0xb0, 0x1c, 0x2e, 0xb9, 0x2d, 0x2d, 0x29, 0x98, 0x1f, 0x8d, 0x5c, 0x02, 0x8d, 0x67, 0x61, + 0x56, 0x77, 0x76, 0x41, 0x67, 0x64, 0x9b, 0x30, 0xb0, 0x30, 0xb0, 0x30, 0xb0, 0x65, 0x32, 0xb0, + 0xb1, 0xeb, 0xcb, 0x76, 0x8b, 0xd0, 0xbe, 0x9e, 0x12, 0x34, 0x45, 0xab, 0xe2, 0x10, 0xca, 0x61, + 0x2a, 0x54, 0x1b, 0x45, 0xd4, 0x5e, 0x95, 0x4a, 0xa3, 0x92, 0xb7, 0x13, 0xaa, 0x32, 0x4a, 0xd4, + 0x18, 0xd5, 0x43, 0xd5, 0x69, 0x9d, 0x77, 0xce, 0x7b, 0xa7, 0xad, 0xf3, 0xae, 0x41, 0x63, 0x56, + 0x12, 0x2d, 0xa3, 0x6f, 0x20, 0xac, 0xe3, 0x3e, 0xbb, 0xf5, 0xb8, 0x43, 0x07, 0xe2, 0x66, 0x0d, + 0xd2, 0x41, 0xb6, 0xb1, 0x37, 0x06, 0x6a, 0x03, 0x6a, 0x03, 0x6a, 0x03, 0x2d, 0x2e, 0x9d, 0xfd, + 0x1c, 0xc9, 0x98, 0xce, 0x76, 0x8e, 0x1b, 0x83, 0xa1, 0x83, 0xa1, 0x83, 0xa1, 0x03, 0x3d, 0x05, + 0x3d, 0xd5, 0xc6, 0x79, 0x9a, 0xad, 0x33, 0x30, 0x54, 0xf2, 0xd1, 0x6a, 0x43, 0x4c, 0x38, 0x78, + 0x62, 0x7a, 0xa4, 0x71, 0x82, 0x53, 0x05, 0xf3, 0x55, 0x07, 0xf1, 0xb3, 0x79, 0xd8, 0xf4, 0xaf, + 0x32, 0xc3, 0x6b, 0xac, 0xc7, 0xbe, 0x1f, 0x8f, 0x6e, 0xb9, 0xc8, 0x21, 0x08, 0x2c, 0xfc, 0xe6, + 0xa2, 0xad, 0x8c, 0x03, 0x3a, 0xe3, 0x05, 0x19, 0x2f, 0xcf, 0x8b, 0x61, 0x29, 0xb0, 0xeb, 0x0a, + 0x66, 0x1d, 0xe4, 0x00, 0x11, 0x54, 0x58, 0x95, 0x1c, 0xa3, 0x92, 0x63, 0xd3, 0x0d, 0x4c, 0x3a, + 0xa8, 0x1b, 0x62, 0x80, 0xae, 0x5c, 0x91, 0x6f, 0xb2, 0xd8, 0xb3, 0x19, 0x4b, 0xc4, 0x27, 0x93, + 0xf6, 0x68, 0x28, 0x65, 0xb3, 0xea, 0x94, 0x72, 0x00, 0x4a, 0xa9, 0x82, 0x52, 0x0e, 0x4c, 0xa7, + 0x94, 0x79, 0x97, 0xf5, 0xbc, 0x21, 0x2a, 0xad, 0x7d, 0x63, 0xf6, 0xd2, 0x68, 0xee, 0x8b, 0x07, + 0xa6, 0xcd, 0x49, 0x53, 0x44, 0xe3, 0xcc, 0xdb, 0x6b, 0x33, 0xc0, 0x5e, 0x9b, 0x22, 0xf6, 0xda, + 0x0c, 0xb0, 0xd7, 0x26, 0xed, 0x6c, 0xa5, 0x13, 0xf7, 0x37, 0x50, 0x44, 0x13, 0x89, 0xe7, 0xb5, + 0x5a, 0xfd, 0xd5, 0xc3, 0x44, 0x6a, 0xc8, 0x2f, 0xdf, 0xd1, 0xc3, 0x8c, 0xc0, 0xb6, 0xf8, 0x83, + 0xbc, 0x90, 0xdc, 0xe3, 0x23, 0x2e, 0xc5, 0xa3, 0x15, 0xf8, 0x96, 0x3d, 0x9c, 0xe8, 0x8d, 0x4a, + 0xa0, 0xc7, 0xc4, 0xc5, 0x28, 0xc0, 0x1e, 0x45, 0xc3, 0x8e, 0xfe, 0xc1, 0xec, 0x4d, 0x58, 0x30, + 0xfd, 0x93, 0x84, 0x71, 0x18, 0x18, 0xc8, 0x9b, 0x3f, 0x93, 0x25, 0xf8, 0x80, 0x8e, 0x82, 0xad, + 0x36, 0x0b, 0x26, 0x06, 0x26, 0x06, 0x26, 0x56, 0x3c, 0x13, 0x23, 0x12, 0x5a, 0xd4, 0x08, 0x2e, + 0xc4, 0xcb, 0x1d, 0x7c, 0x09, 0x7c, 0x09, 0x7c, 0x89, 0xd2, 0x7c, 0x6c, 0x62, 0x06, 0xfa, 0x69, + 0xb5, 0x81, 0x1f, 0xa8, 0xa7, 0x95, 0xa2, 0x98, 0x3a, 0xb5, 0x91, 0x51, 0x69, 0x6c, 0x94, 0x1b, + 0x1d, 0xd5, 0xc6, 0x47, 0x9b, 0x11, 0xd2, 0x66, 0x8c, 0x74, 0x18, 0x25, 0x5a, 0xe3, 0x44, 0x6c, + 0xa4, 0xd4, 0x89, 0x3b, 0x1b, 0xb3, 0xdd, 0xe3, 0x6c, 0x90, 0x9f, 0x94, 0xfc, 0x14, 0xb9, 0x9c, + 0x2a, 0x68, 0xfb, 0x66, 0xce, 0x60, 0xc7, 0xd3, 0xe2, 0x62, 0x89, 0x99, 0xae, 0xfd, 0x21, 0xf9, + 0x7d, 0xb2, 0xc3, 0xbd, 0xa4, 0x55, 0x18, 0x28, 0x73, 0x79, 0x96, 0x79, 0xb9, 0x3a, 0x7f, 0xb4, + 0xd2, 0x0b, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0xd2, 0x9e, 0x2e, 0xe9, 0xf3, + 0xc2, 0x25, 0xfd, 0xd3, 0x8e, 0x85, 0xe0, 0xbe, 0x7c, 0x76, 0x7c, 0xf2, 0xe2, 0xc5, 0x42, 0x6c, + 0xed, 0x27, 0x97, 0xac, 0x6a, 0xae, 0x9b, 0x7f, 0x9b, 0xb7, 0xec, 0xf0, 0x87, 0xd2, 0x7a, 0xb7, + 0x52, 0xb1, 0x3f, 0xb2, 0x90, 0xcb, 0xec, 0x47, 0x9d, 0x90, 0xa0, 0x3c, 0x04, 0xb3, 0xc3, 0x78, + 0x12, 0x86, 0x62, 0xb6, 0x5a, 0xcd, 0xb2, 0x09, 0x0b, 0x7d, 0x2a, 0xa1, 0x95, 0x36, 0x54, 0xb3, + 0x80, 0x74, 0x3a, 0x42, 0x36, 0x2b, 0x11, 0x0a, 0x92, 0x00, 0x0e, 0xdd, 0x20, 0x3d, 0x91, 0xd4, + 0xb9, 0x62, 0x92, 0xd3, 0x4b, 0xbd, 0xd3, 0x66, 0x4b, 0xae, 0xf4, 0xb6, 0xa0, 0xf4, 0x9a, 0x83, + 0x68, 0xa1, 0xf4, 0x42, 0xe9, 0x05, 0xad, 0x06, 0xad, 0x06, 0xad, 0x06, 0xad, 0x06, 0xad, 0x86, + 0xd2, 0xbb, 0x1b, 0xd1, 0x42, 0xe9, 0x85, 0x4b, 0x82, 0x4b, 0x82, 0x4b, 0x82, 0x4b, 0x2a, 0xad, + 0x4b, 0x82, 0xd2, 0x5b, 0x1c, 0xfb, 0xab, 0x90, 0x1c, 0x97, 0x63, 0xc7, 0xb8, 0x02, 0x35, 0x0e, + 0xb5, 0xfa, 0x73, 0x8d, 0xa6, 0xde, 0xaa, 0xfd, 0x7f, 0xce, 0xef, 0xe2, 0xeb, 0xfc, 0x6b, 0xef, + 0xf9, 0xc0, 0xc4, 0xdc, 0x7c, 0x1a, 0x09, 0x97, 0x54, 0xba, 0x25, 0xcf, 0xc5, 0x6f, 0x21, 0x17, + 0xbf, 0x78, 0xc8, 0x89, 0x5c, 0xfc, 0xbd, 0x1f, 0x08, 0xbb, 0xa2, 0xb1, 0x2b, 0xba, 0x74, 0x9c, + 0x17, 0xb1, 0x9f, 0x22, 0x38, 0x2d, 0x76, 0x45, 0xe7, 0x46, 0x11, 0xd8, 0x15, 0x6d, 0x2c, 0xc4, + 0x27, 0xa0, 0x68, 0xa8, 0xb0, 0x46, 0x3f, 0x2e, 0xf5, 0x5c, 0x7c, 0x23, 0x3d, 0xc9, 0xd2, 0x56, + 0xd6, 0xed, 0x48, 0xe1, 0x48, 0xd7, 0x2f, 0xe3, 0xbb, 0xb1, 0x93, 0x98, 0xc0, 0xb1, 0xf4, 0x99, + 0x72, 0x39, 0x2b, 0xc6, 0xed, 0x1b, 0xe7, 0xd9, 0x4b, 0x31, 0x0b, 0x2f, 0xc6, 0x13, 0x22, 0x6b, + 0xe9, 0xb9, 0x2b, 0x1e, 0xd9, 0xc2, 0x0d, 0x93, 0xa9, 0x5e, 0xbf, 0x74, 0x9c, 0xa8, 0xc6, 0x1c, + 0x47, 0xf0, 0x28, 0xaa, 0xb1, 0x58, 0x06, 0xd3, 0xe9, 0x1a, 0x8b, 0xc9, 0x62, 0xa8, 0xc9, 0xa0, + 0x26, 0x87, 0xbc, 0x76, 0xcb, 0x22, 0x5e, 0xbb, 0xbe, 0xa9, 0x8d, 0x02, 0x87, 0x7b, 0x28, 0x7a, + 0x97, 0x54, 0x14, 0xb6, 0xf8, 0x83, 0x44, 0xe1, 0xbb, 0x2c, 0x10, 0x6d, 0xfa, 0xea, 0x0e, 0xa5, + 0xf8, 0xdd, 0x6c, 0x59, 0xd1, 0xe9, 0x3c, 0xf3, 0x16, 0x73, 0x9f, 0x45, 0xb1, 0x62, 0x0c, 0x3e, + 0x06, 0xa1, 0xe5, 0xf1, 0x7b, 0xee, 0xd5, 0xec, 0xc0, 0x97, 0xcc, 0xf5, 0xb9, 0xa8, 0x0d, 0x02, + 0x51, 0xbb, 0xbe, 0xb9, 0xef, 0xd5, 0xa8, 0xfa, 0x3c, 0x94, 0x52, 0x0f, 0x79, 0xcd, 0x03, 0x24, + 0x26, 0x55, 0xe6, 0x83, 0x88, 0x12, 0xe8, 0x36, 0x5f, 0x8a, 0x01, 0x55, 0x3f, 0x2d, 0xa0, 0xca, + 0x07, 0x99, 0xd5, 0x41, 0xe5, 0x0c, 0xd3, 0x79, 0x7f, 0x5c, 0x9c, 0x6e, 0xd6, 0xed, 0x3f, 0x02, + 0x29, 0x9c, 0x53, 0xc6, 0xa0, 0x41, 0xae, 0x20, 0x41, 0x46, 0xab, 0x9d, 0x39, 0x08, 0x90, 0xc7, + 0x2a, 0xe7, 0xd6, 0xe0, 0xf2, 0x5a, 0x5c, 0x32, 0x0b, 0x4b, 0x66, 0x51, 0x29, 0x34, 0x32, 0xb5, + 0xf4, 0x2c, 0x2b, 0xc8, 0xaa, 0x33, 0x67, 0xe4, 0xfa, 0xd6, 0x78, 0x4e, 0xc7, 0x51, 0xfe, 0xd2, + 0xde, 0x2b, 0xad, 0xe5, 0xe3, 0x39, 0x0d, 0x14, 0xf7, 0x46, 0x71, 0x6f, 0x13, 0xf8, 0x4d, 0x6e, + 0x59, 0x79, 0x29, 0x2e, 0x15, 0x8f, 0xf8, 0x54, 0x39, 0xc8, 0x33, 0x67, 0x66, 0xbe, 0xa6, 0x93, + 0xa3, 0x8d, 0x57, 0x7e, 0x3c, 0x1a, 0x3f, 0x94, 0xde, 0x57, 0x99, 0x7b, 0x27, 0x26, 0xdd, 0x2a, + 0x51, 0xb6, 0xd3, 0x92, 0x7e, 0x67, 0x25, 0xd1, 0x4e, 0xca, 0x1c, 0x1a, 0x3d, 0xf9, 0x6b, 0x0f, + 0xc2, 0x64, 0x1d, 0x30, 0x0f, 0xaf, 0x1b, 0xaf, 0x9b, 0xe2, 0x75, 0x67, 0xba, 0xb2, 0xaf, 0xe5, + 0x70, 0x15, 0x3b, 0x88, 0xc7, 0x24, 0x89, 0x00, 0x7f, 0xcd, 0x5b, 0x82, 0xc6, 0x0c, 0xec, 0x75, + 0x00, 0xd8, 0x2b, 0xff, 0xc1, 0x2a, 0x4c, 0x08, 0x97, 0x0b, 0x4b, 0x0a, 0xe6, 0x47, 0xee, 0xd8, + 0x04, 0x46, 0x84, 0xa7, 0xac, 0x6c, 0x69, 0x1c, 0xa7, 0x78, 0x2a, 0x5f, 0xb8, 0xd4, 0x0b, 0x58, + 0xd9, 0x42, 0x56, 0xb6, 0xa0, 0x55, 0x2c, 0xec, 0x7c, 0x0b, 0x9c, 0x00, 0xf5, 0xd4, 0xd4, 0x9c, + 0xe2, 0x99, 0xb8, 0xcc, 0x5e, 0x87, 0xf0, 0x20, 0xcf, 0x33, 0x1c, 0xe4, 0x59, 0x88, 0x5d, 0xdb, + 0x68, 0xd6, 0xc4, 0xa3, 0x21, 0x0d, 0x39, 0xc5, 0x53, 0xd9, 0x99, 0xab, 0x67, 0x9d, 0x4e, 0xef, + 0xb4, 0xd3, 0x69, 0x9c, 0xb6, 0x4f, 0x1b, 0xe7, 0xdd, 0x6e, 0xb3, 0xd7, 0xec, 0xe2, 0x60, 0x4f, + 0xf5, 0xc4, 0x85, 0xd2, 0x4a, 0xe3, 0x10, 0x93, 0xea, 0x1f, 0x62, 0x52, 0xd0, 0x59, 0x1c, 0xd6, + 0xad, 0x08, 0x98, 0x63, 0xb3, 0x48, 0x5a, 0xe1, 0x37, 0x19, 0x51, 0x9e, 0xc7, 0xb1, 0xde, 0x34, + 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x3a, 0xa0, 0x7a, + 0x39, 0xa1, 0x7a, 0x51, 0x38, 0xcc, 0x71, 0x23, 0x9b, 0x09, 0x87, 0x16, 0x81, 0xcd, 0x1b, 0x05, + 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, 0xf6, 0x02, + 0xf6, 0x5a, 0xc6, 0x5e, 0x5c, 0x88, 0x40, 0xd0, 0x22, 0xaf, 0xa4, 0x49, 0xe0, 0x2e, 0xe0, 0x2e, + 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0xae, 0x65, 0xdc, + 0x35, 0xb0, 0x23, 0x15, 0xd8, 0x6b, 0xa9, 0x59, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, + 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0x2f, 0xe0, 0xaf, 0x65, 0xfc, 0x35, 0x8a, 0x3d, 0xe9, + 0xaa, 0xc9, 0xfd, 0x5a, 0x6b, 0x1a, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, + 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x0c, 0x38, 0x6c, 0x19, 0x87, 0x05, 0xb6, 0xe4, 0xc4, 0xf8, 0x2b, + 0x69, 0x12, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, + 0xb8, 0x0b, 0xb8, 0x6b, 0x19, 0x77, 0x91, 0xab, 0x5e, 0xd0, 0xba, 0x80, 0xb9, 0x80, 0xb9, 0x80, + 0xb9, 0x80, 0xb9, 0x80, 0xb9, 0x80, 0xb9, 0x80, 0xb9, 0x80, 0xb9, 0x36, 0x30, 0x57, 0xec, 0x2b, + 0x8a, 0x38, 0xae, 0x34, 0x0c, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, + 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0xb6, 0x8a, 0xc1, 0xbe, 0xf9, 0xc1, 0x77, 0xdf, 0x0a, 0x45, + 0x20, 0x03, 0x6a, 0x14, 0xb6, 0xd2, 0x34, 0x70, 0x18, 0x70, 0x18, 0x70, 0x18, 0x70, 0x18, 0x70, + 0x18, 0x70, 0x18, 0x70, 0x18, 0x70, 0x18, 0x70, 0xd8, 0x7c, 0x58, 0x3c, 0x16, 0x49, 0xcb, 0xf6, + 0x38, 0x13, 0x74, 0x00, 0x6c, 0xa9, 0x4d, 0x20, 0x2f, 0x20, 0x2f, 0x20, 0xaf, 0x12, 0x21, 0x2f, + 0xe9, 0x8e, 0xb8, 0x74, 0xed, 0x6f, 0x51, 0xe9, 0xb0, 0xd7, 0x9f, 0xfe, 0xd4, 0x2f, 0xd4, 0x7d, + 0xe6, 0x07, 0x11, 0xb7, 0x03, 0x3f, 0x77, 0xc5, 0x40, 0x60, 0x3a, 0x60, 0x3a, 0x60, 0x3a, 0x60, + 0xba, 0xe2, 0x30, 0x1d, 0x8e, 0x5c, 0xa0, 0x82, 0x09, 0x38, 0x72, 0x81, 0x12, 0xf6, 0x07, 0xb1, + 0x54, 0x76, 0xe6, 0xc2, 0x96, 0xb6, 0x41, 0x03, 0x40, 0x03, 0x40, 0x03, 0x4a, 0x44, 0x03, 0x20, + 0xc0, 0x02, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x53, 0xf4, 0x9f, 0x17, 0x89, 0xd1, 0x9f, + 0xba, 0xb0, 0xd2, 0x2a, 0xd0, 0x17, 0xd0, 0x17, 0xd0, 0x17, 0xd0, 0x17, 0xd0, 0x17, 0xd0, 0x17, + 0xd0, 0x17, 0xd0, 0x17, 0xd0, 0xd7, 0x0a, 0xfa, 0xa2, 0xae, 0xfd, 0xbb, 0xd4, 0x26, 0x90, 0x17, + 0x90, 0x17, 0x90, 0x17, 0x90, 0x17, 0x90, 0x17, 0x90, 0x17, 0x90, 0x17, 0x90, 0x17, 0x90, 0xd7, + 0x0a, 0xf2, 0x52, 0x55, 0xf9, 0x77, 0x4b, 0xdb, 0x40, 0x62, 0x40, 0x62, 0x40, 0x62, 0x40, 0x62, + 0x40, 0x62, 0x40, 0x62, 0x40, 0x62, 0x40, 0x62, 0x40, 0x62, 0x2b, 0x48, 0x8c, 0xba, 0xf6, 0xef, + 0x52, 0x9b, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, 0x40, 0x5e, + 0x40, 0x5e, 0x40, 0x5e, 0x2b, 0xc8, 0x8b, 0x5e, 0xf9, 0x82, 0xde, 0x05, 0xd4, 0x05, 0xd4, 0x05, + 0xd4, 0x05, 0xd4, 0x05, 0xd4, 0x05, 0xd4, 0x05, 0xd4, 0x05, 0xd4, 0xb5, 0x89, 0xba, 0xd4, 0xd4, + 0xff, 0xdd, 0x68, 0x19, 0x28, 0x0c, 0x28, 0x0c, 0x28, 0x0c, 0x28, 0x0c, 0x28, 0x0c, 0x28, 0x0c, + 0x28, 0x0c, 0x28, 0xac, 0x6a, 0x28, 0xec, 0x48, 0xe3, 0x9c, 0xcf, 0x5f, 0x0c, 0x25, 0x27, 0xca, + 0xdb, 0x2c, 0x7e, 0x12, 0x84, 0x5c, 0xb0, 0xf1, 0xdc, 0x62, 0x5e, 0x5e, 0xa8, 0x47, 0x5e, 0xec, + 0x84, 0xa8, 0xc8, 0x49, 0x0e, 0x03, 0x85, 0xd7, 0xad, 0x6b, 0x45, 0xf5, 0x33, 0xae, 0xa8, 0x4b, + 0xdf, 0x0f, 0xe4, 0xe4, 0x8d, 0xe6, 0x72, 0x1c, 0xf5, 0xc8, 0x1e, 0xf2, 0x11, 0x0b, 0x99, 0x1c, + 0x8e, 0x9f, 0xfe, 0x24, 0x08, 0xb9, 0x6f, 0x4f, 0x38, 0x87, 0xe5, 0x8e, 0xd1, 0xd6, 0x80, 0xd9, + 0x3c, 0x3a, 0xd9, 0xf6, 0xf1, 0x24, 0x8a, 0x6f, 0x97, 0xfe, 0xbe, 0xfc, 0xdb, 0x49, 0x24, 0x99, + 0xe4, 0x27, 0x09, 0x60, 0xcb, 0x43, 0xa5, 0xea, 0x91, 0x14, 0xb1, 0x2d, 0xfd, 0x04, 0x02, 0x5e, + 0xcf, 0x7a, 0xf8, 0xfa, 0x61, 0xa9, 0xbb, 0xaf, 0x2f, 0x67, 0x1d, 0x1d, 0xe9, 0x19, 0xb7, 0x0c, + 0x0b, 0xab, 0xee, 0xf0, 0xc8, 0x16, 0x6e, 0x98, 0x6b, 0xc0, 0xe6, 0x50, 0x78, 0xb9, 0xb1, 0x8c, + 0xf3, 0x27, 0x1f, 0x38, 0xc8, 0xcd, 0x4b, 0x29, 0xf8, 0x28, 0x19, 0x0f, 0xa5, 0xe2, 0x9f, 0xe4, + 0xbc, 0x93, 0x9c, 0x6f, 0x52, 0xf2, 0x4c, 0xbd, 0x08, 0x22, 0x37, 0x9f, 0x9c, 0xcf, 0x96, 0x48, + 0x0a, 0xd7, 0xbf, 0xcb, 0x33, 0x5d, 0x92, 0xb5, 0xd3, 0x3c, 0x2b, 0xb1, 0xbd, 0xe1, 0x3e, 0xbb, + 0xf5, 0xb8, 0x93, 0xdf, 0xd6, 0xcc, 0x1a, 0xca, 0x38, 0x6e, 0x57, 0x7c, 0xc0, 0x62, 0x6f, 0x32, + 0xdf, 0xc6, 0xd3, 0x17, 0xe6, 0x0a, 0xe6, 0x0a, 0xe6, 0x2a, 0xcd, 0x6c, 0xb9, 0x0d, 0x02, 0x8f, + 0x33, 0x9f, 0xc2, 0x5e, 0x35, 0x4b, 0x6c, 0xaf, 0xdc, 0x81, 0xeb, 0x3b, 0xfc, 0x21, 0xbf, 0xbd, + 0x9a, 0x35, 0x04, 0x43, 0x03, 0x43, 0x03, 0x43, 0x93, 0x62, 0xb6, 0xc4, 0xae, 0x2f, 0xdb, 0x2d, + 0x02, 0x3b, 0x73, 0x9a, 0xa3, 0x09, 0x1a, 0x31, 0x9d, 0x20, 0xea, 0x40, 0x29, 0x9e, 0x13, 0x2b, + 0xb1, 0xd4, 0x62, 0xb9, 0x0a, 0x99, 0x95, 0x40, 0x1c, 0x27, 0x15, 0xc5, 0x55, 0x0d, 0x41, 0xa7, + 0x75, 0xde, 0x39, 0xef, 0x9d, 0xb6, 0xce, 0xbb, 0x25, 0x1e, 0x8b, 0x82, 0x24, 0xe6, 0xfe, 0x81, + 0x4b, 0xcc, 0xf4, 0xf5, 0xb5, 0x21, 0x35, 0xef, 0xf1, 0xda, 0xa1, 0xec, 0xe3, 0x75, 0x13, 0xbf, + 0xee, 0x23, 0x3d, 0xe6, 0x2f, 0x13, 0x6f, 0x22, 0x62, 0x4d, 0x79, 0x38, 0xd3, 0x92, 0xc6, 0xd3, + 0x00, 0xef, 0x02, 0xef, 0x02, 0xef, 0x02, 0xef, 0x02, 0xef, 0x02, 0xef, 0x02, 0xef, 0x32, 0x89, + 0x77, 0x69, 0x81, 0x2b, 0xd3, 0xf3, 0x25, 0x87, 0x89, 0xb5, 0xc9, 0x09, 0x5a, 0x96, 0x1b, 0x03, + 0xec, 0x00, 0xec, 0x00, 0xec, 0x48, 0x31, 0x5b, 0x68, 0x4e, 0x93, 0x24, 0x48, 0xa4, 0xa6, 0x3e, + 0x3d, 0x12, 0x58, 0x06, 0x58, 0xc6, 0x28, 0x2c, 0xa3, 0x2e, 0x91, 0x1a, 0xa8, 0x06, 0x6a, 0xb2, + 0x89, 0x7a, 0x1b, 0xe4, 0x4d, 0xbc, 0x6e, 0xa8, 0xc9, 0x39, 0xcd, 0x5f, 0x26, 0x7a, 0x16, 0xdc, + 0xb9, 0x36, 0xf3, 0x08, 0xa8, 0x59, 0xd2, 0x10, 0x68, 0x19, 0x68, 0x19, 0x68, 0x59, 0x8a, 0xd9, + 0x52, 0x7c, 0xba, 0x1f, 0x10, 0x13, 0x5c, 0x38, 0x5c, 0x38, 0x5e, 0x37, 0x10, 0xd3, 0x3e, 0x4f, + 0x98, 0x6c, 0x4d, 0xcb, 0x09, 0x97, 0x26, 0xad, 0x00, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0xa5, 0x98, + 0x2d, 0x85, 0xef, 0xe4, 0x02, 0x54, 0x82, 0xef, 0x86, 0xef, 0x36, 0xd6, 0x77, 0x8f, 0x5f, 0xbf, + 0x15, 0x49, 0x26, 0xe3, 0x28, 0xbf, 0x0b, 0x5f, 0x6e, 0x0c, 0x9e, 0x1c, 0x9e, 0x1c, 0x9e, 0x3c, + 0xc5, 0x6c, 0xe1, 0x7e, 0x3c, 0x4a, 0x4c, 0x21, 0x85, 0x3b, 0xef, 0xe4, 0x68, 0xe3, 0x95, 0x1f, + 0x8f, 0xc6, 0x0f, 0xf5, 0x04, 0x48, 0x00, 0x48, 0x00, 0x48, 0x80, 0xd7, 0x0d, 0x04, 0xa6, 0xa2, + 0x9f, 0x94, 0x93, 0x20, 0x6f, 0xbd, 0x23, 0x85, 0x75, 0x8e, 0xd2, 0x8d, 0xcc, 0xfe, 0x6f, 0x29, + 0xc5, 0x1b, 0xaa, 0xdf, 0x7b, 0x2c, 0xfd, 0x7b, 0x99, 0x7b, 0xdf, 0xc9, 0xd5, 0x29, 0xc7, 0x63, + 0xe6, 0x6a, 0x53, 0x5e, 0x96, 0x15, 0xa3, 0xe6, 0xc1, 0xa6, 0xcb, 0x98, 0x34, 0xc3, 0xa3, 0x52, + 0xa0, 0x51, 0x32, 0x14, 0x4a, 0x86, 0x3e, 0xd7, 0x51, 0xe7, 0xe4, 0xc5, 0x94, 0x6c, 0xcd, 0x5f, + 0xb9, 0x22, 0xdb, 0x80, 0xdb, 0xb3, 0x59, 0x96, 0x93, 0xd3, 0x25, 0xed, 0xe4, 0xa3, 0x73, 0xcd, + 0x8a, 0xd0, 0xb9, 0x8c, 0x4b, 0x07, 0x84, 0x2e, 0xdb, 0xd2, 0x2a, 0x86, 0xd2, 0x65, 0x5d, 0x72, + 0x2b, 0x9e, 0xc8, 0x72, 0x1d, 0xba, 0xc2, 0xec, 0xb3, 0x06, 0x51, 0x8f, 0x5d, 0xc3, 0x22, 0xa5, + 0x5e, 0xac, 0xca, 0x16, 0xad, 0xb2, 0xc5, 0xab, 0x66, 0x11, 0xe7, 0x5b, 0xcc, 0x04, 0xc4, 0xa9, + 0xa6, 0xa6, 0x26, 0x7b, 0xec, 0xe7, 0x53, 0x6c, 0x36, 0x7c, 0xe5, 0x39, 0x41, 0x5b, 0xc9, 0x63, + 0x96, 0xae, 0x1e, 0x3b, 0xad, 0x45, 0xdb, 0xf6, 0xfa, 0x7a, 0x84, 0x4d, 0xd2, 0x96, 0xb5, 0xa7, + 0x7f, 0x9d, 0xf3, 0x1b, 0x55, 0x51, 0xe6, 0x9e, 0xd8, 0x6d, 0xec, 0x6c, 0x7e, 0xbe, 0x05, 0x40, + 0x51, 0xfb, 0x0a, 0x0b, 0xa8, 0x13, 0x19, 0xa5, 0xed, 0x43, 0xaa, 0xa0, 0x1c, 0xbe, 0xee, 0x21, + 0xed, 0x34, 0xce, 0x3b, 0x06, 0x8f, 0xea, 0x51, 0x39, 0x5b, 0xeb, 0x1f, 0x95, 0x68, 0xce, 0x2a, + 0xf0, 0x0d, 0xff, 0x75, 0xfd, 0xff, 0xaa, 0xf1, 0x0d, 0xcd, 0x33, 0xc2, 0x36, 0x6f, 0x98, 0x94, + 0x5c, 0xf8, 0xe4, 0xee, 0xa1, 0xfe, 0x9f, 0x67, 0x9d, 0xc6, 0xf9, 0xe7, 0x86, 0xd5, 0xe9, 0xff, + 0xe8, 0x34, 0x3e, 0x37, 0xac, 0xb3, 0xfe, 0xe7, 0x86, 0x75, 0xde, 0xff, 0xf1, 0xb9, 0x69, 0xb5, + 0xa7, 0x1f, 0xff, 0x6e, 0x3f, 0x8d, 0x7f, 0x3b, 0x4f, 0x7e, 0x6b, 0x3e, 0x6f, 0x25, 0xbf, 0x1f, + 0x7f, 0xf9, 0xf2, 0xe2, 0x59, 0x8e, 0xcb, 0x7f, 0x7c, 0xf9, 0xf2, 0x3f, 0xc7, 0xff, 0xa8, 0x97, + 0x6d, 0xaa, 0xe2, 0x84, 0x89, 0xfd, 0xe0, 0x7a, 0x99, 0xeb, 0xe1, 0x8f, 0x11, 0xdf, 0x49, 0x22, + 0x26, 0x95, 0xb9, 0x66, 0xf4, 0x9d, 0xe0, 0x51, 0x64, 0x8d, 0x58, 0x18, 0xba, 0x3e, 0x81, 0x7c, + 0xb6, 0xd6, 0x1e, 0x64, 0x34, 0xc8, 0x68, 0x90, 0xd1, 0xf6, 0x6b, 0x20, 0xa7, 0x82, 0xbd, 0x31, + 0xf1, 0x72, 0x29, 0xd9, 0x44, 0x4b, 0x11, 0x22, 0x1a, 0x44, 0x34, 0xf3, 0x45, 0xb4, 0xbc, 0x4b, + 0x7b, 0xde, 0x90, 0x0c, 0x09, 0x64, 0xf2, 0x8d, 0xe9, 0x3b, 0x69, 0xf5, 0x79, 0x29, 0xeb, 0x1d, + 0x50, 0x2d, 0x7b, 0x15, 0xcb, 0x5f, 0xa1, 0x19, 0x50, 0x65, 0x0e, 0x94, 0x9b, 0x05, 0xe5, 0xe6, + 0x41, 0xad, 0x99, 0xa0, 0x15, 0x1f, 0x88, 0x24, 0x03, 0x3a, 0x0d, 0x7e, 0x63, 0xc6, 0xba, 0x0e, + 0xf7, 0xa5, 0x2b, 0x1f, 0x05, 0x1f, 0xa8, 0x90, 0x0f, 0x08, 0xcf, 0x76, 0xac, 0x5f, 0x27, 0xb7, + 0xfa, 0x1b, 0x8b, 0x14, 0xac, 0x87, 0xd9, 0x0b, 0xf9, 0x78, 0x73, 0x7d, 0xf5, 0xf5, 0xe3, 0xbf, + 0x6f, 0x5e, 0x7d, 0xa8, 0xab, 0x38, 0x02, 0x33, 0x22, 0x57, 0x3f, 0x6a, 0x4a, 0x04, 0xf2, 0xcd, + 0x77, 0xd2, 0xf8, 0xeb, 0xbc, 0xd5, 0x68, 0xd4, 0x4d, 0x90, 0x82, 0x35, 0xbd, 0x8e, 0x26, 0x5e, + 0xc7, 0xd2, 0xeb, 0x38, 0xc3, 0xeb, 0x58, 0xbc, 0x8e, 0xcb, 0x3f, 0xfe, 0x8d, 0x77, 0xb1, 0x98, + 0x1a, 0x67, 0x97, 0x67, 0xf5, 0x92, 0x47, 0x1b, 0xfa, 0x95, 0x3b, 0x24, 0x98, 0xa2, 0x12, 0x1a, + 0x55, 0x62, 0xce, 0xc6, 0xcc, 0xa0, 0x0d, 0x67, 0x83, 0x74, 0x80, 0x74, 0x80, 0x74, 0x18, 0x43, + 0x3a, 0x90, 0xcb, 0x42, 0x3a, 0x27, 0x91, 0xcb, 0xb2, 0xbb, 0x7d, 0xe4, 0xb2, 0x14, 0x36, 0xa4, + 0xc8, 0x65, 0x51, 0xd1, 0x5a, 0xbf, 0x6a, 0xe8, 0x32, 0x92, 0xcc, 0xfe, 0x66, 0x4d, 0xc7, 0x53, + 0x11, 0xce, 0x5c, 0xe9, 0x02, 0x88, 0x13, 0x88, 0x13, 0x88, 0xf3, 0x10, 0x11, 0xa7, 0x02, 0x33, + 0x50, 0x23, 0x2a, 0x20, 0xb0, 0xd1, 0x66, 0xbe, 0x82, 0x02, 0x0a, 0xcc, 0x7d, 0xa1, 0xe1, 0x53, + 0xa2, 0x3c, 0xad, 0x79, 0x7b, 0xea, 0xf2, 0xb5, 0x56, 0xb3, 0x97, 0x72, 0xa5, 0x6f, 0xe5, 0x7f, + 0xf5, 0x39, 0x5e, 0x7b, 0x7d, 0xba, 0x4b, 0x99, 0x2c, 0x95, 0x64, 0xda, 0x5c, 0xc9, 0x32, 0x49, + 0x5a, 0xc8, 0x24, 0x29, 0x83, 0x2f, 0x45, 0x26, 0x49, 0x8a, 0x47, 0x42, 0x26, 0x09, 0x20, 0x36, + 0x20, 0x36, 0x20, 0x76, 0xe9, 0x20, 0x36, 0x32, 0x49, 0xd6, 0x5e, 0x08, 0x32, 0x49, 0x76, 0xbc, + 0x13, 0x64, 0x92, 0x20, 0x93, 0xe4, 0x67, 0xaf, 0x03, 0x99, 0x24, 0xc8, 0x24, 0xd9, 0x35, 0x35, + 0x90, 0x49, 0x52, 0x84, 0xf8, 0x83, 0x4c, 0x12, 0x90, 0x0e, 0x90, 0x0e, 0x90, 0x8e, 0xd2, 0x91, + 0x0e, 0x64, 0x92, 0x90, 0xce, 0x49, 0x64, 0x92, 0xec, 0x6e, 0x1f, 0x99, 0x24, 0x85, 0x0d, 0x29, + 0x32, 0x49, 0x54, 0xb4, 0x86, 0x4c, 0x92, 0xf4, 0xae, 0x06, 0x99, 0x24, 0x40, 0x9c, 0x40, 0x9c, + 0x07, 0x8f, 0x38, 0x91, 0x49, 0x52, 0x54, 0x0b, 0x07, 0x9b, 0x49, 0x92, 0xa1, 0x6a, 0x3c, 0xdd, + 0x9b, 0x47, 0x55, 0xa6, 0x9f, 0x8d, 0x4d, 0x3d, 0x57, 0x9a, 0x8d, 0x88, 0x6d, 0x99, 0x9c, 0x07, + 0x59, 0xbf, 0x9e, 0x75, 0xf3, 0xf5, 0xc3, 0x52, 0x9f, 0x5f, 0x3f, 0x79, 0xcc, 0xff, 0xfa, 0x6a, + 0xd2, 0xe7, 0xdb, 0xa4, 0xcb, 0x12, 0x17, 0x84, 0x72, 0x7d, 0xe2, 0x8a, 0x50, 0xeb, 0x0d, 0xa2, + 0x24, 0x14, 0x4a, 0x42, 0x15, 0x86, 0x7b, 0x50, 0x12, 0x0a, 0x25, 0xa1, 0x34, 0x53, 0x1b, 0x24, + 0xf2, 0x21, 0x91, 0xef, 0x27, 0x0d, 0x21, 0x91, 0x0f, 0x0a, 0x07, 0x14, 0x0e, 0x28, 0x1c, 0x54, + 0x33, 0x16, 0x89, 0x7c, 0x6b, 0x2f, 0x04, 0x89, 0x7c, 0x3b, 0xde, 0x09, 0x12, 0xf9, 0x90, 0xc8, + 0xf7, 0xb3, 0xd7, 0x81, 0x44, 0x3e, 0x24, 0xf2, 0xed, 0x9a, 0x1a, 0x48, 0xe4, 0x2b, 0xa0, 0x15, + 0x24, 0xf2, 0x81, 0x74, 0x80, 0x74, 0x80, 0x74, 0x94, 0x8f, 0x74, 0x20, 0x91, 0x8f, 0x74, 0x4e, + 0x22, 0x91, 0x6f, 0x77, 0xfb, 0x48, 0xe4, 0x2b, 0x6c, 0x48, 0x91, 0xc8, 0xa7, 0xa2, 0x35, 0x24, + 0xf2, 0xa5, 0x77, 0x35, 0x48, 0xe4, 0x03, 0xe2, 0x04, 0xe2, 0x3c, 0x78, 0xc4, 0x89, 0x44, 0xbe, + 0xa2, 0x5a, 0x38, 0x9c, 0x44, 0xbe, 0xb5, 0xf4, 0x25, 0xd4, 0x84, 0x42, 0x4d, 0xa8, 0xc2, 0x9c, + 0x2b, 0x52, 0x49, 0x90, 0x4a, 0xf2, 0x93, 0x86, 0x90, 0x4a, 0x02, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, + 0x4d, 0x35, 0x63, 0x91, 0x4a, 0xb2, 0xf6, 0x42, 0x90, 0x4a, 0xb2, 0xe3, 0x9d, 0x20, 0x95, 0x04, + 0xa9, 0x24, 0x3f, 0x7b, 0x1d, 0x48, 0x25, 0x41, 0x2a, 0xc9, 0xae, 0xa9, 0x81, 0x54, 0x92, 0x22, + 0xd4, 0x1f, 0xa4, 0x92, 0x80, 0x74, 0x80, 0x74, 0x80, 0x74, 0x94, 0x8e, 0x74, 0x20, 0x95, 0x84, + 0x74, 0x4e, 0x22, 0x95, 0x64, 0x77, 0xfb, 0x48, 0x25, 0x29, 0x6c, 0x48, 0x91, 0x4a, 0xa2, 0xa2, + 0x35, 0xa4, 0x92, 0xa4, 0x77, 0x35, 0x48, 0x25, 0x01, 0xe2, 0x04, 0xe2, 0x3c, 0x78, 0xc4, 0x89, + 0x54, 0x92, 0xa2, 0x5a, 0x38, 0xdc, 0x54, 0x12, 0x14, 0x85, 0x2a, 0xef, 0xe0, 0xe8, 0xa9, 0x0a, + 0x75, 0xed, 0x9b, 0x52, 0x16, 0x6a, 0xc4, 0xa4, 0x3d, 0xcc, 0x5f, 0x0c, 0x6a, 0xda, 0x0c, 0x4a, + 0x40, 0xa1, 0x04, 0x54, 0x61, 0x30, 0xc7, 0xb0, 0x12, 0x50, 0x4e, 0x10, 0xdf, 0x7a, 0xdc, 0x92, + 0xec, 0xee, 0x8e, 0x3b, 0x74, 0xd9, 0x7b, 0xab, 0xcd, 0xa2, 0x20, 0x94, 0x46, 0x5e, 0x83, 0x2c, + 0x3e, 0x64, 0xf1, 0xfd, 0xa4, 0x21, 0xa2, 0x9a, 0x6f, 0x1b, 0x13, 0x98, 0xa4, 0xf6, 0x1b, 0xf1, + 0x92, 0x87, 0xc4, 0x01, 0x89, 0x03, 0x12, 0x07, 0xb5, 0x09, 0x99, 0x37, 0xe8, 0xfa, 0x3e, 0x17, + 0x16, 0x75, 0x9c, 0x7e, 0x63, 0x3d, 0xac, 0x76, 0x43, 0x3c, 0xfe, 0x6a, 0x02, 0x12, 0xe4, 0x06, + 0x47, 0xa5, 0xe1, 0xd1, 0x60, 0x80, 0x54, 0x1b, 0x22, 0x6d, 0x06, 0x49, 0x9b, 0x61, 0xd2, 0x63, + 0xa0, 0x68, 0x0d, 0x15, 0xb1, 0xc1, 0x9a, 0xbf, 0x02, 0x72, 0x6d, 0x76, 0x63, 0xc6, 0xab, 0x31, + 0x2e, 0x35, 0x35, 0xd9, 0x01, 0xf3, 0xa6, 0xd5, 0x64, 0x09, 0xcc, 0x7e, 0xd4, 0xac, 0xd0, 0x9a, + 0xea, 0xac, 0x01, 0xc5, 0x96, 0x7d, 0xa3, 0x1b, 0xc5, 0x59, 0x04, 0xf3, 0x7e, 0x34, 0xc4, 0x9d, + 0x15, 0xad, 0xdf, 0xd5, 0xa1, 0x57, 0x98, 0x5d, 0x50, 0xd4, 0xd0, 0xab, 0xcb, 0x36, 0x28, 0x64, + 0xf4, 0x8f, 0xcc, 0x68, 0xb5, 0x5f, 0xd2, 0x2c, 0x09, 0xc2, 0xd5, 0x53, 0x0f, 0x62, 0xa9, 0x03, + 0x61, 0xaf, 0x76, 0x03, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, + 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x5d, 0x2e, 0x84, 0x5d, 0x2a, 0x59, 0x9d, 0x38, 0x41, + 0x6c, 0xde, 0xae, 0xba, 0x5c, 0xa4, 0x49, 0x96, 0xcc, 0xc9, 0x4a, 0x88, 0x9e, 0xa4, 0xee, 0x10, + 0xdd, 0xf8, 0x50, 0x64, 0x78, 0xd3, 0xd4, 0x23, 0xda, 0x00, 0x32, 0x14, 0x75, 0x89, 0xd6, 0xcd, + 0x28, 0x79, 0x98, 0xb3, 0x85, 0x30, 0xa7, 0x49, 0x9c, 0x07, 0x61, 0x4e, 0x84, 0x39, 0x11, 0xe6, + 0x84, 0x08, 0x03, 0x11, 0x06, 0x22, 0x0c, 0x44, 0x18, 0x88, 0x30, 0x10, 0x61, 0x20, 0xc2, 0x40, + 0x84, 0x81, 0x08, 0x53, 0x43, 0x98, 0x93, 0x14, 0xf0, 0x21, 0xcc, 0x09, 0x84, 0x0d, 0x84, 0x0d, + 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0x84, 0x8d, 0x30, 0xe7, + 0x9e, 0xf0, 0xa1, 0x12, 0x61, 0x4e, 0x82, 0x9a, 0x18, 0x74, 0xc3, 0x83, 0xc2, 0x26, 0x99, 0x07, + 0xb2, 0x4e, 0x12, 0x20, 0xde, 0xb7, 0x8e, 0xc6, 0xdb, 0xf1, 0x0d, 0x7c, 0xbd, 0x9a, 0xdc, 0xc0, + 0xc7, 0x69, 0xff, 0x06, 0x1e, 0xd0, 0xb3, 0xf2, 0x02, 0xad, 0x69, 0xb8, 0xc9, 0x73, 0x23, 0xa9, + 0x68, 0xd7, 0xff, 0x72, 0x0f, 0x28, 0x00, 0xa0, 0x91, 0x2b, 0xa3, 0x00, 0x00, 0x0a, 0x00, 0xfc, + 0xa4, 0x21, 0x14, 0x00, 0x28, 0xa9, 0x7c, 0x86, 0xcc, 0x98, 0x02, 0xe4, 0x31, 0x64, 0xc6, 0xe4, + 0x68, 0x70, 0x25, 0x65, 0x25, 0xd2, 0x94, 0x1a, 0x13, 0x41, 0xb9, 0x87, 0x72, 0x5f, 0xa0, 0x49, + 0xd2, 0x66, 0x9a, 0xf4, 0x98, 0x28, 0x35, 0xba, 0x0a, 0x94, 0xfb, 0x4d, 0x03, 0x03, 0xe5, 0x7e, + 0xe9, 0xc6, 0xa1, 0xdc, 0xa7, 0xef, 0x07, 0xca, 0x7d, 0x69, 0x87, 0x1e, 0xca, 0x7d, 0x11, 0xad, + 0xf6, 0x4b, 0xed, 0xb3, 0xde, 0xb8, 0x91, 0xbc, 0x94, 0x52, 0xa8, 0xf1, 0x5b, 0x6f, 0x5d, 0xff, + 0x95, 0xc7, 0xc7, 0xb0, 0x60, 0x3c, 0x17, 0xfc, 0xd8, 0xf3, 0xd4, 0x9c, 0x05, 0xa2, 0xbe, 0x93, + 0x77, 0xc2, 0xe1, 0x82, 0x3b, 0xbf, 0x3d, 0x26, 0x5d, 0x20, 0xe1, 0x89, 0x0c, 0xc5, 0x23, 0xe1, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, 0x09, 0xb4, - 0x09, 0xb4, 0x09, 0x81, 0xec, 0x94, 0xed, 0x16, 0x16, 0xc8, 0x46, 0x11, 0x0f, 0x5d, 0x63, 0x5b, - 0xd8, 0x98, 0x16, 0x5d, 0xcf, 0xe3, 0x7a, 0x70, 0x27, 0xef, 0x06, 0x37, 0xb2, 0x23, 0x85, 0x3d, - 0x46, 0x8c, 0x59, 0x8e, 0xe1, 0xa1, 0xc6, 0xfa, 0x1e, 0xf3, 0x1d, 0xa1, 0xcc, 0x87, 0x41, 0x62, - 0x8d, 0x32, 0x1f, 0x28, 0xf3, 0xf1, 0x93, 0x86, 0x50, 0xe6, 0xa3, 0xa4, 0x5a, 0x1b, 0xb2, 0xa3, - 0x0a, 0xd0, 0xd2, 0x90, 0x1d, 0x95, 0xa3, 0xc1, 0x91, 0xa3, 0xef, 0xfa, 0x0f, 0x5d, 0x53, 0xa7, - 0xe0, 0x2c, 0xf4, 0x05, 0xb9, 0x1f, 0x72, 0x7f, 0x71, 0xa6, 0xc9, 0x98, 0x89, 0x32, 0x63, 0xaa, - 0xf4, 0x88, 0x31, 0x90, 0xfb, 0x57, 0x0d, 0x0c, 0xe4, 0xfe, 0xb9, 0x1b, 0x87, 0xdc, 0x9f, 0xbe, - 0x1f, 0xc8, 0xfd, 0xa5, 0x1d, 0x7a, 0xc8, 0xfd, 0x45, 0xb4, 0xba, 0x0f, 0x47, 0xe1, 0x8c, 0x25, - 0xd1, 0xf0, 0xbb, 0x29, 0xa8, 0x3d, 0xdf, 0x15, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, - 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0x90, 0xf6, 0xce, 0x22, 0xed, 0x51, - 0xe0, 0xda, 0x8c, 0xaa, 0xbd, 0xa6, 0x2f, 0x60, 0x6d, 0x60, 0x6d, 0x60, 0x6d, 0x60, 0x6d, 0x60, - 0x6d, 0x60, 0x6d, 0x60, 0x6d, 0x60, 0x6d, 0x60, 0x6d, 0x60, 0xed, 0x1d, 0xc7, 0xda, 0x46, 0x54, - 0xed, 0xd5, 0xae, 0x80, 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0x81, - 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0x81, 0xb4, 0xcb, 0x85, 0xb4, 0xb1, 0x5d, 0x54, 0xd3, 0xd6, 0xc2, - 0xb9, 0xcd, 0x69, 0x28, 0x7f, 0xbc, 0x2d, 0xb4, 0x41, 0xf9, 0xe3, 0xd2, 0xb2, 0x22, 0x6c, 0xf0, - 0xf9, 0xff, 0xd9, 0x7b, 0xf3, 0xde, 0xc6, 0x91, 0x64, 0x7b, 0xf4, 0x7f, 0x7f, 0x0a, 0x41, 0x98, - 0x1f, 0x60, 0xdf, 0x5b, 0x2c, 0x5b, 0xb2, 0xbc, 0x02, 0x17, 0x03, 0x95, 0xad, 0xee, 0xd6, 0x1b, - 0x79, 0x79, 0xb6, 0xab, 0x67, 0xfa, 0xb9, 0x34, 0x02, 0x2d, 0xa5, 0x5d, 0xfc, 0x35, 0x4d, 0x69, - 0x48, 0xaa, 0xba, 0x7c, 0xab, 0xf4, 0xdd, 0x1f, 0xb4, 0x51, 0xbb, 0xc5, 0xcc, 0x8c, 0x48, 0x92, - 0xd2, 0x31, 0x1a, 0x5d, 0x5e, 0xc4, 0x24, 0x99, 0x99, 0x71, 0xe2, 0xc4, 0x92, 0x11, 0xc9, 0x58, - 0x3d, 0x38, 0xe0, 0x43, 0x26, 0x14, 0x38, 0xe0, 0x03, 0x07, 0x0d, 0x1c, 0x34, 0x70, 0xd0, 0xc0, - 0x41, 0x03, 0x07, 0x0d, 0x1c, 0x34, 0x70, 0xd0, 0xc0, 0x41, 0x03, 0x07, 0x4d, 0xea, 0x1d, 0x34, - 0x38, 0xe0, 0x03, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, - 0x0d, 0xa6, 0x0d, 0xa6, 0x0d, 0xa6, 0x9d, 0x72, 0xa6, 0x8d, 0x03, 0x3e, 0xe0, 0xda, 0xe0, 0xda, - 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, 0xe0, 0xda, - 0x9c, 0x5c, 0x1b, 0x07, 0x7c, 0xc0, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, - 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0x71, 0xc0, 0xc7, 0xcc, 0x01, 0x1f, 0xb4, - 0x85, 0xe3, 0x5a, 0xe2, 0xa4, 0x97, 0x36, 0x15, 0xdd, 0xe1, 0x6e, 0xfa, 0xcf, 0x33, 0xe4, 0x57, - 0x1b, 0xd2, 0x23, 0xce, 0x40, 0x77, 0x38, 0xf4, 0x85, 0x33, 0x6e, 0x60, 0xa3, 0x2f, 0x1c, 0xfa, - 0xc2, 0xbd, 0x33, 0x10, 0xfa, 0xc2, 0xa5, 0xd4, 0xe7, 0x86, 0x63, 0xa3, 0x09, 0xf8, 0xd4, 0x70, - 0x6c, 0x54, 0x63, 0x40, 0x1c, 0x1b, 0x4d, 0x00, 0x7a, 0x38, 0x21, 0xc8, 0x00, 0x14, 0x71, 0x43, - 0x92, 0x31, 0x68, 0x32, 0x06, 0x51, 0x66, 0xa0, 0x8a, 0xc7, 0x29, 0x03, 0xb7, 0xff, 0x22, 0xc0, - 0xc0, 0xed, 0x3f, 0xf5, 0xe0, 0x70, 0xfb, 0xcb, 0xdf, 0x07, 0x6e, 0xff, 0xd4, 0x2e, 0x3d, 0xdc, - 0xfe, 0x49, 0x8c, 0x8a, 0x63, 0xa3, 0x0c, 0x54, 0x1b, 0x09, 0x36, 0x60, 0xda, 0x60, 0xda, 0x60, - 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x5b, 0x94, 0xca, - 0x6e, 0x28, 0x8d, 0x1d, 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x1b, - 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x1b, 0x0c, 0x3b, 0xc5, 0x3a, 0xab, 0xe6, 0x04, 0x61, 0x39, 0x0c, - 0x7d, 0x1e, 0xbd, 0x75, 0xe5, 0x78, 0x15, 0x57, 0xf4, 0x69, 0x41, 0x7f, 0x2f, 0x78, 0x5d, 0xd7, - 0x65, 0x50, 0x2f, 0x57, 0xf6, 0x77, 0xfe, 0x9b, 0xdc, 0xf8, 0x2d, 0xe1, 0x8b, 0xd6, 0xa7, 0xb7, - 0xd1, 0x2d, 0x70, 0x2e, 0x21, 0x0e, 0x27, 0xdc, 0xa0, 0x73, 0x09, 0x68, 0x39, 0x22, 0xc5, 0x54, - 0xd1, 0x72, 0x24, 0xb5, 0x46, 0x2e, 0x72, 0x47, 0x93, 0x31, 0x62, 0x91, 0x3b, 0x4a, 0x26, 0x14, - 0xc8, 0x1d, 0x85, 0xbf, 0x0d, 0xfe, 0x36, 0xf8, 0xdb, 0xe0, 0x6f, 0x83, 0xbf, 0x0d, 0xfe, 0x36, - 0xf8, 0xdb, 0xe0, 0x6f, 0x83, 0xbf, 0x8d, 0xc9, 0xdf, 0x86, 0xdc, 0x51, 0xe4, 0x8e, 0x82, 0x69, - 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, - 0x6f, 0x0d, 0xd3, 0x46, 0xee, 0x28, 0x18, 0x36, 0x18, 0x36, 0x18, 0x36, 0x18, 0x36, 0x18, 0x36, - 0x18, 0x36, 0x18, 0x36, 0x18, 0x36, 0x18, 0x76, 0x66, 0x19, 0x36, 0x72, 0x47, 0x97, 0x88, 0x2a, - 0x72, 0x47, 0x49, 0x47, 0x42, 0xee, 0xe8, 0xaa, 0xdc, 0x51, 0x54, 0xb3, 0xe6, 0x5a, 0xdc, 0xe4, - 0x16, 0x35, 0x15, 0x75, 0xac, 0x37, 0xa4, 0x84, 0xf5, 0xa8, 0x0d, 0x94, 0x13, 0x84, 0x5c, 0x15, - 0xac, 0xa7, 0xee, 0x80, 0x02, 0xd6, 0x06, 0x5d, 0x24, 0x28, 0x60, 0x8d, 0x02, 0xd6, 0xef, 0x0c, - 0x84, 0x02, 0xd6, 0x14, 0x03, 0xe2, 0x10, 0x42, 0x0e, 0x87, 0x10, 0x32, 0x46, 0xf2, 0x99, 0x0e, - 0x21, 0x18, 0x4a, 0x8a, 0x42, 0xb8, 0x26, 0x87, 0x70, 0x4d, 0xe2, 0x80, 0x64, 0x0c, 0x98, 0xcc, - 0x00, 0x14, 0x8f, 0x33, 0x0d, 0xe1, 0x9a, 0x45, 0x80, 0x41, 0xb8, 0x66, 0xd6, 0xdb, 0x88, 0x70, - 0x8d, 0xe4, 0x7d, 0x10, 0xae, 0x49, 0xed, 0xd2, 0x23, 0x5c, 0x93, 0xc4, 0xa8, 0x5b, 0x97, 0x10, - 0x15, 0x18, 0xca, 0x88, 0x0a, 0xc0, 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xc1, - 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xc1, 0xb1, 0xd3, 0xa8, 0xb3, 0x90, 0x12, 0x15, 0xef, - 0x26, 0x48, 0x89, 0x52, 0xe1, 0x84, 0x1b, 0x91, 0x12, 0x35, 0x49, 0xc2, 0x40, 0x35, 0xbd, 0xb8, - 0x44, 0x15, 0xd5, 0xf4, 0x52, 0x6b, 0xe3, 0x22, 0x90, 0x9d, 0x8c, 0x0d, 0x8b, 0x40, 0x36, 0x85, - 0x3c, 0x20, 0x90, 0x0d, 0x27, 0x1b, 0x9c, 0x6c, 0x70, 0xb2, 0xc1, 0xc9, 0x06, 0x27, 0x1b, 0x9c, - 0x6c, 0x70, 0xb2, 0xc1, 0xc9, 0x06, 0x27, 0x1b, 0x02, 0xd9, 0xb4, 0x8c, 0x0f, 0x81, 0x6c, 0x70, - 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, - 0x6c, 0x04, 0xb2, 0x11, 0xc8, 0x36, 0x6a, 0x38, 0x21, 0x90, 0xcd, 0x19, 0xc8, 0x46, 0x69, 0x0f, - 0xae, 0xb5, 0x4d, 0x6c, 0x4d, 0x93, 0xae, 0xec, 0x71, 0xd3, 0x7f, 0x92, 0x3e, 0x0a, 0x6f, 0x4a, - 0x61, 0x0f, 0x7f, 0xc4, 0xf6, 0x19, 0x2b, 0x7b, 0x50, 0x94, 0x64, 0x41, 0x69, 0x8f, 0x44, 0x3d, - 0x22, 0x28, 0xed, 0x91, 0x06, 0x10, 0x47, 0x69, 0x8f, 0x34, 0x88, 0x3e, 0x07, 0x04, 0x30, 0x42, - 0x01, 0x17, 0x24, 0xb0, 0x43, 0x03, 0x3b, 0x44, 0xf0, 0x42, 0x45, 0x3a, 0x39, 0x3e, 0x32, 0xa2, - 0x8c, 0x39, 0x76, 0x10, 0xad, 0x31, 0x0b, 0x44, 0xc6, 0x00, 0xc9, 0x18, 0x30, 0x99, 0x01, 0x28, - 0x1e, 0x5f, 0x1a, 0xa2, 0x35, 0x8b, 0x00, 0x83, 0x68, 0xcd, 0xac, 0xb3, 0x11, 0xd1, 0x1a, 0xc9, - 0xfb, 0x20, 0x5a, 0x93, 0xda, 0xa5, 0x47, 0xb4, 0x26, 0x89, 0x51, 0xb7, 0x27, 0x23, 0xca, 0x4c, - 0x07, 0xff, 0x25, 0xf7, 0x02, 0xd7, 0x06, 0xd7, 0x06, 0xd7, 0x06, 0xd7, 0x06, 0xd7, 0x06, 0xd7, - 0x06, 0xd7, 0x06, 0xd7, 0x06, 0xd7, 0x06, 0xd7, 0xde, 0x70, 0xae, 0x6d, 0xa4, 0x83, 0xff, 0xe2, - 0xad, 0xc0, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, - 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xd3, 0xc5, 0xb4, 0x91, 0xae, 0xce, 0x94, 0xda, 0x3c, 0x6c, 0x45, - 0x89, 0xc2, 0x6b, 0x31, 0x49, 0x0d, 0x0a, 0xaf, 0xa5, 0xd6, 0x1e, 0x42, 0x9a, 0x61, 0x32, 0xf6, - 0x0e, 0xd2, 0x0c, 0x29, 0xe4, 0x01, 0x69, 0x86, 0x70, 0xc8, 0xc0, 0x21, 0x03, 0x87, 0x0c, 0x1c, - 0x32, 0x70, 0xc8, 0xc0, 0x21, 0x03, 0x87, 0x0c, 0x1c, 0x32, 0x70, 0xc8, 0x20, 0xcd, 0x90, 0x9e, - 0xf5, 0x21, 0xcd, 0x10, 0x5c, 0x1b, 0x5c, 0x1b, 0x5c, 0x1b, 0x5c, 0x1b, 0x5c, 0x1b, 0x5c, 0x1b, - 0x5c, 0x1b, 0x5c, 0x1b, 0x5c, 0x7b, 0xeb, 0xb8, 0x36, 0xd2, 0x0c, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, - 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0x91, - 0x66, 0xc8, 0x9d, 0x66, 0x88, 0xb2, 0xb8, 0x5c, 0x8b, 0x9b, 0xdc, 0xa2, 0xa6, 0xa2, 0x2e, 0xee, - 0x90, 0x4e, 0x65, 0xb0, 0x30, 0x6e, 0xe0, 0x78, 0x2f, 0xd1, 0xb4, 0xd2, 0x15, 0xc3, 0x9d, 0x1d, - 0x16, 0x05, 0x70, 0x0d, 0xda, 0xcd, 0x28, 0x80, 0x8b, 0x02, 0xb8, 0xef, 0x0c, 0x84, 0x02, 0xb8, - 0x29, 0x75, 0xa5, 0x21, 0x33, 0x3d, 0x01, 0x57, 0x19, 0x32, 0xd3, 0x35, 0x06, 0x64, 0xf7, 0xe0, - 0xc3, 0x6f, 0x9f, 0x83, 0xdf, 0x3e, 0x71, 0x10, 0x32, 0x06, 0x46, 0x66, 0x40, 0x89, 0xc7, 0xab, - 0x02, 0xbf, 0xfd, 0x22, 0xc0, 0xc0, 0x6f, 0x3f, 0xf5, 0xe0, 0xf0, 0xdb, 0xcb, 0xdf, 0x07, 0x7e, - 0xfb, 0xd4, 0x2e, 0x3d, 0xfc, 0xf6, 0x49, 0x8c, 0x0a, 0xbf, 0x7d, 0x2c, 0xfa, 0x90, 0x51, 0xbf, - 0xfd, 0x8c, 0xd3, 0x10, 0x25, 0x01, 0xe2, 0x12, 0x19, 0x94, 0x04, 0x80, 0xe3, 0x05, 0x8e, 0x17, - 0x38, 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, 0x8e, 0x17, 0x38, 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, - 0x8e, 0x17, 0x38, 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, 0x8e, 0x17, 0x38, 0x5e, 0x64, 0x1d, 0x2f, - 0x48, 0x92, 0xe4, 0x5a, 0x50, 0xb3, 0x0b, 0x99, 0x44, 0x62, 0xe4, 0xfd, 0xe0, 0x01, 0x86, 0x89, - 0x91, 0x99, 0x4f, 0x87, 0xb4, 0x5c, 0x27, 0x08, 0x99, 0x72, 0x22, 0x87, 0x63, 0x23, 0x31, 0xd2, - 0xa0, 0x7d, 0x8c, 0xc4, 0x48, 0x24, 0x46, 0xbe, 0x33, 0x10, 0x12, 0x23, 0x53, 0xea, 0x32, 0x83, - 0x7f, 0x3e, 0x01, 0x97, 0x18, 0xfc, 0xf3, 0x1a, 0x03, 0x8e, 0x3c, 0x5c, 0x01, 0xbb, 0x83, 0x3e, - 0x80, 0x87, 0x1e, 0x1e, 0xfa, 0x04, 0x61, 0xc8, 0x18, 0x1c, 0x99, 0x81, 0x25, 0x1e, 0xff, 0x09, - 0x3c, 0xf4, 0x8b, 0x00, 0x03, 0x0f, 0xfd, 0xd4, 0x83, 0xc3, 0x43, 0x2f, 0x7f, 0x1f, 0x78, 0xe8, - 0x53, 0xbb, 0xf4, 0xf0, 0xd0, 0x27, 0x31, 0x6a, 0x3d, 0xd5, 0x3a, 0xab, 0xe6, 0x04, 0x61, 0x39, - 0x0c, 0x7d, 0x1e, 0xbd, 0x75, 0xe5, 0x78, 0x15, 0x57, 0xf4, 0x69, 0x41, 0x7f, 0x2f, 0x78, 0x5d, - 0xd7, 0x65, 0x50, 0x2f, 0x57, 0xf6, 0x77, 0xfe, 0x9b, 0xdc, 0xf8, 0x2d, 0xe1, 0x8b, 0xd6, 0xa7, - 0xb7, 0xd1, 0x2d, 0x10, 0x76, 0x89, 0xc3, 0x09, 0x37, 0x21, 0xec, 0x32, 0x70, 0x08, 0x23, 0xe9, - 0x35, 0x2e, 0x45, 0x45, 0xd2, 0x2b, 0x9c, 0x6a, 0x70, 0xaa, 0xc1, 0xa9, 0x06, 0xa7, 0x1a, 0x9c, - 0x6a, 0x70, 0xaa, 0xc1, 0xa9, 0x06, 0xa7, 0x1a, 0x9c, 0x6a, 0x70, 0xaa, 0xc1, 0xa9, 0x06, 0xa7, - 0x1a, 0x9c, 0x6a, 0x70, 0xaa, 0xc1, 0xa9, 0x06, 0xa7, 0x1a, 0x9c, 0x6a, 0x63, 0xa7, 0x1a, 0x12, - 0x9a, 0xb9, 0x56, 0x35, 0x81, 0xd5, 0x4c, 0x3a, 0xab, 0xb9, 0x0f, 0xba, 0xd9, 0xcf, 0x6c, 0xf6, - 0x47, 0xb4, 0x9e, 0x25, 0xb5, 0x99, 0xa2, 0x2c, 0x2f, 0x72, 0x9b, 0x13, 0x75, 0x7a, 0x20, 0xb7, - 0x39, 0x0d, 0x68, 0x8d, 0xdc, 0xe6, 0x34, 0x88, 0x3e, 0x07, 0x04, 0x30, 0x42, 0x01, 0x17, 0x24, - 0xb0, 0x43, 0x03, 0x3b, 0x44, 0xf0, 0x42, 0x45, 0x3a, 0x69, 0x3c, 0x79, 0x18, 0xc6, 0x4c, 0x9b, - 0x64, 0x34, 0x48, 0x66, 0x85, 0x1d, 0x03, 0xf0, 0xc3, 0x0d, 0x43, 0xc6, 0xe0, 0xc8, 0x18, 0x2c, - 0x99, 0x81, 0x27, 0x1e, 0x67, 0x19, 0xc2, 0x31, 0x8b, 0x00, 0x83, 0x70, 0xcc, 0xac, 0x37, 0x11, - 0xe1, 0x18, 0xc9, 0xfb, 0x20, 0x1c, 0x93, 0xda, 0xa5, 0x47, 0x38, 0x26, 0x89, 0x51, 0xb7, 0xa1, - 0x41, 0xb2, 0x91, 0xd6, 0xc8, 0x68, 0x8a, 0x0c, 0x76, 0x0d, 0x76, 0x0d, 0x76, 0x0d, 0x76, 0x0d, - 0x76, 0x0d, 0x76, 0x0d, 0x76, 0x0d, 0x76, 0x0d, 0x76, 0x8d, 0x1a, 0x7f, 0xf1, 0xe8, 0xc3, 0x46, - 0xe4, 0xc5, 0x0c, 0xdb, 0x21, 0xe3, 0xb4, 0x59, 0x4c, 0x3a, 0x83, 0xd3, 0x66, 0xa9, 0xb5, 0x84, - 0x10, 0xe6, 0x4c, 0xc6, 0xd2, 0x41, 0x98, 0x93, 0x40, 0x1c, 0x10, 0xe6, 0x84, 0x23, 0x06, 0x8e, - 0x18, 0x38, 0x62, 0xe0, 0x88, 0x81, 0x23, 0x06, 0x8e, 0x18, 0x38, 0x62, 0xe0, 0x88, 0x81, 0x23, - 0x06, 0x61, 0x4e, 0x32, 0xe5, 0x87, 0x30, 0x27, 0xd8, 0x35, 0xd8, 0x35, 0xd8, 0x35, 0xd8, 0x35, - 0xd8, 0x35, 0xd8, 0x35, 0xd8, 0x35, 0xd8, 0x35, 0xd8, 0x35, 0xc2, 0x9c, 0xf1, 0xe8, 0xc3, 0x06, - 0x85, 0x39, 0x71, 0xfe, 0x9f, 0x6b, 0x59, 0x93, 0x58, 0xce, 0xa4, 0x0b, 0x00, 0x0c, 0xd9, 0x53, - 0x52, 0x15, 0x00, 0x76, 0x0c, 0xee, 0x1a, 0xaa, 0xdd, 0xc2, 0xbd, 0x4b, 0xf2, 0x3a, 0x65, 0x11, - 0xe4, 0x76, 0x82, 0xda, 0xba, 0xcb, 0xaf, 0x9a, 0xc2, 0x8a, 0x69, 0xe6, 0x3e, 0x90, 0xe4, 0x3a, - 0x68, 0xe6, 0x36, 0x68, 0xe7, 0x32, 0x50, 0xb8, 0x39, 0x08, 0xdd, 0x19, 0x54, 0x6e, 0x0b, 0x72, - 0xf7, 0x04, 0xb9, 0x1b, 0x82, 0xd6, 0xdd, 0x60, 0x16, 0xe5, 0x74, 0x73, 0x07, 0xf2, 0x54, 0x7e, - 0x4c, 0x62, 0xb7, 0x02, 0x91, 0x39, 0x83, 0x12, 0x2a, 0x29, 0xf3, 0x29, 0xa2, 0x84, 0x4a, 0x12, - 0x3e, 0xc0, 0x68, 0xc7, 0x75, 0xbd, 0x3e, 0x1f, 0x22, 0xd8, 0x6f, 0x63, 0x5d, 0x79, 0x46, 0x30, - 0xd6, 0xe8, 0x35, 0x69, 0x3c, 0x7a, 0x0c, 0x79, 0x7f, 0xf4, 0x8e, 0x52, 0x06, 0x07, 0x29, 0x93, - 0x63, 0x94, 0xa7, 0x36, 0x23, 0x63, 0x2c, 0x84, 0xd5, 0x0b, 0xc6, 0xed, 0xf8, 0x34, 0xe1, 0xf2, - 0xea, 0xf1, 0x54, 0xc2, 0xcc, 0xfc, 0x92, 0xf2, 0x39, 0x34, 0x8d, 0xac, 0x6a, 0x4a, 0x1d, 0x83, - 0xf5, 0x34, 0x39, 0x06, 0x19, 0x74, 0xc3, 0x7f, 0x1c, 0xef, 0x3f, 0x3c, 0xba, 0xa1, 0x70, 0x4a, - 0x38, 0xe6, 0xad, 0x1d, 0x86, 0xc2, 0xf7, 0xc8, 0xd5, 0x43, 0xfe, 0xdf, 0xbb, 0xa5, 0x83, 0xb3, - 0xc7, 0x03, 0xab, 0x54, 0xff, 0x59, 0x3a, 0x78, 0x3c, 0xb0, 0x4e, 0xeb, 0x8f, 0x07, 0xd6, 0x59, - 0xfd, 0xe7, 0x63, 0xc1, 0x3a, 0x1c, 0x7e, 0xfb, 0xe3, 0xb0, 0xd7, 0xff, 0xe9, 0x6c, 0xf4, 0x53, - 0xe1, 0x43, 0x71, 0xf4, 0xf3, 0xde, 0x97, 0x2f, 0x1f, 0x77, 0x35, 0x2e, 0xff, 0xf9, 0xe5, 0xcb, - 0x7f, 0xed, 0xfd, 0x2d, 0x9f, 0xb6, 0xad, 0xba, 0x93, 0xec, 0x73, 0xc0, 0x3d, 0x47, 0xe5, 0x9e, - 0xd3, 0xf0, 0xbc, 0x2b, 0xf8, 0xcc, 0x76, 0x18, 0x27, 0x5d, 0x77, 0xb2, 0xf9, 0x26, 0x39, 0xaf, - 0xe4, 0x2a, 0x8c, 0xe9, 0xf5, 0x94, 0x5b, 0xbb, 0xf8, 0x2b, 0x10, 0xef, 0x93, 0x31, 0xd7, 0xa8, - 0x6f, 0x69, 0xf7, 0xdf, 0xc3, 0xf1, 0x5a, 0x22, 0xae, 0x91, 0xad, 0x56, 0x3c, 0x5d, 0xab, 0x28, - 0xba, 0x56, 0xb1, 0x73, 0xb5, 0x22, 0xe6, 0x71, 0x27, 0xb0, 0xdc, 0x7d, 0xe9, 0x3f, 0x96, 0x68, - 0x49, 0x69, 0x37, 0x39, 0x29, 0x88, 0xf4, 0xfd, 0x7e, 0xbb, 0x69, 0x39, 0xcf, 0xe7, 0x53, 0x7b, - 0x7a, 0xee, 0x17, 0xa3, 0x9f, 0x67, 0xf7, 0xfd, 0xe2, 0xef, 0x24, 0x37, 0x7e, 0xfe, 0x52, 0x04, - 0x4d, 0xdf, 0xe9, 0x8c, 0x44, 0x38, 0x5f, 0x6e, 0xb5, 0x82, 0xdc, 0xef, 0xb5, 0xf2, 0x75, 0x2e, - 0x10, 0x61, 0xe8, 0x78, 0x2f, 0x41, 0x2e, 0x6c, 0xe7, 0x1c, 0xaf, 0xe5, 0x7c, 0x73, 0x5a, 0x5d, - 0xdb, 0xcd, 0xcd, 0xdc, 0x5f, 0xf6, 0x66, 0x6a, 0x8e, 0x70, 0x65, 0x5f, 0x9b, 0x8e, 0x6f, 0x8d, - 0xc0, 0x97, 0xa6, 0xeb, 0x3b, 0x23, 0xf3, 0x95, 0x91, 0xf9, 0xc6, 0x68, 0x7c, 0x61, 0xbc, 0x2a, - 0x49, 0xd5, 0x71, 0x3d, 0xf0, 0xc6, 0xe8, 0x07, 0x8a, 0x34, 0xfc, 0xae, 0xf3, 0xb2, 0x58, 0xf1, - 0x9a, 0x6e, 0x3b, 0x70, 0xbc, 0x97, 0x5c, 0xb3, 0xed, 0x85, 0xb6, 0xe3, 0x09, 0x3f, 0xf7, 0xdc, - 0xf6, 0x87, 0xe2, 0x19, 0x09, 0xa1, 0x15, 0x74, 0x44, 0xd3, 0x79, 0x76, 0x9a, 0x5f, 0xbc, 0x96, - 0x1d, 0xda, 0xb9, 0xb6, 0xa7, 0x25, 0xa3, 0x9a, 0xb2, 0xaa, 0x2d, 0xb3, 0x14, 0xb2, 0x4b, 0x28, - 0xc3, 0x54, 0xb2, 0x4c, 0x2e, 0xd3, 0xe4, 0xb2, 0x4d, 0x2b, 0xe3, 0x9a, 0xdc, 0x9f, 0x1b, 0x53, - 0x76, 0x18, 0xd0, 0x27, 0xdb, 0x8a, 0xbf, 0x7a, 0xfb, 0xad, 0x94, 0xb3, 0x5b, 0x2d, 0x5f, 0x04, - 0x41, 0xee, 0xd9, 0x7e, 0x75, 0xdc, 0xb7, 0xdc, 0x90, 0x8a, 0x77, 0xfd, 0x01, 0xc1, 0xef, 0x43, - 0xcf, 0x17, 0x6f, 0xeb, 0x74, 0xbf, 0xd3, 0x81, 0xe6, 0x5f, 0x82, 0x0a, 0x4e, 0x67, 0x63, 0xf4, - 0xbe, 0xd3, 0xf9, 0x56, 0xd2, 0xd7, 0xfb, 0x83, 0x51, 0x68, 0xf4, 0xfe, 0xad, 0xed, 0xdb, 0xaf, - 0x22, 0x14, 0x7e, 0x30, 0x50, 0xf7, 0xe1, 0x57, 0x91, 0x5b, 0x22, 0x9d, 0x1f, 0xa1, 0xd8, 0xd5, - 0x05, 0x14, 0x6a, 0x5d, 0x45, 0x80, 0xa1, 0xd4, 0xb3, 0xa7, 0xd4, 0x8f, 0xa1, 0xd4, 0xa1, 0xd4, - 0xb7, 0x52, 0xa9, 0x1f, 0x93, 0x28, 0xf5, 0x63, 0x56, 0xa5, 0x7e, 0x0c, 0xa5, 0x0e, 0xa5, 0x0e, - 0xa5, 0x4e, 0xa2, 0xd4, 0x63, 0x7d, 0xb2, 0x1e, 0xd7, 0xf7, 0xaf, 0x16, 0xd8, 0x62, 0x09, 0x68, - 0x49, 0xec, 0xba, 0x58, 0x31, 0xac, 0x78, 0x7b, 0x64, 0xfd, 0x7c, 0xbe, 0xff, 0x89, 0x35, 0x50, - 0x2f, 0x3b, 0xc3, 0x54, 0x33, 0xfb, 0xfe, 0xcb, 0xaf, 0x7e, 0xa5, 0xe5, 0x7f, 0x59, 0xf1, 0x92, - 0xe3, 0xd8, 0xdb, 0x60, 0x1d, 0x56, 0x7c, 0x24, 0x56, 0xa8, 0x4d, 0x2a, 0xb4, 0x26, 0x15, 0x4a, - 0x8b, 0x17, 0x3a, 0x5b, 0xf5, 0x7e, 0xf1, 0x42, 0x63, 0xef, 0xaf, 0x6a, 0x7c, 0xb2, 0xbc, 0x46, - 0x00, 0x96, 0xc6, 0xb0, 0x66, 0x69, 0xae, 0xed, 0xb5, 0x72, 0x83, 0xb0, 0xfb, 0x40, 0xf9, 0xfa, - 0xed, 0x6e, 0x28, 0x5a, 0x73, 0x7e, 0xf4, 0x75, 0xdc, 0x37, 0xa6, 0x8a, 0x8d, 0xad, 0x4a, 0x65, - 0x54, 0xa6, 0x82, 0x23, 0x5b, 0x56, 0x09, 0x2a, 0x2b, 0x3b, 0x65, 0xa5, 0xa6, 0xe6, 0x68, 0xd6, - 0x03, 0x9d, 0xb8, 0x7c, 0x32, 0x3f, 0xdc, 0x22, 0x96, 0x54, 0x4c, 0x28, 0x5a, 0xa5, 0xe9, 0x8b, - 0x63, 0xce, 0xc5, 0xdc, 0x16, 0x7e, 0x68, 0x77, 0x2c, 0x57, 0x7c, 0x13, 0xee, 0x5c, 0xe8, 0x67, - 0xb4, 0x73, 0xfb, 0x23, 0x4f, 0xed, 0xdc, 0x8f, 0xb9, 0xdc, 0xc3, 0x57, 0x11, 0x88, 0x2f, 0x9e, - 0xdb, 0x7e, 0x71, 0x9a, 0xb6, 0x3b, 0xf5, 0xb7, 0x9c, 0xed, 0x8b, 0x9c, 0xed, 0x06, 0xed, 0xdc, - 0x9f, 0x5e, 0xfb, 0x2f, 0x2f, 0x67, 0x07, 0xb9, 0xfb, 0xdf, 0xab, 0xb9, 0xdd, 0xe0, 0x2f, 0x27, - 0x6c, 0x7e, 0xed, 0x8f, 0xe5, 0xf8, 0x61, 0xd7, 0x76, 0xa7, 0xac, 0xc0, 0xbd, 0x0f, 0xb9, 0xea, - 0xdd, 0xa7, 0xdc, 0x6e, 0xff, 0x17, 0x2f, 0xbe, 0xdd, 0xbf, 0x61, 0xff, 0xbe, 0x8e, 0xf7, 0x32, - 0x90, 0xa3, 0x27, 0xdf, 0x69, 0xbd, 0x38, 0xde, 0xcb, 0xde, 0x87, 0xdc, 0xdd, 0xef, 0xd5, 0x2f, - 0xde, 0xee, 0x52, 0x71, 0xda, 0x8b, 0xfb, 0xe6, 0x72, 0xcc, 0x55, 0x9a, 0xa9, 0xaa, 0x30, 0x53, - 0x8d, 0xb8, 0x91, 0x2a, 0xf7, 0xd4, 0xe6, 0x9a, 0xda, 0xdc, 0x52, 0x2f, 0xee, 0xd3, 0x33, 0xc3, - 0x29, 0x76, 0x14, 0x04, 0x3f, 0x49, 0x2d, 0x54, 0x2b, 0xff, 0x3a, 0xa7, 0x89, 0xc2, 0xf6, 0xc0, - 0xf6, 0x8b, 0x46, 0xcd, 0xbd, 0xb6, 0x5b, 0x5d, 0x57, 0x64, 0x44, 0xf9, 0xb8, 0xf6, 0xcb, 0x46, - 0xea, 0x9e, 0xfe, 0x7b, 0xa5, 0x45, 0xf5, 0xd8, 0x2f, 0x2f, 0xbe, 0x78, 0x91, 0xb3, 0x3d, 0xa2, - 0x35, 0x9a, 0xbe, 0x58, 0x4d, 0xf5, 0xdc, 0x0c, 0xbe, 0x1b, 0x7a, 0x29, 0x96, 0xa8, 0x13, 0x5f, - 0x74, 0x7c, 0x11, 0x08, 0xaf, 0xaf, 0x0e, 0xbe, 0x78, 0xe3, 0xdb, 0xc5, 0xf6, 0x1c, 0xa6, 0x1d, - 0xee, 0xe3, 0x6d, 0xf0, 0xcd, 0x43, 0xfb, 0x58, 0x02, 0x00, 0xb0, 0x7f, 0x17, 0xec, 0xed, 0x56, - 0xab, 0xff, 0xb3, 0xed, 0xe6, 0x2a, 0xe1, 0x57, 0xe1, 0x7b, 0x22, 0x8c, 0x72, 0x73, 0x16, 0x94, - 0xc0, 0xb4, 0xd3, 0xbd, 0xaf, 0x02, 0x84, 0x9b, 0x11, 0x0d, 0x20, 0xc2, 0xaf, 0x1b, 0xa9, 0x01, - 0xfa, 0xef, 0x95, 0x16, 0x0d, 0x20, 0x46, 0xdb, 0x47, 0x1e, 0xfe, 0xa3, 0x2b, 0x69, 0xcd, 0x8e, - 0xf1, 0xb0, 0xb3, 0xdb, 0xf8, 0x8b, 0x17, 0x99, 0xd5, 0x1b, 0x82, 0xfe, 0xf1, 0x36, 0xf7, 0xe6, - 0xa1, 0x7f, 0xac, 0xcd, 0x0f, 0xf4, 0x5f, 0x87, 0xfe, 0xce, 0x08, 0xfe, 0xef, 0x6f, 0xae, 0x2b, - 0x0f, 0xfb, 0xf7, 0x97, 0xbf, 0x4d, 0xf0, 0x7f, 0x90, 0x9a, 0xd9, 0x87, 0xfd, 0x76, 0xd0, 0xcc, - 0x14, 0xde, 0xbb, 0x8e, 0x27, 0xac, 0x66, 0xfb, 0x75, 0x33, 0x69, 0xff, 0xf8, 0xe5, 0xd2, 0x82, - 0xfc, 0x41, 0x5b, 0x09, 0xf6, 0x87, 0x97, 0xa9, 0x61, 0xfe, 0x65, 0x7f, 0x67, 0xfa, 0xc2, 0x1d, - 0xf8, 0x79, 0xc2, 0xf6, 0x64, 0xf3, 0xe6, 0xa4, 0xd3, 0x02, 0x52, 0x4f, 0xee, 0xe3, 0xef, 0xe5, - 0x0d, 0x64, 0xf8, 0xb1, 0xf7, 0x7a, 0x6a, 0x80, 0x7e, 0xe9, 0x5f, 0xea, 0xab, 0x42, 0x12, 0xf1, - 0xe2, 0x49, 0xea, 0x71, 0xa4, 0x77, 0x16, 0x70, 0x55, 0xd8, 0x6d, 0xf9, 0x5c, 0x2f, 0xbe, 0xd7, - 0xec, 0x6f, 0xe6, 0xd0, 0x64, 0xdd, 0x9b, 0xc9, 0xbe, 0xd1, 0xec, 0x43, 0x4d, 0x6e, 0x3d, 0x75, - 0xdb, 0xbc, 0x6b, 0x37, 0x3b, 0x0b, 0x37, 0x9b, 0x54, 0x10, 0xef, 0xff, 0x75, 0xee, 0x21, 0x97, - 0x8b, 0xfe, 0x4a, 0x11, 0x7f, 0x4f, 0x94, 0x67, 0xed, 0xf1, 0xe6, 0xb2, 0x54, 0x80, 0x75, 0x62, - 0x19, 0x5b, 0xfc, 0x62, 0x8b, 0xd9, 0xa2, 0xc1, 0xdc, 0x5c, 0x12, 0x6c, 0x7f, 0x7f, 0x21, 0x57, - 0xa9, 0x81, 0x7c, 0x73, 0x3c, 0x4b, 0x2b, 0xde, 0x66, 0x3c, 0x21, 0xa3, 0xcf, 0xad, 0x0a, 0x3a, - 0xbe, 0x8b, 0xbe, 0x6b, 0xd1, 0x36, 0x0e, 0xba, 0xc6, 0x58, 0x1a, 0x59, 0xe4, 0x94, 0x46, 0x4a, - 0x69, 0x64, 0x8c, 0xb7, 0x74, 0xef, 0xa3, 0xce, 0xaa, 0x40, 0xe8, 0x3a, 0xcd, 0x9e, 0x0f, 0xde, - 0x82, 0x50, 0xbc, 0x5a, 0x1d, 0xdf, 0x69, 0xfb, 0x4e, 0xf8, 0xb6, 0x7e, 0x3a, 0x22, 0x9d, 0x3e, - 0x77, 0x61, 0x3c, 0xba, 0x78, 0x90, 0xb8, 0x83, 0xb8, 0xd9, 0xd9, 0x50, 0x0f, 0x71, 0xb3, 0xc3, - 0x4d, 0x13, 0x63, 0x97, 0x65, 0x9a, 0x94, 0x5d, 0x72, 0xbc, 0xb0, 0x10, 0x27, 0x45, 0x4d, 0xa2, - 0x30, 0x90, 0x64, 0xc1, 0x1f, 0xb9, 0x73, 0xc2, 0x0a, 0x44, 0x4a, 0xa9, 0x4a, 0x4b, 0x54, 0x7d, - 0x45, 0xf6, 0x3a, 0x8d, 0x92, 0x2a, 0x3d, 0xb9, 0x53, 0xcf, 0xc6, 0xa7, 0xe2, 0xf8, 0xe8, 0xe8, - 0xf0, 0xc8, 0xe0, 0x74, 0x10, 0xd1, 0xc7, 0xba, 0x91, 0x8c, 0x1d, 0x7d, 0xfa, 0xd8, 0x47, 0x88, - 0xfd, 0xc1, 0xff, 0xde, 0xeb, 0x20, 0xbb, 0x84, 0xfc, 0x2d, 0xa1, 0x37, 0x53, 0x6c, 0x6d, 0x2d, - 0x29, 0x58, 0x6b, 0xa6, 0x81, 0x18, 0xa4, 0x91, 0x18, 0x4c, 0xec, 0x8a, 0xd8, 0x94, 0x20, 0xb6, - 0x7f, 0x2a, 0x35, 0xd1, 0x62, 0x90, 0x01, 0x7e, 0x9f, 0xd1, 0x1a, 0xe3, 0x41, 0xcd, 0x98, 0xc8, - 0x9c, 0x6b, 0x27, 0xde, 0x56, 0xdb, 0x40, 0xb7, 0x4e, 0xac, 0xad, 0x28, 0xa9, 0x93, 0xe3, 0x7a, - 0x12, 0x25, 0x4f, 0x67, 0x0c, 0x01, 0xec, 0x9b, 0xed, 0xca, 0xcf, 0xfb, 0x0c, 0x04, 0xf6, 0x47, - 0x90, 0x3e, 0x18, 0xf5, 0x6c, 0x77, 0xdd, 0xc1, 0xa4, 0xdd, 0xd7, 0x6e, 0xfe, 0xa9, 0x78, 0xce, - 0xe9, 0x20, 0x63, 0xe7, 0x9c, 0x24, 0xa5, 0x42, 0x57, 0x3a, 0xc8, 0xa4, 0x84, 0x4c, 0x5a, 0x68, - 0xa4, 0x46, 0x4e, 0x7a, 0x14, 0xcc, 0x81, 0x9c, 0x56, 0x51, 0xde, 0x19, 0xbf, 0x9c, 0xd5, 0x11, - 0xbe, 0xd3, 0x6e, 0x59, 0x61, 0x7f, 0x34, 0x85, 0xa5, 0x1f, 0xe3, 0xbc, 0x42, 0xc9, 0xca, 0x7c, - 0xc5, 0xeb, 0xbe, 0xf6, 0xdf, 0x20, 0x05, 0xe7, 0x36, 0x87, 0x73, 0xf1, 0xda, 0x6e, 0x09, 0x75, - 0xac, 0x99, 0x0c, 0xa1, 0x0e, 0x36, 0xe5, 0x8b, 0x87, 0xea, 0xef, 0x15, 0xc0, 0x0d, 0xe0, 0x66, - 0x43, 0xe1, 0xc6, 0x6e, 0x86, 0xce, 0x37, 0x27, 0x7c, 0xdb, 0x7a, 0xc0, 0x19, 0x05, 0x7f, 0x14, - 0xb1, 0xe6, 0x9d, 0x93, 0x42, 0x40, 0x09, 0xa0, 0x44, 0x86, 0x51, 0xe2, 0xc9, 0x0e, 0xc4, 0x24, - 0x10, 0x69, 0xf9, 0xe2, 0x59, 0x07, 0x25, 0x4e, 0x14, 0xae, 0xbd, 0x8d, 0x9c, 0x75, 0xf1, 0x8a, - 0x32, 0x0c, 0x64, 0x31, 0x05, 0x88, 0x32, 0x8a, 0x00, 0x39, 0x2d, 0xeb, 0xd5, 0x6e, 0xaa, 0x43, - 0xcb, 0xec, 0x30, 0xc0, 0x18, 0x60, 0xcc, 0xc6, 0x61, 0xcc, 0xab, 0xdd, 0xb4, 0x46, 0x85, 0x14, - 0x74, 0xc0, 0xe5, 0x54, 0x0d, 0x5c, 0xb4, 0x0a, 0xa0, 0xe7, 0xff, 0xfd, 0x78, 0x60, 0x9d, 0xd9, - 0xd6, 0x73, 0xd9, 0xfa, 0xa5, 0xfe, 0xa3, 0xd8, 0xdb, 0x3d, 0x9f, 0xfd, 0x79, 0xef, 0xc7, 0x51, - 0x4f, 0xa1, 0x16, 0x79, 0x3d, 0x3d, 0xf8, 0x15, 0x3b, 0xf4, 0xbd, 0x0e, 0xc1, 0x62, 0x86, 0xc2, - 0x81, 0x61, 0xc0, 0xb0, 0x0c, 0x62, 0x58, 0xec, 0x50, 0xfe, 0xaa, 0xfd, 0xad, 0xd0, 0xf3, 0x47, - 0xb3, 0xb7, 0x8f, 0x46, 0xad, 0x17, 0x8a, 0x5e, 0x3d, 0x54, 0xad, 0xdc, 0x14, 0x53, 0x05, 0x16, - 0xc6, 0x21, 0xec, 0xc6, 0xa2, 0xd1, 0x97, 0x84, 0xa4, 0x67, 0x0e, 0xf5, 0xd4, 0x2a, 0xa4, 0x1e, - 0xb0, 0x4e, 0xaf, 0xa1, 0x5a, 0x37, 0xf5, 0x4c, 0x34, 0x0a, 0xa0, 0xaf, 0x75, 0x33, 0x49, 0x85, - 0x58, 0x5a, 0x90, 0xe5, 0xbd, 0xfc, 0x08, 0xf9, 0x57, 0x8d, 0xf1, 0x9a, 0xf9, 0x57, 0xf1, 0xfa, - 0x24, 0xfc, 0x40, 0x3e, 0x48, 0x3a, 0xbe, 0x90, 0x39, 0x4a, 0x5a, 0x44, 0x94, 0x94, 0x94, 0x3a, - 0x64, 0x3a, 0x4a, 0x3a, 0xdc, 0x73, 0xea, 0x74, 0x79, 0x74, 0xfd, 0x76, 0x94, 0x72, 0x04, 0x4b, - 0xce, 0x10, 0x4b, 0x56, 0x2f, 0xe7, 0x18, 0x3b, 0x59, 0x6a, 0xed, 0x9e, 0x51, 0xad, 0xad, 0x4a, - 0x44, 0x8d, 0x52, 0x57, 0x6a, 0x51, 0x51, 0x80, 0xa8, 0x04, 0x89, 0x5c, 0xa0, 0xc8, 0x05, 0x8b, - 0x56, 0xc0, 0x34, 0x29, 0xa8, 0xe2, 0x9e, 0xd1, 0x6e, 0xf8, 0x3b, 0x09, 0xfa, 0x09, 0xfb, 0x59, - 0xcd, 0x87, 0xbf, 0xa0, 0x69, 0x4e, 0x34, 0xc6, 0x18, 0xfb, 0xf4, 0x3f, 0x7e, 0x1c, 0xb6, 0x53, - 0xdb, 0x97, 0xac, 0x6e, 0xa8, 0xbf, 0x1c, 0x3d, 0xa5, 0x0e, 0x63, 0x76, 0x48, 0x00, 0x61, 0x32, - 0x47, 0xee, 0x89, 0xf4, 0xbc, 0x32, 0x65, 0x05, 0x7c, 0x01, 0xbe, 0xb4, 0xe1, 0x4b, 0x95, 0x37, - 0x44, 0x03, 0x8c, 0xb3, 0x14, 0xf4, 0xd7, 0x39, 0x2a, 0xb4, 0x34, 0x1e, 0xf1, 0x43, 0x2a, 0x1c, - 0x2d, 0xba, 0xac, 0x82, 0x52, 0x3c, 0x19, 0xc4, 0x94, 0x5a, 0x5c, 0xd9, 0xc4, 0x96, 0x4d, 0x7c, - 0x79, 0xc4, 0x58, 0x4f, 0x9c, 0x09, 0xbc, 0x95, 0x34, 0xec, 0x64, 0x91, 0xa5, 0x50, 0xa4, 0x26, - 0xad, 0x54, 0x9d, 0x04, 0xed, 0xbc, 0x15, 0x53, 0x97, 0xe8, 0xd6, 0x4d, 0xc7, 0xc3, 0x3c, 0xae, - 0xfa, 0x66, 0x3f, 0xb9, 0x82, 0x10, 0x51, 0xa7, 0x47, 0x05, 0xaa, 0x02, 0x55, 0x81, 0xaa, 0x29, - 0x43, 0xd5, 0xa7, 0x76, 0xdb, 0x15, 0x5a, 0x6d, 0x14, 0x17, 0xa0, 0xb4, 0x90, 0x41, 0xf8, 0x6b, - 0xb6, 0x5d, 0x57, 0x34, 0x43, 0xc7, 0x7b, 0xa1, 0x03, 0xbf, 0xa9, 0x31, 0x01, 0x7d, 0x80, 0x3e, - 0x40, 0x1f, 0xa0, 0x2f, 0x9d, 0xd0, 0xd7, 0xf5, 0x42, 0x99, 0x40, 0x6a, 0x0c, 0xe0, 0x1b, 0x8d, - 0x48, 0x03, 0x7b, 0x05, 0xc0, 0x1e, 0x60, 0x6f, 0x5b, 0x61, 0x4f, 0xd7, 0x4d, 0x16, 0x0d, 0x34, - 0x30, 0x9f, 0x85, 0xef, 0xb7, 0x09, 0x24, 0x7d, 0xb9, 0x6d, 0x3e, 0x1a, 0x9c, 0x68, 0x2d, 0x69, - 0x38, 0x0f, 0x39, 0x08, 0x70, 0x80, 0x01, 0x23, 0x28, 0x70, 0x81, 0x03, 0x3b, 0x48, 0xb0, 0x83, - 0x05, 0x2f, 0x68, 0xd0, 0x80, 0x07, 0x11, 0x88, 0xd0, 0x73, 0xa8, 0x55, 0x2a, 0xff, 0xb8, 0x44, - 0xb9, 0x67, 0x47, 0x10, 0x70, 0x4a, 0x38, 0xa4, 0x5e, 0x72, 0xec, 0xaa, 0x2f, 0x5a, 0x99, 0xca, - 0x51, 0x25, 0xd3, 0x1a, 0xc2, 0xd6, 0x85, 0xe1, 0x89, 0x92, 0x6f, 0x57, 0x8e, 0x4f, 0x98, 0x35, - 0xca, 0x2c, 0x71, 0xb3, 0x4b, 0x6a, 0x7f, 0xcf, 0xfc, 0x92, 0x16, 0x4e, 0x4b, 0xa5, 0xe3, 0x93, - 0x52, 0xe9, 0xe0, 0xe4, 0xf0, 0xe4, 0xe0, 0xec, 0xe8, 0xa8, 0x70, 0x5c, 0x38, 0xca, 0xf0, 0x2a, - 0xef, 0xa4, 0x73, 0xb4, 0xfa, 0x4e, 0x3a, 0x9e, 0x87, 0x40, 0x0a, 0x86, 0xd4, 0xd0, 0xf1, 0xac, - 0xce, 0x9f, 0x21, 0x17, 0xf1, 0x1c, 0x8f, 0x0e, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, - 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0xd9, 0xee, 0x86, 0x9c, 0xd4, - 0x33, 0x1a, 0x1e, 0xdc, 0x13, 0xdc, 0x13, 0xdc, 0x13, 0xdc, 0x13, 0xdc, 0x13, 0xdc, 0x13, 0xdc, - 0x13, 0xdc, 0x13, 0xdc, 0x13, 0xdc, 0xd3, 0xff, 0xce, 0x1b, 0x70, 0x9f, 0x8c, 0x0f, 0xf6, 0x09, - 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, 0xf6, 0x09, - 0xf6, 0x19, 0x32, 0xb3, 0xcf, 0x10, 0xec, 0x13, 0xec, 0x13, 0xec, 0x13, 0xec, 0x13, 0xec, 0x13, - 0xec, 0x13, 0xec, 0x13, 0xec, 0x13, 0xec, 0x13, 0xec, 0x33, 0x62, 0x9f, 0x5d, 0xef, 0x4f, 0xaf, - 0xfd, 0x97, 0xc7, 0x4b, 0x41, 0xe7, 0x6e, 0x02, 0x1e, 0x0a, 0x1e, 0x0a, 0x1e, 0x0a, 0x1e, 0x0a, - 0x1e, 0x0a, 0x1e, 0x0a, 0x1e, 0x0a, 0x1e, 0x0a, 0x1e, 0x9a, 0x5d, 0x1e, 0x9a, 0xe8, 0xa1, 0x7b, - 0xc5, 0xee, 0x09, 0x2b, 0xc7, 0x53, 0xee, 0xaa, 0x30, 0x6a, 0x55, 0x30, 0xfa, 0x77, 0x54, 0x16, - 0x97, 0xa8, 0xbc, 0xc6, 0xf0, 0xc9, 0x42, 0xbf, 0xdb, 0x0c, 0x47, 0x7d, 0x2e, 0xf3, 0x35, 0xbb, - 0xd9, 0x69, 0x54, 0xc7, 0x77, 0x6f, 0x5c, 0x0d, 0xee, 0xda, 0xb8, 0x18, 0xdf, 0x2f, 0x83, 0xc5, - 0x4d, 0x5a, 0x4e, 0x10, 0xfa, 0xce, 0x53, 0x97, 0xb6, 0xb2, 0xd3, 0xcc, 0xa8, 0xa8, 0xed, 0x64, - 0xd0, 0xaa, 0x40, 0x91, 0x13, 0xd4, 0x76, 0x8a, 0xb3, 0xe3, 0x50, 0xdb, 0x29, 0x47, 0xd3, 0x63, - 0x61, 0x61, 0x66, 0x75, 0x7b, 0x2d, 0x00, 0xf8, 0x00, 0x7c, 0x00, 0x3e, 0x3e, 0xe0, 0xa3, 0x68, - 0xcd, 0xbc, 0x12, 0x03, 0x4f, 0x08, 0xc6, 0xe2, 0x6f, 0xdd, 0x9c, 0x0e, 0xec, 0x6d, 0x77, 0x84, - 0x6f, 0xfd, 0x29, 0x08, 0xeb, 0xd3, 0x47, 0x23, 0x02, 0x79, 0x81, 0xbc, 0x40, 0xde, 0x94, 0x21, - 0xaf, 0x72, 0xb3, 0xd7, 0x55, 0xf2, 0x79, 0x4c, 0x30, 0x14, 0xad, 0xd7, 0x99, 0xd0, 0x7d, 0xcf, - 0xe1, 0x65, 0x66, 0x72, 0x45, 0x72, 0x79, 0x95, 0x39, 0xfd, 0x8c, 0x84, 0x5e, 0x64, 0x16, 0xef, - 0x31, 0xf7, 0x52, 0x11, 0x34, 0xa7, 0x35, 0xba, 0x5c, 0x29, 0x71, 0xbb, 0xd6, 0x33, 0xc8, 0xb3, - 0x3a, 0xb6, 0x1f, 0x7a, 0xc2, 0xb7, 0x9c, 0x16, 0x1d, 0xd3, 0x9a, 0x1a, 0x13, 0x5c, 0x0b, 0x5c, - 0x0b, 0x5c, 0x2b, 0x65, 0x5c, 0xeb, 0xd5, 0x6e, 0x5a, 0x76, 0xab, 0xe5, 0x8b, 0x20, 0xa0, 0x34, - 0x6f, 0x4f, 0x69, 0xcc, 0xdb, 0x50, 0xf8, 0x1e, 0x19, 0xe7, 0xca, 0xff, 0xfb, 0xf1, 0xc0, 0x3a, - 0xb3, 0xad, 0xe7, 0xb2, 0xf5, 0x4b, 0xfd, 0x47, 0xb1, 0xb7, 0x7b, 0x3e, 0xfb, 0xf3, 0xde, 0x8f, - 0xa3, 0xde, 0xdf, 0xf2, 0x5b, 0x8d, 0xfc, 0xa4, 0x46, 0xf6, 0xf4, 0xa0, 0xc0, 0x7e, 0x60, 0x3f, - 0xb0, 0x1f, 0x76, 0x36, 0xec, 0x6c, 0xd8, 0xd9, 0xb0, 0xb3, 0x61, 0x67, 0xc3, 0xce, 0x16, 0xbe, - 0xd5, 0x69, 0xfb, 0xa1, 0x35, 0xea, 0x74, 0x49, 0x4b, 0xb9, 0xa2, 0x91, 0xc1, 0xbb, 0xc0, 0xbb, - 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xc0, 0xbb, 0xb6, 0x9b, 0x77, 0xd1, - 0xf3, 0x2d, 0xf0, 0x2c, 0xf0, 0x2c, 0xf0, 0x2c, 0xf0, 0x2c, 0xf0, 0x2c, 0xf0, 0x2c, 0xf0, 0x2c, - 0xf0, 0x2c, 0xf0, 0xac, 0x5c, 0x2e, 0x1f, 0xbc, 0x79, 0xcd, 0xaf, 0x7e, 0xdb, 0x73, 0xfe, 0x97, - 0xe6, 0xe4, 0x5f, 0x04, 0xe8, 0xf3, 0x03, 0x83, 0x75, 0x81, 0x75, 0x81, 0x75, 0xa5, 0x8c, 0x75, - 0x0d, 0xea, 0xc9, 0xcc, 0x49, 0xaa, 0x15, 0xf6, 0x6f, 0x43, 0x98, 0x5f, 0x52, 0x22, 0x18, 0xab, - 0x32, 0x32, 0x05, 0x7b, 0x99, 0x84, 0xd8, 0x20, 0x14, 0xaf, 0xa4, 0x99, 0x7a, 0x93, 0x21, 0x01, - 0xab, 0x80, 0x55, 0xc0, 0x6a, 0xca, 0x60, 0x15, 0x89, 0x7a, 0x48, 0xd4, 0xcb, 0xe5, 0x43, 0xe7, - 0x55, 0xb4, 0xbb, 0x21, 0x1d, 0xea, 0x8f, 0x07, 0x04, 0xe6, 0x03, 0xf3, 0x81, 0xf9, 0x69, 0xa4, - 0xd2, 0x23, 0x09, 0x05, 0x85, 0x26, 0xbb, 0x52, 0x71, 0xa1, 0xa9, 0x8a, 0x19, 0xd1, 0x16, 0x31, - 0x52, 0x93, 0x1a, 0xf9, 0x89, 0x93, 0xbb, 0x42, 0x72, 0x8a, 0xfb, 0x00, 0xa6, 0x53, 0x12, 0x23, - 0x5f, 0x73, 0x82, 0xb0, 0x1c, 0x86, 0xbe, 0xd2, 0xc2, 0xe4, 0xaf, 0x1c, 0xaf, 0xe2, 0x8a, 0x3e, - 0x1c, 0x05, 0xf9, 0xf3, 0x9c, 0xd7, 0x75, 0xdd, 0x0f, 0x0a, 0x83, 0xd8, 0xdf, 0xf5, 0x07, 0xb9, - 0xf1, 0x5b, 0xc2, 0x17, 0xad, 0x4f, 0x6f, 0xa3, 0x21, 0x58, 0x27, 0x5d, 0x73, 0x3f, 0x53, 0xed, - 0x63, 0x05, 0x50, 0x8b, 0x53, 0x6d, 0x4b, 0x4e, 0x30, 0xe2, 0x6f, 0xef, 0x78, 0x9f, 0x8c, 0xb9, - 0x16, 0xaa, 0x6b, 0xa0, 0x3d, 0xf7, 0xf1, 0x66, 0x67, 0xfd, 0xbb, 0xc6, 0x78, 0xcf, 0xfc, 0x68, - 0x99, 0xe2, 0xbd, 0x5d, 0xa4, 0xfc, 0x06, 0x57, 0xc5, 0x9c, 0x45, 0x39, 0xfa, 0x29, 0x4d, 0x33, - 0x55, 0xe8, 0xa4, 0x06, 0x6d, 0x54, 0xa5, 0x87, 0xda, 0x34, 0x50, 0x9b, 0xee, 0xe9, 0xd1, 0x3a, - 0x5a, 0xc9, 0x92, 0xa6, 0x63, 0x13, 0xda, 0x25, 0xec, 0x67, 0xb9, 0x72, 0x2f, 0x2a, 0x65, 0x5d, - 0xa2, 0xf2, 0x2d, 0x1f, 0x3f, 0xee, 0x0f, 0x45, 0x77, 0x3f, 0x7e, 0x81, 0x16, 0x1a, 0xc1, 0x1c, - 0x12, 0x08, 0x69, 0xc9, 0x1c, 0x5e, 0x26, 0x27, 0x9a, 0x05, 0x59, 0xd1, 0x2c, 0x42, 0x34, 0x37, - 0x56, 0x34, 0x2f, 0x1d, 0x39, 0xa2, 0x36, 0xe4, 0x85, 0xdf, 0x6c, 0x57, 0x7e, 0xde, 0x67, 0x8a, - 0xad, 0xf5, 0x47, 0x90, 0x9c, 0xb5, 0x4b, 0xf1, 0x6c, 0x77, 0xdd, 0xc1, 0xa4, 0xdd, 0xd7, 0x6e, - 0xfe, 0x29, 0x7b, 0xb9, 0x9a, 0x5f, 0x44, 0xd9, 0x0f, 0xa2, 0xe3, 0xf7, 0x20, 0xf0, 0x73, 0xe8, - 0xfa, 0x35, 0xc8, 0xfc, 0x18, 0x64, 0x7e, 0x0b, 0x1a, 0x3f, 0x05, 0xaf, 0xed, 0xa4, 0xec, 0x77, - 0x98, 0xf5, 0x33, 0x74, 0x84, 0xef, 0xb4, 0x5b, 0xaa, 0x6e, 0x06, 0x1d, 0xb7, 0x82, 0xa2, 0x1b, - 0x41, 0x82, 0xb2, 0x4b, 0x00, 0xfc, 0x60, 0x2e, 0x5e, 0xdb, 0x2d, 0xa1, 0x8e, 0x35, 0x93, 0x21, - 0xd4, 0xc1, 0xa6, 0x7c, 0xf1, 0x50, 0xfd, 0xbd, 0x02, 0xb8, 0x01, 0xdc, 0x6c, 0x28, 0xdc, 0xd8, - 0xcd, 0xd0, 0xf9, 0xe6, 0x84, 0x6f, 0x5b, 0x0f, 0x38, 0x52, 0xd6, 0xb1, 0x8e, 0x95, 0x0c, 0x94, - 0x00, 0x4a, 0x64, 0x08, 0x25, 0x48, 0xea, 0xaf, 0xea, 0xd4, 0x5b, 0x35, 0x50, 0x5f, 0x95, 0x07, - 0x51, 0xa2, 0x4c, 0x1e, 0xeb, 0xd5, 0x6e, 0xaa, 0x43, 0xcb, 0xec, 0x30, 0xc0, 0x18, 0x60, 0xcc, - 0xc6, 0x61, 0x8c, 0x5e, 0x52, 0x8d, 0x4e, 0x12, 0x8d, 0x76, 0xd2, 0x0c, 0x53, 0x92, 0x4c, 0x3d, - 0x3d, 0xf8, 0xd5, 0xf1, 0x9d, 0xb6, 0xef, 0x84, 0x6f, 0xda, 0x08, 0x16, 0x0d, 0x04, 0x0c, 0x03, - 0x86, 0x6d, 0x1c, 0x86, 0x29, 0x9f, 0x72, 0xd3, 0x38, 0xd5, 0xa6, 0x79, 0x8a, 0x4d, 0x23, 0x77, - 0x82, 0xe2, 0x94, 0x1a, 0x55, 0xb6, 0x1a, 0xd1, 0x29, 0x34, 0xca, 0x63, 0x4c, 0x3a, 0xb9, 0x85, - 0x14, 0xa7, 0xca, 0xa8, 0xa7, 0x96, 0xe0, 0xd4, 0x18, 0xe9, 0xf4, 0x1a, 0x4a, 0xb6, 0xa9, 0x23, - 0x77, 0x61, 0x59, 0xee, 0x82, 0x44, 0xc2, 0x53, 0x8c, 0x00, 0xe9, 0x8e, 0xc6, 0x1c, 0x8c, 0x13, - 0x96, 0x62, 0xb8, 0x5f, 0xe4, 0x72, 0x93, 0x94, 0x72, 0x91, 0x94, 0x72, 0x8f, 0xe4, 0x72, 0x8d, - 0xd6, 0xcd, 0x87, 0xe4, 0x5e, 0x50, 0xde, 0x03, 0xf9, 0x58, 0x61, 0xed, 0xd5, 0xc9, 0x41, 0xef, - 0xef, 0x9e, 0xd5, 0x7b, 0x62, 0xf9, 0x5f, 0x56, 0xcc, 0x4a, 0xdc, 0xd9, 0x90, 0x9c, 0x85, 0xe5, - 0xcf, 0xbe, 0xf8, 0x64, 0x4b, 0x9e, 0x6a, 0x4d, 0xa8, 0x3f, 0x56, 0x68, 0x7f, 0x4d, 0x28, 0x7f, - 0x6d, 0xe8, 0x3e, 0x0e, 0xbf, 0x95, 0xe0, 0xb1, 0x71, 0xf9, 0xaa, 0x34, 0x2f, 0x95, 0xe6, 0x9f, - 0x72, 0x3c, 0x53, 0x6e, 0x27, 0xad, 0x0b, 0x95, 0x4b, 0x1b, 0x4b, 0x8a, 0xc6, 0x51, 0x4c, 0xc5, - 0x1e, 0xdb, 0xf8, 0x91, 0x31, 0x76, 0x14, 0x8c, 0x1b, 0x59, 0x63, 0x46, 0xd9, 0x78, 0x51, 0x36, - 0x56, 0xd4, 0x8c, 0x13, 0x3d, 0xa5, 0x15, 0xdb, 0xd8, 0x90, 0x37, 0x2e, 0x24, 0x8c, 0x09, 0x49, - 0xe3, 0x41, 0x82, 0x58, 0xa8, 0x18, 0x07, 0xaa, 0x56, 0xbe, 0x22, 0xf9, 0xd7, 0x61, 0xa3, 0x32, - 0x3e, 0x14, 0x15, 0x32, 0xaf, 0x3b, 0x15, 0x0a, 0x64, 0x5d, 0x6b, 0x3a, 0x88, 0x88, 0x60, 0x3d, - 0x73, 0x94, 0xe0, 0x1d, 0x1e, 0xbc, 0x84, 0x0d, 0xec, 0xbc, 0xf3, 0x78, 0xeb, 0x1e, 0x2b, 0xce, - 0xe3, 0xe4, 0x97, 0xd2, 0x8d, 0x79, 0x0a, 0x36, 0xfb, 0xb8, 0x93, 0x87, 0x9a, 0x7a, 0xa0, 0xbc, - 0xeb, 0xb6, 0x3a, 0x0b, 0x8f, 0x31, 0x09, 0x1b, 0xf7, 0xff, 0x3a, 0xf7, 0xf8, 0xcb, 0x29, 0xc9, - 0x4a, 0x2d, 0xf4, 0x9e, 0xd6, 0x99, 0xd1, 0x32, 0x8b, 0xb7, 0x8a, 0xa3, 0x55, 0x62, 0x6b, 0x91, - 0xd8, 0x5a, 0x63, 0x41, 0x4b, 0xf4, 0x1f, 0x4c, 0x72, 0x89, 0x57, 0x51, 0x88, 0x7c, 0x73, 0x3c, - 0x4b, 0x6b, 0x48, 0xe1, 0xe8, 0x73, 0x9a, 0xac, 0xf0, 0x80, 0x88, 0x15, 0x2e, 0x5f, 0x9a, 0x0c, - 0xb0, 0xc2, 0xa5, 0x4b, 0xc7, 0xc4, 0x0a, 0x9b, 0x5f, 0xed, 0x20, 0x70, 0x82, 0x38, 0x05, 0x02, - 0x26, 0xcb, 0x3c, 0xb9, 0x26, 0x23, 0x5c, 0xf0, 0xfd, 0xad, 0x90, 0x61, 0x2e, 0xf8, 0xee, 0x56, - 0x49, 0x8a, 0x0b, 0x06, 0xa1, 0x1f, 0xaf, 0x4b, 0xfb, 0x24, 0x2e, 0xa6, 0xaa, 0x59, 0x3f, 0xc4, - 0xd9, 0xd9, 0xc3, 0xcc, 0x21, 0x85, 0xed, 0x1d, 0x27, 0xe5, 0x08, 0x7b, 0x7c, 0x2b, 0xf7, 0xb8, - 0xdc, 0x26, 0xc9, 0x49, 0xe6, 0xa1, 0xc5, 0xcc, 0x3b, 0x53, 0x13, 0x0c, 0xe1, 0xd9, 0x4f, 0xae, - 0x90, 0xc0, 0xfb, 0xf1, 0x05, 0x6b, 0x26, 0x71, 0x2a, 0x29, 0xb5, 0xbf, 0xda, 0x90, 0x1b, 0xc8, - 0xcd, 0xe2, 0x8c, 0x3f, 0xb5, 0xdb, 0xae, 0xb0, 0x3d, 0x19, 0x79, 0x29, 0x30, 0xc8, 0xc0, 0x57, - 0xe1, 0xba, 0xed, 0xc1, 0x89, 0x79, 0x3f, 0xbe, 0x1c, 0x4c, 0x5f, 0x84, 0xcd, 0x8d, 0xcd, 0xbd, - 0xd4, 0x09, 0x76, 0x5c, 0x92, 0xd8, 0xdb, 0xa7, 0x70, 0x82, 0x6d, 0xad, 0x13, 0xac, 0x70, 0x5a, - 0x2a, 0x1d, 0x9f, 0x94, 0x4a, 0x07, 0x27, 0x87, 0x27, 0x07, 0x67, 0x47, 0x47, 0x85, 0xe3, 0xc2, - 0x36, 0xf9, 0xc4, 0xde, 0x01, 0xe7, 0xa0, 0xdb, 0xe9, 0xf8, 0x22, 0x08, 0xac, 0xd0, 0xfd, 0x66, - 0xd9, 0xad, 0x6f, 0xc2, 0x0f, 0x9d, 0x40, 0x8c, 0xa4, 0x3f, 0x6e, 0xd0, 0x62, 0xf5, 0x18, 0x80, - 0x6e, 0x40, 0xf7, 0xc2, 0x8c, 0x3b, 0x2d, 0xe1, 0x85, 0x4e, 0xf8, 0x16, 0x2f, 0x7b, 0x3c, 0xe2, - 0x26, 0x31, 0x24, 0x36, 0x5f, 0x1d, 0x0d, 0xfd, 0xc9, 0x0e, 0x14, 0xce, 0x50, 0xd7, 0x6a, 0x97, - 0xb7, 0x8d, 0x87, 0xda, 0xef, 0x71, 0x97, 0x69, 0x00, 0x2f, 0x81, 0x54, 0xc6, 0x95, 0x62, 0xd2, - 0xe4, 0xfd, 0x1f, 0xf7, 0x0f, 0x95, 0xab, 0xc6, 0x75, 0xf9, 0xaa, 0x92, 0xe7, 0x40, 0x65, 0xc5, - 0xc7, 0xba, 0xbd, 0xb9, 0x7b, 0x68, 0x54, 0x2f, 0xd3, 0xf4, 0x48, 0xa3, 0x99, 0xba, 0x28, 0xdf, - 0x96, 0x3f, 0x55, 0x6b, 0xd5, 0x87, 0x6a, 0xe5, 0x3e, 0x4d, 0x8f, 0x77, 0x55, 0xbe, 0x2e, 0xff, - 0x5a, 0xb9, 0xaa, 0x5c, 0x3f, 0x34, 0xca, 0x97, 0x97, 0x77, 0x95, 0xfb, 0xfb, 0x14, 0x4e, 0xde, - 0x65, 0xe5, 0xfe, 0xe2, 0xae, 0x7a, 0xfb, 0x50, 0xbd, 0xb9, 0x4e, 0xdd, 0x6e, 0x4b, 0xe9, 0xb3, - 0x5d, 0xfc, 0x56, 0xbe, 0xbf, 0xaf, 0xde, 0xcb, 0x09, 0x43, 0xac, 0x4f, 0xd6, 0x99, 0xf1, 0x7b, - 0x33, 0x32, 0xa1, 0xd4, 0xc8, 0xcf, 0x30, 0xdb, 0xa2, 0x25, 0x82, 0xa6, 0xef, 0x74, 0x62, 0xe5, - 0x49, 0xcd, 0x67, 0x6a, 0x4c, 0x5f, 0x0b, 0xb2, 0x03, 0xb2, 0x43, 0xe1, 0xa0, 0x8f, 0xf1, 0xd9, - 0x9a, 0xf0, 0x5e, 0x06, 0xd1, 0x5f, 0x58, 0xaa, 0x9b, 0x65, 0xa9, 0x16, 0x8f, 0x60, 0x98, 0x4e, - 0x63, 0x73, 0xac, 0x83, 0xd8, 0xf3, 0xa0, 0x1c, 0x27, 0x01, 0x18, 0x68, 0x0c, 0x34, 0x06, 0x1a, - 0x03, 0x8d, 0x81, 0xc6, 0xef, 0xff, 0x85, 0x31, 0x75, 0xce, 0x6d, 0x75, 0xf6, 0x07, 0xff, 0x1b, - 0xe5, 0x32, 0x69, 0x64, 0xd2, 0x4f, 0xe5, 0xe3, 0xaf, 0xcd, 0x9c, 0x9a, 0xfa, 0x2c, 0xb2, 0xa7, - 0xb2, 0x93, 0x3d, 0x35, 0x39, 0x6d, 0x12, 0x9b, 0x0e, 0xc4, 0x3d, 0xa0, 0x12, 0xb3, 0x1e, 0x22, - 0xc8, 0x40, 0x9a, 0xc9, 0x40, 0xdc, 0xfa, 0x85, 0xeb, 0x32, 0x2c, 0x57, 0x2e, 0xd0, 0xbb, 0x19, - 0x97, 0x8a, 0x5b, 0x4a, 0x7a, 0x6b, 0xa9, 0x6c, 0x31, 0x8d, 0xad, 0xa6, 0xba, 0xe5, 0xb4, 0xb7, - 0x9e, 0xf6, 0x16, 0xd4, 0xdb, 0x8a, 0x92, 0x3a, 0x99, 0xab, 0xc4, 0x66, 0xdc, 0xf4, 0xa1, 0x95, - 0x2b, 0x1d, 0x2f, 0x9d, 0x68, 0xf1, 0x41, 0xa5, 0xd2, 0x8b, 0xa8, 0x58, 0x57, 0xe2, 0x35, 0x1a, - 0xe4, 0x64, 0x42, 0x57, 0x36, 0xc8, 0x64, 0x84, 0x4c, 0x56, 0x68, 0x64, 0x46, 0x4e, 0x76, 0x14, - 0x4c, 0x81, 0x1c, 0x51, 0x2d, 0xab, 0xd8, 0xe9, 0x51, 0x2b, 0xc1, 0xbd, 0x80, 0x52, 0x75, 0x10, - 0x6f, 0x88, 0x77, 0x3a, 0xc5, 0x1b, 0xa5, 0xea, 0xd8, 0x88, 0x0c, 0x43, 0x91, 0x89, 0xc8, 0x19, - 0xb0, 0xb4, 0xc8, 0xc4, 0x7b, 0x1e, 0x02, 0xf9, 0x57, 0x45, 0x7f, 0x0c, 0x58, 0x08, 0xe9, 0xb4, - 0x10, 0xd0, 0x1f, 0x63, 0xbd, 0x60, 0x0a, 0xe7, 0xe5, 0xeb, 0x53, 0xdb, 0x0f, 0x14, 0xa4, 0x33, - 0xba, 0x74, 0x43, 0xfa, 0x64, 0x40, 0x44, 0x33, 0x60, 0xc4, 0x8f, 0x77, 0x9d, 0x06, 0x49, 0x1f, - 0x8f, 0xa0, 0x46, 0xd4, 0x0b, 0x20, 0xea, 0x20, 0xea, 0x5c, 0x44, 0x5d, 0x56, 0x1c, 0x26, 0x6e, - 0x58, 0xbb, 0x63, 0x3f, 0x39, 0xae, 0x13, 0x3a, 0x22, 0x50, 0x5f, 0xb3, 0xc8, 0x39, 0x3b, 0x3d, - 0x9a, 0xe2, 0x6c, 0xab, 0x89, 0x8b, 0x32, 0xfa, 0x53, 0x8a, 0x0f, 0xa1, 0x18, 0x51, 0x89, 0x13, - 0xb9, 0x58, 0x91, 0x8b, 0x17, 0xad, 0x98, 0xa9, 0x89, 0x9b, 0xa2, 0xd8, 0x69, 0x8b, 0xdf, 0xa2, - 0x18, 0xbe, 0xd1, 0xf5, 0xaf, 0x9e, 0x1a, 0x93, 0xa6, 0x85, 0x75, 0x61, 0xd3, 0x5b, 0x58, 0xeb, - 0x89, 0x2a, 0xb5, 0xc8, 0xb2, 0x89, 0x2e, 0x9b, 0x08, 0xf3, 0x88, 0xb2, 0x9e, 0x48, 0x6b, 0x8a, - 0x36, 0x99, 0x88, 0x4f, 0x44, 0x5d, 0x2e, 0xf0, 0x19, 0x5f, 0xdc, 0x65, 0x02, 0xa3, 0x86, 0x44, - 0x9e, 0x5c, 0xf4, 0x39, 0x20, 0x80, 0x11, 0x0a, 0xb8, 0x20, 0x81, 0x1d, 0x1a, 0xd8, 0x21, 0x82, - 0x17, 0x2a, 0x68, 0x20, 0x83, 0x08, 0x3a, 0x74, 0xfd, 0xb5, 0x6b, 0xc7, 0x55, 0xf6, 0xe7, 0x46, - 0x9e, 0x98, 0xe8, 0xbb, 0xfd, 0x69, 0x06, 0x3f, 0xf9, 0xe1, 0x4d, 0xca, 0xf5, 0xcb, 0xbf, 0x2a, - 0x04, 0x2b, 0xa2, 0x16, 0xb1, 0x5b, 0xef, 0x24, 0x90, 0x8f, 0xe4, 0xad, 0xc3, 0xe0, 0x03, 0x60, - 0x30, 0x30, 0x18, 0x18, 0x4c, 0xb3, 0x67, 0x95, 0x23, 0x9a, 0x6b, 0x77, 0xac, 0xbc, 0xeb, 0x3f, - 0x36, 0x09, 0x3b, 0x21, 0x1c, 0x73, 0x2a, 0x74, 0x30, 0xa8, 0x95, 0xb9, 0x2f, 0x1f, 0xef, 0x4c, - 0x37, 0xae, 0xcb, 0x75, 0xee, 0x8e, 0xbd, 0xbc, 0x32, 0x9d, 0xbd, 0x13, 0x63, 0xd7, 0x45, 0x20, - 0x3b, 0x90, 0x7d, 0x4b, 0x91, 0x9d, 0xca, 0x40, 0x8f, 0x06, 0x54, 0x4d, 0xfb, 0x8c, 0x2d, 0x09, - 0x6a, 0x69, 0xa1, 0x86, 0x69, 0x23, 0x1b, 0x7d, 0xe4, 0x04, 0x1b, 0x03, 0xa0, 0xc3, 0x0d, 0x3e, - 0xc6, 0x40, 0xc8, 0x18, 0x18, 0x99, 0x01, 0x25, 0x5a, 0x70, 0x22, 0x06, 0x29, 0x3e, 0x1a, 0xba, - 0xb0, 0xe3, 0xd5, 0xf3, 0x6a, 0x63, 0xb3, 0x97, 0xc2, 0x4e, 0x3a, 0x17, 0x8c, 0x70, 0xb1, 0x68, - 0xbd, 0x04, 0x9c, 0xde, 0x02, 0xc0, 0x3f, 0xe0, 0x1f, 0xf0, 0x0f, 0xf8, 0x57, 0xaa, 0xee, 0xa6, - 0xac, 0x02, 0x8e, 0x18, 0xc6, 0x56, 0xaa, 0x1e, 0xa7, 0x3c, 0x51, 0x83, 0x6a, 0x73, 0xf3, 0xe5, - 0xca, 0xfe, 0xe0, 0x12, 0x32, 0x85, 0x5a, 0x75, 0xb2, 0x5f, 0x3f, 0xd8, 0x46, 0x9e, 0x99, 0xb7, - 0x8b, 0xc6, 0xef, 0xb5, 0xf2, 0x75, 0x9e, 0xed, 0x66, 0xbd, 0x0f, 0x59, 0x9f, 0xa1, 0x7f, 0xd6, - 0xca, 0xd7, 0x8d, 0xf2, 0xc5, 0x45, 0xe5, 0xfe, 0xbe, 0x71, 0x7b, 0x53, 0xbd, 0x7e, 0xc0, 0x64, - 0xad, 0x9e, 0xac, 0x9b, 0x87, 0xdf, 0x2a, 0x77, 0x98, 0xa0, 0xd5, 0x13, 0x74, 0x57, 0xb9, 0xad, - 0x94, 0x1f, 0x30, 0x47, 0xef, 0xcd, 0xd1, 0xfd, 0x43, 0xf9, 0xa1, 0x7a, 0x73, 0xdd, 0xb8, 0xb9, - 0xae, 0xfd, 0x81, 0x79, 0x5a, 0x3d, 0x4f, 0x97, 0x37, 0x17, 0xf7, 0xd5, 0xfb, 0xc6, 0x45, 0xf9, - 0x53, 0xad, 0xd2, 0xb8, 0xac, 0xfc, 0x5e, 0xbd, 0xa8, 0x60, 0xba, 0x56, 0x4f, 0xd7, 0x55, 0xf9, - 0xa2, 0xf1, 0xe9, 0xae, 0x7a, 0xf9, 0x2b, 0x66, 0xe9, 0x9d, 0x59, 0x7a, 0xa8, 0xd4, 0x2a, 0xb7, - 0xbf, 0xdd, 0x5c, 0x63, 0x92, 0xde, 0x43, 0x28, 0xb0, 0xa6, 0x75, 0x7a, 0xee, 0xe6, 0x33, 0xb4, - 0xdc, 0xfb, 0x82, 0xf6, 0xcf, 0x9b, 0xc6, 0xa0, 0x08, 0x6f, 0x1f, 0x97, 0xee, 0x2a, 0xb5, 0x32, - 0xa7, 0xae, 0x63, 0x19, 0xb9, 0x9e, 0x76, 0x73, 0x1f, 0x09, 0x68, 0x52, 0xe3, 0x9a, 0x48, 0x40, - 0x93, 0x68, 0x70, 0xcf, 0xbf, 0x28, 0xc9, 0xa6, 0x22, 0xc7, 0x6f, 0xb0, 0xbf, 0x76, 0x28, 0xa9, - 0xb2, 0xd3, 0x6b, 0x47, 0x53, 0x29, 0x4b, 0xbd, 0x7e, 0x50, 0x85, 0xb2, 0xd5, 0x6b, 0x07, 0x95, - 0x2a, 0x6b, 0xcd, 0xbd, 0x9e, 0xc4, 0x62, 0x69, 0x42, 0x1c, 0xf3, 0x24, 0x89, 0x3a, 0x33, 0x8d, - 0x70, 0xdd, 0x56, 0xa7, 0x51, 0x1d, 0x3f, 0x4a, 0xe3, 0x7a, 0xf4, 0x00, 0x8d, 0x8b, 0xc9, 0x3d, - 0x77, 0x92, 0x11, 0x59, 0xb3, 0x47, 0x89, 0x88, 0x36, 0x03, 0xdb, 0x26, 0x50, 0x5b, 0x05, 0xf9, - 0x39, 0x54, 0x98, 0x3f, 0xdd, 0xa3, 0x15, 0x34, 0x47, 0x29, 0xc8, 0x0e, 0x30, 0x1e, 0xe0, 0x00, - 0xe3, 0x9c, 0xd6, 0xc3, 0x01, 0xc6, 0xad, 0x42, 0x1d, 0x8d, 0x23, 0x07, 0x86, 0xf0, 0xa6, 0x1b, - 0x84, 0xed, 0x57, 0x2b, 0x74, 0xbf, 0x51, 0x9c, 0x9d, 0x9e, 0x1a, 0x0c, 0x47, 0xa7, 0x81, 0x3c, - 0x5b, 0x82, 0x3c, 0xda, 0x47, 0xa7, 0x43, 0xf7, 0x1b, 0xdd, 0x99, 0xe9, 0xfe, 0x60, 0x38, 0x2c, - 0x6d, 0x40, 0x38, 0xa9, 0x85, 0x94, 0x4d, 0x58, 0xd9, 0x84, 0x96, 0x47, 0x78, 0xd3, 0xe1, 0xa1, - 0xc0, 0x61, 0xe9, 0x34, 0x88, 0x3e, 0x07, 0x04, 0x30, 0x42, 0x01, 0x17, 0x24, 0xb0, 0x43, 0x03, - 0x3b, 0x44, 0xf0, 0x42, 0x05, 0x9d, 0x5b, 0x34, 0xb7, 0x6d, 0xbe, 0xea, 0x09, 0x65, 0xdf, 0x0f, - 0xdd, 0x6f, 0x1b, 0x78, 0x48, 0xba, 0xdd, 0x75, 0xe8, 0xc1, 0xb7, 0x3f, 0x28, 0x8e, 0x48, 0x03, - 0x79, 0x81, 0xbc, 0xa9, 0x44, 0x5e, 0x1c, 0x91, 0x9e, 0x3f, 0x22, 0xdd, 0x07, 0xac, 0xcd, 0x02, - 0x75, 0x2b, 0xe8, 0x3e, 0x85, 0x94, 0xeb, 0x3c, 0x0d, 0xee, 0xd1, 0xe0, 0x00, 0x79, 0x80, 0x3c, - 0x40, 0x1e, 0x20, 0x9f, 0x15, 0x90, 0x8f, 0x80, 0x0b, 0xe5, 0x30, 0xd6, 0xad, 0x32, 0xca, 0x61, - 0x00, 0xe0, 0x01, 0xf0, 0x29, 0x06, 0x78, 0xf2, 0x72, 0x18, 0x94, 0xae, 0x00, 0x46, 0x97, 0x00, - 0x13, 0x6b, 0x64, 0x63, 0x8f, 0x9c, 0x20, 0x63, 0x00, 0x6c, 0xb8, 0x41, 0xc7, 0x18, 0xf8, 0x18, - 0x03, 0x21, 0x33, 0x60, 0x44, 0x0b, 0x4a, 0xc4, 0xe0, 0xc4, 0xc7, 0x42, 0x97, 0xf0, 0x94, 0x98, - 0xad, 0xc6, 0x95, 0x49, 0xcb, 0xe9, 0x16, 0x54, 0xc1, 0xe0, 0xf0, 0x18, 0x18, 0xf0, 0x1c, 0x40, - 0x17, 0x40, 0x17, 0x40, 0x17, 0x40, 0x17, 0x40, 0x17, 0x10, 0xea, 0x02, 0x5e, 0x25, 0x00, 0xf4, - 0x07, 0xfa, 0x03, 0xfd, 0x81, 0xfe, 0xf4, 0x3b, 0xde, 0xf1, 0xc2, 0xc3, 0x22, 0x23, 0xf8, 0x1f, - 0x32, 0x0c, 0x7d, 0x67, 0x7b, 0x2f, 0x82, 0xad, 0x5a, 0x10, 0xdf, 0x79, 0xe5, 0xfc, 0x95, 0xe3, - 0xb1, 0x01, 0xc0, 0x82, 0xd6, 0xfd, 0xc0, 0x7b, 0x9b, 0x41, 0xcd, 0xa6, 0xfc, 0x79, 0xae, 0x58, - 0x28, 0x9d, 0x94, 0x4e, 0x0f, 0x8f, 0x4b, 0xa7, 0xcc, 0x37, 0xfc, 0xc5, 0xb7, 0x9b, 0xa1, 0xd3, - 0xf6, 0x2e, 0x9d, 0x17, 0x67, 0x70, 0xe8, 0xf1, 0x20, 0x8b, 0xa7, 0xe1, 0xf3, 0x57, 0xf6, 0x77, - 0x63, 0x7b, 0xe0, 0xc0, 0xf4, 0x1e, 0x38, 0xd9, 0xa0, 0x3d, 0xb0, 0x93, 0x8d, 0x51, 0xeb, 0x5b, - 0x40, 0xae, 0xbf, 0x8d, 0xf6, 0x19, 0x13, 0xbb, 0x1e, 0x0e, 0x0f, 0x7a, 0x0d, 0x7a, 0x0d, 0x7a, - 0x0d, 0x7a, 0x4d, 0xba, 0xe3, 0x9f, 0x1c, 0xcf, 0xf6, 0xdf, 0x18, 0xf9, 0xf5, 0x19, 0x4a, 0xbc, - 0xc4, 0xd9, 0xeb, 0x19, 0x4c, 0x9b, 0x4f, 0x57, 0x69, 0x17, 0x82, 0x9c, 0x1b, 0x9e, 0xcc, 0x4a, - 0xa4, 0x54, 0xa6, 0x55, 0x37, 0x23, 0xe3, 0x26, 0x19, 0xdd, 0x8b, 0x94, 0x4a, 0x6d, 0xdf, 0x09, - 0x6b, 0x4a, 0x65, 0xaa, 0x72, 0x29, 0xd3, 0x50, 0xb2, 0xab, 0x3f, 0x21, 0xb9, 0x76, 0xd7, 0xc9, - 0xd1, 0xc5, 0xba, 0x51, 0xc2, 0x0b, 0x25, 0xbc, 0xa4, 0xe8, 0x96, 0xb9, 0xd2, 0x5d, 0x0f, 0xee, - 0x37, 0xd4, 0xec, 0x4a, 0xc1, 0xaa, 0xa7, 0xb9, 0x84, 0x8e, 0xd3, 0xd2, 0xaf, 0x9c, 0xe3, 0xb4, - 0x34, 0x0b, 0xe6, 0x1c, 0xa0, 0x54, 0x57, 0x0e, 0x05, 0x73, 0x32, 0x02, 0x36, 0xda, 0x34, 0x93, - 0x90, 0x56, 0x52, 0xd0, 0xc8, 0x45, 0xda, 0xe8, 0xb4, 0xd2, 0x8c, 0x58, 0x7a, 0x07, 0x6a, 0x48, - 0x0e, 0xd0, 0xa0, 0xd0, 0x17, 0x70, 0x6b, 0xfb, 0x0a, 0x7d, 0xd9, 0x2f, 0x82, 0xae, 0xd0, 0x57, - 0x7f, 0x30, 0x9a, 0x42, 0x5f, 0x07, 0x28, 0xf4, 0x95, 0x84, 0x8f, 0x0c, 0x85, 0xbe, 0xd2, 0xe0, - 0xd7, 0x20, 0xf3, 0x79, 0x45, 0x3b, 0xae, 0xeb, 0x78, 0xe1, 0x71, 0x89, 0x62, 0xc3, 0x8d, 0xe4, - 0x93, 0x20, 0x5b, 0x87, 0x38, 0x0f, 0x8b, 0xd0, 0x43, 0xc8, 0x91, 0x67, 0xc5, 0x15, 0xd0, 0x1f, - 0xe7, 0xd0, 0x50, 0x8f, 0xcb, 0x98, 0x2a, 0x43, 0x99, 0xda, 0xc1, 0x91, 0x0e, 0xc5, 0xbd, 0x54, - 0x85, 0xd3, 0x52, 0xe9, 0xf8, 0xa4, 0x54, 0x3a, 0x38, 0x39, 0x3c, 0x39, 0x38, 0x3b, 0x3a, 0x2a, - 0x1c, 0x53, 0x77, 0x7c, 0x64, 0x5d, 0xbd, 0x94, 0xb8, 0x9e, 0xeb, 0x49, 0x39, 0xc1, 0x34, 0x28, - 0x75, 0xf3, 0xab, 0x1d, 0x04, 0x4e, 0x60, 0x39, 0x2d, 0x3a, 0xce, 0x35, 0x35, 0x26, 0xa8, 0x17, - 0xa8, 0x17, 0xa8, 0x57, 0xca, 0xa8, 0x17, 0xd9, 0xf9, 0x28, 0xa2, 0xf3, 0x50, 0x49, 0x23, 0x9f, - 0x45, 0x92, 0xc7, 0xb1, 0x04, 0xfe, 0x2c, 0x8a, 0xb8, 0x1f, 0x30, 0x10, 0x18, 0x08, 0x0c, 0xa4, - 0xc6, 0x40, 0x5a, 0x21, 0x9d, 0x01, 0xc3, 0x12, 0xc1, 0x58, 0x15, 0xaf, 0xfb, 0xda, 0x7f, 0xe1, - 0x5e, 0x06, 0x81, 0x95, 0x92, 0x4a, 0x82, 0x42, 0x02, 0x3e, 0x01, 0x9f, 0xa0, 0x90, 0xe9, 0x44, - 0x3a, 0xd7, 0x0e, 0x42, 0xab, 0xdb, 0x69, 0x51, 0x54, 0xde, 0x9b, 0x44, 0x6b, 0xa7, 0x06, 0x05, - 0xf6, 0x01, 0xfb, 0x80, 0x7d, 0x29, 0xc3, 0x3e, 0xea, 0xc0, 0x45, 0x09, 0x81, 0x0b, 0x45, 0x9d, - 0xc1, 0xe4, 0x0d, 0x3f, 0x2b, 0x16, 0x0f, 0x0f, 0x4f, 0x8a, 0x07, 0x87, 0xc7, 0xa7, 0x47, 0xa5, - 0x93, 0x93, 0xa3, 0xd3, 0x83, 0x53, 0x84, 0x32, 0xa8, 0x17, 0xef, 0xc0, 0xd8, 0xe2, 0x9d, 0x20, - 0x92, 0x21, 0xfb, 0x95, 0xc5, 0x48, 0xc6, 0xab, 0xed, 0xd9, 0x2f, 0x83, 0xe4, 0x73, 0xcb, 0x6e, - 0xb5, 0x7c, 0x11, 0x04, 0x74, 0x9c, 0x6c, 0xc9, 0xd8, 0xa0, 0x66, 0xa0, 0x66, 0xa0, 0x66, 0x30, - 0x4b, 0x33, 0x81, 0x84, 0xc4, 0x11, 0x8e, 0x55, 0x37, 0x00, 0x26, 0x02, 0x13, 0x81, 0x89, 0xc0, - 0xc4, 0x14, 0x62, 0x62, 0xa7, 0xed, 0x87, 0x56, 0x4b, 0x04, 0x4d, 0xdf, 0xe9, 0x90, 0x1c, 0xdf, - 0x8b, 0xe6, 0x77, 0x61, 0x64, 0xa0, 0x20, 0x50, 0x10, 0x28, 0x08, 0x14, 0x4c, 0x2b, 0x0a, 0x52, - 0xc6, 0x67, 0xc7, 0x03, 0x02, 0xf3, 0x80, 0x79, 0xc0, 0x3c, 0x60, 0x5e, 0x7a, 0x31, 0x8f, 0xd8, - 0x04, 0x9e, 0x19, 0x15, 0xe8, 0x07, 0xf4, 0x03, 0xfa, 0xa5, 0x0c, 0xfd, 0x08, 0x25, 0x34, 0x87, - 0xf4, 0xbe, 0xc9, 0xb3, 0x07, 0x6f, 0x41, 0x28, 0x5e, 0x79, 0x6c, 0xe9, 0x25, 0x63, 0x03, 0x5b, - 0x81, 0xad, 0xc0, 0xd6, 0xcd, 0x67, 0x96, 0x04, 0x63, 0xd5, 0x84, 0xf7, 0x32, 0x28, 0x31, 0x82, - 0xe3, 0xbb, 0x1a, 0xc3, 0xe2, 0xf8, 0x6e, 0xe6, 0x96, 0xaa, 0x78, 0x84, 0xd3, 0xba, 0xd2, 0x5f, - 0xf5, 0xec, 0x72, 0xaf, 0x51, 0x41, 0x3e, 0x5a, 0xd2, 0x35, 0x18, 0x14, 0x6c, 0x0b, 0x6c, 0x0b, - 0x6c, 0x0b, 0x6c, 0x0b, 0x6c, 0x0b, 0x6c, 0x0b, 0x6c, 0x0b, 0x6c, 0x6b, 0xab, 0xd9, 0x56, 0x18, - 0xba, 0x74, 0x2c, 0xab, 0x3f, 0x18, 0xd8, 0x15, 0xd8, 0x15, 0xd8, 0x55, 0xca, 0xd8, 0x55, 0xd7, - 0xf1, 0xc2, 0xc2, 0x31, 0x21, 0xbb, 0x3a, 0xc6, 0x79, 0x2e, 0x70, 0x2b, 0x70, 0x2b, 0xa5, 0xa5, - 0x3a, 0x3e, 0x3a, 0x3a, 0x04, 0xbb, 0xca, 0x0e, 0xbb, 0xda, 0xfa, 0xf6, 0x0b, 0x1a, 0x3d, 0xcd, - 0x14, 0xca, 0x98, 0xef, 0x30, 0x4e, 0xf3, 0xb8, 0x77, 0x8d, 0x74, 0x36, 0x9f, 0x5e, 0x67, 0x1a, - 0x92, 0x4e, 0x34, 0x24, 0x9d, 0x67, 0xf4, 0x3a, 0xcd, 0xc8, 0xce, 0xb6, 0xe6, 0x66, 0xa6, 0xdc, - 0xc4, 0x79, 0xa5, 0xea, 0xf8, 0x31, 0x3a, 0xc3, 0xc8, 0xc9, 0x45, 0xfc, 0xdd, 0x1d, 0xef, 0x93, - 0x31, 0x57, 0x44, 0x75, 0x25, 0x08, 0x56, 0x20, 0xde, 0xfc, 0xac, 0x7f, 0xdb, 0x18, 0x6f, 0x2a, - 0xd9, 0xce, 0x40, 0xa9, 0x7d, 0x81, 0xe4, 0xb9, 0x7c, 0xe9, 0xf6, 0x04, 0x2a, 0x06, 0xa7, 0x86, - 0x61, 0xa9, 0x6a, 0x40, 0x6a, 0x1b, 0x8a, 0xda, 0x06, 0xa1, 0x9e, 0xe1, 0x47, 0x2b, 0x5d, 0xb2, - 0xed, 0x00, 0xf2, 0xcd, 0x76, 0xb7, 0x2f, 0x29, 0xf2, 0xa7, 0xb7, 0x27, 0xb5, 0xdd, 0xc6, 0x23, - 0xc8, 0x2a, 0x40, 0xa5, 0xb2, 0x12, 0xca, 0xfe, 0x14, 0x1d, 0xff, 0x09, 0x81, 0xbf, 0x44, 0xd7, - 0x3f, 0x42, 0xe6, 0x0f, 0x21, 0xf3, 0x7f, 0xd0, 0xf8, 0x3b, 0x78, 0x49, 0x96, 0x6a, 0x77, 0x8c, - 0xfc, 0xb3, 0x6f, 0xbf, 0x0a, 0xab, 0xe5, 0x04, 0x4d, 0xdb, 0x27, 0xe8, 0xa5, 0x35, 0x3b, 0x1c, - 0xda, 0x6a, 0xa1, 0x3d, 0x4d, 0x62, 0x8e, 0xc5, 0xac, 0xb6, 0xd5, 0x1a, 0xa9, 0x19, 0xad, 0x5a, - 0x50, 0x04, 0xcd, 0x2b, 0x88, 0x7c, 0x85, 0x34, 0x3d, 0x45, 0x09, 0xbd, 0xed, 0xb4, 0x9d, 0xab, - 0x89, 0x7d, 0x81, 0x1c, 0x4e, 0xa5, 0x1e, 0x4d, 0x07, 0xd6, 0xd4, 0x2f, 0x01, 0x5f, 0xb3, 0x09, - 0x96, 0x55, 0x49, 0xc8, 0xb5, 0x56, 0x4f, 0x71, 0x6b, 0xbc, 0x21, 0x79, 0x10, 0xbe, 0xdf, 0xf6, - 0x2d, 0x0d, 0x99, 0x9f, 0x23, 0x23, 0xd1, 0x78, 0x60, 0x23, 0x60, 0x23, 0x60, 0x23, 0x60, 0x23, - 0x60, 0x23, 0x60, 0x23, 0x60, 0x23, 0x60, 0x23, 0x12, 0x6c, 0xa4, 0xdd, 0x0d, 0x69, 0xe9, 0x48, - 0x7f, 0x40, 0xf0, 0x11, 0xf0, 0x11, 0xf0, 0x11, 0xf0, 0x11, 0xf0, 0x11, 0xf0, 0x11, 0xf0, 0x11, - 0xf0, 0x91, 0x58, 0x7c, 0x84, 0xce, 0x2f, 0x02, 0x8f, 0x08, 0x18, 0x08, 0x18, 0x08, 0x18, 0x08, - 0x18, 0x08, 0x18, 0x08, 0x18, 0x08, 0x18, 0x48, 0x5c, 0x06, 0x42, 0xe8, 0x0b, 0x81, 0x17, 0x04, - 0x1c, 0x04, 0x1c, 0x04, 0x1c, 0x04, 0x1c, 0x04, 0x1c, 0x04, 0x1c, 0x04, 0x1c, 0x24, 0xc6, 0x34, - 0x0f, 0xda, 0x98, 0x36, 0x5d, 0x61, 0xfb, 0xfa, 0x24, 0x64, 0x6a, 0x2c, 0xb0, 0x10, 0xb0, 0x10, - 0xb0, 0x10, 0xc9, 0x1d, 0xd3, 0xb2, 0x43, 0x61, 0xd9, 0x5e, 0xcb, 0x0a, 0x1d, 0xad, 0x1a, 0x5f, - 0x14, 0xf5, 0x83, 0xf2, 0xb7, 0x76, 0x18, 0x0a, 0xdf, 0xd3, 0x26, 0x23, 0xf9, 0x2f, 0x5f, 0x5a, - 0x3f, 0x4a, 0x3d, 0xab, 0xff, 0x4f, 0x71, 0xfc, 0xcf, 0xc3, 0xf0, 0x9f, 0xf3, 0x99, 0x7f, 0x76, - 0xbf, 0x7c, 0xf9, 0xf8, 0xe5, 0x4b, 0xeb, 0xbf, 0xf7, 0xfe, 0xbe, 0xfb, 0xff, 0xfd, 0x7c, 0xfc, - 0xf2, 0xe5, 0xbf, 0xbf, 0x7c, 0xb1, 0xea, 0x33, 0x9f, 0xd8, 0xcb, 0x6f, 0x24, 0x06, 0x87, 0xee, - 0x37, 0xba, 0x13, 0x03, 0xd3, 0x83, 0x01, 0x85, 0x81, 0xc2, 0x40, 0x61, 0xd8, 0x82, 0xb0, 0x05, - 0x61, 0x0b, 0xc2, 0x16, 0x84, 0x2d, 0x18, 0x83, 0x87, 0x74, 0xbd, 0x3f, 0xbd, 0xf6, 0x5f, 0x1e, - 0x0d, 0x0f, 0x19, 0x0f, 0x06, 0x1e, 0x02, 0x1e, 0x02, 0x1e, 0x02, 0x1e, 0x02, 0x1e, 0x02, 0x1e, - 0x02, 0x1e, 0xb2, 0x5d, 0x3c, 0x64, 0x33, 0xab, 0x33, 0x0d, 0xea, 0xed, 0xec, 0x2b, 0x56, 0x30, - 0xc9, 0xad, 0xad, 0xcc, 0x74, 0x31, 0x1e, 0x98, 0xab, 0x32, 0x93, 0x44, 0x79, 0x1d, 0xe1, 0xd9, - 0x4f, 0xae, 0x68, 0xa9, 0xd7, 0x79, 0x19, 0x0f, 0x20, 0x5b, 0x82, 0x43, 0x3c, 0xdb, 0x5d, 0x77, - 0xc0, 0x01, 0xfa, 0x94, 0x42, 0xb1, 0x4a, 0xcc, 0x01, 0xaa, 0xc4, 0x18, 0x25, 0x85, 0x5b, 0x55, - 0x25, 0x46, 0x99, 0xec, 0x45, 0x2b, 0xfe, 0xd4, 0x6e, 0xbb, 0xc2, 0x56, 0xb1, 0x90, 0x22, 0x27, - 0x7f, 0x21, 0x05, 0x18, 0xa1, 0xd4, 0xe9, 0x24, 0x9a, 0x04, 0x85, 0x96, 0x26, 0x10, 0x6f, 0x88, - 0x77, 0x16, 0xc4, 0xdb, 0x0e, 0x84, 0x15, 0xb1, 0x06, 0xcb, 0x17, 0xcf, 0x3a, 0x92, 0x7e, 0xa2, - 0x70, 0xed, 0x6d, 0xc4, 0x6d, 0x9a, 0x96, 0xf3, 0x7c, 0x3e, 0x45, 0x66, 0xe6, 0x7e, 0x31, 0xfa, - 0x79, 0x20, 0x8b, 0xa8, 0x07, 0xb9, 0x92, 0xf3, 0x91, 0xd5, 0x82, 0xdc, 0xd1, 0x98, 0x83, 0x71, - 0x0d, 0xd8, 0x18, 0xc0, 0x29, 0x57, 0xf5, 0x55, 0xa9, 0xca, 0xab, 0x52, 0x55, 0x57, 0xb9, 0x2a, - 0xae, 0xeb, 0xe6, 0x43, 0x72, 0x2f, 0x28, 0xef, 0x81, 0x7c, 0xac, 0x0a, 0x9e, 0xab, 0x89, 0xfd, - 0xfb, 0xbb, 0x67, 0xf5, 0x9e, 0x58, 0xfe, 0x97, 0x15, 0xb3, 0x12, 0x77, 0x36, 0x24, 0x67, 0x61, - 0xf9, 0xb3, 0x2f, 0x3e, 0xd9, 0x92, 0xa7, 0x5a, 0x53, 0xd5, 0x34, 0x56, 0x15, 0xd3, 0x35, 0x65, - 0x1f, 0xd7, 0x56, 0x29, 0x8d, 0xa3, 0xc1, 0x25, 0x34, 0x75, 0x5c, 0x8d, 0x2c, 0xad, 0x79, 0xa5, - 0x35, 0xac, 0x9c, 0x26, 0x95, 0xdb, 0x49, 0xeb, 0xca, 0x20, 0xe6, 0x9b, 0x5f, 0xed, 0x20, 0x70, - 0x02, 0xcb, 0x59, 0x6f, 0x1f, 0x4e, 0x1c, 0x9b, 0x93, 0x6b, 0xd6, 0xc1, 0x5c, 0x2c, 0x92, 0x17, - 0x9b, 0xd4, 0xc9, 0x90, 0x38, 0x05, 0xd2, 0x26, 0x4b, 0xd2, 0x94, 0x49, 0x99, 0x32, 0x09, 0x53, - 0x23, 0x5d, 0x7a, 0xaa, 0x2a, 0x36, 0x89, 0x92, 0xef, 0xa3, 0x36, 0xc9, 0x73, 0x52, 0x85, 0xd5, - 0x0f, 0x71, 0x76, 0xf6, 0xb0, 0x35, 0xb9, 0xc2, 0xf6, 0x8e, 0xd3, 0xd3, 0x1c, 0x7b, 0x7c, 0x2b, - 0xf7, 0xb8, 0xdc, 0x26, 0xc9, 0x49, 0x36, 0xb6, 0x8f, 0xd9, 0xb8, 0x5e, 0x51, 0x30, 0xe2, 0x16, - 0x7e, 0x96, 0x2d, 0xf4, 0x1c, 0xb3, 0xb0, 0x33, 0x44, 0x21, 0xcd, 0xa2, 0x10, 0xb7, 0x70, 0x72, - 0x5e, 0x78, 0xa1, 0xef, 0x88, 0xc0, 0xb2, 0x5f, 0x44, 0x4b, 0xea, 0x0c, 0xdc, 0x94, 0x5f, 0x79, - 0x6e, 0x04, 0xb9, 0xf2, 0xf7, 0x07, 0xb2, 0xe5, 0xef, 0x0f, 0x50, 0xfe, 0x9e, 0xd4, 0x15, 0x94, - 0xa6, 0xf2, 0xf7, 0xd2, 0xae, 0x1e, 0xad, 0x30, 0xbd, 0x42, 0x58, 0x5e, 0x31, 0x0c, 0xaf, 0xd6, - 0xe8, 0x45, 0xc3, 0xcf, 0xa8, 0x97, 0xb2, 0xa3, 0x19, 0x46, 0xa7, 0x08, 0xd0, 0xf6, 0xd4, 0xda, - 0xda, 0x24, 0x3e, 0x65, 0x74, 0x61, 0x6f, 0x92, 0x59, 0x64, 0x72, 0x21, 0xd6, 0x0d, 0xb6, 0x62, - 0x51, 0x2b, 0xe5, 0xaf, 0x55, 0xba, 0x1f, 0xba, 0x09, 0xba, 0x09, 0xba, 0x09, 0xba, 0x09, 0xba, - 0x09, 0xba, 0x29, 0x86, 0x6e, 0x92, 0x2e, 0xed, 0xae, 0x57, 0xca, 0x1d, 0xda, 0x09, 0xda, 0x09, - 0xda, 0x09, 0xda, 0x09, 0xda, 0x09, 0xda, 0x29, 0x86, 0x76, 0x52, 0xd7, 0x4b, 0xd0, 0x48, 0xd0, - 0x48, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, 0xd0, 0x48, 0x94, 0x1a, 0x49, 0x29, 0xcc, 0x24, 0x5b, - 0x5a, 0x11, 0x3a, 0x09, 0x3a, 0x09, 0x3a, 0x09, 0x3a, 0x09, 0x3a, 0x09, 0x3a, 0xe9, 0xdd, 0x69, - 0x50, 0x28, 0xbd, 0xa7, 0x5e, 0x6a, 0x0f, 0x5a, 0x09, 0x5a, 0x89, 0x50, 0x2b, 0xa9, 0x96, 0xaa, - 0x53, 0x29, 0x4d, 0xa7, 0x5c, 0x8a, 0x2e, 0xa1, 0xd2, 0x73, 0x26, 0x31, 0x24, 0x74, 0xbf, 0x59, - 0x76, 0xb3, 0x29, 0x3a, 0xa1, 0x50, 0x08, 0x51, 0xcf, 0x5c, 0x0d, 0x1c, 0x01, 0x8e, 0x80, 0xdd, - 0x82, 0xdd, 0x82, 0xdd, 0x82, 0xdd, 0x12, 0x69, 0x26, 0xe5, 0xdc, 0x29, 0xf9, 0x22, 0xa6, 0xd0, - 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0x6b, 0xf5, 0x92, 0x6c, 0x91, - 0x4b, 0x8d, 0xa2, 0x96, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xd0, 0x4b, 0xdb, 0xac, - 0x97, 0x52, 0x57, 0xdc, 0x44, 0xba, 0x7e, 0xe1, 0xb2, 0xb2, 0x26, 0xf1, 0xaa, 0x14, 0xaa, 0x9d, - 0x32, 0x8e, 0x5b, 0x75, 0x50, 0xb2, 0xca, 0xa0, 0x64, 0x55, 0x41, 0x9c, 0xce, 0x27, 0xd6, 0xc6, - 0xd9, 0x38, 0x9d, 0x1f, 0xbf, 0x2a, 0x5f, 0xcc, 0x2a, 0x7c, 0x6a, 0x32, 0xf0, 0x55, 0xb8, 0x6e, - 0x7b, 0x10, 0x61, 0xf1, 0xe3, 0xcb, 0xc1, 0xf4, 0x45, 0xd8, 0xdc, 0xd8, 0xdc, 0x0b, 0x33, 0xde, - 0x75, 0xbc, 0x30, 0x16, 0x7f, 0x94, 0xe0, 0x8d, 0x92, 0x7c, 0x51, 0x82, 0xf8, 0xaa, 0xf0, 0x43, - 0xd5, 0xe2, 0x90, 0x8a, 0x7c, 0x50, 0x87, 0xc1, 0xc8, 0x14, 0xd9, 0x54, 0xe1, 0x7d, 0xba, 0x53, - 0xa1, 0xcf, 0xf3, 0xb4, 0x66, 0x87, 0x88, 0x7f, 0xd5, 0x19, 0xc0, 0x39, 0xe8, 0x76, 0x3a, 0xbe, - 0x08, 0x02, 0x6b, 0x10, 0x44, 0x6d, 0x7d, 0x13, 0x7e, 0xe8, 0x04, 0x62, 0x24, 0xfd, 0x31, 0xb1, - 0xfa, 0x9d, 0x31, 0x00, 0xdd, 0x80, 0xee, 0x85, 0x19, 0x77, 0x5a, 0xc2, 0x0b, 0x9d, 0xf0, 0x2d, - 0x5e, 0x1d, 0xd1, 0x88, 0x9b, 0xc4, 0x90, 0xd8, 0x7c, 0x75, 0x34, 0xf4, 0x27, 0x3b, 0x10, 0xf2, - 0x7e, 0xb1, 0x5a, 0xed, 0xf2, 0xb6, 0xf1, 0x50, 0xfb, 0x3d, 0xee, 0x32, 0x0d, 0xe0, 0x25, 0x90, - 0xf2, 0x2f, 0x28, 0xd6, 0x16, 0xbe, 0xff, 0xe3, 0xfe, 0xa1, 0x72, 0xd5, 0xb8, 0x2e, 0x5f, 0x55, - 0xf2, 0x1c, 0xa8, 0xac, 0xf8, 0x58, 0xb7, 0x37, 0x77, 0x0f, 0x8d, 0xea, 0x65, 0x9a, 0x1e, 0x69, - 0x34, 0x53, 0x17, 0xe5, 0xdb, 0xf2, 0xa7, 0x6a, 0xad, 0xfa, 0x50, 0xad, 0xdc, 0xa7, 0xe9, 0xf1, - 0xae, 0xca, 0xd7, 0xe5, 0x5f, 0x2b, 0x57, 0x95, 0xeb, 0x87, 0x46, 0xf9, 0xf2, 0xf2, 0xae, 0x72, - 0x7f, 0x9f, 0xc2, 0xc9, 0xbb, 0xac, 0xdc, 0x5f, 0xdc, 0x55, 0x6f, 0x1f, 0xaa, 0x37, 0xd7, 0xa9, - 0xdb, 0x6d, 0x29, 0x7d, 0xb6, 0x8b, 0xdf, 0xca, 0xf7, 0xf7, 0xd5, 0x7b, 0x39, 0x61, 0xd8, 0xa1, - 0xf1, 0xde, 0xe8, 0xe1, 0xf7, 0x66, 0x54, 0xd6, 0x55, 0x23, 0x3f, 0x6f, 0x41, 0x28, 0x5e, 0xad, - 0x96, 0x08, 0x9a, 0xbe, 0xd3, 0x89, 0xe5, 0x9a, 0x9a, 0x90, 0x9e, 0xc5, 0x6b, 0x41, 0x76, 0x40, - 0x76, 0x16, 0xf7, 0x89, 0x7c, 0x19, 0xd0, 0x18, 0x9f, 0xad, 0x09, 0xef, 0x65, 0xe0, 0x18, 0x85, - 0xa5, 0xba, 0x59, 0x96, 0x6a, 0xf1, 0x08, 0x86, 0xe9, 0x34, 0x36, 0xc7, 0x6a, 0xc9, 0x31, 0x0f, - 0xca, 0x71, 0x0a, 0xca, 0x03, 0x8d, 0x81, 0xc6, 0x40, 0x63, 0xa0, 0x31, 0xd0, 0xf8, 0xfd, 0xbf, - 0x98, 0xe8, 0xce, 0xf0, 0x4e, 0x4b, 0x92, 0x25, 0x8d, 0x19, 0x76, 0xde, 0x79, 0xbc, 0x75, 0x8f, - 0x15, 0xe7, 0x71, 0xf2, 0x4b, 0x3b, 0x3f, 0xcc, 0x87, 0x8d, 0x67, 0x1f, 0x77, 0xf2, 0x50, 0x53, - 0x0f, 0x94, 0x77, 0xdb, 0x4d, 0xdb, 0xb5, 0xfc, 0x76, 0x37, 0x14, 0x8b, 0x75, 0xa6, 0x27, 0x87, - 0xe0, 0xa6, 0x3f, 0x35, 0xf7, 0x3a, 0xcb, 0x6b, 0x49, 0xaf, 0xd4, 0x4a, 0xef, 0x69, 0xa1, 0x19, - 0xad, 0xd3, 0x6e, 0x5a, 0xfe, 0x32, 0xef, 0xec, 0x3a, 0x3d, 0x13, 0x5b, 0xaf, 0xc4, 0xd6, 0x23, - 0x0b, 0x7a, 0x63, 0xf8, 0x68, 0x92, 0xcb, 0xbe, 0xaa, 0x5e, 0x73, 0xbe, 0x39, 0x9e, 0xa9, 0x35, - 0x3d, 0x3b, 0x46, 0x9f, 0xd3, 0x6c, 0xda, 0x71, 0x40, 0xd4, 0xb4, 0x63, 0xd5, 0xf2, 0xc8, 0xd2, - 0x81, 0x04, 0xda, 0x76, 0xac, 0x58, 0xbe, 0xc4, 0x40, 0x26, 0x12, 0x2e, 0xc7, 0x7b, 0xd9, 0x9f, - 0x16, 0xb5, 0xfd, 0xd1, 0x92, 0x6b, 0xf4, 0x83, 0x19, 0x0e, 0x67, 0xbf, 0xbc, 0xf8, 0xe2, 0xc5, - 0x5e, 0x26, 0xe3, 0x2b, 0x64, 0x7d, 0xea, 0x0a, 0x6c, 0xb8, 0x54, 0x6d, 0xb8, 0xb5, 0x9d, 0x62, - 0xa2, 0xa5, 0x8b, 0x6f, 0x94, 0x4c, 0x2e, 0xc9, 0x48, 0xe3, 0x80, 0x75, 0x9b, 0x21, 0xc3, 0x46, - 0xc9, 0x9a, 0xcd, 0x42, 0x63, 0x96, 0xc4, 0x6e, 0x1e, 0xb0, 0x46, 0x39, 0xa9, 0x29, 0x2b, 0xc5, - 0x6d, 0x25, 0xbd, 0xbd, 0x54, 0xb6, 0x99, 0xd6, 0x76, 0x53, 0xdd, 0x76, 0xda, 0xdb, 0x4f, 0x7b, - 0x1b, 0xea, 0x6e, 0x47, 0x49, 0x0b, 0x21, 0xe6, 0xba, 0xc5, 0xdd, 0xa6, 0xd1, 0x05, 0x32, 0x7e, - 0xf2, 0x95, 0x2b, 0x1e, 0xdf, 0x61, 0x4e, 0x65, 0xcc, 0x25, 0xde, 0x2c, 0x55, 0x76, 0x83, 0xeb, - 0x6e, 0x74, 0xb2, 0x0d, 0x4f, 0xb6, 0xf1, 0xa9, 0x04, 0x40, 0x4e, 0x10, 0x14, 0xbc, 0x0c, 0x39, - 0x9a, 0x86, 0xa9, 0xb1, 0xdd, 0x4c, 0xab, 0xdd, 0x4e, 0x29, 0x68, 0x87, 0x2c, 0x7b, 0xee, 0x75, - 0x51, 0xd6, 0xa5, 0xce, 0xbe, 0x4e, 0x80, 0x69, 0x92, 0xdc, 0xfc, 0x6c, 0xbb, 0x81, 0x00, 0x4e, - 0x00, 0x27, 0x36, 0x13, 0x27, 0x36, 0xa4, 0x6f, 0x7a, 0x47, 0x4d, 0x00, 0xa2, 0x69, 0x50, 0x63, - 0x63, 0x10, 0x73, 0x88, 0x79, 0x36, 0xc4, 0xdc, 0xe9, 0x58, 0xca, 0x13, 0x1e, 0x09, 0xfa, 0x99, - 0xc2, 0xb5, 0xa3, 0x47, 0x7f, 0x54, 0x5a, 0x1d, 0xb5, 0x5d, 0x36, 0xf7, 0xe2, 0xdf, 0x4a, 0x96, - 0xd6, 0x5e, 0xcb, 0x29, 0x56, 0xdb, 0x5a, 0x94, 0x5e, 0xc5, 0xea, 0x5b, 0x0b, 0x03, 0xfd, 0x7b, - 0x77, 0xf7, 0xf1, 0xc0, 0x3a, 0xab, 0xff, 0x7c, 0x2c, 0x58, 0x67, 0xf5, 0xe1, 0xb7, 0x85, 0xc1, - 0x3f, 0xc3, 0xef, 0x8b, 0x8f, 0x07, 0x56, 0x69, 0xfc, 0xfd, 0xd1, 0xe3, 0x81, 0x75, 0x54, 0xdf, - 0xfb, 0xf2, 0xe5, 0xe3, 0xde, 0x8f, 0xc3, 0x9e, 0xfc, 0x85, 0xfb, 0xa3, 0x9b, 0xed, 0xfd, 0xdc, - 0x7d, 0x2c, 0x58, 0xc5, 0xfa, 0xf8, 0x87, 0xc3, 0xc7, 0x03, 0xab, 0x58, 0xdf, 0xdb, 0xfb, 0x5b, - 0x5e, 0xf9, 0x65, 0xea, 0x4a, 0x57, 0xf6, 0x3e, 0x24, 0xb8, 0x97, 0x8e, 0x37, 0x74, 0x2f, 0xd9, - 0xd6, 0x73, 0xd9, 0xfa, 0xa5, 0xfe, 0xa3, 0xf0, 0xa1, 0xd4, 0x3b, 0xdf, 0xfb, 0x71, 0xd2, 0x9b, - 0xff, 0xe5, 0xcf, 0x65, 0x1f, 0x2b, 0x7c, 0x38, 0xe9, 0x9d, 0xaf, 0xf8, 0xcb, 0x71, 0xef, 0x3c, - 0xe6, 0x18, 0x47, 0xbd, 0xdd, 0x85, 0x8f, 0xf6, 0x7f, 0x5f, 0x5c, 0x75, 0x41, 0x69, 0xc5, 0x05, - 0x87, 0xab, 0x2e, 0x38, 0x5c, 0x71, 0xc1, 0xca, 0x47, 0x2a, 0xae, 0xb8, 0xe0, 0xa8, 0xf7, 0x73, - 0xe1, 0xf3, 0xbb, 0xcb, 0x3f, 0x7a, 0xdc, 0xdb, 0xfb, 0xb9, 0xea, 0x6f, 0x27, 0xbd, 0x9f, 0xe7, - 0x7b, 0x7b, 0xfb, 0xbb, 0x85, 0xbe, 0xc0, 0x9d, 0x0e, 0x65, 0xb0, 0x50, 0x5f, 0x10, 0xcd, 0xa1, - 0xa8, 0x99, 0x17, 0xb0, 0x1d, 0xde, 0xfb, 0xf0, 0x30, 0xc0, 0x40, 0x84, 0x56, 0x68, 0xbf, 0xa8, - 0x53, 0xc0, 0xf1, 0x00, 0xe0, 0x80, 0xe0, 0x80, 0x1b, 0xc9, 0x01, 0x43, 0xfb, 0x25, 0x6e, 0x8f, - 0xec, 0x8d, 0xa2, 0x80, 0x5d, 0xc7, 0x0b, 0x0f, 0x8b, 0x04, 0x1a, 0xfb, 0x44, 0x63, 0x08, 0xb5, - 0x3a, 0x20, 0x74, 0xb3, 0x11, 0x3d, 0x88, 0x4e, 0x9d, 0x10, 0x22, 0xf0, 0x5b, 0x39, 0x9c, 0x66, - 0x1d, 0x91, 0x85, 0xf1, 0x08, 0x2a, 0x62, 0x10, 0xb1, 0xcf, 0xd9, 0x25, 0xd0, 0xa8, 0x3b, 0x62, - 0x6a, 0x09, 0x4a, 0xc5, 0xb3, 0xd2, 0xd9, 0xf1, 0x49, 0xf1, 0xec, 0x28, 0xc5, 0x6b, 0xb1, 0x93, - 0xcc, 0xd5, 0x59, 0xb3, 0x5b, 0xbe, 0x8a, 0xef, 0x96, 0x72, 0x3c, 0x20, 0x9d, 0x66, 0xcb, 0x0c, - 0x6d, 0x9f, 0x67, 0xeb, 0xc5, 0xde, 0xde, 0x7f, 0xed, 0xfd, 0x7d, 0x8b, 0x69, 0x33, 0x69, 0x90, - 0x56, 0xb2, 0x6a, 0xce, 0x84, 0x90, 0xab, 0x64, 0x44, 0xcd, 0x67, 0x27, 0xed, 0x47, 0xdf, 0xbe, - 0x9b, 0x2c, 0x25, 0x3f, 0x03, 0x71, 0x2a, 0xdc, 0x49, 0x3a, 0x95, 0xd5, 0x9c, 0xc9, 0xa9, 0xaf, - 0x6b, 0x87, 0xe4, 0x88, 0x64, 0xe4, 0x4e, 0xbd, 0xb6, 0x9d, 0x2b, 0xec, 0xe7, 0x78, 0x27, 0xdb, - 0x17, 0xc0, 0xfd, 0x44, 0xae, 0x9b, 0xc0, 0x40, 0xb4, 0x3f, 0x7e, 0x1c, 0xc9, 0xe6, 0xfe, 0x68, - 0xd9, 0x0c, 0x8a, 0xe8, 0x30, 0x6f, 0x5b, 0x5a, 0x42, 0x87, 0x97, 0x31, 0x67, 0x2f, 0x15, 0x21, - 0xa0, 0x1b, 0x2d, 0xa0, 0xc8, 0x5e, 0x82, 0xab, 0x0a, 0xae, 0x2a, 0x16, 0x57, 0x15, 0xb2, 0x97, - 0x90, 0xbd, 0x04, 0x9c, 0x00, 0x4e, 0xac, 0x5b, 0x75, 0x64, 0x2f, 0x21, 0x7b, 0x09, 0x62, 0x8e, - 0xec, 0xa5, 0x38, 0x82, 0x8e, 0xec, 0x25, 0x64, 0x2f, 0x21, 0x7b, 0x09, 0xd9, 0x4b, 0xc8, 0x5e, - 0x42, 0xf6, 0x92, 0xc6, 0x7d, 0x90, 0xbd, 0x04, 0x0e, 0x08, 0x0e, 0x88, 0xec, 0x25, 0x53, 0x6a, - 0x1b, 0xd9, 0x4b, 0xd3, 0x0f, 0x82, 0xec, 0x25, 0xad, 0x2f, 0x64, 0x2f, 0xa5, 0x68, 0x2d, 0x90, - 0xbd, 0x14, 0x0b, 0x00, 0x91, 0xbd, 0xb4, 0x65, 0xb4, 0x79, 0x23, 0xb3, 0x97, 0xde, 0x29, 0x30, - 0x27, 0x3f, 0x01, 0x7a, 0xc5, 0x61, 0xfe, 0x21, 0xde, 0xe2, 0x17, 0x47, 0xda, 0x8c, 0xda, 0xdc, - 0xe6, 0x1a, 0xc3, 0xa9, 0x6c, 0x0e, 0x85, 0xae, 0x71, 0xfd, 0xb1, 0xee, 0x06, 0xe3, 0x36, 0xca, - 0xd1, 0x30, 0x59, 0xa9, 0xba, 0x18, 0x7f, 0x8e, 0x74, 0x4a, 0xa3, 0xbd, 0x9f, 0x1a, 0x14, 0x2b, - 0x15, 0x28, 0x76, 0x11, 0xb4, 0x22, 0x8a, 0xa0, 0x65, 0xa7, 0xea, 0x9e, 0x5c, 0xad, 0xcf, 0x15, - 0x3b, 0xcb, 0x69, 0xae, 0xaa, 0xaa, 0xb9, 0x74, 0x87, 0x4d, 0x3e, 0x8e, 0x72, 0x7b, 0xd9, 0x2a, - 0xb7, 0x37, 0x5c, 0x3d, 0x89, 0x02, 0xe0, 0xc3, 0xcf, 0xa3, 0xd0, 0x1e, 0x0a, 0xed, 0x4d, 0x7f, - 0x10, 0x85, 0xf6, 0x90, 0xaa, 0x8a, 0x54, 0x55, 0x66, 0xbf, 0x10, 0xe2, 0x12, 0x88, 0x4b, 0x20, - 0x55, 0x55, 0x61, 0x2e, 0x90, 0x81, 0x06, 0x29, 0x87, 0x94, 0xbf, 0xb3, 0xea, 0xc8, 0x40, 0x43, - 0x06, 0x1a, 0x32, 0xd0, 0xf4, 0xf7, 0x12, 0x32, 0xd0, 0x90, 0x81, 0x86, 0x0c, 0x34, 0xbd, 0xfb, - 0x20, 0x03, 0x0d, 0x1c, 0x10, 0x1c, 0x10, 0x19, 0x68, 0xa6, 0xd4, 0x36, 0x32, 0xd0, 0xa6, 0x1f, - 0x04, 0x19, 0x68, 0x5a, 0x5f, 0xc8, 0x40, 0x4b, 0xd1, 0x5a, 0x20, 0x03, 0x2d, 0x16, 0x00, 0x22, - 0x03, 0x6d, 0xcb, 0x68, 0x73, 0x76, 0x33, 0xd0, 0x66, 0x72, 0x0d, 0x46, 0x3f, 0x25, 0x50, 0x39, - 0xcb, 0x13, 0xdf, 0x43, 0xeb, 0x6b, 0xbb, 0x13, 0xc8, 0x07, 0x3c, 0x27, 0x97, 0x22, 0xe6, 0x89, - 0x98, 0xa7, 0x86, 0xdc, 0x49, 0xc7, 0x3c, 0xc7, 0x3b, 0x4f, 0xdd, 0x04, 0x8e, 0x46, 0x50, 0xb3, - 0x81, 0x0b, 0xb0, 0x81, 0x61, 0x03, 0x73, 0xda, 0xc0, 0xb2, 0x22, 0x11, 0x5d, 0x28, 0x99, 0xbd, - 0xb2, 0x72, 0xd3, 0x48, 0x65, 0xb3, 0x10, 0x89, 0x89, 0xb6, 0xb8, 0x50, 0x88, 0x0d, 0xa9, 0xf8, - 0x50, 0x89, 0x11, 0xb9, 0x38, 0x91, 0x8b, 0x15, 0xb5, 0x78, 0xe9, 0xd9, 0x2e, 0x8a, 0x16, 0x88, - 0xb2, 0xd8, 0x45, 0x03, 0x38, 0x5e, 0x4b, 0xe8, 0x9b, 0xbc, 0x93, 0x38, 0xcc, 0x60, 0x38, 0xcd, - 0x15, 0xa1, 0xb1, 0x9b, 0xb5, 0x85, 0x92, 0x52, 0x38, 0x59, 0x84, 0x94, 0x5a, 0x58, 0xd9, 0x84, - 0x96, 0x4d, 0x78, 0xb9, 0x84, 0x98, 0xc8, 0x8d, 0xa1, 0xb9, 0xef, 0x94, 0xfd, 0xca, 0x2b, 0x77, - 0x9d, 0xb6, 0xab, 0x61, 0xd1, 0xe5, 0x90, 0x90, 0xa3, 0x47, 0x63, 0x6e, 0xf3, 0xaf, 0x22, 0xf4, - 0x63, 0xe4, 0x5d, 0xc7, 0x9e, 0xd5, 0xd1, 0x78, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x2f, 0x85, 0xa8, - 0xa7, 0x1d, 0x65, 0x9a, 0x97, 0xd1, 0x13, 0x82, 0xa1, 0x68, 0xa2, 0x4e, 0xe3, 0x2f, 0x1a, 0x11, - 0xc8, 0x51, 0x47, 0xa1, 0x88, 0xc1, 0x6d, 0x61, 0x58, 0xe2, 0xa8, 0x54, 0x34, 0x2e, 0x43, 0x44, - 0x84, 0x48, 0x3c, 0x66, 0x97, 0x8a, 0x30, 0x5a, 0x65, 0x6a, 0xa9, 0xa8, 0xa3, 0x57, 0x46, 0xd6, - 0x6c, 0x27, 0x1d, 0xa3, 0xd4, 0x33, 0x48, 0xb6, 0x94, 0x5d, 0x9f, 0x2b, 0xe1, 0x5c, 0xd1, 0x15, - 0x0a, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x65, 0x86, 0x70, 0x79, 0xf2, 0xe7, 0xb2, 0xde, 0xb5, 0x32, - 0xcf, 0x08, 0xc6, 0xd2, 0xca, 0x75, 0x62, 0xe4, 0x5b, 0x53, 0xe7, 0x00, 0xec, 0x56, 0xcb, 0x17, - 0x41, 0x90, 0x27, 0xa4, 0x08, 0x84, 0x33, 0xc8, 0x33, 0x93, 0xf4, 0x33, 0xba, 0x64, 0x66, 0xbf, - 0x95, 0x18, 0xe6, 0x76, 0xd1, 0x17, 0xc2, 0x30, 0x36, 0x55, 0x5a, 0xc6, 0xca, 0x1b, 0x18, 0x3d, - 0xb1, 0xf0, 0xb7, 0x3c, 0xf9, 0x4b, 0xd4, 0x49, 0x47, 0xec, 0x7d, 0xc8, 0xd0, 0xa6, 0x3e, 0xc6, - 0xa6, 0x7e, 0x7f, 0x53, 0xe3, 0xe8, 0x84, 0xf9, 0xa3, 0x13, 0xe9, 0x17, 0xf1, 0x9d, 0x74, 0x3d, - 0x17, 0x11, 0xe4, 0x30, 0x30, 0x92, 0x61, 0xfa, 0x57, 0x4b, 0x3c, 0x3b, 0x9e, 0x68, 0x59, 0x44, - 0x66, 0xd7, 0x52, 0x90, 0x21, 0xf4, 0x05, 0xe4, 0xab, 0x2d, 0xe1, 0x85, 0x4e, 0xf8, 0xf6, 0xc9, - 0x0e, 0x04, 0xbd, 0x77, 0x64, 0x3c, 0x37, 0xb5, 0x9b, 0x8b, 0x72, 0xad, 0x71, 0x59, 0xf9, 0xa5, - 0x7a, 0x5d, 0xb9, 0x6c, 0x5c, 0x57, 0xfe, 0xf5, 0xd0, 0xf8, 0xed, 0xe6, 0x36, 0xcf, 0xe1, 0x34, - 0x09, 0x58, 0x70, 0xf2, 0x07, 0x0f, 0xf2, 0x8e, 0xe7, 0xe7, 0xf2, 0xee, 0xe6, 0x96, 0x1e, 0x09, - 0x7a, 0x1f, 0xb2, 0x36, 0x0f, 0xc3, 0x7d, 0x52, 0xab, 0x5e, 0xff, 0x83, 0x61, 0x36, 0x76, 0xd2, - 0x89, 0xb2, 0x70, 0x97, 0xa9, 0xbb, 0xcb, 0x7c, 0xd1, 0xec, 0xfa, 0x04, 0xc0, 0x15, 0x6d, 0xc0, - 0xf1, 0x80, 0x9a, 0x4e, 0x02, 0xcd, 0xc6, 0x5f, 0x70, 0xbe, 0xc1, 0xf9, 0x06, 0xe7, 0x9b, 0x11, - 0xe7, 0x9b, 0x7a, 0xe3, 0xb2, 0x95, 0xf4, 0xac, 0x90, 0x14, 0x90, 0x1a, 0xcd, 0xa5, 0x53, 0x3c, - 0x4d, 0xb1, 0x30, 0x0e, 0xdd, 0xe9, 0x8a, 0xe8, 0xc0, 0x42, 0xf4, 0x9d, 0xd4, 0x81, 0x0b, 0xfd, - 0xe9, 0x54, 0x98, 0x4a, 0xcd, 0x8c, 0x42, 0x92, 0x4c, 0x42, 0x4d, 0xed, 0x82, 0x74, 0x5e, 0x63, - 0x5a, 0x03, 0xe9, 0xbc, 0xb4, 0xda, 0x40, 0xa3, 0x51, 0xfb, 0x4a, 0xf4, 0x3f, 0xd1, 0x3b, 0x55, - 0x38, 0xd7, 0xc8, 0x7d, 0x28, 0xd7, 0xa9, 0xc6, 0xaf, 0x50, 0xf8, 0xcf, 0x76, 0x53, 0x58, 0xfd, - 0xf9, 0x23, 0xc0, 0xb1, 0xe9, 0xe1, 0x70, 0x3c, 0xa1, 0x2f, 0x94, 0xce, 0x33, 0xb0, 0x4c, 0x01, - 0xcb, 0x9c, 0xe7, 0xad, 0x39, 0x96, 0xa0, 0x79, 0x2a, 0x68, 0x61, 0xd3, 0x69, 0x9d, 0x0e, 0x22, - 0x12, 0xc3, 0xcc, 0x18, 0xad, 0x5a, 0xe2, 0x09, 0x83, 0x95, 0x43, 0x7c, 0xd3, 0x61, 0xac, 0xea, - 0x8a, 0xf5, 0xa2, 0x8e, 0xa5, 0xdb, 0x1e, 0x0b, 0xfa, 0x96, 0x6a, 0x7b, 0x10, 0x57, 0xf1, 0xa0, - 0x12, 0x7e, 0x0e, 0x10, 0x60, 0x03, 0x03, 0x2e, 0x50, 0x60, 0x07, 0x07, 0x76, 0x90, 0xe0, 0x04, - 0x0b, 0x1a, 0xd0, 0x20, 0x02, 0x0f, 0x7a, 0x8f, 0x17, 0x83, 0xcd, 0xc3, 0x61, 0x03, 0xad, 0xb4, - 0x89, 0xf6, 0x07, 0xcb, 0x7c, 0x1e, 0x01, 0x56, 0x30, 0xff, 0x8b, 0xd1, 0xcf, 0x83, 0xce, 0x3c, - 0x29, 0x09, 0xa9, 0x50, 0xd4, 0x58, 0x0a, 0xba, 0x4f, 0x8c, 0xf8, 0x3f, 0x33, 0x3a, 0x54, 0x00, - 0x54, 0x00, 0x54, 0x00, 0x54, 0x40, 0x66, 0x55, 0xc0, 0xe3, 0x44, 0x05, 0xfc, 0x4f, 0xb3, 0xeb, - 0xfb, 0xc2, 0x0b, 0x77, 0xf7, 0xf6, 0x3f, 0x7e, 0xdc, 0x8f, 0x3e, 0x51, 0x1f, 0x5d, 0x32, 0x8d, - 0x7b, 0xc1, 0x92, 0xdf, 0x45, 0x23, 0x2b, 0xbb, 0xdf, 0x18, 0xb4, 0x49, 0xa2, 0xd6, 0x4c, 0xe5, - 0x7b, 0x48, 0x93, 0x5a, 0x43, 0x6f, 0xe0, 0xb6, 0x9b, 0x96, 0xf8, 0x1e, 0x9e, 0x87, 0xc2, 0x15, - 0xaf, 0x22, 0xf4, 0xdf, 0xac, 0xb6, 0x67, 0x35, 0xbf, 0x0e, 0x4e, 0x0c, 0xb2, 0x18, 0xbd, 0x83, - 0x90, 0x3e, 0x83, 0xd5, 0x9b, 0xb4, 0xc1, 0x5b, 0xd7, 0x75, 0xc0, 0xd1, 0x84, 0x04, 0x27, 0xd4, - 0x87, 0x33, 0x34, 0x38, 0xe3, 0x69, 0xd6, 0x0a, 0x14, 0xea, 0x4f, 0xbe, 0x4e, 0x0a, 0xcc, 0xfb, - 0xdd, 0x15, 0xe5, 0x09, 0x61, 0x18, 0xaf, 0x0f, 0xa6, 0x51, 0xcf, 0x5f, 0x11, 0x9e, 0x3f, 0x78, - 0xfe, 0xe0, 0xf9, 0x83, 0xe7, 0x0f, 0x66, 0x1f, 0xcc, 0x3e, 0x98, 0x7d, 0x30, 0xfb, 0xe0, 0xf9, - 0x83, 0xe7, 0x0f, 0x2a, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x9e, 0x3f, 0x66, 0x6b, 0x26, - 0xc3, 0x6e, 0x9d, 0xa1, 0x37, 0x03, 0xf9, 0xf8, 0xa9, 0x5c, 0x9d, 0xbc, 0x96, 0xd7, 0xcb, 0xef, - 0x36, 0x43, 0x6f, 0x7c, 0x6c, 0xb0, 0xff, 0x2c, 0x77, 0x83, 0x9b, 0x37, 0xee, 0x07, 0x37, 0x6f, - 0x5c, 0x8b, 0xef, 0xe1, 0x6f, 0xed, 0x4e, 0xa3, 0x3a, 0xbe, 0xe3, 0x9d, 0x78, 0x4e, 0x73, 0x1e, - 0xad, 0x9e, 0x1b, 0x8f, 0xc4, 0x7d, 0x47, 0x96, 0x37, 0x5b, 0xc4, 0x39, 0x00, 0x5e, 0xca, 0x85, - 0x73, 0x00, 0xa4, 0xee, 0x36, 0x94, 0xf5, 0x36, 0x6b, 0x3b, 0xe1, 0xc8, 0x27, 0x8e, 0x7c, 0x9a, - 0xb7, 0x81, 0x50, 0xd6, 0x7b, 0xe6, 0xd9, 0x51, 0xd6, 0x1b, 0xa8, 0x07, 0xd4, 0xdb, 0x1e, 0xd4, - 0x43, 0x59, 0x6f, 0x99, 0x07, 0x43, 0x59, 0x6f, 0x94, 0xf5, 0x46, 0x59, 0x6f, 0x62, 0x37, 0x66, - 0x0e, 0x65, 0xbd, 0x51, 0xd6, 0x1b, 0x84, 0x0b, 0x84, 0x6b, 0x3b, 0x08, 0x17, 0xca, 0x7a, 0x2b, - 0xb8, 0xce, 0x50, 0xd6, 0x9b, 0xf6, 0x0b, 0x65, 0xbd, 0xe3, 0xdc, 0x00, 0x65, 0xbd, 0x99, 0xd8, - 0x79, 0x0e, 0x65, 0xbd, 0x93, 0xde, 0xd4, 0x28, 0xeb, 0x8d, 0xb2, 0xde, 0x4c, 0xc6, 0x5c, 0x0e, - 0x65, 0xbd, 0x09, 0x41, 0x06, 0x65, 0xbd, 0xdf, 0x71, 0x9a, 0xa0, 0xac, 0x37, 0x97, 0x7a, 0xce, - 0xa1, 0xac, 0x37, 0x07, 0xca, 0xc2, 0x5d, 0x86, 0xb2, 0xde, 0x70, 0xbe, 0xc1, 0xf9, 0x06, 0xe7, - 0x5b, 0x12, 0xce, 0x37, 0x94, 0xf5, 0xde, 0xe4, 0x34, 0x62, 0x8d, 0xb4, 0x6e, 0x85, 0x6c, 0xde, - 0x1d, 0xc6, 0x79, 0xef, 0x23, 0x90, 0x6a, 0xca, 0x60, 0xbe, 0xe6, 0x04, 0x61, 0x39, 0x0c, 0xd5, - 0x92, 0x1f, 0xf3, 0x57, 0x8e, 0x57, 0x71, 0x45, 0x1f, 0x4b, 0xfa, 0xdc, 0xda, 0xeb, 0xba, 0xae, - 0x42, 0xda, 0xf2, 0x95, 0xfd, 0x5d, 0x7f, 0x90, 0x1b, 0xbf, 0x25, 0x7c, 0xd1, 0xfa, 0xf4, 0x36, - 0x1a, 0x82, 0x75, 0xc2, 0x35, 0x37, 0x38, 0xeb, 0xc6, 0xce, 0x2b, 0x25, 0x8e, 0xc7, 0xcb, 0x84, - 0x97, 0x13, 0x97, 0xf8, 0x9b, 0x3e, 0xde, 0x27, 0x63, 0xae, 0x92, 0xea, 0xea, 0x70, 0xac, 0x4a, - 0xbc, 0x09, 0x5b, 0xff, 0xfa, 0x31, 0x5e, 0x7d, 0x4c, 0x3e, 0xe2, 0xbe, 0x72, 0xa4, 0xe6, 0xa4, - 0x48, 0x8b, 0x24, 0xdd, 0x94, 0xa6, 0x95, 0x2a, 0xf4, 0x51, 0x8b, 0x26, 0xaa, 0xd2, 0x41, 0x6d, - 0xda, 0xa7, 0x4d, 0xef, 0x74, 0x69, 0x1c, 0xad, 0xd0, 0x49, 0xd3, 0x2f, 0x8d, 0x63, 0x84, 0x2a, - 0xc7, 0x04, 0x97, 0xd4, 0xc5, 0x1f, 0x2d, 0x9b, 0x41, 0x11, 0x95, 0x3b, 0xa0, 0xa3, 0x74, 0x20, - 0x47, 0xf2, 0x00, 0x8e, 0xf4, 0x81, 0x1b, 0x08, 0x68, 0x46, 0x05, 0x54, 0xf6, 0x80, 0x4b, 0xbe, - 0x25, 0x82, 0xa6, 0xef, 0x74, 0x94, 0x58, 0x4e, 0xb4, 0xe2, 0xd3, 0x83, 0xc8, 0xb2, 0x5a, 0x25, - 0xc7, 0x86, 0xb2, 0x23, 0x43, 0xc7, 0x71, 0x41, 0xe2, 0xa8, 0xd0, 0x75, 0x4c, 0x90, 0x39, 0x22, - 0xc8, 0x1c, 0x0f, 0x54, 0x8e, 0x06, 0x5e, 0xeb, 0x49, 0xd9, 0x71, 0xa0, 0x7f, 0x18, 0x44, 0xf1, - 0xf0, 0x87, 0x04, 0xb1, 0x96, 0xc0, 0xd9, 0x8e, 0xda, 0xfe, 0x57, 0xe3, 0x91, 0x90, 0x72, 0x48, - 0x79, 0xc6, 0xa4, 0xdc, 0xe9, 0x58, 0xca, 0x13, 0xae, 0x93, 0x3d, 0xa6, 0x97, 0x25, 0x46, 0x70, - 0x0c, 0x7a, 0x90, 0xf5, 0xa5, 0xed, 0xda, 0xa6, 0xc8, 0x83, 0x21, 0xcb, 0x77, 0x31, 0x9b, 0xac, - 0xb5, 0x3f, 0xba, 0xd9, 0xde, 0xcf, 0xdd, 0xc7, 0x82, 0x55, 0xac, 0x8f, 0x7f, 0x38, 0x7c, 0x3c, - 0xb0, 0x8a, 0x75, 0xad, 0x4c, 0x8f, 0xba, 0x49, 0xc7, 0x2e, 0xcd, 0x5e, 0x3a, 0xde, 0xd0, 0xbd, - 0x84, 0x1c, 0x29, 0xf3, 0x39, 0x52, 0xfb, 0xbb, 0x85, 0xbe, 0xc0, 0x9d, 0x0e, 0x65, 0xb0, 0x50, - 0x5f, 0x10, 0xcd, 0xa1, 0xa8, 0x99, 0x17, 0xb0, 0x1d, 0xde, 0xfb, 0xf0, 0x30, 0xc0, 0x40, 0x84, - 0x56, 0x68, 0xbf, 0xa8, 0x53, 0xc0, 0xf1, 0x00, 0xe0, 0x80, 0xe0, 0x80, 0x1b, 0xc9, 0x01, 0x43, - 0xfb, 0xc5, 0x0a, 0xfb, 0xa3, 0x6c, 0x19, 0x05, 0xd4, 0x3e, 0xf8, 0x4b, 0x70, 0xe0, 0x97, 0xe8, - 0xa0, 0x2f, 0x41, 0x82, 0x00, 0xe5, 0xc1, 0x5e, 0xea, 0x7a, 0x97, 0xc4, 0x07, 0x79, 0x39, 0x0e, - 0x83, 0x52, 0xd4, 0x35, 0xa5, 0x3c, 0xb0, 0xcb, 0xb5, 0x04, 0xd4, 0x07, 0x74, 0x59, 0xd6, 0x22, - 0xa1, 0x84, 0x94, 0xac, 0xd9, 0x2d, 0x5f, 0xc5, 0x77, 0x4b, 0xbb, 0xe6, 0x4b, 0xba, 0xcc, 0x96, - 0x19, 0xda, 0x3e, 0xcf, 0xd6, 0x8b, 0xbd, 0xbd, 0xff, 0xda, 0xfb, 0xfb, 0x16, 0xd3, 0xe6, 0x0d, - 0xcb, 0x48, 0x90, 0xc8, 0x76, 0x8a, 0x11, 0xea, 0xdc, 0xd1, 0x98, 0x94, 0x71, 0xb6, 0x52, 0x2c, - 0xe2, 0x2a, 0x97, 0x9e, 0xa4, 0x94, 0x8e, 0xa4, 0x94, 0x7e, 0x24, 0x97, 0x6e, 0xb4, 0x6e, 0x46, - 0x24, 0xb7, 0x07, 0xdd, 0xb6, 0xc8, 0xc7, 0x8a, 0x59, 0xbf, 0x9f, 0x1b, 0xf4, 0xfe, 0xa6, 0x5a, - 0xbd, 0x55, 0x96, 0xff, 0x65, 0xc5, 0x54, 0xc5, 0x9d, 0x22, 0x82, 0xa9, 0x59, 0xfe, 0x3e, 0x8b, - 0x4f, 0x3b, 0xfb, 0x9b, 0xb9, 0xe7, 0x5e, 0xf7, 0xbc, 0x4a, 0xcf, 0xb9, 0x64, 0xb5, 0x56, 0xaf, - 0xce, 0xec, 0x6b, 0x4c, 0x1e, 0x76, 0xea, 0x41, 0xf3, 0xaf, 0x22, 0x08, 0xec, 0x97, 0xc1, 0xb1, - 0x98, 0xd9, 0x47, 0x9c, 0x2a, 0xc8, 0x35, 0xfa, 0xc4, 0xdc, 0xeb, 0x2d, 0x4f, 0x32, 0x58, 0x69, - 0x91, 0xbf, 0x67, 0x71, 0x4f, 0x5b, 0xd4, 0x2b, 0x6e, 0x17, 0xc7, 0x66, 0x8e, 0x6d, 0x13, 0xc7, - 0xb6, 0x79, 0xe7, 0x6d, 0xda, 0xe8, 0xe1, 0x24, 0xb7, 0xc2, 0xaa, 0xc0, 0xfb, 0xba, 0x8e, 0xeb, - 0xf1, 0x3a, 0xa9, 0xaf, 0xc9, 0xf7, 0x58, 0xeb, 0x24, 0x89, 0xe3, 0x0c, 0x89, 0xb9, 0x44, 0xb2, - 0xee, 0x0d, 0x69, 0x37, 0x86, 0xb4, 0xbb, 0x22, 0xfe, 0x12, 0xaa, 0xa1, 0xd2, 0xba, 0x9c, 0x8a, - 0x7c, 0x20, 0xbe, 0x09, 0xdf, 0x09, 0xdf, 0xd6, 0xcf, 0xc5, 0xc4, 0x85, 0x36, 0xba, 0x62, 0x9d, - 0x16, 0x8d, 0x65, 0xb3, 0xc4, 0xf6, 0x91, 0xc9, 0xf8, 0xc4, 0x24, 0xb7, 0x83, 0xaa, 0xd7, 0x4b, - 0xd9, 0xcb, 0xa5, 0xec, 0xd5, 0x92, 0xdf, 0x2e, 0x34, 0x8c, 0x28, 0xb6, 0x5f, 0x6a, 0xb2, 0x4b, - 0xde, 0x02, 0xb7, 0xfd, 0x62, 0xc5, 0xdc, 0x2c, 0x33, 0x38, 0x51, 0x8a, 0xf1, 0xd9, 0x8a, 0xd7, - 0x7d, 0xed, 0x3f, 0x50, 0x2f, 0x23, 0xba, 0x7d, 0xbc, 0x50, 0xfb, 0xd1, 0x37, 0xef, 0xf5, 0xe2, - 0x5b, 0xa2, 0xcb, 0x97, 0xe8, 0x9b, 0x96, 0x78, 0xea, 0xbe, 0x58, 0xc2, 0x0b, 0x7d, 0x67, 0x89, - 0x86, 0x5c, 0x58, 0x91, 0xd9, 0x8f, 0x03, 0xab, 0xb3, 0x87, 0xd5, 0xc3, 0x15, 0x0c, 0x84, 0xff, - 0xcd, 0x89, 0x33, 0x21, 0xb3, 0x0b, 0x3f, 0xbe, 0x2c, 0x1e, 0x6a, 0x17, 0x80, 0xda, 0xd9, 0x47, - 0xed, 0xb8, 0x09, 0x95, 0xeb, 0x78, 0x9e, 0x1a, 0xef, 0x53, 0xdc, 0x5a, 0xd2, 0x5b, 0x4c, 0x65, - 0xab, 0x69, 0x6e, 0x39, 0xd5, 0xad, 0xa7, 0xbd, 0x05, 0xb5, 0xb7, 0xa2, 0xfe, 0x96, 0xe4, 0xf1, - 0x3f, 0x49, 0xe7, 0xfe, 0x0a, 0xcf, 0x7e, 0x72, 0x45, 0x4b, 0x3d, 0x12, 0x3c, 0x1e, 0x40, 0x72, - 0xde, 0x34, 0x0f, 0x47, 0x67, 0x35, 0x92, 0xac, 0x20, 0x1c, 0xba, 0x42, 0x42, 0x26, 0x2c, 0x64, - 0x42, 0x43, 0x27, 0x3c, 0x6a, 0xee, 0x64, 0xf3, 0xd1, 0x64, 0xf5, 0x03, 0xc6, 0x8a, 0x07, 0x8a, - 0xb9, 0xd2, 0x46, 0xe2, 0x51, 0xa6, 0x77, 0x6c, 0xde, 0x38, 0xe4, 0x09, 0xc2, 0x0e, 0x61, 0xcf, - 0xb0, 0xb0, 0x3b, 0xa3, 0x6a, 0x4a, 0x6a, 0x4d, 0xab, 0x74, 0x0a, 0x3c, 0xd1, 0x14, 0x72, 0x9a, - 0x14, 0x24, 0xaa, 0x7c, 0xfa, 0xfc, 0x6b, 0xe3, 0xbe, 0x72, 0xf7, 0x7b, 0xf5, 0xa2, 0xc2, 0xbe, - 0x4e, 0x1b, 0x13, 0xb1, 0x5b, 0xf4, 0x51, 0xcc, 0xb8, 0x0c, 0xf6, 0x67, 0xec, 0xc8, 0x77, 0xfd, - 0x17, 0xf2, 0x6f, 0x1e, 0xeb, 0x6c, 0xa2, 0x24, 0x8a, 0x2b, 0xa2, 0x77, 0xda, 0x0f, 0x10, 0xc3, - 0x4e, 0x49, 0xd0, 0x4e, 0xc9, 0xe0, 0x21, 0xe2, 0xf1, 0xee, 0xc7, 0x29, 0x62, 0x93, 0xa7, 0x88, - 0x21, 0xa5, 0xf0, 0x26, 0xc0, 0x9b, 0x00, 0x03, 0x03, 0x06, 0x06, 0xbc, 0x09, 0xf0, 0x26, 0x40, - 0xd8, 0xe1, 0x4d, 0x80, 0x37, 0x01, 0xde, 0x84, 0x95, 0xde, 0x84, 0xf4, 0x65, 0xff, 0xc6, 0x8c, - 0x97, 0x23, 0xfd, 0x97, 0x6f, 0x57, 0xc8, 0x27, 0xff, 0x5e, 0x8d, 0x46, 0x6d, 0x5c, 0xf6, 0xc7, - 0xb9, 0x8f, 0x63, 0xf9, 0xa6, 0x39, 0x47, 0x68, 0x36, 0x65, 0x47, 0x23, 0x55, 0xe8, 0x7d, 0x83, - 0x3c, 0x96, 0x01, 0x1e, 0x3b, 0x35, 0xa8, 0x88, 0xd4, 0x20, 0xf3, 0xa9, 0x41, 0xa3, 0x1b, 0xc6, - 0x4f, 0x0a, 0x1a, 0x5f, 0x40, 0x9c, 0x0e, 0x54, 0x44, 0x3a, 0x10, 0x23, 0x07, 0x34, 0x94, 0x0e, - 0x64, 0x77, 0x3a, 0xd6, 0x08, 0x51, 0x25, 0x3d, 0x78, 0xd1, 0x95, 0x70, 0xb5, 0xc3, 0x89, 0x97, - 0x98, 0xab, 0x5d, 0xfa, 0x18, 0xa4, 0x64, 0x95, 0x33, 0x1a, 0x27, 0xf9, 0x6b, 0xa0, 0x90, 0x71, - 0xd7, 0xbf, 0x08, 0xb2, 0x05, 0xd9, 0x82, 0x6c, 0xad, 0x93, 0x2d, 0xa7, 0xa5, 0x24, 0x5d, 0x4e, - 0x0b, 0xf2, 0x05, 0xf9, 0x82, 0x7c, 0xbd, 0x7f, 0xcf, 0x8e, 0xef, 0xb4, 0x63, 0x9d, 0x1a, 0x5b, - 0x78, 0xbf, 0xe8, 0x4a, 0x48, 0x19, 0xa4, 0x2c, 0x31, 0x29, 0xeb, 0x3a, 0x5e, 0x78, 0xaa, 0x20, - 0x64, 0x12, 0xde, 0x68, 0xc5, 0x62, 0x40, 0x6a, 0x2d, 0x4e, 0x34, 0x22, 0x24, 0x5a, 0x95, 0x65, - 0x74, 0x8b, 0xf9, 0x50, 0x14, 0x8c, 0xe9, 0xa9, 0x35, 0x74, 0x49, 0x7c, 0xca, 0x8a, 0x47, 0x47, - 0x09, 0x4e, 0x1a, 0x53, 0x54, 0xa2, 0x6e, 0x54, 0x09, 0xb5, 0x9b, 0x2a, 0x2c, 0x6f, 0x74, 0x1d, - 0x14, 0x10, 0x14, 0xd0, 0x36, 0xd3, 0x3c, 0x2d, 0x5f, 0x62, 0xe5, 0x7b, 0x18, 0xaf, 0x57, 0xad, - 0xbc, 0x13, 0xb6, 0xdd, 0xb4, 0xc4, 0xf7, 0xf0, 0x3c, 0x14, 0xae, 0x78, 0x15, 0xa1, 0xff, 0x66, - 0xd9, 0x61, 0xfb, 0x35, 0x56, 0x25, 0x98, 0x25, 0x7b, 0x6c, 0x90, 0x55, 0xa5, 0xe0, 0x96, 0xd5, - 0xf5, 0xc5, 0xd6, 0x13, 0x8c, 0xa8, 0x0d, 0xa2, 0x38, 0xfb, 0xf1, 0x1c, 0xfc, 0xb9, 0x77, 0x62, - 0x68, 0xa3, 0x6f, 0x94, 0xc3, 0x67, 0x1f, 0x50, 0x75, 0x02, 0x01, 0x0b, 0x1d, 0x90, 0x41, 0xd5, - 0x09, 0xf2, 0x88, 0xf2, 0x3b, 0x79, 0x16, 0xe6, 0x0a, 0x48, 0x2d, 0x3c, 0xd6, 0xfa, 0xba, 0x51, - 0x57, 0x4b, 0xb7, 0xdc, 0xf2, 0xa2, 0x51, 0x9e, 0x08, 0xff, 0x6a, 0xfb, 0x7f, 0x5a, 0x8e, 0x17, - 0x84, 0xb6, 0xd7, 0x7c, 0xaf, 0x7a, 0xd4, 0xe2, 0x47, 0xcd, 0x94, 0x91, 0xf2, 0x44, 0xd8, 0xbf, - 0x65, 0x2a, 0xab, 0x48, 0x8d, 0x9f, 0x8d, 0xaa, 0x88, 0xd4, 0xfc, 0x1c, 0xaf, 0x4f, 0x43, 0x58, - 0xb8, 0x22, 0x1d, 0xc5, 0x4a, 0x56, 0x2f, 0x9a, 0x2c, 0x94, 0x9b, 0x4f, 0x48, 0x58, 0xb9, 0xa8, - 0x6a, 0xd0, 0xb4, 0x36, 0x1f, 0xc1, 0x7e, 0x0e, 0x83, 0xf8, 0xca, 0x7d, 0xf0, 0xe9, 0x6c, 0x14, - 0x26, 0xb1, 0x9f, 0xc3, 0x8d, 0xd4, 0xe9, 0xfd, 0xf7, 0x4a, 0x4b, 0xfe, 0x81, 0x08, 0xbf, 0x0a, - 0xdf, 0x13, 0xa1, 0xbc, 0x69, 0x1f, 0x5d, 0xb9, 0x19, 0x25, 0x49, 0xe2, 0x6d, 0xb6, 0xcd, 0xb3, - 0xeb, 0x63, 0x6d, 0x46, 0x1e, 0x93, 0x5e, 0xfa, 0xe8, 0xd0, 0xab, 0xdd, 0x1c, 0x64, 0xe8, 0xbd, - 0xa9, 0x9f, 0x07, 0x98, 0x0c, 0xa1, 0x76, 0x22, 0xa0, 0x90, 0xb1, 0x13, 0x01, 0x72, 0xdb, 0x5a, - 0x77, 0x7b, 0x93, 0x6d, 0x73, 0xb2, 0xed, 0x4e, 0xb2, 0xed, 0x15, 0x3d, 0xb9, 0xb2, 0x07, 0xd4, - 0x1c, 0xc5, 0xbe, 0xeb, 0x92, 0x25, 0xa5, 0x56, 0x6e, 0x17, 0xa9, 0x12, 0x53, 0x44, 0x02, 0xa2, - 0x2d, 0x28, 0x14, 0x02, 0x43, 0x27, 0x38, 0x54, 0x02, 0x44, 0x2e, 0x48, 0xe4, 0x02, 0x45, 0x2a, - 0x58, 0x6a, 0x02, 0xa6, 0x28, 0x68, 0xda, 0x02, 0x37, 0xa3, 0x8f, 0xec, 0x56, 0xcb, 0x17, 0x41, - 0xa0, 0xbf, 0xd2, 0xd3, 0x1a, 0x6a, 0x3c, 0xa8, 0xe6, 0xd2, 0xd0, 0xb4, 0xb2, 0xd0, 0x16, 0x4d, - 0x4a, 0x11, 0xa5, 0x17, 0x55, 0x6a, 0x91, 0x65, 0x13, 0x5d, 0x36, 0x11, 0x66, 0x11, 0x65, 0x3d, - 0x91, 0xd6, 0x14, 0x6d, 0x79, 0xb7, 0x66, 0x02, 0xe2, 0x99, 0x23, 0x6a, 0x02, 0x32, 0x11, 0x2f, - 0xa2, 0x66, 0x20, 0xd1, 0x80, 0xff, 0x5e, 0xd3, 0x14, 0xe4, 0xc7, 0x51, 0xef, 0x6f, 0xfa, 0x3b, - 0xa4, 0x9e, 0x50, 0xd7, 0x19, 0xb3, 0xca, 0x46, 0xf1, 0xd4, 0x9f, 0x84, 0xab, 0x77, 0xde, 0x95, - 0xb7, 0xbf, 0xe0, 0x71, 0x5d, 0xf8, 0xcd, 0xbe, 0xfd, 0x1c, 0x06, 0xfb, 0x63, 0x4b, 0x7e, 0x3f, - 0x32, 0x8e, 0xa4, 0x2a, 0x0e, 0xe9, 0xcf, 0xab, 0x4a, 0x5a, 0x09, 0x85, 0xee, 0x25, 0x14, 0x6a, - 0xdd, 0x4c, 0x15, 0xd0, 0x5f, 0xd0, 0x5f, 0xc3, 0x88, 0xa4, 0xad, 0x1b, 0x35, 0xea, 0x2d, 0xad, - 0xd4, 0x83, 0x27, 0x7a, 0xcd, 0xb0, 0xe6, 0xea, 0x31, 0x4d, 0xcb, 0x75, 0x8a, 0xb1, 0x4c, 0xae, - 0x86, 0xd3, 0xca, 0x65, 0x90, 0xa9, 0xe9, 0xc4, 0x66, 0xbe, 0x17, 0x81, 0x5f, 0xc0, 0x2f, 0x98, - 0xef, 0x30, 0xdf, 0x61, 0xbe, 0xc3, 0x7c, 0x87, 0xf9, 0x0e, 0xf3, 0x9d, 0xcd, 0x7c, 0xd7, 0x50, - 0xef, 0x9e, 0xf8, 0x1e, 0x5a, 0x5f, 0xdb, 0x1d, 0xeb, 0xc5, 0x6f, 0x77, 0x3b, 0x74, 0xe0, 0x3f, - 0x37, 0x2e, 0xf0, 0x1f, 0xf8, 0x0f, 0xfc, 0x4f, 0x15, 0xfe, 0xeb, 0x9b, 0xaa, 0x94, 0x26, 0xeb, - 0x32, 0xd3, 0x35, 0xfa, 0x6f, 0x16, 0x4c, 0x82, 0xb9, 0x9f, 0xc7, 0x26, 0xae, 0xd3, 0xca, 0x67, - 0x10, 0x80, 0xdb, 0xcd, 0x50, 0x84, 0x81, 0xf5, 0xdc, 0xf6, 0xff, 0xb2, 0xfd, 0x96, 0x42, 0x35, - 0xd8, 0x77, 0x00, 0x65, 0x6e, 0x64, 0x80, 0x30, 0x40, 0x18, 0x20, 0x9c, 0x2a, 0x10, 0x6e, 0xb6, - 0xbb, 0x5e, 0x28, 0xfc, 0xe3, 0x12, 0x21, 0x0c, 0x53, 0x30, 0x70, 0xb5, 0x63, 0xc4, 0xab, 0xbe, - 0x68, 0x44, 0x20, 0xa7, 0x7b, 0xec, 0x98, 0x19, 0xd9, 0x16, 0x86, 0xd5, 0x3c, 0xa6, 0xbc, 0x72, - 0x5c, 0x82, 0x93, 0xb8, 0x4c, 0x12, 0x32, 0xbb, 0x54, 0xf6, 0xf7, 0xcc, 0x2d, 0x55, 0xe1, 0xb4, - 0x54, 0x3a, 0x3e, 0x29, 0x95, 0x0e, 0x4e, 0x0e, 0x4f, 0x0e, 0xce, 0x8e, 0x8e, 0x0a, 0xc7, 0x85, - 0xa3, 0x0c, 0xad, 0xde, 0x4e, 0x3a, 0x46, 0xc9, 0xa2, 0x21, 0xdc, 0xb1, 0x9b, 0x7f, 0x32, 0x11, - 0xb1, 0xc5, 0xa1, 0xc1, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, - 0xc4, 0xc0, 0xc4, 0x36, 0x8f, 0x89, 0x21, 0xa3, 0x70, 0x65, 0x46, 0xa1, 0x44, 0xd7, 0x01, 0xfd, - 0x69, 0xe5, 0x3d, 0xa8, 0x33, 0xea, 0x5a, 0xa0, 0x1e, 0x4a, 0x94, 0xeb, 0x64, 0xb0, 0x4c, 0x07, - 0x49, 0x37, 0x29, 0x58, 0x86, 0x8e, 0xfa, 0x83, 0x48, 0x75, 0x3e, 0xd0, 0x9d, 0x76, 0xcd, 0xfd, - 0x6e, 0x66, 0x9f, 0xe7, 0x95, 0xd2, 0xbf, 0xa6, 0xcb, 0x2f, 0x5c, 0x0f, 0xef, 0x54, 0x1d, 0xdd, - 0xa8, 0x51, 0x7e, 0x0e, 0x83, 0xc6, 0x95, 0xdd, 0xac, 0x0c, 0x86, 0xdf, 0xd2, 0x0e, 0x27, 0xda, - 0x2b, 0x64, 0xb2, 0x25, 0xa3, 0xd3, 0xf9, 0x56, 0xb2, 0xba, 0x9e, 0xd3, 0xb4, 0x03, 0x85, 0x73, - 0xd5, 0x33, 0x57, 0xe3, 0x6c, 0xb5, 0x41, 0x13, 0x75, 0xab, 0xcf, 0x56, 0x0f, 0xb6, 0x9d, 0xe6, - 0xe1, 0xea, 0xa9, 0x31, 0x70, 0xba, 0x9a, 0xcf, 0x37, 0x83, 0xd3, 0xd5, 0x38, 0x5d, 0x6d, 0xd8, - 0xe9, 0x89, 0xf4, 0xec, 0x64, 0x9c, 0x99, 0xdb, 0x9c, 0x9e, 0xdd, 0xa1, 0xf1, 0xaf, 0x4f, 0xd5, - 0xa2, 0xa5, 0x58, 0x61, 0x44, 0x21, 0x12, 0x10, 0x54, 0x36, 0x81, 0x65, 0x13, 0x5c, 0x16, 0x01, - 0xa6, 0xf1, 0x90, 0xa5, 0x2f, 0x0a, 0x31, 0xe0, 0x8d, 0x64, 0xeb, 0x99, 0xf2, 0xa4, 0xec, 0xdd, - 0xdd, 0xc7, 0x03, 0xeb, 0xac, 0xfe, 0xf3, 0xb1, 0x60, 0x9d, 0xd5, 0x87, 0xdf, 0x16, 0x06, 0xff, - 0x0c, 0xbf, 0x2f, 0x3e, 0x1e, 0x58, 0xa5, 0xf1, 0xf7, 0x47, 0x8f, 0x07, 0xd6, 0x51, 0x7d, 0xef, - 0xcb, 0x97, 0x8f, 0x7b, 0x3f, 0x0e, 0x7b, 0xf2, 0x17, 0xee, 0x8f, 0x6e, 0xb6, 0xf7, 0x73, 0xf7, - 0xb1, 0x60, 0x15, 0xeb, 0xe3, 0x1f, 0x0e, 0x1f, 0x0f, 0xac, 0x62, 0x7d, 0x6f, 0x0f, 0xa7, 0xb7, - 0xb3, 0xef, 0x6b, 0x9d, 0xf6, 0x17, 0xec, 0x4f, 0x2c, 0xb0, 0x0c, 0x1c, 0xe1, 0xd6, 0x54, 0xf0, - 0x34, 0x8a, 0x1d, 0x07, 0xb7, 0xc1, 0xac, 0x71, 0x70, 0x3b, 0x6d, 0x07, 0xb7, 0x47, 0x7b, 0x06, - 0x67, 0xb6, 0x8d, 0x38, 0x05, 0x70, 0x66, 0x1b, 0xd0, 0x95, 0x11, 0xa7, 0x40, 0x4b, 0x34, 0xed, - 0x4e, 0xd0, 0x75, 0xed, 0x50, 0x58, 0x5f, 0x85, 0xdd, 0x12, 0x3e, 0x9d, 0x83, 0x60, 0xc9, 0xd8, - 0x70, 0x16, 0xc0, 0x59, 0x00, 0x67, 0x41, 0xaa, 0x9c, 0x05, 0xc2, 0x1b, 0x4b, 0xa9, 0xd3, 0xf6, - 0x46, 0x72, 0x6a, 0x85, 0xfd, 0xdb, 0x10, 0xba, 0x0e, 0x4a, 0x04, 0x63, 0xc5, 0xeb, 0x60, 0xc1, - 0x68, 0x21, 0xe3, 0x80, 0x34, 0xe0, 0x15, 0xf0, 0x0a, 0x78, 0x35, 0x6c, 0x12, 0x52, 0x9a, 0x86, - 0xcb, 0x4c, 0x44, 0x1c, 0x90, 0xd6, 0x04, 0x14, 0x1c, 0x90, 0x06, 0x08, 0x03, 0x84, 0xd3, 0x0c, - 0xc2, 0x38, 0x96, 0x23, 0xf9, 0x60, 0x38, 0x96, 0x83, 0x63, 0x39, 0x38, 0x96, 0xc3, 0x82, 0x8e, - 0x74, 0xa3, 0x64, 0xf1, 0x80, 0x74, 0xdb, 0x77, 0x5e, 0x1c, 0xcf, 0xea, 0xf8, 0xed, 0xb0, 0xdd, - 0x6c, 0xbb, 0x84, 0x34, 0x6c, 0x6e, 0x60, 0xb0, 0x30, 0xb0, 0x30, 0xb0, 0xb0, 0x54, 0xb1, 0x30, - 0xa7, 0x25, 0xbc, 0xd0, 0x09, 0xdf, 0x88, 0xcd, 0x61, 0x02, 0xcd, 0x91, 0xaf, 0x8e, 0x1e, 0xed, - 0x93, 0x1d, 0x10, 0x6e, 0xe3, 0xf1, 0x8b, 0x57, 0xaf, 0xef, 0x1f, 0xca, 0xb5, 0x5a, 0xe3, 0xf6, - 0xee, 0xe6, 0xe1, 0xe6, 0xe2, 0xa6, 0xd6, 0x78, 0xf8, 0xe3, 0xb6, 0x42, 0xb5, 0xa5, 0x07, 0x3a, - 0x35, 0x20, 0x23, 0x91, 0xb4, 0x44, 0x72, 0x76, 0x1a, 0x7e, 0xbd, 0xba, 0xcd, 0xa7, 0x91, 0x43, - 0x31, 0xbd, 0x6f, 0xed, 0xe6, 0xa2, 0x5c, 0x6b, 0x94, 0x7f, 0xfd, 0xf5, 0xae, 0xf2, 0x6b, 0xf9, - 0xa1, 0xb2, 0x4d, 0xaf, 0x5e, 0xbd, 0xaf, 0xde, 0x6f, 0xd3, 0xfb, 0x5e, 0x56, 0xef, 0x2a, 0x17, - 0x0f, 0xb5, 0x3f, 0x1a, 0x17, 0x37, 0xd7, 0xd7, 0x95, 0x8b, 0x87, 0xca, 0xe5, 0x36, 0xbd, 0xfd, - 0x6d, 0xf5, 0x6a, 0x9b, 0x5e, 0xf7, 0xe6, 0xfe, 0xf6, 0x97, 0xc3, 0x6d, 0x7a, 0xe1, 0xfb, 0x87, - 0xf2, 0x43, 0xf5, 0x62, 0xdb, 0x96, 0x78, 0x9b, 0xde, 0xf7, 0xd3, 0xaf, 0x94, 0x9a, 0x99, 0x64, - 0xa4, 0x7a, 0xd2, 0xfc, 0x19, 0x05, 0xc4, 0x60, 0x23, 0xc3, 0x46, 0x86, 0x8d, 0x6c, 0xd4, 0x46, - 0x46, 0xa4, 0x42, 0xf2, 0xc1, 0x10, 0xa9, 0x40, 0xa4, 0x02, 0x91, 0x0a, 0x56, 0x26, 0xb6, 0xa5, - 0xa5, 0x5c, 0x71, 0x5c, 0x1a, 0x9c, 0x0b, 0x9c, 0x6b, 0x0b, 0x38, 0x17, 0x8e, 0x4b, 0xe3, 0xb8, - 0xb4, 0x99, 0x2b, 0xb7, 0xe8, 0xb8, 0xf4, 0xe6, 0xd5, 0xa7, 0x54, 0xab, 0x81, 0x86, 0xd2, 0x94, - 0x9b, 0x51, 0x9a, 0x72, 0xc5, 0x3e, 0x67, 0xaa, 0x4f, 0x59, 0xed, 0x7c, 0x2b, 0xa1, 0x40, 0xa5, - 0xee, 0x3a, 0x19, 0x2e, 0x52, 0x79, 0xac, 0x55, 0xa4, 0xf2, 0x18, 0x45, 0x2a, 0x51, 0xa4, 0x52, - 0x4f, 0x0c, 0x55, 0x8a, 0x54, 0x1e, 0x13, 0x14, 0xa9, 0x3c, 0x46, 0x91, 0x4a, 0x76, 0x5b, 0x14, - 0x45, 0x2a, 0x51, 0xa4, 0xd2, 0xb0, 0x93, 0x07, 0xf5, 0x28, 0x92, 0x71, 0xde, 0xa0, 0x48, 0x25, - 0xbc, 0xae, 0xf0, 0xba, 0xc2, 0xeb, 0xba, 0xf1, 0x5e, 0xd7, 0xe3, 0x2d, 0xf3, 0xba, 0xda, 0xd6, - 0x73, 0xd9, 0xfa, 0xa5, 0xfe, 0xa3, 0xf0, 0xa1, 0xd4, 0x3b, 0xdf, 0xfb, 0x71, 0xd2, 0x9b, 0xff, - 0xe5, 0xcf, 0x65, 0x1f, 0x2b, 0x7c, 0x38, 0xe9, 0x9d, 0xaf, 0xf8, 0xcb, 0x71, 0xef, 0x3c, 0xe6, - 0x18, 0x47, 0xbd, 0xdd, 0x85, 0x8f, 0xf6, 0x7f, 0x5f, 0x5c, 0x75, 0x41, 0x69, 0xc5, 0x05, 0x87, - 0xab, 0x2e, 0x38, 0x5c, 0x71, 0xc1, 0xca, 0x47, 0x2a, 0xae, 0xb8, 0xe0, 0xa8, 0xf7, 0x73, 0xe1, - 0xf3, 0xbb, 0xcb, 0x3f, 0x7a, 0xdc, 0xdb, 0xfb, 0xb9, 0xea, 0x6f, 0x27, 0xbd, 0x9f, 0xe7, 0x7b, - 0x7b, 0xfb, 0xbb, 0x85, 0xe2, 0xe3, 0x81, 0x75, 0x3a, 0xf4, 0x56, 0x17, 0xea, 0x0b, 0x4e, 0xec, - 0xa1, 0x53, 0x1a, 0xae, 0xe8, 0x8d, 0x70, 0x45, 0x1f, 0x4f, 0xbb, 0xe8, 0x8e, 0x51, 0xb9, 0xd3, - 0x20, 0xcb, 0x81, 0xb9, 0x01, 0x73, 0x03, 0x95, 0x3b, 0x51, 0xb9, 0x53, 0x75, 0x05, 0x50, 0xb9, - 0x13, 0xd0, 0x05, 0x4f, 0x49, 0xfc, 0x01, 0x50, 0xb9, 0x13, 0x1e, 0x14, 0x78, 0x50, 0xb6, 0xd9, - 0x83, 0x82, 0xca, 0x9d, 0xfc, 0x4b, 0x87, 0xca, 0x9d, 0x80, 0x57, 0xc0, 0xeb, 0x56, 0xc2, 0x2b, - 0x2a, 0x77, 0xa6, 0x02, 0x80, 0x51, 0xb9, 0x13, 0x20, 0x0c, 0x10, 0xde, 0x56, 0x10, 0xc6, 0x79, - 0x58, 0xc9, 0x07, 0xc3, 0x79, 0x58, 0x9c, 0x87, 0xc5, 0x79, 0x58, 0x16, 0x74, 0xa4, 0x1b, 0x05, - 0x95, 0x3b, 0x51, 0xb9, 0x13, 0x2c, 0x0c, 0x2c, 0x2c, 0x2b, 0x2c, 0x0c, 0x95, 0x3b, 0x51, 0xb9, - 0x13, 0x95, 0x3b, 0xb7, 0xe2, 0xd5, 0x51, 0xb9, 0x13, 0x95, 0x3b, 0x37, 0xf6, 0x75, 0x51, 0xb9, - 0x73, 0x2b, 0x96, 0x18, 0x95, 0x3b, 0x13, 0xb5, 0x8f, 0x51, 0xb9, 0x13, 0x95, 0x3b, 0x61, 0x23, - 0xc3, 0x46, 0xde, 0x2e, 0x1b, 0x19, 0x91, 0x0a, 0xc9, 0x07, 0x43, 0xa4, 0x02, 0x91, 0x0a, 0x44, - 0x2a, 0x58, 0x99, 0x18, 0x2a, 0x77, 0x92, 0xd0, 0x2f, 0x9c, 0x21, 0x07, 0xe7, 0x02, 0xe7, 0xc2, - 0x19, 0x72, 0x29, 0xf1, 0xc2, 0x19, 0x72, 0x9c, 0x21, 0xcf, 0x8e, 0xba, 0xc5, 0x19, 0xf2, 0xf7, - 0xcf, 0x90, 0xa3, 0x9c, 0xe9, 0xf0, 0x62, 0x94, 0x33, 0xdd, 0x98, 0x72, 0xa6, 0xcb, 0xf6, 0x39, - 0x5f, 0x39, 0xd3, 0x63, 0x94, 0x33, 0xd5, 0x5d, 0x27, 0x93, 0xe5, 0x4c, 0x5f, 0x3b, 0x6e, 0x20, - 0x5f, 0xc6, 0x74, 0x70, 0x15, 0xca, 0x97, 0x1a, 0xb4, 0x4b, 0xb6, 0xba, 0x7c, 0xa9, 0x6b, 0x3f, - 0x09, 0x57, 0xb7, 0x7e, 0xe9, 0xf4, 0x20, 0x28, 0x60, 0xca, 0x67, 0x92, 0xa3, 0x80, 0x29, 0x0a, - 0x98, 0x1a, 0xf6, 0x75, 0xa1, 0x2c, 0x47, 0x32, 0x3e, 0xac, 0x6d, 0x2e, 0xcb, 0x31, 0x50, 0x27, - 0x74, 0xbe, 0xe7, 0xe1, 0x70, 0x70, 0x3d, 0xc3, 0xf5, 0x0c, 0xd7, 0x73, 0xaa, 0x5c, 0xcf, 0x7d, - 0x53, 0xc7, 0xa2, 0x90, 0xce, 0x19, 0x45, 0x79, 0x46, 0x30, 0xd6, 0xe8, 0x5d, 0x53, 0x17, 0xef, - 0x1f, 0xcf, 0x5c, 0xd7, 0xf1, 0xc2, 0xc3, 0x62, 0x9e, 0x30, 0x3c, 0x3d, 0x9a, 0xbd, 0x13, 0xc2, - 0x21, 0x69, 0xb3, 0x26, 0xe8, 0x67, 0x73, 0xda, 0xa5, 0x46, 0x1e, 0x9a, 0x27, 0x56, 0x1c, 0x2b, - 0x87, 0x8f, 0x42, 0xf5, 0xc7, 0x4c, 0x37, 0x60, 0x0c, 0xd0, 0x13, 0x21, 0xd3, 0x2a, 0x0f, 0x67, - 0xf6, 0xd7, 0xf4, 0xa0, 0x74, 0x7a, 0x74, 0x72, 0x94, 0xe1, 0x85, 0xdd, 0x49, 0xe7, 0x68, 0xf5, - 0x9d, 0x14, 0x6d, 0x5b, 0x06, 0xf5, 0x20, 0xbc, 0xee, 0xab, 0xf0, 0x87, 0xde, 0x57, 0x7a, 0x1d, - 0x41, 0x51, 0xcf, 0x2a, 0x1a, 0x93, 0xa6, 0xae, 0x15, 0xdd, 0x16, 0x41, 0xf4, 0x50, 0x66, 0x1c, - 0x06, 0x6f, 0x7d, 0x9f, 0x14, 0xee, 0x4f, 0x39, 0x14, 0x33, 0x50, 0x7a, 0x5a, 0xcf, 0x5e, 0x25, - 0xb1, 0x53, 0x51, 0x78, 0x1a, 0x6e, 0x22, 0x14, 0x9e, 0x4e, 0x5b, 0xe1, 0xe9, 0xa1, 0x44, 0xa3, - 0xee, 0x74, 0xac, 0xa9, 0x47, 0xdd, 0x69, 0x20, 0x57, 0x36, 0x90, 0x0b, 0x0e, 0x6e, 0x3e, 0x22, - 0x41, 0x29, 0x96, 0xf4, 0xe2, 0x49, 0x2d, 0xa6, 0x6c, 0xe2, 0xca, 0x26, 0xb6, 0x2c, 0xe2, 0x4b, - 0x63, 0xbe, 0xc1, 0xc1, 0x2d, 0xfd, 0xae, 0x70, 0x70, 0xeb, 0x0c, 0x09, 0x07, 0x37, 0x1c, 0xdc, - 0x26, 0x3d, 0x85, 0xb3, 0x6b, 0x0a, 0x07, 0x77, 0x0a, 0x16, 0x16, 0x0e, 0xee, 0x44, 0xd4, 0x03, - 0x1c, 0xdc, 0x09, 0x6d, 0x0d, 0x34, 0x90, 0x80, 0x05, 0x05, 0x0b, 0x0a, 0x16, 0x94, 0x29, 0x0b, - 0x0a, 0x0d, 0x24, 0x52, 0x01, 0xc0, 0x68, 0x20, 0x01, 0x10, 0x06, 0x08, 0x6f, 0x2b, 0x08, 0xa3, - 0x2c, 0x53, 0x0a, 0xfc, 0x2d, 0x28, 0xcb, 0xc4, 0xe1, 0x4e, 0x41, 0x59, 0x26, 0xf3, 0xab, 0x07, - 0x43, 0x58, 0x79, 0x59, 0x50, 0x20, 0x13, 0x4c, 0x0c, 0x4c, 0x0c, 0x4c, 0x0c, 0x4c, 0x0c, 0x4c, - 0x0c, 0x4c, 0x0c, 0x4c, 0x0c, 0x4c, 0x2c, 0x31, 0x26, 0xd6, 0xee, 0x74, 0x44, 0xcb, 0x9a, 0x64, - 0x78, 0x58, 0x41, 0x68, 0x37, 0xff, 0x24, 0xe4, 0x63, 0x2b, 0x6e, 0x00, 0x56, 0x06, 0x56, 0x06, - 0x56, 0x96, 0x2a, 0x56, 0x86, 0x34, 0x2f, 0xd5, 0x99, 0x43, 0x9a, 0x17, 0x25, 0x55, 0x40, 0x9a, - 0x57, 0x32, 0x3c, 0x8a, 0x81, 0x0d, 0xb3, 0xb2, 0x62, 0xe3, 0x6b, 0x8a, 0x34, 0x2f, 0x9e, 0xd1, - 0x90, 0xe6, 0xa5, 0xa5, 0x61, 0x91, 0xe6, 0xc5, 0xc5, 0xb1, 0xb4, 0x4a, 0xdc, 0x2e, 0xd3, 0x6b, - 0xda, 0xd5, 0x6a, 0x97, 0x01, 0x2b, 0xfd, 0xa0, 0x5a, 0x25, 0x71, 0x09, 0x0d, 0x5b, 0x1c, 0x26, - 0x5f, 0x71, 0x98, 0x7c, 0xf3, 0x6a, 0x50, 0xab, 0xd8, 0x1d, 0x28, 0x41, 0x9d, 0xdb, 0x8c, 0x12, - 0xd4, 0xf3, 0xfb, 0x9b, 0xa9, 0xf6, 0x74, 0xad, 0x7f, 0x07, 0x14, 0x9f, 0x56, 0x5d, 0x21, 0x93, - 0x45, 0xa7, 0xe7, 0xb2, 0x10, 0xe5, 0xeb, 0x4f, 0xcf, 0x0f, 0x80, 0x52, 0xd4, 0x06, 0xfd, 0x7b, - 0x5b, 0x5d, 0x8a, 0x5a, 0x33, 0xcb, 0x9f, 0x26, 0xab, 0x1f, 0x05, 0xa9, 0x8d, 0x6e, 0x78, 0xb2, - 0x8d, 0x4f, 0x22, 0x00, 0x66, 0x88, 0x9b, 0x4e, 0x41, 0xea, 0x96, 0xd3, 0xd7, 0x6a, 0xb6, 0x4b, - 0x52, 0x95, 0x3a, 0x1a, 0x0c, 0xa5, 0xa9, 0x51, 0xb9, 0xc3, 0xb0, 0x88, 0x25, 0x63, 0xaa, 0x6a, - 0x57, 0xee, 0x88, 0xa4, 0x86, 0x2e, 0xd0, 0x3b, 0x19, 0x92, 0x26, 0xb4, 0x5b, 0x40, 0x68, 0xd7, - 0xa0, 0xb8, 0xb2, 0x89, 0x2d, 0x9b, 0xf8, 0xb2, 0x88, 0x31, 0x8d, 0xe3, 0x52, 0xd7, 0xed, 0xa8, - 0x2b, 0xde, 0xd3, 0x62, 0xae, 0xd3, 0xfa, 0xe1, 0x3d, 0x59, 0x57, 0x6f, 0x05, 0xc1, 0x24, 0xf0, - 0xe4, 0x82, 0xcf, 0x01, 0x00, 0x7c, 0x40, 0xc0, 0x05, 0x08, 0xec, 0xc0, 0xc0, 0x0e, 0x10, 0xac, - 0x40, 0x41, 0x03, 0x18, 0x44, 0xc0, 0x41, 0x0e, 0x20, 0xd1, 0x80, 0x4e, 0x8b, 0x7e, 0x43, 0x45, - 0x9d, 0x5b, 0x5b, 0xd4, 0x3b, 0x89, 0x29, 0x5b, 0x92, 0x1a, 0x58, 0x38, 0x01, 0x86, 0x1f, 0x68, - 0xb8, 0x01, 0xc7, 0x18, 0xf0, 0x18, 0x03, 0x20, 0x23, 0x40, 0x44, 0x0b, 0x48, 0xc4, 0xc0, 0x14, - 0xcd, 0x00, 0x59, 0xf2, 0xda, 0xca, 0xfd, 0xde, 0x75, 0xbc, 0x90, 0xe4, 0x7c, 0xc1, 0x2a, 0x74, - 0x39, 0x65, 0x18, 0x9a, 0x27, 0x45, 0x6b, 0xfc, 0xc5, 0x23, 0x9f, 0x39, 0xee, 0x94, 0x2d, 0x66, - 0x58, 0x5f, 0xb8, 0x0d, 0xd3, 0xf9, 0x85, 0x85, 0xfb, 0x18, 0x48, 0xf8, 0x61, 0x12, 0xdf, 0xd9, - 0xa5, 0x67, 0xcc, 0xec, 0x4a, 0x6a, 0xe9, 0xf9, 0xcf, 0x43, 0x24, 0xba, 0x1b, 0x76, 0xb2, 0x31, - 0x6a, 0x3d, 0xa5, 0xe9, 0x6a, 0xe9, 0xe2, 0xfa, 0x44, 0x69, 0x2b, 0x0b, 0xe3, 0x32, 0x04, 0x91, - 0xd7, 0x97, 0x96, 0x19, 0xbb, 0xf2, 0x27, 0xdf, 0x6b, 0xf5, 0x4d, 0xa0, 0x5f, 0x39, 0x82, 0x55, - 0xa3, 0x34, 0xa6, 0xe8, 0x8d, 0x28, 0x62, 0xa8, 0x85, 0x37, 0x06, 0xde, 0x98, 0x6d, 0xf7, 0xc6, - 0x90, 0x1b, 0x3b, 0x0c, 0x65, 0xc5, 0xe6, 0xc5, 0xbf, 0x40, 0x79, 0xf2, 0x64, 0xb1, 0xa3, 0x84, - 0x6e, 0xf9, 0xb0, 0x94, 0x01, 0xba, 0xd7, 0xe9, 0x86, 0x96, 0xe3, 0x85, 0xc2, 0x7f, 0xb6, 0x9b, - 0x22, 0x60, 0x80, 0xf7, 0xf9, 0x3b, 0xc0, 0xf5, 0x0e, 0xb0, 0x07, 0xd8, 0xa7, 0x10, 0xec, 0xe9, - 0x5d, 0xef, 0xb3, 0xa2, 0xcf, 0xe8, 0x87, 0x9f, 0xbb, 0x11, 0x8f, 0x53, 0xbe, 0x00, 0xa7, 0x3c, - 0x9c, 0xf2, 0x29, 0x82, 0x26, 0x23, 0x10, 0xc5, 0xe3, 0x23, 0xa1, 0x76, 0xca, 0x53, 0x43, 0x57, - 0x34, 0x30, 0x71, 0x1a, 0xc2, 0x4a, 0x71, 0x22, 0x4d, 0x4b, 0x30, 0x04, 0x60, 0xec, 0x40, 0x66, - 0x02, 0xd0, 0xcc, 0x01, 0x9b, 0x29, 0x80, 0x33, 0x0e, 0x74, 0xc6, 0x01, 0xcf, 0x28, 0xf0, 0xf1, - 0x00, 0x20, 0x13, 0x10, 0xb2, 0x03, 0xe2, 0x84, 0xdb, 0xb5, 0xf8, 0x37, 0x30, 0x5b, 0x9a, 0xc5, - 0x2a, 0x80, 0xe4, 0x0e, 0xd2, 0x70, 0x03, 0xa5, 0x49, 0xc0, 0x34, 0x0f, 0x9c, 0xa6, 0x01, 0x34, - 0x31, 0x20, 0x4d, 0x0c, 0x50, 0x13, 0x01, 0x56, 0x5e, 0x80, 0x65, 0x06, 0xda, 0x68, 0xc6, 0xd8, - 0xd2, 0x42, 0x56, 0xca, 0x5b, 0x10, 0xfa, 0x8e, 0xf7, 0x62, 0x42, 0xde, 0xc6, 0xf4, 0xf1, 0x74, - 0x27, 0x9b, 0xeb, 0x9f, 0x2d, 0xd5, 0xcd, 0x14, 0x15, 0x5d, 0xb8, 0x4f, 0x5a, 0xa2, 0xa4, 0xf3, - 0x0e, 0xe2, 0xf9, 0x5f, 0x90, 0x86, 0x51, 0xf9, 0xb7, 0x06, 0x47, 0x09, 0x22, 0x46, 0xb2, 0xc5, - 0x4f, 0xb2, 0xb8, 0x6b, 0x1c, 0xc1, 0xfa, 0x84, 0xf5, 0x09, 0xeb, 0x33, 0x55, 0x2a, 0x8c, 0x9d, - 0x0c, 0x31, 0x86, 0x91, 0x57, 0xb2, 0x9f, 0x13, 0xc6, 0x7b, 0xf0, 0x85, 0x99, 0xb3, 0xa9, 0xf0, - 0x86, 0x45, 0x82, 0xd8, 0x75, 0xde, 0xf0, 0x36, 0x19, 0x77, 0xba, 0x16, 0xa1, 0xf6, 0xa0, 0xf6, - 0xa0, 0xf6, 0x52, 0xa0, 0xf6, 0xe0, 0x74, 0x4d, 0x91, 0x5d, 0x60, 0xcc, 0x3e, 0x30, 0x09, 0x98, - 0xe6, 0x81, 0xd3, 0x34, 0x80, 0x26, 0x06, 0xa4, 0x89, 0x01, 0x6a, 0x22, 0xc0, 0xca, 0xef, 0x74, - 0xcb, 0xc1, 0xe9, 0x4a, 0x42, 0x1f, 0x33, 0xeb, 0x74, 0x65, 0x24, 0x73, 0x7c, 0x29, 0x65, 0xab, - 0xd5, 0x21, 0x53, 0x72, 0x19, 0xb4, 0x22, 0x8f, 0x56, 0x74, 0x9e, 0xa1, 0x14, 0x37, 0x50, 0x29, - 0x3a, 0xcf, 0xd0, 0x89, 0x69, 0xd3, 0x89, 0xfc, 0x3e, 0xb8, 0x05, 0xa5, 0x78, 0x62, 0xe0, 0x5e, - 0xb7, 0x51, 0x64, 0xac, 0xbf, 0xed, 0xce, 0xa7, 0x02, 0x54, 0x73, 0xbf, 0x18, 0xfd, 0x3c, 0xa8, - 0xdf, 0x0b, 0x65, 0xbd, 0x30, 0x8f, 0x41, 0xf7, 0x29, 0x01, 0x7d, 0x3d, 0x73, 0x57, 0xa8, 0x6c, - 0xa8, 0x6c, 0xa8, 0x6c, 0xa8, 0x6c, 0xa8, 0x6c, 0xa8, 0xec, 0xc1, 0x2f, 0x1e, 0x27, 0x2a, 0xfb, - 0x7f, 0x9a, 0x5d, 0xdf, 0x17, 0x5e, 0xb8, 0xbb, 0xb7, 0xff, 0xf1, 0xe3, 0x7e, 0xf4, 0x89, 0xfa, - 0xe8, 0x92, 0x69, 0x3d, 0x12, 0x2c, 0xf9, 0x5d, 0x34, 0x72, 0x4b, 0x7c, 0xcf, 0x23, 0x3f, 0x8a, - 0x5f, 0x6a, 0x90, 0x1f, 0x35, 0x9f, 0x1f, 0xa5, 0xd1, 0x51, 0xc5, 0xfc, 0xce, 0x48, 0xf7, 0x39, - 0xa2, 0x51, 0x47, 0x17, 0xfa, 0xba, 0x7e, 0xa4, 0xed, 0x98, 0x16, 0x46, 0xe7, 0x68, 0xcf, 0xb4, - 0x78, 0x13, 0x86, 0x76, 0x4d, 0x0b, 0x37, 0x21, 0x6d, 0xdf, 0xc4, 0xbd, 0x5b, 0x98, 0x91, 0x28, - 0x33, 0x08, 0x94, 0x67, 0xc9, 0x00, 0x59, 0xdb, 0x13, 0xe7, 0x5a, 0x7c, 0x0f, 0x7f, 0x6b, 0x77, - 0x7e, 0xed, 0x3f, 0x79, 0xe3, 0x62, 0xfc, 0xb4, 0x8d, 0x6a, 0xff, 0xe1, 0xaa, 0xd1, 0xb3, 0xa1, - 0x12, 0x53, 0x72, 0x3b, 0x39, 0xb5, 0x3b, 0x78, 0x93, 0x4a, 0x78, 0xd0, 0xe6, 0x4a, 0xb1, 0xe4, - 0x46, 0xb1, 0x15, 0xeb, 0x28, 0xa2, 0x58, 0x47, 0x86, 0x5c, 0x15, 0x28, 0xd6, 0x91, 0xe2, 0x62, - 0x1d, 0xad, 0xa0, 0xd9, 0xe1, 0xab, 0xd0, 0x31, 0x18, 0x1d, 0xb5, 0xb2, 0x51, 0x96, 0x23, 0x71, - 0x3f, 0x29, 0xca, 0x72, 0x98, 0x33, 0x90, 0xf8, 0x6b, 0x65, 0x33, 0xe0, 0xca, 0x34, 0xb6, 0x1c, - 0xa1, 0x52, 0xf6, 0x8c, 0x97, 0x01, 0x95, 0xb2, 0x25, 0xef, 0x83, 0x4a, 0xd9, 0xa9, 0x5d, 0xfa, - 0xe3, 0x43, 0xd4, 0xc5, 0x36, 0x3d, 0x6a, 0x3d, 0xd5, 0xea, 0x0a, 0x4e, 0xda, 0x78, 0x37, 0xe1, - 0x75, 0xd2, 0xee, 0xa4, 0x70, 0x7b, 0xa0, 0x8b, 0x10, 0x2c, 0x23, 0x58, 0x46, 0xb0, 0x8c, 0x32, - 0x64, 0x19, 0xa1, 0x8b, 0x10, 0x6c, 0x23, 0xd8, 0x46, 0xb0, 0x8d, 0x94, 0x96, 0x1e, 0x5d, 0x84, - 0x36, 0xd0, 0x5a, 0x4a, 0x25, 0xb1, 0x9e, 0x0d, 0xdf, 0xf2, 0x91, 0xec, 0xb9, 0xfb, 0x80, 0x70, - 0x83, 0x70, 0x83, 0x70, 0x83, 0x70, 0x13, 0xee, 0x77, 0xbe, 0x9c, 0x6a, 0xce, 0x1c, 0xea, 0xe9, - 0xd2, 0x43, 0xd3, 0xff, 0x2d, 0xa6, 0xd5, 0x70, 0x54, 0x25, 0x42, 0x3e, 0x95, 0xdc, 0xb8, 0x69, - 0xc9, 0xa7, 0x22, 0x4c, 0x39, 0x26, 0x48, 0xa2, 0xda, 0x49, 0x70, 0xc9, 0xc9, 0x52, 0x86, 0x69, - 0xbd, 0xcf, 0x2c, 0xde, 0x66, 0x16, 0xef, 0x32, 0xad, 0x37, 0x59, 0x77, 0x35, 0x89, 0x05, 0x37, - 0x2d, 0x02, 0x9b, 0x27, 0xc9, 0x33, 0x54, 0xcc, 0xc8, 0xd5, 0xc3, 0x09, 0x75, 0xe9, 0x56, 0xbb, - 0x52, 0x71, 0x07, 0x51, 0xed, 0x9c, 0x64, 0x77, 0x8c, 0xda, 0x52, 0xc9, 0x4f, 0xb4, 0xc2, 0x24, - 0xeb, 0xb6, 0x62, 0xa1, 0x69, 0xb5, 0xa2, 0x99, 0xc9, 0xaa, 0x6d, 0xd1, 0x51, 0x58, 0x6e, 0x74, - 0x16, 0x1a, 0x95, 0x25, 0x46, 0x6e, 0x71, 0x91, 0x5b, 0x56, 0xa4, 0x16, 0x94, 0x59, 0x60, 0xd2, - 0xcd, 0x14, 0xa5, 0x88, 0x7d, 0xd2, 0xc5, 0x3a, 0x89, 0x5c, 0x2d, 0x64, 0xae, 0x15, 0x4a, 0x57, - 0x0a, 0xbd, 0xeb, 0x84, 0xda, 0x55, 0xc2, 0xe6, 0x1a, 0x61, 0x73, 0x85, 0xb0, 0xb8, 0x3e, 0x92, - 0xb5, 0x38, 0xc8, 0x5c, 0x19, 0xf4, 0xb1, 0x42, 0xc2, 0xd8, 0x20, 0x71, 0x2c, 0x90, 0xd0, 0x08, - 0xe7, 0x88, 0xf5, 0x71, 0x79, 0x90, 0x99, 0x62, 0x79, 0x9c, 0xd1, 0x1a, 0xca, 0xe8, 0x02, 0x47, - 0x6c, 0x8e, 0x7b, 0xa9, 0xf8, 0x63, 0x6f, 0xac, 0xab, 0x97, 0x12, 0xa7, 0x50, 0x1d, 0x46, 0x67, - 0xda, 0x8d, 0x4e, 0xe5, 0xa6, 0x2e, 0x66, 0xec, 0x4d, 0x0d, 0xda, 0xab, 0x4f, 0x77, 0x35, 0x41, - 0x06, 0x76, 0x26, 0xec, 0x4c, 0xd3, 0x58, 0xa4, 0x4d, 0x4b, 0x09, 0x23, 0x69, 0x14, 0x11, 0x33, - 0xc2, 0xa6, 0x1c, 0x66, 0x00, 0x6b, 0x8c, 0xb0, 0x81, 0x3e, 0x6e, 0x4d, 0x86, 0x82, 0x9b, 0x0c, - 0xf0, 0x05, 0x37, 0x99, 0x8c, 0xf8, 0xd1, 0x39, 0xcb, 0xa2, 0x11, 0x69, 0x5c, 0x66, 0x05, 0xb8, - 0xcc, 0xe0, 0x32, 0xdb, 0x4e, 0x97, 0x19, 0x55, 0xb5, 0x04, 0xdd, 0x20, 0xd4, 0xca, 0xed, 0x4b, - 0xda, 0xff, 0x9f, 0xad, 0xdc, 0xca, 0x01, 0xca, 0xad, 0x50, 0xfa, 0x91, 0x50, 0x6e, 0x85, 0xdf, - 0x91, 0x94, 0xd6, 0x72, 0x2b, 0xc3, 0x82, 0xa1, 0x7c, 0x67, 0x0a, 0x07, 0xc3, 0x23, 0xcb, 0x19, - 0x59, 0xce, 0x89, 0xc1, 0x8f, 0x31, 0x18, 0x32, 0x02, 0x47, 0xb4, 0xb0, 0x44, 0x0c, 0x4f, 0x74, - 0x3e, 0x18, 0x03, 0xbe, 0x19, 0x4e, 0x9f, 0x4d, 0x1c, 0x5f, 0xce, 0x8a, 0x44, 0xe7, 0x89, 0x87, - 0x3a, 0xf2, 0xf6, 0xd0, 0xd7, 0x74, 0x46, 0xbe, 0xb3, 0xdc, 0xb8, 0xe6, 0xe3, 0x12, 0x2b, 0xb7, - 0xc3, 0x26, 0x95, 0x8c, 0xa4, 0x25, 0x1f, 0x2c, 0xa4, 0x83, 0x98, 0x6c, 0xc0, 0x86, 0x81, 0x0d, - 0xb3, 0xed, 0x36, 0x0c, 0x39, 0x39, 0x60, 0x24, 0x05, 0x1c, 0x64, 0x60, 0x59, 0x40, 0x87, 0x4e, - 0xc5, 0xa3, 0x18, 0x70, 0xd2, 0xde, 0x29, 0x14, 0x03, 0x06, 0xb2, 0xc3, 0x3b, 0x05, 0xef, 0x14, - 0xbc, 0x53, 0xf0, 0x4e, 0xc1, 0x3b, 0x05, 0xef, 0x14, 0xbc, 0x53, 0xc9, 0x79, 0xa7, 0x08, 0x09, - 0xce, 0x5f, 0xc2, 0x79, 0xf9, 0x1a, 0xf2, 0x29, 0xa3, 0xd1, 0xf8, 0xd0, 0x46, 0xd0, 0x46, 0xd0, - 0x46, 0xd0, 0x46, 0x84, 0xfb, 0x1d, 0x25, 0x18, 0x17, 0xbe, 0x50, 0x82, 0x31, 0xd6, 0x6d, 0x50, - 0x82, 0x51, 0x6e, 0xe9, 0x51, 0x82, 0x31, 0x6b, 0xbb, 0x01, 0x25, 0x18, 0x37, 0xc8, 0xff, 0xb4, - 0xd1, 0xe1, 0x5f, 0xd4, 0xba, 0x9a, 0xa6, 0xc1, 0x54, 0xee, 0x3b, 0x94, 0xbb, 0x42, 0xb9, 0x2b, - 0x1e, 0x81, 0x4d, 0xa2, 0xd6, 0xd5, 0xe8, 0x07, 0x54, 0xba, 0xca, 0xc8, 0x66, 0x49, 0xf3, 0x31, - 0x3e, 0xbd, 0x10, 0x2e, 0x49, 0xc8, 0x96, 0xec, 0xf8, 0x5e, 0x11, 0xc7, 0xf7, 0x18, 0xbd, 0x48, - 0x38, 0xbe, 0x37, 0x79, 0x72, 0xed, 0xe3, 0x7b, 0x4f, 0x76, 0xf3, 0xcf, 0x6e, 0xc7, 0x22, 0xae, - 0x47, 0x1e, 0xed, 0xc2, 0xe5, 0xc3, 0xa3, 0x16, 0x16, 0xbf, 0xf8, 0x52, 0x8b, 0x31, 0x9b, 0x38, - 0xb3, 0x89, 0x35, 0x8b, 0x78, 0xa7, 0xc3, 0x22, 0xa1, 0xaf, 0x85, 0x45, 0x17, 0x42, 0xa4, 0x0c, - 0x19, 0x2e, 0x86, 0x08, 0x79, 0x0a, 0x74, 0x6b, 0x70, 0x50, 0x0d, 0x05, 0xdb, 0x6c, 0xbb, 0x6d, - 0x9f, 0x0e, 0x6b, 0x87, 0xc3, 0x01, 0x5b, 0x81, 0xad, 0xc0, 0xd6, 0x54, 0x61, 0x2b, 0xea, 0x0c, - 0x4a, 0xfa, 0xb4, 0x50, 0x67, 0x10, 0x75, 0x06, 0x51, 0x67, 0x90, 0x1e, 0x1a, 0xe9, 0x46, 0xa9, - 0x67, 0x90, 0x6e, 0xa1, 0xa0, 0x33, 0x88, 0x16, 0x88, 0x16, 0x88, 0x16, 0x88, 0x16, 0x88, 0x16, - 0x88, 0x16, 0x88, 0x16, 0x88, 0x16, 0xf9, 0x95, 0xdb, 0x17, 0x5b, 0xd5, 0x48, 0x93, 0x51, 0x88, - 0xab, 0xee, 0x30, 0x2e, 0x86, 0x72, 0x4b, 0x37, 0xbd, 0x9c, 0x16, 0x92, 0x1c, 0x16, 0x92, 0x9c, - 0x15, 0xbd, 0x1c, 0x15, 0xd9, 0xd9, 0xd6, 0xdc, 0xf2, 0xe6, 0xb7, 0x7a, 0x5e, 0x29, 0xa8, 0x2f, - 0x95, 0x50, 0x22, 0x27, 0x47, 0xf1, 0xa5, 0x21, 0xde, 0x27, 0x63, 0xae, 0xa0, 0xea, 0xca, 0x19, - 0x58, 0xb1, 0x78, 0xf3, 0xb7, 0x7e, 0x36, 0x62, 0xcc, 0x84, 0x42, 0xd9, 0x65, 0xe5, 0x32, 0xcb, - 0x92, 0x79, 0x19, 0xd2, 0x36, 0xb1, 0x8a, 0xed, 0xab, 0x6e, 0xe3, 0xaa, 0xda, 0xb2, 0xda, 0x36, - 0xab, 0xb6, 0x6d, 0xaa, 0x65, 0x83, 0xd2, 0xca, 0xa0, 0x6c, 0xde, 0x83, 0x7a, 0x99, 0x62, 0xdd, - 0xb2, 0xc4, 0x8a, 0x49, 0x45, 0xca, 0x8e, 0x1d, 0x1d, 0x47, 0x8e, 0xbe, 0xe3, 0x46, 0xd7, 0x51, - 0x43, 0xe6, 0x98, 0x21, 0x73, 0xc4, 0x90, 0x38, 0x5e, 0x78, 0x89, 0x9b, 0x6a, 0x12, 0x10, 0x7a, - 0x4b, 0xe6, 0x90, 0x75, 0x97, 0x98, 0x67, 0x73, 0xab, 0x7b, 0x4b, 0x92, 0x14, 0x1a, 0x21, 0x2d, - 0x2c, 0x82, 0x80, 0x44, 0x12, 0x62, 0xca, 0x26, 0xae, 0x6c, 0x62, 0xcb, 0x22, 0xbe, 0x34, 0xfe, - 0x32, 0x04, 0x24, 0x62, 0x0d, 0x85, 0x80, 0x04, 0xc1, 0xb0, 0x08, 0x48, 0x20, 0x20, 0x61, 0x76, - 0xf5, 0x10, 0x90, 0x30, 0xc8, 0xf0, 0x32, 0x10, 0x90, 0x20, 0x2a, 0xd5, 0x6c, 0xa8, 0xab, 0xa4, - 0x16, 0xe1, 0x25, 0x21, 0xba, 0xe8, 0x2d, 0x09, 0x3b, 0x13, 0xbd, 0x25, 0x53, 0xd7, 0x5b, 0x52, - 0xbd, 0x9e, 0x9b, 0x29, 0xe4, 0x0a, 0x85, 0xff, 0x6c, 0x37, 0x85, 0xd5, 0x9f, 0x3f, 0x02, 0x04, - 0x9b, 0x1e, 0x0e, 0x1e, 0xb3, 0xbe, 0x44, 0x3a, 0xcf, 0x00, 0x32, 0x05, 0x20, 0x73, 0x9e, 0xb7, - 0xc6, 0x5f, 0x46, 0xd4, 0x7f, 0x8e, 0xb6, 0xef, 0xdc, 0xb6, 0x34, 0x98, 0x74, 0x9e, 0xe1, 0x30, - 0x63, 0x70, 0x98, 0xe9, 0x88, 0x6f, 0x3a, 0xfc, 0x65, 0x64, 0xed, 0x25, 0x23, 0xa5, 0xc8, 0xd1, - 0x9c, 0x65, 0x3c, 0x34, 0x1a, 0xb4, 0xa4, 0x06, 0x0c, 0xb8, 0x40, 0x81, 0x1d, 0x1c, 0xd8, 0x41, - 0x82, 0x13, 0x2c, 0x88, 0x3d, 0x49, 0x68, 0xcf, 0x42, 0x33, 0xe6, 0x6d, 0xe4, 0x1c, 0xea, 0x2f, - 0xf3, 0x79, 0x04, 0x58, 0xc1, 0xfc, 0x2f, 0x46, 0x3f, 0x0f, 0xb2, 0xe9, 0x36, 0xa9, 0x77, 0x4b, - 0xf7, 0x89, 0x11, 0xff, 0x67, 0x46, 0x87, 0x0a, 0x80, 0x0a, 0x80, 0x0a, 0x80, 0x0a, 0xc8, 0xac, - 0x0a, 0x78, 0x9c, 0xa8, 0x80, 0xff, 0x69, 0x76, 0x7d, 0x5f, 0x78, 0xe1, 0xee, 0xde, 0xfe, 0xc7, - 0x8f, 0xfb, 0xd1, 0x27, 0xea, 0xa3, 0x4b, 0xa6, 0x71, 0x2f, 0x58, 0xf2, 0xbb, 0x68, 0xe4, 0x34, - 0x75, 0x02, 0x4b, 0xd4, 0x9a, 0xa9, 0x7c, 0x1f, 0x44, 0xec, 0xf4, 0xa3, 0xe2, 0xf4, 0x06, 0x6e, - 0xbb, 0x69, 0x89, 0xef, 0xe1, 0x79, 0x28, 0x5c, 0xf1, 0x2a, 0x42, 0xff, 0xcd, 0x6a, 0x7b, 0x56, - 0xf3, 0xeb, 0x20, 0x8c, 0xcf, 0x62, 0xf4, 0x3e, 0xdb, 0x6e, 0xc0, 0x61, 0xf5, 0x26, 0x6d, 0xf0, - 0xd6, 0xb7, 0xa7, 0x6e, 0xe8, 0x54, 0x74, 0x70, 0xc6, 0xe5, 0x4c, 0xd2, 0xd6, 0x35, 0x99, 0xf3, - 0xfb, 0x34, 0x4d, 0xfe, 0x48, 0x9b, 0xfb, 0x91, 0xbb, 0x00, 0x8b, 0x70, 0x01, 0xc2, 0x05, 0x08, - 0x17, 0x20, 0x5c, 0x80, 0xb0, 0xff, 0x60, 0xff, 0xc1, 0xfe, 0x83, 0xfd, 0x07, 0x17, 0x20, 0x5c, - 0x80, 0x50, 0x01, 0x50, 0x01, 0x50, 0x01, 0x50, 0x01, 0x70, 0x01, 0x32, 0x5b, 0x33, 0x9b, 0xe0, - 0xdf, 0x21, 0xe8, 0xdb, 0x84, 0x24, 0x7d, 0xf6, 0x65, 0xca, 0x6b, 0xf9, 0xc1, 0xe2, 0x16, 0x55, - 0x69, 0x54, 0xc7, 0xf7, 0xbc, 0x13, 0xcf, 0x68, 0xfe, 0xc2, 0xe9, 0xca, 0x43, 0xf3, 0x17, 0x33, - 0x1c, 0x0c, 0xc7, 0x03, 0xe8, 0x9c, 0x6f, 0x79, 0xe1, 0x35, 0xed, 0x4e, 0xd0, 0x75, 0xed, 0x50, - 0x58, 0x5f, 0x85, 0xdd, 0x12, 0x84, 0xdd, 0x08, 0x96, 0x8c, 0x8d, 0x03, 0xea, 0xfc, 0x82, 0xcb, - 0x65, 0x54, 0xe1, 0x80, 0x7a, 0x0a, 0xf8, 0x29, 0xfd, 0x01, 0xf5, 0x89, 0x94, 0x3a, 0x6d, 0x6f, - 0x24, 0xa7, 0x56, 0xd8, 0xbf, 0x0d, 0x61, 0x23, 0x98, 0x12, 0xc1, 0x58, 0x15, 0xaf, 0xfb, 0xda, - 0x7f, 0xf5, 0x5e, 0x16, 0x0b, 0x8f, 0xa3, 0xda, 0x07, 0xc0, 0x14, 0x60, 0xba, 0xf1, 0x60, 0x8a, - 0x6a, 0x1f, 0x32, 0x0f, 0x86, 0x6a, 0x1f, 0xa8, 0xf6, 0x81, 0x6a, 0x1f, 0x2c, 0xd0, 0x48, 0x37, - 0x4a, 0x26, 0xfb, 0xbc, 0x74, 0x2c, 0xbb, 0xd5, 0xf2, 0x45, 0x10, 0x10, 0x72, 0xae, 0xc9, 0x98, - 0x20, 0x5e, 0x20, 0x5e, 0x20, 0x5e, 0xa9, 0x22, 0x5e, 0x64, 0xd2, 0x39, 0x63, 0xb6, 0x9e, 0x11, - 0x8c, 0x35, 0x7a, 0xd7, 0xd4, 0x91, 0xaf, 0xc9, 0xcc, 0x7d, 0x2b, 0x11, 0xce, 0xdd, 0xc2, 0x1c, - 0x9e, 0xd2, 0x86, 0x48, 0x43, 0xe1, 0x7b, 0x64, 0xd3, 0x19, 0x0d, 0xfc, 0xef, 0xdd, 0xdd, 0xc7, - 0x03, 0xeb, 0xac, 0xfe, 0xf3, 0xb1, 0x60, 0x9d, 0xd5, 0x87, 0xdf, 0x16, 0x06, 0xff, 0x0c, 0xbf, - 0x2f, 0x3e, 0x1e, 0x58, 0xa5, 0xf1, 0xf7, 0x47, 0x8f, 0x07, 0xd6, 0x51, 0x7d, 0xef, 0xcb, 0x97, - 0x8f, 0x7b, 0x3f, 0x0e, 0x7b, 0xf2, 0x17, 0xfe, 0x8d, 0x2e, 0x84, 0x5f, 0x4f, 0x53, 0x08, 0x9f, - 0x67, 0x73, 0x1e, 0x63, 0x73, 0x0e, 0x37, 0xa7, 0x6d, 0x3d, 0x97, 0xad, 0x5f, 0xea, 0x3f, 0x0a, - 0x1f, 0x4a, 0xbd, 0xf3, 0xbd, 0x1f, 0x27, 0xbd, 0xf9, 0x5f, 0xfe, 0x5c, 0xf6, 0xb1, 0xc2, 0x87, - 0x93, 0xde, 0xf9, 0x8a, 0xbf, 0x1c, 0xf7, 0xce, 0x63, 0x8e, 0x71, 0xd4, 0xdb, 0x5d, 0xf8, 0x68, - 0xff, 0xf7, 0xc5, 0x55, 0x17, 0x94, 0x56, 0x5c, 0x70, 0xb8, 0xea, 0x82, 0xc3, 0x15, 0x17, 0xac, - 0x7c, 0xa4, 0xe2, 0x8a, 0x0b, 0x8e, 0x7a, 0x3f, 0x17, 0x3e, 0xbf, 0xbb, 0xfc, 0xa3, 0xc7, 0xbd, - 0xbd, 0x9f, 0xab, 0xfe, 0x76, 0xd2, 0xfb, 0x79, 0xbe, 0x97, 0x42, 0x51, 0xdd, 0x4a, 0x3e, 0xef, - 0x06, 0x1d, 0x6b, 0x14, 0xed, 0x26, 0x62, 0xf3, 0xd1, 0x88, 0xe0, 0xf2, 0xe0, 0xf2, 0xe0, 0xf2, - 0xa9, 0xe2, 0xf2, 0x41, 0xe8, 0x3b, 0xde, 0x0b, 0x25, 0x8f, 0x3f, 0xcd, 0x20, 0xe6, 0xbd, 0xda, - 0x4d, 0x7a, 0x27, 0xc6, 0xf4, 0xa0, 0x40, 0x3e, 0x20, 0x1f, 0x90, 0x2f, 0x55, 0xc8, 0x47, 0x27, - 0x9e, 0xd4, 0x56, 0x0e, 0xb9, 0x75, 0x93, 0xff, 0xf7, 0x34, 0xeb, 0x9e, 0x27, 0xf3, 0xc5, 0xde, - 0xde, 0x8f, 0xa3, 0x1e, 0x01, 0xfb, 0xce, 0x22, 0xdb, 0x6d, 0xfb, 0xce, 0x8b, 0xe3, 0x59, 0x1d, - 0xbf, 0x1d, 0xb6, 0x9b, 0x6d, 0x97, 0x0e, 0xfd, 0xe7, 0x07, 0x86, 0x06, 0x80, 0x06, 0x80, 0x06, - 0x48, 0x95, 0x06, 0x70, 0x5a, 0xc2, 0x0b, 0x9d, 0xf0, 0x8d, 0xe6, 0xbc, 0x4a, 0xa4, 0x01, 0x08, - 0xe2, 0x9e, 0xf9, 0xea, 0xe8, 0xd1, 0x3e, 0xd9, 0x01, 0xc3, 0x11, 0xbd, 0xea, 0xf5, 0xfd, 0x43, - 0xb9, 0x56, 0x6b, 0xdc, 0xde, 0xdd, 0x3c, 0xdc, 0x5c, 0xdc, 0xd4, 0x1a, 0x0f, 0x7f, 0xdc, 0x56, - 0xa8, 0xb6, 0xf4, 0x20, 0x22, 0x1c, 0x90, 0x7a, 0xe6, 0x88, 0x43, 0xe1, 0xd1, 0x34, 0xfc, 0x7a, - 0x75, 0x9b, 0x4f, 0x63, 0x06, 0x00, 0xd3, 0xfb, 0xd6, 0x6e, 0x2e, 0xca, 0xb5, 0x46, 0xf9, 0xd7, - 0x5f, 0xef, 0x2a, 0xbf, 0x96, 0x1f, 0x2a, 0xdb, 0xf4, 0xea, 0xd5, 0xfb, 0xea, 0xfd, 0x36, 0xbd, - 0xef, 0x65, 0xf5, 0xae, 0x72, 0xf1, 0x50, 0xfb, 0xa3, 0x71, 0x71, 0x73, 0x7d, 0x5d, 0xb9, 0x78, - 0xa8, 0x5c, 0x6e, 0xd3, 0xdb, 0xdf, 0x56, 0xaf, 0xb6, 0xe9, 0x75, 0x6f, 0xee, 0x6f, 0x7f, 0x39, - 0xdc, 0xa6, 0x17, 0xbe, 0x7f, 0x28, 0x3f, 0x54, 0x2f, 0xb6, 0x6d, 0x89, 0xb7, 0xe9, 0x7d, 0x3f, - 0xfd, 0x7a, 0x9b, 0xb6, 0xb3, 0xd7, 0xf5, 0xa4, 0xf9, 0x73, 0x22, 0xf6, 0x71, 0xa7, 0x1b, 0x7c, - 0x15, 0x2d, 0xeb, 0xb5, 0xe3, 0x06, 0x96, 0x6b, 0x3f, 0x09, 0xd7, 0x0a, 0x42, 0xbb, 0xf9, 0x27, - 0x9d, 0x9d, 0xbc, 0xea, 0x06, 0xb0, 0x97, 0x61, 0x2f, 0xc3, 0x5e, 0x4e, 0x95, 0xbd, 0x3c, 0x91, - 0x51, 0xe4, 0x7d, 0xc9, 0xcd, 0x5c, 0xd7, 0xf1, 0xc2, 0xc3, 0x22, 0x43, 0x52, 0x0d, 0x65, 0x4d, - 0x0c, 0xda, 0xa3, 0x0b, 0x3c, 0x04, 0x21, 0xc7, 0x75, 0x94, 0x81, 0x58, 0x71, 0xbc, 0xef, 0x1d, - 0xe9, 0x6f, 0xfb, 0x63, 0xa6, 0x1b, 0x30, 0x66, 0xc9, 0x33, 0xd0, 0xc7, 0xc9, 0x9a, 0x32, 0x9c, - 0x79, 0x30, 0xbe, 0xa6, 0x07, 0xa5, 0xd3, 0xa3, 0x93, 0xa3, 0x0c, 0x2f, 0xec, 0x4e, 0x3a, 0x47, - 0xdb, 0xf4, 0xcc, 0x4b, 0xe1, 0x75, 0x5f, 0x85, 0x3f, 0x2c, 0xad, 0xc2, 0x90, 0x78, 0x59, 0x22, - 0x1c, 0x93, 0xe6, 0x60, 0x30, 0xdd, 0x16, 0xa9, 0x27, 0xca, 0xb1, 0x6a, 0x4e, 0x10, 0x96, 0xc3, - 0x90, 0xa8, 0x28, 0xeb, 0x95, 0xe3, 0x55, 0x5c, 0xd1, 0x67, 0xa1, 0x7d, 0xf1, 0xf6, 0xba, 0xae, - 0x4b, 0x40, 0x8d, 0xae, 0xec, 0xef, 0xf4, 0x83, 0xde, 0xf8, 0x2d, 0xe1, 0x8b, 0xd6, 0xa7, 0x37, - 0xfa, 0xd8, 0x44, 0x37, 0xd0, 0x2e, 0x5d, 0xc1, 0x65, 0xd6, 0xcc, 0x9b, 0x36, 0xed, 0xe1, 0x2c, - 0x58, 0x4f, 0x6f, 0x94, 0x52, 0xcb, 0x59, 0xe5, 0x6e, 0xc6, 0xcc, 0x19, 0xcc, 0xf4, 0x66, 0x14, - 0x22, 0x43, 0x05, 0x2d, 0x86, 0x0a, 0x5a, 0x1a, 0xa5, 0xcd, 0x14, 0xca, 0x58, 0xed, 0x30, 0x2e, - 0x40, 0x5f, 0x68, 0x55, 0x4b, 0x39, 0xe8, 0x61, 0x3c, 0x09, 0xa6, 0x93, 0x60, 0xf8, 0x0c, 0x66, - 0xf7, 0x87, 0x60, 0x9d, 0x70, 0xcd, 0x9d, 0x6e, 0x66, 0x87, 0xe7, 0x95, 0x4a, 0xa7, 0xc5, 0xad, - 0x06, 0x27, 0x27, 0x39, 0xf1, 0xf7, 0x7f, 0xbc, 0x4f, 0xc6, 0x5c, 0x30, 0xd5, 0x85, 0x62, 0x5d, - 0xa0, 0x78, 0x33, 0xb7, 0x7e, 0x1e, 0x62, 0xcc, 0x41, 0xbe, 0xd3, 0x76, 0x9d, 0xe6, 0x9b, 0xf5, - 0xdc, 0xf6, 0xff, 0xb2, 0xfd, 0x96, 0xe3, 0xc5, 0xef, 0x7a, 0x3b, 0xf1, 0x60, 0x2f, 0x0c, 0x11, - 0x73, 0xee, 0xe5, 0x4a, 0xe0, 0x49, 0xfb, 0xa2, 0x55, 0x7c, 0xce, 0xea, 0xbe, 0x65, 0x55, 0xb2, - 0xa5, 0xed, 0x2b, 0xd6, 0x26, 0x4c, 0x5a, 0xbe, 0x5f, 0x5a, 0x69, 0x94, 0x2d, 0x31, 0xb7, 0xb8, - 0xf7, 0x2c, 0xe1, 0x85, 0xbe, 0x3c, 0x2d, 0x5f, 0xbd, 0x99, 0x47, 0x03, 0xca, 0x2a, 0x5c, 0xa5, - 0xea, 0x8e, 0xca, 0xe1, 0x16, 0x9d, 0xf0, 0x8a, 0x7e, 0x38, 0x45, 0xd7, 0xce, 0x20, 0x0b, 0x97, - 0x90, 0xd9, 0x0e, 0x24, 0xe1, 0x10, 0x5e, 0x4a, 0xa7, 0x5a, 0x8d, 0x51, 0xb7, 0xb9, 0x39, 0x4d, - 0x53, 0x73, 0xb2, 0xf2, 0xa7, 0x07, 0x28, 0x7f, 0xca, 0x20, 0x48, 0x6c, 0xc6, 0xf8, 0x36, 0x97, - 0x3f, 0x45, 0x5d, 0x3e, 0x23, 0x62, 0x49, 0x2f, 0x9e, 0x5c, 0xfe, 0x34, 0xa4, 0x09, 0x50, 0xf8, - 0xbe, 0x50, 0x97, 0x2f, 0xce, 0x50, 0xa8, 0xcb, 0x47, 0x30, 0x2c, 0xea, 0xf2, 0xa1, 0x2e, 0x9f, - 0xd9, 0xd5, 0x43, 0x1d, 0x0f, 0x75, 0xba, 0xd5, 0xb1, 0x5a, 0x41, 0xb3, 0x43, 0x5a, 0x94, 0x6f, - 0x30, 0x20, 0x28, 0x17, 0x28, 0x17, 0x28, 0x57, 0xaa, 0x28, 0x17, 0x81, 0x5c, 0x4e, 0xcb, 0xe6, - 0x11, 0x08, 0x17, 0x08, 0x17, 0x08, 0x97, 0xd2, 0x52, 0x1d, 0x1f, 0x82, 0x5e, 0x6d, 0x09, 0xbd, - 0xea, 0xd0, 0x30, 0x87, 0x69, 0x82, 0x45, 0xe3, 0xb5, 0x04, 0xc5, 0x02, 0xc5, 0x02, 0xc5, 0x22, - 0x2f, 0x7a, 0x4c, 0xb6, 0x9a, 0xdb, 0x57, 0xf3, 0x98, 0xbc, 0x21, 0x30, 0x4a, 0x1e, 0xaf, 0xbc, - 0x70, 0x7f, 0x74, 0xb3, 0xbd, 0x9f, 0xbb, 0x8f, 0x05, 0xab, 0x58, 0x1f, 0xff, 0x70, 0xf8, 0x78, - 0x60, 0x15, 0xeb, 0x7b, 0x28, 0x89, 0x2c, 0xb5, 0x77, 0x8f, 0xb1, 0x77, 0x51, 0x11, 0x39, 0xa1, - 0x8a, 0xc8, 0xfb, 0xbb, 0x85, 0xbe, 0x80, 0x9f, 0x0e, 0x65, 0xbe, 0x50, 0x5f, 0x80, 0x82, 0xa1, - 0x68, 0xa3, 0x70, 0x72, 0x7a, 0x2c, 0x02, 0xea, 0x32, 0x72, 0xd3, 0x83, 0xc2, 0x2a, 0x80, 0x55, - 0x00, 0xab, 0x20, 0x7d, 0x56, 0xc1, 0x50, 0x3c, 0xc9, 0xfb, 0x78, 0x6e, 0xcb, 0xc1, 0xf8, 0x53, - 0x06, 0x6a, 0x75, 0x84, 0x73, 0xf1, 0xc4, 0x83, 0x1b, 0x3a, 0x43, 0x7d, 0x80, 0x63, 0xf1, 0x33, - 0x4b, 0xba, 0x01, 0xc7, 0xe2, 0x8b, 0x47, 0x25, 0x1c, 0x89, 0xa7, 0x1e, 0x6d, 0xe3, 0x2d, 0x6f, - 0xd2, 0xda, 0xac, 0x0b, 0xba, 0x95, 0x52, 0x3f, 0xb0, 0xd4, 0x6a, 0x5d, 0x98, 0x90, 0xea, 0x6d, - 0x54, 0xae, 0x35, 0xcf, 0x11, 0xba, 0x0a, 0xc8, 0x35, 0x1c, 0x8f, 0x96, 0x9b, 0x9f, 0x94, 0xbb, - 0xfb, 0xdf, 0x09, 0x4b, 0xc5, 0x31, 0x62, 0x39, 0xff, 0x54, 0xd0, 0xd6, 0xb3, 0xcd, 0xf4, 0x54, - 0x3c, 0x5c, 0x60, 0x26, 0x46, 0x9b, 0xe2, 0x02, 0x9b, 0x62, 0x34, 0x15, 0x9f, 0x2f, 0x31, 0x13, - 0xc3, 0x99, 0xf8, 0xf5, 0xae, 0x82, 0x99, 0x18, 0xea, 0x54, 0xca, 0x52, 0xc1, 0x99, 0x9e, 0x89, - 0xf2, 0xe7, 0x87, 0xdf, 0x30, 0x15, 0x83, 0xa9, 0xa8, 0x15, 0x1f, 0x38, 0x90, 0x82, 0x74, 0xc4, - 0x3a, 0xb2, 0x80, 0x88, 0xee, 0xaf, 0xd5, 0x2c, 0xb1, 0x64, 0xb5, 0x82, 0xd0, 0xea, 0xb4, 0xfd, - 0x90, 0xb0, 0x5f, 0xe2, 0xd4, 0xa0, 0xf0, 0xf9, 0xaf, 0x9d, 0x2e, 0xf8, 0xfc, 0xe1, 0xf3, 0x5f, - 0xfd, 0x46, 0xf4, 0x3e, 0xff, 0xbe, 0x5c, 0x5a, 0x5e, 0xf7, 0xf5, 0x89, 0xa4, 0x50, 0xd9, 0x58, - 0x44, 0x8f, 0x91, 0x73, 0x9d, 0x08, 0xb6, 0x2d, 0xf7, 0x86, 0x20, 0xe7, 0x3a, 0x4b, 0x4b, 0x75, - 0x7c, 0x74, 0x74, 0x88, 0x53, 0x6d, 0xdb, 0x42, 0xb8, 0x02, 0xbf, 0x49, 0x4f, 0xb8, 0xa2, 0x41, - 0x41, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, 0x40, 0xb8, - 0xb6, 0x9d, 0x70, 0xa1, 0x35, 0x3e, 0x08, 0x17, 0x08, 0xd7, 0x76, 0x11, 0x2e, 0xb4, 0xc6, 0x47, - 0x6b, 0xfc, 0x99, 0x76, 0x5f, 0x74, 0xc0, 0x4f, 0xd5, 0x42, 0x0c, 0xb8, 0x0f, 0xdc, 0x07, 0xee, - 0xa3, 0xc1, 0x5f, 0xc2, 0x76, 0x36, 0x1a, 0xfc, 0xe1, 0x20, 0xc3, 0x72, 0x13, 0x19, 0x0d, 0xfe, - 0xf8, 0xdd, 0x1c, 0xc6, 0xd7, 0x14, 0x0d, 0xfe, 0x78, 0x46, 0x43, 0x83, 0x3f, 0x2d, 0x0d, 0x8b, - 0x06, 0x7f, 0x29, 0xb4, 0x9c, 0xc2, 0x26, 0xb1, 0xd9, 0x14, 0x36, 0x61, 0x33, 0xc1, 0x66, 0x82, - 0xcd, 0x94, 0x42, 0x9b, 0x49, 0x5b, 0x34, 0x73, 0xa8, 0xbe, 0x99, 0x3a, 0xfa, 0x87, 0xc0, 0x64, - 0xf6, 0x02, 0x93, 0x27, 0x08, 0x4a, 0x66, 0x86, 0x60, 0xa1, 0xf5, 0xea, 0xb0, 0xef, 0xe1, 0x42, - 0xcb, 0xb5, 0xfd, 0x15, 0x4d, 0xd8, 0xf6, 0x47, 0x2d, 0xa7, 0x4c, 0xb5, 0x64, 0x55, 0xe8, 0x84, - 0xa6, 0xd7, 0xe3, 0x87, 0xa4, 0xb7, 0x8f, 0x26, 0xc4, 0xa0, 0xb5, 0x96, 0x19, 0xf6, 0x8a, 0xd6, - 0x5a, 0x84, 0xac, 0x74, 0x92, 0xc9, 0x2a, 0xec, 0x67, 0xbd, 0x92, 0x09, 0x91, 0x53, 0x41, 0x43, - 0x95, 0xe6, 0x6f, 0x47, 0xf8, 0xf8, 0xf1, 0xe3, 0x08, 0xb3, 0xf6, 0x87, 0x12, 0x9d, 0x62, 0xe4, - 0x1a, 0x76, 0xbb, 0xd6, 0x46, 0xae, 0xe1, 0x30, 0x09, 0x37, 0x05, 0x2c, 0x02, 0xb9, 0x80, 0x5c, - 0x46, 0x90, 0x0b, 0x4d, 0x01, 0xe1, 0x26, 0x83, 0x9b, 0x0c, 0x6e, 0xb2, 0xb5, 0xfb, 0x0d, 0x4d, - 0x01, 0xe1, 0x25, 0x83, 0x97, 0x2c, 0x25, 0x4b, 0x85, 0xa6, 0x80, 0x68, 0x0a, 0x88, 0xa6, 0x80, - 0xa0, 0x5c, 0xa0, 0x5c, 0x9b, 0x4c, 0xb9, 0xd0, 0x14, 0x10, 0x84, 0x0b, 0x84, 0x2b, 0x15, 0x4b, - 0x85, 0xa6, 0x80, 0x5b, 0x43, 0xaf, 0xd0, 0x14, 0x10, 0x14, 0x0b, 0x14, 0x6b, 0x4b, 0x28, 0x16, - 0x9a, 0x02, 0x2a, 0x4f, 0x1c, 0x9a, 0x02, 0xa2, 0x29, 0xa0, 0x01, 0xca, 0x88, 0xa6, 0x80, 0x68, - 0x0a, 0x88, 0xa6, 0x80, 0xa9, 0x10, 0x68, 0x34, 0x05, 0x44, 0x53, 0x40, 0x58, 0x05, 0xb0, 0x0a, - 0xb6, 0xc3, 0x2a, 0x40, 0x53, 0x40, 0xe5, 0xf9, 0x43, 0x53, 0x40, 0x42, 0xa6, 0x86, 0xa6, 0x80, - 0x89, 0x78, 0x51, 0x89, 0xcd, 0x98, 0xd9, 0x25, 0x45, 0x53, 0xc0, 0x84, 0x17, 0x15, 0xc7, 0xe8, - 0x93, 0xb1, 0xbc, 0xd1, 0x14, 0x70, 0x76, 0x42, 0xd0, 0x14, 0x70, 0xf9, 0xa4, 0xa0, 0x29, 0x20, - 0x9a, 0x02, 0x2e, 0x4e, 0x05, 0x9a, 0x02, 0xa2, 0x29, 0xe0, 0xc2, 0x54, 0xa0, 0x29, 0x20, 0x9a, - 0x02, 0xe6, 0xd0, 0x14, 0x70, 0xc5, 0x4c, 0xa0, 0x29, 0x20, 0x9a, 0x02, 0x26, 0x3a, 0x0a, 0x9a, - 0x02, 0xa2, 0x29, 0xa0, 0xca, 0x74, 0xc1, 0xe7, 0x0f, 0x9f, 0xff, 0xea, 0x37, 0x42, 0x8f, 0x9a, - 0x14, 0x78, 0x75, 0x90, 0x73, 0x8d, 0x9c, 0x6b, 0xf4, 0xa8, 0x01, 0xe1, 0x22, 0x21, 0x5c, 0x68, - 0x0a, 0x08, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, - 0xc2, 0xc5, 0x49, 0xb8, 0xd0, 0x14, 0x10, 0x84, 0x0b, 0x84, 0x6b, 0xbb, 0x08, 0x17, 0x9a, 0x02, - 0xa2, 0x29, 0x20, 0x9a, 0x02, 0x02, 0xf7, 0x81, 0xfb, 0x5b, 0x86, 0xfb, 0x68, 0x0a, 0xa8, 0x38, - 0x73, 0x68, 0x0a, 0x48, 0x69, 0x0a, 0xa2, 0x29, 0x60, 0x32, 0x76, 0x32, 0x83, 0x7b, 0x83, 0xd5, - 0xcd, 0x61, 0x7c, 0x4d, 0xd1, 0x14, 0x90, 0x67, 0x34, 0x34, 0x05, 0xd4, 0xd2, 0xb0, 0x68, 0x0a, - 0x98, 0x42, 0xcb, 0x09, 0x4d, 0x01, 0x61, 0x33, 0xc1, 0x66, 0xda, 0x0e, 0x9b, 0x09, 0x4d, 0x01, - 0x93, 0xa4, 0xf6, 0x08, 0x4c, 0x72, 0x30, 0x77, 0x34, 0x05, 0x44, 0x50, 0x32, 0xad, 0x04, 0xcb, - 0x13, 0xdf, 0x43, 0xeb, 0x6b, 0xbb, 0x63, 0xbd, 0xf8, 0xed, 0x2e, 0x61, 0x89, 0xf3, 0xb9, 0x71, - 0x41, 0xb7, 0x40, 0xb7, 0x40, 0xb7, 0x52, 0x45, 0xb7, 0xf4, 0xbb, 0xde, 0x2d, 0x58, 0xcf, 0x27, - 0x34, 0x61, 0xc9, 0x71, 0x17, 0xbc, 0xe8, 0xbf, 0x59, 0x30, 0x09, 0xe6, 0x7e, 0x8e, 0xba, 0xe5, - 0xb5, 0xf2, 0x19, 0x04, 0xe0, 0x76, 0x33, 0x14, 0x61, 0x30, 0x6e, 0x5b, 0x2a, 0x5a, 0x74, 0x10, - 0xbc, 0x30, 0x32, 0x40, 0x18, 0x20, 0x0c, 0x10, 0x4e, 0x15, 0x08, 0x37, 0xdb, 0x5d, 0x2f, 0x14, - 0x3e, 0x9a, 0x7c, 0xc1, 0xea, 0x85, 0xd5, 0x9b, 0x82, 0xa5, 0x42, 0x93, 0xaf, 0x6d, 0x35, 0x84, - 0x3b, 0x76, 0xf3, 0x4f, 0x26, 0x22, 0xb6, 0x38, 0x34, 0x98, 0x18, 0x98, 0x18, 0x98, 0x18, 0x98, - 0x18, 0x98, 0x18, 0x98, 0x18, 0x98, 0x18, 0x98, 0xd8, 0xe6, 0x31, 0x31, 0xa3, 0x0d, 0xf5, 0xcb, - 0x9e, 0xd7, 0x0e, 0x87, 0x39, 0x41, 0x5a, 0x7d, 0xf5, 0x83, 0xe6, 0x57, 0xf1, 0x6a, 0x77, 0x46, - 0x1e, 0xc8, 0xfd, 0x76, 0x47, 0x78, 0x43, 0xdf, 0xa2, 0xe5, 0x89, 0xf0, 0xaf, 0xb6, 0xff, 0xa7, - 0xe5, 0x78, 0x41, 0x68, 0x7b, 0x4d, 0xb1, 0x3f, 0xff, 0x8b, 0x60, 0xe1, 0x37, 0xfb, 0xf6, 0x73, - 0x18, 0xec, 0x77, 0xda, 0xae, 0xd3, 0x7c, 0x1b, 0x53, 0x3f, 0xc7, 0x7b, 0x59, 0xfc, 0x8d, 0x25, - 0xbc, 0xd0, 0x7f, 0xdb, 0x0f, 0x42, 0x3b, 0x14, 0x6a, 0x7a, 0x59, 0x7e, 0xb6, 0xe5, 0xae, 0x90, - 0x5c, 0x97, 0x3e, 0x43, 0x1a, 0x54, 0x9e, 0xf5, 0x5a, 0x42, 0x96, 0x1c, 0xe5, 0x6b, 0x4e, 0x10, - 0x96, 0xc3, 0xd0, 0x57, 0x5a, 0xc9, 0xbe, 0x52, 0xaa, 0xb8, 0xa2, 0xcf, 0x75, 0xfa, 0xf2, 0xec, - 0x75, 0x5d, 0xf7, 0xc3, 0x8e, 0x0a, 0x5c, 0xea, 0x0f, 0x72, 0xe3, 0xb7, 0x84, 0x2f, 0x5a, 0x9f, - 0xde, 0x46, 0x43, 0xb0, 0x4e, 0xb8, 0xa6, 0x00, 0x24, 0xba, 0xf1, 0x15, 0xf8, 0x56, 0x3e, 0x08, - 0xfd, 0x6e, 0x33, 0xf4, 0x46, 0xd4, 0xed, 0x7a, 0xf8, 0x00, 0xd5, 0xd1, 0xfd, 0x1b, 0xe5, 0xe7, - 0x30, 0x68, 0xdc, 0x0e, 0xee, 0xf6, 0x4b, 0x74, 0xb3, 0xca, 0xe0, 0x5e, 0x3b, 0x3c, 0x42, 0x12, - 0xef, 0x93, 0x31, 0x57, 0x55, 0x75, 0x35, 0x8d, 0xac, 0x62, 0xbc, 0x19, 0x5c, 0x3f, 0x1f, 0xef, - 0x7f, 0x62, 0xcd, 0x4c, 0xc9, 0xce, 0x10, 0xc3, 0xcc, 0xc4, 0xd8, 0xb5, 0x31, 0x76, 0xe9, 0xfb, - 0xb3, 0xb9, 0x7a, 0x8e, 0xde, 0x99, 0x9f, 0x7c, 0x73, 0x6c, 0xd5, 0xbf, 0x3f, 0x2f, 0x53, 0x86, - 0xcf, 0xe0, 0xf3, 0x6b, 0x66, 0x7c, 0x1c, 0xe2, 0x5b, 0xf3, 0xb1, 0xb8, 0x2e, 0x05, 0x19, 0x97, - 0xc1, 0xb4, 0x4b, 0xc0, 0x13, 0x61, 0x7f, 0x19, 0xe2, 0xcc, 0xbe, 0xa4, 0xd9, 0xaf, 0x6c, 0xd6, - 0x2b, 0x9b, 0xed, 0xf3, 0x66, 0xf9, 0xf8, 0xdd, 0x98, 0x65, 0xe7, 0xd2, 0x89, 0xa7, 0x5b, 0xf3, - 0x2d, 0x11, 0x34, 0x7d, 0xa7, 0x23, 0x85, 0x43, 0x93, 0x3e, 0xda, 0x53, 0x17, 0xc7, 0x9c, 0x0e, - 0x39, 0x83, 0x42, 0xda, 0x7b, 0xa5, 0xe2, 0xa5, 0x52, 0xdb, 0x7a, 0xba, 0x9e, 0x27, 0x6d, 0x0f, - 0x93, 0xb6, 0x27, 0x49, 0x79, 0x6b, 0xf2, 0x28, 0x44, 0x69, 0x6f, 0x4f, 0xb4, 0x6e, 0x41, 0xe8, - 0xf7, 0x95, 0x96, 0xc4, 0x9a, 0x45, 0x47, 0xac, 0xa9, 0x14, 0x5d, 0x0c, 0xa8, 0x12, 0x9e, 0xfd, - 0xe4, 0x4a, 0x78, 0x9c, 0xa7, 0x4e, 0x43, 0x0c, 0x2f, 0x84, 0x84, 0x41, 0xc2, 0x12, 0x92, 0xb0, - 0xa7, 0x76, 0xdb, 0x15, 0xb6, 0xa7, 0x22, 0x62, 0x05, 0xf3, 0x22, 0x36, 0x2e, 0xc6, 0x60, 0x3d, - 0xdb, 0xaf, 0x8e, 0xeb, 0x88, 0x40, 0x59, 0xe6, 0x16, 0x47, 0xda, 0x10, 0x21, 0x74, 0x2c, 0xf7, - 0x70, 0x3b, 0x45, 0x70, 0xf0, 0xe6, 0x99, 0x13, 0x40, 0xb5, 0xfe, 0x3e, 0x2a, 0xfd, 0x7b, 0xf4, - 0xfa, 0xf3, 0x44, 0x0f, 0x5c, 0xbe, 0xbc, 0xbc, 0xab, 0xdc, 0xdf, 0x37, 0x7e, 0x29, 0x5f, 0x55, - 0x6b, 0x7f, 0xc8, 0xae, 0xba, 0x46, 0x8b, 0x1d, 0x35, 0xcf, 0xe0, 0x54, 0x39, 0xfb, 0xdf, 0x4b, - 0xf2, 0xfe, 0x39, 0x05, 0x9f, 0xa6, 0xfe, 0x73, 0x1e, 0x67, 0xe1, 0x39, 0xaf, 0x6e, 0x6b, 0xf7, - 0x59, 0x78, 0xce, 0x5a, 0xb1, 0x51, 0x79, 0xf8, 0xad, 0x72, 0x77, 0x5d, 0x79, 0xc8, 0x33, 0x3b, - 0x5a, 0xeb, 0x09, 0xa1, 0x8f, 0x92, 0xd3, 0x55, 0xcb, 0xd9, 0xaa, 0xe5, 0x64, 0x55, 0x73, 0xae, - 0xd2, 0x10, 0x89, 0xd7, 0xb0, 0x2b, 0xcf, 0x19, 0xfa, 0x17, 0x81, 0xa3, 0x83, 0xa3, 0x27, 0x44, - 0x11, 0xba, 0x8e, 0x17, 0x16, 0x8e, 0x15, 0xd8, 0x81, 0x44, 0xe5, 0x0d, 0xc5, 0x44, 0x05, 0xb5, - 0x18, 0x8f, 0x72, 0x98, 0x4f, 0x33, 0x6a, 0xad, 0x9b, 0x48, 0x40, 0x11, 0x72, 0xee, 0xa9, 0x45, - 0xb4, 0x12, 0x9f, 0x32, 0x8d, 0x4a, 0xa7, 0x24, 0xd3, 0xc6, 0x14, 0xfa, 0xa9, 0x1b, 0xd4, 0x3d, - 0xa3, 0x50, 0x82, 0xa4, 0xf2, 0x19, 0x5c, 0x05, 0xed, 0x03, 0xed, 0x03, 0x1f, 0xec, 0x3b, 0xf7, - 0xf4, 0xdb, 0xdd, 0x50, 0x58, 0x2d, 0x27, 0x08, 0x1d, 0xef, 0xa5, 0xeb, 0x04, 0x5f, 0x85, 0x2f, - 0x2f, 0x6a, 0xcb, 0x06, 0x81, 0xe4, 0x41, 0xf2, 0x12, 0x92, 0x3c, 0xf5, 0xed, 0x98, 0x53, 0x2c, - 0x3b, 0xa8, 0x56, 0x5e, 0x50, 0x81, 0x04, 0x2a, 0x83, 0xcb, 0x22, 0xc8, 0x28, 0x5c, 0xab, 0x5b, - 0x3b, 0x37, 0xff, 0xef, 0xdd, 0xe3, 0xa3, 0xc7, 0x03, 0xeb, 0xa8, 0xfe, 0x78, 0x60, 0x1d, 0xd6, - 0x07, 0xdf, 0xfd, 0x7c, 0x2c, 0xf4, 0x7f, 0x2e, 0x0c, 0x7f, 0x79, 0x36, 0xf5, 0xbf, 0xfe, 0x5f, - 0xce, 0xea, 0x7f, 0x1f, 0xfd, 0x7f, 0xee, 0xd7, 0x7b, 0xe7, 0xbb, 0xa5, 0xc7, 0x03, 0xab, 0x18, - 0x7d, 0xbe, 0x14, 0x7d, 0x77, 0xdc, 0xff, 0xdf, 0x49, 0x7d, 0xe6, 0xaf, 0xfd, 0xfb, 0x8c, 0x6e, - 0x79, 0x56, 0xff, 0x71, 0xd6, 0x1b, 0x0e, 0x32, 0xfc, 0xa9, 0xf0, 0xe1, 0x74, 0xf4, 0xf3, 0x9e, - 0x42, 0xa1, 0xde, 0x3a, 0x67, 0x86, 0xd3, 0x36, 0xee, 0x90, 0xdd, 0xa9, 0x55, 0x1e, 0x7e, 0x5b, - 0x98, 0x5a, 0xfc, 0xe2, 0x64, 0xa9, 0x7f, 0x16, 0x87, 0x7b, 0x69, 0xef, 0xcb, 0x97, 0x8f, 0x7b, - 0x3f, 0x0e, 0x7b, 0xf2, 0x17, 0x9e, 0xd3, 0x6d, 0x47, 0xec, 0x9c, 0xe4, 0x77, 0x0e, 0x03, 0x20, - 0xac, 0xdc, 0x21, 0x3f, 0x8a, 0xbd, 0xe1, 0x87, 0x0f, 0x47, 0x1f, 0xfd, 0x71, 0xf0, 0x61, 0xf4, - 0x2b, 0xb3, 0xdb, 0x22, 0x95, 0x16, 0xdb, 0x40, 0x03, 0xfb, 0x96, 0xd3, 0x52, 0xe4, 0x92, 0x83, - 0x4b, 0xc1, 0x20, 0xc1, 0x20, 0x13, 0x62, 0x90, 0xad, 0x76, 0x18, 0x8a, 0x96, 0xf5, 0x9f, 0xae, - 0xdd, 0x52, 0x32, 0xe0, 0x24, 0xae, 0x51, 0xc5, 0xbd, 0xbc, 0x49, 0x45, 0x99, 0x4f, 0x25, 0xca, - 0x84, 0x32, 0xeb, 0x1b, 0xad, 0xed, 0xe0, 0x2a, 0x60, 0x0b, 0xb0, 0x25, 0x21, 0x6c, 0xc9, 0x5c, - 0xe2, 0xc2, 0x75, 0xe5, 0xe1, 0x9f, 0x37, 0x77, 0xff, 0x68, 0x54, 0xaf, 0xef, 0x1f, 0xca, 0xd7, - 0x17, 0x95, 0xc6, 0xc3, 0x1f, 0xb7, 0x95, 0xec, 0xe4, 0x2f, 0xd4, 0x0e, 0x7f, 0xbf, 0xfb, 0x25, - 0x1b, 0x01, 0xf7, 0xdb, 0xe2, 0x6d, 0x36, 0x1e, 0xf4, 0xf7, 0xfb, 0x6a, 0x16, 0x1e, 0xf4, 0xb2, - 0xf2, 0x4b, 0xf9, 0x73, 0xed, 0x21, 0xda, 0xb9, 0xd9, 0x98, 0xdc, 0xda, 0x61, 0xe6, 0xf2, 0x2d, - 0x36, 0xfa, 0xdc, 0xcb, 0xe8, 0xa4, 0x08, 0xcf, 0x99, 0x15, 0x4f, 0x0c, 0x22, 0x7c, 0x56, 0xa7, - 0xed, 0x0c, 0x53, 0x42, 0xe2, 0x1f, 0x5f, 0x99, 0xbb, 0x14, 0x27, 0x59, 0x70, 0x92, 0xe5, 0xfd, - 0xed, 0x25, 0xcf, 0x95, 0x17, 0x46, 0x90, 0xe3, 0xcd, 0x05, 0xf0, 0x66, 0xf0, 0x66, 0xb5, 0xcd, - 0x3b, 0xbd, 0x89, 0xe3, 0x9c, 0xeb, 0x7b, 0x6f, 0x0b, 0xaf, 0x3f, 0xe7, 0xa7, 0xb9, 0x81, 0x95, - 0x37, 0xb2, 0xce, 0x86, 0xa6, 0xd9, 0xd8, 0xba, 0x1b, 0x9c, 0x6c, 0xa3, 0x93, 0x6d, 0x78, 0xb2, - 0x8d, 0xaf, 0xc6, 0xad, 0x64, 0xcf, 0xb0, 0xcb, 0x0a, 0xc4, 0x4a, 0x74, 0x97, 0xf1, 0xb6, 0xc6, - 0x06, 0xfc, 0xf8, 0x7e, 0x58, 0x4d, 0xdf, 0x09, 0x99, 0x28, 0x51, 0x88, 0x14, 0xad, 0x68, 0x51, - 0x89, 0x18, 0xb9, 0xa8, 0x91, 0x8b, 0x1c, 0xb9, 0xe8, 0xa9, 0x89, 0xa0, 0x86, 0xf1, 0x96, 0x23, - 0xa9, 0xb2, 0xa5, 0x1f, 0x4a, 0x5b, 0x74, 0x29, 0x6f, 0x44, 0x85, 0x94, 0x74, 0x15, 0xec, 0x58, - 0xb0, 0xa1, 0x16, 0x7e, 0x13, 0xcb, 0xf6, 0x53, 0x9f, 0x42, 0x89, 0xe9, 0x23, 0x81, 0x7b, 0x42, - 0x98, 0x57, 0x84, 0x77, 0x30, 0x24, 0x30, 0x24, 0x59, 0xd0, 0x50, 0x86, 0x63, 0x82, 0x9a, 0xff, - 0x3a, 0x35, 0xfe, 0xa7, 0x6b, 0xfa, 0x8f, 0x6a, 0xf5, 0x2f, 0x93, 0xbb, 0x14, 0x60, 0x8b, 0xf0, - 0x5a, 0x31, 0xfd, 0x4f, 0x2b, 0xa7, 0x78, 0x32, 0x04, 0x2c, 0x2d, 0xe0, 0xc8, 0x66, 0x59, 0x5a, - 0xe3, 0xbd, 0xad, 0x6f, 0x5e, 0x45, 0x23, 0xe9, 0xd9, 0x54, 0x05, 0xd8, 0x54, 0xb0, 0xa9, 0xb2, - 0x65, 0x53, 0xa9, 0x0a, 0x9f, 0xae, 0x1f, 0x90, 0xd6, 0x2f, 0x48, 0x2c, 0x90, 0x64, 0x82, 0x49, - 0x29, 0xa0, 0x3c, 0x82, 0x4a, 0x2d, 0xb0, 0x6c, 0x82, 0xcb, 0x26, 0xc0, 0x6c, 0x82, 0xac, 0x27, - 0xd0, 0x9a, 0x82, 0x4d, 0x26, 0xe0, 0x0b, 0xda, 0x56, 0xc7, 0x9f, 0xb9, 0x56, 0x01, 0xab, 0xfb, - 0x35, 0x89, 0xfd, 0x9c, 0x6c, 0x50, 0xc0, 0x01, 0x09, 0xbc, 0xd0, 0xc0, 0x05, 0x11, 0xec, 0x50, - 0xc1, 0x0e, 0x19, 0xec, 0xd0, 0x41, 0x03, 0x21, 0x44, 0x50, 0x42, 0xe7, 0x87, 0xe5, 0xf3, 0xcb, - 0xae, 0x24, 0x02, 0xa7, 0x29, 0xa9, 0x80, 0x4e, 0xb0, 0x06, 0x7d, 0x21, 0x69, 0x8a, 0x96, 0xf0, - 0x28, 0xd5, 0x75, 0xd4, 0x1c, 0x66, 0x32, 0x36, 0x70, 0x18, 0x38, 0x0c, 0x1c, 0xde, 0x4a, 0x1c, - 0x96, 0xae, 0xd0, 0x12, 0x17, 0x05, 0x8e, 0x09, 0x87, 0xa4, 0x6d, 0x45, 0x33, 0xfe, 0xa2, 0x95, - 0xa9, 0x1c, 0x57, 0x6b, 0x1a, 0x26, 0x78, 0x5d, 0x18, 0x9e, 0xa9, 0x55, 0x4d, 0x34, 0x3e, 0x63, - 0xd3, 0x13, 0x62, 0x71, 0x9b, 0x5d, 0x52, 0x86, 0x16, 0x36, 0xa6, 0x97, 0x54, 0xa3, 0x02, 0x4e, - 0x2a, 0x96, 0x75, 0x27, 0x9d, 0xa3, 0xd5, 0x37, 0x88, 0x69, 0x86, 0x94, 0x1a, 0x46, 0xe5, 0xa4, - 0x17, 0xd8, 0x25, 0xd8, 0x25, 0xd8, 0xe5, 0x86, 0xb1, 0x4b, 0xb5, 0x93, 0x76, 0xb1, 0x4d, 0x7d, - 0x42, 0x9d, 0xa6, 0x77, 0x52, 0x2f, 0xf6, 0x84, 0x54, 0xae, 0x2f, 0x6f, 0x6f, 0xaa, 0xd7, 0x0f, - 0x2a, 0x27, 0xf8, 0xe2, 0xa9, 0xfb, 0x80, 0x9c, 0x27, 0xf3, 0x70, 0xe5, 0x99, 0x69, 0xb9, 0xab, - 0x5c, 0xdd, 0x3c, 0x54, 0xf2, 0x59, 0x20, 0x84, 0xcc, 0x33, 0x51, 0xbb, 0xb9, 0x28, 0xd7, 0xf2, - 0x29, 0xa7, 0x50, 0xf5, 0x8d, 0x6b, 0x57, 0x98, 0x6c, 0xe4, 0x86, 0xa8, 0x8d, 0x60, 0x34, 0x9e, - 0xf1, 0x24, 0xcd, 0x28, 0xf7, 0x28, 0xfa, 0x4e, 0x29, 0x6f, 0x93, 0x6e, 0x55, 0x74, 0x1a, 0x72, - 0x53, 0x86, 0xbf, 0x18, 0xc2, 0x5e, 0xdb, 0xd2, 0x84, 0x1b, 0x11, 0x6f, 0x44, 0xbc, 0x4d, 0x11, - 0x57, 0x82, 0x3c, 0xd5, 0x95, 0x24, 0xf5, 0x84, 0x60, 0xac, 0xc5, 0x3c, 0xd6, 0x69, 0x3c, 0xc9, - 0x20, 0xc6, 0xba, 0xed, 0xa6, 0xed, 0xd2, 0xa1, 0xeb, 0x70, 0x38, 0x64, 0x12, 0x01, 0x57, 0x81, - 0xab, 0x69, 0xca, 0x24, 0x22, 0x4a, 0x19, 0x5c, 0xd8, 0xc6, 0x24, 0xa9, 0x83, 0xc4, 0x82, 0x0f, - 0xcf, 0x22, 0x3c, 0x8b, 0xf0, 0x2c, 0xf2, 0x00, 0x49, 0x34, 0xa0, 0xe3, 0x85, 0xc2, 0x7f, 0xb6, - 0x9b, 0x8c, 0x2e, 0xba, 0xc9, 0x2d, 0x88, 0x97, 0x9e, 0x27, 0xd8, 0x47, 0x0e, 0x37, 0x9c, 0xb0, - 0xb3, 0x0c, 0x7e, 0x9c, 0xe7, 0x3c, 0x43, 0xd8, 0x96, 0x09, 0x81, 0x8c, 0x21, 0x91, 0x31, 0x44, - 0x5a, 0x85, 0x4c, 0xce, 0x73, 0xda, 0xbd, 0x90, 0xc4, 0xce, 0x5d, 0xfa, 0x30, 0x08, 0xa3, 0x75, - 0xc9, 0x69, 0x6d, 0xae, 0xb4, 0x3e, 0xf7, 0x07, 0xdb, 0xe2, 0x3c, 0x02, 0xc8, 0x60, 0xfe, 0x17, - 0xa3, 0x9f, 0x07, 0x7d, 0x5f, 0x52, 0x1a, 0xb3, 0x27, 0xdc, 0x34, 0xf9, 0xc0, 0x09, 0x05, 0x65, - 0x8e, 0xfc, 0xc2, 0x7e, 0x19, 0xdf, 0x00, 0x8a, 0xc8, 0x84, 0x22, 0xa2, 0xe7, 0xc1, 0xd0, 0x46, - 0xa9, 0xe5, 0xc9, 0x50, 0x49, 0x4c, 0xf9, 0x9f, 0xf3, 0x28, 0x73, 0xcc, 0x30, 0x34, 0x4f, 0x3e, - 0xe8, 0xf8, 0x8b, 0x47, 0x46, 0x73, 0xdc, 0xf9, 0xa1, 0xcc, 0xf0, 0xbe, 0x70, 0x1b, 0xe6, 0x7c, - 0xd1, 0xe8, 0x3e, 0x06, 0x12, 0x0c, 0x99, 0xc4, 0x77, 0x76, 0xe9, 0x19, 0xf3, 0x48, 0x93, 0x5a, - 0x7a, 0xc6, 0xbc, 0xd2, 0x44, 0x96, 0x7f, 0x27, 0x1b, 0xa3, 0xd6, 0xb7, 0x85, 0x5b, 0xbb, 0xf6, - 0x93, 0x70, 0xad, 0x27, 0xb7, 0xdd, 0xfc, 0xd3, 0x6a, 0x3f, 0x3f, 0x07, 0x22, 0x64, 0xe6, 0xda, - 0x4b, 0x6e, 0x08, 0xee, 0x0d, 0xee, 0x0d, 0xee, 0x0d, 0xee, 0x0d, 0xee, 0x0d, 0xee, 0x0d, 0xee, - 0x0d, 0xee, 0x0d, 0xee, 0x0d, 0xee, 0xbd, 0x6d, 0xdc, 0x3b, 0x70, 0xfe, 0x57, 0x18, 0x64, 0xde, - 0x83, 0xdb, 0x81, 0x77, 0x83, 0x77, 0x83, 0x77, 0x83, 0x77, 0x83, 0x77, 0x83, 0x77, 0x83, 0x77, - 0x83, 0x77, 0x83, 0x77, 0x83, 0x77, 0x6f, 0x3a, 0xef, 0xee, 0x3e, 0x19, 0xc8, 0x6f, 0x9c, 0xb9, - 0x0b, 0x58, 0x36, 0x52, 0x1c, 0xb7, 0x96, 0x60, 0x23, 0xc5, 0x91, 0x7e, 0xb7, 0x6f, 0x7a, 0x8a, - 0xe3, 0xe3, 0x24, 0xc5, 0xf1, 0x7f, 0x9a, 0x5d, 0xdf, 0x17, 0x5e, 0xb8, 0xbb, 0xb7, 0xff, 0xf1, - 0xe3, 0x7e, 0xf4, 0x89, 0xfa, 0xe8, 0x92, 0x69, 0x9c, 0x0d, 0x96, 0xfc, 0x2e, 0x1a, 0xb9, 0x25, - 0xbe, 0xa7, 0x36, 0x5b, 0x32, 0x55, 0xa7, 0x09, 0x88, 0x8f, 0xc9, 0x4f, 0xf4, 0x6e, 0x0a, 0x8e, - 0xcb, 0x0f, 0x4e, 0x30, 0x92, 0x1c, 0x9a, 0xa7, 0x5b, 0x3b, 0x8a, 0xba, 0x52, 0x41, 0x68, 0x87, - 0x0c, 0x85, 0xa5, 0x86, 0xc3, 0xa6, 0xfc, 0xfc, 0x57, 0x11, 0xe7, 0xbf, 0x70, 0xfe, 0xcb, 0xb0, - 0x8f, 0x0f, 0xe7, 0xbf, 0x74, 0x25, 0x02, 0xc6, 0x11, 0x8c, 0x23, 0x18, 0x47, 0x30, 0x8e, 0x60, - 0x1c, 0x49, 0x1b, 0x47, 0x38, 0xff, 0x45, 0xec, 0xaa, 0xc3, 0xf9, 0x2f, 0xc4, 0xc2, 0xa1, 0x8d, - 0x10, 0x0b, 0x47, 0x2c, 0x7c, 0x66, 0x68, 0xc4, 0xc2, 0xcd, 0xc3, 0xfb, 0xc2, 0x6d, 0x10, 0x0b, - 0x97, 0x5b, 0x7a, 0xc4, 0xc2, 0x53, 0xbf, 0xfc, 0x88, 0x85, 0xa7, 0x8b, 0x5b, 0xe3, 0xfc, 0x17, - 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, 0xb8, 0x37, - 0xb8, 0x37, 0xb8, 0xb7, 0x79, 0xee, 0x8d, 0xf3, 0x5f, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, - 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xe0, 0xdd, 0xf4, 0xbc, 0x1b, - 0xe7, 0xbf, 0x36, 0x93, 0x65, 0x23, 0xc5, 0x31, 0x95, 0x04, 0x1b, 0x29, 0x8e, 0xf4, 0xbb, 0x1d, - 0xe7, 0xbf, 0x70, 0xfe, 0x8b, 0x69, 0x17, 0x6f, 0xc1, 0xf9, 0xaf, 0xe1, 0xb1, 0x26, 0xf4, 0xc4, - 0xdd, 0xd0, 0x9e, 0xb8, 0x14, 0x6d, 0x0a, 0x87, 0x2f, 0x13, 0xfa, 0xdd, 0x66, 0xe8, 0x8d, 0x30, - 0xf7, 0x7a, 0xf8, 0x74, 0xd5, 0xd1, 0xc3, 0x35, 0x2e, 0xa2, 0x47, 0xb9, 0xed, 0xdf, 0xb6, 0x51, - 0x19, 0xdd, 0xbf, 0x51, 0x1b, 0xdc, 0x3f, 0x83, 0xed, 0x22, 0x7d, 0xf1, 0xda, 0x26, 0x38, 0x46, - 0x18, 0x69, 0xa9, 0xd1, 0x78, 0x68, 0x18, 0x19, 0x87, 0xbd, 0xa2, 0x61, 0x24, 0x1a, 0x46, 0xae, - 0x79, 0x2b, 0x34, 0x8c, 0x4c, 0x93, 0x79, 0x8b, 0x03, 0xc3, 0xc6, 0x6c, 0x58, 0x1c, 0x18, 0xa6, - 0xa5, 0xf8, 0xe4, 0x07, 0x86, 0x87, 0x9a, 0xde, 0x0a, 0xde, 0x82, 0x50, 0xbc, 0xf2, 0x39, 0xd5, - 0x66, 0x6f, 0x03, 0xaf, 0x1a, 0x62, 0xd7, 0xdb, 0xed, 0x5a, 0x43, 0xec, 0x9a, 0x69, 0xdf, 0x3b, - 0x1d, 0xcb, 0x6e, 0xb5, 0x7c, 0x11, 0x04, 0x9c, 0x2e, 0xb6, 0x33, 0x86, 0xb1, 0x47, 0x73, 0x93, - 0xb9, 0xf8, 0xf5, 0x64, 0xe6, 0xbf, 0x95, 0x18, 0xe7, 0x7e, 0x61, 0x0d, 0x4e, 0x19, 0xef, 0x71, - 0x6b, 0x87, 0xa1, 0xf0, 0x3d, 0xb6, 0xe5, 0x88, 0x6e, 0xb4, 0xbb, 0xfb, 0x78, 0x60, 0x9d, 0xd5, - 0x7f, 0x3e, 0x16, 0xac, 0xb3, 0xfa, 0xf0, 0xdb, 0xc2, 0xe0, 0x9f, 0xe1, 0xf7, 0xc5, 0xc7, 0x03, - 0xab, 0x34, 0xfe, 0xfe, 0xe8, 0xf1, 0xc0, 0x3a, 0xaa, 0xef, 0x7d, 0xf9, 0xf2, 0x71, 0xef, 0xc7, - 0x61, 0x4f, 0xfe, 0xc2, 0xdd, 0xff, 0xf3, 0xf8, 0xe5, 0x4b, 0xe7, 0xc7, 0x75, 0xaf, 0xff, 0xff, - 0x5a, 0xaf, 0xfe, 0xdf, 0x7b, 0x7f, 0xcf, 0xb3, 0xbd, 0x5d, 0x9d, 0x27, 0x6e, 0xfa, 0x21, 0xc3, - 0xd2, 0x71, 0x0c, 0xe9, 0x90, 0x96, 0x8e, 0xf3, 0x9f, 0xfd, 0x3d, 0x6c, 0x5b, 0xcf, 0x65, 0xeb, - 0x97, 0xfa, 0x8f, 0x83, 0x0f, 0xa5, 0xde, 0xde, 0xf9, 0xde, 0xee, 0xfc, 0xef, 0xce, 0xf7, 0x7e, - 0x1c, 0x7c, 0x38, 0xea, 0xed, 0xee, 0x2e, 0xf9, 0xcb, 0xdf, 0x97, 0x8d, 0xb1, 0xf7, 0x73, 0x77, - 0x77, 0x77, 0x24, 0x17, 0x33, 0xb2, 0xf2, 0x78, 0x50, 0xa8, 0xff, 0x7d, 0xf0, 0xed, 0xf0, 0xff, - 0x91, 0xb4, 0xc5, 0xfa, 0xf0, 0xde, 0x52, 0x19, 0xfb, 0xc0, 0x0e, 0x21, 0xff, 0x3e, 0xaf, 0xff, - 0xf7, 0xf9, 0xde, 0x8f, 0xe3, 0xde, 0xf8, 0xfb, 0xc1, 0xff, 0xf7, 0x7e, 0xee, 0x7e, 0xfc, 0xaf, - 0x2f, 0x5f, 0x3e, 0x7e, 0xfc, 0xaf, 0xbd, 0xe1, 0x0b, 0x8f, 0x3e, 0xf7, 0x5f, 0xc3, 0xbf, 0xfe, - 0xfd, 0xfc, 0x7c, 0xe1, 0x57, 0x7b, 0xbb, 0xff, 0xe7, 0x63, 0x16, 0x61, 0x01, 0xe9, 0x14, 0x0a, - 0x1b, 0x07, 0xe5, 0x39, 0x60, 0xee, 0xc1, 0xdc, 0x83, 0xb9, 0x97, 0x65, 0x73, 0x0f, 0xa9, 0xca, - 0x26, 0xc9, 0x2c, 0x52, 0x95, 0xe5, 0xef, 0x83, 0x54, 0xe5, 0xd4, 0x2e, 0x3d, 0x52, 0x95, 0xc1, - 0xad, 0x99, 0xb8, 0xf5, 0x37, 0xc7, 0x0f, 0xbb, 0xb6, 0x6b, 0x35, 0x1d, 0xbf, 0xd9, 0x75, 0x42, - 0xcb, 0x69, 0x09, 0x2f, 0x74, 0x9e, 0x1d, 0xe1, 0xf3, 0xd1, 0xed, 0x77, 0xee, 0x09, 0x06, 0x0e, - 0x06, 0x0e, 0x06, 0x0e, 0x06, 0xce, 0xc4, 0xc0, 0x0f, 0x8b, 0x8c, 0x0c, 0xfc, 0x04, 0x0c, 0x1c, - 0x0c, 0x1c, 0x0c, 0x7c, 0x23, 0x19, 0x78, 0xa9, 0x78, 0x56, 0x3a, 0x3b, 0x3e, 0x29, 0x9e, 0x81, - 0x86, 0x83, 0x86, 0x93, 0x8e, 0x84, 0x33, 0x15, 0xeb, 0xd3, 0xed, 0x87, 0x49, 0x59, 0x68, 0xaa, - 0x13, 0x97, 0xea, 0xa0, 0xa9, 0x4e, 0x9a, 0x6d, 0x25, 0xe4, 0xc8, 0x26, 0x66, 0x0b, 0x21, 0x47, - 0x96, 0x42, 0x2a, 0x90, 0x23, 0x0b, 0x97, 0x0d, 0x5c, 0x36, 0x70, 0xd9, 0x20, 0x47, 0x76, 0xdd, - 0xdc, 0x20, 0x47, 0x36, 0xe6, 0x1a, 0x20, 0x47, 0x16, 0x39, 0xb2, 0x99, 0x92, 0x0e, 0xe4, 0xc8, - 0xca, 0x4b, 0x07, 0x72, 0x64, 0xe3, 0x40, 0x08, 0x72, 0x64, 0xb7, 0xc6, 0x81, 0x88, 0x1c, 0x59, - 0x98, 0x7b, 0x30, 0xf7, 0x60, 0xee, 0xc1, 0xdc, 0x43, 0x8e, 0xac, 0x71, 0x32, 0x8b, 0x08, 0xbd, - 0xfc, 0x7d, 0x10, 0xa1, 0x4f, 0xed, 0xd2, 0x23, 0x47, 0x16, 0xdc, 0x9a, 0x89, 0x5b, 0x23, 0x47, - 0x16, 0x0c, 0x1c, 0x0c, 0x1c, 0x0c, 0x7c, 0x3b, 0x18, 0x38, 0x72, 0x64, 0xc1, 0xc0, 0xc1, 0xc0, - 0xc1, 0xc0, 0xa5, 0x97, 0x1e, 0x39, 0xb2, 0xa0, 0xe1, 0x3c, 0x23, 0x21, 0x47, 0x36, 0x76, 0x8e, - 0x2c, 0x0a, 0x8f, 0x73, 0xad, 0x76, 0x8a, 0x56, 0x39, 0xc1, 0xca, 0xe3, 0x77, 0xc3, 0x07, 0xc8, - 0x60, 0xe9, 0x71, 0x9a, 0x5c, 0x6b, 0xd2, 0x1c, 0x6b, 0xf2, 0xc2, 0xe3, 0x45, 0x14, 0x1e, 0x4f, - 0x89, 0xad, 0x8c, 0xc2, 0xe3, 0x72, 0x6f, 0x45, 0x56, 0x78, 0xbc, 0x4f, 0x0d, 0xbf, 0x31, 0x9c, - 0xa9, 0x18, 0x8d, 0x4b, 0x7b, 0xa8, 0xe2, 0x00, 0x85, 0xc7, 0x53, 0xee, 0x54, 0xc3, 0xa1, 0x8a, - 0x8c, 0x71, 0x7c, 0x72, 0x27, 0x59, 0xb4, 0x6f, 0x9f, 0xda, 0x6d, 0x57, 0xd8, 0x1e, 0xe5, 0xa6, - 0x1d, 0xeb, 0xff, 0xc2, 0x06, 0x9d, 0x69, 0x1b, 0x73, 0x55, 0xca, 0x6c, 0xa4, 0x68, 0x0d, 0xa6, - 0x07, 0x07, 0x14, 0x03, 0x8a, 0x01, 0xc5, 0x5b, 0x09, 0xc5, 0x41, 0xe8, 0x3b, 0xde, 0x0b, 0x07, - 0x12, 0x9f, 0x6e, 0x10, 0x12, 0x77, 0x7c, 0xd1, 0x14, 0x2d, 0xe1, 0x35, 0x19, 0xe8, 0xf0, 0xd4, - 0xd8, 0xc0, 0x61, 0xe0, 0x30, 0x70, 0x78, 0x2b, 0x71, 0x98, 0x3c, 0x63, 0x93, 0x21, 0x53, 0x93, - 0x29, 0x3e, 0xcc, 0x10, 0x85, 0xe7, 0x8c, 0x07, 0x33, 0x07, 0x03, 0xb9, 0xe3, 0xbf, 0x26, 0x62, - 0x7e, 0x0c, 0xf1, 0x5e, 0xd6, 0x38, 0xaf, 0xa9, 0x25, 0x65, 0xcc, 0xac, 0x34, 0xb2, 0xac, 0x29, - 0x0d, 0x8d, 0xd6, 0x37, 0x88, 0x69, 0x86, 0x94, 0x1a, 0x26, 0xd2, 0x2e, 0x83, 0x51, 0xc1, 0x2e, - 0xc1, 0x2e, 0xc1, 0x2e, 0xb7, 0x92, 0x5d, 0x0e, 0x73, 0x9e, 0xc3, 0x37, 0x5f, 0x3c, 0x73, 0x98, - 0xfa, 0x84, 0x3a, 0x2d, 0x5f, 0x1d, 0x3d, 0xea, 0x27, 0x3b, 0x10, 0x7c, 0x49, 0xe1, 0x95, 0xeb, - 0xcb, 0xdb, 0x9b, 0xea, 0xf5, 0x43, 0xe3, 0xe1, 0x8f, 0xdb, 0x0a, 0xb5, 0x58, 0x0c, 0xd4, 0x7d, - 0xc0, 0x92, 0x47, 0xc9, 0xc4, 0x7f, 0xc6, 0xd3, 0x72, 0x57, 0xb9, 0xba, 0x79, 0xa8, 0xe4, 0xb3, - 0x40, 0x08, 0x99, 0x67, 0xa2, 0x76, 0x73, 0x51, 0xae, 0xa5, 0x3d, 0x2d, 0xba, 0x9e, 0x36, 0x20, - 0x44, 0x9e, 0xd3, 0xcc, 0x78, 0x69, 0xc8, 0x73, 0x22, 0x48, 0x63, 0xd3, 0xc8, 0x32, 0xda, 0x31, - 0xb8, 0x8c, 0x7d, 0xbe, 0x43, 0x13, 0xd9, 0xca, 0xd7, 0x9c, 0x20, 0x2c, 0x87, 0xa1, 0x5e, 0x22, - 0x45, 0xfe, 0xca, 0xf1, 0x2a, 0xae, 0xe8, 0xf3, 0x97, 0xbe, 0x32, 0xf0, 0xba, 0xae, 0xab, 0x91, - 0x74, 0x75, 0x65, 0x7f, 0xa7, 0x1b, 0xec, 0xc6, 0x6f, 0x09, 0x5f, 0xb4, 0x3e, 0xbd, 0x8d, 0x86, - 0x32, 0xba, 0x4c, 0x44, 0x52, 0x96, 0x06, 0xe9, 0xca, 0x6b, 0x65, 0xd1, 0xa9, 0xa4, 0x0d, 0xaa, - 0x49, 0xb2, 0xbc, 0x1c, 0xca, 0x5d, 0x21, 0xb9, 0x15, 0x74, 0xb7, 0x40, 0x82, 0x4b, 0x2f, 0x37, - 0xff, 0xf1, 0x67, 0x51, 0x62, 0x06, 0x15, 0xf3, 0x2f, 0xb5, 0xf2, 0x2d, 0x15, 0xf3, 0x2b, 0x95, - 0xf3, 0x29, 0x75, 0xac, 0x78, 0x1a, 0x6b, 0x5d, 0xd7, 0x2a, 0x27, 0xb3, 0xbe, 0xc9, 0xac, 0x6c, - 0x32, 0x6b, 0x9a, 0x17, 0x1b, 0x54, 0xf3, 0x17, 0xf3, 0xf3, 0x42, 0xab, 0x93, 0x36, 0x13, 0xed, - 0xa1, 0x65, 0x83, 0xaa, 0xd2, 0x13, 0x2d, 0xc7, 0x99, 0xb6, 0xa3, 0x8c, 0xc2, 0x31, 0x46, 0xeb, - 0x08, 0xa3, 0x72, 0x7c, 0x91, 0x3b, 0xba, 0xc8, 0x1d, 0x5b, 0xe4, 0x8e, 0x2c, 0xb3, 0xc4, 0x5a, - 0xdb, 0x31, 0x45, 0x97, 0x6e, 0xa2, 0x99, 0x5e, 0x02, 0x22, 0xa4, 0x49, 0x84, 0x14, 0xcc, 0x49, - 0x09, 0x12, 0xb4, 0x43, 0x38, 0xc7, 0x63, 0x73, 0x50, 0x1d, 0xc1, 0xd5, 0xcc, 0x40, 0x2d, 0xb3, - 0x4f, 0xcb, 0xcc, 0x53, 0x33, 0xeb, 0xe2, 0x4e, 0xa7, 0xe2, 0x56, 0x35, 0xbe, 0x45, 0xf3, 0x52, - 0x4c, 0x5a, 0xc2, 0x06, 0x8b, 0xb7, 0xeb, 0xd7, 0xef, 0xe1, 0xf7, 0x3f, 0xb1, 0x66, 0x39, 0x64, - 0x97, 0x81, 0x7b, 0xfa, 0xdf, 0x9f, 0x94, 0xd5, 0xaf, 0xfa, 0xce, 0x6b, 0xe6, 0x85, 0xd7, 0xb4, - 0x3b, 0x41, 0xd7, 0x8d, 0xf7, 0x96, 0x53, 0x19, 0xcd, 0xd3, 0x97, 0xad, 0x99, 0xc6, 0x78, 0xf6, - 0x4c, 0x6c, 0xd2, 0x25, 0x43, 0xae, 0xd4, 0x48, 0x94, 0x2c, 0x59, 0x52, 0x26, 0x45, 0xca, 0xe4, - 0x47, 0x99, 0xe4, 0xe8, 0x09, 0x44, 0x5c, 0x7b, 0x21, 0xdf, 0x1c, 0xaf, 0x65, 0xcc, 0x09, 0x9c, - 0x32, 0x01, 0xfa, 0xd7, 0xc5, 0xd5, 0x3a, 0x52, 0x86, 0xb2, 0x34, 0xab, 0x57, 0x61, 0xf1, 0x7a, - 0xac, 0x5d, 0x95, 0xa5, 0x6b, 0xb3, 0x72, 0x6d, 0x16, 0xae, 0xcd, 0xba, 0x69, 0xf9, 0x88, 0xac, - 0x61, 0xdb, 0xdf, 0x78, 0xa1, 0xdf, 0x76, 0xad, 0xd1, 0x2c, 0x2a, 0xba, 0x7b, 0x66, 0x46, 0x51, - 0xf3, 0xfa, 0x1c, 0xa8, 0x7a, 0x7d, 0x0e, 0xe0, 0xf5, 0x81, 0xd7, 0x87, 0xd7, 0xc4, 0x24, 0x38, - 0x54, 0xa6, 0x78, 0x78, 0x8c, 0xc7, 0xb9, 0x3b, 0xc3, 0x62, 0x2c, 0xa5, 0x74, 0xb0, 0xe5, 0x8c, - 0xc8, 0x52, 0x48, 0x02, 0x03, 0x00, 0x00, 0x00, 0x32, 0x03, 0x00, 0x7a, 0x49, 0x4e, 0x3a, 0xc9, - 0x4c, 0x34, 0x49, 0x4b, 0x53, 0xc9, 0x49, 0x17, 0xe5, 0xdb, 0xfb, 0xcf, 0xb5, 0xf2, 0x43, 0xf5, - 0xe6, 0x5a, 0x75, 0xfb, 0x10, 0x24, 0x21, 0x11, 0xd5, 0xf7, 0xf8, 0xfd, 0x5f, 0xb5, 0xf2, 0x75, - 0x3e, 0x89, 0x4a, 0x25, 0x44, 0x2f, 0x70, 0x75, 0x5b, 0xbb, 0x37, 0xed, 0xaa, 0xad, 0x73, 0x8b, - 0x27, 0x8b, 0xf2, 0x72, 0xed, 0x27, 0xe1, 0x5a, 0xb6, 0xeb, 0xb6, 0x9b, 0x43, 0x9d, 0xf3, 0xda, - 0x6e, 0x69, 0xe8, 0xaf, 0xe5, 0xc3, 0x41, 0x85, 0x41, 0x85, 0x41, 0x85, 0xa5, 0x5b, 0x85, 0xd5, - 0xca, 0x9f, 0x2a, 0xb5, 0x46, 0xb9, 0x56, 0xbb, 0xb9, 0x18, 0x68, 0xb1, 0xc6, 0xd5, 0xcd, 0x65, - 0x25, 0xfb, 0xaa, 0xac, 0x7a, 0x7d, 0xff, 0x50, 0xbe, 0xbe, 0xa8, 0x34, 0x06, 0xef, 0x97, 0x65, - 0x9d, 0x76, 0x5b, 0xb9, 0x6b, 0x5c, 0x57, 0xfe, 0xf5, 0xf0, 0xdb, 0xcd, 0x6d, 0xd6, 0x5f, 0xe3, - 0xf6, 0xae, 0xf2, 0x4b, 0xf5, 0x5f, 0x5b, 0xac, 0xa0, 0x37, 0x30, 0xcc, 0x33, 0x63, 0xb9, 0x4a, - 0xb5, 0x2b, 0x8f, 0x11, 0x7f, 0x89, 0xe1, 0x6c, 0x97, 0x4b, 0xb1, 0x52, 0x4a, 0xad, 0x52, 0xf6, - 0x14, 0x17, 0xe1, 0x29, 0xa6, 0x26, 0x1a, 0xf0, 0x14, 0xc3, 0x53, 0x0c, 0x96, 0x0d, 0x4f, 0x71, - 0x6c, 0xcc, 0x86, 0xa7, 0x18, 0x00, 0x00, 0x00, 0x80, 0x99, 0x9d, 0xb0, 0x99, 0x0d, 0x4f, 0x71, - 0xba, 0xcc, 0x51, 0x78, 0x8a, 0xe3, 0xce, 0x18, 0x3c, 0xc5, 0x50, 0x61, 0x50, 0x61, 0x50, 0x61, - 0xf0, 0x14, 0x67, 0xc1, 0xc5, 0x0a, 0x4f, 0xf1, 0x66, 0x28, 0xe8, 0x8d, 0xf7, 0x14, 0x4b, 0x1c, - 0x4f, 0xd9, 0xec, 0x44, 0x7d, 0x99, 0x64, 0xf8, 0xdc, 0xfa, 0xa3, 0x10, 0x95, 0x99, 0xe1, 0x18, - 0x72, 0xfe, 0x9f, 0x5b, 0x4f, 0xf1, 0x33, 0xfd, 0xfb, 0x1f, 0x46, 0x7e, 0x3f, 0xf2, 0xfb, 0x67, - 0x3f, 0x88, 0xfc, 0x7e, 0x44, 0x6d, 0x32, 0x15, 0xb5, 0x79, 0xb5, 0x9b, 0x96, 0xfd, 0xe2, 0x78, - 0x2f, 0x56, 0xe8, 0xbc, 0x6a, 0x18, 0xbf, 0x73, 0xe3, 0xc0, 0xea, 0x85, 0xd5, 0xbb, 0xa1, 0x56, - 0xaf, 0x72, 0x95, 0x6c, 0x8d, 0x6a, 0xd8, 0x9a, 0x55, 0xaf, 0xf5, 0xea, 0x47, 0x11, 0xd4, 0x46, - 0x20, 0x29, 0xd7, 0x4a, 0x55, 0x95, 0x9a, 0xb2, 0x4c, 0x71, 0x4f, 0xaf, 0x9a, 0x56, 0xea, 0xa6, - 0x96, 0xa0, 0x3a, 0x34, 0xe9, 0xf4, 0x1a, 0x2a, 0xb0, 0x50, 0x4f, 0x81, 0x37, 0xba, 0xaf, 0x41, - 0x5d, 0x61, 0xfb, 0x9e, 0xe3, 0xbd, 0xe8, 0xe9, 0xe1, 0x68, 0x14, 0x68, 0x61, 0x68, 0x61, 0xe4, - 0x4f, 0xac, 0xb2, 0x9e, 0x0a, 0xa9, 0x10, 0xfa, 0xef, 0xce, 0x6b, 0xf7, 0xd5, 0x12, 0x5e, 0xe8, - 0x3b, 0x03, 0xaf, 0xb1, 0xb2, 0xdc, 0xcf, 0x0e, 0x04, 0xd1, 0x87, 0xe8, 0x83, 0x80, 0x83, 0x80, - 0x83, 0x80, 0x83, 0x80, 0x6f, 0x33, 0x01, 0xdf, 0xc0, 0x68, 0xd3, 0x73, 0xeb, 0x29, 0x81, 0xd3, - 0x08, 0x7d, 0xc3, 0x22, 0xb4, 0x9f, 0x5c, 0x85, 0x13, 0x09, 0x93, 0x4b, 0xe1, 0xdf, 0x86, 0x7f, - 0x5b, 0x4b, 0x02, 0xa5, 0xfd, 0xdb, 0xda, 0xc4, 0x5a, 0x8f, 0x50, 0x17, 0x40, 0xa8, 0x41, 0xa8, - 0x53, 0x5a, 0xab, 0xb8, 0xbf, 0xb3, 0xdf, 0xf4, 0x93, 0xa7, 0x86, 0xc3, 0xe8, 0xd5, 0x23, 0x2e, - 0xa0, 0x1e, 0x31, 0x91, 0x18, 0x91, 0x8b, 0x13, 0xb9, 0x58, 0x91, 0x8b, 0x97, 0x26, 0x57, 0x55, - 0xdc, 0x39, 0xaa, 0x62, 0x17, 0x0d, 0x20, 0x99, 0x2a, 0xb0, 0x76, 0xfb, 0x49, 0xa5, 0x10, 0x30, - 0x09, 0x24, 0x99, 0x60, 0x52, 0x0a, 0x28, 0x8f, 0xa0, 0x52, 0x0b, 0x2c, 0x9b, 0xe0, 0xb2, 0x09, - 0x30, 0x9b, 0x20, 0xeb, 0x09, 0x34, 0x81, 0x67, 0x80, 0x44, 0xc0, 0x67, 0x2c, 0x27, 0xbb, 0xd5, - 0xf2, 0x45, 0x10, 0xd0, 0x77, 0xd5, 0x9c, 0x1e, 0x1c, 0xcd, 0x35, 0xd3, 0x05, 0x0d, 0x5c, 0x10, - 0xc1, 0x0e, 0x15, 0xec, 0x90, 0xc1, 0x0e, 0x1d, 0x34, 0x10, 0x42, 0x04, 0x25, 0xd1, 0xdb, 0xf2, - 0x35, 0xd7, 0xa4, 0x87, 0x81, 0x19, 0x36, 0x70, 0x4a, 0x38, 0xe6, 0xad, 0x1d, 0x86, 0xc2, 0xf7, - 0xc8, 0x5b, 0x53, 0xe6, 0x1f, 0x0f, 0xac, 0x33, 0xdb, 0x7a, 0x2e, 0x5b, 0xbf, 0xd4, 0x7f, 0x14, - 0x7b, 0xbb, 0xe7, 0xb3, 0x3f, 0xef, 0xfd, 0x38, 0xea, 0xe5, 0xd1, 0xee, 0x79, 0xc9, 0xbc, 0x7d, - 0x73, 0x6d, 0x8f, 0x5e, 0x31, 0x0d, 0x46, 0x85, 0x46, 0x82, 0x46, 0x82, 0x46, 0xda, 0x4a, 0x8d, - 0xe4, 0x0a, 0xfb, 0x99, 0xa9, 0xd5, 0xf3, 0x09, 0xad, 0x36, 0x1a, 0x04, 0x65, 0x3e, 0x7e, 0xdc, - 0x9f, 0xfb, 0xaf, 0x0f, 0x60, 0xc1, 0xe0, 0xff, 0xa3, 0x68, 0xcb, 0xe0, 0x7b, 0xcb, 0x69, 0xe5, - 0xd1, 0xa7, 0x36, 0xf5, 0x7d, 0x6a, 0x9f, 0x5b, 0x4f, 0xfb, 0x51, 0xd8, 0x69, 0x7f, 0xe4, 0xc3, - 0x1f, 0xfc, 0xfb, 0x26, 0x15, 0x3b, 0xa3, 0x9f, 0x7b, 0x9d, 0x80, 0xb5, 0xe3, 0x85, 0xc2, 0x7f, - 0xb6, 0x29, 0xdc, 0x83, 0xd1, 0x19, 0xde, 0x68, 0x48, 0x38, 0x8e, 0xe0, 0x38, 0x82, 0xe3, 0x28, - 0x4d, 0x8e, 0xa3, 0x48, 0x36, 0xad, 0xbe, 0x22, 0x25, 0x67, 0xe8, 0xb3, 0xc3, 0xd3, 0x52, 0xf5, - 0xc2, 0x96, 0x52, 0x75, 0xe7, 0x19, 0x2c, 0x3d, 0x01, 0x96, 0xee, 0x3c, 0x6f, 0x2a, 0x41, 0xa7, - 0x02, 0x93, 0x68, 0x40, 0xa2, 0xb0, 0xd3, 0x4a, 0x21, 0x20, 0x09, 0x43, 0x31, 0xc3, 0x0a, 0x1b, - 0xbc, 0x70, 0xc2, 0x0c, 0x3b, 0xdc, 0x70, 0xc3, 0x8e, 0x31, 0xf8, 0x31, 0x06, 0x43, 0x26, 0xe0, - 0x88, 0x16, 0x96, 0x88, 0xe1, 0x89, 0x0d, 0xa6, 0x18, 0x4c, 0x1e, 0x63, 0xa6, 0xd0, 0x3a, 0x10, - 0x3b, 0x60, 0x1a, 0x9e, 0x0b, 0xcc, 0x4c, 0x80, 0x9a, 0x31, 0x70, 0x33, 0x05, 0x72, 0xc6, 0xc1, - 0xce, 0x38, 0xe8, 0x99, 0x04, 0x3f, 0x1e, 0x10, 0x64, 0x02, 0xc3, 0x68, 0x62, 0xc8, 0x9d, 0xab, - 0x2b, 0xa5, 0x85, 0xde, 0xd9, 0xba, 0x92, 0x81, 0x9d, 0x30, 0xde, 0xe3, 0x36, 0xf2, 0xfe, 0xf5, - 0xb7, 0xd1, 0x79, 0x04, 0xc8, 0xc1, 0xfc, 0x2f, 0x46, 0x3f, 0x0f, 0x2a, 0x05, 0xed, 0x64, 0x63, - 0xa3, 0x31, 0x6c, 0xb2, 0x7c, 0xd0, 0x7d, 0x32, 0xa8, 0x1f, 0x67, 0xee, 0x06, 0x15, 0x09, 0x15, - 0x09, 0x15, 0x09, 0x15, 0x09, 0x15, 0x99, 0x52, 0x15, 0xf9, 0x38, 0x51, 0x91, 0xff, 0xd3, 0xec, - 0xfa, 0xbe, 0xf0, 0xc2, 0xdd, 0xbd, 0xfd, 0x8f, 0x1f, 0xf7, 0xa3, 0x4f, 0xd4, 0x47, 0x97, 0x4c, - 0xe3, 0x7a, 0xb0, 0xe4, 0x77, 0xd1, 0xc8, 0x2d, 0xf1, 0x3d, 0x33, 0xda, 0x36, 0xd5, 0xd6, 0x72, - 0xe5, 0x7b, 0x18, 0x90, 0xe7, 0x3f, 0xe5, 0xb4, 0xeb, 0x94, 0xc6, 0x01, 0xe8, 0x76, 0xd3, 0x12, - 0xdf, 0xc3, 0xf3, 0x50, 0xb8, 0xe2, 0x55, 0x84, 0xfe, 0x9b, 0xd5, 0xf6, 0xac, 0xe6, 0xd7, 0xc1, - 0xe1, 0x68, 0x23, 0x4e, 0x9c, 0x67, 0xdb, 0x0d, 0x4c, 0x78, 0x71, 0xd2, 0xee, 0xc0, 0xa9, 0x53, - 0x3b, 0xd4, 0x69, 0xc3, 0xf9, 0x8b, 0x54, 0xd5, 0x58, 0x78, 0x7f, 0x82, 0x5b, 0x33, 0x01, 0x2e, - 0x92, 0xb0, 0x3f, 0xdf, 0x9a, 0x12, 0x42, 0x8c, 0x64, 0xe3, 0x30, 0x79, 0x3b, 0x40, 0xa2, 0xc1, - 0x98, 0xb4, 0xee, 0xe4, 0x72, 0xf0, 0x17, 0xe1, 0xe0, 0x37, 0x46, 0xec, 0xe1, 0xe0, 0xdf, 0x3c, - 0xca, 0x02, 0x07, 0x3f, 0xbc, 0x17, 0xf0, 0x5e, 0xc0, 0x7b, 0x01, 0xef, 0x05, 0xbc, 0x17, 0x06, - 0xbc, 0x17, 0x70, 0xf0, 0xe7, 0xe0, 0xe0, 0x87, 0x8a, 0x84, 0x8a, 0x84, 0x8a, 0x84, 0x8a, 0x84, - 0x8a, 0x84, 0x83, 0x3f, 0x5b, 0xd6, 0xf2, 0xe6, 0x7b, 0x53, 0x25, 0x9a, 0x5c, 0x99, 0x5f, 0xd2, - 0x74, 0xa5, 0x70, 0x33, 0x6d, 0x86, 0xe4, 0x37, 0x41, 0x9e, 0xd4, 0x67, 0xfd, 0x5e, 0xeb, 0xaf, - 0x5f, 0x5a, 0x4f, 0x8d, 0x2b, 0xbb, 0xf9, 0xd0, 0x7f, 0xb6, 0x46, 0xa5, 0xff, 0x4c, 0x8d, 0xea, - 0xf8, 0x49, 0x26, 0xdf, 0xdd, 0x89, 0x67, 0x9c, 0xcd, 0xcc, 0xf6, 0xd9, 0x4c, 0x4a, 0xfb, 0x43, - 0x63, 0x4f, 0x65, 0xf1, 0x70, 0x28, 0x65, 0x99, 0x21, 0x86, 0xba, 0x22, 0x54, 0x85, 0x92, 0x71, - 0x40, 0x34, 0x75, 0x66, 0x18, 0x0e, 0x88, 0x26, 0x64, 0x13, 0x31, 0xd8, 0x3e, 0x94, 0x36, 0xce, - 0x74, 0x71, 0x85, 0x51, 0x09, 0x85, 0x69, 0x3c, 0xc9, 0x20, 0xc6, 0xd2, 0x44, 0xd6, 0x49, 0x23, - 0xe9, 0xe4, 0x07, 0xef, 0x8b, 0xc0, 0x55, 0xe0, 0x6a, 0x26, 0x71, 0x95, 0xec, 0xe0, 0xbd, 0xfd, - 0x22, 0xe8, 0x8f, 0xdb, 0xdb, 0x64, 0x29, 0x72, 0xa8, 0x87, 0x85, 0x7a, 0x58, 0xdc, 0x10, 0xc1, - 0x0e, 0x15, 0xe9, 0xf4, 0xd5, 0xf0, 0xd5, 0xc3, 0xea, 0x3a, 0x5e, 0x78, 0x5c, 0x62, 0x28, 0x87, - 0x45, 0x59, 0x9b, 0x51, 0xaf, 0xcb, 0xd1, 0xaa, 0x2f, 0x06, 0x07, 0x28, 0x45, 0x57, 0x24, 0x43, - 0xf0, 0xba, 0x30, 0x3c, 0x51, 0x17, 0xa5, 0x95, 0xe3, 0x13, 0xb6, 0xff, 0x61, 0x16, 0xb7, 0xd9, - 0x25, 0xb5, 0xbf, 0x67, 0x7e, 0x49, 0x0b, 0xa7, 0xa5, 0xd2, 0xf1, 0x49, 0xa9, 0x74, 0x70, 0x72, - 0x78, 0x72, 0x70, 0x76, 0x74, 0x54, 0x38, 0x2e, 0x1c, 0x65, 0x78, 0x95, 0x53, 0xea, 0xde, 0xdf, - 0xa4, 0xe2, 0xab, 0x03, 0xb7, 0xa7, 0x15, 0x52, 0xaa, 0x9d, 0xd9, 0xce, 0x1c, 0xc3, 0xb1, 0x41, - 0x3c, 0x41, 0x3c, 0x41, 0x3c, 0xb7, 0x92, 0x78, 0x0a, 0xaf, 0xfb, 0x2a, 0xfc, 0x61, 0x34, 0x88, - 0xa1, 0x18, 0x6b, 0x89, 0x70, 0xcc, 0x8a, 0xd7, 0x7d, 0xed, 0x4f, 0x42, 0x6f, 0x83, 0x00, 0x1e, - 0xdd, 0x1f, 0x00, 0xf1, 0x80, 0x78, 0x40, 0x3c, 0xba, 0x3f, 0xe4, 0xd0, 0xfd, 0x21, 0x85, 0xfa, - 0x09, 0xdd, 0x1f, 0xa0, 0x91, 0xa0, 0x91, 0xa0, 0x91, 0x68, 0xf7, 0x2d, 0xba, 0x3f, 0xb0, 0x63, - 0x3f, 0x32, 0x0c, 0x95, 0x32, 0x0c, 0x09, 0x12, 0x97, 0x93, 0xc9, 0x3d, 0x21, 0x51, 0xd4, 0x94, - 0x0a, 0x1a, 0x19, 0x7d, 0x49, 0x2b, 0x5e, 0x64, 0x9e, 0xa4, 0x04, 0x0e, 0xb7, 0x38, 0xa3, 0x6f, - 0x00, 0x24, 0x49, 0xc1, 0xa9, 0xd1, 0x8e, 0xcf, 0xff, 0x10, 0x6f, 0x73, 0xc6, 0x76, 0x4e, 0x03, - 0x45, 0xf3, 0x35, 0x27, 0x08, 0xcb, 0x61, 0xa8, 0xd9, 0x45, 0xfa, 0xca, 0xf1, 0x2a, 0xae, 0xe8, - 0x4b, 0x54, 0x90, 0x3f, 0xcf, 0x79, 0x5d, 0xd7, 0xd5, 0x50, 0x31, 0x57, 0xf6, 0x77, 0xba, 0xc1, - 0x6e, 0xfc, 0x96, 0xf0, 0x45, 0xeb, 0xd3, 0xdb, 0x68, 0x28, 0xa3, 0x6b, 0x45, 0xc4, 0x4f, 0xcc, - 0xf1, 0x92, 0xbc, 0x56, 0x56, 0xaa, 0xdc, 0x39, 0x07, 0x35, 0x71, 0x95, 0x17, 0x36, 0xb9, 0x2b, - 0x24, 0x97, 0x5a, 0x77, 0x89, 0x4d, 0x2c, 0xad, 0xdc, 0x44, 0xc7, 0x9f, 0xae, 0x78, 0x9f, 0x8c, - 0x39, 0xa1, 0xaa, 0x13, 0xc9, 0x39, 0x81, 0x12, 0xd2, 0x20, 0xb1, 0xfb, 0xe3, 0x2d, 0xc7, 0xfa, - 0xc9, 0x8d, 0x31, 0xb1, 0x92, 0x99, 0xe2, 0x4a, 0x19, 0xe1, 0x92, 0x99, 0xdf, 0xd2, 0x19, 0xde, - 0x2a, 0x7c, 0x5a, 0x8f, 0x37, 0xab, 0xf2, 0x63, 0x6d, 0x1e, 0xac, 0xcd, 0x77, 0xb5, 0x79, 0x2d, - 0xad, 0x48, 0xcb, 0x66, 0x42, 0x0f, 0x49, 0xcd, 0x8b, 0xe3, 0xbd, 0x58, 0xa1, 0xf3, 0xaa, 0xb0, - 0x00, 0x33, 0x91, 0x88, 0xc9, 0x38, 0x92, 0x93, 0xa8, 0x66, 0x50, 0x2a, 0x1b, 0x90, 0x3a, 0x06, - 0x23, 0x8d, 0x81, 0xa8, 0x6b, 0x10, 0x92, 0x19, 0x80, 0x64, 0x06, 0x1f, 0x99, 0x81, 0xc7, 0x4b, - 0x1e, 0x94, 0x0d, 0xb6, 0x99, 0x7c, 0xde, 0xc2, 0xb1, 0xca, 0x9a, 0x8f, 0x76, 0xf9, 0xb1, 0xc2, - 0xa5, 0x7a, 0xf9, 0xb9, 0x7a, 0x66, 0x86, 0xbe, 0xef, 0x89, 0xc8, 0x5f, 0x44, 0x94, 0x3f, 0x4b, - 0x99, 0x41, 0xd9, 0xd3, 0x33, 0xba, 0x52, 0x37, 0xb5, 0xc7, 0x47, 0x47, 0x87, 0x47, 0x29, 0x9a, - 0x5e, 0x43, 0x06, 0x4b, 0x9d, 0x8b, 0xaf, 0x7f, 0x90, 0xd3, 0xc4, 0xae, 0xb0, 0x7d, 0xcf, 0xf1, - 0x5e, 0xf4, 0xf4, 0x70, 0x34, 0x0a, 0xb4, 0x30, 0xb4, 0xf0, 0x86, 0x6a, 0xe1, 0xa7, 0x76, 0xdb, - 0x15, 0x4a, 0x3e, 0xb8, 0xc8, 0x7a, 0x2a, 0xa4, 0x42, 0xe8, 0xbf, 0x3b, 0xaf, 0xdd, 0x57, 0x6b, - 0xec, 0x37, 0xd0, 0x90, 0xfb, 0xd9, 0x81, 0x20, 0xfa, 0x10, 0x7d, 0x10, 0x70, 0x10, 0x70, 0x10, - 0x70, 0x10, 0xf0, 0x6d, 0x26, 0xe0, 0x1b, 0xea, 0x30, 0x97, 0x48, 0x66, 0x89, 0xe1, 0xd6, 0xde, - 0xd1, 0x98, 0x1c, 0xd9, 0x49, 0xa1, 0x9f, 0x8c, 0x7c, 0x2c, 0xaf, 0xfc, 0x9a, 0x58, 0xc1, 0xfb, - 0x73, 0xb9, 0x7a, 0x86, 0xde, 0x99, 0x9d, 0x61, 0xdb, 0x81, 0xe8, 0x51, 0xad, 0x4e, 0xdb, 0x75, - 0x9a, 0x71, 0x48, 0xde, 0x6c, 0xdf, 0x82, 0x25, 0x03, 0xac, 0x59, 0x91, 0x78, 0xe1, 0x81, 0xd8, - 0xe4, 0x4d, 0x86, 0xac, 0xa9, 0x91, 0x33, 0x59, 0x32, 0xa6, 0x4c, 0xbe, 0x94, 0xc9, 0x96, 0x32, - 0xb9, 0xd2, 0x93, 0xad, 0xb8, 0xee, 0xfc, 0xbc, 0xdd, 0xe9, 0xb8, 0x6f, 0xc3, 0x0d, 0xf2, 0x26, - 0x1f, 0x7c, 0x9a, 0xb9, 0x9a, 0x39, 0x06, 0x75, 0x60, 0x26, 0x06, 0xe5, 0x77, 0xda, 0xee, 0x56, - 0x06, 0xa0, 0x06, 0x2f, 0x9e, 0x95, 0xe8, 0x53, 0x73, 0xbc, 0x2b, 0x14, 0xad, 0xde, 0xd1, 0xf5, - 0x6a, 0xc6, 0x6e, 0x21, 0x63, 0xc6, 0xae, 0xe4, 0x96, 0xde, 0x1e, 0x4b, 0x57, 0x6e, 0xcb, 0x9b, - 0x31, 0x73, 0x55, 0x4b, 0x52, 0xe5, 0x5b, 0xe2, 0xd9, 0xee, 0xba, 0xa1, 0x25, 0xbe, 0x77, 0xda, - 0x7e, 0x28, 0x0b, 0xe9, 0x2b, 0xf7, 0xcf, 0xf2, 0x61, 0x15, 0xe7, 0xff, 0x72, 0x38, 0x58, 0x7f, - 0xdc, 0xbb, 0xca, 0xff, 0x53, 0xb9, 0x78, 0x68, 0xdc, 0xdd, 0x7c, 0x7e, 0xa8, 0xa8, 0x0e, 0xa7, - 0x67, 0x42, 0x69, 0xa7, 0x11, 0x53, 0xa4, 0x0f, 0x13, 0xc8, 0x29, 0x95, 0xbc, 0x92, 0xcb, 0x2d, - 0xb9, 0xfc, 0xd2, 0xca, 0xb1, 0xa6, 0xa9, 0xaa, 0xb8, 0x67, 0xb4, 0x13, 0x7f, 0x17, 0x24, 0x73, - 0x28, 0x92, 0xba, 0x55, 0x3b, 0x28, 0x8e, 0xe7, 0x6b, 0x1e, 0xc7, 0x57, 0xc8, 0x17, 0xfc, 0xa0, - 0x8e, 0x93, 0xce, 0x2b, 0x0b, 0x4e, 0xce, 0x0e, 0x0b, 0x9c, 0x04, 0x4e, 0x02, 0x27, 0x81, 0x93, - 0x19, 0xc4, 0x49, 0x62, 0x1e, 0x49, 0xc2, 0x1f, 0x01, 0x64, 0x00, 0xb2, 0xed, 0x05, 0x32, 0xfd, - 0x13, 0x5e, 0x14, 0x27, 0xbb, 0x66, 0xfa, 0x4d, 0xf5, 0x17, 0xe2, 0xdc, 0x6f, 0x77, 0x43, 0xc7, - 0x7b, 0x19, 0xc9, 0x76, 0xf4, 0xeb, 0x11, 0xde, 0xb6, 0xc4, 0xb3, 0xe3, 0x39, 0xa1, 0xd3, 0xf6, - 0x82, 0xd5, 0x7f, 0x8a, 0xfe, 0xa2, 0xde, 0xbf, 0xb1, 0x87, 0x53, 0x55, 0x4b, 0x07, 0x9b, 0x3e, - 0x55, 0x45, 0x74, 0x14, 0xb8, 0x1b, 0x08, 0x5f, 0x17, 0x22, 0x08, 0x0f, 0xb6, 0x4e, 0xe3, 0x57, - 0x7b, 0xf8, 0xb6, 0xd6, 0xd3, 0x1b, 0xc5, 0x41, 0x48, 0x8e, 0x43, 0xad, 0x33, 0x58, 0x36, 0x98, - 0xc9, 0x6c, 0x9d, 0x85, 0x34, 0x42, 0x3e, 0x88, 0x8d, 0x33, 0x12, 0xa3, 0x0c, 0xe4, 0x03, 0xe4, - 0x03, 0xe4, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0xe4, 0x23, 0x2b, 0xe4, 0x63, 0x8b, 0x4e, - 0x94, 0xaf, 0xc8, 0xfa, 0xd9, 0x9f, 0xce, 0xd2, 0x18, 0x15, 0xe1, 0xc8, 0xa7, 0x20, 0x85, 0x5d, - 0xad, 0x35, 0x96, 0x56, 0x2b, 0x2c, 0xed, 0x08, 0x7e, 0x11, 0x11, 0xfc, 0x44, 0xb1, 0x0c, 0x11, - 0x7c, 0xf9, 0xfd, 0x83, 0x08, 0x3e, 0x6c, 0x2a, 0xd8, 0x54, 0x69, 0xb4, 0xa9, 0x10, 0x99, 0x42, - 0x04, 0x1f, 0x38, 0x09, 0x9c, 0x04, 0x4e, 0x02, 0x27, 0x19, 0x70, 0x12, 0x11, 0x7c, 0x00, 0x19, - 0x80, 0x2c, 0x4d, 0x40, 0x06, 0x27, 0x3a, 0xc7, 0xfa, 0xc0, 0x89, 0x2e, 0xbd, 0x11, 0xe1, 0x44, - 0xa7, 0xc2, 0x32, 0x44, 0xf0, 0x97, 0xcf, 0x11, 0x22, 0xf8, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, - 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0xea, 0xe4, 0x03, 0x11, 0xfc, 0xd9, 0x08, 0xbe, - 0x42, 0x3f, 0xa2, 0xed, 0xae, 0x7b, 0x13, 0x67, 0x56, 0xe9, 0xea, 0xc7, 0x57, 0xfb, 0x77, 0x1b, - 0xff, 0x74, 0x3b, 0xba, 0x57, 0xa3, 0xdc, 0xbf, 0xd7, 0xed, 0xf0, 0x56, 0xa8, 0xbe, 0xb3, 0xaf, - 0x56, 0xa0, 0x46, 0x75, 0xf6, 0xd9, 0x6a, 0xf4, 0x3c, 0xdb, 0x4d, 0xe9, 0xb2, 0x3c, 0xc3, 0x6b, - 0x50, 0x89, 0x07, 0x95, 0x78, 0x56, 0x6c, 0x28, 0xf9, 0x32, 0x3c, 0x93, 0x4b, 0x37, 0xa3, 0x06, - 0x0f, 0xfa, 0x40, 0x84, 0xa8, 0xc4, 0x43, 0xb8, 0x81, 0xb5, 0x3d, 0x38, 0x28, 0x3b, 0x4b, 0x6f, - 0xd4, 0x64, 0xa4, 0xec, 0xac, 0x72, 0x36, 0x9f, 0x1d, 0x04, 0xed, 0xa6, 0x63, 0x87, 0xa2, 0x35, - 0x6e, 0xfe, 0x66, 0x3d, 0xdb, 0xaf, 0x8e, 0xab, 0x52, 0xad, 0x79, 0x61, 0x2f, 0xbd, 0x37, 0x38, - 0x9c, 0xa3, 0x34, 0x3d, 0x38, 0xb7, 0xd7, 0x3f, 0xaa, 0xdd, 0x63, 0x33, 0xab, 0x2e, 0x52, 0xa7, - 0x25, 0xbc, 0xd0, 0x09, 0xdf, 0x88, 0xdc, 0xa4, 0x1a, 0xf5, 0x78, 0xf3, 0xd5, 0xd1, 0xa3, 0x7c, - 0xb2, 0x03, 0x41, 0xe7, 0x7a, 0x2b, 0x5f, 0x5e, 0xde, 0x55, 0xee, 0xef, 0x1b, 0xbf, 0x94, 0xaf, - 0xaa, 0xb5, 0x3f, 0xf2, 0x14, 0xb5, 0x87, 0x03, 0xe5, 0xe2, 0xd6, 0xd3, 0x5f, 0x44, 0xed, 0x6d, - 0xc7, 0xef, 0x59, 0xbd, 0xfd, 0xbd, 0x44, 0xd0, 0x22, 0xf6, 0x43, 0x0a, 0xdf, 0xeb, 0x78, 0x13, - 0xdf, 0xeb, 0xea, 0xb6, 0x76, 0xbf, 0x89, 0xef, 0x55, 0x2b, 0x36, 0x2a, 0x0f, 0xbf, 0x55, 0xee, - 0xae, 0x2b, 0x0f, 0x49, 0x77, 0x2c, 0xae, 0x67, 0x04, 0xcd, 0xd1, 0xe5, 0x96, 0xc7, 0x8d, 0xae, - 0x12, 0xc3, 0x6f, 0x11, 0x04, 0xee, 0x5b, 0x20, 0xa4, 0x20, 0xa4, 0x20, 0xa4, 0x6a, 0xfb, 0x26, - 0x08, 0x7d, 0xf9, 0x7e, 0x5c, 0x4b, 0xb9, 0xe8, 0x69, 0x9a, 0x71, 0x46, 0xda, 0xf5, 0x49, 0xe6, - 0x0a, 0xdd, 0x74, 0xd4, 0x71, 0x9e, 0x01, 0x38, 0x0a, 0x80, 0xe3, 0x3c, 0x23, 0x3f, 0x48, 0x03, - 0x6c, 0xa8, 0xf2, 0x83, 0x9c, 0xe7, 0xf3, 0x49, 0xcc, 0x6c, 0xfe, 0x17, 0xa3, 0x9f, 0x35, 0x52, - 0x7e, 0x8c, 0x80, 0x5b, 0xd0, 0x7d, 0x22, 0xc4, 0xb7, 0x99, 0xd1, 0x00, 0x71, 0x80, 0x38, 0x40, - 0xdc, 0x06, 0x43, 0xdc, 0xe3, 0x04, 0xe2, 0xfe, 0xa7, 0xd9, 0xf5, 0x7d, 0xe1, 0x85, 0xbb, 0x7b, - 0xfb, 0x1f, 0x3f, 0xee, 0x47, 0x9f, 0xa8, 0x8f, 0x2e, 0x99, 0xc6, 0x85, 0x60, 0xc9, 0xef, 0xa2, - 0x91, 0x5b, 0xe2, 0x7b, 0x1e, 0x99, 0x5b, 0x3c, 0x09, 0x2d, 0xc3, 0xc9, 0x9f, 0xcc, 0x79, 0x7a, - 0x6a, 0xad, 0x28, 0x58, 0xf2, 0xea, 0x16, 0x3c, 0x9a, 0x82, 0x26, 0xa6, 0x3d, 0xd0, 0x14, 0xd4, - 0x9c, 0x4a, 0xd0, 0x51, 0x05, 0x91, 0x0a, 0xf8, 0xf8, 0x71, 0x84, 0x12, 0xfb, 0x4e, 0x0b, 0x45, - 0x99, 0xd4, 0xe0, 0xa2, 0x08, 0xb8, 0x00, 0x5c, 0xc4, 0x7a, 0x4a, 0x24, 0x73, 0x64, 0xd3, 0xc4, - 0x83, 0xef, 0x3c, 0x01, 0x51, 0xcc, 0xba, 0xb1, 0x87, 0x64, 0x0e, 0xa9, 0x51, 0x91, 0xcc, 0x91, - 0xc0, 0x7b, 0x21, 0x99, 0x23, 0x43, 0xef, 0x85, 0x64, 0x0e, 0xe9, 0xa9, 0x43, 0x32, 0x07, 0x8f, - 0x67, 0x0d, 0xc9, 0x1c, 0x20, 0xa4, 0x20, 0xa4, 0x19, 0x23, 0xa4, 0x48, 0xe6, 0x90, 0x85, 0x1b, - 0x44, 0x3a, 0x11, 0xe9, 0xd4, 0x07, 0x1c, 0x44, 0x3a, 0xb5, 0xc0, 0x06, 0xc9, 0x1c, 0x93, 0xf7, - 0x41, 0x32, 0x07, 0x20, 0x0e, 0x10, 0x07, 0x88, 0x53, 0x81, 0x38, 0x24, 0x73, 0xbc, 0xb3, 0x9d, - 0xd3, 0x9f, 0xcc, 0x91, 0xa1, 0xb2, 0x3b, 0xff, 0x10, 0x6f, 0x52, 0xd6, 0xba, 0x9a, 0x9b, 0x46, - 0xcb, 0x2d, 0xa3, 0xe5, 0x86, 0x51, 0x73, 0xbb, 0x64, 0xb0, 0x68, 0xd1, 0xdc, 0x1e, 0x24, 0x2e, - 0x52, 0x34, 0x18, 0x12, 0xc5, 0x88, 0xa6, 0xa6, 0x9a, 0xa3, 0x50, 0xd0, 0x6b, 0xc7, 0x95, 0x28, - 0x11, 0x34, 0xf8, 0x74, 0x36, 0x8a, 0x03, 0xc5, 0x78, 0xd4, 0x5c, 0x26, 0x2b, 0x03, 0x0d, 0x5e, - 0x2c, 0x2d, 0x65, 0x81, 0x5e, 0xdc, 0xf6, 0x93, 0xed, 0xca, 0xd7, 0x04, 0x1a, 0x5d, 0xb7, 0x19, - 0x05, 0x81, 0x62, 0x6e, 0x35, 0x5d, 0x3b, 0x20, 0x7d, 0xd5, 0x80, 0xe2, 0x6d, 0x45, 0x1e, 0x16, - 0x81, 0x52, 0x40, 0xd4, 0x06, 0xaf, 0xc6, 0x96, 0xa6, 0x32, 0x71, 0xd3, 0x9f, 0x3a, 0x26, 0xb7, - 0xe5, 0xcd, 0x98, 0x27, 0xca, 0x79, 0x63, 0x7d, 0x72, 0x6a, 0xb9, 0xf6, 0x93, 0x70, 0xf5, 0xbd, - 0x45, 0x53, 0x63, 0xe9, 0x37, 0xa5, 0x1a, 0x4d, 0x74, 0x78, 0x5e, 0xbd, 0xba, 0xad, 0x55, 0x2f, - 0xaa, 0x0f, 0xf0, 0x3f, 0xe9, 0x88, 0x25, 0x3c, 0x50, 0x6a, 0x62, 0x9b, 0x75, 0x1f, 0xd4, 0xc6, - 0xe7, 0x98, 0x5d, 0x7f, 0xae, 0xd5, 0x1a, 0xb5, 0xf2, 0xa7, 0x4a, 0xad, 0xf1, 0xf0, 0xc7, 0x6d, - 0x65, 0x73, 0x93, 0xcc, 0x2a, 0xff, 0x1a, 0xe1, 0xe0, 0x26, 0x26, 0x9a, 0x5d, 0x91, 0xbd, 0x5b, - 0xb6, 0xb2, 0x96, 0x8c, 0xc4, 0x84, 0x3a, 0x7f, 0x59, 0xc2, 0x6b, 0xda, 0x9d, 0xa0, 0xeb, 0xaa, - 0x7b, 0x30, 0x67, 0xd6, 0x6b, 0x61, 0x44, 0xe8, 0x66, 0xe8, 0x66, 0xe8, 0x66, 0xe8, 0xe6, 0xd9, - 0x17, 0xbc, 0xbd, 0xaf, 0x7c, 0xbe, 0xbc, 0xf9, 0x67, 0xf5, 0xae, 0xd2, 0xa8, 0x5c, 0x5f, 0x94, - 0x6f, 0xef, 0x3f, 0xd7, 0xca, 0x0f, 0xd5, 0x9b, 0xeb, 0xcd, 0x55, 0xd2, 0xb7, 0xff, 0xac, 0x44, - 0x29, 0xb8, 0x8d, 0x87, 0xf2, 0xaf, 0xbf, 0x56, 0x2e, 0x1b, 0x57, 0x37, 0x97, 0x95, 0x4d, 0x54, - 0xda, 0x33, 0xef, 0x7a, 0x57, 0xfe, 0x27, 0xd5, 0x8b, 0x42, 0x83, 0x2f, 0x4c, 0x79, 0x18, 0xba, - 0x56, 0xc7, 0x6f, 0x77, 0xec, 0x17, 0x22, 0x05, 0x3e, 0x3f, 0xa0, 0xbe, 0xbd, 0xde, 0x57, 0x0a, - 0xa0, 0x01, 0xa0, 0x01, 0xa0, 0x01, 0xb2, 0x3b, 0xe6, 0xa9, 0xdd, 0x76, 0x85, 0xed, 0x51, 0x50, - 0x80, 0x02, 0x72, 0x2d, 0xc8, 0x83, 0xaf, 0xfd, 0x4d, 0xb9, 0x3f, 0x0c, 0x56, 0xa5, 0xa9, 0x5e, - 0xc6, 0x38, 0x24, 0x6c, 0xd9, 0x61, 0xe8, 0x3b, 0x4f, 0xdd, 0x50, 0xe1, 0xa0, 0xef, 0x62, 0x1e, - 0xf3, 0xf4, 0x68, 0x08, 0x73, 0x30, 0x82, 0x34, 0xc2, 0x1c, 0x39, 0x93, 0x61, 0x8e, 0x14, 0xe6, - 0xfc, 0x17, 0xc0, 0x76, 0xc0, 0x76, 0xb2, 0xc2, 0x76, 0x54, 0x05, 0x2f, 0x1a, 0x40, 0x31, 0xf4, - 0xbe, 0x72, 0xe3, 0x29, 0x85, 0xe2, 0x89, 0x45, 0x91, 0x4c, 0x24, 0x29, 0x45, 0x93, 0x41, 0x44, - 0xa9, 0x45, 0x95, 0x4d, 0x64, 0xd9, 0x44, 0x97, 0x47, 0x84, 0x69, 0x3c, 0x1e, 0x9a, 0x8e, 0x21, - 0x6d, 0xd1, 0x5e, 0x42, 0x49, 0x35, 0x4e, 0xf2, 0xc6, 0xa0, 0xa8, 0xca, 0x67, 0x7c, 0x89, 0xfd, - 0x0e, 0x6c, 0x30, 0xc0, 0x01, 0x07, 0x8c, 0xb0, 0xc0, 0x05, 0x0f, 0xec, 0x30, 0xc1, 0x0e, 0x17, - 0xbc, 0xb0, 0x41, 0x03, 0x1f, 0x44, 0x30, 0x42, 0xe7, 0x17, 0x31, 0x89, 0x00, 0x39, 0xfd, 0x33, - 0xcb, 0xf4, 0xab, 0x41, 0xb0, 0x12, 0x83, 0x2c, 0x6d, 0x4b, 0x78, 0xf6, 0x93, 0x2b, 0x18, 0xb0, - 0x78, 0x66, 0x74, 0xa2, 0x7d, 0x33, 0xe5, 0x4a, 0x7e, 0xb6, 0xdd, 0x40, 0x00, 0xe3, 0x81, 0xf1, - 0xc0, 0xf8, 0x6d, 0xc3, 0x78, 0x7d, 0x5f, 0xf8, 0x4a, 0x78, 0x2f, 0xa4, 0x05, 0xde, 0x13, 0x65, - 0xfb, 0x9a, 0xbe, 0xf5, 0x85, 0xf1, 0xf8, 0x7c, 0xed, 0xcb, 0x7c, 0xd2, 0x9a, 0xa5, 0xab, 0xe9, - 0x96, 0x42, 0x63, 0x19, 0x68, 0xed, 0x24, 0x0e, 0x76, 0x44, 0xa4, 0x33, 0xe1, 0x16, 0x81, 0x5b, - 0x24, 0xbb, 0x40, 0x49, 0xa6, 0xe3, 0x08, 0xcb, 0x01, 0x2c, 0xe8, 0xb4, 0x13, 0x82, 0xb1, 0x96, - 0x14, 0xfa, 0x9e, 0x86, 0x92, 0x4c, 0x03, 0x6c, 0x7f, 0xba, 0x19, 0x10, 0x56, 0x7f, 0x15, 0xb7, - 0xc5, 0xf3, 0xec, 0x3c, 0x03, 0x60, 0x19, 0x00, 0x56, 0xa7, 0x9a, 0x4a, 0x3a, 0xe0, 0x95, 0xcc, - 0xeb, 0x4c, 0x14, 0x58, 0x5a, 0xd8, 0xbc, 0x24, 0x01, 0x26, 0x62, 0x71, 0xcf, 0xac, 0x17, 0x82, - 0x04, 0x06, 0xe0, 0x83, 0x48, 0x02, 0x26, 0xd2, 0xe9, 0x81, 0xa0, 0x82, 0x8f, 0x45, 0xce, 0x40, - 0xbf, 0xad, 0xa8, 0x12, 0x47, 0x98, 0xcd, 0x35, 0x76, 0x90, 0xe1, 0x04, 0x1b, 0x76, 0xd0, 0xe1, - 0x06, 0x1f, 0x63, 0x20, 0x64, 0x0c, 0x8c, 0x4c, 0x80, 0x12, 0x2d, 0x38, 0x11, 0x83, 0x14, 0xbd, - 0x29, 0x69, 0xc0, 0xb4, 0xe4, 0x34, 0x35, 0x57, 0x9a, 0x9e, 0xfc, 0xc5, 0x37, 0xf9, 0x37, 0x0e, - 0xe1, 0xa6, 0xa1, 0x29, 0xe2, 0xb9, 0x76, 0xd3, 0x10, 0x14, 0xf7, 0x84, 0x4a, 0x82, 0x4a, 0x82, - 0x4a, 0x82, 0x4a, 0xda, 0x42, 0x95, 0x94, 0xa6, 0x62, 0xa9, 0x06, 0xb4, 0x5b, 0xaa, 0xac, 0xbf, - 0xca, 0xf7, 0x90, 0xe6, 0xf4, 0xef, 0xf8, 0x8b, 0xcf, 0x91, 0xd0, 0x6e, 0x5a, 0xe2, 0x7b, 0x78, - 0x1e, 0x0a, 0x57, 0xbc, 0x8a, 0xd0, 0x7f, 0xb3, 0xda, 0x9e, 0xd5, 0xfc, 0x6a, 0x7b, 0x2f, 0x82, - 0xd7, 0xb9, 0x30, 0xc8, 0xa1, 0x61, 0xf4, 0x2e, 0xa4, 0xcd, 0xb1, 0x50, 0xa7, 0x72, 0xb4, 0xd2, - 0xc6, 0xc7, 0x27, 0x94, 0x2e, 0xa9, 0x38, 0xf9, 0x4c, 0xd4, 0x82, 0x24, 0x6a, 0x4e, 0xb7, 0x70, - 0x14, 0x99, 0x6e, 0x6a, 0xfd, 0x60, 0xd7, 0x93, 0x63, 0x85, 0x3e, 0xb1, 0x6b, 0x15, 0x16, 0xb5, - 0xf7, 0xb7, 0x08, 0xef, 0x6f, 0x76, 0x58, 0x2e, 0xbc, 0xbf, 0xf0, 0xfe, 0xc2, 0xd4, 0x86, 0xa9, - 0x0d, 0x53, 0x1b, 0xa6, 0x36, 0x4c, 0x6d, 0x78, 0x7f, 0x57, 0x33, 0x5a, 0x78, 0x7f, 0xa1, 0x92, - 0xa0, 0x92, 0xa0, 0x92, 0xa0, 0x92, 0x52, 0xab, 0x92, 0xe0, 0xfd, 0x4d, 0xce, 0xfa, 0xdb, 0x70, - 0x17, 0x9d, 0x42, 0x1b, 0x2f, 0x46, 0x0f, 0x1d, 0x0e, 0x2b, 0x91, 0xaf, 0x70, 0x9e, 0xc4, 0xeb, - 0xf9, 0x5e, 0xf3, 0xac, 0xab, 0x8e, 0x1b, 0x34, 0x7e, 0x1d, 0x3c, 0xd9, 0xa4, 0x91, 0xd6, 0xe4, - 0xbb, 0x3b, 0xf1, 0x9c, 0xc5, 0xb4, 0x7e, 0x1a, 0x4f, 0x2f, 0xa9, 0x87, 0x97, 0x3c, 0x8d, 0xbf, - 0x88, 0x93, 0x52, 0x69, 0xe0, 0xa6, 0x38, 0x29, 0x25, 0xf1, 0x4a, 0x28, 0x20, 0x83, 0xe2, 0x02, - 0xa9, 0x36, 0x65, 0x51, 0x5c, 0x20, 0x4b, 0xf4, 0x1e, 0x05, 0x64, 0x52, 0xb0, 0x12, 0x28, 0x20, - 0x03, 0x8c, 0x07, 0xc6, 0x03, 0xe3, 0x33, 0x87, 0xf1, 0x28, 0x20, 0x03, 0x9f, 0x4c, 0x3c, 0x9f, - 0x0c, 0x81, 0x9f, 0xad, 0x97, 0x91, 0xea, 0xbd, 0xe3, 0x76, 0xfb, 0xfa, 0xfc, 0x47, 0xad, 0x11, - 0xff, 0xc2, 0x28, 0x3a, 0x8d, 0xf9, 0x17, 0x07, 0xd3, 0x68, 0xd4, 0xbf, 0x30, 0x98, 0x52, 0xe3, - 0x7e, 0xaa, 0x75, 0x22, 0x92, 0xad, 0xc4, 0x64, 0x2a, 0xaf, 0xe5, 0xdd, 0x93, 0xf6, 0x68, 0xe6, - 0xd1, 0xed, 0xc2, 0xf8, 0x62, 0xa7, 0xa1, 0xf7, 0x85, 0x2f, 0x02, 0xe1, 0x7f, 0x13, 0xad, 0x61, - 0xaf, 0x61, 0xeb, 0xc9, 0x6d, 0x37, 0xff, 0xd4, 0x68, 0x7e, 0xb1, 0x7c, 0x38, 0x74, 0xbf, 0x60, - 0x64, 0xf1, 0xe8, 0x7e, 0x91, 0x33, 0xd9, 0xfd, 0x62, 0xd9, 0x0e, 0xd7, 0x6f, 0x84, 0xb1, 0x74, - 0x54, 0xf4, 0xc4, 0x40, 0x4f, 0x8c, 0xc4, 0x8c, 0x5e, 0xf4, 0xc4, 0x40, 0x4f, 0x0c, 0xc3, 0x7e, - 0x2d, 0x84, 0x34, 0x11, 0xd2, 0x7c, 0x67, 0x20, 0xb7, 0xdd, 0xb4, 0x5d, 0x96, 0x70, 0x66, 0x34, - 0x32, 0xdc, 0xdc, 0x29, 0x82, 0x03, 0x2e, 0x58, 0x60, 0x87, 0x07, 0x76, 0x98, 0xe0, 0x85, 0x0b, - 0x3a, 0xef, 0x6a, 0x2e, 0x13, 0x6e, 0xee, 0x20, 0xf4, 0x1d, 0xef, 0x05, 0x41, 0xcc, 0x75, 0xe8, - 0xfb, 0x97, 0xf0, 0xad, 0xa7, 0x76, 0xd7, 0x63, 0x01, 0xe0, 0xc9, 0xe0, 0xc0, 0x60, 0x60, 0x30, - 0x30, 0x78, 0xcb, 0x30, 0x78, 0x90, 0xc4, 0x30, 0xf0, 0x7d, 0x70, 0xe0, 0xf0, 0x19, 0xe1, 0x98, - 0xa3, 0x39, 0x78, 0x24, 0xdd, 0x44, 0x8c, 0xa7, 0x47, 0xba, 0x8e, 0x17, 0x1e, 0x16, 0x19, 0x0f, - 0x8f, 0x70, 0x9c, 0x1d, 0xb9, 0x1b, 0x14, 0x75, 0xa1, 0x9e, 0x65, 0xbe, 0xd9, 0x8e, 0x1e, 0xfc, - 0xca, 0xf1, 0xd8, 0x4e, 0x8f, 0x31, 0xa9, 0xb6, 0x95, 0xb7, 0xf9, 0xdd, 0x76, 0xbb, 0xfd, 0x45, - 0x28, 0x1c, 0x33, 0xdf, 0xe8, 0x17, 0xdf, 0x6e, 0x86, 0x4e, 0xdb, 0xbb, 0x74, 0x5e, 0x9c, 0x41, - 0xdc, 0xf1, 0x80, 0xed, 0x7e, 0xbd, 0x0f, 0x8c, 0x6b, 0x6f, 0x7f, 0xdf, 0xbc, 0xb5, 0x3f, 0x28, - 0x9d, 0x1e, 0x9d, 0x1c, 0x6d, 0xd0, 0x06, 0xd8, 0xc9, 0xc6, 0xa8, 0xf5, 0x34, 0x1f, 0x7a, 0x64, - 0x54, 0x57, 0xc2, 0xeb, 0xbe, 0x0a, 0x7f, 0x18, 0xc2, 0x65, 0x3c, 0xf0, 0x58, 0x62, 0x18, 0xbb, - 0xe2, 0x75, 0x5f, 0xfb, 0x00, 0xd0, 0x4b, 0xe9, 0xc9, 0xc3, 0xfa, 0x06, 0x59, 0xa3, 0xdd, 0x4e, - 0x87, 0xcf, 0x1a, 0x9d, 0x1e, 0x1c, 0xd6, 0x28, 0xac, 0x51, 0x58, 0xa3, 0xb0, 0x46, 0x61, 0x8d, - 0xc2, 0x1a, 0x85, 0x35, 0x0a, 0x6b, 0x14, 0xd6, 0x28, 0xac, 0x51, 0x58, 0xa3, 0xb0, 0x46, 0x61, - 0x8d, 0x6e, 0x8a, 0x35, 0x8a, 0x13, 0x40, 0xb1, 0x12, 0xd8, 0x97, 0x66, 0x76, 0x2f, 0xfd, 0x6d, - 0x86, 0xdb, 0x49, 0x93, 0xa5, 0x18, 0x51, 0xa7, 0x16, 0xa1, 0x8d, 0x74, 0xa2, 0x0e, 0x02, 0x64, - 0x12, 0xa6, 0x01, 0x2c, 0xb7, 0xb8, 0x8d, 0x74, 0x04, 0x23, 0xa8, 0x35, 0x85, 0x5a, 0x53, 0x80, - 0x53, 0xc0, 0x29, 0x12, 0xb3, 0x93, 0xf7, 0x57, 0x20, 0x0c, 0x83, 0x30, 0x8c, 0x49, 0xb8, 0xa0, - 0x35, 0xc2, 0x91, 0x98, 0x9d, 0x02, 0xe7, 0x03, 0x12, 0xb3, 0x81, 0xc1, 0xc0, 0x60, 0x60, 0x70, - 0x6a, 0x31, 0x18, 0xa1, 0x70, 0xe2, 0x2f, 0x84, 0xc2, 0x4d, 0xce, 0x76, 0xf4, 0xe0, 0x08, 0x85, - 0x2b, 0xdc, 0x08, 0xa1, 0xf0, 0xf4, 0xae, 0x3d, 0x42, 0xe1, 0xc9, 0x8c, 0x8a, 0x50, 0x38, 0x42, - 0xe1, 0xc4, 0x5b, 0x0b, 0x89, 0xd9, 0x71, 0x29, 0x13, 0x12, 0xb3, 0x61, 0x8d, 0xc2, 0x1a, 0x85, - 0x35, 0x0a, 0x6b, 0x14, 0xd6, 0x28, 0xac, 0x51, 0x58, 0xa3, 0xb0, 0x46, 0x61, 0x8d, 0xc2, 0x1a, - 0x85, 0x35, 0x0a, 0x6b, 0x14, 0x89, 0xd9, 0xa4, 0x5b, 0x79, 0x33, 0x13, 0xb3, 0xb7, 0xaf, 0x4d, - 0x83, 0x66, 0x02, 0x11, 0x5a, 0x34, 0x70, 0xae, 0x51, 0xfa, 0x5b, 0x34, 0xc4, 0x97, 0x2d, 0x33, - 0xed, 0x1a, 0xee, 0x46, 0x77, 0xae, 0xf5, 0x6f, 0xfc, 0x69, 0x70, 0x5f, 0xf4, 0x6d, 0x30, 0xbf, - 0x03, 0xd2, 0xd0, 0xb8, 0x41, 0x2d, 0xab, 0x5a, 0x2b, 0x8b, 0x5a, 0xbb, 0x31, 0x43, 0x11, 0x8d, - 0x19, 0x12, 0x75, 0x4e, 0x6e, 0x74, 0x63, 0x86, 0xbe, 0xfa, 0x1a, 0xf9, 0x06, 0xb5, 0xdb, 0x31, - 0x4c, 0x8d, 0xa5, 0x5a, 0xd0, 0x7e, 0xd2, 0x41, 0x71, 0x34, 0xd1, 0xe1, 0x79, 0xf5, 0xea, 0xb6, - 0x56, 0xbd, 0xa8, 0x3e, 0x68, 0x36, 0x76, 0x38, 0x40, 0x63, 0x87, 0x1c, 0x1a, 0x3b, 0x64, 0x84, - 0x87, 0x6b, 0xc7, 0x02, 0x26, 0x1d, 0x67, 0x5b, 0xc2, 0x0b, 0x9d, 0xf0, 0x4d, 0xef, 0xbc, 0x56, - 0xa4, 0xc3, 0x34, 0x9c, 0x55, 0xf9, 0xea, 0xe8, 0x51, 0x3e, 0xd9, 0x01, 0xe1, 0xc1, 0xa6, 0xeb, - 0xcf, 0xb5, 0x5a, 0xa3, 0x56, 0xfe, 0x54, 0xa9, 0x35, 0x1e, 0xfe, 0xb8, 0xad, 0xe8, 0xee, 0xc2, - 0x81, 0x6f, 0x2e, 0x20, 0xf1, 0x8e, 0x13, 0x87, 0x71, 0x2b, 0xff, 0x1a, 0xe1, 0x60, 0x1a, 0x22, - 0xd6, 0xc4, 0xef, 0x16, 0x61, 0x7c, 0xc2, 0xfe, 0x8f, 0xba, 0x69, 0x7c, 0xd8, 0x31, 0xb0, 0x76, - 0xf9, 0xce, 0x5f, 0x96, 0xf0, 0x9a, 0x76, 0x27, 0xe8, 0xba, 0x7a, 0x76, 0x63, 0xb4, 0x5e, 0x0b, - 0x23, 0x42, 0x37, 0x43, 0x37, 0x43, 0x37, 0x43, 0x37, 0xcf, 0xbe, 0xe0, 0xed, 0x7d, 0xe5, 0xf3, - 0xe5, 0xcd, 0x3f, 0xab, 0x77, 0x95, 0x46, 0xe5, 0xfa, 0xa2, 0x7c, 0x7b, 0xff, 0xb9, 0x56, 0x7e, - 0xa8, 0xde, 0x5c, 0x6f, 0xae, 0x92, 0xbe, 0xfd, 0x67, 0xa5, 0x51, 0x79, 0xf8, 0xad, 0x72, 0x77, - 0x5d, 0x79, 0x68, 0x3c, 0x94, 0x7f, 0xfd, 0xb5, 0x72, 0xd9, 0xb8, 0xba, 0xb9, 0xac, 0x6c, 0xa2, - 0xd2, 0x9e, 0x79, 0xd7, 0xbb, 0xf2, 0x3f, 0xa9, 0x5e, 0x14, 0x1a, 0x7c, 0x61, 0xca, 0xc3, 0xd0, - 0xb5, 0x3a, 0x7e, 0xbb, 0x63, 0xbf, 0x10, 0x29, 0xf0, 0xf9, 0x01, 0xf5, 0xed, 0xf5, 0xbe, 0x52, - 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x90, 0xdd, 0x31, 0x4f, 0xed, 0xb6, 0x2b, 0x6c, 0x8f, 0x82, - 0x02, 0x14, 0x10, 0xd7, 0x60, 0x8d, 0x6b, 0x28, 0x84, 0x82, 0x25, 0xe2, 0x18, 0x3b, 0x84, 0x93, - 0xa9, 0x3a, 0x89, 0x7c, 0x93, 0x97, 0x97, 0x0a, 0xd3, 0xc4, 0x8c, 0xed, 0xc5, 0x5b, 0x8b, 0xf5, - 0x33, 0x1b, 0x63, 0x56, 0xf3, 0x6e, 0xd0, 0x89, 0xdf, 0xe3, 0x7b, 0x72, 0x16, 0xbc, 0x7f, 0x55, - 0xcc, 0x35, 0x93, 0x8b, 0x14, 0x49, 0xeb, 0x3d, 0x15, 0x3d, 0xa7, 0xa1, 0xd7, 0x54, 0xf5, 0x98, - 0xb6, 0xde, 0xd2, 0xd6, 0x53, 0x7a, 0x7a, 0x89, 0x56, 0x8e, 0x65, 0x23, 0x3b, 0xf9, 0x66, 0xdb, - 0x0b, 0x42, 0xdf, 0x76, 0x3c, 0xd1, 0xb2, 0x46, 0x62, 0xac, 0x18, 0xed, 0x5c, 0x18, 0x09, 0x1d, - 0xe9, 0x19, 0x69, 0x1b, 0x02, 0x9f, 0x39, 0xa3, 0x81, 0x4f, 0xfb, 0x55, 0xb4, 0x2c, 0xf1, 0xbd, - 0xe3, 0x3a, 0x4d, 0x27, 0x1c, 0xec, 0xef, 0x80, 0x20, 0x04, 0xba, 0x6c, 0x54, 0x74, 0xa4, 0x87, - 0x55, 0xb4, 0x25, 0x56, 0x91, 0x76, 0x47, 0xfa, 0x25, 0x02, 0x44, 0xe7, 0x8f, 0x5c, 0x36, 0x38, - 0x7a, 0xd5, 0x1b, 0x10, 0x5e, 0x6a, 0x21, 0x66, 0x13, 0x66, 0x36, 0xa1, 0xe6, 0x11, 0x6e, 0x1a, - 0x9f, 0x69, 0x6a, 0x4a, 0x22, 0x36, 0xc7, 0x52, 0x40, 0xec, 0xa9, 0x1e, 0x8d, 0x4b, 0x7b, 0xf8, - 0xb9, 0x80, 0xc3, 0xcf, 0x24, 0x43, 0xe3, 0xf0, 0xb3, 0x51, 0xa8, 0xa0, 0x81, 0x0c, 0x22, 0xe8, - 0x20, 0x87, 0x90, 0x19, 0x1e, 0x41, 0xbf, 0xa7, 0xa6, 0x89, 0x04, 0xf5, 0x76, 0xe2, 0x39, 0x7c, - 0x48, 0x0e, 0x2f, 0x9c, 0x30, 0x63, 0x00, 0x6e, 0xb8, 0x61, 0xc7, 0x18, 0xfc, 0x18, 0x83, 0x21, - 0x33, 0x70, 0x44, 0x0b, 0x4b, 0xc4, 0xf0, 0x14, 0x4d, 0x01, 0x79, 0x8d, 0x86, 0x85, 0x1d, 0x4f, - 0x5e, 0xbd, 0x75, 0x81, 0xb6, 0x9c, 0xa6, 0xf4, 0x04, 0x25, 0xe1, 0x5a, 0xe5, 0x03, 0xa7, 0x65, - 0x75, 0xfc, 0x76, 0x28, 0x06, 0x27, 0x9f, 0x2d, 0x5f, 0xfc, 0xa7, 0xeb, 0xf8, 0xa2, 0xc5, 0xa7, - 0x10, 0x56, 0xdd, 0x90, 0x78, 0xff, 0x4d, 0xc5, 0xdb, 0x9f, 0x6d, 0x37, 0x80, 0x0e, 0x32, 0xa7, - 0x83, 0xac, 0xc0, 0x87, 0x1a, 0x4a, 0xa9, 0x1a, 0xea, 0xaf, 0x0d, 0x34, 0x11, 0xf1, 0xbe, 0xd7, - 0x4f, 0x4b, 0x58, 0xab, 0x8a, 0x0a, 0x5b, 0xa2, 0x8a, 0x02, 0xe1, 0x8e, 0x14, 0xc3, 0x6b, 0xbb, - 0x25, 0x78, 0xb5, 0xd0, 0xdc, 0xbd, 0xf8, 0x14, 0xd0, 0x55, 0xf5, 0x5f, 0xe3, 0xe4, 0x46, 0x68, - 0x21, 0x68, 0x21, 0x68, 0x21, 0x68, 0x21, 0x86, 0x7d, 0x8f, 0x92, 0x35, 0x7c, 0x5a, 0x2e, 0x55, - 0x1e, 0x40, 0xe2, 0xd2, 0x31, 0x13, 0xfd, 0x4b, 0x9f, 0xcf, 0xe6, 0x06, 0x9d, 0x60, 0x7f, 0x3e, - 0x39, 0x66, 0x7f, 0x59, 0xe8, 0x7f, 0xd9, 0x2f, 0x49, 0x1a, 0x7d, 0xd2, 0xad, 0x21, 0x45, 0xf9, - 0xda, 0xe8, 0xfd, 0xfc, 0x76, 0x37, 0x14, 0x56, 0xfb, 0xe9, 0xff, 0x8a, 0x66, 0x18, 0xd0, 0xc7, - 0x71, 0x56, 0xdc, 0x07, 0x71, 0x1d, 0x2a, 0x7a, 0x81, 0xb8, 0x0e, 0xe2, 0x3a, 0xa4, 0xa8, 0x4e, - 0x1e, 0xd7, 0x59, 0x0a, 0x01, 0x7c, 0x16, 0xd5, 0xf2, 0xdb, 0xf1, 0xd8, 0x3b, 0x05, 0xd8, 0x3b, - 0x88, 0xfc, 0x64, 0xc5, 0xd8, 0xd9, 0x36, 0x4b, 0x87, 0x1a, 0xc8, 0xa2, 0x81, 0x89, 0x73, 0x5e, - 0x56, 0x0a, 0x14, 0x69, 0x0e, 0x8c, 0x21, 0x08, 0x63, 0x87, 0x32, 0x13, 0x90, 0x66, 0x10, 0xda, - 0x4c, 0x41, 0x9c, 0x71, 0xa8, 0x33, 0x0e, 0x79, 0x66, 0xa1, 0x8f, 0x07, 0x02, 0x99, 0xa0, 0x90, - 0x1d, 0x12, 0xa3, 0x1b, 0xd8, 0xad, 0x96, 0x2f, 0x82, 0x80, 0x7f, 0x1b, 0x8f, 0x25, 0x73, 0x7c, - 0xc3, 0x0f, 0x1b, 0x51, 0x66, 0x9c, 0x1b, 0x34, 0x4d, 0x82, 0x67, 0x02, 0x20, 0x6a, 0x1a, 0x4c, - 0x13, 0x03, 0xd5, 0xc4, 0xc0, 0x35, 0x19, 0x90, 0xe5, 0x05, 0x5b, 0x66, 0xd0, 0x8d, 0xa6, 0x8c, - 0xcd, 0xf3, 0xbe, 0x52, 0xe2, 0x9c, 0x8e, 0x65, 0x06, 0x1f, 0x73, 0x4c, 0xdd, 0x65, 0xd6, 0xcd, - 0xe5, 0xa3, 0x91, 0xcd, 0x6e, 0x06, 0x44, 0xe6, 0x56, 0xee, 0x5b, 0xc9, 0xe0, 0xda, 0x2d, 0xac, - 0xe1, 0xa9, 0xc1, 0x7b, 0xde, 0xda, 0x61, 0x28, 0x7c, 0xcf, 0xd8, 0x72, 0x46, 0x37, 0xfe, 0xf7, - 0xee, 0xee, 0xe3, 0x81, 0x75, 0x56, 0xff, 0xf9, 0x58, 0xb0, 0xce, 0xea, 0xc3, 0x6f, 0x0b, 0x83, - 0x7f, 0x86, 0xdf, 0x17, 0x1f, 0x0f, 0xac, 0xd2, 0xf8, 0xfb, 0xa3, 0xc7, 0x03, 0xeb, 0xa8, 0xbe, - 0xf7, 0xe5, 0xcb, 0xc7, 0xbd, 0x1f, 0x87, 0x3d, 0xf9, 0x0b, 0xff, 0x96, 0x37, 0xf6, 0x72, 0x75, - 0x23, 0x77, 0xea, 0x7d, 0xd8, 0x60, 0xe1, 0x3b, 0x86, 0xf0, 0x99, 0x11, 0x3e, 0xdb, 0x7a, 0x2e, - 0x5b, 0xbf, 0xd4, 0x7f, 0x14, 0x3e, 0x94, 0x7a, 0xe7, 0x7b, 0x3f, 0x4e, 0x7a, 0xf3, 0xbf, 0xfc, - 0xb9, 0xec, 0x63, 0x85, 0x0f, 0x27, 0xbd, 0xf3, 0x15, 0x7f, 0x39, 0xee, 0x9d, 0xc7, 0x1c, 0xe3, - 0xa8, 0xb7, 0xbb, 0xf0, 0xd1, 0xfe, 0xef, 0x8b, 0xab, 0x2e, 0x28, 0xad, 0xb8, 0xe0, 0x70, 0xd5, - 0x05, 0x87, 0x2b, 0x2e, 0x58, 0xf9, 0x48, 0xc5, 0x15, 0x17, 0x1c, 0xf5, 0x7e, 0x2e, 0x7c, 0x7e, - 0x77, 0xf9, 0x47, 0x8f, 0x7b, 0x7b, 0x3f, 0x57, 0xfd, 0xed, 0xa4, 0xf7, 0xf3, 0x7c, 0x6f, 0x03, - 0xa1, 0x68, 0x27, 0xdb, 0xef, 0xd1, 0xcb, 0x64, 0x7f, 0xaf, 0xaf, 0xed, 0x8e, 0x15, 0x9a, 0xe0, - 0xb4, 0x11, 0x30, 0x47, 0x77, 0x84, 0xb5, 0x0f, 0x6b, 0x1f, 0xd6, 0x3e, 0xac, 0x7d, 0x58, 0xfb, - 0xf3, 0x3d, 0x63, 0x0d, 0x41, 0x64, 0x8e, 0x39, 0x13, 0x6f, 0xe1, 0x5e, 0x3c, 0x99, 0x79, 0x9b, - 0xa1, 0x88, 0x1d, 0xaf, 0x25, 0xbe, 0x9b, 0xd3, 0xc2, 0xc3, 0xdb, 0x41, 0x05, 0x43, 0x05, 0x43, - 0x05, 0x43, 0x05, 0x43, 0x05, 0xcf, 0x35, 0x17, 0x3f, 0x35, 0xa8, 0x7a, 0x8f, 0x0c, 0xdc, 0x8a, - 0xb7, 0xf7, 0x78, 0x82, 0xee, 0x3e, 0x13, 0xbd, 0xc9, 0x13, 0xd2, 0x6b, 0x0b, 0xb7, 0x1d, 0xf7, - 0xaf, 0x36, 0x7d, 0x5f, 0x83, 0x9d, 0xac, 0x0d, 0xa3, 0xcb, 0xec, 0x56, 0xb2, 0xbf, 0x6f, 0xdd, - 0x56, 0x2a, 0x1e, 0x1d, 0x6d, 0xd1, 0x66, 0x82, 0x1f, 0x33, 0x59, 0xf3, 0x29, 0x53, 0x69, 0x56, - 0x4c, 0x07, 0xa3, 0x16, 0xee, 0x93, 0xbe, 0x83, 0x52, 0xcb, 0x8f, 0xfb, 0x2c, 0xff, 0x35, 0xe9, - 0xa9, 0x2a, 0xfe, 0x0d, 0xc3, 0xb0, 0x59, 0x98, 0x2d, 0x77, 0x23, 0x16, 0x3b, 0xb3, 0x1a, 0x42, - 0x1e, 0x71, 0x3a, 0x2d, 0x71, 0xe4, 0x11, 0x6f, 0xb3, 0x82, 0x63, 0xb7, 0xac, 0x27, 0xbd, 0x18, - 0x84, 0xfd, 0xac, 0xd7, 0x6c, 0x2d, 0x2e, 0x80, 0x15, 0x4e, 0x18, 0xef, 0x71, 0x3b, 0xd2, 0xd1, - 0x1f, 0x3f, 0x8e, 0xb4, 0xde, 0xfe, 0x10, 0x93, 0xb7, 0x58, 0xf7, 0xa9, 0xf5, 0x75, 0x97, 0xde, - 0x40, 0x2a, 0xfd, 0xdf, 0xa5, 0xb7, 0x0e, 0xb7, 0xee, 0x2b, 0x42, 0xf7, 0x41, 0xf7, 0x41, 0xf7, - 0xa5, 0x42, 0xf7, 0xe1, 0x0c, 0x4d, 0xaa, 0xfd, 0x55, 0x08, 0xe9, 0x65, 0x0b, 0x4c, 0x13, 0x03, - 0xd5, 0xc4, 0xc0, 0x35, 0x19, 0x90, 0xe5, 0xf7, 0xd1, 0xe5, 0x70, 0x86, 0x86, 0x8c, 0x50, 0xe2, - 0x0c, 0x0d, 0xc5, 0xca, 0xe1, 0x0c, 0x0d, 0xfb, 0x8d, 0x71, 0x86, 0x26, 0xc5, 0x70, 0x99, 0xac, - 0xf0, 0xe1, 0x0c, 0x8d, 0x21, 0xe1, 0xc3, 0x19, 0x1a, 0x9c, 0xa1, 0x49, 0x39, 0x2f, 0xcc, 0xe1, - 0x0c, 0xcd, 0x52, 0x09, 0xc6, 0x19, 0x1a, 0x58, 0xfb, 0xb0, 0xf6, 0x61, 0xed, 0xc3, 0xda, 0x4f, - 0x87, 0xb5, 0x8f, 0x33, 0x34, 0x5b, 0xaa, 0x88, 0x71, 0x86, 0x06, 0x2a, 0x18, 0x2a, 0x18, 0x2a, - 0x18, 0x2a, 0x38, 0x69, 0x15, 0x8c, 0x33, 0x34, 0x19, 0x72, 0xf7, 0xe1, 0x0c, 0x0d, 0xff, 0x7d, - 0x71, 0x86, 0x66, 0x63, 0xb7, 0x12, 0xce, 0xd0, 0x64, 0xf0, 0x2e, 0x38, 0x43, 0x63, 0x00, 0x22, - 0x70, 0x86, 0x26, 0xde, 0x19, 0x9a, 0x61, 0x7a, 0x6b, 0x56, 0xd2, 0x88, 0x53, 0xdd, 0x2f, 0xe0, - 0x1f, 0xe2, 0x8d, 0xcb, 0x34, 0xcf, 0xd7, 0x9c, 0x20, 0x2c, 0x87, 0x21, 0x53, 0x43, 0x82, 0x2b, - 0xc7, 0xab, 0xb8, 0xa2, 0x6f, 0xd9, 0xf4, 0x11, 0xdd, 0xeb, 0xba, 0x2e, 0x43, 0xbe, 0xf6, 0x95, - 0xfd, 0x9d, 0xff, 0x26, 0x37, 0x7e, 0x4b, 0xf8, 0xa2, 0xf5, 0xe9, 0x6d, 0x74, 0x8b, 0x54, 0x6f, - 0x18, 0x66, 0x88, 0xca, 0x38, 0x34, 0xe5, 0x59, 0xce, 0x0c, 0xf8, 0xdd, 0x66, 0xe8, 0x8d, 0x2c, - 0xc5, 0xeb, 0xe1, 0x2b, 0x56, 0x47, 0x6f, 0xd8, 0xb8, 0xea, 0xb8, 0x41, 0xa3, 0x16, 0x74, 0x82, - 0xc6, 0xc5, 0xe4, 0x0d, 0x6f, 0xed, 0xf0, 0x6b, 0xa3, 0x6f, 0x5b, 0xb6, 0x2a, 0xa3, 0xa7, 0x1c, - 0xfc, 0x66, 0xfc, 0xc3, 0x5d, 0xff, 0x89, 0x6f, 0x86, 0x0f, 0x8c, 0xa6, 0x7f, 0xc9, 0x6d, 0xfa, - 0xcc, 0x6c, 0xf6, 0x4d, 0x6a, 0x02, 0x38, 0x12, 0x24, 0xe2, 0x96, 0x7f, 0x83, 0x51, 0x69, 0x1b, - 0xfc, 0x1d, 0xa0, 0xc1, 0x1f, 0xc9, 0xd0, 0x68, 0xf0, 0xb7, 0x12, 0xd6, 0xb6, 0xa7, 0xc1, 0x1f, - 0xb9, 0x4b, 0x97, 0xf1, 0xb0, 0x26, 0xc7, 0xe1, 0xcc, 0x25, 0x87, 0x31, 0x07, 0x90, 0xb5, 0x41, - 0xc0, 0x4e, 0x7b, 0xb6, 0x92, 0xe5, 0x2c, 0x25, 0x5b, 0xef, 0xd6, 0x22, 0xa0, 0x1d, 0xd0, 0xbe, - 0xa5, 0xd0, 0x4e, 0xde, 0xbb, 0x95, 0x94, 0x21, 0x72, 0x32, 0x45, 0x26, 0xc6, 0xc8, 0xc6, 0x1c, - 0x39, 0x61, 0xc6, 0x00, 0xdc, 0x70, 0xc3, 0x8e, 0x31, 0xf8, 0x31, 0x06, 0x43, 0x66, 0xe0, 0x88, - 0xde, 0xfb, 0xc0, 0xe1, 0x38, 0x63, 0x4b, 0x2a, 0x98, 0x62, 0x2a, 0xbe, 0xe3, 0x71, 0xb4, 0x4e, - 0x9d, 0x1c, 0x30, 0x49, 0xab, 0xb7, 0x88, 0x90, 0x53, 0x04, 0x4e, 0xcb, 0xea, 0xf8, 0xed, 0x50, - 0x0c, 0x42, 0x86, 0x96, 0x2f, 0xfe, 0xd3, 0x75, 0x7c, 0xd1, 0xe2, 0x53, 0x08, 0xab, 0x6e, 0x48, - 0xdd, 0x19, 0x58, 0x3c, 0xdb, 0x5d, 0x77, 0x20, 0x81, 0xcf, 0xb6, 0x1b, 0x40, 0x07, 0x99, 0xd3, - 0x41, 0x56, 0xe0, 0x43, 0x0d, 0xa5, 0x54, 0x0d, 0xf5, 0xd7, 0x06, 0x9a, 0x88, 0x78, 0xdf, 0x3f, - 0xb5, 0xdb, 0xae, 0xb0, 0x3d, 0x4e, 0x55, 0x54, 0xd8, 0x12, 0x55, 0x14, 0x08, 0x77, 0xa4, 0x18, - 0x5e, 0xdb, 0x2d, 0xc1, 0xab, 0x85, 0xe6, 0xee, 0xc5, 0xa7, 0x80, 0xae, 0xaa, 0xff, 0xaa, 0x5c, - 0x36, 0xae, 0x6e, 0x2e, 0x2b, 0xd0, 0x42, 0xd0, 0x42, 0xd0, 0x42, 0xd0, 0x42, 0x1c, 0xfb, 0x5e, - 0x78, 0xdd, 0x57, 0xe1, 0x0f, 0xc3, 0xb6, 0x8c, 0x9a, 0x88, 0xe1, 0x14, 0x13, 0xd3, 0xa9, 0x25, - 0x84, 0xe7, 0x25, 0xf5, 0x6f, 0xea, 0xc2, 0xf3, 0x84, 0x99, 0x6f, 0x04, 0x41, 0x9b, 0x9d, 0x04, - 0x17, 0x7f, 0x9c, 0xb9, 0x46, 0xe0, 0x4e, 0xa5, 0x4d, 0x54, 0x63, 0x49, 0x4c, 0x63, 0x49, 0x44, - 0xa3, 0x4d, 0x3c, 0xd3, 0x5d, 0x4f, 0x62, 0x21, 0x4e, 0x9f, 0xf0, 0xe6, 0x49, 0x62, 0x9c, 0x44, - 0xb9, 0x60, 0x7a, 0x18, 0xa2, 0x2e, 0xf9, 0x6a, 0x57, 0x2a, 0xee, 0x2d, 0xaa, 0x3d, 0x95, 0xec, - 0x5e, 0x52, 0x5b, 0x2a, 0xf9, 0x89, 0x56, 0x98, 0xe4, 0x7c, 0xd8, 0xf5, 0x3c, 0xe1, 0xaa, 0x97, - 0xed, 0x8c, 0xb8, 0xda, 0x78, 0x20, 0xc5, 0x85, 0xd6, 0x8b, 0xab, 0x6b, 0x9b, 0x77, 0x14, 0x66, - 0x1c, 0x61, 0xe0, 0x8a, 0xca, 0x26, 0x23, 0xb7, 0xbd, 0xc8, 0x6d, 0x2c, 0xda, 0xc0, 0x92, 0x59, - 0x70, 0xd2, 0x8d, 0x5b, 0x8f, 0x64, 0x46, 0x7f, 0x95, 0x67, 0x65, 0x50, 0x77, 0x89, 0x69, 0x52, - 0x5c, 0xc8, 0x3c, 0x2e, 0x94, 0x1e, 0x16, 0x86, 0xd8, 0x32, 0xb5, 0xfb, 0x84, 0xcd, 0x5d, 0xc2, - 0xe6, 0x1e, 0xe1, 0x89, 0x0d, 0x27, 0x6b, 0x9b, 0x50, 0xa5, 0xa4, 0xe4, 0x9f, 0x6c, 0xaf, 0xf5, - 0x97, 0xd3, 0x1a, 0xf0, 0x0e, 0xe2, 0xbc, 0xb6, 0xc9, 0xd0, 0x29, 0xcf, 0x6d, 0x43, 0xda, 0x72, - 0xa6, 0xfc, 0xa9, 0xc8, 0x6d, 0x4b, 0x73, 0x6e, 0x9b, 0xdd, 0x0d, 0xdb, 0x16, 0x3d, 0xaa, 0x2c, - 0x08, 0xc4, 0xdc, 0x7d, 0x78, 0xa2, 0x3c, 0x05, 0x44, 0x79, 0x90, 0xef, 0x96, 0x26, 0x68, 0x32, - 0x03, 0x51, 0xb4, 0x50, 0x45, 0x0c, 0x59, 0x6c, 0xd0, 0x15, 0x0d, 0xdc, 0x1c, 0x4b, 0x29, 0x73, - 0x13, 0xa5, 0xd1, 0x7d, 0x32, 0xde, 0x45, 0x09, 0x1d, 0x04, 0xd3, 0x00, 0x71, 0xc6, 0xa1, 0xce, - 0x38, 0xe4, 0x99, 0x85, 0x3e, 0x1e, 0x08, 0x64, 0x82, 0x42, 0x76, 0x48, 0x9c, 0xb0, 0xbb, 0xd6, - 0xff, 0xed, 0x06, 0xa1, 0xe5, 0x78, 0xa1, 0xf0, 0xbf, 0xd9, 0xae, 0xc9, 0x6e, 0x4a, 0xb3, 0x37, - 0x46, 0x91, 0xc7, 0xb4, 0x81, 0x69, 0x02, 0xa0, 0x6a, 0x1a, 0x5c, 0x13, 0x03, 0xd9, 0xc4, 0xc0, - 0x36, 0x19, 0xd0, 0xe5, 0x05, 0x5f, 0x66, 0x10, 0x8e, 0xa6, 0x2c, 0x99, 0x22, 0x8f, 0x87, 0x45, - 0x83, 0x55, 0x1e, 0x4f, 0x50, 0xe5, 0x51, 0xfd, 0xc5, 0x50, 0xe5, 0x91, 0xff, 0xbe, 0xa8, 0xf2, - 0xb8, 0xb1, 0x5b, 0xa9, 0x54, 0x3c, 0x2b, 0x9d, 0x1d, 0x9f, 0x14, 0xcf, 0x50, 0xec, 0x31, 0x73, - 0x77, 0x41, 0xd3, 0x9a, 0x95, 0xa6, 0x55, 0xf8, 0xd5, 0x17, 0xc1, 0xd7, 0xb6, 0xdb, 0x32, 0x6e, - 0x5b, 0x4d, 0xee, 0x0c, 0xe3, 0x0a, 0xc6, 0x15, 0x8c, 0x2b, 0x18, 0x57, 0x30, 0xae, 0xa6, 0x24, - 0xae, 0x23, 0xfc, 0xa6, 0xf0, 0x42, 0xfb, 0x45, 0xa0, 0x8c, 0x3e, 0x0c, 0x2c, 0x18, 0x58, 0x30, - 0xb0, 0x36, 0x7c, 0x2b, 0x15, 0x0e, 0x0e, 0x60, 0x59, 0xc1, 0xb2, 0xca, 0xbe, 0x65, 0x25, 0x3c, - 0xfb, 0xc9, 0x15, 0x06, 0x0d, 0xaa, 0xf1, 0x0d, 0x99, 0x39, 0x10, 0x73, 0xc1, 0x15, 0xd8, 0x6d, - 0xb0, 0xdb, 0x60, 0xb7, 0xc1, 0x6e, 0xcb, 0xb8, 0xdd, 0xc6, 0x57, 0x2a, 0x66, 0x15, 0x40, 0x12, - 0x97, 0x8e, 0xd9, 0x0c, 0x25, 0xfc, 0x6a, 0x7f, 0xb7, 0x9e, 0xfe, 0x32, 0xa7, 0x83, 0x47, 0xf7, - 0x83, 0x4a, 0x84, 0x4a, 0x84, 0x4a, 0x84, 0x4a, 0x84, 0x4a, 0x5c, 0x76, 0x32, 0xcb, 0xfa, 0xf3, - 0xa9, 0x13, 0x18, 0xd4, 0x8c, 0xa7, 0x06, 0x6e, 0xf5, 0xd9, 0x1b, 0xfa, 0x0e, 0xf2, 0xff, 0x30, - 0xf4, 0x6e, 0xf0, 0x9f, 0x66, 0x4f, 0xa3, 0x2e, 0xdc, 0x16, 0xfe, 0x53, 0xde, 0xad, 0xb4, 0x8d, - 0xfe, 0xd3, 0xd3, 0x52, 0xe9, 0xf8, 0xa4, 0x54, 0x3a, 0x38, 0x39, 0x3c, 0x39, 0x38, 0x3b, 0x3a, - 0x2a, 0x1c, 0x17, 0x90, 0xaa, 0x92, 0xb9, 0xbb, 0xc0, 0xa1, 0xba, 0xc4, 0x96, 0x73, 0x3c, 0xb3, - 0xb6, 0xdc, 0xf0, 0x7e, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x83, 0x2d, 0x07, 0x5b, 0x0e, 0xb6, - 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x83, 0x2d, 0xb7, 0xf9, 0xb6, - 0x5c, 0xa6, 0x0e, 0xa1, 0x33, 0x37, 0x70, 0x8f, 0xee, 0x63, 0xac, 0x66, 0xea, 0xa8, 0x74, 0xe8, - 0xe8, 0xdf, 0xfd, 0x88, 0x71, 0xed, 0xcf, 0xd6, 0x20, 0x1a, 0xb5, 0x3d, 0xe5, 0xa1, 0xc8, 0xf4, - 0x5b, 0x80, 0x61, 0xf9, 0xf3, 0xed, 0x6f, 0xc2, 0x7f, 0x76, 0xdb, 0x7f, 0xf1, 0xd7, 0x4e, 0x89, - 0xee, 0x84, 0xea, 0x29, 0x49, 0x19, 0xff, 0xa8, 0x9e, 0x92, 0x41, 0xe3, 0x1e, 0xd5, 0x53, 0x56, - 0x4f, 0x0d, 0x7b, 0xf5, 0x14, 0xe6, 0xc2, 0x52, 0x0b, 0x82, 0xc9, 0x5a, 0x60, 0xca, 0x10, 0x54, - 0x1a, 0x83, 0x4c, 0x93, 0xd0, 0x99, 0x00, 0x84, 0x9a, 0x86, 0xd2, 0xc4, 0x20, 0x35, 0x31, 0x68, - 0x4d, 0x06, 0x62, 0xcd, 0x58, 0x4f, 0xdc, 0x7e, 0x53, 0x6e, 0xe8, 0x8d, 0x6e, 0x64, 0xea, 0x2c, - 0xc0, 0x82, 0x84, 0x9b, 0x39, 0x13, 0x30, 0x99, 0x50, 0xb3, 0x67, 0x03, 0x12, 0xf2, 0xd3, 0x18, - 0x53, 0x0a, 0x49, 0x28, 0x87, 0x04, 0x95, 0x44, 0x52, 0xca, 0x22, 0x71, 0xa5, 0x91, 0xb8, 0xf2, - 0x48, 0x56, 0x89, 0x98, 0x51, 0x26, 0x86, 0x94, 0x4a, 0x34, 0x95, 0xc6, 0x82, 0x72, 0x0b, 0x12, - 0x6b, 0xee, 0xec, 0xc1, 0x02, 0x1b, 0x2f, 0x6c, 0x88, 0xcf, 0xd6, 0xc0, 0x26, 0x89, 0x9c, 0x49, - 0x06, 0x8b, 0xaf, 0xac, 0x74, 0x68, 0x19, 0x2b, 0xc3, 0x02, 0x95, 0x0d, 0x95, 0x0d, 0x95, 0x0d, - 0x95, 0x0d, 0x95, 0x9d, 0x4b, 0xac, 0xcc, 0xcb, 0x3c, 0x06, 0x1b, 0x8c, 0x29, 0x1b, 0x4e, 0x75, - 0x19, 0x7f, 0x99, 0x05, 0xa5, 0x5c, 0x52, 0xa9, 0x2f, 0x09, 0x29, 0xd7, 0x85, 0xdb, 0x27, 0x94, - 0x0a, 0x13, 0xdd, 0x3f, 0xc1, 0xa4, 0x05, 0xc3, 0x90, 0x35, 0xbb, 0xe5, 0x12, 0x48, 0x91, 0x49, - 0xdb, 0x96, 0x33, 0x5e, 0x3e, 0x26, 0x55, 0x9b, 0x6e, 0x67, 0x33, 0xef, 0x56, 0x87, 0x55, 0x19, - 0x7b, 0x1b, 0x86, 0xbe, 0xf3, 0xf2, 0x22, 0x7c, 0x4b, 0x7c, 0x13, 0x5e, 0x68, 0x35, 0xdb, 0xdd, - 0x01, 0x33, 0x34, 0x6c, 0x56, 0x2e, 0x7b, 0x08, 0xd8, 0x95, 0xb0, 0x2b, 0x61, 0x57, 0xc2, 0xae, - 0x84, 0x5d, 0x69, 0x50, 0x62, 0xbb, 0x8e, 0x17, 0x16, 0x8e, 0x13, 0xb0, 0x29, 0x8f, 0x61, 0x53, - 0xc2, 0xa6, 0x84, 0x4d, 0x09, 0x9b, 0x72, 0x03, 0xb6, 0xdc, 0xf1, 0xd1, 0xd1, 0xe1, 0x11, 0xac, - 0x4a, 0x58, 0x95, 0x29, 0xb5, 0x2a, 0x33, 0x9d, 0x83, 0x65, 0xe8, 0xdc, 0x46, 0x74, 0xbf, 0xd4, - 0x9d, 0xdf, 0x18, 0x87, 0x60, 0x59, 0x0f, 0x72, 0xf0, 0xef, 0x15, 0xce, 0xca, 0x0f, 0x41, 0x68, - 0x87, 0xc2, 0x5c, 0x02, 0xf3, 0xf0, 0x76, 0x1b, 0x96, 0xbf, 0x5c, 0x44, 0xfe, 0x72, 0x86, 0xfc, - 0x10, 0xc8, 0x5f, 0x46, 0xfe, 0xf2, 0xfa, 0x29, 0x43, 0xfe, 0x32, 0xf5, 0x84, 0x22, 0x7f, 0x39, - 0xeb, 0xca, 0x21, 0x41, 0x25, 0x91, 0x94, 0xb2, 0x48, 0x5c, 0x69, 0x24, 0xae, 0x3c, 0x92, 0x55, - 0x22, 0x66, 0x4d, 0x57, 0xe4, 0x2f, 0x33, 0xb2, 0x71, 0xe4, 0x2f, 0xc7, 0x9f, 0x33, 0xe4, 0x2f, - 0x43, 0x65, 0x43, 0x65, 0x43, 0x65, 0x43, 0x65, 0x43, 0x65, 0x23, 0x7f, 0x99, 0xf5, 0x0b, 0xb1, - 0x66, 0xa3, 0xb7, 0x47, 0xac, 0x19, 0xb1, 0xe6, 0x84, 0xb6, 0x1c, 0xf2, 0x97, 0x37, 0xf0, 0x6e, - 0xc8, 0x5f, 0x8e, 0xbf, 0x0d, 0x91, 0xbf, 0x0c, 0xbb, 0x12, 0x76, 0x25, 0xec, 0x4a, 0xd8, 0x95, - 0xb0, 0x2b, 0x91, 0xbf, 0x0c, 0x9b, 0x12, 0x36, 0x25, 0x6c, 0x4a, 0xd8, 0x94, 0x5a, 0x5b, 0x0e, - 0xf9, 0xcb, 0xb0, 0x2a, 0xd3, 0x6c, 0x55, 0x22, 0x7f, 0x59, 0xe2, 0x7e, 0xe9, 0xcd, 0x5f, 0x1e, - 0xa6, 0xcd, 0xa2, 0xd9, 0x01, 0xff, 0xe6, 0xdb, 0xde, 0x66, 0x07, 0xcc, 0x05, 0xf8, 0x87, 0x2f, - 0x1d, 0xfa, 0xdd, 0x66, 0xe8, 0x8d, 0x2c, 0x90, 0xeb, 0xe1, 0x5b, 0x54, 0x47, 0x2f, 0xd1, 0xb8, - 0xea, 0xb8, 0x41, 0xa3, 0x16, 0x74, 0x82, 0xc6, 0xc5, 0xe4, 0x25, 0x6e, 0xed, 0xf0, 0x6b, 0xe3, - 0x61, 0xf0, 0xec, 0x8d, 0x4f, 0xe3, 0x87, 0x6d, 0x94, 0xbb, 0x61, 0x7b, 0xf2, 0xd3, 0xcd, 0xf8, - 0xd1, 0xb7, 0xb8, 0x53, 0x03, 0x6f, 0x22, 0xbf, 0x91, 0x04, 0x7e, 0x63, 0x3d, 0x1a, 0x8a, 0xe8, - 0xd1, 0x90, 0x22, 0x07, 0x1b, 0x7a, 0x34, 0x6c, 0xb3, 0xbe, 0x65, 0xef, 0xd1, 0x60, 0xb7, 0xfe, - 0x6f, 0x37, 0x08, 0x2d, 0xc7, 0x0b, 0x85, 0xff, 0xcd, 0x76, 0xcd, 0x9d, 0x75, 0x9a, 0xbf, 0x31, - 0xba, 0xdd, 0xa6, 0x0d, 0x4c, 0x13, 0x00, 0x55, 0xd3, 0xe0, 0x9a, 0x18, 0xc8, 0x26, 0x06, 0xb6, - 0xc9, 0x80, 0xee, 0x66, 0x58, 0xdc, 0xe6, 0xbb, 0xdd, 0x76, 0x1d, 0x2f, 0x3c, 0x2c, 0x1a, 0xec, - 0x72, 0x7b, 0x82, 0xa6, 0xb3, 0xea, 0x2f, 0x86, 0xa6, 0xb3, 0xfc, 0xf7, 0x45, 0xd3, 0xd9, 0x8d, - 0xdd, 0x4a, 0xa5, 0xe2, 0x59, 0xe9, 0xec, 0xf8, 0xa4, 0x78, 0x86, 0x56, 0xb3, 0x99, 0xbb, 0x4b, - 0x1d, 0xc5, 0x23, 0x56, 0x99, 0x56, 0xe6, 0x0e, 0x29, 0xcd, 0xdb, 0x56, 0xa6, 0x8e, 0x26, 0xc1, - 0xb8, 0x82, 0x71, 0x05, 0xe3, 0x0a, 0xc6, 0x55, 0xc6, 0x8c, 0x2b, 0xa3, 0x47, 0x87, 0x0c, 0x1e, - 0x19, 0x82, 0x81, 0x05, 0x03, 0x0b, 0x06, 0x16, 0x0c, 0xac, 0x85, 0xad, 0x64, 0xfc, 0x88, 0x0f, - 0x2c, 0x2b, 0x58, 0x56, 0x1c, 0xdb, 0xca, 0x54, 0x55, 0x28, 0xc3, 0xd5, 0xa0, 0x4c, 0x57, 0x81, - 0x82, 0xdd, 0x06, 0xbb, 0x0d, 0x76, 0x1b, 0xec, 0xb6, 0x8c, 0xd9, 0x6d, 0xe6, 0xaa, 0x34, 0x19, - 0xaa, 0xce, 0x94, 0x4d, 0x25, 0x3c, 0xce, 0xdc, 0xb0, 0xbe, 0x3a, 0x2f, 0x5f, 0xad, 0xa7, 0xbf, - 0xcc, 0x69, 0xe3, 0x85, 0x3b, 0x43, 0x4d, 0x42, 0x4d, 0x42, 0x4d, 0x42, 0x4d, 0x42, 0x4d, 0x4e, - 0xab, 0xc9, 0x71, 0x02, 0xb8, 0xf5, 0xe7, 0x53, 0x27, 0x30, 0xa8, 0x2d, 0x4f, 0x0d, 0xdc, 0xea, - 0xb3, 0x37, 0xf4, 0x27, 0xe4, 0xff, 0x61, 0xe8, 0xdd, 0xe0, 0x53, 0xcd, 0x9e, 0x46, 0x5d, 0xb8, - 0x2d, 0x7c, 0xaa, 0xbc, 0x5b, 0x69, 0x1b, 0x7d, 0xaa, 0xa7, 0xa5, 0xd2, 0xf1, 0x49, 0xa9, 0x74, - 0x70, 0x72, 0x78, 0x72, 0x70, 0x76, 0x74, 0x54, 0x38, 0x2e, 0x20, 0x7d, 0x25, 0x73, 0x77, 0x81, - 0x93, 0x75, 0x71, 0x5b, 0xbd, 0xda, 0xdf, 0x8d, 0x5a, 0x75, 0xa3, 0xfb, 0xc1, 0x96, 0x83, 0x2d, - 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x83, - 0x2d, 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0x1d, 0x5b, 0xce, 0xf1, 0xcc, 0xda, 0x72, 0xc3, - 0xfb, 0xc1, 0x96, 0x83, 0x2d, 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, - 0x60, 0xcb, 0xc1, 0x96, 0x83, 0x2d, 0x07, 0x5b, 0x0e, 0xb6, 0xdc, 0xe6, 0xdb, 0x72, 0x28, 0xea, - 0xb9, 0xe4, 0x3e, 0xa9, 0x2b, 0xea, 0xc9, 0x58, 0x38, 0x36, 0x1b, 0x65, 0x31, 0xbb, 0x5e, 0x6b, - 0x54, 0x1b, 0x94, 0xbd, 0x34, 0xe6, 0xe4, 0x56, 0x19, 0x2f, 0x8f, 0x79, 0x80, 0xf2, 0x98, 0x29, - 0xb2, 0xf6, 0x51, 0x1e, 0x73, 0x9b, 0x35, 0x17, 0x7b, 0x79, 0xcc, 0xe6, 0x58, 0xea, 0x0d, 0x39, - 0x4e, 0x47, 0xf7, 0x33, 0xe3, 0x38, 0x2d, 0xc0, 0x71, 0x9a, 0x66, 0x08, 0x35, 0x0d, 0xa5, 0x89, - 0x41, 0x6a, 0x62, 0xd0, 0x9a, 0x0c, 0xc4, 0x9a, 0x31, 0x9f, 0xb8, 0x1d, 0xa7, 0xdc, 0xd0, 0x1b, - 0xdd, 0xc8, 0xd4, 0x61, 0xef, 0x05, 0x09, 0x37, 0x73, 0xe8, 0x7b, 0x32, 0xa1, 0x66, 0x0f, 0x7f, - 0x27, 0xe4, 0xa8, 0x41, 0xdf, 0xc7, 0xcd, 0x52, 0x16, 0x89, 0x2b, 0x8d, 0xc4, 0x95, 0x47, 0xb2, - 0x4a, 0xc4, 0x8c, 0x32, 0x31, 0xa4, 0x54, 0xa2, 0xa9, 0x4c, 0xae, 0xef, 0xa3, 0xb9, 0xc3, 0xe5, - 0x0b, 0x6c, 0xbc, 0x80, 0x66, 0xcd, 0xb1, 0xe7, 0x0c, 0xcd, 0x9a, 0xa1, 0xb4, 0xa1, 0xb4, 0xa1, - 0xb4, 0xa1, 0xb4, 0xa1, 0xb4, 0xd1, 0xac, 0x99, 0xf1, 0x0b, 0xcd, 0x9a, 0x8d, 0xde, 0x1e, 0xcd, - 0x9a, 0xd1, 0xac, 0x39, 0xa1, 0x2d, 0x87, 0x66, 0xcd, 0x1b, 0x79, 0xb7, 0x3a, 0xac, 0xca, 0xd8, - 0xdb, 0x30, 0xca, 0x51, 0x30, 0xd8, 0xb4, 0x61, 0x91, 0xcc, 0x2c, 0x79, 0x08, 0x58, 0x95, 0xb0, - 0x2a, 0x61, 0x55, 0xc2, 0xaa, 0x84, 0x55, 0x69, 0x50, 0x62, 0x8d, 0xf6, 0x87, 0x98, 0xc7, 0xe0, - 0x23, 0x58, 0x96, 0xb0, 0x2c, 0x61, 0x59, 0xc2, 0xb2, 0xdc, 0x80, 0x2d, 0x67, 0xbc, 0xef, 0x04, - 0xec, 0x4a, 0xd8, 0x95, 0xe9, 0xb8, 0x03, 0x77, 0x16, 0x96, 0xa1, 0xa3, 0x1b, 0xd1, 0xfd, 0x52, - 0x77, 0x84, 0x23, 0xb2, 0x96, 0xf7, 0x47, 0xa9, 0xb3, 0xa8, 0xfe, 0xb0, 0xb8, 0x68, 0x83, 0x63, - 0x2e, 0xc6, 0x72, 0x98, 0x87, 0xb7, 0xdb, 0xb0, 0x14, 0xe6, 0x22, 0x52, 0x98, 0x33, 0xe4, 0x8a, - 0x40, 0x0a, 0x33, 0x52, 0x98, 0xd7, 0x4f, 0x19, 0x52, 0x98, 0xa9, 0x27, 0x14, 0x29, 0xcc, 0x59, - 0x57, 0x0e, 0x09, 0x2a, 0x89, 0xa4, 0x94, 0x45, 0xe2, 0x4a, 0x23, 0x71, 0xe5, 0x91, 0xac, 0x12, - 0x31, 0x6b, 0xbb, 0x22, 0x85, 0x99, 0x91, 0x8d, 0x23, 0x85, 0x39, 0xfe, 0x9c, 0x21, 0x85, 0x19, - 0x4a, 0x1b, 0x4a, 0x1b, 0x4a, 0x1b, 0x4a, 0x1b, 0x4a, 0x1b, 0x29, 0xcc, 0x8c, 0x5f, 0x08, 0x34, - 0x1b, 0xbd, 0x3d, 0x02, 0xcd, 0x08, 0x34, 0x27, 0xb4, 0xe5, 0x90, 0xc2, 0xbc, 0x91, 0x77, 0x43, - 0x0a, 0x73, 0xfc, 0x6d, 0x88, 0x14, 0x66, 0x58, 0x95, 0xb0, 0x2a, 0x61, 0x55, 0xc2, 0xaa, 0x84, - 0x55, 0x89, 0x14, 0x66, 0x58, 0x96, 0xb0, 0x2c, 0x61, 0x59, 0xc2, 0xb2, 0xd4, 0xde, 0x72, 0x48, - 0x61, 0x86, 0x5d, 0x99, 0x5e, 0xbb, 0x12, 0x29, 0xcc, 0x12, 0xf7, 0x4b, 0x71, 0x0a, 0x33, 0x63, - 0x3d, 0x7a, 0xfe, 0xbd, 0x82, 0x9e, 0x07, 0xd9, 0xda, 0x6d, 0x79, 0xd6, 0x8c, 0x73, 0xbf, 0xdb, - 0x0c, 0xbd, 0x91, 0x15, 0x72, 0x3d, 0x7c, 0x8d, 0xea, 0xe8, 0x2d, 0x1a, 0x57, 0x1d, 0x37, 0x68, - 0xd4, 0x82, 0x4e, 0xd0, 0xb8, 0x98, 0xbc, 0xc5, 0xad, 0x1d, 0x7e, 0x6d, 0x3c, 0x0c, 0x1e, 0xbe, - 0xf1, 0x69, 0xfc, 0xb4, 0x8d, 0x72, 0x37, 0x6c, 0x4f, 0x7e, 0xfa, 0x1c, 0x3d, 0x7b, 0x56, 0x7a, - 0x36, 0xec, 0xa4, 0x58, 0x16, 0xb8, 0x65, 0x20, 0x75, 0x7b, 0x9f, 0x61, 0xc7, 0x33, 0xed, 0x74, - 0xda, 0xfd, 0x4d, 0xb7, 0x0b, 0x09, 0x77, 0x20, 0x57, 0x69, 0x7d, 0xde, 0x52, 0xfa, 0x4c, 0xe7, - 0x4e, 0xd8, 0xfc, 0xc8, 0x9c, 0xfe, 0x62, 0x03, 0x7e, 0x61, 0x6e, 0xff, 0xaf, 0x31, 0x3f, 0xaf, - 0x31, 0x7f, 0xae, 0x19, 0xbf, 0x6d, 0xba, 0xf5, 0x1a, 0xd7, 0xb9, 0x8e, 0x7c, 0x20, 0xc2, 0x29, - 0x6d, 0xc2, 0xde, 0x32, 0x69, 0xf6, 0x76, 0xbc, 0x6d, 0x93, 0x0e, 0xd0, 0x36, 0x29, 0x49, 0xa0, - 0x33, 0x05, 0x78, 0xc6, 0x81, 0xcf, 0x38, 0x00, 0x9a, 0x05, 0xc2, 0x6c, 0x1a, 0xbf, 0xec, 0x01, - 0x29, 0xf3, 0xcd, 0x8e, 0x0d, 0x34, 0x39, 0x36, 0xd6, 0xdc, 0xd8, 0x50, 0x34, 0xcb, 0x80, 0xaf, - 0xcd, 0x64, 0xb4, 0xca, 0x74, 0xea, 0x87, 0xe1, 0x68, 0x54, 0x12, 0x81, 0x00, 0x13, 0x09, 0x4b, - 0x26, 0xa3, 0x4b, 0x49, 0x6d, 0x91, 0xe4, 0x9a, 0x11, 0x27, 0xb2, 0x6b, 0x32, 0xea, 0xc0, 0xae, - 0x6f, 0x71, 0x23, 0xd8, 0xa0, 0x23, 0x9a, 0xce, 0xb3, 0xd3, 0x1c, 0x78, 0x03, 0xad, 0x90, 0x93, - 0x1f, 0x4c, 0xcc, 0x9b, 0xc5, 0x7b, 0x72, 0xb5, 0x89, 0x9c, 0x9c, 0x4b, 0xbf, 0xbf, 0xad, 0x5c, - 0x54, 0x7f, 0xa9, 0x56, 0x2e, 0x61, 0x4f, 0xc1, 0x9e, 0x82, 0x3d, 0x05, 0x7b, 0x2a, 0x5b, 0xf6, - 0x54, 0x28, 0x26, 0x1e, 0x21, 0x4e, 0xc8, 0x9c, 0x86, 0xb2, 0x42, 0x89, 0xf1, 0x1e, 0x15, 0xaf, - 0xfb, 0xda, 0x9f, 0xba, 0x1e, 0x22, 0x7a, 0x14, 0x32, 0xba, 0xf1, 0x11, 0x3d, 0x8e, 0x2a, 0x6f, - 0xe9, 0x8c, 0x8f, 0xf1, 0x54, 0x6d, 0x63, 0xad, 0xd2, 0xc6, 0x1e, 0x1d, 0x2b, 0x22, 0x3a, 0x66, - 0x90, 0xdc, 0x20, 0x3a, 0xb6, 0x89, 0x3a, 0x02, 0xd1, 0x31, 0x58, 0x73, 0xb0, 0xe6, 0x60, 0xcd, - 0xc1, 0x9a, 0x4b, 0xdc, 0x9a, 0x43, 0x74, 0x4c, 0xe5, 0x46, 0x88, 0x8e, 0xa5, 0x4f, 0x93, 0x2d, - 0xdc, 0x0e, 0xd1, 0x31, 0x9a, 0x2d, 0x82, 0xe8, 0xd8, 0xa6, 0xed, 0x1a, 0x44, 0xc7, 0x58, 0x9f, - 0x97, 0x25, 0x3a, 0xe6, 0xbc, 0x78, 0xb6, 0x2b, 0x5a, 0x46, 0xcd, 0x9b, 0xc5, 0x7b, 0xc2, 0xc6, - 0x81, 0x8d, 0x03, 0x1b, 0x07, 0x36, 0x0e, 0x6c, 0x1c, 0xd8, 0x38, 0xb0, 0x71, 0x60, 0xe3, 0xc0, - 0xc6, 0x81, 0x8d, 0x03, 0x1b, 0x07, 0x36, 0x0e, 0x8d, 0x8d, 0x83, 0x0c, 0x40, 0xd8, 0x53, 0xb0, - 0xa7, 0x60, 0x4f, 0xc1, 0x9e, 0x4a, 0xb5, 0x3d, 0x85, 0x0c, 0xc0, 0xa4, 0x95, 0x2f, 0x32, 0x00, - 0x13, 0xcd, 0x00, 0x64, 0x28, 0x92, 0x44, 0x98, 0x00, 0xb8, 0x93, 0xa2, 0x4d, 0xc1, 0xb5, 0x19, - 0x92, 0xdf, 0x04, 0x79, 0xd2, 0x3c, 0x4b, 0x9a, 0x0a, 0x2e, 0x34, 0x5b, 0x52, 0x7f, 0x03, 0x11, - 0x6c, 0x1e, 0xea, 0xda, 0x2c, 0x3c, 0x35, 0x59, 0x88, 0xb3, 0x4d, 0xc9, 0x89, 0x35, 0x07, 0x91, - 0x66, 0x24, 0xce, 0x5c, 0x44, 0x99, 0x9d, 0x18, 0xb3, 0x13, 0x61, 0x5e, 0xe2, 0x9b, 0x2e, 0x95, - 0x41, 0x9d, 0x1d, 0x9a, 0xb7, 0x5b, 0xaf, 0x8e, 0x67, 0xf5, 0x95, 0x76, 0x37, 0xe0, 0xcb, 0x66, - 0x9f, 0xb9, 0x0b, 0x75, 0xc2, 0xec, 0xc4, 0x77, 0x30, 0x5a, 0xfc, 0xf0, 0xbc, 0x7c, 0x79, 0x55, - 0xbd, 0x6e, 0x7c, 0xbe, 0x65, 0x4a, 0xa0, 0x3f, 0x40, 0x79, 0x29, 0x24, 0xd0, 0xa7, 0xd1, 0x17, - 0x80, 0x04, 0x7a, 0x46, 0x5b, 0x3f, 0xda, 0xf1, 0x4e, 0x4b, 0x78, 0xa1, 0x13, 0xbe, 0xf9, 0xe2, - 0x99, 0x63, 0xd7, 0x8f, 0x79, 0x13, 0x43, 0x04, 0x22, 0x5f, 0x1d, 0x3d, 0xfa, 0x27, 0x3b, 0x30, - 0xe0, 0x40, 0x7e, 0xf8, 0x7c, 0x7d, 0x5d, 0xa9, 0x35, 0x86, 0x68, 0x7c, 0xff, 0x50, 0x7e, 0xf8, - 0x7c, 0xcf, 0x25, 0x61, 0x83, 0x48, 0x4e, 0xc0, 0x1a, 0x92, 0x65, 0x76, 0x50, 0x8e, 0x27, 0x6d, - 0x38, 0x5b, 0x97, 0x37, 0xff, 0xbc, 0x66, 0xf4, 0xde, 0x7d, 0xd8, 0x8c, 0x59, 0xfa, 0x7c, 0x9b, - 0x35, 0x0f, 0x67, 0x3d, 0xed, 0x68, 0x9c, 0xca, 0xc3, 0x96, 0x2d, 0x11, 0x34, 0x7d, 0xa7, 0xc3, - 0xe2, 0x37, 0x8b, 0xb6, 0xd4, 0xf4, 0x4d, 0xc0, 0x1b, 0xc1, 0x1b, 0xc1, 0x1b, 0xc1, 0x1b, 0x49, - 0x77, 0x7c, 0x10, 0xfa, 0x8e, 0xf7, 0xc2, 0x49, 0x19, 0x4f, 0xb7, 0x40, 0x17, 0x7c, 0x6d, 0xbb, - 0x2d, 0xab, 0xe3, 0x3b, 0x6d, 0xdf, 0x09, 0xdf, 0xf8, 0xb4, 0xc1, 0xec, 0x6d, 0xf8, 0x7c, 0x16, - 0x07, 0xd0, 0x35, 0x46, 0x74, 0x8d, 0x1f, 0x7c, 0xeb, 0x40, 0xd7, 0xa4, 0x50, 0xd7, 0x0c, 0x16, - 0x06, 0xba, 0x86, 0x78, 0xc7, 0x77, 0x1d, 0x2f, 0x3c, 0x65, 0x54, 0x35, 0x1c, 0xce, 0x09, 0xde, - 0xac, 0x6a, 0xc6, 0xe4, 0x0f, 0x13, 0x59, 0xd4, 0x86, 0x52, 0x63, 0x4d, 0x65, 0x4d, 0x9b, 0xcc, - 0x7b, 0x65, 0xf4, 0x76, 0x18, 0xc9, 0x8e, 0x36, 0xbd, 0xf4, 0x27, 0x1b, 0xb4, 0xf4, 0x19, 0xc9, - 0x5a, 0xaa, 0x6f, 0x01, 0x71, 0x7f, 0x15, 0xa1, 0xef, 0x34, 0xf9, 0x18, 0xfb, 0x68, 0x7c, 0xd0, - 0x69, 0xb8, 0x6e, 0xe0, 0xba, 0x01, 0x9d, 0x26, 0xdd, 0xf1, 0x8e, 0x17, 0x1e, 0x16, 0x19, 0xe9, - 0xf4, 0x21, 0xe8, 0x74, 0x32, 0x74, 0xba, 0x60, 0x88, 0x53, 0x15, 0x0b, 0xa5, 0x93, 0xd2, 0xe9, - 0xe1, 0x71, 0xe9, 0x14, 0xbc, 0x7a, 0x5b, 0x79, 0x75, 0xb4, 0x07, 0x40, 0xb0, 0x41, 0xb0, 0xd9, - 0x08, 0x36, 0xcf, 0xe1, 0xc0, 0x39, 0x96, 0xcd, 0x71, 0xb4, 0x65, 0x69, 0x26, 0x5f, 0xed, 0xfe, - 0xb6, 0x71, 0x55, 0x79, 0xb8, 0xab, 0x5e, 0x34, 0xaa, 0xd7, 0xbf, 0x55, 0xee, 0xaa, 0x0f, 0xe4, - 0x27, 0x03, 0x41, 0xf1, 0x41, 0xf1, 0x41, 0xf1, 0x41, 0xf1, 0x91, 0xd5, 0x17, 0x6f, 0xa2, 0xa6, - 0x20, 0xf9, 0xe1, 0x8f, 0xdb, 0x0a, 0x32, 0xfa, 0x24, 0x26, 0xec, 0xae, 0x52, 0x2b, 0x3f, 0x54, - 0x7f, 0xaf, 0x20, 0xb5, 0x2f, 0xd6, 0x74, 0x4d, 0x54, 0x3e, 0xe6, 0x2b, 0xce, 0x7c, 0x95, 0x3f, - 0xdd, 0xdf, 0xd4, 0x3e, 0x3f, 0x54, 0x90, 0x15, 0xb9, 0x0d, 0x59, 0x91, 0xa3, 0x43, 0x91, 0x4c, - 0x44, 0x7f, 0x30, 0x3a, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0xe9, 0x8e, 0x47, 0x1e, - 0x24, 0xc5, 0xbb, 0xf6, 0x25, 0x4e, 0xf8, 0xc2, 0x6b, 0x32, 0xea, 0x80, 0xa9, 0x7b, 0x40, 0x13, - 0x40, 0x13, 0x40, 0x13, 0x40, 0x13, 0x90, 0xee, 0x78, 0x64, 0x29, 0x9a, 0xb3, 0x19, 0x37, 0x32, - 0x4b, 0xb1, 0x80, 0x68, 0x6a, 0xac, 0xa5, 0xdf, 0xc4, 0x68, 0xea, 0xd1, 0x11, 0xc2, 0xa8, 0xa6, - 0x47, 0xad, 0x6f, 0x05, 0xb1, 0x6e, 0x87, 0x62, 0xb0, 0xf0, 0x56, 0x10, 0xbe, 0xb9, 0xc2, 0xf2, - 0xc5, 0x7f, 0xba, 0x22, 0x08, 0x45, 0x8b, 0x93, 0x68, 0xaf, 0xbc, 0xa7, 0x81, 0x20, 0xeb, 0xe7, - 0xeb, 0xdb, 0xbb, 0x9b, 0x87, 0xca, 0x05, 0x62, 0xab, 0xe0, 0xf9, 0xe0, 0xf9, 0xe0, 0xf9, 0xe4, - 0x3b, 0x1e, 0xb1, 0xd5, 0x98, 0x13, 0x35, 0xc2, 0xe1, 0xea, 0xcd, 0x35, 0x62, 0xab, 0xb1, 0x26, - 0x6c, 0x5a, 0x75, 0x21, 0x46, 0xb8, 0x72, 0x9a, 0x6a, 0xd5, 0xeb, 0x7f, 0x34, 0xae, 0x6f, 0x2e, - 0x2b, 0x8d, 0xa9, 0x1d, 0x76, 0x57, 0xf9, 0x7f, 0x3f, 0x57, 0xee, 0x31, 0x73, 0xeb, 0x67, 0x6e, - 0x6e, 0xd2, 0xaa, 0x77, 0xac, 0x73, 0x86, 0x10, 0x6b, 0x6a, 0x6c, 0x01, 0x5f, 0xb4, 0x3b, 0xa1, - 0xf3, 0xea, 0xfc, 0xaf, 0xb0, 0x42, 0xe7, 0x55, 0xf8, 0x7c, 0x16, 0xc0, 0xc2, 0x9d, 0x40, 0xc4, - 0x41, 0xc4, 0x41, 0xc4, 0x41, 0xc4, 0x49, 0x77, 0x7c, 0xd7, 0xf1, 0xc2, 0xc2, 0x31, 0x23, 0x07, - 0x3f, 0x86, 0xc7, 0x7d, 0xf2, 0xe0, 0xa8, 0x0b, 0x20, 0x7f, 0x1f, 0x78, 0xdc, 0x53, 0xbb, 0xf4, - 0xc7, 0x47, 0x47, 0x87, 0xf0, 0xb9, 0x1b, 0x1f, 0x75, 0x1b, 0x7c, 0xee, 0x81, 0x08, 0xbb, 0x1d, - 0x03, 0x55, 0xbd, 0xe6, 0xee, 0xc3, 0xe7, 0x5b, 0x3f, 0x01, 0x7f, 0x47, 0x59, 0xaf, 0x6d, 0xe6, - 0xef, 0x28, 0xeb, 0xc5, 0xc5, 0xdf, 0x91, 0x30, 0x03, 0xfa, 0x0e, 0xfa, 0x0e, 0xfa, 0x2e, 0xbb, - 0xf4, 0xa8, 0x3a, 0x00, 0xea, 0xce, 0x41, 0xdd, 0xbf, 0xb6, 0xfd, 0xb0, 0xd9, 0x0d, 0x2d, 0xe1, - 0x3a, 0x2f, 0xce, 0x93, 0xcb, 0x98, 0x8e, 0xbe, 0x78, 0x2b, 0x3e, 0x02, 0xdf, 0x67, 0x4a, 0xe0, - 0xf0, 0xf0, 0xc1, 0x6f, 0x33, 0x87, 0x87, 0x0f, 0x9e, 0x63, 0xc7, 0x3f, 0xb5, 0xdb, 0xae, 0xb0, - 0x3d, 0xce, 0x44, 0x98, 0xc2, 0x36, 0xe8, 0x1d, 0xe7, 0xc5, 0xb3, 0x5d, 0xc7, 0x7b, 0xb1, 0x3a, - 0x7e, 0x3b, 0x6c, 0x37, 0xdb, 0x2e, 0xa3, 0xe2, 0x59, 0xbc, 0x17, 0x54, 0x03, 0x54, 0x03, 0x54, - 0x03, 0x54, 0x03, 0xe9, 0x8e, 0x47, 0x9e, 0x64, 0xcc, 0x89, 0xba, 0x2d, 0x3f, 0xfc, 0xd6, 0xb8, - 0xaf, 0x3c, 0x7c, 0xbe, 0x1d, 0xe4, 0x66, 0xdd, 0x5c, 0xdc, 0xd4, 0x90, 0x2b, 0x29, 0x31, 0x69, - 0x77, 0xf7, 0xbf, 0xdf, 0x22, 0xeb, 0x2f, 0xd6, 0x54, 0xd5, 0x2e, 0x31, 0x53, 0xf1, 0x66, 0xea, - 0xfe, 0x0e, 0x49, 0x91, 0xdb, 0x90, 0x14, 0x19, 0xb4, 0x9f, 0x43, 0xab, 0xe3, 0x0b, 0xf1, 0xca, - 0xdc, 0x91, 0x6f, 0xfe, 0x46, 0x7c, 0xde, 0x9e, 0x67, 0xdb, 0x0d, 0xe0, 0xee, 0x41, 0xc8, 0x76, - 0xab, 0x39, 0x3d, 0x42, 0xb6, 0x70, 0xf7, 0xa4, 0x58, 0xe9, 0xb0, 0x48, 0xf7, 0x94, 0xae, 0x19, - 0x8c, 0x0f, 0x15, 0x00, 0x15, 0x00, 0x15, 0x00, 0x15, 0x40, 0xeb, 0xd6, 0xe9, 0x58, 0x76, 0xab, - 0xe5, 0x8b, 0x20, 0xe0, 0xd4, 0x02, 0x67, 0x0c, 0x63, 0x8f, 0xe6, 0x26, 0x73, 0xa9, 0x3b, 0x93, - 0x99, 0xff, 0x56, 0x62, 0x9c, 0xfb, 0x85, 0x35, 0x60, 0xec, 0xee, 0x91, 0xbf, 0xb5, 0xc3, 0x50, - 0xf8, 0x1e, 0xab, 0x27, 0x6a, 0x70, 0xa3, 0x7f, 0xef, 0xee, 0x3e, 0x1e, 0x58, 0x67, 0xf5, 0x9f, - 0x8f, 0x05, 0xeb, 0xac, 0x3e, 0xfc, 0xb6, 0x30, 0xf8, 0x67, 0xf8, 0x7d, 0xf1, 0xf1, 0xc0, 0x2a, - 0x8d, 0xbf, 0x3f, 0x7a, 0x3c, 0xb0, 0x8e, 0xea, 0x7b, 0x5f, 0xbe, 0x7c, 0xdc, 0xfb, 0x71, 0xd8, - 0x93, 0xbf, 0xf0, 0x6f, 0x7c, 0x3e, 0x83, 0xfa, 0x4e, 0x86, 0x5c, 0x36, 0x66, 0x84, 0xe1, 0x18, - 0xc2, 0xa0, 0x26, 0x0c, 0xb6, 0xf5, 0x5c, 0xb6, 0x7e, 0xa9, 0xff, 0x28, 0x7c, 0x28, 0xf5, 0xce, - 0xf7, 0x7e, 0x9c, 0xf4, 0xe6, 0x7f, 0xf9, 0x73, 0xd9, 0xc7, 0x0a, 0x1f, 0x4e, 0x7a, 0xe7, 0x2b, - 0xfe, 0x72, 0xdc, 0x3b, 0x8f, 0x39, 0xc6, 0x51, 0x6f, 0x77, 0xe1, 0xa3, 0xfd, 0xdf, 0x17, 0x57, - 0x5d, 0x50, 0x5a, 0x71, 0xc1, 0xe1, 0xaa, 0x0b, 0x0e, 0x57, 0x5c, 0xb0, 0xf2, 0x91, 0x8a, 0x2b, - 0x2e, 0x38, 0xea, 0xfd, 0x5c, 0xf8, 0xfc, 0xee, 0xf2, 0x8f, 0x1e, 0xf7, 0xf6, 0x7e, 0xae, 0xfa, - 0xdb, 0x49, 0xef, 0xe7, 0xf9, 0x5e, 0x06, 0xa1, 0x01, 0x09, 0x64, 0x0a, 0x12, 0xc6, 0xdb, 0xaf, - 0x86, 0xa3, 0x51, 0x0d, 0xac, 0xba, 0xa5, 0x56, 0x1d, 0x82, 0xf5, 0x29, 0xb5, 0xea, 0x10, 0xac, - 0x67, 0xa1, 0x53, 0x08, 0xd6, 0xc7, 0x9b, 0xa8, 0x87, 0xcf, 0xd7, 0xd7, 0x95, 0x1a, 0x0a, 0x1a, - 0xc5, 0x9a, 0xac, 0xdb, 0x22, 0xc2, 0xcd, 0xef, 0x4e, 0xcf, 0xd5, 0x2d, 0xa2, 0xcc, 0xa9, 0x8d, - 0x32, 0xef, 0xa4, 0x68, 0x97, 0xe6, 0xcb, 0x9e, 0xd7, 0x0e, 0x6d, 0xf2, 0x10, 0x75, 0x3e, 0x68, - 0x7e, 0x15, 0xaf, 0x76, 0xc7, 0x0e, 0xbf, 0xf6, 0x77, 0xe4, 0x7e, 0xbb, 0x23, 0xbc, 0xe6, 0x80, - 0xba, 0x59, 0x9e, 0x08, 0xff, 0x6a, 0xfb, 0x7f, 0x5a, 0x8e, 0x17, 0x84, 0xb6, 0xd7, 0x14, 0xfb, - 0xf3, 0xbf, 0x08, 0x16, 0x7e, 0xb3, 0xdf, 0x57, 0xce, 0xfb, 0x6e, 0xd0, 0x09, 0xf6, 0x9b, 0x6d, - 0x2f, 0x08, 0x7d, 0xdb, 0xf1, 0x44, 0xcb, 0xea, 0x8f, 0xbe, 0x1f, 0x76, 0x3d, 0x4f, 0xb8, 0xc1, - 0xe8, 0xdf, 0xfd, 0xe1, 0x4d, 0x68, 0x76, 0xbf, 0xfe, 0x4a, 0x11, 0xac, 0x12, 0x6d, 0x07, 0x1b, - 0x8e, 0xce, 0x35, 0xc4, 0x54, 0x9f, 0x9c, 0xe2, 0x73, 0x50, 0x7b, 0x46, 0x4a, 0xcf, 0x45, 0xe5, - 0xd9, 0x29, 0x3c, 0x3b, 0x75, 0xe7, 0xa5, 0xec, 0xe9, 0xc2, 0x65, 0x72, 0x6a, 0x1e, 0xed, 0x58, - 0x57, 0xd8, 0xcf, 0xb4, 0x74, 0x3c, 0xa2, 0xe1, 0x84, 0xa7, 0x27, 0xf3, 0xb7, 0x23, 0xd5, 0xf1, - 0xf1, 0xe3, 0x08, 0xd3, 0xf7, 0x07, 0x90, 0xb5, 0x41, 0xc0, 0xde, 0x29, 0x76, 0xac, 0xa1, 0xd6, - 0xb2, 0xec, 0x30, 0xf4, 0x9d, 0xa7, 0x6e, 0x38, 0xa0, 0xe7, 0xc4, 0x48, 0xbf, 0xfc, 0x36, 0xb4, - 0xd0, 0x5f, 0x00, 0xf4, 0x03, 0xfa, 0x01, 0xfd, 0x34, 0x7b, 0xf6, 0xd2, 0xa1, 0x2d, 0xa1, 0x99, - 0x6f, 0x8e, 0xa5, 0x8a, 0xc9, 0x7d, 0x3c, 0x1a, 0x9f, 0xc7, 0x81, 0x5c, 0x80, 0x03, 0x19, 0x0e, - 0xe4, 0x34, 0x41, 0x91, 0x19, 0x48, 0x62, 0xf2, 0x62, 0x50, 0x67, 0x87, 0x3b, 0x3e, 0xcf, 0x86, - 0x6f, 0x89, 0x20, 0x74, 0x3c, 0x9b, 0x25, 0x75, 0x7e, 0x41, 0xaa, 0xa6, 0x6f, 0xc6, 0xb4, 0x57, - 0x78, 0xcb, 0x98, 0xb0, 0x81, 0x9a, 0x09, 0x70, 0x33, 0x08, 0x72, 0xa6, 0xc0, 0xce, 0x38, 0xe8, - 0x19, 0x07, 0x3f, 0xb3, 0x20, 0xc8, 0x03, 0x86, 0x4c, 0xa0, 0xc8, 0x67, 0xc2, 0xaf, 0x94, 0x18, - 0xd6, 0xdc, 0xc9, 0x05, 0x42, 0x76, 0xc6, 0x78, 0x0f, 0xd6, 0x5c, 0xca, 0xf1, 0x17, 0xaf, 0xd0, - 0xe7, 0x12, 0xc8, 0xad, 0x5c, 0x58, 0xa3, 0x53, 0x03, 0xf7, 0x32, 0x95, 0x5e, 0x16, 0xdd, 0x70, - 0x53, 0x72, 0x2e, 0xc7, 0x5f, 0x75, 0xd6, 0x3b, 0xf4, 0x3e, 0x6c, 0x90, 0x10, 0x1d, 0x43, 0x88, - 0x68, 0x85, 0x08, 0xb9, 0x9a, 0x1b, 0x95, 0xab, 0x69, 0x08, 0x52, 0xb6, 0x3e, 0xd7, 0x34, 0xdd, - 0xe6, 0x38, 0x53, 0x30, 0x3f, 0x1a, 0x3f, 0xa9, 0xa0, 0xfe, 0xd2, 0x10, 0x06, 0x69, 0xa8, 0x9f, - 0x7e, 0x7d, 0x49, 0xbb, 0xad, 0x16, 0x07, 0xf5, 0xd8, 0x5f, 0x6d, 0xff, 0xcd, 0x1a, 0xcd, 0x3e, - 0x57, 0x8f, 0xd5, 0xf9, 0x3b, 0xc1, 0xa9, 0x0b, 0xa7, 0x6e, 0xf2, 0xfe, 0x0d, 0x38, 0x75, 0x0d, - 0x6a, 0x11, 0x36, 0xa7, 0x2e, 0x3b, 0x8c, 0x99, 0x86, 0x33, 0x66, 0x58, 0x63, 0x87, 0x37, 0x13, - 0x30, 0x67, 0x10, 0xee, 0x4c, 0xc1, 0x9e, 0x71, 0xf8, 0x33, 0x0e, 0x83, 0x66, 0xe1, 0x90, 0xd7, - 0xbc, 0xe0, 0x72, 0xef, 0x72, 0xc1, 0x64, 0x74, 0x03, 0xbb, 0xf5, 0xea, 0x78, 0xd6, 0x8b, 0xdf, - 0xee, 0x76, 0x02, 0xfe, 0xbd, 0x3c, 0x16, 0xcf, 0x99, 0xbb, 0x7e, 0x30, 0x52, 0xdc, 0xbf, 0xc0, - 0x7c, 0x1b, 0x6e, 0xf8, 0x34, 0x09, 0xa3, 0x09, 0xc0, 0xa9, 0x69, 0x58, 0x4d, 0x0c, 0x5e, 0x13, - 0x83, 0xd9, 0x64, 0xe0, 0x96, 0xdf, 0xab, 0x93, 0xe3, 0x77, 0x43, 0xb3, 0xc3, 0x70, 0x74, 0x23, - 0xa6, 0x2c, 0xaa, 0xb5, 0x02, 0xce, 0x92, 0x5d, 0x95, 0x30, 0x24, 0x1b, 0x87, 0xe6, 0x24, 0x20, - 0x3a, 0x41, 0xa8, 0x4e, 0x0a, 0xb2, 0x13, 0x87, 0xee, 0xc4, 0x21, 0x3c, 0x59, 0x28, 0x37, 0x03, - 0xe9, 0x86, 0xa0, 0xfd, 0xff, 0x67, 0xef, 0x5d, 0x9b, 0xd3, 0x46, 0xb6, 0xf5, 0xf1, 0xf7, 0xfe, - 0x14, 0x2e, 0x6a, 0xbf, 0x88, 0xab, 0xa2, 0x70, 0x31, 0x17, 0xdb, 0x55, 0xe7, 0x85, 0x13, 0x33, - 0x33, 0xae, 0xf1, 0x6d, 0x3b, 0xce, 0xf9, 0x9f, 0x29, 0x0f, 0x9b, 0x92, 0x45, 0x63, 0xeb, 0x17, - 0x21, 0x71, 0xd4, 0x4d, 0x26, 0x3e, 0x31, 0xdf, 0xfd, 0x5f, 0x08, 0x81, 0xb9, 0x29, 0x31, 0xd0, - 0x6b, 0xb5, 0x24, 0x9e, 0xd4, 0xae, 0x1d, 0x86, 0x80, 0x5a, 0xa8, 0x57, 0xaf, 0xf5, 0x3c, 0xeb, - 0xca, 0xae, 0xe2, 0xa7, 0x0b, 0x8a, 0xef, 0x8e, 0x37, 0xe8, 0x88, 0x31, 0x0a, 0xe6, 0x3f, 0x3c, - 0x13, 0x7d, 0x31, 0x7f, 0x1b, 0xcc, 0xf2, 0xcb, 0x33, 0x78, 0xcb, 0xb8, 0x41, 0x30, 0x69, 0x18, - 0x52, 0x60, 0x20, 0x4c, 0x1b, 0x8a, 0xd4, 0x18, 0x8c, 0xd4, 0x18, 0x8e, 0x74, 0x18, 0x10, 0x5e, - 0x43, 0xc2, 0x6c, 0x50, 0xa6, 0x8f, 0x98, 0x3c, 0x43, 0xef, 0x97, 0x27, 0x5e, 0x7f, 0x31, 0xde, - 0xda, 0x48, 0xbf, 0x61, 0x60, 0xed, 0x99, 0xe2, 0xbe, 0x9f, 0xfc, 0x4f, 0x09, 0xeb, 0xd1, 0x0b, - 0x1e, 0xec, 0xb9, 0xa8, 0xef, 0xe8, 0x1c, 0x58, 0xb3, 0x4e, 0xaa, 0xe2, 0xcc, 0x7f, 0xcc, 0xbe, - 0xb6, 0xf4, 0xd5, 0x0b, 0xa6, 0x55, 0x7e, 0x2f, 0x5c, 0xa9, 0x4e, 0x95, 0x0a, 0xcd, 0xc8, 0xf0, - 0xa5, 0xeb, 0x37, 0x3d, 0x31, 0x52, 0x51, 0xb2, 0x70, 0xb2, 0xef, 0x0f, 0x3c, 0xcf, 0x80, 0x24, - 0x5d, 0xda, 0xdf, 0xcd, 0xdf, 0xc4, 0x75, 0xd8, 0x11, 0xa1, 0xe8, 0x7c, 0x7c, 0x8e, 0x6f, 0x61, - 0x2f, 0x9f, 0x2a, 0x9a, 0x51, 0xbc, 0x0b, 0xae, 0x3f, 0xc6, 0xbe, 0xb6, 0xe7, 0x99, 0x86, 0xe1, - 0xcb, 0xb7, 0x02, 0x28, 0x0e, 0x28, 0x0e, 0x28, 0x0e, 0x28, 0x0e, 0x28, 0x0e, 0x28, 0x0e, 0x28, - 0x0e, 0x28, 0x0e, 0x28, 0x0e, 0x28, 0xbe, 0x03, 0x50, 0xdc, 0x7f, 0x4e, 0x0d, 0x14, 0x9f, 0xde, - 0x0a, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, - 0x38, 0xa0, 0x38, 0xa0, 0x38, 0x33, 0x14, 0xcf, 0x55, 0xae, 0x0d, 0x71, 0x09, 0x69, 0xe2, 0xba, - 0xe9, 0x2a, 0x2d, 0x5d, 0xac, 0x1b, 0x5a, 0x7e, 0x63, 0x4e, 0xd7, 0x52, 0x54, 0xa2, 0x9a, 0x13, - 0x37, 0x06, 0x51, 0x2b, 0x48, 0x65, 0x2b, 0xc1, 0x9f, 0x4b, 0x3b, 0x5e, 0x36, 0xe7, 0xa9, 0xb4, - 0x15, 0xa4, 0xd2, 0xe6, 0x88, 0x0b, 0x22, 0x95, 0x16, 0xa9, 0xb4, 0xfa, 0x1e, 0x25, 0x52, 0x69, - 0xe1, 0x34, 0xcc, 0xa3, 0x61, 0x48, 0x81, 0x81, 0x30, 0x6d, 0x28, 0x52, 0x63, 0x30, 0x52, 0x63, - 0x38, 0xd2, 0x61, 0x40, 0xf8, 0x19, 0xe9, 0x3e, 0x9c, 0x86, 0xfb, 0x26, 0x14, 0x3c, 0x9c, 0x86, - 0xd9, 0x95, 0x5f, 0x38, 0x0d, 0xe1, 0x34, 0x44, 0x2a, 0x2d, 0xb5, 0x8e, 0x46, 0x2a, 0x2d, 0xa0, - 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, - 0xf8, 0x4e, 0x42, 0x71, 0xa4, 0xd2, 0x02, 0x8a, 0x03, 0x8a, 0x03, 0x8a, 0x03, 0x8a, 0x03, 0x8a, - 0x03, 0x8a, 0x03, 0x8a, 0x03, 0x8a, 0x03, 0x8a, 0x03, 0x8a, 0x23, 0x95, 0x56, 0xc7, 0xba, 0x99, - 0x4e, 0xa5, 0x1d, 0x67, 0x68, 0xe6, 0x25, 0x93, 0x36, 0xd3, 0x9d, 0x75, 0x99, 0xe5, 0x37, 0xd3, - 0x72, 0x5b, 0x60, 0xc9, 0x99, 0x0e, 0x07, 0x8e, 0xf2, 0x63, 0x60, 0x77, 0x35, 0xfe, 0xc1, 0xe7, - 0xf1, 0xef, 0x6d, 0x5f, 0xf6, 0x3d, 0xd9, 0xbe, 0x90, 0x7d, 0xd9, 0xfe, 0xf4, 0xfa, 0x7b, 0x47, - 0x30, 0xa8, 0x7d, 0x17, 0xfd, 0xb6, 0xf6, 0x4d, 0xe5, 0x66, 0xfc, 0xea, 0x74, 0xfa, 0x23, 0x47, - 0xef, 0xdd, 0x8c, 0x7f, 0x52, 0xf4, 0xc9, 0xd3, 0xd1, 0x2f, 0xfa, 0x7d, 0xfc, 0x83, 0x32, 0x3a, - 0x48, 0x8c, 0xf0, 0x50, 0x14, 0x1c, 0xdb, 0xef, 0xb8, 0x1d, 0x5b, 0x09, 0x4b, 0x0a, 0x27, 0xf0, - 0x3b, 0x13, 0x49, 0x60, 0xec, 0xce, 0x9f, 0x7c, 0x0b, 0x68, 0xd5, 0x9f, 0x56, 0x6f, 0x0c, 0x5a, - 0xf5, 0xe7, 0xd0, 0x9b, 0x82, 0x56, 0xfd, 0xeb, 0x3f, 0x32, 0xbe, 0x56, 0xfd, 0x09, 0x5a, 0xd2, - 0x40, 0xf3, 0xfe, 0xa4, 0x3b, 0x41, 0x3b, 0xff, 0xac, 0xa9, 0x71, 0x83, 0xea, 0xdc, 0x94, 0x5a, - 0x37, 0xae, 0xde, 0x8d, 0xab, 0x79, 0xb3, 0xea, 0x3e, 0x9f, 0x7e, 0x11, 0xf6, 0x1a, 0x24, 0xe6, - 0xc9, 0x2d, 0xcb, 0x46, 0x80, 0x73, 0x82, 0x8b, 0x21, 0xd5, 0x6f, 0xcc, 0x04, 0x98, 0x34, 0x05, - 0x29, 0x30, 0x09, 0xa6, 0x4d, 0x43, 0x6a, 0x4c, 0x44, 0x6a, 0x4c, 0x45, 0x3a, 0x4c, 0x06, 0xaf, - 0xe9, 0x60, 0x36, 0x21, 0xc6, 0x4c, 0xc9, 0x74, 0xe1, 0x7e, 0xe8, 0x06, 0xa1, 0xab, 0x9e, 0xcd, - 0x9d, 0xb7, 0xe9, 0x88, 0xdb, 0xc9, 0x9d, 0x18, 0x92, 0x72, 0x33, 0x69, 0x3c, 0xc6, 0xcd, 0x4d, - 0x1a, 0xcc, 0x4e, 0x8a, 0xcc, 0x4f, 0x5a, 0xcc, 0x50, 0xea, 0xcc, 0x51, 0xea, 0xcc, 0x52, 0xba, - 0xcc, 0x93, 0x19, 0x33, 0x65, 0xc8, 0x5c, 0x4d, 0x1f, 0xbd, 0xb1, 0xb4, 0xa0, 0x25, 0x8d, 0x31, - 0x70, 0x7d, 0x55, 0xae, 0x9b, 0x54, 0x18, 0xb1, 0xfd, 0xa8, 0x1b, 0xbc, 0x85, 0x5b, 0xdb, 0x7f, - 0x1c, 0x3d, 0x8d, 0x7b, 0xa3, 0x07, 0xd2, 0xac, 0xc2, 0xdc, 0x8f, 0x13, 0x6e, 0x8c, 0x6b, 0xee, - 0x94, 0x00, 0x8b, 0xa5, 0xdb, 0xf9, 0x6f, 0xdb, 0x1b, 0x88, 0x14, 0xdd, 0xcf, 0x6f, 0xa1, 0xed, - 0x28, 0x37, 0xf0, 0xcf, 0xdc, 0x47, 0x37, 0x4a, 0x4d, 0x2a, 0x19, 0xbf, 0xaf, 0xe1, 0xfb, 0x14, - 0x88, 0xb0, 0xfd, 0x1d, 0x22, 0xfc, 0x0b, 0x11, 0xae, 0xd7, 0x6a, 0x87, 0x35, 0x88, 0x71, 0xba, - 0xb0, 0x88, 0xf9, 0xd5, 0x5b, 0x7b, 0xbb, 0xf1, 0x7b, 0x0d, 0xa8, 0xa9, 0x82, 0xa1, 0x38, 0x64, - 0x22, 0xee, 0x33, 0x12, 0x8d, 0x84, 0xef, 0x00, 0xbe, 0x03, 0xf8, 0x0e, 0xe0, 0x3b, 0x80, 0xef, - 0x20, 0x17, 0xbe, 0x03, 0x73, 0xa5, 0x45, 0x8b, 0x06, 0xc4, 0x44, 0x89, 0xd1, 0xab, 0x12, 0x4f, - 0x2c, 0x35, 0xea, 0x57, 0xfa, 0x8b, 0x69, 0x9a, 0x2b, 0xde, 0x8b, 0xbb, 0x47, 0x17, 0xf9, 0xab, - 0x89, 0x0c, 0x42, 0xb0, 0x5c, 0x47, 0xa5, 0x0c, 0x15, 0x7e, 0xbc, 0x82, 0xcd, 0x8c, 0x25, 0xd2, - 0x27, 0x26, 0x35, 0x27, 0xfe, 0x0b, 0x6b, 0xc7, 0x75, 0x7e, 0xa1, 0xe5, 0x6c, 0x49, 0x60, 0x98, - 0x99, 0xa4, 0x83, 0x91, 0xa0, 0x19, 0xc1, 0x4e, 0x31, 0x0e, 0x24, 0xcb, 0xa4, 0x8d, 0x59, 0x20, - 0x59, 0x26, 0xc7, 0xcc, 0x01, 0xcd, 0x08, 0xa6, 0x0c, 0x21, 0xc6, 0xfa, 0x0b, 0xc6, 0x0e, 0x30, - 0x66, 0x7b, 0x18, 0xc3, 0x3a, 0x50, 0x66, 0x19, 0xbd, 0x30, 0x0e, 0x96, 0x59, 0x92, 0x69, 0x53, - 0xa0, 0xa5, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x42, 0xf8, 0x88, 0x8d, 0x65, 0xf8, - 0xda, 0x8e, 0x72, 0xbf, 0x09, 0xf3, 0x91, 0xba, 0xf8, 0x3e, 0x10, 0xa1, 0x33, 0x72, 0x03, 0x88, - 0xd0, 0xa5, 0xc9, 0x04, 0xa5, 0xce, 0x14, 0xa5, 0xce, 0x24, 0xa5, 0xcb, 0x34, 0x99, 0x31, 0x51, - 0x86, 0x4c, 0x95, 0x79, 0x9e, 0xbd, 0xa4, 0x31, 0x1e, 0x82, 0xc0, 0x13, 0xb6, 0x9f, 0x86, 0x08, - 0x5d, 0x19, 0xc9, 0x45, 0x64, 0xcf, 0x18, 0xc5, 0x48, 0x80, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x80, - 0x2b, 0x80, 0x2b, 0x59, 0x86, 0x2b, 0x28, 0x46, 0x42, 0x31, 0xd2, 0xeb, 0x83, 0x40, 0x31, 0x52, - 0xf2, 0xed, 0xa0, 0x18, 0x29, 0xad, 0xea, 0x74, 0x5e, 0x84, 0x51, 0x8c, 0xf4, 0x4b, 0x11, 0x46, - 0x31, 0x52, 0x0a, 0xb1, 0x88, 0xf9, 0xd5, 0x51, 0x8c, 0x44, 0x27, 0xe6, 0x28, 0x46, 0x82, 0xef, - 0x00, 0xbe, 0x03, 0xf8, 0x0e, 0xe0, 0x3b, 0x80, 0xef, 0x20, 0x2f, 0xbe, 0x03, 0x14, 0x23, 0xed, - 0xa3, 0x18, 0x29, 0x0b, 0x2b, 0xa2, 0x18, 0x29, 0x77, 0xc5, 0x48, 0x8c, 0x33, 0x6b, 0xf8, 0x65, - 0x36, 0x5f, 0xbd, 0x87, 0xff, 0x14, 0xcf, 0xc6, 0x18, 0x87, 0x99, 0x69, 0x6a, 0x46, 0xa7, 0xa8, - 0x19, 0x9d, 0x9e, 0x66, 0x66, 0x6a, 0x1a, 0xa6, 0x8b, 0x65, 0x5d, 0x9f, 0x17, 0x58, 0xcb, 0x16, - 0xa8, 0x67, 0x3a, 0x7d, 0x9a, 0xfc, 0xca, 0xcf, 0x93, 0x1f, 0x79, 0xc3, 0x56, 0x72, 0x82, 0x09, - 0x6b, 0xa9, 0x3a, 0xc3, 0xf9, 0x39, 0xbb, 0x98, 0x4e, 0xb6, 0xbc, 0xb9, 0x4c, 0x53, 0x0e, 0x78, - 0xa7, 0x1a, 0x60, 0xee, 0x58, 0xa6, 0xbc, 0xa9, 0x98, 0x3b, 0x96, 0x4f, 0x6f, 0x27, 0xe6, 0x8e, - 0xbd, 0x4d, 0x05, 0xcb, 0x7e, 0xd7, 0x52, 0xae, 0x78, 0x08, 0x85, 0xfd, 0x55, 0x84, 0x06, 0xc6, - 0x8d, 0x2d, 0xdc, 0x00, 0xef, 0x94, 0xb1, 0x12, 0xa6, 0x8c, 0x65, 0x59, 0x79, 0x9b, 0x52, 0xe2, - 0xc6, 0x95, 0xb9, 0x71, 0xa5, 0x6e, 0x56, 0xb9, 0xe7, 0xd3, 0xd3, 0xc7, 0x1e, 0x9a, 0x5a, 0x52, - 0xc2, 0x56, 0xa4, 0x85, 0x5d, 0x9f, 0x73, 0xf2, 0xd7, 0x14, 0x2f, 0x57, 0x19, 0xd7, 0x6c, 0xfa, - 0x83, 0xde, 0xe8, 0x51, 0x73, 0xf6, 0x7b, 0x38, 0x13, 0x5d, 0x7b, 0xe0, 0x45, 0x07, 0xe5, 0xf6, - 0xf4, 0xea, 0xec, 0xfa, 0x32, 0x37, 0x1e, 0x0d, 0x06, 0x94, 0x2e, 0xbe, 0xf7, 0x3d, 0xd7, 0x71, - 0x55, 0x44, 0xa6, 0xad, 0xd8, 0xfb, 0xc4, 0x0c, 0x55, 0x56, 0xdc, 0x03, 0xd0, 0x0a, 0xd0, 0x0a, - 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xe3, 0x89, 0xe5, 0x4f, 0x9c, 0x31, 0x91, 0x28, 0xf3, 0x93, - 0xc4, 0x98, 0x0f, 0x1f, 0xa2, 0x6c, 0x97, 0x8e, 0x35, 0x67, 0x91, 0xe4, 0xaa, 0x37, 0xf9, 0xb3, - 0x63, 0xf2, 0x81, 0x37, 0x9e, 0x02, 0xaf, 0x63, 0xb1, 0x57, 0x29, 0x4f, 0x45, 0x7c, 0x7e, 0x79, - 0xae, 0x29, 0xc7, 0xaf, 0x00, 0xb5, 0x04, 0x64, 0x93, 0x0b, 0x64, 0x13, 0xca, 0x6f, 0x7d, 0x20, - 0x9b, 0x1d, 0x44, 0x36, 0xd1, 0xc6, 0x03, 0xd9, 0x64, 0x0c, 0xd9, 0x0c, 0x5c, 0x5f, 0x1d, 0x19, - 0xc0, 0x35, 0x8c, 0xd5, 0x6c, 0x86, 0xaa, 0x85, 0x0d, 0xa4, 0x91, 0x9a, 0xac, 0x06, 0x36, 0x5d, - 0x1a, 0x64, 0xb8, 0xda, 0x37, 0x0d, 0x65, 0x91, 0x26, 0xca, 0xe4, 0x4c, 0x56, 0xef, 0xa6, 0x45, - 0xe4, 0x1a, 0x3b, 0x2c, 0x72, 0x39, 0x4d, 0xe8, 0x6e, 0x81, 0xb8, 0xbe, 0x59, 0x0c, 0xcd, 0xb8, - 0xc6, 0xe1, 0x0c, 0xcf, 0x0d, 0x65, 0x84, 0x33, 0x7c, 0x47, 0x29, 0x23, 0x9c, 0xe1, 0x59, 0xa4, - 0x8c, 0x52, 0x85, 0x86, 0xe2, 0xf5, 0x47, 0xb0, 0xca, 0x6f, 0x7e, 0x66, 0x51, 0xc4, 0xd8, 0x09, - 0x7a, 0xfd, 0xc1, 0x38, 0x79, 0xde, 0xea, 0x09, 0xf5, 0x14, 0x74, 0xf8, 0x0d, 0x75, 0xd2, 0x8d, - 0xf0, 0xbb, 0x98, 0x63, 0x8d, 0xa3, 0x4e, 0x2e, 0xae, 0x3f, 0x9d, 0x5e, 0x5c, 0xfc, 0xd5, 0xfe, - 0x74, 0x7d, 0x79, 0xf3, 0xe5, 0xae, 0x79, 0x06, 0x1c, 0x01, 0x1c, 0x01, 0x1c, 0x01, 0x1c, 0x01, - 0x1c, 0xc1, 0x79, 0x62, 0xdd, 0x8e, 0xf0, 0x95, 0xab, 0x9e, 0x0d, 0x05, 0xd6, 0x39, 0x3d, 0xd0, - 0xe7, 0xf1, 0x4f, 0xfd, 0x68, 0x4b, 0x83, 0xf3, 0x97, 0x6e, 0x4e, 0xef, 0xfe, 0x88, 0x6d, 0xde, - 0xe9, 0xdd, 0xf9, 0xf5, 0x55, 0xfb, 0xb2, 0x79, 0xf7, 0xc7, 0xf5, 0x19, 0xb7, 0xf6, 0x88, 0xdc, - 0x66, 0xd2, 0x48, 0xf7, 0x4e, 0xc3, 0x3d, 0xbc, 0x9a, 0xff, 0x73, 0xd7, 0xbc, 0xbd, 0x8a, 0xa0, - 0xc7, 0xbf, 0xbf, 0x34, 0x6f, 0xcf, 0x9b, 0x67, 0x85, 0x5d, 0x70, 0x12, 0x1b, 0x7f, 0xea, 0x37, - 0x17, 0xe7, 0x9f, 0xce, 0xef, 0x2e, 0xfe, 0x6a, 0x9f, 0x35, 0x7f, 0x3b, 0xbf, 0xc2, 0x53, 0xe7, - 0x78, 0xea, 0x4b, 0x18, 0x3b, 0xe7, 0xbe, 0xe9, 0x56, 0xde, 0xf0, 0x47, 0x3e, 0x59, 0xb0, 0x14, - 0xe1, 0x37, 0x13, 0x45, 0x67, 0x49, 0x37, 0x02, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, - 0xe6, 0xc9, 0xc9, 0x3c, 0xfb, 0x96, 0xdd, 0xe9, 0x84, 0x42, 0x4a, 0x13, 0xc4, 0xf3, 0x98, 0x71, - 0xcd, 0xf8, 0x19, 0xe7, 0x3e, 0xf3, 0xe9, 0x75, 0x67, 0xbf, 0x55, 0x0d, 0xec, 0xed, 0xd2, 0x1e, - 0x1f, 0x99, 0x99, 0xa0, 0xad, 0x44, 0xe8, 0x1b, 0x1b, 0x8b, 0x51, 0xf8, 0xcf, 0xbb, 0x77, 0xf7, - 0x25, 0xeb, 0xb8, 0xf5, 0x72, 0x5f, 0xb6, 0x8e, 0x5b, 0xe3, 0x97, 0xe5, 0xe8, 0xaf, 0xf1, 0xeb, - 0xca, 0x7d, 0xc9, 0xaa, 0x4e, 0x5e, 0xd7, 0xee, 0x4b, 0x56, 0xad, 0x75, 0xf0, 0xf7, 0xdf, 0x1f, - 0x0e, 0x7e, 0x1c, 0x0e, 0xd7, 0xff, 0xe2, 0xbf, 0xf8, 0x09, 0x45, 0x2b, 0xcf, 0x3d, 0x30, 0xcd, - 0x1e, 0xda, 0x3a, 0x0e, 0xad, 0xd9, 0x43, 0x6b, 0x5b, 0xdd, 0x53, 0xeb, 0xb7, 0xd6, 0x8f, 0xf2, - 0xfb, 0xea, 0xf0, 0xe4, 0xe0, 0x47, 0x63, 0xb8, 0xf8, 0xe6, 0xcb, 0xaa, 0x8f, 0x95, 0xdf, 0x37, - 0x86, 0x27, 0x09, 0xff, 0x52, 0x1f, 0x9e, 0xbc, 0xf1, 0x1a, 0xb5, 0xe1, 0xbb, 0xa5, 0x8f, 0x8e, - 0xde, 0xaf, 0x24, 0x7d, 0xa1, 0x9a, 0xf0, 0x85, 0xc3, 0xa4, 0x2f, 0x1c, 0x26, 0x7c, 0x21, 0xf1, - 0x96, 0x2a, 0x09, 0x5f, 0xa8, 0x0d, 0x5f, 0x96, 0x3e, 0xff, 0x6e, 0xf5, 0x47, 0xeb, 0xc3, 0x83, - 0x97, 0xa4, 0x7f, 0x6b, 0x0c, 0x5f, 0x4e, 0x0e, 0x76, 0x40, 0x85, 0x21, 0x5f, 0x2f, 0x8d, 0x3e, - 0x91, 0x50, 0x74, 0x45, 0x28, 0x7c, 0xc7, 0x40, 0xd6, 0xde, 0xcc, 0xda, 0xf0, 0x7c, 0xc0, 0xf3, - 0x01, 0xcf, 0x07, 0x3c, 0x1f, 0xf0, 0x7c, 0x30, 0x9e, 0x58, 0x94, 0x7b, 0xe5, 0x88, 0x3f, 0xa1, - 0xdc, 0x8b, 0xbc, 0xe7, 0x69, 0xe2, 0xfa, 0x28, 0xf7, 0xda, 0x59, 0x91, 0xab, 0xd4, 0x6a, 0x28, - 0xf8, 0x02, 0x81, 0xdc, 0x5d, 0x02, 0x19, 0x0a, 0x15, 0x3e, 0x5b, 0xca, 0xed, 0x99, 0x08, 0xa4, - 0xcf, 0x2e, 0x0e, 0x0a, 0x99, 0x07, 0x0a, 0x89, 0x8e, 0x21, 0x3b, 0x4a, 0x21, 0xd1, 0x31, 0x24, - 0xab, 0x14, 0xb2, 0x5c, 0x37, 0xc0, 0x21, 0xeb, 0xe0, 0x90, 0xe0, 0x90, 0xe0, 0x90, 0xe0, 0x90, - 0x39, 0x10, 0xb9, 0x7a, 0xa9, 0x04, 0x0e, 0x09, 0x0e, 0xb9, 0xbb, 0x1c, 0x52, 0x0a, 0x35, 0xe8, - 0x1b, 0x6c, 0x77, 0xb9, 0xb0, 0x3e, 0x7f, 0x31, 0x72, 0x03, 0xec, 0x15, 0xec, 0x15, 0xec, 0x15, - 0xec, 0x15, 0xec, 0x95, 0x9b, 0xbd, 0x22, 0x00, 0x0a, 0xf2, 0x9a, 0x1b, 0x26, 0x81, 0x7e, 0x97, - 0x20, 0xaf, 0xcc, 0x22, 0x87, 0x7e, 0x97, 0xa0, 0xae, 0x3b, 0x4c, 0x5d, 0x07, 0x52, 0x58, 0x8e, - 0xec, 0x77, 0xf9, 0x49, 0xeb, 0x74, 0x65, 0x50, 0xc7, 0x3c, 0x50, 0x47, 0xe4, 0xce, 0xee, 0x28, - 0x75, 0x44, 0xee, 0x6c, 0x16, 0xa9, 0xe3, 0x43, 0x10, 0x78, 0xc2, 0xf6, 0x4d, 0x94, 0x0c, 0x97, - 0xf3, 0x62, 0x9e, 0x33, 0x3d, 0x22, 0xfb, 0xd4, 0xf7, 0x83, 0x71, 0xf7, 0x0e, 0x9e, 0x49, 0xd9, - 0xd2, 0x79, 0x12, 0x3d, 0xbb, 0x1f, 0x0f, 0xe5, 0x2a, 0x06, 0x7d, 0xe1, 0x8f, 0x67, 0x6b, 0x59, - 0xbe, 0x50, 0xff, 0x04, 0xe1, 0x57, 0xcb, 0xf5, 0xa5, 0xb2, 0x7d, 0x47, 0x14, 0x17, 0xdf, 0x90, - 0x4b, 0xef, 0x14, 0x47, 0x4a, 0xa7, 0xe8, 0xc9, 0xbe, 0x2c, 0x3a, 0x81, 0x2f, 0x55, 0x68, 0xbb, - 0xbe, 0xe8, 0x8c, 0x27, 0x76, 0xa9, 0x81, 0xef, 0x0b, 0x4f, 0xc6, 0x7f, 0x17, 0xfb, 0x95, 0xbe, - 0x35, 0x7e, 0x69, 0xd9, 0x4a, 0x85, 0xee, 0xc3, 0x40, 0x09, 0x19, 0xbd, 0xdb, 0x0f, 0xdd, 0x9e, - 0x1d, 0x3e, 0x8f, 0xbf, 0xb5, 0xf4, 0xc6, 0xf8, 0xe6, 0x68, 0x15, 0x1b, 0x9d, 0x04, 0x11, 0x4a, - 0x0f, 0x4f, 0x8b, 0x74, 0xce, 0xd6, 0xe8, 0x4c, 0xd0, 0x90, 0x0d, 0x12, 0x72, 0x42, 0x41, 0x03, - 0x10, 0x90, 0x1b, 0xfa, 0x19, 0x83, 0x7c, 0xc6, 0xa0, 0x9e, 0x19, 0x88, 0x97, 0x6d, 0x7b, 0xca, - 0x06, 0xe5, 0x0c, 0xcc, 0xf1, 0xe4, 0x9c, 0xdf, 0x39, 0x3b, 0xb7, 0x93, 0x6d, 0xf8, 0x66, 0x36, - 0x0d, 0xb1, 0x54, 0xb6, 0x62, 0xb4, 0xc4, 0xe3, 0xe5, 0x78, 0x4c, 0x71, 0x99, 0xcb, 0x14, 0x57, - 0x60, 0x8a, 0x61, 0x8a, 0x61, 0x8a, 0x73, 0x65, 0x8a, 0xcf, 0x5c, 0x9e, 0x52, 0x9e, 0x82, 0x2d, - 0x65, 0xe0, 0xb8, 0xb6, 0x12, 0x9d, 0x28, 0x81, 0xc2, 0x92, 0x42, 0x4a, 0x37, 0xf0, 0x25, 0xbf, - 0x33, 0x3d, 0xf1, 0x4e, 0xe0, 0x5c, 0xcf, 0x9a, 0x1a, 0x37, 0xa8, 0xce, 0x4d, 0xa9, 0x75, 0xe3, - 0xea, 0xdd, 0xb8, 0x9a, 0x37, 0xab, 0xee, 0x79, 0xd4, 0x3e, 0x93, 0xfa, 0xe7, 0x67, 0x64, 0x06, - 0x99, 0x99, 0x09, 0x86, 0xb6, 0x8a, 0xa9, 0x25, 0xfd, 0x4f, 0xba, 0x8f, 0xbe, 0xed, 0xb9, 0xfe, - 0xa3, 0xd5, 0x0f, 0x03, 0x15, 0x38, 0x81, 0x27, 0x8b, 0x91, 0x81, 0x52, 0xa2, 0x38, 0xb1, 0x51, - 0x93, 0x17, 0x45, 0x2f, 0x70, 0x6c, 0xcf, 0x72, 0xfd, 0x8e, 0xf8, 0x5e, 0xc8, 0x95, 0x24, 0x5e, - 0xb8, 0x52, 0x9d, 0x2a, 0x15, 0xf2, 0x4a, 0xe3, 0xa5, 0xeb, 0x37, 0x3d, 0x31, 0x52, 0x26, 0x23, - 0x40, 0xe2, 0x0f, 0x3c, 0x8f, 0x51, 0x36, 0x2e, 0xed, 0xef, 0xe6, 0x16, 0xbf, 0x0e, 0x3b, 0x22, - 0x14, 0x9d, 0x8f, 0xcf, 0xf1, 0xd2, 0xc8, 0x07, 0x79, 0xf3, 0xa3, 0x73, 0x64, 0xbf, 0x6b, 0xf5, - 0x84, 0x0a, 0x5d, 0x87, 0x1f, 0xc5, 0xce, 0x2e, 0x0e, 0xe0, 0x0a, 0xe0, 0x0a, 0xe0, 0x0a, 0xe0, - 0x0a, 0xe0, 0xca, 0x78, 0x62, 0x07, 0xae, 0xaf, 0xea, 0x55, 0x03, 0xb8, 0xf5, 0x08, 0x15, 0x05, - 0x24, 0x00, 0x10, 0x15, 0x05, 0xa8, 0x28, 0x60, 0x15, 0x39, 0x54, 0x14, 0xec, 0x97, 0x8f, 0xaa, - 0xd5, 0x7a, 0xa3, 0x5a, 0x2d, 0x35, 0x0e, 0x1b, 0xa5, 0xe3, 0x5a, 0xad, 0x5c, 0x2f, 0xa3, 0xc7, - 0x5a, 0xee, 0x56, 0x43, 0x91, 0xc1, 0x9a, 0xa4, 0x52, 0xb9, 0xe2, 0x21, 0x14, 0xf6, 0x57, 0x13, - 0x7d, 0xd6, 0x16, 0x6f, 0x00, 0xe4, 0x12, 0xe4, 0x12, 0xe4, 0x12, 0xe4, 0x12, 0xe4, 0xd2, 0x80, - 0x12, 0xb6, 0x22, 0x2d, 0xec, 0xfa, 0x8f, 0x26, 0xe2, 0x23, 0x55, 0xc6, 0x35, 0x9b, 0xfe, 0xa0, - 0x37, 0x7a, 0xd4, 0x8c, 0x40, 0x7c, 0xb6, 0x29, 0xcb, 0xed, 0xe9, 0xd5, 0xd9, 0xf5, 0x65, 0x01, - 0x38, 0xe5, 0xcd, 0x0f, 0x4f, 0x7c, 0xef, 0x7b, 0xae, 0xe3, 0xaa, 0xa8, 0x02, 0xc0, 0x62, 0xc9, - 0x73, 0x5f, 0x3a, 0x25, 0x2b, 0xee, 0x01, 0x68, 0x05, 0x68, 0x05, 0x68, 0x05, 0x68, 0x05, 0x68, - 0x85, 0xf1, 0xc4, 0x22, 0x87, 0xe3, 0x43, 0x94, 0x78, 0xdf, 0xb1, 0xe6, 0x2c, 0x92, 0x5c, 0xf5, - 0x26, 0x5f, 0xa2, 0x7e, 0xbe, 0xf0, 0xc6, 0x53, 0xe0, 0x75, 0x0c, 0xb6, 0x0d, 0x9c, 0x5f, 0x9e, - 0xbf, 0x6b, 0x60, 0x09, 0xc8, 0x26, 0x17, 0xc8, 0x06, 0x5d, 0x03, 0x77, 0x14, 0xd9, 0xa0, 0x6b, - 0x60, 0x16, 0x91, 0x0d, 0xba, 0x06, 0x52, 0xfd, 0x41, 0x8c, 0x9f, 0x75, 0x79, 0xc4, 0xf8, 0x11, - 0xe3, 0x37, 0x24, 0x72, 0xe8, 0x1a, 0x98, 0xbb, 0xd5, 0x10, 0xd0, 0x7f, 0xbb, 0x18, 0x9a, 0x71, - 0x8d, 0xc3, 0x19, 0x9e, 0x1b, 0xca, 0x08, 0x67, 0xf8, 0x8e, 0x52, 0x46, 0x38, 0xc3, 0xb3, 0x48, - 0x19, 0xa5, 0x0a, 0x0d, 0xc5, 0xeb, 0x8f, 0x60, 0x95, 0xdf, 0xfc, 0xcc, 0xa2, 0x88, 0xb1, 0x13, - 0xf4, 0xfa, 0x83, 0x71, 0x63, 0x3f, 0xab, 0x27, 0xd4, 0x53, 0xd0, 0xe1, 0x37, 0xd4, 0x49, 0x37, - 0xc2, 0xef, 0x62, 0x8e, 0x35, 0x8e, 0x3a, 0xb9, 0xb8, 0xfe, 0x74, 0x7a, 0x71, 0xf1, 0x57, 0xfb, - 0xd3, 0xf5, 0xe5, 0xcd, 0x97, 0xbb, 0xe6, 0x19, 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, - 0x70, 0x04, 0xe7, 0x89, 0x75, 0x3b, 0xc2, 0x57, 0xae, 0x7a, 0x36, 0x14, 0x58, 0xe7, 0xf4, 0x40, - 0x9f, 0xc7, 0x3f, 0xf5, 0xa3, 0x2d, 0x0d, 0xe8, 0x8b, 0xc9, 0x03, 0xbf, 0x39, 0xbd, 0xfb, 0x23, - 0xb6, 0x79, 0xa7, 0x77, 0xe7, 0xd7, 0x57, 0xed, 0xcb, 0xe6, 0xdd, 0x1f, 0xd7, 0x67, 0xdc, 0xda, - 0x23, 0x72, 0x9b, 0x49, 0x76, 0x7f, 0xfc, 0xbe, 0x11, 0x9f, 0xfc, 0xdc, 0x06, 0x34, 0xff, 0xe7, - 0xae, 0x79, 0x7b, 0x15, 0x41, 0x8f, 0x7f, 0x7f, 0x69, 0xde, 0x9e, 0x37, 0xcf, 0x0a, 0xbb, 0xe0, - 0x24, 0x36, 0xfe, 0xd4, 0x6f, 0x2e, 0xce, 0x3f, 0x9d, 0xdf, 0x5d, 0xfc, 0xd5, 0x3e, 0x6b, 0xfe, - 0x76, 0x7e, 0x85, 0xa7, 0xce, 0xf1, 0xd4, 0x97, 0x30, 0x76, 0xce, 0x7d, 0xd3, 0xad, 0xbc, 0xe1, - 0x8f, 0x7c, 0xb2, 0x60, 0x29, 0xc2, 0x6f, 0x26, 0x8a, 0xce, 0x92, 0x6e, 0x04, 0xcc, 0x13, 0xcc, - 0x13, 0xcc, 0x13, 0xcc, 0x13, 0xcc, 0x93, 0x93, 0x79, 0xf6, 0x2d, 0xbb, 0xd3, 0x09, 0x85, 0x94, - 0x26, 0x88, 0xe7, 0x31, 0xe3, 0x9a, 0xf1, 0x33, 0xce, 0x7d, 0xe6, 0xd3, 0xeb, 0xce, 0x7e, 0xab, - 0x1a, 0xd8, 0xdb, 0xa5, 0x3d, 0x3e, 0x32, 0xb0, 0xf6, 0x8d, 0xad, 0x94, 0x08, 0x7d, 0x23, 0xc4, - 0x3a, 0xba, 0x81, 0xff, 0xbc, 0x7b, 0x77, 0x5f, 0xb2, 0x8e, 0x5b, 0x2f, 0xf7, 0x65, 0xeb, 0xb8, + 0x09, 0xb4, 0x09, 0x09, 0x4f, 0x7b, 0xc2, 0x87, 0x2a, 0x24, 0x3c, 0x2d, 0x25, 0x61, 0xa0, 0xc4, + 0xc3, 0xbe, 0x98, 0x06, 0x25, 0x1e, 0x4a, 0x4b, 0x87, 0x10, 0xc8, 0x2e, 0x86, 0xee, 0x20, 0x90, + 0x4d, 0xb2, 0x20, 0x10, 0xc8, 0x86, 0x22, 0x03, 0x45, 0x06, 0x8a, 0x0c, 0x14, 0x19, 0x28, 0x32, + 0x50, 0x64, 0xa0, 0xc8, 0x40, 0x91, 0x81, 0x22, 0x53, 0x43, 0x20, 0x1b, 0x81, 0x6c, 0xad, 0x32, + 0x1b, 0x02, 0xd9, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, + 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0xa0, 0x4d, 0x08, 0x64, 0xa7, 0x6c, 0xb7, 0xb0, 0x40, 0x36, 0x8a, + 0x78, 0xa8, 0x1a, 0xdb, 0xc2, 0xc6, 0xb4, 0xe8, 0x7a, 0x1e, 0xd7, 0xe3, 0x3b, 0x79, 0x33, 0xbe, + 0x91, 0x8a, 0x14, 0xf6, 0x98, 0x32, 0x66, 0x91, 0xc0, 0x43, 0x85, 0xf5, 0x3d, 0x96, 0x3b, 0x42, + 0x99, 0x0f, 0x8d, 0xc4, 0x1a, 0x65, 0x3e, 0x50, 0xe6, 0xe3, 0x27, 0x0d, 0xfd, 0xff, 0xec, 0xbd, + 0x7b, 0x6f, 0xdb, 0x48, 0xf2, 0x36, 0xfa, 0xbf, 0x3f, 0x85, 0x21, 0xec, 0x0b, 0xd8, 0xfb, 0x0b, + 0x63, 0x4b, 0x96, 0xaf, 0xc0, 0x62, 0xa1, 0xd8, 0x9a, 0x8c, 0xce, 0xca, 0x97, 0x63, 0x3b, 0x33, + 0x3b, 0xc7, 0xd1, 0x0a, 0xb4, 0xd4, 0x76, 0xf8, 0x0e, 0x4d, 0x69, 0x49, 0x2a, 0x63, 0xff, 0x12, + 0x7d, 0xf7, 0x03, 0xdd, 0xa8, 0xbb, 0xc5, 0xee, 0xae, 0x6a, 0x92, 0xd2, 0x13, 0x0c, 0x26, 0xb6, + 0x22, 0x36, 0xc9, 0xee, 0xae, 0xa7, 0x9e, 0xba, 0x74, 0x15, 0xca, 0x7c, 0xa4, 0xd4, 0xd7, 0x86, + 0xec, 0xa8, 0x04, 0x7c, 0x69, 0xc8, 0x8e, 0xd2, 0x18, 0x70, 0xa0, 0xe8, 0xbf, 0x39, 0xcf, 0xdf, + 0x4c, 0x75, 0xc1, 0x99, 0xba, 0x17, 0xdc, 0xfd, 0x70, 0xf7, 0x27, 0x07, 0x4d, 0xc6, 0x20, 0xca, + 0x0c, 0x54, 0xf1, 0x38, 0x63, 0xe0, 0xee, 0x9f, 0x07, 0x18, 0xb8, 0xfb, 0x27, 0x1e, 0x1c, 0xee, + 0x7e, 0xf9, 0xfb, 0xc0, 0xdd, 0x9f, 0xda, 0xa5, 0x87, 0xbb, 0x3f, 0x89, 0x51, 0x37, 0xa1, 0x15, + 0xce, 0xd0, 0x25, 0xda, 0xfa, 0xcb, 0x14, 0xd5, 0x9e, 0xbc, 0x15, 0x98, 0x36, 0x98, 0x36, 0x98, + 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0xf6, 0xda, + 0x32, 0xed, 0x41, 0xe0, 0xda, 0x8c, 0x57, 0x7b, 0xc1, 0xbd, 0xc0, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, + 0xc1, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, 0xc1, 0xb5, 0xd7, 0x9c, + 0x6b, 0x1b, 0xf1, 0x6a, 0xcf, 0xdf, 0x0a, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, + 0x1b, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, 0x1b, 0x4c, 0x3b, 0x5d, 0x4c, 0x1b, 0xc7, 0x45, + 0x99, 0x8e, 0x16, 0x4e, 0x1c, 0x4e, 0x43, 0xf9, 0xe3, 0xb8, 0xd4, 0x06, 0xe5, 0x8f, 0x53, 0x6b, + 0x15, 0xe1, 0x80, 0x4f, 0x32, 0x56, 0x0f, 0x0e, 0xf8, 0x90, 0x09, 0x05, 0x0e, 0xf8, 0xc0, 0x41, + 0x03, 0x07, 0x0d, 0x1c, 0x34, 0x70, 0xd0, 0xc0, 0x41, 0x03, 0x07, 0x0d, 0x1c, 0x34, 0x70, 0xd0, + 0xc0, 0x41, 0x93, 0x7a, 0x07, 0x0d, 0x0e, 0xf8, 0x80, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, + 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0x83, 0x69, 0xa7, 0x9c, 0x69, 0xe3, + 0x80, 0x0f, 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, + 0xb8, 0x36, 0xb8, 0x36, 0xb8, 0x36, 0x27, 0xd7, 0xc6, 0x01, 0x1f, 0x30, 0x6d, 0x30, 0x6d, 0x30, + 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x1c, + 0xf0, 0x31, 0x73, 0xc0, 0x07, 0x6d, 0xe1, 0xb8, 0x96, 0x38, 0xe9, 0xa5, 0x4d, 0x45, 0x77, 0xb8, + 0xeb, 0xde, 0xf3, 0x0c, 0xf8, 0xd5, 0x9a, 0xf4, 0x88, 0x33, 0xd0, 0x1d, 0x0e, 0x7d, 0xe1, 0x8c, + 0x1b, 0xd8, 0xe8, 0x0b, 0x87, 0xbe, 0x70, 0xef, 0x0c, 0x84, 0xbe, 0x70, 0x29, 0xf5, 0xb9, 0xe1, + 0xd8, 0x68, 0x02, 0x3e, 0x35, 0x1c, 0x1b, 0xd5, 0x18, 0x10, 0xc7, 0x46, 0x13, 0x80, 0x1e, 0x4e, + 0x08, 0x32, 0x00, 0x45, 0xdc, 0x90, 0x64, 0x0c, 0x9a, 0x8c, 0x41, 0x94, 0x19, 0xa8, 0xe2, 0x71, + 0xca, 0xc0, 0xed, 0x3f, 0x0f, 0x30, 0x70, 0xfb, 0x4f, 0x3c, 0x38, 0xdc, 0xfe, 0xf2, 0xf7, 0x81, + 0xdb, 0x3f, 0xb5, 0x4b, 0x0f, 0xb7, 0x7f, 0x12, 0xa3, 0xe2, 0xd8, 0x28, 0x03, 0xd5, 0x46, 0x82, + 0x0d, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, 0x36, 0x98, + 0x36, 0x98, 0xf6, 0x06, 0xa5, 0xb2, 0x1b, 0x4a, 0x63, 0x07, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, + 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x4e, 0xb1, 0xce, + 0xaa, 0x3a, 0x41, 0x58, 0x0a, 0x43, 0x9f, 0x47, 0x6f, 0x5d, 0x3a, 0x5e, 0xd9, 0x15, 0x3d, 0x5a, + 0xd0, 0xdb, 0x0b, 0x5e, 0xc7, 0x75, 0x19, 0xd4, 0xcb, 0xa5, 0xfd, 0xca, 0x7f, 0x93, 0x6b, 0xbf, + 0x29, 0x7c, 0xd1, 0xfc, 0xf4, 0x36, 0xbc, 0x05, 0xce, 0x25, 0xc4, 0xe1, 0x84, 0x6b, 0x74, 0x2e, + 0x01, 0x2d, 0x47, 0xa4, 0x98, 0x2a, 0x5a, 0x8e, 0xa4, 0xd6, 0xc8, 0x45, 0xee, 0x68, 0x32, 0x46, + 0x2c, 0x72, 0x47, 0xc9, 0x84, 0x02, 0xb9, 0xa3, 0xf0, 0xb7, 0xc1, 0xdf, 0x06, 0x7f, 0x1b, 0xfc, + 0x6d, 0xf0, 0xb7, 0xc1, 0xdf, 0x06, 0x7f, 0x1b, 0xfc, 0x6d, 0xf0, 0xb7, 0x31, 0xf9, 0xdb, 0x90, + 0x3b, 0x8a, 0xdc, 0x51, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, 0x30, 0x6d, + 0x30, 0x6d, 0x30, 0x6d, 0x30, 0xed, 0x8d, 0x61, 0xda, 0xc8, 0x1d, 0x05, 0xc3, 0x06, 0xc3, 0x06, + 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0x06, 0xc3, 0xce, 0x2c, 0xc3, + 0x46, 0xee, 0xe8, 0x02, 0x51, 0x45, 0xee, 0x28, 0xe9, 0x48, 0xc8, 0x1d, 0x5d, 0x96, 0x3b, 0x8a, + 0x6a, 0xd6, 0x5c, 0x8b, 0x9b, 0xdc, 0xa2, 0xa6, 0xa2, 0x8e, 0xf5, 0x9a, 0x94, 0xb0, 0x1e, 0xb6, + 0x81, 0x72, 0x82, 0x90, 0xab, 0x82, 0xf5, 0xc4, 0x1d, 0x50, 0xc0, 0xda, 0xa0, 0x8b, 0x04, 0x05, + 0xac, 0x51, 0xc0, 0xfa, 0x9d, 0x81, 0x50, 0xc0, 0x9a, 0x62, 0x40, 0x1c, 0x42, 0xd8, 0xc6, 0x21, + 0x84, 0x8c, 0x91, 0x7c, 0xa6, 0x43, 0x08, 0x86, 0x92, 0xa2, 0x10, 0xae, 0xd9, 0x46, 0xb8, 0x26, + 0x71, 0x40, 0x32, 0x06, 0x4c, 0x66, 0x00, 0x8a, 0xc7, 0x99, 0x86, 0x70, 0xcd, 0x3c, 0xc0, 0x20, + 0x5c, 0x33, 0xed, 0x6d, 0x44, 0xb8, 0x46, 0xf2, 0x3e, 0x08, 0xd7, 0xa4, 0x76, 0xe9, 0x11, 0xae, + 0x49, 0x62, 0xd4, 0x8d, 0x4b, 0x88, 0x0a, 0x0c, 0x65, 0x44, 0x05, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, + 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0xe0, 0xd8, 0x69, + 0xd4, 0x59, 0x48, 0x89, 0x8a, 0x77, 0x13, 0xa4, 0x44, 0xa9, 0x70, 0xc2, 0xb5, 0x48, 0x89, 0x1a, + 0x27, 0x61, 0xa0, 0x9a, 0x5e, 0x5c, 0xa2, 0x8a, 0x6a, 0x7a, 0xa9, 0xb5, 0x71, 0x11, 0xc8, 0x4e, + 0xc6, 0x86, 0x45, 0x20, 0x9b, 0x42, 0x1e, 0x10, 0xc8, 0x86, 0x93, 0x0d, 0x4e, 0x36, 0x38, 0xd9, + 0xe0, 0x64, 0x83, 0x93, 0x0d, 0x4e, 0x36, 0x38, 0xd9, 0xe0, 0x64, 0x83, 0x93, 0x0d, 0x81, 0x6c, + 0x5a, 0xc6, 0x87, 0x40, 0x36, 0x38, 0x36, 0x38, 0x36, 0x38, 0x36, 0x38, 0x36, 0x38, 0x36, 0x38, + 0x36, 0x38, 0x36, 0x38, 0x36, 0x38, 0x36, 0x02, 0xd9, 0x08, 0x64, 0x1b, 0x35, 0x9c, 0x10, 0xc8, + 0xe6, 0x0c, 0x64, 0xa3, 0xb4, 0x07, 0xd7, 0xda, 0x26, 0xb6, 0xa6, 0x49, 0x57, 0xf6, 0xb8, 0xee, + 0x3d, 0x49, 0x0f, 0x85, 0xd7, 0xa5, 0xb0, 0x87, 0x3f, 0x64, 0xfb, 0x8c, 0x95, 0x3d, 0x28, 0x4a, + 0xb2, 0xa0, 0xb4, 0x47, 0xa2, 0x1e, 0x11, 0x94, 0xf6, 0x48, 0x03, 0x88, 0xa3, 0xb4, 0x47, 0x1a, + 0x44, 0x9f, 0x03, 0x02, 0x18, 0xa1, 0x80, 0x0b, 0x12, 0xd8, 0xa1, 0x81, 0x1d, 0x22, 0x78, 0xa1, + 0x22, 0x9d, 0x1c, 0x1f, 0x19, 0x51, 0xc6, 0x1c, 0x3b, 0x88, 0xd6, 0x98, 0x05, 0x22, 0x63, 0x80, + 0x64, 0x0c, 0x98, 0xcc, 0x00, 0x14, 0x8f, 0x2f, 0x0d, 0xd1, 0x9a, 0x79, 0x80, 0x41, 0xb4, 0x66, + 0xda, 0xd9, 0x88, 0x68, 0x8d, 0xe4, 0x7d, 0x10, 0xad, 0x49, 0xed, 0xd2, 0x23, 0x5a, 0x93, 0xc4, + 0xa8, 0x9b, 0x93, 0x11, 0x65, 0xa6, 0x83, 0xff, 0x82, 0x7b, 0x81, 0x6b, 0x83, 0x6b, 0x83, 0x6b, + 0x83, 0x6b, 0x83, 0x6b, 0x83, 0x6b, 0x83, 0x6b, 0x83, 0x6b, 0x83, 0x6b, 0x83, 0x6b, 0xaf, 0x39, + 0xd7, 0x36, 0xd2, 0xc1, 0x7f, 0xfe, 0x56, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, + 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0xe9, 0x62, 0xda, 0x48, 0x57, + 0x67, 0x4a, 0x6d, 0x1e, 0xb4, 0xa2, 0x44, 0xe1, 0xb5, 0x98, 0xa4, 0x06, 0x85, 0xd7, 0x52, 0x6b, + 0x0f, 0x21, 0xcd, 0x30, 0x19, 0x7b, 0x07, 0x69, 0x86, 0x14, 0xf2, 0x80, 0x34, 0x43, 0x38, 0x64, + 0xe0, 0x90, 0x81, 0x43, 0x06, 0x0e, 0x19, 0x38, 0x64, 0xe0, 0x90, 0x81, 0x43, 0x06, 0x0e, 0x19, + 0x38, 0x64, 0x90, 0x66, 0x48, 0xcf, 0xfa, 0x90, 0x66, 0x08, 0xae, 0x0d, 0xae, 0x0d, 0xae, 0x0d, + 0xae, 0x0d, 0xae, 0x0d, 0xae, 0x0d, 0xae, 0x0d, 0xae, 0x0d, 0xae, 0xbd, 0x71, 0x5c, 0x1b, 0x69, + 0x86, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, 0xda, 0x60, + 0xda, 0x60, 0xda, 0x60, 0xda, 0x48, 0x33, 0xe4, 0x4e, 0x33, 0x44, 0x59, 0x5c, 0xae, 0xc5, 0x4d, + 0x6e, 0x51, 0x53, 0x51, 0x17, 0x77, 0x40, 0xa7, 0x32, 0x58, 0x18, 0x37, 0x70, 0xbc, 0xe7, 0x68, + 0x5a, 0xe9, 0x8a, 0xe1, 0x4e, 0x0f, 0x8b, 0x02, 0xb8, 0x06, 0xed, 0x66, 0x14, 0xc0, 0x45, 0x01, + 0xdc, 0x77, 0x06, 0x42, 0x01, 0xdc, 0x94, 0xba, 0xd2, 0x90, 0x99, 0x9e, 0x80, 0xab, 0x0c, 0x99, + 0xe9, 0x1a, 0x03, 0xb2, 0x7b, 0xf0, 0xe1, 0xb7, 0xdf, 0x86, 0xdf, 0x3e, 0x71, 0x10, 0x32, 0x06, + 0x46, 0x66, 0x40, 0x89, 0xc7, 0xab, 0x02, 0xbf, 0xfd, 0x3c, 0xc0, 0xc0, 0x6f, 0x3f, 0xf1, 0xe0, + 0xf0, 0xdb, 0xcb, 0xdf, 0x07, 0x7e, 0xfb, 0xd4, 0x2e, 0x3d, 0xfc, 0xf6, 0x49, 0x8c, 0x0a, 0xbf, + 0x7d, 0x2c, 0xfa, 0x90, 0x51, 0xbf, 0xfd, 0x94, 0xd3, 0x10, 0x25, 0x01, 0xe2, 0x12, 0x19, 0x94, + 0x04, 0x80, 0xe3, 0x05, 0x8e, 0x17, 0x38, 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, 0x8e, 0x17, 0x38, + 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, 0x8e, 0x17, 0x38, 0x5e, 0xe0, 0x78, 0x81, 0xe3, 0x05, 0x8e, + 0x17, 0x38, 0x5e, 0x64, 0x1d, 0x2f, 0x48, 0x92, 0xe4, 0x5a, 0x50, 0xb3, 0x0b, 0x99, 0x44, 0x62, + 0xe4, 0x5d, 0xff, 0x01, 0x06, 0x89, 0x91, 0x99, 0x4f, 0x87, 0xb4, 0x5c, 0x27, 0x08, 0x99, 0x72, + 0x22, 0x07, 0x63, 0x23, 0x31, 0xd2, 0xa0, 0x7d, 0x8c, 0xc4, 0x48, 0x24, 0x46, 0xbe, 0x33, 0x10, + 0x12, 0x23, 0x53, 0xea, 0x32, 0x83, 0x7f, 0x3e, 0x01, 0x97, 0x18, 0xfc, 0xf3, 0x1a, 0x03, 0x0e, + 0x3d, 0x5c, 0x01, 0xbb, 0x83, 0x3e, 0x80, 0x87, 0x1e, 0x1e, 0xfa, 0x04, 0x61, 0xc8, 0x18, 0x1c, + 0x99, 0x81, 0x25, 0x1e, 0xff, 0x09, 0x3c, 0xf4, 0xf3, 0x00, 0x03, 0x0f, 0xfd, 0xc4, 0x83, 0xc3, + 0x43, 0x2f, 0x7f, 0x1f, 0x78, 0xe8, 0x53, 0xbb, 0xf4, 0xf0, 0xd0, 0x27, 0x31, 0x6a, 0x2d, 0xd5, + 0x3a, 0xab, 0xea, 0x04, 0x61, 0x29, 0x0c, 0x7d, 0x1e, 0xbd, 0x75, 0xe9, 0x78, 0x65, 0x57, 0xf4, + 0x68, 0x41, 0x6f, 0x2f, 0x78, 0x1d, 0xd7, 0x65, 0x50, 0x2f, 0x97, 0xf6, 0x2b, 0xff, 0x4d, 0xae, + 0xfd, 0xa6, 0xf0, 0x45, 0xf3, 0xd3, 0xdb, 0xf0, 0x16, 0x08, 0xbb, 0xc4, 0xe1, 0x84, 0xeb, 0x10, + 0x76, 0xe9, 0x3b, 0x84, 0x91, 0xf4, 0x1a, 0x97, 0xa2, 0x22, 0xe9, 0x15, 0x4e, 0x35, 0x38, 0xd5, + 0xe0, 0x54, 0x83, 0x53, 0x0d, 0x4e, 0x35, 0x38, 0xd5, 0xe0, 0x54, 0x83, 0x53, 0x0d, 0x4e, 0x35, + 0x38, 0xd5, 0xe0, 0x54, 0x83, 0x53, 0x0d, 0x4e, 0x35, 0x38, 0xd5, 0xe0, 0x54, 0x83, 0x53, 0x0d, + 0x4e, 0xb5, 0x91, 0x53, 0x0d, 0x09, 0xcd, 0x5c, 0xab, 0x9a, 0xc0, 0x6a, 0x26, 0x9d, 0xd5, 0xdc, + 0x03, 0xdd, 0xec, 0x67, 0x36, 0xfb, 0x43, 0x5a, 0xcf, 0x92, 0xda, 0x4c, 0x51, 0x96, 0x17, 0xb9, + 0xcd, 0x89, 0x3a, 0x3d, 0x90, 0xdb, 0x9c, 0x06, 0xb4, 0x46, 0x6e, 0x73, 0x1a, 0x44, 0x9f, 0x03, + 0x02, 0x18, 0xa1, 0x80, 0x0b, 0x12, 0xd8, 0xa1, 0x81, 0x1d, 0x22, 0x78, 0xa1, 0x22, 0x9d, 0x34, + 0x9e, 0x3c, 0x0c, 0x63, 0xa6, 0x4d, 0x32, 0x1a, 0x24, 0xb3, 0xc2, 0x8e, 0x01, 0xf8, 0xe1, 0x86, + 0x21, 0x63, 0x70, 0x64, 0x0c, 0x96, 0xcc, 0xc0, 0x13, 0x8f, 0xb3, 0x0c, 0xe1, 0x98, 0x79, 0x80, + 0x41, 0x38, 0x66, 0xda, 0x9b, 0x88, 0x70, 0x8c, 0xe4, 0x7d, 0x10, 0x8e, 0x49, 0xed, 0xd2, 0x23, + 0x1c, 0x93, 0xc4, 0xa8, 0x9b, 0xd0, 0x20, 0xd9, 0x48, 0x6b, 0x64, 0x34, 0x45, 0x06, 0xbb, 0x06, + 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x06, 0xbb, 0x46, + 0x8d, 0xbf, 0x78, 0xf4, 0x61, 0x2d, 0xf2, 0x62, 0x06, 0xed, 0x90, 0x71, 0xda, 0x2c, 0x26, 0x9d, + 0xc1, 0x69, 0xb3, 0xd4, 0x5a, 0x42, 0x08, 0x73, 0x26, 0x63, 0xe9, 0x20, 0xcc, 0x49, 0x20, 0x0e, + 0x08, 0x73, 0xc2, 0x11, 0x03, 0x47, 0x0c, 0x1c, 0x31, 0x70, 0xc4, 0xc0, 0x11, 0x03, 0x47, 0x0c, + 0x1c, 0x31, 0x70, 0xc4, 0xc0, 0x11, 0x83, 0x30, 0x27, 0x99, 0xf2, 0x43, 0x98, 0x13, 0xec, 0x1a, + 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, 0xec, 0x1a, + 0x61, 0xce, 0x78, 0xf4, 0x61, 0x8d, 0xc2, 0x9c, 0x38, 0xff, 0xcf, 0xb5, 0xac, 0x49, 0x2c, 0x67, + 0xd2, 0x05, 0x00, 0x06, 0xec, 0x29, 0xa9, 0x0a, 0x00, 0x5b, 0x06, 0x77, 0x0d, 0xd5, 0x6e, 0xe1, + 0xde, 0x25, 0x39, 0x9d, 0xb2, 0x08, 0x72, 0x3b, 0x41, 0x6d, 0xdd, 0xe5, 0x57, 0x4d, 0x61, 0xc5, + 0x34, 0x73, 0x1f, 0x48, 0x72, 0x1d, 0x34, 0x73, 0x1b, 0xb4, 0x73, 0x19, 0x28, 0xdc, 0x1c, 0x84, + 0xee, 0x0c, 0x2a, 0xb7, 0x05, 0xb9, 0x7b, 0x82, 0xdc, 0x0d, 0x41, 0xeb, 0x6e, 0x30, 0x8b, 0x72, + 0xba, 0xb9, 0x03, 0x39, 0x2a, 0x3f, 0x26, 0xb1, 0x5b, 0x81, 0xc8, 0x9c, 0x41, 0x09, 0x95, 0x94, + 0xf9, 0x14, 0x51, 0x42, 0x25, 0x09, 0x1f, 0x60, 0xb4, 0xe3, 0x3a, 0x5e, 0x8f, 0x0f, 0x11, 0xec, + 0xb7, 0x91, 0xae, 0x3c, 0x25, 0x18, 0x6b, 0xf8, 0x9a, 0x34, 0x1e, 0x3d, 0x86, 0xbc, 0x3f, 0x7a, + 0x47, 0x29, 0x83, 0x83, 0x94, 0xc9, 0x31, 0xca, 0x53, 0x9b, 0x91, 0x31, 0x16, 0xc2, 0xea, 0x05, + 0xe3, 0x76, 0x7c, 0x9a, 0x70, 0x79, 0x75, 0x79, 0x2a, 0x61, 0x66, 0x7e, 0x49, 0xf9, 0x1c, 0x9a, + 0x46, 0x56, 0x35, 0xa5, 0x8e, 0xc1, 0x5a, 0x9a, 0x1c, 0x83, 0x0c, 0xba, 0xe1, 0xbf, 0x8e, 0xf7, + 0x5f, 0x1e, 0xdd, 0x90, 0x3f, 0x21, 0x1c, 0xf3, 0xc6, 0x0e, 0x43, 0xe1, 0x7b, 0xe4, 0xea, 0x21, + 0xf7, 0x9f, 0x9d, 0xe2, 0xfe, 0xe9, 0xc3, 0xbe, 0x55, 0xac, 0xfd, 0x2c, 0xee, 0x3f, 0xec, 0x5b, + 0x27, 0xb5, 0x87, 0x7d, 0xeb, 0xb4, 0xf6, 0xf3, 0x21, 0x6f, 0x1d, 0x0c, 0x7e, 0xfc, 0x71, 0xd0, + 0xed, 0xfd, 0x76, 0x3a, 0xfc, 0x2d, 0xff, 0xa1, 0x30, 0xfc, 0x7d, 0xf7, 0xeb, 0xd7, 0x8f, 0x3b, + 0x1a, 0x97, 0xff, 0xfc, 0xfa, 0xf5, 0xef, 0xbb, 0x7f, 0xcb, 0xa5, 0x6d, 0xab, 0x6e, 0x25, 0xfb, + 0x1c, 0x70, 0xcf, 0x51, 0xb9, 0xe7, 0x34, 0x3c, 0xef, 0x0a, 0x3e, 0xb3, 0x2d, 0xc6, 0x49, 0xd7, + 0x9d, 0x6c, 0xbe, 0x49, 0xce, 0x29, 0xb9, 0x0a, 0x63, 0x7a, 0x3d, 0xe5, 0xd6, 0x2e, 0xfe, 0x0a, + 0xc4, 0xfb, 0x66, 0xcc, 0x35, 0xea, 0x59, 0xda, 0xbd, 0xf7, 0x70, 0xbc, 0xa6, 0x88, 0x6b, 0x64, + 0xab, 0x15, 0x4f, 0xd7, 0x2a, 0x8a, 0xae, 0x55, 0xec, 0x5c, 0xad, 0x88, 0x79, 0xdc, 0x09, 0x2c, + 0x75, 0x9e, 0x7b, 0x8f, 0x25, 0x9a, 0x52, 0xda, 0x4d, 0x4e, 0x0a, 0x22, 0x7d, 0xbf, 0xd7, 0x6a, + 0x58, 0xce, 0xd3, 0xd9, 0xc4, 0x9e, 0x9e, 0xf9, 0x60, 0xf8, 0xfb, 0xf4, 0xbe, 0x9f, 0xff, 0x4c, + 0x72, 0xe3, 0xe7, 0x2e, 0x44, 0xd0, 0xf0, 0x9d, 0xf6, 0x50, 0x84, 0x73, 0xa5, 0x66, 0x33, 0xd8, + 0xfe, 0xad, 0x5a, 0xba, 0xda, 0x0e, 0x44, 0x18, 0x3a, 0xde, 0x73, 0xb0, 0x1d, 0xb6, 0xb6, 0x1d, + 0xaf, 0xe9, 0x7c, 0x77, 0x9a, 0x1d, 0xdb, 0xdd, 0x9e, 0xba, 0xbf, 0xec, 0xcd, 0xd4, 0x1c, 0xe1, + 0xca, 0xbe, 0x36, 0x1d, 0xdf, 0x1a, 0x81, 0x2f, 0x4d, 0xd7, 0x77, 0x46, 0xe6, 0x2b, 0x23, 0xf3, + 0x8d, 0xd1, 0xf8, 0xc2, 0x78, 0x55, 0x92, 0xaa, 0xe3, 0xba, 0xef, 0x8d, 0xd1, 0x0f, 0x14, 0x69, + 0xf8, 0x5d, 0x67, 0x65, 0xb1, 0xec, 0x35, 0xdc, 0x56, 0xe0, 0x78, 0xcf, 0xdb, 0x8d, 0x96, 0x17, + 0xda, 0x8e, 0x27, 0xfc, 0xed, 0xa7, 0x96, 0x3f, 0x10, 0xcf, 0x48, 0x08, 0xad, 0xa0, 0x2d, 0x1a, + 0xce, 0x93, 0xd3, 0xf8, 0xea, 0x35, 0xed, 0xd0, 0xde, 0x6e, 0x79, 0x5a, 0x32, 0xaa, 0x29, 0xab, + 0xda, 0x32, 0x4b, 0x21, 0xbb, 0x84, 0x32, 0x4c, 0x25, 0xcb, 0xe4, 0x32, 0x4d, 0x2e, 0xdb, 0xb4, + 0x32, 0xae, 0xc9, 0xfd, 0xb9, 0x31, 0x65, 0x8b, 0x01, 0x7d, 0xb2, 0xad, 0xf8, 0x2b, 0x37, 0xdf, + 0x8b, 0xdb, 0x76, 0xb3, 0xe9, 0x8b, 0x20, 0xd8, 0x7e, 0xb2, 0x5f, 0x1c, 0xf7, 0x6d, 0x7b, 0x40, + 0xc5, 0x3b, 0x7e, 0x9f, 0xe0, 0xf7, 0xa0, 0xe7, 0xab, 0xb7, 0x71, 0xba, 0xdf, 0x69, 0x43, 0xf3, + 0x2f, 0x40, 0x05, 0xa7, 0xbd, 0x36, 0x7a, 0xdf, 0x69, 0x7f, 0x2f, 0xea, 0xeb, 0xfd, 0xfe, 0x28, + 0x34, 0x7a, 0xff, 0xc6, 0xf6, 0xed, 0x17, 0x11, 0x0a, 0x3f, 0xe8, 0xab, 0xfb, 0xf0, 0x9b, 0xd8, + 0x5e, 0x20, 0x9d, 0x1f, 0xa1, 0xd8, 0xd5, 0x05, 0x14, 0x6a, 0x5d, 0x45, 0x80, 0xa1, 0xd4, 0xb3, + 0xa7, 0xd4, 0x8f, 0xa0, 0xd4, 0xa1, 0xd4, 0x37, 0x52, 0xa9, 0x1f, 0x91, 0x28, 0xf5, 0x23, 0x56, + 0xa5, 0x7e, 0x04, 0xa5, 0x0e, 0xa5, 0x0e, 0xa5, 0x4e, 0xa2, 0xd4, 0x63, 0x7d, 0xb3, 0x16, 0xd7, + 0xf7, 0xaf, 0x16, 0xd8, 0x62, 0x09, 0x68, 0x49, 0xec, 0xba, 0x58, 0x31, 0xac, 0x78, 0x7b, 0x64, + 0xf5, 0x7c, 0xbe, 0xff, 0x8d, 0x15, 0x50, 0x2f, 0x3b, 0xc3, 0x54, 0x33, 0xfb, 0xfe, 0xcb, 0x2f, + 0x7f, 0xa5, 0xc5, 0xff, 0xb2, 0xe4, 0x25, 0x47, 0xb1, 0xb7, 0xfe, 0x3a, 0x2c, 0xf9, 0x4a, 0xac, + 0x50, 0x9b, 0x54, 0x68, 0x4d, 0x2a, 0x94, 0x16, 0x2f, 0x74, 0xb6, 0xec, 0xfd, 0xe2, 0x85, 0xc6, + 0xde, 0x5f, 0xd5, 0xf8, 0x64, 0x79, 0x85, 0x00, 0x2c, 0x8c, 0x61, 0xd9, 0xcd, 0x66, 0xef, 0x77, + 0xdb, 0xdd, 0x2e, 0x87, 0xdf, 0x84, 0xef, 0x89, 0x30, 0x72, 0x94, 0xcf, 0x50, 0xe0, 0xb0, 0x35, + 0xc9, 0x80, 0xb7, 0x5f, 0x5a, 0x4d, 0xe1, 0xae, 0xba, 0x63, 0x3c, 0x75, 0x1b, 0x5b, 0xad, 0xca, + 0xa8, 0xcf, 0x49, 0x35, 0x29, 0xc2, 0x38, 0xc7, 0x7c, 0x64, 0xf5, 0xa1, 0xb2, 0xde, 0x53, 0xd6, + 0x6f, 0xb3, 0x7a, 0xac, 0xf7, 0x5e, 0xcc, 0xf0, 0x13, 0x97, 0x59, 0xe6, 0xc4, 0x70, 0xfb, 0xc4, + 0x9f, 0xbe, 0xd1, 0x02, 0x45, 0x57, 0xc6, 0x9c, 0x84, 0x99, 0x6d, 0x7c, 0xdf, 0x6a, 0x5b, 0xae, + 0xf8, 0x2e, 0xdc, 0x99, 0xf0, 0xcf, 0x68, 0xd8, 0xe9, 0x6d, 0xfc, 0xd5, 0xb3, 0xbd, 0xe6, 0xb6, + 0xcc, 0x31, 0x25, 0x49, 0xce, 0x28, 0xcd, 0x11, 0x55, 0x38, 0xa1, 0xfc, 0xe6, 0xd6, 0x25, 0x7d, + 0xda, 0x24, 0x4f, 0x9b, 0xd4, 0x29, 0x6d, 0x7e, 0x39, 0xd6, 0xa3, 0xad, 0xcb, 0xb7, 0x14, 0xc4, + 0x2c, 0x49, 0xf4, 0xaf, 0x96, 0x3e, 0xcf, 0xa1, 0x7c, 0xdf, 0xe6, 0x8a, 0x46, 0xed, 0xe1, 0x7c, + 0xc7, 0x15, 0x19, 0x01, 0x7a, 0xd7, 0x7e, 0x5e, 0x4b, 0xa0, 0xef, 0xbd, 0x57, 0x5a, 0x80, 0xde, + 0x7e, 0x7e, 0xf6, 0xc5, 0xb3, 0x1c, 0xe7, 0x8f, 0xd6, 0x68, 0xf2, 0x62, 0x35, 0xb8, 0xbf, 0xee, + 0xff, 0x34, 0xf0, 0x0e, 0xb8, 0xad, 0x67, 0xa7, 0x61, 0xbb, 0xdb, 0x13, 0xb4, 0xc4, 0x17, 0x6d, + 0x5f, 0x04, 0xc2, 0x0b, 0x1d, 0xef, 0xf9, 0xab, 0x37, 0xba, 0x5d, 0x6c, 0x8f, 0x5d, 0xda, 0xc1, + 0x3e, 0xde, 0x06, 0x5f, 0x3f, 0xb0, 0x8f, 0x25, 0x00, 0x00, 0xfb, 0x77, 0xc1, 0x7e, 0x1a, 0xe8, + 0x23, 0x1a, 0xd4, 0x97, 0x24, 0xbf, 0xd5, 0x09, 0x45, 0x73, 0x26, 0x65, 0x26, 0xc8, 0x08, 0xea, + 0xc7, 0xcc, 0x59, 0xc9, 0x1e, 0xec, 0xc7, 0xcb, 0x29, 0x31, 0x84, 0xfb, 0x83, 0x2d, 0x62, 0x49, + 0xa5, 0x7f, 0x45, 0xab, 0x34, 0x79, 0x31, 0x2d, 0xcd, 0x1f, 0xee, 0xdc, 0xde, 0xc8, 0x13, 0x3b, + 0xf7, 0xe3, 0xf6, 0xf6, 0xfd, 0x37, 0x11, 0x88, 0xaf, 0xde, 0x02, 0x1d, 0x61, 0xfb, 0x62, 0xdb, + 0x76, 0x83, 0xd6, 0xf6, 0x9f, 0x5e, 0xeb, 0x2f, 0x6f, 0xdb, 0x0e, 0xb6, 0xef, 0x7e, 0xab, 0x6c, + 0xef, 0x04, 0x7f, 0x39, 0x61, 0xe3, 0x5b, 0x6f, 0x2c, 0xc7, 0x0f, 0x3b, 0xb6, 0x3b, 0x61, 0xee, + 0xee, 0x7e, 0xd8, 0xae, 0xdc, 0x7e, 0xda, 0xde, 0xe9, 0x7d, 0xf0, 0xec, 0xdb, 0xbd, 0x1b, 0xf6, + 0xee, 0xeb, 0x78, 0xcf, 0x7d, 0x39, 0x7a, 0xf4, 0x9d, 0xe6, 0xb3, 0xe3, 0x3d, 0xef, 0x7e, 0xd8, + 0xbe, 0xfd, 0xad, 0xf2, 0xd5, 0xdb, 0x59, 0x28, 0x4e, 0xbb, 0x6b, 0xa2, 0x83, 0x24, 0x53, 0xc4, + 0xd6, 0x47, 0x09, 0xc9, 0xa5, 0x78, 0x41, 0x0b, 0x2d, 0x73, 0x38, 0x39, 0x43, 0x8f, 0xd3, 0xdd, + 0xf5, 0x55, 0xf9, 0x7e, 0xef, 0xee, 0xe2, 0xd7, 0xb1, 0xcb, 0xa9, 0x9f, 0x9a, 0x19, 0xb6, 0xbe, + 0x7a, 0xad, 0xa0, 0x91, 0x29, 0x17, 0x93, 0xeb, 0x78, 0xc2, 0x6a, 0xb4, 0x5e, 0xd6, 0xd3, 0xfc, + 0x18, 0xbd, 0x5c, 0x5a, 0x74, 0x51, 0xd0, 0x52, 0xf2, 0x34, 0x0d, 0x2e, 0x53, 0xd3, 0x3f, 0x17, + 0xbd, 0x9d, 0xe9, 0x0b, 0xb7, 0x0f, 0xfe, 0x61, 0x6b, 0xbc, 0x79, 0xb7, 0xa5, 0xd3, 0x02, 0x52, + 0x6f, 0x64, 0xc4, 0xdf, 0xcb, 0x6b, 0x68, 0x69, 0xc4, 0xde, 0xeb, 0xa9, 0x01, 0xfa, 0x85, 0xff, + 0x52, 0x5b, 0x16, 0x92, 0x88, 0x17, 0x4f, 0x52, 0x8f, 0x23, 0xbd, 0xb3, 0x80, 0xcb, 0xc2, 0x6e, + 0x8b, 0xe7, 0x7a, 0xfe, 0xbd, 0xa6, 0x3f, 0x99, 0x41, 0x93, 0x55, 0x6f, 0x26, 0xfb, 0x46, 0xd3, + 0x0f, 0x35, 0xbe, 0xf5, 0xc4, 0x6d, 0x73, 0xae, 0xdd, 0x68, 0xcf, 0xdd, 0x6c, 0x5c, 0x41, 0xbc, + 0xf7, 0xaf, 0x33, 0x0f, 0xb9, 0x58, 0xf4, 0x97, 0x8a, 0xf8, 0x7b, 0xa2, 0x3c, 0xed, 0x17, 0x68, + 0x2c, 0x4a, 0x05, 0x58, 0x25, 0x96, 0xb1, 0xc5, 0x2f, 0xb6, 0x98, 0xcd, 0x1b, 0xee, 0x8d, 0x05, + 0xc1, 0xf6, 0xf7, 0x17, 0x72, 0x99, 0x1a, 0xc8, 0x35, 0x46, 0xb3, 0xb4, 0xe4, 0x6d, 0x46, 0x13, + 0x32, 0xfc, 0xde, 0xb2, 0xa0, 0xe3, 0xbb, 0xe8, 0xbb, 0x12, 0x6d, 0xe3, 0xa0, 0x6b, 0x8c, 0xa5, + 0x91, 0x45, 0x4e, 0x69, 0xa4, 0x94, 0x46, 0xc6, 0x78, 0x4b, 0xf7, 0x3e, 0xea, 0x2c, 0x0b, 0x84, + 0xae, 0xd2, 0xec, 0xb9, 0xe0, 0x2d, 0x08, 0xc5, 0x8b, 0xd5, 0xf6, 0x9d, 0x96, 0xef, 0x84, 0x6f, + 0xab, 0xa7, 0x23, 0xd2, 0xe9, 0x33, 0x17, 0xc6, 0xa3, 0x8b, 0xfb, 0x89, 0x3b, 0xaa, 0x1b, 0xed, + 0x35, 0xf5, 0x54, 0x37, 0xda, 0xdc, 0x34, 0x31, 0x76, 0x59, 0xa6, 0x71, 0xd9, 0x25, 0xc7, 0x0b, + 0xf3, 0x71, 0x52, 0xd4, 0x24, 0x0a, 0x03, 0x49, 0x16, 0xfc, 0x91, 0x3b, 0x27, 0xac, 0x40, 0xa4, + 0x94, 0xaa, 0xb4, 0x44, 0xd5, 0x57, 0x64, 0xaf, 0xd3, 0x28, 0xa9, 0xd2, 0x95, 0x3b, 0xf5, 0x6c, + 0x7c, 0x2a, 0x8e, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x4e, 0x07, 0x11, 0x7d, 0xac, 0x19, 0xc9, 0xd8, + 0xd1, 0xa7, 0x8f, 0x3d, 0x84, 0xd8, 0xeb, 0xff, 0xef, 0xbd, 0x0e, 0xb2, 0x0b, 0xc8, 0xdf, 0x02, + 0x7a, 0x33, 0xc1, 0xd6, 0x56, 0x92, 0x82, 0x95, 0x66, 0x1a, 0x88, 0x41, 0x1a, 0x89, 0xc1, 0xd8, + 0xae, 0x88, 0x4d, 0x09, 0x62, 0xfb, 0xa7, 0x52, 0x13, 0xb5, 0x06, 0x19, 0xe0, 0xf7, 0x19, 0xad, + 0x30, 0x1e, 0xd4, 0x8c, 0x89, 0xcc, 0xb9, 0x76, 0xe2, 0x6d, 0xb5, 0x35, 0x74, 0xeb, 0xc4, 0xda, + 0x8a, 0x92, 0x3a, 0x39, 0xae, 0x27, 0x51, 0xf2, 0x74, 0xc6, 0x00, 0xc0, 0xbe, 0xdb, 0xae, 0xfc, + 0xbc, 0x4f, 0x41, 0x60, 0x6f, 0x04, 0xe9, 0x83, 0x51, 0x4f, 0x76, 0xc7, 0xed, 0x4f, 0xda, 0x5d, + 0xf5, 0xfa, 0x77, 0xc5, 0x73, 0x4e, 0xfb, 0x19, 0x3b, 0xe7, 0x24, 0x29, 0x15, 0xba, 0xd2, 0x41, + 0x26, 0x25, 0x64, 0xd2, 0x42, 0x23, 0x35, 0x72, 0xd2, 0xa3, 0x60, 0x0e, 0x6c, 0x6b, 0x15, 0xe5, + 0x9d, 0xf2, 0xcb, 0x59, 0x6d, 0xe1, 0x3b, 0xad, 0xa6, 0x15, 0xf6, 0x46, 0x53, 0x58, 0xfa, 0x11, + 0xce, 0x2b, 0x94, 0xac, 0xcc, 0x95, 0xbd, 0xce, 0x4b, 0xef, 0x0d, 0x52, 0x70, 0x6e, 0x73, 0x30, + 0x17, 0x2f, 0xad, 0xa6, 0x50, 0xc7, 0x9a, 0xf1, 0x10, 0xea, 0x60, 0x53, 0x3a, 0xbf, 0xaf, 0xfc, + 0x56, 0x06, 0xdc, 0x00, 0x6e, 0xd6, 0x14, 0x6e, 0xec, 0x46, 0xe8, 0x7c, 0x77, 0xc2, 0xb7, 0x8d, + 0x07, 0x9c, 0x61, 0xf0, 0x47, 0x11, 0x6b, 0xde, 0x39, 0x29, 0x04, 0x94, 0x00, 0x4a, 0x64, 0x18, + 0x25, 0x1e, 0xed, 0x40, 0x8c, 0x03, 0x91, 0x96, 0x2f, 0x9e, 0x74, 0x50, 0xe2, 0x58, 0xe1, 0xda, + 0x9b, 0xc8, 0x59, 0x17, 0xaf, 0x28, 0x43, 0x5f, 0x16, 0x53, 0x80, 0x28, 0xc3, 0x08, 0x90, 0xd3, + 0xb4, 0x5e, 0xec, 0x86, 0x3a, 0xb4, 0x4c, 0x0f, 0x03, 0x8c, 0x01, 0xc6, 0xac, 0x1d, 0xc6, 0xbc, + 0xd8, 0x0d, 0x6b, 0x58, 0x48, 0x41, 0x07, 0x5c, 0x4e, 0xd4, 0xc0, 0x45, 0xab, 0x00, 0x7a, 0xee, + 0x3f, 0x0f, 0xfb, 0xd6, 0xa9, 0x6d, 0x3d, 0x95, 0xac, 0x5f, 0x6a, 0x3f, 0x0a, 0xdd, 0x9d, 0xb3, + 0xe9, 0xdf, 0x77, 0x7f, 0x1c, 0x76, 0x15, 0x6a, 0x91, 0xd7, 0xd2, 0x83, 0x5f, 0xb1, 0x43, 0xdf, + 0xab, 0x10, 0x2c, 0x66, 0x28, 0x1c, 0x18, 0x06, 0x0c, 0xcb, 0x20, 0x86, 0xc5, 0x0e, 0xe5, 0x2f, + 0xdb, 0xdf, 0x0a, 0x3d, 0x7f, 0x34, 0x7b, 0xfb, 0x68, 0xd4, 0x7a, 0xa1, 0xe8, 0xd5, 0x43, 0xd5, + 0xca, 0x4d, 0x31, 0x55, 0x60, 0x6e, 0x1c, 0xc2, 0x6e, 0x2c, 0x1a, 0x7d, 0x49, 0x48, 0x7a, 0xe6, + 0x50, 0x4f, 0xad, 0x42, 0xea, 0x01, 0xeb, 0xf4, 0x1a, 0xaa, 0x75, 0x53, 0xcb, 0x44, 0xa3, 0x00, + 0xfa, 0x5a, 0x37, 0xe3, 0x54, 0x88, 0x85, 0x05, 0x59, 0xde, 0xcb, 0x8f, 0x90, 0x7f, 0xd5, 0x18, + 0xaf, 0x99, 0x7b, 0x11, 0x2f, 0x8f, 0xc2, 0x0f, 0xe4, 0x83, 0xa4, 0xa3, 0x0b, 0x99, 0xa3, 0xa4, + 0x05, 0x44, 0x49, 0x49, 0xa9, 0x43, 0xa6, 0xa3, 0xa4, 0x83, 0x3d, 0xa7, 0x4e, 0x97, 0x87, 0xd7, + 0x6f, 0x46, 0x29, 0x47, 0xb0, 0xe4, 0x0c, 0xb1, 0x64, 0xf5, 0x72, 0x8e, 0xb1, 0x93, 0xa5, 0x56, + 0xee, 0x19, 0xd5, 0xda, 0xaa, 0x44, 0xd4, 0x28, 0x75, 0xa5, 0x16, 0x15, 0x05, 0x88, 0x4a, 0x90, + 0xc8, 0x05, 0x8a, 0x5c, 0xb0, 0x68, 0x05, 0x4c, 0x93, 0x82, 0x2a, 0xee, 0x19, 0xed, 0x86, 0xbf, + 0xe3, 0xa0, 0x9f, 0xb0, 0x9f, 0xd4, 0x7c, 0xf8, 0x73, 0x9a, 0xe6, 0x58, 0x63, 0x8c, 0x91, 0x4f, + 0xff, 0xe3, 0xc7, 0x41, 0x3b, 0xb5, 0x3d, 0xc9, 0xea, 0x86, 0xfa, 0xcb, 0xd1, 0x55, 0xea, 0x30, + 0x66, 0x87, 0x04, 0x10, 0x26, 0x53, 0xe5, 0x8b, 0x48, 0xcf, 0x2b, 0x53, 0x56, 0xc0, 0x17, 0xe0, + 0x4b, 0x1b, 0xbe, 0x54, 0x79, 0x43, 0x34, 0xc0, 0x28, 0x4b, 0x41, 0x7f, 0x9d, 0xa3, 0x82, 0x4f, + 0xa3, 0x11, 0x3f, 0xa4, 0xc2, 0xd1, 0xa2, 0xcb, 0x2a, 0x28, 0xc5, 0x93, 0x41, 0x4c, 0xa9, 0xc5, + 0x95, 0x4d, 0x6c, 0xd9, 0xc4, 0x97, 0x47, 0x8c, 0xf5, 0xc4, 0x99, 0xc0, 0x5b, 0x49, 0xc3, 0x4e, + 0xe6, 0x59, 0x0a, 0x45, 0x6a, 0xd2, 0x52, 0xd5, 0x49, 0xd0, 0xce, 0x5b, 0x31, 0x75, 0x89, 0x6e, + 0xdd, 0x74, 0x3c, 0xcc, 0xa3, 0xea, 0x73, 0xf6, 0xa3, 0x2b, 0x08, 0x11, 0x75, 0x72, 0x54, 0xa0, + 0x2a, 0x50, 0x15, 0xa8, 0x9a, 0x32, 0x54, 0x7d, 0x6c, 0xb5, 0x5c, 0xa1, 0xd5, 0x46, 0x71, 0x0e, + 0x4a, 0xf3, 0x19, 0x84, 0xbf, 0x46, 0xcb, 0x75, 0x45, 0x23, 0x74, 0xbc, 0x67, 0x3a, 0xf0, 0x9b, + 0x18, 0x13, 0xd0, 0x07, 0xe8, 0x03, 0xf4, 0x01, 0xfa, 0xd2, 0x09, 0x7d, 0x1d, 0x2f, 0x94, 0x09, + 0xa4, 0xc6, 0x00, 0xbe, 0xe1, 0x88, 0x34, 0xb0, 0x97, 0x07, 0xec, 0x01, 0xf6, 0x36, 0x15, 0xf6, + 0x74, 0xdd, 0x64, 0xd1, 0x40, 0x7d, 0xf3, 0x59, 0xf8, 0x7e, 0x8b, 0x40, 0xd2, 0x17, 0xdb, 0xe6, + 0xc3, 0xc1, 0x89, 0xd6, 0x92, 0x86, 0xf3, 0x90, 0x83, 0x00, 0x07, 0x18, 0x30, 0x82, 0x02, 0x17, + 0x38, 0xb0, 0x83, 0x04, 0x3b, 0x58, 0xf0, 0x82, 0x06, 0x0d, 0x78, 0x10, 0x81, 0x08, 0x3d, 0x87, + 0x5a, 0xa6, 0xf2, 0x8f, 0x8a, 0x94, 0x7b, 0x76, 0x08, 0x01, 0x27, 0x84, 0x43, 0xea, 0x25, 0xc7, + 0x2e, 0xfb, 0x43, 0x2b, 0x53, 0xdb, 0x54, 0xc9, 0xb4, 0x86, 0xb0, 0x75, 0x6e, 0x78, 0xa2, 0xe4, + 0xdb, 0xa5, 0xe3, 0x13, 0x66, 0x8d, 0x32, 0x4b, 0xdc, 0xf4, 0x92, 0xda, 0xaf, 0x99, 0x5f, 0xd2, + 0xfc, 0x49, 0xb1, 0x78, 0x74, 0x5c, 0x2c, 0xee, 0x1f, 0x1f, 0x1c, 0xef, 0x9f, 0x1e, 0x1e, 0xe6, + 0x8f, 0xf2, 0x87, 0x19, 0x5e, 0xe5, 0xad, 0x74, 0x8e, 0x56, 0xdb, 0x4a, 0xc7, 0xf3, 0x10, 0x48, + 0xc1, 0x80, 0x1a, 0x3a, 0x9e, 0xd5, 0xfe, 0x33, 0xe4, 0x22, 0x9e, 0xa3, 0xd1, 0xc1, 0x3c, 0xc1, + 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, + 0x3c, 0x5b, 0x9d, 0x90, 0x93, 0x7a, 0x46, 0xc3, 0x83, 0x7b, 0x82, 0x7b, 0x82, 0x7b, 0x82, 0x7b, + 0x82, 0x7b, 0x82, 0x7b, 0x82, 0x7b, 0x82, 0x7b, 0x82, 0x7b, 0x82, 0x7b, 0xfa, 0xaf, 0xbc, 0x01, + 0xf7, 0xf1, 0xf8, 0x60, 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x60, + 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x60, 0x9f, 0x21, 0x33, 0xfb, 0x0c, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, + 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0xc1, 0x3e, 0x23, + 0xf6, 0xd9, 0xf1, 0xfe, 0xf4, 0x5a, 0x7f, 0x79, 0xbc, 0x14, 0x74, 0xe6, 0x26, 0xe0, 0xa1, 0xe0, + 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xe0, 0xa1, 0xd9, + 0xe5, 0xa1, 0x89, 0x1e, 0xba, 0x57, 0xec, 0x9e, 0xb0, 0x74, 0x3c, 0xe5, 0xae, 0x0a, 0xc3, 0x56, + 0x05, 0xc3, 0xbf, 0x87, 0x65, 0x71, 0x89, 0xca, 0x6b, 0x0c, 0x9e, 0x2c, 0xf4, 0x3b, 0x8d, 0x70, + 0xd8, 0xe7, 0x32, 0x57, 0xb5, 0x1b, 0xed, 0x7a, 0x65, 0x74, 0xf7, 0xfa, 0x65, 0xff, 0xae, 0xf5, + 0xf3, 0xd1, 0xfd, 0x32, 0x58, 0xdc, 0xa4, 0xe9, 0x04, 0xa1, 0xef, 0x3c, 0x76, 0x68, 0x2b, 0x3b, + 0x4d, 0x8d, 0x8a, 0xda, 0x4e, 0x06, 0xad, 0x0a, 0x14, 0x39, 0x41, 0x6d, 0xa7, 0x38, 0x3b, 0x0e, + 0xb5, 0x9d, 0xb6, 0x69, 0x7a, 0x2c, 0xcc, 0xcd, 0xac, 0x6e, 0xaf, 0x05, 0x00, 0x1f, 0x80, 0x0f, + 0xc0, 0xc7, 0x07, 0x7c, 0x14, 0xad, 0x99, 0x97, 0x62, 0xe0, 0x31, 0xc1, 0x58, 0xfc, 0xad, 0x9b, + 0xd3, 0x81, 0xbd, 0xad, 0xb6, 0xf0, 0xad, 0x3f, 0x05, 0x61, 0x7d, 0xfa, 0x68, 0x44, 0x20, 0x2f, + 0x90, 0x17, 0xc8, 0x9b, 0x32, 0xe4, 0x55, 0x6e, 0xf6, 0xba, 0x4c, 0x3e, 0x8f, 0x08, 0x86, 0xa2, + 0xf5, 0x3a, 0x13, 0xba, 0xef, 0x39, 0xbc, 0xcc, 0x4c, 0xae, 0x48, 0x2e, 0xaf, 0x32, 0xa7, 0x9f, + 0x91, 0xd0, 0x8b, 0xcc, 0xe2, 0x3d, 0xe6, 0x5e, 0x2a, 0x82, 0xe6, 0xb4, 0x46, 0x97, 0x2b, 0x25, + 0x6e, 0xd7, 0x5a, 0x06, 0x79, 0x56, 0xdb, 0xf6, 0x43, 0x4f, 0xf8, 0x96, 0xd3, 0xa4, 0x63, 0x5a, + 0x13, 0x63, 0x82, 0x6b, 0x81, 0x6b, 0x81, 0x6b, 0xa5, 0x8c, 0x6b, 0xbd, 0xd8, 0x0d, 0xcb, 0x6e, + 0x36, 0x7d, 0x11, 0x04, 0x94, 0xe6, 0xed, 0x09, 0x8d, 0x79, 0x1b, 0x0a, 0xdf, 0x23, 0xe3, 0x5c, + 0xb9, 0xff, 0x3c, 0xec, 0x5b, 0xa7, 0xb6, 0xf5, 0x54, 0xb2, 0x7e, 0xa9, 0xfd, 0x28, 0x74, 0x77, + 0xce, 0xa6, 0x7f, 0xdf, 0xfd, 0x71, 0xd8, 0xfd, 0x5b, 0x6e, 0xa3, 0x91, 0x9f, 0xd4, 0xc8, 0x9e, + 0x1c, 0x14, 0xd8, 0x0f, 0xec, 0x07, 0xf6, 0xc3, 0xce, 0x86, 0x9d, 0x0d, 0x3b, 0x1b, 0x76, 0x36, + 0xec, 0x6c, 0xd8, 0xd9, 0xc2, 0xb7, 0xda, 0x2d, 0x3f, 0xb4, 0x86, 0x9d, 0x2e, 0x69, 0x29, 0x57, + 0x34, 0x32, 0x78, 0x17, 0x78, 0x17, 0x78, 0x17, 0x78, 0x17, 0x78, 0x17, 0x78, 0x17, 0x78, 0x17, + 0x78, 0xd7, 0x66, 0xf3, 0x2e, 0x7a, 0xbe, 0x05, 0x9e, 0x05, 0x9e, 0x05, 0x9e, 0x05, 0x9e, 0x05, + 0x9e, 0x05, 0x9e, 0x05, 0x9e, 0x05, 0x9e, 0x05, 0x9e, 0xb5, 0xbd, 0x9d, 0x0b, 0xde, 0xbc, 0xc6, + 0x37, 0xbf, 0xe5, 0x39, 0xff, 0x4b, 0x73, 0xf2, 0x2f, 0x02, 0xf4, 0xd9, 0x81, 0xc1, 0xba, 0xc0, + 0xba, 0xc0, 0xba, 0x52, 0xc6, 0xba, 0xfa, 0xf5, 0x64, 0x66, 0x24, 0xd5, 0x0a, 0x7b, 0xb7, 0x21, + 0xcc, 0x2f, 0x29, 0x12, 0x8c, 0x55, 0x1e, 0x9a, 0x82, 0xdd, 0x4c, 0x42, 0x6c, 0x10, 0x8a, 0x17, + 0xd2, 0x4c, 0xbd, 0xf1, 0x90, 0x80, 0x55, 0xc0, 0x2a, 0x60, 0x35, 0x65, 0xb0, 0x8a, 0x44, 0x3d, + 0x24, 0xea, 0x6d, 0xe7, 0x42, 0xe7, 0x45, 0xb4, 0x3a, 0x21, 0x1d, 0xea, 0x8f, 0x06, 0x04, 0xe6, + 0x03, 0xf3, 0x81, 0xf9, 0x69, 0xa4, 0xd2, 0x43, 0x09, 0x05, 0x85, 0x26, 0xbb, 0x52, 0x71, 0xa1, + 0xa9, 0x8a, 0x19, 0xd1, 0x16, 0x31, 0x52, 0x93, 0x1a, 0xf9, 0x89, 0x93, 0xbb, 0x42, 0x72, 0x8a, + 0x7b, 0x00, 0xa6, 0x53, 0x12, 0x23, 0x57, 0x75, 0x82, 0xb0, 0x14, 0x86, 0xbe, 0xd2, 0xc2, 0xe4, + 0x2e, 0x1d, 0xaf, 0xec, 0x8a, 0x1e, 0x1c, 0x05, 0xb9, 0xb3, 0x6d, 0xaf, 0xe3, 0xba, 0x1f, 0x14, + 0x06, 0xb1, 0x5f, 0xf5, 0x07, 0xb9, 0xf6, 0x9b, 0xc2, 0x17, 0xcd, 0x4f, 0x6f, 0xc3, 0x21, 0x58, + 0x27, 0x5d, 0x73, 0x3f, 0x53, 0xed, 0x63, 0x05, 0x50, 0x8b, 0x53, 0x6d, 0x4b, 0x4e, 0x30, 0xe2, + 0x6f, 0xef, 0x78, 0xdf, 0x8c, 0xb9, 0x16, 0xaa, 0x6b, 0xa0, 0x3d, 0xf7, 0xf1, 0x66, 0x67, 0xf5, + 0xbb, 0xc6, 0x78, 0xcf, 0xdc, 0x70, 0x99, 0xe2, 0xbd, 0x5d, 0xa4, 0xfc, 0xfa, 0x57, 0xc5, 0x9c, + 0x45, 0x39, 0xfa, 0x29, 0x4d, 0x33, 0x55, 0xe8, 0xa4, 0x06, 0x6d, 0x54, 0xa5, 0x87, 0xda, 0x34, + 0x50, 0x9b, 0xee, 0xe9, 0xd1, 0x3a, 0x5a, 0xc9, 0x92, 0xa6, 0x63, 0x63, 0xda, 0x25, 0xec, 0x27, + 0xb9, 0x72, 0x2f, 0x2a, 0x65, 0x5d, 0xa2, 0xf2, 0x2d, 0x1f, 0x3f, 0xee, 0x0d, 0x44, 0x77, 0x2f, + 0x7e, 0x81, 0x16, 0x1a, 0xc1, 0x1c, 0x10, 0x08, 0x69, 0xc9, 0x1c, 0x5c, 0x26, 0x27, 0x9a, 0x79, + 0x59, 0xd1, 0x2c, 0x40, 0x34, 0xd7, 0x56, 0x34, 0x2f, 0x1c, 0x39, 0xa2, 0x36, 0xe0, 0x85, 0xdf, + 0x6d, 0x57, 0x7e, 0xde, 0xa7, 0x8a, 0xad, 0xf5, 0x46, 0x90, 0x9c, 0xb5, 0x0b, 0xf1, 0x64, 0x77, + 0xdc, 0xfe, 0xa4, 0xdd, 0x55, 0xaf, 0x7f, 0x97, 0xbd, 0x5c, 0xcd, 0x2f, 0xa2, 0xec, 0x07, 0xd1, + 0xf1, 0x7b, 0x10, 0xf8, 0x39, 0x74, 0xfd, 0x1a, 0x64, 0x7e, 0x0c, 0x32, 0xbf, 0x05, 0x8d, 0x9f, + 0x82, 0xd7, 0x76, 0x52, 0xf6, 0x3b, 0x4c, 0xfb, 0x19, 0xda, 0xc2, 0x77, 0x5a, 0x4d, 0x55, 0x37, + 0x83, 0x8e, 0x5b, 0x41, 0xd1, 0x8d, 0x20, 0x41, 0xd9, 0x25, 0x00, 0xbe, 0x3f, 0x17, 0x2f, 0xad, + 0xa6, 0x50, 0xc7, 0x9a, 0xf1, 0x10, 0xea, 0x60, 0x53, 0x3a, 0xbf, 0xaf, 0xfc, 0x56, 0x06, 0xdc, + 0x00, 0x6e, 0xd6, 0x14, 0x6e, 0xec, 0x46, 0xe8, 0x7c, 0x77, 0xc2, 0xb7, 0x8d, 0x07, 0x1c, 0x29, + 0xeb, 0x58, 0xc7, 0x4a, 0x06, 0x4a, 0x00, 0x25, 0x32, 0x84, 0x12, 0x24, 0xf5, 0x57, 0x75, 0xea, + 0xad, 0x1a, 0xa8, 0xaf, 0xca, 0x83, 0x28, 0x51, 0x26, 0x8f, 0xf5, 0x62, 0x37, 0xd4, 0xa1, 0x65, + 0x7a, 0x18, 0x60, 0x0c, 0x30, 0x66, 0xed, 0x30, 0x46, 0x2f, 0xa9, 0x46, 0x27, 0x89, 0x46, 0x3b, + 0x69, 0x86, 0x29, 0x49, 0xa6, 0x96, 0x1e, 0xfc, 0x6a, 0xfb, 0x4e, 0xcb, 0x77, 0xc2, 0x37, 0x6d, + 0x04, 0x8b, 0x06, 0x02, 0x86, 0x01, 0xc3, 0xd6, 0x0e, 0xc3, 0x94, 0x4f, 0xb9, 0x69, 0x9c, 0x6a, + 0xd3, 0x3c, 0xc5, 0xa6, 0x91, 0x3b, 0x41, 0x71, 0x4a, 0x8d, 0x2a, 0x5b, 0x8d, 0xe8, 0x14, 0x1a, + 0xe5, 0x31, 0x26, 0x9d, 0xdc, 0x42, 0x8a, 0x53, 0x65, 0xd4, 0x53, 0x4b, 0x70, 0x6a, 0x8c, 0x74, + 0x7a, 0x0d, 0x25, 0xdb, 0xd4, 0x90, 0xbb, 0xb0, 0x28, 0x77, 0x41, 0x22, 0xe1, 0x29, 0x46, 0x80, + 0x74, 0x4b, 0x63, 0x0e, 0x46, 0x09, 0x4b, 0x31, 0xdc, 0x2f, 0x72, 0xb9, 0x49, 0x4a, 0xb9, 0x48, + 0x4a, 0xb9, 0x47, 0x72, 0xb9, 0x46, 0xab, 0xe6, 0x43, 0x72, 0x2f, 0x28, 0xef, 0x81, 0x5c, 0xac, + 0xb0, 0xf6, 0xf2, 0xe4, 0xa0, 0xf7, 0x77, 0xcf, 0xf2, 0x3d, 0xb1, 0xf8, 0x5f, 0x96, 0xcc, 0x4a, + 0xdc, 0xd9, 0x90, 0x9c, 0x85, 0xc5, 0xcf, 0x3e, 0xff, 0x64, 0x0b, 0x9e, 0x6a, 0x45, 0xa8, 0x3f, + 0x56, 0x68, 0x7f, 0x45, 0x28, 0x7f, 0x65, 0xe8, 0x3e, 0x0e, 0xbf, 0x95, 0xe0, 0xb1, 0x71, 0xf9, + 0xaa, 0x34, 0x2f, 0x95, 0xe6, 0x9f, 0x72, 0x3c, 0x53, 0x6e, 0x27, 0xad, 0x0a, 0x95, 0x4b, 0x1b, + 0x4b, 0x8a, 0xc6, 0x51, 0x4c, 0xc5, 0x1e, 0xdb, 0xf8, 0x91, 0x31, 0x76, 0x14, 0x8c, 0x1b, 0x59, + 0x63, 0x46, 0xd9, 0x78, 0x51, 0x36, 0x56, 0xd4, 0x8c, 0x13, 0x3d, 0xa5, 0x15, 0xdb, 0xd8, 0x90, + 0x37, 0x2e, 0x24, 0x8c, 0x09, 0x49, 0xe3, 0x41, 0x82, 0x58, 0xa8, 0x18, 0x07, 0xaa, 0x56, 0xbe, + 0x22, 0xf9, 0xd7, 0x61, 0xa3, 0x32, 0x3e, 0x14, 0x15, 0x32, 0xaf, 0x3b, 0x15, 0x0a, 0x64, 0x5d, + 0x6b, 0x3a, 0x88, 0x88, 0x60, 0x2d, 0x73, 0x94, 0xe0, 0x1d, 0x1e, 0xbc, 0x80, 0x0d, 0x6c, 0xbd, + 0xf3, 0x78, 0xab, 0x1e, 0x2b, 0xce, 0xe3, 0xe4, 0x16, 0xd2, 0x8d, 0x59, 0x0a, 0x36, 0xfd, 0xb8, + 0xe3, 0x87, 0x9a, 0x78, 0xa0, 0x9c, 0xeb, 0x36, 0xdb, 0x73, 0x8f, 0x31, 0x0e, 0x1b, 0xf7, 0xfe, + 0x75, 0xe6, 0xf1, 0x17, 0x53, 0x92, 0xa5, 0x5a, 0xe8, 0x3d, 0xad, 0x33, 0xa5, 0x65, 0xe6, 0x6f, + 0x15, 0x47, 0xab, 0xc4, 0xd6, 0x22, 0xb1, 0xb5, 0xc6, 0x9c, 0x96, 0xe8, 0x3d, 0x98, 0xe4, 0x12, + 0x2f, 0xa3, 0x10, 0xb9, 0xc6, 0x68, 0x96, 0x56, 0x90, 0xc2, 0xe1, 0xf7, 0x34, 0x59, 0xe1, 0x3e, + 0x11, 0x2b, 0x5c, 0xbc, 0x34, 0x19, 0x60, 0x85, 0x0b, 0x97, 0x8e, 0x89, 0x15, 0x36, 0xbe, 0xd9, + 0x41, 0xe0, 0x04, 0x71, 0x0a, 0x04, 0x8c, 0x97, 0x79, 0x7c, 0x4d, 0x46, 0xb8, 0xe0, 0xfb, 0x5b, + 0x21, 0xc3, 0x5c, 0xf0, 0xdd, 0xad, 0x92, 0x14, 0x17, 0x0c, 0x42, 0x3f, 0x5e, 0x97, 0xf6, 0x71, + 0x5c, 0x4c, 0x55, 0xb3, 0x7e, 0x88, 0xb3, 0xb3, 0x07, 0x99, 0x43, 0x0a, 0xdb, 0x3b, 0x4e, 0xca, + 0x11, 0xf6, 0xf8, 0x46, 0xee, 0x71, 0xb9, 0x4d, 0xb2, 0x2d, 0x99, 0x87, 0x16, 0x33, 0xef, 0x4c, + 0x4d, 0x30, 0x84, 0x67, 0x3f, 0xba, 0x42, 0x02, 0xef, 0x47, 0x17, 0xac, 0x98, 0xc4, 0x89, 0xa4, + 0xd4, 0xde, 0x6a, 0x43, 0x6e, 0x20, 0x37, 0xf3, 0x33, 0xfe, 0xd8, 0x6a, 0xb9, 0xc2, 0xf6, 0x64, + 0xe4, 0x25, 0xcf, 0x20, 0x03, 0xdf, 0x84, 0xeb, 0xb6, 0xfa, 0x27, 0xe6, 0xfd, 0xf8, 0x72, 0x30, + 0x79, 0x11, 0x36, 0x37, 0x36, 0xf7, 0x42, 0x27, 0xd8, 0x51, 0x51, 0x62, 0x6f, 0x9f, 0xc0, 0x09, + 0xb6, 0xb1, 0x4e, 0xb0, 0xfc, 0x49, 0xb1, 0x78, 0x74, 0x5c, 0x2c, 0xee, 0x1f, 0x1f, 0x1c, 0xef, + 0x9f, 0x1e, 0x1e, 0xe6, 0x8f, 0xf2, 0x9b, 0xe4, 0x13, 0x7b, 0x07, 0x9c, 0x83, 0x4e, 0xbb, 0xed, + 0x8b, 0x20, 0xb0, 0x42, 0xf7, 0xbb, 0x65, 0x37, 0xbf, 0x0b, 0x3f, 0x74, 0x02, 0x31, 0x94, 0xfe, + 0xb8, 0x41, 0x8b, 0xe5, 0x63, 0x00, 0xba, 0x01, 0xdd, 0x73, 0x33, 0xee, 0x34, 0x85, 0x17, 0x3a, + 0xe1, 0x5b, 0xbc, 0xec, 0xf1, 0x88, 0x9b, 0xc4, 0x90, 0xd8, 0x5c, 0x65, 0x38, 0xf4, 0x27, 0x3b, + 0x50, 0x38, 0x43, 0x5d, 0xad, 0x5e, 0xdc, 0xd4, 0xef, 0xab, 0xbf, 0xc5, 0x5d, 0xa6, 0x3e, 0xbc, + 0x04, 0x52, 0x19, 0x57, 0x8a, 0x49, 0x93, 0x37, 0xd7, 0xb7, 0xf7, 0xf5, 0x8b, 0xf2, 0xdd, 0xf9, + 0x6d, 0xe5, 0xe6, 0xbe, 0x72, 0x7d, 0x95, 0xe3, 0x80, 0x66, 0xc5, 0x67, 0x3b, 0xff, 0xb5, 0x74, + 0x77, 0x57, 0xb9, 0xab, 0x57, 0x2e, 0xd2, 0xf4, 0x54, 0xfd, 0x19, 0x4b, 0xd7, 0x23, 0xdd, 0xfd, + 0x71, 0x77, 0x5f, 0xbe, 0xac, 0x5f, 0x95, 0x2e, 0xcb, 0x69, 0x7a, 0xac, 0xcb, 0xd2, 0x55, 0xe9, + 0x73, 0xf9, 0xb2, 0x7c, 0x75, 0x5f, 0x2f, 0x5d, 0x5c, 0xdc, 0x96, 0xef, 0xee, 0x52, 0x38, 0x69, + 0x29, 0xdd, 0xfb, 0xc3, 0xa7, 0x3b, 0x2f, 0xdd, 0x94, 0x3e, 0x55, 0xaa, 0x95, 0xfb, 0x4a, 0xf9, + 0x8e, 0xfa, 0xfc, 0x7e, 0x8d, 0x19, 0xbf, 0xd7, 0x23, 0x13, 0x4a, 0x8d, 0xfc, 0x0c, 0xb2, 0x2d, + 0x9a, 0x22, 0x68, 0xf8, 0x4e, 0x3b, 0x56, 0x9e, 0xd4, 0x6c, 0xa6, 0xc6, 0xe4, 0xb5, 0x20, 0x3b, + 0x20, 0x3b, 0x14, 0x0e, 0xfa, 0x18, 0xdf, 0xad, 0x0a, 0xef, 0xb9, 0x1f, 0xfd, 0x85, 0xa5, 0xba, + 0x5e, 0x96, 0x6a, 0xe1, 0x10, 0x86, 0xe9, 0x24, 0x36, 0xc7, 0x3a, 0x88, 0x3d, 0x0b, 0xca, 0x71, + 0x12, 0x80, 0x81, 0xc6, 0x40, 0x63, 0xa0, 0x31, 0xd0, 0x18, 0x68, 0xfc, 0xfe, 0xbf, 0x30, 0xa6, + 0xce, 0xb9, 0xcd, 0xf6, 0x5e, 0xff, 0x7f, 0xc3, 0x5c, 0x26, 0x8d, 0x4c, 0xfa, 0x89, 0x7c, 0xfc, + 0x95, 0x99, 0x53, 0x13, 0xdf, 0x45, 0xf6, 0x54, 0x76, 0xb2, 0xa7, 0xc6, 0xa7, 0x4d, 0x62, 0xd3, + 0x81, 0xb8, 0x07, 0x54, 0x62, 0xd6, 0x43, 0x04, 0x19, 0x48, 0x33, 0x19, 0x88, 0x5b, 0xbf, 0x70, + 0x55, 0x86, 0xe5, 0xd2, 0x05, 0x7a, 0x37, 0xe3, 0x52, 0x71, 0x4b, 0x49, 0x6f, 0x2d, 0x95, 0x2d, + 0xa6, 0xb1, 0xd5, 0x54, 0xb7, 0x9c, 0xf6, 0xd6, 0xd3, 0xde, 0x82, 0x7a, 0x5b, 0x51, 0x52, 0x27, + 0x73, 0x95, 0xd8, 0x8c, 0x9b, 0x3e, 0xb4, 0x74, 0xa5, 0xe3, 0xa5, 0x13, 0xcd, 0x3f, 0xa8, 0x54, + 0x7a, 0x11, 0x15, 0xeb, 0x4a, 0xbc, 0x46, 0x83, 0x9c, 0x4c, 0xe8, 0xca, 0x06, 0x99, 0x8c, 0x90, + 0xc9, 0x0a, 0x8d, 0xcc, 0xc8, 0xc9, 0x8e, 0x82, 0x29, 0xb0, 0x4d, 0x54, 0xcb, 0x2a, 0x76, 0x7a, + 0xd4, 0x52, 0x70, 0xcf, 0xa3, 0x54, 0x1d, 0xc4, 0x1b, 0xe2, 0x9d, 0x4e, 0xf1, 0x46, 0xa9, 0x3a, + 0x36, 0x22, 0xc3, 0x50, 0x64, 0x22, 0x72, 0x06, 0x2c, 0x2c, 0x32, 0xf1, 0x9e, 0x87, 0x40, 0xfe, + 0x55, 0xd1, 0x1f, 0x03, 0x16, 0x42, 0x3a, 0x2d, 0x04, 0xf4, 0xc7, 0x58, 0x2d, 0x98, 0xc2, 0x79, + 0xfe, 0xf6, 0xd8, 0xf2, 0x03, 0x05, 0xe9, 0x8c, 0x2e, 0x5d, 0x93, 0x3e, 0x19, 0x10, 0xd1, 0x0c, + 0x18, 0xf1, 0xa3, 0x5d, 0xa7, 0x41, 0xd2, 0x47, 0x23, 0xa8, 0x11, 0xf5, 0x3c, 0x88, 0x3a, 0x88, + 0x3a, 0x17, 0x51, 0x97, 0x15, 0x87, 0xb1, 0x1b, 0xd6, 0x6e, 0xdb, 0x8f, 0x8e, 0xeb, 0x84, 0x8e, + 0x08, 0xd4, 0xd7, 0x2c, 0x72, 0xce, 0x4e, 0x8e, 0xa6, 0x38, 0xdb, 0x6a, 0xe2, 0xa2, 0x8c, 0xfe, + 0x94, 0xe2, 0x43, 0x28, 0x46, 0x54, 0xe2, 0x44, 0x2e, 0x56, 0xe4, 0xe2, 0x45, 0x2b, 0x66, 0x6a, + 0xe2, 0xa6, 0x28, 0x76, 0xda, 0xe2, 0x37, 0x2f, 0x86, 0x6f, 0x74, 0xfd, 0xab, 0x27, 0xc6, 0xa4, + 0x69, 0x61, 0x9d, 0x5f, 0xf7, 0x16, 0xd6, 0x7a, 0xa2, 0x4a, 0x2d, 0xb2, 0x6c, 0xa2, 0xcb, 0x26, + 0xc2, 0x3c, 0xa2, 0xac, 0x27, 0xd2, 0x9a, 0xa2, 0x4d, 0x26, 0xe2, 0x63, 0x51, 0x97, 0x0b, 0x7c, + 0xc6, 0x17, 0x77, 0x99, 0xc0, 0xa8, 0x21, 0x91, 0x27, 0x17, 0x7d, 0x0e, 0x08, 0x60, 0x84, 0x02, + 0x2e, 0x48, 0x60, 0x87, 0x06, 0x76, 0x88, 0xe0, 0x85, 0x0a, 0x1a, 0xc8, 0x20, 0x82, 0x0e, 0x5d, + 0x7f, 0xed, 0xca, 0x71, 0x95, 0xfd, 0xb9, 0x91, 0x27, 0x26, 0xfa, 0x69, 0x6f, 0x92, 0xc1, 0x8f, + 0x7f, 0x79, 0x93, 0x72, 0xfd, 0xf2, 0xaf, 0x0a, 0xc1, 0x8a, 0xa8, 0x45, 0xec, 0x56, 0x3b, 0x09, + 0xe4, 0x23, 0x79, 0xab, 0x30, 0x78, 0x1f, 0x18, 0x0c, 0x0c, 0x06, 0x06, 0xd3, 0xec, 0x59, 0xe5, + 0x88, 0xe6, 0xca, 0x1d, 0x2b, 0xef, 0xfa, 0x8f, 0x4d, 0xc2, 0x8e, 0x09, 0xc7, 0x9c, 0x08, 0x1d, + 0xf4, 0x6b, 0x65, 0xee, 0xc9, 0xc7, 0x3b, 0xd3, 0x8d, 0xeb, 0x72, 0x9d, 0xbb, 0x63, 0x2f, 0xaf, + 0x4c, 0x67, 0xef, 0xc4, 0xd8, 0x75, 0x01, 0xc8, 0x0e, 0x64, 0xdf, 0x50, 0x64, 0xa7, 0x32, 0xd0, + 0xa3, 0x01, 0x55, 0xd3, 0x3e, 0x63, 0x4b, 0x82, 0x5a, 0x5a, 0xa8, 0x61, 0xda, 0xc8, 0x46, 0x1f, + 0x39, 0xc1, 0xc6, 0x00, 0xe8, 0x70, 0x83, 0x8f, 0x31, 0x10, 0x32, 0x06, 0x46, 0x66, 0x40, 0x89, + 0x16, 0x9c, 0x88, 0x41, 0x8a, 0x8f, 0x86, 0xce, 0xed, 0x78, 0xf5, 0xbc, 0xda, 0xd8, 0xec, 0x25, + 0xbf, 0x95, 0xce, 0x05, 0x23, 0x5c, 0x2c, 0x5a, 0x2f, 0x01, 0xa7, 0xb7, 0x00, 0xf0, 0x0f, 0xf8, + 0x07, 0xfc, 0x03, 0xfe, 0x95, 0xaa, 0xbb, 0x29, 0xab, 0x80, 0x43, 0x86, 0xb1, 0x95, 0xaa, 0xc7, + 0x29, 0x4f, 0x54, 0xbf, 0xda, 0xdc, 0x6c, 0x01, 0xa9, 0x3f, 0xb8, 0x84, 0x4c, 0xa1, 0x56, 0x9d, + 0xec, 0x9f, 0x1f, 0x6c, 0x23, 0x4f, 0xcd, 0xdb, 0xfd, 0xef, 0xd7, 0xf5, 0x7e, 0x75, 0xb7, 0xcb, + 0xd2, 0x79, 0xfd, 0xb6, 0x5c, 0x2d, 0xfd, 0x91, 0x63, 0xbb, 0x71, 0xf7, 0x43, 0xd6, 0x67, 0xab, + 0x37, 0x49, 0x9f, 0x6e, 0x2b, 0x17, 0x9f, 0xcb, 0x98, 0xa5, 0xe5, 0xb3, 0xf4, 0x7b, 0xb5, 0x74, + 0x55, 0x2f, 0x9d, 0x9f, 0x97, 0xef, 0xee, 0xea, 0x37, 0xd7, 0x95, 0xab, 0x7b, 0x4c, 0xd6, 0xf2, + 0xc9, 0x3a, 0xaf, 0xff, 0x56, 0x2d, 0x5d, 0x61, 0x86, 0x96, 0xcf, 0xd0, 0x1d, 0x66, 0x68, 0xc5, + 0x0c, 0x5d, 0x5c, 0x9f, 0xdf, 0x55, 0xee, 0xea, 0xe7, 0xa5, 0x4f, 0xd5, 0x72, 0xfd, 0xa2, 0xfc, + 0x5b, 0xe5, 0x1c, 0xf8, 0xf4, 0xde, 0x86, 0xba, 0x2f, 0xdd, 0x57, 0xae, 0xaf, 0xea, 0xd7, 0x57, + 0x55, 0x68, 0xbb, 0x77, 0xe6, 0xe9, 0xb6, 0x7c, 0x53, 0x2e, 0xdd, 0x97, 0x6f, 0x31, 0x47, 0xef, + 0xcc, 0xd1, 0xf5, 0x17, 0xcc, 0xd0, 0xbb, 0x33, 0x74, 0x7d, 0xff, 0x2b, 0x26, 0xe8, 0x5d, 0x0a, + 0x5e, 0xae, 0x96, 0x6f, 0x7e, 0xbd, 0xbe, 0xe2, 0xc4, 0x6c, 0x96, 0x91, 0x6b, 0x69, 0x37, 0xf7, + 0x91, 0x80, 0x26, 0x35, 0xae, 0x89, 0x04, 0x34, 0x89, 0x06, 0xf7, 0xfc, 0x8b, 0x92, 0x6c, 0x2a, + 0x72, 0xfc, 0x06, 0xfb, 0x2b, 0x87, 0x92, 0x2a, 0x3b, 0xbd, 0x72, 0x34, 0x95, 0xb2, 0xd4, 0xab, + 0x07, 0x55, 0x28, 0x5b, 0xbd, 0x72, 0x50, 0xa9, 0xb2, 0xd6, 0xdc, 0xeb, 0x49, 0x2c, 0x96, 0x26, + 0xc4, 0x31, 0x47, 0x92, 0xa8, 0x33, 0xd5, 0x08, 0xd7, 0x6d, 0xb6, 0xeb, 0x95, 0xd1, 0xa3, 0xd4, + 0xaf, 0x86, 0x0f, 0x50, 0x3f, 0x1f, 0xdf, 0x73, 0x2b, 0x19, 0x91, 0x35, 0x7b, 0x94, 0x88, 0x68, + 0x33, 0xb0, 0x6d, 0x02, 0xb5, 0x55, 0x90, 0x9f, 0x43, 0x85, 0xf9, 0xd3, 0x3d, 0x5a, 0x41, 0x73, + 0x94, 0x82, 0xec, 0x00, 0xe3, 0x3e, 0x0e, 0x30, 0xce, 0x68, 0x3d, 0x1c, 0x60, 0xdc, 0x28, 0xd4, + 0xd1, 0x38, 0x72, 0x60, 0x08, 0x6f, 0x3a, 0x41, 0xd8, 0x7a, 0xb1, 0x42, 0xf7, 0x3b, 0xc5, 0xd9, + 0xe9, 0x89, 0xc1, 0x70, 0x74, 0x1a, 0xc8, 0xb3, 0x21, 0xc8, 0xa3, 0x7d, 0x74, 0x3a, 0x74, 0xbf, + 0xd3, 0x9d, 0x99, 0xee, 0x0d, 0x86, 0xc3, 0xd2, 0x06, 0x84, 0x93, 0x5a, 0x48, 0xd9, 0x84, 0x95, + 0x4d, 0x68, 0x79, 0x84, 0x37, 0x1d, 0x1e, 0x0a, 0x1c, 0x96, 0x4e, 0x83, 0xe8, 0x73, 0x40, 0x00, + 0x23, 0x14, 0x70, 0x41, 0x02, 0x3b, 0x34, 0xb0, 0x43, 0x04, 0x2f, 0x54, 0xd0, 0xb9, 0x45, 0xb7, + 0x37, 0xcd, 0x57, 0x3d, 0xa6, 0xec, 0x7b, 0xa1, 0xfb, 0x7d, 0x0d, 0x0f, 0x49, 0xb7, 0x3a, 0x0e, + 0x3d, 0xf8, 0xf6, 0x06, 0xc5, 0x11, 0x69, 0x20, 0x2f, 0x90, 0x37, 0x95, 0xc8, 0x8b, 0x23, 0xd2, + 0xb3, 0x47, 0xa4, 0x7b, 0x80, 0xb5, 0x5e, 0xa0, 0x6e, 0x05, 0x9d, 0xc7, 0x90, 0x72, 0x9d, 0x27, + 0xc1, 0x3d, 0x1a, 0x1c, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0xb3, 0x02, 0xf2, 0x11, 0x70, + 0xa1, 0x1c, 0xc6, 0xaa, 0x55, 0x46, 0x39, 0x0c, 0x00, 0x3c, 0x00, 0x3e, 0xc5, 0x00, 0x4f, 0x5e, + 0x0e, 0x83, 0xd2, 0x15, 0xc0, 0xe8, 0x12, 0x60, 0x62, 0x8d, 0x6c, 0xec, 0x91, 0x13, 0x64, 0x0c, + 0x80, 0x0d, 0x37, 0xe8, 0x18, 0x03, 0x1f, 0x63, 0x20, 0x64, 0x06, 0x8c, 0x68, 0x41, 0x89, 0x18, + 0x9c, 0xf8, 0x58, 0xe8, 0x02, 0x9e, 0x12, 0xb3, 0xd5, 0xb8, 0x32, 0x69, 0x39, 0xd9, 0x80, 0x2a, + 0x18, 0x1c, 0x1e, 0x03, 0x03, 0x9e, 0x03, 0xe8, 0x02, 0xe8, 0x02, 0xe8, 0x02, 0xe8, 0x02, 0xe8, + 0x02, 0x42, 0x5d, 0xc0, 0xab, 0x04, 0x80, 0xfe, 0x40, 0x7f, 0xa0, 0x3f, 0xd0, 0x9f, 0x7e, 0xc7, + 0x3b, 0x5e, 0x78, 0x50, 0x60, 0x04, 0xff, 0x03, 0x86, 0xa1, 0x6f, 0x6d, 0xef, 0x59, 0xb0, 0x55, + 0x0b, 0xe2, 0x3b, 0xa6, 0x9c, 0xbb, 0x74, 0x3c, 0x36, 0x00, 0x98, 0xd3, 0xba, 0x1f, 0x78, 0x6f, + 0xd3, 0xaf, 0xd9, 0x94, 0x3b, 0xdb, 0x2e, 0xe4, 0x8b, 0xc7, 0xc5, 0x93, 0x83, 0xa3, 0xe2, 0x09, + 0xf3, 0x0d, 0x7f, 0xf1, 0xed, 0x46, 0xe8, 0xb4, 0xbc, 0x0b, 0xe7, 0xd9, 0xe9, 0x1f, 0x7a, 0xdc, + 0xcf, 0xe2, 0x21, 0xf8, 0xdc, 0xa5, 0xfd, 0x6a, 0x6c, 0x0f, 0xec, 0x9b, 0xde, 0x03, 0xc7, 0x6b, + 0xb4, 0x07, 0xb6, 0xb2, 0x31, 0x6a, 0x6d, 0x03, 0xc8, 0xf5, 0xf7, 0xe1, 0x3e, 0x63, 0x62, 0xd7, + 0x83, 0xe1, 0x41, 0xaf, 0x41, 0xaf, 0x41, 0xaf, 0x41, 0xaf, 0x49, 0x77, 0xfc, 0xa3, 0xe3, 0xd9, + 0xfe, 0x1b, 0x23, 0xbf, 0x3e, 0x45, 0x89, 0x97, 0x38, 0x7b, 0x3d, 0x83, 0x69, 0xf3, 0xe9, 0x2a, + 0xed, 0x42, 0x90, 0x73, 0xc3, 0x93, 0x59, 0x89, 0x94, 0xca, 0xb4, 0xea, 0x66, 0x64, 0xdc, 0x24, + 0xa3, 0x7b, 0x91, 0x52, 0xa9, 0xed, 0x3b, 0x61, 0x4d, 0xa9, 0x4c, 0x55, 0x2e, 0x65, 0x1a, 0x4a, + 0x76, 0xf5, 0x26, 0x64, 0xbb, 0xd5, 0x71, 0xb6, 0xe9, 0x62, 0xdd, 0x28, 0xe1, 0x85, 0x12, 0x5e, + 0x52, 0x74, 0xcb, 0x5c, 0xe9, 0xae, 0x7b, 0xf7, 0x3b, 0x6a, 0x76, 0xa5, 0x60, 0xd5, 0xd3, 0x5c, + 0x42, 0xc7, 0x69, 0xea, 0x57, 0xce, 0x71, 0x9a, 0x9a, 0x05, 0x73, 0xf6, 0x51, 0xaa, 0x6b, 0x1b, + 0x05, 0x73, 0x32, 0x02, 0x36, 0xda, 0x34, 0x93, 0x90, 0x56, 0x52, 0xd0, 0xc8, 0x79, 0xda, 0xe8, + 0x34, 0xd3, 0x8c, 0x58, 0x7a, 0x07, 0x6a, 0x48, 0x0e, 0xd0, 0xa0, 0xd0, 0x17, 0x70, 0x6b, 0xf3, + 0x0a, 0x7d, 0xd9, 0xcf, 0x82, 0xae, 0xd0, 0x57, 0x6f, 0x30, 0x9a, 0x42, 0x5f, 0xfb, 0x28, 0xf4, + 0x95, 0x84, 0x8f, 0x0c, 0x85, 0xbe, 0xd2, 0xe0, 0xd7, 0x20, 0xf3, 0x79, 0x45, 0x3b, 0xae, 0xe3, + 0x78, 0xe1, 0x51, 0x91, 0x62, 0xc3, 0x0d, 0xe5, 0x93, 0x20, 0x5b, 0x87, 0x38, 0x0f, 0x8b, 0xd0, + 0x43, 0xc8, 0x91, 0x67, 0xc5, 0x15, 0xd0, 0x1f, 0xe5, 0xd0, 0x50, 0x8f, 0xcb, 0x98, 0x2a, 0x43, + 0x99, 0xda, 0xc1, 0x91, 0x0e, 0xc5, 0xbd, 0x54, 0xf9, 0x93, 0x62, 0xf1, 0xe8, 0xb8, 0x58, 0xdc, + 0x3f, 0x3e, 0x38, 0xde, 0x3f, 0x3d, 0x3c, 0xcc, 0x1f, 0x51, 0x77, 0x7c, 0x64, 0x5d, 0xbd, 0x94, + 0xb8, 0x9e, 0x6b, 0x49, 0x39, 0xc1, 0x34, 0x28, 0x75, 0xe3, 0x9b, 0x1d, 0x04, 0x4e, 0x60, 0x39, + 0x4d, 0x3a, 0xce, 0x35, 0x31, 0x26, 0xa8, 0x17, 0xa8, 0x17, 0xa8, 0x57, 0xca, 0xa8, 0x17, 0xd9, + 0xf9, 0x28, 0xa2, 0xf3, 0x50, 0x49, 0x23, 0x9f, 0x45, 0x92, 0xc7, 0xb1, 0x00, 0xfe, 0x2c, 0x8a, + 0xb8, 0x1f, 0x30, 0x10, 0x18, 0x08, 0x0c, 0xa4, 0xc6, 0x40, 0x5a, 0x21, 0x9d, 0x02, 0xc3, 0x22, + 0xc1, 0x58, 0x65, 0xaf, 0xf3, 0xd2, 0x7b, 0xe1, 0x6e, 0x06, 0x81, 0x95, 0x92, 0x4a, 0x82, 0x42, + 0x02, 0x3e, 0x01, 0x9f, 0xa0, 0x90, 0xe9, 0x44, 0x3a, 0xd7, 0x0e, 0x42, 0xab, 0xd3, 0x6e, 0x52, + 0x54, 0xde, 0x1b, 0x47, 0x6b, 0x27, 0x06, 0x05, 0xf6, 0x01, 0xfb, 0x80, 0x7d, 0x29, 0xc3, 0x3e, + 0xea, 0xc0, 0x45, 0x11, 0x81, 0x0b, 0x45, 0x9d, 0xc1, 0xe4, 0x0d, 0x3f, 0x2d, 0x14, 0x0e, 0x0e, + 0x8e, 0x0b, 0xfb, 0x07, 0x47, 0x27, 0x87, 0xc5, 0xe3, 0xe3, 0xc3, 0x93, 0xfd, 0x13, 0x84, 0x32, + 0xa8, 0x17, 0x6f, 0xdf, 0xd8, 0xe2, 0x1d, 0x23, 0x92, 0x21, 0xfb, 0x27, 0x8b, 0x91, 0x8c, 0x17, + 0xdb, 0xb3, 0x9f, 0xfb, 0xc9, 0xe7, 0x96, 0xdd, 0x6c, 0xfa, 0x22, 0x08, 0xe8, 0x38, 0xd9, 0x82, + 0xb1, 0x41, 0xcd, 0x40, 0xcd, 0x40, 0xcd, 0x60, 0x96, 0x66, 0x02, 0x09, 0x89, 0x23, 0x1c, 0xcb, + 0x6e, 0x00, 0x4c, 0x04, 0x26, 0x02, 0x13, 0x81, 0x89, 0x29, 0xc4, 0xc4, 0x76, 0xcb, 0x0f, 0xad, + 0xa6, 0x08, 0x1a, 0xbe, 0xd3, 0x26, 0x39, 0xbe, 0x17, 0xcd, 0xef, 0xdc, 0xc8, 0x40, 0x41, 0xa0, + 0x20, 0x50, 0x10, 0x28, 0x98, 0x56, 0x14, 0xa4, 0x8c, 0xcf, 0x8e, 0x06, 0x04, 0xe6, 0x01, 0xf3, + 0x80, 0x79, 0xc0, 0xbc, 0xf4, 0x62, 0x1e, 0xb1, 0x09, 0x3c, 0x35, 0x2a, 0xd0, 0x0f, 0xe8, 0x07, + 0xf4, 0x4b, 0x19, 0xfa, 0x11, 0x4a, 0xe8, 0x36, 0xd2, 0xfb, 0xc6, 0xcf, 0x1e, 0xbc, 0x05, 0xa1, + 0x78, 0xe1, 0xb1, 0xa5, 0x17, 0x8c, 0x0d, 0x6c, 0x05, 0xb6, 0x02, 0x5b, 0xd7, 0x9f, 0x59, 0x12, + 0x8c, 0x55, 0x15, 0xde, 0x73, 0xbf, 0xc4, 0x08, 0x8e, 0xef, 0x6a, 0x0c, 0x8b, 0xe3, 0xbb, 0x99, + 0x5b, 0xaa, 0xc2, 0x21, 0x4e, 0xeb, 0x4a, 0xff, 0xa9, 0x65, 0x97, 0x7b, 0x0d, 0x0b, 0xf2, 0xd1, + 0x92, 0xae, 0xfe, 0xa0, 0x60, 0x5b, 0x60, 0x5b, 0x60, 0x5b, 0x60, 0x5b, 0x60, 0x5b, 0x60, 0x5b, + 0x60, 0x5b, 0x60, 0x5b, 0x1b, 0xcd, 0xb6, 0xc2, 0xd0, 0xa5, 0x63, 0x59, 0xbd, 0xc1, 0xc0, 0xae, + 0xc0, 0xae, 0xc0, 0xae, 0x52, 0xc6, 0xae, 0x3a, 0x8e, 0x17, 0xe6, 0x8f, 0x08, 0xd9, 0xd5, 0x11, + 0xce, 0x73, 0x81, 0x5b, 0x81, 0x5b, 0x29, 0x2d, 0xd5, 0xd1, 0xe1, 0xe1, 0x01, 0xd8, 0x55, 0x76, + 0xd8, 0xd5, 0xc6, 0xb7, 0x5f, 0xd0, 0xe8, 0x69, 0xa6, 0x50, 0xc6, 0x7c, 0x8b, 0x71, 0x9a, 0x47, + 0xbd, 0x6b, 0xa4, 0xb3, 0xf9, 0xf4, 0x3a, 0xd3, 0x90, 0x74, 0xa2, 0x21, 0xe9, 0x3c, 0xa3, 0xd7, + 0x69, 0x46, 0x76, 0xb6, 0x35, 0x37, 0x33, 0xe5, 0x26, 0xce, 0x29, 0x55, 0xc7, 0x8f, 0xd1, 0x19, + 0x46, 0x4e, 0x2e, 0xe2, 0xef, 0xee, 0x78, 0xdf, 0x8c, 0xb9, 0x22, 0xaa, 0x2b, 0x41, 0xb0, 0x02, + 0xf1, 0xe6, 0x67, 0xf5, 0xdb, 0xc6, 0x78, 0x53, 0xc9, 0x76, 0x06, 0x4a, 0xed, 0x0b, 0x24, 0xcf, + 0xe5, 0x4b, 0xb7, 0x27, 0x50, 0x31, 0x38, 0x35, 0x0c, 0x4b, 0x55, 0x03, 0x52, 0xdb, 0x50, 0xd4, + 0x36, 0x08, 0xf5, 0x0c, 0x3f, 0x5a, 0xe9, 0x92, 0x6d, 0x07, 0x90, 0x6b, 0xb4, 0x3a, 0x3d, 0x49, + 0x91, 0x3f, 0xbd, 0x3d, 0xae, 0xed, 0x36, 0x1a, 0x41, 0x56, 0x01, 0x2a, 0x95, 0x95, 0x50, 0xf6, + 0xa7, 0xe8, 0xf8, 0x4f, 0x08, 0xfc, 0x25, 0xba, 0xfe, 0x11, 0x32, 0x7f, 0x08, 0x99, 0xff, 0x83, + 0xc6, 0xdf, 0xc1, 0x4b, 0xb2, 0x54, 0xbb, 0x63, 0xe4, 0x9e, 0x7c, 0xfb, 0x45, 0x58, 0x4d, 0x27, + 0x68, 0xd8, 0x3e, 0x41, 0x2f, 0xad, 0xe9, 0xe1, 0xd0, 0x56, 0x0b, 0xed, 0x69, 0x12, 0x73, 0x2c, + 0x66, 0xb5, 0xad, 0xd6, 0x50, 0xcd, 0x68, 0xd5, 0x82, 0x22, 0x68, 0x5e, 0x41, 0xe4, 0x2b, 0xa4, + 0xe9, 0x29, 0x4a, 0xe8, 0x6d, 0xa7, 0xed, 0x5c, 0x4d, 0xec, 0x0b, 0xe4, 0x70, 0x2a, 0x75, 0x69, + 0x3a, 0xb0, 0xa6, 0x7e, 0x09, 0xf8, 0x9a, 0x4d, 0xb0, 0xac, 0x4a, 0x42, 0xae, 0xb5, 0x5a, 0x8a, + 0x5b, 0xe3, 0x0d, 0xc8, 0x83, 0xf0, 0xfd, 0x96, 0x6f, 0x69, 0xc8, 0xfc, 0x0c, 0x19, 0x89, 0xc6, + 0x03, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, + 0x91, 0x60, 0x23, 0xad, 0x4e, 0x48, 0x4b, 0x47, 0x7a, 0x03, 0x82, 0x8f, 0x80, 0x8f, 0x80, 0x8f, + 0x80, 0x8f, 0x80, 0x8f, 0x80, 0x8f, 0x80, 0x8f, 0x80, 0x8f, 0xc4, 0xe2, 0x23, 0x74, 0x7e, 0x11, + 0x78, 0x44, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, + 0xe2, 0x32, 0x10, 0x42, 0x5f, 0x08, 0xbc, 0x20, 0xe0, 0x20, 0xe0, 0x20, 0xe0, 0x20, 0xe0, 0x20, + 0xe0, 0x20, 0xe0, 0x20, 0xe0, 0x20, 0x31, 0xa6, 0xb9, 0xdf, 0xc6, 0xb4, 0xe1, 0x0a, 0xdb, 0xd7, + 0x27, 0x21, 0x13, 0x63, 0x81, 0x85, 0x80, 0x85, 0x80, 0x85, 0x48, 0xee, 0x98, 0xa6, 0x1d, 0x0a, + 0xcb, 0xf6, 0x9a, 0x56, 0xe8, 0x68, 0xd5, 0xf8, 0xa2, 0xa8, 0x1f, 0x94, 0xbb, 0xb1, 0xc3, 0x50, + 0xf8, 0x9e, 0x36, 0x19, 0xc9, 0x7d, 0xfd, 0xda, 0xfc, 0x51, 0xec, 0x5a, 0xbd, 0xbf, 0x0a, 0xa3, + 0xbf, 0xee, 0x07, 0x7f, 0x9d, 0x4d, 0xfd, 0xb5, 0xf3, 0xf5, 0xeb, 0xc7, 0xaf, 0x5f, 0x9b, 0xff, + 0xb3, 0xfb, 0xcf, 0x9d, 0xff, 0xef, 0xe7, 0xc3, 0xd7, 0xaf, 0xff, 0xf3, 0xf5, 0xab, 0x55, 0x9b, + 0xfa, 0xc6, 0x6e, 0x6e, 0x2d, 0x31, 0x38, 0x74, 0xbf, 0xd3, 0x9d, 0x18, 0x98, 0x1c, 0x0c, 0x28, + 0x0c, 0x14, 0x06, 0x0a, 0xc3, 0x16, 0x84, 0x2d, 0x08, 0x5b, 0x10, 0xb6, 0x20, 0x6c, 0xc1, 0x18, + 0x3c, 0xa4, 0xe3, 0xfd, 0xe9, 0xb5, 0xfe, 0xf2, 0x68, 0x78, 0xc8, 0x68, 0x30, 0xf0, 0x10, 0xf0, + 0x10, 0xf0, 0x10, 0xf0, 0x10, 0xf0, 0x10, 0xf0, 0x10, 0xf0, 0x90, 0xcd, 0xe2, 0x21, 0xeb, 0x59, + 0x9d, 0xa9, 0x5f, 0x6f, 0x67, 0x4f, 0xb1, 0x82, 0xc9, 0xf6, 0xca, 0xca, 0x4c, 0xe7, 0xa3, 0x81, + 0xb9, 0x2a, 0x33, 0x49, 0x94, 0xd7, 0x11, 0x9e, 0xfd, 0xe8, 0x8a, 0xa6, 0x7a, 0x9d, 0x97, 0xd1, + 0x00, 0xb2, 0x25, 0x38, 0xc4, 0x93, 0xdd, 0x71, 0xfb, 0x1c, 0xa0, 0x47, 0x29, 0x14, 0xab, 0xc4, + 0xec, 0xa3, 0x4a, 0x8c, 0x51, 0x52, 0xb8, 0x51, 0x55, 0x62, 0x94, 0xc9, 0x5e, 0xb4, 0xe2, 0x8f, + 0xad, 0x96, 0x2b, 0x6c, 0x15, 0x0b, 0x29, 0x72, 0xf2, 0xe7, 0x53, 0x80, 0x11, 0x4a, 0x9d, 0x4e, + 0xa2, 0x49, 0x50, 0x68, 0x69, 0x02, 0xf1, 0x86, 0x78, 0x67, 0x41, 0xbc, 0xed, 0x40, 0x58, 0x11, + 0x6b, 0xb0, 0x7c, 0xf1, 0xa4, 0x23, 0xe9, 0xc7, 0x0a, 0xd7, 0xde, 0x44, 0xdc, 0xa6, 0x61, 0x39, + 0x4f, 0x67, 0x13, 0x64, 0x66, 0xe6, 0x83, 0xe1, 0xef, 0x7d, 0x59, 0x44, 0x3d, 0xc8, 0xa5, 0x9c, + 0x8f, 0xac, 0x16, 0xe4, 0x96, 0xc6, 0x1c, 0x8c, 0x6a, 0xc0, 0xc6, 0x00, 0x4e, 0xb9, 0xaa, 0xaf, + 0x4a, 0x55, 0x5e, 0x95, 0xaa, 0xba, 0xca, 0x55, 0x71, 0x5d, 0x35, 0x1f, 0x92, 0x7b, 0x41, 0x79, + 0x0f, 0xe4, 0x62, 0x55, 0xf0, 0x5c, 0x4e, 0xec, 0xdf, 0xdf, 0x3d, 0xcb, 0xf7, 0xc4, 0xe2, 0x7f, + 0x59, 0x32, 0x2b, 0x71, 0x67, 0x43, 0x72, 0x16, 0x16, 0x3f, 0xfb, 0xfc, 0x93, 0x2d, 0x78, 0xaa, + 0x15, 0x55, 0x4d, 0x63, 0x55, 0x31, 0x5d, 0x51, 0xf6, 0x71, 0x65, 0x95, 0xd2, 0x38, 0x1a, 0x5c, + 0x42, 0x53, 0xc7, 0xd5, 0xc8, 0xd2, 0x9a, 0x57, 0x5a, 0xc3, 0xca, 0x69, 0x52, 0xb9, 0x9d, 0xb4, + 0xaa, 0x0c, 0x62, 0xae, 0xf1, 0xcd, 0x0e, 0x02, 0x27, 0xb0, 0x9c, 0xd5, 0xf6, 0xe1, 0xd8, 0xb1, + 0x39, 0xbe, 0x66, 0x15, 0xcc, 0xc5, 0x22, 0x79, 0xb1, 0x49, 0x9d, 0x0c, 0x89, 0x53, 0x20, 0x6d, + 0xb2, 0x24, 0x4d, 0x99, 0x94, 0x29, 0x93, 0x30, 0x35, 0xd2, 0xa5, 0xa7, 0xaa, 0x62, 0x93, 0x28, + 0xf9, 0x3e, 0x6a, 0xe3, 0x3c, 0x27, 0x55, 0x58, 0xfd, 0x10, 0x67, 0x67, 0x0f, 0x5a, 0x93, 0x2b, + 0x6c, 0xef, 0x38, 0x3d, 0xcd, 0xb1, 0xc7, 0x37, 0x72, 0x8f, 0xcb, 0x6d, 0x92, 0x6d, 0xc9, 0xc6, + 0xf6, 0x31, 0x1b, 0xd7, 0x2b, 0x0a, 0x46, 0xdc, 0xc2, 0xcf, 0xb2, 0x85, 0x9e, 0x63, 0x16, 0x76, + 0x86, 0x28, 0xa4, 0x59, 0x14, 0xe2, 0x16, 0x4e, 0xce, 0x09, 0x2f, 0xf4, 0x1d, 0x11, 0x58, 0xf6, + 0xb3, 0x68, 0x4a, 0x9d, 0x81, 0x9b, 0xf0, 0x2b, 0xcf, 0x8c, 0x20, 0x57, 0xfe, 0x7e, 0x5f, 0xb6, + 0xfc, 0xfd, 0x3e, 0xca, 0xdf, 0x93, 0xba, 0x82, 0xd2, 0x54, 0xfe, 0x5e, 0xda, 0xd5, 0xa3, 0x15, + 0xa6, 0x57, 0x08, 0xcb, 0x2b, 0x86, 0xe1, 0xd5, 0x1a, 0xbd, 0x68, 0xf8, 0x19, 0xf5, 0x52, 0x76, + 0x34, 0xc3, 0xe8, 0x14, 0x01, 0xda, 0xae, 0x5a, 0x5b, 0x9b, 0xc4, 0xa7, 0x8c, 0x2e, 0xec, 0x4d, + 0x32, 0x8b, 0x4c, 0x2e, 0xc4, 0x9a, 0xc1, 0x56, 0x2c, 0x6a, 0xa5, 0xfc, 0xb5, 0x4a, 0xf7, 0x43, + 0x37, 0x41, 0x37, 0x41, 0x37, 0x41, 0x37, 0x41, 0x37, 0x41, 0x37, 0xc5, 0xd0, 0x4d, 0xd2, 0xa5, + 0xdd, 0xf5, 0x4a, 0xb9, 0x43, 0x3b, 0x41, 0x3b, 0x41, 0x3b, 0x41, 0x3b, 0x41, 0x3b, 0x41, 0x3b, + 0xc5, 0xd0, 0x4e, 0xea, 0x7a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, 0x1a, 0x09, + 0x1a, 0x89, 0x52, 0x23, 0x29, 0x85, 0x99, 0x64, 0x4b, 0x2b, 0x42, 0x27, 0x41, 0x27, 0x41, 0x27, + 0x41, 0x27, 0x41, 0x27, 0x41, 0x27, 0xbd, 0x3b, 0x0d, 0x0a, 0xa5, 0xf7, 0xd4, 0x4b, 0xed, 0x41, + 0x2b, 0x41, 0x2b, 0x11, 0x6a, 0x25, 0xd5, 0x52, 0x75, 0x2a, 0xa5, 0xe9, 0x94, 0x4b, 0xd1, 0x25, + 0x54, 0x7a, 0xce, 0x24, 0x86, 0x84, 0xee, 0x77, 0xcb, 0x6e, 0x34, 0x44, 0x3b, 0x14, 0x0a, 0x21, + 0xea, 0xa9, 0xab, 0x81, 0x23, 0xc0, 0x11, 0xb0, 0x5b, 0xb0, 0x5b, 0xb0, 0x5b, 0xb0, 0x5b, 0x22, + 0xcd, 0xa4, 0x9c, 0x3b, 0x25, 0x5f, 0xc4, 0x14, 0x7a, 0x09, 0x7a, 0x09, 0x7a, 0x09, 0x7a, 0x09, + 0x7a, 0x09, 0x7a, 0x69, 0xa5, 0x5e, 0x92, 0x2d, 0x72, 0xa9, 0x51, 0xd4, 0x12, 0x7a, 0x09, 0x7a, + 0x09, 0x7a, 0x09, 0x7a, 0x09, 0x7a, 0x69, 0x93, 0xf5, 0x52, 0xea, 0x8a, 0x9b, 0x48, 0xd7, 0x2f, + 0x5c, 0x54, 0xd6, 0x24, 0x5e, 0x95, 0x42, 0xb5, 0x53, 0xc6, 0x71, 0xab, 0x0e, 0x4a, 0x56, 0x19, + 0x94, 0xac, 0x2a, 0x88, 0xd3, 0xf9, 0xc4, 0xda, 0x38, 0x1b, 0xa7, 0xf3, 0xe3, 0x57, 0xe5, 0x8b, + 0x59, 0x85, 0x4f, 0x4d, 0x06, 0xbe, 0x09, 0xd7, 0x6d, 0xf5, 0x23, 0x2c, 0x7e, 0x7c, 0x39, 0x98, + 0xbc, 0x08, 0x9b, 0x1b, 0x9b, 0x7b, 0x6e, 0xc6, 0x3b, 0x8e, 0x17, 0xc6, 0xe2, 0x8f, 0x12, 0xbc, + 0x51, 0x92, 0x2f, 0x4a, 0x10, 0x5f, 0x15, 0x7e, 0xa8, 0x5a, 0x1c, 0x52, 0x91, 0x0f, 0xea, 0x30, + 0x18, 0x99, 0x22, 0x9b, 0x2a, 0xbc, 0x4f, 0x77, 0x2a, 0xf4, 0x79, 0x9e, 0xd6, 0xec, 0x10, 0xf1, + 0xaf, 0x1a, 0x03, 0x38, 0x07, 0x9d, 0x76, 0xdb, 0x17, 0x41, 0x60, 0xf5, 0x83, 0xa8, 0xcd, 0xef, + 0xc2, 0x0f, 0x9d, 0x40, 0x0c, 0xa5, 0x3f, 0x26, 0x56, 0xbf, 0x33, 0x06, 0xa0, 0x1b, 0xd0, 0x3d, + 0x37, 0xe3, 0x4e, 0x53, 0x78, 0xa1, 0x13, 0xbe, 0xc5, 0xab, 0x23, 0x1a, 0x71, 0x93, 0x18, 0x12, + 0x9b, 0xab, 0x0c, 0x87, 0xfe, 0x64, 0x07, 0x42, 0xde, 0x2f, 0x56, 0xad, 0x5e, 0xdc, 0xd4, 0xef, + 0xab, 0xbf, 0xc5, 0x5d, 0xa6, 0x3e, 0xbc, 0x04, 0x52, 0xfe, 0x05, 0xc5, 0xda, 0xc2, 0x37, 0xd7, + 0xb7, 0xf7, 0xf5, 0x8b, 0xf2, 0xdd, 0xf9, 0x6d, 0xe5, 0xe6, 0xbe, 0x72, 0x7d, 0x95, 0xe3, 0x80, + 0x66, 0xc5, 0x67, 0x3b, 0xff, 0xb5, 0x74, 0x77, 0x57, 0xb9, 0xab, 0x57, 0x2e, 0xd2, 0xf4, 0x54, + 0xfd, 0x19, 0x4b, 0xd7, 0x23, 0xdd, 0xfd, 0x71, 0x77, 0x5f, 0xbe, 0xac, 0x5f, 0x95, 0x2e, 0xcb, + 0x69, 0x7a, 0xac, 0xcb, 0xd2, 0x55, 0xe9, 0x73, 0xf9, 0xb2, 0x7c, 0x75, 0x5f, 0x2f, 0x5d, 0x5c, + 0xdc, 0x96, 0xef, 0xee, 0x52, 0x38, 0x69, 0x29, 0xdd, 0xfb, 0xc3, 0xa7, 0x3b, 0x2f, 0xdd, 0x94, + 0x3e, 0x55, 0xaa, 0x95, 0xfb, 0x4a, 0xf9, 0x8e, 0xda, 0x1b, 0x5b, 0x63, 0xc6, 0xef, 0xf5, 0xa8, + 0xac, 0xab, 0x46, 0x7e, 0xde, 0x82, 0x50, 0xbc, 0x58, 0x4d, 0x11, 0x34, 0x7c, 0xa7, 0x1d, 0xcb, + 0x35, 0x35, 0x26, 0x3d, 0xf3, 0xd7, 0x82, 0xec, 0x80, 0xec, 0xcc, 0xef, 0x13, 0xf9, 0x32, 0xa0, + 0x31, 0xbe, 0x5b, 0x15, 0xde, 0x73, 0xdf, 0x31, 0x0a, 0x4b, 0x75, 0xbd, 0x2c, 0xd5, 0xc2, 0x21, + 0x0c, 0xd3, 0x49, 0x6c, 0x8e, 0xd5, 0x92, 0x63, 0x16, 0x94, 0xe3, 0x14, 0x94, 0x07, 0x1a, 0x03, + 0x8d, 0x81, 0xc6, 0x40, 0x63, 0xa0, 0xf1, 0xfb, 0xff, 0x62, 0xa2, 0x3b, 0xc3, 0x3b, 0x2d, 0x49, + 0x16, 0x34, 0x66, 0xd8, 0x7a, 0xe7, 0xf1, 0x56, 0x3d, 0x56, 0x9c, 0xc7, 0xc9, 0x2d, 0xec, 0xfc, + 0x30, 0x1b, 0x36, 0x9e, 0x7e, 0xdc, 0xf1, 0x43, 0x4d, 0x3c, 0x50, 0xce, 0x6d, 0x35, 0x6c, 0xd7, + 0xf2, 0x5b, 0x9d, 0x50, 0xcc, 0xd7, 0x99, 0x1e, 0x1f, 0x82, 0x9b, 0xfc, 0xd6, 0xcc, 0xeb, 0x2c, + 0xae, 0x25, 0xbd, 0x54, 0x2b, 0xbd, 0xa7, 0x85, 0xa6, 0xb4, 0x4e, 0xab, 0x61, 0xf9, 0x8b, 0xbc, + 0xb3, 0xab, 0xf4, 0x4c, 0x6c, 0xbd, 0x12, 0x5b, 0x8f, 0xcc, 0xe9, 0x8d, 0xc1, 0xa3, 0x49, 0x2e, + 0xfb, 0xb2, 0x7a, 0xcd, 0xb9, 0xc6, 0x68, 0xa6, 0x56, 0xf4, 0xec, 0x18, 0x7e, 0x4f, 0xb3, 0x69, + 0xc7, 0x3e, 0x51, 0xd3, 0x8e, 0x65, 0xcb, 0x23, 0x4b, 0x07, 0x12, 0x68, 0xdb, 0xb1, 0x64, 0xf9, + 0x12, 0x03, 0x99, 0x48, 0xb8, 0x1c, 0xef, 0x79, 0x6f, 0x52, 0xd4, 0xf6, 0x86, 0x4b, 0xae, 0xd1, + 0x0f, 0x66, 0x30, 0x9c, 0xfd, 0xfc, 0xec, 0x8b, 0x67, 0x7b, 0x91, 0x8c, 0x2f, 0x91, 0xf5, 0x89, + 0x2b, 0xb0, 0xe1, 0x52, 0xb5, 0xe1, 0x56, 0x76, 0x8a, 0x89, 0x96, 0x2e, 0xbe, 0x51, 0x32, 0xbe, + 0x24, 0x23, 0x8d, 0x03, 0x56, 0x6d, 0x86, 0x0c, 0x1b, 0x25, 0x2b, 0x36, 0x0b, 0x8d, 0x59, 0x12, + 0xbb, 0x79, 0xc0, 0x0a, 0xe5, 0xa4, 0xa6, 0xac, 0x14, 0xb7, 0x95, 0xf4, 0xf6, 0x52, 0xd9, 0x66, + 0x5a, 0xdb, 0x4d, 0x75, 0xdb, 0x69, 0x6f, 0x3f, 0xed, 0x6d, 0xa8, 0xbb, 0x1d, 0x25, 0x2d, 0x84, + 0x98, 0xeb, 0x16, 0x77, 0x9b, 0x46, 0x17, 0xc8, 0xf8, 0xc9, 0x97, 0xae, 0x78, 0x7c, 0x87, 0x39, + 0x95, 0x31, 0x97, 0x78, 0xb3, 0x54, 0xd9, 0x0d, 0xae, 0xbb, 0xd1, 0xc9, 0x36, 0x3c, 0xd9, 0xc6, + 0xa7, 0x12, 0x00, 0x39, 0x41, 0x50, 0xf0, 0x32, 0x6c, 0xd3, 0x34, 0x4c, 0x8d, 0xed, 0x66, 0x5a, + 0xee, 0x76, 0x4a, 0x41, 0x3b, 0x64, 0xd9, 0x73, 0xaf, 0xf3, 0xb2, 0x2e, 0x75, 0xf6, 0x75, 0x0c, + 0x4c, 0xe3, 0xe4, 0xe6, 0x27, 0xdb, 0x0d, 0x04, 0x70, 0x02, 0x38, 0xb1, 0x9e, 0x38, 0xb1, 0x26, + 0x7d, 0xd3, 0xdb, 0x6a, 0x02, 0x10, 0x4d, 0x83, 0x1a, 0x1b, 0x83, 0x98, 0x43, 0xcc, 0xb3, 0x21, + 0xe6, 0x4e, 0xdb, 0x52, 0x9e, 0xf0, 0x48, 0xd0, 0x4f, 0x15, 0xae, 0x1d, 0x3e, 0xfa, 0x83, 0xd2, + 0xea, 0xa8, 0xed, 0xb2, 0x99, 0x17, 0xff, 0x5e, 0xb4, 0xb4, 0xf6, 0xda, 0xb6, 0x62, 0xb5, 0xad, + 0x79, 0xe9, 0x55, 0xac, 0xbe, 0x35, 0x37, 0xd0, 0x7f, 0x76, 0x76, 0x1e, 0xf6, 0xad, 0xd3, 0xda, + 0xcf, 0x87, 0xbc, 0x75, 0x5a, 0x1b, 0xfc, 0x98, 0xef, 0xff, 0x35, 0xf8, 0xb9, 0xf0, 0xb0, 0x6f, + 0x15, 0x47, 0x3f, 0x1f, 0x3e, 0xec, 0x5b, 0x87, 0xb5, 0xdd, 0xaf, 0x5f, 0x3f, 0xee, 0xfe, 0x38, + 0xe8, 0xca, 0x5f, 0xb8, 0x37, 0xbc, 0xd9, 0xee, 0xcf, 0x9d, 0x87, 0xbc, 0x55, 0xa8, 0x8d, 0x7e, + 0x39, 0x78, 0xd8, 0xb7, 0x0a, 0xb5, 0xdd, 0xdd, 0xbf, 0xe5, 0x94, 0x5f, 0xa6, 0xa6, 0x74, 0x65, + 0xf7, 0x43, 0x82, 0x7b, 0xe9, 0x68, 0x4d, 0xf7, 0x92, 0x6d, 0x3d, 0x95, 0xac, 0x5f, 0x6a, 0x3f, + 0xf2, 0x1f, 0x8a, 0xdd, 0xb3, 0xdd, 0x1f, 0xc7, 0xdd, 0xd9, 0x0f, 0x7f, 0x2e, 0xfa, 0x5a, 0xfe, + 0xc3, 0x71, 0xf7, 0x6c, 0xc9, 0xbf, 0x1c, 0x75, 0xcf, 0x62, 0x8e, 0x71, 0xd8, 0xdd, 0x99, 0xfb, + 0x6a, 0xef, 0xf3, 0xc2, 0xb2, 0x0b, 0x8a, 0x4b, 0x2e, 0x38, 0x58, 0x76, 0xc1, 0xc1, 0x92, 0x0b, + 0x96, 0x3e, 0x52, 0x61, 0xc9, 0x05, 0x87, 0xdd, 0x9f, 0x73, 0xdf, 0xdf, 0x59, 0xfc, 0xd5, 0xa3, + 0xee, 0xee, 0xcf, 0x65, 0xff, 0x76, 0xdc, 0xfd, 0x79, 0xb6, 0xbb, 0xbb, 0xb7, 0x93, 0xef, 0x09, + 0xdc, 0xc9, 0x40, 0x06, 0xf3, 0xb5, 0x39, 0xd1, 0x1c, 0x88, 0x9a, 0x79, 0x01, 0xdb, 0xe2, 0xbd, + 0x0f, 0x0f, 0x03, 0x0c, 0x44, 0x68, 0x85, 0xf6, 0xb3, 0x3a, 0x05, 0x1c, 0x0d, 0x00, 0x0e, 0x08, + 0x0e, 0xb8, 0x96, 0x1c, 0x30, 0xb4, 0x9f, 0xe3, 0xf6, 0xc8, 0x5e, 0x2b, 0x0a, 0xd8, 0x71, 0xbc, + 0xf0, 0xa0, 0x40, 0xa0, 0xb1, 0x8f, 0x35, 0x86, 0x50, 0xab, 0x03, 0x42, 0x37, 0x1b, 0xd1, 0x83, + 0xe8, 0xd4, 0x09, 0x21, 0x02, 0xbf, 0xa5, 0xc3, 0x69, 0xd6, 0x11, 0x99, 0x1b, 0x8f, 0xa0, 0x22, + 0x06, 0x11, 0xfb, 0x9c, 0x5e, 0x02, 0x8d, 0xba, 0x23, 0xa6, 0x96, 0xa0, 0x58, 0x38, 0x2d, 0x9e, + 0x1e, 0x1d, 0x17, 0x4e, 0x0f, 0x53, 0xbc, 0x16, 0x5b, 0xc9, 0x5c, 0x9d, 0x35, 0xbb, 0xe5, 0x9b, + 0x78, 0xb5, 0x94, 0xe3, 0x01, 0xe9, 0x34, 0x5b, 0xa6, 0x68, 0xfb, 0x2c, 0x5b, 0x2f, 0x74, 0x77, + 0xff, 0xbe, 0xfb, 0xcf, 0x0d, 0xa6, 0xcd, 0xa4, 0x41, 0x5a, 0xc9, 0xaa, 0x39, 0x63, 0x42, 0xae, + 0x92, 0x11, 0x35, 0x9b, 0x9d, 0xb4, 0x17, 0xfd, 0xf8, 0x6e, 0xb2, 0x94, 0xfc, 0x0c, 0xc4, 0xa9, + 0x70, 0x27, 0xe9, 0x54, 0x56, 0x73, 0x26, 0xa7, 0xbe, 0xae, 0x1d, 0x92, 0x23, 0x92, 0x91, 0x3b, + 0xf5, 0xda, 0x76, 0xae, 0xb0, 0x9f, 0xe2, 0x9d, 0x6c, 0x9f, 0x03, 0xf7, 0x63, 0xb9, 0x6e, 0x02, + 0x7d, 0xd1, 0xfe, 0xf8, 0x71, 0x28, 0x9b, 0x7b, 0xc3, 0x65, 0x33, 0x28, 0xa2, 0x83, 0xbc, 0x6d, + 0x69, 0x09, 0x1d, 0x5c, 0xc6, 0x9c, 0xbd, 0x54, 0x80, 0x80, 0xae, 0xb5, 0x80, 0x22, 0x7b, 0x09, + 0xae, 0x2a, 0xb8, 0xaa, 0x58, 0x5c, 0x55, 0xc8, 0x5e, 0x42, 0xf6, 0x12, 0x70, 0x02, 0x38, 0xb1, + 0x6a, 0xd5, 0x91, 0xbd, 0x84, 0xec, 0x25, 0x88, 0x39, 0xb2, 0x97, 0xe2, 0x08, 0x3a, 0xb2, 0x97, + 0x90, 0xbd, 0x84, 0xec, 0x25, 0x64, 0x2f, 0x21, 0x7b, 0x09, 0xd9, 0x4b, 0x1a, 0xf7, 0x41, 0xf6, + 0x12, 0x38, 0x20, 0x38, 0x20, 0xb2, 0x97, 0x4c, 0xa9, 0x6d, 0x64, 0x2f, 0x4d, 0x3e, 0x08, 0xb2, + 0x97, 0xb4, 0xfe, 0x20, 0x7b, 0x29, 0x45, 0x6b, 0x81, 0xec, 0xa5, 0x58, 0x00, 0x88, 0xec, 0xa5, + 0x0d, 0xa3, 0xcd, 0x6b, 0x99, 0xbd, 0xf4, 0x4e, 0x81, 0x39, 0xf9, 0x09, 0xd0, 0x2b, 0x0e, 0xf3, + 0x2f, 0xf1, 0x16, 0xbf, 0x38, 0xd2, 0x7a, 0xd4, 0xe6, 0x36, 0xd7, 0x18, 0x4e, 0x65, 0x73, 0x28, + 0x74, 0x8d, 0xeb, 0x8d, 0x75, 0xdb, 0x1f, 0xb7, 0x5e, 0x8a, 0x86, 0xc9, 0x4a, 0xd5, 0xc5, 0xf8, + 0x73, 0xa4, 0x53, 0x1a, 0xed, 0xfd, 0xd4, 0xa0, 0x58, 0xa9, 0x40, 0xb1, 0x8b, 0xa0, 0x15, 0x50, + 0x04, 0x2d, 0x3b, 0x55, 0xf7, 0xe4, 0x6a, 0x7d, 0x2e, 0xd9, 0x59, 0x4e, 0x63, 0x59, 0x55, 0xcd, + 0x85, 0x3b, 0x6c, 0xfc, 0x75, 0x94, 0xdb, 0xcb, 0x56, 0xb9, 0xbd, 0xc1, 0xea, 0x49, 0x14, 0x00, + 0x1f, 0x7c, 0x1f, 0x85, 0xf6, 0x50, 0x68, 0x6f, 0xf2, 0x8b, 0x28, 0xb4, 0x87, 0x54, 0x55, 0xa4, + 0xaa, 0x32, 0xfb, 0x85, 0x10, 0x97, 0x40, 0x5c, 0x02, 0xa9, 0xaa, 0x0a, 0x73, 0x81, 0x0c, 0x34, + 0x48, 0x39, 0xa4, 0xfc, 0x9d, 0x55, 0x47, 0x06, 0x1a, 0x32, 0xd0, 0x90, 0x81, 0xa6, 0xbf, 0x97, + 0x90, 0x81, 0x86, 0x0c, 0x34, 0x64, 0xa0, 0xe9, 0xdd, 0x07, 0x19, 0x68, 0xe0, 0x80, 0xe0, 0x80, + 0xc8, 0x40, 0x33, 0xa5, 0xb6, 0x91, 0x81, 0x36, 0xf9, 0x20, 0xc8, 0x40, 0xd3, 0xfa, 0x83, 0x0c, + 0xb4, 0x14, 0xad, 0x05, 0x32, 0xd0, 0x62, 0x01, 0x20, 0x32, 0xd0, 0x36, 0x8c, 0x36, 0x67, 0x37, + 0x03, 0x6d, 0x2a, 0xd7, 0x60, 0xf8, 0x5b, 0x02, 0x95, 0xb3, 0x3c, 0xf1, 0x1a, 0x5a, 0xdf, 0x5a, + 0xed, 0x40, 0x3e, 0xe0, 0x39, 0xbe, 0x14, 0x31, 0x4f, 0xc4, 0x3c, 0x35, 0xe4, 0x4e, 0x3a, 0xe6, + 0x39, 0xda, 0x79, 0xea, 0x26, 0x70, 0x34, 0x82, 0x9a, 0x0d, 0x9c, 0x87, 0x0d, 0x0c, 0x1b, 0x98, + 0xd3, 0x06, 0x96, 0x15, 0x89, 0xe8, 0x42, 0xc9, 0xec, 0x95, 0xa5, 0x9b, 0x46, 0x2a, 0x9b, 0x85, + 0x48, 0x4c, 0xb4, 0xc5, 0x85, 0x42, 0x6c, 0x48, 0xc5, 0x87, 0x4a, 0x8c, 0xc8, 0xc5, 0x89, 0x5c, + 0xac, 0xa8, 0xc5, 0x4b, 0xcf, 0x76, 0x51, 0xb4, 0x40, 0x94, 0xc5, 0x2e, 0x1a, 0xc0, 0xf1, 0x9a, + 0x42, 0xdf, 0xe4, 0x1d, 0xc7, 0x61, 0xfa, 0xc3, 0x69, 0xae, 0x08, 0x8d, 0xdd, 0xac, 0x2d, 0x94, + 0x94, 0xc2, 0xc9, 0x22, 0xa4, 0xd4, 0xc2, 0xca, 0x26, 0xb4, 0x6c, 0xc2, 0xcb, 0x25, 0xc4, 0x44, + 0x6e, 0x0c, 0xcd, 0x7d, 0xa7, 0xec, 0x57, 0x5e, 0xba, 0xeb, 0xb4, 0x5d, 0x0d, 0xf3, 0x2e, 0x87, + 0x84, 0x1c, 0x3d, 0x1a, 0x73, 0x9b, 0x7b, 0x11, 0xa1, 0x1f, 0x23, 0xef, 0x3a, 0xf6, 0xac, 0x0e, + 0xc7, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x29, 0x44, 0x3d, 0xed, 0x28, 0xd3, 0xac, 0x8c, 0x1e, + 0x13, 0x0c, 0x45, 0x13, 0x75, 0x1a, 0xfd, 0xa1, 0x11, 0x81, 0x6d, 0xea, 0x28, 0x14, 0x31, 0xb8, + 0xcd, 0x0d, 0x4b, 0x1c, 0x95, 0x8a, 0xc6, 0x65, 0x88, 0x88, 0x10, 0x89, 0xc7, 0xf4, 0x52, 0x11, + 0x46, 0xab, 0x4c, 0x2d, 0x15, 0x75, 0xf4, 0xca, 0xc8, 0x9a, 0x6d, 0xa5, 0x63, 0x94, 0x5a, 0x06, + 0xc9, 0x96, 0xb2, 0xeb, 0x73, 0x29, 0x9c, 0x2b, 0xba, 0x42, 0x41, 0xb8, 0x40, 0xb8, 0x40, 0xb8, + 0xcc, 0x10, 0x2e, 0x4f, 0xfe, 0x5c, 0xd6, 0xbb, 0x56, 0xe6, 0x29, 0xc1, 0x58, 0x5a, 0xb9, 0x4e, + 0x8c, 0x7c, 0x6b, 0xe2, 0x1c, 0x80, 0xdd, 0x6c, 0xfa, 0x22, 0x08, 0x72, 0x84, 0x14, 0x81, 0x70, + 0x06, 0x79, 0x66, 0x92, 0x7e, 0x46, 0x17, 0xcc, 0xec, 0xf7, 0x22, 0xc3, 0xdc, 0xce, 0xfb, 0x42, + 0x18, 0xc6, 0xa6, 0x4a, 0xcb, 0x58, 0x7a, 0x03, 0xa3, 0x27, 0x16, 0xfe, 0x96, 0x23, 0x7f, 0x89, + 0x1a, 0xe9, 0x88, 0xdd, 0x0f, 0x19, 0xda, 0xd4, 0x47, 0xd8, 0xd4, 0xef, 0x6f, 0x6a, 0x1c, 0x9d, + 0x30, 0x7f, 0x74, 0x22, 0xfd, 0x22, 0xbe, 0x95, 0xae, 0xe7, 0x22, 0x82, 0x1c, 0x06, 0x46, 0x32, + 0x48, 0xff, 0x6a, 0x8a, 0x27, 0xc7, 0x13, 0x4d, 0x8b, 0xc8, 0xec, 0x5a, 0x08, 0x32, 0x84, 0xbe, + 0x80, 0x5c, 0xa5, 0x29, 0xbc, 0xd0, 0x09, 0xdf, 0x3e, 0xd9, 0x81, 0xa0, 0xf7, 0x8e, 0x8c, 0xe6, + 0xa6, 0x7a, 0x7d, 0x5e, 0xaa, 0xd6, 0x2f, 0xca, 0xbf, 0x54, 0xae, 0xca, 0x17, 0xf5, 0xab, 0xf2, + 0xbf, 0xef, 0xeb, 0xbf, 0x5e, 0xdf, 0xe4, 0x38, 0x9c, 0x26, 0x01, 0x0b, 0x4e, 0xfe, 0xe0, 0x41, + 0xde, 0xe9, 0xf9, 0xa9, 0x56, 0xae, 0xfe, 0x45, 0x8f, 0x07, 0xdd, 0x0f, 0x59, 0x9b, 0x8d, 0x8b, + 0xdb, 0xeb, 0x1b, 0x86, 0x79, 0xd8, 0x4a, 0x27, 0xca, 0xc2, 0x5d, 0xa6, 0xee, 0x2e, 0xf3, 0x45, + 0xa3, 0xe3, 0x13, 0x00, 0x57, 0xb4, 0xf5, 0x46, 0x03, 0x6a, 0x3a, 0x09, 0x34, 0x1b, 0x7f, 0xc1, + 0xf9, 0x06, 0xe7, 0x1b, 0x9c, 0x6f, 0x46, 0x9c, 0x6f, 0xea, 0x8d, 0xcb, 0x96, 0xd2, 0xb3, 0x7c, + 0x52, 0x40, 0x6a, 0x34, 0x97, 0x4e, 0xf1, 0x34, 0xc5, 0xdc, 0x38, 0x74, 0xa7, 0x2b, 0xa2, 0x03, + 0x0b, 0xd1, 0x4f, 0x52, 0x07, 0x2e, 0xf4, 0xa7, 0x53, 0x61, 0x2a, 0x35, 0x33, 0x0a, 0x49, 0x32, + 0x09, 0x35, 0xb5, 0x0b, 0xd2, 0x79, 0x8d, 0x69, 0x0d, 0xa4, 0xf3, 0xd2, 0x6a, 0x03, 0x8d, 0x46, + 0xed, 0x4b, 0xd1, 0xff, 0x58, 0xef, 0x54, 0xe1, 0x4c, 0x23, 0xf7, 0x81, 0x5c, 0xa7, 0x1a, 0xbf, + 0x42, 0xe1, 0x3f, 0xd9, 0x0d, 0x61, 0xf5, 0xe6, 0x8f, 0x00, 0xc7, 0x26, 0x87, 0xc3, 0xf1, 0x84, + 0x9e, 0x50, 0x3a, 0x4f, 0xc0, 0x32, 0x05, 0x2c, 0x73, 0x9e, 0x36, 0xe6, 0x58, 0x82, 0xe6, 0xa9, + 0xa0, 0xb9, 0x4d, 0xa7, 0x75, 0x3a, 0x88, 0x48, 0x0c, 0x33, 0x63, 0xb4, 0x6a, 0x89, 0x27, 0x0c, + 0x56, 0x0e, 0xf1, 0x4d, 0x87, 0xb1, 0xaa, 0x2b, 0xd6, 0xf3, 0x3a, 0x96, 0x6e, 0x7b, 0xcc, 0xe9, + 0x5b, 0xaa, 0xed, 0x41, 0x5c, 0xc5, 0x83, 0x4a, 0xf8, 0x39, 0x40, 0x80, 0x0d, 0x0c, 0xb8, 0x40, + 0x81, 0x1d, 0x1c, 0xd8, 0x41, 0x82, 0x13, 0x2c, 0x68, 0x40, 0x83, 0x08, 0x3c, 0xe8, 0x3d, 0x5e, + 0x0c, 0x36, 0x0f, 0x87, 0x0d, 0xb4, 0xd4, 0x26, 0xda, 0xeb, 0x2f, 0xf3, 0x59, 0x04, 0x58, 0xc1, + 0xec, 0x07, 0xc3, 0xdf, 0xfb, 0x9d, 0x79, 0x52, 0x12, 0x52, 0xa1, 0xa8, 0xb1, 0x14, 0x74, 0x1e, + 0x19, 0xf1, 0x7f, 0x6a, 0x74, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x80, 0xcc, 0xaa, 0x80, + 0x87, 0xb1, 0x0a, 0xf8, 0x47, 0xa3, 0xe3, 0xfb, 0xc2, 0x0b, 0x77, 0x76, 0xf7, 0x3e, 0x7e, 0xdc, + 0x8b, 0xbe, 0x51, 0x1b, 0x5e, 0x32, 0x89, 0x7b, 0xc1, 0x82, 0xcf, 0xa2, 0x91, 0x95, 0xdd, 0x6f, + 0x0c, 0xda, 0x24, 0x51, 0x6b, 0xa6, 0xfc, 0x1a, 0xd2, 0xa4, 0xd6, 0xd0, 0x1b, 0xb8, 0xad, 0x86, + 0x25, 0x5e, 0xc3, 0xb3, 0x50, 0xb8, 0xe2, 0x45, 0x84, 0xfe, 0x9b, 0xd5, 0xf2, 0xac, 0xc6, 0xb7, + 0xfe, 0x89, 0x41, 0x16, 0xa3, 0xb7, 0x1f, 0xd2, 0x67, 0xb0, 0x7a, 0x93, 0x36, 0x78, 0x6b, 0xba, + 0x0e, 0x38, 0x9a, 0x90, 0xe0, 0x98, 0xfa, 0x70, 0x86, 0x06, 0xa7, 0x3c, 0xcd, 0x5a, 0x81, 0x42, + 0xfd, 0xc9, 0xd7, 0x49, 0x81, 0x79, 0xbf, 0xbb, 0xa2, 0x3c, 0x21, 0x0c, 0xe3, 0xf5, 0xc1, 0x34, + 0xea, 0xf9, 0x2b, 0xc0, 0xf3, 0x07, 0xcf, 0x1f, 0x3c, 0x7f, 0xf0, 0xfc, 0xc1, 0xec, 0x83, 0xd9, + 0x07, 0xb3, 0x0f, 0x66, 0x1f, 0x3c, 0x7f, 0xf0, 0xfc, 0x41, 0x05, 0x40, 0x05, 0x40, 0x05, 0x40, + 0x05, 0xc0, 0xf3, 0xc7, 0x6c, 0xcd, 0x64, 0xd8, 0xad, 0x33, 0xf0, 0x66, 0x20, 0x1f, 0x3f, 0x95, + 0xab, 0x93, 0xd3, 0xf2, 0x7a, 0xf9, 0x9d, 0x46, 0xe8, 0x8d, 0x8e, 0x4f, 0xf6, 0x9e, 0xe5, 0xb6, + 0x7f, 0xf3, 0xfa, 0x5d, 0xff, 0xe6, 0xf5, 0x2b, 0xf1, 0x1a, 0xfe, 0xda, 0x6a, 0xd7, 0x2b, 0xa3, + 0x3b, 0xde, 0x8a, 0xa7, 0x34, 0xe7, 0xd1, 0xea, 0xb9, 0xf1, 0x48, 0xdc, 0x77, 0x64, 0x79, 0xb3, + 0x05, 0x9c, 0x03, 0xe0, 0xa5, 0x5c, 0x38, 0x07, 0x40, 0xea, 0x6e, 0x43, 0x59, 0x6f, 0xb3, 0xb6, + 0x13, 0x8e, 0x7c, 0xe2, 0xc8, 0xa7, 0x79, 0x1b, 0x08, 0x65, 0xbd, 0xa7, 0x9e, 0x1d, 0x65, 0xbd, + 0x81, 0x7a, 0x40, 0xbd, 0xcd, 0x41, 0x3d, 0x94, 0xf5, 0x96, 0x79, 0x30, 0x94, 0xf5, 0x46, 0x59, + 0x6f, 0x94, 0xf5, 0x26, 0x76, 0x63, 0x6e, 0xa3, 0xac, 0x37, 0xca, 0x7a, 0x83, 0x70, 0x81, 0x70, + 0x6d, 0x06, 0xe1, 0x42, 0x59, 0x6f, 0x05, 0xd7, 0x19, 0xca, 0x7a, 0xd3, 0xfe, 0x41, 0x59, 0xef, + 0x38, 0x37, 0x40, 0x59, 0x6f, 0x26, 0x76, 0xbe, 0x8d, 0xb2, 0xde, 0x49, 0x6f, 0x6a, 0x94, 0xf5, + 0x46, 0x59, 0x6f, 0x26, 0x63, 0x6e, 0x1b, 0x65, 0xbd, 0x09, 0x41, 0x06, 0x65, 0xbd, 0xdf, 0x71, + 0x9a, 0xa0, 0xac, 0x37, 0xaf, 0x92, 0xde, 0x46, 0x59, 0xef, 0x6d, 0x94, 0xf5, 0x4e, 0x89, 0xbb, + 0x0c, 0x65, 0xbd, 0xe1, 0x7c, 0x83, 0xf3, 0x0d, 0xce, 0x37, 0xf5, 0x5d, 0x87, 0xb2, 0xde, 0xeb, + 0x9c, 0x46, 0xac, 0x91, 0xd6, 0xad, 0x90, 0xcd, 0xbb, 0xc5, 0x38, 0xef, 0x3d, 0x04, 0x52, 0x4d, + 0x19, 0xcc, 0x55, 0x9d, 0x20, 0x2c, 0x85, 0xa1, 0x5a, 0xf2, 0x63, 0xee, 0xd2, 0xf1, 0xca, 0xae, + 0xe8, 0x61, 0x49, 0x8f, 0x5b, 0x7b, 0x1d, 0xd7, 0x55, 0x48, 0x5b, 0xbe, 0xb4, 0x5f, 0xf5, 0x07, + 0xb9, 0xf6, 0x9b, 0xc2, 0x17, 0xcd, 0x4f, 0x6f, 0xc3, 0x21, 0x58, 0x27, 0x5c, 0x73, 0x83, 0xb3, + 0x6e, 0xec, 0x9c, 0x52, 0xe2, 0x78, 0xbc, 0x4c, 0x78, 0x39, 0x71, 0x89, 0xbf, 0xe9, 0xe3, 0x7d, + 0x33, 0xe6, 0x2a, 0xa9, 0xae, 0x0e, 0xc7, 0xaa, 0xc4, 0x9b, 0xb0, 0xd5, 0xaf, 0x1f, 0xe3, 0xd5, + 0x47, 0xe4, 0x23, 0xee, 0x2b, 0x47, 0x6a, 0x4e, 0x8a, 0xb4, 0x48, 0xd2, 0x4d, 0x69, 0x5a, 0xa9, + 0x42, 0x1f, 0xb5, 0x68, 0xa2, 0x2a, 0x1d, 0xd4, 0xa6, 0x7d, 0xda, 0xf4, 0x4e, 0x97, 0xc6, 0xd1, + 0x0a, 0x9d, 0x34, 0xfd, 0xd2, 0x38, 0x46, 0xa8, 0x72, 0x4c, 0x70, 0x41, 0x5d, 0xfc, 0xe1, 0xb2, + 0x19, 0x14, 0x51, 0xb9, 0x03, 0x3a, 0x4a, 0x07, 0x72, 0x24, 0x0f, 0xe0, 0x48, 0x1f, 0xb8, 0x81, + 0x80, 0x66, 0x54, 0x40, 0x65, 0x0f, 0xb8, 0xe4, 0x9a, 0x22, 0x68, 0xf8, 0x4e, 0x5b, 0x89, 0xe5, + 0x44, 0x2b, 0x3e, 0x39, 0x88, 0x2c, 0xab, 0x55, 0x72, 0x6c, 0x28, 0x3b, 0x32, 0x74, 0x1c, 0x17, + 0x24, 0x8e, 0x0a, 0x5d, 0xc7, 0x04, 0x99, 0x23, 0x82, 0xcc, 0xf1, 0x40, 0xe5, 0x68, 0xe0, 0xb5, + 0x9e, 0x94, 0x1d, 0x07, 0xfa, 0x87, 0x41, 0x14, 0x0f, 0x7f, 0x48, 0x10, 0x6b, 0x09, 0x9c, 0x6d, + 0xab, 0xed, 0x7f, 0x35, 0x1e, 0x09, 0x29, 0x87, 0x94, 0x67, 0x4c, 0xca, 0x9d, 0xb6, 0xa5, 0x3c, + 0xe1, 0x3a, 0xd9, 0x63, 0x7a, 0x59, 0x62, 0x04, 0xc7, 0xa0, 0xfb, 0x59, 0x5f, 0xda, 0xae, 0x6d, + 0x8a, 0x3c, 0x18, 0xb2, 0x7c, 0x17, 0xb3, 0xc9, 0x5a, 0x7b, 0xc3, 0x9b, 0xed, 0xfe, 0xdc, 0x79, + 0xc8, 0x5b, 0x85, 0xda, 0xe8, 0x97, 0x83, 0x87, 0x7d, 0xab, 0x50, 0xd3, 0xca, 0xf4, 0xa8, 0x99, + 0x74, 0xec, 0xd2, 0xec, 0xa5, 0xa3, 0x35, 0xdd, 0x4b, 0xc8, 0x91, 0x32, 0x9f, 0x23, 0xb5, 0xb7, + 0x93, 0xef, 0x09, 0xdc, 0xc9, 0x40, 0x06, 0xf3, 0xb5, 0x39, 0xd1, 0x1c, 0x88, 0x9a, 0x79, 0x01, + 0xdb, 0xe2, 0xbd, 0x0f, 0x0f, 0x03, 0x0c, 0x44, 0x68, 0x85, 0xf6, 0xb3, 0x3a, 0x05, 0x1c, 0x0d, + 0x00, 0x0e, 0x08, 0x0e, 0xb8, 0x96, 0x1c, 0x30, 0xb4, 0x9f, 0xad, 0xb0, 0x37, 0xca, 0x86, 0x51, + 0x40, 0xed, 0x83, 0xbf, 0x04, 0x07, 0x7e, 0x89, 0x0e, 0xfa, 0x12, 0x24, 0x08, 0x50, 0x1e, 0xec, + 0xa5, 0xae, 0x77, 0x49, 0x7c, 0x90, 0x97, 0xe3, 0x30, 0x28, 0x45, 0x5d, 0x53, 0xca, 0x03, 0xbb, + 0x5c, 0x4b, 0x40, 0x7d, 0x40, 0x97, 0x65, 0x2d, 0x12, 0x4a, 0x48, 0xc9, 0x9a, 0xdd, 0xf2, 0x4d, + 0xbc, 0x5a, 0xda, 0x35, 0x5f, 0xd2, 0x65, 0xb6, 0x4c, 0xd1, 0xf6, 0x59, 0xb6, 0x5e, 0xe8, 0xee, + 0xfe, 0x7d, 0xf7, 0x9f, 0x1b, 0x4c, 0x9b, 0xd7, 0x2c, 0x23, 0x41, 0x22, 0xdb, 0x29, 0x46, 0xa8, + 0x73, 0x4b, 0x63, 0x52, 0x46, 0xd9, 0x4a, 0xb1, 0x88, 0xab, 0x5c, 0x7a, 0x92, 0x52, 0x3a, 0x92, + 0x52, 0xfa, 0x91, 0x5c, 0xba, 0xd1, 0xaa, 0x19, 0x91, 0xdc, 0x1e, 0x74, 0xdb, 0x22, 0x17, 0x2b, + 0x66, 0xfd, 0x7e, 0x6e, 0xd0, 0xfb, 0x9b, 0x6a, 0xf9, 0x56, 0x59, 0xfc, 0x2f, 0x4b, 0xa6, 0x2a, + 0xee, 0x14, 0x11, 0x4c, 0xcd, 0xe2, 0xf7, 0x99, 0x7f, 0xda, 0xe9, 0x4f, 0x66, 0x9e, 0x7b, 0xd5, + 0xf3, 0x2a, 0x3d, 0xe7, 0x82, 0xd5, 0x5a, 0xbe, 0x3a, 0xd3, 0xaf, 0x31, 0x7e, 0xd8, 0x89, 0x07, + 0xcd, 0xbd, 0x88, 0x20, 0xb0, 0x9f, 0xfb, 0xc7, 0x62, 0xa6, 0x1f, 0x71, 0xa2, 0x20, 0xd7, 0xf0, + 0x1b, 0x33, 0xaf, 0xb7, 0x38, 0xc9, 0x60, 0xa9, 0x45, 0xfe, 0x9e, 0xc5, 0x3d, 0x69, 0x51, 0x2f, + 0xb9, 0x5d, 0x1c, 0x9b, 0x39, 0xb6, 0x4d, 0x1c, 0xdb, 0xe6, 0x9d, 0xb5, 0x69, 0xa3, 0x87, 0x93, + 0xdc, 0x0a, 0xcb, 0x02, 0xef, 0xab, 0x3a, 0xae, 0xc7, 0xeb, 0xa4, 0xbe, 0x22, 0xdf, 0x63, 0xa5, + 0x93, 0x24, 0x8e, 0x33, 0x24, 0xe6, 0x12, 0xc9, 0xba, 0x37, 0xa4, 0xdd, 0x18, 0xd2, 0xee, 0x8a, + 0xf8, 0x4b, 0xa8, 0x86, 0x4a, 0xab, 0x72, 0x2a, 0x72, 0x81, 0xf8, 0x2e, 0x7c, 0x27, 0x7c, 0x5b, + 0x3d, 0x17, 0x63, 0x17, 0xda, 0xf0, 0x8a, 0x55, 0x5a, 0x34, 0x96, 0xcd, 0x12, 0xdb, 0x47, 0x26, + 0xe3, 0x13, 0x93, 0xdc, 0x0e, 0xaa, 0x5e, 0x2f, 0x65, 0x2f, 0x97, 0xb2, 0x57, 0x4b, 0x7e, 0xbb, + 0xd0, 0x30, 0xa2, 0xd8, 0x7e, 0xa9, 0xf1, 0x2e, 0x79, 0x0b, 0xdc, 0xd6, 0xb3, 0x15, 0x73, 0xb3, + 0x4c, 0xe1, 0x44, 0x31, 0xc6, 0x77, 0xcb, 0x5e, 0xe7, 0xa5, 0xf7, 0x40, 0xdd, 0x8c, 0xe8, 0xf6, + 0xd1, 0x42, 0xed, 0x45, 0x3f, 0xbc, 0xd7, 0x8b, 0x6f, 0x81, 0x2e, 0x5f, 0xa0, 0x6f, 0x9a, 0xe2, + 0xb1, 0xf3, 0x6c, 0x09, 0x2f, 0xf4, 0x9d, 0x05, 0x1a, 0x72, 0x6e, 0x45, 0xa6, 0xbf, 0x0e, 0xac, + 0xce, 0x1e, 0x56, 0x0f, 0x56, 0x30, 0x10, 0xfe, 0x77, 0x27, 0xce, 0x84, 0x4c, 0x2f, 0xfc, 0xe8, + 0xb2, 0x78, 0xa8, 0x9d, 0x07, 0x6a, 0x67, 0x1f, 0xb5, 0xe3, 0x26, 0x54, 0xae, 0xe2, 0x79, 0x6a, + 0xbc, 0x4f, 0x71, 0x6b, 0x49, 0x6f, 0x31, 0x95, 0xad, 0xa6, 0xb9, 0xe5, 0x54, 0xb7, 0x9e, 0xf6, + 0x16, 0xd4, 0xde, 0x8a, 0xfa, 0x5b, 0x92, 0xc7, 0xff, 0x24, 0x9d, 0xfb, 0x2b, 0x3c, 0xfb, 0xd1, + 0x15, 0x4d, 0xf5, 0x48, 0xf0, 0x68, 0x00, 0xc9, 0x79, 0xd3, 0x3c, 0x1c, 0x9d, 0xd5, 0x48, 0xb2, + 0x82, 0x70, 0xe8, 0x0a, 0x09, 0x99, 0xb0, 0x90, 0x09, 0x0d, 0x9d, 0xf0, 0xa8, 0xb9, 0x93, 0xcd, + 0x47, 0x93, 0xd5, 0x0f, 0x18, 0x2b, 0x1e, 0x28, 0xe6, 0x4a, 0x1b, 0x89, 0x47, 0x99, 0xde, 0xb1, + 0x79, 0xe3, 0x90, 0x27, 0x08, 0x3b, 0x84, 0x3d, 0xc3, 0xc2, 0xee, 0x0c, 0xab, 0x29, 0xa9, 0x35, + 0xad, 0xd2, 0x29, 0xf0, 0x44, 0x53, 0xc8, 0x69, 0x5c, 0x82, 0xa7, 0xfc, 0xe9, 0xcb, 0xe7, 0xfa, + 0x5d, 0xf9, 0xf6, 0xb7, 0xca, 0x79, 0x99, 0x7d, 0x9d, 0xd6, 0x26, 0x62, 0x37, 0xef, 0xa3, 0x98, + 0x72, 0x19, 0xec, 0x4d, 0xd9, 0x91, 0xef, 0xfa, 0x2f, 0xe4, 0xdf, 0x3c, 0xd6, 0xd9, 0x44, 0x49, + 0x14, 0x57, 0x44, 0xef, 0xb4, 0x1f, 0x20, 0x86, 0x9d, 0x92, 0xa0, 0x9d, 0x92, 0xc1, 0x43, 0xc4, + 0xa3, 0xdd, 0x8f, 0x53, 0xc4, 0x26, 0x4f, 0x11, 0x43, 0x4a, 0xe1, 0x4d, 0x80, 0x37, 0x01, 0x06, + 0x06, 0x0c, 0x0c, 0x78, 0x13, 0xe0, 0x4d, 0x80, 0xb0, 0xc3, 0x9b, 0x00, 0x6f, 0x02, 0xbc, 0x09, + 0x4b, 0xbd, 0x09, 0xe9, 0xcb, 0xfe, 0x8d, 0x19, 0x2f, 0x47, 0xfa, 0x2f, 0xdf, 0xae, 0x90, 0x4f, + 0xfe, 0xbd, 0x1c, 0x8e, 0x5a, 0xbf, 0xe8, 0x8d, 0x73, 0x17, 0xc7, 0xf2, 0x4d, 0x73, 0x8e, 0xd0, + 0x74, 0xca, 0x8e, 0x46, 0xaa, 0xd0, 0xfb, 0x06, 0x79, 0x2c, 0x03, 0x3c, 0x76, 0x6a, 0x50, 0x01, + 0xa9, 0x41, 0xe6, 0x53, 0x83, 0x86, 0x37, 0x8c, 0x9f, 0x14, 0x34, 0xba, 0x80, 0x38, 0x1d, 0xa8, + 0x80, 0x74, 0x20, 0x46, 0x0e, 0x68, 0x28, 0x1d, 0xc8, 0x6e, 0xb7, 0xad, 0x21, 0xa2, 0x4a, 0x7a, + 0xf0, 0xa2, 0x2b, 0xe1, 0x6a, 0x87, 0x13, 0x2f, 0x31, 0x57, 0xbb, 0xf4, 0x31, 0x48, 0xc9, 0x2a, + 0x67, 0x34, 0x4e, 0xf2, 0x97, 0x40, 0x21, 0xe3, 0xae, 0x77, 0x11, 0x64, 0x0b, 0xb2, 0x05, 0xd9, + 0x5a, 0x25, 0x5b, 0x4e, 0x53, 0x49, 0xba, 0x9c, 0x26, 0xe4, 0x0b, 0xf2, 0x05, 0xf9, 0x7a, 0xff, + 0x9e, 0x6d, 0xdf, 0x69, 0xc5, 0x3a, 0x35, 0x36, 0xf7, 0x7e, 0xd1, 0x95, 0x90, 0x32, 0x48, 0x59, + 0x62, 0x52, 0xd6, 0x71, 0xbc, 0xf0, 0x44, 0x41, 0xc8, 0x24, 0xbc, 0xd1, 0x8a, 0xc5, 0x80, 0xd4, + 0x5a, 0x9c, 0x68, 0x44, 0x48, 0xb4, 0x2a, 0xcb, 0xe8, 0x16, 0xf3, 0xa1, 0x28, 0x18, 0xd3, 0x55, + 0x6b, 0xe8, 0x92, 0xf8, 0x94, 0x15, 0x0e, 0x0f, 0x13, 0x9c, 0x34, 0xa6, 0xa8, 0x44, 0xcd, 0xa8, + 0x12, 0x6a, 0x35, 0x54, 0x58, 0xde, 0xf0, 0x3a, 0x28, 0x20, 0x28, 0xa0, 0x4d, 0xa6, 0x79, 0x5a, + 0xbe, 0xc4, 0xf2, 0x6b, 0x18, 0xaf, 0x57, 0xad, 0xbc, 0x13, 0xb6, 0xd5, 0xb0, 0xc4, 0x6b, 0x78, + 0x16, 0x0a, 0x57, 0xbc, 0x88, 0xd0, 0x7f, 0xb3, 0xec, 0xb0, 0xf5, 0x12, 0xab, 0x12, 0xcc, 0x82, + 0x3d, 0xd6, 0xcf, 0xaa, 0x52, 0x70, 0xcb, 0xea, 0xfa, 0x62, 0x6b, 0x09, 0x46, 0xd4, 0xfa, 0x51, + 0x9c, 0xbd, 0x78, 0x0e, 0xfe, 0xed, 0x77, 0x62, 0x68, 0xc3, 0x1f, 0x94, 0xc3, 0x67, 0x1f, 0x50, + 0x75, 0x02, 0x01, 0x0b, 0x1d, 0x90, 0x41, 0xd5, 0x09, 0xf2, 0x88, 0xf2, 0x3b, 0x79, 0x16, 0xe6, + 0x0a, 0x48, 0xcd, 0x3d, 0xd6, 0xea, 0xba, 0x51, 0x97, 0x0b, 0xb7, 0xdc, 0xe2, 0xa2, 0x51, 0x9e, + 0x08, 0xff, 0x6a, 0xf9, 0x7f, 0x5a, 0x8e, 0x17, 0x84, 0xb6, 0xd7, 0x78, 0xaf, 0x7a, 0xd4, 0xfc, + 0x57, 0xcd, 0x94, 0x91, 0xf2, 0x44, 0xd8, 0xbb, 0x65, 0x2a, 0xab, 0x48, 0x8d, 0x9e, 0x8d, 0xaa, + 0x88, 0xd4, 0xec, 0x1c, 0xaf, 0x4e, 0x43, 0x98, 0xbb, 0x22, 0x1d, 0xc5, 0x4a, 0x96, 0x2f, 0x9a, + 0x2c, 0x94, 0x9b, 0x4f, 0x48, 0x58, 0xba, 0xa8, 0x6a, 0xd0, 0xb4, 0x32, 0x1f, 0xc1, 0x7e, 0x0a, + 0x83, 0xf8, 0xca, 0xbd, 0xff, 0xed, 0x6c, 0x14, 0x26, 0xb1, 0x9f, 0xc2, 0xb5, 0xd4, 0xe9, 0xbd, + 0xf7, 0x4a, 0x4b, 0xfe, 0x81, 0x08, 0xbf, 0x09, 0xdf, 0x13, 0xa1, 0xbc, 0x69, 0x1f, 0x5d, 0xb9, + 0x1e, 0x25, 0x49, 0xe2, 0x6d, 0xb6, 0xf5, 0xb3, 0xeb, 0x63, 0x6d, 0x46, 0x1e, 0x93, 0x5e, 0xfa, + 0xe8, 0xd0, 0x8b, 0xdd, 0xe8, 0x67, 0xe8, 0xbd, 0xa9, 0x9f, 0x07, 0x18, 0x0f, 0xa1, 0x76, 0x22, + 0x20, 0x9f, 0xb1, 0x13, 0x01, 0x72, 0xdb, 0x5a, 0x77, 0x7b, 0x93, 0x6d, 0x73, 0xb2, 0xed, 0x4e, + 0xb2, 0xed, 0x15, 0x3d, 0xb9, 0xb2, 0x07, 0xd4, 0x1c, 0xc5, 0xbe, 0xeb, 0x92, 0x25, 0xa5, 0x96, + 0x6e, 0x17, 0xa9, 0x12, 0x53, 0x44, 0x02, 0xa2, 0x2d, 0x28, 0x14, 0x02, 0x43, 0x27, 0x38, 0x54, + 0x02, 0x44, 0x2e, 0x48, 0xe4, 0x02, 0x45, 0x2a, 0x58, 0x6a, 0x02, 0xa6, 0x28, 0x68, 0xda, 0x02, + 0x37, 0xa5, 0x8f, 0xec, 0x66, 0xd3, 0x17, 0x41, 0xa0, 0xbf, 0xd2, 0x93, 0x1a, 0x6a, 0x34, 0xa8, + 0xe6, 0xd2, 0xd0, 0xb4, 0xb2, 0xd0, 0x16, 0x4d, 0x4a, 0x11, 0xa5, 0x17, 0x55, 0x6a, 0x91, 0x65, + 0x13, 0x5d, 0x36, 0x11, 0x66, 0x11, 0x65, 0x3d, 0x91, 0xd6, 0x14, 0x6d, 0x79, 0xb7, 0x66, 0x02, + 0xe2, 0xb9, 0x4d, 0xd4, 0x04, 0x64, 0x2c, 0x5e, 0x44, 0xcd, 0x40, 0xa2, 0x01, 0xff, 0xb3, 0xa2, + 0x29, 0xc8, 0x8f, 0xc3, 0xee, 0xdf, 0xf4, 0x77, 0x48, 0x2d, 0xa1, 0xae, 0x33, 0x66, 0x95, 0x8d, + 0xe2, 0xa9, 0x3f, 0x09, 0x57, 0xef, 0xac, 0x2b, 0x6f, 0x6f, 0xce, 0xe3, 0x3a, 0xf7, 0xc9, 0x9e, + 0xfd, 0x14, 0x06, 0x7b, 0x23, 0x4b, 0x7e, 0x2f, 0x32, 0x8e, 0xa4, 0x2a, 0x0e, 0xe9, 0xcf, 0xab, + 0x4a, 0x5a, 0x09, 0x85, 0xee, 0x25, 0x14, 0x6a, 0xdd, 0x4c, 0x15, 0xd0, 0x5f, 0xd0, 0x5f, 0xc3, + 0x88, 0xa4, 0xad, 0x1b, 0x35, 0xea, 0x2d, 0x2d, 0xd5, 0x83, 0xc7, 0x7a, 0xcd, 0xb0, 0x66, 0xea, + 0x31, 0x4d, 0xca, 0x75, 0x8a, 0xb1, 0x4c, 0xae, 0x86, 0xd3, 0xd2, 0x65, 0x90, 0xa9, 0xe9, 0xc4, + 0x66, 0xbe, 0x17, 0x80, 0x5f, 0xc0, 0x2f, 0x98, 0xef, 0x30, 0xdf, 0x61, 0xbe, 0xc3, 0x7c, 0x87, + 0xf9, 0x0e, 0xf3, 0x9d, 0xcd, 0x7c, 0xd7, 0x50, 0xef, 0x9e, 0x78, 0x0d, 0xad, 0x6f, 0xad, 0xb6, + 0xf5, 0xec, 0xb7, 0x3a, 0x6d, 0x3a, 0xf0, 0x9f, 0x19, 0x17, 0xf8, 0x0f, 0xfc, 0x07, 0xfe, 0xa7, + 0x0a, 0xff, 0xf5, 0x4d, 0x55, 0x4a, 0x93, 0x75, 0x91, 0xe9, 0x1a, 0xfd, 0x37, 0x0d, 0x26, 0xc1, + 0xcc, 0xef, 0x23, 0x13, 0xd7, 0x69, 0xe6, 0x32, 0x08, 0xc0, 0xad, 0x46, 0x28, 0xc2, 0xc0, 0x7a, + 0x6a, 0xf9, 0x7f, 0xd9, 0x7e, 0x53, 0xa1, 0x1a, 0xec, 0x3b, 0x80, 0x32, 0x33, 0x32, 0x40, 0x18, + 0x20, 0x0c, 0x10, 0x4e, 0x15, 0x08, 0x37, 0x5a, 0x1d, 0x2f, 0x14, 0xfe, 0x51, 0x91, 0x10, 0x86, + 0x29, 0x18, 0xb8, 0xda, 0x31, 0xe2, 0x65, 0x7f, 0x68, 0x44, 0x60, 0x5b, 0xf7, 0xd8, 0x31, 0x33, + 0xb2, 0xcd, 0x0d, 0xab, 0x79, 0x4c, 0x79, 0xe9, 0xb8, 0x04, 0x27, 0x71, 0x99, 0x24, 0x64, 0x7a, + 0xa9, 0xec, 0xd7, 0xcc, 0x2d, 0x55, 0xfe, 0xa4, 0x58, 0x3c, 0x3a, 0x2e, 0x16, 0xf7, 0x8f, 0x0f, + 0x8e, 0xf7, 0x4f, 0x0f, 0x0f, 0xf3, 0x47, 0xf9, 0xc3, 0x0c, 0xad, 0xde, 0x56, 0x3a, 0x46, 0xc9, + 0xa2, 0x21, 0xdc, 0xb6, 0x1b, 0x7f, 0x32, 0x11, 0xb1, 0xf9, 0xa1, 0xc1, 0xc4, 0xc0, 0xc4, 0xc0, + 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xc0, 0xc4, 0xd6, 0x8f, 0x89, 0x21, 0xa3, + 0x70, 0x69, 0x46, 0xa1, 0x44, 0xd7, 0x01, 0xfd, 0x69, 0xe5, 0x3d, 0xa8, 0x33, 0xec, 0x5a, 0xa0, + 0x1e, 0x4a, 0x94, 0xeb, 0x64, 0xb0, 0x48, 0x07, 0x49, 0x37, 0x29, 0x58, 0x84, 0x8e, 0xfa, 0x83, + 0x48, 0x75, 0x3e, 0xd0, 0x9d, 0x76, 0xcd, 0xfd, 0x6e, 0x66, 0x9f, 0xe7, 0x94, 0xd2, 0xbf, 0x26, + 0xcb, 0x2f, 0x5c, 0x0d, 0xee, 0x54, 0x19, 0xde, 0xa8, 0x5e, 0x7a, 0x0a, 0x83, 0xfa, 0xa5, 0xdd, + 0x28, 0xf7, 0x87, 0xdf, 0xd0, 0x0e, 0x27, 0xda, 0x2b, 0x64, 0xb2, 0x25, 0xa3, 0xd3, 0xfe, 0x5e, + 0xb4, 0x3a, 0x9e, 0xd3, 0xb0, 0x03, 0x85, 0x73, 0xd5, 0x53, 0x57, 0xe3, 0x6c, 0xb5, 0x41, 0x13, + 0x75, 0xa3, 0xcf, 0x56, 0xf7, 0xb7, 0x9d, 0xe6, 0xe1, 0xea, 0x89, 0x31, 0x70, 0xba, 0x9a, 0xcf, + 0x37, 0x83, 0xd3, 0xd5, 0x38, 0x5d, 0x6d, 0xd8, 0xe9, 0x89, 0xf4, 0xec, 0x64, 0x9c, 0x99, 0x9b, + 0x9c, 0x9e, 0xdd, 0xa6, 0xf1, 0xaf, 0x4f, 0xd4, 0xa2, 0xa5, 0x58, 0x61, 0x44, 0x21, 0x12, 0x10, + 0x54, 0x36, 0x81, 0x65, 0x13, 0x5c, 0x16, 0x01, 0xa6, 0xf1, 0x90, 0xa5, 0x2f, 0x0a, 0xd1, 0xe7, + 0x8d, 0x64, 0xeb, 0x99, 0xf2, 0xa4, 0xec, 0x9d, 0x9d, 0x87, 0x7d, 0xeb, 0xb4, 0xf6, 0xf3, 0x21, + 0x6f, 0x9d, 0xd6, 0x06, 0x3f, 0xe6, 0xfb, 0x7f, 0x0d, 0x7e, 0x2e, 0x3c, 0xec, 0x5b, 0xc5, 0xd1, + 0xcf, 0x87, 0x0f, 0xfb, 0xd6, 0x61, 0x6d, 0xf7, 0xeb, 0xd7, 0x8f, 0xbb, 0x3f, 0x0e, 0xba, 0xf2, + 0x17, 0xee, 0x0d, 0x6f, 0xb6, 0xfb, 0x73, 0xe7, 0x21, 0x6f, 0x15, 0x6a, 0xa3, 0x5f, 0x0e, 0x1e, + 0xf6, 0xad, 0x42, 0x6d, 0x77, 0x17, 0xa7, 0xb7, 0xb3, 0xef, 0x6b, 0x9d, 0xf4, 0x17, 0xec, 0x8d, + 0x2d, 0xb0, 0x0c, 0x1c, 0xe1, 0xd6, 0x54, 0xf0, 0x34, 0x8a, 0x1d, 0x07, 0xb7, 0xc1, 0xac, 0x71, + 0x70, 0x3b, 0x6d, 0x07, 0xb7, 0x87, 0x7b, 0x06, 0x67, 0xb6, 0x8d, 0x38, 0x05, 0x70, 0x66, 0x1b, + 0xd0, 0x95, 0x11, 0xa7, 0x40, 0x53, 0x34, 0xec, 0x76, 0xd0, 0x71, 0xed, 0x50, 0x58, 0xdf, 0x84, + 0xdd, 0x14, 0x3e, 0x9d, 0x83, 0x60, 0xc1, 0xd8, 0x70, 0x16, 0xc0, 0x59, 0x00, 0x67, 0x41, 0xaa, + 0x9c, 0x05, 0xc2, 0x1b, 0x49, 0xa9, 0xd3, 0xf2, 0x86, 0x72, 0x6a, 0x85, 0xbd, 0xdb, 0x10, 0xba, + 0x0e, 0x8a, 0x04, 0x63, 0xc5, 0xeb, 0x60, 0xc1, 0x68, 0x21, 0xe3, 0x80, 0x34, 0xe0, 0x15, 0xf0, + 0x0a, 0x78, 0x35, 0x6c, 0x12, 0x52, 0x9a, 0x86, 0x8b, 0x4c, 0x44, 0x1c, 0x90, 0xd6, 0x04, 0x14, + 0x1c, 0x90, 0x06, 0x08, 0x03, 0x84, 0xd3, 0x0c, 0xc2, 0x38, 0x96, 0x23, 0xf9, 0x60, 0x38, 0x96, + 0x83, 0x63, 0x39, 0x38, 0x96, 0xc3, 0x82, 0x8e, 0x74, 0xa3, 0x64, 0xf1, 0x80, 0x74, 0xcb, 0x77, + 0x9e, 0x1d, 0xcf, 0x6a, 0xfb, 0xad, 0xb0, 0xd5, 0x68, 0xb9, 0x84, 0x34, 0x6c, 0x66, 0x60, 0xb0, + 0x30, 0xb0, 0x30, 0xb0, 0xb0, 0x54, 0xb1, 0x30, 0xa7, 0x29, 0xbc, 0xd0, 0x09, 0xdf, 0x88, 0xcd, + 0x61, 0x02, 0xcd, 0x91, 0xab, 0x0c, 0x1f, 0xed, 0x93, 0x1d, 0x10, 0x6e, 0xe3, 0xd1, 0x8b, 0x57, + 0xae, 0xee, 0xee, 0x4b, 0xd5, 0x6a, 0xfd, 0xe6, 0xf6, 0xfa, 0xfe, 0xfa, 0xfc, 0xba, 0x5a, 0xbf, + 0xff, 0xe3, 0xa6, 0x4c, 0xb5, 0xa5, 0xfb, 0x3a, 0x35, 0x20, 0x23, 0x91, 0xb4, 0x44, 0x72, 0x6a, + 0x1a, 0xae, 0xef, 0x6e, 0x7e, 0xc9, 0xa5, 0x91, 0x43, 0x31, 0xbd, 0x6f, 0xe5, 0xae, 0x72, 0xb7, + 0x49, 0xef, 0xdb, 0x5b, 0xdf, 0x83, 0x4d, 0x7a, 0xe1, 0xea, 0xf5, 0x79, 0xa9, 0x5a, 0x2f, 0x7d, + 0xfe, 0x7c, 0x5b, 0xfe, 0x5c, 0xba, 0x2f, 0x6f, 0xd2, 0xab, 0x5f, 0x54, 0x6e, 0xcb, 0xe7, 0xf7, + 0xd5, 0x3f, 0xea, 0xe7, 0xd7, 0x57, 0x57, 0xe5, 0xf3, 0xfb, 0xf2, 0xc5, 0x26, 0xbd, 0xfd, 0xdd, + 0x7d, 0xe9, 0xbe, 0x72, 0xbe, 0x49, 0x6f, 0xfc, 0xe9, 0xf3, 0xcd, 0x26, 0xbd, 0xee, 0x4d, 0xe5, + 0x72, 0xa3, 0x34, 0xd5, 0xe7, 0x4b, 0xca, 0xe5, 0x25, 0x19, 0xa9, 0x96, 0x34, 0x7f, 0x46, 0x01, + 0x31, 0xd8, 0xc8, 0xb0, 0x91, 0x61, 0x23, 0x1b, 0xb5, 0x91, 0x11, 0xa9, 0x90, 0x7c, 0x30, 0x44, + 0x2a, 0x10, 0xa9, 0x40, 0xa4, 0x82, 0x95, 0x89, 0x6d, 0x68, 0x29, 0x57, 0x1c, 0x97, 0x06, 0xe7, + 0x02, 0xe7, 0xda, 0x00, 0xce, 0x85, 0xe3, 0xd2, 0x38, 0x2e, 0x6d, 0xe6, 0xca, 0x0d, 0x3a, 0x2e, + 0xbd, 0x7e, 0xf5, 0x29, 0xd5, 0x6a, 0xa0, 0xa1, 0x34, 0xe5, 0x7a, 0x94, 0xa6, 0x5c, 0xb2, 0xcf, + 0x99, 0xea, 0x53, 0x56, 0xda, 0xdf, 0x8b, 0x28, 0x50, 0xa9, 0xbb, 0x4e, 0x86, 0x8b, 0x54, 0x1e, + 0x69, 0x15, 0xa9, 0x3c, 0x42, 0x91, 0x4a, 0x14, 0xa9, 0xd4, 0x13, 0x43, 0x95, 0x22, 0x95, 0x47, + 0x04, 0x45, 0x2a, 0x8f, 0x50, 0xa4, 0x92, 0xdd, 0x16, 0x45, 0x91, 0x4a, 0x14, 0xa9, 0x34, 0xec, + 0xe4, 0x41, 0x3d, 0x8a, 0x64, 0x9c, 0x37, 0x28, 0x52, 0x09, 0xaf, 0x2b, 0xbc, 0xae, 0xf0, 0xba, + 0xae, 0xbd, 0xd7, 0xf5, 0x68, 0xc3, 0xbc, 0xae, 0xb6, 0xf5, 0x54, 0xb2, 0x7e, 0xa9, 0xfd, 0xc8, + 0x7f, 0x28, 0x76, 0xcf, 0x76, 0x7f, 0x1c, 0x77, 0x67, 0x3f, 0xfc, 0xb9, 0xe8, 0x6b, 0xf9, 0x0f, + 0xc7, 0xdd, 0xb3, 0x25, 0xff, 0x72, 0xd4, 0x3d, 0x8b, 0x39, 0xc6, 0x61, 0x77, 0x67, 0xee, 0xab, + 0xbd, 0xcf, 0x0b, 0xcb, 0x2e, 0x28, 0x2e, 0xb9, 0xe0, 0x60, 0xd9, 0x05, 0x07, 0x4b, 0x2e, 0x58, + 0xfa, 0x48, 0x85, 0x25, 0x17, 0x1c, 0x76, 0x7f, 0xce, 0x7d, 0x7f, 0x67, 0xf1, 0x57, 0x8f, 0xba, + 0xbb, 0x3f, 0x97, 0xfd, 0xdb, 0x71, 0xf7, 0xe7, 0xd9, 0xee, 0xee, 0xde, 0x4e, 0xbe, 0xf0, 0xb0, + 0x6f, 0x9d, 0x0c, 0xbc, 0xd5, 0xf9, 0xda, 0x9c, 0x13, 0x7b, 0xe0, 0x94, 0x86, 0x2b, 0x7a, 0x2d, + 0x5c, 0xd1, 0x47, 0x93, 0x2e, 0xba, 0x23, 0x54, 0xee, 0x34, 0xc8, 0x72, 0x60, 0x6e, 0xc0, 0xdc, + 0x40, 0xe5, 0x4e, 0x54, 0xee, 0x54, 0x5d, 0x01, 0x54, 0xee, 0x04, 0x74, 0xc1, 0x53, 0x12, 0x7f, + 0x00, 0x54, 0xee, 0x84, 0x07, 0x05, 0x1e, 0x94, 0x4d, 0xf6, 0xa0, 0xa0, 0x72, 0x27, 0xff, 0xd2, + 0xa1, 0x72, 0x27, 0xe0, 0x15, 0xf0, 0xba, 0x91, 0xf0, 0x8a, 0xca, 0x9d, 0xa9, 0x00, 0x60, 0x54, + 0xee, 0x04, 0x08, 0x03, 0x84, 0x37, 0x15, 0x84, 0x71, 0x1e, 0x56, 0xf2, 0xc1, 0x70, 0x1e, 0x16, + 0xe7, 0x61, 0x71, 0x1e, 0x96, 0x05, 0x1d, 0xe9, 0x46, 0x41, 0xe5, 0x4e, 0x54, 0xee, 0x04, 0x0b, + 0x03, 0x0b, 0xcb, 0x0a, 0x0b, 0x43, 0xe5, 0x4e, 0x54, 0xee, 0x44, 0xe5, 0xce, 0xf5, 0x7d, 0x5f, + 0x54, 0xee, 0xdc, 0x9c, 0x57, 0x47, 0xe5, 0x4e, 0x54, 0xee, 0x5c, 0xe3, 0xd7, 0x45, 0xe5, 0xce, + 0xc4, 0xed, 0x63, 0x54, 0xee, 0x44, 0xe5, 0x4e, 0xd8, 0xc8, 0xb0, 0x91, 0x37, 0xcb, 0x46, 0x46, + 0xa4, 0x42, 0xf2, 0xc1, 0x10, 0xa9, 0x40, 0xa4, 0x02, 0x91, 0x0a, 0x56, 0x26, 0x86, 0xca, 0x9d, + 0x24, 0xf4, 0x0b, 0x67, 0xc8, 0xc1, 0xb9, 0xc0, 0xb9, 0x70, 0x86, 0x5c, 0x4a, 0xbc, 0x70, 0x86, + 0x1c, 0x67, 0xc8, 0xb3, 0xa3, 0x6e, 0x71, 0x86, 0xfc, 0xfd, 0x33, 0xe4, 0x28, 0x67, 0x3a, 0xb8, + 0x18, 0xe5, 0x4c, 0xd7, 0xa6, 0x9c, 0xe9, 0xa2, 0x7d, 0xce, 0x57, 0xce, 0xf4, 0x08, 0xe5, 0x4c, + 0x75, 0xd7, 0xc9, 0x64, 0x39, 0xd3, 0x97, 0xb6, 0x1b, 0xc8, 0x97, 0x31, 0xed, 0x5f, 0x85, 0xf2, + 0xa5, 0x06, 0xed, 0x92, 0x8d, 0x2e, 0x5f, 0xea, 0xda, 0x8f, 0xc2, 0xd5, 0xad, 0x5f, 0x3a, 0x39, + 0x08, 0x0a, 0x98, 0xf2, 0x99, 0xe4, 0x28, 0x60, 0x8a, 0x02, 0xa6, 0x86, 0x7d, 0x5d, 0x28, 0xcb, + 0x91, 0x8c, 0x0f, 0x6b, 0x93, 0xcb, 0x72, 0xf4, 0xd5, 0x09, 0x9d, 0xef, 0x79, 0x30, 0x1c, 0x5c, + 0xcf, 0x70, 0x3d, 0xc3, 0xf5, 0x9c, 0x2a, 0xd7, 0x73, 0xcf, 0xd4, 0xb1, 0x28, 0xa4, 0x73, 0x4a, + 0x51, 0x9e, 0x12, 0x8c, 0x35, 0x7c, 0xd7, 0xd4, 0xc5, 0xfb, 0x47, 0x33, 0xd7, 0x71, 0xbc, 0xf0, + 0xa0, 0x90, 0x23, 0x0c, 0x4f, 0x0f, 0x67, 0xef, 0x98, 0x70, 0x48, 0xda, 0xac, 0x09, 0xfa, 0xd9, + 0x9c, 0x74, 0xa9, 0x91, 0x87, 0xe6, 0x89, 0x15, 0xc7, 0xd2, 0xe1, 0xa3, 0x50, 0xfd, 0x11, 0xd3, + 0x0d, 0x18, 0x03, 0xf4, 0x44, 0xc8, 0xb4, 0xcc, 0xc3, 0x99, 0xfd, 0x35, 0xdd, 0x2f, 0x9e, 0x1c, + 0x1e, 0x1f, 0x66, 0x78, 0x61, 0xb7, 0xd2, 0x39, 0x5a, 0x6d, 0x2b, 0x45, 0xdb, 0x96, 0x41, 0x3d, + 0x08, 0xaf, 0xf3, 0x22, 0xfc, 0x81, 0xf7, 0x95, 0x5e, 0x47, 0x50, 0xd4, 0xb3, 0x8a, 0xc6, 0xa4, + 0xa9, 0x6b, 0x45, 0xb7, 0x45, 0x10, 0x3d, 0x94, 0x19, 0x87, 0xc1, 0x5b, 0xdf, 0x23, 0x85, 0x7b, + 0x13, 0x0e, 0xc5, 0x0c, 0x94, 0x9e, 0xd6, 0xb3, 0x57, 0x49, 0xec, 0x54, 0x14, 0x9e, 0x86, 0x9b, + 0x08, 0x85, 0xa7, 0xd3, 0x56, 0x78, 0x7a, 0x20, 0xd1, 0xa8, 0x3b, 0x1d, 0x6b, 0xea, 0x51, 0x77, + 0x1a, 0xc8, 0x95, 0x0d, 0xe4, 0x82, 0x83, 0x9b, 0x8f, 0x48, 0x50, 0x8a, 0x25, 0xbd, 0x78, 0x52, + 0x8b, 0x29, 0x9b, 0xb8, 0xb2, 0x89, 0x2d, 0x8b, 0xf8, 0xd2, 0x98, 0x6f, 0x70, 0x70, 0x4b, 0xbf, + 0x2b, 0x1c, 0xdc, 0x3a, 0x43, 0xc2, 0xc1, 0x0d, 0x07, 0xb7, 0x49, 0x4f, 0xe1, 0xf4, 0x9a, 0xc2, + 0xc1, 0x9d, 0x82, 0x85, 0x85, 0x83, 0x3b, 0x11, 0xf5, 0x00, 0x07, 0x77, 0x42, 0x5b, 0x03, 0x0d, + 0x24, 0x60, 0x41, 0xc1, 0x82, 0x82, 0x05, 0x65, 0xca, 0x82, 0x42, 0x03, 0x89, 0x54, 0x00, 0x30, + 0x1a, 0x48, 0x00, 0x84, 0x01, 0xc2, 0x9b, 0x0a, 0xc2, 0x28, 0xcb, 0x94, 0x02, 0x7f, 0x0b, 0xca, + 0x32, 0x71, 0xb8, 0x53, 0x50, 0x96, 0xc9, 0xfc, 0xea, 0xc1, 0x10, 0x56, 0x5e, 0x16, 0x14, 0xc8, + 0x04, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, + 0x4b, 0x8c, 0x89, 0xb5, 0xda, 0x6d, 0xd1, 0xb4, 0xc6, 0x19, 0x1e, 0x56, 0x10, 0xda, 0x8d, 0x3f, + 0x09, 0xf9, 0xd8, 0x92, 0x1b, 0x80, 0x95, 0x81, 0x95, 0x81, 0x95, 0xa5, 0x8a, 0x95, 0x21, 0xcd, + 0x4b, 0x75, 0xe6, 0x90, 0xe6, 0x45, 0x49, 0x15, 0x90, 0xe6, 0x95, 0x0c, 0x8f, 0x62, 0x60, 0xc3, + 0xac, 0xac, 0xd8, 0xf8, 0x9a, 0x22, 0xcd, 0x8b, 0x67, 0x34, 0xa4, 0x79, 0x69, 0x69, 0x58, 0xa4, + 0x79, 0x71, 0x71, 0x2c, 0xad, 0x12, 0xb7, 0x8b, 0xf4, 0x9a, 0x76, 0xb5, 0xda, 0x45, 0xc0, 0x4a, + 0x3f, 0xa8, 0x56, 0x49, 0x5c, 0x42, 0xc3, 0x16, 0x87, 0xc9, 0x97, 0x1c, 0x26, 0x5f, 0xbf, 0x1a, + 0xd4, 0x2a, 0x76, 0x07, 0x4a, 0x50, 0x6f, 0xaf, 0x47, 0x09, 0xea, 0xd9, 0xfd, 0xcd, 0x54, 0x7b, + 0xba, 0xda, 0xbb, 0x03, 0x8a, 0x4f, 0xab, 0xae, 0x90, 0xc9, 0xa2, 0xd3, 0x33, 0x59, 0x88, 0xf2, + 0xf5, 0xa7, 0x67, 0x07, 0x40, 0x29, 0x6a, 0x83, 0xfe, 0xbd, 0x8d, 0x2e, 0x45, 0xad, 0x99, 0xe5, + 0x4f, 0x93, 0xd5, 0x8f, 0x82, 0xd4, 0x46, 0x37, 0x3c, 0xd9, 0xc6, 0x27, 0x11, 0x00, 0x33, 0xc4, + 0x4d, 0xa7, 0x20, 0x75, 0xd3, 0xe9, 0x69, 0x35, 0xdb, 0x25, 0xa9, 0x4a, 0x1d, 0x0d, 0x86, 0xd2, + 0xd4, 0xa8, 0xdc, 0x61, 0x58, 0xc4, 0x92, 0x31, 0x55, 0xb5, 0x2b, 0x77, 0x44, 0x52, 0x43, 0x17, + 0xe8, 0x1d, 0x0f, 0x49, 0x13, 0xda, 0xcd, 0x23, 0xb4, 0x6b, 0x50, 0x5c, 0xd9, 0xc4, 0x96, 0x4d, + 0x7c, 0x59, 0xc4, 0x98, 0xc6, 0x71, 0xa9, 0xeb, 0x76, 0xd4, 0x15, 0xef, 0x49, 0x31, 0xd7, 0x69, + 0xfd, 0xf0, 0x9e, 0xac, 0xab, 0xb7, 0x82, 0x60, 0x12, 0x78, 0x72, 0xc1, 0xe7, 0x00, 0x00, 0x3e, + 0x20, 0xe0, 0x02, 0x04, 0x76, 0x60, 0x60, 0x07, 0x08, 0x56, 0xa0, 0xa0, 0x01, 0x0c, 0x22, 0xe0, + 0x20, 0x07, 0x90, 0x68, 0x40, 0xa7, 0x49, 0xbf, 0xa1, 0xa2, 0xce, 0xad, 0x4d, 0xea, 0x9d, 0xc4, + 0x94, 0x2d, 0x49, 0x0d, 0x2c, 0x9c, 0x00, 0xc3, 0x0f, 0x34, 0xdc, 0x80, 0x63, 0x0c, 0x78, 0x8c, + 0x01, 0x90, 0x11, 0x20, 0xa2, 0x05, 0x24, 0x62, 0x60, 0x8a, 0x66, 0x80, 0x2c, 0x79, 0x6d, 0xe9, + 0x7e, 0xef, 0x38, 0x5e, 0x48, 0x72, 0xbe, 0x60, 0x19, 0xba, 0x9c, 0x30, 0x0c, 0xcd, 0x93, 0xa2, + 0x35, 0xfa, 0xc3, 0x23, 0x9f, 0xdb, 0xdc, 0x29, 0x5b, 0xcc, 0xb0, 0x3e, 0x77, 0x1b, 0xa6, 0xf3, + 0x0b, 0x73, 0xf7, 0x31, 0x90, 0xf0, 0xc3, 0x24, 0xbe, 0xd3, 0x4b, 0xcf, 0x98, 0xd9, 0x95, 0xd4, + 0xd2, 0xf3, 0x9f, 0x87, 0x48, 0x74, 0x37, 0x6c, 0x65, 0x63, 0xd4, 0x5a, 0x4a, 0xd3, 0xd5, 0xd2, + 0xc5, 0xf5, 0x89, 0xd2, 0x56, 0xe6, 0xc6, 0x65, 0x08, 0x22, 0xaf, 0x2e, 0x2d, 0x33, 0x72, 0xe5, + 0x8f, 0x7f, 0xd6, 0xea, 0x9b, 0x40, 0xbf, 0x72, 0x04, 0xab, 0x46, 0x69, 0x4c, 0xd1, 0x1b, 0x51, + 0xc4, 0x50, 0x0b, 0x6f, 0x0c, 0xbc, 0x31, 0x9b, 0xee, 0x8d, 0x21, 0x37, 0x76, 0x18, 0xca, 0x8a, + 0xcd, 0x8a, 0x7f, 0x9e, 0xf2, 0xe4, 0xc9, 0x7c, 0x47, 0x09, 0xdd, 0xf2, 0x61, 0x29, 0x03, 0x74, + 0xaf, 0xdd, 0x09, 0x2d, 0xc7, 0x0b, 0x85, 0xff, 0x64, 0x37, 0x44, 0xc0, 0x00, 0xef, 0xb3, 0x77, + 0x80, 0xeb, 0x1d, 0x60, 0x0f, 0xb0, 0x4f, 0x21, 0xd8, 0xd3, 0xbb, 0xde, 0xa7, 0x45, 0x9f, 0xd1, + 0x0f, 0x3f, 0x73, 0x23, 0x1e, 0xa7, 0x7c, 0x1e, 0x4e, 0x79, 0x38, 0xe5, 0x53, 0x04, 0x4d, 0x46, + 0x20, 0x8a, 0xc7, 0x47, 0x42, 0xed, 0x94, 0xa7, 0x86, 0xae, 0x68, 0x60, 0xe2, 0x34, 0x84, 0xa5, + 0xe2, 0x44, 0x9a, 0x96, 0x60, 0x08, 0xc0, 0xd8, 0x81, 0xcc, 0x04, 0xa0, 0x99, 0x03, 0x36, 0x53, + 0x00, 0x67, 0x1c, 0xe8, 0x8c, 0x03, 0x9e, 0x51, 0xe0, 0xe3, 0x01, 0x40, 0x26, 0x20, 0x64, 0x07, + 0xc4, 0x31, 0xb7, 0x6b, 0xf2, 0x6f, 0x60, 0xb6, 0x34, 0x8b, 0x65, 0x00, 0xc9, 0x1d, 0xa4, 0xe1, + 0x06, 0x4a, 0x93, 0x80, 0x69, 0x1e, 0x38, 0x4d, 0x03, 0x68, 0x62, 0x40, 0x9a, 0x18, 0xa0, 0x26, + 0x02, 0xac, 0xbc, 0x00, 0xcb, 0x0c, 0xb4, 0xd1, 0x8c, 0xb1, 0xa5, 0x85, 0x2c, 0x95, 0xb7, 0x20, + 0xf4, 0x1d, 0xef, 0xd9, 0x84, 0xbc, 0x8d, 0xe8, 0xe3, 0xc9, 0x56, 0x36, 0xd7, 0x3f, 0x5b, 0xaa, + 0x9b, 0x29, 0x2a, 0x3a, 0x77, 0x9f, 0xb4, 0x44, 0x49, 0x67, 0x1d, 0xc4, 0xb3, 0x1f, 0x90, 0x86, + 0x51, 0xf9, 0xb7, 0x06, 0x47, 0x09, 0x22, 0x46, 0xb2, 0xc5, 0x4f, 0xb2, 0xb8, 0x6b, 0x1c, 0xc1, + 0xfa, 0x84, 0xf5, 0x09, 0xeb, 0x33, 0x55, 0x2a, 0x8c, 0x9d, 0x0c, 0x31, 0x86, 0x91, 0x97, 0xb2, + 0x9f, 0x63, 0xc6, 0x7b, 0xf0, 0x85, 0x99, 0xb3, 0xa9, 0xf0, 0x06, 0x45, 0x82, 0xd8, 0x75, 0xde, + 0xe0, 0x36, 0x19, 0x77, 0xba, 0x16, 0xa0, 0xf6, 0xa0, 0xf6, 0xa0, 0xf6, 0x52, 0xa0, 0xf6, 0xe0, + 0x74, 0x4d, 0x91, 0x5d, 0x60, 0xcc, 0x3e, 0x30, 0x09, 0x98, 0xe6, 0x81, 0xd3, 0x34, 0x80, 0x26, + 0x06, 0xa4, 0x89, 0x01, 0x6a, 0x22, 0xc0, 0xca, 0xef, 0x74, 0xdb, 0x86, 0xd3, 0x95, 0x84, 0x3e, + 0x66, 0xd6, 0xe9, 0xca, 0x48, 0xe6, 0xf8, 0x52, 0xca, 0x96, 0xab, 0x43, 0xa6, 0xe4, 0x32, 0x68, + 0x45, 0x1e, 0xad, 0xe8, 0x3c, 0x41, 0x29, 0xae, 0xa1, 0x52, 0x74, 0x9e, 0xa0, 0x13, 0xd3, 0xa6, + 0x13, 0xf9, 0x7d, 0x70, 0x73, 0x4a, 0xf1, 0xd8, 0xc0, 0xbd, 0x6e, 0xa2, 0xc8, 0x58, 0x6f, 0xdb, + 0x9d, 0x4d, 0x04, 0xa8, 0x66, 0x3e, 0x18, 0xfe, 0xde, 0xaf, 0xdf, 0x0b, 0x65, 0x3d, 0x37, 0x8f, + 0x41, 0xe7, 0x31, 0x01, 0x7d, 0x3d, 0x75, 0x57, 0xa8, 0x6c, 0xa8, 0x6c, 0xa8, 0x6c, 0xa8, 0x6c, + 0xa8, 0x6c, 0xa8, 0xec, 0xfe, 0x07, 0x0f, 0x63, 0x95, 0xfd, 0x8f, 0x46, 0xc7, 0xf7, 0x85, 0x17, + 0xee, 0xec, 0xee, 0x7d, 0xfc, 0xb8, 0x17, 0x7d, 0xa3, 0x36, 0xbc, 0x64, 0x52, 0x8f, 0x04, 0x0b, + 0x3e, 0x8b, 0x46, 0x6e, 0x8a, 0xd7, 0x1c, 0xf2, 0xa3, 0xf8, 0xa5, 0x06, 0xf9, 0x51, 0xb3, 0xf9, + 0x51, 0x1a, 0x1d, 0x55, 0xcc, 0xef, 0x8c, 0x74, 0x9f, 0x23, 0x1a, 0x76, 0x74, 0xa1, 0xaf, 0xeb, + 0x47, 0xda, 0x8e, 0x69, 0x6e, 0x74, 0x8e, 0xf6, 0x4c, 0xf3, 0x37, 0x61, 0x68, 0xd7, 0x34, 0x77, + 0x13, 0xd2, 0xf6, 0x4d, 0xdc, 0xbb, 0x85, 0x19, 0x89, 0x32, 0x83, 0x40, 0x39, 0x96, 0x0c, 0x90, + 0x95, 0x3d, 0x71, 0xae, 0xc4, 0x6b, 0xf8, 0x6b, 0xab, 0xfd, 0xb9, 0xf7, 0xe4, 0xf5, 0xf3, 0xd1, + 0xd3, 0xd6, 0x2b, 0xbd, 0x87, 0xab, 0x44, 0xcf, 0x86, 0x4a, 0x4c, 0xc9, 0xed, 0xe4, 0xd4, 0xee, + 0xe0, 0x75, 0x2a, 0xe1, 0x41, 0x9b, 0x2b, 0xc5, 0x92, 0x1b, 0xc5, 0x56, 0xac, 0xa3, 0x80, 0x62, + 0x1d, 0x19, 0x72, 0x55, 0xa0, 0x58, 0x47, 0x8a, 0x8b, 0x75, 0x34, 0x83, 0x46, 0x9b, 0xaf, 0x42, + 0x47, 0x7f, 0x74, 0xd4, 0xca, 0x46, 0x59, 0x8e, 0xc4, 0xfd, 0xa4, 0x28, 0xcb, 0x61, 0xce, 0x40, + 0xe2, 0xaf, 0x95, 0xcd, 0x80, 0x2b, 0x93, 0xd8, 0x72, 0x88, 0x4a, 0xd9, 0x53, 0x5e, 0x06, 0x54, + 0xca, 0x96, 0xbc, 0x0f, 0x2a, 0x65, 0xa7, 0x76, 0xe9, 0x8f, 0x0e, 0x50, 0x17, 0xdb, 0xf4, 0xa8, + 0xb5, 0x54, 0xab, 0x2b, 0x38, 0x69, 0xe3, 0xdd, 0x84, 0xd7, 0x49, 0xbb, 0x95, 0xc2, 0xed, 0x81, + 0x2e, 0x42, 0xb0, 0x8c, 0x60, 0x19, 0xc1, 0x32, 0xca, 0x90, 0x65, 0x84, 0x2e, 0x42, 0xb0, 0x8d, + 0x60, 0x1b, 0xc1, 0x36, 0x52, 0x5a, 0x7a, 0x74, 0x11, 0x5a, 0x43, 0x6b, 0x29, 0x95, 0xc4, 0x7a, + 0x3a, 0x7c, 0xcb, 0x47, 0xb2, 0x67, 0xee, 0x03, 0xc2, 0x0d, 0xc2, 0x0d, 0xc2, 0x0d, 0xc2, 0x4d, + 0xb8, 0xdf, 0xf9, 0x72, 0xaa, 0x39, 0x73, 0xa8, 0x27, 0x4b, 0x0f, 0x4d, 0xfe, 0x37, 0x9f, 0x56, + 0xc3, 0x51, 0x95, 0x08, 0xf9, 0x54, 0x72, 0xe3, 0xa6, 0x25, 0x9f, 0x8a, 0x30, 0xe5, 0x98, 0x20, + 0x89, 0x6a, 0x2b, 0xc1, 0x25, 0x27, 0x4b, 0x19, 0xa6, 0xf5, 0x3e, 0xb3, 0x78, 0x9b, 0x59, 0xbc, + 0xcb, 0xb4, 0xde, 0x64, 0xdd, 0xd5, 0x24, 0x16, 0xdc, 0xb4, 0x08, 0x6c, 0x8e, 0x24, 0xcf, 0x50, + 0x31, 0x23, 0x57, 0x0f, 0x27, 0xd4, 0xa5, 0x5b, 0xed, 0x4a, 0xc5, 0x1d, 0x44, 0xb5, 0x73, 0x92, + 0xdd, 0x31, 0x6a, 0x4b, 0x25, 0x3f, 0xd1, 0x0a, 0x93, 0xac, 0xdb, 0x8a, 0x85, 0xa6, 0xd5, 0x8a, + 0x66, 0x26, 0xab, 0xb6, 0x45, 0x47, 0x61, 0xb9, 0xd1, 0x59, 0x68, 0x54, 0x96, 0x18, 0xb9, 0xc5, + 0x45, 0x6e, 0x59, 0x91, 0x5a, 0x50, 0x66, 0x81, 0x49, 0x37, 0x53, 0x94, 0x22, 0xf6, 0x49, 0x17, + 0xeb, 0x24, 0x72, 0xb5, 0x90, 0xb9, 0x56, 0x28, 0x5d, 0x29, 0xf4, 0xae, 0x13, 0x6a, 0x57, 0x09, + 0x9b, 0x6b, 0x84, 0xcd, 0x15, 0xc2, 0xe2, 0xfa, 0x48, 0xd6, 0xe2, 0x20, 0x73, 0x65, 0xd0, 0xc7, + 0x0a, 0x09, 0x63, 0x83, 0xc4, 0xb1, 0x40, 0x42, 0x23, 0x9c, 0x23, 0xd6, 0xc7, 0xe5, 0x41, 0x66, + 0x8a, 0xe5, 0x71, 0x46, 0x6b, 0x28, 0xa3, 0x0b, 0x1c, 0xb1, 0x39, 0xee, 0xa5, 0xe2, 0x8f, 0xbd, + 0xb1, 0xae, 0x5e, 0x4a, 0x9c, 0x42, 0x35, 0x18, 0x9d, 0x69, 0x37, 0x3a, 0x95, 0x9b, 0xba, 0x98, + 0xb1, 0x37, 0x35, 0x68, 0xaf, 0x3e, 0xdd, 0xd5, 0x04, 0x19, 0xd8, 0x99, 0xb0, 0x33, 0x4d, 0x63, + 0x91, 0x36, 0x2d, 0x25, 0x8c, 0xa4, 0x51, 0x44, 0xcc, 0x08, 0x9b, 0x72, 0x98, 0x01, 0xac, 0x11, + 0xc2, 0x06, 0xfa, 0xb8, 0x35, 0x1e, 0x0a, 0x6e, 0x32, 0xc0, 0x17, 0xdc, 0x64, 0x32, 0xe2, 0x47, + 0xe7, 0x2c, 0x8b, 0x46, 0xa4, 0x71, 0x99, 0xe5, 0xe1, 0x32, 0x83, 0xcb, 0x6c, 0x33, 0x5d, 0x66, + 0x54, 0xd5, 0x12, 0x74, 0x83, 0x50, 0x4b, 0xb7, 0x2f, 0x69, 0xff, 0x7f, 0xb6, 0x72, 0x2b, 0xfb, + 0x28, 0xb7, 0x42, 0xe9, 0x47, 0x42, 0xb9, 0x15, 0x7e, 0x47, 0x52, 0x5a, 0xcb, 0xad, 0x0c, 0x0a, + 0x86, 0xf2, 0x9d, 0x29, 0xec, 0x0f, 0x8f, 0x2c, 0x67, 0x64, 0x39, 0x27, 0x06, 0x3f, 0xc6, 0x60, + 0xc8, 0x08, 0x1c, 0xd1, 0xc2, 0x12, 0x31, 0x3c, 0xd1, 0xf9, 0x60, 0x0c, 0xf8, 0x66, 0x38, 0x7d, + 0x36, 0x71, 0x7c, 0x39, 0x4b, 0x12, 0x9d, 0xc7, 0x1e, 0xea, 0xc8, 0xdb, 0x43, 0x5f, 0xd3, 0x19, + 0xf9, 0xce, 0x72, 0xe3, 0x9a, 0x8f, 0x4b, 0x2c, 0xdd, 0x0e, 0xeb, 0x54, 0x32, 0x92, 0x96, 0x7c, + 0xb0, 0x90, 0x0e, 0x62, 0xb2, 0x01, 0x1b, 0x06, 0x36, 0xcc, 0xa6, 0xdb, 0x30, 0xe4, 0xe4, 0x80, + 0x91, 0x14, 0x70, 0x90, 0x81, 0x45, 0x01, 0x1d, 0x3a, 0x15, 0x8f, 0x62, 0xc0, 0x49, 0x7b, 0xa7, + 0x50, 0x0c, 0x18, 0xc8, 0x0e, 0xef, 0x14, 0xbc, 0x53, 0xf0, 0x4e, 0xc1, 0x3b, 0x05, 0xef, 0x14, + 0xbc, 0x53, 0xf0, 0x4e, 0x25, 0xe7, 0x9d, 0x22, 0x24, 0x38, 0x7f, 0x09, 0xe7, 0xf9, 0x5b, 0xc8, + 0xa7, 0x8c, 0x86, 0xe3, 0x43, 0x1b, 0x41, 0x1b, 0x41, 0x1b, 0x41, 0x1b, 0x11, 0xee, 0x77, 0x94, + 0x60, 0x9c, 0xfb, 0x83, 0x12, 0x8c, 0xb1, 0x6e, 0x83, 0x12, 0x8c, 0x72, 0x4b, 0x8f, 0x12, 0x8c, + 0x59, 0xdb, 0x0d, 0x28, 0xc1, 0xb8, 0x46, 0xfe, 0xa7, 0xb5, 0x0e, 0xff, 0xa2, 0xd6, 0xd5, 0x24, + 0x0d, 0xa6, 0x72, 0xdf, 0xa1, 0xdc, 0x15, 0xca, 0x5d, 0xf1, 0x08, 0x6c, 0x12, 0xb5, 0xae, 0x86, + 0xbf, 0xa0, 0xd2, 0x55, 0x46, 0x36, 0x4b, 0x9a, 0x8f, 0xf1, 0xe9, 0x85, 0x70, 0x49, 0x42, 0xb6, + 0x64, 0xc7, 0xf7, 0x0a, 0x38, 0xbe, 0xc7, 0xe8, 0x45, 0xc2, 0xf1, 0xbd, 0xf1, 0x93, 0x6b, 0x1f, + 0xdf, 0x7b, 0xb4, 0x1b, 0x7f, 0x76, 0xda, 0x16, 0x71, 0x3d, 0xf2, 0x68, 0x17, 0x2e, 0x1e, 0x1e, + 0xb5, 0xb0, 0xf8, 0xc5, 0x97, 0x5a, 0x8c, 0xd9, 0xc4, 0x99, 0x4d, 0xac, 0x59, 0xc4, 0x3b, 0x1d, + 0x16, 0x09, 0x7d, 0x2d, 0x2c, 0xba, 0x10, 0x22, 0x65, 0xc8, 0x70, 0x3e, 0x44, 0xc8, 0x53, 0xa0, + 0x5b, 0x83, 0x83, 0x6a, 0x28, 0xd8, 0x46, 0xcb, 0x6d, 0xf9, 0x74, 0x58, 0x3b, 0x18, 0x0e, 0xd8, + 0x0a, 0x6c, 0x05, 0xb6, 0xa6, 0x0a, 0x5b, 0x51, 0x67, 0x50, 0xd2, 0xa7, 0x85, 0x3a, 0x83, 0xa8, + 0x33, 0x88, 0x3a, 0x83, 0xf4, 0xd0, 0x48, 0x37, 0x4a, 0x2d, 0x83, 0x74, 0x0b, 0x05, 0x9d, 0x41, + 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0x40, 0xb4, 0xc8, + 0xaf, 0xdc, 0xbc, 0xd8, 0xaa, 0x46, 0x9a, 0x8c, 0x42, 0x5c, 0x75, 0x8b, 0x71, 0x31, 0x94, 0x5b, + 0xba, 0xe9, 0xe5, 0xb4, 0x90, 0xe4, 0xb0, 0x90, 0xe4, 0xac, 0xe8, 0xe5, 0xa8, 0xc8, 0xce, 0xb6, + 0xe6, 0x96, 0x37, 0xbf, 0xd5, 0x73, 0x4a, 0x41, 0x7d, 0xa9, 0x84, 0x12, 0x39, 0x39, 0x8a, 0x2f, + 0x0d, 0xf1, 0xbe, 0x19, 0x73, 0x05, 0x55, 0x57, 0xce, 0xc0, 0x8a, 0xc5, 0x9b, 0xbf, 0xd5, 0xb3, + 0x11, 0x63, 0x26, 0x14, 0xca, 0x2e, 0x2b, 0x97, 0x59, 0x96, 0xcc, 0xcb, 0x90, 0xb6, 0x89, 0x55, + 0x6c, 0x5f, 0x75, 0x1b, 0x57, 0xd5, 0x96, 0xd5, 0xb6, 0x59, 0xb5, 0x6d, 0x53, 0x2d, 0x1b, 0x94, + 0x56, 0x06, 0x65, 0xf3, 0x1e, 0xd4, 0xcb, 0x14, 0xeb, 0x96, 0x25, 0x56, 0x4c, 0x2a, 0x52, 0x76, + 0xec, 0xe8, 0x38, 0x72, 0xf4, 0x1d, 0x37, 0xba, 0x8e, 0x1a, 0x32, 0xc7, 0x0c, 0x99, 0x23, 0x86, + 0xc4, 0xf1, 0xc2, 0x4b, 0xdc, 0x54, 0x93, 0x80, 0xd0, 0x5b, 0x72, 0x1b, 0x59, 0x77, 0x89, 0x79, + 0x36, 0x37, 0xba, 0xb7, 0x24, 0x49, 0xa1, 0x11, 0xd2, 0xc2, 0x22, 0x08, 0x48, 0x24, 0x21, 0xa6, + 0x6c, 0xe2, 0xca, 0x26, 0xb6, 0x2c, 0xe2, 0x4b, 0xe3, 0x2f, 0x43, 0x40, 0x22, 0xd6, 0x50, 0x08, + 0x48, 0x10, 0x0c, 0x8b, 0x80, 0x04, 0x02, 0x12, 0x66, 0x57, 0x0f, 0x01, 0x09, 0x83, 0x0c, 0x2f, + 0x03, 0x01, 0x09, 0xa2, 0x52, 0xcd, 0x86, 0xba, 0x4a, 0x6a, 0x11, 0x5e, 0x12, 0xa2, 0x8b, 0xde, + 0x92, 0xb0, 0x33, 0xd1, 0x5b, 0x32, 0x75, 0xbd, 0x25, 0xd5, 0xeb, 0xb9, 0x99, 0x42, 0xae, 0x50, + 0xf8, 0x4f, 0x76, 0x43, 0x58, 0xbd, 0xf9, 0x23, 0x40, 0xb0, 0xc9, 0xe1, 0xe0, 0x31, 0xeb, 0x49, + 0xa4, 0xf3, 0x04, 0x20, 0x53, 0x00, 0x32, 0xe7, 0x69, 0x63, 0xfc, 0x65, 0x44, 0xfd, 0xe7, 0x68, + 0xfb, 0xce, 0x6d, 0x4a, 0x83, 0x49, 0xe7, 0x09, 0x0e, 0x33, 0x06, 0x87, 0x99, 0x8e, 0xf8, 0xa6, + 0xc3, 0x5f, 0x46, 0xd6, 0x5e, 0x32, 0x52, 0x8a, 0x1c, 0xcd, 0x59, 0x46, 0x43, 0xa3, 0x41, 0x4b, + 0x6a, 0xc0, 0x80, 0x0b, 0x14, 0xd8, 0xc1, 0x81, 0x1d, 0x24, 0x38, 0xc1, 0x82, 0xd8, 0x93, 0x84, + 0xf6, 0x2c, 0x34, 0x63, 0xde, 0x44, 0xce, 0xa1, 0xde, 0x32, 0x9f, 0x45, 0x80, 0x15, 0xcc, 0x7e, + 0x30, 0xfc, 0xbd, 0x9f, 0x4d, 0xb7, 0x4e, 0xbd, 0x5b, 0x3a, 0x8f, 0x8c, 0xf8, 0x3f, 0x35, 0x3a, + 0x54, 0x00, 0x54, 0x00, 0x54, 0x00, 0x54, 0x40, 0x66, 0x55, 0xc0, 0xc3, 0x58, 0x05, 0xfc, 0xa3, + 0xd1, 0xf1, 0x7d, 0xe1, 0x85, 0x3b, 0xbb, 0x7b, 0x1f, 0x3f, 0xee, 0x45, 0xdf, 0xa8, 0x0d, 0x2f, + 0x99, 0xc4, 0xbd, 0x60, 0xc1, 0x67, 0xd1, 0xc8, 0x69, 0xea, 0x04, 0x96, 0xa8, 0x35, 0x53, 0x7e, + 0xed, 0x47, 0xec, 0xf4, 0xa3, 0xe2, 0xf4, 0x06, 0x6e, 0xab, 0x61, 0x89, 0xd7, 0xf0, 0x2c, 0x14, + 0xae, 0x78, 0x11, 0xa1, 0xff, 0x66, 0xb5, 0x3c, 0xab, 0xf1, 0xad, 0x1f, 0xc6, 0x67, 0x31, 0x7a, + 0x9f, 0x6c, 0x37, 0xe0, 0xb0, 0x7a, 0x93, 0x36, 0x78, 0x6b, 0x9b, 0x53, 0x37, 0x74, 0x22, 0x3a, + 0x38, 0xe5, 0x72, 0x26, 0x69, 0xeb, 0x9a, 0xcc, 0xf9, 0x7d, 0x9a, 0x26, 0x7f, 0xa4, 0xcd, 0xfd, + 0xc8, 0x5d, 0x80, 0x05, 0xb8, 0x00, 0xe1, 0x02, 0x84, 0x0b, 0x10, 0x2e, 0x40, 0xd8, 0x7f, 0xb0, + 0xff, 0x60, 0xff, 0xc1, 0xfe, 0x83, 0x0b, 0x10, 0x2e, 0x40, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, + 0xa8, 0x00, 0xb8, 0x00, 0x99, 0xad, 0x99, 0x75, 0xf0, 0xef, 0x10, 0xf4, 0x6d, 0x42, 0x92, 0x3e, + 0xfb, 0x32, 0xe5, 0xb4, 0xfc, 0x60, 0x71, 0x8b, 0xaa, 0xd4, 0x2b, 0xa3, 0x7b, 0xde, 0x8a, 0x27, + 0x34, 0x7f, 0xe1, 0x74, 0xe5, 0xa1, 0xf9, 0x8b, 0x19, 0x0e, 0x86, 0xe3, 0x01, 0x74, 0xce, 0xb7, + 0x9c, 0xf0, 0x1a, 0x76, 0x3b, 0xe8, 0xb8, 0x76, 0x28, 0xac, 0x6f, 0xc2, 0x6e, 0x0a, 0xc2, 0x6e, + 0x04, 0x0b, 0xc6, 0xc6, 0x01, 0x75, 0x7e, 0xc1, 0xe5, 0x32, 0xaa, 0x70, 0x40, 0x3d, 0x05, 0xfc, + 0x94, 0xfe, 0x80, 0xfa, 0x58, 0x4a, 0x9d, 0x96, 0x37, 0x94, 0x53, 0x2b, 0xec, 0xdd, 0x86, 0xb0, + 0x11, 0x4c, 0x91, 0x60, 0xac, 0xb2, 0xd7, 0x79, 0xe9, 0xbd, 0x7a, 0x37, 0x8b, 0x85, 0xc7, 0x51, + 0xed, 0x03, 0x60, 0x0a, 0x30, 0x5d, 0x7b, 0x30, 0x45, 0xb5, 0x0f, 0x99, 0x07, 0x43, 0xb5, 0x0f, + 0x54, 0xfb, 0x40, 0xb5, 0x0f, 0x16, 0x68, 0xa4, 0x1b, 0x25, 0x93, 0x7d, 0x5e, 0xda, 0x96, 0xdd, + 0x6c, 0xfa, 0x22, 0x08, 0x08, 0x39, 0xd7, 0x78, 0x4c, 0x10, 0x2f, 0x10, 0x2f, 0x10, 0xaf, 0x54, + 0x11, 0x2f, 0x32, 0xe9, 0x9c, 0x32, 0x5b, 0x4f, 0x09, 0xc6, 0x1a, 0xbe, 0x6b, 0xea, 0xc8, 0xd7, + 0x78, 0xe6, 0xbe, 0x17, 0x09, 0xe7, 0x6e, 0x6e, 0x0e, 0x4f, 0x68, 0x43, 0xa4, 0xa1, 0xf0, 0x3d, + 0xb2, 0xe9, 0x8c, 0x06, 0xfe, 0xcf, 0xce, 0xce, 0xc3, 0xbe, 0x75, 0x5a, 0xfb, 0xf9, 0x90, 0xb7, + 0x4e, 0x6b, 0x83, 0x1f, 0xf3, 0xfd, 0xbf, 0x06, 0x3f, 0x17, 0x1e, 0xf6, 0xad, 0xe2, 0xe8, 0xe7, + 0xc3, 0x87, 0x7d, 0xeb, 0xb0, 0xb6, 0xfb, 0xf5, 0xeb, 0xc7, 0xdd, 0x1f, 0x07, 0x5d, 0xf9, 0x0b, + 0xff, 0x46, 0x17, 0xc2, 0xaf, 0xa5, 0x29, 0x84, 0xcf, 0xb3, 0x39, 0x8f, 0xb0, 0x39, 0x07, 0x9b, + 0xd3, 0xb6, 0x9e, 0x4a, 0xd6, 0x2f, 0xb5, 0x1f, 0xf9, 0x0f, 0xc5, 0xee, 0xd9, 0xee, 0x8f, 0xe3, + 0xee, 0xec, 0x87, 0x3f, 0x17, 0x7d, 0x2d, 0xff, 0xe1, 0xb8, 0x7b, 0xb6, 0xe4, 0x5f, 0x8e, 0xba, + 0x67, 0x31, 0xc7, 0x38, 0xec, 0xee, 0xcc, 0x7d, 0xb5, 0xf7, 0x79, 0x61, 0xd9, 0x05, 0xc5, 0x25, + 0x17, 0x1c, 0x2c, 0xbb, 0xe0, 0x60, 0xc9, 0x05, 0x4b, 0x1f, 0xa9, 0xb0, 0xe4, 0x82, 0xc3, 0xee, + 0xcf, 0xb9, 0xef, 0xef, 0x2c, 0xfe, 0xea, 0x51, 0x77, 0xf7, 0xe7, 0xb2, 0x7f, 0x3b, 0xee, 0xfe, + 0x3c, 0xdb, 0x4d, 0xa1, 0xa8, 0x6e, 0x24, 0x9f, 0x77, 0x83, 0xb6, 0x35, 0x8c, 0x76, 0x13, 0xb1, + 0xf9, 0x68, 0x44, 0x70, 0x79, 0x70, 0x79, 0x70, 0xf9, 0x54, 0x71, 0xf9, 0x20, 0xf4, 0x1d, 0xef, + 0x99, 0x92, 0xc7, 0x9f, 0x64, 0x10, 0xf3, 0x5e, 0xec, 0x06, 0xbd, 0x13, 0x63, 0x72, 0x50, 0x20, + 0x1f, 0x90, 0x0f, 0xc8, 0x97, 0x2a, 0xe4, 0xa3, 0x13, 0x4f, 0x6a, 0x2b, 0x87, 0xdc, 0xba, 0xc9, + 0xfd, 0x67, 0x92, 0x75, 0xcf, 0x92, 0xf9, 0x42, 0x77, 0xf7, 0xc7, 0x61, 0x97, 0x80, 0x7d, 0x67, + 0x91, 0xed, 0xb6, 0x7c, 0xe7, 0xd9, 0xf1, 0xac, 0xb6, 0xdf, 0x0a, 0x5b, 0x8d, 0x96, 0x4b, 0x87, + 0xfe, 0xb3, 0x03, 0x43, 0x03, 0x40, 0x03, 0x40, 0x03, 0xa4, 0x4a, 0x03, 0x38, 0x4d, 0xe1, 0x85, + 0x4e, 0xf8, 0x46, 0x73, 0x5e, 0x25, 0xd2, 0x00, 0x04, 0x71, 0xcf, 0x5c, 0x65, 0xf8, 0x68, 0x9f, + 0xec, 0x80, 0xe1, 0x88, 0x5e, 0xe5, 0xea, 0xee, 0xbe, 0x54, 0xad, 0xd6, 0x6f, 0x6e, 0xaf, 0xef, + 0xaf, 0xcf, 0xaf, 0xab, 0xf5, 0xfb, 0x3f, 0x6e, 0xca, 0x54, 0x5b, 0xba, 0x1f, 0x11, 0x0e, 0x48, + 0x3d, 0x73, 0xc4, 0xa1, 0xf0, 0xd1, 0x34, 0x5c, 0xdf, 0xdd, 0xfc, 0x92, 0x4b, 0x63, 0x06, 0x00, + 0xd3, 0xfb, 0x56, 0xee, 0x2a, 0x77, 0x9b, 0xf4, 0xbe, 0xbd, 0xf5, 0x3d, 0xd8, 0xa4, 0x17, 0xae, + 0x5e, 0x9f, 0x97, 0xaa, 0xf5, 0xd2, 0xe7, 0xcf, 0xb7, 0xe5, 0xcf, 0xa5, 0xfb, 0xf2, 0x26, 0xbd, + 0xfa, 0x45, 0xe5, 0xb6, 0x7c, 0x7e, 0x5f, 0xfd, 0xa3, 0x7e, 0x7e, 0x7d, 0x75, 0x55, 0x3e, 0xbf, + 0x2f, 0x5f, 0x6c, 0xd2, 0xdb, 0xdf, 0xdd, 0x97, 0xee, 0x2b, 0xe7, 0x9b, 0xf4, 0xc6, 0x9f, 0x3e, + 0xdf, 0x6c, 0xd2, 0xeb, 0xde, 0x54, 0x2e, 0x37, 0x4a, 0x53, 0x7d, 0xbe, 0xbc, 0x49, 0xdb, 0xd9, + 0xeb, 0x5a, 0xd2, 0xfc, 0x39, 0x11, 0xfb, 0xb8, 0xdd, 0x09, 0xbe, 0x89, 0xa6, 0xf5, 0xd2, 0x76, + 0x03, 0xcb, 0xb5, 0x1f, 0x85, 0x6b, 0x05, 0xa1, 0xdd, 0xf8, 0x93, 0xce, 0x4e, 0x5e, 0x76, 0x03, + 0xd8, 0xcb, 0xb0, 0x97, 0x61, 0x2f, 0xa7, 0xca, 0x5e, 0x1e, 0xcb, 0x28, 0xf2, 0xbe, 0xe4, 0x66, + 0xae, 0xe3, 0x78, 0xe1, 0x41, 0x81, 0x21, 0xa9, 0x86, 0xb2, 0x26, 0x06, 0xed, 0xd1, 0x05, 0x1e, + 0x86, 0xb0, 0xcd, 0x75, 0x94, 0x81, 0x58, 0x71, 0xbc, 0xef, 0x1d, 0xe9, 0x6d, 0xfb, 0x23, 0xa6, + 0x1b, 0x30, 0x66, 0xc9, 0x33, 0xf0, 0xc7, 0xf1, 0x9a, 0x32, 0x9c, 0x79, 0x30, 0xbe, 0xa6, 0xfb, + 0xc5, 0x93, 0xc3, 0xe3, 0xc3, 0x0c, 0x2f, 0xec, 0x56, 0x3a, 0x47, 0x5b, 0xf7, 0xcc, 0x4b, 0xe1, + 0x75, 0x5e, 0x84, 0x3f, 0x28, 0xad, 0xc2, 0x90, 0x78, 0x59, 0x24, 0x1c, 0x93, 0xe6, 0x60, 0x30, + 0xdd, 0x16, 0xa9, 0x25, 0xca, 0xb1, 0xaa, 0x4e, 0x10, 0x96, 0xc2, 0x90, 0xa8, 0x28, 0xeb, 0xa5, + 0xe3, 0x95, 0x5d, 0xd1, 0x63, 0xa1, 0x3d, 0xf1, 0xf6, 0x3a, 0xae, 0x4b, 0x40, 0x8d, 0x2e, 0xed, + 0x57, 0xfa, 0x41, 0xaf, 0xfd, 0xa6, 0xf0, 0x45, 0xf3, 0xd3, 0x1b, 0x7d, 0x6c, 0xa2, 0x13, 0x68, + 0x97, 0xae, 0xe0, 0x32, 0x6b, 0x66, 0x4d, 0x9b, 0xd6, 0x60, 0x16, 0xac, 0xc7, 0x37, 0x4a, 0xa9, + 0xe5, 0xac, 0x72, 0x37, 0x65, 0xe6, 0xf4, 0x67, 0x7a, 0x3d, 0x0a, 0x91, 0xa1, 0x82, 0x16, 0x43, + 0x05, 0x2d, 0x8d, 0xd2, 0x66, 0x0a, 0x65, 0xac, 0xb6, 0x18, 0x17, 0xa0, 0x27, 0xb4, 0xaa, 0xa5, + 0x1c, 0xf4, 0x30, 0x9e, 0x04, 0xd3, 0x49, 0x30, 0x7c, 0x0a, 0xb3, 0x7b, 0x43, 0xb0, 0x4e, 0xb8, + 0xe6, 0x4e, 0x37, 0xb3, 0xc3, 0x73, 0x4a, 0xa5, 0xd3, 0xe2, 0x56, 0x83, 0x93, 0x93, 0x9c, 0xf8, + 0xfb, 0x3f, 0xde, 0x37, 0x63, 0x2e, 0x98, 0xea, 0x42, 0xb1, 0x2e, 0x50, 0xbc, 0x99, 0x5b, 0x3d, + 0x0f, 0x31, 0xe6, 0x20, 0xd7, 0x6e, 0xb9, 0x4e, 0xe3, 0xcd, 0x7a, 0x6a, 0xf9, 0x7f, 0xd9, 0x7e, + 0xd3, 0xf1, 0xe2, 0x77, 0xbd, 0x1d, 0x7b, 0xb0, 0xe7, 0x86, 0x88, 0x39, 0xf7, 0x72, 0x25, 0xf0, + 0xa4, 0x7d, 0xd1, 0x2a, 0x3e, 0x67, 0x75, 0xdf, 0xb2, 0x2a, 0xd9, 0xd2, 0xf6, 0x15, 0x6b, 0x13, + 0x26, 0x2d, 0xdf, 0x2f, 0xad, 0x34, 0xca, 0x96, 0x98, 0x9b, 0xdf, 0x7b, 0x96, 0xf0, 0x42, 0x5f, + 0x9e, 0x96, 0x2f, 0xdf, 0xcc, 0xc3, 0x01, 0x65, 0x15, 0xae, 0x52, 0x75, 0x47, 0xe5, 0x70, 0x8b, + 0x4e, 0x78, 0x45, 0x3f, 0x9c, 0xa2, 0x6b, 0x67, 0x90, 0x85, 0x4b, 0xc8, 0x6c, 0x07, 0x92, 0x70, + 0x08, 0x2f, 0xa5, 0x53, 0xad, 0xc6, 0xa8, 0xdb, 0xdc, 0x9c, 0xa6, 0xa9, 0x39, 0x59, 0xf9, 0xd3, + 0x7d, 0x94, 0x3f, 0x65, 0x10, 0x24, 0x36, 0x63, 0x7c, 0x93, 0xcb, 0x9f, 0xa2, 0x2e, 0x9f, 0x11, + 0xb1, 0xa4, 0x17, 0x4f, 0x2e, 0x7f, 0x1a, 0xd2, 0x04, 0x28, 0x7c, 0x5f, 0xa8, 0xcb, 0x17, 0x67, + 0x28, 0xd4, 0xe5, 0x23, 0x18, 0x16, 0x75, 0xf9, 0x50, 0x97, 0xcf, 0xec, 0xea, 0xa1, 0x8e, 0x87, + 0x3a, 0xdd, 0x6a, 0x5b, 0xcd, 0xa0, 0xd1, 0x26, 0x2d, 0xca, 0xd7, 0x1f, 0x10, 0x94, 0x0b, 0x94, + 0x0b, 0x94, 0x2b, 0x55, 0x94, 0x8b, 0x40, 0x2e, 0x27, 0x65, 0xf3, 0x10, 0x84, 0x0b, 0x84, 0x0b, + 0x84, 0x4b, 0x69, 0xa9, 0x8e, 0x0e, 0x40, 0xaf, 0x36, 0x84, 0x5e, 0xb5, 0x69, 0x98, 0xc3, 0x24, + 0xc1, 0xa2, 0xf1, 0x5a, 0x82, 0x62, 0x81, 0x62, 0x81, 0x62, 0x91, 0x17, 0x3d, 0x26, 0x5b, 0xcd, + 0xcd, 0xab, 0x79, 0x4c, 0xde, 0x10, 0x18, 0x25, 0x8f, 0x97, 0x5e, 0xb8, 0x37, 0xbc, 0xd9, 0xee, + 0xcf, 0x9d, 0x87, 0xbc, 0x55, 0xa8, 0x8d, 0x7e, 0x39, 0x78, 0xd8, 0xb7, 0x0a, 0xb5, 0x5d, 0x94, + 0x44, 0x96, 0xda, 0xbb, 0x47, 0xd8, 0xbb, 0xa8, 0x88, 0x9c, 0x50, 0x45, 0xe4, 0xbd, 0x9d, 0x7c, + 0x4f, 0xc0, 0x4f, 0x06, 0x32, 0x9f, 0xaf, 0xcd, 0x41, 0xc1, 0x40, 0xb4, 0x51, 0x38, 0x39, 0x3d, + 0x16, 0x01, 0x75, 0x19, 0xb9, 0xc9, 0x41, 0x61, 0x15, 0xc0, 0x2a, 0x80, 0x55, 0x90, 0x3e, 0xab, + 0x60, 0x20, 0x9e, 0xe4, 0x7d, 0x3c, 0x37, 0xe5, 0x60, 0xfc, 0x09, 0x03, 0xb5, 0x3a, 0xc4, 0xb9, + 0x78, 0xe2, 0xc1, 0x0d, 0x9d, 0xa1, 0xde, 0xc7, 0xb1, 0xf8, 0xa9, 0x25, 0x5d, 0x83, 0x63, 0xf1, + 0x85, 0xc3, 0x22, 0x8e, 0xc4, 0x53, 0x8f, 0xb6, 0xf6, 0x96, 0x37, 0x69, 0x6d, 0xd6, 0x39, 0xdd, + 0x4a, 0xa9, 0x1f, 0x58, 0x6a, 0xb5, 0xce, 0x4d, 0x48, 0xe5, 0x26, 0x2a, 0xd7, 0x9a, 0xe3, 0x08, + 0x5d, 0x05, 0xe4, 0x1a, 0x8e, 0x47, 0xcb, 0xcd, 0x4e, 0xca, 0xe7, 0x5b, 0xc2, 0x3a, 0x97, 0x8c, + 0x50, 0xce, 0x3f, 0x13, 0xf7, 0xe7, 0x37, 0x98, 0x89, 0x81, 0xa0, 0x50, 0x56, 0x4b, 0xcc, 0xf4, + 0x4c, 0x54, 0xce, 0x2f, 0xb1, 0x29, 0x06, 0x53, 0xf1, 0xe5, 0x02, 0x33, 0x31, 0x98, 0x89, 0x6a, + 0xe1, 0x1e, 0x53, 0x31, 0x94, 0x8f, 0xcf, 0x90, 0x8f, 0xe1, 0x54, 0xdc, 0xde, 0xfd, 0x86, 0xa9, + 0x18, 0x4c, 0x45, 0xe9, 0xcb, 0xfd, 0xaf, 0xb9, 0x94, 0x9b, 0x12, 0x35, 0x64, 0x01, 0x11, 0xdd, + 0x5f, 0xab, 0x59, 0x62, 0xd1, 0x6a, 0x06, 0xa1, 0xd5, 0x6e, 0xf9, 0x21, 0x61, 0xbf, 0xc4, 0x89, + 0x41, 0xe1, 0xf3, 0x5f, 0x39, 0x5d, 0xf0, 0xf9, 0xc3, 0xe7, 0xbf, 0xfc, 0x8d, 0xe8, 0x7d, 0xfe, + 0x3d, 0xb9, 0xb4, 0xbc, 0xce, 0xcb, 0x23, 0x49, 0xa1, 0xb2, 0x91, 0x88, 0x1e, 0x21, 0xe7, 0x3a, + 0x11, 0x6c, 0x5b, 0xec, 0x0d, 0x41, 0xce, 0x75, 0x96, 0x96, 0xea, 0xe8, 0xf0, 0xf0, 0x00, 0xa7, + 0xda, 0x36, 0x85, 0x70, 0x05, 0x7e, 0x83, 0x9e, 0x70, 0x45, 0x83, 0x82, 0x70, 0x81, 0x70, 0x81, + 0x70, 0x81, 0x70, 0x81, 0x70, 0x81, 0x70, 0x81, 0x70, 0x81, 0x70, 0x6d, 0x3a, 0xe1, 0x42, 0x6b, + 0x7c, 0x10, 0x2e, 0x10, 0xae, 0xcd, 0x22, 0x5c, 0x68, 0x8d, 0x8f, 0xd6, 0xf8, 0x53, 0xed, 0xbe, + 0xe8, 0x80, 0x9f, 0xaa, 0x85, 0x18, 0x70, 0x1f, 0xb8, 0x0f, 0xdc, 0x47, 0x83, 0xbf, 0x84, 0xed, + 0x6c, 0x34, 0xf8, 0xc3, 0x41, 0x86, 0xc5, 0x26, 0x32, 0x1a, 0xfc, 0xf1, 0xbb, 0x39, 0x8c, 0xaf, + 0x29, 0x1a, 0xfc, 0xf1, 0x8c, 0x86, 0x06, 0x7f, 0x5a, 0x1a, 0x16, 0x0d, 0xfe, 0x52, 0x68, 0x39, + 0x85, 0x0d, 0x62, 0xb3, 0x29, 0x6c, 0xc0, 0x66, 0x82, 0xcd, 0x04, 0x9b, 0x29, 0x85, 0x36, 0x93, + 0xb6, 0x68, 0x6e, 0xa3, 0xfa, 0x66, 0xea, 0xe8, 0x1f, 0x02, 0x93, 0xd9, 0x0b, 0x4c, 0x1e, 0x23, + 0x28, 0x99, 0x19, 0x82, 0x85, 0xd6, 0xab, 0x83, 0xbe, 0x87, 0x73, 0x2d, 0xd7, 0xf6, 0x96, 0x34, + 0x61, 0xdb, 0x1b, 0xb6, 0x9c, 0x32, 0xd5, 0x92, 0x55, 0xa1, 0x13, 0x9a, 0x5e, 0x8f, 0x1f, 0x92, + 0xde, 0x3e, 0x9a, 0x10, 0x83, 0xd6, 0x5a, 0x66, 0xd8, 0x2b, 0x5a, 0x6b, 0x11, 0xb2, 0xd2, 0x71, + 0x26, 0xab, 0xb0, 0x9f, 0xf4, 0x4a, 0x26, 0x44, 0x4e, 0x05, 0x0d, 0x55, 0x9a, 0xbb, 0x19, 0xe2, + 0xe3, 0xc7, 0x8f, 0x43, 0xcc, 0xda, 0x1b, 0x48, 0x74, 0x8a, 0x91, 0x6b, 0xd0, 0xed, 0x5a, 0x1b, + 0xb9, 0x06, 0xc3, 0x24, 0xdc, 0x14, 0xb0, 0x00, 0xe4, 0x02, 0x72, 0x19, 0x41, 0x2e, 0x34, 0x05, + 0x84, 0x9b, 0x0c, 0x6e, 0x32, 0xb8, 0xc9, 0x56, 0xee, 0x37, 0x34, 0x05, 0x84, 0x97, 0x0c, 0x5e, + 0xb2, 0x94, 0x2c, 0x15, 0x9a, 0x02, 0xa2, 0x29, 0x20, 0x9a, 0x02, 0x82, 0x72, 0x81, 0x72, 0xad, + 0x33, 0xe5, 0x42, 0x53, 0x40, 0x10, 0x2e, 0x10, 0xae, 0x54, 0x2c, 0x15, 0x9a, 0x02, 0x6e, 0x0c, + 0xbd, 0x42, 0x53, 0x40, 0x50, 0x2c, 0x50, 0xac, 0x0d, 0xa1, 0x58, 0x68, 0x0a, 0xa8, 0x3c, 0x71, + 0x68, 0x0a, 0x88, 0xa6, 0x80, 0x06, 0x28, 0x23, 0x9a, 0x02, 0xa2, 0x29, 0x20, 0x9a, 0x02, 0xa6, + 0x42, 0xa0, 0xd1, 0x14, 0x10, 0x4d, 0x01, 0x61, 0x15, 0xc0, 0x2a, 0xd8, 0x0c, 0xab, 0x00, 0x4d, + 0x01, 0x95, 0xe7, 0x0f, 0x4d, 0x01, 0x09, 0x99, 0x1a, 0x9a, 0x02, 0x26, 0xe2, 0x45, 0x25, 0x36, + 0x63, 0xa6, 0x97, 0x14, 0x4d, 0x01, 0x13, 0x5e, 0x54, 0x1c, 0xa3, 0x4f, 0xc6, 0xf2, 0x46, 0x53, + 0xc0, 0xe9, 0x09, 0x41, 0x53, 0xc0, 0xc5, 0x93, 0x82, 0xa6, 0x80, 0x68, 0x0a, 0xb8, 0x8d, 0xa6, + 0x80, 0x4b, 0x66, 0x02, 0x4d, 0x01, 0xd1, 0x14, 0x70, 0x6e, 0x26, 0xd0, 0x14, 0x10, 0x4d, 0x01, + 0xe7, 0xa7, 0x02, 0x4d, 0x01, 0xd1, 0x14, 0x30, 0xd1, 0x51, 0xd0, 0x14, 0x10, 0x4d, 0x01, 0x55, + 0xa6, 0x0b, 0x3e, 0x7f, 0xf8, 0xfc, 0x97, 0xbf, 0x11, 0x7a, 0xd4, 0xa4, 0xc0, 0xab, 0x83, 0x9c, + 0x6b, 0xe4, 0x5c, 0xa3, 0x47, 0x0d, 0x08, 0x17, 0x09, 0xe1, 0x42, 0x53, 0x40, 0x10, 0x2e, 0x10, + 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x10, 0x2e, 0x4e, 0xc2, 0x85, + 0xa6, 0x80, 0x20, 0x5c, 0x20, 0x5c, 0x9b, 0x45, 0xb8, 0xd0, 0x14, 0x10, 0x4d, 0x01, 0xd1, 0x14, + 0x10, 0xb8, 0x0f, 0xdc, 0xdf, 0x30, 0xdc, 0x47, 0x53, 0x40, 0xc5, 0x99, 0x43, 0x53, 0x40, 0x4a, + 0x53, 0x10, 0x4d, 0x01, 0x93, 0xb1, 0x93, 0x19, 0xdc, 0x1b, 0xac, 0x6e, 0x0e, 0xe3, 0x6b, 0x8a, + 0xa6, 0x80, 0x3c, 0xa3, 0xa1, 0x29, 0xa0, 0x96, 0x86, 0x45, 0x53, 0xc0, 0x14, 0x5a, 0x4e, 0x68, + 0x0a, 0x08, 0x9b, 0x09, 0x36, 0xd3, 0x66, 0xd8, 0x4c, 0x68, 0x0a, 0x98, 0x24, 0xb5, 0x47, 0x60, + 0x92, 0x83, 0xb9, 0xa3, 0x29, 0x20, 0x82, 0x92, 0x69, 0x25, 0x58, 0x9e, 0x78, 0x0d, 0xad, 0x6f, + 0xad, 0xb6, 0xf5, 0xec, 0xb7, 0x3a, 0x84, 0x25, 0xce, 0x67, 0xc6, 0x05, 0xdd, 0x02, 0xdd, 0x02, + 0xdd, 0x4a, 0x15, 0xdd, 0xd2, 0xef, 0x7a, 0x37, 0x67, 0x3d, 0x1f, 0xd3, 0x84, 0x25, 0x47, 0x5d, + 0xf0, 0xa2, 0xff, 0xa6, 0xc1, 0x24, 0x98, 0xf9, 0x3d, 0xea, 0x96, 0xd7, 0xcc, 0x65, 0x10, 0x80, + 0x5b, 0x8d, 0x50, 0x84, 0xc1, 0xa8, 0x6d, 0xa9, 0x68, 0xd2, 0x41, 0xf0, 0xdc, 0xc8, 0x00, 0x61, + 0x80, 0x30, 0x40, 0x38, 0x55, 0x20, 0xdc, 0x68, 0x75, 0xbc, 0x50, 0xf8, 0x68, 0xf2, 0x05, 0xab, + 0x17, 0x56, 0x6f, 0x0a, 0x96, 0x0a, 0x4d, 0xbe, 0x36, 0xd5, 0x10, 0x6e, 0xdb, 0x8d, 0x3f, 0x99, + 0x88, 0xd8, 0xfc, 0xd0, 0x60, 0x62, 0x60, 0x62, 0x60, 0x62, 0x60, 0x62, 0x60, 0x62, 0x60, 0x62, + 0x60, 0x62, 0x60, 0x62, 0xeb, 0xc7, 0xc4, 0x8c, 0x36, 0xd4, 0x2f, 0x79, 0x5e, 0x2b, 0x1c, 0xe4, + 0x04, 0x69, 0xf5, 0xd5, 0x0f, 0x1a, 0xdf, 0xc4, 0x8b, 0xdd, 0x1e, 0x7a, 0x20, 0xf7, 0x5a, 0x6d, + 0xe1, 0x0d, 0x7c, 0x8b, 0x96, 0x27, 0xc2, 0xbf, 0x5a, 0xfe, 0x9f, 0x96, 0xe3, 0x05, 0xa1, 0xed, + 0x35, 0xc4, 0xde, 0xec, 0x07, 0xc1, 0xdc, 0x27, 0x7b, 0xf6, 0x53, 0x18, 0xec, 0xb5, 0x5b, 0xae, + 0xd3, 0x78, 0x1b, 0x51, 0x3f, 0xc7, 0x7b, 0x9e, 0xff, 0xc4, 0x12, 0x5e, 0xe8, 0xbf, 0xed, 0x05, + 0xa1, 0x1d, 0x0a, 0x35, 0xbd, 0x2c, 0x3f, 0xdb, 0x72, 0x57, 0x48, 0xae, 0x4b, 0x8f, 0x21, 0xf5, + 0x2b, 0xcf, 0x7a, 0x4d, 0x21, 0x4b, 0x8e, 0x72, 0x55, 0x27, 0x08, 0x4b, 0x61, 0xe8, 0x2b, 0xad, + 0x64, 0x4f, 0x29, 0x95, 0x5d, 0xd1, 0xe3, 0x3a, 0x3d, 0x79, 0xf6, 0x3a, 0xae, 0xfb, 0x61, 0x4b, + 0x05, 0x2e, 0xf5, 0x07, 0xb9, 0xf6, 0x9b, 0xc2, 0x17, 0xcd, 0x4f, 0x6f, 0xc3, 0x21, 0x58, 0x27, + 0x5c, 0x53, 0x00, 0x12, 0xdd, 0xf8, 0x0a, 0x7c, 0x2b, 0x17, 0x84, 0x7e, 0xa7, 0x11, 0x7a, 0x43, + 0xea, 0x76, 0x35, 0x78, 0x80, 0xca, 0xf0, 0xfe, 0xf5, 0xd2, 0x53, 0x18, 0xd4, 0x6f, 0xfa, 0x77, + 0xfb, 0x25, 0xba, 0x59, 0xb9, 0x7f, 0xaf, 0x2d, 0x1e, 0x21, 0x89, 0xf7, 0xcd, 0x98, 0xab, 0xaa, + 0xba, 0x9a, 0x46, 0x56, 0x31, 0xde, 0x0c, 0xae, 0x9e, 0x8f, 0xf7, 0xbf, 0xb1, 0x62, 0xa6, 0x64, + 0x67, 0x88, 0x61, 0x66, 0x62, 0xec, 0xda, 0x18, 0xbb, 0xf4, 0xfd, 0xd9, 0x5c, 0x3e, 0x47, 0xef, + 0xcc, 0x4f, 0xae, 0x31, 0xb2, 0xea, 0xdf, 0x9f, 0x97, 0x09, 0xc3, 0xa7, 0xff, 0xfd, 0x15, 0x33, + 0x3e, 0x0a, 0xf1, 0xad, 0xf8, 0x5a, 0x5c, 0x97, 0x82, 0x8c, 0xcb, 0x60, 0xd2, 0x25, 0xe0, 0x89, + 0xb0, 0xb7, 0x0c, 0x71, 0x66, 0x5f, 0xd2, 0xec, 0x57, 0x36, 0xeb, 0x95, 0xcd, 0xf6, 0x59, 0xb3, + 0x7c, 0xf4, 0x6e, 0xcc, 0xb2, 0x73, 0xe1, 0xc4, 0xd3, 0xad, 0xb9, 0xa6, 0x08, 0x1a, 0xbe, 0xd3, + 0x96, 0xc2, 0xa1, 0x71, 0x1f, 0xed, 0x89, 0x8b, 0x63, 0x4e, 0x87, 0x9c, 0x41, 0x21, 0xed, 0xbd, + 0x52, 0xf1, 0x52, 0xa9, 0x6d, 0x3d, 0x5d, 0xcf, 0x93, 0xb6, 0x87, 0x49, 0xdb, 0x93, 0xa4, 0xbc, + 0x35, 0x79, 0x14, 0xa2, 0xb4, 0xb7, 0x27, 0x5a, 0xb7, 0x20, 0xf4, 0x7b, 0x4a, 0x4b, 0x62, 0xcd, + 0xa2, 0x23, 0xd6, 0x54, 0x8a, 0x2e, 0x06, 0x54, 0x09, 0xcf, 0x7e, 0x74, 0x25, 0x3c, 0xce, 0x13, + 0xa7, 0x21, 0x06, 0x17, 0x42, 0xc2, 0x20, 0x61, 0x09, 0x49, 0xd8, 0x63, 0xab, 0xe5, 0x0a, 0xdb, + 0x53, 0x11, 0xb1, 0xbc, 0x79, 0x11, 0x1b, 0x15, 0x63, 0xb0, 0x9e, 0xec, 0x17, 0xc7, 0x75, 0x44, + 0xa0, 0x2c, 0x73, 0xf3, 0x23, 0xad, 0x89, 0x10, 0x3a, 0x96, 0x7b, 0xb0, 0x99, 0x22, 0xd8, 0x7f, + 0xf3, 0xcc, 0x09, 0xa0, 0x5a, 0x7f, 0x1f, 0x95, 0xfe, 0x3d, 0x7a, 0xfd, 0x79, 0xa2, 0x07, 0x2e, + 0x5d, 0x5c, 0xdc, 0x96, 0xef, 0xee, 0xea, 0xbf, 0x94, 0x2e, 0x2b, 0xd5, 0x3f, 0x64, 0x57, 0x5d, + 0xa3, 0xc5, 0x8e, 0x9a, 0x67, 0x70, 0xa2, 0x9c, 0xfd, 0x6f, 0x47, 0xf2, 0xfe, 0x39, 0x05, 0x9f, + 0xa6, 0xe6, 0x73, 0x5e, 0xde, 0x54, 0xef, 0xb2, 0xf0, 0x9c, 0xd5, 0x42, 0xbd, 0x7c, 0xff, 0x6b, + 0xf9, 0xf6, 0xaa, 0x7c, 0x9f, 0x85, 0xc7, 0xad, 0xdc, 0xfc, 0x56, 0xcc, 0x31, 0x3b, 0x5a, 0x6b, + 0x09, 0xa1, 0x8f, 0x92, 0xd3, 0x55, 0xcb, 0xd9, 0xaa, 0xe5, 0x64, 0x55, 0x73, 0xae, 0xd2, 0x10, + 0x89, 0x97, 0xb0, 0x23, 0xcf, 0x19, 0x7a, 0x17, 0x81, 0xa3, 0x83, 0xa3, 0x27, 0x44, 0x11, 0x3a, + 0x8e, 0x17, 0xe6, 0x8f, 0x14, 0xd8, 0x81, 0x44, 0xe5, 0x0d, 0xc5, 0x44, 0x05, 0xb5, 0x18, 0x8f, + 0x72, 0x98, 0x4f, 0x33, 0x6a, 0xad, 0x9b, 0x48, 0x40, 0x11, 0x72, 0xee, 0xaa, 0x45, 0xb4, 0x12, + 0x9f, 0x32, 0x8d, 0x4a, 0xa7, 0x24, 0xd3, 0xc6, 0x14, 0xfa, 0xa9, 0x19, 0xd4, 0x3d, 0xc3, 0x50, + 0x82, 0xa4, 0xf2, 0xe9, 0x5f, 0x05, 0xed, 0x03, 0xed, 0x03, 0x1f, 0xec, 0x3b, 0xf7, 0xf4, 0x5b, + 0x9d, 0x50, 0x58, 0x4d, 0x27, 0x08, 0x1d, 0xef, 0xb9, 0xe3, 0x04, 0xdf, 0x84, 0x2f, 0x2f, 0x6a, + 0x8b, 0x06, 0x81, 0xe4, 0x41, 0xf2, 0x12, 0x92, 0x3c, 0xf5, 0xed, 0xb8, 0xad, 0x58, 0x76, 0x50, + 0xad, 0xbc, 0xa0, 0x02, 0x09, 0x54, 0x06, 0x97, 0x79, 0x90, 0x51, 0xb8, 0x56, 0xb7, 0x76, 0x6e, + 0xee, 0x3f, 0x3b, 0x47, 0x87, 0x0f, 0xfb, 0xd6, 0x61, 0xed, 0x61, 0xdf, 0x3a, 0xa8, 0xf5, 0x7f, + 0xfa, 0xf9, 0x90, 0xef, 0xfd, 0x9e, 0x1f, 0x7c, 0x78, 0x3a, 0xf1, 0xbf, 0xde, 0xbf, 0x9c, 0xd6, + 0xfe, 0x39, 0xfc, 0xff, 0xcc, 0xc7, 0xbb, 0x67, 0x3b, 0xc5, 0x87, 0x7d, 0xab, 0x10, 0x7d, 0xbf, + 0x18, 0xfd, 0x74, 0xd4, 0xfb, 0xdf, 0x71, 0x6d, 0xea, 0x5f, 0x7b, 0xf7, 0x19, 0xde, 0xf2, 0xb4, + 0xf6, 0xe3, 0xb4, 0x3b, 0x18, 0x64, 0xf0, 0x5b, 0xfe, 0xc3, 0xc9, 0xf0, 0xf7, 0x5d, 0x85, 0x42, + 0xbd, 0x35, 0xce, 0x0c, 0xa7, 0x4d, 0xdc, 0x21, 0x3b, 0x13, 0xab, 0x3c, 0xf8, 0x31, 0x3f, 0xb1, + 0xf8, 0x85, 0xf1, 0x52, 0xff, 0x2c, 0x0c, 0xf6, 0xd2, 0xee, 0xd7, 0xaf, 0x1f, 0x77, 0x7f, 0x1c, + 0x74, 0xe5, 0x2f, 0x3c, 0xa3, 0xdb, 0x8e, 0xd8, 0x39, 0xc9, 0xef, 0x1c, 0x06, 0x40, 0x58, 0xba, + 0x43, 0x7e, 0x14, 0xba, 0x83, 0x2f, 0x1f, 0x0c, 0xbf, 0xfa, 0x63, 0xff, 0xc3, 0xf0, 0x23, 0xb3, + 0xdb, 0x22, 0x95, 0x16, 0x5b, 0x5f, 0x03, 0xfb, 0x96, 0xd3, 0x54, 0xe4, 0x92, 0xfd, 0x4b, 0xc1, + 0x20, 0xc1, 0x20, 0x13, 0x62, 0x90, 0xcd, 0x56, 0x18, 0x8a, 0xa6, 0xf5, 0xdf, 0x8e, 0xdd, 0x54, + 0x32, 0xe0, 0x24, 0xae, 0x51, 0xc5, 0xbd, 0x9c, 0x49, 0x45, 0x99, 0x4b, 0x25, 0xca, 0x84, 0x32, + 0xeb, 0x1b, 0xad, 0x6d, 0xff, 0x2a, 0x60, 0x0b, 0xb0, 0x25, 0x21, 0x6c, 0xc9, 0x5c, 0xe2, 0xc2, + 0x55, 0xf9, 0xfe, 0xf7, 0xeb, 0xdb, 0x7f, 0xd5, 0x2b, 0x57, 0x77, 0xf7, 0xa5, 0xab, 0xf3, 0x72, + 0xfd, 0xfe, 0x8f, 0x9b, 0x72, 0x76, 0xf2, 0x17, 0xaa, 0x85, 0xdf, 0xee, 0x2a, 0x59, 0x88, 0xb4, + 0x5f, 0x94, 0x7f, 0x29, 0x7d, 0xa9, 0xde, 0x47, 0xf3, 0x9c, 0x8d, 0x64, 0x86, 0xea, 0x41, 0x26, + 0x9e, 0xf3, 0xe0, 0xb7, 0xdb, 0x5f, 0xb2, 0x31, 0xa1, 0x37, 0x85, 0x9b, 0xcc, 0xe5, 0x5b, 0xac, + 0xf5, 0xb9, 0x97, 0xe1, 0x49, 0x11, 0x9e, 0x33, 0x2b, 0x9e, 0xe8, 0x47, 0xf8, 0xac, 0x76, 0xcb, + 0x19, 0xa4, 0x84, 0xc4, 0x3f, 0xbe, 0x32, 0x73, 0x29, 0x4e, 0xb2, 0xe0, 0x24, 0xcb, 0xfb, 0xdb, + 0x4b, 0x9e, 0x2b, 0xcf, 0x8d, 0x20, 0xc7, 0x9b, 0xf3, 0xe0, 0xcd, 0xe0, 0xcd, 0x6a, 0x9b, 0x77, + 0x72, 0x13, 0xc7, 0x39, 0xd7, 0xf7, 0xde, 0x16, 0x5e, 0x7d, 0xce, 0x4f, 0x73, 0x03, 0x2b, 0x6f, + 0x64, 0x9d, 0x0d, 0x4d, 0xb3, 0xb1, 0x75, 0x37, 0x38, 0xd9, 0x46, 0x27, 0xdb, 0xf0, 0x64, 0x1b, + 0x5f, 0x8d, 0x5b, 0xc9, 0x9e, 0x61, 0x97, 0x15, 0x88, 0xa5, 0xe8, 0x2e, 0xe3, 0x6d, 0x8d, 0x0d, + 0xf8, 0xf1, 0xfd, 0xb0, 0x9a, 0xbe, 0x13, 0x32, 0x51, 0xa2, 0x10, 0x29, 0x5a, 0xd1, 0xa2, 0x12, + 0x31, 0x72, 0x51, 0x23, 0x17, 0x39, 0x72, 0xd1, 0x53, 0x13, 0x41, 0x0d, 0xeb, 0x6d, 0x9b, 0xa4, + 0xca, 0x96, 0x7e, 0x28, 0x6d, 0xde, 0xa5, 0xbc, 0x16, 0x15, 0x52, 0xd2, 0x55, 0xb0, 0x63, 0xce, + 0x86, 0x9a, 0xfb, 0x24, 0x96, 0xed, 0xa7, 0x3e, 0x85, 0x12, 0xd3, 0x47, 0x02, 0xf7, 0x84, 0x30, + 0xaf, 0x08, 0xef, 0x60, 0x48, 0x60, 0x48, 0xb2, 0xa0, 0xa1, 0x0c, 0xc7, 0x04, 0x35, 0xff, 0x75, + 0x6a, 0xfc, 0x4f, 0xd6, 0xf4, 0x1f, 0xd6, 0xea, 0x5f, 0x24, 0x77, 0x29, 0xc0, 0x16, 0xe1, 0x35, + 0x63, 0xfa, 0x9f, 0x96, 0x4e, 0xf1, 0x78, 0x08, 0x58, 0x5a, 0xc0, 0x91, 0xf5, 0xb2, 0xb4, 0x46, + 0x7b, 0x5b, 0xdf, 0xbc, 0x8a, 0x46, 0xd2, 0xb3, 0xa9, 0xf2, 0xb0, 0xa9, 0x60, 0x53, 0x65, 0xcb, + 0xa6, 0x52, 0x15, 0x3e, 0x5d, 0x3f, 0x20, 0xad, 0x5f, 0x90, 0x58, 0x20, 0xc9, 0x04, 0x93, 0x52, + 0x40, 0x79, 0x04, 0x95, 0x5a, 0x60, 0xd9, 0x04, 0x97, 0x4d, 0x80, 0xd9, 0x04, 0x59, 0x4f, 0xa0, + 0x35, 0x05, 0x9b, 0x4c, 0xc0, 0xe7, 0xb4, 0xad, 0x8e, 0x3f, 0x73, 0xa5, 0x02, 0x56, 0xf7, 0x6b, + 0x12, 0xfb, 0x39, 0xd9, 0xa0, 0x80, 0x03, 0x12, 0x78, 0xa1, 0x81, 0x0b, 0x22, 0xd8, 0xa1, 0x82, + 0x1d, 0x32, 0xd8, 0xa1, 0x83, 0x06, 0x42, 0x88, 0xa0, 0x84, 0xce, 0x0f, 0xcb, 0xe7, 0x97, 0x5d, + 0x4a, 0x04, 0x4e, 0x52, 0x52, 0x01, 0x9d, 0x60, 0x0d, 0x7a, 0x42, 0xd2, 0x10, 0x4d, 0xe1, 0x51, + 0xaa, 0xeb, 0xa8, 0x39, 0xcc, 0x78, 0x6c, 0xe0, 0x30, 0x70, 0x18, 0x38, 0xbc, 0x91, 0x38, 0x2c, + 0x5d, 0xa1, 0x25, 0x2e, 0x0a, 0x1c, 0x11, 0x0e, 0x49, 0xdb, 0x8a, 0x66, 0xf4, 0x87, 0x56, 0xa6, + 0xb6, 0xb9, 0x5a, 0xd3, 0x30, 0xc1, 0xeb, 0xdc, 0xf0, 0x4c, 0xad, 0x6a, 0xa2, 0xf1, 0x19, 0x9b, + 0x9e, 0x10, 0x8b, 0xdb, 0xf4, 0x92, 0x32, 0xb4, 0xb0, 0x31, 0xbd, 0xa4, 0x1a, 0x15, 0x70, 0x52, + 0xb1, 0xac, 0x5b, 0xe9, 0x1c, 0xad, 0xb6, 0x46, 0x4c, 0x33, 0xa4, 0xd4, 0x30, 0x2a, 0x27, 0xbd, + 0xc0, 0x2e, 0xc1, 0x2e, 0xc1, 0x2e, 0xd7, 0x8c, 0x5d, 0xaa, 0x9d, 0xb4, 0x8b, 0x6d, 0xea, 0x13, + 0xea, 0x34, 0xbd, 0x93, 0x7a, 0xb1, 0x27, 0xa4, 0x7c, 0x75, 0x71, 0x73, 0x5d, 0xb9, 0xba, 0x57, + 0x39, 0xc1, 0x17, 0x4f, 0xdd, 0x07, 0xe4, 0x3c, 0x99, 0x87, 0x2b, 0x4f, 0x4d, 0xcb, 0x6d, 0xf9, + 0xf2, 0xfa, 0xbe, 0x9c, 0xcb, 0x02, 0x21, 0x64, 0x9e, 0x89, 0xea, 0xf5, 0x79, 0xa9, 0x9a, 0x4b, + 0x39, 0x85, 0xaa, 0xad, 0x5d, 0xbb, 0xc2, 0x64, 0x23, 0x37, 0x44, 0x6d, 0x04, 0xa3, 0xf1, 0x8c, + 0x27, 0x69, 0x46, 0xb9, 0x47, 0xd1, 0x4f, 0x4a, 0x79, 0x9b, 0x74, 0xab, 0xa2, 0xd3, 0x90, 0x9b, + 0x32, 0xfc, 0xc5, 0x10, 0xf6, 0xda, 0x94, 0x26, 0xdc, 0x88, 0x78, 0x23, 0xe2, 0x6d, 0x8a, 0xb8, + 0x12, 0xe4, 0xa9, 0x2e, 0x25, 0xa9, 0xc7, 0x04, 0x63, 0xcd, 0xe7, 0xb1, 0x4e, 0xe2, 0x49, 0x06, + 0x31, 0xd6, 0x6d, 0x35, 0x6c, 0x97, 0x0e, 0x5d, 0x07, 0xc3, 0x21, 0x93, 0x08, 0xb8, 0x0a, 0x5c, + 0x4d, 0x53, 0x26, 0x11, 0x51, 0xca, 0xe0, 0xdc, 0x36, 0x26, 0x49, 0x1d, 0x24, 0x16, 0x7c, 0x78, + 0x16, 0xe1, 0x59, 0x84, 0x67, 0x91, 0x07, 0x48, 0xa2, 0x01, 0x1d, 0x2f, 0x14, 0xfe, 0x93, 0xdd, + 0x60, 0x74, 0xd1, 0x8d, 0x6f, 0x41, 0xbc, 0xf4, 0x3c, 0xc1, 0x3e, 0x72, 0xb8, 0xe1, 0x84, 0x9d, + 0x45, 0xf0, 0xe3, 0x3c, 0xe5, 0x18, 0xc2, 0xb6, 0x4c, 0x08, 0x64, 0x0c, 0x89, 0x8c, 0x21, 0xd2, + 0x32, 0x64, 0x72, 0x9e, 0xd2, 0xee, 0x85, 0x24, 0x76, 0xee, 0xd2, 0x87, 0x41, 0x18, 0xad, 0x4b, + 0x4e, 0x6b, 0x73, 0xa9, 0xf5, 0xb9, 0xd7, 0xdf, 0x16, 0x67, 0x11, 0x40, 0x06, 0xb3, 0x1f, 0x0c, + 0x7f, 0xef, 0xf7, 0x7d, 0x49, 0x69, 0xcc, 0x9e, 0x70, 0xd3, 0xe4, 0x02, 0x27, 0x14, 0x94, 0x39, + 0xf2, 0x73, 0xfb, 0x65, 0x74, 0x03, 0x28, 0x22, 0x13, 0x8a, 0x88, 0x9e, 0x07, 0x43, 0x1b, 0xa5, + 0x96, 0x27, 0x43, 0x25, 0x31, 0xe5, 0x7f, 0xce, 0xa2, 0xcc, 0x11, 0xc3, 0xd0, 0x3c, 0xf9, 0xa0, + 0xa3, 0x3f, 0x3c, 0x32, 0xba, 0xcd, 0x9d, 0x1f, 0xca, 0x0c, 0xef, 0x73, 0xb7, 0x61, 0xce, 0x17, + 0x8d, 0xee, 0x63, 0x20, 0xc1, 0x90, 0x49, 0x7c, 0xa7, 0x97, 0x9e, 0x31, 0x8f, 0x34, 0xa9, 0xa5, + 0x67, 0xcc, 0x2b, 0x4d, 0x64, 0xf9, 0xb7, 0xb2, 0x31, 0x6a, 0x6d, 0x53, 0xb8, 0xb5, 0x6b, 0x3f, + 0x0a, 0xd7, 0x7a, 0x74, 0x5b, 0x8d, 0x3f, 0xad, 0xd6, 0xd3, 0x53, 0x20, 0x42, 0x66, 0xae, 0xbd, + 0xe0, 0x86, 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, + 0xe0, 0xde, 0xe0, 0xde, 0xe0, 0xde, 0x9b, 0xc6, 0xbd, 0x03, 0xe7, 0x7f, 0x85, 0x41, 0xe6, 0xdd, + 0xbf, 0x1d, 0x78, 0x37, 0x78, 0x37, 0x78, 0x37, 0x78, 0x37, 0x78, 0x37, 0x78, 0x37, 0x78, 0x37, + 0x78, 0x37, 0x78, 0x37, 0x78, 0xf7, 0xba, 0xf3, 0xee, 0xce, 0xa3, 0x81, 0xfc, 0xc6, 0xa9, 0xbb, + 0x80, 0x65, 0x23, 0xc5, 0x71, 0x63, 0x09, 0x36, 0x52, 0x1c, 0xe9, 0x77, 0xfb, 0xba, 0xa7, 0x38, + 0x3e, 0x8c, 0x53, 0x1c, 0xff, 0xd1, 0xe8, 0xf8, 0xbe, 0xf0, 0xc2, 0x9d, 0xdd, 0xbd, 0x8f, 0x1f, + 0xf7, 0xa2, 0x6f, 0xd4, 0x86, 0x97, 0x4c, 0xe2, 0x6c, 0xb0, 0xe0, 0xb3, 0x68, 0xe4, 0xa6, 0x78, + 0x4d, 0x6d, 0xb6, 0x64, 0xaa, 0x4e, 0x13, 0x10, 0x1f, 0x93, 0x1f, 0xeb, 0xdd, 0x14, 0x1c, 0x97, + 0xef, 0x9f, 0x60, 0x24, 0x39, 0x34, 0x4f, 0xb7, 0x76, 0x14, 0x75, 0xa5, 0x82, 0xd0, 0x0e, 0x19, + 0x0a, 0x4b, 0x0d, 0x86, 0x4d, 0xf9, 0xf9, 0xaf, 0x02, 0xce, 0x7f, 0xe1, 0xfc, 0x97, 0x61, 0x1f, + 0x1f, 0xce, 0x7f, 0xe9, 0x4a, 0x04, 0x8c, 0x23, 0x18, 0x47, 0x30, 0x8e, 0x60, 0x1c, 0xc1, 0x38, + 0x92, 0x36, 0x8e, 0x70, 0xfe, 0x8b, 0xd8, 0x55, 0x87, 0xf3, 0x5f, 0x88, 0x85, 0x43, 0x1b, 0x21, + 0x16, 0x8e, 0x58, 0xf8, 0xd4, 0xd0, 0x88, 0x85, 0x9b, 0x87, 0xf7, 0xb9, 0xdb, 0x20, 0x16, 0x2e, + 0xb7, 0xf4, 0x88, 0x85, 0xa7, 0x7e, 0xf9, 0x11, 0x0b, 0x4f, 0x17, 0xb7, 0xc6, 0xf9, 0x2f, 0x70, + 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, 0x6f, 0x70, + 0x6f, 0x70, 0x6f, 0xf3, 0xdc, 0x1b, 0xe7, 0xbf, 0xc0, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, + 0xc1, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, 0xc1, 0xbb, 0xe9, 0x79, 0x37, 0xce, + 0x7f, 0xad, 0x27, 0xcb, 0x46, 0x8a, 0x63, 0x2a, 0x09, 0x36, 0x52, 0x1c, 0xe9, 0x77, 0x3b, 0xce, + 0x7f, 0xe1, 0xfc, 0x17, 0xd3, 0x2e, 0xde, 0x80, 0xf3, 0x5f, 0x83, 0x63, 0x4d, 0xe8, 0x89, 0xbb, + 0xa6, 0x3d, 0x71, 0x29, 0xda, 0x14, 0x0e, 0x5e, 0x26, 0xf4, 0x3b, 0x8d, 0xd0, 0x1b, 0x62, 0xee, + 0xd5, 0xe0, 0xe9, 0x2a, 0xc3, 0x87, 0xab, 0x9f, 0x47, 0x8f, 0x72, 0xd3, 0xbb, 0x6d, 0xbd, 0x3c, + 0xbc, 0x7f, 0xbd, 0xda, 0xbf, 0x7f, 0x06, 0xdb, 0x45, 0xfa, 0xe2, 0xa5, 0x45, 0x70, 0x8c, 0x30, + 0xd2, 0x52, 0xc3, 0xf1, 0xd0, 0x30, 0x32, 0x0e, 0x7b, 0x45, 0xc3, 0x48, 0x34, 0x8c, 0x5c, 0xf1, + 0x56, 0x68, 0x18, 0x99, 0x26, 0xf3, 0x16, 0x07, 0x86, 0x8d, 0xd9, 0xb0, 0x38, 0x30, 0x4c, 0x4b, + 0xf1, 0xc9, 0x0f, 0x0c, 0x0f, 0x34, 0xbd, 0x15, 0xbc, 0x05, 0xa1, 0x78, 0xe1, 0x73, 0xaa, 0x4d, + 0xdf, 0x06, 0x5e, 0x35, 0xc4, 0xae, 0x37, 0xdb, 0xb5, 0x86, 0xd8, 0x35, 0xd3, 0xbe, 0x77, 0xda, + 0x96, 0xdd, 0x6c, 0xfa, 0x22, 0x08, 0x38, 0x5d, 0x6c, 0xa7, 0x0c, 0x63, 0x0f, 0xe7, 0x26, 0x73, + 0xf1, 0xeb, 0xf1, 0xcc, 0x7f, 0x2f, 0x32, 0xce, 0xfd, 0xdc, 0x1a, 0x9c, 0x30, 0xde, 0xe3, 0xc6, + 0x0e, 0x43, 0xe1, 0x7b, 0x6c, 0xcb, 0x11, 0xdd, 0x68, 0x67, 0xe7, 0x61, 0xdf, 0x3a, 0xad, 0xfd, + 0x7c, 0xc8, 0x5b, 0xa7, 0xb5, 0xc1, 0x8f, 0xf9, 0xfe, 0x5f, 0x83, 0x9f, 0x0b, 0x0f, 0xfb, 0x56, + 0x71, 0xf4, 0xf3, 0xe1, 0xc3, 0xbe, 0x75, 0x58, 0xdb, 0xfd, 0xfa, 0xf5, 0xe3, 0xee, 0x8f, 0x83, + 0xae, 0xfc, 0x85, 0x3b, 0xff, 0xe7, 0xe1, 0xeb, 0xd7, 0xf6, 0x8f, 0xab, 0x6e, 0xef, 0xff, 0xd5, + 0x6e, 0xed, 0x7f, 0x76, 0xff, 0x99, 0x63, 0x7b, 0xbb, 0x1a, 0x4f, 0xdc, 0xf4, 0x43, 0x86, 0xa5, + 0xe3, 0x08, 0xd2, 0x21, 0x2d, 0x1d, 0x67, 0x3f, 0x7b, 0x7b, 0xd8, 0xb6, 0x9e, 0x4a, 0xd6, 0x2f, + 0xb5, 0x1f, 0xfb, 0x1f, 0x8a, 0xdd, 0xdd, 0xb3, 0xdd, 0x9d, 0xd9, 0xcf, 0xce, 0x76, 0x7f, 0xec, + 0x7f, 0x38, 0xec, 0xee, 0xec, 0x2c, 0xf8, 0x97, 0x7f, 0x2e, 0x1a, 0x63, 0xf7, 0xe7, 0xce, 0xce, + 0xce, 0x50, 0x2e, 0xa6, 0x64, 0xe5, 0x61, 0x3f, 0x5f, 0xfb, 0x67, 0xff, 0xc7, 0xc1, 0xff, 0x23, + 0x69, 0x8b, 0xf5, 0xe5, 0xdd, 0x85, 0x32, 0xf6, 0x81, 0x1d, 0x42, 0xfe, 0x73, 0x56, 0xfb, 0x9f, + 0xb3, 0xdd, 0x1f, 0x47, 0xdd, 0xd1, 0xcf, 0xfd, 0xff, 0xef, 0xfe, 0xdc, 0xf9, 0xf8, 0xf7, 0xaf, + 0x5f, 0x3f, 0x7e, 0xfc, 0xfb, 0xee, 0xe0, 0x85, 0x87, 0xdf, 0xfb, 0xfb, 0xe0, 0x5f, 0xff, 0x79, + 0x76, 0x36, 0xf7, 0xd1, 0xee, 0xce, 0xff, 0xf9, 0x98, 0x45, 0x58, 0x40, 0x3a, 0x85, 0xc2, 0xc6, + 0x41, 0x79, 0x0e, 0x98, 0x7b, 0x30, 0xf7, 0x60, 0xee, 0x65, 0xd9, 0xdc, 0x43, 0xaa, 0xb2, 0x49, + 0x32, 0x8b, 0x54, 0x65, 0xf9, 0xfb, 0x20, 0x55, 0x39, 0xb5, 0x4b, 0x8f, 0x54, 0x65, 0x70, 0x6b, + 0x26, 0x6e, 0xfd, 0xdd, 0xf1, 0xc3, 0x8e, 0xed, 0x5a, 0x0d, 0xc7, 0x6f, 0x74, 0x9c, 0xd0, 0x72, + 0x9a, 0xc2, 0x0b, 0x9d, 0x27, 0x47, 0xf8, 0x7c, 0x74, 0xfb, 0x9d, 0x7b, 0x82, 0x81, 0x83, 0x81, + 0x83, 0x81, 0x83, 0x81, 0x33, 0x31, 0xf0, 0x83, 0x02, 0x23, 0x03, 0x3f, 0x06, 0x03, 0x07, 0x03, + 0x07, 0x03, 0x5f, 0x4b, 0x06, 0x5e, 0x2c, 0x9c, 0x16, 0x4f, 0x8f, 0x8e, 0x0b, 0xa7, 0xa0, 0xe1, + 0xa0, 0xe1, 0xa4, 0x23, 0xe1, 0x4c, 0xc5, 0xea, 0x74, 0xfb, 0x41, 0x52, 0x16, 0x9a, 0xea, 0xc4, + 0xa5, 0x3a, 0x68, 0xaa, 0x93, 0x66, 0x5b, 0x09, 0x39, 0xb2, 0x89, 0xd9, 0x42, 0xc8, 0x91, 0xa5, + 0x90, 0x0a, 0xe4, 0xc8, 0xc2, 0x65, 0x03, 0x97, 0x0d, 0x5c, 0x36, 0xc8, 0x91, 0x5d, 0x35, 0x37, + 0xc8, 0x91, 0x8d, 0xb9, 0x06, 0xc8, 0x91, 0x45, 0x8e, 0x6c, 0xa6, 0xa4, 0x03, 0x39, 0xb2, 0xf2, + 0xd2, 0x81, 0x1c, 0xd9, 0x38, 0x10, 0x82, 0x1c, 0xd9, 0x8d, 0x71, 0x20, 0x22, 0x47, 0x16, 0xe6, + 0x1e, 0xcc, 0x3d, 0x98, 0x7b, 0x30, 0xf7, 0x90, 0x23, 0x6b, 0x9c, 0xcc, 0x22, 0x42, 0x2f, 0x7f, + 0x1f, 0x44, 0xe8, 0x53, 0xbb, 0xf4, 0xc8, 0x91, 0x05, 0xb7, 0x66, 0xe2, 0xd6, 0xc8, 0x91, 0x05, + 0x03, 0x07, 0x03, 0x07, 0x03, 0xdf, 0x0c, 0x06, 0x8e, 0x1c, 0x59, 0x30, 0x70, 0x30, 0x70, 0x30, + 0x70, 0xe9, 0xa5, 0x47, 0x8e, 0x2c, 0x68, 0x38, 0xcf, 0x48, 0xc8, 0x91, 0x8d, 0x9d, 0x23, 0x8b, + 0xc2, 0xe3, 0x5c, 0xab, 0x9d, 0xa2, 0x55, 0x4e, 0xb0, 0xf2, 0xf8, 0xed, 0xe0, 0x01, 0x32, 0x58, + 0x7a, 0x9c, 0x26, 0xd7, 0x9a, 0x34, 0xc7, 0x9a, 0xbc, 0xf0, 0x78, 0x01, 0x85, 0xc7, 0x53, 0x62, + 0x2b, 0xa3, 0xf0, 0xb8, 0xdc, 0x5b, 0x91, 0x15, 0x1e, 0xef, 0x51, 0xc3, 0xef, 0x0c, 0x67, 0x2a, + 0x86, 0xe3, 0xd2, 0x1e, 0xaa, 0xd8, 0x47, 0xe1, 0xf1, 0x94, 0x3b, 0xd5, 0x70, 0xa8, 0x22, 0x63, + 0x1c, 0x9f, 0xdc, 0x49, 0x16, 0xed, 0xdb, 0xc7, 0x56, 0xcb, 0x15, 0xb6, 0x47, 0xb9, 0x69, 0x47, + 0xfa, 0x3f, 0xbf, 0x46, 0x67, 0xda, 0x46, 0x5c, 0x95, 0x32, 0x1b, 0x29, 0x5a, 0x83, 0xc9, 0xc1, + 0x01, 0xc5, 0x80, 0x62, 0x40, 0xf1, 0x46, 0x42, 0x71, 0x10, 0xfa, 0x8e, 0xf7, 0xcc, 0x81, 0xc4, + 0x27, 0x6b, 0x84, 0xc4, 0x6d, 0x5f, 0x34, 0x44, 0x53, 0x78, 0x0d, 0x06, 0x3a, 0x3c, 0x31, 0x36, + 0x70, 0x18, 0x38, 0x0c, 0x1c, 0xde, 0x48, 0x1c, 0x26, 0xcf, 0xd8, 0x64, 0xc8, 0xd4, 0x64, 0x8a, + 0x0f, 0x33, 0x44, 0xe1, 0x39, 0xe3, 0xc1, 0xcc, 0xc1, 0x40, 0xee, 0xf8, 0xaf, 0x89, 0x98, 0x1f, + 0x43, 0xbc, 0x97, 0x35, 0xce, 0x6b, 0x6a, 0x49, 0x19, 0x33, 0x2b, 0x8d, 0x2c, 0x6b, 0x4a, 0x43, + 0xa3, 0xb5, 0x35, 0x62, 0x9a, 0x21, 0xa5, 0x86, 0x89, 0xb4, 0x4b, 0x7f, 0x54, 0xb0, 0x4b, 0xb0, + 0x4b, 0xb0, 0xcb, 0x8d, 0x64, 0x97, 0x83, 0x9c, 0xe7, 0xf0, 0xcd, 0x17, 0x4f, 0x1c, 0xa6, 0x3e, + 0xa1, 0x4e, 0xcb, 0x55, 0x86, 0x8f, 0xfa, 0xc9, 0x0e, 0x04, 0x5f, 0x52, 0x78, 0xf9, 0xea, 0xe2, + 0xe6, 0xba, 0x72, 0x75, 0x5f, 0xbf, 0xff, 0xe3, 0xa6, 0x4c, 0x2d, 0x16, 0x7d, 0x75, 0x1f, 0xb0, + 0xe4, 0x51, 0x32, 0xf1, 0x9f, 0xd1, 0xb4, 0xdc, 0x96, 0x2f, 0xaf, 0xef, 0xcb, 0xb9, 0x2c, 0x10, + 0x42, 0xe6, 0x99, 0xa8, 0x5e, 0x9f, 0x97, 0xaa, 0x69, 0x4f, 0x8b, 0xae, 0xa5, 0x0d, 0x08, 0x91, + 0xe7, 0x34, 0x35, 0x5e, 0x1a, 0xf2, 0x9c, 0x08, 0xd2, 0xd8, 0x34, 0xb2, 0x8c, 0xb6, 0x0c, 0x2e, + 0x63, 0x8f, 0xef, 0xd0, 0x44, 0xb6, 0x72, 0x55, 0x27, 0x08, 0x4b, 0x61, 0xa8, 0x97, 0x48, 0x91, + 0xbb, 0x74, 0xbc, 0xb2, 0x2b, 0x7a, 0xfc, 0xa5, 0xa7, 0x0c, 0xbc, 0x8e, 0xeb, 0x6a, 0x24, 0x5d, + 0x5d, 0xda, 0xaf, 0x74, 0x83, 0x5d, 0xfb, 0x4d, 0xe1, 0x8b, 0xe6, 0xa7, 0xb7, 0xe1, 0x50, 0x46, + 0x97, 0x89, 0x48, 0xca, 0xd2, 0x20, 0x5d, 0x39, 0xad, 0x2c, 0x3a, 0x95, 0xb4, 0x41, 0x35, 0x49, + 0x96, 0x97, 0x43, 0xb9, 0x2b, 0x24, 0xb7, 0x82, 0xee, 0x16, 0x48, 0x70, 0xe9, 0xe5, 0xe6, 0x3f, + 0xfe, 0x2c, 0x4a, 0xcc, 0xa0, 0x62, 0xfe, 0xa5, 0x56, 0xbe, 0xa5, 0x62, 0x7e, 0xa5, 0x72, 0x3e, + 0xa5, 0x8e, 0x15, 0x4f, 0x63, 0xad, 0xeb, 0x5a, 0xe5, 0x64, 0xd6, 0x37, 0x99, 0x95, 0x4d, 0x66, + 0x4d, 0xf3, 0x62, 0x83, 0x6a, 0xfe, 0x62, 0x6e, 0x56, 0x68, 0x75, 0xd2, 0x66, 0xa2, 0x3d, 0xb4, + 0x68, 0x50, 0x55, 0x7a, 0xa2, 0xe5, 0x38, 0xd3, 0x76, 0x94, 0x51, 0x38, 0xc6, 0x68, 0x1d, 0x61, + 0x54, 0x8e, 0x2f, 0x72, 0x47, 0x17, 0xb9, 0x63, 0x8b, 0xdc, 0x91, 0x65, 0x96, 0x58, 0x6b, 0x3b, + 0xa6, 0xe8, 0xd2, 0x4d, 0x34, 0xd3, 0x4b, 0x40, 0x84, 0x34, 0x89, 0x90, 0x82, 0x39, 0x29, 0x41, + 0x82, 0xb6, 0x08, 0xe7, 0x78, 0x64, 0x0e, 0xaa, 0x23, 0xb8, 0x9a, 0x19, 0xa8, 0x65, 0xf6, 0x69, + 0x99, 0x79, 0x6a, 0x66, 0x5d, 0xdc, 0xe9, 0x54, 0xdc, 0xaa, 0xc6, 0xb7, 0x68, 0x4e, 0x8a, 0x49, + 0x4b, 0xd8, 0x60, 0xf1, 0x76, 0xfd, 0xea, 0x3d, 0xfc, 0xfe, 0x37, 0x56, 0x2c, 0x87, 0xec, 0x32, + 0x70, 0x4f, 0xff, 0xfb, 0x93, 0xb2, 0xfc, 0x55, 0xdf, 0x79, 0xcd, 0x9c, 0xf0, 0x1a, 0x76, 0x3b, + 0xe8, 0xb8, 0xf1, 0xde, 0x72, 0x22, 0xa3, 0x79, 0xf2, 0xb2, 0x15, 0xd3, 0x18, 0xcf, 0x9e, 0x89, + 0x4d, 0xba, 0x64, 0xc8, 0x95, 0x1a, 0x89, 0x92, 0x25, 0x4b, 0xca, 0xa4, 0x48, 0x99, 0xfc, 0x28, + 0x93, 0x1c, 0x3d, 0x81, 0x88, 0x6b, 0x2f, 0xe4, 0x1a, 0xa3, 0xb5, 0x8c, 0x39, 0x81, 0x13, 0x26, + 0x40, 0xef, 0xba, 0xb8, 0x5a, 0x47, 0xca, 0x50, 0x96, 0x66, 0xf5, 0x2a, 0x2c, 0x5e, 0x8f, 0xb5, + 0xab, 0xb2, 0x74, 0x6d, 0x56, 0xae, 0xcd, 0xc2, 0xb5, 0x59, 0x37, 0x2d, 0x1f, 0x91, 0x35, 0x6c, + 0x7b, 0x1b, 0x2f, 0xf4, 0x5b, 0xae, 0x35, 0x9c, 0x45, 0x45, 0x77, 0xcf, 0xd4, 0x28, 0x6a, 0x5e, + 0x9f, 0x7d, 0x55, 0xaf, 0xcf, 0x3e, 0xbc, 0x3e, 0xf0, 0xfa, 0xf0, 0x9a, 0x98, 0x04, 0x87, 0xca, + 0x14, 0x0f, 0x8f, 0xf1, 0x38, 0x77, 0xa7, 0x58, 0x8c, 0xa5, 0x94, 0x0e, 0xb6, 0x98, 0x11, 0x59, + 0x0a, 0x49, 0x60, 0x00, 0x00, 0x00, 0x40, 0x66, 0x00, 0x40, 0x2f, 0xc9, 0x49, 0x27, 0x99, 0x89, + 0x26, 0x69, 0x69, 0x22, 0x39, 0xe9, 0xbc, 0x74, 0x73, 0xf7, 0xa5, 0x5a, 0xba, 0xaf, 0x5c, 0x5f, + 0xa9, 0x6e, 0x1f, 0x82, 0x24, 0x24, 0xa2, 0xfa, 0x1e, 0x97, 0x37, 0xd5, 0xbb, 0x5c, 0x12, 0x85, + 0x4a, 0x88, 0x9e, 0xff, 0xb7, 0x7f, 0x57, 0x4b, 0x57, 0xa6, 0x5d, 0xb5, 0x35, 0x6e, 0xf1, 0x64, + 0x51, 0x5e, 0xae, 0xfd, 0x28, 0x5c, 0xcb, 0x76, 0xdd, 0x56, 0x63, 0xa0, 0x73, 0x5e, 0x5a, 0x4d, + 0x0d, 0xfd, 0xb5, 0x78, 0x38, 0xa8, 0x30, 0xa8, 0x30, 0xa8, 0xb0, 0x74, 0xab, 0xb0, 0x6a, 0xe9, + 0x53, 0xb9, 0x5a, 0x2f, 0x55, 0xab, 0xd7, 0xe7, 0x7d, 0x2d, 0x56, 0xbf, 0xbc, 0xbe, 0x28, 0x67, + 0x5f, 0x95, 0xdd, 0x94, 0x6f, 0xeb, 0x57, 0xe5, 0x7f, 0xdf, 0xff, 0x7a, 0x7d, 0x93, 0x65, 0x8d, + 0x56, 0xb9, 0xba, 0xbb, 0x2f, 0x5d, 0x9d, 0x97, 0xeb, 0xfd, 0x65, 0xca, 0xf2, 0x9b, 0xf4, 0x16, + 0xe4, 0xe6, 0xb6, 0xfc, 0x4b, 0xe5, 0xdf, 0x1b, 0xac, 0xa0, 0xd7, 0x30, 0xcc, 0x33, 0x65, 0xb9, + 0x4a, 0xb5, 0x2b, 0x8f, 0x11, 0x7f, 0x89, 0xe1, 0x6c, 0x97, 0x4b, 0xb1, 0x52, 0x4a, 0xad, 0x52, + 0xf6, 0x14, 0x17, 0xe0, 0x29, 0xa6, 0x26, 0x1a, 0xf0, 0x14, 0xc3, 0x53, 0x0c, 0x96, 0x0d, 0x4f, + 0x71, 0x6c, 0xcc, 0x86, 0xa7, 0x18, 0x00, 0x00, 0x00, 0x80, 0x99, 0x9d, 0xb0, 0x99, 0x0d, 0x4f, + 0x71, 0xaa, 0xac, 0x51, 0x78, 0x8a, 0x63, 0x4f, 0x19, 0x3c, 0xc5, 0x50, 0x61, 0x50, 0x61, 0x50, + 0x61, 0xf0, 0x14, 0xa7, 0x5a, 0xa3, 0xc1, 0x53, 0xbc, 0x56, 0x0a, 0x7a, 0xed, 0x3d, 0xc5, 0x12, + 0xc7, 0x53, 0xd6, 0x3b, 0x51, 0x5f, 0x26, 0x19, 0x7e, 0x7b, 0xf5, 0x51, 0x88, 0xf2, 0xd4, 0x70, + 0x0c, 0x39, 0xff, 0x4f, 0xcd, 0xc7, 0xf8, 0x99, 0xfe, 0xbd, 0x2f, 0x23, 0xbf, 0x1f, 0xf9, 0xfd, + 0xd3, 0x5f, 0x44, 0x7e, 0x3f, 0xa2, 0x36, 0x99, 0x8a, 0xda, 0xbc, 0xd8, 0x0d, 0xcb, 0x7e, 0x76, + 0xbc, 0x67, 0x2b, 0x74, 0x5e, 0x34, 0x8c, 0xdf, 0x99, 0x71, 0x60, 0xf5, 0xc2, 0xea, 0x5d, 0x53, + 0xab, 0x57, 0xb9, 0x4a, 0xb6, 0x46, 0x35, 0x6c, 0xcd, 0xaa, 0xd7, 0x7a, 0xf5, 0xa3, 0x08, 0x6a, + 0x23, 0x90, 0x94, 0x6b, 0xa5, 0xaa, 0x4a, 0x4d, 0x59, 0xa6, 0xb8, 0xab, 0x57, 0x4d, 0x2b, 0x75, + 0x53, 0x4b, 0x50, 0x1d, 0x9a, 0x74, 0x7a, 0x0d, 0x15, 0x58, 0xa8, 0xa5, 0xc0, 0x1b, 0xdd, 0xd3, + 0xa0, 0xae, 0xb0, 0x7d, 0xcf, 0xf1, 0x9e, 0xf5, 0xf4, 0x70, 0x34, 0x0a, 0xb4, 0x30, 0xb4, 0x30, + 0xf2, 0x27, 0x96, 0x59, 0x4f, 0xf9, 0x54, 0x08, 0xfd, 0xab, 0xf3, 0xd2, 0x79, 0xb1, 0x84, 0x17, + 0xfa, 0x4e, 0xdf, 0x6b, 0xac, 0x2c, 0xf7, 0xd3, 0x03, 0x41, 0xf4, 0x21, 0xfa, 0x20, 0xe0, 0x20, + 0xe0, 0x20, 0xe0, 0x20, 0xe0, 0x9b, 0x4c, 0xc0, 0xd7, 0x30, 0xda, 0xf4, 0xd4, 0x7c, 0x4c, 0xe0, + 0x34, 0x42, 0xcf, 0xb0, 0x08, 0xed, 0x47, 0x57, 0xe1, 0x44, 0xc2, 0xf8, 0x52, 0xf8, 0xb7, 0xe1, + 0xdf, 0xd6, 0x92, 0x40, 0x69, 0xff, 0xb6, 0x36, 0xb1, 0xd6, 0x23, 0xd4, 0x79, 0x10, 0x6a, 0x10, + 0xea, 0x94, 0xd6, 0x2a, 0xee, 0xed, 0xec, 0x37, 0xfd, 0xe4, 0xa9, 0xc1, 0x30, 0x7a, 0xf5, 0x88, + 0xf3, 0xa8, 0x47, 0x4c, 0x24, 0x46, 0xe4, 0xe2, 0x44, 0x2e, 0x56, 0xe4, 0xe2, 0xa5, 0xc9, 0x55, + 0x15, 0x77, 0x8e, 0xaa, 0xd8, 0x45, 0x03, 0x48, 0xa6, 0x0a, 0xac, 0xdc, 0x7e, 0x52, 0x29, 0x04, + 0x4c, 0x02, 0x49, 0x26, 0x98, 0x94, 0x02, 0xca, 0x23, 0xa8, 0xd4, 0x02, 0xcb, 0x26, 0xb8, 0x6c, + 0x02, 0xcc, 0x26, 0xc8, 0x7a, 0x02, 0x4d, 0xe0, 0x19, 0x20, 0x11, 0xf0, 0x29, 0xcb, 0xc9, 0x6e, + 0x36, 0x7d, 0x11, 0x04, 0xf4, 0x5d, 0x35, 0x27, 0x07, 0x47, 0x73, 0xcd, 0x74, 0x41, 0x03, 0x17, + 0x44, 0xb0, 0x43, 0x05, 0x3b, 0x64, 0xb0, 0x43, 0x07, 0x0d, 0x84, 0x10, 0x41, 0x49, 0xf4, 0xb6, + 0x7c, 0xcd, 0x35, 0xe9, 0x61, 0x60, 0x8a, 0x0d, 0x9c, 0x10, 0x8e, 0x79, 0x63, 0x87, 0xa1, 0xf0, + 0x3d, 0xf2, 0xd6, 0x94, 0xb9, 0x87, 0x7d, 0xeb, 0xd4, 0xb6, 0x9e, 0x4a, 0xd6, 0x2f, 0xb5, 0x1f, + 0x85, 0xee, 0xce, 0xd9, 0xf4, 0xef, 0xbb, 0x3f, 0x0e, 0xbb, 0x39, 0xb4, 0x7b, 0x5e, 0x30, 0x6f, + 0xdf, 0x5d, 0xdb, 0xa3, 0x57, 0x4c, 0xfd, 0x51, 0xa1, 0x91, 0xa0, 0x91, 0xa0, 0x91, 0x36, 0x52, + 0x23, 0xb9, 0xc2, 0x7e, 0x62, 0x6a, 0xf5, 0x7c, 0x4c, 0xab, 0x8d, 0xfa, 0x41, 0x99, 0x8f, 0x1f, + 0xf7, 0x66, 0xfe, 0xeb, 0x01, 0x58, 0xd0, 0xff, 0xff, 0x30, 0xda, 0xd2, 0xff, 0xd9, 0x72, 0x9a, + 0x39, 0xf4, 0xa9, 0x4d, 0x7d, 0x9f, 0xda, 0xa7, 0xe6, 0xe3, 0x5e, 0x14, 0x76, 0xda, 0x1b, 0xfa, + 0xf0, 0xfb, 0x7f, 0xbf, 0x49, 0xc5, 0xce, 0xe8, 0xe7, 0x5e, 0x27, 0x60, 0xed, 0x78, 0xa1, 0xf0, + 0x9f, 0x6c, 0x0a, 0xf7, 0x60, 0x74, 0x86, 0x37, 0x1a, 0x12, 0x8e, 0x23, 0x38, 0x8e, 0xe0, 0x38, + 0x4a, 0x93, 0xe3, 0x28, 0x92, 0x4d, 0xab, 0xa7, 0x48, 0xc9, 0x19, 0xfa, 0xf4, 0xf0, 0xb4, 0x54, + 0x3d, 0xbf, 0xa1, 0x54, 0xdd, 0x79, 0x02, 0x4b, 0x4f, 0x80, 0xa5, 0x3b, 0x4f, 0xeb, 0x4a, 0xd0, + 0xa9, 0xc0, 0x24, 0x1a, 0x90, 0x28, 0xec, 0xb4, 0x54, 0x08, 0x48, 0xc2, 0x50, 0xcc, 0xb0, 0xc2, + 0x06, 0x2f, 0x9c, 0x30, 0xc3, 0x0e, 0x37, 0xdc, 0xb0, 0x63, 0x0c, 0x7e, 0x8c, 0xc1, 0x90, 0x09, + 0x38, 0xa2, 0x85, 0x25, 0x62, 0x78, 0x62, 0x83, 0x29, 0x06, 0x93, 0xc7, 0x98, 0x29, 0xb4, 0x0a, + 0xc4, 0xf6, 0x99, 0x86, 0xe7, 0x02, 0x33, 0x13, 0xa0, 0x66, 0x0c, 0xdc, 0x4c, 0x81, 0x9c, 0x71, + 0xb0, 0x33, 0x0e, 0x7a, 0x26, 0xc1, 0x8f, 0x07, 0x04, 0x99, 0xc0, 0x30, 0x9a, 0x18, 0x72, 0xe7, + 0xea, 0x52, 0x69, 0xa1, 0x77, 0xb6, 0x2e, 0x65, 0x60, 0xc7, 0x8c, 0xf7, 0xb8, 0x89, 0xbc, 0x7f, + 0xbd, 0x6d, 0x74, 0x16, 0x01, 0x72, 0x30, 0xfb, 0xc1, 0xf0, 0xf7, 0x7e, 0xa5, 0xa0, 0xad, 0x6c, + 0x6c, 0x34, 0x86, 0x4d, 0x96, 0x0b, 0x3a, 0x8f, 0x06, 0xf5, 0xe3, 0xd4, 0xdd, 0xa0, 0x22, 0xa1, + 0x22, 0xa1, 0x22, 0xa1, 0x22, 0xa1, 0x22, 0x53, 0xaa, 0x22, 0x1f, 0xc6, 0x2a, 0xf2, 0x1f, 0x8d, + 0x8e, 0xef, 0x0b, 0x2f, 0xdc, 0xd9, 0xdd, 0xfb, 0xf8, 0x71, 0x2f, 0xfa, 0x46, 0x6d, 0x78, 0xc9, + 0x24, 0xae, 0x07, 0x0b, 0x3e, 0x8b, 0x46, 0x6e, 0x8a, 0xd7, 0xcc, 0x68, 0xdb, 0x54, 0x5b, 0xcb, + 0xe5, 0xd7, 0x30, 0x20, 0xcf, 0x7f, 0xda, 0xd6, 0xae, 0x53, 0x1a, 0x07, 0xa0, 0x5b, 0x0d, 0x4b, + 0xbc, 0x86, 0x67, 0xa1, 0x70, 0xc5, 0x8b, 0x08, 0xfd, 0x37, 0xab, 0xe5, 0x59, 0x8d, 0x6f, 0xfd, + 0xc3, 0xd1, 0x46, 0x9c, 0x38, 0x4f, 0xb6, 0x1b, 0x98, 0xf0, 0xe2, 0xa4, 0xdd, 0x81, 0x53, 0xa3, + 0x76, 0xa8, 0xd3, 0x86, 0xf3, 0xe7, 0xa9, 0xaa, 0xb1, 0xf0, 0xfe, 0x18, 0xb7, 0xa6, 0x02, 0x5c, + 0x24, 0x61, 0x7f, 0xbe, 0x35, 0x25, 0x84, 0x18, 0xc9, 0xc6, 0x61, 0xf2, 0x76, 0x80, 0x44, 0x83, + 0x31, 0x69, 0xdd, 0xc9, 0xe5, 0xe0, 0x2f, 0xc0, 0xc1, 0x6f, 0x8c, 0xd8, 0xc3, 0xc1, 0xbf, 0x7e, + 0x94, 0x05, 0x0e, 0x7e, 0x78, 0x2f, 0xe0, 0xbd, 0x80, 0xf7, 0x02, 0xde, 0x0b, 0x78, 0x2f, 0x0c, + 0x78, 0x2f, 0xe0, 0xe0, 0xdf, 0x86, 0x83, 0x1f, 0x2a, 0x12, 0x2a, 0x12, 0x2a, 0x12, 0x2a, 0x12, + 0x2a, 0x12, 0x0e, 0xfe, 0x6c, 0x59, 0xcb, 0xeb, 0xef, 0x4d, 0x95, 0x68, 0x72, 0x65, 0x7e, 0x49, + 0xd3, 0x95, 0xc2, 0xcd, 0xb4, 0x19, 0x92, 0xdf, 0x04, 0x39, 0x52, 0x9f, 0xf5, 0x7b, 0xad, 0xbf, + 0x7e, 0x69, 0x3e, 0xd6, 0x2f, 0xed, 0xc6, 0x7d, 0xef, 0xd9, 0xea, 0xe5, 0xde, 0x33, 0xd5, 0x2b, + 0xa3, 0x27, 0x19, 0xff, 0x74, 0x2b, 0x9e, 0x70, 0x36, 0x33, 0xdb, 0x67, 0x33, 0x29, 0xed, 0x0f, + 0x8d, 0x3d, 0x95, 0xc5, 0xc3, 0xa1, 0x94, 0x65, 0x86, 0x18, 0xea, 0x8a, 0x50, 0x15, 0x4a, 0xc6, + 0x01, 0xd1, 0xd4, 0x99, 0x61, 0x38, 0x20, 0x9a, 0x90, 0x4d, 0xc4, 0x60, 0xfb, 0x50, 0xda, 0x38, + 0x93, 0xc5, 0x15, 0x86, 0x25, 0x14, 0x26, 0xf1, 0x24, 0x83, 0x18, 0x4b, 0x13, 0x59, 0x27, 0x8d, + 0xa4, 0x93, 0x1f, 0xbc, 0x2f, 0x00, 0x57, 0x81, 0xab, 0x99, 0xc4, 0x55, 0xb2, 0x83, 0xf7, 0xf6, + 0xb3, 0xa0, 0x3f, 0x6e, 0x6f, 0x93, 0xa5, 0xc8, 0xa1, 0x1e, 0x16, 0xea, 0x61, 0x71, 0x43, 0x04, + 0x3b, 0x54, 0xa4, 0xd3, 0x57, 0xc3, 0x57, 0x0f, 0xab, 0xe3, 0x78, 0xe1, 0x51, 0x91, 0xa1, 0x1c, + 0x16, 0x65, 0x6d, 0x46, 0xbd, 0x2e, 0x47, 0xcb, 0xfe, 0x30, 0x38, 0x40, 0x29, 0xba, 0x22, 0x19, + 0x82, 0xd7, 0xb9, 0xe1, 0x89, 0xba, 0x28, 0x2d, 0x1d, 0x9f, 0xb0, 0xfd, 0x0f, 0xb3, 0xb8, 0x4d, + 0x2f, 0xa9, 0xfd, 0x9a, 0xf9, 0x25, 0xcd, 0x9f, 0x14, 0x8b, 0x47, 0xc7, 0xc5, 0xe2, 0xfe, 0xf1, + 0xc1, 0xf1, 0xfe, 0xe9, 0xe1, 0x61, 0xfe, 0x28, 0x7f, 0x98, 0xe1, 0x55, 0x4e, 0xa9, 0x7b, 0x7f, + 0x9d, 0x8a, 0xaf, 0xf6, 0xdd, 0x9e, 0x56, 0x48, 0xa9, 0x76, 0xa6, 0x3b, 0x73, 0x0c, 0xc6, 0x06, + 0xf1, 0x04, 0xf1, 0x04, 0xf1, 0xdc, 0x48, 0xe2, 0x29, 0xbc, 0xce, 0x8b, 0xf0, 0x07, 0xd1, 0x20, + 0x86, 0x62, 0xac, 0x45, 0xc2, 0x31, 0xcb, 0x5e, 0xe7, 0xa5, 0x37, 0x09, 0xdd, 0x35, 0x02, 0x78, + 0x74, 0x7f, 0x00, 0xc4, 0x03, 0xe2, 0x01, 0xf1, 0xe8, 0xfe, 0xb0, 0x8d, 0xee, 0x0f, 0x29, 0xd4, + 0x4f, 0xe8, 0xfe, 0x00, 0x8d, 0x04, 0x8d, 0x04, 0x8d, 0x44, 0xbb, 0x6f, 0xd1, 0xfd, 0x81, 0x1d, + 0xfb, 0x91, 0x61, 0xa8, 0x94, 0x61, 0x48, 0x90, 0xb8, 0x9c, 0x4c, 0xee, 0x09, 0x89, 0xa2, 0xa6, + 0x54, 0xd0, 0xc8, 0xe8, 0x4b, 0x5a, 0xf1, 0x22, 0xf3, 0x24, 0x25, 0x70, 0xb8, 0xc1, 0x19, 0x7d, + 0x7d, 0x20, 0x49, 0x0a, 0x4e, 0x8d, 0x76, 0x7c, 0xfe, 0x97, 0x78, 0x9b, 0x31, 0xb6, 0xb7, 0x35, + 0x50, 0x34, 0x57, 0x75, 0x82, 0xb0, 0x14, 0x86, 0x9a, 0x5d, 0xa4, 0x2f, 0x1d, 0xaf, 0xec, 0x8a, + 0x9e, 0x44, 0x05, 0xb9, 0xb3, 0x6d, 0xaf, 0xe3, 0xba, 0x1a, 0x2a, 0xe6, 0xd2, 0x7e, 0xa5, 0x1b, + 0xec, 0xda, 0x6f, 0x0a, 0x5f, 0x34, 0x3f, 0xbd, 0x0d, 0x87, 0x32, 0xba, 0x56, 0x44, 0xfc, 0xc4, + 0x1c, 0x2f, 0xc9, 0x69, 0x65, 0xa5, 0xca, 0x9d, 0x73, 0x50, 0x13, 0x57, 0x79, 0x61, 0x93, 0xbb, + 0x42, 0x72, 0xa9, 0x75, 0x97, 0xd8, 0xc4, 0xd2, 0xca, 0x4d, 0x74, 0xfc, 0xe9, 0x8a, 0xf7, 0xcd, + 0x98, 0x13, 0xaa, 0x3a, 0x91, 0x9c, 0x13, 0x28, 0x21, 0x0d, 0x12, 0xbb, 0x3f, 0xde, 0x72, 0xac, + 0x9e, 0xdc, 0x18, 0x13, 0x2b, 0x99, 0x29, 0xae, 0x94, 0x11, 0x2e, 0x99, 0xf9, 0x2d, 0x9d, 0xe1, + 0xad, 0xc2, 0xa7, 0xf5, 0x78, 0xb3, 0x2a, 0x3f, 0xd6, 0xe6, 0xc1, 0xda, 0x7c, 0x57, 0x9b, 0xd7, + 0xd2, 0x8a, 0xb4, 0x6c, 0x26, 0xf4, 0x80, 0xd4, 0x3c, 0x3b, 0xde, 0xb3, 0x15, 0x3a, 0x2f, 0x0a, + 0x0b, 0x30, 0x15, 0x89, 0x18, 0x8f, 0x23, 0x39, 0x89, 0x6a, 0x06, 0xa5, 0xb2, 0x01, 0xa9, 0x63, + 0x30, 0xd2, 0x18, 0x88, 0xba, 0x06, 0x21, 0x99, 0x01, 0x48, 0x66, 0xf0, 0x91, 0x19, 0x78, 0xbc, + 0xe4, 0x41, 0xd9, 0x60, 0x9b, 0xca, 0xe7, 0xcd, 0x1f, 0xa9, 0xac, 0xf9, 0x70, 0x97, 0x1f, 0x29, + 0x5c, 0xaa, 0x97, 0x9f, 0xab, 0x67, 0x66, 0xe8, 0xfb, 0x9e, 0x88, 0xfc, 0x45, 0x44, 0xf9, 0xb3, + 0x94, 0x19, 0x94, 0x5d, 0x3d, 0xa3, 0x2b, 0x75, 0x53, 0x7b, 0x74, 0x78, 0x78, 0x70, 0x98, 0xa2, + 0xe9, 0x35, 0x64, 0xb0, 0xd4, 0xb8, 0xf8, 0xfa, 0x07, 0x39, 0x4d, 0xec, 0x0a, 0xdb, 0xf7, 0x1c, + 0xef, 0x59, 0x4f, 0x0f, 0x47, 0xa3, 0x40, 0x0b, 0x43, 0x0b, 0xaf, 0xa9, 0x16, 0x7e, 0x6c, 0xb5, + 0x5c, 0xa1, 0xe4, 0x83, 0x8b, 0xac, 0xa7, 0x7c, 0x2a, 0x84, 0xfe, 0xd5, 0x79, 0xe9, 0xbc, 0x58, + 0x23, 0xbf, 0x81, 0x86, 0xdc, 0x4f, 0x0f, 0x04, 0xd1, 0x87, 0xe8, 0x83, 0x80, 0x83, 0x80, 0x83, + 0x80, 0x83, 0x80, 0x6f, 0x32, 0x01, 0x5f, 0x53, 0x87, 0xb9, 0x44, 0x32, 0x4b, 0x0c, 0xb7, 0xf6, + 0x96, 0xc6, 0xe4, 0xc8, 0x4e, 0x0a, 0xfd, 0x64, 0xe4, 0x62, 0x79, 0xe5, 0x57, 0xc4, 0x0a, 0xde, + 0x9f, 0xcb, 0xe5, 0x33, 0xf4, 0xce, 0xec, 0x0c, 0xda, 0x0e, 0x44, 0x8f, 0x6a, 0xb5, 0x5b, 0xae, + 0xd3, 0x88, 0x43, 0xf2, 0xa6, 0xfb, 0x16, 0x2c, 0x18, 0x60, 0xc5, 0x8a, 0xc4, 0x0b, 0x0f, 0xc4, + 0x26, 0x6f, 0x32, 0x64, 0x4d, 0x8d, 0x9c, 0xc9, 0x92, 0x31, 0x65, 0xf2, 0xa5, 0x4c, 0xb6, 0x94, + 0xc9, 0x95, 0x9e, 0x6c, 0xc5, 0x75, 0xe7, 0xe7, 0xec, 0x76, 0xdb, 0x7d, 0x1b, 0x6c, 0x90, 0x37, + 0xf9, 0xe0, 0xd3, 0xd4, 0xd5, 0xcc, 0x31, 0xa8, 0x7d, 0x33, 0x31, 0x28, 0xbf, 0xdd, 0x72, 0x37, + 0x32, 0x00, 0xd5, 0x7f, 0xf1, 0xac, 0x44, 0x9f, 0x1a, 0xa3, 0x5d, 0xa1, 0x68, 0xf5, 0x0e, 0xaf, + 0x57, 0x33, 0x76, 0xf3, 0x19, 0x33, 0x76, 0x25, 0xb7, 0xf4, 0xe6, 0x58, 0xba, 0x72, 0x5b, 0xde, + 0x8c, 0x99, 0xab, 0x5a, 0x92, 0x2a, 0xd7, 0x14, 0x4f, 0x76, 0xc7, 0x0d, 0x2d, 0xf1, 0xda, 0x6e, + 0xf9, 0xa1, 0x2c, 0xa4, 0x2f, 0xdd, 0x3f, 0x8b, 0x87, 0x55, 0x9c, 0xff, 0x8b, 0xc1, 0x60, 0xbd, + 0x71, 0x6f, 0xcb, 0xff, 0x4f, 0xf9, 0xfc, 0xbe, 0x7e, 0x7b, 0xfd, 0xe5, 0xbe, 0xac, 0x3a, 0x9c, + 0x9e, 0x09, 0xa5, 0x9d, 0x46, 0x4c, 0x91, 0x3e, 0x4c, 0x20, 0xa7, 0x54, 0xf2, 0x4a, 0x2e, 0xb7, + 0xe4, 0xf2, 0x4b, 0x2b, 0xc7, 0x9a, 0xa6, 0xaa, 0xe2, 0x9e, 0xd1, 0x4e, 0xfc, 0x9d, 0x93, 0xcc, + 0x81, 0x48, 0xea, 0x56, 0xed, 0xa0, 0x38, 0x9e, 0xaf, 0x79, 0x1c, 0x5f, 0x21, 0x5f, 0xf0, 0x83, + 0x3a, 0x4e, 0x3a, 0x2f, 0x2c, 0x38, 0x39, 0x3d, 0x2c, 0x70, 0x12, 0x38, 0x09, 0x9c, 0x04, 0x4e, + 0x66, 0x10, 0x27, 0x89, 0x79, 0x24, 0x09, 0x7f, 0x04, 0x90, 0x01, 0xc8, 0x36, 0x17, 0xc8, 0xf4, + 0x4f, 0x78, 0x51, 0x9c, 0xec, 0x9a, 0xea, 0x37, 0xd5, 0x5b, 0x88, 0x33, 0xbf, 0xd5, 0x09, 0x1d, + 0xef, 0x79, 0x28, 0xdb, 0xd1, 0xc7, 0x43, 0xbc, 0x6d, 0x8a, 0x27, 0xc7, 0x73, 0x42, 0xa7, 0xe5, + 0x05, 0xcb, 0xff, 0x29, 0xfa, 0x17, 0xf5, 0xfe, 0x8d, 0x5d, 0x9c, 0xaa, 0x5a, 0x38, 0xd8, 0xe4, + 0xa9, 0x2a, 0xa2, 0xa3, 0xc0, 0x9d, 0x40, 0xf8, 0xba, 0x10, 0x41, 0x78, 0xb0, 0x75, 0x12, 0xbf, + 0x5a, 0x83, 0xb7, 0xb5, 0x1e, 0xdf, 0x28, 0x0e, 0x42, 0x72, 0x1c, 0x6a, 0x9d, 0xc2, 0xb2, 0xfe, + 0x4c, 0x66, 0xeb, 0x2c, 0xa4, 0x11, 0xf2, 0x41, 0x6c, 0x9c, 0x91, 0x18, 0x65, 0x20, 0x1f, 0x20, + 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x1f, 0x59, 0x21, 0x1f, 0x1b, 0x74, + 0xa2, 0x7c, 0x49, 0xd6, 0xcf, 0xde, 0x64, 0x96, 0xc6, 0xb0, 0x08, 0x47, 0x2e, 0x05, 0x29, 0xec, + 0x6a, 0xad, 0xb1, 0xb4, 0x5a, 0x61, 0x69, 0x47, 0xf0, 0x0b, 0x88, 0xe0, 0x27, 0x8a, 0x65, 0x88, + 0xe0, 0xcb, 0xef, 0x1f, 0x44, 0xf0, 0x61, 0x53, 0xc1, 0xa6, 0x4a, 0xa3, 0x4d, 0x85, 0xc8, 0x14, + 0x22, 0xf8, 0xc0, 0x49, 0xe0, 0x24, 0x70, 0x12, 0x38, 0xc9, 0x80, 0x93, 0x88, 0xe0, 0x03, 0xc8, + 0x00, 0x64, 0x69, 0x02, 0x32, 0x38, 0xd1, 0x39, 0xd6, 0x07, 0x4e, 0x74, 0xe9, 0x8d, 0x08, 0x27, + 0x3a, 0x15, 0x96, 0x21, 0x82, 0xbf, 0x78, 0x8e, 0x10, 0xc1, 0x07, 0xf9, 0x00, 0xf9, 0x00, 0xf9, + 0x00, 0xf9, 0x00, 0xf9, 0x00, 0xf9, 0x00, 0xf9, 0x50, 0x27, 0x1f, 0x88, 0xe0, 0x4f, 0x47, 0xf0, + 0x15, 0xfa, 0x11, 0x6d, 0x76, 0xdd, 0x9b, 0x38, 0xb3, 0x4a, 0x57, 0x3f, 0xbe, 0xd2, 0xbb, 0xdb, + 0xe8, 0xb7, 0x9b, 0xe1, 0xbd, 0xea, 0xa5, 0xde, 0xbd, 0x6e, 0x06, 0xb7, 0x42, 0xf5, 0x9d, 0x3d, + 0xb5, 0x02, 0x35, 0xaa, 0xb3, 0xcf, 0x56, 0xa3, 0xe7, 0xc9, 0x6e, 0x48, 0x97, 0xe5, 0x19, 0x5c, + 0x83, 0x4a, 0x3c, 0xa8, 0xc4, 0xb3, 0x64, 0x43, 0xc9, 0x97, 0xe1, 0x19, 0x5f, 0xba, 0x1e, 0x35, + 0x78, 0xd0, 0x07, 0x22, 0x44, 0x25, 0x1e, 0xc2, 0x0d, 0xac, 0xed, 0xc1, 0x41, 0xd9, 0x59, 0x7a, + 0xa3, 0x26, 0x23, 0x65, 0x67, 0x95, 0xb3, 0xf9, 0xec, 0x20, 0x68, 0x35, 0x1c, 0x3b, 0x14, 0xcd, + 0x51, 0xf3, 0x37, 0xeb, 0xc9, 0x7e, 0x71, 0x5c, 0x95, 0x6a, 0xcd, 0x73, 0x7b, 0xe9, 0xbd, 0xc1, + 0xe1, 0x1c, 0xa5, 0xe9, 0xc1, 0xb9, 0xb9, 0xfe, 0x51, 0xed, 0x1e, 0x9b, 0x59, 0x75, 0x91, 0x3a, + 0x4d, 0xe1, 0x85, 0x4e, 0xf8, 0x46, 0xe4, 0x26, 0xd5, 0xa8, 0xc7, 0x9b, 0xab, 0x0c, 0x1f, 0xe5, + 0x93, 0x1d, 0x08, 0x3a, 0xd7, 0x5b, 0xe9, 0xe2, 0xe2, 0xb6, 0x7c, 0x77, 0x57, 0xff, 0xa5, 0x74, + 0x59, 0xa9, 0xfe, 0x91, 0xa3, 0xa8, 0x3d, 0x1c, 0x28, 0x17, 0xb7, 0x9e, 0xfc, 0x43, 0xd4, 0xde, + 0x76, 0xf4, 0x9e, 0x95, 0x9b, 0xdf, 0x8e, 0x08, 0x5a, 0xc4, 0x7e, 0x48, 0xdb, 0x7b, 0x5d, 0xde, + 0x54, 0xef, 0xd6, 0xf1, 0xbd, 0xaa, 0x85, 0x7a, 0xf9, 0xfe, 0xd7, 0xf2, 0xed, 0x55, 0xf9, 0x7e, + 0x1d, 0x5f, 0xaf, 0x72, 0xf3, 0x5b, 0x31, 0xe9, 0x8e, 0xc5, 0xb5, 0x8c, 0xa0, 0x39, 0xba, 0xdc, + 0xf2, 0xb8, 0xd1, 0x55, 0x62, 0xf8, 0x4d, 0x82, 0xc0, 0x7d, 0x13, 0x84, 0x14, 0x84, 0x14, 0x84, + 0x54, 0x6d, 0xdf, 0x04, 0xa1, 0x2f, 0xdf, 0x8f, 0x6b, 0x21, 0x17, 0x3d, 0x49, 0x33, 0xce, 0x48, + 0xbb, 0x3e, 0xc9, 0x5c, 0xa1, 0xeb, 0x8e, 0x3a, 0xce, 0x13, 0x00, 0x47, 0x01, 0x70, 0x9c, 0x27, + 0xe4, 0x07, 0x69, 0x80, 0x0d, 0x55, 0x7e, 0x90, 0xf3, 0x74, 0x36, 0x8e, 0x99, 0xcd, 0x7e, 0x30, + 0xfc, 0x5d, 0x23, 0xe5, 0xc7, 0x08, 0xb8, 0x05, 0x9d, 0x47, 0x42, 0x7c, 0x9b, 0x1a, 0x0d, 0x10, + 0x07, 0x88, 0x03, 0xc4, 0xad, 0x31, 0xc4, 0x3d, 0x8c, 0x21, 0xee, 0x1f, 0x8d, 0x8e, 0xef, 0x0b, + 0x2f, 0xdc, 0xd9, 0xdd, 0xfb, 0xf8, 0x71, 0x2f, 0xfa, 0x46, 0x6d, 0x78, 0xc9, 0x24, 0x2e, 0x04, + 0x0b, 0x3e, 0x8b, 0x46, 0x6e, 0x8a, 0xd7, 0x1c, 0x32, 0xb7, 0x78, 0x12, 0x5a, 0x06, 0x93, 0x3f, + 0x9e, 0xf3, 0xf4, 0xd4, 0x5a, 0x51, 0xb0, 0xe4, 0xd5, 0x2d, 0x78, 0x34, 0x05, 0x4d, 0x4c, 0x7b, + 0xa0, 0x29, 0xa8, 0x39, 0x95, 0xa0, 0xa3, 0x0a, 0x22, 0x15, 0xf0, 0xf1, 0xe3, 0x10, 0x25, 0xf6, + 0x9c, 0x26, 0x8a, 0x32, 0xa9, 0xc1, 0x45, 0x01, 0x70, 0x01, 0xb8, 0x88, 0xf5, 0x94, 0x48, 0xe6, + 0xc8, 0xa6, 0x89, 0x07, 0xdf, 0x79, 0x02, 0xa2, 0x98, 0x75, 0x63, 0x0f, 0xc9, 0x1c, 0x52, 0xa3, + 0x22, 0x99, 0xc3, 0xf4, 0x7b, 0x21, 0x99, 0x23, 0x93, 0xaf, 0x87, 0x64, 0x8e, 0xf8, 0x73, 0x86, + 0x64, 0x0e, 0x1e, 0xcf, 0x1a, 0x92, 0x39, 0x40, 0x48, 0x41, 0x48, 0x33, 0x46, 0x48, 0x91, 0xcc, + 0x21, 0x0b, 0x37, 0x88, 0x74, 0x22, 0xd2, 0xa9, 0x0f, 0x38, 0x88, 0x74, 0x6a, 0x81, 0x0d, 0x92, + 0x39, 0xc6, 0xef, 0x83, 0x64, 0x0e, 0x40, 0x1c, 0x20, 0x0e, 0x10, 0xa7, 0x02, 0x71, 0x48, 0xe6, + 0x78, 0x67, 0x3b, 0xa7, 0x3f, 0x99, 0x23, 0x43, 0x65, 0x77, 0xfe, 0x25, 0xde, 0xa4, 0xac, 0x75, + 0x35, 0x37, 0x8d, 0x96, 0x5b, 0x46, 0xcb, 0x0d, 0xa3, 0xe6, 0x76, 0xc9, 0x60, 0xd1, 0xa2, 0x99, + 0x3d, 0x48, 0x5c, 0xa4, 0xa8, 0x3f, 0x24, 0x8a, 0x11, 0x4d, 0x4c, 0x35, 0x47, 0xa1, 0xa0, 0x97, + 0xb6, 0x2b, 0x51, 0x22, 0xa8, 0xff, 0xed, 0x6c, 0x14, 0x07, 0x8a, 0xf1, 0xa8, 0xdb, 0x99, 0xac, + 0x0c, 0xd4, 0x7f, 0xb1, 0xb4, 0x94, 0x05, 0x7a, 0x76, 0x5b, 0x8f, 0xb6, 0x2b, 0x5f, 0x13, 0x68, + 0x78, 0xdd, 0x7a, 0x14, 0x04, 0x8a, 0xb9, 0xd5, 0x74, 0xed, 0x80, 0xf4, 0x55, 0x03, 0x8a, 0xb7, + 0x15, 0x79, 0x58, 0x04, 0x4a, 0x01, 0x51, 0x1b, 0xbc, 0x1a, 0x5b, 0x9a, 0xca, 0xc4, 0x4d, 0x7f, + 0xea, 0x98, 0xdc, 0x96, 0x37, 0x63, 0x9e, 0x28, 0xe7, 0x8d, 0xf5, 0xc8, 0xa9, 0xe5, 0xda, 0x8f, + 0xc2, 0xd5, 0xf7, 0x16, 0x4d, 0x8c, 0xa5, 0xdf, 0x94, 0x6a, 0x38, 0xd1, 0xe1, 0x59, 0xe5, 0xf2, + 0xa6, 0x5a, 0x39, 0xaf, 0xdc, 0xc3, 0xff, 0xa4, 0x23, 0x96, 0xf0, 0x40, 0xa9, 0x89, 0x6d, 0xd6, + 0x7d, 0x50, 0x6b, 0x9f, 0x63, 0x76, 0xf5, 0xa5, 0x5a, 0xad, 0x57, 0x4b, 0x9f, 0xca, 0xd5, 0xfa, + 0xfd, 0x1f, 0x37, 0xe5, 0xf5, 0x4d, 0x32, 0x2b, 0xff, 0x7b, 0x88, 0x83, 0xeb, 0x98, 0xb1, 0x74, + 0x49, 0xf6, 0x6e, 0xd9, 0xca, 0x5a, 0x32, 0x12, 0x13, 0x6a, 0xff, 0x65, 0x09, 0xaf, 0x61, 0xb7, + 0x83, 0x8e, 0xab, 0xee, 0xc1, 0x9c, 0x5a, 0xaf, 0xb9, 0x11, 0xa1, 0x9b, 0xa1, 0x9b, 0xa1, 0x9b, + 0xa1, 0x9b, 0xa7, 0x5f, 0xf0, 0xe6, 0xae, 0xfc, 0xe5, 0xe2, 0xfa, 0xf7, 0xca, 0x6d, 0xb9, 0x5e, + 0xbe, 0x3a, 0x2f, 0xdd, 0xdc, 0x7d, 0xa9, 0x96, 0xee, 0x2b, 0xd7, 0x57, 0xeb, 0xab, 0xa4, 0x6f, + 0x7e, 0x2f, 0x47, 0xa9, 0xc5, 0xf5, 0xfb, 0xd2, 0xe7, 0xcf, 0xe5, 0x8b, 0xfa, 0xe5, 0xf5, 0x45, + 0x79, 0x1d, 0x95, 0xf6, 0xd4, 0xbb, 0xde, 0x96, 0x7e, 0xa7, 0x7a, 0x51, 0x68, 0xf0, 0xb9, 0x29, + 0x0f, 0x43, 0xd7, 0x6a, 0xfb, 0xad, 0xb6, 0xfd, 0x4c, 0xa4, 0xc0, 0x67, 0x07, 0xd4, 0xb7, 0xd7, + 0x7b, 0x4a, 0x01, 0x34, 0x00, 0x34, 0x00, 0x34, 0x40, 0x76, 0xc7, 0x3c, 0xb6, 0x5a, 0xae, 0xb0, + 0x3d, 0x0a, 0x0a, 0x90, 0x47, 0xae, 0x05, 0x79, 0xf0, 0xb5, 0xb7, 0x29, 0xf7, 0x06, 0xc1, 0xaa, + 0x34, 0xd5, 0xcb, 0x18, 0x85, 0x84, 0x2d, 0x3b, 0x0c, 0x7d, 0xe7, 0xb1, 0x13, 0x2a, 0x1c, 0xf4, + 0x9d, 0xcf, 0x63, 0x9e, 0x1c, 0x0d, 0x61, 0x0e, 0x46, 0x90, 0x46, 0x98, 0x63, 0xdb, 0x64, 0x98, + 0x23, 0x85, 0x39, 0xff, 0x79, 0xb0, 0x1d, 0xb0, 0x9d, 0xac, 0xb0, 0x1d, 0x55, 0xc1, 0x8b, 0x06, + 0x50, 0x0c, 0xbd, 0x2f, 0xdd, 0x78, 0x4a, 0xa1, 0x78, 0x62, 0x51, 0x24, 0x13, 0x49, 0x4a, 0xd1, + 0x64, 0x10, 0x51, 0x6a, 0x51, 0x65, 0x13, 0x59, 0x36, 0xd1, 0xe5, 0x11, 0x61, 0x1a, 0x8f, 0x87, + 0xa6, 0x63, 0x48, 0x5b, 0xb4, 0x17, 0x50, 0x52, 0x8d, 0x93, 0xbc, 0x31, 0x28, 0xaa, 0xf2, 0x19, + 0x5f, 0x62, 0xbf, 0x03, 0x1b, 0x0c, 0x70, 0xc0, 0x01, 0x23, 0x2c, 0x70, 0xc1, 0x03, 0x3b, 0x4c, + 0xb0, 0xc3, 0x05, 0x2f, 0x6c, 0xd0, 0xc0, 0x07, 0x11, 0x8c, 0xd0, 0xf9, 0x45, 0x4c, 0x22, 0xc0, + 0xb6, 0xfe, 0x99, 0x65, 0xfa, 0xd5, 0x20, 0x58, 0x89, 0x7e, 0x96, 0xb6, 0x25, 0x3c, 0xfb, 0xd1, + 0x15, 0x0c, 0x58, 0x3c, 0x35, 0x3a, 0xd1, 0xbe, 0x99, 0x70, 0x25, 0x3f, 0xd9, 0x6e, 0x20, 0x80, + 0xf1, 0xc0, 0x78, 0x60, 0xfc, 0xa6, 0x61, 0xbc, 0xbe, 0x2f, 0x7c, 0x29, 0xbc, 0xe7, 0xd3, 0x02, + 0xef, 0x89, 0xb2, 0x7d, 0x4d, 0xdf, 0xfa, 0xdc, 0x78, 0x7c, 0xbe, 0xf6, 0x45, 0x3e, 0x69, 0xcd, + 0xd2, 0xd5, 0x74, 0x4b, 0xa1, 0xb1, 0x0c, 0xb4, 0x76, 0x12, 0x07, 0x3b, 0x22, 0xd2, 0x99, 0x70, + 0x8b, 0xc0, 0x2d, 0x92, 0x5d, 0xa0, 0x24, 0xd3, 0x71, 0x84, 0xe5, 0x00, 0xe6, 0x74, 0xda, 0x31, + 0xc1, 0x58, 0x0b, 0x0a, 0x7d, 0x4f, 0x42, 0x49, 0xa6, 0x01, 0xb6, 0x37, 0xdd, 0x0c, 0x08, 0xab, + 0xbf, 0x8a, 0x9b, 0xe2, 0x79, 0x76, 0x9e, 0x00, 0xb0, 0x0c, 0x00, 0xab, 0x53, 0x4d, 0x25, 0x1d, + 0xf0, 0x4a, 0xe6, 0x75, 0x26, 0x0a, 0x2c, 0xcd, 0x6d, 0x5e, 0x92, 0x00, 0x13, 0xb1, 0xb8, 0x67, + 0xd6, 0x0b, 0x41, 0x02, 0x03, 0xf0, 0x41, 0x24, 0x01, 0x13, 0xe9, 0xf4, 0x40, 0x50, 0xc1, 0xc7, + 0x3c, 0x67, 0xa0, 0xdf, 0x56, 0x54, 0x89, 0x23, 0xcc, 0xe6, 0x1a, 0x3b, 0xc8, 0x70, 0x82, 0x0d, + 0x3b, 0xe8, 0x70, 0x83, 0x8f, 0x31, 0x10, 0x32, 0x06, 0x46, 0x26, 0x40, 0x89, 0x16, 0x9c, 0x88, + 0x41, 0x8a, 0xde, 0x94, 0x34, 0x60, 0x5a, 0x72, 0x9a, 0x9a, 0x4b, 0x4d, 0x4f, 0xfe, 0xe2, 0x9b, + 0xfc, 0x1b, 0x87, 0x70, 0xd3, 0xd0, 0x14, 0xf1, 0x5c, 0xb9, 0x69, 0x08, 0x8a, 0x7b, 0x42, 0x25, + 0x41, 0x25, 0x41, 0x25, 0x41, 0x25, 0x6d, 0xa0, 0x4a, 0x4a, 0x53, 0xb1, 0x54, 0x03, 0xda, 0x2d, + 0x55, 0xd6, 0x5f, 0xf9, 0x35, 0xa4, 0x39, 0xfd, 0x3b, 0xfa, 0xc3, 0xe7, 0x48, 0x68, 0x35, 0x2c, + 0xf1, 0x1a, 0x9e, 0x85, 0xc2, 0x15, 0x2f, 0x22, 0xf4, 0xdf, 0xac, 0x96, 0x67, 0x35, 0xbe, 0xd9, + 0xde, 0xb3, 0xe0, 0x75, 0x2e, 0xf4, 0x73, 0x68, 0x18, 0xbd, 0x0b, 0x69, 0x73, 0x2c, 0xd4, 0xa8, + 0x1c, 0xad, 0xb4, 0xf1, 0xf1, 0x31, 0xa5, 0x4b, 0x2a, 0x4e, 0x3e, 0x15, 0xb5, 0x20, 0x89, 0x9a, + 0xd3, 0x2d, 0x1c, 0x45, 0xa6, 0x9b, 0x5a, 0x3f, 0xd8, 0xd5, 0xe4, 0x58, 0xa1, 0x4f, 0xec, 0x4a, + 0x85, 0x45, 0xed, 0xfd, 0x2d, 0xc0, 0xfb, 0x9b, 0x1d, 0x96, 0x0b, 0xef, 0x2f, 0xbc, 0xbf, 0x30, + 0xb5, 0x61, 0x6a, 0xc3, 0xd4, 0x86, 0xa9, 0x0d, 0x53, 0x1b, 0xde, 0xdf, 0xe5, 0x8c, 0x16, 0xde, + 0x5f, 0xa8, 0x24, 0xa8, 0x24, 0xa8, 0x24, 0xa8, 0xa4, 0xd4, 0xaa, 0x24, 0x78, 0x7f, 0x93, 0xb3, + 0xfe, 0xd6, 0xdc, 0x45, 0xa7, 0xd0, 0xc6, 0x8b, 0xd1, 0x43, 0x87, 0xc3, 0x4a, 0xe4, 0x2b, 0x9c, + 0x23, 0xf1, 0x7a, 0xbe, 0xd7, 0x3c, 0xeb, 0xb2, 0xed, 0x06, 0xf5, 0xcf, 0xfd, 0x27, 0x1b, 0x37, + 0xd2, 0x1a, 0xff, 0x74, 0x2b, 0x9e, 0xb2, 0x98, 0xd6, 0x4f, 0xe3, 0xe9, 0x25, 0xf5, 0xf0, 0x92, + 0xa7, 0xf1, 0x17, 0x70, 0x52, 0x2a, 0x0d, 0xdc, 0x14, 0x27, 0xa5, 0x24, 0x5e, 0x09, 0x05, 0x64, + 0x50, 0x5c, 0x20, 0xd5, 0xa6, 0x2c, 0x8a, 0x0b, 0x64, 0x89, 0xde, 0xa3, 0x80, 0x4c, 0x0a, 0x56, + 0x02, 0x05, 0x64, 0x80, 0xf1, 0xc0, 0x78, 0x60, 0x7c, 0xe6, 0x30, 0x1e, 0x05, 0x64, 0xe0, 0x93, + 0x89, 0xe7, 0x93, 0x21, 0xf0, 0xb3, 0x75, 0x33, 0x52, 0xbd, 0x77, 0xd4, 0x6e, 0x5f, 0x9f, 0xff, + 0xa8, 0x35, 0xe2, 0x9f, 0x1b, 0x45, 0xa7, 0x31, 0xff, 0xfc, 0x60, 0x1a, 0x8d, 0xfa, 0xe7, 0x06, + 0x53, 0x6a, 0xdc, 0x4f, 0xb5, 0x4e, 0x44, 0xb2, 0x95, 0x98, 0x4c, 0xe5, 0xb4, 0xbc, 0x7b, 0xd2, + 0x1e, 0xcd, 0x1c, 0xba, 0x5d, 0x18, 0x5f, 0xec, 0x34, 0xf4, 0xbe, 0xf0, 0x45, 0x20, 0xfc, 0xef, + 0xa2, 0x39, 0xe8, 0x35, 0x6c, 0x3d, 0xba, 0xad, 0xc6, 0x9f, 0x1a, 0xcd, 0x2f, 0x16, 0x0f, 0x87, + 0xee, 0x17, 0x8c, 0x2c, 0x1e, 0xdd, 0x2f, 0xb6, 0x4d, 0x76, 0xbf, 0x58, 0xb4, 0xc3, 0xf5, 0x1b, + 0x61, 0x2c, 0x1c, 0x15, 0x3d, 0x31, 0xd0, 0x13, 0x23, 0x31, 0xa3, 0x17, 0x3d, 0x31, 0xd0, 0x13, + 0xc3, 0xb0, 0x5f, 0x0b, 0x21, 0x4d, 0x84, 0x34, 0xdf, 0x19, 0xc8, 0x6d, 0x35, 0x6c, 0x97, 0x25, + 0x9c, 0x19, 0x8d, 0x0c, 0x37, 0x77, 0x8a, 0xe0, 0x80, 0x0b, 0x16, 0xd8, 0xe1, 0x81, 0x1d, 0x26, + 0x78, 0xe1, 0x82, 0xce, 0xbb, 0xba, 0x9d, 0x09, 0x37, 0x77, 0x10, 0xfa, 0x8e, 0xf7, 0x8c, 0x20, + 0xe6, 0x2a, 0xf4, 0xfd, 0x4b, 0xf8, 0xd6, 0x63, 0xab, 0xe3, 0xb1, 0x00, 0xf0, 0x78, 0x70, 0x60, + 0x30, 0x30, 0x18, 0x18, 0xbc, 0x61, 0x18, 0xdc, 0x4f, 0x62, 0xe8, 0xfb, 0x3e, 0x38, 0x70, 0xf8, + 0x94, 0x70, 0xcc, 0xe1, 0x1c, 0x3c, 0x90, 0x6e, 0x22, 0xc6, 0xd3, 0x23, 0x1d, 0xc7, 0x0b, 0x0f, + 0x0a, 0x8c, 0x87, 0x47, 0x38, 0xce, 0x8e, 0xdc, 0xf6, 0x8b, 0xba, 0x50, 0xcf, 0x32, 0xdf, 0x6c, + 0x47, 0x0f, 0x7e, 0xe9, 0x78, 0x6c, 0xa7, 0xc7, 0x98, 0x54, 0xdb, 0xd2, 0xdb, 0xfc, 0x66, 0xbb, + 0x9d, 0xde, 0x22, 0xe4, 0x8f, 0x98, 0x6f, 0xf4, 0x8b, 0x6f, 0x37, 0x42, 0xa7, 0xe5, 0x5d, 0x38, + 0xcf, 0x4e, 0x3f, 0xee, 0xb8, 0xcf, 0x76, 0xbf, 0xee, 0x07, 0xc6, 0xb5, 0xb7, 0x5f, 0xd7, 0x6f, + 0xed, 0xf7, 0x8b, 0x27, 0x87, 0xc7, 0x87, 0x6b, 0xb4, 0x01, 0xb6, 0xb2, 0x31, 0x6a, 0x2d, 0xcd, + 0x87, 0x1e, 0x19, 0xd5, 0x95, 0xf0, 0x3a, 0x2f, 0xc2, 0x1f, 0x84, 0x70, 0x19, 0x0f, 0x3c, 0x16, + 0x19, 0xc6, 0x2e, 0x7b, 0x9d, 0x97, 0x1e, 0x00, 0x74, 0x53, 0x7a, 0xf2, 0xb0, 0xb6, 0x46, 0xd6, + 0x68, 0xa7, 0xdd, 0xe6, 0xb3, 0x46, 0x27, 0x07, 0x87, 0x35, 0x0a, 0x6b, 0x14, 0xd6, 0x28, 0xac, + 0x51, 0x58, 0xa3, 0xb0, 0x46, 0x61, 0x8d, 0xc2, 0x1a, 0x85, 0x35, 0x0a, 0x6b, 0x14, 0xd6, 0x28, + 0xac, 0x51, 0x58, 0xa3, 0xeb, 0x62, 0x8d, 0xe2, 0x04, 0x50, 0xac, 0x04, 0xf6, 0x85, 0x99, 0xdd, + 0x0b, 0x3f, 0xcd, 0x70, 0x3b, 0x69, 0xb2, 0x14, 0x23, 0xea, 0xd4, 0x22, 0xb4, 0x91, 0x4e, 0xd4, + 0x41, 0x80, 0x4c, 0xc2, 0x34, 0x80, 0xe5, 0x06, 0xb7, 0x91, 0x8e, 0x60, 0x04, 0xb5, 0xa6, 0x50, + 0x6b, 0x0a, 0x70, 0x0a, 0x38, 0x45, 0x62, 0x76, 0xf2, 0xfe, 0x0a, 0x84, 0x61, 0x10, 0x86, 0x31, + 0x09, 0x17, 0xb4, 0x46, 0x38, 0x12, 0xb3, 0x53, 0xe0, 0x7c, 0x40, 0x62, 0x36, 0x30, 0x18, 0x18, + 0x0c, 0x0c, 0x4e, 0x2d, 0x06, 0x23, 0x14, 0x4e, 0xfc, 0x07, 0xa1, 0x70, 0x93, 0xb3, 0x1d, 0x3d, + 0x38, 0x42, 0xe1, 0x0a, 0x37, 0x42, 0x28, 0x3c, 0xbd, 0x6b, 0x8f, 0x50, 0x78, 0x32, 0xa3, 0x22, + 0x14, 0x8e, 0x50, 0x38, 0xf1, 0xd6, 0x42, 0x62, 0x76, 0x5c, 0xca, 0x84, 0xc4, 0x6c, 0x58, 0xa3, + 0xb0, 0x46, 0x61, 0x8d, 0xc2, 0x1a, 0x85, 0x35, 0x0a, 0x6b, 0x14, 0xd6, 0x28, 0xac, 0x51, 0x58, + 0xa3, 0xb0, 0x46, 0x61, 0x8d, 0xc2, 0x1a, 0x45, 0x62, 0x36, 0xe9, 0x56, 0x5e, 0xcf, 0xc4, 0xec, + 0xcd, 0x6b, 0xd3, 0xa0, 0x99, 0x40, 0x84, 0x16, 0x0d, 0x9c, 0x6b, 0x94, 0xfe, 0x16, 0x0d, 0xf1, + 0x65, 0xcb, 0x4c, 0xbb, 0x86, 0xdb, 0xe1, 0x9d, 0xab, 0xbd, 0x1b, 0x7f, 0xea, 0xdf, 0x17, 0x7d, + 0x1b, 0xcc, 0xef, 0x80, 0x34, 0x34, 0x6e, 0x50, 0xcb, 0xaa, 0xd6, 0xca, 0xa2, 0xd6, 0x6e, 0xcc, + 0x50, 0x40, 0x63, 0x86, 0x44, 0x9d, 0x93, 0x6b, 0xdd, 0x98, 0xa1, 0xa7, 0xbe, 0x86, 0xbe, 0x41, + 0xed, 0x76, 0x0c, 0x13, 0x63, 0xa9, 0x16, 0xb4, 0x1f, 0x77, 0x50, 0x1c, 0x4e, 0x74, 0x78, 0x56, + 0xb9, 0xbc, 0xa9, 0x56, 0xce, 0x2b, 0xf7, 0x9a, 0x8d, 0x1d, 0xf6, 0xd1, 0xd8, 0x61, 0x1b, 0x8d, + 0x1d, 0x32, 0xc2, 0xc3, 0xb5, 0x63, 0x01, 0xe3, 0x8e, 0xb3, 0x4d, 0xe1, 0x85, 0x4e, 0xf8, 0xa6, + 0x77, 0x5e, 0x2b, 0xd2, 0x61, 0x1a, 0xce, 0xaa, 0x5c, 0x65, 0xf8, 0x28, 0x9f, 0xec, 0x80, 0xf0, + 0x60, 0xd3, 0xd5, 0x97, 0x6a, 0xb5, 0x5e, 0x2d, 0x7d, 0x2a, 0x57, 0xeb, 0xf7, 0x7f, 0xdc, 0x94, + 0x75, 0x77, 0x61, 0xdf, 0x37, 0x17, 0x90, 0x78, 0xc7, 0x89, 0xc3, 0xb8, 0xe5, 0x7f, 0x0f, 0x71, + 0x30, 0x0d, 0x11, 0x6b, 0xe2, 0x77, 0x8b, 0x30, 0x3e, 0x61, 0xff, 0x47, 0xcd, 0x34, 0x3e, 0x6c, + 0x19, 0x58, 0xbb, 0x5c, 0xfb, 0x2f, 0x4b, 0x78, 0x0d, 0xbb, 0x1d, 0x74, 0x5c, 0x3d, 0xbb, 0x31, + 0x5a, 0xaf, 0xb9, 0x11, 0xa1, 0x9b, 0xa1, 0x9b, 0xa1, 0x9b, 0xa1, 0x9b, 0xa7, 0x5f, 0xf0, 0xe6, + 0xae, 0xfc, 0xe5, 0xe2, 0xfa, 0xf7, 0xca, 0x6d, 0xb9, 0x5e, 0xbe, 0x3a, 0x2f, 0xdd, 0xdc, 0x7d, + 0xa9, 0x96, 0xee, 0x2b, 0xd7, 0x57, 0xeb, 0xab, 0xa4, 0x6f, 0x7e, 0x2f, 0xd7, 0xcb, 0xf7, 0xbf, + 0x96, 0x6f, 0xaf, 0xca, 0xf7, 0xf5, 0xfb, 0xd2, 0xe7, 0xcf, 0xe5, 0x8b, 0xfa, 0xe5, 0xf5, 0x45, + 0x79, 0x1d, 0x95, 0xf6, 0xd4, 0xbb, 0xde, 0x96, 0x7e, 0xa7, 0x7a, 0x51, 0x68, 0xf0, 0xb9, 0x29, + 0x0f, 0x43, 0xd7, 0x6a, 0xfb, 0xad, 0xb6, 0xfd, 0x4c, 0xa4, 0xc0, 0x67, 0x07, 0xd4, 0xb7, 0xd7, + 0x7b, 0x4a, 0x01, 0x34, 0x00, 0x34, 0x00, 0x34, 0x40, 0x76, 0xc7, 0x3c, 0xb6, 0x5a, 0xae, 0xb0, + 0x3d, 0x0a, 0x0a, 0x90, 0x47, 0x5c, 0x83, 0x35, 0xae, 0xa1, 0x10, 0x0a, 0x96, 0x88, 0x63, 0x6c, + 0x11, 0x4e, 0xa6, 0xea, 0x24, 0xf2, 0x4d, 0x5e, 0x4e, 0x2a, 0x4c, 0x13, 0x33, 0xb6, 0x17, 0x6f, + 0x2d, 0x56, 0xcf, 0x6c, 0x8c, 0x59, 0xcd, 0xb9, 0x41, 0x3b, 0x7e, 0x8f, 0xef, 0xf1, 0x59, 0xf0, + 0xde, 0x55, 0x31, 0xd7, 0x4c, 0x2e, 0x52, 0x24, 0xad, 0xf7, 0x54, 0xf4, 0x9c, 0x86, 0x5e, 0x53, + 0xd5, 0x63, 0xda, 0x7a, 0x4b, 0x5b, 0x4f, 0xe9, 0xe9, 0x25, 0x5a, 0x39, 0x96, 0x8d, 0xec, 0xe4, + 0x1a, 0x2d, 0x2f, 0x08, 0x7d, 0xdb, 0xf1, 0x44, 0xd3, 0x1a, 0x8a, 0xb1, 0x62, 0xb4, 0x73, 0x6e, + 0x24, 0x74, 0xa4, 0x67, 0xa4, 0x6d, 0x08, 0x7c, 0x6e, 0x1b, 0x0d, 0x7c, 0xda, 0x2f, 0xa2, 0x69, + 0x89, 0xd7, 0xb6, 0xeb, 0x34, 0x9c, 0xb0, 0xbf, 0xbf, 0x03, 0x82, 0x10, 0xe8, 0xa2, 0x51, 0xd1, + 0x91, 0x1e, 0x56, 0xd1, 0x86, 0x58, 0x45, 0xda, 0x1d, 0xe9, 0x17, 0x08, 0x10, 0x9d, 0x3f, 0x72, + 0xd1, 0xe0, 0xe8, 0x55, 0x6f, 0x40, 0x78, 0xa9, 0x85, 0x98, 0x4d, 0x98, 0xd9, 0x84, 0x9a, 0x47, + 0xb8, 0x69, 0x7c, 0xa6, 0xa9, 0x29, 0x89, 0xd8, 0x18, 0x49, 0x01, 0xb1, 0xa7, 0x7a, 0x38, 0x2e, + 0xed, 0xe1, 0xe7, 0x3c, 0x0e, 0x3f, 0x93, 0x0c, 0x8d, 0xc3, 0xcf, 0x46, 0xa1, 0x82, 0x06, 0x32, + 0x88, 0xa0, 0x83, 0x1c, 0x42, 0xa6, 0x78, 0x04, 0xfd, 0x9e, 0x9a, 0x24, 0x12, 0xd4, 0xdb, 0x89, + 0xe7, 0xf0, 0x21, 0x39, 0xbc, 0x70, 0xc2, 0x8c, 0x01, 0xb8, 0xe1, 0x86, 0x1d, 0x63, 0xf0, 0x63, + 0x0c, 0x86, 0xcc, 0xc0, 0x11, 0x2d, 0x2c, 0x11, 0xc3, 0x53, 0x34, 0x05, 0xe4, 0x35, 0x1a, 0xe6, + 0x76, 0x3c, 0x79, 0xf5, 0xd6, 0x39, 0xda, 0x72, 0x92, 0xd2, 0x13, 0x94, 0x84, 0x6b, 0x95, 0x0b, + 0x9c, 0xa6, 0xd5, 0xf6, 0x5b, 0xa1, 0xe8, 0x9f, 0x7c, 0xb6, 0x7c, 0xf1, 0xdf, 0x8e, 0xe3, 0x8b, + 0x26, 0x9f, 0x42, 0x58, 0x76, 0x43, 0xe2, 0xfd, 0x37, 0x11, 0x6f, 0x7f, 0xb2, 0xdd, 0x00, 0x3a, + 0xc8, 0x9c, 0x0e, 0xb2, 0x02, 0x1f, 0x6a, 0x28, 0xa5, 0x6a, 0xa8, 0xb7, 0x36, 0xd0, 0x44, 0xc4, + 0xfb, 0x5e, 0x3f, 0x2d, 0x61, 0xa5, 0x2a, 0xca, 0x6f, 0x88, 0x2a, 0x0a, 0x84, 0x3b, 0x54, 0x0c, + 0x2f, 0xad, 0xa6, 0xe0, 0xd5, 0x42, 0x33, 0xf7, 0xe2, 0x53, 0x40, 0x97, 0x95, 0x7f, 0x8f, 0x92, + 0x1b, 0xa1, 0x85, 0xa0, 0x85, 0xa0, 0x85, 0xa0, 0x85, 0x18, 0xf6, 0x3d, 0x4a, 0xd6, 0xf0, 0x69, + 0xb9, 0x54, 0x79, 0x00, 0x89, 0x4b, 0xc7, 0x8c, 0xf5, 0x2f, 0x7d, 0x3e, 0x9b, 0x1b, 0xb4, 0x83, + 0xbd, 0xd9, 0xe4, 0x98, 0xbd, 0x45, 0xa1, 0xff, 0x45, 0x1f, 0x92, 0x34, 0xfa, 0xa4, 0x5b, 0x43, + 0x8a, 0xf2, 0xb5, 0xd1, 0xfb, 0xf9, 0xad, 0x4e, 0x28, 0xac, 0xd6, 0xe3, 0xff, 0x15, 0x8d, 0x30, + 0xa0, 0x8f, 0xe3, 0x2c, 0xb9, 0x0f, 0xe2, 0x3a, 0x54, 0xf4, 0x02, 0x71, 0x1d, 0xc4, 0x75, 0x48, + 0x51, 0x9d, 0x3c, 0xae, 0xb3, 0x10, 0x02, 0xf8, 0x2c, 0xaa, 0xc5, 0xb7, 0xe3, 0xb1, 0x77, 0xf2, + 0xb0, 0x77, 0x10, 0xf9, 0xc9, 0x8a, 0xb1, 0xb3, 0x69, 0x96, 0x0e, 0x35, 0x90, 0x45, 0x03, 0x13, + 0xe7, 0xbc, 0x2c, 0x15, 0x28, 0xd2, 0x1c, 0x18, 0x43, 0x10, 0xc6, 0x0e, 0x65, 0x26, 0x20, 0xcd, + 0x20, 0xb4, 0x99, 0x82, 0x38, 0xe3, 0x50, 0x67, 0x1c, 0xf2, 0xcc, 0x42, 0x1f, 0x0f, 0x04, 0x32, + 0x41, 0x21, 0x3b, 0x24, 0x46, 0x37, 0xb0, 0x9b, 0x4d, 0x5f, 0x04, 0x01, 0xff, 0x36, 0x1e, 0x49, + 0xe6, 0xe8, 0x86, 0x1f, 0xd6, 0xa2, 0xcc, 0x38, 0x37, 0x68, 0x9a, 0x04, 0xcf, 0x04, 0x40, 0xd4, + 0x34, 0x98, 0x26, 0x06, 0xaa, 0x89, 0x81, 0x6b, 0x32, 0x20, 0xcb, 0x0b, 0xb6, 0xcc, 0xa0, 0x1b, + 0x4d, 0x19, 0x9b, 0xe7, 0x7d, 0xa9, 0xc4, 0x39, 0x6d, 0xcb, 0x0c, 0x3e, 0x6e, 0x33, 0x75, 0x97, + 0x59, 0x35, 0x97, 0x0f, 0x46, 0x36, 0xbb, 0x19, 0x10, 0x99, 0x59, 0xb9, 0xef, 0x45, 0x83, 0x6b, + 0x37, 0xb7, 0x86, 0x27, 0x06, 0xef, 0x79, 0x63, 0x87, 0xa1, 0xf0, 0x3d, 0x63, 0xcb, 0x19, 0xdd, + 0xf8, 0x3f, 0x3b, 0x3b, 0x0f, 0xfb, 0xd6, 0x69, 0xed, 0xe7, 0x43, 0xde, 0x3a, 0xad, 0x0d, 0x7e, + 0xcc, 0xf7, 0xff, 0x1a, 0xfc, 0x5c, 0x78, 0xd8, 0xb7, 0x8a, 0xa3, 0x9f, 0x0f, 0x1f, 0xf6, 0xad, + 0xc3, 0xda, 0xee, 0xd7, 0xaf, 0x1f, 0x77, 0x7f, 0x1c, 0x74, 0xe5, 0x2f, 0xfc, 0x5b, 0xce, 0xd8, + 0xcb, 0xd5, 0x8c, 0xdc, 0xa9, 0xfb, 0x61, 0x8d, 0x85, 0xef, 0x08, 0xc2, 0x67, 0x46, 0xf8, 0x6c, + 0xeb, 0xa9, 0x64, 0xfd, 0x52, 0xfb, 0x91, 0xff, 0x50, 0xec, 0x9e, 0xed, 0xfe, 0x38, 0xee, 0xce, + 0x7e, 0xf8, 0x73, 0xd1, 0xd7, 0xf2, 0x1f, 0x8e, 0xbb, 0x67, 0x4b, 0xfe, 0xe5, 0xa8, 0x7b, 0x16, + 0x73, 0x8c, 0xc3, 0xee, 0xce, 0xdc, 0x57, 0x7b, 0x9f, 0x17, 0x96, 0x5d, 0x50, 0x5c, 0x72, 0xc1, + 0xc1, 0xb2, 0x0b, 0x0e, 0x96, 0x5c, 0xb0, 0xf4, 0x91, 0x0a, 0x4b, 0x2e, 0x38, 0xec, 0xfe, 0x9c, + 0xfb, 0xfe, 0xce, 0xe2, 0xaf, 0x1e, 0x75, 0x77, 0x7f, 0x2e, 0xfb, 0xb7, 0xe3, 0xee, 0xcf, 0xb3, + 0xdd, 0x35, 0x84, 0xa2, 0xad, 0x6c, 0xbf, 0x47, 0x37, 0x93, 0xfd, 0xbd, 0xbe, 0xb5, 0xda, 0x56, + 0x68, 0x82, 0xd3, 0x46, 0xc0, 0x1c, 0xdd, 0x11, 0xd6, 0x3e, 0xac, 0x7d, 0x58, 0xfb, 0xb0, 0xf6, + 0x61, 0xed, 0xcf, 0xf6, 0x8c, 0x35, 0x04, 0x91, 0xdb, 0xcc, 0x99, 0x78, 0x73, 0xf7, 0xe2, 0xc9, + 0xcc, 0x5b, 0x0f, 0x45, 0xec, 0x78, 0x4d, 0xf1, 0x6a, 0x4e, 0x0b, 0x0f, 0x6e, 0x07, 0x15, 0x0c, + 0x15, 0x0c, 0x15, 0x0c, 0x15, 0x0c, 0x15, 0x3c, 0xd3, 0x5c, 0xfc, 0xc4, 0xa0, 0xea, 0x3d, 0x34, + 0x70, 0x2b, 0xde, 0xde, 0xe3, 0x09, 0xba, 0xfb, 0x4c, 0xf4, 0x26, 0x4f, 0x48, 0xaf, 0xcd, 0xdd, + 0x76, 0xd4, 0xbf, 0xda, 0xf4, 0x7d, 0x0d, 0x76, 0xb2, 0x36, 0x8c, 0x2e, 0xd3, 0x5b, 0xc9, 0x7e, + 0xdd, 0xb8, 0xad, 0x54, 0x38, 0x3c, 0xdc, 0xa0, 0xcd, 0x04, 0x3f, 0x66, 0xb2, 0xe6, 0x53, 0xa6, + 0xd2, 0xac, 0x98, 0x0e, 0x46, 0xcd, 0xdd, 0x27, 0x7d, 0x07, 0xa5, 0x16, 0x1f, 0xf7, 0x59, 0xfc, + 0x31, 0xe9, 0xa9, 0x2a, 0xfe, 0x0d, 0xc3, 0xb0, 0x59, 0x98, 0x2d, 0x77, 0x23, 0x16, 0x3b, 0xb3, + 0x1a, 0x42, 0x1e, 0x71, 0x3a, 0x2d, 0x71, 0xe4, 0x11, 0x6f, 0xb2, 0x82, 0x63, 0xb7, 0xac, 0xc7, + 0xbd, 0x18, 0x84, 0xfd, 0xa4, 0xd7, 0x6c, 0x2d, 0x2e, 0x80, 0xe5, 0x8f, 0x19, 0xef, 0x71, 0x33, + 0xd4, 0xd1, 0x1f, 0x3f, 0x0e, 0xb5, 0xde, 0xde, 0x00, 0x93, 0x37, 0x58, 0xf7, 0xa9, 0xf5, 0x75, + 0x97, 0xde, 0x40, 0x2a, 0xfd, 0xdf, 0xa5, 0xb7, 0x0e, 0xb7, 0xee, 0x2b, 0x40, 0xf7, 0x41, 0xf7, + 0x41, 0xf7, 0xa5, 0x42, 0xf7, 0xe1, 0x0c, 0x4d, 0xaa, 0xfd, 0x55, 0x08, 0xe9, 0x65, 0x0b, 0x4c, + 0x13, 0x03, 0xd5, 0xc4, 0xc0, 0x35, 0x19, 0x90, 0xe5, 0xf7, 0xd1, 0x6d, 0xe3, 0x0c, 0x0d, 0x19, + 0xa1, 0xc4, 0x19, 0x1a, 0x8a, 0x95, 0xc3, 0x19, 0x1a, 0xf6, 0x1b, 0xe3, 0x0c, 0x4d, 0x8a, 0xe1, + 0x32, 0x59, 0xe1, 0xc3, 0x19, 0x1a, 0x43, 0xc2, 0x87, 0x33, 0x34, 0x38, 0x43, 0x93, 0x72, 0x5e, + 0xb8, 0x8d, 0x33, 0x34, 0x0b, 0x25, 0x18, 0x67, 0x68, 0x60, 0xed, 0xc3, 0xda, 0x87, 0xb5, 0x0f, + 0x6b, 0x3f, 0x1d, 0xd6, 0x3e, 0xce, 0xd0, 0x6c, 0xa8, 0x22, 0xc6, 0x19, 0x1a, 0xa8, 0x60, 0xa8, + 0x60, 0xa8, 0x60, 0xa8, 0xe0, 0xa4, 0x55, 0x30, 0xce, 0xd0, 0x64, 0xc8, 0xdd, 0x87, 0x33, 0x34, + 0xfc, 0xf7, 0xc5, 0x19, 0x9a, 0xb5, 0xdd, 0x4a, 0x38, 0x43, 0x93, 0xc1, 0xbb, 0xe0, 0x0c, 0x8d, + 0x01, 0x88, 0xc0, 0x19, 0x9a, 0x78, 0x67, 0x68, 0x06, 0xe9, 0xad, 0x59, 0x49, 0x23, 0x4e, 0x75, + 0xbf, 0x80, 0x7f, 0x89, 0x37, 0x2e, 0xd3, 0x3c, 0x57, 0x75, 0x82, 0xb0, 0x14, 0x86, 0x4c, 0x0d, + 0x09, 0x2e, 0x1d, 0xaf, 0xec, 0x8a, 0x9e, 0x65, 0xd3, 0x43, 0x74, 0xaf, 0xe3, 0xba, 0x0c, 0xf9, + 0xda, 0x97, 0xf6, 0x2b, 0xff, 0x4d, 0xae, 0xfd, 0xa6, 0xf0, 0x45, 0xf3, 0xd3, 0xdb, 0xf0, 0x16, + 0xa9, 0xde, 0x30, 0xcc, 0x10, 0x95, 0x71, 0x68, 0xca, 0xb1, 0x9c, 0x19, 0xf0, 0x3b, 0x8d, 0xd0, + 0x1b, 0x5a, 0x8a, 0x57, 0x83, 0x57, 0xac, 0x0c, 0xdf, 0xb0, 0x7e, 0xd9, 0x76, 0x83, 0x7a, 0x35, + 0x68, 0x07, 0xf5, 0xf3, 0xf1, 0x1b, 0xde, 0xd8, 0xe1, 0xb7, 0x7a, 0xcf, 0xb6, 0x6c, 0x96, 0x87, + 0x4f, 0xd9, 0xff, 0x64, 0xf4, 0xcb, 0x6d, 0xef, 0x89, 0xaf, 0x07, 0x0f, 0x8c, 0xa6, 0x7f, 0xc9, + 0x6d, 0xfa, 0xcc, 0x6c, 0xf6, 0x75, 0x6a, 0x02, 0x38, 0x14, 0x24, 0xe2, 0x96, 0x7f, 0xfd, 0x51, + 0x69, 0x1b, 0xfc, 0xed, 0xa3, 0xc1, 0x1f, 0xc9, 0xd0, 0x68, 0xf0, 0xb7, 0x14, 0xd6, 0x36, 0xa7, + 0xc1, 0x1f, 0xb9, 0x4b, 0x97, 0xf1, 0xb0, 0x26, 0xc7, 0xe1, 0xcc, 0x05, 0x87, 0x31, 0xfb, 0x90, + 0xb5, 0x46, 0xc0, 0x4e, 0x7b, 0xb6, 0x92, 0xe5, 0x2c, 0x25, 0x5b, 0xef, 0xd6, 0x02, 0xa0, 0x1d, + 0xd0, 0xbe, 0xa1, 0xd0, 0x4e, 0xde, 0xbb, 0x95, 0x94, 0x21, 0x72, 0x32, 0x45, 0x26, 0xc6, 0xc8, + 0xc6, 0x1c, 0x39, 0x61, 0xc6, 0x00, 0xdc, 0x70, 0xc3, 0x8e, 0x31, 0xf8, 0x31, 0x06, 0x43, 0x66, + 0xe0, 0x88, 0xde, 0xfb, 0xc0, 0xe1, 0x38, 0x63, 0x4b, 0x2a, 0x98, 0x60, 0x2a, 0xbe, 0xe3, 0x71, + 0xb4, 0x4e, 0x1d, 0x1f, 0x30, 0x49, 0xab, 0xb7, 0x88, 0x90, 0x53, 0x04, 0x4e, 0xd3, 0x6a, 0xfb, + 0xad, 0x50, 0xf4, 0x43, 0x86, 0x96, 0x2f, 0xfe, 0xdb, 0x71, 0x7c, 0xd1, 0xe4, 0x53, 0x08, 0xcb, + 0x6e, 0x48, 0xdd, 0x19, 0x58, 0x3c, 0xd9, 0x1d, 0xb7, 0x2f, 0x81, 0x4f, 0xb6, 0x1b, 0x40, 0x07, + 0x99, 0xd3, 0x41, 0x56, 0xe0, 0x43, 0x0d, 0xa5, 0x54, 0x0d, 0xf5, 0xd6, 0x06, 0x9a, 0x88, 0x78, + 0xdf, 0x3f, 0xb6, 0x5a, 0xae, 0xb0, 0x3d, 0x4e, 0x55, 0x94, 0xdf, 0x10, 0x55, 0x14, 0x08, 0x77, + 0xa8, 0x18, 0x5e, 0x5a, 0x4d, 0xc1, 0xab, 0x85, 0x66, 0xee, 0xc5, 0xa7, 0x80, 0x2e, 0x2b, 0xff, + 0x2e, 0x5f, 0xd4, 0x2f, 0xaf, 0x2f, 0xca, 0xd0, 0x42, 0xd0, 0x42, 0xd0, 0x42, 0xd0, 0x42, 0x1c, + 0xfb, 0x5e, 0x78, 0x9d, 0x17, 0xe1, 0x0f, 0xc2, 0xb6, 0x8c, 0x9a, 0x88, 0xe1, 0x14, 0x13, 0xd3, + 0xa9, 0x25, 0x84, 0xe7, 0x25, 0xf5, 0x6f, 0xea, 0xc2, 0xf3, 0x84, 0x99, 0x6f, 0x04, 0x41, 0x9b, + 0xad, 0x04, 0x17, 0x7f, 0x94, 0xb9, 0x46, 0xe0, 0x4e, 0xa5, 0x4d, 0x54, 0x63, 0x49, 0x4c, 0x63, + 0x49, 0x44, 0xa3, 0x4d, 0x3c, 0xd3, 0x5d, 0x4f, 0x62, 0x21, 0x4e, 0x9f, 0xf0, 0xe6, 0x48, 0x62, + 0x9c, 0x44, 0xb9, 0x60, 0x7a, 0x18, 0xa2, 0x2e, 0xf9, 0x6a, 0x57, 0x2a, 0xee, 0x2d, 0xaa, 0x3d, + 0x95, 0xec, 0x5e, 0x52, 0x5b, 0x2a, 0xf9, 0x89, 0x56, 0x98, 0xe4, 0x5c, 0xd8, 0xf1, 0x3c, 0xe1, + 0xaa, 0x97, 0xed, 0x8c, 0xb8, 0xda, 0x68, 0x20, 0xc5, 0x85, 0xd6, 0x8b, 0xab, 0x6b, 0x9b, 0x77, + 0x14, 0x66, 0x1c, 0x61, 0xe0, 0x8a, 0xca, 0x26, 0x23, 0xb7, 0xbd, 0xc8, 0x6d, 0x2c, 0xda, 0xc0, + 0x92, 0x59, 0x70, 0xd2, 0x8d, 0x5b, 0x0f, 0x65, 0x46, 0x7f, 0x95, 0xa7, 0x65, 0x50, 0x77, 0x89, + 0x69, 0x52, 0x5c, 0xc8, 0x3c, 0x2e, 0x94, 0x1e, 0x16, 0x86, 0xd8, 0x32, 0xb5, 0xfb, 0x84, 0xcd, + 0x5d, 0xc2, 0xe6, 0x1e, 0xe1, 0x89, 0x0d, 0x27, 0x6b, 0x9b, 0x50, 0xa5, 0xa4, 0xe4, 0x1e, 0x6d, + 0xaf, 0xf9, 0x97, 0xd3, 0xec, 0xf3, 0x0e, 0xe2, 0xbc, 0xb6, 0xf1, 0xd0, 0x29, 0xcf, 0x6d, 0x43, + 0xda, 0x72, 0xa6, 0xfc, 0xa9, 0xc8, 0x6d, 0x4b, 0x73, 0x6e, 0x9b, 0xdd, 0x09, 0x5b, 0x16, 0x3d, + 0xaa, 0xcc, 0x09, 0xc4, 0xcc, 0x7d, 0x78, 0xa2, 0x3c, 0x79, 0x44, 0x79, 0x90, 0xef, 0x96, 0x26, + 0x68, 0x32, 0x03, 0x51, 0xb4, 0x50, 0x45, 0x0c, 0x59, 0x6c, 0xd0, 0x15, 0x0d, 0xdc, 0x18, 0x49, + 0x29, 0x73, 0x13, 0xa5, 0xe1, 0x7d, 0x32, 0xde, 0x45, 0x09, 0x1d, 0x04, 0xd3, 0x00, 0x71, 0xc6, + 0xa1, 0xce, 0x38, 0xe4, 0x99, 0x85, 0x3e, 0x1e, 0x08, 0x64, 0x82, 0x42, 0x76, 0x48, 0x1c, 0xb3, + 0xbb, 0xe6, 0xff, 0xed, 0x04, 0xa1, 0xe5, 0x78, 0xa1, 0xf0, 0xbf, 0xdb, 0xae, 0xc9, 0x6e, 0x4a, + 0xd3, 0x37, 0x46, 0x91, 0xc7, 0xb4, 0x81, 0x69, 0x02, 0xa0, 0x6a, 0x1a, 0x5c, 0x13, 0x03, 0xd9, + 0xc4, 0xc0, 0x36, 0x19, 0xd0, 0xe5, 0x05, 0x5f, 0x66, 0x10, 0x8e, 0xa6, 0x2c, 0x99, 0x22, 0x8f, + 0x07, 0x05, 0x83, 0x55, 0x1e, 0x8f, 0x51, 0xe5, 0x51, 0xfd, 0xc5, 0x50, 0xe5, 0x91, 0xff, 0xbe, + 0xa8, 0xf2, 0xb8, 0xb6, 0x5b, 0xa9, 0x58, 0x38, 0x2d, 0x9e, 0x1e, 0x1d, 0x17, 0x4e, 0x51, 0xec, + 0x31, 0x73, 0x77, 0x41, 0xd3, 0x9a, 0xa5, 0xa6, 0x55, 0xf8, 0xcd, 0x17, 0xc1, 0xb7, 0x96, 0xdb, + 0x34, 0x6e, 0x5b, 0x8d, 0xef, 0x0c, 0xe3, 0x0a, 0xc6, 0x15, 0x8c, 0x2b, 0x18, 0x57, 0x30, 0xae, + 0x26, 0x24, 0xae, 0x2d, 0xfc, 0x86, 0xf0, 0x42, 0xfb, 0x59, 0xa0, 0x8c, 0x3e, 0x0c, 0x2c, 0x18, + 0x58, 0x30, 0xb0, 0xd6, 0x7c, 0x2b, 0xe5, 0xf7, 0xf7, 0x61, 0x59, 0xc1, 0xb2, 0xca, 0xbe, 0x65, + 0x25, 0x3c, 0xfb, 0xd1, 0x15, 0x06, 0x0d, 0xaa, 0xd1, 0x0d, 0x99, 0x39, 0x10, 0x73, 0xc1, 0x15, + 0xd8, 0x6d, 0xb0, 0xdb, 0x60, 0xb7, 0xc1, 0x6e, 0xcb, 0xb8, 0xdd, 0xc6, 0x57, 0x2a, 0x66, 0x19, + 0x40, 0x12, 0x97, 0x8e, 0x59, 0x0f, 0x25, 0xfc, 0x62, 0xbf, 0x5a, 0x8f, 0x7f, 0x99, 0xd3, 0xc1, + 0xc3, 0xfb, 0x41, 0x25, 0x42, 0x25, 0x42, 0x25, 0x42, 0x25, 0x42, 0x25, 0x2e, 0x3a, 0x99, 0x65, + 0xfd, 0xf9, 0xd8, 0x0e, 0x0c, 0x6a, 0xc6, 0x13, 0x03, 0xb7, 0xfa, 0xe2, 0x0d, 0x7c, 0x07, 0xb9, + 0x7f, 0x19, 0x7a, 0x37, 0xf8, 0x4f, 0xb3, 0xa7, 0x51, 0xe7, 0x6e, 0x0b, 0xff, 0x29, 0xef, 0x56, + 0xda, 0x44, 0xff, 0xe9, 0x49, 0xb1, 0x78, 0x74, 0x5c, 0x2c, 0xee, 0x1f, 0x1f, 0x1c, 0xef, 0x9f, + 0x1e, 0x1e, 0xe6, 0x8f, 0xf2, 0x48, 0x55, 0xc9, 0xdc, 0x5d, 0xe0, 0x50, 0x5d, 0x60, 0xcb, 0x39, + 0x9e, 0x59, 0x5b, 0x6e, 0x70, 0x3f, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x83, 0x2d, + 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x5b, + 0x7f, 0x5b, 0x2e, 0x53, 0x87, 0xd0, 0x99, 0x1b, 0xb8, 0x47, 0xf7, 0x31, 0x56, 0x33, 0x75, 0x58, + 0x3a, 0x74, 0xf8, 0xf7, 0x5e, 0xc4, 0xb8, 0xf6, 0xa6, 0x6b, 0x10, 0x0d, 0xdb, 0x9e, 0xf2, 0x50, + 0x64, 0xfa, 0x2d, 0xc0, 0xb0, 0xfc, 0xb9, 0xd6, 0x77, 0xe1, 0x3f, 0xb9, 0xad, 0xbf, 0xf8, 0x6b, + 0xa7, 0x44, 0x77, 0x42, 0xf5, 0x94, 0xa4, 0x8c, 0x7f, 0x54, 0x4f, 0xc9, 0xa0, 0x71, 0x8f, 0xea, + 0x29, 0xcb, 0xa7, 0x86, 0xbd, 0x7a, 0x0a, 0x73, 0x61, 0xa9, 0x39, 0xc1, 0x64, 0x2d, 0x30, 0x65, + 0x08, 0x2a, 0x8d, 0x41, 0xa6, 0x49, 0xe8, 0x4c, 0x00, 0x42, 0x4d, 0x43, 0x69, 0x62, 0x90, 0x9a, + 0x18, 0xb4, 0x26, 0x03, 0xb1, 0x66, 0xac, 0x27, 0x6e, 0xbf, 0x29, 0x37, 0xf4, 0x46, 0x37, 0x32, + 0x75, 0x16, 0x60, 0x4e, 0xc2, 0xcd, 0x9c, 0x09, 0x18, 0x4f, 0xa8, 0xd9, 0xb3, 0x01, 0x09, 0xf9, + 0x69, 0x8c, 0x29, 0x85, 0x24, 0x94, 0x43, 0x82, 0x4a, 0x22, 0x29, 0x65, 0x91, 0xb8, 0xd2, 0x48, + 0x5c, 0x79, 0x24, 0xab, 0x44, 0xcc, 0x28, 0x13, 0x43, 0x4a, 0x25, 0x9a, 0x4a, 0x63, 0x41, 0xb9, + 0x39, 0x89, 0x35, 0x77, 0xf6, 0x60, 0x8e, 0x8d, 0xe7, 0xd7, 0xc4, 0x67, 0x6b, 0x60, 0x93, 0x44, + 0xce, 0x24, 0x83, 0xc5, 0x57, 0x96, 0x3a, 0xb4, 0x8c, 0x95, 0x61, 0x81, 0xca, 0x86, 0xca, 0x86, + 0xca, 0x86, 0xca, 0x86, 0xca, 0xde, 0x4e, 0xac, 0xcc, 0xcb, 0x2c, 0x06, 0x1b, 0x8c, 0x29, 0x1b, + 0x4e, 0x75, 0x19, 0xfd, 0x31, 0x0b, 0x4a, 0xdb, 0x49, 0xa5, 0xbe, 0x24, 0xa4, 0x5c, 0xe7, 0x6e, + 0x9f, 0x50, 0x2a, 0x4c, 0x74, 0xff, 0x04, 0x93, 0x16, 0x0c, 0x43, 0xd6, 0xf4, 0x96, 0x4b, 0x20, + 0x45, 0x26, 0x6d, 0x5b, 0xce, 0x78, 0xf9, 0x98, 0x54, 0x6d, 0xba, 0xad, 0xf5, 0xbc, 0x5b, 0x0d, + 0x56, 0x65, 0xec, 0x6d, 0x18, 0xfa, 0xce, 0xf3, 0xb3, 0xf0, 0x2d, 0xf1, 0x5d, 0x78, 0xa1, 0xd5, + 0x68, 0x75, 0xfa, 0xcc, 0xd0, 0xb0, 0x59, 0xb9, 0xe8, 0x21, 0x60, 0x57, 0xc2, 0xae, 0x84, 0x5d, + 0x09, 0xbb, 0x12, 0x76, 0xa5, 0x41, 0x89, 0xed, 0x38, 0x5e, 0x98, 0x3f, 0x4a, 0xc0, 0xa6, 0x3c, + 0x82, 0x4d, 0x09, 0x9b, 0x12, 0x36, 0x25, 0x6c, 0xca, 0x35, 0xd8, 0x72, 0x47, 0x87, 0x87, 0x07, + 0x87, 0xb0, 0x2a, 0x61, 0x55, 0xa6, 0xd4, 0xaa, 0xcc, 0x74, 0x0e, 0x96, 0xa1, 0x73, 0x1b, 0xd1, + 0xfd, 0x52, 0x77, 0x7e, 0x63, 0x14, 0x82, 0x65, 0x3d, 0xc8, 0xc1, 0xbf, 0x57, 0x38, 0x2b, 0x3f, + 0x04, 0xa1, 0x1d, 0x0a, 0x73, 0x09, 0xcc, 0x83, 0xdb, 0xad, 0x59, 0xfe, 0x72, 0x01, 0xf9, 0xcb, + 0x19, 0xf2, 0x43, 0x20, 0x7f, 0x19, 0xf9, 0xcb, 0xab, 0xa7, 0x0c, 0xf9, 0xcb, 0xd4, 0x13, 0x8a, + 0xfc, 0xe5, 0xac, 0x2b, 0x87, 0x04, 0x95, 0x44, 0x52, 0xca, 0x22, 0x71, 0xa5, 0x91, 0xb8, 0xf2, + 0x48, 0x56, 0x89, 0x98, 0x35, 0x5d, 0x91, 0xbf, 0xcc, 0xc8, 0xc6, 0x91, 0xbf, 0x1c, 0x7f, 0xce, + 0x90, 0xbf, 0x0c, 0x95, 0x0d, 0x95, 0x0d, 0x95, 0x0d, 0x95, 0x0d, 0x95, 0x8d, 0xfc, 0x65, 0xd6, + 0x3f, 0x88, 0x35, 0x1b, 0xbd, 0x3d, 0x62, 0xcd, 0x88, 0x35, 0x27, 0xb4, 0xe5, 0x90, 0xbf, 0xbc, + 0x86, 0x77, 0x43, 0xfe, 0x72, 0xfc, 0x6d, 0x88, 0xfc, 0x65, 0xd8, 0x95, 0xb0, 0x2b, 0x61, 0x57, + 0xc2, 0xae, 0x84, 0x5d, 0x89, 0xfc, 0x65, 0xd8, 0x94, 0xb0, 0x29, 0x61, 0x53, 0xc2, 0xa6, 0xd4, + 0xda, 0x72, 0xc8, 0x5f, 0x86, 0x55, 0x99, 0x66, 0xab, 0x12, 0xf9, 0xcb, 0x12, 0xf7, 0x4b, 0x6f, + 0xfe, 0xf2, 0x20, 0x6d, 0x16, 0xcd, 0x0e, 0xf8, 0x37, 0xdf, 0xe6, 0x36, 0x3b, 0x60, 0x2e, 0xc0, + 0x3f, 0x78, 0xe9, 0xd0, 0xef, 0x34, 0x42, 0x6f, 0x68, 0x81, 0x5c, 0x0d, 0xde, 0xa2, 0x32, 0x7c, + 0x89, 0xfa, 0x65, 0xdb, 0x0d, 0xea, 0xd5, 0xa0, 0x1d, 0xd4, 0xcf, 0xc7, 0x2f, 0x71, 0x63, 0x87, + 0xdf, 0xea, 0xf7, 0xfd, 0x67, 0xaf, 0x7f, 0x1a, 0x3d, 0x6c, 0xbd, 0xd4, 0x09, 0x5b, 0xe3, 0xdf, + 0xae, 0x47, 0x8f, 0xbe, 0xc1, 0x9d, 0x1a, 0x78, 0x13, 0xf9, 0x8d, 0x24, 0xf0, 0x1b, 0xeb, 0xd1, + 0x50, 0x40, 0x8f, 0x86, 0x14, 0x39, 0xd8, 0xd0, 0xa3, 0x61, 0x93, 0xf5, 0x2d, 0x7b, 0x8f, 0x06, + 0xbb, 0xf9, 0x7f, 0x3b, 0x41, 0x68, 0x39, 0x5e, 0x28, 0xfc, 0xef, 0xb6, 0x6b, 0xee, 0xac, 0xd3, + 0xec, 0x8d, 0xd1, 0xed, 0x36, 0x6d, 0x60, 0x9a, 0x00, 0xa8, 0x9a, 0x06, 0xd7, 0xc4, 0x40, 0x36, + 0x31, 0xb0, 0x4d, 0x06, 0x74, 0xd7, 0xc3, 0xe2, 0x36, 0xdf, 0xed, 0xb6, 0xe3, 0x78, 0xe1, 0x41, + 0xc1, 0x60, 0x97, 0xdb, 0x63, 0x34, 0x9d, 0x55, 0x7f, 0x31, 0x34, 0x9d, 0xe5, 0xbf, 0x2f, 0x9a, + 0xce, 0xae, 0xed, 0x56, 0x2a, 0x16, 0x4e, 0x8b, 0xa7, 0x47, 0xc7, 0x85, 0x53, 0xb4, 0x9a, 0xcd, + 0xdc, 0x5d, 0x6a, 0x28, 0x1e, 0xb1, 0xcc, 0xb4, 0x32, 0x77, 0x48, 0x69, 0xd6, 0xb6, 0x32, 0x75, + 0x34, 0x09, 0xc6, 0x15, 0x8c, 0x2b, 0x18, 0x57, 0x30, 0xae, 0x32, 0x66, 0x5c, 0x19, 0x3d, 0x3a, + 0x64, 0xf0, 0xc8, 0x10, 0x0c, 0x2c, 0x18, 0x58, 0x30, 0xb0, 0x60, 0x60, 0xcd, 0x6d, 0x25, 0xe3, + 0x47, 0x7c, 0x60, 0x59, 0xc1, 0xb2, 0xe2, 0xd8, 0x56, 0xa6, 0xaa, 0x42, 0x19, 0xae, 0x06, 0x65, + 0xba, 0x0a, 0x14, 0xec, 0x36, 0xd8, 0x6d, 0xb0, 0xdb, 0x60, 0xb7, 0x65, 0xcc, 0x6e, 0x33, 0x57, + 0xa5, 0xc9, 0x50, 0x75, 0xa6, 0x6c, 0x2a, 0xe1, 0x51, 0xe6, 0x86, 0xf5, 0xcd, 0x79, 0xfe, 0x66, + 0x3d, 0xfe, 0x65, 0x4e, 0x1b, 0xcf, 0xdd, 0x19, 0x6a, 0x12, 0x6a, 0x12, 0x6a, 0x12, 0x6a, 0x12, + 0x6a, 0x72, 0x52, 0x4d, 0x8e, 0x12, 0xc0, 0xad, 0x3f, 0x1f, 0xdb, 0x81, 0x41, 0x6d, 0x79, 0x62, + 0xe0, 0x56, 0x5f, 0xbc, 0x81, 0x3f, 0x21, 0xf7, 0x2f, 0x43, 0xef, 0x06, 0x9f, 0x6a, 0xf6, 0x34, + 0xea, 0xdc, 0x6d, 0xe1, 0x53, 0xe5, 0xdd, 0x4a, 0x9b, 0xe8, 0x53, 0x3d, 0x29, 0x16, 0x8f, 0x8e, + 0x8b, 0xc5, 0xfd, 0xe3, 0x83, 0xe3, 0xfd, 0xd3, 0xc3, 0xc3, 0xfc, 0x51, 0x1e, 0xe9, 0x2b, 0x99, + 0xbb, 0x0b, 0x9c, 0xac, 0xf3, 0xdb, 0xea, 0xc5, 0x7e, 0x35, 0x6a, 0xd5, 0x0d, 0xef, 0x07, 0x5b, + 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, 0xc1, 0x96, 0x83, 0x2d, 0x07, + 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x74, 0x6c, 0x39, 0xc7, 0x33, 0x6b, + 0xcb, 0x0d, 0xee, 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xb0, 0xe5, 0x60, 0xcb, + 0xc1, 0x96, 0x83, 0x2d, 0x07, 0x5b, 0x0e, 0xb6, 0x1c, 0x6c, 0x39, 0xd8, 0x72, 0xeb, 0x6f, 0xcb, + 0xa1, 0xa8, 0xe7, 0x82, 0xfb, 0xa4, 0xae, 0xa8, 0x27, 0x63, 0xe1, 0xd8, 0x6c, 0x94, 0xc5, 0xec, + 0x78, 0xcd, 0x61, 0x6d, 0x50, 0xf6, 0xd2, 0x98, 0xe3, 0x5b, 0x65, 0xbc, 0x3c, 0xe6, 0x3e, 0xca, + 0x63, 0xa6, 0xc8, 0xda, 0x47, 0x79, 0xcc, 0x4d, 0xd6, 0x5c, 0xec, 0xe5, 0x31, 0x1b, 0x23, 0xa9, + 0x37, 0xe4, 0x38, 0x1d, 0xde, 0xcf, 0x8c, 0xe3, 0x34, 0x0f, 0xc7, 0x69, 0x9a, 0x21, 0xd4, 0x34, + 0x94, 0x26, 0x06, 0xa9, 0x89, 0x41, 0x6b, 0x32, 0x10, 0x6b, 0xc6, 0x7c, 0xe2, 0x76, 0x9c, 0x72, + 0x43, 0x6f, 0x74, 0x23, 0x53, 0x87, 0xbd, 0xe7, 0x24, 0xdc, 0xcc, 0xa1, 0xef, 0xf1, 0x84, 0x9a, + 0x3d, 0xfc, 0x9d, 0x90, 0xa3, 0x06, 0x7d, 0x1f, 0xd7, 0x4b, 0x59, 0x24, 0xae, 0x34, 0x12, 0x57, + 0x1e, 0xc9, 0x2a, 0x11, 0x33, 0xca, 0xc4, 0x90, 0x52, 0x89, 0xa6, 0x32, 0xb9, 0xbe, 0x8f, 0xe6, + 0x0e, 0x97, 0xcf, 0xb1, 0xf1, 0x3c, 0x9a, 0x35, 0xc7, 0x9e, 0x33, 0x34, 0x6b, 0x86, 0xd2, 0x86, + 0xd2, 0x86, 0xd2, 0x86, 0xd2, 0x86, 0xd2, 0x46, 0xb3, 0x66, 0xc6, 0x3f, 0x68, 0xd6, 0x6c, 0xf4, + 0xf6, 0x68, 0xd6, 0x8c, 0x66, 0xcd, 0x09, 0x6d, 0x39, 0x34, 0x6b, 0x5e, 0xcb, 0xbb, 0xd5, 0x60, + 0x55, 0xc6, 0xde, 0x86, 0x51, 0x8e, 0x82, 0xc1, 0xa6, 0x0d, 0xf3, 0x64, 0x66, 0xc1, 0x43, 0xc0, + 0xaa, 0x84, 0x55, 0x09, 0xab, 0x12, 0x56, 0x25, 0xac, 0x4a, 0x83, 0x12, 0x6b, 0xb4, 0x3f, 0xc4, + 0x2c, 0x06, 0x1f, 0xc2, 0xb2, 0x84, 0x65, 0x09, 0xcb, 0x12, 0x96, 0xe5, 0x1a, 0x6c, 0x39, 0xe3, + 0x7d, 0x27, 0x60, 0x57, 0xc2, 0xae, 0x4c, 0xc7, 0x1d, 0xb8, 0xb3, 0xb0, 0x0c, 0x1d, 0xdd, 0x88, + 0xee, 0x97, 0xba, 0x23, 0x1c, 0x91, 0xb5, 0xbc, 0x37, 0x4c, 0x9d, 0x45, 0xf5, 0x87, 0xf9, 0x45, + 0xeb, 0x1f, 0x73, 0x31, 0x96, 0xc3, 0x3c, 0xb8, 0xdd, 0x9a, 0xa5, 0x30, 0x17, 0x90, 0xc2, 0x9c, + 0x21, 0x57, 0x04, 0x52, 0x98, 0x91, 0xc2, 0xbc, 0x7a, 0xca, 0x90, 0xc2, 0x4c, 0x3d, 0xa1, 0x48, + 0x61, 0xce, 0xba, 0x72, 0x48, 0x50, 0x49, 0x24, 0xa5, 0x2c, 0x12, 0x57, 0x1a, 0x89, 0x2b, 0x8f, + 0x64, 0x95, 0x88, 0x59, 0xdb, 0x15, 0x29, 0xcc, 0x8c, 0x6c, 0x1c, 0x29, 0xcc, 0xf1, 0xe7, 0x0c, + 0x29, 0xcc, 0x50, 0xda, 0x50, 0xda, 0x50, 0xda, 0x50, 0xda, 0x50, 0xda, 0x48, 0x61, 0x66, 0xfc, + 0x83, 0x40, 0xb3, 0xd1, 0xdb, 0x23, 0xd0, 0x8c, 0x40, 0x73, 0x42, 0x5b, 0x0e, 0x29, 0xcc, 0x6b, + 0x79, 0x37, 0xa4, 0x30, 0xc7, 0xdf, 0x86, 0x48, 0x61, 0x86, 0x55, 0x09, 0xab, 0x12, 0x56, 0x25, + 0xac, 0x4a, 0x58, 0x95, 0x48, 0x61, 0x86, 0x65, 0x09, 0xcb, 0x12, 0x96, 0x25, 0x2c, 0x4b, 0xed, + 0x2d, 0x87, 0x14, 0x66, 0xd8, 0x95, 0xe9, 0xb5, 0x2b, 0x91, 0xc2, 0x2c, 0x71, 0xbf, 0x14, 0xa7, + 0x30, 0x33, 0xd6, 0xa3, 0xe7, 0xdf, 0x2b, 0xe8, 0x79, 0x90, 0xad, 0xdd, 0x96, 0x63, 0xcd, 0x38, + 0xf7, 0x3b, 0x8d, 0xd0, 0x1b, 0x5a, 0x21, 0x57, 0x83, 0xd7, 0xa8, 0x0c, 0xdf, 0xa2, 0x7e, 0xd9, + 0x76, 0x83, 0x7a, 0x35, 0x68, 0x07, 0xf5, 0xf3, 0xf1, 0x5b, 0xdc, 0xd8, 0xe1, 0xb7, 0xfa, 0x7d, + 0xff, 0xe1, 0xeb, 0x9f, 0x46, 0x4f, 0x5b, 0x2f, 0x75, 0xc2, 0xd6, 0xf8, 0xb7, 0x2f, 0xd1, 0xb3, + 0x67, 0xa5, 0x67, 0xc3, 0x56, 0x8a, 0x65, 0x81, 0x5b, 0x06, 0x52, 0xb7, 0xf7, 0x19, 0x76, 0x3c, + 0xd3, 0x4e, 0xa7, 0xdd, 0xdf, 0x74, 0xbb, 0x90, 0x70, 0x07, 0x72, 0x95, 0xd6, 0xe7, 0x2d, 0xa5, + 0xcf, 0x74, 0xee, 0x84, 0xcd, 0x8f, 0xcc, 0xe9, 0x2f, 0x36, 0xe0, 0x17, 0xe6, 0xf6, 0xff, 0x1a, + 0xf3, 0xf3, 0x1a, 0xf3, 0xe7, 0x9a, 0xf1, 0xdb, 0xa6, 0x5b, 0xaf, 0x71, 0x9d, 0xeb, 0xc8, 0x05, + 0x22, 0x9c, 0xd0, 0x26, 0xec, 0x2d, 0x93, 0xa6, 0x6f, 0xc7, 0xdb, 0x36, 0x69, 0x1f, 0x6d, 0x93, + 0x92, 0x04, 0x3a, 0x53, 0x80, 0x67, 0x1c, 0xf8, 0x8c, 0x03, 0xa0, 0x59, 0x20, 0xcc, 0xa6, 0xf1, + 0xcb, 0x1e, 0x90, 0x32, 0xdf, 0xec, 0xd8, 0x40, 0x93, 0x63, 0x63, 0xcd, 0x8d, 0x0d, 0x45, 0xb3, + 0x0c, 0xf8, 0xda, 0x4c, 0x46, 0xab, 0x4c, 0xa7, 0x7e, 0x18, 0x8e, 0x46, 0x25, 0x11, 0x08, 0x30, + 0x91, 0xb0, 0x64, 0x32, 0xba, 0x94, 0xd4, 0x16, 0x49, 0xae, 0x19, 0x71, 0x22, 0xbb, 0x26, 0xa3, + 0x0e, 0xec, 0xda, 0x06, 0x37, 0x82, 0x0d, 0xda, 0xa2, 0xe1, 0x3c, 0x39, 0x8d, 0xbe, 0x37, 0xd0, + 0x0a, 0x39, 0xf9, 0xc1, 0xd8, 0xbc, 0x99, 0xbf, 0x27, 0x57, 0x9b, 0xc8, 0xf1, 0xb9, 0xf4, 0xbb, + 0x9b, 0xf2, 0x79, 0xe5, 0x97, 0x4a, 0xf9, 0x02, 0xf6, 0x14, 0xec, 0x29, 0xd8, 0x53, 0xb0, 0xa7, + 0xb2, 0x65, 0x4f, 0x85, 0x62, 0xec, 0x11, 0xe2, 0x84, 0xcc, 0x49, 0x28, 0xcb, 0x17, 0x19, 0xef, + 0x51, 0xf6, 0x3a, 0x2f, 0xbd, 0xa9, 0xeb, 0x22, 0xa2, 0x47, 0x21, 0xa3, 0x6b, 0x1f, 0xd1, 0xe3, + 0xa8, 0xf2, 0x96, 0xce, 0xf8, 0x18, 0x4f, 0xd5, 0x36, 0xd6, 0x2a, 0x6d, 0xec, 0xd1, 0xb1, 0x02, + 0xa2, 0x63, 0x06, 0xc9, 0x0d, 0xa2, 0x63, 0xeb, 0xa8, 0x23, 0x10, 0x1d, 0x83, 0x35, 0x07, 0x6b, + 0x0e, 0xd6, 0x1c, 0xac, 0xb9, 0xc4, 0xad, 0x39, 0x44, 0xc7, 0x54, 0x6e, 0x84, 0xe8, 0x58, 0xfa, + 0x34, 0xd9, 0xdc, 0xed, 0x10, 0x1d, 0xa3, 0xd9, 0x22, 0x88, 0x8e, 0xad, 0xdb, 0xae, 0x41, 0x74, + 0x8c, 0xf5, 0x79, 0x59, 0xa2, 0x63, 0xce, 0xb3, 0x67, 0xbb, 0xa2, 0x69, 0xd4, 0xbc, 0x99, 0xbf, + 0x27, 0x6c, 0x1c, 0xd8, 0x38, 0xb0, 0x71, 0x60, 0xe3, 0xc0, 0xc6, 0x81, 0x8d, 0x03, 0x1b, 0x07, + 0x36, 0x0e, 0x6c, 0x1c, 0xd8, 0x38, 0xb0, 0x71, 0x60, 0xe3, 0xd0, 0xd8, 0x38, 0xc8, 0x00, 0x84, + 0x3d, 0x05, 0x7b, 0x0a, 0xf6, 0x14, 0xec, 0xa9, 0x54, 0xdb, 0x53, 0xc8, 0x00, 0x4c, 0x5a, 0xf9, + 0x22, 0x03, 0x30, 0xd1, 0x0c, 0x40, 0x86, 0x22, 0x49, 0x84, 0x09, 0x80, 0x5b, 0x29, 0xda, 0x14, + 0x5c, 0x9b, 0x21, 0xf9, 0x4d, 0x90, 0x23, 0xcd, 0xb3, 0xa4, 0xa9, 0xe0, 0x42, 0xb3, 0x25, 0xf5, + 0x37, 0x10, 0xc1, 0xe6, 0xa1, 0xae, 0xcd, 0xc2, 0x53, 0x93, 0x85, 0x38, 0xdb, 0x94, 0x9c, 0x58, + 0x73, 0x10, 0x69, 0x46, 0xe2, 0xcc, 0x45, 0x94, 0xd9, 0x89, 0x31, 0x3b, 0x11, 0xe6, 0x25, 0xbe, + 0xe9, 0x52, 0x19, 0xd4, 0xd9, 0xa1, 0x39, 0xbb, 0xf9, 0xe2, 0x78, 0x56, 0x4f, 0x69, 0x77, 0x02, + 0xbe, 0x6c, 0xf6, 0xa9, 0xbb, 0x50, 0x27, 0xcc, 0x8e, 0x7d, 0x07, 0xc3, 0xc5, 0x0f, 0xcf, 0x4a, + 0x17, 0x97, 0x95, 0xab, 0xfa, 0x97, 0x1b, 0xa6, 0x04, 0xfa, 0x7d, 0x94, 0x97, 0x42, 0x02, 0x7d, + 0x1a, 0x7d, 0x01, 0x48, 0xa0, 0x67, 0xb4, 0xf5, 0xa3, 0x1d, 0xef, 0x34, 0x85, 0x17, 0x3a, 0xe1, + 0x9b, 0x2f, 0x9e, 0x38, 0x76, 0xfd, 0x88, 0x37, 0x31, 0x44, 0x20, 0x72, 0x95, 0xe1, 0xa3, 0x7f, + 0xb2, 0x03, 0x03, 0x0e, 0xe4, 0xfb, 0x2f, 0x57, 0x57, 0xe5, 0x6a, 0x7d, 0x80, 0xc6, 0x77, 0xf7, + 0xa5, 0xfb, 0x2f, 0x77, 0x5c, 0x12, 0xd6, 0x8f, 0xe4, 0x04, 0xac, 0x21, 0x59, 0x66, 0x07, 0xe5, + 0x68, 0xd2, 0x06, 0xb3, 0x75, 0x71, 0xfd, 0xfb, 0x15, 0xa3, 0xf7, 0xee, 0xc3, 0x7a, 0xcc, 0xd2, + 0x97, 0x9b, 0xac, 0x79, 0x38, 0x6b, 0x69, 0x47, 0xe3, 0x54, 0x1e, 0xb6, 0x6c, 0x8a, 0xa0, 0xe1, + 0x3b, 0x6d, 0x16, 0xbf, 0x59, 0xb4, 0xa5, 0x26, 0x6f, 0x02, 0xde, 0x08, 0xde, 0x08, 0xde, 0x08, + 0xde, 0x48, 0xba, 0xe3, 0x83, 0xd0, 0x77, 0xbc, 0x67, 0x4e, 0xca, 0x78, 0xb2, 0x01, 0xba, 0xe0, + 0x5b, 0xcb, 0x6d, 0x5a, 0x6d, 0xdf, 0x69, 0xf9, 0x4e, 0xf8, 0xc6, 0xa7, 0x0d, 0xa6, 0x6f, 0xc3, + 0xe7, 0xb3, 0xd8, 0x87, 0xae, 0x31, 0xa2, 0x6b, 0xfc, 0xe0, 0x7b, 0x1b, 0xba, 0x26, 0x85, 0xba, + 0xa6, 0xbf, 0x30, 0xd0, 0x35, 0xc4, 0x3b, 0xbe, 0xe3, 0x78, 0xe1, 0x09, 0xa3, 0xaa, 0xe1, 0x70, + 0x4e, 0xf0, 0x66, 0x55, 0x33, 0x26, 0x7f, 0x98, 0xc8, 0xa2, 0x36, 0x94, 0x1a, 0x6b, 0x2a, 0x6b, + 0xda, 0x64, 0xde, 0x2b, 0xa3, 0xb7, 0xc3, 0x48, 0x76, 0xb4, 0xe9, 0xa5, 0x3f, 0x5e, 0xa3, 0xa5, + 0xcf, 0x48, 0xd6, 0x52, 0x6d, 0x03, 0x88, 0xfb, 0x8b, 0x08, 0x7d, 0xa7, 0xc1, 0xc7, 0xd8, 0x87, + 0xe3, 0x83, 0x4e, 0xc3, 0x75, 0x03, 0xd7, 0x0d, 0xe8, 0x34, 0xe9, 0x8e, 0x77, 0xbc, 0xf0, 0xa0, + 0xc0, 0x48, 0xa7, 0x0f, 0x40, 0xa7, 0x93, 0xa1, 0xd3, 0x79, 0x43, 0x9c, 0xaa, 0x90, 0x2f, 0x1e, + 0x17, 0x4f, 0x0e, 0x8e, 0x8a, 0x27, 0xe0, 0xd5, 0x9b, 0xca, 0xab, 0xa3, 0x3d, 0x00, 0x82, 0x0d, + 0x82, 0xcd, 0x46, 0xb0, 0x79, 0x0e, 0x07, 0xce, 0xb0, 0x6c, 0x8e, 0xa3, 0x2d, 0x0b, 0x33, 0xf9, + 0xaa, 0x77, 0x37, 0xf5, 0xcb, 0xf2, 0xfd, 0x6d, 0xe5, 0xbc, 0x5e, 0xb9, 0xfa, 0xb5, 0x7c, 0x5b, + 0xb9, 0x27, 0x3f, 0x19, 0x08, 0x8a, 0x0f, 0x8a, 0x0f, 0x8a, 0x0f, 0x8a, 0x8f, 0xac, 0xbe, 0x78, + 0x13, 0x35, 0x01, 0xc9, 0xf7, 0x7f, 0xdc, 0x94, 0x91, 0xd1, 0x27, 0x31, 0x61, 0xb7, 0xe5, 0x6a, + 0xe9, 0xbe, 0xf2, 0x5b, 0x19, 0xa9, 0x7d, 0xb1, 0xa6, 0x6b, 0xac, 0xf2, 0x31, 0x5f, 0x71, 0xe6, + 0xab, 0xf4, 0xe9, 0xee, 0xba, 0xfa, 0xe5, 0xbe, 0x8c, 0xac, 0xc8, 0x4d, 0xc8, 0x8a, 0x1c, 0x1e, + 0x8a, 0x64, 0x22, 0xfa, 0xfd, 0xd1, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0xc1, 0xb4, 0x49, 0x77, + 0x3c, 0xf2, 0x20, 0x29, 0xde, 0xb5, 0x27, 0x71, 0xc2, 0x17, 0x5e, 0x83, 0x51, 0x07, 0x4c, 0xdc, + 0x03, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x80, 0x74, 0xc7, 0x23, 0x4b, 0xd1, 0x9c, 0xcd, + 0xb8, 0x96, 0x59, 0x8a, 0x79, 0x44, 0x53, 0x63, 0x2d, 0xfd, 0x3a, 0x46, 0x53, 0x0f, 0x0f, 0x11, + 0x46, 0x35, 0x3d, 0x6a, 0x6d, 0x23, 0x88, 0x75, 0x2b, 0x14, 0xfd, 0x85, 0xb7, 0x82, 0xf0, 0xcd, + 0x15, 0x96, 0x2f, 0xfe, 0xdb, 0x11, 0x41, 0x28, 0x9a, 0x9c, 0x44, 0x7b, 0xe9, 0x3d, 0x0d, 0x04, + 0x59, 0xbf, 0x5c, 0xdd, 0xdc, 0x5e, 0xdf, 0x97, 0xcf, 0x11, 0x5b, 0x05, 0xcf, 0x07, 0xcf, 0x07, + 0xcf, 0x27, 0xdf, 0xf1, 0x88, 0xad, 0xc6, 0x9c, 0xa8, 0x21, 0x0e, 0x57, 0xae, 0xaf, 0x10, 0x5b, + 0x8d, 0x35, 0x61, 0x93, 0xaa, 0x0b, 0x31, 0xc2, 0xa5, 0xd3, 0x54, 0xad, 0x5c, 0xfd, 0xab, 0x3e, + 0xb1, 0xb9, 0x6e, 0xcb, 0xff, 0xef, 0x97, 0xca, 0x2d, 0xe6, 0x6c, 0xe5, 0x9c, 0x5d, 0x5d, 0x5f, + 0x94, 0x67, 0x27, 0xae, 0x7c, 0xc7, 0xbb, 0xdb, 0x10, 0x62, 0x4d, 0x8d, 0x2d, 0xe0, 0x8b, 0x56, + 0x3b, 0x74, 0x5e, 0x9c, 0xff, 0x15, 0x56, 0xe8, 0xbc, 0x08, 0x9f, 0xcf, 0x02, 0x98, 0xbb, 0x13, + 0x88, 0x38, 0x88, 0x38, 0x88, 0x38, 0x88, 0x38, 0xe9, 0x8e, 0xef, 0x38, 0x5e, 0x98, 0x3f, 0x62, + 0xe4, 0xe0, 0x47, 0xf0, 0xb8, 0x8f, 0x1f, 0x1c, 0x75, 0x01, 0xe4, 0xef, 0x03, 0x8f, 0x7b, 0x6a, + 0x97, 0xfe, 0xe8, 0xf0, 0xf0, 0x00, 0x3e, 0x77, 0xe3, 0xa3, 0x6e, 0x82, 0xcf, 0x3d, 0x10, 0x61, + 0xa7, 0x6d, 0xa0, 0xaa, 0xd7, 0xcc, 0x7d, 0xf8, 0x7c, 0xeb, 0xc7, 0xe0, 0xef, 0x28, 0xeb, 0xb5, + 0xc9, 0xfc, 0x1d, 0x65, 0xbd, 0xb8, 0xf8, 0x3b, 0x12, 0x66, 0x40, 0xdf, 0x41, 0xdf, 0x41, 0xdf, + 0x65, 0x97, 0x1e, 0x55, 0x07, 0x40, 0xdd, 0x39, 0xa8, 0xfb, 0xb7, 0x96, 0x1f, 0x36, 0x3a, 0xa1, + 0x25, 0x5c, 0xe7, 0xd9, 0x79, 0x74, 0x19, 0xd3, 0xd1, 0xe7, 0x6f, 0xc5, 0x47, 0xe0, 0x7b, 0x4c, + 0x09, 0x1c, 0x1e, 0x3e, 0xf8, 0x4d, 0xe6, 0xf0, 0xf0, 0xc1, 0x73, 0xec, 0xf8, 0xc7, 0x56, 0xcb, + 0x15, 0xb6, 0xc7, 0x99, 0x08, 0x93, 0xdf, 0x04, 0xbd, 0xe3, 0x3c, 0x7b, 0xb6, 0xeb, 0x78, 0xcf, + 0x56, 0xdb, 0x6f, 0x85, 0xad, 0x46, 0xcb, 0x65, 0x54, 0x3c, 0xf3, 0xf7, 0x82, 0x6a, 0x80, 0x6a, + 0x80, 0x6a, 0x80, 0x6a, 0x20, 0xdd, 0xf1, 0xc8, 0x93, 0x8c, 0x39, 0x51, 0x37, 0xa5, 0xfb, 0x5f, + 0xeb, 0x77, 0xe5, 0xfb, 0x2f, 0x37, 0xfd, 0xe4, 0xac, 0xeb, 0xf3, 0xeb, 0x2a, 0x72, 0x25, 0x25, + 0x26, 0xad, 0x7a, 0x71, 0x83, 0xd4, 0xbf, 0x58, 0x33, 0x75, 0x77, 0x8b, 0x89, 0x8a, 0x35, 0x51, + 0xb7, 0x77, 0xbf, 0xa1, 0x1b, 0xdf, 0x46, 0x24, 0x45, 0x06, 0xad, 0xa7, 0xd0, 0x6a, 0xfb, 0x42, + 0xbc, 0x30, 0x77, 0xe4, 0x9b, 0xbd, 0x11, 0x9f, 0xb7, 0xe7, 0xc9, 0x76, 0x03, 0xb8, 0x7b, 0x10, + 0xb2, 0xdd, 0x68, 0x4e, 0x8f, 0x90, 0x2d, 0xdc, 0x3d, 0x29, 0x56, 0x3a, 0x2c, 0xd2, 0x3d, 0xa1, + 0x6b, 0xfa, 0xe3, 0x43, 0x05, 0x40, 0x05, 0x40, 0x05, 0x40, 0x05, 0xd0, 0xba, 0x75, 0xda, 0x96, + 0xdd, 0x6c, 0xfa, 0x22, 0x08, 0x38, 0xb5, 0xc0, 0x29, 0xc3, 0xd8, 0xc3, 0xb9, 0xc9, 0x5c, 0xea, + 0xce, 0x78, 0xe6, 0xbf, 0x17, 0x19, 0xe7, 0x7e, 0x6e, 0x0d, 0x18, 0xbb, 0x7b, 0xe4, 0x6e, 0xec, + 0x30, 0x14, 0xbe, 0xc7, 0xea, 0x89, 0xea, 0xdf, 0xe8, 0x3f, 0x3b, 0x3b, 0x0f, 0xfb, 0xd6, 0x69, + 0xed, 0xe7, 0x43, 0xde, 0x3a, 0xad, 0x0d, 0x7e, 0xcc, 0xf7, 0xff, 0x1a, 0xfc, 0x5c, 0x78, 0xd8, + 0xb7, 0x8a, 0xa3, 0x9f, 0x0f, 0x1f, 0xf6, 0xad, 0xc3, 0xda, 0xee, 0xd7, 0xaf, 0x1f, 0x77, 0x7f, + 0x1c, 0x74, 0xe5, 0x2f, 0xfc, 0x1b, 0x9f, 0xcf, 0xa0, 0xb6, 0x95, 0x21, 0xa7, 0x8d, 0x19, 0x61, + 0x38, 0x82, 0x30, 0xa8, 0x09, 0x83, 0x6d, 0x3d, 0x95, 0xac, 0x5f, 0x6a, 0x3f, 0xf2, 0x1f, 0x8a, + 0xdd, 0xb3, 0xdd, 0x1f, 0xc7, 0xdd, 0xd9, 0x0f, 0x7f, 0x2e, 0xfa, 0x5a, 0xfe, 0xc3, 0x71, 0xf7, + 0x6c, 0xc9, 0xbf, 0x1c, 0x75, 0xcf, 0x62, 0x8e, 0x71, 0xd8, 0xdd, 0x99, 0xfb, 0x6a, 0xef, 0xf3, + 0xc2, 0xb2, 0x0b, 0x8a, 0x4b, 0x2e, 0x38, 0x58, 0x76, 0xc1, 0xc1, 0x92, 0x0b, 0x96, 0x3e, 0x52, + 0x61, 0xc9, 0x05, 0x87, 0xdd, 0x9f, 0x73, 0xdf, 0xdf, 0x59, 0xfc, 0xd5, 0xa3, 0xee, 0xee, 0xcf, + 0x65, 0xff, 0x76, 0xdc, 0xfd, 0x79, 0xb6, 0x9b, 0x41, 0x68, 0x40, 0x02, 0x99, 0x82, 0x84, 0xf1, + 0xf6, 0xab, 0xe1, 0x68, 0x54, 0x03, 0xab, 0x6e, 0xa1, 0x55, 0x87, 0x60, 0x7d, 0x4a, 0xad, 0x3a, + 0x04, 0xeb, 0x59, 0xe8, 0x14, 0x82, 0xf5, 0xf1, 0x26, 0xea, 0xfe, 0xcb, 0xd5, 0x55, 0xb9, 0x8a, + 0x82, 0x46, 0xb1, 0x26, 0xeb, 0xa6, 0x80, 0xc8, 0xfc, 0xbb, 0xd3, 0x73, 0x89, 0x28, 0x73, 0x7a, + 0xa3, 0xcc, 0x5b, 0x29, 0xda, 0xa5, 0xb9, 0x92, 0xe7, 0xb5, 0x42, 0x9b, 0x3c, 0x44, 0x9d, 0x0b, + 0x1a, 0xdf, 0xc4, 0x8b, 0xdd, 0xb6, 0xc3, 0x6f, 0xbd, 0x1d, 0xb9, 0xd7, 0x6a, 0x0b, 0xaf, 0xd1, + 0xa7, 0x6e, 0x96, 0x27, 0xc2, 0xbf, 0x5a, 0xfe, 0x9f, 0x96, 0xe3, 0x05, 0xa1, 0xed, 0x35, 0xc4, + 0xde, 0xec, 0x07, 0xc1, 0xdc, 0x27, 0x7b, 0x3d, 0xe5, 0xbc, 0xe7, 0x06, 0xed, 0x60, 0xaf, 0xd1, + 0xf2, 0x82, 0xd0, 0xb7, 0x1d, 0x4f, 0x34, 0xad, 0xde, 0xe8, 0x7b, 0x61, 0xc7, 0xf3, 0x84, 0x1b, + 0x0c, 0xff, 0xde, 0x1b, 0xdc, 0x84, 0x66, 0xf7, 0xeb, 0xaf, 0x14, 0xc1, 0x2a, 0xd1, 0x76, 0xb0, + 0xe1, 0xe8, 0x5c, 0x43, 0x4c, 0xf5, 0xc9, 0x29, 0x3e, 0x07, 0xb5, 0x67, 0xa4, 0xf4, 0x5c, 0x54, + 0x9e, 0x9d, 0xc2, 0xb3, 0x53, 0x77, 0x5e, 0xca, 0x9e, 0x2e, 0x5c, 0x26, 0xa7, 0xe6, 0xd1, 0x8e, + 0x75, 0x85, 0xfd, 0x44, 0x4b, 0xc7, 0x23, 0x1a, 0x4e, 0x78, 0x7a, 0x32, 0x77, 0x33, 0x54, 0x1d, + 0x1f, 0x3f, 0x0e, 0x31, 0x7d, 0xaf, 0x0f, 0x59, 0x6b, 0x04, 0xec, 0xed, 0x42, 0xdb, 0x1a, 0x68, + 0x2d, 0xcb, 0x0e, 0x43, 0xdf, 0x79, 0xec, 0x84, 0x7d, 0x7a, 0x4e, 0x8c, 0xf4, 0x8b, 0x6f, 0x43, + 0x0b, 0xfd, 0x79, 0x40, 0x3f, 0xa0, 0x1f, 0xd0, 0x4f, 0xb3, 0x67, 0x2f, 0x1c, 0xda, 0x12, 0x9a, + 0xb9, 0xc6, 0x48, 0xaa, 0x98, 0xdc, 0xc7, 0xc3, 0xf1, 0x79, 0x1c, 0xc8, 0x79, 0x38, 0x90, 0xe1, + 0x40, 0x4e, 0x13, 0x14, 0x99, 0x81, 0x24, 0x26, 0x2f, 0x06, 0x75, 0x76, 0xb8, 0xe3, 0xf3, 0x6c, + 0xf8, 0xa6, 0x08, 0x42, 0xc7, 0xb3, 0x59, 0x52, 0xe7, 0xe7, 0xa4, 0x6a, 0xf2, 0x66, 0x4c, 0x7b, + 0x85, 0xb7, 0x8c, 0x09, 0x1b, 0xa8, 0x99, 0x00, 0x37, 0x83, 0x20, 0x67, 0x0a, 0xec, 0x8c, 0x83, + 0x9e, 0x71, 0xf0, 0x33, 0x0b, 0x82, 0x3c, 0x60, 0xc8, 0x04, 0x8a, 0x7c, 0x26, 0xfc, 0x52, 0x89, + 0x61, 0xcd, 0x9d, 0x9c, 0x23, 0x64, 0xa7, 0x8c, 0xf7, 0x60, 0xcd, 0xa5, 0x1c, 0xfd, 0xe1, 0x15, + 0xfa, 0xff, 0x9f, 0xbd, 0x77, 0x6d, 0x4e, 0x1b, 0x5b, 0xd6, 0xc7, 0xdf, 0xfb, 0x53, 0xb8, 0xa8, + 0xfd, 0x22, 0xae, 0x8a, 0xc2, 0xc5, 0x5c, 0x6c, 0x57, 0x9d, 0x17, 0x4e, 0xcc, 0xcc, 0xb8, 0xc6, + 0xb7, 0xed, 0x38, 0xe7, 0x7f, 0xa6, 0x3c, 0x6c, 0x4a, 0x16, 0x0b, 0x5b, 0xbf, 0x08, 0x89, 0xa3, + 0xb5, 0xc8, 0xc4, 0x27, 0xe6, 0xbb, 0xff, 0x0b, 0x21, 0x30, 0x37, 0x25, 0x06, 0x56, 0xf7, 0x92, + 0xc4, 0x93, 0xda, 0xb5, 0xc3, 0x10, 0x50, 0x0b, 0xad, 0x5e, 0xdd, 0xcf, 0xd3, 0xdd, 0xab, 0x7b, + 0xdf, 0x40, 0x6d, 0xe5, 0xd2, 0x1a, 0x1d, 0x31, 0xc8, 0xe2, 0x2a, 0x2f, 0x9b, 0x0a, 0xcc, 0x4b, + 0xcd, 0xe5, 0xe4, 0x4f, 0x8b, 0x54, 0xc2, 0xf0, 0x7d, 0x8e, 0x36, 0x51, 0x1d, 0x9b, 0x48, 0xef, + 0x26, 0x42, 0xad, 0x66, 0xae, 0x6a, 0x35, 0x99, 0x4c, 0xca, 0xce, 0xd7, 0x9a, 0xa6, 0x9b, 0x8e, + 0x13, 0x25, 0xf3, 0xa7, 0xd7, 0x37, 0x95, 0xd4, 0x5f, 0x99, 0xc2, 0xd0, 0x9a, 0xea, 0xd7, 0xbf, + 0xbe, 0x5a, 0xa7, 0xad, 0x56, 0xa2, 0x7e, 0xec, 0x3d, 0x3b, 0x7c, 0xb6, 0xe2, 0xa7, 0x4f, 0x35, + 0x63, 0x75, 0x51, 0x12, 0x82, 0xba, 0x08, 0xea, 0x9a, 0x8f, 0x6f, 0x20, 0xa8, 0xcb, 0xe8, 0x45, + 0xc8, 0x82, 0xba, 0xe4, 0x66, 0x8c, 0xdb, 0x9c, 0x11, 0x9b, 0x35, 0x72, 0xf3, 0xc6, 0x61, 0xe6, + 0x18, 0xcd, 0x1d, 0x97, 0xd9, 0x63, 0x37, 0x7f, 0xec, 0x66, 0x90, 0xd7, 0x1c, 0xd2, 0xd2, 0x0b, + 0xaa, 0xf0, 0x2e, 0x95, 0x99, 0x9c, 0x0a, 0xb0, 0x3b, 0x3d, 0xd7, 0xb7, 0x1e, 0xc3, 0x60, 0xd0, + 0x97, 0xf4, 0xba, 0x3c, 0xd9, 0x9e, 0x73, 0x52, 0xdf, 0xb3, 0x34, 0xf7, 0x2f, 0x13, 0x8b, 0xa1, + 0x36, 0x9f, 0x9c, 0x66, 0xd4, 0x80, 0x39, 0xe5, 0x36, 0xab, 0xc6, 0xcc, 0xab, 0x31, 0x33, 0x6b, + 0xc6, 0xdc, 0xd2, 0x47, 0x75, 0xf6, 0xe9, 0xc3, 0xd0, 0xe4, 0x66, 0x78, 0x2a, 0x88, 0xa8, 0x8a, + 0xea, 0x97, 0x1b, 0x9c, 0xa4, 0xba, 0xca, 0xb0, 0x49, 0x66, 0x37, 0xcd, 0x26, 0x4c, 0xb4, 0x41, + 0x53, 0x6d, 0xca, 0x64, 0x1b, 0x37, 0xdd, 0xc6, 0x4d, 0xb8, 0x59, 0x53, 0xce, 0x63, 0xd2, 0x99, + 0x4c, 0x3b, 0xbb, 0x89, 0x9f, 0x0a, 0x14, 0xdf, 0x1d, 0x6f, 0xd0, 0x11, 0x63, 0x14, 0xcc, 0xbf, + 0x79, 0x26, 0xf6, 0x62, 0xfe, 0x36, 0x98, 0xf5, 0x97, 0x67, 0xf0, 0x96, 0x71, 0x87, 0x60, 0xd2, + 0x31, 0xa4, 0xc0, 0x41, 0x98, 0x76, 0x14, 0xa9, 0x71, 0x18, 0xa9, 0x71, 0x1c, 0xe9, 0x70, 0x20, + 0xbc, 0x8e, 0x84, 0xd9, 0xa1, 0x4c, 0x1f, 0x31, 0x79, 0x85, 0xde, 0x2f, 0x77, 0xbc, 0xfe, 0xc3, + 0x78, 0x6b, 0x23, 0xfd, 0x86, 0x01, 0xd9, 0x33, 0x87, 0xfb, 0x7e, 0xf2, 0x3f, 0x25, 0xac, 0x47, + 0x2f, 0x78, 0xb0, 0xe7, 0xb2, 0xbe, 0xa3, 0x7d, 0x60, 0xcd, 0x06, 0xa9, 0x8a, 0x33, 0xff, 0x31, + 0xfb, 0xda, 0xd2, 0x77, 0x5e, 0x30, 0xad, 0xfa, 0x7b, 0xe1, 0x4a, 0x75, 0xaa, 0x54, 0x68, 0x46, + 0x87, 0x2f, 0x5d, 0xbf, 0xe9, 0x89, 0x91, 0x89, 0x92, 0x85, 0x93, 0x7d, 0x7f, 0xe0, 0x79, 0x06, + 0x34, 0xe9, 0xd2, 0xfe, 0x6e, 0xfe, 0x26, 0xae, 0xc3, 0x8e, 0x08, 0x45, 0xe7, 0xe3, 0x73, 0x7c, + 0x0b, 0x7b, 0xf9, 0x34, 0xd1, 0x8c, 0xea, 0x5d, 0x70, 0xfd, 0x31, 0xf6, 0xb5, 0x3d, 0xcf, 0x34, + 0x0c, 0x5f, 0xbe, 0x15, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, + 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0xf1, 0x1d, 0x80, 0xe2, 0xfe, 0x73, 0x6a, 0xa0, 0xf8, + 0xf4, 0x56, 0x00, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, + 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x99, 0xa1, 0x78, 0xae, 0x6a, 0x6d, 0x88, 0x8f, 0x90, 0x26, + 0xca, 0x4d, 0xd7, 0xd1, 0xd2, 0xc5, 0x73, 0x43, 0xcb, 0x6f, 0xcc, 0xd9, 0x5a, 0x8a, 0x93, 0xa8, + 0xe6, 0xd4, 0x8d, 0x41, 0xd5, 0x0a, 0x52, 0xd9, 0x4a, 0xf0, 0xd7, 0xd2, 0x8e, 0xc5, 0xe6, 0xbc, + 0x94, 0xb6, 0x82, 0x52, 0xda, 0x1c, 0x71, 0x41, 0x94, 0xd2, 0xa2, 0x94, 0x56, 0xdf, 0xa3, 0x44, + 0x29, 0x2d, 0x82, 0x86, 0x79, 0x74, 0x0c, 0x29, 0x70, 0x10, 0xa6, 0x1d, 0x45, 0x6a, 0x1c, 0x46, + 0x6a, 0x1c, 0x47, 0x3a, 0x1c, 0x08, 0x3f, 0x23, 0xdd, 0x47, 0xd0, 0x70, 0xdf, 0x84, 0x81, 0x47, + 0xd0, 0x30, 0xbb, 0xfa, 0x8b, 0xa0, 0x21, 0x82, 0x86, 0x28, 0xa5, 0xa5, 0xb6, 0xd1, 0x28, 0xa5, + 0x05, 0x14, 0x07, 0x14, 0x07, 0x14, 0x07, 0x14, 0x07, 0x14, 0x07, 0x14, 0x07, 0x14, 0x07, 0x14, + 0x07, 0x14, 0xdf, 0x49, 0x28, 0x8e, 0x52, 0x5a, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, + 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x94, 0xd2, 0xea, 0x90, + 0x9b, 0xe9, 0x52, 0xda, 0x71, 0x85, 0x66, 0x5e, 0x2a, 0x69, 0x33, 0xdd, 0x59, 0x97, 0x59, 0x7f, + 0x33, 0xad, 0xb7, 0x05, 0x96, 0x9a, 0xe9, 0x70, 0xe0, 0x28, 0x3f, 0x06, 0x76, 0x57, 0xe3, 0x1f, + 0x7c, 0x1e, 0xff, 0xde, 0xf6, 0x65, 0xdf, 0x93, 0xed, 0x0b, 0xd9, 0x97, 0xed, 0x4f, 0xaf, 0xbf, + 0x77, 0x04, 0x83, 0xda, 0x77, 0xd1, 0x6f, 0x6b, 0xdf, 0x54, 0x6e, 0xc6, 0xaf, 0x4e, 0xa7, 0x3f, + 0x72, 0xf4, 0xde, 0xcd, 0xf8, 0x27, 0x45, 0x9f, 0x3c, 0x1d, 0xfd, 0xa2, 0xdf, 0xc7, 0x3f, 0x28, + 0xa3, 0x83, 0xc4, 0x08, 0x37, 0x45, 0xc1, 0xb1, 0xfd, 0x8e, 0xdb, 0xb1, 0x95, 0xb0, 0xa4, 0x70, + 0x02, 0xbf, 0x33, 0xd1, 0x04, 0xc6, 0xee, 0xfc, 0xc9, 0xb7, 0x80, 0x56, 0xfd, 0x69, 0x8d, 0xc6, + 0xa0, 0x55, 0x7f, 0x0e, 0xa3, 0x29, 0x68, 0xd5, 0xbf, 0xfe, 0x23, 0xe3, 0x6b, 0xd5, 0x9f, 0x60, + 0x25, 0x0d, 0x34, 0xef, 0x4f, 0xba, 0x13, 0xb4, 0xf3, 0xcf, 0x9a, 0x19, 0x37, 0x68, 0xce, 0x4d, + 0x99, 0x75, 0xe3, 0xe6, 0xdd, 0xb8, 0x99, 0x37, 0x6b, 0xee, 0xf3, 0x19, 0x17, 0x61, 0x3f, 0x83, + 0xc4, 0x3c, 0xb9, 0x65, 0xd9, 0x09, 0x70, 0x4e, 0x70, 0x31, 0x64, 0xfa, 0x8d, 0xb9, 0x00, 0x93, + 0xae, 0x20, 0x05, 0x2e, 0xc1, 0xb4, 0x6b, 0x48, 0x8d, 0x8b, 0x48, 0x8d, 0xab, 0x48, 0x87, 0xcb, + 0xe0, 0x75, 0x1d, 0xcc, 0x2e, 0xc4, 0x98, 0x2b, 0x99, 0x0a, 0xee, 0x87, 0x6e, 0x10, 0xba, 0xea, + 0xd9, 0xdc, 0x7e, 0x9b, 0x8e, 0xb8, 0x9d, 0xdc, 0x89, 0x21, 0x2d, 0x37, 0x53, 0xc6, 0x63, 0xdc, + 0xdd, 0xa4, 0xc1, 0xed, 0xa4, 0xc8, 0xfd, 0xa4, 0xc5, 0x0d, 0xa5, 0xce, 0x1d, 0xa5, 0xce, 0x2d, + 0xa5, 0xcb, 0x3d, 0x99, 0x71, 0x53, 0x86, 0xdc, 0xd5, 0xf4, 0xd1, 0x1b, 0x2b, 0x0b, 0x5a, 0xb2, + 0x18, 0x03, 0xd7, 0x57, 0xe5, 0xba, 0x49, 0x83, 0x11, 0xfb, 0x8f, 0xba, 0xc1, 0x5b, 0xb8, 0xb5, + 0xfd, 0xc7, 0xd1, 0xd3, 0xb8, 0x37, 0xba, 0x21, 0xcd, 0x1a, 0xcc, 0xfd, 0xb8, 0xe0, 0xc6, 0xb8, + 0xe5, 0x4e, 0x09, 0xb0, 0x58, 0xba, 0x9d, 0xff, 0xb6, 0xbd, 0x81, 0x48, 0xd1, 0xfd, 0xfc, 0x16, + 0xda, 0x8e, 0x72, 0x03, 0xff, 0xcc, 0x7d, 0x74, 0xa3, 0xd2, 0xa4, 0x92, 0xf1, 0xfb, 0x1a, 0xbe, + 0x4f, 0x81, 0x0a, 0xdb, 0xdf, 0xa1, 0xc2, 0xbf, 0x50, 0xe1, 0x7a, 0xad, 0x76, 0x58, 0x83, 0x1a, + 0xa7, 0x0b, 0x8b, 0x98, 0x97, 0xde, 0xda, 0xdb, 0x8d, 0xdf, 0x6b, 0xc0, 0x4c, 0x15, 0x0c, 0xe5, + 0x21, 0x13, 0x71, 0x9f, 0x91, 0x6c, 0x24, 0x62, 0x07, 0x88, 0x1d, 0x20, 0x76, 0x80, 0xd8, 0x01, + 0x62, 0x07, 0xb9, 0x88, 0x1d, 0x98, 0x3b, 0x5a, 0xb4, 0xe8, 0x40, 0x4c, 0x1c, 0x31, 0x7a, 0x35, + 0xe2, 0x89, 0x47, 0x8d, 0xfa, 0x95, 0xfe, 0x62, 0x99, 0xe6, 0x8a, 0xf7, 0xe2, 0xee, 0xd1, 0x45, + 0xfe, 0xd3, 0x44, 0x06, 0x21, 0x58, 0xae, 0xb3, 0x52, 0x86, 0x0e, 0x7e, 0xbc, 0x82, 0xcd, 0x8c, + 0x15, 0xd2, 0x27, 0x16, 0x35, 0x27, 0xfe, 0x0b, 0x6b, 0xc7, 0x75, 0x7e, 0xa5, 0xe5, 0x6c, 0x49, + 0x60, 0x98, 0x99, 0xa4, 0x83, 0x91, 0xa0, 0x19, 0xc1, 0x4e, 0x31, 0x0e, 0x14, 0xcb, 0xa4, 0x8d, + 0x59, 0xa0, 0x58, 0x26, 0xc7, 0xcc, 0x01, 0xcd, 0x08, 0xa6, 0x0c, 0x21, 0xc6, 0xfa, 0x0b, 0xce, + 0x0e, 0x30, 0x66, 0x7b, 0x18, 0xc3, 0x3a, 0x50, 0x66, 0x19, 0xbd, 0x30, 0x0e, 0x96, 0x59, 0xd2, + 0x69, 0x53, 0xa0, 0xa5, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x02, 0xd0, 0x42, 0xf8, 0x88, 0x8d, + 0x55, 0xf8, 0xda, 0x8e, 0x72, 0xbf, 0x09, 0xf3, 0x99, 0xba, 0xf8, 0x3e, 0x90, 0xa1, 0x33, 0x72, + 0x03, 0xc8, 0xd0, 0xa5, 0xc9, 0x05, 0xa5, 0xce, 0x15, 0xa5, 0xce, 0x25, 0xa5, 0xcb, 0x35, 0x99, + 0x71, 0x51, 0x86, 0x5c, 0x95, 0x79, 0x9e, 0xbd, 0x64, 0x31, 0x1e, 0x82, 0xc0, 0x13, 0xb6, 0x9f, + 0x86, 0x0c, 0x5d, 0x19, 0xc5, 0x45, 0x64, 0xcf, 0x18, 0x87, 0x91, 0x00, 0x57, 0x00, 0x57, 0x00, + 0x57, 0x00, 0x57, 0x00, 0x57, 0xb2, 0x0c, 0x57, 0x70, 0x18, 0x09, 0x87, 0x91, 0x5e, 0x1f, 0x04, + 0x0e, 0x23, 0x25, 0xdf, 0x0e, 0x0e, 0x23, 0xa5, 0xd5, 0x9c, 0xce, 0xab, 0x30, 0x0e, 0x23, 0xfd, + 0x52, 0x85, 0x71, 0x18, 0x29, 0x85, 0x58, 0xc4, 0xbc, 0x74, 0x1c, 0x46, 0xa2, 0x53, 0x73, 0x1c, + 0x46, 0x42, 0xec, 0x00, 0xb1, 0x03, 0xc4, 0x0e, 0x10, 0x3b, 0x40, 0xec, 0x20, 0x2f, 0xb1, 0x03, + 0x1c, 0x46, 0xda, 0xc7, 0x61, 0xa4, 0x2c, 0x48, 0xc4, 0x61, 0xa4, 0xdc, 0x1d, 0x46, 0x62, 0x9c, + 0x59, 0xc3, 0xaf, 0xb3, 0xf9, 0xea, 0x3d, 0xfc, 0xa7, 0x78, 0x36, 0xc6, 0x38, 0xcc, 0x4c, 0x53, + 0x33, 0x3a, 0x45, 0xcd, 0xe8, 0xf4, 0x34, 0x33, 0x53, 0xd3, 0x30, 0x5d, 0x2c, 0xeb, 0xf6, 0xbc, + 0xc0, 0x7a, 0x6c, 0x81, 0x7a, 0xa6, 0xd3, 0xa7, 0xc9, 0xaf, 0xfc, 0x3c, 0xf9, 0x91, 0x37, 0x6c, + 0x47, 0x4e, 0x30, 0x61, 0x2d, 0x55, 0x7b, 0x38, 0x3f, 0x7b, 0x17, 0xd3, 0xc9, 0x96, 0x17, 0x97, + 0x69, 0xca, 0x01, 0xef, 0x54, 0x03, 0xcc, 0x1d, 0xcb, 0x54, 0x34, 0x15, 0x73, 0xc7, 0xf2, 0x19, + 0xed, 0xc4, 0xdc, 0xb1, 0xb7, 0x99, 0x60, 0xd9, 0xef, 0x5a, 0xca, 0x15, 0x0f, 0xa1, 0xb0, 0xbf, + 0x8a, 0xd0, 0xc0, 0xb8, 0xb1, 0x85, 0x1b, 0xe0, 0x9d, 0x32, 0x56, 0xc2, 0x94, 0xb1, 0x2c, 0x1b, + 0x6f, 0x53, 0x46, 0xdc, 0xb8, 0x31, 0x37, 0x6e, 0xd4, 0xcd, 0x1a, 0xf7, 0x7c, 0x46, 0xfa, 0xd8, + 0x53, 0x53, 0x4b, 0x46, 0xd8, 0x8a, 0xac, 0xb0, 0xeb, 0x73, 0x4e, 0xfe, 0x9a, 0xe2, 0xe5, 0x2a, + 0xa3, 0xcc, 0xa6, 0x3f, 0xe8, 0x8d, 0x1e, 0x35, 0x67, 0xbf, 0x87, 0x33, 0xd1, 0xb5, 0x07, 0x5e, + 0xb4, 0x51, 0x6e, 0x4f, 0xaf, 0xce, 0xae, 0x2f, 0x73, 0x13, 0xd1, 0x60, 0x40, 0xe9, 0xe2, 0x7b, + 0xdf, 0x73, 0x1d, 0x57, 0x45, 0x64, 0xda, 0x8a, 0xa3, 0x4f, 0xcc, 0x50, 0x65, 0xc5, 0x3d, 0x00, + 0xad, 0x00, 0xad, 0x00, 0xad, 0x00, 0xad, 0x00, 0xad, 0x30, 0xee, 0x58, 0xfe, 0xc2, 0x19, 0x13, + 0x85, 0x32, 0x3f, 0x29, 0x8c, 0xf9, 0xf0, 0x21, 0xaa, 0x76, 0xe9, 0x58, 0x73, 0x1e, 0x49, 0xae, + 0x7a, 0x93, 0xbf, 0x3a, 0x26, 0x1f, 0x78, 0xe3, 0x29, 0xf0, 0x3a, 0x16, 0xfb, 0x29, 0xe5, 0xa9, + 0x8a, 0xcf, 0x8b, 0xe7, 0x9a, 0x72, 0xfc, 0x0a, 0x50, 0x4b, 0x40, 0x36, 0xb9, 0x40, 0x36, 0xa1, + 0xfc, 0xd6, 0x07, 0xb2, 0xd9, 0x41, 0x64, 0x13, 0x2d, 0x3c, 0x90, 0x4d, 0xc6, 0x90, 0xcd, 0xc0, + 0xf5, 0xd5, 0x91, 0x01, 0x5c, 0xc3, 0x78, 0x9a, 0xcd, 0xd0, 0x69, 0x61, 0x03, 0x65, 0xa4, 0x26, + 0x4f, 0x03, 0x9b, 0x3e, 0x1a, 0x64, 0xf8, 0xb4, 0x6f, 0x1a, 0x8e, 0x45, 0x9a, 0x38, 0x26, 0x67, + 0xf2, 0xf4, 0x6e, 0x5a, 0x54, 0xae, 0xb1, 0xc3, 0x2a, 0x97, 0xd3, 0x82, 0xee, 0x16, 0x88, 0xeb, + 0x9b, 0xd5, 0xd0, 0x4c, 0x68, 0x1c, 0xc1, 0xf0, 0xdc, 0x50, 0x46, 0x04, 0xc3, 0x77, 0x94, 0x32, + 0x22, 0x18, 0x9e, 0x45, 0xca, 0x28, 0x55, 0x68, 0x28, 0x5f, 0x7f, 0x04, 0xaf, 0xfc, 0xe6, 0x67, + 0x16, 0x65, 0x8c, 0x9d, 0xa0, 0xd7, 0x1f, 0x8c, 0x8b, 0xe7, 0xad, 0x9e, 0x50, 0x4f, 0x41, 0x87, + 0xdf, 0x51, 0x27, 0xdd, 0x08, 0x7f, 0x88, 0x39, 0xb6, 0x38, 0xea, 0xe4, 0xe2, 0xfa, 0xd3, 0xe9, + 0xc5, 0xc5, 0x5f, 0xed, 0x4f, 0xd7, 0x97, 0x37, 0x5f, 0xee, 0x9a, 0x67, 0xc0, 0x11, 0xc0, 0x11, + 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0x9c, 0x3b, 0xd6, 0xed, 0x08, 0x5f, 0xb9, 0xea, 0xd9, 0x50, + 0x62, 0x9d, 0x33, 0x02, 0x7d, 0x1e, 0xff, 0xd4, 0x8f, 0xb6, 0x34, 0x38, 0x7f, 0xe9, 0xe6, 0xf4, + 0xee, 0x8f, 0xd8, 0xe7, 0x9d, 0xde, 0x9d, 0x5f, 0x5f, 0xb5, 0x2f, 0x9b, 0x77, 0x7f, 0x5c, 0x9f, + 0x71, 0x5b, 0x8f, 0x28, 0x6c, 0x26, 0x8d, 0x74, 0xef, 0x34, 0xdc, 0xc3, 0xab, 0xf9, 0x3f, 0x37, + 0x17, 0xe7, 0x9f, 0xce, 0xef, 0x2e, 0xfe, 0x6a, 0x9f, 0x35, 0x7f, 0x3b, 0xbf, 0x6a, 0x9e, 0x15, + 0x76, 0x21, 0x48, 0x6c, 0xf8, 0xa9, 0x2f, 0xa1, 0x3d, 0x3c, 0x73, 0x06, 0x4d, 0xbf, 0x6b, 0xde, + 0x5e, 0x45, 0x8f, 0xfd, 0xdf, 0x5f, 0x9a, 0xb7, 0xe7, 0x46, 0x9e, 0x3a, 0xab, 0xc4, 0x56, 0xde, + 0xf0, 0x47, 0x3e, 0x59, 0xb0, 0x14, 0xe1, 0x37, 0x13, 0x87, 0xce, 0x92, 0x6e, 0x04, 0xcc, 0x13, + 0xcc, 0x13, 0xcc, 0x13, 0xcc, 0x13, 0xcc, 0x93, 0x93, 0x79, 0xf6, 0x2d, 0xbb, 0xd3, 0x09, 0x85, + 0x94, 0x26, 0x88, 0xe7, 0x31, 0xa3, 0xcc, 0xf8, 0x19, 0xe7, 0xbe, 0xf2, 0xe9, 0x75, 0x65, 0xbf, + 0x55, 0x0d, 0xac, 0xed, 0xd2, 0x1a, 0x1f, 0x99, 0x99, 0xa0, 0xad, 0x44, 0xe8, 0x1b, 0x1b, 0x8b, + 0x51, 0xf8, 0xcf, 0xbb, 0x77, 0xf7, 0x25, 0xeb, 0xb8, 0xf5, 0x72, 0x5f, 0xb6, 0x8e, 0x5b, 0xe3, + 0x97, 0xe5, 0xe8, 0xaf, 0xf1, 0xeb, 0xca, 0x7d, 0xc9, 0xaa, 0x4e, 0x5e, 0xd7, 0xee, 0x4b, 0x56, + 0xad, 0x75, 0xf0, 0xf7, 0xdf, 0x1f, 0x0e, 0x7e, 0x1c, 0x0e, 0xd7, 0xff, 0xe2, 0xbf, 0xf8, 0x09, + 0x45, 0x2b, 0xcf, 0x3d, 0x30, 0xcd, 0x6e, 0xda, 0x3a, 0x36, 0xad, 0xd9, 0x4d, 0x6b, 0x5b, 0xdd, + 0x53, 0xeb, 0xb7, 0xd6, 0x8f, 0xf2, 0xfb, 0xea, 0xf0, 0xe4, 0xe0, 0x47, 0x63, 0xb8, 0xf8, 0xe6, + 0xcb, 0xaa, 0x8f, 0x95, 0xdf, 0x37, 0x86, 0x27, 0x09, 0xff, 0x52, 0x1f, 0x9e, 0xbc, 0xf1, 0x1a, + 0xb5, 0xe1, 0xbb, 0xa5, 0x8f, 0x8e, 0xde, 0xaf, 0x24, 0x7d, 0xa1, 0x9a, 0xf0, 0x85, 0xc3, 0xa4, + 0x2f, 0x1c, 0x26, 0x7c, 0x21, 0xf1, 0x96, 0x2a, 0x09, 0x5f, 0xa8, 0x0d, 0x5f, 0x96, 0x3e, 0xff, + 0x6e, 0xf5, 0x47, 0xeb, 0xc3, 0x83, 0x97, 0xa4, 0x7f, 0x6b, 0x0c, 0x5f, 0x4e, 0x0e, 0x76, 0xc0, + 0x84, 0xa1, 0x5e, 0x2f, 0x8d, 0x31, 0x91, 0x50, 0x74, 0x45, 0x28, 0x7c, 0xc7, 0x40, 0xd5, 0xde, + 0x8c, 0x6c, 0x44, 0x3e, 0x10, 0xf9, 0x40, 0xe4, 0x03, 0x91, 0x0f, 0x44, 0x3e, 0x18, 0x77, 0x2c, + 0x8e, 0x7b, 0xe5, 0x88, 0x3f, 0xe1, 0xb8, 0x17, 0x79, 0xcf, 0xd3, 0x44, 0xf9, 0x38, 0xee, 0xb5, + 0xb3, 0x2a, 0x57, 0xa9, 0xd5, 0x70, 0xe0, 0x0b, 0x04, 0x72, 0x77, 0x09, 0x64, 0x28, 0x54, 0xf8, + 0x6c, 0x29, 0xb7, 0x67, 0x22, 0x91, 0x3e, 0x2b, 0x1c, 0x14, 0x32, 0x0f, 0x14, 0x12, 0x1d, 0x43, + 0x76, 0x94, 0x42, 0xa2, 0x63, 0x48, 0x56, 0x29, 0x64, 0xb9, 0x6e, 0x80, 0x43, 0xd6, 0xc1, 0x21, + 0xc1, 0x21, 0xc1, 0x21, 0xc1, 0x21, 0x73, 0xa0, 0x72, 0xf5, 0x52, 0x09, 0x1c, 0x12, 0x1c, 0x72, + 0x77, 0x39, 0xa4, 0x14, 0x6a, 0xd0, 0x37, 0xd8, 0xee, 0x72, 0x41, 0x3e, 0xff, 0x61, 0xe4, 0x06, + 0xd8, 0x2b, 0xd8, 0x2b, 0xd8, 0x2b, 0xd8, 0x2b, 0xd8, 0x2b, 0x37, 0x7b, 0x45, 0x02, 0x14, 0xe4, + 0x35, 0x37, 0x4c, 0x02, 0xfd, 0x2e, 0x41, 0x5e, 0x99, 0x55, 0x0e, 0xfd, 0x2e, 0x41, 0x5d, 0x77, + 0x98, 0xba, 0x0e, 0xa4, 0xb0, 0x1c, 0xd9, 0xef, 0xf2, 0x93, 0xd6, 0xa9, 0x64, 0x50, 0xc7, 0x3c, + 0x50, 0x47, 0xd4, 0xce, 0xee, 0x28, 0x75, 0x44, 0xed, 0x6c, 0x16, 0xa9, 0xe3, 0x43, 0x10, 0x78, + 0xc2, 0xf6, 0x4d, 0x1c, 0x19, 0x2e, 0xe7, 0xc5, 0x3d, 0x67, 0x7a, 0x44, 0xf6, 0xa9, 0xef, 0x07, + 0xe3, 0xee, 0x1d, 0x3c, 0x93, 0xb2, 0xa5, 0xf3, 0x24, 0x7a, 0x76, 0x3f, 0x1e, 0xca, 0x55, 0x0c, + 0xfa, 0xc2, 0x1f, 0xcf, 0xd6, 0xb2, 0x7c, 0xa1, 0xfe, 0x09, 0xc2, 0xaf, 0x96, 0xeb, 0x4b, 0x65, + 0xfb, 0x8e, 0x28, 0x2e, 0xbe, 0x21, 0x97, 0xde, 0x29, 0x8e, 0x8c, 0x4e, 0xd1, 0x93, 0x7d, 0x59, + 0x74, 0x02, 0x5f, 0xaa, 0xd0, 0x76, 0x7d, 0xd1, 0x19, 0x4f, 0xec, 0x52, 0x03, 0xdf, 0x17, 0x9e, + 0x8c, 0xff, 0x2e, 0xf6, 0x2b, 0x7d, 0x6b, 0xfc, 0xd2, 0xb2, 0x95, 0x0a, 0xdd, 0x87, 0x81, 0x12, + 0x32, 0x7a, 0xb7, 0x1f, 0xba, 0x3d, 0x3b, 0x7c, 0x1e, 0x7f, 0x6b, 0xe9, 0x8d, 0xf1, 0xcd, 0xd1, + 0x1a, 0x36, 0x3a, 0x0d, 0x22, 0xd4, 0x1e, 0x9e, 0x16, 0xe9, 0x9c, 0xad, 0xd1, 0x99, 0xa0, 0x21, + 0x1b, 0x24, 0xe4, 0x84, 0x82, 0x06, 0x20, 0x20, 0x37, 0xf4, 0x33, 0x06, 0xf9, 0x8c, 0x41, 0x3d, + 0x33, 0x10, 0x2f, 0xdb, 0xfe, 0x94, 0x0d, 0xca, 0x19, 0x98, 0xe3, 0xc9, 0x39, 0xbf, 0x73, 0x76, + 0x6e, 0x27, 0xdb, 0xf0, 0xcd, 0x6c, 0x3a, 0x62, 0xa9, 0x6c, 0xc5, 0xe8, 0x89, 0xc7, 0xe2, 0x78, + 0x5c, 0x71, 0x99, 0xcb, 0x15, 0x57, 0xe0, 0x8a, 0xe1, 0x8a, 0xe1, 0x8a, 0x73, 0xe5, 0x8a, 0xcf, + 0x5c, 0x9e, 0xa3, 0x3c, 0x05, 0x5b, 0xca, 0xc0, 0x71, 0x6d, 0x25, 0x3a, 0x51, 0x01, 0x85, 0x25, + 0x85, 0x94, 0x6e, 0xe0, 0x4b, 0xfe, 0x60, 0x7a, 0xe2, 0x9d, 0x20, 0xb8, 0x9e, 0x35, 0x33, 0x6e, + 0xd0, 0x9c, 0x9b, 0x32, 0xeb, 0xc6, 0xcd, 0xbb, 0x71, 0x33, 0x6f, 0xd6, 0xdc, 0xf3, 0x98, 0x7d, + 0x26, 0xf3, 0xcf, 0xcf, 0xc8, 0x0c, 0x32, 0x33, 0x13, 0x0c, 0x6d, 0x15, 0x53, 0x4b, 0xfa, 0x9f, + 0x74, 0x1f, 0x7d, 0xdb, 0x73, 0xfd, 0x47, 0xab, 0x1f, 0x06, 0x2a, 0x70, 0x02, 0x4f, 0x16, 0x23, + 0x07, 0xa5, 0x44, 0x71, 0xe2, 0xa3, 0x26, 0x2f, 0x8a, 0x5e, 0xe0, 0xd8, 0x9e, 0xe5, 0xfa, 0x1d, + 0xf1, 0xbd, 0x90, 0x2b, 0x4d, 0xbc, 0x70, 0xa5, 0x3a, 0x55, 0x2a, 0xe4, 0xd5, 0xc6, 0x4b, 0xd7, + 0x6f, 0x7a, 0x62, 0x64, 0x4c, 0x46, 0x80, 0xc4, 0x1f, 0x78, 0x1e, 0xa3, 0x6e, 0x5c, 0xda, 0xdf, + 0xcd, 0x09, 0xbf, 0x0e, 0x3b, 0x22, 0x14, 0x9d, 0x8f, 0xcf, 0xb1, 0x68, 0xd4, 0x83, 0xbc, 0xf9, + 0xd1, 0x39, 0xb2, 0xdf, 0xb5, 0x7a, 0x42, 0x85, 0xae, 0xc3, 0x8f, 0x62, 0x67, 0x85, 0x03, 0xb8, + 0x02, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x32, 0xee, 0xd8, 0x81, 0xeb, 0xab, 0x7a, 0xd5, + 0x00, 0x6e, 0x3d, 0xc2, 0x89, 0x02, 0x12, 0x00, 0x88, 0x13, 0x05, 0x38, 0x51, 0xc0, 0xaa, 0x72, + 0x38, 0x51, 0xb0, 0x5f, 0x3e, 0xaa, 0x56, 0xeb, 0x8d, 0x6a, 0xb5, 0xd4, 0x38, 0x6c, 0x94, 0x8e, + 0x6b, 0xb5, 0x72, 0xbd, 0x8c, 0x1e, 0x6b, 0xb9, 0x93, 0x86, 0x43, 0x06, 0x6b, 0x92, 0x4a, 0xe5, + 0x8a, 0x87, 0x50, 0xd8, 0x5f, 0x4d, 0xf4, 0x59, 0x5b, 0xbc, 0x01, 0x90, 0x4b, 0x90, 0x4b, 0x90, + 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x03, 0x46, 0xd8, 0x8a, 0xac, 0xb0, 0xeb, 0x3f, 0x9a, 0xc8, 0x8f, + 0x54, 0x19, 0x65, 0x36, 0xfd, 0x41, 0x6f, 0xf4, 0xa8, 0x19, 0x81, 0xf8, 0x6c, 0x53, 0x96, 0xdb, + 0xd3, 0xab, 0xb3, 0xeb, 0xcb, 0x02, 0x70, 0xca, 0x9b, 0x1f, 0x9e, 0xf8, 0xde, 0xf7, 0x5c, 0xc7, + 0x55, 0xd1, 0x09, 0x00, 0x8b, 0xa5, 0xce, 0x7d, 0x69, 0x97, 0xac, 0xb8, 0x07, 0xa0, 0x15, 0xa0, + 0x15, 0xa0, 0x15, 0xa0, 0x15, 0xa0, 0x15, 0xc6, 0x1d, 0x8b, 0x1a, 0x8e, 0x0f, 0x51, 0xe1, 0x7d, + 0xc7, 0x9a, 0xf3, 0x48, 0x72, 0xd5, 0x9b, 0x7c, 0x85, 0xfa, 0xf9, 0xc2, 0x1b, 0x4f, 0x81, 0xd7, + 0x31, 0xd8, 0x36, 0x70, 0x5e, 0x3c, 0x7f, 0xd7, 0xc0, 0x12, 0x90, 0x4d, 0x2e, 0x90, 0x0d, 0xba, + 0x06, 0xee, 0x28, 0xb2, 0x41, 0xd7, 0xc0, 0x2c, 0x22, 0x1b, 0x74, 0x0d, 0xa4, 0xfa, 0x83, 0x1c, + 0x3f, 0xab, 0x78, 0xe4, 0xf8, 0x91, 0xe3, 0x37, 0xa4, 0x72, 0xe8, 0x1a, 0x98, 0x3b, 0x69, 0x48, + 0xe8, 0xbf, 0x5d, 0x0d, 0xcd, 0x84, 0xc6, 0x11, 0x0c, 0xcf, 0x0d, 0x65, 0x44, 0x30, 0x7c, 0x47, + 0x29, 0x23, 0x82, 0xe1, 0x59, 0xa4, 0x8c, 0x52, 0x85, 0x86, 0xf2, 0xf5, 0x47, 0xf0, 0xca, 0x6f, + 0x7e, 0x66, 0x51, 0xc6, 0xd8, 0x09, 0x7a, 0xfd, 0xc1, 0xb8, 0xb1, 0x9f, 0xd5, 0x13, 0xea, 0x29, + 0xe8, 0xf0, 0x3b, 0xea, 0xa4, 0x1b, 0xe1, 0x0f, 0x31, 0xc7, 0x16, 0x47, 0x9d, 0x5c, 0x5c, 0x7f, + 0x3a, 0xbd, 0xb8, 0xf8, 0xab, 0xfd, 0xe9, 0xfa, 0xf2, 0xe6, 0xcb, 0x5d, 0xf3, 0x0c, 0x38, 0x02, + 0x38, 0x02, 0x38, 0x02, 0x38, 0x02, 0x38, 0x82, 0x73, 0xc7, 0xba, 0x1d, 0xe1, 0x2b, 0x57, 0x3d, + 0x1b, 0x4a, 0xac, 0x73, 0x46, 0xa0, 0xcf, 0xe3, 0x9f, 0xfa, 0xd1, 0x96, 0x06, 0xec, 0xc5, 0xe4, + 0x81, 0xdf, 0x9c, 0xde, 0xfd, 0x11, 0xfb, 0xbc, 0xd3, 0xbb, 0xf3, 0xeb, 0xab, 0xf6, 0x65, 0xf3, + 0xee, 0x8f, 0xeb, 0x33, 0x6e, 0xeb, 0x11, 0x85, 0xcd, 0x24, 0x7b, 0x3c, 0x7e, 0xdf, 0x48, 0x4c, + 0x7e, 0x6e, 0x01, 0x9a, 0xff, 0x73, 0x73, 0x71, 0xfe, 0xe9, 0xfc, 0xee, 0xe2, 0xaf, 0xf6, 0x59, + 0xf3, 0xb7, 0xf3, 0xab, 0xe6, 0x59, 0x61, 0x17, 0x82, 0xc4, 0x86, 0x9f, 0xfa, 0x12, 0xda, 0xc3, + 0x33, 0x67, 0xd0, 0xf4, 0xbb, 0xe6, 0xed, 0x55, 0xf4, 0xd8, 0xff, 0xfd, 0xa5, 0x79, 0x7b, 0x6e, + 0xe4, 0xa9, 0xb3, 0x4a, 0x6c, 0xe5, 0x0d, 0x7f, 0xe4, 0x93, 0x05, 0x4b, 0x11, 0x7e, 0x33, 0x71, + 0xe8, 0x2c, 0xe9, 0x46, 0xc0, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0xc1, 0x3c, 0x39, 0x99, + 0x67, 0xdf, 0xb2, 0x3b, 0x9d, 0x50, 0x48, 0x69, 0x82, 0x78, 0x1e, 0x33, 0xca, 0x8c, 0x9f, 0x71, + 0xee, 0x2b, 0x9f, 0x5e, 0x57, 0xf6, 0x5b, 0xd5, 0xc0, 0xda, 0x2e, 0xad, 0xf1, 0x91, 0x01, 0xd9, + 0x37, 0xb6, 0x52, 0x22, 0xf4, 0x8d, 0x10, 0xeb, 0xe8, 0x06, 0xfe, 0xf3, 0xee, 0xdd, 0x7d, 0xc9, + 0x3a, 0x6e, 0xbd, 0xdc, 0x97, 0xad, 0xe3, 0xd6, 0xf8, 0x65, 0x39, 0xfa, 0x6b, 0xfc, 0xba, 0x72, + 0x5f, 0xb2, 0xaa, 0x93, 0xd7, 0xb5, 0xfb, 0x92, 0x55, 0x6b, 0x1d, 0xfc, 0xfd, 0xf7, 0x87, 0x83, + 0x1f, 0x87, 0xc3, 0xf5, 0xbf, 0xf8, 0x2f, 0x7e, 0x42, 0xd1, 0xda, 0xcb, 0x31, 0x69, 0x34, 0xbb, + 0x69, 0xeb, 0xd8, 0xb4, 0x66, 0x37, 0xad, 0x6d, 0x75, 0x4f, 0xad, 0xdf, 0x5a, 0x3f, 0xca, 0xef, + 0xab, 0xc3, 0x93, 0x83, 0x1f, 0x8d, 0xe1, 0xe2, 0x9b, 0x2f, 0xab, 0x3e, 0x56, 0x7e, 0xdf, 0x18, + 0x9e, 0x24, 0xfc, 0x4b, 0x7d, 0x78, 0xf2, 0xc6, 0x6b, 0xd4, 0x86, 0xef, 0x96, 0x3e, 0x3a, 0x7a, + 0xbf, 0x92, 0xf4, 0x85, 0x6a, 0xc2, 0x17, 0x0e, 0x93, 0xbe, 0x70, 0x98, 0xf0, 0x85, 0xc4, 0x5b, + 0xaa, 0x24, 0x7c, 0xa1, 0x36, 0x7c, 0x59, 0xfa, 0xfc, 0xbb, 0xd5, 0x1f, 0xad, 0x0f, 0x0f, 0x5e, + 0x92, 0xfe, 0xad, 0x31, 0x7c, 0x39, 0x39, 0xd8, 0x01, 0x13, 0x86, 0x7a, 0xbd, 0x34, 0xc6, 0x44, + 0x42, 0xd1, 0x15, 0xa1, 0xf0, 0x1d, 0x03, 0x55, 0x7b, 0x33, 0xb2, 0x11, 0xf9, 0x40, 0xe4, 0x03, + 0x91, 0x0f, 0x44, 0x3e, 0x10, 0xf9, 0x60, 0xdc, 0xb1, 0x38, 0xee, 0x95, 0x23, 0xfe, 0x84, 0xe3, + 0x5e, 0xe4, 0xb3, 0xe1, 0x12, 0xe5, 0xe3, 0xb8, 0xd7, 0xce, 0xaa, 0x5c, 0xa5, 0x86, 0x0e, 0xae, + 0x20, 0x90, 0x3b, 0x4c, 0x20, 0x43, 0xa1, 0xc2, 0x67, 0x4b, 0xb9, 0x3d, 0x13, 0x89, 0xf4, 0x59, + 0xe1, 0xa0, 0x90, 0x79, 0xa0, 0x90, 0xe8, 0x18, 0xb2, 0xa3, 0x14, 0x12, 0x1d, 0x43, 0xb2, 0x4a, + 0x21, 0xcb, 0x75, 0x03, 0x1c, 0xb2, 0x0e, 0x0e, 0x09, 0x0e, 0x09, 0x0e, 0x09, 0x0e, 0x99, 0x03, + 0x95, 0xab, 0x97, 0x4a, 0xe0, 0x90, 0xe0, 0x90, 0xbb, 0xcb, 0x21, 0xa5, 0x50, 0x83, 0xbe, 0xc1, + 0x76, 0x97, 0x0b, 0xf2, 0xf9, 0x0f, 0x23, 0x37, 0xc0, 0x5e, 0xc1, 0x5e, 0xc1, 0x5e, 0xc1, 0x5e, + 0xc1, 0x5e, 0xb9, 0xd9, 0x2b, 0x12, 0xa0, 0x20, 0xaf, 0xb9, 0x61, 0x12, 0xe8, 0x77, 0x09, 0xf2, + 0xca, 0xac, 0x72, 0xe8, 0x77, 0x09, 0xea, 0xba, 0xcb, 0xd4, 0xb5, 0xdf, 0xb5, 0x7a, 0x42, 0x85, + 0xae, 0x63, 0x80, 0xb6, 0xbe, 0xca, 0x06, 0x7d, 0xcc, 0x03, 0x7d, 0x44, 0xfd, 0xec, 0x8e, 0xd2, + 0x47, 0xd4, 0xcf, 0x66, 0x95, 0x3e, 0xd6, 0xab, 0x06, 0xf8, 0xe3, 0x11, 0xf8, 0x23, 0xf8, 0x23, + 0xf8, 0x23, 0xf8, 0x63, 0x0e, 0x54, 0xae, 0x7c, 0x54, 0xad, 0xd6, 0x1b, 0xd5, 0x6a, 0xa9, 0x71, + 0xd8, 0x28, 0x1d, 0xd7, 0x6a, 0xe5, 0x7a, 0x19, 0x15, 0xb5, 0xa0, 0x94, 0x3b, 0x4c, 0x29, 0x07, + 0x52, 0x58, 0x8e, 0xec, 0x77, 0xf9, 0x09, 0xe5, 0x54, 0x32, 0xe8, 0x24, 0xe8, 0x24, 0xe8, 0x24, + 0xe8, 0x24, 0xe8, 0x24, 0xe3, 0x8e, 0x7d, 0x08, 0x02, 0x4f, 0xd8, 0xbe, 0x89, 0x2e, 0x54, 0xe5, + 0xbc, 0xb8, 0xe7, 0xbd, 0x0c, 0xab, 0x60, 0xe1, 0xd4, 0xf7, 0x83, 0x71, 0x43, 0x48, 0x16, 0x05, + 0x2c, 0x48, 0xe7, 0x49, 0xf4, 0xec, 0x7e, 0x3c, 0xe7, 0xb9, 0x18, 0xf4, 0x85, 0x3f, 0x1e, 0xd7, + 0x6c, 0xf9, 0x42, 0xfd, 0x13, 0x84, 0x5f, 0x2d, 0xd7, 0x97, 0xca, 0xf6, 0x1d, 0x51, 0x5c, 0x7c, + 0x43, 0x2e, 0xbd, 0x53, 0x1c, 0x19, 0x9d, 0xa2, 0x27, 0xfb, 0xb2, 0xe8, 0x04, 0xbe, 0x54, 0xa1, + 0xed, 0xfa, 0xa2, 0x33, 0x1e, 0x02, 0xad, 0x06, 0xbe, 0x2f, 0x3c, 0x19, 0xff, 0x5d, 0xec, 0x57, + 0xfa, 0xd6, 0xf8, 0xa5, 0x65, 0x2b, 0x15, 0xba, 0x0f, 0x03, 0x25, 0x64, 0xf4, 0x6e, 0x3f, 0x74, + 0x7b, 0x76, 0xf8, 0x3c, 0xfe, 0xd6, 0xd2, 0x1b, 0x52, 0xd9, 0x8a, 0x78, 0x8a, 0x34, 0x9d, 0x02, + 0xd1, 0x5c, 0x99, 0x48, 0x25, 0x47, 0x2e, 0x95, 0x78, 0xae, 0x56, 0xe1, 0xc2, 0x95, 0xea, 0x54, + 0x29, 0xda, 0x53, 0x63, 0x85, 0x4b, 0xd7, 0x6f, 0x7a, 0x62, 0xe4, 0x1b, 0x47, 0x84, 0xce, 0x1f, + 0x78, 0xde, 0xfb, 0x3d, 0x4a, 0x3e, 0xcf, 0x27, 0xec, 0x3a, 0xec, 0x88, 0x50, 0x74, 0x3e, 0x3e, + 0xc7, 0xa2, 0x32, 0xa5, 0x5f, 0x4c, 0xa6, 0x2e, 0x6b, 0x26, 0x8e, 0xd0, 0xf7, 0x17, 0xa4, 0x0a, + 0x07, 0x8e, 0x8a, 0xe7, 0xf3, 0x15, 0xae, 0xc6, 0xbf, 0xed, 0x3c, 0xfe, 0x69, 0xed, 0xcb, 0xbe, + 0x27, 0xdb, 0x17, 0xb2, 0x2f, 0xdb, 0x9f, 0x5e, 0x7f, 0xda, 0x8d, 0xad, 0x9e, 0xda, 0x77, 0xd1, + 0xcf, 0x68, 0xdf, 0x54, 0x6e, 0xc6, 0xaf, 0x4e, 0xa7, 0xbf, 0x67, 0xf4, 0xde, 0xcd, 0xf8, 0xee, + 0x47, 0x9f, 0xa4, 0xb1, 0xcc, 0xfa, 0xed, 0xa6, 0xde, 0x2b, 0x6a, 0xde, 0x21, 0xd4, 0x3b, 0x23, + 0xe5, 0x3b, 0x42, 0xaf, 0x0e, 0xe9, 0x5b, 0x69, 0x8d, 0xab, 0x5c, 0x18, 0xfd, 0x66, 0x29, 0x9c, + 0xc0, 0xef, 0x4c, 0x7e, 0xb5, 0xd4, 0xbe, 0xd4, 0xaf, 0x3d, 0xb6, 0x56, 0x08, 0xd3, 0xac, 0xb1, + 0x13, 0x12, 0xa1, 0xf9, 0xb2, 0x54, 0xd1, 0x1a, 0xca, 0xa8, 0x0c, 0x43, 0xf4, 0x85, 0x3a, 0xca, + 0xc2, 0x16, 0x4d, 0x61, 0x8b, 0x9a, 0xf0, 0x44, 0x47, 0xd2, 0xed, 0x55, 0xce, 0x5c, 0x1a, 0x9c, + 0xbd, 0xc2, 0xbe, 0xd0, 0x69, 0x66, 0xb2, 0x4d, 0xa3, 0x52, 0x51, 0x1a, 0xd3, 0x46, 0x6e, 0xe2, + 0x38, 0x4c, 0x1d, 0xa3, 0xc9, 0xe3, 0x32, 0x7d, 0xec, 0x26, 0x90, 0xdd, 0x14, 0xf2, 0x9a, 0xc4, + 0x6c, 0x86, 0x3e, 0xa8, 0x4c, 0xe5, 0x54, 0x80, 0xdd, 0xe9, 0xb9, 0xbe, 0xf5, 0x18, 0x06, 0x83, + 0xbe, 0xa4, 0xd7, 0xe5, 0xc9, 0xf6, 0x9c, 0x93, 0x4a, 0xac, 0x5d, 0xb4, 0x66, 0x93, 0xcd, 0x7c, + 0x72, 0x9a, 0x51, 0x03, 0xe6, 0x94, 0xdb, 0xac, 0x1a, 0x33, 0xaf, 0xc6, 0xcc, 0xac, 0x19, 0x73, + 0x4b, 0x6b, 0x76, 0x89, 0xcd, 0x2f, 0x9b, 0x19, 0x9e, 0x0a, 0x72, 0x26, 0x56, 0x84, 0xb9, 0xd8, + 0x22, 0x96, 0xcb, 0x5b, 0x6a, 0x51, 0x46, 0xa9, 0x45, 0x96, 0x4d, 0xb5, 0x29, 0x93, 0x6d, 0xdc, + 0x74, 0x1b, 0x37, 0xe1, 0x66, 0x4d, 0x39, 0x8f, 0x49, 0x67, 0x32, 0xed, 0xec, 0x26, 0x7e, 0x2a, + 0x50, 0x7c, 0x77, 0xbc, 0x41, 0x47, 0x8c, 0x51, 0xb0, 0xb9, 0xd1, 0xcb, 0xf3, 0xb7, 0xc1, 0xac, + 0xbf, 0x66, 0xca, 0x7e, 0xd9, 0x1d, 0x82, 0x49, 0xc7, 0x90, 0x02, 0x07, 0x61, 0xda, 0x51, 0xa4, + 0xc6, 0x61, 0xa4, 0xc6, 0x71, 0xa4, 0xc3, 0x81, 0xf0, 0x3a, 0x12, 0x66, 0x87, 0x32, 0x7d, 0xc4, + 0xec, 0x35, 0x7c, 0x4b, 0x3b, 0xde, 0x13, 0x76, 0x37, 0x14, 0x5d, 0x93, 0x03, 0xcc, 0x1a, 0x66, + 0x06, 0x98, 0x45, 0x69, 0xe5, 0x0f, 0x1f, 0x8a, 0x3f, 0xf9, 0x9f, 0x12, 0xd6, 0xa3, 0x17, 0x3c, + 0xd8, 0x73, 0x99, 0xe0, 0xd1, 0x3e, 0xb0, 0x66, 0x83, 0x54, 0xc5, 0x99, 0xff, 0x98, 0x7d, 0x6d, + 0x45, 0x25, 0x0c, 0xb9, 0xd6, 0x5f, 0x96, 0xd2, 0xa8, 0x44, 0xe9, 0x9c, 0x25, 0x53, 0xc9, 0x37, + 0xc1, 0x58, 0x4a, 0x95, 0x78, 0x13, 0x2c, 0x25, 0x56, 0xe6, 0x4d, 0x34, 0xa3, 0x7a, 0x17, 0x5c, + 0x7f, 0x8c, 0x7d, 0x6d, 0xcf, 0x33, 0x0d, 0xc3, 0x97, 0x6f, 0x05, 0x50, 0x1c, 0x50, 0x1c, 0x50, + 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x7c, 0x07, + 0xa0, 0xb8, 0xff, 0x9c, 0x1a, 0x28, 0x3e, 0xbd, 0x15, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, + 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x66, 0x28, 0x9e, + 0xab, 0x5a, 0x1b, 0xe6, 0xde, 0x12, 0x53, 0xb9, 0xe9, 0x3b, 0x6e, 0xba, 0x70, 0x1a, 0x72, 0xc5, + 0x7b, 0xc5, 0x39, 0x83, 0x1b, 0xd7, 0x69, 0xa2, 0x81, 0xd9, 0xdb, 0xd7, 0x3c, 0xea, 0xd3, 0xc1, + 0xdf, 0x0e, 0x3b, 0x12, 0x9b, 0xf3, 0x7a, 0xda, 0x0a, 0xea, 0x69, 0x73, 0x44, 0x08, 0x51, 0x4f, + 0x8b, 0x7a, 0x5a, 0x7d, 0x8f, 0x12, 0xf5, 0xb4, 0x88, 0x1c, 0xe6, 0xd1, 0x31, 0xa4, 0xc0, 0x41, + 0x98, 0x76, 0x14, 0xa9, 0x71, 0x18, 0xa9, 0x71, 0x1c, 0xe9, 0x70, 0x20, 0xfc, 0xb4, 0x74, 0x1f, + 0x91, 0xc3, 0x7d, 0x13, 0x06, 0x1e, 0x91, 0xc3, 0xec, 0xea, 0x2f, 0x22, 0x87, 0x88, 0x1c, 0xa2, + 0x9e, 0x96, 0xda, 0x46, 0xa3, 0x9e, 0x16, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, + 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x7c, 0x27, 0xa1, 0x38, 0xea, 0x69, 0x01, 0xc5, + 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, + 0x01, 0xc5, 0x51, 0x4f, 0xab, 0x43, 0x6e, 0xf6, 0xeb, 0x69, 0x19, 0xa6, 0xb8, 0xf1, 0xa9, 0x1c, + 0x06, 0x0e, 0xee, 0x94, 0xf2, 0x16, 0x58, 0xaa, 0xa7, 0x29, 0xe6, 0x74, 0x7d, 0x9e, 0xfc, 0xa8, + 0xe8, 0xb3, 0xa7, 0xa3, 0xdf, 0xf4, 0xfb, 0xf8, 0x27, 0x65, 0x75, 0x9e, 0x22, 0xe1, 0x9c, 0x09, + 0xa6, 0x96, 0xd0, 0xbc, 0xad, 0xa0, 0xd1, 0x95, 0x3f, 0x53, 0x31, 0x16, 0x74, 0xe5, 0xcf, 0x67, + 0x8c, 0x04, 0x5d, 0xf9, 0xdf, 0x66, 0x82, 0x65, 0xbf, 0x6b, 0x29, 0x57, 0x3c, 0x84, 0xc2, 0xfe, + 0x2a, 0x42, 0x03, 0xed, 0xf9, 0x17, 0x6e, 0x80, 0xf7, 0x5c, 0x51, 0x09, 0x7d, 0xfa, 0xb3, 0x6c, + 0xbc, 0x4d, 0x19, 0x71, 0xe3, 0xc6, 0xdc, 0xb8, 0x51, 0x37, 0x6b, 0xdc, 0xf3, 0x19, 0xeb, 0x60, + 0x0f, 0x74, 0x2f, 0x19, 0x61, 0x2b, 0xb2, 0xc2, 0xae, 0xff, 0xc8, 0xb9, 0x77, 0x27, 0x78, 0xb9, + 0xca, 0x28, 0xb3, 0xe9, 0x0f, 0x7a, 0xa3, 0x47, 0xcd, 0x99, 0xb7, 0x3e, 0x13, 0x5d, 0x7b, 0xe0, + 0x45, 0x1b, 0xe5, 0xf6, 0xf4, 0xea, 0xec, 0xfa, 0x12, 0x67, 0x9d, 0xdf, 0xfe, 0xf0, 0xc4, 0xf7, + 0xbe, 0xe7, 0x3a, 0xae, 0x8a, 0x62, 0x05, 0x56, 0xcc, 0xda, 0x99, 0xa1, 0xca, 0x8a, 0x7b, 0x00, + 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x61, 0xdc, 0xb1, 0xfc, 0xe9, 0x78, 0x13, + 0x69, 0xf8, 0x9f, 0xa7, 0xdf, 0x47, 0xde, 0xa7, 0x63, 0xcd, 0x79, 0x24, 0xb9, 0xea, 0xcd, 0xb8, + 0xad, 0x4a, 0x91, 0x2f, 0xcd, 0x9e, 0x0f, 0xbc, 0xf1, 0x14, 0x78, 0x1d, 0xab, 0x1f, 0xba, 0x41, + 0xe8, 0xaa, 0x67, 0x7e, 0xa8, 0x31, 0x2f, 0x9e, 0xab, 0xaf, 0xc1, 0x2b, 0x40, 0x2d, 0x01, 0xd9, + 0xe4, 0x02, 0xd9, 0x84, 0xf2, 0x5b, 0x1f, 0xc8, 0x66, 0x07, 0x91, 0x4d, 0xb4, 0xf0, 0x40, 0x36, + 0x19, 0x43, 0x36, 0x03, 0xd7, 0x57, 0x47, 0x06, 0x70, 0x4d, 0x8d, 0x51, 0xe4, 0xad, 0xed, 0x3f, + 0x8e, 0x7e, 0xec, 0x3d, 0xeb, 0xfe, 0x30, 0x53, 0x79, 0x67, 0xb0, 0x52, 0xdb, 0xc8, 0xc1, 0x80, + 0xa9, 0xf8, 0xff, 0xb6, 0xbd, 0x81, 0x30, 0x28, 0xff, 0xb7, 0xd0, 0x76, 0x94, 0x1b, 0xf8, 0x67, + 0xee, 0xa3, 0x1b, 0xd5, 0x1c, 0x96, 0xf8, 0x8b, 0xb2, 0xcd, 0xd4, 0x59, 0xee, 0xbc, 0xca, 0x35, + 0x76, 0x58, 0xe5, 0x72, 0x5a, 0xd2, 0xda, 0x02, 0x71, 0x7d, 0xb3, 0x1a, 0x9a, 0x09, 0x8d, 0x23, + 0x18, 0x9e, 0x1b, 0xca, 0x88, 0x60, 0xf8, 0x8e, 0x52, 0x46, 0x04, 0xc3, 0xb3, 0x48, 0x19, 0xa5, + 0x0a, 0x0d, 0xe5, 0xeb, 0x8f, 0xe0, 0x95, 0xdf, 0xfc, 0xcc, 0xa2, 0x8c, 0xb1, 0x13, 0xf4, 0xfa, + 0x83, 0xf1, 0x39, 0x00, 0xab, 0x27, 0xd4, 0x53, 0xd0, 0xe1, 0x77, 0xd4, 0x49, 0x37, 0xc2, 0x1f, + 0x62, 0x8e, 0x2d, 0x8e, 0x3a, 0xb9, 0xb8, 0xfe, 0x74, 0x7a, 0x71, 0xf1, 0x57, 0xfb, 0xd3, 0xf5, + 0xe5, 0xcd, 0x97, 0xbb, 0xe6, 0x19, 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, 0x70, 0x04, + 0xe7, 0x8e, 0x75, 0x3b, 0xc2, 0x57, 0xae, 0x7a, 0x36, 0x94, 0x58, 0xe7, 0x8c, 0x40, 0x9f, 0xc7, + 0x3f, 0xf5, 0xa3, 0x2d, 0x85, 0xb9, 0xde, 0x31, 0x37, 0xa7, 0x77, 0x7f, 0xc4, 0x3e, 0xef, 0xf4, + 0xee, 0xfc, 0xfa, 0xaa, 0x7d, 0xd9, 0xbc, 0xfb, 0xe3, 0xfa, 0x8c, 0xdb, 0x7a, 0x44, 0x61, 0x33, + 0xc9, 0x1e, 0x8f, 0xdf, 0x37, 0x12, 0x93, 0x9f, 0x5b, 0x80, 0xe6, 0xff, 0xdc, 0x5c, 0x9c, 0x7f, + 0x3a, 0xbf, 0xbb, 0xf8, 0xab, 0x7d, 0xd6, 0xfc, 0xed, 0xfc, 0xaa, 0x79, 0x56, 0xd8, 0x85, 0x20, + 0xb1, 0xe1, 0xa7, 0xbe, 0x84, 0xf6, 0xf0, 0xcc, 0x19, 0x34, 0xfd, 0xae, 0x79, 0x7b, 0x15, 0x3d, + 0xf6, 0x7f, 0x7f, 0x69, 0xde, 0x9e, 0x1b, 0x79, 0xea, 0xac, 0x12, 0x5b, 0x79, 0xc3, 0x1f, 0xf9, + 0x64, 0xc1, 0x52, 0x84, 0xdf, 0x4c, 0x1c, 0x3a, 0x4b, 0xba, 0x11, 0x30, 0x4f, 0x30, 0x4f, 0x30, + 0x4f, 0x30, 0x4f, 0x30, 0x4f, 0x4e, 0xe6, 0xd9, 0xb7, 0xec, 0x4e, 0x27, 0x14, 0x52, 0x9a, 0x20, + 0x9e, 0xc7, 0x8c, 0x32, 0xe3, 0x67, 0x9c, 0xfb, 0xca, 0xa7, 0xd7, 0x95, 0xfd, 0x56, 0x35, 0xb0, + 0xb6, 0x4b, 0x6b, 0x7c, 0x64, 0xa6, 0x79, 0x9e, 0x12, 0xa1, 0x6f, 0x84, 0x58, 0x47, 0x37, 0xf0, + 0x9f, 0x77, 0xef, 0xee, 0x4b, 0xd6, 0x71, 0xeb, 0xe5, 0xbe, 0x6c, 0x1d, 0xb7, 0xc6, 0x2f, 0xcb, + 0xd1, 0x5f, 0xe3, 0xd7, 0x95, 0xfb, 0x92, 0x55, 0x9d, 0xbc, 0xae, 0xdd, 0x97, 0xac, 0x5a, 0xeb, + 0xe0, 0xef, 0xbf, 0x3f, 0x1c, 0xfc, 0x38, 0x1c, 0xae, 0xff, 0xc5, 0x7f, 0xf1, 0x13, 0x8a, 0x56, + 0x9e, 0x9b, 0x06, 0x9a, 0xdd, 0xb4, 0x75, 0x6c, 0x5a, 0xb3, 0x9b, 0xd6, 0xb6, 0xba, 0xa7, 0xd6, + 0x6f, 0xad, 0x1f, 0xe5, 0xf7, 0xd5, 0xe1, 0xc9, 0xc1, 0x8f, 0xc6, 0x70, 0xf1, 0xcd, 0x97, 0x55, + 0x1f, 0x2b, 0xbf, 0x6f, 0x0c, 0x4f, 0x12, 0xfe, 0xa5, 0x3e, 0x3c, 0x79, 0xe3, 0x35, 0x6a, 0xc3, + 0x77, 0x4b, 0x1f, 0x1d, 0xbd, 0x5f, 0x49, 0xfa, 0x42, 0x35, 0xe1, 0x0b, 0x87, 0x49, 0x5f, 0x38, + 0x4c, 0xf8, 0x42, 0xe2, 0x2d, 0x55, 0x12, 0xbe, 0x50, 0x1b, 0xbe, 0x2c, 0x7d, 0xfe, 0xdd, 0xea, + 0x8f, 0xd6, 0x87, 0x07, 0x2f, 0x49, 0xff, 0xd6, 0x18, 0xbe, 0x9c, 0x1c, 0xec, 0x80, 0x09, 0x43, + 0xbd, 0x5e, 0x1a, 0x63, 0x22, 0xa1, 0xe8, 0x8a, 0x50, 0xf8, 0x8e, 0x81, 0xaa, 0xbd, 0x19, 0xd9, + 0x88, 0x7c, 0x20, 0xf2, 0x81, 0xc8, 0x07, 0x22, 0x1f, 0x88, 0x7c, 0x30, 0xee, 0x58, 0x1c, 0xf7, + 0xca, 0x11, 0x7f, 0xc2, 0x71, 0x2f, 0xf2, 0x9e, 0xa7, 0x89, 0xf2, 0x71, 0xdc, 0x6b, 0x67, 0x55, + 0xae, 0x52, 0xab, 0xe1, 0xc0, 0x17, 0x08, 0xe4, 0xee, 0x12, 0xc8, 0x50, 0xa8, 0xf0, 0xd9, 0x52, + 0x6e, 0xcf, 0x44, 0x22, 0x7d, 0x56, 0x38, 0x28, 0x64, 0x1e, 0x28, 0x24, 0x3a, 0x86, 0xec, 0x28, + 0x85, 0x44, 0xc7, 0x90, 0xac, 0x52, 0xc8, 0x72, 0xdd, 0x00, 0x87, 0xac, 0x83, 0x43, 0x82, 0x43, + 0x82, 0x43, 0x82, 0x43, 0xe6, 0x40, 0xe5, 0xea, 0xa5, 0x12, 0x38, 0x24, 0x38, 0xe4, 0xee, 0x72, + 0x48, 0x29, 0xd4, 0xa0, 0x6f, 0xb0, 0xdd, 0xe5, 0x82, 0x7c, 0xfe, 0xc3, 0xc8, 0x0d, 0xb0, 0x57, + 0xb0, 0x57, 0xb0, 0x57, 0xb0, 0x57, 0xb0, 0x57, 0x6e, 0xf6, 0x8a, 0x04, 0x28, 0xc8, 0x6b, 0x6e, + 0x98, 0x04, 0xfa, 0x5d, 0x82, 0xbc, 0x32, 0xab, 0x1c, 0xfa, 0x5d, 0x82, 0xba, 0xee, 0x30, 0x75, + 0x1d, 0x48, 0x61, 0x39, 0xb2, 0xdf, 0xe5, 0x27, 0xad, 0x53, 0xc9, 0xa0, 0x8e, 0x79, 0xa0, 0x8e, + 0xa8, 0x9d, 0xdd, 0x51, 0xea, 0x88, 0xda, 0xd9, 0x2c, 0x52, 0xc7, 0x87, 0x20, 0xf0, 0x84, 0xed, + 0x9b, 0x38, 0x32, 0x5c, 0xce, 0x8b, 0x7b, 0xce, 0xf4, 0x88, 0xec, 0x53, 0xdf, 0x0f, 0xc6, 0xdd, + 0x3b, 0x78, 0x26, 0x65, 0x4b, 0xe7, 0x49, 0xf4, 0xec, 0x7e, 0x3c, 0x94, 0xab, 0x18, 0xf4, 0x85, + 0x3f, 0x9e, 0xad, 0x65, 0xf9, 0x42, 0xfd, 0x13, 0x84, 0x5f, 0x2d, 0xd7, 0x97, 0xca, 0xf6, 0x1d, + 0x51, 0x5c, 0x7c, 0x43, 0x2e, 0xbd, 0x53, 0x1c, 0x19, 0x9d, 0xa2, 0x27, 0xfb, 0xb2, 0xe8, 0x04, + 0xbe, 0x54, 0xa1, 0xed, 0xfa, 0xa2, 0x33, 0x9e, 0xd8, 0xa5, 0x06, 0xbe, 0x2f, 0x3c, 0x19, 0xff, + 0x5d, 0xec, 0x57, 0xfa, 0xd6, 0xf8, 0xa5, 0x65, 0x2b, 0x15, 0xba, 0x0f, 0x03, 0x25, 0x64, 0xf4, + 0xae, 0x14, 0x4e, 0xe0, 0x77, 0xec, 0xf0, 0x39, 0x1e, 0xff, 0xb5, 0xfc, 0x5e, 0x3c, 0xfd, 0x8b, + 0xd6, 0xba, 0xd1, 0xa9, 0x11, 0xa1, 0x0a, 0xf1, 0xf4, 0x49, 0xe7, 0xec, 0x8f, 0xce, 0x84, 0x0f, + 0xd9, 0x70, 0x21, 0x27, 0x1e, 0x34, 0x80, 0x03, 0xb9, 0xf1, 0x9f, 0x31, 0xdc, 0x67, 0x0c, 0xef, + 0x99, 0xc1, 0x79, 0xd9, 0x76, 0xaa, 0x6c, 0x78, 0xce, 0xc0, 0x30, 0x4f, 0xce, 0x21, 0x9e, 0xb3, + 0xc3, 0x3b, 0xd9, 0x26, 0x70, 0x66, 0xd3, 0x11, 0x4b, 0x65, 0x2b, 0x46, 0x4f, 0x3c, 0x16, 0xc7, + 0xe3, 0x8a, 0xcb, 0x5c, 0xae, 0xb8, 0x02, 0x57, 0x0c, 0x57, 0x0c, 0x57, 0x9c, 0x2b, 0x57, 0x7c, + 0xe6, 0xf2, 0x9c, 0xe7, 0x29, 0xd8, 0x52, 0x06, 0x8e, 0x6b, 0x2b, 0xd1, 0x89, 0xaa, 0x28, 0x2c, + 0x29, 0xa4, 0x74, 0x03, 0x5f, 0xf2, 0x47, 0xd4, 0x13, 0xef, 0x04, 0x11, 0xf6, 0xac, 0x99, 0x71, + 0x83, 0xe6, 0xdc, 0x94, 0x59, 0x37, 0x6e, 0xde, 0x8d, 0x9b, 0x79, 0xb3, 0xe6, 0x9e, 0xc7, 0xec, + 0x33, 0x99, 0x7f, 0x7e, 0x46, 0x66, 0x90, 0x99, 0x99, 0x60, 0x68, 0xab, 0x98, 0x5a, 0xd2, 0xff, + 0xa4, 0xfb, 0xe8, 0xdb, 0x9e, 0xeb, 0x3f, 0x5a, 0xfd, 0x30, 0x50, 0x81, 0x13, 0x78, 0xb2, 0x18, + 0x39, 0x28, 0x25, 0x8a, 0x13, 0x1f, 0x35, 0x79, 0x51, 0xf4, 0x02, 0xc7, 0xf6, 0x2c, 0xd7, 0xef, + 0x88, 0xef, 0x85, 0x5c, 0x69, 0xe2, 0x85, 0x2b, 0xd5, 0xa9, 0x52, 0x21, 0xaf, 0x36, 0x5e, 0xba, + 0x7e, 0xd3, 0x13, 0x23, 0x63, 0x32, 0x02, 0x24, 0xfe, 0xc0, 0xf3, 0x18, 0x75, 0xe3, 0xd2, 0xfe, + 0x6e, 0x4e, 0xf8, 0x75, 0xd8, 0x11, 0xa1, 0xe8, 0x7c, 0x7c, 0x8e, 0x45, 0xa3, 0x28, 0xe4, 0xcd, + 0x8f, 0xce, 0x91, 0xfd, 0xae, 0xd5, 0x13, 0x2a, 0x74, 0x1d, 0x7e, 0x14, 0x3b, 0x2b, 0x1c, 0xc0, + 0x15, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x95, 0x71, 0xc7, 0x0e, 0x5c, 0x5f, 0xd5, 0xab, + 0x06, 0x70, 0xeb, 0x11, 0x8e, 0x15, 0x90, 0x00, 0x40, 0x1c, 0x2b, 0xc0, 0xb1, 0x02, 0x56, 0x95, + 0xc3, 0xb1, 0x82, 0xfd, 0xf2, 0x51, 0xb5, 0x5a, 0x6f, 0x54, 0xab, 0xa5, 0xc6, 0x61, 0xa3, 0x74, + 0x5c, 0xab, 0x95, 0xeb, 0x65, 0x34, 0x5a, 0xcb, 0x9d, 0x34, 0x9c, 0x34, 0x58, 0x93, 0x54, 0x2a, + 0x57, 0x3c, 0x84, 0xc2, 0xfe, 0x6a, 0xa2, 0xd9, 0xda, 0xe2, 0x0d, 0x80, 0x5c, 0x82, 0x5c, 0x82, + 0x5c, 0x82, 0x5c, 0x82, 0x5c, 0x1a, 0x30, 0xc2, 0x56, 0x64, 0x85, 0x5d, 0xff, 0xd1, 0x44, 0x7e, + 0xa4, 0xca, 0x28, 0xb3, 0xe9, 0x0f, 0x7a, 0xa3, 0x47, 0xcd, 0x08, 0xc4, 0x67, 0x3b, 0xb3, 0xdc, + 0x9e, 0x5e, 0x9d, 0x5d, 0x5f, 0x16, 0x80, 0x53, 0xde, 0xfc, 0xf0, 0xc4, 0xf7, 0xbe, 0xe7, 0x3a, + 0xae, 0x8a, 0x4e, 0x00, 0x58, 0x2c, 0x75, 0xee, 0x4b, 0xbb, 0x64, 0xc5, 0x3d, 0x00, 0xad, 0x00, + 0xad, 0x00, 0xad, 0x00, 0xad, 0x00, 0xad, 0x30, 0xee, 0x58, 0xd4, 0x70, 0x7c, 0x88, 0x0a, 0xef, + 0x3b, 0xd6, 0x9c, 0x47, 0x92, 0xab, 0xde, 0xe4, 0x2b, 0xd4, 0xcf, 0x17, 0xde, 0x78, 0x0a, 0xbc, + 0x8e, 0xc1, 0xde, 0x81, 0xf3, 0xe2, 0xf9, 0x5b, 0x07, 0x96, 0x80, 0x6c, 0x72, 0x81, 0x6c, 0xd0, + 0x3a, 0x70, 0x47, 0x91, 0x0d, 0x5a, 0x07, 0x66, 0x11, 0xd9, 0xa0, 0x75, 0x20, 0xd5, 0x1f, 0xe4, + 0xf8, 0x59, 0xc5, 0x23, 0xc7, 0x8f, 0x1c, 0xbf, 0x21, 0x95, 0x43, 0xeb, 0xc0, 0xdc, 0x49, 0x43, + 0x42, 0xff, 0xed, 0x6a, 0x68, 0x26, 0x34, 0x8e, 0x60, 0x78, 0x6e, 0x28, 0x23, 0x82, 0xe1, 0x3b, + 0x4a, 0x19, 0x11, 0x0c, 0xcf, 0x22, 0x65, 0x94, 0x2a, 0x34, 0x94, 0xaf, 0x3f, 0x82, 0x57, 0x7e, + 0xf3, 0x33, 0x8b, 0x32, 0xc6, 0x4e, 0xd0, 0xeb, 0x0f, 0xc6, 0xdd, 0xfd, 0xac, 0x9e, 0x50, 0x4f, + 0x41, 0x87, 0xdf, 0x51, 0x27, 0xdd, 0x08, 0x7f, 0x88, 0x39, 0xb6, 0x38, 0xea, 0xe4, 0xe2, 0xfa, + 0xd3, 0xe9, 0xc5, 0xc5, 0x5f, 0xed, 0x4f, 0xd7, 0x97, 0x37, 0x5f, 0xee, 0x9a, 0x67, 0xc0, 0x11, + 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0x9c, 0x3b, 0xd6, 0xed, 0x08, 0x5f, 0xb9, 0xea, + 0xd9, 0x50, 0x62, 0x9d, 0x33, 0x02, 0x7d, 0x1e, 0xff, 0xd4, 0x8f, 0xb6, 0x34, 0x60, 0x2f, 0x26, + 0x0f, 0xfc, 0xe6, 0xf4, 0xee, 0x8f, 0xd8, 0xe7, 0x9d, 0xde, 0x9d, 0x5f, 0x5f, 0xb5, 0x2f, 0x9b, + 0x77, 0x7f, 0x5c, 0x9f, 0x71, 0x5b, 0x8f, 0x28, 0x6c, 0x26, 0xd9, 0xe3, 0xf1, 0xfb, 0x46, 0x62, + 0xf2, 0x73, 0x0b, 0xd0, 0xfc, 0x9f, 0x9b, 0x8b, 0xf3, 0x4f, 0xe7, 0x77, 0x17, 0x7f, 0xb5, 0xcf, + 0x9a, 0xbf, 0x9d, 0x5f, 0x35, 0xcf, 0x0a, 0xbb, 0x10, 0x24, 0x36, 0xfc, 0xd4, 0x97, 0xd0, 0x1e, + 0x9e, 0x39, 0x83, 0xa6, 0xdf, 0x35, 0x6f, 0xaf, 0xa2, 0xc7, 0xfe, 0xef, 0x2f, 0xcd, 0xdb, 0x73, + 0x23, 0x4f, 0x9d, 0x55, 0x62, 0x2b, 0x6f, 0xf8, 0x23, 0x9f, 0x2c, 0x58, 0x8a, 0xf0, 0x9b, 0x89, + 0x43, 0x67, 0x49, 0x37, 0x02, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0xc9, 0xc9, + 0x3c, 0xfb, 0x96, 0xdd, 0xe9, 0x84, 0x42, 0x4a, 0x13, 0xc4, 0xf3, 0x98, 0x51, 0x66, 0xfc, 0x8c, + 0x73, 0x5f, 0xf9, 0xf4, 0xba, 0xb2, 0xdf, 0xaa, 0x06, 0xd6, 0x76, 0x69, 0x8d, 0x8f, 0x0c, 0xc8, + 0xbe, 0xb1, 0x95, 0x12, 0xa1, 0x6f, 0x84, 0x58, 0x47, 0x37, 0xf0, 0x9f, 0x77, 0xef, 0xee, 0x4b, + 0xd6, 0x71, 0xeb, 0xe5, 0xbe, 0x6c, 0x1d, 0xb7, 0xc6, 0x2f, 0xcb, 0xd1, 0x5f, 0xe3, 0xd7, 0x95, + 0xfb, 0x92, 0x55, 0x9d, 0xbc, 0xae, 0xdd, 0x97, 0xac, 0x5a, 0xeb, 0xe0, 0xef, 0xbf, 0x3f, 0x1c, + 0xfc, 0x38, 0x1c, 0xae, 0xff, 0xc5, 0x7f, 0xf1, 0x13, 0x8a, 0xd6, 0x5e, 0x8e, 0x49, 0xa3, 0xd9, + 0x4d, 0x5b, 0xc7, 0xa6, 0x35, 0xbb, 0x69, 0x6d, 0xab, 0x7b, 0x6a, 0xfd, 0xd6, 0xfa, 0x51, 0x7e, + 0x5f, 0x1d, 0x9e, 0x1c, 0xfc, 0x68, 0x0c, 0x17, 0xdf, 0x7c, 0x59, 0xf5, 0xb1, 0xf2, 0xfb, 0xc6, + 0xf0, 0x24, 0xe1, 0x5f, 0xea, 0xc3, 0x93, 0x37, 0x5e, 0xa3, 0x36, 0x7c, 0xb7, 0xf4, 0xd1, 0xd1, + 0xfb, 0x95, 0xa4, 0x2f, 0x54, 0x13, 0xbe, 0x70, 0x98, 0xf4, 0x85, 0xc3, 0x84, 0x2f, 0x24, 0xde, + 0x52, 0x25, 0xe1, 0x0b, 0xb5, 0xe1, 0xcb, 0xd2, 0xe7, 0xdf, 0xad, 0xfe, 0x68, 0x7d, 0x78, 0xf0, + 0x92, 0xf4, 0x6f, 0x8d, 0xe1, 0xcb, 0xc9, 0xc1, 0x0e, 0x98, 0x30, 0xd4, 0xeb, 0xa5, 0x31, 0x26, + 0x12, 0x8a, 0xae, 0x08, 0x85, 0xef, 0x18, 0xa8, 0xda, 0x9b, 0x91, 0x8d, 0xc8, 0x07, 0x22, 0x1f, + 0x88, 0x7c, 0x20, 0xf2, 0x81, 0xc8, 0x07, 0xe3, 0x8e, 0xc5, 0x71, 0xaf, 0x1c, 0xf1, 0x27, 0x1c, + 0xf7, 0x22, 0x9f, 0x0d, 0x97, 0x28, 0x1f, 0xc7, 0xbd, 0x76, 0x56, 0xe5, 0x2a, 0x35, 0x74, 0x70, + 0x05, 0x81, 0xdc, 0x61, 0x02, 0x19, 0x0a, 0x15, 0x3e, 0x5b, 0xca, 0xed, 0x99, 0x48, 0xa4, 0xcf, + 0x0a, 0x07, 0x85, 0xcc, 0x03, 0x85, 0x44, 0xc7, 0x90, 0x1d, 0xa5, 0x90, 0xe8, 0x18, 0x92, 0x55, + 0x0a, 0x59, 0xae, 0x1b, 0xe0, 0x90, 0x75, 0x70, 0x48, 0x70, 0x48, 0x70, 0x48, 0x70, 0xc8, 0x1c, + 0xa8, 0x5c, 0xbd, 0x54, 0x02, 0x87, 0x04, 0x87, 0xdc, 0x5d, 0x0e, 0x29, 0x85, 0x1a, 0xf4, 0x0d, + 0xb6, 0xbb, 0x5c, 0x90, 0xcf, 0x7f, 0x18, 0xb9, 0x01, 0xf6, 0x0a, 0xf6, 0x0a, 0xf6, 0x0a, 0xf6, + 0x0a, 0xf6, 0xca, 0xcd, 0x5e, 0x91, 0x00, 0x05, 0x79, 0xcd, 0x0d, 0x93, 0x40, 0xbf, 0x4b, 0x90, + 0x57, 0x66, 0x95, 0x43, 0xbf, 0x4b, 0x50, 0xd7, 0x5d, 0xa6, 0xae, 0xfd, 0xae, 0xd5, 0x13, 0x2a, + 0x74, 0x1d, 0x03, 0xb4, 0xf5, 0x55, 0x36, 0xe8, 0x63, 0x1e, 0xe8, 0x23, 0xea, 0x67, 0x77, 0x94, + 0x3e, 0xa2, 0x7e, 0x36, 0xab, 0xf4, 0xb1, 0x5e, 0x35, 0xc0, 0x1f, 0x8f, 0xc0, 0x1f, 0xc1, 0x1f, + 0xc1, 0x1f, 0xc1, 0x1f, 0x73, 0xa0, 0x72, 0xe5, 0xa3, 0x6a, 0xb5, 0xde, 0xa8, 0x56, 0x4b, 0x8d, + 0xc3, 0x46, 0xe9, 0xb8, 0x56, 0x2b, 0xd7, 0xcb, 0xa8, 0xa8, 0x05, 0xa5, 0xdc, 0x61, 0x4a, 0x39, + 0x90, 0xc2, 0x72, 0x64, 0xbf, 0xcb, 0x4f, 0x28, 0xa7, 0x92, 0x41, 0x27, 0x41, 0x27, 0x41, 0x27, + 0x41, 0x27, 0x41, 0x27, 0x19, 0x77, 0xec, 0x43, 0x10, 0x78, 0xc2, 0xf6, 0x4d, 0x74, 0xa1, 0x2a, + 0xe7, 0xc5, 0x3d, 0xef, 0x65, 0x58, 0x05, 0x0b, 0xa7, 0xbe, 0x1f, 0x8c, 0x1b, 0x42, 0xb2, 0x28, + 0x60, 0x41, 0x3a, 0x4f, 0xa2, 0x67, 0xf7, 0xe3, 0x39, 0xcf, 0xc5, 0xa0, 0x2f, 0xfc, 0xf1, 0xb8, + 0x66, 0xcb, 0x17, 0xea, 0x9f, 0x20, 0xfc, 0x6a, 0xb9, 0xbe, 0x54, 0xb6, 0xef, 0x88, 0xe2, 0xe2, + 0x1b, 0x72, 0xe9, 0x9d, 0xe2, 0xc8, 0xe8, 0x14, 0x3d, 0xd9, 0x97, 0x45, 0x27, 0xf0, 0xa5, 0x0a, + 0x6d, 0xd7, 0x17, 0x9d, 0xf1, 0x10, 0x68, 0x35, 0xf0, 0x7d, 0xe1, 0xc9, 0xf8, 0xef, 0x62, 0xbf, + 0xd2, 0xb7, 0xc6, 0x2f, 0x2d, 0x5b, 0xa9, 0xd0, 0x7d, 0x18, 0x28, 0x21, 0xa3, 0x77, 0xa5, 0x70, + 0x02, 0xbf, 0x63, 0x87, 0xcf, 0xf1, 0x44, 0xe9, 0xe5, 0xf7, 0x8a, 0x52, 0xd9, 0x8a, 0x78, 0x94, + 0x34, 0x9d, 0x16, 0xd1, 0x5c, 0x99, 0x48, 0x2f, 0x47, 0x7e, 0x95, 0x78, 0xb8, 0x56, 0xe1, 0xc2, + 0x95, 0xea, 0x54, 0x29, 0xda, 0xa3, 0x63, 0x85, 0x4b, 0xd7, 0x6f, 0x7a, 0x62, 0xe4, 0x20, 0x47, + 0xac, 0xce, 0x1f, 0x78, 0xde, 0xfb, 0x3d, 0x4a, 0x52, 0xcf, 0x27, 0xec, 0x3a, 0xec, 0x88, 0x50, + 0x74, 0x3e, 0x3e, 0xc7, 0xa2, 0x32, 0xa5, 0x5f, 0x4c, 0xf6, 0x2e, 0x93, 0x76, 0x8e, 0x10, 0x05, + 0x14, 0xa4, 0x0a, 0x07, 0x8e, 0x8a, 0x27, 0xf5, 0x15, 0xae, 0xc6, 0x3f, 0xf0, 0x3c, 0xfe, 0x7d, + 0xed, 0xcb, 0xbe, 0x27, 0xdb, 0x17, 0xb2, 0x2f, 0xdb, 0x9f, 0x5e, 0x7f, 0xdf, 0x8d, 0xad, 0x9e, + 0xda, 0x77, 0xd1, 0x6f, 0x69, 0xdf, 0x54, 0x6e, 0xc6, 0xaf, 0x4e, 0xa7, 0x3f, 0x6a, 0xf4, 0xde, + 0xe7, 0xc9, 0xfd, 0x8f, 0x3e, 0x4b, 0x63, 0xa0, 0xf5, 0x9b, 0x4f, 0xbd, 0x57, 0xd4, 0xbc, 0x51, + 0xa8, 0x37, 0x48, 0xfa, 0x37, 0x86, 0x5e, 0x35, 0xd2, 0xb7, 0xd8, 0x1a, 0x17, 0xba, 0x30, 0x06, + 0x34, 0xba, 0xd7, 0x77, 0x66, 0x40, 0xdb, 0xe8, 0xf2, 0x9a, 0x15, 0x73, 0xc2, 0x1b, 0x34, 0x5f, + 0x76, 0x1a, 0xa0, 0xa9, 0x68, 0xbe, 0x30, 0x61, 0x20, 0x86, 0x21, 0xe0, 0x42, 0x1d, 0x58, 0x61, + 0x0b, 0xa0, 0xb0, 0x05, 0x4a, 0x78, 0x02, 0x22, 0xe9, 0x76, 0x1e, 0x67, 0x2e, 0x0d, 0xaa, 0x2e, + 0x74, 0x84, 0x54, 0xae, 0x4f, 0x8b, 0xdb, 0xa6, 0xbb, 0x6a, 0x56, 0x18, 0x15, 0xcd, 0x21, 0x8d, + 0x42, 0x93, 0x47, 0x9d, 0x39, 0xa2, 0xcc, 0x8c, 0x51, 0x65, 0xae, 0x28, 0x32, 0x7b, 0xd4, 0x98, + 0x3d, 0x4a, 0xcc, 0x1b, 0x15, 0xce, 0x56, 0x68, 0x83, 0x3c, 0xca, 0xcb, 0x3b, 0x5e, 0x80, 0x63, + 0x9c, 0x00, 0xcf, 0xf8, 0x00, 0x86, 0xb0, 0xa7, 0xa1, 0xf1, 0x00, 0x9c, 0x9d, 0xc5, 0xd9, 0x3b, + 0x89, 0xe7, 0xae, 0xdd, 0x7f, 0x2b, 0xcb, 0x99, 0x04, 0xde, 0x4d, 0x54, 0xc7, 0x26, 0xd2, 0xbb, + 0x89, 0xd0, 0x7e, 0x3f, 0x97, 0xed, 0xf7, 0x5b, 0x19, 0x4d, 0x5a, 0xb5, 0x10, 0xcb, 0xd5, 0x01, + 0xc6, 0x77, 0x2a, 0x96, 0x4b, 0x90, 0xa5, 0xd5, 0x18, 0xbd, 0xdd, 0x4b, 0x91, 0x82, 0x50, 0x29, + 0x46, 0xba, 0x14, 0xa2, 0xa0, 0x35, 0x60, 0xae, 0x3b, 0x7d, 0xa5, 0x47, 0x51, 0xb7, 0x57, 0x2b, + 0x0d, 0x2a, 0xa5, 0x39, 0x9d, 0x40, 0x92, 0x46, 0xd0, 0x9c, 0x3e, 0xd0, 0x9e, 0x36, 0xa0, 0x88, + 0xa8, 0x11, 0x46, 0xd0, 0xa8, 0x22, 0x66, 0xe4, 0x11, 0x32, 0xf2, 0x88, 0x18, 0x6d, 0x04, 0x2c, + 0x5d, 0x6e, 0x44, 0x77, 0xb8, 0xbf, 0x60, 0x77, 0x7a, 0xae, 0x6f, 0x8d, 0xf6, 0xfd, 0x40, 0xd2, + 0xa5, 0x27, 0xe7, 0xa4, 0xe8, 0xce, 0x80, 0xbc, 0x36, 0xd8, 0x8a, 0x17, 0x5f, 0x9d, 0x9c, 0x9e, + 0x5d, 0x9e, 0x5f, 0xb5, 0xbf, 0xdc, 0x10, 0x65, 0x44, 0x4b, 0x54, 0x19, 0xd1, 0x12, 0x32, 0xa2, + 0x0c, 0x26, 0x8f, 0xcd, 0xf4, 0xb1, 0x99, 0x40, 0x1e, 0x53, 0x98, 0x0d, 0x0a, 0x46, 0x16, 0xf4, + 0x7f, 0x8d, 0x86, 0x75, 0x84, 0xaf, 0x5c, 0xf5, 0x1c, 0x0a, 0x8a, 0x33, 0x34, 0x53, 0xdc, 0x44, + 0x70, 0x40, 0xae, 0x70, 0x1e, 0xdf, 0xfa, 0x47, 0x5b, 0x0a, 0xfa, 0xb4, 0xee, 0xdd, 0x97, 0xab, + 0xab, 0xe6, 0x45, 0x7b, 0x6c, 0x8d, 0x3f, 0xdf, 0x9d, 0xde, 0x7d, 0xf9, 0x4c, 0xb5, 0xc3, 0xa2, + 0x83, 0x86, 0x92, 0x34, 0x88, 0x47, 0x9c, 0xa9, 0x9c, 0x3c, 0xb4, 0xf1, 0xd3, 0x3a, 0xbb, 0xfe, + 0xff, 0xae, 0x08, 0xd3, 0x78, 0xef, 0xf3, 0xf1, 0x94, 0xbe, 0xdc, 0x64, 0x2d, 0xd5, 0xd9, 0x4a, + 0xbb, 0x35, 0x4e, 0x65, 0xf5, 0x9c, 0x3d, 0x50, 0x81, 0xf5, 0x28, 0x7c, 0x11, 0xda, 0x4a, 0x74, + 0x08, 0x71, 0xea, 0xbc, 0x1c, 0xa0, 0x47, 0xa0, 0x47, 0xa0, 0x47, 0xa0, 0x47, 0xad, 0x1a, 0x4f, + 0x77, 0x00, 0x90, 0xe8, 0xa0, 0x5f, 0x3a, 0x5d, 0x82, 0x13, 0x0c, 0x7c, 0x25, 0x42, 0xc2, 0xa0, + 0xc5, 0x54, 0x42, 0xc6, 0xca, 0xaa, 0xe1, 0x06, 0xe0, 0x06, 0xe0, 0x06, 0xb6, 0x7b, 0x04, 0x64, + 0x65, 0xd5, 0x0f, 0xcf, 0x4a, 0x48, 0x7a, 0xe6, 0x3d, 0x16, 0x83, 0x52, 0x6a, 0x6e, 0x83, 0xc6, + 0x68, 0xd8, 0xb8, 0x0c, 0x1c, 0xbb, 0xa1, 0x63, 0x37, 0x78, 0xbc, 0x86, 0x8f, 0x36, 0xbe, 0x90, + 0xfd, 0x52, 0xea, 0x18, 0x76, 0x91, 0xb6, 0x5c, 0x64, 0x68, 0xb1, 0xc8, 0xd4, 0x52, 0x91, 0xa1, + 0x08, 0x94, 0xb3, 0x65, 0x22, 0x77, 0xb3, 0x28, 0xe6, 0x96, 0x88, 0x26, 0x9a, 0xcf, 0x71, 0x34, + 0x33, 0xe3, 0x6c, 0x71, 0x68, 0x4a, 0x45, 0xcc, 0xb5, 0x30, 0x34, 0xa2, 0x35, 0x28, 0x63, 0x25, + 0xbd, 0x5f, 0x82, 0x5d, 0x59, 0x70, 0x06, 0x61, 0x28, 0x7c, 0x15, 0xd5, 0xeb, 0x45, 0xe3, 0xb2, + 0xe9, 0x79, 0xc6, 0xb2, 0x48, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x8e, 0x4c, 0x71, 0x8e, + 0x91, 0xe5, 0x52, 0xae, 0xf3, 0x55, 0x66, 0x9e, 0x75, 0x7c, 0xf1, 0xc7, 0x08, 0xa1, 0xe0, 0xdb, + 0x7e, 0x30, 0xee, 0xb3, 0x42, 0x6a, 0x08, 0xc0, 0x72, 0xc0, 0x72, 0xc0, 0x72, 0xc0, 0x72, 0xc0, + 0x72, 0xc0, 0x72, 0x78, 0x58, 0x8e, 0x2f, 0xbe, 0x2b, 0x2b, 0x14, 0x41, 0x5f, 0xb9, 0x3d, 0xf7, + 0xff, 0xa2, 0x23, 0x55, 0x4c, 0x64, 0x27, 0x51, 0x32, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, + 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, + 0x8f, 0x36, 0x35, 0x09, 0x7c, 0xcf, 0xf5, 0x05, 0x13, 0xcd, 0x99, 0x15, 0x06, 0x66, 0x03, 0x66, + 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, 0x03, 0x66, + 0x03, 0x66, 0x03, 0x66, 0xa3, 0x4d, 0x4d, 0xfa, 0xb6, 0xf3, 0x55, 0x28, 0x86, 0x13, 0x31, 0x13, + 0x41, 0x60, 0x34, 0x60, 0x34, 0x60, 0x34, 0x60, 0x34, 0x99, 0x62, 0x34, 0x38, 0x13, 0x03, 0x7e, + 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7e, 0xb1, 0x1e, 0xbf, 0x50, 0x4f, 0x96, + 0xf3, 0x34, 0xf2, 0x3b, 0x2c, 0x24, 0x63, 0x46, 0x1a, 0x98, 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, + 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, 0x06, 0x98, 0x46, 0x6e, + 0x99, 0x46, 0x34, 0x3b, 0x85, 0x8f, 0x6a, 0xcc, 0x8b, 0x03, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, + 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x00, 0xd7, 0x48, + 0x07, 0xd7, 0xc0, 0xc0, 0x5a, 0x03, 0xf3, 0x49, 0x23, 0x7a, 0x54, 0x24, 0x6a, 0xe1, 0xbe, 0xaf, + 0x61, 0x40, 0xe9, 0xa7, 0xc9, 0xad, 0xed, 0x40, 0xaf, 0xfe, 0x8e, 0x90, 0x4e, 0xe8, 0xf6, 0x49, + 0xb4, 0x6c, 0x8a, 0x26, 0x67, 0x85, 0x60, 0x70, 0x0b, 0x3a, 0xf6, 0x9b, 0xa7, 0xb7, 0xe8, 0xd8, + 0xcf, 0xe8, 0xc8, 0xe8, 0x07, 0xb7, 0x48, 0x15, 0xba, 0xfe, 0x23, 0xe5, 0xdc, 0x96, 0xa3, 0x1d, + 0xf0, 0x05, 0x4f, 0x81, 0xd7, 0xb1, 0xfa, 0xa1, 0x1b, 0x84, 0xae, 0x7a, 0xa6, 0xf3, 0x06, 0xf3, + 0x62, 0xe8, 0x46, 0xce, 0x96, 0xe0, 0x6b, 0x58, 0x7c, 0x4d, 0x28, 0xbf, 0xf5, 0xe1, 0x6b, 0x52, + 0xe8, 0x6b, 0xa2, 0x85, 0x81, 0xaf, 0xd1, 0xac, 0xf1, 0x03, 0xd7, 0x57, 0x47, 0x84, 0xae, 0x86, + 0x62, 0xb6, 0x2c, 0x6d, 0x18, 0x94, 0x30, 0x1e, 0xcd, 0x11, 0xf6, 0x64, 0x8a, 0x65, 0x71, 0x85, + 0x39, 0x39, 0x03, 0x55, 0x84, 0x61, 0x4d, 0x96, 0x70, 0x26, 0xf7, 0xd2, 0x37, 0x72, 0xb4, 0xf4, + 0x19, 0x89, 0xf1, 0xb5, 0x76, 0x00, 0xb8, 0xf7, 0x84, 0x0a, 0x5d, 0x87, 0x0e, 0xb1, 0xc7, 0xd7, + 0x07, 0x9c, 0x46, 0xe8, 0x06, 0xa1, 0x1b, 0xc0, 0x69, 0xad, 0x1a, 0xef, 0xfa, 0xea, 0xb0, 0x42, + 0x08, 0xa7, 0x0f, 0x01, 0xa7, 0xcd, 0xc0, 0xe9, 0x32, 0x13, 0xa6, 0xaa, 0x94, 0xab, 0x8d, 0xea, + 0xd1, 0x61, 0xbd, 0x7a, 0x04, 0x5c, 0xbd, 0xab, 0xb8, 0x7a, 0xaa, 0x03, 0x00, 0xd8, 0x00, 0xd8, + 0x64, 0x00, 0xdb, 0x52, 0x14, 0xde, 0x70, 0x01, 0x65, 0x8f, 0x85, 0xd0, 0x45, 0xc5, 0x63, 0x20, + 0xa3, 0x4e, 0x2e, 0x3e, 0xdf, 0xb4, 0x2f, 0x9b, 0x77, 0xb7, 0xe7, 0x9f, 0xda, 0xe7, 0x57, 0x7f, + 0x34, 0x6f, 0xcf, 0xef, 0x9a, 0x67, 0x80, 0xf8, 0x80, 0xf8, 0x80, 0xf8, 0x80, 0xf8, 0x9a, 0x21, + 0x7e, 0x47, 0xf8, 0xca, 0x55, 0xcf, 0xa1, 0xe8, 0x52, 0xa6, 0x68, 0x29, 0x02, 0xe7, 0xe7, 0xf1, + 0xad, 0x7f, 0xb4, 0x25, 0x43, 0x7b, 0xdf, 0x19, 0x93, 0x7c, 0xf7, 0xd7, 0x4d, 0x93, 0x6a, 0x77, + 0x45, 0xa8, 0x49, 0x92, 0x56, 0x45, 0x13, 0xc3, 0xcb, 0x15, 0x0f, 0xec, 0xb6, 0x79, 0x71, 0x7a, + 0x77, 0xfe, 0xdf, 0xcd, 0x42, 0x16, 0x41, 0x39, 0xff, 0xe3, 0x7a, 0x75, 0xf9, 0x78, 0x5e, 0x6f, + 0x79, 0x5e, 0xa7, 0x1f, 0x3f, 0x5f, 0x5f, 0x7c, 0xb9, 0x6b, 0x66, 0xed, 0x28, 0x4a, 0x2b, 0xed, + 0xde, 0x2c, 0x95, 0x78, 0x3f, 0x2e, 0x1d, 0x25, 0x02, 0xfa, 0xd1, 0xd5, 0x81, 0xb4, 0x81, 0xb4, + 0x81, 0xb4, 0x81, 0xb4, 0xb5, 0x6a, 0x3c, 0xea, 0x20, 0x75, 0xfc, 0xd6, 0xa0, 0x2f, 0x42, 0x4b, + 0x2a, 0x5b, 0x0d, 0x24, 0x9d, 0x13, 0x98, 0x15, 0x02, 0x5f, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5f, + 0x80, 0xa8, 0x8b, 0xa9, 0xa8, 0xcb, 0xf5, 0x4d, 0xf3, 0xb6, 0xfd, 0xf9, 0xee, 0xf4, 0xee, 0xcb, + 0x67, 0x44, 0x5d, 0x7e, 0xf5, 0xc0, 0xce, 0xae, 0xff, 0xbf, 0x2b, 0x84, 0x0d, 0x92, 0x9f, 0xcf, + 0x97, 0x1b, 0x44, 0x09, 0x76, 0x21, 0x4a, 0x30, 0xf2, 0xc6, 0x22, 0x14, 0xbe, 0x43, 0x18, 0x2b, + 0x98, 0x91, 0x01, 0x94, 0x08, 0x94, 0x08, 0x94, 0x08, 0x94, 0xa8, 0x55, 0xe3, 0x71, 0x9a, 0x85, + 0x0f, 0x24, 0xe4, 0xf2, 0x34, 0x4b, 0x19, 0x55, 0x77, 0x6f, 0x5a, 0xfa, 0x3c, 0x56, 0xdd, 0xd5, + 0x6a, 0x28, 0xb7, 0xe3, 0xbe, 0x6a, 0x6b, 0x27, 0x80, 0x75, 0xa0, 0x44, 0xb4, 0xf0, 0x96, 0x54, + 0xcf, 0x9e, 0xb0, 0x42, 0xf1, 0xbf, 0x03, 0x21, 0x95, 0xe8, 0x50, 0x02, 0xed, 0x44, 0x99, 0x0c, + 0xc5, 0x78, 0x5f, 0xae, 0x6e, 0x6e, 0xaf, 0xef, 0x9a, 0x9f, 0x50, 0x83, 0x07, 0x9c, 0x0f, 0x9c, + 0x0f, 0x9c, 0xaf, 0x5d, 0xe3, 0x11, 0x0d, 0x7e, 0xe3, 0x83, 0x8a, 0xed, 0xf0, 0xf9, 0xf5, 0x15, + 0x6a, 0xf0, 0xde, 0xf4, 0xc0, 0x66, 0x5d, 0x17, 0x82, 0xc2, 0x89, 0x8f, 0xe9, 0xe2, 0xfc, 0xea, + 0xcf, 0xf6, 0x8c, 0x72, 0xdd, 0x36, 0xff, 0xfd, 0xe5, 0xfc, 0x16, 0xcf, 0xec, 0x97, 0xcf, 0xec, + 0xea, 0xfa, 0xac, 0xb9, 0xf8, 0xe0, 0x9a, 0x9f, 0x69, 0xb5, 0x0d, 0x41, 0xf6, 0xd4, 0x70, 0x81, + 0x50, 0x04, 0x7d, 0xe5, 0xf6, 0xdc, 0xff, 0x13, 0x96, 0x72, 0x7b, 0x22, 0xa4, 0x63, 0x00, 0x4b, + 0x92, 0x00, 0xc4, 0x01, 0xc4, 0x01, 0xc4, 0x01, 0xc4, 0xb5, 0x6a, 0xfc, 0xc0, 0xf5, 0x55, 0xb9, + 0x4e, 0x88, 0xc1, 0xeb, 0x88, 0xb8, 0xbf, 0xde, 0x38, 0xfa, 0x47, 0xad, 0x2f, 0x07, 0x11, 0xf7, + 0xd4, 0x2e, 0x7d, 0xbd, 0x56, 0x3b, 0x44, 0xcc, 0x9d, 0xfd, 0xaa, 0xbb, 0x10, 0x73, 0x0f, 0x03, + 0x8f, 0xb0, 0x8c, 0x25, 0xba, 0x3a, 0xf0, 0x34, 0xf0, 0x34, 0xf0, 0x34, 0xf0, 0xb4, 0x56, 0x8d, + 0x47, 0x60, 0xfb, 0x8d, 0x0f, 0xea, 0xe2, 0xf3, 0x4d, 0xfb, 0xf6, 0xfa, 0x02, 0x11, 0xed, 0x5f, + 0x3e, 0xa9, 0xe6, 0xef, 0xb7, 0xcd, 0xcf, 0x9f, 0x11, 0x98, 0x4d, 0x7e, 0x42, 0x77, 0xb7, 0xa7, + 0x57, 0x9f, 0xcf, 0xef, 0xf0, 0x88, 0x92, 0x1f, 0xd1, 0xf9, 0x15, 0xb5, 0x16, 0x21, 0x48, 0x9d, + 0x1a, 0xf0, 0x2c, 0x85, 0x1a, 0xf4, 0x19, 0x46, 0x27, 0x2c, 0xc8, 0xa1, 0x2b, 0x4c, 0x69, 0x00, + 0xac, 0x63, 0x76, 0xc2, 0x2e, 0x83, 0x75, 0xcc, 0x4e, 0xa0, 0xd0, 0x78, 0x54, 0x9b, 0xf3, 0xa1, + 0x11, 0xc4, 0xbe, 0x37, 0x90, 0x83, 0xd8, 0x77, 0x6a, 0x97, 0x1e, 0xad, 0x5d, 0xd9, 0xaf, 0xba, + 0x0b, 0x71, 0x6f, 0xf9, 0x14, 0x84, 0xca, 0x19, 0x28, 0x4b, 0x78, 0xee, 0xa3, 0xfb, 0x40, 0x19, + 0x04, 0x5f, 0x16, 0x45, 0x07, 0xe0, 0x47, 0x48, 0x09, 0x18, 0x1e, 0x01, 0xf7, 0x5d, 0xc6, 0xf0, + 0x08, 0xb8, 0x53, 0x68, 0xfc, 0x43, 0x10, 0x78, 0xc2, 0xf6, 0x29, 0x83, 0xed, 0xe5, 0x5d, 0xf0, + 0x3b, 0xee, 0xa3, 0x6f, 0x7b, 0xae, 0xff, 0x68, 0xf5, 0xc3, 0x40, 0x05, 0x4e, 0xe0, 0x11, 0x3a, + 0x9e, 0x65, 0x59, 0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x5a, 0x35, 0x1e, 0xb9, 0xd8, + 0x37, 0x3e, 0xa8, 0x9b, 0xd3, 0xbb, 0x3f, 0xda, 0x9f, 0x9b, 0x77, 0x5f, 0x6e, 0xa2, 0x93, 0x0d, + 0xd7, 0x9f, 0xae, 0x2f, 0x90, 0x96, 0x5d, 0xe3, 0xa1, 0x5d, 0x9c, 0xdd, 0x20, 0xf7, 0xf8, 0xa6, + 0x27, 0xf5, 0xf9, 0x16, 0x0f, 0xea, 0x4d, 0x0f, 0xea, 0xf6, 0xf3, 0x7f, 0xa3, 0x6d, 0xd7, 0x6e, + 0x24, 0x6b, 0x83, 0xae, 0xb2, 0xfa, 0xa1, 0x10, 0xbd, 0xbe, 0x72, 0x03, 0x9f, 0x10, 0x76, 0x2f, + 0x08, 0xa2, 0x8b, 0xf6, 0x74, 0x6d, 0x4f, 0x22, 0xdc, 0x83, 0x94, 0xed, 0x4e, 0x63, 0x7a, 0xa4, + 0x6c, 0x11, 0xee, 0x49, 0xb1, 0xd3, 0x21, 0xd9, 0xdd, 0x33, 0xbe, 0x26, 0xba, 0x3e, 0x5c, 0x00, + 0x5c, 0x00, 0x5c, 0x00, 0x5c, 0x80, 0xde, 0xb0, 0x4e, 0xdf, 0xb2, 0x3b, 0x9d, 0x50, 0x48, 0x49, + 0xe9, 0x05, 0x8e, 0x09, 0xae, 0x1d, 0x3f, 0x9b, 0xcc, 0x95, 0xee, 0xbc, 0x3e, 0xf9, 0x6f, 0x55, + 0xc2, 0x67, 0xbf, 0xb4, 0x06, 0x84, 0x23, 0x94, 0x0b, 0x37, 0xb6, 0x52, 0x22, 0xf4, 0x49, 0x23, + 0x51, 0x91, 0xa0, 0xff, 0xbc, 0x7b, 0x77, 0x5f, 0xb2, 0x8e, 0x5b, 0x2f, 0xf7, 0x65, 0xeb, 0xb8, 0x35, 0x7e, 0x59, 0x8e, 0xfe, 0x1a, 0xbf, 0xae, 0xdc, 0x97, 0xac, 0xea, 0xe4, 0x75, 0xed, 0xbe, 0x64, 0xd5, 0x5a, 0x07, 0x7f, 0xff, 0xfd, 0xe1, 0xe0, 0xc7, 0xe1, 0x70, 0xfd, 0x2f, 0xfe, 0x8b, - 0x9f, 0x50, 0xb4, 0xf6, 0x72, 0x4c, 0x19, 0xcd, 0x1e, 0xda, 0x3a, 0x0e, 0xad, 0xd9, 0x43, 0x6b, + 0x2e, 0x66, 0xd0, 0xda, 0xcb, 0x50, 0xd0, 0x86, 0x67, 0x33, 0xd4, 0xb1, 0x19, 0x36, 0xdb, 0x0c, + 0xb6, 0xd5, 0x3d, 0xb5, 0x7e, 0x6b, 0xfd, 0x28, 0xbf, 0xaf, 0x0e, 0x4f, 0x0e, 0x7e, 0x34, 0x86, + 0x8b, 0x6f, 0xbe, 0xac, 0xfa, 0x58, 0xf9, 0x7d, 0x63, 0x78, 0x92, 0xf0, 0x2f, 0xf5, 0xe1, 0xc9, + 0x1b, 0xaf, 0x51, 0x1b, 0xbe, 0x5b, 0xfa, 0xe8, 0xe8, 0xfd, 0x4a, 0xd2, 0x17, 0xaa, 0x09, 0x5f, + 0x38, 0x4c, 0xfa, 0xc2, 0x61, 0xc2, 0x17, 0x12, 0x6f, 0xa9, 0x92, 0xf0, 0x85, 0xda, 0xf0, 0x65, + 0xe9, 0xf3, 0xef, 0x56, 0x7f, 0xb4, 0x3e, 0x3c, 0x78, 0x49, 0xfa, 0xb7, 0xc6, 0xf0, 0xe5, 0xe4, + 0x20, 0x83, 0xa6, 0x01, 0x05, 0x64, 0x1b, 0xec, 0x30, 0xda, 0xa1, 0xe0, 0x14, 0xd3, 0xc0, 0xc1, + 0xea, 0x56, 0xb2, 0x3a, 0x24, 0xeb, 0x53, 0xca, 0xea, 0x90, 0xac, 0x27, 0x81, 0x53, 0x48, 0xd6, + 0xbf, 0xed, 0x41, 0xdd, 0x7d, 0xb9, 0xba, 0x6a, 0x5e, 0xa0, 0x1b, 0xe8, 0x9b, 0x1e, 0xd6, 0x4d, + 0x05, 0x99, 0xf9, 0x9f, 0x3e, 0x9e, 0x4b, 0x64, 0x99, 0xd3, 0x9b, 0x65, 0xde, 0x4b, 0x91, 0x96, + 0x16, 0x4e, 0x7d, 0x3f, 0x50, 0xb6, 0xf6, 0x14, 0x75, 0x41, 0x3a, 0x4f, 0xa2, 0x67, 0xf7, 0x6d, + 0xf5, 0x34, 0xd2, 0xc8, 0x62, 0xd0, 0x17, 0xbe, 0x13, 0x41, 0x37, 0xcb, 0x17, 0xea, 0x9f, 0x20, + 0xfc, 0x6a, 0xb9, 0xbe, 0x54, 0xb6, 0xef, 0x88, 0xe2, 0xe2, 0x1b, 0x72, 0xe9, 0x9d, 0xe2, 0xc8, + 0x39, 0x17, 0x3d, 0xd9, 0x97, 0x45, 0x27, 0xf0, 0xa5, 0x0a, 0x6d, 0xd7, 0x17, 0x1d, 0x6b, 0x74, + 0xf5, 0xa2, 0x1a, 0xf8, 0xbe, 0xf0, 0x64, 0xfc, 0x77, 0x51, 0x2a, 0x5b, 0x09, 0x3d, 0xca, 0xbf, + 0xfd, 0x42, 0x6d, 0x77, 0x85, 0x2d, 0x97, 0x78, 0x04, 0xd9, 0x34, 0x0d, 0x02, 0x2f, 0x5c, 0xb8, + 0x52, 0x9d, 0x2a, 0xa5, 0xa7, 0x2f, 0x6a, 0xe1, 0xd2, 0xf5, 0x9b, 0x9e, 0x18, 0x61, 0xaf, 0x91, + 0x37, 0xf2, 0x07, 0x9e, 0xf7, 0x5e, 0xc3, 0x45, 0xed, 0xef, 0xfa, 0x2f, 0x7a, 0x1d, 0x76, 0x44, + 0x28, 0x3a, 0x1f, 0x9f, 0xe3, 0x4b, 0x1a, 0x5d, 0x4f, 0xcd, 0x5b, 0xd5, 0xd4, 0x16, 0xd5, 0x00, + 0x6f, 0x0a, 0x52, 0x85, 0x03, 0x47, 0xc5, 0x03, 0xf4, 0x0b, 0x57, 0xe3, 0x7b, 0x39, 0x8f, 0x6f, + 0xa5, 0x7d, 0xd9, 0xf7, 0x64, 0xfb, 0x42, 0xf6, 0x65, 0xfb, 0xd3, 0xeb, 0xad, 0xdc, 0xd8, 0xea, + 0xa9, 0x7d, 0x37, 0xbe, 0x83, 0x3d, 0x33, 0x9b, 0x7a, 0xb3, 0x6f, 0x6e, 0xa8, 0x36, 0xba, 0xd4, + 0x85, 0x5d, 0x4d, 0x36, 0x5b, 0x9d, 0xf5, 0x9f, 0xed, 0x7a, 0xdf, 0x58, 0x73, 0x15, 0xb6, 0x7d, + 0xfa, 0x6c, 0x4f, 0x7d, 0x83, 0xdd, 0xb8, 0xe9, 0xee, 0x5b, 0x6f, 0x61, 0xdf, 0xbe, 0x3c, 0x6b, + 0x2c, 0x4d, 0x61, 0x04, 0x0f, 0x5c, 0xc7, 0x1a, 0x3d, 0x8a, 0xb5, 0xd7, 0x65, 0x66, 0x00, 0xfe, + 0xeb, 0x45, 0xd6, 0x54, 0x8b, 0x09, 0x61, 0x5d, 0xf3, 0x6b, 0x9b, 0x46, 0xbd, 0xb6, 0x89, 0x6a, + 0x69, 0x88, 0x5a, 0x6d, 0x1b, 0x95, 0xd2, 0x16, 0x75, 0xd2, 0x16, 0x55, 0xd2, 0x13, 0x35, 0xa2, + 0x35, 0x3d, 0x67, 0x6e, 0xb8, 0xa1, 0xcd, 0x99, 0xea, 0xf5, 0xe6, 0x2b, 0xb6, 0xbc, 0x47, 0x36, + 0x5d, 0xb2, 0xcd, 0xb6, 0xca, 0xd6, 0x5b, 0x46, 0xc7, 0xd6, 0x59, 0x7a, 0x1a, 0x5b, 0x46, 0x7d, + 0x75, 0x45, 0x77, 0xb5, 0x47, 0x71, 0xb5, 0x47, 0x6b, 0xe7, 0xf6, 0xd7, 0x76, 0x21, 0x59, 0x5e, + 0xb4, 0xb5, 0xe9, 0xa6, 0x9b, 0x5e, 0xc0, 0x99, 0xe8, 0xeb, 0x96, 0x4b, 0x3c, 0x51, 0xb9, 0xf8, + 0x7a, 0xdb, 0x72, 0xc8, 0xad, 0x36, 0xa1, 0xb6, 0xcd, 0xa8, 0x73, 0x53, 0xea, 0xde, 0x9c, 0xba, + 0x37, 0x29, 0xd9, 0x66, 0x25, 0xdb, 0xb4, 0x04, 0x9b, 0x37, 0x1d, 0x11, 0x94, 0x6d, 0x37, 0xf5, + 0xf4, 0x42, 0x31, 0x56, 0xd6, 0xa4, 0x18, 0x13, 0xc5, 0xd5, 0x10, 0xd9, 0x59, 0xdc, 0xe8, 0x9a, + 0xb2, 0xaa, 0xda, 0xd3, 0xb4, 0x14, 0xe9, 0x59, 0xdd, 0x06, 0x80, 0xca, 0x10, 0x90, 0x1b, 0x04, + 0x72, 0xc3, 0x40, 0x68, 0x20, 0xf4, 0x05, 0x6b, 0xf7, 0x35, 0x46, 0xd5, 0xb5, 0x27, 0x56, 0x67, + 0x70, 0x75, 0xe8, 0xfa, 0x8f, 0x3a, 0xb5, 0x75, 0x5a, 0x89, 0x86, 0xa0, 0x79, 0x86, 0x82, 0xac, + 0x33, 0x31, 0x88, 0x99, 0xd7, 0xc5, 0x18, 0xf5, 0x99, 0x0a, 0x70, 0x6e, 0x41, 0x71, 0xc4, 0x63, + 0x54, 0x72, 0xa9, 0x0d, 0xff, 0xc6, 0xd7, 0x03, 0xfe, 0x05, 0xfe, 0x05, 0xfe, 0x35, 0x8d, 0x7f, + 0x35, 0x91, 0x5b, 0x1a, 0x92, 0xab, 0x79, 0xb3, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xeb, 0x33, + 0x1e, 0xd3, 0x0b, 0xba, 0xbe, 0x13, 0xf4, 0x5c, 0xff, 0xd1, 0xf2, 0xec, 0x07, 0x41, 0xd8, 0xc8, + 0x6c, 0x41, 0x0e, 0xea, 0xa2, 0xc9, 0xeb, 0xa2, 0x51, 0x14, 0x6d, 0xd8, 0x28, 0x31, 0x18, 0x27, + 0xbd, 0x46, 0x4a, 0xb3, 0xb1, 0xa2, 0x23, 0xee, 0x2b, 0x75, 0x9d, 0xc4, 0xb2, 0xec, 0xe3, 0x9c, + 0xeb, 0xcf, 0x9f, 0xfc, 0xc0, 0xf5, 0xd5, 0x61, 0x85, 0xe1, 0x50, 0x1f, 0x61, 0x13, 0x71, 0xe2, + 0x41, 0x01, 0xf4, 0xab, 0x31, 0xfd, 0x21, 0x1c, 0x83, 0x03, 0x88, 0x9d, 0x6e, 0xa2, 0xb8, 0x49, + 0x37, 0xf9, 0x72, 0x9d, 0x49, 0x20, 0x63, 0x5b, 0x79, 0x22, 0xcb, 0xbb, 0x5a, 0x47, 0x18, 0x26, + 0x0c, 0x18, 0xd7, 0x91, 0x52, 0xf5, 0xa8, 0xd6, 0xa8, 0xe5, 0x58, 0x51, 0xf6, 0xb2, 0x79, 0x75, + 0x9c, 0x8c, 0x9f, 0x77, 0x9f, 0xc2, 0x1f, 0xf4, 0x44, 0x68, 0x13, 0x34, 0x99, 0x5b, 0x89, 0x60, + 0xaa, 0x84, 0x32, 0x9a, 0xfe, 0xa0, 0x37, 0x32, 0x2c, 0x18, 0x91, 0x91, 0x1a, 0x65, 0x2e, 0xf8, + 0xe2, 0xbb, 0xb2, 0x9e, 0x82, 0x3e, 0x1d, 0xaf, 0x9f, 0x4a, 0x00, 0xa3, 0x07, 0xa3, 0x07, 0xa3, + 0x07, 0xa3, 0xd7, 0xa4, 0xeb, 0xe8, 0x5c, 0x65, 0x0a, 0x92, 0xa0, 0x73, 0xd5, 0x06, 0x82, 0xd0, + 0xb9, 0x2a, 0x9f, 0xf8, 0x1c, 0x9d, 0xab, 0x36, 0xdf, 0x0c, 0xe8, 0x5c, 0x85, 0xce, 0x55, 0xe0, + 0x75, 0x24, 0xbc, 0xae, 0x3f, 0x90, 0x4f, 0xd4, 0x19, 0xdb, 0x19, 0x19, 0xe0, 0x76, 0xe0, 0x76, + 0xe0, 0x76, 0xe0, 0x76, 0x1a, 0x75, 0x1d, 0xd9, 0x5a, 0x13, 0x70, 0x16, 0xd9, 0xda, 0x14, 0xac, + 0xc6, 0xf4, 0x87, 0x20, 0x5b, 0xab, 0x51, 0x20, 0xb2, 0xb5, 0xd9, 0xd5, 0x11, 0x64, 0x6b, 0xd3, + 0x79, 0x75, 0x44, 0x83, 0xe6, 0xdd, 0x27, 0xb2, 0xb5, 0x60, 0xf5, 0x24, 0x57, 0xda, 0xd5, 0xc6, + 0x83, 0x09, 0x07, 0xee, 0xc6, 0xc7, 0xcc, 0xb4, 0x9c, 0xbb, 0xd3, 0xb7, 0x4e, 0x43, 0x2d, 0x2d, + 0xd6, 0x6c, 0x45, 0x70, 0x66, 0x7d, 0x7c, 0xd9, 0x94, 0x1f, 0xd8, 0xa9, 0xe0, 0xc0, 0x4e, 0x66, + 0xa2, 0x2e, 0x38, 0xb0, 0x83, 0x03, 0x3b, 0x38, 0xb0, 0x43, 0x6b, 0x74, 0xa8, 0x8d, 0x0f, 0xb5, + 0x11, 0x62, 0x33, 0x46, 0x6c, 0x46, 0x89, 0xc1, 0x38, 0xd1, 0x00, 0x64, 0x84, 0x80, 0x57, 0x43, + 0x18, 0x84, 0x80, 0x97, 0x9f, 0x3c, 0x42, 0xc0, 0x29, 0x58, 0x8d, 0xe9, 0x0f, 0x41, 0x08, 0x58, + 0xa3, 0x40, 0x84, 0x80, 0xb3, 0xab, 0x23, 0x08, 0x01, 0xa7, 0xf3, 0xea, 0x08, 0x01, 0xcf, 0xbb, + 0x4f, 0x84, 0x80, 0x8d, 0xa9, 0x24, 0x0e, 0xec, 0xe8, 0x50, 0x60, 0x1c, 0xd8, 0x01, 0xa3, 0x07, + 0xa3, 0x07, 0xa3, 0xd7, 0xad, 0xeb, 0x38, 0xb0, 0x63, 0x0a, 0x92, 0xe0, 0xc0, 0xce, 0x06, 0x82, + 0x70, 0x60, 0x27, 0x9f, 0xf8, 0x1c, 0x07, 0x76, 0x36, 0xdf, 0x0c, 0x38, 0xb0, 0x83, 0x03, 0x3b, + 0xe0, 0x75, 0x24, 0xbc, 0x0e, 0x07, 0x76, 0xc0, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0xf6, 0x91, 0xad, + 0x05, 0xb7, 0x5b, 0xe3, 0xc9, 0x23, 0x5b, 0x9b, 0x82, 0xd5, 0x98, 0xfe, 0x10, 0x64, 0x6b, 0x35, + 0x0a, 0x44, 0xb6, 0x36, 0xbb, 0x3a, 0x82, 0x6c, 0x6d, 0x3a, 0xaf, 0x8e, 0x68, 0xd0, 0xbc, 0xfb, + 0x44, 0xb6, 0x16, 0xac, 0x9e, 0xe4, 0x4a, 0x38, 0xb0, 0xb3, 0xea, 0xc0, 0xce, 0xf8, 0x1c, 0x0a, + 0x46, 0x9e, 0x65, 0x7f, 0xe4, 0x99, 0x96, 0x41, 0x5f, 0xfb, 0xeb, 0xcc, 0xb5, 0xff, 0x1c, 0x09, + 0xbf, 0x90, 0xfd, 0x76, 0x73, 0x2c, 0x3b, 0x83, 0xe3, 0xd6, 0x5c, 0x5f, 0xf3, 0xbc, 0xb5, 0xc9, + 0x05, 0x31, 0x70, 0x8d, 0x2b, 0x1e, 0x87, 0x81, 0x6b, 0x18, 0xb8, 0x96, 0x74, 0x21, 0x0c, 0x5c, + 0xd3, 0x71, 0x41, 0x9c, 0xdf, 0xc4, 0xf9, 0xcd, 0xec, 0x00, 0x74, 0x9c, 0xdf, 0x64, 0x0c, 0x3c, + 0x21, 0x23, 0xc8, 0x68, 0x84, 0xd8, 0x8c, 0x11, 0x9b, 0x51, 0x62, 0x30, 0x4e, 0x34, 0xf1, 0x12, + 0x64, 0x04, 0x57, 0x43, 0x18, 0x64, 0x04, 0x97, 0x9f, 0x3c, 0x32, 0x82, 0x29, 0x58, 0x8d, 0xe9, + 0x0f, 0x41, 0x46, 0x50, 0xa3, 0x40, 0x64, 0x04, 0xb3, 0xab, 0x23, 0xc8, 0x08, 0xa6, 0xf3, 0xea, + 0xc8, 0x08, 0xce, 0xbb, 0x4f, 0x64, 0x04, 0x8d, 0xa9, 0x24, 0xce, 0x6f, 0xea, 0x50, 0x60, 0x9c, + 0xdf, 0x04, 0xa3, 0x07, 0xa3, 0x07, 0xa3, 0xd7, 0xad, 0xeb, 0x38, 0xbf, 0x69, 0x0a, 0x92, 0xe0, + 0xfc, 0xe6, 0x06, 0x82, 0x70, 0x7e, 0x33, 0x9f, 0xf8, 0x1c, 0xe7, 0x37, 0x37, 0xdf, 0x0c, 0x38, + 0xbf, 0x89, 0xf3, 0x9b, 0xe0, 0x75, 0x24, 0xbc, 0x0e, 0xe7, 0x37, 0xc1, 0xed, 0xc0, 0xed, 0xc0, + 0xed, 0xf6, 0x91, 0xad, 0x05, 0xb7, 0x5b, 0xe3, 0xc9, 0x23, 0x5b, 0x9b, 0x82, 0xd5, 0x98, 0xfe, + 0x10, 0x64, 0x6b, 0x35, 0x0a, 0x44, 0xb6, 0x36, 0xbb, 0x3a, 0x82, 0x6c, 0x6d, 0x3a, 0xaf, 0x8e, + 0x68, 0xd0, 0xbc, 0xfb, 0x44, 0xb6, 0x16, 0xac, 0x9e, 0xe4, 0x4a, 0x38, 0xbf, 0x39, 0x77, 0xdc, + 0x2f, 0x3e, 0x67, 0x86, 0x89, 0x6b, 0x6f, 0x35, 0x4c, 0x98, 0xb8, 0x96, 0xce, 0x30, 0x0c, 0x4e, + 0xec, 0x18, 0x08, 0xb3, 0xe0, 0xc4, 0x8e, 0x96, 0xad, 0x80, 0x13, 0x3b, 0xc4, 0x46, 0x87, 0xda, + 0xf8, 0x50, 0x1b, 0x21, 0x36, 0x63, 0xc4, 0x66, 0x94, 0x18, 0x8c, 0x13, 0x0d, 0x42, 0x46, 0x0c, + 0x78, 0x35, 0x84, 0x41, 0x0c, 0x78, 0xf9, 0xc9, 0x23, 0x06, 0x9c, 0x82, 0xd5, 0x98, 0xfe, 0x10, + 0xc4, 0x80, 0x35, 0x0a, 0x44, 0x0c, 0x38, 0xbb, 0x3a, 0x82, 0x18, 0x70, 0x3a, 0xaf, 0x8e, 0x18, + 0xf0, 0xbc, 0xfb, 0x44, 0x0c, 0xd8, 0x98, 0x4a, 0xe2, 0xc4, 0x8e, 0x0e, 0x05, 0xc6, 0x89, 0x1d, + 0x30, 0x7a, 0x30, 0x7a, 0x30, 0x7a, 0xdd, 0xba, 0x8e, 0x13, 0x3b, 0xa6, 0x20, 0x09, 0x4e, 0xec, + 0x6c, 0x20, 0x08, 0x27, 0x76, 0xf2, 0x89, 0xcf, 0x71, 0x62, 0x67, 0xf3, 0xcd, 0x80, 0x13, 0x3b, + 0x38, 0xb1, 0x03, 0x5e, 0x47, 0xc2, 0xeb, 0x70, 0x62, 0x07, 0xdc, 0x0e, 0xdc, 0x0e, 0xdc, 0x6e, + 0x1f, 0xd9, 0x5a, 0x70, 0xbb, 0x35, 0x9e, 0x3c, 0xb2, 0xb5, 0x29, 0x58, 0x8d, 0xe9, 0x0f, 0x41, + 0xb6, 0x56, 0xa3, 0x40, 0x64, 0x6b, 0xb3, 0xab, 0x23, 0xc8, 0xd6, 0xa6, 0xf3, 0xea, 0x88, 0x06, + 0xcd, 0xbb, 0x4f, 0x64, 0x6b, 0xc1, 0xea, 0x49, 0xae, 0x84, 0x13, 0x3b, 0x2b, 0x4f, 0xec, 0x60, + 0xe4, 0x1a, 0xd5, 0xca, 0x1a, 0x5a, 0x51, 0x33, 0x33, 0xd7, 0xce, 0xfd, 0xcc, 0x0e, 0x5d, 0x8b, + 0x7f, 0xa6, 0xa6, 0x89, 0x6b, 0xd1, 0xd5, 0xf4, 0x8c, 0x5b, 0x2b, 0x61, 0xdc, 0x1a, 0x7b, 0xf0, + 0x0d, 0xe3, 0xd6, 0x8c, 0x9b, 0x61, 0x6d, 0xc1, 0xb1, 0xa9, 0xae, 0x79, 0xc2, 0xee, 0x86, 0xa2, + 0xab, 0x43, 0xdd, 0x26, 0xb8, 0x51, 0x43, 0xf0, 0xa5, 0x70, 0x13, 0x7b, 0x86, 0x0f, 0x1f, 0xe2, + 0x73, 0xb3, 0xc5, 0xc8, 0x78, 0x64, 0xd0, 0x84, 0xea, 0x39, 0x24, 0xab, 0xf5, 0x70, 0xac, 0xf6, + 0x99, 0x95, 0x15, 0x18, 0x51, 0x18, 0xd1, 0xcc, 0x18, 0x51, 0x6d, 0x33, 0x2b, 0xb5, 0xa0, 0x23, + 0x0a, 0x94, 0x44, 0x14, 0x51, 0xc3, 0xbc, 0x4a, 0x9c, 0x7e, 0xe7, 0x31, 0x10, 0xe9, 0x0c, 0x6f, + 0x68, 0x4f, 0x4d, 0xce, 0x78, 0xf5, 0xd0, 0xf5, 0x1f, 0x75, 0x6a, 0xeb, 0xb4, 0xa2, 0x0b, 0xe1, + 0x8b, 0xec, 0x87, 0x2f, 0x34, 0x04, 0xa2, 0xcc, 0x80, 0x5f, 0x15, 0xda, 0xbe, 0x74, 0x95, 0x3e, + 0xf8, 0x3b, 0xb9, 0x20, 0x86, 0xb6, 0x03, 0x00, 0x03, 0x00, 0x9b, 0x06, 0xc0, 0x18, 0xda, 0x0e, + 0x10, 0x0c, 0x10, 0xbc, 0x5b, 0x20, 0x18, 0x2d, 0xa0, 0x18, 0x98, 0x36, 0x99, 0xb1, 0xa1, 0x34, + 0x3a, 0xd4, 0xc6, 0x87, 0xda, 0x08, 0xb1, 0x19, 0x23, 0x36, 0xa3, 0xc4, 0x60, 0x9c, 0xf4, 0x1a, + 0x29, 0xcd, 0xc6, 0x8a, 0x8e, 0xb9, 0xaf, 0xd4, 0x75, 0x14, 0x15, 0x2f, 0xfd, 0x41, 0x51, 0xf1, + 0xdb, 0x44, 0xa0, 0xa8, 0x38, 0x3d, 0x4e, 0x37, 0x51, 0x1c, 0x8a, 0x8a, 0x35, 0xe9, 0x08, 0x8a, + 0x8a, 0x73, 0xa0, 0x28, 0x28, 0x2a, 0xa6, 0xdf, 0x36, 0x28, 0x2a, 0x5e, 0x47, 0x06, 0x8a, 0x8a, + 0x53, 0xa7, 0xcc, 0x68, 0x01, 0x05, 0x46, 0x0f, 0x46, 0x0f, 0x46, 0x8f, 0x16, 0x50, 0x60, 0xf4, + 0x6b, 0x3c, 0x79, 0xb4, 0x80, 0x5a, 0x5b, 0x10, 0x5a, 0x40, 0xe5, 0x13, 0x9f, 0xa3, 0x05, 0xd4, + 0xe6, 0x9b, 0x01, 0x2d, 0xa0, 0xd0, 0x02, 0x0a, 0xbc, 0x8e, 0x84, 0xd7, 0xa1, 0x05, 0x14, 0xb8, + 0x1d, 0xb8, 0x1d, 0xb8, 0xdd, 0x3e, 0xb2, 0xb5, 0xe0, 0x76, 0x6b, 0x3c, 0x79, 0x64, 0x6b, 0x53, + 0xb0, 0x1a, 0xd3, 0x1f, 0x82, 0x6c, 0xad, 0x46, 0x81, 0xc8, 0xd6, 0x66, 0x57, 0x47, 0x90, 0xad, + 0x4d, 0xe7, 0xd5, 0x11, 0x0d, 0x9a, 0x77, 0x9f, 0xc8, 0xd6, 0x82, 0xd5, 0x93, 0x5c, 0x09, 0x2d, + 0xa0, 0xe6, 0x4e, 0xdc, 0xc5, 0xe7, 0xcc, 0x30, 0xb4, 0xfd, 0xad, 0x86, 0x09, 0x43, 0xdb, 0xd3, + 0x19, 0x86, 0xc1, 0x89, 0x1d, 0x03, 0x61, 0x16, 0x9c, 0xd8, 0xd1, 0xb2, 0x15, 0x70, 0x62, 0x87, + 0xd8, 0xe8, 0x50, 0x1b, 0x1f, 0x6a, 0x23, 0xc4, 0x66, 0x8c, 0xd8, 0x8c, 0x12, 0x83, 0x71, 0xa2, + 0x41, 0xc8, 0x88, 0x01, 0xaf, 0x86, 0x30, 0x88, 0x01, 0x2f, 0x3f, 0x79, 0xc4, 0x80, 0x53, 0xb0, + 0x1a, 0xd3, 0x1f, 0x82, 0x18, 0xb0, 0x46, 0x81, 0x88, 0x01, 0x67, 0x57, 0x47, 0x10, 0x03, 0x4e, + 0xe7, 0xd5, 0x11, 0x03, 0x9e, 0x77, 0x9f, 0x88, 0x01, 0x1b, 0x53, 0x49, 0x9c, 0xd8, 0xd1, 0xa1, + 0xc0, 0x38, 0xb1, 0x03, 0x46, 0x0f, 0x46, 0x0f, 0x46, 0xaf, 0x5b, 0xd7, 0x71, 0x62, 0xc7, 0x14, + 0x24, 0xc1, 0x89, 0x9d, 0x0d, 0x04, 0xe1, 0xc4, 0x4e, 0x3e, 0xf1, 0x39, 0x4e, 0xec, 0x6c, 0xbe, + 0x19, 0x70, 0x62, 0x07, 0x27, 0x76, 0xc0, 0xeb, 0x48, 0x78, 0x1d, 0x4e, 0xec, 0x80, 0xdb, 0x81, + 0xdb, 0x81, 0xdb, 0xed, 0x23, 0x5b, 0x0b, 0x6e, 0xb7, 0xc6, 0x93, 0x47, 0xb6, 0x36, 0x05, 0xab, + 0x31, 0xfd, 0x21, 0xc8, 0xd6, 0x6a, 0x14, 0x88, 0x6c, 0x6d, 0x76, 0x75, 0x04, 0xd9, 0xda, 0x74, + 0x5e, 0x1d, 0xd1, 0xa0, 0x79, 0xf7, 0x89, 0x6c, 0x2d, 0x58, 0x3d, 0xc9, 0x95, 0x70, 0x62, 0x67, + 0xe5, 0x89, 0x1d, 0x0c, 0x6d, 0xa7, 0x5a, 0x59, 0x43, 0x2b, 0x6a, 0x66, 0x68, 0xfb, 0x5d, 0x2c, + 0xdc, 0xd4, 0xd0, 0xb5, 0x3d, 0x46, 0x85, 0x29, 0xfc, 0x29, 0x9e, 0xb7, 0x9c, 0x3c, 0x5a, 0xb8, + 0x70, 0xa5, 0x3a, 0x55, 0x6a, 0xbb, 0x93, 0x26, 0x23, 0x76, 0xd3, 0xf4, 0x44, 0x4f, 0xf8, 0x11, + 0xc8, 0xf2, 0x07, 0x9e, 0xb7, 0xc5, 0xf0, 0xb9, 0x4b, 0xfb, 0xbb, 0xbe, 0x8b, 0x5d, 0x87, 0x1d, + 0x11, 0x8a, 0xce, 0xc7, 0xe7, 0xf8, 0x52, 0xac, 0xeb, 0xa3, 0x69, 0x23, 0x33, 0x6f, 0xe0, 0xc2, + 0x56, 0x53, 0xb3, 0xd7, 0xdc, 0xb0, 0x9b, 0x6d, 0xd4, 0xf5, 0xb7, 0xd9, 0x7a, 0xdf, 0x58, 0x73, + 0xc1, 0xb7, 0x5d, 0x68, 0x8e, 0x05, 0x5e, 0xef, 0x41, 0xbf, 0xfd, 0x71, 0xad, 0xf1, 0xa8, 0x0a, + 0x83, 0xd1, 0xaf, 0x92, 0x2a, 0xb4, 0x5d, 0x5f, 0x74, 0xac, 0xf8, 0xe7, 0xae, 0xf7, 0xb8, 0x5e, + 0xc3, 0x5b, 0xcb, 0xd7, 0x5a, 0x73, 0xd1, 0x36, 0x3b, 0xad, 0xba, 0x71, 0xea, 0x61, 0x9b, 0xd4, + 0xc2, 0xf4, 0x57, 0x07, 0x8e, 0xb5, 0x61, 0xf6, 0x60, 0xdb, 0xec, 0x80, 0xb6, 0xe8, 0xbf, 0xb6, + 0xe8, 0xfe, 0x5c, 0xf4, 0x7e, 0xf2, 0x60, 0x52, 0x66, 0x18, 0x36, 0x3d, 0xc3, 0x59, 0x18, 0x29, + 0xb4, 0x25, 0x85, 0x1a, 0xf4, 0xad, 0x7e, 0x18, 0xa8, 0xc0, 0x09, 0x36, 0x4f, 0xff, 0xbd, 0xa6, + 0xf9, 0x56, 0x5c, 0x74, 0x53, 0xe8, 0xb1, 0xd5, 0x51, 0xef, 0xad, 0xf3, 0x77, 0x3a, 0xf2, 0x74, + 0x1a, 0x36, 0x95, 0xae, 0xcd, 0xa5, 0x7d, 0x93, 0x69, 0xdf, 0x6c, 0x7a, 0x37, 0x9d, 0x19, 0xb8, + 0xbc, 0xed, 0x81, 0xea, 0x82, 0xd7, 0xe9, 0xeb, 0x1b, 0x89, 0x3c, 0xba, 0x18, 0xc6, 0x21, 0xbf, + 0x65, 0x73, 0x6e, 0xff, 0xa4, 0xf6, 0x31, 0x10, 0x79, 0xc5, 0xde, 0x1d, 0x3d, 0x57, 0x84, 0x4a, + 0x58, 0x80, 0xf8, 0x32, 0x5a, 0x2d, 0xae, 0x70, 0xc6, 0x45, 0x4d, 0x9a, 0xfe, 0x56, 0x16, 0xf6, + 0x65, 0xf6, 0xae, 0x6e, 0x6c, 0xf5, 0xd4, 0x1e, 0xfd, 0xdf, 0xe7, 0xd1, 0x3d, 0xdd, 0xc4, 0xb7, + 0xd4, 0xbe, 0xd8, 0x56, 0x49, 0xb2, 0x12, 0x4c, 0x49, 0x3b, 0x59, 0x7f, 0x9b, 0x0a, 0x71, 0x90, + 0xf7, 0x37, 0xa8, 0x0d, 0x68, 0x3d, 0xaf, 0x2a, 0x6c, 0x42, 0x08, 0x37, 0x5e, 0x6e, 0xb2, 0x50, + 0xc2, 0x9e, 0xc6, 0x45, 0xdc, 0x74, 0xf1, 0xa8, 0x16, 0x6d, 0x8d, 0x15, 0x7a, 0xeb, 0xca, 0xbc, + 0x6d, 0x1d, 0x7e, 0xfd, 0x54, 0xdf, 0xf0, 0x44, 0x0b, 0xd2, 0x7d, 0xf4, 0x6d, 0xcf, 0xf5, 0x1f, + 0xa7, 0x96, 0x46, 0xbe, 0xf9, 0xb1, 0xbe, 0x36, 0x1b, 0x5b, 0x71, 0x91, 0x37, 0xae, 0xe6, 0x7a, + 0x50, 0x77, 0x6d, 0x48, 0xbb, 0x09, 0x74, 0xdd, 0x82, 0x3f, 0x6e, 0x8a, 0x45, 0xb7, 0xc6, 0x9c, + 0x5b, 0x63, 0xcb, 0xed, 0xf8, 0x9f, 0xde, 0x1d, 0xbe, 0x2e, 0x9f, 0xdb, 0x88, 0xbf, 0x6d, 0xc1, + 0xd7, 0xb2, 0x1a, 0x61, 0xdc, 0x0c, 0x85, 0xe6, 0x3f, 0xc0, 0xb8, 0x11, 0x5f, 0x4a, 0x69, 0x7c, + 0xf1, 0xd1, 0x0b, 0x1e, 0x6c, 0x0d, 0x21, 0xc5, 0xf8, 0x3a, 0x88, 0x22, 0x6e, 0x1f, 0xa8, 0xd8, + 0xdd, 0x20, 0xe2, 0x56, 0x81, 0x88, 0x8c, 0xc5, 0x10, 0xed, 0x81, 0x7a, 0x12, 0xbe, 0x72, 0x1d, + 0x3d, 0x51, 0x8b, 0xa9, 0xfa, 0x2d, 0x5c, 0x17, 0x91, 0x45, 0x44, 0x16, 0x11, 0x59, 0xdc, 0xe2, + 0x17, 0xe9, 0xea, 0xbe, 0x5a, 0x70, 0x26, 0x7b, 0x40, 0x73, 0xe7, 0xe6, 0xf8, 0xba, 0x29, 0x6f, + 0xdd, 0x5c, 0xca, 0x40, 0xeb, 0x66, 0x6d, 0x86, 0x80, 0xca, 0x20, 0x90, 0x1b, 0x06, 0x72, 0x03, + 0x41, 0x6a, 0x28, 0xf4, 0x18, 0x0c, 0x4d, 0x86, 0x43, 0xbb, 0x01, 0x49, 0x40, 0x0e, 0xd6, 0xd7, + 0xa8, 0xf8, 0x8f, 0xe8, 0x40, 0xf0, 0x0a, 0x59, 0x38, 0x18, 0x4c, 0x7e, 0x30, 0x58, 0xbb, 0x21, + 0xa2, 0x36, 0x48, 0x6c, 0x86, 0x89, 0xcd, 0x40, 0xb1, 0x18, 0x2a, 0xbd, 0x06, 0x4b, 0xb3, 0xe1, + 0x9a, 0x3e, 0x01, 0xfa, 0xc3, 0xc1, 0x61, 0x30, 0x50, 0x51, 0x34, 0xd8, 0x96, 0x32, 0x52, 0x1f, + 0xc2, 0x23, 0xc2, 0x47, 0x3b, 0xd0, 0x2a, 0x42, 0xf8, 0xf6, 0x83, 0x27, 0xe8, 0xbc, 0x42, 0x7c, + 0x7d, 0xcd, 0x7a, 0x76, 0x26, 0xba, 0xf6, 0xc0, 0x8b, 0x36, 0x5a, 0xd7, 0xf6, 0xa4, 0x80, 0xa7, + 0x81, 0xa7, 0x81, 0xa7, 0x81, 0xa7, 0xd1, 0xa9, 0xef, 0x0f, 0x41, 0xe0, 0x09, 0xdb, 0xa7, 0x74, + 0x30, 0x65, 0x9c, 0x5a, 0x7c, 0x8b, 0xb2, 0x67, 0xe7, 0xd4, 0xe2, 0x8a, 0x6c, 0x75, 0xd1, 0xeb, + 0xf4, 0x8b, 0xe3, 0x94, 0x47, 0x71, 0x9e, 0x22, 0x61, 0xe2, 0xd8, 0x5b, 0xb7, 0x22, 0x26, 0x8e, + 0x21, 0x6c, 0x85, 0xb0, 0x15, 0xc2, 0x56, 0x08, 0x5b, 0x81, 0x4c, 0x80, 0x4c, 0x80, 0x4c, 0x20, + 0x6c, 0x85, 0xb0, 0x15, 0xc2, 0x56, 0xf0, 0x34, 0xf0, 0x34, 0xf0, 0x34, 0xf0, 0x34, 0x08, 0x5b, + 0x21, 0x6c, 0xc5, 0x19, 0xb6, 0x42, 0xdb, 0x2d, 0xaa, 0x35, 0x36, 0xbe, 0xb6, 0x4c, 0x27, 0x49, + 0x3f, 0x4f, 0xee, 0x69, 0x72, 0xf6, 0x4f, 0xb6, 0x2f, 0x3a, 0xfd, 0xf6, 0xef, 0xd1, 0x2d, 0xb5, + 0x4f, 0xe7, 0x6f, 0xc9, 0xd4, 0x49, 0xd2, 0x2d, 0xaa, 0xb2, 0x35, 0xd5, 0xef, 0xe9, 0xad, 0xdb, + 0x43, 0x81, 0xae, 0x49, 0x74, 0x87, 0x02, 0xdd, 0x14, 0x98, 0x6b, 0x6d, 0x05, 0xba, 0x9e, 0x0c, + 0x2d, 0xb7, 0xa3, 0x3f, 0xd1, 0x11, 0x5f, 0x57, 0x6f, 0xa6, 0xa3, 0x84, 0x02, 0xdd, 0x14, 0xd3, + 0x3d, 0x64, 0x3a, 0x32, 0x84, 0xe9, 0xb5, 0xd3, 0x37, 0xda, 0x81, 0x86, 0x14, 0xc3, 0x2e, 0x68, + 0x86, 0x5c, 0x90, 0x8e, 0x8a, 0x24, 0x1d, 0x58, 0x48, 0x39, 0x9b, 0x8d, 0x7c, 0x26, 0x5b, 0xe6, + 0x07, 0x13, 0xb6, 0xd2, 0x1c, 0xed, 0xa1, 0x55, 0xea, 0x3a, 0x94, 0xfa, 0xe7, 0x4a, 0x8d, 0x01, + 0x83, 0xb9, 0x18, 0x30, 0x98, 0xd6, 0xd6, 0xfe, 0x2d, 0x44, 0xc0, 0x72, 0x11, 0x01, 0xd3, 0x51, + 0x85, 0x67, 0x26, 0xcc, 0xf4, 0x18, 0xda, 0x8e, 0xe8, 0x0e, 0x3c, 0x2b, 0x14, 0x52, 0xd9, 0xa1, + 0xd2, 0x17, 0x70, 0x5a, 0xba, 0x32, 0x42, 0x4f, 0x08, 0x3d, 0x21, 0xf4, 0x94, 0x86, 0xd0, 0x13, + 0xce, 0x86, 0x23, 0xf4, 0x84, 0xd0, 0xd3, 0xee, 0x85, 0x9e, 0xb4, 0x17, 0xd9, 0x8e, 0x4b, 0x9c, + 0x3a, 0xd4, 0x35, 0x54, 0x1d, 0x14, 0x51, 0xed, 0xa3, 0x88, 0x8a, 0xdb, 0xb4, 0xb1, 0x99, 0x38, + 0x36, 0x53, 0xc7, 0x62, 0xf2, 0xf4, 0xb3, 0xe4, 0x7d, 0x14, 0x51, 0xad, 0x46, 0x46, 0xe5, 0x1d, + 0xa8, 0xd2, 0xed, 0x06, 0xe1, 0x3f, 0x76, 0xd8, 0x19, 0x51, 0xef, 0xa7, 0xc0, 0xeb, 0x28, 0xb7, + 0x47, 0x58, 0xb2, 0xbb, 0x4a, 0x18, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x83, 0x46, 0x7d, + 0x1f, 0xb8, 0xbe, 0x2a, 0xd7, 0x09, 0x3d, 0x03, 0xc1, 0x44, 0x74, 0xe2, 0x99, 0xf8, 0x84, 0xa3, + 0x95, 0x39, 0x66, 0xe0, 0x33, 0xcd, 0x35, 0x9f, 0xce, 0x33, 0xa7, 0x96, 0xc3, 0x38, 0xc1, 0x9c, + 0x70, 0xc4, 0x3d, 0xcb, 0x68, 0x7b, 0xee, 0xa5, 0xaf, 0xd7, 0x6a, 0x87, 0xb5, 0x1c, 0x2d, 0x3f, + 0xa6, 0x83, 0xa7, 0x06, 0x6b, 0x3f, 0x09, 0xaf, 0x2f, 0x42, 0x8b, 0xfa, 0x60, 0xdc, 0xbc, 0x18, + 0xe0, 0x6b, 0xe0, 0x6b, 0xe0, 0x6b, 0xe0, 0x6b, 0x84, 0x5e, 0xd2, 0xe6, 0x0e, 0x42, 0xe1, 0x04, + 0xbe, 0x2f, 0x1c, 0x65, 0xd1, 0x46, 0x5d, 0x16, 0xe4, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, + 0x21, 0x20, 0xe0, 0x82, 0x80, 0x0b, 0x02, 0x2e, 0x08, 0xb8, 0x20, 0xe0, 0x82, 0x80, 0x4b, 0x8e, + 0x11, 0xf6, 0x37, 0x11, 0x3e, 0x33, 0x00, 0xec, 0x57, 0x31, 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, + 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, 0xc0, 0xd7, 0x69, 0xc2, + 0xd7, 0xe8, 0xc0, 0x46, 0x72, 0x46, 0x71, 0xf1, 0x3c, 0x1e, 0x46, 0x07, 0xbc, 0x15, 0xdd, 0x60, + 0x74, 0x40, 0x5a, 0x69, 0x11, 0x4e, 0x35, 0x19, 0xa1, 0x3d, 0x38, 0xd5, 0xb4, 0xdd, 0x3e, 0xc0, + 0xa9, 0x26, 0x44, 0x7a, 0x10, 0xe9, 0x41, 0xa4, 0x07, 0xa5, 0x35, 0xab, 0x90, 0x11, 0x4e, 0x35, + 0x69, 0x5e, 0x33, 0x9c, 0x6a, 0x82, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x40, 0x12, 0x60, 0xf9, 0xd2, + 0x48, 0x02, 0xf0, 0x9b, 0xf5, 0x25, 0x31, 0x48, 0x02, 0xac, 0xb7, 0xf4, 0x48, 0x02, 0xa4, 0x7e, + 0xf9, 0x91, 0x04, 0x48, 0x0d, 0xd6, 0xc6, 0xa9, 0x26, 0xe0, 0x6b, 0xe0, 0x6b, 0xe0, 0x6b, 0x84, + 0x5e, 0x10, 0x7a, 0xc1, 0xa9, 0x26, 0x38, 0x04, 0x38, 0x04, 0x38, 0x04, 0x04, 0x5c, 0x10, 0x70, + 0x41, 0xc0, 0x05, 0x01, 0x17, 0x04, 0x5c, 0x10, 0x70, 0x41, 0xc0, 0x05, 0xa7, 0x9a, 0x80, 0xaf, + 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, 0x81, 0xaf, + 0x81, 0xaf, 0x71, 0xaa, 0x69, 0xed, 0xeb, 0xa6, 0xe0, 0x54, 0xd3, 0xf8, 0xb0, 0x0e, 0xe6, 0xea, + 0xe5, 0x62, 0xae, 0x9e, 0xe6, 0x19, 0x72, 0xe3, 0x5f, 0xa1, 0xc2, 0x81, 0xa3, 0xfc, 0x18, 0xe3, + 0x5d, 0x8d, 0x6f, 0xeb, 0x3c, 0xbe, 0xab, 0xf6, 0x65, 0xdf, 0x93, 0xed, 0xcf, 0x93, 0xbb, 0xba, + 0x99, 0xdc, 0x54, 0xfb, 0xa2, 0xd3, 0x6f, 0xff, 0x1e, 0xdd, 0x54, 0xfb, 0xf7, 0xf8, 0xa6, 0x6e, + 0xe3, 0x7b, 0xca, 0xe0, 0xd4, 0x3f, 0x3d, 0x07, 0xe5, 0xb4, 0x1e, 0x90, 0xd3, 0x3e, 0xdf, 0xaf, + 0x82, 0xf9, 0x7e, 0x29, 0x60, 0xc8, 0x98, 0xef, 0xf7, 0xf6, 0x5f, 0xa4, 0x6d, 0xbe, 0x9f, 0x27, + 0x43, 0xcb, 0xed, 0xe8, 0x3f, 0x08, 0x1b, 0x5f, 0x57, 0xef, 0x49, 0xd8, 0x12, 0xe6, 0xfb, 0xa5, + 0x38, 0x84, 0x86, 0x93, 0xb0, 0x19, 0x82, 0xf5, 0xda, 0x43, 0x62, 0x33, 0xb3, 0xe2, 0x09, 0x26, + 0xc5, 0x4f, 0x5d, 0xfe, 0xb1, 0xc6, 0x6b, 0xc6, 0xcf, 0xe0, 0x3e, 0x43, 0x53, 0xf8, 0xab, 0x98, + 0xc2, 0x9f, 0x20, 0x20, 0x9e, 0xc2, 0xdf, 0x7a, 0xb9, 0x2f, 0x5b, 0xc7, 0xad, 0xf1, 0xcb, 0x72, + 0xf4, 0xd7, 0xf8, 0x75, 0xe5, 0xbe, 0x64, 0x55, 0x27, 0xaf, 0x6b, 0xf7, 0x25, 0xab, 0xd6, 0x3a, + 0xf8, 0xfb, 0xef, 0x0f, 0x07, 0x3f, 0x0e, 0x87, 0xeb, 0x7f, 0x31, 0xfd, 0x73, 0xe7, 0xdf, 0x67, + 0x48, 0xa9, 0xeb, 0x50, 0xea, 0x9f, 0x2b, 0xb5, 0x6d, 0x75, 0x4f, 0xad, 0xdf, 0x5a, 0x3f, 0xca, + 0xef, 0xab, 0xc3, 0x93, 0x83, 0x1f, 0x8d, 0xe1, 0xe2, 0x9b, 0x2f, 0xab, 0x3e, 0x56, 0x7e, 0xdf, + 0x18, 0x9e, 0x24, 0xfc, 0x4b, 0x7d, 0x78, 0xf2, 0xc6, 0x6b, 0xd4, 0x86, 0xef, 0x96, 0x3e, 0x3a, + 0x7a, 0xbf, 0x92, 0xf4, 0x85, 0x6a, 0xc2, 0x17, 0x0e, 0x93, 0xbe, 0x70, 0x98, 0xf0, 0x85, 0xc4, + 0x5b, 0xaa, 0x24, 0x7c, 0xa1, 0x36, 0x7c, 0x59, 0xfa, 0xfc, 0xbb, 0xd5, 0x1f, 0xad, 0x0f, 0x0f, + 0x5e, 0x92, 0xfe, 0xad, 0x31, 0x7c, 0x39, 0x39, 0xc8, 0xc0, 0x16, 0xdf, 0x4b, 0xd7, 0x7d, 0x21, + 0x04, 0x66, 0x3a, 0x04, 0xa6, 0x21, 0x9e, 0xb9, 0x45, 0x8c, 0x69, 0x8f, 0x71, 0xd1, 0x74, 0x2d, + 0x16, 0xff, 0x22, 0x15, 0xb6, 0x0a, 0xc5, 0x6d, 0x17, 0x8e, 0xdc, 0x4c, 0x35, 0xd6, 0x5f, 0xd8, + 0x0d, 0x16, 0xb5, 0xe0, 0xfa, 0x4a, 0x84, 0x5d, 0xdb, 0x11, 0x96, 0xad, 0x54, 0xe8, 0x3e, 0x0c, + 0x94, 0x90, 0x1b, 0x2f, 0xed, 0x2b, 0xb8, 0x58, 0x75, 0xd5, 0x0d, 0x55, 0x6e, 0xbb, 0xa0, 0xe3, + 0xd6, 0x31, 0x07, 0x1d, 0x31, 0x06, 0x7d, 0x31, 0x05, 0x5d, 0x31, 0x04, 0xed, 0x31, 0x03, 0xed, + 0x31, 0x02, 0xad, 0x31, 0x01, 0x5e, 0x23, 0xb9, 0x6d, 0x90, 0xb0, 0xe0, 0x4c, 0x74, 0x56, 0x53, + 0xf0, 0x3f, 0xbe, 0x5e, 0xca, 0xa2, 0xff, 0x25, 0x44, 0xff, 0x53, 0x10, 0xe4, 0x43, 0xf4, 0x9f, + 0x6f, 0x63, 0x4f, 0x2f, 0xf4, 0x24, 0x3c, 0x2f, 0xd0, 0xdf, 0x56, 0x68, 0xf6, 0xa0, 0xf3, 0xec, + 0xf5, 0x91, 0x0d, 0x48, 0x8f, 0x61, 0xa0, 0x32, 0x10, 0xe4, 0x86, 0x82, 0xdc, 0x60, 0x90, 0x1a, + 0x0e, 0xbd, 0xec, 0x3d, 0xfd, 0xd9, 0x00, 0xed, 0x85, 0xb1, 0x04, 0x05, 0xb1, 0x44, 0x85, 0xb0, + 0x04, 0x41, 0x53, 0xca, 0xc2, 0x57, 0xe2, 0xaa, 0x47, 0xea, 0x42, 0x57, 0x8e, 0x0a, 0x47, 0x82, + 0xc2, 0x56, 0xd2, 0x82, 0x56, 0xae, 0x25, 0x25, 0x2c, 0x60, 0x65, 0x59, 0x56, 0xc4, 0x65, 0xa9, + 0xd5, 0x3e, 0x46, 0x82, 0x51, 0x3c, 0xe6, 0x9b, 0xed, 0x51, 0x21, 0xcd, 0xe9, 0xf5, 0x81, 0x34, + 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, + 0xb3, 0x81, 0x34, 0x51, 0x01, 0xb0, 0x59, 0x72, 0x79, 0x55, 0xa2, 0x53, 0xcb, 0xd4, 0x26, 0x33, + 0x87, 0x4e, 0xa6, 0x3f, 0x47, 0xea, 0x4b, 0x3e, 0xcd, 0x5c, 0x13, 0x09, 0x28, 0x3e, 0xf4, 0x8f, + 0x04, 0x14, 0x12, 0x50, 0x6f, 0xd8, 0xe8, 0xfa, 0x23, 0x02, 0xaf, 0x97, 0x4e, 0xf9, 0x38, 0x36, + 0x04, 0x03, 0x10, 0x0c, 0xd8, 0xcd, 0x60, 0x80, 0xf6, 0x71, 0x6c, 0x71, 0x1d, 0xb9, 0xd5, 0xb5, + 0x7b, 0xae, 0xe7, 0x6a, 0x40, 0x0f, 0x89, 0x1b, 0x62, 0x49, 0x12, 0x4d, 0x53, 0xa9, 0x32, 0x9a, + 0x4a, 0xa1, 0xa9, 0x54, 0x8a, 0x8c, 0x13, 0x8b, 0x91, 0x22, 0x62, 0xcb, 0xba, 0x47, 0x28, 0x6a, + 0x36, 0x5e, 0xab, 0x8d, 0xd8, 0x33, 0x9d, 0x52, 0xae, 0x34, 0x65, 0xcf, 0x54, 0x9a, 0x49, 0x63, + 0xd0, 0xc8, 0x0d, 0x1b, 0x87, 0x81, 0xe3, 0x33, 0x74, 0x5c, 0x06, 0x8f, 0xdd, 0xf0, 0xb1, 0x1b, + 0x40, 0x56, 0x43, 0x48, 0x63, 0x10, 0x89, 0x0c, 0x23, 0xb9, 0x81, 0x7c, 0x35, 0x94, 0x5d, 0xd7, + 0x8a, 0x4f, 0x43, 0x10, 0xab, 0xf1, 0xd4, 0x54, 0x4e, 0x24, 0xbe, 0xcf, 0x45, 0x03, 0x32, 0x6a, + 0xa3, 0xc9, 0x69, 0x3c, 0xf9, 0x8d, 0x28, 0xb7, 0x31, 0x35, 0x66, 0x54, 0x8d, 0x19, 0x57, 0x23, + 0x46, 0x96, 0xd6, 0xd8, 0x12, 0x1b, 0xdd, 0xe9, 0x13, 0x23, 0x6b, 0x79, 0x9a, 0xb8, 0xdf, 0x3c, + 0x61, 0x77, 0x43, 0xd1, 0xe5, 0xd8, 0x70, 0x13, 0x2c, 0xd9, 0x60, 0x90, 0x75, 0x13, 0xa7, 0x6f, + 0x3e, 0x7c, 0x88, 0xf3, 0x29, 0xc5, 0xa9, 0x13, 0xd8, 0xcb, 0xa6, 0xfa, 0x51, 0xb6, 0xe7, 0xd4, + 0x74, 0x62, 0xe8, 0xcd, 0x4a, 0xa7, 0xe5, 0x44, 0x91, 0x61, 0xee, 0x02, 0x77, 0x0c, 0x77, 0x0c, + 0x77, 0x9c, 0x6f, 0x77, 0x4c, 0xcd, 0x85, 0xf8, 0x39, 0x91, 0x29, 0x6e, 0xc4, 0xcc, 0x91, 0xd8, + 0x8d, 0xb3, 0x09, 0x23, 0x6d, 0xce, 0x58, 0x9b, 0x32, 0xda, 0xc6, 0x8d, 0xb7, 0x71, 0x23, 0x6e, + 0xd4, 0x98, 0xf3, 0x18, 0x75, 0x26, 0xe3, 0xce, 0xcf, 0xb9, 0x96, 0xf6, 0x6b, 0xaf, 0xef, 0xc9, + 0xd1, 0xca, 0x59, 0x76, 0xd7, 0xe5, 0xdc, 0xb5, 0x13, 0x60, 0x5c, 0x65, 0x94, 0xd9, 0xf4, 0x07, + 0xbd, 0xd1, 0x53, 0x66, 0xd2, 0x9d, 0xbd, 0x1c, 0x68, 0x67, 0x61, 0x3c, 0x69, 0xba, 0xc3, 0x0f, + 0x0a, 0x26, 0x82, 0x99, 0x76, 0xe0, 0x99, 0xe8, 0xda, 0x03, 0x2f, 0x32, 0x65, 0x5d, 0xdb, 0x93, + 0xc0, 0x22, 0xc0, 0x22, 0xc0, 0x22, 0xc0, 0x22, 0xc0, 0x22, 0x8c, 0xfb, 0x95, 0x6e, 0xf6, 0xf8, + 0x2f, 0x61, 0x48, 0x39, 0x2f, 0x90, 0x20, 0xd3, 0xb1, 0x0e, 0xa2, 0x89, 0x31, 0x89, 0xf2, 0x4c, + 0x1f, 0xb3, 0x78, 0x3d, 0x58, 0xf0, 0xfa, 0xb2, 0xb8, 0x58, 0x1f, 0x38, 0xff, 0xc6, 0xb3, 0x96, + 0xb3, 0x19, 0xe6, 0xd4, 0x88, 0x32, 0x85, 0xa0, 0x67, 0xe0, 0xc8, 0x9b, 0xcd, 0x95, 0x8e, 0x81, + 0x24, 0x6f, 0x36, 0x50, 0x5c, 0x09, 0x84, 0x0a, 0x12, 0x08, 0xd9, 0xc1, 0x7f, 0x48, 0x20, 0x20, + 0x81, 0xf0, 0x6b, 0x66, 0x8b, 0x04, 0x02, 0x48, 0x3b, 0x48, 0x3b, 0x48, 0x3b, 0x48, 0x3b, 0x48, + 0xbb, 0xfe, 0xfd, 0x8a, 0x04, 0x42, 0x86, 0xa3, 0x05, 0x48, 0x20, 0xe8, 0x83, 0x59, 0x48, 0x20, + 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x20, 0x81, 0x90, 0x61, 0x48, 0x80, 0x04, 0xc2, + 0x1a, 0xf2, 0x32, 0x99, 0x40, 0xd0, 0x38, 0xbc, 0x9e, 0x5f, 0x8b, 0xb2, 0x75, 0x90, 0xf1, 0x4f, + 0xf1, 0xcc, 0x10, 0x9f, 0x2a, 0x5c, 0xb8, 0x52, 0x9d, 0x2a, 0x45, 0x7c, 0x68, 0xf2, 0xd2, 0xf5, + 0x9b, 0x9e, 0x18, 0xf9, 0x48, 0x59, 0x38, 0xd9, 0xf7, 0x07, 0x9e, 0x47, 0x98, 0xcb, 0xb9, 0xb4, + 0xbf, 0xf3, 0x09, 0xbb, 0x0e, 0x3b, 0x22, 0x14, 0x9d, 0x8f, 0xcf, 0xb1, 0xa8, 0x4c, 0xe9, 0x18, + 0x93, 0xcd, 0xcb, 0xa4, 0xad, 0x2b, 0x90, 0x66, 0x1b, 0x37, 0x9d, 0xa9, 0x76, 0x3e, 0xb9, 0xfd, + 0xd3, 0xe9, 0xaf, 0x7b, 0x7d, 0xaf, 0x7d, 0x3a, 0xfe, 0x05, 0xbf, 0x8d, 0x7f, 0xc0, 0x5e, 0x36, + 0x8c, 0x68, 0xba, 0x1b, 0x6e, 0x10, 0x6f, 0x91, 0x6c, 0x6c, 0x8d, 0x42, 0x4a, 0x3b, 0x88, 0x6a, + 0x5c, 0x6c, 0xaa, 0x43, 0x84, 0xb4, 0x87, 0x06, 0xd1, 0xb1, 0x89, 0x33, 0xf4, 0x82, 0x8e, 0x4d, + 0xa9, 0x0c, 0x8d, 0xec, 0x68, 0xc7, 0x26, 0xa2, 0x31, 0x6a, 0x89, 0xdb, 0x8a, 0x64, 0xac, 0x5a, + 0x92, 0x41, 0x2b, 0xa1, 0x63, 0x93, 0x41, 0x43, 0xc7, 0x65, 0xf0, 0xd8, 0x0d, 0x1f, 0xbb, 0x01, + 0x64, 0x35, 0x84, 0xd9, 0x0c, 0x74, 0x90, 0xc7, 0x7c, 0xe9, 0x86, 0x75, 0x24, 0x59, 0xaf, 0x3a, + 0xa1, 0x08, 0x9a, 0x61, 0x1e, 0x8b, 0x7f, 0x18, 0x02, 0xa0, 0x94, 0xc3, 0x3e, 0x98, 0xdd, 0xca, + 0x92, 0x38, 0xe2, 0x61, 0x20, 0x4b, 0xf2, 0x18, 0xa6, 0x48, 0x30, 0x99, 0x83, 0xc5, 0x48, 0x5e, + 0xee, 0x55, 0x84, 0x70, 0xb8, 0x48, 0x2a, 0xd4, 0x24, 0xa3, 0xc9, 0x82, 0x56, 0x56, 0xa2, 0x67, + 0xef, 0xa9, 0x98, 0x85, 0xf6, 0xb1, 0x79, 0xbf, 0x60, 0x16, 0x9a, 0xc7, 0xe8, 0x81, 0x59, 0x80, + 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, 0x59, 0x80, + 0x59, 0x80, 0x59, 0x18, 0x66, 0x16, 0xaf, 0x29, 0x68, 0xb7, 0x43, 0xcf, 0x2b, 0xe6, 0xa4, 0x81, + 0x55, 0x80, 0x55, 0x80, 0x55, 0x80, 0x55, 0x64, 0x88, 0x55, 0x30, 0xd8, 0xaf, 0x59, 0x1b, 0x56, + 0x3e, 0x42, 0xc5, 0x98, 0x8e, 0x9d, 0xb3, 0x8b, 0x15, 0x63, 0x14, 0x9d, 0x65, 0xd2, 0x59, 0x27, + 0x46, 0x0a, 0x61, 0x38, 0xb6, 0x3e, 0x11, 0x64, 0x41, 0xcd, 0x98, 0x11, 0x48, 0x82, 0x9a, 0xb1, + 0x1c, 0xba, 0x10, 0x32, 0x88, 0xc1, 0x30, 0x37, 0x85, 0x72, 0x4e, 0xca, 0x8a, 0xb9, 0x28, 0x73, + 0x86, 0x72, 0xa7, 0xdc, 0xcf, 0x68, 0xf9, 0x18, 0xfc, 0x8f, 0x7e, 0x2d, 0x41, 0xd1, 0xf2, 0x6a, + 0x07, 0xe4, 0x76, 0xe1, 0x7f, 0x52, 0xe8, 0x7f, 0xdc, 0x2e, 0x4a, 0x96, 0x35, 0x5d, 0x98, 0x78, + 0x50, 0x13, 0xcf, 0x80, 0x26, 0x0c, 0x95, 0x4d, 0x81, 0x59, 0xe3, 0x32, 0x6f, 0xec, 0x66, 0x8e, + 0xdd, 0xdc, 0x71, 0x9a, 0x3d, 0xba, 0x90, 0xd0, 0x7e, 0x96, 0x47, 0xca, 0x4e, 0xc1, 0x16, 0x5f, + 0x03, 0xda, 0x57, 0x91, 0x18, 0x2a, 0x9b, 0x36, 0xe3, 0xc9, 0x6e, 0x44, 0xb9, 0x8d, 0xa9, 0x31, + 0xa3, 0x6a, 0xcc, 0xb8, 0x9a, 0x30, 0xb2, 0xb4, 0xc6, 0x96, 0xd8, 0xe8, 0xd2, 0x87, 0x42, 0x0c, + 0x84, 0x46, 0x38, 0x43, 0x25, 0x89, 0xa1, 0x93, 0x62, 0xa4, 0x76, 0x27, 0x33, 0x51, 0xfc, 0x85, + 0x37, 0xe2, 0xff, 0xc6, 0xb0, 0xd9, 0xd5, 0xcf, 0x51, 0x0e, 0x1e, 0x0c, 0xf8, 0xeb, 0x39, 0xa9, + 0x70, 0xd9, 0x70, 0xd9, 0x70, 0xd9, 0x70, 0xd9, 0x70, 0xd9, 0x70, 0xd9, 0xd1, 0x1b, 0xf7, 0xaf, + 0x2e, 0xfb, 0xbf, 0x9c, 0x41, 0x18, 0x0a, 0x5f, 0xbd, 0x3b, 0x28, 0x7e, 0xf8, 0xf0, 0x9a, 0x1d, + 0x69, 0xc5, 0x5f, 0x99, 0xf5, 0x23, 0x72, 0xc5, 0x7b, 0xd3, 0x2b, 0x77, 0xc4, 0x77, 0xf4, 0x79, + 0xe3, 0x88, 0x2e, 0x34, 0xbf, 0x47, 0xf5, 0xb2, 0x74, 0x45, 0xf7, 0x7c, 0x81, 0xb1, 0xc0, 0xb1, + 0xc4, 0x77, 0x75, 0xa2, 0x84, 0x27, 0x7a, 0x42, 0x85, 0xcf, 0x56, 0xe0, 0x5b, 0xce, 0x53, 0x74, + 0xaa, 0x80, 0x35, 0x58, 0x16, 0x35, 0x51, 0x66, 0x8c, 0x96, 0x65, 0x2d, 0x50, 0xd6, 0x42, 0x3b, + 0x39, 0xfd, 0x15, 0x50, 0x73, 0x19, 0x53, 0xd2, 0x49, 0x5b, 0xd9, 0x28, 0xf5, 0xa6, 0x9d, 0xa8, + 0xc5, 0x32, 0x49, 0x8b, 0x2d, 0xd3, 0x53, 0x41, 0xa6, 0x27, 0x35, 0x4c, 0x07, 0x99, 0x9e, 0xdd, + 0xc5, 0x62, 0xc8, 0xf4, 0x20, 0x6c, 0x84, 0xb0, 0x11, 0xc2, 0x46, 0x08, 0x1b, 0x21, 0x6c, 0xb4, + 0x03, 0x61, 0x23, 0x64, 0x7a, 0x7e, 0xce, 0x60, 0x90, 0xe9, 0x81, 0xcb, 0x86, 0xcb, 0x86, 0xcb, + 0x86, 0xcb, 0x86, 0xcb, 0x4e, 0x89, 0xcb, 0x46, 0xa6, 0x27, 0xbb, 0xd1, 0x05, 0x84, 0xc7, 0xa7, + 0xe1, 0x71, 0xc2, 0x39, 0x52, 0x38, 0x6e, 0xbe, 0x6b, 0xda, 0x54, 0x20, 0xc9, 0x5e, 0xd0, 0x4c, + 0xe8, 0x99, 0xbe, 0xba, 0x15, 0xdd, 0x5d, 0x38, 0xae, 0x48, 0x93, 0x05, 0x22, 0xcd, 0xfe, 0x90, + 0x1f, 0x4f, 0xac, 0xe0, 0x7c, 0x3c, 0x1f, 0xad, 0xc1, 0xf9, 0xf8, 0x1c, 0xfa, 0x3c, 0xc2, 0x03, + 0x8a, 0x83, 0x91, 0x81, 0x96, 0x1c, 0x47, 0x14, 0x63, 0x49, 0x48, 0x5d, 0x9b, 0x0a, 0xe5, 0xa0, + 0x2f, 0x59, 0xf6, 0x62, 0x35, 0xe8, 0x4b, 0x06, 0x7a, 0xb9, 0x8a, 0x10, 0x44, 0x40, 0xb0, 0x48, + 0x6c, 0x54, 0x49, 0x99, 0xc1, 0xa7, 0xc9, 0xbd, 0xef, 0xfc, 0xe0, 0x01, 0x8c, 0x34, 0xdb, 0xcc, + 0x15, 0xa3, 0x45, 0x28, 0x5c, 0x31, 0x5c, 0x71, 0x1a, 0x5c, 0x31, 0x06, 0x0f, 0xac, 0x25, 0x02, + 0x83, 0x07, 0xd2, 0xe7, 0x56, 0x96, 0xc4, 0x61, 0xf0, 0x80, 0x1e, 0x15, 0xc1, 0xe0, 0x81, 0xcc, + 0xab, 0x09, 0x06, 0x0f, 0x64, 0x94, 0x59, 0x60, 0xa4, 0x19, 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, + 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, 0x98, 0x05, 0x98, 0xc5, + 0x36, 0x6a, 0x82, 0x91, 0x66, 0x60, 0x15, 0x60, 0x15, 0x60, 0x15, 0x60, 0x15, 0x29, 0xb1, 0x5f, + 0xfb, 0x18, 0x69, 0x86, 0x1a, 0x73, 0x5d, 0x25, 0x25, 0xa9, 0xad, 0xd1, 0xde, 0x4b, 0x91, 0x9e, + 0x8c, 0x7c, 0x07, 0xd1, 0xe6, 0x2e, 0x5c, 0xb8, 0x52, 0x9d, 0x2a, 0xa5, 0xb7, 0xde, 0x73, 0x44, + 0xa7, 0x9b, 0x9e, 0x18, 0x39, 0x83, 0x11, 0xb0, 0xf7, 0x07, 0x9e, 0xa7, 0xb1, 0xe6, 0xfd, 0xd2, + 0xfe, 0x4e, 0x77, 0xf1, 0xeb, 0xb0, 0x23, 0x42, 0xd1, 0xf9, 0xf8, 0x1c, 0x5f, 0x3a, 0x55, 0x7a, + 0x40, 0x64, 0x27, 0x52, 0x69, 0x1f, 0x0a, 0x5a, 0x4f, 0x49, 0x90, 0xd4, 0x94, 0xe9, 0x31, 0x5e, + 0xdb, 0x9b, 0x9a, 0xed, 0xae, 0xb0, 0xa5, 0x72, 0xea, 0x56, 0xca, 0x14, 0x29, 0xe3, 0x76, 0xeb, + 0xbb, 0xf9, 0xaa, 0x6c, 0xb1, 0x22, 0x9a, 0x0e, 0x04, 0x69, 0x3d, 0x00, 0xa4, 0xa9, 0x56, 0x5e, + 0x5b, 0x4d, 0xbc, 0x4e, 0x02, 0xab, 0x9f, 0xa8, 0xea, 0x26, 0xa4, 0x64, 0xc4, 0x93, 0x8c, 0x60, + 0x92, 0x10, 0x49, 0xb3, 0x36, 0x52, 0xd7, 0x81, 0x1a, 0xaa, 0x0a, 0x5e, 0xda, 0x8a, 0x5d, 0xcd, + 0x11, 0x2f, 0xed, 0x11, 0x2e, 0x8a, 0x88, 0x16, 0x5d, 0x04, 0x8b, 0x2a, 0x62, 0x45, 0x1e, 0xa1, + 0x22, 0x8f, 0x48, 0x91, 0x46, 0xa0, 0xd2, 0xc5, 0x08, 0xb5, 0x47, 0x94, 0xe8, 0xf2, 0xd2, 0x04, + 0x79, 0x68, 0xa2, 0xbc, 0x33, 0x41, 0xe4, 0x85, 0x32, 0xaf, 0x4c, 0x9d, 0x48, 0x20, 0xce, 0x1b, + 0x73, 0x24, 0x00, 0x29, 0x12, 0x52, 0x94, 0x79, 0x60, 0xae, 0x25, 0x25, 0xcc, 0xf3, 0xb2, 0x2c, + 0x6b, 0x4a, 0xa3, 0x86, 0xad, 0xb4, 0x04, 0x04, 0xde, 0xeb, 0x42, 0x9a, 0xda, 0x2b, 0x3a, 0x69, + 0x2b, 0x38, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, 0x81, 0x34, + 0x81, 0x34, 0x81, 0x34, 0xa9, 0x91, 0x26, 0x52, 0x4f, 0x1a, 0x53, 0x4f, 0x1a, 0x4a, 0x22, 0xb6, + 0xc8, 0x3a, 0xed, 0x31, 0x2e, 0xa1, 0xae, 0xa5, 0x33, 0xbd, 0x64, 0x85, 0xad, 0x52, 0x75, 0x1a, + 0xb3, 0xd2, 0x9b, 0x69, 0xcd, 0xfa, 0x6b, 0xbe, 0xc1, 0x7a, 0x17, 0x7c, 0xe1, 0x3e, 0x3e, 0x3d, + 0x04, 0x5b, 0xb4, 0xfd, 0x9a, 0x62, 0xc6, 0xd7, 0x4b, 0x6d, 0xa8, 0x77, 0xdb, 0xe5, 0x22, 0xb7, + 0x26, 0x84, 0x3a, 0x08, 0xa0, 0x3e, 0xc2, 0xa7, 0x8b, 0xe0, 0x69, 0x27, 0x74, 0xda, 0x09, 0x9c, + 0x56, 0xc2, 0xc6, 0x6b, 0x29, 0xb7, 0xcd, 0x1d, 0x4e, 0xf7, 0x8c, 0xbe, 0xaa, 0x80, 0xe9, 0x15, + 0x53, 0x56, 0x18, 0x50, 0x42, 0x61, 0x40, 0x0a, 0xa2, 0x30, 0x28, 0x0c, 0xe0, 0xdb, 0xdc, 0xd3, + 0x0b, 0xd9, 0x03, 0xf5, 0x24, 0x7c, 0xe5, 0x3a, 0x7a, 0xcb, 0x03, 0xa7, 0x6a, 0xbc, 0x70, 0x7d, + 0xbd, 0xe1, 0xda, 0x32, 0xc2, 0xb5, 0x3a, 0xae, 0x8c, 0x70, 0x2d, 0xa7, 0xe1, 0xd0, 0x4b, 0xea, + 0x75, 0x85, 0x6b, 0x75, 0xb7, 0xee, 0x2d, 0x38, 0x93, 0x3d, 0x45, 0xd4, 0x62, 0x3c, 0xbe, 0x7e, + 0xc6, 0x7a, 0x8c, 0x97, 0xd0, 0x63, 0x9c, 0xde, 0xf0, 0xb0, 0x19, 0x20, 0x36, 0x43, 0xc4, 0x62, + 0x90, 0x88, 0x62, 0x97, 0x59, 0xe9, 0x31, 0x3e, 0x8f, 0x54, 0xac, 0xaf, 0xd1, 0xd9, 0x19, 0xe2, + 0x63, 0xc3, 0x2b, 0x64, 0xe2, 0xf0, 0x30, 0xb7, 0xa1, 0xe3, 0x33, 0x78, 0x5c, 0x86, 0x8f, 0xdd, + 0x00, 0xb2, 0x1b, 0x42, 0x56, 0x83, 0x48, 0x63, 0x18, 0x89, 0x0c, 0xe4, 0xf4, 0xc9, 0xf0, 0x1d, + 0x1e, 0x0e, 0x83, 0x81, 0x8a, 0xc2, 0xde, 0xb6, 0x94, 0x91, 0xba, 0xe1, 0x00, 0x31, 0xe5, 0xea, + 0x16, 0x84, 0x6f, 0x3f, 0x78, 0x0c, 0x6d, 0xb8, 0x63, 0x39, 0x54, 0x43, 0xdd, 0x45, 0xd7, 0x1e, + 0x78, 0xd1, 0xc6, 0xed, 0xda, 0x9e, 0x44, 0x9b, 0x6f, 0x78, 0x3e, 0x78, 0x3e, 0x78, 0xbe, 0x4c, + 0x79, 0xbe, 0x87, 0x20, 0xf0, 0x84, 0xed, 0x73, 0x38, 0xbc, 0x32, 0x3a, 0x66, 0xe8, 0xd8, 0x34, + 0xf9, 0xe9, 0x98, 0x31, 0x4d, 0x69, 0x4f, 0x5f, 0x15, 0xe7, 0xe9, 0x64, 0x31, 0x0e, 0x91, 0x61, + 0x9c, 0xe1, 0xb6, 0xdb, 0x1c, 0xe3, 0x0c, 0x11, 0x6a, 0x4c, 0x09, 0xde, 0x40, 0xa8, 0x91, 0xcf, + 0x59, 0x20, 0xd4, 0x08, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x05, 0xc2, 0x95, 0x1a, 0xc2, 0x85, 0x50, + 0x23, 0xeb, 0xea, 0x22, 0xd4, 0x08, 0xcf, 0x07, 0xcf, 0x07, 0xcf, 0x07, 0xcf, 0x67, 0xdc, 0xf3, + 0x21, 0xd4, 0x98, 0x31, 0xf6, 0xb8, 0x53, 0xa1, 0x46, 0x34, 0xe5, 0x35, 0xad, 0x17, 0xa9, 0xd2, + 0x87, 0x74, 0x34, 0x61, 0xbd, 0x8a, 0x6f, 0xae, 0x7d, 0x3a, 0x7f, 0x73, 0x39, 0xea, 0xb6, 0xa2, + 0xb9, 0xca, 0x96, 0xa6, 0xba, 0x16, 0xe5, 0xfa, 0x28, 0xd7, 0x47, 0xb9, 0xbe, 0x56, 0x27, 0xa2, + 0xbd, 0x5c, 0xdf, 0xb3, 0x1f, 0x84, 0x67, 0xc9, 0x3e, 0xd1, 0xc0, 0x9c, 0xe9, 0x76, 0x58, 0x90, + 0x43, 0x93, 0x53, 0x2b, 0xa1, 0x7c, 0x1f, 0x39, 0xb5, 0x14, 0x12, 0x6a, 0xe4, 0xd4, 0xe8, 0x08, + 0x33, 0xfd, 0x80, 0x4c, 0xc2, 0xc1, 0x98, 0xc4, 0x03, 0x31, 0x09, 0xc3, 0x13, 0x1c, 0x03, 0x30, + 0x99, 0xa6, 0x1a, 0x72, 0x0d, 0xbc, 0xe4, 0x9c, 0x60, 0x48, 0x38, 0xe0, 0x92, 0x65, 0xb0, 0x25, + 0xf7, 0xd2, 0x33, 0x0c, 0xb2, 0x64, 0x5d, 0xfe, 0x8c, 0x44, 0xf2, 0x5a, 0x3b, 0x50, 0xa3, 0xe6, + 0xc9, 0x90, 0x16, 0x59, 0x8f, 0xaf, 0x0f, 0x44, 0x0d, 0x44, 0x0d, 0x44, 0x0d, 0x44, 0xad, 0x51, + 0xdf, 0xdd, 0xbe, 0x65, 0x77, 0x3a, 0xa1, 0x90, 0x92, 0x10, 0x55, 0x97, 0x8f, 0x09, 0xae, 0x1d, + 0x3f, 0x9b, 0xcc, 0xa1, 0xea, 0xd7, 0x27, 0xff, 0xad, 0x4a, 0xf8, 0xec, 0x97, 0xd6, 0xe0, 0x88, + 0x50, 0xc6, 0x8d, 0xad, 0x94, 0x08, 0x7d, 0xf2, 0xa9, 0xff, 0x85, 0xff, 0xbc, 0x7b, 0x77, 0x5f, + 0xb2, 0x8e, 0x5b, 0x2f, 0xf7, 0x65, 0xeb, 0xb8, 0x35, 0x7e, 0x59, 0x8e, 0xfe, 0x1a, 0xbf, 0xae, + 0xdc, 0x97, 0xac, 0xea, 0xe4, 0x75, 0xed, 0xbe, 0x64, 0xd5, 0x5a, 0x07, 0x7f, 0xff, 0xfd, 0xe1, + 0xe0, 0xc7, 0xe1, 0x70, 0xfd, 0x2f, 0xfe, 0xab, 0x90, 0xb5, 0xe9, 0xdd, 0xef, 0x33, 0xbc, 0x19, + 0xea, 0xd8, 0x0c, 0x9b, 0x6d, 0x06, 0xdb, 0xea, 0x9e, 0x5a, 0xbf, 0xb5, 0x7e, 0x94, 0xdf, 0x57, + 0x87, 0x27, 0x07, 0x3f, 0x1a, 0xc3, 0xc5, 0x37, 0x5f, 0x56, 0x7d, 0xac, 0xfc, 0xbe, 0x31, 0x3c, + 0x49, 0xf8, 0x97, 0xfa, 0xf0, 0xe4, 0x8d, 0xd7, 0xa8, 0x0d, 0xdf, 0x2d, 0x7d, 0x74, 0xf4, 0x7e, + 0x25, 0xe9, 0x0b, 0xd5, 0x84, 0x2f, 0x1c, 0x26, 0x7d, 0xe1, 0x30, 0xe1, 0x0b, 0x89, 0xb7, 0x54, + 0x49, 0xf8, 0x42, 0x6d, 0xf8, 0xb2, 0xf4, 0xf9, 0x77, 0xab, 0x3f, 0x5a, 0x1f, 0x1e, 0xbc, 0x24, + 0xfd, 0x5b, 0x63, 0xf8, 0x72, 0x72, 0x90, 0x41, 0xd3, 0xb0, 0x3b, 0xbc, 0x0e, 0x15, 0x01, 0xe4, + 0x15, 0x01, 0x3a, 0x4f, 0x9f, 0xa5, 0x69, 0xb4, 0x89, 0xdd, 0xf9, 0x7f, 0xb6, 0x23, 0x7c, 0xc7, + 0x15, 0x92, 0x6a, 0xba, 0xc9, 0xac, 0x88, 0x94, 0xa7, 0xe0, 0x2b, 0x48, 0xc1, 0x67, 0x88, 0x9f, + 0x23, 0x05, 0x9f, 0xe2, 0x14, 0xfc, 0xfc, 0xde, 0x7f, 0xa6, 0x8b, 0x14, 0x2e, 0x0a, 0xc2, 0xc1, + 0x56, 0x84, 0x0c, 0x11, 0x32, 0xdc, 0xa1, 0x90, 0x21, 0xd9, 0xc1, 0x56, 0xa2, 0x31, 0xc3, 0xbf, + 0xb0, 0x64, 0x9a, 0xc7, 0x0e, 0x33, 0x19, 0xb4, 0x65, 0xc3, 0x86, 0x63, 0x3d, 0x29, 0x30, 0x78, + 0xec, 0x86, 0x8f, 0xdd, 0x00, 0xb2, 0x1a, 0x42, 0xba, 0xd8, 0x02, 0x61, 0x30, 0x93, 0xcc, 0x40, + 0xbe, 0x52, 0x73, 0x92, 0x86, 0x25, 0x89, 0xbb, 0x92, 0xa2, 0x81, 0x09, 0xb3, 0x99, 0x24, 0xc7, + 0x81, 0x26, 0xcc, 0x26, 0xbf, 0xf9, 0xe4, 0x36, 0xa3, 0xc6, 0xcc, 0xa9, 0x31, 0xb3, 0x6a, 0xc4, + 0xbc, 0xd2, 0x9a, 0x59, 0x62, 0x73, 0xcb, 0x66, 0x76, 0xa7, 0x82, 0x62, 0xee, 0xab, 0xf8, 0xd4, + 0x7f, 0xda, 0x86, 0x65, 0x22, 0x99, 0x49, 0x09, 0x79, 0xea, 0xe7, 0xd8, 0xb0, 0xac, 0x49, 0x23, + 0x6d, 0xce, 0x58, 0x9b, 0x32, 0xda, 0xc6, 0x8d, 0xb7, 0x71, 0x23, 0x6e, 0xd4, 0x98, 0xf3, 0x18, + 0x75, 0x26, 0xe3, 0x3e, 0x7d, 0x92, 0xe4, 0x47, 0xe6, 0x13, 0xf7, 0x2b, 0xd9, 0xc9, 0x80, 0x5f, + 0x59, 0xdf, 0x3a, 0xa3, 0x48, 0xda, 0x93, 0x04, 0x49, 0x7f, 0x78, 0xed, 0xd1, 0x3e, 0xd7, 0xc9, + 0x83, 0x94, 0xb8, 0xd5, 0x25, 0xf1, 0x4c, 0x27, 0x15, 0x12, 0xe5, 0x33, 0x96, 0xb0, 0x1b, 0x36, + 0x57, 0xf3, 0x2a, 0x67, 0x7f, 0xdf, 0x79, 0x95, 0x63, 0x38, 0x21, 0x91, 0x6a, 0xb5, 0xdb, 0xcb, + 0xa7, 0xb4, 0xd6, 0x5e, 0x3e, 0x7e, 0x0f, 0x83, 0x59, 0x88, 0xb3, 0x0e, 0xe2, 0x7b, 0xdf, 0x0d, + 0xe9, 0xfa, 0xbb, 0xfc, 0x14, 0xc9, 0x2c, 0xdd, 0x01, 0xd8, 0x24, 0xd8, 0x24, 0xd8, 0x24, 0xd8, + 0x24, 0xd8, 0x24, 0xdb, 0x7e, 0x55, 0x6e, 0x4f, 0x28, 0xd7, 0xf9, 0x2a, 0xeb, 0x55, 0x03, 0x94, + 0xf2, 0x88, 0x51, 0xe4, 0x17, 0x7f, 0x8c, 0xb6, 0x0a, 0xbe, 0xed, 0x07, 0x52, 0x38, 0x81, 0xdf, + 0x91, 0x05, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0xda, 0x1c, 0xa8, 0x5c, 0xf9, 0xa8, 0x5a, + 0xad, 0x37, 0xaa, 0xd5, 0x52, 0xe3, 0xb0, 0x51, 0x3a, 0xae, 0xd5, 0xca, 0xf5, 0x32, 0x18, 0x2e, + 0x18, 0xee, 0x0e, 0x33, 0x5c, 0x5f, 0x3c, 0x06, 0xca, 0xb5, 0x95, 0xe8, 0xf0, 0x73, 0xdb, 0x19, + 0xd9, 0x60, 0xb5, 0x60, 0xb5, 0x60, 0xb5, 0x60, 0xb5, 0x60, 0xb5, 0x6c, 0xfb, 0x15, 0x39, 0x52, + 0x10, 0x4a, 0x10, 0x4a, 0x10, 0x4a, 0x10, 0xca, 0x2d, 0x54, 0x0e, 0x39, 0x52, 0x30, 0xc8, 0x9d, + 0x67, 0x90, 0xdf, 0x95, 0x15, 0xa5, 0x29, 0x4d, 0x30, 0xc8, 0xa9, 0x6c, 0x30, 0x48, 0x30, 0x48, + 0x30, 0x48, 0x30, 0x48, 0x30, 0x48, 0xb6, 0xfd, 0x8a, 0xbc, 0x28, 0x68, 0x2c, 0x68, 0x2c, 0x68, + 0x2c, 0x68, 0x6c, 0xd6, 0x55, 0x0e, 0x79, 0x51, 0xb0, 0xda, 0x0c, 0xb1, 0xda, 0x4c, 0x1f, 0x7d, + 0x25, 0x9e, 0x16, 0xb9, 0x24, 0xcf, 0x6c, 0x6f, 0xc0, 0xa5, 0x36, 0x77, 0x0b, 0xef, 0x3c, 0x17, + 0xe7, 0x3b, 0xbb, 0x50, 0xcc, 0x97, 0xe4, 0xd3, 0x9f, 0x6c, 0xf5, 0xbe, 0x60, 0xd2, 0xc4, 0x8c, + 0x69, 0x20, 0x65, 0x47, 0x1b, 0x0d, 0x13, 0x2e, 0xff, 0x18, 0xdd, 0xec, 0xe9, 0xe4, 0xde, 0xc7, + 0xff, 0xf9, 0xc7, 0xe4, 0xd6, 0x77, 0x78, 0x7e, 0xbd, 0xeb, 0x2b, 0x11, 0x76, 0x6d, 0x47, 0x58, + 0xa1, 0xe8, 0xd2, 0xf7, 0xa3, 0x9a, 0x17, 0x87, 0x76, 0x54, 0x2b, 0x05, 0x30, 0xb7, 0xa3, 0x72, + 0xbb, 0xe8, 0x46, 0xb5, 0x81, 0x40, 0xd3, 0xdd, 0xa8, 0xdc, 0x2e, 0x9a, 0x51, 0x8d, 0x1f, 0x0c, + 0x9a, 0x51, 0xa5, 0xce, 0x48, 0x2e, 0x1b, 0xcb, 0x9c, 0x36, 0xa3, 0x22, 0x35, 0x9e, 0xdc, 0x46, + 0xd4, 0x98, 0x31, 0x35, 0x66, 0x54, 0x4d, 0x18, 0xd7, 0x7c, 0xf0, 0x71, 0xb6, 0x56, 0x54, 0x53, + 0xc8, 0xc8, 0x9f, 0x27, 0x7f, 0x15, 0x8d, 0x34, 0x79, 0xd6, 0x8c, 0xb4, 0x31, 0x63, 0x6d, 0xca, + 0x68, 0x1b, 0x37, 0xde, 0xc6, 0x8d, 0xb8, 0x49, 0x63, 0xce, 0x63, 0xd4, 0x99, 0x8c, 0xfb, 0xf4, + 0x41, 0x9a, 0x4b, 0x92, 0x7b, 0xc2, 0xee, 0xd2, 0x85, 0x08, 0x7e, 0x8a, 0x88, 0x1b, 0x8c, 0x32, + 0x6f, 0xa6, 0xd1, 0xbd, 0x91, 0x9a, 0x9e, 0x4c, 0x1d, 0x8e, 0x5c, 0x7c, 0x23, 0xfe, 0xef, 0x28, + 0x06, 0x86, 0x2a, 0xbb, 0xb7, 0x33, 0xb7, 0xc1, 0x83, 0x41, 0xfc, 0x30, 0x27, 0x1d, 0x10, 0x02, + 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0xc2, 0x08, 0x84, 0xb8, 0x7f, 0x85, 0x10, + 0xff, 0xe5, 0x0c, 0xc2, 0x50, 0xf8, 0xea, 0xdd, 0x41, 0xf1, 0xc3, 0x87, 0xe2, 0xf4, 0x13, 0xad, + 0xf8, 0x2b, 0xb3, 0x7e, 0x4b, 0xae, 0x78, 0x6f, 0x7a, 0xe5, 0x8e, 0xf8, 0x5e, 0x40, 0x75, 0x44, + 0x0a, 0xa2, 0x31, 0xa8, 0x8e, 0x98, 0xcf, 0x4d, 0xcf, 0xe5, 0x19, 0x51, 0x1c, 0xc1, 0xa6, 0x90, + 0x28, 0x8e, 0x58, 0xa5, 0x80, 0xd9, 0xaa, 0x8d, 0x38, 0x9f, 0xdc, 0xfa, 0xad, 0xe8, 0xee, 0x72, + 0x69, 0x84, 0x17, 0x38, 0xb6, 0x37, 0x9d, 0xa7, 0x4d, 0x5e, 0x1a, 0x31, 0x2f, 0x8e, 0xb6, 0x34, + 0xa2, 0x44, 0x5d, 0x1a, 0x51, 0xc1, 0xa4, 0xae, 0xf4, 0xd0, 0x3b, 0x4c, 0xea, 0xda, 0x61, 0x87, + 0x4c, 0xce, 0xbf, 0x18, 0xf9, 0x16, 0x07, 0xbf, 0x9a, 0xf2, 0xa9, 0x0f, 0x1f, 0xc6, 0xb8, 0xb1, + 0x38, 0x6f, 0x98, 0x77, 0xd8, 0x21, 0x86, 0xa2, 0x17, 0x28, 0xc1, 0xe7, 0x11, 0x17, 0xe4, 0xc1, + 0x25, 0xc2, 0x25, 0xc2, 0x25, 0xc2, 0x25, 0xc2, 0x25, 0x1a, 0x77, 0x89, 0x0b, 0x96, 0x79, 0x87, + 0x7d, 0x22, 0x6d, 0x69, 0x28, 0x4b, 0x49, 0x28, 0xea, 0xe5, 0xe1, 0x01, 0xe1, 0x01, 0x77, 0xca, + 0x03, 0x92, 0x57, 0xcc, 0x4f, 0x03, 0xa1, 0x96, 0xe2, 0xc8, 0xff, 0x2d, 0x4e, 0x0f, 0x9d, 0xc8, + 0xe5, 0xa9, 0xa1, 0x2f, 0x71, 0xd5, 0xd0, 0x97, 0x30, 0xd0, 0x39, 0xfd, 0x86, 0xd5, 0x98, 0x81, + 0x35, 0x66, 0x68, 0x8d, 0x18, 0x5c, 0x5a, 0xc3, 0x4b, 0x6c, 0x80, 0xf9, 0xa8, 0xc8, 0xd2, 0x7e, + 0xeb, 0xf5, 0x3d, 0x39, 0x5a, 0x19, 0x8b, 0xd5, 0x54, 0xce, 0xe1, 0xcc, 0x2a, 0x83, 0xac, 0xa6, + 0x3f, 0xe8, 0x8d, 0x1e, 0xec, 0x30, 0xab, 0x59, 0x5f, 0x42, 0x84, 0x39, 0xce, 0x55, 0x76, 0xc2, + 0xa0, 0xdf, 0x67, 0xe8, 0x5f, 0xbf, 0x30, 0x93, 0x6d, 0x22, 0x16, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x79, 0xba, 0xdf, 0x9c, 0x60, 0xe0, 0x2b, 0x11, 0xb2, 0xb4, 0x05, 0x64, + 0x6c, 0x07, 0xc8, 0xdc, 0x86, 0x8f, 0xb1, 0xd2, 0xd4, 0x44, 0xdb, 0x3d, 0x43, 0xbd, 0xcf, 0x4c, + 0xb5, 0xd9, 0x33, 0xd9, 0xd8, 0x8c, 0xb1, 0xad, 0x9e, 0x91, 0x76, 0x7a, 0xa6, 0x55, 0xc9, 0x7c, + 0xfb, 0x3c, 0xa3, 0xda, 0x95, 0x93, 0xc2, 0xe9, 0x16, 0x18, 0x56, 0x02, 0xc3, 0x0a, 0x85, 0x23, + 0xdc, 0x6f, 0xfc, 0x14, 0x6b, 0x2a, 0x17, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, + 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x0b, 0x1c, 0x2b, 0x17, + 0x1c, 0xcb, 0xb3, 0xa5, 0xb2, 0x1c, 0x4f, 0xd8, 0x21, 0x1f, 0xbf, 0x9a, 0x91, 0x09, 0x6e, 0x05, + 0x6e, 0x05, 0x6e, 0x05, 0x6e, 0x05, 0x6e, 0x65, 0x68, 0xb0, 0x15, 0x27, 0xbb, 0x32, 0x34, 0xc8, + 0x0a, 0xac, 0x0e, 0xac, 0x0e, 0xac, 0x0e, 0xac, 0x0e, 0xac, 0x0e, 0xac, 0x6e, 0x57, 0x58, 0x1d, + 0x4b, 0xd3, 0x8d, 0x65, 0x62, 0xc7, 0xd0, 0x7c, 0x03, 0xdc, 0x0e, 0xdc, 0x0e, 0xdc, 0x0e, 0xdc, + 0x2e, 0x93, 0xdc, 0xce, 0xed, 0x33, 0x59, 0xc7, 0x59, 0x0b, 0x59, 0x3e, 0x66, 0x90, 0x15, 0x3f, + 0xcb, 0xdc, 0x51, 0xac, 0xd7, 0x95, 0xfb, 0x56, 0x65, 0x5c, 0xbb, 0xa5, 0x35, 0x3c, 0xe2, 0xed, + 0x85, 0xa9, 0x44, 0xe8, 0xb3, 0x8f, 0x7c, 0x2e, 0xfc, 0xe7, 0xdd, 0xbb, 0xfb, 0x92, 0x75, 0xdc, + 0x7a, 0xb9, 0x2f, 0x5b, 0xc7, 0xad, 0xf1, 0xcb, 0x72, 0xf4, 0xd7, 0xf8, 0x75, 0xe5, 0xbe, 0x64, + 0x55, 0x27, 0xaf, 0x6b, 0xf7, 0x25, 0xab, 0xd6, 0x3a, 0xf8, 0xfb, 0xef, 0x0f, 0x07, 0x3f, 0x0e, + 0x87, 0xeb, 0x7f, 0xf1, 0x5f, 0x85, 0xbc, 0xcd, 0x3e, 0x7d, 0x9f, 0xe3, 0xcd, 0x57, 0xc7, 0xe6, + 0xe3, 0xd9, 0x7c, 0xb6, 0xd5, 0x3d, 0xb5, 0x7e, 0x6b, 0xfd, 0x28, 0xbf, 0xaf, 0x0e, 0x4f, 0x0e, + 0x7e, 0x34, 0x86, 0x8b, 0x6f, 0xbe, 0xac, 0xfa, 0x58, 0xf9, 0x7d, 0x63, 0x78, 0x92, 0xf0, 0x2f, + 0xf5, 0xe1, 0xc9, 0x1b, 0xaf, 0x51, 0x1b, 0xbe, 0x5b, 0xfa, 0xe8, 0xe8, 0xfd, 0x4a, 0xd2, 0x17, + 0xaa, 0x09, 0x5f, 0x38, 0x4c, 0xfa, 0xc2, 0x61, 0xc2, 0x17, 0x12, 0x6f, 0xa9, 0x92, 0xf0, 0x85, + 0xda, 0xf0, 0x65, 0xe9, 0xf3, 0xef, 0x56, 0x7f, 0xb4, 0x3e, 0x3c, 0x78, 0x49, 0xfa, 0xb7, 0xc6, + 0xf0, 0xe5, 0xe4, 0x20, 0x87, 0xa6, 0x08, 0xac, 0xdf, 0x00, 0xeb, 0x67, 0xea, 0x2c, 0xb6, 0x64, + 0x9e, 0x59, 0x3a, 0x8c, 0x81, 0xf7, 0x83, 0xf7, 0x83, 0xf7, 0x83, 0xf7, 0x83, 0xf7, 0x83, 0xf7, + 0x83, 0xf7, 0x83, 0xf7, 0x83, 0xf7, 0x83, 0xf7, 0x63, 0xf3, 0x81, 0xf7, 0x83, 0xf7, 0x83, 0xf7, + 0x67, 0x81, 0xf7, 0x63, 0xfe, 0xcc, 0x0a, 0x39, 0x69, 0x9f, 0x3f, 0x43, 0x38, 0xf2, 0x88, 0xa0, + 0x31, 0xef, 0x5e, 0x8a, 0x55, 0x6b, 0x44, 0xcc, 0x97, 0x63, 0x45, 0xfb, 0x94, 0x15, 0x23, 0x85, + 0x0b, 0x57, 0xaa, 0x53, 0xa5, 0x68, 0x4e, 0x36, 0x14, 0x2e, 0x5d, 0xbf, 0xe9, 0x89, 0x11, 0xf3, + 0x96, 0x85, 0x93, 0x7d, 0x7f, 0xe0, 0x79, 0x04, 0x8d, 0x91, 0x2f, 0xed, 0xef, 0xf4, 0x42, 0xae, + 0xc3, 0x8e, 0x08, 0x45, 0xe7, 0xe3, 0x73, 0x2c, 0x22, 0xd5, 0x7a, 0x44, 0x6c, 0x9a, 0xd2, 0x6e, + 0x92, 0x0a, 0x24, 0xdd, 0xb7, 0x35, 0x0f, 0xbf, 0xd2, 0x6b, 0x31, 0xf5, 0xd9, 0x35, 0x3d, 0x57, + 0xd2, 0xa4, 0xd1, 0x54, 0x9a, 0x9c, 0x36, 0x0d, 0xd6, 0xa3, 0x0c, 0xdb, 0x2f, 0x9d, 0x86, 0x65, + 0x2b, 0x78, 0xf6, 0x83, 0xf0, 0x2c, 0xd9, 0xb7, 0x1d, 0x61, 0xb9, 0xfa, 0x3a, 0x92, 0xcc, 0x9c, + 0x8c, 0x9b, 0xbb, 0xbe, 0x26, 0x45, 0xd3, 0x9b, 0x31, 0xd1, 0x9e, 0x19, 0xa1, 0xc8, 0x80, 0xd0, + 0x65, 0x3a, 0xa8, 0x32, 0x1a, 0xe4, 0x99, 0x0b, 0xf2, 0x0c, 0x05, 0x69, 0x26, 0x22, 0x5d, 0xa6, + 0x5b, 0x7b, 0x06, 0x81, 0x70, 0xd6, 0x09, 0xc5, 0x6c, 0x93, 0xd9, 0x59, 0x26, 0x63, 0xdf, 0x52, + 0x5c, 0x30, 0x5d, 0x79, 0x32, 0xfa, 0x32, 0xa4, 0x31, 0xf6, 0xe3, 0xeb, 0xc2, 0xc8, 0xc3, 0xc8, + 0xc3, 0xc8, 0xc3, 0xc8, 0x67, 0xc2, 0xc8, 0x8f, 0x4d, 0x56, 0x8e, 0x8c, 0xbb, 0xde, 0xc9, 0x53, + 0x24, 0x93, 0xa6, 0x34, 0x4f, 0x96, 0xd2, 0x3e, 0x4b, 0x11, 0xa6, 0x1d, 0xa6, 0x3d, 0x63, 0xa6, + 0x5d, 0xf7, 0xe4, 0x26, 0xaa, 0xc0, 0x00, 0x4f, 0x80, 0x80, 0x08, 0x43, 0x92, 0x61, 0x49, 0x4a, + 0xc3, 0x43, 0x6f, 0x80, 0xa8, 0x0d, 0x11, 0x9b, 0x41, 0x62, 0x33, 0x4c, 0x2c, 0x06, 0x4a, 0xaf, + 0xa1, 0xd2, 0x6c, 0xb0, 0xe8, 0x30, 0xe9, 0x92, 0xbe, 0x0f, 0x5c, 0x5f, 0x95, 0xeb, 0x14, 0xfa, + 0x1e, 0x5b, 0x97, 0x3a, 0xc1, 0xa5, 0x69, 0x3b, 0xbc, 0x10, 0x26, 0xc0, 0x39, 0x3a, 0xb8, 0x70, + 0x55, 0xcc, 0x33, 0x75, 0x68, 0xe1, 0xec, 0x99, 0x41, 0x79, 0x5a, 0x83, 0xa3, 0xe3, 0x0a, 0xf7, + 0xd2, 0xd7, 0x6b, 0xb5, 0xc3, 0x5a, 0x8e, 0x96, 0x3f, 0x23, 0x95, 0x1f, 0xad, 0xb4, 0xe6, 0x5b, + 0x35, 0xd2, 0x36, 0xcd, 0x51, 0xd8, 0x65, 0x64, 0xad, 0x33, 0x1a, 0x0b, 0x44, 0x0d, 0x44, 0x0d, + 0x44, 0x0d, 0x44, 0x4d, 0x7f, 0xf8, 0x87, 0xf2, 0xb0, 0x0f, 0xed, 0xe1, 0x1e, 0x86, 0x31, 0xf3, + 0x4c, 0x87, 0x77, 0x38, 0xce, 0x0b, 0xb0, 0x9d, 0x0f, 0xc8, 0xcd, 0x61, 0x9c, 0x56, 0x96, 0x2a, + 0xae, 0x79, 0x36, 0x43, 0x1d, 0x9b, 0x61, 0xb3, 0xcd, 0x80, 0xc3, 0x31, 0xb9, 0x3a, 0x1c, 0xd3, + 0x02, 0xaf, 0x4b, 0xc1, 0x95, 0x50, 0x47, 0xfb, 0xb3, 0x3a, 0x5a, 0x8d, 0x47, 0x4f, 0x34, 0x64, + 0xda, 0xf7, 0x0c, 0x2e, 0xf4, 0xe4, 0xe8, 0xc8, 0x98, 0xa1, 0xef, 0x6b, 0x4d, 0x81, 0xe9, 0x3d, + 0x23, 0x42, 0x72, 0x26, 0x84, 0xe4, 0x0c, 0x88, 0xde, 0x33, 0x1f, 0xdb, 0x2e, 0xb0, 0xe6, 0x1d, + 0x6c, 0x76, 0xe7, 0x16, 0xb4, 0x54, 0xa5, 0x6c, 0x7b, 0x22, 0x63, 0x3b, 0xcb, 0xb1, 0xf9, 0x7e, + 0xdf, 0xec, 0x9b, 0x1b, 0x2a, 0x90, 0x2e, 0xc5, 0x31, 0xa2, 0x30, 0x9b, 0xad, 0xd0, 0xfa, 0xcf, + 0x77, 0x83, 0x67, 0x5b, 0x50, 0x76, 0xf8, 0x28, 0xd4, 0x16, 0x33, 0x57, 0x5f, 0xa7, 0x59, 0x4c, + 0xae, 0xb4, 0xe1, 0x0a, 0x6f, 0x57, 0xfb, 0xb4, 0x75, 0xa0, 0x54, 0x47, 0x40, 0x54, 0x5f, 0xe0, + 0x53, 0x57, 0x80, 0x53, 0x7b, 0x20, 0x53, 0x7b, 0xc0, 0x52, 0x6b, 0x60, 0x92, 0xd7, 0x26, 0x6d, + 0x5b, 0x5b, 0x54, 0x88, 0x39, 0xba, 0xd5, 0xb5, 0x7b, 0xae, 0xe7, 0x8a, 0xed, 0x1b, 0xb9, 0x4d, + 0x15, 0x70, 0xe9, 0xca, 0xdb, 0x02, 0x33, 0x2d, 0x85, 0x89, 0xda, 0xb2, 0x19, 0x3a, 0xb3, 0x17, + 0xfa, 0xb3, 0x15, 0xba, 0xb3, 0x13, 0x64, 0xd9, 0x08, 0xb2, 0xec, 0x03, 0x49, 0xb6, 0xc1, 0x2c, + 0x35, 0xd1, 0x55, 0x48, 0x38, 0xbf, 0x35, 0x9f, 0xf5, 0x17, 0x24, 0x2f, 0x5c, 0x3f, 0xe5, 0x95, + 0xc9, 0x38, 0x74, 0xa2, 0x35, 0x22, 0x8b, 0xca, 0xe4, 0xcc, 0x04, 0xb3, 0xb4, 0x57, 0x26, 0xdb, + 0x5d, 0xd7, 0x8a, 0x89, 0x24, 0x51, 0xe5, 0xc4, 0x54, 0x02, 0x6a, 0x27, 0x50, 0x3b, 0x61, 0xcc, + 0x08, 0xb1, 0x19, 0x23, 0x16, 0xa3, 0xa4, 0xd7, 0x38, 0x69, 0x36, 0x52, 0xd3, 0x27, 0x40, 0x5f, + 0x3b, 0xa1, 0xff, 0xa4, 0xdc, 0x12, 0x76, 0x69, 0x10, 0x5c, 0x7b, 0xf9, 0xe4, 0xdc, 0xd4, 0x48, + 0xee, 0x40, 0xa9, 0x9e, 0x33, 0xb1, 0xb0, 0x44, 0x0e, 0x27, 0xbe, 0x3e, 0x8d, 0xbb, 0x29, 0xc3, + 0xdd, 0xc0, 0xdd, 0xc0, 0xdd, 0xa4, 0xd1, 0xdd, 0xe8, 0xc6, 0xc6, 0xf4, 0x18, 0x99, 0x0b, 0x2b, + 0x13, 0x63, 0x66, 0x72, 0x63, 0xc6, 0x61, 0xd4, 0xf8, 0x8c, 0x1b, 0x97, 0x91, 0x63, 0x37, 0x76, + 0xec, 0x46, 0x8f, 0xd5, 0xf8, 0xd1, 0x18, 0x41, 0x22, 0x63, 0x48, 0x8f, 0xc1, 0x97, 0xf6, 0x4b, + 0xaf, 0xef, 0xc9, 0xd1, 0x93, 0xb7, 0xec, 0xae, 0xcb, 0x51, 0x40, 0x58, 0x25, 0x94, 0xd1, 0xf4, + 0x07, 0xbd, 0xd1, 0x53, 0x1b, 0xa2, 0xb7, 0xab, 0x8e, 0xdd, 0x99, 0x9f, 0x9e, 0x9c, 0x93, 0x7c, + 0x75, 0x71, 0x31, 0x57, 0x36, 0xff, 0xc6, 0x73, 0xcc, 0xeb, 0x76, 0x81, 0xce, 0xe9, 0x6d, 0x91, + 0xb2, 0x64, 0x56, 0x74, 0xb6, 0x4a, 0x61, 0x23, 0x73, 0x15, 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, + 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, 0x90, 0x39, 0x90, 0xb9, + 0xac, 0x92, 0x39, 0x82, 0x39, 0x2f, 0xe9, 0xe4, 0x72, 0xe3, 0x27, 0x22, 0xe9, 0xd8, 0xdc, 0x44, + 0x00, 0x92, 0x73, 0xe0, 0x73, 0xe0, 0x73, 0xe0, 0x73, 0xba, 0x4c, 0x16, 0x3d, 0x9b, 0x8b, 0xe5, + 0xd0, 0x72, 0xb9, 0x32, 0xb8, 0x1c, 0xb8, 0x1c, 0xb8, 0xdc, 0x2e, 0x70, 0x39, 0x2a, 0x83, 0x38, + 0x15, 0x40, 0x54, 0x66, 0x95, 0xb8, 0x2d, 0x49, 0xca, 0xae, 0x98, 0x0d, 0x25, 0x9b, 0xc1, 0xe4, + 0x34, 0x9c, 0xfc, 0x06, 0x94, 0xdb, 0x90, 0x1a, 0x33, 0xa8, 0xc6, 0x0c, 0xab, 0x11, 0x03, 0x4b, + 0x6b, 0x68, 0x89, 0x0d, 0x2e, 0x9b, 0xe1, 0x9d, 0x0a, 0x12, 0xbe, 0xfd, 0xe0, 0x89, 0x0e, 0x9f, + 0xf6, 0x4f, 0xf6, 0xf7, 0x44, 0x30, 0x93, 0x0a, 0x9e, 0x89, 0xae, 0x3d, 0xf0, 0x22, 0x0d, 0xec, + 0xda, 0x9e, 0x14, 0x5c, 0x72, 0x79, 0x9a, 0xd7, 0xb2, 0xbb, 0x04, 0x13, 0xae, 0xc1, 0x9c, 0x8b, + 0x30, 0xe5, 0x2a, 0x8c, 0xbb, 0x0c, 0xe3, 0xae, 0xc3, 0xa8, 0x0b, 0xe1, 0x71, 0x25, 0x4c, 0x2e, + 0x65, 0xfa, 0x24, 0xc9, 0xf3, 0x33, 0x89, 0xfb, 0xf5, 0x21, 0x08, 0x3c, 0x61, 0xfb, 0x9c, 0x1b, + 0x76, 0x82, 0xc4, 0xcb, 0x7b, 0xf9, 0x50, 0x14, 0x06, 0x25, 0x29, 0x8c, 0xa7, 0xdf, 0x3e, 0x05, + 0x5e, 0x47, 0xb9, 0x3d, 0xc1, 0x8f, 0x0c, 0x16, 0xe4, 0xc3, 0x51, 0xc3, 0x51, 0xc3, 0x51, 0xc3, + 0x51, 0xc3, 0x51, 0xb3, 0xed, 0x57, 0xb2, 0xf9, 0x39, 0xbf, 0xb2, 0xbe, 0x75, 0x46, 0x91, 0xb4, + 0xf3, 0x76, 0x92, 0xfe, 0xf0, 0xda, 0xa3, 0x7d, 0xae, 0xf9, 0x3c, 0x29, 0x71, 0xab, 0x4b, 0xe2, + 0x99, 0xe6, 0xf9, 0x24, 0xca, 0x67, 0x1c, 0xf4, 0x62, 0xd8, 0x5c, 0xcd, 0xab, 0x9c, 0xfd, 0x7d, + 0xe7, 0x55, 0x8e, 0x61, 0x8e, 0x50, 0xaa, 0xd5, 0x6e, 0x2f, 0x9f, 0xd2, 0x5a, 0x60, 0x92, 0x6b, + 0x32, 0x49, 0xd7, 0x57, 0x22, 0xfc, 0x66, 0x7b, 0xa6, 0x98, 0xe4, 0x54, 0x3e, 0x98, 0x24, 0x98, + 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, + 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x64, 0xea, 0x99, 0xa4, 0x17, 0x38, 0xb6, 0x37, 0x9d, 0xfc, + 0xc6, 0x4e, 0x24, 0xe7, 0xc5, 0x83, 0x47, 0x82, 0x47, 0x82, 0x47, 0x82, 0x47, 0x82, 0x47, 0xb2, + 0xed, 0x57, 0xd2, 0xf9, 0xc3, 0xbf, 0xb2, 0xc0, 0x14, 0x73, 0x89, 0x7f, 0xf5, 0x8c, 0x73, 0xcf, + 0x25, 0x99, 0xe7, 0x1b, 0xff, 0x72, 0x8d, 0x8f, 0x0c, 0xc8, 0xe6, 0x1a, 0x01, 0x9b, 0x78, 0x03, + 0x79, 0x99, 0x93, 0x6c, 0x16, 0x62, 0x1b, 0xe2, 0xc7, 0x66, 0x37, 0x6d, 0x1d, 0x9b, 0xd6, 0xec, + 0xa6, 0xc5, 0x3c, 0xe7, 0x5c, 0xcd, 0x73, 0x4e, 0x89, 0x09, 0x43, 0xf4, 0x23, 0x85, 0xd1, 0x8f, + 0x50, 0xf4, 0x02, 0x25, 0xcc, 0x85, 0x3f, 0x16, 0xe4, 0x23, 0xfe, 0x81, 0xf8, 0x07, 0xe2, 0x1f, + 0x88, 0x7f, 0x20, 0xfe, 0x81, 0xf8, 0x07, 0xe2, 0x1f, 0x88, 0x7f, 0x20, 0xfe, 0x81, 0xf8, 0x07, + 0xe2, 0x1f, 0xd8, 0xb4, 0x88, 0x7f, 0x20, 0xfe, 0x81, 0xf8, 0xc7, 0xae, 0xc5, 0x3f, 0x32, 0xdd, + 0x67, 0x87, 0xb8, 0x51, 0xf0, 0x92, 0xbc, 0x34, 0x36, 0x0e, 0x8e, 0xdb, 0xdd, 0xc6, 0x7f, 0x93, + 0x0c, 0x85, 0xe1, 0x53, 0x1a, 0x42, 0x85, 0xe1, 0x0e, 0xc3, 0x99, 0x09, 0xbf, 0x31, 0x85, 0xdd, + 0xd0, 0xbc, 0x2e, 0x93, 0x61, 0x35, 0x34, 0xaf, 0x43, 0xf3, 0xba, 0xf4, 0x84, 0xc9, 0x18, 0x46, + 0x6c, 0x27, 0x52, 0xaf, 0x06, 0x83, 0xac, 0xe5, 0x11, 0xdc, 0x0b, 0xae, 0x00, 0x4e, 0x7a, 0x19, + 0x61, 0x91, 0x4c, 0x7a, 0x4b, 0xd4, 0x3c, 0x8a, 0xc9, 0x6f, 0x89, 0x3a, 0xc7, 0xe5, 0x92, 0x2b, + 0x70, 0xc9, 0x70, 0xc9, 0x70, 0xc9, 0x39, 0x72, 0xc9, 0xe8, 0x27, 0xab, 0xfb, 0x81, 0xa2, 0x9f, + 0x6c, 0xd6, 0x5d, 0x83, 0x39, 0x17, 0x61, 0xca, 0x55, 0x18, 0x77, 0x19, 0xc6, 0x5d, 0x87, 0x51, + 0x17, 0xc2, 0xe3, 0x4a, 0x98, 0x5c, 0x0a, 0x3f, 0xdb, 0x5b, 0xda, 0xaf, 0xe8, 0x27, 0x9b, 0x05, + 0x25, 0x41, 0x3f, 0x59, 0x38, 0x6a, 0x38, 0x6a, 0x38, 0x6a, 0x38, 0xea, 0x9d, 0x75, 0xd4, 0xe8, + 0x02, 0x44, 0xf6, 0x07, 0x5d, 0x80, 0x58, 0xc5, 0xa3, 0x0b, 0x10, 0xba, 0x00, 0x19, 0x52, 0x39, + 0x74, 0x01, 0xca, 0xa5, 0x34, 0x9c, 0x83, 0x5b, 0x97, 0x49, 0xa2, 0x9f, 0x2c, 0x98, 0x24, 0x98, + 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, + 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0xe4, 0x5b, 0xd5, 0x10, 0xfd, 0x64, 0xf9, 0x78, 0x64, 0x05, + 0x3c, 0x12, 0x3c, 0x12, 0x3c, 0x12, 0x3c, 0x32, 0x45, 0x3c, 0x12, 0xfd, 0x54, 0xf2, 0xc6, 0x25, + 0xd1, 0x4f, 0x05, 0xfd, 0x54, 0x72, 0x02, 0xb1, 0x0d, 0xf1, 0x63, 0xf4, 0x53, 0x41, 0x3f, 0x15, + 0xf4, 0x53, 0x41, 0x3f, 0x15, 0x44, 0x3f, 0xf2, 0x1e, 0xfd, 0x40, 0x3f, 0x59, 0xc4, 0x3f, 0x10, + 0xff, 0x40, 0xfc, 0x03, 0xf1, 0x0f, 0xc4, 0x3f, 0x10, 0xff, 0x40, 0xfc, 0x03, 0x54, 0x0a, 0xf1, + 0x0f, 0xc4, 0x3f, 0x10, 0xff, 0x40, 0xfc, 0x03, 0xf1, 0x0f, 0xc4, 0x3f, 0x10, 0xff, 0x30, 0x1a, + 0xff, 0x40, 0x3f, 0xd9, 0x35, 0xe4, 0x65, 0xa0, 0x9f, 0xec, 0xb8, 0x43, 0x5a, 0x56, 0x3b, 0xd5, + 0xed, 0x65, 0x48, 0x0b, 0x0b, 0x7f, 0x8a, 0x67, 0xb6, 0xf0, 0x5a, 0xe1, 0xc2, 0x95, 0xea, 0x54, + 0x29, 0xda, 0xbe, 0x52, 0x85, 0x4b, 0xd7, 0x6f, 0x7a, 0xa2, 0x27, 0xfc, 0xa8, 0x58, 0xd0, 0x1f, + 0x78, 0x1e, 0x61, 0xef, 0xc0, 0x4b, 0xfb, 0x3b, 0x9f, 0xb0, 0xeb, 0xb0, 0x23, 0x42, 0xd1, 0xf9, + 0xf8, 0x1c, 0x8b, 0xca, 0x94, 0xa6, 0x31, 0xd9, 0xb9, 0x0c, 0xd8, 0xb7, 0x02, 0x69, 0x2f, 0xcb, + 0x70, 0xe0, 0x28, 0x3f, 0x26, 0x09, 0x57, 0xe3, 0x9f, 0x73, 0x1e, 0xff, 0x9a, 0xf6, 0x65, 0xdf, + 0x93, 0xed, 0xcf, 0x93, 0x5f, 0x73, 0x33, 0xf9, 0x31, 0xed, 0x8b, 0x4e, 0xbf, 0x7d, 0x17, 0xff, + 0x98, 0xf6, 0xe9, 0xf8, 0xde, 0x7f, 0x8b, 0x6e, 0x3d, 0x7e, 0x9b, 0xc6, 0x18, 0xeb, 0x37, 0x95, + 0x7a, 0xaf, 0xa8, 0x79, 0x2b, 0x50, 0x6f, 0x81, 0x34, 0xab, 0xbe, 0x5e, 0x05, 0xd2, 0xb7, 0xcc, + 0x7a, 0xae, 0xa4, 0x49, 0x51, 0x26, 0xde, 0xd8, 0xee, 0xba, 0x56, 0xb4, 0x85, 0x35, 0x5d, 0x96, + 0xc4, 0xef, 0x92, 0xfa, 0x59, 0x52, 0xbf, 0x4a, 0xe3, 0x47, 0x75, 0xe9, 0x00, 0x91, 0x91, 0x48, + 0xa3, 0x71, 0xd0, 0xe8, 0x08, 0xb5, 0x3b, 0x3e, 0x3d, 0x06, 0x6b, 0x7b, 0xf3, 0xb2, 0xdd, 0x15, + 0xb6, 0x54, 0x4a, 0xdd, 0xca, 0x98, 0x0a, 0x25, 0xdc, 0x6e, 0x65, 0x37, 0x5f, 0x8f, 0x2d, 0xd6, + 0xa2, 0xe0, 0x4c, 0x2a, 0x03, 0xb6, 0x5b, 0x83, 0x69, 0xf4, 0x38, 0xbe, 0xde, 0x96, 0xda, 0xa1, + 0xa7, 0xc9, 0xb8, 0xb6, 0xf6, 0x01, 0x3a, 0xcb, 0x19, 0xf4, 0x97, 0x29, 0xe8, 0x2e, 0x3f, 0x20, + 0x2b, 0x2b, 0x20, 0x2b, 0x17, 0x20, 0x29, 0x03, 0x30, 0x6b, 0x1f, 0x75, 0x35, 0xc9, 0x8e, 0xfb, + 0x84, 0xd8, 0x8e, 0x23, 0xfa, 0x4a, 0x9f, 0x8a, 0xcc, 0x77, 0x21, 0x89, 0xaf, 0xae, 0x0b, 0xab, + 0x6a, 0xad, 0x8d, 0xd2, 0xde, 0x43, 0x84, 0xa2, 0xb6, 0x89, 0xae, 0x76, 0x89, 0xaa, 0x36, 0x89, + 0xbc, 0xf6, 0x88, 0xbc, 0xb6, 0x88, 0xb4, 0x76, 0x28, 0x5d, 0xec, 0x4f, 0x7b, 0x6d, 0x0f, 0x61, + 0xdb, 0x63, 0xcd, 0x6d, 0x8d, 0x35, 0xe0, 0xe4, 0xf7, 0xba, 0x8c, 0xb0, 0xf6, 0xb6, 0xc3, 0xb4, + 0x6d, 0x85, 0x61, 0x88, 0x61, 0x88, 0x61, 0x88, 0x33, 0x62, 0x88, 0xb5, 0x37, 0x23, 0x22, 0x68, + 0x36, 0x44, 0xd4, 0x4c, 0x88, 0x20, 0xde, 0x4d, 0xd9, 0x0c, 0x88, 0xb8, 0xf6, 0x9f, 0xba, 0x99, + 0x0f, 0x47, 0xd7, 0x14, 0x82, 0x4c, 0x21, 0x69, 0xb3, 0x1d, 0xae, 0x25, 0x25, 0x6c, 0x96, 0xc3, + 0xb2, 0xac, 0x29, 0x4d, 0xd5, 0xb4, 0x72, 0x87, 0x34, 0xb5, 0xb7, 0x25, 0xa5, 0x6d, 0x3b, 0x0a, + 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, 0xa4, 0x09, + 0xa4, 0x49, 0x8d, 0x34, 0x91, 0xfb, 0xdf, 0x32, 0xf7, 0x1f, 0xe7, 0xb9, 0x33, 0x98, 0xf1, 0xd7, + 0x33, 0x94, 0x5c, 0xeb, 0xd0, 0x71, 0xed, 0xf9, 0xfe, 0x0a, 0xf2, 0xfd, 0x29, 0xc0, 0xf5, 0xc8, + 0xf7, 0xbf, 0xfd, 0x17, 0x21, 0xdf, 0x0f, 0xf2, 0x0f, 0xf2, 0x0f, 0xf2, 0x9f, 0x72, 0xf2, 0x8f, + 0x7c, 0xff, 0x1a, 0x46, 0x18, 0xf9, 0x7e, 0x18, 0x62, 0x18, 0x62, 0x18, 0x62, 0x44, 0x61, 0x11, + 0x85, 0x45, 0x14, 0x96, 0x7e, 0xbb, 0xcd, 0x2f, 0x29, 0xa2, 0xb0, 0xc6, 0x97, 0x15, 0x51, 0x58, + 0x26, 0xa4, 0x89, 0x7c, 0x3f, 0x90, 0x26, 0x90, 0x26, 0x90, 0x26, 0x90, 0x26, 0x90, 0x26, 0x90, + 0x26, 0x90, 0x26, 0x90, 0x26, 0x90, 0xa6, 0xbe, 0x2b, 0x20, 0xdf, 0xdf, 0xd1, 0xd1, 0x39, 0x6e, + 0x8b, 0x74, 0xff, 0x1e, 0xe3, 0xb2, 0xe9, 0x5a, 0x2e, 0x13, 0xcb, 0x54, 0xd8, 0xaa, 0x2e, 0x62, + 0xdb, 0x3e, 0x1f, 0x9b, 0xa9, 0xc7, 0xfa, 0x8b, 0xbb, 0xde, 0x37, 0xd6, 0x54, 0x83, 0x6d, 0x97, + 0x9f, 0x71, 0xd9, 0x37, 0x58, 0xed, 0xcd, 0x57, 0x79, 0xbd, 0xc5, 0x7d, 0xfb, 0x12, 0xad, 0xb1, + 0x3c, 0x85, 0x50, 0x7e, 0xeb, 0x5b, 0x1b, 0x14, 0xef, 0xbc, 0x0e, 0x3b, 0x89, 0x2f, 0xb0, 0xa6, + 0x4a, 0x6c, 0x56, 0x9e, 0xb3, 0x31, 0x2d, 0xdf, 0x86, 0x7e, 0xcf, 0xd2, 0xec, 0xd1, 0xaf, 0xdd, + 0x44, 0x47, 0xb6, 0xe4, 0xd3, 0xda, 0x78, 0xb3, 0x36, 0x7e, 0xbc, 0xc8, 0x83, 0xa3, 0x07, 0x93, + 0x32, 0xb3, 0xb3, 0x69, 0x01, 0x4c, 0xe1, 0xd1, 0x0b, 0x1e, 0xb6, 0x88, 0x7c, 0x4d, 0x15, 0x26, + 0xbe, 0xce, 0x86, 0x4f, 0x78, 0xbb, 0x0a, 0xb6, 0xad, 0x23, 0x58, 0x3a, 0x22, 0x56, 0x1a, 0xb6, + 0x8e, 0xee, 0x90, 0x94, 0xf6, 0x10, 0x94, 0xf6, 0x90, 0x93, 0x9e, 0xad, 0x65, 0x06, 0xe8, 0x6d, + 0x5b, 0x73, 0x56, 0x78, 0x0c, 0x6d, 0x47, 0x74, 0x07, 0x9e, 0x15, 0x0a, 0xa9, 0xec, 0x50, 0xe9, + 0xab, 0x2a, 0x5d, 0xba, 0x32, 0x1a, 0x4a, 0x31, 0x6c, 0x5b, 0xdd, 0xdb, 0x97, 0x6c, 0x1b, 0x93, + 0x6d, 0x67, 0x9a, 0x6d, 0x9d, 0x0e, 0x1a, 0xae, 0xad, 0xc4, 0x54, 0x53, 0xcf, 0xb8, 0x25, 0x05, + 0xd6, 0xd2, 0x3b, 0x4e, 0xf3, 0x96, 0xd7, 0xbe, 0xf5, 0x29, 0x4c, 0x00, 0xa1, 0x29, 0xa0, 0x32, + 0x09, 0xe4, 0xa6, 0x81, 0xdc, 0x44, 0xd0, 0x9a, 0x0a, 0xbd, 0xb1, 0x48, 0x5d, 0x59, 0x26, 0x5d, + 0x26, 0x64, 0x7a, 0x41, 0xe1, 0xdb, 0x0f, 0x1e, 0x81, 0x56, 0x4d, 0x36, 0x42, 0x7c, 0x7d, 0xcd, + 0x2b, 0x7e, 0x26, 0xba, 0xf6, 0xc0, 0x8b, 0x16, 0xbc, 0x6b, 0x7b, 0x52, 0xfb, 0xf5, 0x69, 0x82, + 0xfe, 0xda, 0x4d, 0x18, 0xa5, 0x29, 0x63, 0x30, 0x69, 0xd4, 0xa6, 0x8d, 0xcd, 0xc4, 0xb1, 0x99, + 0x3a, 0x1e, 0x93, 0xa7, 0xd7, 0xf4, 0x69, 0x36, 0x81, 0xd3, 0x47, 0x40, 0x36, 0x2f, 0x93, 0xb0, + 0xd6, 0x7e, 0x09, 0x1b, 0x95, 0xd3, 0xda, 0x3c, 0x5f, 0x23, 0x70, 0x09, 0x85, 0x13, 0x7c, 0x13, + 0xe1, 0xb3, 0xa5, 0xb5, 0x14, 0x7f, 0x69, 0xb5, 0xe6, 0xc5, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, + 0xc0, 0x21, 0x68, 0xd5, 0xf8, 0x81, 0xeb, 0xab, 0xc3, 0x0a, 0xa1, 0x3f, 0x68, 0x10, 0x5c, 0x9a, + 0xa6, 0x32, 0x6b, 0xf2, 0x87, 0x76, 0xda, 0x17, 0xf9, 0xdc, 0x3c, 0xe2, 0xf2, 0x9e, 0xa9, 0x18, + 0xe2, 0xca, 0xad, 0xa9, 0x1c, 0x86, 0x52, 0x1f, 0xa2, 0xed, 0x3b, 0xbf, 0xf4, 0x84, 0x15, 0x5d, + 0xa6, 0x96, 0xbe, 0x5a, 0x39, 0xae, 0x1e, 0xd7, 0x1b, 0x95, 0xe3, 0x5a, 0x8e, 0x74, 0x20, 0x23, + 0xc3, 0xc3, 0x5a, 0x3b, 0x01, 0xb3, 0xa3, 0x44, 0x0d, 0x39, 0xca, 0x9e, 0x91, 0x02, 0x90, 0x0d, + 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, 0x90, 0x0d, + 0x90, 0x9d, 0x42, 0x90, 0x8d, 0x21, 0xa0, 0xfa, 0xaa, 0xbe, 0xe3, 0x02, 0xe6, 0xe2, 0xb8, 0x58, + 0xb3, 0xb8, 0x58, 0x26, 0xa6, 0xa5, 0x2d, 0xa3, 0xbe, 0x85, 0xd3, 0x71, 0xc0, 0x5b, 0x4f, 0xbb, + 0xc6, 0x25, 0x98, 0xa3, 0xa3, 0x6d, 0xe3, 0xa2, 0x95, 0xd5, 0x5e, 0x6a, 0x53, 0x41, 0xa9, 0x4d, + 0x96, 0x18, 0x11, 0x4a, 0x6d, 0x50, 0x6a, 0x83, 0x52, 0x1b, 0x04, 0x7d, 0x10, 0xf4, 0x41, 0xd0, + 0x27, 0x5b, 0x41, 0x1f, 0x94, 0xda, 0x68, 0xf9, 0xad, 0x28, 0xb5, 0x81, 0x43, 0x80, 0x43, 0x80, + 0x43, 0xc8, 0xbe, 0x43, 0x40, 0x16, 0x60, 0xe9, 0x0f, 0xb2, 0x00, 0x6f, 0x12, 0x83, 0x2c, 0xc0, + 0x7a, 0x4b, 0x8f, 0x2c, 0x40, 0x36, 0x74, 0x00, 0x59, 0x80, 0x14, 0xc1, 0x6c, 0x94, 0xda, 0x00, + 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, 0x64, 0x03, + 0x64, 0x03, 0x64, 0xa3, 0xd4, 0x86, 0xb3, 0xd4, 0x46, 0x43, 0x47, 0x54, 0x7d, 0xeb, 0x86, 0x06, + 0xb7, 0xfa, 0x57, 0xb8, 0xa0, 0xa5, 0x7a, 0x69, 0x93, 0x76, 0x9b, 0xb7, 0xf2, 0x5b, 0xff, 0x4e, + 0xb4, 0x7f, 0x8f, 0xee, 0xab, 0xfd, 0x7b, 0x7c, 0x5f, 0xb7, 0xf1, 0x6d, 0x65, 0x70, 0xe6, 0x6e, + 0x34, 0x45, 0x43, 0xea, 0x6b, 0x8f, 0x16, 0x5f, 0x0f, 0x4d, 0xd1, 0x18, 0x59, 0x35, 0x9a, 0xa2, + 0xa1, 0x29, 0xda, 0x4f, 0x2e, 0x84, 0xa6, 0x68, 0x29, 0x0d, 0xb4, 0xa1, 0x52, 0xd3, 0x40, 0x20, + 0x0d, 0x95, 0x9a, 0x5b, 0x5c, 0x90, 0x68, 0xa6, 0xd7, 0x6a, 0x14, 0xa1, 0x7b, 0xb6, 0xd7, 0xeb, + 0x63, 0x79, 0xad, 0xdc, 0x3c, 0x2e, 0x95, 0x4a, 0x48, 0x21, 0x20, 0x85, 0x60, 0xd0, 0xe2, 0xb1, + 0x59, 0x3e, 0x1e, 0x0b, 0x48, 0x13, 0xdb, 0xc9, 0x66, 0x0a, 0x41, 0xeb, 0x70, 0xb2, 0x45, 0xfb, + 0x52, 0x47, 0x0a, 0xe1, 0xf5, 0xc6, 0xf3, 0x98, 0x42, 0x28, 0x97, 0x4a, 0xc8, 0x22, 0xbc, 0x6d, + 0xf5, 0x73, 0x98, 0x45, 0xa8, 0x97, 0xf2, 0xb5, 0xfc, 0x48, 0x20, 0xa4, 0x65, 0xfb, 0x14, 0x42, + 0xd1, 0x0d, 0x85, 0x7c, 0xb2, 0x42, 0xd1, 0x19, 0x38, 0xda, 0xb3, 0x00, 0xfb, 0xf3, 0xa5, 0x3a, + 0x8b, 0xa2, 0xe8, 0xb0, 0xfc, 0x08, 0x31, 0x01, 0xcb, 0x03, 0xcb, 0x03, 0xcb, 0x03, 0xcb, 0xeb, + 0xd5, 0xf8, 0x5d, 0x3e, 0x84, 0x85, 0xc4, 0x35, 0x59, 0x5a, 0x73, 0x9c, 0x2b, 0x43, 0x67, 0x88, + 0xb7, 0x6e, 0x43, 0x74, 0x86, 0x48, 0xad, 0x07, 0x47, 0xbe, 0xc1, 0x8c, 0x87, 0x46, 0xbe, 0x41, + 0xcb, 0x86, 0x40, 0xbe, 0x01, 0x1c, 0x05, 0x1c, 0x05, 0x1c, 0x25, 0xc3, 0x1c, 0x05, 0xf9, 0x86, + 0xa5, 0x3f, 0xc8, 0x37, 0xbc, 0x49, 0x0c, 0xf2, 0x0d, 0x6b, 0xaf, 0x3e, 0xf2, 0x0d, 0xa9, 0x5f, + 0x7e, 0xe4, 0x1b, 0xd2, 0xb2, 0x7d, 0x90, 0x6f, 0x00, 0x96, 0x07, 0x96, 0x07, 0x96, 0x07, 0x96, + 0x7f, 0xab, 0xc6, 0x23, 0xdf, 0x90, 0x92, 0x80, 0x56, 0x2e, 0xf3, 0x0d, 0x38, 0x1e, 0x47, 0xb5, + 0xbe, 0x46, 0xd7, 0x35, 0x2d, 0x87, 0xe2, 0xfe, 0x18, 0xdf, 0x4d, 0x06, 0xcf, 0xc2, 0xc9, 0xa0, + 0xab, 0xac, 0x7e, 0x28, 0x44, 0xaf, 0xaf, 0x45, 0x25, 0x5e, 0x13, 0x57, 0x0b, 0x17, 0xc6, 0xe9, + 0x38, 0x46, 0xd0, 0x87, 0xd3, 0x71, 0x38, 0x1d, 0xf7, 0x93, 0x0b, 0xe1, 0x74, 0x5c, 0x4a, 0x79, + 0x20, 0xb2, 0xd5, 0x06, 0x78, 0x1e, 0xb2, 0xd5, 0x5b, 0x5c, 0x10, 0x73, 0x0c, 0x10, 0xd2, 0x42, + 0x48, 0x0b, 0x21, 0x2d, 0x84, 0xb4, 0x10, 0xd2, 0xa2, 0x59, 0xac, 0x45, 0x26, 0x19, 0xb5, 0x40, + 0x0d, 0x06, 0x8a, 0xce, 0xe7, 0x24, 0x09, 0xa4, 0x73, 0x42, 0x87, 0x28, 0x90, 0x82, 0x07, 0x82, + 0x07, 0x82, 0x07, 0xd2, 0xac, 0xf1, 0x28, 0x90, 0x5a, 0xfa, 0x83, 0x02, 0xa9, 0x37, 0x89, 0x41, + 0x4f, 0xd7, 0xf5, 0x96, 0x9e, 0xb1, 0x3a, 0xea, 0x10, 0x4b, 0x6f, 0xd6, 0x0f, 0xd0, 0x5d, 0x15, + 0xad, 0x5c, 0xdf, 0x04, 0x1d, 0x72, 0x95, 0xa1, 0x5e, 0x60, 0x1b, 0x38, 0x1a, 0xf7, 0x66, 0x9a, + 0x86, 0xa3, 0x71, 0x69, 0xe5, 0x45, 0x48, 0x36, 0x98, 0xe1, 0x3d, 0x48, 0x36, 0x6c, 0xb5, 0x11, + 0x90, 0x6c, 0x40, 0xa8, 0x07, 0xa1, 0x1e, 0x84, 0x7a, 0x90, 0x6c, 0x58, 0x89, 0x8d, 0x90, 0x6c, + 0x20, 0x58, 0x37, 0x24, 0x1b, 0xe0, 0x81, 0xe0, 0x81, 0xe0, 0x81, 0xb2, 0xef, 0x81, 0x90, 0x6c, + 0x58, 0xfa, 0x83, 0x64, 0xc3, 0x9b, 0xc4, 0x20, 0xd9, 0xb0, 0xde, 0xd2, 0x23, 0xd9, 0x90, 0xea, + 0xa5, 0x47, 0xb2, 0x21, 0x47, 0x41, 0xac, 0x7c, 0x27, 0x1b, 0x70, 0x2e, 0x8e, 0x6a, 0xa1, 0xd3, + 0xb1, 0xc0, 0x69, 0x39, 0x20, 0xf7, 0x39, 0xe8, 0xaa, 0x9b, 0xd7, 0xbb, 0xca, 0xe2, 0x41, 0x39, + 0x2d, 0x49, 0x2c, 0xad, 0xc9, 0x2b, 0xed, 0x87, 0xe2, 0x2a, 0x38, 0x14, 0x97, 0x06, 0x9e, 0x8c, + 0x43, 0x71, 0xeb, 0x04, 0xb6, 0xf4, 0x1d, 0x8a, 0x1b, 0xf8, 0x4a, 0x84, 0x92, 0xe2, 0x58, 0x5c, + 0x7c, 0x65, 0xe4, 0xaa, 0x53, 0x18, 0x56, 0x43, 0xae, 0xda, 0x4c, 0xd8, 0x2c, 0xef, 0xb9, 0xea, + 0x30, 0x0c, 0x34, 0x1a, 0x93, 0xa5, 0x8d, 0x10, 0x5f, 0x9f, 0x26, 0x92, 0x5f, 0x46, 0x24, 0x1f, + 0x91, 0xfc, 0x34, 0x99, 0x22, 0x1e, 0x93, 0x44, 0x13, 0x6b, 0xd1, 0x1d, 0xc9, 0xd7, 0x6d, 0xaa, + 0xa6, 0x17, 0xb6, 0x07, 0xea, 0x49, 0xf8, 0xca, 0x75, 0x22, 0x16, 0x6c, 0x75, 0x6d, 0xd7, 0xa3, + 0x53, 0xcd, 0xc9, 0xee, 0x5a, 0x25, 0x94, 0x48, 0x77, 0x68, 0xa3, 0xd9, 0x64, 0x46, 0x8e, 0xc3, + 0xd8, 0x31, 0x1a, 0x3d, 0x2e, 0xe3, 0xc7, 0x6e, 0x04, 0xd9, 0x8d, 0x21, 0xaf, 0x51, 0xa4, 0x31, + 0x8e, 0x44, 0x46, 0x72, 0xfa, 0x68, 0xc8, 0xd2, 0x9e, 0x49, 0x2c, 0xaf, 0x5e, 0xa5, 0xdc, 0x33, + 0xb1, 0x09, 0x3b, 0x22, 0x14, 0x41, 0x9b, 0x11, 0x9d, 0xfc, 0xa1, 0xdd, 0xf3, 0xfb, 0x5c, 0x19, + 0x52, 0x26, 0xdf, 0xb2, 0x24, 0x8e, 0x29, 0x6d, 0x36, 0x95, 0xc7, 0x98, 0x3e, 0x23, 0xb6, 0x08, + 0xf3, 0x2a, 0xc2, 0x90, 0x49, 0x35, 0xad, 0x22, 0xe5, 0xa3, 0x6a, 0xb5, 0xde, 0xa8, 0x56, 0x4b, + 0x8d, 0xc3, 0x46, 0xe9, 0xb8, 0x56, 0x2b, 0xd7, 0xcb, 0xb5, 0x1c, 0x6b, 0xcd, 0x5e, 0x36, 0xaf, + 0xde, 0xca, 0x48, 0xd2, 0x98, 0x60, 0x57, 0x16, 0x1e, 0xec, 0x8e, 0xe5, 0x3c, 0x09, 0xe7, 0xab, + 0x1c, 0xf4, 0xe8, 0x09, 0xc7, 0x9c, 0x34, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, + 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x8d, 0x5c, 0x33, 0x8d, + 0xbe, 0xed, 0x7c, 0x15, 0xca, 0xea, 0x06, 0x61, 0xcf, 0x56, 0x3c, 0x74, 0x63, 0x5e, 0x24, 0x38, + 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, 0x07, 0x38, + 0x07, 0x38, 0x07, 0x38, 0xc7, 0x2e, 0x70, 0x0e, 0x4f, 0xf8, 0x8f, 0xd1, 0x71, 0x20, 0x3e, 0xce, + 0x11, 0x8b, 0x04, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, + 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0xc8, 0x2d, 0xe7, 0x08, 0x06, 0xca, 0x0a, 0xba, + 0x56, 0x10, 0x76, 0x44, 0x48, 0x4f, 0x37, 0xe6, 0xa4, 0x81, 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, + 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, 0x69, 0x80, 0x69, 0xe4, + 0x96, 0x69, 0x84, 0xc2, 0x11, 0xee, 0x37, 0xd1, 0xb1, 0x7c, 0xdb, 0xf9, 0x4a, 0x4f, 0x35, 0xe6, + 0xc5, 0x81, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, + 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0xe4, 0x96, 0x6b, 0xa8, 0xd0, 0xf6, 0x65, 0xcf, 0x55, + 0x51, 0x93, 0xa8, 0x41, 0x28, 0xe8, 0xe9, 0xc6, 0x92, 0x44, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, + 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x0e, 0x30, 0x8e, + 0xfc, 0x33, 0x8e, 0xff, 0x1d, 0x88, 0x81, 0xb0, 0xba, 0x03, 0xcf, 0x63, 0x24, 0x1d, 0x33, 0x42, + 0xc1, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, + 0xc0, 0x3b, 0xc0, 0x3b, 0xc0, 0x3b, 0x72, 0xcb, 0x3b, 0x06, 0xfe, 0x57, 0x3f, 0xf8, 0xc7, 0xb7, + 0x58, 0x6a, 0xaa, 0x66, 0x85, 0x81, 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, + 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, 0x67, 0x80, 0x67, 0xe4, 0x9e, 0x67, 0xf8, 0xac, + 0x44, 0x03, 0x67, 0x37, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, + 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0x52, 0xc4, 0x34, 0x52, 0x3d, 0xfe, 0xfc, 0xd4, + 0xf7, 0x03, 0x15, 0x0d, 0x0b, 0xa7, 0x99, 0x82, 0x2e, 0x9d, 0x27, 0xd1, 0xb3, 0xfb, 0x76, 0xd4, + 0xa8, 0xb7, 0x50, 0x0c, 0xfa, 0xc2, 0x77, 0x22, 0xd4, 0x6f, 0xf9, 0x42, 0xfd, 0x13, 0x84, 0x5f, + 0x2d, 0xd7, 0x97, 0xca, 0xf6, 0x1d, 0x51, 0x5c, 0x7c, 0x43, 0x2e, 0xbd, 0x53, 0xec, 0xf5, 0x3d, + 0x59, 0x94, 0xee, 0xa3, 0x6f, 0x7b, 0xae, 0xff, 0x68, 0xf5, 0xc3, 0x40, 0x05, 0x4e, 0xe0, 0xc9, + 0xe2, 0x08, 0xc0, 0x59, 0x4a, 0x14, 0x1f, 0xbd, 0xe0, 0xc1, 0xf6, 0x8a, 0x52, 0xd9, 0x4a, 0x14, + 0x63, 0x7c, 0x21, 0x8b, 0x22, 0x0c, 0x83, 0x50, 0x12, 0xa0, 0x8c, 0x82, 0x54, 0xe1, 0xc0, 0x51, + 0x7e, 0x0c, 0x68, 0xae, 0xc6, 0xf7, 0x7b, 0x1e, 0xdf, 0x6e, 0xfb, 0xb2, 0xef, 0xc9, 0xf6, 0xe7, + 0xc9, 0xed, 0xde, 0x4c, 0xee, 0xb6, 0x7d, 0x2b, 0xbf, 0xf5, 0xef, 0x44, 0xfb, 0xf7, 0xe8, 0x66, + 0xdb, 0x9f, 0xe2, 0xdb, 0x6c, 0x37, 0xc7, 0xb7, 0xb9, 0x97, 0x4e, 0xed, 0xd3, 0xa8, 0x79, 0x05, + 0x37, 0xca, 0x8f, 0x59, 0x3d, 0x21, 0xa5, 0xfd, 0x28, 0xa4, 0x76, 0xd5, 0x9b, 0x42, 0xcc, 0x45, + 0x41, 0x9a, 0x77, 0x0f, 0x8d, 0x83, 0x22, 0xe3, 0xc5, 0x94, 0x7c, 0x98, 0x81, 0x07, 0x53, 0xf3, + 0x5f, 0x36, 0xde, 0xcb, 0xc6, 0x77, 0x79, 0x78, 0x6e, 0xba, 0x3d, 0x1c, 0x19, 0x9f, 0x65, 0xe1, + 0xb1, 0x84, 0xfc, 0x95, 0x98, 0xb7, 0x12, 0x06, 0x10, 0x38, 0x78, 0x2a, 0x13, 0xf9, 0xe0, 0xe2, + 0xa5, 0x9c, 0xcc, 0x82, 0x90, 0x87, 0xb2, 0xf0, 0x4f, 0xee, 0xa5, 0xe7, 0xe7, 0x9b, 0xac, 0xda, + 0x90, 0x11, 0x9e, 0xd6, 0xda, 0x0d, 0xdc, 0xfd, 0x24, 0x3c, 0x2f, 0xe0, 0x41, 0xde, 0x0b, 0xa2, + 0x80, 0xbd, 0x81, 0xbd, 0x81, 0xbd, 0x81, 0xbd, 0x81, 0xbd, 0x81, 0xbd, 0x81, 0xbd, 0x81, 0xbd, + 0x81, 0xbd, 0x81, 0xbd, 0x77, 0x0b, 0x7b, 0xf7, 0x6d, 0xf5, 0x64, 0x45, 0xc9, 0x08, 0x1e, 0x00, + 0xbe, 0x4a, 0x1e, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, + 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0xf8, 0x0e, 0xa2, 0x70, 0x3e, 0xfc, 0x0d, 0xe4, 0x0d, 0xe4, + 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, 0x0d, 0xe4, + 0xbd, 0xcb, 0xc8, 0x5b, 0x09, 0x9b, 0x33, 0xfc, 0x3d, 0x2f, 0x0e, 0x18, 0x1c, 0x18, 0x1c, 0x18, + 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x7c, 0xb7, + 0x30, 0x78, 0x28, 0xa4, 0x08, 0xbf, 0x45, 0x27, 0x7e, 0x39, 0x4b, 0x51, 0x7e, 0x22, 0x16, 0x98, + 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, 0x1c, 0x98, + 0x1c, 0x98, 0x7c, 0x77, 0x31, 0x39, 0x3b, 0x1a, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, + 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x07, 0x0e, 0x67, 0x2c, + 0x53, 0x49, 0x96, 0x0a, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, + 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xbe, 0x5b, 0x88, 0x5c, 0x86, 0xa2, 0x1b, 0x0a, 0xc9, + 0x74, 0x5e, 0x73, 0x59, 0x1a, 0x10, 0x38, 0x10, 0x38, 0x10, 0x38, 0x10, 0x38, 0x10, 0x38, 0x10, + 0x38, 0x10, 0x38, 0x10, 0x38, 0x10, 0x38, 0x10, 0xf8, 0x0e, 0x21, 0xf0, 0x60, 0xa0, 0x98, 0x06, + 0xf5, 0x2c, 0x49, 0x02, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, + 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0xde, 0x31, 0xe4, 0xcd, 0x35, 0xaa, 0x67, 0x85, 0x2c, + 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, + 0xa0, 0x6f, 0xa0, 0xef, 0x1d, 0x43, 0xdf, 0xac, 0xc3, 0x7a, 0x92, 0x04, 0x02, 0x87, 0x03, 0x87, + 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, 0x03, 0x87, + 0xef, 0x22, 0x0e, 0x67, 0x44, 0xe0, 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, + 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, 0xc0, 0xde, 0x3b, 0x8d, 0xbd, 0x99, 0x3a, 0xa1, + 0x24, 0xc8, 0x03, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, + 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0xdf, 0x31, 0x14, 0x6e, 0x62, 0x64, 0xcf, 0x2f, 0xe4, 0x02, + 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, 0x95, 0x03, + 0x95, 0x03, 0x95, 0xef, 0x30, 0x2a, 0xe7, 0xc7, 0xe3, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, + 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x40, 0xe2, 0x3e, + 0x67, 0xb1, 0x0a, 0xe6, 0xf6, 0x00, 0x93, 0x03, 0x93, 0x03, 0x93, 0x03, 0x93, 0x03, 0x93, 0x03, + 0x93, 0x03, 0x93, 0x03, 0x93, 0x03, 0x93, 0x03, 0x93, 0xc7, 0x98, 0x9c, 0x71, 0x70, 0xcf, 0x6a, + 0x71, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0xc0, + 0xe0, 0xc0, 0xe0, 0xc0, 0xe0, 0x3b, 0x84, 0xc1, 0xc7, 0x27, 0x29, 0xdd, 0x9e, 0x08, 0x06, 0x8a, + 0x10, 0x7b, 0xcf, 0x8b, 0x01, 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0x06, 0xe6, + 0x06, 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0xde, 0x21, 0xcc, 0x1d, 0xda, 0x4a, 0x58, 0x9e, + 0xdb, 0x73, 0x95, 0xe8, 0x30, 0xc4, 0xbd, 0x57, 0x8b, 0x03, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0xdf, 0x25, 0x0c, + 0x3e, 0x5b, 0x94, 0x4d, 0x1e, 0xfe, 0x5e, 0x29, 0x0d, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, + 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x3c, 0xed, 0x08, 0x7c, + 0x2f, 0x45, 0x7b, 0xb2, 0x70, 0xea, 0xfb, 0x81, 0x8a, 0x40, 0xb5, 0xd6, 0x6d, 0x58, 0x90, 0xce, + 0x93, 0xe8, 0xd9, 0x7d, 0x5b, 0x3d, 0x8d, 0x3c, 0x6a, 0x31, 0xe8, 0x0b, 0xdf, 0x89, 0x50, 0xb0, + 0xe5, 0x0b, 0xf5, 0x4f, 0x10, 0x7e, 0xb5, 0x5c, 0x5f, 0x2a, 0xdb, 0x77, 0x44, 0x71, 0xf1, 0x0d, + 0xb9, 0xf4, 0x4e, 0xb1, 0xd7, 0xf7, 0x64, 0x51, 0xba, 0x8f, 0xbe, 0xed, 0xb9, 0xfe, 0xa3, 0xd5, + 0x0f, 0x03, 0x15, 0x38, 0x81, 0x27, 0x8b, 0x23, 0x00, 0x64, 0x29, 0x51, 0x7c, 0xf4, 0x82, 0x07, + 0xdb, 0x2b, 0x4a, 0x65, 0x2b, 0x51, 0x8c, 0xfd, 0xb7, 0x4e, 0x76, 0x50, 0x90, 0x2a, 0x1c, 0x38, + 0xca, 0x8f, 0x11, 0xc2, 0xd5, 0xf8, 0x06, 0xcf, 0xe3, 0xfb, 0x6b, 0x5f, 0xf6, 0x3d, 0xd9, 0xfe, + 0x3c, 0xb9, 0xbf, 0x9b, 0xc9, 0xed, 0xb5, 0x6f, 0xe5, 0xb7, 0xfe, 0x9d, 0x68, 0xff, 0x1e, 0xdd, + 0x5d, 0xfb, 0xd3, 0xe4, 0xbe, 0xf6, 0xd2, 0xa1, 0x47, 0xdb, 0x5d, 0x61, 0x4b, 0x0d, 0xd4, 0xad, + 0x79, 0x26, 0x35, 0x6e, 0xbb, 0x05, 0xdd, 0x7c, 0x19, 0x36, 0xfb, 0xe6, 0x86, 0x0b, 0xa7, 0x6b, + 0xc1, 0xcc, 0x2c, 0xd4, 0x16, 0xb6, 0x40, 0xc7, 0xde, 0xdf, 0x4c, 0x43, 0xd6, 0x5f, 0xdf, 0x0d, + 0xd6, 0xb6, 0xe0, 0x8e, 0x8c, 0x52, 0xd7, 0x76, 0x84, 0x65, 0x2b, 0x15, 0xba, 0x0f, 0x03, 0xb5, + 0x45, 0x26, 0x75, 0x4a, 0xa2, 0x56, 0x5e, 0x75, 0x43, 0xcd, 0x8b, 0xf1, 0x5b, 0x79, 0xc3, 0xaf, + 0x6f, 0x1b, 0x7e, 0xd1, 0x11, 0x66, 0xd1, 0x18, 0x4e, 0xd1, 0x15, 0x36, 0xd1, 0x1e, 0x1e, 0xd1, + 0x1e, 0x06, 0xd1, 0x1b, 0xee, 0xe0, 0xb5, 0x96, 0x67, 0x6e, 0xb8, 0x9d, 0xc2, 0x4c, 0x37, 0xd0, + 0xf6, 0x0b, 0xbd, 0xb4, 0x27, 0xb7, 0x5d, 0xe8, 0xed, 0x36, 0xa4, 0xf6, 0xb8, 0xa8, 0xce, 0x38, + 0x28, 0x41, 0xdc, 0x53, 0x77, 0x9c, 0x93, 0x2c, 0xae, 0x49, 0x16, 0xc7, 0xa4, 0x89, 0x5b, 0x9a, + 0xc5, 0xaf, 0xdb, 0x6e, 0xf0, 0xe9, 0x85, 0xec, 0x81, 0x7a, 0x12, 0xbe, 0x72, 0x1d, 0xbd, 0x34, + 0x6c, 0xaa, 0xc8, 0x0b, 0xd7, 0xd7, 0xb4, 0xa2, 0x7a, 0x4c, 0x80, 0x76, 0x53, 0x40, 0x61, 0x12, + 0x08, 0x4d, 0x03, 0x95, 0x89, 0x20, 0x37, 0x15, 0xe4, 0x26, 0x83, 0xd6, 0x74, 0xa4, 0x33, 0x18, + 0xa3, 0xcb, 0xa4, 0x4c, 0x2f, 0xe8, 0x4c, 0x76, 0x15, 0x51, 0x4e, 0x36, 0xbe, 0x3e, 0x4d, 0x16, + 0xb6, 0x8c, 0x2c, 0x2c, 0xb2, 0xb0, 0x69, 0x32, 0x45, 0x3c, 0x26, 0x49, 0xaf, 0x69, 0xd2, 0x6c, + 0xa2, 0xc8, 0x4c, 0x55, 0x02, 0x1a, 0xb2, 0xbe, 0x8a, 0x67, 0x3a, 0xcd, 0x5c, 0x8d, 0x90, 0x22, + 0x99, 0x44, 0x9a, 0x43, 0x9b, 0x89, 0x22, 0x33, 0x71, 0x1c, 0xa6, 0x8e, 0xd1, 0xe4, 0x71, 0x99, + 0x3e, 0x76, 0x13, 0xc8, 0x6e, 0x0a, 0x79, 0x4d, 0x22, 0x8d, 0x69, 0x24, 0x32, 0x91, 0xd3, 0x47, + 0x43, 0x56, 0xb0, 0xb2, 0xb4, 0x63, 0xa4, 0x0a, 0x5d, 0xff, 0x91, 0x72, 0xc3, 0x4c, 0xa0, 0xd9, + 0x11, 0xa1, 0x8c, 0x0b, 0xe1, 0x3f, 0x46, 0xb9, 0x81, 0x7b, 0x52, 0x95, 0xa5, 0xdd, 0xf2, 0xfb, + 0x5c, 0x75, 0x2d, 0x4c, 0xae, 0x65, 0x49, 0xdc, 0xb4, 0xd8, 0x81, 0x49, 0x1e, 0x63, 0x85, 0x03, + 0xb1, 0x41, 0x98, 0x57, 0x11, 0x86, 0xfa, 0x17, 0xd3, 0x2a, 0x72, 0x58, 0xc9, 0xb1, 0x8e, 0xec, + 0x65, 0xf3, 0xea, 0xad, 0x8c, 0x54, 0xf1, 0x10, 0xec, 0xc1, 0x82, 0xf0, 0xed, 0x07, 0x4f, 0xd0, + 0xd3, 0x8a, 0x58, 0x0e, 0x11, 0xac, 0x38, 0x13, 0x5d, 0x7b, 0xe0, 0x45, 0x80, 0xab, 0x6b, 0x7b, + 0x52, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x80, 0xb2, 0x64, 0x8b, 0xb2, 0x3c, 0x04, 0x81, 0x27, + 0x6c, 0x9f, 0x83, 0xb3, 0x94, 0xb3, 0xe2, 0xf2, 0x52, 0x1d, 0xf8, 0x23, 0x2a, 0x18, 0x9d, 0x5e, + 0x9f, 0xb9, 0x3a, 0x6c, 0x55, 0x99, 0xd2, 0xeb, 0x9b, 0xc5, 0xf9, 0xc8, 0x60, 0x31, 0xce, 0x77, + 0xec, 0xc0, 0xd9, 0xbe, 0x71, 0x5d, 0x23, 0x59, 0xe2, 0x68, 0x7c, 0xf9, 0x8c, 0xe5, 0x8d, 0x2a, + 0xc8, 0x1b, 0x31, 0x22, 0x11, 0xe4, 0x8d, 0xf2, 0xe8, 0x3e, 0x90, 0x37, 0x02, 0x09, 0x03, 0x09, + 0x03, 0x09, 0x03, 0x09, 0x4b, 0x11, 0x09, 0x43, 0xde, 0x68, 0x8d, 0x3f, 0xc8, 0x1b, 0x6d, 0x25, + 0x0e, 0x79, 0x23, 0x3d, 0x2a, 0x82, 0xbc, 0x51, 0xb6, 0x75, 0x04, 0x79, 0x23, 0xda, 0x20, 0x1a, + 0xf2, 0x46, 0x49, 0x0c, 0x0c, 0x79, 0x23, 0x50, 0x16, 0x50, 0x16, 0x50, 0x96, 0x4c, 0x53, 0x16, + 0xe4, 0x8d, 0x88, 0xaf, 0x88, 0xbc, 0x91, 0xc6, 0xbc, 0x91, 0x86, 0x2e, 0x11, 0x74, 0xab, 0x8d, + 0x86, 0x34, 0xa6, 0xf5, 0x23, 0x35, 0x8d, 0x6a, 0xce, 0x27, 0x37, 0xd8, 0x3e, 0x9d, 0xbf, 0xc1, + 0xb4, 0x74, 0xac, 0xd1, 0x70, 0x18, 0xfb, 0xc1, 0xf6, 0x3b, 0xff, 0xb8, 0x1d, 0xf5, 0x64, 0xcd, + 0x74, 0x14, 0x95, 0xfa, 0x8f, 0xdd, 0x26, 0xc8, 0xc1, 0xf1, 0xdb, 0x14, 0xa2, 0x65, 0x1c, 0xbf, + 0x35, 0x83, 0x76, 0x73, 0x7e, 0xfc, 0x76, 0xa5, 0x09, 0xa0, 0x2b, 0xaa, 0x58, 0x2d, 0x0e, 0x45, + 0x16, 0x28, 0xb2, 0x30, 0x4f, 0xd7, 0x51, 0x64, 0xc1, 0xc8, 0xb5, 0xc8, 0x8a, 0x2c, 0xfa, 0xa1, + 0x1b, 0x84, 0xae, 0x62, 0x28, 0xad, 0x98, 0x4a, 0x42, 0x74, 0x12, 0xd1, 0x49, 0x44, 0x27, 0x11, + 0x9d, 0xcc, 0x54, 0x74, 0xd2, 0x13, 0x76, 0x37, 0x14, 0x5d, 0x8e, 0xe8, 0x64, 0x83, 0x50, 0xc6, + 0x4d, 0x1c, 0x2d, 0xf9, 0xf0, 0x21, 0xee, 0xac, 0x3b, 0xb5, 0xca, 0x3b, 0x9c, 0x05, 0xa4, 0xa9, + 0x8c, 0x5e, 0x52, 0x21, 0x8a, 0x0a, 0x69, 0x62, 0x10, 0x0f, 0xef, 0x07, 0xef, 0x07, 0xef, 0x97, + 0x56, 0xef, 0x47, 0x45, 0x0a, 0xa6, 0x02, 0x6c, 0x47, 0xb9, 0xdf, 0xc4, 0x5c, 0xb4, 0xd3, 0x8a, + 0x5a, 0xb1, 0xd3, 0x2b, 0xf6, 0xb4, 0x20, 0x3b, 0xf1, 0x16, 0xde, 0xe7, 0x62, 0xc2, 0x04, 0xb5, + 0x61, 0xe5, 0x34, 0xb0, 0x06, 0x0c, 0x2d, 0xb7, 0xc1, 0x35, 0x66, 0x78, 0x8d, 0x19, 0x60, 0x33, + 0x86, 0x98, 0xd6, 0x20, 0x13, 0x1b, 0x66, 0x3e, 0x7a, 0xb2, 0xb4, 0xe3, 0x1e, 0xed, 0xc1, 0xa3, + 0x20, 0x19, 0x73, 0x95, 0x64, 0x20, 0x8f, 0x18, 0x44, 0xd1, 0x8e, 0xc1, 0x5a, 0xfc, 0xc3, 0x63, + 0x41, 0xf6, 0xb9, 0xcb, 0xc2, 0x99, 0x3d, 0xdb, 0x92, 0x58, 0xa6, 0x31, 0x5a, 0x4b, 0x72, 0x0d, + 0x94, 0x02, 0x33, 0xd9, 0x97, 0x79, 0x55, 0x62, 0x2c, 0x1f, 0x4f, 0x8b, 0x2a, 0xf1, 0x8f, 0xe5, + 0x4a, 0x95, 0x76, 0xed, 0xe5, 0x43, 0x4a, 0x2b, 0xa3, 0x85, 0xf3, 0x94, 0x43, 0xf4, 0xec, 0x6f, + 0xb6, 0xeb, 0xd9, 0x0f, 0x9e, 0xb0, 0xa6, 0x29, 0x60, 0x46, 0xce, 0xb5, 0x42, 0x38, 0xd8, 0x16, + 0xd8, 0x16, 0xd8, 0x16, 0xd8, 0x16, 0xd8, 0xd6, 0xca, 0xf2, 0x9c, 0xde, 0x43, 0x5f, 0xe6, 0x8c, + 0x74, 0x7d, 0xf1, 0xc7, 0x80, 0xa6, 0x70, 0xc9, 0xf4, 0xdb, 0xc0, 0xf2, 0xc0, 0xf2, 0xc0, 0xf2, + 0xc0, 0xf2, 0xc0, 0xf2, 0xc0, 0xf2, 0x76, 0x83, 0xe5, 0x3d, 0xb9, 0x8f, 0x4f, 0xff, 0xd8, 0x4a, + 0x84, 0x56, 0xcf, 0x0e, 0xbf, 0xf2, 0x11, 0xbc, 0x05, 0xb9, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, + 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, + 0xe0, 0x76, 0xe0, 0x76, 0x5b, 0xa8, 0x15, 0xf9, 0xc1, 0xaa, 0x25, 0xc4, 0x42, 0x7c, 0xc0, 0x0a, + 0x7c, 0x0e, 0x7c, 0x0e, 0x7c, 0x0e, 0x7c, 0x2e, 0xa3, 0x7c, 0x6e, 0xe0, 0xeb, 0x3f, 0x3a, 0xff, + 0x33, 0xf3, 0x58, 0x3e, 0x66, 0x90, 0x15, 0x3f, 0xc6, 0xdc, 0xb1, 0xaa, 0xe9, 0xa2, 0xb9, 0xbe, + 0x3a, 0x2a, 0x30, 0x62, 0xf0, 0x78, 0xf1, 0x18, 0x31, 0x28, 0x33, 0x35, 0xe6, 0x5f, 0x4c, 0xa3, + 0x54, 0xd9, 0x30, 0xcf, 0x31, 0x4d, 0x9d, 0xd3, 0x40, 0x72, 0x0c, 0x50, 0x69, 0xa3, 0x94, 0x3a, + 0x6d, 0x2a, 0xd7, 0xd8, 0x61, 0x95, 0xdb, 0xcb, 0xa7, 0xb4, 0xd6, 0x5e, 0x8e, 0x36, 0xac, 0x01, + 0x58, 0x21, 0xfc, 0x41, 0x4f, 0x84, 0x14, 0xcd, 0x94, 0xde, 0x84, 0x0c, 0xab, 0x8c, 0x32, 0x9b, + 0xfe, 0xa0, 0x37, 0x32, 0x81, 0x08, 0x35, 0x99, 0xbd, 0x7f, 0xca, 0x50, 0xd3, 0xf8, 0x70, 0xac, + 0xe8, 0x98, 0xa8, 0x15, 0x5f, 0x21, 0x1b, 0xe1, 0xa7, 0xb5, 0x04, 0x21, 0xfc, 0xa4, 0x57, 0x3d, + 0x10, 0x7e, 0x42, 0xf8, 0xe9, 0x8d, 0x71, 0x13, 0x94, 0x13, 0xe8, 0x11, 0x85, 0x72, 0x82, 0x2c, + 0xc7, 0x48, 0x50, 0x4e, 0x80, 0x72, 0x82, 0x9c, 0xa8, 0x12, 0xca, 0x09, 0xc0, 0xf1, 0x0c, 0x72, + 0xbc, 0x4c, 0x75, 0x8f, 0x22, 0x1e, 0xdf, 0x31, 0x95, 0x93, 0xae, 0x31, 0x0d, 0xab, 0x7b, 0xf8, + 0xaf, 0x7e, 0x9b, 0x62, 0xc8, 0x07, 0x9d, 0xae, 0xa4, 0xbb, 0x81, 0xf1, 0x9f, 0xd1, 0xf4, 0x66, + 0xaa, 0x1a, 0x95, 0xc2, 0x85, 0x2b, 0xd5, 0xa9, 0x52, 0x44, 0x4d, 0x92, 0x2f, 0x5d, 0xbf, 0xe9, + 0x89, 0x11, 0xc7, 0x1a, 0x19, 0x74, 0x7f, 0xe0, 0x79, 0x04, 0x5d, 0x28, 0x2f, 0xed, 0xef, 0xf4, + 0x42, 0xae, 0xc3, 0x8e, 0x08, 0x45, 0xe7, 0xe3, 0x73, 0x2c, 0x02, 0x03, 0x86, 0x32, 0x69, 0x99, + 0x0a, 0x24, 0x5d, 0x50, 0xb5, 0x8c, 0x99, 0xf9, 0x38, 0xb9, 0xdf, 0xdb, 0x99, 0xdb, 0xc5, 0x9c, + 0x24, 0x73, 0xea, 0x9e, 0x09, 0x35, 0xcf, 0xd3, 0x38, 0x22, 0x67, 0x12, 0x39, 0xd6, 0x3c, 0x7e, + 0x28, 0xbe, 0x2e, 0xc6, 0x0d, 0x6d, 0xfd, 0x24, 0x31, 0x6e, 0xe8, 0x55, 0x00, 0xc6, 0x0d, 0xa5, + 0x78, 0xdc, 0xd0, 0xab, 0x2d, 0x75, 0x3b, 0x74, 0x53, 0x86, 0xe6, 0xa4, 0xd0, 0x0c, 0x17, 0x2a, + 0x51, 0x0d, 0x17, 0x2a, 0x61, 0xb8, 0x10, 0x83, 0x19, 0x62, 0x33, 0x47, 0x6c, 0x66, 0x89, 0xc7, + 0x3c, 0x65, 0x83, 0x9b, 0x93, 0x65, 0xc3, 0x38, 0x2c, 0xcc, 0x1c, 0x98, 0x39, 0x02, 0xd1, 0x00, + 0xd1, 0x88, 0x89, 0x46, 0x0c, 0x97, 0x73, 0x44, 0x2c, 0x9e, 0x84, 0xe7, 0x05, 0x04, 0x73, 0x4d, + 0xe3, 0xeb, 0x82, 0x58, 0x80, 0x58, 0x80, 0x58, 0xec, 0x06, 0xb1, 0xd0, 0x1c, 0xa3, 0xa0, 0x8d, + 0x55, 0x10, 0x99, 0x16, 0x90, 0x09, 0x90, 0x09, 0x90, 0x89, 0xcc, 0x4c, 0x2a, 0x8d, 0x50, 0x8a, + 0x15, 0xe1, 0xbb, 0x6f, 0xb6, 0x47, 0x3f, 0xae, 0x6d, 0x41, 0x1e, 0xd5, 0x0c, 0x27, 0xd1, 0xb5, + 0x07, 0x5e, 0xa4, 0x30, 0xc7, 0xa5, 0x52, 0x09, 0xc3, 0x51, 0xd9, 0x2d, 0x29, 0xa3, 0x45, 0xe5, + 0xb2, 0xac, 0xec, 0x16, 0x96, 0xdd, 0xd2, 0xf2, 0x5a, 0x5c, 0x1a, 0xcb, 0x4b, 0x64, 0x81, 0xe9, + 0xc3, 0x3a, 0x4b, 0x3b, 0x66, 0xe0, 0xfa, 0xaa, 0x5c, 0x67, 0x98, 0x8d, 0x5a, 0x27, 0x14, 0xc1, + 0x53, 0x53, 0xcc, 0x50, 0x72, 0xce, 0x59, 0x43, 0xcc, 0x5c, 0xf0, 0xf9, 0x5a, 0xe8, 0x59, 0x2a, + 0x71, 0x89, 0x34, 0x50, 0xd0, 0xc9, 0x50, 0x26, 0xcc, 0x5a, 0x1e, 0x6c, 0x4a, 0x4b, 0xea, 0xa5, + 0x7c, 0xab, 0x49, 0x46, 0xeb, 0x64, 0x5b, 0x3b, 0x3c, 0x6b, 0x3a, 0x14, 0xdd, 0x50, 0xc8, 0x27, + 0x2b, 0x14, 0x9d, 0x81, 0x43, 0x5a, 0x7c, 0x3b, 0x73, 0x44, 0x73, 0x51, 0x24, 0x3d, 0x97, 0x19, + 0x21, 0x3f, 0x70, 0x19, 0x70, 0x19, 0x70, 0x19, 0x70, 0x99, 0x6c, 0x71, 0x99, 0x87, 0x20, 0xf0, + 0x84, 0xed, 0x33, 0x90, 0x99, 0x72, 0x19, 0x27, 0x0b, 0x74, 0xec, 0x9a, 0x9d, 0xaa, 0x12, 0x1f, + 0xe7, 0x6a, 0xb5, 0x26, 0xb7, 0xf5, 0x2f, 0xb3, 0xc6, 0x25, 0x2e, 0x8c, 0xcf, 0xe0, 0x90, 0x25, + 0xaa, 0xc6, 0x97, 0xcf, 0x58, 0x9e, 0xaa, 0x82, 0x3c, 0x15, 0x23, 0x02, 0x41, 0x9e, 0x2a, 0x8f, + 0x6e, 0x03, 0x79, 0xaa, 0x4d, 0xb9, 0x1d, 0xf2, 0x54, 0xe0, 0x76, 0xe0, 0x76, 0xe0, 0x76, 0xd9, + 0xe3, 0x76, 0xc8, 0x53, 0xbd, 0xf9, 0x0f, 0xf2, 0x54, 0x5b, 0x89, 0x43, 0x9e, 0x4a, 0x9b, 0x96, + 0x20, 0x4f, 0x95, 0x79, 0x35, 0x41, 0x9e, 0x8a, 0xf4, 0x7e, 0x91, 0xa7, 0xda, 0x98, 0xcb, 0x20, + 0x4f, 0x05, 0x2e, 0x03, 0x2e, 0x03, 0x2e, 0x93, 0x3d, 0x2e, 0x83, 0x3c, 0x15, 0xf1, 0x15, 0x91, + 0xa7, 0xd2, 0x90, 0xa7, 0x22, 0xe8, 0xa0, 0x86, 0x53, 0xb9, 0xd9, 0xd7, 0x8b, 0x82, 0xd6, 0x04, + 0xa1, 0x96, 0xbe, 0x55, 0x7f, 0x8c, 0x6f, 0x2c, 0x47, 0xc7, 0x85, 0x49, 0x9a, 0x87, 0x50, 0x1e, + 0xe9, 0xd7, 0x8c, 0x98, 0x71, 0x74, 0x18, 0x47, 0x87, 0x4d, 0x20, 0xd8, 0x74, 0xb9, 0x15, 0xed, + 0x88, 0x74, 0xaa, 0xb1, 0x9e, 0xb0, 0xbb, 0xa1, 0xe8, 0xea, 0xd4, 0xd8, 0x09, 0xe2, 0xd4, 0x38, + 0xb3, 0xaa, 0x70, 0x13, 0x7b, 0xbe, 0x0f, 0x1f, 0xe2, 0xaa, 0x99, 0xe2, 0x9c, 0xe9, 0xca, 0xa5, + 0xc1, 0x1f, 0x2d, 0x0b, 0xa1, 0xc5, 0xd7, 0xb7, 0xea, 0xbb, 0xde, 0x2d, 0xc2, 0xed, 0xc2, 0xe0, + 0x1b, 0x30, 0xf8, 0x6e, 0x17, 0x9d, 0x22, 0xde, 0x78, 0x41, 0x74, 0x8a, 0x20, 0x34, 0x2f, 0x94, + 0x66, 0x86, 0xdc, 0xdc, 0x50, 0x9b, 0x1d, 0x36, 0xf3, 0xc3, 0x66, 0x86, 0x38, 0xcc, 0x51, 0x36, + 0x82, 0x61, 0x64, 0xd5, 0x77, 0x53, 0x90, 0x42, 0x9f, 0xaf, 0x7a, 0x15, 0x85, 0x04, 0x12, 0xb7, + 0x51, 0x63, 0x33, 0x6e, 0x5c, 0x46, 0x8e, 0xdd, 0xd8, 0xb1, 0x1b, 0x3d, 0x4e, 0xe3, 0x47, 0x63, + 0x04, 0x89, 0x8c, 0x21, 0x1d, 0x55, 0x67, 0xa4, 0xee, 0x1c, 0x54, 0x3e, 0x91, 0xda, 0x17, 0x23, + 0x35, 0x3a, 0x99, 0x1a, 0x64, 0xb9, 0xf8, 0x46, 0xfc, 0xdf, 0x51, 0x90, 0x78, 0x87, 0x8b, 0x3a, + 0xe4, 0xe0, 0x81, 0xd1, 0x3f, 0xce, 0x49, 0x83, 0x8b, 0x84, 0x8b, 0x84, 0x8b, 0x84, 0x8b, 0x84, + 0x8b, 0x4c, 0xa9, 0x8b, 0xbc, 0x7f, 0x75, 0x91, 0xff, 0xe5, 0x0c, 0xc2, 0x50, 0xf8, 0xea, 0xdd, + 0x41, 0xf1, 0xc3, 0x87, 0xd7, 0x68, 0x79, 0x2b, 0xfe, 0xca, 0xac, 0x5d, 0x97, 0x2b, 0xde, 0x9b, + 0x5e, 0xb9, 0x23, 0xbe, 0x63, 0x78, 0x9a, 0x8e, 0x45, 0x6c, 0x7e, 0x8f, 0x2a, 0x75, 0xf5, 0x57, + 0xfc, 0xd3, 0x07, 0x6c, 0x02, 0xc7, 0x12, 0xdf, 0xd5, 0x89, 0x12, 0x9e, 0xe8, 0x09, 0x15, 0x3e, + 0x5b, 0x81, 0x6f, 0x39, 0x4f, 0xd1, 0x11, 0x06, 0x96, 0x20, 0x4e, 0xd7, 0xf6, 0x24, 0x47, 0x14, + 0x27, 0xed, 0x01, 0x9c, 0x16, 0xaa, 0x99, 0xb6, 0xa8, 0x5a, 0x99, 0x4b, 0x7d, 0xe1, 0xf0, 0xbd, + 0x36, 0x86, 0x80, 0xc3, 0xf7, 0x08, 0xfd, 0xa7, 0x02, 0xea, 0x23, 0xf4, 0xcf, 0x06, 0x66, 0x10, + 0xfa, 0x47, 0x5c, 0x03, 0x71, 0x0d, 0xc4, 0x35, 0x10, 0xd7, 0x40, 0x5c, 0x83, 0x21, 0xae, 0x81, + 0xd0, 0xff, 0x3e, 0x42, 0xff, 0x70, 0x91, 0x70, 0x91, 0x70, 0x91, 0x70, 0x91, 0x70, 0x91, 0x08, + 0xfd, 0x67, 0x8b, 0x2d, 0xef, 0x72, 0x9c, 0x15, 0x87, 0x47, 0x4d, 0xab, 0x49, 0x9a, 0xd5, 0x23, + 0x85, 0x67, 0x48, 0xa7, 0xaf, 0x6e, 0x45, 0x37, 0x4f, 0x07, 0x8b, 0x46, 0x0b, 0x25, 0xf4, 0x76, + 0x81, 0x99, 0x3a, 0xdb, 0x99, 0x6b, 0xe3, 0x48, 0x91, 0x0e, 0xa0, 0x8f, 0x53, 0xa4, 0x4c, 0xd0, + 0x1d, 0x03, 0x68, 0xb7, 0xb8, 0x20, 0x8e, 0x15, 0x31, 0xc4, 0x1a, 0xd0, 0xd8, 0x3b, 0x1d, 0xd1, + 0x04, 0x34, 0xf6, 0x66, 0x64, 0x4c, 0x64, 0xf9, 0xc5, 0x87, 0xe7, 0xbe, 0x2d, 0xa5, 0x15, 0xf4, + 0x95, 0xdb, 0x73, 0xff, 0x4f, 0x30, 0xb6, 0xf8, 0x4e, 0x94, 0x8c, 0xd0, 0x2a, 0xb7, 0xd9, 0x63, + 0x34, 0x7f, 0x5c, 0x66, 0x90, 0xdd, 0x1c, 0xb2, 0x9b, 0x45, 0x5e, 0xf3, 0x48, 0x17, 0xaa, 0xda, + 0x47, 0x17, 0xee, 0x75, 0xec, 0x17, 0xba, 0x70, 0xbf, 0xe1, 0x87, 0xec, 0x42, 0x17, 0x6e, 0xb4, + 0xe0, 0xde, 0x4e, 0x45, 0x76, 0xa1, 0x05, 0x77, 0xad, 0x76, 0x58, 0x43, 0x0b, 0xee, 0xb4, 0x5d, + 0x7d, 0x97, 0x5b, 0x70, 0x7b, 0xae, 0xff, 0xd5, 0x7a, 0x0d, 0x8f, 0x5a, 0x52, 0x3d, 0x7b, 0xc2, + 0x0a, 0xc5, 0xff, 0x0e, 0x84, 0x54, 0xa2, 0x43, 0x4f, 0x3b, 0x7e, 0x75, 0x03, 0xf4, 0xed, 0xb9, + 0x03, 0xc7, 0xea, 0xf5, 0x3d, 0xa9, 0x4e, 0x2e, 0xce, 0xaf, 0xfe, 0x6c, 0x5f, 0x5d, 0x9f, 0x35, + 0xdb, 0x37, 0xb7, 0xd7, 0x77, 0xcd, 0x4f, 0x77, 0xe7, 0xd7, 0x57, 0xed, 0xdb, 0xe6, 0xbf, 0xbf, + 0x34, 0x3f, 0xdf, 0x35, 0xcf, 0xc0, 0x83, 0xc0, 0x83, 0xc0, 0x83, 0xc0, 0x83, 0xb2, 0xc5, 0x83, + 0xdc, 0x8e, 0xf0, 0x95, 0xab, 0x9e, 0x99, 0x4a, 0x4d, 0x08, 0xd1, 0x4d, 0xe1, 0x3c, 0xfe, 0x29, + 0x1f, 0x6d, 0xc9, 0xb0, 0x3f, 0x27, 0x0f, 0x70, 0xc6, 0x15, 0xdc, 0xfd, 0x75, 0xd3, 0xa4, 0xde, + 0xa5, 0x11, 0x54, 0x94, 0xe4, 0x9c, 0x8f, 0x87, 0xf7, 0xcd, 0x3d, 0xc8, 0x2f, 0x57, 0xf1, 0xa3, + 0x6c, 0x9e, 0x15, 0xf2, 0xc0, 0x58, 0x98, 0x1f, 0x5f, 0x04, 0x4e, 0x16, 0x70, 0xc9, 0xf9, 0x2d, + 0x9e, 0xe5, 0xc6, 0xcf, 0x32, 0x19, 0xe8, 0x65, 0x9c, 0x28, 0xb5, 0xb2, 0xe6, 0x64, 0x51, 0x6d, + 0xa7, 0xf5, 0xfa, 0xe9, 0x2a, 0xa7, 0x7a, 0xa5, 0x76, 0x38, 0xd2, 0xac, 0xcb, 0x7e, 0xe1, 0x48, + 0x33, 0xca, 0x0e, 0xd2, 0xc2, 0x2f, 0x51, 0x76, 0xc0, 0xe8, 0x3a, 0x50, 0x76, 0x80, 0x70, 0x1b, + 0xc2, 0x6d, 0x08, 0xb7, 0x21, 0xdc, 0x96, 0xd2, 0x70, 0x1b, 0xca, 0x0e, 0x52, 0xc4, 0xf9, 0x51, + 0x76, 0xa0, 0x51, 0x1e, 0xca, 0x0e, 0x32, 0xab, 0x22, 0x28, 0x3b, 0x48, 0xe5, 0xd5, 0x51, 0x76, + 0x80, 0xb2, 0x03, 0x94, 0x1d, 0x80, 0x07, 0x81, 0x07, 0x81, 0x07, 0xe5, 0x8d, 0x07, 0xa1, 0xec, + 0x60, 0xcb, 0x07, 0x88, 0xb2, 0x03, 0x4d, 0x0f, 0x12, 0x65, 0x07, 0x5b, 0x3d, 0x3e, 0x94, 0x1d, + 0x68, 0x7e, 0x96, 0x28, 0x3b, 0x48, 0x8b, 0x93, 0x45, 0xd9, 0x81, 0xd6, 0xeb, 0xa7, 0xb6, 0xec, + 0x00, 0x1d, 0x7e, 0x4c, 0xeb, 0x48, 0x6a, 0x75, 0x23, 0x85, 0xed, 0x7d, 0x6e, 0x5e, 0x6f, 0x2e, + 0x47, 0xcd, 0x7d, 0xf4, 0x16, 0xc4, 0x90, 0x14, 0xc2, 0x90, 0xb5, 0xf4, 0xa9, 0xa0, 0xa5, 0x4f, + 0x96, 0x22, 0x18, 0x68, 0xe9, 0x93, 0xee, 0x96, 0x3e, 0x83, 0x91, 0xa9, 0x94, 0x94, 0x4d, 0x7d, + 0x62, 0x09, 0xa8, 0xaf, 0x43, 0x7d, 0x9d, 0x39, 0x33, 0xc4, 0x66, 0x8e, 0x78, 0xcc, 0x52, 0x36, + 0x38, 0x12, 0x59, 0x7d, 0x9d, 0x08, 0xc3, 0x80, 0xc0, 0x68, 0x2d, 0x6d, 0xa8, 0x58, 0x0e, 0x6d, + 0xce, 0xa8, 0x8c, 0x9c, 0x91, 0x49, 0xd3, 0xc6, 0x65, 0xe2, 0xd8, 0x4d, 0x1d, 0xbb, 0xc9, 0xe3, + 0x35, 0x7d, 0xc4, 0xe1, 0x2c, 0xaa, 0x8c, 0x35, 0x91, 0x49, 0x9c, 0x0a, 0xb0, 0x07, 0xea, 0x49, + 0xf8, 0xca, 0x75, 0xa2, 0xb8, 0x83, 0xd5, 0xb5, 0x5d, 0x8f, 0x2f, 0xcd, 0xb2, 0x4a, 0x38, 0xb1, + 0xae, 0xf1, 0x14, 0x01, 0x91, 0x1b, 0x53, 0x4e, 0xa3, 0x6a, 0xc0, 0xb8, 0x72, 0x1b, 0x59, 0x63, + 0xc6, 0xd6, 0x98, 0xd1, 0x35, 0x63, 0x7c, 0x69, 0x8d, 0x30, 0xb1, 0x31, 0x9e, 0x3e, 0x32, 0xf2, + 0x44, 0x7e, 0x12, 0x2b, 0xae, 0x57, 0x39, 0xf6, 0x5c, 0x6c, 0x22, 0x8f, 0x18, 0x44, 0xf1, 0xd4, + 0x3a, 0x4f, 0xfe, 0xf0, 0xd8, 0x90, 0x7d, 0xee, 0xda, 0x67, 0x66, 0xdf, 0xb6, 0x24, 0x96, 0xb9, + 0x16, 0x7a, 0x2a, 0xd7, 0x40, 0xb1, 0x2b, 0x93, 0x85, 0x99, 0x57, 0x25, 0xc6, 0x1a, 0xe9, 0xb4, + 0xa8, 0x52, 0xf9, 0xa8, 0x5a, 0xad, 0x37, 0xaa, 0xd5, 0x52, 0xe3, 0xb0, 0x51, 0x3a, 0xae, 0xd5, + 0xca, 0xf5, 0x72, 0x6d, 0x87, 0xb4, 0x6b, 0x2f, 0x1f, 0x52, 0x5a, 0x19, 0x2d, 0x0d, 0x27, 0xdc, + 0xdd, 0x85, 0x07, 0xbb, 0x63, 0x39, 0x4f, 0xc2, 0xf9, 0x2a, 0x07, 0x3d, 0x3e, 0xa2, 0x35, 0x27, + 0x15, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, + 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x2b, 0x47, 0x0c, 0xab, 0x6f, 0x3b, 0x5f, 0x85, + 0xb2, 0xba, 0x41, 0xd8, 0xb3, 0x15, 0x2f, 0xcd, 0x9a, 0x17, 0x0d, 0xae, 0x05, 0xae, 0x05, 0xae, + 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, 0x05, 0xae, + 0x05, 0xae, 0x95, 0x3f, 0xae, 0xe5, 0x09, 0xff, 0x31, 0x3a, 0x60, 0xc8, 0xcf, 0xb5, 0x62, 0xd1, + 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, + 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0xe0, 0x5a, 0x39, 0xe1, 0x5a, 0xc1, 0x40, 0x59, 0x41, 0xd7, + 0x0a, 0xc2, 0x8e, 0x08, 0xf9, 0x68, 0xd6, 0x9c, 0x54, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0xac, 0x9c, 0x30, 0xac, 0x50, 0x38, 0xc2, 0xfd, 0x26, 0x3a, 0x96, 0x6f, 0x3b, 0x5f, 0xf9, 0x28, + 0xd6, 0xbc, 0x58, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, + 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0x2c, 0x70, 0xac, 0x9c, 0x70, 0x2c, 0x15, 0xda, + 0xbe, 0xec, 0xb9, 0x2a, 0x6a, 0xf6, 0x37, 0x08, 0x19, 0x67, 0x3a, 0x2d, 0x49, 0x06, 0xd3, 0x02, + 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, + 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0xca, 0x1b, 0xd3, 0xfa, 0xdf, 0x81, 0x18, 0x08, 0xab, 0x3b, 0xf0, + 0x3c, 0x03, 0x64, 0x6b, 0x46, 0x38, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, + 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x16, 0xf8, 0x56, 0x4e, 0xf8, + 0xd6, 0xc0, 0xff, 0xea, 0x07, 0xff, 0xf8, 0x16, 0x6b, 0xed, 0xe0, 0xac, 0x50, 0xf0, 0x2b, 0xf0, + 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, 0x2b, 0xf0, + 0x2b, 0xf0, 0x2b, 0xf0, 0xab, 0x9c, 0xf1, 0x2b, 0xdf, 0x08, 0xc1, 0xc2, 0xd9, 0x2c, 0x30, 0x2c, + 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x30, 0x2c, 0x30, 0x2c, 0x76, 0x86, 0xb5, 0x97, 0x21, 0x9b, 0x51, 0x38, 0xf5, 0xfd, 0x40, 0xd9, + 0x23, 0x55, 0x25, 0x35, 0x13, 0x05, 0xe9, 0x3c, 0x89, 0x9e, 0xdd, 0xb7, 0xa3, 0x06, 0xf4, 0x85, + 0x62, 0xd0, 0x17, 0xbe, 0x13, 0xb1, 0x1c, 0xcb, 0x17, 0xea, 0x9f, 0x20, 0xfc, 0x6a, 0xb9, 0xbe, + 0x54, 0xb6, 0xef, 0x88, 0xe2, 0xe2, 0x1b, 0x72, 0xe9, 0x9d, 0x62, 0xaf, 0xef, 0xc9, 0xa2, 0x74, + 0x1f, 0x7d, 0xdb, 0x73, 0xfd, 0x47, 0xab, 0x1f, 0x06, 0x2a, 0x70, 0x02, 0x4f, 0x16, 0x47, 0x00, + 0xd4, 0x52, 0xa2, 0xe8, 0x8e, 0x00, 0x4f, 0xd7, 0x76, 0x84, 0x65, 0x2b, 0x15, 0xba, 0x0f, 0x03, + 0x25, 0xe4, 0xeb, 0x9b, 0x45, 0xa9, 0x6c, 0x25, 0x8a, 0x31, 0x2e, 0x92, 0x45, 0x11, 0x86, 0x41, + 0x28, 0x09, 0xd1, 0x51, 0x41, 0xaa, 0x70, 0xe0, 0x28, 0x3f, 0x06, 0x64, 0x57, 0xe3, 0xdf, 0x73, + 0x1e, 0xff, 0x9c, 0xf6, 0x65, 0xdf, 0x93, 0xed, 0xcf, 0x93, 0x9f, 0x73, 0x33, 0xf9, 0x35, 0xed, + 0x5b, 0xf9, 0xad, 0x7f, 0x27, 0xda, 0xe7, 0x93, 0xfb, 0x6e, 0x7f, 0x8a, 0xef, 0xb8, 0xdd, 0x1c, + 0xdf, 0xf1, 0x5e, 0x36, 0x14, 0x98, 0x40, 0x79, 0x0b, 0x6e, 0x94, 0x52, 0xb5, 0x7a, 0x42, 0x4a, + 0xfb, 0x51, 0x48, 0x32, 0xed, 0x9d, 0xa2, 0xe8, 0x45, 0x81, 0x44, 0x1b, 0x92, 0xd6, 0x77, 0x92, + 0x87, 0x16, 0x38, 0x42, 0x0a, 0x8c, 0xa1, 0x04, 0xae, 0x10, 0x02, 0x7b, 0xe8, 0x80, 0x3d, 0x64, + 0xc0, 0x1b, 0x2a, 0xc8, 0x96, 0x13, 0x26, 0x0f, 0x09, 0xb0, 0x86, 0x02, 0x18, 0x42, 0x00, 0x4c, + 0xd4, 0x9f, 0x21, 0x46, 0xc3, 0x49, 0xf5, 0x99, 0x79, 0x19, 0x37, 0xb5, 0x37, 0x41, 0xba, 0x18, + 0xa8, 0x3c, 0x2b, 0x85, 0x37, 0xa5, 0x22, 0xe6, 0x28, 0xbb, 0x11, 0xad, 0xc9, 0x28, 0xb5, 0x6d, + 0xed, 0x36, 0xdf, 0x78, 0x12, 0x9e, 0x17, 0xf0, 0x32, 0x8e, 0x05, 0x91, 0xe0, 0x1c, 0xe0, 0x1c, + 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, 0xe0, 0x1c, + 0xe0, 0x1c, 0x79, 0xe6, 0x1c, 0x7d, 0x5b, 0x3d, 0x59, 0x51, 0x7e, 0x8a, 0x97, 0x78, 0xac, 0x92, + 0x0b, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, + 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x91, 0x7b, 0xf6, 0xc1, 0xcf, 0x3b, 0xc0, 0x38, 0xc0, 0x38, + 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, + 0xc0, 0x38, 0x76, 0x87, 0x71, 0x28, 0x61, 0x9b, 0x48, 0x77, 0xcc, 0x8b, 0x05, 0xf7, 0x00, 0xf7, + 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, + 0x00, 0xf7, 0xc8, 0x33, 0xf7, 0x08, 0x85, 0x14, 0xe1, 0xb7, 0xa8, 0x19, 0x82, 0x89, 0x92, 0xab, + 0x9f, 0x88, 0x07, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, + 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0xd9, 0x15, 0x2e, 0x62, 0x8c, 0x85, 0x80, 0x7f, + 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, 0x80, 0x7f, + 0x80, 0x7f, 0x80, 0x7f, 0xec, 0x1c, 0xff, 0xe0, 0x2f, 0xc7, 0x4a, 0x96, 0x0e, 0x26, 0x02, 0x26, + 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, 0x02, 0x26, + 0x02, 0x26, 0x92, 0x67, 0x26, 0x22, 0x43, 0xd1, 0x0d, 0x85, 0x64, 0x3e, 0x87, 0xbe, 0x2c, 0x15, + 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x03, + 0xcc, 0x03, 0xcc, 0x03, 0xcc, 0x23, 0xb7, 0xcc, 0x23, 0x18, 0x28, 0xe6, 0x01, 0x83, 0x4b, 0x12, + 0xc1, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, + 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0x72, 0xcd, 0x38, 0xb8, 0x47, 0x0c, 0xae, 0x90, 0x09, 0xd6, + 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd6, + 0x01, 0xd6, 0x01, 0xd6, 0x91, 0x6b, 0xd6, 0x61, 0x64, 0xc8, 0x60, 0x92, 0x60, 0xf0, 0x0f, 0xf0, + 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, + 0x0f, 0xf0, 0x8f, 0xfc, 0xf3, 0x0f, 0x03, 0xcc, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, + 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x03, 0x9c, 0x63, 0x87, + 0x38, 0x07, 0x73, 0x67, 0xab, 0x04, 0xb9, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, + 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0xb9, 0x66, 0x1f, + 0x26, 0x47, 0x0d, 0xfe, 0x42, 0x3e, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, + 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0x08, 0xd8, 0xc8, 0xce, 0xb0, 0x11, 0x73, + 0x3c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, + 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x64, 0xf7, 0x18, 0x88, 0x81, 0xa2, 0x2c, 0xcc, 0x1b, + 0x04, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, 0x01, 0x17, + 0x01, 0x17, 0x01, 0x17, 0xd9, 0x51, 0x2e, 0x62, 0x60, 0xe0, 0xe0, 0x6a, 0xb1, 0xe0, 0x1e, 0xe0, + 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, + 0x1e, 0xe0, 0x1e, 0xb9, 0xe5, 0x1e, 0xa1, 0xad, 0x84, 0xe5, 0xb9, 0x3d, 0x57, 0x89, 0x0e, 0x23, + 0xf7, 0x58, 0x2d, 0x16, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, + 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x23, 0x1d, 0xdc, 0x63, 0x2f, 0xc5, 0x7b, + 0xbc, 0x70, 0xea, 0xfb, 0x81, 0x8a, 0x2a, 0xa9, 0x48, 0xb6, 0x75, 0x41, 0x3a, 0x4f, 0xa2, 0x67, + 0xf7, 0x6d, 0xf5, 0x34, 0xf2, 0xf8, 0xc5, 0xa0, 0x2f, 0x7c, 0x27, 0x42, 0xfd, 0x96, 0x2f, 0xd4, + 0x3f, 0x41, 0xf8, 0xd5, 0x72, 0x7d, 0xa9, 0x6c, 0xdf, 0x11, 0xc5, 0xc5, 0x37, 0xe4, 0xd2, 0x3b, + 0xc5, 0x5e, 0xdf, 0x93, 0x45, 0xe9, 0x3e, 0xfa, 0xb6, 0xe7, 0xfa, 0x8f, 0x56, 0x3f, 0x0c, 0x54, + 0xe0, 0x04, 0x9e, 0x2c, 0x8e, 0x00, 0x9c, 0xa5, 0x44, 0xd1, 0x1d, 0x01, 0x8a, 0xae, 0xed, 0x08, + 0xcb, 0x56, 0x2a, 0x74, 0x1f, 0x06, 0x4a, 0xc8, 0xd7, 0x37, 0x8b, 0x52, 0xd9, 0x4a, 0x14, 0x63, + 0xdc, 0x41, 0xc1, 0x9a, 0x0a, 0x52, 0x85, 0x03, 0x47, 0xf9, 0x31, 0xc2, 0xb9, 0x1a, 0xff, 0x80, + 0xf3, 0xf8, 0xfe, 0xdb, 0x97, 0x7d, 0x4f, 0xb6, 0x3f, 0x4f, 0xee, 0xff, 0x66, 0x72, 0xfb, 0xed, + 0x5b, 0xf9, 0xad, 0x7f, 0x27, 0xda, 0xe7, 0x93, 0x1b, 0x6d, 0x7f, 0x9a, 0xdc, 0xe2, 0x5e, 0x3a, + 0x55, 0x51, 0xa3, 0x1a, 0x16, 0x5e, 0xd7, 0xcc, 0xed, 0x68, 0x57, 0xc2, 0x29, 0xd8, 0x9c, 0x93, + 0xa2, 0x79, 0x13, 0xd1, 0xf8, 0x29, 0x32, 0x7a, 0x4c, 0x49, 0x8b, 0x19, 0xe8, 0x30, 0x35, 0x0d, + 0x66, 0xa3, 0xbf, 0x6c, 0xb4, 0x97, 0x87, 0xee, 0xa6, 0xdb, 0xd1, 0x91, 0xd1, 0x5a, 0x0e, 0x0b, + 0x33, 0x6b, 0x65, 0xca, 0x47, 0x3b, 0xe0, 0x13, 0x7a, 0xf6, 0x77, 0xcb, 0x73, 0xfd, 0xaf, 0xd6, + 0x83, 0xed, 0x77, 0xfe, 0x71, 0x3b, 0x11, 0x7c, 0x20, 0xf2, 0x0c, 0x2b, 0x64, 0xc1, 0x3f, 0xc0, + 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0x68, 0xd5, 0xf8, 0xa9, 0x79, 0xb1, 0xbe, 0x3e, 0xf4, 0x25, 0xa1, + 0x87, 0x20, 0x88, 0x75, 0x16, 0xbe, 0xf8, 0xe3, 0x78, 0x44, 0xe1, 0x4f, 0xa2, 0x7b, 0xa7, 0x0d, + 0xa2, 0x12, 0x46, 0xb3, 0x39, 0x82, 0xa6, 0x4c, 0x91, 0x30, 0xae, 0x20, 0x29, 0x67, 0x98, 0x8b, + 0x30, 0x28, 0xca, 0x12, 0x0c, 0xe5, 0x5e, 0x7a, 0xfe, 0xe0, 0x27, 0xab, 0x36, 0x64, 0x24, 0x68, + 0xd8, 0x4a, 0x2b, 0xc6, 0xdf, 0x4b, 0xd1, 0x9e, 0xa4, 0x0a, 0x5e, 0xa6, 0x31, 0x68, 0xa9, 0x07, + 0x8e, 0x6d, 0xbf, 0x7c, 0x1a, 0x96, 0xae, 0x20, 0x07, 0x0f, 0xd2, 0x09, 0xdd, 0xbe, 0xd6, 0x85, + 0x9b, 0xc2, 0xac, 0xb9, 0xab, 0x6b, 0x52, 0xb4, 0x09, 0xf5, 0xd6, 0x74, 0x39, 0xdd, 0xc4, 0x8d, + 0x82, 0xb0, 0x11, 0x12, 0x35, 0x2a, 0x82, 0x46, 0x4e, 0xcc, 0xc8, 0x09, 0x19, 0x2d, 0x11, 0x4b, + 0x97, 0xf1, 0x3e, 0x73, 0x43, 0xbd, 0x0a, 0xeb, 0x4c, 0x76, 0x15, 0x51, 0x9c, 0x28, 0xbe, 0x3e, + 0x4d, 0x6c, 0xa8, 0x8c, 0xd8, 0x10, 0x62, 0x43, 0x88, 0x0d, 0xa5, 0x33, 0x36, 0xa4, 0xdb, 0x54, + 0xd1, 0x22, 0x21, 0x4e, 0x64, 0xc4, 0xcc, 0x56, 0x51, 0x31, 0x9c, 0x2e, 0x73, 0xc7, 0x6e, 0xf6, + 0xd8, 0xcd, 0x1f, 0xaf, 0x19, 0x24, 0x0e, 0x53, 0x64, 0xbe, 0x62, 0xb8, 0x2f, 0x42, 0x47, 0xf8, + 0xca, 0x7e, 0x14, 0x0c, 0x25, 0xc3, 0x35, 0x94, 0x0c, 0xff, 0xfa, 0x87, 0xa0, 0x64, 0x58, 0x9f, + 0x3c, 0x94, 0x0c, 0x67, 0x56, 0x45, 0xca, 0xa5, 0x12, 0x2a, 0x84, 0xd3, 0x76, 0x75, 0x54, 0x08, + 0x6b, 0x01, 0x3e, 0xbb, 0x55, 0x21, 0x3c, 0xc3, 0x91, 0x8a, 0x71, 0xc4, 0x67, 0x07, 0xea, 0xad, + 0xc6, 0x39, 0x06, 0xb2, 0xd0, 0xd9, 0xf8, 0xf2, 0x19, 0x8b, 0x9c, 0x55, 0x10, 0x39, 0x43, 0xe4, + 0x0c, 0x91, 0xb3, 0x74, 0x46, 0xce, 0x1c, 0xdb, 0x73, 0x06, 0x9e, 0xad, 0x44, 0xc7, 0xb2, 0x1f, + 0x64, 0xe0, 0x0d, 0x94, 0xb0, 0x66, 0x6d, 0xb7, 0xf5, 0xf0, 0x0f, 0x7d, 0x40, 0xed, 0x2d, 0x37, + 0x81, 0x38, 0x1b, 0xe2, 0x6c, 0x88, 0xb3, 0x21, 0xce, 0x96, 0xa9, 0x38, 0xdb, 0xc0, 0xf5, 0x15, + 0x8e, 0xe5, 0x23, 0xc6, 0x86, 0x18, 0x1b, 0x62, 0x6c, 0xe9, 0x89, 0xb1, 0xe1, 0x58, 0x3e, 0x82, + 0x6e, 0x69, 0xde, 0x95, 0x48, 0xe7, 0x83, 0x66, 0x80, 0x66, 0x80, 0x66, 0x80, 0x66, 0xbc, 0x71, + 0xc7, 0x20, 0x9d, 0x0f, 0xaa, 0x01, 0xaa, 0x01, 0xaa, 0x91, 0x3e, 0xaa, 0x81, 0x74, 0x3e, 0x98, + 0x45, 0x3a, 0xae, 0x88, 0x74, 0xbe, 0xb6, 0x74, 0xbe, 0xc6, 0x83, 0x74, 0xfa, 0xd7, 0x1a, 0x27, + 0x2b, 0xcd, 0x6a, 0x47, 0x41, 0x6b, 0x35, 0x85, 0x96, 0x26, 0x70, 0x9f, 0x67, 0x6f, 0x2f, 0x2d, + 0xe7, 0x3f, 0xf7, 0x0c, 0xaa, 0xe7, 0x88, 0x97, 0x6a, 0xee, 0xb4, 0x54, 0xb8, 0x70, 0xa5, 0x3a, + 0x55, 0x4a, 0x4f, 0x9a, 0x7a, 0x84, 0x9f, 0x9b, 0x9e, 0x18, 0x11, 0xcb, 0x91, 0x2f, 0xf7, 0x07, + 0x9e, 0xa7, 0xe1, 0xbc, 0xec, 0xa5, 0xfd, 0x5d, 0xff, 0x45, 0xaf, 0xc3, 0x8e, 0x08, 0x45, 0xe7, + 0xe3, 0x73, 0x7c, 0x49, 0xa3, 0xeb, 0xaa, 0xd9, 0xdc, 0xa4, 0xcb, 0xcc, 0x14, 0x74, 0x1c, 0x99, + 0xd6, 0x62, 0x51, 0xb6, 0x33, 0x22, 0x9b, 0x6f, 0xfd, 0xcd, 0xbe, 0xb9, 0xa1, 0x52, 0xe9, 0x52, + 0xa6, 0x34, 0x28, 0xd1, 0x66, 0x0b, 0xb6, 0xfe, 0xe3, 0xde, 0xe0, 0x51, 0x17, 0x7c, 0xe1, 0x3e, + 0x3e, 0x3d, 0x04, 0xe1, 0xe6, 0x33, 0x2f, 0xa6, 0x71, 0xa0, 0xd7, 0x4b, 0x6d, 0xb8, 0xe4, 0xdb, + 0x95, 0x02, 0x6e, 0x1d, 0x86, 0xd6, 0x11, 0x66, 0xd6, 0x18, 0x46, 0xd6, 0x15, 0x26, 0xd6, 0x1e, + 0x06, 0xd6, 0x1e, 0xe6, 0xd5, 0x1b, 0xc6, 0xe5, 0x35, 0x53, 0xdb, 0x96, 0xc6, 0x4d, 0x77, 0xcd, + 0xf6, 0xeb, 0xbc, 0xb8, 0x0f, 0xb7, 0x5d, 0x66, 0x3d, 0x95, 0xb9, 0xda, 0x2a, 0x71, 0x75, 0x66, + 0x81, 0x08, 0xb2, 0x3d, 0xba, 0xb3, 0x3a, 0x64, 0xd9, 0x1b, 0xb2, 0x2c, 0x0d, 0x4d, 0x36, 0xc6, + 0x2c, 0x55, 0xd1, 0x55, 0xf9, 0x5a, 0xb0, 0x3b, 0x9d, 0x50, 0x48, 0xa9, 0xbf, 0x51, 0xce, 0xe4, + 0xc2, 0x7a, 0x7b, 0xe4, 0x94, 0xd0, 0x23, 0x47, 0xcb, 0xa5, 0xd1, 0x23, 0x87, 0xd5, 0x58, 0xa4, + 0x33, 0x0c, 0xa7, 0x3d, 0x15, 0x3b, 0xd5, 0x58, 0x4f, 0xd8, 0xdd, 0x50, 0x74, 0x75, 0x6a, 0xec, + 0xc4, 0xeb, 0x37, 0x34, 0x5e, 0xf3, 0x26, 0x66, 0x5f, 0x1f, 0x3e, 0xc4, 0xb3, 0x1b, 0x26, 0x46, + 0x2b, 0x4f, 0xed, 0xd0, 0xb4, 0x9e, 0xbd, 0x22, 0x39, 0x73, 0x45, 0xd6, 0x00, 0xad, 0x02, 0xe3, + 0x0e, 0xe3, 0xbe, 0xa3, 0xc6, 0x5d, 0x7b, 0x03, 0x34, 0xdd, 0x48, 0x91, 0x18, 0x31, 0x12, 0x21, + 0x47, 0x32, 0x04, 0x49, 0x69, 0x6c, 0x18, 0x8c, 0x0e, 0xb5, 0xf1, 0x61, 0x33, 0x42, 0x6c, 0xc6, + 0x88, 0xc7, 0x28, 0xe9, 0x35, 0x4e, 0x9a, 0x8d, 0x14, 0x1d, 0x12, 0x5d, 0xd2, 0x78, 0xb7, 0x6f, + 0xd1, 0xd8, 0x97, 0x39, 0x00, 0x73, 0x4c, 0x70, 0xed, 0xf8, 0xd9, 0x64, 0xae, 0x73, 0xfd, 0xeb, + 0x93, 0xff, 0x56, 0x25, 0x7c, 0xf6, 0x4b, 0x6b, 0x40, 0x79, 0xe8, 0xeb, 0xc6, 0x56, 0x4a, 0x84, + 0x3e, 0x79, 0x2d, 0x66, 0xe1, 0x3f, 0xef, 0xde, 0xdd, 0x97, 0xac, 0xe3, 0xd6, 0xcb, 0x7d, 0xd9, + 0x3a, 0x6e, 0x8d, 0x5f, 0x96, 0xa3, 0xbf, 0xc6, 0xaf, 0x2b, 0xf7, 0x25, 0xab, 0x3a, 0x79, 0x5d, + 0xbb, 0x2f, 0x59, 0xb5, 0xd6, 0xc1, 0xdf, 0x7f, 0x7f, 0x38, 0xf8, 0x71, 0x38, 0x5c, 0xff, 0x8b, + 0xff, 0x2a, 0x64, 0xad, 0xaa, 0xea, 0x7d, 0x86, 0x37, 0x43, 0x1d, 0x9b, 0x61, 0xb3, 0xcd, 0x60, 0x5b, 0xdd, 0x53, 0xeb, 0xb7, 0xd6, 0x8f, 0xf2, 0xfb, 0xea, 0xf0, 0xe4, 0xe0, 0x47, 0x63, 0xb8, 0xf8, 0xe6, 0xcb, 0xaa, 0x8f, 0x95, 0xdf, 0x37, 0x86, 0x27, 0x09, 0xff, 0x52, 0x1f, 0x9e, 0xbc, 0xf1, 0x1a, 0xb5, 0xe1, 0xbb, 0xa5, 0x8f, 0x8e, 0xde, 0xaf, 0x24, 0x7d, 0xa1, 0x9a, 0xf0, 0x85, 0xc3, 0xa4, 0x2f, 0x1c, 0x26, 0x7c, 0x21, 0xf1, 0x96, 0x2a, 0x09, 0x5f, 0xa8, 0x0d, 0x5f, 0x96, 0x3e, 0xff, 0x6e, 0xf5, 0x47, 0xeb, 0xc3, 0x83, 0x97, 0xa4, 0x7f, 0x6b, 0x0c, 0x5f, 0x4e, 0x0e, - 0x76, 0x40, 0x85, 0x21, 0x5f, 0x2f, 0x8d, 0x3e, 0x91, 0x50, 0x74, 0x45, 0x28, 0x7c, 0xc7, 0x40, - 0xd6, 0xde, 0xcc, 0xda, 0xf0, 0x7c, 0xc0, 0xf3, 0x01, 0xcf, 0x07, 0x3c, 0x1f, 0xf0, 0x7c, 0x30, - 0x9e, 0x58, 0x94, 0x7b, 0xe5, 0x88, 0x3f, 0xa1, 0xdc, 0x8b, 0x7c, 0x36, 0x5c, 0xe2, 0xfa, 0x28, - 0xf7, 0xda, 0x59, 0x91, 0xab, 0xd4, 0xd0, 0xc1, 0x15, 0x04, 0x72, 0x87, 0x09, 0x64, 0x28, 0x54, - 0xf8, 0x6c, 0x29, 0xb7, 0x67, 0x22, 0x90, 0x3e, 0xbb, 0x38, 0x28, 0x64, 0x1e, 0x28, 0x24, 0x3a, - 0x86, 0xec, 0x28, 0x85, 0x44, 0xc7, 0x90, 0xac, 0x52, 0xc8, 0x72, 0xdd, 0x00, 0x87, 0xac, 0x83, - 0x43, 0x82, 0x43, 0x82, 0x43, 0x82, 0x43, 0xe6, 0x40, 0xe4, 0xea, 0xa5, 0x12, 0x38, 0x24, 0x38, - 0xe4, 0xee, 0x72, 0x48, 0x29, 0xd4, 0xa0, 0x6f, 0xb0, 0xdd, 0xe5, 0xc2, 0xfa, 0xfc, 0xc5, 0xc8, - 0x0d, 0xb0, 0x57, 0xb0, 0x57, 0xb0, 0x57, 0xb0, 0x57, 0xb0, 0x57, 0x6e, 0xf6, 0x8a, 0x00, 0x28, - 0xc8, 0x6b, 0x6e, 0x98, 0x04, 0xfa, 0x5d, 0x82, 0xbc, 0x32, 0x8b, 0x1c, 0xfa, 0x5d, 0x82, 0xba, - 0xee, 0x32, 0x75, 0xed, 0x77, 0xad, 0x9e, 0x50, 0xa1, 0xeb, 0x18, 0xa0, 0xad, 0xaf, 0x6b, 0x83, - 0x3e, 0xe6, 0x81, 0x3e, 0x22, 0x7f, 0x76, 0x47, 0xe9, 0x23, 0xf2, 0x67, 0xb3, 0x4a, 0x1f, 0xeb, - 0x55, 0x03, 0xfc, 0xf1, 0x08, 0xfc, 0x11, 0xfc, 0x11, 0xfc, 0x11, 0xfc, 0x31, 0x07, 0x22, 0x57, - 0x3e, 0xaa, 0x56, 0xeb, 0x8d, 0x6a, 0xb5, 0xd4, 0x38, 0x6c, 0x94, 0x8e, 0x6b, 0xb5, 0x72, 0xbd, - 0x8c, 0x8c, 0x5a, 0x50, 0xca, 0x1d, 0xa6, 0x94, 0x03, 0x29, 0x2c, 0x47, 0xf6, 0xbb, 0xfc, 0x84, - 0x72, 0xba, 0x32, 0xe8, 0x24, 0xe8, 0x24, 0xe8, 0x24, 0xe8, 0x24, 0xe8, 0x24, 0xe3, 0x89, 0x7d, - 0x08, 0x02, 0x4f, 0xd8, 0xbe, 0x89, 0x2e, 0x54, 0xe5, 0xbc, 0x98, 0xe7, 0xbd, 0x0c, 0x8b, 0x60, - 0xe1, 0xd4, 0xf7, 0x83, 0x71, 0x43, 0x48, 0x16, 0x01, 0x2c, 0x48, 0xe7, 0x49, 0xf4, 0xec, 0x7e, - 0x3c, 0xe7, 0xb9, 0x18, 0xf4, 0x85, 0x3f, 0x1e, 0xd7, 0x6c, 0xf9, 0x42, 0xfd, 0x13, 0x84, 0x5f, - 0x2d, 0xd7, 0x97, 0xca, 0xf6, 0x1d, 0x51, 0x5c, 0x7c, 0x43, 0x2e, 0xbd, 0x53, 0x1c, 0x29, 0x9d, - 0xa2, 0x27, 0xfb, 0xb2, 0xe8, 0x04, 0xbe, 0x54, 0xa1, 0xed, 0xfa, 0xa2, 0x33, 0x1e, 0x02, 0xad, - 0x06, 0xbe, 0x2f, 0x3c, 0x19, 0xff, 0x5d, 0xec, 0x57, 0xfa, 0xd6, 0xf8, 0xa5, 0x65, 0x2b, 0x15, - 0xba, 0x0f, 0x03, 0x25, 0x64, 0xf4, 0x6e, 0x3f, 0x74, 0x7b, 0x76, 0xf8, 0x3c, 0xfe, 0xd6, 0xd2, - 0x1b, 0x52, 0xd9, 0x8a, 0x78, 0x8a, 0x34, 0x9d, 0x00, 0xd1, 0x5c, 0x99, 0x48, 0x24, 0x47, 0x26, - 0x95, 0x78, 0xae, 0x56, 0xe1, 0xc2, 0x95, 0xea, 0x54, 0x29, 0xda, 0xaa, 0xb1, 0xc2, 0xa5, 0xeb, - 0x37, 0x3d, 0x31, 0xb2, 0x8d, 0x23, 0x42, 0xe7, 0x0f, 0x3c, 0xef, 0xfd, 0x1e, 0x25, 0x9f, 0xe7, - 0x5b, 0xec, 0x3a, 0xec, 0x88, 0x50, 0x74, 0x3e, 0x3e, 0xc7, 0x4b, 0x65, 0x4a, 0xbe, 0x98, 0x54, - 0x5d, 0xd6, 0x54, 0x1c, 0xa1, 0xed, 0x2f, 0x48, 0x15, 0x0e, 0x1c, 0x15, 0xcf, 0xe7, 0x2b, 0x5c, - 0x8d, 0x7f, 0xdb, 0x79, 0xfc, 0xd3, 0xda, 0x97, 0x7d, 0x4f, 0xb6, 0x2f, 0x64, 0x5f, 0xb6, 0x3f, - 0xbd, 0xfe, 0xb4, 0x1b, 0x5b, 0x3d, 0xb5, 0xef, 0xa2, 0x9f, 0xd1, 0xbe, 0xa9, 0xdc, 0x8c, 0x5f, - 0x9d, 0x4e, 0x7f, 0xcf, 0xe8, 0xbd, 0x9b, 0xf1, 0xdd, 0x8f, 0x3e, 0x49, 0xa3, 0x99, 0xf5, 0xeb, - 0x4d, 0xbd, 0x57, 0xd4, 0x7c, 0x42, 0xa8, 0x4f, 0x46, 0xca, 0x4f, 0x84, 0x5e, 0x19, 0xd2, 0xb7, - 0xd3, 0x1a, 0x77, 0xb9, 0x30, 0xfa, 0xcd, 0x52, 0x38, 0x81, 0xdf, 0x99, 0xfc, 0x6a, 0xa9, 0x7d, - 0xab, 0x5f, 0x7b, 0x6c, 0xad, 0x58, 0x4c, 0xb3, 0xc4, 0x4e, 0x48, 0x84, 0xe6, 0xcb, 0x52, 0x79, - 0x6b, 0x28, 0xbd, 0x32, 0x0c, 0xde, 0x17, 0x6a, 0x2f, 0x0b, 0x9b, 0x37, 0x85, 0xcd, 0x6b, 0xc2, - 0xe3, 0x1d, 0x49, 0xb7, 0x55, 0x39, 0x73, 0x69, 0x70, 0xf6, 0x0a, 0xfd, 0x42, 0x27, 0x99, 0xc9, - 0x3a, 0x8d, 0x4a, 0x44, 0x69, 0x54, 0x1b, 0xb9, 0x8a, 0xe3, 0x50, 0x75, 0x8c, 0x2a, 0x8f, 0x4b, - 0xf5, 0xb1, 0xab, 0x40, 0x76, 0x55, 0xc8, 0xab, 0x12, 0xb3, 0xe9, 0xfa, 0xa0, 0x52, 0x95, 0xd3, - 0x05, 0xec, 0x4e, 0xcf, 0xf5, 0xad, 0xc7, 0x30, 0x18, 0xf4, 0x25, 0xbd, 0x2c, 0x4f, 0x8e, 0xe7, - 0xdc, 0xaa, 0xc4, 0xd2, 0x45, 0xab, 0x36, 0xd9, 0xd4, 0x27, 0xa7, 0x1a, 0x35, 0xa0, 0x4e, 0xb9, - 0xd5, 0xaa, 0x31, 0xf5, 0x6a, 0x4c, 0xcd, 0x9a, 0x51, 0xb7, 0xb4, 0x6a, 0x97, 0x58, 0xfd, 0xb2, - 0xa9, 0xe1, 0xe9, 0x42, 0xce, 0x44, 0x8b, 0x30, 0x27, 0x5b, 0xc4, 0xeb, 0xf2, 0xa6, 0x5a, 0x94, - 0x91, 0x6a, 0x91, 0x65, 0x55, 0x6d, 0x4a, 0x65, 0x1b, 0x57, 0xdd, 0xc6, 0x55, 0xb8, 0x59, 0x55, - 0xce, 0xa3, 0xd2, 0x99, 0x54, 0x3b, 0xbb, 0x8a, 0x9f, 0x2e, 0x28, 0xbe, 0x3b, 0xde, 0xa0, 0x23, - 0xc6, 0x28, 0xd8, 0xdc, 0xe8, 0xe5, 0xf9, 0xdb, 0x60, 0x96, 0x5f, 0x33, 0x69, 0xbf, 0xec, 0x06, - 0xc1, 0xa4, 0x61, 0x48, 0x81, 0x81, 0x30, 0x6d, 0x28, 0x52, 0x63, 0x30, 0x52, 0x63, 0x38, 0xd2, - 0x61, 0x40, 0x78, 0x0d, 0x09, 0xb3, 0x41, 0x99, 0x3e, 0x62, 0xf6, 0x1c, 0xbe, 0xa5, 0x13, 0xef, - 0x09, 0xbb, 0x1b, 0x8a, 0xae, 0xc9, 0x01, 0x66, 0x0d, 0x33, 0x03, 0xcc, 0xa2, 0xb0, 0xf2, 0x87, - 0x0f, 0xc5, 0x9f, 0xfc, 0x4f, 0x09, 0xeb, 0xd1, 0x0b, 0x1e, 0xec, 0xb9, 0x48, 0xf0, 0xe8, 0x1c, - 0x58, 0xb3, 0x4e, 0xaa, 0xe2, 0xcc, 0x7f, 0xcc, 0xbe, 0xb6, 0xa2, 0x14, 0x86, 0x5c, 0xcb, 0x2f, - 0x4b, 0x6a, 0x54, 0xe2, 0xea, 0x9c, 0x29, 0x53, 0xc9, 0x37, 0xc1, 0x98, 0x4a, 0x95, 0x78, 0x13, - 0x2c, 0x29, 0x56, 0xe6, 0x55, 0x34, 0xa3, 0x78, 0x17, 0x5c, 0x7f, 0x8c, 0x7d, 0x6d, 0xcf, 0x33, - 0x0d, 0xc3, 0x97, 0x6f, 0x05, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, - 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x7c, 0x07, 0xa0, 0xb8, 0xff, 0x9c, 0x1a, 0x28, - 0x3e, 0xbd, 0x15, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, - 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x66, 0x28, 0x9e, 0xab, 0x5c, 0x1b, 0xe6, 0xde, 0x12, - 0xd3, 0x75, 0xd3, 0x57, 0x6e, 0xba, 0x50, 0x0d, 0xb9, 0xe2, 0xbd, 0xe2, 0x9c, 0xc2, 0x8d, 0xf3, - 0x34, 0xd1, 0xc0, 0xec, 0xed, 0x7b, 0x1e, 0xf5, 0xe9, 0xe0, 0x6f, 0x87, 0x1d, 0x2d, 0x9b, 0xf3, - 0x7c, 0xda, 0x0a, 0xf2, 0x69, 0x73, 0x44, 0x08, 0x91, 0x4f, 0x8b, 0x7c, 0x5a, 0x7d, 0x8f, 0x12, - 0xf9, 0xb4, 0xf0, 0x1c, 0xe6, 0xd1, 0x30, 0xa4, 0xc0, 0x40, 0x98, 0x36, 0x14, 0xa9, 0x31, 0x18, - 0xa9, 0x31, 0x1c, 0xe9, 0x30, 0x20, 0xfc, 0xb4, 0x74, 0x1f, 0x9e, 0xc3, 0x7d, 0x13, 0x0a, 0x1e, - 0x9e, 0xc3, 0xec, 0xca, 0x2f, 0x3c, 0x87, 0xf0, 0x1c, 0x22, 0x9f, 0x96, 0x5a, 0x47, 0x23, 0x9f, - 0x16, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, - 0x1c, 0x50, 0x7c, 0x27, 0xa1, 0x38, 0xf2, 0x69, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, - 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x01, 0xc5, 0x91, 0x4f, 0xab, 0x63, - 0xdd, 0xec, 0xe7, 0xd3, 0x32, 0x4c, 0x71, 0xe3, 0x13, 0x39, 0x0c, 0x1c, 0xdc, 0x29, 0xe1, 0x2d, - 0xb0, 0x64, 0x4f, 0x53, 0xcc, 0xe9, 0xfa, 0x3c, 0xf9, 0x51, 0xd1, 0x67, 0x4f, 0x47, 0xbf, 0xe9, - 0xf7, 0xf1, 0x4f, 0xca, 0xea, 0x3c, 0x45, 0xc2, 0x39, 0x13, 0x4c, 0x2d, 0xa1, 0x79, 0x5b, 0x41, - 0xa3, 0x2b, 0x7f, 0xa6, 0x7c, 0x2c, 0xe8, 0xca, 0x9f, 0x4f, 0x1f, 0x09, 0xba, 0xf2, 0xbf, 0x4d, - 0x05, 0xcb, 0x7e, 0xd7, 0x52, 0xae, 0x78, 0x08, 0x85, 0xfd, 0x55, 0x84, 0x06, 0xda, 0xf3, 0x2f, - 0xdc, 0x00, 0x6f, 0x5d, 0x51, 0x09, 0x7d, 0xfa, 0xb3, 0xac, 0xbc, 0x4d, 0x29, 0x71, 0xe3, 0xca, - 0xdc, 0xb8, 0x52, 0x37, 0xab, 0xdc, 0xf3, 0xe9, 0xeb, 0x60, 0x77, 0x74, 0x2f, 0x29, 0x61, 0x2b, - 0xd2, 0xc2, 0xae, 0xff, 0xc8, 0x79, 0x76, 0x27, 0x78, 0xb9, 0xca, 0xb8, 0x66, 0xd3, 0x1f, 0xf4, - 0x46, 0x8f, 0x9a, 0x33, 0x6e, 0x7d, 0x26, 0xba, 0xf6, 0xc0, 0x8b, 0x0e, 0xca, 0xed, 0xe9, 0xd5, - 0xd9, 0xf5, 0x25, 0x6a, 0x9d, 0xdf, 0xfe, 0xf0, 0xc4, 0xf7, 0xbe, 0xe7, 0x3a, 0xae, 0x8a, 0x7c, - 0x05, 0x56, 0xcc, 0xda, 0x99, 0xa1, 0xca, 0x8a, 0x7b, 0x00, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, - 0x5a, 0x01, 0x5a, 0x61, 0x3c, 0xb1, 0xfc, 0xe1, 0x78, 0x13, 0x61, 0xf8, 0x9f, 0x87, 0xdf, 0x47, - 0xd6, 0xa7, 0x63, 0xcd, 0x59, 0x24, 0xb9, 0xea, 0xcd, 0xb8, 0xad, 0x4a, 0x91, 0x2f, 0xcc, 0x9e, - 0x0f, 0xbc, 0xf1, 0x14, 0x78, 0x1d, 0xab, 0x1f, 0xba, 0x41, 0xe8, 0xaa, 0x67, 0x7e, 0xa8, 0x31, - 0xbf, 0x3c, 0x57, 0x5f, 0x83, 0x57, 0x80, 0x5a, 0x02, 0xb2, 0xc9, 0x05, 0xb2, 0x09, 0xe5, 0xb7, - 0x3e, 0x90, 0xcd, 0x0e, 0x22, 0x9b, 0x68, 0xe3, 0x81, 0x6c, 0x32, 0x86, 0x6c, 0x06, 0xae, 0xaf, - 0x8e, 0x0c, 0xe0, 0x9a, 0x1a, 0xe3, 0x92, 0xb7, 0xb6, 0xff, 0x38, 0xfa, 0xb1, 0xf7, 0xac, 0xe7, - 0xc3, 0x4c, 0xe6, 0x9d, 0xc1, 0x4c, 0x6d, 0x23, 0x85, 0x01, 0xd3, 0xe5, 0xff, 0xdb, 0xf6, 0x06, - 0xc2, 0xe0, 0xfa, 0xbf, 0x85, 0xb6, 0xa3, 0xdc, 0xc0, 0x3f, 0x73, 0x1f, 0xdd, 0x28, 0xe7, 0xb0, - 0xc4, 0x9f, 0x94, 0x6d, 0x26, 0xcf, 0x72, 0xe7, 0x45, 0xae, 0xb1, 0xc3, 0x22, 0x97, 0xd3, 0x94, - 0xd6, 0x16, 0x88, 0xeb, 0x9b, 0xc5, 0xd0, 0x8c, 0x6b, 0x1c, 0xce, 0xf0, 0xdc, 0x50, 0x46, 0x38, - 0xc3, 0x77, 0x94, 0x32, 0xc2, 0x19, 0x9e, 0x45, 0xca, 0x28, 0x55, 0x68, 0x28, 0x5e, 0x7f, 0x04, - 0xab, 0xfc, 0xe6, 0x67, 0x16, 0x45, 0x8c, 0x9d, 0xa0, 0xd7, 0x1f, 0x8c, 0xeb, 0x00, 0xac, 0x9e, - 0x50, 0x4f, 0x41, 0x87, 0xdf, 0x50, 0x27, 0xdd, 0x08, 0xbf, 0x8b, 0x39, 0xd6, 0x38, 0xea, 0xe4, - 0xe2, 0xfa, 0xd3, 0xe9, 0xc5, 0xc5, 0x5f, 0xed, 0x4f, 0xd7, 0x97, 0x37, 0x5f, 0xee, 0x9a, 0x67, - 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0xc0, 0x11, 0x9c, 0x27, 0xd6, 0xed, 0x08, 0x5f, - 0xb9, 0xea, 0xd9, 0x50, 0x60, 0x9d, 0xd3, 0x03, 0x7d, 0x1e, 0xff, 0xd4, 0x8f, 0xb6, 0x14, 0xe6, - 0x7a, 0xc7, 0xdc, 0x9c, 0xde, 0xfd, 0x11, 0xdb, 0xbc, 0xd3, 0xbb, 0xf3, 0xeb, 0xab, 0xf6, 0x65, - 0xf3, 0xee, 0x8f, 0xeb, 0x33, 0x6e, 0xed, 0x11, 0xb9, 0xcd, 0x24, 0xbb, 0x3f, 0x7e, 0xdf, 0x88, - 0x4f, 0x7e, 0x6e, 0x03, 0x9a, 0xff, 0x73, 0xd7, 0xbc, 0xbd, 0x8a, 0xa0, 0xc7, 0xbf, 0xbf, 0x34, - 0x6f, 0xcf, 0x9b, 0x67, 0x85, 0x5d, 0x70, 0x12, 0x1b, 0x7f, 0xea, 0x37, 0x17, 0xe7, 0x9f, 0xce, - 0xef, 0x2e, 0xfe, 0x6a, 0x9f, 0x35, 0x7f, 0x3b, 0xbf, 0xc2, 0x53, 0xe7, 0x78, 0xea, 0x4b, 0x18, - 0x3b, 0xe7, 0xbe, 0xe9, 0x56, 0xde, 0xf0, 0x47, 0x3e, 0x59, 0xb0, 0x14, 0xe1, 0x37, 0x13, 0x45, - 0x67, 0x49, 0x37, 0x02, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0x09, 0xe6, 0xc9, 0xc9, 0x3c, - 0xfb, 0x96, 0xdd, 0xe9, 0x84, 0x42, 0x4a, 0x13, 0xc4, 0xf3, 0x98, 0x71, 0xcd, 0xf8, 0x19, 0xe7, - 0x3e, 0xf3, 0xe9, 0x75, 0x67, 0xbf, 0x55, 0x0d, 0xec, 0xed, 0xd2, 0x1e, 0x1f, 0x99, 0x69, 0x9e, - 0xa7, 0x44, 0xe8, 0x1b, 0x21, 0xd6, 0xd1, 0x0d, 0xfc, 0xe7, 0xdd, 0xbb, 0xfb, 0x92, 0x75, 0xdc, - 0x7a, 0xb9, 0x2f, 0x5b, 0xc7, 0xad, 0xf1, 0xcb, 0x72, 0xf4, 0xd7, 0xf8, 0x75, 0xe5, 0xbe, 0x64, - 0x55, 0x27, 0xaf, 0x6b, 0xf7, 0x25, 0xab, 0xd6, 0x3a, 0xf8, 0xfb, 0xef, 0x0f, 0x07, 0x3f, 0x0e, - 0x87, 0xeb, 0x7f, 0xf1, 0x5f, 0xfc, 0x84, 0xa2, 0x95, 0xe7, 0xa6, 0x81, 0x66, 0x0f, 0x6d, 0x1d, - 0x87, 0xd6, 0xec, 0xa1, 0xb5, 0xad, 0xee, 0xa9, 0xf5, 0x5b, 0xeb, 0x47, 0xf9, 0x7d, 0x75, 0x78, - 0x72, 0xf0, 0xa3, 0x31, 0x5c, 0x7c, 0xf3, 0x65, 0xd5, 0xc7, 0xca, 0xef, 0x1b, 0xc3, 0x93, 0x84, - 0x7f, 0xa9, 0x0f, 0x4f, 0xde, 0x78, 0x8d, 0xda, 0xf0, 0xdd, 0xd2, 0x47, 0x47, 0xef, 0x57, 0x92, - 0xbe, 0x50, 0x4d, 0xf8, 0xc2, 0x61, 0xd2, 0x17, 0x0e, 0x13, 0xbe, 0x90, 0x78, 0x4b, 0x95, 0x84, - 0x2f, 0xd4, 0x86, 0x2f, 0x4b, 0x9f, 0x7f, 0xb7, 0xfa, 0xa3, 0xf5, 0xe1, 0xc1, 0x4b, 0xd2, 0xbf, - 0x35, 0x86, 0x2f, 0x27, 0x07, 0x3b, 0xa0, 0xc2, 0x90, 0xaf, 0x97, 0x46, 0x9f, 0x48, 0x28, 0xba, - 0x22, 0x14, 0xbe, 0x63, 0x20, 0x6b, 0x6f, 0x66, 0x6d, 0x78, 0x3e, 0xe0, 0xf9, 0x80, 0xe7, 0x03, - 0x9e, 0x0f, 0x78, 0x3e, 0x18, 0x4f, 0x2c, 0xca, 0xbd, 0x72, 0xc4, 0x9f, 0x50, 0xee, 0x45, 0xde, - 0xf3, 0x34, 0x71, 0x7d, 0x94, 0x7b, 0xed, 0xac, 0xc8, 0x55, 0x6a, 0x35, 0x14, 0x7c, 0x81, 0x40, - 0xee, 0x2e, 0x81, 0x0c, 0x85, 0x0a, 0x9f, 0x2d, 0xe5, 0xf6, 0x4c, 0x04, 0xd2, 0x67, 0x17, 0x07, - 0x85, 0xcc, 0x03, 0x85, 0x44, 0xc7, 0x90, 0x1d, 0xa5, 0x90, 0xe8, 0x18, 0x92, 0x55, 0x0a, 0x59, - 0xae, 0x1b, 0xe0, 0x90, 0x75, 0x70, 0x48, 0x70, 0x48, 0x70, 0x48, 0x70, 0xc8, 0x1c, 0x88, 0x5c, - 0xbd, 0x54, 0x02, 0x87, 0x04, 0x87, 0xdc, 0x5d, 0x0e, 0x29, 0x85, 0x1a, 0xf4, 0x0d, 0xb6, 0xbb, - 0x5c, 0x58, 0x9f, 0xbf, 0x18, 0xb9, 0x01, 0xf6, 0x0a, 0xf6, 0x0a, 0xf6, 0x0a, 0xf6, 0x0a, 0xf6, - 0xca, 0xcd, 0x5e, 0x11, 0x00, 0x05, 0x79, 0xcd, 0x0d, 0x93, 0x40, 0xbf, 0x4b, 0x90, 0x57, 0x66, - 0x91, 0x43, 0xbf, 0x4b, 0x50, 0xd7, 0x1d, 0xa6, 0xae, 0x03, 0x29, 0x2c, 0x47, 0xf6, 0xbb, 0xfc, - 0xa4, 0x75, 0xba, 0x32, 0xa8, 0x63, 0x1e, 0xa8, 0x23, 0x72, 0x67, 0x77, 0x94, 0x3a, 0x22, 0x77, - 0x36, 0x8b, 0xd4, 0xf1, 0x21, 0x08, 0x3c, 0x61, 0xfb, 0x26, 0x4a, 0x86, 0xcb, 0x79, 0x31, 0xcf, - 0x99, 0x1e, 0x91, 0x7d, 0xea, 0xfb, 0xc1, 0xb8, 0x7b, 0x07, 0xcf, 0xa4, 0x6c, 0xe9, 0x3c, 0x89, - 0x9e, 0xdd, 0x8f, 0x87, 0x72, 0x15, 0x83, 0xbe, 0xf0, 0xc7, 0xb3, 0xb5, 0x2c, 0x5f, 0xa8, 0x7f, - 0x82, 0xf0, 0xab, 0xe5, 0xfa, 0x52, 0xd9, 0xbe, 0x23, 0x8a, 0x8b, 0x6f, 0xc8, 0xa5, 0x77, 0x8a, - 0x23, 0xa5, 0x53, 0xf4, 0x64, 0x5f, 0x16, 0x9d, 0xc0, 0x97, 0x2a, 0xb4, 0x5d, 0x5f, 0x74, 0xc6, - 0x13, 0xbb, 0xd4, 0xc0, 0xf7, 0x85, 0x27, 0xe3, 0xbf, 0x8b, 0xfd, 0x4a, 0xdf, 0x1a, 0xbf, 0xb4, - 0x6c, 0xa5, 0x42, 0xf7, 0x61, 0xa0, 0x84, 0x8c, 0xde, 0x95, 0xc2, 0x09, 0xfc, 0x8e, 0x1d, 0x3e, - 0xc7, 0xe3, 0xbf, 0x96, 0xdf, 0x8b, 0xa7, 0x7f, 0xd1, 0x6a, 0x37, 0x3a, 0x31, 0x22, 0x14, 0x21, - 0x9e, 0x3e, 0xe9, 0x9c, 0xfd, 0xd1, 0x99, 0xf0, 0x21, 0x1b, 0x2e, 0xe4, 0xc4, 0x83, 0x06, 0x70, - 0x20, 0x37, 0xfe, 0x33, 0x86, 0xfb, 0x8c, 0xe1, 0x3d, 0x33, 0x38, 0x2f, 0xdb, 0x46, 0x95, 0x0d, - 0xcf, 0x19, 0x18, 0xe6, 0xc9, 0x39, 0xc4, 0x73, 0x76, 0x78, 0x27, 0xdb, 0x04, 0xce, 0x6c, 0x1a, - 0x62, 0xa9, 0x6c, 0xc5, 0x68, 0x89, 0xc7, 0xcb, 0xf1, 0x98, 0xe2, 0x32, 0x97, 0x29, 0xae, 0xc0, - 0x14, 0xc3, 0x14, 0xc3, 0x14, 0xe7, 0xca, 0x14, 0x9f, 0xb9, 0x3c, 0xf5, 0x3c, 0x05, 0x5b, 0xca, - 0xc0, 0x71, 0x6d, 0x25, 0x3a, 0x51, 0x16, 0x85, 0x25, 0x85, 0x94, 0x6e, 0xe0, 0x4b, 0x7e, 0x8f, - 0x7a, 0xe2, 0x9d, 0xc0, 0xc3, 0x9e, 0x35, 0x35, 0x6e, 0x50, 0x9d, 0x9b, 0x52, 0xeb, 0xc6, 0xd5, - 0xbb, 0x71, 0x35, 0x6f, 0x56, 0xdd, 0xf3, 0xa8, 0x7d, 0x26, 0xf5, 0xcf, 0xcf, 0xc8, 0x0c, 0x32, - 0x33, 0x13, 0x0c, 0x6d, 0x15, 0x53, 0x4b, 0xfa, 0x9f, 0x74, 0x1f, 0x7d, 0xdb, 0x73, 0xfd, 0x47, - 0xab, 0x1f, 0x06, 0x2a, 0x70, 0x02, 0x4f, 0x16, 0x23, 0x03, 0xa5, 0x44, 0x71, 0x62, 0xa3, 0x26, - 0x2f, 0x8a, 0x5e, 0xe0, 0xd8, 0x9e, 0xe5, 0xfa, 0x1d, 0xf1, 0xbd, 0x90, 0x2b, 0x49, 0xbc, 0x70, - 0xa5, 0x3a, 0x55, 0x2a, 0xe4, 0x95, 0xc6, 0x4b, 0xd7, 0x6f, 0x7a, 0x62, 0xa4, 0x4c, 0x46, 0x80, - 0xc4, 0x1f, 0x78, 0x1e, 0xa3, 0x6c, 0x5c, 0xda, 0xdf, 0xcd, 0x2d, 0x7e, 0x1d, 0x76, 0x44, 0x28, - 0x3a, 0x1f, 0x9f, 0xe3, 0xa5, 0x91, 0x14, 0xf2, 0xe6, 0x47, 0xe7, 0xc8, 0x7e, 0xd7, 0xea, 0x09, - 0x15, 0xba, 0x0e, 0x3f, 0x8a, 0x9d, 0x5d, 0x1c, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x15, 0xc0, 0x15, - 0xc0, 0x95, 0xf1, 0xc4, 0x0e, 0x5c, 0x5f, 0xd5, 0xab, 0x06, 0x70, 0xeb, 0x11, 0xca, 0x0a, 0x48, - 0x00, 0x20, 0xca, 0x0a, 0x50, 0x56, 0xc0, 0x2a, 0x72, 0x28, 0x2b, 0xd8, 0x2f, 0x1f, 0x55, 0xab, - 0xf5, 0x46, 0xb5, 0x5a, 0x6a, 0x1c, 0x36, 0x4a, 0xc7, 0xb5, 0x5a, 0xb9, 0x5e, 0x46, 0xa3, 0xb5, - 0xdc, 0xad, 0x86, 0x4a, 0x83, 0x35, 0x49, 0xa5, 0x72, 0xc5, 0x43, 0x28, 0xec, 0xaf, 0x26, 0x9a, - 0xad, 0x2d, 0xde, 0x00, 0xc8, 0x25, 0xc8, 0x25, 0xc8, 0x25, 0xc8, 0x25, 0xc8, 0xa5, 0x01, 0x25, - 0x6c, 0x45, 0x5a, 0xd8, 0xf5, 0x1f, 0x4d, 0xc4, 0x47, 0xaa, 0x8c, 0x6b, 0x36, 0xfd, 0x41, 0x6f, - 0xf4, 0xa8, 0x19, 0x81, 0xf8, 0x6c, 0x67, 0x96, 0xdb, 0xd3, 0xab, 0xb3, 0xeb, 0xcb, 0x02, 0x70, - 0xca, 0x9b, 0x1f, 0x9e, 0xf8, 0xde, 0xf7, 0x5c, 0xc7, 0x55, 0x51, 0x05, 0x80, 0xc5, 0x92, 0xe7, - 0xbe, 0x74, 0x4a, 0x56, 0xdc, 0x03, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, - 0xe3, 0x89, 0x45, 0x0e, 0xc7, 0x87, 0x28, 0xf1, 0xbe, 0x63, 0xcd, 0x59, 0x24, 0xb9, 0xea, 0x4d, - 0xbe, 0x44, 0xfd, 0x7c, 0xe1, 0x8d, 0xa7, 0xc0, 0xeb, 0x18, 0xec, 0x1d, 0x38, 0xbf, 0x3c, 0x7f, - 0xeb, 0xc0, 0x12, 0x90, 0x4d, 0x2e, 0x90, 0x0d, 0x5a, 0x07, 0xee, 0x28, 0xb2, 0x41, 0xeb, 0xc0, - 0x2c, 0x22, 0x1b, 0xb4, 0x0e, 0xa4, 0xfa, 0x83, 0x18, 0x3f, 0xeb, 0xf2, 0x88, 0xf1, 0x23, 0xc6, - 0x6f, 0x48, 0xe4, 0xd0, 0x3a, 0x30, 0x77, 0xab, 0x21, 0xa0, 0xff, 0x76, 0x31, 0x34, 0xe3, 0x1a, - 0x87, 0x33, 0x3c, 0x37, 0x94, 0x11, 0xce, 0xf0, 0x1d, 0xa5, 0x8c, 0x70, 0x86, 0x67, 0x91, 0x32, - 0x4a, 0x15, 0x1a, 0x8a, 0xd7, 0x1f, 0xc1, 0x2a, 0xbf, 0xf9, 0x99, 0x45, 0x11, 0x63, 0x27, 0xe8, - 0xf5, 0x07, 0xe3, 0xee, 0x7e, 0x56, 0x4f, 0xa8, 0xa7, 0xa0, 0xc3, 0x6f, 0xa8, 0x93, 0x6e, 0x84, - 0xdf, 0xc5, 0x1c, 0x6b, 0x1c, 0x75, 0x72, 0x71, 0xfd, 0xe9, 0xf4, 0xe2, 0xe2, 0xaf, 0xf6, 0xa7, - 0xeb, 0xcb, 0x9b, 0x2f, 0x77, 0xcd, 0x33, 0xe0, 0x08, 0xe0, 0x08, 0xe0, 0x08, 0xe0, 0x08, 0xe0, - 0x08, 0xce, 0x13, 0xeb, 0x76, 0x84, 0xaf, 0x5c, 0xf5, 0x6c, 0x28, 0xb0, 0xce, 0xe9, 0x81, 0x3e, - 0x8f, 0x7f, 0xea, 0x47, 0x5b, 0x1a, 0xd0, 0x17, 0x93, 0x07, 0x7e, 0x73, 0x7a, 0xf7, 0x47, 0x6c, - 0xf3, 0x4e, 0xef, 0xce, 0xaf, 0xaf, 0xda, 0x97, 0xcd, 0xbb, 0x3f, 0xae, 0xcf, 0xb8, 0xb5, 0x47, - 0xe4, 0x36, 0x93, 0xec, 0xfe, 0xf8, 0x7d, 0x23, 0x3e, 0xf9, 0xb9, 0x0d, 0x68, 0xfe, 0xcf, 0x5d, - 0xf3, 0xf6, 0x2a, 0x82, 0x1e, 0xff, 0xfe, 0xd2, 0xbc, 0x3d, 0x6f, 0x9e, 0x15, 0x76, 0xc1, 0x49, - 0x6c, 0xfc, 0xa9, 0xdf, 0x5c, 0x9c, 0x7f, 0x3a, 0xbf, 0xbb, 0xf8, 0xab, 0x7d, 0xd6, 0xfc, 0xed, - 0xfc, 0x0a, 0x4f, 0x9d, 0xe3, 0xa9, 0x2f, 0x61, 0xec, 0x9c, 0xfb, 0xa6, 0x5b, 0x79, 0xc3, 0x1f, - 0xf9, 0x64, 0xc1, 0x52, 0x84, 0xdf, 0x4c, 0x14, 0x9d, 0x25, 0xdd, 0x08, 0x98, 0x27, 0x98, 0x27, - 0x98, 0x27, 0x98, 0x27, 0x98, 0x27, 0x27, 0xf3, 0xec, 0x5b, 0x76, 0xa7, 0x13, 0x0a, 0x29, 0x4d, - 0x10, 0xcf, 0x63, 0xc6, 0x35, 0xe3, 0x67, 0x9c, 0xfb, 0xcc, 0xa7, 0xd7, 0x9d, 0xfd, 0x56, 0x35, - 0xb0, 0xb7, 0x4b, 0x7b, 0x7c, 0x64, 0x60, 0xed, 0x1b, 0x5b, 0x29, 0x11, 0xfa, 0x46, 0x88, 0x75, - 0x74, 0x03, 0xff, 0x79, 0xf7, 0xee, 0xbe, 0x64, 0x1d, 0xb7, 0x5e, 0xee, 0xcb, 0xd6, 0x71, 0x6b, - 0xfc, 0xb2, 0x1c, 0xfd, 0x35, 0x7e, 0x5d, 0xb9, 0x2f, 0x59, 0xd5, 0xc9, 0xeb, 0xda, 0x7d, 0xc9, - 0xaa, 0xb5, 0x0e, 0xfe, 0xfe, 0xfb, 0xc3, 0xc1, 0x8f, 0xc3, 0xe1, 0xfa, 0x5f, 0xfc, 0x17, 0x3f, - 0xa1, 0x68, 0xed, 0xe5, 0x98, 0x32, 0x9a, 0x3d, 0xb4, 0x75, 0x1c, 0x5a, 0xb3, 0x87, 0xd6, 0xb6, - 0xba, 0xa7, 0xd6, 0x6f, 0xad, 0x1f, 0xe5, 0xf7, 0xd5, 0xe1, 0xc9, 0xc1, 0x8f, 0xc6, 0x70, 0xf1, - 0xcd, 0x97, 0x55, 0x1f, 0x2b, 0xbf, 0x6f, 0x0c, 0x4f, 0x12, 0xfe, 0xa5, 0x3e, 0x3c, 0x79, 0xe3, - 0x35, 0x6a, 0xc3, 0x77, 0x4b, 0x1f, 0x1d, 0xbd, 0x5f, 0x49, 0xfa, 0x42, 0x35, 0xe1, 0x0b, 0x87, - 0x49, 0x5f, 0x38, 0x4c, 0xf8, 0x42, 0xe2, 0x2d, 0x55, 0x12, 0xbe, 0x50, 0x1b, 0xbe, 0x2c, 0x7d, - 0xfe, 0xdd, 0xea, 0x8f, 0xd6, 0x87, 0x07, 0x2f, 0x49, 0xff, 0xd6, 0x18, 0xbe, 0x9c, 0x1c, 0xec, - 0x80, 0x0a, 0x43, 0xbe, 0x5e, 0x1a, 0x7d, 0x22, 0xa1, 0xe8, 0x8a, 0x50, 0xf8, 0x8e, 0x81, 0xac, - 0xbd, 0x99, 0xb5, 0xe1, 0xf9, 0x80, 0xe7, 0x03, 0x9e, 0x0f, 0x78, 0x3e, 0xe0, 0xf9, 0x60, 0x3c, - 0xb1, 0x28, 0xf7, 0xca, 0x11, 0x7f, 0x42, 0xb9, 0x17, 0xf9, 0x6c, 0xb8, 0xc4, 0xf5, 0x51, 0xee, - 0xb5, 0xb3, 0x22, 0x57, 0xa9, 0xa1, 0x83, 0x2b, 0x08, 0xe4, 0x0e, 0x13, 0xc8, 0x50, 0xa8, 0xf0, - 0xd9, 0x52, 0x6e, 0xcf, 0x44, 0x20, 0x7d, 0x76, 0x71, 0x50, 0xc8, 0x3c, 0x50, 0x48, 0x74, 0x0c, - 0xd9, 0x51, 0x0a, 0x89, 0x8e, 0x21, 0x59, 0xa5, 0x90, 0xe5, 0xba, 0x01, 0x0e, 0x59, 0x07, 0x87, - 0x04, 0x87, 0x04, 0x87, 0x04, 0x87, 0xcc, 0x81, 0xc8, 0xd5, 0x4b, 0x25, 0x70, 0x48, 0x70, 0xc8, - 0xdd, 0xe5, 0x90, 0x52, 0xa8, 0x41, 0xdf, 0x60, 0xbb, 0xcb, 0x85, 0xf5, 0xf9, 0x8b, 0x91, 0x1b, - 0x60, 0xaf, 0x60, 0xaf, 0x60, 0xaf, 0x60, 0xaf, 0x60, 0xaf, 0xdc, 0xec, 0x15, 0x01, 0x50, 0x90, - 0xd7, 0xdc, 0x30, 0x09, 0xf4, 0xbb, 0x04, 0x79, 0x65, 0x16, 0x39, 0xf4, 0xbb, 0x04, 0x75, 0xdd, - 0x65, 0xea, 0xda, 0xef, 0x5a, 0x3d, 0xa1, 0x42, 0xd7, 0x31, 0x40, 0x5b, 0x5f, 0xd7, 0x06, 0x7d, - 0xcc, 0x03, 0x7d, 0x44, 0xfe, 0xec, 0x8e, 0xd2, 0x47, 0xe4, 0xcf, 0x66, 0x95, 0x3e, 0xd6, 0xab, - 0x06, 0xf8, 0xe3, 0x11, 0xf8, 0x23, 0xf8, 0x23, 0xf8, 0x23, 0xf8, 0x63, 0x0e, 0x44, 0xae, 0x7c, - 0x54, 0xad, 0xd6, 0x1b, 0xd5, 0x6a, 0xa9, 0x71, 0xd8, 0x28, 0x1d, 0xd7, 0x6a, 0xe5, 0x7a, 0x19, - 0x19, 0xb5, 0xa0, 0x94, 0x3b, 0x4c, 0x29, 0x07, 0x52, 0x58, 0x8e, 0xec, 0x77, 0xf9, 0x09, 0xe5, - 0x74, 0x65, 0xd0, 0x49, 0xd0, 0x49, 0xd0, 0x49, 0xd0, 0x49, 0xd0, 0x49, 0xc6, 0x13, 0xfb, 0x10, - 0x04, 0x9e, 0xb0, 0x7d, 0x13, 0x5d, 0xa8, 0xca, 0x79, 0x31, 0xcf, 0x7b, 0x19, 0x16, 0xc1, 0xc2, - 0xa9, 0xef, 0x07, 0xe3, 0x86, 0x90, 0x2c, 0x02, 0x58, 0x90, 0xce, 0x93, 0xe8, 0xd9, 0xfd, 0x78, - 0xce, 0x73, 0x31, 0xe8, 0x0b, 0x7f, 0x3c, 0xae, 0xd9, 0xf2, 0x85, 0xfa, 0x27, 0x08, 0xbf, 0x5a, - 0xae, 0x2f, 0x95, 0xed, 0x3b, 0xa2, 0xb8, 0xf8, 0x86, 0x5c, 0x7a, 0xa7, 0x38, 0x52, 0x3a, 0x45, - 0x4f, 0xf6, 0x65, 0xd1, 0x09, 0x7c, 0xa9, 0x42, 0xdb, 0xf5, 0x45, 0x67, 0x3c, 0x04, 0x5a, 0x0d, - 0x7c, 0x5f, 0x78, 0x32, 0xfe, 0xbb, 0xd8, 0xaf, 0xf4, 0xad, 0xf1, 0x4b, 0xcb, 0x56, 0x2a, 0x74, - 0x1f, 0x06, 0x4a, 0xc8, 0xe8, 0x5d, 0x29, 0x9c, 0xc0, 0xef, 0xd8, 0xe1, 0x73, 0x3c, 0x51, 0x7a, - 0xf9, 0xbd, 0xa2, 0x54, 0xb6, 0x22, 0x1e, 0x25, 0x4d, 0x27, 0x45, 0x34, 0x57, 0x26, 0x92, 0xcb, - 0x91, 0x5d, 0x25, 0x1e, 0xae, 0x55, 0xb8, 0x70, 0xa5, 0x3a, 0x55, 0x8a, 0xb6, 0x74, 0xac, 0x70, - 0xe9, 0xfa, 0x4d, 0x4f, 0x8c, 0x0c, 0xe4, 0x88, 0xd5, 0xf9, 0x03, 0xcf, 0x7b, 0xbf, 0x47, 0x49, - 0xea, 0xf9, 0x16, 0xbb, 0x0e, 0x3b, 0x22, 0x14, 0x9d, 0x8f, 0xcf, 0xf1, 0x52, 0x99, 0x92, 0x2f, - 0x26, 0x7d, 0x97, 0x49, 0x3d, 0x47, 0x88, 0x02, 0x0a, 0x52, 0x85, 0x03, 0x47, 0xc5, 0x93, 0xfa, - 0x0a, 0x57, 0xe3, 0x1f, 0x78, 0x1e, 0xff, 0xbe, 0xf6, 0x65, 0xdf, 0x93, 0xed, 0x0b, 0xd9, 0x97, - 0xed, 0x4f, 0xaf, 0xbf, 0xef, 0xc6, 0x56, 0x4f, 0xed, 0xbb, 0xe8, 0xb7, 0xb4, 0x6f, 0x2a, 0x37, - 0xe3, 0x57, 0xa7, 0xd3, 0x1f, 0x35, 0x7a, 0xef, 0xf3, 0xe4, 0xfe, 0x47, 0x9f, 0xa5, 0x51, 0xd0, - 0xfa, 0xd5, 0xa7, 0xde, 0x2b, 0x6a, 0x3e, 0x28, 0xd4, 0x07, 0x24, 0xfd, 0x07, 0x43, 0xaf, 0x18, - 0xe9, 0xdb, 0x6c, 0x8d, 0x1b, 0x5d, 0x18, 0x03, 0x1a, 0xdd, 0xfb, 0x3b, 0x33, 0xa0, 0x6d, 0x74, - 0x79, 0xcd, 0x82, 0x39, 0xe1, 0x0d, 0x9a, 0x2f, 0x3b, 0x75, 0xd0, 0x54, 0x34, 0x5f, 0x98, 0xd0, - 0x11, 0xc3, 0xe0, 0x70, 0xa1, 0x76, 0xac, 0xb0, 0x39, 0x50, 0xd8, 0x1c, 0x25, 0x3c, 0x0e, 0x91, - 0x74, 0x1b, 0x8f, 0x33, 0x97, 0x06, 0x55, 0x17, 0x3a, 0x42, 0x2a, 0xd7, 0xa7, 0xc5, 0x6d, 0xd3, - 0x53, 0x35, 0xbb, 0x18, 0x15, 0xcd, 0x21, 0xf5, 0x42, 0x93, 0x7b, 0x9d, 0x39, 0xbc, 0xcc, 0x8c, - 0x5e, 0x65, 0x2e, 0x2f, 0x32, 0xbb, 0xd7, 0x98, 0xdd, 0x4b, 0xcc, 0xeb, 0x15, 0xce, 0x96, 0x6b, - 0x83, 0xdc, 0xcb, 0xcb, 0x3b, 0x5e, 0x80, 0x63, 0x9c, 0x00, 0xcf, 0xf8, 0x00, 0x06, 0xb7, 0xa7, - 0xa1, 0xf1, 0x00, 0x9c, 0x9d, 0xc5, 0xd9, 0x3b, 0x89, 0xe7, 0xae, 0xdd, 0x7f, 0x2b, 0xcb, 0x91, - 0x04, 0xde, 0x43, 0x54, 0xc7, 0x21, 0xd2, 0x7b, 0x88, 0xd0, 0x7e, 0x3f, 0x97, 0xed, 0xf7, 0x5b, - 0x19, 0x0d, 0x5a, 0xb5, 0xe0, 0xcb, 0xd5, 0x01, 0xc6, 0x77, 0xca, 0x97, 0x4b, 0x10, 0xa5, 0xd5, - 0xe8, 0xbd, 0xdd, 0x4b, 0x91, 0x80, 0x50, 0x09, 0x46, 0xba, 0x04, 0xa2, 0xa0, 0xd5, 0x61, 0xae, - 0x3b, 0x7c, 0xa5, 0x47, 0x50, 0xb7, 0x17, 0x2b, 0x0d, 0x22, 0xa5, 0x39, 0x9c, 0x40, 0x12, 0x46, - 0xd0, 0x1c, 0x3e, 0xd0, 0x1e, 0x36, 0xa0, 0xf0, 0xa8, 0x11, 0x7a, 0xd0, 0xa8, 0x3c, 0x66, 0xe4, - 0x1e, 0x32, 0x72, 0x8f, 0x18, 0xad, 0x07, 0x2c, 0x5d, 0x66, 0x44, 0xb7, 0xbb, 0xbf, 0x60, 0x77, - 0x7a, 0xae, 0x6f, 0x8d, 0xce, 0xfd, 0x40, 0xd2, 0x85, 0x27, 0xe7, 0x56, 0xd1, 0x1d, 0x01, 0x79, - 0x6d, 0xb0, 0x15, 0x6f, 0xbe, 0x3a, 0x39, 0x3d, 0xbb, 0x3c, 0xbf, 0x6a, 0x7f, 0xb9, 0x21, 0x8a, - 0x88, 0x96, 0xa8, 0x22, 0xa2, 0x25, 0x44, 0x44, 0x19, 0x54, 0x1e, 0x9b, 0xea, 0x63, 0x53, 0x81, - 0x3c, 0xaa, 0x30, 0x1b, 0x14, 0x8c, 0xcc, 0xe9, 0xff, 0xea, 0x0d, 0xeb, 0x08, 0x5f, 0xb9, 0xea, - 0x39, 0x14, 0x14, 0x35, 0x34, 0x53, 0xdc, 0x44, 0x50, 0x20, 0x57, 0x38, 0x8f, 0x6f, 0xfd, 0xa3, - 0x2d, 0x05, 0x7d, 0x58, 0xf7, 0xee, 0xcb, 0xd5, 0x55, 0xf3, 0xa2, 0x3d, 0xd6, 0xc6, 0x9f, 0xef, - 0x4e, 0xef, 0xbe, 0x7c, 0xa6, 0x3a, 0x61, 0x51, 0xa1, 0xa1, 0x24, 0x75, 0xe2, 0x11, 0x47, 0x2a, - 0x27, 0x0f, 0x6d, 0xfc, 0xb4, 0xce, 0xae, 0xff, 0xbf, 0x2b, 0xc2, 0x30, 0xde, 0xfb, 0x7c, 0x3c, - 0xa5, 0x2f, 0x37, 0x59, 0x0b, 0x75, 0xb6, 0xd2, 0xae, 0x8d, 0x53, 0x99, 0x3d, 0x67, 0x0f, 0x54, - 0x60, 0x3d, 0x0a, 0x5f, 0x84, 0xb6, 0x12, 0x1d, 0x42, 0x9c, 0x3a, 0xbf, 0x0e, 0xd0, 0x23, 0xd0, - 0x23, 0xd0, 0x23, 0xd0, 0xa3, 0x56, 0x89, 0xa7, 0x2b, 0x00, 0x24, 0x2a, 0xf4, 0x4b, 0xa7, 0x49, - 0x70, 0x82, 0x81, 0xaf, 0x44, 0x48, 0xe8, 0xb4, 0x98, 0xae, 0x90, 0xb1, 0xb4, 0x6a, 0x98, 0x01, - 0x98, 0x01, 0x98, 0x81, 0xed, 0x1e, 0x01, 0x59, 0x5a, 0xf5, 0xc3, 0xb3, 0x12, 0x92, 0x9e, 0x79, - 0x8f, 0x97, 0x41, 0x2a, 0x35, 0xb7, 0x42, 0x63, 0x54, 0x6c, 0x5c, 0x0a, 0x8e, 0x5d, 0xd1, 0xb1, - 0x2b, 0x3c, 0x5e, 0xc5, 0x47, 0xeb, 0x5f, 0xc8, 0x7e, 0x2a, 0x75, 0x0c, 0xbb, 0x48, 0x5b, 0x2e, - 0x32, 0xb4, 0x58, 0x64, 0x6a, 0xa9, 0xc8, 0x90, 0x04, 0xca, 0xd9, 0x32, 0x91, 0xbb, 0x59, 0x14, - 0x73, 0x4b, 0x44, 0x13, 0xcd, 0xe7, 0x38, 0x9a, 0x99, 0x71, 0xb6, 0x38, 0x34, 0x25, 0x22, 0xe6, - 0x5a, 0x18, 0x1a, 0x91, 0x1a, 0xa4, 0xb1, 0x92, 0xde, 0x2f, 0xc1, 0xa9, 0x2c, 0x38, 0x83, 0x30, - 0x14, 0xbe, 0x8a, 0xf2, 0xf5, 0xa2, 0x71, 0xd9, 0xf4, 0x3c, 0x63, 0x79, 0x49, 0x70, 0x0e, 0x70, - 0x0e, 0x70, 0x0e, 0x70, 0x8e, 0x4c, 0x71, 0x8e, 0x91, 0xe6, 0x52, 0xae, 0xf3, 0x55, 0x66, 0x9e, - 0x75, 0x7c, 0xf1, 0xc7, 0x08, 0xa1, 0xe0, 0xdb, 0x7e, 0x30, 0xee, 0xb3, 0x42, 0xaa, 0x08, 0xc0, - 0x72, 0xc0, 0x72, 0xc0, 0x72, 0xc0, 0x72, 0xc0, 0x72, 0xc0, 0x72, 0x78, 0x58, 0x8e, 0x2f, 0xbe, - 0x2b, 0x2b, 0x14, 0x41, 0x5f, 0xb9, 0x3d, 0xf7, 0xff, 0xa2, 0x92, 0x2a, 0x26, 0xb2, 0x93, 0xb8, - 0x32, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, - 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x0f, 0x38, 0x8f, 0x36, 0x31, 0x09, 0x7c, 0xcf, 0xf5, 0x05, - 0x13, 0xcd, 0x99, 0x5d, 0x0c, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, - 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x06, 0xcc, 0x46, 0x9b, 0x98, 0xf4, - 0x6d, 0xe7, 0xab, 0x50, 0x0c, 0x15, 0x31, 0x93, 0x85, 0xc0, 0x68, 0xc0, 0x68, 0xc0, 0x68, 0xc0, - 0x68, 0x32, 0xc5, 0x68, 0x50, 0x13, 0x03, 0x7e, 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7e, - 0x01, 0x7e, 0xb1, 0x1e, 0xbf, 0x50, 0x4f, 0x96, 0xf3, 0x34, 0xb2, 0x3b, 0x2c, 0x24, 0x63, 0x66, - 0x35, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, - 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x8d, 0xdc, 0x32, 0x8d, 0x68, 0x76, 0x0a, 0x1f, 0xd5, 0x98, - 0x5f, 0x0e, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, - 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x03, 0x5c, 0x23, 0x1d, 0x5c, 0x03, 0x03, 0x6b, 0x0d, 0xcc, 0x27, - 0x8d, 0xe8, 0x51, 0x91, 0xa8, 0x85, 0xfb, 0xbe, 0x86, 0x01, 0xa5, 0x9f, 0x26, 0xb7, 0xb6, 0x03, - 0xbd, 0xfa, 0x3b, 0x42, 0x3a, 0xa1, 0xdb, 0x27, 0x91, 0xb2, 0x29, 0x9a, 0x9c, 0x5d, 0x04, 0x83, - 0x5b, 0xd0, 0xb1, 0xdf, 0x3c, 0xbd, 0x45, 0xc7, 0x7e, 0x46, 0x43, 0x46, 0x3f, 0xb8, 0x45, 0xaa, - 0xd0, 0xf5, 0x1f, 0x29, 0xe7, 0xb6, 0x1c, 0xed, 0x80, 0x2d, 0x78, 0x0a, 0xbc, 0x8e, 0xd5, 0x0f, - 0xdd, 0x20, 0x74, 0xd5, 0x33, 0x9d, 0x35, 0x98, 0x5f, 0x86, 0x6e, 0xe4, 0x6c, 0x09, 0xb6, 0x86, - 0xc5, 0xd6, 0x84, 0xf2, 0x5b, 0x1f, 0xb6, 0x26, 0x85, 0xb6, 0x26, 0xda, 0x18, 0xd8, 0x1a, 0xcd, - 0x12, 0x3f, 0x70, 0x7d, 0x75, 0x44, 0x68, 0x6a, 0x28, 0x66, 0xcb, 0xd2, 0xba, 0x41, 0x09, 0xfd, - 0xd1, 0x1c, 0x6e, 0x4f, 0x26, 0x5f, 0x16, 0x97, 0x9b, 0x93, 0xd3, 0x51, 0x45, 0xe8, 0xd6, 0x64, - 0x71, 0x67, 0x72, 0x6f, 0x7d, 0x23, 0x47, 0x5b, 0x9f, 0x11, 0x1f, 0x5f, 0x6b, 0x07, 0x80, 0x7b, - 0x4f, 0xa8, 0xd0, 0x75, 0xe8, 0x10, 0x7b, 0x7c, 0x7d, 0xc0, 0x69, 0xb8, 0x6e, 0xe0, 0xba, 0x01, - 0x9c, 0xd6, 0x2a, 0xf1, 0xae, 0xaf, 0x0e, 0x2b, 0x84, 0x70, 0xfa, 0x10, 0x70, 0xda, 0x0c, 0x9c, - 0x2e, 0x33, 0x61, 0xaa, 0x4a, 0xb9, 0xda, 0xa8, 0x1e, 0x1d, 0xd6, 0xab, 0x47, 0xc0, 0xd5, 0xbb, - 0x8a, 0xab, 0xa7, 0x32, 0x00, 0x80, 0x0d, 0x80, 0x4d, 0x06, 0xb0, 0x2d, 0x45, 0x61, 0x0d, 0x17, - 0x50, 0xf6, 0x78, 0x11, 0x3a, 0xaf, 0x78, 0x0c, 0x64, 0xd4, 0xc9, 0xc5, 0xe7, 0x9b, 0xf6, 0x65, - 0xf3, 0xee, 0xf6, 0xfc, 0x53, 0xfb, 0xfc, 0xea, 0x8f, 0xe6, 0xed, 0xf9, 0x5d, 0xf3, 0x0c, 0x10, - 0x1f, 0x10, 0x1f, 0x10, 0x1f, 0x10, 0x5f, 0x33, 0xc4, 0xef, 0x08, 0x5f, 0xb9, 0xea, 0x39, 0x14, - 0x5d, 0xca, 0x10, 0x2d, 0x85, 0xe3, 0xfc, 0x3c, 0xbe, 0xf5, 0x8f, 0xb6, 0x64, 0x68, 0xef, 0x3b, - 0xa3, 0x92, 0xef, 0xfe, 0xba, 0x69, 0x52, 0x9d, 0xae, 0x08, 0x35, 0x49, 0xd2, 0xac, 0x68, 0x62, - 0x78, 0xb9, 0xe2, 0x81, 0xdd, 0x36, 0x2f, 0x4e, 0xef, 0xce, 0xff, 0xbb, 0x59, 0xc8, 0x22, 0x28, - 0xe7, 0x7f, 0x5c, 0xaf, 0x26, 0x1f, 0xcf, 0xeb, 0x2d, 0xcf, 0xeb, 0xf4, 0xe3, 0xe7, 0xeb, 0x8b, - 0x2f, 0x77, 0xcd, 0xac, 0x95, 0xa2, 0xb4, 0xd2, 0x6e, 0xcd, 0x52, 0x89, 0xf7, 0xe3, 0xd4, 0x51, - 0x22, 0xa0, 0x1f, 0x5d, 0x1d, 0x48, 0x1b, 0x48, 0x1b, 0x48, 0x1b, 0x48, 0x5b, 0xab, 0xc4, 0x23, - 0x0f, 0x52, 0xc7, 0x6f, 0x0d, 0xfa, 0x22, 0xb4, 0xa4, 0xb2, 0xd5, 0x40, 0xd2, 0x19, 0x81, 0xd9, - 0x45, 0x60, 0x0b, 0x60, 0x0b, 0x60, 0x0b, 0x60, 0x0b, 0xe0, 0x75, 0x31, 0xe5, 0x75, 0xb9, 0xbe, - 0x69, 0xde, 0xb6, 0x3f, 0xdf, 0x9d, 0xde, 0x7d, 0xf9, 0x0c, 0xaf, 0xcb, 0xaf, 0x1e, 0xd8, 0xd9, - 0xf5, 0xff, 0x77, 0x05, 0xb7, 0x41, 0xf2, 0xf3, 0xf9, 0x72, 0x03, 0x2f, 0xc1, 0x2e, 0x78, 0x09, - 0x46, 0xd6, 0x58, 0x84, 0xc2, 0x77, 0x08, 0x7d, 0x05, 0x33, 0x6b, 0x00, 0x25, 0x02, 0x25, 0x02, - 0x25, 0x02, 0x25, 0x6a, 0x95, 0x78, 0x54, 0xb3, 0xf0, 0x81, 0x84, 0x5c, 0x56, 0xb3, 0x94, 0x91, - 0x75, 0xf7, 0xa6, 0xad, 0xcf, 0x63, 0xd6, 0x5d, 0xad, 0x86, 0x74, 0x3b, 0xee, 0xab, 0xb6, 0x76, - 0x02, 0x58, 0x07, 0x4a, 0x44, 0x1b, 0x6f, 0x49, 0xf5, 0xec, 0x09, 0x2b, 0x14, 0xff, 0x3b, 0x10, - 0x52, 0x89, 0x0e, 0x25, 0xd0, 0x4e, 0x5c, 0x93, 0x21, 0x19, 0xef, 0xcb, 0xd5, 0xcd, 0xed, 0xf5, - 0x5d, 0xf3, 0x13, 0x72, 0xf0, 0x80, 0xf3, 0x81, 0xf3, 0x81, 0xf3, 0xb5, 0x4b, 0x3c, 0xbc, 0xc1, - 0x6f, 0x7c, 0x50, 0xb1, 0x1e, 0x3e, 0xbf, 0xbe, 0x42, 0x0e, 0xde, 0x9b, 0x1e, 0xd8, 0xac, 0xe9, - 0x82, 0x53, 0x38, 0xf1, 0x31, 0x5d, 0x9c, 0x5f, 0xfd, 0xd9, 0xbe, 0xba, 0x3e, 0x6b, 0xb6, 0x67, - 0x24, 0xec, 0xb6, 0xf9, 0xef, 0x2f, 0xcd, 0xcf, 0x78, 0x72, 0xbf, 0x7e, 0x72, 0x0b, 0x0f, 0xed, - 0xfc, 0x96, 0xf4, 0x99, 0xc1, 0xc9, 0x9e, 0x1a, 0x2e, 0x10, 0x8a, 0xa0, 0xaf, 0xdc, 0x9e, 0xfb, - 0x7f, 0xc2, 0x52, 0x6e, 0x4f, 0x84, 0x74, 0x0c, 0x60, 0x69, 0x25, 0x00, 0x71, 0x00, 0x71, 0x00, - 0x71, 0x00, 0x71, 0xad, 0x12, 0x3f, 0x70, 0x7d, 0x55, 0xae, 0x13, 0x62, 0xf0, 0x3a, 0x3c, 0xee, - 0xaf, 0x37, 0x8e, 0xfe, 0x51, 0xeb, 0xaf, 0x03, 0x8f, 0x7b, 0x6a, 0xb7, 0xbe, 0x5e, 0xab, 0x1d, - 0xc2, 0xe7, 0xce, 0x7e, 0xd5, 0x5d, 0xf0, 0xb9, 0x87, 0x81, 0x47, 0x98, 0xc6, 0x12, 0x5d, 0x1d, - 0x78, 0x1a, 0x78, 0x1a, 0x78, 0x1a, 0x78, 0x5a, 0xab, 0xc4, 0xc3, 0xb1, 0xfd, 0xc6, 0x07, 0x75, - 0xf1, 0xf9, 0xa6, 0x7d, 0x7b, 0x7d, 0x01, 0x8f, 0xf6, 0x2f, 0x9f, 0xd4, 0xdd, 0xed, 0xe9, 0xd5, - 0xe7, 0xf3, 0x3b, 0xf8, 0x64, 0x93, 0x1f, 0x51, 0xf3, 0xf7, 0xdb, 0xe6, 0xe7, 0xcf, 0x78, 0x42, - 0xc9, 0x4f, 0xe8, 0xfc, 0x8a, 0xfa, 0x11, 0xc1, 0x49, 0x9d, 0x1a, 0xf0, 0x2c, 0x85, 0x1a, 0xf4, - 0x19, 0x46, 0x27, 0x2c, 0xac, 0x43, 0x97, 0x98, 0xd2, 0x00, 0x58, 0xc7, 0xec, 0x84, 0x5d, 0x06, - 0xeb, 0x98, 0x9d, 0x40, 0x21, 0xf1, 0xc8, 0x36, 0xe7, 0x43, 0x23, 0xf0, 0x7d, 0x6f, 0xb0, 0x0e, - 0x7c, 0xdf, 0xa9, 0xdd, 0x7a, 0xb4, 0x76, 0x65, 0xbf, 0xea, 0x2e, 0xf8, 0xbd, 0xe5, 0x53, 0x10, - 0x2a, 0x67, 0xa0, 0x2c, 0xe1, 0xb9, 0x8f, 0xee, 0x03, 0xa5, 0x13, 0x7c, 0x79, 0x29, 0x3a, 0x00, - 0x3f, 0x42, 0x4a, 0xc0, 0xf0, 0x70, 0xb8, 0xef, 0x32, 0x86, 0x87, 0xc3, 0x9d, 0x42, 0xe2, 0x1f, - 0x82, 0xc0, 0x13, 0xb6, 0x4f, 0xe9, 0x6c, 0x2f, 0xef, 0x82, 0xdd, 0x71, 0x1f, 0x7d, 0xdb, 0x73, - 0xfd, 0x47, 0xab, 0x1f, 0x06, 0x2a, 0x70, 0x02, 0x8f, 0xd0, 0xf0, 0x2c, 0xaf, 0x05, 0xd3, 0x00, - 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0xa0, 0x55, 0xe2, 0x11, 0x8b, 0x7d, 0xe3, 0x83, 0xba, 0x39, 0xbd, - 0xfb, 0xa3, 0xfd, 0xb9, 0x79, 0xf7, 0xe5, 0x26, 0x2a, 0x6c, 0xb8, 0xfe, 0x74, 0x7d, 0x81, 0xb0, - 0xec, 0x1a, 0x0f, 0xed, 0xf6, 0xf3, 0x7f, 0xdf, 0x20, 0xf8, 0xf8, 0xa6, 0x47, 0x75, 0x71, 0x86, - 0x27, 0xf5, 0xb6, 0x27, 0xf5, 0xf9, 0x16, 0xc1, 0xda, 0x9d, 0x08, 0xd6, 0x06, 0x5d, 0x65, 0xf5, - 0x43, 0x21, 0x7a, 0x7d, 0xe5, 0x06, 0x3e, 0x21, 0xec, 0x5e, 0x58, 0x88, 0xce, 0xdb, 0xd3, 0xb5, - 0x3d, 0x09, 0x77, 0x0f, 0x42, 0xb6, 0x3b, 0x8d, 0xe9, 0x11, 0xb2, 0x85, 0xbb, 0x27, 0xc5, 0x46, - 0x87, 0xe4, 0x74, 0xcf, 0xd8, 0x9a, 0xe8, 0xfa, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01, - 0x7a, 0xdd, 0x3a, 0x7d, 0xcb, 0xee, 0x74, 0x42, 0x21, 0x25, 0xa5, 0x15, 0x38, 0x26, 0xb8, 0x76, - 0xfc, 0x6c, 0x32, 0x97, 0xba, 0xf3, 0xfa, 0xe4, 0xbf, 0x55, 0x09, 0x9f, 0xfd, 0xd2, 0x1e, 0x10, - 0x8e, 0x50, 0x2e, 0xdc, 0xd8, 0x4a, 0x89, 0xd0, 0x27, 0xf5, 0x44, 0x45, 0x0b, 0xfd, 0xe7, 0xdd, - 0xbb, 0xfb, 0x92, 0x75, 0xdc, 0x7a, 0xb9, 0x2f, 0x5b, 0xc7, 0xad, 0xf1, 0xcb, 0x72, 0xf4, 0xd7, - 0xf8, 0x75, 0xe5, 0xbe, 0x64, 0x55, 0x27, 0xaf, 0x6b, 0xf7, 0x25, 0xab, 0xd6, 0x3a, 0xf8, 0xfb, - 0xef, 0x0f, 0x07, 0x3f, 0x0e, 0x87, 0xeb, 0x7f, 0xf1, 0x5f, 0x74, 0x3e, 0x83, 0xd6, 0x5e, 0x86, - 0x5c, 0x36, 0x3c, 0x87, 0xa1, 0x8e, 0xc3, 0xb0, 0xd9, 0x61, 0xb0, 0xad, 0xee, 0xa9, 0xf5, 0x5b, - 0xeb, 0x47, 0xf9, 0x7d, 0x75, 0x78, 0x72, 0xf0, 0xa3, 0x31, 0x5c, 0x7c, 0xf3, 0x65, 0xd5, 0xc7, - 0xca, 0xef, 0x1b, 0xc3, 0x93, 0x84, 0x7f, 0xa9, 0x0f, 0x4f, 0xde, 0x78, 0x8d, 0xda, 0xf0, 0xdd, - 0xd2, 0x47, 0x47, 0xef, 0x57, 0x92, 0xbe, 0x50, 0x4d, 0xf8, 0xc2, 0x61, 0xd2, 0x17, 0x0e, 0x13, - 0xbe, 0x90, 0x78, 0x4b, 0x95, 0x84, 0x2f, 0xd4, 0x86, 0x2f, 0x4b, 0x9f, 0x7f, 0xb7, 0xfa, 0xa3, - 0xf5, 0xe1, 0xc1, 0x4b, 0xd2, 0xbf, 0x35, 0x86, 0x2f, 0x27, 0x07, 0x19, 0x54, 0x0d, 0x48, 0x20, - 0xdb, 0xe0, 0x84, 0xd1, 0x0e, 0x05, 0xa7, 0x98, 0x06, 0x0e, 0x56, 0xb7, 0x92, 0xd5, 0x21, 0x58, - 0x9f, 0x52, 0x56, 0x87, 0x60, 0x3d, 0x09, 0x9c, 0x42, 0xb0, 0xfe, 0x6d, 0x0f, 0xea, 0xee, 0xcb, - 0xd5, 0x55, 0xf3, 0x02, 0xdd, 0x40, 0xdf, 0xf4, 0xb0, 0x6e, 0x2a, 0x08, 0x37, 0xff, 0xf4, 0xf1, - 0x5c, 0x62, 0x38, 0x54, 0x7a, 0xa3, 0xcc, 0x7b, 0x29, 0x92, 0xd2, 0xc2, 0xa9, 0xef, 0x07, 0xca, - 0xd6, 0x1e, 0xa2, 0x2e, 0x48, 0xe7, 0x49, 0xf4, 0xec, 0xbe, 0xad, 0x9e, 0x46, 0x12, 0x59, 0x0c, - 0xfa, 0xc2, 0x77, 0x22, 0xe8, 0x66, 0xf9, 0x42, 0xfd, 0x13, 0x84, 0x5f, 0x2d, 0xd7, 0x97, 0xca, - 0xf6, 0x1d, 0x51, 0x5c, 0x7c, 0x43, 0x2e, 0xbd, 0x53, 0x1c, 0x19, 0xe7, 0xa2, 0x27, 0xfb, 0xb2, - 0xe8, 0x04, 0xbe, 0x54, 0xa1, 0xed, 0xfa, 0xa2, 0x63, 0x8d, 0xae, 0x5e, 0x54, 0x03, 0xdf, 0x17, - 0x9e, 0x8c, 0xff, 0x2e, 0x4a, 0x65, 0x2b, 0xa1, 0x47, 0xf8, 0xb7, 0xdf, 0xa8, 0xed, 0xae, 0xb0, - 0xe5, 0x16, 0x8f, 0x20, 0x9b, 0xa6, 0x41, 0xe0, 0x85, 0x0b, 0x57, 0xaa, 0x53, 0xa5, 0xf4, 0xf4, - 0x45, 0x2d, 0x5c, 0xba, 0x7e, 0xd3, 0x13, 0x23, 0xec, 0x35, 0xb2, 0x46, 0xfe, 0xc0, 0xf3, 0xde, - 0x6b, 0xb8, 0xa8, 0xfd, 0x5d, 0xff, 0x45, 0xaf, 0xc3, 0x8e, 0x08, 0x45, 0xe7, 0xe3, 0x73, 0x7c, - 0x49, 0xa3, 0xfb, 0xa9, 0xf9, 0xa8, 0x9a, 0x3a, 0xa2, 0x1a, 0xe0, 0x4d, 0x41, 0xaa, 0x70, 0xe0, - 0xa8, 0x78, 0x80, 0x7e, 0xe1, 0x6a, 0x7c, 0x2f, 0xe7, 0xf1, 0xad, 0xb4, 0x2f, 0xfb, 0x9e, 0x6c, - 0x5f, 0xc8, 0xbe, 0x6c, 0x7f, 0x7a, 0xbd, 0x95, 0x1b, 0x5b, 0x3d, 0xb5, 0xef, 0xc6, 0x77, 0xb0, - 0x67, 0xe6, 0x50, 0x6f, 0xf6, 0xcd, 0x0d, 0xc5, 0x46, 0x97, 0xb8, 0xb0, 0x8b, 0xc9, 0x66, 0xbb, - 0xb3, 0xfe, 0xb3, 0x5d, 0xef, 0x1b, 0x6b, 0xee, 0xc2, 0xb6, 0x4f, 0x9f, 0xed, 0xa9, 0x6f, 0x70, - 0x1a, 0x37, 0x3d, 0x7d, 0xeb, 0x6d, 0xec, 0xdb, 0xb7, 0x67, 0x8d, 0xad, 0x29, 0x8c, 0xe0, 0x81, - 0xeb, 0x58, 0xa3, 0x47, 0xb1, 0xf6, 0xbe, 0xcc, 0x0c, 0xc0, 0x7f, 0xbd, 0xc8, 0x9a, 0x62, 0x31, - 0x21, 0xac, 0x6b, 0x7e, 0x6d, 0x53, 0xaf, 0xd7, 0x36, 0x5e, 0x2d, 0x0d, 0x5e, 0xab, 0x6d, 0xbd, - 0x52, 0xda, 0xbc, 0x4e, 0xda, 0xbc, 0x4a, 0x7a, 0xbc, 0x46, 0xb4, 0xaa, 0xe7, 0xcc, 0x0d, 0x37, - 0xd4, 0x39, 0x53, 0xb9, 0xde, 0x7c, 0xc7, 0x96, 0xcf, 0xc8, 0xa6, 0x5b, 0xb6, 0xd9, 0x51, 0xd9, - 0xfa, 0xc8, 0xe8, 0x38, 0x3a, 0x4b, 0x4f, 0x63, 0x4b, 0xaf, 0xaf, 0x2e, 0xef, 0xae, 0x76, 0x2f, - 0xae, 0x76, 0x6f, 0xed, 0xdc, 0xf9, 0xda, 0xce, 0x25, 0xcb, 0x8b, 0xb6, 0x36, 0x3d, 0x74, 0xd3, - 0x0b, 0x38, 0x13, 0x79, 0xdd, 0x72, 0x8b, 0x27, 0x22, 0x17, 0x5f, 0x6f, 0x5b, 0x0e, 0xb9, 0xd5, - 0x21, 0xd4, 0x76, 0x18, 0x75, 0x1e, 0x4a, 0xdd, 0x87, 0x53, 0xf7, 0x21, 0x25, 0x3b, 0xac, 0x64, - 0x87, 0x96, 0xe0, 0xf0, 0xa6, 0xc3, 0x83, 0xb2, 0xed, 0xa1, 0x9e, 0x5e, 0x28, 0xc6, 0xca, 0x9a, - 0x04, 0x63, 0x22, 0xb8, 0x1a, 0x3c, 0x3b, 0x8b, 0x07, 0x5d, 0x53, 0x54, 0x55, 0x7b, 0x98, 0x96, - 0x22, 0x3c, 0xab, 0x5b, 0x01, 0x50, 0x29, 0x02, 0x72, 0x85, 0x40, 0xae, 0x18, 0x08, 0x15, 0x84, - 0x3e, 0x67, 0xed, 0xbe, 0x46, 0xaf, 0xba, 0xf6, 0xc0, 0xea, 0x0c, 0xae, 0x0e, 0x5d, 0xff, 0x51, - 0xa7, 0xb4, 0x4e, 0x33, 0xd1, 0xe0, 0x34, 0xcf, 0x90, 0x93, 0x75, 0xc6, 0x07, 0x31, 0xf3, 0xba, - 0x18, 0xa3, 0x3e, 0x53, 0x0e, 0xce, 0x2d, 0x28, 0x8e, 0x78, 0x8c, 0x52, 0x2e, 0xb5, 0xe1, 0xdf, - 0xf8, 0x7a, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xa6, 0xf1, 0xaf, 0x26, 0x72, 0x4b, 0x43, 0x72, - 0x35, 0x1f, 0x76, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x7d, 0xca, 0x63, 0x7a, 0x41, 0xd7, 0x77, - 0x82, 0x9e, 0xeb, 0x3f, 0x5a, 0x9e, 0xfd, 0x20, 0x08, 0x1b, 0x99, 0x2d, 0xac, 0x83, 0xbc, 0x68, - 0xf2, 0xbc, 0x68, 0x24, 0x45, 0x1b, 0x56, 0x4a, 0x0c, 0xca, 0x49, 0xaf, 0x92, 0xd2, 0xac, 0xac, - 0xe8, 0x88, 0xfb, 0x4a, 0x59, 0x27, 0xd1, 0x2c, 0xfb, 0xa8, 0x73, 0xfd, 0xf9, 0x93, 0x1f, 0xb8, - 0xbe, 0x3a, 0xac, 0x30, 0x14, 0xf5, 0x11, 0x36, 0x11, 0x27, 0x1e, 0x14, 0x40, 0xbf, 0x1b, 0xd3, - 0x1f, 0xc2, 0x31, 0x38, 0x80, 0xd8, 0xe8, 0x26, 0x2e, 0x37, 0xe9, 0x26, 0x5f, 0xae, 0x33, 0x2d, - 0xc8, 0xd8, 0x56, 0x9e, 0x48, 0xf3, 0xae, 0x96, 0x11, 0x86, 0x09, 0x03, 0xc6, 0x65, 0xa4, 0x54, - 0x3d, 0xaa, 0x35, 0x6a, 0x39, 0x16, 0x94, 0xbd, 0x6c, 0x5e, 0x1d, 0x95, 0xf1, 0xf3, 0xe6, 0x53, - 0xf8, 0x83, 0x9e, 0x08, 0x6d, 0x82, 0x26, 0x73, 0x2b, 0x11, 0x4c, 0x95, 0x70, 0x8d, 0xa6, 0x3f, - 0xe8, 0x8d, 0x14, 0x0b, 0x46, 0x64, 0xa4, 0x46, 0x98, 0x0b, 0xbe, 0xf8, 0xae, 0xac, 0xa7, 0xa0, - 0x4f, 0xc7, 0xeb, 0xa7, 0x2b, 0x80, 0xd1, 0x83, 0xd1, 0x83, 0xd1, 0x83, 0xd1, 0x6b, 0x92, 0x75, - 0x74, 0xae, 0x32, 0x05, 0x49, 0xd0, 0xb9, 0x6a, 0x83, 0x85, 0xd0, 0xb9, 0x2a, 0x9f, 0xf8, 0x1c, - 0x9d, 0xab, 0x36, 0x3f, 0x0c, 0xe8, 0x5c, 0x85, 0xce, 0x55, 0xe0, 0x75, 0x24, 0xbc, 0xae, 0x3f, - 0x90, 0x4f, 0xd4, 0x11, 0xdb, 0x99, 0x35, 0xc0, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0x34, - 0xca, 0x3a, 0xa2, 0xb5, 0x26, 0xe0, 0x2c, 0xa2, 0xb5, 0x29, 0xd8, 0x8d, 0xe9, 0x0f, 0x41, 0xb4, - 0x56, 0xe3, 0x82, 0x88, 0xd6, 0x66, 0x57, 0x46, 0x10, 0xad, 0x4d, 0xe7, 0xd5, 0xe1, 0x0d, 0x9a, - 0x37, 0x9f, 0x88, 0xd6, 0x82, 0xd5, 0x93, 0x5c, 0x69, 0x57, 0x1b, 0x0f, 0x26, 0x14, 0xdc, 0x8d, - 0xcb, 0xcc, 0xb4, 0xd4, 0xdd, 0xe9, 0xdb, 0xa7, 0xa1, 0x96, 0x16, 0x6b, 0xb6, 0x22, 0xa8, 0x59, - 0x1f, 0x5f, 0x36, 0xe5, 0x05, 0x3b, 0x15, 0x14, 0xec, 0x64, 0xc6, 0xeb, 0x82, 0x82, 0x1d, 0x14, - 0xec, 0xa0, 0x60, 0x87, 0x56, 0xe9, 0x50, 0x2b, 0x1f, 0x6a, 0x25, 0xc4, 0xa6, 0x8c, 0xd8, 0x94, - 0x12, 0x83, 0x72, 0xa2, 0x01, 0xc8, 0x70, 0x01, 0xaf, 0x86, 0x30, 0x70, 0x01, 0x2f, 0x3f, 0x79, - 0xb8, 0x80, 0x53, 0xb0, 0x1b, 0xd3, 0x1f, 0x02, 0x17, 0xb0, 0xc6, 0x05, 0xe1, 0x02, 0xce, 0xae, - 0x8c, 0xc0, 0x05, 0x9c, 0xce, 0xab, 0xc3, 0x05, 0x3c, 0x6f, 0x3e, 0xe1, 0x02, 0x36, 0x26, 0x92, - 0x28, 0xd8, 0xd1, 0x21, 0xc0, 0x28, 0xd8, 0x01, 0xa3, 0x07, 0xa3, 0x07, 0xa3, 0xd7, 0x2d, 0xeb, - 0x28, 0xd8, 0x31, 0x05, 0x49, 0x50, 0xb0, 0xb3, 0xc1, 0x42, 0x28, 0xd8, 0xc9, 0x27, 0x3e, 0x47, - 0xc1, 0xce, 0xe6, 0x87, 0x01, 0x05, 0x3b, 0x28, 0xd8, 0x01, 0xaf, 0x23, 0xe1, 0x75, 0x28, 0xd8, - 0x01, 0xb7, 0x03, 0xb7, 0x03, 0xb7, 0xdb, 0x47, 0xb4, 0x16, 0xdc, 0x6e, 0x8d, 0x27, 0x8f, 0x68, - 0x6d, 0x0a, 0x76, 0x63, 0xfa, 0x43, 0x10, 0xad, 0xd5, 0xb8, 0x20, 0xa2, 0xb5, 0xd9, 0x95, 0x11, - 0x44, 0x6b, 0xd3, 0x79, 0x75, 0x78, 0x83, 0xe6, 0xcd, 0x27, 0xa2, 0xb5, 0x60, 0xf5, 0x24, 0x57, - 0x42, 0xc1, 0xce, 0xaa, 0x82, 0x9d, 0x71, 0x1d, 0x0a, 0x46, 0x9e, 0x65, 0x7f, 0xe4, 0x99, 0x96, - 0x41, 0x5f, 0xfb, 0xeb, 0xcc, 0xb5, 0xff, 0x1c, 0x2d, 0x7e, 0x21, 0xfb, 0xed, 0xe6, 0x78, 0xed, - 0x0c, 0x8e, 0x5b, 0x73, 0x7d, 0xcd, 0xf3, 0xd6, 0x26, 0x17, 0xc4, 0xc0, 0x35, 0x2e, 0x7f, 0x1c, - 0x06, 0xae, 0x61, 0xe0, 0x5a, 0xd2, 0x85, 0x30, 0x70, 0x4d, 0xc7, 0x05, 0x51, 0xbf, 0x89, 0xfa, - 0xcd, 0xec, 0x00, 0x74, 0xd4, 0x6f, 0x32, 0x3a, 0x9e, 0x10, 0x11, 0x64, 0x54, 0x42, 0x6c, 0xca, - 0x88, 0x4d, 0x29, 0x31, 0x28, 0x27, 0x1a, 0x7f, 0x09, 0x22, 0x82, 0xab, 0x21, 0x0c, 0x22, 0x82, - 0xcb, 0x4f, 0x1e, 0x11, 0xc1, 0x14, 0xec, 0xc6, 0xf4, 0x87, 0x20, 0x22, 0xa8, 0x71, 0x41, 0x44, - 0x04, 0xb3, 0x2b, 0x23, 0x88, 0x08, 0xa6, 0xf3, 0xea, 0x88, 0x08, 0xce, 0x9b, 0x4f, 0x44, 0x04, - 0x8d, 0x89, 0x24, 0xea, 0x37, 0x75, 0x08, 0x30, 0xea, 0x37, 0xc1, 0xe8, 0xc1, 0xe8, 0xc1, 0xe8, - 0x75, 0xcb, 0x3a, 0xea, 0x37, 0x4d, 0x41, 0x12, 0xd4, 0x6f, 0x6e, 0xb0, 0x10, 0xea, 0x37, 0xf3, - 0x89, 0xcf, 0x51, 0xbf, 0xb9, 0xf9, 0x61, 0x40, 0xfd, 0x26, 0xea, 0x37, 0xc1, 0xeb, 0x48, 0x78, - 0x1d, 0xea, 0x37, 0xc1, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0xf6, 0x11, 0xad, 0x05, 0xb7, 0x5b, 0xe3, - 0xc9, 0x23, 0x5a, 0x9b, 0x82, 0xdd, 0x98, 0xfe, 0x10, 0x44, 0x6b, 0x35, 0x2e, 0x88, 0x68, 0x6d, - 0x76, 0x65, 0x04, 0xd1, 0xda, 0x74, 0x5e, 0x1d, 0xde, 0xa0, 0x79, 0xf3, 0x89, 0x68, 0x2d, 0x58, - 0x3d, 0xc9, 0x95, 0x50, 0xbf, 0x39, 0x57, 0xee, 0x17, 0xd7, 0x99, 0x61, 0xe2, 0xda, 0x5b, 0x15, - 0x13, 0x26, 0xae, 0xa5, 0xd3, 0x0d, 0x83, 0x8a, 0x1d, 0x03, 0x6e, 0x16, 0x54, 0xec, 0x68, 0x39, - 0x0a, 0xa8, 0xd8, 0x21, 0x56, 0x3a, 0xd4, 0xca, 0x87, 0x5a, 0x09, 0xb1, 0x29, 0x23, 0x36, 0xa5, - 0xc4, 0xa0, 0x9c, 0x68, 0x10, 0x32, 0x7c, 0xc0, 0xab, 0x21, 0x0c, 0x7c, 0xc0, 0xcb, 0x4f, 0x1e, - 0x3e, 0xe0, 0x14, 0xec, 0xc6, 0xf4, 0x87, 0xc0, 0x07, 0xac, 0x71, 0x41, 0xf8, 0x80, 0xb3, 0x2b, - 0x23, 0xf0, 0x01, 0xa7, 0xf3, 0xea, 0xf0, 0x01, 0xcf, 0x9b, 0x4f, 0xf8, 0x80, 0x8d, 0x89, 0x24, - 0x2a, 0x76, 0x74, 0x08, 0x30, 0x2a, 0x76, 0xc0, 0xe8, 0xc1, 0xe8, 0xc1, 0xe8, 0x75, 0xcb, 0x3a, - 0x2a, 0x76, 0x4c, 0x41, 0x12, 0x54, 0xec, 0x6c, 0xb0, 0x10, 0x2a, 0x76, 0xf2, 0x89, 0xcf, 0x51, - 0xb1, 0xb3, 0xf9, 0x61, 0x40, 0xc5, 0x0e, 0x2a, 0x76, 0xc0, 0xeb, 0x48, 0x78, 0x1d, 0x2a, 0x76, - 0xc0, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0xf6, 0x11, 0xad, 0x05, 0xb7, 0x5b, 0xe3, 0xc9, 0x23, 0x5a, - 0x9b, 0x82, 0xdd, 0x98, 0xfe, 0x10, 0x44, 0x6b, 0x35, 0x2e, 0x88, 0x68, 0x6d, 0x76, 0x65, 0x04, - 0xd1, 0xda, 0x74, 0x5e, 0x1d, 0xde, 0xa0, 0x79, 0xf3, 0x89, 0x68, 0x2d, 0x58, 0x3d, 0xc9, 0x95, - 0x50, 0xb1, 0xb3, 0xb2, 0x62, 0x07, 0x23, 0xd7, 0xa8, 0x76, 0xd6, 0xd0, 0x8e, 0x9a, 0x99, 0xb9, - 0x76, 0xee, 0x67, 0x76, 0xe8, 0x5a, 0xfc, 0x33, 0x35, 0x4d, 0x5c, 0x8b, 0xae, 0xa6, 0x67, 0xdc, - 0x5a, 0x09, 0xe3, 0xd6, 0xd8, 0x9d, 0x6f, 0x18, 0xb7, 0x66, 0x5c, 0x0d, 0x6b, 0x73, 0x8e, 0x4d, - 0x65, 0xcd, 0x13, 0x76, 0x37, 0x14, 0x5d, 0x1d, 0xe2, 0x36, 0xc1, 0x8d, 0x1a, 0x9c, 0x2f, 0x85, - 0x9b, 0xd8, 0x32, 0x7c, 0xf8, 0x10, 0xd7, 0xcd, 0x16, 0x23, 0xe5, 0x91, 0x41, 0x15, 0xaa, 0xa7, - 0x48, 0x56, 0x6b, 0x71, 0xac, 0xf6, 0x99, 0x95, 0x15, 0x28, 0x51, 0x28, 0xd1, 0xcc, 0x28, 0x51, - 0x6d, 0x33, 0x2b, 0xb5, 0xa0, 0x23, 0x0a, 0x94, 0x44, 0xe4, 0x51, 0xc3, 0xbc, 0x4a, 0x54, 0xbf, - 0xf3, 0x28, 0x88, 0x74, 0xba, 0x37, 0xb4, 0x87, 0x26, 0x67, 0xac, 0x7a, 0xe8, 0xfa, 0x8f, 0x3a, - 0xa5, 0x75, 0x9a, 0xd1, 0x05, 0xf7, 0x45, 0xf6, 0xdd, 0x17, 0x1a, 0x1c, 0x51, 0x66, 0xc0, 0xaf, - 0x0a, 0x6d, 0x5f, 0xba, 0x4a, 0x1f, 0xfc, 0x9d, 0x5c, 0x10, 0x43, 0xdb, 0x01, 0x80, 0x01, 0x80, - 0x4d, 0x03, 0x60, 0x0c, 0x6d, 0x07, 0x08, 0x06, 0x08, 0xde, 0x2d, 0x10, 0x8c, 0x16, 0x50, 0x0c, - 0x4c, 0x9b, 0x4c, 0xd9, 0x50, 0x2a, 0x1d, 0x6a, 0xe5, 0x43, 0xad, 0x84, 0xd8, 0x94, 0x11, 0x9b, - 0x52, 0x62, 0x50, 0x4e, 0x7a, 0x95, 0x94, 0x66, 0x65, 0x45, 0xc7, 0xdc, 0x57, 0xca, 0x3a, 0x92, - 0x8a, 0x97, 0xfe, 0x20, 0xa9, 0xf8, 0x6d, 0x4b, 0x20, 0xa9, 0x38, 0x3d, 0x46, 0x37, 0x71, 0x39, - 0x24, 0x15, 0x6b, 0x92, 0x11, 0x24, 0x15, 0xe7, 0x40, 0x50, 0x90, 0x54, 0x4c, 0x7f, 0x6c, 0x90, - 0x54, 0xbc, 0xce, 0x1a, 0x48, 0x2a, 0x4e, 0x9d, 0x30, 0xa3, 0x05, 0x14, 0x18, 0x3d, 0x18, 0x3d, - 0x18, 0x3d, 0x5a, 0x40, 0x81, 0xd1, 0xaf, 0xf1, 0xe4, 0xd1, 0x02, 0x6a, 0xed, 0x85, 0xd0, 0x02, - 0x2a, 0x9f, 0xf8, 0x1c, 0x2d, 0xa0, 0x36, 0x3f, 0x0c, 0x68, 0x01, 0x85, 0x16, 0x50, 0xe0, 0x75, - 0x24, 0xbc, 0x0e, 0x2d, 0xa0, 0xc0, 0xed, 0xc0, 0xed, 0xc0, 0xed, 0xf6, 0x11, 0xad, 0x05, 0xb7, - 0x5b, 0xe3, 0xc9, 0x23, 0x5a, 0x9b, 0x82, 0xdd, 0x98, 0xfe, 0x10, 0x44, 0x6b, 0x35, 0x2e, 0x88, - 0x68, 0x6d, 0x76, 0x65, 0x04, 0xd1, 0xda, 0x74, 0x5e, 0x1d, 0xde, 0xa0, 0x79, 0xf3, 0x89, 0x68, - 0x2d, 0x58, 0x3d, 0xc9, 0x95, 0xd0, 0x02, 0x6a, 0xae, 0xe2, 0x2e, 0xae, 0x33, 0xc3, 0xd0, 0xf6, - 0xb7, 0x2a, 0x26, 0x0c, 0x6d, 0x4f, 0xa7, 0x1b, 0x06, 0x15, 0x3b, 0x06, 0xdc, 0x2c, 0xa8, 0xd8, - 0xd1, 0x72, 0x14, 0x50, 0xb1, 0x43, 0xac, 0x74, 0xa8, 0x95, 0x0f, 0xb5, 0x12, 0x62, 0x53, 0x46, - 0x6c, 0x4a, 0x89, 0x41, 0x39, 0xd1, 0x20, 0x64, 0xf8, 0x80, 0x57, 0x43, 0x18, 0xf8, 0x80, 0x97, - 0x9f, 0x3c, 0x7c, 0xc0, 0x29, 0xd8, 0x8d, 0xe9, 0x0f, 0x81, 0x0f, 0x58, 0xe3, 0x82, 0xf0, 0x01, - 0x67, 0x57, 0x46, 0xe0, 0x03, 0x4e, 0xe7, 0xd5, 0xe1, 0x03, 0x9e, 0x37, 0x9f, 0xf0, 0x01, 0x1b, - 0x13, 0x49, 0x54, 0xec, 0xe8, 0x10, 0x60, 0x54, 0xec, 0x80, 0xd1, 0x83, 0xd1, 0x83, 0xd1, 0xeb, - 0x96, 0x75, 0x54, 0xec, 0x98, 0x82, 0x24, 0xa8, 0xd8, 0xd9, 0x60, 0x21, 0x54, 0xec, 0xe4, 0x13, - 0x9f, 0xa3, 0x62, 0x67, 0xf3, 0xc3, 0x80, 0x8a, 0x1d, 0x54, 0xec, 0x80, 0xd7, 0x91, 0xf0, 0x3a, - 0x54, 0xec, 0x80, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0xed, 0x23, 0x5a, 0x0b, 0x6e, 0xb7, 0xc6, 0x93, - 0x47, 0xb4, 0x36, 0x05, 0xbb, 0x31, 0xfd, 0x21, 0x88, 0xd6, 0x6a, 0x5c, 0x10, 0xd1, 0xda, 0xec, - 0xca, 0x08, 0xa2, 0xb5, 0xe9, 0xbc, 0x3a, 0xbc, 0x41, 0xf3, 0xe6, 0x13, 0xd1, 0x5a, 0xb0, 0x7a, - 0x92, 0x2b, 0xa1, 0x62, 0x67, 0x65, 0xc5, 0x0e, 0x86, 0xb6, 0x53, 0xed, 0xac, 0xa1, 0x1d, 0x35, - 0x33, 0xb4, 0xfd, 0x2e, 0x5e, 0xdc, 0xd4, 0xd0, 0xb5, 0x3d, 0x46, 0x81, 0x29, 0xfc, 0x29, 0x9e, - 0xb7, 0x9c, 0x3c, 0x5a, 0xb8, 0x70, 0xa5, 0x3a, 0x55, 0x6a, 0xbb, 0x4a, 0x93, 0x11, 0xbb, 0x69, - 0x7a, 0xa2, 0x27, 0xfc, 0x08, 0x64, 0xf9, 0x03, 0xcf, 0xdb, 0x62, 0xf8, 0xdc, 0xa5, 0xfd, 0x5d, - 0xdf, 0xc5, 0xae, 0xc3, 0x8e, 0x08, 0x45, 0xe7, 0xe3, 0x73, 0x7c, 0x29, 0xd6, 0xfd, 0xd1, 0x74, - 0x90, 0x99, 0x0f, 0x70, 0x61, 0xab, 0xa9, 0xd9, 0x6b, 0x1e, 0xd8, 0xcd, 0x0e, 0xea, 0xfa, 0xc7, - 0x6c, 0xbd, 0x6f, 0xac, 0xb9, 0xe1, 0xdb, 0x6e, 0x34, 0xc7, 0x06, 0xaf, 0xf7, 0xa0, 0xdf, 0xfe, - 0xb8, 0xd6, 0x78, 0x54, 0x85, 0xc1, 0xe8, 0x57, 0x49, 0x15, 0xda, 0xae, 0x2f, 0x3a, 0x56, 0xfc, - 0x73, 0xd7, 0x7b, 0x5c, 0xaf, 0xee, 0xad, 0xe5, 0x6b, 0xad, 0xb9, 0x69, 0x9b, 0x55, 0xab, 0x6e, - 0x1c, 0x7a, 0xd8, 0x26, 0xb4, 0x30, 0xfd, 0xd5, 0x81, 0x63, 0x6d, 0x18, 0x3d, 0xd8, 0x36, 0x3a, - 0xa0, 0xcd, 0xfb, 0xaf, 0xcd, 0xbb, 0x3f, 0xe7, 0xbd, 0x9f, 0x3c, 0x98, 0x94, 0x29, 0x86, 0x4d, - 0x6b, 0x38, 0x0b, 0x23, 0x81, 0xb6, 0xa4, 0x50, 0x83, 0xbe, 0xd5, 0x0f, 0x03, 0x15, 0x38, 0xc1, - 0xe6, 0xe1, 0xbf, 0xd7, 0x30, 0xdf, 0x8a, 0x8b, 0x6e, 0x0a, 0x3d, 0xb6, 0x2a, 0xf5, 0xde, 0x3a, - 0x7e, 0xa7, 0x23, 0x4e, 0xa7, 0xe1, 0x50, 0xe9, 0x3a, 0x5c, 0xda, 0x0f, 0x99, 0xf6, 0xc3, 0xa6, - 0xf7, 0xd0, 0x99, 0x81, 0xcb, 0xdb, 0x16, 0x54, 0x17, 0xbc, 0x4e, 0x5f, 0xdf, 0x48, 0xe4, 0xd1, - 0xc5, 0x30, 0x0e, 0xf9, 0x2d, 0x87, 0x73, 0xfb, 0x27, 0xb5, 0x8f, 0x81, 0xc8, 0x2b, 0xce, 0xee, - 0xe8, 0xb9, 0xc2, 0x55, 0xc2, 0x02, 0xc4, 0x97, 0xd1, 0x6a, 0x71, 0x85, 0x31, 0x2e, 0x6a, 0x92, - 0xf4, 0xb7, 0xb2, 0xb0, 0x2f, 0xb3, 0x77, 0x75, 0x63, 0xab, 0xa7, 0xf6, 0xe8, 0xff, 0x3e, 0x8f, - 0xee, 0xe9, 0x26, 0xbe, 0xa5, 0xf6, 0xc5, 0xb6, 0x42, 0x92, 0x15, 0x67, 0x4a, 0xda, 0xc9, 0xfa, - 0xdb, 0x44, 0x88, 0x83, 0xbc, 0xbf, 0x41, 0x6c, 0x40, 0xeb, 0x79, 0x45, 0x61, 0x13, 0x42, 0xb8, - 0xf1, 0x76, 0x93, 0xb9, 0x12, 0xf6, 0x34, 0x6e, 0xe2, 0xa6, 0x9b, 0x47, 0xb5, 0x69, 0x6b, 0xec, - 0xd0, 0x5b, 0x77, 0xe6, 0x6d, 0xfb, 0xf0, 0xeb, 0xa7, 0xfa, 0x86, 0x27, 0x5a, 0x90, 0xee, 0xa3, - 0x6f, 0x7b, 0xae, 0xff, 0x38, 0xd5, 0x34, 0xf2, 0xcd, 0x8f, 0xf5, 0xb5, 0xd9, 0xd8, 0x8a, 0x8b, - 0xbc, 0x71, 0x37, 0xd7, 0x83, 0xba, 0x6b, 0x43, 0xda, 0x4d, 0xa0, 0xeb, 0x16, 0xfc, 0x71, 0x53, - 0x2c, 0xba, 0x35, 0xe6, 0xdc, 0x1a, 0x5b, 0x6e, 0xc7, 0xff, 0xf4, 0x9e, 0xf0, 0x75, 0xf9, 0xdc, - 0x46, 0xfc, 0x6d, 0x0b, 0xbe, 0x96, 0x55, 0x0f, 0xe3, 0x66, 0x28, 0x34, 0xff, 0x0e, 0xc6, 0x8d, - 0xf8, 0x52, 0x4a, 0xfd, 0x8b, 0x8f, 0x5e, 0xf0, 0x60, 0x6b, 0x70, 0x29, 0xc6, 0xd7, 0x81, 0x17, - 0x71, 0x7b, 0x47, 0xc5, 0xee, 0x3a, 0x11, 0xb7, 0x72, 0x44, 0x64, 0xcc, 0x87, 0x68, 0x0f, 0xd4, - 0x93, 0xf0, 0x95, 0xeb, 0xe8, 0xf1, 0x5a, 0x4c, 0xc5, 0x6f, 0xe1, 0xba, 0xf0, 0x2c, 0xc2, 0xb3, - 0x08, 0xcf, 0xe2, 0x16, 0xbf, 0x48, 0x57, 0xf7, 0xd5, 0x82, 0x33, 0x39, 0x03, 0x9a, 0x3b, 0x37, - 0xc7, 0xd7, 0x4d, 0x79, 0xeb, 0xe6, 0x52, 0x06, 0x5a, 0x37, 0x6b, 0x53, 0x04, 0x54, 0x0a, 0x81, - 0x5c, 0x31, 0x90, 0x2b, 0x08, 0x52, 0x45, 0xa1, 0x47, 0x61, 0x68, 0x52, 0x1c, 0xda, 0x15, 0x48, - 0x02, 0x72, 0xb0, 0xbe, 0x46, 0xc9, 0x7f, 0x44, 0x05, 0xc1, 0x2b, 0xd6, 0x42, 0x61, 0x30, 0x79, - 0x61, 0xb0, 0x76, 0x45, 0x44, 0xad, 0x90, 0xd8, 0x14, 0x13, 0x9b, 0x82, 0x62, 0x51, 0x54, 0x7a, - 0x15, 0x96, 0x66, 0xc5, 0x35, 0x7d, 0x02, 0xf4, 0xc5, 0xc1, 0x61, 0x30, 0x50, 0x91, 0x37, 0xd8, - 0x96, 0x32, 0x12, 0x1f, 0xc2, 0x12, 0xe1, 0xa3, 0x1d, 0x68, 0x15, 0x21, 0x7c, 0xfb, 0xc1, 0x13, - 0x74, 0x56, 0x21, 0xbe, 0xbe, 0x66, 0x39, 0x3b, 0x13, 0x5d, 0x7b, 0xe0, 0x45, 0x07, 0xad, 0x6b, - 0x7b, 0x52, 0xc0, 0xd2, 0xc0, 0xd2, 0xc0, 0xd2, 0xc0, 0xd2, 0xe8, 0x94, 0xf7, 0x87, 0x20, 0xf0, - 0x84, 0xed, 0x53, 0x1a, 0x98, 0x32, 0xaa, 0x16, 0xdf, 0x22, 0xec, 0xd9, 0xa9, 0x5a, 0x5c, 0x11, - 0xad, 0x2e, 0x7a, 0x9d, 0x7e, 0x71, 0x1c, 0xf2, 0x28, 0xce, 0x53, 0x24, 0x4c, 0x1c, 0x7b, 0xeb, - 0x51, 0xc4, 0xc4, 0x31, 0xb8, 0xad, 0xe0, 0xb6, 0x82, 0xdb, 0x0a, 0x6e, 0x2b, 0x90, 0x09, 0x90, - 0x09, 0x90, 0x09, 0xb8, 0xad, 0xe0, 0xb6, 0x82, 0xdb, 0x0a, 0x96, 0x06, 0x96, 0x06, 0x96, 0x06, - 0x96, 0x06, 0x6e, 0x2b, 0xb8, 0xad, 0x38, 0xdd, 0x56, 0x68, 0xbb, 0x45, 0xb5, 0xc7, 0xc6, 0xf7, - 0x96, 0xa9, 0x92, 0xf4, 0xf3, 0xe4, 0x9e, 0x26, 0xb5, 0x7f, 0xb2, 0x7d, 0xd1, 0xe9, 0xb7, 0x7f, - 0x8f, 0x6e, 0xa9, 0x7d, 0x3a, 0x7f, 0x4b, 0xa6, 0x2a, 0x49, 0xb7, 0xc8, 0xca, 0xd6, 0x94, 0xbf, - 0xa7, 0x37, 0x6f, 0x0f, 0x09, 0xba, 0x26, 0xd1, 0x1d, 0x12, 0x74, 0x53, 0xa0, 0xae, 0xb5, 0x25, - 0xe8, 0x7a, 0x32, 0xb4, 0xdc, 0x8e, 0xfe, 0x40, 0x47, 0x7c, 0x5d, 0xbd, 0x91, 0x8e, 0x12, 0x12, - 0x74, 0x53, 0x4c, 0xf7, 0x10, 0xe9, 0xc8, 0x10, 0xa6, 0xd7, 0x4e, 0xdf, 0x68, 0x07, 0x1a, 0x52, - 0x0c, 0xbb, 0xa0, 0x19, 0x72, 0x41, 0x3a, 0x2a, 0x92, 0x74, 0x60, 0x21, 0xe5, 0x6c, 0x36, 0xf2, - 0x99, 0x6c, 0x99, 0x1f, 0x4c, 0xd8, 0x4a, 0xb3, 0xb7, 0x87, 0x56, 0xa8, 0xeb, 0x10, 0xea, 0x9f, - 0x0b, 0x35, 0x06, 0x0c, 0xe6, 0x62, 0xc0, 0x60, 0x5a, 0x5b, 0xfb, 0xb7, 0xe0, 0x01, 0xcb, 0x85, - 0x07, 0x4c, 0x47, 0x16, 0x9e, 0x19, 0x37, 0xd3, 0x63, 0x68, 0x3b, 0xa2, 0x3b, 0xf0, 0xac, 0x50, - 0x48, 0x65, 0x87, 0x4a, 0x9f, 0xc3, 0x69, 0xe9, 0xca, 0x70, 0x3d, 0xc1, 0xf5, 0x04, 0xd7, 0x53, - 0x1a, 0x5c, 0x4f, 0xa8, 0x0d, 0x87, 0xeb, 0x09, 0xae, 0xa7, 0xdd, 0x73, 0x3d, 0x69, 0x4f, 0xb2, - 0x1d, 0xa7, 0x38, 0x75, 0xa8, 0x73, 0xa8, 0x3a, 0x48, 0xa2, 0xda, 0x47, 0x12, 0x15, 0xb7, 0x6a, - 0x63, 0x53, 0x71, 0x6c, 0xaa, 0x8e, 0x45, 0xe5, 0xe9, 0x67, 0xc9, 0xfb, 0x48, 0xa2, 0x5a, 0x8d, - 0x8c, 0xca, 0x3b, 0x90, 0xa5, 0xdb, 0x0d, 0xc2, 0x7f, 0xec, 0xb0, 0x33, 0xa2, 0xde, 0x4f, 0x81, - 0xd7, 0x51, 0x6e, 0x8f, 0x30, 0x65, 0x77, 0xd5, 0x62, 0x30, 0x0d, 0x30, 0x0d, 0x30, 0x0d, 0x30, - 0x0d, 0x1a, 0xe5, 0x7d, 0xe0, 0xfa, 0xaa, 0x5c, 0x27, 0xb4, 0x0c, 0x04, 0x13, 0xd1, 0x89, 0x67, - 0xe2, 0x13, 0x8e, 0x56, 0xe6, 0x98, 0x81, 0xcf, 0x34, 0xd7, 0x7c, 0x3a, 0xcf, 0x9c, 0x7a, 0x1d, - 0xc6, 0x09, 0xe6, 0x84, 0x23, 0xee, 0x59, 0x46, 0xdb, 0x73, 0x6f, 0x7d, 0xbd, 0x56, 0x3b, 0xac, - 0xe5, 0x68, 0xfb, 0x31, 0x1d, 0x3c, 0x35, 0x58, 0xfb, 0x49, 0x78, 0x7d, 0x11, 0x5a, 0xd4, 0x85, - 0x71, 0xf3, 0xcb, 0x00, 0x5f, 0x03, 0x5f, 0x03, 0x5f, 0x03, 0x5f, 0xc3, 0xf5, 0x92, 0x36, 0x73, - 0x10, 0x0a, 0x27, 0xf0, 0x7d, 0xe1, 0x28, 0x8b, 0xd6, 0xeb, 0xb2, 0xb0, 0x0e, 0x0c, 0x02, 0x0c, - 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x1c, 0x2e, 0x70, 0xb8, 0xc0, 0xe1, 0x02, 0x87, 0x0b, 0x1c, 0x2e, - 0x70, 0xb8, 0xe4, 0x18, 0x61, 0x7f, 0x13, 0xe1, 0x33, 0x03, 0xc0, 0x7e, 0x5d, 0x06, 0xf8, 0x1a, - 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, - 0xf8, 0x3a, 0x4d, 0xf8, 0x1a, 0x1d, 0xd8, 0x48, 0x6a, 0x14, 0x17, 0xeb, 0xf1, 0x30, 0x3a, 0xe0, - 0xad, 0xe8, 0x06, 0xa3, 0x03, 0xd2, 0x4a, 0x8b, 0x50, 0xd5, 0x64, 0x84, 0xf6, 0xa0, 0xaa, 0x69, - 0xbb, 0x73, 0x80, 0xaa, 0x26, 0x78, 0x7a, 0xe0, 0xe9, 0x81, 0xa7, 0x07, 0xa9, 0x35, 0xab, 0x90, - 0x11, 0xaa, 0x9a, 0x34, 0xef, 0x19, 0xaa, 0x9a, 0x60, 0x1a, 0x60, 0x1a, 0x60, 0x1a, 0x10, 0x04, - 0x58, 0xbe, 0x34, 0x82, 0x00, 0xfc, 0x6a, 0x7d, 0x69, 0x19, 0x04, 0x01, 0xd6, 0xdb, 0x7a, 0x04, - 0x01, 0x52, 0xbf, 0xfd, 0x08, 0x02, 0xa4, 0x06, 0x6b, 0xa3, 0xaa, 0x09, 0xf8, 0x1a, 0xf8, 0x1a, - 0xf8, 0x1a, 0xae, 0x17, 0xb8, 0x5e, 0x50, 0xd5, 0x04, 0x83, 0x00, 0x83, 0x00, 0x83, 0x00, 0x87, - 0x0b, 0x1c, 0x2e, 0x70, 0xb8, 0xc0, 0xe1, 0x02, 0x87, 0x0b, 0x1c, 0x2e, 0x70, 0xb8, 0xa0, 0xaa, - 0x09, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0xf8, - 0x1a, 0xf8, 0x1a, 0xf8, 0x1a, 0x55, 0x4d, 0x6b, 0x5f, 0x37, 0x05, 0x55, 0x4d, 0xe3, 0x62, 0x1d, - 0xcc, 0xd5, 0xcb, 0xc5, 0x5c, 0x3d, 0xcd, 0x33, 0xe4, 0xc6, 0xbf, 0x42, 0x85, 0x03, 0x47, 0xf9, - 0x31, 0xc6, 0xbb, 0x1a, 0xdf, 0xd6, 0x79, 0x7c, 0x57, 0xed, 0xcb, 0xbe, 0x27, 0xdb, 0x9f, 0x27, - 0x77, 0x75, 0x33, 0xb9, 0xa9, 0xf6, 0x45, 0xa7, 0xdf, 0xfe, 0x3d, 0xba, 0xa9, 0xf6, 0xef, 0xf1, - 0x4d, 0xdd, 0xc6, 0xf7, 0x94, 0xc1, 0xa9, 0x7f, 0x7a, 0x0a, 0xe5, 0xb4, 0x16, 0xc8, 0x69, 0x9f, - 0xef, 0x57, 0xc1, 0x7c, 0xbf, 0x14, 0x30, 0x64, 0xcc, 0xf7, 0x7b, 0xfb, 0x2f, 0xd2, 0x36, 0xdf, - 0xcf, 0x93, 0xa1, 0xe5, 0x76, 0xf4, 0x17, 0xc2, 0xc6, 0xd7, 0xd5, 0x5b, 0x09, 0x5b, 0xc2, 0x7c, - 0xbf, 0x14, 0xbb, 0xd0, 0x50, 0x09, 0x9b, 0x21, 0x58, 0xaf, 0xdd, 0x25, 0x36, 0x33, 0x2b, 0x9e, - 0x60, 0x52, 0xfc, 0xd4, 0xe4, 0x1f, 0x6b, 0xbc, 0x66, 0xfc, 0x0c, 0xee, 0x33, 0x34, 0x85, 0xbf, - 0x8a, 0x29, 0xfc, 0x09, 0x0b, 0xc4, 0x53, 0xf8, 0x5b, 0x2f, 0xf7, 0x65, 0xeb, 0xb8, 0x35, 0x7e, - 0x59, 0x8e, 0xfe, 0x1a, 0xbf, 0xae, 0xdc, 0x97, 0xac, 0xea, 0xe4, 0x75, 0xed, 0xbe, 0x64, 0xd5, - 0x5a, 0x07, 0x7f, 0xff, 0xfd, 0xe1, 0xe0, 0xc7, 0xe1, 0x70, 0xfd, 0x2f, 0xa6, 0x7f, 0xee, 0xfc, - 0xfb, 0x0c, 0x09, 0x75, 0x1d, 0x42, 0xfd, 0x73, 0xa1, 0xb6, 0xad, 0xee, 0xa9, 0xf5, 0x5b, 0xeb, - 0x47, 0xf9, 0x7d, 0x75, 0x78, 0x72, 0xf0, 0xa3, 0x31, 0x5c, 0x7c, 0xf3, 0x65, 0xd5, 0xc7, 0xca, - 0xef, 0x1b, 0xc3, 0x93, 0x84, 0x7f, 0xa9, 0x0f, 0x4f, 0xde, 0x78, 0x8d, 0xda, 0xf0, 0xdd, 0xd2, - 0x47, 0x47, 0xef, 0x57, 0x92, 0xbe, 0x50, 0x4d, 0xf8, 0xc2, 0x61, 0xd2, 0x17, 0x0e, 0x13, 0xbe, - 0x90, 0x78, 0x4b, 0x95, 0x84, 0x2f, 0xd4, 0x86, 0x2f, 0x4b, 0x9f, 0x7f, 0xb7, 0xfa, 0xa3, 0xf5, - 0xe1, 0xc1, 0x4b, 0xd2, 0xbf, 0x35, 0x86, 0x2f, 0x27, 0x07, 0x19, 0x38, 0xe2, 0x7b, 0xe9, 0xba, - 0x2f, 0xb8, 0xc0, 0x4c, 0xbb, 0xc0, 0x34, 0xf8, 0x33, 0xb7, 0xf0, 0x31, 0xed, 0x31, 0x6e, 0x9a, - 0xae, 0xcd, 0xe2, 0xdf, 0xa4, 0xc2, 0x56, 0xae, 0xb8, 0xed, 0xdc, 0x91, 0x9b, 0x89, 0xc6, 0xfa, - 0x1b, 0xbb, 0xc1, 0xa6, 0x16, 0x5c, 0x5f, 0x89, 0xb0, 0x6b, 0x3b, 0xc2, 0xb2, 0x95, 0x0a, 0xdd, - 0x87, 0x81, 0x12, 0x72, 0xe3, 0xad, 0x7d, 0x05, 0x17, 0xab, 0xae, 0xba, 0xa1, 0xc8, 0x6d, 0xe7, - 0x74, 0xdc, 0xda, 0xe7, 0xa0, 0xc3, 0xc7, 0xa0, 0xcf, 0xa7, 0xa0, 0xcb, 0x87, 0xa0, 0xdd, 0x67, - 0xa0, 0xdd, 0x47, 0xa0, 0xd5, 0x27, 0xc0, 0xab, 0x24, 0xb7, 0x75, 0x12, 0x16, 0x9c, 0x89, 0xcc, - 0x6a, 0x72, 0xfe, 0xc7, 0xd7, 0x4b, 0x99, 0xf7, 0xbf, 0x04, 0xef, 0x7f, 0x0a, 0x9c, 0x7c, 0xf0, - 0xfe, 0xf3, 0x1d, 0xec, 0xe9, 0x85, 0x9e, 0x84, 0xe7, 0x05, 0xfa, 0xdb, 0x0a, 0xcd, 0x16, 0x3a, - 0xcf, 0x5e, 0x1f, 0xd1, 0x80, 0xf4, 0x28, 0x06, 0x2a, 0x05, 0x41, 0xae, 0x28, 0xc8, 0x15, 0x06, - 0xa9, 0xe2, 0xd0, 0xcb, 0xde, 0xd3, 0x1f, 0x0d, 0xd0, 0x9e, 0x18, 0x4b, 0x90, 0x10, 0x4b, 0x94, - 0x08, 0x4b, 0xe0, 0x34, 0xa5, 0x4c, 0x7c, 0x25, 0xce, 0x7a, 0xa4, 0x4e, 0x74, 0xe5, 0xc8, 0x70, - 0x24, 0x48, 0x6c, 0x25, 0x4d, 0x68, 0xe5, 0xda, 0x52, 0xc2, 0x04, 0x56, 0x96, 0x6d, 0x85, 0x5f, - 0x96, 0x5a, 0xec, 0x63, 0x24, 0x18, 0xf9, 0x63, 0xbe, 0xd9, 0x1e, 0x15, 0xd2, 0x9c, 0x5e, 0x1f, - 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, - 0x48, 0x33, 0x1b, 0x48, 0x13, 0x19, 0x00, 0x9b, 0x05, 0x97, 0x57, 0x05, 0x3a, 0xb5, 0x4c, 0x6d, - 0x32, 0x53, 0x74, 0x32, 0xfd, 0x39, 0x52, 0x5f, 0xf0, 0x69, 0xe6, 0x9a, 0x08, 0x40, 0xf1, 0xa1, - 0x7f, 0x04, 0xa0, 0x10, 0x80, 0x7a, 0xc3, 0x41, 0xd7, 0xef, 0x11, 0x78, 0xbd, 0x74, 0xca, 0xc7, - 0xb1, 0xc1, 0x19, 0x00, 0x67, 0xc0, 0x6e, 0x3a, 0x03, 0xb4, 0x8f, 0x63, 0x8b, 0xf3, 0xc8, 0xad, - 0xae, 0xdd, 0x73, 0x3d, 0x57, 0x03, 0x7a, 0x48, 0x3c, 0x10, 0x4b, 0x2b, 0xd1, 0x34, 0x95, 0x2a, - 0xa3, 0xa9, 0x14, 0x9a, 0x4a, 0xa5, 0x48, 0x39, 0xb1, 0x28, 0x29, 0x22, 0xb6, 0xac, 0x7b, 0x84, - 0xa2, 0x66, 0xe5, 0xb5, 0x5a, 0x89, 0x3d, 0xd3, 0x09, 0xe5, 0x4a, 0x55, 0xf6, 0x4c, 0x25, 0x99, - 0x34, 0x0a, 0x8d, 0x5c, 0xb1, 0x71, 0x28, 0x38, 0x3e, 0x45, 0xc7, 0xa5, 0xf0, 0xd8, 0x15, 0x1f, - 0xbb, 0x02, 0x64, 0x55, 0x84, 0x34, 0x0a, 0x91, 0x48, 0x31, 0x92, 0x2b, 0xc8, 0x57, 0x45, 0xd9, - 0x75, 0xad, 0xb8, 0x1a, 0x82, 0x58, 0x8c, 0xa7, 0xaa, 0x72, 0xb2, 0xe2, 0xfb, 0x5c, 0x34, 0x20, - 0xa3, 0x56, 0x9a, 0x9c, 0xca, 0x93, 0x5f, 0x89, 0x72, 0x2b, 0x53, 0x63, 0x4a, 0xd5, 0x98, 0x72, - 0x35, 0xa2, 0x64, 0x69, 0x95, 0x2d, 0xb1, 0xd2, 0x9d, 0x3e, 0x31, 0xb2, 0x96, 0xa7, 0x89, 0xe7, - 0xcd, 0x13, 0x76, 0x37, 0x14, 0x5d, 0x8e, 0x03, 0x37, 0xc1, 0x92, 0x0d, 0x86, 0xb5, 0x6e, 0xe2, - 0xf0, 0xcd, 0x87, 0x0f, 0x71, 0x3c, 0xa5, 0x38, 0x35, 0x02, 0x7b, 0xd9, 0x14, 0x3f, 0xca, 0xf6, - 0x9c, 0x9a, 0x2a, 0x86, 0xde, 0x2c, 0x74, 0x5a, 0x2a, 0x8a, 0x0c, 0x73, 0x17, 0x98, 0x63, 0x98, - 0x63, 0x98, 0xe3, 0x7c, 0x9b, 0x63, 0x6a, 0x2e, 0xc4, 0xcf, 0x89, 0x4c, 0x71, 0x23, 0x66, 0x8e, - 0xc4, 0xae, 0x9c, 0x4d, 0x28, 0x69, 0x73, 0xca, 0xda, 0x94, 0xd2, 0x36, 0xae, 0xbc, 0x8d, 0x2b, - 0x71, 0xa3, 0xca, 0x9c, 0x47, 0xa9, 0x33, 0x29, 0x77, 0x7e, 0xce, 0xb5, 0x74, 0x5e, 0x7b, 0x7d, - 0x4f, 0x8e, 0x76, 0xce, 0xb2, 0xbb, 0x2e, 0xe7, 0xa9, 0x9d, 0x00, 0xe3, 0x2a, 0xe3, 0x9a, 0x4d, - 0x7f, 0xd0, 0x1b, 0x3d, 0x65, 0x26, 0xd9, 0xd9, 0xcb, 0x81, 0x74, 0x16, 0xc6, 0x93, 0xa6, 0x3b, - 0xfc, 0xa0, 0x60, 0xb2, 0x30, 0xd3, 0x09, 0x3c, 0x13, 0x5d, 0x7b, 0xe0, 0x45, 0xaa, 0xac, 0x6b, - 0x7b, 0x12, 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0x58, 0x84, 0xf1, 0xbc, 0xd2, 0xcd, - 0x1e, 0xff, 0x25, 0x0c, 0x29, 0xe7, 0x05, 0x12, 0x64, 0xda, 0xd7, 0x41, 0x34, 0x31, 0x26, 0x71, - 0x3d, 0xd3, 0x65, 0x16, 0xaf, 0x85, 0x05, 0xaf, 0x2f, 0x8b, 0x8b, 0xf9, 0x81, 0xf3, 0x6f, 0x3c, - 0x6b, 0xa9, 0xcd, 0x30, 0x27, 0x46, 0x94, 0x21, 0x04, 0x3d, 0x03, 0x47, 0xde, 0xac, 0xae, 0x74, - 0x0c, 0x24, 0x79, 0xb3, 0x82, 0xe2, 0x0a, 0x20, 0x54, 0x10, 0x40, 0xc8, 0x0e, 0xfe, 0x43, 0x00, - 0x01, 0x01, 0x84, 0x5f, 0x33, 0x5b, 0x04, 0x10, 0x40, 0xda, 0x41, 0xda, 0x41, 0xda, 0x41, 0xda, - 0x41, 0xda, 0xf5, 0x9f, 0x57, 0x04, 0x10, 0x32, 0xec, 0x2d, 0x40, 0x00, 0x41, 0x1f, 0xcc, 0x42, - 0x00, 0x01, 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0x01, 0x84, 0x0c, 0x43, 0x02, 0x04, - 0x10, 0xd6, 0x58, 0x2f, 0x93, 0x01, 0x04, 0x8d, 0xc3, 0xeb, 0xf9, 0xa5, 0x28, 0x5b, 0x85, 0x8c, - 0x7f, 0x8a, 0x67, 0x06, 0xff, 0x54, 0xe1, 0xc2, 0x95, 0xea, 0x54, 0x29, 0xe2, 0xa2, 0xc9, 0x4b, - 0xd7, 0x6f, 0x7a, 0x62, 0x64, 0x23, 0x65, 0xe1, 0x64, 0xdf, 0x1f, 0x78, 0x1e, 0x61, 0x2c, 0xe7, - 0xd2, 0xfe, 0xce, 0xb7, 0xd8, 0x75, 0xd8, 0x11, 0xa1, 0xe8, 0x7c, 0x7c, 0x8e, 0x97, 0xca, 0x94, - 0x8c, 0x31, 0xe9, 0xbc, 0x4c, 0xea, 0xba, 0x02, 0x69, 0xb4, 0x71, 0xd3, 0x99, 0x6a, 0xe7, 0x93, - 0xdb, 0x3f, 0x9d, 0xfe, 0xba, 0xd7, 0xf7, 0xda, 0xa7, 0xe3, 0x5f, 0xf0, 0xdb, 0xf8, 0x07, 0xec, - 0x65, 0x43, 0x89, 0xa6, 0xbb, 0xe1, 0x06, 0xf1, 0x11, 0xc9, 0xc6, 0xd1, 0x28, 0xa4, 0xb4, 0x83, - 0xa8, 0xc6, 0xcd, 0xa6, 0x2a, 0x22, 0xa4, 0x2d, 0x1a, 0x44, 0xc7, 0x26, 0x4e, 0xd7, 0x0b, 0x3a, - 0x36, 0xa5, 0xd2, 0x35, 0xb2, 0xa3, 0x1d, 0x9b, 0x88, 0xc6, 0xa8, 0x25, 0x1e, 0x2b, 0x92, 0xb1, - 0x6a, 0x49, 0x0a, 0xad, 0x84, 0x8e, 0x4d, 0x06, 0x15, 0x1d, 0x97, 0xc2, 0x63, 0x57, 0x7c, 0xec, - 0x0a, 0x90, 0x55, 0x11, 0x66, 0xd3, 0xd1, 0x41, 0xee, 0xf3, 0xa5, 0x1b, 0xd6, 0x91, 0xa4, 0xbd, - 0xea, 0x84, 0x4b, 0xd0, 0x0c, 0xf3, 0x58, 0xfc, 0xc3, 0xe0, 0x00, 0xa5, 0x1c, 0xf6, 0xc1, 0x6c, - 0x56, 0x96, 0x96, 0x23, 0x1e, 0x06, 0xb2, 0xb4, 0x1e, 0xc3, 0x14, 0x09, 0x26, 0x75, 0xb0, 0xe8, - 0xc9, 0xcb, 0xbd, 0x88, 0x10, 0x0e, 0x17, 0x49, 0x85, 0x98, 0x64, 0x34, 0x58, 0xd0, 0xca, 0x8a, - 0xf7, 0xec, 0x3d, 0x15, 0xb3, 0xd0, 0x3e, 0x36, 0xef, 0x17, 0xcc, 0x42, 0xf3, 0x18, 0x3d, 0x30, - 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0x30, - 0x0b, 0x30, 0x0b, 0x30, 0x0b, 0xc3, 0xcc, 0xe2, 0x35, 0x04, 0xed, 0x76, 0xe8, 0x79, 0xc5, 0xdc, - 0x6a, 0x60, 0x15, 0x60, 0x15, 0x60, 0x15, 0x60, 0x15, 0x19, 0x62, 0x15, 0x0c, 0xfa, 0x6b, 0x56, - 0x87, 0x95, 0x8f, 0x90, 0x31, 0xa6, 0xe3, 0xe4, 0xec, 0x62, 0xc6, 0x18, 0x45, 0x67, 0x99, 0x74, - 0xe6, 0x89, 0x91, 0x42, 0x18, 0x8e, 0xa3, 0x4f, 0x04, 0x59, 0x90, 0x33, 0x66, 0x04, 0x92, 0x20, - 0x67, 0x2c, 0x87, 0x26, 0x84, 0x0c, 0x62, 0x30, 0xcc, 0x4d, 0xa1, 0x9c, 0x93, 0xb2, 0x62, 0x2e, - 0xca, 0x9c, 0xa2, 0xdc, 0x29, 0xf3, 0x33, 0xda, 0x3e, 0x06, 0xfb, 0xa3, 0x5f, 0x4a, 0x90, 0xb4, - 0xbc, 0xda, 0x00, 0xb9, 0x5d, 0xd8, 0x9f, 0x14, 0xda, 0x1f, 0xb7, 0x8b, 0x94, 0x65, 0x4d, 0x17, - 0x26, 0x1e, 0xd4, 0xc4, 0x33, 0xa0, 0x09, 0x43, 0x65, 0x53, 0xa0, 0xd6, 0xb8, 0xd4, 0x1b, 0xbb, - 0x9a, 0x63, 0x57, 0x77, 0x9c, 0x6a, 0x8f, 0xce, 0x25, 0xb4, 0x9f, 0xe5, 0x91, 0xb2, 0x53, 0xb0, - 0xc5, 0xd7, 0x80, 0xf6, 0x75, 0x49, 0x0c, 0x95, 0x4d, 0x9b, 0xf2, 0x64, 0x57, 0xa2, 0xdc, 0xca, - 0xd4, 0x98, 0x52, 0x35, 0xa6, 0x5c, 0x4d, 0x28, 0x59, 0x5a, 0x65, 0x4b, 0xac, 0x74, 0xe9, 0x5d, - 0x21, 0x06, 0x5c, 0x23, 0x9c, 0xae, 0x92, 0x44, 0xd7, 0x49, 0x31, 0x12, 0xbb, 0x93, 0x19, 0x2f, - 0xfe, 0xc2, 0x1b, 0xf1, 0x7f, 0x63, 0xd8, 0xec, 0xea, 0xe7, 0x28, 0x07, 0x0f, 0x06, 0xec, 0xf5, - 0xdc, 0xaa, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0x30, 0xd9, 0xd1, 0x1b, - 0xf7, 0xaf, 0x26, 0xfb, 0xbf, 0x9c, 0x41, 0x18, 0x0a, 0x5f, 0xbd, 0x3b, 0x28, 0x7e, 0xf8, 0xf0, - 0x1a, 0x1d, 0x69, 0xc5, 0x5f, 0x99, 0xb5, 0x23, 0x72, 0xc5, 0x7b, 0xd3, 0x2b, 0x77, 0xc4, 0x77, - 0xf4, 0x79, 0xe3, 0xf0, 0x2e, 0x34, 0xbf, 0x47, 0xf9, 0xb2, 0x74, 0x49, 0xf7, 0x7c, 0x8e, 0xb1, - 0xc0, 0xb1, 0xc4, 0x77, 0x75, 0xa2, 0x84, 0x27, 0x7a, 0x42, 0x85, 0xcf, 0x56, 0xe0, 0x5b, 0xce, - 0x53, 0x54, 0x55, 0xc0, 0xea, 0x2c, 0x8b, 0x9a, 0x28, 0x33, 0x7a, 0xcb, 0xb2, 0xe6, 0x28, 0x6b, - 0xa1, 0x9d, 0x9c, 0xfe, 0x0c, 0xa8, 0xb9, 0x88, 0x29, 0xe9, 0xa4, 0xad, 0x6c, 0xa4, 0x7a, 0xd3, - 0x4e, 0xd4, 0x62, 0x99, 0xa4, 0xc5, 0x16, 0xe9, 0xa9, 0x20, 0xd2, 0x93, 0x1a, 0xa6, 0x83, 0x48, - 0xcf, 0xee, 0x62, 0x31, 0x44, 0x7a, 0xe0, 0x36, 0x82, 0xdb, 0x08, 0x6e, 0x23, 0xb8, 0x8d, 0xe0, - 0x36, 0xda, 0x01, 0xb7, 0x11, 0x22, 0x3d, 0x3f, 0x67, 0x30, 0x88, 0xf4, 0xc0, 0x64, 0xc3, 0x64, - 0xc3, 0x64, 0xc3, 0x64, 0xc3, 0x64, 0xa7, 0xc4, 0x64, 0x23, 0xd2, 0x93, 0x5d, 0xef, 0x02, 0xdc, - 0xe3, 0x53, 0xf7, 0x38, 0xe1, 0x1c, 0x29, 0x94, 0x9b, 0xef, 0x9a, 0x34, 0x15, 0x48, 0xa2, 0x17, - 0x34, 0x13, 0x7a, 0xa6, 0xaf, 0x6e, 0x45, 0x77, 0x17, 0xca, 0x15, 0x69, 0xa2, 0x40, 0xa4, 0xd1, - 0x1f, 0xf2, 0xf2, 0xc4, 0x0a, 0xea, 0xe3, 0xf9, 0x68, 0x0d, 0xea, 0xe3, 0x73, 0x68, 0xf3, 0x08, - 0x0b, 0x14, 0x07, 0x23, 0x05, 0x2d, 0x39, 0x4a, 0x14, 0xe3, 0x95, 0x10, 0xba, 0x36, 0xe5, 0xca, - 0x41, 0x5f, 0xb2, 0xec, 0xf9, 0x6a, 0xd0, 0x97, 0x0c, 0xf4, 0x72, 0x15, 0x21, 0x88, 0x80, 0x60, - 0x91, 0x58, 0xa9, 0x92, 0x32, 0x83, 0x4f, 0x93, 0x7b, 0xdf, 0xf9, 0xc1, 0x03, 0x18, 0x69, 0xb6, - 0x99, 0x29, 0x46, 0x8b, 0x50, 0x98, 0x62, 0x98, 0xe2, 0x34, 0x98, 0x62, 0x0c, 0x1e, 0x58, 0x6b, - 0x09, 0x0c, 0x1e, 0x48, 0x9f, 0x59, 0x59, 0x5a, 0x0e, 0x83, 0x07, 0xf4, 0x88, 0x08, 0x06, 0x0f, - 0x64, 0x5e, 0x4c, 0x30, 0x78, 0x20, 0xa3, 0xcc, 0x02, 0x23, 0xcd, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, - 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, 0x2c, 0xc0, - 0x2c, 0xb6, 0x11, 0x13, 0x8c, 0x34, 0x03, 0xab, 0x00, 0xab, 0x00, 0xab, 0x00, 0xab, 0x48, 0x89, - 0xfe, 0xda, 0xc7, 0x48, 0x33, 0xe4, 0x98, 0xeb, 0x4a, 0x29, 0x49, 0x6d, 0x8e, 0xf6, 0x5e, 0x8a, - 0xe4, 0x64, 0x64, 0x3b, 0x88, 0x0e, 0x77, 0xe1, 0xc2, 0x95, 0xea, 0x54, 0x29, 0xbd, 0xf9, 0x9e, - 0x23, 0x3a, 0xdd, 0xf4, 0xc4, 0xc8, 0x18, 0x8c, 0x80, 0xbd, 0x3f, 0xf0, 0x3c, 0x8d, 0x39, 0xef, - 0x97, 0xf6, 0x77, 0xba, 0x8b, 0x5f, 0x87, 0x1d, 0x11, 0x8a, 0xce, 0xc7, 0xe7, 0xf8, 0xd2, 0xa9, - 0x92, 0x03, 0x22, 0x3d, 0x91, 0x4a, 0xfd, 0x50, 0xd0, 0x5a, 0x25, 0x41, 0x92, 0x53, 0xa6, 0x47, - 0x79, 0x6d, 0xaf, 0x6a, 0xb6, 0xbb, 0xc2, 0x96, 0xc2, 0xa9, 0x5b, 0x28, 0x53, 0x24, 0x8c, 0xdb, - 0xed, 0xef, 0xe6, 0xbb, 0xb2, 0xc5, 0x8e, 0x68, 0x2a, 0x08, 0xd2, 0x5a, 0x00, 0xa4, 0x29, 0x57, - 0x5e, 0x5b, 0x4e, 0xbc, 0x4e, 0x02, 0xab, 0x9f, 0xa8, 0xea, 0x26, 0xa4, 0x64, 0xc4, 0x93, 0x8c, - 0x60, 0x92, 0x10, 0x49, 0xb3, 0x3a, 0x52, 0x57, 0x41, 0x0d, 0x55, 0x06, 0x2f, 0x6d, 0xc6, 0xae, - 0x66, 0x8f, 0x97, 0x76, 0x0f, 0x17, 0x85, 0x47, 0x8b, 0xce, 0x83, 0x45, 0xe5, 0xb1, 0x22, 0xf7, - 0x50, 0x91, 0x7b, 0xa4, 0x48, 0x3d, 0x50, 0xe9, 0x62, 0x84, 0xda, 0x3d, 0x4a, 0x74, 0x71, 0x69, - 0x82, 0x38, 0x34, 0x51, 0xdc, 0x99, 0xc0, 0xf3, 0x42, 0x19, 0x57, 0xa6, 0x0e, 0x24, 0x10, 0xc7, - 0x8d, 0x39, 0x02, 0x80, 0x14, 0x01, 0x29, 0xca, 0x38, 0x30, 0xd7, 0x96, 0x12, 0xc6, 0x79, 0x59, - 0xb6, 0x35, 0xa5, 0x5e, 0xc3, 0x56, 0x5a, 0x1c, 0x02, 0xef, 0x75, 0x21, 0x4d, 0xed, 0x19, 0x9d, - 0xb4, 0x19, 0x9c, 0x40, 0x9a, 0x40, 0x9a, 0x40, 0x9a, 0x40, 0x9a, 0x40, 0x9a, 0x40, 0x9a, 0x40, - 0x9a, 0x40, 0x9a, 0x40, 0x9a, 0xd4, 0x48, 0x13, 0xa1, 0x27, 0x8d, 0xa1, 0x27, 0x0d, 0x29, 0x11, - 0x5b, 0x44, 0x9d, 0xf6, 0x18, 0xb7, 0x50, 0xd7, 0xd6, 0x99, 0xde, 0xb2, 0xc2, 0x56, 0xa1, 0x3a, - 0x8d, 0x51, 0xe9, 0xcd, 0xa4, 0x66, 0xfd, 0x3d, 0xdf, 0x60, 0xbf, 0x0b, 0xbe, 0x70, 0x1f, 0x9f, - 0x1e, 0x82, 0x2d, 0xda, 0x7e, 0x4d, 0x31, 0xe3, 0xeb, 0xa5, 0x36, 0x94, 0xbb, 0xed, 0x62, 0x91, - 0x5b, 0x13, 0x42, 0x1d, 0x04, 0x50, 0x1f, 0xe1, 0xd3, 0x45, 0xf0, 0xb4, 0x13, 0x3a, 0xed, 0x04, - 0x4e, 0x2b, 0x61, 0xe3, 0xd5, 0x94, 0xdb, 0xc6, 0x0e, 0xa7, 0x67, 0x46, 0x5f, 0x56, 0xc0, 0xf4, - 0x8a, 0x29, 0x4b, 0x0c, 0x28, 0x21, 0x31, 0x20, 0x05, 0x5e, 0x18, 0x24, 0x06, 0xf0, 0x1d, 0xee, - 0xe9, 0x85, 0xec, 0x81, 0x7a, 0x12, 0xbe, 0x72, 0x1d, 0xbd, 0xe9, 0x81, 0x53, 0x31, 0x5e, 0xb8, - 0xbe, 0x5e, 0x77, 0x6d, 0x19, 0xee, 0x5a, 0x1d, 0x57, 0x86, 0xbb, 0x96, 0x53, 0x71, 0xe8, 0x25, - 0xf5, 0xba, 0xdc, 0xb5, 0xba, 0x5b, 0xf7, 0x16, 0x9c, 0xc9, 0x99, 0x22, 0x6a, 0x31, 0x1e, 0x5f, - 0x3f, 0x63, 0x3d, 0xc6, 0x4b, 0xe8, 0x31, 0x4e, 0xaf, 0x78, 0xd8, 0x14, 0x10, 0x9b, 0x22, 0x62, - 0x51, 0x48, 0x44, 0xbe, 0xcb, 0xac, 0xf4, 0x18, 0x9f, 0x47, 0x2a, 0xd6, 0xd7, 0xa8, 0x76, 0x86, - 0xb8, 0x6c, 0x78, 0xc5, 0x9a, 0x28, 0x1e, 0xe6, 0x56, 0x74, 0x7c, 0x0a, 0x8f, 0x4b, 0xf1, 0xb1, - 0x2b, 0x40, 0x76, 0x45, 0xc8, 0xaa, 0x10, 0x69, 0x14, 0x23, 0x91, 0x82, 0x9c, 0x3e, 0x19, 0xbe, - 0xe2, 0xe1, 0x30, 0x18, 0xa8, 0xc8, 0xed, 0x6d, 0x4b, 0x19, 0x89, 0x1b, 0x0a, 0x88, 0x29, 0x77, - 0xb7, 0x20, 0x7c, 0xfb, 0xc1, 0x63, 0x68, 0xc3, 0x1d, 0xaf, 0x43, 0x35, 0xd4, 0x5d, 0x74, 0xed, - 0x81, 0x17, 0x1d, 0xdc, 0xae, 0xed, 0x49, 0xb4, 0xf9, 0x86, 0xe5, 0x83, 0xe5, 0x83, 0xe5, 0xcb, - 0x94, 0xe5, 0x7b, 0x08, 0x02, 0x4f, 0xd8, 0x3e, 0x87, 0xc1, 0x2b, 0xa3, 0x63, 0x86, 0x8e, 0x43, - 0x93, 0x9f, 0x8e, 0x19, 0xd3, 0x90, 0xf6, 0xf4, 0x55, 0x71, 0x9e, 0x4e, 0x16, 0x63, 0x17, 0x19, - 0xc6, 0x19, 0x6e, 0x7b, 0xcc, 0x31, 0xce, 0x10, 0xae, 0xc6, 0x94, 0xe0, 0x0d, 0xb8, 0x1a, 0xf9, - 0x8c, 0x05, 0x5c, 0x8d, 0x20, 0x5c, 0x20, 0x5c, 0x20, 0x5c, 0x20, 0x5c, 0xa9, 0x21, 0x5c, 0x70, - 0x35, 0xb2, 0xee, 0x2e, 0x5c, 0x8d, 0xb0, 0x7c, 0xb0, 0x7c, 0xb0, 0x7c, 0xb0, 0x7c, 0xc6, 0x2d, - 0x1f, 0x5c, 0x8d, 0x19, 0x63, 0x8f, 0x3b, 0xe5, 0x6a, 0x44, 0x53, 0x5e, 0xd3, 0x72, 0x91, 0x2a, - 0x79, 0x48, 0x47, 0x13, 0xd6, 0xab, 0xf8, 0xe6, 0xda, 0xa7, 0xf3, 0x37, 0x97, 0xa3, 0x6e, 0x2b, - 0x9a, 0xb3, 0x6c, 0x69, 0xb2, 0x6b, 0x91, 0xae, 0x8f, 0x74, 0x7d, 0xa4, 0xeb, 0x6b, 0x35, 0x22, - 0xda, 0xd3, 0xf5, 0x3d, 0xfb, 0x41, 0x78, 0x96, 0xec, 0x13, 0x0d, 0xcc, 0x99, 0x1e, 0x87, 0x85, - 0x75, 0x68, 0x62, 0x6a, 0x25, 0xa4, 0xef, 0x23, 0xa6, 0x96, 0x42, 0x42, 0x8d, 0x98, 0x1a, 0x1d, - 0x61, 0xa6, 0x1f, 0x90, 0x49, 0x38, 0x18, 0x93, 0x78, 0x20, 0x26, 0xa1, 0x7b, 0x82, 0x63, 0x00, - 0x26, 0xd3, 0x54, 0x43, 0xae, 0x81, 0x97, 0x9c, 0x13, 0x0c, 0x09, 0x07, 0x5c, 0xb2, 0x0c, 0xb6, - 0xe4, 0xde, 0x7a, 0x86, 0x41, 0x96, 0xac, 0xdb, 0x9f, 0x11, 0x4f, 0x5e, 0x6b, 0x07, 0x72, 0xd4, - 0x3c, 0x19, 0xd2, 0x22, 0xeb, 0xf1, 0xf5, 0x81, 0xa8, 0x81, 0xa8, 0x81, 0xa8, 0x81, 0xa8, 0x35, - 0xca, 0xbb, 0xdb, 0xb7, 0xec, 0x4e, 0x27, 0x14, 0x52, 0x12, 0xa2, 0xea, 0xf2, 0x31, 0xc1, 0xb5, - 0xe3, 0x67, 0x93, 0x39, 0x54, 0xfd, 0xfa, 0xe4, 0xbf, 0x55, 0x09, 0x9f, 0xfd, 0xd2, 0x1e, 0x1c, - 0x11, 0xae, 0x71, 0x63, 0x2b, 0x25, 0x42, 0x9f, 0x7c, 0xea, 0x7f, 0xe1, 0x3f, 0xef, 0xde, 0xdd, - 0x97, 0xac, 0xe3, 0xd6, 0xcb, 0x7d, 0xd9, 0x3a, 0x6e, 0x8d, 0x5f, 0x96, 0xa3, 0xbf, 0xc6, 0xaf, - 0x2b, 0xf7, 0x25, 0xab, 0x3a, 0x79, 0x5d, 0xbb, 0x2f, 0x59, 0xb5, 0xd6, 0xc1, 0xdf, 0x7f, 0x7f, - 0x38, 0xf8, 0x71, 0x38, 0x5c, 0xff, 0x8b, 0xff, 0x2a, 0x64, 0x6d, 0x7a, 0xf7, 0xfb, 0x0c, 0x1f, - 0x86, 0x3a, 0x0e, 0xc3, 0x66, 0x87, 0xc1, 0xb6, 0xba, 0xa7, 0xd6, 0x6f, 0xad, 0x1f, 0xe5, 0xf7, - 0xd5, 0xe1, 0xc9, 0xc1, 0x8f, 0xc6, 0x70, 0xf1, 0xcd, 0x97, 0x55, 0x1f, 0x2b, 0xbf, 0x6f, 0x0c, - 0x4f, 0x12, 0xfe, 0xa5, 0x3e, 0x3c, 0x79, 0xe3, 0x35, 0x6a, 0xc3, 0x77, 0x4b, 0x1f, 0x1d, 0xbd, - 0x5f, 0x49, 0xfa, 0x42, 0x35, 0xe1, 0x0b, 0x87, 0x49, 0x5f, 0x38, 0x4c, 0xf8, 0x42, 0xe2, 0x2d, - 0x55, 0x12, 0xbe, 0x50, 0x1b, 0xbe, 0x2c, 0x7d, 0xfe, 0xdd, 0xea, 0x8f, 0xd6, 0x87, 0x07, 0x2f, - 0x49, 0xff, 0xd6, 0x18, 0xbe, 0x9c, 0x1c, 0x64, 0x50, 0x35, 0xec, 0x0e, 0xaf, 0x43, 0x46, 0x00, - 0x79, 0x46, 0x80, 0xce, 0xea, 0xb3, 0x34, 0x8d, 0x36, 0xb1, 0x3b, 0xff, 0xcf, 0x76, 0x84, 0xef, - 0xb8, 0x42, 0x52, 0x4d, 0x37, 0x99, 0x5d, 0x22, 0xe5, 0x21, 0xf8, 0x0a, 0x42, 0xf0, 0x19, 0xe2, - 0xe7, 0x08, 0xc1, 0xa7, 0x38, 0x04, 0x3f, 0x7f, 0xf6, 0x9f, 0xe9, 0x3c, 0x85, 0x8b, 0x0b, 0xa1, - 0xb0, 0x15, 0x2e, 0x43, 0xb8, 0x0c, 0x77, 0xc8, 0x65, 0x48, 0x56, 0xd8, 0x4a, 0x34, 0x66, 0xf8, - 0x17, 0x9a, 0x4c, 0xf3, 0xd8, 0x61, 0x26, 0x85, 0xb6, 0xac, 0xd8, 0x50, 0xd6, 0x93, 0x02, 0x85, - 0xc7, 0xae, 0xf8, 0xd8, 0x15, 0x20, 0xab, 0x22, 0xa4, 0xf3, 0x2d, 0x10, 0x3a, 0x33, 0xc9, 0x14, - 0xe4, 0x2b, 0x35, 0x27, 0x69, 0x58, 0x92, 0x78, 0x2a, 0x29, 0x1a, 0x98, 0x30, 0xab, 0x49, 0x72, - 0x1c, 0x68, 0x42, 0x6d, 0xf2, 0xab, 0x4f, 0x6e, 0x35, 0x6a, 0x4c, 0x9d, 0x1a, 0x53, 0xab, 0x46, - 0xd4, 0x2b, 0xad, 0x9a, 0x25, 0x56, 0xb7, 0x6c, 0x6a, 0x77, 0xba, 0x50, 0xcc, 0x7d, 0x15, 0x9f, - 0xf8, 0x4f, 0xdb, 0xb0, 0x4c, 0x56, 0x66, 0x12, 0x42, 0x9e, 0xfc, 0x39, 0x36, 0x2c, 0x6b, 0x52, - 0x49, 0x9b, 0x53, 0xd6, 0xa6, 0x94, 0xb6, 0x71, 0xe5, 0x6d, 0x5c, 0x89, 0x1b, 0x55, 0xe6, 0x3c, - 0x4a, 0x9d, 0x49, 0xb9, 0x4f, 0x9f, 0x24, 0x79, 0xc9, 0x7c, 0xe2, 0x79, 0x25, 0xab, 0x0c, 0xf8, - 0x95, 0xf6, 0xad, 0x33, 0x2e, 0x49, 0x5b, 0x49, 0x90, 0xf4, 0x87, 0x57, 0x1f, 0xed, 0x73, 0x55, - 0x1e, 0xa4, 0xc4, 0xac, 0x2e, 0x2d, 0xcf, 0x54, 0xa9, 0x90, 0xb8, 0x3e, 0x63, 0x0a, 0xbb, 0x61, - 0x75, 0x35, 0x2f, 0x72, 0xf6, 0xf7, 0x9d, 0x17, 0x39, 0x86, 0x0a, 0x89, 0x54, 0x8b, 0xdd, 0x5e, - 0x3e, 0x57, 0x6b, 0xed, 0xe5, 0xe3, 0xf7, 0x30, 0xa8, 0x85, 0x38, 0xea, 0x20, 0xbe, 0xf7, 0xdd, - 0x90, 0xae, 0xbf, 0xcb, 0x4f, 0x91, 0xcc, 0xd2, 0x1d, 0x80, 0x4d, 0x82, 0x4d, 0x82, 0x4d, 0x82, - 0x4d, 0x82, 0x4d, 0xb2, 0x9d, 0x57, 0xe5, 0xf6, 0x84, 0x72, 0x9d, 0xaf, 0xb2, 0x5e, 0x35, 0x40, - 0x29, 0x8f, 0x18, 0x97, 0xfc, 0xe2, 0x8f, 0xd1, 0x56, 0xc1, 0xb7, 0xfd, 0x40, 0x0a, 0x27, 0xf0, - 0x3b, 0xb2, 0x00, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x9b, 0x03, 0x91, 0x2b, 0x1f, 0x55, - 0xab, 0xf5, 0x46, 0xb5, 0x5a, 0x6a, 0x1c, 0x36, 0x4a, 0xc7, 0xb5, 0x5a, 0xb9, 0x5e, 0x06, 0xc3, - 0x05, 0xc3, 0xdd, 0x61, 0x86, 0xeb, 0x8b, 0xc7, 0x40, 0xb9, 0xb6, 0x12, 0x1d, 0x7e, 0x6e, 0x3b, - 0xb3, 0x36, 0x58, 0x2d, 0x58, 0x2d, 0x58, 0x2d, 0x58, 0x2d, 0x58, 0x2d, 0xdb, 0x79, 0x45, 0x8c, - 0x14, 0x84, 0x12, 0x84, 0x12, 0x84, 0x12, 0x84, 0x72, 0x0b, 0x91, 0x43, 0x8c, 0x14, 0x0c, 0x72, - 0xe7, 0x19, 0xe4, 0x77, 0x65, 0x45, 0x61, 0x4a, 0x13, 0x0c, 0x72, 0xba, 0x36, 0x18, 0x24, 0x18, - 0x24, 0x18, 0x24, 0x18, 0x24, 0x18, 0x24, 0xdb, 0x79, 0x45, 0x5c, 0x14, 0x34, 0x16, 0x34, 0x16, - 0x34, 0x16, 0x34, 0x36, 0xeb, 0x22, 0x87, 0xb8, 0x28, 0x58, 0x6d, 0x86, 0x58, 0x6d, 0xa6, 0x4b, - 0x5f, 0x89, 0xa7, 0x45, 0x2e, 0xad, 0x67, 0xb6, 0x37, 0xe0, 0x52, 0x9b, 0xbb, 0x85, 0x77, 0x9e, - 0x8b, 0xf3, 0x9d, 0x5d, 0x28, 0xe6, 0x4b, 0xf2, 0xc9, 0x4f, 0xb6, 0x7a, 0x5f, 0x30, 0x49, 0x62, - 0xc6, 0x24, 0x90, 0xb2, 0xa3, 0x8d, 0x86, 0x09, 0x97, 0x7f, 0x8c, 0x6e, 0xf6, 0x74, 0x72, 0xef, - 0xe3, 0xff, 0xfc, 0x63, 0x72, 0xeb, 0x3b, 0x3c, 0xbf, 0xde, 0xf5, 0x95, 0x08, 0xbb, 0xb6, 0x23, - 0xac, 0x50, 0x74, 0xe9, 0xfb, 0x51, 0xcd, 0x2f, 0x87, 0x76, 0x54, 0x2b, 0x17, 0x60, 0x6e, 0x47, - 0xe5, 0x76, 0xd1, 0x8d, 0x6a, 0x83, 0x05, 0x4d, 0x77, 0xa3, 0x72, 0xbb, 0x68, 0x46, 0x35, 0x7e, - 0x30, 0x68, 0x46, 0x95, 0x3a, 0x25, 0xb9, 0xac, 0x2c, 0x73, 0xda, 0x8c, 0x8a, 0x54, 0x79, 0x72, - 0x2b, 0x51, 0x63, 0xca, 0xd4, 0x98, 0x52, 0x35, 0xa1, 0x5c, 0xf3, 0xc1, 0xc7, 0xd9, 0x5a, 0x51, - 0x4d, 0x21, 0x23, 0x7f, 0x9c, 0xfc, 0x75, 0x69, 0x84, 0xc9, 0xb3, 0xa6, 0xa4, 0x8d, 0x29, 0x6b, - 0x53, 0x4a, 0xdb, 0xb8, 0xf2, 0x36, 0xae, 0xc4, 0x4d, 0x2a, 0x73, 0x1e, 0xa5, 0xce, 0xa4, 0xdc, - 0xa7, 0x0f, 0xd2, 0x5c, 0x90, 0xdc, 0x13, 0x76, 0x97, 0xce, 0x45, 0xf0, 0x53, 0x44, 0xdc, 0x60, - 0x5c, 0xf3, 0x66, 0xea, 0xdd, 0x1b, 0x89, 0xe9, 0xc9, 0xd4, 0xe0, 0xc8, 0xc5, 0x37, 0xe2, 0xff, - 0x8e, 0x7c, 0x60, 0xc8, 0xb2, 0x7b, 0x3b, 0x73, 0x1b, 0x3c, 0x18, 0xc4, 0x0f, 0x73, 0xab, 0x03, - 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x18, 0x81, 0x10, 0xf7, 0xaf, - 0x10, 0xe2, 0xbf, 0x9c, 0x41, 0x18, 0x0a, 0x5f, 0xbd, 0x3b, 0x28, 0x7e, 0xf8, 0x50, 0x9c, 0x7e, - 0xa2, 0x15, 0x7f, 0x65, 0xd6, 0x6e, 0xc9, 0x15, 0xef, 0x4d, 0xaf, 0xdc, 0x11, 0xdf, 0x0b, 0xc8, - 0x8e, 0x48, 0x81, 0x37, 0x06, 0xd9, 0x11, 0xf3, 0xb1, 0xe9, 0xb9, 0x38, 0x23, 0x92, 0x23, 0xd8, - 0x04, 0x12, 0xc9, 0x11, 0xab, 0x04, 0x30, 0x5b, 0xb9, 0x11, 0xe7, 0x93, 0x5b, 0xbf, 0x15, 0xdd, - 0x5d, 0x4e, 0x8d, 0xf0, 0x02, 0xc7, 0xf6, 0xa6, 0xf3, 0xb4, 0xc9, 0x53, 0x23, 0xe6, 0x97, 0xa3, - 0x4d, 0x8d, 0x28, 0x51, 0xa7, 0x46, 0x54, 0x30, 0xa9, 0x2b, 0x3d, 0xf4, 0x0e, 0x93, 0xba, 0x76, - 0xd8, 0x20, 0x93, 0xf3, 0x2f, 0x46, 0xbe, 0xc5, 0xc1, 0xaf, 0xa6, 0x7c, 0xea, 0xc3, 0x87, 0x31, - 0x6e, 0x2c, 0xce, 0x2b, 0xe6, 0x1d, 0x36, 0x88, 0xa1, 0xe8, 0x05, 0x4a, 0xf0, 0x59, 0xc4, 0x85, - 0xf5, 0x60, 0x12, 0x61, 0x12, 0x61, 0x12, 0x61, 0x12, 0x61, 0x12, 0x8d, 0x9b, 0xc4, 0x05, 0xcd, - 0xbc, 0xc3, 0x36, 0x91, 0x36, 0x35, 0x94, 0x25, 0x25, 0x14, 0xf9, 0xf2, 0xb0, 0x80, 0xb0, 0x80, - 0x3b, 0x65, 0x01, 0xc9, 0x33, 0xe6, 0xa7, 0x8e, 0x50, 0x4b, 0x71, 0xc4, 0xff, 0x16, 0xa7, 0x87, - 0x4e, 0xd6, 0xe5, 0xc9, 0xa1, 0x2f, 0x71, 0xe5, 0xd0, 0x97, 0x30, 0xd0, 0x39, 0xfd, 0x8a, 0xd5, - 0x98, 0x82, 0x35, 0xa6, 0x68, 0x8d, 0x28, 0x5c, 0x5a, 0xc5, 0x4b, 0xac, 0x80, 0xf9, 0xa8, 0xc8, - 0xd2, 0x79, 0xeb, 0xf5, 0x3d, 0x39, 0xda, 0x19, 0x8b, 0x55, 0x55, 0xce, 0xe1, 0xcc, 0x2a, 0xc3, - 0x5a, 0x4d, 0x7f, 0xd0, 0x1b, 0x3d, 0xd8, 0x61, 0x56, 0xa3, 0xbe, 0x84, 0x08, 0x73, 0x1c, 0xab, - 0xec, 0x84, 0x41, 0xbf, 0xcf, 0xd0, 0xbf, 0x7e, 0x61, 0x26, 0xdb, 0x64, 0x59, 0x98, 0x66, 0x98, - 0x66, 0x98, 0x66, 0x98, 0x66, 0x98, 0xe6, 0xe9, 0x79, 0x73, 0x82, 0x81, 0xaf, 0x44, 0xc8, 0xd2, - 0x16, 0x90, 0xb1, 0x1d, 0x20, 0x73, 0x1b, 0x3e, 0xc6, 0x4c, 0x53, 0x13, 0x6d, 0xf7, 0x0c, 0xf5, - 0x3e, 0x33, 0xd5, 0x66, 0xcf, 0x64, 0x63, 0x33, 0xc6, 0xb6, 0x7a, 0x46, 0xda, 0xe9, 0x99, 0x16, - 0x25, 0xf3, 0xed, 0xf3, 0x8c, 0x4a, 0x57, 0x4e, 0x12, 0xa7, 0x5b, 0x60, 0x58, 0x09, 0x0c, 0x2b, - 0x14, 0x8e, 0x70, 0xbf, 0xf1, 0x53, 0xac, 0xe9, 0xba, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, - 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, 0x58, 0xe0, - 0x58, 0xb9, 0xe0, 0x58, 0x9e, 0x2d, 0x95, 0xe5, 0x78, 0xc2, 0x0e, 0xf9, 0xf8, 0xd5, 0xcc, 0x9a, - 0xe0, 0x56, 0xe0, 0x56, 0xe0, 0x56, 0xe0, 0x56, 0xe0, 0x56, 0x86, 0x06, 0x5b, 0x71, 0xb2, 0x2b, - 0x43, 0x83, 0xac, 0xc0, 0xea, 0xc0, 0xea, 0xc0, 0xea, 0xc0, 0xea, 0xc0, 0xea, 0xc0, 0xea, 0x76, - 0x85, 0xd5, 0xb1, 0x34, 0xdd, 0x58, 0x26, 0x76, 0x0c, 0xcd, 0x37, 0xc0, 0xed, 0xc0, 0xed, 0xc0, - 0xed, 0xc0, 0xed, 0x32, 0xc9, 0xed, 0xdc, 0x3e, 0x93, 0x76, 0x9c, 0xd5, 0x90, 0xe5, 0x63, 0x86, - 0xb5, 0xe2, 0x67, 0x99, 0x3b, 0x8a, 0xf5, 0xba, 0x73, 0xdf, 0xaa, 0x8c, 0x7b, 0xb7, 0xb4, 0x87, - 0x47, 0xbc, 0xbd, 0x30, 0x95, 0x08, 0x7d, 0xf6, 0x91, 0xcf, 0x85, 0xff, 0xbc, 0x7b, 0x77, 0x5f, - 0xb2, 0x8e, 0x5b, 0x2f, 0xf7, 0x65, 0xeb, 0xb8, 0x35, 0x7e, 0x59, 0x8e, 0xfe, 0x1a, 0xbf, 0xae, - 0xdc, 0x97, 0xac, 0xea, 0xe4, 0x75, 0xed, 0xbe, 0x64, 0xd5, 0x5a, 0x07, 0x7f, 0xff, 0xfd, 0xe1, - 0xe0, 0xc7, 0xe1, 0x70, 0xfd, 0x2f, 0xfe, 0xab, 0x90, 0xb7, 0xd9, 0xa7, 0xef, 0x73, 0x7c, 0xf8, - 0xea, 0x38, 0x7c, 0x3c, 0x87, 0xcf, 0xb6, 0xba, 0xa7, 0xd6, 0x6f, 0xad, 0x1f, 0xe5, 0xf7, 0xd5, - 0xe1, 0xc9, 0xc1, 0x8f, 0xc6, 0x70, 0xf1, 0xcd, 0x97, 0x55, 0x1f, 0x2b, 0xbf, 0x6f, 0x0c, 0x4f, - 0x12, 0xfe, 0xa5, 0x3e, 0x3c, 0x79, 0xe3, 0x35, 0x6a, 0xc3, 0x77, 0x4b, 0x1f, 0x1d, 0xbd, 0x5f, - 0x49, 0xfa, 0x42, 0x35, 0xe1, 0x0b, 0x87, 0x49, 0x5f, 0x38, 0x4c, 0xf8, 0x42, 0xe2, 0x2d, 0x55, - 0x12, 0xbe, 0x50, 0x1b, 0xbe, 0x2c, 0x7d, 0xfe, 0xdd, 0xea, 0x8f, 0xd6, 0x87, 0x07, 0x2f, 0x49, - 0xff, 0xd6, 0x18, 0xbe, 0x9c, 0x1c, 0xe4, 0x50, 0x15, 0x81, 0xf5, 0x1b, 0x60, 0xfd, 0x4c, 0x9d, - 0xc5, 0x96, 0xd4, 0x33, 0x4b, 0x87, 0x31, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, - 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0xf0, 0x7e, 0x1c, 0x3e, 0xf0, 0x7e, 0xf0, - 0x7e, 0xf0, 0xfe, 0x2c, 0xf0, 0x7e, 0xcc, 0x9f, 0x59, 0xb1, 0x4e, 0xda, 0xe7, 0xcf, 0x10, 0x8e, - 0x3c, 0x22, 0x68, 0xcc, 0xbb, 0x97, 0x62, 0xd1, 0x1a, 0x11, 0xf3, 0x65, 0x5f, 0xd1, 0x3e, 0x65, - 0xc6, 0x48, 0xe1, 0xc2, 0x95, 0xea, 0x54, 0x29, 0x9a, 0xca, 0x86, 0xc2, 0xa5, 0xeb, 0x37, 0x3d, - 0x31, 0x62, 0xde, 0xb2, 0x70, 0xb2, 0xef, 0x0f, 0x3c, 0x8f, 0xa0, 0x31, 0xf2, 0xa5, 0xfd, 0x9d, - 0x7e, 0x91, 0xeb, 0xb0, 0x23, 0x42, 0xd1, 0xf9, 0xf8, 0x1c, 0x2f, 0x91, 0x6a, 0x39, 0x22, 0x56, - 0x4d, 0x69, 0x57, 0x49, 0x05, 0x92, 0xee, 0xdb, 0x9a, 0x87, 0x5f, 0xe9, 0xd5, 0x98, 0xfa, 0xf4, - 0x9a, 0x9e, 0x2b, 0x69, 0x92, 0x68, 0x2a, 0x49, 0x4e, 0x9b, 0x04, 0xeb, 0x11, 0x86, 0xed, 0xb7, - 0x4e, 0xc3, 0xb6, 0x15, 0x3c, 0xfb, 0x41, 0x78, 0x96, 0xec, 0xdb, 0x8e, 0xb0, 0x5c, 0x7d, 0x1d, - 0x49, 0x66, 0x2a, 0xe3, 0xe6, 0xae, 0xaf, 0x49, 0xd0, 0xf4, 0x46, 0x4c, 0xb4, 0x47, 0x46, 0x28, - 0x22, 0x20, 0x74, 0x91, 0x0e, 0xaa, 0x88, 0x06, 0x79, 0xe4, 0x82, 0x3c, 0x42, 0x41, 0x1a, 0x89, - 0x48, 0x97, 0xea, 0xd6, 0x1e, 0x41, 0x20, 0x9c, 0x75, 0x42, 0x31, 0xdb, 0x64, 0x76, 0x96, 0xc9, - 0xd8, 0xb6, 0x14, 0x17, 0x54, 0x57, 0x9e, 0x94, 0xbe, 0x0c, 0x69, 0x94, 0xfd, 0xf8, 0xba, 0x50, - 0xf2, 0x50, 0xf2, 0x50, 0xf2, 0x50, 0xf2, 0x99, 0x50, 0xf2, 0x63, 0x95, 0x95, 0x23, 0xe5, 0xae, - 0x77, 0xf2, 0x14, 0xc9, 0xa4, 0x29, 0xcd, 0x93, 0xa5, 0xb4, 0xcf, 0x52, 0x84, 0x6a, 0x87, 0x6a, - 0xcf, 0x98, 0x6a, 0xd7, 0x3d, 0xb9, 0x89, 0xca, 0x31, 0xc0, 0xe3, 0x20, 0x20, 0xc2, 0x90, 0x64, - 0x58, 0x92, 0x52, 0xf1, 0xd0, 0x2b, 0x20, 0x6a, 0x45, 0xc4, 0xa6, 0x90, 0xd8, 0x14, 0x13, 0x8b, - 0x82, 0xd2, 0xab, 0xa8, 0x34, 0x2b, 0x2c, 0x3a, 0x4c, 0xba, 0x24, 0xef, 0x03, 0xd7, 0x57, 0xe5, - 0x3a, 0x85, 0xbc, 0xc7, 0xda, 0xa5, 0x4e, 0x70, 0x69, 0xda, 0x0e, 0x2f, 0x84, 0x01, 0x70, 0x8e, - 0x0e, 0x2e, 0x5c, 0x19, 0xf3, 0x4c, 0x1d, 0x5a, 0x38, 0x7b, 0x66, 0x50, 0x56, 0x6b, 0x70, 0x74, - 0x5c, 0xe1, 0xde, 0xfa, 0x7a, 0xad, 0x76, 0x58, 0xcb, 0xd1, 0xf6, 0x67, 0x24, 0xf3, 0xa3, 0x95, - 0xd6, 0x78, 0xab, 0x46, 0xda, 0xa6, 0xd9, 0x0b, 0xbb, 0x8c, 0xac, 0x75, 0x7a, 0x63, 0x81, 0xa8, - 0x81, 0xa8, 0x81, 0xa8, 0x81, 0xa8, 0xe9, 0x8b, 0x7f, 0x28, 0x8b, 0x7d, 0x68, 0x8b, 0x7b, 0x18, - 0xc6, 0xcc, 0x33, 0x15, 0xef, 0x70, 0xd4, 0x0b, 0xb0, 0xd5, 0x07, 0xe4, 0xa6, 0x18, 0xa7, 0x95, - 0xa5, 0x8c, 0x6b, 0x9e, 0xc3, 0x50, 0xc7, 0x61, 0xd8, 0xec, 0x30, 0xa0, 0x38, 0x26, 0x57, 0xc5, - 0x31, 0x2d, 0xf0, 0xba, 0x14, 0x5c, 0x09, 0x79, 0xb4, 0x3f, 0xcb, 0xa3, 0xd5, 0x58, 0x7a, 0xa2, - 0x21, 0xd2, 0xbe, 0x67, 0x70, 0xa3, 0x27, 0xa5, 0x23, 0x63, 0x86, 0xbe, 0xaf, 0x35, 0x04, 0xa6, - 0xb7, 0x46, 0x84, 0xa4, 0x26, 0x84, 0xa4, 0x06, 0x44, 0x6f, 0xcd, 0xc7, 0xb6, 0x1b, 0xac, 0xf9, - 0x04, 0x9b, 0x3d, 0xb9, 0x05, 0x2d, 0x59, 0x29, 0xdb, 0x56, 0x64, 0x6c, 0xa7, 0x39, 0x36, 0x3f, - 0xef, 0x9b, 0x7d, 0x73, 0x43, 0x01, 0xd2, 0x25, 0x38, 0x46, 0x04, 0x66, 0xb3, 0x1d, 0x5a, 0xff, - 0xf9, 0x6e, 0xf0, 0x6c, 0x0b, 0xca, 0x0e, 0x1f, 0x85, 0xda, 0x62, 0xe6, 0xea, 0xeb, 0x34, 0x8b, - 0xc9, 0x95, 0x36, 0xdc, 0xe1, 0xed, 0x72, 0x9f, 0xb6, 0x76, 0x94, 0xea, 0x70, 0x88, 0xea, 0x73, - 0x7c, 0xea, 0x72, 0x70, 0x6a, 0x77, 0x64, 0x6a, 0x77, 0x58, 0x6a, 0x75, 0x4c, 0xf2, 0xea, 0xa4, - 0x6d, 0x73, 0x8b, 0x0a, 0x31, 0x47, 0xb7, 0xba, 0x76, 0xcf, 0xf5, 0x5c, 0xb1, 0x7d, 0x23, 0xb7, - 0xa9, 0x00, 0x2e, 0x5d, 0x79, 0x5b, 0x60, 0xa6, 0x25, 0x31, 0x51, 0x5b, 0x34, 0x43, 0x67, 0xf4, - 0x42, 0x7f, 0xb4, 0x42, 0x77, 0x74, 0x82, 0x2c, 0x1a, 0x41, 0x16, 0x7d, 0x20, 0x89, 0x36, 0x98, - 0xa5, 0x26, 0xba, 0x12, 0x09, 0xe7, 0x8f, 0xe6, 0xb3, 0xfe, 0x84, 0xe4, 0x85, 0xeb, 0xa7, 0x3c, - 0x33, 0x19, 0x45, 0x27, 0x5a, 0x3d, 0xb2, 0xc8, 0x4c, 0xce, 0x8c, 0x33, 0x4b, 0x7b, 0x66, 0xb2, - 0xdd, 0x75, 0xad, 0x98, 0x48, 0x12, 0x65, 0x4e, 0x4c, 0x57, 0x40, 0xee, 0x04, 0x72, 0x27, 0x8c, - 0x29, 0x21, 0x36, 0x65, 0xc4, 0xa2, 0x94, 0xf4, 0x2a, 0x27, 0xcd, 0x4a, 0x6a, 0xfa, 0x04, 0xe8, - 0x73, 0x27, 0xf4, 0x57, 0xca, 0x2d, 0x61, 0x97, 0x06, 0xc1, 0xb5, 0x97, 0x2b, 0xe7, 0xa6, 0x4a, - 0x72, 0x07, 0x52, 0xf5, 0x9c, 0x89, 0x86, 0x25, 0x32, 0x38, 0xf1, 0xf5, 0x69, 0xcc, 0x4d, 0x19, - 0xe6, 0x06, 0xe6, 0x06, 0xe6, 0x26, 0x8d, 0xe6, 0x46, 0x37, 0x36, 0xa6, 0xc7, 0xc8, 0x5c, 0x58, - 0x99, 0x18, 0x33, 0x93, 0x2b, 0x33, 0x0e, 0xa5, 0xc6, 0xa7, 0xdc, 0xb8, 0x94, 0x1c, 0xbb, 0xb2, - 0x63, 0x57, 0x7a, 0xac, 0xca, 0x8f, 0x46, 0x09, 0x12, 0x29, 0x43, 0x7a, 0x0c, 0xbe, 0x74, 0x5e, - 0x7a, 0x7d, 0x4f, 0x8e, 0x9e, 0xbc, 0x65, 0x77, 0x5d, 0x8e, 0x04, 0xc2, 0x2a, 0xe1, 0x1a, 0x4d, - 0x7f, 0xd0, 0x1b, 0x3d, 0xb5, 0x21, 0x7a, 0xbb, 0xea, 0x38, 0x9d, 0xf9, 0xe9, 0xc9, 0x39, 0x89, - 0x57, 0x17, 0x17, 0x63, 0x65, 0xf3, 0x6f, 0x3c, 0xc7, 0xbc, 0x6e, 0x17, 0xe8, 0x9c, 0xde, 0x16, - 0x29, 0x4b, 0x6a, 0x45, 0x67, 0xab, 0x14, 0x36, 0x32, 0x57, 0x01, 0x99, 0x03, 0x99, 0x03, 0x99, - 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, 0x03, 0x99, - 0xcb, 0x2a, 0x99, 0x23, 0x98, 0xf3, 0x92, 0x4e, 0x2e, 0x37, 0x7e, 0x22, 0x92, 0x8e, 0xcd, 0x4d, - 0x16, 0x40, 0x70, 0x0e, 0x7c, 0x0e, 0x7c, 0x0e, 0x7c, 0x4e, 0x97, 0xca, 0xa2, 0x67, 0x73, 0xf1, - 0x3a, 0xb4, 0x5c, 0xae, 0x0c, 0x2e, 0x07, 0x2e, 0x07, 0x2e, 0xb7, 0x0b, 0x5c, 0x8e, 0x4a, 0x21, - 0x4e, 0x17, 0x20, 0x4a, 0xb3, 0x4a, 0x3c, 0x96, 0x24, 0x69, 0x57, 0xcc, 0x8a, 0x92, 0x4d, 0x61, - 0x72, 0x2a, 0x4e, 0x7e, 0x05, 0xca, 0xad, 0x48, 0x8d, 0x29, 0x54, 0x63, 0x8a, 0xd5, 0x88, 0x82, - 0xa5, 0x55, 0xb4, 0xc4, 0x0a, 0x97, 0x4d, 0xf1, 0x4e, 0x17, 0x12, 0xbe, 0xfd, 0xe0, 0x89, 0x0e, - 0x9f, 0xf4, 0x4f, 0xce, 0xf7, 0x64, 0x61, 0x26, 0x11, 0x3c, 0x13, 0x5d, 0x7b, 0xe0, 0x45, 0x12, - 0xd8, 0xb5, 0x3d, 0x29, 0xb8, 0xd6, 0xe5, 0x69, 0x5e, 0xcb, 0x6e, 0x12, 0x4c, 0x98, 0x06, 0x73, - 0x26, 0xc2, 0x94, 0xa9, 0x30, 0x6e, 0x32, 0x8c, 0x9b, 0x0e, 0xa3, 0x26, 0x84, 0xc7, 0x94, 0x30, - 0x99, 0x94, 0xe9, 0x93, 0x24, 0x8f, 0xcf, 0x24, 0x9e, 0xd7, 0x87, 0x20, 0xf0, 0x84, 0xed, 0x73, - 0x1e, 0xd8, 0x09, 0x12, 0x2f, 0xef, 0xe5, 0x43, 0x50, 0x18, 0x84, 0xa4, 0x30, 0x9e, 0x7e, 0xfb, - 0x14, 0x78, 0x1d, 0xe5, 0xf6, 0x04, 0x3f, 0x32, 0x58, 0x58, 0x1f, 0x86, 0x1a, 0x86, 0x1a, 0x86, - 0x1a, 0x86, 0x1a, 0x86, 0x9a, 0xed, 0xbc, 0x92, 0xcd, 0xcf, 0xf9, 0x95, 0xf6, 0xad, 0x33, 0x2e, - 0x49, 0x3b, 0x6f, 0x27, 0xe9, 0x0f, 0xaf, 0x3e, 0xda, 0xe7, 0x9a, 0xcf, 0x93, 0x12, 0xb3, 0xba, - 0xb4, 0x3c, 0xd3, 0x3c, 0x9f, 0xc4, 0xf5, 0x19, 0x07, 0xbd, 0x18, 0x56, 0x57, 0xf3, 0x22, 0x67, - 0x7f, 0xdf, 0x79, 0x91, 0x63, 0x98, 0x23, 0x94, 0x6a, 0xb1, 0xdb, 0xcb, 0xe7, 0x6a, 0x2d, 0x30, - 0xc9, 0x35, 0x99, 0xa4, 0xeb, 0x2b, 0x11, 0x7e, 0xb3, 0x3d, 0x53, 0x4c, 0x72, 0xba, 0x3e, 0x98, - 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, - 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x24, 0x98, 0x64, 0xea, 0x99, 0xa4, 0x17, 0x38, 0xb6, 0x37, - 0x9d, 0xfc, 0xc6, 0x4e, 0x24, 0xe7, 0x97, 0x07, 0x8f, 0x04, 0x8f, 0x04, 0x8f, 0x04, 0x8f, 0x04, - 0x8f, 0x64, 0x3b, 0xaf, 0xa4, 0xf3, 0x87, 0x7f, 0xa5, 0x81, 0x29, 0xe6, 0x12, 0xff, 0xea, 0x19, - 0xe7, 0x9e, 0x4b, 0x32, 0xcf, 0x37, 0xfe, 0xe5, 0x1e, 0x1f, 0x19, 0x58, 0x9b, 0x6b, 0x04, 0x6c, - 0xe2, 0x0d, 0xe4, 0x65, 0x4e, 0xb2, 0x59, 0x88, 0x6d, 0x88, 0x1f, 0x9b, 0x3d, 0xb4, 0x75, 0x1c, - 0x5a, 0xb3, 0x87, 0x16, 0xf3, 0x9c, 0x73, 0x35, 0xcf, 0x39, 0x25, 0x2a, 0x0c, 0xde, 0x8f, 0x14, - 0x7a, 0x3f, 0x42, 0xd1, 0x0b, 0x94, 0x30, 0xe7, 0xfe, 0x58, 0x58, 0x1f, 0xfe, 0x0f, 0xf8, 0x3f, - 0xe0, 0xff, 0x80, 0xff, 0x03, 0xfe, 0x0f, 0xf8, 0x3f, 0xe0, 0xff, 0x80, 0xff, 0x03, 0xfe, 0x0f, - 0xf8, 0x3f, 0xe0, 0xff, 0xc0, 0xa1, 0x85, 0xff, 0x03, 0xfe, 0x0f, 0xf8, 0x3f, 0x76, 0xcd, 0xff, - 0x91, 0xe9, 0x3e, 0x3b, 0xc4, 0x8d, 0x82, 0x97, 0xd6, 0x4b, 0x63, 0xe3, 0xe0, 0xb8, 0xdd, 0x6d, - 0xfc, 0x37, 0xc9, 0x50, 0x18, 0x3e, 0xa1, 0x21, 0x14, 0x18, 0x6e, 0x37, 0x9c, 0x19, 0xf7, 0x1b, - 0x93, 0xdb, 0x0d, 0xcd, 0xeb, 0x32, 0xe9, 0x56, 0x43, 0xf3, 0x3a, 0x34, 0xaf, 0x4b, 0x8f, 0x9b, - 0x8c, 0x61, 0xc4, 0x76, 0x22, 0xf5, 0x6a, 0x30, 0xac, 0xb5, 0x3c, 0x82, 0x7b, 0xc1, 0x14, 0xc0, - 0x48, 0x2f, 0x23, 0x2c, 0x92, 0x49, 0x6f, 0x89, 0x92, 0x47, 0x31, 0xf9, 0x2d, 0x51, 0xe6, 0xb8, - 0x4c, 0x72, 0x05, 0x26, 0x19, 0x26, 0x19, 0x26, 0x39, 0x47, 0x26, 0x19, 0xfd, 0x64, 0x75, 0x3f, - 0x50, 0xf4, 0x93, 0xcd, 0xba, 0x69, 0x30, 0x67, 0x22, 0x4c, 0x99, 0x0a, 0xe3, 0x26, 0xc3, 0xb8, - 0xe9, 0x30, 0x6a, 0x42, 0x78, 0x4c, 0x09, 0x93, 0x49, 0xe1, 0x67, 0x7b, 0x4b, 0xe7, 0x15, 0xfd, - 0x64, 0xb3, 0x20, 0x24, 0xe8, 0x27, 0x0b, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0xbd, 0xb3, - 0x86, 0x1a, 0x5d, 0x80, 0xc8, 0xfe, 0xa0, 0x0b, 0x10, 0xeb, 0xf2, 0xe8, 0x02, 0x84, 0x2e, 0x40, - 0x86, 0x44, 0x0e, 0x5d, 0x80, 0x72, 0xb9, 0x1a, 0xea, 0xe0, 0xd6, 0x65, 0x92, 0xe8, 0x27, 0x0b, - 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, - 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0xf9, 0x56, 0x31, 0x44, 0x3f, 0x59, 0x3e, - 0x1e, 0x59, 0x01, 0x8f, 0x04, 0x8f, 0x04, 0x8f, 0x04, 0x8f, 0x4c, 0x11, 0x8f, 0x44, 0x3f, 0x95, - 0xbc, 0x71, 0x49, 0xf4, 0x53, 0x41, 0x3f, 0x95, 0x9c, 0x40, 0x6c, 0x43, 0xfc, 0x18, 0xfd, 0x54, - 0xd0, 0x4f, 0x05, 0xfd, 0x54, 0xd0, 0x4f, 0x05, 0xde, 0x8f, 0xbc, 0x7b, 0x3f, 0xd0, 0x4f, 0x16, - 0xfe, 0x0f, 0xf8, 0x3f, 0xe0, 0xff, 0x80, 0xff, 0x03, 0xfe, 0x0f, 0xf8, 0x3f, 0xe0, 0xff, 0x00, - 0x95, 0x82, 0xff, 0x03, 0xfe, 0x0f, 0xf8, 0x3f, 0xe0, 0xff, 0x80, 0xff, 0x03, 0xfe, 0x0f, 0xf8, - 0x3f, 0x8c, 0xfa, 0x3f, 0xd0, 0x4f, 0x76, 0x8d, 0xf5, 0x32, 0xd0, 0x4f, 0x76, 0xdc, 0x21, 0x2d, - 0xab, 0x9d, 0xea, 0xf6, 0x32, 0x24, 0x85, 0x85, 0x3f, 0xc5, 0x33, 0x9b, 0x7b, 0xad, 0x70, 0xe1, - 0x4a, 0x75, 0xaa, 0x14, 0x6d, 0x5f, 0xa9, 0xc2, 0xa5, 0xeb, 0x37, 0x3d, 0xd1, 0x13, 0x7e, 0x94, - 0x2c, 0xe8, 0x0f, 0x3c, 0x8f, 0xb0, 0x77, 0xe0, 0xa5, 0xfd, 0x9d, 0x6f, 0xb1, 0xeb, 0xb0, 0x23, - 0x42, 0xd1, 0xf9, 0xf8, 0x1c, 0x2f, 0x95, 0x29, 0x49, 0x63, 0xd2, 0x73, 0x19, 0xd0, 0x6f, 0x05, - 0xd2, 0x5e, 0x96, 0xe1, 0xc0, 0x51, 0x7e, 0x4c, 0x12, 0xae, 0xc6, 0x3f, 0xe7, 0x3c, 0xfe, 0x35, - 0xed, 0xcb, 0xbe, 0x27, 0xdb, 0x9f, 0x27, 0xbf, 0xe6, 0x66, 0xf2, 0x63, 0xda, 0x17, 0x9d, 0x7e, - 0xfb, 0x2e, 0xfe, 0x31, 0xed, 0xd3, 0xf1, 0xbd, 0xff, 0x16, 0xdd, 0x7a, 0xfc, 0x36, 0x8d, 0x32, - 0xd6, 0xaf, 0x2a, 0xf5, 0x5e, 0x51, 0xf3, 0x51, 0xa0, 0x3e, 0x02, 0x69, 0x16, 0x7d, 0xbd, 0x02, - 0xa4, 0x6f, 0x9b, 0xf5, 0x5c, 0x49, 0x93, 0xa0, 0x4c, 0xac, 0xb1, 0xdd, 0x75, 0xad, 0xe8, 0x08, - 0x6b, 0xba, 0x2c, 0x89, 0xdd, 0x25, 0xb5, 0xb3, 0xa4, 0x76, 0x95, 0xc6, 0x8e, 0xea, 0x92, 0x01, - 0x22, 0x25, 0x91, 0x46, 0xe5, 0xa0, 0xd1, 0x10, 0x6a, 0x37, 0x7c, 0x7a, 0x14, 0xd6, 0xf6, 0xea, - 0x65, 0xbb, 0x2b, 0x6c, 0x29, 0x94, 0xba, 0x85, 0x31, 0x15, 0x42, 0xb8, 0xdd, 0xce, 0x6e, 0xbe, - 0x1f, 0x5b, 0xec, 0x45, 0xc1, 0x99, 0x64, 0x06, 0x6c, 0xb7, 0x07, 0x53, 0xef, 0x71, 0x7c, 0xbd, - 0x2d, 0xa5, 0x43, 0x4f, 0x93, 0x71, 0x6d, 0xed, 0x03, 0x74, 0xa6, 0x33, 0xe8, 0x4f, 0x53, 0xd0, - 0x9d, 0x7e, 0x40, 0x96, 0x56, 0x40, 0x96, 0x2e, 0x40, 0x92, 0x06, 0x60, 0x56, 0x3f, 0xea, 0x6a, - 0x92, 0x1d, 0xf7, 0x09, 0xb1, 0x1d, 0x47, 0xf4, 0x95, 0x3e, 0x11, 0x99, 0xef, 0x42, 0x12, 0x5f, - 0x5d, 0x17, 0x56, 0xd5, 0x9a, 0x1b, 0xa5, 0xbd, 0x87, 0x08, 0x45, 0x6e, 0x13, 0x5d, 0xee, 0x12, - 0x55, 0x6e, 0x12, 0x79, 0xee, 0x11, 0x79, 0x6e, 0x11, 0x69, 0xee, 0x50, 0xba, 0xd8, 0x9f, 0xf6, - 0xdc, 0x1e, 0xc2, 0xb6, 0xc7, 0x9a, 0xdb, 0x1a, 0x6b, 0xc0, 0xc9, 0xef, 0x75, 0x29, 0x61, 0xed, - 0x6d, 0x87, 0x69, 0xdb, 0x0a, 0x43, 0x11, 0x43, 0x11, 0x43, 0x11, 0x67, 0x44, 0x11, 0x6b, 0x6f, - 0x46, 0x44, 0xd0, 0x6c, 0x88, 0xa8, 0x99, 0x10, 0x81, 0xbf, 0x9b, 0xb2, 0x19, 0x10, 0x71, 0xee, - 0x3f, 0x75, 0x33, 0x1f, 0x8e, 0xae, 0x29, 0x04, 0x91, 0x42, 0xd2, 0x66, 0x3b, 0x5c, 0x5b, 0x4a, - 0xd8, 0x2c, 0x87, 0x65, 0x5b, 0x53, 0x1a, 0xaa, 0x69, 0xe5, 0x0e, 0x69, 0x6a, 0x6f, 0x4b, 0x4a, - 0xdb, 0x76, 0x14, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, 0x13, 0x48, - 0x13, 0x48, 0x13, 0x48, 0x93, 0x1a, 0x69, 0x22, 0xf6, 0xbf, 0x65, 0xec, 0x3f, 0x8e, 0x73, 0x67, - 0x30, 0xe2, 0xaf, 0x67, 0x28, 0xb9, 0xd6, 0xa1, 0xe3, 0xda, 0xe3, 0xfd, 0x15, 0xc4, 0xfb, 0x53, - 0x80, 0xeb, 0x11, 0xef, 0x7f, 0xfb, 0x2f, 0x42, 0xbc, 0x1f, 0xe4, 0x1f, 0xe4, 0x1f, 0xe4, 0x3f, - 0xe5, 0xe4, 0x1f, 0xf1, 0xfe, 0x35, 0x94, 0x30, 0xe2, 0xfd, 0x50, 0xc4, 0x50, 0xc4, 0x50, 0xc4, - 0xf0, 0xc2, 0xc2, 0x0b, 0x0b, 0x2f, 0x2c, 0xfd, 0x71, 0x9b, 0xdf, 0x52, 0x78, 0x61, 0x8d, 0x6f, - 0x2b, 0xbc, 0xb0, 0x4c, 0x48, 0x13, 0xf1, 0x7e, 0x20, 0x4d, 0x20, 0x4d, 0x20, 0x4d, 0x20, 0x4d, - 0x20, 0x4d, 0x20, 0x4d, 0x20, 0x4d, 0x20, 0x4d, 0x20, 0x4d, 0x7d, 0x57, 0x40, 0xbc, 0xbf, 0xa3, - 0xa3, 0x73, 0xdc, 0x16, 0xe1, 0xfe, 0x3d, 0xc6, 0x6d, 0xd3, 0xb5, 0x5d, 0x26, 0xb6, 0xa9, 0xb0, - 0x55, 0x5e, 0xc4, 0xb6, 0x7d, 0x3e, 0x36, 0x13, 0x8f, 0xf5, 0x37, 0x77, 0xbd, 0x6f, 0xac, 0x29, - 0x06, 0xdb, 0x6e, 0x3f, 0xe3, 0xb6, 0x6f, 0xb0, 0xdb, 0x9b, 0xef, 0xf2, 0x7a, 0x9b, 0xfb, 0xf6, - 0x2d, 0x5a, 0x63, 0x7b, 0x0a, 0xa1, 0xfc, 0xd6, 0xb7, 0x36, 0x48, 0xde, 0x79, 0x1d, 0x76, 0x12, - 0x5f, 0x60, 0x4d, 0x91, 0xd8, 0x2c, 0x3d, 0x67, 0x63, 0x5a, 0xbe, 0x0d, 0xfd, 0x9e, 0xa5, 0xd9, - 0xa3, 0x5f, 0xbb, 0x89, 0x8c, 0x6c, 0xc9, 0xa7, 0xb5, 0xf1, 0x66, 0x6d, 0xfc, 0x78, 0x91, 0x07, - 0x47, 0x0f, 0x26, 0x65, 0x6a, 0x67, 0xd3, 0x04, 0x98, 0xc2, 0xa3, 0x17, 0x3c, 0x6c, 0xe1, 0xf9, - 0x9a, 0x0a, 0x4c, 0x7c, 0x9d, 0x0d, 0x9f, 0xf0, 0x76, 0x19, 0x6c, 0x5b, 0x7b, 0xb0, 0x74, 0x78, - 0xac, 0x34, 0x1c, 0x1d, 0xdd, 0x2e, 0x29, 0xed, 0x2e, 0x28, 0xed, 0x2e, 0x27, 0x3d, 0x47, 0xcb, - 0x0c, 0xd0, 0xdb, 0x36, 0xe7, 0xac, 0xf0, 0x18, 0xda, 0x8e, 0xe8, 0x0e, 0x3c, 0x2b, 0x14, 0x52, - 0xd9, 0xa1, 0xd2, 0x97, 0x55, 0xba, 0x74, 0x65, 0x34, 0x94, 0x62, 0x38, 0xb6, 0xba, 0x8f, 0x2f, - 0xd9, 0x31, 0x26, 0x3b, 0xce, 0x34, 0xc7, 0x3a, 0x1d, 0x34, 0x5c, 0x5b, 0x8a, 0xa9, 0xa6, 0x9e, - 0x71, 0x4b, 0x02, 0xac, 0xa5, 0x77, 0x9c, 0xe6, 0x23, 0xaf, 0xfd, 0xe8, 0x53, 0xa8, 0x00, 0x42, - 0x55, 0x40, 0xa5, 0x12, 0xc8, 0x55, 0x03, 0xb9, 0x8a, 0xa0, 0x55, 0x15, 0x7a, 0x7d, 0x91, 0xba, - 0xa2, 0x4c, 0xba, 0x54, 0xc8, 0xf4, 0x82, 0xc2, 0xb7, 0x1f, 0x3c, 0x02, 0xa9, 0x9a, 0x1c, 0x84, - 0xf8, 0xfa, 0x9a, 0x77, 0xfc, 0x4c, 0x74, 0xed, 0x81, 0x17, 0x6d, 0x78, 0xd7, 0xf6, 0xa4, 0xf6, - 0xeb, 0xd3, 0x38, 0xfd, 0xb5, 0xab, 0x30, 0x4a, 0x55, 0xc6, 0xa0, 0xd2, 0xa8, 0x55, 0x1b, 0x9b, - 0x8a, 0x63, 0x53, 0x75, 0x3c, 0x2a, 0x4f, 0xaf, 0xea, 0xd3, 0xac, 0x02, 0xa7, 0x8f, 0x80, 0x6c, - 0x5e, 0x26, 0x61, 0xae, 0xfd, 0x12, 0x36, 0x2a, 0xa7, 0xb5, 0x79, 0xbe, 0x46, 0xe0, 0x12, 0x0a, - 0x27, 0xf8, 0x26, 0xc2, 0x67, 0x4b, 0x6b, 0x2a, 0xfe, 0xd2, 0x6e, 0xcd, 0x2f, 0x03, 0x83, 0x00, - 0x83, 0x00, 0x83, 0x00, 0x83, 0xa0, 0x55, 0xe2, 0x07, 0xae, 0xaf, 0x0e, 0x2b, 0x84, 0xf6, 0xa0, - 0x41, 0x70, 0x69, 0x9a, 0xcc, 0xac, 0xc9, 0x1f, 0xda, 0x69, 0x5f, 0xe4, 0x73, 0xf3, 0x88, 0xd3, - 0x7b, 0xa6, 0xcb, 0x10, 0x67, 0x6e, 0x4d, 0xd7, 0x61, 0x48, 0xf5, 0x21, 0x3a, 0xbe, 0xf3, 0x5b, - 0x4f, 0x98, 0xd1, 0x65, 0x6a, 0xeb, 0xab, 0x95, 0xe3, 0xea, 0x71, 0xbd, 0x51, 0x39, 0xae, 0xe5, - 0x48, 0x06, 0x32, 0x32, 0x3c, 0xac, 0xb5, 0x13, 0x30, 0x3b, 0x0a, 0xd4, 0x90, 0xa3, 0xec, 0x99, - 0x55, 0x00, 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x01, - 0xb2, 0x01, 0xb2, 0x01, 0xb2, 0x53, 0x08, 0xb2, 0x31, 0x04, 0x54, 0x5f, 0xd6, 0x77, 0x9c, 0xc0, - 0x5c, 0x1c, 0x27, 0x6b, 0x16, 0x17, 0xd3, 0xc4, 0xb4, 0xb4, 0x65, 0xd4, 0xb7, 0x71, 0x3a, 0x0a, - 0xbc, 0xf5, 0xb4, 0x6b, 0x5c, 0x82, 0x39, 0x3a, 0xda, 0x36, 0x2e, 0x6a, 0x59, 0xed, 0xa9, 0x36, - 0x15, 0xa4, 0xda, 0x64, 0x89, 0x11, 0x21, 0xd5, 0x06, 0xa9, 0x36, 0x48, 0xb5, 0x81, 0xd3, 0x07, - 0x4e, 0x1f, 0x38, 0x7d, 0xb2, 0xe5, 0xf4, 0x41, 0xaa, 0x8d, 0x96, 0xdf, 0x8a, 0x54, 0x1b, 0x18, - 0x04, 0x18, 0x04, 0x18, 0x84, 0xec, 0x1b, 0x04, 0x44, 0x01, 0x96, 0xfe, 0x20, 0x0a, 0xf0, 0xa6, - 0x65, 0x10, 0x05, 0x58, 0x6f, 0xeb, 0x11, 0x05, 0xc8, 0x86, 0x0c, 0x20, 0x0a, 0x90, 0x22, 0x98, - 0x8d, 0x54, 0x1b, 0x80, 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0x80, - 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0x80, 0x6c, 0xa4, 0xda, 0x70, 0xa6, 0xda, 0x68, 0xe8, 0x88, 0xaa, - 0x6f, 0xdf, 0xd0, 0xe0, 0x56, 0xff, 0x0e, 0x17, 0xb4, 0x64, 0x2f, 0x6d, 0xd2, 0x6e, 0xf3, 0x56, - 0x7e, 0xeb, 0xdf, 0x89, 0xf6, 0xef, 0xd1, 0x7d, 0xb5, 0x7f, 0x8f, 0xef, 0xeb, 0x36, 0xbe, 0xad, - 0x0c, 0xce, 0xdc, 0x8d, 0xa6, 0x68, 0x48, 0x7d, 0xed, 0xd1, 0xe2, 0xeb, 0xa1, 0x29, 0x1a, 0x23, - 0xab, 0x46, 0x53, 0x34, 0x34, 0x45, 0xfb, 0xc9, 0x85, 0xd0, 0x14, 0x2d, 0xa5, 0x8e, 0x36, 0x64, - 0x6a, 0x1a, 0x70, 0xa4, 0x21, 0x53, 0x73, 0x8b, 0x0b, 0x12, 0xcd, 0xf4, 0x5a, 0x8d, 0x22, 0x74, - 0xcf, 0xf6, 0x7a, 0x7d, 0x2c, 0xaf, 0x99, 0x9b, 0xc7, 0xa5, 0x52, 0x09, 0x21, 0x04, 0x84, 0x10, - 0x0c, 0x6a, 0x3c, 0x36, 0xcd, 0xc7, 0xa3, 0x01, 0x69, 0x7c, 0x3b, 0xd9, 0x0c, 0x21, 0x68, 0x1d, - 0x4e, 0xb6, 0xa8, 0x5f, 0xea, 0x08, 0x21, 0xbc, 0xde, 0x78, 0x1e, 0x43, 0x08, 0xe5, 0x52, 0x09, - 0x51, 0x84, 0xb7, 0xed, 0x7e, 0x0e, 0xa3, 0x08, 0xf5, 0x52, 0xbe, 0xb6, 0x1f, 0x01, 0x84, 0xb4, - 0x1c, 0x9f, 0x42, 0x28, 0xba, 0xa1, 0x90, 0x4f, 0x56, 0x28, 0x3a, 0x03, 0x47, 0x7b, 0x14, 0x60, - 0x7f, 0x3e, 0x55, 0x67, 0x71, 0x29, 0x3a, 0x2c, 0x3f, 0x42, 0x4c, 0xc0, 0xf2, 0xc0, 0xf2, 0xc0, - 0xf2, 0xc0, 0xf2, 0x7a, 0x25, 0x7e, 0x97, 0x8b, 0xb0, 0x10, 0xb8, 0x26, 0x0b, 0x6b, 0x8e, 0x63, - 0x65, 0xe8, 0x0c, 0xf1, 0xd6, 0x63, 0x88, 0xce, 0x10, 0xa9, 0xb5, 0xe0, 0x88, 0x37, 0x98, 0xb1, - 0xd0, 0x88, 0x37, 0x68, 0x39, 0x10, 0x88, 0x37, 0x80, 0xa3, 0x80, 0xa3, 0x80, 0xa3, 0x64, 0x98, - 0xa3, 0x20, 0xde, 0xb0, 0xf4, 0x07, 0xf1, 0x86, 0x37, 0x2d, 0x83, 0x78, 0xc3, 0xda, 0xbb, 0x8f, - 0x78, 0x43, 0xea, 0xb7, 0x1f, 0xf1, 0x86, 0xb4, 0x1c, 0x1f, 0xc4, 0x1b, 0x80, 0xe5, 0x81, 0xe5, - 0x81, 0xe5, 0x81, 0xe5, 0xdf, 0x2a, 0xf1, 0x88, 0x37, 0xa4, 0xc4, 0xa1, 0x95, 0xcb, 0x78, 0x03, - 0xca, 0xe3, 0xa8, 0xf6, 0xd7, 0xe8, 0xbe, 0xa6, 0xa5, 0x28, 0xee, 0x8f, 0xf1, 0xdd, 0x64, 0xb0, - 0x16, 0x4e, 0x06, 0x5d, 0x65, 0xf5, 0x43, 0x21, 0x7a, 0x7d, 0x2d, 0x22, 0xf1, 0x1a, 0xb8, 0x5a, - 0xb8, 0x30, 0xaa, 0xe3, 0x18, 0x41, 0x1f, 0xaa, 0xe3, 0x50, 0x1d, 0xf7, 0x93, 0x0b, 0xa1, 0x3a, - 0x2e, 0xa5, 0x3c, 0x10, 0xd1, 0x6a, 0x03, 0x3c, 0x0f, 0xd1, 0xea, 0x2d, 0x2e, 0x88, 0x39, 0x06, - 0x70, 0x69, 0xc1, 0xa5, 0x05, 0x97, 0x16, 0x5c, 0x5a, 0x70, 0x69, 0xd1, 0x6c, 0xd6, 0x22, 0x93, - 0x8c, 0x5a, 0xa0, 0x06, 0x03, 0x45, 0x67, 0x73, 0x92, 0x16, 0xa4, 0x33, 0x42, 0x87, 0x48, 0x90, - 0x82, 0x05, 0x82, 0x05, 0x82, 0x05, 0xd2, 0x2c, 0xf1, 0x48, 0x90, 0x5a, 0xfa, 0x83, 0x04, 0xa9, - 0x37, 0x2d, 0x83, 0x9e, 0xae, 0xeb, 0x6d, 0x3d, 0x63, 0x76, 0xd4, 0x21, 0xb6, 0xde, 0xac, 0x1d, - 0xa0, 0xbb, 0x2a, 0x5a, 0xb9, 0xbe, 0x09, 0x3a, 0xe4, 0x2a, 0x42, 0xbd, 0xc0, 0x36, 0x50, 0x1a, - 0xf7, 0x66, 0x9a, 0x86, 0xd2, 0xb8, 0xb4, 0xf2, 0x22, 0x04, 0x1b, 0xcc, 0xf0, 0x1e, 0x04, 0x1b, - 0xb6, 0x3a, 0x08, 0x08, 0x36, 0xc0, 0xd5, 0x03, 0x57, 0x0f, 0x5c, 0x3d, 0x08, 0x36, 0xac, 0xc4, - 0x46, 0x08, 0x36, 0x10, 0xec, 0x1b, 0x82, 0x0d, 0xb0, 0x40, 0xb0, 0x40, 0xb0, 0x40, 0xd9, 0xb7, - 0x40, 0x08, 0x36, 0x2c, 0xfd, 0x41, 0xb0, 0xe1, 0x4d, 0xcb, 0x20, 0xd8, 0xb0, 0xde, 0xd6, 0x23, - 0xd8, 0x90, 0xea, 0xad, 0x47, 0xb0, 0x21, 0x47, 0x4e, 0xac, 0x7c, 0x07, 0x1b, 0x50, 0x17, 0x47, - 0xb5, 0xd1, 0xe9, 0xd8, 0xe0, 0xb4, 0x14, 0xc8, 0x7d, 0x0e, 0xba, 0xea, 0xe6, 0xf5, 0xae, 0xb2, - 0x58, 0x28, 0xa7, 0x25, 0x88, 0xa5, 0x35, 0x78, 0xa5, 0xbd, 0x28, 0xae, 0x82, 0xa2, 0xb8, 0x34, - 0xf0, 0x64, 0x14, 0xc5, 0xad, 0xe3, 0xd8, 0xd2, 0x57, 0x14, 0x37, 0xf0, 0x95, 0x08, 0x25, 0x45, - 0x59, 0x5c, 0x7c, 0x65, 0xc4, 0xaa, 0x53, 0xe8, 0x56, 0x43, 0xac, 0xda, 0x8c, 0xdb, 0x2c, 0xef, - 0xb1, 0xea, 0x30, 0x0c, 0x34, 0x2a, 0x93, 0xa5, 0x83, 0x10, 0x5f, 0x9f, 0xc6, 0x93, 0x5f, 0x86, - 0x27, 0x1f, 0x9e, 0xfc, 0x34, 0xa9, 0x22, 0x1e, 0x95, 0x44, 0xe3, 0x6b, 0xd1, 0xed, 0xc9, 0xd7, - 0xad, 0xaa, 0xa6, 0x17, 0xb6, 0x07, 0xea, 0x49, 0xf8, 0xca, 0x75, 0x22, 0x16, 0x6c, 0x75, 0x6d, - 0xd7, 0xa3, 0x13, 0xcd, 0xc9, 0xe9, 0x5a, 0xb5, 0x28, 0x91, 0xec, 0xd0, 0x7a, 0xb3, 0xc9, 0x94, - 0x1c, 0x87, 0xb2, 0x63, 0x54, 0x7a, 0x5c, 0xca, 0x8f, 0x5d, 0x09, 0xb2, 0x2b, 0x43, 0x5e, 0xa5, - 0x48, 0xa3, 0x1c, 0x89, 0x94, 0xe4, 0xf4, 0xd1, 0x90, 0x85, 0x3d, 0x93, 0x58, 0x5e, 0xbd, 0x4a, - 0x79, 0x66, 0x62, 0x15, 0x76, 0x44, 0xb8, 0x04, 0x6d, 0x44, 0x74, 0xf2, 0x87, 0xf6, 0xcc, 0xef, - 0x73, 0x45, 0x48, 0x99, 0x6c, 0xcb, 0xd2, 0x72, 0x4c, 0x61, 0xb3, 0xe9, 0x7a, 0x8c, 0xe1, 0x33, - 0x62, 0x8d, 0x30, 0x2f, 0x22, 0x0c, 0x91, 0x54, 0xd3, 0x22, 0x52, 0x3e, 0xaa, 0x56, 0xeb, 0x8d, - 0x6a, 0xb5, 0xd4, 0x38, 0x6c, 0x94, 0x8e, 0x6b, 0xb5, 0x72, 0xbd, 0x5c, 0xcb, 0xb1, 0xd4, 0xec, - 0x65, 0xf3, 0xea, 0xad, 0x8c, 0x04, 0x8d, 0x09, 0x4e, 0x65, 0xe1, 0xc1, 0xee, 0x58, 0xce, 0x93, - 0x70, 0xbe, 0xca, 0x41, 0x8f, 0x9e, 0x70, 0xcc, 0xad, 0x06, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, - 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0xa6, 0x91, - 0x6b, 0xa6, 0xd1, 0xb7, 0x9d, 0xaf, 0x42, 0x59, 0xdd, 0x20, 0xec, 0xd9, 0x8a, 0x87, 0x6e, 0xcc, - 0x2f, 0x09, 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, - 0xce, 0x01, 0xce, 0x01, 0xce, 0x01, 0xce, 0xb1, 0x0b, 0x9c, 0xc3, 0x13, 0xfe, 0x63, 0x54, 0x0e, - 0xc4, 0xc7, 0x39, 0xe2, 0x25, 0xc1, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, - 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0x72, 0xcb, 0x39, 0x82, 0x81, - 0xb2, 0x82, 0xae, 0x15, 0x84, 0x1d, 0x11, 0xd2, 0xd3, 0x8d, 0xb9, 0xd5, 0xc0, 0x34, 0xc0, 0x34, - 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, 0xc0, 0x34, - 0xc0, 0x34, 0x72, 0xcb, 0x34, 0x42, 0xe1, 0x08, 0xf7, 0x9b, 0xe8, 0x58, 0xbe, 0xed, 0x7c, 0xa5, - 0xa7, 0x1a, 0xf3, 0xcb, 0x81, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, - 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0x80, 0x6b, 0xe4, 0x96, 0x6b, 0xa8, 0xd0, 0xf6, - 0x65, 0xcf, 0x55, 0x51, 0x93, 0xa8, 0x41, 0x28, 0xe8, 0xe9, 0xc6, 0xd2, 0x8a, 0x60, 0x1c, 0x60, - 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, 0x1c, 0x60, - 0x1c, 0x60, 0x1c, 0xf9, 0x67, 0x1c, 0xff, 0x3b, 0x10, 0x03, 0x61, 0x75, 0x07, 0x9e, 0xc7, 0x48, - 0x3a, 0x66, 0x16, 0x05, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, - 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0xc8, 0x2d, 0xef, 0x18, 0xf8, 0x5f, 0xfd, - 0xe0, 0x1f, 0xdf, 0x62, 0xc9, 0xa9, 0x9a, 0x5d, 0x0c, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, - 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x03, 0x3c, 0x23, 0xf7, - 0x3c, 0xc3, 0x67, 0x25, 0x1a, 0xa8, 0xdd, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x00, - 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd3, 0x48, 0x11, 0xd3, 0x48, 0xf5, - 0xf8, 0xf3, 0x53, 0xdf, 0x0f, 0x54, 0x34, 0x2c, 0x9c, 0x66, 0x0a, 0xba, 0x74, 0x9e, 0x44, 0xcf, - 0xee, 0xdb, 0x51, 0xa3, 0xde, 0x42, 0x31, 0xe8, 0x0b, 0xdf, 0x89, 0x50, 0xbf, 0xe5, 0x0b, 0xf5, - 0x4f, 0x10, 0x7e, 0xb5, 0x5c, 0x5f, 0x2a, 0xdb, 0x77, 0x44, 0x71, 0xf1, 0x0d, 0xb9, 0xf4, 0x4e, - 0xb1, 0xd7, 0xf7, 0x64, 0x51, 0xba, 0x8f, 0xbe, 0xed, 0xb9, 0xfe, 0xa3, 0xd5, 0x0f, 0x03, 0x15, - 0x38, 0x81, 0x27, 0x8b, 0x23, 0x00, 0x67, 0x29, 0x51, 0x7c, 0xf4, 0x82, 0x07, 0xdb, 0x2b, 0x4a, - 0x65, 0x2b, 0x51, 0x8c, 0xf1, 0x85, 0x2c, 0x8a, 0x30, 0x0c, 0x42, 0x49, 0x80, 0x32, 0x0a, 0x52, - 0x85, 0x03, 0x47, 0xf9, 0x31, 0xa0, 0xb9, 0x1a, 0xdf, 0xef, 0x79, 0x7c, 0xbb, 0xed, 0xcb, 0xbe, - 0x27, 0xdb, 0x9f, 0x27, 0xb7, 0x7b, 0x33, 0xb9, 0xdb, 0xf6, 0xad, 0xfc, 0xd6, 0xbf, 0x13, 0xed, - 0xdf, 0xa3, 0x9b, 0x6d, 0x7f, 0x8a, 0x6f, 0xb3, 0xdd, 0x1c, 0xdf, 0xe6, 0x5e, 0x3a, 0xa5, 0x4f, - 0xa3, 0xe4, 0x15, 0xdc, 0x28, 0x3e, 0x66, 0xf5, 0x84, 0x94, 0xf6, 0xa3, 0x90, 0xda, 0x45, 0x6f, - 0x0a, 0x31, 0x17, 0x17, 0xd2, 0x7c, 0x7a, 0x68, 0x0c, 0x14, 0x19, 0x2f, 0xa6, 0xe4, 0xc3, 0x0c, - 0x3c, 0x98, 0x9a, 0xff, 0xb2, 0xf1, 0x5e, 0x36, 0xbe, 0xcb, 0xc3, 0x73, 0xd3, 0x6d, 0xe1, 0xc8, - 0xf8, 0x2c, 0x0b, 0x8f, 0x25, 0xe4, 0xaf, 0xc4, 0xbc, 0x95, 0xd0, 0x81, 0xc0, 0xc1, 0x53, 0x99, - 0xc8, 0x07, 0x17, 0x2f, 0xe5, 0x64, 0x16, 0x84, 0x3c, 0x94, 0x85, 0x7f, 0x72, 0x6f, 0x3d, 0x3f, - 0xdf, 0x64, 0x95, 0x86, 0x8c, 0xf0, 0xb4, 0xd6, 0x6e, 0xe0, 0xee, 0x27, 0xe1, 0x79, 0x01, 0x0f, - 0xf2, 0x5e, 0x58, 0x0a, 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x1b, - 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x1b, 0xd8, 0x7b, 0xb7, 0xb0, 0x77, 0xdf, 0x56, 0x4f, 0x56, 0x14, - 0x8c, 0xe0, 0x01, 0xe0, 0xab, 0xd6, 0x03, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, - 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0xdf, 0x41, 0x14, 0xce, 0x87, 0xbf, - 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, 0x81, 0xbc, - 0x81, 0xbc, 0x81, 0xbc, 0x77, 0x19, 0x79, 0x2b, 0x61, 0x73, 0xba, 0xbf, 0xe7, 0x97, 0x03, 0x06, - 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, - 0x07, 0x06, 0xdf, 0x2d, 0x0c, 0x1e, 0x0a, 0x29, 0xc2, 0x6f, 0x51, 0xc5, 0x2f, 0x67, 0x2a, 0xca, - 0x4f, 0x96, 0x05, 0x26, 0x07, 0x26, 0x07, 0x26, 0x07, 0x26, 0x07, 0x26, 0x07, 0x26, 0x07, 0x26, - 0x07, 0x26, 0x07, 0x26, 0x07, 0x26, 0xdf, 0x5d, 0x4c, 0xce, 0x8e, 0xc6, 0x81, 0xc3, 0x81, 0xc3, - 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, 0x81, 0xc3, - 0x81, 0xc3, 0x19, 0xd3, 0x54, 0x92, 0x57, 0x05, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, - 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xdf, 0x2d, 0x44, 0x2e, 0x43, - 0xd1, 0x0d, 0x85, 0x64, 0xaa, 0xd7, 0x5c, 0x5e, 0x0d, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, - 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x1c, 0x08, 0x7c, 0x87, 0x10, 0x78, - 0x30, 0x50, 0x4c, 0x83, 0x7a, 0x96, 0x56, 0x02, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, - 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0x06, 0xf2, 0xde, 0x31, 0xe4, 0xcd, 0x35, - 0xaa, 0x67, 0xc5, 0x5a, 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, - 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, 0x40, 0xdf, 0x3b, 0x86, 0xbe, 0x59, 0x87, 0xf5, 0x24, 0x2d, - 0x08, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, 0x0e, 0x1c, - 0x0e, 0x1c, 0x0e, 0x1c, 0xbe, 0x8b, 0x38, 0x9c, 0x11, 0x81, 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, - 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, 0x03, 0x7b, 0xef, 0x34, - 0xf6, 0x66, 0xea, 0x84, 0x92, 0xb0, 0x1e, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, - 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0x38, 0x50, 0xf8, 0x8e, 0xa1, 0x70, 0x13, 0x23, - 0x7b, 0x7e, 0xb1, 0x2e, 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, - 0x50, 0x39, 0x50, 0x39, 0x50, 0x39, 0x50, 0xf9, 0x0e, 0xa3, 0x72, 0x7e, 0x3c, 0x0e, 0x24, 0x0e, - 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, - 0x24, 0x0e, 0x24, 0xee, 0x73, 0x26, 0xab, 0x60, 0x6e, 0x0f, 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, - 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, 0x30, 0x79, 0x8c, 0xc9, - 0x19, 0x07, 0xf7, 0xac, 0x5e, 0x0e, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, - 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x1c, 0x18, 0x7c, 0x87, 0x30, 0xf8, 0xb8, 0x92, 0xd2, - 0xed, 0x89, 0x60, 0xa0, 0x08, 0xb1, 0xf7, 0xfc, 0x32, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, - 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0xc0, 0xdc, 0x3b, 0x84, 0xb9, - 0x43, 0x5b, 0x09, 0xcb, 0x73, 0x7b, 0xae, 0x12, 0x1d, 0x06, 0xbf, 0xf7, 0xea, 0xe5, 0x80, 0xc1, - 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, 0x81, 0xc1, - 0x81, 0xc1, 0x77, 0x09, 0x83, 0xcf, 0x26, 0x65, 0x93, 0xbb, 0xbf, 0x57, 0xae, 0x06, 0x04, 0x0e, - 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, - 0x04, 0x9e, 0x76, 0x04, 0xbe, 0x97, 0xa2, 0x33, 0x59, 0x38, 0xf5, 0xfd, 0x40, 0x45, 0xa0, 0x5a, - 0xeb, 0x31, 0x2c, 0x48, 0xe7, 0x49, 0xf4, 0xec, 0xbe, 0xad, 0x9e, 0x46, 0x16, 0xb5, 0x18, 0xf4, - 0x85, 0xef, 0x44, 0x28, 0xd8, 0xf2, 0x85, 0xfa, 0x27, 0x08, 0xbf, 0x5a, 0xae, 0x2f, 0x95, 0xed, - 0x3b, 0xa2, 0xb8, 0xf8, 0x86, 0x5c, 0x7a, 0xa7, 0xd8, 0xeb, 0x7b, 0xb2, 0x28, 0xdd, 0x47, 0xdf, - 0xf6, 0x5c, 0xff, 0xd1, 0xea, 0x87, 0x81, 0x0a, 0x9c, 0xc0, 0x93, 0xc5, 0x11, 0x00, 0xb2, 0x94, - 0x28, 0x3e, 0x7a, 0xc1, 0x83, 0xed, 0x15, 0xa5, 0xb2, 0x95, 0x28, 0xc6, 0xf6, 0x5b, 0x27, 0x3b, - 0x28, 0x48, 0x15, 0x0e, 0x1c, 0xe5, 0xc7, 0x08, 0xe1, 0x6a, 0x7c, 0x83, 0xe7, 0xf1, 0xfd, 0xb5, - 0x2f, 0xfb, 0x9e, 0x6c, 0x7f, 0x9e, 0xdc, 0xdf, 0xcd, 0xe4, 0xf6, 0xda, 0xb7, 0xf2, 0x5b, 0xff, - 0x4e, 0xb4, 0x7f, 0x8f, 0xee, 0xae, 0xfd, 0x69, 0x72, 0x5f, 0x7b, 0xe9, 0x90, 0xa3, 0xed, 0xae, - 0xb0, 0xa5, 0x04, 0xea, 0x96, 0x3c, 0x93, 0x12, 0xb7, 0xdd, 0x86, 0x6e, 0xbe, 0x0d, 0x9b, 0x7d, - 0x73, 0xc3, 0x8d, 0xd3, 0xb5, 0x61, 0x66, 0x36, 0x6a, 0x0b, 0x5d, 0xa0, 0xe3, 0xec, 0x6f, 0x26, - 0x21, 0xeb, 0xef, 0xef, 0x06, 0x7b, 0x5b, 0x70, 0x47, 0x4a, 0xa9, 0x6b, 0x3b, 0xc2, 0xb2, 0x95, - 0x0a, 0xdd, 0x87, 0x81, 0xda, 0x22, 0x92, 0x3a, 0x25, 0x51, 0x2b, 0xaf, 0xba, 0xa1, 0xe4, 0xc5, - 0xf8, 0xad, 0xbc, 0xe1, 0xd7, 0xb7, 0x75, 0xbf, 0xe8, 0x70, 0xb3, 0x68, 0x74, 0xa7, 0xe8, 0x72, - 0x9b, 0x68, 0x77, 0x8f, 0x68, 0x77, 0x83, 0xe8, 0x75, 0x77, 0xf0, 0x6a, 0xcb, 0x33, 0x37, 0xdc, - 0x4e, 0x60, 0xa6, 0x07, 0x68, 0xfb, 0x8d, 0x5e, 0x3a, 0x93, 0xdb, 0x6e, 0xf4, 0x76, 0x07, 0x52, - 0xbb, 0x5f, 0x54, 0xa7, 0x1f, 0x94, 0xc0, 0xef, 0xa9, 0xdb, 0xcf, 0x49, 0xe6, 0xd7, 0x24, 0xf3, - 0x63, 0xd2, 0xf8, 0x2d, 0xcd, 0xe2, 0xd7, 0x6d, 0x0f, 0xf8, 0xf4, 0x42, 0xf6, 0x40, 0x3d, 0x09, - 0x5f, 0xb9, 0x8e, 0x5e, 0x1a, 0x36, 0x15, 0xe4, 0x85, 0xeb, 0x6b, 0xda, 0x51, 0x3d, 0x2a, 0x40, - 0xbb, 0x2a, 0xa0, 0x50, 0x09, 0x84, 0xaa, 0x81, 0x4a, 0x45, 0x90, 0xab, 0x0a, 0x72, 0x95, 0x41, - 0xab, 0x3a, 0xd2, 0xe9, 0x8c, 0xd1, 0xa5, 0x52, 0xa6, 0x17, 0x74, 0x26, 0xa7, 0x8a, 0x28, 0x26, - 0x1b, 0x5f, 0x9f, 0x26, 0x0a, 0x5b, 0x46, 0x14, 0x16, 0x51, 0xd8, 0x34, 0xa9, 0x22, 0x1e, 0x95, - 0xa4, 0x57, 0x35, 0x69, 0x56, 0x51, 0x64, 0xaa, 0x2a, 0x01, 0x0d, 0x59, 0x5f, 0xc5, 0x33, 0x9d, - 0x64, 0xae, 0x46, 0x48, 0xd1, 0x9a, 0x44, 0x92, 0x43, 0x1b, 0x89, 0x22, 0x53, 0x71, 0x1c, 0xaa, - 0x8e, 0x51, 0xe5, 0x71, 0xa9, 0x3e, 0x76, 0x15, 0xc8, 0xae, 0x0a, 0x79, 0x55, 0x22, 0x8d, 0x6a, - 0x24, 0x52, 0x91, 0xd3, 0x47, 0x43, 0x96, 0xb0, 0xb2, 0x74, 0x62, 0xa4, 0x0a, 0x5d, 0xff, 0x91, - 0xf2, 0xc0, 0x4c, 0xa0, 0xd9, 0x11, 0xe1, 0x1a, 0x17, 0xc2, 0x7f, 0x8c, 0x62, 0x03, 0xf7, 0xa4, - 0x22, 0x4b, 0x7b, 0xe4, 0xf7, 0xb9, 0xf2, 0x5a, 0x98, 0x4c, 0xcb, 0xd2, 0x72, 0xd3, 0x64, 0x07, - 0xa6, 0xf5, 0x18, 0x33, 0x1c, 0x88, 0x15, 0xc2, 0xbc, 0x88, 0x30, 0xe4, 0xbf, 0x98, 0x16, 0x91, - 0xc3, 0x4a, 0x8e, 0x65, 0x64, 0x2f, 0x9b, 0x57, 0x6f, 0x65, 0x24, 0x8b, 0x87, 0xe0, 0x0c, 0x16, - 0x84, 0x6f, 0x3f, 0x78, 0x82, 0x9e, 0x56, 0xc4, 0xeb, 0x10, 0xc1, 0x8a, 0x33, 0xd1, 0xb5, 0x07, - 0x5e, 0x04, 0xb8, 0xba, 0xb6, 0x27, 0x05, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x0b, 0x28, 0x4b, 0xb6, - 0x28, 0xcb, 0x43, 0x10, 0x78, 0xc2, 0xf6, 0x39, 0x38, 0x4b, 0x39, 0x2b, 0x26, 0x2f, 0xd5, 0x8e, - 0x3f, 0xa2, 0x84, 0xd1, 0xe9, 0xf5, 0x99, 0xb3, 0xc3, 0x56, 0xa5, 0x29, 0xbd, 0xbe, 0x59, 0x9c, - 0xf7, 0x0c, 0x16, 0xe3, 0x78, 0xc7, 0x0e, 0xd4, 0xf6, 0x8d, 0xf3, 0x1a, 0xc9, 0x02, 0x47, 0xe3, - 0xcb, 0x67, 0x2c, 0x6e, 0x54, 0x41, 0xdc, 0x88, 0x11, 0x89, 0x20, 0x6e, 0x94, 0x47, 0xf3, 0x81, - 0xb8, 0x11, 0x48, 0x18, 0x48, 0x18, 0x48, 0x18, 0x48, 0x58, 0x8a, 0x48, 0x18, 0xe2, 0x46, 0x6b, - 0xfc, 0x41, 0xdc, 0x68, 0xab, 0xe5, 0x10, 0x37, 0xd2, 0x23, 0x22, 0x88, 0x1b, 0x65, 0x5b, 0x46, - 0x10, 0x37, 0xa2, 0x75, 0xa2, 0x21, 0x6e, 0x94, 0xc4, 0xc0, 0x10, 0x37, 0x02, 0x65, 0x01, 0x65, - 0x01, 0x65, 0xc9, 0x34, 0x65, 0x41, 0xdc, 0x88, 0xf8, 0x8a, 0x88, 0x1b, 0x69, 0x8c, 0x1b, 0x69, - 0xe8, 0x12, 0x41, 0xb7, 0xdb, 0x68, 0x48, 0x63, 0x5a, 0x3e, 0x52, 0xd3, 0xa8, 0xe6, 0x7c, 0x72, - 0x83, 0xed, 0xd3, 0xf9, 0x1b, 0x4c, 0x4b, 0xc7, 0x1a, 0x0d, 0xc5, 0xd8, 0x0f, 0xb6, 0xdf, 0xf9, - 0xc7, 0xed, 0xa8, 0x27, 0x6b, 0xa6, 0xa3, 0xa8, 0xd4, 0x5f, 0x76, 0x9b, 0xb0, 0x0e, 0xca, 0x6f, - 0x53, 0x88, 0x96, 0x51, 0x7e, 0x6b, 0x06, 0xed, 0xe6, 0xbc, 0xfc, 0x76, 0xa5, 0x0a, 0xa0, 0x4b, - 0xaa, 0x58, 0xbd, 0x1c, 0x92, 0x2c, 0x90, 0x64, 0x61, 0x9e, 0xae, 0x23, 0xc9, 0x82, 0x91, 0x6b, - 0x91, 0x25, 0x59, 0xf4, 0x43, 0x37, 0x08, 0x5d, 0xc5, 0x90, 0x5a, 0x31, 0x5d, 0x09, 0xde, 0x49, - 0x78, 0x27, 0xe1, 0x9d, 0x84, 0x77, 0x32, 0x53, 0xde, 0x49, 0x4f, 0xd8, 0xdd, 0x50, 0x74, 0x39, - 0xbc, 0x93, 0x0d, 0xc2, 0x35, 0x6e, 0x62, 0x6f, 0xc9, 0x87, 0x0f, 0x71, 0x67, 0xdd, 0xa9, 0x56, - 0xde, 0xe1, 0x28, 0x20, 0x4d, 0x66, 0xf4, 0x92, 0x08, 0x51, 0x64, 0x48, 0x13, 0x83, 0x78, 0x58, - 0x3f, 0x58, 0x3f, 0x58, 0xbf, 0xb4, 0x5a, 0x3f, 0x2a, 0x52, 0x30, 0x5d, 0xc0, 0x76, 0x94, 0xfb, - 0x4d, 0xcc, 0x79, 0x3b, 0xad, 0xa8, 0x15, 0x3b, 0xbd, 0x60, 0x4f, 0x13, 0xb2, 0x13, 0x6f, 0xe1, - 0x7d, 0x2e, 0x26, 0x4c, 0x50, 0x2b, 0x56, 0x4e, 0x05, 0x6b, 0x40, 0xd1, 0x72, 0x2b, 0x5c, 0x63, - 0x8a, 0xd7, 0x98, 0x02, 0x36, 0xa3, 0x88, 0x69, 0x15, 0x32, 0xb1, 0x62, 0xe6, 0xa3, 0x27, 0x4b, - 0x27, 0xee, 0xd1, 0x1e, 0x3c, 0x0a, 0x92, 0x31, 0x57, 0x49, 0x0a, 0xf2, 0x88, 0x61, 0x29, 0xda, - 0x31, 0x58, 0x8b, 0x7f, 0x78, 0x34, 0xc8, 0x3e, 0x77, 0x5a, 0x38, 0xb3, 0x65, 0x5b, 0x5a, 0x96, - 0x69, 0x8c, 0xd6, 0xd2, 0xba, 0x06, 0x52, 0x81, 0x99, 0xf4, 0xcb, 0xbc, 0x28, 0x31, 0xa6, 0x8f, - 0xa7, 0x45, 0x94, 0xf8, 0xc7, 0x72, 0xa5, 0x4a, 0xba, 0xf6, 0xf2, 0xb1, 0x4a, 0x2b, 0xa3, 0x89, - 0xf3, 0x94, 0x43, 0xf4, 0xec, 0x6f, 0xb6, 0xeb, 0xd9, 0x0f, 0x9e, 0xb0, 0xa6, 0x21, 0x60, 0x46, - 0xce, 0xb5, 0x62, 0x71, 0xb0, 0x2d, 0xb0, 0x2d, 0xb0, 0x2d, 0xb0, 0x2d, 0xb0, 0xad, 0x95, 0xe9, - 0x39, 0xbd, 0x87, 0xbe, 0xcc, 0x19, 0xe9, 0xfa, 0xe2, 0x8f, 0x01, 0x4d, 0xe1, 0x92, 0xe9, 0xb7, - 0x81, 0xe5, 0x81, 0xe5, 0x81, 0xe5, 0x81, 0xe5, 0x81, 0xe5, 0x81, 0xe5, 0xed, 0x06, 0xcb, 0x7b, - 0x72, 0x1f, 0x9f, 0xfe, 0xb1, 0x95, 0x08, 0xad, 0x9e, 0x1d, 0x7e, 0xe5, 0x23, 0x78, 0x0b, 0xeb, - 0x82, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, - 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x6d, 0x21, 0x56, 0xe4, 0x85, 0x55, - 0x4b, 0x88, 0x85, 0xb8, 0xc0, 0x0a, 0x7c, 0x0e, 0x7c, 0x0e, 0x7c, 0x0e, 0x7c, 0x2e, 0xa3, 0x7c, - 0x6e, 0xe0, 0xeb, 0x2f, 0x9d, 0xff, 0x99, 0x7a, 0x2c, 0x1f, 0x33, 0xac, 0x15, 0x3f, 0xc6, 0xdc, - 0xb1, 0xaa, 0xe9, 0xa6, 0xb9, 0xbe, 0x3a, 0x2a, 0x30, 0x62, 0xf0, 0x78, 0xf3, 0x18, 0x31, 0x28, - 0x33, 0x35, 0xe6, 0xdf, 0x4c, 0xa3, 0x54, 0xd9, 0x30, 0xcf, 0x31, 0x4d, 0x9d, 0xd3, 0x40, 0x72, - 0x0c, 0x50, 0x69, 0xa3, 0x94, 0x3a, 0x6d, 0x22, 0xd7, 0xd8, 0x61, 0x91, 0xdb, 0xcb, 0xe7, 0x6a, - 0xad, 0xbd, 0x1c, 0x1d, 0x58, 0x03, 0xb0, 0x42, 0xf8, 0x83, 0x9e, 0x08, 0x29, 0x9a, 0x29, 0xbd, - 0x09, 0x19, 0x56, 0x19, 0xd7, 0x6c, 0xfa, 0x83, 0xde, 0x48, 0x05, 0xc2, 0xd5, 0x64, 0xf6, 0xfe, - 0x29, 0x5d, 0x4d, 0xe3, 0xe2, 0x58, 0xd1, 0x31, 0x91, 0x2b, 0xbe, 0x62, 0x6d, 0xb8, 0x9f, 0xd6, - 0x5a, 0x08, 0xee, 0x27, 0xbd, 0xe2, 0x01, 0xf7, 0x13, 0xdc, 0x4f, 0x6f, 0xf4, 0x9b, 0x20, 0x9d, - 0x40, 0xcf, 0x52, 0x48, 0x27, 0xc8, 0xb2, 0x8f, 0x04, 0xe9, 0x04, 0x48, 0x27, 0xc8, 0x89, 0x28, - 0x21, 0x9d, 0x00, 0x1c, 0xcf, 0x20, 0xc7, 0xcb, 0x54, 0xf7, 0x28, 0xe2, 0xf1, 0x1d, 0xd3, 0x75, - 0xd2, 0x35, 0xa6, 0x61, 0x75, 0x0f, 0xff, 0xd5, 0x6f, 0x53, 0x0c, 0xf9, 0xa0, 0x93, 0x95, 0x74, - 0x37, 0x30, 0xfe, 0x33, 0x9a, 0xde, 0x4c, 0x95, 0xa3, 0x52, 0xb8, 0x70, 0xa5, 0x3a, 0x55, 0x8a, - 0xa8, 0x49, 0xf2, 0xa5, 0xeb, 0x37, 0x3d, 0x31, 0xe2, 0x58, 0x23, 0x85, 0xee, 0x0f, 0x3c, 0x8f, - 0xa0, 0x0b, 0xe5, 0xa5, 0xfd, 0x9d, 0x7e, 0x91, 0xeb, 0xb0, 0x23, 0x42, 0xd1, 0xf9, 0xf8, 0x1c, - 0x2f, 0x81, 0x01, 0x43, 0x99, 0xd4, 0x4c, 0x05, 0x92, 0x2e, 0xa8, 0x5a, 0xc6, 0xcc, 0x7c, 0x9c, - 0xdc, 0xef, 0xed, 0xcc, 0xed, 0x62, 0x4e, 0x92, 0x39, 0x71, 0xcf, 0x84, 0x98, 0xe7, 0x69, 0x1c, - 0x91, 0x33, 0xf1, 0x1c, 0x6b, 0x1e, 0x3f, 0x14, 0x5f, 0x17, 0xe3, 0x86, 0xb6, 0x7e, 0x92, 0x18, - 0x37, 0xf4, 0xba, 0x00, 0xc6, 0x0d, 0xa5, 0x78, 0xdc, 0xd0, 0xab, 0x2e, 0x75, 0x3b, 0x74, 0x53, - 0x86, 0xe6, 0x56, 0xa1, 0x19, 0x2e, 0x54, 0xa2, 0x1a, 0x2e, 0x54, 0xc2, 0x70, 0x21, 0x06, 0x35, - 0xc4, 0xa6, 0x8e, 0xd8, 0xd4, 0x12, 0x8f, 0x7a, 0xca, 0x06, 0x37, 0x27, 0x8b, 0x86, 0x71, 0x68, - 0x98, 0x39, 0x30, 0x73, 0x04, 0xa2, 0x01, 0xa2, 0x11, 0x13, 0x8d, 0x18, 0x2e, 0xe7, 0x88, 0x58, - 0x3c, 0x09, 0xcf, 0x0b, 0x08, 0xe6, 0x9a, 0xc6, 0xd7, 0x05, 0xb1, 0x00, 0xb1, 0x00, 0xb1, 0xd8, - 0x0d, 0x62, 0xa1, 0xd9, 0x47, 0x41, 0xeb, 0xab, 0x20, 0x52, 0x2d, 0x20, 0x13, 0x20, 0x13, 0x20, - 0x13, 0x99, 0x99, 0x54, 0x1a, 0xa1, 0x14, 0x2b, 0xc2, 0x77, 0xdf, 0x6c, 0x8f, 0x7e, 0x5c, 0xdb, - 0xc2, 0x7a, 0x54, 0x33, 0x9c, 0x44, 0xd7, 0x1e, 0x78, 0x91, 0xc0, 0x1c, 0x97, 0x4a, 0x25, 0x0c, - 0x47, 0x65, 0xd7, 0xa4, 0x8c, 0x1a, 0x95, 0x4b, 0xb3, 0xb2, 0x6b, 0x58, 0x76, 0x4d, 0xcb, 0xab, - 0x71, 0x69, 0x34, 0x2f, 0x91, 0x06, 0xa6, 0x77, 0xeb, 0x2c, 0x9d, 0x98, 0x81, 0xeb, 0xab, 0x72, - 0x9d, 0x61, 0x36, 0x6a, 0x9d, 0x70, 0x09, 0x9e, 0x9c, 0x62, 0x86, 0x94, 0x73, 0xce, 0x1c, 0x62, - 0xe6, 0x84, 0xcf, 0xd7, 0x44, 0xcf, 0x52, 0x89, 0x6b, 0x49, 0x03, 0x09, 0x9d, 0x0c, 0x69, 0xc2, - 0xac, 0xe9, 0xc1, 0xa6, 0xa4, 0xa4, 0x5e, 0xca, 0xb7, 0x98, 0x64, 0x34, 0x4f, 0xb6, 0xb5, 0xc3, - 0xb3, 0xa6, 0x43, 0xd1, 0x0d, 0x85, 0x7c, 0xb2, 0x42, 0xd1, 0x19, 0x38, 0xa4, 0xc9, 0xb7, 0x33, - 0x25, 0x9a, 0x8b, 0x4b, 0xd2, 0x73, 0x99, 0x11, 0xf2, 0x03, 0x97, 0x01, 0x97, 0x01, 0x97, 0x01, - 0x97, 0xc9, 0x16, 0x97, 0x79, 0x08, 0x02, 0x4f, 0xd8, 0x3e, 0x03, 0x99, 0x29, 0x97, 0x51, 0x59, - 0xa0, 0xe3, 0xd4, 0xec, 0x54, 0x96, 0xf8, 0x38, 0x56, 0xab, 0x35, 0xb8, 0xad, 0x7f, 0x9b, 0x35, - 0x6e, 0x71, 0x61, 0x5c, 0x83, 0x43, 0x16, 0xa8, 0x1a, 0x5f, 0x3e, 0x63, 0x71, 0xaa, 0x0a, 0xe2, - 0x54, 0x8c, 0x08, 0x04, 0x71, 0xaa, 0x3c, 0x9a, 0x0d, 0xc4, 0xa9, 0x36, 0xe5, 0x76, 0x88, 0x53, - 0x81, 0xdb, 0x81, 0xdb, 0x81, 0xdb, 0x65, 0x8f, 0xdb, 0x21, 0x4e, 0xf5, 0xe6, 0x3f, 0x88, 0x53, - 0x6d, 0xb5, 0x1c, 0xe2, 0x54, 0xda, 0xa4, 0x04, 0x71, 0xaa, 0xcc, 0x8b, 0x09, 0xe2, 0x54, 0xa4, - 0xf7, 0x8b, 0x38, 0xd5, 0xc6, 0x5c, 0x06, 0x71, 0x2a, 0x70, 0x19, 0x70, 0x19, 0x70, 0x99, 0xec, - 0x71, 0x19, 0xc4, 0xa9, 0x88, 0xaf, 0x88, 0x38, 0x95, 0x86, 0x38, 0x15, 0x41, 0x07, 0x35, 0x54, - 0xe5, 0x66, 0x5f, 0x2e, 0x0a, 0x5a, 0x03, 0x84, 0x5a, 0xfa, 0x56, 0xfd, 0x31, 0xbe, 0xb1, 0x1c, - 0x95, 0x0b, 0x93, 0x34, 0x0f, 0xa1, 0x2c, 0xe9, 0xd7, 0x8c, 0x98, 0x51, 0x3a, 0x8c, 0xd2, 0x61, - 0x13, 0x08, 0x36, 0x5d, 0x66, 0x45, 0x3b, 0x22, 0x9d, 0x4a, 0xac, 0x27, 0xec, 0x6e, 0x28, 0xba, - 0x3a, 0x25, 0x76, 0x82, 0x38, 0x35, 0xce, 0xac, 0x2a, 0xdc, 0xc4, 0x96, 0xef, 0xc3, 0x87, 0x38, - 0x6b, 0xa6, 0x38, 0xa7, 0xba, 0x72, 0xa9, 0xf0, 0x47, 0xdb, 0x42, 0xa8, 0xf1, 0xf5, 0xed, 0xfa, - 0xae, 0x77, 0x8b, 0x70, 0xbb, 0x50, 0xf8, 0x06, 0x14, 0xbe, 0xdb, 0x45, 0xa7, 0x88, 0x37, 0x5e, - 0x10, 0x9d, 0x22, 0x08, 0xd5, 0x0b, 0xa5, 0x9a, 0x21, 0x57, 0x37, 0xd4, 0x6a, 0x87, 0x4d, 0xfd, - 0xb0, 0xa9, 0x21, 0x0e, 0x75, 0x94, 0x0d, 0x67, 0x18, 0x59, 0xf6, 0xdd, 0x14, 0xa4, 0xd0, 0xc7, - 0xab, 0x5e, 0x97, 0x42, 0x00, 0x89, 0x5b, 0xa9, 0xb1, 0x29, 0x37, 0x2e, 0x25, 0xc7, 0xae, 0xec, - 0xd8, 0x95, 0x1e, 0xa7, 0xf2, 0xa3, 0x51, 0x82, 0x44, 0xca, 0x90, 0x8e, 0xaa, 0x33, 0x52, 0x77, - 0x0e, 0x2a, 0x9f, 0x48, 0xed, 0x8b, 0x91, 0x18, 0x9d, 0x4c, 0x15, 0xb2, 0x5c, 0x7c, 0x23, 0xfe, - 0xef, 0xc8, 0x49, 0xbc, 0xc3, 0x49, 0x1d, 0x72, 0xf0, 0xc0, 0x68, 0x1f, 0xe7, 0x56, 0x83, 0x89, - 0x84, 0x89, 0x84, 0x89, 0x84, 0x89, 0x84, 0x89, 0x4c, 0xa9, 0x89, 0xbc, 0x7f, 0x35, 0x91, 0xff, - 0xe5, 0x0c, 0xc2, 0x50, 0xf8, 0xea, 0xdd, 0x41, 0xf1, 0xc3, 0x87, 0x57, 0x6f, 0x79, 0x2b, 0xfe, - 0xca, 0xac, 0x5e, 0x97, 0x2b, 0xde, 0x9b, 0x5e, 0xb9, 0x23, 0xbe, 0x63, 0x78, 0x9a, 0x8e, 0x4d, - 0x6c, 0x7e, 0x8f, 0x32, 0x75, 0xf5, 0x67, 0xfc, 0xd3, 0x3b, 0x6c, 0x02, 0xc7, 0x12, 0xdf, 0xd5, - 0x89, 0x12, 0x9e, 0xe8, 0x09, 0x15, 0x3e, 0x5b, 0x81, 0x6f, 0x39, 0x4f, 0x51, 0x09, 0x03, 0x8b, - 0x13, 0xa7, 0x6b, 0x7b, 0x92, 0xc3, 0x8b, 0x93, 0x76, 0x07, 0x4e, 0x0b, 0xd9, 0x4c, 0x5b, 0x64, - 0xad, 0xcc, 0x85, 0xbe, 0x50, 0x7c, 0xaf, 0x8d, 0x21, 0xa0, 0xf8, 0x1e, 0xae, 0xff, 0x54, 0x40, - 0x7d, 0xb8, 0xfe, 0xd9, 0xc0, 0x0c, 0x5c, 0xff, 0xf0, 0x6b, 0xc0, 0xaf, 0x01, 0xbf, 0x06, 0xfc, - 0x1a, 0xf0, 0x6b, 0x30, 0xf8, 0x35, 0xe0, 0xfa, 0xdf, 0x87, 0xeb, 0x1f, 0x26, 0x12, 0x26, 0x12, - 0x26, 0x12, 0x26, 0x12, 0x26, 0x12, 0xae, 0xff, 0x6c, 0xb1, 0xe5, 0x5d, 0xf6, 0xb3, 0xa2, 0x78, - 0xd4, 0xb4, 0x98, 0xa4, 0x59, 0x3c, 0x52, 0x58, 0x43, 0x3a, 0x7d, 0x75, 0x2b, 0xba, 0x79, 0x2a, - 0x2c, 0x1a, 0x6d, 0x94, 0xd0, 0xdb, 0x05, 0x66, 0x6a, 0x6c, 0x67, 0xae, 0x8d, 0x92, 0x22, 0x1d, - 0x40, 0x1f, 0x55, 0xa4, 0x4c, 0xd0, 0x1d, 0x03, 0x68, 0xb7, 0xb8, 0x20, 0xca, 0x8a, 0x18, 0x7c, - 0x0d, 0x68, 0xec, 0x9d, 0x0e, 0x6f, 0x02, 0x1a, 0x7b, 0x33, 0x32, 0x26, 0xb2, 0xf8, 0xe2, 0xc3, - 0x73, 0xdf, 0x96, 0xd2, 0x0a, 0xfa, 0xca, 0xed, 0xb9, 0xff, 0x27, 0x18, 0x5b, 0x7c, 0x27, 0xae, - 0x0c, 0xd7, 0x2a, 0xb7, 0xda, 0x63, 0x54, 0x7f, 0x5c, 0x6a, 0x90, 0x5d, 0x1d, 0xb2, 0xab, 0x45, - 0x5e, 0xf5, 0x48, 0xe7, 0xaa, 0xda, 0x47, 0x17, 0xee, 0x75, 0xf4, 0x17, 0xba, 0x70, 0xbf, 0xe1, - 0x87, 0xec, 0x42, 0x17, 0x6e, 0xb4, 0xe0, 0xde, 0x4e, 0x44, 0x76, 0xa1, 0x05, 0x77, 0xad, 0x76, - 0x58, 0x43, 0x0b, 0xee, 0xb4, 0x5d, 0x7d, 0x97, 0x5b, 0x70, 0x7b, 0xae, 0xff, 0xd5, 0x7a, 0x75, - 0x8f, 0x5a, 0x52, 0x3d, 0x7b, 0xc2, 0x0a, 0xc5, 0xff, 0x0e, 0x84, 0x54, 0xa2, 0x43, 0x4f, 0x3b, - 0x7e, 0x75, 0x03, 0xf4, 0xed, 0xb9, 0x03, 0xc7, 0xea, 0xf5, 0x3d, 0xa9, 0x4e, 0x2e, 0xce, 0xaf, - 0xfe, 0x6c, 0x5f, 0x5d, 0x9f, 0x35, 0xdb, 0x37, 0xb7, 0xd7, 0x77, 0xcd, 0x4f, 0x77, 0xe7, 0xd7, - 0x57, 0xed, 0xdb, 0xe6, 0xbf, 0xbf, 0x34, 0x3f, 0xdf, 0x35, 0xcf, 0xc0, 0x83, 0xc0, 0x83, 0xc0, - 0x83, 0xc0, 0x83, 0xb2, 0xc5, 0x83, 0xdc, 0x8e, 0xf0, 0x95, 0xab, 0x9e, 0x99, 0x52, 0x4d, 0x08, - 0xd1, 0x4d, 0xe1, 0x3c, 0xfe, 0x29, 0x1f, 0x6d, 0xc9, 0x70, 0x3e, 0x27, 0x0f, 0x70, 0xc6, 0x14, - 0xdc, 0xfd, 0x75, 0xd3, 0xa4, 0x3e, 0xa5, 0x11, 0x54, 0x94, 0xe4, 0x9c, 0x8f, 0x87, 0xf7, 0xcd, - 0x3d, 0xc8, 0x2f, 0x57, 0xf1, 0xa3, 0x6c, 0x9e, 0x15, 0xf2, 0xc0, 0x58, 0x98, 0x1f, 0xdf, 0x2f, - 0xc0, 0x09, 0x9e, 0xe8, 0x66, 0x4f, 0x74, 0xe1, 0x61, 0x9e, 0xdf, 0xb2, 0x3c, 0x4b, 0xd2, 0x15, - 0x5a, 0x59, 0x33, 0xb2, 0xc8, 0xb6, 0xd3, 0x7a, 0xfd, 0x74, 0xa5, 0x53, 0xbd, 0x52, 0x3b, 0x94, - 0x34, 0xeb, 0xd2, 0x5c, 0x28, 0x69, 0x46, 0xda, 0x41, 0x5a, 0xf8, 0x25, 0xd2, 0x0e, 0x18, 0x4d, - 0x07, 0xd2, 0x0e, 0xe0, 0x6e, 0x83, 0xbb, 0x0d, 0xee, 0x36, 0xb8, 0xdb, 0x52, 0xea, 0x6e, 0x43, - 0xda, 0x41, 0x8a, 0xd8, 0x3e, 0xd2, 0x0e, 0x34, 0xae, 0x87, 0xb4, 0x83, 0xcc, 0x8a, 0x08, 0xd2, - 0x0e, 0x52, 0x79, 0x75, 0xa4, 0x1d, 0x20, 0xed, 0x00, 0x69, 0x07, 0xe0, 0x41, 0xe0, 0x41, 0xe0, - 0x41, 0x79, 0xe3, 0x41, 0x48, 0x3b, 0xd8, 0xf2, 0x01, 0x22, 0xed, 0x40, 0xd3, 0x83, 0x44, 0xda, - 0xc1, 0x56, 0x8f, 0x0f, 0x69, 0x07, 0x24, 0x4f, 0x14, 0x69, 0x07, 0xe6, 0x8d, 0x2c, 0xd2, 0x0e, - 0xb4, 0x5e, 0x3f, 0xb5, 0x69, 0x07, 0xe8, 0xf0, 0x63, 0x5a, 0x46, 0x52, 0x2b, 0x1b, 0x29, 0x6c, - 0xef, 0x73, 0xf3, 0x7a, 0x73, 0x39, 0x6a, 0xee, 0xa3, 0x37, 0x21, 0x86, 0x24, 0x11, 0x86, 0xac, - 0xa5, 0x4f, 0x05, 0x2d, 0x7d, 0xb2, 0xe4, 0xc1, 0x40, 0x4b, 0x9f, 0x74, 0xb7, 0xf4, 0x19, 0x8c, - 0x54, 0xa5, 0xa4, 0x6c, 0xea, 0x13, 0xaf, 0x80, 0xfc, 0x3a, 0xe4, 0xd7, 0x99, 0x53, 0x43, 0x6c, - 0xea, 0x88, 0x47, 0x2d, 0x65, 0x83, 0x23, 0x91, 0xe5, 0xd7, 0x89, 0x30, 0x0c, 0x08, 0x94, 0xd6, - 0xd2, 0x81, 0x8a, 0xd7, 0xa1, 0x8d, 0x19, 0x95, 0x11, 0x33, 0x32, 0xa9, 0xda, 0xb8, 0x54, 0x1c, - 0xbb, 0xaa, 0x63, 0x57, 0x79, 0xbc, 0xaa, 0x8f, 0xd8, 0x9d, 0x45, 0x15, 0xb1, 0x26, 0x52, 0x89, - 0xd3, 0x05, 0xec, 0x81, 0x7a, 0x12, 0xbe, 0x72, 0x9d, 0xc8, 0xef, 0x60, 0x75, 0x6d, 0xd7, 0xe3, - 0x0b, 0xb3, 0xac, 0x5a, 0x9c, 0x58, 0xd6, 0x78, 0x92, 0x80, 0xc8, 0x95, 0x29, 0xa7, 0x52, 0x35, - 0xa0, 0x5c, 0xb9, 0x95, 0xac, 0x31, 0x65, 0x6b, 0x4c, 0xe9, 0x9a, 0x51, 0xbe, 0xb4, 0x4a, 0x98, - 0x58, 0x19, 0x4f, 0x1f, 0x19, 0x79, 0x20, 0x3f, 0x89, 0x15, 0xd7, 0xab, 0x1c, 0x67, 0x2e, 0x56, - 0x91, 0x47, 0x0c, 0x4b, 0xf1, 0xe4, 0x3a, 0x4f, 0xfe, 0xf0, 0xe8, 0x90, 0x7d, 0xee, 0xdc, 0x67, - 0x66, 0xdb, 0xb6, 0xb4, 0x2c, 0x73, 0x2e, 0xf4, 0x74, 0x5d, 0x03, 0xc9, 0xae, 0x4c, 0x1a, 0x66, - 0x5e, 0x94, 0x18, 0x73, 0xa4, 0xd3, 0x22, 0x4a, 0xe5, 0xa3, 0x6a, 0xb5, 0xde, 0xa8, 0x56, 0x4b, - 0x8d, 0xc3, 0x46, 0xe9, 0xb8, 0x56, 0x2b, 0xd7, 0xcb, 0xb5, 0x1d, 0x92, 0xae, 0xbd, 0x7c, 0xac, - 0xd2, 0xca, 0x68, 0x6a, 0x38, 0xe1, 0xe9, 0x2e, 0x3c, 0xd8, 0x1d, 0xcb, 0x79, 0x12, 0xce, 0x57, - 0x39, 0xe8, 0xf1, 0x11, 0xad, 0xb9, 0x55, 0xc1, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, - 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0xc0, 0xb0, 0x72, - 0xc4, 0xb0, 0xfa, 0xb6, 0xf3, 0x55, 0x28, 0xab, 0x1b, 0x84, 0x3d, 0x5b, 0xf1, 0xd2, 0xac, 0xf9, - 0xa5, 0xc1, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, - 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xc0, 0xb5, 0xf2, 0xc7, 0xb5, 0x3c, 0xe1, 0x3f, 0x46, - 0x05, 0x86, 0xfc, 0x5c, 0x2b, 0x5e, 0x1a, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, - 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x0b, 0x5c, 0x2b, 0x27, - 0x5c, 0x2b, 0x18, 0x28, 0x2b, 0xe8, 0x5a, 0x41, 0xd8, 0x11, 0x21, 0x1f, 0xcd, 0x9a, 0x5b, 0x15, - 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, - 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x2b, 0x27, 0x0c, 0x2b, 0x14, 0x8e, 0x70, 0xbf, 0x89, - 0x8e, 0xe5, 0xdb, 0xce, 0x57, 0x3e, 0x8a, 0x35, 0xbf, 0x2c, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, - 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, 0x38, 0x16, - 0x38, 0x56, 0x4e, 0x38, 0x96, 0x0a, 0x6d, 0x5f, 0xf6, 0x5c, 0x15, 0x35, 0xfb, 0x1b, 0x84, 0x8c, - 0x33, 0x9d, 0x96, 0x56, 0x06, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, - 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0x02, 0xd3, 0xca, 0x1b, 0xd3, 0xfa, - 0xdf, 0x81, 0x18, 0x08, 0xab, 0x3b, 0xf0, 0x3c, 0x03, 0x64, 0x6b, 0x66, 0x71, 0xf0, 0x2d, 0xf0, - 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, 0x2d, 0xf0, - 0x2d, 0xf0, 0x2d, 0xf0, 0xad, 0x9c, 0xf0, 0xad, 0x81, 0xff, 0xd5, 0x0f, 0xfe, 0xf1, 0x2d, 0xd6, - 0xdc, 0xc1, 0xd9, 0x45, 0xc1, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, - 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0xc0, 0xaf, 0x72, 0xc6, 0xaf, 0x7c, - 0x23, 0x04, 0x0b, 0xb5, 0x59, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, - 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0x60, 0x58, 0xec, 0x0c, 0x6b, 0x2f, 0x43, - 0x3a, 0xa3, 0x70, 0xea, 0xfb, 0x81, 0xb2, 0x47, 0xa2, 0x4a, 0xaa, 0x26, 0x0a, 0xd2, 0x79, 0x12, - 0x3d, 0xbb, 0x6f, 0x47, 0x0d, 0xe8, 0x0b, 0xc5, 0xa0, 0x2f, 0x7c, 0x27, 0x62, 0x39, 0x96, 0x2f, - 0xd4, 0x3f, 0x41, 0xf8, 0xd5, 0x72, 0x7d, 0xa9, 0x6c, 0xdf, 0x11, 0xc5, 0xc5, 0x37, 0xe4, 0xd2, - 0x3b, 0xc5, 0x5e, 0xdf, 0x93, 0x45, 0xe9, 0x3e, 0xfa, 0xb6, 0xe7, 0xfa, 0x8f, 0x56, 0x3f, 0x0c, - 0x54, 0xe0, 0x04, 0x9e, 0x2c, 0x8e, 0x00, 0xa8, 0xa5, 0x44, 0xd1, 0x1d, 0x01, 0x9e, 0xae, 0xed, - 0x08, 0xcb, 0x56, 0x2a, 0x74, 0x1f, 0x06, 0x4a, 0xc8, 0xd7, 0x37, 0x8b, 0x52, 0xd9, 0x4a, 0x14, - 0x63, 0x5c, 0x24, 0x8b, 0x22, 0x0c, 0x83, 0x50, 0x12, 0xa2, 0xa3, 0x82, 0x54, 0xe1, 0xc0, 0x51, - 0x7e, 0x0c, 0xc8, 0xae, 0xc6, 0xbf, 0xe7, 0x3c, 0xfe, 0x39, 0xed, 0xcb, 0xbe, 0x27, 0xdb, 0x9f, - 0x27, 0x3f, 0xe7, 0x66, 0xf2, 0x6b, 0xda, 0xb7, 0xf2, 0x5b, 0xff, 0x4e, 0xb4, 0xcf, 0x27, 0xf7, - 0xdd, 0xfe, 0x14, 0xdf, 0x71, 0xbb, 0x39, 0xbe, 0xe3, 0xbd, 0x6c, 0x08, 0x30, 0x81, 0xf0, 0x16, - 0xdc, 0x28, 0xa4, 0x6a, 0xf5, 0x84, 0x94, 0xf6, 0xa3, 0x90, 0x64, 0xd2, 0x3b, 0x45, 0xd1, 0x8b, - 0x0b, 0x12, 0x1d, 0x48, 0x5a, 0xdb, 0x49, 0xee, 0x5a, 0xe0, 0x70, 0x29, 0x30, 0xba, 0x12, 0xb8, - 0x5c, 0x08, 0xec, 0xae, 0x03, 0x76, 0x97, 0x01, 0xaf, 0xab, 0x20, 0x5b, 0x46, 0x98, 0xdc, 0x25, - 0xc0, 0xea, 0x0a, 0x60, 0x70, 0x01, 0x30, 0x51, 0x7f, 0x06, 0x1f, 0x0d, 0x27, 0xd5, 0x67, 0xe6, - 0x65, 0xdc, 0xd4, 0xde, 0x04, 0xe9, 0x62, 0xa0, 0xf2, 0xac, 0x14, 0xde, 0x94, 0x88, 0x98, 0xa3, - 0xec, 0x46, 0xa4, 0x26, 0xa3, 0xd4, 0xb6, 0xb5, 0xdb, 0x7c, 0xe3, 0x49, 0x78, 0x5e, 0xc0, 0xcb, - 0x38, 0x16, 0x96, 0x04, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, - 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0xc8, 0x33, 0xe7, 0xe8, 0xdb, 0xea, 0xc9, - 0x8a, 0xe2, 0x53, 0xbc, 0xc4, 0x63, 0xd5, 0xba, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, - 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0x60, 0x1f, 0xb9, 0x67, - 0x1f, 0xfc, 0xbc, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, - 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x03, 0x8c, 0x63, 0x77, 0x18, 0x87, 0x12, 0xb6, 0x89, - 0x70, 0xc7, 0xfc, 0xb2, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, - 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0xe0, 0x1e, 0x79, 0xe6, 0x1e, 0xa1, 0x90, 0x22, - 0xfc, 0x16, 0x35, 0x43, 0x30, 0x91, 0x72, 0xf5, 0x93, 0xe5, 0xc1, 0x45, 0xc0, 0x45, 0xc0, 0x45, - 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, 0xc0, 0x45, - 0x76, 0x85, 0x8b, 0x18, 0x63, 0x21, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, - 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0xe0, 0x1f, 0x3b, 0xc7, 0x3f, 0xf8, - 0xd3, 0xb1, 0x92, 0x57, 0x07, 0x13, 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, - 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, 0x01, 0x13, 0xc9, 0x33, 0x13, 0x91, 0xa1, 0xe8, - 0x86, 0x42, 0x32, 0xd7, 0xa1, 0x2f, 0xaf, 0x0a, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, - 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x01, 0xe6, 0x91, 0x5b, 0xe6, - 0x11, 0x0c, 0x14, 0xf3, 0x80, 0xc1, 0xa5, 0x15, 0xc1, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, - 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0xc0, 0x38, 0x72, 0xcd, - 0x38, 0xb8, 0x47, 0x0c, 0xae, 0x58, 0x13, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, - 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x03, 0xac, 0x23, 0xd7, 0xac, 0xc3, - 0xc8, 0x90, 0xc1, 0xa4, 0x85, 0xc1, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, - 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xc0, 0x3f, 0xf2, 0xcf, 0x3f, 0x0c, 0x30, - 0x0f, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, - 0x0e, 0x70, 0x0e, 0x70, 0x0e, 0x70, 0x8e, 0x1d, 0xe2, 0x1c, 0xcc, 0x9d, 0xad, 0x12, 0xd6, 0x05, - 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0x00, - 0xfb, 0x00, 0xfb, 0x00, 0xfb, 0xc8, 0x35, 0xfb, 0x30, 0x39, 0x6a, 0xf0, 0x17, 0xeb, 0x83, 0x8d, - 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, 0x80, 0x8d, - 0x80, 0x8d, 0x80, 0x8d, 0xec, 0x0c, 0x1b, 0x31, 0xc7, 0x43, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, - 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, 0xc0, 0x40, - 0x76, 0x8f, 0x81, 0x18, 0x48, 0xca, 0xc2, 0xbc, 0x41, 0x70, 0x11, 0x70, 0x11, 0x70, 0x11, 0x70, - 0x11, 0x70, 0x11, 0x70, 0x11, 0x70, 0x11, 0x70, 0x11, 0x70, 0x11, 0x70, 0x91, 0x1d, 0xe5, 0x22, - 0x06, 0x06, 0x0e, 0xae, 0x5e, 0x16, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, - 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x03, 0xdc, 0x23, 0xb7, 0xdc, 0x23, 0xb4, - 0x95, 0xb0, 0x3c, 0xb7, 0xe7, 0x2a, 0xd1, 0x61, 0xe4, 0x1e, 0xab, 0x97, 0x05, 0xf7, 0x00, 0xf7, - 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, 0x00, 0xf7, - 0x00, 0xf7, 0x48, 0x07, 0xf7, 0xd8, 0x4b, 0xf1, 0x19, 0x2f, 0x9c, 0xfa, 0x7e, 0xa0, 0xa2, 0x4c, - 0x2a, 0x92, 0x63, 0x5d, 0x90, 0xce, 0x93, 0xe8, 0xd9, 0x7d, 0x5b, 0x3d, 0x8d, 0x2c, 0x7e, 0x31, - 0xe8, 0x0b, 0xdf, 0x89, 0x50, 0xbf, 0xe5, 0x0b, 0xf5, 0x4f, 0x10, 0x7e, 0xb5, 0x5c, 0x5f, 0x2a, - 0xdb, 0x77, 0x44, 0x71, 0xf1, 0x0d, 0xb9, 0xf4, 0x4e, 0xb1, 0xd7, 0xf7, 0x64, 0x51, 0xba, 0x8f, - 0xbe, 0xed, 0xb9, 0xfe, 0xa3, 0xd5, 0x0f, 0x03, 0x15, 0x38, 0x81, 0x27, 0x8b, 0x23, 0x00, 0x67, - 0x29, 0x51, 0x74, 0x47, 0x80, 0xa2, 0x6b, 0x3b, 0xc2, 0xb2, 0x95, 0x0a, 0xdd, 0x87, 0x81, 0x12, - 0xf2, 0xf5, 0xcd, 0xa2, 0x54, 0xb6, 0x12, 0xc5, 0x18, 0x77, 0x50, 0xb0, 0xa6, 0x82, 0x54, 0xe1, - 0xc0, 0x51, 0x7e, 0x8c, 0x70, 0xae, 0xc6, 0x3f, 0xe0, 0x3c, 0xbe, 0xff, 0xf6, 0x65, 0xdf, 0x93, - 0xed, 0xcf, 0x93, 0xfb, 0xbf, 0x99, 0xdc, 0x7e, 0xfb, 0x56, 0x7e, 0xeb, 0xdf, 0x89, 0xf6, 0xf9, - 0xe4, 0x46, 0xdb, 0x9f, 0x26, 0xb7, 0xb8, 0x97, 0x4e, 0x51, 0xd4, 0x28, 0x86, 0x85, 0xd7, 0x3d, - 0x73, 0x3b, 0xda, 0x85, 0x70, 0x0a, 0x36, 0xe7, 0x56, 0xd1, 0x7c, 0x88, 0x68, 0xec, 0x14, 0x19, - 0x3d, 0xa6, 0xa4, 0xc5, 0x0c, 0x74, 0x98, 0x9a, 0x06, 0xb3, 0xd1, 0x5f, 0x36, 0xda, 0xcb, 0x43, - 0x77, 0xd3, 0x6d, 0xe8, 0xc8, 0x68, 0x2d, 0x87, 0x86, 0x99, 0xd5, 0x32, 0xe5, 0xa3, 0x1d, 0xb0, - 0x09, 0x3d, 0xfb, 0xbb, 0xe5, 0xb9, 0xfe, 0x57, 0xeb, 0xc1, 0xf6, 0x3b, 0xff, 0xb8, 0x9d, 0x08, - 0x3e, 0x10, 0x59, 0x86, 0x15, 0x6b, 0xc1, 0x3e, 0xc0, 0x3e, 0xc0, 0x3e, 0xc0, 0x3e, 0x68, 0x95, - 0xf8, 0xa9, 0x7a, 0xb1, 0xbe, 0x3e, 0xf4, 0x25, 0xa1, 0x85, 0x20, 0xf0, 0x75, 0x16, 0xbe, 0xf8, - 0x63, 0x7f, 0x44, 0xe1, 0x4f, 0xa2, 0x7b, 0xa7, 0x75, 0xa2, 0x12, 0x7a, 0xb3, 0x39, 0x9c, 0xa6, - 0x4c, 0x9e, 0x30, 0x2e, 0x27, 0x29, 0xa7, 0x9b, 0x8b, 0xd0, 0x29, 0xca, 0xe2, 0x0c, 0xe5, 0xde, - 0x7a, 0x7e, 0xe7, 0x27, 0xab, 0x34, 0x64, 0xc4, 0x69, 0xd8, 0x4a, 0x2b, 0xc6, 0xdf, 0x4b, 0xd1, - 0x99, 0xa4, 0x72, 0x5e, 0xa6, 0xd1, 0x69, 0xa9, 0x07, 0x8e, 0x6d, 0xbf, 0x7d, 0x1a, 0xb6, 0xae, - 0x20, 0x07, 0x0f, 0xd2, 0x09, 0xdd, 0xbe, 0xd6, 0x8d, 0x9b, 0xc2, 0xac, 0xb9, 0xab, 0x6b, 0x12, - 0xb4, 0x09, 0xf5, 0xd6, 0x74, 0x39, 0xdd, 0xc4, 0x8d, 0x82, 0xb0, 0x11, 0x12, 0x35, 0x2a, 0x82, - 0x46, 0x4e, 0xcc, 0xc8, 0x09, 0x19, 0x2d, 0x11, 0x4b, 0x97, 0xf2, 0x3e, 0x73, 0x43, 0xbd, 0x02, - 0xeb, 0x4c, 0x4e, 0x15, 0x91, 0x9f, 0x28, 0xbe, 0x3e, 0x8d, 0x6f, 0xa8, 0x0c, 0xdf, 0x10, 0x7c, - 0x43, 0xf0, 0x0d, 0xa5, 0xd3, 0x37, 0xa4, 0x5b, 0x55, 0xd1, 0x22, 0x21, 0x4e, 0x64, 0xc4, 0xcc, - 0x56, 0x91, 0x31, 0x9c, 0x2e, 0x75, 0xc7, 0xae, 0xf6, 0xd8, 0xd5, 0x1f, 0xaf, 0x1a, 0x24, 0x76, - 0x53, 0x64, 0x3e, 0x63, 0xb8, 0x2f, 0x42, 0x47, 0xf8, 0xca, 0x7e, 0x14, 0x0c, 0x29, 0xc3, 0x35, - 0xa4, 0x0c, 0xff, 0xfa, 0x87, 0x20, 0x65, 0x58, 0xdf, 0x7a, 0x48, 0x19, 0xce, 0xac, 0x88, 0x94, - 0x4b, 0x25, 0x64, 0x08, 0xa7, 0xed, 0xea, 0xc8, 0x10, 0xd6, 0x02, 0x7c, 0x76, 0x2b, 0x43, 0x78, - 0x86, 0x23, 0x15, 0x63, 0x8f, 0xcf, 0x0e, 0xe4, 0x5b, 0x8d, 0x63, 0x0c, 0x64, 0xae, 0xb3, 0xf1, - 0xe5, 0x33, 0xe6, 0x39, 0xab, 0xc0, 0x73, 0x06, 0xcf, 0x19, 0x3c, 0x67, 0xe9, 0xf4, 0x9c, 0x39, - 0xb6, 0xe7, 0x0c, 0x3c, 0x5b, 0x89, 0x8e, 0x65, 0x3f, 0xc8, 0xc0, 0x1b, 0x28, 0x61, 0xcd, 0xea, - 0x6e, 0xeb, 0xe1, 0x1f, 0x7a, 0x87, 0xda, 0x5b, 0x6e, 0x02, 0x7e, 0x36, 0xf8, 0xd9, 0xe0, 0x67, - 0x83, 0x9f, 0x2d, 0x53, 0x7e, 0xb6, 0x81, 0xeb, 0x2b, 0x94, 0xe5, 0xc3, 0xc7, 0x06, 0x1f, 0x1b, - 0x7c, 0x6c, 0xe9, 0xf1, 0xb1, 0xa1, 0x2c, 0x1f, 0x4e, 0xb7, 0x34, 0x9f, 0x4a, 0x84, 0xf3, 0x41, - 0x33, 0x40, 0x33, 0x40, 0x33, 0x40, 0x33, 0xde, 0x78, 0x62, 0x10, 0xce, 0x07, 0xd5, 0x00, 0xd5, - 0x00, 0xd5, 0x48, 0x1f, 0xd5, 0x40, 0x38, 0x1f, 0xcc, 0x22, 0x1d, 0x57, 0x44, 0x38, 0x5f, 0x5b, - 0x38, 0x5f, 0x63, 0x21, 0x9d, 0xfe, 0xbd, 0x46, 0x65, 0xa5, 0x59, 0xe9, 0x28, 0x68, 0xcd, 0xa6, - 0xd0, 0xd2, 0x04, 0xee, 0xf3, 0xec, 0xed, 0xa5, 0xa5, 0xfe, 0x73, 0xcf, 0xa0, 0x78, 0x8e, 0x78, - 0xa9, 0xe6, 0x4e, 0x4b, 0x85, 0x0b, 0x57, 0xaa, 0x53, 0xa5, 0xf4, 0x84, 0xa9, 0x47, 0xf8, 0xb9, - 0xe9, 0x89, 0x11, 0xb1, 0x1c, 0xd9, 0x72, 0x7f, 0xe0, 0x79, 0x1a, 0xea, 0x65, 0x2f, 0xed, 0xef, - 0xfa, 0x2f, 0x7a, 0x1d, 0x76, 0x44, 0x28, 0x3a, 0x1f, 0x9f, 0xe3, 0x4b, 0x1a, 0xdd, 0x57, 0xcd, - 0xea, 0x26, 0x5d, 0x6a, 0xa6, 0xa0, 0xa3, 0x64, 0x5a, 0x8b, 0x46, 0xd9, 0x4e, 0x89, 0x6c, 0x7e, - 0xf4, 0x37, 0xfb, 0xe6, 0x86, 0x42, 0xa5, 0x4b, 0x98, 0xd2, 0x20, 0x44, 0x9b, 0x6d, 0xd8, 0xfa, - 0x8f, 0x7b, 0x83, 0x47, 0x5d, 0xf0, 0x85, 0xfb, 0xf8, 0xf4, 0x10, 0x84, 0x9b, 0xcf, 0xbc, 0x98, - 0xfa, 0x81, 0x5e, 0x2f, 0xb5, 0xe1, 0x96, 0x6f, 0x97, 0x0a, 0xb8, 0xb5, 0x1b, 0x5a, 0x87, 0x9b, - 0x59, 0xa3, 0x1b, 0x59, 0x97, 0x9b, 0x58, 0xbb, 0x1b, 0x58, 0xbb, 0x9b, 0x57, 0xaf, 0x1b, 0x97, - 0x57, 0x4d, 0x6d, 0x9b, 0x1a, 0x37, 0x3d, 0x35, 0xdb, 0xef, 0xf3, 0xe2, 0x39, 0xdc, 0x76, 0x9b, - 0xf5, 0x64, 0xe6, 0x6a, 0xcb, 0xc4, 0xd5, 0x19, 0x05, 0x22, 0x88, 0xf6, 0xe8, 0x8e, 0xea, 0x90, - 0x45, 0x6f, 0xc8, 0xa2, 0x34, 0x34, 0xd1, 0x18, 0xb3, 0x54, 0x45, 0x57, 0xe6, 0x6b, 0xc1, 0xee, - 0x74, 0x42, 0x21, 0xa5, 0xfe, 0x46, 0x39, 0x93, 0x0b, 0xeb, 0xed, 0x91, 0x53, 0x42, 0x8f, 0x1c, - 0x2d, 0x97, 0x46, 0x8f, 0x1c, 0x56, 0x65, 0x91, 0x4e, 0x37, 0x9c, 0xf6, 0x50, 0xec, 0x54, 0x62, - 0x3d, 0x61, 0x77, 0x43, 0xd1, 0xd5, 0x29, 0xb1, 0x13, 0xab, 0xdf, 0xd0, 0x78, 0xcd, 0x9b, 0x98, - 0x7d, 0x7d, 0xf8, 0x10, 0xcf, 0x6e, 0x98, 0x28, 0xad, 0x3c, 0xb5, 0x43, 0xd3, 0x5a, 0x7b, 0x45, - 0x52, 0x73, 0x45, 0xd6, 0x00, 0xad, 0x02, 0xe5, 0x0e, 0xe5, 0xbe, 0xa3, 0xca, 0x5d, 0x7b, 0x03, - 0x34, 0xdd, 0x48, 0x91, 0x18, 0x31, 0x12, 0x21, 0x47, 0x32, 0x04, 0x49, 0xa9, 0x6c, 0x18, 0x94, - 0x0e, 0xb5, 0xf2, 0x61, 0x53, 0x42, 0x6c, 0xca, 0x88, 0x47, 0x29, 0xe9, 0x55, 0x4e, 0x9a, 0x95, - 0x14, 0x1d, 0x12, 0x5d, 0x92, 0x78, 0xb7, 0x6f, 0xd1, 0xe8, 0x97, 0x39, 0x00, 0x73, 0x4c, 0x70, - 0xed, 0xf8, 0xd9, 0x64, 0xae, 0x73, 0xfd, 0xeb, 0x93, 0xff, 0x56, 0x25, 0x7c, 0xf6, 0x4b, 0x7b, - 0x40, 0x59, 0xf4, 0x75, 0x63, 0x2b, 0x25, 0x42, 0x9f, 0x3c, 0x17, 0xb3, 0xf0, 0x9f, 0x77, 0xef, - 0xee, 0x4b, 0xd6, 0x71, 0xeb, 0xe5, 0xbe, 0x6c, 0x1d, 0xb7, 0xc6, 0x2f, 0xcb, 0xd1, 0x5f, 0xe3, - 0xd7, 0x95, 0xfb, 0x92, 0x55, 0x9d, 0xbc, 0xae, 0xdd, 0x97, 0xac, 0x5a, 0xeb, 0xe0, 0xef, 0xbf, - 0x3f, 0x1c, 0xfc, 0x38, 0x1c, 0xae, 0xff, 0xc5, 0x7f, 0x15, 0xb2, 0x96, 0x55, 0xf5, 0x3e, 0xc3, - 0x87, 0xa1, 0x8e, 0xc3, 0xb0, 0xd9, 0x61, 0xb0, 0xad, 0xee, 0xa9, 0xf5, 0x5b, 0xeb, 0x47, 0xf9, - 0x7d, 0x75, 0x78, 0x72, 0xf0, 0xa3, 0x31, 0x5c, 0x7c, 0xf3, 0x65, 0xd5, 0xc7, 0xca, 0xef, 0x1b, - 0xc3, 0x93, 0x84, 0x7f, 0xa9, 0x0f, 0x4f, 0xde, 0x78, 0x8d, 0xda, 0xf0, 0xdd, 0xd2, 0x47, 0x47, - 0xef, 0x57, 0x92, 0xbe, 0x50, 0x4d, 0xf8, 0xc2, 0x61, 0xd2, 0x17, 0x0e, 0x13, 0xbe, 0x90, 0x78, - 0x4b, 0x95, 0x84, 0x2f, 0xd4, 0x86, 0x2f, 0x4b, 0x9f, 0x7f, 0xb7, 0xfa, 0xa3, 0xf5, 0xe1, 0xc1, - 0x4b, 0xd2, 0xbf, 0x35, 0x86, 0x2f, 0x27, 0x07, 0x19, 0x54, 0x0d, 0xbb, 0x33, 0x2c, 0x41, 0xa3, - 0xc7, 0xa0, 0x23, 0x94, 0x70, 0x94, 0xe8, 0x58, 0xaf, 0x69, 0x25, 0x64, 0x34, 0x6f, 0xc5, 0x5a, - 0x60, 0x7c, 0x60, 0x7c, 0x60, 0x7c, 0x60, 0x7c, 0x5a, 0x25, 0x5e, 0xaa, 0xd0, 0xf5, 0x1f, 0x31, - 0x2a, 0x73, 0xbb, 0xdf, 0x3a, 0x49, 0xda, 0xb0, 0xa4, 0xb2, 0xd5, 0x80, 0xd0, 0xfb, 0xb7, 0xb8, - 0x10, 0x6c, 0x02, 0x6c, 0x02, 0x6c, 0x02, 0x6c, 0x82, 0x56, 0x89, 0x17, 0xfe, 0xa0, 0x27, 0x42, - 0x9b, 0xa8, 0xa7, 0xc1, 0xd4, 0x30, 0x54, 0x09, 0xae, 0xdd, 0xf4, 0x07, 0xbd, 0xd1, 0xc3, 0x19, - 0xee, 0x80, 0xd1, 0x09, 0x45, 0x37, 0x14, 0xf2, 0xc9, 0x0a, 0x45, 0x67, 0xe0, 0x90, 0x14, 0x93, - 0x4d, 0x25, 0x62, 0x79, 0x29, 0x18, 0x1e, 0x18, 0x1e, 0x18, 0x1e, 0x18, 0x1e, 0xad, 0x12, 0xff, - 0x10, 0x04, 0x9e, 0xb0, 0x49, 0x8d, 0x4e, 0x19, 0xa5, 0xa7, 0x6f, 0x91, 0xf6, 0x7c, 0x94, 0x9e, - 0x4e, 0x6b, 0x5a, 0xa6, 0xaf, 0x52, 0x36, 0xc8, 0x33, 0x0d, 0x85, 0x9c, 0x7a, 0xe2, 0x2c, 0xa8, - 0xe1, 0x44, 0x0d, 0x27, 0xc1, 0x79, 0x35, 0x5e, 0xb7, 0x79, 0x35, 0xb9, 0x11, 0x94, 0x6d, 0x66, - 0x40, 0x6e, 0xd2, 0x5c, 0xab, 0x29, 0x85, 0x94, 0x6e, 0xe0, 0x6b, 0x28, 0xd5, 0x9c, 0x5e, 0x09, - 0x95, 0x9a, 0xa8, 0xd4, 0x34, 0x46, 0x62, 0x32, 0x56, 0xa9, 0x19, 0x1f, 0x1a, 0x7d, 0x85, 0x9a, - 0x93, 0x0b, 0xa2, 0x4e, 0x93, 0xd1, 0x93, 0x81, 0x3a, 0x4d, 0xd4, 0x69, 0xfe, 0xe4, 0x42, 0xe2, - 0x7b, 0xdf, 0x73, 0x1d, 0x57, 0x59, 0x61, 0x30, 0x50, 0xc2, 0x0a, 0x1e, 0xfe, 0x9f, 0x70, 0x14, - 0x41, 0xd9, 0x66, 0xc2, 0x3a, 0x29, 0x2f, 0xf4, 0x41, 0x15, 0x67, 0xa6, 0x9c, 0x9c, 0x28, 0xf4, - 0x49, 0x73, 0xa1, 0xcf, 0x4a, 0x15, 0x40, 0x17, 0x81, 0x59, 0xbd, 0x1c, 0xa6, 0xb9, 0x21, 0x0a, - 0x63, 0x4e, 0x41, 0xb1, 0x29, 0x2a, 0x1e, 0x85, 0xa5, 0x57, 0x71, 0x69, 0x56, 0x60, 0x64, 0x8a, - 0x6c, 0x7a, 0x61, 0xd7, 0xef, 0x88, 0xef, 0xf4, 0x13, 0x13, 0xc6, 0xcb, 0x60, 0x54, 0x02, 0xb7, - 0x42, 0x63, 0x54, 0x6c, 0x5c, 0x0a, 0x8e, 0x5d, 0xd1, 0xb1, 0x2b, 0x3c, 0x5e, 0xc5, 0x47, 0xa3, - 0x00, 0x89, 0x14, 0xe1, 0xf4, 0xd1, 0xf0, 0x8d, 0x4a, 0xd0, 0xdf, 0xaf, 0x23, 0x11, 0x81, 0x35, - 0x68, 0x2b, 0x92, 0xe6, 0xfb, 0x79, 0x8c, 0x55, 0xf2, 0x2e, 0xcf, 0x0c, 0x22, 0x99, 0xbc, 0xbc, - 0x24, 0x3f, 0x14, 0x13, 0x98, 0x89, 0xb1, 0x3b, 0x39, 0x86, 0x87, 0xe9, 0x83, 0xe9, 0x83, 0xe9, - 0x4b, 0x19, 0x17, 0x98, 0x2e, 0x60, 0x4b, 0xfa, 0x51, 0x34, 0xaf, 0x9d, 0x4d, 0xa4, 0x4f, 0x2d, - 0xbc, 0x3c, 0xa3, 0x4c, 0xc8, 0x79, 0x02, 0xa7, 0xd2, 0x34, 0xa0, 0x3c, 0xb9, 0x95, 0xa8, 0x31, - 0x65, 0x6a, 0x4c, 0xa9, 0x9a, 0x51, 0xae, 0xb4, 0x4a, 0x96, 0x58, 0xd9, 0xf2, 0xf1, 0x8d, 0x15, - 0x8a, 0xd1, 0xf2, 0x07, 0xbd, 0x07, 0x11, 0x72, 0x9c, 0xb9, 0x58, 0x45, 0x36, 0x18, 0x96, 0xe2, - 0x99, 0xd8, 0x36, 0xf9, 0xc3, 0xa3, 0x43, 0xf6, 0xb9, 0x27, 0xb8, 0x31, 0xdb, 0xb6, 0xa5, 0x65, - 0x99, 0x27, 0xba, 0x4d, 0xd7, 0x35, 0x30, 0xb4, 0x8b, 0x49, 0xc3, 0xcc, 0x8b, 0x12, 0xe3, 0xa4, - 0xb7, 0xb4, 0x88, 0x52, 0xb5, 0x72, 0x5c, 0x3d, 0xae, 0x37, 0x2a, 0xc7, 0xb5, 0x1d, 0x92, 0xa9, - 0xbd, 0x7c, 0xac, 0xd2, 0xca, 0xe8, 0x60, 0x3b, 0xc2, 0x33, 0x4d, 0x1c, 0x59, 0x59, 0x82, 0x0b, - 0x94, 0x11, 0x16, 0x30, 0x29, 0x30, 0x29, 0x30, 0x29, 0x30, 0xa9, 0x8c, 0x32, 0xa9, 0x81, 0xeb, - 0xab, 0x7a, 0x95, 0x91, 0x46, 0x1d, 0x81, 0x46, 0x81, 0x46, 0x81, 0x46, 0x81, 0x46, 0x19, 0x10, - 0xa5, 0xf2, 0x51, 0xb5, 0x5a, 0x6f, 0x54, 0xab, 0xa5, 0xc6, 0x61, 0xa3, 0x74, 0x5c, 0xab, 0x95, - 0xeb, 0x65, 0x10, 0x2a, 0x10, 0xaa, 0x5c, 0x10, 0xaa, 0x99, 0xd9, 0xb3, 0x8c, 0xbc, 0x4a, 0xdb, - 0xc4, 0x5b, 0xd0, 0x2b, 0xd0, 0x2b, 0xd0, 0x2b, 0xd0, 0xab, 0x1c, 0xd2, 0xab, 0xc3, 0x0a, 0xa2, - 0x54, 0xa0, 0x57, 0xa0, 0x57, 0xa0, 0x57, 0x39, 0x17, 0x25, 0x44, 0xa9, 0x40, 0xaa, 0x72, 0x45, - 0xaa, 0xfa, 0x56, 0x9f, 0x07, 0xa5, 0xcf, 0x8e, 0x1b, 0xe2, 0x49, 0x5a, 0x05, 0x9d, 0x02, 0x9d, - 0x02, 0x9d, 0x02, 0x9d, 0xca, 0x16, 0x9d, 0xe2, 0x52, 0x8f, 0xfb, 0xc4, 0xc3, 0xd9, 0x92, 0x1e, - 0x65, 0xee, 0x18, 0xd5, 0xdc, 0x30, 0x37, 0x56, 0x4d, 0xb2, 0xcf, 0x34, 0xce, 0x6a, 0xd9, 0x12, - 0x31, 0x8d, 0xb7, 0x5a, 0x5a, 0x98, 0x75, 0xf6, 0x5b, 0x31, 0x5e, 0xec, 0xe0, 0xe5, 0xdd, 0x7d, - 0xd9, 0xaa, 0xb4, 0x26, 0xff, 0x71, 0x78, 0x5f, 0xb2, 0x2a, 0x2d, 0xd2, 0x01, 0x50, 0xbc, 0xd0, - 0x95, 0x99, 0x3c, 0x9a, 0x39, 0x9b, 0x75, 0x9c, 0x4d, 0x96, 0xb3, 0x89, 0x51, 0x74, 0xfc, 0xa3, - 0xe8, 0x8a, 0xef, 0xca, 0x23, 0x05, 0x76, 0x34, 0xd6, 0x69, 0xe5, 0xd6, 0x92, 0xaa, 0x1b, 0xab, - 0xae, 0xfc, 0x29, 0x2c, 0xf8, 0x0c, 0x0c, 0xf8, 0x0c, 0x3c, 0xfb, 0x41, 0x78, 0x7c, 0xfe, 0x82, - 0xf1, 0x72, 0xf0, 0x15, 0xc0, 0x57, 0x00, 0x5f, 0x01, 0x7c, 0x05, 0xf0, 0x15, 0xcc, 0x9c, 0xb8, - 0x5e, 0xdf, 0x93, 0x16, 0x87, 0x7e, 0x84, 0xb3, 0x40, 0xf3, 0xce, 0xb1, 0x05, 0xcd, 0x17, 0x77, - 0xaf, 0xc1, 0xb8, 0x24, 0x6f, 0x10, 0x9d, 0x7f, 0x37, 0xa7, 0x3f, 0xd4, 0x44, 0x50, 0x9d, 0x19, - 0xba, 0x24, 0x2e, 0x3f, 0x4d, 0x3c, 0xad, 0x1b, 0xba, 0x01, 0x83, 0x91, 0x51, 0x66, 0xc7, 0xc9, - 0xbc, 0xcc, 0x19, 0x88, 0xbe, 0xa7, 0x4e, 0xe6, 0x4a, 0xd5, 0xa3, 0x5a, 0xa3, 0xb6, 0xc3, 0x82, - 0xb7, 0x97, 0xcf, 0xd5, 0xe0, 0xef, 0xdc, 0x0e, 0x5e, 0xd0, 0x0e, 0xf3, 0xfc, 0x25, 0x42, 0xac, - 0x32, 0xae, 0x49, 0x33, 0xfc, 0xd3, 0xdc, 0x11, 0x80, 0xc7, 0x69, 0x79, 0x8f, 0xbd, 0x20, 0x90, - 0x82, 0xd1, 0xe3, 0x14, 0x2d, 0x07, 0x8f, 0xd3, 0x5a, 0x0b, 0xc1, 0xe3, 0xa4, 0x57, 0x3c, 0xe0, - 0x71, 0x82, 0xc7, 0xe9, 0x8d, 0x5e, 0x12, 0xc6, 0x13, 0x47, 0x37, 0xac, 0x35, 0x11, 0x4c, 0x94, - 0x61, 0x10, 0x97, 0x9e, 0x8d, 0xe2, 0xd8, 0xf8, 0xe9, 0xa6, 0x47, 0xab, 0xc1, 0x1c, 0xc2, 0x1c, - 0xc2, 0x1c, 0xc2, 0x1c, 0xc2, 0x1c, 0x1a, 0xe3, 0xd9, 0x9c, 0xfc, 0x9a, 0x89, 0x57, 0x0f, 0xd1, - 0xd4, 0x79, 0x9f, 0x70, 0xf6, 0xfa, 0xd2, 0x3a, 0xcc, 0x33, 0x7a, 0x27, 0x43, 0x6b, 0x27, 0x2f, - 0x8a, 0xab, 0x67, 0xe8, 0xad, 0x7e, 0x5b, 0xe7, 0xd8, 0x76, 0x7a, 0xe9, 0x48, 0xf7, 0x00, 0xa1, - 0x78, 0xec, 0x3b, 0x45, 0x97, 0x38, 0xbd, 0x43, 0xe0, 0x97, 0xae, 0x4e, 0x31, 0x14, 0x7e, 0x79, - 0x11, 0x82, 0x21, 0xf1, 0x4b, 0x8b, 0x68, 0x1d, 0x1a, 0x4f, 0x2d, 0x30, 0xc4, 0x0a, 0x29, 0x53, - 0x8a, 0xa8, 0x40, 0x32, 0x7d, 0x64, 0x8b, 0xf9, 0xf4, 0x9f, 0xc7, 0x3f, 0xa2, 0xdd, 0x8c, 0xef, - 0xf6, 0x76, 0x74, 0xb3, 0xd7, 0xe3, 0x7b, 0xdd, 0x4b, 0xa7, 0x52, 0x4b, 0xd7, 0x60, 0x48, 0x22, - 0xe9, 0x4e, 0xa9, 0x54, 0xeb, 0x91, 0x89, 0xed, 0x77, 0x50, 0xc3, 0xee, 0x15, 0xbc, 0xc0, 0xb1, - 0x3d, 0x4b, 0x6f, 0x73, 0xd5, 0x19, 0xc7, 0xff, 0xeb, 0xc5, 0xf5, 0x8e, 0xf5, 0x2d, 0x61, 0xac, - 0x6f, 0x9a, 0xfd, 0x0e, 0x18, 0xeb, 0x9b, 0x25, 0xed, 0xad, 0x9d, 0xe7, 0x13, 0x0e, 0x7b, 0xa3, - 0x18, 0xee, 0xb6, 0x3c, 0xcc, 0x6d, 0x56, 0x71, 0xe5, 0x48, 0xd9, 0x87, 0xc2, 0x09, 0xc2, 0x0e, - 0xf5, 0x5c, 0xf7, 0x95, 0xab, 0x60, 0xaa, 0x3b, 0xd4, 0x3f, 0xd4, 0x7f, 0x2a, 0xd5, 0xbf, 0xf6, - 0xa9, 0xee, 0x2b, 0x14, 0x00, 0xdd, 0x4c, 0xf7, 0x55, 0x8b, 0x61, 0xa2, 0x3b, 0x26, 0xba, 0x9b, - 0x53, 0x4e, 0x6c, 0x4a, 0x8a, 0x47, 0x59, 0xe9, 0xf7, 0x5d, 0xec, 0x63, 0xa2, 0xfb, 0xd2, 0x79, - 0xc2, 0x44, 0x77, 0x33, 0x0a, 0x8d, 0x51, 0xb1, 0x71, 0x29, 0x38, 0x76, 0x45, 0xc7, 0xae, 0xf0, - 0x78, 0x15, 0x1f, 0x8d, 0x02, 0x24, 0x52, 0x84, 0x74, 0xa4, 0x9e, 0x91, 0xe4, 0x73, 0x90, 0xfe, - 0x5f, 0x3b, 0x01, 0x30, 0xd1, 0x1d, 0x13, 0xdd, 0x4d, 0x61, 0x78, 0x98, 0x3e, 0x98, 0x3e, 0x98, - 0xbe, 0x94, 0x71, 0x81, 0xe9, 0x02, 0x76, 0xa7, 0x13, 0x0a, 0x29, 0x19, 0xa7, 0xba, 0xc7, 0x0b, - 0x22, 0x69, 0x38, 0x6d, 0xca, 0xd3, 0x80, 0x12, 0xe5, 0x56, 0xa6, 0xc6, 0x94, 0xaa, 0x31, 0xe5, - 0x6a, 0x46, 0xc9, 0xd2, 0x2a, 0x5b, 0x62, 0xa5, 0xcb, 0xc7, 0x3b, 0x96, 0x5d, 0x27, 0x7d, 0x8b, - 0x47, 0x3f, 0xee, 0xa3, 0x6b, 0x8b, 0xee, 0x9d, 0xfb, 0x56, 0x65, 0xdc, 0xbb, 0xa5, 0x3d, 0x44, - 0x8f, 0x57, 0xdd, 0x3d, 0x5e, 0xd1, 0xc3, 0x35, 0x4b, 0x87, 0xaf, 0x8e, 0xc3, 0xc7, 0x73, 0xf8, - 0xd0, 0xc4, 0x95, 0xbf, 0x89, 0x2b, 0xba, 0xb3, 0xa6, 0xec, 0x77, 0x64, 0x75, 0x4c, 0x26, 0x65, - 0xfc, 0x6f, 0x59, 0x2b, 0x13, 0xc6, 0x01, 0xc1, 0xf3, 0xc1, 0xf3, 0xc1, 0xf3, 0xc1, 0xf3, 0x33, - 0xca, 0xf3, 0x07, 0xae, 0xaf, 0x8e, 0x18, 0x29, 0x7e, 0x0d, 0x73, 0x31, 0x37, 0xff, 0x61, 0x98, - 0x8b, 0x49, 0xbf, 0x2e, 0xe6, 0x62, 0xe6, 0x56, 0x94, 0x2a, 0x35, 0x0c, 0xc4, 0x04, 0x7d, 0xca, - 0x01, 0x7d, 0x0a, 0x45, 0x3f, 0x08, 0x95, 0xe8, 0x58, 0x5d, 0xcf, 0x7e, 0x64, 0x8c, 0x98, 0x2e, - 0xac, 0x0b, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, - 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x05, 0x42, 0x95, 0x61, 0x42, 0xc5, 0x3c, 0x36, 0x70, - 0x61, 0x5d, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xcc, 0x0f, 0xcc, 0x30, - 0xab, 0xc2, 0xfc, 0xc0, 0x1c, 0xed, 0xa6, 0x51, 0xae, 0x6c, 0x98, 0xe8, 0x2c, 0x11, 0x1e, 0xcc, - 0x0f, 0x64, 0x96, 0x39, 0xcc, 0x0f, 0xc4, 0xfc, 0x40, 0xcc, 0x0f, 0xcc, 0xc0, 0xb1, 0xc5, 0xfc, - 0x40, 0xca, 0x35, 0x31, 0x3f, 0x30, 0x1d, 0xf7, 0x8f, 0x79, 0x0d, 0xab, 0xd6, 0x31, 0xdd, 0x50, - 0x7a, 0x55, 0x6f, 0xcc, 0x55, 0x6f, 0x62, 0x56, 0x83, 0x56, 0x67, 0x11, 0x66, 0x35, 0xfc, 0x14, - 0xb8, 0x62, 0x56, 0x03, 0xa7, 0x32, 0xca, 0x8c, 0x12, 0x4a, 0xed, 0x9c, 0x86, 0xdb, 0xe8, 0x5e, - 0x31, 0xa5, 0x21, 0x1d, 0x72, 0x9d, 0x4a, 0x79, 0xce, 0x53, 0xdb, 0x6e, 0xbd, 0x7d, 0xb8, 0x48, - 0xfa, 0x6e, 0xa1, 0x31, 0x37, 0x1a, 0x73, 0xef, 0xa3, 0x31, 0xb7, 0x5e, 0x7d, 0xad, 0xbd, 0x31, - 0x77, 0x47, 0x48, 0xe5, 0xfa, 0x91, 0x05, 0xb0, 0xa8, 0x7a, 0x58, 0x4d, 0x4f, 0xc5, 0xaa, 0xc5, - 0x68, 0x1a, 0x73, 0x97, 0xa8, 0x1a, 0x73, 0x97, 0xd0, 0x98, 0x9b, 0x41, 0x29, 0xb1, 0x29, 0x27, - 0x36, 0x25, 0xc5, 0xa3, 0xac, 0xb2, 0xc1, 0xbe, 0xc9, 0xa2, 0xf0, 0x3c, 0xfd, 0x9f, 0x28, 0xa3, - 0xec, 0xb4, 0x51, 0x75, 0x86, 0x86, 0xa1, 0x4c, 0xfd, 0x9b, 0x38, 0x5a, 0xc6, 0xb0, 0xb5, 0x88, - 0xc9, 0x4d, 0x3f, 0xa6, 0x56, 0x96, 0x1c, 0xcc, 0x3c, 0x87, 0xa1, 0x8e, 0xc3, 0xb0, 0xd9, 0x61, - 0x40, 0x7f, 0xa4, 0x5c, 0xf5, 0x47, 0x6a, 0x65, 0x24, 0x6e, 0xd1, 0x4a, 0xab, 0xdb, 0x50, 0xa3, - 0x27, 0x21, 0x4a, 0x47, 0xb4, 0x08, 0x12, 0xa2, 0x5e, 0xfb, 0xff, 0x4f, 0x56, 0x00, 0xbb, 0x03, - 0xbb, 0x03, 0xbb, 0x03, 0xbb, 0xd3, 0x2a, 0xf1, 0xa4, 0x39, 0xd5, 0x60, 0x77, 0x3f, 0x79, 0xf2, - 0xe4, 0x39, 0xd1, 0x0c, 0x39, 0xd0, 0x4c, 0x39, 0xcf, 0x0c, 0x35, 0x06, 0x9c, 0x39, 0xcd, 0xcc, - 0xf9, 0xa4, 0xec, 0x39, 0xcb, 0x26, 0x52, 0x45, 0x19, 0x92, 0x1b, 0x59, 0x73, 0x90, 0x8d, 0xc9, - 0x08, 0x67, 0x8e, 0xb1, 0x11, 0x41, 0xc9, 0x68, 0xc2, 0x21, 0xfc, 0x41, 0xf3, 0xe6, 0x93, 0x27, - 0xe7, 0x97, 0x23, 0xc7, 0x97, 0x38, 0xa7, 0x17, 0xbc, 0x7e, 0x73, 0x5e, 0x1f, 0x0c, 0x14, 0x35, - 0xb1, 0x1f, 0x2d, 0x01, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, - 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, 0x66, 0x0f, - 0x66, 0xaf, 0x9b, 0xd9, 0x07, 0x8e, 0xed, 0x59, 0x34, 0x73, 0x87, 0x5e, 0xb9, 0xfd, 0xcc, 0x22, - 0x60, 0xf7, 0x60, 0xf7, 0x60, 0xf7, 0x60, 0xf7, 0xda, 0x39, 0x66, 0xbd, 0x4a, 0xc8, 0xec, 0x09, - 0xf2, 0x1f, 0x89, 0x39, 0x25, 0x21, 0x34, 0xe1, 0xe0, 0x90, 0x5c, 0x4d, 0x39, 0x99, 0xba, 0x3f, - 0x73, 0x32, 0x00, 0xca, 0x86, 0xb0, 0x1c, 0xd4, 0x90, 0x7b, 0xeb, 0xcb, 0x47, 0xd5, 0x6a, 0xbd, - 0x51, 0xad, 0x96, 0x1a, 0x87, 0x8d, 0xd2, 0x71, 0xad, 0x56, 0xae, 0x97, 0x6b, 0x39, 0x92, 0x06, - 0x80, 0xed, 0xf4, 0x80, 0x6d, 0xd9, 0xb7, 0xdc, 0x0e, 0x21, 0xce, 0x1e, 0x5f, 0x1f, 0x10, 0x1b, - 0x10, 0x1b, 0x10, 0x1b, 0x10, 0x5b, 0x3b, 0xc4, 0x2e, 0xd7, 0x09, 0x21, 0x76, 0x1d, 0x10, 0x1b, - 0x10, 0x1b, 0x10, 0x3b, 0x97, 0x10, 0xbb, 0x5e, 0xab, 0x1d, 0x02, 0x53, 0x03, 0x53, 0x13, 0x60, - 0xea, 0x7e, 0x18, 0x28, 0x11, 0x6d, 0xbc, 0x15, 0x8a, 0xff, 0x1d, 0x08, 0xa9, 0x04, 0x21, 0xc2, - 0x5e, 0xb9, 0x1a, 0xf0, 0x36, 0xf0, 0x36, 0xf0, 0x36, 0xf0, 0xb6, 0x56, 0x89, 0x77, 0x3b, 0xc2, - 0x57, 0xae, 0x7a, 0x0e, 0x45, 0x97, 0x32, 0x63, 0x8d, 0xc0, 0x2a, 0x17, 0xce, 0xe3, 0x5b, 0xff, - 0x68, 0x4b, 0xc2, 0x73, 0x35, 0x79, 0x50, 0x37, 0xb7, 0xd7, 0x77, 0xcd, 0x4f, 0x77, 0xe7, 0xd7, - 0x57, 0xed, 0xbb, 0xbf, 0x6e, 0x9a, 0x54, 0xa7, 0x2b, 0x82, 0x32, 0x92, 0x34, 0x05, 0x8c, 0x69, - 0xb8, 0xd6, 0x97, 0xab, 0xf8, 0x91, 0x35, 0xcf, 0x0a, 0x59, 0x44, 0xc8, 0x4c, 0x8f, 0xe9, 0xe2, - 0xfc, 0xea, 0xcf, 0xf6, 0xd5, 0xf5, 0x59, 0xb3, 0x3d, 0x23, 0x61, 0xb7, 0xcd, 0x7f, 0x7f, 0x69, - 0x7e, 0xc6, 0x93, 0xfb, 0xf5, 0x93, 0x5b, 0x78, 0x68, 0xe7, 0xb7, 0xa4, 0xcf, 0x8c, 0xe4, 0xca, - 0xad, 0xb4, 0x1b, 0xb5, 0x54, 0x02, 0x72, 0x29, 0xfc, 0x8e, 0x08, 0x2d, 0x25, 0xfb, 0xc2, 0xa1, - 0x03, 0xe2, 0x73, 0xab, 0xd0, 0x00, 0xf0, 0x32, 0x00, 0x38, 0x00, 0x38, 0x00, 0x78, 0x3a, 0x01, - 0xb8, 0xee, 0x76, 0xa5, 0xaf, 0xfe, 0x04, 0x61, 0x7f, 0xb5, 0x3a, 0xb6, 0xb2, 0xad, 0x50, 0x67, - 0x23, 0xe4, 0x64, 0x8f, 0xc2, 0xfc, 0x7a, 0x44, 0x12, 0x43, 0xeb, 0xef, 0x23, 0x1f, 0x6d, 0xca, - 0x31, 0xd2, 0x94, 0x71, 0x94, 0x29, 0xd7, 0x08, 0x53, 0xf6, 0xd1, 0xa5, 0xec, 0x23, 0x4b, 0x79, - 0x47, 0x95, 0x66, 0x6b, 0xcc, 0x0d, 0xf9, 0x48, 0xd2, 0x57, 0x5f, 0x85, 0x10, 0xa2, 0xeb, 0x05, - 0x36, 0x4f, 0x9d, 0x17, 0xe1, 0x08, 0xd2, 0xc2, 0x85, 0xf0, 0x1f, 0xa3, 0xc9, 0x02, 0x28, 0xf4, - 0x4a, 0x8f, 0x79, 0x59, 0xed, 0x8b, 0x29, 0x9c, 0xec, 0x57, 0x51, 0xe7, 0xb5, 0x95, 0x88, 0xec, - 0x40, 0x9d, 0x57, 0x15, 0x15, 0x5e, 0x69, 0xbb, 0x7a, 0x56, 0x1a, 0x76, 0x12, 0x1c, 0xc1, 0x02, - 0x0f, 0xa7, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, 0x00, 0x93, - 0x00, 0x93, 0x00, 0x93, 0x80, 0x88, 0x80, 0x49, 0xe4, 0x8b, 0x49, 0x48, 0xf7, 0xff, 0x18, 0x98, - 0x44, 0xb4, 0x0a, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, - 0x04, 0x98, 0x04, 0x98, 0x04, 0x44, 0x04, 0x4c, 0xc2, 0x0c, 0x93, 0x48, 0x75, 0x52, 0x16, 0xd1, - 0xcc, 0xff, 0x57, 0xce, 0x63, 0x78, 0xf6, 0x7f, 0x34, 0xc4, 0xbe, 0x48, 0x98, 0x7a, 0x3a, 0xfe, - 0x95, 0x2a, 0x1c, 0x38, 0xca, 0x8f, 0x71, 0xcc, 0xd5, 0xf8, 0xb6, 0xcf, 0xe3, 0xbb, 0x6e, 0x5f, - 0xf6, 0x3d, 0xd9, 0xfe, 0x3c, 0xb9, 0xeb, 0x9b, 0xc9, 0x4d, 0xb7, 0x6f, 0xe5, 0xb7, 0xfe, 0x9d, - 0x68, 0x7f, 0x1e, 0xdf, 0x6a, 0xfb, 0x73, 0x74, 0x93, 0x77, 0xd1, 0x3d, 0xee, 0x44, 0xd2, 0x71, - 0xf4, 0xb3, 0xad, 0xf8, 0xa9, 0x91, 0x25, 0x1d, 0xcf, 0xac, 0x82, 0xaa, 0x3f, 0x24, 0x1d, 0x9b, - 0x67, 0xb9, 0x48, 0x3a, 0x66, 0xb4, 0x6f, 0xf4, 0x55, 0x7f, 0x52, 0x85, 0xae, 0xff, 0x48, 0x59, - 0xf0, 0x77, 0xb4, 0x0b, 0xd6, 0x20, 0x3a, 0xdc, 0xd3, 0xf9, 0xc8, 0x74, 0xf6, 0x60, 0x7e, 0x1d, - 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0x58, 0x04, 0xad, 0x12, 0xef, 0xf6, 0x09, 0xe7, 0xbc, 0x63, - 0x70, 0xc9, 0x4f, 0x9f, 0xfc, 0xb7, 0x2a, 0x66, 0xec, 0xaf, 0xb9, 0x50, 0x3c, 0x63, 0xbf, 0xf5, - 0x72, 0x5f, 0xb6, 0x8e, 0x5b, 0xe3, 0x97, 0xe5, 0xe8, 0xaf, 0xf1, 0xeb, 0xca, 0x7d, 0xc9, 0xaa, - 0x4e, 0x5e, 0xd7, 0xee, 0x4b, 0x56, 0xad, 0x75, 0xf0, 0xf7, 0xdf, 0x1f, 0x0e, 0x7e, 0x1c, 0x0e, - 0xd7, 0xff, 0x62, 0xf6, 0xa6, 0xca, 0xbf, 0xcf, 0xf0, 0x61, 0xa8, 0xe3, 0x30, 0x6c, 0x76, 0x18, - 0x6c, 0xab, 0x7b, 0x6a, 0xfd, 0xd6, 0xfa, 0x51, 0x7e, 0x5f, 0x1d, 0x9e, 0x1c, 0xfc, 0x68, 0x0c, - 0x17, 0xdf, 0x7c, 0x59, 0xf5, 0xb1, 0xf2, 0xfb, 0xc6, 0xf0, 0x24, 0xe1, 0x5f, 0xea, 0xc3, 0x93, - 0x37, 0x5e, 0xa3, 0x36, 0x7c, 0xb7, 0xf4, 0xd1, 0xd1, 0xfb, 0x95, 0xa4, 0x2f, 0x54, 0x13, 0xbe, - 0x70, 0x98, 0xf4, 0x85, 0xc3, 0x84, 0x2f, 0x24, 0xde, 0x52, 0x25, 0xe1, 0x0b, 0xb5, 0xe1, 0xcb, - 0xd2, 0xe7, 0xdf, 0xad, 0xfe, 0x68, 0x7d, 0x78, 0xf0, 0x92, 0xf4, 0x6f, 0x8d, 0xe1, 0xcb, 0xc9, - 0x41, 0x06, 0x55, 0x03, 0xba, 0x7f, 0x6d, 0xc2, 0xf4, 0x94, 0xad, 0x06, 0x94, 0x0c, 0x6f, 0x7c, - 0x7d, 0x30, 0x3b, 0x30, 0x3b, 0x30, 0x3b, 0x30, 0x3b, 0xad, 0x12, 0x4f, 0x3b, 0xd9, 0x89, 0x72, - 0xa2, 0x13, 0xd1, 0x24, 0xa7, 0x74, 0x9a, 0x18, 0x35, 0xf0, 0x7d, 0xe1, 0x91, 0xf6, 0x6d, 0x7f, - 0x5d, 0x02, 0x86, 0x06, 0x86, 0x06, 0x86, 0x06, 0x86, 0x46, 0xab, 0xc4, 0xa3, 0x75, 0x3b, 0xa7, - 0xc7, 0x04, 0xad, 0xdb, 0xd7, 0x5f, 0x07, 0xad, 0xdb, 0x53, 0xbb, 0xf5, 0x68, 0xdd, 0x0e, 0xe7, - 0x0d, 0x15, 0xb2, 0xa6, 0xb0, 0x7c, 0xaf, 0xa0, 0x7a, 0x74, 0x75, 0xe0, 0x69, 0xe0, 0x69, 0xe0, - 0x69, 0xe0, 0x69, 0xad, 0x12, 0x8f, 0xd6, 0xec, 0x6f, 0x7c, 0x50, 0x17, 0x9f, 0x6f, 0xda, 0xb7, - 0xd7, 0x17, 0xe8, 0xc9, 0xfe, 0xcb, 0x27, 0x75, 0x77, 0x7b, 0x7a, 0xf5, 0xf9, 0xfc, 0x0e, 0x5d, - 0xc5, 0x93, 0x1f, 0x51, 0xf3, 0xf7, 0xdb, 0xe6, 0xe7, 0xcf, 0x78, 0x42, 0xc9, 0x4f, 0xe8, 0xfc, - 0x8a, 0xfa, 0x11, 0xa1, 0xcd, 0x7a, 0x0a, 0xae, 0xa4, 0x49, 0x50, 0xa9, 0xaa, 0x75, 0xd2, 0x51, - 0xa5, 0xa3, 0xe7, 0x10, 0x6c, 0xbf, 0x61, 0xdb, 0x5d, 0x61, 0xcb, 0xad, 0x1e, 0x01, 0xdc, 0x68, - 0x2e, 0x6c, 0xe0, 0xd8, 0x9e, 0xe5, 0xfa, 0x1d, 0xb1, 0x2d, 0xc2, 0x2d, 0x5c, 0xb8, 0x52, 0x9d, - 0x2a, 0xa5, 0xa7, 0xf9, 0x76, 0xe1, 0xd2, 0xf5, 0x9b, 0x9e, 0x18, 0x01, 0xd6, 0x91, 0x15, 0xf7, - 0x07, 0x9e, 0xf7, 0x7e, 0x4f, 0x87, 0x17, 0x46, 0xff, 0x45, 0xaf, 0xc3, 0x8e, 0x08, 0x45, 0xe7, - 0xe3, 0x73, 0x7c, 0x49, 0xa3, 0xdb, 0xaa, 0xf9, 0xe4, 0x9a, 0x3e, 0xb1, 0x1a, 0xe0, 0xa1, 0x96, - 0xa2, 0xb9, 0xed, 0x74, 0xc6, 0xe6, 0x27, 0x7d, 0xb3, 0x6f, 0x6e, 0x28, 0x44, 0xba, 0x84, 0xc7, - 0x94, 0xd0, 0x6c, 0xb6, 0x49, 0xeb, 0x3f, 0xe2, 0xf5, 0xbe, 0xb1, 0xe6, 0x66, 0x6c, 0xbb, 0x09, - 0xcc, 0x0f, 0x7f, 0x83, 0x03, 0xba, 0xd5, 0x81, 0x5c, 0x6f, 0x8f, 0xdf, 0xbe, 0x53, 0x6b, 0xec, - 0x52, 0x41, 0x8a, 0xc7, 0x91, 0x09, 0xb1, 0xc2, 0x60, 0xa0, 0x5c, 0xff, 0x71, 0xed, 0x6d, 0x9a, - 0x29, 0x1a, 0x9d, 0xbf, 0xd0, 0x9a, 0x92, 0xb2, 0xd9, 0x30, 0x9a, 0x8d, 0x5d, 0x8a, 0xdb, 0xb8, - 0x0c, 0x67, 0x5d, 0x82, 0x32, 0xdc, 0x44, 0x68, 0xb6, 0x74, 0xf8, 0x69, 0x73, 0xe8, 0x69, 0x73, - 0xd8, 0x2d, 0x3a, 0xe4, 0x64, 0x58, 0x48, 0x99, 0x26, 0xda, 0x74, 0x90, 0x4a, 0xc1, 0x7e, 0x7c, - 0x0c, 0xc5, 0xa3, 0xad, 0x84, 0x25, 0xdd, 0x8e, 0xe5, 0x04, 0x03, 0x5f, 0x89, 0x70, 0xf3, 0x54, - 0xcc, 0xa9, 0xf0, 0x24, 0x5c, 0x77, 0xc3, 0xe7, 0xbf, 0xdd, 0x2c, 0xa7, 0xad, 0x3d, 0xf3, 0x3a, - 0x3c, 0xf0, 0x5b, 0x1f, 0x2b, 0x5d, 0xc7, 0x4b, 0xfb, 0x31, 0xd3, 0x7e, 0xdc, 0x74, 0x1e, 0x3b, - 0x33, 0xe8, 0x6c, 0xdb, 0xb9, 0x46, 0xab, 0x8f, 0xcf, 0xf6, 0x5b, 0xfe, 0xd3, 0xd3, 0xb9, 0xed, - 0xf6, 0xeb, 0x19, 0xb8, 0xf6, 0x7a, 0x58, 0x2b, 0x5b, 0x5e, 0x48, 0x63, 0xd8, 0x4c, 0xdb, 0xe1, - 0xd5, 0x7d, 0x88, 0xc9, 0x0e, 0x33, 0xd9, 0xa1, 0xa6, 0x38, 0xdc, 0xe9, 0x70, 0xd3, 0xe8, 0x1a, - 0x66, 0x56, 0x18, 0x01, 0x79, 0xcb, 0xb3, 0x1f, 0x84, 0xa7, 0x4f, 0x3e, 0x26, 0x02, 0x3c, 0x73, - 0x6d, 0x4d, 0xfb, 0xa8, 0x37, 0x9a, 0xae, 0x3d, 0x8a, 0x4e, 0x11, 0x3d, 0xd7, 0xae, 0x0e, 0xa8, - 0xd4, 0x02, 0xb9, 0x7a, 0x20, 0x57, 0x13, 0x94, 0xea, 0x42, 0x9f, 0x7f, 0x78, 0x5f, 0xa3, 0x43, - 0x5f, 0x7b, 0xe4, 0x7b, 0x2a, 0xad, 0x9e, 0xb0, 0xbb, 0x7a, 0xa3, 0xdd, 0x53, 0x9b, 0xdf, 0xd0, - 0x78, 0xcd, 0x9b, 0xd8, 0x1f, 0xf2, 0xe1, 0x43, 0xdc, 0xaa, 0x6b, 0x46, 0x67, 0xa5, 0x25, 0x1e, - 0xa0, 0xc5, 0xd7, 0xa9, 0x73, 0x8a, 0xcc, 0x5c, 0xad, 0x9b, 0xd0, 0xac, 0xdb, 0xcb, 0xba, 0x75, - 0x7b, 0x05, 0xba, 0x1d, 0xba, 0x7d, 0x07, 0x75, 0xbb, 0xee, 0x79, 0xb7, 0x05, 0xd7, 0xb7, 0x02, - 0x47, 0x09, 0x45, 0x58, 0x3c, 0xfb, 0xba, 0x04, 0xd2, 0x30, 0x39, 0xd2, 0x30, 0xb5, 0x2a, 0x1d, - 0x6a, 0xe5, 0xc3, 0xa6, 0x84, 0xd8, 0x94, 0x11, 0x87, 0x52, 0xd2, 0xab, 0x9c, 0x34, 0x2b, 0x29, - 0x3a, 0x20, 0xba, 0x24, 0xed, 0xb1, 0xe3, 0xa9, 0x5e, 0x25, 0x4c, 0xc0, 0x3c, 0x42, 0x55, 0xd3, - 0xeb, 0x8d, 0xa3, 0xaa, 0x69, 0xfd, 0x75, 0x50, 0xd5, 0x94, 0xda, 0xad, 0x2f, 0x1f, 0x55, 0xab, - 0xf5, 0x46, 0xb5, 0x5a, 0x6a, 0x1c, 0x36, 0x4a, 0xc7, 0xb5, 0x5a, 0xb9, 0x5e, 0x46, 0x91, 0x13, - 0xfb, 0x55, 0x77, 0xa1, 0xc8, 0xc9, 0xf5, 0xad, 0xfe, 0x57, 0x62, 0x94, 0x1d, 0x2d, 0x00, 0x8c, - 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, 0x0d, 0x8c, - 0x0d, 0x8c, 0xbd, 0x23, 0x18, 0x9b, 0x20, 0xed, 0x61, 0xc9, 0x1a, 0x6a, 0x4f, 0x7f, 0x00, 0xd2, - 0x06, 0xd2, 0x06, 0xd2, 0x06, 0xd2, 0xa6, 0xd4, 0x2d, 0xfb, 0xe8, 0xf1, 0xff, 0xf3, 0x27, 0x3f, - 0x70, 0x7d, 0x9e, 0x01, 0xb1, 0x0d, 0xc2, 0x25, 0x68, 0x09, 0x0f, 0xfd, 0x6e, 0xb0, 0x12, 0x20, - 0x66, 0x34, 0xbc, 0x8c, 0x8a, 0xeb, 0x18, 0x10, 0x9b, 0x76, 0xa6, 0x64, 0x5c, 0x46, 0x4a, 0xd5, - 0xa3, 0x5a, 0xa3, 0x86, 0x31, 0xb1, 0x69, 0xbb, 0x3a, 0xa6, 0x82, 0xcc, 0x9b, 0x4f, 0xda, 0x16, - 0xd6, 0x4b, 0x08, 0x86, 0x70, 0x70, 0x32, 0x51, 0x4b, 0x6b, 0xf0, 0xfa, 0x6d, 0xf6, 0x24, 0x18, - 0x28, 0xf2, 0x24, 0xb5, 0x99, 0x35, 0xc0, 0xeb, 0xc1, 0xeb, 0xc1, 0xeb, 0xc1, 0xeb, 0xb5, 0x49, - 0x3b, 0x22, 0x68, 0xcc, 0xb8, 0x04, 0x11, 0xb4, 0x54, 0xc3, 0x7f, 0x44, 0xd0, 0xd6, 0xe4, 0x81, - 0x88, 0xa0, 0x01, 0x69, 0xb3, 0x21, 0x6d, 0xda, 0x34, 0xb5, 0xe9, 0x0a, 0x40, 0xd9, 0x40, 0xd9, - 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, - 0x69, 0x46, 0xd9, 0xe8, 0xd9, 0xad, 0xaf, 0x9f, 0xe8, 0x42, 0x2f, 0xcc, 0xe2, 0xea, 0x5e, 0x7f, - 0xab, 0xdf, 0x46, 0x5f, 0xef, 0x39, 0x9c, 0xac, 0x35, 0x6f, 0x08, 0x6d, 0xbd, 0xd1, 0xd6, 0xdb, - 0xc8, 0xa1, 0x36, 0xd7, 0xfa, 0xfb, 0xf3, 0xf8, 0xae, 0x6f, 0xc7, 0x37, 0xdd, 0x3e, 0x9d, 0xdc, - 0xdd, 0x67, 0xb7, 0xf3, 0x29, 0xbe, 0x37, 0xb4, 0x03, 0xcf, 0xaa, 0xb0, 0xb1, 0x35, 0x09, 0xdf, - 0xa0, 0xc7, 0xb1, 0x3b, 0xba, 0xc3, 0xae, 0xed, 0x08, 0x0d, 0xbd, 0x72, 0x67, 0xae, 0x85, 0xfe, - 0xb8, 0xe8, 0x8f, 0x6b, 0xc4, 0x2d, 0x95, 0xb1, 0xfe, 0xb8, 0xd3, 0x23, 0xa3, 0xaf, 0x27, 0xee, - 0xeb, 0x25, 0x53, 0xd6, 0x07, 0xb7, 0x84, 0x3e, 0xb8, 0xe6, 0x0e, 0x2d, 0xd9, 0xe1, 0xa5, 0x38, - 0xc4, 0xe9, 0xa0, 0x35, 0xda, 0xfa, 0xe0, 0x3a, 0x93, 0x13, 0xa0, 0xb9, 0x45, 0x62, 0x7c, 0xdd, - 0x94, 0xf7, 0x48, 0x44, 0xff, 0x5b, 0x9d, 0xce, 0x48, 0xf4, 0x48, 0xcc, 0x8a, 0x73, 0x8c, 0xa0, - 0x47, 0x62, 0x6c, 0xd8, 0x2d, 0xb7, 0x43, 0xd9, 0xc0, 0x65, 0x66, 0x15, 0x44, 0xc7, 0x11, 0x1d, - 0x37, 0xa5, 0x8a, 0xd8, 0x54, 0x12, 0x87, 0x6a, 0xd2, 0xab, 0xa2, 0x34, 0xab, 0xaa, 0xe9, 0x03, - 0xa0, 0x8f, 0x8e, 0x4b, 0x15, 0xae, 0x3f, 0x75, 0x6a, 0x2d, 0xf8, 0x72, 0x84, 0xc8, 0x0d, 0x9f, - 0x9f, 0x2d, 0x2d, 0x7e, 0xb7, 0x57, 0xcf, 0xd3, 0xeb, 0xcb, 0x62, 0x0c, 0x8f, 0x73, 0xd4, 0x6a, - 0x9d, 0x04, 0x01, 0x50, 0x5a, 0x7e, 0x0c, 0xd5, 0x00, 0xa9, 0x00, 0xa9, 0xc0, 0x50, 0x0d, 0x92, - 0xa1, 0x1a, 0x63, 0xfd, 0x5e, 0x9c, 0x53, 0x5b, 0xb9, 0x54, 0xf6, 0xa3, 0x6d, 0x21, 0xd4, 0xf6, - 0xfa, 0x76, 0x7d, 0xd7, 0x7d, 0x48, 0x6e, 0x17, 0xea, 0xde, 0x80, 0xba, 0x77, 0xbb, 0xf0, 0x21, - 0xbd, 0xf1, 0x82, 0x9a, 0x5d, 0xd1, 0x4b, 0x87, 0x40, 0xab, 0x4b, 0x9a, 0x48, 0xad, 0xe4, 0xc6, - 0x6f, 0xa4, 0x55, 0xdd, 0xc0, 0x6f, 0x94, 0x46, 0x75, 0x94, 0x0d, 0xbf, 0x91, 0x6e, 0x35, 0xb5, - 0x8c, 0x81, 0xe8, 0xc4, 0x51, 0x77, 0xd8, 0x9c, 0x89, 0x0a, 0xb3, 0x29, 0x33, 0x0e, 0xa5, 0xc6, - 0xa6, 0xdc, 0xb8, 0x94, 0x1c, 0xbb, 0xb2, 0x63, 0x57, 0x7a, 0x9c, 0xca, 0x8f, 0x46, 0x09, 0x12, - 0x29, 0x43, 0x3a, 0xaa, 0xce, 0x48, 0xdd, 0x39, 0xa8, 0x7c, 0x22, 0xb5, 0x2f, 0x46, 0x62, 0x74, - 0x32, 0xe3, 0xd3, 0x5d, 0x78, 0x23, 0xfe, 0xef, 0x28, 0xc7, 0x36, 0x23, 0xf5, 0x24, 0x04, 0x42, - 0x56, 0x90, 0x83, 0x07, 0x46, 0xfb, 0x38, 0xb7, 0x1a, 0x4c, 0x24, 0x4c, 0x24, 0x4c, 0x24, 0x4c, - 0x24, 0x4c, 0x64, 0x4a, 0x4d, 0xe4, 0xfd, 0xab, 0x89, 0xfc, 0x2f, 0x67, 0x10, 0x86, 0xc2, 0x57, - 0xef, 0x0e, 0x8a, 0x1f, 0x3e, 0xbc, 0x7a, 0xcb, 0x5b, 0xf1, 0x57, 0x66, 0xf5, 0xba, 0x5c, 0xf1, - 0xde, 0xf4, 0xca, 0x1d, 0xf1, 0x3d, 0x33, 0xd6, 0x36, 0xd5, 0x6c, 0xb9, 0xf9, 0x3d, 0xaa, 0x19, - 0xd3, 0x5f, 0x68, 0x4f, 0xef, 0xb0, 0x09, 0x1c, 0x4b, 0x7c, 0x57, 0x27, 0x4a, 0x78, 0xa2, 0x27, - 0x54, 0xf8, 0x6c, 0x05, 0xbe, 0xe5, 0x3c, 0x45, 0x9d, 0x03, 0x58, 0x9c, 0x38, 0x5d, 0xdb, 0x93, - 0x1c, 0x5e, 0x9c, 0xb4, 0x3b, 0x70, 0x5a, 0xba, 0x1d, 0xea, 0x34, 0xe9, 0x20, 0xaf, 0x50, 0x35, - 0x45, 0x69, 0x21, 0x73, 0x81, 0x2f, 0xad, 0x49, 0x22, 0xfa, 0xf7, 0x5a, 0x67, 0x53, 0x25, 0xbd, - 0x73, 0xfa, 0x97, 0xf9, 0x81, 0xc6, 0x79, 0xfd, 0x4b, 0x36, 0x95, 0xca, 0xf1, 0x5f, 0x81, 0xe3, - 0x9f, 0x0d, 0xf0, 0xc3, 0xf1, 0x9f, 0x3f, 0x28, 0x03, 0xc7, 0x3f, 0xbc, 0x1a, 0xf0, 0x6a, 0xc0, - 0xab, 0x01, 0xaf, 0x06, 0xbc, 0x1a, 0x0c, 0x5e, 0x0d, 0x38, 0xfe, 0xf7, 0xe1, 0xf8, 0x87, 0x89, - 0x84, 0x89, 0x84, 0x89, 0x84, 0x89, 0x84, 0x89, 0x84, 0xe3, 0x3f, 0x5b, 0x6c, 0x79, 0x77, 0xbd, - 0xac, 0x1a, 0x9b, 0x25, 0xea, 0xdf, 0x6a, 0x54, 0x66, 0x1a, 0x15, 0x8e, 0x82, 0x56, 0x1f, 0xb7, - 0x86, 0xe6, 0x7b, 0xe7, 0x93, 0xbb, 0x7b, 0x7d, 0x75, 0x2b, 0xba, 0x79, 0x2a, 0x2d, 0x9a, 0x6b, - 0x4e, 0xa7, 0xbd, 0xb2, 0x68, 0xee, 0xea, 0x28, 0x2c, 0xd2, 0x01, 0xf8, 0x51, 0x47, 0xba, 0x8f, - 0x3a, 0xd2, 0xfd, 0x34, 0x17, 0x16, 0xcd, 0x76, 0x51, 0xa5, 0x8b, 0x31, 0x6a, 0x6d, 0xd5, 0x4a, - 0xa8, 0x60, 0x96, 0x15, 0x4d, 0x05, 0xad, 0x69, 0xd8, 0x3c, 0x0c, 0x68, 0x4d, 0x93, 0x3f, 0xee, - 0x44, 0x16, 0x69, 0xec, 0x06, 0xe1, 0x3f, 0x76, 0xd8, 0x19, 0xa1, 0x58, 0xc7, 0xb3, 0xa5, 0x14, - 0x92, 0xde, 0xa5, 0xba, 0x62, 0x4d, 0x5a, 0xc7, 0x6a, 0x19, 0x8e, 0x55, 0x73, 0xea, 0x8e, 0x4b, - 0xed, 0xb1, 0xab, 0x3f, 0x76, 0x35, 0xc8, 0xa9, 0x0e, 0xe9, 0x9c, 0x54, 0xfb, 0x84, 0x8e, 0x55, - 0x2a, 0x35, 0x99, 0xa8, 0x2e, 0xe9, 0xa5, 0x39, 0x49, 0x69, 0x52, 0x0b, 0x35, 0xad, 0xea, 0x24, - 0x47, 0x88, 0x26, 0x54, 0x29, 0xbb, 0x4a, 0xe5, 0x56, 0xad, 0xc6, 0x54, 0xac, 0x31, 0x55, 0x6b, - 0x42, 0xe5, 0xd2, 0xaa, 0x5e, 0x62, 0x15, 0xcc, 0xa6, 0x8a, 0xa7, 0x0b, 0x89, 0xef, 0x7d, 0x3e, - 0xc1, 0x9f, 0x9c, 0xec, 0xd1, 0xa2, 0x4c, 0x92, 0xc7, 0x33, 0x80, 0x8d, 0x0d, 0xd3, 0x9a, 0x54, - 0xcc, 0xc6, 0x14, 0xb4, 0x29, 0x45, 0x6d, 0x5c, 0x61, 0x1b, 0x57, 0xdc, 0x26, 0x15, 0x38, 0x8f, - 0x22, 0x67, 0x52, 0xe8, 0xd3, 0x07, 0x49, 0x9e, 0xbc, 0x90, 0x78, 0x5a, 0xe9, 0x93, 0x19, 0x12, - 0x51, 0x70, 0x83, 0x71, 0xcd, 0x99, 0x1e, 0x7f, 0x51, 0xe0, 0xb8, 0x38, 0x32, 0x36, 0x7b, 0xf9, - 0x10, 0x54, 0x06, 0x21, 0x25, 0xaa, 0xf4, 0xf9, 0xa5, 0x74, 0x52, 0x54, 0x00, 0x19, 0x66, 0x67, - 0xec, 0x2c, 0x0d, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x20, 0x83, 0xa0, 0x80, 0x8b, 0xed, 0x19, 0x61, - 0x7d, 0x06, 0xd9, 0x9f, 0x21, 0x16, 0x68, 0x8c, 0x0d, 0x9a, 0x34, 0x00, 0xc6, 0x0d, 0x81, 0x69, - 0x83, 0x90, 0x1a, 0xc3, 0x90, 0x1a, 0x03, 0x91, 0x06, 0x43, 0xc1, 0x6b, 0x30, 0x98, 0x0d, 0x87, - 0x39, 0x56, 0xb9, 0x74, 0xda, 0x07, 0xae, 0xaf, 0x8e, 0x4c, 0x9c, 0xf6, 0x58, 0xb5, 0xd7, 0x0c, - 0x2c, 0x7d, 0x1b, 0xf5, 0x2e, 0xa1, 0x68, 0xc6, 0xf2, 0x96, 0x3f, 0x66, 0xb4, 0xdb, 0x7e, 0x3c, - 0x14, 0xdd, 0x98, 0x7a, 0x35, 0x6c, 0xd3, 0x97, 0x6e, 0xe3, 0xbf, 0x6d, 0x6f, 0x20, 0x52, 0x70, - 0x1f, 0xbf, 0x85, 0xb6, 0xa3, 0xdc, 0xc0, 0x3f, 0x73, 0x1f, 0xdd, 0xa8, 0x45, 0x50, 0xc9, 0xd8, - 0xfd, 0x0c, 0xdf, 0x1b, 0x14, 0x4d, 0xfb, 0x3b, 0x44, 0x73, 0x41, 0x34, 0x1b, 0x10, 0x4d, 0x33, - 0x30, 0xc0, 0xdc, 0xaa, 0xad, 0xbd, 0x7c, 0xfe, 0x3e, 0x46, 0xd5, 0x52, 0x70, 0x7d, 0x2b, 0x70, - 0x94, 0x50, 0xd2, 0x1c, 0x55, 0x7e, 0xbd, 0x05, 0x10, 0x66, 0x10, 0x66, 0x10, 0x66, 0x10, 0x66, - 0x10, 0xe6, 0x9c, 0x10, 0xe6, 0xb8, 0x14, 0xa5, 0x5e, 0x35, 0x48, 0x9a, 0x8f, 0x40, 0x9a, 0x41, - 0x9a, 0x41, 0x9a, 0x41, 0x9a, 0x41, 0x9a, 0x97, 0x44, 0xb3, 0x7c, 0x54, 0xad, 0xd6, 0x1b, 0xd5, - 0x6a, 0xa9, 0x71, 0xd8, 0x28, 0x1d, 0xd7, 0x6a, 0xe5, 0x7a, 0xb9, 0x06, 0x69, 0x05, 0x8f, 0x06, - 0x8f, 0xde, 0x80, 0x47, 0xf7, 0xbf, 0x1a, 0x66, 0xd1, 0xd1, 0x0d, 0x80, 0x43, 0x83, 0x43, 0x83, - 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, - 0x43, 0x83, 0x43, 0x83, 0x43, 0x83, 0x43, 0xa7, 0x9c, 0x43, 0x07, 0x03, 0x65, 0x3c, 0x18, 0x3d, - 0x73, 0x0f, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, - 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x60, 0xd2, 0x19, 0x60, - 0xd2, 0x66, 0xc3, 0xd1, 0xd3, 0x3b, 0x00, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, - 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, 0x06, 0x8b, - 0x06, 0x8b, 0x4e, 0xed, 0x4a, 0x5c, 0x3d, 0xd1, 0x88, 0xe7, 0x5d, 0x26, 0xae, 0x9b, 0xa6, 0x51, - 0x87, 0xb3, 0xc3, 0xf0, 0x66, 0xff, 0xa3, 0xb8, 0x3c, 0x03, 0x66, 0xe9, 0x2d, 0x8a, 0xb1, 0x99, - 0xe6, 0x24, 0x2f, 0xdb, 0xdd, 0xdc, 0xff, 0x14, 0xcf, 0x3c, 0x8d, 0xef, 0x0a, 0x17, 0xae, 0x54, - 0xa7, 0x4a, 0x31, 0x35, 0x8f, 0xbf, 0x74, 0xfd, 0xa6, 0x27, 0x46, 0x72, 0x3c, 0xb2, 0x5c, 0xfe, - 0xc0, 0xf3, 0x18, 0x1a, 0xd4, 0x5e, 0xda, 0xdf, 0xf9, 0x17, 0xbd, 0x0e, 0x3b, 0x22, 0x14, 0x9d, - 0x8f, 0xcf, 0xf1, 0x92, 0x99, 0x16, 0x47, 0x66, 0xd5, 0x9a, 0x1b, 0x95, 0x5a, 0x60, 0x69, 0xbf, - 0xac, 0x75, 0x08, 0xed, 0x67, 0xb7, 0xf3, 0x69, 0xfc, 0x03, 0xdb, 0xbf, 0x4d, 0x7f, 0xcd, 0xa7, - 0xe8, 0xc7, 0xec, 0x65, 0x53, 0x5f, 0x67, 0x6b, 0xa4, 0x12, 0xd3, 0x51, 0xcb, 0xea, 0x11, 0xcb, - 0xcc, 0x68, 0x78, 0x82, 0x39, 0x96, 0xa3, 0x87, 0x6c, 0x79, 0xf6, 0x83, 0xf0, 0xe8, 0x67, 0x06, - 0xce, 0xac, 0x45, 0x3b, 0x2b, 0xb0, 0x84, 0x59, 0x81, 0xbf, 0xde, 0x0d, 0xcc, 0x0a, 0xdc, 0x74, - 0x41, 0xcc, 0x0a, 0x4c, 0x8b, 0x61, 0x23, 0x0f, 0xb6, 0x30, 0xce, 0x2d, 0xe1, 0x98, 0x53, 0xb2, - 0x3c, 0x97, 0x64, 0x46, 0x27, 0xef, 0xb0, 0x15, 0xa4, 0x1d, 0x37, 0xc2, 0x32, 0x5e, 0x84, 0x6d, - 0x4e, 0x6e, 0x05, 0xb6, 0x0f, 0xb6, 0x0f, 0xb6, 0xcf, 0xb8, 0xed, 0x23, 0x9f, 0x93, 0xcb, 0xd7, - 0x79, 0x94, 0xbd, 0xd3, 0x28, 0x53, 0x48, 0x90, 0x2d, 0xeb, 0x0c, 0x93, 0x71, 0xb3, 0xac, 0x54, - 0x8d, 0x29, 0x57, 0x13, 0x4a, 0x96, 0xde, 0x37, 0xb7, 0xcf, 0xe0, 0xbc, 0x66, 0xcb, 0xf2, 0x32, - 0x92, 0xd5, 0xc5, 0x98, 0xc5, 0xc5, 0x9c, 0xb5, 0xc5, 0x18, 0xc2, 0x35, 0x91, 0x95, 0x65, 0x2a, - 0xbb, 0xda, 0x50, 0xd6, 0x95, 0xc9, 0xbc, 0x15, 0xce, 0x6a, 0x01, 0x13, 0x59, 0x54, 0xa6, 0x45, - 0xc9, 0x7c, 0x96, 0x94, 0x51, 0xe9, 0xca, 0x49, 0xc6, 0x44, 0x2b, 0xab, 0xf1, 0xbd, 0xf7, 0xa4, - 0xbc, 0x8a, 0xa5, 0xf4, 0x87, 0xb9, 0xf3, 0x24, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, - 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, 0x38, 0x15, - 0x0b, 0xa7, 0x62, 0x48, 0x63, 0x5b, 0x42, 0x0f, 0xff, 0x3f, 0x7b, 0xff, 0xdb, 0xdb, 0x36, 0x96, - 0xac, 0xfd, 0xc2, 0xef, 0xfd, 0x29, 0x0c, 0x61, 0xbf, 0x48, 0x80, 0x30, 0xb1, 0x15, 0xdb, 0xe9, - 0x04, 0x78, 0xf0, 0xc0, 0xe9, 0x4e, 0x72, 0xfb, 0x8c, 0xe3, 0x36, 0xe2, 0x74, 0x36, 0x06, 0x19, - 0x6f, 0x82, 0x91, 0x28, 0x87, 0xb8, 0x65, 0x5a, 0x5b, 0xa2, 0xdc, 0xc9, 0xe9, 0xf8, 0xbb, 0x1f, - 0x58, 0xa2, 0x28, 0xcb, 0xb2, 0x12, 0x49, 0x5c, 0x55, 0xb5, 0x48, 0xfd, 0x8c, 0xc1, 0x4c, 0x4f, - 0x3a, 0xe6, 0xe2, 0x9f, 0x5a, 0x55, 0x75, 0x5d, 0x55, 0x75, 0x2d, 0xf1, 0x76, 0x36, 0x90, 0x15, - 0xc8, 0x0a, 0x64, 0x05, 0xb2, 0xaa, 0x20, 0xb2, 0x52, 0xf3, 0x8d, 0x77, 0xfd, 0xe3, 0xee, 0x4b, - 0x85, 0xb5, 0xf2, 0x77, 0x59, 0x3b, 0x68, 0x75, 0xf7, 0x08, 0xfd, 0xe7, 0x4d, 0x45, 0xe9, 0x88, - 0xc9, 0xd7, 0x53, 0x3c, 0x1f, 0xda, 0x48, 0x2a, 0xc2, 0x40, 0x13, 0xc4, 0x52, 0x1a, 0xc2, 0x78, - 0xee, 0x7e, 0x8a, 0x7a, 0x0e, 0x8c, 0x6e, 0xc0, 0x83, 0xa9, 0x7a, 0x03, 0xed, 0x07, 0x53, 0xcd, - 0x07, 0x6f, 0x6c, 0x6e, 0x67, 0xef, 0xb7, 0xfd, 0x17, 0xfb, 0x1b, 0x6c, 0x78, 0x35, 0x95, 0x37, - 0x38, 0xaf, 0x93, 0xbc, 0x81, 0x41, 0x7a, 0x11, 0xa7, 0xc3, 0xcb, 0xb8, 0x3f, 0x9e, 0x45, 0xd4, - 0xcf, 0x31, 0x76, 0xf7, 0x14, 0xd7, 0x7c, 0x93, 0x0e, 0x2f, 0x6f, 0x1d, 0x21, 0xbc, 0x93, 0xed, - 0xfd, 0x4b, 0xf2, 0x4e, 0x8a, 0x27, 0x62, 0xe8, 0x9f, 0x80, 0x01, 0xef, 0xe4, 0xe2, 0x6b, 0xc1, - 0x3b, 0x39, 0x5e, 0x18, 0xde, 0xa9, 0x22, 0x69, 0x06, 0x15, 0xfd, 0x8a, 0x12, 0x16, 0x54, 0xf4, - 0x45, 0xc1, 0x21, 0x15, 0xfd, 0xda, 0xf0, 0x0e, 0x54, 0xf4, 0xa9, 0xe8, 0x83, 0xac, 0xa4, 0x90, - 0x95, 0x6e, 0x9b, 0xb4, 0xd2, 0x89, 0x08, 0xa0, 0x2a, 0x50, 0x15, 0xa8, 0x0a, 0x54, 0x05, 0xaa, - 0x02, 0x55, 0x81, 0xaa, 0x40, 0x55, 0xa0, 0x2a, 0x50, 0x15, 0xa8, 0x0a, 0x54, 0x25, 0x7c, 0x65, - 0xb4, 0x65, 0x15, 0xb4, 0x65, 0x05, 0xd5, 0xee, 0x05, 0x84, 0xf4, 0xb6, 0x3c, 0xb6, 0xaf, 0x89, - 0x5a, 0xbd, 0x58, 0x23, 0xa9, 0xac, 0x48, 0xbd, 0x8a, 0x28, 0xbd, 0x8a, 0x08, 0xbd, 0xac, 0xe8, - 0xbc, 0x6b, 0xab, 0x11, 0xf6, 0x46, 0x95, 0xf0, 0x42, 0x0d, 0x11, 0x81, 0x4c, 0x21, 0x41, 0x78, - 0xb7, 0xce, 0xd2, 0x9d, 0x4b, 0x73, 0x73, 0x25, 0x47, 0xe6, 0x2d, 0x65, 0xd6, 0xde, 0x9a, 0xb3, - 0x1b, 0xab, 0x28, 0xff, 0x0d, 0x1d, 0x7c, 0x3f, 0xc7, 0xda, 0xb2, 0x22, 0x5a, 0xb2, 0x8e, 0xb5, - 0x63, 0x9d, 0x6b, 0xc5, 0x4a, 0x50, 0xcc, 0x62, 0x54, 0xb2, 0x14, 0x65, 0x2c, 0x4e, 0x0d, 0x8b, - 0x53, 0xc0, 0x92, 0x54, 0xaf, 0x5f, 0xfe, 0xda, 0xb5, 0x36, 0xab, 0xa0, 0x16, 0xab, 0xb8, 0xf6, - 0xaa, 0x10, 0x99, 0x23, 0x56, 0xdf, 0x92, 0xac, 0x67, 0x89, 0xd7, 0xaf, 0xa4, 0xeb, 0x55, 0x6a, - 0xf5, 0x29, 0xb5, 0x7a, 0x94, 0x46, 0xfd, 0xc9, 0x6f, 0xa4, 0x2d, 0x56, 0x4f, 0x52, 0xa9, 0x1f, - 0x09, 0xd6, 0x8b, 0x84, 0xeb, 0x43, 0x82, 0x64, 0x99, 0x46, 0xfd, 0x47, 0xab, 0x8f, 0x41, 0xa9, - 0xbe, 0xa3, 0xc9, 0xb8, 0x4b, 0xf6, 0xcd, 0x68, 0xd4, 0x6b, 0xb4, 0x3f, 0xbd, 0x7e, 0x3d, 0x46, - 0xd5, 0x1a, 0x2a, 0xc2, 0x17, 0x9f, 0xfb, 0x4a, 0xd5, 0x3c, 0x71, 0x9a, 0x67, 0x8b, 0x34, 0x9d, - 0x09, 0x6b, 0x71, 0x92, 0x63, 0x93, 0x63, 0x93, 0x63, 0x93, 0x63, 0x93, 0x63, 0x93, 0x63, 0x93, - 0x63, 0x93, 0x63, 0x93, 0x63, 0x93, 0x63, 0x7b, 0x9c, 0x63, 0xe7, 0x25, 0xbf, 0x20, 0x69, 0x4b, - 0x26, 0xda, 0x77, 0x56, 0x21, 0xdb, 0x26, 0xdb, 0x26, 0xdb, 0x26, 0xdb, 0x76, 0x66, 0xed, 0x83, - 0xac, 0x9f, 0xa4, 0x17, 0x82, 0xa9, 0xf6, 0xee, 0x6f, 0x1b, 0x10, 0x09, 0x04, 0xd5, 0x53, 0xe4, - 0xd5, 0x52, 0x88, 0x02, 0x44, 0x01, 0xa2, 0x00, 0x9c, 0x0b, 0x9c, 0x0b, 0x9c, 0x0b, 0x9c, 0x0b, - 0x9c, 0x0b, 0x9c, 0x0b, 0x9c, 0x8b, 0xd7, 0x99, 0xb6, 0x6c, 0x61, 0x53, 0x48, 0x3d, 0x83, 0x2c, - 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, 0x9b, 0x2c, - 0x9b, 0x2c, 0x9b, 0x41, 0xcf, 0x95, 0xaf, 0xeb, 0xd5, 0xa0, 0xa7, 0x3b, 0x91, 0x04, 0x07, 0x13, - 0x9e, 0x5b, 0x86, 0x9f, 0x7d, 0x22, 0x72, 0xe0, 0xb0, 0x56, 0xed, 0x56, 0xd6, 0x40, 0x44, 0xc6, - 0x40, 0x44, 0xb6, 0xc0, 0xad, 0x4c, 0x41, 0xd9, 0xef, 0xea, 0x78, 0x1b, 0xfb, 0xb4, 0x7d, 0x1b, - 0x4e, 0x46, 0xa2, 0x5d, 0xaa, 0x09, 0x94, 0x73, 0x25, 0xeb, 0x3b, 0x80, 0xf5, 0x7e, 0x73, 0x4d, - 0xd3, 0x72, 0x65, 0x52, 0xf6, 0xa6, 0xb4, 0xde, 0xe7, 0x5a, 0xfd, 0x65, 0xaf, 0xf6, 0x1b, 0x2b, - 0x7e, 0x96, 0xb2, 0x9f, 0xc3, 0xe8, 0x33, 0xac, 0xb1, 0x79, 0x9d, 0x6c, 0xd6, 0xd5, 0xbe, 0xf9, - 0xf2, 0x5f, 0x6e, 0xb9, 0xbf, 0xb9, 0xe4, 0xb7, 0x5d, 0xf7, 0x9b, 0x2a, 0x7d, 0xcb, 0x15, 0xbe, - 0xdd, 0x7a, 0xdf, 0x6c, 0xb9, 0x8f, 0xf4, 0xeb, 0x57, 0xbe, 0xc4, 0xeb, 0x6e, 0x64, 0x71, 0x70, - 0xd1, 0xbd, 0xfa, 0x12, 0x75, 0x83, 0x28, 0xcb, 0xfa, 0xc9, 0x97, 0x61, 0x16, 0x2f, 0xcf, 0x4d, - 0x17, 0xcc, 0xd0, 0x83, 0x57, 0x59, 0xf2, 0x63, 0xaf, 0x26, 0x79, 0xb1, 0x32, 0x5f, 0xbc, 0x0e, - 0x0f, 0x7c, 0x97, 0xdf, 0xbd, 0xb5, 0x82, 0x55, 0xbe, 0xf8, 0x9a, 0xcc, 0x6d, 0x69, 0x46, 0xb6, - 0x34, 0xd3, 0x7a, 0x9f, 0x41, 0x1d, 0x3d, 0xb8, 0x91, 0x03, 0x58, 0x55, 0xb6, 0x61, 0xac, 0x4e, - 0x16, 0xb5, 0x2f, 0x93, 0x34, 0xb8, 0xe8, 0x5f, 0x0d, 0x7b, 0xab, 0xd7, 0x57, 0x66, 0x4f, 0xcc, - 0x9d, 0xb9, 0xd4, 0x8a, 0xef, 0x71, 0x3d, 0x0d, 0x97, 0xb5, 0x0b, 0x21, 0x65, 0x0a, 0x1d, 0x25, - 0x0c, 0xbd, 0xac, 0xc1, 0x3b, 0x33, 0x7c, 0x67, 0x1b, 0xc0, 0xcd, 0x46, 0xd0, 0xc9, 0x7a, 0xd6, - 0xd5, 0x35, 0x69, 0xdc, 0x31, 0xec, 0xf5, 0x3f, 0xd9, 0xc4, 0x6a, 0xee, 0x5e, 0x6c, 0xcd, 0x77, - 0x5d, 0x4e, 0xf0, 0xa8, 0x74, 0xf5, 0xd0, 0x45, 0x95, 0xd0, 0xc1, 0x26, 0x72, 0xb5, 0x99, 0x9c, - 0x6f, 0x2a, 0xe7, 0x9b, 0xcb, 0xed, 0x26, 0xb3, 0x41, 0x80, 0x65, 0x45, 0x85, 0xee, 0xee, 0x9b, - 0x20, 0xcf, 0x0d, 0x4b, 0x7e, 0xef, 0x07, 0x76, 0xe4, 0xf8, 0xca, 0x65, 0x79, 0x31, 0x27, 0x15, - 0x02, 0x67, 0x45, 0x7e, 0x97, 0x45, 0x7d, 0x87, 0xdb, 0xd6, 0xf5, 0xf6, 0x15, 0xdb, 0xc6, 0x62, - 0xdb, 0x59, 0x66, 0x5b, 0xfb, 0xc1, 0x0d, 0x3b, 0x2b, 0xac, 0x17, 0x16, 0xd7, 0x8d, 0xa3, 0x4e, - 0x3f, 0xee, 0xb8, 0xb0, 0xb8, 0x49, 0xfc, 0x74, 0x70, 0x68, 0x7f, 0xe3, 0x34, 0x07, 0xce, 0x4f, - 0x9f, 0x3e, 0x1b, 0xc3, 0xe6, 0x67, 0x73, 0xee, 0xc4, 0x8a, 0xe1, 0x2b, 0x11, 0x52, 0x5b, 0x13, - 0xdf, 0xe3, 0xc8, 0xc5, 0xe6, 0xd7, 0x73, 0xe3, 0x58, 0x77, 0x71, 0xac, 0x38, 0xd6, 0x4d, 0x75, - 0xac, 0xae, 0xc4, 0x19, 0xdd, 0xe7, 0x53, 0xd2, 0x79, 0x95, 0xe3, 0xfc, 0xca, 0xb9, 0x3b, 0x90, - 0x70, 0x0b, 0x82, 0xee, 0x41, 0xca, 0x4d, 0x88, 0xbb, 0x0b, 0x71, 0xb7, 0x21, 0xeb, 0x3e, 0xdc, - 0xb8, 0x11, 0x47, 0xee, 0xc4, 0x7d, 0xbe, 0x36, 0x67, 0xb1, 0xce, 0x87, 0x4d, 0x1d, 0x0f, 0x99, - 0xfa, 0xa1, 0xb3, 0xfd, 0x25, 0xc9, 0x82, 0xde, 0xd5, 0x20, 0x71, 0xda, 0x3c, 0x53, 0x7c, 0x83, - 0x99, 0xab, 0xe3, 0x85, 0xf1, 0xc2, 0x78, 0xe1, 0x0d, 0xf3, 0xc2, 0xc3, 0x24, 0xcd, 0x9e, 0x37, - 0x05, 0xbc, 0xf0, 0x0b, 0x87, 0x97, 0x94, 0xe9, 0x39, 0x97, 0x39, 0x1f, 0x47, 0x70, 0xcc, 0x44, - 0xb4, 0xc1, 0x58, 0xba, 0xa7, 0x5c, 0xa3, 0x7b, 0xf8, 0x46, 0xe6, 0x34, 0xa2, 0xca, 0x7f, 0xd2, - 0xbd, 0xe6, 0xcb, 0xbd, 0x97, 0x07, 0x2f, 0x9a, 0x2f, 0xf7, 0x2b, 0xfc, 0x6d, 0x3d, 0xed, 0xb4, - 0x3e, 0xa7, 0xe5, 0xb7, 0x1a, 0xad, 0xa1, 0x0f, 0xb5, 0xd5, 0x3c, 0x9b, 0xeb, 0x4f, 0xb8, 0xcb, - 0xd2, 0xe6, 0xc4, 0x6d, 0x15, 0x79, 0x5a, 0x37, 0xc7, 0xf3, 0x38, 0x3d, 0x96, 0xc7, 0x39, 0x4b, - 0xdb, 0x84, 0xa5, 0xf5, 0x21, 0xe1, 0x87, 0xa5, 0x5d, 0xe1, 0x91, 0x60, 0x69, 0xe1, 0x07, 0xe0, - 0x07, 0xe0, 0x07, 0x2a, 0xc3, 0x0f, 0xc0, 0xd2, 0x2e, 0xf3, 0x4c, 0xb0, 0xb4, 0x78, 0x61, 0xbc, - 0x30, 0x5e, 0x18, 0x96, 0x16, 0x96, 0x16, 0x96, 0x56, 0x67, 0xbb, 0xcd, 0x7e, 0x52, 0x58, 0x5a, - 0x3f, 0xbe, 0x2d, 0x2c, 0xad, 0xc7, 0xec, 0x43, 0x3d, 0x59, 0x5a, 0x07, 0xca, 0x1b, 0x55, 0x19, - 0x97, 0xcf, 0x95, 0x35, 0x1c, 0x51, 0x33, 0x6e, 0x54, 0x35, 0x9c, 0xaa, 0x69, 0x38, 0x55, 0xd1, - 0x70, 0xa3, 0x9e, 0x51, 0x43, 0x69, 0x83, 0xd5, 0x37, 0x59, 0xa3, 0x54, 0x2d, 0xe2, 0x97, 0x63, - 0xdb, 0x1f, 0xe3, 0x77, 0xa3, 0xfb, 0x39, 0x2c, 0x6e, 0x27, 0x3c, 0xbc, 0x5d, 0xfc, 0xdd, 0x68, - 0x6d, 0xa4, 0x15, 0x2c, 0xcd, 0x40, 0x4c, 0xe5, 0x60, 0x95, 0xc9, 0xff, 0x7e, 0xf7, 0xa2, 0xc4, - 0x14, 0xf2, 0xf8, 0xd7, 0x99, 0x3c, 0x16, 0x64, 0x30, 0x98, 0x3c, 0xde, 0xd6, 0x9c, 0x3c, 0xbe, - 0xb5, 0xe8, 0xf2, 0x23, 0xc7, 0xa3, 0xab, 0x30, 0x6b, 0xcc, 0xac, 0xb1, 0x19, 0xa1, 0x57, 0xb1, - 0x59, 0x63, 0xc6, 0xdf, 0x94, 0xb6, 0xa6, 0xc0, 0x16, 0x75, 0xbd, 0x55, 0xc5, 0xb6, 0xac, 0xd8, - 0xd6, 0x95, 0xd9, 0xc2, 0x7e, 0x50, 0x1b, 0xce, 0x1a, 0x2b, 0x5a, 0x57, 0x83, 0xcc, 0x7d, 0x09, - 0x6f, 0x74, 0x55, 0x4a, 0x77, 0x1e, 0xb9, 0x01, 0x29, 0x77, 0x20, 0xee, 0x16, 0xc4, 0xdd, 0x83, - 0xac, 0x9b, 0x70, 0xcb, 0xed, 0x52, 0xba, 0x73, 0x72, 0x49, 0x4a, 0x77, 0x94, 0xee, 0x14, 0xb7, - 0xdb, 0xec, 0x27, 0xa5, 0x74, 0xe7, 0xc7, 0xb7, 0xa5, 0x74, 0x27, 0x6d, 0xfb, 0x8d, 0x4e, 0xf7, - 0xea, 0xaa, 0x9d, 0xa4, 0x17, 0x41, 0xe6, 0x32, 0xde, 0x14, 0xb1, 0x66, 0xf6, 0xf2, 0x8e, 0x42, - 0xe3, 0x1f, 0x71, 0x27, 0x1a, 0x76, 0x47, 0x49, 0xc0, 0xdb, 0xe3, 0x3f, 0xff, 0xfc, 0xe3, 0xcd, - 0x1f, 0xe1, 0xd9, 0x87, 0xe3, 0x77, 0x64, 0xb3, 0x64, 0xb3, 0x64, 0xb3, 0x9b, 0x96, 0xcd, 0x8e, - 0xaa, 0x43, 0x83, 0x7e, 0xf7, 0x22, 0x90, 0xf0, 0x35, 0x33, 0x6c, 0xd6, 0x9e, 0xc3, 0x6b, 0xbe, - 0x49, 0x87, 0x97, 0xb7, 0x2f, 0xe4, 0xa6, 0x46, 0xb1, 0x44, 0x66, 0xea, 0x83, 0x49, 0x0f, 0x5c, - 0x3b, 0xae, 0x7d, 0x13, 0x5d, 0x3b, 0x93, 0x1e, 0xcb, 0x3c, 0xd3, 0x75, 0x8e, 0xf8, 0x1c, 0xbb, - 0xdd, 0xf1, 0x65, 0xf1, 0xbb, 0xf8, 0x5d, 0xfc, 0xee, 0x86, 0xf9, 0x5d, 0x08, 0x62, 0x97, 0x26, - 0x09, 0x41, 0xbc, 0xf8, 0xfa, 0x10, 0xc4, 0x66, 0x9f, 0x14, 0x82, 0x58, 0xee, 0x6a, 0xcc, 0x76, - 0x54, 0x79, 0xb6, 0x63, 0xd4, 0x9b, 0x3b, 0xfa, 0xef, 0x0a, 0xcb, 0xed, 0xb8, 0x3d, 0x77, 0x82, - 0xb3, 0x26, 0xb4, 0x73, 0x7d, 0x7a, 0xc2, 0x38, 0x6b, 0x62, 0x19, 0x8b, 0xab, 0xcc, 0x59, 0x13, - 0x55, 0x3d, 0x5f, 0x02, 0xdd, 0x32, 0x5c, 0x29, 0xae, 0xd4, 0x3f, 0x57, 0x4a, 0x7b, 0xad, 0x75, - 0x06, 0x25, 0xb1, 0xfd, 0x05, 0xdd, 0x80, 0x94, 0x3b, 0x10, 0x77, 0x0b, 0xe2, 0xee, 0x41, 0xd6, - 0x4d, 0xb8, 0x85, 0xd7, 0xb0, 0xa7, 0x4e, 0x2e, 0x09, 0x7b, 0x0a, 0x7b, 0xaa, 0xb8, 0xdd, 0x66, - 0x3f, 0x29, 0xec, 0xa9, 0x1f, 0xdf, 0x16, 0xf6, 0x54, 0xda, 0xf6, 0x69, 0xaf, 0x25, 0x9b, 0x25, - 0x9b, 0x25, 0x9b, 0xad, 0x6e, 0x36, 0x4b, 0x7b, 0x2d, 0xed, 0xb5, 0xb8, 0x76, 0x5c, 0x3b, 0xae, - 0xbd, 0x76, 0xae, 0x9d, 0xf6, 0xda, 0x65, 0x9e, 0x89, 0xf6, 0x5a, 0xfc, 0x2e, 0x7e, 0x17, 0xbf, - 0xeb, 0xce, 0x62, 0x21, 0x88, 0x5d, 0x9a, 0x24, 0x04, 0xf1, 0xe2, 0xeb, 0x43, 0x10, 0x9b, 0x7d, - 0x52, 0x08, 0x62, 0xb9, 0xab, 0xd1, 0x5e, 0x5b, 0x93, 0xf6, 0x5a, 0x5b, 0x9d, 0xf4, 0x92, 0x4d, - 0x61, 0x49, 0x6b, 0xcc, 0x8b, 0x5d, 0xc6, 0x97, 0x5f, 0xe2, 0xfe, 0xc0, 0x6d, 0x8b, 0xd8, 0xfd, - 0x8b, 0xa3, 0xc7, 0xa8, 0x08, 0x04, 0x68, 0x18, 0xa3, 0x61, 0xec, 0x27, 0x17, 0xca, 0xf7, 0x64, - 0xd0, 0x4d, 0x24, 0x1a, 0xc7, 0x66, 0xae, 0xee, 0x96, 0x1f, 0xd8, 0x85, 0x1f, 0x80, 0x1f, 0x80, - 0x1f, 0x70, 0x54, 0x25, 0x77, 0xe4, 0x4e, 0x8a, 0x0b, 0x3a, 0x52, 0x72, 0x5e, 0xb8, 0x11, 0x9c, - 0x28, 0x3b, 0x0b, 0xbb, 0x16, 0x31, 0x17, 0x23, 0xe9, 0x6a, 0x14, 0x5c, 0x8e, 0xb4, 0xeb, 0x51, - 0x73, 0x41, 0x6a, 0xae, 0x48, 0xc7, 0x25, 0x09, 0x21, 0x65, 0xc7, 0x36, 0xef, 0xda, 0x55, 0x15, - 0x17, 0xee, 0xf4, 0xaf, 0x2e, 0x83, 0xa8, 0xdd, 0xee, 0xc7, 0x83, 0x81, 0x9c, 0x4d, 0x16, 0xcd, - 0x4e, 0x77, 0x57, 0x7b, 0x52, 0x49, 0x76, 0x48, 0xca, 0xad, 0x69, 0xb8, 0x37, 0x45, 0x37, 0xa7, - 0xe5, 0xee, 0xd4, 0xdd, 0x9e, 0xba, 0xfb, 0xd3, 0x75, 0x83, 0x32, 0xee, 0x50, 0xc8, 0x2d, 0x16, - 0xaf, 0xc6, 0x79, 0xa5, 0x67, 0xe1, 0x8e, 0x49, 0x7a, 0xc2, 0xfe, 0x6b, 0x26, 0x25, 0x7b, 0x29, - 0xb8, 0x46, 0xfe, 0xce, 0x3e, 0x8b, 0x1a, 0xad, 0xec, 0xa6, 0xbf, 0xf7, 0x65, 0xae, 0xf7, 0x14, - 0xbe, 0xcd, 0xdc, 0x37, 0xfa, 0x4d, 0x61, 0xad, 0xd3, 0x28, 0xcb, 0xe2, 0x7e, 0x2a, 0xfe, 0xb9, - 0x8a, 0x05, 0xff, 0xe7, 0xd1, 0xa3, 0xcf, 0x3b, 0xc1, 0xcb, 0xf3, 0x1f, 0x9f, 0x77, 0x83, 0x97, - 0xe7, 0xe3, 0x7f, 0xdc, 0x1d, 0xfd, 0xcf, 0xf8, 0x9f, 0x9b, 0x9f, 0x77, 0x82, 0xbd, 0xc9, 0x3f, - 0xef, 0x7f, 0xde, 0x09, 0xf6, 0xcf, 0x1f, 0xff, 0xe7, 0x3f, 0x4f, 0x1f, 0xff, 0xf3, 0xfc, 0x66, - 0xf5, 0x5f, 0xfc, 0xaf, 0x86, 0xf8, 0x43, 0x9d, 0x8b, 0xae, 0x70, 0xf3, 0xa4, 0x46, 0x9b, 0xe8, - 0x80, 0x4d, 0xe4, 0x76, 0x13, 0x45, 0x41, 0xe7, 0x30, 0x78, 0x7b, 0xfe, 0xcf, 0xee, 0x93, 0xbd, - 0x9b, 0x57, 0x8f, 0xff, 0x79, 0x71, 0x73, 0xff, 0x0f, 0x7f, 0x3c, 0xf4, 0xd7, 0x76, 0x9f, 0xbc, - 0xb8, 0x79, 0xb5, 0xe0, 0xdf, 0x1c, 0xdc, 0xbc, 0x5a, 0xf2, 0x1a, 0xfb, 0x37, 0x8f, 0xe6, 0xfe, - 0xea, 0xed, 0x9f, 0x37, 0x17, 0xfd, 0xc2, 0xde, 0x82, 0x5f, 0x78, 0xbe, 0xe8, 0x17, 0x9e, 0x2f, - 0xf8, 0x85, 0x85, 0xb7, 0xd4, 0x5c, 0xf0, 0x0b, 0xfb, 0x37, 0x3f, 0xe6, 0xfe, 0xfe, 0xa3, 0x87, - 0xff, 0xea, 0xc1, 0xcd, 0xe3, 0x1f, 0x8b, 0xfe, 0xdd, 0x8b, 0x9b, 0x1f, 0xaf, 0x1e, 0xd7, 0xc0, - 0xa5, 0x6c, 0x55, 0xeb, 0xbe, 0x6f, 0x2a, 0xd1, 0x96, 0x90, 0x5d, 0xe9, 0x61, 0xdd, 0x3b, 0x6b, - 0x81, 0x74, 0x41, 0xba, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, 0x0b, 0xd2, 0x05, 0xe9, 0x82, - 0x74, 0x41, 0xba, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, 0xeb, 0x7d, 0xe9, 0xd9, 0x71, 0x93, - 0xf2, 0xdc, 0xf5, 0x8d, 0x9a, 0x96, 0xef, 0xb5, 0xe7, 0x3e, 0xbb, 0xdb, 0xb4, 0xe7, 0x44, 0x34, - 0x58, 0xee, 0x2b, 0x3b, 0xfc, 0xc2, 0xb2, 0xf5, 0x7f, 0x8d, 0xba, 0xbf, 0x10, 0x0b, 0x42, 0xfb, - 0x92, 0x0d, 0xcb, 0x41, 0xfb, 0x52, 0x1d, 0x63, 0x88, 0x18, 0x6b, 0x21, 0x20, 0xa2, 0xbc, 0x30, - 0x73, 0x7f, 0x21, 0x70, 0xed, 0x79, 0x91, 0xe5, 0x19, 0x57, 0xb9, 0x01, 0x01, 0xc8, 0x8d, 0x38, - 0xf3, 0x42, 0xbb, 0x70, 0x21, 0xd6, 0xbc, 0xd0, 0x22, 0xa4, 0x42, 0x4e, 0x93, 0x90, 0x43, 0xc8, - 0x21, 0xe4, 0x94, 0x7a, 0x05, 0x74, 0xcc, 0x1a, 0x67, 0xd0, 0xe2, 0x99, 0xb4, 0x86, 0x7b, 0x53, - 0x74, 0x73, 0x5a, 0xee, 0x4e, 0xdd, 0xed, 0xa9, 0xbb, 0x3f, 0x5d, 0x37, 0x28, 0xcb, 0x63, 0x51, - 0x47, 0x5c, 0x2d, 0x25, 0xa3, 0x8e, 0xb8, 0xca, 0x97, 0xa1, 0x8e, 0xe8, 0x6c, 0x41, 0xea, 0x88, - 0x1e, 0xb8, 0x35, 0x9b, 0x4d, 0x44, 0x1d, 0xd1, 0xf1, 0x26, 0xa2, 0x8e, 0x48, 0x1d, 0xd1, 0x93, - 0xfc, 0x6b, 0x9b, 0x8e, 0x59, 0x3a, 0x66, 0x41, 0xba, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, - 0x0b, 0xd2, 0x25, 0x49, 0x07, 0xe9, 0x82, 0x74, 0xd9, 0x44, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0xd7, - 0x0a, 0xe9, 0xd2, 0x31, 0xeb, 0x59, 0xc7, 0xac, 0x03, 0x1d, 0x60, 0xb9, 0x8f, 0xec, 0x97, 0xec, - 0xe0, 0xbf, 0xe2, 0xef, 0x42, 0x95, 0xfd, 0xc6, 0x71, 0x32, 0xc8, 0x0e, 0xb3, 0xcc, 0xb1, 0xac, - 0xe1, 0xfb, 0x24, 0x7d, 0xd3, 0x8d, 0x6f, 0xe1, 0xe5, 0xa0, 0xf1, 0x6a, 0x3b, 0x1d, 0x76, 0xbb, - 0x0e, 0xfb, 0xbf, 0xde, 0x47, 0xdf, 0xe4, 0x2e, 0xfe, 0x67, 0xbf, 0x1d, 0xf7, 0xe3, 0xf6, 0xeb, - 0xef, 0xf9, 0xa5, 0xbd, 0xb2, 0x03, 0x21, 0x37, 0xe1, 0xa3, 0x7b, 0x68, 0x38, 0x6d, 0x18, 0xec, - 0x0f, 0x5b, 0x59, 0x7e, 0x92, 0x5a, 0xe3, 0x64, 0x7c, 0xbf, 0x47, 0xf9, 0xed, 0x86, 0xef, 0x7b, - 0xdd, 0x41, 0xf8, 0x31, 0x7e, 0x37, 0xba, 0xdb, 0xc3, 0xe2, 0x66, 0xc3, 0xb3, 0x7e, 0xf7, 0x22, - 0x7c, 0x3f, 0xbe, 0xa5, 0xdb, 0x5d, 0xd2, 0x40, 0x80, 0xbe, 0x3e, 0x02, 0xf4, 0xf7, 0xa5, 0xd6, - 0xad, 0xe4, 0xe8, 0xb7, 0x14, 0xbf, 0xe1, 0x24, 0x8c, 0x94, 0x38, 0xfc, 0xcf, 0x4d, 0xb8, 0x70, - 0x1a, 0x1e, 0x9c, 0x86, 0x03, 0x37, 0xee, 0x7f, 0xdd, 0xef, 0xe3, 0x68, 0x6f, 0x19, 0xec, 0xa9, - 0x46, 0xa9, 0x63, 0x15, 0xd6, 0xf5, 0xce, 0xeb, 0xed, 0xda, 0xd5, 0xf7, 0xdc, 0x6a, 0xbf, 0xb1, - 0xe2, 0xd7, 0x2f, 0xfb, 0xd5, 0x75, 0xbf, 0xf6, 0x6a, 0xaf, 0x7c, 0xf9, 0x17, 0xb7, 0xc2, 0x4b, - 0x6b, 0x64, 0x71, 0xd0, 0x1d, 0xf4, 0x82, 0x2c, 0xb9, 0x5c, 0xe7, 0x04, 0x8e, 0x69, 0xed, 0x70, - 0xe6, 0x32, 0x2b, 0x7e, 0xb4, 0xf5, 0xfa, 0xf9, 0xd7, 0x2e, 0xf7, 0x95, 0x29, 0xe3, 0x39, 0x28, - 0xcf, 0x95, 0x2d, 0xbb, 0x39, 0x2b, 0xa7, 0x39, 0x2b, 0x93, 0xb9, 0x29, 0x7f, 0xc9, 0x3a, 0x86, - 0x75, 0xfb, 0xd1, 0xcb, 0x8a, 0xca, 0xbb, 0x11, 0x8f, 0x2f, 0x39, 0xf2, 0x52, 0xba, 0x32, 0xee, - 0xa2, 0xf2, 0xed, 0xb0, 0xb2, 0xed, 0xaa, 0x72, 0xed, 0xbc, 0x32, 0xed, 0xbc, 0xf2, 0xec, 0xb6, - 0xb2, 0xac, 0x9b, 0x21, 0x97, 0x1d, 0x01, 0x69, 0xb4, 0xba, 0x71, 0x94, 0x0e, 0x7b, 0x41, 0x3b, - 0xee, 0x46, 0xdf, 0xdd, 0x9d, 0x0e, 0x35, 0x7b, 0x59, 0x37, 0xe7, 0x42, 0xed, 0x70, 0x2e, 0x94, - 0xe6, 0xc6, 0x15, 0xdb, 0xc0, 0x62, 0x1b, 0x59, 0x66, 0x43, 0xfb, 0x41, 0x63, 0x38, 0x6b, 0xf1, - 0x98, 0x39, 0xe0, 0x75, 0xf7, 0xc0, 0x85, 0xc1, 0xe5, 0xfb, 0xf3, 0xc0, 0xc1, 0xa5, 0xdc, 0x1e, - 0xe8, 0xea, 0x96, 0x20, 0x16, 0x38, 0x4a, 0x49, 0x46, 0xd7, 0x41, 0xe8, 0xc0, 0x56, 0xc9, 0xc3, - 0x3c, 0x6f, 0xdc, 0xd2, 0xed, 0x95, 0xfb, 0x54, 0x07, 0xfb, 0xfb, 0xcf, 0xf7, 0x2b, 0xf4, 0xb9, - 0x3c, 0xa1, 0x96, 0xcf, 0x2b, 0x78, 0x2a, 0xe7, 0x88, 0xb9, 0xe8, 0x76, 0x5d, 0x67, 0x5c, 0xb3, - 0x97, 0x25, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x7a, - 0xe8, 0x53, 0x3d, 0x3f, 0xd8, 0xd9, 0x21, 0xe1, 0xda, 0x84, 0x84, 0xab, 0x1f, 0x5f, 0xf5, 0xb2, - 0xe4, 0x32, 0xf9, 0x7f, 0xe3, 0x71, 0xed, 0xc4, 0x5d, 0xce, 0x35, 0x77, 0x65, 0xd2, 0x2e, 0xd2, - 0x2e, 0xd2, 0x2e, 0xd2, 0x2e, 0xd2, 0x2e, 0xd2, 0x2e, 0xd2, 0x2e, 0x88, 0xae, 0xea, 0xe7, 0x5d, - 0xf4, 0x93, 0xfd, 0xa4, 0xc3, 0x68, 0xa6, 0x23, 0xa7, 0x94, 0xa2, 0xf6, 0x1a, 0x3d, 0x5e, 0x6b, - 0x74, 0xc5, 0x94, 0x13, 0x22, 0x75, 0x22, 0x38, 0xea, 0xac, 0xcb, 0xa2, 0x49, 0x97, 0x85, 0x64, - 0xee, 0x4a, 0x97, 0xc5, 0x9d, 0x5b, 0xa7, 0xcb, 0x02, 0xf0, 0x09, 0xf8, 0x04, 0x7c, 0x02, 0x3e, - 0x01, 0x9f, 0x80, 0x4f, 0xc0, 0x27, 0xe0, 0x53, 0x07, 0x7c, 0xd2, 0x65, 0x41, 0xc6, 0x45, 0xc6, - 0x45, 0xc6, 0x45, 0xc6, 0x45, 0xc6, 0x45, 0xc6, 0x45, 0x97, 0x05, 0x09, 0x97, 0xbf, 0x09, 0x17, - 0x5d, 0x16, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0x10, 0x5d, - 0xe4, 0x5d, 0xd2, 0xbf, 0xb9, 0x99, 0x5d, 0x16, 0x25, 0x54, 0x18, 0x11, 0xd2, 0x71, 0xf0, 0x01, - 0x1a, 0x6b, 0xf5, 0x9d, 0xac, 0xa3, 0x98, 0xf4, 0x31, 0x3e, 0x1e, 0xf4, 0x3e, 0x8e, 0x17, 0x95, - 0x52, 0xf1, 0xd9, 0x72, 0xf8, 0x5d, 0xd7, 0xfd, 0x9e, 0x5a, 0xdf, 0x71, 0x85, 0x2f, 0xb7, 0xde, - 0x17, 0x5b, 0xee, 0x2b, 0xfd, 0xfa, 0x9d, 0x2f, 0xf1, 0xbe, 0x1b, 0x59, 0x1c, 0x24, 0x69, 0x16, - 0xf7, 0x3b, 0x51, 0x2b, 0xbe, 0xfb, 0x8c, 0xcb, 0xbe, 0xf8, 0xbb, 0xaa, 0x4a, 0x0f, 0x5e, 0x68, - 0xc9, 0x6f, 0xbe, 0x5a, 0x3b, 0xd3, 0xca, 0xa0, 0x71, 0x1d, 0x70, 0x58, 0x02, 0x04, 0xae, 0x0b, - 0xf6, 0x4a, 0x83, 0xba, 0xd2, 0xe0, 0xad, 0x1c, 0x48, 0x73, 0xeb, 0x07, 0x56, 0x6d, 0x17, 0x6a, - 0x14, 0x06, 0xb8, 0xbe, 0x38, 0xd8, 0xf4, 0x12, 0x08, 0x83, 0x09, 0xb2, 0x19, 0x08, 0x83, 0x6d, - 0x23, 0x0c, 0xa6, 0x4c, 0x14, 0xd2, 0xb2, 0x6a, 0x44, 0x00, 0x6e, 0x74, 0xcb, 0x6a, 0xd4, 0xbe, - 0x4c, 0xd2, 0xe0, 0xa2, 0x7f, 0x35, 0xec, 0xb9, 0xa3, 0xf2, 0xef, 0x5e, 0x14, 0x16, 0x5f, 0x61, - 0xb3, 0xba, 0xde, 0xb4, 0x62, 0x9b, 0x57, 0x6c, 0x13, 0xcb, 0x6c, 0x66, 0x37, 0x9c, 0x93, 0x7f, - 0x2c, 0xfe, 0x20, 0xeb, 0x27, 0xe9, 0x85, 0x43, 0x16, 0x7f, 0xf7, 0x37, 0xd3, 0x37, 0xe4, 0xf4, - 0xb4, 0x08, 0x91, 0x53, 0x22, 0x44, 0x4e, 0x87, 0x70, 0x7b, 0x2a, 0x84, 0x55, 0x07, 0xdf, 0x04, - 0x95, 0x27, 0x6d, 0x97, 0x0d, 0x7c, 0x77, 0xae, 0x4a, 0x08, 0x22, 0x04, 0x11, 0x82, 0x3c, 0x0b, - 0x41, 0x0e, 0x77, 0xa8, 0xcb, 0x40, 0x64, 0xe2, 0x03, 0xef, 0x1e, 0xf9, 0xf1, 0x35, 0x71, 0x98, - 0x88, 0xdf, 0xbf, 0x30, 0x9e, 0x10, 0x4f, 0x88, 0x27, 0xf4, 0xcc, 0x13, 0x76, 0xe3, 0xa8, 0xd3, - 0x8f, 0x3b, 0x2e, 0x9d, 0xe0, 0x0b, 0x07, 0xd7, 0x3a, 0xcd, 0x0b, 0x55, 0x4f, 0x9f, 0x3e, 0x2b, - 0xfe, 0xf3, 0xab, 0x23, 0x8c, 0x46, 0x95, 0x24, 0x90, 0x00, 0x48, 0x60, 0x9d, 0x47, 0xc8, 0xe2, - 0xe0, 0x32, 0xce, 0xfa, 0x49, 0xcb, 0x5d, 0xfc, 0x9b, 0x5e, 0x92, 0xc8, 0x47, 0xe4, 0x23, 0xf2, - 0x79, 0x16, 0xf9, 0x86, 0x49, 0x9a, 0x3d, 0x6f, 0x3a, 0x0c, 0x7c, 0x2f, 0x68, 0x26, 0x35, 0x71, - 0x6c, 0x73, 0x97, 0xa5, 0x99, 0xb4, 0x72, 0x9f, 0x6a, 0xaf, 0xf9, 0x72, 0xef, 0xe5, 0xc1, 0x8b, - 0xe6, 0x4b, 0x3a, 0x4a, 0x57, 0xfe, 0xa1, 0xa3, 0x74, 0x25, 0xba, 0x43, 0xa4, 0x11, 0xee, 0xa1, - 0xf6, 0xae, 0x67, 0xc5, 0x1f, 0x56, 0x40, 0xb6, 0x2b, 0xb9, 0xe8, 0x05, 0x9d, 0xee, 0xd5, 0x55, - 0x3b, 0x49, 0x2f, 0x82, 0x2f, 0x51, 0xda, 0xfe, 0x3b, 0x69, 0x8f, 0x5e, 0x51, 0xc9, 0xae, 0x88, - 0x05, 0xd7, 0xa5, 0x4b, 0x82, 0x2e, 0x09, 0xb3, 0x8c, 0xb6, 0x6a, 0xc2, 0x5e, 0xe5, 0x1a, 0x94, - 0xe6, 0x0c, 0xaf, 0x54, 0xa3, 0x92, 0xa3, 0xad, 0x08, 0x28, 0x05, 0x94, 0x56, 0x1f, 0x94, 0x96, - 0xdd, 0xda, 0xc5, 0x85, 0xda, 0x71, 0x37, 0x8b, 0x82, 0x5e, 0xdc, 0x6f, 0xc5, 0x69, 0x16, 0x5d, - 0x38, 0xb4, 0x93, 0x89, 0x29, 0xcf, 0xad, 0xe0, 0xe8, 0xab, 0xba, 0xc5, 0x05, 0xce, 0xdc, 0x81, - 0x84, 0x5b, 0x10, 0x74, 0x0f, 0x52, 0x6e, 0x42, 0xdc, 0x5d, 0x88, 0xbb, 0x0d, 0x59, 0xf7, 0xe1, - 0x18, 0xca, 0x39, 0xb2, 0x59, 0x67, 0x5c, 0xd7, 0x9c, 0xc5, 0x3a, 0xdf, 0xff, 0x77, 0x7d, 0x80, - 0x43, 0xe8, 0xee, 0x98, 0x07, 0x73, 0xcf, 0x87, 0x89, 0xf2, 0x62, 0xc2, 0xa4, 0x8b, 0x34, 0x4f, - 0xa6, 0xc1, 0xbd, 0x08, 0xf0, 0x66, 0xa2, 0xfc, 0x99, 0xf6, 0x27, 0xdd, 0xdd, 0xa9, 0xf2, 0x47, - 0xdd, 0xf2, 0xf3, 0x6a, 0xe7, 0x9e, 0x10, 0x7e, 0x0e, 0x8c, 0xbe, 0xd1, 0xbe, 0xfa, 0x3b, 0x0d, - 0xb2, 0xaf, 0xfd, 0x78, 0xf0, 0xf5, 0xaa, 0xdb, 0x1e, 0x08, 0x24, 0x9c, 0xf7, 0x16, 0x20, 0xdf, - 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, - 0xd4, 0xca, 0x37, 0x1d, 0x45, 0x09, 0xa7, 0xcd, 0x8d, 0x77, 0xfd, 0x99, 0xf3, 0x7e, 0xc4, 0xbb, - 0x3b, 0x4b, 0xee, 0xe2, 0x4e, 0x9b, 0x1e, 0xfd, 0x02, 0x07, 0x45, 0xda, 0x1e, 0x0c, 0x7a, 0x71, - 0x2b, 0xe9, 0x24, 0xad, 0xf2, 0x85, 0xf7, 0x07, 0xf3, 0x83, 0x45, 0x0b, 0x01, 0x16, 0x00, 0x0b, - 0x80, 0x85, 0x0d, 0x03, 0x0b, 0x71, 0x3a, 0xbc, 0x8c, 0xfb, 0x2e, 0x1d, 0xc0, 0x5d, 0x27, 0xb0, - 0xbb, 0xe7, 0xf0, 0x9a, 0x6f, 0xd2, 0xe1, 0xe5, 0xed, 0x4b, 0xb8, 0xa9, 0xa5, 0xd3, 0xcf, 0x5c, - 0x7e, 0xe2, 0x07, 0x7c, 0xfd, 0xe8, 0xfa, 0xb8, 0x78, 0x5c, 0x3c, 0x2e, 0x1e, 0x17, 0x8f, 0x8b, - 0xd7, 0x73, 0xf1, 0xc3, 0x5e, 0x20, 0xce, 0xfb, 0x3f, 0xb0, 0x06, 0xae, 0x1e, 0x57, 0x8f, 0xab, - 0xdf, 0x30, 0x57, 0x0f, 0xf5, 0xef, 0xf8, 0x07, 0xea, 0xff, 0x27, 0xd7, 0x87, 0xfa, 0x37, 0xfb, - 0xa4, 0x50, 0xff, 0x02, 0x57, 0x83, 0xfa, 0x2f, 0xbf, 0xb3, 0xa0, 0xfe, 0xd7, 0x83, 0x08, 0xc2, - 0xe8, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x03, 0x80, 0x01, 0xc0, - 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0xc8, 0x02, 0x03, 0xd3, 0x29, 0x59, 0x47, 0xca, 0x1d, 0xc5, - 0xf5, 0x4c, 0x14, 0x3c, 0x1e, 0xd6, 0xb1, 0x28, 0x25, 0xec, 0x51, 0xfe, 0xeb, 0x94, 0x92, 0x7d, - 0x1d, 0x9d, 0x71, 0xe7, 0x4e, 0xec, 0x75, 0x74, 0x39, 0xcf, 0x34, 0x05, 0x9a, 0x68, 0x0a, 0xf8, - 0x00, 0xd0, 0xd0, 0x14, 0x58, 0xe1, 0x91, 0xd0, 0x14, 0x80, 0xcf, 0x81, 0xcf, 0x81, 0xcf, 0x81, - 0xcf, 0x81, 0xcf, 0x81, 0xcf, 0x81, 0xcf, 0x81, 0xcf, 0x81, 0xcf, 0xd1, 0xa0, 0x08, 0xd0, 0x14, - 0x20, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, - 0x24, 0xdf, 0x14, 0x8f, 0x12, 0xd4, 0x0f, 0x67, 0x2f, 0x8e, 0xa6, 0x40, 0xf9, 0xfc, 0x00, 0x4d, - 0x01, 0xc0, 0x02, 0x60, 0x01, 0xb0, 0xc0, 0xc0, 0xa9, 0x4f, 0x4e, 0x1f, 0x4d, 0x01, 0x5c, 0x3c, - 0x2e, 0x1e, 0x17, 0x8f, 0x8b, 0x47, 0x53, 0x60, 0xe5, 0x4f, 0x8c, 0xa6, 0x00, 0xae, 0x1e, 0x57, - 0x8f, 0xab, 0x87, 0xfa, 0x77, 0xfc, 0x03, 0xf5, 0xff, 0x93, 0xeb, 0x43, 0xfd, 0x9b, 0x7d, 0x52, - 0xa8, 0x7f, 0x81, 0xab, 0x41, 0xfd, 0x97, 0xdf, 0x59, 0x50, 0xff, 0xeb, 0x41, 0x04, 0x34, 0x05, - 0x00, 0x06, 0x00, 0x03, 0x80, 0x01, 0xc0, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0x00, 0x0c, 0x00, - 0x06, 0x00, 0x83, 0x4a, 0x03, 0x03, 0x34, 0x05, 0x84, 0x34, 0x05, 0xc6, 0xa3, 0xf4, 0x56, 0x92, - 0x02, 0x5b, 0x8a, 0x9f, 0xd3, 0xd5, 0x67, 0xf4, 0xe9, 0xf3, 0x35, 0x4a, 0x69, 0x32, 0xf4, 0x87, - 0xad, 0x2c, 0xcd, 0x93, 0xda, 0x93, 0xf1, 0x7d, 0x1d, 0xe5, 0xb7, 0x15, 0xbe, 0xef, 0x75, 0x07, - 0xe1, 0xd1, 0x64, 0xf9, 0xf0, 0xe8, 0xa2, 0xf7, 0x36, 0x5f, 0xfd, 0x75, 0xb1, 0xf8, 0x96, 0xce, - 0x37, 0x5f, 0xe3, 0x7b, 0x37, 0xa6, 0x6f, 0x33, 0x69, 0xaf, 0xfd, 0xb5, 0x8b, 0x8c, 0x7f, 0xe6, - 0x6a, 0x6b, 0x5a, 0x5f, 0xb9, 0x9c, 0xa5, 0x34, 0xa6, 0x77, 0x81, 0xe1, 0x1d, 0x62, 0x76, 0x57, - 0x18, 0xdd, 0x39, 0x26, 0x77, 0x8e, 0xc1, 0xdd, 0x62, 0x6e, 0x5d, 0x8f, 0x59, 0x1a, 0x43, 0x17, - 0x16, 0xd3, 0x8d, 0xa3, 0x4e, 0x3f, 0xee, 0x94, 0xb1, 0x98, 0x49, 0x8f, 0xc4, 0x8b, 0x12, 0xd7, - 0x38, 0xcd, 0x9d, 0xf6, 0xd3, 0xa7, 0xb9, 0x98, 0xce, 0xb3, 0x99, 0xad, 0x5d, 0x09, 0x87, 0x76, - 0xfb, 0x1a, 0x1d, 0x7a, 0xb4, 0xf5, 0xbf, 0x4a, 0x49, 0x05, 0x1d, 0xef, 0x5c, 0x5a, 0xd2, 0xc1, - 0xa1, 0xad, 0xe1, 0xd0, 0x92, 0x4e, 0x55, 0xdc, 0x59, 0x59, 0xb5, 0x9b, 0x46, 0x6b, 0x62, 0xb1, - 0x8e, 0x74, 0xac, 0xf2, 0xeb, 0x79, 0x26, 0x64, 0xb5, 0xe3, 0xa7, 0x90, 0x55, 0xa9, 0xed, 0xe9, - 0x7a, 0x9b, 0x8a, 0x6d, 0x57, 0xb1, 0x6d, 0x2b, 0xb1, 0x7d, 0xfd, 0x80, 0xe7, 0xce, 0x44, 0xac, - 0x8a, 0xa0, 0xe8, 0xbe, 0x6c, 0x38, 0xbd, 0x34, 0x25, 0x43, 0x6f, 0x9c, 0x81, 0x94, 0x53, 0x10, - 0x77, 0x0e, 0xe2, 0x4e, 0x42, 0xd2, 0x59, 0xb8, 0x63, 0x05, 0xb7, 0x2b, 0x51, 0x2e, 0x2c, 0x0f, - 0x7d, 0x24, 0xa0, 0xd0, 0x42, 0x68, 0xf4, 0x6c, 0xf4, 0x99, 0x5f, 0x15, 0x0e, 0x6b, 0x70, 0xff, - 0x0f, 0xf2, 0xff, 0x3f, 0x22, 0x8e, 0x6a, 0xd4, 0x37, 0x32, 0x18, 0x7e, 0x11, 0xf4, 0xff, 0x33, - 0x57, 0x27, 0x04, 0x10, 0x02, 0x08, 0x01, 0x84, 0x80, 0xca, 0x86, 0x80, 0xcf, 0xd3, 0x10, 0xf0, - 0xff, 0x6b, 0x0d, 0xfb, 0xfd, 0x38, 0xcd, 0x1e, 0x3d, 0x7e, 0xf6, 0xf4, 0xe9, 0x94, 0x4d, 0x3b, - 0xcf, 0x7f, 0xe5, 0xae, 0xdf, 0x1b, 0x3c, 0xf0, 0x67, 0xc5, 0x95, 0xdb, 0xf1, 0xb7, 0x06, 0xc5, - 0xc6, 0xed, 0xed, 0xc6, 0x9b, 0x6f, 0xa3, 0xba, 0x6e, 0xf9, 0x9e, 0x1d, 0xf7, 0x00, 0xf7, 0xaa, - 0x15, 0xc4, 0xdf, 0xb2, 0x57, 0x59, 0xdc, 0x8d, 0x2f, 0xe3, 0xac, 0xff, 0x3d, 0xb8, 0x4a, 0x83, - 0xd6, 0xd7, 0x51, 0x93, 0x91, 0x08, 0xe8, 0xed, 0x44, 0xdd, 0x81, 0x04, 0xea, 0xb5, 0x06, 0xbc, - 0xe7, 0xd4, 0xa3, 0xe3, 0x67, 0x33, 0x0c, 0x34, 0xd2, 0xf6, 0x48, 0xdb, 0xc3, 0x08, 0xc2, 0x08, - 0xc2, 0x08, 0x02, 0x07, 0x81, 0x83, 0xc0, 0x41, 0xe0, 0x20, 0x8c, 0x20, 0x8c, 0x20, 0x21, 0x80, - 0x10, 0x40, 0x08, 0x20, 0x04, 0xc0, 0x08, 0x6e, 0x34, 0x23, 0x58, 0x43, 0xba, 0x87, 0xa9, 0x83, - 0x0a, 0x7e, 0x35, 0xbd, 0x61, 0x83, 0xc9, 0x3f, 0x7d, 0x88, 0x3b, 0x3e, 0xf7, 0xe4, 0x96, 0xa3, - 0xfe, 0x9c, 0x50, 0x7e, 0xce, 0x7a, 0x70, 0x9b, 0x8c, 0x15, 0x48, 0x26, 0x69, 0x8c, 0x15, 0x38, - 0xa4, 0xe7, 0x1a, 0x51, 0xfb, 0x32, 0x49, 0x83, 0x8b, 0xfe, 0xd5, 0xb0, 0xe7, 0x8e, 0x79, 0xbf, - 0x7b, 0x51, 0x37, 0xfc, 0xfb, 0x4e, 0xcd, 0x3b, 0x72, 0x39, 0x5a, 0x96, 0xa3, 0x65, 0xe5, 0xb1, - 0xd3, 0x9d, 0x38, 0xd9, 0x4f, 0xd2, 0x0b, 0x17, 0x06, 0x37, 0x09, 0x9a, 0xbf, 0x99, 0xbe, 0x21, - 0xa7, 0xb3, 0xe7, 0x22, 0x33, 0xe7, 0x22, 0xb3, 0xe6, 0x6e, 0x67, 0xcc, 0x6d, 0x8a, 0xbe, 0x4e, - 0xc6, 0x4b, 0xe7, 0x0c, 0xdc, 0xc1, 0x98, 0x29, 0x21, 0x88, 0x10, 0x44, 0x08, 0x12, 0x0b, 0x41, - 0x0e, 0x77, 0xa8, 0xcb, 0x40, 0x64, 0xd3, 0xf8, 0xd2, 0xef, 0x5e, 0x04, 0x97, 0xf1, 0xe5, 0x97, - 0xb8, 0x3f, 0xf8, 0x9a, 0x38, 0x4c, 0xc4, 0xef, 0x5f, 0x18, 0x4f, 0x88, 0x27, 0xc4, 0x13, 0x7a, - 0xe6, 0x09, 0xdd, 0x15, 0x30, 0x5c, 0x16, 0x2e, 0xee, 0x0e, 0xf8, 0x17, 0xff, 0xc9, 0xe2, 0xe0, - 0xa2, 0x7b, 0xf5, 0x25, 0xea, 0xde, 0xe5, 0x38, 0x6f, 0x9d, 0xcc, 0xf8, 0xbf, 0x9f, 0x95, 0xaf, - 0x5b, 0x83, 0x04, 0x36, 0x16, 0x09, 0x64, 0x71, 0x70, 0x19, 0x67, 0xfd, 0xa4, 0xe5, 0x2e, 0xfe, - 0x4d, 0x2f, 0x49, 0xe4, 0x23, 0xf2, 0x11, 0xf9, 0x3c, 0x8b, 0x7c, 0xc3, 0x24, 0xcd, 0x9e, 0x37, - 0x1d, 0x06, 0x3e, 0x17, 0x71, 0xcf, 0xad, 0xd4, 0xab, 0x5b, 0x29, 0x44, 0x81, 0x16, 0x1a, 0x11, - 0xfd, 0x4f, 0x29, 0x29, 0x57, 0x49, 0xb5, 0xcf, 0x1b, 0xb7, 0xc2, 0x92, 0x95, 0xfb, 0x54, 0x7b, - 0xcd, 0x97, 0x7b, 0x2f, 0x0f, 0x5e, 0x34, 0x5f, 0xee, 0x57, 0xe8, 0x9b, 0x79, 0xd2, 0xd5, 0x72, - 0x4e, 0xff, 0xc5, 0x2a, 0x74, 0x87, 0x45, 0xff, 0x45, 0x89, 0x3e, 0x99, 0x35, 0x5a, 0x20, 0xb6, - 0x04, 0xbf, 0xc7, 0x6d, 0x36, 0x54, 0x92, 0x41, 0x2b, 0x07, 0x93, 0x9c, 0xc0, 0x22, 0x27, 0x30, - 0xa8, 0x1c, 0xec, 0x59, 0xf5, 0xbd, 0x97, 0xb4, 0x7f, 0x13, 0xbb, 0x6f, 0xac, 0xd5, 0x8c, 0xb3, - 0x7c, 0x87, 0xd1, 0x6a, 0x3b, 0x6a, 0xf9, 0x7d, 0xb1, 0xdc, 0xdf, 0x5c, 0xf2, 0x0b, 0xae, 0xfb, - 0xe5, 0x14, 0xbf, 0xd8, 0x72, 0xef, 0xf1, 0xd7, 0x6f, 0xe5, 0xe7, 0x7f, 0xe3, 0x17, 0xef, 0x6b, - 0xd5, 0xf7, 0x24, 0xf0, 0x7e, 0x96, 0xb0, 0xd7, 0x25, 0xec, 0xf3, 0xe7, 0x6f, 0x73, 0xf1, 0x3b, - 0xfa, 0xc9, 0xfb, 0x69, 0xe4, 0xeb, 0xfd, 0xfc, 0xad, 0x14, 0xd0, 0x66, 0xf4, 0xb7, 0x7f, 0xf1, - 0xb6, 0x97, 0x4b, 0xe8, 0x96, 0x26, 0x0d, 0x56, 0x21, 0x05, 0xee, 0x82, 0xfe, 0x34, 0xce, 0x6e, - 0x3f, 0xc1, 0x32, 0x6f, 0x7e, 0x45, 0x5c, 0xbf, 0x36, 0x6e, 0x5f, 0x1b, 0x97, 0xdf, 0xc7, 0xdd, - 0x93, 0x67, 0x13, 0xde, 0x37, 0x4b, 0x43, 0xe3, 0x35, 0x48, 0xdf, 0x55, 0x48, 0xdd, 0x07, 0x54, - 0x59, 0x7f, 0x4d, 0xc9, 0xae, 0xb7, 0x1d, 0x7a, 0x57, 0xdd, 0xa4, 0xf5, 0x3d, 0xe8, 0x5c, 0xf5, - 0xff, 0x8e, 0xfa, 0xed, 0x24, 0xbd, 0x58, 0x7e, 0x6f, 0xcc, 0xff, 0xea, 0x72, 0x1b, 0x65, 0xd7, - 0x78, 0xa3, 0xf4, 0x3a, 0xb5, 0xdc, 0x23, 0xbd, 0x8e, 0xf4, 0xf6, 0x58, 0xb6, 0x4b, 0x71, 0x9a, - 0xd2, 0x2e, 0x7f, 0xdc, 0xd8, 0x7c, 0x41, 0x79, 0x59, 0x06, 0x73, 0xc5, 0x86, 0xdf, 0x95, 0xc9, - 0xdb, 0x75, 0x48, 0xda, 0x95, 0xcd, 0xad, 0x2c, 0xe5, 0x5a, 0x9a, 0x5a, 0x2d, 0x4d, 0xa1, 0xae, - 0x63, 0x8e, 0x32, 0x59, 0xe2, 0xaa, 0xcd, 0xb4, 0x25, 0x66, 0xda, 0x4b, 0xcf, 0xae, 0xaf, 0xd9, - 0xad, 0xbe, 0x76, 0x05, 0xa2, 0x4c, 0xc5, 0x61, 0x6d, 0xa3, 0x2e, 0x6b, 0xdc, 0xce, 0x8c, 0xdc, - 0x99, 0xb1, 0xbb, 0x30, 0x7a, 0x1d, 0x92, 0x61, 0xdd, 0xce, 0xf2, 0xb2, 0xca, 0xce, 0x6e, 0x14, - 0x9d, 0xeb, 0x26, 0xa8, 0xde, 0x43, 0x50, 0x5d, 0x6b, 0x5b, 0xd9, 0x70, 0xab, 0xe5, 0x07, 0x39, - 0x7a, 0xbd, 0xee, 0xdd, 0x9c, 0x3a, 0x18, 0x67, 0xd9, 0x0e, 0x87, 0x3a, 0x16, 0x2c, 0x40, 0x65, - 0x5d, 0x7c, 0x03, 0xbb, 0xde, 0xc8, 0x62, 0x1b, 0x5a, 0x6c, 0x63, 0x4b, 0x6c, 0xf0, 0x72, 0x1b, - 0xbd, 0xe4, 0x86, 0x5f, 0x9d, 0x3a, 0x10, 0xa0, 0x16, 0x5c, 0x52, 0x0f, 0xab, 0x50, 0x13, 0xc5, - 0x7f, 0x46, 0x2e, 0x24, 0x89, 0x07, 0xe3, 0x7f, 0xf8, 0x3e, 0xe1, 0x2c, 0x72, 0x82, 0x60, 0xdd, - 0x63, 0x64, 0xca, 0x7f, 0x58, 0x06, 0x1a, 0x70, 0xb9, 0xb8, 0x5c, 0x5c, 0xae, 0xc1, 0xee, 0xdc, - 0xf6, 0x62, 0x98, 0x81, 0xbe, 0x82, 0x67, 0x73, 0x2c, 0xf5, 0xb3, 0x3b, 0x62, 0x2b, 0xd3, 0xbe, - 0x82, 0x32, 0x72, 0xab, 0x1c, 0xe0, 0x08, 0x38, 0x07, 0x9c, 0xfb, 0xef, 0xa0, 0x38, 0xbc, 0xd1, - 0x43, 0x67, 0xc6, 0xe1, 0x8d, 0x42, 0xee, 0x8c, 0xc3, 0x1b, 0xd7, 0x72, 0x67, 0x1c, 0xde, 0xb8, - 0xb6, 0xd1, 0x71, 0x78, 0xa3, 0xd6, 0xf6, 0x04, 0xd6, 0x4a, 0x6c, 0x5f, 0x3f, 0x60, 0x2d, 0x52, - 0xed, 0xe5, 0x2f, 0x87, 0x4e, 0x2f, 0x3a, 0xbd, 0x4a, 0xce, 0xc2, 0x8d, 0xd3, 0x70, 0xe4, 0x3c, - 0xdc, 0x73, 0x63, 0x02, 0xd0, 0x47, 0x02, 0x0a, 0x2d, 0x84, 0x46, 0x48, 0xb5, 0x23, 0xd5, 0x4e, - 0x08, 0x20, 0x04, 0x10, 0x02, 0x08, 0x01, 0x48, 0xb5, 0xeb, 0xa3, 0x19, 0x0e, 0x6f, 0xe4, 0xf0, - 0xc6, 0x5f, 0x3d, 0x8b, 0xd7, 0x6a, 0xfe, 0x4b, 0xd6, 0x0f, 0x39, 0xbc, 0xf1, 0xe1, 0x44, 0x91, - 0xc3, 0x1b, 0x61, 0x04, 0x61, 0x04, 0x61, 0x04, 0x81, 0x83, 0xc0, 0x41, 0xe0, 0x20, 0x70, 0x10, - 0x46, 0x10, 0x46, 0x90, 0x10, 0x40, 0x08, 0x20, 0x04, 0x10, 0x02, 0x60, 0x04, 0x37, 0x91, 0x11, - 0xac, 0x21, 0xdd, 0xc3, 0xe1, 0x8d, 0x15, 0xfc, 0x6a, 0x72, 0x87, 0x37, 0x9e, 0x8e, 0xee, 0xe6, - 0x6d, 0x71, 0x33, 0x1c, 0xe4, 0x68, 0x40, 0xfb, 0x79, 0x77, 0x90, 0x23, 0xe3, 0x05, 0x6b, 0xa5, - 0x63, 0xcc, 0xfe, 0x33, 0xfb, 0x6f, 0x87, 0xcb, 0x18, 0x44, 0x65, 0x10, 0x55, 0x0f, 0x57, 0x31, - 0xfb, 0xef, 0x30, 0x2d, 0x66, 0xf6, 0x1f, 0x97, 0x8b, 0xcb, 0xc5, 0xe5, 0xea, 0xef, 0xce, 0x6d, - 0x66, 0xff, 0x2b, 0x45, 0x0b, 0x70, 0xa6, 0xc0, 0xdd, 0x4b, 0x70, 0xa6, 0x40, 0xe5, 0xcf, 0x14, - 0x58, 0xce, 0xee, 0xdd, 0x9f, 0x29, 0xb0, 0x98, 0xf8, 0xe2, 0x7c, 0x01, 0x37, 0x5f, 0xcf, 0xd9, - 0xf9, 0x02, 0x4b, 0x28, 0x60, 0xdf, 0x3e, 0x4f, 0x30, 0x88, 0xbb, 0xf1, 0xe8, 0xd8, 0x9f, 0xe0, - 0xa2, 0x7f, 0x35, 0xec, 0xad, 0x21, 0xe8, 0xfc, 0xf0, 0x65, 0xd0, 0x76, 0xd6, 0xcb, 0x37, 0x37, - 0x59, 0xdb, 0xf9, 0x21, 0xeb, 0x5b, 0x5f, 0xe6, 0xf9, 0xc1, 0xab, 0xa1, 0xf8, 0x2c, 0x06, 0xbd, - 0x50, 0x7c, 0x46, 0xf1, 0x59, 0x97, 0xd1, 0xa0, 0xea, 0x63, 0xc2, 0x54, 0x6c, 0x70, 0xd5, 0x67, - 0x14, 0x44, 0x9c, 0x12, 0x8d, 0xc5, 0x15, 0x21, 0x19, 0x21, 0x19, 0x21, 0x19, 0x3d, 0x22, 0x19, - 0x07, 0x59, 0xff, 0xd7, 0xe7, 0x24, 0x55, 0x83, 0x5e, 0x2c, 0x11, 0xd5, 0x2e, 0x7b, 0xdd, 0x41, - 0xd0, 0x1d, 0xf4, 0xdc, 0x79, 0xbc, 0xe2, 0x8a, 0x78, 0x3c, 0x3c, 0x1e, 0x1e, 0xcf, 0x23, 0x8f, - 0x57, 0xa1, 0x4a, 0xf6, 0xd3, 0xa7, 0xe3, 0xa3, 0x3d, 0xbb, 0x83, 0xde, 0xe0, 0x59, 0xeb, 0x2a, - 0x1d, 0x64, 0xfd, 0x28, 0x49, 0xe3, 0x76, 0x70, 0x8b, 0xfa, 0x9f, 0x65, 0xc3, 0x34, 0x8d, 0xbb, - 0x83, 0xfc, 0x7f, 0x97, 0x3f, 0x96, 0x4f, 0xfa, 0x93, 0x95, 0xa2, 0xeb, 0xe7, 0xae, 0xe6, 0x82, - 0xbe, 0x9f, 0xbf, 0xa8, 0x03, 0x3a, 0x7f, 0xee, 0xa2, 0xa5, 0xe8, 0x7d, 0x87, 0x71, 0x90, 0x32, - 0xdb, 0x03, 0x84, 0xf5, 0x83, 0x9c, 0xef, 0x83, 0x7f, 0x5a, 0x01, 0xe1, 0xed, 0xd2, 0x00, 0xcd, - 0x15, 0x30, 0x43, 0x70, 0x1b, 0x6e, 0x04, 0xc1, 0x6d, 0xc3, 0xf4, 0xe1, 0x01, 0xc1, 0xed, 0x62, - 0x4b, 0xd3, 0xcc, 0xbf, 0xd4, 0xdb, 0xa7, 0x99, 0x1f, 0xd7, 0x55, 0x05, 0xd7, 0x05, 0xad, 0x0b, - 0xc9, 0x01, 0xc9, 0x01, 0xc9, 0xb1, 0x64, 0x64, 0x84, 0xd6, 0x85, 0xd6, 0xc5, 0xe3, 0xe1, 0xf1, - 0x36, 0xc5, 0xe3, 0x41, 0xeb, 0x0a, 0x7f, 0x32, 0x68, 0x5d, 0x68, 0xdd, 0xd5, 0x81, 0xbe, 0x3f, - 0xb4, 0x6e, 0xfd, 0x66, 0x2a, 0xd6, 0x84, 0x5f, 0xcc, 0x53, 0x6c, 0xd7, 0x70, 0x9e, 0x62, 0xf9, - 0x9d, 0xa0, 0x30, 0x65, 0x71, 0x1b, 0xf5, 0xce, 0x26, 0xab, 0xbe, 0x1b, 0x2d, 0xca, 0xb8, 0x85, - 0xeb, 0x8f, 0xab, 0x3a, 0x79, 0x91, 0xcf, 0x54, 0xaf, 0x31, 0x6c, 0x31, 0xf9, 0x4d, 0xe6, 0x2b, - 0xf4, 0x10, 0xca, 0x46, 0xcf, 0x57, 0xac, 0x27, 0x51, 0x32, 0x6b, 0xb0, 0xdf, 0x99, 0xa1, 0x90, - 0x03, 0xe4, 0xcc, 0x50, 0x30, 0x43, 0xa1, 0xcb, 0x73, 0x51, 0x6c, 0x33, 0xe1, 0xaf, 0x36, 0xb8, - 0xd8, 0x36, 0x55, 0x9b, 0x71, 0xc6, 0x3d, 0x4f, 0x2f, 0x09, 0xf9, 0x0c, 0xf9, 0x0c, 0xf9, 0xec, - 0x11, 0xf9, 0x5c, 0xa3, 0x72, 0x1b, 0x34, 0xe3, 0x43, 0xf8, 0xfb, 0x41, 0x49, 0x31, 0x9f, 0x3b, - 0xac, 0xca, 0xc7, 0x1f, 0x67, 0x71, 0x87, 0x26, 0x51, 0x92, 0x3f, 0x9a, 0x44, 0xcb, 0x06, 0x04, - 0xb7, 0x4d, 0xa2, 0x25, 0xc5, 0x10, 0x75, 0x7c, 0x58, 0x7f, 0xd8, 0x5d, 0x81, 0x71, 0x5c, 0xf8, - 0x11, 0xc6, 0x97, 0x01, 0xb8, 0xe2, 0xbb, 0x00, 0xae, 0xcb, 0x6d, 0x3a, 0x77, 0x98, 0x75, 0x74, - 0x35, 0xcf, 0x0e, 0x5b, 0x04, 0xae, 0x02, 0x57, 0xab, 0x04, 0x57, 0x9d, 0x1d, 0xb6, 0x18, 0xb5, - 0x9c, 0x9d, 0x71, 0x32, 0x63, 0xbc, 0xf9, 0x75, 0xdd, 0x9e, 0xb1, 0xb5, 0xbb, 0xa1, 0x67, 0x6c, - 0xf5, 0x38, 0x63, 0xcb, 0xe2, 0x8c, 0xad, 0x5e, 0x6d, 0xcf, 0xd8, 0x72, 0xe5, 0x3e, 0x8a, 0x0b, - 0x96, 0xac, 0x28, 0xfd, 0x72, 0x13, 0x94, 0xaa, 0x34, 0x29, 0xb9, 0x15, 0x31, 0xf7, 0x22, 0xe9, - 0x66, 0xc4, 0xdd, 0x8d, 0xb4, 0xdb, 0x51, 0x73, 0x3f, 0x6a, 0x6e, 0x48, 0xc3, 0x1d, 0xb9, 0x75, - 0x4b, 0x8e, 0xdd, 0x93, 0x98, 0x9b, 0x2a, 0x2e, 0xdc, 0x8e, 0x5b, 0x51, 0x6f, 0x30, 0xec, 0x46, - 0x59, 0x1c, 0x5c, 0xf4, 0x05, 0x8d, 0x72, 0xb2, 0xab, 0xee, 0x2f, 0x28, 0x64, 0x31, 0x7f, 0xc4, - 0x9d, 0x68, 0xd8, 0x1d, 0x19, 0x4c, 0x27, 0xea, 0x0e, 0xc4, 0xd6, 0x71, 0x7b, 0xe6, 0xa9, 0x9a, - 0x03, 0xd5, 0x70, 0xa4, 0x6a, 0x0e, 0x55, 0xcb, 0xb1, 0xaa, 0x3b, 0x58, 0x75, 0x47, 0xab, 0xe9, - 0x70, 0x65, 0x1c, 0xaf, 0x90, 0x03, 0x2e, 0x5e, 0x8c, 0xf3, 0x33, 0x59, 0x17, 0xee, 0x96, 0x2f, - 0x57, 0x57, 0xdd, 0x38, 0x4a, 0x25, 0xf7, 0xcb, 0x24, 0xeb, 0xdb, 0xdd, 0xaa, 0xc6, 0x87, 0x15, - 0xf8, 0xa8, 0x8d, 0x76, 0x32, 0x68, 0x45, 0xfd, 0xb6, 0x42, 0xe0, 0xcb, 0x17, 0x22, 0xe0, 0x11, - 0xf0, 0x08, 0x78, 0x04, 0x3c, 0x02, 0x1e, 0x01, 0xcf, 0x22, 0xe0, 0xdd, 0x6f, 0xe8, 0x91, 0x8f, - 0x7c, 0x73, 0x2b, 0x12, 0x9a, 0x08, 0x4d, 0x84, 0x26, 0x42, 0x53, 0x65, 0x42, 0x93, 0x3b, 0xf9, - 0x84, 0x5f, 0x86, 0xa6, 0x17, 0x82, 0x6b, 0x2c, 0x90, 0x5b, 0x28, 0xfe, 0xe3, 0x4c, 0x4d, 0xa1, - 0xea, 0x11, 0xf2, 0x5b, 0x16, 0x7c, 0xbd, 0xea, 0x69, 0x44, 0xc6, 0x7c, 0x25, 0x22, 0x22, 0x11, - 0x91, 0x88, 0x48, 0x44, 0xac, 0x4c, 0x44, 0x4c, 0x7a, 0x41, 0xd4, 0x6e, 0xf7, 0xe3, 0xc1, 0x40, - 0x23, 0x28, 0xbe, 0x14, 0x5c, 0x23, 0x7f, 0x67, 0x9f, 0x45, 0x4d, 0x56, 0x76, 0xcb, 0xdf, 0xfb, - 0x32, 0xd7, 0x7b, 0x0a, 0xdf, 0x66, 0xee, 0x1b, 0xfd, 0xa6, 0xb0, 0xd6, 0x69, 0x94, 0x65, 0x71, - 0x3f, 0x15, 0xff, 0x5c, 0xc5, 0x82, 0xff, 0xf3, 0xe8, 0xd1, 0xe7, 0x9d, 0xe0, 0xe5, 0xf9, 0x8f, - 0xcf, 0xbb, 0xc1, 0xcb, 0xf3, 0xf1, 0x3f, 0xee, 0x8e, 0xfe, 0x67, 0xfc, 0xcf, 0xcd, 0xcf, 0x3b, - 0xc1, 0xde, 0xe4, 0x9f, 0xf7, 0x3f, 0xef, 0x04, 0xfb, 0xe7, 0x8f, 0xff, 0xf3, 0x9f, 0xa7, 0x8f, - 0xff, 0x79, 0x7e, 0xb3, 0xfa, 0x2f, 0xfe, 0x57, 0x43, 0xfc, 0xa1, 0xce, 0x45, 0x57, 0xb8, 0x79, - 0x52, 0xa3, 0x4d, 0x74, 0xc0, 0x26, 0x72, 0xbb, 0x89, 0xa2, 0xa0, 0x73, 0x18, 0xbc, 0x3d, 0xff, - 0x67, 0xf7, 0xc9, 0xde, 0xcd, 0xab, 0xc7, 0xff, 0xbc, 0xb8, 0xb9, 0xff, 0x87, 0x3f, 0x1e, 0xfa, - 0x6b, 0xbb, 0x4f, 0x5e, 0xdc, 0xbc, 0x5a, 0xf0, 0x6f, 0x0e, 0x6e, 0x5e, 0x2d, 0x79, 0x8d, 0xfd, - 0x9b, 0x47, 0x73, 0x7f, 0xf5, 0xf6, 0xcf, 0x9b, 0x8b, 0x7e, 0x61, 0x6f, 0xc1, 0x2f, 0x3c, 0x5f, - 0xf4, 0x0b, 0xcf, 0x17, 0xfc, 0xc2, 0xc2, 0x5b, 0x6a, 0x2e, 0xf8, 0x85, 0xfd, 0x9b, 0x1f, 0x73, - 0x7f, 0xff, 0xd1, 0xc3, 0x7f, 0xf5, 0xe0, 0xe6, 0xf1, 0x8f, 0x45, 0xff, 0xee, 0xc5, 0xcd, 0x8f, - 0x57, 0x8f, 0x6b, 0xe0, 0x52, 0xb6, 0xaa, 0x75, 0xdf, 0xd5, 0x40, 0xb8, 0x4e, 0x4e, 0xd9, 0x5d, - 0xd9, 0xa9, 0x3a, 0x92, 0xdb, 0x02, 0xf9, 0x82, 0x7c, 0x41, 0xbe, 0x20, 0x5f, 0x23, 0xe4, 0xbb, - 0x09, 0x5c, 0xf0, 0xca, 0xe7, 0x41, 0x95, 0x3c, 0x57, 0xc5, 0x20, 0xaa, 0x7a, 0xdd, 0xee, 0xeb, - 0x48, 0xf9, 0x61, 0xe1, 0xf5, 0xb5, 0x15, 0x21, 0x46, 0x43, 0xc6, 0xa3, 0xff, 0x7e, 0x36, 0x1e, - 0x87, 0x2a, 0xa5, 0x11, 0x21, 0xff, 0x4d, 0x1d, 0x7e, 0xcf, 0x46, 0x9c, 0xca, 0x76, 0x58, 0x17, - 0x8e, 0xe9, 0xfe, 0x42, 0x8c, 0x88, 0x30, 0x22, 0x62, 0x9d, 0x29, 0x31, 0x22, 0xa2, 0x16, 0x33, - 0xc4, 0x46, 0x44, 0x84, 0x26, 0xda, 0xe6, 0x36, 0x93, 0xc8, 0x64, 0x9b, 0xb0, 0xfb, 0x02, 0x10, - 0x02, 0x08, 0x01, 0x84, 0x3e, 0x02, 0x42, 0x29, 0x77, 0x58, 0x2c, 0x90, 0xb4, 0xe3, 0x34, 0x4b, - 0x3a, 0xdf, 0x93, 0xf4, 0x22, 0xe8, 0xc9, 0x6f, 0xce, 0x99, 0x0d, 0xfa, 0xc0, 0xda, 0xc2, 0x76, - 0x26, 0xcb, 0xa7, 0xa9, 0xb9, 0x51, 0x4d, 0x77, 0xaa, 0xee, 0x56, 0xb5, 0xdd, 0xab, 0x99, 0x9b, - 0x35, 0x73, 0xb7, 0x16, 0x6e, 0x57, 0xd6, 0xfd, 0x0a, 0xbb, 0x61, 0x3d, 0x7e, 0x6e, 0xde, 0x47, - 0xf6, 0x02, 0x35, 0x63, 0xd4, 0x68, 0x54, 0xb9, 0xff, 0x2a, 0x75, 0x8a, 0xb7, 0x3a, 0x1e, 0x64, - 0x7b, 0xae, 0x81, 0x45, 0xd5, 0x8f, 0x6c, 0x2b, 0x97, 0xe0, 0xa7, 0x51, 0x48, 0xb9, 0x14, 0x5f, - 0x2c, 0xac, 0xda, 0xd7, 0xf2, 0x2c, 0x5f, 0xec, 0xf1, 0x8f, 0x47, 0x9f, 0x77, 0x83, 0xe6, 0xf9, - 0xe4, 0xff, 0x3c, 0xff, 0xbc, 0x13, 0x34, 0xcf, 0x55, 0x8a, 0xd4, 0x93, 0x9f, 0x73, 0x95, 0x95, - 0x6e, 0x9e, 0xd4, 0x78, 0x6f, 0x1e, 0xb0, 0x37, 0x55, 0xf6, 0x26, 0xed, 0x32, 0xfa, 0xed, 0x32, - 0xcf, 0x1e, 0xed, 0xde, 0x3a, 0xb0, 0xdf, 0xc6, 0x3e, 0x6d, 0xf7, 0x7c, 0xce, 0xd5, 0x8d, 0x5d, - 0x57, 0xfd, 0x1c, 0x16, 0x5d, 0x42, 0xb5, 0x20, 0x3d, 0x84, 0xeb, 0x86, 0xc5, 0x3a, 0xf6, 0xf5, - 0xc3, 0x7b, 0xc5, 0x2e, 0x91, 0x7a, 0xa2, 0x9c, 0x0d, 0x48, 0xf4, 0x74, 0x8d, 0x4f, 0xf0, 0x14, - 0x67, 0xe9, 0xc7, 0xcb, 0x54, 0x9c, 0xa4, 0x6f, 0x42, 0xd2, 0x7b, 0xc3, 0x22, 0x41, 0xd2, 0x6f, - 0x6e, 0xbc, 0x82, 0xa4, 0x97, 0x70, 0x9f, 0x90, 0xf4, 0x1e, 0xbb, 0x55, 0x6d, 0xf7, 0x6a, 0xe6, - 0x66, 0xcd, 0xdc, 0xad, 0x85, 0xdb, 0xd5, 0x01, 0x52, 0x90, 0xf4, 0x4e, 0xb2, 0x4b, 0x48, 0x7a, - 0x27, 0x44, 0x20, 0x24, 0xbd, 0x0e, 0x11, 0x08, 0x49, 0x5f, 0x45, 0x67, 0x6a, 0xbb, 0x37, 0x21, - 0xe9, 0x75, 0xf6, 0x26, 0x24, 0x3d, 0x24, 0x3d, 0x24, 0xbd, 0xf5, 0xfd, 0x43, 0xd2, 0x3f, 0xb4, - 0x8e, 0x7f, 0x24, 0xfd, 0x98, 0x3b, 0xde, 0x60, 0x8e, 0x3e, 0x8b, 0xfa, 0x17, 0x71, 0x36, 0x90, - 0x67, 0xe9, 0x27, 0x0b, 0xd1, 0x4c, 0x6f, 0x45, 0x2c, 0xc1, 0xd3, 0x57, 0x8e, 0x38, 0x82, 0xa7, - 0x5f, 0xf4, 0x62, 0xc4, 0x79, 0xfa, 0xb1, 0xbf, 0xd2, 0xe3, 0xe6, 0xf3, 0xf5, 0x74, 0xf8, 0xf8, - 0x5d, 0xf8, 0x78, 0x7f, 0xdd, 0xa7, 0xb6, 0x1b, 0x35, 0x73, 0xa7, 0x66, 0x6e, 0xd5, 0xc2, 0xbd, - 0xea, 0x60, 0x26, 0x69, 0x3e, 0x5e, 0xda, 0xed, 0x16, 0x0b, 0x09, 0x8f, 0x78, 0x2e, 0xdc, 0xdc, - 0xa2, 0x23, 0x9f, 0x46, 0xee, 0x58, 0xdd, 0x2d, 0x5b, 0xb8, 0x67, 0x33, 0x37, 0x6d, 0xe5, 0xae, - 0xcd, 0xdd, 0xb6, 0xb9, 0xfb, 0xb6, 0x74, 0xe3, 0x7a, 0x14, 0xd8, 0xb6, 0x5e, 0x65, 0x40, 0xcd, - 0xbd, 0x17, 0x0b, 0xb6, 0xe3, 0x41, 0x96, 0xa4, 0xf2, 0xd4, 0xd3, 0x4f, 0x3d, 0xc5, 0xdd, 0x9b, - 0x50, 0xb6, 0x5c, 0x9d, 0xfe, 0x18, 0xf3, 0x40, 0x60, 0x19, 0x10, 0xcc, 0x03, 0x83, 0x75, 0x80, - 0xf0, 0x26, 0x50, 0x78, 0x13, 0x30, 0x7c, 0x08, 0x1c, 0xba, 0x01, 0x44, 0x39, 0x90, 0x14, 0x2f, - 0x58, 0xad, 0x7f, 0x67, 0xe1, 0x6e, 0xd7, 0xec, 0xe7, 0x59, 0x98, 0xdf, 0xbf, 0x34, 0x58, 0x5b, - 0xb5, 0xdf, 0xe7, 0xfe, 0x8f, 0x8d, 0x87, 0xdb, 0xb6, 0xef, 0x07, 0x5a, 0x68, 0x02, 0xbf, 0x19, - 0xde, 0x83, 0x55, 0x4f, 0xc2, 0xdc, 0x8d, 0x6c, 0x6a, 0xff, 0xd0, 0xfd, 0x9f, 0x73, 0x93, 0x95, - 0x6f, 0x9e, 0x6c, 0xb0, 0x2f, 0x38, 0xc0, 0x17, 0x78, 0xe9, 0x0b, 0xe8, 0x57, 0xa2, 0x5f, 0xc9, - 0x1b, 0x07, 0xb9, 0x55, 0xef, 0xe7, 0xd4, 0x7b, 0x3e, 0xc5, 0x50, 0xd3, 0x48, 0xda, 0x76, 0xd4, - 0x51, 0xd2, 0x86, 0x31, 0x82, 0x31, 0x82, 0x31, 0x82, 0x31, 0x82, 0x31, 0xaa, 0x0b, 0x63, 0x34, - 0xc8, 0xfa, 0x49, 0x7a, 0x61, 0x49, 0x17, 0xfd, 0x46, 0x56, 0x50, 0x3e, 0x2b, 0xe8, 0x05, 0x59, - 0xd6, 0x35, 0xcc, 0x0c, 0xc6, 0xeb, 0x93, 0x1d, 0x90, 0x1d, 0x90, 0x1d, 0x90, 0x1d, 0x90, 0x1d, - 0xd4, 0x24, 0x3b, 0x18, 0x26, 0x69, 0xf6, 0x9b, 0x61, 0x72, 0xb0, 0x6f, 0xb0, 0xf4, 0x87, 0x28, - 0xbd, 0xd8, 0xc8, 0x5a, 0xd2, 0xfb, 0x24, 0x35, 0x73, 0xaf, 0xc6, 0x31, 0x7d, 0xee, 0x36, 0x3e, - 0x45, 0xdd, 0x61, 0xec, 0xc1, 0x7d, 0xbc, 0xed, 0x8f, 0x67, 0xb9, 0xfe, 0x48, 0x2e, 0x92, 0xd1, - 0xe0, 0xd2, 0x8e, 0xd9, 0xfd, 0xdc, 0x18, 0xf2, 0xf8, 0xef, 0xa3, 0x6f, 0x98, 0xe6, 0x3d, 0xd3, - 0x6c, 0xee, 0xef, 0x63, 0x9c, 0x36, 0x89, 0x80, 0xdd, 0xaa, 0x50, 0xe8, 0xe5, 0xcd, 0x76, 0x60, - 0xd4, 0xba, 0x5c, 0x50, 0x2e, 0xe3, 0xf5, 0x01, 0xcb, 0x80, 0x65, 0xc0, 0x32, 0x60, 0x19, 0xb0, - 0x5c, 0x13, 0xb0, 0x9c, 0xf4, 0x82, 0xa8, 0xdd, 0xee, 0xc7, 0x83, 0x01, 0xdd, 0x97, 0x9b, 0x81, - 0x98, 0x67, 0xba, 0x2f, 0xed, 0xbe, 0xfd, 0x9c, 0x0d, 0xd0, 0x72, 0xa5, 0xdd, 0x7e, 0x49, 0x7b, - 0xe5, 0x26, 0x6d, 0xf6, 0x03, 0x36, 0xbb, 0x9f, 0x9b, 0x9d, 0xfe, 0x4a, 0xfd, 0xfe, 0x4a, 0x1a, - 0x27, 0x61, 0x7d, 0xbc, 0x5e, 0x49, 0x6b, 0x9e, 0x58, 0x49, 0x58, 0x6e, 0x9e, 0xcf, 0xf2, 0x4e, - 0x68, 0x2e, 0x97, 0x3f, 0xcb, 0xff, 0x57, 0xf4, 0x70, 0x18, 0x7d, 0x93, 0x52, 0x30, 0x27, 0xcd, - 0x2e, 0x5f, 0xfd, 0xee, 0x5e, 0x65, 0x2a, 0x12, 0x21, 0x10, 0xd1, 0x85, 0x11, 0x02, 0x41, 0x08, - 0xa4, 0xe2, 0x81, 0x5b, 0x9d, 0x3a, 0x2c, 0x76, 0x6b, 0x37, 0x8e, 0x3a, 0xfd, 0xb8, 0x63, 0x21, - 0x13, 0xfe, 0x42, 0x57, 0x26, 0x7c, 0x94, 0x9b, 0x3c, 0x7d, 0x9a, 0xe7, 0x02, 0xcf, 0x92, 0x36, - 0xe9, 0xc0, 0x0a, 0x19, 0x9e, 0xe8, 0xd9, 0x72, 0x0b, 0xad, 0x53, 0xf2, 0xac, 0xb9, 0x85, 0x76, - 0xa9, 0x9d, 0x14, 0x34, 0x49, 0x0a, 0x48, 0x0a, 0x48, 0x0a, 0x48, 0x0a, 0xee, 0xbd, 0x48, 0xd4, - 0xc1, 0x68, 0x50, 0xa9, 0x5b, 0x40, 0x30, 0x0f, 0x0c, 0xd6, 0x01, 0xc2, 0x9b, 0x40, 0xe1, 0x4d, - 0xc0, 0xf0, 0x21, 0x70, 0xe8, 0x06, 0x10, 0xe5, 0x40, 0x62, 0x87, 0x32, 0xe7, 0x76, 0x3b, 0xea, - 0x60, 0x16, 0x3b, 0x0b, 0x75, 0xb0, 0xfb, 0x26, 0x40, 0xc5, 0x1a, 0x75, 0xb0, 0xe2, 0x87, 0xf6, - 0x15, 0x75, 0x5f, 0x80, 0x3a, 0x98, 0x9f, 0xbe, 0x80, 0xee, 0x15, 0xd4, 0xc1, 0xbc, 0x71, 0x90, - 0x34, 0xb9, 0x54, 0x2f, 0xd4, 0xa0, 0x0e, 0x06, 0x63, 0x04, 0x63, 0x04, 0x63, 0x04, 0x63, 0x04, - 0x63, 0xe4, 0x64, 0xb7, 0xa3, 0x0e, 0x56, 0x8b, 0xac, 0x00, 0x75, 0x30, 0xb2, 0x03, 0xb2, 0x03, - 0xb2, 0x03, 0xb2, 0x03, 0xb2, 0x03, 0x87, 0xbb, 0x1d, 0x75, 0x30, 0xed, 0x1f, 0xd4, 0xc1, 0x50, - 0x07, 0xbb, 0x73, 0x1f, 0xa8, 0x83, 0x6d, 0xa3, 0x0e, 0xf6, 0xb0, 0x69, 0xa2, 0x0e, 0x66, 0x96, - 0x08, 0xd8, 0xad, 0x0a, 0x85, 0x5e, 0xde, 0x6c, 0x51, 0x07, 0x03, 0x2c, 0x03, 0x96, 0x01, 0xcb, - 0x80, 0x65, 0xc0, 0xb2, 0xcb, 0xdd, 0x8e, 0x3a, 0x18, 0xea, 0x60, 0x08, 0x06, 0xa1, 0x0e, 0x56, - 0x6b, 0x48, 0x60, 0xcc, 0x06, 0xa0, 0x0e, 0xc6, 0x66, 0xff, 0xc9, 0x66, 0xa7, 0xbf, 0x12, 0x75, - 0x30, 0x58, 0x9f, 0xea, 0xb0, 0x3e, 0xa8, 0x83, 0xb9, 0xe0, 0xb3, 0x7c, 0x57, 0x07, 0x1b, 0xab, - 0x4c, 0xd4, 0x45, 0x0d, 0x64, 0xab, 0xc2, 0xb6, 0xda, 0xf8, 0x57, 0xfc, 0x5d, 0xa5, 0x93, 0xb7, - 0x71, 0x9c, 0x0c, 0xb2, 0xc3, 0x2c, 0xd3, 0x99, 0xb0, 0x6f, 0xbc, 0x4f, 0xd2, 0x37, 0xdd, 0xf8, - 0x32, 0x4e, 0x47, 0x65, 0x88, 0x74, 0xd8, 0xed, 0x2a, 0x68, 0xb6, 0xbc, 0x8f, 0xbe, 0xe9, 0x2f, - 0xfa, 0x67, 0xbf, 0x1d, 0xf7, 0xe3, 0xf6, 0xeb, 0xef, 0xf9, 0x92, 0x95, 0xb6, 0x46, 0x65, 0x8f, - 0xe9, 0xbd, 0xa7, 0x6c, 0xa8, 0x28, 0x0d, 0xf5, 0x87, 0xad, 0x2c, 0xcd, 0xc1, 0xcc, 0xc9, 0xf8, - 0xa1, 0x8e, 0xf2, 0x67, 0x0a, 0x4f, 0x47, 0x37, 0xfe, 0xb6, 0x78, 0xa4, 0xfc, 0x0f, 0xc2, 0x0f, - 0xc3, 0x6e, 0x1c, 0x1e, 0x8e, 0x9e, 0x21, 0x7c, 0x33, 0x7d, 0x86, 0x77, 0xfd, 0x38, 0xfc, 0x38, - 0xbe, 0xf5, 0xad, 0x6a, 0x3a, 0x5d, 0x99, 0x2b, 0x0b, 0x6d, 0x1c, 0xad, 0x0d, 0xe3, 0xef, 0x46, - 0x91, 0x31, 0x33, 0xf7, 0x46, 0xe0, 0xf6, 0x8a, 0x8e, 0xcd, 0x49, 0xda, 0x8c, 0xfc, 0x33, 0x1f, - 0x01, 0xc7, 0xea, 0xdc, 0x91, 0xba, 0x35, 0x6d, 0x77, 0x06, 0xe8, 0xd0, 0xf8, 0x84, 0x64, 0xee, - 0x44, 0xe5, 0xec, 0x84, 0x64, 0xeb, 0xc4, 0xe4, 0xe9, 0x24, 0x0b, 0xdf, 0xe2, 0x85, 0x6d, 0xe9, - 0xc2, 0xb5, 0x5a, 0x61, 0x5a, 0xad, 0xf0, 0xac, 0x51, 0x58, 0xf6, 0x3b, 0x98, 0x49, 0xc9, 0xb8, - 0x35, 0xda, 0xf1, 0x6c, 0x0c, 0x11, 0x33, 0xca, 0xa9, 0x34, 0x9b, 0x74, 0xd0, 0x1a, 0xbf, 0xb0, - 0xb8, 0x13, 0x0d, 0xbb, 0x23, 0x83, 0xe9, 0x44, 0xdd, 0x81, 0xd8, 0x3a, 0xb2, 0x1d, 0x47, 0xe2, - 0x9d, 0x45, 0x1a, 0x1d, 0x44, 0x6a, 0x9d, 0x42, 0x5a, 0x1d, 0x41, 0xea, 0x9d, 0x3f, 0xea, 0x1d, - 0x3e, 0x9a, 0x9d, 0x3c, 0xd5, 0x02, 0xa7, 0xe2, 0x1d, 0x38, 0xc5, 0x6e, 0xf9, 0x72, 0x75, 0xd5, - 0x8d, 0x23, 0x49, 0xfd, 0xca, 0x22, 0xeb, 0xdb, 0xad, 0x0a, 0xe0, 0x14, 0x48, 0xc6, 0xda, 0xc9, - 0xa0, 0x15, 0xf5, 0xdb, 0x0a, 0x81, 0x2f, 0x5f, 0x88, 0x80, 0x47, 0xc0, 0x23, 0xe0, 0x11, 0xf0, - 0x08, 0x78, 0x04, 0x3c, 0x8b, 0x80, 0x77, 0x9f, 0x7a, 0x94, 0x8f, 0x7c, 0x73, 0x2b, 0x12, 0x9a, - 0x08, 0x4d, 0x84, 0x26, 0x42, 0x53, 0x65, 0x42, 0x93, 0xfc, 0x01, 0x47, 0x1a, 0x07, 0x1a, 0xdd, - 0x3d, 0xc0, 0xe8, 0xc1, 0xff, 0xe4, 0xa7, 0x1a, 0x8d, 0xca, 0x3d, 0x1b, 0x1d, 0x21, 0xbf, 0x65, - 0xc1, 0xd7, 0xab, 0x9e, 0x46, 0x64, 0xcc, 0x57, 0x22, 0x22, 0x12, 0x11, 0x89, 0x88, 0x44, 0xc4, - 0xca, 0x44, 0x44, 0x95, 0x39, 0x40, 0x8d, 0x79, 0x3f, 0x9d, 0xb9, 0x3e, 0x85, 0xbe, 0x3f, 0xa3, - 0x39, 0x3d, 0xcd, 0x11, 0x1d, 0xf5, 0x51, 0x9c, 0xda, 0xcd, 0xd7, 0x9d, 0x57, 0xb9, 0x95, 0x56, - 0x77, 0x13, 0x1d, 0xb0, 0x89, 0xdc, 0x6e, 0x22, 0xe6, 0xd6, 0x6a, 0x39, 0xb7, 0x76, 0x5e, 0xd1, - 0xa6, 0xe8, 0xf3, 0x0d, 0x46, 0xb8, 0xbd, 0x28, 0xfb, 0x1a, 0x0c, 0xe2, 0x6e, 0x3c, 0xea, 0xd1, - 0x0c, 0x2e, 0xfa, 0x57, 0x43, 0x05, 0xb4, 0xfb, 0xe0, 0xaa, 0x20, 0x5f, 0x90, 0x2f, 0xc8, 0x17, - 0xe4, 0x5b, 0x19, 0xe4, 0xbb, 0x09, 0x5c, 0xf0, 0x43, 0x9e, 0x7a, 0xf0, 0xe0, 0x9f, 0x4e, 0x38, - 0xe3, 0xd1, 0xff, 0x09, 0xa4, 0xce, 0xc3, 0x67, 0x76, 0xc5, 0xed, 0xc7, 0xb7, 0x9f, 0x5d, 0x11, - 0x18, 0x97, 0x76, 0x38, 0x0d, 0xb2, 0xe5, 0x91, 0x51, 0x48, 0x19, 0x83, 0xbd, 0x11, 0x34, 0x9c, - 0x0e, 0xdd, 0x94, 0x1c, 0x54, 0x72, 0x63, 0x8b, 0xe5, 0x2d, 0xc7, 0x81, 0xd5, 0x34, 0x5a, 0x93, - 0xec, 0xd4, 0x8d, 0xb5, 0x14, 0xa1, 0x2f, 0xbf, 0xae, 0x23, 0xbb, 0x76, 0x3b, 0x73, 0xe4, 0x3c, - 0x25, 0x97, 0x48, 0xc1, 0xc5, 0x52, 0x6e, 0xa9, 0x14, 0x5b, 0x3c, 0xa5, 0x16, 0x4f, 0xa1, 0x25, - 0x53, 0x66, 0xbf, 0xe2, 0x84, 0xeb, 0x19, 0xa1, 0xc6, 0x20, 0xfe, 0xdf, 0x61, 0x9c, 0xb6, 0xe2, - 0x40, 0xe0, 0x3c, 0xbe, 0xe9, 0x38, 0xe3, 0x9d, 0x45, 0x64, 0x86, 0x1a, 0x77, 0xa4, 0x86, 0x1a, - 0x77, 0x18, 0x6a, 0x54, 0xc3, 0xf8, 0x0c, 0x35, 0xd6, 0x0f, 0xe5, 0x88, 0x61, 0xf6, 0x99, 0xa3, - 0x5d, 0x9e, 0x37, 0x25, 0xcc, 0x3d, 0xf7, 0x2d, 0x02, 0x08, 0x5d, 0xf8, 0x6c, 0x16, 0x41, 0x86, - 0x44, 0xe3, 0x6c, 0x15, 0x25, 0x89, 0x77, 0xad, 0xb3, 0x51, 0x34, 0x8f, 0x97, 0x10, 0xac, 0xce, - 0xaa, 0x9c, 0x5d, 0xa2, 0xfd, 0xe9, 0xf7, 0x9a, 0x2f, 0xf7, 0x5e, 0x1e, 0xbc, 0x68, 0xbe, 0xdc, - 0xaf, 0x91, 0x0d, 0x54, 0x84, 0x9e, 0x3b, 0x87, 0x19, 0xda, 0x4c, 0x66, 0x28, 0xa7, 0x18, 0x6a, - 0x44, 0xc6, 0x24, 0xbd, 0xeb, 0x3d, 0xf7, 0x54, 0xcc, 0xe8, 0xaa, 0x10, 0x31, 0x4e, 0xf0, 0xd0, - 0xff, 0xcd, 0x82, 0xcb, 0x28, 0x6b, 0x7d, 0x85, 0x8f, 0xb1, 0xe0, 0x63, 0x8a, 0xb7, 0x0f, 0x2d, - 0xb3, 0xdc, 0x05, 0x1d, 0xb3, 0xbb, 0x73, 0x5b, 0xc2, 0x29, 0xcb, 0x2b, 0xe4, 0x64, 0xea, 0x43, - 0xc6, 0x08, 0x38, 0x1f, 0x38, 0x19, 0x8f, 0x9d, 0x53, 0x35, 0xa8, 0x19, 0x41, 0xbd, 0xa9, 0x41, - 0x96, 0xa4, 0xa3, 0x9c, 0xb5, 0xe8, 0xaf, 0x55, 0xd0, 0x9c, 0x9a, 0x5f, 0x94, 0xbe, 0x33, 0x6d, - 0xb7, 0xa7, 0xed, 0xfe, 0xb4, 0xdc, 0xa0, 0xba, 0x3b, 0x54, 0x77, 0x8b, 0x06, 0xee, 0x51, 0x98, - 0xb0, 0xa8, 0xc1, 0xfc, 0xd5, 0xf5, 0x5e, 0x20, 0x6e, 0x65, 0x1a, 0x73, 0x09, 0x6a, 0xf3, 0x08, - 0xba, 0xc3, 0x3c, 0xcf, 0xf2, 0xc5, 0x1e, 0xff, 0x78, 0xf4, 0x79, 0x37, 0x68, 0x9e, 0x4f, 0xfe, - 0xcf, 0xf3, 0xcf, 0x3b, 0x41, 0xf3, 0x5c, 0xb4, 0x33, 0x7f, 0x93, 0x3b, 0xdb, 0xdb, 0x83, 0x96, - 0x42, 0x27, 0xfb, 0x68, 0x15, 0x32, 0x08, 0x32, 0x08, 0x32, 0x08, 0x32, 0x88, 0x8a, 0x66, 0x10, - 0x82, 0x3e, 0xec, 0xae, 0x1f, 0x13, 0x2c, 0x9e, 0x09, 0x57, 0xca, 0x27, 0x3f, 0x3a, 0x47, 0xfb, - 0xa8, 0x1d, 0xa7, 0xa5, 0x7c, 0x48, 0xba, 0x56, 0x25, 0xbd, 0x58, 0x4f, 0xb1, 0x9a, 0x2a, 0xec, - 0x0c, 0x66, 0x4d, 0x24, 0xfa, 0x56, 0x7b, 0x13, 0x39, 0x78, 0x5e, 0x63, 0x1b, 0x61, 0x4c, 0xb6, - 0x72, 0x60, 0xe2, 0xeb, 0x55, 0x2f, 0xe8, 0x26, 0x97, 0x49, 0x26, 0x8f, 0x28, 0xa6, 0x4b, 0x01, - 0x2b, 0x80, 0x15, 0xc0, 0x0a, 0x60, 0x45, 0x45, 0x61, 0xc5, 0x30, 0x49, 0xb3, 0xdf, 0xc0, 0x15, - 0xe0, 0x0a, 0x70, 0x05, 0xb8, 0xc2, 0x13, 0x13, 0x69, 0xee, 0xef, 0x03, 0x2c, 0x00, 0x16, 0xfe, - 0x00, 0x8b, 0x5e, 0xff, 0x2a, 0xbb, 0x6a, 0x5d, 0x75, 0x15, 0x34, 0x77, 0x26, 0x2b, 0x01, 0x2b, - 0x80, 0x15, 0xc0, 0x0a, 0x60, 0x45, 0x45, 0x61, 0x45, 0xd2, 0x0b, 0x26, 0xae, 0x2c, 0xc8, 0x6e, - 0x57, 0x45, 0x75, 0xd6, 0x0b, 0x84, 0xa1, 0x05, 0xfb, 0x14, 0xe1, 0x9f, 0x32, 0x0c, 0xd4, 0xfb, - 0x58, 0x26, 0xb0, 0xd0, 0x28, 0xf7, 0xb7, 0x82, 0x89, 0x96, 0x48, 0x40, 0x11, 0x36, 0x9a, 0xc0, - 0x47, 0x5f, 0x4c, 0xa9, 0xb9, 0xbf, 0xb7, 0x41, 0xc6, 0xb4, 0x55, 0x8f, 0x55, 0x50, 0xbe, 0x5e, - 0x32, 0xd1, 0x6a, 0xc7, 0x69, 0x96, 0x64, 0xdf, 0x65, 0x25, 0x0e, 0xe7, 0x72, 0x2d, 0x8d, 0x78, - 0x7e, 0x94, 0x3f, 0xda, 0xeb, 0x68, 0x10, 0xeb, 0x71, 0x5e, 0x93, 0x17, 0x7b, 0x74, 0x1a, 0x9e, - 0x7e, 0xf8, 0xf3, 0xe3, 0x9f, 0xbf, 0xff, 0x79, 0xdc, 0xd0, 0xe4, 0xbf, 0x06, 0x6a, 0x19, 0x8c, - 0x6e, 0x16, 0x73, 0xff, 0xe5, 0x7e, 0x38, 0xfb, 0x74, 0xda, 0xa8, 0x63, 0x8c, 0xb5, 0x7b, 0xa5, - 0x47, 0xef, 0xde, 0xf3, 0x4a, 0xdd, 0xbe, 0xd2, 0x8f, 0xbf, 0xf3, 0x46, 0x1d, 0x1b, 0xe9, 0xef, - 0x18, 0xa9, 0xe3, 0x57, 0xfa, 0xd7, 0x1f, 0xbc, 0x51, 0xb7, 0x6f, 0xf4, 0xdd, 0x87, 0x37, 0xbc, - 0x51, 0xb7, 0xb9, 0xd4, 0xd1, 0x7b, 0xde, 0xa8, 0xd3, 0x37, 0x7a, 0xf8, 0xd7, 0xc7, 0xff, 0xc3, - 0x2b, 0x75, 0xfa, 0x4a, 0x8f, 0x9b, 0x1f, 0x35, 0x3d, 0xa9, 0xca, 0x4a, 0xe7, 0x54, 0xb4, 0x55, - 0xdf, 0x4c, 0x35, 0x2a, 0xda, 0x83, 0x51, 0xcd, 0x51, 0x6f, 0xa4, 0xff, 0xde, 0x7a, 0x54, 0xb7, - 0x1f, 0x5c, 0x80, 0xea, 0x76, 0x89, 0x6f, 0x4f, 0x75, 0xbb, 0x22, 0xbe, 0x97, 0x69, 0xfe, 0xd5, - 0xdc, 0x19, 0xd3, 0xfc, 0x4c, 0xf3, 0x73, 0xa2, 0x8e, 0xe3, 0xfc, 0xc7, 0x4e, 0x32, 0xf3, 0xd6, - 0x79, 0x38, 0xd5, 0xcd, 0x74, 0xff, 0x45, 0x6f, 0x9c, 0x9e, 0xf4, 0x12, 0x65, 0xb1, 0xe0, 0x79, - 0x04, 0xa3, 0xcb, 0x57, 0x4c, 0xfc, 0xae, 0x89, 0xf8, 0x9d, 0x76, 0x9e, 0x88, 0xf8, 0x5d, 0x6d, - 0x63, 0x05, 0xe2, 0x77, 0xc0, 0x65, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0x0c, 0x5c, 0x06, 0x2e, 0x03, - 0x97, 0x11, 0xbf, 0xdb, 0x46, 0xfc, 0x8e, 0x0c, 0x82, 0x0c, 0x82, 0x0c, 0xa2, 0x2e, 0x19, 0x04, - 0xe2, 0x77, 0x4b, 0xfe, 0x20, 0x52, 0x51, 0x6a, 0x39, 0x44, 0x2a, 0xdc, 0x98, 0x08, 0xe2, 0x77, - 0xd5, 0xb6, 0x11, 0x3a, 0x7a, 0x2a, 0x07, 0x26, 0x10, 0xbf, 0x03, 0x56, 0x00, 0x2b, 0x80, 0x15, - 0xc0, 0x8a, 0xe5, 0xf7, 0x0e, 0xe2, 0x77, 0xe0, 0x0a, 0x70, 0x05, 0xb8, 0xc2, 0x27, 0x13, 0x41, - 0xfc, 0x0e, 0x60, 0xe1, 0x15, 0xb0, 0x40, 0xfc, 0x0e, 0x58, 0x01, 0xac, 0x00, 0x56, 0x00, 0x2b, - 0x96, 0xdd, 0x3b, 0x88, 0xdf, 0xf9, 0x89, 0x30, 0x10, 0xbf, 0xab, 0xce, 0xc7, 0x32, 0x81, 0x85, - 0x46, 0xb9, 0xbf, 0x15, 0x4c, 0xb4, 0x44, 0x02, 0x8a, 0xb0, 0xd1, 0x04, 0x3e, 0xfa, 0x62, 0x4a, - 0x88, 0xdf, 0x55, 0x70, 0x15, 0xc4, 0xef, 0x96, 0x4c, 0xb4, 0x10, 0xbf, 0x93, 0x79, 0xb1, 0x88, - 0xdf, 0xc9, 0xbe, 0x5c, 0xc4, 0xef, 0x9c, 0xbf, 0x52, 0xc4, 0xef, 0x9c, 0xbf, 0x52, 0xc4, 0xef, - 0x9c, 0x1b, 0x29, 0xe2, 0x77, 0xae, 0x5f, 0x29, 0xe2, 0x77, 0xae, 0xdf, 0x28, 0xe2, 0x77, 0xce, - 0x73, 0x29, 0xc4, 0xef, 0x1c, 0xbf, 0x51, 0xc4, 0xef, 0x9c, 0xbf, 0x52, 0xc4, 0xef, 0xfc, 0x7b, - 0x0e, 0x2a, 0xda, 0x88, 0xdf, 0xad, 0xc8, 0x4e, 0x50, 0xdd, 0x5e, 0xe2, 0x8b, 0x50, 0xdd, 0x2e, - 0xb9, 0x20, 0xd5, 0x6d, 0xbf, 0x52, 0x09, 0xa6, 0xf9, 0xd7, 0x72, 0x39, 0x4c, 0xf3, 0x6f, 0x68, - 0x56, 0x81, 0xf8, 0x9d, 0xa1, 0xf8, 0xdd, 0x58, 0xb3, 0xcd, 0x57, 0xed, 0xbb, 0x2d, 0x8f, 0x4c, - 0x42, 0xca, 0x14, 0xac, 0x4d, 0xa0, 0xe1, 0x54, 0x60, 0xb0, 0x3f, 0x6c, 0x65, 0x69, 0x1e, 0x9d, - 0x4e, 0xc6, 0xf7, 0x76, 0x94, 0xdf, 0x5a, 0x78, 0x3a, 0x5a, 0xff, 0x6d, 0x71, 0x67, 0xf9, 0x1f, - 0x84, 0x1f, 0x86, 0xdd, 0x38, 0x3c, 0xba, 0xbd, 0x95, 0x2d, 0x3f, 0xac, 0xc6, 0x81, 0xc5, 0xdc, - 0x86, 0xe6, 0x03, 0x67, 0x76, 0x72, 0x37, 0xe0, 0x1f, 0x38, 0xfa, 0x60, 0x8e, 0x95, 0x15, 0x9d, - 0x83, 0x12, 0x09, 0x10, 0x22, 0x0d, 0x3a, 0xa4, 0x40, 0x86, 0x38, 0xa8, 0x10, 0x07, 0x11, 0x0a, - 0xa0, 0xc1, 0xaf, 0x68, 0xe1, 0x5a, 0x09, 0xb1, 0xd1, 0x9a, 0xec, 0x2f, 0x21, 0xf5, 0xd6, 0xfc, - 0xfa, 0x15, 0x93, 0x6f, 0xdd, 0x41, 0xbe, 0x55, 0x9b, 0xe9, 0x40, 0xbe, 0xb5, 0xb6, 0x68, 0x07, - 0xf9, 0xd6, 0x72, 0x6e, 0x0e, 0xc2, 0xd7, 0xde, 0xfd, 0x69, 0xb9, 0x41, 0x75, 0x77, 0xa8, 0xee, - 0x16, 0x0d, 0xdc, 0xa3, 0x1c, 0xcd, 0xb4, 0x5d, 0x17, 0xc2, 0xf7, 0x00, 0xc2, 0x77, 0xb5, 0x85, - 0x72, 0xc2, 0x37, 0x0a, 0x3a, 0x87, 0xc1, 0xdb, 0xf3, 0x7f, 0x76, 0x9f, 0xec, 0xdd, 0xbc, 0x7a, - 0xfc, 0xcf, 0x8b, 0x9b, 0xfb, 0x7f, 0xf8, 0xe3, 0xa1, 0xbf, 0xb6, 0xfb, 0xe4, 0xc5, 0xcd, 0xab, - 0x05, 0xff, 0xe6, 0xe0, 0xe6, 0xd5, 0x92, 0xd7, 0xd8, 0xbf, 0x79, 0x34, 0xf7, 0x57, 0x6f, 0xff, - 0xbc, 0xb9, 0xe8, 0x17, 0xf6, 0x16, 0xfc, 0xc2, 0xf3, 0x45, 0xbf, 0xf0, 0x7c, 0xc1, 0x2f, 0x2c, - 0xbc, 0xa5, 0xe6, 0x82, 0x5f, 0xd8, 0xbf, 0xf9, 0x31, 0xf7, 0xf7, 0x1f, 0x3d, 0xfc, 0x57, 0x0f, - 0x6e, 0x1e, 0xff, 0x58, 0xf4, 0xef, 0x5e, 0xdc, 0xfc, 0x78, 0xf5, 0xf8, 0xf1, 0xb3, 0x47, 0xbb, - 0xcd, 0xcf, 0x3b, 0xc1, 0x6f, 0x63, 0xa2, 0x7c, 0xf7, 0x7c, 0x8e, 0x3f, 0x1f, 0xf3, 0xe1, 0xb0, - 0xe0, 0x32, 0x9a, 0xb6, 0x77, 0xf2, 0x9f, 0x4e, 0xf7, 0xea, 0xef, 0xa0, 0x1b, 0x7d, 0x89, 0xbb, - 0xba, 0x79, 0xd7, 0x9d, 0x75, 0x49, 0xbd, 0x48, 0xbd, 0x48, 0xbd, 0x48, 0xbd, 0xaa, 0x9c, 0x7a, - 0x89, 0xbb, 0xb3, 0xbb, 0x2e, 0xed, 0x05, 0x52, 0x55, 0xbf, 0x7e, 0x10, 0xa4, 0xaa, 0xdc, 0xad, - 0x87, 0x54, 0x55, 0x65, 0x4d, 0x64, 0x77, 0x67, 0xef, 0xb7, 0xfd, 0x17, 0xc8, 0x55, 0x79, 0x77, - 0x75, 0x0e, 0xd5, 0xe0, 0x50, 0x0d, 0xc0, 0x05, 0xe0, 0x02, 0x70, 0x01, 0xb8, 0x30, 0xf1, 0x61, - 0xdb, 0x88, 0xdf, 0x82, 0x28, 0x40, 0x14, 0x20, 0x8a, 0x15, 0x4d, 0x84, 0x43, 0x35, 0x00, 0x13, - 0x3e, 0x81, 0x09, 0x0e, 0xd5, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0xc0, 0x8a, 0xe5, 0xf7, 0x0e, - 0x87, 0x6a, 0x80, 0x2b, 0xc0, 0x15, 0xe0, 0x0a, 0x9f, 0x4c, 0x84, 0x43, 0x35, 0x00, 0x16, 0x5e, - 0x01, 0x0b, 0x0e, 0xd5, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0xc0, 0x8a, 0x65, 0xf7, 0x0e, 0x87, - 0x6a, 0xf8, 0x89, 0x30, 0x38, 0x54, 0xa3, 0x3a, 0x1f, 0xcb, 0x04, 0x16, 0x1a, 0xe5, 0xfe, 0x56, - 0x30, 0xd1, 0x12, 0x09, 0x28, 0xc2, 0x46, 0x13, 0xf8, 0xe8, 0x8b, 0x29, 0x71, 0xa8, 0x46, 0x05, - 0x57, 0xe1, 0x50, 0x8d, 0x25, 0x13, 0x2d, 0x0e, 0xd5, 0x90, 0x79, 0xb1, 0x1c, 0xaa, 0x21, 0xfb, - 0x72, 0x39, 0x54, 0xc3, 0xf9, 0x2b, 0xe5, 0x50, 0x0d, 0xe7, 0xaf, 0x94, 0x43, 0x35, 0x9c, 0x1b, - 0x29, 0x87, 0x6a, 0xb8, 0x7e, 0xa5, 0x1c, 0xaa, 0xe1, 0xfa, 0x8d, 0x72, 0xa8, 0x86, 0xf3, 0x5c, - 0x8a, 0x43, 0x35, 0x1c, 0xbf, 0x51, 0x0e, 0xd5, 0x70, 0xfe, 0x4a, 0x39, 0x54, 0xc3, 0xbf, 0xe7, - 0xa0, 0xa2, 0xcd, 0xa1, 0x1a, 0x2b, 0xb2, 0x13, 0x54, 0xb7, 0x97, 0xf8, 0x22, 0x54, 0xb7, 0x4b, - 0x2e, 0x48, 0x75, 0xdb, 0xaf, 0x54, 0x02, 0x8d, 0xb5, 0xb5, 0x5c, 0x0e, 0x1a, 0x6b, 0x68, 0xac, - 0xa1, 0xb1, 0x26, 0x9f, 0x6a, 0x69, 0xca, 0xab, 0xcd, 0x2f, 0x49, 0xc2, 0x45, 0xc2, 0x45, 0xc2, - 0x45, 0xc2, 0x55, 0xe5, 0x84, 0x0b, 0x65, 0x35, 0xcf, 0x68, 0x34, 0xe6, 0x95, 0x1c, 0xae, 0xc7, - 0xbc, 0x52, 0x65, 0x4d, 0x04, 0x65, 0x35, 0x4f, 0xaf, 0xce, 0x01, 0x87, 0x4e, 0xd2, 0xa0, 0x5a, - 0x1f, 0x70, 0x78, 0xf0, 0x2c, 0x3f, 0xd6, 0xc8, 0xd7, 0x13, 0x0e, 0x9d, 0x1e, 0xbe, 0x17, 0x65, - 0xb1, 0xdc, 0xf9, 0x50, 0xe3, 0xcb, 0x57, 0xec, 0x78, 0xa8, 0x26, 0xc7, 0x43, 0x69, 0x43, 0x48, - 0x8e, 0x87, 0xaa, 0x6d, 0xac, 0xe0, 0x78, 0x28, 0x98, 0x34, 0x98, 0x34, 0x98, 0x34, 0x98, 0x34, - 0x9f, 0x99, 0x34, 0x4a, 0x97, 0x2b, 0x2d, 0x44, 0xe9, 0x92, 0xd2, 0xa5, 0xff, 0x1c, 0x02, 0xc7, - 0x43, 0x91, 0x7a, 0x91, 0x7a, 0x91, 0x7a, 0x91, 0x7a, 0xf9, 0x9c, 0x7a, 0x51, 0xc4, 0x5c, 0xe9, - 0x87, 0x22, 0x66, 0xa9, 0xe5, 0x28, 0x62, 0xba, 0x31, 0x11, 0x8a, 0x98, 0x35, 0x30, 0x14, 0x8a, - 0x98, 0xd5, 0x03, 0x20, 0x1c, 0x0f, 0x05, 0xb8, 0x00, 0x5c, 0x00, 0x2e, 0x00, 0x17, 0x76, 0x3e, - 0x6c, 0x1b, 0x19, 0x77, 0x10, 0x05, 0x88, 0x02, 0x44, 0xb1, 0xa2, 0x89, 0x70, 0x3c, 0x14, 0x60, - 0xc2, 0x27, 0x30, 0xc1, 0xf1, 0x50, 0xc0, 0x0a, 0x60, 0x05, 0xb0, 0x02, 0x58, 0xb1, 0xfc, 0xde, - 0xe1, 0x78, 0x28, 0x70, 0x05, 0xb8, 0x02, 0x5c, 0xe1, 0x93, 0x89, 0x70, 0x3c, 0x14, 0xc0, 0xc2, - 0x2b, 0x60, 0xc1, 0xf1, 0x50, 0xc0, 0x0a, 0x60, 0x05, 0xb0, 0x02, 0x58, 0xb1, 0xec, 0xde, 0xe1, - 0x78, 0x28, 0x3f, 0x11, 0x06, 0xc7, 0x43, 0x55, 0xe7, 0x63, 0x99, 0xc0, 0x42, 0xa3, 0xdc, 0xdf, - 0x0a, 0x26, 0x5a, 0x22, 0x01, 0x45, 0xd8, 0x68, 0x02, 0x1f, 0x7d, 0x31, 0x25, 0x8e, 0x87, 0xaa, - 0xe0, 0x2a, 0x1c, 0x0f, 0xb5, 0x64, 0xa2, 0xc5, 0xf1, 0x50, 0x32, 0x2f, 0x96, 0xe3, 0xa1, 0x64, - 0x5f, 0x2e, 0xc7, 0x43, 0x39, 0x7f, 0xa5, 0x1c, 0x0f, 0xe5, 0xfc, 0x95, 0x72, 0x3c, 0x94, 0x73, - 0x23, 0xe5, 0x78, 0x28, 0xd7, 0xaf, 0x94, 0xe3, 0xa1, 0x5c, 0xbf, 0x51, 0x8e, 0x87, 0x72, 0x9e, - 0x4b, 0x71, 0x3c, 0x94, 0xe3, 0x37, 0xca, 0xf1, 0x50, 0xce, 0x5f, 0x29, 0xc7, 0x43, 0xf9, 0xf7, - 0x1c, 0x54, 0xb4, 0x39, 0x1e, 0x6a, 0x45, 0x76, 0x82, 0xea, 0xf6, 0x12, 0x5f, 0x84, 0xea, 0x76, - 0xc9, 0x05, 0xa9, 0x6e, 0xfb, 0x95, 0x4a, 0xa0, 0xb1, 0xb6, 0x96, 0xcb, 0x41, 0x63, 0x0d, 0x8d, - 0x35, 0x34, 0xd6, 0xe4, 0x53, 0x2d, 0x8e, 0x87, 0x22, 0xe1, 0x22, 0xe1, 0x22, 0xe1, 0x22, 0xe1, - 0x5a, 0x37, 0xe1, 0x42, 0x59, 0xcd, 0x33, 0x1a, 0x8d, 0x79, 0x25, 0x87, 0xeb, 0x31, 0xaf, 0x54, - 0x59, 0x13, 0x41, 0x59, 0xcd, 0xd3, 0xab, 0x73, 0x3c, 0x94, 0x93, 0x34, 0xa8, 0xe6, 0xc7, 0x43, - 0x8d, 0x4f, 0x35, 0xf2, 0xf5, 0x74, 0xa8, 0x2d, 0x8f, 0x4c, 0x42, 0xca, 0x14, 0xac, 0x4d, 0xa0, - 0xe1, 0xf4, 0x08, 0xae, 0xfe, 0xb0, 0x95, 0xa5, 0x79, 0xe2, 0x7a, 0x32, 0xbe, 0xb7, 0xa3, 0xfc, - 0xd6, 0xc2, 0xd3, 0xd1, 0xfa, 0x6f, 0x8b, 0x3b, 0xcb, 0xff, 0x20, 0xfc, 0x30, 0xec, 0xc6, 0xe1, - 0xd1, 0xed, 0xad, 0x6c, 0xf9, 0x61, 0x35, 0x0e, 0x2c, 0xa6, 0xd1, 0x6d, 0x3a, 0xb3, 0x92, 0x02, - 0x09, 0x74, 0x9b, 0x8e, 0x3e, 0x96, 0xe3, 0x73, 0xc7, 0x9c, 0x73, 0x15, 0x12, 0xdc, 0x84, 0x34, - 0x17, 0x21, 0xc5, 0x3d, 0x88, 0x73, 0x0d, 0xe2, 0xdc, 0x82, 0x02, 0x97, 0xe0, 0x57, 0xa4, 0x70, - 0x7d, 0x4e, 0x58, 0xa3, 0x35, 0xd9, 0x5f, 0x42, 0x67, 0x1b, 0xe6, 0xd7, 0xaf, 0xd8, 0xe1, 0x86, - 0x3b, 0x1c, 0x6e, 0xa8, 0xe5, 0x84, 0xd4, 0x9c, 0x91, 0x9a, 0x53, 0x52, 0x74, 0x4e, 0xd5, 0x40, - 0x3a, 0x2a, 0x87, 0x1b, 0x5e, 0x46, 0x2d, 0xdd, 0x03, 0x76, 0x6e, 0x17, 0xa4, 0xfe, 0xa3, 0xed, - 0xee, 0xb4, 0xdd, 0x9e, 0x96, 0xfb, 0x53, 0x77, 0x83, 0xea, 0xee, 0xd0, 0xc0, 0x2d, 0xca, 0x52, - 0x61, 0xd5, 0xaf, 0xff, 0x5c, 0x46, 0x2d, 0xe1, 0xde, 0xc1, 0xed, 0xfa, 0x35, 0xdc, 0xdc, 0x6d, - 0x08, 0xb9, 0xdf, 0x67, 0xd2, 0xbc, 0x79, 0xfc, 0xcf, 0xfe, 0x0d, 0x1d, 0x1f, 0xe2, 0xa7, 0xea, - 0xdd, 0x5a, 0xee, 0x65, 0x34, 0xf8, 0xbf, 0xea, 0x21, 0x7f, 0xbc, 0x2a, 0x71, 0x9f, 0xb8, 0x4f, - 0xdc, 0x27, 0xee, 0x13, 0xf7, 0x89, 0xfb, 0xc4, 0x7d, 0xe1, 0xb8, 0x1f, 0x67, 0x5f, 0xe3, 0x7e, - 0x26, 0xb9, 0x39, 0x8a, 0x8d, 0x31, 0x5d, 0x8a, 0x08, 0x4f, 0x84, 0x27, 0xc2, 0x13, 0xe1, 0x2b, - 0x1a, 0xe1, 0x0b, 0x47, 0x86, 0x4c, 0xe4, 0xb2, 0x3f, 0xca, 0x32, 0x91, 0xbb, 0x07, 0x8a, 0xc2, - 0x52, 0x07, 0xe8, 0x44, 0xae, 0xff, 0x60, 0x9b, 0xa8, 0x13, 0xb9, 0xbb, 0xff, 0xfc, 0x00, 0xa9, - 0x48, 0x11, 0x6b, 0xda, 0x40, 0xa9, 0xc8, 0x83, 0xfd, 0xfd, 0xe7, 0xfb, 0x88, 0x45, 0x56, 0x6d, - 0x15, 0xc4, 0x22, 0x97, 0x0b, 0xe7, 0x88, 0x45, 0x0a, 0xbd, 0xd8, 0x37, 0x1f, 0xff, 0xcf, 0x9b, - 0x0f, 0x1f, 0xff, 0x7d, 0xfa, 0x06, 0xa9, 0x48, 0xb1, 0x57, 0x1b, 0x1e, 0x7e, 0x40, 0xe6, 0x4c, - 0xe4, 0xc5, 0xbe, 0x3f, 0x3d, 0x3e, 0xe3, 0xcd, 0x4a, 0xbc, 0xd9, 0xa3, 0xd3, 0x4f, 0x07, 0xbc, - 0x59, 0x89, 0x37, 0xfb, 0xe1, 0xcf, 0xdf, 0x91, 0xe8, 0x13, 0x79, 0xb3, 0xc7, 0xc7, 0xc8, 0x49, - 0x8a, 0x79, 0x83, 0x3d, 0xde, 0xac, 0xc4, 0x9b, 0xfd, 0x74, 0x7c, 0x78, 0x82, 0x70, 0x9f, 0x5f, - 0xcf, 0xc1, 0x58, 0xa7, 0xa0, 0x9a, 0x8c, 0x4a, 0x13, 0xf1, 0x9d, 0xb5, 0xa8, 0x32, 0x3e, 0xb8, - 0x00, 0x55, 0xc6, 0x12, 0xdf, 0x9e, 0x2a, 0x63, 0x45, 0x7c, 0x2e, 0x7d, 0x44, 0xab, 0xb9, 0x33, - 0xfa, 0x88, 0x88, 0xf1, 0x6e, 0x62, 0xbc, 0x52, 0xeb, 0xf0, 0xfd, 0x05, 0x89, 0xf6, 0x44, 0x7b, - 0xa2, 0x3d, 0xd1, 0x9e, 0x68, 0x4f, 0xb4, 0x27, 0xda, 0x8b, 0x5d, 0x11, 0xa1, 0xa6, 0xa5, 0x55, - 0x7a, 0xba, 0xcd, 0x67, 0xb9, 0x40, 0x83, 0xaf, 0x3a, 0x4d, 0x4e, 0x25, 0x84, 0xa2, 0x2c, 0x96, - 0x53, 0xba, 0x18, 0x5f, 0xbe, 0x62, 0x42, 0x17, 0x4d, 0x84, 0x2e, 0xb4, 0x73, 0x37, 0x84, 0x2e, - 0x6a, 0x1b, 0x29, 0x10, 0xba, 0x00, 0xba, 0x02, 0x5d, 0x81, 0xae, 0x40, 0x57, 0xa0, 0x2b, 0xd0, - 0x75, 0x33, 0xa0, 0x2b, 0x42, 0x17, 0xc4, 0x7d, 0xe2, 0x3e, 0x71, 0x9f, 0xb8, 0x4f, 0xdc, 0x27, - 0xee, 0x13, 0xf7, 0x4b, 0xbc, 0x79, 0x84, 0x2e, 0x88, 0xf0, 0x44, 0x78, 0x22, 0x3c, 0x11, 0x7e, - 0x0d, 0x47, 0x86, 0xd0, 0xc5, 0xb2, 0x3f, 0x08, 0x5d, 0x94, 0x5b, 0x0a, 0xa1, 0x8b, 0xea, 0x24, - 0x0a, 0x0b, 0x97, 0x45, 0xe8, 0x42, 0xdc, 0x9a, 0x10, 0xba, 0xa8, 0xbd, 0x39, 0x21, 0x74, 0x61, - 0xbf, 0xe9, 0x10, 0xba, 0x70, 0xb1, 0x16, 0x42, 0x17, 0xf5, 0x49, 0x64, 0xb6, 0x11, 0xba, 0x50, - 0x7d, 0xb1, 0x08, 0x5d, 0x48, 0xbd, 0x59, 0x84, 0x2e, 0xa4, 0xde, 0x2c, 0x42, 0x17, 0x52, 0x6f, - 0x16, 0xa1, 0x0b, 0x41, 0x6f, 0x80, 0xd0, 0x85, 0xc8, 0x9b, 0x45, 0xe8, 0xc2, 0xbf, 0xe7, 0x40, - 0xe8, 0x02, 0xa1, 0x0b, 0x5b, 0xba, 0x87, 0x2a, 0xe3, 0x3a, 0xeb, 0x51, 0x65, 0x74, 0xb5, 0x20, - 0x55, 0xc6, 0x9f, 0xbf, 0x1f, 0xfa, 0x88, 0xd6, 0x71, 0x39, 0xf4, 0x11, 0x6d, 0x4e, 0x8c, 0x47, - 0xe8, 0x82, 0x68, 0x4f, 0xb4, 0x27, 0xda, 0x13, 0xed, 0x89, 0xf6, 0x44, 0x7b, 0x0f, 0xa2, 0x3d, - 0x42, 0x17, 0x66, 0x42, 0x17, 0x63, 0x7d, 0x06, 0x5f, 0x75, 0x2e, 0xb6, 0x3c, 0x32, 0x08, 0x29, - 0x43, 0xb0, 0x35, 0x80, 0x86, 0x53, 0x29, 0x91, 0xfe, 0xb0, 0x95, 0xa5, 0x79, 0xbc, 0x38, 0x19, - 0xdf, 0xd9, 0x51, 0x7e, 0x63, 0xe1, 0xe9, 0x68, 0xf5, 0xb7, 0xc5, 0x7d, 0xe5, 0x7f, 0x10, 0x7e, - 0x18, 0x76, 0xe3, 0xf0, 0xb8, 0xe9, 0xc6, 0x06, 0xcb, 0x5b, 0x8c, 0x03, 0x6b, 0x69, 0x0c, 0xe2, - 0xff, 0x1d, 0xc6, 0x69, 0x2b, 0x0e, 0x92, 0xb6, 0x33, 0x53, 0x99, 0xc2, 0x8a, 0x3b, 0x17, 0x77, - 0x64, 0xd9, 0x6e, 0x21, 0x84, 0x73, 0xc8, 0x20, 0x01, 0x11, 0x66, 0x20, 0x81, 0xcb, 0xbe, 0x1d, - 0xa9, 0xdc, 0x5f, 0x3c, 0xd7, 0x17, 0xcf, 0xed, 0xe7, 0x72, 0xf9, 0x4e, 0xa3, 0xa6, 0x91, 0xc2, - 0x79, 0x52, 0x5e, 0x58, 0x6b, 0x37, 0x8e, 0x3a, 0x6e, 0xfb, 0xcc, 0x8a, 0x84, 0xfb, 0x85, 0xc3, - 0x6b, 0x9e, 0xe6, 0xc1, 0xec, 0xe9, 0xd3, 0x5c, 0x49, 0xeb, 0xd9, 0x5d, 0xaf, 0x55, 0x27, 0x4f, - 0xef, 0x54, 0x3d, 0x4b, 0x44, 0x35, 0xcb, 0xb1, 0x5a, 0x96, 0x73, 0x95, 0x2c, 0xbc, 0x3b, 0xde, - 0xbd, 0x52, 0xde, 0xdd, 0xb5, 0x9e, 0x55, 0x63, 0x44, 0x68, 0xc5, 0xed, 0xe0, 0xaa, 0x95, 0xc5, - 0xa3, 0x5e, 0x75, 0x21, 0x2d, 0xbe, 0x7b, 0xeb, 0xc8, 0x88, 0xf2, 0xed, 0x48, 0x89, 0xf2, 0xed, - 0x54, 0x54, 0x94, 0xaf, 0x83, 0x1a, 0x9f, 0xa1, 0x5b, 0xd2, 0x70, 0x4f, 0xd5, 0xe0, 0xb1, 0xc4, - 0x98, 0xe2, 0xc2, 0xda, 0x5b, 0x57, 0xc3, 0x34, 0x8b, 0xfb, 0x07, 0x7b, 0x12, 0x16, 0x9f, 0xbb, - 0x17, 0x01, 0x5a, 0x58, 0x78, 0x74, 0x51, 0x90, 0x9a, 0xd7, 0x18, 0x4d, 0x54, 0x1a, 0x1e, 0x2b, - 0x86, 0xc5, 0xa4, 0xd7, 0x51, 0x1c, 0x0c, 0x13, 0xec, 0x15, 0x55, 0x99, 0x23, 0xd4, 0xfe, 0xf4, - 0xbb, 0xbf, 0xed, 0xed, 0x1d, 0xbc, 0xd8, 0xdb, 0xdb, 0x79, 0xf1, 0xfc, 0xc5, 0xce, 0xcb, 0xfd, - 0xfd, 0xdd, 0x03, 0xe9, 0x21, 0x27, 0x55, 0x6b, 0xa8, 0x48, 0x35, 0xe6, 0x7c, 0x03, 0x44, 0xaf, - 0x27, 0x99, 0x70, 0xef, 0xff, 0x6a, 0xe4, 0xdb, 0xa3, 0x55, 0xc8, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, - 0xc9, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, 0xc9, 0xb6, 0x37, 0x24, - 0xdb, 0x96, 0x68, 0x87, 0x98, 0x0b, 0x87, 0xee, 0xdb, 0x22, 0xc8, 0xb5, 0xc9, 0xb5, 0xc9, 0xb5, - 0xc9, 0xb5, 0x73, 0xc5, 0xbe, 0xe7, 0x4d, 0xc1, 0x44, 0xfb, 0x05, 0x89, 0x36, 0x89, 0x36, 0x89, - 0x76, 0x2d, 0x13, 0xed, 0xbd, 0xe6, 0xcb, 0xbd, 0x97, 0x07, 0x2f, 0x9a, 0x2f, 0x49, 0xaf, 0x49, - 0xaf, 0x9d, 0x5e, 0x89, 0xce, 0xf6, 0x85, 0x9d, 0xed, 0x0e, 0xe7, 0x1a, 0xfc, 0xe8, 0x34, 0xcc, - 0xfa, 0x51, 0x3a, 0xe8, 0x5d, 0xf5, 0x33, 0xf7, 0xdd, 0x86, 0xd3, 0x4b, 0x7b, 0xde, 0x71, 0x58, - 0x95, 0x7e, 0x72, 0x81, 0x11, 0x53, 0x1a, 0x0f, 0x97, 0xc6, 0x3f, 0xee, 0x47, 0x44, 0x6b, 0xde, - 0x7f, 0xd8, 0x9a, 0xec, 0x2f, 0x21, 0x6a, 0x26, 0xbf, 0x7e, 0xc5, 0x0e, 0x01, 0xde, 0xe1, 0x10, - 0x60, 0xc8, 0x99, 0x0a, 0x38, 0xa7, 0x6a, 0x70, 0x34, 0x2a, 0x87, 0x00, 0x3b, 0x4d, 0x8f, 0x16, - 0x6e, 0xb2, 0xb9, 0x15, 0x11, 0xf6, 0xd0, 0x76, 0x78, 0xda, 0x8e, 0x4f, 0xcb, 0x01, 0xaa, 0x3b, - 0x42, 0x75, 0x87, 0x68, 0xe0, 0x18, 0x85, 0x39, 0x8b, 0xca, 0x0b, 0x7b, 0xdc, 0xfa, 0xb0, 0x20, - 0x1d, 0x5e, 0x06, 0xfd, 0x11, 0x61, 0xcc, 0x61, 0x41, 0xbf, 0xfe, 0x51, 0x3c, 0x5d, 0x60, 0x90, - 0xf5, 0x93, 0xf4, 0x42, 0xf3, 0x60, 0x81, 0xdf, 0x14, 0xd6, 0xd2, 0x52, 0x60, 0x29, 0x16, 0xfc, - 0x9f, 0x47, 0x07, 0x9f, 0x77, 0x82, 0xfd, 0xf3, 0xc9, 0x7f, 0x3d, 0x1f, 0xff, 0xd3, 0x8f, 0xd1, - 0x7f, 0xff, 0xff, 0x3f, 0xef, 0x04, 0x2f, 0x1f, 0xfa, 0xef, 0xc7, 0xff, 0xf9, 0xcf, 0xd3, 0xff, - 0xfc, 0xe7, 0xe9, 0x7a, 0xbf, 0xfb, 0x5f, 0x0d, 0x8e, 0xe8, 0xf0, 0x64, 0x13, 0x4d, 0x5c, 0xdc, - 0x97, 0xb8, 0xcf, 0xb1, 0x5b, 0x5e, 0x7f, 0xb2, 0xe2, 0xc1, 0x36, 0xf1, 0xd8, 0xad, 0x1d, 0xce, - 0xdc, 0x12, 0x31, 0x25, 0xce, 0xdc, 0xaa, 0xbd, 0x39, 0x71, 0xe6, 0xd6, 0x46, 0x05, 0xf4, 0x38, - 0x1d, 0x5e, 0xc6, 0xfd, 0x71, 0xc9, 0x52, 0x31, 0x35, 0xde, 0x53, 0x58, 0xeb, 0x4d, 0x3a, 0xbc, - 0xbc, 0x75, 0x57, 0x9c, 0x23, 0x20, 0x7b, 0xbf, 0x82, 0x1a, 0xc3, 0x3a, 0x3c, 0xe4, 0xdd, 0xc5, - 0xa0, 0x20, 0x1f, 0x86, 0x99, 0x50, 0x90, 0xeb, 0x7f, 0x7b, 0x28, 0xc8, 0x8a, 0x78, 0x5d, 0x28, - 0xc8, 0xd5, 0x23, 0x39, 0x14, 0xe4, 0x0a, 0x81, 0x06, 0x0a, 0xd2, 0xc5, 0x82, 0x50, 0x90, 0x9b, - 0x8c, 0x58, 0xa0, 0x20, 0xab, 0xf2, 0xc9, 0xa6, 0xbc, 0x11, 0x14, 0x64, 0xad, 0x39, 0x23, 0x28, - 0x48, 0x51, 0x53, 0x82, 0x82, 0xac, 0xe4, 0x2a, 0x04, 0xf4, 0xe5, 0x02, 0x3a, 0x14, 0xa4, 0xb7, - 0xa6, 0xbc, 0xc9, 0x14, 0x64, 0xd6, 0xea, 0x05, 0x9d, 0x6e, 0x74, 0x31, 0x90, 0x27, 0x20, 0xa7, - 0x4b, 0x41, 0x3f, 0x3e, 0x0c, 0x31, 0xa1, 0x1f, 0xd7, 0xff, 0xf6, 0xd0, 0x8f, 0x15, 0xf1, 0xb8, - 0xd5, 0xa7, 0x1f, 0x93, 0x76, 0x9c, 0x66, 0x49, 0xf6, 0xdd, 0xed, 0xc9, 0x0a, 0x0b, 0x43, 0xb8, - 0x60, 0x52, 0xdc, 0x38, 0xca, 0x1f, 0xe5, 0x75, 0x34, 0x50, 0xd8, 0xa4, 0x93, 0x17, 0xf8, 0xf1, - 0xf7, 0xd3, 0xf0, 0xed, 0xf1, 0xe1, 0xbb, 0xb3, 0x86, 0xc6, 0x4c, 0xf5, 0x40, 0x85, 0x6c, 0xd0, - 0x01, 0x6b, 0x33, 0xaf, 0xf0, 0xc3, 0xd9, 0x47, 0x79, 0xc2, 0x4e, 0x01, 0xf6, 0x1a, 0xbc, 0xba, - 0xbf, 0x3e, 0xbc, 0xe3, 0xd5, 0xad, 0xf7, 0xea, 0xce, 0xfe, 0x7d, 0xc2, 0xab, 0x5b, 0xef, 0xd5, - 0x1d, 0xfe, 0xfe, 0x2f, 0x5e, 0xdd, 0x9a, 0xe1, 0xe2, 0x08, 0xab, 0x5b, 0xf3, 0xd5, 0xbd, 0xf9, - 0xfd, 0x0d, 0xaf, 0x6e, 0xbd, 0x57, 0x77, 0x7a, 0xf6, 0x7f, 0x78, 0x75, 0xeb, 0xbd, 0xba, 0xdf, - 0xff, 0xfb, 0x83, 0xc2, 0xab, 0x13, 0x5d, 0xe1, 0x1c, 0x64, 0x35, 0xfa, 0xac, 0xc7, 0xc9, 0x20, - 0x3b, 0xcc, 0xb2, 0xbe, 0x2c, 0xba, 0x7a, 0x9f, 0xa4, 0x6f, 0xba, 0xf1, 0x2d, 0xc2, 0xbd, 0x4d, - 0xd8, 0xd3, 0x61, 0xb7, 0x2b, 0x2b, 0x1c, 0xa5, 0xb7, 0xd8, 0x9f, 0xfd, 0x76, 0xdc, 0x8f, 0xdb, - 0xaf, 0xbf, 0xe7, 0x4b, 0x71, 0xce, 0xb2, 0x0b, 0x3a, 0xa4, 0xbe, 0xe7, 0x2c, 0x17, 0x02, 0x3b, - 0xf9, 0x69, 0x88, 0x8d, 0x4d, 0x10, 0x7d, 0x75, 0x7a, 0x32, 0xe2, 0x5c, 0x44, 0x72, 0x79, 0x42, - 0xe2, 0x1c, 0x41, 0x23, 0x25, 0x29, 0xd2, 0x44, 0x52, 0x64, 0x6e, 0x1d, 0x24, 0x45, 0x56, 0x76, - 0x94, 0x48, 0x8a, 0x6c, 0x23, 0x29, 0x52, 0xc6, 0xc1, 0x51, 0x50, 0xb3, 0x77, 0x7c, 0x5a, 0x0e, - 0x50, 0xdd, 0x11, 0xaa, 0x3b, 0x44, 0x03, 0xc7, 0x58, 0x4d, 0xd8, 0x47, 0x3f, 0x7f, 0xa9, 0xf7, - 0x46, 0x3f, 0xff, 0xda, 0x5f, 0x87, 0x7e, 0x7e, 0xfa, 0xf9, 0x25, 0x5d, 0x9b, 0xc1, 0x26, 0xa2, - 0x9f, 0xbf, 0x2a, 0x9f, 0xac, 0x78, 0x30, 0xfa, 0xf9, 0xe5, 0xd7, 0xa5, 0x9f, 0xbf, 0xb6, 0xa6, - 0x44, 0x3f, 0x7f, 0x25, 0x57, 0x21, 0xa0, 0x2f, 0x17, 0xd0, 0xe9, 0xe7, 0xf7, 0xd6, 0x94, 0x91, - 0x14, 0x41, 0x52, 0x64, 0xc9, 0xcb, 0x43, 0x41, 0xae, 0xb1, 0x1e, 0x14, 0xa4, 0xab, 0x05, 0xa1, - 0x20, 0x7f, 0xfe, 0x7e, 0xa0, 0x20, 0x4b, 0xbd, 0x37, 0x28, 0xc8, 0xb5, 0xbf, 0x0e, 0x14, 0x24, - 0x14, 0x64, 0xcd, 0x10, 0x0b, 0x14, 0x64, 0x55, 0x3e, 0xd9, 0x94, 0x37, 0x82, 0x82, 0xac, 0x35, - 0x67, 0x04, 0x05, 0x29, 0x6a, 0x4a, 0x50, 0x90, 0x95, 0x5c, 0x85, 0x80, 0xbe, 0x5c, 0x40, 0x87, - 0x82, 0xf4, 0xd6, 0x94, 0x91, 0x14, 0x41, 0x52, 0x64, 0x89, 0xcb, 0x43, 0x3f, 0xae, 0xb1, 0x1e, - 0xf4, 0xa3, 0xab, 0x05, 0xa1, 0x1f, 0x7f, 0xfe, 0x7e, 0x90, 0x14, 0x59, 0x63, 0x0d, 0x24, 0x45, - 0xaa, 0x45, 0x34, 0x20, 0x29, 0xe2, 0xe6, 0xd5, 0x21, 0x29, 0xb2, 0xf6, 0xab, 0x43, 0x52, 0x64, - 0xed, 0x57, 0x87, 0xa4, 0xc8, 0xfa, 0xe1, 0x02, 0x49, 0x91, 0x75, 0x5f, 0x1d, 0x92, 0x22, 0x6b, - 0xbf, 0x3a, 0x24, 0x45, 0xd6, 0x7e, 0x75, 0x48, 0x8a, 0xd4, 0x06, 0x59, 0x21, 0x29, 0x52, 0x6e, - 0x31, 0x24, 0x45, 0x90, 0x14, 0x59, 0x4f, 0x52, 0x64, 0xac, 0x84, 0xe1, 0xab, 0xa2, 0xc8, 0x96, - 0x47, 0x76, 0x21, 0x65, 0x0f, 0x5e, 0xd8, 0x41, 0xc3, 0xa9, 0x76, 0x4b, 0x7f, 0xd8, 0xca, 0xd2, - 0x3c, 0x52, 0x9f, 0x8c, 0x6f, 0xf0, 0x28, 0xbf, 0xbf, 0xf0, 0x74, 0x74, 0x13, 0x6f, 0x8b, 0xdb, - 0xcb, 0xff, 0x20, 0xfc, 0x30, 0xec, 0xc6, 0xe1, 0xc7, 0xe2, 0x7e, 0xb6, 0xfc, 0xb0, 0x9f, 0x72, - 0x57, 0x28, 0x69, 0x79, 0x8d, 0x7f, 0xc5, 0xdf, 0x47, 0xed, 0x6e, 0xf1, 0xff, 0x0e, 0xe3, 0xb4, - 0x15, 0x07, 0x49, 0xbb, 0xe4, 0x77, 0x72, 0x1b, 0x68, 0x45, 0x02, 0xaa, 0x48, 0xe0, 0x74, 0x1b, - 0x20, 0xcb, 0x7e, 0x56, 0xc7, 0x8e, 0xc4, 0xd0, 0x81, 0x38, 0x70, 0x1b, 0x25, 0xdc, 0x45, 0x39, - 0x27, 0xb1, 0xfe, 0xd6, 0x5e, 0xef, 0x37, 0xd7, 0xb4, 0x1a, 0x57, 0xd6, 0x62, 0x63, 0x25, 0xeb, - 0x7d, 0xa2, 0xd5, 0x5f, 0xf0, 0x1a, 0x2f, 0xb7, 0xa4, 0xc6, 0x98, 0x13, 0x2d, 0xb1, 0x92, 0x9a, - 0x61, 0xa5, 0xb5, 0xc1, 0x5c, 0x14, 0x84, 0x67, 0x0a, 0xbe, 0x65, 0xca, 0x55, 0xae, 0x2a, 0xb9, - 0xce, 0x2b, 0xb5, 0xce, 0x2b, 0xb1, 0x73, 0x95, 0xd6, 0x4e, 0xa3, 0x22, 0xce, 0xa8, 0xac, 0x6a, - 0x56, 0x23, 0xf7, 0x1b, 0x49, 0xbb, 0xfc, 0x67, 0x9e, 0x36, 0x32, 0x4f, 0x2e, 0x59, 0x36, 0xdd, - 0x72, 0xd2, 0xdd, 0xe1, 0xac, 0x8b, 0xc3, 0x65, 0xb7, 0x86, 0xb3, 0x4d, 0xea, 0x7a, 0xb3, 0x8a, - 0x6d, 0x5a, 0xb1, 0xcd, 0x2b, 0xb1, 0x89, 0xfd, 0x80, 0x1b, 0xce, 0xfa, 0x1b, 0xdc, 0x0f, 0xea, - 0x4c, 0x07, 0x71, 0xc8, 0xf9, 0x3c, 0xce, 0xf9, 0x4a, 0xb0, 0x49, 0x6b, 0xe4, 0x7c, 0x5b, 0x82, - 0x9f, 0x62, 0x82, 0xbd, 0xd7, 0x0d, 0x2e, 0xe5, 0x90, 0xb6, 0x13, 0x64, 0xed, 0x04, 0x49, 0x97, - 0x43, 0xce, 0xab, 0xbe, 0xf4, 0x92, 0x76, 0xaf, 0x6d, 0xef, 0x8d, 0xb5, 0x50, 0xc7, 0x1a, 0x70, - 0x77, 0xb5, 0x2d, 0xb5, 0xfc, 0xc6, 0x58, 0xee, 0x6f, 0x2e, 0xf9, 0x15, 0xd7, 0xfd, 0x7a, 0x6a, - 0x5f, 0x6d, 0xb9, 0xb7, 0xf8, 0xeb, 0x77, 0xf2, 0xf3, 0xbf, 0xf1, 0x8b, 0xb7, 0xb5, 0xea, 0x5b, - 0x92, 0x7e, 0x3b, 0x4b, 0xd8, 0xf0, 0x8a, 0x36, 0xfb, 0xf3, 0xd7, 0xbc, 0xf8, 0xe5, 0xfd, 0xe4, - 0xc5, 0x35, 0x7a, 0xfd, 0xab, 0xec, 0xaa, 0x75, 0xd5, 0xfd, 0x75, 0x13, 0xf9, 0x14, 0x16, 0x14, - 0xbf, 0xf2, 0x8b, 0x0f, 0xb2, 0x1c, 0x06, 0x5f, 0x3a, 0xad, 0x5f, 0x25, 0x6d, 0xbf, 0x9b, 0x96, - 0xa7, 0x71, 0x76, 0xfb, 0x95, 0x96, 0xf9, 0x1e, 0x2b, 0xe6, 0xde, 0x6b, 0xe7, 0xd6, 0x6b, 0xe7, - 0xce, 0xf7, 0x73, 0xe3, 0xc9, 0xb3, 0x09, 0x6f, 0xad, 0x65, 0xd1, 0x69, 0x61, 0x1b, 0xcb, 0xbf, - 0xc2, 0xfb, 0x56, 0xb5, 0xec, 0x1b, 0x5c, 0x8d, 0xe0, 0x59, 0x19, 0x3b, 0xae, 0x83, 0x11, 0xd7, - 0x33, 0xba, 0xb2, 0xc0, 0xaf, 0x34, 0xc0, 0x2b, 0x0d, 0xe4, 0xd6, 0x36, 0x4a, 0x99, 0x68, 0xb9, - 0x2a, 0x95, 0xd2, 0xf8, 0x72, 0xd1, 0x5b, 0xfd, 0xad, 0x4f, 0xbe, 0xf5, 0xed, 0x2f, 0xaf, 0x9a, - 0x01, 0xaf, 0xc5, 0x4d, 0xae, 0x4d, 0x7f, 0x94, 0xa1, 0x3b, 0xee, 0x9a, 0xf4, 0xea, 0x4f, 0xea, - 0x82, 0xcf, 0x70, 0xc6, 0x5f, 0x38, 0xe3, 0x2b, 0xee, 0x9b, 0xfb, 0xed, 0x7b, 0xf1, 0x0c, 0x63, - 0xad, 0xcb, 0x26, 0x36, 0x2e, 0xba, 0x57, 0x5f, 0xa2, 0x6e, 0x79, 0xee, 0x3e, 0xbf, 0x8e, 0x31, - 0x79, 0xbf, 0xe3, 0x07, 0x79, 0xbf, 0xde, 0xc6, 0x71, 0x4d, 0x08, 0x56, 0x8f, 0xbd, 0x5f, 0x6b, - 0x63, 0xd9, 0xf0, 0x4a, 0xa5, 0xe9, 0xfb, 0xa8, 0x93, 0x04, 0x83, 0xa8, 0x93, 0x0c, 0xdc, 0xd1, - 0xf7, 0xd3, 0x4b, 0xba, 0xa1, 0xef, 0x77, 0x6b, 0x4e, 0xdf, 0x97, 0xdb, 0xa6, 0xae, 0xb7, 0xab, - 0xd8, 0xb6, 0x15, 0xdb, 0xbe, 0x22, 0xdb, 0xb8, 0x3c, 0xc1, 0xbc, 0xed, 0x80, 0xc0, 0x77, 0x75, - 0xa6, 0x4d, 0xb1, 0x27, 0xdd, 0x99, 0xc7, 0xfd, 0xdd, 0xee, 0xca, 0x3a, 0xdc, 0x1e, 0xba, 0xe5, - 0x7c, 0x02, 0x5b, 0x62, 0xe2, 0xda, 0xbd, 0x33, 0x90, 0x72, 0x0a, 0xe2, 0xce, 0x41, 0xdc, 0x49, - 0x88, 0x3a, 0x0b, 0x37, 0x4e, 0xc3, 0x91, 0xf3, 0x70, 0xee, 0x44, 0xa6, 0xce, 0xa4, 0xdd, 0x0e, - 0x7a, 0x51, 0xf6, 0x75, 0x20, 0x77, 0x9e, 0xdf, 0x74, 0x89, 0x8a, 0x9d, 0xe9, 0xb7, 0x53, 0xcd, - 0x33, 0xfd, 0xdc, 0xba, 0x1d, 0x69, 0xf7, 0xa3, 0xe6, 0x86, 0xd4, 0xdc, 0x91, 0x8a, 0x5b, 0x72, - 0xeb, 0x9e, 0x1c, 0xbb, 0x29, 0x31, 0x77, 0x55, 0x5c, 0xb8, 0x35, 0xd9, 0xa3, 0xc2, 0xa2, 0x35, - 0xf9, 0x3a, 0xb2, 0x8a, 0x35, 0xbb, 0x28, 0xd6, 0x18, 0x3a, 0x36, 0x2d, 0x07, 0xa7, 0xee, 0xe8, - 0xd4, 0x1d, 0x9e, 0xaa, 0xe3, 0x93, 0x71, 0x80, 0x42, 0x8e, 0x50, 0xdc, 0x21, 0x16, 0x0b, 0xc4, - 0xdd, 0xe4, 0x22, 0xf9, 0xd2, 0x8d, 0x83, 0xb1, 0x69, 0x05, 0x79, 0x2f, 0x84, 0x9a, 0xb6, 0xcb, - 0x82, 0xf5, 0x85, 0x0d, 0x4e, 0x47, 0xbb, 0x52, 0xdc, 0xa1, 0x6a, 0x3a, 0x56, 0x7d, 0x07, 0xab, - 0xed, 0x68, 0xcd, 0x1c, 0xae, 0x99, 0xe3, 0x35, 0x71, 0xc0, 0xb2, 0x8e, 0x58, 0xd8, 0x21, 0x17, - 0x6f, 0x4c, 0x5c, 0x3e, 0x6c, 0x6e, 0xbf, 0x75, 0xe3, 0xa8, 0x23, 0x2b, 0x21, 0x36, 0x97, 0x67, - 0xbe, 0xd0, 0x11, 0xca, 0xcf, 0x7b, 0xa1, 0x5a, 0x41, 0xbf, 0x77, 0xd5, 0x7d, 0xd5, 0xbf, 0x1a, - 0x66, 0x49, 0x7a, 0x91, 0x47, 0x82, 0xe2, 0x8f, 0xf3, 0x5e, 0xa7, 0x76, 0xdc, 0x49, 0xd2, 0x24, - 0x4b, 0xae, 0xd2, 0xc1, 0xe2, 0x7f, 0x55, 0xfc, 0x9b, 0x51, 0x97, 0x53, 0x45, 0x65, 0x46, 0x05, - 0x2d, 0xb8, 0xd1, 0x8f, 0x5b, 0x71, 0x72, 0xad, 0x28, 0xe1, 0x36, 0x59, 0x50, 0x78, 0x57, 0xfe, - 0x11, 0x77, 0xa2, 0x61, 0x77, 0xe4, 0xc6, 0x3a, 0x51, 0x77, 0x10, 0x93, 0x47, 0x90, 0x47, 0x90, - 0x47, 0x90, 0x47, 0x90, 0x47, 0xdc, 0x69, 0x1e, 0xbb, 0xba, 0xea, 0xc6, 0x91, 0xaa, 0xaa, 0xf8, - 0x2e, 0x21, 0x78, 0xee, 0xdd, 0x0c, 0xe2, 0xb4, 0xad, 0x17, 0x7f, 0x47, 0xab, 0x11, 0x7c, 0x09, - 0xbe, 0x04, 0x5f, 0x82, 0x2f, 0xc1, 0x97, 0xe0, 0x4b, 0xf0, 0x0d, 0x2e, 0x15, 0x4e, 0x4d, 0x9a, - 0x09, 0xc0, 0xa3, 0x15, 0x09, 0x8a, 0x04, 0x45, 0x82, 0x22, 0x41, 0x91, 0xa0, 0x58, 0xec, 0xb7, - 0x61, 0x92, 0x66, 0xbf, 0x29, 0x86, 0xc4, 0x7d, 0x8e, 0xad, 0x5c, 0xff, 0xc1, 0x38, 0xb6, 0x52, - 0x7e, 0x5d, 0x8e, 0xad, 0xac, 0xad, 0x29, 0x35, 0xf7, 0x39, 0xb4, 0xb2, 0x72, 0xab, 0x9c, 0x57, - 0x15, 0x42, 0x55, 0xaa, 0xd7, 0x49, 0x58, 0xa2, 0x7b, 0x0a, 0xfe, 0xdc, 0x6a, 0x70, 0x4c, 0x94, - 0x29, 0x8a, 0x7f, 0x7a, 0xf6, 0xe5, 0xa2, 0xf7, 0x6c, 0x3c, 0x8c, 0xfa, 0xac, 0x98, 0x87, 0x2b, - 0xfe, 0xe9, 0x59, 0xd1, 0xde, 0xfe, 0x2c, 0x6f, 0x16, 0xdd, 0xe0, 0xe3, 0x24, 0xcb, 0xa9, 0x76, - 0x2e, 0x0f, 0xbe, 0x4b, 0xa8, 0x7a, 0x2e, 0xcd, 0xb3, 0x48, 0x37, 0xe5, 0x36, 0x69, 0xca, 0xf5, - 0x07, 0x51, 0xd3, 0x94, 0xbb, 0xc1, 0x81, 0x8a, 0xa6, 0xdc, 0x0a, 0x67, 0xe6, 0x50, 0x97, 0x95, - 0x72, 0xb4, 0x66, 0x0e, 0xd7, 0xcc, 0xf1, 0x9a, 0x38, 0x60, 0x1d, 0x2c, 0x45, 0x53, 0xae, 0x83, - 0x3c, 0x93, 0xa6, 0x5c, 0x4b, 0x44, 0x4d, 0x53, 0xee, 0xea, 0xe9, 0x12, 0x7d, 0x41, 0xe4, 0x11, - 0xe4, 0x11, 0xe4, 0x11, 0xe4, 0x11, 0x0b, 0xf7, 0x1b, 0x7d, 0x41, 0x5e, 0x84, 0x60, 0x9a, 0x72, - 0x09, 0xbe, 0x04, 0x5f, 0x82, 0x2f, 0xc1, 0x97, 0xe0, 0x4b, 0xf0, 0x35, 0x08, 0xbe, 0x34, 0xe5, - 0x12, 0x14, 0x09, 0x8a, 0x04, 0x45, 0x82, 0xa2, 0x75, 0x50, 0xa4, 0x29, 0xb7, 0xec, 0x0f, 0x4d, - 0xb9, 0x22, 0xcb, 0xd2, 0x94, 0x2b, 0x6b, 0x4a, 0x34, 0xe5, 0xd6, 0xdc, 0x98, 0x68, 0xca, 0xb5, - 0x85, 0x50, 0x34, 0xe5, 0x3e, 0x04, 0xfe, 0x7c, 0x69, 0xca, 0x2d, 0x71, 0xea, 0xa9, 0xfe, 0x97, - 0xf7, 0x5b, 0xcd, 0x57, 0xd8, 0x76, 0xbc, 0xb1, 0x99, 0x86, 0x48, 0x67, 0xf4, 0x4f, 0x4f, 0x69, - 0xcc, 0xef, 0x30, 0x7c, 0x7d, 0xd1, 0x0b, 0xdf, 0x8d, 0xee, 0x30, 0x3c, 0xec, 0x24, 0x67, 0x51, - 0x27, 0x09, 0x0f, 0xdb, 0xed, 0xd3, 0xd1, 0x5d, 0x6d, 0xf9, 0x69, 0x69, 0x0e, 0xad, 0xac, 0x38, - 0x80, 0x22, 0xc8, 0x5f, 0x94, 0x94, 0x22, 0xfd, 0xcc, 0x32, 0x32, 0xaa, 0xf4, 0x3b, 0xa8, 0xd2, - 0xa3, 0x4a, 0xef, 0x21, 0x79, 0x83, 0x2a, 0xbd, 0x1c, 0xf9, 0xa2, 0xd0, 0x46, 0x28, 0xd9, 0x36, - 0x58, 0xb4, 0x09, 0x3e, 0x7d, 0x9a, 0xcf, 0x32, 0x3d, 0x9b, 0xf5, 0x94, 0x1b, 0x10, 0x81, 0x84, - 0x0e, 0x16, 0x90, 0x3d, 0x50, 0x80, 0x93, 0x50, 0x88, 0x39, 0xc4, 0x9c, 0xcd, 0x3c, 0x09, 0x45, - 0x36, 0x65, 0x56, 0x4d, 0x9d, 0x95, 0xe8, 0x43, 0xce, 0x45, 0xf1, 0xca, 0xdd, 0xa9, 0xbb, 0x3d, - 0x75, 0xf7, 0xa7, 0xea, 0x06, 0xe5, 0xc8, 0xa9, 0x6d, 0x41, 0x5a, 0x52, 0xbc, 0x1e, 0x5a, 0xec, - 0x97, 0xa4, 0x1d, 0xa7, 0x59, 0x92, 0x7d, 0x97, 0x9d, 0xf2, 0x29, 0x32, 0x32, 0xc1, 0x42, 0x44, - 0xe3, 0x28, 0x7f, 0x94, 0xd7, 0xd1, 0x40, 0x71, 0xca, 0xe4, 0xf0, 0xed, 0x51, 0x78, 0x76, 0xfb, - 0x5f, 0x1f, 0xff, 0x7d, 0xfa, 0x46, 0x7a, 0x8b, 0x8e, 0x2a, 0x3a, 0x03, 0x95, 0x12, 0xaf, 0x52, - 0x77, 0xc8, 0xe4, 0x35, 0x1e, 0x9d, 0x7e, 0x3a, 0x08, 0x8f, 0x0f, 0x5f, 0xbf, 0x39, 0x7e, 0xf3, - 0x47, 0xf8, 0xd7, 0xc9, 0xd1, 0xef, 0x87, 0x67, 0x1f, 0x15, 0xba, 0x26, 0x9e, 0xd4, 0xed, 0x3d, - 0x9e, 0x7d, 0xf8, 0xf8, 0x26, 0x3c, 0xfd, 0xf3, 0xf8, 0xe8, 0xf7, 0x7f, 0x87, 0xb7, 0xef, 0x94, - 0x77, 0xb8, 0xfa, 0x3b, 0x3c, 0x3e, 0x3a, 0xf9, 0xd7, 0xd9, 0xc7, 0xc3, 0x8f, 0x6f, 0x78, 0x79, - 0x6b, 0x6d, 0xe4, 0x3d, 0x36, 0x70, 0x09, 0xe3, 0x6b, 0x7e, 0x3a, 0x3d, 0x09, 0xdf, 0x7c, 0x3a, - 0x3d, 0xe1, 0xed, 0x95, 0xd8, 0xba, 0xe1, 0xd9, 0xe9, 0x5b, 0x5e, 0x60, 0x99, 0x17, 0x88, 0x05, - 0xae, 0xf7, 0x02, 0x9f, 0xdf, 0xee, 0x5f, 0xbc, 0xa0, 0x0b, 0x2f, 0xf8, 0xe9, 0xf4, 0xf8, 0x8c, - 0xb7, 0x57, 0xc2, 0x06, 0x0f, 0xb0, 0xc1, 0x92, 0x99, 0x0c, 0x90, 0xc4, 0xa5, 0x35, 0xbe, 0xff, - 0xeb, 0xf8, 0x23, 0xef, 0xb1, 0x7c, 0x64, 0xe1, 0x3d, 0xba, 0x83, 0xc8, 0x7b, 0xbc, 0xc3, 0xd5, - 0xdf, 0xe1, 0xa7, 0xd3, 0x93, 0x4f, 0x7b, 0xe1, 0xdb, 0xe3, 0x3f, 0xff, 0xfb, 0xec, 0xf4, 0xcd, - 0xef, 0xbc, 0xc1, 0xb5, 0xa2, 0x0b, 0xd1, 0xb9, 0x6c, 0x74, 0x56, 0x34, 0x40, 0xd1, 0x15, 0xce, - 0xab, 0x56, 0xf7, 0xa8, 0x84, 0xfc, 0x6e, 0x9c, 0x46, 0x5f, 0xba, 0x71, 0x5b, 0xbe, 0x0a, 0x3c, - 0x59, 0x48, 0x4a, 0x90, 0x53, 0x47, 0xe4, 0x82, 0x3a, 0xf3, 0x0a, 0x9f, 0x9c, 0x3a, 0xf3, 0xda, - 0x0b, 0x52, 0x67, 0xf6, 0x25, 0x7c, 0x2b, 0xd6, 0x99, 0xe5, 0x45, 0x28, 0x84, 0xc5, 0x27, 0x98, - 0x6e, 0x71, 0xfb, 0xb5, 0x8c, 0xa7, 0x5b, 0x24, 0x0e, 0x27, 0xf0, 0xb3, 0x85, 0xf7, 0xa2, 0x1f, - 0xb5, 0xe2, 0xce, 0xb0, 0x1b, 0xf4, 0xe3, 0x41, 0x16, 0xf5, 0x33, 0xb9, 0x66, 0xde, 0xb9, 0x95, - 0x68, 0xeb, 0xa5, 0xad, 0xd7, 0x3c, 0xef, 0xa0, 0xad, 0x57, 0x2f, 0x68, 0x88, 0xb5, 0xf5, 0x0a, - 0xcd, 0x21, 0xcc, 0x6d, 0x27, 0x91, 0x79, 0x04, 0x61, 0x07, 0x06, 0xc0, 0x02, 0x60, 0x01, 0xb0, - 0xfc, 0x04, 0x58, 0xf2, 0x67, 0xa9, 0x08, 0x73, 0x5c, 0xca, 0x5c, 0x97, 0x36, 0xe7, 0xa5, 0xc4, - 0x7d, 0xa9, 0xb9, 0x68, 0x4d, 0x57, 0xad, 0xef, 0xb2, 0xb5, 0x5d, 0xb7, 0x99, 0x0b, 0x37, 0x73, - 0xe5, 0x26, 0x2e, 0x5d, 0xd6, 0xb5, 0x0b, 0xbb, 0x78, 0x3d, 0x2e, 0xcd, 0x80, 0x53, 0x53, 0xe2, - 0xd6, 0xe4, 0x0d, 0x00, 0x55, 0x22, 0x0f, 0x39, 0xb8, 0xfb, 0x7c, 0x11, 0x27, 0x86, 0x72, 0x62, - 0xe8, 0x0a, 0x29, 0x14, 0x27, 0x86, 0x82, 0x72, 0x41, 0xb9, 0xa0, 0x5c, 0x50, 0x2e, 0x28, 0x17, - 0x94, 0x0b, 0xca, 0x05, 0xe5, 0x82, 0x72, 0x41, 0xb9, 0xa0, 0x5c, 0xdf, 0x51, 0x2e, 0x12, 0xbc, - 0x55, 0x31, 0x21, 0xdf, 0x4c, 0xc7, 0x2f, 0x25, 0xde, 0x77, 0xf9, 0xdd, 0x7d, 0xc8, 0x6f, 0x6e, - 0x03, 0x7a, 0xa9, 0x92, 0xde, 0xf5, 0x5e, 0xd0, 0x8d, 0xbe, 0xc4, 0xdd, 0xb8, 0x1d, 0x0c, 0xd3, - 0xa4, 0x15, 0x0d, 0x04, 0xfb, 0xa9, 0x1e, 0x5c, 0x8d, 0x9e, 0x2a, 0x7a, 0xaa, 0xcc, 0x33, 0x78, - 0x7a, 0xaa, 0xf4, 0x62, 0x9c, 0x58, 0x4f, 0xd5, 0xd8, 0x42, 0x82, 0x6e, 0x72, 0x99, 0x64, 0xf2, - 0x94, 0xf3, 0xcc, 0x6a, 0xf4, 0x57, 0x59, 0xd1, 0x19, 0x30, 0xcf, 0xd5, 0xa3, 0x2b, 0x60, 0x9e, - 0xd5, 0x9d, 0x63, 0xb1, 0x80, 0x70, 0xe3, 0xe9, 0xdc, 0xb6, 0x14, 0x6d, 0x40, 0x55, 0x72, 0x94, - 0x6a, 0x0e, 0x53, 0xd3, 0x71, 0xea, 0x3b, 0x50, 0x6d, 0x47, 0x6a, 0xe6, 0x50, 0xcd, 0x1c, 0xab, - 0x89, 0x83, 0x95, 0xa7, 0x01, 0xb7, 0x15, 0x78, 0x60, 0x69, 0xc7, 0x5b, 0x2c, 0x74, 0x19, 0x7d, - 0x0b, 0xc6, 0x56, 0x38, 0x12, 0x3e, 0x55, 0x56, 0x19, 0x98, 0x59, 0x5d, 0xc9, 0x18, 0x75, 0x4f, - 0x0b, 0x54, 0x73, 0xd2, 0x16, 0xce, 0xda, 0xce, 0x69, 0x5b, 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, - 0xcc, 0x4d, 0x9d, 0xba, 0x8e, 0x73, 0x57, 0x72, 0xf2, 0xc5, 0x9b, 0x54, 0x2b, 0xfa, 0xcd, 0xed, - 0xd7, 0x61, 0x92, 0x66, 0xcf, 0x9b, 0x9a, 0xfb, 0x35, 0xf7, 0xbe, 0x2f, 0x14, 0x97, 0xd4, 0x3d, - 0xb7, 0x79, 0xf2, 0xa3, 0xeb, 0x8f, 0xb6, 0xad, 0xce, 0x71, 0x36, 0x0a, 0xab, 0x73, 0xcb, 0x1b, - 0x9d, 0xeb, 0x5c, 0xac, 0x6f, 0x78, 0x24, 0xaf, 0xb2, 0xbb, 0x9a, 0x35, 0x39, 0x83, 0xf3, 0x9e, - 0x7d, 0x33, 0xb9, 0xbd, 0xe6, 0xcb, 0xbd, 0x97, 0x07, 0x2f, 0x9a, 0x2f, 0xf7, 0x37, 0xd8, 0xf6, - 0xb6, 0xea, 0xb9, 0xda, 0x79, 0x4d, 0x8e, 0xbb, 0x56, 0xf0, 0x0d, 0xb7, 0x79, 0xf0, 0x75, 0x9c, - 0x66, 0x41, 0x16, 0x47, 0xfd, 0xf6, 0xd5, 0xdf, 0xa9, 0x3e, 0x9c, 0x9c, 0xbb, 0x03, 0xa5, 0x04, - 0x4e, 0xb9, 0xcf, 0x14, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x26, 0x7d, 0xac, - 0xf7, 0xdd, 0xaf, 0x70, 0x3f, 0x6b, 0xbd, 0x92, 0x84, 0xbc, 0xd5, 0x2e, 0xc8, 0x92, 0xcb, 0xb8, - 0xaf, 0x9f, 0x21, 0xcc, 0x2e, 0x4f, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x84, 0x69, 0xb5, - 0xfd, 0xda, 0x8e, 0x5b, 0xc9, 0x65, 0xd4, 0x3d, 0xd8, 0xb3, 0x08, 0xd4, 0x4d, 0xc5, 0x35, 0xe7, - 0x48, 0x99, 0x26, 0x94, 0xb7, 0xfb, 0x07, 0xf5, 0x81, 0xf2, 0x6e, 0x42, 0x79, 0x43, 0x79, 0xeb, - 0x9a, 0xdc, 0x73, 0x4c, 0x0e, 0xa6, 0xdb, 0xed, 0x0f, 0x4c, 0xf7, 0xf2, 0x66, 0xf8, 0x77, 0xd4, - 0x4f, 0x93, 0xf4, 0x22, 0xc8, 0xbe, 0xf6, 0xe3, 0xc1, 0xd7, 0xab, 0x6e, 0x3b, 0xe8, 0xb5, 0x32, - 0x7d, 0x30, 0xfb, 0xf0, 0x6d, 0x00, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x56, 0x6d, - 0xbf, 0xf6, 0xe2, 0x7e, 0x2b, 0x4e, 0xb3, 0xe8, 0x22, 0x36, 0x40, 0xb5, 0xfb, 0xe0, 0xca, 0x7a, - 0xe2, 0x4a, 0x5a, 0xa9, 0xc0, 0x95, 0x1b, 0x66, 0x72, 0xbb, 0x3b, 0x20, 0x4b, 0x90, 0xa5, 0xaf, - 0xc8, 0xb2, 0xd2, 0x13, 0x45, 0x4a, 0x72, 0x40, 0xc5, 0x7a, 0xc6, 0xda, 0x2e, 0x0f, 0x89, 0x7b, - 0x3c, 0xbb, 0x3b, 0x24, 0x2f, 0xaa, 0x86, 0x2b, 0x6f, 0x32, 0x82, 0xe6, 0x22, 0xac, 0x92, 0x3b, - 0x97, 0x3d, 0x4b, 0xaa, 0xe5, 0xde, 0x0f, 0x70, 0x6a, 0x23, 0xb9, 0x4d, 0x46, 0x72, 0xab, 0x43, - 0x47, 0x30, 0x92, 0xcb, 0x48, 0xee, 0x2f, 0xdf, 0x18, 0x23, 0xb9, 0x35, 0x41, 0x1f, 0x70, 0xc9, - 0xb5, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x5d, 0x3c, 0xc9, 0x48, 0xae, - 0x98, 0xf7, 0x65, 0x24, 0x57, 0xe0, 0x41, 0xe1, 0x91, 0xe1, 0x91, 0xb5, 0x4d, 0x0e, 0x1e, 0x99, - 0x91, 0x5c, 0xe8, 0x64, 0xef, 0x9f, 0x87, 0x91, 0x5c, 0x51, 0xb4, 0xce, 0x48, 0x2e, 0x50, 0x16, - 0x28, 0x0b, 0x94, 0x05, 0xca, 0x32, 0x92, 0x4b, 0x92, 0xf0, 0xb3, 0x77, 0xc6, 0x48, 0x2e, 0x61, - 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x6f, 0x66, 0x98, 0x66, 0x24, 0x57, 0x63, 0x71, 0x28, 0x6f, - 0x45, 0xb3, 0x62, 0x24, 0x17, 0xca, 0x5b, 0xd9, 0xe4, 0x18, 0xc9, 0x85, 0xe9, 0x76, 0xfc, 0x03, - 0xd3, 0xbd, 0xbc, 0x19, 0x32, 0x92, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, - 0x46, 0x72, 0xc1, 0x95, 0x95, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x46, 0x72, 0x41, 0x96, 0x20, - 0x4b, 0xd3, 0x15, 0x18, 0xc9, 0x55, 0x1e, 0xc9, 0x1d, 0x4f, 0x82, 0x56, 0x75, 0x22, 0xb7, 0x52, - 0x27, 0xfb, 0x2a, 0xd9, 0x9e, 0xf7, 0x36, 0xd7, 0x10, 0x9d, 0xa3, 0xee, 0x0f, 0x5b, 0x59, 0x9a, - 0x23, 0x92, 0x93, 0xf1, 0xc3, 0x1c, 0xe5, 0xcf, 0x12, 0x9e, 0xe6, 0x4f, 0x10, 0xbe, 0xbe, 0xe8, - 0x85, 0xef, 0x46, 0x4f, 0x10, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, 0xeb, 0xbd, - 0xe3, 0xf1, 0x5d, 0xff, 0x35, 0xbe, 0xe9, 0x70, 0x4c, 0x7e, 0x1c, 0x8f, 0xee, 0x79, 0xab, 0x1a, - 0xf6, 0xeb, 0xf7, 0xc1, 0xff, 0xc2, 0x3b, 0xc0, 0x47, 0xcb, 0x17, 0x30, 0x76, 0xa7, 0x46, 0xee, - 0xd6, 0xb0, 0xdd, 0x99, 0x9f, 0x43, 0xd3, 0x6b, 0x8c, 0xbe, 0xcb, 0xe4, 0x7b, 0xb8, 0x36, 0xbc, - 0x82, 0xfe, 0x98, 0x59, 0xc5, 0xf1, 0xc6, 0x91, 0x91, 0x52, 0x10, 0xa3, 0x93, 0x25, 0x69, 0x63, - 0x79, 0x7a, 0x58, 0x9a, 0x06, 0x56, 0xa3, 0x7b, 0xd5, 0x68, 0x5d, 0x15, 0xfa, 0xd6, 0xef, 0xd0, - 0x26, 0x25, 0x55, 0xd0, 0x68, 0x4d, 0xf6, 0xa8, 0x90, 0x31, 0x4e, 0xb6, 0x53, 0xbe, 0x8e, 0x90, - 0x81, 0xc8, 0x6a, 0xc1, 0x88, 0xd7, 0xc5, 0x34, 0xea, 0x60, 0x7a, 0x75, 0x2f, 0xad, 0x3a, 0x97, - 0x7a, 0x5d, 0x4b, 0xbd, 0x8e, 0xa5, 0x5a, 0xb7, 0xaa, 0x16, 0xda, 0x95, 0xd6, 0x6e, 0x69, 0x0c, - 0xe2, 0xb4, 0x1d, 0xb4, 0xc7, 0x33, 0x67, 0x41, 0xff, 0x6a, 0xa8, 0xaa, 0x9f, 0x35, 0xbf, 0xb6, - 0xb4, 0x14, 0x8e, 0xee, 0x70, 0x9d, 0x12, 0x15, 0xae, 0xd6, 0xd0, 0x80, 0x78, 0x57, 0xa5, 0x1d, - 0xbb, 0x99, 0x83, 0x37, 0x71, 0xf4, 0xb2, 0x0e, 0x5f, 0xd8, 0xf1, 0x17, 0x6f, 0x4c, 0xad, 0x11, - 0xc1, 0x60, 0xf8, 0x4d, 0x69, 0xe8, 0x0d, 0xe6, 0x3c, 0xdf, 0x7c, 0x1b, 0xc4, 0x9c, 0x4f, 0x18, - 0x73, 0x49, 0xad, 0x54, 0x01, 0xde, 0x59, 0x80, 0x86, 0x99, 0xa9, 0x19, 0x88, 0xe3, 0x5f, 0x85, - 0x0a, 0x05, 0x28, 0x18, 0x14, 0x0c, 0x0a, 0x06, 0x05, 0xbb, 0x5c, 0x40, 0x98, 0x1e, 0x9c, 0xdb, - 0x96, 0xa2, 0x34, 0xa1, 0x92, 0xa3, 0x04, 0x7d, 0x82, 0x3e, 0x41, 0x9f, 0xf5, 0x46, 0x9f, 0x48, - 0x47, 0x4b, 0x3b, 0x67, 0x66, 0x9e, 0xaa, 0xec, 0xb4, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, + 0x32, 0x68, 0x1a, 0x76, 0x67, 0x58, 0x82, 0xc6, 0x88, 0x41, 0x47, 0x28, 0xe1, 0x28, 0xd1, 0xb1, + 0x5e, 0xcb, 0x4a, 0xc8, 0x68, 0xde, 0x0a, 0x59, 0x60, 0x7c, 0x60, 0x7c, 0x60, 0x7c, 0x60, 0x7c, + 0x5a, 0x35, 0x5e, 0xaa, 0xd0, 0xf5, 0x1f, 0x31, 0x2a, 0x73, 0xbb, 0xdf, 0x3a, 0x29, 0xda, 0xb0, + 0xa4, 0xb2, 0xd5, 0x80, 0x30, 0xfa, 0xb7, 0x28, 0x08, 0x3e, 0x01, 0x3e, 0x01, 0x3e, 0x01, 0x3e, + 0x41, 0xab, 0xc6, 0x0b, 0x7f, 0xd0, 0x13, 0xa1, 0x4d, 0xd4, 0xd3, 0x60, 0xea, 0x18, 0xaa, 0x04, + 0xd7, 0x6e, 0xfa, 0x83, 0xde, 0xe8, 0xe1, 0x0c, 0x77, 0xc0, 0xe9, 0x84, 0xa2, 0x1b, 0x0a, 0xf9, + 0x64, 0x85, 0xa2, 0x33, 0x70, 0x48, 0x0e, 0x93, 0x4d, 0x35, 0x62, 0x59, 0x14, 0x1c, 0x0f, 0x1c, + 0x0f, 0x1c, 0x0f, 0x1c, 0x8f, 0x56, 0x8d, 0x7f, 0x08, 0x02, 0x4f, 0xd8, 0xa4, 0x4e, 0xa7, 0x8c, + 0xa3, 0xa7, 0x6f, 0xd1, 0xf6, 0x7c, 0x1c, 0x3d, 0x9d, 0x9e, 0x69, 0x99, 0xbe, 0x4a, 0xd9, 0x20, + 0xcf, 0x34, 0x1c, 0xe4, 0xd4, 0x93, 0x67, 0xc1, 0x19, 0x4e, 0x9c, 0xe1, 0x24, 0xd8, 0xaf, 0xc6, + 0xcf, 0x6d, 0x5e, 0x4d, 0x6e, 0x04, 0xc7, 0x36, 0x33, 0xa0, 0x37, 0x69, 0x3e, 0xab, 0x29, 0x85, + 0x94, 0x6e, 0xe0, 0x6b, 0x38, 0xaa, 0x39, 0xbd, 0x12, 0x4e, 0x6a, 0xe2, 0xa4, 0xa6, 0x31, 0x12, + 0x93, 0xb1, 0x93, 0x9a, 0xf1, 0xa6, 0xd1, 0x77, 0x50, 0x73, 0x72, 0x41, 0x9c, 0xd3, 0x64, 0x8c, + 0x64, 0xe0, 0x9c, 0x26, 0xce, 0x69, 0xfe, 0xe4, 0x42, 0xe2, 0x7b, 0xdf, 0x73, 0x1d, 0x57, 0x59, + 0x61, 0x30, 0x50, 0xc2, 0x0a, 0x1e, 0xfe, 0x9f, 0x70, 0x14, 0xc1, 0xb1, 0xcd, 0x04, 0x39, 0x29, + 0x3f, 0xe8, 0x83, 0x53, 0x9c, 0x99, 0x0a, 0x72, 0xe2, 0xa0, 0x4f, 0x9a, 0x0f, 0xfa, 0xac, 0x34, + 0x01, 0x74, 0x19, 0x98, 0xd5, 0xe2, 0x30, 0xcd, 0x0d, 0x59, 0x18, 0x73, 0x06, 0x8a, 0xcd, 0x50, + 0xf1, 0x18, 0x2c, 0xbd, 0x86, 0x4b, 0xb3, 0x01, 0x23, 0x33, 0x64, 0xd3, 0x0b, 0xbb, 0x7e, 0x47, + 0x7c, 0xa7, 0x9f, 0x98, 0x30, 0x16, 0x83, 0x51, 0x09, 0xdc, 0x06, 0x8d, 0xd1, 0xb0, 0x71, 0x19, + 0x38, 0x76, 0x43, 0xc7, 0x6e, 0xf0, 0x78, 0x0d, 0x1f, 0x8d, 0x01, 0x24, 0x32, 0x84, 0xd3, 0x47, + 0xc3, 0x37, 0x2a, 0x41, 0x7f, 0xbf, 0x8e, 0x44, 0x04, 0xd6, 0xa0, 0x3d, 0x91, 0x34, 0xdf, 0xcf, + 0x63, 0x6c, 0x92, 0x77, 0x79, 0x66, 0x10, 0xc9, 0xe4, 0xe5, 0x25, 0xfd, 0xa1, 0x98, 0xc0, 0x4c, + 0x8c, 0xdd, 0xc9, 0x31, 0x3c, 0x5c, 0x1f, 0x5c, 0x1f, 0x5c, 0x5f, 0xca, 0xb8, 0xc0, 0x54, 0x80, + 0x2d, 0xe9, 0x47, 0xd1, 0xbc, 0x76, 0x36, 0x91, 0x3e, 0xb5, 0xf2, 0xf2, 0x8c, 0x32, 0x21, 0xe7, + 0x09, 0x9c, 0x46, 0xd3, 0x80, 0xf1, 0xe4, 0x36, 0xa2, 0xc6, 0x8c, 0xa9, 0x31, 0xa3, 0x6a, 0xc6, + 0xb8, 0xd2, 0x1a, 0x59, 0x62, 0x63, 0xcb, 0xc7, 0x37, 0x56, 0x18, 0x46, 0xcb, 0x1f, 0xf4, 0x1e, + 0x44, 0xc8, 0xb1, 0xe7, 0x62, 0x13, 0xd9, 0x60, 0x10, 0xc5, 0x33, 0xb1, 0x6d, 0xf2, 0x87, 0xc7, + 0x86, 0xec, 0x73, 0x4f, 0x70, 0x63, 0xf6, 0x6d, 0x4b, 0x62, 0x99, 0x27, 0xba, 0x4d, 0xe5, 0x1a, + 0x18, 0xda, 0xc5, 0x64, 0x61, 0xe6, 0x55, 0x89, 0x71, 0xd2, 0x5b, 0x5a, 0x54, 0xa9, 0x5a, 0x39, + 0xae, 0x1e, 0xd7, 0x1b, 0x95, 0xe3, 0xda, 0x0e, 0xe9, 0xd4, 0x5e, 0x3e, 0xa4, 0xb4, 0x32, 0x3a, + 0xd8, 0x8e, 0x70, 0x4f, 0x13, 0x67, 0x56, 0x96, 0xe0, 0x02, 0x65, 0x86, 0x05, 0x4c, 0x0a, 0x4c, + 0x0a, 0x4c, 0x0a, 0x4c, 0x2a, 0xa3, 0x4c, 0x6a, 0xe0, 0xfa, 0xaa, 0x5e, 0x65, 0xa4, 0x51, 0x47, + 0xa0, 0x51, 0xa0, 0x51, 0xa0, 0x51, 0xa0, 0x51, 0x06, 0x54, 0xa9, 0x7c, 0x54, 0xad, 0xd6, 0x1b, + 0xd5, 0x6a, 0xa9, 0x71, 0xd8, 0x28, 0x1d, 0xd7, 0x6a, 0xe5, 0x7a, 0x19, 0x84, 0x0a, 0x84, 0x2a, + 0x17, 0x84, 0x6a, 0x66, 0xf6, 0x2c, 0x23, 0xaf, 0xd2, 0x36, 0xf1, 0x16, 0xf4, 0x0a, 0xf4, 0x0a, + 0xf4, 0x0a, 0xf4, 0x2a, 0x87, 0xf4, 0xea, 0xb0, 0x82, 0x2c, 0x15, 0xe8, 0x15, 0xe8, 0x15, 0xe8, + 0x55, 0xce, 0x55, 0x09, 0x59, 0x2a, 0x90, 0xaa, 0x5c, 0x91, 0xaa, 0xbe, 0xd5, 0xe7, 0x41, 0xe9, + 0xb3, 0xe3, 0x86, 0x78, 0x8a, 0x56, 0x41, 0xa7, 0x40, 0xa7, 0x40, 0xa7, 0x40, 0xa7, 0xb2, 0x45, + 0xa7, 0xb8, 0xcc, 0xe3, 0x3e, 0xf1, 0x70, 0xb6, 0xa4, 0x47, 0x99, 0x3b, 0x46, 0x35, 0x37, 0xcc, + 0x8d, 0xd5, 0x92, 0xec, 0x33, 0x8d, 0xb3, 0x5a, 0xf6, 0x44, 0x4c, 0xe3, 0xad, 0x96, 0x04, 0xb3, + 0xce, 0x7e, 0x2b, 0xc6, 0xc2, 0x0e, 0x5e, 0xde, 0xdd, 0x97, 0xad, 0x4a, 0x6b, 0xf2, 0x1f, 0x87, + 0xf7, 0x25, 0xab, 0xd2, 0x22, 0x1d, 0x00, 0xc5, 0x0b, 0x5d, 0x99, 0xc9, 0xa3, 0x99, 0xbd, 0x59, + 0xc7, 0xde, 0x64, 0xd9, 0x9b, 0x18, 0x45, 0xc7, 0x3f, 0x8a, 0xae, 0xf8, 0xae, 0x3c, 0x32, 0x60, + 0x47, 0x63, 0x9b, 0x56, 0x6e, 0x2d, 0x99, 0xba, 0xb1, 0xe9, 0xca, 0x9f, 0xc1, 0x42, 0xcc, 0xc0, + 0x40, 0xcc, 0xc0, 0xb3, 0x1f, 0x84, 0xc7, 0x17, 0x2f, 0x18, 0x8b, 0x43, 0xac, 0x00, 0xb1, 0x02, + 0xc4, 0x0a, 0x10, 0x2b, 0x40, 0xac, 0x60, 0x66, 0xc7, 0xf5, 0xfa, 0x9e, 0xb4, 0x38, 0xec, 0x23, + 0x82, 0x05, 0x9a, 0x57, 0x8e, 0x2d, 0x69, 0xbe, 0xb8, 0x7a, 0x0d, 0x46, 0x91, 0xbc, 0x49, 0x74, + 0xfe, 0xd5, 0x9c, 0xfe, 0x50, 0x13, 0x49, 0x75, 0x66, 0xe8, 0x92, 0x28, 0x7e, 0x5a, 0x78, 0x5a, + 0x37, 0x74, 0x03, 0x06, 0x33, 0xa3, 0xcc, 0x81, 0x93, 0x79, 0x9d, 0x33, 0x90, 0x7d, 0x4f, 0x9d, + 0xce, 0x95, 0xaa, 0x47, 0xb5, 0x46, 0x6d, 0x87, 0x15, 0x6f, 0x2f, 0x9f, 0xd2, 0x10, 0xef, 0xdc, + 0x0e, 0x5e, 0xd0, 0x0e, 0xf3, 0xfc, 0x25, 0x42, 0xac, 0x32, 0xca, 0xa4, 0x19, 0xfe, 0x69, 0x6e, + 0x0b, 0x20, 0xe2, 0xb4, 0xbc, 0xc6, 0x5e, 0x10, 0x48, 0xc1, 0x18, 0x71, 0x8a, 0xc4, 0x21, 0xe2, + 0xb4, 0x96, 0x20, 0x44, 0x9c, 0xf4, 0xaa, 0x07, 0x22, 0x4e, 0x88, 0x38, 0xbd, 0x31, 0x4a, 0xc2, + 0xb8, 0xe3, 0xe8, 0x86, 0xb5, 0x26, 0x82, 0x89, 0x32, 0x1c, 0xe2, 0xd2, 0xb3, 0x51, 0x1c, 0x0b, + 0x3f, 0x5d, 0xf4, 0x48, 0x1a, 0xdc, 0x21, 0xdc, 0x21, 0xdc, 0x21, 0xdc, 0x21, 0xdc, 0xa1, 0x31, + 0x9e, 0xcd, 0xc9, 0xaf, 0x99, 0x78, 0xf5, 0x10, 0x4d, 0x9d, 0xf7, 0x09, 0x67, 0xaf, 0x2f, 0xc9, + 0x61, 0x9e, 0xd1, 0x3b, 0x19, 0x5a, 0x3b, 0x79, 0x51, 0x5c, 0x3d, 0x43, 0x6f, 0xf5, 0xdb, 0x3a, + 0xc7, 0xb6, 0xd3, 0x6b, 0x47, 0xba, 0x07, 0x08, 0xc5, 0x63, 0xdf, 0x29, 0xba, 0xc4, 0xe9, 0x1d, + 0x02, 0xbf, 0x74, 0x75, 0x8a, 0xa1, 0xf0, 0xcb, 0x42, 0x08, 0x86, 0xc4, 0x2f, 0x09, 0xd1, 0x3a, + 0x34, 0x9e, 0x5a, 0x61, 0x88, 0x0d, 0x52, 0xa6, 0x0c, 0x51, 0x81, 0x64, 0xfa, 0xc8, 0x16, 0xf3, + 0xe9, 0x3f, 0x8f, 0x7f, 0x44, 0xbb, 0x19, 0xdf, 0xed, 0xed, 0xe8, 0x66, 0xaf, 0xc7, 0xf7, 0xba, + 0x97, 0x4e, 0xa3, 0x96, 0xae, 0xc1, 0x90, 0x44, 0xda, 0x9d, 0x52, 0xad, 0xd6, 0xa3, 0x13, 0xdb, + 0xaf, 0xa0, 0x86, 0xd5, 0x2b, 0x78, 0x81, 0x63, 0x7b, 0x96, 0xde, 0xe6, 0xaa, 0x33, 0x81, 0xff, + 0xd7, 0x8b, 0xeb, 0x1d, 0xeb, 0x5b, 0xc2, 0x58, 0xdf, 0x34, 0xc7, 0x1d, 0x30, 0xd6, 0x37, 0x4b, + 0xd6, 0x5b, 0x3b, 0xcf, 0x27, 0x1c, 0xf6, 0x46, 0x31, 0xdc, 0x6d, 0x79, 0x98, 0xdb, 0xac, 0xe1, + 0xca, 0x91, 0xb1, 0x0f, 0x85, 0x13, 0x84, 0x1d, 0xea, 0xb9, 0xee, 0x2b, 0xa5, 0x60, 0xaa, 0x3b, + 0xcc, 0x3f, 0xcc, 0x7f, 0x2a, 0xcd, 0xbf, 0xf6, 0xa9, 0xee, 0x2b, 0x0c, 0x00, 0xdd, 0x4c, 0xf7, + 0x55, 0xc2, 0x30, 0xd1, 0x1d, 0x13, 0xdd, 0xcd, 0x19, 0x27, 0x36, 0x23, 0xc5, 0x63, 0xac, 0xf4, + 0xc7, 0x2e, 0xf6, 0x31, 0xd1, 0x7d, 0x69, 0x3f, 0x61, 0xa2, 0xbb, 0x19, 0x83, 0xc6, 0x68, 0xd8, + 0xb8, 0x0c, 0x1c, 0xbb, 0xa1, 0x63, 0x37, 0x78, 0xbc, 0x86, 0x8f, 0xc6, 0x00, 0x12, 0x19, 0x42, + 0x3a, 0x52, 0xcf, 0x48, 0xf2, 0x39, 0x48, 0xff, 0xaf, 0x83, 0x00, 0x98, 0xe8, 0x8e, 0x89, 0xee, + 0xa6, 0x30, 0x3c, 0x5c, 0x1f, 0x5c, 0x1f, 0x5c, 0x5f, 0xca, 0xb8, 0xc0, 0x54, 0x80, 0xdd, 0xe9, + 0x84, 0x42, 0x4a, 0xc6, 0xa9, 0xee, 0xb1, 0x40, 0x14, 0x0d, 0xa7, 0xcd, 0x78, 0x1a, 0x30, 0xa2, + 0xdc, 0xc6, 0xd4, 0x98, 0x51, 0x35, 0x66, 0x5c, 0xcd, 0x18, 0x59, 0x5a, 0x63, 0x4b, 0x6c, 0x74, + 0xf9, 0x78, 0xc7, 0x72, 0xe8, 0xa4, 0x6f, 0xf1, 0xd8, 0xc7, 0x7d, 0x74, 0x6d, 0xd1, 0xbd, 0x72, + 0xdf, 0xaa, 0x8c, 0x6b, 0xb7, 0xb4, 0x86, 0xe8, 0xf1, 0xaa, 0xbb, 0xc7, 0x2b, 0x7a, 0xb8, 0x66, + 0x69, 0xf3, 0xd5, 0xb1, 0xf9, 0x78, 0x36, 0x1f, 0x9a, 0xb8, 0xf2, 0x37, 0x71, 0x45, 0x77, 0xd6, + 0x94, 0xfd, 0x8e, 0xac, 0x8e, 0xc9, 0xa4, 0xcc, 0xff, 0x2d, 0x5b, 0x65, 0xc2, 0x3c, 0x20, 0x78, + 0x3e, 0x78, 0x3e, 0x78, 0x3e, 0x78, 0x7e, 0x46, 0x79, 0xfe, 0xc0, 0xf5, 0xd5, 0x11, 0x23, 0xc5, + 0xaf, 0x61, 0x2e, 0xe6, 0xe6, 0x3f, 0x0c, 0x73, 0x31, 0xe9, 0xe5, 0x62, 0x2e, 0x66, 0x6e, 0x55, + 0xa9, 0x52, 0xc3, 0x40, 0x4c, 0xd0, 0xa7, 0x1c, 0xd0, 0xa7, 0x50, 0xf4, 0x83, 0x50, 0x89, 0x8e, + 0xd5, 0xf5, 0xec, 0x47, 0xc6, 0x8c, 0xe9, 0x82, 0x5c, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, + 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, + 0xaa, 0x0c, 0x13, 0x2a, 0xe6, 0xb1, 0x81, 0x0b, 0x72, 0x41, 0xa8, 0x40, 0xa8, 0x40, 0xa8, 0x40, + 0xa8, 0x40, 0xa8, 0x30, 0x3f, 0x30, 0xc3, 0xac, 0x0a, 0xf3, 0x03, 0x73, 0xb4, 0x9a, 0x46, 0xb9, + 0xb2, 0x61, 0xa2, 0xb3, 0x44, 0x78, 0x30, 0x3f, 0x90, 0x59, 0xe7, 0x30, 0x3f, 0x10, 0xf3, 0x03, + 0x31, 0x3f, 0x30, 0x03, 0xdb, 0x16, 0xf3, 0x03, 0x29, 0x65, 0x62, 0x7e, 0x60, 0x3a, 0xee, 0x1f, + 0xf3, 0x1a, 0x56, 0xc9, 0x31, 0xdd, 0x50, 0x7a, 0x55, 0x6f, 0xcc, 0x55, 0x6f, 0x62, 0x56, 0x83, + 0xd6, 0x60, 0x11, 0x66, 0x35, 0xfc, 0x14, 0xb8, 0x62, 0x56, 0x03, 0xa7, 0x31, 0xca, 0x8c, 0x11, + 0x4a, 0xed, 0x9c, 0x86, 0xdb, 0xe8, 0x5e, 0x31, 0xa5, 0x21, 0x1d, 0x7a, 0x9d, 0x4a, 0x7d, 0xce, + 0x53, 0xdb, 0x6e, 0xbd, 0x7d, 0xb8, 0x48, 0xfa, 0x6e, 0xa1, 0x31, 0x37, 0x1a, 0x73, 0xef, 0xa3, + 0x31, 0xb7, 0x5e, 0x7b, 0xad, 0xbd, 0x31, 0x77, 0x47, 0x48, 0xe5, 0xfa, 0x91, 0x07, 0xb0, 0xa8, + 0x7a, 0x58, 0x4d, 0x77, 0xc5, 0x2a, 0x61, 0x34, 0x8d, 0xb9, 0x4b, 0x54, 0x8d, 0xb9, 0x4b, 0x68, + 0xcc, 0xcd, 0x60, 0x94, 0xd8, 0x8c, 0x13, 0x9b, 0x91, 0xe2, 0x31, 0x56, 0xd9, 0x60, 0xdf, 0x64, + 0x59, 0x78, 0x9e, 0xfe, 0x4f, 0x94, 0x59, 0x76, 0xda, 0xac, 0x3a, 0x43, 0xc3, 0x50, 0xa6, 0xfe, + 0x4d, 0x1c, 0x2d, 0x63, 0xd8, 0x5a, 0xc4, 0xe4, 0xa6, 0x1f, 0x53, 0x2b, 0x4b, 0x01, 0x66, 0x9e, + 0xcd, 0x50, 0xc7, 0x66, 0xd8, 0x6c, 0x33, 0xa0, 0x3f, 0x52, 0xae, 0xfa, 0x23, 0xb5, 0x32, 0x92, + 0xb7, 0x68, 0xa5, 0x35, 0x6c, 0xa8, 0x31, 0x92, 0x10, 0x95, 0x23, 0x5a, 0x04, 0x05, 0x51, 0xaf, + 0xfd, 0xff, 0x27, 0x12, 0xc0, 0xee, 0xc0, 0xee, 0xc0, 0xee, 0xc0, 0xee, 0xb4, 0x6a, 0x3c, 0x69, + 0x4d, 0x35, 0xd8, 0xdd, 0x4f, 0x9e, 0x3c, 0x79, 0x4d, 0x34, 0x43, 0x0d, 0x34, 0x53, 0xcd, 0x33, + 0xc3, 0x19, 0x03, 0xce, 0x9a, 0x66, 0xe6, 0x7a, 0x52, 0xf6, 0x9a, 0x65, 0x13, 0xa5, 0xa2, 0x0c, + 0xc5, 0x8d, 0xac, 0x35, 0xc8, 0xc6, 0x74, 0x84, 0xb3, 0xc6, 0xd8, 0x88, 0xa2, 0x64, 0xb4, 0xe0, + 0x10, 0xf1, 0xa0, 0x79, 0xf7, 0xc9, 0x53, 0xf3, 0xcb, 0x51, 0xe3, 0x4b, 0x5c, 0xd3, 0x0b, 0x5e, + 0xbf, 0x39, 0xaf, 0x0f, 0x06, 0x8a, 0x9a, 0xd8, 0x8f, 0x44, 0x80, 0xd9, 0x83, 0xd9, 0x83, 0xd9, + 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, + 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0x83, 0xd9, 0xeb, 0x66, 0xf6, 0x81, 0x63, 0x7b, 0x16, 0xcd, + 0xdc, 0xa1, 0x57, 0x6e, 0x3f, 0x23, 0x04, 0xec, 0x1e, 0xec, 0x1e, 0xec, 0x1e, 0xec, 0x5e, 0x3b, + 0xc7, 0xac, 0x57, 0x09, 0x99, 0x3d, 0x41, 0xfd, 0x23, 0x31, 0xa7, 0x24, 0x84, 0x26, 0x1c, 0x1c, + 0x92, 0xab, 0x29, 0x27, 0x53, 0xf7, 0x67, 0x4e, 0x06, 0x40, 0xd9, 0x10, 0x96, 0x83, 0x1a, 0x72, + 0x2f, 0x7d, 0xf9, 0xa8, 0x5a, 0xad, 0x37, 0xaa, 0xd5, 0x52, 0xe3, 0xb0, 0x51, 0x3a, 0xae, 0xd5, + 0xca, 0xf5, 0x72, 0x2d, 0x47, 0xda, 0x00, 0xb0, 0x9d, 0x1e, 0xb0, 0x2d, 0xfb, 0x96, 0xdb, 0x21, + 0xc4, 0xd9, 0xe3, 0xeb, 0x03, 0x62, 0x03, 0x62, 0x03, 0x62, 0x03, 0x62, 0x6b, 0x87, 0xd8, 0xe5, + 0x3a, 0x21, 0xc4, 0xae, 0x03, 0x62, 0x03, 0x62, 0x03, 0x62, 0xe7, 0x12, 0x62, 0xd7, 0x6b, 0xb5, + 0x43, 0x60, 0x6a, 0x60, 0x6a, 0x02, 0x4c, 0xdd, 0x0f, 0x03, 0x25, 0xa2, 0x85, 0xb7, 0x42, 0xf1, + 0xbf, 0x03, 0x21, 0x95, 0x20, 0x44, 0xd8, 0x2b, 0xa5, 0x01, 0x6f, 0x03, 0x6f, 0x03, 0x6f, 0x03, + 0x6f, 0x6b, 0xd5, 0x78, 0xb7, 0x23, 0x7c, 0xe5, 0xaa, 0xe7, 0x50, 0x74, 0x29, 0x2b, 0xd6, 0x08, + 0xbc, 0x72, 0xe1, 0x3c, 0xbe, 0xf5, 0x8f, 0xb6, 0x24, 0xdc, 0x57, 0x93, 0x07, 0x75, 0x73, 0x7b, + 0x7d, 0xd7, 0xfc, 0x74, 0x77, 0x7e, 0x7d, 0xd5, 0xbe, 0xfb, 0xeb, 0xa6, 0x49, 0xb5, 0xbb, 0x22, + 0x28, 0x23, 0x49, 0x4b, 0xc0, 0x98, 0x86, 0x6b, 0x7d, 0xb9, 0x8a, 0x1f, 0x59, 0xf3, 0xac, 0x90, + 0x45, 0x84, 0xcc, 0xf4, 0x98, 0x2e, 0xce, 0xaf, 0xfe, 0x6c, 0xcf, 0x28, 0xd7, 0x6d, 0xf3, 0xdf, + 0x5f, 0xce, 0x6f, 0xf1, 0xcc, 0x7e, 0xf9, 0xcc, 0xae, 0xae, 0xcf, 0x9a, 0x8b, 0x0f, 0xae, 0xf9, + 0x99, 0x56, 0xdb, 0x48, 0xae, 0xdc, 0x4a, 0xbb, 0x53, 0x4b, 0x25, 0x20, 0x97, 0xc2, 0xef, 0x88, + 0xd0, 0x52, 0xb2, 0x2f, 0x1c, 0x3a, 0x20, 0x3e, 0x27, 0x85, 0x06, 0x80, 0x97, 0x01, 0xc0, 0x01, + 0xc0, 0x01, 0xc0, 0xd3, 0x09, 0xc0, 0x75, 0xb7, 0x2b, 0x7d, 0x8d, 0x27, 0x08, 0xfb, 0xab, 0xd5, + 0xb1, 0x95, 0x6d, 0x85, 0x3a, 0x1b, 0x21, 0x27, 0x47, 0x14, 0xe6, 0xe5, 0x11, 0x69, 0x0c, 0x6d, + 0xbc, 0x8f, 0x7c, 0xb4, 0x29, 0xc7, 0x48, 0x53, 0xc6, 0x51, 0xa6, 0x5c, 0x23, 0x4c, 0xd9, 0x47, + 0x97, 0xb2, 0x8f, 0x2c, 0xe5, 0x1d, 0x55, 0x9a, 0xad, 0x31, 0x37, 0xe4, 0x23, 0x49, 0x5f, 0x63, + 0x15, 0x42, 0x88, 0xae, 0x17, 0xd8, 0x3c, 0xe7, 0xbc, 0x08, 0x47, 0x90, 0x16, 0x2e, 0x84, 0xff, + 0x18, 0x4d, 0x16, 0xc0, 0x41, 0xaf, 0xf4, 0xb8, 0x97, 0xd5, 0xb1, 0x98, 0xc2, 0xc9, 0x7e, 0x15, + 0xe7, 0xbc, 0xb6, 0x52, 0x91, 0x1d, 0x38, 0xe7, 0x55, 0xc5, 0x09, 0xaf, 0xb4, 0x5d, 0x3d, 0x2b, + 0x0d, 0x3b, 0x09, 0xb6, 0x60, 0x81, 0x87, 0x53, 0x80, 0x49, 0x80, 0x49, 0x80, 0x49, 0x80, 0x49, + 0x80, 0x49, 0x80, 0x49, 0x80, 0x49, 0x80, 0x49, 0x80, 0x49, 0x40, 0x45, 0xc0, 0x24, 0xf2, 0xc5, + 0x24, 0xa4, 0xfb, 0x7f, 0x0c, 0x4c, 0x22, 0x92, 0x02, 0x26, 0x01, 0x26, 0x01, 0x26, 0x01, 0x26, + 0x01, 0x26, 0x01, 0x26, 0x01, 0x26, 0x01, 0x26, 0x01, 0x26, 0x01, 0x15, 0x01, 0x93, 0x30, 0xc3, + 0x24, 0x52, 0x5d, 0x94, 0x45, 0x34, 0xf3, 0xff, 0x95, 0xf3, 0x18, 0x9e, 0xfd, 0x1f, 0x0d, 0xb1, + 0x2f, 0x12, 0x96, 0x9e, 0x8e, 0x7f, 0xa5, 0x0a, 0x07, 0x8e, 0xf2, 0x63, 0x1c, 0x73, 0x35, 0xbe, + 0xed, 0xf3, 0xf8, 0xae, 0xdb, 0x97, 0x7d, 0x4f, 0xb6, 0x3f, 0x4f, 0xee, 0xfa, 0x66, 0x72, 0xd3, + 0xed, 0x5b, 0xf9, 0xad, 0x7f, 0x27, 0xda, 0x9f, 0xc7, 0xb7, 0xda, 0xfe, 0x1c, 0xdd, 0xe4, 0x5d, + 0x74, 0x8f, 0x3b, 0x51, 0x74, 0x1c, 0xfd, 0x6c, 0x2b, 0x7e, 0x6a, 0x64, 0x45, 0xc7, 0x33, 0x52, + 0x70, 0xea, 0x0f, 0x45, 0xc7, 0xe6, 0x59, 0x2e, 0x8a, 0x8e, 0x19, 0xfd, 0x1b, 0xfd, 0xa9, 0x3f, + 0xa9, 0x42, 0xd7, 0x7f, 0xa4, 0x3c, 0xf0, 0x77, 0xb4, 0x0b, 0xde, 0x20, 0xda, 0xdc, 0xd3, 0xf9, + 0xc8, 0x74, 0xfe, 0x60, 0x5e, 0x0e, 0x3c, 0x02, 0x3c, 0x02, 0x3c, 0x02, 0x3c, 0x82, 0x56, 0x8d, + 0x77, 0xfb, 0x84, 0x73, 0xde, 0x31, 0xb8, 0xe4, 0xa7, 0x4f, 0xfe, 0x5b, 0x15, 0x33, 0xf6, 0xd7, + 0x14, 0x14, 0xcf, 0xd8, 0x6f, 0xbd, 0xdc, 0x97, 0xad, 0xe3, 0xd6, 0xf8, 0x65, 0x39, 0xfa, 0x6b, + 0xfc, 0xba, 0x72, 0x5f, 0xb2, 0xaa, 0x93, 0xd7, 0xb5, 0xfb, 0x92, 0x55, 0x6b, 0x1d, 0xfc, 0xfd, + 0xf7, 0x87, 0x83, 0x1f, 0x87, 0xc3, 0xf5, 0xbf, 0x98, 0xbd, 0xa9, 0xf2, 0xef, 0x33, 0xbc, 0x19, + 0xea, 0xd8, 0x0c, 0x9b, 0x6d, 0x06, 0xdb, 0xea, 0x9e, 0x5a, 0xbf, 0xb5, 0x7e, 0x94, 0xdf, 0x57, + 0x87, 0x27, 0x07, 0x3f, 0x1a, 0xc3, 0xc5, 0x37, 0x5f, 0x56, 0x7d, 0xac, 0xfc, 0xbe, 0x31, 0x3c, + 0x49, 0xf8, 0x97, 0xfa, 0xf0, 0xe4, 0x8d, 0xd7, 0xa8, 0x0d, 0xdf, 0x2d, 0x7d, 0x74, 0xf4, 0x7e, + 0x25, 0xe9, 0x0b, 0xd5, 0x84, 0x2f, 0x1c, 0x26, 0x7d, 0xe1, 0x30, 0xe1, 0x0b, 0x89, 0xb7, 0x54, + 0x49, 0xf8, 0x42, 0x6d, 0xf8, 0xb2, 0xf4, 0xf9, 0x77, 0xab, 0x3f, 0x5a, 0x1f, 0x1e, 0xbc, 0x24, + 0xfd, 0x5b, 0x63, 0xf8, 0x72, 0x72, 0x90, 0x41, 0xd3, 0x80, 0xee, 0x5f, 0x9b, 0x30, 0x3d, 0x65, + 0xab, 0x01, 0x25, 0xc3, 0x1b, 0x5f, 0x1f, 0xcc, 0x0e, 0xcc, 0x0e, 0xcc, 0x0e, 0xcc, 0x4e, 0xab, + 0xc6, 0xd3, 0x4e, 0x76, 0xa2, 0x9c, 0xe8, 0x44, 0x34, 0xc9, 0x29, 0x9d, 0x2e, 0x46, 0x0d, 0x7c, + 0x5f, 0x78, 0xa4, 0x7d, 0xdb, 0x5f, 0x45, 0xc0, 0xd1, 0xc0, 0xd1, 0xc0, 0xd1, 0xc0, 0xd1, 0x68, + 0xd5, 0x78, 0xb4, 0x6e, 0xe7, 0x8c, 0x98, 0xa0, 0x75, 0xfb, 0xfa, 0x72, 0xd0, 0xba, 0x3d, 0xb5, + 0x4b, 0x8f, 0xd6, 0xed, 0x08, 0xde, 0x50, 0x21, 0x6b, 0x0a, 0xcf, 0xf7, 0x0a, 0xaa, 0x47, 0x57, + 0x07, 0x9e, 0x06, 0x9e, 0x06, 0x9e, 0x06, 0x9e, 0xd6, 0xaa, 0xf1, 0x68, 0xcd, 0xfe, 0xc6, 0x07, + 0x75, 0xf1, 0xf9, 0xa6, 0x7d, 0x7b, 0x7d, 0x81, 0x9e, 0xec, 0xbf, 0x7c, 0x52, 0xcd, 0xdf, 0x6f, + 0x9b, 0x9f, 0x3f, 0xa3, 0xb5, 0x78, 0xf2, 0x13, 0xba, 0xbb, 0x3d, 0xbd, 0xfa, 0x7c, 0x7e, 0x87, + 0x47, 0x94, 0xfc, 0x88, 0xce, 0xaf, 0xa8, 0xb5, 0x08, 0x6d, 0xd6, 0x53, 0x70, 0x25, 0x4d, 0x8a, + 0x4a, 0x75, 0x5a, 0x27, 0x1d, 0xa7, 0x74, 0xf4, 0x6c, 0x82, 0xed, 0x17, 0x6c, 0xbb, 0x2b, 0x6c, + 0xb9, 0xd4, 0x23, 0x80, 0x1b, 0xcd, 0x85, 0x0d, 0x1c, 0xdb, 0xb3, 0x5c, 0xbf, 0x23, 0xb6, 0x45, + 0xb8, 0x85, 0x0b, 0x57, 0xaa, 0x53, 0xa5, 0xf4, 0x34, 0xdf, 0x2e, 0x5c, 0xba, 0x7e, 0xd3, 0x13, + 0x23, 0xc0, 0x3a, 0xf2, 0xe2, 0xfe, 0xc0, 0xf3, 0xde, 0xef, 0xe9, 0x88, 0xc2, 0xe8, 0xbf, 0xe8, + 0x75, 0xd8, 0x11, 0xa1, 0xe8, 0x7c, 0x7c, 0x8e, 0x2f, 0x69, 0x74, 0x59, 0x35, 0xef, 0x5c, 0xd3, + 0x3b, 0x56, 0x03, 0x3c, 0xd4, 0x72, 0x68, 0x6e, 0x3b, 0x9b, 0xb1, 0xf9, 0x4e, 0xdf, 0xec, 0x9b, + 0x1b, 0x2a, 0x91, 0x2e, 0xe5, 0x31, 0xa5, 0x34, 0x9b, 0x2d, 0xd2, 0xfa, 0x8f, 0x78, 0xbd, 0x6f, + 0xac, 0xb9, 0x18, 0xdb, 0x2e, 0x02, 0xf3, 0xc3, 0xdf, 0x60, 0x83, 0x6e, 0xb5, 0x21, 0xd7, 0x5b, + 0xe3, 0xb7, 0xaf, 0xd4, 0x1a, 0xab, 0x54, 0x90, 0xe2, 0x71, 0xe4, 0x42, 0xac, 0x30, 0x18, 0x28, + 0xd7, 0x7f, 0x5c, 0x7b, 0x99, 0x66, 0x0e, 0x8d, 0xce, 0x5f, 0x68, 0x4d, 0x4d, 0xd9, 0x6c, 0x18, + 0xcd, 0xc6, 0x21, 0xc5, 0x6d, 0x42, 0x86, 0xb3, 0x21, 0x41, 0x19, 0x6e, 0xa2, 0x34, 0x5b, 0x06, + 0xfc, 0xb4, 0x05, 0xf4, 0xb4, 0x05, 0xec, 0x16, 0x03, 0x72, 0x32, 0x2c, 0xa4, 0xcc, 0x12, 0x6d, + 0x3a, 0x48, 0xa5, 0x60, 0x3f, 0x3e, 0x86, 0xe2, 0xd1, 0x56, 0xc2, 0x92, 0x6e, 0xc7, 0x72, 0x82, + 0x81, 0xaf, 0x44, 0xb8, 0x79, 0x29, 0xe6, 0x54, 0x79, 0x12, 0xae, 0xbb, 0xe1, 0xf3, 0xdf, 0x6e, + 0x96, 0xd3, 0xd6, 0x91, 0x79, 0x1d, 0x11, 0xf8, 0xad, 0xb7, 0x95, 0xae, 0xed, 0xa5, 0x7d, 0x9b, + 0x69, 0xdf, 0x6e, 0x3a, 0xb7, 0x9d, 0x19, 0x74, 0xb6, 0xed, 0x5c, 0xa3, 0xd5, 0xdb, 0x67, 0xfb, + 0x25, 0xff, 0xe9, 0xee, 0xdc, 0x76, 0xf9, 0xf5, 0x0c, 0x5c, 0x7b, 0xdd, 0xac, 0x95, 0x2d, 0x2f, + 0xa4, 0x31, 0x6d, 0xa6, 0x6d, 0xf3, 0xea, 0xde, 0xc4, 0x64, 0x9b, 0x99, 0x6c, 0x53, 0x53, 0x6c, + 0xee, 0x74, 0x84, 0x69, 0x74, 0x0d, 0x33, 0x2b, 0x8c, 0x80, 0xbc, 0xe5, 0xd9, 0x0f, 0xc2, 0xd3, + 0xa7, 0x1f, 0x13, 0x05, 0x9e, 0xb9, 0xb6, 0xa6, 0x75, 0xd4, 0x9b, 0x4d, 0xd7, 0x9e, 0x45, 0xa7, + 0xc8, 0x9e, 0x6b, 0x37, 0x07, 0x54, 0x66, 0x81, 0xdc, 0x3c, 0x90, 0x9b, 0x09, 0x4a, 0x73, 0xa1, + 0x2f, 0x3e, 0xbc, 0xaf, 0x31, 0xa0, 0xaf, 0x3d, 0xf3, 0x3d, 0xd5, 0x56, 0x4f, 0xd8, 0x5d, 0xbd, + 0xd9, 0xee, 0xa9, 0xcf, 0x6f, 0x68, 0xbc, 0xe6, 0x4d, 0x1c, 0x0f, 0xf9, 0xf0, 0x21, 0x6e, 0xd5, + 0x35, 0x63, 0xb3, 0xd2, 0x92, 0x0f, 0xd0, 0x12, 0xeb, 0xd4, 0x39, 0x45, 0x66, 0xee, 0xac, 0x9b, + 0xd0, 0x6c, 0xdb, 0xcb, 0xba, 0x6d, 0x7b, 0x05, 0xb6, 0x1d, 0xb6, 0x7d, 0x07, 0x6d, 0xbb, 0xee, + 0x79, 0xb7, 0x05, 0xd7, 0xb7, 0x02, 0x47, 0x09, 0x45, 0x78, 0x78, 0xf6, 0x55, 0x04, 0xca, 0x30, + 0x39, 0xca, 0x30, 0xb5, 0x1a, 0x1d, 0x6a, 0xe3, 0xc3, 0x66, 0x84, 0xd8, 0x8c, 0x11, 0x87, 0x51, + 0xd2, 0x6b, 0x9c, 0x34, 0x1b, 0x29, 0x3a, 0x20, 0xba, 0xa4, 0xed, 0x71, 0xe0, 0xa9, 0x5e, 0x25, + 0x2c, 0xc0, 0x3c, 0xc2, 0xa9, 0xa6, 0xd7, 0x1b, 0xc7, 0xa9, 0xa6, 0xf5, 0xe5, 0xe0, 0x54, 0x53, + 0x6a, 0x97, 0xbe, 0x7c, 0x54, 0xad, 0xd6, 0x1b, 0xd5, 0x6a, 0xa9, 0x71, 0xd8, 0x28, 0x1d, 0xd7, + 0x6a, 0xe5, 0x7a, 0x19, 0x87, 0x9c, 0xd8, 0xaf, 0xba, 0x0b, 0x87, 0x9c, 0x5c, 0xdf, 0xea, 0x7f, + 0x25, 0x46, 0xd9, 0x91, 0x00, 0x60, 0x6c, 0x60, 0x6c, 0x60, 0x6c, 0x60, 0x6c, 0x60, 0x6c, 0x60, + 0x6c, 0x60, 0x6c, 0x60, 0x6c, 0x60, 0x6c, 0x60, 0xec, 0x1d, 0xc1, 0xd8, 0x04, 0x65, 0x0f, 0x4b, + 0xde, 0x50, 0x7b, 0xf9, 0x03, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0x90, 0x36, 0xa5, 0x6d, 0xd9, + 0x47, 0x8f, 0xff, 0x9f, 0x3f, 0xf9, 0x81, 0xeb, 0xf3, 0x0c, 0x88, 0x6d, 0x10, 0x8a, 0xa0, 0x25, + 0x3c, 0xf4, 0xab, 0xc1, 0x4a, 0x80, 0x98, 0xd1, 0xf0, 0x32, 0x2a, 0xae, 0x63, 0x40, 0x6c, 0xda, + 0x99, 0x92, 0x71, 0x1d, 0x29, 0x55, 0x8f, 0x6a, 0x8d, 0x1a, 0xc6, 0xc4, 0xa6, 0xed, 0xea, 0x98, + 0x0a, 0x32, 0xef, 0x3e, 0x69, 0x5b, 0x58, 0x2f, 0x21, 0x18, 0xc2, 0xc1, 0xc9, 0x44, 0x2d, 0xad, + 0xc1, 0xeb, 0xb7, 0x59, 0x93, 0x60, 0xa0, 0xc8, 0x8b, 0xd4, 0x66, 0x64, 0x80, 0xd7, 0x83, 0xd7, + 0x83, 0xd7, 0x83, 0xd7, 0x6b, 0xd3, 0x76, 0x64, 0xd0, 0x98, 0x71, 0x09, 0x32, 0x68, 0xa9, 0x86, + 0xff, 0xc8, 0xa0, 0xad, 0xc9, 0x03, 0x91, 0x41, 0x03, 0xd2, 0x66, 0x43, 0xda, 0xb4, 0x65, 0x6a, + 0x53, 0x09, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, + 0x40, 0xd9, 0x40, 0xd9, 0x40, 0xd9, 0x69, 0x46, 0xd9, 0xe8, 0xd9, 0xad, 0xaf, 0x9f, 0xe8, 0x42, + 0x2f, 0xcc, 0xe2, 0xea, 0x5e, 0x7f, 0xab, 0xdf, 0x46, 0x5f, 0xef, 0x39, 0x9c, 0xac, 0xb5, 0x6e, + 0x08, 0x6d, 0xbd, 0xd1, 0xd6, 0xdb, 0xc8, 0xa6, 0x36, 0xd7, 0xfa, 0xfb, 0xf3, 0xf8, 0xae, 0x6f, + 0xc7, 0x37, 0xdd, 0x3e, 0x9d, 0xdc, 0xdd, 0x67, 0xb7, 0xf3, 0x29, 0xbe, 0x37, 0xb4, 0x03, 0xcf, + 0xaa, 0xb2, 0xb1, 0x35, 0x09, 0xdf, 0xa0, 0xc7, 0xb1, 0x3b, 0xba, 0xc3, 0xae, 0xed, 0x08, 0x0d, + 0xbd, 0x72, 0x67, 0xae, 0x85, 0xfe, 0xb8, 0xe8, 0x8f, 0x6b, 0x24, 0x2c, 0x95, 0xb1, 0xfe, 0xb8, + 0xd3, 0x2d, 0xa3, 0xaf, 0x27, 0xee, 0xeb, 0x25, 0x53, 0xd6, 0x07, 0xb7, 0x84, 0x3e, 0xb8, 0xe6, + 0x36, 0x2d, 0xd9, 0xe6, 0xa5, 0xd8, 0xc4, 0xe9, 0xa0, 0x35, 0xda, 0xfa, 0xe0, 0x3a, 0x93, 0x1d, + 0xa0, 0xb9, 0x45, 0x62, 0x7c, 0xdd, 0x94, 0xf7, 0x48, 0x44, 0xff, 0x5b, 0x9d, 0xc1, 0x48, 0xf4, + 0x48, 0xcc, 0x4a, 0x70, 0x8c, 0xa0, 0x47, 0x62, 0xec, 0xd8, 0x2d, 0xb7, 0x43, 0xd9, 0xc0, 0x65, + 0x46, 0x0a, 0xb2, 0xe3, 0xc8, 0x8e, 0x9b, 0x32, 0x45, 0x6c, 0x26, 0x89, 0xc3, 0x34, 0xe9, 0x35, + 0x51, 0x9a, 0x4d, 0xd5, 0xf4, 0x01, 0xd0, 0x67, 0xc7, 0xa5, 0x0a, 0xd7, 0x9f, 0x3a, 0xb5, 0x16, + 0x7c, 0x39, 0x42, 0xe6, 0x86, 0x2f, 0xce, 0x96, 0x96, 0xb8, 0xdb, 0x6b, 0xe4, 0xe9, 0xf5, 0x65, + 0x31, 0x86, 0xc7, 0x39, 0x6a, 0xb5, 0x4e, 0x82, 0x00, 0x28, 0x3d, 0x3f, 0x86, 0x6a, 0x80, 0x54, + 0x80, 0x54, 0x60, 0xa8, 0x06, 0xc9, 0x50, 0x8d, 0xb1, 0x7d, 0x2f, 0xce, 0x99, 0xad, 0x5c, 0x1a, + 0xfb, 0xd1, 0xb2, 0x10, 0x5a, 0x7b, 0x7d, 0xab, 0xbe, 0xeb, 0x31, 0x24, 0xb7, 0x0b, 0x73, 0x6f, + 0xc0, 0xdc, 0xbb, 0x5d, 0xc4, 0x90, 0xde, 0x78, 0x41, 0xcd, 0xa1, 0xe8, 0xa5, 0x4d, 0xa0, 0x35, + 0x24, 0x4d, 0x64, 0x56, 0x72, 0x13, 0x37, 0xd2, 0x6a, 0x6e, 0x10, 0x37, 0x4a, 0xa3, 0x39, 0xca, + 0x46, 0xdc, 0x48, 0xb7, 0x99, 0x5a, 0xc6, 0x40, 0x74, 0xea, 0xa8, 0x3b, 0x6d, 0xce, 0x44, 0x85, + 0xd9, 0x8c, 0x19, 0x87, 0x51, 0x63, 0x33, 0x6e, 0x5c, 0x46, 0x8e, 0xdd, 0xd8, 0xb1, 0x1b, 0x3d, + 0x4e, 0xe3, 0x47, 0x63, 0x04, 0x89, 0x8c, 0x21, 0x1d, 0x55, 0x67, 0xa4, 0xee, 0x1c, 0x54, 0x3e, + 0x91, 0xda, 0x17, 0x23, 0x35, 0x3a, 0x99, 0x89, 0xe9, 0x2e, 0xbc, 0x11, 0xff, 0x77, 0x54, 0x63, + 0x9b, 0x91, 0xf3, 0x24, 0x04, 0x4a, 0x56, 0x90, 0x83, 0x07, 0x46, 0xff, 0x38, 0x27, 0x0d, 0x2e, + 0x12, 0x2e, 0x12, 0x2e, 0x12, 0x2e, 0x12, 0x2e, 0x32, 0xa5, 0x2e, 0xf2, 0xfe, 0xd5, 0x45, 0xfe, + 0x97, 0x33, 0x08, 0x43, 0xe1, 0xab, 0x77, 0x07, 0xc5, 0x0f, 0x1f, 0x5e, 0xa3, 0xe5, 0xad, 0xf8, + 0x2b, 0xb3, 0x76, 0x5d, 0xae, 0x78, 0x6f, 0x7a, 0xe5, 0x8e, 0xf8, 0x9e, 0x19, 0x6f, 0x9b, 0x6a, + 0xb6, 0xdc, 0xfc, 0x1e, 0x9d, 0x19, 0xd3, 0x7f, 0xd0, 0x9e, 0x3e, 0x60, 0x13, 0x38, 0x96, 0xf8, + 0xae, 0x4e, 0x94, 0xf0, 0x44, 0x4f, 0xa8, 0xf0, 0xd9, 0x0a, 0x7c, 0xcb, 0x79, 0x8a, 0x3a, 0x07, + 0xb0, 0x04, 0x71, 0xba, 0xb6, 0x27, 0x39, 0xa2, 0x38, 0x69, 0x0f, 0xe0, 0xb4, 0x74, 0x07, 0xd4, + 0x69, 0xca, 0x41, 0x5e, 0xa1, 0x6a, 0x8a, 0xca, 0x42, 0xe6, 0x12, 0x5f, 0x5a, 0x8b, 0x44, 0xf4, + 0xaf, 0xb5, 0xce, 0xa6, 0x4a, 0x7a, 0xe7, 0xf4, 0x2f, 0xf3, 0x03, 0x8d, 0xf3, 0xfa, 0x97, 0x7c, + 0x2a, 0x55, 0xe0, 0xbf, 0x82, 0xc0, 0x3f, 0x1b, 0xe0, 0x47, 0xe0, 0x3f, 0x7f, 0x50, 0x06, 0x81, + 0x7f, 0x44, 0x35, 0x10, 0xd5, 0x40, 0x54, 0x03, 0x51, 0x0d, 0x44, 0x35, 0x18, 0xa2, 0x1a, 0x08, + 0xfc, 0xef, 0x23, 0xf0, 0x0f, 0x17, 0x09, 0x17, 0x09, 0x17, 0x09, 0x17, 0x09, 0x17, 0x89, 0xc0, + 0x7f, 0xb6, 0xd8, 0xf2, 0xee, 0x46, 0x59, 0x35, 0x36, 0x4b, 0xd4, 0xbf, 0xd4, 0x38, 0x99, 0x69, + 0x54, 0x39, 0x0a, 0x5a, 0x63, 0xdc, 0x1a, 0x9a, 0xef, 0x9d, 0x4f, 0xee, 0xee, 0xf5, 0xd5, 0xad, + 0xe8, 0xe6, 0xe9, 0x68, 0xd1, 0x5c, 0x73, 0x3a, 0xed, 0x27, 0x8b, 0xe6, 0xae, 0x8e, 0x83, 0x45, + 0x3a, 0x00, 0x3f, 0xce, 0x91, 0xee, 0xe3, 0x1c, 0xe9, 0x7e, 0x9a, 0x0f, 0x16, 0xcd, 0x76, 0x51, + 0xa5, 0xcb, 0x31, 0x6a, 0x6d, 0xd5, 0x4a, 0x68, 0x60, 0x96, 0x0d, 0x4d, 0x05, 0xad, 0x69, 0xd8, + 0x22, 0x0c, 0x68, 0x4d, 0x93, 0x3f, 0xee, 0x44, 0x96, 0x69, 0xec, 0x06, 0xe1, 0x3f, 0x76, 0xd8, + 0x19, 0xa1, 0x58, 0xc7, 0xb3, 0xa5, 0x14, 0x92, 0x3e, 0xa4, 0xba, 0x42, 0x26, 0x6d, 0x60, 0xb5, + 0x8c, 0xc0, 0xaa, 0x39, 0x73, 0xc7, 0x65, 0xf6, 0xd8, 0xcd, 0x1f, 0xbb, 0x19, 0xe4, 0x34, 0x87, + 0x74, 0x41, 0xaa, 0x7d, 0xc2, 0xc0, 0x2a, 0x95, 0x99, 0x4c, 0x34, 0x97, 0xf4, 0xda, 0x9c, 0x64, + 0x34, 0xa9, 0x95, 0x9a, 0xd6, 0x74, 0x92, 0x23, 0x44, 0x13, 0xa6, 0x94, 0xdd, 0xa4, 0x72, 0x9b, + 0x56, 0x63, 0x26, 0xd6, 0x98, 0xa9, 0x35, 0x61, 0x72, 0x69, 0x4d, 0x2f, 0xb1, 0x09, 0x66, 0x33, + 0xc5, 0x53, 0x41, 0xe2, 0x7b, 0x9f, 0x4f, 0xf1, 0x27, 0x3b, 0x7b, 0x24, 0x94, 0x49, 0xf3, 0x78, + 0x06, 0xb0, 0xb1, 0x61, 0x5a, 0x93, 0x86, 0xd9, 0x98, 0x81, 0x36, 0x65, 0xa8, 0x8d, 0x1b, 0x6c, + 0xe3, 0x86, 0xdb, 0xa4, 0x01, 0xe7, 0x31, 0xe4, 0x4c, 0x06, 0x7d, 0xfa, 0x20, 0xc9, 0x8b, 0x17, + 0x12, 0x77, 0x2b, 0x7d, 0x31, 0x43, 0x22, 0x0a, 0x6e, 0x30, 0xca, 0x9c, 0xe9, 0xf1, 0x17, 0x25, + 0x8e, 0x8b, 0x23, 0x67, 0xb3, 0x97, 0x0f, 0x45, 0x65, 0x50, 0x52, 0xa2, 0x93, 0x3e, 0xbf, 0xd4, + 0x4e, 0x8a, 0x13, 0x40, 0x86, 0xd9, 0x19, 0x3b, 0x4b, 0x03, 0x28, 0x00, 0x28, 0x00, 0x28, 0xc8, + 0x20, 0x28, 0xe0, 0x62, 0x7b, 0x46, 0x58, 0x9f, 0x41, 0xf6, 0x67, 0x88, 0x05, 0x1a, 0x63, 0x83, + 0x26, 0x1d, 0x80, 0x71, 0x47, 0x60, 0xda, 0x21, 0xa4, 0xc6, 0x31, 0xa4, 0xc6, 0x41, 0xa4, 0xc1, + 0x51, 0xf0, 0x3a, 0x0c, 0x66, 0xc7, 0x61, 0x8e, 0x55, 0x2e, 0xed, 0xf6, 0x81, 0xeb, 0xab, 0x23, + 0x13, 0xbb, 0x3d, 0x36, 0xed, 0x35, 0x03, 0xa2, 0x6f, 0xa3, 0xde, 0x25, 0x14, 0xcd, 0x58, 0xde, + 0xf2, 0xc7, 0x8c, 0x75, 0xdb, 0x8f, 0x87, 0xa2, 0x1b, 0x33, 0xaf, 0x86, 0x7d, 0xfa, 0xd2, 0x6d, + 0xfc, 0xb7, 0xed, 0x0d, 0x44, 0x0a, 0xee, 0xe3, 0xb7, 0xd0, 0x76, 0x94, 0x1b, 0xf8, 0x67, 0xee, + 0xa3, 0x1b, 0xb5, 0x08, 0x2a, 0x19, 0xbb, 0x9f, 0xe1, 0x7b, 0x83, 0xaa, 0x69, 0x7f, 0x87, 0x6a, + 0x2e, 0xa8, 0x66, 0x03, 0xaa, 0x69, 0x06, 0x06, 0x98, 0x93, 0xda, 0xda, 0xcb, 0xe7, 0xef, 0x63, + 0x34, 0x2d, 0x05, 0xd7, 0xb7, 0x02, 0x47, 0x09, 0x25, 0xcd, 0x51, 0xe5, 0xd7, 0x5b, 0x00, 0x61, + 0x06, 0x61, 0x06, 0x61, 0x06, 0x61, 0x06, 0x61, 0xce, 0x09, 0x61, 0x8e, 0x8f, 0xa2, 0xd4, 0xab, + 0x06, 0x49, 0xf3, 0x11, 0x48, 0x33, 0x48, 0x33, 0x48, 0x33, 0x48, 0x33, 0x48, 0xf3, 0x92, 0x6a, + 0x96, 0x8f, 0xaa, 0xd5, 0x7a, 0xa3, 0x5a, 0x2d, 0x35, 0x0e, 0x1b, 0xa5, 0xe3, 0x5a, 0xad, 0x5c, + 0x2f, 0xd7, 0xa0, 0xad, 0xe0, 0xd1, 0xe0, 0xd1, 0x1b, 0xf0, 0xe8, 0xfe, 0x57, 0xc3, 0x2c, 0x3a, + 0xba, 0x01, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, + 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0x68, 0x70, 0xe8, 0x94, 0x73, + 0xe8, 0x60, 0xa0, 0x8c, 0x27, 0xa3, 0x67, 0xee, 0x01, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, + 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, + 0x1a, 0x4c, 0x1a, 0x4c, 0x3a, 0x03, 0x4c, 0xda, 0x6c, 0x3a, 0x7a, 0x7a, 0x07, 0x60, 0xd1, 0x60, + 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, + 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0x60, 0xd1, 0xa9, 0x95, 0xc4, 0xd5, 0x13, 0x8d, 0x78, + 0xde, 0x65, 0xa2, 0xdc, 0x34, 0x8d, 0x3a, 0x9c, 0x1d, 0x86, 0x37, 0xfb, 0x1f, 0xc5, 0xe5, 0x19, + 0x30, 0x4b, 0x6f, 0x51, 0x8c, 0xcd, 0x34, 0xa7, 0x79, 0xd9, 0xee, 0xe6, 0xfe, 0xa7, 0x78, 0xe6, + 0x69, 0x7c, 0x57, 0xb8, 0x70, 0xa5, 0x3a, 0x55, 0x8a, 0xa9, 0x79, 0xfc, 0xa5, 0xeb, 0x37, 0x3d, + 0x31, 0xd2, 0xe3, 0x91, 0xe7, 0xf2, 0x07, 0x9e, 0xc7, 0xd0, 0xa0, 0xf6, 0xd2, 0xfe, 0xce, 0x2f, + 0xf4, 0x3a, 0xec, 0x88, 0x50, 0x74, 0xfe, 0x7f, 0xf6, 0xfe, 0xb6, 0xb7, 0x8d, 0x24, 0xd9, 0xda, + 0x85, 0xbf, 0xeb, 0x57, 0x08, 0xc4, 0xfe, 0x60, 0x03, 0x2e, 0x5b, 0xa2, 0x5e, 0xdc, 0x36, 0xf0, + 0xe0, 0x81, 0xdc, 0x2d, 0xfb, 0xd6, 0x19, 0x59, 0x2d, 0x58, 0x6e, 0x6f, 0x0c, 0x3c, 0xda, 0x44, + 0x99, 0x2c, 0xca, 0x85, 0x9b, 0xa2, 0xb8, 0xc9, 0xa2, 0xda, 0x3e, 0x6d, 0xfd, 0xf7, 0x03, 0x91, + 0xc5, 0x92, 0x28, 0x8a, 0x36, 0xc9, 0xca, 0x88, 0xc8, 0x2c, 0x5e, 0xc2, 0x60, 0xa6, 0xc7, 0x6d, + 0x55, 0xd6, 0x4b, 0x64, 0x44, 0xac, 0x15, 0x11, 0x2b, 0xdf, 0x7c, 0xcf, 0x97, 0x0c, 0xda, 0x1c, + 0x95, 0x5d, 0x6b, 0x65, 0x5c, 0x6a, 0x4d, 0x45, 0x7e, 0xd9, 0xe9, 0x21, 0xb4, 0x67, 0x69, 0xeb, + 0xf7, 0xf1, 0x03, 0x36, 0xde, 0x16, 0x4f, 0xf3, 0xfb, 0xe8, 0x61, 0x36, 0xc2, 0xf4, 0xd7, 0x61, + 0x1d, 0xa9, 0xa4, 0xb4, 0xd5, 0x42, 0xdd, 0x62, 0xc1, 0x1c, 0x0d, 0x2f, 0x70, 0x8e, 0xe5, 0xed, + 0x4b, 0x8e, 0x3a, 0xf1, 0x97, 0xa4, 0x23, 0x7f, 0x66, 0xe0, 0xbd, 0xb5, 0x64, 0xcf, 0x0a, 0xdc, + 0xe2, 0xac, 0xc0, 0x5f, 0x7f, 0x0d, 0xce, 0x0a, 0x5c, 0x75, 0x41, 0xce, 0x0a, 0xf4, 0x25, 0xb0, + 0x89, 0x17, 0x5b, 0x14, 0xcf, 0x2d, 0xd1, 0x38, 0xa7, 0x64, 0xf6, 0x5c, 0x92, 0x7b, 0x3e, 0x79, + 0x8d, 0xa3, 0xa0, 0xec, 0x71, 0x23, 0x2a, 0xc7, 0x8b, 0xa8, 0x9d, 0x93, 0x5b, 0x27, 0xf6, 0x11, + 0xfb, 0x88, 0x7d, 0xe6, 0xb1, 0x4f, 0xfc, 0x9c, 0x5c, 0x3d, 0xe5, 0x51, 0x75, 0xa5, 0x51, 0xa5, + 0x92, 0xa0, 0x5a, 0xd7, 0x19, 0x27, 0xe3, 0x86, 0xec, 0x54, 0xcd, 0x9c, 0xab, 0x85, 0x93, 0x95, + 0xe7, 0xe6, 0x36, 0x15, 0xc8, 0x6b, 0xb5, 0x2e, 0x2f, 0x93, 0xae, 0x2e, 0xc5, 0x2e, 0x2e, 0xe5, + 0xae, 0x2d, 0xc5, 0x12, 0xae, 0x45, 0x57, 0x96, 0x55, 0x77, 0xb5, 0x51, 0xd7, 0x95, 0x65, 0xdf, + 0x8a, 0xe6, 0xb4, 0x80, 0x45, 0x17, 0x95, 0xb5, 0x29, 0xd9, 0x77, 0x49, 0x99, 0x5a, 0x57, 0x45, + 0x3a, 0x26, 0xce, 0x43, 0xad, 0xef, 0x3d, 0x13, 0xc5, 0x55, 0x2a, 0xa3, 0x3f, 0xca, 0xca, 0x93, + 0x60, 0x2a, 0x30, 0x15, 0x98, 0x0a, 0x4c, 0x05, 0xa6, 0x02, 0x53, 0x81, 0xa9, 0xc0, 0x54, 0x60, + 0x2a, 0x30, 0x15, 0x98, 0x0a, 0x4c, 0xa5, 0x82, 0xa9, 0x14, 0xda, 0xd8, 0x66, 0xb2, 0x07, 0xf1, + 0x76, 0x36, 0x90, 0x15, 0xc8, 0x0a, 0x64, 0x05, 0xb2, 0x0a, 0x10, 0x59, 0xa9, 0xf9, 0xc6, 0xfb, + 0xfe, 0x71, 0xfb, 0x95, 0xc2, 0x5a, 0xf9, 0xbb, 0xac, 0x1c, 0xb4, 0xba, 0x7f, 0x84, 0xfe, 0x4e, + 0x5d, 0x51, 0x3a, 0x62, 0xf2, 0xf5, 0x14, 0xcf, 0x87, 0x36, 0x92, 0x8a, 0x30, 0xd0, 0x04, 0xb1, + 0x94, 0x86, 0x30, 0x9e, 0xbb, 0xbf, 0x43, 0x3d, 0xfb, 0x46, 0x37, 0xe0, 0xc1, 0x54, 0xbd, 0x81, + 0xf6, 0x83, 0xa9, 0xe6, 0x83, 0x37, 0x36, 0xb7, 0xb5, 0xfb, 0xdb, 0xde, 0xcb, 0xbd, 0x35, 0x36, + 0xbc, 0x8a, 0xca, 0x1b, 0x9c, 0x57, 0x49, 0xde, 0xc0, 0x20, 0xbd, 0x48, 0xba, 0xc3, 0xcb, 0xa4, + 0x3f, 0x9e, 0x45, 0xd4, 0xcf, 0x31, 0xb6, 0x77, 0x15, 0xd7, 0x3c, 0xec, 0x0e, 0x2f, 0x6f, 0x1d, + 0x21, 0xbc, 0x93, 0xed, 0xfd, 0x4b, 0xf2, 0x4e, 0x8a, 0x27, 0x62, 0xe8, 0x9f, 0x80, 0x01, 0xef, + 0xe4, 0xe2, 0x6b, 0xc1, 0x3b, 0x39, 0x5e, 0x18, 0xde, 0x29, 0x90, 0x34, 0x83, 0x8a, 0x7e, 0xa0, + 0x84, 0x05, 0x15, 0x7d, 0x51, 0x70, 0x48, 0x45, 0xbf, 0x32, 0xbc, 0x03, 0x15, 0x7d, 0x2a, 0xfa, + 0x20, 0x2b, 0x29, 0x64, 0xa5, 0xdb, 0x26, 0xad, 0x74, 0x22, 0x02, 0xa8, 0x0a, 0x54, 0x05, 0xaa, + 0x02, 0x55, 0x81, 0xaa, 0x40, 0x55, 0xa0, 0x2a, 0x50, 0x15, 0xa8, 0x0a, 0x54, 0x05, 0xaa, 0x02, + 0x55, 0x09, 0x5f, 0x19, 0x6d, 0x59, 0x05, 0x6d, 0x59, 0x41, 0xb5, 0x7b, 0x01, 0x21, 0xbd, 0x0d, + 0x8f, 0xed, 0x6b, 0xa2, 0x56, 0x2f, 0xd6, 0x48, 0x2a, 0x2b, 0x52, 0xaf, 0x22, 0x4a, 0xaf, 0x22, + 0x42, 0x2f, 0x2b, 0x3a, 0xef, 0xda, 0x6a, 0x84, 0xbd, 0x51, 0x10, 0x5e, 0xa8, 0x26, 0x22, 0x90, + 0x29, 0x24, 0x08, 0xef, 0xd6, 0x59, 0xba, 0x73, 0x69, 0x6e, 0xae, 0xe4, 0xc8, 0xbc, 0xa5, 0xcc, + 0xda, 0x5b, 0x73, 0x76, 0x63, 0x15, 0xe5, 0xbf, 0xa1, 0x83, 0xef, 0xe7, 0x58, 0x5b, 0x56, 0x44, + 0x4b, 0xd6, 0xb1, 0x76, 0xac, 0x73, 0xad, 0x58, 0x09, 0x8a, 0x59, 0x8c, 0x4a, 0x96, 0xa2, 0x8c, + 0xc5, 0xa9, 0x61, 0x71, 0x0a, 0x58, 0x92, 0xea, 0xf5, 0xcb, 0x5f, 0xbb, 0xd6, 0x66, 0x15, 0xd4, + 0x62, 0x15, 0xd7, 0x5e, 0x15, 0x22, 0x73, 0xc4, 0xea, 0x5b, 0x92, 0xf5, 0x2c, 0xf1, 0xfa, 0x95, + 0x74, 0xbd, 0x4a, 0xad, 0x3e, 0xa5, 0x56, 0x8f, 0xd2, 0xa8, 0x3f, 0xf9, 0x8d, 0xb4, 0xc5, 0xea, + 0x49, 0x2a, 0xf5, 0x23, 0xc1, 0x7a, 0x91, 0x70, 0x7d, 0x48, 0x90, 0x2c, 0xd3, 0xa8, 0xff, 0x68, + 0xf5, 0x31, 0x28, 0xd5, 0x77, 0x34, 0x19, 0x77, 0xc9, 0xbe, 0x19, 0x8d, 0x7a, 0x8d, 0xf6, 0xa7, + 0xd7, 0xaf, 0xc7, 0xa8, 0x5a, 0x43, 0x20, 0x7c, 0xf1, 0xb9, 0xaf, 0x54, 0xcd, 0x33, 0xa7, 0x79, + 0xb6, 0x48, 0xd3, 0x99, 0xb0, 0x16, 0x27, 0x39, 0x36, 0x39, 0x36, 0x39, 0x36, 0x39, 0x36, 0x39, + 0x36, 0x39, 0x36, 0x39, 0x36, 0x39, 0x36, 0x39, 0x36, 0x39, 0xb6, 0xc7, 0x39, 0x76, 0x5e, 0xf2, + 0x8b, 0xd2, 0x96, 0x64, 0xa2, 0x7d, 0x6f, 0x15, 0xb2, 0x6d, 0xb2, 0x6d, 0xb2, 0x6d, 0xb2, 0x6d, + 0x67, 0xd6, 0x3e, 0xc8, 0xfa, 0x69, 0xf7, 0x42, 0x30, 0xd5, 0xde, 0xfe, 0x6d, 0x0d, 0x22, 0x81, + 0xa0, 0x7a, 0x8a, 0xbc, 0x5a, 0x0a, 0x51, 0x80, 0x28, 0x40, 0x14, 0x80, 0x73, 0x81, 0x73, 0x81, + 0x73, 0x81, 0x73, 0x81, 0x73, 0x81, 0x73, 0x81, 0x73, 0xf1, 0x3a, 0xd3, 0x96, 0x2d, 0x6c, 0x0a, + 0xa9, 0x67, 0x90, 0x65, 0x93, 0x65, 0x93, 0x65, 0x93, 0x65, 0x93, 0x65, 0x93, 0x65, 0x93, 0x65, + 0x93, 0x65, 0x93, 0x65, 0x93, 0x65, 0x33, 0xe8, 0xb9, 0xf4, 0x75, 0xbd, 0x1a, 0xf4, 0x74, 0x27, + 0x92, 0xe0, 0x60, 0xc2, 0x73, 0xc3, 0xf0, 0xb3, 0x4f, 0x44, 0x0e, 0x1c, 0xd6, 0xaa, 0xdd, 0xca, + 0x1a, 0x88, 0xc8, 0x18, 0x88, 0xc8, 0x16, 0xb8, 0x95, 0x29, 0x28, 0xfb, 0x5d, 0x1d, 0x6f, 0x63, + 0x9f, 0xb6, 0x6f, 0xcd, 0xc9, 0x48, 0xb4, 0x4b, 0x35, 0x81, 0x72, 0xae, 0x64, 0x75, 0x07, 0xb0, + 0xda, 0x6f, 0xae, 0x68, 0x5a, 0xae, 0x4c, 0xca, 0xde, 0x94, 0x56, 0xfb, 0x5c, 0xcb, 0xbf, 0xec, + 0xe5, 0x7e, 0x63, 0xc9, 0xcf, 0x52, 0xf6, 0x73, 0x18, 0x7d, 0x86, 0x15, 0x36, 0xaf, 0x93, 0xcd, + 0xba, 0xdc, 0x37, 0x5f, 0xfc, 0xcb, 0x2d, 0xf6, 0x37, 0x17, 0xfc, 0xb6, 0xab, 0x7e, 0x53, 0xa5, + 0x6f, 0xb9, 0xc4, 0xb7, 0x5b, 0xed, 0x9b, 0x2d, 0xf6, 0x91, 0x7e, 0xfd, 0xca, 0x17, 0x78, 0xdd, + 0xb5, 0x2c, 0x89, 0x2e, 0x3a, 0x57, 0x5f, 0xe2, 0x4e, 0x14, 0x67, 0x59, 0x3f, 0xfd, 0x32, 0xcc, + 0x92, 0xc5, 0xb9, 0xe9, 0x82, 0x19, 0x7a, 0xf4, 0x2a, 0x0b, 0x7e, 0xec, 0xe5, 0x24, 0x2f, 0x96, + 0xe6, 0x8b, 0x57, 0xe1, 0x81, 0xef, 0xf3, 0xbb, 0xb7, 0x56, 0xb0, 0xcc, 0x17, 0x5f, 0x91, 0xb9, + 0x2d, 0xcd, 0xc8, 0x96, 0x66, 0x5a, 0x1f, 0x32, 0xa8, 0xa3, 0x07, 0x37, 0x72, 0x00, 0xcb, 0xca, + 0x36, 0x8c, 0xd5, 0xc9, 0xe2, 0xd6, 0x65, 0xda, 0x8d, 0x2e, 0xfa, 0x57, 0xc3, 0xde, 0xf2, 0xf5, + 0x95, 0xe9, 0x13, 0x73, 0xa7, 0x2e, 0xb5, 0xe4, 0x7b, 0x5c, 0x4d, 0xc3, 0x65, 0xe5, 0x42, 0x48, + 0x99, 0x42, 0x47, 0x09, 0x43, 0x2f, 0x6b, 0xf0, 0xce, 0x0c, 0xdf, 0xd9, 0x06, 0x70, 0xb3, 0x11, + 0x74, 0xb2, 0x9e, 0x55, 0x75, 0x4d, 0x6a, 0xf7, 0x0c, 0x7b, 0xf5, 0x4f, 0x36, 0xb1, 0x9a, 0xfb, + 0x17, 0x5b, 0xf1, 0x5d, 0x97, 0x13, 0x3c, 0x2a, 0x5d, 0x3d, 0x74, 0x51, 0x25, 0x74, 0xb0, 0x89, + 0x5c, 0x6d, 0x26, 0xe7, 0x9b, 0xca, 0xf9, 0xe6, 0x72, 0xbb, 0xc9, 0x6c, 0x10, 0x60, 0x59, 0x51, + 0xa1, 0xfb, 0xfb, 0x26, 0xca, 0x73, 0xc3, 0x92, 0xdf, 0xfb, 0x91, 0x1d, 0x39, 0xbe, 0x72, 0x59, + 0x5e, 0xcc, 0x49, 0x85, 0xc0, 0x59, 0x91, 0xdf, 0x65, 0x51, 0xdf, 0xe1, 0xb6, 0x75, 0xbd, 0x7d, + 0xc5, 0xb6, 0xb1, 0xd8, 0x76, 0x96, 0xd9, 0xd6, 0x7e, 0x70, 0xc3, 0xce, 0x0a, 0xeb, 0x85, 0xc5, + 0x75, 0x92, 0xb8, 0xdd, 0x4f, 0xda, 0x2e, 0x2c, 0x6e, 0x12, 0x3f, 0x1d, 0x1c, 0xda, 0x5f, 0x3b, + 0xcd, 0x81, 0xf3, 0xf3, 0xe7, 0x2f, 0xc6, 0xb0, 0xf9, 0xc5, 0x8c, 0x3b, 0xb1, 0x62, 0xf8, 0x4a, + 0x84, 0xd4, 0xe6, 0xc4, 0xf7, 0x38, 0x72, 0xb1, 0xf9, 0xf5, 0xdc, 0x38, 0xd6, 0x6d, 0x1c, 0x2b, + 0x8e, 0x75, 0x5d, 0x1d, 0xab, 0x2b, 0x71, 0x46, 0xf7, 0xf9, 0x94, 0x74, 0x5e, 0xe5, 0x38, 0xbf, + 0x72, 0xee, 0x0e, 0x24, 0xdc, 0x82, 0xa0, 0x7b, 0x90, 0x72, 0x13, 0xe2, 0xee, 0x42, 0xdc, 0x6d, + 0xc8, 0xba, 0x0f, 0x37, 0x6e, 0xc4, 0x91, 0x3b, 0x71, 0x9f, 0xaf, 0xcd, 0x58, 0xac, 0xf3, 0x61, + 0x53, 0xc7, 0x43, 0xa6, 0x7e, 0xe8, 0x6c, 0x7f, 0x49, 0xb3, 0xa8, 0x77, 0x35, 0x48, 0x9d, 0x36, + 0xcf, 0x14, 0xdf, 0x60, 0xea, 0xea, 0x78, 0x61, 0xbc, 0x30, 0x5e, 0x78, 0xcd, 0xbc, 0xf0, 0x30, + 0xed, 0x66, 0x3b, 0x75, 0x01, 0x2f, 0xfc, 0xd2, 0xe1, 0x25, 0x65, 0x7a, 0xce, 0x65, 0xce, 0xc7, + 0x11, 0x1c, 0x33, 0x11, 0x6d, 0x30, 0x96, 0xee, 0x29, 0xd7, 0xe8, 0x1e, 0xbe, 0x91, 0x39, 0x8d, + 0x28, 0xf8, 0x4f, 0xba, 0x5b, 0x7f, 0xb5, 0xfb, 0x6a, 0xff, 0x65, 0xfd, 0xd5, 0x5e, 0xc0, 0xdf, + 0xd6, 0xd3, 0x4e, 0xeb, 0x73, 0x5a, 0x7e, 0xc3, 0x68, 0x0d, 0x7d, 0xac, 0xad, 0xe6, 0xc5, 0x4c, + 0x7f, 0xc2, 0x7d, 0x96, 0x36, 0x27, 0x6e, 0x43, 0xe4, 0x69, 0xdd, 0x1c, 0xcf, 0xe3, 0xf4, 0x58, + 0x1e, 0xe7, 0x2c, 0x6d, 0x1d, 0x96, 0xd6, 0x87, 0x84, 0x1f, 0x96, 0x76, 0x89, 0x47, 0x82, 0xa5, + 0x85, 0x1f, 0x80, 0x1f, 0x80, 0x1f, 0x08, 0x86, 0x1f, 0x80, 0xa5, 0x5d, 0xe4, 0x99, 0x60, 0x69, + 0xf1, 0xc2, 0x78, 0x61, 0xbc, 0x30, 0x2c, 0x2d, 0x2c, 0x2d, 0x2c, 0xad, 0xce, 0x76, 0x9b, 0xfe, + 0xa4, 0xb0, 0xb4, 0x7e, 0x7c, 0x5b, 0x58, 0x5a, 0x8f, 0xd9, 0x87, 0x6a, 0xb2, 0xb4, 0x0e, 0x94, + 0x37, 0x42, 0x19, 0x97, 0xcf, 0x95, 0x35, 0x1c, 0x51, 0x33, 0x6e, 0x54, 0x35, 0x9c, 0xaa, 0x69, + 0x38, 0x55, 0xd1, 0x70, 0xa3, 0x9e, 0x51, 0x41, 0x69, 0x83, 0xe5, 0x37, 0x59, 0xad, 0x54, 0x2d, + 0xe2, 0x97, 0x63, 0xdb, 0x1f, 0x93, 0x77, 0xa3, 0xfb, 0x39, 0x28, 0x6e, 0xa7, 0x71, 0x70, 0xbb, + 0xf8, 0xbb, 0xd1, 0xda, 0x48, 0x2b, 0x58, 0x9a, 0x81, 0x98, 0xca, 0xc1, 0x32, 0x93, 0xff, 0xfd, + 0xce, 0x45, 0x89, 0x29, 0xe4, 0xf1, 0xaf, 0x33, 0x79, 0x2c, 0xc8, 0x60, 0x30, 0x79, 0xbc, 0xa9, + 0x39, 0x79, 0x7c, 0x6b, 0xd1, 0xe5, 0x47, 0x8e, 0x47, 0x57, 0x61, 0xd6, 0x98, 0x59, 0x63, 0x33, + 0x42, 0x2f, 0xb0, 0x59, 0x63, 0xc6, 0xdf, 0x94, 0xb6, 0xa6, 0xc0, 0x16, 0x75, 0xbd, 0x55, 0xc5, + 0xb6, 0xac, 0xd8, 0xd6, 0x95, 0xd9, 0xc2, 0x7e, 0x50, 0x1b, 0xce, 0x1a, 0x2b, 0x9a, 0x57, 0x83, + 0xcc, 0x7d, 0x09, 0x6f, 0x74, 0x55, 0x4a, 0x77, 0x1e, 0xb9, 0x01, 0x29, 0x77, 0x20, 0xee, 0x16, + 0xc4, 0xdd, 0x83, 0xac, 0x9b, 0x70, 0xcb, 0xed, 0x52, 0xba, 0x73, 0x72, 0x49, 0x4a, 0x77, 0x94, + 0xee, 0x14, 0xb7, 0xdb, 0xf4, 0x27, 0xa5, 0x74, 0xe7, 0xc7, 0xb7, 0xa5, 0x74, 0x27, 0x6d, 0xfb, + 0xb5, 0x76, 0xe7, 0xea, 0xaa, 0x95, 0x76, 0x2f, 0xa2, 0xcc, 0x65, 0xbc, 0x29, 0x62, 0xcd, 0xf4, + 0xe5, 0x1d, 0x85, 0xc6, 0x3f, 0x92, 0x76, 0x3c, 0xec, 0x8c, 0x92, 0x80, 0xb7, 0xc7, 0x7f, 0xfe, + 0xf9, 0xc7, 0xe1, 0x1f, 0x8d, 0xb3, 0x0f, 0xc7, 0xef, 0xc8, 0x66, 0xc9, 0x66, 0xc9, 0x66, 0xd7, + 0x2d, 0x9b, 0x1d, 0x55, 0x87, 0x06, 0xfd, 0xce, 0x45, 0x24, 0xe1, 0x6b, 0xa6, 0xd8, 0xac, 0x5d, + 0x87, 0xd7, 0x3c, 0xec, 0x0e, 0x2f, 0x6f, 0x5f, 0xc8, 0x4d, 0x85, 0x62, 0x89, 0xcc, 0xd4, 0x07, + 0x93, 0x1e, 0xb8, 0x76, 0x5c, 0xfb, 0x3a, 0xba, 0x76, 0x26, 0x3d, 0x16, 0x79, 0xa6, 0xeb, 0x1c, + 0xf1, 0x39, 0x76, 0xbb, 0xe3, 0xcb, 0xe2, 0x77, 0xf1, 0xbb, 0xf8, 0xdd, 0x35, 0xf3, 0xbb, 0x10, + 0xc4, 0x2e, 0x4d, 0x12, 0x82, 0x78, 0xfe, 0xf5, 0x21, 0x88, 0xcd, 0x3e, 0x29, 0x04, 0xb1, 0xdc, + 0xd5, 0x98, 0xed, 0x08, 0x79, 0xb6, 0x63, 0xd4, 0x9b, 0x3b, 0xfa, 0xef, 0x80, 0xe5, 0x76, 0xdc, + 0x9e, 0x3b, 0xc1, 0x59, 0x13, 0xda, 0xb9, 0x3e, 0x3d, 0x61, 0x9c, 0x35, 0xb1, 0x88, 0xc5, 0x05, + 0x73, 0xd6, 0x44, 0xa8, 0xe7, 0x4b, 0xa0, 0x5b, 0x86, 0x2b, 0xc5, 0x95, 0xfa, 0xe7, 0x4a, 0x69, + 0xaf, 0xb5, 0xce, 0xa0, 0x24, 0xb6, 0xbf, 0xa0, 0x1b, 0x90, 0x72, 0x07, 0xe2, 0x6e, 0x41, 0xdc, + 0x3d, 0xc8, 0xba, 0x09, 0xb7, 0xf0, 0x1a, 0xf6, 0xd4, 0xc9, 0x25, 0x61, 0x4f, 0x61, 0x4f, 0x15, + 0xb7, 0xdb, 0xf4, 0x27, 0x85, 0x3d, 0xf5, 0xe3, 0xdb, 0xc2, 0x9e, 0x4a, 0xdb, 0x3e, 0xed, 0xb5, + 0x64, 0xb3, 0x64, 0xb3, 0x64, 0xb3, 0xe1, 0x66, 0xb3, 0xb4, 0xd7, 0xd2, 0x5e, 0x8b, 0x6b, 0xc7, + 0xb5, 0xe3, 0xda, 0x2b, 0xe7, 0xda, 0x69, 0xaf, 0x5d, 0xe4, 0x99, 0x68, 0xaf, 0xc5, 0xef, 0xe2, + 0x77, 0xf1, 0xbb, 0xee, 0x2c, 0x16, 0x82, 0xd8, 0xa5, 0x49, 0x42, 0x10, 0xcf, 0xbf, 0x3e, 0x04, + 0xb1, 0xd9, 0x27, 0x85, 0x20, 0x96, 0xbb, 0x1a, 0xed, 0xb5, 0x15, 0x69, 0xaf, 0xb5, 0xd5, 0x49, + 0x2f, 0xd9, 0x14, 0x96, 0x36, 0xc7, 0xbc, 0xd8, 0x65, 0x72, 0xf9, 0x25, 0xe9, 0x0f, 0xdc, 0xb6, + 0x88, 0x3d, 0xbc, 0x38, 0x7a, 0x8c, 0x8a, 0x40, 0x80, 0x86, 0x31, 0x1a, 0xc6, 0x7e, 0x72, 0xa1, + 0x7c, 0x4f, 0x46, 0x9d, 0x54, 0xa2, 0x71, 0x6c, 0xea, 0xea, 0x6e, 0xf9, 0x81, 0x6d, 0xf8, 0x01, + 0xf8, 0x01, 0xf8, 0x01, 0x47, 0x55, 0x72, 0x47, 0xee, 0xa4, 0xb8, 0xa0, 0x23, 0x25, 0xe7, 0xb9, + 0x1b, 0xc1, 0x89, 0xb2, 0xb3, 0xb0, 0x6b, 0x11, 0x73, 0x31, 0x92, 0xae, 0x46, 0xc1, 0xe5, 0x48, + 0xbb, 0x1e, 0x35, 0x17, 0xa4, 0xe6, 0x8a, 0x74, 0x5c, 0x92, 0x10, 0x52, 0x76, 0x6c, 0xf3, 0xae, + 0x5d, 0x55, 0x71, 0xe1, 0x76, 0xff, 0xea, 0x32, 0x8a, 0x5b, 0xad, 0x7e, 0x32, 0x18, 0xc8, 0xd9, + 0x64, 0xd1, 0xec, 0x74, 0x7f, 0xb5, 0x67, 0x41, 0xb2, 0x43, 0x52, 0x6e, 0x4d, 0xc3, 0xbd, 0x29, + 0xba, 0x39, 0x2d, 0x77, 0xa7, 0xee, 0xf6, 0xd4, 0xdd, 0x9f, 0xae, 0x1b, 0x94, 0x71, 0x87, 0x42, + 0x6e, 0xb1, 0x78, 0x35, 0xce, 0x2b, 0x3d, 0x73, 0x77, 0x4c, 0xda, 0x13, 0xf6, 0x5f, 0x53, 0x29, + 0xd9, 0x2b, 0xc1, 0x35, 0xf2, 0x77, 0xf6, 0x59, 0xd4, 0x68, 0x65, 0x37, 0xfd, 0x83, 0x2f, 0x73, + 0xbd, 0xab, 0xf0, 0x6d, 0x66, 0xbe, 0xd1, 0x6f, 0x0a, 0x6b, 0x9d, 0xc6, 0x59, 0x96, 0xf4, 0xbb, + 0xe2, 0x9f, 0xab, 0x58, 0xf0, 0x7f, 0x9e, 0x3c, 0xf9, 0xbc, 0x15, 0xbd, 0x3a, 0xff, 0xf1, 0x79, + 0x3b, 0x7a, 0x75, 0x3e, 0xfe, 0xc7, 0xed, 0xd1, 0xff, 0x8c, 0xff, 0xb9, 0xfe, 0x79, 0x2b, 0xda, + 0x9d, 0xfc, 0xf3, 0xde, 0xe7, 0xad, 0x68, 0xef, 0xfc, 0xe9, 0x7f, 0xfe, 0xf3, 0xfc, 0xe9, 0x3f, + 0x3b, 0x37, 0xcb, 0xff, 0xe2, 0x7f, 0xd5, 0xc4, 0x1f, 0xea, 0x5c, 0x74, 0x85, 0x9b, 0x67, 0x15, + 0xda, 0x44, 0xfb, 0x6c, 0x22, 0xb7, 0x9b, 0x28, 0x8e, 0xda, 0x07, 0xd1, 0xdb, 0xf3, 0x7f, 0xb6, + 0x9f, 0xed, 0xde, 0xbc, 0x7e, 0xfa, 0xcf, 0xcb, 0x9b, 0x87, 0x7f, 0xf8, 0xe3, 0xb1, 0xbf, 0xb6, + 0xfd, 0xec, 0xe5, 0xcd, 0xeb, 0x39, 0xff, 0x66, 0xff, 0xe6, 0xf5, 0x82, 0xd7, 0xd8, 0xbb, 0x79, + 0x32, 0xf3, 0x57, 0x6f, 0xff, 0xbc, 0x3e, 0xef, 0x17, 0x76, 0xe7, 0xfc, 0xc2, 0xce, 0xbc, 0x5f, + 0xd8, 0x99, 0xf3, 0x0b, 0x73, 0x6f, 0xa9, 0x3e, 0xe7, 0x17, 0xf6, 0x6e, 0x7e, 0xcc, 0xfc, 0xfd, + 0x27, 0x8f, 0xff, 0xd5, 0xfd, 0x9b, 0xa7, 0x3f, 0xe6, 0xfd, 0xbb, 0x97, 0x37, 0x3f, 0x5e, 0x3f, + 0xad, 0x80, 0x4b, 0xd9, 0x08, 0xeb, 0xbe, 0x6f, 0x82, 0x68, 0x4b, 0xc8, 0xae, 0xf4, 0xb0, 0xee, + 0xbd, 0xb5, 0x40, 0xba, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, 0x0b, 0xd2, 0x05, 0xe9, 0x82, + 0x74, 0x41, 0xba, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, 0x0b, 0xd2, 0xf5, 0xbe, 0xf4, 0xec, + 0xb8, 0x49, 0x79, 0xe6, 0xfa, 0x46, 0x4d, 0xcb, 0x0f, 0xda, 0x73, 0x5f, 0xdc, 0x6f, 0xda, 0x73, + 0x22, 0x1a, 0x2c, 0xf7, 0x95, 0x1d, 0x7e, 0x61, 0xd9, 0xfa, 0xbf, 0x46, 0xdd, 0x5f, 0x88, 0x05, + 0xa1, 0x7d, 0xc9, 0x86, 0xe5, 0xa0, 0x7d, 0xa9, 0x8a, 0x31, 0x44, 0x8c, 0xb5, 0x10, 0x10, 0x51, + 0x9e, 0x9b, 0xb9, 0xbf, 0x14, 0xb8, 0xf6, 0xac, 0xc8, 0xf2, 0x94, 0xab, 0x5c, 0x83, 0x00, 0xe4, + 0x46, 0x9c, 0x79, 0xae, 0x5d, 0xb8, 0x10, 0x6b, 0x9e, 0x6b, 0x11, 0x52, 0x21, 0xa7, 0x4e, 0xc8, + 0x21, 0xe4, 0x10, 0x72, 0x4a, 0xbd, 0x02, 0x3a, 0x66, 0x8d, 0x33, 0x68, 0xf1, 0x4c, 0x5a, 0xc3, + 0xbd, 0x29, 0xba, 0x39, 0x2d, 0x77, 0xa7, 0xee, 0xf6, 0xd4, 0xdd, 0x9f, 0xae, 0x1b, 0x94, 0xe5, + 0xb1, 0xa8, 0x23, 0x2e, 0x97, 0x92, 0x51, 0x47, 0x5c, 0xe6, 0xcb, 0x50, 0x47, 0x74, 0xb6, 0x20, + 0x75, 0x44, 0x0f, 0xdc, 0x9a, 0xcd, 0x26, 0xa2, 0x8e, 0xe8, 0x78, 0x13, 0x51, 0x47, 0xa4, 0x8e, + 0xe8, 0x49, 0xfe, 0xb5, 0x49, 0xc7, 0x2c, 0x1d, 0xb3, 0x20, 0x5d, 0x90, 0x2e, 0x48, 0x17, 0xa4, + 0x0b, 0xd2, 0x05, 0xe9, 0x92, 0xa4, 0x83, 0x74, 0x41, 0xba, 0x6c, 0x22, 0x90, 0x2e, 0x48, 0x17, + 0xa4, 0x6b, 0x85, 0x74, 0xe9, 0x98, 0xf5, 0xac, 0x63, 0xd6, 0x81, 0x0e, 0xb0, 0xdc, 0x47, 0xf6, + 0x4b, 0x76, 0xf0, 0x5f, 0xc9, 0x77, 0xa1, 0xca, 0x7e, 0xed, 0x38, 0x1d, 0x64, 0x07, 0x59, 0xe6, + 0x58, 0xd6, 0xf0, 0x7d, 0xda, 0x3d, 0xec, 0x24, 0xb7, 0xf0, 0x72, 0x50, 0x7b, 0xbd, 0xd9, 0x1d, + 0x76, 0x3a, 0x0e, 0xfb, 0xbf, 0xde, 0xc7, 0xdf, 0xe4, 0x2e, 0xfe, 0x67, 0xbf, 0x95, 0xf4, 0x93, + 0xd6, 0x9b, 0xef, 0xf9, 0xa5, 0xbd, 0xb2, 0x03, 0x21, 0x37, 0xe1, 0xa3, 0x7b, 0xa8, 0x39, 0x6d, + 0x18, 0xec, 0x0f, 0x9b, 0x59, 0x7e, 0x92, 0x5a, 0xed, 0x64, 0x7c, 0xbf, 0x47, 0xf9, 0xed, 0x36, + 0xde, 0xf7, 0x3a, 0x83, 0xc6, 0xc7, 0xe4, 0xdd, 0xe8, 0x6e, 0x0f, 0x8a, 0x9b, 0x6d, 0x9c, 0xf5, + 0x3b, 0x17, 0x8d, 0xf7, 0xe3, 0x5b, 0xba, 0xdd, 0x25, 0x35, 0x04, 0xe8, 0xab, 0x23, 0x40, 0xff, + 0x50, 0x6a, 0xdd, 0x4a, 0x8e, 0x7e, 0x43, 0xf1, 0x1b, 0x4e, 0xc2, 0x48, 0x89, 0xc3, 0xff, 0xdc, + 0x84, 0x0b, 0xa7, 0xe1, 0xc1, 0x69, 0x38, 0x70, 0xe3, 0xfe, 0x57, 0xfd, 0x3e, 0x8e, 0xf6, 0x96, + 0xc1, 0x9e, 0xaa, 0x95, 0x3a, 0x56, 0x61, 0x55, 0xef, 0xbc, 0xda, 0xae, 0x5d, 0x7e, 0xcf, 0x2d, + 0xf7, 0x1b, 0x4b, 0x7e, 0xfd, 0xb2, 0x5f, 0x5d, 0xf7, 0x6b, 0x2f, 0xf7, 0xca, 0x17, 0x7f, 0x71, + 0x4b, 0xbc, 0xb4, 0x5a, 0x96, 0x44, 0x9d, 0x41, 0x2f, 0xca, 0xd2, 0xcb, 0x55, 0x4e, 0xe0, 0xb8, + 0xab, 0x1d, 0x4e, 0x5d, 0x66, 0xc9, 0x8f, 0xb6, 0x5a, 0x3f, 0xff, 0xca, 0xe5, 0xbe, 0x32, 0x65, + 0x3c, 0x07, 0xe5, 0xb9, 0xb2, 0x65, 0x37, 0x67, 0xe5, 0x34, 0x67, 0x65, 0x32, 0x37, 0xe5, 0x2f, + 0x59, 0xc7, 0xb0, 0x6a, 0x3f, 0x7a, 0x59, 0x51, 0x79, 0x37, 0xe2, 0xf1, 0x25, 0x47, 0x5e, 0x4a, + 0x57, 0xc6, 0x5d, 0x54, 0xbe, 0x1d, 0x56, 0xb6, 0x5d, 0x55, 0xae, 0x9d, 0x57, 0xa6, 0x9d, 0x57, + 0x9e, 0xdd, 0x56, 0x96, 0x75, 0x33, 0xe4, 0xb2, 0x23, 0x20, 0xb5, 0x66, 0x27, 0x89, 0xbb, 0xc3, + 0x5e, 0xd4, 0x4a, 0x3a, 0xf1, 0x77, 0x77, 0xa7, 0x43, 0x4d, 0x5f, 0xd6, 0xcd, 0xb9, 0x50, 0x5b, + 0x9c, 0x0b, 0xa5, 0xb9, 0x71, 0xc5, 0x36, 0xb0, 0xd8, 0x46, 0x96, 0xd9, 0xd0, 0x7e, 0xd0, 0x18, + 0xce, 0x5a, 0x3c, 0xa6, 0x0e, 0x78, 0xdd, 0xde, 0x77, 0x61, 0x70, 0xf9, 0xfe, 0xdc, 0x77, 0x70, + 0x29, 0xb7, 0x07, 0xba, 0xba, 0x25, 0x88, 0x05, 0x8e, 0x52, 0x92, 0xd1, 0x75, 0x10, 0x3a, 0xb0, + 0x55, 0xf2, 0x30, 0xcf, 0x1b, 0xb7, 0x74, 0x7b, 0x70, 0x9f, 0x6a, 0x7f, 0x6f, 0x6f, 0x67, 0x2f, + 0xa0, 0xcf, 0xe5, 0x09, 0xb5, 0x7c, 0x1e, 0xe0, 0xa9, 0x9c, 0x23, 0xe6, 0xa2, 0xd3, 0x71, 0x9d, + 0x71, 0x4d, 0x5f, 0x96, 0x8c, 0x8b, 0x8c, 0x8b, 0x8c, 0x8b, 0x8c, 0x8b, 0x8c, 0x8b, 0x8c, 0x8b, + 0x8c, 0xeb, 0xb1, 0x4f, 0xb5, 0xb3, 0xbf, 0xb5, 0x45, 0xc2, 0xb5, 0x0e, 0x09, 0x57, 0x3f, 0xb9, + 0xea, 0x65, 0xe9, 0x65, 0xfa, 0xff, 0x26, 0xe3, 0xda, 0x89, 0xbb, 0x9c, 0x6b, 0xe6, 0xca, 0xa4, + 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0x10, 0x5d, 0xe1, + 0xe7, 0x5d, 0xf4, 0x93, 0xfd, 0xa4, 0xc3, 0x68, 0xaa, 0x23, 0xa7, 0x94, 0xa2, 0xf6, 0x0a, 0x3d, + 0x5e, 0x2b, 0x74, 0xc5, 0x94, 0x13, 0x22, 0x75, 0x22, 0x38, 0xea, 0xac, 0xcb, 0xa2, 0x4e, 0x97, + 0x85, 0x64, 0xee, 0x4a, 0x97, 0xc5, 0xbd, 0x5b, 0xa7, 0xcb, 0x02, 0xf0, 0x09, 0xf8, 0x04, 0x7c, + 0x02, 0x3e, 0x01, 0x9f, 0x80, 0x4f, 0xc0, 0x27, 0xe0, 0x53, 0x07, 0x7c, 0xd2, 0x65, 0x41, 0xc6, + 0x45, 0xc6, 0x45, 0xc6, 0x45, 0xc6, 0x45, 0xc6, 0x45, 0xc6, 0x45, 0x97, 0x05, 0x09, 0x97, 0xbf, + 0x09, 0x17, 0x5d, 0x16, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, 0xa4, 0x5d, + 0x10, 0x5d, 0xe4, 0x5d, 0xd2, 0xbf, 0xb9, 0x9e, 0x5d, 0x16, 0x25, 0x54, 0x18, 0x11, 0xd2, 0x71, + 0xf0, 0x01, 0x6a, 0x2b, 0xf5, 0x9d, 0xac, 0xa2, 0x98, 0xf4, 0x31, 0x39, 0x1e, 0xf4, 0x3e, 0x8e, + 0x17, 0x95, 0x52, 0xf1, 0xd9, 0x70, 0xf8, 0x5d, 0x57, 0xfd, 0x9e, 0x5a, 0xdf, 0x71, 0x89, 0x2f, + 0xb7, 0xda, 0x17, 0x5b, 0xec, 0x2b, 0xfd, 0xfa, 0x9d, 0x2f, 0xf0, 0xbe, 0x6b, 0x59, 0x12, 0xa5, + 0xdd, 0x2c, 0xe9, 0xb7, 0xe3, 0x66, 0x72, 0xff, 0x19, 0x17, 0x7d, 0xf1, 0xf7, 0x55, 0x95, 0x1e, + 0xbd, 0xd0, 0x82, 0xdf, 0x7c, 0xb9, 0x76, 0xa6, 0xa5, 0x41, 0xe3, 0x2a, 0xe0, 0xb0, 0x04, 0x08, + 0x5c, 0x15, 0xec, 0x95, 0x06, 0x75, 0xa5, 0xc1, 0x5b, 0x39, 0x90, 0xe6, 0xd6, 0x0f, 0x2c, 0xdb, + 0x2e, 0x54, 0x2b, 0x0c, 0x70, 0x75, 0x71, 0xb0, 0xbb, 0x4b, 0x20, 0x0c, 0x26, 0xc8, 0x66, 0x20, + 0x0c, 0xb6, 0x89, 0x30, 0x98, 0x32, 0x51, 0x48, 0xcb, 0xaa, 0x11, 0x01, 0xb8, 0xd6, 0x2d, 0xab, + 0x71, 0xeb, 0x32, 0xed, 0x46, 0x17, 0xfd, 0xab, 0x61, 0xcf, 0x1d, 0x95, 0x7f, 0xff, 0xa2, 0xb0, + 0xf8, 0x0a, 0x9b, 0xd5, 0xf5, 0xa6, 0x15, 0xdb, 0xbc, 0x62, 0x9b, 0x58, 0x66, 0x33, 0xbb, 0xe1, + 0x9c, 0xfc, 0x63, 0xf1, 0x07, 0x59, 0x3f, 0xed, 0x5e, 0x38, 0x64, 0xf1, 0xb7, 0x7f, 0x33, 0x7d, + 0x43, 0x4e, 0x4f, 0x8b, 0x10, 0x39, 0x25, 0x42, 0xe4, 0x74, 0x08, 0xb7, 0xa7, 0x42, 0x58, 0x75, + 0xf0, 0x4d, 0x50, 0x79, 0xda, 0x72, 0xd9, 0xc0, 0x77, 0xef, 0xaa, 0x84, 0x20, 0x42, 0x10, 0x21, + 0xc8, 0xb3, 0x10, 0xe4, 0x70, 0x87, 0xba, 0x0c, 0x44, 0x26, 0x3e, 0xf0, 0xfe, 0x91, 0x1f, 0x5f, + 0x53, 0x87, 0x89, 0xf8, 0xc3, 0x0b, 0xe3, 0x09, 0xf1, 0x84, 0x78, 0x42, 0xcf, 0x3c, 0x61, 0x27, + 0x89, 0xdb, 0xfd, 0xa4, 0xed, 0xd2, 0x09, 0xbe, 0x74, 0x70, 0xad, 0xd3, 0xbc, 0x50, 0xf5, 0xfc, + 0xf9, 0x8b, 0xe2, 0x3f, 0xbf, 0x3a, 0xc2, 0x68, 0x54, 0x49, 0x02, 0x09, 0x80, 0x04, 0x56, 0x79, + 0x84, 0x2c, 0x89, 0x2e, 0x93, 0xac, 0x9f, 0x36, 0xdd, 0xc5, 0xbf, 0xbb, 0x4b, 0x12, 0xf9, 0x88, + 0x7c, 0x44, 0x3e, 0xcf, 0x22, 0xdf, 0x30, 0xed, 0x66, 0x3b, 0x75, 0x87, 0x81, 0xef, 0x25, 0xcd, + 0xa4, 0x26, 0x8e, 0x6d, 0xe6, 0xb2, 0x34, 0x93, 0x06, 0xf7, 0xa9, 0x76, 0xeb, 0xaf, 0x76, 0x5f, + 0xed, 0xbf, 0xac, 0xbf, 0xa2, 0xa3, 0x74, 0xe9, 0x1f, 0x3a, 0x4a, 0x97, 0xa2, 0x3b, 0x44, 0x1a, + 0xe1, 0x1e, 0x6b, 0xef, 0x7a, 0x51, 0xfc, 0x61, 0x00, 0xb2, 0x5d, 0xe9, 0x45, 0x2f, 0x6a, 0x77, + 0xae, 0xae, 0x5a, 0x69, 0xf7, 0x22, 0xfa, 0x12, 0x77, 0x5b, 0x7f, 0xa7, 0xad, 0xd1, 0x2b, 0x2a, + 0xd9, 0x15, 0x31, 0xe7, 0xba, 0x74, 0x49, 0xd0, 0x25, 0x61, 0x96, 0xd1, 0x86, 0x26, 0xec, 0x55, + 0xae, 0x41, 0x69, 0xc6, 0xf0, 0x4a, 0x35, 0x2a, 0x39, 0xda, 0x8a, 0x80, 0x52, 0x40, 0x69, 0xf8, + 0xa0, 0xb4, 0xec, 0xd6, 0x2e, 0x2e, 0xd4, 0x4a, 0x3a, 0x59, 0x1c, 0xf5, 0x92, 0x7e, 0x33, 0xe9, + 0x66, 0xf1, 0x85, 0x43, 0x3b, 0x99, 0x98, 0xf2, 0xcc, 0x0a, 0x8e, 0xbe, 0xaa, 0x5b, 0x5c, 0xe0, + 0xcc, 0x1d, 0x48, 0xb8, 0x05, 0x41, 0xf7, 0x20, 0xe5, 0x26, 0xc4, 0xdd, 0x85, 0xb8, 0xdb, 0x90, + 0x75, 0x1f, 0x8e, 0xa1, 0x9c, 0x23, 0x9b, 0x75, 0xc6, 0x75, 0xcd, 0x58, 0xac, 0xf3, 0xfd, 0x7f, + 0xdf, 0x07, 0x38, 0x84, 0xee, 0x8e, 0x79, 0x30, 0xf7, 0x7c, 0x98, 0x28, 0x2f, 0x26, 0x4c, 0xba, + 0x48, 0xf3, 0x64, 0x1a, 0xdc, 0x8b, 0x00, 0x6f, 0x26, 0xca, 0x9f, 0x69, 0x7f, 0xd2, 0xed, 0xad, + 0x90, 0x3f, 0xea, 0x86, 0x9f, 0x57, 0x3b, 0xf7, 0x84, 0xf0, 0x73, 0x60, 0xf4, 0xb5, 0xd6, 0xd5, + 0xdf, 0xdd, 0x28, 0xfb, 0xda, 0x4f, 0x06, 0x5f, 0xaf, 0x3a, 0xad, 0x81, 0x40, 0xc2, 0xf9, 0x60, + 0x01, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, 0x4d, 0xf2, + 0x4d, 0xf2, 0x4d, 0xad, 0x7c, 0xd3, 0x51, 0x94, 0x70, 0xda, 0xdc, 0x78, 0xdf, 0x9f, 0x39, 0xef, + 0x47, 0xbc, 0xbf, 0xb3, 0xe4, 0x2e, 0xee, 0xb4, 0xe9, 0xd1, 0x2f, 0x70, 0x50, 0xa4, 0xed, 0xd1, + 0xa0, 0x97, 0x34, 0xd3, 0x76, 0xda, 0x2c, 0x5f, 0x78, 0x7f, 0x34, 0x3f, 0x98, 0xb7, 0x10, 0x60, + 0x01, 0xb0, 0x00, 0x58, 0x58, 0x33, 0xb0, 0x90, 0x74, 0x87, 0x97, 0x49, 0xdf, 0xa5, 0x03, 0xb8, + 0xef, 0x04, 0xb6, 0x77, 0x1d, 0x5e, 0xf3, 0xb0, 0x3b, 0xbc, 0xbc, 0x7d, 0x09, 0x37, 0x95, 0x74, + 0xfa, 0x99, 0xcb, 0x4f, 0xfc, 0x88, 0xaf, 0x1f, 0x5d, 0x1f, 0x17, 0x8f, 0x8b, 0xc7, 0xc5, 0xe3, + 0xe2, 0x71, 0xf1, 0x7a, 0x2e, 0x7e, 0xd8, 0x8b, 0xc4, 0x79, 0xff, 0x47, 0xd6, 0xc0, 0xd5, 0xe3, + 0xea, 0x71, 0xf5, 0x6b, 0xe6, 0xea, 0xa1, 0xfe, 0x1d, 0xff, 0x40, 0xfd, 0xff, 0xe4, 0xfa, 0x50, + 0xff, 0x66, 0x9f, 0x14, 0xea, 0x5f, 0xe0, 0x6a, 0x50, 0xff, 0xe5, 0x77, 0x16, 0xd4, 0xff, 0x6a, + 0x10, 0x41, 0x18, 0x1d, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x03, 0x80, 0x01, 0xc0, 0x00, 0x60, 0x00, + 0x30, 0x00, 0x18, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x03, 0x59, 0x60, 0x60, 0x3a, 0x25, 0xeb, 0x48, + 0xb9, 0xa3, 0xb8, 0x9e, 0x89, 0x82, 0xc7, 0xe3, 0x3a, 0x16, 0xa5, 0x84, 0x3d, 0xca, 0x7f, 0x9d, + 0x52, 0xb2, 0xaf, 0xa3, 0x33, 0xee, 0xdc, 0x89, 0xbd, 0x8e, 0x2e, 0xe7, 0x99, 0xa6, 0x40, 0x1d, + 0x4d, 0x01, 0x1f, 0x00, 0x1a, 0x9a, 0x02, 0x4b, 0x3c, 0x12, 0x9a, 0x02, 0xf0, 0x39, 0xf0, 0x39, + 0xf0, 0x39, 0xf0, 0x39, 0xf0, 0x39, 0xf0, 0x39, 0xf0, 0x39, 0xf0, 0x39, 0xf0, 0x39, 0x1a, 0x14, + 0x01, 0x9a, 0x02, 0xe4, 0x9b, 0xe4, 0x9b, 0xe4, 0x9b, 0xe4, 0x9b, 0xe4, 0x9b, 0xe4, 0x9b, 0xe4, + 0x9b, 0xe4, 0x9b, 0xe4, 0x9b, 0xe2, 0x51, 0x82, 0xfa, 0xe1, 0xf4, 0xc5, 0xd1, 0x14, 0x28, 0x9f, + 0x1f, 0xa0, 0x29, 0x00, 0x58, 0x00, 0x2c, 0x00, 0x16, 0x18, 0x38, 0xf5, 0xc9, 0xe9, 0xa3, 0x29, + 0x80, 0x8b, 0xc7, 0xc5, 0xe3, 0xe2, 0x71, 0xf1, 0x68, 0x0a, 0x2c, 0xfd, 0x89, 0xd1, 0x14, 0xc0, + 0xd5, 0xe3, 0xea, 0x71, 0xf5, 0x50, 0xff, 0x8e, 0x7f, 0xa0, 0xfe, 0x7f, 0x72, 0x7d, 0xa8, 0x7f, + 0xb3, 0x4f, 0x0a, 0xf5, 0x2f, 0x70, 0x35, 0xa8, 0xff, 0xf2, 0x3b, 0x0b, 0xea, 0x7f, 0x35, 0x88, + 0x80, 0xa6, 0x00, 0xc0, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x03, + 0x80, 0x01, 0xc0, 0x00, 0x60, 0x10, 0x34, 0x30, 0x40, 0x53, 0x40, 0x48, 0x53, 0x60, 0x3c, 0x4a, + 0x6f, 0x25, 0x29, 0xb0, 0xa1, 0xf8, 0x39, 0x5d, 0x7d, 0x46, 0x9f, 0x3e, 0x5f, 0xad, 0x94, 0x26, + 0x43, 0x7f, 0xd8, 0xcc, 0xba, 0x79, 0x52, 0x7b, 0x32, 0xbe, 0xaf, 0xa3, 0xfc, 0xb6, 0x1a, 0xef, + 0x7b, 0x9d, 0x41, 0xe3, 0x68, 0xb2, 0x7c, 0xe3, 0xe8, 0xa2, 0xf7, 0x36, 0x5f, 0xfd, 0x4d, 0xb1, + 0xf8, 0x86, 0xce, 0x37, 0x5f, 0xe1, 0x7b, 0xd7, 0xee, 0xde, 0x66, 0xda, 0x5a, 0xf9, 0x6b, 0x17, + 0x19, 0xff, 0xd4, 0xd5, 0x56, 0xb4, 0xbe, 0x72, 0x39, 0x4b, 0x69, 0x4c, 0xef, 0x02, 0xc3, 0x3b, + 0xc4, 0xec, 0xae, 0x30, 0xba, 0x73, 0x4c, 0xee, 0x1c, 0x83, 0xbb, 0xc5, 0xdc, 0xba, 0x1e, 0xb3, + 0x34, 0x86, 0x2e, 0x2c, 0xa6, 0x93, 0xc4, 0xed, 0x7e, 0xd2, 0x2e, 0x63, 0x31, 0x93, 0x1e, 0x89, + 0x97, 0x25, 0xae, 0x71, 0x9a, 0x3b, 0xed, 0xe7, 0xcf, 0x73, 0x31, 0x9d, 0x17, 0x53, 0x5b, 0x3b, + 0x08, 0x87, 0x76, 0xfb, 0x1a, 0x1d, 0x7a, 0xb4, 0xd5, 0xbf, 0x4a, 0x49, 0x05, 0x1d, 0xef, 0x5c, + 0x5a, 0xda, 0xc6, 0xa1, 0xad, 0xe0, 0xd0, 0xd2, 0x76, 0x28, 0xee, 0xac, 0xac, 0xda, 0x4d, 0xad, + 0x39, 0xb1, 0x58, 0x47, 0x3a, 0x56, 0xf9, 0xf5, 0x3c, 0x13, 0xb2, 0xda, 0xf2, 0x53, 0xc8, 0xaa, + 0xd4, 0xf6, 0x74, 0xbd, 0x4d, 0xc5, 0xb6, 0xab, 0xd8, 0xb6, 0x95, 0xd8, 0xbe, 0x7e, 0xc0, 0x73, + 0x67, 0x22, 0x56, 0x45, 0x50, 0x74, 0x5f, 0x36, 0xbc, 0xbb, 0x34, 0x25, 0x43, 0x6f, 0x9c, 0x81, + 0x94, 0x53, 0x10, 0x77, 0x0e, 0xe2, 0x4e, 0x42, 0xd2, 0x59, 0xb8, 0x63, 0x05, 0x37, 0x83, 0x28, + 0x17, 0x96, 0x87, 0x3e, 0x12, 0x50, 0x68, 0x2e, 0x34, 0x7a, 0x31, 0xfa, 0xcc, 0xaf, 0x0b, 0x87, + 0x35, 0x78, 0xf8, 0x07, 0xf9, 0xff, 0x1f, 0x11, 0x47, 0x15, 0xea, 0x1b, 0x19, 0x0c, 0xbf, 0x08, + 0xfa, 0xff, 0xa9, 0xab, 0x13, 0x02, 0x08, 0x01, 0x84, 0x00, 0x42, 0x40, 0xb0, 0x21, 0xe0, 0xf3, + 0x5d, 0x08, 0xf8, 0xff, 0x35, 0x87, 0xfd, 0x7e, 0xd2, 0xcd, 0x9e, 0x3c, 0x7d, 0xf1, 0xfc, 0xf9, + 0x1d, 0x9b, 0x76, 0x9e, 0xff, 0xca, 0x7d, 0xbf, 0x37, 0x78, 0xe4, 0xcf, 0x8a, 0x2b, 0xb7, 0x92, + 0x6f, 0x35, 0x8a, 0x8d, 0x9b, 0x9b, 0xb5, 0xc3, 0x6f, 0xa3, 0xba, 0x6e, 0xf9, 0x9e, 0x1d, 0xf7, + 0x00, 0xf7, 0xaa, 0x19, 0x25, 0xdf, 0xb2, 0xd7, 0x59, 0xd2, 0x49, 0x2e, 0x93, 0xac, 0xff, 0x3d, + 0xba, 0xea, 0x46, 0xcd, 0xaf, 0xa3, 0x26, 0x23, 0x11, 0xd0, 0xdb, 0x8e, 0x3b, 0x03, 0x09, 0xd4, + 0x6b, 0x0d, 0x78, 0xcf, 0xa9, 0x47, 0x27, 0x2f, 0xa6, 0x18, 0x68, 0xa4, 0xed, 0x91, 0xb6, 0x87, + 0x11, 0x84, 0x11, 0x84, 0x11, 0x04, 0x0e, 0x02, 0x07, 0x81, 0x83, 0xc0, 0x41, 0x18, 0x41, 0x18, + 0x41, 0x42, 0x00, 0x21, 0x80, 0x10, 0x40, 0x08, 0x80, 0x11, 0x5c, 0x6b, 0x46, 0xb0, 0x82, 0x74, + 0x0f, 0x53, 0x07, 0x01, 0x7e, 0x35, 0xbd, 0x61, 0x83, 0xc9, 0x3f, 0x7d, 0x48, 0xda, 0x3e, 0xf7, + 0xe4, 0x96, 0xa3, 0xfe, 0x9c, 0x50, 0x7e, 0xce, 0x7a, 0x70, 0xeb, 0x8c, 0x15, 0x48, 0x26, 0x69, + 0x8c, 0x15, 0x38, 0xa4, 0xe7, 0x6a, 0x71, 0xeb, 0x32, 0xed, 0x46, 0x17, 0xfd, 0xab, 0x61, 0xcf, + 0x1d, 0xf3, 0x7e, 0xff, 0xa2, 0x6e, 0xf8, 0xf7, 0xad, 0x8a, 0x77, 0xe4, 0x72, 0xb4, 0x2c, 0x47, + 0xcb, 0xca, 0x63, 0xa7, 0x7b, 0x71, 0xb2, 0x9f, 0x76, 0x2f, 0x5c, 0x18, 0xdc, 0x24, 0x68, 0xfe, + 0x66, 0xfa, 0x86, 0x9c, 0xce, 0x9e, 0x8b, 0xcc, 0x9c, 0x8b, 0xcc, 0x9a, 0xbb, 0x9d, 0x31, 0xb7, + 0x29, 0xfa, 0x3a, 0x19, 0x2f, 0x9d, 0x31, 0x70, 0x07, 0x63, 0xa6, 0x84, 0x20, 0x42, 0x10, 0x21, + 0x48, 0x2c, 0x04, 0x39, 0xdc, 0xa1, 0x2e, 0x03, 0x91, 0x4d, 0xe3, 0x4b, 0xbf, 0x73, 0x11, 0x5d, + 0x26, 0x97, 0x5f, 0x92, 0xfe, 0xe0, 0x6b, 0xea, 0x30, 0x11, 0x7f, 0x78, 0x61, 0x3c, 0x21, 0x9e, + 0x10, 0x4f, 0xe8, 0x99, 0x27, 0x74, 0x57, 0xc0, 0x70, 0x59, 0xb8, 0xb8, 0x3f, 0xe0, 0x5f, 0xfc, + 0x27, 0x4b, 0xa2, 0x8b, 0xce, 0xd5, 0x97, 0xb8, 0x73, 0x9f, 0xe3, 0xbc, 0x75, 0x32, 0xe3, 0xff, + 0x7e, 0x51, 0xbe, 0x6e, 0x0d, 0x12, 0x58, 0x5b, 0x24, 0x90, 0x25, 0xd1, 0x65, 0x92, 0xf5, 0xd3, + 0xa6, 0xbb, 0xf8, 0x77, 0x77, 0x49, 0x22, 0x1f, 0x91, 0x8f, 0xc8, 0xe7, 0x59, 0xe4, 0x1b, 0xa6, + 0xdd, 0x6c, 0xa7, 0xee, 0x30, 0xf0, 0xb9, 0x88, 0x7b, 0x6e, 0xa5, 0x5e, 0xdd, 0x4a, 0x21, 0x0a, + 0xb4, 0xd0, 0x88, 0xe8, 0x7f, 0x4a, 0x49, 0xb9, 0x4a, 0xaa, 0x7d, 0xde, 0xb8, 0x15, 0x96, 0x0c, + 0xee, 0x53, 0xed, 0xd6, 0x5f, 0xed, 0xbe, 0xda, 0x7f, 0x59, 0x7f, 0xb5, 0x17, 0xd0, 0x37, 0xf3, + 0xa4, 0xab, 0xe5, 0x9c, 0xfe, 0x8b, 0x65, 0xe8, 0x0e, 0x8b, 0xfe, 0x8b, 0x12, 0x7d, 0x32, 0x2b, + 0xb4, 0x40, 0x6c, 0x08, 0x7e, 0x8f, 0xdb, 0x6c, 0xa8, 0x24, 0x83, 0x56, 0x0e, 0x26, 0x39, 0x81, + 0x45, 0x4e, 0x60, 0x50, 0x39, 0xd8, 0xb3, 0xec, 0x7b, 0x2f, 0x69, 0xff, 0x26, 0x76, 0x5f, 0x5b, + 0xa9, 0x19, 0x67, 0xf1, 0x0e, 0xa3, 0xe5, 0x76, 0xd4, 0xe2, 0xfb, 0x62, 0xb1, 0xbf, 0xb9, 0xe0, + 0x17, 0x5c, 0xf5, 0xcb, 0x29, 0x7e, 0xb1, 0xc5, 0xde, 0xe3, 0xaf, 0xdf, 0xca, 0xcf, 0xff, 0xc6, + 0x2f, 0xde, 0xd7, 0xb2, 0xef, 0x49, 0xe0, 0xfd, 0x2c, 0x60, 0xaf, 0x0b, 0xd8, 0xe7, 0xcf, 0xdf, + 0xe6, 0xfc, 0x77, 0xf4, 0x93, 0xf7, 0x53, 0xcb, 0xd7, 0xfb, 0xf9, 0x5b, 0x29, 0xa0, 0xcd, 0xe8, + 0x6f, 0xff, 0xe2, 0x6d, 0x2f, 0x96, 0xd0, 0x2d, 0x4c, 0x1a, 0x2c, 0x43, 0x0a, 0xdc, 0x07, 0xfd, + 0xdd, 0x24, 0xbb, 0xfd, 0x04, 0x8b, 0xbc, 0xf9, 0x25, 0x71, 0xfd, 0xca, 0xb8, 0x7d, 0x65, 0x5c, + 0xfe, 0x10, 0x77, 0x4f, 0x9e, 0x4d, 0x78, 0xdf, 0x2c, 0x0c, 0x8d, 0x57, 0x20, 0x7d, 0x97, 0x21, + 0x75, 0x1f, 0x51, 0x65, 0xfd, 0x35, 0x25, 0xbb, 0xda, 0x76, 0xe8, 0x5d, 0x75, 0xd2, 0xe6, 0xf7, + 0xa8, 0x7d, 0xd5, 0xff, 0x3b, 0xee, 0xb7, 0xd2, 0xee, 0xc5, 0xe2, 0x7b, 0x63, 0xf6, 0x57, 0x17, + 0xdb, 0x28, 0xdb, 0xc6, 0x1b, 0xa5, 0xd7, 0xae, 0xe4, 0x1e, 0xe9, 0xb5, 0xa5, 0xb7, 0xc7, 0xa2, + 0x5d, 0x8a, 0x77, 0x29, 0xed, 0xe2, 0xc7, 0x8d, 0xcd, 0x16, 0x94, 0x17, 0x65, 0x30, 0x97, 0x6c, + 0xf8, 0x5d, 0x9a, 0xbc, 0x5d, 0x85, 0xa4, 0x5d, 0xda, 0xdc, 0xca, 0x52, 0xae, 0xa5, 0xa9, 0xd5, + 0xd2, 0x14, 0xea, 0x2a, 0xe6, 0x28, 0x93, 0x25, 0x2e, 0xdb, 0x4c, 0x5b, 0x62, 0xa6, 0xbd, 0xf4, + 0xec, 0xfa, 0x8a, 0xdd, 0xea, 0x2b, 0x57, 0x20, 0xca, 0x54, 0x1c, 0x56, 0x36, 0xea, 0xb2, 0xc6, + 0xed, 0xcc, 0xc8, 0x9d, 0x19, 0xbb, 0x0b, 0xa3, 0xd7, 0x21, 0x19, 0x56, 0xed, 0x2c, 0x2f, 0xab, + 0xec, 0xec, 0x46, 0xd1, 0xb9, 0x6a, 0x82, 0xea, 0x3d, 0x04, 0xd5, 0xb5, 0xb6, 0x95, 0x0d, 0xb7, + 0x5a, 0x7e, 0x90, 0xa3, 0xd7, 0xeb, 0xdc, 0xcf, 0xa9, 0xa3, 0x71, 0x96, 0xed, 0x70, 0xa8, 0x63, + 0xce, 0x02, 0x54, 0xd6, 0xc5, 0x37, 0xb0, 0xeb, 0x8d, 0x2c, 0xb6, 0xa1, 0xc5, 0x36, 0xb6, 0xc4, + 0x06, 0x2f, 0xb7, 0xd1, 0x4b, 0x6e, 0xf8, 0xe5, 0xa9, 0x03, 0x01, 0x6a, 0xc1, 0x25, 0xf5, 0xb0, + 0x0c, 0x35, 0x51, 0xfc, 0x67, 0xe4, 0x42, 0xd2, 0x64, 0x30, 0xfe, 0x87, 0xef, 0x13, 0xce, 0x22, + 0x27, 0x08, 0x56, 0x3d, 0x46, 0xa6, 0xfc, 0x87, 0x65, 0xa0, 0x01, 0x97, 0x8b, 0xcb, 0xc5, 0xe5, + 0x1a, 0xec, 0xce, 0x4d, 0x2f, 0x86, 0x19, 0xe8, 0x2b, 0x78, 0x31, 0xc3, 0x52, 0xbf, 0xb8, 0x27, + 0xb6, 0x72, 0xd7, 0x57, 0x50, 0x46, 0x6e, 0x95, 0x03, 0x1c, 0x01, 0xe7, 0x80, 0x73, 0xff, 0x1d, + 0x14, 0x87, 0x37, 0x7a, 0xe8, 0xcc, 0x38, 0xbc, 0x51, 0xc8, 0x9d, 0x71, 0x78, 0xe3, 0x4a, 0xee, + 0x8c, 0xc3, 0x1b, 0x57, 0x36, 0x3a, 0x0e, 0x6f, 0xd4, 0xda, 0x9e, 0xc0, 0x5a, 0x89, 0xed, 0xeb, + 0x07, 0xac, 0x45, 0xaa, 0xbd, 0xfc, 0xe5, 0xd0, 0xe9, 0x45, 0xa7, 0x57, 0xc9, 0x59, 0xb8, 0x71, + 0x1a, 0x8e, 0x9c, 0x87, 0x7b, 0x6e, 0x4c, 0x00, 0xfa, 0x48, 0x40, 0xa1, 0xb9, 0xd0, 0x08, 0xa9, + 0x76, 0xa4, 0xda, 0x09, 0x01, 0x84, 0x00, 0x42, 0x00, 0x21, 0x00, 0xa9, 0x76, 0x7d, 0x34, 0xc3, + 0xe1, 0x8d, 0x1c, 0xde, 0xf8, 0xab, 0x67, 0xf1, 0x5a, 0xcd, 0x7f, 0xc1, 0xfa, 0x21, 0x87, 0x37, + 0x3e, 0x9e, 0x28, 0x72, 0x78, 0x23, 0x8c, 0x20, 0x8c, 0x20, 0x8c, 0x20, 0x70, 0x10, 0x38, 0x08, + 0x1c, 0x04, 0x0e, 0xc2, 0x08, 0xc2, 0x08, 0x12, 0x02, 0x08, 0x01, 0x84, 0x00, 0x42, 0x00, 0x8c, + 0xe0, 0x3a, 0x32, 0x82, 0x15, 0xa4, 0x7b, 0x38, 0xbc, 0x31, 0xc0, 0xaf, 0x26, 0x77, 0x78, 0xe3, + 0xe9, 0xe8, 0x6e, 0xde, 0x16, 0x37, 0xc3, 0x41, 0x8e, 0x06, 0xb4, 0x9f, 0x77, 0x07, 0x39, 0x32, + 0x5e, 0xb0, 0x52, 0x3a, 0xc6, 0xec, 0x3f, 0xb3, 0xff, 0x76, 0xb8, 0x8c, 0x41, 0x54, 0x06, 0x51, + 0xf5, 0x70, 0x15, 0xb3, 0xff, 0x0e, 0xd3, 0x62, 0x66, 0xff, 0x71, 0xb9, 0xb8, 0x5c, 0x5c, 0xae, + 0xfe, 0xee, 0xdc, 0x64, 0xf6, 0x3f, 0x28, 0x5a, 0x80, 0x33, 0x05, 0xee, 0x5f, 0x82, 0x33, 0x05, + 0x82, 0x3f, 0x53, 0x60, 0x31, 0xbb, 0x77, 0x7f, 0xa6, 0xc0, 0x7c, 0xe2, 0x8b, 0xf3, 0x05, 0xdc, + 0x7c, 0x3d, 0x67, 0xe7, 0x0b, 0x2c, 0xa0, 0x80, 0x7d, 0xfb, 0x3c, 0xd1, 0x20, 0xe9, 0x24, 0xa3, + 0x63, 0x7f, 0xa2, 0x8b, 0xfe, 0xd5, 0xb0, 0xb7, 0x82, 0xa0, 0xf3, 0xe3, 0x97, 0x41, 0xdb, 0x59, + 0x2f, 0xdf, 0x5c, 0x67, 0x6d, 0xe7, 0xc7, 0xac, 0x6f, 0x75, 0x99, 0xe7, 0x47, 0xaf, 0x86, 0xe2, + 0xb3, 0x18, 0xf4, 0x42, 0xf1, 0x19, 0xc5, 0x67, 0x5d, 0x46, 0x83, 0xaa, 0x8f, 0x09, 0x53, 0xb1, + 0xc6, 0x55, 0x9f, 0x51, 0x10, 0x71, 0x4a, 0x34, 0x16, 0x57, 0x84, 0x64, 0x84, 0x64, 0x84, 0x64, + 0xf4, 0x88, 0x64, 0x1c, 0x64, 0xfd, 0x5f, 0x9f, 0x93, 0x14, 0x06, 0xbd, 0x58, 0x22, 0xaa, 0x5d, + 0xf6, 0x3a, 0x83, 0xa8, 0x33, 0xe8, 0xb9, 0xf3, 0x78, 0xc5, 0x15, 0xf1, 0x78, 0x78, 0x3c, 0x3c, + 0x9e, 0x47, 0x1e, 0x2f, 0xa0, 0x4a, 0xf6, 0xf3, 0xe7, 0xe3, 0xa3, 0x3d, 0x3b, 0x83, 0xde, 0xe0, + 0x45, 0xf3, 0xaa, 0x3b, 0xc8, 0xfa, 0x71, 0xda, 0x4d, 0x5a, 0xd1, 0x2d, 0xea, 0x7f, 0x91, 0x0d, + 0xbb, 0xdd, 0xa4, 0x33, 0xc8, 0xff, 0x77, 0xf1, 0x63, 0xf9, 0xa4, 0x3f, 0x59, 0x29, 0xba, 0x7e, + 0xe6, 0x6a, 0x2e, 0xe8, 0xfb, 0xd9, 0x8b, 0x3a, 0xa0, 0xf3, 0x67, 0x2e, 0x5a, 0x8a, 0xde, 0x77, + 0x18, 0x07, 0x29, 0xb3, 0x3d, 0x42, 0x58, 0x3f, 0xca, 0xf9, 0x3e, 0xfa, 0xa7, 0x01, 0x08, 0x6f, + 0x97, 0x06, 0x68, 0xae, 0x80, 0x19, 0x82, 0xdb, 0x70, 0x23, 0x08, 0x6e, 0x1b, 0xa6, 0x0f, 0x8f, + 0x08, 0x6e, 0x17, 0x5b, 0x9a, 0x66, 0xfe, 0x85, 0xde, 0x3e, 0xcd, 0xfc, 0xb8, 0xae, 0x10, 0x5c, + 0x17, 0xb4, 0x2e, 0x24, 0x07, 0x24, 0x07, 0x24, 0xc7, 0x82, 0x91, 0x11, 0x5a, 0x17, 0x5a, 0x17, + 0x8f, 0x87, 0xc7, 0x5b, 0x17, 0x8f, 0x07, 0xad, 0x2b, 0xfc, 0xc9, 0xa0, 0x75, 0xa1, 0x75, 0x97, + 0x07, 0xfa, 0xfe, 0xd0, 0xba, 0xd5, 0x9b, 0xa9, 0x58, 0x11, 0x7e, 0x31, 0x4f, 0xb1, 0x59, 0xc1, + 0x79, 0x8a, 0xc5, 0x77, 0x82, 0xc2, 0x94, 0xc5, 0x6d, 0xd4, 0x3b, 0x9b, 0xac, 0xfa, 0x6e, 0xb4, + 0x28, 0xe3, 0x16, 0xae, 0x3f, 0xae, 0xea, 0xe4, 0x45, 0x3e, 0x53, 0xbd, 0xc2, 0xb0, 0xc5, 0xe4, + 0x37, 0x99, 0xaf, 0xd0, 0x43, 0x28, 0x6b, 0x3d, 0x5f, 0xb1, 0x9a, 0x44, 0xc9, 0xb4, 0xc1, 0x7e, + 0x67, 0x86, 0x42, 0x0e, 0x90, 0x33, 0x43, 0xc1, 0x0c, 0x85, 0x2e, 0xcf, 0x45, 0xb1, 0xcd, 0x84, + 0xbf, 0x5a, 0xe3, 0x62, 0xdb, 0x9d, 0xda, 0x8c, 0x33, 0xee, 0xf9, 0xee, 0x92, 0x90, 0xcf, 0x90, + 0xcf, 0x90, 0xcf, 0x1e, 0x91, 0xcf, 0x15, 0x2a, 0xb7, 0x41, 0x33, 0x3e, 0x86, 0xbf, 0x1f, 0x95, + 0x14, 0xf3, 0xb9, 0xc3, 0xaa, 0x7c, 0xfc, 0x71, 0x16, 0x77, 0x68, 0x12, 0x25, 0xf9, 0xa3, 0x49, + 0xb4, 0x6c, 0x40, 0x70, 0xdb, 0x24, 0x5a, 0x52, 0x0c, 0x51, 0xc7, 0x87, 0xf5, 0x87, 0x9d, 0x25, + 0x18, 0xc7, 0xb9, 0x1f, 0x61, 0x7c, 0x19, 0x80, 0x2b, 0xbe, 0x0b, 0xe0, 0xba, 0xd8, 0xa6, 0x73, + 0x87, 0x59, 0x47, 0x57, 0xf3, 0xec, 0xb0, 0x45, 0xe0, 0x2a, 0x70, 0x35, 0x24, 0xb8, 0xea, 0xec, + 0xb0, 0xc5, 0xb8, 0xe9, 0xec, 0x8c, 0x93, 0x29, 0xe3, 0xcd, 0xaf, 0xeb, 0xf6, 0x8c, 0xad, 0xed, + 0x35, 0x3d, 0x63, 0xab, 0xc7, 0x19, 0x5b, 0x16, 0x67, 0x6c, 0xf5, 0x2a, 0x7b, 0xc6, 0x96, 0x2b, + 0xf7, 0x51, 0x5c, 0xb0, 0x64, 0x45, 0xe9, 0x97, 0x9b, 0xa0, 0x54, 0xa5, 0x49, 0xc9, 0xad, 0x88, + 0xb9, 0x17, 0x49, 0x37, 0x23, 0xee, 0x6e, 0xa4, 0xdd, 0x8e, 0x9a, 0xfb, 0x51, 0x73, 0x43, 0x1a, + 0xee, 0xc8, 0xad, 0x5b, 0x72, 0xec, 0x9e, 0xc4, 0xdc, 0x54, 0x71, 0xe1, 0x56, 0xd2, 0x8c, 0x7b, + 0x83, 0x61, 0x27, 0xce, 0x92, 0xe8, 0xa2, 0x2f, 0x68, 0x94, 0x93, 0x5d, 0xf5, 0x70, 0x41, 0x21, + 0x8b, 0xf9, 0x23, 0x69, 0xc7, 0xc3, 0xce, 0xc8, 0x60, 0xda, 0x71, 0x67, 0x20, 0xb6, 0x8e, 0xdb, + 0x33, 0x4f, 0xd5, 0x1c, 0xa8, 0x86, 0x23, 0x55, 0x73, 0xa8, 0x5a, 0x8e, 0x55, 0xdd, 0xc1, 0xaa, + 0x3b, 0x5a, 0x4d, 0x87, 0x2b, 0xe3, 0x78, 0x85, 0x1c, 0x70, 0xf1, 0x62, 0x9c, 0x9f, 0xc9, 0x3a, + 0x77, 0xb7, 0x7c, 0xb9, 0xba, 0xea, 0x24, 0x71, 0x57, 0x72, 0xbf, 0x4c, 0xb2, 0xbe, 0xed, 0x8d, + 0x30, 0x3e, 0xac, 0xc0, 0x47, 0xad, 0xb5, 0xd2, 0x41, 0x33, 0xee, 0xb7, 0x14, 0x02, 0x5f, 0xbe, + 0x10, 0x01, 0x8f, 0x80, 0x47, 0xc0, 0x23, 0xe0, 0x11, 0xf0, 0x08, 0x78, 0x16, 0x01, 0xef, 0x61, + 0x43, 0x8f, 0x7c, 0xe4, 0x9b, 0x59, 0x91, 0xd0, 0x44, 0x68, 0x22, 0x34, 0x11, 0x9a, 0x82, 0x09, + 0x4d, 0xee, 0xe4, 0x13, 0x7e, 0x19, 0x9a, 0x5e, 0x0a, 0xae, 0x31, 0x47, 0x6e, 0xa1, 0xf8, 0x8f, + 0x33, 0x35, 0x85, 0xd0, 0x23, 0xe4, 0xb7, 0x2c, 0xfa, 0x7a, 0xd5, 0xd3, 0x88, 0x8c, 0xf9, 0x4a, + 0x44, 0x44, 0x22, 0x22, 0x11, 0x91, 0x88, 0x18, 0x4c, 0x44, 0x4c, 0x7b, 0x51, 0xdc, 0x6a, 0xf5, + 0x93, 0xc1, 0x40, 0x23, 0x28, 0xbe, 0x12, 0x5c, 0x23, 0x7f, 0x67, 0x9f, 0x45, 0x4d, 0x56, 0x76, + 0xcb, 0x3f, 0xf8, 0x32, 0xd7, 0xbb, 0x0a, 0xdf, 0x66, 0xe6, 0x1b, 0xfd, 0xa6, 0xb0, 0xd6, 0x69, + 0x9c, 0x65, 0x49, 0xbf, 0x2b, 0xfe, 0xb9, 0x8a, 0x05, 0xff, 0xe7, 0xc9, 0x93, 0xcf, 0x5b, 0xd1, + 0xab, 0xf3, 0x1f, 0x9f, 0xb7, 0xa3, 0x57, 0xe7, 0xe3, 0x7f, 0xdc, 0x1e, 0xfd, 0xcf, 0xf8, 0x9f, + 0xeb, 0x9f, 0xb7, 0xa2, 0xdd, 0xc9, 0x3f, 0xef, 0x7d, 0xde, 0x8a, 0xf6, 0xce, 0x9f, 0xfe, 0xe7, + 0x3f, 0xcf, 0x9f, 0xfe, 0xb3, 0x73, 0xb3, 0xfc, 0x2f, 0xfe, 0x57, 0x4d, 0xfc, 0xa1, 0xce, 0x45, + 0x57, 0xb8, 0x79, 0x56, 0xa1, 0x4d, 0xb4, 0xcf, 0x26, 0x72, 0xbb, 0x89, 0xe2, 0xa8, 0x7d, 0x10, + 0xbd, 0x3d, 0xff, 0x67, 0xfb, 0xd9, 0xee, 0xcd, 0xeb, 0xa7, 0xff, 0xbc, 0xbc, 0x79, 0xf8, 0x87, + 0x3f, 0x1e, 0xfb, 0x6b, 0xdb, 0xcf, 0x5e, 0xde, 0xbc, 0x9e, 0xf3, 0x6f, 0xf6, 0x6f, 0x5e, 0x2f, + 0x78, 0x8d, 0xbd, 0x9b, 0x27, 0x33, 0x7f, 0xf5, 0xf6, 0xcf, 0xeb, 0xf3, 0x7e, 0x61, 0x77, 0xce, + 0x2f, 0xec, 0xcc, 0xfb, 0x85, 0x9d, 0x39, 0xbf, 0x30, 0xf7, 0x96, 0xea, 0x73, 0x7e, 0x61, 0xef, + 0xe6, 0xc7, 0xcc, 0xdf, 0x7f, 0xf2, 0xf8, 0x5f, 0xdd, 0xbf, 0x79, 0xfa, 0x63, 0xde, 0xbf, 0x7b, + 0x79, 0xf3, 0xe3, 0xf5, 0xd3, 0x0a, 0xb8, 0x94, 0x8d, 0xb0, 0xee, 0x3b, 0x0c, 0x84, 0xeb, 0xe4, + 0x94, 0xdd, 0xa5, 0x9d, 0xaa, 0x23, 0xb9, 0x2d, 0x90, 0x2f, 0xc8, 0x17, 0xe4, 0x0b, 0xf2, 0x35, + 0x42, 0xbe, 0xeb, 0xc0, 0x05, 0x2f, 0x7d, 0x1e, 0x54, 0xc9, 0x73, 0x55, 0x0c, 0xa2, 0xaa, 0xd7, + 0xed, 0xbe, 0x8e, 0x94, 0x1f, 0xe6, 0x5e, 0x5f, 0x5b, 0x11, 0x62, 0x34, 0x64, 0x3c, 0xfa, 0xef, + 0x17, 0xe3, 0x71, 0xa8, 0x52, 0x1a, 0x11, 0xf2, 0xdf, 0xd4, 0xe1, 0xf7, 0xac, 0x25, 0x5d, 0xd9, + 0x0e, 0xeb, 0xc2, 0x31, 0x3d, 0x5c, 0x88, 0x11, 0x11, 0x46, 0x44, 0xac, 0x33, 0x25, 0x46, 0x44, + 0xd4, 0x62, 0x86, 0xd8, 0x88, 0x88, 0xd0, 0x44, 0xdb, 0xcc, 0x66, 0x12, 0x99, 0x6c, 0x13, 0x76, + 0x5f, 0x00, 0x42, 0x00, 0x21, 0x80, 0xd0, 0x47, 0x40, 0x28, 0xe5, 0x0e, 0x8b, 0x05, 0xd2, 0x56, + 0xd2, 0xcd, 0xd2, 0xf6, 0xf7, 0xb4, 0x7b, 0x11, 0xf5, 0xe4, 0x37, 0xe7, 0xd4, 0x06, 0x7d, 0x64, + 0x6d, 0x61, 0x3b, 0x93, 0xe5, 0xd3, 0xd4, 0xdc, 0xa8, 0xa6, 0x3b, 0x55, 0x77, 0xab, 0xda, 0xee, + 0xd5, 0xcc, 0xcd, 0x9a, 0xb9, 0x5b, 0x0b, 0xb7, 0x2b, 0xeb, 0x7e, 0x85, 0xdd, 0xb0, 0x1e, 0x3f, + 0x37, 0xeb, 0x23, 0x7b, 0x91, 0x9a, 0x31, 0x6a, 0x34, 0xaa, 0x3c, 0x7c, 0x95, 0x3a, 0xc5, 0x5b, + 0x1d, 0x0f, 0xb2, 0x39, 0xd3, 0xc0, 0xa2, 0xea, 0x47, 0x36, 0x95, 0x4b, 0xf0, 0x77, 0x51, 0x48, + 0xb9, 0x14, 0x5f, 0x2c, 0xac, 0xda, 0xd7, 0xf2, 0x22, 0x5f, 0xec, 0xe9, 0x8f, 0x27, 0x9f, 0xb7, + 0xa3, 0xfa, 0xf9, 0xe4, 0xff, 0xec, 0x7c, 0xde, 0x8a, 0xea, 0xe7, 0x2a, 0x45, 0xea, 0xc9, 0xcf, + 0xb9, 0xca, 0x4a, 0x37, 0xcf, 0x2a, 0xbc, 0x37, 0xf7, 0xd9, 0x9b, 0x2a, 0x7b, 0x93, 0x76, 0x19, + 0xfd, 0x76, 0x99, 0x17, 0x4f, 0xb6, 0x6f, 0x1d, 0xd8, 0x6f, 0x63, 0x9f, 0xb6, 0x7d, 0x3e, 0xe3, + 0xea, 0xc6, 0xae, 0xab, 0x7a, 0x0e, 0x8b, 0x2e, 0xa1, 0x4a, 0x90, 0x1e, 0xc2, 0x75, 0xc3, 0x62, + 0x1d, 0xfb, 0xfa, 0xe1, 0x83, 0x62, 0x97, 0x48, 0x3d, 0x51, 0xce, 0x06, 0x24, 0x7a, 0xba, 0xc6, + 0x27, 0x78, 0x8a, 0xb3, 0xf4, 0xe3, 0x65, 0x02, 0x27, 0xe9, 0xeb, 0x90, 0xf4, 0xde, 0xb0, 0x48, + 0x90, 0xf4, 0xeb, 0x1b, 0xaf, 0x20, 0xe9, 0x25, 0xdc, 0x27, 0x24, 0xbd, 0xc7, 0x6e, 0x55, 0xdb, + 0xbd, 0x9a, 0xb9, 0x59, 0x33, 0x77, 0x6b, 0xe1, 0x76, 0x75, 0x80, 0x14, 0x24, 0xbd, 0x93, 0xec, + 0x12, 0x92, 0xde, 0x09, 0x11, 0x08, 0x49, 0xaf, 0x43, 0x04, 0x42, 0xd2, 0x87, 0xe8, 0x4c, 0x6d, + 0xf7, 0x26, 0x24, 0xbd, 0xce, 0xde, 0x84, 0xa4, 0x87, 0xa4, 0x87, 0xa4, 0xb7, 0xbe, 0x7f, 0x48, + 0xfa, 0xc7, 0xd6, 0xf1, 0x8f, 0xa4, 0x1f, 0x73, 0xc7, 0x6b, 0xcc, 0xd1, 0x67, 0x71, 0xff, 0x22, + 0xc9, 0x06, 0xf2, 0x2c, 0xfd, 0x64, 0x21, 0x9a, 0xe9, 0xad, 0x88, 0x25, 0x78, 0xfa, 0xe0, 0x88, + 0x23, 0x78, 0xfa, 0x79, 0x2f, 0x46, 0x9c, 0xa7, 0x1f, 0xfb, 0x2b, 0x3d, 0x6e, 0x3e, 0x5f, 0x4f, + 0x87, 0x8f, 0xdf, 0x86, 0x8f, 0xf7, 0xd7, 0x7d, 0x6a, 0xbb, 0x51, 0x33, 0x77, 0x6a, 0xe6, 0x56, + 0x2d, 0xdc, 0xab, 0x0e, 0x66, 0x92, 0xe6, 0xe3, 0xa5, 0xdd, 0x6e, 0xb1, 0x90, 0xf0, 0x88, 0xe7, + 0xdc, 0xcd, 0x2d, 0x3a, 0xf2, 0x69, 0xe4, 0x8e, 0xd5, 0xdd, 0xb2, 0x85, 0x7b, 0x36, 0x73, 0xd3, + 0x56, 0xee, 0xda, 0xdc, 0x6d, 0x9b, 0xbb, 0x6f, 0x4b, 0x37, 0xae, 0x47, 0x81, 0x6d, 0xea, 0x55, + 0x06, 0xd4, 0xdc, 0x7b, 0xb1, 0x60, 0x2b, 0x19, 0x64, 0x69, 0x57, 0x9e, 0x7a, 0xfa, 0xa9, 0xa7, + 0xb8, 0x7f, 0x13, 0xca, 0x96, 0xab, 0xd3, 0x1f, 0x63, 0x1e, 0x08, 0x2c, 0x03, 0x82, 0x79, 0x60, + 0xb0, 0x0e, 0x10, 0xde, 0x04, 0x0a, 0x6f, 0x02, 0x86, 0x0f, 0x81, 0x43, 0x37, 0x80, 0x28, 0x07, + 0x92, 0xe2, 0x05, 0xab, 0xf5, 0xef, 0xcc, 0xdd, 0xed, 0x9a, 0xfd, 0x3c, 0x73, 0xf3, 0xfb, 0x57, + 0x06, 0x6b, 0xab, 0xf6, 0xfb, 0x3c, 0xfc, 0xb1, 0xf1, 0x70, 0x9b, 0xf6, 0xfd, 0x40, 0x73, 0x4d, + 0xe0, 0x37, 0xc3, 0x7b, 0xb0, 0xea, 0x49, 0x98, 0xb9, 0x91, 0x75, 0xed, 0x1f, 0x7a, 0xf8, 0x73, + 0x6e, 0xb2, 0xf2, 0xcd, 0xb3, 0x35, 0xf6, 0x05, 0xfb, 0xf8, 0x02, 0x2f, 0x7d, 0x01, 0xfd, 0x4a, + 0xf4, 0x2b, 0x79, 0xe3, 0x20, 0x37, 0xaa, 0xfd, 0x9c, 0x7a, 0xcf, 0xa7, 0x18, 0x6a, 0x6a, 0x69, + 0xcb, 0x8e, 0x3a, 0x4a, 0x5b, 0x30, 0x46, 0x30, 0x46, 0x30, 0x46, 0x30, 0x46, 0x30, 0x46, 0x55, + 0x61, 0x8c, 0x06, 0x59, 0x3f, 0xed, 0x5e, 0x58, 0xd2, 0x45, 0xbf, 0x91, 0x15, 0x94, 0xcf, 0x0a, + 0x7a, 0x51, 0x96, 0x75, 0x0c, 0x33, 0x83, 0xf1, 0xfa, 0x64, 0x07, 0x64, 0x07, 0x64, 0x07, 0x64, + 0x07, 0x64, 0x07, 0x15, 0xc9, 0x0e, 0x86, 0x69, 0x37, 0xfb, 0xcd, 0x30, 0x39, 0xd8, 0x33, 0x58, + 0xfa, 0x43, 0xdc, 0xbd, 0x58, 0xcb, 0x5a, 0xd2, 0xfb, 0xb4, 0x6b, 0xe6, 0x5e, 0x8d, 0x63, 0xfa, + 0xcc, 0x6d, 0x7c, 0x8a, 0x3b, 0xc3, 0xc4, 0x83, 0xfb, 0x78, 0xdb, 0x1f, 0xcf, 0x72, 0xfd, 0x91, + 0x5e, 0xa4, 0xa3, 0xc1, 0xa5, 0x2d, 0xb3, 0xfb, 0xb9, 0x31, 0xe4, 0xf1, 0xdf, 0xc7, 0xdf, 0x30, + 0xcd, 0x07, 0xa6, 0x59, 0xdf, 0xdb, 0xc3, 0x38, 0x6d, 0x12, 0x01, 0xbb, 0x55, 0xa1, 0xd0, 0xcb, + 0x9b, 0xed, 0xc0, 0xa8, 0x75, 0xb9, 0xa0, 0x5c, 0xc6, 0xeb, 0x03, 0x96, 0x01, 0xcb, 0x80, 0x65, + 0xc0, 0x32, 0x60, 0xb9, 0x22, 0x60, 0x39, 0xed, 0x45, 0x71, 0xab, 0xd5, 0x4f, 0x06, 0x03, 0xba, + 0x2f, 0xd7, 0x03, 0x31, 0x4f, 0x75, 0x5f, 0xda, 0x7d, 0xfb, 0x19, 0x1b, 0xa0, 0xe5, 0x4a, 0xbb, + 0xfd, 0x92, 0xf6, 0xca, 0x75, 0xda, 0xec, 0xfb, 0x6c, 0x76, 0x3f, 0x37, 0x3b, 0xfd, 0x95, 0xfa, + 0xfd, 0x95, 0x34, 0x4e, 0xc2, 0xfa, 0x78, 0xbd, 0x92, 0xd6, 0x3c, 0xb1, 0x92, 0xb0, 0xdc, 0x2c, + 0x9f, 0xe5, 0x9d, 0xd0, 0x5c, 0x2e, 0x7f, 0x96, 0xff, 0xaf, 0xe8, 0xe1, 0x30, 0xfa, 0x26, 0xa5, + 0x60, 0x4e, 0x9a, 0x5d, 0xbe, 0xfa, 0xdd, 0xbd, 0xca, 0x54, 0x24, 0x42, 0x20, 0xa2, 0x0b, 0x23, + 0x04, 0x82, 0x10, 0x48, 0xe0, 0x81, 0x5b, 0x9d, 0x3a, 0x2c, 0x76, 0x6b, 0x27, 0x89, 0xdb, 0xfd, + 0xa4, 0x6d, 0x21, 0x13, 0xfe, 0x52, 0x57, 0x26, 0x7c, 0x94, 0x9b, 0x3c, 0x7f, 0x9e, 0xe7, 0x02, + 0x2f, 0xd2, 0x16, 0xe9, 0xc0, 0x12, 0x19, 0x9e, 0xe8, 0xd9, 0x72, 0x73, 0xad, 0x53, 0xf2, 0xac, + 0xb9, 0xb9, 0x76, 0xa9, 0x9d, 0x14, 0xd4, 0x49, 0x0a, 0x48, 0x0a, 0x48, 0x0a, 0x48, 0x0a, 0x1e, + 0xbc, 0x48, 0xd4, 0xc1, 0x68, 0x50, 0xa9, 0x5a, 0x40, 0x30, 0x0f, 0x0c, 0xd6, 0x01, 0xc2, 0x9b, + 0x40, 0xe1, 0x4d, 0xc0, 0xf0, 0x21, 0x70, 0xe8, 0x06, 0x10, 0xe5, 0x40, 0x62, 0x87, 0x32, 0x67, + 0x76, 0x3b, 0xea, 0x60, 0x16, 0x3b, 0x0b, 0x75, 0xb0, 0x87, 0x26, 0x40, 0xc5, 0x1a, 0x75, 0xb0, + 0xe2, 0x87, 0xf6, 0x15, 0x75, 0x5f, 0x80, 0x3a, 0x98, 0x9f, 0xbe, 0x80, 0xee, 0x15, 0xd4, 0xc1, + 0xbc, 0x71, 0x90, 0x34, 0xb9, 0x84, 0x17, 0x6a, 0x50, 0x07, 0x83, 0x31, 0x82, 0x31, 0x82, 0x31, + 0x82, 0x31, 0x82, 0x31, 0x72, 0xb2, 0xdb, 0x51, 0x07, 0xab, 0x44, 0x56, 0x80, 0x3a, 0x18, 0xd9, + 0x01, 0xd9, 0x01, 0xd9, 0x01, 0xd9, 0x01, 0xd9, 0x81, 0xc3, 0xdd, 0x8e, 0x3a, 0x98, 0xf6, 0x0f, + 0xea, 0x60, 0xa8, 0x83, 0xdd, 0xbb, 0x0f, 0xd4, 0xc1, 0x36, 0x51, 0x07, 0x7b, 0xdc, 0x34, 0x51, + 0x07, 0x33, 0x4b, 0x04, 0xec, 0x56, 0x85, 0x42, 0x2f, 0x6f, 0xb6, 0xa8, 0x83, 0x01, 0x96, 0x01, + 0xcb, 0x80, 0x65, 0xc0, 0x32, 0x60, 0xd9, 0xe5, 0x6e, 0x47, 0x1d, 0x0c, 0x75, 0x30, 0x04, 0x83, + 0x50, 0x07, 0xab, 0x34, 0x24, 0x30, 0x66, 0x03, 0x50, 0x07, 0x63, 0xb3, 0xff, 0x64, 0xb3, 0xd3, + 0x5f, 0x89, 0x3a, 0x18, 0xac, 0x4f, 0x38, 0xac, 0x0f, 0xea, 0x60, 0x2e, 0xf8, 0x2c, 0xdf, 0xd5, + 0xc1, 0xc6, 0x2a, 0x13, 0x55, 0x51, 0x03, 0xd9, 0x08, 0xd8, 0x56, 0x6b, 0xff, 0x4a, 0xbe, 0xab, + 0x74, 0xf2, 0xd6, 0x8e, 0xd3, 0x41, 0x76, 0x90, 0x65, 0x3a, 0x13, 0xf6, 0xb5, 0xf7, 0x69, 0xf7, + 0xb0, 0x93, 0x5c, 0x26, 0xdd, 0x51, 0x19, 0xa2, 0x3b, 0xec, 0x74, 0x14, 0x34, 0x5b, 0xde, 0xc7, + 0xdf, 0xf4, 0x17, 0xfd, 0xb3, 0xdf, 0x4a, 0xfa, 0x49, 0xeb, 0xcd, 0xf7, 0x7c, 0xc9, 0xa0, 0xad, + 0x51, 0xd9, 0x63, 0x7a, 0xef, 0x29, 0x6b, 0x2a, 0x4a, 0x43, 0xfd, 0x61, 0x33, 0xeb, 0xe6, 0x60, + 0xe6, 0x64, 0xfc, 0x50, 0x47, 0xf9, 0x33, 0x35, 0x4e, 0x47, 0x37, 0xfe, 0xb6, 0x78, 0xa4, 0xfc, + 0x0f, 0x1a, 0x1f, 0x86, 0x9d, 0xa4, 0x71, 0x30, 0x7a, 0x86, 0xc6, 0xe1, 0xdd, 0x33, 0xbc, 0xeb, + 0x27, 0x8d, 0x8f, 0xe3, 0x5b, 0xdf, 0x08, 0xd3, 0xe9, 0xca, 0x5c, 0x59, 0x68, 0xe3, 0x68, 0x6d, + 0x18, 0x7f, 0x37, 0x8a, 0x8c, 0x99, 0xb9, 0x37, 0x02, 0xb7, 0x57, 0x74, 0x6c, 0x4e, 0xd2, 0x66, + 0xe4, 0x9f, 0xf9, 0x08, 0x38, 0x56, 0xe7, 0x8e, 0xd4, 0xad, 0x69, 0xbb, 0x33, 0x40, 0x87, 0xc6, + 0x27, 0x24, 0x73, 0x27, 0x2a, 0x67, 0x27, 0x24, 0x5b, 0x27, 0x26, 0x4f, 0x27, 0x59, 0xf8, 0x16, + 0x2f, 0x6c, 0x4b, 0x17, 0xae, 0xd5, 0x0a, 0xd3, 0x6a, 0x85, 0x67, 0x8d, 0xc2, 0xb2, 0xdf, 0xc1, + 0x4c, 0x4a, 0xc6, 0xad, 0xd6, 0x4a, 0xa6, 0x63, 0x88, 0x98, 0x51, 0xde, 0x49, 0xb3, 0x49, 0x07, + 0xad, 0xf1, 0x0b, 0x4b, 0xda, 0xf1, 0xb0, 0x33, 0x32, 0x98, 0x76, 0xdc, 0x19, 0x88, 0xad, 0x23, + 0xdb, 0x71, 0x24, 0xde, 0x59, 0xa4, 0xd1, 0x41, 0xa4, 0xd6, 0x29, 0xa4, 0xd5, 0x11, 0xa4, 0xde, + 0xf9, 0xa3, 0xde, 0xe1, 0xa3, 0xd9, 0xc9, 0x13, 0x16, 0x38, 0x15, 0xef, 0xc0, 0x29, 0x76, 0xcb, + 0x97, 0xab, 0xab, 0x4e, 0x12, 0x4b, 0xea, 0x57, 0x16, 0x59, 0xdf, 0x76, 0x28, 0x80, 0x53, 0x20, + 0x19, 0x6b, 0xa5, 0x83, 0x66, 0xdc, 0x6f, 0x29, 0x04, 0xbe, 0x7c, 0x21, 0x02, 0x1e, 0x01, 0x8f, + 0x80, 0x47, 0xc0, 0x23, 0xe0, 0x11, 0xf0, 0x2c, 0x02, 0xde, 0x43, 0xea, 0x51, 0x3e, 0xf2, 0xcd, + 0xac, 0x48, 0x68, 0x22, 0x34, 0x11, 0x9a, 0x08, 0x4d, 0xc1, 0x84, 0x26, 0xf9, 0x03, 0x8e, 0x34, + 0x0e, 0x34, 0xba, 0x7f, 0x80, 0xd1, 0xa3, 0xff, 0xc9, 0x4f, 0x35, 0x1a, 0x95, 0x7b, 0xd6, 0x3a, + 0x42, 0x7e, 0xcb, 0xa2, 0xaf, 0x57, 0x3d, 0x8d, 0xc8, 0x98, 0xaf, 0x44, 0x44, 0x24, 0x22, 0x12, + 0x11, 0x89, 0x88, 0xc1, 0x44, 0x44, 0x95, 0x39, 0x40, 0x8d, 0x79, 0x3f, 0x9d, 0xb9, 0x3e, 0x85, + 0xbe, 0x3f, 0xa3, 0x39, 0x3d, 0xcd, 0x11, 0x1d, 0xf5, 0x51, 0x9c, 0xca, 0xcd, 0xd7, 0x9d, 0x87, + 0xdc, 0x4a, 0xab, 0xbb, 0x89, 0xf6, 0xd9, 0x44, 0x6e, 0x37, 0x11, 0x73, 0x6b, 0x95, 0x9c, 0x5b, + 0x3b, 0x0f, 0xb4, 0x29, 0xfa, 0x7c, 0x8d, 0x11, 0x6e, 0x2f, 0xce, 0xbe, 0x46, 0x83, 0xa4, 0x93, + 0x8c, 0x7a, 0x34, 0xa3, 0x8b, 0xfe, 0xd5, 0x50, 0x01, 0xed, 0x3e, 0xba, 0x2a, 0xc8, 0x17, 0xe4, + 0x0b, 0xf2, 0x05, 0xf9, 0x06, 0x83, 0x7c, 0xd7, 0x81, 0x0b, 0x7e, 0xcc, 0x53, 0x0f, 0x1e, 0xfd, + 0xd3, 0x09, 0x67, 0x3c, 0xfa, 0x3f, 0x91, 0xd4, 0x79, 0xf8, 0xcc, 0xae, 0xb8, 0xfd, 0xf8, 0xf6, + 0xb3, 0x2b, 0x02, 0xe3, 0xd2, 0x0e, 0xa7, 0x41, 0x36, 0x3c, 0x32, 0x0a, 0x29, 0x63, 0xb0, 0x37, + 0x82, 0x9a, 0xd3, 0xa1, 0x9b, 0x92, 0x83, 0x4a, 0x6e, 0x6c, 0xb1, 0xbc, 0xe5, 0x38, 0xb0, 0x9a, + 0x5a, 0x73, 0x92, 0x9d, 0xba, 0xb1, 0x96, 0x22, 0xf4, 0xe5, 0xd7, 0x75, 0x64, 0xd7, 0x6e, 0x67, + 0x8e, 0x9c, 0xa7, 0xe4, 0x12, 0x29, 0xb8, 0x58, 0xca, 0x2d, 0x95, 0x62, 0x8b, 0xa7, 0xd4, 0xe2, + 0x29, 0xb4, 0x64, 0xca, 0xec, 0x57, 0x9c, 0x70, 0x3d, 0x23, 0x54, 0x1b, 0x24, 0xff, 0x3b, 0x4c, + 0xba, 0xcd, 0x24, 0x12, 0x38, 0x8f, 0xef, 0x6e, 0x9c, 0xf1, 0xde, 0x22, 0x32, 0x43, 0x8d, 0x5b, + 0x52, 0x43, 0x8d, 0x5b, 0x0c, 0x35, 0xaa, 0x61, 0x7c, 0x86, 0x1a, 0xab, 0x87, 0x72, 0xc4, 0x30, + 0xfb, 0xd4, 0xd1, 0x2e, 0x3b, 0x75, 0x09, 0x73, 0xcf, 0x7d, 0x8b, 0x00, 0x42, 0x17, 0x3e, 0x9b, + 0x45, 0x90, 0x21, 0xd1, 0x38, 0x5b, 0x45, 0x49, 0xe2, 0x5d, 0xeb, 0x6c, 0x14, 0xcd, 0xe3, 0x25, + 0x04, 0xab, 0xb3, 0x2a, 0x67, 0x97, 0x68, 0x7f, 0xfa, 0xdd, 0xfa, 0xab, 0xdd, 0x57, 0xfb, 0x2f, + 0xeb, 0xaf, 0xf6, 0x2a, 0x64, 0x03, 0x81, 0xd0, 0x73, 0xe7, 0x30, 0x43, 0xeb, 0xc9, 0x0c, 0xe5, + 0x14, 0x43, 0x85, 0xc8, 0x98, 0xb4, 0x77, 0xbd, 0xeb, 0x9e, 0x8a, 0x19, 0x5d, 0x15, 0x22, 0xc6, + 0x09, 0x1e, 0xfa, 0xbf, 0x59, 0x74, 0x19, 0x67, 0xcd, 0xaf, 0xf0, 0x31, 0x16, 0x7c, 0x4c, 0xf1, + 0xf6, 0xa1, 0x65, 0x16, 0xbb, 0xa0, 0x63, 0x76, 0x77, 0x66, 0x4b, 0x38, 0x65, 0x79, 0x85, 0x9c, + 0x4c, 0x75, 0xc8, 0x18, 0x01, 0xe7, 0x03, 0x27, 0xe3, 0xb1, 0x73, 0x0a, 0x83, 0x9a, 0x11, 0xd4, + 0x9b, 0x1a, 0x64, 0x69, 0x77, 0x94, 0xb3, 0x16, 0xfd, 0xb5, 0x0a, 0x9a, 0x53, 0xb3, 0x8b, 0xd2, + 0x77, 0xa6, 0xed, 0xf6, 0xb4, 0xdd, 0x9f, 0x96, 0x1b, 0x54, 0x77, 0x87, 0xea, 0x6e, 0xd1, 0xc0, + 0x3d, 0x0a, 0x13, 0x16, 0x15, 0x98, 0xbf, 0xba, 0xde, 0x8d, 0xc4, 0xad, 0x4c, 0x63, 0x2e, 0x41, + 0x6d, 0x1e, 0x41, 0x77, 0x98, 0xe7, 0x45, 0xbe, 0xd8, 0xd3, 0x1f, 0x4f, 0x3e, 0x6f, 0x47, 0xf5, + 0xf3, 0xc9, 0xff, 0xd9, 0xf9, 0xbc, 0x15, 0xd5, 0xcf, 0x45, 0x3b, 0xf3, 0xd7, 0xb9, 0xb3, 0xbd, + 0x35, 0x68, 0x2a, 0x74, 0xb2, 0x8f, 0x56, 0x21, 0x83, 0x20, 0x83, 0x20, 0x83, 0x20, 0x83, 0x08, + 0x34, 0x83, 0x10, 0xf4, 0x61, 0xf7, 0xfd, 0x98, 0x60, 0xf1, 0x4c, 0xb8, 0x52, 0x3e, 0xf9, 0xd1, + 0x39, 0xda, 0x47, 0xed, 0x38, 0x2d, 0xe5, 0x43, 0xd2, 0xb5, 0x2a, 0xe9, 0xc5, 0x7a, 0x8a, 0xd5, + 0x54, 0x61, 0x67, 0x30, 0x6d, 0x22, 0xf1, 0xb7, 0xca, 0x9b, 0xc8, 0xfe, 0x4e, 0x85, 0x6d, 0x84, + 0x31, 0xd9, 0xe0, 0xc0, 0xc4, 0xd7, 0xab, 0x5e, 0xd4, 0x49, 0x2f, 0xd3, 0x4c, 0x1e, 0x51, 0xdc, + 0x2d, 0x05, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0x81, 0xc2, 0x8a, 0x61, 0xda, 0xcd, 0x7e, + 0x03, 0x57, 0x80, 0x2b, 0xc0, 0x15, 0xe0, 0x0a, 0x4f, 0x4c, 0xa4, 0xbe, 0xb7, 0x07, 0xb0, 0x00, + 0x58, 0xf8, 0x03, 0x2c, 0x7a, 0xfd, 0xab, 0xec, 0xaa, 0x79, 0xd5, 0x51, 0xd0, 0xdc, 0x99, 0xac, + 0x04, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0x81, 0xc2, 0x8a, 0xb4, 0x17, 0x4d, 0x5c, 0x59, + 0x94, 0xdd, 0xae, 0x8a, 0xea, 0xac, 0x17, 0x08, 0x43, 0x0b, 0xf6, 0x29, 0xc2, 0x3f, 0x65, 0x18, + 0xa8, 0xf7, 0xb1, 0x4c, 0x60, 0xa1, 0x51, 0xee, 0x6f, 0x05, 0x13, 0x2d, 0x91, 0x80, 0x22, 0x6c, + 0x34, 0x81, 0x8f, 0xbe, 0x98, 0x52, 0x7d, 0x6f, 0x77, 0x8d, 0x8c, 0x69, 0xa3, 0x1a, 0xab, 0xa0, + 0x7c, 0xbd, 0x60, 0xa2, 0xd5, 0x4a, 0xba, 0x59, 0x9a, 0x7d, 0x97, 0x95, 0x38, 0x9c, 0xc9, 0xb5, + 0x34, 0xe2, 0xf9, 0x51, 0xfe, 0x68, 0x6f, 0xe2, 0x41, 0xa2, 0xc7, 0x79, 0x4d, 0x5e, 0xec, 0xd1, + 0x69, 0xe3, 0xf4, 0xc3, 0x9f, 0x1f, 0xff, 0xfc, 0xfd, 0xcf, 0xe3, 0x9a, 0x26, 0xff, 0x35, 0x50, + 0xcb, 0x60, 0x74, 0xb3, 0x98, 0x87, 0x2f, 0xf7, 0xdd, 0x87, 0xc3, 0x5a, 0x15, 0x43, 0xac, 0xdd, + 0x1b, 0xfd, 0xf8, 0xfb, 0x29, 0x6f, 0xd4, 0xad, 0x03, 0x38, 0x7a, 0xcf, 0x1b, 0x75, 0xfa, 0x46, + 0x8f, 0x7e, 0x7f, 0x8f, 0x91, 0xba, 0x7d, 0xa5, 0x7f, 0xfd, 0xc1, 0x1b, 0x75, 0xfb, 0x46, 0x8f, + 0xeb, 0x1f, 0x79, 0xa5, 0x8e, 0xf7, 0xfd, 0x3b, 0xf6, 0xbd, 0xe3, 0x57, 0xfa, 0xe1, 0xec, 0x13, + 0xaf, 0xd4, 0xed, 0x2b, 0x3d, 0xf8, 0xeb, 0xe3, 0xff, 0xa9, 0x55, 0x0c, 0xaa, 0x9f, 0x53, 0xd1, + 0x56, 0x7d, 0x33, 0x61, 0x54, 0xb4, 0x07, 0xa3, 0x9a, 0xa3, 0xde, 0x48, 0xff, 0x83, 0xf5, 0xa8, + 0x6e, 0x3f, 0xba, 0x00, 0xd5, 0xed, 0x12, 0xdf, 0x9e, 0xea, 0x76, 0x20, 0xbe, 0x97, 0x69, 0xfe, + 0xe5, 0xdc, 0x19, 0xd3, 0xfc, 0x4c, 0xf3, 0x73, 0xa2, 0x8e, 0xe3, 0xfc, 0xc7, 0x4e, 0x32, 0xf3, + 0xd6, 0x79, 0x38, 0xd5, 0xcd, 0x74, 0xff, 0x45, 0x6f, 0x9c, 0x9e, 0xf4, 0x12, 0x67, 0x89, 0xe0, + 0x79, 0x04, 0xa3, 0xcb, 0x07, 0x26, 0x7e, 0x57, 0x47, 0xfc, 0x4e, 0x3b, 0x4f, 0x44, 0xfc, 0xae, + 0xb2, 0xb1, 0x02, 0xf1, 0x3b, 0xe0, 0x32, 0x70, 0x19, 0xb8, 0x0c, 0x5c, 0x06, 0x2e, 0x03, 0x97, + 0x81, 0xcb, 0x88, 0xdf, 0x6d, 0x22, 0x7e, 0x47, 0x06, 0x41, 0x06, 0x41, 0x06, 0x51, 0x95, 0x0c, + 0x02, 0xf1, 0xbb, 0x05, 0x7f, 0x10, 0xa9, 0x28, 0xb5, 0x1c, 0x22, 0x15, 0x6e, 0x4c, 0x04, 0xf1, + 0xbb, 0xb0, 0x6d, 0x84, 0x8e, 0x9e, 0xe0, 0xc0, 0x04, 0xe2, 0x77, 0xc0, 0x0a, 0x60, 0x05, 0xb0, + 0x02, 0x58, 0xb1, 0xf8, 0xde, 0x41, 0xfc, 0x0e, 0x5c, 0x01, 0xae, 0x00, 0x57, 0xf8, 0x64, 0x22, + 0x88, 0xdf, 0x01, 0x2c, 0xbc, 0x02, 0x16, 0x88, 0xdf, 0x01, 0x2b, 0x80, 0x15, 0xc0, 0x0a, 0x60, + 0xc5, 0xa2, 0x7b, 0x07, 0xf1, 0x3b, 0x3f, 0x11, 0x06, 0xe2, 0x77, 0xe1, 0x7c, 0x2c, 0x13, 0x58, + 0x68, 0x94, 0xfb, 0x5b, 0xc1, 0x44, 0x4b, 0x24, 0xa0, 0x08, 0x1b, 0x4d, 0xe0, 0xa3, 0x2f, 0xa6, + 0x84, 0xf8, 0x5d, 0x80, 0xab, 0x20, 0x7e, 0xb7, 0x60, 0xa2, 0x85, 0xf8, 0x9d, 0xcc, 0x8b, 0x45, + 0xfc, 0x4e, 0xf6, 0xe5, 0x22, 0x7e, 0xe7, 0xfa, 0x8d, 0x22, 0x7e, 0xe7, 0xdc, 0x01, 0x20, 0x7e, + 0xe7, 0xf8, 0x8d, 0x22, 0x7e, 0xe7, 0xfc, 0x95, 0x22, 0x7e, 0xe7, 0xfa, 0x8d, 0x22, 0x7e, 0xe7, + 0x7e, 0xdf, 0x23, 0x7e, 0xe7, 0xfa, 0x95, 0x22, 0x7e, 0xe7, 0xfc, 0x95, 0x22, 0x7e, 0xe7, 0xdf, + 0x73, 0x50, 0xd1, 0x46, 0xfc, 0x6e, 0x49, 0x76, 0x82, 0xea, 0xf6, 0x02, 0x5f, 0x84, 0xea, 0x76, + 0xc9, 0x05, 0xa9, 0x6e, 0xfb, 0x95, 0x4a, 0x30, 0xcd, 0xbf, 0x92, 0xcb, 0x61, 0x9a, 0x7f, 0x4d, + 0xb3, 0x0a, 0xc4, 0xef, 0x0c, 0xc5, 0xef, 0xc6, 0x9a, 0x6d, 0xbe, 0x6a, 0xdf, 0x6d, 0x78, 0x64, + 0x12, 0x52, 0xa6, 0x60, 0x6d, 0x02, 0x35, 0xa7, 0x02, 0x83, 0xfd, 0x61, 0x33, 0xeb, 0xe6, 0xd1, + 0xe9, 0x64, 0x7c, 0x6f, 0x47, 0xf9, 0xad, 0x35, 0x4e, 0x47, 0xeb, 0xbf, 0x2d, 0xee, 0x2c, 0xff, + 0x83, 0xc6, 0x87, 0x61, 0x27, 0x69, 0x1c, 0xdd, 0xde, 0xca, 0x86, 0x1f, 0x56, 0xe3, 0xc0, 0x62, + 0x6e, 0x43, 0xf3, 0xbe, 0x33, 0x3b, 0xb9, 0x1f, 0xf0, 0xf7, 0x1d, 0x7d, 0x30, 0xc7, 0xca, 0x8a, + 0xce, 0x41, 0x89, 0x04, 0x08, 0x91, 0x06, 0x1d, 0x52, 0x20, 0x43, 0x1c, 0x54, 0x88, 0x83, 0x08, + 0x05, 0xd0, 0xe0, 0x57, 0xb4, 0x70, 0xad, 0x84, 0x58, 0x6b, 0x4e, 0xf6, 0x97, 0x90, 0x7a, 0x6b, + 0x7e, 0xfd, 0xc0, 0xe4, 0x5b, 0xb7, 0x90, 0x6f, 0xd5, 0x66, 0x3a, 0x90, 0x6f, 0xad, 0x2c, 0xda, + 0x41, 0xbe, 0xb5, 0x9c, 0x9b, 0x83, 0xf0, 0xb5, 0x77, 0x7f, 0x5a, 0x6e, 0x50, 0xdd, 0x1d, 0xaa, + 0xbb, 0x45, 0x03, 0xf7, 0x28, 0x47, 0x33, 0x6d, 0x56, 0x85, 0xf0, 0xdd, 0x87, 0xf0, 0x5d, 0x6e, + 0xa1, 0x9c, 0xf0, 0x8d, 0xa3, 0xf6, 0x41, 0xf4, 0xf6, 0xfc, 0x9f, 0xed, 0x67, 0xbb, 0x37, 0xaf, + 0x9f, 0xfe, 0xf3, 0xf2, 0xe6, 0xe1, 0x1f, 0xfe, 0x78, 0xec, 0xaf, 0x6d, 0x3f, 0x7b, 0x79, 0xf3, + 0x7a, 0xce, 0xbf, 0xd9, 0xbf, 0x79, 0xbd, 0xe0, 0x35, 0xf6, 0x6e, 0x9e, 0xcc, 0xfc, 0xd5, 0xdb, + 0x3f, 0xaf, 0xcf, 0xfb, 0x85, 0xdd, 0x39, 0xbf, 0xb0, 0x33, 0xef, 0x17, 0x76, 0xe6, 0xfc, 0xc2, + 0xdc, 0x5b, 0xaa, 0xcf, 0xf9, 0x85, 0xbd, 0x9b, 0x1f, 0x33, 0x7f, 0xff, 0xc9, 0xe3, 0x7f, 0x75, + 0xff, 0xe6, 0xe9, 0x8f, 0x79, 0xff, 0xee, 0xe5, 0xcd, 0x8f, 0xd7, 0x4f, 0x9f, 0xbe, 0x78, 0xb2, + 0x5d, 0xff, 0xbc, 0x15, 0xfd, 0x36, 0x26, 0xca, 0xb7, 0xcf, 0x67, 0xf8, 0xf3, 0x31, 0x1f, 0x0e, + 0x0b, 0x2e, 0xa3, 0x69, 0x7b, 0x2f, 0xff, 0x69, 0x77, 0xae, 0xfe, 0x8e, 0x3a, 0xf1, 0x97, 0xa4, + 0xa3, 0x9b, 0x77, 0xdd, 0x5b, 0x97, 0xd4, 0x8b, 0xd4, 0x8b, 0xd4, 0x8b, 0xd4, 0x2b, 0xe4, 0xd4, + 0x4b, 0xdc, 0x9d, 0xdd, 0x77, 0x69, 0x2f, 0x91, 0xaa, 0xfa, 0xf5, 0x83, 0x20, 0x55, 0xe5, 0x6e, + 0x3d, 0xa4, 0xaa, 0x82, 0x35, 0x91, 0xed, 0xad, 0xdd, 0xdf, 0xf6, 0x5e, 0x22, 0x57, 0xe5, 0xdd, + 0xd5, 0x39, 0x54, 0x83, 0x43, 0x35, 0x00, 0x17, 0x80, 0x0b, 0xc0, 0x05, 0xe0, 0xc2, 0xc4, 0x87, + 0x6d, 0x22, 0x7e, 0x0b, 0xa2, 0x00, 0x51, 0x80, 0x28, 0x96, 0x34, 0x11, 0x0e, 0xd5, 0x00, 0x4c, + 0xf8, 0x04, 0x26, 0x38, 0x54, 0x03, 0x58, 0x01, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x16, 0xdf, 0x3b, + 0x1c, 0xaa, 0x01, 0xae, 0x00, 0x57, 0x80, 0x2b, 0x7c, 0x32, 0x11, 0x0e, 0xd5, 0x00, 0x58, 0x78, + 0x05, 0x2c, 0x38, 0x54, 0x03, 0x58, 0x01, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x16, 0xdd, 0x3b, 0x1c, + 0xaa, 0xe1, 0x27, 0xc2, 0xe0, 0x50, 0x8d, 0x70, 0x3e, 0x96, 0x09, 0x2c, 0x34, 0xca, 0xfd, 0xad, + 0x60, 0xa2, 0x25, 0x12, 0x50, 0x84, 0x8d, 0x26, 0xf0, 0xd1, 0x17, 0x53, 0xe2, 0x50, 0x8d, 0x00, + 0x57, 0xe1, 0x50, 0x8d, 0x05, 0x13, 0x2d, 0x0e, 0xd5, 0x90, 0x79, 0xb1, 0x1c, 0xaa, 0x21, 0xfb, + 0x72, 0x39, 0x54, 0xc3, 0xf5, 0x1b, 0xe5, 0x50, 0x0d, 0xe7, 0x0e, 0x80, 0x43, 0x35, 0x1c, 0xbf, + 0x51, 0x0e, 0xd5, 0x70, 0xfe, 0x4a, 0x39, 0x54, 0xc3, 0xf5, 0x1b, 0xe5, 0x50, 0x0d, 0xf7, 0xfb, + 0x9e, 0x43, 0x35, 0x5c, 0xbf, 0x52, 0x0e, 0xd5, 0x70, 0xfe, 0x4a, 0x39, 0x54, 0xc3, 0xbf, 0xe7, + 0xa0, 0xa2, 0xcd, 0xa1, 0x1a, 0x4b, 0xb2, 0x13, 0x54, 0xb7, 0x17, 0xf8, 0x22, 0x54, 0xb7, 0x4b, + 0x2e, 0x48, 0x75, 0xdb, 0xaf, 0x54, 0x02, 0x8d, 0xb5, 0x95, 0x5c, 0x0e, 0x1a, 0x6b, 0x68, 0xac, + 0xa1, 0xb1, 0x26, 0x9f, 0x6a, 0x69, 0xca, 0xab, 0xcd, 0x2e, 0x49, 0xc2, 0x45, 0xc2, 0x45, 0xc2, + 0x45, 0xc2, 0x15, 0x72, 0xc2, 0x85, 0xb2, 0x9a, 0x67, 0x34, 0x1a, 0xf3, 0x4a, 0x0e, 0xd7, 0x63, + 0x5e, 0x29, 0x58, 0x13, 0x41, 0x59, 0xcd, 0xd3, 0xab, 0x73, 0xc0, 0xa1, 0x93, 0x34, 0xa8, 0xd2, + 0x07, 0x1c, 0xee, 0xbf, 0xc8, 0x8f, 0x35, 0xf2, 0xf5, 0x84, 0x43, 0xa7, 0x87, 0xef, 0xc5, 0x59, + 0x22, 0x77, 0x3e, 0xd4, 0xf8, 0xf2, 0x81, 0x1d, 0x0f, 0x55, 0xe7, 0x78, 0x28, 0x6d, 0x08, 0xc9, + 0xf1, 0x50, 0x95, 0x8d, 0x15, 0x1c, 0x0f, 0x05, 0x93, 0x06, 0x93, 0x06, 0x93, 0x06, 0x93, 0xe6, + 0x33, 0x93, 0x46, 0xe9, 0x72, 0xa9, 0x85, 0x28, 0x5d, 0x52, 0xba, 0xf4, 0x9f, 0x43, 0xe0, 0x78, + 0x28, 0x52, 0x2f, 0x52, 0x2f, 0x52, 0x2f, 0x52, 0x2f, 0x9f, 0x53, 0x2f, 0x8a, 0x98, 0x4b, 0xfd, + 0x50, 0xc4, 0x2c, 0xb5, 0x1c, 0x45, 0x4c, 0x37, 0x26, 0x42, 0x11, 0xb3, 0x02, 0x86, 0x42, 0x11, + 0x33, 0x3c, 0x00, 0xc2, 0xf1, 0x50, 0x80, 0x0b, 0xc0, 0x05, 0xe0, 0x02, 0x70, 0x61, 0xe7, 0xc3, + 0x36, 0x91, 0x71, 0x07, 0x51, 0x80, 0x28, 0x40, 0x14, 0x4b, 0x9a, 0x08, 0xc7, 0x43, 0x01, 0x26, + 0x7c, 0x02, 0x13, 0x1c, 0x0f, 0x05, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0x8b, 0xef, 0x1d, + 0x8e, 0x87, 0x02, 0x57, 0x80, 0x2b, 0xc0, 0x15, 0x3e, 0x99, 0x08, 0xc7, 0x43, 0x01, 0x2c, 0xbc, + 0x02, 0x16, 0x1c, 0x0f, 0x05, 0xac, 0x00, 0x56, 0x00, 0x2b, 0x80, 0x15, 0x8b, 0xee, 0x1d, 0x8e, + 0x87, 0xf2, 0x13, 0x61, 0x70, 0x3c, 0x54, 0x38, 0x1f, 0xcb, 0x04, 0x16, 0x1a, 0xe5, 0xfe, 0x56, + 0x30, 0xd1, 0x12, 0x09, 0x28, 0xc2, 0x46, 0x13, 0xf8, 0xe8, 0x8b, 0x29, 0x71, 0x3c, 0x54, 0x80, + 0xab, 0x70, 0x3c, 0xd4, 0x82, 0x89, 0x16, 0xc7, 0x43, 0xc9, 0xbc, 0x58, 0x8e, 0x87, 0x92, 0x7d, + 0xb9, 0x1c, 0x0f, 0xe5, 0xfa, 0x8d, 0x72, 0x3c, 0x94, 0x73, 0x07, 0xc0, 0xf1, 0x50, 0x8e, 0xdf, + 0x28, 0xc7, 0x43, 0x39, 0x7f, 0xa5, 0x1c, 0x0f, 0xe5, 0xfa, 0x8d, 0x72, 0x3c, 0x94, 0xfb, 0x7d, + 0xcf, 0xf1, 0x50, 0xae, 0x5f, 0x29, 0xc7, 0x43, 0x39, 0x7f, 0xa5, 0x1c, 0x0f, 0xe5, 0xdf, 0x73, + 0x50, 0xd1, 0xe6, 0x78, 0xa8, 0x25, 0xd9, 0x09, 0xaa, 0xdb, 0x0b, 0x7c, 0x11, 0xaa, 0xdb, 0x25, + 0x17, 0xa4, 0xba, 0xed, 0x57, 0x2a, 0x81, 0xc6, 0xda, 0x4a, 0x2e, 0x07, 0x8d, 0x35, 0x34, 0xd6, + 0xd0, 0x58, 0x93, 0x4f, 0xb5, 0x38, 0x1e, 0x8a, 0x84, 0x8b, 0x84, 0x8b, 0x84, 0x8b, 0x84, 0x6b, + 0xd5, 0x84, 0x0b, 0x65, 0x35, 0xcf, 0x68, 0x34, 0xe6, 0x95, 0x1c, 0xae, 0xc7, 0xbc, 0x52, 0xb0, + 0x26, 0x82, 0xb2, 0x9a, 0xa7, 0x57, 0xe7, 0x78, 0x28, 0x27, 0x69, 0x50, 0xc5, 0x8f, 0x87, 0x1a, + 0x9f, 0x6a, 0xe4, 0xeb, 0xe9, 0x50, 0x1b, 0x1e, 0x99, 0x84, 0x94, 0x29, 0x58, 0x9b, 0x40, 0xcd, + 0xe9, 0x11, 0x5c, 0xfd, 0x61, 0x33, 0xeb, 0xe6, 0x89, 0xeb, 0xc9, 0xf8, 0xde, 0x8e, 0xf2, 0x5b, + 0x6b, 0x9c, 0x8e, 0xd6, 0x7f, 0x5b, 0xdc, 0x59, 0xfe, 0x07, 0x8d, 0x0f, 0xc3, 0x4e, 0xd2, 0x38, + 0xba, 0xbd, 0x95, 0x0d, 0x3f, 0xac, 0xc6, 0x81, 0xc5, 0xd4, 0x3a, 0x75, 0x67, 0x56, 0x52, 0x20, + 0x81, 0x4e, 0xdd, 0xd1, 0xc7, 0x72, 0x7c, 0xee, 0x98, 0x73, 0xae, 0x42, 0x82, 0x9b, 0x90, 0xe6, + 0x22, 0xa4, 0xb8, 0x07, 0x71, 0xae, 0x41, 0x9c, 0x5b, 0x50, 0xe0, 0x12, 0xfc, 0x8a, 0x14, 0xae, + 0xcf, 0x09, 0xab, 0x35, 0x27, 0xfb, 0x4b, 0xe8, 0x6c, 0xc3, 0xfc, 0xfa, 0x81, 0x1d, 0x6e, 0xb8, + 0xc5, 0xe1, 0x86, 0x5a, 0x4e, 0x48, 0xcd, 0x19, 0xa9, 0x39, 0x25, 0x45, 0xe7, 0x14, 0x06, 0xd2, + 0x51, 0x39, 0xdc, 0xf0, 0x32, 0x6e, 0xea, 0x1e, 0xb0, 0x73, 0xbb, 0x20, 0xf5, 0x1f, 0x6d, 0x77, + 0xa7, 0xed, 0xf6, 0xb4, 0xdc, 0x9f, 0xba, 0x1b, 0x54, 0x77, 0x87, 0x06, 0x6e, 0x51, 0x96, 0x0a, + 0x0b, 0xbf, 0xfe, 0x73, 0x19, 0x37, 0x85, 0x7b, 0x07, 0x37, 0xab, 0xd7, 0x70, 0x73, 0xbf, 0x21, + 0xe4, 0x61, 0x9f, 0x49, 0xfd, 0xe6, 0xe9, 0x3f, 0x7b, 0x37, 0x74, 0x7c, 0x88, 0x9f, 0xaa, 0x77, + 0x6b, 0xb9, 0x97, 0xf1, 0xe0, 0xff, 0xaa, 0x87, 0xfc, 0xf1, 0xaa, 0xc4, 0x7d, 0xe2, 0x3e, 0x71, + 0x9f, 0xb8, 0x4f, 0xdc, 0x27, 0xee, 0x13, 0xf7, 0x85, 0xe3, 0x7e, 0x92, 0x7d, 0x4d, 0xfa, 0x99, + 0xe4, 0xe6, 0x28, 0x36, 0xc6, 0xdd, 0x52, 0x44, 0x78, 0x22, 0x3c, 0x11, 0x9e, 0x08, 0x1f, 0x68, + 0x84, 0x2f, 0x1c, 0x19, 0x32, 0x91, 0x8b, 0xfe, 0x28, 0xcb, 0x44, 0x6e, 0xef, 0x2b, 0x0a, 0x4b, + 0xed, 0xa3, 0x13, 0xb9, 0xfa, 0x83, 0xad, 0xa3, 0x4e, 0xe4, 0xf6, 0xde, 0xce, 0x3e, 0x52, 0x91, + 0x22, 0xd6, 0xb4, 0x86, 0x52, 0x91, 0xfb, 0x7b, 0x7b, 0x3b, 0x7b, 0x88, 0x45, 0x86, 0xb6, 0x0a, + 0x62, 0x91, 0x8b, 0x85, 0x73, 0xc4, 0x22, 0x85, 0x5e, 0xec, 0xe1, 0xc7, 0xff, 0x73, 0xf8, 0xe1, + 0xe3, 0xbf, 0x4f, 0x0f, 0x91, 0x8a, 0x14, 0x7b, 0xb5, 0x8d, 0xf7, 0xa7, 0xc7, 0x67, 0x08, 0x1e, + 0x49, 0xbc, 0xd9, 0x83, 0x0f, 0x28, 0x49, 0x89, 0xbc, 0xd8, 0xe3, 0x63, 0xc4, 0xf9, 0x64, 0xde, + 0xec, 0xd1, 0xe9, 0xa7, 0x5d, 0xde, 0xac, 0xd0, 0x9b, 0xdd, 0xe7, 0xcd, 0x4a, 0xbc, 0xd9, 0x0f, + 0x7f, 0xfe, 0x8e, 0xe6, 0xb1, 0xc8, 0x9b, 0xfd, 0x74, 0x7c, 0x70, 0x82, 0x70, 0x9f, 0x5f, 0xcf, + 0xc1, 0x58, 0xa7, 0xa0, 0x9a, 0x8c, 0x4a, 0x13, 0xf1, 0xbd, 0xb5, 0xa8, 0x32, 0x3e, 0xba, 0x00, + 0x55, 0xc6, 0x12, 0xdf, 0x9e, 0x2a, 0x63, 0x20, 0x3e, 0x97, 0x3e, 0xa2, 0xe5, 0xdc, 0x19, 0x7d, + 0x44, 0xc4, 0x78, 0x37, 0x31, 0x5e, 0xa9, 0x75, 0xf8, 0xe1, 0x82, 0x44, 0x7b, 0xa2, 0x3d, 0xd1, + 0x9e, 0x68, 0x4f, 0xb4, 0x27, 0xda, 0x13, 0xed, 0xc5, 0xae, 0x88, 0x50, 0xd3, 0xc2, 0x2a, 0x3d, + 0x9d, 0xfa, 0x8b, 0x5c, 0xa0, 0xc1, 0x57, 0x9d, 0x26, 0xa7, 0x12, 0x42, 0x71, 0x96, 0xc8, 0x29, + 0x5d, 0x8c, 0x2f, 0x1f, 0x98, 0xd0, 0x45, 0x1d, 0xa1, 0x0b, 0xed, 0xdc, 0x0d, 0xa1, 0x8b, 0xca, + 0x46, 0x0a, 0x84, 0x2e, 0x80, 0xae, 0x40, 0x57, 0xa0, 0x2b, 0xd0, 0x15, 0xe8, 0x0a, 0x74, 0x5d, + 0x0f, 0xe8, 0x8a, 0xd0, 0x05, 0x71, 0x9f, 0xb8, 0x4f, 0xdc, 0x27, 0xee, 0x13, 0xf7, 0x89, 0xfb, + 0xc4, 0xfd, 0x12, 0x6f, 0x1e, 0xa1, 0x0b, 0x22, 0x3c, 0x11, 0x9e, 0x08, 0x4f, 0x84, 0x5f, 0xc1, + 0x91, 0x21, 0x74, 0xb1, 0xe8, 0x0f, 0x42, 0x17, 0xe5, 0x96, 0x42, 0xe8, 0x22, 0x9c, 0x44, 0x61, + 0xee, 0xb2, 0x08, 0x5d, 0x88, 0x5b, 0x13, 0x42, 0x17, 0x95, 0x37, 0x27, 0x84, 0x2e, 0xec, 0x37, + 0x1d, 0x42, 0x17, 0x2e, 0xd6, 0x42, 0xe8, 0xa2, 0x3a, 0x89, 0xcc, 0x26, 0x42, 0x17, 0xba, 0x6f, + 0x16, 0xa1, 0x0b, 0xa1, 0x17, 0x8b, 0xd0, 0x85, 0xd4, 0x9b, 0x45, 0xe8, 0x42, 0xf0, 0xcd, 0x22, + 0x74, 0x21, 0xf2, 0x66, 0x11, 0xba, 0x90, 0x7a, 0xb3, 0x08, 0x5d, 0xf8, 0xf7, 0x1c, 0x08, 0x5d, + 0x20, 0x74, 0x61, 0x4b, 0xf7, 0x50, 0x65, 0x5c, 0x65, 0x3d, 0xaa, 0x8c, 0xae, 0x16, 0xa4, 0xca, + 0xf8, 0xf3, 0xf7, 0x43, 0x1f, 0xd1, 0x2a, 0x2e, 0x87, 0x3e, 0xa2, 0xf5, 0x89, 0xf1, 0x08, 0x5d, + 0x10, 0xed, 0x89, 0xf6, 0x44, 0x7b, 0xa2, 0x3d, 0xd1, 0x9e, 0x68, 0xef, 0x41, 0xb4, 0x47, 0xe8, + 0xc2, 0x4c, 0xe8, 0x62, 0xac, 0xcf, 0xe0, 0xab, 0xce, 0xc5, 0x86, 0x47, 0x06, 0x21, 0x65, 0x08, + 0xb6, 0x06, 0x50, 0x73, 0x2a, 0x25, 0xd2, 0x1f, 0x36, 0xb3, 0x6e, 0x1e, 0x2f, 0x4e, 0xc6, 0x77, + 0x76, 0x94, 0xdf, 0x58, 0xe3, 0x74, 0xb4, 0xfa, 0xdb, 0xe2, 0xbe, 0xf2, 0x3f, 0x68, 0x7c, 0x18, + 0x76, 0x92, 0xc6, 0x71, 0xdd, 0x8d, 0x0d, 0x96, 0xb7, 0x18, 0x07, 0xd6, 0x52, 0x1b, 0x24, 0xff, + 0x3b, 0x4c, 0xba, 0xcd, 0x24, 0x4a, 0x5b, 0xce, 0x4c, 0xe5, 0x0e, 0x56, 0xdc, 0xbb, 0xb8, 0x23, + 0xcb, 0x76, 0x0b, 0x21, 0x9c, 0x43, 0x06, 0x09, 0x88, 0x30, 0x05, 0x09, 0x5c, 0xf6, 0xed, 0x48, + 0xe5, 0xfe, 0xe2, 0xb9, 0xbe, 0x78, 0x6e, 0x3f, 0x93, 0xcb, 0xb7, 0x6b, 0x15, 0x8d, 0x14, 0xce, + 0x93, 0xf2, 0xc2, 0x5a, 0x3b, 0x49, 0xdc, 0x76, 0xdb, 0x67, 0x56, 0x24, 0xdc, 0x2f, 0x1d, 0x5e, + 0xf3, 0x34, 0x0f, 0x66, 0xcf, 0x9f, 0xe7, 0x4a, 0x5a, 0x2f, 0xee, 0x7b, 0xad, 0x2a, 0x79, 0x7a, + 0xa7, 0xea, 0x59, 0x22, 0xaa, 0x59, 0x8e, 0xd5, 0xb2, 0x9c, 0xab, 0x64, 0xe1, 0xdd, 0xf1, 0xee, + 0x41, 0x79, 0x77, 0xd7, 0x7a, 0x56, 0xb5, 0x11, 0xa1, 0x95, 0xb4, 0xa2, 0xab, 0x66, 0x96, 0x8c, + 0x7a, 0xd5, 0x85, 0xb4, 0xf8, 0x1e, 0xac, 0x23, 0x23, 0xca, 0xb7, 0x25, 0x25, 0xca, 0xb7, 0x15, + 0xa8, 0x28, 0x5f, 0x1b, 0x35, 0x3e, 0x43, 0xb7, 0xa4, 0xe1, 0x9e, 0xc2, 0xe0, 0xb1, 0xc4, 0x98, + 0xe2, 0xc2, 0xda, 0x9b, 0x57, 0xc3, 0x6e, 0x96, 0xf4, 0xf7, 0x77, 0x25, 0x2c, 0x3e, 0x77, 0x2f, + 0x02, 0xb4, 0xb0, 0xf0, 0xe8, 0xa2, 0x20, 0x35, 0xaf, 0x31, 0x9a, 0xa8, 0x34, 0x3c, 0x56, 0x0c, + 0x8b, 0x49, 0xaf, 0xa3, 0x38, 0x18, 0x26, 0xd8, 0x2b, 0xaa, 0x32, 0x47, 0xa8, 0xfd, 0xe9, 0xb7, + 0x7f, 0xdb, 0xdd, 0xdd, 0x7f, 0xb9, 0xbb, 0xbb, 0xf5, 0x72, 0xe7, 0xe5, 0xd6, 0xab, 0xbd, 0xbd, + 0xed, 0x7d, 0xe9, 0x21, 0x27, 0x55, 0x6b, 0x08, 0xa4, 0x1a, 0x73, 0xbe, 0x06, 0xa2, 0xd7, 0x93, + 0x4c, 0xb8, 0xf7, 0x7f, 0x35, 0xf2, 0xed, 0xd1, 0x2a, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, + 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x6b, 0x92, 0x6d, + 0x4b, 0xb4, 0x43, 0xcc, 0x84, 0x43, 0xf7, 0x6d, 0x11, 0xe4, 0xda, 0xe4, 0xda, 0xe4, 0xda, 0xe4, + 0xda, 0xb9, 0x62, 0xdf, 0x4e, 0x5d, 0x30, 0xd1, 0x7e, 0x49, 0xa2, 0x4d, 0xa2, 0x4d, 0xa2, 0x5d, + 0xc9, 0x44, 0x7b, 0xb7, 0xfe, 0x6a, 0xf7, 0xd5, 0xfe, 0xcb, 0xfa, 0x2b, 0xd2, 0x6b, 0xd2, 0x6b, + 0xa7, 0x57, 0xa2, 0xb3, 0x7d, 0x6e, 0x67, 0xbb, 0xc3, 0xb9, 0x06, 0x3f, 0x3a, 0x0d, 0xb3, 0x7e, + 0xdc, 0x1d, 0xf4, 0xae, 0xfa, 0x99, 0xfb, 0x6e, 0xc3, 0xbb, 0x4b, 0x7b, 0xde, 0x71, 0x18, 0x4a, + 0x3f, 0xb9, 0xc0, 0x88, 0x29, 0x8d, 0x87, 0x0b, 0xe3, 0x1f, 0xf7, 0x23, 0xa2, 0x15, 0xef, 0x3f, + 0x6c, 0x4e, 0xf6, 0x97, 0x10, 0x35, 0x93, 0x5f, 0x3f, 0xb0, 0x43, 0x80, 0xb7, 0x38, 0x04, 0x18, + 0x72, 0x26, 0x00, 0xe7, 0x14, 0x06, 0x47, 0xa3, 0x72, 0x08, 0xb0, 0xd3, 0xf4, 0x68, 0xee, 0x26, + 0x9b, 0x59, 0x11, 0x61, 0x0f, 0x6d, 0x87, 0xa7, 0xed, 0xf8, 0xb4, 0x1c, 0xa0, 0xba, 0x23, 0x54, + 0x77, 0x88, 0x06, 0x8e, 0x51, 0x98, 0xb3, 0x08, 0x5e, 0xd8, 0xe3, 0xd6, 0x87, 0x45, 0xdd, 0xe1, + 0x65, 0xd4, 0x1f, 0x11, 0xc6, 0x1c, 0x16, 0xf4, 0xeb, 0x1f, 0xc5, 0xd3, 0x05, 0x06, 0x59, 0x3f, + 0xed, 0x5e, 0x68, 0x1e, 0x2c, 0xf0, 0x9b, 0xc2, 0x5a, 0x5a, 0x0a, 0x2c, 0xc5, 0x82, 0xff, 0xf3, + 0x64, 0xff, 0xf3, 0x56, 0xb4, 0x77, 0x3e, 0xf9, 0xaf, 0x9d, 0xf1, 0x3f, 0xfd, 0x18, 0xfd, 0xf7, + 0xff, 0xff, 0xf3, 0x56, 0xf4, 0xea, 0xb1, 0xff, 0x7e, 0xfa, 0x9f, 0xff, 0x3c, 0xff, 0xcf, 0x7f, + 0x9e, 0xaf, 0xf6, 0xbb, 0xff, 0x55, 0xe3, 0x88, 0x0e, 0x4f, 0x36, 0xd1, 0xc4, 0xc5, 0x7d, 0x49, + 0xfa, 0x1c, 0xbb, 0xe5, 0xf5, 0x27, 0x2b, 0x1e, 0x6c, 0x1d, 0x8f, 0xdd, 0xda, 0xe2, 0xcc, 0x2d, + 0x11, 0x53, 0xe2, 0xcc, 0xad, 0xca, 0x9b, 0x13, 0x67, 0x6e, 0xad, 0x55, 0x40, 0x4f, 0xba, 0xc3, + 0xcb, 0xa4, 0x3f, 0x2e, 0x59, 0x2a, 0xa6, 0xc6, 0xbb, 0x0a, 0x6b, 0x1d, 0x76, 0x87, 0x97, 0xb7, + 0xee, 0x8a, 0x73, 0x04, 0x64, 0xef, 0x57, 0x50, 0x63, 0x58, 0x87, 0x87, 0xbc, 0xbf, 0x18, 0x14, + 0xe4, 0xe3, 0x30, 0x13, 0x0a, 0x72, 0xf5, 0x6f, 0x0f, 0x05, 0x19, 0x88, 0xd7, 0x85, 0x82, 0x5c, + 0x3e, 0x92, 0x43, 0x41, 0x2e, 0x11, 0x68, 0xa0, 0x20, 0x5d, 0x2c, 0x08, 0x05, 0xb9, 0xce, 0x88, + 0x05, 0x0a, 0x32, 0x94, 0x4f, 0x76, 0xc7, 0x1b, 0x41, 0x41, 0x56, 0x9a, 0x33, 0x82, 0x82, 0x14, + 0x35, 0x25, 0x28, 0xc8, 0x20, 0x57, 0x21, 0xa0, 0x2f, 0x16, 0xd0, 0xa1, 0x20, 0xbd, 0x35, 0xe5, + 0x75, 0xa6, 0x20, 0xb3, 0x66, 0x2f, 0x6a, 0x77, 0xe2, 0x8b, 0x81, 0x3c, 0x01, 0x79, 0xb7, 0x14, + 0xf4, 0xe3, 0xe3, 0x10, 0x13, 0xfa, 0x71, 0xf5, 0x6f, 0x0f, 0xfd, 0x18, 0x88, 0xc7, 0x0d, 0x9f, + 0x7e, 0x4c, 0x5b, 0x49, 0x37, 0x4b, 0xb3, 0xef, 0x6e, 0x4f, 0x56, 0x98, 0x1b, 0xc2, 0x05, 0x93, + 0xe2, 0xda, 0x51, 0xfe, 0x28, 0x6f, 0xe2, 0x81, 0xc2, 0x26, 0x9d, 0xbc, 0xc0, 0x8f, 0xbf, 0x9f, + 0x36, 0xde, 0x1e, 0x1f, 0xbc, 0x3b, 0xab, 0x69, 0xcc, 0x54, 0x0f, 0x54, 0xc8, 0x06, 0x1d, 0xb0, + 0x36, 0xf5, 0x0a, 0x0f, 0x7f, 0x3f, 0x94, 0x27, 0xec, 0x14, 0x60, 0xaf, 0xc1, 0xab, 0x3b, 0xf8, + 0xfd, 0x5f, 0xbc, 0xba, 0xd5, 0x5e, 0xdd, 0xe9, 0xd9, 0xff, 0xe1, 0xd5, 0xad, 0xf6, 0xea, 0xce, + 0xfe, 0x7d, 0xc2, 0xab, 0x5b, 0x31, 0x5c, 0x1c, 0xf1, 0xea, 0x56, 0x7c, 0x75, 0xbf, 0xff, 0xf7, + 0x07, 0x5e, 0xdd, 0x6a, 0xaf, 0xee, 0xc3, 0xd9, 0x47, 0x5e, 0xdd, 0x6a, 0xaf, 0xee, 0xaf, 0x0f, + 0xef, 0x14, 0x5e, 0x9d, 0xe8, 0x0a, 0xe7, 0x20, 0xab, 0xd1, 0x67, 0x3d, 0x4e, 0x07, 0xd9, 0x41, + 0x96, 0xf5, 0x65, 0xd1, 0xd5, 0xfb, 0xb4, 0x7b, 0xd8, 0x49, 0x6e, 0x11, 0xee, 0x6d, 0xc2, 0xde, + 0x1d, 0x76, 0x3a, 0xb2, 0xc2, 0x51, 0x7a, 0x8b, 0xfd, 0xd9, 0x6f, 0x25, 0xfd, 0xa4, 0xf5, 0xe6, + 0x7b, 0xbe, 0x14, 0xe7, 0x2c, 0xbb, 0xa0, 0x43, 0xaa, 0x7b, 0xce, 0x72, 0x21, 0xb0, 0x93, 0x9f, + 0x86, 0x58, 0x5b, 0x07, 0xd1, 0x57, 0xa7, 0x27, 0x23, 0xce, 0x44, 0x24, 0x97, 0x27, 0x24, 0xce, + 0x10, 0x34, 0x52, 0x92, 0x22, 0x75, 0x24, 0x45, 0x66, 0xd6, 0x41, 0x52, 0x64, 0x69, 0x47, 0x89, + 0xa4, 0xc8, 0x26, 0x92, 0x22, 0x65, 0x1c, 0x1c, 0x05, 0x35, 0x7b, 0xc7, 0xa7, 0xe5, 0x00, 0xd5, + 0x1d, 0xa1, 0xba, 0x43, 0x34, 0x70, 0x8c, 0x61, 0xc2, 0x3e, 0xfa, 0xf9, 0x4b, 0xbd, 0x37, 0xfa, + 0xf9, 0x57, 0xfe, 0x3a, 0xf4, 0xf3, 0xd3, 0xcf, 0x2f, 0xe9, 0xda, 0x0c, 0x36, 0x11, 0xfd, 0xfc, + 0xa1, 0x7c, 0xb2, 0xe2, 0xc1, 0xe8, 0xe7, 0x97, 0x5f, 0x97, 0x7e, 0xfe, 0xca, 0x9a, 0x12, 0xfd, + 0xfc, 0x41, 0xae, 0x42, 0x40, 0x5f, 0x2c, 0xa0, 0xd3, 0xcf, 0xef, 0xad, 0x29, 0x23, 0x29, 0x82, + 0xa4, 0xc8, 0x82, 0x97, 0x87, 0x82, 0x5c, 0x61, 0x3d, 0x28, 0x48, 0x57, 0x0b, 0x42, 0x41, 0xfe, + 0xfc, 0xfd, 0x40, 0x41, 0x96, 0x7a, 0x6f, 0x50, 0x90, 0x2b, 0x7f, 0x1d, 0x28, 0x48, 0x28, 0xc8, + 0x8a, 0x21, 0x16, 0x28, 0xc8, 0x50, 0x3e, 0xd9, 0x1d, 0x6f, 0x04, 0x05, 0x59, 0x69, 0xce, 0x08, + 0x0a, 0x52, 0xd4, 0x94, 0xa0, 0x20, 0x83, 0x5c, 0x85, 0x80, 0xbe, 0x58, 0x40, 0x87, 0x82, 0xf4, + 0xd6, 0x94, 0x91, 0x14, 0x41, 0x52, 0x64, 0x81, 0xcb, 0x43, 0x3f, 0xae, 0xb0, 0x1e, 0xf4, 0xa3, + 0xab, 0x05, 0xa1, 0x1f, 0x7f, 0xfe, 0x7e, 0x90, 0x14, 0x59, 0x61, 0x0d, 0x24, 0x45, 0xc2, 0x22, + 0x1a, 0x90, 0x14, 0x71, 0xf3, 0xea, 0x90, 0x14, 0x59, 0xf9, 0xd5, 0x21, 0x29, 0xb2, 0xf2, 0xab, + 0x43, 0x52, 0x64, 0xf5, 0x70, 0x81, 0xa4, 0xc8, 0xaa, 0xaf, 0x0e, 0x49, 0x91, 0x95, 0x5f, 0x1d, + 0x92, 0x22, 0x2b, 0xbf, 0x3a, 0x24, 0x45, 0x2a, 0x83, 0xac, 0x90, 0x14, 0x29, 0xb7, 0x18, 0x92, + 0x22, 0x48, 0x8a, 0xac, 0x26, 0x29, 0x32, 0x56, 0xc2, 0xf0, 0x55, 0x51, 0x64, 0xc3, 0x23, 0xbb, + 0x90, 0xb2, 0x07, 0x2f, 0xec, 0xa0, 0xe6, 0x54, 0xbb, 0xa5, 0x3f, 0x6c, 0x66, 0xdd, 0x3c, 0x52, + 0x9f, 0x8c, 0x6f, 0xf0, 0x28, 0xbf, 0xbf, 0xc6, 0xe9, 0xe8, 0x26, 0xde, 0x16, 0xb7, 0x97, 0xff, + 0x41, 0xe3, 0xc3, 0xb0, 0x93, 0x34, 0x3e, 0x16, 0xf7, 0xb3, 0xe1, 0x87, 0xfd, 0x94, 0xbb, 0x42, + 0x49, 0xcb, 0xab, 0xfd, 0x2b, 0xf9, 0x3e, 0x6a, 0x77, 0x4b, 0xfe, 0x77, 0x98, 0x74, 0x9b, 0x49, + 0x94, 0xb6, 0x4a, 0x7e, 0x27, 0xb7, 0x81, 0x56, 0x24, 0xa0, 0x8a, 0x04, 0x4e, 0xb7, 0x01, 0xb2, + 0xec, 0x67, 0x75, 0xec, 0x48, 0x0c, 0x1d, 0x88, 0x03, 0xb7, 0x51, 0xc2, 0x5d, 0x94, 0x73, 0x12, + 0xab, 0x6f, 0xed, 0xd5, 0x7e, 0x73, 0x45, 0xab, 0x71, 0x65, 0x2d, 0x36, 0x56, 0xb2, 0xda, 0x27, + 0x5a, 0xfe, 0x05, 0xaf, 0xf0, 0x72, 0x4b, 0x6a, 0x8c, 0x39, 0xd1, 0x12, 0x2b, 0xa9, 0x19, 0x56, + 0x5a, 0x1b, 0xcc, 0x45, 0x41, 0x78, 0xaa, 0xe0, 0x5b, 0xa6, 0x5c, 0xe5, 0xaa, 0x92, 0xeb, 0xbc, + 0x52, 0xeb, 0xbc, 0x12, 0x3b, 0x53, 0x69, 0x6d, 0xd7, 0x02, 0x71, 0x46, 0x65, 0x55, 0xb3, 0x6a, + 0xb9, 0xdf, 0x48, 0x5b, 0xe5, 0x3f, 0xf3, 0x5d, 0x23, 0xf3, 0xe4, 0x92, 0x65, 0xd3, 0x2d, 0x27, + 0xdd, 0x1d, 0xce, 0xba, 0x38, 0x5c, 0x76, 0x6b, 0x38, 0xdb, 0xa4, 0xae, 0x37, 0xab, 0xd8, 0xa6, + 0x15, 0xdb, 0xbc, 0x12, 0x9b, 0xd8, 0x0f, 0xb8, 0xe1, 0xac, 0xbf, 0xc1, 0xfd, 0xa0, 0xce, 0xdd, + 0x20, 0x0e, 0x39, 0x9f, 0xc7, 0x39, 0x5f, 0x09, 0x36, 0x69, 0x85, 0x9c, 0x6f, 0x43, 0xf0, 0x53, + 0x4c, 0xb0, 0xf7, 0xaa, 0xc1, 0xa5, 0x1c, 0xd2, 0x76, 0x82, 0xac, 0x9d, 0x20, 0xe9, 0x72, 0xc8, + 0x79, 0xd9, 0x97, 0x5e, 0xd2, 0xee, 0xb5, 0xed, 0xbd, 0xb6, 0x12, 0xea, 0x58, 0x01, 0xee, 0x2e, + 0xb7, 0xa5, 0x16, 0xdf, 0x18, 0x8b, 0xfd, 0xcd, 0x05, 0xbf, 0xe2, 0xaa, 0x5f, 0x4f, 0xed, 0xab, + 0x2d, 0xf6, 0x16, 0x7f, 0xfd, 0x4e, 0x7e, 0xfe, 0x37, 0x7e, 0xf1, 0xb6, 0x96, 0x7d, 0x4b, 0xd2, + 0x6f, 0x67, 0x01, 0x1b, 0x5e, 0xd2, 0x66, 0x7f, 0xfe, 0x9a, 0xe7, 0xbf, 0xbc, 0x9f, 0xbc, 0xb8, + 0x5a, 0xaf, 0x7f, 0x95, 0x5d, 0x35, 0xaf, 0x3a, 0xbf, 0x6e, 0x22, 0xbf, 0x83, 0x05, 0xc5, 0xaf, + 0xfc, 0xe2, 0x83, 0x2c, 0x86, 0xc1, 0x17, 0x4e, 0xeb, 0x97, 0x49, 0xdb, 0xef, 0xa7, 0xe5, 0xdd, + 0x24, 0xbb, 0xfd, 0x4a, 0x8b, 0x7c, 0x8f, 0x25, 0x73, 0xef, 0x95, 0x73, 0xeb, 0x95, 0x73, 0xe7, + 0x87, 0xb9, 0xf1, 0xe4, 0xd9, 0x84, 0xb7, 0xd6, 0xa2, 0xe8, 0xb4, 0xb0, 0x8d, 0xc5, 0x5f, 0xe1, + 0x43, 0xab, 0x5a, 0xf4, 0x0d, 0x2e, 0x47, 0xf0, 0x2c, 0x8d, 0x1d, 0x57, 0xc1, 0x88, 0xab, 0x19, + 0x5d, 0x59, 0xe0, 0x57, 0x1a, 0xe0, 0x95, 0x06, 0x72, 0x2b, 0x1b, 0xa5, 0x4c, 0xb4, 0x5c, 0x96, + 0x4a, 0xa9, 0x7d, 0xb9, 0xe8, 0x2d, 0xff, 0xd6, 0x27, 0xdf, 0xfa, 0xf6, 0x97, 0x97, 0xcd, 0x80, + 0x57, 0xe2, 0x26, 0x57, 0xa6, 0x3f, 0xca, 0xd0, 0x1d, 0xf7, 0x4d, 0x7a, 0xf9, 0x27, 0x75, 0xc1, + 0x67, 0x38, 0xe3, 0x2f, 0x9c, 0xf1, 0x15, 0x0f, 0xcd, 0xfd, 0xf6, 0xbd, 0x78, 0x86, 0xb1, 0x56, + 0x65, 0x13, 0x6b, 0x17, 0x9d, 0xab, 0x2f, 0x71, 0xa7, 0x3c, 0x77, 0x9f, 0x5f, 0xc7, 0x98, 0xbc, + 0xdf, 0xf2, 0x83, 0xbc, 0x5f, 0x6d, 0xe3, 0xb8, 0x26, 0x04, 0xc3, 0x63, 0xef, 0x57, 0xda, 0x58, + 0x36, 0xbc, 0x52, 0x69, 0xfa, 0x3e, 0x6e, 0xa7, 0xd1, 0x20, 0x6e, 0xa7, 0x03, 0x77, 0xf4, 0xfd, + 0xdd, 0x25, 0xdd, 0xd0, 0xf7, 0xdb, 0x15, 0xa7, 0xef, 0xcb, 0x6d, 0x53, 0xd7, 0xdb, 0x55, 0x6c, + 0xdb, 0x8a, 0x6d, 0x5f, 0x91, 0x6d, 0x5c, 0x9e, 0x60, 0xde, 0x74, 0x40, 0xe0, 0xbb, 0x3a, 0xd3, + 0xa6, 0xd8, 0x93, 0xee, 0xcc, 0xe3, 0xe1, 0x6e, 0x77, 0x65, 0x1d, 0x6e, 0x0f, 0xdd, 0x72, 0x3e, + 0x81, 0x2d, 0x31, 0x71, 0xed, 0xde, 0x19, 0x48, 0x39, 0x05, 0x71, 0xe7, 0x20, 0xee, 0x24, 0x44, + 0x9d, 0x85, 0x1b, 0xa7, 0xe1, 0xc8, 0x79, 0x38, 0x77, 0x22, 0x77, 0xce, 0xa4, 0xd5, 0x8a, 0x7a, + 0x71, 0xf6, 0x75, 0x20, 0x77, 0x9e, 0xdf, 0xdd, 0x12, 0x81, 0x9d, 0xe9, 0xb7, 0x15, 0xe6, 0x99, + 0x7e, 0x6e, 0xdd, 0x8e, 0xb4, 0xfb, 0x51, 0x73, 0x43, 0x6a, 0xee, 0x48, 0xc5, 0x2d, 0xb9, 0x75, + 0x4f, 0x8e, 0xdd, 0x94, 0x98, 0xbb, 0x2a, 0x2e, 0xdc, 0x9c, 0xec, 0x51, 0x61, 0xd1, 0x9a, 0x7c, + 0x1d, 0x59, 0xc5, 0x9a, 0x6d, 0x14, 0x6b, 0x0c, 0x1d, 0x9b, 0x96, 0x83, 0x53, 0x77, 0x74, 0xea, + 0x0e, 0x4f, 0xd5, 0xf1, 0xc9, 0x38, 0x40, 0x21, 0x47, 0x28, 0xee, 0x10, 0x8b, 0x05, 0x92, 0x4e, + 0x7a, 0x91, 0x7e, 0xe9, 0x24, 0xd1, 0xd8, 0xb4, 0xa2, 0xbc, 0x17, 0x42, 0x4d, 0xdb, 0x65, 0xce, + 0xfa, 0xc2, 0x06, 0xa7, 0xa3, 0x5d, 0x29, 0xee, 0x50, 0x35, 0x1d, 0xab, 0xbe, 0x83, 0xd5, 0x76, + 0xb4, 0x66, 0x0e, 0xd7, 0xcc, 0xf1, 0x9a, 0x38, 0x60, 0x59, 0x47, 0x2c, 0xec, 0x90, 0x8b, 0x37, + 0x26, 0x2e, 0x1f, 0x36, 0xb3, 0xdf, 0x3a, 0x49, 0xdc, 0x96, 0x95, 0x10, 0x9b, 0xc9, 0x33, 0x5f, + 0xea, 0x08, 0xe5, 0xe7, 0xbd, 0x50, 0xcd, 0xa8, 0xdf, 0xbb, 0xea, 0xbc, 0xee, 0x5f, 0x0d, 0xb3, + 0xb4, 0x7b, 0x91, 0x47, 0x82, 0xe2, 0x8f, 0xf3, 0x5e, 0xa7, 0x56, 0xd2, 0x4e, 0xbb, 0x69, 0x96, + 0x5e, 0x75, 0x07, 0xf3, 0xff, 0x55, 0xf1, 0x6f, 0x46, 0x5d, 0x4e, 0x81, 0xca, 0x8c, 0x0a, 0x5a, + 0x70, 0xad, 0x9f, 0x34, 0x93, 0xf4, 0x5a, 0x51, 0xc2, 0x6d, 0xb2, 0xa0, 0xf0, 0xae, 0xfc, 0x23, + 0x69, 0xc7, 0xc3, 0xce, 0xc8, 0x8d, 0xb5, 0xe3, 0xce, 0x20, 0x21, 0x8f, 0x20, 0x8f, 0x20, 0x8f, + 0x20, 0x8f, 0x20, 0x8f, 0xb8, 0xd7, 0x3c, 0x76, 0x75, 0xd5, 0x49, 0x62, 0x55, 0x55, 0xf1, 0x6d, + 0x42, 0xf0, 0xcc, 0xbb, 0x19, 0x24, 0xdd, 0x96, 0x5e, 0xfc, 0x1d, 0xad, 0x46, 0xf0, 0x25, 0xf8, + 0x12, 0x7c, 0x09, 0xbe, 0x04, 0x5f, 0x82, 0x2f, 0xc1, 0x37, 0xba, 0x54, 0x38, 0x35, 0x69, 0x2a, + 0x00, 0x8f, 0x56, 0x24, 0x28, 0x12, 0x14, 0x09, 0x8a, 0x04, 0x45, 0x82, 0x62, 0xb1, 0xdf, 0x86, + 0x69, 0x37, 0xfb, 0x4d, 0x31, 0x24, 0xee, 0x71, 0x6c, 0xe5, 0xea, 0x0f, 0xc6, 0xb1, 0x95, 0xf2, + 0xeb, 0x72, 0x6c, 0x65, 0x65, 0x4d, 0xa9, 0xbe, 0xc7, 0xa1, 0x95, 0xc1, 0xad, 0x72, 0x1e, 0x2a, + 0x84, 0x0a, 0xaa, 0xd7, 0x49, 0x58, 0xa2, 0xfb, 0x0e, 0xfc, 0xb9, 0xd5, 0xe0, 0x98, 0x28, 0x53, + 0x14, 0xff, 0xf4, 0xe2, 0xcb, 0x45, 0xef, 0xc5, 0x78, 0x18, 0xf5, 0x45, 0x31, 0x0f, 0x57, 0xfc, + 0xd3, 0x8b, 0xa2, 0xbd, 0xfd, 0x45, 0xde, 0x2c, 0xba, 0xc6, 0xc7, 0x49, 0x96, 0x53, 0xed, 0x5c, + 0x1c, 0x7c, 0x97, 0x50, 0xf5, 0x5c, 0x98, 0x67, 0x91, 0x6e, 0xca, 0xad, 0xd3, 0x94, 0xeb, 0x0f, + 0xa2, 0xa6, 0x29, 0x77, 0x8d, 0x03, 0x15, 0x4d, 0xb9, 0x01, 0x67, 0xe6, 0x50, 0x97, 0x41, 0x39, + 0x5a, 0x33, 0x87, 0x6b, 0xe6, 0x78, 0x4d, 0x1c, 0xb0, 0x0e, 0x96, 0xa2, 0x29, 0xd7, 0x41, 0x9e, + 0x49, 0x53, 0xae, 0x25, 0xa2, 0xa6, 0x29, 0x77, 0xf9, 0x74, 0x89, 0xbe, 0x20, 0xf2, 0x08, 0xf2, + 0x08, 0xf2, 0x08, 0xf2, 0x88, 0xb9, 0xfb, 0x8d, 0xbe, 0x20, 0x2f, 0x42, 0x30, 0x4d, 0xb9, 0x04, + 0x5f, 0x82, 0x2f, 0xc1, 0x97, 0xe0, 0x4b, 0xf0, 0x25, 0xf8, 0x1a, 0x04, 0x5f, 0x9a, 0x72, 0x09, + 0x8a, 0x04, 0x45, 0x82, 0x22, 0x41, 0xd1, 0x3a, 0x28, 0xd2, 0x94, 0x5b, 0xf6, 0x87, 0xa6, 0x5c, + 0x91, 0x65, 0x69, 0xca, 0x95, 0x35, 0x25, 0x9a, 0x72, 0x2b, 0x6e, 0x4c, 0x34, 0xe5, 0xda, 0x42, + 0x28, 0x9a, 0x72, 0x1f, 0x03, 0x7f, 0xbe, 0x34, 0xe5, 0x96, 0x38, 0xf5, 0x54, 0xff, 0xcb, 0xfb, + 0xad, 0xe6, 0x2b, 0x6c, 0x3b, 0xde, 0xd8, 0x4c, 0x4d, 0xa4, 0x33, 0xfa, 0xa7, 0xa7, 0x34, 0xe6, + 0x77, 0xd8, 0x78, 0x73, 0xd1, 0x6b, 0xbc, 0x1b, 0xdd, 0x61, 0xe3, 0xa0, 0x9d, 0x9e, 0xc5, 0xed, + 0xb4, 0x71, 0xd0, 0x6a, 0x9d, 0x8e, 0xee, 0x6a, 0xc3, 0x4f, 0x4b, 0x73, 0x68, 0x65, 0xc5, 0x01, + 0x14, 0x51, 0xfe, 0xa2, 0xa4, 0x14, 0xe9, 0xa7, 0x96, 0x91, 0x51, 0xa5, 0xdf, 0x42, 0x95, 0x1e, + 0x55, 0x7a, 0x0f, 0xc9, 0x1b, 0x54, 0xe9, 0xe5, 0xc8, 0x17, 0x85, 0x36, 0x42, 0xc9, 0xb6, 0xc1, + 0xa2, 0x4d, 0xf0, 0xf9, 0xf3, 0x7c, 0x96, 0xe9, 0xc5, 0xb4, 0xa7, 0x5c, 0x83, 0x08, 0x24, 0x74, + 0xb0, 0x80, 0xec, 0x81, 0x02, 0x9c, 0x84, 0x42, 0xcc, 0x21, 0xe6, 0xac, 0xe7, 0x49, 0x28, 0xb2, + 0x29, 0xb3, 0x6a, 0xea, 0xac, 0x44, 0x1f, 0x72, 0x2e, 0x8a, 0x57, 0xee, 0x4e, 0xdd, 0xed, 0xa9, + 0xbb, 0x3f, 0x55, 0x37, 0x28, 0x47, 0x4e, 0x6d, 0x0a, 0xd2, 0x92, 0xe2, 0xf5, 0xd0, 0x62, 0xbf, + 0xa4, 0xad, 0xa4, 0x9b, 0xa5, 0xd9, 0x77, 0xd9, 0x29, 0x9f, 0x22, 0x23, 0x13, 0x2c, 0x44, 0xd4, + 0x8e, 0xf2, 0x47, 0x79, 0x13, 0x0f, 0x14, 0xa7, 0x4c, 0x0e, 0xde, 0x1e, 0x35, 0xce, 0x6e, 0xff, + 0xeb, 0xe3, 0xbf, 0x4f, 0x0f, 0xa5, 0xb7, 0xe8, 0xa8, 0xa2, 0x33, 0x50, 0x29, 0xf1, 0x2a, 0x75, + 0x87, 0x4c, 0x5e, 0xe3, 0xd1, 0xe9, 0xa7, 0xdd, 0xc6, 0x5f, 0x27, 0x47, 0xbf, 0x1f, 0x9c, 0x7d, + 0x54, 0xe8, 0x96, 0x78, 0x56, 0xb5, 0xf7, 0x77, 0x7c, 0x74, 0xf2, 0xaf, 0xb3, 0x8f, 0x07, 0x1f, + 0x0f, 0x79, 0x79, 0xcb, 0xbf, 0xbc, 0xb3, 0x0f, 0x1f, 0x0f, 0x1b, 0xa7, 0x7f, 0x1e, 0x1f, 0xfd, + 0xfe, 0xef, 0xc6, 0xd1, 0xe9, 0xa7, 0x7d, 0xde, 0xe1, 0x0a, 0x06, 0xb8, 0xf3, 0xe9, 0xf4, 0x64, + 0xf4, 0xf6, 0xd8, 0xc6, 0x25, 0xde, 0x62, 0xfd, 0xf6, 0x2d, 0x7e, 0x3a, 0x3d, 0x3e, 0xe3, 0xed, + 0x95, 0x70, 0x82, 0x8d, 0xb3, 0xd3, 0xb7, 0xbc, 0xc0, 0x32, 0x2f, 0xf0, 0xd3, 0xe9, 0x09, 0x2f, + 0x70, 0xc5, 0x34, 0xe6, 0xed, 0xf1, 0x9f, 0xff, 0x7d, 0x76, 0x7a, 0xf8, 0x3b, 0x2f, 0xb0, 0x54, + 0x18, 0x79, 0xff, 0xd7, 0xf1, 0x47, 0x02, 0xc9, 0x8a, 0xef, 0xf1, 0xd3, 0xe9, 0x09, 0x96, 0xe8, + 0xc6, 0x12, 0x77, 0xb1, 0xc4, 0x92, 0x2e, 0x71, 0xbf, 0x71, 0x7c, 0xf0, 0xe6, 0xf0, 0xf8, 0xf0, + 0x0f, 0x52, 0x43, 0x27, 0xf6, 0xc8, 0x5b, 0x2c, 0x17, 0xa0, 0xb1, 0x46, 0x37, 0xbb, 0x9a, 0xf7, + 0xe7, 0x8a, 0x72, 0xd8, 0xe5, 0x1d, 0xae, 0x0a, 0x96, 0x0f, 0x75, 0xa0, 0x8a, 0xe8, 0x0a, 0xe7, + 0xa1, 0xd5, 0x3d, 0x82, 0x90, 0xdf, 0x4d, 0xba, 0xf1, 0x97, 0x4e, 0xd2, 0x92, 0xaf, 0x02, 0x4f, + 0x16, 0x92, 0x12, 0xe4, 0xd4, 0x11, 0xb9, 0xa0, 0xce, 0xbc, 0xc4, 0x27, 0xa7, 0xce, 0xbc, 0xf2, + 0x82, 0xd4, 0x99, 0x7d, 0x89, 0xdd, 0x8a, 0x75, 0x66, 0x79, 0x11, 0x0a, 0x61, 0xf1, 0x09, 0xa6, + 0x5b, 0xdc, 0x7e, 0x2d, 0xe3, 0xe9, 0x16, 0x89, 0xc3, 0x09, 0xfc, 0x6c, 0xe1, 0xbd, 0xe8, 0xc7, + 0xcd, 0xa4, 0x3d, 0xec, 0x44, 0xfd, 0x64, 0x90, 0xc5, 0xfd, 0x4c, 0xae, 0x99, 0x77, 0x66, 0x25, + 0xda, 0x7a, 0x69, 0xeb, 0x35, 0xcf, 0x3b, 0x68, 0xeb, 0xd5, 0x0b, 0x1a, 0x62, 0x6d, 0xbd, 0x42, + 0x73, 0x08, 0x33, 0xdb, 0x49, 0x64, 0x1e, 0x41, 0xd8, 0x81, 0x01, 0xb0, 0x00, 0x58, 0x00, 0x2c, + 0x3f, 0x01, 0x96, 0xfc, 0x59, 0x2a, 0xc2, 0x1c, 0x97, 0x32, 0xd7, 0xa5, 0xcd, 0x79, 0x29, 0x71, + 0x5f, 0x6a, 0x2e, 0x5a, 0xd3, 0x55, 0xeb, 0xbb, 0x6c, 0x6d, 0xd7, 0x6d, 0xe6, 0xc2, 0xcd, 0x5c, + 0xb9, 0x89, 0x4b, 0x97, 0x75, 0xed, 0xc2, 0x2e, 0x5e, 0x8f, 0x4b, 0x33, 0xe0, 0xd4, 0x94, 0xb8, + 0x35, 0x79, 0x03, 0x40, 0x95, 0xc8, 0x43, 0x0e, 0xee, 0x21, 0x5f, 0xc4, 0x89, 0xa1, 0x9c, 0x18, + 0xba, 0x44, 0x0a, 0xc5, 0x89, 0xa1, 0xa0, 0x5c, 0x50, 0x2e, 0x28, 0x17, 0x94, 0x0b, 0xca, 0x05, + 0xe5, 0x82, 0x72, 0x41, 0xb9, 0xa0, 0x5c, 0x50, 0x2e, 0x28, 0xd7, 0x77, 0x94, 0x8b, 0x04, 0x6f, + 0x28, 0x26, 0xe4, 0x9b, 0xe9, 0xf8, 0xa5, 0xc4, 0xfb, 0x2e, 0xbf, 0xbb, 0x0f, 0xf9, 0xcd, 0xad, + 0x41, 0x2f, 0x55, 0xda, 0xbb, 0xde, 0x8d, 0x3a, 0xf1, 0x97, 0xa4, 0x93, 0xb4, 0xa2, 0x61, 0x37, + 0x6d, 0xc6, 0x03, 0xc1, 0x7e, 0xaa, 0x47, 0x57, 0xa3, 0xa7, 0x8a, 0x9e, 0x2a, 0xf3, 0x0c, 0x9e, + 0x9e, 0x2a, 0xbd, 0x18, 0x27, 0xd6, 0x53, 0x35, 0xb6, 0x90, 0xa8, 0x93, 0x5e, 0xa6, 0x99, 0x3c, + 0xe5, 0x3c, 0xb5, 0x1a, 0xfd, 0x55, 0x56, 0x74, 0x06, 0xcc, 0x73, 0x78, 0x74, 0x05, 0xcc, 0xb3, + 0xba, 0x73, 0x2c, 0x16, 0x10, 0x6e, 0x3c, 0x9d, 0xd9, 0x96, 0xa2, 0x0d, 0xa8, 0x4a, 0x8e, 0x52, + 0xcd, 0x61, 0x6a, 0x3a, 0x4e, 0x7d, 0x07, 0xaa, 0xed, 0x48, 0xcd, 0x1c, 0xaa, 0x99, 0x63, 0x35, + 0x71, 0xb0, 0xf2, 0x34, 0xe0, 0xa6, 0x02, 0x0f, 0x2c, 0xed, 0x78, 0x8b, 0x85, 0x2e, 0xe3, 0x6f, + 0xd1, 0xd8, 0x0a, 0x47, 0xc2, 0xa7, 0xca, 0x12, 0x03, 0x53, 0xab, 0x2b, 0x19, 0xa3, 0xee, 0x69, + 0x81, 0x6a, 0x4e, 0xda, 0xc2, 0x59, 0xdb, 0x39, 0x6d, 0x2b, 0xe7, 0x6d, 0xee, 0xc4, 0xcd, 0x9d, + 0xb9, 0xa9, 0x53, 0xd7, 0x71, 0xee, 0x4a, 0x4e, 0xbe, 0x78, 0x93, 0x6a, 0x45, 0xbf, 0x99, 0xfd, + 0x3a, 0x4c, 0xbb, 0xd9, 0x4e, 0x5d, 0x73, 0xbf, 0xe6, 0xde, 0xf7, 0xa5, 0xe2, 0x92, 0xba, 0xe7, + 0x36, 0x4f, 0x7e, 0x74, 0xfd, 0xd1, 0xa6, 0xd5, 0x39, 0xce, 0x46, 0x61, 0x75, 0x66, 0x79, 0xa3, + 0x73, 0x9d, 0x8b, 0xf5, 0x0d, 0x8f, 0xe4, 0x55, 0x76, 0x57, 0xd3, 0x26, 0x67, 0x70, 0xde, 0xb3, + 0x6f, 0x26, 0xb7, 0x5b, 0x7f, 0xb5, 0xfb, 0x6a, 0xff, 0x65, 0xfd, 0xd5, 0xde, 0x1a, 0xdb, 0xde, + 0x46, 0x35, 0x57, 0x3b, 0xaf, 0xc8, 0x71, 0xd7, 0x0a, 0xbe, 0xe1, 0x36, 0x0f, 0xbe, 0x4e, 0xba, + 0x59, 0x94, 0x25, 0x71, 0xbf, 0x75, 0xf5, 0x77, 0x57, 0x1f, 0x4e, 0xce, 0xdc, 0x81, 0x52, 0x02, + 0xa7, 0xdc, 0x67, 0x0a, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, 0x93, 0x3e, 0xd6, + 0x87, 0xee, 0x57, 0xb8, 0x9f, 0xb5, 0x5a, 0x49, 0x42, 0xde, 0x6a, 0x17, 0x65, 0xe9, 0x65, 0xd2, + 0xd7, 0xcf, 0x10, 0xa6, 0x97, 0x27, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x84, 0x69, 0xc2, 0xb4, 0xda, + 0x7e, 0x6d, 0x25, 0xcd, 0xf4, 0x32, 0xee, 0xec, 0xef, 0x5a, 0x04, 0xea, 0xba, 0xe2, 0x9a, 0x33, + 0xa4, 0x4c, 0x1d, 0xca, 0xdb, 0xfd, 0x83, 0xfa, 0x40, 0x79, 0xd7, 0xa1, 0xbc, 0xa1, 0xbc, 0x75, + 0x4d, 0x6e, 0x07, 0x93, 0x83, 0xe9, 0x76, 0xfb, 0x03, 0xd3, 0xbd, 0xb8, 0x19, 0xfe, 0x1d, 0xf7, + 0xbb, 0x69, 0xf7, 0x22, 0xca, 0xbe, 0xf6, 0x93, 0xc1, 0xd7, 0xab, 0x4e, 0x2b, 0xea, 0x35, 0x33, + 0x7d, 0x30, 0xfb, 0xf8, 0x6d, 0x00, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x56, 0x6d, + 0xbf, 0xf6, 0x92, 0x7e, 0x33, 0xe9, 0x66, 0xf1, 0x45, 0x62, 0x80, 0x6a, 0xf7, 0xc0, 0x95, 0xd5, + 0xc4, 0x95, 0xb4, 0x52, 0x81, 0x2b, 0xd7, 0xcc, 0xe4, 0xb6, 0xb7, 0x40, 0x96, 0x20, 0x4b, 0x5f, + 0x91, 0x65, 0xd0, 0x13, 0x45, 0x4a, 0x72, 0x40, 0xc5, 0x7a, 0xc6, 0xda, 0x2e, 0x8f, 0x89, 0x7b, + 0xbc, 0xb8, 0x3f, 0x24, 0x2f, 0xaa, 0x86, 0x2b, 0x6f, 0x32, 0x82, 0xe6, 0x22, 0xac, 0x92, 0x3b, + 0x93, 0x3d, 0x4b, 0xaa, 0xe5, 0x3e, 0x0c, 0x70, 0x6a, 0x23, 0xb9, 0x75, 0x46, 0x72, 0xc3, 0xa1, + 0x23, 0x18, 0xc9, 0x65, 0x24, 0xf7, 0x97, 0x6f, 0x8c, 0x91, 0xdc, 0x8a, 0xa0, 0x0f, 0xb8, 0xe4, + 0x4a, 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x2e, 0x9e, 0x64, 0x24, 0x57, + 0xcc, 0xfb, 0x32, 0x92, 0x2b, 0xf0, 0xa0, 0xf0, 0xc8, 0xf0, 0xc8, 0xda, 0x26, 0x07, 0x8f, 0xcc, + 0x48, 0x2e, 0x74, 0xb2, 0xf7, 0xcf, 0xc3, 0x48, 0xae, 0x28, 0x5a, 0x67, 0x24, 0x17, 0x28, 0x0b, + 0x94, 0x05, 0xca, 0x02, 0x65, 0x19, 0xc9, 0x25, 0x49, 0xf8, 0xd9, 0x3b, 0x63, 0x24, 0x97, 0x30, + 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x33, 0x92, 0xab, 0xb1, 0x38, 0x94, 0xb7, + 0xa2, 0x59, 0x31, 0x92, 0x0b, 0xe5, 0xad, 0x6c, 0x72, 0x8c, 0xe4, 0xc2, 0x74, 0x3b, 0xfe, 0x81, + 0xe9, 0x5e, 0xdc, 0x0c, 0x19, 0xc9, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, + 0x23, 0xb9, 0xe0, 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x91, 0x5c, 0x90, 0x25, 0xc8, + 0xd2, 0x74, 0x05, 0x46, 0x72, 0x95, 0x47, 0x72, 0xc7, 0x93, 0xa0, 0xa1, 0x4e, 0xe4, 0x06, 0x75, + 0xb2, 0xaf, 0x92, 0xed, 0x79, 0x6f, 0x73, 0x35, 0xd1, 0x39, 0xea, 0xfe, 0xb0, 0x99, 0x75, 0x73, + 0x44, 0x72, 0x32, 0x7e, 0x98, 0xa3, 0xfc, 0x59, 0x1a, 0xa7, 0xf9, 0x13, 0x34, 0xde, 0x5c, 0xf4, + 0x1a, 0xef, 0x46, 0x4f, 0xd0, 0x38, 0x68, 0xa7, 0x67, 0x71, 0x3b, 0x6d, 0x1c, 0xf5, 0xae, 0x77, + 0x8f, 0xc7, 0x77, 0xfd, 0xd7, 0xf8, 0xa6, 0x1b, 0x63, 0xf2, 0xe3, 0x78, 0x74, 0xcf, 0x1b, 0x61, + 0xd8, 0xaf, 0xdf, 0x07, 0xff, 0x0b, 0xef, 0x00, 0x1f, 0x2d, 0x5f, 0xc0, 0xd8, 0x9d, 0x1a, 0xb9, + 0x5b, 0xc3, 0x76, 0x67, 0x7e, 0x0e, 0x4d, 0xaf, 0x36, 0xfa, 0x2e, 0x93, 0xef, 0xe1, 0xda, 0xf0, + 0x0a, 0xfa, 0x63, 0x6a, 0x15, 0xc7, 0x1b, 0x47, 0x46, 0x4a, 0x41, 0x8c, 0x4e, 0x96, 0xa4, 0x8d, + 0xe5, 0xe9, 0x61, 0x69, 0x1a, 0x58, 0x8d, 0xee, 0x55, 0xa3, 0x75, 0x55, 0xe8, 0x5b, 0xbf, 0x43, + 0x9b, 0x94, 0x54, 0x41, 0xad, 0x39, 0xd9, 0xa3, 0x42, 0xc6, 0x38, 0xd9, 0x4e, 0xf9, 0x3a, 0x42, + 0x06, 0x22, 0xab, 0x05, 0x23, 0x5e, 0x17, 0xd3, 0xa8, 0x83, 0xe9, 0xd5, 0xbd, 0xb4, 0xea, 0x5c, + 0xea, 0x75, 0x2d, 0xf5, 0x3a, 0x96, 0x6a, 0xdd, 0x2a, 0x2c, 0xb4, 0x2b, 0xad, 0xdd, 0x52, 0x1b, + 0x24, 0xdd, 0x56, 0xd4, 0x1a, 0xcf, 0x9c, 0x45, 0xfd, 0xab, 0xa1, 0xaa, 0x7e, 0xd6, 0xec, 0xda, + 0xd2, 0x52, 0x38, 0xba, 0xc3, 0x75, 0x4a, 0x54, 0xb8, 0x5a, 0x43, 0x03, 0xe2, 0x5d, 0x41, 0x3b, + 0x76, 0x33, 0x07, 0x6f, 0xe2, 0xe8, 0x65, 0x1d, 0xbe, 0xb0, 0xe3, 0x2f, 0xde, 0x98, 0x5a, 0x23, + 0x82, 0xc1, 0xf0, 0x9b, 0xd2, 0xd0, 0x1b, 0xcc, 0x79, 0xbe, 0xf9, 0xd6, 0x88, 0x39, 0x9f, 0x30, + 0xe6, 0x92, 0x5a, 0xa9, 0x02, 0xbc, 0xb3, 0x00, 0x0d, 0x33, 0x55, 0x33, 0x10, 0xc7, 0xbf, 0x0a, + 0x15, 0x0a, 0x50, 0x30, 0x28, 0x18, 0x14, 0x0c, 0x0a, 0x76, 0xb9, 0x80, 0x30, 0x3d, 0x38, 0xb3, + 0x2d, 0x45, 0x69, 0x42, 0x25, 0x47, 0x09, 0xfa, 0x04, 0x7d, 0x82, 0x3e, 0xab, 0x8d, 0x3e, 0x91, + 0x8e, 0x96, 0x76, 0xce, 0xcc, 0x3c, 0x85, 0xec, 0xb4, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0xc7, 0xb9, 0x2b, 0x39, 0xf9, 0xe2, 0x4d, 0x22, 0x1d, 0x2d, 0xba, 0x24, - 0xf3, 0x4e, 0xf5, 0x0b, 0xab, 0x73, 0xcb, 0x33, 0xef, 0xc4, 0xbc, 0x93, 0x91, 0xc9, 0x21, 0x1d, + 0xf3, 0x4e, 0xd5, 0x0b, 0xab, 0x33, 0xcb, 0x33, 0xef, 0xc4, 0xbc, 0x93, 0x91, 0xc9, 0x21, 0x1d, 0xcd, 0xd8, 0x93, 0xef, 0xcf, 0x83, 0x74, 0xb4, 0x28, 0x5a, 0x47, 0x3a, 0x1a, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x91, 0x8e, 0x26, 0x49, 0xf8, 0xd9, 0x3b, 0x43, 0x3a, 0x9a, 0x30, 0x4d, - 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x37, 0x33, 0x4c, 0x23, 0x1d, 0xad, 0xb1, 0x38, 0x94, 0xb7, 0xa2, + 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x23, 0x1d, 0xad, 0xb1, 0x38, 0x94, 0xb7, 0xa2, 0x59, 0x21, 0x1d, 0x0d, 0xe5, 0xad, 0x6c, 0x72, 0x48, 0x47, 0xc3, 0x74, 0x3b, 0xfe, 0x81, 0xe9, - 0x5e, 0xde, 0x0c, 0x91, 0x8e, 0x06, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xd2, - 0xd1, 0xe0, 0xca, 0x4a, 0x87, 0x56, 0x92, 0x7c, 0x70, 0x25, 0xd2, 0xd1, 0x20, 0x4b, 0x90, 0xa5, - 0xe9, 0x0a, 0x48, 0x47, 0xcb, 0x89, 0x11, 0xcc, 0x48, 0x46, 0x4b, 0x2a, 0x13, 0xc8, 0x9b, 0xca, - 0x8d, 0xa8, 0xfa, 0x70, 0xa4, 0xaa, 0x42, 0x35, 0x5a, 0xae, 0x66, 0xa3, 0xb8, 0x4d, 0x46, 0x71, - 0xab, 0x43, 0x43, 0x30, 0x8a, 0xcb, 0x28, 0xee, 0x2f, 0xdf, 0x18, 0xa3, 0xb8, 0x35, 0x41, 0x1d, - 0x70, 0xc8, 0xb5, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x5d, 0x1c, 0xc9, - 0x28, 0xae, 0x98, 0xf7, 0x65, 0x14, 0x57, 0xe0, 0x41, 0xe1, 0x8f, 0xe1, 0x8f, 0xb5, 0x4d, 0x0e, - 0xfe, 0x98, 0x51, 0x5c, 0x68, 0x64, 0xef, 0x9f, 0x87, 0x51, 0x5c, 0x51, 0xb4, 0xce, 0x28, 0x2e, - 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x32, 0x8a, 0x4b, 0x92, 0xf0, 0xb3, 0x77, 0xc6, 0x28, - 0x2e, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x6f, 0x66, 0x98, 0x66, 0x14, 0x57, 0x63, 0x71, - 0x28, 0x6f, 0x45, 0xb3, 0x62, 0x14, 0x17, 0xca, 0x5b, 0xd9, 0xe4, 0x18, 0xc5, 0x85, 0xe9, 0x76, - 0xfc, 0x03, 0xd3, 0xbd, 0xbc, 0x19, 0x32, 0x8a, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, - 0x80, 0x5a, 0x46, 0x71, 0xc1, 0x95, 0x95, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x46, 0x71, 0x41, - 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x18, 0xc5, 0x55, 0x1a, 0xc5, 0x1d, 0x4f, 0x80, 0x72, 0x06, 0xbd, - 0xbc, 0xed, 0x6d, 0xe4, 0x19, 0xf4, 0x0a, 0x67, 0xa2, 0x8f, 0x9f, 0x39, 0xeb, 0x0f, 0x5b, 0x59, - 0x9a, 0x23, 0x90, 0x93, 0xf1, 0x43, 0x1c, 0xe5, 0xcf, 0x10, 0x9e, 0xe6, 0x77, 0x1e, 0xbe, 0xbe, - 0xe8, 0x85, 0xef, 0x46, 0x77, 0x1e, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, 0xeb, - 0xbd, 0xbf, 0xc6, 0x77, 0x1b, 0x8e, 0x59, 0x8e, 0xe3, 0xd1, 0xcd, 0x6e, 0xf0, 0xb1, 0xf9, 0xb2, - 0x43, 0xe8, 0x2a, 0xc3, 0xe7, 0x6a, 0x07, 0xe5, 0x37, 0x39, 0x28, 0xdf, 0x1f, 0x42, 0x8d, 0x83, - 0xf2, 0x37, 0x38, 0xbc, 0x8a, 0x1f, 0x94, 0x3f, 0x88, 0xd3, 0x76, 0xd0, 0x1e, 0x37, 0xb7, 0x07, - 0xfd, 0xab, 0xa1, 0xaa, 0x50, 0xc7, 0xfc, 0xda, 0xd2, 0x33, 0xf7, 0xba, 0x5d, 0xfc, 0x4a, 0x98, - 0x9b, 0x03, 0xfb, 0x2b, 0xe5, 0xd0, 0xcd, 0x1c, 0xbb, 0x99, 0x83, 0x37, 0x71, 0xf4, 0xf5, 0xc0, - 0xf4, 0x6a, 0x15, 0x0f, 0x83, 0x2e, 0x7b, 0xa5, 0xee, 0x7a, 0xa0, 0xfa, 0xe6, 0x42, 0x75, 0x41, - 0x26, 0x48, 0x00, 0xf6, 0x6e, 0x79, 0x6c, 0x46, 0xd2, 0xe6, 0xe3, 0x93, 0xd9, 0x34, 0x44, 0xf8, - 0x07, 0x07, 0x64, 0x8e, 0x5b, 0x4b, 0x76, 0x67, 0x6f, 0x0e, 0x6d, 0xad, 0x91, 0xf4, 0xae, 0x0f, - 0x82, 0x6e, 0xf4, 0x25, 0xee, 0xc6, 0xed, 0xe2, 0x83, 0xb8, 0xb6, 0xb8, 0x22, 0xda, 0x3d, 0xb8, - 0x9a, 0xe3, 0x9d, 0x23, 0x43, 0xdb, 0x88, 0x65, 0xfd, 0x92, 0x59, 0xbe, 0x7c, 0x56, 0x2f, 0x9d, - 0xc5, 0xab, 0x65, 0xed, 0x6a, 0x59, 0xba, 0x4a, 0x56, 0xee, 0x77, 0x6c, 0x93, 0xa2, 0x59, 0x1a, - 0x33, 0xa5, 0x02, 0x71, 0xf2, 0x59, 0xa1, 0x30, 0xa1, 0xc6, 0x41, 0xef, 0xc0, 0x41, 0xfb, 0x43, - 0x59, 0xc0, 0x41, 0x6f, 0x30, 0x6e, 0x14, 0xe7, 0xa0, 0x5b, 0x93, 0x3d, 0xaf, 0xc4, 0x3b, 0xe7, - 0xeb, 0xd5, 0x4c, 0x21, 0x1a, 0xee, 0xb7, 0x02, 0x8e, 0xd4, 0xcc, 0xa1, 0x9a, 0x39, 0x56, 0x13, - 0x07, 0x2b, 0x4f, 0xfd, 0x6d, 0xa3, 0x10, 0xed, 0x6a, 0x93, 0xa3, 0x10, 0x5d, 0x69, 0x67, 0x6d, - 0xe7, 0xb4, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0xc7, 0xb9, 0x2b, - 0x39, 0xf9, 0xe2, 0x4d, 0xa2, 0x10, 0x2d, 0xba, 0x24, 0x63, 0x4d, 0xf5, 0x0b, 0xab, 0x73, 0xcb, - 0x33, 0xd6, 0xc4, 0x58, 0x93, 0x91, 0xc9, 0xa1, 0x10, 0xcd, 0x74, 0x93, 0xef, 0xcf, 0x83, 0x42, - 0xb4, 0x28, 0x5a, 0x47, 0x21, 0x1a, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x51, 0x88, 0x26, - 0x49, 0xf8, 0xd9, 0x3b, 0x43, 0x21, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x37, 0x33, - 0x4c, 0xa3, 0x10, 0xad, 0xb1, 0x38, 0x94, 0xb7, 0xa2, 0x59, 0xa1, 0x10, 0x0d, 0xe5, 0xad, 0x6c, - 0x72, 0x28, 0x44, 0xc3, 0x74, 0x3b, 0xfe, 0x81, 0xe9, 0x5e, 0xde, 0x0c, 0x51, 0x88, 0x06, 0xd4, - 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0x0a, 0xd1, 0xe0, 0xca, 0x4a, 0x87, 0x56, 0x92, - 0x7c, 0x70, 0x25, 0x0a, 0xd1, 0x20, 0x4b, 0x90, 0xa5, 0xe9, 0x0a, 0x28, 0x44, 0xbb, 0xd6, 0x74, - 0x99, 0x13, 0xf7, 0x98, 0x55, 0x8a, 0xce, 0x47, 0x41, 0xab, 0xaa, 0x3f, 0x25, 0x2a, 0x3e, 0x1c, - 0xa9, 0x6a, 0x41, 0x0a, 0xea, 0xe6, 0xde, 0x0f, 0x70, 0x6a, 0x23, 0xb9, 0x4d, 0x46, 0x72, 0xab, - 0x43, 0x47, 0x30, 0x92, 0xcb, 0x48, 0xee, 0x2f, 0xdf, 0x18, 0x23, 0xb9, 0x35, 0x41, 0x1f, 0x70, - 0xc9, 0xb5, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x5d, 0x3c, 0xc9, 0x48, - 0xae, 0x98, 0xf7, 0x65, 0x24, 0x57, 0xe0, 0x41, 0xe1, 0x91, 0xe1, 0x91, 0xb5, 0x4d, 0x0e, 0x1e, - 0x99, 0x91, 0x5c, 0xe8, 0x64, 0xef, 0x9f, 0x87, 0x91, 0x5c, 0x51, 0xb4, 0xce, 0x48, 0x2e, 0x50, - 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x32, 0x92, 0x4b, 0x92, 0xf0, 0xb3, 0x77, 0xc6, 0x48, 0x2e, - 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x6f, 0x66, 0x98, 0x66, 0x24, 0x57, 0x63, 0x71, 0x28, - 0x6f, 0x45, 0xb3, 0x62, 0x24, 0x17, 0xca, 0x5b, 0xd9, 0xe4, 0x18, 0xc9, 0x85, 0xe9, 0x76, 0xfc, - 0x03, 0xd3, 0xbd, 0xbc, 0x19, 0x32, 0x92, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, - 0x5a, 0x46, 0x72, 0xc1, 0x95, 0x95, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x46, 0x72, 0x41, 0x96, - 0x20, 0x4b, 0xd3, 0x15, 0x18, 0xc9, 0x55, 0x1e, 0xc9, 0x1d, 0x4f, 0x82, 0x56, 0x75, 0x22, 0xb7, - 0x52, 0x27, 0xfb, 0x2a, 0xd9, 0x9e, 0xf7, 0x36, 0xd7, 0x10, 0x9d, 0xa3, 0xee, 0x0f, 0x5b, 0x59, - 0x9a, 0x23, 0x92, 0x93, 0xf1, 0xc3, 0x1c, 0xe5, 0xcf, 0x12, 0x9e, 0xe6, 0x4f, 0x10, 0xbe, 0xbe, - 0xe8, 0x85, 0xef, 0x46, 0x4f, 0x10, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, 0xeb, - 0x83, 0xe3, 0xf1, 0x5d, 0xff, 0x35, 0xbe, 0xe9, 0x70, 0x4c, 0x7e, 0x1c, 0x8f, 0xee, 0x79, 0xab, - 0x1a, 0xf6, 0xeb, 0xf7, 0xc1, 0xff, 0xc2, 0x3b, 0xc0, 0x47, 0xcb, 0x17, 0x30, 0x76, 0xa7, 0x46, - 0xee, 0xd6, 0xb0, 0xdd, 0x99, 0x9f, 0x43, 0xd3, 0x6b, 0x8c, 0xbe, 0xcb, 0xe4, 0x7b, 0xb8, 0x36, - 0xbc, 0x82, 0xfe, 0x98, 0x59, 0xc5, 0xf1, 0xc6, 0x91, 0x91, 0x52, 0x10, 0xa3, 0x93, 0x25, 0x69, - 0x63, 0x79, 0x7a, 0x58, 0x9a, 0x06, 0x56, 0xa3, 0x7b, 0xd5, 0x68, 0x5d, 0x15, 0xfa, 0xd6, 0xef, - 0xd0, 0x26, 0x25, 0x55, 0xd0, 0x68, 0x4d, 0xf6, 0xa8, 0x90, 0x31, 0x4e, 0xb6, 0x53, 0xbe, 0x8e, - 0x90, 0x81, 0xc8, 0x6a, 0xc1, 0x88, 0xd7, 0xc5, 0x34, 0xea, 0x60, 0x7a, 0x75, 0x2f, 0xad, 0x3a, - 0x97, 0x7a, 0x5d, 0x4b, 0xbd, 0x8e, 0xa5, 0x5a, 0xb7, 0xaa, 0x16, 0xda, 0x95, 0xd6, 0x6e, 0x69, - 0x0c, 0xe2, 0xb4, 0x1d, 0xb4, 0xc7, 0x33, 0x67, 0x41, 0xff, 0x6a, 0xa8, 0xaa, 0x9f, 0x35, 0xbf, - 0xb6, 0xb4, 0x14, 0x8e, 0xee, 0x70, 0x9d, 0x12, 0x15, 0xae, 0xd6, 0xd0, 0x80, 0x78, 0x57, 0xa5, - 0x1d, 0xbb, 0x99, 0x83, 0x37, 0x71, 0xf4, 0xb2, 0x0e, 0x5f, 0xd8, 0xf1, 0x17, 0x6f, 0x4c, 0xad, - 0x11, 0xc1, 0x60, 0xf8, 0x4d, 0x69, 0xe8, 0x0d, 0xe6, 0x3c, 0xdf, 0x7c, 0x1b, 0xc4, 0x9c, 0x4f, - 0x18, 0x73, 0x49, 0xad, 0x54, 0x01, 0xde, 0x59, 0x80, 0x86, 0x99, 0xa9, 0x19, 0x88, 0xe3, 0x5f, - 0x85, 0x0a, 0x05, 0x28, 0x18, 0x14, 0x0c, 0x0a, 0x06, 0x05, 0xbb, 0x5c, 0x40, 0x98, 0x1e, 0x9c, - 0xdb, 0x96, 0xa2, 0x34, 0xa1, 0x92, 0xa3, 0x04, 0x7d, 0x82, 0x3e, 0x41, 0x9f, 0xf5, 0x46, 0x9f, - 0x48, 0x47, 0x4b, 0x3b, 0x67, 0x66, 0x9e, 0xaa, 0xec, 0xb4, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, + 0x5e, 0xdc, 0x0c, 0x91, 0x8e, 0x06, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xd2, + 0xd1, 0xe0, 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x12, 0xe9, 0x68, 0x90, 0x25, 0xc8, 0xd2, + 0x74, 0x05, 0xa4, 0xa3, 0xe5, 0xc4, 0x08, 0xa6, 0x24, 0xa3, 0x25, 0x95, 0x09, 0xe4, 0x4d, 0xe5, + 0x46, 0x54, 0x7d, 0x38, 0x56, 0x55, 0xa1, 0x1a, 0x2d, 0x57, 0xb1, 0x51, 0xdc, 0x3a, 0xa3, 0xb8, + 0xe1, 0xd0, 0x10, 0x8c, 0xe2, 0x32, 0x8a, 0xfb, 0xcb, 0x37, 0xc6, 0x28, 0x6e, 0x45, 0x50, 0x07, + 0x1c, 0x72, 0xa5, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0x17, 0x47, 0x32, + 0x8a, 0x2b, 0xe6, 0x7d, 0x19, 0xc5, 0x15, 0x78, 0x50, 0xf8, 0x63, 0xf8, 0x63, 0x6d, 0x93, 0x83, + 0x3f, 0x66, 0x14, 0x17, 0x1a, 0xd9, 0xfb, 0xe7, 0x61, 0x14, 0x57, 0x14, 0xad, 0x33, 0x8a, 0x0b, + 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x8c, 0xe2, 0x92, 0x24, 0xfc, 0xec, 0x9d, 0x31, 0x8a, + 0x4b, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0xeb, 0x19, 0xa6, 0x19, 0xc5, 0xd5, 0x58, 0x1c, + 0xca, 0x5b, 0xd1, 0xac, 0x18, 0xc5, 0x85, 0xf2, 0x56, 0x36, 0x39, 0x46, 0x71, 0x61, 0xba, 0x1d, + 0xff, 0xc0, 0x74, 0x2f, 0x6e, 0x86, 0x8c, 0xe2, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, + 0xa0, 0x96, 0x51, 0x5c, 0x70, 0x65, 0xd0, 0xa1, 0x95, 0x24, 0x1f, 0x5c, 0xc9, 0x28, 0x2e, 0xc8, + 0x12, 0x64, 0x69, 0xba, 0x02, 0xa3, 0xb8, 0x4a, 0xa3, 0xb8, 0xe3, 0x09, 0x50, 0xce, 0xa0, 0x97, + 0xb7, 0xbd, 0xb5, 0x3c, 0x83, 0x5e, 0xe1, 0x4c, 0xf4, 0xf1, 0x33, 0x67, 0xfd, 0x61, 0x33, 0xeb, + 0xe6, 0x08, 0xe4, 0x64, 0xfc, 0x10, 0x47, 0xf9, 0x33, 0x34, 0x4e, 0xf3, 0x3b, 0x6f, 0xbc, 0xb9, + 0xe8, 0x35, 0xde, 0x8d, 0xee, 0xbc, 0x71, 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xea, 0x5d, + 0xef, 0xfe, 0x35, 0xbe, 0xdb, 0xc6, 0x98, 0xe5, 0x38, 0x1e, 0xdd, 0xec, 0x1a, 0x1f, 0x9b, 0x2f, + 0x3b, 0x84, 0xae, 0x32, 0x7c, 0xae, 0x76, 0x50, 0x7e, 0x9d, 0x83, 0xf2, 0xfd, 0x21, 0xd4, 0x38, + 0x28, 0x7f, 0x8d, 0xc3, 0xab, 0xf8, 0x41, 0xf9, 0x83, 0xa4, 0xdb, 0x8a, 0x5a, 0xe3, 0xe6, 0xf6, + 0xa8, 0x7f, 0x35, 0x54, 0x15, 0xea, 0x98, 0x5d, 0x5b, 0x7a, 0xe6, 0x5e, 0xb7, 0x8b, 0x5f, 0x09, + 0x73, 0x73, 0x60, 0x7f, 0x50, 0x0e, 0xdd, 0xcc, 0xb1, 0x9b, 0x39, 0x78, 0x13, 0x47, 0x5f, 0x0d, + 0x4c, 0xaf, 0x56, 0xf1, 0x30, 0xe8, 0xb2, 0x57, 0xea, 0xae, 0x07, 0xaa, 0xaf, 0x2f, 0x54, 0x17, + 0x64, 0x82, 0x04, 0x60, 0xef, 0x86, 0xc7, 0x66, 0x24, 0x6d, 0x3e, 0x3e, 0x99, 0x4d, 0x4d, 0x84, + 0x7f, 0x70, 0x40, 0xe6, 0xb8, 0xb5, 0x64, 0x77, 0xf6, 0xe6, 0xd0, 0xd6, 0x6a, 0x69, 0xef, 0x7a, + 0x3f, 0xea, 0xc4, 0x5f, 0x92, 0x4e, 0xd2, 0x2a, 0x3e, 0x88, 0x6b, 0x8b, 0x2b, 0xa2, 0xdd, 0xa3, + 0xab, 0x39, 0xde, 0x39, 0x32, 0xb4, 0x8d, 0x58, 0xd6, 0x2f, 0x99, 0xe5, 0xcb, 0x67, 0xf5, 0xd2, + 0x59, 0xbc, 0x5a, 0xd6, 0xae, 0x96, 0xa5, 0xab, 0x64, 0xe5, 0x7e, 0xc7, 0x36, 0x29, 0x9a, 0xa5, + 0x36, 0x55, 0x2a, 0x10, 0x27, 0x9f, 0x15, 0x0a, 0x13, 0x6a, 0x1c, 0xf4, 0x16, 0x1c, 0xb4, 0x3f, + 0x94, 0x05, 0x1c, 0xf4, 0x1a, 0xe3, 0x46, 0x71, 0x0e, 0xba, 0x39, 0xd9, 0xf3, 0x4a, 0xbc, 0x73, + 0xbe, 0x5e, 0xc5, 0x14, 0xa2, 0xe1, 0x7e, 0x03, 0x70, 0xa4, 0x66, 0x0e, 0xd5, 0xcc, 0xb1, 0x9a, + 0x38, 0x58, 0x79, 0xea, 0x6f, 0x13, 0x85, 0x68, 0x57, 0x9b, 0x1c, 0x85, 0xe8, 0xa0, 0x9d, 0xb5, + 0x9d, 0xd3, 0xb6, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x1d, 0xe7, 0xae, + 0xe4, 0xe4, 0x8b, 0x37, 0x89, 0x42, 0xb4, 0xe8, 0x92, 0x8c, 0x35, 0x55, 0x2f, 0xac, 0xce, 0x2c, + 0xcf, 0x58, 0x13, 0x63, 0x4d, 0x46, 0x26, 0x87, 0x42, 0x34, 0xd3, 0x4d, 0xbe, 0x3f, 0x0f, 0x0a, + 0xd1, 0xa2, 0x68, 0x1d, 0x85, 0x68, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x45, 0x21, 0x9a, + 0x24, 0xe1, 0x67, 0xef, 0x0c, 0x85, 0x68, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x5e, 0xcf, + 0x30, 0x8d, 0x42, 0xb4, 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0x85, 0x42, 0x34, 0x94, 0xb7, 0xb2, + 0xc9, 0xa1, 0x10, 0x0d, 0xd3, 0xed, 0xf8, 0x07, 0xa6, 0x7b, 0x71, 0x33, 0x44, 0x21, 0x1a, 0x50, + 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x28, 0x44, 0x83, 0x2b, 0x83, 0x0e, 0xad, 0x24, + 0xf9, 0xe0, 0x4a, 0x14, 0xa2, 0x41, 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x50, 0x88, 0x76, 0xad, 0xe9, + 0x32, 0x23, 0xee, 0x31, 0xad, 0x14, 0x9d, 0x8f, 0x82, 0x86, 0xaa, 0x3f, 0x25, 0x2a, 0x3e, 0x1c, + 0xab, 0x6a, 0x41, 0x0a, 0xea, 0xe6, 0x3e, 0x0c, 0x70, 0x6a, 0x23, 0xb9, 0x75, 0x46, 0x72, 0xc3, + 0xa1, 0x23, 0x18, 0xc9, 0x65, 0x24, 0xf7, 0x97, 0x6f, 0x8c, 0x91, 0xdc, 0x8a, 0xa0, 0x0f, 0xb8, + 0xe4, 0x4a, 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x2e, 0x9e, 0x64, 0x24, + 0x57, 0xcc, 0xfb, 0x32, 0x92, 0x2b, 0xf0, 0xa0, 0xf0, 0xc8, 0xf0, 0xc8, 0xda, 0x26, 0x07, 0x8f, + 0xcc, 0x48, 0x2e, 0x74, 0xb2, 0xf7, 0xcf, 0xc3, 0x48, 0xae, 0x28, 0x5a, 0x67, 0x24, 0x17, 0x28, + 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x19, 0xc9, 0x25, 0x49, 0xf8, 0xd9, 0x3b, 0x63, 0x24, 0x97, + 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x33, 0x92, 0xab, 0xb1, 0x38, 0x94, + 0xb7, 0xa2, 0x59, 0x31, 0x92, 0x0b, 0xe5, 0xad, 0x6c, 0x72, 0x8c, 0xe4, 0xc2, 0x74, 0x3b, 0xfe, + 0x81, 0xe9, 0x5e, 0xdc, 0x0c, 0x19, 0xc9, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, + 0x2d, 0x23, 0xb9, 0xe0, 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x91, 0x5c, 0x90, 0x25, + 0xc8, 0xd2, 0x74, 0x05, 0x46, 0x72, 0x95, 0x47, 0x72, 0xc7, 0x93, 0xa0, 0xa1, 0x4e, 0xe4, 0x06, + 0x75, 0xb2, 0xaf, 0x92, 0xed, 0x79, 0x6f, 0x73, 0x35, 0xd1, 0x39, 0xea, 0xfe, 0xb0, 0x99, 0x75, + 0x73, 0x44, 0x72, 0x32, 0x7e, 0x98, 0xa3, 0xfc, 0x59, 0x1a, 0xa7, 0xf9, 0x13, 0x34, 0xde, 0x5c, + 0xf4, 0x1a, 0xef, 0x46, 0x4f, 0xd0, 0x38, 0x68, 0xa7, 0x67, 0x71, 0x3b, 0x6d, 0x1c, 0xf5, 0xae, + 0xf7, 0x8f, 0xc7, 0x77, 0xfd, 0xd7, 0xf8, 0xa6, 0x1b, 0x63, 0xf2, 0xe3, 0x78, 0x74, 0xcf, 0x1b, + 0x61, 0xd8, 0xaf, 0xdf, 0x07, 0xff, 0x0b, 0xef, 0x00, 0x1f, 0x2d, 0x5f, 0xc0, 0xd8, 0x9d, 0x1a, + 0xb9, 0x5b, 0xc3, 0x76, 0x67, 0x7e, 0x0e, 0x4d, 0xaf, 0x36, 0xfa, 0x2e, 0x93, 0xef, 0xe1, 0xda, + 0xf0, 0x0a, 0xfa, 0x63, 0x6a, 0x15, 0xc7, 0x1b, 0x47, 0x46, 0x4a, 0x41, 0x8c, 0x4e, 0x96, 0xa4, + 0x8d, 0xe5, 0xe9, 0x61, 0x69, 0x1a, 0x58, 0x8d, 0xee, 0x55, 0xa3, 0x75, 0x55, 0xe8, 0x5b, 0xbf, + 0x43, 0x9b, 0x94, 0x54, 0x41, 0xad, 0x39, 0xd9, 0xa3, 0x42, 0xc6, 0x38, 0xd9, 0x4e, 0xf9, 0x3a, + 0x42, 0x06, 0x22, 0xab, 0x05, 0x23, 0x5e, 0x17, 0xd3, 0xa8, 0x83, 0xe9, 0xd5, 0xbd, 0xb4, 0xea, + 0x5c, 0xea, 0x75, 0x2d, 0xf5, 0x3a, 0x96, 0x6a, 0xdd, 0x2a, 0x2c, 0xb4, 0x2b, 0xad, 0xdd, 0x52, + 0x1b, 0x24, 0xdd, 0x56, 0xd4, 0x1a, 0xcf, 0x9c, 0x45, 0xfd, 0xab, 0xa1, 0xaa, 0x7e, 0xd6, 0xec, + 0xda, 0xd2, 0x52, 0x38, 0xba, 0xc3, 0x75, 0x4a, 0x54, 0xb8, 0x5a, 0x43, 0x03, 0xe2, 0x5d, 0x41, + 0x3b, 0x76, 0x33, 0x07, 0x6f, 0xe2, 0xe8, 0x65, 0x1d, 0xbe, 0xb0, 0xe3, 0x2f, 0xde, 0x98, 0x5a, + 0x23, 0x82, 0xc1, 0xf0, 0x9b, 0xd2, 0xd0, 0x1b, 0xcc, 0x79, 0xbe, 0xf9, 0xd6, 0x88, 0x39, 0x9f, + 0x30, 0xe6, 0x92, 0x5a, 0xa9, 0x02, 0xbc, 0xb3, 0x00, 0x0d, 0x33, 0x55, 0x33, 0x10, 0xc7, 0xbf, + 0x0a, 0x15, 0x0a, 0x50, 0x30, 0x28, 0x18, 0x14, 0x0c, 0x0a, 0x76, 0xb9, 0x80, 0x30, 0x3d, 0x38, + 0xb3, 0x2d, 0x45, 0x69, 0x42, 0x25, 0x47, 0x09, 0xfa, 0x04, 0x7d, 0x82, 0x3e, 0xab, 0x8d, 0x3e, + 0x91, 0x8e, 0x96, 0x76, 0xce, 0xcc, 0x3c, 0x85, 0xec, 0xb4, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0xc7, 0xb9, 0x2b, 0x39, 0xf9, 0xe2, 0x4d, 0x22, 0x1d, 0x2d, 0xba, - 0x24, 0xf3, 0x4e, 0xf5, 0x0b, 0xab, 0x73, 0xcb, 0x33, 0xef, 0xc4, 0xbc, 0x93, 0x91, 0xc9, 0x21, + 0x24, 0xf3, 0x4e, 0xd5, 0x0b, 0xab, 0x33, 0xcb, 0x33, 0xef, 0xc4, 0xbc, 0x93, 0x91, 0xc9, 0x21, 0x1d, 0xcd, 0xd8, 0x93, 0xef, 0xcf, 0x83, 0x74, 0xb4, 0x28, 0x5a, 0x47, 0x3a, 0x1a, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x91, 0x8e, 0x26, 0x49, 0xf8, 0xd9, 0x3b, 0x43, 0x3a, 0x9a, 0x30, - 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x37, 0x33, 0x4c, 0x23, 0x1d, 0xad, 0xb1, 0x38, 0x94, 0xb7, + 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x23, 0x1d, 0xad, 0xb1, 0x38, 0x94, 0xb7, 0xa2, 0x59, 0x21, 0x1d, 0x0d, 0xe5, 0xad, 0x6c, 0x72, 0x48, 0x47, 0xc3, 0x74, 0x3b, 0xfe, 0x81, - 0xe9, 0x5e, 0xde, 0x0c, 0x91, 0x8e, 0x06, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, - 0xd2, 0xd1, 0xe0, 0xca, 0x4a, 0x87, 0x56, 0x92, 0x7c, 0x70, 0x25, 0xd2, 0xd1, 0x20, 0x4b, 0x90, - 0xa5, 0xe9, 0x0a, 0x48, 0x47, 0xcb, 0x89, 0x11, 0xcc, 0x48, 0x46, 0x4b, 0x2a, 0x13, 0xc8, 0x9b, - 0xca, 0x8d, 0xa8, 0xfa, 0x70, 0xa4, 0xaa, 0x42, 0x35, 0x5a, 0xae, 0x66, 0xa3, 0xb8, 0x4d, 0x46, - 0x71, 0xab, 0x43, 0x43, 0x30, 0x8a, 0xcb, 0x28, 0xee, 0x2f, 0xdf, 0x18, 0xa3, 0xb8, 0x35, 0x41, - 0x1d, 0x70, 0xc8, 0xb5, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x5d, 0x1c, - 0xc9, 0x28, 0xae, 0x98, 0xf7, 0x65, 0x14, 0x57, 0xe0, 0x41, 0xe1, 0x8f, 0xe1, 0x8f, 0xb5, 0x4d, - 0x0e, 0xfe, 0x98, 0x51, 0x5c, 0x68, 0x64, 0xef, 0x9f, 0x87, 0x51, 0x5c, 0x51, 0xb4, 0xce, 0x28, - 0x2e, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x32, 0x8a, 0x4b, 0x92, 0xf0, 0xb3, 0x77, 0xc6, - 0x28, 0x2e, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x6f, 0x66, 0x98, 0x66, 0x14, 0x57, 0x63, - 0x71, 0x28, 0x6f, 0x45, 0xb3, 0x62, 0x14, 0x17, 0xca, 0x5b, 0xd9, 0xe4, 0x18, 0xc5, 0x85, 0xe9, - 0x76, 0xfc, 0x03, 0xd3, 0xbd, 0xbc, 0x19, 0x32, 0x8a, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, - 0xb5, 0x80, 0x5a, 0x46, 0x71, 0xc1, 0x95, 0x95, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x46, 0x71, - 0x41, 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x18, 0xc5, 0x55, 0x1a, 0xc5, 0x1d, 0x4f, 0x80, 0x72, 0x06, - 0xbd, 0xbc, 0xed, 0x6d, 0xe4, 0x19, 0xf4, 0x0a, 0x67, 0xa2, 0x8f, 0x9f, 0x39, 0xeb, 0x0f, 0x5b, - 0x59, 0x9a, 0x23, 0x90, 0x93, 0xf1, 0x43, 0x1c, 0xe5, 0xcf, 0x10, 0x9e, 0xe6, 0x77, 0x1e, 0xbe, - 0xbe, 0xe8, 0x85, 0xef, 0x46, 0x77, 0x1e, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, - 0xeb, 0x83, 0xbf, 0xc6, 0x77, 0x1b, 0x8e, 0x59, 0x8e, 0xe3, 0xd1, 0xcd, 0x6e, 0xf0, 0xb1, 0xf9, - 0xb2, 0x43, 0xe8, 0x2a, 0xc3, 0xe7, 0x6a, 0x07, 0xe5, 0x37, 0x39, 0x28, 0xdf, 0x1f, 0x42, 0x8d, - 0x83, 0xf2, 0x37, 0x38, 0xbc, 0x8a, 0x1f, 0x94, 0x3f, 0x88, 0xd3, 0x76, 0xd0, 0x1e, 0x37, 0xb7, - 0x07, 0xfd, 0xab, 0xa1, 0xaa, 0x50, 0xc7, 0xfc, 0xda, 0xd2, 0x33, 0xf7, 0xba, 0x5d, 0xfc, 0x4a, - 0x98, 0x9b, 0x03, 0xfb, 0x2b, 0xe5, 0xd0, 0xcd, 0x1c, 0xbb, 0x99, 0x83, 0x37, 0x71, 0xf4, 0xf5, - 0xc0, 0xf4, 0x6a, 0x15, 0x0f, 0x83, 0x2e, 0x7b, 0xa5, 0xee, 0x7a, 0xa0, 0xfa, 0xe6, 0x42, 0x75, - 0x41, 0x26, 0x48, 0x00, 0xf6, 0x6e, 0x79, 0x6c, 0x46, 0xd2, 0xe6, 0xe3, 0x93, 0xd9, 0x34, 0x44, - 0xf8, 0x07, 0x07, 0x64, 0x8e, 0x5b, 0x4b, 0x76, 0x67, 0x6f, 0x0e, 0x6d, 0xad, 0xd1, 0x6d, 0x5e, - 0xf7, 0xd2, 0x20, 0xbe, 0xee, 0xb9, 0xb7, 0xb3, 0x22, 0xc6, 0xdd, 0x59, 0xc3, 0xf1, 0x2e, 0x91, - 0xa1, 0x68, 0xc4, 0x32, 0x7c, 0xc9, 0x8c, 0x5e, 0x3e, 0x83, 0x97, 0xce, 0xd8, 0xd5, 0x32, 0x74, - 0xb5, 0x8c, 0x5c, 0x25, 0x03, 0xf7, 0x3b, 0x8e, 0x49, 0x51, 0x2a, 0x8d, 0x99, 0xb2, 0x80, 0x38, - 0xd1, 0xac, 0x50, 0x84, 0x50, 0xe3, 0x9b, 0x77, 0xe0, 0x9b, 0xfd, 0xa1, 0x27, 0xe0, 0x9b, 0x37, - 0x18, 0x23, 0x8a, 0xf3, 0xcd, 0xad, 0xc9, 0x9e, 0x57, 0xe2, 0x98, 0xf3, 0xf5, 0x6a, 0xa6, 0x06, - 0x0d, 0xcf, 0x5b, 0x01, 0x47, 0x6a, 0xe6, 0x50, 0xcd, 0x1c, 0xab, 0x89, 0x83, 0x95, 0xa7, 0xf9, - 0xb6, 0x51, 0x83, 0x76, 0xb5, 0xc9, 0x51, 0x83, 0xae, 0xb4, 0xb3, 0xb6, 0x73, 0xda, 0x56, 0xce, - 0xdb, 0xdc, 0x89, 0x9b, 0x3b, 0x73, 0x53, 0xa7, 0xae, 0xe3, 0xdc, 0x95, 0x9c, 0x7c, 0xf1, 0x26, - 0x51, 0x83, 0x16, 0x5d, 0x92, 0x11, 0xa6, 0xfa, 0x85, 0xd5, 0xb9, 0xe5, 0x19, 0x61, 0x62, 0x84, - 0xc9, 0xc8, 0xe4, 0x50, 0x83, 0x66, 0x92, 0xc9, 0xf7, 0xe7, 0x41, 0x0d, 0x5a, 0x14, 0xad, 0xa3, - 0x06, 0x0d, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0xa8, 0x41, 0x93, 0x24, 0xfc, 0xec, 0x9d, - 0xa1, 0x06, 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x9b, 0x19, 0xa6, 0x51, 0x83, 0xd6, - 0x58, 0x1c, 0xca, 0x5b, 0xd1, 0xac, 0x50, 0x83, 0x86, 0xf2, 0x56, 0x36, 0x39, 0xd4, 0xa0, 0x61, - 0xba, 0x1d, 0xff, 0xc0, 0x74, 0x2f, 0x6f, 0x86, 0xa8, 0x41, 0x03, 0x6a, 0x01, 0xb5, 0x80, 0x5a, - 0x40, 0x2d, 0xa0, 0x16, 0x35, 0x68, 0x70, 0x65, 0xa5, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x12, 0x35, - 0x68, 0x90, 0x25, 0xc8, 0xd2, 0x74, 0x05, 0xd4, 0xa0, 0x9d, 0xea, 0xb7, 0x4c, 0x25, 0x3d, 0x66, - 0xb5, 0xa0, 0xf3, 0x01, 0xd0, 0xaa, 0x2a, 0x4c, 0x89, 0xca, 0x0b, 0x47, 0xaa, 0x6a, 0x8f, 0x82, - 0xca, 0xb8, 0xf7, 0xc3, 0x9a, 0xda, 0x20, 0x6e, 0x93, 0x41, 0xdc, 0xea, 0x90, 0x10, 0x0c, 0xe2, - 0x32, 0x88, 0xfb, 0xcb, 0x37, 0xc6, 0x20, 0x6e, 0x4d, 0x30, 0x07, 0x0c, 0x72, 0xad, 0x9c, 0xb7, - 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0x17, 0x45, 0x32, 0x88, 0x2b, 0xe6, 0x7d, 0x19, - 0xc4, 0x15, 0x78, 0x50, 0xd8, 0x63, 0xd8, 0x63, 0x6d, 0x93, 0x83, 0x3d, 0x66, 0x10, 0x17, 0x12, - 0xd9, 0xfb, 0xe7, 0x61, 0x10, 0x57, 0x14, 0xad, 0x33, 0x88, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, - 0x81, 0xb2, 0x0c, 0xe2, 0x92, 0x24, 0xfc, 0xec, 0x9d, 0x31, 0x88, 0x4b, 0x98, 0x26, 0x4c, 0x13, - 0xa6, 0x09, 0xd3, 0x9b, 0x19, 0xa6, 0x19, 0xc4, 0xd5, 0x58, 0x1c, 0xca, 0x5b, 0xd1, 0xac, 0x18, - 0xc4, 0x85, 0xf2, 0x56, 0x36, 0x39, 0x06, 0x71, 0x61, 0xba, 0x1d, 0xff, 0xc0, 0x74, 0x2f, 0x6f, - 0x86, 0x0c, 0xe2, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x96, 0x41, 0x5c, 0x70, - 0x65, 0xa5, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x41, 0x5c, 0x90, 0x25, 0xc8, 0xd2, 0x74, 0x05, - 0x06, 0x71, 0x55, 0x06, 0x71, 0xc7, 0xf3, 0x9f, 0x55, 0x9d, 0xc3, 0xad, 0xd4, 0x29, 0xbe, 0x4a, - 0x16, 0xe7, 0xa9, 0xa5, 0x35, 0x44, 0x67, 0xa6, 0xfb, 0xc3, 0x56, 0x96, 0xe6, 0xe8, 0xe3, 0x64, - 0xfc, 0x08, 0x47, 0xf9, 0x13, 0x84, 0xa7, 0xf9, 0x7d, 0x87, 0xaf, 0x2f, 0x7a, 0xe1, 0xbb, 0xd1, - 0x7d, 0x87, 0x87, 0x9d, 0xe4, 0x2c, 0xea, 0x24, 0xe1, 0x71, 0xf3, 0x53, 0x2f, 0x7d, 0x73, 0xdd, - 0x4b, 0xc3, 0x31, 0xbf, 0x71, 0x3c, 0xba, 0xd5, 0xad, 0x6a, 0x18, 0xab, 0xdf, 0x27, 0xfa, 0x0b, - 0x9b, 0xbb, 0x3f, 0x66, 0x2e, 0x60, 0xd9, 0x2e, 0x2c, 0xda, 0xad, 0x15, 0xbb, 0xb3, 0x35, 0x87, - 0x76, 0xd6, 0x18, 0x7f, 0x84, 0xeb, 0x5e, 0xd7, 0xfd, 0xac, 0x6e, 0x41, 0x66, 0xdc, 0x59, 0xc3, - 0xf1, 0x0e, 0x91, 0x91, 0x45, 0x10, 0xa3, 0x86, 0x25, 0x29, 0x60, 0x79, 0xaa, 0x57, 0x9a, 0xd2, - 0x55, 0xa3, 0x6e, 0xd5, 0x28, 0x5a, 0x15, 0x2a, 0xd6, 0xef, 0x18, 0x26, 0x25, 0x3b, 0xd0, 0x98, - 0xc9, 0x8c, 0xc4, 0x4c, 0xf2, 0xce, 0x1c, 0x88, 0x74, 0x1e, 0x26, 0xac, 0xf1, 0x22, 0x5e, 0xef, - 0xd2, 0xa8, 0x6f, 0xe9, 0xd5, 0xb3, 0xb4, 0xea, 0x57, 0xea, 0xf5, 0x2a, 0xf5, 0xfa, 0x94, 0x6a, - 0x3d, 0xaa, 0x5a, 0x78, 0x56, 0x5a, 0x93, 0xa5, 0xd1, 0x9a, 0xec, 0x79, 0x25, 0x2d, 0xac, 0x7c, - 0xbd, 0x9a, 0x89, 0x61, 0xed, 0x20, 0x86, 0xe5, 0xbf, 0x23, 0x35, 0x73, 0xa8, 0x66, 0x8e, 0xd5, - 0xc4, 0xc1, 0xca, 0x53, 0x92, 0xdb, 0x88, 0x61, 0xb9, 0xda, 0xe4, 0x88, 0x61, 0x55, 0xda, 0x59, - 0xdb, 0x39, 0x6d, 0x2b, 0xe7, 0x6d, 0xee, 0xc4, 0xcd, 0x9d, 0xb9, 0xa9, 0x53, 0xd7, 0x71, 0xee, - 0x4a, 0x4e, 0xbe, 0x78, 0x93, 0x88, 0x61, 0x89, 0x2e, 0x49, 0x07, 0x57, 0xfd, 0xc2, 0xea, 0xdc, - 0xf2, 0x74, 0x70, 0xd1, 0xc1, 0x65, 0x64, 0x72, 0x88, 0x61, 0xd1, 0xc8, 0xe5, 0xfb, 0xf3, 0x20, - 0x86, 0x25, 0x8a, 0xd6, 0x11, 0xc3, 0x02, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, 0xc4, 0xb0, - 0x48, 0x12, 0x7e, 0xf6, 0xce, 0x10, 0xc3, 0x22, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x84, 0xe9, 0xcd, - 0x0c, 0xd3, 0x88, 0x61, 0x69, 0x2c, 0x0e, 0xe5, 0xad, 0x68, 0x56, 0x88, 0x61, 0x41, 0x79, 0x2b, - 0x9b, 0x1c, 0x62, 0x58, 0x30, 0xdd, 0x8e, 0x7f, 0x60, 0xba, 0x97, 0x37, 0x43, 0xc4, 0xb0, 0x00, - 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x8b, 0x18, 0x16, 0xb8, 0xb2, 0xd2, 0xa1, 0x95, - 0x24, 0x1f, 0x5c, 0x89, 0x18, 0x16, 0xc8, 0x12, 0x64, 0x69, 0xba, 0x02, 0x62, 0x58, 0x02, 0xda, - 0x2d, 0xd7, 0xbd, 0xd1, 0x6f, 0xdc, 0x11, 0xc3, 0xca, 0x07, 0x40, 0xab, 0xaa, 0x86, 0x25, 0xaa, - 0xb0, 0x14, 0x65, 0xb1, 0xde, 0x24, 0xee, 0x78, 0xb9, 0x9a, 0x0d, 0xe2, 0x36, 0x19, 0xc4, 0xad, - 0x0e, 0x09, 0xc1, 0x20, 0x2e, 0x83, 0xb8, 0xbf, 0x7c, 0x63, 0x0c, 0xe2, 0xd6, 0x04, 0x73, 0xc0, - 0x20, 0xd7, 0xca, 0x79, 0x9b, 0x3b, 0x71, 0x73, 0x67, 0x6e, 0xea, 0xd4, 0x75, 0x51, 0x24, 0x83, + 0xe9, 0x5e, 0xdc, 0x0c, 0x91, 0x8e, 0x06, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, + 0xd2, 0xd1, 0xe0, 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x12, 0xe9, 0x68, 0x90, 0x25, 0xc8, + 0xd2, 0x74, 0x05, 0xa4, 0xa3, 0xe5, 0xc4, 0x08, 0xa6, 0x24, 0xa3, 0x25, 0x95, 0x09, 0xe4, 0x4d, + 0xe5, 0x46, 0x54, 0x7d, 0x38, 0x56, 0x55, 0xa1, 0x1a, 0x2d, 0x57, 0xb1, 0x51, 0xdc, 0x3a, 0xa3, + 0xb8, 0xe1, 0xd0, 0x10, 0x8c, 0xe2, 0x32, 0x8a, 0xfb, 0xcb, 0x37, 0xc6, 0x28, 0x6e, 0x45, 0x50, + 0x07, 0x1c, 0x72, 0xa5, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0x17, 0x47, + 0x32, 0x8a, 0x2b, 0xe6, 0x7d, 0x19, 0xc5, 0x15, 0x78, 0x50, 0xf8, 0x63, 0xf8, 0x63, 0x6d, 0x93, + 0x83, 0x3f, 0x66, 0x14, 0x17, 0x1a, 0xd9, 0xfb, 0xe7, 0x61, 0x14, 0x57, 0x14, 0xad, 0x33, 0x8a, + 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x8c, 0xe2, 0x92, 0x24, 0xfc, 0xec, 0x9d, 0x31, + 0x8a, 0x4b, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0xeb, 0x19, 0xa6, 0x19, 0xc5, 0xd5, 0x58, + 0x1c, 0xca, 0x5b, 0xd1, 0xac, 0x18, 0xc5, 0x85, 0xf2, 0x56, 0x36, 0x39, 0x46, 0x71, 0x61, 0xba, + 0x1d, 0xff, 0xc0, 0x74, 0x2f, 0x6e, 0x86, 0x8c, 0xe2, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, + 0x2d, 0xa0, 0x96, 0x51, 0x5c, 0x70, 0x65, 0xd0, 0xa1, 0x95, 0x24, 0x1f, 0x5c, 0xc9, 0x28, 0x2e, + 0xc8, 0x12, 0x64, 0x69, 0xba, 0x02, 0xa3, 0xb8, 0x4a, 0xa3, 0xb8, 0xe3, 0x09, 0x50, 0xce, 0xa0, + 0x97, 0xb7, 0xbd, 0xb5, 0x3c, 0x83, 0x5e, 0xe1, 0x4c, 0xf4, 0xf1, 0x33, 0x67, 0xfd, 0x61, 0x33, + 0xeb, 0xe6, 0x08, 0xe4, 0x64, 0xfc, 0x10, 0x47, 0xf9, 0x33, 0x34, 0x4e, 0xf3, 0x3b, 0x6f, 0xbc, + 0xb9, 0xe8, 0x35, 0xde, 0x8d, 0xee, 0xbc, 0x71, 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xea, + 0x5d, 0xef, 0xff, 0x35, 0xbe, 0xdb, 0xc6, 0x98, 0xe5, 0x38, 0x1e, 0xdd, 0xec, 0x1a, 0x1f, 0x9b, + 0x2f, 0x3b, 0x84, 0xae, 0x32, 0x7c, 0xae, 0x76, 0x50, 0x7e, 0x9d, 0x83, 0xf2, 0xfd, 0x21, 0xd4, + 0x38, 0x28, 0x7f, 0x8d, 0xc3, 0xab, 0xf8, 0x41, 0xf9, 0x83, 0xa4, 0xdb, 0x8a, 0x5a, 0xe3, 0xe6, + 0xf6, 0xa8, 0x7f, 0x35, 0x54, 0x15, 0xea, 0x98, 0x5d, 0x5b, 0x7a, 0xe6, 0x5e, 0xb7, 0x8b, 0x5f, + 0x09, 0x73, 0x73, 0x60, 0x7f, 0x50, 0x0e, 0xdd, 0xcc, 0xb1, 0x9b, 0x39, 0x78, 0x13, 0x47, 0x5f, + 0x0d, 0x4c, 0xaf, 0x56, 0xf1, 0x30, 0xe8, 0xb2, 0x57, 0xea, 0xae, 0x07, 0xaa, 0xaf, 0x2f, 0x54, + 0x17, 0x64, 0x82, 0x04, 0x60, 0xef, 0x86, 0xc7, 0x66, 0x24, 0x6d, 0x3e, 0x3e, 0x99, 0x4d, 0x4d, + 0x84, 0x7f, 0x70, 0x40, 0xe6, 0xb8, 0xb5, 0x64, 0x77, 0xf6, 0xe6, 0xd0, 0xd6, 0x6a, 0x9d, 0xfa, + 0x75, 0xaf, 0x1b, 0x25, 0xd7, 0x3d, 0xf7, 0x76, 0x56, 0xc4, 0xb8, 0x7b, 0x6b, 0x38, 0xde, 0x25, + 0x32, 0x14, 0x8d, 0x58, 0x86, 0x2f, 0x99, 0xd1, 0xcb, 0x67, 0xf0, 0xd2, 0x19, 0xbb, 0x5a, 0x86, + 0xae, 0x96, 0x91, 0xab, 0x64, 0xe0, 0x7e, 0xc7, 0x31, 0x29, 0x4a, 0xa5, 0x36, 0x55, 0x16, 0x10, + 0x27, 0x9a, 0x15, 0x8a, 0x10, 0x6a, 0x7c, 0xf3, 0x16, 0x7c, 0xb3, 0x3f, 0xf4, 0x04, 0x7c, 0xf3, + 0x1a, 0x63, 0x44, 0x71, 0xbe, 0xb9, 0x39, 0xd9, 0xf3, 0x4a, 0x1c, 0x73, 0xbe, 0x5e, 0xc5, 0xd4, + 0xa0, 0xe1, 0x79, 0x03, 0x70, 0xa4, 0x66, 0x0e, 0xd5, 0xcc, 0xb1, 0x9a, 0x38, 0x58, 0x79, 0x9a, + 0x6f, 0x13, 0x35, 0x68, 0x57, 0x9b, 0x1c, 0x35, 0xe8, 0xa0, 0x9d, 0xb5, 0x9d, 0xd3, 0xb6, 0x72, + 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x1d, 0xe7, 0xae, 0xe4, 0xe4, 0x8b, 0x37, + 0x89, 0x1a, 0xb4, 0xe8, 0x92, 0x8c, 0x30, 0x55, 0x2f, 0xac, 0xce, 0x2c, 0xcf, 0x08, 0x13, 0x23, + 0x4c, 0x46, 0x26, 0x87, 0x1a, 0x34, 0x93, 0x4c, 0xbe, 0x3f, 0x0f, 0x6a, 0xd0, 0xa2, 0x68, 0x1d, + 0x35, 0x68, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x45, 0x0d, 0x9a, 0x24, 0xe1, 0x67, 0xef, + 0x0c, 0x35, 0x68, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x5e, 0xcf, 0x30, 0x8d, 0x1a, 0xb4, + 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0x85, 0x1a, 0x34, 0x94, 0xb7, 0xb2, 0xc9, 0xa1, 0x06, 0x0d, + 0xd3, 0xed, 0xf8, 0x07, 0xa6, 0x7b, 0x71, 0x33, 0x44, 0x0d, 0x1a, 0x50, 0x0b, 0xa8, 0x05, 0xd4, + 0x02, 0x6a, 0x01, 0xb5, 0xa8, 0x41, 0x83, 0x2b, 0x83, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0xd4, + 0xa0, 0x41, 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x50, 0x83, 0x76, 0xaa, 0xdf, 0x72, 0x27, 0xe9, 0x31, + 0xad, 0x05, 0x9d, 0x0f, 0x80, 0x86, 0xaa, 0x30, 0x25, 0x2a, 0x2f, 0x1c, 0xab, 0xaa, 0x3d, 0x0a, + 0x2a, 0xe3, 0x3e, 0x0c, 0x6b, 0x6a, 0x83, 0xb8, 0x75, 0x06, 0x71, 0xc3, 0x21, 0x21, 0x18, 0xc4, + 0x65, 0x10, 0xf7, 0x97, 0x6f, 0x8c, 0x41, 0xdc, 0x8a, 0x60, 0x0e, 0x18, 0xe4, 0x4a, 0x39, 0x6f, + 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x2e, 0x8a, 0x64, 0x10, 0x57, 0xcc, 0xfb, 0x32, + 0x88, 0x2b, 0xf0, 0xa0, 0xb0, 0xc7, 0xb0, 0xc7, 0xda, 0x26, 0x07, 0x7b, 0xcc, 0x20, 0x2e, 0x24, + 0xb2, 0xf7, 0xcf, 0xc3, 0x20, 0xae, 0x28, 0x5a, 0x67, 0x10, 0x17, 0x28, 0x0b, 0x94, 0x05, 0xca, + 0x02, 0x65, 0x19, 0xc4, 0x25, 0x49, 0xf8, 0xd9, 0x3b, 0x63, 0x10, 0x97, 0x30, 0x4d, 0x98, 0x26, + 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x33, 0x88, 0xab, 0xb1, 0x38, 0x94, 0xb7, 0xa2, 0x59, 0x31, + 0x88, 0x0b, 0xe5, 0xad, 0x6c, 0x72, 0x0c, 0xe2, 0xc2, 0x74, 0x3b, 0xfe, 0x81, 0xe9, 0x5e, 0xdc, + 0x0c, 0x19, 0xc4, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0x83, 0xb8, 0xe0, + 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x41, 0x5c, 0x90, 0x25, 0xc8, 0xd2, 0x74, 0x05, + 0x06, 0x71, 0x55, 0x06, 0x71, 0xc7, 0xf3, 0x9f, 0xa1, 0xce, 0xe1, 0x06, 0x75, 0x8a, 0xaf, 0x92, + 0xc5, 0x79, 0x6a, 0x69, 0x35, 0xd1, 0x99, 0xe9, 0xfe, 0xb0, 0x99, 0x75, 0x73, 0xf4, 0x71, 0x32, + 0x7e, 0x84, 0xa3, 0xfc, 0x09, 0x1a, 0xa7, 0xf9, 0x7d, 0x37, 0xde, 0x5c, 0xf4, 0x1a, 0xef, 0x46, + 0xf7, 0xdd, 0x38, 0x68, 0xa7, 0x67, 0x71, 0x3b, 0x6d, 0x1c, 0xd7, 0x3f, 0xf5, 0xba, 0x87, 0xd7, + 0xbd, 0x6e, 0x63, 0xcc, 0x6f, 0x1c, 0x8f, 0x6e, 0x75, 0x23, 0x0c, 0x63, 0xf5, 0xfb, 0x44, 0x7f, + 0x61, 0x73, 0xf7, 0xc7, 0xcc, 0x05, 0x2c, 0xdb, 0x85, 0x45, 0xbb, 0xb5, 0x62, 0x77, 0xb6, 0xe6, + 0xd0, 0xce, 0x6a, 0xe3, 0x8f, 0x70, 0xdd, 0xeb, 0xb8, 0x9f, 0xd5, 0x2d, 0xc8, 0x8c, 0x7b, 0x6b, + 0x38, 0xde, 0x21, 0x32, 0xb2, 0x08, 0x62, 0xd4, 0xb0, 0x24, 0x05, 0x2c, 0x4f, 0xf5, 0x4a, 0x53, + 0xba, 0x6a, 0xd4, 0xad, 0x1a, 0x45, 0xab, 0x42, 0xc5, 0xfa, 0x1d, 0xc3, 0xa4, 0x64, 0x07, 0x6a, + 0x53, 0x99, 0x91, 0x98, 0x49, 0xde, 0x9b, 0x03, 0x91, 0xce, 0xc3, 0x84, 0x35, 0x5e, 0xc4, 0xeb, + 0x5d, 0x1a, 0xf5, 0x2d, 0xbd, 0x7a, 0x96, 0x56, 0xfd, 0x4a, 0xbd, 0x5e, 0xa5, 0x5e, 0x9f, 0x52, + 0xad, 0x47, 0x85, 0x85, 0x67, 0xa5, 0x35, 0x59, 0x6a, 0xcd, 0xc9, 0x9e, 0x57, 0xd2, 0xc2, 0xca, + 0xd7, 0xab, 0x98, 0x18, 0xd6, 0x16, 0x62, 0x58, 0xfe, 0x3b, 0x52, 0x33, 0x87, 0x6a, 0xe6, 0x58, + 0x4d, 0x1c, 0xac, 0x3c, 0x25, 0xb9, 0x89, 0x18, 0x96, 0xab, 0x4d, 0x8e, 0x18, 0x56, 0xd0, 0xce, + 0xda, 0xce, 0x69, 0x5b, 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x8e, 0x73, + 0x57, 0x72, 0xf2, 0xc5, 0x9b, 0x44, 0x0c, 0x4b, 0x74, 0x49, 0x3a, 0xb8, 0xaa, 0x17, 0x56, 0x67, + 0x96, 0xa7, 0x83, 0x8b, 0x0e, 0x2e, 0x23, 0x93, 0x43, 0x0c, 0x8b, 0x46, 0x2e, 0xdf, 0x9f, 0x07, + 0x31, 0x2c, 0x51, 0xb4, 0x8e, 0x18, 0x16, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x22, 0x86, + 0x45, 0x92, 0xf0, 0xb3, 0x77, 0x86, 0x18, 0x16, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0xaf, + 0x67, 0x98, 0x46, 0x0c, 0x4b, 0x63, 0x71, 0x28, 0x6f, 0x45, 0xb3, 0x42, 0x0c, 0x0b, 0xca, 0x5b, + 0xd9, 0xe4, 0x10, 0xc3, 0x82, 0xe9, 0x76, 0xfc, 0x03, 0xd3, 0xbd, 0xb8, 0x19, 0x22, 0x86, 0x05, + 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0xc4, 0xb0, 0xc0, 0x95, 0x41, 0x87, 0x56, + 0x92, 0x7c, 0x70, 0x25, 0x62, 0x58, 0x20, 0x4b, 0x90, 0xa5, 0xe9, 0x0a, 0x88, 0x61, 0x09, 0x68, + 0xb7, 0x5c, 0xf7, 0x46, 0xbf, 0x71, 0x4f, 0x0c, 0x2b, 0x1f, 0x00, 0x0d, 0x55, 0x0d, 0x4b, 0x54, + 0x61, 0x29, 0xce, 0x12, 0xbd, 0x49, 0xdc, 0xf1, 0x72, 0x15, 0x1b, 0xc4, 0xad, 0x33, 0x88, 0x1b, + 0x0e, 0x09, 0xc1, 0x20, 0x2e, 0x83, 0xb8, 0xbf, 0x7c, 0x63, 0x0c, 0xe2, 0x56, 0x04, 0x73, 0xc0, + 0x20, 0x57, 0xca, 0x79, 0x9b, 0x3b, 0x71, 0x73, 0x67, 0x6e, 0xea, 0xd4, 0x75, 0x51, 0x24, 0x83, 0xb8, 0x62, 0xde, 0x97, 0x41, 0x5c, 0x81, 0x07, 0x85, 0x3d, 0x86, 0x3d, 0xd6, 0x36, 0x39, 0xd8, 0x63, 0x06, 0x71, 0x21, 0x91, 0xbd, 0x7f, 0x1e, 0x06, 0x71, 0x45, 0xd1, 0x3a, 0x83, 0xb8, 0x40, 0x59, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0xcb, 0x20, 0x2e, 0x49, 0xc2, 0xcf, 0xde, 0x19, 0x83, 0xb8, - 0x84, 0x69, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0xbd, 0x99, 0x61, 0x9a, 0x41, 0x5c, 0x8d, 0xc5, 0xa1, + 0x84, 0x69, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0xbd, 0x9e, 0x61, 0x9a, 0x41, 0x5c, 0x8d, 0xc5, 0xa1, 0xbc, 0x15, 0xcd, 0x8a, 0x41, 0x5c, 0x28, 0x6f, 0x65, 0x93, 0x63, 0x10, 0x17, 0xa6, 0xdb, 0xf1, - 0x0f, 0x4c, 0xf7, 0xf2, 0x66, 0xc8, 0x20, 0x2e, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, - 0x6a, 0x19, 0xc4, 0x05, 0x57, 0x56, 0x3a, 0xb4, 0x92, 0xe4, 0x83, 0x2b, 0x19, 0xc4, 0x05, 0x59, - 0x82, 0x2c, 0x4d, 0x57, 0x60, 0x10, 0x57, 0x65, 0x10, 0x77, 0x3c, 0xff, 0x59, 0xd5, 0x39, 0xdc, - 0x4a, 0x9d, 0xe2, 0xab, 0x64, 0x71, 0x9e, 0x5a, 0x5a, 0x43, 0x74, 0x66, 0xba, 0x3f, 0x6c, 0x65, - 0x69, 0x8e, 0x3e, 0x4e, 0xc6, 0x8f, 0x70, 0x94, 0x3f, 0x41, 0x78, 0x9a, 0xdf, 0x77, 0xf8, 0xfa, - 0xa2, 0x17, 0xbe, 0x1b, 0xdd, 0x77, 0x78, 0xd8, 0x49, 0xce, 0xa2, 0x4e, 0x12, 0x1e, 0x37, 0x3f, - 0xf5, 0xd2, 0x4f, 0xbd, 0xee, 0x20, 0x1c, 0xf3, 0x1b, 0xc7, 0xa3, 0x5b, 0xdd, 0xaa, 0x86, 0xb1, - 0xfa, 0x7d, 0xa2, 0xbf, 0xb0, 0xb9, 0xfb, 0x63, 0xe6, 0x02, 0x96, 0xed, 0xc2, 0xa2, 0xdd, 0x5a, - 0xb1, 0x3b, 0x5b, 0x73, 0x68, 0x67, 0x8d, 0xee, 0xf3, 0xdb, 0x8f, 0x90, 0xf4, 0xae, 0xf7, 0x82, - 0xcb, 0x61, 0x37, 0x4b, 0x5a, 0xd1, 0xc0, 0x3d, 0xef, 0x5c, 0xd0, 0x1a, 0x0f, 0xae, 0xe6, 0x78, - 0xd7, 0xc8, 0x48, 0x25, 0x88, 0xd1, 0xc5, 0x92, 0xb4, 0xb0, 0x3c, 0xfd, 0x2b, 0x4d, 0xf3, 0xaa, - 0xd1, 0xb9, 0x6a, 0xb4, 0xad, 0x0a, 0x3d, 0xeb, 0x77, 0x5c, 0x93, 0x92, 0x22, 0x68, 0xcc, 0x64, - 0x4b, 0x62, 0x26, 0x79, 0x67, 0x36, 0x44, 0x3a, 0x37, 0x13, 0xd6, 0x7d, 0x11, 0xaf, 0x81, 0x69, - 0xd4, 0xbc, 0xf4, 0x6a, 0x5c, 0x5a, 0x35, 0x2d, 0xf5, 0x1a, 0x96, 0x7a, 0xcd, 0x4a, 0xb5, 0x46, - 0x55, 0x2d, 0x8c, 0x2b, 0xad, 0xd3, 0xd2, 0x68, 0x4d, 0xf6, 0xbc, 0x92, 0x3e, 0x56, 0xbe, 0x5e, - 0xcd, 0x04, 0xb2, 0x76, 0x10, 0xc8, 0xf2, 0xdf, 0x91, 0x9a, 0x39, 0x54, 0x33, 0xc7, 0x6a, 0xe2, - 0x60, 0xe5, 0x69, 0xca, 0x6d, 0x04, 0xb2, 0x5c, 0x6d, 0x72, 0x04, 0xb2, 0x2a, 0xed, 0xac, 0xed, - 0x9c, 0xb6, 0x95, 0xf3, 0x36, 0x77, 0xe2, 0xe6, 0xce, 0xdc, 0xd4, 0xa9, 0xeb, 0x38, 0x77, 0x25, - 0x27, 0x5f, 0xbc, 0x49, 0x04, 0xb2, 0x44, 0x97, 0xa4, 0xab, 0xab, 0x7e, 0x61, 0x75, 0x6e, 0x79, - 0xba, 0xba, 0xe8, 0xea, 0x32, 0x32, 0x39, 0x04, 0xb2, 0x68, 0xee, 0xf2, 0xfd, 0x79, 0x10, 0xc8, - 0x12, 0x45, 0xeb, 0x08, 0x64, 0x01, 0x65, 0x81, 0xb2, 0x40, 0x59, 0xa0, 0x2c, 0x02, 0x59, 0x24, - 0x09, 0x3f, 0x7b, 0x67, 0x08, 0x64, 0x11, 0xa6, 0x09, 0xd3, 0x84, 0x69, 0xc2, 0xf4, 0x66, 0x86, - 0x69, 0x04, 0xb2, 0x34, 0x16, 0x87, 0xf2, 0x56, 0x34, 0x2b, 0x04, 0xb2, 0xa0, 0xbc, 0x95, 0x4d, - 0x0e, 0x81, 0x2c, 0x98, 0x6e, 0xc7, 0x3f, 0x30, 0xdd, 0xcb, 0x9b, 0x21, 0x02, 0x59, 0x80, 0x5a, - 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x45, 0x20, 0x0b, 0x5c, 0x59, 0xe9, 0xd0, 0x4a, 0x92, + 0x0f, 0x4c, 0xf7, 0xe2, 0x66, 0xc8, 0x20, 0x2e, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, + 0x6a, 0x19, 0xc4, 0x05, 0x57, 0x06, 0x1d, 0x5a, 0x49, 0xf2, 0xc1, 0x95, 0x0c, 0xe2, 0x82, 0x2c, + 0x41, 0x96, 0xa6, 0x2b, 0x30, 0x88, 0xab, 0x32, 0x88, 0x3b, 0x9e, 0xff, 0x0c, 0x75, 0x0e, 0x37, + 0xa8, 0x53, 0x7c, 0x95, 0x2c, 0xce, 0x53, 0x4b, 0xab, 0x89, 0xce, 0x4c, 0xf7, 0x87, 0xcd, 0xac, + 0x9b, 0xa3, 0x8f, 0x93, 0xf1, 0x23, 0x1c, 0xe5, 0x4f, 0xd0, 0x38, 0xcd, 0xef, 0xbb, 0xf1, 0xe6, + 0xa2, 0xd7, 0x78, 0x37, 0xba, 0xef, 0xc6, 0x41, 0x3b, 0x3d, 0x8b, 0xdb, 0x69, 0xe3, 0xb8, 0xfe, + 0xa9, 0xd7, 0xfd, 0xd4, 0xeb, 0x0c, 0x1a, 0x63, 0x7e, 0xe3, 0x78, 0x74, 0xab, 0x1b, 0x61, 0x18, + 0xab, 0xdf, 0x27, 0xfa, 0x0b, 0x9b, 0xbb, 0x3f, 0x66, 0x2e, 0x60, 0xd9, 0x2e, 0x2c, 0xda, 0xad, + 0x15, 0xbb, 0xb3, 0x35, 0x87, 0x76, 0x56, 0xeb, 0xec, 0xdc, 0x7e, 0x84, 0xb4, 0x77, 0xbd, 0x1b, + 0x5d, 0x0e, 0x3b, 0x59, 0xda, 0x8c, 0x07, 0xee, 0x79, 0xe7, 0x82, 0xd6, 0x78, 0x74, 0x35, 0xc7, + 0xbb, 0x46, 0x46, 0x2a, 0x41, 0x8c, 0x2e, 0x96, 0xa4, 0x85, 0xe5, 0xe9, 0x5f, 0x69, 0x9a, 0x57, + 0x8d, 0xce, 0x55, 0xa3, 0x6d, 0x55, 0xe8, 0x59, 0xbf, 0xe3, 0x9a, 0x94, 0x14, 0x41, 0x6d, 0x2a, + 0x5b, 0x12, 0x33, 0xc9, 0x7b, 0xb3, 0x21, 0xd2, 0xb9, 0x99, 0xb0, 0xee, 0x8b, 0x78, 0x0d, 0x4c, + 0xa3, 0xe6, 0xa5, 0x57, 0xe3, 0xd2, 0xaa, 0x69, 0xa9, 0xd7, 0xb0, 0xd4, 0x6b, 0x56, 0xaa, 0x35, + 0xaa, 0xb0, 0x30, 0xae, 0xb4, 0x4e, 0x4b, 0xad, 0x39, 0xd9, 0xf3, 0x4a, 0xfa, 0x58, 0xf9, 0x7a, + 0x15, 0x13, 0xc8, 0xda, 0x42, 0x20, 0xcb, 0x7f, 0x47, 0x6a, 0xe6, 0x50, 0xcd, 0x1c, 0xab, 0x89, + 0x83, 0x95, 0xa7, 0x29, 0x37, 0x11, 0xc8, 0x72, 0xb5, 0xc9, 0x11, 0xc8, 0x0a, 0xda, 0x59, 0xdb, + 0x39, 0x6d, 0x2b, 0xe7, 0x6d, 0xee, 0xc4, 0xcd, 0x9d, 0xb9, 0xa9, 0x53, 0xd7, 0x71, 0xee, 0x4a, + 0x4e, 0xbe, 0x78, 0x93, 0x08, 0x64, 0x89, 0x2e, 0x49, 0x57, 0x57, 0xf5, 0xc2, 0xea, 0xcc, 0xf2, + 0x74, 0x75, 0xd1, 0xd5, 0x65, 0x64, 0x72, 0x08, 0x64, 0xd1, 0xdc, 0xe5, 0xfb, 0xf3, 0x20, 0x90, + 0x25, 0x8a, 0xd6, 0x11, 0xc8, 0x02, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, 0x04, 0xb2, 0x48, + 0x12, 0x7e, 0xf6, 0xce, 0x10, 0xc8, 0x22, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x84, 0xe9, 0xf5, 0x0c, + 0xd3, 0x08, 0x64, 0x69, 0x2c, 0x0e, 0xe5, 0xad, 0x68, 0x56, 0x08, 0x64, 0x41, 0x79, 0x2b, 0x9b, + 0x1c, 0x02, 0x59, 0x30, 0xdd, 0x8e, 0x7f, 0x60, 0xba, 0x17, 0x37, 0x43, 0x04, 0xb2, 0x00, 0xb5, + 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x8b, 0x40, 0x16, 0xb8, 0x32, 0xe8, 0xd0, 0x4a, 0x92, 0x0f, 0xae, 0x44, 0x20, 0x0b, 0x64, 0x09, 0xb2, 0x34, 0x5d, 0x01, 0x81, 0x2c, 0xb7, 0x7a, 0x2e, - 0x0f, 0x88, 0x7b, 0xcc, 0x4a, 0x65, 0xe5, 0xa3, 0xa0, 0x55, 0xd5, 0xca, 0x12, 0xd5, 0x5f, 0x8a, - 0xb2, 0x58, 0x6f, 0x26, 0x77, 0xbc, 0x5c, 0xcd, 0x46, 0x72, 0x9b, 0x8c, 0xe4, 0x56, 0x87, 0x8e, - 0x60, 0x24, 0x97, 0x91, 0xdc, 0x5f, 0xbe, 0x31, 0x46, 0x72, 0x6b, 0x82, 0x3e, 0xe0, 0x92, 0x6b, - 0xe5, 0xbc, 0xcd, 0x9d, 0xb8, 0xb9, 0x33, 0x37, 0x75, 0xea, 0xba, 0x78, 0x92, 0x91, 0x5c, 0x31, - 0xef, 0xcb, 0x48, 0xae, 0xc0, 0x83, 0xc2, 0x23, 0xc3, 0x23, 0x6b, 0x9b, 0x1c, 0x3c, 0x32, 0x23, - 0xb9, 0xd0, 0xc9, 0xde, 0x3f, 0x0f, 0x23, 0xb9, 0xa2, 0x68, 0x9d, 0x91, 0x5c, 0xa0, 0x2c, 0x50, - 0x16, 0x28, 0x0b, 0x94, 0x65, 0x24, 0x97, 0x24, 0xe1, 0x67, 0xef, 0x8c, 0x91, 0x5c, 0xc2, 0x34, - 0x61, 0x9a, 0x30, 0x4d, 0x98, 0xde, 0xcc, 0x30, 0xcd, 0x48, 0xae, 0xc6, 0xe2, 0x50, 0xde, 0x8a, - 0x66, 0xc5, 0x48, 0x2e, 0x94, 0xb7, 0xb2, 0xc9, 0x31, 0x92, 0x0b, 0xd3, 0xed, 0xf8, 0x07, 0xa6, - 0x7b, 0x79, 0x33, 0x64, 0x24, 0x17, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x8c, - 0xe4, 0x82, 0x2b, 0x2b, 0x1d, 0x5a, 0x49, 0xf2, 0xc1, 0x95, 0x8c, 0xe4, 0x82, 0x2c, 0x41, 0x96, - 0xa6, 0x2b, 0x30, 0x92, 0xab, 0x3c, 0x92, 0x3b, 0x9e, 0x04, 0xad, 0xea, 0x44, 0x6e, 0xa5, 0x4e, - 0xf6, 0x55, 0xb2, 0x3d, 0xef, 0x6d, 0xae, 0x21, 0x3a, 0x47, 0xdd, 0x1f, 0xb6, 0xb2, 0x34, 0x47, - 0x24, 0x27, 0xe3, 0x87, 0x39, 0xca, 0x9f, 0x25, 0x3c, 0xcd, 0x9f, 0x20, 0x7c, 0x7d, 0xd1, 0x0b, - 0xdf, 0x8d, 0x9e, 0x20, 0x3c, 0xec, 0x24, 0x67, 0x51, 0x27, 0x09, 0x8f, 0x9f, 0x7f, 0xea, 0xa5, - 0x47, 0xbd, 0xeb, 0xbd, 0xf7, 0x93, 0x9b, 0x0e, 0xc7, 0xe4, 0xc7, 0xf1, 0xe8, 0x9e, 0xb7, 0xaa, - 0x61, 0xbf, 0x7e, 0x1f, 0xfc, 0x2f, 0xbc, 0x03, 0x7c, 0xb4, 0x7c, 0x01, 0x63, 0x77, 0x6a, 0xe4, - 0x6e, 0x0d, 0xdb, 0x9d, 0xf9, 0x39, 0x34, 0xbd, 0xc6, 0x9d, 0xef, 0x32, 0x4c, 0xc7, 0x4f, 0xed, - 0xda, 0xfc, 0x0a, 0x12, 0xe4, 0x81, 0xb5, 0x1c, 0x6f, 0x22, 0x19, 0x59, 0x05, 0x31, 0x6a, 0x59, - 0x92, 0x42, 0x96, 0xa7, 0x8a, 0xa5, 0x29, 0x61, 0x35, 0xea, 0x57, 0x8d, 0xe2, 0x55, 0xa1, 0x72, - 0xfd, 0x0e, 0x73, 0x52, 0xb2, 0x05, 0x8d, 0x99, 0x2c, 0x4a, 0xcc, 0x24, 0xef, 0xcc, 0x91, 0x48, - 0xe7, 0x6c, 0xc2, 0x1a, 0x31, 0xe2, 0xf5, 0x32, 0x8d, 0xfa, 0x98, 0x5e, 0x3d, 0x4c, 0xab, 0xfe, - 0xa5, 0x5e, 0xef, 0x52, 0xaf, 0x6f, 0xa9, 0xd6, 0xb3, 0xaa, 0x85, 0x82, 0xa5, 0x35, 0x5d, 0x1a, - 0xad, 0xc9, 0x9e, 0x57, 0xd2, 0xd2, 0xca, 0xd7, 0xab, 0x99, 0x98, 0xd6, 0x0e, 0x62, 0x5a, 0xfe, - 0x3b, 0x52, 0x33, 0x87, 0x6a, 0xe6, 0x58, 0x4d, 0x1c, 0xac, 0x3c, 0x91, 0xb9, 0x8d, 0x98, 0x96, - 0xab, 0x4d, 0x8e, 0x98, 0x56, 0xa5, 0x9d, 0xb5, 0x9d, 0xd3, 0xb6, 0x72, 0xde, 0xe6, 0x4e, 0xdc, + 0x8f, 0x88, 0x7b, 0x4c, 0x4b, 0x65, 0xe5, 0xa3, 0xa0, 0xa1, 0x6a, 0x65, 0x89, 0xea, 0x2f, 0xc5, + 0x59, 0xa2, 0x37, 0x93, 0x3b, 0x5e, 0xae, 0x62, 0x23, 0xb9, 0x75, 0x46, 0x72, 0xc3, 0xa1, 0x23, + 0x18, 0xc9, 0x65, 0x24, 0xf7, 0x97, 0x6f, 0x8c, 0x91, 0xdc, 0x8a, 0xa0, 0x0f, 0xb8, 0xe4, 0x4a, + 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x2e, 0x9e, 0x64, 0x24, 0x57, 0xcc, + 0xfb, 0x32, 0x92, 0x2b, 0xf0, 0xa0, 0xf0, 0xc8, 0xf0, 0xc8, 0xda, 0x26, 0x07, 0x8f, 0xcc, 0x48, + 0x2e, 0x74, 0xb2, 0xf7, 0xcf, 0xc3, 0x48, 0xae, 0x28, 0x5a, 0x67, 0x24, 0x17, 0x28, 0x0b, 0x94, + 0x05, 0xca, 0x02, 0x65, 0x19, 0xc9, 0x25, 0x49, 0xf8, 0xd9, 0x3b, 0x63, 0x24, 0x97, 0x30, 0x4d, + 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, 0x33, 0x4c, 0x33, 0x92, 0xab, 0xb1, 0x38, 0x94, 0xb7, 0xa2, + 0x59, 0x31, 0x92, 0x0b, 0xe5, 0xad, 0x6c, 0x72, 0x8c, 0xe4, 0xc2, 0x74, 0x3b, 0xfe, 0x81, 0xe9, + 0x5e, 0xdc, 0x0c, 0x19, 0xc9, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0x23, + 0xb9, 0xe0, 0xca, 0xa0, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x91, 0x5c, 0x90, 0x25, 0xc8, 0xd2, + 0x74, 0x05, 0x46, 0x72, 0x95, 0x47, 0x72, 0xc7, 0x93, 0xa0, 0xa1, 0x4e, 0xe4, 0x06, 0x75, 0xb2, + 0xaf, 0x92, 0xed, 0x79, 0x6f, 0x73, 0x35, 0xd1, 0x39, 0xea, 0xfe, 0xb0, 0x99, 0x75, 0x73, 0x44, + 0x72, 0x32, 0x7e, 0x98, 0xa3, 0xfc, 0x59, 0x1a, 0xa7, 0xf9, 0x13, 0x34, 0xde, 0x5c, 0xf4, 0x1a, + 0xef, 0x46, 0x4f, 0xd0, 0x38, 0x68, 0xa7, 0x67, 0x71, 0x3b, 0x6d, 0x1c, 0xef, 0x7c, 0xea, 0x75, + 0x8f, 0x7a, 0xd7, 0xbb, 0xef, 0x27, 0x37, 0xdd, 0x18, 0x93, 0x1f, 0xc7, 0xa3, 0x7b, 0xde, 0x08, + 0xc3, 0x7e, 0xfd, 0x3e, 0xf8, 0x5f, 0x78, 0x07, 0xf8, 0x68, 0xf9, 0x02, 0xc6, 0xee, 0xd4, 0xc8, + 0xdd, 0x1a, 0xb6, 0x3b, 0xf3, 0x73, 0x68, 0x7a, 0xb5, 0x7b, 0xdf, 0x65, 0xd8, 0x1d, 0x3f, 0xb5, + 0x6b, 0xf3, 0x2b, 0x48, 0x90, 0x47, 0xd6, 0x72, 0xbc, 0x89, 0x64, 0x64, 0x15, 0xc4, 0xa8, 0x65, + 0x49, 0x0a, 0x59, 0x9e, 0x2a, 0x96, 0xa6, 0x84, 0xd5, 0xa8, 0x5f, 0x35, 0x8a, 0x57, 0x85, 0xca, + 0xf5, 0x3b, 0xcc, 0x49, 0xc9, 0x16, 0xd4, 0xa6, 0xb2, 0x28, 0x31, 0x93, 0xbc, 0x37, 0x47, 0x22, + 0x9d, 0xb3, 0x09, 0x6b, 0xc4, 0x88, 0xd7, 0xcb, 0x34, 0xea, 0x63, 0x7a, 0xf5, 0x30, 0xad, 0xfa, + 0x97, 0x7a, 0xbd, 0x4b, 0xbd, 0xbe, 0xa5, 0x5a, 0xcf, 0x0a, 0x0b, 0x05, 0x4b, 0x6b, 0xba, 0xd4, + 0x9a, 0x93, 0x3d, 0xaf, 0xa4, 0xa5, 0x95, 0xaf, 0x57, 0x31, 0x31, 0xad, 0x2d, 0xc4, 0xb4, 0xfc, + 0x77, 0xa4, 0x66, 0x0e, 0xd5, 0xcc, 0xb1, 0x9a, 0x38, 0x58, 0x79, 0x22, 0x73, 0x13, 0x31, 0x2d, + 0x57, 0x9b, 0x1c, 0x31, 0xad, 0xa0, 0x9d, 0xb5, 0x9d, 0xd3, 0xb6, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x1d, 0xe7, 0xae, 0xe4, 0xe4, 0x8b, 0x37, 0x89, 0x98, 0x96, 0xe8, - 0x92, 0x74, 0x80, 0xd5, 0x2f, 0xac, 0xce, 0x2d, 0x4f, 0x07, 0x18, 0x1d, 0x60, 0x46, 0x26, 0x87, + 0x92, 0x74, 0x80, 0x55, 0x2f, 0xac, 0xce, 0x2c, 0x4f, 0x07, 0x18, 0x1d, 0x60, 0x46, 0x26, 0x87, 0x98, 0x16, 0x8d, 0x60, 0xbe, 0x3f, 0x0f, 0x62, 0x5a, 0xa2, 0x68, 0x1d, 0x31, 0x2d, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x45, 0x4c, 0x8b, 0x24, 0xe1, 0x67, 0xef, 0x0c, 0x31, 0x2d, 0xc2, - 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0xde, 0xcc, 0x30, 0x8d, 0x98, 0x96, 0xc6, 0xe2, 0x50, 0xde, + 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x5e, 0xcf, 0x30, 0x8d, 0x98, 0x96, 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0x85, 0x98, 0x16, 0x94, 0xb7, 0xb2, 0xc9, 0x21, 0xa6, 0x05, 0xd3, 0xed, 0xf8, 0x07, - 0xa6, 0x7b, 0x79, 0x33, 0x44, 0x4c, 0x0b, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, - 0x88, 0x69, 0x81, 0x2b, 0x2b, 0x1d, 0x5a, 0x49, 0xf2, 0xc1, 0x95, 0x88, 0x69, 0x81, 0x2c, 0x41, - 0x96, 0xa6, 0x2b, 0x20, 0xa6, 0x25, 0x25, 0xef, 0x92, 0x4b, 0x7b, 0xcc, 0x4a, 0x69, 0xe5, 0x83, - 0xa0, 0x55, 0xd5, 0xd2, 0x12, 0x55, 0x65, 0x8a, 0xb2, 0x58, 0x6f, 0x22, 0x77, 0xbc, 0x5c, 0xcd, - 0x06, 0x72, 0x9b, 0x0c, 0xe4, 0x56, 0x87, 0x8c, 0x60, 0x20, 0x97, 0x81, 0xdc, 0x5f, 0xbe, 0x31, - 0x06, 0x72, 0x6b, 0x82, 0x3d, 0x60, 0x92, 0x6b, 0xe5, 0xbc, 0xcd, 0x9d, 0xb8, 0xb9, 0x33, 0x37, - 0x75, 0xea, 0xba, 0x68, 0x92, 0x81, 0x5c, 0x31, 0xef, 0xcb, 0x40, 0xae, 0xc0, 0x83, 0xc2, 0x22, - 0xc3, 0x22, 0x6b, 0x9b, 0x1c, 0x2c, 0x32, 0x03, 0xb9, 0x90, 0xc9, 0xde, 0x3f, 0x0f, 0x03, 0xb9, - 0xa2, 0x68, 0x9d, 0x81, 0x5c, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x65, 0x20, 0x97, 0x24, - 0xe1, 0x67, 0xef, 0x8c, 0x81, 0x5c, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0xde, 0xcc, 0x30, - 0xcd, 0x40, 0xae, 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0xc5, 0x40, 0x2e, 0x94, 0xb7, 0xb2, 0xc9, - 0x31, 0x90, 0x0b, 0xd3, 0xed, 0xf8, 0x07, 0xa6, 0x7b, 0x79, 0x33, 0x64, 0x20, 0x17, 0x50, 0x0b, - 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x0c, 0xe4, 0x82, 0x2b, 0x2b, 0x1d, 0x5a, 0x49, 0xf2, - 0xc1, 0x95, 0x0c, 0xe4, 0x82, 0x2c, 0x41, 0x96, 0xa6, 0x2b, 0x30, 0x90, 0xab, 0x3a, 0x90, 0x3b, - 0x9e, 0x03, 0xad, 0xea, 0x3c, 0x6e, 0xa5, 0x4e, 0xf5, 0x55, 0xb2, 0x3c, 0xcf, 0x2d, 0xae, 0x21, - 0x3a, 0x43, 0xdd, 0x1f, 0xb6, 0xb2, 0x34, 0x47, 0x23, 0x27, 0xe3, 0x47, 0x39, 0xca, 0x9f, 0x24, - 0x3c, 0xcd, 0xef, 0x3f, 0x7c, 0x7d, 0xd1, 0x0b, 0xdf, 0x8d, 0xee, 0x3f, 0x3c, 0xec, 0x24, 0x67, - 0x51, 0x27, 0x09, 0x8f, 0x9f, 0x7f, 0xea, 0xa5, 0x47, 0xbd, 0xeb, 0xbd, 0xbf, 0xc6, 0xb7, 0x1c, - 0x8e, 0x69, 0x8f, 0xe3, 0xd1, 0x1d, 0x6f, 0x55, 0xc3, 0x76, 0xfd, 0x3e, 0xf0, 0x5f, 0xd8, 0xfa, + 0xa6, 0x7b, 0x71, 0x33, 0x44, 0x4c, 0x0b, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, + 0x88, 0x69, 0x81, 0x2b, 0x83, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0xc4, 0xb4, 0x40, 0x96, 0x20, + 0x4b, 0xd3, 0x15, 0x10, 0xd3, 0x92, 0x92, 0x77, 0xc9, 0xa5, 0x3d, 0xa6, 0xa5, 0xb4, 0xf2, 0x41, + 0xd0, 0x50, 0xb5, 0xb4, 0x44, 0x55, 0x99, 0xe2, 0x2c, 0xd1, 0x9b, 0xc8, 0x1d, 0x2f, 0x57, 0xb1, + 0x81, 0xdc, 0x3a, 0x03, 0xb9, 0xe1, 0x90, 0x11, 0x0c, 0xe4, 0x32, 0x90, 0xfb, 0xcb, 0x37, 0xc6, + 0x40, 0x6e, 0x45, 0xb0, 0x07, 0x4c, 0x72, 0xa5, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, + 0x4e, 0x5d, 0x17, 0x4d, 0x32, 0x90, 0x2b, 0xe6, 0x7d, 0x19, 0xc8, 0x15, 0x78, 0x50, 0x58, 0x64, + 0x58, 0x64, 0x6d, 0x93, 0x83, 0x45, 0x66, 0x20, 0x17, 0x32, 0xd9, 0xfb, 0xe7, 0x61, 0x20, 0x57, + 0x14, 0xad, 0x33, 0x90, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x0c, 0xe4, 0x92, 0x24, + 0xfc, 0xec, 0x9d, 0x31, 0x90, 0x4b, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0xeb, 0x19, 0xa6, + 0x19, 0xc8, 0xd5, 0x58, 0x1c, 0xca, 0x5b, 0xd1, 0xac, 0x18, 0xc8, 0x85, 0xf2, 0x56, 0x36, 0x39, + 0x06, 0x72, 0x61, 0xba, 0x1d, 0xff, 0xc0, 0x74, 0x2f, 0x6e, 0x86, 0x0c, 0xe4, 0x02, 0x6a, 0x01, + 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x96, 0x81, 0x5c, 0x70, 0x65, 0xd0, 0xa1, 0x95, 0x24, 0x1f, + 0x5c, 0xc9, 0x40, 0x2e, 0xc8, 0x12, 0x64, 0x69, 0xba, 0x02, 0x03, 0xb9, 0xaa, 0x03, 0xb9, 0xe3, + 0x39, 0xd0, 0x50, 0xe7, 0x71, 0x83, 0x3a, 0xd5, 0x57, 0xc9, 0xf2, 0x3c, 0xb7, 0xb8, 0x9a, 0xe8, + 0x0c, 0x75, 0x7f, 0xd8, 0xcc, 0xba, 0x39, 0x1a, 0x39, 0x19, 0x3f, 0xca, 0x51, 0xfe, 0x24, 0x8d, + 0xd3, 0xfc, 0xfe, 0x1b, 0x6f, 0x2e, 0x7a, 0x8d, 0x77, 0xa3, 0xfb, 0x6f, 0x1c, 0xb4, 0xd3, 0xb3, + 0xb8, 0x9d, 0x36, 0x8e, 0x77, 0x3e, 0xf5, 0xba, 0x47, 0xbd, 0xeb, 0xdd, 0xbf, 0xc6, 0xb7, 0xdc, + 0x18, 0xd3, 0x1e, 0xc7, 0xa3, 0x3b, 0xde, 0x08, 0xc3, 0x76, 0xfd, 0x3e, 0xf0, 0x5f, 0xd8, 0xfa, 0xfd, 0xb3, 0x7a, 0x01, 0x43, 0x77, 0x68, 0xe0, 0x6e, 0x8d, 0xda, 0x9d, 0xe9, 0x39, 0x34, 0xbb, - 0x46, 0xf1, 0x4d, 0x0e, 0x82, 0xcb, 0x61, 0x37, 0x1b, 0x3f, 0xb7, 0x6b, 0xe3, 0x2b, 0xc8, 0x8f, - 0x07, 0x57, 0x73, 0xbc, 0x89, 0x64, 0x04, 0x15, 0xc4, 0x48, 0x65, 0x49, 0xf2, 0x58, 0x9e, 0x24, + 0x5a, 0xf1, 0x4d, 0xf6, 0xa3, 0xcb, 0x61, 0x27, 0x1b, 0x3f, 0xb7, 0x6b, 0xe3, 0x2b, 0xc8, 0x8f, + 0x47, 0x57, 0x73, 0xbc, 0x89, 0x64, 0x04, 0x15, 0xc4, 0x48, 0x65, 0x49, 0xf2, 0x58, 0x9e, 0x24, 0x96, 0x26, 0x83, 0xd5, 0x48, 0x5f, 0x35, 0x72, 0x57, 0x85, 0xc4, 0xf5, 0x3b, 0xcc, 0x49, 0x09, - 0x16, 0x34, 0x66, 0x72, 0x28, 0x31, 0x93, 0xbc, 0x33, 0x41, 0x22, 0x9d, 0xb1, 0x09, 0xab, 0xc3, + 0x16, 0xd4, 0xa6, 0x72, 0x28, 0x31, 0x93, 0xbc, 0x37, 0x41, 0x22, 0x9d, 0xb1, 0x09, 0xab, 0xc3, 0x88, 0x57, 0xca, 0x34, 0x2a, 0x63, 0x7a, 0x95, 0x30, 0xad, 0xca, 0x97, 0x7a, 0xa5, 0x4b, 0xbd, - 0xb2, 0xa5, 0x5a, 0xc9, 0xaa, 0x16, 0x02, 0x96, 0x56, 0x73, 0x69, 0xb4, 0x26, 0x7b, 0x5e, 0x49, - 0x45, 0x2b, 0x5f, 0xaf, 0x66, 0x32, 0x5a, 0x3b, 0xc8, 0x68, 0xf9, 0xef, 0x48, 0xcd, 0x1c, 0xaa, - 0x99, 0x63, 0x35, 0x71, 0xb0, 0xf2, 0x24, 0xe6, 0x36, 0x32, 0x5a, 0xae, 0x36, 0x39, 0x32, 0x5a, - 0x95, 0x76, 0xd6, 0x76, 0x4e, 0xdb, 0xca, 0x79, 0x9b, 0x3b, 0x71, 0x73, 0x67, 0x6e, 0xea, 0xd4, - 0x75, 0x9c, 0xbb, 0x92, 0x93, 0x2f, 0xde, 0x24, 0x32, 0x5a, 0xa2, 0x4b, 0xd2, 0xfb, 0x55, 0xbf, - 0xb0, 0x3a, 0xb7, 0x3c, 0xbd, 0x5f, 0xf4, 0x7e, 0x19, 0x99, 0x1c, 0x32, 0x5a, 0xb4, 0x80, 0xf9, - 0xfe, 0x3c, 0xc8, 0x68, 0x89, 0xa2, 0x75, 0x64, 0xb4, 0x80, 0xb2, 0x40, 0x59, 0xa0, 0x2c, 0x50, - 0x16, 0x19, 0x2d, 0x92, 0x84, 0x9f, 0xbd, 0x33, 0x64, 0xb4, 0x08, 0xd3, 0x84, 0x69, 0xc2, 0x34, - 0x61, 0x7a, 0x33, 0xc3, 0x34, 0x32, 0x5a, 0x1a, 0x8b, 0x43, 0x79, 0x2b, 0x9a, 0x15, 0x32, 0x5a, - 0x50, 0xde, 0xca, 0x26, 0x87, 0x8c, 0x16, 0x4c, 0xb7, 0xe3, 0x1f, 0x98, 0xee, 0xe5, 0xcd, 0x10, - 0x19, 0x2d, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x22, 0xa3, 0x05, 0xae, 0xac, - 0x74, 0x68, 0x25, 0xc9, 0x07, 0x57, 0x22, 0xa3, 0x05, 0xb2, 0x04, 0x59, 0x9a, 0xae, 0x80, 0x8c, - 0x96, 0x8c, 0xbc, 0xcb, 0x1d, 0x71, 0x8f, 0x59, 0x21, 0xad, 0x7c, 0x14, 0xb4, 0xaa, 0x4a, 0x5a, - 0xa2, 0xaa, 0x4c, 0x51, 0x16, 0xeb, 0xcd, 0xe4, 0x8e, 0x97, 0xab, 0xd9, 0x48, 0x6e, 0x93, 0x91, - 0xdc, 0xea, 0xd0, 0x11, 0x8c, 0xe4, 0x32, 0x92, 0xfb, 0xcb, 0x37, 0xc6, 0x48, 0x6e, 0x4d, 0xd0, - 0x07, 0x5c, 0x72, 0xad, 0x9c, 0xb7, 0xb9, 0x13, 0x37, 0x77, 0xe6, 0xa6, 0x4e, 0x5d, 0x17, 0x4f, - 0x32, 0x92, 0x2b, 0xe6, 0x7d, 0x19, 0xc9, 0x15, 0x78, 0x50, 0x78, 0x64, 0x78, 0x64, 0x6d, 0x93, - 0x83, 0x47, 0x66, 0x24, 0x17, 0x3a, 0xd9, 0xfb, 0xe7, 0x61, 0x24, 0x57, 0x14, 0xad, 0x33, 0x92, - 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x8c, 0xe4, 0x92, 0x24, 0xfc, 0xec, 0x9d, 0x31, - 0x92, 0x4b, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x9b, 0x19, 0xa6, 0x19, 0xc9, 0xd5, 0x58, - 0x1c, 0xca, 0x5b, 0xd1, 0xac, 0x18, 0xc9, 0x85, 0xf2, 0x56, 0x36, 0x39, 0x46, 0x72, 0x61, 0xba, - 0x1d, 0xff, 0xc0, 0x74, 0x2f, 0x6f, 0x86, 0x8c, 0xe4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, - 0x2d, 0xa0, 0x96, 0x91, 0x5c, 0x70, 0x65, 0xa5, 0x43, 0x2b, 0x49, 0x3e, 0xb8, 0x92, 0x91, 0x5c, - 0x90, 0x25, 0xc8, 0xd2, 0x74, 0x05, 0x46, 0x72, 0x95, 0x47, 0x72, 0xc7, 0x93, 0xa0, 0x55, 0x9d, - 0xc8, 0xad, 0xd4, 0xc9, 0xbe, 0x4a, 0xb6, 0xe7, 0xbd, 0xcd, 0x35, 0x44, 0xe7, 0xa8, 0xfb, 0xc3, - 0x56, 0x96, 0xe6, 0x88, 0xe4, 0x64, 0xfc, 0x30, 0x47, 0xf9, 0xb3, 0x84, 0xa7, 0xf9, 0x13, 0x84, - 0xaf, 0x2f, 0x7a, 0xe1, 0xbb, 0xd1, 0x13, 0x84, 0x87, 0x9d, 0xe4, 0x2c, 0xea, 0x24, 0xe1, 0xf1, - 0xf3, 0x4f, 0xbd, 0xf4, 0xa8, 0x77, 0x7d, 0xf0, 0x7e, 0x72, 0xd3, 0xe1, 0x98, 0xfc, 0x38, 0x1e, - 0xdd, 0xf3, 0x56, 0x35, 0xec, 0xd7, 0xed, 0x15, 0x1d, 0xef, 0x04, 0xe9, 0x1d, 0xe0, 0xa3, 0xe5, - 0x0b, 0x18, 0xbb, 0x53, 0x23, 0x77, 0x6b, 0xd8, 0xee, 0xcc, 0xcf, 0xa1, 0xe9, 0x35, 0xee, 0x7c, - 0x97, 0x61, 0x3a, 0x7e, 0x6a, 0xd7, 0xe6, 0x57, 0x90, 0x20, 0x0f, 0xac, 0xe5, 0x78, 0x13, 0xc9, + 0xb2, 0xa5, 0x5a, 0xc9, 0x0a, 0x0b, 0x01, 0x4b, 0xab, 0xb9, 0xd4, 0x9a, 0x93, 0x3d, 0xaf, 0xa4, + 0xa2, 0x95, 0xaf, 0x57, 0x31, 0x19, 0xad, 0x2d, 0x64, 0xb4, 0xfc, 0x77, 0xa4, 0x66, 0x0e, 0xd5, + 0xcc, 0xb1, 0x9a, 0x38, 0x58, 0x79, 0x12, 0x73, 0x13, 0x19, 0x2d, 0x57, 0x9b, 0x1c, 0x19, 0xad, + 0xa0, 0x9d, 0xb5, 0x9d, 0xd3, 0xb6, 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, + 0x1d, 0xe7, 0xae, 0xe4, 0xe4, 0x8b, 0x37, 0x89, 0x8c, 0x96, 0xe8, 0x92, 0xf4, 0x7e, 0x55, 0x2f, + 0xac, 0xce, 0x2c, 0x4f, 0xef, 0x17, 0xbd, 0x5f, 0x46, 0x26, 0x87, 0x8c, 0x16, 0x2d, 0x60, 0xbe, + 0x3f, 0x0f, 0x32, 0x5a, 0xa2, 0x68, 0x1d, 0x19, 0x2d, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, + 0x45, 0x46, 0x8b, 0x24, 0xe1, 0x67, 0xef, 0x0c, 0x19, 0x2d, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, + 0x98, 0x5e, 0xcf, 0x30, 0x8d, 0x8c, 0x96, 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0x85, 0x8c, 0x16, + 0x94, 0xb7, 0xb2, 0xc9, 0x21, 0xa3, 0x05, 0xd3, 0xed, 0xf8, 0x07, 0xa6, 0x7b, 0x71, 0x33, 0x44, + 0x46, 0x0b, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0xc8, 0x68, 0x81, 0x2b, 0x83, + 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x64, 0xb4, 0x40, 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x90, 0xd1, + 0x92, 0x91, 0x77, 0xb9, 0x27, 0xee, 0x31, 0x2d, 0xa4, 0x95, 0x8f, 0x82, 0x86, 0xaa, 0xa4, 0x25, + 0xaa, 0xca, 0x14, 0x67, 0x89, 0xde, 0x4c, 0xee, 0x78, 0xb9, 0x8a, 0x8d, 0xe4, 0xd6, 0x19, 0xc9, + 0x0d, 0x87, 0x8e, 0x60, 0x24, 0x97, 0x91, 0xdc, 0x5f, 0xbe, 0x31, 0x46, 0x72, 0x2b, 0x82, 0x3e, + 0xe0, 0x92, 0x2b, 0xe5, 0xbc, 0xcd, 0x9d, 0xb8, 0xb9, 0x33, 0x37, 0x75, 0xea, 0xba, 0x78, 0x92, + 0x91, 0x5c, 0x31, 0xef, 0xcb, 0x48, 0xae, 0xc0, 0x83, 0xc2, 0x23, 0xc3, 0x23, 0x6b, 0x9b, 0x1c, + 0x3c, 0x32, 0x23, 0xb9, 0xd0, 0xc9, 0xde, 0x3f, 0x0f, 0x23, 0xb9, 0xa2, 0x68, 0x9d, 0x91, 0x5c, + 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x65, 0x24, 0x97, 0x24, 0xe1, 0x67, 0xef, 0x8c, 0x91, + 0x5c, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x5e, 0xcf, 0x30, 0xcd, 0x48, 0xae, 0xc6, 0xe2, + 0x50, 0xde, 0x8a, 0x66, 0xc5, 0x48, 0x2e, 0x94, 0xb7, 0xb2, 0xc9, 0x31, 0x92, 0x0b, 0xd3, 0xed, + 0xf8, 0x07, 0xa6, 0x7b, 0x71, 0x33, 0x64, 0x24, 0x17, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, + 0x01, 0xb5, 0x8c, 0xe4, 0x82, 0x2b, 0x83, 0x0e, 0xad, 0x24, 0xf9, 0xe0, 0x4a, 0x46, 0x72, 0x41, + 0x96, 0x20, 0x4b, 0xd3, 0x15, 0x18, 0xc9, 0x55, 0x1e, 0xc9, 0x1d, 0x4f, 0x82, 0x86, 0x3a, 0x91, + 0x1b, 0xd4, 0xc9, 0xbe, 0x4a, 0xb6, 0xe7, 0xbd, 0xcd, 0xd5, 0x44, 0xe7, 0xa8, 0xfb, 0xc3, 0x66, + 0xd6, 0xcd, 0x11, 0xc9, 0xc9, 0xf8, 0x61, 0x8e, 0xf2, 0x67, 0x69, 0x9c, 0xe6, 0x4f, 0xd0, 0x78, + 0x73, 0xd1, 0x6b, 0xbc, 0x1b, 0x3d, 0x41, 0xe3, 0xa0, 0x9d, 0x9e, 0xc5, 0xed, 0xb4, 0x71, 0xbc, + 0xf3, 0xa9, 0xd7, 0x3d, 0xea, 0x5d, 0xef, 0xbf, 0x9f, 0xdc, 0x74, 0x63, 0x4c, 0x7e, 0x1c, 0x8f, + 0xee, 0x79, 0x23, 0x0c, 0xfb, 0xf5, 0xfb, 0xe0, 0x7f, 0xe1, 0x1d, 0xe0, 0xa3, 0xe5, 0x0b, 0x18, + 0xbb, 0x53, 0x23, 0x77, 0x6b, 0xd8, 0xee, 0xcc, 0xcf, 0xa1, 0xe9, 0xd5, 0xee, 0x7d, 0x97, 0x61, + 0x77, 0xfc, 0xd4, 0xae, 0xcd, 0xaf, 0x20, 0x41, 0x1e, 0x59, 0xcb, 0xf1, 0x26, 0x92, 0x91, 0x55, + 0x10, 0xa3, 0x96, 0x25, 0x29, 0x64, 0x79, 0xaa, 0x58, 0x9a, 0x12, 0x56, 0xa3, 0x7e, 0xd5, 0x28, + 0x5e, 0x15, 0x2a, 0xd7, 0xef, 0x30, 0x27, 0x25, 0x5b, 0x50, 0x9b, 0xca, 0xa2, 0xc4, 0x4c, 0xf2, + 0xde, 0x1c, 0x89, 0x74, 0xce, 0x26, 0xac, 0x11, 0x23, 0x5e, 0x2f, 0xd3, 0xa8, 0x8f, 0xe9, 0xd5, + 0xc3, 0xb4, 0xea, 0x5f, 0xea, 0xf5, 0x2e, 0xf5, 0xfa, 0x96, 0x6a, 0x3d, 0x2b, 0x2c, 0x14, 0x2c, + 0xad, 0xe9, 0x52, 0x6b, 0x4e, 0xf6, 0xbc, 0x92, 0x96, 0x56, 0xbe, 0x5e, 0xc5, 0xc4, 0xb4, 0xb6, + 0x10, 0xd3, 0xf2, 0xdf, 0x91, 0x9a, 0x39, 0x54, 0x33, 0xc7, 0x6a, 0xe2, 0x60, 0xe5, 0x89, 0xcc, + 0x4d, 0xc4, 0xb4, 0x5c, 0x6d, 0x72, 0xc4, 0xb4, 0x82, 0x76, 0xd6, 0x76, 0x4e, 0xdb, 0xca, 0x79, + 0x9b, 0x3b, 0x71, 0x73, 0x67, 0x6e, 0xea, 0xd4, 0x75, 0x9c, 0xbb, 0x92, 0x93, 0x2f, 0xde, 0x24, + 0x62, 0x5a, 0xa2, 0x4b, 0xd2, 0x01, 0x56, 0xbd, 0xb0, 0x3a, 0xb3, 0x3c, 0x1d, 0x60, 0x74, 0x80, + 0x19, 0x99, 0x1c, 0x62, 0x5a, 0x34, 0x82, 0xf9, 0xfe, 0x3c, 0x88, 0x69, 0x89, 0xa2, 0x75, 0xc4, + 0xb4, 0x80, 0xb2, 0x40, 0x59, 0xa0, 0x2c, 0x50, 0x16, 0x31, 0x2d, 0x92, 0x84, 0x9f, 0xbd, 0x33, + 0xc4, 0xb4, 0x08, 0xd3, 0x84, 0x69, 0xc2, 0x34, 0x61, 0x7a, 0x3d, 0xc3, 0x34, 0x62, 0x5a, 0x1a, + 0x8b, 0x43, 0x79, 0x2b, 0x9a, 0x15, 0x62, 0x5a, 0x50, 0xde, 0xca, 0x26, 0x87, 0x98, 0x16, 0x4c, + 0xb7, 0xe3, 0x1f, 0x98, 0xee, 0xc5, 0xcd, 0x10, 0x31, 0x2d, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x0b, + 0xa8, 0x05, 0xd4, 0x22, 0xa6, 0x05, 0xae, 0x0c, 0x3a, 0xb4, 0x92, 0xe4, 0x83, 0x2b, 0x11, 0xd3, + 0x02, 0x59, 0x82, 0x2c, 0x4d, 0x57, 0x40, 0x4c, 0x4b, 0x4a, 0xde, 0x25, 0x97, 0xf6, 0x98, 0x96, + 0xd2, 0xca, 0x07, 0x41, 0x43, 0xd5, 0xd2, 0x12, 0x55, 0x65, 0x8a, 0xb3, 0x44, 0x6f, 0x22, 0x77, + 0xbc, 0x5c, 0xc5, 0x06, 0x72, 0xeb, 0x0c, 0xe4, 0x86, 0x43, 0x46, 0x30, 0x90, 0xcb, 0x40, 0xee, + 0x2f, 0xdf, 0x18, 0x03, 0xb9, 0x15, 0xc1, 0x1e, 0x30, 0xc9, 0x95, 0x72, 0xde, 0xe6, 0x4e, 0xdc, + 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x5d, 0x34, 0xc9, 0x40, 0xae, 0x98, 0xf7, 0x65, 0x20, 0x57, 0xe0, + 0x41, 0x61, 0x91, 0x61, 0x91, 0xb5, 0x4d, 0x0e, 0x16, 0x99, 0x81, 0x5c, 0xc8, 0x64, 0xef, 0x9f, + 0x87, 0x81, 0x5c, 0x51, 0xb4, 0xce, 0x40, 0x2e, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x32, + 0x90, 0x4b, 0x92, 0xf0, 0xb3, 0x77, 0xc6, 0x40, 0x2e, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, + 0xaf, 0x67, 0x98, 0x66, 0x20, 0x57, 0x63, 0x71, 0x28, 0x6f, 0x45, 0xb3, 0x62, 0x20, 0x17, 0xca, + 0x5b, 0xd9, 0xe4, 0x18, 0xc8, 0x85, 0xe9, 0x76, 0xfc, 0x03, 0xd3, 0xbd, 0xb8, 0x19, 0x32, 0x90, + 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x06, 0x72, 0xc1, 0x95, 0x41, 0x87, + 0x56, 0x92, 0x7c, 0x70, 0x25, 0x03, 0xb9, 0x20, 0x4b, 0x90, 0xa5, 0xe9, 0x0a, 0x0c, 0xe4, 0xaa, + 0x0e, 0xe4, 0x8e, 0xe7, 0x40, 0x43, 0x9d, 0xc7, 0x0d, 0xea, 0x54, 0x5f, 0x25, 0xcb, 0xf3, 0xdc, + 0xe2, 0x6a, 0xa2, 0x33, 0xd4, 0xfd, 0x61, 0x33, 0xeb, 0xe6, 0x68, 0xe4, 0x64, 0xfc, 0x28, 0x47, + 0xf9, 0x93, 0x34, 0x4e, 0xf3, 0xfb, 0x6f, 0xbc, 0xb9, 0xe8, 0x35, 0xde, 0x8d, 0xee, 0xbf, 0x71, + 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xde, 0xf9, 0xd4, 0xeb, 0x1e, 0xf5, 0xae, 0xf7, 0xff, + 0x1a, 0xdf, 0x72, 0x63, 0x4c, 0x7b, 0x1c, 0x8f, 0xee, 0x78, 0x23, 0x0c, 0xdb, 0xf5, 0xfb, 0xc0, + 0x7f, 0x61, 0xeb, 0xf7, 0xcf, 0xea, 0x05, 0x0c, 0xdd, 0xa1, 0x81, 0xbb, 0x35, 0x6a, 0x77, 0xa6, + 0xe7, 0xd0, 0xec, 0x6a, 0xfd, 0xab, 0x61, 0x96, 0x44, 0x83, 0xa4, 0x93, 0x8c, 0x52, 0xda, 0xe8, + 0xaa, 0x77, 0xfb, 0x3f, 0xee, 0xc7, 0x7b, 0xef, 0xba, 0xaa, 0xe6, 0x2c, 0xe8, 0x78, 0x2b, 0xc9, 0xc8, 0x2a, 0x88, 0x51, 0xcb, 0x92, 0x14, 0xb2, 0x3c, 0x55, 0x2c, 0x4d, 0x09, 0xab, 0x51, 0xbf, - 0x6a, 0x14, 0xaf, 0x0a, 0x95, 0xeb, 0x77, 0x98, 0x93, 0x92, 0x2d, 0x68, 0xcc, 0x64, 0x51, 0x62, - 0x26, 0x79, 0x67, 0x8e, 0x44, 0x3a, 0x67, 0x13, 0xd6, 0x88, 0x11, 0xaf, 0x97, 0x69, 0xd4, 0xc7, - 0xf4, 0xea, 0x61, 0x5a, 0xf5, 0x2f, 0xf5, 0x7a, 0x97, 0x7a, 0x7d, 0x4b, 0xb5, 0x9e, 0x55, 0x2d, - 0x14, 0x2c, 0xad, 0xe9, 0xd2, 0x68, 0x4d, 0xf6, 0xbc, 0x92, 0x96, 0x56, 0xbe, 0x5e, 0xcd, 0xc4, - 0xb4, 0x76, 0x10, 0xd3, 0xf2, 0xdf, 0x91, 0x9a, 0x39, 0x54, 0x33, 0xc7, 0x6a, 0xe2, 0x60, 0xe5, - 0x89, 0xcc, 0x6d, 0xc4, 0xb4, 0x5c, 0x6d, 0x72, 0xc4, 0xb4, 0x2a, 0xed, 0xac, 0xed, 0x9c, 0xb6, - 0x95, 0xf3, 0x36, 0x77, 0xe2, 0xe6, 0xce, 0xdc, 0xd4, 0xa9, 0xeb, 0x38, 0x77, 0x25, 0x27, 0x5f, - 0xbc, 0x49, 0xc4, 0xb4, 0x44, 0x97, 0xa4, 0x03, 0xac, 0x7e, 0x61, 0x75, 0x6e, 0x79, 0x3a, 0xc0, - 0xe8, 0x00, 0x33, 0x32, 0x39, 0xc4, 0xb4, 0x68, 0x04, 0xf3, 0xfd, 0x79, 0x10, 0xd3, 0x12, 0x45, - 0xeb, 0x88, 0x69, 0x01, 0x65, 0x81, 0xb2, 0x40, 0x59, 0xa0, 0x2c, 0x62, 0x5a, 0x24, 0x09, 0x3f, - 0x7b, 0x67, 0x88, 0x69, 0x11, 0xa6, 0x09, 0xd3, 0x84, 0x69, 0xc2, 0xf4, 0x66, 0x86, 0x69, 0xc4, - 0xb4, 0x34, 0x16, 0x87, 0xf2, 0x56, 0x34, 0x2b, 0xc4, 0xb4, 0xa0, 0xbc, 0x95, 0x4d, 0x0e, 0x31, - 0x2d, 0x98, 0x6e, 0xc7, 0x3f, 0x30, 0xdd, 0xcb, 0x9b, 0x21, 0x62, 0x5a, 0x80, 0x5a, 0x40, 0x2d, - 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x45, 0x4c, 0x0b, 0x5c, 0x59, 0xe9, 0xd0, 0x4a, 0x92, 0x0f, 0xae, - 0x44, 0x4c, 0x0b, 0x64, 0x09, 0xb2, 0x34, 0x5d, 0x01, 0x31, 0x2d, 0x29, 0x79, 0x97, 0x5c, 0xda, - 0x63, 0x56, 0x4a, 0x2b, 0x1f, 0x04, 0xad, 0xaa, 0x96, 0x96, 0xa8, 0x2a, 0x53, 0x94, 0xc5, 0x7a, - 0x13, 0xb9, 0xe3, 0xe5, 0x6a, 0x36, 0x90, 0xdb, 0x64, 0x20, 0xb7, 0x3a, 0x64, 0x04, 0x03, 0xb9, - 0x0c, 0xe4, 0xfe, 0xf2, 0x8d, 0x31, 0x90, 0x5b, 0x13, 0xec, 0x01, 0x93, 0x5c, 0x2b, 0xe7, 0x6d, - 0xee, 0xc4, 0xcd, 0x9d, 0xb9, 0xa9, 0x53, 0xd7, 0x45, 0x93, 0x0c, 0xe4, 0x8a, 0x79, 0x5f, 0x06, - 0x72, 0x05, 0x1e, 0x14, 0x16, 0x19, 0x16, 0x59, 0xdb, 0xe4, 0x60, 0x91, 0x19, 0xc8, 0x85, 0x4c, - 0xf6, 0xfe, 0x79, 0x18, 0xc8, 0x15, 0x45, 0xeb, 0x0c, 0xe4, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, - 0xa0, 0x2c, 0x03, 0xb9, 0x24, 0x09, 0x3f, 0x7b, 0x67, 0x0c, 0xe4, 0x12, 0xa6, 0x09, 0xd3, 0x84, - 0x69, 0xc2, 0xf4, 0x66, 0x86, 0x69, 0x06, 0x72, 0x35, 0x16, 0x87, 0xf2, 0x56, 0x34, 0x2b, 0x06, - 0x72, 0xa1, 0xbc, 0x95, 0x4d, 0x8e, 0x81, 0x5c, 0x98, 0x6e, 0xc7, 0x3f, 0x30, 0xdd, 0xcb, 0x9b, - 0x21, 0x03, 0xb9, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x65, 0x20, 0x17, 0x5c, - 0x59, 0xe9, 0xd0, 0x4a, 0x92, 0x0f, 0xae, 0x64, 0x20, 0x17, 0x64, 0x09, 0xb2, 0x34, 0x5d, 0x81, - 0x81, 0x5c, 0xd5, 0x81, 0xdc, 0xf1, 0x1c, 0x68, 0x55, 0xe7, 0x71, 0x2b, 0x75, 0xaa, 0xaf, 0x92, - 0xe5, 0x79, 0x6e, 0x71, 0x0d, 0xd1, 0x19, 0xea, 0xfe, 0xb0, 0x95, 0xa5, 0x39, 0x1a, 0x39, 0x19, - 0x3f, 0xca, 0x51, 0xfe, 0x24, 0xe1, 0x69, 0x7e, 0xff, 0xe1, 0xeb, 0x8b, 0x5e, 0xf8, 0x6e, 0x74, - 0xff, 0xe1, 0x61, 0x27, 0x39, 0x8b, 0x3a, 0x49, 0x78, 0xfc, 0xfc, 0x53, 0x2f, 0x3d, 0xea, 0x5d, - 0x1f, 0xfc, 0x35, 0xbe, 0xe5, 0x70, 0x4c, 0x7b, 0x1c, 0x8f, 0xee, 0x78, 0xab, 0x1a, 0xb6, 0xeb, - 0xf7, 0x81, 0xff, 0xc2, 0xd6, 0xef, 0x9f, 0xd5, 0x0b, 0x18, 0xba, 0x43, 0x03, 0x77, 0x6b, 0xd4, - 0xee, 0x4c, 0xcf, 0xa1, 0xd9, 0x35, 0xfa, 0x57, 0xc3, 0x2c, 0x0e, 0x06, 0x71, 0x37, 0x1e, 0xa5, - 0xb4, 0xc1, 0x55, 0xef, 0xf6, 0x7f, 0xdc, 0x8f, 0xf7, 0x4e, 0xbb, 0xaa, 0x16, 0x2c, 0xe8, 0x78, - 0x2b, 0xc9, 0xc8, 0x2a, 0x88, 0x51, 0xcb, 0x92, 0x14, 0xb2, 0x3c, 0x55, 0x2c, 0x4d, 0x09, 0xab, - 0x51, 0xbf, 0x6a, 0x14, 0xaf, 0x0a, 0x95, 0xeb, 0x77, 0xb0, 0x93, 0x92, 0x2d, 0x68, 0xb4, 0x26, - 0x7b, 0x54, 0xc8, 0x18, 0x27, 0xdb, 0x29, 0x5f, 0x47, 0xc8, 0x40, 0x64, 0x75, 0x61, 0xc4, 0x6b, - 0x64, 0x1a, 0x35, 0x31, 0xbd, 0x1a, 0x98, 0x56, 0xcd, 0x4b, 0xbd, 0xc6, 0xa5, 0x5e, 0xd3, 0x52, - 0xad, 0x61, 0x55, 0x0b, 0xfb, 0x4a, 0xeb, 0xb8, 0x34, 0xa2, 0xf6, 0x75, 0xdc, 0xcf, 0x92, 0x41, - 0x1c, 0x24, 0x69, 0xd4, 0xca, 0x92, 0xeb, 0x38, 0x18, 0x65, 0x63, 0x03, 0x3d, 0x49, 0xad, 0xc5, - 0xb7, 0x20, 0x2d, 0x92, 0xa3, 0x3b, 0x76, 0xa7, 0x44, 0x92, 0xab, 0xb5, 0x3a, 0x20, 0xeb, 0x55, - 0x69, 0x37, 0x6f, 0xe6, 0xee, 0x4d, 0xdc, 0xbe, 0xac, 0xfb, 0x17, 0x0e, 0x03, 0xc5, 0x1b, 0x53, - 0x6b, 0x51, 0x30, 0x18, 0x8b, 0x53, 0x1a, 0x87, 0xab, 0xa6, 0xca, 0x65, 0xd4, 0xfd, 0x3b, 0xfa, - 0x3e, 0x08, 0x5a, 0x57, 0x97, 0xbd, 0xa8, 0x1f, 0x07, 0x97, 0x71, 0x5b, 0x31, 0x3e, 0xcf, 0xaf, - 0x4d, 0x60, 0x26, 0x30, 0x13, 0x98, 0x09, 0xcc, 0x04, 0x66, 0x02, 0xf3, 0x66, 0x07, 0xe6, 0x38, - 0x8d, 0xbe, 0x74, 0xe3, 0x20, 0x4a, 0x2e, 0x7a, 0x7a, 0x11, 0xf9, 0xee, 0xa2, 0x84, 0x62, 0x42, - 0x31, 0xa1, 0x98, 0x50, 0x4c, 0x28, 0x26, 0x14, 0x6f, 0x78, 0x28, 0xfe, 0x96, 0xc5, 0xfd, 0x34, - 0xea, 0x16, 0x48, 0x75, 0xc4, 0x22, 0xf7, 0x83, 0x44, 0x11, 0x2b, 0xff, 0xe4, 0x1e, 0xf4, 0x02, - 0xf5, 0xad, 0x7b, 0x22, 0x4e, 0x13, 0xa7, 0x89, 0xd3, 0xc4, 0x69, 0xe2, 0x34, 0x71, 0xda, 0xb3, - 0x38, 0x9d, 0x5c, 0xa4, 0x57, 0xfd, 0x38, 0x88, 0x06, 0x41, 0x2f, 0xca, 0xbe, 0x06, 0xdd, 0x38, - 0xbd, 0x18, 0x35, 0x9f, 0x2a, 0x85, 0xe8, 0x87, 0x97, 0x07, 0x46, 0x13, 0x9e, 0x09, 0xcf, 0x84, - 0x67, 0xc2, 0x33, 0xe1, 0x99, 0xf0, 0xdc, 0x8f, 0x83, 0x34, 0xfe, 0x96, 0x05, 0x5f, 0xaf, 0x7a, - 0x41, 0x72, 0xd1, 0x0b, 0x2e, 0xe3, 0xac, 0x9f, 0xb4, 0xd4, 0x63, 0xf4, 0x43, 0xf7, 0x40, 0xa0, - 0x26, 0x50, 0x13, 0xa8, 0x09, 0xd4, 0x04, 0x6a, 0x02, 0x75, 0x05, 0x02, 0x35, 0x93, 0xd6, 0x0f, - 0xac, 0x63, 0x3c, 0x73, 0xba, 0x60, 0xdc, 0x50, 0xf4, 0x90, 0x6d, 0x81, 0xb1, 0x65, 0x91, 0x39, - 0x59, 0xc9, 0xc3, 0xb4, 0x55, 0x0e, 0xd1, 0x56, 0x1b, 0x92, 0x6a, 0x32, 0x24, 0xe5, 0x4f, 0xc6, - 0xc4, 0x90, 0xd4, 0x06, 0x87, 0x2d, 0x86, 0xa4, 0x00, 0xc4, 0x00, 0x62, 0x00, 0x31, 0x80, 0x18, - 0x40, 0x0c, 0x20, 0xf6, 0x1c, 0x10, 0x33, 0x24, 0x45, 0x60, 0x26, 0x30, 0x13, 0x98, 0x09, 0xcc, - 0x04, 0x66, 0x02, 0xf3, 0x66, 0x04, 0x66, 0x86, 0xa4, 0x08, 0xc5, 0x84, 0x62, 0x42, 0x31, 0xa1, - 0x98, 0x50, 0x4c, 0x28, 0xb6, 0x0d, 0xc5, 0x0c, 0x49, 0x31, 0x24, 0x45, 0x9c, 0x26, 0x4e, 0x13, - 0xa7, 0x89, 0xd3, 0xc4, 0x69, 0x6f, 0xe3, 0x34, 0x43, 0x52, 0xc0, 0x68, 0xc2, 0x33, 0xe1, 0x99, - 0xf0, 0x4c, 0x78, 0x26, 0x3c, 0xfb, 0x1a, 0x9e, 0x19, 0x92, 0x22, 0x50, 0x13, 0xa8, 0x09, 0xd4, - 0x04, 0x6a, 0x02, 0x35, 0x81, 0xda, 0xaf, 0x2b, 0x33, 0x24, 0x25, 0x32, 0x24, 0x25, 0x78, 0xf0, - 0x29, 0x47, 0x3b, 0x6e, 0x82, 0x05, 0xf9, 0x75, 0xbe, 0xe3, 0x87, 0xdb, 0x9b, 0x3c, 0x9b, 0xdc, - 0xe3, 0x9f, 0xf9, 0x2d, 0x6e, 0xc0, 0x21, 0x8f, 0x83, 0x7e, 0x16, 0x07, 0xbd, 0xab, 0x6e, 0xd2, - 0xfa, 0x1e, 0x24, 0xbd, 0xeb, 0x3d, 0xb9, 0xd3, 0x1d, 0xe7, 0x56, 0xe2, 0x58, 0x47, 0x8e, 0x75, - 0x34, 0xcf, 0xe6, 0x39, 0xd6, 0x51, 0x2f, 0xd0, 0x89, 0x1d, 0xeb, 0x38, 0x73, 0x40, 0xb6, 0xf8, - 0xd8, 0xb2, 0xc2, 0x71, 0xdc, 0x1c, 0xf1, 0xe8, 0x13, 0xa5, 0xc1, 0xf4, 0x72, 0x25, 0x29, 0x0b, - 0xa6, 0x97, 0x67, 0x16, 0x10, 0x3e, 0xfb, 0x76, 0x6e, 0x5b, 0x8a, 0x9e, 0x81, 0xab, 0xe4, 0x28, - 0xd5, 0x1c, 0xa6, 0xa6, 0xe3, 0xd4, 0x77, 0xa0, 0xda, 0x8e, 0xd4, 0xcc, 0xa1, 0x9a, 0x39, 0x56, - 0x13, 0x07, 0x2b, 0x4f, 0x09, 0x6e, 0x2b, 0x70, 0xc2, 0xd2, 0x8e, 0xb7, 0x58, 0xe8, 0x32, 0xfa, - 0x16, 0x8c, 0xad, 0x50, 0x41, 0x31, 0x62, 0x6e, 0x93, 0xcf, 0xac, 0xae, 0x64, 0x8c, 0x3a, 0x05, - 0x3b, 0x75, 0x27, 0x6d, 0xe1, 0xac, 0xed, 0x9c, 0xb6, 0x95, 0xf3, 0x36, 0x77, 0xe2, 0xe6, 0xce, - 0xdc, 0xd4, 0xa9, 0xeb, 0x38, 0x77, 0x25, 0x27, 0x5f, 0xbc, 0x49, 0xb5, 0x02, 0xe0, 0xdc, 0x7e, - 0x1d, 0x26, 0x69, 0xf6, 0xbc, 0xa9, 0xb9, 0x5f, 0x73, 0xef, 0xfb, 0x42, 0x71, 0xc9, 0x0f, 0x51, - 0x7a, 0x71, 0xfb, 0xb4, 0x9f, 0x55, 0xf7, 0x87, 0xae, 0x3f, 0x1a, 0x3d, 0xe8, 0xfb, 0x24, 0x55, - 0x77, 0x84, 0x46, 0x61, 0x75, 0x6e, 0xf9, 0x4f, 0x51, 0x77, 0x18, 0x1b, 0xae, 0xff, 0xb6, 0x1f, - 0x8d, 0xaa, 0x34, 0x7f, 0x24, 0x17, 0x49, 0x76, 0x9b, 0x49, 0xed, 0xa8, 0xdf, 0xc7, 0xcd, 0x13, - 0x03, 0x93, 0x8b, 0xbe, 0x6d, 0xbc, 0xc9, 0xed, 0x35, 0x5f, 0xee, 0xbd, 0x3c, 0x78, 0xd1, 0x7c, - 0xb9, 0xbf, 0xc1, 0xb6, 0xb7, 0x55, 0xcf, 0xd5, 0xce, 0xb7, 0xea, 0xf1, 0x3c, 0x0a, 0xbe, 0xe1, - 0x36, 0x0f, 0xbe, 0x8e, 0xd3, 0x2c, 0xc8, 0xe2, 0xa8, 0xdf, 0xbe, 0xfa, 0x3b, 0xd5, 0x87, 0x93, - 0x73, 0x77, 0xa0, 0x94, 0xc0, 0x29, 0xf7, 0x9c, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, 0xa0, 0x2c, - 0x50, 0xd6, 0xa4, 0xa7, 0xf5, 0xbe, 0xfb, 0x15, 0xee, 0x6d, 0xad, 0x57, 0x92, 0xd0, 0x8f, 0x07, - 0x59, 0xd4, 0xcf, 0x82, 0x2c, 0xb9, 0x8c, 0xfb, 0xfa, 0x19, 0xc2, 0xec, 0xf2, 0x84, 0x69, 0xc2, - 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x56, 0xdb, 0xaf, 0xed, 0xb8, 0x95, 0x5c, 0x46, 0xdd, 0x83, - 0x3d, 0x8b, 0x40, 0xdd, 0x54, 0x5c, 0x73, 0x8e, 0x94, 0x69, 0x42, 0x79, 0xbb, 0x7f, 0x50, 0x1f, - 0x28, 0xef, 0x26, 0x94, 0x37, 0x94, 0xb7, 0xae, 0xc9, 0x3d, 0xc7, 0xe4, 0x60, 0xba, 0xdd, 0xfe, - 0xc0, 0x74, 0x2f, 0x6f, 0x86, 0x7f, 0x47, 0xfd, 0x34, 0x49, 0x2f, 0x82, 0xec, 0x6b, 0x3f, 0x1e, - 0x7c, 0xbd, 0xea, 0xb6, 0x83, 0x5e, 0x2b, 0xd3, 0x07, 0xb3, 0x0f, 0xdf, 0x06, 0xa0, 0x16, 0x50, - 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0xd5, 0xf6, 0x6b, 0x2f, 0xee, 0xb7, 0xe2, 0x34, 0x8b, 0x2e, - 0x62, 0x03, 0x54, 0xbb, 0x0f, 0xae, 0xac, 0x27, 0xae, 0xa4, 0x95, 0x0a, 0x5c, 0xb9, 0x61, 0x26, - 0xb7, 0xbb, 0x03, 0xb2, 0x04, 0x59, 0xfa, 0x8a, 0x2c, 0x2b, 0x3d, 0x51, 0xa4, 0x24, 0x0d, 0x54, - 0xac, 0x67, 0x2c, 0xf0, 0x72, 0x5f, 0xd8, 0xe3, 0xd9, 0xdd, 0x01, 0x79, 0xd1, 0xd3, 0xd4, 0xe5, - 0xcd, 0x45, 0x52, 0x3c, 0x52, 0xf6, 0x94, 0xf5, 0xb9, 0xcc, 0x59, 0xf2, 0xb4, 0xf5, 0xfb, 0xc1, - 0x4d, 0x6d, 0x1c, 0xb7, 0xc9, 0x38, 0x6e, 0x75, 0xa8, 0x08, 0xc6, 0x71, 0x19, 0xc7, 0xfd, 0xe5, - 0x1b, 0x63, 0x1c, 0xb7, 0x26, 0xc8, 0x03, 0x1e, 0xb9, 0x56, 0xce, 0xdb, 0xdc, 0x89, 0x9b, 0x3b, - 0x73, 0x53, 0xa7, 0xae, 0x8b, 0x25, 0x19, 0xc7, 0x15, 0xf3, 0xbe, 0x8c, 0xe3, 0x0a, 0x3c, 0x28, - 0x1c, 0x32, 0x1c, 0xb2, 0xb6, 0xc9, 0xc1, 0x21, 0x33, 0x8e, 0x0b, 0x95, 0xec, 0xfd, 0xf3, 0x30, - 0x8e, 0x2b, 0x8a, 0xd6, 0x19, 0xc7, 0x05, 0xca, 0x02, 0x65, 0x81, 0xb2, 0x40, 0x59, 0xc6, 0x71, - 0x49, 0x12, 0x7e, 0xf6, 0xce, 0x18, 0xc7, 0x25, 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x84, 0xe9, 0xcd, - 0x0c, 0xd3, 0x8c, 0xe3, 0x6a, 0x2c, 0x0e, 0xe5, 0xad, 0x68, 0x56, 0x8c, 0xe3, 0x42, 0x79, 0x2b, - 0x9b, 0x1c, 0xe3, 0xb8, 0x30, 0xdd, 0x8e, 0x7f, 0x60, 0xba, 0x97, 0x37, 0x43, 0xc6, 0x71, 0x01, - 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0xcb, 0x38, 0x2e, 0xb8, 0xb2, 0xd2, 0xa1, 0x95, - 0x24, 0x1f, 0x5c, 0xc9, 0x38, 0x2e, 0xc8, 0x12, 0x64, 0x69, 0xba, 0x02, 0xe3, 0xb8, 0x8a, 0xe3, - 0xb8, 0xe3, 0x29, 0xd0, 0xaa, 0x4e, 0xe3, 0x56, 0xea, 0x44, 0x5f, 0x25, 0xbb, 0xf3, 0xda, 0xde, - 0x1a, 0xa2, 0xf3, 0xd3, 0xfd, 0x61, 0x2b, 0x4b, 0x73, 0x24, 0x72, 0x32, 0x7e, 0x90, 0xa3, 0xfc, - 0x39, 0xc2, 0xd3, 0xfc, 0xee, 0xc3, 0xd7, 0x17, 0xbd, 0xf0, 0xdd, 0xe8, 0xee, 0xc3, 0xc3, 0x4e, - 0x72, 0x16, 0x75, 0x92, 0xf0, 0xac, 0x9f, 0xc5, 0xa7, 0xa3, 0x3b, 0x3e, 0xea, 0x5d, 0xef, 0x85, - 0x63, 0xc2, 0xe3, 0x78, 0x74, 0xbf, 0x5b, 0xd5, 0xb0, 0x5b, 0xbf, 0x0f, 0xfa, 0x17, 0xb6, 0x7c, - 0xdf, 0x2c, 0x5e, 0xc0, 0xc8, 0x9d, 0x19, 0xb7, 0x5b, 0x83, 0x76, 0x67, 0x76, 0x0e, 0x4d, 0xae, - 0x71, 0xef, 0x7b, 0x1c, 0x38, 0x37, 0xba, 0xa9, 0x86, 0xc2, 0xfd, 0x95, 0x1c, 0x6f, 0x1c, 0x19, - 0xf9, 0x04, 0x31, 0x0a, 0x59, 0x92, 0x2a, 0x96, 0xa7, 0x84, 0xa5, 0xa9, 0x5f, 0x35, 0x8a, 0x57, - 0x8d, 0xca, 0x55, 0xa1, 0x6c, 0xfd, 0x0e, 0x6d, 0x52, 0xf2, 0x04, 0x8d, 0x99, 0xac, 0x49, 0xcc, - 0x24, 0xef, 0xcc, 0x8b, 0x48, 0xe7, 0x68, 0xc2, 0x5a, 0x30, 0xe2, 0x75, 0x31, 0x8d, 0x3a, 0x98, - 0x5e, 0xdd, 0x4b, 0xab, 0xce, 0xa5, 0x5e, 0xd7, 0x52, 0xaf, 0x63, 0xa9, 0xd6, 0xad, 0xaa, 0x85, - 0x78, 0xa5, 0xb5, 0x5b, 0x1a, 0xad, 0xc9, 0x9e, 0x57, 0xd2, 0xcc, 0xca, 0xd7, 0xab, 0x99, 0x68, - 0xd6, 0x0e, 0xa2, 0x59, 0xfe, 0x3b, 0x52, 0x33, 0x87, 0x6a, 0xe6, 0x58, 0x4d, 0x1c, 0xac, 0x3c, - 0x69, 0xb9, 0x8d, 0x68, 0x96, 0xab, 0x4d, 0x8e, 0x68, 0x56, 0xa5, 0x9d, 0xb5, 0x9d, 0xd3, 0xb6, - 0x72, 0xde, 0xe6, 0x4e, 0xdc, 0xdc, 0x99, 0x9b, 0x3a, 0x75, 0x1d, 0xe7, 0xae, 0xe4, 0xe4, 0x8b, - 0x37, 0x89, 0x68, 0x96, 0xe8, 0x92, 0x74, 0x7a, 0xd5, 0x2f, 0xac, 0xce, 0x2d, 0x4f, 0xa7, 0x17, - 0x9d, 0x5e, 0x46, 0x26, 0x87, 0x68, 0x16, 0x0d, 0x5f, 0xbe, 0x3f, 0x0f, 0xa2, 0x59, 0xa2, 0x68, - 0x1d, 0xd1, 0x2c, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x45, 0x34, 0x8b, 0x24, 0xe1, 0x67, - 0xef, 0x0c, 0xd1, 0x2c, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0xde, 0xcc, 0x30, 0x8d, 0x68, - 0x96, 0xc6, 0xe2, 0x50, 0xde, 0x8a, 0x66, 0x85, 0x68, 0x16, 0x94, 0xb7, 0xb2, 0xc9, 0x21, 0x9a, - 0x05, 0xd3, 0xed, 0xf8, 0x07, 0xa6, 0x7b, 0x79, 0x33, 0x44, 0x34, 0x0b, 0x50, 0x0b, 0xa8, 0x05, - 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x88, 0x66, 0x81, 0x2b, 0x2b, 0x1d, 0x5a, 0x49, 0xf2, 0xc1, 0x95, - 0x88, 0x66, 0x81, 0x2c, 0x41, 0x96, 0xa6, 0x2b, 0x20, 0x9a, 0x25, 0x29, 0xe9, 0x72, 0x30, 0x2b, - 0x9a, 0x95, 0x8f, 0x81, 0x56, 0x55, 0x35, 0x4b, 0x54, 0x83, 0x29, 0xca, 0x62, 0xbd, 0x79, 0xdc, - 0xf1, 0x72, 0x35, 0x1b, 0xc7, 0x6d, 0x32, 0x8e, 0x5b, 0x1d, 0x2a, 0x82, 0x71, 0x5c, 0xc6, 0x71, - 0x7f, 0xf9, 0xc6, 0x18, 0xc7, 0xad, 0x09, 0xf2, 0x80, 0x47, 0xae, 0x95, 0xf3, 0x36, 0x77, 0xe2, - 0xe6, 0xce, 0xdc, 0xd4, 0xa9, 0xeb, 0x62, 0x49, 0xc6, 0x71, 0xc5, 0xbc, 0x2f, 0xe3, 0xb8, 0x02, - 0x0f, 0x0a, 0x87, 0x0c, 0x87, 0xac, 0x6d, 0x72, 0x70, 0xc8, 0x8c, 0xe3, 0x42, 0x25, 0x7b, 0xff, - 0x3c, 0x8c, 0xe3, 0x8a, 0xa2, 0x75, 0xc6, 0x71, 0x81, 0xb2, 0x40, 0x59, 0xa0, 0x2c, 0x50, 0x96, - 0x71, 0x5c, 0x92, 0x84, 0x9f, 0xbd, 0x33, 0xc6, 0x71, 0x09, 0xd3, 0x84, 0x69, 0xc2, 0x34, 0x61, - 0x7a, 0x33, 0xc3, 0x34, 0xe3, 0xb8, 0x1a, 0x8b, 0x43, 0x79, 0x2b, 0x9a, 0x15, 0xe3, 0xb8, 0x50, - 0xde, 0xca, 0x26, 0xc7, 0x38, 0x2e, 0x4c, 0xb7, 0xe3, 0x1f, 0x98, 0xee, 0xe5, 0xcd, 0x90, 0x71, - 0x5c, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x32, 0x8e, 0x0b, 0xae, 0xac, 0x74, - 0x68, 0x25, 0xc9, 0x07, 0x57, 0x32, 0x8e, 0x0b, 0xb2, 0x04, 0x59, 0x9a, 0xae, 0xc0, 0x38, 0xae, - 0xe2, 0x38, 0xee, 0x78, 0x0a, 0xb4, 0xaa, 0xd3, 0xb8, 0x95, 0x3a, 0xd1, 0x57, 0xc9, 0xee, 0xbc, - 0xb6, 0xb7, 0x86, 0xe8, 0xfc, 0x74, 0x7f, 0xd8, 0xca, 0xd2, 0x1c, 0x89, 0x9c, 0x8c, 0x1f, 0xe4, - 0x28, 0x7f, 0x8e, 0xf0, 0x34, 0xbf, 0xfb, 0xf0, 0xf5, 0x45, 0x2f, 0x7c, 0x37, 0xba, 0xfb, 0xf0, - 0xb0, 0x93, 0x9c, 0x45, 0x9d, 0x24, 0x3c, 0xeb, 0x67, 0xf1, 0xe9, 0xe8, 0x8e, 0x8f, 0x7a, 0xd7, - 0x07, 0xe1, 0x98, 0xf0, 0x38, 0x1e, 0xdd, 0xef, 0x56, 0x35, 0xec, 0xd6, 0xef, 0x83, 0xfe, 0x85, - 0x2d, 0xdf, 0x37, 0x8b, 0x17, 0x30, 0x72, 0x67, 0xc6, 0xed, 0xd6, 0xa0, 0xdd, 0x99, 0x9d, 0x43, - 0x93, 0x13, 0x12, 0x52, 0x10, 0x15, 0x4e, 0x10, 0x12, 0x4a, 0x10, 0x13, 0x46, 0x90, 0x24, 0x85, - 0xe5, 0xc9, 0x5f, 0x69, 0x92, 0x57, 0x8d, 0xcc, 0x55, 0x23, 0x6d, 0x55, 0xc8, 0x59, 0xbf, 0x83, - 0x98, 0x94, 0x10, 0x41, 0x63, 0x12, 0x47, 0x82, 0xdc, 0xbb, 0x0b, 0xd9, 0xe4, 0x64, 0x57, 0xcd, - 0x2e, 0x27, 0x64, 0x2e, 0xb2, 0x2c, 0x8a, 0x78, 0x0d, 0x4c, 0xa3, 0xe6, 0xa5, 0x57, 0xe3, 0xd2, - 0xaa, 0x69, 0xa9, 0xd7, 0xb0, 0xd4, 0x6b, 0x56, 0xaa, 0x35, 0xaa, 0x6a, 0xa1, 0x5b, 0xf1, 0x9a, - 0x53, 0xb1, 0x5f, 0x92, 0x76, 0x9c, 0x66, 0x49, 0xf6, 0xbd, 0x1f, 0x77, 0x24, 0x37, 0xcd, 0x24, - 0x23, 0x13, 0xac, 0x2a, 0x35, 0x8e, 0xf2, 0x47, 0x79, 0x1d, 0x0d, 0x14, 0x95, 0xbf, 0x0e, 0xdf, - 0x1e, 0x85, 0x67, 0xb7, 0xff, 0xf5, 0xf1, 0xdf, 0xa7, 0x6f, 0xa4, 0xb7, 0xe8, 0x88, 0xd0, 0x1e, - 0xa8, 0x54, 0xca, 0x94, 0x9b, 0x4e, 0x8e, 0x4e, 0x3f, 0x1d, 0x84, 0xc7, 0x87, 0xaf, 0xdf, 0x1c, - 0xbf, 0xf9, 0x23, 0xfc, 0xeb, 0xe4, 0xe8, 0xf7, 0xc3, 0xb3, 0x8f, 0x8d, 0x3a, 0x74, 0xf5, 0x28, - 0xbf, 0xc7, 0xb3, 0x0f, 0x1f, 0xdf, 0x84, 0xa7, 0x7f, 0x1e, 0x1f, 0xfd, 0xfe, 0xef, 0xf0, 0xf6, - 0x9d, 0xf2, 0x0e, 0x57, 0x7f, 0x87, 0xc7, 0x47, 0x27, 0xff, 0x3a, 0xfb, 0x78, 0xf8, 0xf1, 0x0d, - 0x2f, 0x6f, 0xad, 0x8d, 0xbc, 0xc7, 0x06, 0x2e, 0x61, 0x7c, 0xcd, 0x4f, 0xa7, 0x27, 0xe1, 0x9b, - 0x4f, 0xa7, 0x27, 0xbc, 0xbd, 0x12, 0x5b, 0x37, 0x3c, 0x3b, 0x7d, 0xcb, 0x0b, 0x2c, 0xf3, 0x02, - 0xb1, 0xc0, 0xf5, 0x5e, 0xe0, 0xf3, 0xdb, 0xfd, 0x8b, 0x17, 0x74, 0xe1, 0x05, 0x3f, 0x9d, 0x1e, - 0x9f, 0xf1, 0xf6, 0x4a, 0xd8, 0xe0, 0x01, 0x36, 0x58, 0x32, 0x93, 0x01, 0x92, 0xb8, 0xb4, 0xc6, - 0xf7, 0x7f, 0x1d, 0x7f, 0xe4, 0x3d, 0x96, 0x8f, 0x2c, 0xbc, 0x47, 0x77, 0x10, 0x79, 0x8f, 0x77, - 0xb8, 0xfa, 0x3b, 0xfc, 0x74, 0x7a, 0xf2, 0x69, 0x2f, 0x7c, 0x7b, 0xfc, 0xe7, 0x7f, 0x9f, 0x9d, - 0xbe, 0xf9, 0x9d, 0x37, 0xb8, 0x56, 0x74, 0x21, 0x3a, 0x97, 0x8d, 0xce, 0x8a, 0x06, 0x28, 0xba, - 0xc2, 0x79, 0xd5, 0xea, 0x1e, 0x5b, 0x15, 0x30, 0xd0, 0x46, 0x9c, 0x46, 0x5f, 0xba, 0x71, 0x5b, - 0xbe, 0x0a, 0x3c, 0x59, 0x48, 0xa8, 0x1a, 0xa4, 0xa4, 0x03, 0x48, 0x9d, 0x79, 0x85, 0x4f, 0x4e, - 0x9d, 0x79, 0xed, 0x05, 0xa9, 0x33, 0xfb, 0x12, 0xbe, 0x15, 0xeb, 0xcc, 0xf2, 0x3a, 0x7a, 0xc2, - 0xba, 0x79, 0xd5, 0x08, 0x79, 0xd9, 0x55, 0x16, 0x75, 0x83, 0x5e, 0x94, 0x7d, 0x1d, 0xc8, 0x87, - 0xbd, 0xbb, 0x8b, 0x11, 0x92, 0x08, 0x49, 0x84, 0x24, 0x42, 0x52, 0x85, 0x42, 0x92, 0xf8, 0x29, - 0x25, 0x0a, 0xa7, 0x92, 0x28, 0x8d, 0xce, 0x2b, 0x0c, 0xf6, 0x69, 0x8e, 0xc6, 0x6b, 0xab, 0xcc, - 0x28, 0x8f, 0xbe, 0x5b, 0x4c, 0x1d, 0x6b, 0xe8, 0x23, 0x69, 0x8e, 0xb2, 0x5b, 0x99, 0x88, 0xf6, - 0xa9, 0x1f, 0x26, 0xb6, 0x52, 0xd1, 0x09, 0xd9, 0x73, 0x80, 0x85, 0xf4, 0x91, 0x8e, 0xf7, 0xb1, - 0x85, 0xec, 0x21, 0x8e, 0xc0, 0x0b, 0xe0, 0x05, 0xf0, 0x02, 0x78, 0x01, 0xbc, 0x00, 0x5e, 0x00, - 0x2f, 0x80, 0x17, 0xc0, 0x0b, 0xe0, 0x05, 0xf0, 0x42, 0xf7, 0x8a, 0xc8, 0xa3, 0xac, 0x26, 0x8f, - 0xe2, 0x5e, 0x62, 0xca, 0x4f, 0xdd, 0x91, 0xe1, 0x20, 0x0e, 0x2e, 0x87, 0xdd, 0x2c, 0xe9, 0x75, - 0x63, 0xa1, 0x82, 0xd6, 0x34, 0x55, 0x9b, 0x5f, 0xab, 0x62, 0x8a, 0x24, 0x3b, 0x28, 0x92, 0xe8, - 0x01, 0x49, 0x14, 0x49, 0x6a, 0x18, 0x37, 0xc4, 0x14, 0x49, 0x5a, 0x93, 0x3d, 0x2a, 0xcc, 0x98, - 0xe5, 0xeb, 0xc8, 0x32, 0x65, 0xbb, 0x30, 0x65, 0x30, 0x65, 0x30, 0x65, 0x9b, 0xc0, 0x94, 0x49, - 0x39, 0xc4, 0x62, 0x01, 0xe9, 0xf6, 0xdc, 0xb9, 0x7d, 0x29, 0xdb, 0xa6, 0x3b, 0x7d, 0x71, 0xba, - 0xc7, 0x76, 0x2b, 0x51, 0x09, 0x6a, 0x47, 0xa5, 0x68, 0x1e, 0x91, 0xa2, 0x7f, 0x34, 0x8a, 0xf6, - 0x91, 0x28, 0x66, 0x47, 0xa1, 0x98, 0x1d, 0x81, 0x62, 0x72, 0xf4, 0x49, 0xb5, 0x45, 0xbc, 0xd5, - 0x8e, 0x38, 0x31, 0x38, 0x56, 0x5b, 0xe9, 0x38, 0x6d, 0x74, 0xb9, 0x55, 0xe8, 0x37, 0x5f, 0x68, - 0xb8, 0x79, 0xc6, 0xe8, 0x59, 0x8e, 0xbf, 0x36, 0x79, 0xde, 0xea, 0xd6, 0xd5, 0xca, 0x0f, 0x5b, - 0xc9, 0x05, 0x6a, 0x50, 0x2e, 0x28, 0x17, 0x94, 0x0b, 0xca, 0x75, 0xb9, 0x80, 0x30, 0xfd, 0x37, - 0xb7, 0x2d, 0x45, 0x69, 0x40, 0x25, 0x47, 0x09, 0xe6, 0x04, 0x73, 0x82, 0x39, 0xeb, 0x8d, 0x39, - 0xa5, 0x1d, 0x6f, 0xb1, 0x50, 0xd4, 0xed, 0x5e, 0xfd, 0x3d, 0x4d, 0xd6, 0xa3, 0x81, 0xfe, 0x89, - 0xca, 0xf3, 0xb7, 0xa0, 0x64, 0x96, 0xca, 0x54, 0xe4, 0xfd, 0xf0, 0xc0, 0x29, 0xce, 0x55, 0x0e, - 0x1b, 0x56, 0xe1, 0xc3, 0x3c, 0x8c, 0x98, 0x87, 0x13, 0xd3, 0xb0, 0xa2, 0x13, 0x5e, 0x94, 0xc2, - 0x4c, 0xf1, 0x26, 0xed, 0x4e, 0x71, 0xd6, 0xa3, 0x3a, 0xe7, 0xb2, 0xf3, 0xdd, 0xba, 0x1c, 0x91, - 0xa9, 0x90, 0x23, 0x5f, 0x46, 0xdf, 0x92, 0xcb, 0xe1, 0xa5, 0xb0, 0x76, 0xc2, 0x42, 0x2b, 0x99, - 0x5d, 0x5e, 0x3f, 0x3d, 0xd8, 0x25, 0x35, 0x20, 0x35, 0x20, 0x35, 0x20, 0x35, 0x20, 0x35, 0xd0, - 0xdb, 0xaf, 0xe2, 0x23, 0x62, 0x8b, 0xbc, 0xef, 0x0b, 0xc5, 0x25, 0x75, 0x46, 0xc8, 0xee, 0xff, - 0xfc, 0x63, 0x70, 0xd2, 0xbe, 0xe2, 0x88, 0x99, 0x71, 0x58, 0x9d, 0x5b, 0x5e, 0x79, 0x04, 0x6d, - 0x6e, 0x7d, 0x1f, 0xce, 0xd9, 0x7f, 0x62, 0x60, 0x72, 0xd1, 0xb7, 0x8d, 0x37, 0x39, 0xed, 0x91, - 0x36, 0x2f, 0x6d, 0x6f, 0xab, 0x9e, 0xab, 0x9d, 0xd7, 0x05, 0xc0, 0x56, 0x9a, 0xaa, 0x57, 0xea, - 0xe9, 0x29, 0xd6, 0xf3, 0xaf, 0xb7, 0x27, 0xbe, 0xfd, 0x0d, 0xc9, 0x06, 0x1f, 0x79, 0x43, 0x11, - 0x34, 0x12, 0xa1, 0x33, 0xc2, 0x17, 0xa6, 0xcd, 0x12, 0x67, 0x86, 0x2f, 0x8a, 0x6e, 0x6a, 0x15, - 0xee, 0x26, 0x15, 0xee, 0xea, 0xf0, 0x10, 0x54, 0xb8, 0xa9, 0x70, 0xff, 0xf2, 0x8d, 0x51, 0xe1, - 0x56, 0xb8, 0x01, 0x2a, 0xdc, 0x95, 0x0f, 0x17, 0x76, 0x61, 0xc3, 0x2a, 0x7c, 0x98, 0x87, 0x11, - 0xf3, 0x70, 0x62, 0x1a, 0x56, 0x74, 0x71, 0x2c, 0x15, 0x6e, 0xc1, 0xec, 0x9c, 0x0a, 0xf7, 0xf2, - 0xef, 0x8c, 0x0a, 0x37, 0xa9, 0x01, 0xa9, 0x01, 0xa9, 0x01, 0xa9, 0x01, 0xa9, 0x81, 0xd6, 0x7e, - 0xa5, 0xc2, 0x2d, 0xf6, 0x43, 0x85, 0x5b, 0x75, 0x79, 0x2a, 0xdc, 0x54, 0xb8, 0x8d, 0x4c, 0x8e, - 0x0a, 0x37, 0x15, 0x6e, 0xef, 0x01, 0x2c, 0x15, 0xee, 0x15, 0xd6, 0xf3, 0xb4, 0xc2, 0x2d, 0x20, - 0x2e, 0xab, 0x67, 0x27, 0xe8, 0xa4, 0x54, 0xc7, 0xd2, 0x1a, 0xa2, 0xcd, 0x08, 0xfd, 0x61, 0x2b, - 0x4b, 0x73, 0x00, 0x72, 0x32, 0x7e, 0x84, 0xa3, 0xfc, 0x09, 0xc2, 0xd3, 0xfc, 0xbe, 0xc3, 0xd7, - 0x17, 0xbd, 0xf0, 0xdd, 0xe8, 0xbe, 0xc3, 0xc3, 0x4e, 0x72, 0x16, 0x75, 0x92, 0xf0, 0xaf, 0x41, - 0xfc, 0x3e, 0xbf, 0xd7, 0xd3, 0xdb, 0x5b, 0x0d, 0xdf, 0x88, 0x61, 0xce, 0x6a, 0x08, 0xba, 0x24, - 0x2a, 0x82, 0x2e, 0x09, 0x82, 0x2e, 0x96, 0x5c, 0x1b, 0x82, 0x2e, 0xd5, 0xe3, 0xca, 0x10, 0x74, - 0x59, 0xf8, 0x66, 0x10, 0x74, 0xf1, 0xd0, 0x51, 0xaa, 0x39, 0x4c, 0x4d, 0xc7, 0xa9, 0xef, 0x40, - 0xb5, 0x1d, 0xa9, 0x99, 0x43, 0x35, 0x73, 0xac, 0x26, 0x0e, 0xb6, 0x1e, 0x18, 0x5a, 0xad, 0xdd, - 0x8d, 0x3a, 0x36, 0x75, 0xec, 0x8a, 0x85, 0x08, 0xbb, 0x50, 0x61, 0x15, 0x32, 0xcc, 0x43, 0x87, - 0x79, 0x08, 0x31, 0x0d, 0x25, 0x3a, 0x21, 0x45, 0x29, 0xb4, 0x14, 0x6f, 0x92, 0x3a, 0xb6, 0xe8, - 0x92, 0xd4, 0xb1, 0xeb, 0x17, 0x56, 0xe7, 0x96, 0xa7, 0x8e, 0x4d, 0x1d, 0xdb, 0xc8, 0xe4, 0xa8, - 0x63, 0x53, 0xc7, 0xf6, 0xfd, 0x79, 0xa8, 0x63, 0xaf, 0xb2, 0x9e, 0x7f, 0xd5, 0xc5, 0x84, 0x49, - 0xed, 0x9f, 0x7e, 0x30, 0x26, 0xb5, 0x4b, 0xf3, 0x13, 0x4c, 0x6a, 0x57, 0x88, 0x87, 0x80, 0xba, - 0x86, 0xba, 0xfe, 0xe5, 0x1b, 0x83, 0xba, 0x96, 0x7c, 0xb9, 0x50, 0xd7, 0x55, 0x0e, 0x11, 0x76, - 0xa1, 0xc2, 0x2a, 0x64, 0x98, 0x87, 0x0e, 0xf3, 0x10, 0x62, 0x1a, 0x4a, 0x74, 0xb1, 0x2b, 0xd4, - 0xb5, 0x98, 0xf7, 0x85, 0xba, 0x16, 0x78, 0x50, 0xa8, 0x6b, 0xa8, 0x6b, 0x6d, 0x93, 0x83, 0xba, - 0x86, 0xba, 0x86, 0xba, 0xf6, 0xfe, 0x79, 0xa0, 0xae, 0x57, 0x59, 0xcf, 0x53, 0xea, 0x9a, 0x11, - 0x2c, 0x2d, 0xcb, 0xdb, 0xe0, 0x11, 0xac, 0xa4, 0x3a, 0x23, 0x58, 0x47, 0x1b, 0x3e, 0x82, 0x25, - 0x5b, 0xb0, 0x51, 0x29, 0xd4, 0xa8, 0x0d, 0x61, 0x35, 0x19, 0xc2, 0xf2, 0x87, 0x4d, 0x63, 0x08, - 0x6b, 0x83, 0x43, 0xab, 0xf8, 0x10, 0x56, 0x9c, 0x46, 0x5f, 0xba, 0x71, 0x5b, 0xaf, 0x92, 0x3d, - 0x59, 0x50, 0xba, 0x12, 0xa5, 0x2b, 0x67, 0xab, 0x04, 0xaf, 0x19, 0xfb, 0xaa, 0x94, 0xeb, 0x36, - 0x73, 0xe1, 0x66, 0xae, 0xdc, 0xc4, 0xa5, 0xd7, 0x03, 0xb7, 0xab, 0x15, 0x36, 0x0c, 0xe4, 0x66, - 0x95, 0x64, 0x66, 0x01, 0xe4, 0x9b, 0x0e, 0xc8, 0x05, 0x59, 0x1f, 0x01, 0x98, 0xbb, 0xe5, 0xb1, - 0x31, 0x49, 0x1b, 0x91, 0x7f, 0xc6, 0xd3, 0x10, 0x61, 0x1d, 0x5c, 0x11, 0x38, 0x6e, 0x8d, 0xda, - 0x9d, 0xe9, 0xb9, 0xb9, 0x92, 0x23, 0xe3, 0xbd, 0x4d, 0xb4, 0x46, 0xa7, 0x68, 0xe4, 0x5f, 0x39, - 0x18, 0xbd, 0x79, 0x47, 0xd7, 0x3e, 0x4e, 0x06, 0xd9, 0x61, 0x96, 0xb9, 0x05, 0x64, 0x8d, 0xf7, - 0x49, 0xfa, 0xa6, 0x1b, 0xdf, 0xa6, 0x4a, 0x83, 0xc6, 0xab, 0xed, 0x74, 0xd8, 0xed, 0x3e, 0x71, - 0x78, 0xf1, 0xe8, 0x9b, 0xdc, 0xc5, 0xff, 0xec, 0xb7, 0xe3, 0x7e, 0xdc, 0x7e, 0xfd, 0x3d, 0xbf, - 0xb4, 0x57, 0x86, 0x20, 0xe4, 0xbd, 0x8c, 0xbd, 0x96, 0x43, 0x17, 0xb5, 0xbe, 0x6b, 0x72, 0xe3, - 0x89, 0xca, 0xfb, 0x8d, 0x72, 0x57, 0x28, 0x69, 0x68, 0xae, 0x0d, 0xcc, 0xc6, 0xb0, 0xca, 0x7d, - 0xca, 0xf5, 0x3f, 0x40, 0x89, 0x97, 0x3f, 0x92, 0xf1, 0x89, 0xdb, 0x71, 0xdf, 0xcd, 0xbb, 0x9f, - 0x51, 0x07, 0x9a, 0x5e, 0xb6, 0xa4, 0x71, 0xb8, 0x21, 0xea, 0x9d, 0xb1, 0x3d, 0x2e, 0xd9, 0x1c, - 0xf7, 0x6c, 0x8d, 0x6b, 0x36, 0x46, 0x8c, 0x6d, 0x11, 0x63, 0x53, 0x44, 0xd8, 0x12, 0x5b, 0xf7, - 0xe8, 0x8a, 0xb8, 0x76, 0xad, 0x12, 0x26, 0xa3, 0x06, 0xe6, 0xb8, 0x32, 0xe7, 0x9c, 0xe6, 0x95, - 0xa0, 0x73, 0xe5, 0x68, 0x5b, 0x29, 0x7a, 0x56, 0x9c, 0x86, 0x15, 0xa7, 0x5b, 0x45, 0x69, 0x55, - 0xbf, 0x90, 0x9c, 0xeb, 0xca, 0x57, 0x23, 0x69, 0xc7, 0x69, 0x96, 0x74, 0x92, 0xd8, 0x7d, 0x45, - 0x6d, 0xaa, 0xc0, 0x3a, 0x5d, 0xc3, 0xf1, 0x87, 0x97, 0xa9, 0x2f, 0x89, 0xd5, 0x93, 0x24, 0xeb, - 0x47, 0xf2, 0xf5, 0x22, 0xe9, 0xfa, 0x90, 0x5a, 0x3d, 0x48, 0xad, 0xfe, 0xa3, 0x52, 0xef, 0xf1, - 0x9b, 0x2f, 0x15, 0xab, 0xdf, 0x4c, 0xcf, 0x86, 0x1d, 0x04, 0xe9, 0xf0, 0xf2, 0x8b, 0x73, 0xe7, - 0xb2, 0x2d, 0x3b, 0x6b, 0x22, 0x3c, 0x53, 0x22, 0x58, 0xdf, 0xd0, 0x98, 0x11, 0xd1, 0xea, 0x1c, - 0x50, 0x9a, 0xf9, 0xd0, 0xec, 0xaf, 0x97, 0xd4, 0x77, 0xd0, 0x98, 0xd5, 0xd0, 0xfe, 0xf4, 0x5a, - 0xb3, 0x17, 0xaa, 0x36, 0x50, 0x91, 0x5a, 0xdf, 0xb9, 0xaf, 0xe5, 0x1b, 0x87, 0xb0, 0xed, 0x32, - 0xbe, 0x0d, 0x4e, 0x12, 0xc7, 0xa6, 0x4f, 0x07, 0xef, 0x8b, 0x25, 0xc8, 0xaf, 0xc9, 0xaf, 0xc9, - 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xc9, 0xaf, 0xbd, - 0x8d, 0x5d, 0x22, 0xad, 0x43, 0x77, 0xdd, 0xa8, 0x58, 0x97, 0xcf, 0xdd, 0x0d, 0x2b, 0xbf, 0x88, - 0x48, 0x4b, 0x91, 0x00, 0x68, 0xa2, 0xd5, 0xc9, 0x71, 0x47, 0xca, 0x4c, 0xf7, 0x85, 0x53, 0xd9, - 0x51, 0x07, 0x7d, 0x46, 0x0e, 0x5a, 0x1c, 0xdc, 0x4e, 0x9f, 0x8a, 0x4c, 0x9b, 0x8a, 0xd5, 0xb0, - 0x9b, 0xd4, 0xb0, 0x2b, 0x04, 0x6d, 0xa9, 0x61, 0x53, 0xc3, 0xa6, 0x86, 0x0d, 0xc7, 0x06, 0xc7, - 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x46, 0x0d, - 0xdb, 0x55, 0x08, 0xa4, 0x86, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, - 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x2d, 0x91, 0x5f, 0x53, 0xc3, 0x7e, 0x60, 0xc3, 0x52, - 0xc3, 0x76, 0x7a, 0x25, 0x6a, 0xd8, 0x8b, 0x6a, 0xd8, 0x0e, 0x95, 0xa8, 0x90, 0xca, 0xf0, 0xe4, - 0xa3, 0x36, 0x9c, 0x74, 0x02, 0xac, 0x2a, 0xbb, 0xf2, 0xfb, 0xcc, 0x2d, 0x54, 0x54, 0xb1, 0xc3, - 0xc1, 0x08, 0xbf, 0xdb, 0xd1, 0x7d, 0x34, 0x3a, 0x2c, 0xd9, 0x0e, 0x34, 0x3a, 0x3c, 0xf0, 0xcb, - 0xce, 0x34, 0x3a, 0x1c, 0xb2, 0xa5, 0x77, 0x88, 0x0c, 0xc7, 0x7d, 0x4d, 0x3b, 0x68, 0x73, 0xb8, - 0xb8, 0x32, 0x7d, 0x4d, 0x9a, 0x0e, 0xc2, 0xcf, 0x6c, 0xdd, 0x39, 0x8d, 0x29, 0x4a, 0x5f, 0x0a, - 0xd0, 0x96, 0x42, 0x74, 0xa5, 0x0c, 0xae, 0x16, 0x2c, 0x51, 0x88, 0x72, 0x53, 0xd2, 0x74, 0xa4, - 0x06, 0x05, 0x75, 0x23, 0xc3, 0x62, 0x54, 0xfe, 0x93, 0x4a, 0xd3, 0x8c, 0x2a, 0xdf, 0xd6, 0x53, - 0x66, 0xe7, 0xbc, 0x46, 0x7d, 0xf3, 0xfd, 0xab, 0x61, 0x16, 0xf7, 0x83, 0xa4, 0xed, 0x3e, 0xc1, - 0x9c, 0x5e, 0x9a, 0x3c, 0x93, 0x3c, 0x93, 0x3c, 0x73, 0xa3, 0xf2, 0xcc, 0xf6, 0x55, 0x96, 0xc5, - 0xed, 0xe0, 0x7f, 0x87, 0x51, 0x5b, 0x20, 0xd3, 0xdc, 0xfd, 0xcd, 0xe1, 0x35, 0x4f, 0xa3, 0x2c, - 0x8b, 0xfb, 0xa9, 0xf3, 0x64, 0xb3, 0xf1, 0x3f, 0x8f, 0x1e, 0x7d, 0xde, 0x09, 0x5e, 0x9e, 0xff, - 0xf8, 0xbc, 0x1b, 0xbc, 0x3c, 0x1f, 0xff, 0xe3, 0xee, 0xe8, 0x7f, 0xc6, 0xff, 0xdc, 0xfc, 0xbc, - 0x13, 0xec, 0x4d, 0xfe, 0x79, 0xff, 0xf3, 0x4e, 0xb0, 0x7f, 0xfe, 0xf8, 0x3f, 0xff, 0x79, 0xfa, - 0xf8, 0x9f, 0xe7, 0x37, 0xab, 0xff, 0xe2, 0x7f, 0x35, 0xea, 0x17, 0xdf, 0x20, 0xd5, 0x4b, 0x90, - 0xea, 0x65, 0xe7, 0xfb, 0x6c, 0xa8, 0xec, 0xf6, 0xf8, 0x58, 0xb1, 0x60, 0x94, 0x3c, 0x04, 0xed, - 0x64, 0xfc, 0xb8, 0xee, 0xa8, 0xed, 0x05, 0xd7, 0x87, 0xea, 0xd6, 0xcb, 0x40, 0xa0, 0xba, 0xa1, - 0xba, 0x17, 0x5f, 0x08, 0x39, 0x6a, 0xa0, 0x08, 0x50, 0x64, 0xf3, 0xa0, 0x88, 0xf3, 0x51, 0xde, - 0xf8, 0xdb, 0x6d, 0x56, 0x1f, 0x75, 0x5d, 0xa7, 0x12, 0x0b, 0xf7, 0xc5, 0xa2, 0x05, 0x19, 0x42, - 0x60, 0x08, 0xc1, 0xcc, 0x45, 0xa9, 0xb9, 0x2a, 0x15, 0x97, 0xe5, 0xd6, 0x75, 0x39, 0x76, 0x61, - 0x72, 0xac, 0xca, 0x9c, 0xbd, 0x0f, 0x93, 0x34, 0xfb, 0x4d, 0x70, 0x00, 0x61, 0x9f, 0x01, 0x84, - 0xe9, 0x8d, 0xd7, 0x71, 0x00, 0x61, 0x97, 0x01, 0x84, 0xa5, 0x3e, 0x7d, 0x0d, 0x07, 0x10, 0x9a, - 0xfb, 0x4c, 0x1e, 0xa8, 0x5f, 0x75, 0x13, 0x26, 0x7b, 0x93, 0x54, 0x39, 0xe1, 0x5e, 0xb4, 0x20, - 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, - 0x09, 0x37, 0x09, 0xb7, 0x37, 0x09, 0x37, 0x53, 0xa1, 0x8e, 0x7b, 0x1d, 0x1e, 0xae, 0xe8, 0x23, - 0x71, 0xbc, 0x6c, 0x6a, 0x83, 0xc4, 0xb1, 0xaf, 0x98, 0x88, 0xba, 0xa8, 0x09, 0xe6, 0xa1, 0x2e, - 0xea, 0x76, 0x5f, 0x50, 0x17, 0x85, 0xa6, 0x81, 0xa6, 0x81, 0xa6, 0x81, 0xa6, 0x81, 0xa6, 0x81, - 0xa6, 0x81, 0xa6, 0x81, 0xa6, 0x81, 0xa6, 0xf1, 0x9e, 0xa6, 0xa1, 0x2e, 0x4a, 0xc2, 0x4d, 0xc2, - 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, 0x4d, 0xc2, - 0x2d, 0x98, 0x70, 0x53, 0x17, 0xd5, 0xa9, 0x8b, 0x22, 0x9b, 0x2b, 0xf5, 0x95, 0x3d, 0xf8, 0xba, - 0x36, 0xfa, 0xb9, 0x7f, 0x8c, 0xef, 0xe5, 0xc3, 0xed, 0xad, 0xfc, 0x31, 0xb9, 0x93, 0x2a, 0x6a, - 0x0f, 0x7c, 0x4f, 0xa3, 0xcb, 0xa4, 0x15, 0xa4, 0x71, 0x72, 0xf1, 0xf5, 0xcb, 0x55, 0x3f, 0x18, - 0x03, 0xa1, 0x78, 0xe0, 0x50, 0x7e, 0x60, 0xe1, 0x12, 0x28, 0x10, 0xe8, 0x81, 0x6b, 0x14, 0x08, - 0x50, 0x20, 0x58, 0xd9, 0x0d, 0xb8, 0xef, 0xbc, 0x59, 0xb4, 0x10, 0x1a, 0x05, 0xfe, 0xf1, 0x70, - 0xf4, 0xe2, 0x98, 0xf0, 0x6c, 0x35, 0xef, 0xc5, 0x71, 0x2c, 0x76, 0x32, 0xb7, 0x0d, 0x9c, 0x8a, - 0x9e, 0x08, 0x39, 0x16, 0x31, 0x07, 0x23, 0xe9, 0x68, 0xe4, 0x1d, 0x8e, 0xb4, 0xe3, 0x51, 0x73, - 0x40, 0x6a, 0x8e, 0x48, 0xc5, 0x21, 0xc9, 0x30, 0x33, 0xae, 0x89, 0x7f, 0xd7, 0x8e, 0xaa, 0xb8, - 0x70, 0x2f, 0x8e, 0xfb, 0xc1, 0x45, 0xff, 0x6a, 0xd8, 0x93, 0x33, 0xc8, 0xc9, 0x96, 0xba, 0xb3, - 0xd6, 0x93, 0x4a, 0x6a, 0x31, 0x4b, 0x39, 0x34, 0x0d, 0xc7, 0xa6, 0xe7, 0xe0, 0xb4, 0x1c, 0x9d, - 0xba, 0xc3, 0x53, 0x77, 0x7c, 0xaa, 0x0e, 0x50, 0xc6, 0x11, 0x0a, 0x39, 0xc4, 0xe2, 0xcd, 0x88, - 0x55, 0x44, 0xe7, 0xf6, 0x4b, 0x37, 0x8e, 0x3a, 0xfd, 0xb8, 0x23, 0xb9, 0x61, 0x26, 0x79, 0xd8, - 0x0b, 0xc1, 0x35, 0x4e, 0x73, 0x36, 0xf3, 0xe9, 0xd3, 0x67, 0x77, 0xff, 0x33, 0xf5, 0xcd, 0x83, - 0x3b, 0xff, 0x9c, 0x0f, 0xdd, 0xdc, 0xf9, 0x93, 0x60, 0xc4, 0x23, 0x56, 0xa4, 0x36, 0x22, 0x71, - 0x96, 0x40, 0x4f, 0xd6, 0x45, 0x4f, 0x83, 0xa5, 0x68, 0xea, 0x46, 0xa0, 0x24, 0x50, 0x12, 0x28, - 0x09, 0x94, 0x12, 0xfb, 0x25, 0xe9, 0x05, 0xe2, 0xd6, 0x55, 0x84, 0xca, 0x97, 0x82, 0x6b, 0xe4, - 0xaf, 0xec, 0xb3, 0xa8, 0xc9, 0xca, 0x6e, 0xf9, 0x7b, 0x1f, 0xe6, 0x7a, 0x2f, 0x50, 0xd9, 0xf8, - 0xdb, 0x42, 0xd2, 0xfe, 0x3f, 0xcb, 0x6a, 0x44, 0x24, 0xff, 0x17, 0x2e, 0xa8, 0x7a, 0x14, 0xc0, - 0xb3, 0x7c, 0xb1, 0xc7, 0x3f, 0x1e, 0x7d, 0xde, 0x0d, 0x9a, 0xe7, 0x93, 0xff, 0xf3, 0xfc, 0xf3, - 0x4e, 0xd0, 0x3c, 0x7f, 0xec, 0xf2, 0xa8, 0x80, 0x45, 0x3f, 0xe7, 0xa2, 0x2b, 0xdc, 0x3c, 0xa9, - 0xd1, 0x1e, 0x3b, 0x60, 0x8f, 0x39, 0xdd, 0x63, 0x51, 0xd0, 0x39, 0x0c, 0xde, 0x9e, 0xff, 0xb3, - 0xfb, 0x64, 0xef, 0xe6, 0xd5, 0xe3, 0x7f, 0x5e, 0xdc, 0xdc, 0xff, 0xc3, 0x1f, 0x0f, 0xfd, 0xb5, - 0xdd, 0x27, 0x2f, 0x6e, 0x5e, 0x2d, 0xf8, 0x37, 0x07, 0x37, 0xaf, 0x96, 0xbc, 0xc6, 0xfe, 0xcd, - 0xa3, 0xb9, 0xbf, 0x7a, 0xfb, 0xe7, 0xcd, 0x45, 0xbf, 0xb0, 0xb7, 0xe0, 0x17, 0x9e, 0x2f, 0xfa, - 0x85, 0xe7, 0x0b, 0x7e, 0x61, 0xe1, 0x2d, 0x35, 0x17, 0xfc, 0xc2, 0xfe, 0xcd, 0x8f, 0xb9, 0xbf, - 0xff, 0xe8, 0xe1, 0xbf, 0x7a, 0x70, 0xf3, 0xf8, 0xc7, 0xa2, 0x7f, 0xf7, 0xe2, 0xe6, 0xc7, 0xab, - 0xc7, 0x8f, 0x9f, 0x3d, 0xda, 0xbd, 0x75, 0x44, 0xbf, 0x8d, 0x7d, 0xd3, 0xee, 0xf9, 0x9c, 0xcb, - 0x1a, 0xbb, 0xa0, 0xea, 0x3b, 0x9e, 0xad, 0x6a, 0xdd, 0xf7, 0xcd, 0x86, 0xf1, 0xde, 0x42, 0x7d, - 0x7b, 0xc5, 0xf5, 0x55, 0x3b, 0xbc, 0x16, 0xb5, 0x0a, 0x2d, 0xfa, 0x37, 0x4e, 0x25, 0x4f, 0xdc, - 0x7f, 0x6f, 0x97, 0x23, 0x55, 0x42, 0xac, 0x8a, 0x2c, 0x9b, 0xc2, 0xc0, 0x94, 0x26, 0x5b, 0x42, - 0xdd, 0xd4, 0x4b, 0x36, 0x64, 0xd3, 0x07, 0xa6, 0xe4, 0xca, 0x02, 0x92, 0xe5, 0x80, 0xbb, 0x65, - 0x80, 0x09, 0xc7, 0x3f, 0xb6, 0xf9, 0x0d, 0x08, 0x36, 0x6e, 0x75, 0xb7, 0xe6, 0x2c, 0xc2, 0xa5, - 0xfe, 0xd6, 0x9c, 0x2d, 0x48, 0x85, 0x9a, 0x26, 0xa1, 0x86, 0x50, 0x43, 0xa8, 0x29, 0xf1, 0x06, - 0x68, 0xd1, 0x31, 0xcc, 0x99, 0xc5, 0x73, 0x67, 0x0d, 0xc7, 0xa6, 0xe7, 0xe0, 0xb4, 0x1c, 0x9d, - 0xba, 0xc3, 0x53, 0x77, 0x7c, 0xaa, 0x0e, 0x50, 0x96, 0xb5, 0xa2, 0x45, 0xc7, 0x36, 0x27, 0x7f, - 0x28, 0x37, 0xa7, 0x45, 0xc7, 0x1f, 0x32, 0x49, 0x87, 0x54, 0x22, 0x50, 0x12, 0x28, 0x09, 0x94, - 0x04, 0x4a, 0xd1, 0xfd, 0x42, 0x8b, 0xce, 0x2a, 0x3f, 0xb4, 0xe8, 0x38, 0xca, 0x6a, 0x68, 0xd1, - 0x91, 0xfc, 0xa1, 0x45, 0x67, 0xe9, 0x3d, 0x46, 0x8b, 0x8e, 0xdb, 0x3d, 0x46, 0x8b, 0x0e, 0x2d, - 0x3a, 0xd5, 0xca, 0xe1, 0xb6, 0x69, 0xd1, 0x71, 0x95, 0xcf, 0x6f, 0x74, 0x8b, 0x8e, 0x43, 0xf5, - 0x2d, 0xf7, 0x9f, 0xdb, 0x2f, 0xb1, 0x85, 0x7f, 0xc5, 0xdf, 0xdd, 0xeb, 0xe9, 0x1c, 0x27, 0x83, - 0xec, 0x30, 0xcb, 0x1c, 0xcb, 0x38, 0xbc, 0x4f, 0xd2, 0x37, 0xdd, 0xf8, 0x16, 0xa5, 0x0e, 0x1a, - 0xaf, 0xb6, 0xd3, 0x61, 0xb7, 0xeb, 0xb0, 0xfc, 0xfc, 0x3e, 0xfa, 0x26, 0x77, 0xf1, 0x3f, 0xfb, - 0xed, 0xb8, 0x1f, 0xb7, 0x5f, 0x7f, 0xcf, 0x2f, 0x8d, 0x0a, 0x9f, 0xb5, 0x8b, 0x68, 0x38, 0xed, - 0x5c, 0x58, 0x59, 0xca, 0x6d, 0x7c, 0x53, 0x27, 0xf9, 0x3d, 0x9d, 0x3a, 0x6c, 0xf2, 0x40, 0x2d, - 0xd0, 0x43, 0x2b, 0xac, 0xa2, 0x4c, 0xdf, 0x45, 0x3f, 0x6a, 0xc5, 0x9d, 0x61, 0x37, 0xe8, 0xc7, - 0x83, 0x2c, 0xea, 0x67, 0xee, 0xd4, 0xf9, 0xe6, 0xae, 0x8c, 0x28, 0xdf, 0x2f, 0xdf, 0x19, 0xa2, - 0x7c, 0x88, 0xf2, 0x2d, 0x7e, 0x22, 0x67, 0xa2, 0x7c, 0x8e, 0x95, 0xb2, 0x64, 0x14, 0xb2, 0x90, - 0xdc, 0x43, 0x72, 0x0f, 0xc9, 0x3d, 0xa7, 0x18, 0xc0, 0xfd, 0xf1, 0x97, 0x69, 0xf4, 0xa5, 0x1b, - 0xb7, 0x05, 0x8f, 0xbb, 0xcc, 0x17, 0x60, 0x78, 0x84, 0x8e, 0x5e, 0x33, 0x17, 0xa4, 0xe6, 0x8a, - 0x54, 0x5c, 0x52, 0x35, 0x98, 0x4d, 0xf9, 0xe1, 0x91, 0x2f, 0x57, 0x57, 0xdd, 0x38, 0x4a, 0x25, - 0x87, 0x47, 0x76, 0x37, 0x60, 0xa0, 0xe3, 0x6b, 0xdc, 0xed, 0xc5, 0xfd, 0xe0, 0x2a, 0xed, 0x7e, - 0x97, 0x0b, 0x03, 0x77, 0x17, 0x21, 0x14, 0x10, 0x0a, 0x08, 0x05, 0x84, 0x02, 0x42, 0x81, 0x6f, - 0xa1, 0x20, 0x27, 0xfa, 0x82, 0x2c, 0xb9, 0x14, 0x1c, 0xf1, 0x9b, 0x59, 0x85, 0x60, 0x40, 0x30, - 0x20, 0x18, 0x10, 0x0c, 0x1c, 0xda, 0xfb, 0x30, 0x49, 0xb3, 0xdd, 0x03, 0xc1, 0x58, 0x70, 0xc0, - 0x31, 0x9c, 0xd3, 0x1b, 0xaf, 0xe3, 0x31, 0x9c, 0x3b, 0x1c, 0xc3, 0xb9, 0xd4, 0xa7, 0xaf, 0xe1, - 0x31, 0x9c, 0x7b, 0x3b, 0x2f, 0x0f, 0x38, 0x87, 0x53, 0xfb, 0xaa, 0xe7, 0x9b, 0x21, 0x9c, 0xd1, - 0x8d, 0xc7, 0x27, 0x14, 0x0e, 0x84, 0x33, 0xec, 0xf9, 0xa5, 0x48, 0xb3, 0x49, 0xb3, 0x49, 0xb3, - 0x49, 0xb3, 0x1d, 0xda, 0x7b, 0x3b, 0x6e, 0x25, 0x97, 0x51, 0xf7, 0x60, 0x4f, 0x92, 0x75, 0x69, - 0x0a, 0x5c, 0x7b, 0x2e, 0xfe, 0x36, 0xc9, 0xe7, 0x6d, 0xf2, 0xf9, 0x26, 0xf9, 0xfc, 0xa6, 0xe6, - 0xf3, 0xcf, 0xf9, 0xf4, 0x24, 0xf3, 0xca, 0xc9, 0x3c, 0xed, 0xfc, 0x8e, 0x1b, 0xa9, 0xef, 0x77, - 0x08, 0x3b, 0xd5, 0xdc, 0x75, 0xd0, 0x21, 0xef, 0xe4, 0xfc, 0x77, 0x97, 0x72, 0x87, 0x22, 0x32, - 0x87, 0x62, 0x7d, 0x96, 0x4d, 0xfa, 0x2c, 0x2b, 0x84, 0xb2, 0xe8, 0xb3, 0xa4, 0xcf, 0x92, 0x3e, - 0x4b, 0x88, 0x1e, 0x88, 0x1e, 0x88, 0x1e, 0xa7, 0xf6, 0x4e, 0x73, 0x8d, 0x93, 0x67, 0xa5, 0xcf, - 0x92, 0x50, 0x40, 0x28, 0x20, 0x14, 0x10, 0x0a, 0x36, 0x3e, 0x14, 0xd0, 0x67, 0x49, 0x30, 0x20, - 0x18, 0x10, 0x0c, 0xaa, 0x1d, 0x0c, 0xe8, 0xb3, 0x9c, 0xfb, 0xa1, 0xcf, 0x72, 0xa9, 0x65, 0xa8, - 0xcb, 0xae, 0xf6, 0xe9, 0xe9, 0xb3, 0xf4, 0xfd, 0xeb, 0x53, 0x9a, 0xf5, 0x26, 0xb9, 0xa6, 0xcf, - 0x92, 0x34, 0x9b, 0x34, 0x9b, 0x34, 0xbb, 0x2e, 0x69, 0x36, 0x7d, 0x96, 0xe4, 0xf3, 0x25, 0x3f, - 0x2f, 0x7d, 0x96, 0x1b, 0x9b, 0xcf, 0xd3, 0x67, 0x49, 0x32, 0xaf, 0x9d, 0xcc, 0xd3, 0x67, 0x29, - 0xdd, 0x67, 0xe9, 0x50, 0x38, 0x1d, 0x21, 0x62, 0x7f, 0xbe, 0x6b, 0xc3, 0x49, 0xc3, 0xea, 0xaa, - 0x2a, 0xd7, 0xef, 0xf2, 0xbb, 0xf8, 0x90, 0xdf, 0x44, 0x05, 0x45, 0x90, 0x47, 0x10, 0x3c, 0x18, - 0xc4, 0xdd, 0x78, 0x14, 0x24, 0x82, 0xab, 0xde, 0xed, 0xff, 0x0c, 0xdc, 0x69, 0x21, 0x2f, 0x5a, - 0x00, 0x49, 0x64, 0x3d, 0xbc, 0x8e, 0x24, 0x32, 0x92, 0xc8, 0x8b, 0x2f, 0x84, 0x24, 0xb2, 0xa7, - 0x04, 0x1e, 0xad, 0xfa, 0xfa, 0x04, 0x1d, 0xad, 0xfa, 0xeb, 0x5f, 0x30, 0x6a, 0x5f, 0xc7, 0xfd, - 0x2c, 0x19, 0xc4, 0x41, 0x92, 0xde, 0x62, 0xce, 0xeb, 0x09, 0xc3, 0x2f, 0x57, 0x47, 0x58, 0xbc, - 0xa4, 0x63, 0xb3, 0xf8, 0x23, 0xee, 0x44, 0xc3, 0xee, 0xc8, 0x2a, 0x3a, 0x51, 0x77, 0x40, 0xbd, - 0x82, 0x7a, 0x85, 0xa1, 0x1b, 0x54, 0x73, 0x87, 0x2a, 0x6e, 0x51, 0x86, 0xe8, 0xa1, 0x47, 0xf4, - 0x81, 0xec, 0x69, 0x13, 0x7a, 0x44, 0xa3, 0xee, 0xdf, 0xd1, 0xf7, 0x41, 0xd0, 0xba, 0xba, 0xec, - 0x45, 0xfd, 0x38, 0xb8, 0x94, 0x1c, 0x1e, 0x7b, 0x60, 0x2d, 0x02, 0x0f, 0x81, 0x87, 0xc0, 0x43, - 0xe0, 0x21, 0xf0, 0x6c, 0x5a, 0xe0, 0x19, 0x4f, 0x12, 0x07, 0x51, 0x72, 0xd1, 0x93, 0x1e, 0x57, - 0x1e, 0x2f, 0x42, 0xa8, 0x21, 0xd4, 0x10, 0x6a, 0x08, 0x35, 0x84, 0x9a, 0x8d, 0x0b, 0x35, 0xdf, - 0xb2, 0xb8, 0x9f, 0x46, 0xdd, 0x02, 0x79, 0x8c, 0x58, 0xaf, 0x7e, 0x90, 0x48, 0x0a, 0x65, 0x2c, - 0x5e, 0x53, 0x2e, 0x10, 0xdd, 0x6e, 0x77, 0xe2, 0x10, 0x71, 0x88, 0x38, 0x44, 0x1c, 0x22, 0x0e, - 0x79, 0x17, 0x87, 0x92, 0x8b, 0xf4, 0xaa, 0x1f, 0x07, 0xd1, 0x20, 0xe8, 0x45, 0xd9, 0xd7, 0xa0, - 0x1b, 0xa7, 0x17, 0xa3, 0xf6, 0x1f, 0xa1, 0x10, 0xf4, 0xf0, 0x72, 0xc0, 0x20, 0xc2, 0x0f, 0xe1, - 0x87, 0xf0, 0x43, 0xf8, 0xd9, 0xd0, 0xf0, 0x93, 0xc6, 0xdf, 0xb2, 0xe0, 0xeb, 0x55, 0x2f, 0x48, - 0x2e, 0x7a, 0xc1, 0x65, 0x9c, 0xf5, 0x93, 0x96, 0x78, 0x0c, 0x7a, 0x68, 0x4d, 0x02, 0x11, 0x81, - 0x88, 0x40, 0x44, 0x20, 0x22, 0x10, 0x55, 0x22, 0x10, 0x31, 0x6d, 0xe3, 0x78, 0x2a, 0x63, 0x41, - 0xaf, 0x3f, 0xe2, 0xe6, 0xcb, 0xee, 0x46, 0xc4, 0xcd, 0x7d, 0x0d, 0xe3, 0x74, 0x4c, 0x9b, 0x84, - 0x69, 0x3a, 0xa6, 0x5d, 0xef, 0x0c, 0x3a, 0xa6, 0x41, 0x2f, 0xa0, 0x17, 0xd0, 0x0b, 0xe8, 0x05, - 0x1a, 0xad, 0x08, 0x43, 0x74, 0x4c, 0x13, 0x78, 0x08, 0x3c, 0x04, 0x1e, 0x02, 0x0f, 0x81, 0x47, - 0x33, 0xf0, 0xd0, 0x31, 0x4d, 0xa8, 0x21, 0xd4, 0x10, 0x6a, 0x08, 0x35, 0x84, 0x1a, 0xe9, 0x50, - 0x43, 0xc7, 0x34, 0x71, 0x88, 0x38, 0x44, 0x1c, 0x22, 0x0e, 0x11, 0x87, 0x0c, 0xe3, 0x10, 0x1d, - 0xd3, 0x84, 0x1f, 0xc2, 0x0f, 0xe1, 0x87, 0xf0, 0x43, 0xf8, 0xb1, 0x0b, 0x3f, 0x74, 0x4c, 0x13, - 0x88, 0x08, 0x44, 0x04, 0x22, 0x02, 0x11, 0x81, 0x48, 0xfb, 0x4a, 0x74, 0x4c, 0xff, 0xba, 0x63, - 0x9a, 0x63, 0x0a, 0xa4, 0x3e, 0xb3, 0x0f, 0x9f, 0xd7, 0xe6, 0xb4, 0x82, 0x0f, 0xb7, 0x37, 0x73, - 0x36, 0xb9, 0x97, 0x3f, 0xf3, 0x5b, 0xa9, 0xe0, 0x99, 0x05, 0x6e, 0x9a, 0xef, 0x9d, 0x36, 0xdd, - 0x3b, 0x3f, 0x8f, 0xa0, 0xc9, 0x79, 0x04, 0x1e, 0x64, 0x72, 0x9c, 0x47, 0xb0, 0x02, 0xf6, 0x72, - 0x75, 0x1e, 0x41, 0x34, 0x70, 0x3f, 0x58, 0x13, 0x0d, 0x1c, 0x4f, 0xd5, 0xec, 0x70, 0x0e, 0x81, - 0xc7, 0x10, 0x8f, 0xa9, 0x9a, 0x0a, 0xe5, 0xf1, 0xce, 0x21, 0xdb, 0x9d, 0x5d, 0x1f, 0xa4, 0xc3, - 0xcb, 0x2f, 0x71, 0xdf, 0xa5, 0xc9, 0xe6, 0x0e, 0xe0, 0x85, 0xc3, 0x4b, 0xca, 0x1c, 0xc5, 0x29, - 0x80, 0x81, 0x25, 0x8f, 0xde, 0x14, 0x3e, 0x47, 0x5d, 0xfa, 0xbc, 0x45, 0x8d, 0x73, 0x16, 0x05, - 0x8e, 0xd6, 0x14, 0x3d, 0x52, 0x53, 0xeb, 0x93, 0xee, 0x35, 0x5f, 0xee, 0xbd, 0x3c, 0x78, 0xd1, - 0x7c, 0xb9, 0x5f, 0xe1, 0x6f, 0xeb, 0x29, 0xe7, 0x73, 0x5e, 0xa3, 0xa9, 0x6d, 0xf7, 0x2d, 0x5f, - 0xb3, 0xc7, 0xdc, 0x39, 0xec, 0xec, 0x22, 0xcf, 0x24, 0xcf, 0x24, 0xcf, 0xac, 0x48, 0x9e, 0xd9, - 0xbe, 0xca, 0xb2, 0xb8, 0x1d, 0xfc, 0xef, 0x30, 0x6a, 0x0b, 0x64, 0x9a, 0xbb, 0xbf, 0x39, 0xbc, - 0xe6, 0x69, 0x94, 0x65, 0x71, 0x3f, 0x75, 0x9e, 0x6c, 0x36, 0xfe, 0xe7, 0xd1, 0xa3, 0xcf, 0x3b, - 0xc1, 0xcb, 0xf3, 0x1f, 0x9f, 0x77, 0x83, 0x97, 0xe7, 0xe3, 0x7f, 0xdc, 0x1d, 0xfd, 0xcf, 0xf8, - 0x9f, 0x9b, 0x9f, 0x77, 0x82, 0xbd, 0xc9, 0x3f, 0xef, 0x7f, 0xde, 0x09, 0xf6, 0xcf, 0x1f, 0xff, - 0xe7, 0x3f, 0x4f, 0x1f, 0xff, 0xf3, 0xfc, 0x66, 0xf5, 0x5f, 0xfc, 0xaf, 0x06, 0xf1, 0xed, 0x81, - 0x6f, 0x90, 0x5d, 0x65, 0x51, 0x77, 0xd4, 0xe8, 0x25, 0x40, 0xa1, 0xdc, 0xbd, 0x38, 0x31, 0x8e, - 0x18, 0x47, 0x8c, 0xdb, 0xa8, 0x18, 0x37, 0x4c, 0xd2, 0xec, 0x79, 0x13, 0x22, 0x05, 0x22, 0x05, - 0x22, 0x05, 0x22, 0x05, 0x22, 0x85, 0x44, 0x33, 0x18, 0x67, 0x03, 0xb1, 0x5c, 0xae, 0x39, 0xb9, - 0x3e, 0xe9, 0x26, 0xe9, 0x26, 0xe9, 0x26, 0xe9, 0x26, 0xe9, 0x26, 0xe9, 0x26, 0xe9, 0x26, 0xe9, - 0x26, 0xe9, 0x66, 0x85, 0xd2, 0x4d, 0x9a, 0x87, 0xd7, 0x6c, 0x1e, 0x76, 0xd0, 0x03, 0x6e, 0xd3, - 0x9f, 0x3b, 0x1c, 0xc4, 0xc1, 0xe5, 0xb0, 0x9b, 0x25, 0xbd, 0x6e, 0xec, 0x88, 0x8d, 0x9e, 0xe6, - 0x05, 0xf3, 0xd7, 0xf6, 0xac, 0x73, 0x77, 0x87, 0xce, 0x5d, 0x0f, 0xb2, 0x7d, 0x3a, 0x77, 0x97, - 0x7f, 0x22, 0x67, 0x9d, 0xbb, 0xad, 0xc9, 0x1e, 0x70, 0x4c, 0x07, 0xe4, 0xd7, 0xf5, 0x5c, 0x17, - 0x1f, 0x1a, 0x00, 0x1a, 0x60, 0x33, 0x69, 0x00, 0xe7, 0xba, 0xf8, 0x63, 0xc9, 0xc6, 0xb6, 0xb4, - 0x26, 0x24, 0xd2, 0xc3, 0x32, 0x2e, 0x4c, 0xd2, 0x95, 0xc9, 0xbb, 0x34, 0x69, 0xd7, 0xa6, 0xe6, - 0xe2, 0xd4, 0x5c, 0x9d, 0x8a, 0xcb, 0x13, 0x02, 0xdc, 0xcc, 0x9f, 0xcf, 0x67, 0x46, 0xcc, 0x9f, - 0x1b, 0x70, 0x0b, 0x26, 0x1c, 0xc3, 0x3c, 0x9c, 0xae, 0xe1, 0x61, 0x5d, 0xf1, 0x17, 0x87, 0xf2, - 0xd2, 0xd3, 0x14, 0xc2, 0x5d, 0xd4, 0x01, 0x92, 0x00, 0x49, 0x80, 0x24, 0x7e, 0x43, 0x12, 0xc7, - 0xdc, 0x86, 0x2c, 0xc7, 0x21, 0xe4, 0x58, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x83, 0x63, 0xca, 0xc0, - 0xb1, 0xa3, 0x2a, 0x2e, 0x1c, 0x75, 0xbb, 0x57, 0x7f, 0x4f, 0x93, 0xbb, 0x68, 0x20, 0x67, 0x97, - 0xd3, 0xb3, 0x9d, 0xee, 0x2f, 0x29, 0x64, 0x36, 0xc2, 0x3c, 0x8b, 0x30, 0xdf, 0x22, 0xee, 0x46, - 0x35, 0xdc, 0xa9, 0x9e, 0x5b, 0xd5, 0x72, 0xaf, 0xea, 0x6e, 0x56, 0xdd, 0xdd, 0xaa, 0xba, 0x5d, - 0x19, 0xf7, 0x2b, 0xe4, 0x86, 0xe5, 0xf9, 0x1b, 0x45, 0x1e, 0x47, 0x98, 0xcf, 0x91, 0xfb, 0xb0, - 0x12, 0x7d, 0x52, 0x97, 0xd1, 0xb7, 0xe4, 0x72, 0x78, 0xe9, 0x78, 0x2a, 0x6e, 0xe1, 0x57, 0x9d, - 0x5d, 0x4e, 0x3e, 0xfc, 0xed, 0x12, 0xfa, 0x08, 0x7d, 0x84, 0x3e, 0x42, 0x5f, 0x95, 0x42, 0x9f, - 0xf3, 0xe6, 0xee, 0x45, 0xde, 0xeb, 0x85, 0xe0, 0x12, 0x32, 0xcd, 0xdf, 0xf7, 0x7f, 0x64, 0xf7, - 0xfb, 0xb6, 0x74, 0x73, 0xb8, 0x72, 0x58, 0x99, 0x5b, 0x4e, 0xb8, 0x79, 0x7c, 0x6e, 0x3d, 0x85, - 0x86, 0x63, 0x25, 0x77, 0x30, 0x6b, 0x22, 0xd1, 0xb7, 0xda, 0x9b, 0x88, 0x74, 0x33, 0xba, 0x17, - 0xb6, 0xb2, 0x55, 0xcd, 0xab, 0x9f, 0x57, 0x05, 0xc0, 0x78, 0x4d, 0x35, 0x0a, 0x15, 0xac, 0x8b, - 0xeb, 0x1b, 0x17, 0xae, 0xe3, 0xdb, 0x7f, 0xed, 0xb2, 0x7a, 0xed, 0xfe, 0xab, 0xba, 0x3c, 0xc9, - 0xc5, 0x8d, 0x0a, 0xf6, 0xc2, 0x1c, 0xcd, 0x85, 0x2a, 0xf6, 0x42, 0x42, 0x42, 0xaa, 0x1c, 0xd5, - 0xa4, 0x1c, 0xa5, 0x07, 0x1a, 0x29, 0x47, 0xd5, 0x30, 0x46, 0x50, 0x8e, 0x5a, 0xe7, 0xa5, 0x51, - 0x8e, 0xb2, 0x76, 0xa7, 0x7a, 0x6e, 0x55, 0xcb, 0xbd, 0xaa, 0xbb, 0x59, 0x75, 0x77, 0xab, 0xea, - 0x76, 0x65, 0x41, 0x0a, 0xe5, 0xa8, 0x15, 0xb2, 0x3f, 0xca, 0x51, 0x94, 0xa3, 0x08, 0x7d, 0x84, - 0x3e, 0x42, 0x1f, 0xa1, 0xcf, 0x87, 0xd0, 0x47, 0x39, 0x6a, 0xe9, 0x1f, 0xca, 0x51, 0xa5, 0x96, - 0xa3, 0x1c, 0xe5, 0xc6, 0x44, 0x28, 0x47, 0xd5, 0xc3, 0x56, 0x28, 0x47, 0xc9, 0x02, 0x18, 0xca, - 0x51, 0xc6, 0xe5, 0x28, 0x87, 0xe7, 0xf8, 0xba, 0xff, 0xa8, 0x8c, 0xd3, 0x2a, 0x99, 0x41, 0xc3, - 0x69, 0xd9, 0x6f, 0xd5, 0x73, 0x7f, 0xff, 0x1a, 0xc4, 0xef, 0xf3, 0x7b, 0x3a, 0xbd, 0xbd, 0xa5, - 0xf0, 0x8d, 0x33, 0x94, 0xe1, 0xc7, 0x7c, 0x6f, 0x22, 0x32, 0xdf, 0x9b, 0x30, 0xdf, 0xeb, 0x27, - 0x1b, 0xc1, 0x7c, 0xaf, 0x09, 0x9b, 0xc0, 0x7c, 0x6f, 0xa9, 0x6d, 0xc0, 0x7c, 0x2f, 0x0d, 0x15, - 0xd6, 0x0e, 0x48, 0xcd, 0x11, 0xa9, 0x38, 0xa4, 0x6a, 0xa0, 0x1c, 0xb1, 0x86, 0x0a, 0x2a, 0x49, - 0x3e, 0xf2, 0x39, 0x54, 0x92, 0xbc, 0x72, 0xa9, 0xea, 0xae, 0x55, 0xdd, 0xc5, 0xaa, 0xba, 0x5a, - 0x59, 0x6a, 0x8d, 0x4a, 0xd2, 0xd2, 0xde, 0x8b, 0x4a, 0xd2, 0x12, 0x0f, 0x42, 0x25, 0xc9, 0xdd, - 0x7a, 0x54, 0x92, 0x2a, 0x6b, 0x22, 0x54, 0x92, 0xfc, 0xbd, 0x3a, 0x95, 0x24, 0x27, 0xa9, 0x4f, - 0xbd, 0x2b, 0x49, 0x09, 0x83, 0x4d, 0x0e, 0x73, 0x34, 0x06, 0x9b, 0xe0, 0xe1, 0x3c, 0x01, 0x8b, - 0xf0, 0x70, 0x7a, 0x31, 0x02, 0x1e, 0x6e, 0x95, 0x97, 0x05, 0x0f, 0x67, 0xe9, 0x42, 0xf5, 0x5c, - 0xa9, 0x96, 0x4b, 0x55, 0x77, 0xad, 0xea, 0x2e, 0x56, 0xd5, 0xd5, 0xca, 0x02, 0x13, 0x78, 0xb8, - 0xa5, 0xbd, 0x17, 0x3c, 0xdc, 0x32, 0x24, 0x0b, 0x3c, 0x5c, 0xa5, 0xb9, 0x15, 0x78, 0x38, 0x27, - 0x26, 0x02, 0x0f, 0xe7, 0xef, 0xd5, 0xe1, 0xe1, 0x9c, 0xa4, 0x3e, 0x1b, 0xc0, 0xc3, 0xd1, 0xd1, - 0x6d, 0x6d, 0x0e, 0x3e, 0x98, 0x81, 0x67, 0x1d, 0xdd, 0x47, 0x35, 0xeb, 0xe8, 0x76, 0x4b, 0x01, - 0x8b, 0x50, 0xbf, 0x62, 0x3d, 0xdd, 0x4d, 0x7a, 0xba, 0x2b, 0xc4, 0x37, 0xd0, 0xd3, 0xcd, 0x31, - 0xb2, 0x1c, 0x23, 0x7b, 0xcf, 0x85, 0xd1, 0x35, 0xae, 0xe0, 0xda, 0xd4, 0x5c, 0x9c, 0x9a, 0xab, - 0x53, 0x71, 0x79, 0xd5, 0x40, 0x52, 0x1c, 0x23, 0x0b, 0x4a, 0xaa, 0x36, 0x4a, 0x72, 0x88, 0x93, - 0x1d, 0x60, 0x92, 0x2d, 0xc3, 0x2f, 0xed, 0xfa, 0x0b, 0x1b, 0x7f, 0xd9, 0x86, 0x13, 0x7c, 0x57, - 0x16, 0xf2, 0x96, 0xb3, 0xac, 0xf5, 0xed, 0x61, 0xbd, 0xdf, 0x5c, 0xd3, 0x82, 0x5c, 0x59, 0x8e, - 0xa6, 0xc5, 0x94, 0x30, 0x8f, 0xd5, 0xcd, 0x62, 0x3d, 0x2b, 0x58, 0xfd, 0x1b, 0xae, 0xf1, 0xfd, - 0x1a, 0x69, 0x9c, 0x5c, 0x7c, 0xfd, 0x72, 0xd5, 0x5f, 0xbf, 0x27, 0xa4, 0x88, 0xd5, 0xd3, 0x4b, - 0xad, 0x69, 0x47, 0xe5, 0xb8, 0x8a, 0xd2, 0x89, 0xbd, 0x8b, 0x04, 0xde, 0x5d, 0xa2, 0xee, 0x2a, - 0x21, 0x77, 0x9e, 0x78, 0x3b, 0x4f, 0xb0, 0x9d, 0x26, 0xd2, 0xba, 0x9e, 0xaf, 0x2c, 0x17, 0x50, - 0xec, 0x99, 0xf2, 0x9f, 0xf9, 0xfe, 0x2e, 0x2c, 0xfb, 0x95, 0xdd, 0x10, 0x87, 0xce, 0xd0, 0xb6, - 0x4b, 0x74, 0xed, 0x1e, 0x4d, 0xbb, 0x46, 0xcf, 0x62, 0x68, 0x59, 0x0c, 0x1d, 0x8b, 0xa0, 0x61, - 0xdb, 0x84, 0xd8, 0x15, 0xd1, 0xd7, 0x88, 0x3a, 0x49, 0x30, 0x88, 0x3a, 0xc9, 0xc0, 0x7d, 0xad, - 0x60, 0x7a, 0x69, 0x34, 0x60, 0xfc, 0x23, 0xd7, 0xa8, 0x17, 0x98, 0x90, 0x67, 0x35, 0xaf, 0x17, - 0x4c, 0xf6, 0xbc, 0x5c, 0xc1, 0xa0, 0x58, 0x01, 0x1d, 0x18, 0x18, 0x7d, 0x33, 0x27, 0xa4, 0xe6, - 0x8c, 0x54, 0x9c, 0x92, 0x5b, 0xe7, 0xe4, 0xd8, 0x49, 0x89, 0x39, 0xab, 0xa9, 0xd3, 0x6a, 0xb7, - 0xb5, 0x66, 0x4f, 0xa6, 0x4b, 0xc9, 0xce, 0x84, 0xec, 0x32, 0x13, 0x62, 0xe8, 0xde, 0xb4, 0xdc, - 0x9c, 0xba, 0xbb, 0x53, 0x77, 0x7b, 0xaa, 0xee, 0x4f, 0xc6, 0x0d, 0x0a, 0xb9, 0x43, 0x71, 0xb7, - 0x58, 0x2c, 0x20, 0xa4, 0xeb, 0xb7, 0x70, 0x5b, 0x8a, 0xe8, 0xfc, 0x29, 0x3b, 0x4a, 0x35, 0x87, - 0xa9, 0xe9, 0x38, 0xf5, 0x1d, 0xa8, 0xb6, 0x23, 0x35, 0x73, 0xa8, 0x66, 0x8e, 0xd5, 0xc4, 0xc1, - 0xca, 0x3a, 0x5a, 0x61, 0x87, 0xab, 0xe6, 0x78, 0x8b, 0x85, 0xe2, 0x6e, 0x72, 0x91, 0x7c, 0xe9, - 0xc6, 0xc1, 0xd8, 0x14, 0x83, 0xde, 0x55, 0x37, 0x69, 0x7d, 0xd7, 0xdb, 0x0c, 0x45, 0xaf, 0xde, - 0xc3, 0xf7, 0xf1, 0xa4, 0x96, 0x33, 0x47, 0x5a, 0x8e, 0xdb, 0xc2, 0x81, 0xdb, 0x39, 0x72, 0x2b, - 0x87, 0x6e, 0xee, 0xd8, 0xcd, 0x1d, 0xbc, 0xa9, 0xa3, 0xd7, 0x71, 0xf8, 0x4a, 0x8e, 0xbf, 0x78, - 0x93, 0xe2, 0xd3, 0xd8, 0x0b, 0xf7, 0x6b, 0x37, 0x8e, 0x3a, 0xfd, 0xb8, 0xa3, 0xb9, 0x61, 0x27, - 0xf9, 0xf2, 0x0b, 0xc5, 0x35, 0x4f, 0x8b, 0x76, 0x9b, 0x56, 0xd0, 0xef, 0x5d, 0x75, 0x5f, 0xf5, - 0xaf, 0x86, 0x59, 0x92, 0x5e, 0xe4, 0x91, 0xa7, 0xf8, 0xe3, 0xf1, 0xff, 0x0d, 0xda, 0x71, 0x27, - 0x49, 0x93, 0x2c, 0xb9, 0x4a, 0x07, 0x8b, 0xff, 0x55, 0xf1, 0x6f, 0x46, 0x4d, 0x32, 0x5b, 0xf5, - 0xb0, 0x7a, 0x8d, 0x01, 0xe3, 0x7e, 0xdc, 0x8a, 0x93, 0xeb, 0x58, 0x3f, 0xed, 0x98, 0x2c, 0xac, - 0xb4, 0xab, 0x95, 0x8e, 0xa2, 0x26, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x79, - 0x60, 0xbf, 0xca, 0x1f, 0xa5, 0xbd, 0x30, 0xbf, 0xd9, 0x25, 0x25, 0x58, 0xfa, 0x9d, 0x0d, 0xe2, - 0xb4, 0xad, 0x9f, 0x0f, 0x8c, 0x56, 0x25, 0x19, 0x20, 0x19, 0x20, 0x19, 0x20, 0x19, 0x20, 0x19, - 0x20, 0x19, 0x20, 0x19, 0xf0, 0x25, 0x19, 0x08, 0x2e, 0x35, 0x55, 0xc8, 0xee, 0x26, 0x04, 0xa3, - 0x95, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, 0xac, 0xb6, 0x5f, 0x87, 0x49, 0x9a, - 0xfd, 0x66, 0x10, 0x9a, 0xf7, 0x15, 0x97, 0xd4, 0x91, 0x91, 0xbd, 0xff, 0xa3, 0xeb, 0x8e, 0xb6, - 0xb5, 0x65, 0x66, 0x8d, 0xa3, 0xea, 0xdc, 0xf2, 0xca, 0x32, 0xb4, 0x73, 0xeb, 0x1b, 0x48, 0x8d, - 0x1a, 0x79, 0xab, 0x59, 0x93, 0x8b, 0xbe, 0x6d, 0xbc, 0xc9, 0x35, 0xf7, 0xf7, 0x37, 0xd8, 0xe8, - 0xb6, 0xea, 0xb9, 0xda, 0x79, 0x5d, 0xa0, 0x63, 0xa5, 0x7b, 0xf4, 0x84, 0xf5, 0x74, 0xe7, 0x41, - 0xb0, 0x86, 0x4c, 0x48, 0x21, 0x66, 0x51, 0xfc, 0xd3, 0xb3, 0x62, 0xd6, 0xb6, 0xf8, 0xa7, 0x67, - 0xc5, 0xa8, 0x89, 0xc8, 0xc1, 0x57, 0x7a, 0x66, 0x22, 0x68, 0x22, 0x42, 0x07, 0x65, 0x2d, 0x26, - 0x2a, 0x04, 0x0e, 0xce, 0x5a, 0x14, 0xd4, 0xd4, 0x1a, 0xdb, 0x9b, 0x34, 0xb6, 0x57, 0x87, 0x7d, - 0xa0, 0xb1, 0x9d, 0xc6, 0xf6, 0x5f, 0xbe, 0x31, 0x1a, 0xdb, 0x69, 0x6c, 0xaf, 0xa6, 0x03, 0xb7, - 0x73, 0xe4, 0x56, 0x0e, 0xdd, 0xdc, 0xb1, 0x9b, 0x3b, 0x78, 0x53, 0x47, 0xaf, 0x8b, 0x2b, 0x69, - 0x6c, 0x17, 0xcc, 0x97, 0x69, 0x6c, 0xf7, 0x91, 0x7d, 0xa0, 0xb1, 0xdd, 0x5d, 0x5a, 0x47, 0x2f, - 0x1b, 0xf9, 0x0d, 0xf9, 0x0d, 0xf9, 0x0d, 0xf9, 0x0d, 0xbd, 0x6c, 0xa4, 0x04, 0x3f, 0x7b, 0x67, - 0x34, 0xb6, 0x93, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, - 0xd0, 0xd8, 0x4e, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x1b, 0x13, 0x9c, 0x69, 0x6c, 0x97, - 0xfa, 0xa1, 0xb1, 0x5d, 0x75, 0x79, 0x1a, 0xdb, 0x69, 0x6c, 0x37, 0x32, 0x39, 0x1a, 0xdb, 0x6b, - 0xb8, 0x1a, 0x8d, 0xed, 0x1e, 0xb8, 0x1c, 0x1a, 0xdb, 0x1d, 0x9f, 0x90, 0xab, 0x6f, 0x25, 0xd5, - 0x52, 0x99, 0x57, 0xb2, 0x37, 0x2f, 0xed, 0xac, 0x21, 0x3a, 0x81, 0xb0, 0xf4, 0x81, 0xad, 0x27, - 0xf9, 0xbd, 0x86, 0x87, 0x9d, 0xe4, 0x2c, 0xea, 0x24, 0xe1, 0x61, 0xbb, 0xed, 0xe0, 0x24, 0x5f, - 0x3d, 0xfb, 0x14, 0xb0, 0xcd, 0xe2, 0x38, 0xa8, 0x20, 0x7f, 0x85, 0xd2, 0xe7, 0xb7, 0xcc, 0x2c, - 0x27, 0x7b, 0x86, 0xcb, 0x0e, 0x67, 0xb8, 0x78, 0x40, 0xab, 0x71, 0x86, 0x4b, 0x25, 0x69, 0xb1, - 0x6a, 0x45, 0x57, 0x71, 0x9a, 0x4b, 0xb1, 0xc1, 0x56, 0xa3, 0xa1, 0xb6, 0x68, 0xa0, 0x7d, 0xfa, - 0x34, 0x9f, 0x6e, 0x7c, 0x36, 0xeb, 0x99, 0x37, 0x39, 0x22, 0xf6, 0x7a, 0xdd, 0xef, 0xd2, 0xa3, - 0x34, 0xd3, 0x80, 0x78, 0x77, 0x35, 0xce, 0x34, 0xf3, 0x21, 0x1e, 0xf6, 0x7b, 0x57, 0x5d, 0x02, - 0x62, 0x05, 0x03, 0xe2, 0xe8, 0xc3, 0x11, 0x11, 0xb7, 0x39, 0xd5, 0xcc, 0x53, 0x57, 0xa9, 0xe6, - 0x32, 0x35, 0x5d, 0xa7, 0x81, 0x0b, 0xd5, 0x76, 0xa5, 0x66, 0x2e, 0xd5, 0xcc, 0xb5, 0xda, 0xb8, - 0x58, 0x59, 0x57, 0x2b, 0xec, 0x72, 0xd5, 0x5c, 0x6f, 0xb1, 0x50, 0x7b, 0xdc, 0x83, 0x1c, 0xc4, - 0xdf, 0x7a, 0x57, 0xfd, 0xcc, 0x6c, 0xfa, 0xfb, 0xe1, 0xdb, 0xd0, 0xef, 0xc3, 0xfe, 0xf0, 0xe6, - 0xff, 0x79, 0xf3, 0xfb, 0xc7, 0xf0, 0xc3, 0x9f, 0x7f, 0x7d, 0x7c, 0x43, 0xc7, 0x57, 0xe5, 0xe2, - 0x87, 0x61, 0x1c, 0xb1, 0x8a, 0x27, 0xe6, 0x71, 0xc5, 0x3c, 0xbe, 0xd8, 0xc6, 0x19, 0x9d, 0x78, - 0xa3, 0x14, 0x77, 0xf4, 0xc8, 0xb0, 0x5f, 0x46, 0x82, 0x7c, 0xb6, 0x3a, 0xbb, 0xbd, 0x11, 0x83, - 0xe6, 0xec, 0x3d, 0xc5, 0x35, 0xdf, 0xa4, 0xc3, 0xcb, 0xdb, 0x97, 0x7d, 0x43, 0x43, 0xf8, 0xca, - 0x79, 0x4b, 0x72, 0xe9, 0x45, 0xde, 0x32, 0x7b, 0x1b, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, - 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0x77, 0xde, 0x99, 0x31, 0xcf, 0x62, 0xc2, - 0xaf, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x20, 0xaf, 0x57, 0x39, 0x79, - 0x3d, 0x25, 0x7b, 0x3c, 0x4e, 0x06, 0xd9, 0x61, 0x96, 0xf5, 0x75, 0x6d, 0xf2, 0x7d, 0x92, 0xbe, - 0xe9, 0xc6, 0xb7, 0x2e, 0x65, 0xd0, 0x78, 0xb5, 0x9d, 0x0e, 0xbb, 0x5d, 0x45, 0x0b, 0x79, 0x1f, - 0x7d, 0xb3, 0x5b, 0xfc, 0xcf, 0x7e, 0x3b, 0xee, 0xc7, 0xed, 0xd7, 0xdf, 0xf5, 0xe3, 0x58, 0x31, - 0xdd, 0x3a, 0x88, 0xfb, 0xda, 0x21, 0xcc, 0x28, 0x76, 0xdf, 0x8f, 0xdf, 0x57, 0xe3, 0xb7, 0x1f, - 0x7c, 0xf9, 0xde, 0x30, 0x18, 0x0b, 0xb4, 0x8e, 0xe3, 0x73, 0xb1, 0x7c, 0x64, 0x09, 0x35, 0x1d, - 0x55, 0x03, 0x1c, 0x2e, 0x6f, 0x13, 0xc6, 0x64, 0xb6, 0x09, 0x89, 0x0d, 0x38, 0x04, 0x1c, 0x02, - 0x0e, 0x01, 0x87, 0x80, 0x43, 0xc0, 0x21, 0xe0, 0x10, 0x70, 0x08, 0x38, 0x04, 0x1c, 0x02, 0x0e, - 0x01, 0x87, 0xd5, 0x02, 0x87, 0xe8, 0x98, 0xac, 0xb0, 0x9e, 0x4f, 0xfa, 0x12, 0x77, 0x46, 0x27, - 0x39, 0xa3, 0x73, 0xf1, 0x17, 0xe3, 0x8c, 0xce, 0xd2, 0x84, 0x43, 0x93, 0x31, 0xad, 0x0a, 0x25, - 0x27, 0x8c, 0x69, 0x31, 0xa6, 0xf5, 0xeb, 0x57, 0xc6, 0x98, 0x16, 0xed, 0xce, 0xd2, 0x71, 0x03, - 0xa2, 0xba, 0x4e, 0x60, 0x17, 0xa2, 0x1a, 0xa2, 0xda, 0xdd, 0xab, 0xa4, 0xdd, 0x99, 0x76, 0x67, - 0x9f, 0x8d, 0x94, 0x31, 0x2d, 0xf2, 0x16, 0xf2, 0x16, 0xf2, 0x16, 0xf2, 0x16, 0xf2, 0x16, 0xf2, - 0x16, 0xf2, 0x96, 0xca, 0xe4, 0x2d, 0x8c, 0x69, 0x91, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, - 0x6c, 0x6a, 0xa2, 0x40, 0x27, 0x1e, 0x9d, 0x78, 0xf3, 0xaf, 0x8b, 0x4e, 0x3c, 0x3a, 0xf1, 0xea, - 0x1b, 0xbb, 0xb7, 0xe9, 0xc4, 0xfb, 0x59, 0x2c, 0xa7, 0x13, 0x0f, 0x70, 0xc8, 0x98, 0x16, 0xe0, - 0x10, 0x70, 0x08, 0x38, 0x04, 0x1c, 0x02, 0x0e, 0x01, 0x87, 0x80, 0x43, 0xc0, 0x21, 0xe0, 0x10, - 0x70, 0x08, 0x38, 0x04, 0x1c, 0x56, 0x01, 0x1c, 0x32, 0xa6, 0xb5, 0xc2, 0x7a, 0xbe, 0x8e, 0x69, - 0x71, 0xe2, 0xb4, 0x96, 0xe9, 0x6d, 0xe4, 0x89, 0xd3, 0xf2, 0x87, 0x29, 0x6e, 0x97, 0x3e, 0x74, - 0xfa, 0xf6, 0x1e, 0x4f, 0xc7, 0xb7, 0xb8, 0xc1, 0xa7, 0x6c, 0x0a, 0x1f, 0x1f, 0xa7, 0x73, 0x6c, - 0x1c, 0x27, 0x6b, 0xae, 0xc6, 0x94, 0x71, 0xd2, 0x74, 0x35, 0x12, 0x66, 0x4e, 0x9a, 0x5e, 0xf8, - 0x66, 0xc4, 0xcf, 0xd5, 0xd4, 0x39, 0x90, 0x7f, 0x6e, 0x77, 0x6a, 0x1c, 0xcc, 0x7f, 0xdf, 0x6d, - 0xee, 0x70, 0xca, 0xa6, 0xc7, 0xee, 0xd4, 0x8a, 0xb3, 0x60, 0x7a, 0x5b, 0xd4, 0xdd, 0xd6, 0x03, - 0x4f, 0xab, 0x95, 0x0f, 0xa6, 0x95, 0xdb, 0x76, 0x9c, 0x66, 0x49, 0xf6, 0x5d, 0xa7, 0x74, 0x50, - 0x64, 0x96, 0xfb, 0x0a, 0x6b, 0x1d, 0xe5, 0x8f, 0xf6, 0x3a, 0x1a, 0xc4, 0xfa, 0x25, 0xf1, 0xc3, - 0xb7, 0x47, 0xe1, 0xd9, 0xed, 0x7f, 0x7d, 0xfc, 0xf7, 0xa9, 0xda, 0x60, 0xd5, 0xa7, 0xa8, 0x3b, - 0x8c, 0x07, 0x8d, 0x57, 0xdb, 0x9f, 0xd5, 0x88, 0x38, 0x23, 0x96, 0xfb, 0xe8, 0xf4, 0xd3, 0x41, - 0x78, 0x7c, 0xf8, 0xfa, 0xcd, 0xf1, 0x9b, 0x3f, 0xc2, 0xbf, 0x4e, 0x8e, 0x7e, 0x3f, 0x3c, 0xfb, - 0xa8, 0x58, 0xb4, 0x7c, 0x52, 0xf7, 0xf7, 0x7b, 0xf6, 0xe1, 0xe3, 0x9b, 0xf0, 0xf4, 0xcf, 0xe3, - 0xa3, 0xdf, 0xff, 0x1d, 0xde, 0xbe, 0x6b, 0xde, 0xad, 0xbb, 0x77, 0x7b, 0x7c, 0x74, 0xf2, 0xaf, - 0xb3, 0x8f, 0x87, 0x1f, 0xdf, 0xf0, 0x52, 0x9d, 0x3a, 0x84, 0x3d, 0x1c, 0x81, 0x80, 0xb1, 0x36, - 0x3f, 0x9d, 0x9e, 0x84, 0x6f, 0x3e, 0x9d, 0x9e, 0xf0, 0x56, 0x05, 0x5c, 0x40, 0x78, 0x76, 0xfa, - 0x96, 0x17, 0x2b, 0xf1, 0x62, 0xb1, 0x58, 0xb7, 0x2f, 0xf6, 0xf9, 0xad, 0x1f, 0xc0, 0xcb, 0x4a, - 0x7a, 0xd9, 0x4f, 0xa7, 0xc7, 0x67, 0xbc, 0x55, 0x01, 0x9b, 0x3d, 0xc0, 0x66, 0x85, 0x32, 0x2e, - 0x20, 0x98, 0x86, 0xf5, 0xbe, 0xff, 0xeb, 0xf8, 0x23, 0xef, 0x57, 0x2e, 0xa2, 0xf1, 0x7e, 0xe5, - 0x29, 0x84, 0x3d, 0xde, 0xad, 0xbb, 0x77, 0xfb, 0xe9, 0xf4, 0xe4, 0xd3, 0x5e, 0xf8, 0xf6, 0xf8, - 0xcf, 0xff, 0x3e, 0x3b, 0x7d, 0xf3, 0x3b, 0x6f, 0xd6, 0x69, 0x54, 0x23, 0x5b, 0x90, 0xca, 0x16, - 0x0c, 0x0c, 0x56, 0x65, 0xa5, 0xf3, 0xaa, 0xd7, 0xb5, 0x2a, 0x29, 0x01, 0x1f, 0xa7, 0xd1, 0x97, - 0x6e, 0xdc, 0xd6, 0xeb, 0x26, 0x98, 0x2c, 0x28, 0x2d, 0xe1, 0x3c, 0x55, 0xe7, 0xeb, 0x44, 0xdd, - 0x01, 0x7d, 0x0b, 0x2b, 0x2e, 0x44, 0xdf, 0x82, 0x53, 0xeb, 0xa0, 0x6f, 0x81, 0xbe, 0x85, 0x5f, - 0xbc, 0x31, 0xfd, 0xbe, 0x85, 0x2f, 0x57, 0x57, 0xdd, 0x38, 0x4a, 0x35, 0x7b, 0x16, 0x76, 0xe9, - 0xef, 0x97, 0x37, 0xa9, 0x4d, 0xec, 0xef, 0x97, 0x3c, 0xe4, 0xa7, 0x1a, 0x6d, 0xf3, 0x17, 0xfd, - 0xa8, 0x15, 0x77, 0x86, 0xdd, 0xa0, 0x1f, 0x0f, 0xb2, 0xa8, 0x9f, 0xc9, 0x37, 0xd0, 0xcf, 0xad, - 0x48, 0x2b, 0xbd, 0x55, 0x2e, 0x45, 0x2b, 0x7d, 0xf5, 0x72, 0x25, 0x5a, 0xe9, 0x17, 0xa3, 0x37, - 0xe9, 0x56, 0x7a, 0xe1, 0x19, 0xa3, 0xb9, 0x6d, 0x29, 0x3a, 0x6b, 0xa4, 0xe4, 0x28, 0x01, 0xa1, - 0x80, 0x50, 0x40, 0x68, 0xbd, 0x41, 0xa8, 0xda, 0xc9, 0x67, 0x5a, 0xbc, 0xe3, 0xdc, 0xfe, 0xd6, - 0xe1, 0x1f, 0xa7, 0x2f, 0x54, 0x97, 0x87, 0xbc, 0x1f, 0x0a, 0x10, 0x76, 0xab, 0x72, 0x88, 0xb0, - 0x0a, 0x15, 0xe6, 0x21, 0xc3, 0x3c, 0x74, 0x98, 0x86, 0x10, 0x9d, 0x50, 0xa2, 0x14, 0x52, 0x8a, - 0x37, 0x69, 0x27, 0xeb, 0xa6, 0xc7, 0x73, 0xce, 0x65, 0xe2, 0xbb, 0x48, 0xec, 0x78, 0x90, 0xd5, - 0x6c, 0xb0, 0xc4, 0xce, 0x7d, 0x8e, 0x8e, 0xd3, 0xd0, 0x17, 0x7f, 0x35, 0x4e, 0x43, 0x2f, 0x9d, - 0xfe, 0x35, 0x61, 0x04, 0x60, 0x04, 0x60, 0x04, 0x60, 0x04, 0x56, 0x5f, 0x28, 0x6a, 0x5f, 0xc7, - 0xfd, 0x2c, 0x19, 0x58, 0x90, 0x02, 0x77, 0xd6, 0x06, 0x9f, 0x83, 0xcf, 0xc1, 0xe7, 0xe0, 0x73, - 0xf0, 0x39, 0xf8, 0xbc, 0x42, 0xf8, 0xfc, 0x09, 0x94, 0xbd, 0xb3, 0x8c, 0x07, 0xca, 0x9e, 0x94, - 0x80, 0x94, 0x80, 0x94, 0x80, 0x94, 0x80, 0x94, 0x80, 0x94, 0xe0, 0x67, 0xef, 0xac, 0x1f, 0xb7, - 0xe2, 0xe4, 0xda, 0x22, 0x27, 0x28, 0x56, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, - 0x33, 0xc1, 0xb9, 0x42, 0xc1, 0x99, 0x7a, 0xfa, 0x0a, 0xeb, 0xf9, 0x5c, 0x4f, 0xe7, 0xd8, 0x1a, - 0x2d, 0xf3, 0xdb, 0xc4, 0xb1, 0x36, 0xa5, 0x11, 0xab, 0xed, 0xb2, 0x47, 0xd7, 0xbc, 0xcb, 0xef, - 0xf3, 0x43, 0x7e, 0x9b, 0x1b, 0x3c, 0x87, 0x97, 0xf4, 0xae, 0xf7, 0x82, 0x6e, 0xf4, 0x25, 0xee, - 0xc6, 0xed, 0x60, 0x98, 0x26, 0xad, 0x68, 0xa0, 0x30, 0x8b, 0xf7, 0xe0, 0xaa, 0xcc, 0xe3, 0x59, - 0x61, 0x1d, 0xe6, 0xf1, 0xaa, 0x87, 0x55, 0x98, 0xc7, 0x5b, 0xf8, 0x66, 0xc4, 0xe7, 0xf1, 0xc6, - 0x16, 0x15, 0x74, 0x93, 0xcb, 0x24, 0xd3, 0x6b, 0xc1, 0x9b, 0x59, 0x95, 0xd9, 0x3c, 0x5f, 0x09, - 0x23, 0x3a, 0xf1, 0xea, 0x47, 0x08, 0xd1, 0x89, 0xe7, 0x9d, 0x13, 0x2e, 0x16, 0x52, 0x1a, 0x8e, - 0x9e, 0xdb, 0xde, 0x2a, 0x43, 0xd2, 0xca, 0x0e, 0x59, 0xdd, 0x31, 0x5b, 0x38, 0x68, 0x3b, 0x47, - 0x6d, 0xe5, 0xb0, 0xcd, 0x1d, 0xb7, 0xb9, 0x03, 0x37, 0x75, 0xe4, 0x3a, 0x0e, 0x5d, 0xc9, 0xb1, - 0xab, 0x3b, 0xf8, 0x62, 0xc1, 0xcb, 0xe8, 0x5b, 0x30, 0xb6, 0xda, 0xd1, 0x81, 0x57, 0x46, 0xaa, - 0xa6, 0x33, 0x77, 0xa1, 0x6c, 0xbc, 0xba, 0x65, 0x5d, 0xb3, 0x60, 0x60, 0x19, 0x14, 0xec, 0x83, - 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0xba, 0x41, 0x44, 0x39, - 0x98, 0x14, 0x6f, 0x58, 0xbd, 0x4c, 0x3c, 0xb7, 0xdf, 0x87, 0x49, 0x9a, 0x3d, 0x6f, 0x5a, 0xec, - 0xf7, 0xdc, 0xbb, 0xbf, 0x30, 0x58, 0xfa, 0x43, 0x94, 0x5e, 0xc4, 0xaa, 0x87, 0x48, 0xde, 0xfd, - 0xb1, 0xf1, 0x6f, 0xa3, 0x07, 0x7f, 0x9f, 0xa4, 0x66, 0x0e, 0xd6, 0x38, 0xac, 0xcf, 0xdd, 0xc6, - 0xe8, 0x28, 0x51, 0x0f, 0xee, 0xe3, 0x6d, 0x3f, 0x6a, 0x65, 0xc9, 0x55, 0xfa, 0x47, 0x72, 0x91, - 0x64, 0xb7, 0x99, 0xde, 0x8e, 0xd9, 0xfd, 0xdc, 0x3c, 0x31, 0x34, 0xcd, 0xe8, 0x1b, 0xa6, 0x79, - 0xcf, 0x34, 0xf7, 0x9a, 0x2f, 0xf7, 0x5e, 0x1e, 0xbc, 0x68, 0xbe, 0xdc, 0xc7, 0x46, 0x6d, 0x12, - 0x02, 0xbb, 0x55, 0xcf, 0xb7, 0xea, 0xf9, 0x7c, 0x8a, 0x3e, 0xe6, 0x36, 0x8f, 0xbf, 0x8e, 0xd3, - 0x2c, 0xc8, 0xe2, 0xa8, 0xdf, 0xbe, 0xfa, 0x3b, 0xb5, 0x83, 0xd1, 0x73, 0x77, 0xa2, 0x9c, 0x68, - 0x1a, 0x8d, 0x4d, 0x01, 0xe5, 0x81, 0xf2, 0x40, 0x79, 0xa0, 0x3c, 0x50, 0x5e, 0x61, 0xbf, 0xeb, - 0x77, 0x7e, 0xdf, 0x77, 0xef, 0x4a, 0x1d, 0xe0, 0xf5, 0x4e, 0x5a, 0xf2, 0x66, 0xd2, 0x20, 0x4b, - 0x2e, 0xe3, 0xbe, 0x5d, 0xc6, 0x32, 0x7b, 0x1b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, - 0xa4, 0x0b, 0xb5, 0x49, 0x17, 0xda, 0x71, 0x2b, 0xb9, 0x8c, 0xba, 0x07, 0x7b, 0x96, 0x09, 0x43, - 0xd3, 0x60, 0xed, 0x39, 0x32, 0xab, 0x49, 0x09, 0x42, 0xef, 0xc1, 0x7d, 0x2a, 0x41, 0x34, 0x29, - 0x41, 0x6c, 0x53, 0x82, 0x98, 0x9a, 0xa6, 0x47, 0x25, 0x88, 0xe7, 0x98, 0xe6, 0x36, 0x95, 0x07, - 0x2a, 0x0f, 0x15, 0x05, 0xf1, 0x7f, 0x47, 0xfd, 0x34, 0x49, 0x2f, 0x82, 0xec, 0x6b, 0x3f, 0x1e, - 0x7c, 0xbd, 0xea, 0xb6, 0x83, 0x5e, 0x2b, 0xb3, 0x03, 0xf3, 0x0f, 0xdf, 0x0e, 0xa0, 0x1e, 0x50, - 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x6b, 0x03, 0xea, 0x7b, 0x71, 0xbf, 0x15, 0xa7, 0x59, 0x74, - 0x11, 0x1b, 0xa2, 0xfa, 0x7d, 0xf0, 0xf4, 0x66, 0xe2, 0x69, 0x5a, 0xfa, 0xc0, 0xd3, 0x9e, 0xe2, - 0x69, 0x5f, 0x4c, 0x73, 0x77, 0x07, 0xe3, 0x04, 0x51, 0xd7, 0x05, 0x51, 0xd7, 0x6a, 0xc2, 0x4f, - 0x59, 0x38, 0xad, 0x58, 0xd7, 0x23, 0x45, 0xab, 0x87, 0x84, 0x8a, 0x9e, 0xdd, 0x15, 0xe2, 0x50, - 0x39, 0xa1, 0x4c, 0xcf, 0xbc, 0x34, 0x64, 0x78, 0x75, 0x4e, 0x2e, 0x9b, 0x43, 0x02, 0x1a, 0x27, - 0x98, 0xdd, 0x0f, 0xb2, 0xea, 0xe3, 0xfa, 0x4d, 0xc6, 0xf5, 0xeb, 0x43, 0xdd, 0x30, 0xae, 0xcf, - 0xb8, 0xbe, 0xb3, 0x37, 0xc9, 0xb8, 0x3e, 0xe3, 0xfa, 0xf5, 0x0b, 0x0a, 0xf6, 0xc1, 0xc1, 0x3a, - 0x48, 0x78, 0x13, 0x2c, 0xbc, 0x09, 0x1a, 0x5e, 0x04, 0x0f, 0x1b, 0x6c, 0xcd, 0xb8, 0xbe, 0xba, - 0x77, 0x67, 0x5c, 0x5f, 0xf1, 0xc1, 0xe1, 0xf6, 0xa7, 0xb7, 0x01, 0xb7, 0x6f, 0xed, 0xfe, 0x66, - 0x4d, 0x13, 0x6e, 0x7f, 0xce, 0x34, 0x19, 0xd7, 0xb7, 0x4e, 0x08, 0xec, 0x56, 0xa5, 0x69, 0xae, - 0xbc, 0xd9, 0x32, 0xae, 0x5f, 0xb0, 0x17, 0x8c, 0xeb, 0x03, 0xe5, 0x81, 0xf2, 0x40, 0x79, 0xa0, - 0x7c, 0x6d, 0xa1, 0x3c, 0xe3, 0xfa, 0xb5, 0x48, 0x5a, 0x18, 0xd7, 0x27, 0x5d, 0x20, 0x5d, 0x20, - 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x8c, 0xeb, 0x33, 0xae, 0x6f, 0xe0, 0x5a, 0x18, - 0xd7, 0x9f, 0xde, 0x06, 0x25, 0x08, 0x6b, 0x3f, 0x3c, 0x6b, 0x9a, 0x8c, 0xeb, 0x63, 0x9a, 0xbe, - 0x24, 0x24, 0x76, 0xab, 0x52, 0x79, 0x28, 0x6f, 0xb6, 0x8c, 0xeb, 0x03, 0xea, 0x01, 0xf5, 0x80, - 0x7a, 0x40, 0x3d, 0xa0, 0x5e, 0x73, 0xbf, 0x33, 0xae, 0x0f, 0x9e, 0xb6, 0x03, 0x2d, 0xb4, 0xf4, - 0x81, 0xa7, 0x3d, 0xc5, 0xd3, 0x8c, 0xeb, 0x83, 0xa8, 0x41, 0xd4, 0x95, 0x5c, 0x89, 0x71, 0x7d, - 0x8f, 0xc6, 0xf5, 0xc7, 0x53, 0xe0, 0x75, 0x99, 0xd6, 0xdf, 0xaa, 0xb0, 0xdd, 0x6a, 0xdb, 0x6b, - 0xa5, 0xec, 0xb4, 0xa1, 0xa2, 0xc3, 0xd0, 0x1f, 0xb6, 0xb2, 0x34, 0x47, 0x5e, 0x27, 0xe3, 0x07, - 0x3c, 0xca, 0x9f, 0x2f, 0x3c, 0xcd, 0x9f, 0x2a, 0x7c, 0x7d, 0xd1, 0x0b, 0x4f, 0xf2, 0x67, 0x09, - 0x0f, 0x3b, 0xc9, 0x59, 0xd4, 0x49, 0xc2, 0xa3, 0xde, 0xf5, 0xde, 0xf1, 0xf8, 0xfe, 0xff, 0x1a, - 0xdf, 0x7e, 0x38, 0xa6, 0x8b, 0x8e, 0x47, 0x77, 0xbf, 0x55, 0x4d, 0xab, 0x97, 0xb9, 0xb2, 0xd0, - 0x3e, 0xd2, 0xda, 0x3f, 0xbe, 0xef, 0x1b, 0xc1, 0xad, 0xe2, 0x78, 0x8b, 0xc8, 0x6c, 0x0b, 0xf7, - 0x46, 0x2b, 0x60, 0xb0, 0x8d, 0xd1, 0x97, 0x9b, 0x7c, 0x31, 0x29, 0x73, 0x2d, 0x68, 0xa4, 0x99, - 0xd5, 0x84, 0xb6, 0x9f, 0xac, 0xc4, 0x8b, 0x38, 0xed, 0xaf, 0x41, 0xef, 0xeb, 0xd1, 0xf8, 0x5a, - 0x74, 0xbd, 0x3a, 0x2d, 0xaf, 0x4e, 0xbf, 0xab, 0xd2, 0xec, 0xd5, 0x0a, 0xb8, 0xd2, 0x12, 0x2a, - 0x8d, 0xd6, 0x64, 0xcf, 0x0b, 0x1b, 0xf1, 0x64, 0x5b, 0xe6, 0xeb, 0x09, 0x1b, 0x94, 0x8e, 0x16, - 0x96, 0x5a, 0x9d, 0x54, 0xb3, 0x2e, 0xaa, 0x5f, 0x07, 0xd5, 0xae, 0x7b, 0x9a, 0xd5, 0x39, 0xcd, - 0xea, 0x9a, 0x26, 0x75, 0xcc, 0x6a, 0x33, 0x05, 0x5a, 0xda, 0x55, 0x8d, 0x41, 0x9c, 0xb6, 0x83, - 0xf6, 0x78, 0xd6, 0x34, 0xe8, 0x5f, 0x0d, 0x4d, 0x74, 0x0a, 0xe7, 0xef, 0x41, 0x4b, 0x22, 0xcc, - 0x66, 0xc8, 0x56, 0xb9, 0xc4, 0xa1, 0xde, 0x50, 0x83, 0x58, 0x62, 0xad, 0x03, 0x89, 0x79, 0x40, - 0x31, 0x0d, 0x2c, 0x3a, 0x01, 0x46, 0x29, 0xd0, 0x14, 0x6f, 0x52, 0xbd, 0x11, 0xc6, 0x70, 0x08, - 0x56, 0x79, 0xf8, 0x95, 0xaa, 0xc8, 0x2f, 0x36, 0xf1, 0x86, 0x57, 0x45, 0x26, 0xd5, 0x10, 0x0d, - 0x5d, 0x6d, 0xc1, 0x4a, 0x82, 0x20, 0xd5, 0x35, 0x53, 0x27, 0x52, 0xe3, 0x0a, 0x14, 0xab, 0x53, - 0x30, 0x06, 0x30, 0x06, 0x30, 0x06, 0x30, 0x06, 0x55, 0x60, 0x0c, 0x94, 0x28, 0xdb, 0xb9, 0xed, - 0xad, 0x42, 0xdd, 0x2a, 0x3b, 0x64, 0x10, 0x3a, 0x08, 0x1d, 0x84, 0x0e, 0x42, 0xf7, 0xc9, 0xc1, - 0x17, 0x0b, 0x72, 0x9c, 0x01, 0xf3, 0x8f, 0xdb, 0xf5, 0x0f, 0x0e, 0xd6, 0x41, 0xc2, 0x9b, 0x60, - 0xe1, 0x4d, 0xd0, 0xf0, 0x22, 0x78, 0xe8, 0x06, 0x11, 0xe5, 0x60, 0x52, 0xbc, 0x61, 0x8e, 0x33, - 0xe0, 0x38, 0x03, 0xcd, 0x07, 0x67, 0xf6, 0x71, 0x7a, 0x1b, 0xcc, 0x3e, 0x5a, 0xbb, 0xbf, 0x59, - 0xd3, 0x64, 0xf6, 0x71, 0xce, 0x34, 0x39, 0xce, 0xc0, 0x3a, 0x21, 0xb0, 0x5b, 0x15, 0x51, 0xa1, - 0xf2, 0x66, 0xcb, 0x71, 0x06, 0x05, 0x7b, 0xc1, 0x71, 0x06, 0x40, 0x79, 0xa0, 0x3c, 0x50, 0x1e, - 0x28, 0x5f, 0x5b, 0x28, 0xcf, 0x71, 0x06, 0xb5, 0x48, 0x5a, 0x38, 0xce, 0x80, 0x74, 0x81, 0x74, - 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x41, 0x72, 0xbf, 0x73, 0x9c, 0x01, 0xc7, 0x19, 0x18, 0xb8, - 0x16, 0x8e, 0x33, 0x98, 0xde, 0x06, 0x25, 0x08, 0x6b, 0x3f, 0x3c, 0x6b, 0x9a, 0x1c, 0x67, 0x80, - 0x69, 0xfa, 0x92, 0x90, 0xd8, 0xad, 0x4a, 0xe5, 0xa1, 0xbc, 0xd9, 0x72, 0x9c, 0x01, 0xa0, 0x1e, - 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x35, 0xf7, 0x3b, 0xc7, 0x19, 0x80, 0xa7, 0xed, 0x40, - 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, 0x34, 0xc7, 0x19, 0x80, 0xa8, 0x41, 0xd4, 0x95, 0x5c, - 0x89, 0xe3, 0x0c, 0x6c, 0x04, 0x51, 0x66, 0x8e, 0x31, 0xd0, 0x50, 0x47, 0xd1, 0x33, 0xab, 0x1b, - 0x15, 0xb5, 0xfb, 0xc8, 0x44, 0xcd, 0x6f, 0xb4, 0x6c, 0xcd, 0xc7, 0xf4, 0x9b, 0x8c, 0xe9, 0xd7, - 0x87, 0xb2, 0x61, 0x4c, 0x9f, 0x31, 0x7d, 0x67, 0x6f, 0x92, 0x31, 0x7d, 0xc6, 0xf4, 0xeb, 0x17, - 0x14, 0xec, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0x36, - 0x98, 0x9a, 0x31, 0x7d, 0x75, 0xef, 0xce, 0x98, 0xbe, 0xe2, 0x83, 0xc3, 0xe9, 0x4f, 0x6f, 0x03, - 0x4e, 0xdf, 0xda, 0xfd, 0xcd, 0x9a, 0x26, 0x9c, 0xfe, 0x9c, 0x69, 0x32, 0xa6, 0x6f, 0x9d, 0x10, - 0xd8, 0xad, 0x4a, 0xb3, 0x5c, 0x79, 0xb3, 0x65, 0x4c, 0xbf, 0x60, 0x2f, 0x18, 0xd3, 0x07, 0xca, - 0x03, 0xe5, 0x81, 0xf2, 0x40, 0xf9, 0xda, 0x42, 0x79, 0xc6, 0xf4, 0x6b, 0x91, 0xb4, 0x30, 0xa6, - 0x4f, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x20, 0xb9, 0xdf, 0x19, 0xd3, 0x67, - 0x4c, 0xdf, 0xc0, 0xb5, 0x30, 0xa6, 0x3f, 0xbd, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xd6, 0x34, - 0x19, 0xd3, 0xc7, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd3, - 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x4c, 0x1f, 0x3c, - 0x6d, 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd3, 0x07, 0x51, 0x83, 0xa8, - 0x2b, 0xb9, 0x12, 0x63, 0xfa, 0x1e, 0x8c, 0xe9, 0x8f, 0xa7, 0xbf, 0xeb, 0x32, 0xa5, 0xbf, 0x55, - 0x61, 0x7b, 0xd5, 0xb6, 0xd3, 0x4a, 0xd8, 0x67, 0x43, 0x45, 0x77, 0xa1, 0x3f, 0x6c, 0x65, 0x69, - 0x8e, 0xb4, 0x4e, 0xc6, 0x0f, 0x76, 0x94, 0x3f, 0x57, 0x78, 0x9a, 0x3f, 0x4d, 0xf8, 0xfa, 0xa2, - 0x17, 0x9e, 0xe4, 0xcf, 0x10, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, 0xeb, 0xbd, - 0xbf, 0xc6, 0xf7, 0x1d, 0x8e, 0x79, 0xa1, 0xe3, 0xd1, 0x6d, 0x6f, 0x55, 0xd3, 0xcc, 0x05, 0x4d, + 0x6a, 0x14, 0xaf, 0x0a, 0x95, 0xeb, 0x77, 0xb0, 0x93, 0x92, 0x2d, 0xa8, 0x35, 0x27, 0x7b, 0x54, + 0xc8, 0x18, 0x27, 0xdb, 0x29, 0x5f, 0x47, 0xc8, 0x40, 0x64, 0x75, 0x61, 0xc4, 0x6b, 0x64, 0x1a, + 0x35, 0x31, 0xbd, 0x1a, 0x98, 0x56, 0xcd, 0x4b, 0xbd, 0xc6, 0xa5, 0x5e, 0xd3, 0x52, 0xad, 0x61, + 0x85, 0x85, 0x7d, 0xa5, 0x75, 0x5c, 0x6a, 0x71, 0xeb, 0x3a, 0xe9, 0x67, 0xe9, 0x20, 0x89, 0xd2, + 0x6e, 0xdc, 0xcc, 0xd2, 0xeb, 0x24, 0x1a, 0x65, 0x63, 0x03, 0x3d, 0x49, 0xad, 0xf9, 0xb7, 0x20, + 0x2d, 0x92, 0xa3, 0x3b, 0x76, 0xa7, 0x44, 0x92, 0xab, 0xb5, 0x3a, 0x20, 0xeb, 0x15, 0xb4, 0x9b, + 0x37, 0x73, 0xf7, 0x26, 0x6e, 0x5f, 0xd6, 0xfd, 0x0b, 0x87, 0x81, 0xe2, 0x8d, 0xa9, 0xb5, 0x28, + 0x18, 0x8c, 0xc5, 0x29, 0x8d, 0xc3, 0x85, 0xa9, 0x72, 0x19, 0x77, 0xfe, 0x8e, 0xbf, 0x0f, 0xa2, + 0xe6, 0xd5, 0x65, 0x2f, 0xee, 0x27, 0xd1, 0x65, 0xd2, 0x52, 0x8c, 0xcf, 0xb3, 0x6b, 0x13, 0x98, + 0x09, 0xcc, 0x04, 0x66, 0x02, 0x33, 0x81, 0x99, 0xc0, 0xbc, 0xde, 0x81, 0x39, 0xe9, 0xc6, 0x5f, + 0x3a, 0x49, 0x14, 0xa7, 0x17, 0x3d, 0xbd, 0x88, 0x7c, 0x7f, 0x51, 0x42, 0x31, 0xa1, 0x98, 0x50, + 0x4c, 0x28, 0x26, 0x14, 0x13, 0x8a, 0xd7, 0x3c, 0x14, 0x7f, 0xcb, 0x92, 0x7e, 0x37, 0xee, 0x14, + 0x48, 0x75, 0xc4, 0x22, 0xf7, 0xa3, 0x54, 0x11, 0x2b, 0xff, 0xe4, 0x1e, 0xf4, 0x02, 0xf5, 0xad, + 0x7b, 0x22, 0x4e, 0x13, 0xa7, 0x89, 0xd3, 0xc4, 0x69, 0xe2, 0x34, 0x71, 0xda, 0xb3, 0x38, 0x9d, + 0x5e, 0x74, 0xaf, 0xfa, 0x49, 0x14, 0x0f, 0xa2, 0x5e, 0x9c, 0x7d, 0x8d, 0x3a, 0x49, 0xf7, 0x62, + 0xd4, 0x7c, 0xaa, 0x14, 0xa2, 0x1f, 0x5f, 0x1e, 0x18, 0x4d, 0x78, 0x26, 0x3c, 0x13, 0x9e, 0x09, + 0xcf, 0x84, 0x67, 0xc2, 0x73, 0x3f, 0x89, 0xba, 0xc9, 0xb7, 0x2c, 0xfa, 0x7a, 0xd5, 0x8b, 0xd2, + 0x8b, 0x5e, 0x74, 0x99, 0x64, 0xfd, 0xb4, 0xa9, 0x1e, 0xa3, 0x1f, 0xbb, 0x07, 0x02, 0x35, 0x81, + 0x9a, 0x40, 0x4d, 0xa0, 0x26, 0x50, 0x13, 0xa8, 0x03, 0x08, 0xd4, 0x4c, 0x5a, 0x3f, 0xb2, 0x8e, + 0xf1, 0xcc, 0xe9, 0x9c, 0x71, 0x43, 0xd1, 0x43, 0xb6, 0x05, 0xc6, 0x96, 0x45, 0xe6, 0x64, 0x25, + 0x0f, 0xd3, 0x56, 0x39, 0x44, 0x5b, 0x6d, 0x48, 0xaa, 0xce, 0x90, 0x94, 0x3f, 0x19, 0x13, 0x43, + 0x52, 0x6b, 0x1c, 0xb6, 0x18, 0x92, 0x02, 0x10, 0x03, 0x88, 0x01, 0xc4, 0x00, 0x62, 0x00, 0x31, + 0x80, 0xd8, 0x73, 0x40, 0xcc, 0x90, 0x14, 0x81, 0x99, 0xc0, 0x4c, 0x60, 0x26, 0x30, 0x13, 0x98, + 0x09, 0xcc, 0xeb, 0x11, 0x98, 0x19, 0x92, 0x22, 0x14, 0x13, 0x8a, 0x09, 0xc5, 0x84, 0x62, 0x42, + 0x31, 0xa1, 0xd8, 0x36, 0x14, 0x33, 0x24, 0xc5, 0x90, 0x14, 0x71, 0x9a, 0x38, 0x4d, 0x9c, 0x26, + 0x4e, 0x13, 0xa7, 0xbd, 0x8d, 0xd3, 0x0c, 0x49, 0x01, 0xa3, 0x09, 0xcf, 0x84, 0x67, 0xc2, 0x33, + 0xe1, 0x99, 0xf0, 0xec, 0x6b, 0x78, 0x66, 0x48, 0x8a, 0x40, 0x4d, 0xa0, 0x26, 0x50, 0x13, 0xa8, + 0x09, 0xd4, 0x04, 0x6a, 0xbf, 0xae, 0xcc, 0x90, 0x94, 0xc8, 0x90, 0x94, 0xe0, 0xc1, 0xa7, 0x1c, + 0xed, 0xb8, 0x0e, 0x16, 0xe4, 0xd7, 0xf9, 0x8e, 0x1f, 0x6e, 0x6f, 0xf2, 0x6c, 0x72, 0x8f, 0x7f, + 0xe6, 0xb7, 0xb8, 0x06, 0x87, 0x3c, 0x0e, 0xfa, 0x59, 0x12, 0xf5, 0xae, 0x3a, 0x69, 0xf3, 0x7b, + 0x94, 0xf6, 0xae, 0x77, 0xe5, 0x4e, 0x77, 0x9c, 0x59, 0x89, 0x63, 0x1d, 0x39, 0xd6, 0xd1, 0x3c, + 0x9b, 0xe7, 0x58, 0x47, 0xbd, 0x40, 0x27, 0x76, 0xac, 0xe3, 0xd4, 0x01, 0xd9, 0xe2, 0x63, 0xcb, + 0x0a, 0xc7, 0x71, 0x73, 0xc4, 0xa3, 0x4f, 0x94, 0x06, 0xd3, 0xcb, 0x41, 0x52, 0x16, 0x4c, 0x2f, + 0x4f, 0x2d, 0x20, 0x7c, 0xf6, 0xed, 0xcc, 0xb6, 0x14, 0x3d, 0x03, 0x57, 0xc9, 0x51, 0xaa, 0x39, + 0x4c, 0x4d, 0xc7, 0xa9, 0xef, 0x40, 0xb5, 0x1d, 0xa9, 0x99, 0x43, 0x35, 0x73, 0xac, 0x26, 0x0e, + 0x56, 0x9e, 0x12, 0xdc, 0x54, 0xe0, 0x84, 0xa5, 0x1d, 0x6f, 0xb1, 0xd0, 0x65, 0xfc, 0x2d, 0x1a, + 0x5b, 0xa1, 0x82, 0x62, 0xc4, 0xcc, 0x26, 0x9f, 0x5a, 0x5d, 0xc9, 0x18, 0x75, 0x0a, 0x76, 0xea, + 0x4e, 0xda, 0xc2, 0x59, 0xdb, 0x39, 0x6d, 0x2b, 0xe7, 0x6d, 0xee, 0xc4, 0xcd, 0x9d, 0xb9, 0xa9, + 0x53, 0xd7, 0x71, 0xee, 0x4a, 0x4e, 0xbe, 0x78, 0x93, 0x6a, 0x05, 0xc0, 0x99, 0xfd, 0x3a, 0x4c, + 0xbb, 0xd9, 0x4e, 0x5d, 0x73, 0xbf, 0xe6, 0xde, 0xf7, 0xa5, 0xe2, 0x92, 0x1f, 0xe2, 0xee, 0xc5, + 0xed, 0xd3, 0x7e, 0x56, 0xdd, 0x1f, 0xba, 0xfe, 0x68, 0xf4, 0xa0, 0xef, 0xd3, 0xae, 0xba, 0x23, + 0x34, 0x0a, 0xab, 0x33, 0xcb, 0x7f, 0x8a, 0x3b, 0xc3, 0xc4, 0x70, 0xfd, 0xb7, 0xfd, 0x78, 0x54, + 0xa5, 0xf9, 0x23, 0xbd, 0x48, 0xb3, 0xdb, 0x4c, 0x6a, 0x4b, 0xfd, 0x3e, 0x6e, 0x9e, 0x19, 0x98, + 0x5c, 0xfc, 0x6d, 0xed, 0x4d, 0x6e, 0xb7, 0xfe, 0x6a, 0xf7, 0xd5, 0xfe, 0xcb, 0xfa, 0xab, 0xbd, + 0x35, 0xb6, 0xbd, 0x8d, 0x6a, 0xae, 0x76, 0xbe, 0x51, 0x8d, 0xe7, 0x51, 0xf0, 0x0d, 0xb7, 0x79, + 0xf0, 0x75, 0xd2, 0xcd, 0xa2, 0x2c, 0x89, 0xfb, 0xad, 0xab, 0xbf, 0xbb, 0xfa, 0x70, 0x72, 0xe6, + 0x0e, 0x94, 0x12, 0x38, 0xe5, 0x9e, 0x53, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, + 0x9a, 0xf4, 0xb4, 0x3e, 0x74, 0xbf, 0xc2, 0xbd, 0xad, 0xd5, 0x4a, 0x12, 0xfa, 0xc9, 0x20, 0x8b, + 0xfb, 0x59, 0x94, 0xa5, 0x97, 0x49, 0x5f, 0x3f, 0x43, 0x98, 0x5e, 0x9e, 0x30, 0x4d, 0x98, 0x26, + 0x4c, 0x13, 0xa6, 0x09, 0xd3, 0x6a, 0xfb, 0xb5, 0x95, 0x34, 0xd3, 0xcb, 0xb8, 0xb3, 0xbf, 0x6b, + 0x11, 0xa8, 0xeb, 0x8a, 0x6b, 0xce, 0x90, 0x32, 0x75, 0x28, 0x6f, 0xf7, 0x0f, 0xea, 0x03, 0xe5, + 0x5d, 0x87, 0xf2, 0x86, 0xf2, 0xd6, 0x35, 0xb9, 0x1d, 0x4c, 0x0e, 0xa6, 0xdb, 0xed, 0x0f, 0x4c, + 0xf7, 0xe2, 0x66, 0xf8, 0x77, 0xdc, 0xef, 0xa6, 0xdd, 0x8b, 0x28, 0xfb, 0xda, 0x4f, 0x06, 0x5f, + 0xaf, 0x3a, 0xad, 0xa8, 0xd7, 0xcc, 0xf4, 0xc1, 0xec, 0xe3, 0xb7, 0x01, 0xa8, 0x05, 0xd4, 0x02, + 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0xb5, 0xfd, 0xda, 0x4b, 0xfa, 0xcd, 0xa4, 0x9b, 0xc5, 0x17, 0x89, + 0x01, 0xaa, 0xdd, 0x03, 0x57, 0x56, 0x13, 0x57, 0xd2, 0x4a, 0x05, 0xae, 0x5c, 0x33, 0x93, 0xdb, + 0xde, 0x02, 0x59, 0x82, 0x2c, 0x7d, 0x45, 0x96, 0x41, 0x4f, 0x14, 0x29, 0x49, 0x03, 0x15, 0xeb, + 0x19, 0x0b, 0xbc, 0x3c, 0x14, 0xf6, 0x78, 0x71, 0x7f, 0x40, 0x5e, 0xf4, 0x34, 0x75, 0x79, 0x73, + 0x91, 0x14, 0x8f, 0x94, 0x3d, 0x65, 0x7d, 0x26, 0x73, 0x96, 0x3c, 0x6d, 0xfd, 0x61, 0x70, 0x53, + 0x1b, 0xc7, 0xad, 0x33, 0x8e, 0x1b, 0x0e, 0x15, 0xc1, 0x38, 0x2e, 0xe3, 0xb8, 0xbf, 0x7c, 0x63, + 0x8c, 0xe3, 0x56, 0x04, 0x79, 0xc0, 0x23, 0x57, 0xca, 0x79, 0x9b, 0x3b, 0x71, 0x73, 0x67, 0x6e, + 0xea, 0xd4, 0x75, 0xb1, 0x24, 0xe3, 0xb8, 0x62, 0xde, 0x97, 0x71, 0x5c, 0x81, 0x07, 0x85, 0x43, + 0x86, 0x43, 0xd6, 0x36, 0x39, 0x38, 0x64, 0xc6, 0x71, 0xa1, 0x92, 0xbd, 0x7f, 0x1e, 0xc6, 0x71, + 0x45, 0xd1, 0x3a, 0xe3, 0xb8, 0x40, 0x59, 0xa0, 0x2c, 0x50, 0x16, 0x28, 0xcb, 0x38, 0x2e, 0x49, + 0xc2, 0xcf, 0xde, 0x19, 0xe3, 0xb8, 0x84, 0x69, 0xc2, 0x34, 0x61, 0x9a, 0x30, 0xbd, 0x9e, 0x61, + 0x9a, 0x71, 0x5c, 0x8d, 0xc5, 0xa1, 0xbc, 0x15, 0xcd, 0x8a, 0x71, 0x5c, 0x28, 0x6f, 0x65, 0x93, + 0x63, 0x1c, 0x17, 0xa6, 0xdb, 0xf1, 0x0f, 0x4c, 0xf7, 0xe2, 0x66, 0xc8, 0x38, 0x2e, 0xa0, 0x16, + 0x50, 0x0b, 0xa8, 0x05, 0xd4, 0x02, 0x6a, 0x19, 0xc7, 0x05, 0x57, 0x06, 0x1d, 0x5a, 0x49, 0xf2, + 0xc1, 0x95, 0x8c, 0xe3, 0x82, 0x2c, 0x41, 0x96, 0xa6, 0x2b, 0x30, 0x8e, 0xab, 0x38, 0x8e, 0x3b, + 0x9e, 0x02, 0x0d, 0x75, 0x1a, 0x37, 0xa8, 0x13, 0x7d, 0x95, 0xec, 0xce, 0x6b, 0x7b, 0xab, 0x89, + 0xce, 0x4f, 0xf7, 0x87, 0xcd, 0xac, 0x9b, 0x23, 0x91, 0x93, 0xf1, 0x83, 0x1c, 0xe5, 0xcf, 0xd1, + 0x38, 0xcd, 0xef, 0xbe, 0xf1, 0xe6, 0xa2, 0xd7, 0x78, 0x37, 0xba, 0xfb, 0xc6, 0x41, 0x3b, 0x3d, + 0x8b, 0xdb, 0x69, 0xe3, 0xac, 0x9f, 0x25, 0xa7, 0xa3, 0x3b, 0x3e, 0xea, 0x5d, 0xef, 0x36, 0xc6, + 0x84, 0xc7, 0xf1, 0xe8, 0x7e, 0x37, 0xc2, 0xb0, 0x5b, 0xbf, 0x0f, 0xfa, 0x17, 0xb6, 0x7c, 0xdf, + 0x2c, 0x5e, 0xc0, 0xc8, 0x9d, 0x19, 0xb7, 0x5b, 0x83, 0x76, 0x67, 0x76, 0x0e, 0x4d, 0xae, 0xf6, + 0xe0, 0x7b, 0xec, 0x3b, 0x37, 0xba, 0x3b, 0x0d, 0x85, 0x87, 0x2b, 0x39, 0xde, 0x38, 0x32, 0xf2, + 0x09, 0x62, 0x14, 0xb2, 0x24, 0x55, 0x2c, 0x4f, 0x09, 0x4b, 0x53, 0xbf, 0x6a, 0x14, 0xaf, 0x1a, + 0x95, 0xab, 0x42, 0xd9, 0xfa, 0x1d, 0xda, 0xa4, 0xe4, 0x09, 0x6a, 0x53, 0x59, 0x93, 0x98, 0x49, + 0xde, 0x9b, 0x17, 0x91, 0xce, 0xd1, 0x84, 0xb5, 0x60, 0xc4, 0xeb, 0x62, 0x1a, 0x75, 0x30, 0xbd, + 0xba, 0x97, 0x56, 0x9d, 0x4b, 0xbd, 0xae, 0xa5, 0x5e, 0xc7, 0x52, 0xad, 0x5b, 0x85, 0x85, 0x78, + 0xa5, 0xb5, 0x5b, 0x6a, 0xcd, 0xc9, 0x9e, 0x57, 0xd2, 0xcc, 0xca, 0xd7, 0xab, 0x98, 0x68, 0xd6, + 0x16, 0xa2, 0x59, 0xfe, 0x3b, 0x52, 0x33, 0x87, 0x6a, 0xe6, 0x58, 0x4d, 0x1c, 0xac, 0x3c, 0x69, + 0xb9, 0x89, 0x68, 0x96, 0xab, 0x4d, 0x8e, 0x68, 0x56, 0xd0, 0xce, 0xda, 0xce, 0x69, 0x5b, 0x39, + 0x6f, 0x73, 0x27, 0x6e, 0xee, 0xcc, 0x4d, 0x9d, 0xba, 0x8e, 0x73, 0x57, 0x72, 0xf2, 0xc5, 0x9b, + 0x44, 0x34, 0x4b, 0x74, 0x49, 0x3a, 0xbd, 0xaa, 0x17, 0x56, 0x67, 0x96, 0xa7, 0xd3, 0x8b, 0x4e, + 0x2f, 0x23, 0x93, 0x43, 0x34, 0x8b, 0x86, 0x2f, 0xdf, 0x9f, 0x07, 0xd1, 0x2c, 0x51, 0xb4, 0x8e, + 0x68, 0x16, 0x50, 0x16, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x22, 0x9a, 0x45, 0x92, 0xf0, 0xb3, 0x77, + 0x86, 0x68, 0x16, 0x61, 0x9a, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0xaf, 0x67, 0x98, 0x46, 0x34, 0x4b, + 0x63, 0x71, 0x28, 0x6f, 0x45, 0xb3, 0x42, 0x34, 0x0b, 0xca, 0x5b, 0xd9, 0xe4, 0x10, 0xcd, 0x82, + 0xe9, 0x76, 0xfc, 0x03, 0xd3, 0xbd, 0xb8, 0x19, 0x22, 0x9a, 0x05, 0xa8, 0x05, 0xd4, 0x02, 0x6a, + 0x01, 0xb5, 0x80, 0x5a, 0x44, 0xb3, 0xc0, 0x95, 0x41, 0x87, 0x56, 0x92, 0x7c, 0x70, 0x25, 0xa2, + 0x59, 0x20, 0x4b, 0x90, 0xa5, 0xe9, 0x0a, 0x88, 0x66, 0x49, 0x4a, 0xba, 0xec, 0x4f, 0x8b, 0x66, + 0xe5, 0x63, 0xa0, 0xa1, 0xaa, 0x66, 0x89, 0x6a, 0x30, 0xc5, 0x59, 0xa2, 0x37, 0x8f, 0x3b, 0x5e, + 0xae, 0x62, 0xe3, 0xb8, 0x75, 0xc6, 0x71, 0xc3, 0xa1, 0x22, 0x18, 0xc7, 0x65, 0x1c, 0xf7, 0x97, + 0x6f, 0x8c, 0x71, 0xdc, 0x8a, 0x20, 0x0f, 0x78, 0xe4, 0x4a, 0x39, 0x6f, 0x73, 0x27, 0x6e, 0xee, + 0xcc, 0x4d, 0x9d, 0xba, 0x2e, 0x96, 0x64, 0x1c, 0x57, 0xcc, 0xfb, 0x32, 0x8e, 0x2b, 0xf0, 0xa0, + 0x70, 0xc8, 0x70, 0xc8, 0xda, 0x26, 0x07, 0x87, 0xcc, 0x38, 0x2e, 0x54, 0xb2, 0xf7, 0xcf, 0xc3, + 0x38, 0xae, 0x28, 0x5a, 0x67, 0x1c, 0x17, 0x28, 0x0b, 0x94, 0x05, 0xca, 0x02, 0x65, 0x19, 0xc7, + 0x25, 0x49, 0xf8, 0xd9, 0x3b, 0x63, 0x1c, 0x97, 0x30, 0x4d, 0x98, 0x26, 0x4c, 0x13, 0xa6, 0xd7, + 0x33, 0x4c, 0x33, 0x8e, 0xab, 0xb1, 0x38, 0x94, 0xb7, 0xa2, 0x59, 0x31, 0x8e, 0x0b, 0xe5, 0xad, + 0x6c, 0x72, 0x8c, 0xe3, 0xc2, 0x74, 0x3b, 0xfe, 0x81, 0xe9, 0x5e, 0xdc, 0x0c, 0x19, 0xc7, 0x05, + 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x40, 0x2d, 0xe3, 0xb8, 0xe0, 0xca, 0xa0, 0x43, 0x2b, + 0x49, 0x3e, 0xb8, 0x92, 0x71, 0x5c, 0x90, 0x25, 0xc8, 0xd2, 0x74, 0x05, 0xc6, 0x71, 0x15, 0xc7, + 0x71, 0xc7, 0x53, 0xa0, 0xa1, 0x4e, 0xe3, 0x06, 0x75, 0xa2, 0xaf, 0x92, 0xdd, 0x79, 0x6d, 0x6f, + 0x35, 0xd1, 0xf9, 0xe9, 0xfe, 0xb0, 0x99, 0x75, 0x73, 0x24, 0x72, 0x32, 0x7e, 0x90, 0xa3, 0xfc, + 0x39, 0x1a, 0xa7, 0xf9, 0xdd, 0x37, 0xde, 0x5c, 0xf4, 0x1a, 0xef, 0x46, 0x77, 0xdf, 0x38, 0x68, + 0xa7, 0x67, 0x71, 0x3b, 0x6d, 0x9c, 0xf5, 0xb3, 0xe4, 0x74, 0x74, 0xc7, 0x47, 0xbd, 0xeb, 0xfd, + 0xc6, 0x98, 0xf0, 0x38, 0x1e, 0xdd, 0xef, 0x46, 0x18, 0x76, 0xeb, 0xf7, 0x41, 0xff, 0xc2, 0x96, + 0xef, 0x9b, 0xc5, 0x0b, 0x18, 0xb9, 0x33, 0xe3, 0x76, 0x6b, 0xd0, 0xee, 0xcc, 0xce, 0xa1, 0xc9, + 0x09, 0x09, 0x29, 0x88, 0x0a, 0x27, 0x08, 0x09, 0x25, 0x88, 0x09, 0x23, 0x48, 0x92, 0xc2, 0xf2, + 0xe4, 0xaf, 0x34, 0xc9, 0xab, 0x46, 0xe6, 0xaa, 0x91, 0xb6, 0x2a, 0xe4, 0xac, 0xdf, 0x41, 0x4c, + 0x4a, 0x88, 0xa0, 0x36, 0x89, 0x23, 0x51, 0xee, 0xdd, 0x85, 0x6c, 0x72, 0xb2, 0xab, 0xa6, 0x97, + 0x13, 0x32, 0x17, 0x59, 0x16, 0x45, 0xbc, 0x06, 0xa6, 0x51, 0xf3, 0xd2, 0xab, 0x71, 0x69, 0xd5, + 0xb4, 0xd4, 0x6b, 0x58, 0xea, 0x35, 0x2b, 0xd5, 0x1a, 0x55, 0x58, 0xe8, 0x56, 0xbc, 0xe6, 0x54, + 0xec, 0x97, 0xb4, 0x95, 0x74, 0xb3, 0x34, 0xfb, 0xde, 0x4f, 0xda, 0x92, 0x9b, 0x66, 0x92, 0x91, + 0x09, 0x56, 0x95, 0x6a, 0x47, 0xf9, 0xa3, 0xbc, 0x89, 0x07, 0x8a, 0xca, 0x5f, 0x07, 0x6f, 0x8f, + 0x1a, 0x67, 0xb7, 0xff, 0xf5, 0xf1, 0xdf, 0xa7, 0x87, 0xd2, 0x5b, 0x74, 0x44, 0x68, 0x0f, 0x54, + 0x2a, 0x65, 0xca, 0x4d, 0x27, 0x47, 0xa7, 0x9f, 0x76, 0x1b, 0x7f, 0x9d, 0x1c, 0xfd, 0x7e, 0x70, + 0xf6, 0xb1, 0x56, 0x85, 0x6e, 0x1e, 0xe5, 0xf7, 0x77, 0x7c, 0x74, 0xf2, 0xaf, 0xb3, 0x8f, 0x07, + 0x1f, 0x0f, 0x79, 0x79, 0xcb, 0xbf, 0xbc, 0xb3, 0x0f, 0x1f, 0x0f, 0x1b, 0xa7, 0x7f, 0x1e, 0x1f, + 0xfd, 0xfe, 0xef, 0xc6, 0xd1, 0xe9, 0xa7, 0x7d, 0xde, 0xe1, 0x0a, 0x06, 0xb8, 0xf3, 0xe9, 0xf4, + 0x64, 0xf4, 0xf6, 0xd8, 0xc6, 0x25, 0xde, 0x62, 0xfd, 0xf6, 0x2d, 0x7e, 0x3a, 0x3d, 0x3e, 0xe3, + 0xed, 0x95, 0x70, 0x82, 0x8d, 0xb3, 0xd3, 0xb7, 0xbc, 0xc0, 0x32, 0x2f, 0xf0, 0xd3, 0xe9, 0x09, + 0x2f, 0x70, 0xc5, 0x34, 0xe6, 0xed, 0xf1, 0x9f, 0xff, 0x7d, 0x76, 0x7a, 0xf8, 0x3b, 0x2f, 0xb0, + 0x54, 0x18, 0x79, 0xff, 0xd7, 0xf1, 0x47, 0x02, 0xc9, 0x8a, 0xef, 0xf1, 0xd3, 0xe9, 0x09, 0x96, + 0xe8, 0xc6, 0x12, 0x77, 0xb1, 0xc4, 0x92, 0x2e, 0x71, 0xbf, 0x71, 0x7c, 0xf0, 0xe6, 0xf0, 0xf8, + 0xf0, 0x0f, 0x52, 0x43, 0x27, 0xf6, 0xc8, 0x5b, 0x2c, 0x17, 0xa0, 0xb1, 0x46, 0x37, 0xbb, 0x9a, + 0xf7, 0xe7, 0x8a, 0x72, 0xd8, 0xe5, 0x1d, 0xae, 0x0a, 0x96, 0x0f, 0x75, 0xa0, 0x8a, 0xe8, 0x0a, + 0xe7, 0xa1, 0xd5, 0x3d, 0x36, 0x02, 0xb0, 0xce, 0x5a, 0xd2, 0x8d, 0xbf, 0x74, 0x92, 0x96, 0x7c, + 0x15, 0x78, 0xb2, 0x90, 0x50, 0x35, 0x48, 0x49, 0x07, 0x90, 0x3a, 0xf3, 0x12, 0x9f, 0x9c, 0x3a, + 0xf3, 0xca, 0x0b, 0x52, 0x67, 0xf6, 0x25, 0x76, 0x2b, 0xd6, 0x99, 0xe5, 0x75, 0xf4, 0x84, 0x75, + 0xf3, 0xc2, 0x08, 0x79, 0xd9, 0x55, 0x16, 0x77, 0xa2, 0x5e, 0x9c, 0x7d, 0x1d, 0xc8, 0x87, 0xbd, + 0xfb, 0x8b, 0x11, 0x92, 0x08, 0x49, 0x84, 0x24, 0x42, 0x52, 0x40, 0x21, 0x49, 0xfc, 0x94, 0x12, + 0x85, 0x53, 0x49, 0x94, 0x46, 0xe7, 0x15, 0x06, 0xfb, 0x34, 0x47, 0xe3, 0xb5, 0x55, 0x66, 0x94, + 0x47, 0xdf, 0x2d, 0xa6, 0x8e, 0x35, 0xf4, 0x91, 0x34, 0x47, 0xd9, 0xad, 0x4c, 0x44, 0xfb, 0xd4, + 0x0f, 0x13, 0x5b, 0x09, 0x74, 0x42, 0xf6, 0x1c, 0x60, 0x21, 0x7d, 0xa4, 0xe3, 0x43, 0x6c, 0x21, + 0x7b, 0x88, 0x23, 0xf0, 0x02, 0x78, 0x01, 0xbc, 0x00, 0x5e, 0x00, 0x2f, 0x80, 0x17, 0xc0, 0x0b, + 0xe0, 0x05, 0xf0, 0x02, 0x78, 0x01, 0xbc, 0xd0, 0xbd, 0x22, 0xf2, 0x28, 0xcb, 0xc9, 0xa3, 0xb8, + 0x97, 0x98, 0xf2, 0x53, 0x77, 0x64, 0x38, 0x48, 0xa2, 0xcb, 0x61, 0x27, 0x4b, 0x7b, 0x9d, 0x44, + 0xa8, 0xa0, 0x75, 0x97, 0xaa, 0xcd, 0xae, 0x15, 0x98, 0x22, 0xc9, 0x16, 0x8a, 0x24, 0x7a, 0x40, + 0x12, 0x45, 0x92, 0x0a, 0xc6, 0x0d, 0x31, 0x45, 0x92, 0xe6, 0x64, 0x8f, 0x0a, 0x33, 0x66, 0xf9, + 0x3a, 0xb2, 0x4c, 0xd9, 0x36, 0x4c, 0x19, 0x4c, 0x19, 0x4c, 0xd9, 0x3a, 0x30, 0x65, 0x52, 0x0e, + 0xb1, 0x58, 0x40, 0xba, 0x3d, 0x77, 0x66, 0x5f, 0xca, 0xb6, 0xe9, 0xde, 0xbd, 0x38, 0xdd, 0x63, + 0xbb, 0x95, 0xa8, 0x04, 0xb5, 0xa3, 0x52, 0x34, 0x8f, 0x48, 0xd1, 0x3f, 0x1a, 0x45, 0xfb, 0x48, + 0x14, 0xb3, 0xa3, 0x50, 0xcc, 0x8e, 0x40, 0x31, 0x39, 0xfa, 0x24, 0x6c, 0x11, 0x6f, 0xb5, 0x23, + 0x4e, 0x0c, 0x8e, 0xd5, 0x56, 0x3a, 0x4e, 0x1b, 0x5d, 0x6e, 0x15, 0xfa, 0xcd, 0x17, 0x1a, 0x6e, + 0x96, 0x31, 0x7a, 0x91, 0xe3, 0xaf, 0x75, 0x9e, 0xb7, 0xba, 0x75, 0xb5, 0xf2, 0xc3, 0x56, 0x72, + 0x81, 0x1a, 0x94, 0x0b, 0xca, 0x05, 0xe5, 0x82, 0x72, 0x5d, 0x2e, 0x20, 0x4c, 0xff, 0xcd, 0x6c, + 0x4b, 0x51, 0x1a, 0x50, 0xc9, 0x51, 0x82, 0x39, 0xc1, 0x9c, 0x60, 0xce, 0x6a, 0x63, 0x4e, 0x69, + 0xc7, 0x5b, 0x2c, 0x14, 0x77, 0x3a, 0x57, 0x7f, 0xdf, 0x25, 0xeb, 0xf1, 0x40, 0xff, 0x44, 0xe5, + 0xd9, 0x5b, 0x50, 0x32, 0x4b, 0x65, 0x2a, 0xf2, 0x61, 0x78, 0xe0, 0x14, 0xe7, 0x90, 0xc3, 0x86, + 0x55, 0xf8, 0x30, 0x0f, 0x23, 0xe6, 0xe1, 0xc4, 0x34, 0xac, 0xe8, 0x84, 0x17, 0xa5, 0x30, 0x53, + 0xbc, 0x49, 0xbb, 0x53, 0x9c, 0xf5, 0xa8, 0xce, 0x99, 0xec, 0x7c, 0xbb, 0x2a, 0x47, 0x64, 0x2a, + 0xe4, 0xc8, 0x97, 0xf1, 0xb7, 0xf4, 0x72, 0x78, 0x29, 0xac, 0x9d, 0x30, 0xd7, 0x4a, 0xa6, 0x97, + 0xd7, 0x4f, 0x0f, 0xb6, 0x49, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0xf4, 0xf6, + 0xab, 0xf8, 0x88, 0xd8, 0x3c, 0xef, 0xfb, 0x52, 0x71, 0x49, 0x9d, 0x11, 0xb2, 0x87, 0x3f, 0xff, + 0x18, 0x9c, 0xb4, 0xaf, 0x38, 0x62, 0x66, 0x1c, 0x56, 0x67, 0x96, 0x57, 0x1e, 0x41, 0x9b, 0x59, + 0xdf, 0x87, 0x73, 0xf6, 0x9f, 0x19, 0x98, 0x5c, 0xfc, 0x6d, 0xed, 0x4d, 0x4e, 0x7b, 0xa4, 0xcd, + 0x4b, 0xdb, 0xdb, 0xa8, 0xe6, 0x6a, 0xe7, 0x55, 0x01, 0xb0, 0x41, 0x53, 0xf5, 0x4a, 0x3d, 0x3d, + 0xc5, 0x7a, 0xfe, 0xf5, 0xf6, 0x24, 0xb7, 0xbf, 0x21, 0xd9, 0xe0, 0x23, 0x6f, 0x28, 0x82, 0x46, + 0x22, 0x74, 0x46, 0xf8, 0xdc, 0xb4, 0x59, 0xe2, 0xcc, 0xf0, 0x79, 0xd1, 0x4d, 0xad, 0xc2, 0x5d, + 0xa7, 0xc2, 0x1d, 0x0e, 0x0f, 0x41, 0x85, 0x9b, 0x0a, 0xf7, 0x2f, 0xdf, 0x18, 0x15, 0x6e, 0x85, + 0x1b, 0xa0, 0xc2, 0x1d, 0x7c, 0xb8, 0xb0, 0x0b, 0x1b, 0x56, 0xe1, 0xc3, 0x3c, 0x8c, 0x98, 0x87, + 0x13, 0xd3, 0xb0, 0xa2, 0x8b, 0x63, 0xa9, 0x70, 0x0b, 0x66, 0xe7, 0x54, 0xb8, 0x17, 0x7f, 0x67, + 0x54, 0xb8, 0x49, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0x48, 0x0d, 0xb4, 0xf6, 0x2b, 0x15, + 0x6e, 0xb1, 0x1f, 0x2a, 0xdc, 0xaa, 0xcb, 0x53, 0xe1, 0xa6, 0xc2, 0x6d, 0x64, 0x72, 0x54, 0xb8, + 0xa9, 0x70, 0x7b, 0x0f, 0x60, 0xa9, 0x70, 0x2f, 0xb1, 0x9e, 0xa7, 0x15, 0x6e, 0x01, 0x71, 0x59, + 0x3d, 0x3b, 0x41, 0x27, 0x25, 0x1c, 0x4b, 0xab, 0x89, 0x36, 0x23, 0xf4, 0x87, 0xcd, 0xac, 0x9b, + 0x03, 0x90, 0x93, 0xf1, 0x23, 0x1c, 0xe5, 0x4f, 0xd0, 0x38, 0xcd, 0xef, 0xbb, 0xf1, 0xe6, 0xa2, + 0xd7, 0x78, 0x37, 0xba, 0xef, 0xc6, 0x41, 0x3b, 0x3d, 0x8b, 0xdb, 0x69, 0xe3, 0xaf, 0x41, 0xf2, + 0x3e, 0xbf, 0xd7, 0xd3, 0xdb, 0x5b, 0x6d, 0x1c, 0x8a, 0x61, 0xce, 0x30, 0x04, 0x5d, 0x52, 0x15, + 0x41, 0x97, 0x14, 0x41, 0x17, 0x4b, 0xae, 0x0d, 0x41, 0x97, 0xf0, 0xb8, 0x32, 0x04, 0x5d, 0xe6, + 0xbe, 0x19, 0x04, 0x5d, 0x3c, 0x74, 0x94, 0x6a, 0x0e, 0x53, 0xd3, 0x71, 0xea, 0x3b, 0x50, 0x6d, + 0x47, 0x6a, 0xe6, 0x50, 0xcd, 0x1c, 0xab, 0x89, 0x83, 0xad, 0x06, 0x86, 0x56, 0x6b, 0x77, 0xa3, + 0x8e, 0x4d, 0x1d, 0x3b, 0xb0, 0x10, 0x61, 0x17, 0x2a, 0xac, 0x42, 0x86, 0x79, 0xe8, 0x30, 0x0f, + 0x21, 0xa6, 0xa1, 0x44, 0x27, 0xa4, 0x28, 0x85, 0x96, 0xe2, 0x4d, 0x52, 0xc7, 0x16, 0x5d, 0x92, + 0x3a, 0x76, 0xf5, 0xc2, 0xea, 0xcc, 0xf2, 0xd4, 0xb1, 0xa9, 0x63, 0x1b, 0x99, 0x1c, 0x75, 0x6c, + 0xea, 0xd8, 0xbe, 0x3f, 0x0f, 0x75, 0xec, 0x65, 0xd6, 0xf3, 0xaf, 0xba, 0x98, 0x32, 0xa9, 0xfd, + 0xd3, 0x0f, 0xc6, 0xa4, 0x76, 0x69, 0x7e, 0x82, 0x49, 0xed, 0x80, 0x78, 0x08, 0xa8, 0x6b, 0xa8, + 0xeb, 0x5f, 0xbe, 0x31, 0xa8, 0x6b, 0xc9, 0x97, 0x0b, 0x75, 0x1d, 0x72, 0x88, 0xb0, 0x0b, 0x15, + 0x56, 0x21, 0xc3, 0x3c, 0x74, 0x98, 0x87, 0x10, 0xd3, 0x50, 0xa2, 0x8b, 0x5d, 0xa1, 0xae, 0xc5, + 0xbc, 0x2f, 0xd4, 0xb5, 0xc0, 0x83, 0x42, 0x5d, 0x43, 0x5d, 0x6b, 0x9b, 0x1c, 0xd4, 0x35, 0xd4, + 0x35, 0xd4, 0xb5, 0xf7, 0xcf, 0x03, 0x75, 0xbd, 0xcc, 0x7a, 0x9e, 0x52, 0xd7, 0x8c, 0x60, 0x69, + 0x59, 0xde, 0x1a, 0x8f, 0x60, 0xa5, 0xe1, 0x8c, 0x60, 0x1d, 0xad, 0xf9, 0x08, 0x96, 0x6c, 0xc1, + 0x46, 0xa5, 0x50, 0xa3, 0x36, 0x84, 0x55, 0x67, 0x08, 0xcb, 0x1f, 0x36, 0x8d, 0x21, 0xac, 0x35, + 0x0e, 0xad, 0xe2, 0x43, 0x58, 0x49, 0x37, 0xfe, 0xd2, 0x49, 0x5a, 0x7a, 0x95, 0xec, 0xc9, 0x82, + 0xd2, 0x95, 0x28, 0x5d, 0x39, 0x5b, 0x25, 0x78, 0xcd, 0xd8, 0x57, 0x50, 0xae, 0xdb, 0xcc, 0x85, + 0x9b, 0xb9, 0x72, 0x13, 0x97, 0x5e, 0x0d, 0xdc, 0xae, 0x56, 0xd8, 0x30, 0x90, 0x9b, 0x55, 0x92, + 0x99, 0x05, 0x90, 0xaf, 0x3b, 0x20, 0x17, 0x64, 0x7d, 0x04, 0x60, 0xee, 0x86, 0xc7, 0xc6, 0x24, + 0x6d, 0x44, 0xfe, 0x19, 0x4f, 0x4d, 0x84, 0x75, 0x70, 0x45, 0xe0, 0xb8, 0x35, 0x6a, 0x77, 0xa6, + 0xe7, 0xe6, 0x4a, 0x8e, 0x8c, 0xf7, 0x36, 0xd1, 0x1a, 0x9d, 0xa2, 0x91, 0x7f, 0xe5, 0x68, 0xf4, + 0xe6, 0x1d, 0x5d, 0xfb, 0x38, 0x1d, 0x64, 0x07, 0x59, 0xe6, 0x16, 0x90, 0xd5, 0xde, 0xa7, 0xdd, + 0xc3, 0x4e, 0x72, 0x9b, 0x2a, 0x0d, 0x6a, 0xaf, 0x37, 0xbb, 0xc3, 0x4e, 0xe7, 0x99, 0xc3, 0x8b, + 0xc7, 0xdf, 0xe4, 0x2e, 0xfe, 0x67, 0xbf, 0x95, 0xf4, 0x93, 0xd6, 0x9b, 0xef, 0xf9, 0xa5, 0xbd, + 0x32, 0x04, 0x21, 0xef, 0x65, 0xec, 0xb5, 0x1c, 0xba, 0xa8, 0xd5, 0x5d, 0x93, 0x1b, 0x4f, 0x54, + 0xde, 0x6f, 0x94, 0xbb, 0x42, 0x49, 0x43, 0x73, 0x6d, 0x60, 0x36, 0x86, 0x55, 0xee, 0x53, 0xae, + 0xfe, 0x01, 0x4a, 0xbc, 0xfc, 0x91, 0x8c, 0x4f, 0xd2, 0x4a, 0xfa, 0x6e, 0xde, 0xfd, 0x94, 0x3a, + 0xd0, 0xdd, 0x65, 0x4b, 0x1a, 0x87, 0x1b, 0xa2, 0xde, 0x19, 0xdb, 0xe3, 0x92, 0xcd, 0x71, 0xcf, + 0xd6, 0xb8, 0x66, 0x63, 0xc4, 0xd8, 0x16, 0x31, 0x36, 0x45, 0x84, 0x2d, 0xb1, 0x75, 0x8f, 0xae, + 0x88, 0x6b, 0xd7, 0x2a, 0x61, 0x32, 0x6a, 0x60, 0x8e, 0x2b, 0x73, 0xce, 0x69, 0x5e, 0x09, 0x3a, + 0x57, 0x8e, 0xb6, 0x95, 0xa2, 0x67, 0xc5, 0x69, 0x58, 0x71, 0xba, 0x55, 0x94, 0x56, 0xf5, 0x0b, + 0xc9, 0xb9, 0xae, 0x7c, 0xd5, 0xd2, 0x56, 0xd2, 0xcd, 0xd2, 0x76, 0x9a, 0xb8, 0xaf, 0xa8, 0xdd, + 0x29, 0xb0, 0xde, 0xad, 0xe1, 0xf8, 0xc3, 0xcb, 0xd4, 0x97, 0xc4, 0xea, 0x49, 0x92, 0xf5, 0x23, + 0xf9, 0x7a, 0x91, 0x74, 0x7d, 0x48, 0xad, 0x1e, 0xa4, 0x56, 0xff, 0x51, 0xa9, 0xf7, 0xf8, 0xcd, + 0x97, 0x8a, 0xd5, 0x6f, 0xee, 0xce, 0x86, 0x1d, 0x44, 0xdd, 0xe1, 0xe5, 0x17, 0xe7, 0xce, 0x65, + 0x53, 0x76, 0xd6, 0x44, 0x78, 0xa6, 0x44, 0xb0, 0xbe, 0xa1, 0x31, 0x23, 0xa2, 0xd5, 0x39, 0xa0, + 0x34, 0xf3, 0xa1, 0xd9, 0x5f, 0x2f, 0xa9, 0xef, 0xa0, 0x31, 0xab, 0xa1, 0xfd, 0xe9, 0xb5, 0x66, + 0x2f, 0x54, 0x6d, 0x20, 0x90, 0x5a, 0xdf, 0xb9, 0xaf, 0xe5, 0x1b, 0x87, 0xb0, 0xed, 0x32, 0xb9, + 0x0d, 0x4e, 0x12, 0xc7, 0xa6, 0xdf, 0x0d, 0xde, 0x17, 0x4b, 0x90, 0x5f, 0x93, 0x5f, 0x93, 0x5f, + 0x93, 0x5f, 0x93, 0x5f, 0x93, 0x5f, 0x93, 0x5f, 0x93, 0x5f, 0x93, 0x5f, 0x93, 0x5f, 0x7b, 0x1b, + 0xbb, 0x44, 0x5a, 0x87, 0xee, 0xbb, 0x51, 0xb1, 0x2e, 0x9f, 0xfb, 0x1b, 0x56, 0x7e, 0x11, 0x91, + 0x96, 0x22, 0x01, 0xd0, 0x44, 0xab, 0x93, 0xe3, 0x8e, 0x94, 0xa9, 0xee, 0x0b, 0xa7, 0xb2, 0xa3, + 0x0e, 0xfa, 0x8c, 0x1c, 0xb4, 0x38, 0xb8, 0x9d, 0x3e, 0x15, 0x99, 0x36, 0x15, 0xab, 0x61, 0xd7, + 0xa9, 0x61, 0x07, 0x04, 0x6d, 0xa9, 0x61, 0x53, 0xc3, 0xa6, 0x86, 0x0d, 0xc7, 0x06, 0xc7, 0x06, + 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x06, 0xc7, 0x46, 0x0d, 0xdb, + 0x55, 0x08, 0xa4, 0x86, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, + 0x4d, 0x7e, 0x4d, 0x7e, 0x4d, 0x7e, 0x2d, 0x91, 0x5f, 0x53, 0xc3, 0x7e, 0x64, 0xc3, 0x52, 0xc3, + 0x76, 0x7a, 0x25, 0x6a, 0xd8, 0xf3, 0x6a, 0xd8, 0x0e, 0x95, 0xa8, 0x90, 0xca, 0xf0, 0xe4, 0xa3, + 0xd6, 0x9c, 0x74, 0x02, 0x2c, 0x2b, 0xbb, 0xf2, 0xfb, 0xd4, 0x2d, 0x04, 0xaa, 0xd8, 0xe1, 0x60, + 0x84, 0xdf, 0xed, 0xe8, 0x3e, 0x1a, 0x1d, 0x96, 0x6c, 0x07, 0x1a, 0x1d, 0x1e, 0xf8, 0x65, 0x67, + 0x1a, 0x1d, 0x0e, 0xd9, 0xd2, 0x7b, 0x44, 0x86, 0xe3, 0xbe, 0xa6, 0x2d, 0xb4, 0x39, 0x5c, 0x5c, + 0x99, 0xbe, 0x26, 0x4d, 0x07, 0xe1, 0x67, 0xb6, 0xee, 0x9c, 0xc6, 0x14, 0xa5, 0x2f, 0x05, 0x68, + 0x4b, 0x21, 0xba, 0x52, 0x06, 0x57, 0x0b, 0x96, 0x28, 0x44, 0xb9, 0x29, 0x69, 0x3a, 0x52, 0x83, + 0x82, 0xba, 0x91, 0x61, 0x31, 0x82, 0xff, 0xa4, 0xd2, 0x34, 0xa3, 0xca, 0xb7, 0xf5, 0x94, 0xd9, + 0x39, 0xaf, 0x50, 0xdf, 0x7c, 0xff, 0x6a, 0x98, 0x25, 0xfd, 0x28, 0x6d, 0xb9, 0x4f, 0x30, 0xef, + 0x2e, 0x4d, 0x9e, 0x49, 0x9e, 0x49, 0x9e, 0xb9, 0x56, 0x79, 0x66, 0xeb, 0x2a, 0xcb, 0x92, 0x56, + 0xf4, 0xbf, 0xc3, 0xb8, 0x25, 0x90, 0x69, 0x6e, 0xff, 0xe6, 0xf0, 0x9a, 0xa7, 0x71, 0x96, 0x25, + 0xfd, 0xae, 0xf3, 0x64, 0xb3, 0xf6, 0x3f, 0x4f, 0x9e, 0x7c, 0xde, 0x8a, 0x5e, 0x9d, 0xff, 0xf8, + 0xbc, 0x1d, 0xbd, 0x3a, 0x1f, 0xff, 0xe3, 0xf6, 0xe8, 0x7f, 0xc6, 0xff, 0x5c, 0xff, 0xbc, 0x15, + 0xed, 0x4e, 0xfe, 0x79, 0xef, 0xf3, 0x56, 0xb4, 0x77, 0xfe, 0xf4, 0x3f, 0xff, 0x79, 0xfe, 0xf4, + 0x9f, 0x9d, 0x9b, 0xe5, 0x7f, 0xf1, 0xbf, 0x6a, 0xd5, 0x8b, 0x6f, 0x90, 0xea, 0x25, 0x48, 0xf5, + 0xb2, 0xf3, 0x7d, 0x36, 0x54, 0x76, 0x6b, 0x7c, 0xac, 0x58, 0x34, 0x4a, 0x1e, 0xa2, 0x56, 0x3a, + 0x7e, 0x5c, 0x77, 0xd4, 0xf6, 0x9c, 0xeb, 0x43, 0x75, 0xeb, 0x65, 0x20, 0x50, 0xdd, 0x50, 0xdd, + 0xf3, 0x2f, 0x84, 0x1c, 0x35, 0x50, 0x04, 0x28, 0xb2, 0x7e, 0x50, 0xc4, 0xf9, 0x28, 0x6f, 0xf2, + 0xed, 0x36, 0xab, 0x8f, 0x3b, 0xae, 0x53, 0x89, 0xb9, 0xfb, 0x62, 0xde, 0x82, 0x0c, 0x21, 0x30, + 0x84, 0x60, 0xe6, 0xa2, 0xd4, 0x5c, 0x95, 0x8a, 0xcb, 0x72, 0xeb, 0xba, 0x1c, 0xbb, 0x30, 0x39, + 0x56, 0x65, 0xc6, 0xde, 0x87, 0x69, 0x37, 0xfb, 0x4d, 0x70, 0x00, 0x61, 0x8f, 0x01, 0x84, 0xbb, + 0x1b, 0xaf, 0xe2, 0x00, 0xc2, 0x36, 0x03, 0x08, 0x0b, 0x7d, 0xfa, 0x0a, 0x0e, 0x20, 0xd4, 0xf7, + 0x98, 0x3c, 0x50, 0xbf, 0xea, 0x3a, 0x4c, 0xf6, 0xa6, 0x5d, 0xe5, 0x84, 0x7b, 0xde, 0x82, 0x24, + 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, 0xdc, 0x24, + 0xdc, 0x24, 0xdc, 0xde, 0x24, 0xdc, 0x4c, 0x85, 0x3a, 0xee, 0x75, 0x78, 0xbc, 0xa2, 0x8f, 0xc4, + 0xf1, 0xa2, 0xa9, 0x0d, 0x12, 0xc7, 0xbe, 0x62, 0x22, 0xea, 0xa2, 0x26, 0x98, 0x87, 0xba, 0xa8, + 0xdb, 0x7d, 0x41, 0x5d, 0x14, 0x9a, 0x06, 0x9a, 0x06, 0x9a, 0x06, 0x9a, 0x06, 0x9a, 0x06, 0x9a, + 0x06, 0x9a, 0x06, 0x9a, 0x06, 0x9a, 0xc6, 0x7b, 0x9a, 0x86, 0xba, 0x28, 0x09, 0x37, 0x09, 0x37, + 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0x37, 0x09, 0xb7, + 0x60, 0xc2, 0x4d, 0x5d, 0x54, 0xa7, 0x2e, 0x8a, 0x6c, 0xae, 0xd4, 0x57, 0xf6, 0xe0, 0xeb, 0xda, + 0xe8, 0xe7, 0xfe, 0x31, 0xbe, 0x97, 0x0f, 0xb7, 0xb7, 0xf2, 0xc7, 0xe4, 0x4e, 0x42, 0xd4, 0x1e, + 0xf8, 0xde, 0x8d, 0x2f, 0xd3, 0x66, 0xd4, 0x4d, 0xd2, 0x8b, 0xaf, 0x5f, 0xae, 0xfa, 0xd1, 0x18, + 0x08, 0x25, 0x03, 0x87, 0xf2, 0x03, 0x73, 0x97, 0x40, 0x81, 0x40, 0x0f, 0x5c, 0xa3, 0x40, 0x80, + 0x02, 0xc1, 0xd2, 0x6e, 0xc0, 0x7d, 0xe7, 0xcd, 0xbc, 0x85, 0xd0, 0x28, 0xf0, 0x8f, 0x87, 0xa3, + 0x17, 0xc7, 0x84, 0x67, 0xab, 0x78, 0x2f, 0x8e, 0x63, 0xb1, 0x93, 0x99, 0x6d, 0xe0, 0x54, 0xf4, + 0x44, 0xc8, 0xb1, 0x88, 0x39, 0x18, 0x49, 0x47, 0x23, 0xef, 0x70, 0xa4, 0x1d, 0x8f, 0x9a, 0x03, + 0x52, 0x73, 0x44, 0x2a, 0x0e, 0x49, 0x86, 0x99, 0x71, 0x4d, 0xfc, 0xbb, 0x76, 0x54, 0xc5, 0x85, + 0x7b, 0x49, 0xd2, 0x8f, 0x2e, 0xfa, 0x57, 0xc3, 0x9e, 0x9c, 0x41, 0x4e, 0xb6, 0xd4, 0xbd, 0xb5, + 0x9e, 0x05, 0xa9, 0xc5, 0x2c, 0xe5, 0xd0, 0x34, 0x1c, 0x9b, 0x9e, 0x83, 0xd3, 0x72, 0x74, 0xea, + 0x0e, 0x4f, 0xdd, 0xf1, 0xa9, 0x3a, 0x40, 0x19, 0x47, 0x28, 0xe4, 0x10, 0x8b, 0x37, 0x23, 0x56, + 0x11, 0x9d, 0xd9, 0x2f, 0x9d, 0x24, 0x6e, 0xf7, 0x93, 0xb6, 0xe4, 0x86, 0x99, 0xe4, 0x61, 0x2f, + 0x05, 0xd7, 0x38, 0xcd, 0xd9, 0xcc, 0xe7, 0xcf, 0x5f, 0xdc, 0xff, 0xcf, 0x9d, 0x6f, 0x1e, 0xdc, + 0xfb, 0xe7, 0x7c, 0xe8, 0xe6, 0xde, 0x9f, 0x44, 0x23, 0x1e, 0x31, 0x90, 0xda, 0x88, 0xc4, 0x59, + 0x02, 0x3d, 0x59, 0x17, 0x7d, 0x17, 0x2c, 0x45, 0x53, 0x37, 0x02, 0x25, 0x81, 0x92, 0x40, 0x49, + 0xa0, 0x94, 0xd8, 0x2f, 0x69, 0x2f, 0x12, 0xb7, 0xae, 0x22, 0x54, 0xbe, 0x12, 0x5c, 0x23, 0x7f, + 0x65, 0x9f, 0x45, 0x4d, 0x56, 0x76, 0xcb, 0x3f, 0xf8, 0x30, 0xd7, 0xbb, 0x91, 0xca, 0xc6, 0xdf, + 0x14, 0x92, 0xf6, 0xff, 0x59, 0x56, 0x23, 0x22, 0xf9, 0x3f, 0x77, 0x41, 0xd5, 0xa3, 0x00, 0x5e, + 0xe4, 0x8b, 0x3d, 0xfd, 0xf1, 0xe4, 0xf3, 0x76, 0x54, 0x3f, 0x9f, 0xfc, 0x9f, 0x9d, 0xcf, 0x5b, + 0x51, 0xfd, 0xfc, 0xa9, 0xcb, 0xa3, 0x02, 0xe6, 0xfd, 0x9c, 0x8b, 0xae, 0x70, 0xf3, 0xac, 0x42, + 0x7b, 0x6c, 0x9f, 0x3d, 0xe6, 0x74, 0x8f, 0xc5, 0x51, 0xfb, 0x20, 0x7a, 0x7b, 0xfe, 0xcf, 0xf6, + 0xb3, 0xdd, 0x9b, 0xd7, 0x4f, 0xff, 0x79, 0x79, 0xf3, 0xf0, 0x0f, 0x7f, 0x3c, 0xf6, 0xd7, 0xb6, + 0x9f, 0xbd, 0xbc, 0x79, 0x3d, 0xe7, 0xdf, 0xec, 0xdf, 0xbc, 0x5e, 0xf0, 0x1a, 0x7b, 0x37, 0x4f, + 0x66, 0xfe, 0xea, 0xed, 0x9f, 0xd7, 0xe7, 0xfd, 0xc2, 0xee, 0x9c, 0x5f, 0xd8, 0x99, 0xf7, 0x0b, + 0x3b, 0x73, 0x7e, 0x61, 0xee, 0x2d, 0xd5, 0xe7, 0xfc, 0xc2, 0xde, 0xcd, 0x8f, 0x99, 0xbf, 0xff, + 0xe4, 0xf1, 0xbf, 0xba, 0x7f, 0xf3, 0xf4, 0xc7, 0xbc, 0x7f, 0xf7, 0xf2, 0xe6, 0xc7, 0xeb, 0xa7, + 0x4f, 0x5f, 0x3c, 0xd9, 0xbe, 0x75, 0x44, 0xbf, 0x8d, 0x7d, 0xd3, 0xf6, 0xf9, 0x8c, 0xcb, 0x1a, + 0xbb, 0xa0, 0xf0, 0x1d, 0xcf, 0x46, 0x58, 0xf7, 0x7d, 0xb3, 0x66, 0xbc, 0xb7, 0x50, 0xdf, 0x5e, + 0x71, 0x7d, 0xd5, 0x0e, 0xaf, 0x79, 0xad, 0x42, 0xf3, 0xfe, 0x8d, 0x53, 0xc9, 0x13, 0xf7, 0xdf, + 0xdb, 0xe5, 0x48, 0x95, 0x10, 0xab, 0x22, 0xcb, 0xa6, 0x30, 0x30, 0xa5, 0xc9, 0x96, 0x50, 0x37, + 0xf5, 0x92, 0x0d, 0x59, 0xf7, 0x81, 0x29, 0xb9, 0xb2, 0x80, 0x64, 0x39, 0xe0, 0x7e, 0x19, 0x60, + 0xc2, 0xf1, 0x8f, 0x6d, 0x7e, 0x0d, 0x82, 0x8d, 0x5b, 0xdd, 0xad, 0x19, 0x8b, 0x70, 0xa9, 0xbf, + 0x35, 0x63, 0x0b, 0x52, 0xa1, 0xa6, 0x4e, 0xa8, 0x21, 0xd4, 0x10, 0x6a, 0x4a, 0xbc, 0x01, 0x5a, + 0x74, 0x0c, 0x73, 0x66, 0xf1, 0xdc, 0x59, 0xc3, 0xb1, 0xe9, 0x39, 0x38, 0x2d, 0x47, 0xa7, 0xee, + 0xf0, 0xd4, 0x1d, 0x9f, 0xaa, 0x03, 0x94, 0x65, 0xad, 0x68, 0xd1, 0xb1, 0xcd, 0xc9, 0x1f, 0xcb, + 0xcd, 0x69, 0xd1, 0xf1, 0x87, 0x4c, 0xd2, 0x21, 0x95, 0x08, 0x94, 0x04, 0x4a, 0x02, 0x25, 0x81, + 0x52, 0x74, 0xbf, 0xd0, 0xa2, 0xb3, 0xcc, 0x0f, 0x2d, 0x3a, 0x8e, 0xb2, 0x1a, 0x5a, 0x74, 0x24, + 0x7f, 0x68, 0xd1, 0x59, 0x78, 0x8f, 0xd1, 0xa2, 0xe3, 0x76, 0x8f, 0xd1, 0xa2, 0x43, 0x8b, 0x4e, + 0x58, 0x39, 0xdc, 0x26, 0x2d, 0x3a, 0xae, 0xf2, 0xf9, 0xb5, 0x6e, 0xd1, 0x71, 0xa8, 0xbe, 0xe5, + 0xfe, 0x73, 0xfb, 0x25, 0xb6, 0xf0, 0xaf, 0xe4, 0xbb, 0x7b, 0x3d, 0x9d, 0xe3, 0x74, 0x90, 0x1d, + 0x64, 0x99, 0x63, 0x19, 0x87, 0xf7, 0x69, 0xf7, 0xb0, 0x93, 0xdc, 0xa2, 0xd4, 0x41, 0xed, 0xf5, + 0x66, 0x77, 0xd8, 0xe9, 0x38, 0x2c, 0x3f, 0xbf, 0x8f, 0xbf, 0xc9, 0x5d, 0xfc, 0xcf, 0x7e, 0x2b, + 0xe9, 0x27, 0xad, 0x37, 0xdf, 0xf3, 0x4b, 0xa3, 0xc2, 0x67, 0xed, 0x22, 0x6a, 0x4e, 0x3b, 0x17, + 0x96, 0x96, 0x72, 0x1b, 0xdf, 0xd4, 0x49, 0x7e, 0x4f, 0xa7, 0x0e, 0x9b, 0x3c, 0x50, 0x0b, 0xf4, + 0xd0, 0x0a, 0x43, 0x94, 0xe9, 0xbb, 0xe8, 0xc7, 0xcd, 0xa4, 0x3d, 0xec, 0x44, 0xfd, 0x64, 0x90, + 0xc5, 0xfd, 0xcc, 0x9d, 0x3a, 0xdf, 0xcc, 0x95, 0x11, 0xe5, 0xfb, 0xe5, 0x3b, 0x43, 0x94, 0x0f, + 0x51, 0xbe, 0xf9, 0x4f, 0xe4, 0x4c, 0x94, 0xcf, 0xb1, 0x52, 0x96, 0x8c, 0x42, 0x16, 0x92, 0x7b, + 0x48, 0xee, 0x21, 0xb9, 0xe7, 0x14, 0x03, 0xb8, 0x3f, 0xfe, 0xb2, 0x1b, 0x7f, 0xe9, 0x24, 0x2d, + 0xc1, 0xe3, 0x2e, 0xf3, 0x05, 0x18, 0x1e, 0xa1, 0xa3, 0xd7, 0xcc, 0x05, 0xa9, 0xb9, 0x22, 0x15, + 0x97, 0x14, 0x06, 0xb3, 0x29, 0x3f, 0x3c, 0xf2, 0xe5, 0xea, 0xaa, 0x93, 0xc4, 0x5d, 0xc9, 0xe1, + 0x91, 0xed, 0x35, 0x18, 0xe8, 0xf8, 0x9a, 0x74, 0x7a, 0x49, 0x3f, 0xba, 0xea, 0x76, 0xbe, 0xcb, + 0x85, 0x81, 0xfb, 0x8b, 0x10, 0x0a, 0x08, 0x05, 0x84, 0x02, 0x42, 0x01, 0xa1, 0xc0, 0xb7, 0x50, + 0x90, 0x13, 0x7d, 0x51, 0x96, 0x5e, 0x0a, 0x8e, 0xf8, 0x4d, 0xad, 0x42, 0x30, 0x20, 0x18, 0x10, + 0x0c, 0x08, 0x06, 0x0e, 0xed, 0x7d, 0x98, 0x76, 0xb3, 0xed, 0x7d, 0xc1, 0x58, 0xb0, 0xcf, 0x31, + 0x9c, 0x77, 0x37, 0x5e, 0xc5, 0x63, 0x38, 0xb7, 0x38, 0x86, 0x73, 0xa1, 0x4f, 0x5f, 0xc1, 0x63, + 0x38, 0x77, 0xb7, 0x5e, 0xed, 0x73, 0x0e, 0xa7, 0xf6, 0x55, 0xcf, 0xd7, 0x43, 0x38, 0xa3, 0x93, + 0x8c, 0x4f, 0x28, 0x1c, 0x08, 0x67, 0xd8, 0xb3, 0x4b, 0x91, 0x66, 0x93, 0x66, 0x93, 0x66, 0x93, + 0x66, 0x3b, 0xb4, 0xf7, 0x56, 0xd2, 0x4c, 0x2f, 0xe3, 0xce, 0xfe, 0xae, 0x24, 0xeb, 0x52, 0x17, + 0xb8, 0xf6, 0x4c, 0xfc, 0xad, 0x93, 0xcf, 0xdb, 0xe4, 0xf3, 0x75, 0xf2, 0xf9, 0x75, 0xcd, 0xe7, + 0x77, 0xf8, 0xf4, 0x24, 0xf3, 0xca, 0xc9, 0x3c, 0xed, 0xfc, 0x8e, 0x1b, 0xa9, 0x1f, 0x76, 0x08, + 0x3b, 0xd5, 0xdc, 0x75, 0xd0, 0x21, 0xef, 0xe4, 0xfc, 0x77, 0x97, 0x72, 0x87, 0x22, 0x32, 0x87, + 0x62, 0x7d, 0x96, 0x75, 0xfa, 0x2c, 0x03, 0x42, 0x59, 0xf4, 0x59, 0xd2, 0x67, 0x49, 0x9f, 0x25, + 0x44, 0x0f, 0x44, 0x0f, 0x44, 0x8f, 0x53, 0x7b, 0xa7, 0xb9, 0xc6, 0xc9, 0xb3, 0xd2, 0x67, 0x49, + 0x28, 0x20, 0x14, 0x10, 0x0a, 0x08, 0x05, 0x6b, 0x1f, 0x0a, 0xe8, 0xb3, 0x24, 0x18, 0x10, 0x0c, + 0x08, 0x06, 0x61, 0x07, 0x03, 0xfa, 0x2c, 0x67, 0x7e, 0xe8, 0xb3, 0x5c, 0x68, 0x19, 0xea, 0xb2, + 0xcb, 0x7d, 0x7a, 0xfa, 0x2c, 0x7d, 0xff, 0xfa, 0x94, 0x66, 0xbd, 0x49, 0xae, 0xe9, 0xb3, 0x24, + 0xcd, 0x26, 0xcd, 0x26, 0xcd, 0xae, 0x4a, 0x9a, 0x4d, 0x9f, 0x25, 0xf9, 0x7c, 0xc9, 0xcf, 0x4b, + 0x9f, 0xe5, 0xda, 0xe6, 0xf3, 0xf4, 0x59, 0x92, 0xcc, 0x6b, 0x27, 0xf3, 0xf4, 0x59, 0x4a, 0xf7, + 0x59, 0x3a, 0x14, 0x4e, 0x47, 0x88, 0xd8, 0x9f, 0xef, 0x5a, 0x73, 0xd2, 0xb0, 0xba, 0xac, 0xca, + 0xf5, 0xbb, 0xfc, 0x2e, 0x3e, 0xe4, 0x37, 0x11, 0xa0, 0x08, 0xf2, 0x08, 0x82, 0x47, 0x83, 0xa4, + 0x93, 0x8c, 0x82, 0x44, 0x74, 0xd5, 0xbb, 0xfd, 0x9f, 0x81, 0x3b, 0x2d, 0xe4, 0x79, 0x0b, 0x20, + 0x89, 0xac, 0x87, 0xd7, 0x91, 0x44, 0x46, 0x12, 0x79, 0xfe, 0x85, 0x90, 0x44, 0xf6, 0x94, 0xc0, + 0xa3, 0x55, 0x5f, 0x9f, 0xa0, 0xa3, 0x55, 0x7f, 0xf5, 0x0b, 0xc6, 0xad, 0xeb, 0xa4, 0x9f, 0xa5, + 0x83, 0x24, 0x4a, 0xbb, 0xb7, 0x98, 0xf3, 0x7a, 0xc2, 0xf0, 0xcb, 0xd5, 0x11, 0xe6, 0x2f, 0xe9, + 0xd8, 0x2c, 0xfe, 0x48, 0xda, 0xf1, 0xb0, 0x33, 0xb2, 0x8a, 0x76, 0xdc, 0x19, 0x50, 0xaf, 0xa0, + 0x5e, 0x61, 0xe8, 0x06, 0xd5, 0xdc, 0xa1, 0x8a, 0x5b, 0x94, 0x21, 0x7a, 0xe8, 0x11, 0x7d, 0x24, + 0x7b, 0x5a, 0x87, 0x1e, 0xd1, 0xb8, 0xf3, 0x77, 0xfc, 0x7d, 0x10, 0x35, 0xaf, 0x2e, 0x7b, 0x71, + 0x3f, 0x89, 0x2e, 0x25, 0x87, 0xc7, 0x1e, 0x59, 0x8b, 0xc0, 0x43, 0xe0, 0x21, 0xf0, 0x10, 0x78, + 0x08, 0x3c, 0xeb, 0x16, 0x78, 0xc6, 0x93, 0xc4, 0x51, 0x9c, 0x5e, 0xf4, 0xa4, 0xc7, 0x95, 0xc7, + 0x8b, 0x10, 0x6a, 0x08, 0x35, 0x84, 0x1a, 0x42, 0x0d, 0xa1, 0x66, 0xed, 0x42, 0xcd, 0xb7, 0x2c, + 0xe9, 0x77, 0xe3, 0x4e, 0x81, 0x3c, 0x46, 0xac, 0x57, 0x3f, 0x4a, 0x25, 0x85, 0x32, 0xe6, 0xaf, + 0x29, 0x17, 0x88, 0x6e, 0xb7, 0x3b, 0x71, 0x88, 0x38, 0x44, 0x1c, 0x22, 0x0e, 0x11, 0x87, 0xbc, + 0x8b, 0x43, 0xe9, 0x45, 0xf7, 0xaa, 0x9f, 0x44, 0xf1, 0x20, 0xea, 0xc5, 0xd9, 0xd7, 0xa8, 0x93, + 0x74, 0x2f, 0x46, 0xed, 0x3f, 0x42, 0x21, 0xe8, 0xf1, 0xe5, 0x80, 0x41, 0x84, 0x1f, 0xc2, 0x0f, + 0xe1, 0x87, 0xf0, 0xb3, 0xa6, 0xe1, 0xa7, 0x9b, 0x7c, 0xcb, 0xa2, 0xaf, 0x57, 0xbd, 0x28, 0xbd, + 0xe8, 0x45, 0x97, 0x49, 0xd6, 0x4f, 0x9b, 0xe2, 0x31, 0xe8, 0xb1, 0x35, 0x09, 0x44, 0x04, 0x22, + 0x02, 0x11, 0x81, 0x88, 0x40, 0x14, 0x44, 0x20, 0x62, 0xda, 0xc6, 0xf1, 0x54, 0xc6, 0x9c, 0x5e, + 0x7f, 0xc4, 0xcd, 0x17, 0xdd, 0x8d, 0x88, 0x9b, 0xfb, 0x1a, 0xc6, 0xe9, 0x98, 0x36, 0x09, 0xd3, + 0x74, 0x4c, 0xbb, 0xde, 0x19, 0x74, 0x4c, 0x83, 0x5e, 0x40, 0x2f, 0xa0, 0x17, 0xd0, 0x0b, 0x34, + 0x5a, 0x11, 0x86, 0xe8, 0x98, 0x26, 0xf0, 0x10, 0x78, 0x08, 0x3c, 0x04, 0x1e, 0x02, 0x8f, 0x66, + 0xe0, 0xa1, 0x63, 0x9a, 0x50, 0x43, 0xa8, 0x21, 0xd4, 0x10, 0x6a, 0x08, 0x35, 0xd2, 0xa1, 0x86, + 0x8e, 0x69, 0xe2, 0x10, 0x71, 0x88, 0x38, 0x44, 0x1c, 0x22, 0x0e, 0x19, 0xc6, 0x21, 0x3a, 0xa6, + 0x09, 0x3f, 0x84, 0x1f, 0xc2, 0x0f, 0xe1, 0x87, 0xf0, 0x63, 0x17, 0x7e, 0xe8, 0x98, 0x26, 0x10, + 0x11, 0x88, 0x08, 0x44, 0x04, 0x22, 0x02, 0x91, 0xf6, 0x95, 0xe8, 0x98, 0xfe, 0x75, 0xc7, 0x34, + 0xc7, 0x14, 0x48, 0x7d, 0x66, 0x1f, 0x3e, 0xaf, 0xcd, 0x69, 0x05, 0x1f, 0x6e, 0x6f, 0xe6, 0x6c, + 0x72, 0x2f, 0x7f, 0xe6, 0xb7, 0x12, 0xe0, 0x99, 0x05, 0x6e, 0x9a, 0xef, 0x9d, 0x36, 0xdd, 0x3b, + 0x3f, 0x8f, 0xa0, 0xce, 0x79, 0x04, 0x1e, 0x64, 0x72, 0x9c, 0x47, 0xb0, 0x04, 0xf6, 0x72, 0x75, + 0x1e, 0x41, 0x3c, 0x70, 0x3f, 0x58, 0x13, 0x0f, 0x1c, 0x4f, 0xd5, 0x6c, 0x71, 0x0e, 0x81, 0xc7, + 0x10, 0x8f, 0xa9, 0x9a, 0x80, 0xf2, 0x78, 0xe7, 0x90, 0xed, 0xde, 0xae, 0x8f, 0xba, 0xc3, 0xcb, + 0x2f, 0x49, 0xdf, 0xa5, 0xc9, 0xe6, 0x0e, 0xe0, 0xa5, 0xc3, 0x4b, 0xca, 0x1c, 0xc5, 0x29, 0x80, + 0x81, 0x25, 0x8f, 0xde, 0x14, 0x3e, 0x47, 0x5d, 0xfa, 0xbc, 0x45, 0x8d, 0x73, 0x16, 0x05, 0x8e, + 0xd6, 0x14, 0x3d, 0x52, 0x53, 0xeb, 0x93, 0xee, 0xd6, 0x5f, 0xed, 0xbe, 0xda, 0x7f, 0x59, 0x7f, + 0xb5, 0x17, 0xf0, 0xb7, 0xf5, 0x94, 0xf3, 0x39, 0xaf, 0xd0, 0xd4, 0xb6, 0xfb, 0x96, 0xaf, 0xe9, + 0x63, 0xee, 0x1c, 0x76, 0x76, 0x91, 0x67, 0x92, 0x67, 0x92, 0x67, 0x06, 0x92, 0x67, 0xb6, 0xae, + 0xb2, 0x2c, 0x69, 0x45, 0xff, 0x3b, 0x8c, 0x5b, 0x02, 0x99, 0xe6, 0xf6, 0x6f, 0x0e, 0xaf, 0x79, + 0x1a, 0x67, 0x59, 0xd2, 0xef, 0x3a, 0x4f, 0x36, 0x6b, 0xff, 0xf3, 0xe4, 0xc9, 0xe7, 0xad, 0xe8, + 0xd5, 0xf9, 0x8f, 0xcf, 0xdb, 0xd1, 0xab, 0xf3, 0xf1, 0x3f, 0x6e, 0x8f, 0xfe, 0x67, 0xfc, 0xcf, + 0xf5, 0xcf, 0x5b, 0xd1, 0xee, 0xe4, 0x9f, 0xf7, 0x3e, 0x6f, 0x45, 0x7b, 0xe7, 0x4f, 0xff, 0xf3, + 0x9f, 0xe7, 0x4f, 0xff, 0xd9, 0xb9, 0x59, 0xfe, 0x17, 0xff, 0xab, 0x46, 0x7c, 0x7b, 0xe4, 0x1b, + 0x64, 0x57, 0x59, 0xdc, 0x19, 0x35, 0x7a, 0x09, 0x50, 0x28, 0xf7, 0x2f, 0x4e, 0x8c, 0x23, 0xc6, + 0x11, 0xe3, 0xd6, 0x2a, 0xc6, 0x0d, 0xd3, 0x6e, 0xb6, 0x53, 0x87, 0x48, 0x81, 0x48, 0x81, 0x48, + 0x81, 0x48, 0x81, 0x48, 0x21, 0xd1, 0x8c, 0xc6, 0xd9, 0x40, 0x22, 0x97, 0x6b, 0x4e, 0xae, 0x4f, + 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, 0xba, 0x49, + 0xba, 0x19, 0x50, 0xba, 0x49, 0xf3, 0xf0, 0x8a, 0xcd, 0xc3, 0x0e, 0x7a, 0xc0, 0x6d, 0xfa, 0x73, + 0x87, 0x83, 0x24, 0xba, 0x1c, 0x76, 0xb2, 0xb4, 0xd7, 0x49, 0x1c, 0xb1, 0xd1, 0x77, 0x79, 0xc1, + 0xec, 0xb5, 0x3d, 0xeb, 0xdc, 0xdd, 0xa2, 0x73, 0xd7, 0x83, 0x6c, 0x9f, 0xce, 0xdd, 0xc5, 0x9f, + 0xc8, 0x59, 0xe7, 0x6e, 0x73, 0xb2, 0x07, 0x1c, 0xd3, 0x01, 0xf9, 0x75, 0x3d, 0xd7, 0xc5, 0x87, + 0x06, 0x80, 0x06, 0x58, 0x4f, 0x1a, 0xc0, 0xb9, 0x2e, 0xfe, 0x58, 0xb2, 0xb1, 0x25, 0xad, 0x09, + 0x89, 0xf4, 0xb0, 0x8c, 0x0b, 0x93, 0x74, 0x65, 0xf2, 0x2e, 0x4d, 0xda, 0xb5, 0xa9, 0xb9, 0x38, + 0x35, 0x57, 0xa7, 0xe2, 0xf2, 0x84, 0x00, 0x37, 0xf3, 0xe7, 0xb3, 0x99, 0x11, 0xf3, 0xe7, 0x06, + 0xdc, 0x82, 0x09, 0xc7, 0x30, 0x0b, 0xa7, 0x2b, 0x78, 0x58, 0x57, 0xf2, 0xc5, 0xa1, 0xbc, 0xf4, + 0x5d, 0x0a, 0xe1, 0x2e, 0xea, 0x00, 0x49, 0x80, 0x24, 0x40, 0x12, 0xbf, 0x21, 0x89, 0x63, 0x6e, + 0x43, 0x96, 0xe3, 0x10, 0x72, 0x2c, 0x00, 0x06, 0x00, 0x03, 0x80, 0xc1, 0x31, 0x65, 0xe0, 0xd8, + 0x51, 0x15, 0x17, 0x8e, 0x3b, 0x9d, 0xab, 0xbf, 0xef, 0x92, 0xbb, 0x78, 0x20, 0x67, 0x97, 0x77, + 0x67, 0x3b, 0x3d, 0x5c, 0x52, 0xc8, 0x6c, 0x84, 0x79, 0x16, 0x61, 0xbe, 0x45, 0xdc, 0x8d, 0x6a, + 0xb8, 0x53, 0x3d, 0xb7, 0xaa, 0xe5, 0x5e, 0xd5, 0xdd, 0xac, 0xba, 0xbb, 0x55, 0x75, 0xbb, 0x32, + 0xee, 0x57, 0xc8, 0x0d, 0xcb, 0xf3, 0x37, 0x8a, 0x3c, 0x8e, 0x30, 0x9f, 0x23, 0xf7, 0x61, 0x25, + 0xfa, 0xa4, 0x2e, 0xe3, 0x6f, 0xe9, 0xe5, 0xf0, 0xd2, 0xf1, 0x54, 0xdc, 0xdc, 0xaf, 0x3a, 0xbd, + 0x9c, 0x7c, 0xf8, 0xdb, 0x26, 0xf4, 0x11, 0xfa, 0x08, 0x7d, 0x84, 0xbe, 0x90, 0x42, 0x9f, 0xf3, + 0xe6, 0xee, 0x79, 0xde, 0xeb, 0xa5, 0xe0, 0x12, 0x32, 0xcd, 0xdf, 0x0f, 0x7f, 0x64, 0xf7, 0xfb, + 0xa6, 0x74, 0x73, 0xb8, 0x72, 0x58, 0x99, 0x59, 0x4e, 0xb8, 0x79, 0x7c, 0x66, 0x3d, 0x85, 0x86, + 0x63, 0x25, 0x77, 0x30, 0x6d, 0x22, 0xf1, 0xb7, 0xca, 0x9b, 0x88, 0x74, 0x33, 0xba, 0x17, 0xb6, + 0xb2, 0x11, 0xe6, 0xd5, 0xcf, 0x43, 0x01, 0x30, 0x5e, 0x53, 0x8d, 0x42, 0x05, 0xeb, 0xe2, 0xfa, + 0xc6, 0x85, 0xeb, 0xe4, 0xf6, 0x5f, 0xbb, 0xac, 0x5e, 0xbb, 0xff, 0xaa, 0x2e, 0x4f, 0x72, 0x71, + 0xa3, 0x82, 0x3d, 0x37, 0x47, 0x73, 0xa1, 0x8a, 0x3d, 0x97, 0x90, 0x90, 0x2a, 0x47, 0xd5, 0x29, + 0x47, 0xe9, 0x81, 0x46, 0xca, 0x51, 0x15, 0x8c, 0x11, 0x94, 0xa3, 0x56, 0x79, 0x69, 0x94, 0xa3, + 0xac, 0xdd, 0xa9, 0x9e, 0x5b, 0xd5, 0x72, 0xaf, 0xea, 0x6e, 0x56, 0xdd, 0xdd, 0xaa, 0xba, 0x5d, + 0x59, 0x90, 0x42, 0x39, 0x6a, 0x89, 0xec, 0x8f, 0x72, 0x14, 0xe5, 0x28, 0x42, 0x1f, 0xa1, 0x8f, + 0xd0, 0x47, 0xe8, 0xf3, 0x21, 0xf4, 0x51, 0x8e, 0x5a, 0xf8, 0x87, 0x72, 0x54, 0xa9, 0xe5, 0x28, + 0x47, 0xb9, 0x31, 0x11, 0xca, 0x51, 0xd5, 0xb0, 0x15, 0xca, 0x51, 0xb2, 0x00, 0x86, 0x72, 0x94, + 0x71, 0x39, 0xca, 0xe1, 0x39, 0xbe, 0xee, 0x3f, 0x2a, 0xe3, 0xb4, 0x4a, 0x66, 0x50, 0x73, 0x5a, + 0xf6, 0x5b, 0xf6, 0xdc, 0xdf, 0xbf, 0x06, 0xc9, 0xfb, 0xfc, 0x9e, 0x4e, 0x6f, 0x6f, 0xa9, 0x71, + 0xe8, 0x0c, 0x65, 0xf8, 0x31, 0xdf, 0x9b, 0x8a, 0xcc, 0xf7, 0xa6, 0xcc, 0xf7, 0xfa, 0xc9, 0x46, + 0x30, 0xdf, 0x6b, 0xc2, 0x26, 0x30, 0xdf, 0x5b, 0x6a, 0x1b, 0x30, 0xdf, 0x4b, 0x43, 0x85, 0xb5, + 0x03, 0x52, 0x73, 0x44, 0x2a, 0x0e, 0x29, 0x0c, 0x94, 0x23, 0xd6, 0x50, 0x41, 0x25, 0xc9, 0x47, + 0x3e, 0x87, 0x4a, 0x92, 0x57, 0x2e, 0x55, 0xdd, 0xb5, 0xaa, 0xbb, 0x58, 0x55, 0x57, 0x2b, 0x4b, + 0xad, 0x51, 0x49, 0x5a, 0xd8, 0x7b, 0x51, 0x49, 0x5a, 0xe0, 0x41, 0xa8, 0x24, 0xb9, 0x5b, 0x8f, + 0x4a, 0x52, 0xb0, 0x26, 0x42, 0x25, 0xc9, 0xdf, 0xab, 0x53, 0x49, 0x72, 0x92, 0xfa, 0x54, 0xbb, + 0x92, 0x94, 0x32, 0xd8, 0xe4, 0x30, 0x47, 0x63, 0xb0, 0x09, 0x1e, 0xce, 0x13, 0xb0, 0x08, 0x0f, + 0xa7, 0x17, 0x23, 0xe0, 0xe1, 0x96, 0x79, 0x59, 0xf0, 0x70, 0x96, 0x2e, 0x54, 0xcf, 0x95, 0x6a, + 0xb9, 0x54, 0x75, 0xd7, 0xaa, 0xee, 0x62, 0x55, 0x5d, 0xad, 0x2c, 0x30, 0x81, 0x87, 0x5b, 0xd8, + 0x7b, 0xc1, 0xc3, 0x2d, 0x42, 0xb2, 0xc0, 0xc3, 0x05, 0xcd, 0xad, 0xc0, 0xc3, 0x39, 0x31, 0x11, + 0x78, 0x38, 0x7f, 0xaf, 0x0e, 0x0f, 0xe7, 0x24, 0xf5, 0x59, 0x03, 0x1e, 0x8e, 0x8e, 0x6e, 0x6b, + 0x73, 0xf0, 0xc1, 0x0c, 0x3c, 0xeb, 0xe8, 0x3e, 0xaa, 0x58, 0x47, 0xb7, 0x5b, 0x0a, 0x58, 0x84, + 0xfa, 0x15, 0xeb, 0xe9, 0xae, 0xd3, 0xd3, 0x1d, 0x10, 0xdf, 0x40, 0x4f, 0x37, 0xc7, 0xc8, 0x72, + 0x8c, 0xec, 0x03, 0x17, 0x46, 0xd7, 0xb8, 0x82, 0x6b, 0x53, 0x73, 0x71, 0x6a, 0xae, 0x4e, 0xc5, + 0xe5, 0x85, 0x81, 0xa4, 0x38, 0x46, 0x16, 0x94, 0x14, 0x36, 0x4a, 0x72, 0x88, 0x93, 0x1d, 0x60, + 0x92, 0x0d, 0xc3, 0x2f, 0xed, 0xfa, 0x0b, 0x1b, 0x7f, 0xd9, 0x9a, 0x13, 0x7c, 0x57, 0x16, 0xf2, + 0x96, 0xb3, 0xac, 0xd5, 0xed, 0x61, 0xb5, 0xdf, 0x5c, 0xd1, 0x82, 0x5c, 0x59, 0x8e, 0xa6, 0xc5, + 0x94, 0x30, 0x8f, 0xe5, 0xcd, 0x62, 0x35, 0x2b, 0x58, 0xfe, 0x1b, 0xae, 0xf0, 0xfd, 0x6a, 0xdd, + 0x24, 0xbd, 0xf8, 0xfa, 0xe5, 0xaa, 0xbf, 0x7a, 0x4f, 0x48, 0x11, 0xab, 0xef, 0x2e, 0xb5, 0xa2, + 0x1d, 0x95, 0xe3, 0x2a, 0x4a, 0x27, 0xf6, 0x2e, 0x12, 0x78, 0x77, 0x89, 0xba, 0xab, 0x84, 0xdc, + 0x79, 0xe2, 0xed, 0x3c, 0xc1, 0x76, 0x9a, 0x48, 0xeb, 0x7a, 0xbe, 0xb2, 0x5c, 0x40, 0xb1, 0x67, + 0xca, 0x7f, 0xe6, 0x87, 0xbb, 0xb0, 0xec, 0x57, 0x76, 0x43, 0x1c, 0x3a, 0x43, 0xdb, 0x2e, 0xd1, + 0xb5, 0x7b, 0x34, 0xed, 0x1a, 0x3d, 0x8b, 0xa1, 0x65, 0x31, 0x74, 0x2c, 0x82, 0x86, 0x6d, 0x13, + 0x62, 0x57, 0x44, 0x5f, 0x2d, 0x6e, 0xa7, 0xd1, 0x20, 0x6e, 0xa7, 0x03, 0xf7, 0xb5, 0x82, 0xbb, + 0x4b, 0xa3, 0x01, 0xe3, 0x1f, 0xb9, 0x46, 0xbd, 0xc0, 0x84, 0x3c, 0xab, 0x78, 0xbd, 0x60, 0xb2, + 0xe7, 0xe5, 0x0a, 0x06, 0xc5, 0x0a, 0xe8, 0xc0, 0xc0, 0xe8, 0x9b, 0x39, 0x21, 0x35, 0x67, 0xa4, + 0xe2, 0x94, 0xdc, 0x3a, 0x27, 0xc7, 0x4e, 0x4a, 0xcc, 0x59, 0xdd, 0x39, 0xad, 0x56, 0x4b, 0x6b, + 0xf6, 0xe4, 0x6e, 0x29, 0xd9, 0x99, 0x90, 0x6d, 0x66, 0x42, 0x0c, 0xdd, 0x9b, 0x96, 0x9b, 0x53, + 0x77, 0x77, 0xea, 0x6e, 0x4f, 0xd5, 0xfd, 0xc9, 0xb8, 0x41, 0x21, 0x77, 0x28, 0xee, 0x16, 0x8b, + 0x05, 0x84, 0x74, 0xfd, 0xe6, 0x6e, 0x4b, 0x11, 0x9d, 0x3f, 0x65, 0x47, 0xa9, 0xe6, 0x30, 0x35, + 0x1d, 0xa7, 0xbe, 0x03, 0xd5, 0x76, 0xa4, 0x66, 0x0e, 0xd5, 0xcc, 0xb1, 0x9a, 0x38, 0x58, 0x59, + 0x47, 0x2b, 0xec, 0x70, 0xd5, 0x1c, 0x6f, 0xb1, 0x50, 0xd2, 0x49, 0x2f, 0xd2, 0x2f, 0x9d, 0x24, + 0x1a, 0x9b, 0x62, 0xd4, 0xbb, 0xea, 0xa4, 0xcd, 0xef, 0x7a, 0x9b, 0xa1, 0xe8, 0xd5, 0x7b, 0xfc, + 0x3e, 0x9e, 0x55, 0x72, 0xe6, 0x48, 0xcb, 0x71, 0x5b, 0x38, 0x70, 0x3b, 0x47, 0x6e, 0xe5, 0xd0, + 0xcd, 0x1d, 0xbb, 0xb9, 0x83, 0x37, 0x75, 0xf4, 0x3a, 0x0e, 0x5f, 0xc9, 0xf1, 0x17, 0x6f, 0x52, + 0x7c, 0x1a, 0x7b, 0xee, 0x7e, 0xed, 0x24, 0x71, 0xbb, 0x9f, 0xb4, 0x35, 0x37, 0xec, 0x24, 0x5f, + 0x7e, 0xa9, 0xb8, 0xe6, 0x69, 0xd1, 0x6e, 0xd3, 0x8c, 0xfa, 0xbd, 0xab, 0xce, 0xeb, 0xfe, 0xd5, + 0x30, 0x4b, 0xbb, 0x17, 0x79, 0xe4, 0x29, 0xfe, 0x78, 0xfc, 0x7f, 0xa3, 0x56, 0xd2, 0x4e, 0xbb, + 0x69, 0x96, 0x5e, 0x75, 0x07, 0xf3, 0xff, 0x55, 0xf1, 0x6f, 0x46, 0x4d, 0x32, 0x1b, 0xd5, 0xb0, + 0x7a, 0x8d, 0x01, 0xe3, 0x7e, 0xd2, 0x4c, 0xd2, 0xeb, 0x44, 0x3f, 0xed, 0x98, 0x2c, 0xac, 0xb4, + 0xab, 0x95, 0x8e, 0xa2, 0x26, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x21, 0xbf, 0x79, 0x64, + 0xbf, 0xca, 0x1f, 0xa5, 0x3d, 0x37, 0xbf, 0xd9, 0x26, 0x25, 0x58, 0xf8, 0x9d, 0x0d, 0x92, 0x6e, + 0x4b, 0x3f, 0x1f, 0x18, 0xad, 0x4a, 0x32, 0x40, 0x32, 0x40, 0x32, 0x40, 0x32, 0x40, 0x32, 0x40, + 0x32, 0x40, 0x32, 0xe0, 0x4b, 0x32, 0x10, 0x5d, 0x6a, 0xaa, 0x90, 0xdd, 0x4f, 0x08, 0x46, 0x2b, + 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x59, 0x6d, 0xbf, 0x0e, 0xd3, 0x6e, 0xf6, + 0x9b, 0x41, 0x68, 0xde, 0x53, 0x5c, 0x52, 0x47, 0x46, 0xf6, 0xe1, 0x8f, 0xae, 0x3b, 0xda, 0xd4, + 0x96, 0x99, 0x35, 0x8e, 0xaa, 0x33, 0xcb, 0x2b, 0xcb, 0xd0, 0xce, 0xac, 0x6f, 0x20, 0x35, 0x6a, + 0xe4, 0xad, 0xa6, 0x4d, 0x2e, 0xfe, 0xb6, 0xf6, 0x26, 0x57, 0xdf, 0xdb, 0x5b, 0x63, 0xa3, 0xdb, + 0xa8, 0xe6, 0x6a, 0xe7, 0x55, 0x81, 0x8e, 0x41, 0xf7, 0xe8, 0x09, 0xeb, 0xe9, 0xce, 0x82, 0x60, + 0x0d, 0x99, 0x90, 0x42, 0xcc, 0xa2, 0xf8, 0xa7, 0x17, 0xc5, 0xac, 0x6d, 0xf1, 0x4f, 0x2f, 0x8a, + 0x51, 0x13, 0x91, 0x83, 0xaf, 0xf4, 0xcc, 0x44, 0xd0, 0x44, 0x84, 0x0e, 0xca, 0x9a, 0x4f, 0x54, + 0x08, 0x1c, 0x9c, 0x35, 0x2f, 0xa8, 0xa9, 0x35, 0xb6, 0xd7, 0x69, 0x6c, 0x0f, 0x87, 0x7d, 0xa0, + 0xb1, 0x9d, 0xc6, 0xf6, 0x5f, 0xbe, 0x31, 0x1a, 0xdb, 0x69, 0x6c, 0x0f, 0xd3, 0x81, 0xdb, 0x39, + 0x72, 0x2b, 0x87, 0x6e, 0xee, 0xd8, 0xcd, 0x1d, 0xbc, 0xa9, 0xa3, 0xd7, 0xc5, 0x95, 0x34, 0xb6, + 0x0b, 0xe6, 0xcb, 0x34, 0xb6, 0xfb, 0xc8, 0x3e, 0xd0, 0xd8, 0xee, 0x2e, 0xad, 0xa3, 0x97, 0x8d, + 0xfc, 0x86, 0xfc, 0x86, 0xfc, 0x86, 0xfc, 0x86, 0x5e, 0x36, 0x52, 0x82, 0x9f, 0xbd, 0x33, 0x1a, + 0xdb, 0x49, 0x06, 0x48, 0x06, 0x48, 0x06, 0x48, 0x06, 0x48, 0x06, 0x48, 0x06, 0x48, 0x06, 0x68, + 0x6c, 0x27, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0xe7, 0xb5, 0x09, 0xce, 0x34, 0xb6, 0x4b, 0xfd, + 0xd0, 0xd8, 0xae, 0xba, 0x3c, 0x8d, 0xed, 0x34, 0xb6, 0x1b, 0x99, 0x1c, 0x8d, 0xed, 0x15, 0x5c, + 0x8d, 0xc6, 0x76, 0x0f, 0x5c, 0x0e, 0x8d, 0xed, 0x8e, 0x4f, 0xc8, 0xd5, 0xb7, 0x92, 0xb0, 0x54, + 0xe6, 0x95, 0xec, 0xcd, 0x4b, 0x3b, 0xab, 0x89, 0x4e, 0x20, 0x2c, 0x7c, 0x60, 0xeb, 0x49, 0x7e, + 0xaf, 0x8d, 0x83, 0x76, 0x7a, 0x16, 0xb7, 0xd3, 0xc6, 0x41, 0xab, 0xe5, 0xe0, 0x24, 0x5f, 0x3d, + 0xfb, 0x14, 0xb0, 0xcd, 0xe2, 0x38, 0xa8, 0x28, 0x7f, 0x85, 0xd2, 0xe7, 0xb7, 0x4c, 0x2d, 0x27, + 0x7b, 0x86, 0xcb, 0x16, 0x67, 0xb8, 0x78, 0x40, 0xab, 0x71, 0x86, 0x4b, 0x90, 0xb4, 0x58, 0x58, + 0xd1, 0x55, 0x9c, 0xe6, 0x52, 0x6c, 0xb0, 0xd5, 0x68, 0xa8, 0x2d, 0x1a, 0x68, 0x9f, 0x3f, 0xcf, + 0xa7, 0x1b, 0x5f, 0x4c, 0x7b, 0xe6, 0x75, 0x8e, 0x88, 0xbd, 0x5e, 0xe7, 0xbb, 0xf4, 0x28, 0xcd, + 0x5d, 0x40, 0xbc, 0xbf, 0x1a, 0x67, 0x9a, 0xf9, 0x10, 0x0f, 0xfb, 0xbd, 0xab, 0x0e, 0x01, 0x31, + 0xc0, 0x80, 0x38, 0xfa, 0x70, 0x44, 0xc4, 0x4d, 0x4e, 0x35, 0xf3, 0xd4, 0x55, 0xaa, 0xb9, 0x4c, + 0x4d, 0xd7, 0x69, 0xe0, 0x42, 0xb5, 0x5d, 0xa9, 0x99, 0x4b, 0x35, 0x73, 0xad, 0x36, 0x2e, 0x56, + 0xd6, 0xd5, 0x0a, 0xbb, 0x5c, 0x35, 0xd7, 0x5b, 0x2c, 0xd4, 0x1a, 0xf7, 0x20, 0x47, 0xc9, 0xb7, + 0xde, 0x55, 0x3f, 0x33, 0x9b, 0xfe, 0x7e, 0xfc, 0x36, 0xf4, 0xfb, 0xb0, 0x3f, 0x1c, 0xfe, 0x3f, + 0x87, 0xbf, 0x7f, 0x6c, 0x7c, 0xf8, 0xf3, 0xaf, 0x8f, 0x87, 0x74, 0x7c, 0x05, 0x17, 0x3f, 0x0c, + 0xe3, 0x88, 0x55, 0x3c, 0x31, 0x8f, 0x2b, 0xe6, 0xf1, 0xc5, 0x36, 0xce, 0xe8, 0xc4, 0x1b, 0xa5, + 0xb8, 0xa3, 0x47, 0x86, 0xfd, 0x32, 0x12, 0xe4, 0xb3, 0xd5, 0xd9, 0xed, 0x8d, 0x18, 0x34, 0x67, + 0xef, 0x2a, 0xae, 0x79, 0xd8, 0x1d, 0x5e, 0xde, 0xbe, 0xec, 0x1b, 0x1a, 0xc2, 0x97, 0xce, 0x5b, + 0xd2, 0x4b, 0x2f, 0xf2, 0x96, 0xe9, 0xdb, 0x20, 0x6f, 0x21, 0x6f, 0x21, 0x6f, 0x21, 0x6f, 0x21, + 0x6f, 0x21, 0x6f, 0x21, 0x6f, 0x21, 0x6f, 0xb9, 0xf7, 0xce, 0x8c, 0x79, 0x16, 0x13, 0x7e, 0x85, + 0x44, 0x81, 0x44, 0x81, 0x44, 0x81, 0x44, 0x81, 0x44, 0x01, 0x79, 0xbd, 0xe0, 0xe4, 0xf5, 0x94, + 0xec, 0xf1, 0x38, 0x1d, 0x64, 0x07, 0x59, 0xd6, 0xd7, 0xb5, 0xc9, 0xf7, 0x69, 0xf7, 0xb0, 0x93, + 0xdc, 0xba, 0x94, 0x41, 0xed, 0xf5, 0x66, 0x77, 0xd8, 0xe9, 0x28, 0x5a, 0xc8, 0xfb, 0xf8, 0x9b, + 0xdd, 0xe2, 0x7f, 0xf6, 0x5b, 0x49, 0x3f, 0x69, 0xbd, 0xf9, 0xae, 0x1f, 0xc7, 0x8a, 0xe9, 0xd6, + 0x41, 0xd2, 0xd7, 0x0e, 0x61, 0x46, 0xb1, 0xfb, 0x61, 0xfc, 0xbe, 0x1a, 0xbf, 0xfd, 0xe8, 0xcb, + 0xf7, 0x9a, 0xc1, 0x58, 0xa0, 0x75, 0x1c, 0x9f, 0x89, 0xe5, 0x23, 0x4b, 0xa8, 0xe8, 0xa8, 0x1a, + 0xe0, 0x70, 0x71, 0x9b, 0x30, 0x26, 0xb3, 0x4d, 0x48, 0x6c, 0xc0, 0x21, 0xe0, 0x10, 0x70, 0x08, + 0x38, 0x04, 0x1c, 0x02, 0x0e, 0x01, 0x87, 0x80, 0x43, 0xc0, 0x21, 0xe0, 0x10, 0x70, 0x08, 0x38, + 0x0c, 0x0b, 0x1c, 0xa2, 0x63, 0xb2, 0xc4, 0x7a, 0x3e, 0xe9, 0x4b, 0xdc, 0x1b, 0x9d, 0xe4, 0x8c, + 0xce, 0xf9, 0x5f, 0x8c, 0x33, 0x3a, 0x4b, 0x13, 0x0e, 0x75, 0xc6, 0xb4, 0x02, 0x4a, 0x4e, 0x18, + 0xd3, 0x62, 0x4c, 0xeb, 0xd7, 0xaf, 0x8c, 0x31, 0x2d, 0xda, 0x9d, 0xa5, 0xe3, 0x06, 0x44, 0x75, + 0x95, 0xc0, 0x2e, 0x44, 0x35, 0x44, 0xb5, 0xbb, 0x57, 0x49, 0xbb, 0x33, 0xed, 0xce, 0x3e, 0x1b, + 0x29, 0x63, 0x5a, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, 0x2d, 0xe4, + 0x2d, 0xc1, 0xe4, 0x2d, 0x8c, 0x69, 0x91, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0xac, 0x6b, + 0xa2, 0x40, 0x27, 0x1e, 0x9d, 0x78, 0xb3, 0xaf, 0x8b, 0x4e, 0x3c, 0x3a, 0xf1, 0xaa, 0x1b, 0xbb, + 0x37, 0xe9, 0xc4, 0xfb, 0x59, 0x2c, 0xa7, 0x13, 0x0f, 0x70, 0xc8, 0x98, 0x16, 0xe0, 0x10, 0x70, + 0x08, 0x38, 0x04, 0x1c, 0x02, 0x0e, 0x01, 0x87, 0x80, 0x43, 0xc0, 0x21, 0xe0, 0x10, 0x70, 0x08, + 0x38, 0x04, 0x1c, 0x86, 0x00, 0x0e, 0x19, 0xd3, 0x5a, 0x62, 0x3d, 0x5f, 0xc7, 0xb4, 0x38, 0x71, + 0x5a, 0xcb, 0xf4, 0xd6, 0xf2, 0xc4, 0x69, 0xf9, 0xc3, 0x14, 0x37, 0x4b, 0x1f, 0x3a, 0x7d, 0x7b, + 0x8f, 0xa7, 0xe3, 0x5b, 0x5c, 0xe3, 0x53, 0x36, 0x85, 0x8f, 0x8f, 0xd3, 0x39, 0x36, 0x8e, 0x93, + 0x35, 0x97, 0x63, 0xca, 0x38, 0x69, 0x3a, 0x8c, 0x84, 0x99, 0x93, 0xa6, 0xe7, 0xbe, 0x19, 0xf1, + 0x73, 0x35, 0x75, 0x0e, 0xe4, 0x9f, 0xd9, 0x9d, 0x1a, 0x07, 0xf3, 0x3f, 0x74, 0x9b, 0x5b, 0x9c, + 0xb2, 0xe9, 0xb1, 0x3b, 0xb5, 0xe2, 0x2c, 0x98, 0xde, 0x16, 0x75, 0xb7, 0xd5, 0xc0, 0xd3, 0x6a, + 0xe5, 0x83, 0xbb, 0xca, 0x6d, 0x2b, 0xe9, 0x66, 0x69, 0xf6, 0x5d, 0xa7, 0x74, 0x50, 0x64, 0x96, + 0x7b, 0x0a, 0x6b, 0x1d, 0xe5, 0x8f, 0xf6, 0x26, 0x1e, 0x24, 0xfa, 0x25, 0xf1, 0x83, 0xb7, 0x47, + 0x8d, 0xb3, 0xdb, 0xff, 0xfa, 0xf8, 0xef, 0x53, 0xb5, 0xc1, 0xaa, 0x4f, 0x71, 0x67, 0x98, 0x0c, + 0x6a, 0xaf, 0x37, 0x3f, 0xab, 0x11, 0x71, 0x46, 0x2c, 0xf7, 0xd1, 0xe9, 0xa7, 0xdd, 0xc6, 0x5f, + 0x27, 0x47, 0xbf, 0x1f, 0x9c, 0x7d, 0x54, 0x2c, 0x56, 0x3e, 0xab, 0xfa, 0x7b, 0x3d, 0x3e, 0x3a, + 0xf9, 0xd7, 0xd9, 0xc7, 0x83, 0x8f, 0x87, 0xbc, 0x54, 0x77, 0x2f, 0xf5, 0xec, 0xc3, 0xc7, 0xc3, + 0xc6, 0xe9, 0x9f, 0xc7, 0x47, 0xbf, 0xff, 0xbb, 0x71, 0x74, 0xfa, 0x69, 0x9f, 0x77, 0xeb, 0xd0, + 0x60, 0x77, 0x3e, 0x9d, 0x9e, 0x8c, 0xde, 0x2a, 0xee, 0x40, 0xe0, 0xed, 0xd6, 0x6f, 0xdf, 0xee, + 0xa7, 0xd3, 0xe3, 0x33, 0xde, 0xaa, 0x80, 0x93, 0x6d, 0x9c, 0x9d, 0xbe, 0xe5, 0xc5, 0x4a, 0xbc, + 0xd8, 0x4f, 0xa7, 0x27, 0xbc, 0x58, 0xc7, 0xe9, 0xd6, 0xdb, 0xe3, 0x3f, 0xff, 0xfb, 0xec, 0xf4, + 0xf0, 0x77, 0x5e, 0xac, 0x48, 0xf8, 0x7a, 0xff, 0xd7, 0xf1, 0x47, 0x02, 0x98, 0xe3, 0xf7, 0xfb, + 0xe9, 0xf4, 0x04, 0xcb, 0x95, 0xb5, 0xdc, 0x5d, 0x2c, 0x57, 0xc8, 0xe5, 0xee, 0x37, 0x8e, 0x0f, + 0xde, 0x1c, 0x1e, 0x1f, 0xfe, 0x41, 0x6a, 0x2b, 0x6a, 0xbf, 0xbc, 0x5d, 0x99, 0x84, 0x01, 0xeb, + 0x95, 0xf5, 0x0e, 0xbc, 0x57, 0x69, 0xaa, 0x66, 0x97, 0x77, 0xeb, 0x9a, 0x4c, 0x38, 0xd4, 0x85, + 0x66, 0x2a, 0x2b, 0x9d, 0x87, 0x5e, 0xd7, 0x0a, 0x52, 0x02, 0x3e, 0xe9, 0xc6, 0x5f, 0x3a, 0x49, + 0x4b, 0xaf, 0x9b, 0x60, 0xb2, 0xa0, 0xb4, 0x84, 0xf3, 0x9d, 0x3a, 0x5f, 0x3b, 0xee, 0x0c, 0xe8, + 0x5b, 0x58, 0x72, 0x21, 0xfa, 0x16, 0x9c, 0x5a, 0x07, 0x7d, 0x0b, 0xf4, 0x2d, 0xfc, 0xe2, 0x8d, + 0xe9, 0xf7, 0x2d, 0x7c, 0xb9, 0xba, 0xea, 0x24, 0x71, 0x57, 0xb3, 0x67, 0x61, 0x9b, 0xfe, 0x7e, + 0x79, 0x93, 0x5a, 0xc7, 0xfe, 0x7e, 0xc9, 0x43, 0x7e, 0xc2, 0x68, 0x9b, 0xbf, 0xe8, 0xc7, 0xcd, + 0xa4, 0x3d, 0xec, 0x44, 0xfd, 0x64, 0x90, 0xc5, 0xfd, 0x4c, 0xbe, 0x81, 0x7e, 0x66, 0x45, 0x5a, + 0xe9, 0xad, 0x72, 0x29, 0x5a, 0xe9, 0xc3, 0xcb, 0x95, 0x68, 0xa5, 0x9f, 0x8f, 0xde, 0xa4, 0x5b, + 0xe9, 0x85, 0x67, 0x8c, 0x66, 0xb6, 0xa5, 0xe8, 0xac, 0x91, 0x92, 0xa3, 0x04, 0x84, 0x02, 0x42, + 0x01, 0xa1, 0xd5, 0x06, 0xa1, 0x6a, 0x27, 0x9f, 0x69, 0xf1, 0x8e, 0x33, 0xfb, 0x5b, 0x87, 0x7f, + 0xbc, 0x7b, 0xa1, 0xba, 0x3c, 0xe4, 0xc3, 0x50, 0x80, 0xb0, 0x5b, 0xc8, 0x21, 0xc2, 0x2a, 0x54, + 0x98, 0x87, 0x0c, 0xf3, 0xd0, 0x61, 0x1a, 0x42, 0x74, 0x42, 0x89, 0x52, 0x48, 0x29, 0xde, 0xa4, + 0x9d, 0xac, 0x9b, 0x1e, 0xcf, 0x39, 0x93, 0x89, 0x6f, 0x23, 0xb1, 0xe3, 0x41, 0x56, 0xb3, 0xc6, + 0x12, 0x3b, 0x0f, 0x39, 0x3a, 0x4e, 0x43, 0x9f, 0xff, 0xd5, 0x38, 0x0d, 0xbd, 0x74, 0xfa, 0x57, + 0x87, 0x11, 0x80, 0x11, 0x80, 0x11, 0x80, 0x11, 0x58, 0x7e, 0xa1, 0xb8, 0x75, 0x9d, 0xf4, 0xb3, + 0x74, 0x60, 0x41, 0x0a, 0xdc, 0x5b, 0x1b, 0x7c, 0x0e, 0x3e, 0x07, 0x9f, 0x83, 0xcf, 0xc1, 0xe7, + 0xe0, 0xf3, 0x80, 0xf0, 0xf9, 0x33, 0x28, 0x7b, 0x67, 0x19, 0x0f, 0x94, 0x3d, 0x29, 0x01, 0x29, + 0x01, 0x29, 0x01, 0x29, 0x01, 0x29, 0x01, 0x29, 0xc1, 0xcf, 0xde, 0x59, 0x3f, 0x69, 0x26, 0xe9, + 0xb5, 0x45, 0x4e, 0x50, 0xac, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, + 0x73, 0x40, 0xc1, 0x99, 0x7a, 0xfa, 0x12, 0xeb, 0xf9, 0x5c, 0x4f, 0xe7, 0xd8, 0x1a, 0x2d, 0xf3, + 0x5b, 0xc7, 0xb1, 0x36, 0xa5, 0x11, 0xab, 0xcd, 0xb2, 0x47, 0xd7, 0xbc, 0xcb, 0xef, 0xf3, 0x43, + 0x7e, 0x9b, 0x6b, 0x3c, 0x87, 0x97, 0xf6, 0xae, 0x77, 0xa3, 0x4e, 0xfc, 0x25, 0xe9, 0x24, 0xad, + 0x68, 0xd8, 0x4d, 0x9b, 0xf1, 0x40, 0x61, 0x16, 0xef, 0xd1, 0x55, 0x99, 0xc7, 0xb3, 0xc2, 0x3a, + 0xcc, 0xe3, 0x85, 0x87, 0x55, 0x98, 0xc7, 0x9b, 0xfb, 0x66, 0xc4, 0xe7, 0xf1, 0xc6, 0x16, 0x15, + 0x75, 0xd2, 0xcb, 0x34, 0xd3, 0x6b, 0xc1, 0x9b, 0x5a, 0x95, 0xd9, 0x3c, 0x5f, 0x09, 0x23, 0x3a, + 0xf1, 0xaa, 0x47, 0x08, 0xd1, 0x89, 0xe7, 0x9d, 0x13, 0x2e, 0x16, 0x52, 0x1a, 0x8e, 0x9e, 0xd9, + 0xde, 0x2a, 0x43, 0xd2, 0xca, 0x0e, 0x59, 0xdd, 0x31, 0x5b, 0x38, 0x68, 0x3b, 0x47, 0x6d, 0xe5, + 0xb0, 0xcd, 0x1d, 0xb7, 0xb9, 0x03, 0x37, 0x75, 0xe4, 0x3a, 0x0e, 0x5d, 0xc9, 0xb1, 0xab, 0x3b, + 0xf8, 0x62, 0xc1, 0xcb, 0xf8, 0x5b, 0x34, 0xb6, 0xda, 0xd1, 0x81, 0x57, 0x46, 0x92, 0xa6, 0x53, + 0x77, 0xa1, 0x6c, 0xbc, 0xba, 0x65, 0x5d, 0xb3, 0x60, 0x60, 0x19, 0x14, 0xec, 0x83, 0x83, 0x75, + 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0xba, 0x41, 0x44, 0x39, 0x98, 0x14, + 0x6f, 0x58, 0xbd, 0x4c, 0x3c, 0xb3, 0xdf, 0x87, 0x69, 0x37, 0xdb, 0xa9, 0x5b, 0xec, 0xf7, 0xdc, + 0xbb, 0xbf, 0x34, 0x58, 0xfa, 0x43, 0xdc, 0xbd, 0x48, 0x54, 0x0f, 0x91, 0xbc, 0xff, 0x63, 0xe3, + 0xdf, 0x46, 0x0f, 0xfe, 0x3e, 0xed, 0x9a, 0x39, 0x58, 0xe3, 0xb0, 0x3e, 0x73, 0x1b, 0xa3, 0xa3, + 0x44, 0x3d, 0xb8, 0x8f, 0xb7, 0xfd, 0xb8, 0x99, 0xa5, 0x57, 0xdd, 0x3f, 0xd2, 0x8b, 0x34, 0xbb, + 0xcd, 0xf4, 0xb6, 0xcc, 0xee, 0xe7, 0xe6, 0x99, 0xa1, 0x69, 0xc6, 0xdf, 0x30, 0xcd, 0x07, 0xa6, + 0xb9, 0x5b, 0x7f, 0xb5, 0xfb, 0x6a, 0xff, 0x65, 0xfd, 0xd5, 0x1e, 0x36, 0x6a, 0x93, 0x10, 0xd8, + 0xad, 0x7a, 0xbe, 0x51, 0xcd, 0xe7, 0x53, 0xf4, 0x31, 0xb7, 0x79, 0xfc, 0x75, 0xd2, 0xcd, 0xa2, + 0x2c, 0x89, 0xfb, 0xad, 0xab, 0xbf, 0xbb, 0x76, 0x30, 0x7a, 0xe6, 0x4e, 0x94, 0x13, 0x4d, 0xa3, + 0xb1, 0x29, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0x07, 0xca, 0x2b, 0xec, 0x77, 0xfd, 0xce, + 0xef, 0x87, 0xee, 0x5d, 0xa9, 0x03, 0xbc, 0xda, 0x49, 0x4b, 0xde, 0x4c, 0x1a, 0x65, 0xe9, 0x65, + 0xd2, 0xb7, 0xcb, 0x58, 0xa6, 0x6f, 0x83, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, + 0xa1, 0x32, 0xe9, 0x42, 0x2b, 0x69, 0xa6, 0x97, 0x71, 0x67, 0x7f, 0xd7, 0x32, 0x61, 0xa8, 0x1b, + 0xac, 0x3d, 0x43, 0x66, 0xd5, 0x29, 0x41, 0xe8, 0x3d, 0xb8, 0x4f, 0x25, 0x88, 0x3a, 0x25, 0x88, + 0x4d, 0x4a, 0x10, 0x77, 0xa6, 0xe9, 0x51, 0x09, 0x62, 0x07, 0xd3, 0xdc, 0xa4, 0xf2, 0x40, 0xe5, + 0x21, 0x50, 0x10, 0xff, 0x77, 0xdc, 0xef, 0xa6, 0xdd, 0x8b, 0x28, 0xfb, 0xda, 0x4f, 0x06, 0x5f, + 0xaf, 0x3a, 0xad, 0xa8, 0xd7, 0xcc, 0xec, 0xc0, 0xfc, 0xe3, 0xb7, 0x03, 0xa8, 0x07, 0xd4, 0x03, + 0xea, 0x01, 0xf5, 0x80, 0xfa, 0xca, 0x80, 0xfa, 0x5e, 0xd2, 0x6f, 0x26, 0xdd, 0x2c, 0xbe, 0x48, + 0x0c, 0x51, 0xfd, 0x1e, 0x78, 0x7a, 0x3d, 0xf1, 0x34, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, 0xb4, + 0x2f, 0xa6, 0xb9, 0xbd, 0x85, 0x71, 0x82, 0xa8, 0xab, 0x82, 0xa8, 0x2b, 0x35, 0xe1, 0xa7, 0x2c, + 0x9c, 0x56, 0xac, 0xeb, 0x91, 0xa2, 0xd5, 0x63, 0x42, 0x45, 0x2f, 0xee, 0x0b, 0x71, 0xa8, 0x9c, + 0x50, 0xa6, 0x67, 0x5e, 0x1a, 0x32, 0xbc, 0x3a, 0x27, 0x97, 0xcd, 0x20, 0x01, 0x8d, 0x13, 0xcc, + 0x1e, 0x06, 0x59, 0xf5, 0x71, 0xfd, 0x3a, 0xe3, 0xfa, 0xd5, 0xa1, 0x6e, 0x18, 0xd7, 0x67, 0x5c, + 0xdf, 0xd9, 0x9b, 0x64, 0x5c, 0x9f, 0x71, 0xfd, 0xea, 0x05, 0x05, 0xfb, 0xe0, 0x60, 0x1d, 0x24, + 0xbc, 0x09, 0x16, 0xde, 0x04, 0x0d, 0x2f, 0x82, 0x87, 0x0d, 0xb6, 0x66, 0x5c, 0x5f, 0xdd, 0xbb, + 0x33, 0xae, 0xaf, 0xf8, 0xe0, 0x70, 0xfb, 0x77, 0xb7, 0x01, 0xb7, 0x6f, 0xed, 0xfe, 0xa6, 0x4d, + 0x13, 0x6e, 0x7f, 0xc6, 0x34, 0x19, 0xd7, 0xb7, 0x4e, 0x08, 0xec, 0x56, 0xa5, 0x69, 0xae, 0xbc, + 0xd9, 0x32, 0xae, 0x5f, 0xb0, 0x17, 0x8c, 0xeb, 0x03, 0xe5, 0x81, 0xf2, 0x40, 0x79, 0xa0, 0x7c, + 0x65, 0xa1, 0x3c, 0xe3, 0xfa, 0x95, 0x48, 0x5a, 0x18, 0xd7, 0x27, 0x5d, 0x20, 0x5d, 0x20, 0x5d, + 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x8c, 0xeb, 0x33, 0xae, 0x6f, 0xe0, 0x5a, 0x18, 0xd7, + 0xbf, 0xbb, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xda, 0x34, 0x19, 0xd7, 0xc7, 0x34, 0x7d, 0x49, + 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd7, 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, + 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x5c, 0x1f, 0x3c, 0x6d, 0x07, 0x5a, 0x68, 0xe9, 0x03, + 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd7, 0x07, 0x51, 0x83, 0xa8, 0x83, 0x5c, 0x89, 0x71, 0x7d, 0x8f, + 0xc6, 0xf5, 0xc7, 0x53, 0xe0, 0x55, 0x99, 0xd6, 0xdf, 0x08, 0xd8, 0x6e, 0xb5, 0xed, 0x35, 0x28, + 0x3b, 0xad, 0xa9, 0xe8, 0x30, 0xf4, 0x87, 0xcd, 0xac, 0x9b, 0x23, 0xaf, 0x93, 0xf1, 0x03, 0x1e, + 0xe5, 0xcf, 0xd7, 0x38, 0xcd, 0x9f, 0xaa, 0xf1, 0xe6, 0xa2, 0xd7, 0x38, 0xc9, 0x9f, 0xa5, 0x71, + 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xea, 0x5d, 0xef, 0x1e, 0x8f, 0xef, 0xff, 0xaf, 0xf1, + 0xed, 0x37, 0xc6, 0x74, 0xd1, 0xf1, 0xe8, 0xee, 0x37, 0xc2, 0xb4, 0x7a, 0x99, 0x2b, 0x0b, 0xed, + 0x23, 0xad, 0xfd, 0xe3, 0xfb, 0xbe, 0x11, 0xdc, 0x2a, 0x8e, 0xb7, 0x88, 0xcc, 0xb6, 0x70, 0x6f, + 0xb4, 0x02, 0x06, 0x5b, 0x1b, 0x7d, 0xb9, 0xc9, 0x17, 0x93, 0x32, 0xd7, 0x82, 0x46, 0x9a, 0x5a, + 0x4d, 0x68, 0xfb, 0xc9, 0x4a, 0xbc, 0x88, 0xd3, 0xfe, 0x1a, 0xf4, 0xbe, 0x1e, 0x8d, 0xaf, 0x45, + 0xd7, 0xab, 0xd3, 0xf2, 0xea, 0xf4, 0xbb, 0x2a, 0xcd, 0x1e, 0x56, 0xc0, 0x95, 0x96, 0x50, 0xa9, + 0x35, 0x27, 0x7b, 0x5e, 0xd8, 0x88, 0x27, 0xdb, 0x32, 0x5f, 0x4f, 0xd8, 0xa0, 0x74, 0xb4, 0xb0, + 0xd4, 0xea, 0xa4, 0x9a, 0x75, 0x51, 0xfd, 0x3a, 0xa8, 0x76, 0xdd, 0xd3, 0xac, 0xce, 0x69, 0x56, + 0xd7, 0x34, 0xa9, 0x63, 0x86, 0xcd, 0x14, 0x68, 0x69, 0x57, 0xd5, 0x06, 0x49, 0xb7, 0x15, 0xb5, + 0xc6, 0xb3, 0xa6, 0x51, 0xff, 0x6a, 0x68, 0xa2, 0x53, 0x38, 0x7b, 0x0f, 0x5a, 0x12, 0x61, 0x36, + 0x43, 0xb6, 0xca, 0x25, 0x0e, 0xf5, 0x86, 0x1a, 0xc4, 0x12, 0x2b, 0x1d, 0x48, 0xcc, 0x03, 0x8a, + 0x69, 0x60, 0xd1, 0x09, 0x30, 0x4a, 0x81, 0xa6, 0x78, 0x93, 0xea, 0x8d, 0x30, 0x86, 0x43, 0xb0, + 0xca, 0xc3, 0xaf, 0x54, 0x45, 0x7e, 0xb1, 0x89, 0xd7, 0xbc, 0x2a, 0x32, 0xa9, 0x86, 0x68, 0xe8, + 0x6a, 0x0b, 0x56, 0x12, 0x04, 0xa9, 0xae, 0xa9, 0x3a, 0x91, 0x1a, 0x57, 0xa0, 0x58, 0x9d, 0x82, + 0x31, 0x80, 0x31, 0x80, 0x31, 0x80, 0x31, 0x08, 0x81, 0x31, 0x50, 0xa2, 0x6c, 0x67, 0xb6, 0xb7, + 0x0a, 0x75, 0xab, 0xec, 0x90, 0x41, 0xe8, 0x20, 0x74, 0x10, 0x3a, 0x08, 0xdd, 0x27, 0x07, 0x5f, + 0x2c, 0xc8, 0x71, 0x06, 0xcc, 0x3f, 0x6e, 0x56, 0x3f, 0x38, 0x58, 0x07, 0x09, 0x6f, 0x82, 0x85, + 0x37, 0x41, 0xc3, 0x8b, 0xe0, 0xa1, 0x1b, 0x44, 0x94, 0x83, 0x49, 0xf1, 0x86, 0x39, 0xce, 0x80, + 0xe3, 0x0c, 0x34, 0x1f, 0x9c, 0xd9, 0xc7, 0xbb, 0xdb, 0x60, 0xf6, 0xd1, 0xda, 0xfd, 0x4d, 0x9b, + 0x26, 0xb3, 0x8f, 0x33, 0xa6, 0xc9, 0x71, 0x06, 0xd6, 0x09, 0x81, 0xdd, 0xaa, 0x88, 0x0a, 0x95, + 0x37, 0x5b, 0x8e, 0x33, 0x28, 0xd8, 0x0b, 0x8e, 0x33, 0x00, 0xca, 0x03, 0xe5, 0x81, 0xf2, 0x40, + 0xf9, 0xca, 0x42, 0x79, 0x8e, 0x33, 0xa8, 0x44, 0xd2, 0xc2, 0x71, 0x06, 0xa4, 0x0b, 0xa4, 0x0b, + 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0xe3, 0x0c, 0x38, 0xce, 0xc0, 0xc0, 0xb5, + 0x70, 0x9c, 0xc1, 0xdd, 0x6d, 0x50, 0x82, 0xb0, 0xf6, 0xc3, 0xd3, 0xa6, 0xc9, 0x71, 0x06, 0x98, + 0xa6, 0x2f, 0x09, 0x89, 0xdd, 0xaa, 0x54, 0x1e, 0xca, 0x9b, 0x2d, 0xc7, 0x19, 0x00, 0xea, 0x01, + 0xf5, 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x5e, 0x73, 0xbf, 0x73, 0x9c, 0x01, 0x78, 0xda, 0x0e, 0xb4, + 0xd0, 0xd2, 0x07, 0x9e, 0xf6, 0x14, 0x4f, 0x73, 0x9c, 0x01, 0x88, 0x1a, 0x44, 0x1d, 0xe4, 0x4a, + 0x1c, 0x67, 0x60, 0x23, 0x88, 0x32, 0x75, 0x8c, 0x81, 0x86, 0x3a, 0x8a, 0x9e, 0x59, 0xdd, 0xa8, + 0xa8, 0xdd, 0xc7, 0x26, 0x6a, 0x7e, 0xa3, 0x65, 0x2b, 0x3e, 0xa6, 0x5f, 0x67, 0x4c, 0xbf, 0x3a, + 0x94, 0x0d, 0x63, 0xfa, 0x8c, 0xe9, 0x3b, 0x7b, 0x93, 0x8c, 0xe9, 0x33, 0xa6, 0x5f, 0xbd, 0xa0, + 0x60, 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xb0, 0xc1, + 0xd4, 0x8c, 0xe9, 0xab, 0x7b, 0x77, 0xc6, 0xf4, 0x15, 0x1f, 0x1c, 0x4e, 0xff, 0xee, 0x36, 0xe0, + 0xf4, 0xad, 0xdd, 0xdf, 0xb4, 0x69, 0xc2, 0xe9, 0xcf, 0x98, 0x26, 0x63, 0xfa, 0xd6, 0x09, 0x81, + 0xdd, 0xaa, 0x34, 0xcb, 0x95, 0x37, 0x5b, 0xc6, 0xf4, 0x0b, 0xf6, 0x82, 0x31, 0x7d, 0xa0, 0x3c, + 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2c, 0x94, 0x67, 0x4c, 0xbf, 0x12, 0x49, 0x0b, 0x63, 0xfa, + 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0x31, 0x7d, 0xc6, + 0xf4, 0x0d, 0x5c, 0x0b, 0x63, 0xfa, 0x77, 0xb7, 0x41, 0x09, 0xc2, 0xda, 0x0f, 0x4f, 0x9b, 0x26, + 0x63, 0xfa, 0x98, 0xa6, 0x2f, 0x09, 0x89, 0xdd, 0xaa, 0x54, 0x1e, 0xca, 0x9b, 0x2d, 0x63, 0xfa, + 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0xd7, 0xdc, 0xef, 0x8c, 0xe9, 0x83, 0xa7, + 0xed, 0x40, 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, 0x34, 0x63, 0xfa, 0x20, 0x6a, 0x10, 0x75, + 0x90, 0x2b, 0x31, 0xa6, 0xef, 0xc1, 0x98, 0xfe, 0x78, 0xfa, 0xbb, 0x2a, 0x53, 0xfa, 0x1b, 0x01, + 0xdb, 0xab, 0xb6, 0x9d, 0x06, 0x61, 0x9f, 0x35, 0x15, 0xdd, 0x85, 0xfe, 0xb0, 0x99, 0x75, 0x73, + 0xa4, 0x75, 0x32, 0x7e, 0xb0, 0xa3, 0xfc, 0xb9, 0x1a, 0xa7, 0xf9, 0xd3, 0x34, 0xde, 0x5c, 0xf4, + 0x1a, 0x27, 0xf9, 0x33, 0x34, 0x0e, 0xda, 0xe9, 0x59, 0xdc, 0x4e, 0x1b, 0x47, 0xbd, 0xeb, 0xdd, + 0xbf, 0xc6, 0xf7, 0xdd, 0x18, 0xf3, 0x42, 0xc7, 0xa3, 0xdb, 0xde, 0x08, 0xd3, 0xcc, 0x05, 0x4d, 0x5c, 0x49, 0xde, 0x42, 0x55, 0xd6, 0x42, 0x49, 0xce, 0x42, 0x4d, 0xc6, 0x42, 0x93, 0xda, 0xd4, - 0xa7, 0x32, 0xb5, 0xa9, 0x4b, 0x33, 0xaa, 0xd2, 0x8c, 0x9a, 0x34, 0xa1, 0x22, 0xab, 0x1d, 0xf4, - 0xb5, 0xe4, 0x27, 0x1a, 0x83, 0x38, 0x6d, 0x07, 0xed, 0xf1, 0xb8, 0x48, 0xd0, 0xbf, 0x1a, 0x9a, - 0x48, 0x0d, 0xcd, 0xdf, 0x83, 0x96, 0xca, 0x87, 0xcd, 0x9c, 0x8c, 0x32, 0x4b, 0xa1, 0x5e, 0x13, - 0x43, 0xef, 0xa8, 0xd6, 0x81, 0xc4, 0x3c, 0xa0, 0x98, 0x06, 0x96, 0x7a, 0xb2, 0x21, 0xea, 0xb5, - 0x2c, 0xc3, 0x39, 0x16, 0xe5, 0xf9, 0x15, 0x08, 0x0e, 0x08, 0x8e, 0x65, 0x08, 0x0e, 0x05, 0xce, - 0x4d, 0x90, 0x22, 0xd8, 0xaa, 0x90, 0xe9, 0x69, 0x99, 0x9c, 0xaf, 0xa6, 0xd6, 0x10, 0xe5, 0x73, - 0x9c, 0xd0, 0x66, 0x32, 0xfb, 0xc0, 0xbd, 0x95, 0x0a, 0x58, 0x68, 0x23, 0xe9, 0x5d, 0x1f, 0x04, - 0xdd, 0xe8, 0x4b, 0xdc, 0x8d, 0xdb, 0xc5, 0x27, 0x93, 0xb2, 0xd3, 0x22, 0x0e, 0x3f, 0xb8, 0xaa, - 0xd0, 0xfe, 0x93, 0x25, 0xc8, 0xc4, 0xf1, 0x8e, 0x06, 0xbe, 0xd1, 0xc3, 0x33, 0x5a, 0xf8, 0x45, - 0x1d, 0xaf, 0xa8, 0xe3, 0x13, 0x55, 0x3c, 0x52, 0xad, 0x88, 0x2b, 0x4d, 0x68, 0x35, 0x66, 0xca, - 0x43, 0x6a, 0xe5, 0x04, 0xc5, 0xa2, 0x94, 0x7a, 0x55, 0x61, 0x87, 0xaa, 0x42, 0x75, 0x48, 0x21, - 0xaa, 0x0a, 0x54, 0x15, 0xcc, 0x9d, 0x70, 0xb1, 0x50, 0x6b, 0xe2, 0x43, 0x94, 0x2b, 0x09, 0xf9, - 0xba, 0x35, 0x3f, 0xb5, 0x00, 0x16, 0xbf, 0x06, 0x0e, 0xdb, 0xdc, 0x71, 0x9b, 0x3b, 0x70, 0x53, - 0x47, 0xae, 0xe3, 0xd0, 0x95, 0x1c, 0xbb, 0xba, 0x83, 0x2f, 0x16, 0xe4, 0xd4, 0x02, 0xc6, 0x1c, - 0xb7, 0xeb, 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xd0, - 0x0d, 0x22, 0xca, 0xc1, 0xa4, 0x78, 0xc3, 0x9c, 0x5a, 0xc0, 0xa9, 0x05, 0x9a, 0x0f, 0xce, 0x88, - 0xe3, 0xf4, 0x36, 0x18, 0x71, 0xb4, 0x76, 0x7f, 0xb3, 0xa6, 0xc9, 0x88, 0xe3, 0x9c, 0x69, 0x72, - 0x6a, 0x81, 0x75, 0x42, 0x60, 0xb7, 0x2a, 0xda, 0x41, 0xe5, 0xcd, 0x96, 0x53, 0x0b, 0x0a, 0xf6, - 0x82, 0x53, 0x0b, 0x80, 0xf2, 0x40, 0x79, 0xa0, 0x3c, 0x50, 0xbe, 0xb6, 0x50, 0x9e, 0x53, 0x0b, - 0x6a, 0x91, 0xb4, 0x70, 0x6a, 0x01, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x82, - 0xe4, 0x7e, 0xe7, 0xd4, 0x02, 0x4e, 0x2d, 0x30, 0x70, 0x2d, 0x9c, 0x5a, 0x30, 0xbd, 0x0d, 0x4a, - 0x10, 0xd6, 0x7e, 0x78, 0xd6, 0x34, 0x39, 0xb5, 0x00, 0xd3, 0xf4, 0x25, 0x21, 0xb1, 0x5b, 0x95, - 0xca, 0x43, 0x79, 0xb3, 0xe5, 0xd4, 0x02, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, - 0x6b, 0xee, 0x77, 0x4e, 0x2d, 0x00, 0x4f, 0xdb, 0x81, 0x16, 0x5a, 0xfa, 0xc0, 0xd3, 0x9e, 0xe2, - 0x69, 0x4e, 0x2d, 0x00, 0x51, 0x83, 0xa8, 0x2b, 0xb9, 0x12, 0xa7, 0x16, 0x68, 0x2a, 0x59, 0xcd, - 0x09, 0x15, 0xcd, 0x9e, 0x5e, 0x90, 0x8f, 0x81, 0xd7, 0x45, 0xdd, 0x4f, 0x45, 0xec, 0x3e, 0x32, - 0x51, 0xfe, 0x55, 0x50, 0x63, 0xbf, 0x1f, 0x64, 0xd5, 0xc7, 0xf5, 0x9b, 0x8c, 0xeb, 0xd7, 0x87, - 0xba, 0x61, 0x5c, 0x9f, 0x71, 0x7d, 0x67, 0x6f, 0x92, 0x71, 0x7d, 0xc6, 0xf5, 0xeb, 0x17, 0x14, - 0xec, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0x36, 0xd8, - 0x9a, 0x71, 0x7d, 0x75, 0xef, 0xce, 0xb8, 0xbe, 0xe2, 0x83, 0xc3, 0xed, 0x4f, 0x6f, 0x03, 0x6e, - 0xdf, 0xda, 0xfd, 0xcd, 0x9a, 0x26, 0xdc, 0xfe, 0x9c, 0x69, 0x32, 0xae, 0x6f, 0x9d, 0x10, 0xd8, - 0xad, 0x4a, 0xd3, 0x5c, 0x79, 0xb3, 0x65, 0x5c, 0xbf, 0x60, 0x2f, 0x18, 0xd7, 0x07, 0xca, 0x03, - 0xe5, 0x81, 0xf2, 0x40, 0xf9, 0xda, 0x42, 0x79, 0xc6, 0xf5, 0x6b, 0x91, 0xb4, 0x30, 0xae, 0x4f, - 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x20, 0xb9, 0xdf, 0x19, 0xd7, 0x67, 0x5c, - 0xdf, 0xc0, 0xb5, 0x30, 0xae, 0x3f, 0xbd, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xd6, 0x34, 0x19, + 0xa7, 0x32, 0xb5, 0xa9, 0x4b, 0x33, 0xaa, 0xd2, 0x8c, 0x9a, 0x34, 0xa1, 0x22, 0xc3, 0x0e, 0xfa, + 0x5a, 0xf2, 0x13, 0xb5, 0x41, 0xd2, 0x6d, 0x45, 0xad, 0xf1, 0xb8, 0x48, 0xd4, 0xbf, 0x1a, 0x9a, + 0x48, 0x0d, 0xcd, 0xde, 0x83, 0x96, 0xca, 0x87, 0xcd, 0x9c, 0x8c, 0x32, 0x4b, 0xa1, 0x5e, 0x13, + 0x43, 0xef, 0xa8, 0xd2, 0x81, 0xc4, 0x3c, 0xa0, 0x98, 0x06, 0x96, 0x6a, 0xb2, 0x21, 0xea, 0xb5, + 0x2c, 0xc3, 0x39, 0x16, 0xe5, 0xf9, 0x15, 0x08, 0x0e, 0x08, 0x8e, 0x45, 0x08, 0x0e, 0x05, 0xce, + 0x4d, 0x90, 0x22, 0xd8, 0x08, 0xc8, 0xf4, 0xb4, 0x4c, 0xce, 0x57, 0x53, 0xab, 0x89, 0xf2, 0x39, + 0x4e, 0x68, 0x33, 0x99, 0x7d, 0xe0, 0xde, 0x4a, 0x05, 0x2c, 0xb4, 0x96, 0xf6, 0xae, 0xf7, 0xa3, + 0x4e, 0xfc, 0x25, 0xe9, 0x24, 0xad, 0xe2, 0x93, 0x49, 0xd9, 0x69, 0x11, 0x87, 0x1f, 0x5d, 0x55, + 0x68, 0xff, 0xc9, 0x12, 0x64, 0xe2, 0x78, 0x47, 0x03, 0xdf, 0xe8, 0xe1, 0x19, 0x2d, 0xfc, 0xa2, + 0x8e, 0x57, 0xd4, 0xf1, 0x89, 0x2a, 0x1e, 0x09, 0x2b, 0xe2, 0x4a, 0x13, 0x5a, 0xb5, 0xa9, 0xf2, + 0x90, 0x5a, 0x39, 0x41, 0xb1, 0x28, 0xa5, 0x5e, 0x55, 0xd8, 0xa2, 0xaa, 0x10, 0x0e, 0x29, 0x44, + 0x55, 0x81, 0xaa, 0x82, 0xb9, 0x13, 0x2e, 0x16, 0x6a, 0x4e, 0x7c, 0x88, 0x72, 0x25, 0x21, 0x5f, + 0xb7, 0xe2, 0xa7, 0x16, 0xc0, 0xe2, 0x57, 0xc0, 0x61, 0x9b, 0x3b, 0x6e, 0x73, 0x07, 0x6e, 0xea, + 0xc8, 0x75, 0x1c, 0xba, 0x92, 0x63, 0x57, 0x77, 0xf0, 0xc5, 0x82, 0x9c, 0x5a, 0xc0, 0x98, 0xe3, + 0x66, 0xf5, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0xba, + 0x41, 0x44, 0x39, 0x98, 0x14, 0x6f, 0x98, 0x53, 0x0b, 0x38, 0xb5, 0x40, 0xf3, 0xc1, 0x19, 0x71, + 0xbc, 0xbb, 0x0d, 0x46, 0x1c, 0xad, 0xdd, 0xdf, 0xb4, 0x69, 0x32, 0xe2, 0x38, 0x63, 0x9a, 0x9c, + 0x5a, 0x60, 0x9d, 0x10, 0xd8, 0xad, 0x8a, 0x76, 0x50, 0x79, 0xb3, 0xe5, 0xd4, 0x82, 0x82, 0xbd, + 0xe0, 0xd4, 0x02, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2c, 0x94, 0xe7, 0xd4, 0x82, + 0x4a, 0x24, 0x2d, 0x9c, 0x5a, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x20, + 0xb9, 0xdf, 0x39, 0xb5, 0x80, 0x53, 0x0b, 0x0c, 0x5c, 0x0b, 0xa7, 0x16, 0xdc, 0xdd, 0x06, 0x25, + 0x08, 0x6b, 0x3f, 0x3c, 0x6d, 0x9a, 0x9c, 0x5a, 0x80, 0x69, 0xfa, 0x92, 0x90, 0xd8, 0xad, 0x4a, + 0xe5, 0xa1, 0xbc, 0xd9, 0x72, 0x6a, 0x01, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, + 0x35, 0xf7, 0x3b, 0xa7, 0x16, 0x80, 0xa7, 0xed, 0x40, 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, + 0x34, 0xa7, 0x16, 0x80, 0xa8, 0x41, 0xd4, 0x41, 0xae, 0xc4, 0xa9, 0x05, 0x9a, 0x4a, 0x56, 0x33, + 0x42, 0x45, 0xd3, 0xa7, 0x17, 0xe4, 0x63, 0xe0, 0x55, 0x51, 0xf7, 0x53, 0x11, 0xbb, 0x8f, 0x4d, + 0x94, 0x7f, 0x15, 0xd4, 0xd8, 0x1f, 0x06, 0x59, 0xf5, 0x71, 0xfd, 0x3a, 0xe3, 0xfa, 0xd5, 0xa1, + 0x6e, 0x18, 0xd7, 0x67, 0x5c, 0xdf, 0xd9, 0x9b, 0x64, 0x5c, 0x9f, 0x71, 0xfd, 0xea, 0x05, 0x05, + 0xfb, 0xe0, 0x60, 0x1d, 0x24, 0xbc, 0x09, 0x16, 0xde, 0x04, 0x0d, 0x2f, 0x82, 0x87, 0x0d, 0xb6, + 0x66, 0x5c, 0x5f, 0xdd, 0xbb, 0x33, 0xae, 0xaf, 0xf8, 0xe0, 0x70, 0xfb, 0x77, 0xb7, 0x01, 0xb7, + 0x6f, 0xed, 0xfe, 0xa6, 0x4d, 0x13, 0x6e, 0x7f, 0xc6, 0x34, 0x19, 0xd7, 0xb7, 0x4e, 0x08, 0xec, + 0x56, 0xa5, 0x69, 0xae, 0xbc, 0xd9, 0x32, 0xae, 0x5f, 0xb0, 0x17, 0x8c, 0xeb, 0x03, 0xe5, 0x81, + 0xf2, 0x40, 0x79, 0xa0, 0x7c, 0x65, 0xa1, 0x3c, 0xe3, 0xfa, 0x95, 0x48, 0x5a, 0x18, 0xd7, 0x27, + 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x8c, 0xeb, 0x33, 0xae, + 0x6f, 0xe0, 0x5a, 0x18, 0xd7, 0xbf, 0xbb, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xda, 0x34, 0x19, 0xd7, 0xc7, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd7, 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x5c, 0x1f, 0x3c, 0x6d, - 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd7, 0x07, 0x51, 0x83, 0xa8, 0x2b, - 0xb9, 0x12, 0xe3, 0xfa, 0x1e, 0x8d, 0xeb, 0x8f, 0xa7, 0xc0, 0xeb, 0x32, 0xad, 0xbf, 0x55, 0x61, - 0xbb, 0xd5, 0xb6, 0xd7, 0x4a, 0xd9, 0x69, 0x43, 0x45, 0x87, 0xa1, 0x3f, 0x6c, 0x65, 0x69, 0x8e, - 0xbc, 0x4e, 0xc6, 0x0f, 0x78, 0x94, 0x3f, 0x5f, 0x78, 0x9a, 0x3f, 0x55, 0xf8, 0xfa, 0xa2, 0x17, - 0x9e, 0xe4, 0xcf, 0x12, 0x1e, 0x76, 0x92, 0xb3, 0xa8, 0x93, 0x84, 0x47, 0xbd, 0xeb, 0x83, 0xe3, - 0xf1, 0xfd, 0xff, 0x35, 0xbe, 0xfd, 0x70, 0x4c, 0x17, 0x1d, 0x8f, 0xee, 0x7e, 0xab, 0x9a, 0x56, - 0x2f, 0x73, 0x65, 0xa1, 0x7d, 0xa4, 0xb5, 0x7f, 0x7c, 0xdf, 0x37, 0x82, 0x5b, 0xc5, 0xf1, 0x16, - 0x91, 0xd9, 0x16, 0xee, 0x8d, 0x56, 0xc0, 0x60, 0x1b, 0xa3, 0x2f, 0x37, 0xf9, 0x62, 0x52, 0xe6, - 0x5a, 0xd0, 0x48, 0x33, 0xab, 0x09, 0x6d, 0x3f, 0x59, 0x89, 0x17, 0x71, 0xda, 0x5f, 0x83, 0xde, - 0xd7, 0xa3, 0xf1, 0xb5, 0xe8, 0x7a, 0x75, 0x5a, 0x5e, 0x9d, 0x7e, 0x57, 0xa5, 0xd9, 0xab, 0x15, - 0x70, 0xa5, 0x25, 0x54, 0x1a, 0xad, 0xc9, 0x9e, 0x17, 0x36, 0xe2, 0xc9, 0xb6, 0xcc, 0xd7, 0x13, - 0x36, 0x28, 0x1d, 0x2d, 0x2c, 0xb5, 0x3a, 0xa9, 0x66, 0x5d, 0x54, 0xbf, 0x0e, 0xaa, 0x5d, 0xf7, - 0x34, 0xab, 0x73, 0x9a, 0xd5, 0x35, 0x4d, 0xea, 0x98, 0xd5, 0x66, 0x0a, 0xb4, 0xb4, 0xab, 0x1a, - 0x83, 0x38, 0x6d, 0x07, 0xed, 0xf1, 0xac, 0x69, 0xd0, 0xbf, 0x1a, 0x9a, 0xe8, 0x14, 0xce, 0xdf, - 0x83, 0x96, 0x44, 0x98, 0xcd, 0x90, 0xad, 0x72, 0x89, 0x43, 0xbd, 0xa1, 0x06, 0xb1, 0xc4, 0x5a, - 0x07, 0x12, 0xf3, 0x80, 0x62, 0x1a, 0x58, 0x74, 0x02, 0x8c, 0x52, 0xa0, 0x29, 0xde, 0xa4, 0x7a, - 0x23, 0x8c, 0xe1, 0x10, 0xac, 0xf2, 0xf0, 0x2b, 0x55, 0x91, 0x5f, 0x6c, 0xe2, 0x0d, 0xaf, 0x8a, - 0x4c, 0xaa, 0x21, 0x1a, 0xba, 0xda, 0x82, 0x95, 0x04, 0x41, 0xaa, 0x6b, 0xa6, 0x4e, 0xa4, 0xc6, - 0x15, 0x28, 0x56, 0xa7, 0x60, 0x0c, 0x60, 0x0c, 0x60, 0x0c, 0x60, 0x0c, 0xaa, 0xc0, 0x18, 0x28, - 0x51, 0xb6, 0x73, 0xdb, 0x5b, 0x85, 0xba, 0x55, 0x76, 0xc8, 0x20, 0x74, 0x10, 0x3a, 0x08, 0x1d, - 0x84, 0xee, 0x93, 0x83, 0x2f, 0x16, 0xe4, 0x38, 0x03, 0xe6, 0x1f, 0xb7, 0xeb, 0x1f, 0x1c, 0xac, - 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xd0, 0x0d, 0x22, 0xca, 0xc1, 0xa4, - 0x78, 0xc3, 0x1c, 0x67, 0xc0, 0x71, 0x06, 0x9a, 0x0f, 0xce, 0xec, 0xe3, 0xf4, 0x36, 0x98, 0x7d, - 0xb4, 0x76, 0x7f, 0xb3, 0xa6, 0xc9, 0xec, 0xe3, 0x9c, 0x69, 0x72, 0x9c, 0x81, 0x75, 0x42, 0x60, - 0xb7, 0x2a, 0xa2, 0x42, 0xe5, 0xcd, 0x96, 0xe3, 0x0c, 0x0a, 0xf6, 0x82, 0xe3, 0x0c, 0x80, 0xf2, - 0x40, 0x79, 0xa0, 0x3c, 0x50, 0xbe, 0xb6, 0x50, 0x9e, 0xe3, 0x0c, 0x6a, 0x91, 0xb4, 0x70, 0x9c, - 0x01, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x82, 0xe4, 0x7e, 0xe7, 0x38, 0x03, - 0x8e, 0x33, 0x30, 0x70, 0x2d, 0x1c, 0x67, 0x30, 0xbd, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xd6, - 0x34, 0x39, 0xce, 0x00, 0xd3, 0xf4, 0x25, 0x21, 0xb1, 0x5b, 0x95, 0xca, 0x43, 0x79, 0xb3, 0xe5, - 0x38, 0x03, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x6b, 0xee, 0x77, 0x8e, 0x33, - 0x00, 0x4f, 0xdb, 0x81, 0x16, 0x5a, 0xfa, 0xc0, 0xd3, 0x9e, 0xe2, 0x69, 0x8e, 0x33, 0x00, 0x51, - 0x83, 0xa8, 0x2b, 0xb9, 0x12, 0xc7, 0x19, 0xd8, 0x08, 0xa2, 0xcc, 0x1c, 0x63, 0xa0, 0xa1, 0x8e, - 0xa2, 0x67, 0x56, 0x37, 0x2a, 0x6a, 0xf7, 0x91, 0x89, 0x9a, 0xdf, 0x68, 0xd9, 0x9a, 0x8f, 0xe9, - 0x37, 0x19, 0xd3, 0xaf, 0x0f, 0x65, 0xc3, 0x98, 0x3e, 0x63, 0xfa, 0xce, 0xde, 0x24, 0x63, 0xfa, - 0x8c, 0xe9, 0xd7, 0x2f, 0x28, 0xd8, 0x07, 0x07, 0xeb, 0x20, 0xe1, 0x4d, 0xb0, 0xf0, 0x26, 0x68, - 0x78, 0x11, 0x3c, 0x6c, 0x30, 0x35, 0x63, 0xfa, 0xea, 0xde, 0x9d, 0x31, 0x7d, 0xc5, 0x07, 0x87, - 0xd3, 0x9f, 0xde, 0x06, 0x9c, 0xbe, 0xb5, 0xfb, 0x9b, 0x35, 0x4d, 0x38, 0xfd, 0x39, 0xd3, 0x64, - 0x4c, 0xdf, 0x3a, 0x21, 0xb0, 0x5b, 0x95, 0x66, 0xb9, 0xf2, 0x66, 0xcb, 0x98, 0x7e, 0xc1, 0x5e, - 0x30, 0xa6, 0x0f, 0x94, 0x07, 0xca, 0x03, 0xe5, 0x81, 0xf2, 0xb5, 0x85, 0xf2, 0x8c, 0xe9, 0xd7, - 0x22, 0x69, 0x61, 0x4c, 0x9f, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x41, 0x72, - 0xbf, 0x33, 0xa6, 0xcf, 0x98, 0xbe, 0x81, 0x6b, 0x61, 0x4c, 0x7f, 0x7a, 0x1b, 0x94, 0x20, 0xac, - 0xfd, 0xf0, 0xac, 0x69, 0x32, 0xa6, 0x8f, 0x69, 0xfa, 0x92, 0x90, 0xd8, 0xad, 0x4a, 0xe5, 0xa1, - 0xbc, 0xd9, 0x32, 0xa6, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0xcd, 0xfd, - 0xce, 0x98, 0x3e, 0x78, 0xda, 0x0e, 0xb4, 0xd0, 0xd2, 0x07, 0x9e, 0xf6, 0x14, 0x4f, 0x33, 0xa6, - 0x0f, 0xa2, 0x06, 0x51, 0x57, 0x72, 0x25, 0xc6, 0xf4, 0x3d, 0x18, 0xd3, 0x1f, 0x4f, 0x7f, 0xd7, - 0x65, 0x4a, 0x7f, 0xab, 0xc2, 0xf6, 0xaa, 0x6d, 0xa7, 0x95, 0xb0, 0xcf, 0x86, 0x8a, 0xee, 0x42, - 0x7f, 0xd8, 0xca, 0xd2, 0x1c, 0x69, 0x9d, 0x8c, 0x1f, 0xec, 0x28, 0x7f, 0xae, 0xf0, 0x34, 0x7f, - 0x9a, 0xf0, 0xf5, 0x45, 0x2f, 0x3c, 0xc9, 0x9f, 0x21, 0x3c, 0xec, 0x24, 0x67, 0x51, 0x27, 0x09, - 0x8f, 0x7a, 0xd7, 0x07, 0x7f, 0x8d, 0xef, 0x3b, 0x1c, 0xf3, 0x42, 0xc7, 0xa3, 0xdb, 0xde, 0xaa, - 0xa6, 0x99, 0x0b, 0x9a, 0xb8, 0x92, 0xbc, 0x85, 0xaa, 0xac, 0x85, 0x92, 0x9c, 0x85, 0x9a, 0x8c, - 0x85, 0x26, 0xb5, 0xa9, 0x4f, 0x65, 0x6a, 0x53, 0x97, 0x66, 0x54, 0xa5, 0x19, 0x35, 0x69, 0x42, - 0x45, 0x56, 0x3b, 0xe8, 0x6b, 0xc9, 0x4f, 0x34, 0x06, 0x71, 0xda, 0x0e, 0xda, 0xe3, 0x71, 0x91, - 0xa0, 0x7f, 0x35, 0x34, 0x91, 0x1a, 0x9a, 0xbf, 0x07, 0x2d, 0x95, 0x0f, 0x9b, 0x39, 0x19, 0x65, - 0x96, 0x42, 0xbd, 0x26, 0x86, 0xde, 0x51, 0xad, 0x03, 0x89, 0x79, 0x40, 0x31, 0x0d, 0x2c, 0xf5, - 0x64, 0x43, 0xd4, 0x6b, 0x59, 0x86, 0x73, 0x2c, 0xca, 0xf3, 0x2b, 0x10, 0x1c, 0x10, 0x1c, 0xcb, - 0x10, 0x1c, 0x0a, 0x9c, 0x9b, 0x20, 0x45, 0xb0, 0x55, 0x21, 0xd3, 0xd3, 0x32, 0x39, 0x5f, 0x4d, - 0xad, 0x21, 0xca, 0xe7, 0x38, 0xa1, 0xcd, 0x64, 0xf6, 0x81, 0x7b, 0x2b, 0x15, 0xb0, 0xd0, 0x46, - 0xb7, 0x79, 0xdd, 0x4b, 0x83, 0xf8, 0xba, 0x27, 0x67, 0x9d, 0x45, 0xf4, 0xbd, 0xb3, 0x96, 0xd0, - 0x5e, 0x93, 0x25, 0xc3, 0xc4, 0xb1, 0x8d, 0x06, 0x96, 0xd1, 0xc3, 0x2e, 0x5a, 0x58, 0x45, 0x1d, - 0x9b, 0xa8, 0x63, 0x11, 0x55, 0xec, 0x51, 0xad, 0xe8, 0x2a, 0x4d, 0x5e, 0x35, 0x66, 0x4a, 0x41, - 0x6a, 0xa5, 0x03, 0xc5, 0x02, 0x94, 0x7a, 0x05, 0x61, 0x87, 0x0a, 0x42, 0x75, 0x08, 0x20, 0x2a, - 0x08, 0x54, 0x10, 0xcc, 0x9d, 0x70, 0xb1, 0x50, 0x6b, 0xe2, 0x43, 0x94, 0xab, 0x06, 0xf9, 0xba, - 0x35, 0x3f, 0xa1, 0x00, 0xc6, 0xbe, 0x06, 0x0e, 0xdb, 0xdc, 0x71, 0x9b, 0x3b, 0x70, 0x53, 0x47, - 0xae, 0xe3, 0xd0, 0x95, 0x1c, 0xbb, 0xba, 0x83, 0x2f, 0x16, 0xe4, 0x84, 0x02, 0x46, 0x1a, 0xb7, - 0xeb, 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xd0, 0x0d, - 0x22, 0xca, 0xc1, 0xa4, 0x78, 0xc3, 0x9c, 0x50, 0xc0, 0x09, 0x05, 0x9a, 0x0f, 0xce, 0x38, 0xe3, - 0xf4, 0x36, 0x18, 0x67, 0xb4, 0x76, 0x7f, 0xb3, 0xa6, 0xc9, 0x38, 0xe3, 0x9c, 0x69, 0x72, 0x42, - 0x81, 0x75, 0x42, 0x60, 0xb7, 0x2a, 0x3a, 0x41, 0xe5, 0xcd, 0x96, 0x13, 0x0a, 0x0a, 0xf6, 0x82, - 0x13, 0x0a, 0x80, 0xf2, 0x40, 0x79, 0xa0, 0x3c, 0x50, 0xbe, 0xb6, 0x50, 0x9e, 0x13, 0x0a, 0x6a, - 0x91, 0xb4, 0x70, 0x42, 0x01, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x82, 0xe4, - 0x7e, 0xe7, 0x84, 0x02, 0x4e, 0x28, 0x30, 0x70, 0x2d, 0x9c, 0x50, 0x30, 0xbd, 0x0d, 0x4a, 0x10, - 0xd6, 0x7e, 0x78, 0xd6, 0x34, 0x39, 0xa1, 0x00, 0xd3, 0xf4, 0x25, 0x21, 0xb1, 0x5b, 0x95, 0xca, - 0x43, 0x79, 0xb3, 0xe5, 0x84, 0x02, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x6b, - 0xee, 0x77, 0x4e, 0x28, 0x00, 0x4f, 0xdb, 0x81, 0x16, 0x5a, 0xfa, 0xc0, 0xd3, 0x9e, 0xe2, 0x69, - 0x4e, 0x28, 0x00, 0x51, 0x83, 0xa8, 0x2b, 0xb9, 0x12, 0x27, 0x14, 0xa8, 0xa9, 0x56, 0x4d, 0xe5, - 0x89, 0x66, 0xcf, 0x27, 0xc8, 0x87, 0xbf, 0xeb, 0xa2, 0xdf, 0xa7, 0x22, 0x67, 0x1f, 0x99, 0x68, - 0xfb, 0x2a, 0xe8, 0xad, 0xdf, 0x0f, 0xad, 0xea, 0x43, 0xfa, 0x4d, 0x86, 0xf4, 0xeb, 0x43, 0xd8, - 0x30, 0xa4, 0xcf, 0x90, 0xbe, 0xb3, 0x37, 0xc9, 0x90, 0x3e, 0x43, 0xfa, 0xf5, 0x0b, 0x0a, 0xf6, - 0xc1, 0xc1, 0x3a, 0x48, 0x78, 0x13, 0x2c, 0xbc, 0x09, 0x1a, 0x5e, 0x04, 0x0f, 0x1b, 0x44, 0xcd, - 0x90, 0xbe, 0xba, 0x77, 0x67, 0x48, 0x5f, 0xf1, 0xc1, 0x61, 0xf4, 0xa7, 0xb7, 0x01, 0xa3, 0x6f, - 0xed, 0xfe, 0x66, 0x4d, 0x13, 0x46, 0x7f, 0xce, 0x34, 0x19, 0xd2, 0xb7, 0x4e, 0x08, 0xec, 0x56, - 0xa5, 0x55, 0xae, 0xbc, 0xd9, 0x32, 0xa4, 0x5f, 0xb0, 0x17, 0x0c, 0xe9, 0x03, 0xe5, 0x81, 0xf2, - 0x40, 0x79, 0xa0, 0x7c, 0x6d, 0xa1, 0x3c, 0x43, 0xfa, 0xb5, 0x48, 0x5a, 0x18, 0xd2, 0x27, 0x5d, - 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x0c, 0xe9, 0x33, 0xa4, 0x6f, - 0xe0, 0x5a, 0x18, 0xd2, 0x9f, 0xde, 0x06, 0x25, 0x08, 0x6b, 0x3f, 0x3c, 0x6b, 0x9a, 0x0c, 0xe9, - 0x63, 0x9a, 0xbe, 0x24, 0x24, 0x76, 0xab, 0x52, 0x79, 0x28, 0x6f, 0xb6, 0x0c, 0xe9, 0x03, 0xea, - 0x01, 0xf5, 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x5e, 0x73, 0xbf, 0x33, 0xa4, 0x0f, 0x9e, 0xb6, 0x03, - 0x2d, 0xb4, 0xf4, 0x81, 0xa7, 0x3d, 0xc5, 0xd3, 0x0c, 0xe9, 0x83, 0xa8, 0x41, 0xd4, 0x95, 0x5c, - 0x89, 0x21, 0x7d, 0xf3, 0x21, 0xfd, 0xf1, 0xec, 0x77, 0x5d, 0x66, 0xf4, 0xb7, 0x2a, 0x6c, 0xad, - 0xda, 0x56, 0x5a, 0x01, 0xeb, 0x6c, 0xa8, 0x68, 0x2e, 0xf4, 0x87, 0xad, 0x2c, 0xcd, 0x51, 0xd6, - 0xc9, 0xf8, 0xb1, 0x8e, 0xf2, 0xa7, 0x0a, 0x4f, 0xf3, 0x67, 0x09, 0x5f, 0x5f, 0xf4, 0xc2, 0x93, - 0xfc, 0x09, 0xc2, 0xc3, 0x4e, 0x72, 0x16, 0x75, 0x92, 0xf0, 0xb8, 0xf9, 0xa9, 0x97, 0xbe, 0xb9, - 0xee, 0xa5, 0xe1, 0x98, 0x11, 0x3a, 0x1e, 0xdd, 0xf4, 0x56, 0x35, 0x4d, 0x5c, 0xe6, 0xca, 0x42, - 0x9b, 0x46, 0x6b, 0xb3, 0xf8, 0xb9, 0x49, 0x04, 0xf7, 0x85, 0x9b, 0xfd, 0x20, 0xb3, 0x07, 0xdc, - 0x5b, 0xa8, 0x80, 0x75, 0x36, 0xc6, 0x9f, 0xe9, 0xba, 0xd7, 0x95, 0x9b, 0xed, 0x2f, 0x48, 0xa1, - 0x3b, 0x6b, 0x09, 0xed, 0x33, 0x59, 0xb9, 0x16, 0x71, 0x0a, 0x5f, 0x83, 0xaa, 0xd7, 0xa3, 0xe4, - 0xb5, 0xa8, 0x77, 0x75, 0x8a, 0x5d, 0x9d, 0x4a, 0x57, 0xa5, 0xcc, 0xab, 0x15, 0x59, 0xa5, 0xe5, - 0x50, 0x1a, 0x33, 0x19, 0x9e, 0xb8, 0x29, 0xdf, 0x99, 0xd3, 0xd2, 0xca, 0x2b, 0x95, 0x34, 0xae, - 0xd4, 0xea, 0x9f, 0x9a, 0xf5, 0x4e, 0xfd, 0xfa, 0xa6, 0x76, 0x3d, 0xd3, 0xac, 0x7e, 0x69, 0x56, - 0xaf, 0x34, 0xa9, 0x4f, 0x56, 0x9b, 0x0b, 0xd0, 0xd2, 0xa4, 0x6a, 0xb4, 0x26, 0x3e, 0x44, 0x59, - 0x73, 0x30, 0x5f, 0xb7, 0xe6, 0xa2, 0x83, 0x3b, 0x88, 0x0e, 0x56, 0xdf, 0x61, 0x9b, 0x3b, 0x6e, - 0x73, 0x07, 0x6e, 0xea, 0xc8, 0x75, 0x1c, 0xba, 0x92, 0x63, 0x57, 0x77, 0xf0, 0xc5, 0x82, 0x88, - 0x0e, 0xd2, 0xa5, 0xb8, 0x5d, 0xff, 0xe0, 0x60, 0x1d, 0x24, 0xbc, 0x09, 0x16, 0xde, 0x04, 0x0d, - 0x2f, 0x82, 0x87, 0x6e, 0x10, 0x51, 0x0e, 0x26, 0xc5, 0x1b, 0x46, 0x74, 0x10, 0xd1, 0x41, 0xcd, - 0x07, 0xa7, 0x43, 0x71, 0x7a, 0x1b, 0x74, 0x28, 0x5a, 0xbb, 0xbf, 0x59, 0xd3, 0xa4, 0x43, 0x71, - 0xce, 0x34, 0x11, 0x1d, 0xb4, 0x4e, 0x08, 0xec, 0x56, 0x65, 0xf4, 0xaf, 0xbc, 0xd9, 0x22, 0x3a, - 0x58, 0xb0, 0x17, 0x88, 0x0e, 0x02, 0xe5, 0x81, 0xf2, 0x40, 0x79, 0xa0, 0x7c, 0x6d, 0xa1, 0x3c, - 0xa2, 0x83, 0xb5, 0x48, 0x5a, 0x10, 0x1d, 0x24, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, - 0x5d, 0x90, 0xdc, 0xef, 0x88, 0x0e, 0x22, 0x3a, 0x68, 0xe0, 0x5a, 0x10, 0x1d, 0x9c, 0xde, 0x06, - 0x25, 0x08, 0x6b, 0x3f, 0x3c, 0x6b, 0x9a, 0x88, 0x0e, 0x62, 0x9a, 0xbe, 0x24, 0x24, 0x76, 0xab, - 0x52, 0x79, 0x28, 0x6f, 0xb6, 0x88, 0x0e, 0x02, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0x3d, 0xa0, - 0x5e, 0x73, 0xbf, 0x23, 0x3a, 0x08, 0x9e, 0xb6, 0x03, 0x2d, 0xb4, 0xf4, 0x81, 0xa7, 0x3d, 0xc5, - 0xd3, 0x88, 0x0e, 0x82, 0xa8, 0x41, 0xd4, 0x95, 0x5c, 0x09, 0xd1, 0x41, 0x65, 0xc5, 0xaa, 0xeb, - 0xde, 0xe8, 0xb7, 0xef, 0x88, 0x0e, 0xe6, 0xc3, 0xdf, 0x75, 0x51, 0x1d, 0x54, 0x51, 0xa9, 0x8b, - 0xb2, 0x58, 0x7f, 0x4a, 0x7f, 0xbc, 0x6c, 0xcd, 0x87, 0xf4, 0x9b, 0x0c, 0xe9, 0xd7, 0x87, 0xb0, - 0x61, 0x48, 0x9f, 0x21, 0x7d, 0x67, 0x6f, 0x92, 0x21, 0x7d, 0x86, 0xf4, 0xeb, 0x17, 0x14, 0xec, - 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0x36, 0x88, 0x9a, - 0x21, 0x7d, 0x75, 0xef, 0xce, 0x90, 0xbe, 0xe2, 0x83, 0xc3, 0xe8, 0x4f, 0x6f, 0x03, 0x46, 0xdf, - 0xda, 0xfd, 0xcd, 0x9a, 0x26, 0x8c, 0xfe, 0x9c, 0x69, 0x32, 0xa4, 0x6f, 0x9d, 0x10, 0xd8, 0xad, - 0x4a, 0xab, 0x5c, 0x79, 0xb3, 0x65, 0x48, 0xbf, 0x60, 0x2f, 0x18, 0xd2, 0x07, 0xca, 0x03, 0xe5, - 0x81, 0xf2, 0x40, 0xf9, 0xda, 0x42, 0x79, 0x86, 0xf4, 0x6b, 0x91, 0xb4, 0x30, 0xa4, 0x4f, 0xba, - 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x20, 0xb9, 0xdf, 0x19, 0xd2, 0x67, 0x48, 0xdf, - 0xc0, 0xb5, 0x30, 0xa4, 0x3f, 0xbd, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xd6, 0x34, 0x19, 0xd2, - 0xc7, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd2, 0x07, 0xd4, - 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x48, 0x1f, 0x3c, 0x6d, 0x07, - 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd2, 0x07, 0x51, 0x83, 0xa8, 0x2b, 0xb9, - 0x12, 0x43, 0xfa, 0xe6, 0x43, 0xfa, 0xe3, 0xd9, 0xef, 0xba, 0xcc, 0xe8, 0x6f, 0x55, 0xd8, 0x5a, - 0xb5, 0xad, 0xb4, 0x02, 0xd6, 0xd9, 0x50, 0xd1, 0x5c, 0xe8, 0x0f, 0x5b, 0x59, 0x9a, 0xa3, 0xac, - 0x93, 0xf1, 0x63, 0x1d, 0xe5, 0x4f, 0x15, 0x9e, 0xe6, 0xcf, 0x12, 0xbe, 0xbe, 0xe8, 0x85, 0x27, - 0xf9, 0x13, 0x84, 0x87, 0x9d, 0xe4, 0x2c, 0xea, 0x24, 0xe1, 0x71, 0xf3, 0x53, 0x2f, 0xfd, 0xd4, - 0xeb, 0x0e, 0xc2, 0x31, 0x23, 0x74, 0x3c, 0xba, 0xe9, 0xad, 0x6a, 0x9a, 0xb8, 0xcc, 0x95, 0x85, - 0x36, 0x8d, 0xd6, 0x66, 0xf1, 0x73, 0x93, 0x08, 0xee, 0x0b, 0x37, 0xfb, 0x41, 0x66, 0x0f, 0xb8, - 0xb7, 0x50, 0x01, 0xeb, 0x6c, 0x74, 0x9f, 0xdf, 0x7e, 0xa6, 0xa4, 0x77, 0xbd, 0x17, 0x5c, 0x0e, - 0xbb, 0x59, 0xd2, 0x8a, 0x06, 0x72, 0xf5, 0x81, 0x82, 0x1e, 0x7a, 0x70, 0x55, 0xa1, 0xbd, 0x27, - 0x2b, 0xe1, 0x22, 0x4e, 0xeb, 0x6b, 0xd0, 0xf7, 0x7a, 0x34, 0xbd, 0x16, 0x1d, 0xaf, 0x4e, 0xbb, - 0xab, 0xd3, 0xeb, 0xaa, 0x34, 0x7a, 0xb5, 0xa2, 0xad, 0xb4, 0x44, 0x4a, 0x63, 0x26, 0xeb, 0x13, - 0x37, 0xe5, 0x3b, 0xb3, 0x5b, 0x5a, 0xb9, 0xa6, 0x92, 0xee, 0x95, 0x5a, 0x4d, 0x54, 0xb3, 0x06, - 0xaa, 0x5f, 0xf3, 0xd4, 0xae, 0x71, 0x9a, 0xd5, 0x34, 0xcd, 0x6a, 0x98, 0x26, 0x35, 0xcb, 0x6a, - 0xf3, 0x03, 0x5a, 0x3a, 0x55, 0x8d, 0xd6, 0xc4, 0x87, 0x28, 0xeb, 0x10, 0xe6, 0xeb, 0xd6, 0x5c, - 0x88, 0x70, 0x07, 0x21, 0xc2, 0xea, 0x3b, 0x6c, 0x73, 0xc7, 0x6d, 0xee, 0xc0, 0x4d, 0x1d, 0xb9, - 0x8e, 0x43, 0x57, 0x72, 0xec, 0xea, 0x0e, 0xbe, 0x58, 0x10, 0x21, 0x42, 0x3a, 0x17, 0xb7, 0xeb, - 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xd0, 0x0d, 0x22, - 0xca, 0xc1, 0xa4, 0x78, 0xc3, 0x08, 0x11, 0x22, 0x44, 0xa8, 0xf9, 0xe0, 0x74, 0x2d, 0x4e, 0x6f, - 0x83, 0xae, 0x45, 0x6b, 0xf7, 0x37, 0x6b, 0x9a, 0x74, 0x2d, 0xce, 0x99, 0x26, 0x42, 0x84, 0xd6, - 0x09, 0x81, 0xdd, 0xaa, 0x8c, 0x03, 0x96, 0x37, 0x5b, 0x84, 0x08, 0x0b, 0xf6, 0x02, 0x21, 0x42, - 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2d, 0x94, 0x47, 0x88, 0xb0, 0x16, 0x49, 0x0b, - 0x42, 0x84, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x1d, 0x21, - 0x42, 0x84, 0x08, 0x0d, 0x5c, 0x0b, 0x42, 0x84, 0xd3, 0xdb, 0xa0, 0x04, 0x61, 0xed, 0x87, 0x67, - 0x4d, 0x13, 0x21, 0x42, 0x4c, 0xd3, 0x97, 0x84, 0xc4, 0x6e, 0x55, 0x2a, 0x0f, 0xe5, 0xcd, 0x16, - 0x21, 0x42, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x6b, 0xee, 0x77, 0x84, 0x08, - 0xc1, 0xd3, 0x76, 0xa0, 0x85, 0x96, 0x3e, 0xf0, 0xb4, 0xa7, 0x78, 0x1a, 0x21, 0x42, 0x10, 0x35, - 0x88, 0xba, 0x92, 0x2b, 0x21, 0x44, 0xa8, 0xa7, 0x62, 0xf5, 0x80, 0x50, 0xd1, 0xac, 0x24, 0x61, - 0x3e, 0x06, 0x5e, 0x17, 0x4d, 0x42, 0x15, 0x0d, 0xbb, 0x28, 0x8b, 0xf5, 0xe7, 0xf5, 0xc7, 0xcb, - 0xd6, 0x7c, 0x5c, 0xbf, 0xc9, 0xb8, 0x7e, 0x7d, 0xa8, 0x1b, 0xc6, 0xf5, 0x19, 0xd7, 0x77, 0xf6, - 0x26, 0x19, 0xd7, 0x67, 0x5c, 0xbf, 0x7e, 0x41, 0xc1, 0x3e, 0x38, 0x58, 0x07, 0x09, 0x6f, 0x82, - 0x85, 0x37, 0x41, 0xc3, 0x8b, 0xe0, 0x61, 0x83, 0xad, 0x19, 0xd7, 0x57, 0xf7, 0xee, 0x8c, 0xeb, - 0x2b, 0x3e, 0x38, 0xdc, 0xfe, 0xf4, 0x36, 0xe0, 0xf6, 0xad, 0xdd, 0xdf, 0xac, 0x69, 0xc2, 0xed, - 0xcf, 0x99, 0x26, 0xe3, 0xfa, 0xd6, 0x09, 0x81, 0xdd, 0xaa, 0x34, 0xcd, 0x95, 0x37, 0x5b, 0xc6, - 0xf5, 0x0b, 0xf6, 0x82, 0x71, 0x7d, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2d, 0x94, - 0x67, 0x5c, 0xbf, 0x16, 0x49, 0x0b, 0xe3, 0xfa, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, - 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0x71, 0x7d, 0xc6, 0xf5, 0x0d, 0x5c, 0x0b, 0xe3, 0xfa, 0xd3, 0xdb, - 0xa0, 0x04, 0x61, 0xed, 0x87, 0x67, 0x4d, 0x93, 0x71, 0x7d, 0x4c, 0xd3, 0x97, 0x84, 0xc4, 0x6e, - 0x55, 0x2a, 0x0f, 0xe5, 0xcd, 0x96, 0x71, 0x7d, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, - 0xd4, 0x6b, 0xee, 0x77, 0xc6, 0xf5, 0xc1, 0xd3, 0x76, 0xa0, 0x85, 0x96, 0x3e, 0xf0, 0xb4, 0xa7, - 0x78, 0x9a, 0x71, 0x7d, 0x10, 0x35, 0x88, 0xba, 0x92, 0x2b, 0x31, 0xae, 0xef, 0xd1, 0xb8, 0xfe, - 0x78, 0x0a, 0xbc, 0x2e, 0xd3, 0xfa, 0x5b, 0x15, 0xb6, 0x5b, 0x6d, 0x7b, 0xad, 0x94, 0x9d, 0x36, - 0x54, 0x74, 0x18, 0xfa, 0xc3, 0x56, 0x96, 0xe6, 0xc8, 0xeb, 0x64, 0xfc, 0x80, 0x47, 0xf9, 0xf3, - 0x85, 0xa7, 0xf9, 0x53, 0x85, 0xaf, 0x2f, 0x7a, 0xe1, 0x49, 0xfe, 0x2c, 0xe1, 0x61, 0x27, 0x39, - 0x8b, 0x3a, 0x49, 0x78, 0xfc, 0xfc, 0x53, 0x2f, 0x3d, 0xea, 0x5d, 0xef, 0xbd, 0x9f, 0xdc, 0x7e, - 0x38, 0xa6, 0x8b, 0x8e, 0x47, 0x77, 0xbf, 0x55, 0x4d, 0xab, 0x97, 0xb9, 0xb2, 0xd0, 0x3e, 0xd2, - 0xda, 0x3f, 0xbe, 0xef, 0x1b, 0xc1, 0xad, 0xe2, 0x78, 0x8b, 0xc8, 0x6c, 0x0b, 0xf7, 0x46, 0x2b, - 0x60, 0xb0, 0x8d, 0x3b, 0x5f, 0x6e, 0x98, 0x8e, 0xdf, 0x86, 0x94, 0xd1, 0x16, 0x64, 0xd2, 0x03, - 0x6b, 0x0a, 0x6d, 0x45, 0x59, 0xb9, 0x17, 0xf1, 0x12, 0x80, 0x06, 0xd5, 0xaf, 0x47, 0xe9, 0x6b, - 0x51, 0xf7, 0xea, 0x14, 0xbd, 0x3a, 0x15, 0xaf, 0x4a, 0xb9, 0x57, 0x2b, 0xf8, 0x4a, 0xcb, 0xa9, - 0x34, 0x66, 0xb2, 0x41, 0x71, 0x53, 0xbe, 0x33, 0xe7, 0xa5, 0x95, 0x83, 0x2a, 0x69, 0x64, 0xa9, - 0xd5, 0x4f, 0x35, 0xeb, 0xa5, 0xfa, 0xf5, 0x51, 0xed, 0x7a, 0xa8, 0x59, 0xfd, 0xd3, 0xac, 0xde, - 0x69, 0x52, 0xdf, 0xac, 0x36, 0x83, 0xa0, 0xa5, 0x69, 0xd5, 0x68, 0x4d, 0x7c, 0x88, 0xb2, 0x66, - 0x61, 0xbe, 0x6e, 0xcd, 0x45, 0x0b, 0x77, 0x10, 0x2d, 0xac, 0xbe, 0xc3, 0x36, 0x77, 0xdc, 0xe6, - 0x0e, 0xdc, 0xd4, 0x91, 0xeb, 0x38, 0x74, 0x25, 0xc7, 0xae, 0xee, 0xe0, 0x8b, 0x05, 0x11, 0x2d, - 0xa4, 0xcb, 0x71, 0xbb, 0xfe, 0xc1, 0xc1, 0x3a, 0x48, 0x78, 0x13, 0x2c, 0xbc, 0x09, 0x1a, 0x5e, - 0x04, 0x0f, 0xdd, 0x20, 0xa2, 0x1c, 0x4c, 0x8a, 0x37, 0x8c, 0x68, 0x21, 0xa2, 0x85, 0x9a, 0x0f, - 0x4e, 0x87, 0xe3, 0xf4, 0x36, 0xe8, 0x70, 0xb4, 0x76, 0x7f, 0xb3, 0xa6, 0x49, 0x87, 0xe3, 0x9c, - 0x69, 0x22, 0x5a, 0x68, 0x9d, 0x10, 0xd8, 0xad, 0xca, 0xe8, 0x60, 0x79, 0xb3, 0x45, 0xb4, 0xb0, - 0x60, 0x2f, 0x10, 0x2d, 0x04, 0xca, 0x03, 0xe5, 0x81, 0xf2, 0x40, 0xf9, 0xda, 0x42, 0x79, 0x44, - 0x0b, 0x6b, 0x91, 0xb4, 0x20, 0x5a, 0x48, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, - 0x20, 0xb9, 0xdf, 0x11, 0x2d, 0x44, 0xb4, 0xd0, 0xc0, 0xb5, 0x20, 0x5a, 0x38, 0xbd, 0x0d, 0x4a, - 0x10, 0xd6, 0x7e, 0x78, 0xd6, 0x34, 0x11, 0x2d, 0xc4, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, - 0xf2, 0x50, 0xde, 0x6c, 0x11, 0x2d, 0x04, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, - 0xe6, 0x7e, 0x47, 0xb4, 0x10, 0x3c, 0x6d, 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, - 0x11, 0x2d, 0x04, 0x51, 0x83, 0xa8, 0x2b, 0xb9, 0x12, 0xa2, 0x85, 0x16, 0xa2, 0x56, 0xb9, 0x4c, - 0xd1, 0xac, 0x64, 0x61, 0x3e, 0x04, 0x5e, 0x17, 0xcd, 0x42, 0x15, 0x65, 0xbb, 0x28, 0x8b, 0xf5, - 0xa7, 0xf5, 0xc7, 0xcb, 0xd6, 0x7c, 0x58, 0xbf, 0xc9, 0xb0, 0x7e, 0x7d, 0x88, 0x1b, 0x86, 0xf5, - 0x19, 0xd6, 0x77, 0xf6, 0x26, 0x19, 0xd6, 0x67, 0x58, 0xbf, 0x7e, 0x41, 0xc1, 0x3e, 0x38, 0x58, - 0x07, 0x09, 0x6f, 0x82, 0x85, 0x37, 0x41, 0xc3, 0x8b, 0xe0, 0x61, 0x83, 0xac, 0x19, 0xd6, 0x57, - 0xf7, 0xee, 0x0c, 0xeb, 0x2b, 0x3e, 0x38, 0xcc, 0xfe, 0xf4, 0x36, 0x60, 0xf6, 0xad, 0xdd, 0xdf, - 0xac, 0x69, 0xc2, 0xec, 0xcf, 0x99, 0x26, 0xc3, 0xfa, 0xd6, 0x09, 0x81, 0xdd, 0xaa, 0xb4, 0xcc, - 0x95, 0x37, 0x5b, 0x86, 0xf5, 0x0b, 0xf6, 0x82, 0x61, 0x7d, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, - 0x94, 0xaf, 0x2d, 0x94, 0x67, 0x58, 0xbf, 0x16, 0x49, 0x0b, 0xc3, 0xfa, 0xa4, 0x0b, 0xa4, 0x0b, - 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0x61, 0x7d, 0x86, 0xf5, 0x0d, 0x5c, 0x0b, - 0xc3, 0xfa, 0xd3, 0xdb, 0xa0, 0x04, 0x61, 0xed, 0x87, 0x67, 0x4d, 0x93, 0x61, 0x7d, 0x4c, 0xd3, - 0x97, 0x84, 0xc4, 0x6e, 0x55, 0x2a, 0x0f, 0xe5, 0xcd, 0x96, 0x61, 0x7d, 0x40, 0x3d, 0xa0, 0x1e, - 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x6b, 0xee, 0x77, 0x86, 0xf5, 0xc1, 0xd3, 0x76, 0xa0, 0x85, 0x96, - 0x3e, 0xf0, 0xb4, 0xa7, 0x78, 0x9a, 0x61, 0x7d, 0x10, 0x35, 0x88, 0xba, 0x92, 0x2b, 0x31, 0xac, - 0xef, 0xcd, 0xb0, 0xfe, 0x78, 0x06, 0xbc, 0x2e, 0xb3, 0xfa, 0x5b, 0x15, 0xb6, 0x5a, 0x6d, 0x6b, - 0xad, 0x90, 0x95, 0x36, 0x54, 0x34, 0x18, 0xfa, 0xc3, 0x56, 0x96, 0xe6, 0xa8, 0xeb, 0x64, 0xfc, - 0x78, 0x47, 0xf9, 0xd3, 0x85, 0xa7, 0xf9, 0x33, 0x85, 0xaf, 0x2f, 0x7a, 0xe1, 0x49, 0xfe, 0x24, - 0xe1, 0x61, 0x27, 0x39, 0x8b, 0x3a, 0x49, 0x78, 0xfc, 0xfc, 0x53, 0x2f, 0x3d, 0xea, 0x5d, 0xef, - 0xfd, 0x35, 0xbe, 0xf9, 0x70, 0x4c, 0x14, 0x1d, 0x8f, 0xee, 0x7d, 0xab, 0x9a, 0x16, 0x2f, 0x73, - 0x65, 0xa1, 0x3d, 0xa4, 0xb5, 0x77, 0xfc, 0xde, 0x33, 0x82, 0xdb, 0xc4, 0xe9, 0xf6, 0x90, 0xd9, - 0x12, 0xee, 0x0d, 0x56, 0xc0, 0x58, 0x1b, 0xc5, 0x57, 0x3b, 0x08, 0x2e, 0x87, 0xdd, 0x6c, 0xfc, - 0x3e, 0xa4, 0x4c, 0xb6, 0x20, 0x91, 0x1e, 0x5c, 0x55, 0x68, 0x2b, 0xca, 0x0a, 0xbd, 0x88, 0x93, - 0xff, 0x1a, 0x24, 0xbf, 0x1e, 0x99, 0xaf, 0x45, 0xda, 0xab, 0x93, 0xf3, 0xea, 0x24, 0xbc, 0x2a, - 0xd9, 0x5e, 0xad, 0xe0, 0x2b, 0x2d, 0xa4, 0xd2, 0x98, 0xc9, 0x05, 0xc5, 0x4d, 0xf9, 0xce, 0x84, - 0x97, 0x56, 0x06, 0xaa, 0xa4, 0x8e, 0xa5, 0x56, 0x39, 0xd5, 0xac, 0x94, 0xea, 0x57, 0x46, 0xb5, - 0x2b, 0xa1, 0x66, 0x95, 0x4f, 0xb3, 0x4a, 0xa7, 0x49, 0x65, 0xb3, 0xda, 0xec, 0x81, 0x96, 0x9a, - 0x55, 0xa3, 0x35, 0xf1, 0x21, 0xca, 0x6a, 0x85, 0xf9, 0xba, 0x35, 0x97, 0x2b, 0xdc, 0x41, 0xae, - 0xb0, 0xfa, 0x0e, 0xdb, 0xdc, 0x71, 0x9b, 0x3b, 0x70, 0x53, 0x47, 0xae, 0xe3, 0xd0, 0x95, 0x1c, - 0xbb, 0xba, 0x83, 0x2f, 0x16, 0x44, 0xae, 0x90, 0xfe, 0xc6, 0xed, 0xfa, 0x07, 0x07, 0xeb, 0x20, - 0xe1, 0x4d, 0xb0, 0xf0, 0x26, 0x68, 0x78, 0x11, 0x3c, 0x74, 0x83, 0x88, 0x72, 0x30, 0x29, 0xde, - 0x30, 0x72, 0x85, 0xc8, 0x15, 0x6a, 0x3e, 0x38, 0xbd, 0x8d, 0xd3, 0xdb, 0xa0, 0xb7, 0xd1, 0xda, - 0xfd, 0xcd, 0x9a, 0x26, 0xbd, 0x8d, 0x73, 0xa6, 0x89, 0x5c, 0xa1, 0x75, 0x42, 0x60, 0xb7, 0x2a, - 0x43, 0x83, 0xe5, 0xcd, 0x16, 0xb9, 0xc2, 0x82, 0xbd, 0x40, 0xae, 0x10, 0x28, 0x0f, 0x94, 0x07, - 0xca, 0x03, 0xe5, 0x6b, 0x0b, 0xe5, 0x91, 0x2b, 0xac, 0x45, 0xd2, 0x82, 0x5c, 0x21, 0xe9, 0x02, - 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x82, 0xe4, 0x7e, 0x47, 0xae, 0x10, 0xb9, 0x42, 0x03, - 0xd7, 0x82, 0x5c, 0xe1, 0xf4, 0x36, 0x28, 0x41, 0x58, 0xfb, 0xe1, 0x59, 0xd3, 0x44, 0xae, 0x10, - 0xd3, 0xf4, 0x25, 0x21, 0xb1, 0x5b, 0x95, 0xca, 0x43, 0x79, 0xb3, 0x45, 0xae, 0x10, 0x50, 0x0f, - 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x9a, 0xfb, 0x1d, 0xb9, 0x42, 0xf0, 0xb4, 0x1d, 0x68, - 0xa1, 0xa5, 0x0f, 0x3c, 0xed, 0x29, 0x9e, 0x46, 0xae, 0x10, 0x44, 0x0d, 0xa2, 0xae, 0xe4, 0x4a, - 0xc8, 0x15, 0xea, 0x8b, 0x5a, 0xdd, 0x11, 0x2a, 0x9a, 0x15, 0x2c, 0xcc, 0xc7, 0xc0, 0xeb, 0xa2, - 0x58, 0xa8, 0xa2, 0x6c, 0x17, 0x65, 0xb1, 0xfe, 0xbc, 0xfe, 0x78, 0xd9, 0x9a, 0x8f, 0xeb, 0x37, - 0x19, 0xd7, 0xaf, 0x0f, 0x75, 0xc3, 0xb8, 0x3e, 0xe3, 0xfa, 0xce, 0xde, 0x24, 0xe3, 0xfa, 0x8c, - 0xeb, 0xd7, 0x2f, 0x28, 0xd8, 0x07, 0x07, 0xeb, 0x20, 0xe1, 0x4d, 0xb0, 0xf0, 0x26, 0x68, 0x78, - 0x11, 0x3c, 0x6c, 0xb0, 0x35, 0xe3, 0xfa, 0xea, 0xde, 0x9d, 0x71, 0x7d, 0xc5, 0x07, 0x87, 0xdb, - 0x9f, 0xde, 0x06, 0xdc, 0xbe, 0xb5, 0xfb, 0x9b, 0x35, 0x4d, 0xb8, 0xfd, 0x39, 0xd3, 0x64, 0x5c, - 0xdf, 0x3a, 0x21, 0xb0, 0x5b, 0x95, 0xa6, 0xb9, 0xf2, 0x66, 0xcb, 0xb8, 0x7e, 0xc1, 0x5e, 0x30, - 0xae, 0x0f, 0x94, 0x07, 0xca, 0x03, 0xe5, 0x81, 0xf2, 0xb5, 0x85, 0xf2, 0x8c, 0xeb, 0xd7, 0x22, - 0x69, 0x61, 0x5c, 0x9f, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x81, 0x74, 0x41, 0x72, 0xbf, - 0x33, 0xae, 0xcf, 0xb8, 0xbe, 0x81, 0x6b, 0x61, 0x5c, 0x7f, 0x7a, 0x1b, 0x94, 0x20, 0xac, 0xfd, - 0xf0, 0xac, 0x69, 0x32, 0xae, 0x8f, 0x69, 0xfa, 0x92, 0x90, 0xd8, 0xad, 0x4a, 0xe5, 0xa1, 0xbc, - 0xd9, 0x32, 0xae, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0xcd, 0xfd, 0xce, - 0xb8, 0x3e, 0x78, 0xda, 0x0e, 0xb4, 0xd0, 0xd2, 0x07, 0x9e, 0xf6, 0x14, 0x4f, 0x33, 0xae, 0x0f, - 0xa2, 0x06, 0x51, 0x57, 0x72, 0x25, 0xc6, 0xf5, 0x3d, 0x1a, 0xd7, 0x1f, 0x4f, 0x81, 0xd7, 0x65, - 0x5a, 0x7f, 0xab, 0xc2, 0x76, 0xab, 0x6d, 0xaf, 0x95, 0xb2, 0xd3, 0x86, 0x8a, 0x0e, 0x43, 0x7f, - 0xd8, 0xca, 0xd2, 0x1c, 0x79, 0x9d, 0x8c, 0x1f, 0xf0, 0x28, 0x7f, 0xbe, 0xf0, 0x34, 0x7f, 0xaa, - 0xf0, 0xf5, 0x45, 0x2f, 0x3c, 0xf9, 0xff, 0xd8, 0xfb, 0xdb, 0xa7, 0xb6, 0xb1, 0xa4, 0xff, 0x1f, - 0x7f, 0xce, 0x5f, 0x91, 0x72, 0xed, 0x83, 0x49, 0xd5, 0x68, 0x02, 0x0e, 0x37, 0x43, 0x9e, 0x19, - 0xe2, 0x64, 0x7c, 0x2d, 0x18, 0xff, 0xb8, 0xc9, 0xee, 0x7c, 0x32, 0xac, 0x4a, 0xb1, 0x05, 0x51, - 0xad, 0x91, 0xfd, 0x93, 0x65, 0x66, 0x52, 0x13, 0xfe, 0xf7, 0x6f, 0xd9, 0x96, 0x6d, 0x8c, 0x61, - 0x13, 0x62, 0x75, 0xf7, 0x91, 0xfc, 0xa2, 0xae, 0xda, 0xe1, 0x22, 0xe0, 0x3e, 0x3a, 0xea, 0xd3, - 0xef, 0x7e, 0xf7, 0xdd, 0xc9, 0x9e, 0xc5, 0xaf, 0x5d, 0x45, 0x67, 0xc1, 0x55, 0xe4, 0x1f, 0xbd, - 0xfe, 0xd0, 0x8f, 0x1b, 0xfd, 0xdb, 0xdd, 0xe3, 0xe9, 0xf2, 0xfd, 0x49, 0xb8, 0xe8, 0x68, 0xbc, - 0xfa, 0x8d, 0x62, 0x6a, 0xbd, 0xcc, 0x27, 0x0b, 0x9d, 0x23, 0xad, 0xf3, 0xe3, 0xfa, 0xb9, 0x11, - 0x3c, 0x2a, 0x39, 0x1f, 0x11, 0x99, 0x63, 0x91, 0xbf, 0xd2, 0x0a, 0x28, 0x6c, 0xe5, 0xde, 0x9b, - 0x1b, 0xc6, 0x93, 0xdd, 0x90, 0x52, 0xda, 0x59, 0x30, 0xe9, 0x11, 0x99, 0x42, 0x47, 0x51, 0x76, - 0xdc, 0x8b, 0x78, 0x0a, 0x40, 0x23, 0xd4, 0xaf, 0x17, 0xd2, 0xd7, 0x0a, 0xdd, 0xab, 0x87, 0xe8, - 0xd5, 0x43, 0xf1, 0xaa, 0x21, 0xf7, 0x62, 0x81, 0xaf, 0xf4, 0x38, 0x95, 0xca, 0x82, 0x37, 0x28, - 0xae, 0xca, 0xf7, 0xfa, 0xbc, 0xb4, 0x7c, 0x50, 0xa5, 0x19, 0x59, 0x6a, 0xf9, 0x53, 0xcd, 0x7c, - 0xa9, 0x7e, 0x7e, 0x54, 0x3b, 0x1f, 0x6a, 0x96, 0xff, 0x34, 0xcb, 0x77, 0x9a, 0xe4, 0x37, 0x8b, - 0x1d, 0x41, 0xd0, 0x9a, 0x69, 0x55, 0x69, 0x4f, 0x6d, 0x88, 0xf2, 0xcc, 0xc2, 0x4c, 0x6e, 0xc9, - 0x87, 0x16, 0x6e, 0x32, 0xb4, 0xb0, 0xf8, 0x06, 0xdb, 0xdc, 0x70, 0x9b, 0x1b, 0x70, 0x53, 0x43, - 0xae, 0x63, 0xd0, 0x95, 0x0c, 0xbb, 0xba, 0x81, 0x9f, 0x09, 0x64, 0x68, 0x21, 0x55, 0x8e, 0x2f, - 0xca, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x2e, 0x88, - 0x28, 0x83, 0xc9, 0x6c, 0x87, 0x19, 0x5a, 0xc8, 0xd0, 0x42, 0xcd, 0x07, 0xa7, 0xc2, 0x71, 0xbe, - 0x0c, 0x2a, 0x1c, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0x52, 0xe1, 0xb8, 0xa4, 0x9a, 0x0c, 0x2d, 0xb4, - 0x76, 0x08, 0xec, 0xa4, 0xd2, 0x3a, 0xb8, 0xba, 0xda, 0x32, 0xb4, 0x70, 0x16, 0xbd, 0x60, 0x68, - 0x21, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0x33, 0xb4, 0xb0, 0x14, 0x4e, - 0x0b, 0x43, 0x0b, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, - 0x43, 0x0b, 0x19, 0x5a, 0x68, 0x60, 0x5a, 0x18, 0x5a, 0x38, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, - 0xbc, 0xa8, 0x9a, 0x0c, 0x2d, 0x44, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, - 0x6d, 0x19, 0x5a, 0x08, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0xce, - 0xd0, 0x42, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0x66, 0x68, 0x21, - 0x8c, 0x1a, 0x46, 0x5d, 0x48, 0x49, 0x0c, 0x2d, 0xb4, 0x18, 0x6a, 0x95, 0x8d, 0x29, 0x5a, 0x1c, - 0x59, 0x98, 0x35, 0x81, 0x97, 0x65, 0x66, 0xa1, 0xca, 0x64, 0xbb, 0x20, 0x0d, 0xf5, 0xbb, 0xf5, - 0x27, 0x62, 0x4b, 0xde, 0xac, 0x5f, 0xa5, 0x59, 0xbf, 0x3c, 0x81, 0x1b, 0x9a, 0xf5, 0x69, 0xd6, - 0xcf, 0x6d, 0x27, 0x69, 0xd6, 0xa7, 0x59, 0xbf, 0x7c, 0xa0, 0x60, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, - 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x0d, 0xb3, 0xa6, 0x59, 0x5f, 0xdd, 0xba, 0xd3, - 0xac, 0xaf, 0xf8, 0xe0, 0x44, 0xf6, 0xe7, 0xcb, 0x20, 0xb2, 0x6f, 0x6d, 0xfe, 0x16, 0x55, 0x93, - 0xc8, 0xfe, 0x92, 0x6a, 0xd2, 0xac, 0x6f, 0xed, 0x10, 0xd8, 0x49, 0xa5, 0x64, 0x6e, 0x75, 0xb5, - 0xa5, 0x59, 0x7f, 0x16, 0xbd, 0xa0, 0x59, 0x1f, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x4b, - 0x4b, 0xe5, 0x69, 0xd6, 0x2f, 0x85, 0xd3, 0x42, 0xb3, 0x3e, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, - 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0xa7, 0x59, 0x9f, 0x66, 0x7d, 0x03, 0xd3, 0x42, 0xb3, 0xfe, - 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0xd2, 0xac, 0x8f, 0x6a, 0xba, 0xe2, 0x90, - 0xd8, 0x49, 0x25, 0xf3, 0xb0, 0xba, 0xda, 0xd2, 0xac, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, - 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0x4e, 0xb3, 0x3e, 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, 0x07, 0x9f, - 0x76, 0x94, 0x4f, 0xd3, 0xac, 0x0f, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, 0xcd, 0xfa, 0xce, 0x34, - 0xeb, 0x4f, 0x7a, 0xc0, 0xcb, 0xd2, 0xab, 0xbf, 0x51, 0x60, 0xad, 0xd5, 0xd6, 0xd6, 0x02, 0x69, - 0x69, 0x45, 0x65, 0x06, 0x43, 0x32, 0x6c, 0xa7, 0x71, 0xc6, 0xba, 0x9a, 0x93, 0xc7, 0x6b, 0x64, - 0x4f, 0xe7, 0xb7, 0xb2, 0x67, 0xf2, 0x0f, 0xae, 0xfb, 0x7e, 0x33, 0x7b, 0x12, 0xbf, 0x76, 0x15, - 0x9d, 0x05, 0x57, 0x91, 0x7f, 0xf4, 0xfa, 0x43, 0x3f, 0x6e, 0xf4, 0x6f, 0x77, 0x2f, 0x26, 0x8b, - 0xf7, 0x27, 0x81, 0xa2, 0xa3, 0xf1, 0xda, 0x37, 0x8a, 0xa9, 0xf1, 0x32, 0x9f, 0x2c, 0x74, 0x86, - 0xb4, 0xce, 0x8e, 0xdb, 0x67, 0x46, 0xf0, 0x98, 0xe4, 0x7a, 0x3c, 0x64, 0x8e, 0x44, 0xfe, 0x0a, - 0x2b, 0xa0, 0xac, 0x95, 0x41, 0x92, 0x86, 0x5e, 0xbf, 0xd7, 0x8d, 0xda, 0x5f, 0x46, 0xef, 0x6e, - 0x5b, 0x4c, 0x5d, 0xe7, 0x53, 0x5e, 0x1e, 0x4a, 0x14, 0x3a, 0x82, 0xb2, 0x03, 0x5e, 0xc4, 0x83, - 0xfe, 0x1a, 0xc1, 0x7d, 0xbd, 0x20, 0xbe, 0x56, 0xb0, 0x5e, 0x3d, 0x28, 0xaf, 0x1e, 0x7c, 0x57, - 0x0d, 0xb2, 0x17, 0x0b, 0x74, 0xa5, 0x07, 0xa8, 0x54, 0x16, 0x7c, 0x40, 0x71, 0x55, 0xbe, 0xd7, - 0xd9, 0xa5, 0xe5, 0x79, 0x2a, 0x4d, 0xc5, 0x52, 0xcb, 0x98, 0x6a, 0x66, 0x48, 0xf5, 0x33, 0xa2, - 0xda, 0x19, 0x50, 0xb3, 0x8c, 0xa7, 0x59, 0x86, 0xd3, 0x24, 0xa3, 0x59, 0xec, 0xa8, 0x81, 0xd6, - 0x14, 0xab, 0x4a, 0x7b, 0x6a, 0x43, 0x94, 0xa7, 0x14, 0x66, 0x72, 0x4b, 0x3e, 0xa6, 0x70, 0x93, - 0x31, 0x85, 0xc5, 0x37, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, 0x1d, 0x83, 0xae, - 0x64, 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, 0x63, 0x0a, 0xa9, 0x6b, 0x7c, 0x51, 0x7e, 0x70, 0xb0, - 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x74, 0x41, 0x44, 0x19, 0x4c, 0x66, - 0x3b, 0xcc, 0x98, 0x42, 0xc6, 0x14, 0x6a, 0x3e, 0x38, 0x35, 0x8d, 0xf3, 0x65, 0x50, 0xd3, 0x68, - 0x6d, 0xfe, 0x16, 0x55, 0x93, 0x9a, 0xc6, 0x25, 0xd5, 0x64, 0x4c, 0xa1, 0xb5, 0x43, 0x60, 0x27, - 0x95, 0x66, 0xc1, 0xd5, 0xd5, 0x96, 0x31, 0x85, 0xb3, 0xe8, 0x05, 0x63, 0x0a, 0xa1, 0xf2, 0x50, - 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x31, 0x85, 0xa5, 0x70, 0x5a, 0x18, 0x53, 0x88, - 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x19, 0x53, 0xc8, 0x98, - 0x42, 0x03, 0xd3, 0xc2, 0x98, 0xc2, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, 0xd5, 0x64, - 0x4c, 0x21, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, 0x98, 0x42, - 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0xc6, 0x14, 0xc2, 0xa7, - 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0x63, 0x0a, 0x61, 0xd4, 0x30, 0xea, - 0x42, 0x4a, 0x62, 0x4c, 0xa1, 0xda, 0x30, 0xab, 0x87, 0x43, 0x8a, 0x16, 0x87, 0x14, 0x66, 0x2d, - 0xe0, 0x65, 0x99, 0x52, 0xa8, 0x32, 0xcd, 0x2e, 0x48, 0x43, 0xfd, 0x5e, 0xfd, 0x89, 0xd8, 0x92, - 0xb7, 0xea, 0x57, 0x69, 0xd5, 0x2f, 0x4f, 0xd8, 0x86, 0x56, 0x7d, 0x5a, 0xf5, 0x73, 0xdb, 0x49, - 0x5a, 0xf5, 0x69, 0xd5, 0x2f, 0x1f, 0x28, 0xd8, 0x83, 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, - 0x80, 0x86, 0x13, 0xe0, 0x61, 0xc3, 0xab, 0x69, 0xd5, 0x57, 0xb7, 0xee, 0xb4, 0xea, 0x2b, 0x3e, - 0x38, 0x71, 0xfd, 0xf9, 0x32, 0x88, 0xeb, 0x5b, 0x9b, 0xbf, 0x45, 0xd5, 0x24, 0xae, 0xbf, 0xa4, - 0x9a, 0xb4, 0xea, 0x5b, 0x3b, 0x04, 0x76, 0x52, 0x29, 0x98, 0x5b, 0x5d, 0x6d, 0x69, 0xd5, 0x9f, - 0x45, 0x2f, 0x68, 0xd5, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x5a, - 0xf5, 0x4b, 0xe1, 0xb4, 0xd0, 0xaa, 0x8f, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, - 0x20, 0x79, 0xde, 0x69, 0xd5, 0xa7, 0x55, 0xdf, 0xc0, 0xb4, 0xd0, 0xaa, 0x3f, 0x5f, 0x06, 0x29, - 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, 0xb4, 0xea, 0xa3, 0x9a, 0xae, 0x38, 0x24, 0x76, 0x52, 0xc9, - 0x3c, 0xac, 0xae, 0xb6, 0xb4, 0xea, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, - 0xf3, 0xbc, 0xd3, 0xaa, 0x0f, 0x9f, 0xb6, 0x23, 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, - 0xb4, 0xea, 0xc3, 0xa8, 0x61, 0xd4, 0x85, 0x94, 0x44, 0xab, 0xbe, 0x23, 0xad, 0xfa, 0x93, 0x0e, - 0xf0, 0xb2, 0x74, 0xea, 0x6f, 0x14, 0x58, 0x67, 0xb5, 0x75, 0xb5, 0x30, 0x3a, 0x5a, 0x51, 0x99, - 0xbf, 0x90, 0x0c, 0xdb, 0x69, 0x9c, 0x31, 0xae, 0xe6, 0xe4, 0xe1, 0x1a, 0xd9, 0xb3, 0xf9, 0xad, - 0xec, 0x89, 0xfc, 0x83, 0xeb, 0xbe, 0xdf, 0xcc, 0x9e, 0xc3, 0xaf, 0x5d, 0x45, 0x67, 0xc1, 0x55, - 0xe4, 0x9f, 0x25, 0x69, 0xd8, 0x1a, 0xaf, 0xbd, 0xd1, 0xbf, 0xdd, 0xf6, 0x27, 0x21, 0xa2, 0xa3, - 0xf1, 0xca, 0x37, 0x8a, 0xa9, 0xed, 0x32, 0x9f, 0x2c, 0x74, 0x7e, 0xb4, 0xce, 0x8d, 0xcb, 0xe7, - 0x45, 0xf0, 0x88, 0xe4, 0x78, 0x34, 0x64, 0x8e, 0x43, 0xfe, 0xca, 0x2a, 0xa0, 0xa8, 0x95, 0x07, - 0x6f, 0x6c, 0x57, 0x4c, 0x55, 0xe7, 0xb3, 0x5d, 0x1e, 0x4a, 0x14, 0x3a, 0x7e, 0xb2, 0x63, 0x5d, - 0xc4, 0x43, 0xfd, 0x1a, 0x21, 0x7d, 0xbd, 0xd0, 0xbd, 0x56, 0x88, 0x5e, 0x3d, 0x14, 0xaf, 0x1e, - 0x72, 0x57, 0x0d, 0xad, 0x17, 0x0b, 0x70, 0xa5, 0xc7, 0xa6, 0x54, 0x16, 0xbc, 0x3f, 0x71, 0x55, - 0xbe, 0xd7, 0xcf, 0xa5, 0xe5, 0x73, 0x2a, 0xcd, 0xc2, 0x52, 0xcb, 0x93, 0x6a, 0xe6, 0x45, 0xf5, - 0xf3, 0xa0, 0xda, 0x79, 0x4f, 0xb3, 0x3c, 0xa7, 0x59, 0x5e, 0xd3, 0x24, 0x8f, 0x59, 0xec, 0x68, - 0x81, 0xd6, 0xec, 0xaa, 0x4a, 0x7b, 0x6a, 0x43, 0x94, 0x67, 0x13, 0x66, 0x72, 0x4b, 0x3e, 0x9c, - 0x70, 0x93, 0xe1, 0x84, 0xc5, 0x37, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, 0x1d, - 0x83, 0xae, 0x64, 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, 0xc3, 0x09, 0xa9, 0x66, 0x7c, 0x51, 0x7e, - 0x70, 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x74, 0x41, 0x44, 0x19, - 0x4c, 0x66, 0x3b, 0xcc, 0x70, 0x42, 0x86, 0x13, 0x6a, 0x3e, 0x38, 0x95, 0x8c, 0xf3, 0x65, 0x50, - 0xc9, 0x68, 0x6d, 0xfe, 0x16, 0x55, 0x93, 0x4a, 0xc6, 0x25, 0xd5, 0x64, 0x38, 0xa1, 0xb5, 0x43, - 0x60, 0x27, 0x95, 0x16, 0xc1, 0xd5, 0xd5, 0x96, 0xe1, 0x84, 0xb3, 0xe8, 0x05, 0xc3, 0x09, 0xa1, - 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0xe1, 0x84, 0xa5, 0x70, 0x5a, 0x18, - 0x4e, 0x88, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x19, 0x4e, - 0xc8, 0x70, 0x42, 0x03, 0xd3, 0xc2, 0x70, 0xc2, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, - 0xd5, 0x64, 0x38, 0x21, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, - 0x70, 0x42, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x86, 0x13, - 0xc2, 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0xc3, 0x09, 0x61, 0xd4, - 0x30, 0xea, 0x42, 0x4a, 0x62, 0x38, 0xa1, 0xd5, 0x20, 0xab, 0xdd, 0xc5, 0xe1, 0x84, 0x59, 0x0b, - 0x78, 0x59, 0xa6, 0x13, 0xaa, 0xcc, 0xb1, 0x0b, 0xd2, 0x50, 0xbf, 0x57, 0x7f, 0x22, 0xb6, 0xe4, - 0xad, 0xfa, 0x55, 0x5a, 0xf5, 0xcb, 0x13, 0xb6, 0xa1, 0x55, 0x9f, 0x56, 0xfd, 0xdc, 0x76, 0x92, - 0x56, 0x7d, 0x5a, 0xf5, 0xcb, 0x07, 0x0a, 0xf6, 0xe0, 0x60, 0x0d, 0x12, 0xce, 0x80, 0x85, 0x33, - 0xa0, 0xe1, 0x04, 0x78, 0xd8, 0xf0, 0x6a, 0x5a, 0xf5, 0xd5, 0xad, 0x3b, 0xad, 0xfa, 0x8a, 0x0f, - 0x4e, 0x5c, 0x7f, 0xbe, 0x0c, 0xe2, 0xfa, 0xd6, 0xe6, 0x6f, 0x51, 0x35, 0x89, 0xeb, 0x2f, 0xa9, - 0x26, 0xad, 0xfa, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x0a, 0xe6, 0x56, 0x57, 0x5b, 0x5a, 0xf5, 0x67, - 0xd1, 0x0b, 0x5a, 0xf5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x56, - 0xfd, 0x52, 0x38, 0x2d, 0xb4, 0xea, 0xe3, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, - 0x48, 0x9e, 0x77, 0x5a, 0xf5, 0x69, 0xd5, 0x37, 0x30, 0x2d, 0xb4, 0xea, 0xcf, 0x97, 0x41, 0x0a, - 0xc2, 0xda, 0x0e, 0x2f, 0xaa, 0x26, 0xad, 0xfa, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, - 0x0f, 0xab, 0xab, 0x2d, 0xad, 0xfa, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0xd7, - 0x3c, 0xef, 0xb4, 0xea, 0xc3, 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, - 0xad, 0xfa, 0x30, 0x6a, 0x18, 0x75, 0x21, 0x25, 0xd1, 0xaa, 0xef, 0x48, 0xab, 0xfe, 0xa4, 0x03, - 0xbc, 0x2c, 0x9d, 0xfa, 0x1b, 0x05, 0xd6, 0x59, 0x6d, 0x5d, 0x2d, 0x8c, 0x8e, 0x56, 0x54, 0xe6, - 0x2f, 0x24, 0xc3, 0x76, 0x1a, 0x67, 0x8c, 0xab, 0x39, 0x79, 0xb8, 0x46, 0xf6, 0x6c, 0x7e, 0x2b, - 0x7b, 0x22, 0xff, 0xe0, 0xba, 0xef, 0x37, 0xb3, 0xe7, 0xf0, 0x6b, 0x57, 0xd1, 0x59, 0x70, 0x15, - 0xf9, 0x67, 0x49, 0x1a, 0xb6, 0xc6, 0x6b, 0x6f, 0xf4, 0x6f, 0x77, 0xfd, 0x49, 0x88, 0xe8, 0x68, - 0xbc, 0xf2, 0x8d, 0x62, 0x6a, 0xbb, 0xcc, 0x27, 0x0b, 0x9d, 0x1f, 0xad, 0x73, 0xe3, 0xf2, 0x79, - 0x11, 0x3c, 0x22, 0x39, 0x1e, 0x0d, 0x99, 0xe3, 0x90, 0xbf, 0xb2, 0x0a, 0x28, 0xaa, 0xf0, 0x80, - 0x17, 0x95, 0x81, 0x2e, 0xc2, 0x03, 0x5c, 0xc4, 0x07, 0xb6, 0x68, 0x04, 0xef, 0xf5, 0x82, 0xf4, - 0x5a, 0xc1, 0x78, 0xf5, 0xa0, 0xbb, 0x7a, 0x70, 0x5d, 0x35, 0x88, 0x5e, 0x2c, 0x68, 0x95, 0x1e, - 0x90, 0x52, 0x09, 0xda, 0x69, 0x74, 0xab, 0xa0, 0xc4, 0xd3, 0x63, 0x99, 0xc9, 0x13, 0x56, 0x28, - 0x9d, 0xf8, 0x94, 0x5a, 0x16, 0x54, 0x33, 0xeb, 0xa9, 0x9f, 0xe5, 0xd4, 0xce, 0x6a, 0x9a, 0x65, - 0x31, 0xcd, 0xb2, 0x96, 0x26, 0x59, 0xca, 0x62, 0xc7, 0x02, 0xd4, 0xb2, 0x8e, 0x06, 0x9d, 0x46, - 0x4a, 0x9d, 0x45, 0x82, 0xf4, 0x58, 0xd0, 0xab, 0x9b, 0x52, 0x3c, 0x2f, 0x23, 0x5c, 0x5a, 0xb8, - 0xb8, 0x20, 0x16, 0x78, 0x04, 0x1e, 0x81, 0x47, 0xe0, 0x11, 0x78, 0x9c, 0x9d, 0xb7, 0xa8, 0x13, - 0xc6, 0x69, 0x94, 0x7e, 0x49, 0xc2, 0x2b, 0x4d, 0x88, 0x54, 0x28, 0xbb, 0xa9, 0x34, 0xb2, 0x47, - 0x3b, 0x08, 0x06, 0x06, 0x23, 0x88, 0x6b, 0xef, 0x1a, 0xfe, 0xd9, 0xe8, 0x7f, 0xce, 0x7f, 0x6f, - 0xd5, 0xb5, 0x8e, 0xfa, 0x38, 0x73, 0x3f, 0x50, 0x2d, 0x2d, 0x32, 0xaa, 0x12, 0x6e, 0xb4, 0x3e, - 0xec, 0xfa, 0x47, 0xb5, 0x83, 0xfa, 0x51, 0xfd, 0xad, 0x7f, 0xd1, 0x6c, 0x1c, 0xd6, 0xce, 0xce, - 0x2b, 0x65, 0x2c, 0xcf, 0x36, 0xda, 0xdf, 0xb3, 0xd3, 0xf3, 0xba, 0xdf, 0x3a, 0x39, 0x6a, 0x1c, - 0xfe, 0xee, 0x8f, 0xf6, 0x9a, 0xbd, 0xcd, 0x6f, 0x6f, 0x8f, 0x1a, 0xcd, 0x7f, 0x9e, 0x9d, 0xd7, - 0xce, 0xeb, 0x6c, 0x6a, 0xae, 0x06, 0x61, 0x1b, 0x43, 0x20, 0xa0, 0xac, 0xd5, 0x0f, 0xad, 0xa6, - 0x5f, 0xff, 0xd0, 0x6a, 0xb2, 0xab, 0x02, 0x26, 0xc0, 0x3f, 0x6b, 0xbd, 0x63, 0x63, 0x25, 0x36, - 0x16, 0x8d, 0xcd, 0x77, 0x63, 0x5f, 0x8f, 0xec, 0x00, 0x56, 0x56, 0xd2, 0xca, 0x7e, 0x68, 0x1d, - 0x9d, 0xb1, 0xab, 0x02, 0x3a, 0xbb, 0x8b, 0xce, 0x0a, 0x79, 0x5c, 0x50, 0x30, 0x0d, 0xed, 0x3d, - 0xbe, 0x38, 0x3a, 0x67, 0x7f, 0xe5, 0x10, 0x8d, 0xfd, 0x95, 0x0f, 0x21, 0x6c, 0xb3, 0xb7, 0xf9, - 0xed, 0xed, 0x87, 0x56, 0xf3, 0xc3, 0xb6, 0xff, 0xee, 0xe8, 0xe4, 0x5f, 0x67, 0xad, 0xfa, 0x21, - 0x3b, 0x9b, 0x2b, 0xaa, 0xe1, 0x2d, 0x48, 0x79, 0x0b, 0x06, 0x0a, 0xab, 0x22, 0xe9, 0xb2, 0xe8, - 0x79, 0xad, 0x42, 0xd6, 0x14, 0x84, 0x71, 0xf0, 0xa9, 0x1b, 0x76, 0xf4, 0xaa, 0x09, 0xa6, 0x02, + 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd7, 0x07, 0x51, 0x83, 0xa8, 0x83, + 0x5c, 0x89, 0x71, 0x7d, 0x8f, 0xc6, 0xf5, 0xc7, 0x53, 0xe0, 0x55, 0x99, 0xd6, 0xdf, 0x08, 0xd8, + 0x6e, 0xb5, 0xed, 0x35, 0x28, 0x3b, 0xad, 0xa9, 0xe8, 0x30, 0xf4, 0x87, 0xcd, 0xac, 0x9b, 0x23, + 0xaf, 0x93, 0xf1, 0x03, 0x1e, 0xe5, 0xcf, 0xd7, 0x38, 0xcd, 0x9f, 0xaa, 0xf1, 0xe6, 0xa2, 0xd7, + 0x38, 0xc9, 0x9f, 0xa5, 0x71, 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xea, 0x5d, 0xef, 0x1f, + 0x8f, 0xef, 0xff, 0xaf, 0xf1, 0xed, 0x37, 0xc6, 0x74, 0xd1, 0xf1, 0xe8, 0xee, 0x37, 0xc2, 0xb4, + 0x7a, 0x99, 0x2b, 0x0b, 0xed, 0x23, 0xad, 0xfd, 0xe3, 0xfb, 0xbe, 0x11, 0xdc, 0x2a, 0x8e, 0xb7, + 0x88, 0xcc, 0xb6, 0x70, 0x6f, 0xb4, 0x02, 0x06, 0x5b, 0x1b, 0x7d, 0xb9, 0xc9, 0x17, 0x93, 0x32, + 0xd7, 0x82, 0x46, 0x9a, 0x5a, 0x4d, 0x68, 0xfb, 0xc9, 0x4a, 0xbc, 0x88, 0xd3, 0xfe, 0x1a, 0xf4, + 0xbe, 0x1e, 0x8d, 0xaf, 0x45, 0xd7, 0xab, 0xd3, 0xf2, 0xea, 0xf4, 0xbb, 0x2a, 0xcd, 0x1e, 0x56, + 0xc0, 0x95, 0x96, 0x50, 0xa9, 0x35, 0x27, 0x7b, 0x5e, 0xd8, 0x88, 0x27, 0xdb, 0x32, 0x5f, 0x4f, + 0xd8, 0xa0, 0x74, 0xb4, 0xb0, 0xd4, 0xea, 0xa4, 0x9a, 0x75, 0x51, 0xfd, 0x3a, 0xa8, 0x76, 0xdd, + 0xd3, 0xac, 0xce, 0x69, 0x56, 0xd7, 0x34, 0xa9, 0x63, 0x86, 0xcd, 0x14, 0x68, 0x69, 0x57, 0xd5, + 0x06, 0x49, 0xb7, 0x15, 0xb5, 0xc6, 0xb3, 0xa6, 0x51, 0xff, 0x6a, 0x68, 0xa2, 0x53, 0x38, 0x7b, + 0x0f, 0x5a, 0x12, 0x61, 0x36, 0x43, 0xb6, 0xca, 0x25, 0x0e, 0xf5, 0x86, 0x1a, 0xc4, 0x12, 0x2b, + 0x1d, 0x48, 0xcc, 0x03, 0x8a, 0x69, 0x60, 0xd1, 0x09, 0x30, 0x4a, 0x81, 0xa6, 0x78, 0x93, 0xea, + 0x8d, 0x30, 0x86, 0x43, 0xb0, 0xca, 0xc3, 0xaf, 0x54, 0x45, 0x7e, 0xb1, 0x89, 0xd7, 0xbc, 0x2a, + 0x32, 0xa9, 0x86, 0x68, 0xe8, 0x6a, 0x0b, 0x56, 0x12, 0x04, 0xa9, 0xae, 0xa9, 0x3a, 0x91, 0x1a, + 0x57, 0xa0, 0x58, 0x9d, 0x82, 0x31, 0x80, 0x31, 0x80, 0x31, 0x80, 0x31, 0x08, 0x81, 0x31, 0x50, + 0xa2, 0x6c, 0x67, 0xb6, 0xb7, 0x0a, 0x75, 0xab, 0xec, 0x90, 0x41, 0xe8, 0x20, 0x74, 0x10, 0x3a, + 0x08, 0xdd, 0x27, 0x07, 0x5f, 0x2c, 0xc8, 0x71, 0x06, 0xcc, 0x3f, 0x6e, 0x56, 0x3f, 0x38, 0x58, + 0x07, 0x09, 0x6f, 0x82, 0x85, 0x37, 0x41, 0xc3, 0x8b, 0xe0, 0xa1, 0x1b, 0x44, 0x94, 0x83, 0x49, + 0xf1, 0x86, 0x39, 0xce, 0x80, 0xe3, 0x0c, 0x34, 0x1f, 0x9c, 0xd9, 0xc7, 0xbb, 0xdb, 0x60, 0xf6, + 0xd1, 0xda, 0xfd, 0x4d, 0x9b, 0x26, 0xb3, 0x8f, 0x33, 0xa6, 0xc9, 0x71, 0x06, 0xd6, 0x09, 0x81, + 0xdd, 0xaa, 0x88, 0x0a, 0x95, 0x37, 0x5b, 0x8e, 0x33, 0x28, 0xd8, 0x0b, 0x8e, 0x33, 0x00, 0xca, + 0x03, 0xe5, 0x81, 0xf2, 0x40, 0xf9, 0xca, 0x42, 0x79, 0x8e, 0x33, 0xa8, 0x44, 0xd2, 0xc2, 0x71, + 0x06, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0xe3, 0x0c, + 0x38, 0xce, 0xc0, 0xc0, 0xb5, 0x70, 0x9c, 0xc1, 0xdd, 0x6d, 0x50, 0x82, 0xb0, 0xf6, 0xc3, 0xd3, + 0xa6, 0xc9, 0x71, 0x06, 0x98, 0xa6, 0x2f, 0x09, 0x89, 0xdd, 0xaa, 0x54, 0x1e, 0xca, 0x9b, 0x2d, + 0xc7, 0x19, 0x00, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x5e, 0x73, 0xbf, 0x73, 0x9c, + 0x01, 0x78, 0xda, 0x0e, 0xb4, 0xd0, 0xd2, 0x07, 0x9e, 0xf6, 0x14, 0x4f, 0x73, 0x9c, 0x01, 0x88, + 0x1a, 0x44, 0x1d, 0xe4, 0x4a, 0x1c, 0x67, 0x60, 0x23, 0x88, 0x32, 0x75, 0x8c, 0x81, 0x86, 0x3a, + 0x8a, 0x9e, 0x59, 0xdd, 0xa8, 0xa8, 0xdd, 0xc7, 0x26, 0x6a, 0x7e, 0xa3, 0x65, 0x2b, 0x3e, 0xa6, + 0x5f, 0x67, 0x4c, 0xbf, 0x3a, 0x94, 0x0d, 0x63, 0xfa, 0x8c, 0xe9, 0x3b, 0x7b, 0x93, 0x8c, 0xe9, + 0x33, 0xa6, 0x5f, 0xbd, 0xa0, 0x60, 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, + 0xe1, 0x45, 0xf0, 0xb0, 0xc1, 0xd4, 0x8c, 0xe9, 0xab, 0x7b, 0x77, 0xc6, 0xf4, 0x15, 0x1f, 0x1c, + 0x4e, 0xff, 0xee, 0x36, 0xe0, 0xf4, 0xad, 0xdd, 0xdf, 0xb4, 0x69, 0xc2, 0xe9, 0xcf, 0x98, 0x26, + 0x63, 0xfa, 0xd6, 0x09, 0x81, 0xdd, 0xaa, 0x34, 0xcb, 0x95, 0x37, 0x5b, 0xc6, 0xf4, 0x0b, 0xf6, + 0x82, 0x31, 0x7d, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2c, 0x94, 0x67, 0x4c, 0xbf, + 0x12, 0x49, 0x0b, 0x63, 0xfa, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, + 0xfb, 0x9d, 0x31, 0x7d, 0xc6, 0xf4, 0x0d, 0x5c, 0x0b, 0x63, 0xfa, 0x77, 0xb7, 0x41, 0x09, 0xc2, + 0xda, 0x0f, 0x4f, 0x9b, 0x26, 0x63, 0xfa, 0x98, 0xa6, 0x2f, 0x09, 0x89, 0xdd, 0xaa, 0x54, 0x1e, + 0xca, 0x9b, 0x2d, 0x63, 0xfa, 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0xd7, 0xdc, + 0xef, 0x8c, 0xe9, 0x83, 0xa7, 0xed, 0x40, 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, 0x34, 0x63, + 0xfa, 0x20, 0x6a, 0x10, 0x75, 0x90, 0x2b, 0x31, 0xa6, 0xef, 0xc1, 0x98, 0xfe, 0x78, 0xfa, 0xbb, + 0x2a, 0x53, 0xfa, 0x1b, 0x01, 0xdb, 0xab, 0xb6, 0x9d, 0x06, 0x61, 0x9f, 0x35, 0x15, 0xdd, 0x85, + 0xfe, 0xb0, 0x99, 0x75, 0x73, 0xa4, 0x75, 0x32, 0x7e, 0xb0, 0xa3, 0xfc, 0xb9, 0x1a, 0xa7, 0xf9, + 0xd3, 0x34, 0xde, 0x5c, 0xf4, 0x1a, 0x27, 0xf9, 0x33, 0x34, 0x0e, 0xda, 0xe9, 0x59, 0xdc, 0x4e, + 0x1b, 0x47, 0xbd, 0xeb, 0xfd, 0xbf, 0xc6, 0xf7, 0xdd, 0x18, 0xf3, 0x42, 0xc7, 0xa3, 0xdb, 0xde, + 0x08, 0xd3, 0xcc, 0x05, 0x4d, 0x5c, 0x49, 0xde, 0x42, 0x55, 0xd6, 0x42, 0x49, 0xce, 0x42, 0x4d, + 0xc6, 0x42, 0x93, 0xda, 0xd4, 0xa7, 0x32, 0xb5, 0xa9, 0x4b, 0x33, 0xaa, 0xd2, 0x8c, 0x9a, 0x34, + 0xa1, 0x22, 0xc3, 0x0e, 0xfa, 0x5a, 0xf2, 0x13, 0xb5, 0x41, 0xd2, 0x6d, 0x45, 0xad, 0xf1, 0xb8, + 0x48, 0xd4, 0xbf, 0x1a, 0x9a, 0x48, 0x0d, 0xcd, 0xde, 0x83, 0x96, 0xca, 0x87, 0xcd, 0x9c, 0x8c, + 0x32, 0x4b, 0xa1, 0x5e, 0x13, 0x43, 0xef, 0xa8, 0xd2, 0x81, 0xc4, 0x3c, 0xa0, 0x98, 0x06, 0x96, + 0x6a, 0xb2, 0x21, 0xea, 0xb5, 0x2c, 0xc3, 0x39, 0x16, 0xe5, 0xf9, 0x15, 0x08, 0x0e, 0x08, 0x8e, + 0x45, 0x08, 0x0e, 0x05, 0xce, 0x4d, 0x90, 0x22, 0xd8, 0x08, 0xc8, 0xf4, 0xb4, 0x4c, 0xce, 0x57, + 0x53, 0xab, 0x89, 0xf2, 0x39, 0x4e, 0x68, 0x33, 0x99, 0x7d, 0xe0, 0xde, 0x4a, 0x05, 0x2c, 0xb4, + 0xd6, 0xa9, 0x5f, 0xf7, 0xba, 0x51, 0x72, 0xdd, 0x93, 0xb3, 0xce, 0x22, 0xfa, 0xde, 0x5b, 0x4b, + 0x68, 0xaf, 0xc9, 0x92, 0x61, 0xe2, 0xd8, 0x46, 0x03, 0xcb, 0xe8, 0x61, 0x17, 0x2d, 0xac, 0xa2, + 0x8e, 0x4d, 0xd4, 0xb1, 0x88, 0x2a, 0xf6, 0x08, 0x2b, 0xba, 0x4a, 0x93, 0x57, 0xb5, 0xa9, 0x52, + 0x90, 0x5a, 0xe9, 0x40, 0xb1, 0x00, 0xa5, 0x5e, 0x41, 0xd8, 0xa2, 0x82, 0x10, 0x0e, 0x01, 0x44, + 0x05, 0x81, 0x0a, 0x82, 0xb9, 0x13, 0x2e, 0x16, 0x6a, 0x4e, 0x7c, 0x88, 0x72, 0xd5, 0x20, 0x5f, + 0xb7, 0xe2, 0x27, 0x14, 0xc0, 0xd8, 0x57, 0xc0, 0x61, 0x9b, 0x3b, 0x6e, 0x73, 0x07, 0x6e, 0xea, + 0xc8, 0x75, 0x1c, 0xba, 0x92, 0x63, 0x57, 0x77, 0xf0, 0xc5, 0x82, 0x9c, 0x50, 0xc0, 0x48, 0xe3, + 0x66, 0xf5, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0xba, + 0x41, 0x44, 0x39, 0x98, 0x14, 0x6f, 0x98, 0x13, 0x0a, 0x38, 0xa1, 0x40, 0xf3, 0xc1, 0x19, 0x67, + 0xbc, 0xbb, 0x0d, 0xc6, 0x19, 0xad, 0xdd, 0xdf, 0xb4, 0x69, 0x32, 0xce, 0x38, 0x63, 0x9a, 0x9c, + 0x50, 0x60, 0x9d, 0x10, 0xd8, 0xad, 0x8a, 0x4e, 0x50, 0x79, 0xb3, 0xe5, 0x84, 0x82, 0x82, 0xbd, + 0xe0, 0x84, 0x02, 0xa0, 0x3c, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2c, 0x94, 0xe7, 0x84, 0x82, + 0x4a, 0x24, 0x2d, 0x9c, 0x50, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x40, 0xba, 0x20, + 0xb9, 0xdf, 0x39, 0xa1, 0x80, 0x13, 0x0a, 0x0c, 0x5c, 0x0b, 0x27, 0x14, 0xdc, 0xdd, 0x06, 0x25, + 0x08, 0x6b, 0x3f, 0x3c, 0x6d, 0x9a, 0x9c, 0x50, 0x80, 0x69, 0xfa, 0x92, 0x90, 0xd8, 0xad, 0x4a, + 0xe5, 0xa1, 0xbc, 0xd9, 0x72, 0x42, 0x01, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, + 0x35, 0xf7, 0x3b, 0x27, 0x14, 0x80, 0xa7, 0xed, 0x40, 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, + 0x34, 0x27, 0x14, 0x80, 0xa8, 0x41, 0xd4, 0x41, 0xae, 0xc4, 0x09, 0x05, 0x6a, 0xaa, 0x55, 0x77, + 0xf2, 0x44, 0xd3, 0xe7, 0x13, 0xe4, 0xc3, 0xdf, 0x55, 0xd1, 0xef, 0x53, 0x91, 0xb3, 0x8f, 0x4d, + 0xb4, 0x7d, 0x15, 0xf4, 0xd6, 0x1f, 0x86, 0x56, 0xf5, 0x21, 0xfd, 0x3a, 0x43, 0xfa, 0xd5, 0x21, + 0x6c, 0x18, 0xd2, 0x67, 0x48, 0xdf, 0xd9, 0x9b, 0x64, 0x48, 0x9f, 0x21, 0xfd, 0xea, 0x05, 0x05, + 0xfb, 0xe0, 0x60, 0x1d, 0x24, 0xbc, 0x09, 0x16, 0xde, 0x04, 0x0d, 0x2f, 0x82, 0x87, 0x0d, 0xa2, + 0x66, 0x48, 0x5f, 0xdd, 0xbb, 0x33, 0xa4, 0xaf, 0xf8, 0xe0, 0x30, 0xfa, 0x77, 0xb7, 0x01, 0xa3, + 0x6f, 0xed, 0xfe, 0xa6, 0x4d, 0x13, 0x46, 0x7f, 0xc6, 0x34, 0x19, 0xd2, 0xb7, 0x4e, 0x08, 0xec, + 0x56, 0xa5, 0x55, 0xae, 0xbc, 0xd9, 0x32, 0xa4, 0x5f, 0xb0, 0x17, 0x0c, 0xe9, 0x03, 0xe5, 0x81, + 0xf2, 0x40, 0x79, 0xa0, 0x7c, 0x65, 0xa1, 0x3c, 0x43, 0xfa, 0x95, 0x48, 0x5a, 0x18, 0xd2, 0x27, + 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x0c, 0xe9, 0x33, 0xa4, + 0x6f, 0xe0, 0x5a, 0x18, 0xd2, 0xbf, 0xbb, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xda, 0x34, 0x19, + 0xd2, 0xc7, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd2, 0x07, + 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x48, 0x1f, 0x3c, 0x6d, + 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd2, 0x07, 0x51, 0x83, 0xa8, 0x83, + 0x5c, 0x89, 0x21, 0x7d, 0xf3, 0x21, 0xfd, 0xf1, 0xec, 0x77, 0x55, 0x66, 0xf4, 0x37, 0x02, 0xb6, + 0x56, 0x6d, 0x2b, 0x0d, 0xc0, 0x3a, 0x6b, 0x2a, 0x9a, 0x0b, 0xfd, 0x61, 0x33, 0xeb, 0xe6, 0x28, + 0xeb, 0x64, 0xfc, 0x58, 0x47, 0xf9, 0x53, 0x35, 0x4e, 0xf3, 0x67, 0x69, 0xbc, 0xb9, 0xe8, 0x35, + 0x4e, 0xf2, 0x27, 0x68, 0x1c, 0xb4, 0xd3, 0xb3, 0xb8, 0x9d, 0x36, 0x8e, 0xeb, 0x9f, 0x7a, 0xdd, + 0xc3, 0xeb, 0x5e, 0xb7, 0x31, 0x66, 0x84, 0x8e, 0x47, 0x37, 0xbd, 0x11, 0xa6, 0x89, 0xcb, 0x5c, + 0x59, 0x68, 0xd3, 0x68, 0x6d, 0x16, 0x3f, 0x37, 0x89, 0xe0, 0xbe, 0x70, 0xb3, 0x1f, 0x64, 0xf6, + 0x80, 0x7b, 0x0b, 0x15, 0xb0, 0xce, 0xda, 0xf8, 0x33, 0x5d, 0xf7, 0x3a, 0x72, 0xb3, 0xfd, 0x05, + 0x29, 0x74, 0x6f, 0x2d, 0xa1, 0x7d, 0x26, 0x2b, 0xd7, 0x22, 0x4e, 0xe1, 0x6b, 0x50, 0xf5, 0x7a, + 0x94, 0xbc, 0x16, 0xf5, 0xae, 0x4e, 0xb1, 0xab, 0x53, 0xe9, 0xaa, 0x94, 0x79, 0x58, 0x91, 0x55, + 0x5a, 0x0e, 0xa5, 0x36, 0x95, 0xe1, 0x89, 0x9b, 0xf2, 0xbd, 0x39, 0x2d, 0xad, 0xbc, 0x52, 0x49, + 0xe3, 0x4a, 0xad, 0xfe, 0xa9, 0x59, 0xef, 0xd4, 0xaf, 0x6f, 0x6a, 0xd7, 0x33, 0xcd, 0xea, 0x97, + 0x66, 0xf5, 0x4a, 0x93, 0xfa, 0x64, 0xd8, 0x5c, 0x80, 0x96, 0x26, 0x55, 0xad, 0x39, 0xf1, 0x21, + 0xca, 0x9a, 0x83, 0xf9, 0xba, 0x15, 0x17, 0x1d, 0xdc, 0x42, 0x74, 0x30, 0x7c, 0x87, 0x6d, 0xee, + 0xb8, 0xcd, 0x1d, 0xb8, 0xa9, 0x23, 0xd7, 0x71, 0xe8, 0x4a, 0x8e, 0x5d, 0xdd, 0xc1, 0x17, 0x0b, + 0x22, 0x3a, 0x48, 0x97, 0xe2, 0x66, 0xf5, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, + 0x34, 0xbc, 0x08, 0x1e, 0xba, 0x41, 0x44, 0x39, 0x98, 0x14, 0x6f, 0x18, 0xd1, 0x41, 0x44, 0x07, + 0x35, 0x1f, 0x9c, 0x0e, 0xc5, 0xbb, 0xdb, 0xa0, 0x43, 0xd1, 0xda, 0xfd, 0x4d, 0x9b, 0x26, 0x1d, + 0x8a, 0x33, 0xa6, 0x89, 0xe8, 0xa0, 0x75, 0x42, 0x60, 0xb7, 0x2a, 0xa3, 0x7f, 0xe5, 0xcd, 0x16, + 0xd1, 0xc1, 0x82, 0xbd, 0x40, 0x74, 0x10, 0x28, 0x0f, 0x94, 0x07, 0xca, 0x03, 0xe5, 0x2b, 0x0b, + 0xe5, 0x11, 0x1d, 0xac, 0x44, 0xd2, 0x82, 0xe8, 0x20, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, + 0x02, 0xe9, 0x82, 0xe4, 0x7e, 0x47, 0x74, 0x10, 0xd1, 0x41, 0x03, 0xd7, 0x82, 0xe8, 0xe0, 0xdd, + 0x6d, 0x50, 0x82, 0xb0, 0xf6, 0xc3, 0xd3, 0xa6, 0x89, 0xe8, 0x20, 0xa6, 0xe9, 0x4b, 0x42, 0x62, + 0xb7, 0x2a, 0x95, 0x87, 0xf2, 0x66, 0x8b, 0xe8, 0x20, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, + 0x03, 0xea, 0x35, 0xf7, 0x3b, 0xa2, 0x83, 0xe0, 0x69, 0x3b, 0xd0, 0x42, 0x4b, 0x1f, 0x78, 0xda, + 0x53, 0x3c, 0x8d, 0xe8, 0x20, 0x88, 0x1a, 0x44, 0x1d, 0xe4, 0x4a, 0x88, 0x0e, 0x2a, 0x2b, 0x56, + 0x5d, 0xf7, 0x46, 0xbf, 0x7d, 0x4f, 0x74, 0x30, 0x1f, 0xfe, 0xae, 0x8a, 0xea, 0xa0, 0x8a, 0x4a, + 0x5d, 0x9c, 0x25, 0xfa, 0x53, 0xfa, 0xe3, 0x65, 0x2b, 0x3e, 0xa4, 0x5f, 0x67, 0x48, 0xbf, 0x3a, + 0x84, 0x0d, 0x43, 0xfa, 0x0c, 0xe9, 0x3b, 0x7b, 0x93, 0x0c, 0xe9, 0x33, 0xa4, 0x5f, 0xbd, 0xa0, + 0x60, 0x1f, 0x1c, 0xac, 0x83, 0x84, 0x37, 0xc1, 0xc2, 0x9b, 0xa0, 0xe1, 0x45, 0xf0, 0xb0, 0x41, + 0xd4, 0x0c, 0xe9, 0xab, 0x7b, 0x77, 0x86, 0xf4, 0x15, 0x1f, 0x1c, 0x46, 0xff, 0xee, 0x36, 0x60, + 0xf4, 0xad, 0xdd, 0xdf, 0xb4, 0x69, 0xc2, 0xe8, 0xcf, 0x98, 0x26, 0x43, 0xfa, 0xd6, 0x09, 0x81, + 0xdd, 0xaa, 0xb4, 0xca, 0x95, 0x37, 0x5b, 0x86, 0xf4, 0x0b, 0xf6, 0x82, 0x21, 0x7d, 0xa0, 0x3c, + 0x50, 0x1e, 0x28, 0x0f, 0x94, 0xaf, 0x2c, 0x94, 0x67, 0x48, 0xbf, 0x12, 0x49, 0x0b, 0x43, 0xfa, + 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0xa4, 0x0b, 0x92, 0xfb, 0x9d, 0x21, 0x7d, 0x86, + 0xf4, 0x0d, 0x5c, 0x0b, 0x43, 0xfa, 0x77, 0xb7, 0x41, 0x09, 0xc2, 0xda, 0x0f, 0x4f, 0x9b, 0x26, + 0x43, 0xfa, 0x98, 0xa6, 0x2f, 0x09, 0x89, 0xdd, 0xaa, 0x54, 0x1e, 0xca, 0x9b, 0x2d, 0x43, 0xfa, + 0x80, 0x7a, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0xd7, 0xdc, 0xef, 0x0c, 0xe9, 0x83, 0xa7, + 0xed, 0x40, 0x0b, 0x2d, 0x7d, 0xe0, 0x69, 0x4f, 0xf1, 0x34, 0x43, 0xfa, 0x20, 0x6a, 0x10, 0x75, + 0x90, 0x2b, 0x31, 0xa4, 0x6f, 0x3e, 0xa4, 0x3f, 0x9e, 0xfd, 0xae, 0xca, 0x8c, 0xfe, 0x46, 0xc0, + 0xd6, 0xaa, 0x6d, 0xa5, 0x01, 0x58, 0x67, 0x4d, 0x45, 0x73, 0xa1, 0x3f, 0x6c, 0x66, 0xdd, 0x1c, + 0x65, 0x9d, 0x8c, 0x1f, 0xeb, 0x28, 0x7f, 0xaa, 0xc6, 0x69, 0xfe, 0x2c, 0x8d, 0x37, 0x17, 0xbd, + 0xc6, 0x49, 0xfe, 0x04, 0x8d, 0x83, 0x76, 0x7a, 0x16, 0xb7, 0xd3, 0xc6, 0x71, 0xfd, 0x53, 0xaf, + 0xfb, 0xa9, 0xd7, 0x19, 0x34, 0xc6, 0x8c, 0xd0, 0xf1, 0xe8, 0xa6, 0x37, 0xc2, 0x34, 0x71, 0x99, + 0x2b, 0x0b, 0x6d, 0x1a, 0xad, 0xcd, 0xe2, 0xe7, 0x26, 0x11, 0xdc, 0x17, 0x6e, 0xf6, 0x83, 0xcc, + 0x1e, 0x70, 0x6f, 0xa1, 0x02, 0xd6, 0x59, 0xeb, 0xec, 0xdc, 0x7e, 0xa6, 0xb4, 0x77, 0xbd, 0x1b, + 0x5d, 0x0e, 0x3b, 0x59, 0xda, 0x8c, 0x07, 0x72, 0xf5, 0x81, 0x82, 0x1e, 0x7a, 0x74, 0x55, 0xa1, + 0xbd, 0x27, 0x2b, 0xe1, 0x22, 0x4e, 0xeb, 0x6b, 0xd0, 0xf7, 0x7a, 0x34, 0xbd, 0x16, 0x1d, 0xaf, + 0x4e, 0xbb, 0xab, 0xd3, 0xeb, 0xaa, 0x34, 0x7a, 0x58, 0xd1, 0x56, 0x5a, 0x22, 0xa5, 0x36, 0x95, + 0xf5, 0x89, 0x9b, 0xf2, 0xbd, 0xd9, 0x2d, 0xad, 0x5c, 0x53, 0x49, 0xf7, 0x4a, 0xad, 0x26, 0xaa, + 0x59, 0x03, 0xd5, 0xaf, 0x79, 0x6a, 0xd7, 0x38, 0xcd, 0x6a, 0x9a, 0x66, 0x35, 0x4c, 0x93, 0x9a, + 0x65, 0xd8, 0xfc, 0x80, 0x96, 0x4e, 0x55, 0xad, 0x39, 0xf1, 0x21, 0xca, 0x3a, 0x84, 0xf9, 0xba, + 0x15, 0x17, 0x22, 0xdc, 0x42, 0x88, 0x30, 0x7c, 0x87, 0x6d, 0xee, 0xb8, 0xcd, 0x1d, 0xb8, 0xa9, + 0x23, 0xd7, 0x71, 0xe8, 0x4a, 0x8e, 0x5d, 0xdd, 0xc1, 0x17, 0x0b, 0x22, 0x44, 0x48, 0xe7, 0xe2, + 0x66, 0xf5, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, 0x34, 0xbc, 0x08, 0x1e, 0xba, + 0x41, 0x44, 0x39, 0x98, 0x14, 0x6f, 0x18, 0x21, 0x42, 0x84, 0x08, 0x35, 0x1f, 0x9c, 0xae, 0xc5, + 0xbb, 0xdb, 0xa0, 0x6b, 0xd1, 0xda, 0xfd, 0x4d, 0x9b, 0x26, 0x5d, 0x8b, 0x33, 0xa6, 0x89, 0x10, + 0xa1, 0x75, 0x42, 0x60, 0xb7, 0x2a, 0xe3, 0x80, 0xe5, 0xcd, 0x16, 0x21, 0xc2, 0x82, 0xbd, 0x40, + 0x88, 0x10, 0x28, 0x0f, 0x94, 0x07, 0xca, 0x03, 0xe5, 0x2b, 0x0b, 0xe5, 0x11, 0x22, 0xac, 0x44, + 0xd2, 0x82, 0x10, 0x21, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x82, 0xe4, 0x7e, + 0x47, 0x88, 0x10, 0x21, 0x42, 0x03, 0xd7, 0x82, 0x10, 0xe1, 0xdd, 0x6d, 0x50, 0x82, 0xb0, 0xf6, + 0xc3, 0xd3, 0xa6, 0x89, 0x10, 0x21, 0xa6, 0xe9, 0x4b, 0x42, 0x62, 0xb7, 0x2a, 0x95, 0x87, 0xf2, + 0x66, 0x8b, 0x10, 0x21, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, 0x03, 0xea, 0x35, 0xf7, 0x3b, + 0x42, 0x84, 0xe0, 0x69, 0x3b, 0xd0, 0x42, 0x4b, 0x1f, 0x78, 0xda, 0x53, 0x3c, 0x8d, 0x10, 0x21, + 0x88, 0x1a, 0x44, 0x1d, 0xe4, 0x4a, 0x08, 0x11, 0xea, 0xa9, 0x58, 0x3d, 0x22, 0x54, 0x34, 0x2d, + 0x49, 0x98, 0x8f, 0x81, 0x57, 0x45, 0x93, 0x50, 0x45, 0xc3, 0x2e, 0xce, 0x12, 0xfd, 0x79, 0xfd, + 0xf1, 0xb2, 0x15, 0x1f, 0xd7, 0xaf, 0x33, 0xae, 0x5f, 0x1d, 0xea, 0x86, 0x71, 0x7d, 0xc6, 0xf5, + 0x9d, 0xbd, 0x49, 0xc6, 0xf5, 0x19, 0xd7, 0xaf, 0x5e, 0x50, 0xb0, 0x0f, 0x0e, 0xd6, 0x41, 0xc2, + 0x9b, 0x60, 0xe1, 0x4d, 0xd0, 0xf0, 0x22, 0x78, 0xd8, 0x60, 0x6b, 0xc6, 0xf5, 0xd5, 0xbd, 0x3b, + 0xe3, 0xfa, 0x8a, 0x0f, 0x0e, 0xb7, 0x7f, 0x77, 0x1b, 0x70, 0xfb, 0xd6, 0xee, 0x6f, 0xda, 0x34, + 0xe1, 0xf6, 0x67, 0x4c, 0x93, 0x71, 0x7d, 0xeb, 0x84, 0xc0, 0x6e, 0x55, 0x9a, 0xe6, 0xca, 0x9b, + 0x2d, 0xe3, 0xfa, 0x05, 0x7b, 0xc1, 0xb8, 0x3e, 0x50, 0x1e, 0x28, 0x0f, 0x94, 0x07, 0xca, 0x57, + 0x16, 0xca, 0x33, 0xae, 0x5f, 0x89, 0xa4, 0x85, 0x71, 0x7d, 0xd2, 0x05, 0xd2, 0x05, 0xd2, 0x05, + 0xd2, 0x05, 0xd2, 0x05, 0xc9, 0xfd, 0xce, 0xb8, 0x3e, 0xe3, 0xfa, 0x06, 0xae, 0x85, 0x71, 0xfd, + 0xbb, 0xdb, 0xa0, 0x04, 0x61, 0xed, 0x87, 0xa7, 0x4d, 0x93, 0x71, 0x7d, 0x4c, 0xd3, 0x97, 0x84, + 0xc4, 0x6e, 0x55, 0x2a, 0x0f, 0xe5, 0xcd, 0x96, 0x71, 0x7d, 0x40, 0x3d, 0xa0, 0x1e, 0x50, 0x0f, + 0xa8, 0x07, 0xd4, 0x6b, 0xee, 0x77, 0xc6, 0xf5, 0xc1, 0xd3, 0x76, 0xa0, 0x85, 0x96, 0x3e, 0xf0, + 0xb4, 0xa7, 0x78, 0x9a, 0x71, 0x7d, 0x10, 0x35, 0x88, 0x3a, 0xc8, 0x95, 0x18, 0xd7, 0xf7, 0x68, + 0x5c, 0x7f, 0x3c, 0x05, 0x5e, 0x95, 0x69, 0xfd, 0x8d, 0x80, 0xed, 0x56, 0xdb, 0x5e, 0x83, 0xb2, + 0xd3, 0x9a, 0x8a, 0x0e, 0x43, 0x7f, 0xd8, 0xcc, 0xba, 0x39, 0xf2, 0x3a, 0x19, 0x3f, 0xe0, 0x51, + 0xfe, 0x7c, 0x8d, 0xd3, 0xfc, 0xa9, 0x1a, 0x6f, 0x2e, 0x7a, 0x8d, 0x93, 0xfc, 0x59, 0x1a, 0x07, + 0xed, 0xf4, 0x2c, 0x6e, 0xa7, 0x8d, 0xe3, 0x9d, 0x4f, 0xbd, 0xee, 0x51, 0xef, 0x7a, 0xf7, 0xfd, + 0xe4, 0xf6, 0x1b, 0x63, 0xba, 0xe8, 0x78, 0x74, 0xf7, 0x1b, 0x61, 0x5a, 0xbd, 0xcc, 0x95, 0x85, + 0xf6, 0x91, 0xd6, 0xfe, 0xf1, 0x7d, 0xdf, 0x08, 0x6e, 0x15, 0xc7, 0x5b, 0x44, 0x66, 0x5b, 0xb8, + 0x37, 0x5a, 0x01, 0x83, 0xad, 0xdd, 0xfb, 0x72, 0xc3, 0xee, 0xf8, 0x6d, 0x48, 0x19, 0x6d, 0x41, + 0x26, 0x3d, 0xb2, 0xa6, 0xd0, 0x56, 0x94, 0x95, 0x7b, 0x11, 0x2f, 0x01, 0x68, 0x50, 0xfd, 0x7a, + 0x94, 0xbe, 0x16, 0x75, 0xaf, 0x4e, 0xd1, 0xab, 0x53, 0xf1, 0xaa, 0x94, 0x7b, 0x58, 0xc1, 0x57, + 0x5a, 0x4e, 0xa5, 0x36, 0x95, 0x0d, 0x8a, 0x9b, 0xf2, 0xbd, 0x39, 0x2f, 0xad, 0x1c, 0x54, 0x49, + 0x23, 0x4b, 0xad, 0x7e, 0xaa, 0x59, 0x2f, 0xd5, 0xaf, 0x8f, 0x6a, 0xd7, 0x43, 0xcd, 0xea, 0x9f, + 0x66, 0xf5, 0x4e, 0x93, 0xfa, 0x66, 0xd8, 0x0c, 0x82, 0x96, 0xa6, 0x55, 0xad, 0x39, 0xf1, 0x21, + 0xca, 0x9a, 0x85, 0xf9, 0xba, 0x15, 0x17, 0x2d, 0xdc, 0x42, 0xb4, 0x30, 0x7c, 0x87, 0x6d, 0xee, + 0xb8, 0xcd, 0x1d, 0xb8, 0xa9, 0x23, 0xd7, 0x71, 0xe8, 0x4a, 0x8e, 0x5d, 0xdd, 0xc1, 0x17, 0x0b, + 0x22, 0x5a, 0x48, 0x97, 0xe3, 0x66, 0xf5, 0x83, 0x83, 0x75, 0x90, 0xf0, 0x26, 0x58, 0x78, 0x13, + 0x34, 0xbc, 0x08, 0x1e, 0xba, 0x41, 0x44, 0x39, 0x98, 0x14, 0x6f, 0x18, 0xd1, 0x42, 0x44, 0x0b, + 0x35, 0x1f, 0x9c, 0x0e, 0xc7, 0xbb, 0xdb, 0xa0, 0xc3, 0xd1, 0xda, 0xfd, 0x4d, 0x9b, 0x26, 0x1d, + 0x8e, 0x33, 0xa6, 0x89, 0x68, 0xa1, 0x75, 0x42, 0x60, 0xb7, 0x2a, 0xa3, 0x83, 0xe5, 0xcd, 0x16, + 0xd1, 0xc2, 0x82, 0xbd, 0x40, 0xb4, 0x10, 0x28, 0x0f, 0x94, 0x07, 0xca, 0x03, 0xe5, 0x2b, 0x0b, + 0xe5, 0x11, 0x2d, 0xac, 0x44, 0xd2, 0x82, 0x68, 0x21, 0xe9, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xe9, + 0x02, 0xe9, 0x82, 0xe4, 0x7e, 0x47, 0xb4, 0x10, 0xd1, 0x42, 0x03, 0xd7, 0x82, 0x68, 0xe1, 0xdd, + 0x6d, 0x50, 0x82, 0xb0, 0xf6, 0xc3, 0xd3, 0xa6, 0x89, 0x68, 0x21, 0xa6, 0xe9, 0x4b, 0x42, 0x62, + 0xb7, 0x2a, 0x95, 0x87, 0xf2, 0x66, 0x8b, 0x68, 0x21, 0xa0, 0x1e, 0x50, 0x0f, 0xa8, 0x07, 0xd4, + 0x03, 0xea, 0x35, 0xf7, 0x3b, 0xa2, 0x85, 0xe0, 0x69, 0x3b, 0xd0, 0x42, 0x4b, 0x1f, 0x78, 0xda, + 0x53, 0x3c, 0x8d, 0x68, 0x21, 0x88, 0x1a, 0x44, 0x1d, 0xe4, 0x4a, 0x88, 0x16, 0x5a, 0x88, 0x5a, + 0xe5, 0x32, 0x45, 0xd3, 0x92, 0x85, 0xf9, 0x10, 0x78, 0x55, 0x34, 0x0b, 0x55, 0x94, 0xed, 0xe2, + 0x2c, 0xd1, 0x9f, 0xd6, 0x1f, 0x2f, 0x5b, 0xf1, 0x61, 0xfd, 0x3a, 0xc3, 0xfa, 0xd5, 0x21, 0x6e, + 0x18, 0xd6, 0x67, 0x58, 0xdf, 0xd9, 0x9b, 0x64, 0x58, 0x9f, 0x61, 0xfd, 0xea, 0x05, 0x05, 0xfb, + 0xe0, 0x60, 0x1d, 0x24, 0xbc, 0x09, 0x16, 0xde, 0x04, 0x0d, 0x2f, 0x82, 0x87, 0x0d, 0xb2, 0x66, + 0x58, 0x5f, 0xdd, 0xbb, 0x33, 0xac, 0xaf, 0xf8, 0xe0, 0x30, 0xfb, 0x77, 0xb7, 0x01, 0xb3, 0x6f, + 0xed, 0xfe, 0xa6, 0x4d, 0x13, 0x66, 0x7f, 0xc6, 0x34, 0x19, 0xd6, 0xb7, 0x4e, 0x08, 0xec, 0x56, + 0xa5, 0x65, 0xae, 0xbc, 0xd9, 0x32, 0xac, 0x5f, 0xb0, 0x17, 0x0c, 0xeb, 0x03, 0xe5, 0x81, 0xf2, + 0x40, 0x79, 0xa0, 0x7c, 0x65, 0xa1, 0x3c, 0xc3, 0xfa, 0x95, 0x48, 0x5a, 0x18, 0xd6, 0x27, 0x5d, + 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0x0c, 0xeb, 0x33, 0xac, 0x6f, + 0xe0, 0x5a, 0x18, 0xd6, 0xbf, 0xbb, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xda, 0x34, 0x19, 0xd6, + 0xc7, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x19, 0xd6, 0x07, 0xd4, + 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x67, 0x58, 0x1f, 0x3c, 0x6d, 0x07, + 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x19, 0xd6, 0x07, 0x51, 0x83, 0xa8, 0x83, 0x5c, + 0x89, 0x61, 0x7d, 0x6f, 0x86, 0xf5, 0xc7, 0x33, 0xe0, 0x55, 0x99, 0xd5, 0xdf, 0x08, 0xd8, 0x6a, + 0xb5, 0xad, 0x35, 0x20, 0x2b, 0xad, 0xa9, 0x68, 0x30, 0xf4, 0x87, 0xcd, 0xac, 0x9b, 0xa3, 0xae, + 0x93, 0xf1, 0xe3, 0x1d, 0xe5, 0x4f, 0xd7, 0x38, 0xcd, 0x9f, 0xa9, 0xf1, 0xe6, 0xa2, 0xd7, 0x38, + 0xc9, 0x9f, 0xa4, 0x71, 0xd0, 0x4e, 0xcf, 0xe2, 0x76, 0xda, 0x38, 0xde, 0xf9, 0xd4, 0xeb, 0x1e, + 0xf5, 0xae, 0x77, 0xff, 0x1a, 0xdf, 0x7c, 0x63, 0x4c, 0x14, 0x1d, 0x8f, 0xee, 0x7d, 0x23, 0x4c, + 0x8b, 0x97, 0xb9, 0xb2, 0xd0, 0x1e, 0xd2, 0xda, 0x3b, 0x7e, 0xef, 0x19, 0xc1, 0x6d, 0xe2, 0x74, + 0x7b, 0xc8, 0x6c, 0x09, 0xf7, 0x06, 0x2b, 0x60, 0xac, 0xb5, 0xe2, 0xab, 0xed, 0x47, 0x97, 0xc3, + 0x4e, 0x36, 0x7e, 0x1f, 0x52, 0x26, 0x5b, 0x90, 0x48, 0x8f, 0xae, 0x2a, 0xb4, 0x15, 0x65, 0x85, + 0x5e, 0xc4, 0xc9, 0x7f, 0x0d, 0x92, 0x5f, 0x8f, 0xcc, 0xd7, 0x22, 0xed, 0xd5, 0xc9, 0x79, 0x75, + 0x12, 0x5e, 0x95, 0x6c, 0x0f, 0x2b, 0xf8, 0x4a, 0x0b, 0xa9, 0xd4, 0xa6, 0x72, 0x41, 0x71, 0x53, + 0xbe, 0x37, 0xe1, 0xa5, 0x95, 0x81, 0x2a, 0xa9, 0x63, 0xa9, 0x55, 0x4e, 0x35, 0x2b, 0xa5, 0xfa, + 0x95, 0x51, 0xed, 0x4a, 0xa8, 0x59, 0xe5, 0xd3, 0xac, 0xd2, 0x69, 0x52, 0xd9, 0x0c, 0x9b, 0x3d, + 0xd0, 0x52, 0xb3, 0xaa, 0x35, 0x27, 0x3e, 0x44, 0x59, 0xad, 0x30, 0x5f, 0xb7, 0xe2, 0x72, 0x85, + 0x5b, 0xc8, 0x15, 0x86, 0xef, 0xb0, 0xcd, 0x1d, 0xb7, 0xb9, 0x03, 0x37, 0x75, 0xe4, 0x3a, 0x0e, + 0x5d, 0xc9, 0xb1, 0xab, 0x3b, 0xf8, 0x62, 0x41, 0xe4, 0x0a, 0xe9, 0x6f, 0xdc, 0xac, 0x7e, 0x70, + 0xb0, 0x0e, 0x12, 0xde, 0x04, 0x0b, 0x6f, 0x82, 0x86, 0x17, 0xc1, 0x43, 0x37, 0x88, 0x28, 0x07, + 0x93, 0xe2, 0x0d, 0x23, 0x57, 0x88, 0x5c, 0xa1, 0xe6, 0x83, 0xd3, 0xdb, 0x78, 0x77, 0x1b, 0xf4, + 0x36, 0x5a, 0xbb, 0xbf, 0x69, 0xd3, 0xa4, 0xb7, 0x71, 0xc6, 0x34, 0x91, 0x2b, 0xb4, 0x4e, 0x08, + 0xec, 0x56, 0x65, 0x68, 0xb0, 0xbc, 0xd9, 0x22, 0x57, 0x58, 0xb0, 0x17, 0xc8, 0x15, 0x02, 0xe5, + 0x81, 0xf2, 0x40, 0x79, 0xa0, 0x7c, 0x65, 0xa1, 0x3c, 0x72, 0x85, 0x95, 0x48, 0x5a, 0x90, 0x2b, + 0x24, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x90, 0xdc, 0xef, 0xc8, 0x15, 0x22, + 0x57, 0x68, 0xe0, 0x5a, 0x90, 0x2b, 0xbc, 0xbb, 0x0d, 0x4a, 0x10, 0xd6, 0x7e, 0x78, 0xda, 0x34, + 0x91, 0x2b, 0xc4, 0x34, 0x7d, 0x49, 0x48, 0xec, 0x56, 0xa5, 0xf2, 0x50, 0xde, 0x6c, 0x91, 0x2b, + 0x04, 0xd4, 0x03, 0xea, 0x01, 0xf5, 0x80, 0x7a, 0x40, 0xbd, 0xe6, 0x7e, 0x47, 0xae, 0x10, 0x3c, + 0x6d, 0x07, 0x5a, 0x68, 0xe9, 0x03, 0x4f, 0x7b, 0x8a, 0xa7, 0x91, 0x2b, 0x04, 0x51, 0x83, 0xa8, + 0x83, 0x5c, 0x09, 0xb9, 0x42, 0x7d, 0x51, 0xab, 0x7b, 0x42, 0x45, 0xd3, 0x82, 0x85, 0xf9, 0x18, + 0x78, 0x55, 0x14, 0x0b, 0x55, 0x94, 0xed, 0xe2, 0x2c, 0xd1, 0x9f, 0xd7, 0x1f, 0x2f, 0x5b, 0xf1, + 0x71, 0xfd, 0x3a, 0xe3, 0xfa, 0xd5, 0xa1, 0x6e, 0x18, 0xd7, 0xff, 0xff, 0xd8, 0x7b, 0xdf, 0xa7, + 0xb6, 0xb1, 0xa4, 0x8f, 0xf7, 0x3d, 0x7f, 0x45, 0xca, 0xb5, 0x2f, 0x26, 0x55, 0xd1, 0x04, 0x1c, + 0x20, 0x43, 0xde, 0x19, 0xe2, 0x24, 0x7e, 0x16, 0x8c, 0x2f, 0x3f, 0xb2, 0x3b, 0x37, 0xc3, 0xaa, + 0x14, 0x5b, 0x10, 0xd5, 0x1a, 0xd9, 0x57, 0x96, 0x99, 0x49, 0x4d, 0xf8, 0xdf, 0x6f, 0xd9, 0x96, + 0x6d, 0x8c, 0x61, 0x13, 0x62, 0x75, 0xf7, 0x91, 0xfc, 0xa1, 0x9e, 0xda, 0xe1, 0x21, 0xe0, 0x3e, + 0x3a, 0xea, 0xd3, 0xdf, 0xfe, 0xf6, 0xaf, 0x43, 0xbb, 0x7e, 0x6e, 0x3b, 0x49, 0xbb, 0x3e, 0xed, + 0xfa, 0xe5, 0x03, 0x05, 0x7b, 0x70, 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, + 0x3c, 0x6c, 0xb8, 0x35, 0xed, 0xfa, 0xea, 0xd6, 0x9d, 0x76, 0x7d, 0xc5, 0x07, 0x27, 0xb6, 0x3f, + 0x5f, 0x06, 0xb1, 0x7d, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0xc4, 0xf6, 0x97, 0x54, 0x93, 0x76, 0x7d, + 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0x45, 0x73, 0xab, 0xab, 0x2d, 0xed, 0xfa, 0xb3, 0xe8, 0x05, 0xed, + 0xfa, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0x4f, 0xbb, 0x7e, 0x29, 0x9c, + 0x16, 0xda, 0xf5, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, + 0xed, 0xfa, 0xb4, 0xeb, 0x1b, 0x98, 0x16, 0xda, 0xf5, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, + 0x17, 0x55, 0x93, 0x76, 0x7d, 0x54, 0xd3, 0x15, 0x87, 0xc4, 0x4e, 0x2a, 0x99, 0x87, 0xd5, 0xd5, + 0x96, 0x76, 0x7d, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0xda, + 0xf5, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x76, 0x7d, 0x18, + 0x35, 0x8c, 0xba, 0x90, 0x92, 0x68, 0xd7, 0x77, 0xa8, 0x5d, 0x7f, 0xd2, 0x05, 0x5e, 0x96, 0x6e, + 0xfd, 0x8d, 0x02, 0xeb, 0xad, 0xb6, 0xbe, 0x16, 0x4a, 0x4f, 0x2b, 0x2a, 0x73, 0x18, 0x92, 0x61, + 0x3b, 0x8d, 0x33, 0xe6, 0xd5, 0x9c, 0x3c, 0x60, 0x23, 0x7b, 0x3e, 0xbf, 0x95, 0x3d, 0x95, 0xbf, + 0x7f, 0xd5, 0xf7, 0x9b, 0xd9, 0xb3, 0xf8, 0xb5, 0xcb, 0xe8, 0x34, 0xb8, 0x8c, 0xfc, 0xc3, 0x57, + 0x1f, 0xfb, 0x71, 0xa3, 0x7f, 0xb3, 0x7b, 0x34, 0x5d, 0xbe, 0x3f, 0x09, 0x17, 0x1d, 0x8e, 0x57, + 0xbf, 0x51, 0x4c, 0xad, 0x97, 0xf9, 0x64, 0xa1, 0x73, 0xa4, 0x75, 0x7e, 0x5c, 0x3f, 0x37, 0x82, + 0x47, 0x25, 0xe7, 0x23, 0x22, 0x73, 0x2c, 0xf2, 0x57, 0x5a, 0x01, 0x85, 0xad, 0xdc, 0x79, 0x73, + 0xc3, 0x78, 0xb2, 0x1b, 0x52, 0x4a, 0x3b, 0x0b, 0x26, 0x3d, 0x20, 0x53, 0xe8, 0x28, 0xca, 0x8e, + 0x7b, 0x11, 0x4f, 0x01, 0x68, 0x84, 0xfa, 0xf5, 0x42, 0xfa, 0x5a, 0xa1, 0x7b, 0xf5, 0x10, 0xbd, + 0x7a, 0x28, 0x5e, 0x35, 0xe4, 0x5e, 0x2c, 0xf0, 0x95, 0x1e, 0xa7, 0x52, 0x59, 0xf0, 0x06, 0xc5, + 0x55, 0xf9, 0x4e, 0x9f, 0x97, 0x96, 0x0f, 0xaa, 0x34, 0x23, 0x4b, 0x2d, 0x7f, 0xaa, 0x99, 0x2f, + 0xd5, 0xcf, 0x8f, 0x6a, 0xe7, 0x43, 0xcd, 0xf2, 0x9f, 0x66, 0xf9, 0x4e, 0x93, 0xfc, 0x66, 0xb1, + 0x23, 0x08, 0x5a, 0x33, 0xad, 0x2a, 0xed, 0xa9, 0x0d, 0x51, 0x9e, 0x59, 0x98, 0xc9, 0x2d, 0xf9, + 0xd0, 0xc2, 0x4d, 0x86, 0x16, 0x16, 0xdf, 0x60, 0x9b, 0x1b, 0x6e, 0x73, 0x03, 0x6e, 0x6a, 0xc8, + 0x75, 0x0c, 0xba, 0x92, 0x61, 0x57, 0x37, 0xf0, 0x33, 0x81, 0x0c, 0x2d, 0xa4, 0xca, 0xf1, 0x59, + 0xf9, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xd0, 0x05, 0x11, + 0x65, 0x30, 0x99, 0xed, 0x30, 0x43, 0x0b, 0x19, 0x5a, 0xa8, 0xf9, 0xe0, 0x54, 0x38, 0xce, 0x97, + 0x41, 0x85, 0xa3, 0xb5, 0xf9, 0x5b, 0x54, 0x4d, 0x2a, 0x1c, 0x97, 0x54, 0x93, 0xa1, 0x85, 0xd6, + 0x0e, 0x81, 0x9d, 0x54, 0x5a, 0x07, 0x57, 0x57, 0x5b, 0x86, 0x16, 0xce, 0xa2, 0x17, 0x0c, 0x2d, + 0x84, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x86, 0x16, 0x96, 0xc2, 0x69, + 0x61, 0x68, 0x21, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0x67, + 0x68, 0x21, 0x43, 0x0b, 0x0d, 0x4c, 0x0b, 0x43, 0x0b, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, + 0x17, 0x55, 0x93, 0xa1, 0x85, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, + 0x2d, 0x43, 0x0b, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0xaf, 0x79, 0xde, 0x19, + 0x5a, 0x08, 0x9f, 0xb6, 0x23, 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x0c, 0x2d, 0x84, + 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0xa1, 0x85, 0x16, 0x43, 0xad, 0xb2, 0x31, 0x45, 0x8b, 0x23, + 0x0b, 0xb3, 0x26, 0xf0, 0xb2, 0xcc, 0x2c, 0x54, 0x99, 0x6c, 0x17, 0xa4, 0xa1, 0x7e, 0xb7, 0xfe, + 0x44, 0x6c, 0xc9, 0x9b, 0xf5, 0xab, 0x34, 0xeb, 0x97, 0x27, 0x70, 0x43, 0xb3, 0x3e, 0xcd, 0xfa, + 0xb9, 0xed, 0x24, 0xcd, 0xfa, 0x34, 0xeb, 0x97, 0x0f, 0x14, 0xec, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, + 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xb0, 0x61, 0xd6, 0x34, 0xeb, 0xab, 0x5b, 0x77, 0x9a, + 0xf5, 0x15, 0x1f, 0x9c, 0xc8, 0xfe, 0x7c, 0x19, 0x44, 0xf6, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0x12, + 0xd9, 0x5f, 0x52, 0x4d, 0x9a, 0xf5, 0xad, 0x1d, 0x02, 0x3b, 0xa9, 0x94, 0xcc, 0xad, 0xae, 0xb6, + 0x34, 0xeb, 0xcf, 0xa2, 0x17, 0x34, 0xeb, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0x69, + 0xa9, 0x3c, 0xcd, 0xfa, 0xa5, 0x70, 0x5a, 0x68, 0xd6, 0xc7, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, + 0x5d, 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x34, 0xeb, 0xd3, 0xac, 0x6f, 0x60, 0x5a, 0x68, 0xd6, 0x9f, + 0x2f, 0x83, 0x14, 0x84, 0xb5, 0x1d, 0x5e, 0x54, 0x4d, 0x9a, 0xf5, 0x51, 0x4d, 0x57, 0x1c, 0x12, + 0x3b, 0xa9, 0x64, 0x1e, 0x56, 0x57, 0x5b, 0x9a, 0xf5, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, + 0x1e, 0x52, 0xaf, 0x79, 0xde, 0x69, 0xd6, 0x87, 0x4f, 0xdb, 0x91, 0x16, 0x4a, 0xfa, 0xe0, 0xd3, + 0x8e, 0xf2, 0x69, 0x9a, 0xf5, 0x61, 0xd4, 0x30, 0xea, 0x42, 0x4a, 0xa2, 0x59, 0xdf, 0x99, 0x66, + 0xfd, 0x49, 0x0f, 0x78, 0x59, 0x7a, 0xf5, 0x37, 0x0a, 0xac, 0xb5, 0xda, 0xda, 0x5a, 0x20, 0x2d, + 0xad, 0xa8, 0xcc, 0x60, 0x48, 0x86, 0xed, 0x34, 0xce, 0x58, 0x57, 0x73, 0xf2, 0x78, 0x8d, 0xec, + 0xe9, 0xfc, 0x56, 0xf6, 0x4c, 0xfe, 0xfe, 0x55, 0xdf, 0x6f, 0x66, 0x4f, 0xe2, 0xd7, 0x2e, 0xa3, + 0xd3, 0xe0, 0x32, 0xf2, 0x0f, 0x5f, 0x7d, 0xec, 0xc7, 0x8d, 0xfe, 0xcd, 0xee, 0xf9, 0x64, 0xf1, + 0xfe, 0x24, 0x50, 0x74, 0x38, 0x5e, 0xfb, 0x46, 0x31, 0x35, 0x5e, 0xe6, 0x93, 0x85, 0xce, 0x90, + 0xd6, 0xd9, 0x71, 0xfb, 0xcc, 0x08, 0x1e, 0x93, 0x5c, 0x8f, 0x87, 0xcc, 0x91, 0xc8, 0x5f, 0x61, + 0x05, 0x94, 0xb5, 0x32, 0x48, 0xd2, 0xd0, 0xeb, 0xf7, 0xba, 0x51, 0xfb, 0xeb, 0xe8, 0xdd, 0x6d, + 0x8b, 0xa9, 0xeb, 0x7c, 0xca, 0xcb, 0x7d, 0x89, 0x42, 0x47, 0x50, 0x76, 0xc0, 0x8b, 0x78, 0xd0, + 0x5f, 0x23, 0xb8, 0xaf, 0x17, 0xc4, 0xd7, 0x0a, 0xd6, 0xab, 0x07, 0xe5, 0xd5, 0x83, 0xef, 0xaa, + 0x41, 0xf6, 0x62, 0x81, 0xae, 0xf4, 0x00, 0x95, 0xca, 0x82, 0x0f, 0x28, 0xae, 0xca, 0x77, 0x3a, + 0xbb, 0xb4, 0x3c, 0x4f, 0xa5, 0xa9, 0x58, 0x6a, 0x19, 0x53, 0xcd, 0x0c, 0xa9, 0x7e, 0x46, 0x54, + 0x3b, 0x03, 0x6a, 0x96, 0xf1, 0x34, 0xcb, 0x70, 0x9a, 0x64, 0x34, 0x8b, 0x1d, 0x35, 0xd0, 0x9a, + 0x62, 0x55, 0x69, 0x4f, 0x6d, 0x88, 0xf2, 0x94, 0xc2, 0x4c, 0x6e, 0xc9, 0xc7, 0x14, 0x6e, 0x32, + 0xa6, 0xb0, 0xf8, 0x06, 0xdb, 0xdc, 0x70, 0x9b, 0x1b, 0x70, 0x53, 0x43, 0xae, 0x63, 0xd0, 0x95, + 0x0c, 0xbb, 0xba, 0x81, 0x9f, 0x09, 0x64, 0x4c, 0x21, 0x75, 0x8d, 0xcf, 0xca, 0x0f, 0x0e, 0xd6, + 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x2e, 0x88, 0x28, 0x83, 0xc9, 0x6c, + 0x87, 0x19, 0x53, 0xc8, 0x98, 0x42, 0xcd, 0x07, 0xa7, 0xa6, 0x71, 0xbe, 0x0c, 0x6a, 0x1a, 0xad, + 0xcd, 0xdf, 0xa2, 0x6a, 0x52, 0xd3, 0xb8, 0xa4, 0x9a, 0x8c, 0x29, 0xb4, 0x76, 0x08, 0xec, 0xa4, + 0xd2, 0x2c, 0xb8, 0xba, 0xda, 0x32, 0xa6, 0x70, 0x16, 0xbd, 0x60, 0x4c, 0x21, 0x54, 0x1e, 0x2a, + 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0x33, 0xa6, 0xb0, 0x14, 0x4e, 0x0b, 0x63, 0x0a, 0x71, + 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0x63, 0x0a, 0x19, 0x53, + 0x68, 0x60, 0x5a, 0x18, 0x53, 0x38, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, 0x8c, + 0x29, 0x44, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, 0x6d, 0x19, 0x53, 0x08, + 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0xce, 0x98, 0x42, 0xf8, 0xb4, + 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0x66, 0x4c, 0x21, 0x8c, 0x1a, 0x46, 0x5d, + 0x48, 0x49, 0x8c, 0x29, 0x54, 0x1b, 0x66, 0x75, 0x7f, 0x48, 0xd1, 0xe2, 0x90, 0xc2, 0xac, 0x05, + 0xbc, 0x2c, 0x53, 0x0a, 0x55, 0xa6, 0xd9, 0x05, 0x69, 0xa8, 0xdf, 0xab, 0x3f, 0x11, 0x5b, 0xf2, + 0x56, 0xfd, 0x2a, 0xad, 0xfa, 0xe5, 0x09, 0xdb, 0xd0, 0xaa, 0x4f, 0xab, 0x7e, 0x6e, 0x3b, 0x49, + 0xab, 0x3e, 0xad, 0xfa, 0xe5, 0x03, 0x05, 0x7b, 0x70, 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, + 0xd0, 0x70, 0x02, 0x3c, 0x6c, 0x78, 0x35, 0xad, 0xfa, 0xea, 0xd6, 0x9d, 0x56, 0x7d, 0xc5, 0x07, + 0x27, 0xae, 0x3f, 0x5f, 0x06, 0x71, 0x7d, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0xc4, 0xf5, 0x97, 0x54, + 0x93, 0x56, 0x7d, 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0x05, 0x73, 0xab, 0xab, 0x2d, 0xad, 0xfa, 0xb3, + 0xe8, 0x05, 0xad, 0xfa, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0x4f, 0xab, + 0x7e, 0x29, 0x9c, 0x16, 0x5a, 0xf5, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, + 0x24, 0xcf, 0x3b, 0xad, 0xfa, 0xb4, 0xea, 0x1b, 0x98, 0x16, 0x5a, 0xf5, 0xe7, 0xcb, 0x20, 0x05, + 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0x56, 0x7d, 0x54, 0xd3, 0x15, 0x87, 0xc4, 0x4e, 0x2a, 0x99, + 0x87, 0xd5, 0xd5, 0x96, 0x56, 0x7d, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, + 0x9e, 0x77, 0x5a, 0xf5, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, + 0x56, 0x7d, 0x18, 0x35, 0x8c, 0xba, 0x90, 0x92, 0x68, 0xd5, 0x77, 0xa4, 0x55, 0x7f, 0xd2, 0x01, + 0x5e, 0x96, 0x4e, 0xfd, 0x8d, 0x02, 0xeb, 0xac, 0xb6, 0xae, 0x16, 0x46, 0x47, 0x2b, 0x2a, 0xf3, + 0x17, 0x92, 0x61, 0x3b, 0x8d, 0x33, 0xc6, 0xd5, 0x9c, 0x3c, 0x5c, 0x23, 0x7b, 0x36, 0xbf, 0x95, + 0x3d, 0x91, 0xbf, 0x7f, 0xd5, 0xf7, 0x9b, 0xd9, 0x73, 0xf8, 0xb5, 0xcb, 0xe8, 0x34, 0xb8, 0x8c, + 0xfc, 0xd3, 0x24, 0x0d, 0x5b, 0xe3, 0xb5, 0x37, 0xfa, 0x37, 0xdb, 0xfe, 0x24, 0x44, 0x74, 0x38, + 0x5e, 0xf9, 0x46, 0x31, 0xb5, 0x5d, 0xe6, 0x93, 0x85, 0xce, 0x8f, 0xd6, 0xb9, 0x71, 0xf9, 0xbc, + 0x08, 0x1e, 0x91, 0x1c, 0x8f, 0x86, 0xcc, 0x71, 0xc8, 0x5f, 0x59, 0x05, 0x14, 0xb5, 0x72, 0xef, + 0x8d, 0xed, 0x8a, 0xa9, 0xea, 0x7c, 0xb6, 0xcb, 0x7d, 0x89, 0x42, 0xc7, 0x4f, 0x76, 0xac, 0x8b, + 0x78, 0xa8, 0x5f, 0x23, 0xa4, 0xaf, 0x17, 0xba, 0xd7, 0x0a, 0xd1, 0xab, 0x87, 0xe2, 0xd5, 0x43, + 0xee, 0xaa, 0xa1, 0xf5, 0x62, 0x01, 0xae, 0xf4, 0xd8, 0x94, 0xca, 0x82, 0xf7, 0x27, 0xae, 0xca, + 0x77, 0xfa, 0xb9, 0xb4, 0x7c, 0x4e, 0xa5, 0x59, 0x58, 0x6a, 0x79, 0x52, 0xcd, 0xbc, 0xa8, 0x7e, + 0x1e, 0x54, 0x3b, 0xef, 0x69, 0x96, 0xe7, 0x34, 0xcb, 0x6b, 0x9a, 0xe4, 0x31, 0x8b, 0x1d, 0x2d, + 0xd0, 0x9a, 0x5d, 0x55, 0x69, 0x4f, 0x6d, 0x88, 0xf2, 0x6c, 0xc2, 0x4c, 0x6e, 0xc9, 0x87, 0x13, + 0x6e, 0x32, 0x9c, 0xb0, 0xf8, 0x06, 0xdb, 0xdc, 0x70, 0x9b, 0x1b, 0x70, 0x53, 0x43, 0xae, 0x63, + 0xd0, 0x95, 0x0c, 0xbb, 0xba, 0x81, 0x9f, 0x09, 0x64, 0x38, 0x21, 0xd5, 0x8c, 0xcf, 0xca, 0x0f, + 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x2e, 0x88, 0x28, 0x83, + 0xc9, 0x6c, 0x87, 0x19, 0x4e, 0xc8, 0x70, 0x42, 0xcd, 0x07, 0xa7, 0x92, 0x71, 0xbe, 0x0c, 0x2a, + 0x19, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0x52, 0xc9, 0xb8, 0xa4, 0x9a, 0x0c, 0x27, 0xb4, 0x76, 0x08, + 0xec, 0xa4, 0xd2, 0x22, 0xb8, 0xba, 0xda, 0x32, 0x9c, 0x70, 0x16, 0xbd, 0x60, 0x38, 0x21, 0x54, + 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0x33, 0x9c, 0xb0, 0x14, 0x4e, 0x0b, 0xc3, + 0x09, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0xc3, 0x09, + 0x19, 0x4e, 0x68, 0x60, 0x5a, 0x18, 0x4e, 0x38, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, + 0x9a, 0x0c, 0x27, 0x44, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, 0x6d, 0x19, + 0x4e, 0x08, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0xce, 0x70, 0x42, + 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0x66, 0x38, 0x21, 0x8c, 0x1a, + 0x46, 0x5d, 0x48, 0x49, 0x0c, 0x27, 0xb4, 0x1a, 0x64, 0xb5, 0xbb, 0x38, 0x9c, 0x30, 0x6b, 0x01, + 0x2f, 0xcb, 0x74, 0x42, 0x95, 0x39, 0x76, 0x41, 0x1a, 0xea, 0xf7, 0xea, 0x4f, 0xc4, 0x96, 0xbc, + 0x55, 0xbf, 0x4a, 0xab, 0x7e, 0x79, 0xc2, 0x36, 0xb4, 0xea, 0xd3, 0xaa, 0x9f, 0xdb, 0x4e, 0xd2, + 0xaa, 0x4f, 0xab, 0x7e, 0xf9, 0x40, 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, + 0x34, 0x9c, 0x00, 0x0f, 0x1b, 0x5e, 0x4d, 0xab, 0xbe, 0xba, 0x75, 0xa7, 0x55, 0x5f, 0xf1, 0xc1, + 0x89, 0xeb, 0xcf, 0x97, 0x41, 0x5c, 0xdf, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0x71, 0xfd, 0x25, 0xd5, + 0xa4, 0x55, 0xdf, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0xc1, 0xdc, 0xea, 0x6a, 0x4b, 0xab, 0xfe, 0x2c, + 0x7a, 0x41, 0xab, 0x3e, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0xd3, 0xaa, + 0x5f, 0x0a, 0xa7, 0x85, 0x56, 0x7d, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, + 0xc9, 0xf3, 0x4e, 0xab, 0x3e, 0xad, 0xfa, 0x06, 0xa6, 0x85, 0x56, 0xfd, 0xf9, 0x32, 0x48, 0x41, + 0x58, 0xdb, 0xe1, 0x45, 0xd5, 0xa4, 0x55, 0x1f, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, 0x4a, 0xe6, + 0x61, 0x75, 0xb5, 0xa5, 0x55, 0x1f, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, + 0xe7, 0x9d, 0x56, 0x7d, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0xa6, + 0x55, 0x1f, 0x46, 0x0d, 0xa3, 0x2e, 0xa4, 0x24, 0x5a, 0xf5, 0x1d, 0x69, 0xd5, 0x9f, 0x74, 0x80, + 0x97, 0xa5, 0x53, 0x7f, 0xa3, 0xc0, 0x3a, 0xab, 0xad, 0xab, 0x85, 0xd1, 0xd1, 0x8a, 0xca, 0xfc, + 0x85, 0x64, 0xd8, 0x4e, 0xe3, 0x8c, 0x71, 0x35, 0x27, 0x0f, 0xd7, 0xc8, 0x9e, 0xcd, 0x6f, 0x65, + 0x4f, 0xe4, 0xef, 0x5f, 0xf5, 0xfd, 0x66, 0xf6, 0x1c, 0x7e, 0xed, 0x32, 0x3a, 0x0d, 0x2e, 0x23, + 0xff, 0x34, 0x49, 0xc3, 0xd6, 0x78, 0xed, 0x8d, 0xfe, 0xcd, 0xae, 0x3f, 0x09, 0x11, 0x1d, 0x8e, + 0x57, 0xbe, 0x51, 0x4c, 0x6d, 0x97, 0xf9, 0x64, 0xa1, 0xf3, 0xa3, 0x75, 0x6e, 0x5c, 0x3e, 0x2f, + 0x82, 0x47, 0x24, 0xc7, 0xa3, 0x21, 0x73, 0x1c, 0xf2, 0x57, 0x56, 0x01, 0x45, 0x15, 0x1e, 0xf0, + 0xa2, 0x32, 0xd0, 0x45, 0x78, 0x80, 0x8b, 0xf8, 0xc0, 0x16, 0x8d, 0xe0, 0xbd, 0x5e, 0x90, 0x5e, + 0x2b, 0x18, 0xaf, 0x1e, 0x74, 0x57, 0x0f, 0xae, 0xab, 0x06, 0xd1, 0x8b, 0x05, 0xad, 0xd2, 0x03, + 0x52, 0x2a, 0x41, 0x3b, 0x8d, 0x6e, 0x14, 0x94, 0x78, 0x7a, 0x2c, 0x33, 0x79, 0xc2, 0x0a, 0xa5, + 0x13, 0x9f, 0x52, 0xcb, 0x82, 0x6a, 0x66, 0x3d, 0xf5, 0xb3, 0x9c, 0xda, 0x59, 0x4d, 0xb3, 0x2c, + 0xa6, 0x59, 0xd6, 0xd2, 0x24, 0x4b, 0x59, 0xec, 0x58, 0x80, 0x5a, 0xd6, 0xd1, 0xa0, 0xd3, 0x48, + 0xa9, 0xb3, 0x48, 0x90, 0x1e, 0x0b, 0x7a, 0x75, 0x53, 0x8a, 0xe7, 0x65, 0x84, 0x4b, 0x0b, 0x17, + 0x17, 0xc4, 0x02, 0x8f, 0xc0, 0x23, 0xf0, 0x08, 0x3c, 0x02, 0x8f, 0xb3, 0xf3, 0x16, 0x75, 0xc2, + 0x38, 0x8d, 0xd2, 0xaf, 0x49, 0x78, 0xa9, 0x09, 0x91, 0x0a, 0x65, 0x37, 0x95, 0x46, 0xf6, 0x68, + 0xfb, 0xc1, 0xc0, 0x60, 0x04, 0x71, 0xed, 0x5d, 0xc3, 0x3f, 0x1d, 0xfd, 0xcf, 0xd9, 0xef, 0xad, + 0xba, 0xd6, 0x51, 0x1f, 0x67, 0xee, 0x07, 0xaa, 0xa5, 0x45, 0x46, 0x55, 0xc2, 0x8d, 0xd6, 0xc7, + 0x6d, 0xff, 0xbc, 0xd9, 0x38, 0xa8, 0x9d, 0x9e, 0x55, 0xca, 0x58, 0x96, 0x6d, 0xb4, 0xaf, 0x87, + 0x8d, 0xe6, 0x3f, 0x4f, 0xcf, 0x6a, 0x67, 0x75, 0x36, 0x35, 0xbf, 0x4d, 0x3d, 0x3d, 0x39, 0xab, + 0xfb, 0xad, 0xe3, 0xc3, 0xc6, 0xc1, 0xef, 0x7e, 0xa3, 0xf5, 0x71, 0x97, 0xbd, 0xcd, 0x51, 0x61, + 0x5f, 0x7d, 0x6c, 0x35, 0xc7, 0xbb, 0x8a, 0x39, 0x10, 0xd8, 0xdd, 0xea, 0x68, 0x77, 0x3f, 0xb6, + 0x0e, 0x4f, 0xd9, 0x55, 0x01, 0x23, 0xeb, 0x9f, 0xb6, 0xde, 0xb1, 0xb1, 0x12, 0x1b, 0xfb, 0xb1, + 0xd5, 0x64, 0x63, 0x73, 0x76, 0xb7, 0xde, 0x1d, 0x1e, 0xff, 0xeb, 0xb4, 0x55, 0x3f, 0x60, 0x63, + 0x45, 0xe0, 0xeb, 0xe8, 0xfc, 0xf0, 0x0c, 0x00, 0xcb, 0x79, 0x7f, 0x3f, 0xb6, 0x9a, 0x68, 0xae, + 0xac, 0xe6, 0x6e, 0xa3, 0xb9, 0x42, 0x26, 0x77, 0xd7, 0x3f, 0xac, 0xed, 0xd7, 0x0f, 0xeb, 0x6f, + 0x71, 0x6d, 0x45, 0xf5, 0x97, 0xdd, 0x95, 0x71, 0x18, 0xd0, 0x5e, 0x59, 0xeb, 0xc0, 0xbe, 0x4a, + 0x87, 0x6a, 0xb6, 0xd9, 0xdb, 0xbc, 0x83, 0x09, 0x75, 0x5d, 0x6a, 0xa6, 0x22, 0xe9, 0xa2, 0xe8, + 0x79, 0xad, 0x42, 0xd6, 0x14, 0x84, 0x71, 0xf0, 0xb9, 0x1b, 0x76, 0xf4, 0xaa, 0x09, 0xa6, 0x02, 0x85, 0xb3, 0x80, 0xca, 0x03, 0xd0, 0xa9, 0x5b, 0xc8, 0x41, 0x35, 0xa8, 0x5b, 0xc8, 0x5d, 0x30, - 0x75, 0x0b, 0x45, 0x71, 0x2f, 0x28, 0xeb, 0x5b, 0x57, 0x08, 0x56, 0xbb, 0xf4, 0xf3, 0xfe, 0xed, + 0x75, 0x0b, 0x45, 0xf1, 0x2d, 0x28, 0xeb, 0x5b, 0x57, 0x08, 0x56, 0xbb, 0xf4, 0xf3, 0xee, 0xed, 0x24, 0x1a, 0x17, 0x7c, 0x2a, 0xdd, 0xea, 0x0c, 0x28, 0x02, 0x8a, 0x80, 0x62, 0x39, 0x41, 0x51, 0xeb, 0x16, 0xe6, 0xca, 0xb8, 0xf7, 0xb6, 0xab, 0xc1, 0x84, 0x96, 0x4e, 0xf8, 0x5c, 0xb4, 0xee, 0x65, 0xfb, 0x9b, 0xda, 0x97, 0xed, 0x6f, 0x72, 0xd9, 0x7e, 0xf1, 0xcd, 0xb6, 0xb9, 0xf9, 0x36, 0x37, 0xe3, 0xa6, 0xe6, 0x5c, 0xc7, 0xac, 0x2b, 0x99, 0x77, 0x7d, 0xee, 0xb3, 0x74, 0x5e, 0xd5, 0xef, 0x43, 0x36, 0xb8, 0x07, 0xd9, 0x68, 0x58, 0xa2, 0xc1, 0x58, 0x4c, 0xcb, 0xe1, 0x88, 0xc6, 0x93, 0xe7, 0xac, 0x87, 0x21, 0xba, 0x30, 0x67, 0xce, 0x60, 0xf8, 0xa1, 0xe9, 0xd0, 0x43, 0x57, - 0x54, 0xce, 0xfa, 0xde, 0x62, 0x27, 0x74, 0xaf, 0xa4, 0x33, 0xff, 0x2e, 0xcb, 0x32, 0xff, 0x4d, - 0x21, 0x82, 0x92, 0x84, 0xed, 0x30, 0xba, 0xb5, 0xe0, 0x90, 0x33, 0xc9, 0x50, 0x48, 0x28, 0x24, + 0x54, 0xce, 0xfa, 0xde, 0x62, 0x27, 0x74, 0xaf, 0xa4, 0x33, 0xff, 0x2e, 0xca, 0x32, 0xff, 0x4d, + 0x21, 0x82, 0x92, 0x84, 0xed, 0x30, 0xba, 0xb1, 0xe0, 0x90, 0x33, 0xc9, 0x50, 0x48, 0x28, 0x24, 0x14, 0x12, 0x0a, 0x09, 0x85, 0x84, 0x42, 0x42, 0x21, 0xa1, 0x90, 0x50, 0x48, 0x28, 0x24, 0x14, 0x12, 0x0a, 0x09, 0x85, 0x2c, 0x16, 0x85, 0xf4, 0xfa, 0xc9, 0x74, 0x8a, 0xaf, 0x1d, 0x9b, 0xbc, - 0xbf, 0x08, 0x88, 0x25, 0xc4, 0x12, 0x62, 0x09, 0xb1, 0x84, 0x58, 0x42, 0x2c, 0x21, 0x96, 0x10, + 0xbb, 0x08, 0x88, 0x25, 0xc4, 0x12, 0x62, 0x09, 0xb1, 0x84, 0x58, 0x42, 0x2c, 0x21, 0x96, 0x10, 0x4b, 0x88, 0x25, 0xc4, 0x12, 0x62, 0x09, 0xb1, 0x84, 0x58, 0x16, 0x83, 0x58, 0x0e, 0x26, 0xce, 0xa0, 0x32, 0x93, 0x1c, 0x4b, 0x85, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0x47, 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0x47, 0xa8, 0xa3, 0xeb, 0x12, - 0xb8, 0xd6, 0x58, 0xee, 0x9a, 0xd6, 0x34, 0x48, 0xc3, 0x57, 0x4a, 0x9d, 0xf8, 0x2f, 0x56, 0xbd, + 0xb8, 0xd6, 0x58, 0xee, 0x9a, 0xd6, 0x34, 0x48, 0xc3, 0x97, 0x4a, 0x9d, 0xf8, 0xcf, 0x56, 0xbd, 0xac, 0xb5, 0x35, 0x5d, 0x27, 0xb7, 0x16, 0xcb, 0x1f, 0x8f, 0xb5, 0xbc, 0xb5, 0x58, 0xee, 0xae, - 0xf9, 0x62, 0x5c, 0x02, 0x3c, 0x1c, 0x84, 0xde, 0xcd, 0xb0, 0x9b, 0x46, 0xfd, 0x6e, 0xe8, 0x8d, - 0x5e, 0xc9, 0x40, 0xfe, 0x46, 0xe0, 0x47, 0x64, 0x16, 0xfc, 0x7a, 0xe0, 0x4d, 0xae, 0x07, 0x76, + 0xf9, 0x62, 0x5c, 0x02, 0x3c, 0x1c, 0x84, 0xde, 0xf5, 0xb0, 0x9b, 0x46, 0xfd, 0x6e, 0xe8, 0x8d, + 0x5e, 0xc9, 0x40, 0xfe, 0x46, 0xe0, 0x07, 0x64, 0x16, 0xfc, 0x7a, 0xe0, 0x4d, 0xae, 0x07, 0x76, 0x27, 0xb6, 0xc6, 0xf5, 0xc0, 0x6b, 0x8c, 0x61, 0xe2, 0xd7, 0x03, 0xb7, 0xa7, 0x67, 0x5e, 0x69, 0x68, 0x52, 0x26, 0x8f, 0x91, 0x49, 0xae, 0x19, 0x4e, 0x7d, 0x03, 0xaa, 0x6d, 0x48, 0xcd, 0x0c, 0xaa, 0x99, 0x61, 0x35, 0x31, 0xb0, 0xe5, 0xe0, 0xd4, 0x6a, 0x23, 0x93, 0xb4, 0x46, 0xc7, 0x2e, - 0x9d, 0x6f, 0x9d, 0x11, 0xb2, 0xf3, 0x0d, 0xd5, 0x1d, 0x25, 0xfb, 0x10, 0x0a, 0xc8, 0x67, 0x17, + 0x9d, 0x6f, 0x9d, 0x11, 0xb2, 0xf3, 0x0d, 0xd5, 0x1d, 0x25, 0x7b, 0x1f, 0x0a, 0xc8, 0x67, 0x17, 0x19, 0x22, 0xac, 0xa0, 0xc2, 0x1c, 0x32, 0xcc, 0xa1, 0xc3, 0x14, 0x42, 0x74, 0xa0, 0x44, 0x09, 0x52, 0x66, 0x3b, 0x69, 0x97, 0xcf, 0xd6, 0x1b, 0x55, 0xbb, 0xe4, 0x89, 0x6f, 0x91, 0x29, 0x70, - 0xc0, 0xab, 0x59, 0xe3, 0x4c, 0xc1, 0x72, 0x94, 0xee, 0x55, 0xc6, 0x45, 0x19, 0xa6, 0xbc, 0xec, + 0xc0, 0xab, 0x59, 0xe3, 0x4c, 0xc1, 0x72, 0x94, 0xee, 0x65, 0xc6, 0x45, 0x19, 0xa6, 0xbc, 0xec, 0x94, 0x8e, 0xcc, 0xbb, 0xde, 0x65, 0x06, 0xf2, 0x4e, 0x04, 0x11, 0x01, 0x22, 0x02, 0x44, 0x04, 0x88, 0x08, 0x14, 0x21, 0x22, 0xa0, 0x14, 0x92, 0x5d, 0x3a, 0xde, 0x2a, 0xa1, 0x59, 0x65, 0x83, 0x0c, 0x2f, 0x87, 0x97, 0xc3, 0xcb, 0xe1, 0xe5, 0x2e, 0x19, 0xf8, 0x99, 0xc0, 0xa0, 0xdb, 0xed, 0xfd, 0x39, 0x27, 0x25, 0xc1, 0x40, 0xff, 0xfc, 0x4c, 0x2d, 0xc6, 0xf2, 0x52, 0x94, 0xd5, 0xd8, - 0x28, 0x3c, 0xfc, 0x10, 0x8e, 0x94, 0x8b, 0x65, 0xd5, 0x61, 0xc9, 0x12, 0x9e, 0xec, 0x61, 0xca, + 0x28, 0x3c, 0x7c, 0x1f, 0x8e, 0x94, 0x8b, 0x65, 0xd5, 0x61, 0xc9, 0x12, 0x9e, 0xec, 0x61, 0xca, 0x1a, 0xae, 0x9c, 0x81, 0x2d, 0x67, 0xe0, 0xcb, 0x09, 0x18, 0xd3, 0x85, 0x33, 0x65, 0x58, 0x9b, 0xed, 0xb0, 0x7a, 0xd8, 0x79, 0xe9, 0xbc, 0xeb, 0x87, 0x9f, 0x97, 0xd8, 0xc6, 0x56, 0x49, 0x0b, 0xf1, 0xcb, 0xe5, 0x89, 0x29, 0x87, 0xa9, 0x67, 0x72, 0xdd, 0x0e, 0x57, 0x87, 0xa3, 0xbf, 0xd6, @@ -184691,19244 +184714,19244 @@ var ( 0xe4, 0xc1, 0x94, 0x2a, 0xc1, 0x14, 0x82, 0x29, 0x04, 0x53, 0x80, 0x70, 0x82, 0x29, 0x04, 0x53, 0x08, 0xa6, 0x10, 0x4c, 0x21, 0x98, 0x42, 0x30, 0x85, 0x60, 0x0a, 0xc1, 0x14, 0x82, 0x29, 0x04, 0x53, 0xdc, 0x0f, 0xa6, 0x08, 0xb6, 0x4b, 0x1b, 0xc4, 0x52, 0xa8, 0x4c, 0x2d, 0x95, 0x76, 0xba, - 0x3e, 0xcc, 0xe2, 0x62, 0x10, 0x1e, 0x67, 0xab, 0x6e, 0x8d, 0x16, 0xed, 0xd7, 0xc5, 0xfd, 0x8c, + 0x3e, 0xcc, 0xe2, 0x7c, 0x10, 0x1e, 0x65, 0xab, 0x6e, 0x8d, 0x16, 0xed, 0xd7, 0xc5, 0xfd, 0x8c, 0x62, 0x16, 0xd3, 0xea, 0x04, 0x20, 0x55, 0x03, 0x8f, 0xea, 0xe5, 0xb4, 0x55, 0xca, 0x69, 0x8b, - 0xc3, 0xd0, 0x28, 0xa7, 0xa5, 0x9c, 0xf6, 0xdb, 0x31, 0x2a, 0x1a, 0x6c, 0x73, 0xde, 0x50, 0x1a, + 0xc3, 0xd0, 0x28, 0xa7, 0xa5, 0x9c, 0xf6, 0xfb, 0x31, 0x2a, 0x1a, 0x6c, 0x73, 0xde, 0x50, 0x1a, 0x6c, 0xcb, 0x12, 0xdc, 0x23, 0xf7, 0x44, 0xee, 0x89, 0xdc, 0x53, 0x71, 0x82, 0x73, 0x34, 0xd8, 0xe2, 0xd5, 0x10, 0xc6, 0x58, 0x0e, 0x63, 0x28, 0xc4, 0xd7, 0x18, 0x76, 0xa9, 0xaa, 0x78, 0x6e, 0x2b, 0x5c, 0x45, 0x34, 0x8a, 0x93, 0x5f, 0xa8, 0xac, 0x30, 0x13, 0x3a, 0x37, 0x1c, 0x56, 0xfd, - 0x91, 0xcb, 0x38, 0xae, 0xb6, 0xc8, 0xf4, 0xc1, 0x1b, 0xbf, 0x9b, 0x9c, 0x65, 0x1c, 0x45, 0x83, - 0xb4, 0x96, 0xa6, 0x32, 0x54, 0xb5, 0x72, 0x1c, 0xc5, 0xf5, 0x6e, 0x38, 0x72, 0xfa, 0x06, 0x95, - 0x37, 0x2f, 0xe2, 0x61, 0xb7, 0x2b, 0x30, 0x12, 0xf5, 0x38, 0xf8, 0x4b, 0x5e, 0xc8, 0x49, 0xd2, - 0x09, 0x93, 0xb0, 0x73, 0xf0, 0x25, 0x13, 0xe1, 0xb4, 0xe2, 0x08, 0xdb, 0x4a, 0x87, 0x6c, 0xa4, + 0x91, 0xcb, 0x38, 0xae, 0xb6, 0xc8, 0xf4, 0xc1, 0x1b, 0xbf, 0x9b, 0x9c, 0x65, 0x1c, 0x46, 0x83, + 0xb4, 0x96, 0xa6, 0x32, 0x54, 0xb5, 0x72, 0x14, 0xc5, 0xf5, 0x6e, 0x38, 0x72, 0xfa, 0x06, 0x95, + 0x37, 0xcf, 0xe2, 0x61, 0xb7, 0x2b, 0x30, 0x12, 0xf5, 0x28, 0xf8, 0x4b, 0x5e, 0xc8, 0x71, 0xd2, + 0x09, 0x93, 0xb0, 0xb3, 0xff, 0x35, 0x13, 0xe1, 0xb4, 0xe2, 0x08, 0xdb, 0x4a, 0x87, 0x6c, 0xa4, 0x80, 0x41, 0x5c, 0xc5, 0x10, 0xe6, 0x6b, 0xf7, 0xf2, 0xb3, 0x4e, 0xf9, 0x7c, 0x52, 0x4e, 0x6a, 0x2a, 0xa5, 0x9e, 0xf6, 0x6a, 0x99, 0xcf, 0xeb, 0x5f, 0xfd, 0x65, 0xe5, 0xf0, 0xa2, 0x2a, 0x41, - 0xbf, 0xdf, 0xfd, 0x92, 0xf7, 0xd5, 0xe2, 0xf3, 0x0a, 0xc2, 0xfb, 0x9f, 0x9e, 0x93, 0x5a, 0xe5, - 0x9b, 0xb2, 0xc9, 0x3d, 0x0e, 0x27, 0x11, 0x67, 0xbb, 0x1f, 0x47, 0x4b, 0xfa, 0xbd, 0x6e, 0x8e, - 0xe6, 0x50, 0x2a, 0x50, 0x26, 0x1e, 0x08, 0x13, 0x0f, 0x74, 0x3d, 0x0c, 0x64, 0x8d, 0x37, 0xbe, + 0xbf, 0xdf, 0xfd, 0x9a, 0xf7, 0xd5, 0xe2, 0xf3, 0x0a, 0xc2, 0xbb, 0x9f, 0x9e, 0x93, 0x5a, 0xe5, + 0x9b, 0xb2, 0xc9, 0x3d, 0x0e, 0x27, 0x11, 0x67, 0xbb, 0x1b, 0x47, 0x4b, 0xfa, 0xbd, 0x6e, 0x8e, + 0xe6, 0x50, 0x2a, 0x50, 0x26, 0x1e, 0x08, 0x13, 0x0f, 0x74, 0xdd, 0x0f, 0x64, 0x8d, 0x37, 0xbe, 0xa4, 0xa6, 0x3a, 0xef, 0x24, 0x86, 0xd4, 0xec, 0x0f, 0xd9, 0x19, 0x1f, 0x42, 0xd9, 0x60, 0xb1, 0x50, 0xbf, 0x64, 0x48, 0x5f, 0xd0, 0xe4, 0x48, 0x9b, 0x1e, 0x35, 0x13, 0xa4, 0x66, 0x8a, 0x74, 0x4c, 0x52, 0x31, 0xd8, 0xb2, 0x54, 0xbe, 0xb5, 0xd2, 0x99, 0xe4, 0x1d, 0xbd, 0xf0, 0xaf, 0x7e, - 0x2f, 0x49, 0xf3, 0x76, 0x89, 0x9e, 0x3c, 0x5f, 0x8f, 0x8b, 0x95, 0x1a, 0xc3, 0x3f, 0xcf, 0xad, - 0x9e, 0xd6, 0xff, 0xaf, 0x7e, 0x78, 0xee, 0x9f, 0x9e, 0x5c, 0x9c, 0xd7, 0x85, 0xef, 0xf9, 0xd8, + 0x2f, 0x49, 0xf3, 0x76, 0x89, 0x1e, 0x3d, 0x5f, 0x0f, 0x8b, 0x95, 0x1a, 0xc3, 0x3f, 0xcf, 0xad, + 0x9e, 0xd4, 0xff, 0xaf, 0x7e, 0x70, 0xe6, 0x9f, 0x1c, 0x9f, 0x9f, 0xd5, 0x85, 0xef, 0xf9, 0xd8, 0xe4, 0x9e, 0x0f, 0x4b, 0x3b, 0xab, 0x65, 0x6f, 0xd5, 0xed, 0xae, 0xba, 0xfd, 0xd5, 0xb5, 0xc3, 0x32, 0xf6, 0x58, 0xc8, 0x2e, 0xcf, 0xb6, 0x46, 0x3c, 0x69, 0xb9, 0x64, 0x39, 0x27, 0x26, 0xd3, - 0x4b, 0x47, 0x82, 0x05, 0x4f, 0xcf, 0xd4, 0x39, 0xdc, 0x16, 0x94, 0x51, 0x8f, 0x87, 0x37, 0xa3, - 0xcd, 0xbb, 0x5b, 0xe3, 0xab, 0xaf, 0xa6, 0xaf, 0x35, 0xba, 0x31, 0xc1, 0xe1, 0x45, 0xb1, 0xe0, + 0x4b, 0x47, 0x82, 0x05, 0x4f, 0xcf, 0xd4, 0x39, 0xdc, 0x16, 0x94, 0x51, 0x8f, 0x87, 0xd7, 0xa3, + 0xcd, 0xbb, 0x5d, 0xe3, 0xab, 0xaf, 0xa6, 0xaf, 0x35, 0xba, 0x36, 0xc1, 0xe1, 0x45, 0xb1, 0xe0, 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0xe0, 0x30, 0x38, 0xbc, 0x66, 0x38, 0xac, 0xcc, 0x83, 0x55, - 0xf8, 0x2f, 0x40, 0x08, 0x10, 0x02, 0x84, 0x00, 0xa1, 0xcc, 0x89, 0xe9, 0x86, 0xc1, 0x55, 0x12, - 0x5e, 0x69, 0x80, 0xdf, 0x9e, 0xa0, 0x8c, 0xd6, 0x2c, 0xb3, 0x3e, 0x51, 0xa4, 0x37, 0x49, 0x6f, - 0x98, 0x46, 0xf1, 0x75, 0x66, 0x9b, 0x67, 0x3f, 0xce, 0xf0, 0xbe, 0x13, 0x5e, 0x45, 0x71, 0x94, - 0x46, 0xbd, 0x78, 0xf0, 0xf4, 0x3f, 0xcd, 0xfe, 0x65, 0x5c, 0x6f, 0x51, 0x28, 0xfd, 0x11, 0x2d, - 0x9d, 0x9a, 0x49, 0xd1, 0x28, 0xa1, 0x9a, 0x0b, 0x53, 0x28, 0xa5, 0x9a, 0x09, 0xbb, 0x5f, 0x52, - 0xa5, 0xd4, 0x3a, 0x3a, 0x1c, 0x84, 0x89, 0xb4, 0x89, 0x57, 0x6c, 0x30, 0xb9, 0x8f, 0x5f, 0xbd, - 0xc9, 0x6e, 0x7a, 0x9f, 0xbe, 0x68, 0x34, 0x5c, 0x5a, 0x34, 0x93, 0x2c, 0x60, 0xd9, 0xf8, 0x4d, - 0x52, 0x78, 0x5d, 0x38, 0xf2, 0xa0, 0x1c, 0xbc, 0x53, 0x09, 0xda, 0x41, 0x1e, 0x20, 0x0f, 0x90, - 0x07, 0xc8, 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x90, 0x07, - 0x3a, 0xa4, 0x2c, 0x5a, 0x51, 0xee, 0xf5, 0x55, 0x88, 0x5c, 0xa5, 0x90, 0x63, 0x4f, 0x52, 0x8e, - 0xbd, 0x0a, 0x32, 0x13, 0xc8, 0x44, 0x27, 0x8e, 0x89, 0xd7, 0x94, 0x57, 0xa9, 0x29, 0x57, 0x44, - 0x56, 0x6a, 0xca, 0xcb, 0x08, 0x13, 0xd4, 0x94, 0xaf, 0xb2, 0x79, 0xd4, 0xb2, 0x11, 0x85, 0x23, - 0x0a, 0x47, 0x14, 0x8e, 0x5a, 0xb6, 0x1f, 0x76, 0x0e, 0xa9, 0x65, 0x13, 0x55, 0x22, 0x6a, 0xca, - 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0xd8, 0x10, 0x87, 0xa9, 0x29, 0x07, - 0x08, 0x01, 0x42, 0x80, 0x10, 0x20, 0xfc, 0xde, 0x13, 0x43, 0x59, 0x08, 0x65, 0x21, 0x3f, 0x2a, - 0x85, 0xb2, 0x90, 0x1c, 0x0f, 0x22, 0x65, 0x21, 0x05, 0xc5, 0xb1, 0x17, 0x94, 0x85, 0x94, 0x83, - 0x3c, 0x50, 0x53, 0x0e, 0x79, 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, - 0x01, 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x94, 0x91, 0x3c, 0x50, 0x53, 0x6e, 0x5d, 0x53, 0x2e, 0x70, - 0xe3, 0x15, 0xd7, 0x5c, 0x14, 0x4f, 0x0f, 0x2a, 0xb9, 0x16, 0xef, 0xff, 0xc0, 0x7d, 0x2b, 0xa3, - 0xb5, 0xb4, 0x26, 0x4b, 0x29, 0xd3, 0xa5, 0x1b, 0x83, 0xf1, 0x3d, 0x5f, 0x5e, 0xaf, 0x3f, 0xf6, - 0x52, 0x05, 0xee, 0xdd, 0x78, 0x20, 0x80, 0xab, 0x37, 0xf2, 0x88, 0x3e, 0xe4, 0x7b, 0x85, 0x2d, - 0x37, 0x6f, 0x7c, 0x6f, 0xf0, 0x20, 0xd7, 0x2b, 0x64, 0xb9, 0x78, 0x63, 0xa5, 0x63, 0xc0, 0xc5, - 0x1b, 0x8a, 0x4d, 0x52, 0x32, 0x77, 0x66, 0xd3, 0x23, 0xe5, 0x94, 0x41, 0x2a, 0x06, 0xeb, 0x11, - 0x6b, 0x91, 0x0a, 0xba, 0xdd, 0xde, 0x9f, 0x5e, 0xef, 0xcf, 0xd8, 0x0b, 0x06, 0xf2, 0x49, 0x9d, - 0x05, 0x69, 0xf2, 0x85, 0xd8, 0x9b, 0xe4, 0x8d, 0xd4, 0x0d, 0xa8, 0x9e, 0x21, 0xd5, 0x0e, 0xbd, - 0xad, 0x5f, 0xda, 0x48, 0xc4, 0xd0, 0x0a, 0x87, 0xc3, 0x0a, 0x9f, 0x35, 0x1a, 0x46, 0x71, 0xfa, - 0xab, 0x42, 0xce, 0x68, 0x47, 0x50, 0xc4, 0x69, 0x10, 0x5f, 0x8f, 0x1e, 0xe6, 0xa3, 0xa8, 0xba, - 0x2a, 0x44, 0xda, 0x8f, 0x23, 0x9d, 0x1b, 0xf8, 0x15, 0x50, 0x65, 0x49, 0xdc, 0x87, 0xa0, 0x3b, - 0x0c, 0x15, 0xe5, 0xbd, 0x4b, 0x82, 0x76, 0x1a, 0xf5, 0xe2, 0xb7, 0xd1, 0x75, 0x34, 0x4e, 0x34, - 0x6d, 0x8a, 0xcb, 0xbd, 0x53, 0x48, 0x4f, 0x1c, 0x07, 0x7f, 0x95, 0x5e, 0x45, 0xaa, 0x3b, 0x3b, - 0x25, 0x56, 0x92, 0x82, 0xe6, 0x93, 0x2e, 0xd7, 0xb9, 0xa3, 0x34, 0x1a, 0x04, 0x9f, 0xba, 0xa1, - 0xd7, 0x0f, 0xc3, 0xc4, 0x0b, 0x06, 0xde, 0x55, 0xd4, 0x4d, 0xc3, 0x44, 0xa1, 0xa5, 0xf4, 0x71, - 0xb9, 0xf2, 0x54, 0xe6, 0x2a, 0xe8, 0x0e, 0x42, 0xe8, 0x0c, 0x74, 0x06, 0x3a, 0x03, 0x9d, 0x29, - 0x12, 0x9d, 0xf9, 0xd4, 0xeb, 0x75, 0xc3, 0x20, 0xd6, 0x28, 0x82, 0xdb, 0x5a, 0x63, 0x40, 0x4c, - 0xc2, 0x7e, 0x37, 0x68, 0xcf, 0x80, 0x49, 0x1e, 0x09, 0x1f, 0x0a, 0x04, 0x02, 0x81, 0x40, 0x20, - 0x10, 0x08, 0x04, 0x02, 0x81, 0x40, 0xed, 0x4f, 0xa4, 0xc6, 0xf0, 0x3b, 0x6b, 0xcb, 0x16, 0xeb, - 0x92, 0x18, 0x5d, 0x9b, 0xd7, 0x09, 0x67, 0x74, 0x2d, 0x55, 0x19, 0x8e, 0xb8, 0x1a, 0x54, 0x65, - 0xe8, 0xe1, 0x04, 0x55, 0x19, 0x3f, 0xc2, 0xe3, 0xa8, 0xca, 0x80, 0xc3, 0xc1, 0xe1, 0xe0, 0x70, - 0x85, 0xe2, 0x70, 0x54, 0x65, 0x7c, 0xef, 0x17, 0x55, 0x19, 0x2b, 0x89, 0xa3, 0x2a, 0x23, 0x1f, - 0x15, 0xa1, 0x2a, 0xa3, 0xe0, 0x4a, 0x42, 0x55, 0x86, 0xe8, 0x7a, 0xa9, 0xca, 0xc8, 0x81, 0xca, - 0x90, 0x92, 0x82, 0xce, 0x40, 0x67, 0xa0, 0x33, 0x85, 0xa3, 0x33, 0xa4, 0xa4, 0x54, 0x00, 0x91, - 0xaa, 0x0c, 0x20, 0x10, 0x08, 0x04, 0x02, 0x81, 0x40, 0x20, 0xb0, 0x08, 0x10, 0x48, 0x55, 0x86, - 0x03, 0x55, 0x19, 0x0c, 0x7f, 0xb2, 0x56, 0x09, 0x57, 0x54, 0xc1, 0x7c, 0xfe, 0xd3, 0xa0, 0x15, - 0xa4, 0x9f, 0x4f, 0xb2, 0xc5, 0x94, 0x68, 0x02, 0x54, 0xce, 0x63, 0x5a, 0x64, 0xc6, 0xb3, 0x30, - 0xef, 0x89, 0x79, 0x4f, 0xcc, 0x7b, 0xca, 0x15, 0x2f, 0x72, 0x9f, 0xf7, 0x14, 0x0c, 0xd3, 0xcf, - 0x5e, 0x3f, 0x18, 0x0c, 0x32, 0x15, 0x10, 0xaa, 0x2f, 0x5c, 0x14, 0x23, 0x53, 0x67, 0xb8, 0xc9, - 0xf4, 0x27, 0xea, 0x0c, 0x1d, 0x24, 0xcd, 0xd4, 0x19, 0xca, 0x91, 0xe2, 0x79, 0xdc, 0x70, 0x3a, - 0xd2, 0x5d, 0xc6, 0xc6, 0x2c, 0xb8, 0x33, 0xbf, 0xae, 0x41, 0xbd, 0x79, 0x27, 0x1c, 0xb4, 0x93, - 0xa8, 0x2f, 0x42, 0x56, 0xef, 0xdd, 0xd2, 0x39, 0x17, 0x02, 0x26, 0x80, 0x09, 0x60, 0x02, 0x98, - 0x90, 0xa3, 0xbe, 0x0f, 0xd2, 0x24, 0x8a, 0xaf, 0x41, 0x82, 0xd5, 0x9e, 0x35, 0x8c, 0x83, 0x4f, - 0xdd, 0x50, 0x90, 0x1b, 0x4c, 0x05, 0xe4, 0xdd, 0xdb, 0x30, 0x4f, 0xf1, 0x8d, 0xce, 0x31, 0x00, - 0x03, 0xc0, 0x00, 0x30, 0x00, 0x4c, 0x9e, 0xfa, 0x2e, 0x97, 0x81, 0x13, 0xca, 0xbc, 0xb9, 0x89, - 0x30, 0xdd, 0x5e, 0x3b, 0xe8, 0x4a, 0x54, 0x97, 0xcc, 0x2f, 0x32, 0x9b, 0x4a, 0x00, 0x04, 0x00, - 0x01, 0x40, 0x00, 0x10, 0xc8, 0x51, 0xdf, 0x83, 0x81, 0x17, 0x0f, 0x6f, 0x3e, 0x89, 0x94, 0x6b, - 0x4f, 0x0d, 0x8c, 0xc0, 0xed, 0x88, 0xc2, 0xcd, 0x54, 0xb2, 0x37, 0x0b, 0x2a, 0x94, 0x70, 0xa9, - 0x74, 0xc4, 0x68, 0x35, 0x4b, 0x69, 0xf6, 0xbf, 0xdc, 0xc9, 0xde, 0xf3, 0x58, 0xba, 0x57, 0xbf, - 0x5d, 0xdd, 0xdf, 0xde, 0xdf, 0xdd, 0xab, 0xee, 0xef, 0x94, 0x48, 0x07, 0x0a, 0x52, 0x2f, 0x76, - 0xb9, 0x06, 0xde, 0xf5, 0xb4, 0x36, 0xc7, 0x0b, 0x3a, 0x9d, 0x24, 0x1c, 0x08, 0x7a, 0xd9, 0x4b, - 0x92, 0xf0, 0xb6, 0xf1, 0xb6, 0xf1, 0xb6, 0xf1, 0xb6, 0x73, 0xd4, 0xf7, 0xa8, 0x2f, 0x64, 0x5d, - 0x16, 0xa2, 0x2e, 0xfb, 0x02, 0x9f, 0x9d, 0xed, 0x4d, 0xe1, 0xdc, 0xed, 0xf9, 0xce, 0xdf, 0x6e, - 0x0b, 0xee, 0xfd, 0xd2, 0x3b, 0xf8, 0x55, 0xf6, 0x46, 0xf8, 0x34, 0x4c, 0x62, 0xf1, 0x51, 0x12, - 0x95, 0xff, 0xfc, 0xf4, 0xd3, 0xc7, 0x4d, 0x6f, 0xff, 0xf2, 0xeb, 0xc7, 0x2d, 0x6f, 0xff, 0x72, - 0xf2, 0xed, 0xd6, 0xf8, 0x3f, 0x93, 0xef, 0xab, 0x1f, 0x37, 0xbd, 0xed, 0xe9, 0xf7, 0x3b, 0x1f, - 0x37, 0xbd, 0x9d, 0xcb, 0x97, 0x7f, 0xfc, 0xf1, 0xcb, 0xcb, 0xbf, 0x5f, 0xdf, 0x3d, 0xff, 0x0f, - 0xff, 0x51, 0x29, 0x5a, 0x53, 0xf8, 0xcf, 0x05, 0x3e, 0x0c, 0xbb, 0x1c, 0x86, 0x1f, 0x3b, 0x0c, - 0x81, 0x77, 0x55, 0xf3, 0xde, 0x5d, 0xfe, 0xbd, 0xf5, 0xf3, 0xf6, 0xdd, 0x9b, 0x97, 0x7f, 0xef, - 0xdd, 0x3d, 0xfc, 0xe1, 0xd7, 0xc7, 0x7e, 0x6d, 0xeb, 0xe7, 0xbd, 0xbb, 0x37, 0x4f, 0xfc, 0xcb, - 0xee, 0xdd, 0x9b, 0xef, 0xfc, 0x8c, 0x9d, 0xbb, 0x9f, 0x96, 0x7e, 0x75, 0xf4, 0xf3, 0xea, 0x53, - 0x7f, 0xb0, 0xfd, 0xc4, 0x1f, 0xbc, 0x7e, 0xea, 0x0f, 0x5e, 0x3f, 0xf1, 0x07, 0x4f, 0x2e, 0xa9, - 0xfa, 0xc4, 0x1f, 0xec, 0xdc, 0x7d, 0x5d, 0xfa, 0xfd, 0x9f, 0x1e, 0xff, 0xd5, 0xdd, 0xbb, 0x97, - 0x5f, 0x9f, 0xfa, 0xb7, 0xbd, 0xbb, 0xaf, 0x6f, 0x5e, 0x16, 0xd0, 0x34, 0xc0, 0xf5, 0x7e, 0xe0, - 0x84, 0x49, 0xb5, 0xe9, 0xce, 0xec, 0x9e, 0x4c, 0x5b, 0x2e, 0xcc, 0x0e, 0x66, 0x07, 0xb3, 0x23, - 0x8f, 0x42, 0x1e, 0x45, 0xd3, 0x97, 0x25, 0x8f, 0xf2, 0x7c, 0x39, 0xe4, 0x51, 0x9c, 0x7d, 0xf5, - 0xe4, 0x51, 0xf0, 0xad, 0xc5, 0x7d, 0xeb, 0xeb, 0xa4, 0x37, 0xec, 0x0b, 0xbb, 0xd7, 0x13, 0x19, - 0x78, 0xd8, 0x78, 0xd8, 0x78, 0xd8, 0x78, 0xd8, 0x39, 0xea, 0x7b, 0x37, 0x0c, 0xae, 0x92, 0xf0, - 0x4a, 0x32, 0x71, 0x22, 0xe1, 0x60, 0xb7, 0xb2, 0x29, 0x16, 0xbf, 0xfc, 0xf2, 0x6a, 0xf6, 0x7f, - 0x73, 0x43, 0x39, 0xb8, 0xf7, 0xfd, 0xbd, 0x6f, 0xbd, 0xf1, 0xa0, 0x88, 0x75, 0x81, 0xa5, 0x54, - 0x42, 0x77, 0x16, 0x51, 0x69, 0x2c, 0x02, 0x50, 0x02, 0x94, 0x00, 0x25, 0x40, 0xa9, 0x00, 0xc6, - 0x65, 0x01, 0x96, 0xb6, 0x05, 0x3e, 0xbb, 0x1e, 0x0f, 0x6f, 0x46, 0x5b, 0x73, 0xb7, 0x06, 0x20, - 0x93, 0x84, 0x37, 0xbd, 0xdb, 0xd0, 0xeb, 0x27, 0xd1, 0x6d, 0x90, 0x86, 0xa2, 0x19, 0x86, 0x65, - 0x51, 0x80, 0x0e, 0xa0, 0x03, 0xe8, 0x00, 0x3a, 0x92, 0x46, 0x26, 0x1b, 0x58, 0x27, 0x89, 0x41, - 0x02, 0x61, 0xc9, 0x4a, 0xa3, 0x13, 0xc6, 0x69, 0x94, 0x7e, 0x39, 0x08, 0x06, 0xa1, 0xfc, 0x6c, - 0xe6, 0xd3, 0xfa, 0xf1, 0xc9, 0x87, 0xba, 0xdf, 0x3a, 0x6d, 0x7c, 0xa8, 0x9d, 0xd7, 0xfd, 0xda, - 0x99, 0x7f, 0xd2, 0x3a, 0x6f, 0x9c, 0x34, 0xa5, 0x8e, 0xdc, 0x38, 0xb2, 0x3b, 0x10, 0xad, 0x4b, - 0x11, 0x0e, 0x81, 0x4f, 0x77, 0xee, 0xde, 0x96, 0x65, 0x9b, 0x58, 0x3b, 0x3a, 0xaa, 0x14, 0x31, - 0x75, 0x60, 0xb1, 0x61, 0xad, 0xa3, 0xda, 0xa1, 0xf4, 0x8e, 0x89, 0x7c, 0xf2, 0xa5, 0xeb, 0x86, - 0xdb, 0x4d, 0x67, 0xb3, 0x37, 0x4c, 0x43, 0xef, 0xaa, 0x1b, 0xf4, 0xbd, 0x4e, 0x70, 0xd3, 0x8f, - 0xe2, 0x6b, 0x41, 0x6f, 0x73, 0x59, 0x96, 0xdc, 0x18, 0x0a, 0x89, 0x49, 0xf3, 0xb8, 0xb3, 0xb8, - 0xb3, 0xb8, 0xb3, 0xcc, 0xa1, 0x60, 0x0e, 0xc5, 0xea, 0xcf, 0x3a, 0x08, 0xe3, 0x8e, 0xd7, 0xee, - 0xdd, 0xdc, 0x0c, 0xe3, 0x28, 0xfd, 0x22, 0x78, 0xd9, 0xfa, 0xa2, 0x1c, 0x39, 0xc0, 0x69, 0x9e, - 0x34, 0xeb, 0xe0, 0x0d, 0x78, 0x03, 0xde, 0x80, 0x37, 0x79, 0xea, 0xfb, 0xcc, 0x76, 0x11, 0xb8, - 0x97, 0x80, 0x34, 0x6e, 0xa8, 0x10, 0xbc, 0xa1, 0x22, 0xbb, 0xe1, 0xa0, 0x44, 0x77, 0x41, 0x84, - 0x9f, 0xae, 0xfb, 0xde, 0xcd, 0xb0, 0x9b, 0x46, 0x9f, 0x7b, 0xfd, 0xfc, 0xaf, 0x84, 0x58, 0xfc, - 0x78, 0x6e, 0x86, 0x70, 0xcf, 0x5b, 0xe0, 0x66, 0x08, 0x13, 0x6f, 0xa0, 0xe4, 0x37, 0x43, 0xe4, - 0x7c, 0xc5, 0xcc, 0x23, 0x4e, 0x44, 0x8e, 0x57, 0xcd, 0x08, 0x19, 0x16, 0xe8, 0x09, 0xf4, 0x04, - 0x7a, 0x92, 0x73, 0x7c, 0x22, 0x92, 0xb9, 0x50, 0x5d, 0x6c, 0x50, 0xf5, 0xb2, 0x47, 0x24, 0x32, - 0xb0, 0xfa, 0xb1, 0x00, 0x0e, 0x77, 0xd3, 0xda, 0x98, 0x4e, 0x3d, 0x13, 0xaa, 0x65, 0x4a, 0xd5, - 0x4d, 0xaa, 0xba, 0x69, 0x55, 0x35, 0xb1, 0x32, 0xa6, 0x56, 0xc8, 0xe4, 0xca, 0x47, 0x86, 0x96, - 0xce, 0x0b, 0x77, 0xd3, 0x6a, 0xbc, 0xd4, 0xca, 0x94, 0x96, 0x7b, 0x69, 0xda, 0x95, 0xc7, 0xbd, - 0x05, 0x69, 0x80, 0x12, 0xa0, 0x04, 0x28, 0x01, 0x4a, 0x05, 0x02, 0xa5, 0x61, 0x14, 0xa7, 0xbf, - 0x2a, 0x40, 0x92, 0x60, 0x03, 0xba, 0xf0, 0xb4, 0x89, 0xe9, 0x97, 0xec, 0x71, 0x7f, 0xa1, 0x35, - 0x7d, 0x42, 0x09, 0x55, 0x96, 0xc4, 0x29, 0x4d, 0xa3, 0x98, 0xc9, 0x53, 0x9c, 0x48, 0x20, 0x6c, - 0x0d, 0x16, 0x55, 0x44, 0x61, 0x4a, 0x85, 0xb5, 0x8a, 0x54, 0x77, 0x76, 0x4a, 0xac, 0x24, 0x1b, - 0xc5, 0xfc, 0xf4, 0xa2, 0x8c, 0xb4, 0x73, 0x3b, 0xd0, 0x27, 0x94, 0x39, 0x9e, 0x7d, 0xbe, 0x55, - 0x06, 0x79, 0x21, 0x21, 0x9a, 0x6b, 0x3e, 0x39, 0xff, 0xf7, 0x9a, 0x6b, 0x79, 0x5c, 0x1a, 0xa4, - 0x82, 0x5d, 0xe6, 0x93, 0x8f, 0x2f, 0x58, 0x3a, 0xa8, 0x4a, 0x3a, 0x48, 0x8f, 0x2e, 0x92, 0x0e, - 0x2a, 0x21, 0x4a, 0x90, 0x0e, 0xfa, 0xd6, 0x06, 0x91, 0x0e, 0xb2, 0x36, 0x9d, 0x7a, 0x26, 0x54, - 0xcb, 0x94, 0xaa, 0x9b, 0x54, 0x75, 0xd3, 0xaa, 0x6a, 0x62, 0x65, 0x29, 0x09, 0xe9, 0xa0, 0x67, - 0x78, 0x7a, 0xa4, 0x83, 0x48, 0x07, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0x04, 0x28, 0xfd, 0xef, 0xf3, - 0x42, 0x3a, 0xe8, 0x7b, 0xbf, 0x48, 0x07, 0xad, 0x24, 0x8e, 0x74, 0x50, 0x3e, 0x2a, 0x42, 0x3a, - 0xa8, 0xe0, 0x4a, 0x42, 0x3a, 0x48, 0x96, 0x52, 0x90, 0x0e, 0x32, 0x4f, 0x07, 0x4d, 0xb2, 0x18, - 0x74, 0x96, 0xda, 0x29, 0x84, 0x1b, 0x8a, 0x50, 0xc9, 0x35, 0xf1, 0x96, 0x0c, 0xdb, 0x69, 0x9c, - 0xb9, 0xad, 0xcd, 0xc9, 0x0a, 0x1b, 0xd9, 0x02, 0xfd, 0x56, 0xb6, 0x2c, 0xff, 0xe0, 0xba, 0xef, - 0x37, 0xb3, 0xc5, 0xf8, 0xf5, 0x4f, 0xd7, 0xfd, 0xe3, 0xe9, 0x5a, 0xca, 0xd4, 0xec, 0x9a, 0x24, - 0xbd, 0xc4, 0xfb, 0x1c, 0xc4, 0x9d, 0x6e, 0x9e, 0x83, 0xa1, 0xe6, 0xc1, 0xfc, 0xc5, 0xcf, 0xa7, - 0xdd, 0xd5, 0xbd, 0xb0, 0x04, 0xed, 0xae, 0x26, 0x61, 0x05, 0xda, 0x5d, 0x57, 0x3a, 0x06, 0xb4, - 0xbb, 0x52, 0xdf, 0x60, 0x6d, 0x80, 0xd4, 0x0c, 0x91, 0x8a, 0x41, 0x2a, 0x06, 0xed, 0x11, 0xab, - 0x6f, 0x48, 0x93, 0x30, 0x48, 0xbd, 0x60, 0xe0, 0xfd, 0x19, 0xa5, 0x9f, 0x3b, 0x49, 0xf0, 0xa7, - 0x7c, 0xc6, 0x67, 0x59, 0x24, 0x35, 0x0f, 0x16, 0x66, 0x54, 0xc3, 0x9c, 0xea, 0x99, 0x55, 0x2d, - 0xf3, 0xaa, 0x6e, 0x66, 0xd5, 0xcd, 0xad, 0xaa, 0xd9, 0x95, 0x8d, 0xbb, 0x51, 0xf3, 0xf0, 0x0c, - 0xef, 0x6f, 0x8b, 0x00, 0xa5, 0xbb, 0xf1, 0x28, 0xfb, 0xb8, 0xd4, 0x42, 0x48, 0x83, 0x82, 0xf5, - 0xbc, 0x0e, 0x38, 0x05, 0xeb, 0x10, 0x3a, 0x08, 0x1d, 0x84, 0x2e, 0xaf, 0x0f, 0x1e, 0xd9, 0xe9, - 0x38, 0xec, 0x0d, 0x07, 0xde, 0xb0, 0xdf, 0x09, 0xd2, 0xd0, 0xbb, 0x09, 0x07, 0x83, 0xe0, 0x3a, - 0x1c, 0x28, 0x94, 0xb0, 0x3f, 0x29, 0x1a, 0xe2, 0x05, 0xf1, 0x82, 0x78, 0x41, 0xbc, 0x0a, 0x44, - 0xbc, 0x86, 0x51, 0x9c, 0xbe, 0xae, 0x2a, 0xf0, 0xae, 0x3d, 0x0a, 0xfb, 0xbe, 0xfd, 0x20, 0x14, - 0xf6, 0xe5, 0x27, 0x8f, 0xc2, 0xbe, 0xc2, 0xaa, 0xc8, 0x76, 0x75, 0x7f, 0x7b, 0x7f, 0x77, 0xaf, - 0xba, 0x4f, 0x7d, 0x9f, 0x73, 0x9f, 0x7e, 0xb9, 0xc6, 0x2d, 0x43, 0x64, 0x91, 0x20, 0x33, 0x90, - 0x19, 0xc8, 0x0c, 0x64, 0xc6, 0x4d, 0x32, 0x43, 0x16, 0x49, 0xf8, 0x13, 0xc9, 0x22, 0xfd, 0x50, - 0x16, 0x89, 0x3a, 0x77, 0x6b, 0x8d, 0x70, 0x44, 0x13, 0xcc, 0x0b, 0xdd, 0x47, 0xab, 0xf9, 0x6d, - 0xba, 0x98, 0x12, 0x55, 0xba, 0x5f, 0x27, 0x41, 0x3b, 0xbc, 0x1a, 0x76, 0xbd, 0x24, 0x1c, 0xa4, - 0x41, 0x92, 0xe6, 0x5f, 0xeb, 0xbe, 0x24, 0x81, 0x6a, 0x77, 0xf7, 0xfc, 0x5b, 0xaa, 0xdd, 0x4d, - 0xfc, 0x53, 0xaa, 0xdd, 0x57, 0x3a, 0x06, 0x54, 0xbb, 0x53, 0x1c, 0xe1, 0x0a, 0x81, 0xa6, 0x38, - 0x42, 0x8f, 0xfd, 0x30, 0xcd, 0x8f, 0x58, 0x21, 0xb1, 0x42, 0x62, 0x85, 0xc4, 0x0a, 0x89, 0x15, - 0x3a, 0x11, 0x2b, 0x14, 0xf0, 0x8b, 0x3e, 0x87, 0xdd, 0x7e, 0x98, 0x78, 0xbd, 0xb8, 0xfb, 0x45, - 0x1e, 0x8e, 0xee, 0x0b, 0x03, 0x92, 0x80, 0x24, 0x20, 0x09, 0x48, 0x02, 0x92, 0x80, 0xa4, 0xc5, - 0x3d, 0xc8, 0x02, 0xb8, 0x5e, 0x1a, 0xdd, 0x84, 0xf2, 0x98, 0xb4, 0x20, 0x0d, 0x50, 0x02, 0x94, - 0x00, 0x25, 0x40, 0xa9, 0x40, 0xa0, 0x34, 0x8c, 0xe2, 0x74, 0x6b, 0x57, 0x01, 0x93, 0x76, 0x29, - 0x10, 0xff, 0xf6, 0x83, 0x50, 0x20, 0x9e, 0x9f, 0x3c, 0x0a, 0xc4, 0x0b, 0xab, 0x22, 0xdb, 0x9b, - 0xfb, 0xbb, 0x94, 0x86, 0xbb, 0xf6, 0xe9, 0xeb, 0x5c, 0x1a, 0x3e, 0x48, 0x83, 0x6e, 0xe8, 0x25, - 0xbd, 0x61, 0x1a, 0x0e, 0x94, 0x98, 0xc5, 0xb2, 0x48, 0xe8, 0x05, 0xf4, 0x02, 0x7a, 0x01, 0xbd, - 0x28, 0x10, 0xbd, 0xe8, 0x84, 0xed, 0xe8, 0x26, 0xe8, 0xee, 0x6e, 0x6b, 0x44, 0xbd, 0xaa, 0x82, - 0x32, 0x96, 0xfc, 0x84, 0x2a, 0x7c, 0xc6, 0x4d, 0x3e, 0x53, 0x85, 0xcf, 0xc0, 0x67, 0xfe, 0xb7, - 0x8a, 0xbc, 0x46, 0x45, 0x20, 0x33, 0x05, 0x21, 0x33, 0x34, 0xf8, 0x18, 0xb4, 0x75, 0x3c, 0xec, - 0x06, 0x60, 0x50, 0x5c, 0x8e, 0xac, 0x96, 0x41, 0x71, 0xd4, 0x42, 0xbb, 0xc0, 0x4c, 0xa9, 0x85, - 0xd6, 0x03, 0x0a, 0x6a, 0xa1, 0xbf, 0xcf, 0x84, 0x11, 0x84, 0xb3, 0x34, 0x6d, 0x5a, 0x26, 0x4e, - 0xdd, 0xd4, 0xa9, 0x9b, 0x3c, 0x55, 0xd3, 0x27, 0xcb, 0x16, 0x28, 0x3c, 0x7b, 0x86, 0x07, 0x46, - 0x2d, 0x34, 0xb5, 0xd0, 0x40, 0x12, 0x90, 0x04, 0x24, 0x01, 0x49, 0x40, 0x92, 0x39, 0x24, 0x75, - 0x7b, 0xed, 0x60, 0x16, 0xc4, 0xca, 0xf3, 0x8e, 0xc8, 0x27, 0x5f, 0xec, 0x92, 0x44, 0xc0, 0x09, - 0x70, 0x02, 0x9c, 0x00, 0x27, 0xc0, 0x09, 0x70, 0x5a, 0xdc, 0x83, 0x9b, 0x5e, 0x47, 0xa1, 0x8c, - 0x6e, 0x2c, 0x05, 0x10, 0x02, 0x84, 0x00, 0x21, 0x40, 0xa8, 0x40, 0x20, 0x14, 0xc6, 0xc3, 0x9b, - 0x30, 0x99, 0xe4, 0xd6, 0x15, 0x80, 0x68, 0x5b, 0x50, 0x46, 0x3d, 0x1e, 0xde, 0x8c, 0x36, 0xed, - 0x6e, 0x8d, 0xc1, 0xae, 0x1f, 0x86, 0x89, 0xa7, 0xdb, 0x9a, 0xba, 0x2c, 0x12, 0x18, 0x04, 0x06, - 0x81, 0x41, 0x60, 0xb0, 0x40, 0x30, 0x48, 0x7f, 0xea, 0x77, 0x7f, 0xd1, 0x9f, 0xba, 0x92, 0x38, - 0xea, 0xb9, 0xf3, 0x51, 0x11, 0xfa, 0x53, 0x8b, 0xae, 0x25, 0x94, 0x74, 0x17, 0x9a, 0x5e, 0xa8, - 0xe4, 0x79, 0x1e, 0x0a, 0x84, 0x5a, 0x40, 0x2d, 0xa0, 0x16, 0x50, 0x8b, 0x02, 0x51, 0x0b, 0xd2, - 0x3c, 0x2a, 0xd0, 0xc4, 0x3c, 0x36, 0x40, 0x09, 0x50, 0x02, 0x94, 0x00, 0xa5, 0xef, 0x39, 0x2f, - 0xc4, 0xbb, 0xbe, 0xfb, 0x8b, 0x78, 0x57, 0x2e, 0xc1, 0x0c, 0xe2, 0x5d, 0xab, 0xa9, 0x08, 0xf1, - 0xae, 0xa2, 0x6b, 0x09, 0xf1, 0xae, 0xc2, 0x91, 0x0a, 0xe6, 0xb1, 0x41, 0x2f, 0xa0, 0x17, 0xd0, - 0x0b, 0xe8, 0xc5, 0xf3, 0xce, 0x0b, 0xf3, 0xd8, 0xe0, 0x33, 0xcc, 0x63, 0x83, 0xcf, 0xb8, 0xc5, - 0x67, 0x98, 0xc7, 0x06, 0x99, 0x61, 0x1e, 0x5b, 0x1e, 0x2e, 0xd6, 0xba, 0xcc, 0x63, 0x9b, 0x8c, - 0x11, 0x73, 0x75, 0x1c, 0x9b, 0x53, 0xf7, 0x65, 0x0b, 0xe9, 0x84, 0x33, 0xba, 0x50, 0xc9, 0x75, - 0xf8, 0x5d, 0x32, 0x6c, 0xa7, 0x71, 0xe6, 0x2c, 0x37, 0x27, 0x8b, 0x6c, 0x64, 0x6b, 0xf4, 0x5b, - 0xd9, 0xca, 0xfc, 0x83, 0xeb, 0xbe, 0xdf, 0xcc, 0xd6, 0xe3, 0xbf, 0xcf, 0xd6, 0x73, 0x9a, 0x2d, - 0x67, 0xc3, 0x0d, 0x15, 0xca, 0x41, 0x7d, 0x2a, 0xdd, 0xde, 0xf5, 0x75, 0x14, 0x5f, 0x7b, 0xbd, - 0xfe, 0x48, 0x7d, 0x06, 0xb9, 0xe9, 0xcf, 0xbd, 0x6e, 0xf1, 0x45, 0x01, 0x39, 0xa9, 0x7c, 0xbe, - 0xf3, 0x00, 0x73, 0x8f, 0x98, 0x48, 0x44, 0x48, 0xe4, 0x22, 0x22, 0x52, 0x11, 0x10, 0xf1, 0x88, - 0x87, 0x78, 0x84, 0x43, 0x34, 0xa2, 0xe1, 0x16, 0x88, 0xe4, 0x3d, 0xbf, 0xaf, 0xd2, 0x9e, 0x9e, - 0x29, 0xa1, 0x39, 0xa3, 0xd9, 0xe7, 0x17, 0x6c, 0xd0, 0xe8, 0x26, 0x83, 0x46, 0xe5, 0x0d, 0x8f, - 0x9a, 0x01, 0x52, 0x33, 0x44, 0x2a, 0x06, 0xa9, 0x18, 0x0c, 0x48, 0x6c, 0xd0, 0x68, 0xb7, 0x37, - 0x72, 0x6c, 0x27, 0x3e, 0x9f, 0x37, 0xa6, 0x1f, 0x5e, 0xfb, 0x73, 0x10, 0x5f, 0x87, 0x03, 0x8d, - 0xa1, 0x3a, 0x4f, 0xca, 0x16, 0x52, 0xa4, 0xb7, 0xe1, 0x55, 0x30, 0xec, 0x8e, 0xf5, 0x68, 0xa4, - 0xae, 0xa4, 0xba, 0xd4, 0xed, 0xab, 0x9e, 0x9d, 0xd5, 0xb2, 0xb7, 0xea, 0x76, 0x57, 0xdd, 0xfe, - 0xaa, 0xda, 0x61, 0xd9, 0x98, 0x1c, 0xe5, 0xdd, 0xcf, 0x70, 0x07, 0xb7, 0x08, 0x5e, 0xba, 0x1b, - 0xa8, 0x32, 0x0f, 0x58, 0x3d, 0x08, 0x72, 0x70, 0x97, 0x44, 0x5e, 0x27, 0x9c, 0xbb, 0x24, 0xa0, - 0x78, 0x50, 0x3c, 0x28, 0x1e, 0x14, 0x0f, 0x8a, 0x07, 0xc5, 0x83, 0xe2, 0x41, 0xf1, 0xa0, 0x78, - 0x50, 0x3c, 0x28, 0x9e, 0x3d, 0xc5, 0xa3, 0x3c, 0xc5, 0x5a, 0x25, 0x5c, 0x51, 0x05, 0xeb, 0xea, - 0x94, 0xa3, 0xc9, 0x72, 0x4e, 0xb2, 0xd5, 0x94, 0xa8, 0x38, 0x65, 0xe6, 0x2d, 0x07, 0x9d, 0x4e, - 0x12, 0x0e, 0x04, 0xaa, 0x53, 0x96, 0x24, 0xe4, 0x5b, 0x9e, 0xb2, 0x49, 0x79, 0x8a, 0xc3, 0x2e, - 0x2d, 0xe5, 0x29, 0x05, 0x02, 0x91, 0xdc, 0x5d, 0xce, 0x39, 0x2f, 0x0f, 0x83, 0xab, 0x24, 0xbc, - 0xca, 0x53, 0x61, 0xa7, 0x2e, 0xe5, 0x5e, 0x8e, 0x9f, 0xd9, 0xca, 0x70, 0xee, 0x97, 0x5f, 0xb2, - 0xf0, 0xf2, 0xab, 0x25, 0xe3, 0x55, 0x22, 0xd3, 0x3f, 0x6e, 0xc2, 0xf4, 0x92, 0xf0, 0xaa, 0x1b, - 0xb6, 0xd3, 0x5e, 0x92, 0xbf, 0xe5, 0x7f, 0x28, 0x80, 0xba, 0x44, 0x0c, 0x3f, 0x86, 0xdf, 0x41, - 0xc3, 0x4f, 0x5d, 0xe2, 0x0b, 0xea, 0x12, 0x95, 0x0c, 0x8e, 0xb4, 0xe1, 0x51, 0x33, 0x40, 0x6a, - 0x86, 0x48, 0xc5, 0x20, 0x15, 0x23, 0xf2, 0x25, 0x96, 0xb4, 0x7a, 0xe0, 0xaa, 0x78, 0xed, 0x6e, - 0x34, 0xd9, 0x68, 0xe9, 0x41, 0x7b, 0x8f, 0xcb, 0x95, 0x4f, 0x56, 0x5d, 0x05, 0xdd, 0x01, 0xd9, - 0x2a, 0x7d, 0xc3, 0xaa, 0x67, 0x60, 0xb5, 0x0c, 0xad, 0xba, 0xc1, 0x55, 0x37, 0xbc, 0xaa, 0x06, - 0x58, 0xc6, 0x10, 0x0b, 0x19, 0x64, 0xb9, 0xd0, 0xc1, 0x93, 0xe7, 0x85, 0x6c, 0x95, 0xc6, 0x4b, - 0x7d, 0x04, 0x98, 0x86, 0x83, 0x34, 0x4c, 0xbc, 0xa8, 0x63, 0x01, 0x8a, 0x33, 0xd9, 0x00, 0x16, - 0x80, 0x05, 0x60, 0x01, 0x58, 0x05, 0x02, 0xac, 0xe4, 0xbe, 0x01, 0xf3, 0xd2, 0x91, 0x5c, 0x05, - 0xec, 0xda, 0x17, 0x94, 0x91, 0xed, 0x5d, 0xe1, 0xe7, 0x38, 0xdd, 0x9f, 0x16, 0xfc, 0xba, 0x5a, - 0x51, 0x18, 0x0b, 0x94, 0xbd, 0x9d, 0x3d, 0x05, 0x51, 0x3a, 0xd3, 0xb6, 0xf4, 0xde, 0xd6, 0xec, - 0xc1, 0x34, 0xa7, 0x6f, 0x29, 0x39, 0x08, 0x4f, 0x8a, 0x55, 0x1e, 0xb5, 0x34, 0x93, 0x6b, 0x30, - 0x72, 0x49, 0xd8, 0xe0, 0x3f, 0xae, 0x4a, 0x8a, 0x53, 0xba, 0x5c, 0x51, 0xa5, 0xed, 0xea, 0xfe, - 0xf6, 0xfe, 0xee, 0x5e, 0x75, 0x7f, 0x67, 0x8d, 0x74, 0x6a, 0xa3, 0x1c, 0x52, 0x2e, 0x37, 0x0a, - 0x7c, 0xf2, 0x14, 0x01, 0x3d, 0xea, 0xdf, 0x6e, 0xe7, 0x5c, 0x6e, 0xf4, 0x5d, 0x4e, 0xd7, 0xaf, - 0x0a, 0xb2, 0x5a, 0x41, 0x9a, 0x86, 0x49, 0xac, 0x86, 0xec, 0x95, 0xff, 0xfc, 0xf4, 0xd3, 0xc7, - 0x4d, 0x6f, 0xff, 0xf2, 0xeb, 0xc7, 0x2d, 0x6f, 0xff, 0x72, 0xf2, 0xed, 0xd6, 0xf8, 0x3f, 0x93, - 0xef, 0xab, 0x1f, 0x37, 0xbd, 0xed, 0xe9, 0xf7, 0x3b, 0x1f, 0x37, 0xbd, 0x9d, 0xcb, 0x97, 0x7f, - 0xfc, 0xf1, 0xcb, 0xcb, 0xbf, 0x5f, 0xdf, 0x3d, 0xff, 0x0f, 0xff, 0x51, 0x29, 0xfa, 0x21, 0x62, - 0xb6, 0x1f, 0xb5, 0xd3, 0x06, 0x05, 0xb3, 0x0f, 0x62, 0x66, 0xb4, 0xc7, 0xe6, 0x85, 0x25, 0xb4, - 0xc7, 0x52, 0x69, 0xf0, 0xad, 0xb7, 0x49, 0xa5, 0x41, 0xe9, 0x70, 0x82, 0x4a, 0x83, 0xd5, 0xb6, - 0x8f, 0x4a, 0x03, 0x6b, 0xc3, 0xaa, 0x67, 0x60, 0xb5, 0x0c, 0xad, 0xba, 0xc1, 0x55, 0x37, 0xbc, - 0xaa, 0x06, 0x58, 0x96, 0xb2, 0x50, 0x69, 0xf0, 0x0c, 0x3f, 0x90, 0x4a, 0x03, 0x2a, 0x0d, 0x00, - 0x2c, 0x00, 0x0b, 0xc0, 0x02, 0xb0, 0x56, 0xb0, 0x66, 0x54, 0x1a, 0xfc, 0xc8, 0x17, 0x95, 0x06, - 0xab, 0x89, 0xa2, 0xd2, 0xa0, 0x38, 0x0e, 0xc2, 0x93, 0x62, 0xa9, 0x34, 0x90, 0x55, 0x25, 0x2a, - 0x0d, 0xd6, 0x43, 0xa7, 0xa8, 0x34, 0xb0, 0x3f, 0x79, 0x54, 0x1a, 0xe4, 0x43, 0xf5, 0xa8, 0x34, - 0x70, 0xfa, 0x10, 0x51, 0x69, 0x40, 0xa5, 0x81, 0x03, 0x95, 0x06, 0x4c, 0x69, 0xb3, 0x56, 0x09, - 0x57, 0x54, 0xc1, 0x7a, 0x4a, 0xdb, 0xe9, 0x68, 0x39, 0xa7, 0xb3, 0xd5, 0x94, 0x68, 0x54, 0x4f, - 0xbe, 0x35, 0x2e, 0x22, 0xb5, 0x2d, 0x62, 0x63, 0x79, 0xaa, 0x8c, 0xe5, 0xc9, 0xd3, 0x81, 0x64, - 0x2c, 0x4f, 0x61, 0xe0, 0x22, 0xf7, 0xb1, 0x3c, 0xc1, 0x30, 0xfd, 0xec, 0xf5, 0x83, 0xc1, 0x20, - 0x53, 0x01, 0xa1, 0x92, 0xb9, 0x45, 0x31, 0x32, 0xa5, 0x73, 0x9b, 0x0c, 0xe9, 0xa1, 0x74, 0xce, - 0x21, 0xb3, 0xa4, 0x62, 0x9e, 0x8a, 0x41, 0x7c, 0xc4, 0x12, 0x5e, 0x0b, 0x69, 0xfb, 0x28, 0xbe, - 0x96, 0xb2, 0x31, 0x8b, 0x91, 0x96, 0x35, 0x28, 0xa1, 0xee, 0x84, 0x83, 0x76, 0x12, 0xf5, 0x45, - 0xb8, 0xea, 0xec, 0xa5, 0xdd, 0x17, 0x02, 0x26, 0x80, 0x09, 0x60, 0x02, 0x98, 0x90, 0x2b, 0x97, - 0x4d, 0xa2, 0xf8, 0x1a, 0x24, 0x58, 0x11, 0x09, 0xbe, 0xc4, 0xc1, 0x4d, 0xd4, 0x0e, 0xba, 0xdd, - 0x2f, 0xde, 0x24, 0x84, 0x34, 0x4c, 0x42, 0x41, 0xaa, 0xf0, 0x84, 0xbc, 0xbc, 0x8b, 0xf9, 0x65, - 0xab, 0xd1, 0xc1, 0x1f, 0xf0, 0x07, 0xfc, 0x59, 0x73, 0xfc, 0x91, 0xab, 0x16, 0x17, 0xaa, 0x12, - 0x77, 0x13, 0x80, 0xc2, 0x38, 0xf8, 0xd4, 0x95, 0x44, 0x9c, 0xa9, 0x00, 0x39, 0x88, 0x11, 0xb8, - 0x07, 0x10, 0x84, 0x01, 0x61, 0x40, 0x18, 0x10, 0x06, 0x84, 0xc9, 0x01, 0x61, 0x06, 0x69, 0xf0, - 0xa9, 0x1b, 0x0d, 0x3e, 0x87, 0x1d, 0x2f, 0x4d, 0x82, 0x78, 0x10, 0x4d, 0x2e, 0xf5, 0x92, 0x43, - 0x9c, 0x27, 0x04, 0x02, 0x11, 0x40, 0x04, 0x10, 0x01, 0x44, 0xe4, 0xa8, 0xef, 0xed, 0xde, 0x30, - 0x4e, 0xc3, 0x64, 0x77, 0x5b, 0x10, 0x24, 0x04, 0x4a, 0x4f, 0x85, 0x5b, 0x48, 0x04, 0x5b, 0xaf, - 0x34, 0x5a, 0x44, 0x94, 0xea, 0xf8, 0xb5, 0x5a, 0x40, 0x34, 0xcb, 0xf3, 0x05, 0x0b, 0xcd, 0x55, - 0x5a, 0x3a, 0xb4, 0x5f, 0xfd, 0xd6, 0xaf, 0xdb, 0xdb, 0xbb, 0x7b, 0xdb, 0xdb, 0x9b, 0x7b, 0xaf, - 0xf7, 0x36, 0xf7, 0x77, 0x76, 0xb6, 0x76, 0xb7, 0x76, 0x4a, 0xa4, 0x0d, 0x05, 0xa9, 0x6b, 0xbe, - 0x5c, 0x03, 0x2f, 0xbc, 0x1b, 0x0c, 0x52, 0xef, 0x9e, 0x67, 0x2c, 0xe7, 0x7e, 0x2f, 0x49, 0xc2, - 0xef, 0xc6, 0xef, 0xc6, 0xef, 0xc6, 0xef, 0xce, 0x51, 0xdf, 0xd3, 0xe8, 0x26, 0x4c, 0xa3, 0xf6, - 0x7f, 0x07, 0x85, 0xf3, 0xbc, 0x2f, 0xe2, 0x09, 0xea, 0x56, 0xe2, 0x20, 0xee, 0x0d, 0xc2, 0x76, - 0x2f, 0xee, 0x48, 0x34, 0xb2, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xaf, - 0x8f, 0x87, 0xdf, 0x6b, 0x07, 0x5d, 0x2f, 0x10, 0x0c, 0xac, 0xcf, 0x24, 0xe0, 0xd1, 0xe3, 0xd1, - 0xe3, 0xd1, 0xe3, 0xd1, 0xe7, 0xa8, 0xef, 0xc1, 0xc0, 0x8b, 0x87, 0x37, 0x9f, 0xc2, 0x44, 0xd0, - 0x9f, 0xdf, 0xc3, 0xcf, 0xc6, 0xcf, 0xc6, 0xcf, 0x2e, 0xa5, 0x9f, 0xad, 0x35, 0xfc, 0x08, 0xef, - 0x7a, 0x3d, 0xbd, 0xeb, 0x9b, 0x70, 0x30, 0x08, 0xae, 0x43, 0x41, 0xef, 0x7a, 0x26, 0xa1, 0x60, - 0x77, 0x5f, 0xe0, 0x5d, 0xe3, 0x5d, 0xe3, 0x5d, 0xaf, 0xb2, 0x03, 0x72, 0x77, 0x5f, 0x84, 0xed, - 0x30, 0xba, 0x0d, 0x35, 0x06, 0x7b, 0x4f, 0x25, 0xc9, 0x8e, 0xf1, 0xde, 0x62, 0x8c, 0xb7, 0xa1, - 0x71, 0xd3, 0x32, 0x72, 0xea, 0xc6, 0x4e, 0xdd, 0xe8, 0xa9, 0x1a, 0x3f, 0x61, 0x77, 0x52, 0xea, - 0x46, 0x1b, 0x21, 0xa3, 0x38, 0x3f, 0x2e, 0x27, 0xe7, 0x8d, 0x77, 0x8d, 0xc3, 0xda, 0x79, 0xe3, - 0xa4, 0x29, 0xaf, 0xca, 0xd3, 0xc3, 0xb9, 0x20, 0xf5, 0xe7, 0x52, 0x50, 0x30, 0x69, 0xe3, 0xa9, - 0x69, 0x44, 0xf5, 0x8d, 0xa9, 0xb6, 0x51, 0x35, 0x33, 0xae, 0x66, 0x46, 0xd6, 0xc4, 0xd8, 0xca, - 0x1a, 0x5d, 0x85, 0x28, 0xd1, 0x0b, 0x95, 0xbb, 0x14, 0x96, 0xce, 0xdb, 0x30, 0x8a, 0x53, 0x91, - 0xa2, 0x8e, 0xa7, 0xac, 0xe3, 0xaf, 0x4c, 0xec, 0xff, 0xf1, 0x07, 0x63, 0x62, 0xbf, 0xbc, 0x5c, - 0x26, 0xf6, 0x97, 0x56, 0x95, 0xf4, 0x8b, 0x43, 0x9c, 0xd2, 0x2e, 0x66, 0xf7, 0x9b, 0xae, 0x5f, - 0x32, 0xc5, 0x74, 0xd1, 0x7a, 0x5b, 0x3b, 0xaf, 0xeb, 0xd1, 0xaa, 0x4c, 0x1e, 0x84, 0x0a, 0x42, - 0x05, 0xa1, 0x82, 0x50, 0x41, 0xa8, 0x20, 0x54, 0x10, 0x2a, 0x08, 0x15, 0x84, 0x0a, 0x42, 0x05, - 0xa1, 0x82, 0x50, 0x15, 0x9f, 0x50, 0x8d, 0xbb, 0x6a, 0xe3, 0x5e, 0x1a, 0x5d, 0x45, 0xed, 0xf1, - 0x8d, 0x36, 0x5e, 0x98, 0x24, 0xbd, 0xc4, 0x6b, 0xf7, 0x3a, 0xa1, 0x1e, 0xcd, 0xfa, 0x9f, 0xab, - 0x80, 0x7c, 0x41, 0xbe, 0x20, 0x5f, 0x90, 0x2f, 0xc8, 0xd7, 0xfc, 0xba, 0xca, 0x4e, 0x18, 0xa7, - 0x51, 0xfa, 0x25, 0x09, 0xaf, 0x34, 0x6f, 0xab, 0x54, 0xf0, 0x79, 0x2a, 0x8d, 0xec, 0xd1, 0x0e, - 0x82, 0x81, 0xe2, 0x31, 0x9f, 0x6e, 0xec, 0xc1, 0xfb, 0x96, 0x5f, 0x3f, 0x3d, 0x3d, 0x39, 0xf5, - 0x0f, 0x4f, 0xde, 0xd6, 0xb5, 0xce, 0xfa, 0xd8, 0xcd, 0x1c, 0xa8, 0xf1, 0x4e, 0x5d, 0xee, 0xb9, - 0xb0, 0xbf, 0xbf, 0x9d, 0x1c, 0xbd, 0xf5, 0xcf, 0x1b, 0xc7, 0xf5, 0x53, 0xbf, 0xfe, 0xef, 0x56, - 0xe3, 0xb4, 0xfe, 0xb6, 0x52, 0x46, 0x92, 0x64, 0xb4, 0xbb, 0xc7, 0xf5, 0xb3, 0xb3, 0xda, 0xfb, - 0xba, 0xff, 0x5b, 0xbd, 0xf6, 0x76, 0xb4, 0xc3, 0x23, 0x45, 0x66, 0x7f, 0xf3, 0xdb, 0xdf, 0x93, - 0x56, 0xbd, 0xe9, 0x4f, 0x37, 0x99, 0xdd, 0xcd, 0x79, 0x77, 0xdf, 0x35, 0x9a, 0x8d, 0xf3, 0xba, - 0x7f, 0x76, 0x5e, 0x3b, 0xaf, 0xfb, 0xc7, 0xb5, 0xc3, 0xdf, 0x1a, 0x4d, 0x76, 0x39, 0xf7, 0x5d, - 0x3e, 0x3d, 0xb9, 0x38, 0xaf, 0xfb, 0xa7, 0xf5, 0x77, 0xa7, 0xf5, 0xb3, 0xdf, 0x50, 0x66, 0xa9, - 0x6d, 0x9e, 0x24, 0x0e, 0xd9, 0x5f, 0xa9, 0xfd, 0x3d, 0xac, 0xd7, 0xce, 0xea, 0x95, 0x92, 0x85, - 0xc0, 0x2e, 0x8b, 0x4e, 0xb4, 0x4a, 0x15, 0x02, 0x1b, 0x0c, 0x3f, 0xb9, 0x11, 0x05, 0x9b, 0x2e, - 0x84, 0x40, 0xd8, 0xb3, 0x04, 0x11, 0x08, 0xcb, 0x55, 0x3b, 0x08, 0x84, 0x11, 0x08, 0xfb, 0xc6, - 0x8e, 0x11, 0x08, 0xcb, 0x51, 0x96, 0x2b, 0x81, 0xb0, 0xb3, 0x8b, 0x03, 0x62, 0x61, 0xf2, 0x4c, - 0x4c, 0x77, 0x9b, 0x2d, 0xb7, 0xdb, 0x66, 0xdb, 0x97, 0xb6, 0xbf, 0xd1, 0xfc, 0x50, 0x3b, 0x6a, - 0xbc, 0x9d, 0x51, 0xb4, 0xa3, 0x7a, 0xf3, 0xfd, 0xf9, 0x6f, 0x15, 0xf5, 0x45, 0xdd, 0xa9, 0x4a, - 0xbc, 0x84, 0x83, 0x96, 0x46, 0x83, 0xd6, 0x84, 0xe5, 0x63, 0x1a, 0xb5, 0xb7, 0xfd, 0xe4, 0xfc, - 0xb7, 0xfa, 0xa9, 0x7f, 0x78, 0xd2, 0x7c, 0xd7, 0x78, 0xef, 0x1f, 0xfe, 0x56, 0x6b, 0xbe, 0xaf, - 0x1b, 0xd8, 0xc5, 0x9f, 0xd7, 0x6d, 0xdb, 0x6b, 0x6f, 0x8f, 0x1b, 0xcd, 0xc6, 0xd9, 0xf9, 0x69, - 0xed, 0xbc, 0xf1, 0x61, 0xe4, 0x19, 0x9c, 0xd5, 0xcf, 0xd9, 0x77, 0x05, 0x2b, 0x73, 0xd2, 0x6c, - 0xd6, 0x0f, 0xcf, 0x1b, 0x27, 0x4d, 0xff, 0xb4, 0xfe, 0x7f, 0xf5, 0xc3, 0x73, 0xcd, 0xac, 0x24, - 0xea, 0x9e, 0xa9, 0xfb, 0xd9, 0x6f, 0x17, 0xe7, 0x6f, 0x4f, 0xfe, 0xd5, 0x64, 0xeb, 0x75, 0x34, - 0xde, 0x3f, 0x3c, 0x39, 0x3a, 0x6a, 0x9c, 0x4d, 0xb4, 0xfe, 0xec, 0xe4, 0xe8, 0x62, 0x3c, 0x3a, - 0x82, 0xcd, 0x17, 0xdf, 0xfc, 0x56, 0xbd, 0x7e, 0xea, 0xbf, 0xad, 0x67, 0xf8, 0x7a, 0x71, 0x8a, - 0xb5, 0xd1, 0xd8, 0xf5, 0xe3, 0xda, 0xbf, 0xfd, 0xe6, 0xc5, 0xb1, 0xdf, 0x3a, 0xad, 0xbf, 0x6b, - 0xfc, 0xbb, 0x7e, 0xe6, 0x9f, 0xd6, 0x6b, 0x87, 0xbf, 0xb1, 0xf7, 0x2a, 0xfe, 0xe4, 0xc5, 0xb9, - 0x7f, 0xf2, 0x6e, 0x6c, 0x66, 0x2e, 0x4e, 0x0f, 0xeb, 0x67, 0x90, 0x6c, 0x28, 0x60, 0x21, 0xb8, - 0x48, 0xf9, 0xb7, 0xd7, 0x96, 0x73, 0xac, 0x41, 0x04, 0xc3, 0x92, 0x5b, 0xac, 0x9d, 0xfa, 0xea, - 0x73, 0x88, 0xf5, 0xd0, 0x60, 0x63, 0xae, 0x50, 0xfe, 0x4d, 0xb6, 0xe4, 0x04, 0x6b, 0x50, 0x17, - 0x6d, 0xee, 0xfb, 0xaf, 0x81, 0x9f, 0x66, 0xe6, 0xe3, 0xaf, 0x5d, 0x5d, 0x3f, 0xf9, 0x10, 0xe5, - 0xfd, 0x3f, 0xa8, 0xcd, 0x93, 0x7c, 0xe7, 0xbf, 0xb7, 0x48, 0x86, 0x28, 0xef, 0xb9, 0x59, 0x6a, - 0x7e, 0x9d, 0x53, 0x21, 0xcd, 0x93, 0x73, 0xff, 0xec, 0xf7, 0xe6, 0xe1, 0x6f, 0xa7, 0x27, 0xcd, - 0xc6, 0xff, 0x33, 0x09, 0x94, 0x11, 0xb4, 0x29, 0x28, 0x60, 0xd9, 0x19, 0xcc, 0xf5, 0xda, 0x5b, - 0x2a, 0x4e, 0x4a, 0x69, 0x00, 0xd7, 0xac, 0x93, 0x12, 0x7f, 0x56, 0x79, 0xf7, 0x2f, 0x9a, 0x67, - 0x17, 0xad, 0xd6, 0xc9, 0xe9, 0x79, 0xfd, 0xad, 0x7f, 0xd2, 0x1a, 0x29, 0x7b, 0xed, 0xc8, 0x6f, - 0xd5, 0x4e, 0x6b, 0xc7, 0xf5, 0xf3, 0xfa, 0x29, 0x7e, 0x96, 0xc6, 0x1b, 0xa8, 0x1d, 0x1e, 0xd6, - 0x5b, 0xe7, 0xb5, 0x83, 0xa3, 0xba, 0x3f, 0x6b, 0x8a, 0x67, 0xe7, 0x75, 0x75, 0xff, 0xb0, 0xd6, - 0xaa, 0x1d, 0x34, 0x8e, 0x1a, 0xe7, 0xbf, 0xb3, 0xf3, 0x3a, 0x8e, 0xcb, 0x38, 0xce, 0x59, 0x3b, - 0x63, 0xbb, 0x75, 0xb6, 0xfb, 0xe0, 0x7d, 0xcb, 0x6f, 0xbc, 0xad, 0x37, 0xcf, 0x1b, 0xef, 0x1a, - 0x18, 0x76, 0x6d, 0xf3, 0xf2, 0xa1, 0x7e, 0x3a, 0x4e, 0x99, 0x34, 0x2f, 0x8e, 0x0f, 0x4c, 0x76, - 0x1f, 0xfe, 0x5c, 0x50, 0xf7, 0xd8, 0x15, 0x07, 0x6d, 0x1d, 0x76, 0xda, 0xd6, 0x11, 0x5b, 0x2f, - 0x5d, 0xb6, 0x70, 0xb8, 0xd6, 0x23, 0x22, 0xa4, 0xee, 0x58, 0xad, 0xc7, 0xb6, 0x5a, 0x39, 0x50, - 0xeb, 0x65, 0x16, 0xac, 0x1c, 0xa5, 0xb5, 0x1b, 0x43, 0x44, 0xa4, 0x4d, 0x79, 0xff, 0xa7, 0x2d, - 0xa2, 0x27, 0xa7, 0x8d, 0xf7, 0x8d, 0xa6, 0x5f, 0x3b, 0x3f, 0x3f, 0x6d, 0x1c, 0x5c, 0x9c, 0x13, - 0xe9, 0x51, 0xd8, 0xfb, 0x99, 0xe3, 0x3c, 0xdb, 0x75, 0xed, 0x31, 0x5c, 0xeb, 0xbb, 0xf7, 0xc7, - 0xb5, 0xa3, 0x77, 0x27, 0xa7, 0xc7, 0xf5, 0xb7, 0x7e, 0xed, 0xcc, 0x6f, 0xd5, 0x48, 0xde, 0x6b, - 0x1a, 0x9b, 0x66, 0xfd, 0xfc, 0x5f, 0x27, 0xa7, 0xff, 0xf4, 0xdf, 0x35, 0xea, 0x47, 0xf4, 0xb7, - 0x68, 0x68, 0x7b, 0xe3, 0xec, 0xac, 0xd1, 0x7c, 0xef, 0xff, 0xab, 0x7e, 0x74, 0xe4, 0xff, 0xb3, - 0x79, 0xf2, 0x2f, 0x2c, 0xbd, 0x91, 0xe2, 0xff, 0xfb, 0xdc, 0xff, 0xed, 0xa4, 0xc5, 0xee, 0xeb, - 0x7a, 0xf2, 0xa7, 0xf5, 0xc3, 0x93, 0xf7, 0xe3, 0x1c, 0x39, 0x47, 0xc0, 0xe8, 0x25, 0xcc, 0x7d, - 0x9c, 0x49, 0x4d, 0x08, 0xae, 0x8e, 0xfe, 0xce, 0xbf, 0x3b, 0xaa, 0xbd, 0x3f, 0x63, 0xe3, 0x0d, - 0x7c, 0xcc, 0xb9, 0xf2, 0x37, 0xce, 0xce, 0x49, 0xb4, 0x10, 0x1f, 0x29, 0x0e, 0x3f, 0x5f, 0x87, - 0x5a, 0x2f, 0x6b, 0x1e, 0xbe, 0x0e, 0x1d, 0x4e, 0x66, 0x7c, 0x7b, 0x7d, 0x8c, 0x84, 0x11, 0xaf, - 0x5e, 0x03, 0xed, 0x75, 0x82, 0x3f, 0xaf, 0x93, 0x22, 0xdb, 0xf1, 0xe4, 0x75, 0xc8, 0x6c, 0x39, - 0xc3, 0x87, 0xd7, 0x60, 0x00, 0x80, 0x31, 0xef, 0x5d, 0xa7, 0x1d, 0x36, 0xe1, 0xb7, 0x6b, 0xe5, - 0xbb, 0x19, 0xf1, 0xd8, 0x35, 0xbd, 0x5b, 0x8a, 0x6c, 0xb8, 0xf2, 0x5b, 0x38, 0xad, 0x1f, 0xd6, - 0x1b, 0x1f, 0xea, 0xfe, 0x45, 0xb3, 0xfe, 0xef, 0xd6, 0x78, 0x16, 0xce, 0xac, 0x32, 0xe1, 0xa4, - 0x55, 0x6f, 0x8e, 0x87, 0x5f, 0x9c, 0x1e, 0x13, 0x3b, 0x33, 0x7f, 0x13, 0x67, 0xf5, 0x26, 0x93, - 0x67, 0x6d, 0x5f, 0x43, 0xfd, 0xec, 0xbc, 0x76, 0x70, 0xd4, 0x38, 0xfb, 0x8d, 0xce, 0x6b, 0x80, - 0xae, 0xb8, 0x26, 0x76, 0xed, 0x77, 0x5c, 0xd7, 0x94, 0xae, 0xf5, 0x76, 0x9b, 0x98, 0xcc, 0xb5, - 0xa8, 0xd4, 0x6d, 0xd5, 0x0f, 0x1b, 0xef, 0x1a, 0x87, 0xdc, 0xb7, 0xe8, 0xd6, 0x73, 0x94, 0xe5, - 0xbe, 0xc5, 0x34, 0xba, 0x31, 0xbd, 0x66, 0x71, 0x2c, 0x9f, 0xdb, 0x15, 0x9f, 0x25, 0x88, 0xdb, - 0x15, 0x73, 0xd5, 0x0e, 0x6e, 0x57, 0xe4, 0x76, 0xc5, 0x6f, 0xec, 0x98, 0xfe, 0xed, 0x8a, 0x23, - 0xbb, 0x98, 0x46, 0xed, 0xff, 0x0e, 0x76, 0xb7, 0x15, 0x6f, 0x57, 0xfc, 0x55, 0x41, 0xd4, 0x45, - 0x1c, 0xa5, 0x83, 0xd1, 0x23, 0xc6, 0x41, 0xdc, 0x1b, 0x84, 0xed, 0x5e, 0xdc, 0x19, 0x68, 0x3c, - 0xe2, 0x69, 0x10, 0x5f, 0x87, 0x6a, 0xa1, 0x3f, 0x3d, 0x87, 0xb1, 0x72, 0x1c, 0xc5, 0x6a, 0xd6, - 0x52, 0x19, 0x53, 0x97, 0xc4, 0x8e, 0x03, 0xb8, 0x06, 0x72, 0xdf, 0x25, 0x41, 0x7b, 0xe4, 0xaf, - 0xbc, 0x8d, 0xae, 0x27, 0xda, 0xbb, 0x59, 0x46, 0x96, 0x53, 0x39, 0x0e, 0xfe, 0x5a, 0x3b, 0x55, - 0xda, 0xfa, 0x75, 0x7b, 0x7b, 0x77, 0x6f, 0x7b, 0x7b, 0x73, 0xef, 0xf5, 0xde, 0xe6, 0xfe, 0xce, - 0xce, 0xd6, 0xae, 0xc6, 0x1d, 0xb3, 0xce, 0x68, 0xd7, 0x46, 0x39, 0xa4, 0x5c, 0x16, 0x95, 0xed, - 0x6d, 0x14, 0xc8, 0x66, 0x54, 0x6a, 0x71, 0xdc, 0x4b, 0xc7, 0xc4, 0x4d, 0xd4, 0x4c, 0x54, 0x06, - 0xed, 0xcf, 0xe1, 0x4d, 0xd0, 0x0f, 0xd2, 0xcf, 0x23, 0x47, 0xe1, 0x55, 0xaf, 0x1f, 0xc6, 0xed, - 0x31, 0xbb, 0xf2, 0xe2, 0x30, 0xfd, 0xb3, 0x97, 0xfc, 0xd7, 0x8b, 0xe2, 0x41, 0x1a, 0xc4, 0xed, - 0xf0, 0xd5, 0xc3, 0x1f, 0x0c, 0x96, 0x7e, 0xf2, 0xaa, 0x9f, 0xf4, 0xd2, 0x5e, 0xbb, 0xd7, 0x1d, - 0xcc, 0xbe, 0x7b, 0xf5, 0xe9, 0xba, 0xff, 0x2a, 0x0e, 0xa3, 0xeb, 0xcf, 0x9f, 0x7a, 0xc9, 0x60, - 0xf6, 0xdd, 0xab, 0x41, 0x1a, 0xa4, 0xe1, 0xab, 0x9b, 0x70, 0x30, 0x08, 0xae, 0xc3, 0xc1, 0xab, - 0x24, 0x6c, 0x87, 0xd1, 0x6d, 0xd8, 0x11, 0x74, 0x4f, 0x2a, 0x83, 0x34, 0x19, 0xb6, 0xd3, 0x38, - 0x73, 0xfb, 0x9a, 0x93, 0xb5, 0x37, 0xb2, 0xa5, 0xfb, 0xad, 0x6c, 0xc1, 0xfe, 0xc1, 0x75, 0xdf, - 0x6f, 0x66, 0xcb, 0xf4, 0x8f, 0xb3, 0x05, 0xfa, 0xa7, 0xd3, 0x05, 0x6e, 0x14, 0x43, 0x37, 0x05, - 0xf4, 0xb2, 0x32, 0x98, 0x30, 0x19, 0x19, 0x6d, 0x9c, 0xf9, 0xe3, 0x63, 0x29, 0x42, 0xa7, 0x6a, - 0x7a, 0xb5, 0xb9, 0xd0, 0xc7, 0x4b, 0xc7, 0x25, 0x34, 0xe2, 0x11, 0x7a, 0x71, 0x08, 0xad, 0xf8, - 0x83, 0x7a, 0xdc, 0x41, 0x3d, 0xde, 0xa0, 0x1a, 0x67, 0x28, 0x16, 0x8e, 0xbe, 0x8d, 0x12, 0xe1, - 0xe3, 0x72, 0x72, 0xde, 0x78, 0xd7, 0x38, 0xac, 0x8d, 0x2f, 0x8b, 0x51, 0x0b, 0xef, 0x2e, 0x48, - 0x25, 0xa8, 0xeb, 0x9a, 0x11, 0xd5, 0x37, 0xa6, 0xda, 0x46, 0xd5, 0xcc, 0xb8, 0x9a, 0x19, 0x59, - 0x13, 0x63, 0xab, 0x43, 0xeb, 0xca, 0x17, 0xd4, 0x1d, 0x46, 0x71, 0x5a, 0xba, 0x78, 0x2e, 0x71, - 0xd5, 0x12, 0x05, 0xc3, 0x88, 0xab, 0xca, 0xa8, 0x12, 0x71, 0x55, 0xe2, 0xaa, 0x85, 0x94, 0x72, - 0x49, 0x15, 0xcd, 0x92, 0x5a, 0x4d, 0x26, 0xfb, 0xe9, 0xd1, 0xaa, 0x4c, 0x1e, 0x84, 0x0a, 0x42, - 0x05, 0xa1, 0x82, 0x50, 0x41, 0xa8, 0x20, 0x54, 0x10, 0x2a, 0x08, 0x15, 0x84, 0x0a, 0x42, 0x05, - 0xa1, 0x82, 0x50, 0x15, 0x9f, 0x50, 0x2d, 0xb7, 0x05, 0x84, 0x49, 0xd2, 0x4b, 0xbc, 0x76, 0xaf, - 0x63, 0xda, 0x9c, 0x70, 0x6f, 0x15, 0x90, 0x2f, 0xc8, 0x17, 0xe4, 0x0b, 0xf2, 0x05, 0xf9, 0x9a, - 0x9d, 0xb7, 0xa8, 0x13, 0xc6, 0x69, 0x94, 0x7e, 0x49, 0xc2, 0x2b, 0x45, 0x06, 0xa6, 0xe1, 0xf3, - 0x54, 0x1a, 0xd9, 0xa3, 0x1d, 0x04, 0x03, 0xc5, 0x63, 0x3e, 0xbb, 0xfd, 0xe6, 0x7d, 0x6b, 0x32, - 0xea, 0xc7, 0x57, 0x9c, 0x91, 0x62, 0x31, 0x1b, 0xc5, 0xa8, 0xab, 0x76, 0x76, 0xd7, 0xd8, 0xa9, - 0x5f, 0xff, 0x77, 0xab, 0x71, 0x4a, 0xcf, 0x72, 0x9e, 0xbb, 0x3b, 0x6d, 0x09, 0xff, 0xad, 0x5e, - 0x7b, 0x3b, 0xda, 0x61, 0x66, 0x56, 0xe5, 0xbb, 0xbf, 0x0b, 0xf7, 0x77, 0xb3, 0xbb, 0x39, 0xef, - 0xee, 0xa3, 0xd3, 0xaa, 0xd8, 0xe5, 0x9c, 0x77, 0xf9, 0xf4, 0xe4, 0xe2, 0xbc, 0xee, 0x9f, 0xd6, - 0xdf, 0x9d, 0xd6, 0xcf, 0x7e, 0x43, 0x99, 0xa5, 0xb6, 0xf9, 0xc1, 0x15, 0x64, 0xec, 0x6f, 0xce, - 0xfb, 0x7b, 0x58, 0xaf, 0x9d, 0xd5, 0x99, 0xcc, 0xe1, 0x18, 0xd1, 0x2a, 0x55, 0x08, 0x6c, 0x30, - 0xfc, 0xe4, 0x46, 0x14, 0x6c, 0xba, 0x10, 0x02, 0x61, 0xcf, 0x12, 0x44, 0x20, 0x2c, 0x57, 0xed, - 0x20, 0x10, 0x46, 0x20, 0xec, 0x1b, 0x3b, 0x46, 0x20, 0x2c, 0x47, 0x59, 0xae, 0x04, 0xc2, 0x74, - 0xe7, 0x05, 0xaf, 0x51, 0x2c, 0x6c, 0x91, 0x89, 0x31, 0x96, 0x59, 0x79, 0xfb, 0xa7, 0xd7, 0x42, - 0x4c, 0x29, 0xda, 0x64, 0x92, 0x3e, 0x53, 0x67, 0xe1, 0xa0, 0x45, 0xd1, 0xa0, 0x35, 0x61, 0xf9, - 0x98, 0x46, 0xed, 0x6d, 0x3f, 0x39, 0xff, 0xad, 0x7e, 0xea, 0x8f, 0xa7, 0x26, 0xbf, 0xf7, 0x0f, - 0x7f, 0xab, 0x35, 0xdf, 0x73, 0x9b, 0xa9, 0xc2, 0xb6, 0xd7, 0xde, 0x1e, 0x37, 0x9a, 0x8d, 0xb3, - 0xf3, 0xd3, 0xda, 0x79, 0xe3, 0xc3, 0xc8, 0x33, 0x38, 0xab, 0x33, 0x8f, 0x5e, 0xc3, 0xca, 0x9c, - 0x34, 0x9b, 0xf5, 0xc3, 0xf3, 0xc6, 0x49, 0xd3, 0x3f, 0xad, 0xff, 0xdf, 0x78, 0xba, 0x32, 0xdb, - 0xae, 0xae, 0xee, 0x67, 0xbf, 0x5d, 0x9c, 0xbf, 0x3d, 0xf9, 0x57, 0x93, 0xad, 0xd7, 0xd1, 0x78, - 0xff, 0xf0, 0xe4, 0xe8, 0xa8, 0x71, 0x36, 0xd1, 0xfa, 0xb3, 0x93, 0xa3, 0x8b, 0xf1, 0xe8, 0x08, - 0x36, 0x5f, 0x7c, 0xf3, 0x5b, 0xf5, 0xfa, 0xa9, 0xff, 0xb6, 0x9e, 0xe1, 0xeb, 0xc5, 0x29, 0xd6, - 0x46, 0x63, 0xd7, 0x8f, 0x6b, 0xff, 0xf6, 0x9b, 0x17, 0xc7, 0x7e, 0xeb, 0xb4, 0xfe, 0xae, 0xf1, - 0xef, 0xfa, 0x99, 0x7f, 0x5a, 0xaf, 0x1d, 0xfe, 0xc6, 0xde, 0xab, 0xf8, 0x93, 0x17, 0xe7, 0xfe, - 0xc9, 0xbb, 0xb1, 0x99, 0xb9, 0x38, 0x3d, 0xac, 0x9f, 0x41, 0xb2, 0xa1, 0x80, 0x85, 0xe0, 0x22, - 0x6b, 0x70, 0xcf, 0xa1, 0x29, 0xe7, 0x58, 0x83, 0x08, 0x86, 0x25, 0xb7, 0x58, 0x3b, 0xf5, 0xd5, - 0xe7, 0x10, 0xeb, 0xa1, 0xc1, 0xc6, 0x5c, 0xa1, 0xfc, 0x9b, 0x6c, 0xc9, 0x09, 0xd6, 0xe1, 0xae, - 0x59, 0x6b, 0xdf, 0x7f, 0x0d, 0xfc, 0x34, 0x33, 0x1f, 0x7f, 0xed, 0xea, 0xfa, 0xc9, 0x87, 0x28, - 0xef, 0xff, 0x41, 0x6d, 0x9e, 0xe4, 0x3b, 0xff, 0xbd, 0x45, 0x32, 0x44, 0x79, 0xcf, 0xcd, 0x52, - 0xf3, 0xeb, 0x9c, 0x0a, 0x69, 0x9e, 0x9c, 0xfb, 0x67, 0xbf, 0x37, 0x0f, 0x7f, 0x3b, 0x3d, 0x69, - 0x36, 0xfe, 0x1f, 0xf7, 0xf1, 0x02, 0x58, 0x45, 0x30, 0x98, 0xeb, 0xb5, 0xb7, 0x54, 0x9c, 0x94, - 0xd2, 0x00, 0xae, 0x59, 0x27, 0x25, 0xfe, 0xac, 0xf2, 0xee, 0x5f, 0x34, 0xcf, 0x2e, 0x5a, 0xad, - 0x93, 0xd3, 0xf3, 0xfa, 0x5b, 0xff, 0xa4, 0x35, 0x52, 0xf6, 0xda, 0x91, 0xdf, 0xaa, 0x9d, 0xd6, - 0x8e, 0xeb, 0xe7, 0xf5, 0x53, 0xfc, 0x2c, 0x8d, 0x37, 0x50, 0x3b, 0x3c, 0xac, 0xb7, 0xce, 0x6b, - 0x07, 0x47, 0x75, 0x7f, 0xd6, 0x14, 0xcf, 0xce, 0xeb, 0xea, 0xfe, 0x61, 0xad, 0x55, 0x3b, 0x68, - 0x1c, 0x35, 0xce, 0x7f, 0x67, 0xe7, 0x75, 0x1c, 0x97, 0x71, 0x9c, 0xb3, 0x76, 0xc6, 0x76, 0xeb, - 0x6c, 0xf7, 0xc1, 0xfb, 0x96, 0xdf, 0x78, 0x5b, 0x6f, 0x9e, 0x37, 0xde, 0x35, 0x30, 0xec, 0xda, - 0xe6, 0xe5, 0x43, 0xfd, 0x74, 0x9c, 0x32, 0x69, 0x5e, 0x1c, 0x1f, 0x98, 0xec, 0x3e, 0xfc, 0xb9, - 0xa0, 0xee, 0xb1, 0x2b, 0x0e, 0xda, 0x3a, 0xec, 0xb4, 0xad, 0x23, 0xb6, 0x5e, 0xba, 0x6c, 0xe1, - 0x70, 0xad, 0x47, 0x44, 0x48, 0xdd, 0xb1, 0x5a, 0x8f, 0x6d, 0xb5, 0x72, 0xa0, 0xd6, 0xcb, 0x2c, - 0x58, 0x39, 0x4a, 0x6b, 0x37, 0x86, 0x88, 0x48, 0x9b, 0xf2, 0xfe, 0x4f, 0x5b, 0x44, 0x4f, 0x4e, - 0x1b, 0xef, 0x1b, 0x4d, 0xbf, 0x76, 0x7e, 0x7e, 0xda, 0x38, 0xb8, 0x38, 0x27, 0xd2, 0xa3, 0xb0, - 0xf7, 0x33, 0xc7, 0x79, 0xb6, 0xeb, 0xda, 0x63, 0xb8, 0xd6, 0x77, 0xef, 0x8f, 0x6b, 0x47, 0xef, - 0x4e, 0x4e, 0x8f, 0xeb, 0x6f, 0xfd, 0xda, 0x99, 0xdf, 0xaa, 0x91, 0xbc, 0xd7, 0x34, 0x36, 0xcd, - 0xfa, 0xf9, 0xbf, 0x4e, 0x4e, 0xff, 0xe9, 0xbf, 0x6b, 0xd4, 0x8f, 0xe8, 0x6f, 0xd1, 0xd0, 0xf6, - 0xc6, 0xd9, 0x59, 0xa3, 0xf9, 0xde, 0xff, 0x57, 0xfd, 0xe8, 0xc8, 0xff, 0x67, 0xf3, 0xe4, 0x5f, - 0x58, 0x7a, 0x23, 0xc5, 0xff, 0xf7, 0xb9, 0xff, 0xdb, 0x49, 0x8b, 0xdd, 0xd7, 0xf5, 0xe4, 0x4f, - 0xeb, 0x87, 0x27, 0xef, 0xc7, 0x39, 0x72, 0x8e, 0x80, 0xd1, 0x4b, 0x98, 0xfb, 0x38, 0x93, 0x9a, - 0x10, 0x5c, 0x1d, 0xfd, 0x9d, 0x7f, 0x77, 0x54, 0x7b, 0x7f, 0xc6, 0xc6, 0x1b, 0xf8, 0x98, 0x73, - 0xe5, 0x6f, 0x9c, 0x9d, 0x93, 0x68, 0x21, 0x3e, 0x52, 0x1c, 0x7e, 0xbe, 0x0e, 0xb5, 0x5e, 0xd6, - 0x3c, 0x7c, 0x1d, 0x3a, 0x9c, 0xcc, 0xf8, 0xf6, 0xfa, 0x18, 0x09, 0x23, 0x5e, 0xbd, 0x06, 0xda, - 0xeb, 0x04, 0x7f, 0x5e, 0x27, 0x45, 0xb6, 0xe3, 0xc9, 0xeb, 0x90, 0xd9, 0x72, 0x86, 0x0f, 0xaf, - 0xc1, 0x00, 0x00, 0x63, 0xde, 0xbb, 0x4e, 0x3b, 0x6c, 0xc2, 0x6f, 0xd7, 0xca, 0x77, 0x33, 0xe2, - 0xb1, 0x6b, 0x7a, 0xb7, 0x14, 0xd9, 0x70, 0xe5, 0xb7, 0x70, 0x5a, 0x3f, 0xac, 0x37, 0x3e, 0xd4, - 0xfd, 0x8b, 0x66, 0xfd, 0xdf, 0xad, 0xf1, 0x2c, 0x9c, 0x59, 0x65, 0xc2, 0x49, 0xab, 0xde, 0x1c, - 0x0f, 0xbf, 0x38, 0x3d, 0x26, 0x76, 0x66, 0xfe, 0x26, 0xce, 0xea, 0x4d, 0x26, 0xcf, 0xda, 0xbe, - 0x86, 0xfa, 0xd9, 0x79, 0xed, 0xe0, 0xa8, 0x71, 0xf6, 0x1b, 0x9d, 0xd7, 0x00, 0x5d, 0x71, 0x4d, - 0xec, 0xda, 0xef, 0xb8, 0xae, 0x29, 0x5d, 0xeb, 0xed, 0x36, 0x31, 0x99, 0x6b, 0x51, 0xa9, 0xdb, - 0xaa, 0x1f, 0x36, 0xde, 0x35, 0x0e, 0xb9, 0x6f, 0xd1, 0xad, 0xe7, 0x28, 0xcb, 0x7d, 0x8b, 0x69, - 0x74, 0x63, 0x7a, 0xcd, 0xe2, 0x58, 0x3e, 0xb7, 0x2b, 0x3e, 0x4b, 0x10, 0xb7, 0x2b, 0xe6, 0xaa, - 0x1d, 0xdc, 0xae, 0xc8, 0xed, 0x8a, 0xdf, 0xd8, 0x31, 0xfd, 0xdb, 0x15, 0x47, 0x76, 0x31, 0x8d, - 0xda, 0xff, 0x1d, 0xec, 0x6e, 0x2b, 0xde, 0xae, 0xf8, 0xab, 0x82, 0xa8, 0x8b, 0x38, 0x4a, 0x07, - 0xa3, 0x47, 0x8c, 0x83, 0xb8, 0x37, 0x08, 0xdb, 0xbd, 0xb8, 0x33, 0xd0, 0x78, 0xc4, 0xd3, 0x20, - 0xbe, 0x0e, 0xd5, 0x42, 0x7f, 0x7a, 0x0e, 0x63, 0xe5, 0x38, 0x8a, 0xd5, 0xac, 0xa5, 0x32, 0xa6, - 0x2e, 0x89, 0x1d, 0x07, 0x70, 0x0d, 0xe4, 0xbe, 0x4b, 0x82, 0xf6, 0xc8, 0x5f, 0x79, 0x1b, 0x5d, - 0x4f, 0xb4, 0x77, 0xb3, 0x8c, 0x2c, 0xa7, 0x72, 0x1c, 0xfc, 0xb5, 0x76, 0xaa, 0xb4, 0xf5, 0xeb, - 0xf6, 0xf6, 0xee, 0xde, 0xf6, 0xf6, 0xe6, 0xde, 0xeb, 0xbd, 0xcd, 0xfd, 0x9d, 0x9d, 0xad, 0x5d, - 0x8d, 0x3b, 0x66, 0x9d, 0xd1, 0xae, 0x8d, 0x72, 0x48, 0xb9, 0x2c, 0x2a, 0xdb, 0xdb, 0x28, 0x90, - 0xcd, 0xa8, 0xd4, 0xe2, 0xb8, 0x97, 0x8e, 0x89, 0x9b, 0xa8, 0x99, 0xa8, 0x0c, 0xda, 0x9f, 0xc3, - 0x9b, 0xa0, 0x1f, 0xa4, 0x9f, 0x47, 0x8e, 0xc2, 0xab, 0x5e, 0x3f, 0x8c, 0xdb, 0x63, 0x76, 0xe5, - 0xc5, 0x61, 0xfa, 0x67, 0x2f, 0xf9, 0xaf, 0x17, 0xc5, 0x83, 0x34, 0x88, 0xdb, 0xe1, 0xab, 0x87, - 0x3f, 0x18, 0x2c, 0xfd, 0xe4, 0x55, 0x3f, 0xe9, 0xa5, 0xbd, 0x76, 0xaf, 0x3b, 0x98, 0x7d, 0xf7, - 0xea, 0xd3, 0x75, 0xff, 0x55, 0x1c, 0x46, 0xd7, 0x9f, 0x3f, 0xf5, 0x92, 0xc1, 0xec, 0xbb, 0x57, - 0x83, 0x34, 0x48, 0xc3, 0x57, 0x37, 0xe1, 0x60, 0x10, 0x5c, 0x87, 0x83, 0x57, 0x83, 0x91, 0x93, - 0x2c, 0x48, 0xc7, 0x07, 0x69, 0x32, 0x6c, 0xa7, 0x71, 0xe6, 0xf2, 0x35, 0x27, 0xeb, 0x6e, 0x64, - 0xcb, 0xf6, 0x5b, 0xd9, 0x62, 0xfd, 0x83, 0xeb, 0xbe, 0xdf, 0xcc, 0x96, 0xe8, 0x1f, 0x67, 0x8b, - 0xf3, 0xcf, 0x46, 0x8b, 0xdb, 0x28, 0x86, 0x4e, 0xe6, 0xfb, 0x89, 0x39, 0x6b, 0xb7, 0xb4, 0x56, - 0x3b, 0xa2, 0xcd, 0x02, 0x8a, 0xbc, 0x92, 0x02, 0xe7, 0xab, 0xbb, 0xf9, 0x69, 0x58, 0x8e, 0xda, - 0x55, 0x99, 0xbe, 0x0a, 0x2f, 0xe8, 0x74, 0x92, 0x70, 0x30, 0xc8, 0x5d, 0xbf, 0x66, 0x7c, 0x71, - 0x49, 0x52, 0xce, 0x67, 0x44, 0xc6, 0x49, 0x13, 0x8b, 0x99, 0x49, 0xc6, 0xc8, 0xe4, 0x63, 0x62, - 0xd2, 0x31, 0x30, 0xb5, 0x98, 0x97, 0x5a, 0x8c, 0x4b, 0x25, 0xa6, 0xe5, 0x36, 0x8a, 0x89, 0xc5, - 0xa8, 0x66, 0xfa, 0x1e, 0xf5, 0x85, 0xac, 0xcb, 0x7d, 0x0b, 0xb3, 0xb5, 0x2f, 0xf0, 0xd9, 0xd9, - 0xde, 0xc8, 0x84, 0x7e, 0x04, 0xfd, 0xe0, 0xf9, 0xce, 0xdf, 0x6e, 0x0b, 0xee, 0xfd, 0xd2, 0x3b, - 0x10, 0x8c, 0x03, 0x56, 0x5a, 0x41, 0x9a, 0x86, 0x49, 0x2c, 0x1e, 0x89, 0xab, 0xfc, 0xe7, 0xa7, - 0x9f, 0x3e, 0x6e, 0x7a, 0xfb, 0x97, 0x5f, 0x3f, 0x6e, 0x79, 0xfb, 0x97, 0x93, 0x6f, 0xb7, 0xc6, - 0xff, 0x99, 0x7c, 0x5f, 0xfd, 0xb8, 0xe9, 0x6d, 0x4f, 0xbf, 0xdf, 0xf9, 0xb8, 0xe9, 0xed, 0x5c, - 0xbe, 0xfc, 0xe3, 0x8f, 0x5f, 0x5e, 0xfe, 0xfd, 0xfa, 0xee, 0xf9, 0x7f, 0xf8, 0x0f, 0xb9, 0x10, - 0xfa, 0x65, 0x91, 0x28, 0xa2, 0xce, 0x61, 0xd8, 0xe5, 0x30, 0xfc, 0xd8, 0x61, 0x08, 0xbc, 0xab, - 0x9a, 0xf7, 0xee, 0xf2, 0xef, 0xad, 0x9f, 0xb7, 0xef, 0xde, 0xbc, 0xfc, 0x7b, 0xef, 0xee, 0xe1, - 0x0f, 0xbf, 0x3e, 0xf6, 0x6b, 0x5b, 0x3f, 0xef, 0xdd, 0xbd, 0x79, 0xe2, 0x5f, 0x76, 0xef, 0xde, - 0x7c, 0xe7, 0x67, 0xec, 0xdc, 0xfd, 0xb4, 0xf4, 0xab, 0xa3, 0x9f, 0x57, 0x9f, 0xfa, 0x83, 0xed, - 0x27, 0xfe, 0xe0, 0xf5, 0x53, 0x7f, 0xf0, 0xfa, 0x89, 0x3f, 0x78, 0x72, 0x49, 0xd5, 0x27, 0xfe, - 0x60, 0xe7, 0xee, 0xeb, 0xd2, 0xef, 0xff, 0xf4, 0xf8, 0xaf, 0xee, 0xde, 0xbd, 0xfc, 0xfa, 0xd4, - 0xbf, 0xed, 0xdd, 0x7d, 0x7d, 0xf3, 0xb2, 0x80, 0xa6, 0x61, 0xc3, 0xed, 0x75, 0xba, 0xc9, 0xf5, - 0xfa, 0x61, 0x98, 0x78, 0x81, 0x20, 0xc5, 0x9b, 0x0a, 0x80, 0xd9, 0xc1, 0xec, 0x60, 0x76, 0x30, - 0xbb, 0x1c, 0xf5, 0x3d, 0x18, 0x78, 0xf1, 0xf0, 0xe6, 0x53, 0x98, 0x08, 0x12, 0xbb, 0x3d, 0x81, - 0x8f, 0x96, 0xcd, 0xe9, 0x0b, 0xfa, 0xb2, 0x1a, 0x39, 0x7b, 0xad, 0xba, 0x37, 0xa5, 0x9c, 0xbc, - 0x66, 0x96, 0x54, 0xb2, 0x06, 0x53, 0x23, 0xc7, 0xae, 0xfd, 0xea, 0xb7, 0xab, 0xfb, 0xdb, 0xfb, - 0xbb, 0x7b, 0xd5, 0xfd, 0x9d, 0x12, 0xe9, 0x00, 0xbe, 0xb5, 0x5b, 0xbe, 0xf5, 0x75, 0xd2, 0x1b, - 0xf6, 0x85, 0xdd, 0xeb, 0x89, 0x0c, 0x3c, 0x6c, 0x3c, 0x6c, 0x3c, 0x6c, 0x3c, 0xec, 0x1c, 0xf5, - 0xbd, 0x1b, 0x06, 0x57, 0x49, 0x78, 0x25, 0x99, 0x38, 0x91, 0x70, 0xb0, 0x5b, 0x59, 0xd1, 0xc2, - 0x2f, 0xbf, 0xbc, 0x9a, 0xfd, 0xdf, 0xdc, 0x50, 0x0e, 0xee, 0x7d, 0x7f, 0xef, 0x5b, 0x6f, 0x5c, - 0x10, 0xb0, 0x2e, 0xb0, 0x94, 0x4a, 0xe8, 0xce, 0x22, 0x2a, 0x8d, 0x45, 0x00, 0x4a, 0x80, 0x12, - 0xa0, 0x04, 0x28, 0x15, 0xc0, 0xb8, 0x2c, 0xc0, 0xd2, 0xb6, 0xc0, 0x67, 0xd7, 0xe3, 0xe1, 0xcd, - 0x68, 0x6b, 0xee, 0xd6, 0x00, 0x64, 0xfe, 0xff, 0xc3, 0x70, 0x32, 0xb3, 0x46, 0x08, 0x61, 0xb2, - 0xcf, 0x97, 0x81, 0x97, 0x2d, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x5c, 0x84, 0x97, 0xb7, 0x51, 0x22, - 0xa3, 0xee, 0x51, 0xdc, 0x1f, 0xa6, 0x72, 0xba, 0x38, 0x2b, 0x03, 0x19, 0x8b, 0x11, 0x52, 0x0f, - 0xd9, 0xf8, 0xa9, 0x78, 0xab, 0xb8, 0x46, 0x8b, 0xb8, 0x5e, 0x6b, 0xb8, 0x56, 0x4b, 0xb8, 0x7a, - 0x2b, 0xb8, 0x7a, 0x0b, 0xb8, 0x6a, 0xeb, 0x77, 0xb1, 0x5a, 0x9b, 0xc4, 0x5b, 0xbc, 0x67, 0xe7, - 0x65, 0x18, 0xc5, 0xe9, 0xeb, 0xaa, 0x42, 0xe5, 0xda, 0x9e, 0xa0, 0x08, 0x9d, 0x6e, 0x6a, 0x85, - 0x86, 0x7b, 0xcd, 0xee, 0x69, 0xe5, 0x56, 0x57, 0xed, 0x6e, 0x69, 0x8b, 0x3e, 0x56, 0x85, 0xee, - 0x68, 0xd5, 0xae, 0x68, 0x2b, 0x15, 0xd1, 0xca, 0xe0, 0x9a, 0xea, 0x4a, 0x41, 0x7b, 0x84, 0x8b, - 0x52, 0xe5, 0x29, 0x70, 0x16, 0x2b, 0xbd, 0x61, 0xaa, 0xc2, 0x26, 0x32, 0x39, 0xd0, 0x09, 0xe8, - 0x04, 0x74, 0x02, 0x3a, 0x01, 0x9d, 0x80, 0x4e, 0x40, 0x27, 0xa0, 0x13, 0xd0, 0x09, 0xe8, 0x04, - 0x74, 0xc2, 0x88, 0x4e, 0x30, 0x34, 0xc6, 0x6c, 0x68, 0x8c, 0x48, 0x52, 0xf8, 0xc5, 0x8f, 0x8e, - 0x8c, 0xf9, 0xff, 0x4d, 0x56, 0xb3, 0x06, 0xc9, 0xfe, 0x24, 0xbc, 0xe9, 0xdd, 0x86, 0x5e, 0x3f, - 0x89, 0x6e, 0x83, 0x34, 0x14, 0x6d, 0x27, 0x5c, 0x16, 0x45, 0x85, 0x19, 0x25, 0x00, 0xe6, 0x64, - 0x96, 0x12, 0x00, 0x3d, 0x0c, 0x93, 0xaf, 0x30, 0x5b, 0x32, 0x32, 0x5e, 0xaf, 0x3f, 0xc6, 0x4c, - 0xc1, 0x82, 0x33, 0x01, 0x97, 0xb3, 0xd2, 0xe8, 0x84, 0x71, 0x1a, 0xa5, 0x5f, 0x0e, 0x82, 0x41, - 0x28, 0x1f, 0x8c, 0x3c, 0xad, 0x1f, 0x9f, 0x7c, 0xa8, 0xfb, 0xad, 0xd3, 0xc6, 0x87, 0xda, 0x79, - 0xdd, 0xaf, 0x9d, 0xf9, 0x93, 0x8b, 0x9c, 0xa5, 0x8e, 0x9c, 0xc2, 0xb5, 0x68, 0x4a, 0x17, 0x0c, - 0xdc, 0xdb, 0xb2, 0x6c, 0x13, 0x6b, 0x47, 0x47, 0x95, 0x22, 0xf6, 0x09, 0x5a, 0x6c, 0x58, 0xeb, - 0xa8, 0x76, 0x28, 0xbd, 0x63, 0x1b, 0xc5, 0xa0, 0x34, 0xeb, 0x50, 0x59, 0x9a, 0xf4, 0x86, 0x69, - 0xe8, 0x5d, 0x75, 0x83, 0xbe, 0xd7, 0x09, 0x6e, 0xfa, 0x51, 0x7c, 0x2d, 0xe8, 0x6d, 0x2e, 0xcb, - 0xca, 0xbb, 0x9e, 0x2d, 0xbc, 0x0a, 0x86, 0xdd, 0x31, 0x9a, 0x5f, 0x05, 0xdd, 0x01, 0x0d, 0x13, - 0xb8, 0xb3, 0xb8, 0xb3, 0xb8, 0xb3, 0xb9, 0xea, 0xfb, 0xa7, 0x5e, 0xaf, 0x1b, 0x06, 0xa2, 0xde, - 0xeb, 0xd6, 0x1a, 0x00, 0xcf, 0x20, 0x8c, 0x3b, 0x5e, 0xbb, 0x77, 0x73, 0x33, 0x8c, 0xa3, 0xf4, - 0x8b, 0x1c, 0xe8, 0x3c, 0x90, 0x23, 0x07, 0x38, 0xcd, 0x93, 0x66, 0x1d, 0xbc, 0x01, 0x6f, 0xc0, - 0x1b, 0xf0, 0x26, 0x4f, 0x7d, 0x9f, 0xd9, 0x2e, 0xba, 0xf4, 0x9c, 0x87, 0xb4, 0xc1, 0x20, 0xea, - 0xc5, 0xde, 0x38, 0x7d, 0x22, 0x89, 0x68, 0xf7, 0xc5, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, - 0xe4, 0xa8, 0xef, 0x61, 0x3c, 0xbc, 0x09, 0x93, 0x40, 0x3a, 0x46, 0x0f, 0xdc, 0xac, 0x08, 0x37, - 0xc3, 0x7e, 0xbf, 0x97, 0xa4, 0x61, 0xc7, 0x6b, 0x07, 0xfd, 0xe0, 0x53, 0xd4, 0x8d, 0xd2, 0x48, - 0xb2, 0x49, 0xfc, 0x09, 0x79, 0x00, 0x10, 0x00, 0x04, 0x00, 0x01, 0x40, 0x39, 0xea, 0x7b, 0x94, - 0x65, 0x5a, 0x85, 0x87, 0x65, 0x15, 0x3f, 0x49, 0x7c, 0xf0, 0xbe, 0xe5, 0x1f, 0xd6, 0x5a, 0xb5, - 0x83, 0xc6, 0x51, 0xe3, 0xfc, 0x77, 0x52, 0xc3, 0xdf, 0xda, 0xaf, 0xe3, 0xd6, 0xc1, 0xfb, 0x16, - 0xa9, 0xe0, 0xa7, 0x37, 0xe8, 0xfd, 0x69, 0xed, 0xb0, 0xfe, 0xee, 0xe2, 0xc8, 0x3f, 0xad, 0x9f, - 0x9d, 0xd7, 0x4e, 0xcf, 0xd9, 0xab, 0xa7, 0xf7, 0xaa, 0x76, 0xd6, 0x7c, 0x5d, 0x65, 0x83, 0xfe, - 0xc7, 0x06, 0xbd, 0x7d, 0xeb, 0xb7, 0x6a, 0xe7, 0xbf, 0x9d, 0xb1, 0x49, 0x4f, 0x6f, 0xd2, 0xe9, - 0xc9, 0xc5, 0x79, 0xdd, 0x3f, 0xad, 0xbf, 0x3b, 0xad, 0x9f, 0xfd, 0x46, 0xcd, 0x85, 0xdb, 0xae, - 0xcf, 0x51, 0x34, 0x48, 0x6b, 0x69, 0x2a, 0x34, 0x34, 0xe7, 0x38, 0x8a, 0xeb, 0xdd, 0x70, 0xe4, - 0x5c, 0x8e, 0xc0, 0x36, 0x1e, 0x76, 0xbb, 0x02, 0x0e, 0xca, 0x71, 0xf0, 0x97, 0xbc, 0x90, 0x93, - 0xa4, 0x13, 0x26, 0x61, 0xe7, 0xe0, 0x4b, 0x26, 0xc2, 0x55, 0x36, 0xbe, 0xe1, 0x90, 0x92, 0x49, - 0x75, 0x13, 0xd8, 0x76, 0x11, 0xe4, 0x63, 0xd1, 0x56, 0x7f, 0x51, 0x39, 0xbc, 0xa4, 0x4a, 0x1a, - 0xdd, 0x84, 0x49, 0x7e, 0x01, 0x96, 0x19, 0x04, 0x64, 0x9f, 0x9b, 0x93, 0x1a, 0xe5, 0x3b, 0x75, - 0x2f, 0xf7, 0xc0, 0x89, 0x44, 0xc0, 0x44, 0x2e, 0x50, 0x22, 0x15, 0x20, 0x11, 0x0f, 0x8c, 0x88, - 0x07, 0x44, 0x44, 0x03, 0x21, 0x6e, 0x19, 0xe6, 0xbc, 0xa7, 0xe4, 0x55, 0xda, 0xd3, 0x33, 0x25, - 0x14, 0xa9, 0xcd, 0x3e, 0x9f, 0x71, 0x9e, 0x44, 0x66, 0xcd, 0x0c, 0x90, 0x9a, 0x21, 0x52, 0x31, - 0x48, 0xc5, 0xa0, 0x27, 0x62, 0xe3, 0x3c, 0xdb, 0xbd, 0x38, 0x0e, 0xdb, 0xa9, 0x97, 0x84, 0x69, - 0xf2, 0x45, 0x3e, 0xac, 0xb9, 0x28, 0x4e, 0x48, 0x5d, 0xee, 0x95, 0xee, 0xbd, 0xde, 0x64, 0xe8, - 0x8f, 0xba, 0x0d, 0xd5, 0xb3, 0xa5, 0x5a, 0x36, 0x55, 0xdd, 0xb6, 0xaa, 0xdb, 0x58, 0x55, 0x5b, - 0x2b, 0x1b, 0xba, 0x2a, 0xfe, 0xd0, 0x9f, 0x4e, 0xd8, 0x8e, 0x6e, 0x82, 0xee, 0xee, 0xb6, 0xc6, - 0x05, 0xd8, 0x55, 0x41, 0x19, 0x4b, 0x73, 0x3b, 0xaa, 0x4c, 0x19, 0xfa, 0x8e, 0x40, 0x9e, 0xc1, - 0x94, 0xa1, 0x2a, 0x53, 0x86, 0x1c, 0xb7, 0x3f, 0x8b, 0x2a, 0x62, 0x30, 0x65, 0xe8, 0x35, 0x2a, - 0xe2, 0x36, 0xf0, 0xc9, 0x7f, 0xfa, 0x3a, 0xcf, 0x2a, 0xfd, 0xdc, 0xeb, 0x76, 0xbc, 0x34, 0xba, - 0x51, 0x28, 0xfe, 0x98, 0x8b, 0x92, 0x67, 0x48, 0xfb, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, 0x86, - 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, 0x86, 0xf4, - 0x7c, 0x35, 0xf9, 0x6f, 0x18, 0xf6, 0x83, 0x6e, 0x74, 0x1b, 0x7a, 0x51, 0x9c, 0x86, 0xc9, 0x6d, - 0xd0, 0x95, 0xa7, 0x4a, 0x8f, 0xc8, 0x24, 0xab, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, 0x4c, - 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0x9c, 0xe4, 0x4c, - 0x37, 0x51, 0x1c, 0xdd, 0x0c, 0x6f, 0xbc, 0xa0, 0x73, 0x1b, 0x26, 0x69, 0x34, 0x18, 0xf7, 0xef, - 0x28, 0xf2, 0xa7, 0x6f, 0xc8, 0x87, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, - 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xc7, 0x3e, 0x91, 0xeb, - 0xff, 0xbe, 0xaf, 0x71, 0x7f, 0xd2, 0x8f, 0xfe, 0x2a, 0xeb, 0x22, 0x5d, 0x87, 0x49, 0x8a, 0xc2, - 0x03, 0x7b, 0x05, 0x07, 0xf5, 0x8a, 0x75, 0xe3, 0x56, 0xe9, 0xc6, 0xd5, 0xe3, 0xa5, 0x74, 0xe3, - 0x96, 0x10, 0x1e, 0xe8, 0xc6, 0x7d, 0xce, 0x66, 0x11, 0xeb, 0x33, 0xb5, 0xa1, 0x7a, 0xb6, 0x54, - 0xcb, 0xa6, 0xaa, 0xdb, 0x56, 0x75, 0x1b, 0xab, 0x6a, 0x6b, 0x65, 0x49, 0x09, 0xb1, 0xbe, 0x67, - 0x39, 0x7d, 0xc4, 0xfa, 0x9e, 0xf5, 0x45, 0xac, 0x8f, 0x40, 0x8e, 0x89, 0xfd, 0x59, 0x54, 0x11, - 0x62, 0x7d, 0x85, 0x56, 0x11, 0x62, 0x7d, 0xa2, 0xeb, 0xa5, 0x1b, 0xf7, 0xbb, 0x19, 0x12, 0xdd, - 0xb8, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, - 0x30, 0x24, 0x18, 0x12, 0x0c, 0xe9, 0x07, 0xd4, 0x84, 0x6e, 0x5c, 0x38, 0x13, 0x9c, 0x09, 0xce, - 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, - 0x67, 0x7a, 0x5a, 0x4d, 0xe8, 0xc6, 0x85, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x14, - 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0xa9, 0xe7, 0xab, 0x49, - 0x1c, 0x5e, 0xf7, 0xd2, 0x28, 0x48, 0xc3, 0x8e, 0xa7, 0x58, 0xac, 0xf7, 0xa8, 0x54, 0x28, 0x0d, - 0x94, 0x06, 0x4a, 0x03, 0xa5, 0x81, 0xd2, 0x40, 0x69, 0xa0, 0x34, 0x50, 0x1a, 0x28, 0x0d, 0x94, - 0x06, 0x4a, 0x53, 0x72, 0x4a, 0xc3, 0x80, 0x21, 0xbb, 0x01, 0x43, 0x93, 0xb9, 0x38, 0xae, 0xce, - 0x17, 0xda, 0x70, 0x48, 0x23, 0xa4, 0x34, 0xc1, 0x58, 0x03, 0x2a, 0xb9, 0xce, 0x70, 0x4a, 0x86, - 0xed, 0x34, 0xce, 0x1c, 0xe3, 0xe6, 0x64, 0x69, 0x8d, 0x6c, 0x65, 0x7e, 0x2b, 0x5b, 0x8f, 0x7f, - 0x70, 0xdd, 0xf7, 0x9b, 0xd9, 0x2a, 0xfc, 0xf3, 0xc9, 0x2a, 0x36, 0xdc, 0xd0, 0x97, 0x1c, 0x74, - 0xa5, 0x92, 0x26, 0x41, 0x3c, 0xe8, 0xf7, 0x92, 0x34, 0x37, 0x35, 0x99, 0x71, 0x8d, 0xf9, 0x47, - 0xe7, 0xa4, 0xd3, 0xf9, 0x4e, 0xb0, 0xca, 0x3d, 0x10, 0x22, 0x11, 0xf8, 0x90, 0x0b, 0x74, 0x48, - 0x05, 0x36, 0xc4, 0x03, 0x19, 0xe2, 0x81, 0x0b, 0xd1, 0x40, 0x85, 0x5b, 0x28, 0x91, 0xf7, 0xc4, - 0xa9, 0x4a, 0x7b, 0x7a, 0xa6, 0x84, 0x26, 0xe3, 0x65, 0x9f, 0x5f, 0xb0, 0xd1, 0x78, 0x9b, 0x8c, - 0xc6, 0x93, 0x37, 0x3c, 0x6a, 0x06, 0x48, 0xcd, 0x10, 0xa9, 0x18, 0xa4, 0x62, 0x10, 0x1b, 0xb1, - 0xd1, 0x78, 0xdd, 0x5e, 0x3b, 0xe8, 0x7a, 0x41, 0xa7, 0x93, 0x84, 0x83, 0x81, 0x7c, 0x1e, 0x69, - 0x51, 0x1c, 0x09, 0x24, 0x6d, 0xf3, 0xa6, 0x67, 0xe6, 0xb4, 0xcc, 0x9d, 0xba, 0xd9, 0x53, 0x37, - 0x7f, 0xaa, 0x66, 0x50, 0x36, 0xd2, 0x55, 0xfc, 0x04, 0xd2, 0x30, 0x8e, 0x7a, 0xb1, 0x46, 0xf2, - 0x68, 0x5f, 0x50, 0x46, 0xb6, 0x5d, 0x85, 0x4f, 0xe7, 0x4c, 0x5f, 0x4a, 0xd4, 0x17, 0x86, 0x14, - 0xed, 0x37, 0xa4, 0xfb, 0xa6, 0xf4, 0xde, 0xd8, 0x23, 0x6f, 0xee, 0x76, 0x5b, 0xf1, 0xdd, 0x2d, - 0xbd, 0xc3, 0x5f, 0x15, 0x65, 0xb6, 0x82, 0x34, 0x0d, 0x93, 0x58, 0xed, 0x75, 0xce, 0x04, 0xff, - 0xe7, 0xa7, 0x9f, 0x3e, 0x6e, 0x7a, 0xfb, 0x97, 0x5f, 0x3f, 0x6e, 0x79, 0xfb, 0x97, 0x93, 0x6f, - 0xb7, 0xc6, 0xff, 0x99, 0x7c, 0x5f, 0xfd, 0xb8, 0xe9, 0x6d, 0x4f, 0xbf, 0xdf, 0xf9, 0xb8, 0xe9, - 0xed, 0x5c, 0xbe, 0xfc, 0xe3, 0x8f, 0x5f, 0x5e, 0xfe, 0xfd, 0xfa, 0xee, 0xf9, 0x7f, 0xf8, 0x8f, - 0x8a, 0xda, 0xc3, 0x5d, 0xaa, 0x48, 0xba, 0xfb, 0xb9, 0xc4, 0x87, 0x6f, 0x97, 0xc3, 0xa7, 0x73, - 0xf8, 0x02, 0xef, 0xaa, 0xe6, 0xbd, 0xbb, 0xfc, 0x7b, 0xeb, 0xe7, 0xed, 0xbb, 0x37, 0x2f, 0xff, - 0xde, 0xbb, 0x7b, 0xf8, 0xc3, 0xaf, 0x8f, 0xfd, 0xda, 0xd6, 0xcf, 0x7b, 0x77, 0x6f, 0x9e, 0xf8, - 0x97, 0xdd, 0xbb, 0x37, 0xdf, 0xf9, 0x19, 0x3b, 0x77, 0x3f, 0x2d, 0xfd, 0xea, 0xe8, 0xe7, 0xd5, - 0xa7, 0xfe, 0x60, 0xfb, 0x89, 0x3f, 0x78, 0xfd, 0xd4, 0x1f, 0xbc, 0x7e, 0xe2, 0x0f, 0x9e, 0x5c, - 0x52, 0xf5, 0x89, 0x3f, 0xd8, 0xb9, 0xfb, 0xba, 0xf4, 0xfb, 0x3f, 0x3d, 0xfe, 0xab, 0xbb, 0x77, - 0x2f, 0xbf, 0x3e, 0xf5, 0x6f, 0x7b, 0x77, 0x5f, 0xdf, 0xbc, 0x2c, 0xa1, 0x29, 0xda, 0x28, 0xf6, - 0x73, 0x08, 0x9b, 0x52, 0x45, 0x8f, 0x73, 0x90, 0x26, 0x51, 0x7c, 0xad, 0xe9, 0x6d, 0xfe, 0x4a, - 0x61, 0x83, 0xe8, 0x7a, 0x45, 0xfa, 0x5e, 0xd3, 0xa1, 0xd7, 0x89, 0x06, 0xed, 0xde, 0x6d, 0xa8, - 0x71, 0xef, 0xc4, 0xa2, 0x38, 0xf9, 0xae, 0xd6, 0xab, 0xa0, 0x3b, 0xa0, 0x0a, 0x9c, 0x20, 0x1e, - 0x41, 0x3c, 0x82, 0x78, 0x85, 0x0a, 0xe2, 0x7d, 0xea, 0xf5, 0xba, 0x61, 0xa0, 0x12, 0xc6, 0xdb, - 0x5a, 0x63, 0xf8, 0xeb, 0x07, 0x83, 0x41, 0x74, 0x1b, 0x7a, 0x37, 0xbd, 0x8e, 0x42, 0x8b, 0xd2, - 0x82, 0x34, 0xc0, 0x0f, 0xf0, 0x03, 0xfc, 0x00, 0x3f, 0xc0, 0x0f, 0xf0, 0xb3, 0x01, 0xbf, 0xb4, - 0xdd, 0xf7, 0x6e, 0x34, 0x4a, 0x2a, 0xa6, 0x82, 0x80, 0x22, 0xa0, 0x08, 0x28, 0x02, 0x8a, 0x0a, - 0x04, 0x45, 0xc3, 0x28, 0x4e, 0xb7, 0x76, 0x15, 0x90, 0x68, 0x97, 0xe6, 0xd8, 0x6f, 0x3f, 0x88, - 0x45, 0x73, 0xec, 0x26, 0x9d, 0x8f, 0x8e, 0x9b, 0x83, 0x45, 0x15, 0x31, 0x68, 0x8e, 0xd5, 0x56, - 0x91, 0xdd, 0x9d, 0x9d, 0xd7, 0x3b, 0x34, 0xc8, 0xba, 0xf6, 0xe9, 0x34, 0xc8, 0xe6, 0xe2, 0xf5, - 0x94, 0xb5, 0x41, 0x76, 0xda, 0x6b, 0xf7, 0x2a, 0xeb, 0x90, 0x71, 0xb5, 0x49, 0x36, 0xd7, 0x06, - 0xce, 0x20, 0x0d, 0xe5, 0x5a, 0x8d, 0x26, 0x1f, 0x5f, 0xb0, 0x4e, 0xa3, 0x2a, 0x9d, 0x46, 0x7a, - 0x6c, 0x91, 0x4e, 0xa3, 0x12, 0x22, 0x04, 0x9d, 0x46, 0x04, 0xc7, 0x08, 0x8e, 0x11, 0x1c, 0x23, - 0x38, 0x66, 0x1d, 0x1c, 0xa3, 0xd3, 0xc8, 0x9d, 0xd8, 0x18, 0x9d, 0x46, 0x05, 0x7b, 0x63, 0x8f, - 0xbc, 0x39, 0x3a, 0x8d, 0xc4, 0x05, 0xd3, 0x69, 0xe4, 0x20, 0x66, 0xb9, 0x71, 0xf8, 0xe8, 0x34, - 0x52, 0x3a, 0x7c, 0x74, 0x1a, 0xd1, 0x69, 0xe4, 0xa8, 0x53, 0xae, 0xf7, 0x1c, 0x74, 0x1a, 0xad, - 0x60, 0x2c, 0xc9, 0x10, 0x89, 0xae, 0x57, 0xa2, 0xda, 0x6c, 0x12, 0xed, 0xca, 0x75, 0x8e, 0xe1, - 0x37, 0x22, 0x6b, 0x39, 0x0e, 0x36, 0x24, 0xac, 0x46, 0x58, 0x8d, 0xb0, 0x1a, 0x61, 0x35, 0x95, - 0xf3, 0x32, 0xb2, 0x5b, 0x5e, 0x3c, 0xbc, 0xf9, 0x14, 0x26, 0x14, 0x9e, 0xb9, 0xe1, 0xea, 0x50, - 0x78, 0x96, 0x9f, 0x3c, 0x0a, 0xcf, 0x0a, 0xab, 0x22, 0x14, 0x9e, 0x41, 0x2b, 0x1c, 0xa3, 0x15, - 0x0c, 0x30, 0x80, 0xc4, 0x40, 0x62, 0x20, 0x31, 0x90, 0x18, 0xb7, 0x48, 0x0c, 0x3d, 0x9c, 0x2a, - 0xf0, 0xc7, 0x00, 0x03, 0xc0, 0x0f, 0xf0, 0x03, 0xfc, 0x00, 0x3f, 0xc0, 0x6f, 0xed, 0xc0, 0x2f, - 0x09, 0x6f, 0x7a, 0x69, 0xa8, 0x57, 0xb0, 0xfd, 0x40, 0x1e, 0xc0, 0x04, 0x30, 0x01, 0x4c, 0x00, - 0x53, 0x81, 0x80, 0x49, 0xa5, 0x38, 0x98, 0xb2, 0xed, 0x1f, 0x7a, 0x33, 0xaa, 0xc5, 0xbf, 0x9a, - 0x75, 0x87, 0xea, 0xf5, 0x86, 0xa5, 0x2b, 0xf2, 0xa5, 0x12, 0xed, 0xbb, 0x0f, 0xd1, 0x2e, 0x87, - 0x28, 0xdf, 0x43, 0x44, 0xb1, 0x6e, 0x29, 0x8b, 0x75, 0x2f, 0xc9, 0x75, 0x16, 0x95, 0xef, 0xea, - 0xd4, 0x50, 0xde, 0x17, 0x06, 0xd3, 0x85, 0xe9, 0xc2, 0x74, 0x61, 0xba, 0x05, 0x62, 0xba, 0x14, - 0x51, 0x3a, 0xe7, 0xa5, 0x53, 0x44, 0x99, 0x9f, 0x3c, 0x8a, 0x28, 0x0b, 0xab, 0x22, 0x14, 0x51, - 0x42, 0x2c, 0x1c, 0x23, 0x16, 0x4c, 0x02, 0x87, 0x50, 0x40, 0x28, 0x20, 0x14, 0x10, 0x8a, 0xa7, - 0xcf, 0x0b, 0x93, 0xc0, 0xe1, 0x12, 0x70, 0x09, 0xb8, 0x04, 0x5c, 0x02, 0x2e, 0x51, 0x1a, 0x2e, - 0xc1, 0x24, 0x70, 0xd3, 0x49, 0xe0, 0x93, 0x01, 0xd6, 0xae, 0x0e, 0x02, 0xdf, 0x70, 0x48, 0x29, - 0xa4, 0x94, 0xc1, 0x5e, 0x09, 0x2a, 0xb9, 0xce, 0x5b, 0x4f, 0x86, 0xed, 0x34, 0xce, 0x3c, 0xd6, - 0xe6, 0x64, 0x75, 0x8d, 0x6c, 0x71, 0x7e, 0x2b, 0x5b, 0x92, 0x7f, 0x70, 0xdd, 0xf7, 0x9b, 0xd9, - 0x42, 0xfc, 0xf3, 0xd9, 0x42, 0x36, 0xdc, 0xd0, 0x9a, 0x1c, 0x34, 0xa6, 0x32, 0x1c, 0x84, 0xde, - 0xcd, 0xb0, 0x9b, 0x46, 0xfd, 0x6e, 0xe8, 0x8d, 0x5e, 0x6e, 0x7e, 0xb1, 0x8d, 0x39, 0x21, 0x58, - 0x96, 0x91, 0x93, 0xae, 0xe7, 0x3b, 0x82, 0x3e, 0xf7, 0xb0, 0x85, 0x44, 0x98, 0x42, 0x2e, 0x2c, - 0x21, 0x15, 0x86, 0x10, 0x0f, 0x3b, 0x88, 0x87, 0x19, 0x44, 0xc3, 0x0a, 0x6e, 0xa1, 0x47, 0xde, - 0x23, 0xe3, 0x2b, 0xed, 0xe9, 0x99, 0x12, 0xba, 0xda, 0x22, 0xfb, 0xfc, 0x82, 0xdd, 0x6d, 0xb1, - 0xc9, 0xdd, 0x16, 0xf2, 0x86, 0x47, 0xcd, 0x00, 0xa9, 0x19, 0x22, 0x15, 0x83, 0x54, 0x0c, 0xce, - 0x23, 0x76, 0xb7, 0x45, 0x18, 0x07, 0x9f, 0xba, 0x61, 0x47, 0x3e, 0xc5, 0x33, 0x15, 0x44, 0x7b, - 0xb0, 0x85, 0xc9, 0xd4, 0x30, 0x9d, 0x7a, 0x26, 0x54, 0xcb, 0x94, 0xaa, 0x9b, 0x54, 0x75, 0xd3, - 0xaa, 0x6a, 0x62, 0x65, 0x03, 0x6c, 0xb4, 0x07, 0x3f, 0xc3, 0xd3, 0xdb, 0x22, 0x12, 0xe9, 0x6e, - 0xf0, 0xc9, 0x3c, 0x08, 0xb5, 0x1c, 0xc2, 0x58, 0xa3, 0xcb, 0x09, 0xc3, 0x91, 0xed, 0x13, 0x23, - 0x70, 0x61, 0xfe, 0x88, 0x08, 0x7d, 0x83, 0xbe, 0x41, 0xdf, 0xd6, 0x93, 0xbe, 0x09, 0xc5, 0x9b, - 0x74, 0xe2, 0x4e, 0xc2, 0x06, 0x0c, 0x52, 0x05, 0xa9, 0x82, 0x54, 0xb9, 0x49, 0xaa, 0xa4, 0x0c, - 0xe2, 0x4c, 0x40, 0xd0, 0xed, 0xf6, 0xfe, 0x9c, 0x3b, 0xb1, 0xc1, 0x40, 0x5e, 0x9f, 0xa7, 0x27, - 0x74, 0x59, 0xb4, 0xb0, 0x9a, 0x29, 0xc5, 0xbe, 0x94, 0x62, 0x60, 0x6a, 0x66, 0x5b, 0xd3, 0x7c, - 0xeb, 0x9b, 0x71, 0x6d, 0x73, 0x6e, 0x66, 0xd6, 0xcd, 0xcc, 0xbb, 0x89, 0x99, 0x97, 0x35, 0xf7, - 0xc2, 0x66, 0x5f, 0x2f, 0xa6, 0x66, 0x10, 0x5b, 0x53, 0x8a, 0xb1, 0xc9, 0x2b, 0x40, 0xb1, 0x3c, - 0x09, 0xe1, 0x18, 0x9c, 0x8b, 0xb1, 0xb8, 0x70, 0xf4, 0xab, 0x12, 0x01, 0x39, 0x39, 0x0d, 0x90, - 0xe8, 0x4e, 0x9b, 0x54, 0x49, 0x8a, 0x53, 0xdf, 0x89, 0x98, 0x82, 0x33, 0xdf, 0x2a, 0xcc, 0x17, - 0xe6, 0x0b, 0xf3, 0x85, 0xf9, 0xc2, 0x7c, 0x61, 0xbe, 0x30, 0x5f, 0x98, 0x2f, 0xcc, 0x17, 0xe6, - 0x0b, 0xf3, 0x85, 0xf9, 0x16, 0x90, 0xf9, 0x0a, 0x74, 0xc7, 0x09, 0x12, 0x5f, 0x0a, 0x98, 0xdc, - 0x51, 0x9d, 0x8a, 0x48, 0x14, 0xe2, 0xf9, 0xbd, 0x75, 0x17, 0x83, 0xf0, 0x38, 0x5b, 0x5d, 0x6b, - 0xb4, 0x38, 0xbf, 0x9e, 0x3b, 0x72, 0xba, 0x59, 0x5b, 0x25, 0x13, 0xb2, 0x11, 0x0d, 0xd5, 0x88, - 0x57, 0x57, 0x55, 0xa9, 0xae, 0xd2, 0xf3, 0xd9, 0xa9, 0xae, 0x2a, 0x21, 0x8a, 0xd1, 0x1c, 0xe3, - 0x46, 0x98, 0x84, 0xe6, 0x18, 0x97, 0xc2, 0x20, 0x44, 0xb3, 0x0b, 0x19, 0xe6, 0xa0, 0x39, 0xc6, - 0x2a, 0x8c, 0x41, 0x73, 0x0c, 0xdc, 0xf2, 0xc7, 0xb8, 0x25, 0xf3, 0x7a, 0xac, 0xb5, 0xc2, 0x21, - 0x6d, 0xb0, 0x1e, 0xdc, 0xf3, 0x30, 0xb8, 0xe0, 0xcc, 0xfc, 0x9e, 0x0d, 0x43, 0xfd, 0x1b, 0x39, - 0x29, 0xa3, 0x2d, 0x9c, 0xbe, 0xb7, 0x9c, 0x6e, 0x83, 0xaa, 0x1c, 0x45, 0x83, 0xb4, 0x96, 0xa6, - 0xf9, 0xf0, 0x8f, 0xca, 0x71, 0x14, 0xd7, 0xbb, 0xe1, 0xc8, 0xd3, 0x18, 0x54, 0xde, 0xbc, 0x88, - 0x87, 0xdd, 0x6e, 0x0e, 0x33, 0x8f, 0x8e, 0x83, 0xbf, 0xf2, 0xff, 0xd0, 0x93, 0xa4, 0x13, 0x26, - 0x61, 0xe7, 0xe0, 0x4b, 0xf6, 0x91, 0xa6, 0xef, 0x36, 0x67, 0x9b, 0x62, 0x65, 0x4b, 0x72, 0x30, - 0x1c, 0x3f, 0x62, 0x30, 0x56, 0xb3, 0x0f, 0x3f, 0x7e, 0xaa, 0x7f, 0xec, 0x2f, 0x7f, 0x50, 0x57, - 0xf2, 0xd2, 0x11, 0x65, 0xdd, 0xf8, 0xb1, 0x77, 0xf3, 0xfc, 0x9d, 0xfd, 0x81, 0x5d, 0xad, 0xf4, - 0xc3, 0x30, 0xf1, 0xae, 0x93, 0xde, 0xb0, 0xff, 0xe3, 0x15, 0x26, 0xf3, 0x6b, 0x59, 0xee, 0x7d, - 0xd8, 0x0f, 0xbe, 0xe1, 0xd5, 0xe2, 0xb4, 0x2b, 0x07, 0x17, 0xf2, 0x08, 0x1e, 0xe4, 0x17, 0x1c, - 0xc8, 0x8b, 0xfc, 0xe7, 0x4e, 0xee, 0x73, 0x27, 0xef, 0xb9, 0x92, 0x73, 0x5d, 0x9b, 0xb4, 0x6a, - 0xdc, 0xf2, 0xde, 0xa9, 0x59, 0xfd, 0x45, 0x2f, 0x9f, 0xc4, 0x55, 0xdf, 0x74, 0x3e, 0x89, 0x93, - 0xdc, 0xa2, 0x7e, 0x79, 0x46, 0xf7, 0xf2, 0x8f, 0xe2, 0xe5, 0x1d, 0xad, 0x13, 0x8b, 0xca, 0x89, - 0x45, 0xdf, 0x44, 0xa2, 0x6c, 0xb6, 0xa4, 0x23, 0xaf, 0xc4, 0x44, 0x25, 0xb8, 0x8a, 0xbc, 0x41, - 0x70, 0x15, 0x09, 0x8c, 0x2b, 0x9d, 0x7f, 0x34, 0x53, 0x4a, 0xdd, 0x31, 0x07, 0x52, 0x66, 0x41, - 0xdc, 0x3c, 0x88, 0x9b, 0x09, 0x51, 0x73, 0xe1, 0x66, 0xcc, 0x2c, 0xf7, 0x29, 0xa5, 0xd3, 0x33, - 0x2f, 0x57, 0x89, 0x31, 0x93, 0xc0, 0xa8, 0x1b, 0x8a, 0x31, 0xcc, 0x8c, 0x90, 0x9a, 0x31, 0x52, - 0x31, 0x4a, 0xf9, 0x1a, 0xa7, 0x9c, 0x8d, 0x94, 0x98, 0xb1, 0x9a, 0x1b, 0xad, 0x4e, 0x27, 0xe7, - 0x91, 0xed, 0x4f, 0x5b, 0xaf, 0x99, 0x28, 0x06, 0xde, 0x68, 0x9b, 0x35, 0x3d, 0xf3, 0xa6, 0x65, - 0xe6, 0xd4, 0xcd, 0x9d, 0xba, 0xd9, 0x53, 0x35, 0x7f, 0x32, 0x66, 0x50, 0xc8, 0x1c, 0x8a, 0x9b, - 0xc5, 0x99, 0x00, 0xe1, 0x49, 0x60, 0x4b, 0xc7, 0x52, 0x74, 0x22, 0x98, 0x92, 0xa1, 0x54, 0x33, - 0x98, 0x9a, 0x86, 0x53, 0xdf, 0x80, 0x6a, 0x1b, 0x52, 0x33, 0x83, 0x6a, 0x66, 0x58, 0x4d, 0x0c, - 0xac, 0xac, 0xa1, 0x15, 0x36, 0xb8, 0x6a, 0x86, 0x77, 0x26, 0x28, 0xec, 0x46, 0xd7, 0xd1, 0xa7, - 0x6e, 0xe8, 0x4d, 0x54, 0xd1, 0xeb, 0xf7, 0xba, 0x51, 0xfb, 0x8b, 0xde, 0x61, 0x98, 0xd5, 0x12, - 0x3f, 0xbe, 0x8e, 0x9f, 0x4b, 0x79, 0xe1, 0xa1, 0x96, 0xe1, 0xb6, 0x30, 0xe0, 0x76, 0x86, 0xdc, - 0xca, 0xa0, 0x9b, 0x1b, 0x76, 0x73, 0x03, 0x6f, 0x6a, 0xe8, 0x75, 0x0c, 0xbe, 0x92, 0xe1, 0x9f, - 0xed, 0xa4, 0x5a, 0xc7, 0xf5, 0xd2, 0x79, 0xed, 0x86, 0xc1, 0x55, 0x12, 0x5e, 0x69, 0x1e, 0xd8, - 0xa9, 0xbf, 0xbc, 0xa7, 0x28, 0xb3, 0x35, 0x2b, 0x86, 0x69, 0x7b, 0x49, 0xbf, 0xd7, 0x7d, 0x93, - 0xf4, 0x86, 0x69, 0x14, 0x5f, 0x67, 0xc8, 0x33, 0xfb, 0xf1, 0xe4, 0xff, 0xf5, 0x3a, 0xe1, 0x55, - 0x14, 0x47, 0x69, 0xd4, 0x8b, 0x07, 0x4f, 0xff, 0xd3, 0xec, 0x5f, 0xc6, 0xa5, 0x4c, 0x1b, 0xe5, - 0xd0, 0x7a, 0x8d, 0xdb, 0x8d, 0x93, 0xb0, 0x1d, 0x46, 0xb7, 0xa1, 0xbe, 0xdb, 0x31, 0x15, 0xac, - 0x74, 0xaa, 0x95, 0x27, 0xbf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0x98, - 0x4c, 0x96, 0x59, 0xf2, 0x6f, 0xb6, 0x70, 0x09, 0xbe, 0x7b, 0xcf, 0x06, 0x61, 0xdc, 0xd1, 0xf7, - 0x07, 0xc6, 0x52, 0x71, 0x06, 0x70, 0x06, 0x70, 0x06, 0x70, 0x06, 0x70, 0x06, 0x70, 0x06, 0x70, - 0x06, 0x5c, 0x71, 0x06, 0xbc, 0x9b, 0xe0, 0x2f, 0x1b, 0x87, 0x60, 0x2c, 0x19, 0x70, 0x06, 0x9c, - 0x01, 0x67, 0xc0, 0x19, 0x70, 0x56, 0x3b, 0xaf, 0xc3, 0x28, 0x4e, 0x7f, 0x35, 0x80, 0xe6, 0x1d, - 0x45, 0x91, 0xa7, 0x41, 0x7c, 0x3d, 0x7a, 0xd8, 0x8f, 0xaa, 0xc7, 0x43, 0xd7, 0x1c, 0xbd, 0xc8, - 0xa6, 0x04, 0xa8, 0xdb, 0x41, 0x23, 0x54, 0x5d, 0x12, 0xff, 0x21, 0xe8, 0x0e, 0x43, 0x43, 0xf9, - 0xef, 0x92, 0xa0, 0x9d, 0x46, 0xbd, 0xf8, 0x6d, 0x74, 0x1d, 0x8d, 0xe7, 0x29, 0x6c, 0xaa, 0xaf, - 0xe3, 0xee, 0x67, 0x03, 0x95, 0x0b, 0xfe, 0x5a, 0x7b, 0x95, 0xab, 0xee, 0xec, 0xac, 0xb1, 0xd2, - 0x6d, 0x94, 0x53, 0xda, 0x65, 0x59, 0xa8, 0x63, 0xa1, 0x6b, 0xf4, 0x94, 0x26, 0x99, 0xcf, 0x49, - 0xb0, 0xc6, 0x10, 0x8f, 0x7b, 0x23, 0x2d, 0xee, 0x7d, 0xff, 0x6a, 0xd6, 0x6f, 0x3b, 0xfb, 0xee, - 0xd5, 0xac, 0xdd, 0x44, 0xf4, 0x52, 0x2f, 0x79, 0x55, 0x11, 0x54, 0x13, 0xe1, 0xcb, 0xbe, 0x96, - 0x83, 0x15, 0x82, 0x97, 0x7e, 0x3d, 0x04, 0x36, 0xb5, 0xe2, 0xf6, 0x2a, 0xc5, 0xed, 0xc5, 0x89, - 0x40, 0x50, 0xdc, 0x4e, 0x71, 0xfb, 0x37, 0x77, 0x8c, 0xe2, 0x76, 0x8a, 0xdb, 0x8b, 0x69, 0xc0, - 0xed, 0x0c, 0xb9, 0x95, 0x41, 0x37, 0x37, 0xec, 0xe6, 0x06, 0xde, 0xd4, 0xd0, 0xeb, 0x72, 0x4b, - 0x8a, 0xdb, 0x05, 0xfd, 0x65, 0x8a, 0xdb, 0x5d, 0x8c, 0x40, 0x50, 0xdc, 0x9e, 0x9f, 0x5b, 0x47, - 0x3d, 0x1b, 0xfe, 0x0d, 0xfe, 0x0d, 0xfe, 0x0d, 0xfe, 0x0d, 0xf5, 0x6c, 0xb8, 0x04, 0xff, 0x6b, - 0xcf, 0x28, 0x6e, 0xc7, 0x19, 0xc0, 0x19, 0xc0, 0x19, 0xc0, 0x19, 0xc0, 0x19, 0xc0, 0x19, 0xc0, - 0x19, 0xa0, 0xb8, 0x1d, 0x70, 0x06, 0x9c, 0x01, 0x67, 0xc0, 0x79, 0x6d, 0xc0, 0x99, 0xe2, 0x76, - 0xa9, 0x2f, 0x8a, 0xdb, 0x55, 0xc5, 0x53, 0xdc, 0x4e, 0x71, 0xbb, 0x91, 0xca, 0x51, 0xdc, 0x5e, - 0x42, 0x69, 0x14, 0xb7, 0x3b, 0x60, 0x72, 0x28, 0x6e, 0xef, 0xc8, 0xdd, 0x92, 0xad, 0xa7, 0x29, - 0xc5, 0x9a, 0x36, 0xaf, 0xa4, 0x73, 0xce, 0xea, 0x5a, 0x45, 0xb4, 0x13, 0xe1, 0xbb, 0xaf, 0xd8, - 0x6d, 0x85, 0x61, 0xf2, 0x7e, 0xb4, 0x58, 0xbf, 0x76, 0x15, 0x9d, 0x05, 0x57, 0x91, 0x5f, 0xeb, - 0x74, 0x72, 0xbc, 0x94, 0x5b, 0x5e, 0x49, 0x05, 0x14, 0x74, 0x76, 0x37, 0x94, 0x97, 0xed, 0xa1, - 0xf4, 0x65, 0x2e, 0x0b, 0xe2, 0x64, 0x2f, 0x74, 0xd9, 0xe4, 0x42, 0x17, 0x07, 0xe2, 0x6b, 0x5c, - 0xe8, 0x52, 0xc8, 0xf8, 0x58, 0xb1, 0x20, 0x56, 0x3c, 0xde, 0xa5, 0x58, 0x69, 0xab, 0x51, 0x59, - 0x3b, 0xab, 0xa4, 0xfd, 0xe5, 0x97, 0xac, 0xcd, 0xf1, 0xd5, 0xa2, 0x65, 0x5e, 0x67, 0x44, 0xec, - 0xf7, 0xbb, 0x5f, 0xa4, 0x7b, 0x6a, 0xe6, 0x80, 0x78, 0x5f, 0x1a, 0x17, 0x9c, 0xb9, 0x80, 0x87, - 0x49, 0xbf, 0xd7, 0x05, 0x10, 0x0b, 0x08, 0x88, 0xe3, 0x17, 0x07, 0x22, 0xbe, 0xe0, 0x8a, 0x33, - 0x47, 0x4d, 0xa5, 0x9a, 0xc9, 0xd4, 0x34, 0x9d, 0x06, 0x26, 0x54, 0xdb, 0x94, 0x9a, 0x99, 0x54, - 0x33, 0xd3, 0x6a, 0x63, 0x62, 0x65, 0x4d, 0xad, 0xb0, 0xc9, 0x55, 0x33, 0xbd, 0x33, 0x41, 0x9d, - 0x49, 0x31, 0xb2, 0x17, 0xfe, 0xd5, 0xef, 0x25, 0xa9, 0x59, 0x1b, 0xf8, 0xe3, 0xcb, 0xd0, 0x2f, - 0xc8, 0x3e, 0xad, 0xff, 0x5f, 0xfd, 0xf0, 0xdc, 0x3f, 0x3d, 0xb9, 0x38, 0xaf, 0x53, 0xfa, 0x55, - 0x38, 0xfc, 0x30, 0xc4, 0x11, 0x2b, 0x3c, 0x31, 0xc7, 0x15, 0x73, 0x7c, 0xb1, 0xc5, 0x19, 0x1d, - 0xbc, 0x51, 0xc2, 0x1d, 0xbd, 0x60, 0xd8, 0x37, 0x91, 0x20, 0x6b, 0xb2, 0x4e, 0x47, 0x0b, 0x31, - 0xa8, 0xd2, 0xde, 0x56, 0x94, 0x59, 0x8f, 0x87, 0x37, 0xa3, 0xcd, 0xbe, 0xa3, 0x32, 0xfc, 0xd9, - 0x7e, 0x4b, 0x74, 0xe3, 0x84, 0xdf, 0xb2, 0xb8, 0x0c, 0xfc, 0x16, 0xfc, 0x16, 0xfc, 0x16, 0xfc, - 0x16, 0xfc, 0x16, 0xfc, 0x16, 0xfc, 0x16, 0xfc, 0x96, 0x7b, 0x7b, 0x66, 0x1c, 0x67, 0x31, 0x89, - 0xaf, 0xe0, 0x28, 0xe0, 0x28, 0xe0, 0x28, 0xe0, 0x28, 0xe0, 0x28, 0x30, 0x67, 0xaf, 0x70, 0x73, - 0xf6, 0x94, 0xf4, 0xf1, 0x28, 0x1a, 0xa4, 0xb5, 0x34, 0x4d, 0x74, 0x75, 0xf2, 0x38, 0x8a, 0xeb, - 0xdd, 0x70, 0x64, 0x52, 0x06, 0x95, 0x37, 0x2f, 0xe2, 0x61, 0xb7, 0xab, 0xa8, 0x21, 0xc7, 0xc1, - 0x5f, 0x76, 0xc2, 0x4f, 0x92, 0x4e, 0x98, 0x84, 0x9d, 0x83, 0x2f, 0xfa, 0x38, 0x36, 0x6b, 0x73, - 0x1d, 0x84, 0x89, 0x36, 0x84, 0x19, 0x61, 0xf7, 0x43, 0xfc, 0xee, 0x4d, 0x76, 0xdf, 0xfb, 0xf4, - 0xa5, 0x62, 0xd0, 0x1f, 0x68, 0x8d, 0xe3, 0x4b, 0x58, 0x3e, 0xd6, 0x84, 0x92, 0xf6, 0xac, 0x41, - 0x0e, 0xbf, 0x5f, 0x27, 0x8c, 0x83, 0xd9, 0x26, 0x41, 0x6c, 0xc8, 0x21, 0xe4, 0x10, 0x72, 0x08, - 0x39, 0x84, 0x1c, 0x42, 0x0e, 0x21, 0x87, 0x90, 0x43, 0xc8, 0x21, 0xe4, 0x10, 0x72, 0x08, 0x39, - 0x2c, 0x16, 0x39, 0x64, 0xa0, 0xc9, 0x33, 0xe4, 0xb9, 0x36, 0x64, 0xe2, 0x5e, 0xfb, 0x24, 0x17, - 0x76, 0x3e, 0xfd, 0xd6, 0xb8, 0xb0, 0x73, 0xe5, 0xa0, 0x43, 0x95, 0x56, 0xad, 0x02, 0x39, 0x28, - 0xb4, 0x6a, 0xd1, 0xaa, 0xf5, 0xed, 0x2d, 0xa3, 0x55, 0x8b, 0x92, 0x67, 0x69, 0xdc, 0x20, 0x58, - 0x5d, 0x26, 0xc2, 0x4b, 0xb0, 0x9a, 0x60, 0x75, 0x7e, 0x5b, 0x49, 0xc9, 0x33, 0x25, 0xcf, 0x2e, - 0x2b, 0x29, 0xad, 0x5a, 0xf8, 0x2d, 0xf8, 0x2d, 0xf8, 0x2d, 0xf8, 0x2d, 0xf8, 0x2d, 0xf8, 0x2d, - 0xf8, 0x2d, 0x85, 0xf1, 0x5b, 0x68, 0xd5, 0xc2, 0x51, 0xc0, 0x51, 0xc0, 0x51, 0xc0, 0x51, 0x58, - 0x57, 0x47, 0x81, 0x6a, 0x3c, 0xaa, 0xf1, 0x96, 0xb7, 0x8b, 0x6a, 0x3c, 0xaa, 0xf1, 0xca, 0x8b, - 0xdd, 0x2f, 0xa8, 0xc6, 0xfb, 0x5f, 0x58, 0x4e, 0x35, 0x1e, 0xe4, 0x90, 0x56, 0x2d, 0xc8, 0x21, + 0xf8, 0x2f, 0x40, 0x08, 0x10, 0x02, 0x84, 0x00, 0xa1, 0xcc, 0x89, 0xe9, 0x86, 0xc1, 0x65, 0x12, + 0x5e, 0x6a, 0x80, 0xdf, 0x6b, 0x41, 0x19, 0xad, 0x59, 0x66, 0x7d, 0xa2, 0x48, 0x6f, 0x92, 0xde, + 0x30, 0x8d, 0xe2, 0xab, 0xcc, 0x36, 0xcf, 0x7e, 0x9c, 0xe1, 0x7d, 0x27, 0xbc, 0x8c, 0xe2, 0x28, + 0x8d, 0x7a, 0xf1, 0xe0, 0xf1, 0x7f, 0x9a, 0xfd, 0xcb, 0xb8, 0xde, 0xa2, 0x50, 0xfa, 0x23, 0x5a, + 0x3a, 0x35, 0x93, 0xa2, 0x51, 0x42, 0x35, 0x17, 0xa6, 0x50, 0x4a, 0x35, 0x13, 0x76, 0xb7, 0xa4, + 0x4a, 0xa9, 0x75, 0x74, 0x38, 0x08, 0x13, 0x69, 0x13, 0xaf, 0xd8, 0x60, 0x72, 0x17, 0xbf, 0x7a, + 0x93, 0xdd, 0xf4, 0x3e, 0x7f, 0xd5, 0x68, 0xb8, 0xb4, 0x68, 0x26, 0x59, 0xc0, 0xb2, 0xf1, 0x9b, + 0xa4, 0xf0, 0xba, 0x70, 0xe4, 0x41, 0x39, 0x78, 0xa7, 0x12, 0xb4, 0x83, 0x3c, 0x40, 0x1e, 0x20, + 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, + 0x74, 0x48, 0x59, 0xb4, 0xa2, 0xdc, 0xe9, 0xab, 0x10, 0xb9, 0x4a, 0x21, 0xc7, 0x9e, 0xa4, 0x1c, + 0x7b, 0x15, 0x64, 0x26, 0x90, 0x89, 0x4e, 0x1c, 0x13, 0xaf, 0x29, 0xaf, 0x52, 0x53, 0xae, 0x88, + 0xac, 0xd4, 0x94, 0x97, 0x11, 0x26, 0xa8, 0x29, 0x5f, 0x65, 0xf3, 0xa8, 0x65, 0x23, 0x0a, 0x47, + 0x14, 0x8e, 0x28, 0x1c, 0xb5, 0x6c, 0x3f, 0xed, 0x1c, 0x52, 0xcb, 0x26, 0xaa, 0x44, 0xd4, 0x94, + 0x83, 0xc3, 0xe0, 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0xe0, 0xb0, 0x21, 0x0e, 0x53, 0x53, 0x0e, + 0x10, 0x02, 0x84, 0x00, 0x21, 0x40, 0xf8, 0xa3, 0x27, 0x86, 0xb2, 0x10, 0xca, 0x42, 0x7e, 0x56, + 0x0a, 0x65, 0x21, 0x39, 0x1e, 0x44, 0xca, 0x42, 0x0a, 0x8a, 0x63, 0xcf, 0x28, 0x0b, 0x29, 0x07, + 0x79, 0xa0, 0xa6, 0x1c, 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, + 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, 0x28, 0x23, 0x79, 0xa0, 0xa6, 0xdc, 0xba, 0xa6, 0x5c, 0xe0, + 0xc6, 0x2b, 0xae, 0xb9, 0x28, 0x9e, 0x1e, 0x54, 0x72, 0x2d, 0xde, 0xff, 0x89, 0xfb, 0x56, 0x46, + 0x6b, 0x69, 0x4d, 0x96, 0x52, 0xa6, 0x4b, 0x37, 0x06, 0xe3, 0x7b, 0xbe, 0xbc, 0x5e, 0x7f, 0xec, + 0xa5, 0x0a, 0xdc, 0xbb, 0x71, 0x4f, 0x00, 0x57, 0x6f, 0xe4, 0x11, 0x7d, 0xc8, 0xf7, 0x0a, 0x5b, + 0x6e, 0xde, 0xf8, 0xd1, 0xe0, 0x41, 0xae, 0x57, 0xc8, 0x72, 0xf1, 0xc6, 0x4a, 0xc7, 0x80, 0x8b, + 0x37, 0x14, 0x9b, 0xa4, 0x64, 0xee, 0xcc, 0xa6, 0x47, 0xca, 0x29, 0x83, 0x54, 0x0c, 0xd6, 0x23, + 0xd6, 0x22, 0x15, 0x74, 0xbb, 0xbd, 0x3f, 0xbd, 0xde, 0x9f, 0xb1, 0x17, 0x0c, 0xe4, 0x93, 0x3a, + 0x0b, 0xd2, 0xe4, 0x0b, 0xb1, 0x37, 0xc9, 0x1b, 0xa9, 0x1b, 0x50, 0x3d, 0x43, 0xaa, 0x1d, 0x7a, + 0x5b, 0xbf, 0xb4, 0x91, 0x88, 0xa1, 0x15, 0x0e, 0x87, 0x15, 0x3e, 0x6b, 0x34, 0x8c, 0xe2, 0xf4, + 0x37, 0x85, 0x9c, 0xd1, 0x8e, 0xa0, 0x88, 0x93, 0x20, 0xbe, 0x1a, 0x3d, 0xcc, 0x27, 0x51, 0x75, + 0x55, 0x88, 0xb4, 0x1f, 0x45, 0x3a, 0x37, 0xf0, 0x2b, 0xa0, 0xca, 0x92, 0xb8, 0x8f, 0x41, 0x77, + 0x18, 0x2a, 0xca, 0x7b, 0x97, 0x04, 0xed, 0x34, 0xea, 0xc5, 0x6f, 0xa3, 0xab, 0x68, 0x9c, 0x68, + 0xda, 0x14, 0x97, 0x7b, 0xab, 0x90, 0x9e, 0x38, 0x0a, 0xfe, 0x2a, 0xbd, 0x8a, 0x54, 0x77, 0x76, + 0x4a, 0xac, 0x24, 0x05, 0xcd, 0x27, 0x5d, 0xac, 0x73, 0x47, 0x69, 0x34, 0x08, 0x3e, 0x77, 0x43, + 0xaf, 0x1f, 0x86, 0x89, 0x17, 0x0c, 0xbc, 0xcb, 0xa8, 0x9b, 0x86, 0x89, 0x42, 0x4b, 0xe9, 0xc3, + 0x72, 0xe5, 0xa9, 0xcc, 0x65, 0xd0, 0x1d, 0x84, 0xd0, 0x19, 0xe8, 0x0c, 0x74, 0x06, 0x3a, 0x53, + 0x24, 0x3a, 0xf3, 0xb9, 0xd7, 0xeb, 0x86, 0x41, 0xac, 0x51, 0x04, 0xb7, 0xb5, 0xc6, 0x80, 0x98, + 0x84, 0xfd, 0x6e, 0xd0, 0x9e, 0x01, 0x93, 0x3c, 0x12, 0xde, 0x17, 0x08, 0x04, 0x02, 0x81, 0x40, + 0x20, 0x10, 0x08, 0x04, 0x02, 0x81, 0xda, 0x9f, 0x48, 0x8d, 0xe1, 0x0f, 0xd6, 0x96, 0x2d, 0xd6, + 0x25, 0x31, 0xba, 0x36, 0xaf, 0x13, 0xce, 0xe8, 0x5a, 0xaa, 0x32, 0x1c, 0x71, 0x35, 0xa8, 0xca, + 0xd0, 0xc3, 0x09, 0xaa, 0x32, 0x7e, 0x86, 0xc7, 0x51, 0x95, 0x01, 0x87, 0x83, 0xc3, 0xc1, 0xe1, + 0x0a, 0xc5, 0xe1, 0xa8, 0xca, 0xf8, 0xd1, 0x2f, 0xaa, 0x32, 0x56, 0x12, 0x47, 0x55, 0x46, 0x3e, + 0x2a, 0x42, 0x55, 0x46, 0xc1, 0x95, 0x84, 0xaa, 0x0c, 0xd1, 0xf5, 0x52, 0x95, 0x91, 0x03, 0x95, + 0x21, 0x25, 0x05, 0x9d, 0x81, 0xce, 0x40, 0x67, 0x0a, 0x47, 0x67, 0x48, 0x49, 0xa9, 0x00, 0x22, + 0x55, 0x19, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x81, 0x40, 0x60, 0x11, 0x20, 0x90, 0xaa, 0x0c, + 0x07, 0xaa, 0x32, 0x18, 0xfe, 0x64, 0xad, 0x12, 0xae, 0xa8, 0x82, 0xf9, 0xfc, 0xa7, 0x41, 0x2b, + 0x48, 0xbf, 0x1c, 0x67, 0x8b, 0x29, 0xd1, 0x04, 0xa8, 0x9c, 0xc7, 0xb4, 0xc8, 0x8c, 0x67, 0x61, + 0xde, 0x13, 0xf3, 0x9e, 0x98, 0xf7, 0x94, 0x2b, 0x5e, 0xe4, 0x3e, 0xef, 0x29, 0x18, 0xa6, 0x5f, + 0xbc, 0x7e, 0x30, 0x18, 0x64, 0x2a, 0x20, 0x54, 0x5f, 0xb8, 0x28, 0x46, 0xa6, 0xce, 0x70, 0x93, + 0xe9, 0x4f, 0xd4, 0x19, 0x3a, 0x48, 0x9a, 0xa9, 0x33, 0x94, 0x23, 0xc5, 0xf3, 0xb8, 0xe1, 0x74, + 0xa4, 0xbb, 0x8c, 0x8d, 0x59, 0x70, 0x67, 0x7e, 0x5b, 0x83, 0x7a, 0xf3, 0x4e, 0x38, 0x68, 0x27, + 0x51, 0x5f, 0x84, 0xac, 0xde, 0xb9, 0xa5, 0x73, 0x2e, 0x04, 0x4c, 0x00, 0x13, 0xc0, 0x04, 0x30, + 0x21, 0x47, 0x7d, 0x1f, 0xa4, 0x49, 0x14, 0x5f, 0x81, 0x04, 0xab, 0x3d, 0x6b, 0x18, 0x07, 0x9f, + 0xbb, 0xa1, 0x20, 0x37, 0x98, 0x0a, 0xc8, 0xbb, 0xb7, 0x61, 0x9e, 0xe2, 0x1b, 0x9d, 0x63, 0x00, + 0x06, 0x80, 0x01, 0x60, 0x00, 0x98, 0x3c, 0xf5, 0x5d, 0x2e, 0x03, 0x27, 0x94, 0x79, 0x73, 0x13, + 0x61, 0xba, 0xbd, 0x76, 0xd0, 0x95, 0xa8, 0x2e, 0x99, 0x5f, 0x64, 0x36, 0x95, 0x00, 0x08, 0x00, + 0x02, 0x80, 0x00, 0x20, 0x90, 0xa3, 0xbe, 0x07, 0x03, 0x2f, 0x1e, 0x5e, 0x7f, 0x16, 0x29, 0xd7, + 0x9e, 0x1a, 0x18, 0x81, 0xdb, 0x11, 0x85, 0x9b, 0xa9, 0x64, 0x6f, 0x16, 0x54, 0x28, 0xe1, 0x52, + 0xe9, 0x88, 0xd1, 0x6a, 0x96, 0xd2, 0xec, 0x7f, 0xb9, 0x95, 0xbd, 0xe7, 0xb1, 0x74, 0xaf, 0x7e, + 0xbb, 0xba, 0xb7, 0xbd, 0xb7, 0xfb, 0xba, 0xba, 0xb7, 0x53, 0x22, 0x1d, 0x28, 0x48, 0xbd, 0xd8, + 0xc5, 0x1a, 0x78, 0xd7, 0xd3, 0xda, 0x1c, 0x2f, 0xe8, 0x74, 0x92, 0x70, 0x20, 0xe8, 0x65, 0x2f, + 0x49, 0xc2, 0xdb, 0xc6, 0xdb, 0xc6, 0xdb, 0xc6, 0xdb, 0xce, 0x51, 0xdf, 0xa3, 0xbe, 0x90, 0x75, + 0x59, 0x88, 0xba, 0xec, 0x09, 0x7c, 0x76, 0xb6, 0x37, 0x85, 0x73, 0xb7, 0xe7, 0x3b, 0x7f, 0xb3, + 0x2d, 0xb8, 0xf7, 0x4b, 0xef, 0xe0, 0x37, 0xd9, 0x1b, 0xe1, 0xd3, 0x30, 0x89, 0xc5, 0x47, 0x49, + 0x54, 0xfe, 0xf3, 0xcb, 0x2f, 0x9f, 0x36, 0xbd, 0xbd, 0x8b, 0x6f, 0x9f, 0xb6, 0xbc, 0xbd, 0x8b, + 0xc9, 0xb7, 0x5b, 0xe3, 0xff, 0x4c, 0xbe, 0xaf, 0x7e, 0xda, 0xf4, 0xb6, 0xa7, 0xdf, 0xef, 0x7c, + 0xda, 0xf4, 0x76, 0x2e, 0x9e, 0xff, 0xf1, 0xc7, 0xaf, 0xcf, 0xff, 0x7e, 0x75, 0xfb, 0xf4, 0x3f, + 0xfc, 0x47, 0xa5, 0x68, 0x4d, 0xe1, 0x2f, 0x0a, 0x7c, 0x18, 0x76, 0x39, 0x0c, 0x3f, 0x77, 0x18, + 0x02, 0xef, 0xb2, 0xe6, 0xbd, 0xbb, 0xf8, 0x7b, 0xeb, 0xc5, 0xf6, 0xed, 0x9b, 0xe7, 0x7f, 0xbf, + 0xbe, 0xbd, 0xff, 0xc3, 0x6f, 0x0f, 0xfd, 0xda, 0xd6, 0x8b, 0xd7, 0xb7, 0x6f, 0x1e, 0xf9, 0x97, + 0xdd, 0xdb, 0x37, 0x3f, 0xf8, 0x19, 0x3b, 0xb7, 0xbf, 0x2c, 0xfd, 0xea, 0xe8, 0xe7, 0xd5, 0xc7, + 0xfe, 0x60, 0xfb, 0x91, 0x3f, 0x78, 0xf5, 0xd8, 0x1f, 0xbc, 0x7a, 0xe4, 0x0f, 0x1e, 0x5d, 0x52, + 0xf5, 0x91, 0x3f, 0xd8, 0xb9, 0xfd, 0xb6, 0xf4, 0xfb, 0xbf, 0x3c, 0xfc, 0xab, 0xbb, 0xb7, 0xcf, + 0xbf, 0x3d, 0xf6, 0x6f, 0xaf, 0x6f, 0xbf, 0xbd, 0x79, 0x5e, 0x40, 0xd3, 0x00, 0xd7, 0xfb, 0x89, + 0x13, 0x26, 0xd5, 0xa6, 0x3b, 0xb3, 0x7b, 0x32, 0x6d, 0xb9, 0x30, 0x3b, 0x98, 0x1d, 0xcc, 0x8e, + 0x3c, 0x0a, 0x79, 0x14, 0x4d, 0x5f, 0x96, 0x3c, 0xca, 0xd3, 0xe5, 0x90, 0x47, 0x71, 0xf6, 0xd5, + 0x93, 0x47, 0xc1, 0xb7, 0x16, 0xf7, 0xad, 0xaf, 0x92, 0xde, 0xb0, 0x2f, 0xec, 0x5e, 0x4f, 0x64, + 0xe0, 0x61, 0xe3, 0x61, 0xe3, 0x61, 0xe3, 0x61, 0xe7, 0xa8, 0xef, 0xdd, 0x30, 0xb8, 0x4c, 0xc2, + 0x4b, 0xc9, 0xc4, 0x89, 0x84, 0x83, 0xdd, 0xca, 0xa6, 0x58, 0xfc, 0xfa, 0xeb, 0xcb, 0xd9, 0xff, + 0xcd, 0x0d, 0xe5, 0xe0, 0xce, 0xf7, 0x77, 0xbe, 0xf5, 0xc6, 0x83, 0x22, 0xd6, 0x05, 0x96, 0x52, + 0x09, 0xdd, 0x59, 0x44, 0xa5, 0xb1, 0x08, 0x40, 0x09, 0x50, 0x02, 0x94, 0x00, 0xa5, 0x02, 0x18, + 0x97, 0x05, 0x58, 0xda, 0x16, 0xf8, 0xec, 0x7a, 0x3c, 0xbc, 0x1e, 0x6d, 0xcd, 0xed, 0x1a, 0x80, + 0x4c, 0x12, 0x5e, 0xf7, 0x6e, 0x42, 0xaf, 0x9f, 0x44, 0x37, 0x41, 0x1a, 0x8a, 0x66, 0x18, 0x96, + 0x45, 0x01, 0x3a, 0x80, 0x0e, 0xa0, 0x03, 0xe8, 0x48, 0x1a, 0x99, 0x6c, 0x60, 0x9d, 0x24, 0x06, + 0x09, 0x84, 0x25, 0x2b, 0x8d, 0x4e, 0x18, 0xa7, 0x51, 0xfa, 0x75, 0x3f, 0x18, 0x84, 0xf2, 0xb3, + 0x99, 0x4f, 0xea, 0x47, 0xc7, 0x1f, 0xeb, 0x7e, 0xeb, 0xa4, 0xf1, 0xb1, 0x76, 0x56, 0xf7, 0x6b, + 0xa7, 0xfe, 0x71, 0xeb, 0xac, 0x71, 0xdc, 0x94, 0x3a, 0x72, 0xe3, 0xc8, 0xee, 0x40, 0xb4, 0x2e, + 0x45, 0x38, 0x04, 0x3e, 0xdd, 0xb9, 0x3b, 0x5b, 0x96, 0x6d, 0x62, 0xed, 0xf0, 0xb0, 0x52, 0xc4, + 0xd4, 0x81, 0xc5, 0x86, 0xb5, 0x0e, 0x6b, 0x07, 0xd2, 0x3b, 0x26, 0xf2, 0xc9, 0x17, 0xae, 0x1b, + 0x6e, 0x37, 0x9d, 0xcd, 0xde, 0x30, 0x0d, 0xbd, 0xcb, 0x6e, 0xd0, 0xf7, 0x3a, 0xc1, 0x75, 0x3f, + 0x8a, 0xaf, 0x04, 0xbd, 0xcd, 0x65, 0x59, 0x72, 0x63, 0x28, 0x24, 0x26, 0xcd, 0xe3, 0xce, 0xe2, + 0xce, 0xe2, 0xce, 0x32, 0x87, 0x82, 0x39, 0x14, 0xab, 0x3f, 0xeb, 0x20, 0x8c, 0x3b, 0x5e, 0xbb, + 0x77, 0x7d, 0x3d, 0x8c, 0xa3, 0xf4, 0xab, 0xe0, 0x65, 0xeb, 0x8b, 0x72, 0xe4, 0x00, 0xa7, 0x79, + 0xdc, 0xac, 0x83, 0x37, 0xe0, 0x0d, 0x78, 0x03, 0xde, 0xe4, 0xa9, 0xef, 0x33, 0xdb, 0x45, 0xe0, + 0x5e, 0x02, 0xd2, 0xb8, 0xa1, 0x42, 0xf0, 0x86, 0x8a, 0xec, 0x86, 0x83, 0x12, 0xdd, 0x05, 0x11, + 0x7e, 0xbe, 0xea, 0x7b, 0xd7, 0xc3, 0x6e, 0x1a, 0x7d, 0xe9, 0xf5, 0xf3, 0xbf, 0x12, 0x62, 0xf1, + 0xe3, 0xb9, 0x19, 0xc2, 0x3d, 0x6f, 0x81, 0x9b, 0x21, 0x4c, 0xbc, 0x81, 0x92, 0xdf, 0x0c, 0x91, + 0xf3, 0x15, 0x33, 0x0f, 0x38, 0x11, 0x39, 0x5e, 0x35, 0x23, 0x64, 0x58, 0xa0, 0x27, 0xd0, 0x13, + 0xe8, 0x49, 0xce, 0xf1, 0x89, 0x48, 0xe6, 0x42, 0x75, 0xb1, 0x41, 0xd5, 0xcb, 0x1e, 0x91, 0xc8, + 0xc0, 0xea, 0x87, 0x02, 0x38, 0xdc, 0x4d, 0x6b, 0x63, 0x3a, 0xf5, 0x4c, 0xa8, 0x96, 0x29, 0x55, + 0x37, 0xa9, 0xea, 0xa6, 0x55, 0xd5, 0xc4, 0xca, 0x98, 0x5a, 0x21, 0x93, 0x2b, 0x1f, 0x19, 0x5a, + 0x3a, 0x2f, 0xdc, 0x4d, 0xab, 0xf1, 0x52, 0x2b, 0x53, 0x5a, 0xee, 0xa5, 0x69, 0x57, 0x1e, 0xf7, + 0x16, 0xa4, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0x04, 0x28, 0x15, 0x08, 0x94, 0x86, 0x51, 0x9c, 0xfe, + 0xa6, 0x00, 0x49, 0x82, 0x0d, 0xe8, 0xc2, 0xd3, 0x26, 0xa6, 0x5f, 0xb2, 0xc7, 0xfd, 0x99, 0xd6, + 0xf4, 0x09, 0x25, 0x54, 0x59, 0x12, 0xa7, 0x34, 0x8d, 0x62, 0x26, 0x4f, 0x71, 0x22, 0x81, 0xb0, + 0x35, 0x58, 0x54, 0x11, 0x85, 0x29, 0x15, 0xd6, 0x2a, 0x52, 0xdd, 0xd9, 0x29, 0xb1, 0x92, 0x6c, + 0x14, 0xf3, 0xd3, 0x8b, 0x32, 0xd2, 0xce, 0xed, 0x40, 0x9f, 0x50, 0xe6, 0x78, 0xf6, 0xf9, 0x56, + 0x19, 0xe4, 0x85, 0x84, 0x68, 0xae, 0xf9, 0xe4, 0xfc, 0xdf, 0x6b, 0xae, 0xe5, 0x71, 0x69, 0x90, + 0x0a, 0x76, 0x99, 0x4f, 0x3e, 0xbe, 0x60, 0xe9, 0xa0, 0x2a, 0xe9, 0x20, 0x3d, 0xba, 0x48, 0x3a, + 0xa8, 0x84, 0x28, 0x41, 0x3a, 0xe8, 0x7b, 0x1b, 0x44, 0x3a, 0xc8, 0xda, 0x74, 0xea, 0x99, 0x50, + 0x2d, 0x53, 0xaa, 0x6e, 0x52, 0xd5, 0x4d, 0xab, 0xaa, 0x89, 0x95, 0xa5, 0x24, 0xa4, 0x83, 0x9e, + 0xe0, 0xe9, 0x91, 0x0e, 0x22, 0x1d, 0x04, 0x28, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0xf4, 0xbf, 0xcf, + 0x0b, 0xe9, 0xa0, 0x1f, 0xfd, 0x22, 0x1d, 0xb4, 0x92, 0x38, 0xd2, 0x41, 0xf9, 0xa8, 0x08, 0xe9, + 0xa0, 0x82, 0x2b, 0x09, 0xe9, 0x20, 0x59, 0x4a, 0x41, 0x3a, 0xc8, 0x3c, 0x1d, 0x34, 0xc9, 0x62, + 0xd0, 0x59, 0x6a, 0xa7, 0x10, 0x6e, 0x28, 0x42, 0x25, 0xd7, 0xc4, 0x5b, 0x32, 0x6c, 0xa7, 0x71, + 0xe6, 0xb6, 0x36, 0x27, 0x2b, 0x6c, 0x64, 0x0b, 0xf4, 0x5b, 0xd9, 0xb2, 0xfc, 0xfd, 0xab, 0xbe, + 0xdf, 0xcc, 0x16, 0xe3, 0xd7, 0x3f, 0x5f, 0xf5, 0x8f, 0xa6, 0x6b, 0x29, 0x53, 0xb3, 0x6b, 0x92, + 0xf4, 0x12, 0xef, 0x4b, 0x10, 0x77, 0xba, 0x79, 0x0e, 0x86, 0x9a, 0x07, 0xf3, 0x17, 0x3f, 0x9f, + 0x76, 0x57, 0xf7, 0xc2, 0x12, 0xb4, 0xbb, 0x9a, 0x84, 0x15, 0x68, 0x77, 0x5d, 0xe9, 0x18, 0xd0, + 0xee, 0x4a, 0x7d, 0x83, 0xb5, 0x01, 0x52, 0x33, 0x44, 0x2a, 0x06, 0xa9, 0x18, 0xb4, 0x47, 0xac, + 0xbe, 0x21, 0x4d, 0xc2, 0x20, 0xf5, 0x82, 0x81, 0xf7, 0x67, 0x94, 0x7e, 0xe9, 0x24, 0xc1, 0x9f, + 0xf2, 0x19, 0x9f, 0x65, 0x91, 0xd4, 0x3c, 0x58, 0x98, 0x51, 0x0d, 0x73, 0xaa, 0x67, 0x56, 0xb5, + 0xcc, 0xab, 0xba, 0x99, 0x55, 0x37, 0xb7, 0xaa, 0x66, 0x57, 0x36, 0xee, 0x46, 0xcd, 0xc3, 0x13, + 0xbc, 0xbf, 0x2d, 0x02, 0x94, 0xee, 0xc6, 0xa3, 0xec, 0xe3, 0x52, 0x0b, 0x21, 0x0d, 0x0a, 0xd6, + 0xf3, 0x3a, 0xe0, 0x14, 0xac, 0x43, 0xe8, 0x20, 0x74, 0x10, 0xba, 0xbc, 0x3e, 0x78, 0x64, 0xa7, + 0xe3, 0xb0, 0x37, 0x1c, 0x78, 0xc3, 0x7e, 0x27, 0x48, 0x43, 0xef, 0x3a, 0x1c, 0x0c, 0x82, 0xab, + 0x70, 0xa0, 0x50, 0xc2, 0xfe, 0xa8, 0x68, 0x88, 0x17, 0xc4, 0x0b, 0xe2, 0x05, 0xf1, 0x2a, 0x10, + 0xf1, 0x1a, 0x46, 0x71, 0xfa, 0xaa, 0xaa, 0xc0, 0xbb, 0x5e, 0x53, 0xd8, 0xf7, 0xfd, 0x07, 0xa1, + 0xb0, 0x2f, 0x3f, 0x79, 0x14, 0xf6, 0x15, 0x56, 0x45, 0xb6, 0xab, 0x7b, 0xdb, 0x7b, 0xbb, 0xaf, + 0xab, 0x7b, 0xd4, 0xf7, 0x39, 0xf7, 0xe9, 0x17, 0x6b, 0xdc, 0x32, 0x44, 0x16, 0x09, 0x32, 0x03, + 0x99, 0x81, 0xcc, 0x40, 0x66, 0xdc, 0x24, 0x33, 0x64, 0x91, 0x84, 0x3f, 0x91, 0x2c, 0xd2, 0x4f, + 0x65, 0x91, 0xa8, 0x73, 0xb7, 0xd6, 0x08, 0x47, 0x34, 0xc1, 0xbc, 0xd0, 0x7d, 0xb4, 0x9a, 0x0f, + 0xd3, 0xc5, 0x94, 0xa8, 0xd2, 0xfd, 0x2a, 0x09, 0xda, 0xe1, 0xe5, 0xb0, 0xeb, 0x25, 0xe1, 0x20, + 0x0d, 0x92, 0x34, 0xff, 0x5a, 0xf7, 0x25, 0x09, 0x54, 0xbb, 0xbb, 0xe7, 0xdf, 0x52, 0xed, 0x6e, + 0xe2, 0x9f, 0x52, 0xed, 0xbe, 0xd2, 0x31, 0xa0, 0xda, 0x9d, 0xe2, 0x08, 0x57, 0x08, 0x34, 0xc5, + 0x11, 0x7a, 0xec, 0x87, 0x69, 0x7e, 0xc4, 0x0a, 0x89, 0x15, 0x12, 0x2b, 0x24, 0x56, 0x48, 0xac, + 0xd0, 0x89, 0x58, 0xa1, 0x80, 0x5f, 0xf4, 0x25, 0xec, 0xf6, 0xc3, 0xc4, 0xeb, 0xc5, 0xdd, 0xaf, + 0xf2, 0x70, 0x74, 0x57, 0x18, 0x90, 0x04, 0x24, 0x01, 0x49, 0x40, 0x12, 0x90, 0x04, 0x24, 0x2d, + 0xee, 0x41, 0x16, 0xc0, 0xf5, 0xd2, 0xe8, 0x3a, 0x94, 0xc7, 0xa4, 0x05, 0x69, 0x80, 0x12, 0xa0, + 0x04, 0x28, 0x01, 0x4a, 0x05, 0x02, 0xa5, 0x61, 0x14, 0xa7, 0x5b, 0xbb, 0x0a, 0x98, 0xb4, 0x4b, + 0x81, 0xf8, 0xf7, 0x1f, 0x84, 0x02, 0xf1, 0xfc, 0xe4, 0x51, 0x20, 0x5e, 0x58, 0x15, 0xd9, 0xde, + 0xdc, 0xdb, 0xa5, 0x34, 0xdc, 0xb5, 0x4f, 0x5f, 0xe7, 0xd2, 0xf0, 0x41, 0x1a, 0x74, 0x43, 0x2f, + 0xe9, 0x0d, 0xd3, 0x70, 0xa0, 0xc4, 0x2c, 0x96, 0x45, 0x42, 0x2f, 0xa0, 0x17, 0xd0, 0x0b, 0xe8, + 0x45, 0x81, 0xe8, 0x45, 0x27, 0x6c, 0x47, 0xd7, 0x41, 0x77, 0x77, 0x5b, 0x23, 0xea, 0x55, 0x15, + 0x94, 0xb1, 0xe4, 0x27, 0x54, 0xe1, 0x33, 0x6e, 0xf2, 0x99, 0x2a, 0x7c, 0x06, 0x3e, 0xf3, 0xbf, + 0x55, 0xe4, 0x15, 0x2a, 0x02, 0x99, 0x29, 0x08, 0x99, 0xa1, 0xc1, 0xc7, 0xa0, 0xad, 0xe3, 0x7e, + 0x37, 0x00, 0x83, 0xe2, 0x72, 0x64, 0xb5, 0x0c, 0x8a, 0xa3, 0x16, 0xda, 0x05, 0x66, 0x4a, 0x2d, + 0xb4, 0x1e, 0x50, 0x50, 0x0b, 0xfd, 0x63, 0x26, 0x8c, 0x20, 0x9c, 0xa5, 0x69, 0xd3, 0x32, 0x71, + 0xea, 0xa6, 0x4e, 0xdd, 0xe4, 0xa9, 0x9a, 0x3e, 0x59, 0xb6, 0x40, 0xe1, 0xd9, 0x13, 0x3c, 0x30, + 0x6a, 0xa1, 0xa9, 0x85, 0x06, 0x92, 0x80, 0x24, 0x20, 0x09, 0x48, 0x02, 0x92, 0xcc, 0x21, 0xa9, + 0xdb, 0x6b, 0x07, 0xb3, 0x20, 0x56, 0x9e, 0x77, 0x44, 0x3e, 0xfa, 0x62, 0x97, 0x24, 0x02, 0x4e, + 0x80, 0x13, 0xe0, 0x04, 0x38, 0x01, 0x4e, 0x80, 0xd3, 0xe2, 0x1e, 0x5c, 0xf7, 0x3a, 0x0a, 0x65, + 0x74, 0x63, 0x29, 0x80, 0x10, 0x20, 0x04, 0x08, 0x01, 0x42, 0x05, 0x02, 0xa1, 0x30, 0x1e, 0x5e, + 0x87, 0xc9, 0x24, 0xb7, 0xae, 0x00, 0x44, 0xdb, 0x82, 0x32, 0xea, 0xf1, 0xf0, 0x7a, 0xb4, 0x69, + 0xb7, 0x6b, 0x0c, 0x76, 0xfd, 0x30, 0x4c, 0x3c, 0xdd, 0xd6, 0xd4, 0x65, 0x91, 0xc0, 0x20, 0x30, + 0x08, 0x0c, 0x02, 0x83, 0x05, 0x82, 0x41, 0xfa, 0x53, 0x7f, 0xf8, 0x8b, 0xfe, 0xd4, 0x95, 0xc4, + 0x51, 0xcf, 0x9d, 0x8f, 0x8a, 0xd0, 0x9f, 0x5a, 0x74, 0x2d, 0xa1, 0xa4, 0xbb, 0xd0, 0xf4, 0x42, + 0x25, 0xcf, 0x73, 0x5f, 0x20, 0xd4, 0x02, 0x6a, 0x01, 0xb5, 0x80, 0x5a, 0x14, 0x88, 0x5a, 0x90, + 0xe6, 0x51, 0x81, 0x26, 0xe6, 0xb1, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0x04, 0x28, 0xfd, 0xc8, 0x79, + 0x21, 0xde, 0xf5, 0xc3, 0x5f, 0xc4, 0xbb, 0x72, 0x09, 0x66, 0x10, 0xef, 0x5a, 0x4d, 0x45, 0x88, + 0x77, 0x15, 0x5d, 0x4b, 0x88, 0x77, 0x15, 0x8e, 0x54, 0x30, 0x8f, 0x0d, 0x7a, 0x01, 0xbd, 0x80, + 0x5e, 0x40, 0x2f, 0x9e, 0x76, 0x5e, 0x98, 0xc7, 0x06, 0x9f, 0x61, 0x1e, 0x1b, 0x7c, 0xc6, 0x2d, + 0x3e, 0xc3, 0x3c, 0x36, 0xc8, 0x0c, 0xf3, 0xd8, 0xf2, 0x70, 0xb1, 0xd6, 0x65, 0x1e, 0xdb, 0x64, + 0x8c, 0x98, 0xab, 0xe3, 0xd8, 0x9c, 0xba, 0x2f, 0x5b, 0x48, 0x27, 0x9c, 0xd1, 0x85, 0x4a, 0xae, + 0xc3, 0xef, 0x92, 0x61, 0x3b, 0x8d, 0x33, 0x67, 0xb9, 0x39, 0x59, 0x64, 0x23, 0x5b, 0xa3, 0xdf, + 0xca, 0x56, 0xe6, 0xef, 0x5f, 0xf5, 0xfd, 0x66, 0xb6, 0x1e, 0xff, 0x7d, 0xb6, 0x9e, 0x93, 0x6c, + 0x39, 0x1b, 0x6e, 0xa8, 0x50, 0x0e, 0xea, 0x53, 0xe9, 0xf6, 0xae, 0xae, 0xa2, 0xf8, 0xca, 0xeb, + 0xf5, 0x47, 0xea, 0x33, 0xc8, 0x4d, 0x7f, 0xee, 0x74, 0x8b, 0x2f, 0x0a, 0xc8, 0x49, 0xe5, 0xf3, + 0x9d, 0x07, 0x98, 0x7b, 0xc4, 0x44, 0x22, 0x42, 0x22, 0x17, 0x11, 0x91, 0x8a, 0x80, 0x88, 0x47, + 0x3c, 0xc4, 0x23, 0x1c, 0xa2, 0x11, 0x0d, 0xb7, 0x40, 0x24, 0xef, 0xf9, 0x7d, 0x95, 0xf6, 0xf4, + 0x4c, 0x09, 0xcd, 0x19, 0xcd, 0x3e, 0xbf, 0x60, 0x83, 0x46, 0x37, 0x19, 0x34, 0x2a, 0x6f, 0x78, + 0xd4, 0x0c, 0x90, 0x9a, 0x21, 0x52, 0x31, 0x48, 0xc5, 0x60, 0x40, 0x62, 0x83, 0x46, 0xbb, 0xbd, + 0x91, 0x63, 0x3b, 0xf1, 0xf9, 0xbc, 0x31, 0xfd, 0xf0, 0xda, 0x5f, 0x82, 0xf8, 0x2a, 0x1c, 0x68, + 0x0c, 0xd5, 0x79, 0x54, 0xb6, 0x90, 0x22, 0xbd, 0x0d, 0x2f, 0x83, 0x61, 0x77, 0xac, 0x47, 0x23, + 0x75, 0x25, 0xd5, 0xa5, 0x6e, 0x5f, 0xf5, 0xec, 0xac, 0x96, 0xbd, 0x55, 0xb7, 0xbb, 0xea, 0xf6, + 0x57, 0xd5, 0x0e, 0xcb, 0xc6, 0xe4, 0x28, 0xef, 0x7e, 0x82, 0x3b, 0xb8, 0x45, 0xf0, 0xd2, 0xdd, + 0x40, 0x95, 0x79, 0xc0, 0xea, 0x5e, 0x90, 0x83, 0xbb, 0x24, 0xf2, 0x3a, 0xe1, 0xdc, 0x25, 0x01, + 0xc5, 0x83, 0xe2, 0x41, 0xf1, 0xa0, 0x78, 0x50, 0x3c, 0x28, 0x1e, 0x14, 0x0f, 0x8a, 0x07, 0xc5, + 0x83, 0xe2, 0x41, 0xf1, 0xec, 0x29, 0x1e, 0xe5, 0x29, 0xd6, 0x2a, 0xe1, 0x8a, 0x2a, 0x58, 0x57, + 0xa7, 0x1c, 0x4e, 0x96, 0x73, 0x9c, 0xad, 0xa6, 0x44, 0xc5, 0x29, 0x33, 0x6f, 0x39, 0xe8, 0x74, + 0x92, 0x70, 0x20, 0x50, 0x9d, 0xb2, 0x24, 0x21, 0xdf, 0xf2, 0x94, 0x4d, 0xca, 0x53, 0x1c, 0x76, + 0x69, 0x29, 0x4f, 0x29, 0x10, 0x88, 0xe4, 0xee, 0x72, 0xce, 0x79, 0x79, 0x18, 0x5c, 0x26, 0xe1, + 0x65, 0x9e, 0x0a, 0x3b, 0x75, 0x29, 0x5f, 0xe7, 0xf8, 0x99, 0xad, 0x0c, 0xe7, 0x7e, 0xfd, 0x35, + 0x0b, 0x2f, 0xbf, 0x5c, 0x32, 0x5e, 0x25, 0x32, 0xfd, 0xe3, 0x26, 0x4c, 0x2f, 0x09, 0x2f, 0xbb, + 0x61, 0x3b, 0xed, 0x25, 0xf9, 0x5b, 0xfe, 0xfb, 0x02, 0xa8, 0x4b, 0xc4, 0xf0, 0x63, 0xf8, 0x1d, + 0x34, 0xfc, 0xd4, 0x25, 0x3e, 0xa3, 0x2e, 0x51, 0xc9, 0xe0, 0x48, 0x1b, 0x1e, 0x35, 0x03, 0xa4, + 0x66, 0x88, 0x54, 0x0c, 0x52, 0x31, 0x22, 0x5f, 0x62, 0x49, 0xab, 0x7b, 0xae, 0x8a, 0xd7, 0xee, + 0x46, 0x93, 0x8d, 0x96, 0x1e, 0xb4, 0xf7, 0xb0, 0x5c, 0xf9, 0x64, 0xd5, 0x65, 0xd0, 0x1d, 0x90, + 0xad, 0xd2, 0x37, 0xac, 0x7a, 0x06, 0x56, 0xcb, 0xd0, 0xaa, 0x1b, 0x5c, 0x75, 0xc3, 0xab, 0x6a, + 0x80, 0x65, 0x0c, 0xb1, 0x90, 0x41, 0x96, 0x0b, 0x1d, 0x3c, 0x7a, 0x5e, 0xc8, 0x56, 0x69, 0xbc, + 0xd4, 0x07, 0x80, 0x69, 0x38, 0x48, 0xc3, 0xc4, 0x8b, 0x3a, 0x16, 0xa0, 0x38, 0x93, 0x0d, 0x60, + 0x01, 0x58, 0x00, 0x16, 0x80, 0x55, 0x20, 0xc0, 0x4a, 0xee, 0x1a, 0x30, 0x2f, 0x1d, 0xc9, 0x55, + 0xc0, 0xae, 0x3d, 0x41, 0x19, 0xd9, 0xde, 0x15, 0x7e, 0x8e, 0xd3, 0xdd, 0x69, 0xc1, 0xaf, 0xaa, + 0x15, 0x85, 0xb1, 0x40, 0xd9, 0xdb, 0x79, 0xad, 0x20, 0x4a, 0x67, 0xda, 0x96, 0xde, 0xdb, 0x9a, + 0x3d, 0x98, 0xe6, 0xf4, 0x2d, 0x25, 0x07, 0xe1, 0x51, 0xb1, 0xca, 0xa3, 0x96, 0x66, 0x72, 0x0d, + 0x46, 0x2e, 0x09, 0x1b, 0xfc, 0x87, 0x55, 0x49, 0x71, 0x4a, 0x97, 0x2b, 0xaa, 0xb4, 0x5d, 0xdd, + 0xdb, 0xde, 0xdb, 0x7d, 0x5d, 0xdd, 0xdb, 0x59, 0x23, 0x9d, 0xda, 0x28, 0x87, 0x94, 0x8b, 0x8d, + 0x02, 0x9f, 0x3c, 0x45, 0x40, 0x8f, 0xfa, 0x37, 0xdb, 0x39, 0x97, 0x1b, 0xfd, 0x90, 0xd3, 0xf5, + 0x9b, 0x82, 0xac, 0x56, 0x90, 0xa6, 0x61, 0x12, 0xab, 0x21, 0x7b, 0xe5, 0x3f, 0xbf, 0xfc, 0xf2, + 0x69, 0xd3, 0xdb, 0xbb, 0xf8, 0xf6, 0x69, 0xcb, 0xdb, 0xbb, 0x98, 0x7c, 0xbb, 0x35, 0xfe, 0xcf, + 0xe4, 0xfb, 0xea, 0xa7, 0x4d, 0x6f, 0x7b, 0xfa, 0xfd, 0xce, 0xa7, 0x4d, 0x6f, 0xe7, 0xe2, 0xf9, + 0x1f, 0x7f, 0xfc, 0xfa, 0xfc, 0xef, 0x57, 0xb7, 0x4f, 0xff, 0xc3, 0x7f, 0x54, 0x8a, 0x7e, 0x88, + 0x98, 0xed, 0x47, 0xed, 0xb4, 0x41, 0xc1, 0xec, 0xbd, 0x98, 0x19, 0xed, 0xb1, 0x79, 0x61, 0x09, + 0xed, 0xb1, 0x54, 0x1a, 0x7c, 0xef, 0x6d, 0x52, 0x69, 0x50, 0x3a, 0x9c, 0xa0, 0xd2, 0x60, 0xb5, + 0xed, 0xa3, 0xd2, 0xc0, 0xda, 0xb0, 0xea, 0x19, 0x58, 0x2d, 0x43, 0xab, 0x6e, 0x70, 0xd5, 0x0d, + 0xaf, 0xaa, 0x01, 0x96, 0xa5, 0x2c, 0x54, 0x1a, 0x3c, 0xc1, 0x0f, 0xa4, 0xd2, 0x80, 0x4a, 0x03, + 0x00, 0x0b, 0xc0, 0x02, 0xb0, 0x00, 0xac, 0x15, 0xac, 0x19, 0x95, 0x06, 0x3f, 0xf3, 0x45, 0xa5, + 0xc1, 0x6a, 0xa2, 0xa8, 0x34, 0x28, 0x8e, 0x83, 0xf0, 0xa8, 0x58, 0x2a, 0x0d, 0x64, 0x55, 0x89, + 0x4a, 0x83, 0xf5, 0xd0, 0x29, 0x2a, 0x0d, 0xec, 0x4f, 0x1e, 0x95, 0x06, 0xf9, 0x50, 0x3d, 0x2a, + 0x0d, 0x9c, 0x3e, 0x44, 0x54, 0x1a, 0x50, 0x69, 0xe0, 0x40, 0xa5, 0x01, 0x53, 0xda, 0xac, 0x55, + 0xc2, 0x15, 0x55, 0xb0, 0x9e, 0xd2, 0x76, 0x32, 0x5a, 0xce, 0xc9, 0x6c, 0x35, 0x25, 0x1a, 0xd5, + 0x93, 0x6f, 0x8d, 0x8b, 0x48, 0x6d, 0x8b, 0xd8, 0x58, 0x9e, 0x2a, 0x63, 0x79, 0xf2, 0x74, 0x20, + 0x19, 0xcb, 0x53, 0x18, 0xb8, 0xc8, 0x7d, 0x2c, 0x4f, 0x30, 0x4c, 0xbf, 0x78, 0xfd, 0x60, 0x30, + 0xc8, 0x54, 0x40, 0xa8, 0x64, 0x6e, 0x51, 0x8c, 0x4c, 0xe9, 0xdc, 0x26, 0x43, 0x7a, 0x28, 0x9d, + 0x73, 0xc8, 0x2c, 0xa9, 0x98, 0xa7, 0x62, 0x10, 0x1f, 0xb1, 0x84, 0xd7, 0x42, 0xda, 0x3e, 0x8a, + 0xaf, 0xa4, 0x6c, 0xcc, 0x62, 0xa4, 0x65, 0x0d, 0x4a, 0xa8, 0x3b, 0xe1, 0xa0, 0x9d, 0x44, 0x7d, + 0x11, 0xae, 0x3a, 0x7b, 0x69, 0x77, 0x85, 0x80, 0x09, 0x60, 0x02, 0x98, 0x00, 0x26, 0xe4, 0xca, + 0x65, 0x93, 0x28, 0xbe, 0x02, 0x09, 0x56, 0x44, 0x82, 0xaf, 0x71, 0x70, 0x1d, 0xb5, 0x83, 0x6e, + 0xf7, 0xab, 0x37, 0x09, 0x21, 0x0d, 0x93, 0x50, 0x90, 0x2a, 0x3c, 0x22, 0x2f, 0xef, 0x62, 0x7e, + 0xd9, 0x6a, 0x74, 0xf0, 0x07, 0xfc, 0x01, 0x7f, 0xd6, 0x1c, 0x7f, 0xe4, 0xaa, 0xc5, 0x85, 0xaa, + 0xc4, 0xdd, 0x04, 0xa0, 0x30, 0x0e, 0x3e, 0x77, 0x25, 0x11, 0x67, 0x2a, 0x40, 0x0e, 0x62, 0x04, + 0xee, 0x01, 0x04, 0x61, 0x40, 0x18, 0x10, 0x06, 0x84, 0x01, 0x61, 0x72, 0x40, 0x98, 0x41, 0x1a, + 0x7c, 0xee, 0x46, 0x83, 0x2f, 0x61, 0xc7, 0x4b, 0x93, 0x20, 0x1e, 0x44, 0x93, 0x4b, 0xbd, 0xe4, + 0x10, 0xe7, 0x11, 0x81, 0x40, 0x04, 0x10, 0x01, 0x44, 0x00, 0x11, 0x39, 0xea, 0x7b, 0xbb, 0x37, + 0x8c, 0xd3, 0x30, 0xd9, 0xdd, 0x16, 0x04, 0x09, 0x81, 0xd2, 0x53, 0xe1, 0x16, 0x12, 0xc1, 0xd6, + 0x2b, 0x8d, 0x16, 0x11, 0xa5, 0x3a, 0x7e, 0xad, 0x16, 0x10, 0xcd, 0xf2, 0x7c, 0xc1, 0x42, 0x73, + 0x95, 0x96, 0x0e, 0xed, 0x57, 0xbf, 0xf5, 0xdb, 0xf6, 0xf6, 0xee, 0xeb, 0xed, 0xed, 0xcd, 0xd7, + 0xaf, 0x5e, 0x6f, 0xee, 0xed, 0xec, 0x6c, 0xed, 0x6e, 0xed, 0x94, 0x48, 0x1b, 0x0a, 0x52, 0xd7, + 0x7c, 0xb1, 0x06, 0x5e, 0x78, 0x37, 0x18, 0xa4, 0xde, 0x1d, 0xcf, 0x58, 0xce, 0xfd, 0x5e, 0x92, + 0x84, 0xdf, 0x8d, 0xdf, 0x8d, 0xdf, 0x8d, 0xdf, 0x9d, 0xa3, 0xbe, 0xa7, 0xd1, 0x75, 0x98, 0x46, + 0xed, 0xff, 0x0e, 0x0a, 0xe7, 0x79, 0x9f, 0xc7, 0x13, 0xd4, 0xad, 0xc4, 0x41, 0xdc, 0x1b, 0x84, + 0xed, 0x5e, 0xdc, 0x91, 0x68, 0x64, 0xc3, 0xc3, 0xc7, 0xc3, 0xc7, 0xc3, 0xc7, 0xc3, 0xc7, 0xc3, + 0x5f, 0x1f, 0x0f, 0xbf, 0xd7, 0x0e, 0xba, 0x5e, 0x20, 0x18, 0x58, 0x9f, 0x49, 0xc0, 0xa3, 0xc7, + 0xa3, 0xc7, 0xa3, 0xc7, 0xa3, 0xcf, 0x51, 0xdf, 0x83, 0x81, 0x17, 0x0f, 0xaf, 0x3f, 0x87, 0x89, + 0xa0, 0x3f, 0xff, 0x1a, 0x3f, 0x1b, 0x3f, 0x1b, 0x3f, 0xbb, 0x94, 0x7e, 0xb6, 0xd6, 0xf0, 0x23, + 0xbc, 0xeb, 0xf5, 0xf4, 0xae, 0xaf, 0xc3, 0xc1, 0x20, 0xb8, 0x0a, 0x05, 0xbd, 0xeb, 0x99, 0x84, + 0x82, 0xdd, 0x7d, 0x81, 0x77, 0x8d, 0x77, 0x8d, 0x77, 0xbd, 0xca, 0x0e, 0xc8, 0xdd, 0x7d, 0x11, + 0xb6, 0xc3, 0xe8, 0x26, 0xd4, 0x18, 0xec, 0x3d, 0x95, 0x24, 0x3b, 0xc6, 0x7b, 0x8b, 0x31, 0xde, + 0x86, 0xc6, 0x4d, 0xcb, 0xc8, 0xa9, 0x1b, 0x3b, 0x75, 0xa3, 0xa7, 0x6a, 0xfc, 0x84, 0xdd, 0x49, + 0xa9, 0x1b, 0x6d, 0x84, 0x8c, 0xe2, 0xfc, 0xb8, 0x1c, 0x9f, 0x35, 0xde, 0x35, 0x0e, 0x6a, 0x67, + 0x8d, 0xe3, 0xa6, 0xbc, 0x2a, 0x4f, 0x0f, 0xe7, 0x82, 0xd4, 0x17, 0xa5, 0xa0, 0x60, 0xd2, 0xc6, + 0x53, 0xd3, 0x88, 0xea, 0x1b, 0x53, 0x6d, 0xa3, 0x6a, 0x66, 0x5c, 0xcd, 0x8c, 0xac, 0x89, 0xb1, + 0x95, 0x35, 0xba, 0x0a, 0x51, 0xa2, 0x67, 0x2a, 0x77, 0x29, 0x2c, 0x9d, 0xb7, 0x61, 0x14, 0xa7, + 0x22, 0x45, 0x1d, 0x8f, 0x59, 0xc7, 0xdf, 0x98, 0xd8, 0xff, 0xf3, 0x0f, 0xc6, 0xc4, 0x7e, 0x79, + 0xb9, 0x4c, 0xec, 0x2f, 0xad, 0x2a, 0xe9, 0x17, 0x87, 0x38, 0xa5, 0x5d, 0xcc, 0xee, 0x37, 0x5d, + 0xbf, 0x64, 0x8a, 0xe9, 0xbc, 0xf5, 0xb6, 0x76, 0x56, 0xd7, 0xa3, 0x55, 0x99, 0x3c, 0x08, 0x15, + 0x84, 0x0a, 0x42, 0x05, 0xa1, 0x82, 0x50, 0x41, 0xa8, 0x20, 0x54, 0x10, 0x2a, 0x08, 0x15, 0x84, + 0x0a, 0x42, 0x05, 0xa1, 0x2a, 0x3e, 0xa1, 0x1a, 0x77, 0xd5, 0xc6, 0xbd, 0x34, 0xba, 0x8c, 0xda, + 0xe3, 0x1b, 0x6d, 0xbc, 0x30, 0x49, 0x7a, 0x89, 0xd7, 0xee, 0x75, 0x42, 0x3d, 0x9a, 0xf5, 0x3f, + 0x57, 0x01, 0xf9, 0x82, 0x7c, 0x41, 0xbe, 0x20, 0x5f, 0x90, 0xaf, 0xf9, 0x75, 0x95, 0x9d, 0x30, + 0x4e, 0xa3, 0xf4, 0x6b, 0x12, 0x5e, 0x6a, 0xde, 0x56, 0xa9, 0xe0, 0xf3, 0x54, 0x1a, 0xd9, 0xa3, + 0xed, 0x07, 0x03, 0xc5, 0x63, 0x3e, 0xdd, 0xd8, 0xfd, 0xf7, 0x2d, 0xbf, 0x7e, 0x72, 0x72, 0x7c, + 0xe2, 0x1f, 0x1c, 0xbf, 0xad, 0x6b, 0x9d, 0xf5, 0xb1, 0x9b, 0x39, 0x50, 0xe3, 0x9d, 0xba, 0xdc, + 0x73, 0x61, 0x7f, 0x8f, 0xea, 0xa7, 0xa7, 0xb5, 0xf7, 0x75, 0xff, 0x43, 0xbd, 0xf6, 0xb6, 0x7e, + 0x32, 0xd9, 0xea, 0x4a, 0x19, 0x69, 0x92, 0xd1, 0xfe, 0x7e, 0x38, 0x3e, 0x7c, 0xeb, 0x9f, 0x35, + 0x8e, 0x46, 0x7b, 0xfb, 0xef, 0x56, 0xe3, 0xa4, 0xfe, 0x96, 0xdd, 0xcd, 0x6f, 0x77, 0x0f, 0xea, + 0xb5, 0xd3, 0x3a, 0x1b, 0x9a, 0xdf, 0x86, 0x1e, 0xb7, 0xea, 0x4d, 0x7f, 0x6a, 0x13, 0x30, 0x06, + 0x39, 0xef, 0xee, 0xbb, 0x46, 0xb3, 0x71, 0x56, 0xf7, 0x4f, 0xcf, 0x6a, 0x67, 0x75, 0xff, 0xa8, + 0x76, 0xf0, 0xa1, 0xd1, 0x64, 0x97, 0x73, 0xdf, 0xe5, 0x49, 0x8a, 0x10, 0x2d, 0x96, 0xda, 0xdf, + 0x93, 0xe3, 0xf3, 0xb3, 0xba, 0x7f, 0x52, 0x7f, 0x77, 0x52, 0x3f, 0xfd, 0x60, 0xb6, 0xcd, 0x2a, + 0x92, 0x2e, 0x8a, 0x4e, 0xb4, 0x4a, 0x15, 0x02, 0x1b, 0x0c, 0x3f, 0xbb, 0x11, 0x05, 0x9b, 0x2e, + 0x84, 0x40, 0xd8, 0x93, 0x04, 0x11, 0x08, 0xcb, 0x55, 0x3b, 0x08, 0x84, 0x11, 0x08, 0xfb, 0xce, + 0x8e, 0x11, 0x08, 0xcb, 0x51, 0x96, 0x2b, 0x81, 0xb0, 0xd3, 0xf3, 0x7d, 0x62, 0x61, 0x6a, 0xf4, + 0x4c, 0x77, 0xb7, 0x2d, 0x77, 0xdd, 0x66, 0xf7, 0x97, 0xe9, 0x45, 0xfd, 0xa0, 0xde, 0xf8, 0x58, + 0xf7, 0xcf, 0x9b, 0xf5, 0x7f, 0xb7, 0xea, 0x07, 0x67, 0xf5, 0xb7, 0x33, 0x8e, 0x71, 0xdc, 0xaa, + 0x37, 0x4f, 0xeb, 0xcd, 0xb3, 0x8a, 0xfa, 0x0a, 0x6f, 0x5f, 0xf0, 0x1a, 0xe6, 0x54, 0xef, 0xf4, + 0xac, 0xb6, 0x7f, 0xd8, 0x38, 0xfd, 0xa0, 0x19, 0xcc, 0xe4, 0x4d, 0x3c, 0x72, 0x20, 0x0e, 0x8e, + 0x9b, 0xef, 0x1a, 0x27, 0x47, 0x06, 0x6f, 0x42, 0x55, 0xe2, 0x05, 0x11, 0x9c, 0x72, 0x9a, 0xd8, + 0xb5, 0xde, 0x6e, 0x13, 0x53, 0xba, 0xf6, 0x0a, 0xae, 0x6e, 0x32, 0xd7, 0x2c, 0x71, 0x84, 0xcf, + 0xac, 0xbc, 0xfb, 0xe7, 0xcd, 0xd3, 0xf3, 0x56, 0xeb, 0xf8, 0x64, 0xa4, 0xe8, 0x1f, 0xeb, 0x27, + 0xa7, 0x8d, 0xe3, 0xa6, 0xdf, 0x3c, 0x3f, 0xda, 0xaf, 0x9f, 0xe0, 0xa0, 0x29, 0x50, 0xf3, 0xda, + 0x5b, 0xbf, 0x55, 0xaf, 0x9f, 0xf8, 0xb5, 0x53, 0xb6, 0x5b, 0x67, 0xbb, 0xf7, 0xdf, 0xb7, 0xfc, + 0xc6, 0xdb, 0x7a, 0xf3, 0xac, 0xf1, 0xae, 0x81, 0x92, 0xeb, 0x98, 0x98, 0xda, 0xc1, 0x41, 0xbd, + 0x35, 0x72, 0x57, 0xea, 0xfe, 0xac, 0xaa, 0x85, 0x9d, 0xd7, 0x35, 0xee, 0x07, 0xb5, 0x56, 0x6d, + 0xbf, 0x71, 0xd8, 0x38, 0xfb, 0x9d, 0x9d, 0xd7, 0xdd, 0xf9, 0xe3, 0xd6, 0x59, 0xe3, 0xb8, 0x59, + 0x3b, 0xf4, 0x5b, 0xb5, 0x93, 0xda, 0x51, 0xfd, 0xcc, 0xc4, 0xea, 0xc0, 0xb8, 0x0b, 0xea, 0x1e, + 0xbb, 0xe0, 0xa0, 0x95, 0x7f, 0x97, 0x4d, 0x1c, 0xb1, 0xf5, 0xd8, 0x56, 0x2b, 0x87, 0x6b, 0x1d, + 0x4c, 0x83, 0xad, 0x63, 0xb5, 0x5e, 0xc6, 0xd7, 0xc2, 0x81, 0x5a, 0xaf, 0x1d, 0xb6, 0x74, 0x94, + 0xd6, 0xad, 0xf8, 0x92, 0x40, 0x9b, 0xf2, 0xf6, 0x37, 0x9a, 0x1f, 0x6b, 0x87, 0x8d, 0x79, 0x34, + 0xf9, 0xb0, 0xde, 0x7c, 0x7f, 0xf6, 0x01, 0x26, 0xc0, 0x01, 0x2e, 0x8a, 0x06, 0xad, 0x05, 0x18, + 0xb5, 0xea, 0x07, 0x8d, 0x77, 0x8d, 0x03, 0x76, 0x35, 0xc7, 0x5d, 0x5d, 0xec, 0xaa, 0x00, 0x79, + 0x94, 0xf7, 0xff, 0xa8, 0x76, 0xf8, 0xee, 0xf8, 0xe4, 0xa8, 0xfe, 0xd6, 0xaf, 0x9d, 0xfa, 0xad, + 0x9a, 0x09, 0xe8, 0xac, 0x5d, 0x00, 0x70, 0xe6, 0xcb, 0xd6, 0xce, 0xce, 0x4e, 0x1a, 0xfb, 0x23, + 0xd7, 0x4b, 0xb9, 0xcf, 0x65, 0x7d, 0xf7, 0xfe, 0xbc, 0x79, 0x52, 0x3f, 0x38, 0x7e, 0xdf, 0x6c, + 0xfc, 0xbf, 0xf5, 0xb7, 0xfe, 0xbf, 0xea, 0x87, 0x87, 0xfe, 0x3f, 0x9b, 0xc7, 0xff, 0x6a, 0xce, + 0x5f, 0x05, 0x2f, 0x41, 0xd5, 0xea, 0xcc, 0x4e, 0xc0, 0x61, 0xe3, 0x94, 0x0a, 0x4c, 0x45, 0x4f, + 0xb1, 0x59, 0xff, 0xf7, 0x99, 0xff, 0xe1, 0xb8, 0x85, 0xe6, 0x6b, 0xee, 0xfe, 0x1d, 0x7d, 0x1f, + 0x7b, 0xe8, 0x18, 0x7e, 0x7d, 0xbd, 0x3f, 0xfb, 0xd7, 0xf1, 0xc9, 0x3f, 0xfd, 0x77, 0x8d, 0xfa, + 0x21, 0x85, 0xc6, 0x8a, 0x1b, 0x7f, 0x7c, 0xd2, 0x78, 0xdf, 0x00, 0x68, 0x75, 0x81, 0xb6, 0x71, + 0x7a, 0xda, 0x68, 0xbe, 0xc7, 0xd1, 0x31, 0x37, 0xf7, 0xef, 0x0e, 0x6b, 0xef, 0x4f, 0xcd, 0xac, + 0x3d, 0x71, 0xbd, 0x82, 0xc6, 0x47, 0x0c, 0xf9, 0xf9, 0x3a, 0x54, 0x17, 0x5b, 0xf3, 0xf0, 0x75, + 0x08, 0x9b, 0x3a, 0xc3, 0xb7, 0xd7, 0xca, 0x5a, 0x18, 0xf1, 0xea, 0xf5, 0xc9, 0xb4, 0x58, 0xf2, + 0xe7, 0xf2, 0xef, 0xb2, 0x35, 0x4f, 0x5e, 0x27, 0x3d, 0x36, 0xe1, 0xc3, 0xeb, 0xb3, 0xc1, 0x76, + 0xbc, 0x77, 0x0d, 0x00, 0xcf, 0x09, 0x7e, 0xbb, 0x4e, 0xe6, 0xd8, 0x84, 0xc7, 0xae, 0xc9, 0xc8, + 0x51, 0xd2, 0xdf, 0xea, 0xdb, 0x7e, 0xdc, 0x6c, 0xd6, 0x0f, 0x46, 0x2c, 0xd0, 0x3f, 0xa9, 0xff, + 0xdf, 0xb8, 0xa5, 0x97, 0xb0, 0x98, 0x82, 0x39, 0x79, 0x7b, 0xd4, 0x68, 0x36, 0x4e, 0xcf, 0x4e, + 0x6a, 0x67, 0x8d, 0x8f, 0x75, 0xff, 0xa4, 0x7e, 0x5a, 0x27, 0xf7, 0xa7, 0x11, 0xf0, 0x38, 0xfb, + 0x50, 0x3f, 0xf1, 0xc7, 0x7d, 0xea, 0xef, 0xfd, 0x83, 0x0f, 0xb5, 0xe6, 0x7b, 0xa2, 0xc0, 0xfa, + 0xea, 0x7e, 0xfa, 0xe1, 0xfc, 0xec, 0xed, 0xf1, 0xbf, 0x9a, 0x6c, 0xbd, 0x8e, 0x81, 0xf7, 0x0f, + 0x8e, 0x0f, 0x0f, 0x1b, 0xa7, 0x13, 0x23, 0x7f, 0x7a, 0x7c, 0x78, 0x3e, 0xb2, 0xf7, 0x6c, 0xbe, + 0x82, 0xb9, 0x39, 0x3f, 0xf3, 0x8f, 0xdf, 0x8d, 0x37, 0xfd, 0xfc, 0xe4, 0xa0, 0x4e, 0x1b, 0xbb, + 0x06, 0x23, 0xaa, 0xfd, 0xdb, 0x6f, 0x9e, 0x1f, 0xf9, 0xad, 0x93, 0xfa, 0xbb, 0xc6, 0xbf, 0xeb, + 0xa7, 0xfe, 0x49, 0xbd, 0x76, 0xc0, 0x48, 0x2d, 0x95, 0xbd, 0x1f, 0x37, 0x09, 0xbe, 0xad, 0x67, + 0x00, 0x7b, 0x7e, 0x62, 0xb2, 0xeb, 0xa4, 0xfa, 0x8a, 0x4a, 0x01, 0x2d, 0xb9, 0xc8, 0x1a, 0x84, + 0x30, 0x4c, 0x39, 0xc7, 0x1a, 0x24, 0x53, 0x2d, 0xb9, 0xc5, 0xda, 0xa9, 0xaf, 0x3e, 0x87, 0x58, + 0x0f, 0x03, 0x6c, 0xcc, 0x15, 0xd6, 0xc0, 0x4c, 0x98, 0x71, 0x82, 0x75, 0x48, 0xff, 0x5b, 0xfb, + 0xfe, 0xe5, 0xdf, 0x63, 0x4b, 0x1f, 0x7f, 0x0d, 0x34, 0x78, 0xf1, 0xde, 0x40, 0xf2, 0x21, 0xca, + 0xfb, 0xbf, 0x5f, 0x73, 0xa0, 0x09, 0xfd, 0xc5, 0x1a, 0x67, 0xa1, 0x9a, 0xc7, 0x67, 0xfe, 0xe9, + 0xef, 0xcd, 0x83, 0x0f, 0x27, 0xc7, 0xe3, 0x92, 0x39, 0xb6, 0x5f, 0x57, 0xe9, 0xcf, 0x7e, 0x6f, + 0xd5, 0x09, 0xda, 0x00, 0x58, 0x45, 0x30, 0x98, 0x6b, 0x15, 0x12, 0xb3, 0x33, 0x8c, 0xeb, 0xa5, + 0xc4, 0xba, 0x06, 0x90, 0xfb, 0x16, 0x6d, 0x3f, 0x5d, 0xf7, 0xbe, 0xc5, 0x34, 0xba, 0x36, 0xbd, + 0x66, 0x71, 0x2c, 0x9f, 0xdb, 0x15, 0x9f, 0x24, 0x88, 0xdb, 0x15, 0x73, 0xd5, 0x0e, 0x6e, 0x57, + 0xe4, 0x76, 0xc5, 0xef, 0xec, 0x98, 0xfe, 0xed, 0x8a, 0x23, 0xbb, 0x98, 0x46, 0xed, 0xff, 0x0e, + 0x76, 0xb7, 0x15, 0x6f, 0x57, 0xfc, 0x4d, 0x41, 0xd4, 0x79, 0x1c, 0xa5, 0x83, 0xd1, 0x23, 0xc6, + 0x41, 0xdc, 0x1b, 0x84, 0xed, 0x5e, 0xdc, 0x19, 0x68, 0x3c, 0xe2, 0x49, 0x10, 0x5f, 0x85, 0x6a, + 0x01, 0x24, 0x3d, 0xb7, 0xb1, 0x72, 0x14, 0xc5, 0x6a, 0xd6, 0x52, 0x19, 0x53, 0x97, 0xc4, 0x8e, + 0xc3, 0x80, 0x06, 0x72, 0xdf, 0x25, 0x41, 0x7b, 0xe4, 0xaf, 0xbc, 0x8d, 0xae, 0x26, 0xda, 0xbb, + 0x59, 0x46, 0xae, 0x53, 0x39, 0x0a, 0xfe, 0x5a, 0x3b, 0x55, 0xda, 0xfa, 0x6d, 0x7b, 0x7b, 0xf7, + 0xf5, 0xf6, 0xf6, 0xe6, 0xeb, 0x57, 0xaf, 0x37, 0xf7, 0x76, 0x76, 0xb6, 0x76, 0x35, 0xee, 0x98, + 0x75, 0x46, 0xbb, 0x36, 0xca, 0x21, 0xe5, 0xa2, 0xa8, 0x6c, 0x6f, 0xa3, 0x40, 0x36, 0xa3, 0x52, + 0x8b, 0xe3, 0x5e, 0x3a, 0x26, 0x6e, 0xa2, 0x66, 0xa2, 0x32, 0x68, 0x7f, 0x09, 0xaf, 0x83, 0x7e, + 0x90, 0x7e, 0x19, 0x39, 0x0a, 0x2f, 0x7b, 0xfd, 0x30, 0x6e, 0x8f, 0xd9, 0x95, 0x17, 0x87, 0xe9, + 0x9f, 0xbd, 0xe4, 0xbf, 0x5e, 0x14, 0x0f, 0xd2, 0x20, 0x6e, 0x87, 0x2f, 0xef, 0xff, 0x60, 0xb0, + 0xf4, 0x93, 0x97, 0xfd, 0xa4, 0x97, 0xf6, 0xda, 0xbd, 0xee, 0x60, 0xf6, 0xdd, 0xcb, 0xcf, 0x57, + 0xfd, 0x97, 0x71, 0x18, 0x5d, 0x7d, 0xf9, 0xdc, 0x4b, 0x06, 0xb3, 0xef, 0x5e, 0x0e, 0xd2, 0x20, + 0x0d, 0x5f, 0x5e, 0x87, 0x83, 0x41, 0x70, 0x15, 0x0e, 0x5e, 0x26, 0x61, 0x3b, 0x8c, 0x6e, 0xc2, + 0x8e, 0xa0, 0x7b, 0x52, 0x19, 0xa4, 0xc9, 0xb0, 0x9d, 0xc6, 0x99, 0xdb, 0xd7, 0x9c, 0xac, 0xbd, + 0x91, 0x2d, 0xdd, 0x6f, 0x65, 0x0b, 0xf6, 0xf7, 0xaf, 0xfa, 0x7e, 0x33, 0x5b, 0xa6, 0x7f, 0x94, + 0x2d, 0xd0, 0x3f, 0x99, 0x2e, 0x70, 0xa3, 0x18, 0xba, 0x29, 0xa0, 0x97, 0x95, 0xc1, 0x84, 0xc9, + 0xc8, 0x68, 0xe3, 0xcc, 0x1f, 0x1f, 0x4b, 0x11, 0x3a, 0x55, 0xd3, 0xab, 0xcd, 0x85, 0x3e, 0x5e, + 0x3a, 0x2e, 0xa1, 0x11, 0x8f, 0xd0, 0x8b, 0x43, 0x68, 0xc5, 0x1f, 0xd4, 0xe3, 0x0e, 0xea, 0xf1, + 0x06, 0xd5, 0x38, 0x43, 0xb1, 0x70, 0xf4, 0x6d, 0x94, 0x08, 0x1f, 0x97, 0xe3, 0xb3, 0xc6, 0xbb, + 0xc6, 0x41, 0x6d, 0x5c, 0x2a, 0xa7, 0x16, 0xde, 0x5d, 0x90, 0x4a, 0x50, 0xd7, 0x35, 0x23, 0xaa, + 0x6f, 0x4c, 0xb5, 0x8d, 0xaa, 0x99, 0x71, 0x35, 0x33, 0xb2, 0x26, 0xc6, 0x56, 0x87, 0xd6, 0x95, + 0x2f, 0xa8, 0x3b, 0x8c, 0xe2, 0xb4, 0x74, 0xf1, 0x5c, 0xe2, 0xaa, 0x25, 0x0a, 0x86, 0x11, 0x57, + 0x95, 0x51, 0x25, 0xe2, 0xaa, 0xc4, 0x55, 0x0b, 0x29, 0xe5, 0x82, 0x2a, 0x9a, 0x25, 0xb5, 0x9a, + 0x5c, 0x90, 0xa3, 0x47, 0xab, 0x32, 0x79, 0x10, 0x2a, 0x08, 0x15, 0x84, 0x0a, 0x42, 0x05, 0xa1, + 0x82, 0x50, 0x41, 0xa8, 0x20, 0x54, 0x10, 0x2a, 0x08, 0x15, 0x84, 0x0a, 0x42, 0x55, 0x7c, 0x42, + 0xb5, 0xdc, 0x16, 0x10, 0x26, 0x49, 0x2f, 0xf1, 0xda, 0xbd, 0x8e, 0x69, 0x73, 0xc2, 0x9d, 0x55, + 0x40, 0xbe, 0x20, 0x5f, 0x90, 0x2f, 0xc8, 0x17, 0xe4, 0x6b, 0x76, 0xde, 0xa2, 0x4e, 0x18, 0xa7, + 0x51, 0xfa, 0x35, 0x09, 0x2f, 0x15, 0x19, 0x98, 0x86, 0xcf, 0x53, 0x69, 0x64, 0x8f, 0xb6, 0x1f, + 0x0c, 0x14, 0x8f, 0xf9, 0xac, 0xf7, 0xf3, 0x7d, 0x6b, 0x32, 0xcd, 0xdd, 0x57, 0x9c, 0xb4, 0x61, + 0x31, 0x61, 0xc3, 0x8d, 0x89, 0x26, 0x0c, 0xce, 0xcf, 0x79, 0x7f, 0x3f, 0x1c, 0x1f, 0xbe, 0xf5, + 0xcf, 0x1a, 0x47, 0xa3, 0xbd, 0xfd, 0x77, 0xab, 0xc1, 0x3c, 0x9e, 0x5c, 0x77, 0x77, 0x7c, 0x2d, + 0x01, 0x1b, 0x9a, 0xdf, 0x86, 0x1e, 0xb7, 0xea, 0xcd, 0x59, 0xaf, 0x3d, 0xc6, 0x20, 0xe7, 0xdd, + 0x7d, 0xd7, 0x68, 0x36, 0xce, 0xea, 0xfe, 0xe9, 0x59, 0xed, 0xac, 0xee, 0x1f, 0xd5, 0x0e, 0x3e, + 0x34, 0x9a, 0xec, 0x72, 0xee, 0xbb, 0x3c, 0x49, 0x11, 0xa2, 0xc5, 0x52, 0xfb, 0x7b, 0x72, 0x7c, + 0x7e, 0x56, 0xf7, 0x4f, 0xea, 0xef, 0x4e, 0xea, 0xa7, 0x1f, 0xcc, 0xb6, 0x99, 0xc9, 0x1c, 0xa6, + 0x9f, 0x6e, 0x11, 0x02, 0x1b, 0x0c, 0x3f, 0xbb, 0x11, 0x05, 0x9b, 0x2e, 0x84, 0x40, 0xd8, 0x93, + 0x04, 0x11, 0x08, 0xcb, 0x55, 0x3b, 0x08, 0x84, 0x11, 0x08, 0xfb, 0xce, 0x8e, 0x11, 0x08, 0xcb, + 0x51, 0x96, 0x2b, 0x81, 0x30, 0xdd, 0xa9, 0xb3, 0x6b, 0x14, 0x0b, 0x7b, 0x90, 0x9e, 0x31, 0xe3, + 0x57, 0x9b, 0x5e, 0xd4, 0x0f, 0xea, 0x8d, 0x8f, 0x75, 0xff, 0xbc, 0x59, 0xff, 0x77, 0x6b, 0x7c, + 0xcd, 0xc8, 0x8c, 0x63, 0x1c, 0xb7, 0xea, 0xcd, 0xd3, 0x7a, 0x93, 0xbb, 0xf8, 0x6c, 0x5f, 0x43, + 0xfd, 0xf4, 0xac, 0xb6, 0x7f, 0xd8, 0x38, 0xe5, 0xda, 0x26, 0x17, 0x0e, 0xc4, 0x78, 0xd2, 0xfb, + 0xc9, 0x11, 0x53, 0x81, 0x89, 0xe0, 0x14, 0xd2, 0xc4, 0xae, 0xf5, 0x76, 0x9b, 0x98, 0xd2, 0xb5, + 0x57, 0x70, 0x75, 0x93, 0xb9, 0x66, 0x89, 0x23, 0x7c, 0x66, 0xe5, 0xdd, 0x3f, 0x6f, 0x9e, 0x9e, + 0xb7, 0x5a, 0xc7, 0x27, 0x23, 0x45, 0xff, 0x58, 0x3f, 0x19, 0xdf, 0x0f, 0xd5, 0x3c, 0x3f, 0xda, + 0xaf, 0x9f, 0xe0, 0xa0, 0x29, 0x50, 0xf3, 0xda, 0x5b, 0x7f, 0x7c, 0xef, 0x4e, 0x8d, 0x2b, 0x64, + 0x95, 0xb6, 0x7b, 0xff, 0x7d, 0xcb, 0x6f, 0xbc, 0xad, 0x37, 0xcf, 0x1a, 0xef, 0x1a, 0x28, 0xb9, + 0x8e, 0x89, 0xa9, 0x1d, 0x1c, 0xd4, 0x5b, 0x23, 0x77, 0xa5, 0xee, 0xcf, 0xaa, 0x5a, 0xd8, 0x79, + 0x5d, 0xe3, 0x7e, 0x50, 0x6b, 0xd5, 0xf6, 0x1b, 0x87, 0x8d, 0xb3, 0xdf, 0xd9, 0x79, 0xdd, 0x9d, + 0x3f, 0x6e, 0x9d, 0x35, 0x8e, 0x9b, 0xb5, 0x43, 0xbf, 0x55, 0x3b, 0xa9, 0x1d, 0xd5, 0xcf, 0x4c, + 0xac, 0x0e, 0x8c, 0xbb, 0xa0, 0xee, 0xb1, 0x0b, 0x0e, 0xda, 0x7a, 0x5c, 0x14, 0xa3, 0xee, 0x88, + 0xad, 0xc7, 0xb6, 0x5a, 0x39, 0x5c, 0xeb, 0x60, 0x1a, 0x6c, 0x1d, 0xab, 0xf5, 0x32, 0xbe, 0x16, + 0x0e, 0xd4, 0x7a, 0xed, 0xb0, 0xa5, 0xa3, 0xb4, 0x6e, 0xc5, 0x97, 0x04, 0xda, 0x94, 0xb7, 0xbf, + 0xd1, 0xfc, 0x58, 0x3b, 0x6c, 0x38, 0x70, 0x09, 0x2d, 0x4c, 0xa0, 0xa0, 0x07, 0xd8, 0x5a, 0x83, + 0xd6, 0x02, 0x8c, 0x5a, 0xf5, 0x83, 0xc6, 0xbb, 0xc6, 0x01, 0xbb, 0x9a, 0xe3, 0xae, 0x2e, 0x76, + 0x55, 0x80, 0x3c, 0xca, 0xfb, 0x7f, 0x54, 0x3b, 0x7c, 0x77, 0x7c, 0x72, 0x54, 0x7f, 0xeb, 0xd7, + 0x4e, 0xfd, 0x56, 0x8d, 0x9b, 0xcf, 0x35, 0x36, 0x7d, 0xe6, 0xcb, 0xd6, 0xce, 0xce, 0x4e, 0x1a, + 0xfb, 0x23, 0xd7, 0x4b, 0xb9, 0xcf, 0x65, 0x7d, 0xf7, 0xfe, 0xbc, 0x79, 0x52, 0x3f, 0x38, 0x7e, + 0x3f, 0xbe, 0x4d, 0xd9, 0xff, 0x57, 0xfd, 0xf0, 0xd0, 0xff, 0x67, 0xf3, 0xf8, 0x5f, 0xcd, 0xf9, + 0xab, 0xe0, 0x25, 0xa8, 0x5a, 0x9d, 0xd9, 0x09, 0x38, 0x6c, 0x9c, 0x52, 0x81, 0xa9, 0xe8, 0x29, + 0x36, 0xeb, 0xff, 0x3e, 0xf3, 0x3f, 0x1c, 0xb7, 0xd0, 0x7c, 0xcd, 0xdd, 0xbf, 0xa3, 0xef, 0x63, + 0x0f, 0x1d, 0xc3, 0xaf, 0xaf, 0xf7, 0x67, 0xff, 0x3a, 0x3e, 0xf9, 0xa7, 0xff, 0xae, 0x51, 0x3f, + 0xa4, 0xd0, 0x58, 0x71, 0xe3, 0x8f, 0x4f, 0x1a, 0xef, 0x1b, 0x00, 0xad, 0x2e, 0xd0, 0x36, 0x4e, + 0x4f, 0x1b, 0xcd, 0xf7, 0x38, 0x3a, 0xe6, 0xe6, 0xfe, 0xdd, 0x61, 0xed, 0xfd, 0xa9, 0x99, 0xb5, + 0x27, 0xae, 0x57, 0xd0, 0xf8, 0x88, 0x21, 0x3f, 0x5f, 0x87, 0xea, 0x62, 0x6b, 0x1e, 0xbe, 0x0e, + 0x61, 0x53, 0x67, 0xf8, 0xf6, 0x5a, 0x59, 0x0b, 0x23, 0x5e, 0xbd, 0x3e, 0x99, 0x16, 0x4b, 0xfe, + 0x5c, 0xfe, 0x5d, 0xb6, 0xe6, 0xc9, 0xeb, 0xa4, 0xc7, 0x26, 0x7c, 0x78, 0x7d, 0x36, 0xd8, 0x8e, + 0xf7, 0xae, 0x01, 0xe0, 0x39, 0xc1, 0x6f, 0xd7, 0xc9, 0x1c, 0x9b, 0xf0, 0xd8, 0x35, 0x19, 0x39, + 0x4a, 0xfa, 0x5b, 0x7d, 0xdb, 0x8f, 0x9b, 0xcd, 0xfa, 0xc1, 0x88, 0x05, 0xfa, 0x27, 0xf5, 0xff, + 0x1b, 0xb7, 0xf4, 0x12, 0x16, 0x53, 0x30, 0x27, 0x6f, 0x8f, 0x1a, 0xcd, 0xc6, 0xe9, 0xd9, 0x49, + 0xed, 0xac, 0xf1, 0xb1, 0xee, 0x9f, 0xd4, 0x4f, 0xeb, 0xe4, 0xfe, 0x34, 0x02, 0x1e, 0x67, 0x1f, + 0xea, 0x27, 0xfe, 0xb8, 0x4f, 0xfd, 0xbd, 0x7f, 0xf0, 0xa1, 0xd6, 0x7c, 0x4f, 0x14, 0x58, 0x5f, + 0xdd, 0x4f, 0x3f, 0x9c, 0x9f, 0xbd, 0x3d, 0xfe, 0x57, 0x93, 0xad, 0xd7, 0x31, 0xf0, 0xfe, 0xc1, + 0xf1, 0xe1, 0x61, 0xe3, 0x74, 0x62, 0xe4, 0x4f, 0x8f, 0x0f, 0xcf, 0x47, 0xf6, 0x9e, 0xcd, 0x57, + 0x30, 0x37, 0xe7, 0x67, 0xfe, 0xf1, 0xbb, 0xf1, 0xa6, 0x9f, 0x9f, 0x1c, 0xd4, 0x69, 0x63, 0xd7, + 0x60, 0x44, 0xb5, 0x7f, 0xfb, 0xcd, 0xf3, 0x23, 0xbf, 0x75, 0x52, 0x7f, 0xd7, 0xf8, 0x77, 0xfd, + 0xd4, 0x3f, 0xa9, 0xd7, 0x0e, 0x18, 0xa9, 0xa5, 0xb2, 0xf7, 0xe3, 0x26, 0xc1, 0xb7, 0xf5, 0x0c, + 0x60, 0xcf, 0x4f, 0x4c, 0x76, 0x9d, 0x54, 0x5f, 0x51, 0x29, 0xa0, 0x25, 0x17, 0x59, 0x83, 0x10, + 0x86, 0x29, 0xe7, 0x58, 0x83, 0x64, 0xaa, 0x25, 0xb7, 0x58, 0x3b, 0xf5, 0xd5, 0xe7, 0x10, 0xeb, + 0x61, 0x80, 0x8d, 0xb9, 0xc2, 0x1a, 0x98, 0x09, 0x33, 0x4e, 0xb0, 0x0e, 0xe9, 0x7f, 0x6b, 0xdf, + 0xbf, 0xfc, 0x7b, 0x6c, 0xe9, 0xe3, 0xaf, 0x81, 0x06, 0x2f, 0xde, 0x1b, 0x48, 0x3e, 0x44, 0x79, + 0xff, 0xf7, 0x6b, 0x0e, 0x34, 0xa1, 0xbf, 0x58, 0xe3, 0x2c, 0x54, 0xf3, 0xf8, 0xcc, 0x3f, 0xfd, + 0xbd, 0x79, 0xf0, 0xe1, 0xe4, 0x78, 0x5c, 0x32, 0xc7, 0xf6, 0xeb, 0x2a, 0xfd, 0xd9, 0xef, 0xad, + 0x3a, 0x41, 0x1b, 0x00, 0xab, 0x08, 0x06, 0x73, 0xad, 0x42, 0x62, 0x76, 0x86, 0x71, 0xbd, 0x94, + 0x58, 0xd7, 0x00, 0x72, 0xdf, 0xa2, 0xed, 0xa7, 0xeb, 0xde, 0xb7, 0x98, 0x46, 0xd7, 0xa6, 0xd7, + 0x2c, 0x8e, 0xe5, 0x73, 0xbb, 0xe2, 0x93, 0x04, 0x71, 0xbb, 0x62, 0xae, 0xda, 0xc1, 0xed, 0x8a, + 0xdc, 0xae, 0xf8, 0x9d, 0x1d, 0xd3, 0xbf, 0x5d, 0x71, 0x64, 0x17, 0xd3, 0xa8, 0xfd, 0xdf, 0xc1, + 0xee, 0xb6, 0xe2, 0xed, 0x8a, 0xbf, 0x29, 0x88, 0x3a, 0x8f, 0xa3, 0x74, 0x30, 0x7a, 0xc4, 0x38, + 0x88, 0x7b, 0x83, 0xb0, 0xdd, 0x8b, 0x3b, 0x03, 0x8d, 0x47, 0x3c, 0x09, 0xe2, 0xab, 0x50, 0x2d, + 0x80, 0xa4, 0xe7, 0x36, 0x56, 0x8e, 0xa2, 0x58, 0xcd, 0x5a, 0x2a, 0x63, 0xea, 0x92, 0xd8, 0x71, + 0x18, 0xd0, 0x40, 0xee, 0xbb, 0x24, 0x68, 0x8f, 0xfc, 0x95, 0xb7, 0xd1, 0xd5, 0x44, 0x7b, 0x37, + 0xcb, 0xc8, 0x75, 0x2a, 0x47, 0xc1, 0x5f, 0x6b, 0xa7, 0x4a, 0x5b, 0xbf, 0x6d, 0x6f, 0xef, 0xbe, + 0xde, 0xde, 0xde, 0x7c, 0xfd, 0xea, 0xf5, 0xe6, 0xde, 0xce, 0xce, 0xd6, 0xae, 0xc6, 0x1d, 0xb3, + 0xce, 0x68, 0xd7, 0x46, 0x39, 0xa4, 0x5c, 0x14, 0x95, 0xed, 0x6d, 0x14, 0xc8, 0x66, 0x54, 0x6a, + 0x71, 0xdc, 0x4b, 0xc7, 0xc4, 0x4d, 0xd4, 0x4c, 0x54, 0x06, 0xed, 0x2f, 0xe1, 0x75, 0xd0, 0x0f, + 0xd2, 0x2f, 0x23, 0x47, 0xe1, 0x65, 0xaf, 0x1f, 0xc6, 0xed, 0x31, 0xbb, 0xf2, 0xe2, 0x30, 0xfd, + 0xb3, 0x97, 0xfc, 0xd7, 0x8b, 0xe2, 0x41, 0x1a, 0xc4, 0xed, 0xf0, 0xe5, 0xfd, 0x1f, 0x0c, 0x96, + 0x7e, 0xf2, 0xb2, 0x9f, 0xf4, 0xd2, 0x5e, 0xbb, 0xd7, 0x1d, 0xcc, 0xbe, 0x7b, 0xf9, 0xf9, 0xaa, + 0xff, 0x32, 0x0e, 0xa3, 0xab, 0x2f, 0x9f, 0x7b, 0xc9, 0x60, 0xf6, 0xdd, 0xcb, 0x41, 0x1a, 0xa4, + 0xe1, 0xcb, 0xeb, 0x70, 0x30, 0x08, 0xae, 0xc2, 0xc1, 0xcb, 0xc1, 0xc8, 0x49, 0x16, 0xa4, 0xe3, + 0x83, 0x34, 0x19, 0xb6, 0xd3, 0x38, 0x73, 0xf9, 0x9a, 0x93, 0x75, 0x37, 0xb2, 0x65, 0xfb, 0xad, + 0x6c, 0xb1, 0xfe, 0xfe, 0x55, 0xdf, 0x6f, 0x66, 0x4b, 0xf4, 0x8f, 0xb2, 0xc5, 0xf9, 0xa7, 0xa3, + 0xc5, 0x6d, 0x14, 0x43, 0x27, 0xf3, 0xfd, 0xc4, 0x9c, 0xb5, 0x5b, 0x5a, 0xab, 0x1d, 0xd1, 0x66, + 0x01, 0x45, 0x5e, 0x49, 0x81, 0xf3, 0xd5, 0xdd, 0xfc, 0x34, 0x2c, 0x47, 0xed, 0xaa, 0x4c, 0x5f, + 0x85, 0x17, 0x74, 0x3a, 0x49, 0x38, 0x18, 0xe4, 0xae, 0x5f, 0x33, 0xbe, 0xb8, 0x24, 0x29, 0xe7, + 0x33, 0x22, 0xe3, 0xa4, 0x89, 0xc5, 0xcc, 0x24, 0x63, 0x64, 0xf2, 0x31, 0x31, 0xe9, 0x18, 0x98, + 0x5a, 0xcc, 0x4b, 0x2d, 0xc6, 0xa5, 0x12, 0xd3, 0x72, 0x1b, 0xc5, 0xc4, 0x62, 0x54, 0x33, 0x7d, + 0x8f, 0xfa, 0x42, 0xd6, 0xe5, 0xae, 0x85, 0xd9, 0xda, 0x13, 0xf8, 0xec, 0x6c, 0x6f, 0x64, 0x42, + 0x3f, 0x82, 0x7e, 0xf0, 0x7c, 0xe7, 0x6f, 0xb6, 0x05, 0xf7, 0x7e, 0xe9, 0x1d, 0x08, 0xc6, 0x01, + 0x2b, 0xad, 0x20, 0x4d, 0xc3, 0x24, 0x16, 0x8f, 0xc4, 0x55, 0xfe, 0xf3, 0xcb, 0x2f, 0x9f, 0x36, + 0xbd, 0xbd, 0x8b, 0x6f, 0x9f, 0xb6, 0xbc, 0xbd, 0x8b, 0xc9, 0xb7, 0x5b, 0xe3, 0xff, 0x4c, 0xbe, + 0xaf, 0x7e, 0xda, 0xf4, 0xb6, 0xa7, 0xdf, 0xef, 0x7c, 0xda, 0xf4, 0x76, 0x2e, 0x9e, 0xff, 0xf1, + 0xc7, 0xaf, 0xcf, 0xff, 0x7e, 0x75, 0xfb, 0xf4, 0x3f, 0xfc, 0x87, 0x5c, 0x08, 0xfd, 0xa2, 0x48, + 0x14, 0x51, 0xe7, 0x30, 0xec, 0x72, 0x18, 0x7e, 0xee, 0x30, 0x04, 0xde, 0x65, 0xcd, 0x7b, 0x77, + 0xf1, 0xf7, 0xd6, 0x8b, 0xed, 0xdb, 0x37, 0xcf, 0xff, 0x7e, 0x7d, 0x7b, 0xff, 0x87, 0xdf, 0x1e, + 0xfa, 0xb5, 0xad, 0x17, 0xaf, 0x6f, 0xdf, 0x3c, 0xf2, 0x2f, 0xbb, 0xb7, 0x6f, 0x7e, 0xf0, 0x33, + 0x76, 0x6e, 0x7f, 0x59, 0xfa, 0xd5, 0xd1, 0xcf, 0xab, 0x8f, 0xfd, 0xc1, 0xf6, 0x23, 0x7f, 0xf0, + 0xea, 0xb1, 0x3f, 0x78, 0xf5, 0xc8, 0x1f, 0x3c, 0xba, 0xa4, 0xea, 0x23, 0x7f, 0xb0, 0x73, 0xfb, + 0x6d, 0xe9, 0xf7, 0x7f, 0x79, 0xf8, 0x57, 0x77, 0x6f, 0x9f, 0x7f, 0x7b, 0xec, 0xdf, 0x5e, 0xdf, + 0x7e, 0x7b, 0xf3, 0xbc, 0x80, 0xa6, 0x61, 0xc3, 0xed, 0x75, 0xba, 0xc9, 0xf5, 0xfa, 0x61, 0x98, + 0x78, 0x81, 0x20, 0xc5, 0x9b, 0x0a, 0x80, 0xd9, 0xc1, 0xec, 0x60, 0x76, 0x30, 0xbb, 0x1c, 0xf5, + 0x3d, 0x18, 0x78, 0xf1, 0xf0, 0xfa, 0x73, 0x98, 0x08, 0x12, 0xbb, 0xd7, 0x02, 0x1f, 0x2d, 0x9b, + 0xd3, 0x17, 0xf4, 0x65, 0x35, 0x72, 0xf6, 0x5a, 0x75, 0x6f, 0x4a, 0x39, 0x79, 0xcd, 0x2c, 0xa9, + 0x64, 0x0d, 0xa6, 0x46, 0x8e, 0x5d, 0xfb, 0xd5, 0x6f, 0x57, 0xf7, 0xb6, 0xf7, 0x76, 0x5f, 0x57, + 0xf7, 0x76, 0x4a, 0xa4, 0x03, 0xf8, 0xd6, 0x6e, 0xf9, 0xd6, 0x57, 0x49, 0x6f, 0xd8, 0x17, 0x76, + 0xaf, 0x27, 0x32, 0xf0, 0xb0, 0xf1, 0xb0, 0xf1, 0xb0, 0xf1, 0xb0, 0x73, 0xd4, 0xf7, 0x6e, 0x18, + 0x5c, 0x26, 0xe1, 0xa5, 0x64, 0xe2, 0x44, 0xc2, 0xc1, 0x6e, 0x65, 0x45, 0x0b, 0xbf, 0xfe, 0xfa, + 0x72, 0xf6, 0x7f, 0x73, 0x43, 0x39, 0xb8, 0xf3, 0xfd, 0x9d, 0x6f, 0xbd, 0x71, 0x41, 0xc0, 0xba, + 0xc0, 0x52, 0x2a, 0xa1, 0x3b, 0x8b, 0xa8, 0x34, 0x16, 0x01, 0x28, 0x01, 0x4a, 0x80, 0x12, 0xa0, + 0x54, 0x00, 0xe3, 0xb2, 0x00, 0x4b, 0xdb, 0x02, 0x9f, 0x5d, 0x8f, 0x87, 0xd7, 0xa3, 0xad, 0xb9, + 0x5d, 0x03, 0x90, 0xf9, 0xff, 0x86, 0xe1, 0x64, 0xf2, 0x89, 0x10, 0xc2, 0x64, 0x9f, 0x2f, 0x03, + 0x2f, 0x5b, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0xb8, 0x08, 0x2f, 0x6f, 0xa3, 0x44, 0x46, 0xdd, 0xa3, + 0xb8, 0x3f, 0x4c, 0xe5, 0x74, 0x71, 0x56, 0x06, 0x32, 0x16, 0x23, 0xa4, 0x1e, 0xb2, 0xf1, 0x53, + 0xf1, 0x56, 0x71, 0x8d, 0x16, 0x71, 0xbd, 0xd6, 0x70, 0xad, 0x96, 0x70, 0xf5, 0x56, 0x70, 0xf5, + 0x16, 0x70, 0xd5, 0xd6, 0xef, 0x62, 0xb5, 0x36, 0x89, 0xb7, 0x78, 0xcf, 0xce, 0xcb, 0x30, 0x8a, + 0xd3, 0x57, 0x55, 0x85, 0xca, 0xb5, 0xd7, 0x82, 0x22, 0x74, 0xba, 0xa9, 0x15, 0x1a, 0xee, 0x35, + 0xbb, 0xa7, 0x95, 0x5b, 0x5d, 0xb5, 0xbb, 0xa5, 0x2d, 0xfa, 0x58, 0x15, 0xba, 0xa3, 0x55, 0xbb, + 0xa2, 0xad, 0x54, 0x44, 0x2b, 0x83, 0x6b, 0xaa, 0x2b, 0x05, 0xed, 0x11, 0x2e, 0x4a, 0x95, 0xa7, + 0xc0, 0x59, 0xac, 0xf4, 0x86, 0xa9, 0x0a, 0x9b, 0xc8, 0xe4, 0x40, 0x27, 0xa0, 0x13, 0xd0, 0x09, + 0xe8, 0x04, 0x74, 0x02, 0x3a, 0x01, 0x9d, 0x80, 0x4e, 0x40, 0x27, 0xa0, 0x13, 0xd0, 0x09, 0x23, + 0x3a, 0xc1, 0xd0, 0x18, 0xb3, 0xa1, 0x31, 0x22, 0x49, 0xe1, 0x67, 0x3f, 0x3b, 0x32, 0xe6, 0xff, + 0x99, 0xac, 0x66, 0x0d, 0x92, 0xfd, 0x49, 0x78, 0xdd, 0xbb, 0x09, 0xbd, 0x7e, 0x12, 0xdd, 0x04, + 0x69, 0x28, 0xda, 0x4e, 0xb8, 0x2c, 0x8a, 0x0a, 0x33, 0x4a, 0x00, 0xcc, 0xc9, 0x2c, 0x25, 0x00, + 0x7a, 0x18, 0x26, 0x5f, 0x61, 0xb6, 0x64, 0x64, 0xbc, 0x5e, 0x7f, 0x8c, 0x99, 0x82, 0x05, 0x67, + 0x02, 0x2e, 0x67, 0xa5, 0xd1, 0x09, 0xe3, 0x34, 0x4a, 0xbf, 0xee, 0x07, 0x83, 0x50, 0x3e, 0x18, + 0x79, 0x52, 0x3f, 0x3a, 0xfe, 0x58, 0xf7, 0x5b, 0x27, 0x8d, 0x8f, 0xb5, 0xb3, 0xba, 0x5f, 0x3b, + 0xf5, 0x8f, 0x5b, 0xe3, 0x4b, 0x0f, 0x85, 0x4e, 0x82, 0xc2, 0xe5, 0x5a, 0x4a, 0x17, 0x0c, 0xdc, + 0xd9, 0xb2, 0x6c, 0x13, 0x6b, 0x87, 0x87, 0x95, 0x22, 0xf6, 0x09, 0x5a, 0x6c, 0x58, 0xeb, 0xb0, + 0x76, 0x20, 0xbd, 0x63, 0x1b, 0xc5, 0xa0, 0x34, 0xeb, 0x50, 0x59, 0x9a, 0xf4, 0x86, 0x69, 0xe8, + 0x5d, 0x76, 0x83, 0xbe, 0xd7, 0x09, 0xae, 0xfb, 0x51, 0x7c, 0x25, 0xe8, 0x6d, 0x2e, 0xcb, 0xca, + 0xbb, 0x9e, 0x2d, 0xbc, 0x0c, 0x86, 0xdd, 0x31, 0x9a, 0x5f, 0x06, 0xdd, 0x01, 0x0d, 0x13, 0xb8, + 0xb3, 0xb8, 0xb3, 0xb8, 0xb3, 0xb9, 0xea, 0xfb, 0xe7, 0x5e, 0xaf, 0x1b, 0x06, 0xa2, 0xde, 0xeb, + 0xd6, 0x1a, 0x00, 0xcf, 0x20, 0x8c, 0x3b, 0x5e, 0xbb, 0x77, 0x7d, 0x3d, 0x8c, 0xa3, 0xf4, 0xab, + 0x1c, 0xe8, 0xdc, 0x93, 0x23, 0x07, 0x38, 0xcd, 0xe3, 0x66, 0x1d, 0xbc, 0x01, 0x6f, 0xc0, 0x1b, + 0xf0, 0x26, 0x4f, 0x7d, 0x9f, 0xd9, 0x2e, 0xba, 0xf4, 0x9c, 0x87, 0xb4, 0xc1, 0x20, 0xea, 0xc5, + 0xde, 0x38, 0x7d, 0x22, 0x89, 0x68, 0x77, 0xc5, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0xe4, + 0xa8, 0xef, 0x61, 0x3c, 0xbc, 0x0e, 0x93, 0x40, 0x3a, 0x46, 0x0f, 0xdc, 0xac, 0x08, 0x37, 0xc3, + 0x7e, 0xbf, 0x97, 0xa4, 0x61, 0xc7, 0x6b, 0x07, 0xfd, 0xe0, 0x73, 0xd4, 0x8d, 0xd2, 0x48, 0xb2, + 0x49, 0xfc, 0x11, 0x79, 0x00, 0x10, 0x00, 0x04, 0x00, 0x01, 0x40, 0x39, 0xea, 0x7b, 0x94, 0x65, + 0x5a, 0x85, 0x87, 0x65, 0x15, 0x3f, 0x49, 0xbc, 0xff, 0xbe, 0xe5, 0x1f, 0xd4, 0x5a, 0xb5, 0xfd, + 0xc6, 0x61, 0xe3, 0xec, 0x77, 0x52, 0xc3, 0xdf, 0xdb, 0xaf, 0xf7, 0x27, 0xb5, 0x83, 0xfa, 0xbb, + 0xf3, 0x43, 0xff, 0xa4, 0x7e, 0x7a, 0x56, 0x3b, 0x39, 0x23, 0x2b, 0xfc, 0xf8, 0x5e, 0xd5, 0x4e, + 0x9b, 0xaf, 0xaa, 0x6c, 0xd0, 0xe3, 0x1b, 0x54, 0xff, 0xf7, 0x59, 0xbd, 0xf9, 0xb6, 0xfe, 0xd6, + 0x6f, 0xd6, 0xff, 0x7d, 0xf6, 0xe1, 0xb8, 0xe5, 0xd7, 0x9b, 0x07, 0xc7, 0x6f, 0x1b, 0xcd, 0xf7, + 0x6c, 0xda, 0xe3, 0x9b, 0x76, 0xd4, 0xda, 0x7f, 0xdf, 0x62, 0x83, 0xfe, 0xc7, 0xb1, 0x7b, 0xfb, + 0xd6, 0x6f, 0xd5, 0xce, 0x3e, 0x9c, 0xb2, 0x49, 0x8f, 0x6f, 0xd2, 0xc9, 0xf1, 0xf9, 0x59, 0xdd, + 0x3f, 0xa9, 0xbf, 0x3b, 0xa9, 0x9f, 0x7e, 0xa0, 0x50, 0xc5, 0x6d, 0x7f, 0xf1, 0x30, 0x1a, 0xa4, + 0xb5, 0x34, 0x15, 0x9a, 0x34, 0x74, 0x14, 0xc5, 0xf5, 0x6e, 0x38, 0xf2, 0xc8, 0x47, 0x1e, 0x4a, + 0x3c, 0xec, 0x76, 0x05, 0xbc, 0xba, 0xa3, 0xe0, 0x2f, 0x79, 0x21, 0xc7, 0x49, 0x27, 0x4c, 0xc2, + 0xce, 0xfe, 0xd7, 0x4c, 0x84, 0xab, 0x21, 0x8c, 0x0d, 0x87, 0x94, 0x4c, 0xaa, 0x05, 0xc3, 0xb6, + 0xf5, 0x22, 0x1f, 0x8b, 0xb6, 0xfa, 0x8b, 0xca, 0xe1, 0x25, 0x55, 0xd2, 0xe8, 0x3a, 0x4c, 0xf2, + 0x8b, 0x4a, 0xcd, 0x20, 0x20, 0xfb, 0xdc, 0x9c, 0xd4, 0x28, 0xdf, 0x51, 0x85, 0xb9, 0x47, 0x9b, + 0x24, 0xa2, 0x4c, 0x72, 0xd1, 0x25, 0xa9, 0xa8, 0x92, 0x78, 0x34, 0x49, 0x3c, 0x8a, 0x24, 0x1a, + 0x3d, 0x72, 0xcb, 0x30, 0xe7, 0x3d, 0x5a, 0xb0, 0xd2, 0x9e, 0x9e, 0x29, 0xa1, 0xf0, 0x76, 0xf6, + 0xf9, 0xcc, 0x40, 0x25, 0x9c, 0x6d, 0x66, 0x80, 0xd4, 0x0c, 0x91, 0x8a, 0x41, 0x2a, 0x06, 0x3d, + 0x11, 0x9b, 0x81, 0xda, 0xee, 0xc5, 0x71, 0xd8, 0x4e, 0xbd, 0x24, 0x4c, 0x93, 0xaf, 0xf2, 0xb1, + 0xe0, 0x45, 0x71, 0x42, 0xea, 0x72, 0xa7, 0xde, 0xf1, 0xd5, 0x26, 0x93, 0x92, 0xd4, 0x6d, 0xa8, + 0x9e, 0x2d, 0xd5, 0xb2, 0xa9, 0xea, 0xb6, 0x55, 0xdd, 0xc6, 0xaa, 0xda, 0x5a, 0xd9, 0xd0, 0x55, + 0xf1, 0x27, 0x25, 0x75, 0xc2, 0x76, 0x74, 0x1d, 0x74, 0x77, 0xb7, 0x35, 0x6e, 0x0d, 0xaf, 0x0a, + 0xca, 0x58, 0x1a, 0x76, 0x52, 0x65, 0x34, 0xd3, 0x0f, 0x04, 0xf2, 0x0c, 0x46, 0x33, 0x55, 0x19, + 0xcd, 0xe4, 0xb8, 0xfd, 0x59, 0x54, 0x11, 0x83, 0xd1, 0x4c, 0xaf, 0x50, 0x11, 0xb7, 0x81, 0x4f, + 0xfe, 0xd3, 0xd7, 0x79, 0xc0, 0xeb, 0x97, 0x5e, 0xb7, 0xe3, 0xa5, 0xd1, 0xb5, 0x42, 0xc5, 0xcc, + 0x5c, 0x94, 0x3c, 0x43, 0xda, 0x83, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, + 0x09, 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0xa4, 0xa7, 0xab, 0xc9, 0x7f, + 0xc3, 0xb0, 0x1f, 0x74, 0xa3, 0x9b, 0xd0, 0x8b, 0xe2, 0x34, 0x4c, 0x6e, 0x82, 0xae, 0x3c, 0x55, + 0x7a, 0x40, 0x26, 0x59, 0x25, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, + 0xe0, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0xe4, 0x24, 0x67, 0xba, 0x8e, 0xe2, 0xe8, + 0x7a, 0x78, 0xed, 0x05, 0x9d, 0x9b, 0x30, 0x49, 0xa3, 0xc1, 0xb8, 0x7f, 0x47, 0x91, 0x3f, 0x7d, + 0x47, 0x3e, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, + 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0x39, 0xf6, 0x89, 0xdc, 0x99, 0xf8, 0x63, 0x8d, + 0xfb, 0x93, 0x7e, 0xf4, 0x97, 0x59, 0x17, 0xe9, 0x3a, 0x8c, 0x9f, 0x14, 0x9e, 0x72, 0x2c, 0x38, + 0xdd, 0x58, 0xac, 0x1b, 0xb7, 0x4a, 0x37, 0xae, 0x1e, 0x2f, 0xa5, 0x1b, 0xb7, 0x84, 0xf0, 0x40, + 0x37, 0xee, 0x53, 0x36, 0x8b, 0x58, 0x9f, 0xa9, 0x0d, 0xd5, 0xb3, 0xa5, 0x5a, 0x36, 0x55, 0xdd, + 0xb6, 0xaa, 0xdb, 0x58, 0x55, 0x5b, 0x2b, 0x4b, 0x4a, 0x88, 0xf5, 0x3d, 0xc9, 0xe9, 0x23, 0xd6, + 0xf7, 0xa4, 0x2f, 0x62, 0x7d, 0x04, 0x72, 0x4c, 0xec, 0xcf, 0xa2, 0x8a, 0x10, 0xeb, 0x2b, 0xb4, + 0x8a, 0x10, 0xeb, 0x13, 0x5d, 0x2f, 0xdd, 0xb8, 0x3f, 0xcc, 0x90, 0xe8, 0xc6, 0x85, 0x21, 0xc1, + 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, + 0x60, 0x48, 0x3f, 0xa1, 0x26, 0x74, 0xe3, 0xc2, 0x99, 0xe0, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, + 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, 0x4c, 0x70, 0x26, 0x38, 0xd3, 0xe3, 0x6a, + 0x42, 0x37, 0x2e, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, + 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0x3d, 0x5d, 0x4d, 0xe2, 0xf0, 0xaa, 0x97, + 0x46, 0x41, 0x1a, 0x76, 0x3c, 0xc5, 0x62, 0xbd, 0x07, 0xa5, 0x42, 0x69, 0xa0, 0x34, 0x50, 0x1a, + 0x28, 0x0d, 0x94, 0x06, 0x4a, 0x03, 0xa5, 0x81, 0xd2, 0x40, 0x69, 0xa0, 0x34, 0x50, 0x9a, 0x92, + 0x53, 0x1a, 0x06, 0x0c, 0xd9, 0x0d, 0x18, 0x9a, 0xcc, 0xc5, 0x71, 0x75, 0xbe, 0xd0, 0x86, 0x43, + 0x1a, 0x21, 0xa5, 0x09, 0xc6, 0x1a, 0x50, 0xc9, 0x75, 0x86, 0x53, 0x32, 0x6c, 0xa7, 0x71, 0xe6, + 0x18, 0x37, 0x27, 0x4b, 0x6b, 0x64, 0x2b, 0xf3, 0x5b, 0xd9, 0x7a, 0xfc, 0xfd, 0xab, 0xbe, 0xdf, + 0xcc, 0x56, 0xe1, 0x9f, 0x4d, 0x56, 0xb1, 0xe1, 0x86, 0xbe, 0xe4, 0xa0, 0x2b, 0x95, 0x34, 0x09, + 0xe2, 0x41, 0xbf, 0x97, 0xa4, 0xb9, 0xa9, 0xc9, 0x8c, 0x6b, 0xcc, 0x3f, 0x3a, 0x27, 0x9d, 0xce, + 0x77, 0x82, 0x55, 0xee, 0x81, 0x10, 0x89, 0xc0, 0x87, 0x5c, 0xa0, 0x43, 0x2a, 0xb0, 0x21, 0x1e, + 0xc8, 0x10, 0x0f, 0x5c, 0x88, 0x06, 0x2a, 0xdc, 0x42, 0x89, 0xbc, 0x27, 0x4e, 0x55, 0xda, 0xd3, + 0x33, 0x25, 0x34, 0x19, 0x2f, 0xfb, 0xfc, 0x82, 0x8d, 0xc6, 0xdb, 0x64, 0x34, 0x9e, 0xbc, 0xe1, + 0x51, 0x33, 0x40, 0x6a, 0x86, 0x48, 0xc5, 0x20, 0x15, 0x83, 0xd8, 0x88, 0x8d, 0xc6, 0xeb, 0xf6, + 0xda, 0x41, 0xd7, 0x0b, 0x3a, 0x9d, 0x24, 0x1c, 0x0c, 0xe4, 0xf3, 0x48, 0x8b, 0xe2, 0x48, 0x20, + 0x69, 0x9b, 0x37, 0x3d, 0x33, 0xa7, 0x65, 0xee, 0xd4, 0xcd, 0x9e, 0xba, 0xf9, 0x53, 0x35, 0x83, + 0xb2, 0x91, 0xae, 0xe2, 0x27, 0x90, 0x86, 0x71, 0xd4, 0x8b, 0x35, 0x92, 0x47, 0x7b, 0x82, 0x32, + 0xb2, 0xed, 0x2a, 0x7c, 0x3a, 0x67, 0xfa, 0x52, 0xa2, 0xbe, 0x30, 0xa4, 0x68, 0xbf, 0x21, 0xdd, + 0x37, 0xa5, 0xf7, 0xc6, 0x1e, 0x78, 0x73, 0x37, 0xdb, 0x8a, 0xef, 0x6e, 0xe9, 0x1d, 0xfe, 0xa6, + 0x28, 0xb3, 0x15, 0xa4, 0x69, 0x98, 0xc4, 0x6a, 0xaf, 0x73, 0x26, 0xf8, 0x3f, 0xbf, 0xfc, 0xf2, + 0x69, 0xd3, 0xdb, 0xbb, 0xf8, 0xf6, 0x69, 0xcb, 0xdb, 0xbb, 0x98, 0x7c, 0xbb, 0x35, 0xfe, 0xcf, + 0xe4, 0xfb, 0xea, 0xa7, 0x4d, 0x6f, 0x7b, 0xfa, 0xfd, 0xce, 0xa7, 0x4d, 0x6f, 0xe7, 0xe2, 0xf9, + 0x1f, 0x7f, 0xfc, 0xfa, 0xfc, 0xef, 0x57, 0xb7, 0x4f, 0xff, 0xc3, 0x7f, 0x54, 0xd4, 0x1e, 0xee, + 0x42, 0x45, 0xd2, 0xed, 0x8b, 0x12, 0x1f, 0xbe, 0x5d, 0x0e, 0x9f, 0xce, 0xe1, 0x0b, 0xbc, 0xcb, + 0x9a, 0xf7, 0xee, 0xe2, 0xef, 0xad, 0x17, 0xdb, 0xb7, 0x6f, 0x9e, 0xff, 0xfd, 0xfa, 0xf6, 0xfe, + 0x0f, 0xbf, 0x3d, 0xf4, 0x6b, 0x5b, 0x2f, 0x5e, 0xdf, 0xbe, 0x79, 0xe4, 0x5f, 0x76, 0x6f, 0xdf, + 0xfc, 0xe0, 0x67, 0xec, 0xdc, 0xfe, 0xb2, 0xf4, 0xab, 0xa3, 0x9f, 0x57, 0x1f, 0xfb, 0x83, 0xed, + 0x47, 0xfe, 0xe0, 0xd5, 0x63, 0x7f, 0xf0, 0xea, 0x91, 0x3f, 0x78, 0x74, 0x49, 0xd5, 0x47, 0xfe, + 0x60, 0xe7, 0xf6, 0xdb, 0xd2, 0xef, 0xff, 0xf2, 0xf0, 0xaf, 0xee, 0xde, 0x3e, 0xff, 0xf6, 0xd8, + 0xbf, 0xbd, 0xbe, 0xfd, 0xf6, 0xe6, 0x79, 0x09, 0x4d, 0xd1, 0x46, 0xb1, 0x9f, 0x43, 0xd8, 0x94, + 0x2a, 0x7a, 0x9c, 0x83, 0x34, 0x89, 0xe2, 0x2b, 0x4d, 0x6f, 0xf3, 0x37, 0x0a, 0x1b, 0x44, 0xd7, + 0x2b, 0xd2, 0xf7, 0x9a, 0x0e, 0xbd, 0x4e, 0x34, 0x68, 0xf7, 0x6e, 0x42, 0x8d, 0x7b, 0x27, 0x16, + 0xc5, 0xc9, 0x77, 0xb5, 0x5e, 0x06, 0xdd, 0x01, 0x55, 0xe0, 0x04, 0xf1, 0x08, 0xe2, 0x11, 0xc4, + 0x2b, 0x54, 0x10, 0xef, 0x73, 0xaf, 0xd7, 0x0d, 0x03, 0x95, 0x30, 0xde, 0xd6, 0x1a, 0xc3, 0x5f, + 0x3f, 0x18, 0x0c, 0xa2, 0x9b, 0xd0, 0xbb, 0xee, 0x75, 0x14, 0x5a, 0x94, 0x16, 0xa4, 0x01, 0x7e, + 0x80, 0x1f, 0xe0, 0x07, 0xf8, 0x01, 0x7e, 0x80, 0x9f, 0x0d, 0xf8, 0xa5, 0xed, 0xbe, 0x77, 0xad, + 0x51, 0x52, 0x31, 0x15, 0x04, 0x14, 0x01, 0x45, 0x40, 0x11, 0x50, 0x54, 0x20, 0x28, 0x1a, 0x46, + 0x71, 0xba, 0xb5, 0xab, 0x80, 0x44, 0xbb, 0x34, 0xc7, 0x7e, 0xff, 0x41, 0x2c, 0x9a, 0x63, 0x37, + 0xe9, 0x7c, 0x74, 0xdc, 0x1c, 0x2c, 0xaa, 0x88, 0x41, 0x73, 0xac, 0xb6, 0x8a, 0xec, 0xee, 0xec, + 0xbc, 0xda, 0xa1, 0x41, 0xd6, 0xb5, 0x4f, 0xa7, 0x41, 0x36, 0x17, 0xaf, 0xa7, 0xac, 0x0d, 0xb2, + 0xd3, 0x5e, 0xbb, 0x97, 0x59, 0x87, 0x8c, 0xab, 0x4d, 0xb2, 0xb9, 0x36, 0x70, 0x06, 0x69, 0x28, + 0xd7, 0x6a, 0x34, 0xf9, 0xf8, 0x82, 0x75, 0x1a, 0x55, 0xe9, 0x34, 0xd2, 0x63, 0x8b, 0x74, 0x1a, + 0x95, 0x10, 0x21, 0xe8, 0x34, 0x22, 0x38, 0x46, 0x70, 0x8c, 0xe0, 0x18, 0xc1, 0x31, 0xeb, 0xe0, + 0x18, 0x9d, 0x46, 0xee, 0xc4, 0xc6, 0xe8, 0x34, 0x2a, 0xd8, 0x1b, 0x7b, 0xe0, 0xcd, 0xd1, 0x69, + 0x24, 0x2e, 0x98, 0x4e, 0x23, 0x07, 0x31, 0xcb, 0x8d, 0xc3, 0x47, 0xa7, 0x91, 0xd2, 0xe1, 0xa3, + 0xd3, 0x88, 0x4e, 0x23, 0x47, 0x9d, 0x72, 0xbd, 0xe7, 0xa0, 0xd3, 0x68, 0x05, 0x63, 0x49, 0x86, + 0x48, 0x74, 0xbd, 0x12, 0xd5, 0x66, 0x93, 0x68, 0x57, 0xae, 0x73, 0x0c, 0xbf, 0x13, 0x59, 0xcb, + 0x71, 0xb0, 0x21, 0x61, 0x35, 0xc2, 0x6a, 0x84, 0xd5, 0x08, 0xab, 0xa9, 0x9c, 0x97, 0x91, 0xdd, + 0xf2, 0xe2, 0xe1, 0xf5, 0xe7, 0x30, 0xa1, 0xf0, 0xcc, 0x0d, 0x57, 0x87, 0xc2, 0xb3, 0xfc, 0xe4, + 0x51, 0x78, 0x56, 0x58, 0x15, 0xa1, 0xf0, 0x0c, 0x5a, 0xe1, 0x18, 0xad, 0x60, 0x80, 0x01, 0x24, + 0x06, 0x12, 0x03, 0x89, 0x81, 0xc4, 0xb8, 0x45, 0x62, 0xe8, 0xe1, 0x54, 0x81, 0x3f, 0x06, 0x18, + 0x00, 0x7e, 0x80, 0x1f, 0xe0, 0x07, 0xf8, 0x01, 0x7e, 0x6b, 0x07, 0x7e, 0x49, 0x78, 0xdd, 0x4b, + 0x43, 0xbd, 0x82, 0xed, 0x7b, 0xf2, 0x00, 0x26, 0x80, 0x09, 0x60, 0x02, 0x98, 0x0a, 0x04, 0x4c, + 0x2a, 0xc5, 0xc1, 0x94, 0x6d, 0xff, 0xd4, 0x9b, 0x51, 0x2d, 0xfe, 0xd5, 0xac, 0x3b, 0x54, 0xaf, + 0x37, 0x2c, 0x5d, 0x91, 0x2f, 0x95, 0x68, 0x3f, 0x7c, 0x88, 0x76, 0x39, 0x44, 0xf9, 0x1e, 0x22, + 0x8a, 0x75, 0x4b, 0x59, 0xac, 0x7b, 0x41, 0xae, 0xb3, 0xa8, 0x7c, 0x57, 0xa7, 0x86, 0xf2, 0xae, + 0x30, 0x98, 0x2e, 0x4c, 0x17, 0xa6, 0x0b, 0xd3, 0x2d, 0x10, 0xd3, 0xa5, 0x88, 0xd2, 0x39, 0x2f, + 0x9d, 0x22, 0xca, 0xfc, 0xe4, 0x51, 0x44, 0x59, 0x58, 0x15, 0xa1, 0x88, 0x12, 0x62, 0xe1, 0x18, + 0xb1, 0x60, 0x12, 0x38, 0x84, 0x02, 0x42, 0x01, 0xa1, 0x80, 0x50, 0x3c, 0x7e, 0x5e, 0x98, 0x04, + 0x0e, 0x97, 0x80, 0x4b, 0xc0, 0x25, 0xe0, 0x12, 0x70, 0x89, 0xd2, 0x70, 0x09, 0x26, 0x81, 0x9b, + 0x4e, 0x02, 0x9f, 0x0c, 0xb0, 0x76, 0x75, 0x10, 0xf8, 0x86, 0x43, 0x4a, 0x21, 0xa5, 0x0c, 0xf6, + 0x4a, 0x50, 0xc9, 0x75, 0xde, 0x7a, 0x32, 0x6c, 0xa7, 0x71, 0xe6, 0xb1, 0x36, 0x27, 0xab, 0x6b, + 0x64, 0x8b, 0xf3, 0x5b, 0xd9, 0x92, 0xfc, 0xfd, 0xab, 0xbe, 0xdf, 0xcc, 0x16, 0xe2, 0x9f, 0xcd, + 0x16, 0xb2, 0xe1, 0x86, 0xd6, 0xe4, 0xa0, 0x31, 0x95, 0xe1, 0x20, 0xf4, 0xae, 0x87, 0xdd, 0x34, + 0xea, 0x77, 0x43, 0x6f, 0xf4, 0x72, 0xf3, 0x8b, 0x6d, 0xcc, 0x09, 0xc1, 0xb2, 0x8c, 0x9c, 0x74, + 0x3d, 0xdf, 0x11, 0xf4, 0xb9, 0x87, 0x2d, 0x24, 0xc2, 0x14, 0x72, 0x61, 0x09, 0xa9, 0x30, 0x84, + 0x78, 0xd8, 0x41, 0x3c, 0xcc, 0x20, 0x1a, 0x56, 0x70, 0x0b, 0x3d, 0xf2, 0x1e, 0x19, 0x5f, 0x69, + 0x4f, 0xcf, 0x94, 0xd0, 0xd5, 0x16, 0xd9, 0xe7, 0x17, 0xec, 0x6e, 0x8b, 0x4d, 0xee, 0xb6, 0x90, + 0x37, 0x3c, 0x6a, 0x06, 0x48, 0xcd, 0x10, 0xa9, 0x18, 0xa4, 0x62, 0x70, 0x1e, 0xb1, 0xbb, 0x2d, + 0xc2, 0x38, 0xf8, 0xdc, 0x0d, 0x3b, 0xf2, 0x29, 0x9e, 0xa9, 0x20, 0xda, 0x83, 0x2d, 0x4c, 0xa6, + 0x86, 0xe9, 0xd4, 0x33, 0xa1, 0x5a, 0xa6, 0x54, 0xdd, 0xa4, 0xaa, 0x9b, 0x56, 0x55, 0x13, 0x2b, + 0x1b, 0x60, 0xa3, 0x3d, 0xf8, 0x09, 0x9e, 0xde, 0x16, 0x91, 0x48, 0x77, 0x83, 0x4f, 0xe6, 0x41, + 0xa8, 0xe5, 0x10, 0xc6, 0x1a, 0x5d, 0x4e, 0x18, 0x8e, 0x6c, 0x9f, 0x18, 0x81, 0x0b, 0xf3, 0x47, + 0x44, 0xe8, 0x1b, 0xf4, 0x0d, 0xfa, 0xb6, 0x9e, 0xf4, 0x4d, 0x28, 0xde, 0xa4, 0x13, 0x77, 0x12, + 0x36, 0x60, 0x90, 0x2a, 0x48, 0x15, 0xa4, 0xca, 0x4d, 0x52, 0x25, 0x65, 0x10, 0x67, 0x02, 0x82, + 0x6e, 0xb7, 0xf7, 0xe7, 0xdc, 0x89, 0x0d, 0x06, 0xf2, 0xfa, 0x3c, 0x3d, 0xa1, 0xcb, 0xa2, 0x85, + 0xd5, 0x4c, 0x29, 0xf6, 0xa5, 0x14, 0x03, 0x53, 0x33, 0xdb, 0x9a, 0xe6, 0x5b, 0xdf, 0x8c, 0x6b, + 0x9b, 0x73, 0x33, 0xb3, 0x6e, 0x66, 0xde, 0x4d, 0xcc, 0xbc, 0xac, 0xb9, 0x17, 0x36, 0xfb, 0x7a, + 0x31, 0x35, 0x83, 0xd8, 0x9a, 0x52, 0x8c, 0x4d, 0x5e, 0x01, 0x8a, 0xe5, 0x49, 0x08, 0xc7, 0xe0, + 0x5c, 0x8c, 0xc5, 0x85, 0xa3, 0x5f, 0x95, 0x08, 0xc8, 0xc9, 0x69, 0x80, 0x44, 0x77, 0xda, 0xa4, + 0x4a, 0x52, 0x9c, 0xfa, 0x4e, 0xc4, 0x14, 0x9c, 0xf9, 0x56, 0x61, 0xbe, 0x30, 0x5f, 0x98, 0x2f, + 0xcc, 0x17, 0xe6, 0x0b, 0xf3, 0x85, 0xf9, 0xc2, 0x7c, 0x61, 0xbe, 0x30, 0x5f, 0x98, 0x2f, 0xcc, + 0xb7, 0x80, 0xcc, 0x57, 0xa0, 0x3b, 0x4e, 0x90, 0xf8, 0x52, 0xc0, 0xe4, 0x8e, 0xea, 0x54, 0x44, + 0xa2, 0x10, 0x4f, 0xef, 0xad, 0x3b, 0x1f, 0x84, 0x47, 0xd9, 0xea, 0x5a, 0xa3, 0xc5, 0xf9, 0xf5, + 0xdc, 0x91, 0xd3, 0xcd, 0xda, 0x2a, 0x99, 0x90, 0x8d, 0x68, 0xa8, 0x46, 0xbc, 0xba, 0xaa, 0x4a, + 0x75, 0x95, 0x9e, 0xcf, 0x4e, 0x75, 0x55, 0x09, 0x51, 0x8c, 0xe6, 0x18, 0x37, 0xc2, 0x24, 0x34, + 0xc7, 0xb8, 0x14, 0x06, 0x21, 0x9a, 0x5d, 0xc8, 0x30, 0x07, 0xcd, 0x31, 0x56, 0x61, 0x0c, 0x9a, + 0x63, 0xe0, 0x96, 0x3f, 0xc7, 0x2d, 0x99, 0xd7, 0x63, 0xad, 0x15, 0x0e, 0x69, 0x83, 0xf5, 0xe0, + 0x9e, 0xfb, 0xc1, 0x05, 0x67, 0xe6, 0xf7, 0x6c, 0x18, 0xea, 0xdf, 0xc8, 0x49, 0x19, 0x6d, 0xe1, + 0xf4, 0xbd, 0xe5, 0x74, 0x1b, 0x54, 0xe5, 0x30, 0x1a, 0xa4, 0xb5, 0x34, 0xcd, 0x87, 0x7f, 0x54, + 0x8e, 0xa2, 0xb8, 0xde, 0x0d, 0x47, 0x9e, 0xc6, 0xa0, 0xf2, 0xe6, 0x59, 0x3c, 0xec, 0x76, 0x73, + 0x98, 0x79, 0x74, 0x14, 0xfc, 0x95, 0xff, 0x87, 0x1e, 0x27, 0x9d, 0x30, 0x09, 0x3b, 0xfb, 0x5f, + 0xb3, 0x8f, 0x34, 0x7d, 0xb7, 0x39, 0xdb, 0x14, 0x2b, 0x5b, 0x92, 0x83, 0xe1, 0xf8, 0x19, 0x83, + 0xb1, 0x9a, 0x7d, 0xf8, 0xf9, 0x53, 0xfd, 0x73, 0x7f, 0xf9, 0x93, 0xba, 0x92, 0x97, 0x8e, 0x28, + 0xeb, 0xc6, 0xcf, 0xbd, 0x9b, 0xa7, 0xef, 0xec, 0x4f, 0xec, 0x6a, 0xa5, 0x1f, 0x86, 0x89, 0x77, + 0x95, 0xf4, 0x86, 0xfd, 0x9f, 0xaf, 0x30, 0x99, 0x5f, 0xcb, 0x72, 0xe7, 0xc3, 0x7e, 0xf2, 0x0d, + 0xaf, 0x16, 0xa7, 0x5d, 0x39, 0xb8, 0x90, 0x47, 0xf0, 0x20, 0xbf, 0xe0, 0x40, 0x5e, 0xe4, 0x3f, + 0x77, 0x72, 0x9f, 0x3b, 0x79, 0xcf, 0x95, 0x9c, 0xeb, 0xda, 0xa4, 0x55, 0xe3, 0x96, 0x77, 0x4e, + 0xcd, 0xea, 0x2f, 0x7a, 0xf9, 0x24, 0xae, 0xfa, 0xa6, 0xf3, 0x49, 0x9c, 0xe4, 0x16, 0xf5, 0xcb, + 0x33, 0xba, 0x97, 0x7f, 0x14, 0x2f, 0xef, 0x68, 0x9d, 0x58, 0x54, 0x4e, 0x2c, 0xfa, 0x26, 0x12, + 0x65, 0xb3, 0x25, 0x1d, 0x79, 0x25, 0x26, 0x2a, 0xc1, 0x65, 0xe4, 0x0d, 0x82, 0xcb, 0x48, 0x60, + 0x5c, 0xe9, 0xfc, 0xa3, 0x99, 0x52, 0xea, 0x8e, 0x39, 0x90, 0x32, 0x0b, 0xe2, 0xe6, 0x41, 0xdc, + 0x4c, 0x88, 0x9a, 0x0b, 0x37, 0x63, 0x66, 0xb9, 0x4f, 0x29, 0x9d, 0x9e, 0x79, 0xb9, 0x4a, 0x8c, + 0x99, 0x04, 0x46, 0xdd, 0x50, 0x8c, 0x61, 0x66, 0x84, 0xd4, 0x8c, 0x91, 0x8a, 0x51, 0xca, 0xd7, + 0x38, 0xe5, 0x6c, 0xa4, 0xc4, 0x8c, 0xd5, 0xdc, 0x68, 0x75, 0x3a, 0x39, 0x8f, 0x6c, 0x7f, 0xdc, + 0x7a, 0xcd, 0x44, 0x31, 0xf0, 0x46, 0xdb, 0xac, 0xe9, 0x99, 0x37, 0x2d, 0x33, 0xa7, 0x6e, 0xee, + 0xd4, 0xcd, 0x9e, 0xaa, 0xf9, 0x93, 0x31, 0x83, 0x42, 0xe6, 0x50, 0xdc, 0x2c, 0xce, 0x04, 0x08, + 0x4f, 0x02, 0x5b, 0x3a, 0x96, 0xa2, 0x13, 0xc1, 0x94, 0x0c, 0xa5, 0x9a, 0xc1, 0xd4, 0x34, 0x9c, + 0xfa, 0x06, 0x54, 0xdb, 0x90, 0x9a, 0x19, 0x54, 0x33, 0xc3, 0x6a, 0x62, 0x60, 0x65, 0x0d, 0xad, + 0xb0, 0xc1, 0x55, 0x33, 0xbc, 0x33, 0x41, 0x61, 0x37, 0xba, 0x8a, 0x3e, 0x77, 0x43, 0x6f, 0xa2, + 0x8a, 0x5e, 0xbf, 0xd7, 0x8d, 0xda, 0x5f, 0xf5, 0x0e, 0xc3, 0xac, 0x96, 0xf8, 0xe1, 0x75, 0xbc, + 0x28, 0xe5, 0x85, 0x87, 0x5a, 0x86, 0xdb, 0xc2, 0x80, 0xdb, 0x19, 0x72, 0x2b, 0x83, 0x6e, 0x6e, + 0xd8, 0xcd, 0x0d, 0xbc, 0xa9, 0xa1, 0xd7, 0x31, 0xf8, 0x4a, 0x86, 0x7f, 0xb6, 0x93, 0x6a, 0x1d, + 0xd7, 0x4b, 0xe7, 0xb5, 0x1b, 0x06, 0x97, 0x49, 0x78, 0xa9, 0x79, 0x60, 0xa7, 0xfe, 0xf2, 0x6b, + 0x45, 0x99, 0xad, 0x59, 0x31, 0x4c, 0xdb, 0x4b, 0xfa, 0xbd, 0xee, 0x9b, 0xa4, 0x37, 0x4c, 0xa3, + 0xf8, 0x2a, 0x43, 0x9e, 0xd9, 0x8f, 0x27, 0xff, 0xaf, 0xd7, 0x09, 0x2f, 0xa3, 0x38, 0x4a, 0xa3, + 0x5e, 0x3c, 0x78, 0xfc, 0x9f, 0x66, 0xff, 0x32, 0x2e, 0x65, 0xda, 0x28, 0x87, 0xd6, 0x6b, 0xdc, + 0x6e, 0x9c, 0x84, 0xed, 0x30, 0xba, 0x09, 0xf5, 0xdd, 0x8e, 0xa9, 0x60, 0xa5, 0x53, 0xad, 0x3c, + 0xf9, 0x05, 0xff, 0x06, 0xff, 0x06, 0xff, 0x06, 0xff, 0x06, 0xff, 0xc6, 0x64, 0xb2, 0xcc, 0x92, + 0x7f, 0xb3, 0x85, 0x4b, 0xf0, 0xc3, 0x7b, 0x36, 0x08, 0xe3, 0x8e, 0xbe, 0x3f, 0x30, 0x96, 0x8a, + 0x33, 0x80, 0x33, 0x80, 0x33, 0x80, 0x33, 0x80, 0x33, 0x80, 0x33, 0x80, 0x33, 0xe0, 0x8a, 0x33, + 0xe0, 0x5d, 0x07, 0x7f, 0xd9, 0x38, 0x04, 0x63, 0xc9, 0x80, 0x33, 0xe0, 0x0c, 0x38, 0x03, 0xce, + 0x80, 0xb3, 0xda, 0x79, 0x1d, 0x46, 0x71, 0xfa, 0x9b, 0x01, 0x34, 0xef, 0x28, 0x8a, 0x3c, 0x09, + 0xe2, 0xab, 0xd1, 0xc3, 0x7e, 0x52, 0x3d, 0x1e, 0xba, 0xe6, 0xe8, 0x59, 0x36, 0x25, 0x40, 0xdd, + 0x0e, 0x1a, 0xa1, 0xea, 0x92, 0xf8, 0x8f, 0x41, 0x77, 0x18, 0x1a, 0xca, 0x7f, 0x97, 0x04, 0xed, + 0x34, 0xea, 0xc5, 0x6f, 0xa3, 0xab, 0x68, 0x3c, 0x4f, 0x61, 0x53, 0x7d, 0x1d, 0xb7, 0x2f, 0x0c, + 0x54, 0x2e, 0xf8, 0x6b, 0xed, 0x55, 0xae, 0xba, 0xb3, 0xb3, 0xc6, 0x4a, 0xb7, 0x51, 0x4e, 0x69, + 0x17, 0x65, 0xa1, 0x8e, 0x85, 0xae, 0xd1, 0x53, 0x9a, 0x64, 0x3e, 0x27, 0xc1, 0x1a, 0x43, 0x3c, + 0xee, 0x8c, 0xb4, 0xb8, 0xf3, 0xfd, 0xcb, 0x59, 0xbf, 0xed, 0xec, 0xbb, 0x97, 0xb3, 0x76, 0x13, + 0xd1, 0x4b, 0xbd, 0xe4, 0x55, 0x45, 0x50, 0x4d, 0x84, 0x2f, 0xfb, 0x5a, 0x0e, 0x56, 0x08, 0x5e, + 0xfa, 0x75, 0x1f, 0xd8, 0xd4, 0x8a, 0xdb, 0xab, 0x14, 0xb7, 0x17, 0x27, 0x02, 0x41, 0x71, 0x3b, + 0xc5, 0xed, 0xdf, 0xdd, 0x31, 0x8a, 0xdb, 0x29, 0x6e, 0x2f, 0xa6, 0x01, 0xb7, 0x33, 0xe4, 0x56, + 0x06, 0xdd, 0xdc, 0xb0, 0x9b, 0x1b, 0x78, 0x53, 0x43, 0xaf, 0xcb, 0x2d, 0x29, 0x6e, 0x17, 0xf4, + 0x97, 0x29, 0x6e, 0x77, 0x31, 0x02, 0x41, 0x71, 0x7b, 0x7e, 0x6e, 0x1d, 0xf5, 0x6c, 0xf8, 0x37, + 0xf8, 0x37, 0xf8, 0x37, 0xf8, 0x37, 0xd4, 0xb3, 0xe1, 0x12, 0xfc, 0xaf, 0x3d, 0xa3, 0xb8, 0x1d, + 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x80, 0xe2, 0x76, + 0xc0, 0x19, 0x70, 0x06, 0x9c, 0x01, 0xe7, 0xb5, 0x01, 0x67, 0x8a, 0xdb, 0xa5, 0xbe, 0x28, 0x6e, + 0x57, 0x15, 0x4f, 0x71, 0x3b, 0xc5, 0xed, 0x46, 0x2a, 0x47, 0x71, 0x7b, 0x09, 0xa5, 0x51, 0xdc, + 0xee, 0x80, 0xc9, 0xa1, 0xb8, 0xbd, 0x23, 0x77, 0x4b, 0xb6, 0x9e, 0xa6, 0x14, 0x6b, 0xda, 0xbc, + 0x92, 0xce, 0x39, 0xab, 0x6b, 0x15, 0xd1, 0x4e, 0x84, 0x1f, 0xbe, 0x62, 0xb7, 0x15, 0x86, 0xc9, + 0xfb, 0xd1, 0x62, 0xfd, 0xda, 0x65, 0x74, 0x1a, 0x5c, 0x46, 0x7e, 0xad, 0xd3, 0xc9, 0xf1, 0x52, + 0x6e, 0x79, 0x25, 0x15, 0x50, 0xd0, 0xd9, 0xdd, 0x50, 0x5e, 0xb6, 0x87, 0xd2, 0x97, 0xb9, 0x2c, + 0x88, 0x93, 0xbd, 0xd0, 0x65, 0x93, 0x0b, 0x5d, 0x1c, 0x88, 0xaf, 0x71, 0xa1, 0x4b, 0x21, 0xe3, + 0x63, 0xc5, 0x82, 0x58, 0xf1, 0x78, 0x97, 0x62, 0xa5, 0xad, 0x46, 0x65, 0xed, 0xac, 0x92, 0xf6, + 0xd7, 0x5f, 0xb3, 0x36, 0xc7, 0x97, 0x8b, 0x96, 0x79, 0x9d, 0x11, 0xb1, 0xdf, 0xef, 0x7e, 0x95, + 0xee, 0xa9, 0x99, 0x03, 0xe2, 0x5d, 0x69, 0x5c, 0x70, 0xe6, 0x02, 0x1e, 0x26, 0xfd, 0x5e, 0x17, + 0x40, 0x2c, 0x20, 0x20, 0x8e, 0x5f, 0x1c, 0x88, 0xf8, 0x8c, 0x2b, 0xce, 0x1c, 0x35, 0x95, 0x6a, + 0x26, 0x53, 0xd3, 0x74, 0x1a, 0x98, 0x50, 0x6d, 0x53, 0x6a, 0x66, 0x52, 0xcd, 0x4c, 0xab, 0x8d, + 0x89, 0x95, 0x35, 0xb5, 0xc2, 0x26, 0x57, 0xcd, 0xf4, 0xce, 0x04, 0x75, 0x26, 0xc5, 0xc8, 0x5e, + 0xf8, 0x57, 0xbf, 0x97, 0xa4, 0x66, 0x6d, 0xe0, 0x0f, 0x2f, 0x43, 0xbf, 0x20, 0xfb, 0xa4, 0xfe, + 0x7f, 0xf5, 0x83, 0x33, 0xff, 0xe4, 0xf8, 0xfc, 0xac, 0x4e, 0xe9, 0x57, 0xe1, 0xf0, 0xc3, 0x10, + 0x47, 0xac, 0xf0, 0xc4, 0x1c, 0x57, 0xcc, 0xf1, 0xc5, 0x16, 0x67, 0x74, 0xf0, 0x46, 0x09, 0x77, + 0xf4, 0x82, 0x61, 0xdf, 0x45, 0x82, 0xac, 0xc9, 0x3a, 0x1d, 0x2d, 0xc4, 0xa0, 0x4a, 0x7b, 0x5b, + 0x51, 0x66, 0x3d, 0x1e, 0x5e, 0x8f, 0x36, 0xfb, 0x96, 0xca, 0xf0, 0x27, 0xfb, 0x2d, 0xd1, 0xb5, + 0x13, 0x7e, 0xcb, 0xe2, 0x32, 0xf0, 0x5b, 0xf0, 0x5b, 0xf0, 0x5b, 0xf0, 0x5b, 0xf0, 0x5b, 0xf0, + 0x5b, 0xf0, 0x5b, 0xf0, 0x5b, 0xee, 0xec, 0x99, 0x71, 0x9c, 0xc5, 0x24, 0xbe, 0x82, 0xa3, 0x80, + 0xa3, 0x80, 0xa3, 0x80, 0xa3, 0x80, 0xa3, 0xc0, 0x9c, 0xbd, 0xc2, 0xcd, 0xd9, 0x53, 0xd2, 0xc7, + 0xc3, 0x68, 0x90, 0xd6, 0xd2, 0x34, 0xd1, 0xd5, 0xc9, 0xa3, 0x28, 0xae, 0x77, 0xc3, 0x91, 0x49, + 0x19, 0x54, 0xde, 0x3c, 0x8b, 0x87, 0xdd, 0xae, 0xa2, 0x86, 0x1c, 0x05, 0x7f, 0xd9, 0x09, 0x3f, + 0x4e, 0x3a, 0x61, 0x12, 0x76, 0xf6, 0xbf, 0xea, 0xe3, 0xd8, 0xac, 0xcd, 0x75, 0x10, 0x26, 0xda, + 0x10, 0x66, 0x84, 0xdd, 0xf7, 0xf1, 0xbb, 0x37, 0xd9, 0x7d, 0xef, 0xf3, 0xd7, 0x8a, 0x41, 0x7f, + 0xa0, 0x35, 0x8e, 0x2f, 0x61, 0xf9, 0x58, 0x13, 0x4a, 0xda, 0xb3, 0x06, 0x39, 0xfc, 0x71, 0x9d, + 0x30, 0x0e, 0x66, 0x9b, 0x04, 0xb1, 0x21, 0x87, 0x90, 0x43, 0xc8, 0x21, 0xe4, 0x10, 0x72, 0x08, + 0x39, 0x84, 0x1c, 0x42, 0x0e, 0x21, 0x87, 0x90, 0x43, 0xc8, 0x21, 0xe4, 0xb0, 0x58, 0xe4, 0x90, + 0x81, 0x26, 0x4f, 0x90, 0xe7, 0xda, 0x90, 0x89, 0x3b, 0xed, 0x93, 0x5c, 0xd8, 0xf9, 0xf8, 0x5b, + 0xe3, 0xc2, 0xce, 0x95, 0x83, 0x0e, 0x55, 0x5a, 0xb5, 0x0a, 0xe4, 0xa0, 0xd0, 0xaa, 0x45, 0xab, + 0xd6, 0xf7, 0xb7, 0x8c, 0x56, 0x2d, 0x4a, 0x9e, 0xa5, 0x71, 0x83, 0x60, 0x75, 0x99, 0x08, 0x2f, + 0xc1, 0x6a, 0x82, 0xd5, 0xf9, 0x6d, 0x25, 0x25, 0xcf, 0x94, 0x3c, 0xbb, 0xac, 0xa4, 0xb4, 0x6a, + 0xe1, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0x14, 0xc6, + 0x6f, 0xa1, 0x55, 0x0b, 0x47, 0x01, 0x47, 0x01, 0x47, 0x01, 0x47, 0x61, 0x5d, 0x1d, 0x05, 0xaa, + 0xf1, 0xa8, 0xc6, 0x5b, 0xde, 0x2e, 0xaa, 0xf1, 0xa8, 0xc6, 0x2b, 0x2f, 0x76, 0x3f, 0xa3, 0x1a, + 0xef, 0x7f, 0x61, 0x39, 0xd5, 0x78, 0x90, 0x43, 0x5a, 0xb5, 0x20, 0x87, 0x90, 0x43, 0xc8, 0x21, 0xe4, 0x10, 0x72, 0x08, 0x39, 0x84, 0x1c, 0x42, 0x0e, 0x21, 0x87, 0x90, 0x43, 0xc8, 0x21, 0xe4, - 0x10, 0x72, 0x08, 0x39, 0x2c, 0x02, 0x39, 0xa4, 0x55, 0xeb, 0x19, 0xf2, 0x5c, 0x6e, 0xd5, 0xe2, - 0xfa, 0x69, 0x2d, 0xf5, 0x5b, 0xdb, 0xeb, 0xa7, 0xe5, 0x2f, 0x56, 0x7c, 0xb1, 0xfa, 0x0d, 0xd4, - 0xa3, 0x45, 0xb6, 0x26, 0x6b, 0x5c, 0xe3, 0x2b, 0x37, 0x85, 0xef, 0x92, 0xd3, 0xb9, 0x43, 0x8e, - 0x6b, 0x36, 0x9f, 0x17, 0x32, 0xe3, 0xda, 0xe9, 0x62, 0x78, 0xce, 0x5c, 0x3b, 0xfd, 0xe4, 0xce, - 0x88, 0x5f, 0xb2, 0xa9, 0x73, 0x3b, 0xff, 0xd2, 0xe9, 0xd4, 0xb8, 0xa5, 0xff, 0xa1, 0xd9, 0xdc, - 0xe4, 0xca, 0x4d, 0x87, 0xcd, 0xa9, 0x55, 0xf0, 0x82, 0x36, 0x6e, 0x51, 0x73, 0x5b, 0x0e, 0x62, - 0xad, 0x96, 0x47, 0x98, 0xa7, 0x70, 0x3b, 0x61, 0x9c, 0x46, 0xe9, 0x17, 0x9d, 0x1c, 0xc2, 0xcc, - 0xb3, 0xdc, 0x51, 0x90, 0xd5, 0xc8, 0x1e, 0xed, 0x20, 0x18, 0x84, 0xfa, 0xb9, 0xf1, 0xda, 0xbb, - 0x86, 0x7f, 0x36, 0xfa, 0x9f, 0xf3, 0xdf, 0x5b, 0x6a, 0x1d, 0x56, 0x1f, 0x82, 0xee, 0x30, 0x1c, - 0x54, 0xde, 0xbc, 0xf8, 0xa8, 0x16, 0x91, 0x33, 0x0a, 0x77, 0x37, 0x5a, 0x1f, 0x76, 0xfd, 0xa3, - 0xda, 0x41, 0xfd, 0xa8, 0xfe, 0xd6, 0xbf, 0x68, 0x36, 0x0e, 0x6b, 0x67, 0xe7, 0x8a, 0xd9, 0xcb, - 0x9f, 0xcb, 0xbe, 0xbf, 0x67, 0xa7, 0xe7, 0x75, 0xbf, 0x75, 0x72, 0xd4, 0x38, 0xfc, 0xdd, 0x1f, - 0xed, 0x35, 0x7b, 0x9b, 0xdf, 0xde, 0x1e, 0x35, 0x9a, 0xff, 0x3c, 0x3b, 0xaf, 0x9d, 0xd7, 0xd9, - 0xd4, 0x5c, 0x0d, 0xc2, 0x36, 0x86, 0x40, 0x40, 0x59, 0xab, 0x1f, 0x5a, 0x4d, 0xbf, 0xfe, 0xa1, - 0xd5, 0x64, 0x57, 0x05, 0x4c, 0x80, 0x7f, 0xd6, 0x7a, 0xc7, 0xc6, 0x4a, 0x6c, 0x2c, 0x1a, 0x9b, - 0xef, 0xc6, 0xbe, 0x1e, 0xd9, 0x01, 0xac, 0xac, 0xa4, 0x95, 0xfd, 0xd0, 0x3a, 0x3a, 0x63, 0x57, - 0x05, 0x74, 0x76, 0x17, 0x9d, 0x15, 0xf2, 0xb8, 0xa0, 0x60, 0x1a, 0xda, 0x7b, 0x7c, 0x71, 0x74, - 0xce, 0xfe, 0xca, 0x21, 0x1a, 0xfb, 0x2b, 0x1f, 0x42, 0xd8, 0x66, 0x6f, 0xf3, 0xdb, 0xdb, 0x0f, - 0xad, 0xe6, 0x87, 0x6d, 0xff, 0xdd, 0xd1, 0xc9, 0xbf, 0xce, 0x5a, 0xf5, 0x43, 0x76, 0x36, 0x57, - 0x54, 0xc3, 0x5b, 0x90, 0xf2, 0x16, 0x0c, 0x14, 0x56, 0x45, 0xd2, 0x65, 0xd1, 0xf3, 0x5a, 0x85, - 0x9c, 0x05, 0x1f, 0xc6, 0xc1, 0xa7, 0x6e, 0xd8, 0xd1, 0xab, 0x26, 0x98, 0x0a, 0x94, 0x9e, 0xe5, - 0x3c, 0x1f, 0xd3, 0x77, 0x15, 0x74, 0x07, 0xd4, 0x2d, 0x3c, 0x53, 0x10, 0x75, 0x0b, 0xb9, 0x6a, - 0x07, 0x75, 0x0b, 0xd4, 0x2d, 0x7c, 0x63, 0xc7, 0xf4, 0xeb, 0x16, 0x3e, 0xf5, 0x7a, 0xdd, 0x30, - 0x88, 0x35, 0x6b, 0x16, 0xb6, 0x28, 0xf2, 0x97, 0x57, 0xa9, 0x75, 0x2d, 0xf2, 0x97, 0xbc, 0xf1, - 0xa7, 0x18, 0xa5, 0xf3, 0xd7, 0x49, 0xd0, 0x0e, 0xaf, 0x86, 0x5d, 0x2f, 0x09, 0x07, 0x69, 0x90, - 0xa4, 0xf2, 0x45, 0xf4, 0x4b, 0x12, 0x29, 0xa7, 0xb7, 0xf2, 0xa7, 0x28, 0xa7, 0x2f, 0x9e, 0xbf, - 0x44, 0x39, 0xfd, 0xd3, 0x0c, 0x4e, 0xba, 0x9c, 0x5e, 0xb8, 0xcf, 0x68, 0xe9, 0x58, 0x8a, 0xf6, - 0x1b, 0x29, 0x19, 0x4a, 0x88, 0x28, 0x44, 0x14, 0x22, 0x5a, 0x6e, 0x22, 0xaa, 0x76, 0x0d, 0x9a, - 0x56, 0xec, 0x71, 0xe9, 0x7c, 0xeb, 0xc4, 0x20, 0xe7, 0x1b, 0xaa, 0x1b, 0x8b, 0x7c, 0x08, 0x05, - 0x4c, 0x79, 0x2b, 0x32, 0x44, 0x58, 0x41, 0x85, 0x39, 0x64, 0x98, 0x43, 0x87, 0x29, 0x84, 0xe8, - 0x40, 0x89, 0x12, 0xa4, 0xcc, 0x76, 0xd2, 0x6e, 0xc6, 0x9b, 0x5e, 0xac, 0x73, 0xc9, 0x13, 0xdf, - 0x62, 0xde, 0x8e, 0x03, 0x5e, 0xcd, 0x9a, 0xcf, 0xdb, 0x79, 0x18, 0xa7, 0xe3, 0x7a, 0xf4, 0xa7, - 0xdf, 0x1c, 0xd7, 0xa3, 0xaf, 0xec, 0x02, 0x56, 0x89, 0x0a, 0x10, 0x15, 0x20, 0x2a, 0x40, 0x54, - 0x80, 0xa8, 0x00, 0x51, 0x01, 0xa2, 0x02, 0x44, 0x05, 0x88, 0x0a, 0x10, 0x15, 0x20, 0x2a, 0x40, - 0x54, 0x80, 0xa8, 0x80, 0xd3, 0x51, 0x01, 0x26, 0xf1, 0x6a, 0xa9, 0xe0, 0xba, 0x16, 0xe9, 0x29, - 0x15, 0x8c, 0xbd, 0x58, 0x79, 0x1a, 0xef, 0xfb, 0x6c, 0xa1, 0xa7, 0xd9, 0x3a, 0xd7, 0xb8, 0xac, - 0x30, 0xea, 0xdf, 0x6e, 0x7b, 0xdd, 0xe0, 0x53, 0xd8, 0x0d, 0x3b, 0xde, 0x30, 0x8e, 0xda, 0xc1, - 0x40, 0xa1, 0xb4, 0xf0, 0x51, 0xa9, 0x94, 0x17, 0x5a, 0x91, 0x1e, 0xca, 0x0b, 0x8b, 0x47, 0x5a, - 0x28, 0x2f, 0x34, 0x8b, 0x67, 0x65, 0x1a, 0xe5, 0x75, 0xa3, 0x9b, 0x28, 0xd5, 0xcb, 0x26, 0x2c, - 0x48, 0xa5, 0xd4, 0xd0, 0xd5, 0xc8, 0x11, 0x49, 0x85, 0xf2, 0x45, 0x86, 0x48, 0x2a, 0x38, 0x67, - 0x84, 0x67, 0x82, 0x94, 0x6a, 0xbd, 0x97, 0x8e, 0xb7, 0x4a, 0xcd, 0xb7, 0xb2, 0x41, 0x56, 0x37, - 0xcc, 0x16, 0x06, 0xda, 0xce, 0x50, 0x5b, 0x19, 0x6c, 0x73, 0xc3, 0x6d, 0x6e, 0xc0, 0x4d, 0x0d, - 0xb9, 0x8e, 0x41, 0x57, 0x32, 0xec, 0xea, 0x06, 0x7e, 0x26, 0xf0, 0x26, 0xf8, 0xcb, 0x9b, 0x68, - 0xed, 0x78, 0x86, 0xb7, 0xd1, 0xa0, 0x96, 0x85, 0x55, 0x28, 0x2b, 0xaf, 0x6e, 0x7e, 0xd7, 0x0c, - 0x0c, 0x2c, 0x41, 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, 0x00, - 0x0f, 0x5d, 0x10, 0x51, 0x06, 0x93, 0xd9, 0x0e, 0xab, 0xe7, 0x8b, 0x97, 0xce, 0xfb, 0x30, 0x8a, - 0xd3, 0xd7, 0x55, 0x8b, 0xf3, 0x9e, 0x59, 0xf7, 0x3d, 0x03, 0xd1, 0xa7, 0x41, 0x7c, 0x1d, 0xaa, - 0xde, 0x8b, 0x71, 0xff, 0xcb, 0xc6, 0xbe, 0xbd, 0xc8, 0xee, 0xe4, 0x36, 0x33, 0xb0, 0xc6, 0xb0, - 0xbe, 0xb4, 0x8c, 0xf1, 0xed, 0x28, 0x0e, 0xac, 0xe3, 0x5d, 0x12, 0xb4, 0xd3, 0xa8, 0x17, 0xbf, - 0x8d, 0xae, 0xa3, 0xf1, 0x6d, 0xe5, 0x9b, 0x66, 0xeb, 0xb9, 0xfb, 0xd9, 0x50, 0x35, 0x83, 0xbf, - 0x50, 0xcd, 0x07, 0xaa, 0xb9, 0x5d, 0xdd, 0xdf, 0xde, 0xdf, 0xdd, 0xab, 0xee, 0xef, 0xa0, 0xa3, - 0x36, 0x0e, 0x81, 0x9d, 0xd4, 0xcb, 0xb2, 0xde, 0xd9, 0xae, 0x18, 0x77, 0xea, 0x27, 0xe1, 0x6d, - 0x18, 0xa7, 0x5e, 0x1a, 0x06, 0x49, 0xa7, 0xf7, 0x67, 0x6c, 0x47, 0xa3, 0x97, 0x56, 0xa2, 0xec, - 0x68, 0x1a, 0x95, 0x68, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x5e, 0xe1, 0xbc, - 0xeb, 0x97, 0x80, 0x3f, 0x34, 0xef, 0x4a, 0xa5, 0xe0, 0xe5, 0x76, 0x5a, 0xb2, 0x6a, 0x52, 0x2f, - 0x8d, 0x6e, 0xc2, 0xc4, 0xce, 0x63, 0x59, 0x5c, 0x06, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, - 0x02, 0xee, 0x42, 0x69, 0xdc, 0x85, 0x4e, 0xd8, 0x8e, 0x6e, 0x82, 0xee, 0xee, 0xb6, 0xa5, 0xc3, - 0x50, 0x35, 0x90, 0xbd, 0x14, 0xcc, 0xaa, 0x92, 0x82, 0xd0, 0x7b, 0x70, 0x97, 0x52, 0x10, 0x55, - 0x52, 0x10, 0x2f, 0x48, 0x41, 0xcc, 0x55, 0xd3, 0xa1, 0x14, 0xc4, 0x6b, 0x54, 0xf3, 0x05, 0x99, - 0x07, 0x32, 0x0f, 0x05, 0x25, 0xf1, 0x7f, 0x06, 0x49, 0x1c, 0xc5, 0xd7, 0x5e, 0xfa, 0x39, 0x09, - 0x07, 0x9f, 0x7b, 0xdd, 0x8e, 0xd7, 0x6f, 0xa7, 0x76, 0x64, 0xfe, 0xf1, 0xe5, 0x40, 0xea, 0x21, - 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0xbe, 0x34, 0xa4, 0xbe, 0x1f, 0x26, 0xed, 0x30, 0x4e, 0x83, - 0xeb, 0xd0, 0x90, 0xd5, 0xef, 0xc0, 0xa7, 0xd7, 0x93, 0x4f, 0x53, 0xd2, 0x07, 0x9f, 0x76, 0x94, - 0x4f, 0xbb, 0xa2, 0x9a, 0x5b, 0x9b, 0x28, 0x27, 0x8c, 0xba, 0x2c, 0x8c, 0xba, 0x54, 0x1d, 0x7e, - 0xca, 0x13, 0xd4, 0x66, 0x72, 0x1d, 0x1b, 0x6b, 0xf5, 0xd8, 0xb0, 0xa2, 0x57, 0xf7, 0x87, 0x71, - 0xa8, 0x0c, 0x5c, 0xd7, 0x53, 0x31, 0x05, 0xf5, 0x52, 0x1a, 0xc4, 0xbe, 0xc4, 0x06, 0x34, 0x06, - 0xb2, 0x3f, 0x04, 0x5a, 0xf5, 0x96, 0xfd, 0x2a, 0x2d, 0xfb, 0xe5, 0x09, 0xdf, 0xd0, 0xb2, 0x4f, - 0xcb, 0x7e, 0x6e, 0x3b, 0x49, 0xcb, 0x3e, 0x2d, 0xfb, 0xe5, 0x03, 0x05, 0x7b, 0x70, 0xb0, 0x06, - 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x6c, 0xf8, 0x35, 0x2d, 0xfb, 0xea, 0xd6, - 0x9d, 0x96, 0x7d, 0xc5, 0x07, 0x27, 0xbe, 0x3f, 0x5f, 0x06, 0xf1, 0x7d, 0x6b, 0xf3, 0xb7, 0xa8, - 0x9a, 0xc4, 0xf7, 0x97, 0x54, 0x93, 0x96, 0x7d, 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0x85, 0x73, 0xab, - 0xab, 0x2d, 0x2d, 0xfb, 0xb3, 0xe8, 0x05, 0x2d, 0xfb, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, - 0x5f, 0x5a, 0x2a, 0x4f, 0xcb, 0x7e, 0x29, 0x9c, 0x16, 0x5a, 0xf6, 0x71, 0x17, 0x70, 0x17, 0x70, - 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0x2d, 0xfb, 0xb4, 0xec, 0x1b, 0x98, 0x16, 0x5a, - 0xf6, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0x96, 0x7d, 0x54, 0xd3, 0x15, - 0x87, 0xc4, 0x4e, 0x2a, 0x99, 0x87, 0xd5, 0xd5, 0x96, 0x96, 0x7d, 0x48, 0x3d, 0xa4, 0x1e, 0x52, - 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x5a, 0xf6, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, - 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x96, 0x7d, 0x18, 0x35, 0x8c, 0xba, 0x90, 0x92, 0x68, 0xd9, 0x77, - 0xac, 0x65, 0x7f, 0xd2, 0x09, 0x5e, 0x96, 0x8e, 0xfd, 0x8d, 0x02, 0xeb, 0xae, 0xb6, 0xce, 0x16, - 0x4e, 0x57, 0x2b, 0x2a, 0xf3, 0x18, 0x92, 0x61, 0x3b, 0x8d, 0x33, 0x06, 0xd6, 0x9c, 0x3c, 0x64, - 0x23, 0x7b, 0x46, 0xbf, 0x95, 0x3d, 0x99, 0x7f, 0x70, 0xdd, 0xf7, 0x5b, 0x61, 0x98, 0xbc, 0x1f, - 0x3d, 0x8c, 0x5f, 0xbb, 0x8a, 0xce, 0x82, 0xab, 0xc8, 0x6f, 0xf4, 0x6f, 0xb7, 0x8f, 0x26, 0x0f, - 0x70, 0x31, 0x59, 0xbf, 0x3f, 0x89, 0x1b, 0x1d, 0x8d, 0x97, 0xbf, 0x51, 0x4c, 0xd5, 0x97, 0xf9, - 0x64, 0xa1, 0xc3, 0xa4, 0x75, 0x88, 0x8a, 0x70, 0x78, 0x04, 0xcf, 0x4b, 0xde, 0xe7, 0x44, 0xe6, - 0x6c, 0xe4, 0xaf, 0xb9, 0x02, 0x5a, 0x5b, 0x19, 0xbf, 0xba, 0xe9, 0x2b, 0x93, 0xd2, 0xd9, 0x59, - 0x50, 0x69, 0x41, 0x9a, 0xd0, 0x19, 0x94, 0x1d, 0xf8, 0x22, 0x9e, 0x04, 0xd0, 0x08, 0xf6, 0xeb, - 0x05, 0xf5, 0xb5, 0x82, 0xf7, 0xea, 0x41, 0x7a, 0xf5, 0x60, 0xbc, 0x6a, 0xd0, 0xbd, 0x58, 0xa8, - 0x2b, 0x3d, 0x50, 0xa5, 0xd2, 0x9e, 0x9e, 0x79, 0x61, 0x25, 0x9e, 0x1e, 0xcb, 0x4c, 0x9e, 0xb0, - 0x42, 0xe9, 0x4c, 0xc6, 0x52, 0xcb, 0x9a, 0x6a, 0x66, 0x49, 0xf5, 0xb3, 0xa2, 0xda, 0x59, 0x50, - 0xb3, 0xac, 0xa7, 0x59, 0x96, 0xd3, 0x24, 0xab, 0x59, 0xec, 0x98, 0x81, 0xd6, 0x24, 0xab, 0xca, - 0x20, 0x8c, 0x3b, 0x5e, 0x67, 0xd2, 0x79, 0xea, 0x25, 0xbd, 0xa1, 0xc9, 0xd4, 0xc2, 0xe5, 0x35, - 0x68, 0x0d, 0x0c, 0xb3, 0x69, 0xb9, 0x55, 0x4e, 0x78, 0xa8, 0x97, 0xd7, 0x30, 0x3a, 0xb1, 0xd4, - 0x40, 0x62, 0x0e, 0x28, 0xa6, 0xc0, 0xa2, 0x03, 0x30, 0x4a, 0x40, 0x33, 0xdb, 0x49, 0xf5, 0xb2, - 0x18, 0xc3, 0x96, 0x58, 0xe5, 0x56, 0x58, 0xf2, 0x23, 0xdf, 0x38, 0xc4, 0xe4, 0x47, 0x66, 0x79, - 0x11, 0x8d, 0x49, 0xdb, 0x82, 0x29, 0x05, 0xc1, 0x70, 0xd7, 0x42, 0xc6, 0x48, 0x2d, 0x5e, 0xa0, - 0x98, 0xa7, 0x22, 0x6a, 0x40, 0xd4, 0x80, 0xa8, 0x01, 0x51, 0x83, 0x22, 0x44, 0x0d, 0x94, 0xc2, - 0xb6, 0x4b, 0xc7, 0x5b, 0x25, 0x7c, 0xab, 0x6c, 0x90, 0x61, 0xe9, 0xb0, 0x74, 0x58, 0x3a, 0x2c, - 0xdd, 0x25, 0x03, 0x3f, 0x13, 0xc8, 0x05, 0x07, 0x74, 0x44, 0xbe, 0x28, 0x3f, 0x38, 0x58, 0x83, - 0x84, 0x33, 0x60, 0xe1, 0x0c, 0x68, 0x38, 0x01, 0x1e, 0xba, 0x20, 0xa2, 0x0c, 0x26, 0xb3, 0x1d, - 0xe6, 0x82, 0x03, 0x2e, 0x38, 0xd0, 0x7c, 0x70, 0xba, 0x21, 0xe7, 0xcb, 0xa0, 0x1b, 0xd2, 0xda, - 0xfc, 0x2d, 0xaa, 0x26, 0xdd, 0x90, 0x4b, 0xaa, 0xc9, 0x05, 0x07, 0xd6, 0x0e, 0x81, 0x9d, 0x54, - 0xc6, 0x0c, 0xad, 0xae, 0xb6, 0x5c, 0x70, 0x30, 0x8b, 0x5e, 0x70, 0xc1, 0x01, 0x54, 0x1e, 0x2a, - 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0x73, 0xc1, 0x41, 0x29, 0x9c, 0x16, 0x2e, 0x38, 0xc0, - 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x5c, 0x70, 0xc0, 0x05, - 0x07, 0x06, 0xa6, 0x85, 0x0b, 0x0e, 0xe6, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, - 0x0b, 0x0e, 0x50, 0x4d, 0x57, 0x1c, 0x12, 0x3b, 0xa9, 0x64, 0x1e, 0x56, 0x57, 0x5b, 0x2e, 0x38, - 0x80, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0xbd, 0xe6, 0x79, 0xe7, 0x82, 0x03, 0xf8, - 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0xe6, 0x82, 0x03, 0x18, 0x35, 0x8c, - 0xba, 0x90, 0x92, 0xb8, 0xe0, 0xc0, 0x6e, 0x28, 0xca, 0xc2, 0xc5, 0x06, 0x1a, 0x13, 0x52, 0xf4, - 0x54, 0xeb, 0x4e, 0x65, 0xf6, 0x7d, 0x60, 0x32, 0xd5, 0x6f, 0x2c, 0xb6, 0xe4, 0xad, 0xfa, 0x55, - 0x5a, 0xf5, 0xcb, 0x13, 0xb6, 0xa1, 0x55, 0x9f, 0x56, 0xfd, 0xdc, 0x76, 0x92, 0x56, 0x7d, 0x5a, - 0xf5, 0xcb, 0x07, 0x0a, 0xf6, 0xe0, 0x60, 0x0d, 0x12, 0xce, 0x80, 0x85, 0x33, 0xa0, 0xe1, 0x04, - 0x78, 0xd8, 0xf0, 0x6a, 0x5a, 0xf5, 0xd5, 0xad, 0x3b, 0xad, 0xfa, 0x8a, 0x0f, 0x4e, 0x5c, 0x7f, - 0xbe, 0x0c, 0xe2, 0xfa, 0xd6, 0xe6, 0x6f, 0x51, 0x35, 0x89, 0xeb, 0x2f, 0xa9, 0x26, 0xad, 0xfa, - 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x0a, 0xe6, 0x56, 0x57, 0x5b, 0x5a, 0xf5, 0x67, 0xd1, 0x0b, 0x5a, - 0xf5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x56, 0xfd, 0x52, 0x38, - 0x2d, 0xb4, 0xea, 0xe3, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, 0x9e, 0x77, - 0x5a, 0xf5, 0x69, 0xd5, 0x37, 0x30, 0x2d, 0xb4, 0xea, 0xcf, 0x97, 0x41, 0x0a, 0xc2, 0xda, 0x0e, - 0x2f, 0xaa, 0x26, 0xad, 0xfa, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, - 0x2d, 0xad, 0xfa, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0xd7, 0x3c, 0xef, 0xb4, - 0xea, 0xc3, 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0xad, 0xfa, 0x30, - 0x6a, 0x18, 0x75, 0x21, 0x25, 0xd1, 0xaa, 0xef, 0x48, 0xab, 0xfe, 0xa4, 0x03, 0xbc, 0x2c, 0x9d, - 0xfa, 0x1b, 0x05, 0xd6, 0x59, 0x6d, 0x5d, 0x2d, 0x8c, 0x8e, 0x56, 0x54, 0xe6, 0x2f, 0x24, 0xc3, - 0x76, 0x1a, 0x67, 0x8c, 0xab, 0x39, 0x79, 0xb8, 0x46, 0xf6, 0x6c, 0x7e, 0x2b, 0x7b, 0x22, 0xff, - 0xe0, 0xba, 0xef, 0xb7, 0xc2, 0x30, 0x79, 0x3f, 0x7a, 0x08, 0xbf, 0x76, 0x15, 0x9d, 0x05, 0x57, - 0x91, 0xdf, 0xe8, 0xdf, 0x6e, 0x5f, 0x4c, 0x16, 0xee, 0x4f, 0x02, 0x44, 0x47, 0xe3, 0x75, 0x6f, - 0x14, 0x53, 0xd7, 0x05, 0xf5, 0x5c, 0x69, 0xce, 0x85, 0xea, 0x7c, 0x0b, 0xa5, 0xb9, 0x16, 0x6a, - 0xf3, 0x2c, 0x34, 0x63, 0x9c, 0xfa, 0x31, 0x4d, 0xed, 0x18, 0xa6, 0x59, 0xcc, 0xd2, 0x2c, 0x46, - 0x69, 0x12, 0x93, 0x2c, 0x36, 0xf2, 0x6b, 0xcd, 0xa1, 0xa8, 0x0c, 0xc2, 0xb8, 0xe3, 0x75, 0x26, - 0x7d, 0x23, 0x5e, 0xd2, 0x1b, 0x9a, 0xcc, 0x1c, 0x5a, 0x5e, 0x83, 0xd6, 0xb8, 0x0f, 0x9b, 0x86, - 0x19, 0xe5, 0x70, 0x85, 0x7a, 0x72, 0x8c, 0xc1, 0x47, 0xa5, 0x06, 0x12, 0x73, 0x40, 0x31, 0x05, - 0x96, 0x72, 0x86, 0x45, 0xd4, 0x93, 0x5a, 0x86, 0x0d, 0x2d, 0xca, 0x8d, 0x2c, 0x44, 0x39, 0x88, - 0x72, 0x7c, 0x6f, 0x94, 0x43, 0x21, 0xf8, 0x26, 0x18, 0x26, 0xd8, 0x28, 0x90, 0xfa, 0x69, 0xa9, - 0x9d, 0xcb, 0xea, 0x56, 0x11, 0x8d, 0xeb, 0xe4, 0x13, 0x3f, 0x93, 0x39, 0x0c, 0xf9, 0xab, 0xaa, - 0x80, 0x9a, 0x56, 0xa2, 0xfe, 0xed, 0xae, 0xd7, 0x0d, 0x3e, 0x85, 0xdd, 0xb0, 0x33, 0x7b, 0x67, - 0x52, 0xca, 0x3a, 0x03, 0xe4, 0x47, 0xa5, 0x0a, 0x1d, 0x42, 0xd9, 0x48, 0x99, 0x38, 0xf1, 0xd1, - 0x20, 0x3a, 0x7a, 0xc4, 0x46, 0x8b, 0xc8, 0xa8, 0x13, 0x17, 0x75, 0xa2, 0xa2, 0x4a, 0x4c, 0x8a, - 0x05, 0xbb, 0xd2, 0x91, 0xad, 0xca, 0x42, 0xa2, 0x48, 0x2d, 0xaf, 0xa0, 0x98, 0x9e, 0x52, 0x4f, - 0x2f, 0x6c, 0x92, 0x5e, 0x28, 0x4e, 0x74, 0x88, 0xf4, 0x02, 0xe9, 0x05, 0x73, 0x23, 0x3c, 0x13, - 0xd4, 0x9e, 0xda, 0x10, 0xe5, 0x94, 0x42, 0x26, 0xb7, 0xe4, 0xf7, 0x18, 0x10, 0xce, 0x2f, 0x81, - 0xc1, 0x36, 0x37, 0xdc, 0xe6, 0x06, 0xdc, 0xd4, 0x90, 0xeb, 0x18, 0x74, 0x25, 0xc3, 0xae, 0x6e, - 0xe0, 0x67, 0x02, 0xb9, 0xc7, 0x80, 0xc6, 0xc7, 0x17, 0xe5, 0x07, 0x07, 0x6b, 0x90, 0x70, 0x06, - 0x2c, 0x9c, 0x01, 0x0d, 0x27, 0xc0, 0x43, 0x17, 0x44, 0x94, 0xc1, 0x64, 0xb6, 0xc3, 0xdc, 0x63, - 0xc0, 0x3d, 0x06, 0x9a, 0x0f, 0x4e, 0xd3, 0xe3, 0x7c, 0x19, 0x34, 0x3d, 0x5a, 0x9b, 0xbf, 0x45, - 0xd5, 0xa4, 0xe9, 0x71, 0x49, 0x35, 0xb9, 0xc7, 0xc0, 0xda, 0x21, 0xb0, 0x93, 0xca, 0x34, 0xa1, - 0xd5, 0xd5, 0x96, 0x7b, 0x0c, 0x66, 0xd1, 0x0b, 0xee, 0x31, 0x80, 0xca, 0x43, 0xe5, 0xa1, 0xf2, - 0x50, 0xf9, 0xd2, 0x52, 0x79, 0xee, 0x31, 0x28, 0x85, 0xd3, 0xc2, 0x3d, 0x06, 0xb8, 0x0b, 0xb8, - 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0x92, 0xe7, 0x9d, 0x7b, 0x0c, 0xb8, 0xc7, 0xc0, 0xc0, - 0xb4, 0x70, 0x8f, 0xc1, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0x72, 0x8f, 0x01, - 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, 0x3d, 0x06, 0x90, 0x7a, - 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0xd7, 0x3c, 0xef, 0xdc, 0x63, 0x00, 0x9f, 0xb6, 0x23, - 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0xdc, 0x63, 0x00, 0xa3, 0x86, 0x51, 0x17, 0x52, - 0x12, 0xf7, 0x18, 0x68, 0x8f, 0xb3, 0x5a, 0x1a, 0x56, 0xb4, 0x78, 0x9f, 0x41, 0xd6, 0x0a, 0x5e, - 0x96, 0x51, 0x7f, 0x2a, 0xa3, 0xef, 0x03, 0x93, 0x31, 0xc0, 0x0a, 0xa3, 0xd9, 0x1f, 0x02, 0xad, - 0x7a, 0xcb, 0x7e, 0x95, 0x96, 0xfd, 0xf2, 0x84, 0x6f, 0x68, 0xd9, 0xa7, 0x65, 0x3f, 0xb7, 0x9d, - 0xa4, 0x65, 0x9f, 0x96, 0xfd, 0xf2, 0x81, 0x82, 0x3d, 0x38, 0x58, 0x83, 0x84, 0x33, 0x60, 0xe1, - 0x0c, 0x68, 0x38, 0x01, 0x1e, 0x36, 0xfc, 0x9a, 0x96, 0x7d, 0x75, 0xeb, 0x4e, 0xcb, 0xbe, 0xe2, - 0x83, 0x13, 0xdf, 0x9f, 0x2f, 0x83, 0xf8, 0xbe, 0xb5, 0xf9, 0x5b, 0x54, 0x4d, 0xe2, 0xfb, 0x4b, - 0xaa, 0x49, 0xcb, 0xbe, 0xb5, 0x43, 0x60, 0x27, 0x95, 0xc2, 0xb9, 0xd5, 0xd5, 0x96, 0x96, 0xfd, - 0x59, 0xf4, 0x82, 0x96, 0x7d, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x2f, 0x2d, 0x95, 0xa7, - 0x65, 0xbf, 0x14, 0x4e, 0x0b, 0x2d, 0xfb, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, - 0x0b, 0x92, 0xe7, 0x9d, 0x96, 0x7d, 0x5a, 0xf6, 0x0d, 0x4c, 0x0b, 0x2d, 0xfb, 0xf3, 0x65, 0x90, - 0x82, 0xb0, 0xb6, 0xc3, 0x8b, 0xaa, 0x49, 0xcb, 0x3e, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, - 0xcc, 0xc3, 0xea, 0x6a, 0x4b, 0xcb, 0x3e, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, - 0x35, 0xcf, 0x3b, 0x2d, 0xfb, 0xf0, 0x69, 0x3b, 0xd2, 0x42, 0x49, 0x1f, 0x7c, 0xda, 0x51, 0x3e, - 0x4d, 0xcb, 0x3e, 0x8c, 0x1a, 0x46, 0x5d, 0x48, 0x49, 0xb4, 0xec, 0x3b, 0xd6, 0xb2, 0x3f, 0xe9, - 0x04, 0x2f, 0x4b, 0xc7, 0xfe, 0x46, 0x81, 0x75, 0x57, 0x5b, 0x67, 0x0b, 0xa7, 0xab, 0x15, 0x95, - 0x79, 0x0c, 0xc9, 0xb0, 0x9d, 0xc6, 0x19, 0x03, 0x6b, 0x4e, 0x1e, 0xb2, 0x91, 0x3d, 0xa3, 0xdf, - 0xca, 0x9e, 0xcc, 0x3f, 0xb8, 0xee, 0xfb, 0xad, 0x30, 0x4c, 0xde, 0x8f, 0x1e, 0xc6, 0xaf, 0x5d, - 0x45, 0x67, 0xc1, 0x55, 0xe4, 0x37, 0xfa, 0xb7, 0xbb, 0x47, 0x93, 0x07, 0xb8, 0x98, 0xac, 0xdf, - 0x9f, 0xc4, 0x8d, 0x8e, 0xc6, 0xcb, 0xdf, 0x28, 0xa6, 0xea, 0xcb, 0x7c, 0xb2, 0xd0, 0x61, 0xd2, - 0x3a, 0x44, 0x45, 0x38, 0x3c, 0x82, 0xe7, 0x25, 0xef, 0x73, 0x22, 0x73, 0x36, 0xf2, 0xd7, 0x5c, - 0x01, 0xad, 0xad, 0x8c, 0x5f, 0xdd, 0xf4, 0x95, 0x49, 0xe9, 0xec, 0x2c, 0xa8, 0xb4, 0x20, 0x4d, - 0xe8, 0x0c, 0xca, 0x0e, 0x7c, 0x11, 0x4f, 0x02, 0x68, 0x04, 0xfb, 0xf5, 0x82, 0xfa, 0x5a, 0xc1, - 0x7b, 0xf5, 0x20, 0xbd, 0x7a, 0x30, 0x5e, 0x35, 0xe8, 0x5e, 0x2c, 0xd4, 0x95, 0x1e, 0xa8, 0x52, - 0x69, 0x4f, 0xcf, 0xbc, 0xb0, 0x12, 0x4f, 0x8f, 0x65, 0x26, 0x4f, 0x58, 0xa1, 0x74, 0x26, 0x63, - 0xa9, 0x65, 0x4d, 0x35, 0xb3, 0xa4, 0xfa, 0x59, 0x51, 0xed, 0x2c, 0xa8, 0x59, 0xd6, 0xd3, 0x2c, - 0xcb, 0x69, 0x92, 0xd5, 0x2c, 0x76, 0xcc, 0x40, 0x6b, 0x92, 0x55, 0x65, 0x10, 0xc6, 0x1d, 0xaf, - 0x33, 0xe9, 0x3c, 0xf5, 0x92, 0xde, 0xd0, 0x64, 0x6a, 0xe1, 0xf2, 0x1a, 0xb4, 0x06, 0x86, 0xd9, - 0xb4, 0xdc, 0x2a, 0x27, 0x3c, 0xd4, 0xcb, 0x6b, 0x18, 0x9d, 0x58, 0x6a, 0x20, 0x31, 0x07, 0x14, - 0x53, 0x60, 0xd1, 0x01, 0x18, 0x25, 0xa0, 0x99, 0xed, 0xa4, 0x7a, 0x59, 0x8c, 0x61, 0x4b, 0xac, - 0x72, 0x2b, 0x2c, 0xf9, 0x91, 0x6f, 0x1c, 0x62, 0xf2, 0x23, 0xb3, 0xbc, 0x88, 0xc6, 0xa4, 0x6d, - 0xc1, 0x94, 0x82, 0x60, 0xb8, 0x6b, 0x21, 0x63, 0xa4, 0x16, 0x2f, 0x50, 0xcc, 0x53, 0x11, 0x35, - 0x20, 0x6a, 0x40, 0xd4, 0x80, 0xa8, 0x41, 0x11, 0xa2, 0x06, 0x4a, 0x61, 0xdb, 0xa5, 0xe3, 0xad, - 0x12, 0xbe, 0x55, 0x36, 0xc8, 0xb0, 0x74, 0x58, 0x3a, 0x2c, 0x1d, 0x96, 0xee, 0x92, 0x81, 0x9f, - 0x09, 0xe4, 0x82, 0x03, 0x3a, 0x22, 0x5f, 0x94, 0x1f, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, - 0x06, 0x34, 0x9c, 0x00, 0x0f, 0x5d, 0x10, 0x51, 0x06, 0x93, 0xd9, 0x0e, 0x73, 0xc1, 0x01, 0x17, - 0x1c, 0x68, 0x3e, 0x38, 0xdd, 0x90, 0xf3, 0x65, 0xd0, 0x0d, 0x69, 0x6d, 0xfe, 0x16, 0x55, 0x93, - 0x6e, 0xc8, 0x25, 0xd5, 0xe4, 0x82, 0x03, 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0x63, 0x86, 0x56, 0x57, - 0x5b, 0x2e, 0x38, 0x98, 0x45, 0x2f, 0xb8, 0xe0, 0x00, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, - 0x4b, 0x4b, 0xe5, 0xb9, 0xe0, 0xa0, 0x14, 0x4e, 0x0b, 0x17, 0x1c, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, - 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, 0x9e, 0x77, 0x2e, 0x38, 0xe0, 0x82, 0x03, 0x03, 0xd3, 0xc2, - 0x05, 0x07, 0xf3, 0x65, 0x90, 0x82, 0xb0, 0xb6, 0xc3, 0x8b, 0xaa, 0xc9, 0x05, 0x07, 0xa8, 0xa6, - 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, 0x2d, 0x17, 0x1c, 0x40, 0xea, 0x21, 0xf5, - 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0x73, 0xc1, 0x01, 0x7c, 0xda, 0x8e, 0xb4, 0x50, - 0xd2, 0x07, 0x9f, 0x76, 0x94, 0x4f, 0x73, 0xc1, 0x01, 0x8c, 0x1a, 0x46, 0x5d, 0x48, 0x49, 0x5c, - 0x70, 0x60, 0x37, 0x14, 0x65, 0xe1, 0x62, 0x03, 0x8d, 0x09, 0x29, 0x7a, 0xaa, 0x75, 0xa7, 0x32, - 0xfb, 0x3e, 0x30, 0x99, 0xea, 0x37, 0x16, 0x5b, 0xf2, 0x56, 0xfd, 0x2a, 0xad, 0xfa, 0xe5, 0x09, - 0xdb, 0xd0, 0xaa, 0x4f, 0xab, 0x7e, 0x6e, 0x3b, 0x49, 0xab, 0x3e, 0xad, 0xfa, 0xe5, 0x03, 0x05, - 0x7b, 0x70, 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x6c, 0x78, 0x35, - 0xad, 0xfa, 0xea, 0xd6, 0x9d, 0x56, 0x7d, 0xc5, 0x07, 0x27, 0xae, 0x3f, 0x5f, 0x06, 0x71, 0x7d, - 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0xc4, 0xf5, 0x97, 0x54, 0x93, 0x56, 0x7d, 0x6b, 0x87, 0xc0, 0x4e, - 0x2a, 0x05, 0x73, 0xab, 0xab, 0x2d, 0xad, 0xfa, 0xb3, 0xe8, 0x05, 0xad, 0xfa, 0x50, 0x79, 0xa8, - 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0x4f, 0xab, 0x7e, 0x29, 0x9c, 0x16, 0x5a, 0xf5, 0x71, - 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0xad, 0xfa, 0xb4, 0xea, - 0x1b, 0x98, 0x16, 0x5a, 0xf5, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0x56, - 0x7d, 0x54, 0xd3, 0x15, 0x87, 0xc4, 0x4e, 0x2a, 0x99, 0x87, 0xd5, 0xd5, 0x96, 0x56, 0x7d, 0x48, - 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x5a, 0xf5, 0xe1, 0xd3, 0x76, - 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x56, 0x7d, 0x18, 0x35, 0x8c, 0xba, 0x90, - 0x92, 0x68, 0xd5, 0x77, 0xa4, 0x55, 0x7f, 0xd2, 0x01, 0x5e, 0x96, 0x4e, 0xfd, 0x8d, 0x02, 0xeb, - 0xac, 0xb6, 0xae, 0x16, 0x46, 0x47, 0x2b, 0x2a, 0xf3, 0x17, 0x92, 0x61, 0x3b, 0x8d, 0x33, 0xc6, - 0xd5, 0x9c, 0x3c, 0x5c, 0x23, 0x7b, 0x36, 0xbf, 0x95, 0x3d, 0x91, 0x7f, 0x70, 0xdd, 0xf7, 0x5b, - 0x61, 0x98, 0xbc, 0x1f, 0x3d, 0x84, 0x5f, 0xbb, 0x8a, 0xce, 0x82, 0xab, 0xc8, 0x6f, 0xf4, 0x6f, - 0x77, 0x2f, 0x26, 0x0b, 0xf7, 0x27, 0x01, 0xa2, 0xa3, 0xf1, 0xba, 0x37, 0x8a, 0xa9, 0xeb, 0x82, - 0x7a, 0xae, 0x34, 0xe7, 0x42, 0x75, 0xbe, 0x85, 0xd2, 0x5c, 0x0b, 0xb5, 0x79, 0x16, 0x9a, 0x31, - 0x4e, 0xfd, 0x98, 0xa6, 0x76, 0x0c, 0xd3, 0x2c, 0x66, 0x69, 0x16, 0xa3, 0x34, 0x89, 0x49, 0x16, - 0x1b, 0xf9, 0xb5, 0xe6, 0x50, 0x54, 0x06, 0x61, 0xdc, 0xf1, 0x3a, 0x93, 0xbe, 0x11, 0x2f, 0xe9, - 0x0d, 0x4d, 0x66, 0x0e, 0x2d, 0xaf, 0x41, 0x6b, 0xdc, 0x87, 0x4d, 0xc3, 0x8c, 0x72, 0xb8, 0x42, - 0x3d, 0x39, 0xc6, 0xe0, 0xa3, 0x52, 0x03, 0x89, 0x39, 0xa0, 0x98, 0x02, 0x4b, 0x39, 0xc3, 0x22, - 0xea, 0x49, 0x2d, 0xc3, 0x86, 0x16, 0xe5, 0x46, 0x16, 0xa2, 0x1c, 0x44, 0x39, 0xbe, 0x37, 0xca, - 0xa1, 0x10, 0x7c, 0x13, 0x0c, 0x13, 0x6c, 0x14, 0x48, 0xfd, 0xb4, 0xd4, 0xce, 0x65, 0x75, 0xab, - 0x88, 0xc6, 0x75, 0xf2, 0x89, 0x9f, 0xc9, 0x1c, 0x86, 0xfc, 0x55, 0x55, 0x40, 0x4d, 0x2b, 0xdd, - 0xea, 0x6d, 0x3f, 0xf6, 0xc2, 0xdb, 0xbe, 0x9c, 0x8a, 0xce, 0x60, 0xf8, 0x9e, 0x2c, 0xa1, 0x03, - 0x27, 0x1b, 0x15, 0x13, 0x27, 0x39, 0x1a, 0xa4, 0x46, 0x8f, 0xc4, 0x68, 0x91, 0x16, 0x75, 0x92, - 0xa2, 0x4e, 0x4a, 0x54, 0x49, 0x48, 0xb1, 0x20, 0x56, 0x3a, 0x8a, 0x55, 0x59, 0x48, 0x0a, 0xa9, - 0xe5, 0x10, 0x14, 0x53, 0x51, 0xea, 0xa9, 0x84, 0x4d, 0x52, 0x09, 0xc5, 0x89, 0x04, 0x91, 0x4a, - 0x20, 0x95, 0x60, 0x6e, 0x84, 0x67, 0x82, 0xda, 0x53, 0x1b, 0xa2, 0x9c, 0x3e, 0xc8, 0xe4, 0x96, - 0xfc, 0xce, 0x02, 0x42, 0xf7, 0x25, 0x30, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, - 0x1d, 0x83, 0xae, 0x64, 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, 0x77, 0x16, 0xd0, 0xe4, 0xf8, 0xa2, - 0xfc, 0xe0, 0x60, 0x0d, 0x12, 0xce, 0x80, 0x85, 0x33, 0xa0, 0xe1, 0x04, 0x78, 0xe8, 0x82, 0x88, - 0x32, 0x98, 0xcc, 0x76, 0x98, 0x3b, 0x0b, 0xb8, 0xb3, 0x40, 0xf3, 0xc1, 0x69, 0x70, 0x9c, 0x2f, - 0x83, 0x06, 0x47, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0x34, 0x38, 0x2e, 0xa9, 0x26, 0x77, 0x16, 0x58, - 0x3b, 0x04, 0x76, 0x52, 0x99, 0x1c, 0xb4, 0xba, 0xda, 0x72, 0x67, 0xc1, 0x2c, 0x7a, 0xc1, 0x9d, - 0x05, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0xcf, 0x9d, 0x05, 0xa5, 0x70, - 0x5a, 0xb8, 0xb3, 0x00, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x41, 0xf2, 0xbc, - 0x73, 0x67, 0x01, 0x77, 0x16, 0x18, 0x98, 0x16, 0xee, 0x2c, 0x98, 0x2f, 0x83, 0x14, 0x84, 0xb5, - 0x1d, 0x5e, 0x54, 0x4d, 0xee, 0x2c, 0x40, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, - 0x5d, 0x6d, 0xb9, 0xb3, 0x00, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, - 0x9d, 0x3b, 0x0b, 0xe0, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x3b, - 0x0b, 0x60, 0xd4, 0x30, 0xea, 0x42, 0x4a, 0xe2, 0xce, 0x02, 0xd5, 0xd1, 0x55, 0xf3, 0x11, 0x45, - 0x8b, 0x37, 0x16, 0x64, 0x0d, 0xe0, 0x65, 0x19, 0xe6, 0xa7, 0x32, 0xdc, 0x3e, 0x30, 0x19, 0xf4, - 0xab, 0x30, 0x7c, 0xfd, 0x21, 0xbc, 0xaa, 0x37, 0xea, 0x57, 0x69, 0xd4, 0x2f, 0x4f, 0xd0, 0x86, - 0x46, 0x7d, 0x1a, 0xf5, 0x73, 0xdb, 0x49, 0x1a, 0xf5, 0x69, 0xd4, 0x2f, 0x1f, 0x28, 0xd8, 0x83, - 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, 0xe0, 0x61, 0xc3, 0xaa, 0x69, 0xd4, - 0x57, 0xb7, 0xee, 0x34, 0xea, 0x2b, 0x3e, 0x38, 0x51, 0xfd, 0xf9, 0x32, 0x88, 0xea, 0x5b, 0x9b, - 0xbf, 0x45, 0xd5, 0x24, 0xaa, 0xbf, 0xa4, 0x9a, 0x34, 0xea, 0x5b, 0x3b, 0x04, 0x76, 0x52, 0x29, - 0x97, 0x5b, 0x5d, 0x6d, 0x69, 0xd4, 0x9f, 0x45, 0x2f, 0x68, 0xd4, 0x87, 0xca, 0x43, 0xe5, 0xa1, - 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x1a, 0xf5, 0x4b, 0xe1, 0xb4, 0xd0, 0xa8, 0x8f, 0xbb, 0x80, - 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x69, 0xd4, 0xa7, 0x51, 0xdf, 0xc0, - 0xb4, 0xd0, 0xa8, 0x3f, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, 0x34, 0xea, 0xa3, - 0x9a, 0xae, 0x38, 0x24, 0x76, 0x52, 0xc9, 0x3c, 0xac, 0xae, 0xb6, 0x34, 0xea, 0x43, 0xea, 0x21, - 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0xd3, 0xa8, 0x0f, 0x9f, 0xb6, 0x23, 0x2d, - 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x34, 0xea, 0xc3, 0xa8, 0x61, 0xd4, 0x85, 0x94, 0x44, - 0xa3, 0xbe, 0x13, 0x8d, 0xfa, 0x93, 0xfe, 0xef, 0xb2, 0xf4, 0xe9, 0x6f, 0x14, 0x58, 0x63, 0xb5, - 0x35, 0xb5, 0x20, 0x1a, 0x5a, 0x51, 0x99, 0xbd, 0x90, 0x0c, 0xdb, 0x69, 0x9c, 0xb1, 0xad, 0xe6, - 0xe4, 0xd1, 0x1a, 0xd9, 0x93, 0xf9, 0xad, 0xec, 0x79, 0xfc, 0x83, 0xeb, 0xbe, 0xdf, 0x0a, 0xc3, - 0xe4, 0xfd, 0xe8, 0x11, 0xfc, 0xda, 0x55, 0x74, 0x16, 0x5c, 0x45, 0xfe, 0x51, 0xf5, 0x43, 0x3f, - 0xae, 0xdf, 0xf6, 0x63, 0x7f, 0x12, 0x1a, 0x3a, 0x1a, 0xaf, 0x7a, 0xa3, 0x98, 0x7a, 0x2e, 0xf3, - 0xc9, 0x42, 0x27, 0x47, 0xeb, 0xc4, 0xb8, 0x7b, 0x52, 0x04, 0x0f, 0x47, 0x4e, 0x87, 0x42, 0xe6, - 0x20, 0xe4, 0xaf, 0xa6, 0x02, 0x2a, 0x5a, 0x99, 0xbc, 0xa7, 0xdb, 0x7e, 0x57, 0xae, 0xd3, 0x7f, - 0x16, 0x22, 0xba, 0x27, 0x4b, 0xe8, 0xb0, 0xc9, 0x0e, 0x6f, 0x11, 0x0f, 0xe8, 0x6b, 0x04, 0xee, - 0xf5, 0x02, 0xf4, 0x5a, 0x81, 0x78, 0xf5, 0x80, 0xbb, 0x7a, 0x60, 0x5d, 0x35, 0x80, 0x5e, 0x2c, - 0x78, 0x95, 0x1e, 0x8e, 0x52, 0x59, 0xf0, 0xf3, 0xc4, 0x55, 0xf9, 0x5e, 0xd7, 0x96, 0x96, 0x77, - 0xa9, 0x34, 0xf1, 0x4a, 0x2d, 0x1b, 0xaa, 0x99, 0xfd, 0xd4, 0xcf, 0x76, 0x6a, 0x67, 0x37, 0xcd, - 0xb2, 0x99, 0x66, 0xd9, 0x4b, 0x93, 0x6c, 0x65, 0xb1, 0xa3, 0x02, 0x5a, 0x13, 0xaa, 0x2a, 0xed, - 0xa9, 0x0d, 0x51, 0x9e, 0x40, 0x98, 0xc9, 0x2d, 0xf9, 0x08, 0xc2, 0x4d, 0x46, 0x10, 0x16, 0xdf, - 0x60, 0x9b, 0x1b, 0x6e, 0x73, 0x03, 0x6e, 0x6a, 0xc8, 0x75, 0x0c, 0xba, 0x92, 0x61, 0x57, 0x37, - 0xf0, 0x33, 0x81, 0x8c, 0x20, 0xa4, 0x66, 0xf1, 0x45, 0xf9, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, 0x01, - 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xd0, 0x05, 0x11, 0x65, 0x30, 0x99, 0xed, 0x30, 0x23, 0x08, - 0x19, 0x41, 0xa8, 0xf9, 0xe0, 0xd4, 0x2b, 0xce, 0x97, 0x41, 0xbd, 0xa2, 0xb5, 0xf9, 0x5b, 0x54, - 0x4d, 0xea, 0x15, 0x97, 0x54, 0x93, 0x11, 0x84, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x1a, 0x01, 0x57, - 0x57, 0x5b, 0x46, 0x10, 0xce, 0xa2, 0x17, 0x8c, 0x20, 0x84, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, - 0xf9, 0xd2, 0x52, 0x79, 0x46, 0x10, 0x96, 0xc2, 0x69, 0x61, 0x04, 0x21, 0xee, 0x02, 0xee, 0x02, - 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0x67, 0x04, 0x21, 0x23, 0x08, 0x0d, 0x4c, 0x0b, - 0x23, 0x08, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0x11, 0x84, 0xa8, 0xa6, - 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, 0x2d, 0x23, 0x08, 0x21, 0xf5, 0x90, 0x7a, - 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0xaf, 0x79, 0xde, 0x19, 0x41, 0x08, 0x9f, 0xb6, 0x23, 0x2d, 0x94, - 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x8c, 0x20, 0x84, 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0x11, - 0x84, 0x06, 0x63, 0xab, 0x6e, 0xfb, 0xe3, 0x4f, 0xb8, 0x37, 0x82, 0x30, 0x6b, 0x00, 0x2f, 0xcb, - 0x0c, 0x42, 0x95, 0x79, 0x75, 0x41, 0x1a, 0xea, 0x77, 0xea, 0x4f, 0xc4, 0x96, 0xbc, 0x51, 0xbf, - 0x4a, 0xa3, 0x7e, 0x79, 0x82, 0x36, 0x34, 0xea, 0xd3, 0xa8, 0x9f, 0xdb, 0x4e, 0xd2, 0xa8, 0x4f, - 0xa3, 0x7e, 0xf9, 0x40, 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, - 0x00, 0x0f, 0x1b, 0x56, 0x4d, 0xa3, 0xbe, 0xba, 0x75, 0xa7, 0x51, 0x5f, 0xf1, 0xc1, 0x89, 0xea, - 0xcf, 0x97, 0x41, 0x54, 0xdf, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0x51, 0xfd, 0x25, 0xd5, 0xa4, 0x51, - 0xdf, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0xb9, 0xdc, 0xea, 0x6a, 0x4b, 0xa3, 0xfe, 0x2c, 0x7a, 0x41, - 0xa3, 0x3e, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0xd3, 0xa8, 0x5f, 0x0a, - 0xa7, 0x85, 0x46, 0x7d, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xc9, 0xf3, - 0x4e, 0xa3, 0x3e, 0x8d, 0xfa, 0x06, 0xa6, 0x85, 0x46, 0xfd, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, - 0xe1, 0x45, 0xd5, 0xa4, 0x51, 0x1f, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, 0x4a, 0xe6, 0x61, 0x75, - 0xb5, 0xa5, 0x51, 0x1f, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, 0x9d, - 0x46, 0x7d, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0xa6, 0x51, 0x1f, - 0x46, 0x0d, 0xa3, 0x2e, 0xa4, 0x24, 0x1a, 0xf5, 0x9d, 0x68, 0xd4, 0x9f, 0xf4, 0x7f, 0x97, 0xa5, - 0x4f, 0x7f, 0xa3, 0xc0, 0x1a, 0xab, 0xad, 0xa9, 0x05, 0xd1, 0xd0, 0x8a, 0xca, 0xec, 0x85, 0x64, - 0xd8, 0x4e, 0xe3, 0x8c, 0x6d, 0x35, 0x27, 0x8f, 0xd6, 0xc8, 0x9e, 0xcc, 0x6f, 0x65, 0xcf, 0xe3, - 0x1f, 0x5c, 0xf7, 0xfd, 0x56, 0x18, 0x26, 0xef, 0x47, 0x8f, 0xe0, 0xd7, 0xae, 0xa2, 0xb3, 0xe0, - 0x2a, 0xf2, 0x8f, 0xaa, 0x1f, 0xfa, 0xf1, 0x87, 0x7e, 0x77, 0xe0, 0x4f, 0x42, 0x43, 0x47, 0xe3, - 0x55, 0x6f, 0x14, 0x53, 0xcf, 0x65, 0x3e, 0x59, 0xe8, 0xe4, 0x68, 0x9d, 0x18, 0x77, 0x4f, 0x8a, - 0xe0, 0xe1, 0xc8, 0xe9, 0x50, 0xc8, 0x1c, 0x84, 0xfc, 0xd5, 0x54, 0x40, 0x45, 0x2b, 0xdd, 0xd7, - 0xa3, 0xf7, 0x14, 0xf5, 0x6f, 0xb7, 0xbd, 0x9b, 0x61, 0x37, 0x8d, 0xda, 0xc1, 0x40, 0x2e, 0x5b, - 0x30, 0x0b, 0x16, 0x3d, 0x2a, 0x55, 0xe8, 0x00, 0xca, 0x0e, 0x74, 0x11, 0x0f, 0xf2, 0x6b, 0x04, - 0xf3, 0xf5, 0x82, 0xf6, 0x5a, 0xc1, 0x79, 0xf5, 0x20, 0xbc, 0x7a, 0xb0, 0x5d, 0x35, 0xa8, 0x5e, - 0x2c, 0xc8, 0x95, 0x1e, 0x98, 0x52, 0x59, 0xf0, 0xfd, 0xc4, 0x55, 0xf9, 0x5e, 0x27, 0x97, 0x96, - 0xc7, 0xa9, 0x34, 0x05, 0x4b, 0x2d, 0x43, 0xaa, 0x99, 0x11, 0xd5, 0xcf, 0x80, 0x6a, 0x67, 0x3c, - 0xcd, 0x32, 0x9c, 0x66, 0x19, 0x4d, 0x93, 0x0c, 0x66, 0xb1, 0x23, 0x05, 0x5a, 0x53, 0xab, 0x2a, - 0xed, 0xa9, 0x0d, 0x51, 0x9e, 0x4a, 0x98, 0xc9, 0x2d, 0xf9, 0x58, 0xc2, 0x4d, 0xc6, 0x12, 0x16, - 0xdf, 0x60, 0x9b, 0x1b, 0x6e, 0x73, 0x03, 0x6e, 0x6a, 0xc8, 0x75, 0x0c, 0xba, 0x92, 0x61, 0x57, - 0x37, 0xf0, 0x33, 0x81, 0x8c, 0x25, 0xa4, 0x8e, 0xf1, 0x45, 0xf9, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, - 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xd0, 0x05, 0x11, 0x65, 0x30, 0x99, 0xed, 0x30, 0x63, - 0x09, 0x19, 0x4b, 0xa8, 0xf9, 0xe0, 0xd4, 0x30, 0xce, 0x97, 0x41, 0x0d, 0xa3, 0xb5, 0xf9, 0x5b, - 0x54, 0x4d, 0x6a, 0x18, 0x97, 0x54, 0x93, 0xb1, 0x84, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x9a, 0x03, - 0x57, 0x57, 0x5b, 0xc6, 0x12, 0xce, 0xa2, 0x17, 0x8c, 0x25, 0x84, 0xca, 0x43, 0xe5, 0xa1, 0xf2, - 0x50, 0xf9, 0xd2, 0x52, 0x79, 0xc6, 0x12, 0x96, 0xc2, 0x69, 0x61, 0x2c, 0x21, 0xee, 0x02, 0xee, - 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0x67, 0x2c, 0x21, 0x63, 0x09, 0x0d, 0x4c, - 0x0b, 0x63, 0x09, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0xb1, 0x84, 0xa8, - 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, 0x2d, 0x63, 0x09, 0x21, 0xf5, 0x90, - 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0xaf, 0x79, 0xde, 0x19, 0x4b, 0x08, 0x9f, 0xb6, 0x23, 0x2d, - 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x8c, 0x25, 0x84, 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, - 0xb1, 0x84, 0xba, 0xa3, 0xac, 0x1e, 0x19, 0x56, 0xb4, 0x38, 0xa0, 0x30, 0x6b, 0x05, 0x2f, 0xcb, - 0x84, 0x42, 0x95, 0x69, 0x76, 0x41, 0x1a, 0xea, 0xf7, 0xec, 0x4f, 0xc4, 0x96, 0xbc, 0x65, 0xbf, - 0x4a, 0xcb, 0x7e, 0x79, 0xc2, 0x37, 0xb4, 0xec, 0xd3, 0xb2, 0x9f, 0xdb, 0x4e, 0xd2, 0xb2, 0x4f, - 0xcb, 0x7e, 0xf9, 0x40, 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, - 0x00, 0x0f, 0x1b, 0x7e, 0x4d, 0xcb, 0xbe, 0xba, 0x75, 0xa7, 0x65, 0x5f, 0xf1, 0xc1, 0x89, 0xef, - 0xcf, 0x97, 0x41, 0x7c, 0xdf, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0xf1, 0xfd, 0x25, 0xd5, 0xa4, 0x65, - 0xdf, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0xe1, 0xdc, 0xea, 0x6a, 0x4b, 0xcb, 0xfe, 0x2c, 0x7a, 0x41, - 0xcb, 0x3e, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0xd3, 0xb2, 0x5f, 0x0a, - 0xa7, 0x85, 0x96, 0x7d, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xc9, 0xf3, - 0x4e, 0xcb, 0x3e, 0x2d, 0xfb, 0x06, 0xa6, 0x85, 0x96, 0xfd, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, - 0xe1, 0x45, 0xd5, 0xa4, 0x65, 0x1f, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, 0x4a, 0xe6, 0x61, 0x75, - 0xb5, 0xa5, 0x65, 0x1f, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, 0x9d, - 0x96, 0x7d, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0xa6, 0x65, 0x1f, - 0x46, 0x0d, 0xa3, 0x2e, 0xa4, 0x24, 0x5a, 0xf6, 0x1d, 0x6b, 0xd9, 0x9f, 0x74, 0x82, 0x97, 0xa5, - 0x63, 0x7f, 0xa3, 0xc0, 0xba, 0xab, 0xad, 0xb3, 0x85, 0xd3, 0xd5, 0x8a, 0xca, 0x3c, 0x86, 0x64, - 0xd8, 0x4e, 0xe3, 0x8c, 0x81, 0x35, 0x27, 0x0f, 0xd9, 0xc8, 0x9e, 0xd1, 0x6f, 0x65, 0x4f, 0xe6, - 0x1f, 0x5c, 0xf7, 0xfd, 0x56, 0x18, 0x26, 0xef, 0x47, 0x0f, 0xe3, 0xd7, 0xae, 0xa2, 0xb3, 0xe0, - 0x2a, 0xf2, 0x8f, 0x5e, 0x7f, 0xe8, 0xc7, 0x8d, 0xfe, 0xed, 0xf6, 0xf1, 0x74, 0xfd, 0xfe, 0x24, - 0x6e, 0x74, 0x34, 0x5e, 0xfe, 0x46, 0x31, 0x55, 0x5f, 0xe6, 0x93, 0x85, 0x0e, 0x93, 0xd6, 0x21, - 0x2a, 0xc2, 0xe1, 0x11, 0x3c, 0x2f, 0x79, 0x9f, 0x13, 0x99, 0xb3, 0x91, 0xbf, 0xe6, 0x0a, 0x68, - 0x6d, 0xe5, 0xde, 0xab, 0x1b, 0xc6, 0x93, 0xdd, 0x90, 0xd2, 0xdc, 0x59, 0x68, 0xe9, 0x11, 0x99, - 0x42, 0xe7, 0x51, 0x76, 0xf8, 0x8b, 0x78, 0x42, 0x40, 0x23, 0xf0, 0xaf, 0x17, 0xe0, 0xd7, 0x0a, - 0xe4, 0xab, 0x07, 0xec, 0xd5, 0x03, 0xf3, 0xaa, 0x01, 0xf8, 0x62, 0x21, 0xb0, 0xf4, 0x70, 0x95, - 0xca, 0x82, 0x4f, 0x28, 0xae, 0xca, 0xf7, 0xba, 0xbe, 0xb4, 0x3c, 0x51, 0xa5, 0x89, 0x59, 0x6a, - 0xd9, 0x54, 0xcd, 0xec, 0xa9, 0x7e, 0xb6, 0x54, 0x3b, 0x3b, 0x6a, 0x96, 0x0d, 0x35, 0xcb, 0x7e, - 0x9a, 0x64, 0x3b, 0x8b, 0x1d, 0x4b, 0xd0, 0x9a, 0x70, 0x55, 0x69, 0x4f, 0x6d, 0x88, 0xf2, 0x04, - 0xc3, 0x4c, 0x6e, 0xc9, 0x47, 0x18, 0x6e, 0x32, 0xc2, 0xb0, 0xf8, 0x06, 0xdb, 0xdc, 0x70, 0x9b, - 0x1b, 0x70, 0x53, 0x43, 0xae, 0x63, 0xd0, 0x95, 0x0c, 0xbb, 0xba, 0x81, 0x9f, 0x09, 0x64, 0x84, - 0x21, 0x35, 0x8f, 0x2f, 0xca, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, - 0x80, 0x87, 0x2e, 0x88, 0x28, 0x83, 0xc9, 0x6c, 0x87, 0x19, 0x61, 0xc8, 0x08, 0x43, 0xcd, 0x07, - 0xa7, 0xde, 0x71, 0xbe, 0x0c, 0xea, 0x1d, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0x52, 0xef, 0xb8, 0xa4, - 0x9a, 0x8c, 0x30, 0xb4, 0x76, 0x08, 0xec, 0xa4, 0xd2, 0x48, 0xb8, 0xba, 0xda, 0x32, 0xc2, 0x70, - 0x16, 0xbd, 0x60, 0x84, 0x21, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0x33, - 0xc2, 0xb0, 0x14, 0x4e, 0x0b, 0x23, 0x0c, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, - 0x17, 0x24, 0xcf, 0x3b, 0x23, 0x0c, 0x19, 0x61, 0x68, 0x60, 0x5a, 0x18, 0x61, 0x38, 0x5f, 0x06, - 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, 0x8c, 0x30, 0x44, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, - 0x92, 0x79, 0x58, 0x5d, 0x6d, 0x19, 0x61, 0x08, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, - 0x7a, 0xcd, 0xf3, 0xce, 0x08, 0x43, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, - 0x9f, 0x66, 0x84, 0x21, 0x8c, 0x1a, 0x46, 0x5d, 0x48, 0x49, 0x8c, 0x30, 0xb4, 0x9a, 0x6c, 0x95, - 0x8d, 0x2a, 0x5a, 0x1c, 0x60, 0x98, 0x35, 0x82, 0x97, 0x65, 0x82, 0xa1, 0xca, 0x8c, 0xbb, 0x20, - 0x0d, 0xf5, 0x3b, 0xf6, 0x27, 0x62, 0x4b, 0xde, 0xb0, 0x5f, 0xa5, 0x61, 0xbf, 0x3c, 0xc1, 0x1b, - 0x1a, 0xf6, 0x69, 0xd8, 0xcf, 0x6d, 0x27, 0x69, 0xd8, 0xa7, 0x61, 0xbf, 0x7c, 0xa0, 0x60, 0x0f, - 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x0d, 0xbb, 0xa6, 0x61, - 0x5f, 0xdd, 0xba, 0xd3, 0xb0, 0xaf, 0xf8, 0xe0, 0x44, 0xf7, 0xe7, 0xcb, 0x20, 0xba, 0x6f, 0x6d, - 0xfe, 0x16, 0x55, 0x93, 0xe8, 0xfe, 0x92, 0x6a, 0xd2, 0xb0, 0x6f, 0xed, 0x10, 0xd8, 0x49, 0xa5, - 0x6c, 0x6e, 0x75, 0xb5, 0xa5, 0x61, 0x7f, 0x16, 0xbd, 0xa0, 0x61, 0x1f, 0x2a, 0x0f, 0x95, 0x87, - 0xca, 0x43, 0xe5, 0x4b, 0x4b, 0xe5, 0x69, 0xd8, 0x2f, 0x85, 0xd3, 0x42, 0xc3, 0x3e, 0xee, 0x02, - 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0xa7, 0x61, 0x9f, 0x86, 0x7d, 0x03, - 0xd3, 0x42, 0xc3, 0xfe, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0xd2, 0xb0, 0x8f, - 0x6a, 0xba, 0xe2, 0x90, 0xd8, 0x49, 0x25, 0xf3, 0xb0, 0xba, 0xda, 0xd2, 0xb0, 0x0f, 0xa9, 0x87, - 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0x4e, 0xc3, 0x3e, 0x7c, 0xda, 0x8e, 0xb4, - 0x50, 0xd2, 0x07, 0x9f, 0x76, 0x94, 0x4f, 0xd3, 0xb0, 0x0f, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, - 0x0d, 0xfb, 0x4e, 0x35, 0xec, 0x4f, 0xfa, 0xc0, 0xcb, 0xd2, 0xaf, 0xbf, 0x51, 0x60, 0xcd, 0xd5, - 0xd6, 0xd8, 0x82, 0x69, 0x6a, 0x45, 0x65, 0x16, 0x43, 0x32, 0x6c, 0xa7, 0x71, 0xc6, 0xbe, 0x9a, - 0x93, 0x47, 0x6c, 0x64, 0x4f, 0xe8, 0xb7, 0xb2, 0xe7, 0xf2, 0x0f, 0xae, 0xfb, 0x7e, 0x2b, 0x0c, - 0x93, 0xf7, 0xa3, 0x47, 0xf1, 0x6b, 0x57, 0xd1, 0x59, 0x70, 0x15, 0xf9, 0x47, 0xaf, 0x3f, 0xf4, - 0xe3, 0x46, 0xff, 0x76, 0xfb, 0x62, 0xb2, 0x7a, 0x7f, 0x12, 0x31, 0x3a, 0x1a, 0x2f, 0x7e, 0xa3, - 0x98, 0x6a, 0x2f, 0xf3, 0xc9, 0x42, 0x07, 0x49, 0xeb, 0x00, 0xb9, 0x7f, 0x70, 0x04, 0xcf, 0x4a, - 0xbe, 0x67, 0x44, 0xe6, 0x5c, 0xe4, 0xaf, 0xb5, 0x02, 0x1a, 0x5b, 0x99, 0xbd, 0xb6, 0x5d, 0xef, - 0x66, 0xd8, 0x4d, 0x27, 0xfb, 0x21, 0xa5, 0xb7, 0xb3, 0x90, 0xd2, 0xa3, 0x52, 0x85, 0xce, 0xa3, - 0xec, 0xd8, 0x17, 0xf1, 0x54, 0x80, 0x46, 0xc8, 0x5f, 0x2f, 0xb4, 0xaf, 0x15, 0xc2, 0x57, 0x0f, - 0xd5, 0xab, 0x87, 0xe4, 0x55, 0x43, 0xef, 0xc5, 0x42, 0x60, 0xe9, 0xb1, 0x2a, 0x95, 0x05, 0x8f, - 0x50, 0x5c, 0x95, 0xef, 0xf5, 0x7b, 0x69, 0xf9, 0xa1, 0x4a, 0xb3, 0xb2, 0xd4, 0xf2, 0xa8, 0x9a, - 0x79, 0x53, 0xfd, 0x3c, 0xa9, 0x76, 0x5e, 0xd4, 0x2c, 0x0f, 0x6a, 0x96, 0xf7, 0x34, 0xc9, 0x73, - 0x16, 0x3b, 0x8e, 0xa0, 0x35, 0xdb, 0xaa, 0xd2, 0x9e, 0xda, 0x10, 0xe5, 0xd9, 0x85, 0x99, 0xdc, - 0x92, 0x0f, 0x2f, 0xdc, 0x64, 0x78, 0x61, 0xf1, 0x0d, 0xb6, 0xb9, 0xe1, 0x36, 0x37, 0xe0, 0xa6, - 0x86, 0x5c, 0xc7, 0xa0, 0x2b, 0x19, 0x76, 0x75, 0x03, 0x3f, 0x13, 0xc8, 0xf0, 0x42, 0xaa, 0x1d, - 0x5f, 0x94, 0x1f, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, 0x00, 0x0f, 0x5d, - 0x10, 0x51, 0x06, 0x93, 0xd9, 0x0e, 0x33, 0xbc, 0x90, 0xe1, 0x85, 0x9a, 0x0f, 0x4e, 0xa5, 0xe3, - 0x7c, 0x19, 0x54, 0x3a, 0x5a, 0x9b, 0xbf, 0x45, 0xd5, 0xa4, 0xd2, 0x71, 0x49, 0x35, 0x19, 0x5e, - 0x68, 0xed, 0x10, 0xd8, 0x49, 0xa5, 0x85, 0x70, 0x75, 0xb5, 0x65, 0x78, 0xe1, 0x2c, 0x7a, 0xc1, - 0xf0, 0x42, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x2f, 0x2d, 0x95, 0x67, 0x78, 0x61, 0x29, - 0x9c, 0x16, 0x86, 0x17, 0xe2, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, 0x9e, - 0x77, 0x86, 0x17, 0x32, 0xbc, 0xd0, 0xc0, 0xb4, 0x30, 0xbc, 0x70, 0xbe, 0x0c, 0x52, 0x10, 0xd6, - 0x76, 0x78, 0x51, 0x35, 0x19, 0x5e, 0x88, 0x6a, 0xba, 0xe2, 0x90, 0xd8, 0x49, 0x25, 0xf3, 0xb0, - 0xba, 0xda, 0x32, 0xbc, 0x10, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, - 0x9d, 0xe1, 0x85, 0xf0, 0x69, 0x3b, 0xd2, 0x42, 0x49, 0x1f, 0x7c, 0xda, 0x51, 0x3e, 0xcd, 0xf0, - 0x42, 0x18, 0x35, 0x8c, 0xba, 0x90, 0x92, 0x18, 0x5e, 0x68, 0x33, 0xd9, 0xea, 0xde, 0xb0, 0xa2, - 0xc5, 0xf1, 0x85, 0x59, 0x2b, 0x78, 0x59, 0xe6, 0x17, 0xaa, 0xcc, 0xb8, 0x0b, 0xd2, 0x50, 0xbf, - 0x67, 0x7f, 0x22, 0xb6, 0xe4, 0x2d, 0xfb, 0x55, 0x5a, 0xf6, 0xcb, 0x13, 0xbe, 0xa1, 0x65, 0x9f, - 0x96, 0xfd, 0xdc, 0x76, 0x92, 0x96, 0x7d, 0x5a, 0xf6, 0xcb, 0x07, 0x0a, 0xf6, 0xe0, 0x60, 0x0d, - 0x12, 0xce, 0x80, 0x85, 0x33, 0xa0, 0xe1, 0x04, 0x78, 0xd8, 0xf0, 0x6b, 0x5a, 0xf6, 0xd5, 0xad, - 0x3b, 0x2d, 0xfb, 0x8a, 0x0f, 0x4e, 0x7c, 0x7f, 0xbe, 0x0c, 0xe2, 0xfb, 0xd6, 0xe6, 0x6f, 0x51, - 0x35, 0x89, 0xef, 0x2f, 0xa9, 0x26, 0x2d, 0xfb, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x0a, 0xe7, 0x56, - 0x57, 0x5b, 0x5a, 0xf6, 0x67, 0xd1, 0x0b, 0x5a, 0xf6, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, - 0xbe, 0xb4, 0x54, 0x9e, 0x96, 0xfd, 0x52, 0x38, 0x2d, 0xb4, 0xec, 0xe3, 0x2e, 0xe0, 0x2e, 0xe0, - 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, 0x9e, 0x77, 0x5a, 0xf6, 0x69, 0xd9, 0x37, 0x30, 0x2d, 0xb4, - 0xec, 0xcf, 0x97, 0x41, 0x0a, 0xc2, 0xda, 0x0e, 0x2f, 0xaa, 0x26, 0x2d, 0xfb, 0xa8, 0xa6, 0x2b, - 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, 0x2d, 0x2d, 0xfb, 0x90, 0x7a, 0x48, 0x3d, 0xa4, - 0x1e, 0x52, 0x0f, 0xa9, 0xd7, 0x3c, 0xef, 0xb4, 0xec, 0xc3, 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, - 0xf0, 0x69, 0x47, 0xf9, 0x34, 0x2d, 0xfb, 0x30, 0x6a, 0x18, 0x75, 0x21, 0x25, 0xd1, 0xb2, 0xef, - 0x58, 0xcb, 0xfe, 0xa4, 0x13, 0xbc, 0x2c, 0x1d, 0xfb, 0x1b, 0x05, 0xd6, 0x5d, 0x6d, 0x9d, 0x2d, - 0x9c, 0xae, 0x56, 0x54, 0xe6, 0x31, 0x24, 0xc3, 0x76, 0x1a, 0x67, 0x0c, 0xac, 0x39, 0x79, 0xc8, - 0x46, 0xf6, 0x8c, 0x7e, 0x2b, 0x7b, 0x32, 0xff, 0xe0, 0xba, 0xef, 0xb7, 0xc2, 0x30, 0x79, 0x3f, - 0x7a, 0x18, 0xbf, 0x76, 0x15, 0x9d, 0x05, 0x57, 0x91, 0x7f, 0xf4, 0xfa, 0x43, 0x3f, 0x6e, 0xf4, - 0x6f, 0x77, 0x8f, 0xa7, 0xeb, 0xf7, 0x27, 0x71, 0xa3, 0xa3, 0xf1, 0xf2, 0x37, 0x8a, 0xa9, 0xfa, - 0x32, 0x9f, 0x2c, 0x74, 0x98, 0xb4, 0x0e, 0x51, 0x11, 0x0e, 0x8f, 0xe0, 0x79, 0xc9, 0xfb, 0x9c, - 0xc8, 0x9c, 0x8d, 0xfc, 0x35, 0x57, 0x40, 0x6b, 0x2b, 0xf7, 0x5e, 0xdd, 0x30, 0x9e, 0xec, 0x86, - 0x94, 0xe6, 0xce, 0x42, 0x4b, 0x8f, 0xc8, 0x14, 0x3a, 0x8f, 0xb2, 0xc3, 0x5f, 0xc4, 0x13, 0x02, - 0x1a, 0x81, 0x7f, 0xbd, 0x00, 0xbf, 0x56, 0x20, 0x5f, 0x3d, 0x60, 0xaf, 0x1e, 0x98, 0x57, 0x0d, - 0xc0, 0x17, 0x0b, 0x81, 0xa5, 0x87, 0xab, 0x54, 0x16, 0x7c, 0x42, 0x71, 0x55, 0xbe, 0xd7, 0xf5, - 0xa5, 0xe5, 0x89, 0x2a, 0x4d, 0xcc, 0x52, 0xcb, 0xa6, 0x6a, 0x66, 0x4f, 0xf5, 0xb3, 0xa5, 0xda, - 0xd9, 0x51, 0xb3, 0x6c, 0xa8, 0x59, 0xf6, 0xd3, 0x24, 0xdb, 0x59, 0xec, 0x58, 0x82, 0xd6, 0x84, - 0xab, 0x4a, 0x7b, 0x6a, 0x43, 0x94, 0x27, 0x18, 0x66, 0x72, 0x4b, 0x3e, 0xc2, 0x70, 0x93, 0x11, - 0x86, 0xc5, 0x37, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, 0x1d, 0x83, 0xae, 0x64, - 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, 0x23, 0x0c, 0xa9, 0x79, 0x7c, 0x51, 0x7e, 0x70, 0xb0, 0x06, - 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x74, 0x41, 0x44, 0x19, 0x4c, 0x66, 0x3b, - 0xcc, 0x08, 0x43, 0x46, 0x18, 0x6a, 0x3e, 0x38, 0xf5, 0x8e, 0xf3, 0x65, 0x50, 0xef, 0x68, 0x6d, - 0xfe, 0x16, 0x55, 0x93, 0x7a, 0xc7, 0x25, 0xd5, 0x64, 0x84, 0xa1, 0xb5, 0x43, 0x60, 0x27, 0x95, - 0x46, 0xc2, 0xd5, 0xd5, 0x96, 0x11, 0x86, 0xb3, 0xe8, 0x05, 0x23, 0x0c, 0xa1, 0xf2, 0x50, 0x79, - 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x11, 0x86, 0xa5, 0x70, 0x5a, 0x18, 0x61, 0x88, 0xbb, - 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x19, 0x61, 0xc8, 0x08, 0x43, - 0x03, 0xd3, 0xc2, 0x08, 0xc3, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, 0xd5, 0x64, 0x84, - 0x21, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, 0x08, 0x43, 0x48, - 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x46, 0x18, 0xc2, 0xa7, 0xed, - 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0x23, 0x0c, 0x61, 0xd4, 0x30, 0xea, 0x42, - 0x4a, 0x62, 0x84, 0xa1, 0xd5, 0x64, 0xab, 0x6c, 0x54, 0xd1, 0xe2, 0x00, 0xc3, 0xac, 0x11, 0xbc, - 0x2c, 0x13, 0x0c, 0x55, 0x66, 0xdc, 0x05, 0x69, 0xa8, 0xdf, 0xb1, 0x3f, 0x11, 0x5b, 0xf2, 0x86, - 0xfd, 0x2a, 0x0d, 0xfb, 0xe5, 0x09, 0xde, 0xd0, 0xb0, 0x4f, 0xc3, 0x7e, 0x6e, 0x3b, 0x49, 0xc3, - 0x3e, 0x0d, 0xfb, 0xe5, 0x03, 0x05, 0x7b, 0x70, 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, - 0x70, 0x02, 0x3c, 0x6c, 0xd8, 0x35, 0x0d, 0xfb, 0xea, 0xd6, 0x9d, 0x86, 0x7d, 0xc5, 0x07, 0x27, - 0xba, 0x3f, 0x5f, 0x06, 0xd1, 0x7d, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0x44, 0xf7, 0x97, 0x54, 0x93, - 0x86, 0x7d, 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0x65, 0x73, 0xab, 0xab, 0x2d, 0x0d, 0xfb, 0xb3, 0xe8, - 0x05, 0x0d, 0xfb, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0x4f, 0xc3, 0x7e, - 0x29, 0x9c, 0x16, 0x1a, 0xf6, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, - 0xcf, 0x3b, 0x0d, 0xfb, 0x34, 0xec, 0x1b, 0x98, 0x16, 0x1a, 0xf6, 0xe7, 0xcb, 0x20, 0x05, 0x61, - 0x6d, 0x87, 0x17, 0x55, 0x93, 0x86, 0x7d, 0x54, 0xd3, 0x15, 0x87, 0xc4, 0x4e, 0x2a, 0x99, 0x87, - 0xd5, 0xd5, 0x96, 0x86, 0x7d, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, - 0x77, 0x1a, 0xf6, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x86, - 0x7d, 0x18, 0x35, 0x8c, 0xba, 0x90, 0x92, 0x68, 0xd8, 0x77, 0xaa, 0x61, 0x7f, 0xd2, 0x07, 0x5e, - 0x96, 0x7e, 0xfd, 0x8d, 0x02, 0x6b, 0xae, 0xb6, 0xc6, 0x16, 0x4c, 0x53, 0x2b, 0x2a, 0xb3, 0x18, - 0x92, 0x61, 0x3b, 0x8d, 0x33, 0xf6, 0xd5, 0x9c, 0x3c, 0x62, 0x23, 0x7b, 0x42, 0xbf, 0x95, 0x3d, - 0x97, 0x7f, 0x70, 0xdd, 0xf7, 0x5b, 0x61, 0x98, 0xbc, 0x1f, 0x3d, 0x8a, 0x5f, 0xbb, 0x8a, 0xce, - 0x82, 0xab, 0xc8, 0x3f, 0x7a, 0xfd, 0xa1, 0x1f, 0x37, 0xfa, 0xb7, 0xbb, 0x17, 0x93, 0xd5, 0xfb, - 0x93, 0x88, 0xd1, 0xd1, 0x78, 0xf1, 0x1b, 0xc5, 0x54, 0x7b, 0x99, 0x4f, 0x16, 0x3a, 0x48, 0x5a, - 0x07, 0xc8, 0xfd, 0x83, 0x23, 0x78, 0x56, 0xf2, 0x3d, 0x23, 0x32, 0xe7, 0x22, 0x7f, 0xad, 0x15, - 0xd0, 0xd8, 0xca, 0x20, 0x49, 0x43, 0xaf, 0xdf, 0xeb, 0x46, 0xed, 0x2f, 0xa3, 0x97, 0xb7, 0x2d, - 0xa6, 0xb3, 0xf3, 0x99, 0x2f, 0x0f, 0x25, 0x0a, 0x9d, 0x43, 0xd9, 0x71, 0x2f, 0xe2, 0x29, 0x00, - 0x8d, 0x50, 0xbf, 0x5e, 0x48, 0x5f, 0x2b, 0x74, 0xaf, 0x1e, 0xa2, 0x57, 0x0f, 0xc5, 0xab, 0x86, - 0xdc, 0x8b, 0x85, 0xbc, 0xd2, 0xe3, 0x54, 0x2a, 0x0b, 0x9e, 0xa0, 0xb8, 0x2a, 0xdf, 0xeb, 0xf3, - 0xd2, 0xf2, 0x3f, 0x95, 0x66, 0x64, 0xa9, 0xe5, 0x4f, 0x35, 0xf3, 0xa5, 0xfa, 0xf9, 0x51, 0xed, - 0x7c, 0xa8, 0x59, 0xfe, 0xd3, 0x2c, 0xdf, 0x69, 0x92, 0xdf, 0x2c, 0x76, 0xfc, 0x40, 0x6b, 0xa6, - 0x55, 0xa5, 0x3d, 0xb5, 0x21, 0xca, 0x33, 0x0b, 0x33, 0xb9, 0x25, 0x1f, 0x5a, 0xb8, 0xc9, 0xd0, - 0xc2, 0xe2, 0x1b, 0x6c, 0x73, 0xc3, 0x6d, 0x6e, 0xc0, 0x4d, 0x0d, 0xb9, 0x8e, 0x41, 0x57, 0x32, - 0xec, 0xea, 0x06, 0x7e, 0x26, 0x90, 0xa1, 0x85, 0x54, 0x39, 0xbe, 0x28, 0x3f, 0x38, 0x58, 0x83, - 0x84, 0x33, 0x60, 0xe1, 0x0c, 0x68, 0x38, 0x01, 0x1e, 0xba, 0x20, 0xa2, 0x0c, 0x26, 0xb3, 0x1d, - 0x66, 0x68, 0x21, 0x43, 0x0b, 0x35, 0x1f, 0x9c, 0x0a, 0xc7, 0xf9, 0x32, 0xa8, 0x70, 0xb4, 0x36, - 0x7f, 0x8b, 0xaa, 0x49, 0x85, 0xe3, 0x92, 0x6a, 0x32, 0xb4, 0xd0, 0xda, 0x21, 0xb0, 0x93, 0x4a, - 0xeb, 0xe0, 0xea, 0x6a, 0xcb, 0xd0, 0xc2, 0x59, 0xf4, 0x82, 0xa1, 0x85, 0x50, 0x79, 0xa8, 0x3c, - 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, 0xcf, 0xd0, 0xc2, 0x52, 0x38, 0x2d, 0x0c, 0x2d, 0xc4, 0x5d, - 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x0c, 0x2d, 0x64, 0x68, 0xa1, - 0x81, 0x69, 0x61, 0x68, 0xe1, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0x32, 0xb4, - 0x10, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0x65, 0x68, 0x21, 0xa4, - 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x35, 0xcf, 0x3b, 0x43, 0x0b, 0xe1, 0xd3, 0x76, - 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0xa1, 0x85, 0x30, 0x6a, 0x18, 0x75, 0x21, - 0x25, 0x31, 0xb4, 0x50, 0x75, 0xa2, 0xd5, 0xc3, 0x41, 0x45, 0x8b, 0x23, 0x0b, 0xb3, 0x36, 0xf0, - 0xb2, 0xcc, 0x2c, 0x54, 0x99, 0x6b, 0x17, 0xa4, 0xa1, 0x7e, 0xbf, 0xfe, 0x44, 0x6c, 0xc9, 0xdb, - 0xf5, 0xab, 0xb4, 0xeb, 0x97, 0x27, 0x74, 0x43, 0xbb, 0x3e, 0xed, 0xfa, 0xb9, 0xed, 0x24, 0xed, - 0xfa, 0xb4, 0xeb, 0x97, 0x0f, 0x14, 0xec, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, 0x01, 0x0b, 0x67, 0x40, - 0xc3, 0x09, 0xf0, 0xb0, 0xe1, 0xd6, 0xb4, 0xeb, 0xab, 0x5b, 0x77, 0xda, 0xf5, 0x15, 0x1f, 0x9c, - 0xd8, 0xfe, 0x7c, 0x19, 0xc4, 0xf6, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0x12, 0xdb, 0x5f, 0x52, 0x4d, - 0xda, 0xf5, 0xad, 0x1d, 0x02, 0x3b, 0xa9, 0x14, 0xcd, 0xad, 0xae, 0xb6, 0xb4, 0xeb, 0xcf, 0xa2, - 0x17, 0xb4, 0xeb, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0x69, 0xa9, 0x3c, 0xed, 0xfa, - 0xa5, 0x70, 0x5a, 0x68, 0xd7, 0xc7, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0x90, - 0x3c, 0xef, 0xb4, 0xeb, 0xd3, 0xae, 0x6f, 0x60, 0x5a, 0x68, 0xd7, 0x9f, 0x2f, 0x83, 0x14, 0x84, - 0xb5, 0x1d, 0x5e, 0x54, 0x4d, 0xda, 0xf5, 0x51, 0x4d, 0x57, 0x1c, 0x12, 0x3b, 0xa9, 0x64, 0x1e, - 0x56, 0x57, 0x5b, 0xda, 0xf5, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0xaf, 0x79, - 0xde, 0x69, 0xd7, 0x87, 0x4f, 0xdb, 0x91, 0x16, 0x4a, 0xfa, 0xe0, 0xd3, 0x8e, 0xf2, 0x69, 0xda, - 0xf5, 0x61, 0xd4, 0x30, 0xea, 0x42, 0x4a, 0xa2, 0x5d, 0xdf, 0xa1, 0x76, 0xfd, 0x49, 0x17, 0x78, - 0x59, 0xba, 0xf5, 0x37, 0x0a, 0xac, 0xb7, 0xda, 0xfa, 0x5a, 0x28, 0x3d, 0xad, 0xa8, 0xcc, 0x61, - 0x48, 0x86, 0xed, 0x34, 0xce, 0x98, 0x57, 0x73, 0xf2, 0x80, 0x8d, 0xec, 0xf9, 0xfc, 0x56, 0xf6, - 0x54, 0xfe, 0xc1, 0x75, 0xdf, 0x6f, 0x85, 0x61, 0xf2, 0x7e, 0xf4, 0x20, 0x7e, 0xed, 0x2a, 0x3a, - 0x0b, 0xae, 0x22, 0xff, 0x2c, 0x49, 0xc3, 0xd6, 0x78, 0xf1, 0x8d, 0xfe, 0xed, 0xb6, 0x3f, 0x89, - 0x15, 0x1d, 0x8d, 0x97, 0xbe, 0x51, 0x4c, 0x95, 0x97, 0xf9, 0x64, 0xa1, 0x43, 0xa4, 0x75, 0x78, - 0x5c, 0x3f, 0x34, 0x82, 0xe7, 0x24, 0xcf, 0xf3, 0x21, 0x73, 0x26, 0xf2, 0xd7, 0x58, 0x01, 0x6d, - 0xad, 0x3c, 0x78, 0x65, 0xbb, 0x62, 0xfa, 0x3a, 0x9f, 0xf4, 0xf2, 0x50, 0xa2, 0xd0, 0x19, 0x94, - 0x1d, 0xf2, 0x22, 0x1e, 0xf8, 0xd7, 0x08, 0xf0, 0xeb, 0x05, 0xf2, 0xb5, 0x02, 0xf6, 0xea, 0x81, - 0x79, 0xf5, 0x00, 0xbc, 0x6a, 0xa0, 0xbd, 0x58, 0xa8, 0x2b, 0x3d, 0x44, 0xa5, 0xb2, 0xe0, 0x03, - 0x8a, 0xab, 0xf2, 0xbd, 0xee, 0x2e, 0x2d, 0xcf, 0x53, 0x69, 0x32, 0x96, 0x5a, 0xd6, 0x54, 0x33, - 0x4b, 0xaa, 0x9f, 0x15, 0xd5, 0xce, 0x82, 0x9a, 0x65, 0x3d, 0xcd, 0xb2, 0x9c, 0x26, 0x59, 0xcd, - 0x62, 0xc7, 0x0d, 0xb4, 0x26, 0x59, 0x55, 0xda, 0x53, 0x1b, 0xa2, 0x3c, 0xa9, 0x30, 0x93, 0x5b, - 0xf2, 0x51, 0x85, 0x9b, 0x8c, 0x2a, 0x2c, 0xbe, 0xc1, 0x36, 0x37, 0xdc, 0xe6, 0x06, 0xdc, 0xd4, - 0x90, 0xeb, 0x18, 0x74, 0x25, 0xc3, 0xae, 0x6e, 0xe0, 0x67, 0x02, 0x19, 0x55, 0x48, 0x6d, 0xe3, - 0x8b, 0xf2, 0x83, 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, 0xe0, 0xa1, 0x0b, - 0x22, 0xca, 0x60, 0x32, 0xdb, 0x61, 0x46, 0x15, 0x32, 0xaa, 0x50, 0xf3, 0xc1, 0xa9, 0x6b, 0x9c, - 0x2f, 0x83, 0xba, 0x46, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0xd4, 0x35, 0x2e, 0xa9, 0x26, 0xa3, 0x0a, - 0xad, 0x1d, 0x02, 0x3b, 0xa9, 0x34, 0x0c, 0xae, 0xae, 0xb6, 0x8c, 0x2a, 0x9c, 0x45, 0x2f, 0x18, - 0x55, 0x08, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xa5, 0xa5, 0xf2, 0x8c, 0x2a, 0x2c, 0x85, - 0xd3, 0xc2, 0xa8, 0x42, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xc9, 0xf3, - 0xce, 0xa8, 0x42, 0x46, 0x15, 0x1a, 0x98, 0x16, 0x46, 0x15, 0xce, 0x97, 0x41, 0x0a, 0xc2, 0xda, - 0x0e, 0x2f, 0xaa, 0x26, 0xa3, 0x0a, 0x51, 0x4d, 0x57, 0x1c, 0x12, 0x3b, 0xa9, 0x64, 0x1e, 0x56, - 0x57, 0x5b, 0x46, 0x15, 0x42, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, - 0x33, 0xaa, 0x10, 0x3e, 0x6d, 0x47, 0x5a, 0x28, 0xe9, 0x83, 0x4f, 0x3b, 0xca, 0xa7, 0x19, 0x55, - 0x08, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, 0xa3, 0x0a, 0x2d, 0xa7, 0x59, 0xed, 0x2e, 0x8e, 0x2a, - 0xcc, 0xda, 0xc0, 0xcb, 0x32, 0xab, 0x50, 0x65, 0xa2, 0x5d, 0x90, 0x86, 0xfa, 0xfd, 0xfa, 0x13, - 0xb1, 0x25, 0x6f, 0xd7, 0xaf, 0xd2, 0xae, 0x5f, 0x9e, 0xd0, 0x0d, 0xed, 0xfa, 0xb4, 0xeb, 0xe7, - 0xb6, 0x93, 0xb4, 0xeb, 0xd3, 0xae, 0x5f, 0x3e, 0x50, 0xb0, 0x07, 0x07, 0x6b, 0x90, 0x70, 0x06, - 0x2c, 0x9c, 0x01, 0x0d, 0x27, 0xc0, 0xc3, 0x86, 0x5b, 0xd3, 0xae, 0xaf, 0x6e, 0xdd, 0x69, 0xd7, - 0x57, 0x7c, 0x70, 0x62, 0xfb, 0xf3, 0x65, 0x10, 0xdb, 0xb7, 0x36, 0x7f, 0x8b, 0xaa, 0x49, 0x6c, - 0x7f, 0x49, 0x35, 0x69, 0xd7, 0xb7, 0x76, 0x08, 0xec, 0xa4, 0x52, 0x34, 0xb7, 0xba, 0xda, 0xd2, - 0xae, 0x3f, 0x8b, 0x5e, 0xd0, 0xae, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xa5, 0xa5, - 0xf2, 0xb4, 0xeb, 0x97, 0xc2, 0x69, 0xa1, 0x5d, 0x1f, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, - 0x01, 0x77, 0x41, 0xf2, 0xbc, 0xd3, 0xae, 0x4f, 0xbb, 0xbe, 0x81, 0x69, 0xa1, 0x5d, 0x7f, 0xbe, - 0x0c, 0x52, 0x10, 0xd6, 0x76, 0x78, 0x51, 0x35, 0x69, 0xd7, 0x47, 0x35, 0x5d, 0x71, 0x48, 0xec, - 0xa4, 0x92, 0x79, 0x58, 0x5d, 0x6d, 0x69, 0xd7, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, - 0x48, 0xbd, 0xe6, 0x79, 0xa7, 0x5d, 0x1f, 0x3e, 0x6d, 0x47, 0x5a, 0x28, 0xe9, 0x83, 0x4f, 0x3b, - 0xca, 0xa7, 0x69, 0xd7, 0x87, 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0x76, 0x7d, 0x87, 0xda, 0xf5, - 0x27, 0x5d, 0xe0, 0x65, 0xe9, 0xd6, 0xdf, 0x28, 0xb0, 0xde, 0x6a, 0xeb, 0x6b, 0xa1, 0xf4, 0xb4, - 0xa2, 0x32, 0x87, 0x21, 0x19, 0xb6, 0xd3, 0x38, 0x63, 0x5e, 0xcd, 0xc9, 0x03, 0x36, 0xb2, 0xe7, - 0xf3, 0x5b, 0xd9, 0x53, 0xf9, 0x07, 0xd7, 0x7d, 0xbf, 0x15, 0x86, 0xc9, 0xfb, 0xd1, 0x83, 0xf8, - 0xb5, 0xab, 0xe8, 0x2c, 0xb8, 0x8a, 0xfc, 0xb3, 0x24, 0x0d, 0x5b, 0xe3, 0xc5, 0x37, 0xfa, 0xb7, - 0xbb, 0xfe, 0x24, 0x56, 0x74, 0x34, 0x5e, 0xfa, 0x46, 0x31, 0x55, 0x5e, 0xe6, 0x93, 0x85, 0x0e, - 0x91, 0xd6, 0xe1, 0x71, 0xfd, 0xd0, 0x08, 0x9e, 0x93, 0x3c, 0xcf, 0x87, 0xcc, 0x99, 0xc8, 0x5f, - 0x63, 0x05, 0xb4, 0x55, 0x78, 0xdc, 0x8b, 0xca, 0x78, 0x17, 0xe1, 0x71, 0x2e, 0xe2, 0xe3, 0x5b, - 0x34, 0x42, 0xf9, 0x7a, 0x21, 0x7b, 0xad, 0xd0, 0xbc, 0x7a, 0x08, 0x5e, 0x3d, 0xd4, 0xae, 0x1a, - 0x52, 0x2f, 0x16, 0xbe, 0x4a, 0x8f, 0x4b, 0xa9, 0x4c, 0x21, 0xcd, 0xcb, 0x00, 0x46, 0x58, 0x97, - 0xa7, 0xa7, 0x73, 0x51, 0xac, 0xb0, 0x7a, 0xe9, 0xc4, 0xae, 0xd4, 0x32, 0xa4, 0x9a, 0x19, 0x51, - 0xfd, 0x0c, 0xa8, 0x76, 0xc6, 0xd3, 0x2c, 0xc3, 0x69, 0x96, 0xd1, 0x34, 0xc9, 0x60, 0x16, 0x3b, - 0x46, 0xa0, 0x96, 0x91, 0x9c, 0x9d, 0xb7, 0xa8, 0x13, 0xc6, 0x69, 0x94, 0x7e, 0x49, 0xc2, 0x2b, - 0x8d, 0x43, 0x37, 0xf5, 0x2c, 0x15, 0x72, 0x8e, 0x95, 0x46, 0xf6, 0x68, 0x07, 0xc1, 0xc0, 0x60, - 0xfe, 0x62, 0xed, 0x5d, 0xc3, 0x3f, 0x1b, 0xfd, 0xcf, 0xf9, 0xef, 0xad, 0xba, 0xd6, 0x51, 0x1f, - 0xa7, 0x2d, 0x06, 0xaa, 0x79, 0x55, 0xa3, 0x12, 0xa9, 0x46, 0xeb, 0xc3, 0xae, 0x7f, 0x54, 0x3b, - 0xa8, 0x1f, 0xd5, 0xdf, 0xfa, 0x17, 0xcd, 0xc6, 0x61, 0xed, 0xec, 0xbc, 0x52, 0xc6, 0xda, 0x34, - 0xa3, 0xfd, 0x3d, 0x3b, 0x3d, 0xaf, 0xfb, 0xad, 0x93, 0xa3, 0xc6, 0xe1, 0xef, 0xfe, 0x68, 0xaf, - 0xd9, 0xdb, 0xfc, 0xf6, 0xf6, 0xa8, 0xd1, 0xfc, 0xe7, 0xd9, 0x79, 0xed, 0xbc, 0xce, 0xa6, 0xe6, - 0x6a, 0x10, 0xb6, 0x31, 0x04, 0x02, 0xca, 0x5a, 0xfd, 0xd0, 0x6a, 0xfa, 0xf5, 0x0f, 0xad, 0x26, - 0xbb, 0x2a, 0x60, 0x02, 0xfc, 0xb3, 0xd6, 0x3b, 0x36, 0x56, 0x62, 0x63, 0xd1, 0xd8, 0x7c, 0x37, - 0xf6, 0xf5, 0xc8, 0x0e, 0x60, 0x65, 0x25, 0xad, 0xec, 0x87, 0xd6, 0xd1, 0x19, 0xbb, 0x2a, 0xa0, - 0xb3, 0xbb, 0xe8, 0xac, 0x90, 0xc7, 0x05, 0x05, 0xd3, 0xd0, 0xde, 0xe3, 0x8b, 0xa3, 0x73, 0xf6, - 0x57, 0x0e, 0xd1, 0xd8, 0x5f, 0xf9, 0x10, 0xc2, 0x36, 0x7b, 0x9b, 0xdf, 0xde, 0x7e, 0x68, 0x35, - 0x3f, 0x6c, 0xfb, 0xef, 0x8e, 0x4e, 0xfe, 0x75, 0xd6, 0xaa, 0x1f, 0xb2, 0xb3, 0xb9, 0xa2, 0x1a, - 0xde, 0x82, 0x94, 0xb7, 0x60, 0xa0, 0xb0, 0x2a, 0x92, 0x2e, 0x8b, 0x9e, 0xd7, 0xda, 0x28, 0xa0, - 0x62, 0x57, 0xc2, 0x38, 0xf8, 0xd4, 0x0d, 0x3b, 0x7a, 0xd5, 0x04, 0x53, 0x81, 0xc2, 0x59, 0x40, - 0xe5, 0xe9, 0xaf, 0xd4, 0x2d, 0xe4, 0xa0, 0x1a, 0xd4, 0x2d, 0xe4, 0x2e, 0x98, 0xba, 0x85, 0xa2, - 0xb8, 0x17, 0x06, 0x75, 0x0b, 0x7a, 0xd3, 0x53, 0x95, 0xa6, 0xa5, 0x52, 0xe9, 0x9f, 0x1d, 0xbe, - 0x35, 0xad, 0xf4, 0x97, 0x6b, 0xd4, 0x2a, 0x46, 0xdd, 0xfc, 0x70, 0x10, 0x7a, 0x37, 0xc3, 0x6e, - 0x1a, 0xf5, 0xbb, 0xa1, 0x37, 0x7a, 0x2d, 0x03, 0xf9, 0x22, 0xfa, 0x47, 0x64, 0x16, 0xbc, 0xa2, - 0x7e, 0x93, 0x8a, 0x7a, 0x77, 0x5c, 0x28, 0x2a, 0xea, 0xd7, 0x18, 0xc7, 0xc4, 0x2b, 0xea, 0xdb, - 0xd3, 0x33, 0xaf, 0x44, 0x7e, 0x33, 0x79, 0x3a, 0x5c, 0x74, 0x0b, 0x2e, 0x0a, 0x17, 0x85, 0x8b, - 0xc2, 0x45, 0xdd, 0x33, 0xbc, 0x33, 0x41, 0x5a, 0xe1, 0xc7, 0xa5, 0xf3, 0xad, 0x13, 0x86, 0x9c, - 0x6f, 0xa8, 0xcd, 0x65, 0x54, 0xca, 0xa3, 0x80, 0xd4, 0x07, 0x4f, 0x5a, 0x0c, 0x9c, 0xb4, 0x1b, - 0x34, 0x69, 0x35, 0x60, 0xd2, 0x7c, 0xb0, 0xa4, 0xf9, 0x40, 0x49, 0xd3, 0x41, 0x92, 0xe5, 0x1a, - 0x39, 0xa4, 0x3e, 0x30, 0xd2, 0xf0, 0xb2, 0x28, 0xe5, 0x4b, 0xa2, 0x98, 0x1e, 0xf4, 0x8d, 0x43, - 0xbc, 0xde, 0xd3, 0x83, 0x96, 0x23, 0x75, 0xaf, 0x32, 0x3e, 0x4a, 0x5e, 0x7c, 0xd9, 0x31, 0x1d, - 0x99, 0x78, 0xbd, 0xa4, 0xb8, 0xbc, 0x23, 0x41, 0x54, 0x80, 0xa8, 0x00, 0x51, 0x01, 0xa2, 0x02, - 0x45, 0x88, 0x0a, 0x28, 0x85, 0x65, 0x97, 0x8e, 0xb7, 0x4a, 0x78, 0x56, 0xd9, 0x20, 0xc3, 0xcd, - 0xe1, 0xe6, 0x70, 0x73, 0xb8, 0xb9, 0x4b, 0x06, 0x7e, 0x26, 0x30, 0xe8, 0x76, 0x7b, 0x7f, 0xce, - 0x49, 0x49, 0x30, 0xb0, 0xbb, 0x2f, 0x68, 0x79, 0x29, 0xca, 0x6a, 0x6c, 0x14, 0x22, 0x7e, 0x08, - 0x47, 0xdc, 0x55, 0x54, 0x66, 0x98, 0xb2, 0x86, 0x2b, 0x67, 0x60, 0xcb, 0x19, 0xf8, 0x72, 0x02, - 0xc6, 0x74, 0xe1, 0x4c, 0x19, 0xd6, 0x66, 0x3b, 0x6c, 0x7f, 0x57, 0x91, 0x7e, 0x08, 0x7a, 0x89, - 0x6d, 0x6c, 0x71, 0xd5, 0xe1, 0xca, 0x7b, 0x79, 0x13, 0xfc, 0x15, 0xdd, 0x0c, 0x6f, 0x84, 0x4b, - 0x2c, 0xbf, 0xa9, 0x4d, 0x8b, 0xcb, 0xb0, 0x73, 0x57, 0xb6, 0x70, 0x55, 0x70, 0x55, 0x70, 0x55, - 0x70, 0x55, 0x70, 0x55, 0xca, 0xe3, 0xaa, 0x0c, 0xa3, 0x38, 0x7d, 0x5d, 0x35, 0xf4, 0x54, 0xf6, - 0xb8, 0x52, 0x51, 0xef, 0xc1, 0xb9, 0x52, 0x71, 0xbe, 0x0c, 0xae, 0x54, 0xb4, 0x36, 0x7f, 0x8b, - 0xaa, 0xc9, 0x95, 0x8a, 0x4b, 0xaa, 0xb9, 0x5d, 0xdd, 0xdf, 0xde, 0xdf, 0xdd, 0xab, 0xee, 0xef, - 0xa0, 0xa3, 0x36, 0x0e, 0x81, 0x9d, 0x54, 0x6e, 0x56, 0x2c, 0x80, 0x25, 0xe3, 0x66, 0xc5, 0x27, - 0x6b, 0xce, 0xc2, 0xd1, 0x27, 0x68, 0x14, 0x9e, 0xe9, 0x29, 0xd6, 0x9d, 0xca, 0xd5, 0x7b, 0x92, - 0x77, 0x62, 0x3d, 0x49, 0x03, 0x24, 0xef, 0xc8, 0x7a, 0x0a, 0x65, 0xd5, 0x2b, 0x22, 0xaa, 0x54, - 0x44, 0x94, 0x27, 0x6e, 0x43, 0x45, 0x04, 0x15, 0x11, 0xb9, 0xed, 0x24, 0x15, 0x11, 0x54, 0x44, - 0x90, 0x66, 0x28, 0x33, 0x4c, 0x59, 0xc3, 0x95, 0x33, 0xb0, 0xe5, 0x0c, 0x7c, 0x39, 0x01, 0x63, - 0x36, 0xfc, 0x9e, 0x8a, 0x08, 0x7d, 0xf3, 0x4e, 0x45, 0x44, 0x0e, 0x7b, 0x49, 0x45, 0x04, 0x15, - 0x11, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0x65, 0x75, 0x55, 0xa8, 0x88, 0x50, 0xff, - 0xa2, 0x22, 0x82, 0x8a, 0x88, 0x7b, 0xeb, 0xa0, 0x22, 0xe2, 0x05, 0x15, 0x11, 0x8f, 0xab, 0x26, - 0x15, 0x11, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x2a, 0x22, 0x0a, 0x60, 0xc9, 0xa8, 0x88, 0xf8, 0xdf, - 0x15, 0x11, 0x82, 0xc3, 0xcb, 0xf5, 0xf5, 0x8a, 0x39, 0x51, 0xe5, 0xd3, 0xd0, 0x8a, 0x4a, 0x91, - 0x4b, 0x32, 0x6c, 0xa7, 0x71, 0x46, 0xb8, 0x9a, 0x93, 0x47, 0x6b, 0x64, 0x4f, 0xe6, 0xb7, 0xb2, - 0xe7, 0xf1, 0x0f, 0xae, 0xfb, 0x7e, 0x2b, 0x0c, 0x93, 0xf7, 0xa3, 0x47, 0xf0, 0x6b, 0x57, 0xd1, - 0x59, 0x70, 0x15, 0xf9, 0x17, 0x83, 0xf0, 0x38, 0x5b, 0x76, 0x6b, 0xb4, 0x6a, 0xbf, 0x2e, 0x4e, - 0xc3, 0x8b, 0x39, 0xdb, 0x2a, 0x52, 0x9d, 0x6d, 0x15, 0x31, 0xdb, 0xea, 0xd9, 0x82, 0x98, 0x6d, - 0x95, 0xab, 0x76, 0x30, 0xdb, 0x8a, 0xd9, 0x56, 0xdf, 0xd8, 0x31, 0x66, 0x5b, 0x15, 0xd0, 0x20, - 0xab, 0x1b, 0x66, 0x0b, 0x03, 0x6d, 0x67, 0xa8, 0xad, 0x0c, 0xb6, 0xb9, 0xe1, 0x36, 0x37, 0xe0, - 0xa6, 0x86, 0xbc, 0x9c, 0xe1, 0x07, 0xf5, 0x4a, 0x4e, 0x4a, 0x22, 0x28, 0x89, 0xd0, 0x14, 0x4c, - 0x49, 0x04, 0x25, 0x11, 0x94, 0x44, 0x58, 0x40, 0x98, 0x32, 0x94, 0xcd, 0x76, 0x98, 0x92, 0x08, - 0x4a, 0x22, 0x34, 0x1f, 0x9c, 0x92, 0x88, 0xf9, 0x32, 0x28, 0x89, 0xb0, 0x36, 0x7f, 0x8b, 0xaa, - 0x49, 0x49, 0xc4, 0x92, 0x6a, 0x52, 0x12, 0x61, 0xed, 0x10, 0xd8, 0x49, 0xa5, 0x24, 0xa2, 0x08, - 0x31, 0x09, 0x4a, 0x22, 0x9e, 0x4a, 0x38, 0x47, 0x0c, 0x89, 0xf8, 0xa1, 0x17, 0xcb, 0x90, 0x08, - 0xb1, 0x78, 0x0e, 0x43, 0x22, 0x4a, 0x14, 0xb7, 0x21, 0xb5, 0x40, 0x6a, 0x21, 0xb7, 0x9d, 0x24, - 0xb5, 0x40, 0x6a, 0x41, 0x15, 0x8a, 0x48, 0x2d, 0x68, 0xae, 0x80, 0xd4, 0x82, 0x23, 0x90, 0xe5, - 0x04, 0x74, 0xd9, 0x70, 0x7a, 0x52, 0x0b, 0xea, 0xd6, 0x9d, 0xd4, 0x82, 0xe2, 0x83, 0x93, 0x5a, - 0x98, 0x2f, 0x83, 0xd4, 0x82, 0xb5, 0xf9, 0x5b, 0x54, 0x4d, 0x52, 0x0b, 0x4b, 0xaa, 0x49, 0x6a, - 0xc1, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0x6a, 0xa1, 0x08, 0x31, 0x09, 0x52, 0x0b, 0xff, 0x33, 0xb5, - 0x40, 0xb7, 0xa5, 0x2b, 0x1a, 0x4b, 0xb7, 0xe5, 0xa3, 0x1a, 0x5a, 0xbc, 0x6e, 0xcb, 0x06, 0xdd, - 0x96, 0x4f, 0xec, 0xb2, 0x46, 0x4e, 0x4e, 0x35, 0x17, 0xa7, 0xde, 0x6f, 0x59, 0xa5, 0xdf, 0x72, - 0x05, 0x89, 0xf4, 0x5b, 0x8a, 0x7b, 0x5b, 0xf4, 0x5b, 0x3e, 0x73, 0xc7, 0xd4, 0xfa, 0x2d, 0xc3, - 0x38, 0xf8, 0xd4, 0x0d, 0x3b, 0xfa, 0x45, 0x11, 0x53, 0xc1, 0x5a, 0x49, 0x48, 0x9b, 0x61, 0xe9, - 0xca, 0x91, 0x09, 0x3a, 0x3d, 0x4b, 0x05, 0x15, 0xe6, 0x90, 0x61, 0x0e, 0x1d, 0xa6, 0x10, 0x52, - 0xce, 0xd0, 0x87, 0x7a, 0xee, 0xca, 0x70, 0x98, 0xb9, 0xf2, 0x10, 0x73, 0x62, 0x19, 0xc4, 0x32, - 0x9e, 0x17, 0xcb, 0x50, 0x08, 0xb4, 0x09, 0x86, 0x05, 0x36, 0x0a, 0xa4, 0x84, 0x5a, 0xca, 0xe7, - 0xbe, 0xd2, 0x55, 0x44, 0xa3, 0x39, 0x39, 0xc6, 0xcc, 0x64, 0xce, 0x45, 0xfe, 0x5a, 0x9b, 0xef, - 0x27, 0xe6, 0xac, 0xff, 0x23, 0xdf, 0x71, 0x7c, 0x5d, 0x55, 0xa6, 0x10, 0xde, 0xf8, 0xe5, 0xe4, - 0x2c, 0xe3, 0x28, 0x1a, 0xa4, 0xb5, 0x34, 0x95, 0xe1, 0xac, 0x95, 0xe3, 0x28, 0xae, 0x77, 0xc3, - 0x91, 0xf7, 0x37, 0xa8, 0xbc, 0x79, 0x11, 0x0f, 0xbb, 0xdd, 0x9f, 0x05, 0x84, 0x04, 0x7f, 0xc9, - 0x0b, 0x39, 0x49, 0x3a, 0x61, 0x12, 0x76, 0x0e, 0xbe, 0x64, 0x22, 0x9c, 0x56, 0x1c, 0x61, 0x83, - 0xe9, 0x98, 0xa1, 0x14, 0xb0, 0x8a, 0x2b, 0x59, 0xc3, 0x7c, 0x8d, 0x5f, 0x7e, 0x26, 0x2a, 0x9f, - 0x4f, 0xca, 0x49, 0x57, 0xa5, 0x74, 0xd4, 0x0d, 0xdd, 0xcc, 0x47, 0x05, 0x56, 0x7f, 0x61, 0x39, - 0xbc, 0xac, 0x4a, 0xd0, 0xef, 0x77, 0xbf, 0x78, 0xfd, 0x5e, 0x37, 0x6a, 0x7f, 0xc9, 0xed, 0x55, - 0xcd, 0xef, 0x62, 0xbc, 0xff, 0xe9, 0x39, 0xa9, 0x56, 0xbe, 0x49, 0x9c, 0xdc, 0x23, 0x73, 0x12, - 0x91, 0xb7, 0xfb, 0x91, 0xb5, 0xa4, 0xdf, 0xeb, 0xe6, 0x68, 0x13, 0xa5, 0x42, 0x67, 0xe2, 0xa1, - 0x31, 0xf1, 0xd0, 0xd7, 0xc3, 0xd0, 0xd6, 0x78, 0xe3, 0x4b, 0x6a, 0xae, 0xf3, 0x4e, 0x6b, 0x48, - 0x8d, 0x8b, 0x94, 0x1d, 0x0b, 0x29, 0x94, 0x1f, 0x16, 0x0b, 0xfe, 0x4b, 0x06, 0xf9, 0x05, 0x4d, - 0x8e, 0xb4, 0xe9, 0x51, 0x33, 0x41, 0x6a, 0xa6, 0x48, 0xc7, 0x24, 0x15, 0x83, 0x36, 0x4b, 0x65, - 0x60, 0x2b, 0x9d, 0x49, 0x26, 0xd2, 0x0b, 0xff, 0xea, 0xf7, 0x92, 0x34, 0x6f, 0x97, 0xe8, 0xc9, - 0xf3, 0xf5, 0xb8, 0x58, 0x21, 0xfd, 0xb9, 0x97, 0x6d, 0x3d, 0xad, 0xff, 0x5f, 0xfd, 0xf0, 0xdc, - 0x3f, 0x3d, 0xb9, 0x38, 0xaf, 0x4b, 0x89, 0x93, 0x4d, 0xb2, 0x8a, 0x27, 0x55, 0x35, 0x92, 0xa8, - 0x0a, 0x76, 0x56, 0xcb, 0xde, 0xaa, 0xdb, 0x5d, 0x75, 0xfb, 0xab, 0x6b, 0x87, 0x65, 0xec, 0xb1, - 0x90, 0x5d, 0x9e, 0x6d, 0x8d, 0x78, 0x1a, 0x73, 0xc9, 0x72, 0x4e, 0x4c, 0xa6, 0x97, 0x8e, 0x04, - 0x0b, 0x9e, 0x9e, 0xa9, 0x73, 0xb8, 0x2d, 0x28, 0xa3, 0x1e, 0x0f, 0x6f, 0x46, 0x9b, 0x77, 0x57, - 0x94, 0x08, 0xfb, 0xcf, 0x72, 0x38, 0x1c, 0xdd, 0x98, 0xe0, 0xf0, 0xa2, 0x58, 0x70, 0x18, 0x1c, - 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x5e, 0x33, 0x1c, 0x56, 0xe6, 0xc1, 0x2a, 0xfc, 0x17, - 0x20, 0x04, 0x08, 0x01, 0x42, 0x80, 0x50, 0xe6, 0xc4, 0x74, 0xc3, 0xe0, 0x2a, 0x09, 0xaf, 0x34, - 0xc0, 0x4f, 0x70, 0xca, 0x4b, 0xa5, 0x35, 0xcb, 0xae, 0x4f, 0x14, 0xe9, 0x4d, 0xd2, 0x1b, 0xa6, - 0x51, 0x7c, 0x9d, 0xd9, 0xe6, 0xd9, 0x8f, 0x33, 0xbc, 0xef, 0x84, 0x57, 0x51, 0x1c, 0xa5, 0x51, - 0x2f, 0x1e, 0x3c, 0xfd, 0x4f, 0xb3, 0x7f, 0x19, 0x17, 0x5d, 0x14, 0x4a, 0x7f, 0x44, 0x6b, 0xa8, - 0x66, 0x52, 0x34, 0x6a, 0xa9, 0xe6, 0xc2, 0x14, 0x6a, 0xaa, 0x66, 0xc2, 0xee, 0xd7, 0x56, 0x29, - 0x35, 0x93, 0x0e, 0x07, 0x61, 0x22, 0x6d, 0xe2, 0x15, 0x5b, 0x4e, 0xee, 0xe3, 0x57, 0x6f, 0xb2, - 0x9b, 0xde, 0xa7, 0x2f, 0x1a, 0x2d, 0x98, 0x16, 0xed, 0x25, 0x0b, 0x58, 0x36, 0x7e, 0x93, 0x94, - 0x61, 0x17, 0x8e, 0x3c, 0x28, 0x07, 0xef, 0x54, 0x82, 0x76, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x01, - 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x81, 0x56, - 0x29, 0xab, 0x76, 0x94, 0x7b, 0xbd, 0x15, 0x22, 0x77, 0x0e, 0xe5, 0xd8, 0x9b, 0x94, 0x63, 0xbf, - 0x82, 0xcc, 0x5c, 0x32, 0xd1, 0x39, 0x64, 0xe2, 0x75, 0xe5, 0x55, 0xea, 0xca, 0x15, 0xd1, 0x95, - 0xba, 0xf2, 0x32, 0x42, 0x05, 0x75, 0xe5, 0xab, 0x6c, 0x1e, 0xf5, 0x6c, 0x44, 0xe2, 0x88, 0xc4, - 0x11, 0x89, 0xa3, 0x9e, 0xed, 0x87, 0x9d, 0x43, 0xea, 0xd9, 0x44, 0x95, 0x88, 0xba, 0x72, 0x70, - 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x36, 0xc4, 0x61, 0xea, 0xca, 0x01, 0x42, - 0x80, 0x10, 0x20, 0x04, 0x08, 0xbf, 0xf7, 0xc4, 0x50, 0x1a, 0x42, 0x69, 0xc8, 0x8f, 0x4a, 0xa1, - 0x34, 0x24, 0xc7, 0x83, 0x48, 0x69, 0x48, 0x41, 0x71, 0xec, 0x05, 0xa5, 0x21, 0xe5, 0x20, 0x0f, - 0xd4, 0x95, 0x43, 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, 0x80, - 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x65, 0x24, 0x0f, 0xd4, 0x95, 0xbb, 0x50, 0x57, 0x2e, 0x70, 0x0f, - 0x16, 0x57, 0x5e, 0x14, 0x53, 0x17, 0x2a, 0xb9, 0x16, 0xf1, 0xff, 0xc8, 0x05, 0x2c, 0xa3, 0xc5, - 0xb4, 0x26, 0x6b, 0x29, 0xd3, 0x0d, 0x1c, 0x83, 0xf1, 0xf5, 0x5f, 0x5e, 0xaf, 0x3f, 0x76, 0x57, - 0x05, 0x2e, 0xe1, 0x78, 0x20, 0x80, 0x7b, 0x38, 0xf2, 0x08, 0x43, 0xe4, 0x7b, 0xc3, 0x2d, 0xd7, - 0x70, 0x7c, 0x6f, 0x14, 0x21, 0xd7, 0x1b, 0x66, 0xb9, 0x85, 0x63, 0xa5, 0x63, 0xc0, 0x2d, 0x1c, - 0x8a, 0xdd, 0x52, 0x32, 0x57, 0x6a, 0xd3, 0x2c, 0xe5, 0x94, 0x41, 0x2a, 0x06, 0xfd, 0x11, 0xeb, - 0x95, 0x0a, 0xba, 0xdd, 0xde, 0x9f, 0x5e, 0xef, 0xcf, 0xd8, 0x0b, 0x06, 0xf2, 0xd9, 0x9d, 0x05, - 0x69, 0xf2, 0x15, 0xd9, 0x9b, 0x24, 0x90, 0xd4, 0x0d, 0xa8, 0x9e, 0x21, 0xd5, 0x8e, 0xc1, 0xad, - 0x5f, 0xfe, 0x48, 0xc4, 0xd0, 0x0a, 0xc7, 0xc5, 0x0a, 0x9f, 0x3e, 0x1a, 0x46, 0x71, 0xfa, 0xab, - 0x42, 0xf2, 0x68, 0x47, 0x50, 0xc4, 0x69, 0x10, 0x5f, 0x8f, 0x1e, 0xe6, 0xa3, 0xa8, 0xba, 0x2a, - 0x84, 0xdc, 0x8f, 0x23, 0x9d, 0x0b, 0xfa, 0x15, 0x50, 0x65, 0x49, 0xdc, 0x87, 0xa0, 0x3b, 0x0c, - 0x15, 0xe5, 0xbd, 0x4b, 0x82, 0x76, 0x1a, 0xf5, 0xe2, 0xb7, 0xd1, 0x75, 0x34, 0xce, 0x38, 0x6d, - 0x8a, 0xcb, 0xbd, 0x53, 0xc8, 0x53, 0x1c, 0x07, 0x7f, 0x95, 0x5e, 0x45, 0xaa, 0x3b, 0x3b, 0x25, - 0x56, 0x92, 0x82, 0x26, 0x96, 0x2e, 0xd7, 0xb9, 0xb5, 0x34, 0x1a, 0x04, 0x9f, 0xba, 0xa1, 0x37, - 0x8e, 0x9c, 0x07, 0x03, 0xef, 0x2a, 0xea, 0xa6, 0x61, 0xa2, 0xd0, 0x5b, 0xfa, 0xb8, 0x5c, 0x79, - 0x2a, 0x73, 0x15, 0x74, 0x07, 0x21, 0x74, 0x06, 0x3a, 0x03, 0x9d, 0x81, 0xce, 0x14, 0x89, 0xce, - 0x7c, 0xea, 0xf5, 0xba, 0x61, 0x10, 0x6b, 0x54, 0xc3, 0x6d, 0xad, 0x31, 0x20, 0x26, 0x61, 0xbf, - 0x1b, 0xb4, 0x67, 0xc0, 0x24, 0x8f, 0x84, 0x0f, 0x05, 0x02, 0x81, 0x40, 0x20, 0x10, 0x08, 0x04, - 0x02, 0x81, 0x40, 0xa0, 0xf6, 0x27, 0x52, 0x6c, 0xf8, 0x8c, 0x02, 0xb3, 0xc5, 0xda, 0x24, 0xe6, - 0xd8, 0xe6, 0x75, 0xca, 0x99, 0x63, 0x4b, 0x65, 0x86, 0x23, 0xee, 0x06, 0x95, 0x19, 0x7a, 0x58, - 0x41, 0x65, 0xc6, 0x8f, 0x70, 0x39, 0x2a, 0x33, 0xe0, 0x71, 0xf0, 0x38, 0x78, 0x5c, 0xa1, 0x78, - 0x1c, 0x95, 0x19, 0xdf, 0xfb, 0x45, 0x65, 0xc6, 0x4a, 0xe2, 0xa8, 0xcc, 0xc8, 0x47, 0x45, 0xa8, - 0xcc, 0x28, 0xb8, 0x92, 0x50, 0x99, 0x21, 0xba, 0x5e, 0x2a, 0x33, 0x72, 0xa0, 0x32, 0xa4, 0xa5, - 0xa0, 0x33, 0xd0, 0x19, 0xe8, 0x4c, 0xe1, 0xe8, 0x0c, 0x69, 0x29, 0x15, 0x40, 0xa4, 0x32, 0x03, - 0x08, 0x04, 0x02, 0x81, 0x40, 0x20, 0x10, 0x08, 0x2c, 0x02, 0x04, 0x52, 0x99, 0xe1, 0x48, 0x65, - 0x06, 0x93, 0xa0, 0xac, 0xd5, 0xc2, 0x25, 0x75, 0xb0, 0x1f, 0x06, 0x35, 0x68, 0x05, 0xe9, 0xe7, - 0x93, 0x6c, 0x35, 0x25, 0x1a, 0x07, 0x95, 0xf3, 0xcc, 0x16, 0x99, 0x59, 0x2d, 0x0c, 0x7f, 0x62, - 0xf8, 0x13, 0xc3, 0x9f, 0x72, 0x05, 0x8d, 0xdc, 0x87, 0x3f, 0x05, 0xc3, 0xf4, 0xb3, 0xd7, 0x0f, - 0x06, 0x83, 0x4c, 0x05, 0x84, 0x0a, 0x0d, 0x17, 0xc5, 0xc8, 0x14, 0x1c, 0x6e, 0x32, 0x0a, 0x8a, - 0x82, 0x43, 0x07, 0xd9, 0x33, 0x05, 0x87, 0x72, 0xec, 0x78, 0x1e, 0x40, 0x9c, 0x0e, 0x7a, 0x97, - 0xb1, 0x31, 0x0b, 0xee, 0xcc, 0xaf, 0x6b, 0x50, 0x78, 0xde, 0x09, 0x07, 0xed, 0x24, 0xea, 0x8b, - 0xb0, 0xd6, 0x7b, 0x77, 0x77, 0xce, 0x85, 0x80, 0x09, 0x60, 0x02, 0x98, 0x00, 0x26, 0xe4, 0xa8, - 0xef, 0x83, 0x34, 0x89, 0xe2, 0x6b, 0x90, 0x60, 0xb5, 0x67, 0xed, 0xf6, 0xda, 0x41, 0x57, 0x22, - 0x09, 0x38, 0xbf, 0x7c, 0x66, 0x2a, 0x01, 0x0c, 0x00, 0x03, 0xc0, 0x00, 0x30, 0x20, 0xcf, 0xc0, - 0xc3, 0xc0, 0x8b, 0x87, 0x37, 0x9f, 0x44, 0xaa, 0xea, 0xa6, 0x06, 0x46, 0xe0, 0x46, 0x2b, 0xe1, - 0x9a, 0x77, 0xd9, 0xdb, 0xa0, 0x14, 0x32, 0xed, 0x2a, 0x85, 0xcb, 0x5a, 0x35, 0xed, 0x9a, 0x65, - 0xca, 0x77, 0xb2, 0x77, 0x73, 0x95, 0xee, 0xd5, 0x6f, 0x57, 0xf7, 0xb7, 0xf7, 0x77, 0xf7, 0xaa, - 0xfb, 0x3b, 0x25, 0xd2, 0x81, 0x82, 0xa4, 0xf5, 0x2f, 0xd7, 0xc0, 0xbb, 0x96, 0xaa, 0xb0, 0x9b, - 0x01, 0xa0, 0x4c, 0x45, 0x1d, 0xbe, 0x35, 0xbe, 0x35, 0xbe, 0x35, 0xbe, 0x35, 0xbe, 0x35, 0xbe, - 0x35, 0xbe, 0x35, 0xbe, 0x35, 0xbe, 0x35, 0xbe, 0xb5, 0x9b, 0xbe, 0xf5, 0xb8, 0x30, 0xd1, 0xcb, - 0xea, 0x06, 0x25, 0x7d, 0xec, 0x7b, 0x82, 0xf0, 0xb5, 0xf1, 0xb5, 0xf1, 0xb5, 0xf1, 0xb5, 0x73, - 0xd4, 0x77, 0x72, 0x99, 0xb9, 0x21, 0x42, 0x2a, 0xf1, 0xb2, 0x16, 0xb1, 0x60, 0x2c, 0x02, 0x14, - 0x00, 0x05, 0x40, 0x01, 0x50, 0xa0, 0x00, 0xc6, 0x65, 0x01, 0x08, 0xb6, 0x05, 0x3e, 0xbb, 0x1e, - 0x0f, 0x6f, 0x46, 0x5b, 0x73, 0xb7, 0x06, 0x20, 0x93, 0x84, 0x37, 0xbd, 0xdb, 0xd0, 0xeb, 0x27, - 0xd1, 0x6d, 0x90, 0x86, 0xa2, 0xc1, 0xfd, 0x65, 0x51, 0x80, 0x0e, 0xa0, 0x03, 0xe8, 0x00, 0x3a, - 0x92, 0x46, 0x26, 0x6b, 0xef, 0x94, 0xc4, 0x20, 0x81, 0x88, 0x60, 0xa5, 0xd1, 0x09, 0xe3, 0x34, - 0x4a, 0xbf, 0x1c, 0x04, 0x83, 0x50, 0x7e, 0xa2, 0xc9, 0x69, 0xfd, 0xf8, 0xe4, 0x43, 0xdd, 0x6f, - 0x9d, 0x36, 0x3e, 0xd4, 0xce, 0xeb, 0x7e, 0xed, 0xcc, 0x3f, 0x69, 0x9d, 0x37, 0x4e, 0x9a, 0x52, - 0x47, 0x6e, 0x1c, 0x54, 0x1d, 0x88, 0x4e, 0xc9, 0x14, 0x8e, 0x3e, 0x4f, 0x77, 0xee, 0xde, 0x96, - 0x65, 0x9b, 0x58, 0x3b, 0x3a, 0xaa, 0x14, 0x31, 0x6a, 0x6f, 0xb1, 0x61, 0xad, 0xa3, 0xda, 0xa1, - 0xf4, 0x8e, 0x89, 0x7c, 0xf2, 0xa5, 0xeb, 0x86, 0xdb, 0x4d, 0x67, 0xb3, 0x37, 0x4c, 0x43, 0xef, - 0xaa, 0x1b, 0xf4, 0xbd, 0x4e, 0x70, 0xd3, 0x8f, 0xe2, 0x6b, 0x41, 0x6f, 0x73, 0x59, 0x56, 0xde, - 0x83, 0xe9, 0x65, 0xe7, 0x33, 0xe1, 0xce, 0xe2, 0xce, 0xe2, 0xce, 0xae, 0xb9, 0x3b, 0x2b, 0x37, - 0x3f, 0x49, 0x68, 0x6e, 0x92, 0xa3, 0x37, 0x13, 0x85, 0x71, 0xc7, 0x6b, 0xf7, 0x6e, 0x6e, 0x86, - 0x71, 0x94, 0x7e, 0x11, 0xbc, 0xa2, 0x68, 0x51, 0x8e, 0x1c, 0xe0, 0x34, 0x4f, 0x9a, 0x75, 0xf0, - 0x06, 0xbc, 0x01, 0x6f, 0xc0, 0x9b, 0x3c, 0xf5, 0x7d, 0x66, 0xbb, 0x08, 0xdc, 0x4b, 0x40, 0x1a, - 0x33, 0xdd, 0x84, 0x67, 0xba, 0xe5, 0x79, 0xd9, 0xa2, 0x1b, 0xc3, 0xd3, 0xc2, 0x4f, 0xd7, 0x7d, - 0xef, 0x66, 0xd8, 0x4d, 0xa3, 0xcf, 0xbd, 0x7e, 0xfe, 0x33, 0xd4, 0x16, 0x3f, 0x9e, 0x51, 0x6a, - 0xee, 0x79, 0x0c, 0x8c, 0x52, 0x33, 0xf1, 0x08, 0x4a, 0x3e, 0x4a, 0x2d, 0xe7, 0x99, 0x8c, 0x8f, - 0x38, 0x12, 0x39, 0xce, 0x66, 0x14, 0x32, 0x2c, 0x50, 0x14, 0x28, 0x0a, 0x14, 0xa5, 0x20, 0xb7, - 0xb5, 0x86, 0x71, 0xf0, 0xa9, 0x1b, 0x76, 0xe4, 0x73, 0xa1, 0x53, 0x41, 0xdc, 0xea, 0x60, 0x61, - 0x32, 0x35, 0x4c, 0xa7, 0x9e, 0x09, 0xd5, 0x32, 0xa5, 0xea, 0x26, 0x55, 0xdd, 0xb4, 0xaa, 0x9a, - 0x58, 0x19, 0x53, 0x2b, 0x64, 0x72, 0xe5, 0xa3, 0x43, 0x4b, 0xe7, 0x85, 0x5b, 0x1d, 0x34, 0x5e, - 0x6a, 0x65, 0x4a, 0xcb, 0xbd, 0x34, 0xed, 0xca, 0xe3, 0xde, 0x82, 0x34, 0x40, 0x09, 0x50, 0x02, - 0x94, 0x00, 0xa5, 0x02, 0x81, 0x12, 0x97, 0x87, 0x7f, 0xef, 0x17, 0x97, 0x87, 0xaf, 0x24, 0x8e, - 0xcb, 0xc3, 0xf3, 0x51, 0x11, 0x2e, 0x0f, 0x2f, 0xb8, 0x92, 0x70, 0x79, 0xb8, 0x2c, 0xa5, 0xe0, - 0xa2, 0x38, 0xa3, 0x2c, 0xf2, 0x42, 0x52, 0x34, 0xd7, 0x9c, 0x72, 0xfe, 0xef, 0x36, 0xd7, 0x32, - 0xb9, 0xf1, 0x85, 0x78, 0x72, 0xd5, 0x71, 0xe3, 0x8f, 0x2f, 0x58, 0x4a, 0xa8, 0x4a, 0x4a, 0x48, - 0x8f, 0x32, 0x92, 0x12, 0x2a, 0x21, 0x52, 0x90, 0x12, 0xfa, 0xd6, 0x06, 0x91, 0x12, 0xb2, 0x36, - 0x9d, 0x7a, 0x26, 0x54, 0xcb, 0x94, 0xaa, 0x9b, 0x54, 0x75, 0xd3, 0xaa, 0x6a, 0x62, 0x65, 0x69, - 0x09, 0x29, 0xa1, 0x67, 0x78, 0x7a, 0xa4, 0x84, 0x48, 0x09, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0x04, - 0x28, 0xfd, 0xef, 0xf3, 0x42, 0x4a, 0xe8, 0x7b, 0xbf, 0x48, 0x09, 0xad, 0x24, 0x8e, 0x94, 0x50, - 0x3e, 0x2a, 0x42, 0x4a, 0xa8, 0xe0, 0x4a, 0x42, 0x4a, 0x48, 0x96, 0x52, 0x90, 0x12, 0x72, 0x22, - 0x25, 0x34, 0xc9, 0x64, 0xd0, 0x65, 0x6a, 0xa7, 0x14, 0xee, 0x28, 0x43, 0x25, 0xd7, 0x04, 0x5c, - 0x32, 0x6c, 0xa7, 0xd9, 0xfc, 0xff, 0x4a, 0x73, 0xb2, 0xca, 0x46, 0xb6, 0x48, 0xbf, 0x95, 0x2d, - 0xcd, 0x3f, 0xb8, 0xee, 0xfb, 0xad, 0x30, 0x4c, 0xde, 0x8f, 0x56, 0xe3, 0xd7, 0x3f, 0x5d, 0xf7, - 0x8f, 0xa7, 0x8b, 0x29, 0x53, 0xe7, 0x6b, 0x92, 0xf4, 0x12, 0xef, 0x73, 0x10, 0x77, 0xba, 0x79, - 0x4e, 0x8a, 0x9a, 0x47, 0xf5, 0x17, 0x3f, 0x9f, 0xde, 0x57, 0xf7, 0xe2, 0x13, 0xf4, 0xbe, 0x9a, - 0xc4, 0x17, 0xe8, 0x7d, 0x5d, 0xe9, 0x18, 0xd0, 0xfb, 0x4a, 0xa1, 0x83, 0xb5, 0x01, 0x52, 0x33, - 0x44, 0x2a, 0x06, 0xa9, 0x18, 0xfc, 0x47, 0xac, 0xd0, 0x21, 0x4d, 0xc2, 0x20, 0xf5, 0x82, 0x81, - 0xf7, 0x67, 0x94, 0x7e, 0xee, 0x24, 0xc1, 0x9f, 0xf2, 0xa9, 0x9f, 0x65, 0x91, 0x14, 0x3f, 0x58, - 0x98, 0x51, 0x0d, 0x73, 0xaa, 0x67, 0x56, 0xb5, 0xcc, 0xab, 0xba, 0x99, 0x55, 0x37, 0xb7, 0xaa, - 0x66, 0x57, 0x36, 0x00, 0x47, 0xf1, 0xc3, 0x33, 0xbc, 0xbf, 0x2d, 0x22, 0x95, 0xee, 0x06, 0xa5, - 0xdc, 0x08, 0x4e, 0x2d, 0x84, 0x35, 0xa8, 0x5e, 0xcf, 0xeb, 0x90, 0x53, 0xbd, 0x0e, 0xa9, 0x83, - 0xd4, 0x41, 0xea, 0x20, 0x75, 0x90, 0x3a, 0x48, 0x1d, 0xa4, 0x0e, 0x52, 0x07, 0xa9, 0x83, 0xd4, - 0x41, 0xea, 0x2c, 0x48, 0x1d, 0xf5, 0x27, 0xd6, 0x5a, 0xe1, 0x90, 0x36, 0xd8, 0x17, 0xa0, 0x8c, - 0x96, 0xf3, 0xdb, 0x74, 0x35, 0x25, 0xaa, 0x40, 0xb9, 0x4e, 0x82, 0x76, 0x78, 0x35, 0xec, 0x7a, - 0x49, 0x38, 0x48, 0x83, 0x24, 0xcd, 0xbf, 0x06, 0x65, 0x49, 0x02, 0x55, 0x28, 0xee, 0x39, 0xba, - 0x54, 0xa1, 0x98, 0x38, 0xaa, 0x54, 0xa1, 0xac, 0x74, 0x0c, 0xa8, 0x42, 0x21, 0x60, 0xe9, 0x0a, - 0x93, 0x26, 0x60, 0xa9, 0x47, 0x83, 0x18, 0xb7, 0x41, 0xd0, 0x90, 0xa0, 0x21, 0x41, 0x43, 0x82, - 0x86, 0x04, 0x0d, 0x9d, 0x08, 0x1a, 0x0a, 0xf8, 0x45, 0x9f, 0xc3, 0x6e, 0x3f, 0x4c, 0xbc, 0x5e, - 0xdc, 0xfd, 0x22, 0x0f, 0x47, 0xf7, 0x85, 0x01, 0x49, 0x40, 0x12, 0x90, 0x04, 0x24, 0x01, 0x49, - 0x40, 0xd2, 0xe2, 0x1e, 0x64, 0x01, 0x5c, 0x2f, 0x8d, 0x6e, 0x42, 0x79, 0x4c, 0x5a, 0x90, 0x06, - 0x28, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0x54, 0x20, 0x50, 0x1a, 0x46, 0x71, 0xba, 0xb5, 0xab, 0x80, - 0x49, 0xbb, 0x8c, 0x66, 0xfa, 0xf6, 0x83, 0x30, 0x9a, 0x29, 0x3f, 0x79, 0x8c, 0x66, 0x2a, 0xac, - 0x8a, 0x6c, 0x6f, 0xee, 0xef, 0x32, 0x9b, 0xc9, 0xb5, 0x4f, 0xbf, 0x5c, 0x63, 0x52, 0x31, 0x48, - 0x83, 0x6e, 0xe8, 0x25, 0xbd, 0x61, 0x1a, 0x0e, 0x94, 0x98, 0xc5, 0xb2, 0x48, 0xe8, 0x05, 0xf4, - 0x02, 0x7a, 0x01, 0xbd, 0x28, 0x10, 0xbd, 0xe8, 0x84, 0xed, 0xe8, 0x26, 0xe8, 0xee, 0x6e, 0x6b, - 0x44, 0xbd, 0xaa, 0x82, 0x32, 0x96, 0xfc, 0x84, 0x2a, 0x7c, 0xc6, 0x4d, 0x3e, 0x53, 0x85, 0xcf, - 0xc0, 0x67, 0xfe, 0xb7, 0x8a, 0xbc, 0x46, 0x45, 0x20, 0x33, 0x05, 0x21, 0x33, 0x74, 0xfa, 0x18, - 0xf5, 0x76, 0x3c, 0xec, 0x08, 0x60, 0x80, 0x43, 0x8e, 0xcc, 0x96, 0x01, 0x0e, 0xd4, 0x43, 0xbb, - 0xc0, 0x4e, 0xa9, 0x87, 0xd6, 0x03, 0x0b, 0xea, 0xa1, 0xbf, 0xcf, 0x84, 0x11, 0x88, 0xb3, 0x34, - 0x6d, 0x5a, 0x26, 0x4e, 0xdd, 0xd4, 0xa9, 0x9b, 0x3c, 0x55, 0xd3, 0x27, 0xcb, 0x18, 0x28, 0x3e, - 0x7b, 0x86, 0x07, 0x46, 0x3d, 0x34, 0xf5, 0xd0, 0x40, 0x12, 0x90, 0x04, 0x24, 0x01, 0x49, 0x40, - 0x92, 0x39, 0x24, 0x51, 0x0f, 0x0d, 0x28, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0xf4, 0x3d, 0xe7, 0x85, - 0x7a, 0xe8, 0xef, 0xfe, 0xa2, 0x1e, 0x7a, 0x25, 0x71, 0xd4, 0x0f, 0xe4, 0xa3, 0x22, 0xd4, 0x43, - 0x17, 0x5d, 0x4b, 0x28, 0x21, 0x28, 0x1c, 0xa9, 0xa0, 0x1e, 0x1a, 0x7a, 0x01, 0xbd, 0x80, 0x5e, - 0x40, 0x2f, 0x9e, 0x77, 0x5e, 0xa8, 0x87, 0x86, 0xcf, 0x50, 0x0f, 0x0d, 0x9f, 0x71, 0x8b, 0xcf, - 0x50, 0x0f, 0x0d, 0x99, 0xa1, 0x1e, 0x3a, 0x0f, 0x17, 0x6b, 0x9d, 0xea, 0xa1, 0xb9, 0xfb, 0xc0, - 0x5a, 0x2f, 0x9c, 0xd2, 0x07, 0xf3, 0xdb, 0x0f, 0xde, 0x67, 0x0b, 0x3a, 0xcd, 0xd6, 0x53, 0xa2, - 0xfb, 0x0f, 0xba, 0xbd, 0xeb, 0xeb, 0x28, 0xbe, 0xf6, 0x7a, 0xfd, 0x91, 0x0e, 0x0d, 0xf2, 0xbf, - 0xfe, 0xe0, 0xa1, 0x00, 0x6e, 0x3f, 0x70, 0x2f, 0x34, 0xc2, 0xed, 0x07, 0x26, 0xa1, 0x0d, 0x6e, - 0x3f, 0x58, 0xe9, 0x18, 0x70, 0xfb, 0x01, 0xdd, 0x3e, 0xd6, 0x06, 0x48, 0xcd, 0x10, 0xa9, 0x18, - 0xa4, 0x62, 0x50, 0x21, 0xb1, 0x6e, 0x9f, 0x6e, 0x6f, 0xe4, 0xdd, 0x46, 0xd7, 0x9f, 0x3f, 0xf5, - 0x12, 0x6f, 0xcc, 0x41, 0xbc, 0xf6, 0xe7, 0x20, 0xbe, 0x0e, 0x07, 0xf2, 0x39, 0xa8, 0xff, 0x21, - 0x5b, 0xfe, 0x02, 0xd7, 0x91, 0xba, 0x92, 0xf3, 0x52, 0xb7, 0xaf, 0x7a, 0x76, 0x56, 0xcb, 0xde, - 0xaa, 0xdb, 0x5d, 0x75, 0xfb, 0xab, 0x6a, 0x87, 0x65, 0x83, 0x73, 0xd4, 0x79, 0x3f, 0xc3, 0x1d, - 0xe4, 0xfe, 0x56, 0x87, 0xa3, 0x55, 0x4e, 0x44, 0xad, 0x1e, 0x04, 0x3a, 0x18, 0xea, 0x90, 0xd7, - 0x29, 0x67, 0xa8, 0x03, 0x34, 0x0f, 0x9a, 0x07, 0xcd, 0x83, 0xe6, 0x41, 0xf3, 0xa0, 0x79, 0xd0, - 0x3c, 0x68, 0x1e, 0x34, 0x0f, 0x9a, 0x07, 0xcd, 0x73, 0x83, 0xe6, 0x51, 0xab, 0x62, 0xad, 0x16, - 0x2e, 0xa9, 0x83, 0x79, 0xa9, 0xca, 0xd1, 0x64, 0x3d, 0x27, 0xd9, 0x72, 0x4a, 0x54, 0xa9, 0x32, - 0xdf, 0x74, 0x2f, 0xdb, 0x93, 0x9c, 0x2b, 0x55, 0x1e, 0x0a, 0xc8, 0xb7, 0x52, 0x65, 0x93, 0x4a, - 0x15, 0x87, 0x3d, 0x5b, 0x2a, 0x55, 0x0a, 0x84, 0x23, 0xb9, 0x7b, 0x9e, 0x73, 0x7a, 0x1e, 0x06, - 0x57, 0x49, 0x78, 0x95, 0xa7, 0xc2, 0x4e, 0x3d, 0xcb, 0xbd, 0x1c, 0x3f, 0xb3, 0x95, 0x41, 0xdd, - 0x2f, 0xbf, 0x64, 0x51, 0xe6, 0x57, 0x0f, 0x6d, 0x57, 0x89, 0xec, 0xfe, 0xb8, 0x2f, 0xd3, 0x4b, - 0xc2, 0xab, 0x6e, 0xd8, 0x4e, 0x7b, 0x49, 0xfe, 0x76, 0xff, 0xa1, 0x00, 0x2a, 0x14, 0xb1, 0xfb, - 0xd8, 0x7d, 0x07, 0xed, 0x3e, 0x15, 0x8a, 0x2f, 0xa8, 0x50, 0x54, 0x32, 0x38, 0xd2, 0x86, 0x47, - 0xcd, 0x00, 0xa9, 0x19, 0x22, 0x15, 0x83, 0x54, 0x8c, 0xf8, 0x97, 0x58, 0xea, 0xea, 0x81, 0xab, - 0xe2, 0xb5, 0xbb, 0xd1, 0x64, 0xa3, 0xa5, 0x67, 0xef, 0x3d, 0x2e, 0x57, 0x3e, 0x65, 0x75, 0x15, - 0x74, 0x07, 0xe4, 0xac, 0xf4, 0x0d, 0xab, 0x9e, 0x81, 0xd5, 0x32, 0xb4, 0xea, 0x06, 0x57, 0xdd, - 0xf0, 0xaa, 0x1a, 0x60, 0x19, 0x43, 0x2c, 0x64, 0x90, 0xe5, 0x22, 0x07, 0x4f, 0x9e, 0x17, 0x72, - 0x56, 0x1a, 0x2f, 0xf5, 0x11, 0x60, 0x1a, 0x0e, 0xd2, 0x30, 0xf1, 0xa2, 0x8e, 0x05, 0x28, 0xce, - 0x64, 0x03, 0x58, 0x00, 0x16, 0x80, 0x05, 0x60, 0x15, 0x08, 0xb0, 0x92, 0xfb, 0x06, 0xcc, 0x4b, - 0x47, 0x72, 0x15, 0xb0, 0x6b, 0x5f, 0x50, 0x46, 0xb6, 0x77, 0x85, 0x1f, 0xed, 0x74, 0x7f, 0x80, - 0xf0, 0xeb, 0x6a, 0x45, 0x61, 0x52, 0x50, 0xf6, 0x76, 0xf6, 0x14, 0x44, 0xe9, 0x0c, 0xe0, 0xd2, - 0x7b, 0x5b, 0xb3, 0x07, 0xd3, 0x1c, 0xc8, 0xa5, 0xe4, 0x20, 0x3c, 0x29, 0x56, 0x79, 0xfa, 0xd2, - 0x4c, 0xae, 0xc1, 0x14, 0x26, 0x61, 0x83, 0xff, 0xb8, 0x2a, 0x29, 0x0e, 0xee, 0x72, 0x45, 0x95, - 0xb6, 0xab, 0xfb, 0xdb, 0xfb, 0xbb, 0x7b, 0xd5, 0xfd, 0x9d, 0x35, 0xd2, 0xa9, 0x8d, 0x72, 0x48, - 0xb9, 0xdc, 0x28, 0xf0, 0xc9, 0x53, 0x04, 0xf4, 0xa8, 0x7f, 0xbb, 0xed, 0x05, 0x9d, 0x4e, 0x12, - 0x0e, 0x06, 0x8a, 0xb0, 0xbe, 0xf5, 0xab, 0x82, 0xac, 0x56, 0x90, 0xa6, 0x61, 0x12, 0xab, 0x21, - 0x7b, 0xe5, 0x3f, 0x3f, 0xfd, 0xf4, 0x71, 0xd3, 0xdb, 0xbf, 0xfc, 0xfa, 0x71, 0xcb, 0xdb, 0xbf, - 0x9c, 0x7c, 0xbb, 0x35, 0xfe, 0xcf, 0xe4, 0xfb, 0xea, 0xc7, 0x4d, 0x6f, 0x7b, 0xfa, 0xfd, 0xce, - 0xc7, 0x4d, 0x6f, 0xe7, 0xf2, 0xe5, 0x1f, 0x7f, 0xfc, 0xf2, 0xf2, 0xef, 0xd7, 0x77, 0xcf, 0xff, - 0xc3, 0x7f, 0x54, 0x8a, 0x7e, 0x88, 0x18, 0xf7, 0x47, 0x05, 0xb5, 0x51, 0xc9, 0xec, 0x83, 0xb8, - 0x19, 0x8d, 0xb2, 0x79, 0xe1, 0x09, 0x8d, 0xb2, 0x54, 0x1b, 0x7c, 0xeb, 0x6d, 0x52, 0x6d, 0x50, - 0x3a, 0xac, 0xa0, 0xda, 0x60, 0xb5, 0xed, 0xa3, 0xda, 0xc0, 0xda, 0xb0, 0xea, 0x19, 0x58, 0x2d, - 0x43, 0xab, 0x6e, 0x70, 0xd5, 0x0d, 0xaf, 0xaa, 0x01, 0x96, 0xa5, 0x2d, 0x54, 0x1b, 0x3c, 0xc3, - 0x0f, 0xa4, 0xda, 0x80, 0x6a, 0x03, 0x00, 0x0b, 0xc0, 0x02, 0xb0, 0x00, 0xac, 0x15, 0xac, 0x19, - 0xd5, 0x06, 0x3f, 0xf2, 0x45, 0xb5, 0xc1, 0x6a, 0xa2, 0xa8, 0x36, 0x28, 0x8e, 0x83, 0xf0, 0xa4, - 0x58, 0xaa, 0x0d, 0x64, 0x55, 0x89, 0x6a, 0x83, 0xf5, 0xd0, 0x29, 0xaa, 0x0d, 0xec, 0x4f, 0x1e, - 0xd5, 0x06, 0xf9, 0x50, 0x3d, 0xaa, 0x0d, 0x9c, 0x3e, 0x44, 0x54, 0x1b, 0x50, 0x6d, 0xe0, 0x48, - 0xb5, 0x01, 0xf3, 0xda, 0xac, 0xd5, 0xc2, 0x25, 0x75, 0x30, 0x9f, 0xd7, 0x76, 0x3a, 0x5a, 0xcf, - 0xe9, 0x6c, 0x39, 0x25, 0x9a, 0xdb, 0x93, 0x6f, 0xb1, 0x8b, 0x48, 0x91, 0x8b, 0xd8, 0x8c, 0x9e, - 0x2a, 0x33, 0x7a, 0xf2, 0xf4, 0x24, 0x99, 0xd1, 0x53, 0x18, 0xcc, 0xc8, 0x7d, 0x46, 0x4f, 0x30, - 0x4c, 0x3f, 0x7b, 0xfd, 0x60, 0x30, 0xc8, 0x54, 0x40, 0xa8, 0x76, 0x6e, 0x51, 0x8c, 0x4c, 0x0d, - 0xdd, 0x26, 0x13, 0x7b, 0xa8, 0xa1, 0x73, 0xc8, 0x2c, 0xa9, 0x98, 0xa7, 0x62, 0x30, 0x20, 0xb1, - 0xcc, 0xd7, 0x42, 0xfe, 0x3e, 0x8a, 0xaf, 0xa5, 0x6c, 0xcc, 0x62, 0xc8, 0x65, 0x0d, 0x6a, 0xa9, - 0x3b, 0xe1, 0xa0, 0x9d, 0x44, 0x7d, 0x11, 0xd2, 0x3a, 0x7b, 0x69, 0xf7, 0x85, 0x80, 0x09, 0x60, - 0x02, 0x98, 0x00, 0x26, 0xe4, 0xca, 0x65, 0x93, 0x28, 0xbe, 0x06, 0x09, 0x56, 0x7b, 0xd6, 0x6e, - 0xaf, 0x1d, 0x74, 0xbd, 0x60, 0x20, 0x07, 0x03, 0x33, 0x09, 0x60, 0x00, 0x18, 0x00, 0x06, 0x80, - 0x01, 0x79, 0x06, 0x1e, 0x06, 0x5e, 0x3c, 0xbc, 0xf9, 0x14, 0x26, 0x82, 0x30, 0x20, 0x50, 0x5a, - 0x25, 0x5c, 0x4a, 0x25, 0x58, 0x82, 0xa8, 0x51, 0x2a, 0xa5, 0x54, 0xcf, 0xa2, 0x55, 0x0a, 0xa5, - 0x59, 0xa6, 0x22, 0x58, 0x70, 0xa1, 0x52, 0xda, 0xa4, 0xfd, 0xea, 0xb5, 0x4a, 0x97, 0x54, 0x75, - 0xa0, 0x20, 0x59, 0xfd, 0xcb, 0x35, 0xf0, 0xae, 0xc7, 0xb9, 0x53, 0x49, 0xe7, 0x7a, 0x2a, 0x00, - 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, 0xdf, 0x1a, - 0xdf, 0x1a, 0xdf, 0x7a, 0x1d, 0x7c, 0x6b, 0x81, 0x2b, 0x4d, 0x1f, 0xf7, 0xb1, 0x73, 0xbf, 0xda, - 0x14, 0x5f, 0x1b, 0x5f, 0x1b, 0x5f, 0x1b, 0x5f, 0x9b, 0x5c, 0x66, 0xbe, 0x88, 0x90, 0x4a, 0xbc, - 0xac, 0x45, 0x2c, 0x10, 0xe8, 0xb8, 0x07, 0x05, 0x40, 0x01, 0x50, 0x60, 0xcd, 0x51, 0x40, 0xca, - 0xb8, 0x2c, 0x00, 0xc1, 0xb6, 0xc0, 0x67, 0xd7, 0xe3, 0xe1, 0xcd, 0x68, 0x6b, 0xee, 0xd6, 0x00, - 0x64, 0x92, 0xf0, 0xa6, 0x77, 0x1b, 0x7a, 0xfd, 0x24, 0xba, 0x0d, 0xd2, 0x50, 0x34, 0xb8, 0xbf, - 0x2c, 0x0a, 0xd0, 0x01, 0x74, 0x00, 0x1d, 0x40, 0x47, 0xd2, 0xc8, 0x78, 0x3d, 0x89, 0x92, 0xed, - 0x05, 0x0c, 0x12, 0x88, 0x08, 0x56, 0x1a, 0x9d, 0x30, 0x4e, 0xa3, 0xf4, 0xcb, 0x41, 0x30, 0x08, - 0xe5, 0x07, 0x0a, 0x9e, 0xd6, 0x8f, 0x4f, 0x3e, 0xd4, 0xfd, 0xd6, 0x69, 0xe3, 0x43, 0xed, 0xbc, - 0xee, 0xd7, 0xce, 0xfc, 0x93, 0xd6, 0x79, 0xe3, 0xa4, 0x29, 0x75, 0xe4, 0xc6, 0x41, 0xd5, 0x81, - 0xe8, 0x88, 0x06, 0xe1, 0xe8, 0xf3, 0x74, 0xe7, 0xee, 0x6d, 0x59, 0xb6, 0x89, 0xb5, 0xa3, 0xa3, - 0x4a, 0x11, 0xa3, 0xf6, 0x16, 0x1b, 0xd6, 0x3a, 0xaa, 0x1d, 0x4a, 0xef, 0x98, 0xc8, 0x27, 0x5f, - 0xba, 0x6e, 0xb8, 0xdd, 0x74, 0x36, 0xc7, 0x0d, 0xf7, 0x57, 0xdd, 0xa0, 0xef, 0x75, 0x82, 0x9b, - 0x7e, 0x14, 0x5f, 0x0b, 0x7a, 0x9b, 0xcb, 0xb2, 0xf2, 0x9e, 0xb5, 0x2e, 0x3b, 0x2c, 0x1c, 0x77, - 0x16, 0x77, 0x16, 0x77, 0x76, 0xcd, 0xdd, 0x59, 0xb9, 0x61, 0xde, 0x42, 0x43, 0xbc, 0x1d, 0xbd, - 0x6c, 0x27, 0x8c, 0x3b, 0x5e, 0xbb, 0x77, 0x73, 0x33, 0x8c, 0xa3, 0xf4, 0x8b, 0xe0, 0xad, 0x3b, - 0x8b, 0x72, 0xe4, 0x00, 0xa7, 0x79, 0xd2, 0xac, 0x83, 0x37, 0xe0, 0x0d, 0x78, 0x03, 0xde, 0xe4, - 0xa9, 0xef, 0x33, 0xdb, 0x45, 0xe0, 0xde, 0x71, 0x48, 0x4b, 0x7b, 0x69, 0xd0, 0xf5, 0xfa, 0x41, - 0xfa, 0x59, 0x30, 0x64, 0x7f, 0x5f, 0x08, 0x68, 0x03, 0xda, 0x80, 0x36, 0xa0, 0x4d, 0x8e, 0xfa, - 0x2e, 0x76, 0xaf, 0x00, 0x05, 0xf9, 0x8f, 0x2c, 0x9c, 0x82, 0xfc, 0xe7, 0xcb, 0xa1, 0x20, 0xdf, - 0xd9, 0x57, 0x4f, 0x41, 0xbe, 0xdd, 0xa7, 0x5e, 0xae, 0x8f, 0x83, 0x3d, 0xf6, 0x66, 0x42, 0x79, - 0x1f, 0x7b, 0x2a, 0x07, 0x37, 0x1b, 0x37, 0x1b, 0x37, 0x1b, 0x37, 0x1b, 0x37, 0x1b, 0x37, 0x1b, - 0x37, 0x1b, 0x37, 0x1b, 0x37, 0x1b, 0x37, 0xdb, 0x39, 0x37, 0x9b, 0xab, 0x49, 0x84, 0xaf, 0x26, - 0xc9, 0xf1, 0x66, 0x1a, 0x37, 0x6e, 0x00, 0x49, 0xa3, 0x9b, 0x30, 0x19, 0xe4, 0x7f, 0x05, 0x48, - 0xf6, 0xb9, 0x8e, 0xdf, 0x01, 0xb2, 0xc9, 0x1d, 0x20, 0x05, 0x62, 0x41, 0xdc, 0x01, 0xe2, 0xf0, - 0x1d, 0x20, 0xed, 0xe9, 0x99, 0x12, 0x0a, 0xc7, 0x64, 0x9f, 0x2f, 0x13, 0x86, 0xd9, 0x22, 0x0c, - 0x43, 0x18, 0x86, 0x30, 0x8c, 0x8b, 0x61, 0x98, 0xbc, 0x0d, 0xd5, 0x7d, 0x83, 0x15, 0x87, 0xed, - 0xd4, 0x4b, 0xc2, 0x34, 0xf9, 0x22, 0xdf, 0xca, 0xb3, 0x28, 0x4e, 0x48, 0x5d, 0xee, 0x55, 0x22, - 0xbe, 0xde, 0x94, 0x12, 0x22, 0x4b, 0x74, 0xc5, 0x6c, 0xa7, 0x86, 0x0d, 0xd5, 0xb3, 0xa5, 0x5a, - 0x36, 0x55, 0xdd, 0xb6, 0xaa, 0xdb, 0x58, 0x55, 0x5b, 0x2b, 0x1c, 0xe9, 0x10, 0x3a, 0x31, 0x62, - 0xa1, 0xf0, 0xa5, 0xf3, 0xd2, 0x09, 0xdb, 0xd1, 0x4d, 0xd0, 0xdd, 0xdd, 0x96, 0x3c, 0x32, 0x53, - 0xa7, 0xaf, 0x2a, 0x28, 0x63, 0x29, 0x6a, 0x26, 0x29, 0x4c, 0x36, 0x26, 0x3f, 0xfd, 0x52, 0xb8, - 0x07, 0x5d, 0x23, 0x46, 0xff, 0x50, 0x0d, 0xaa, 0x3f, 0xeb, 0x88, 0x53, 0x8a, 0xd9, 0x3f, 0xad, - 0x81, 0x9b, 0xe2, 0x72, 0xef, 0x14, 0xae, 0x91, 0xd7, 0x88, 0xe5, 0x3f, 0x54, 0x91, 0xd7, 0xa8, - 0x88, 0xdb, 0xc0, 0x27, 0xff, 0xe9, 0x85, 0xb9, 0xc4, 0x5e, 0x80, 0xb6, 0x7f, 0xee, 0x75, 0x3b, - 0x5e, 0x1a, 0xdd, 0x28, 0x0c, 0x3c, 0x98, 0x8b, 0x92, 0x67, 0x48, 0xfb, 0x30, 0x24, 0x18, 0x12, - 0x0c, 0x09, 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, - 0x09, 0x86, 0xf4, 0x7c, 0x35, 0xf9, 0x6f, 0x18, 0xf6, 0x83, 0x6e, 0x74, 0x1b, 0x7a, 0x51, 0x9c, - 0x86, 0xc9, 0x6d, 0xd0, 0x95, 0xa7, 0x4a, 0x8f, 0xc8, 0x24, 0xab, 0x04, 0x67, 0x82, 0x33, 0xc1, - 0x99, 0xe0, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, - 0x9c, 0xe4, 0x4c, 0x37, 0x51, 0x1c, 0xdd, 0x0c, 0x6f, 0xbc, 0xa0, 0x73, 0x1b, 0x26, 0x69, 0x34, - 0x08, 0x47, 0x5e, 0x92, 0x22, 0x7f, 0xfa, 0x86, 0x7c, 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, - 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x72, - 0xec, 0x13, 0xf3, 0x6e, 0xb7, 0x12, 0x6a, 0xda, 0x9f, 0x7d, 0xbe, 0x65, 0xf3, 0xfe, 0xa4, 0x27, - 0xfd, 0x55, 0xd6, 0x49, 0xba, 0x0e, 0xe3, 0xf5, 0xc7, 0xd3, 0x0a, 0xe4, 0xa6, 0xea, 0x8f, 0x3f, - 0xbe, 0x60, 0x1d, 0xb9, 0x55, 0x3a, 0x72, 0xf5, 0xb8, 0x29, 0x1d, 0xb9, 0x25, 0x84, 0x08, 0x3a, - 0x72, 0x9f, 0xb3, 0x59, 0xc4, 0xfb, 0x4c, 0x6d, 0xa8, 0x9e, 0x2d, 0xd5, 0xb2, 0xa9, 0xea, 0xb6, - 0x55, 0xdd, 0xc6, 0xaa, 0xda, 0x5a, 0x59, 0x62, 0x42, 0xbc, 0xef, 0x59, 0x4e, 0x1f, 0xf1, 0xbe, - 0x67, 0x7d, 0x11, 0xef, 0x23, 0x98, 0x63, 0x62, 0x7f, 0x16, 0x55, 0x84, 0x78, 0x5f, 0xa1, 0x55, - 0x84, 0x78, 0x9f, 0xe8, 0x7a, 0xe9, 0xc8, 0xfd, 0x6e, 0x86, 0x44, 0x47, 0x2e, 0x0c, 0x09, 0x86, - 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, 0x86, 0x04, - 0x43, 0xfa, 0x01, 0x35, 0xa1, 0x23, 0x17, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, 0x4c, - 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0x9e, 0x56, 0x13, - 0x3a, 0x72, 0xe1, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, 0xc1, - 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x54, 0xe9, 0xb9, 0x14, 0x1d, 0xb9, 0xb6, 0x1d, 0xb9, 0x39, - 0xde, 0xaa, 0x9d, 0xff, 0x3b, 0xe5, 0x52, 0x75, 0x1d, 0x2d, 0xa8, 0xe4, 0xda, 0xf8, 0x9c, 0x0c, - 0xdb, 0x69, 0x9c, 0x39, 0xc8, 0xcd, 0xc9, 0xf2, 0x1a, 0xd9, 0xea, 0xfc, 0x56, 0xb6, 0x26, 0xff, - 0xe0, 0xba, 0xef, 0xb7, 0xc2, 0x30, 0x79, 0x3f, 0x5a, 0x86, 0x7f, 0x3e, 0x59, 0x46, 0x99, 0x2e, - 0x77, 0x4f, 0x82, 0x78, 0xd0, 0xef, 0x25, 0xa9, 0xc0, 0xfd, 0xee, 0xb3, 0x8f, 0xe6, 0x8a, 0x77, - 0xf7, 0x22, 0x1e, 0x5c, 0xf1, 0x6e, 0x12, 0xb1, 0xe0, 0x8a, 0xf7, 0x95, 0x8e, 0x01, 0x57, 0xbc, - 0x33, 0x50, 0xc2, 0xda, 0x00, 0xa9, 0x19, 0x22, 0x15, 0x83, 0x54, 0x0c, 0x86, 0x23, 0x36, 0x50, - 0xa2, 0xdb, 0x6b, 0x07, 0x5d, 0x2f, 0xe8, 0x74, 0x92, 0x70, 0x30, 0x90, 0xcf, 0x5f, 0x2d, 0x8a, - 0x23, 0x93, 0xa4, 0x6d, 0xde, 0xf4, 0xcc, 0x9c, 0x96, 0xb9, 0x53, 0x37, 0x7b, 0xea, 0xe6, 0x4f, - 0xd5, 0x0c, 0xca, 0x86, 0xbc, 0x8a, 0x9f, 0x49, 0x1a, 0xc6, 0x51, 0x2f, 0xd6, 0xc8, 0x22, 0xed, - 0x0b, 0xca, 0xc8, 0xb6, 0xab, 0xf0, 0x79, 0x9d, 0xe9, 0x4b, 0x89, 0xfa, 0xc2, 0x90, 0xa2, 0xfd, - 0x86, 0x74, 0xdf, 0x94, 0xde, 0x1b, 0x7b, 0xe4, 0xcd, 0xdd, 0x6e, 0x2b, 0xbe, 0xbb, 0xa5, 0x77, - 0xf8, 0xab, 0xa2, 0xcc, 0x56, 0x90, 0xa6, 0x61, 0x12, 0xab, 0xbd, 0xce, 0x99, 0xe0, 0xff, 0xfc, - 0xf4, 0xd3, 0xc7, 0x4d, 0x6f, 0xff, 0xf2, 0xeb, 0xc7, 0x2d, 0x6f, 0xff, 0x72, 0xf2, 0xed, 0xd6, - 0xf8, 0x3f, 0x93, 0xef, 0xab, 0x1f, 0x37, 0xbd, 0xed, 0xe9, 0xf7, 0x3b, 0x1f, 0x37, 0xbd, 0x9d, - 0xcb, 0x97, 0x7f, 0xfc, 0xf1, 0xcb, 0xcb, 0xbf, 0x5f, 0xdf, 0x3d, 0xff, 0x0f, 0xff, 0x51, 0x51, - 0x7b, 0xb8, 0x4b, 0x15, 0x49, 0x77, 0x3f, 0x97, 0xf8, 0xf0, 0xed, 0x72, 0xf8, 0x74, 0x0e, 0x5f, - 0xe0, 0x5d, 0xd5, 0xbc, 0x77, 0x97, 0x7f, 0x6f, 0xfd, 0xbc, 0x7d, 0xf7, 0xe6, 0xe5, 0xdf, 0x7b, - 0x77, 0x0f, 0x7f, 0xf8, 0xf5, 0xb1, 0x5f, 0xdb, 0xfa, 0x79, 0xef, 0xee, 0xcd, 0x13, 0xff, 0xb2, - 0x7b, 0xf7, 0xe6, 0x3b, 0x3f, 0x63, 0xe7, 0xee, 0xa7, 0xa5, 0x5f, 0x1d, 0xfd, 0xbc, 0xfa, 0xd4, - 0x1f, 0x6c, 0x3f, 0xf1, 0x07, 0xaf, 0x9f, 0xfa, 0x83, 0xd7, 0x4f, 0xfc, 0xc1, 0x93, 0x4b, 0xaa, - 0x3e, 0xf1, 0x07, 0x3b, 0x77, 0x5f, 0x97, 0x7e, 0xff, 0xa7, 0xc7, 0x7f, 0x75, 0xf7, 0xee, 0xe5, - 0xd7, 0xa7, 0xfe, 0x6d, 0xef, 0xee, 0xeb, 0x9b, 0x97, 0x25, 0x34, 0x45, 0x1b, 0xc5, 0x7e, 0x0e, - 0x61, 0x53, 0xaa, 0xe8, 0x71, 0x0e, 0xd2, 0x24, 0x8a, 0xaf, 0x35, 0xbd, 0xcd, 0x5f, 0xa9, 0x70, - 0x10, 0x5d, 0xaf, 0x48, 0xb5, 0x78, 0x3a, 0xf4, 0x3a, 0xd1, 0xa0, 0xdd, 0xbb, 0x0d, 0x35, 0xa6, - 0xb5, 0x2e, 0x8a, 0x93, 0xaf, 0x05, 0xbf, 0x0a, 0xba, 0x83, 0x90, 0x20, 0x1e, 0x41, 0x3c, 0x82, - 0x78, 0x04, 0xf1, 0x8a, 0x14, 0xc4, 0xfb, 0xd4, 0xeb, 0x75, 0xc3, 0x40, 0x25, 0x8c, 0xb7, 0xb5, - 0xc6, 0xf0, 0xd7, 0x0f, 0x06, 0x83, 0xe8, 0x36, 0xf4, 0x6e, 0x7a, 0x1d, 0x85, 0x29, 0x7c, 0x0b, - 0xd2, 0x00, 0x3f, 0xc0, 0x0f, 0xf0, 0x03, 0xfc, 0x00, 0x3f, 0xc0, 0xcf, 0x06, 0xfc, 0xd2, 0x76, - 0xdf, 0xbb, 0xd1, 0x28, 0xa9, 0x98, 0x0a, 0x02, 0x8a, 0x80, 0x22, 0xa0, 0x08, 0x28, 0x2a, 0x10, - 0x14, 0x0d, 0xa3, 0x38, 0xdd, 0xda, 0x55, 0x40, 0xa2, 0x5d, 0xba, 0x64, 0xbf, 0xfd, 0x20, 0x16, - 0x5d, 0xb2, 0x9b, 0xb4, 0x40, 0x3a, 0x6e, 0x0e, 0x16, 0x55, 0xc4, 0xa0, 0x4b, 0x56, 0x5b, 0x45, - 0x76, 0x77, 0x76, 0x5e, 0xef, 0xd0, 0x29, 0xeb, 0xda, 0xa7, 0xd3, 0x29, 0x9b, 0x8b, 0xd7, 0x53, - 0xe6, 0x4e, 0xd9, 0x69, 0xbf, 0x1d, 0xd7, 0xd7, 0xe6, 0xe5, 0xa0, 0x71, 0x7d, 0x2d, 0xdd, 0x46, - 0x8e, 0x30, 0x45, 0xba, 0x8d, 0xf4, 0x50, 0x82, 0x6e, 0x23, 0x02, 0x64, 0x04, 0xc8, 0x08, 0x90, - 0x11, 0x20, 0xb3, 0x0e, 0x90, 0xd1, 0x6d, 0xe4, 0x4e, 0x7c, 0x8c, 0x6e, 0xa3, 0x82, 0xbd, 0xb1, - 0x47, 0xde, 0x1c, 0xdd, 0x46, 0xe2, 0x82, 0xe9, 0x36, 0x72, 0x10, 0xb3, 0xdc, 0x38, 0x7c, 0x74, - 0x1b, 0x29, 0x1d, 0x3e, 0xba, 0x8d, 0xe8, 0x36, 0x72, 0xd4, 0x29, 0xd7, 0x7b, 0x0e, 0xba, 0x8d, - 0x56, 0x30, 0x96, 0x64, 0x89, 0x44, 0xd7, 0x4b, 0xb7, 0xd1, 0xf7, 0x09, 0xa3, 0xe0, 0x9a, 0x20, - 0x1e, 0x41, 0x3c, 0x82, 0x78, 0x45, 0x0e, 0xe2, 0x51, 0x70, 0xad, 0x02, 0x7f, 0x74, 0x1b, 0x01, - 0x7e, 0x80, 0x1f, 0xe0, 0x07, 0xf8, 0x01, 0x7e, 0x6b, 0x07, 0x7e, 0x74, 0x1b, 0x01, 0x45, 0x40, - 0x11, 0x50, 0x04, 0x14, 0x3d, 0x7d, 0x5e, 0xe8, 0x36, 0xfa, 0xee, 0x2f, 0xba, 0x8d, 0x56, 0x12, - 0x47, 0xb7, 0x51, 0x3e, 0x2a, 0x42, 0xb7, 0x51, 0xe1, 0xd5, 0x84, 0x3c, 0x92, 0x2c, 0x97, 0xa0, - 0xdb, 0xc8, 0xbc, 0xdb, 0x88, 0xab, 0xf9, 0xac, 0x15, 0xc2, 0x0d, 0x45, 0xb0, 0xbf, 0x9d, 0x6f, - 0xb6, 0x92, 0x12, 0x5d, 0xd0, 0x37, 0x1c, 0x84, 0xde, 0xcd, 0xb0, 0x9b, 0x46, 0xfd, 0x6e, 0xe8, - 0x8d, 0xde, 0xf0, 0x20, 0xff, 0x9b, 0xfa, 0x1e, 0x91, 0xc1, 0x95, 0x7d, 0xee, 0xc5, 0x27, 0xb8, - 0xb2, 0xcf, 0x24, 0xbe, 0xc0, 0x95, 0x7d, 0x2b, 0x1d, 0x03, 0xae, 0xec, 0xa3, 0x89, 0xd6, 0xda, - 0x00, 0xa9, 0x19, 0x22, 0x15, 0x83, 0x54, 0x0c, 0xf2, 0x23, 0xd6, 0x44, 0x1b, 0xc6, 0xc1, 0xa7, - 0x6e, 0xd8, 0x91, 0xcf, 0xf5, 0x4c, 0x05, 0x51, 0xde, 0x60, 0x61, 0x32, 0x35, 0x4c, 0xa7, 0x9e, - 0x09, 0xd5, 0x32, 0xa5, 0xea, 0x26, 0x55, 0xdd, 0xb4, 0xaa, 0x9a, 0x58, 0xd9, 0x48, 0x1b, 0xe5, - 0x0d, 0xcf, 0xf0, 0xf4, 0xb6, 0x08, 0x49, 0xba, 0x1b, 0x81, 0x72, 0x22, 0x12, 0xb5, 0x1c, 0xc6, - 0x58, 0xa3, 0x49, 0x48, 0xe1, 0xc8, 0xfe, 0x89, 0x91, 0xb8, 0x30, 0x7f, 0x54, 0x84, 0xc2, 0x41, - 0xe1, 0xa0, 0x70, 0xeb, 0x49, 0xe1, 0x84, 0x62, 0x4e, 0x3a, 0xb1, 0x27, 0x61, 0x03, 0x06, 0xb1, - 0x82, 0x58, 0x41, 0xac, 0xdc, 0x24, 0x56, 0x52, 0x06, 0x71, 0x26, 0x20, 0xe8, 0x76, 0x7b, 0x7f, - 0xce, 0x9d, 0xd8, 0x60, 0x20, 0xaf, 0xcf, 0xd3, 0x13, 0xba, 0x2c, 0x5a, 0x58, 0xcd, 0x94, 0xe2, - 0x5f, 0x4a, 0x71, 0x30, 0x35, 0xb3, 0xad, 0x69, 0xbe, 0xf5, 0xcd, 0xb8, 0xb6, 0x39, 0x37, 0x33, - 0xeb, 0x66, 0xe6, 0xdd, 0xc4, 0xcc, 0xcb, 0x9a, 0x7b, 0x61, 0xb3, 0xaf, 0x17, 0x57, 0x33, 0x88, - 0xaf, 0x29, 0xc5, 0xd9, 0xe4, 0x15, 0x40, 0xf0, 0xe5, 0x57, 0x6e, 0x82, 0xbf, 0xa2, 0x9b, 0xe1, - 0x4d, 0xce, 0xf5, 0x37, 0xdf, 0x7c, 0xfb, 0x8b, 0x62, 0xf5, 0xe0, 0x78, 0x0b, 0x28, 0x06, 0x8a, - 0x81, 0x62, 0xa0, 0x18, 0x28, 0x5e, 0x6c, 0x9f, 0x7a, 0x5d, 0x55, 0x44, 0xe2, 0x3d, 0x05, 0x51, - 0x3a, 0xed, 0x54, 0xd3, 0x2f, 0xc5, 0xa9, 0x8b, 0x9a, 0xed, 0x55, 0xca, 0xb0, 0xb6, 0x24, 0x56, - 0xb9, 0xdd, 0x6a, 0x26, 0xd7, 0xa0, 0x9f, 0x46, 0xc9, 0xbc, 0x2c, 0xaa, 0x92, 0x62, 0x1b, 0x96, - 0x2b, 0xaa, 0xb4, 0x5d, 0xdd, 0xdf, 0xde, 0xdf, 0xdd, 0xab, 0xee, 0xef, 0xac, 0x91, 0x4e, 0x31, - 0x55, 0xd2, 0x96, 0xc0, 0x15, 0x2a, 0x14, 0x2c, 0x5c, 0x48, 0x31, 0x93, 0xe3, 0x58, 0x41, 0x45, - 0x38, 0xfa, 0x75, 0x89, 0xaa, 0x0a, 0x39, 0x2d, 0x90, 0x98, 0x37, 0x22, 0x73, 0xef, 0xd4, 0x92, - 0xcf, 0x29, 0x71, 0xff, 0xd4, 0x52, 0xc0, 0x47, 0x3a, 0x7d, 0x59, 0x25, 0x7d, 0xe9, 0x0e, 0xc9, - 0x26, 0x7d, 0xb9, 0xc6, 0x98, 0x45, 0xfa, 0x32, 0xcf, 0xcd, 0x24, 0x7d, 0xe9, 0xba, 0xf9, 0xd6, - 0x37, 0xe3, 0xda, 0xe6, 0xdc, 0xcc, 0xac, 0x9b, 0x99, 0x77, 0x13, 0x33, 0xaf, 0x43, 0xde, 0x48, - 0x5f, 0xe6, 0xe0, 0xcd, 0x92, 0xbe, 0x5c, 0xde, 0x1b, 0xd2, 0x97, 0x40, 0x31, 0x50, 0x0c, 0x14, - 0x03, 0xc5, 0xeb, 0x0b, 0xc5, 0xa4, 0x2f, 0x57, 0xfe, 0x22, 0x7d, 0x29, 0x22, 0x96, 0xf4, 0xa5, - 0xac, 0x2a, 0x91, 0xbe, 0x5c, 0x0f, 0x9d, 0x22, 0x7d, 0x69, 0x4b, 0xe0, 0x48, 0x5f, 0x3e, 0x22, - 0xc7, 0xc5, 0xf4, 0xa5, 0xc0, 0xc0, 0x4a, 0x39, 0x25, 0x60, 0x9c, 0x80, 0x63, 0xea, 0x53, 0x11, - 0x49, 0x27, 0xff, 0xc0, 0xb8, 0xcb, 0x8b, 0x41, 0x78, 0x9c, 0x2d, 0xaf, 0x35, 0x5a, 0x9d, 0x5f, - 0xcf, 0x9d, 0x78, 0xb9, 0x39, 0xea, 0x20, 0x12, 0x1d, 0x75, 0x10, 0x31, 0xea, 0x80, 0x51, 0x07, - 0x4e, 0x04, 0x78, 0x18, 0x75, 0xa0, 0x07, 0x64, 0x8c, 0x3a, 0x30, 0x30, 0x60, 0xe2, 0x86, 0x4c, - 0xc3, 0xa0, 0xe9, 0x19, 0x36, 0x2d, 0x03, 0xa7, 0x6e, 0xe8, 0xd4, 0x0d, 0x9e, 0xaa, 0xe1, 0x2b, - 0x26, 0x41, 0x14, 0xaf, 0x15, 0x22, 0x29, 0x59, 0xc4, 0x90, 0x1b, 0x49, 0xc9, 0x42, 0x99, 0x70, - 0x33, 0x53, 0x6e, 0x66, 0xd2, 0x4d, 0x4c, 0xbb, 0xac, 0x89, 0x17, 0x36, 0xf5, 0xb3, 0x1d, 0x23, - 0x29, 0x99, 0x8b, 0x28, 0x92, 0x92, 0xc5, 0x83, 0xb5, 0x25, 0xb1, 0x24, 0x25, 0x65, 0x55, 0x89, - 0xa4, 0xe4, 0x7a, 0xe8, 0x14, 0x49, 0x49, 0xd3, 0xf5, 0x93, 0x94, 0x7c, 0x4c, 0x8e, 0x63, 0x59, - 0xa5, 0x88, 0x9e, 0x4a, 0x7a, 0x2a, 0x9f, 0x47, 0xbe, 0xe9, 0xa9, 0x74, 0x88, 0x64, 0x13, 0x27, - 0x5d, 0x63, 0xcc, 0x22, 0x4e, 0x9a, 0xc7, 0x26, 0x12, 0x27, 0x75, 0xd9, 0x64, 0xeb, 0x9b, 0x6e, - 0x6d, 0x13, 0x6e, 0x66, 0xca, 0xcd, 0x4c, 0xba, 0x89, 0x69, 0xd7, 0x21, 0x6c, 0xc4, 0x49, 0x57, - 0xb6, 0x8e, 0xc4, 0x49, 0x57, 0x09, 0x6e, 0x11, 0x27, 0x2d, 0x75, 0x4c, 0x8b, 0x38, 0xa9, 0xa8, - 0x2a, 0x11, 0x27, 0x2d, 0xae, 0x14, 0xe2, 0xa4, 0x1a, 0x9c, 0x73, 0x9d, 0xe3, 0xa4, 0x34, 0x6f, - 0x14, 0x45, 0x8d, 0x5c, 0x54, 0x1f, 0x77, 0x9b, 0x37, 0x1a, 0x6b, 0xd2, 0xbc, 0x21, 0x13, 0xe5, - 0x17, 0x8d, 0xee, 0x8b, 0xb7, 0x6f, 0x54, 0x69, 0xdf, 0xd0, 0x0b, 0xf9, 0xd0, 0xbe, 0x51, 0x42, - 0x28, 0x13, 0x6b, 0xdf, 0x08, 0xe3, 0xe0, 0x53, 0x37, 0xec, 0xc8, 0xa7, 0x25, 0xa7, 0x82, 0xa4, - 0xd2, 0x14, 0x3a, 0xd3, 0x0a, 0x85, 0xb9, 0x23, 0x8d, 0x22, 0x4e, 0x99, 0x52, 0x75, 0x93, 0xaa, - 0x6e, 0x5a, 0x55, 0x4d, 0x6c, 0x31, 0xc9, 0xa8, 0x78, 0x34, 0x5c, 0x71, 0x9a, 0xa0, 0xf0, 0x14, - 0x41, 0x08, 0x66, 0xa9, 0x09, 0xa6, 0x40, 0x68, 0x22, 0x47, 0x0e, 0xb7, 0xe1, 0x90, 0x86, 0x48, - 0x69, 0x86, 0x63, 0x1a, 0x51, 0xc9, 0x95, 0x37, 0xe7, 0x10, 0x65, 0xc8, 0x47, 0x39, 0x57, 0x57, - 0xa5, 0xd5, 0x3e, 0x61, 0x45, 0x25, 0x1c, 0x79, 0x2b, 0x63, 0x4f, 0x65, 0xf6, 0xea, 0xbc, 0xf1, - 0xb6, 0xae, 0xf8, 0xa9, 0x47, 0xd1, 0x20, 0xad, 0xa5, 0x69, 0x3e, 0x3c, 0xa4, 0x72, 0x1c, 0xc5, - 0xf5, 0x6e, 0x38, 0xf2, 0x38, 0x06, 0x95, 0x37, 0x2f, 0xe2, 0x61, 0xb7, 0xfb, 0x73, 0x0e, 0x1f, - 0x1a, 0xfc, 0x95, 0xff, 0x87, 0x9e, 0x24, 0x9d, 0x30, 0x09, 0x3b, 0x07, 0x5f, 0xb2, 0x8f, 0x34, - 0x7d, 0xb5, 0x39, 0xdb, 0x15, 0x4b, 0x7b, 0x92, 0x83, 0xf1, 0xf8, 0x21, 0xa3, 0xb1, 0x9a, 0x8d, - 0xf8, 0xf1, 0x93, 0xfd, 0x63, 0x7f, 0xf9, 0x83, 0x0a, 0x93, 0x97, 0xa2, 0xa8, 0x2b, 0xc8, 0x8f, - 0xbd, 0x9d, 0xe7, 0xef, 0xed, 0x0f, 0xec, 0x6b, 0x25, 0x89, 0x3e, 0xfd, 0xf0, 0x66, 0xce, 0x9c, - 0xfc, 0xd1, 0x87, 0xfc, 0xe0, 0x3b, 0x5d, 0x2d, 0x4c, 0xbb, 0x72, 0x38, 0x36, 0x8f, 0xd8, 0xc1, - 0xfd, 0xd8, 0x40, 0x12, 0x7d, 0x5a, 0x31, 0x3e, 0x90, 0x17, 0xff, 0xcf, 0x9d, 0xdf, 0xe7, 0xce, - 0xdf, 0x1f, 0xf2, 0xf3, 0xe9, 0xde, 0x15, 0xc4, 0x1a, 0xad, 0x1a, 0xbe, 0xac, 0x04, 0x57, 0x91, - 0x37, 0x08, 0xae, 0xa2, 0xd5, 0x0b, 0x84, 0xe7, 0x17, 0xaa, 0xcc, 0x3e, 0x72, 0x55, 0x77, 0x2b, - 0x97, 0xec, 0x49, 0x6e, 0xd9, 0x92, 0x3c, 0x43, 0x7c, 0xf9, 0x1e, 0x57, 0xa9, 0xb0, 0x9d, 0x58, - 0x78, 0x4e, 0x2c, 0x0c, 0x97, 0xfb, 0x71, 0x76, 0x83, 0x78, 0xe4, 0x95, 0xa5, 0x98, 0x9d, 0xcd, - 0xfc, 0x54, 0xe4, 0xe1, 0xa9, 0xcf, 0x4b, 0x43, 0xf2, 0x4d, 0x9d, 0xe6, 0x1e, 0xff, 0x97, 0x88, - 0xf7, 0xcb, 0x18, 0x05, 0x29, 0xe3, 0x20, 0x6e, 0x24, 0xc4, 0x8d, 0x85, 0xb8, 0xd1, 0x70, 0x33, - 0x84, 0x96, 0x77, 0xca, 0x73, 0x76, 0xf4, 0xbd, 0x8c, 0x2f, 0x0a, 0x55, 0x68, 0x2c, 0x8a, 0x91, - 0xa9, 0xd4, 0xd8, 0x64, 0xd0, 0xa6, 0xb0, 0x19, 0x92, 0x36, 0x47, 0x6a, 0x66, 0x49, 0xcd, 0x3c, - 0xa9, 0x99, 0xa9, 0x7c, 0xcd, 0x55, 0xce, 0x66, 0x6b, 0xb6, 0x0b, 0x62, 0x69, 0xc3, 0x99, 0xde, - 0x77, 0xc3, 0xe0, 0x2a, 0x09, 0xaf, 0x24, 0x94, 0x7e, 0xea, 0xd5, 0x08, 0xb4, 0xc9, 0x54, 0x5a, - 0x59, 0x2c, 0xe9, 0x97, 0x5f, 0x26, 0x09, 0xa5, 0x57, 0x8b, 0x06, 0x73, 0x1d, 0xe6, 0x3b, 0xf7, - 0x6f, 0xb7, 0xbd, 0x41, 0x92, 0x86, 0x5e, 0xbf, 0xd7, 0x8d, 0xda, 0x5f, 0x04, 0x67, 0x3d, 0x3f, - 0x94, 0xc4, 0xdc, 0x67, 0xe0, 0x08, 0x38, 0xa2, 0x80, 0x30, 0xbf, 0x0f, 0xee, 0x4e, 0xf6, 0x54, - 0xbe, 0x80, 0x70, 0x2a, 0x88, 0x09, 0xd0, 0xda, 0xa6, 0x4d, 0xd7, 0xc4, 0x69, 0x99, 0x3a, 0x75, - 0x93, 0xa7, 0x6e, 0xfa, 0xd4, 0x4d, 0xa0, 0x8c, 0x29, 0x14, 0x32, 0x89, 0xe2, 0xa6, 0x71, 0x26, - 0x20, 0xe9, 0x0d, 0xd3, 0x50, 0x71, 0xb4, 0x49, 0x26, 0x4f, 0x67, 0xce, 0xc8, 0x16, 0x73, 0x46, - 0x1c, 0x37, 0xa4, 0xda, 0x06, 0xd5, 0xcc, 0xb0, 0x9a, 0x19, 0x58, 0x33, 0x43, 0x2b, 0x6b, 0x70, - 0x85, 0x0d, 0xaf, 0x9a, 0x01, 0x5e, 0x34, 0xc4, 0x7a, 0xfa, 0xbf, 0x60, 0x8f, 0xb5, 0x74, 0x5f, - 0xc7, 0x2c, 0xab, 0x9b, 0x67, 0x0b, 0x33, 0x6d, 0x6b, 0xae, 0xad, 0xcc, 0xb6, 0xb9, 0xf9, 0x36, - 0x37, 0xe3, 0xe6, 0xe6, 0x5c, 0xc7, 0xac, 0x2b, 0x99, 0x77, 0x75, 0x33, 0x3f, 0x13, 0xd8, 0xee, - 0x75, 0x7b, 0x89, 0xfe, 0xb9, 0x99, 0xdf, 0x58, 0x35, 0x12, 0xff, 0xf3, 0x5a, 0xcc, 0xb6, 0xd1, - 0x86, 0x01, 0x4b, 0x38, 0x70, 0x03, 0x16, 0xac, 0xe1, 0xc1, 0x19, 0x98, 0x70, 0x06, 0x2e, 0x9c, - 0x81, 0x0d, 0x5d, 0xf8, 0x50, 0x86, 0x91, 0xd9, 0x2e, 0xab, 0x4d, 0x29, 0x7c, 0xf2, 0xdc, 0xcb, - 0x25, 0x60, 0xbf, 0xdb, 0xcb, 0xdf, 0x33, 0x90, 0xbd, 0x94, 0xc0, 0x9d, 0x00, 0xdd, 0x46, 0x39, - 0x55, 0x5b, 0x73, 0x1a, 0x5e, 0x18, 0x77, 0xfa, 0xbd, 0x68, 0x6c, 0x38, 0x8c, 0x7c, 0x96, 0xd9, - 0x0a, 0x70, 0x5b, 0x70, 0x5b, 0x70, 0x5b, 0x70, 0x5b, 0x70, 0x5b, 0x70, 0x5b, 0x4a, 0xea, 0xb6, - 0xcc, 0xb0, 0x0e, 0xcf, 0x65, 0xe5, 0xcd, 0xed, 0x07, 0xe9, 0x67, 0x2f, 0xea, 0xd8, 0x39, 0x2e, - 0xd3, 0x05, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0xe0, 0xb7, 0x94, 0xd4, - 0x6f, 0x99, 0x42, 0x1d, 0x6e, 0xcb, 0xca, 0x7b, 0x2b, 0x7b, 0x25, 0xdf, 0x37, 0x35, 0x5a, 0xf2, - 0xaa, 0xbe, 0x6f, 0xea, 0x32, 0x2e, 0x0b, 0x2e, 0x0b, 0x2e, 0x0b, 0x2e, 0x4b, 0x79, 0x5d, 0x16, - 0xed, 0x82, 0x83, 0x99, 0xe0, 0x20, 0x4d, 0x13, 0x2f, 0x8a, 0x3b, 0xe1, 0x5f, 0x76, 0x87, 0x6e, - 0xd6, 0x8e, 0x3c, 0x5f, 0x8b, 0x91, 0xb2, 0xdb, 0x70, 0x64, 0x73, 0xe0, 0x71, 0x01, 0x80, 0xdc, - 0x02, 0x22, 0x57, 0x00, 0xc9, 0x39, 0x60, 0x72, 0x0e, 0xa0, 0x9c, 0x03, 0x2a, 0x1b, 0xc0, 0x32, - 0x02, 0x2e, 0x7b, 0xce, 0xed, 0x10, 0xf7, 0x76, 0x81, 0x83, 0x3f, 0xc6, 0xc5, 0x1f, 0xfd, 0xbf, - 0x31, 0xd8, 0x0e, 0xc2, 0x74, 0x30, 0xfb, 0x2e, 0xe3, 0xec, 0x13, 0x00, 0xde, 0x58, 0x8f, 0x23, - 0x63, 0x70, 0x5c, 0x8c, 0x6a, 0x3d, 0x97, 0xce, 0x89, 0x45, 0xcd, 0x27, 0x8e, 0x16, 0x8e, 0x16, - 0x8e, 0x16, 0x8e, 0x16, 0x8e, 0x56, 0x09, 0x1c, 0x2d, 0xb5, 0x9b, 0xb0, 0xbf, 0x85, 0x22, 0x96, - 0x6e, 0x96, 0xee, 0xcd, 0xd9, 0x4f, 0x7d, 0xd9, 0xda, 0xcc, 0x17, 0x56, 0x37, 0x6d, 0x3b, 0xea, - 0x5e, 0x2c, 0x2d, 0xc7, 0xe8, 0x66, 0xee, 0x27, 0xd7, 0x63, 0x78, 0xbb, 0xb2, 0x63, 0xe6, 0x74, - 0x51, 0x85, 0x83, 0xbf, 0x50, 0xe1, 0x6f, 0xa8, 0xb0, 0xd5, 0x8d, 0xe0, 0x85, 0xd2, 0xe5, 0x8d, - 0xf5, 0x94, 0x7e, 0x49, 0xd0, 0x40, 0x30, 0x68, 0x70, 0x73, 0x33, 0x8c, 0xa3, 0xf4, 0x8b, 0x2b, - 0xc9, 0x9a, 0x87, 0x0b, 0x22, 0x90, 0x40, 0x20, 0x81, 0x40, 0x02, 0x81, 0x04, 0x02, 0x09, 0x04, - 0x12, 0x9e, 0x69, 0x37, 0xc8, 0xd8, 0xbc, 0xf8, 0x9e, 0x8c, 0xcd, 0x14, 0x71, 0xa3, 0x70, 0x30, - 0xfb, 0xfe, 0x0b, 0x49, 0x1b, 0x9d, 0x97, 0x63, 0xd6, 0xef, 0xba, 0x74, 0x5a, 0x8c, 0xfa, 0x5e, - 0xf1, 0xb8, 0xf0, 0xb8, 0xf0, 0xb8, 0xf0, 0xb8, 0xf0, 0xb8, 0x4a, 0xe0, 0x71, 0x45, 0x7d, 0x2f, - 0xe8, 0x74, 0x92, 0x70, 0x30, 0x70, 0xc1, 0xe9, 0xda, 0x37, 0x5c, 0x43, 0xf6, 0x4e, 0xd6, 0x3e, - 0x7d, 0xb3, 0x70, 0x0d, 0x83, 0xbd, 0x6e, 0x2c, 0xe9, 0xc8, 0xaf, 0x0e, 0xac, 0xa5, 0x15, 0xa4, - 0x69, 0x98, 0xc4, 0xe6, 0xea, 0x32, 0x5b, 0xd0, 0x7f, 0x7e, 0xfa, 0xe9, 0xe3, 0xa6, 0xb7, 0x7f, - 0xf9, 0xf5, 0xe3, 0x96, 0xb7, 0x7f, 0x39, 0xf9, 0x76, 0x6b, 0xfc, 0x9f, 0xc9, 0xf7, 0xd5, 0x8f, - 0x9b, 0xde, 0xf6, 0xf4, 0xfb, 0x9d, 0x8f, 0x9b, 0xde, 0xce, 0xe5, 0xcb, 0x3f, 0xfe, 0xf8, 0xe5, - 0xe5, 0xdf, 0xaf, 0xef, 0x9e, 0xff, 0x87, 0xff, 0xa8, 0x98, 0x3f, 0xf4, 0xa5, 0x6d, 0x60, 0xfd, - 0x67, 0x8c, 0xc4, 0xcc, 0x48, 0xec, 0x62, 0x24, 0x8a, 0x65, 0x24, 0x02, 0xef, 0xaa, 0xe6, 0xbd, - 0xbb, 0xfc, 0x7b, 0xeb, 0xe7, 0xed, 0xbb, 0x37, 0x2f, 0xff, 0xde, 0xbb, 0x7b, 0xf8, 0xc3, 0xaf, - 0x8f, 0xfd, 0xda, 0xd6, 0xcf, 0x7b, 0x77, 0x6f, 0x9e, 0xf8, 0x97, 0xdd, 0xbb, 0x37, 0xdf, 0xf9, - 0x19, 0x3b, 0x77, 0x3f, 0x2d, 0xfd, 0xea, 0xe8, 0xe7, 0xd5, 0xa7, 0xfe, 0x60, 0xfb, 0x89, 0x3f, - 0x78, 0xfd, 0xd4, 0x1f, 0xbc, 0x7e, 0xe2, 0x0f, 0x9e, 0x5c, 0x52, 0xf5, 0x89, 0x3f, 0xd8, 0xb9, - 0xfb, 0xba, 0xf4, 0xfb, 0x3f, 0x3d, 0xfe, 0xab, 0xbb, 0x77, 0x2f, 0xbf, 0x3e, 0xf5, 0x6f, 0x7b, - 0x77, 0x5f, 0xdf, 0xbc, 0xc4, 0x64, 0x92, 0x8b, 0x2c, 0x65, 0x2c, 0xec, 0xaf, 0xd4, 0x73, 0x2e, - 0x1f, 0xf9, 0xd8, 0xa2, 0x88, 0x90, 0x11, 0x21, 0x23, 0x42, 0x46, 0x84, 0x8c, 0x08, 0x19, 0x11, - 0xb2, 0x67, 0xda, 0x0d, 0x72, 0x92, 0x2f, 0xbe, 0x27, 0x27, 0x79, 0x1f, 0x75, 0xa3, 0x70, 0xb0, - 0xf0, 0xff, 0x93, 0x9b, 0x54, 0x7a, 0x49, 0x51, 0x7c, 0x1b, 0x74, 0xa3, 0x8e, 0x97, 0x84, 0xc1, - 0xa0, 0x17, 0xdb, 0xbb, 0x62, 0x0f, 0xd6, 0x83, 0x17, 0x86, 0x17, 0x86, 0x17, 0x86, 0x17, 0x86, - 0x17, 0x86, 0x17, 0xf6, 0x5c, 0x24, 0xe9, 0x84, 0x71, 0x1a, 0xa5, 0x5f, 0x1c, 0xf1, 0xc4, 0x0c, - 0x7b, 0x1e, 0x2a, 0x8d, 0x6c, 0x2b, 0x0e, 0x82, 0x81, 0x03, 0x26, 0x6c, 0xfa, 0x82, 0x1a, 0xcd, - 0x0f, 0xb5, 0xa3, 0xc6, 0x5b, 0xff, 0xf4, 0xe4, 0xe2, 0xbc, 0xee, 0x9f, 0xd6, 0x6b, 0x67, 0x27, - 0x4d, 0x6b, 0x6b, 0x36, 0x6e, 0x55, 0x19, 0x38, 0x11, 0x80, 0x77, 0xa4, 0x97, 0xe8, 0xe1, 0xdb, - 0x3a, 0x39, 0x6d, 0xbc, 0x6f, 0x34, 0x6b, 0xe7, 0x27, 0xa7, 0x15, 0x1a, 0xbf, 0x9c, 0x7d, 0x4b, - 0x87, 0x47, 0x17, 0x67, 0xe7, 0xf5, 0x53, 0xff, 0xe8, 0xe4, 0xa4, 0xc5, 0x7b, 0x72, 0xf7, 0x3d, - 0xd5, 0xce, 0x78, 0x45, 0xae, 0x1f, 0xa5, 0x93, 0xe6, 0xbb, 0xfa, 0xdb, 0xca, 0x9a, 0x77, 0x06, - 0x5e, 0xae, 0x9b, 0xff, 0xbc, 0x16, 0xd1, 0x9f, 0x6e, 0x30, 0x48, 0xbd, 0x9b, 0x5e, 0x27, 0xba, - 0x8a, 0xc2, 0x8e, 0x7d, 0xf0, 0x67, 0x71, 0x39, 0xc4, 0x7e, 0x88, 0xfd, 0x10, 0xfb, 0x21, 0xf6, - 0x43, 0xec, 0x87, 0xd8, 0xcf, 0x33, 0xed, 0x46, 0x1a, 0xdd, 0x84, 0x69, 0xd4, 0xfe, 0xef, 0x60, - 0x77, 0xdb, 0x81, 0xd8, 0x8f, 0x61, 0x69, 0x61, 0xe5, 0x22, 0x9e, 0x4c, 0xb6, 0xa8, 0xc4, 0x41, - 0xdc, 0x1b, 0x84, 0xed, 0x5e, 0xdc, 0x31, 0xad, 0xdb, 0x67, 0xe6, 0x51, 0xb6, 0x11, 0xcc, 0x3c, - 0x7a, 0x7a, 0x39, 0xcc, 0x3c, 0x2a, 0x02, 0x5f, 0x67, 0xe6, 0xd1, 0x77, 0xa8, 0xf0, 0xd6, 0xaf, - 0xdb, 0xdb, 0xbb, 0x7b, 0xdb, 0xdb, 0x9b, 0x7b, 0xaf, 0xf7, 0x36, 0xf7, 0x77, 0x76, 0xb6, 0x76, - 0xb7, 0x98, 0x7e, 0xe4, 0x68, 0x8c, 0x83, 0x8a, 0xe3, 0x32, 0xc6, 0x38, 0xac, 0xee, 0x6c, 0x5c, - 0x72, 0x4a, 0x6d, 0xee, 0x6e, 0x9c, 0x2d, 0xe3, 0x6d, 0x78, 0x15, 0x0c, 0xbb, 0xff, 0x1f, 0x7b, - 0x67, 0xdb, 0xd3, 0x36, 0xd2, 0x7e, 0xf1, 0xf7, 0xfd, 0x14, 0xc8, 0xba, 0x5f, 0x14, 0xa9, 0xae, - 0x09, 0xe4, 0xa1, 0xf4, 0x5d, 0xba, 0xd0, 0x15, 0xba, 0x29, 0x41, 0x01, 0x56, 0xfa, 0x8b, 0xe5, - 0x8e, 0x26, 0xc9, 0x84, 0x4e, 0x09, 0x63, 0xcb, 0x9e, 0x50, 0x50, 0xe1, 0xbb, 0xff, 0x95, 0x38, - 0x31, 0x04, 0x87, 0xdd, 0x86, 0x90, 0x99, 0xe3, 0xe4, 0xa0, 0x95, 0xf0, 0x06, 0xd2, 0x5c, 0x78, - 0xe6, 0xba, 0xce, 0x6f, 0x8e, 0xe7, 0x61, 0x34, 0x34, 0xda, 0xa2, 0xb7, 0x42, 0x6f, 0x85, 0xde, - 0x0a, 0xbd, 0x15, 0x7a, 0x2b, 0xf4, 0x56, 0xe6, 0xad, 0x1b, 0xdc, 0xba, 0x99, 0x36, 0x06, 0x6d, - 0x0c, 0xda, 0x18, 0xb4, 0x31, 0xd6, 0xa8, 0x0b, 0x73, 0xeb, 0x66, 0x9a, 0x17, 0x34, 0x2f, 0xec, - 0x9b, 0x17, 0xe3, 0xc5, 0x30, 0xe1, 0xc0, 0x48, 0xf7, 0x06, 0xc6, 0xd3, 0x60, 0x68, 0x20, 0xd0, - 0x40, 0xa0, 0x81, 0x40, 0x03, 0x81, 0x06, 0x02, 0x0d, 0x84, 0x39, 0xeb, 0x46, 0x3b, 0x0c, 0xfb, - 0x52, 0x68, 0x84, 0x45, 0x39, 0xa5, 0x75, 0x41, 0x97, 0x95, 0x3e, 0x00, 0xbd, 0xae, 0x75, 0x68, - 0xc4, 0x70, 0x34, 0xe0, 0xe6, 0x1c, 0xf4, 0xa4, 0xf3, 0x5d, 0x5e, 0x8b, 0x68, 0xbc, 0xdc, 0x3d, - 0x08, 0x23, 0xa9, 0x3b, 0x23, 0x50, 0xf0, 0xb5, 0x34, 0x3f, 0xc3, 0xf8, 0xca, 0x57, 0x3a, 0x31, - 0x42, 0x77, 0x64, 0xf0, 0xfc, 0x85, 0x24, 0xf7, 0x4a, 0x10, 0xc5, 0xa1, 0x09, 0x3b, 0x61, 0x3f, - 0xc9, 0xae, 0x82, 0xf6, 0x65, 0x14, 0xc4, 0xaa, 0x1d, 0x88, 0x9e, 0xf2, 0x13, 0xd1, 0x53, 0x49, - 0x76, 0x15, 0x8c, 0xf6, 0x5c, 0x4c, 0x62, 0x23, 0xfd, 0x28, 0xec, 0xab, 0xce, 0x5d, 0xd0, 0x4f, - 0x4b, 0x6b, 0x30, 0xc2, 0xb4, 0x24, 0xfd, 0x96, 0x2e, 0xa6, 0xb7, 0x5b, 0x69, 0xed, 0x75, 0x39, - 0x8b, 0xdd, 0xcd, 0x1b, 0xe8, 0x2b, 0x1d, 0xfe, 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0xe1, 0x1d, - 0xb6, 0xde, 0xe5, 0x1e, 0x8d, 0xd8, 0x7c, 0x2c, 0x96, 0x13, 0x6f, 0x52, 0x46, 0x2d, 0x7f, 0xac, - 0x2b, 0x0a, 0x77, 0x49, 0xdf, 0x18, 0xd4, 0xed, 0x9a, 0xb6, 0x61, 0x28, 0x1b, 0x86, 0xae, 0x61, - 0xa8, 0x7a, 0xb5, 0x11, 0x63, 0x4f, 0xb9, 0x39, 0x75, 0x3b, 0x5f, 0xe4, 0xdd, 0xdb, 0x40, 0xf9, - 0x90, 0xdc, 0x9a, 0x41, 0x25, 0x9a, 0x41, 0x34, 0x83, 0x68, 0x06, 0xd1, 0x0c, 0xa2, 0x19, 0x84, - 0x2e, 0x67, 0x59, 0x00, 0x43, 0xed, 0xf0, 0x8d, 0x6b, 0x4b, 0x6a, 0xaa, 0x82, 0x3d, 0x86, 0xe4, - 0x38, 0x35, 0x30, 0x1e, 0x01, 0x3b, 0x97, 0x37, 0x24, 0x99, 0xc3, 0x94, 0x3b, 0x34, 0xd9, 0x83, - 0x95, 0x3f, 0x58, 0x19, 0x84, 0x95, 0x43, 0xb7, 0xb2, 0xe8, 0x58, 0x1e, 0xb3, 0x56, 0x39, 0x45, - 0x10, 0xa8, 0x0d, 0xac, 0xad, 0x65, 0x73, 0xa3, 0xaf, 0x1a, 0xc6, 0xc1, 0x19, 0x93, 0xad, 0x66, - 0xd3, 0x7d, 0x63, 0x1f, 0xc5, 0x7c, 0x4d, 0x27, 0xe5, 0x38, 0x4c, 0x1d, 0x2f, 0x7d, 0xda, 0x00, - 0x03, 0x76, 0x69, 0x38, 0x18, 0x50, 0x57, 0x22, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, - 0x9d, 0xab, 0x56, 0x71, 0xed, 0x7d, 0x4c, 0x7b, 0x20, 0x7d, 0x09, 0xb4, 0x7e, 0x62, 0xca, 0x0a, - 0x19, 0x46, 0xf6, 0x81, 0x93, 0xe2, 0x81, 0x45, 0x14, 0x51, 0x4c, 0xb1, 0x45, 0x15, 0x55, 0x5c, - 0xe1, 0x45, 0x16, 0x5e, 0x6c, 0xe1, 0x45, 0x17, 0x43, 0x7c, 0x41, 0x44, 0x18, 0xcf, 0x61, 0xc9, - 0xd5, 0xad, 0x81, 0xd2, 0xa6, 0x54, 0x45, 0xaa, 0x59, 0x63, 0x15, 0xac, 0x02, 0x85, 0x84, 0xb1, - 0x0c, 0xf6, 0xf9, 0x17, 0x56, 0x4d, 0xdf, 0x40, 0x5b, 0x26, 0x0b, 0x8e, 0x57, 0xb9, 0xf0, 0xc0, - 0x96, 0xd1, 0xe6, 0xe2, 0x03, 0x5c, 0x8a, 0x08, 0x5a, 0xee, 0xa7, 0x53, 0x42, 0xdc, 0x32, 0x25, - 0x16, 0x4c, 0x89, 0x6a, 0xa5, 0xb2, 0x53, 0x61, 0x5a, 0x14, 0x9b, 0xc5, 0xf0, 0xa2, 0xb9, 0x78, - 0xc7, 0xfb, 0x01, 0x52, 0x36, 0x81, 0x66, 0xca, 0xe4, 0x10, 0x19, 0x65, 0xc6, 0x0c, 0x68, 0xd5, - 0xa6, 0x4f, 0x34, 0x4f, 0x67, 0xa2, 0x4f, 0x34, 0x57, 0x4f, 0xa7, 0x4f, 0xb4, 0x60, 0x80, 0xf4, - 0x89, 0x0a, 0x34, 0x70, 0x00, 0xf7, 0x89, 0x3e, 0x01, 0xda, 0x44, 0x15, 0xda, 0x44, 0xff, 0xf2, - 0x45, 0x9b, 0x68, 0x25, 0xc7, 0xc4, 0xb4, 0x89, 0x8a, 0x5e, 0xed, 0xa7, 0x53, 0x82, 0x36, 0xd1, - 0xc2, 0x29, 0xb1, 0x5d, 0xa1, 0x49, 0xb4, 0x02, 0xb6, 0xcc, 0x06, 0x4d, 0x22, 0xc0, 0xfb, 0x01, - 0x63, 0x12, 0xdd, 0x8c, 0xb3, 0x1d, 0xd1, 0x25, 0x4a, 0x63, 0xa3, 0x4d, 0x34, 0x2b, 0x1c, 0xda, - 0x44, 0x73, 0xf4, 0x26, 0xda, 0x44, 0x73, 0xf5, 0x74, 0xda, 0x44, 0x0b, 0x06, 0x48, 0x9b, 0xa8, - 0x40, 0x03, 0x07, 0x60, 0x9b, 0xa8, 0xad, 0xb4, 0x88, 0xef, 0x00, 0x7d, 0xa2, 0x5d, 0xa0, 0x90, - 0x0e, 0xa5, 0xbe, 0x1c, 0x2d, 0xe4, 0xa2, 0x51, 0xf4, 0x6f, 0xa3, 0x62, 0x1a, 0x45, 0x0b, 0x8f, - 0x8a, 0x4b, 0x1c, 0x13, 0x17, 0xbc, 0xde, 0x4f, 0xa7, 0x04, 0x8d, 0xa2, 0x85, 0x53, 0x82, 0xf3, - 0x89, 0x56, 0xc4, 0x9c, 0xd9, 0xa0, 0x55, 0x04, 0x78, 0x3f, 0x10, 0xac, 0x22, 0x79, 0x6b, 0xa4, - 0xee, 0xca, 0x2e, 0x9e, 0x51, 0x94, 0x45, 0x46, 0x9b, 0x68, 0x56, 0x38, 0xb4, 0x89, 0xe6, 0xe8, - 0x4b, 0xb4, 0x89, 0xe6, 0xea, 0xe9, 0xb4, 0x89, 0x16, 0x0c, 0x90, 0x36, 0x51, 0x81, 0x86, 0x0d, - 0xc8, 0x36, 0x91, 0xf3, 0xb3, 0x11, 0x5e, 0x92, 0x41, 0x47, 0x67, 0x25, 0x10, 0xe2, 0x66, 0xb5, - 0x49, 0x18, 0x0d, 0x47, 0x42, 0xa2, 0x8f, 0x07, 0x71, 0x59, 0x64, 0x84, 0x38, 0x42, 0x1c, 0x21, - 0x8e, 0x10, 0x47, 0x88, 0x23, 0xc4, 0x11, 0xe2, 0x08, 0x71, 0x84, 0xb8, 0xe7, 0x6d, 0x12, 0x89, - 0xd8, 0x28, 0x44, 0x86, 0x9b, 0x04, 0x46, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, - 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x7b, 0xde, 0x26, 0x26, 0x16, 0x3a, 0x51, 0x46, 0xdd, - 0x00, 0xce, 0xbb, 0x7f, 0x12, 0x1b, 0x41, 0x8e, 0x20, 0x47, 0x90, 0x23, 0xc8, 0x11, 0xe4, 0x08, - 0x72, 0x04, 0x39, 0x82, 0x1c, 0x18, 0xc8, 0xad, 0xf5, 0x76, 0xf4, 0x8e, 0x0f, 0xaf, 0xcf, 0xc5, - 0x83, 0x7f, 0x98, 0x7d, 0xfe, 0xdc, 0xf3, 0xfc, 0x4b, 0x2e, 0x4e, 0xbc, 0xc7, 0xe9, 0xd7, 0xeb, - 0x75, 0x98, 0xe5, 0x7f, 0xe5, 0x1d, 0xc2, 0x6e, 0x74, 0xde, 0xa1, 0x4a, 0x4c, 0xdd, 0x18, 0xc7, - 0x27, 0x6b, 0x7e, 0x53, 0x7a, 0xbf, 0x2f, 0x87, 0xe8, 0x94, 0x78, 0x9f, 0x37, 0xf4, 0xa0, 0xdf, - 0x77, 0x78, 0x12, 0xd4, 0x37, 0x71, 0x8b, 0x13, 0x4c, 0x23, 0xee, 0xca, 0x58, 0x76, 0xbf, 0xdc, - 0x8d, 0x43, 0x59, 0xab, 0x24, 0x01, 0x91, 0x99, 0x15, 0x91, 0x17, 0xcf, 0xe9, 0xe9, 0x6a, 0xf1, - 0xa0, 0x63, 0xf4, 0x98, 0x6f, 0x8f, 0xd2, 0x5b, 0x72, 0x30, 0xbe, 0x23, 0xad, 0xe3, 0xf1, 0x7d, - 0x68, 0x7d, 0xb9, 0x8c, 0x5a, 0x4d, 0xd5, 0x6e, 0xd5, 0x7b, 0xea, 0x44, 0xf4, 0x54, 0xeb, 0x20, - 0xba, 0x29, 0x9f, 0xc4, 0x46, 0x1e, 0x8f, 0xfe, 0xf4, 0xd6, 0x61, 0xd8, 0x19, 0xfe, 0xb4, 0x39, - 0xfc, 0x93, 0x5b, 0x67, 0xe9, 0xdf, 0x57, 0xcf, 0xfe, 0xbc, 0x77, 0xeb, 0xa1, 0x5a, 0x76, 0x3f, - 0xd1, 0x72, 0xea, 0xbb, 0x4e, 0xf9, 0x42, 0xa6, 0xba, 0xdd, 0x9e, 0x6f, 0xaf, 0xff, 0xd9, 0xf9, - 0x24, 0x4b, 0x3d, 0x7c, 0x42, 0x7c, 0xc3, 0xae, 0xe5, 0xab, 0xee, 0x86, 0xd4, 0xdd, 0x28, 0x54, - 0xda, 0x6c, 0x74, 0xc2, 0x7e, 0x18, 0x5b, 0xaa, 0xcd, 0x6e, 0x70, 0xcf, 0x29, 0xde, 0x39, 0xc5, - 0x39, 0x37, 0xf8, 0x66, 0xab, 0x47, 0x3b, 0xaa, 0xd5, 0xf8, 0x35, 0xda, 0x22, 0x69, 0x2d, 0x81, - 0xac, 0xec, 0xc8, 0xc9, 0xf2, 0x8b, 0xfb, 0x72, 0x3f, 0x61, 0xc9, 0x49, 0x66, 0x3b, 0xb9, 0x90, - 0x93, 0x6a, 0xb9, 0x1d, 0x72, 0x79, 0xdd, 0x64, 0x39, 0xff, 0xf2, 0x92, 0x3a, 0x9e, 0xad, 0x0e, - 0x07, 0xd9, 0xd1, 0x96, 0x58, 0xb0, 0xdf, 0xb4, 0x40, 0x2f, 0x27, 0x13, 0xde, 0xbe, 0x9f, 0x2e, - 0xa1, 0x8f, 0x7a, 0x5a, 0xaa, 0xcb, 0xef, 0xed, 0x30, 0x4e, 0x96, 0xd6, 0x3d, 0xb3, 0xe7, 0x6f, - 0x8f, 0x1f, 0xb5, 0xa4, 0x5c, 0x5b, 0xee, 0xc1, 0xea, 0x4b, 0x9f, 0x24, 0x62, 0x63, 0xd2, 0x87, - 0xdd, 0x49, 0x1c, 0xb6, 0x26, 0x65, 0x58, 0x9f, 0x64, 0x61, 0x7d, 0xd2, 0x84, 0xf5, 0x49, 0x10, - 0xc5, 0x52, 0xd9, 0x65, 0x1f, 0xe4, 0x9d, 0xd5, 0xae, 0xe5, 0x77, 0xe5, 0xe7, 0xd5, 0x72, 0xd9, - 0x3d, 0x79, 0xb9, 0x45, 0xd3, 0x5a, 0xf1, 0xb4, 0x59, 0x44, 0xdd, 0x14, 0x53, 0xdb, 0x45, 0xd5, - 0x59, 0x71, 0x75, 0x56, 0x64, 0x9d, 0x15, 0xdb, 0xd5, 0x18, 0x5b, 0x2f, 0xbb, 0x08, 0x67, 0x1f, - 0x24, 0xba, 0x3f, 0x46, 0x6d, 0xa2, 0xb4, 0x1f, 0x85, 0x89, 0xb1, 0x97, 0x09, 0xd9, 0x3e, 0xe6, - 0xcf, 0x02, 0xb0, 0xe5, 0x75, 0x5b, 0x29, 0xd5, 0xd6, 0x4b, 0xb6, 0x8b, 0xd2, 0xed, 0xb6, 0x84, - 0xbb, 0x2a, 0xe5, 0xce, 0x4b, 0xba, 0xf3, 0xd2, 0xee, 0xbc, 0xc4, 0xdb, 0x29, 0xf5, 0x96, 0x4a, - 0xbe, 0xf5, 0xd2, 0x9f, 0x7d, 0xe0, 0xd8, 0xc2, 0xb4, 0x9e, 0x38, 0x93, 0x72, 0x31, 0xfe, 0x7c, - 0xcb, 0x9d, 0xd6, 0xae, 0x00, 0x38, 0x13, 0x02, 0x97, 0x82, 0x80, 0x21, 0x0c, 0xae, 0x05, 0x02, - 0x46, 0x28, 0x60, 0x04, 0x03, 0x46, 0x38, 0xec, 0x0a, 0x88, 0x65, 0x21, 0x71, 0x26, 0x28, 0xd3, - 0xc2, 0xe2, 0x2e, 0xdf, 0xa6, 0xf4, 0xc5, 0x55, 0xae, 0xb9, 0x91, 0x19, 0xe7, 0x72, 0x83, 0x20, - 0x3b, 0x58, 0xf2, 0x83, 0x22, 0x43, 0x70, 0x72, 0x04, 0x27, 0x4b, 0x70, 0xf2, 0xe4, 0x46, 0xa6, - 0x1c, 0xc9, 0x95, 0x73, 0xd9, 0xca, 0x02, 0x48, 0xa7, 0x3d, 0x3a, 0xcf, 0xd3, 0x49, 0xf5, 0xb2, - 0x39, 0x0b, 0xf3, 0xdf, 0xe4, 0xcc, 0xf1, 0xd2, 0x7e, 0x98, 0x3d, 0x06, 0x90, 0xf6, 0x16, 0xc0, - 0xdc, 0x53, 0x00, 0x6d, 0x2f, 0x01, 0xd8, 0x3d, 0x04, 0x60, 0xf7, 0x0e, 0x80, 0xdd, 0x33, 0x60, - 0xbd, 0x17, 0x38, 0xc3, 0xec, 0x0d, 0x90, 0xd5, 0x9d, 0xbe, 0x14, 0xbd, 0x58, 0xf6, 0x10, 0x8a, - 0xce, 0x64, 0xd4, 0x55, 0x03, 0x88, 0xe5, 0x78, 0x3c, 0x8f, 0xf0, 0xe3, 0xc7, 0x74, 0xf5, 0x74, - 0x90, 0x0a, 0xf9, 0xba, 0xae, 0xa1, 0x76, 0x38, 0xf2, 0x9a, 0x2c, 0x68, 0xc1, 0x61, 0xba, 0x2c, - 0x22, 0x62, 0x1d, 0xb1, 0x8e, 0x58, 0x47, 0xac, 0x23, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0x85, 0xc4, - 0xba, 0x4c, 0xcb, 0x49, 0x76, 0xd6, 0x1b, 0x63, 0xbc, 0x64, 0x19, 0x07, 0xec, 0x26, 0x01, 0x91, - 0xeb, 0xc8, 0x75, 0xe4, 0x3a, 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x2b, 0x24, 0xd7, 0x4d, - 0xa4, 0x9c, 0x58, 0x67, 0xbd, 0x2d, 0xd2, 0xdd, 0x26, 0x61, 0xa0, 0x2e, 0x0d, 0x07, 0x03, 0xe9, - 0x4a, 0x44, 0x3a, 0x22, 0x1d, 0x91, 0x8e, 0x48, 0x47, 0xa4, 0x73, 0xd5, 0x2a, 0xae, 0x27, 0x28, - 0x65, 0x81, 0x8c, 0xb6, 0xe8, 0x55, 0xba, 0x2b, 0x6f, 0xf1, 0x8e, 0x4b, 0x79, 0x12, 0x1b, 0x8f, - 0x4b, 0x41, 0x16, 0x52, 0x44, 0x41, 0xc5, 0x16, 0x56, 0x54, 0x81, 0x85, 0x17, 0x5a, 0x78, 0xc1, - 0x85, 0x17, 0x5e, 0x0c, 0x01, 0x06, 0x11, 0x62, 0x3c, 0x8f, 0x05, 0xd8, 0x6b, 0x41, 0xf4, 0x5c, - 0x66, 0x79, 0x2f, 0xff, 0xf0, 0xdf, 0x08, 0x29, 0x12, 0x69, 0x92, 0xec, 0x6a, 0xec, 0xd4, 0xa4, - 0x98, 0xc1, 0xe3, 0x5f, 0x50, 0x92, 0xd2, 0x6b, 0xcb, 0xc4, 0xf8, 0xe3, 0x7d, 0xf4, 0xc0, 0xb8, - 0xf4, 0x31, 0x34, 0x62, 0x29, 0xb1, 0x94, 0x58, 0x4a, 0x2c, 0x25, 0x96, 0x12, 0x4b, 0xd7, 0x0c, - 0x4b, 0x79, 0x8a, 0x1f, 0x31, 0xee, 0x37, 0xda, 0x04, 0x63, 0x21, 0x64, 0xae, 0xf7, 0x22, 0x2c, - 0x88, 0x24, 0xbe, 0x11, 0xdf, 0x88, 0x6f, 0xc4, 0x37, 0xe2, 0x1b, 0xf1, 0xcd, 0x7a, 0xdd, 0x1a, - 0x28, 0x6d, 0x76, 0xb6, 0x01, 0xe9, 0x0d, 0xc9, 0x53, 0x6c, 0x0a, 0x7d, 0x39, 0xbc, 0x5b, 0xe7, - 0x50, 0x35, 0x00, 0xab, 0xa6, 0x6f, 0x8c, 0x8f, 0xc0, 0x82, 0x13, 0x1b, 0x50, 0xbc, 0xca, 0x85, - 0xf7, 0x97, 0xe8, 0x0f, 0x24, 0x70, 0x7c, 0x5f, 0x63, 0xd1, 0x31, 0x2a, 0xd4, 0x7b, 0xea, 0x52, - 0x8d, 0x0e, 0x19, 0xdb, 0x82, 0x8b, 0xf3, 0xe1, 0x03, 0x60, 0x4a, 0x88, 0x5b, 0xa6, 0xc4, 0x82, - 0x29, 0x51, 0xde, 0xde, 0x2d, 0xef, 0x56, 0x6b, 0xdb, 0xbb, 0x15, 0xe6, 0x46, 0xb1, 0x81, 0x0c, - 0x2f, 0x9a, 0x0b, 0x9a, 0x44, 0x28, 0xb5, 0xd3, 0xeb, 0x84, 0xd7, 0xd7, 0x03, 0xad, 0xcc, 0x1d, - 0xea, 0x4c, 0xb4, 0xe7, 0x01, 0xd2, 0x38, 0x9a, 0x15, 0x0e, 0x8d, 0xa3, 0x39, 0xba, 0x14, 0x8d, - 0xa3, 0xb9, 0x7a, 0x3a, 0x8d, 0xa3, 0x05, 0x03, 0xa4, 0x71, 0x54, 0xa0, 0x91, 0x04, 0xa7, 0xa3, - 0xbd, 0x42, 0x06, 0x0b, 0x38, 0x1d, 0x6d, 0xc2, 0x15, 0x4a, 0x26, 0xd9, 0xf5, 0x1d, 0x67, 0xa4, - 0x61, 0x52, 0x2a, 0xcc, 0x16, 0x60, 0xb9, 0x9c, 0x04, 0xd9, 0x0a, 0x8c, 0x5c, 0x4a, 0x2e, 0x25, - 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0xeb, 0x75, 0x4b, 0x45, 0xbe, 0xe8, 0x76, 0x63, 0x99, - 0x24, 0x88, 0x68, 0xba, 0x0b, 0x14, 0xd3, 0xb8, 0x0d, 0xf9, 0x50, 0xf3, 0xb7, 0x7b, 0xd6, 0x4d, - 0x19, 0xb0, 0x6f, 0xe5, 0xfa, 0xd8, 0x27, 0xc0, 0xd8, 0x8e, 0x85, 0x31, 0x32, 0xd6, 0x70, 0xdd, - 0x2d, 0x0b, 0xf0, 0x7f, 0xef, 0xdf, 0x9f, 0x6f, 0xf9, 0xbb, 0x17, 0xf7, 0xe7, 0x25, 0x7f, 0xf7, - 0x22, 0xbd, 0x2c, 0x8d, 0xbe, 0xa5, 0xd7, 0xdb, 0xe7, 0x5b, 0x7e, 0x79, 0x72, 0x5d, 0x39, 0xdf, - 0xf2, 0x2b, 0x17, 0x9b, 0x7f, 0xff, 0xfd, 0x71, 0xf3, 0xd7, 0xce, 0xc3, 0xfc, 0x6f, 0xfc, 0x8f, - 0x07, 0x77, 0x13, 0x2e, 0xb0, 0x1e, 0x0f, 0x7d, 0x60, 0x51, 0xfa, 0xed, 0xa2, 0x54, 0x65, 0x51, - 0x5a, 0xed, 0xa2, 0x24, 0xfc, 0x5e, 0xdd, 0xff, 0x7a, 0xf1, 0xab, 0xf4, 0xa1, 0xfc, 0xf0, 0x79, - 0xf3, 0x57, 0xed, 0xe1, 0xf9, 0x8b, 0xf7, 0xb3, 0x7e, 0xad, 0xf4, 0xa1, 0xf6, 0xf0, 0xf9, 0x85, - 0x9f, 0x54, 0x1f, 0x3e, 0xff, 0xe6, 0xbf, 0x51, 0x79, 0x78, 0x9f, 0xfb, 0xd5, 0xe1, 0xeb, 0xdb, - 0x2f, 0xbd, 0xa1, 0xfc, 0xc2, 0x1b, 0x76, 0x5e, 0x7a, 0xc3, 0xce, 0x0b, 0x6f, 0x78, 0x31, 0xa4, - 0xed, 0x17, 0xde, 0x50, 0x79, 0xb8, 0xcf, 0xfd, 0xfe, 0xfb, 0xd9, 0xbf, 0x5a, 0x7d, 0xd8, 0xbc, - 0x7f, 0xe9, 0x67, 0xb5, 0x87, 0xfb, 0xcf, 0x9b, 0x2c, 0xd1, 0xc5, 0x18, 0x0f, 0x6d, 0xf0, 0x09, - 0x3e, 0x92, 0x68, 0x7a, 0xf2, 0xd6, 0xf8, 0xf0, 0x4f, 0xf1, 0x67, 0x05, 0x49, 0xc7, 0x74, 0x56, - 0x38, 0x74, 0x4c, 0xe7, 0xe8, 0x56, 0x74, 0x4c, 0xe7, 0xea, 0xe9, 0x74, 0x4c, 0x17, 0x0c, 0x90, - 0x8e, 0x69, 0x81, 0x86, 0x92, 0x7c, 0x92, 0xff, 0x9a, 0x51, 0x63, 0xf1, 0x9e, 0xe4, 0x3f, 0x65, - 0x0b, 0x25, 0x93, 0xa9, 0xff, 0xe7, 0x13, 0x7d, 0x50, 0x6a, 0x55, 0xfa, 0x46, 0xf4, 0x55, 0xd7, - 0x8f, 0xa5, 0x48, 0x42, 0x8d, 0x07, 0xac, 0xcf, 0xe2, 0x23, 0xab, 0x92, 0x55, 0xc9, 0xaa, 0x64, - 0x55, 0xb2, 0x2a, 0x59, 0x75, 0xcd, 0x58, 0x55, 0x75, 0xa5, 0x36, 0xca, 0xdc, 0x81, 0xf2, 0x2a, - 0xd0, 0xfa, 0x34, 0xef, 0x60, 0x7c, 0xab, 0xbe, 0x88, 0x04, 0xb0, 0xa4, 0x4e, 0x1a, 0xf4, 0xe0, - 0xe8, 0xaf, 0xfa, 0xe1, 0xc1, 0x5e, 0xab, 0xd9, 0x38, 0x3b, 0xdd, 0x6f, 0x35, 0xf7, 0xeb, 0x27, - 0x8d, 0x23, 0xb4, 0xea, 0x3a, 0x5a, 0x86, 0x98, 0x40, 0x3e, 0x26, 0x02, 0x5d, 0x57, 0xfa, 0xbc, - 0x75, 0x1b, 0xcd, 0x83, 0x3f, 0x0f, 0x8e, 0xea, 0xa7, 0x8d, 0xa6, 0xc7, 0x45, 0xc3, 0x2b, 0xd3, - 0xaa, 0x7f, 0x1c, 0x9e, 0x9d, 0x9c, 0xee, 0x37, 0x5b, 0x87, 0x8d, 0xc6, 0x31, 0xdb, 0x75, 0x75, - 0xda, 0xb5, 0x7e, 0xc2, 0x26, 0x5d, 0xb5, 0x54, 0x6d, 0x1c, 0x7d, 0xdd, 0xdf, 0xf3, 0xb8, 0x2a, - 0xfd, 0x1f, 0xbf, 0x2e, 0x38, 0x1e, 0x01, 0x8b, 0x02, 0xc1, 0x1d, 0xec, 0x8b, 0xc4, 0xf8, 0xd7, - 0x61, 0x57, 0xf5, 0x94, 0xec, 0xe2, 0x99, 0x83, 0xd3, 0xe1, 0xd1, 0x1b, 0x9c, 0x15, 0x0e, 0xbd, - 0xc1, 0x39, 0x3a, 0x14, 0xbd, 0xc1, 0xb9, 0x7a, 0x3a, 0xbd, 0xc1, 0x05, 0x03, 0xa4, 0x37, 0x58, - 0x20, 0xf6, 0x05, 0xf6, 0x06, 0x8d, 0xba, 0x96, 0x46, 0x75, 0xae, 0x92, 0x6a, 0x19, 0xd0, 0x1b, - 0x04, 0x9a, 0x00, 0xed, 0x9d, 0xe9, 0x74, 0x97, 0x2a, 0x4f, 0x0b, 0x1d, 0x26, 0xb2, 0x13, 0xea, - 0x2e, 0xd4, 0x6a, 0x29, 0xee, 0xb7, 0xf8, 0x9b, 0x37, 0x8a, 0xfb, 0x2d, 0xbe, 0x3e, 0x3c, 0xee, - 0xb7, 0xb8, 0x8a, 0x7e, 0x0c, 0xf7, 0x5b, 0x7c, 0x83, 0x94, 0x28, 0x7d, 0x2a, 0x97, 0xab, 0xb5, - 0x72, 0x79, 0xab, 0xb6, 0x53, 0xdb, 0xda, 0xad, 0x54, 0x4a, 0xd5, 0x12, 0x77, 0x5e, 0x2c, 0x38, - 0x3f, 0xe2, 0x45, 0xc3, 0x75, 0x1b, 0x30, 0x55, 0xd4, 0x8b, 0x84, 0xf9, 0xee, 0x2b, 0x40, 0x77, - 0x6b, 0x12, 0x18, 0xc8, 0xe8, 0x67, 0x4f, 0xf6, 0xc4, 0xa0, 0x3f, 0x1a, 0xaa, 0x6e, 0xd1, 0x6b, - 0x9b, 0x19, 0x0e, 0xbd, 0xb6, 0x39, 0xba, 0x37, 0xbd, 0xb6, 0xb9, 0x7a, 0x3a, 0xbd, 0xb6, 0x05, - 0x03, 0xa4, 0xd7, 0x56, 0xa0, 0x71, 0x0d, 0x8f, 0x0d, 0x99, 0x5f, 0x05, 0x79, 0x6c, 0xc8, 0xbf, - 0x7d, 0xd1, 0xc6, 0x5a, 0xc9, 0x31, 0x3b, 0x6d, 0xac, 0xa2, 0x97, 0xfb, 0xe9, 0x94, 0xa0, 0x8d, - 0xb5, 0x70, 0x4a, 0xf0, 0xd8, 0x90, 0x55, 0x01, 0x32, 0xbc, 0x68, 0x68, 0x5e, 0xc1, 0xd4, 0x4e, - 0x6f, 0xbc, 0x38, 0x32, 0x1c, 0x18, 0x89, 0x67, 0x60, 0x3d, 0x0d, 0x8e, 0x86, 0xd1, 0xac, 0x70, - 0x68, 0x18, 0xcd, 0xd1, 0x9d, 0x68, 0x18, 0xcd, 0xd5, 0xd3, 0x69, 0x18, 0x2d, 0x18, 0x20, 0x0d, - 0xa3, 0x02, 0x8d, 0x20, 0x80, 0x0d, 0xa3, 0x76, 0x18, 0xf6, 0xa5, 0xd0, 0x88, 0x8b, 0x36, 0x4b, - 0x44, 0x39, 0x80, 0x08, 0x1c, 0xa7, 0x90, 0x57, 0xd7, 0x3a, 0x34, 0x62, 0x38, 0x1a, 0x83, 0x48, - 0x20, 0x2f, 0xe9, 0x7c, 0x97, 0xd7, 0x22, 0x1a, 0x6f, 0x3a, 0x13, 0x84, 0x91, 0xd4, 0x9d, 0x11, - 0x28, 0xf9, 0x5a, 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, 0x78, 0xfe, - 0x42, 0x92, 0x7b, 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, 0xfb, 0x32, - 0x0a, 0x62, 0xd5, 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x46, 0x3b, 0x5d, - 0x27, 0xb1, 0x91, 0x7e, 0x14, 0xf6, 0x55, 0xe7, 0x2e, 0xd0, 0x52, 0x5d, 0x7e, 0x6f, 0x87, 0x71, - 0x92, 0x5d, 0x05, 0xa2, 0xfb, 0x63, 0xa4, 0x06, 0x4a, 0xfb, 0x51, 0x98, 0x98, 0x60, 0x44, 0xb8, - 0x49, 0xfa, 0x2d, 0xdd, 0xe7, 0xc6, 0xad, 0x48, 0xb8, 0xeb, 0xcd, 0x0e, 0x7b, 0xb2, 0x37, 0xd0, - 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, 0x4c, 0xac, 0xda, 0xc3, 0x16, 0x71, 0xde, 0x9b, 0x1f, 0x9f, - 0x19, 0xe4, 0x63, 0x73, 0x9c, 0xf3, 0x13, 0x05, 0x70, 0x1c, 0x06, 0xca, 0x00, 0x08, 0x69, 0xe0, - 0x83, 0x39, 0xe0, 0x41, 0x1b, 0xe8, 0xc0, 0x0e, 0x70, 0x60, 0x07, 0x36, 0xb0, 0x03, 0x9a, 0xf5, - 0xa6, 0xaf, 0x3d, 0x15, 0x63, 0x94, 0x9d, 0x9c, 0x48, 0xe1, 0x39, 0x8a, 0xf9, 0x10, 0xb1, 0x7c, - 0xc5, 0x12, 0x7d, 0x45, 0x78, 0x79, 0xc5, 0x96, 0x59, 0x54, 0xb9, 0x85, 0x97, 0x5d, 0x78, 0xf9, - 0x85, 0x97, 0x61, 0x1c, 0x3b, 0x66, 0x03, 0xc8, 0x57, 0x44, 0x91, 0xe7, 0x2c, 0xa0, 0xa1, 0xf6, - 0xf9, 0x06, 0xcd, 0xed, 0x9c, 0xaa, 0xa8, 0x8f, 0x21, 0x82, 0xa5, 0x1e, 0xe6, 0xec, 0x0d, 0x38, - 0xb9, 0x46, 0x96, 0xed, 0x62, 0xc8, 0x37, 0xba, 0x8c, 0x17, 0x46, 0xce, 0x0b, 0x23, 0xeb, 0x85, - 0x91, 0x77, 0x2c, 0x99, 0x07, 0x93, 0xfb, 0xac, 0x15, 0x4f, 0x11, 0x05, 0x76, 0x03, 0xfb, 0xec, - 0x82, 0xdc, 0x68, 0xb8, 0x86, 0x79, 0xf2, 0xdd, 0xe4, 0x2c, 0x83, 0xf4, 0x48, 0x82, 0x47, 0x58, - 0xe1, 0x7c, 0x3f, 0xf4, 0xd4, 0xf4, 0xd2, 0xa7, 0x6b, 0xb0, 0xe0, 0x9b, 0x86, 0x87, 0x09, 0xbd, - 0x25, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x52, 0x59, 0x67, 0xb7, 0x22, 0x9a, - 0xd7, 0x95, 0x05, 0x36, 0x62, 0xb4, 0xbe, 0x04, 0x5e, 0x2a, 0x37, 0x65, 0x7d, 0x0d, 0x23, 0xfd, - 0xc0, 0xf5, 0x4b, 0x2b, 0x04, 0x05, 0x45, 0x80, 0x83, 0x62, 0x41, 0x42, 0x51, 0x60, 0xa1, 0x70, - 0xd0, 0x50, 0x38, 0x78, 0x28, 0x1c, 0x44, 0x60, 0xc2, 0x04, 0x28, 0x54, 0x64, 0xad, 0x0b, 0xeb, - 0xa8, 0xe5, 0xea, 0xe6, 0x40, 0x69, 0x53, 0xaa, 0x22, 0xd7, 0xcc, 0xb1, 0x8a, 0x57, 0x81, 0x43, - 0xc4, 0xdc, 0x01, 0xe2, 0xf9, 0x17, 0xb6, 0xe6, 0x6c, 0xa0, 0xef, 0x10, 0x51, 0x30, 0xbc, 0xcc, - 0x85, 0x0b, 0xbe, 0x83, 0x44, 0x2e, 0xde, 0x02, 0xac, 0x9a, 0x2f, 0x88, 0x1c, 0x4d, 0xa7, 0x98, - 0xb8, 0x65, 0x8a, 0x2d, 0x39, 0xc5, 0xaa, 0x95, 0xca, 0x4e, 0x85, 0x69, 0xb6, 0x5e, 0x2c, 0x8a, - 0x1f, 0xdd, 0xc5, 0x3b, 0xde, 0xaf, 0x82, 0x96, 0x71, 0xe0, 0x99, 0x70, 0xb9, 0x21, 0x05, 0xea, - 0x8c, 0xb8, 0x82, 0xa8, 0x0a, 0x7d, 0xc1, 0xb7, 0xec, 0x8c, 0xf4, 0x05, 0xdf, 0x34, 0x73, 0xe8, - 0x0b, 0x2e, 0x39, 0x60, 0xfa, 0x82, 0x2b, 0x3c, 0x10, 0x2b, 0x98, 0x2f, 0xf8, 0xa9, 0x00, 0xb6, - 0x60, 0x85, 0xb6, 0xe0, 0x82, 0x5f, 0xb4, 0x05, 0xe9, 0x59, 0xd0, 0x16, 0x5c, 0x43, 0x35, 0x9a, - 0x4e, 0x31, 0xda, 0x82, 0x4b, 0x4f, 0xb1, 0xed, 0x0a, 0x4d, 0xc1, 0x35, 0x03, 0x51, 0xfc, 0xe8, - 0x68, 0x0a, 0x16, 0xb6, 0x88, 0xa7, 0x4e, 0xdb, 0xcd, 0xb8, 0xba, 0x14, 0xc1, 0x15, 0x4c, 0x63, - 0xa5, 0x2d, 0xf8, 0x9a, 0xf0, 0x68, 0x0b, 0xbe, 0x61, 0x6f, 0xa4, 0x2d, 0xf8, 0xa6, 0x99, 0x43, - 0x5b, 0x70, 0xc9, 0x01, 0xd3, 0x16, 0x5c, 0xe1, 0x81, 0x58, 0x81, 0x6c, 0xc1, 0xb6, 0xd2, 0x22, - 0xbe, 0x2b, 0x80, 0x2f, 0xb8, 0x0b, 0x1c, 0xe2, 0xa1, 0xd4, 0x97, 0xa3, 0x85, 0xb9, 0x34, 0x06, - 0x17, 0x75, 0x2d, 0x68, 0x0c, 0x2e, 0xdd, 0xb5, 0x28, 0xd1, 0xb3, 0x58, 0x33, 0x3d, 0x9a, 0x4e, - 0x31, 0x1a, 0x83, 0x4b, 0x4f, 0x31, 0xce, 0x17, 0x5c, 0x43, 0x18, 0xc5, 0x8f, 0x8e, 0xd6, 0x60, - 0x61, 0xcb, 0xb8, 0x27, 0x6f, 0x8d, 0xd4, 0x5d, 0xd9, 0xc5, 0x37, 0x06, 0xb3, 0x48, 0x69, 0x0b, - 0xbe, 0x26, 0x3c, 0xda, 0x82, 0x6f, 0xd8, 0x17, 0x69, 0x0b, 0xbe, 0x69, 0xe6, 0xd0, 0x16, 0x5c, - 0x72, 0xc0, 0xb4, 0x05, 0x57, 0x78, 0x18, 0x56, 0x24, 0x5b, 0x10, 0xee, 0xd8, 0xaf, 0x97, 0x64, - 0x1c, 0xe4, 0x18, 0x30, 0x42, 0xed, 0x6b, 0xda, 0x30, 0x8c, 0x86, 0x23, 0x4f, 0xd1, 0xc7, 0x87, - 0xda, 0x2c, 0x52, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, - 0x84, 0x5a, 0x42, 0x2d, 0x93, 0x62, 0xba, 0x0d, 0x23, 0x11, 0x1b, 0x55, 0x04, 0xa6, 0x9d, 0x04, - 0x4a, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, - 0xa4, 0x65, 0x52, 0x4c, 0xb7, 0xa1, 0x89, 0x85, 0x4e, 0x94, 0x51, 0x37, 0x05, 0x58, 0x97, 0xf4, - 0x24, 0x56, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, - 0x5b, 0x82, 0x2d, 0x23, 0x02, 0x4d, 0x51, 0xaf, 0xae, 0x75, 0x68, 0x84, 0x51, 0x21, 0xe6, 0x02, - 0x28, 0x2f, 0xe9, 0x7c, 0x97, 0xd7, 0x22, 0x1a, 0x1f, 0x40, 0x19, 0x84, 0x91, 0xd4, 0x9d, 0x11, - 0x28, 0xfa, 0x5a, 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, 0x78, 0xfe, - 0x42, 0x92, 0x7b, 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, 0xfb, 0x32, - 0x0a, 0x62, 0xd5, 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x54, 0x74, 0x53, - 0xf6, 0x93, 0xd8, 0x48, 0x3f, 0x0a, 0xfb, 0xaa, 0x73, 0x17, 0x68, 0xa9, 0x2e, 0xbf, 0xb7, 0xc3, - 0x38, 0xc9, 0xae, 0x02, 0xd1, 0xfd, 0x31, 0x52, 0x2b, 0xa5, 0xfd, 0x28, 0x4c, 0x4c, 0x10, 0x87, - 0x03, 0x23, 0x93, 0xf4, 0x5b, 0x30, 0xd0, 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, 0x4c, 0xac, 0xda, - 0xa3, 0x1f, 0xe4, 0x5e, 0x4a, 0x4f, 0xd4, 0xe4, 0x39, 0x9a, 0xc8, 0x91, 0xa0, 0x9c, 0xab, 0xff, - 0x5f, 0x79, 0x87, 0xb8, 0x31, 0xae, 0x77, 0xa8, 0x12, 0x53, 0x37, 0x06, 0xec, 0xd0, 0xff, 0x6f, - 0x4a, 0xef, 0xf7, 0xe5, 0x90, 0x2a, 0x13, 0xef, 0xf3, 0x86, 0x1e, 0xf4, 0xfb, 0x40, 0x87, 0xb2, - 0x7e, 0x13, 0xb7, 0xb8, 0xc1, 0x35, 0xe2, 0xae, 0x8c, 0x65, 0xf7, 0xcb, 0xdd, 0x38, 0x34, 0x26, - 0x21, 0xbe, 0x62, 0xae, 0xbe, 0x52, 0x7a, 0x50, 0x67, 0x2a, 0xc7, 0x83, 0x8e, 0xd1, 0xe3, 0x51, - 0xc3, 0x51, 0x7a, 0xf7, 0x0e, 0xc6, 0x37, 0xaf, 0x75, 0x3c, 0xbe, 0x65, 0xad, 0x2f, 0x97, 0x51, - 0xab, 0xa9, 0xda, 0xad, 0x7a, 0x4f, 0x9d, 0x88, 0x9e, 0x6a, 0x1d, 0x44, 0x37, 0xe5, 0x93, 0xd8, - 0xc8, 0xe3, 0xd1, 0x5d, 0x6a, 0x1d, 0x8d, 0xef, 0x4d, 0xab, 0xde, 0xfd, 0xd1, 0x54, 0xed, 0x03, - 0x7d, 0x1c, 0x26, 0xa6, 0xd5, 0x1c, 0xde, 0x91, 0xd6, 0x59, 0xfa, 0xe7, 0xd7, 0xb3, 0xbf, 0xfe, - 0x1d, 0xf5, 0xd8, 0x7d, 0x04, 0x8e, 0x8b, 0x10, 0x5a, 0xf1, 0x59, 0xb5, 0xa2, 0xe3, 0x36, 0xc9, - 0xdc, 0x75, 0x6d, 0x37, 0x9f, 0xec, 0x28, 0x99, 0x26, 0x18, 0x3d, 0xec, 0xb5, 0xbe, 0xea, 0x6e, - 0x48, 0xdd, 0x8d, 0x42, 0xa5, 0xcd, 0x46, 0x27, 0xec, 0x87, 0xb1, 0x23, 0x95, 0xc1, 0x60, 0x68, - 0x28, 0x66, 0x86, 0x62, 0x64, 0x0c, 0x26, 0x76, 0x95, 0x31, 0x20, 0xb2, 0x53, 0x68, 0xb9, 0x71, - 0x88, 0xaf, 0xcb, 0xc7, 0x55, 0x37, 0xc2, 0x69, 0x5f, 0xb6, 0xec, 0x7e, 0xa2, 0xe5, 0x74, 0x77, - 0x9d, 0xe6, 0x05, 0x4d, 0x6f, 0xbb, 0x7d, 0xdf, 0x5e, 0x0f, 0xb4, 0xf3, 0x49, 0x96, 0xfa, 0xb8, - 0xab, 0xbe, 0x5d, 0xb4, 0x3e, 0x6d, 0x51, 0xa5, 0x96, 0xa9, 0x4a, 0x76, 0x72, 0x72, 0xf9, 0x19, - 0x62, 0x21, 0x3b, 0xbc, 0xa7, 0x3d, 0x20, 0xb6, 0xf7, 0x9c, 0xfe, 0x71, 0x47, 0xef, 0xe9, 0xcf, - 0xb7, 0x54, 0x0f, 0x26, 0x8f, 0xd1, 0x2d, 0x7d, 0x9c, 0xed, 0xd9, 0x6d, 0x2e, 0x66, 0xab, 0xb9, - 0x9d, 0x7d, 0xe6, 0x6a, 0x36, 0x99, 0xf3, 0xd9, 0x61, 0xce, 0x67, 0x7b, 0x39, 0x9f, 0xbd, 0xb5, - 0x5a, 0xa4, 0xb2, 0xa7, 0xec, 0x9a, 0x40, 0xde, 0x18, 0x63, 0xad, 0x27, 0xce, 0xa4, 0x5c, 0x8c, - 0x3f, 0xdf, 0x72, 0xa7, 0xb5, 0x2b, 0x00, 0xce, 0x84, 0xc0, 0xa5, 0x20, 0x60, 0x08, 0x83, 0x6b, - 0x81, 0x80, 0x11, 0x0a, 0x18, 0xc1, 0x80, 0x11, 0x8e, 0xf5, 0xb0, 0x75, 0x6c, 0x0b, 0xca, 0xb4, - 0xb0, 0xb8, 0xcb, 0xb7, 0x29, 0x7d, 0x71, 0x95, 0x6b, 0x6e, 0x64, 0xc6, 0xb9, 0xdc, 0x20, 0xc8, - 0x0e, 0x96, 0xfc, 0xa0, 0xc8, 0x10, 0x9c, 0x1c, 0xc1, 0xc9, 0x12, 0x9c, 0x3c, 0xb9, 0x91, 0x29, - 0x47, 0x72, 0xe5, 0x5c, 0xb6, 0xb2, 0x00, 0xd2, 0xf9, 0x00, 0xce, 0xf3, 0x74, 0x52, 0xbd, 0x5c, - 0x4e, 0x4f, 0x78, 0x2e, 0x67, 0x8e, 0xd7, 0x68, 0xc2, 0x2c, 0x16, 0x45, 0x5a, 0x14, 0x8a, 0xb9, - 0xf8, 0x13, 0x6d, 0x91, 0x27, 0xec, 0x62, 0x4e, 0xd8, 0x45, 0x9b, 0xb0, 0x8b, 0x33, 0xd7, 0x7b, - 0x2a, 0x28, 0xcc, 0xa2, 0xca, 0xac, 0xee, 0xf4, 0xa5, 0xe8, 0xc5, 0xb2, 0x87, 0x50, 0x74, 0x26, - 0xa3, 0xae, 0x1a, 0x40, 0x2c, 0xc7, 0xe3, 0x67, 0xbf, 0x1f, 0x3f, 0xa6, 0x6b, 0xbd, 0x82, 0x54, - 0xc8, 0xd7, 0x75, 0xaa, 0xa9, 0xc3, 0x91, 0xd7, 0x64, 0xa6, 0x27, 0x0e, 0xd3, 0x65, 0x11, 0x11, - 0xeb, 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x1d, 0xb1, 0x8e, 0x58, 0x47, 0xac, 0x2b, 0x24, 0xd6, 0x65, - 0x5a, 0x4e, 0xb2, 0xb3, 0xde, 0x18, 0xe3, 0xb5, 0x3c, 0x38, 0x60, 0x37, 0x09, 0x88, 0x5c, 0x47, - 0xae, 0x23, 0xd7, 0x91, 0xeb, 0xc8, 0x75, 0xe4, 0x3a, 0x72, 0x5d, 0x21, 0xb9, 0x6e, 0x22, 0xe5, - 0xc4, 0x3a, 0xeb, 0x6d, 0x91, 0xee, 0x8d, 0x05, 0x03, 0x75, 0x69, 0x38, 0x18, 0x48, 0x57, 0x22, - 0xd2, 0x11, 0xe9, 0x88, 0x74, 0x44, 0x3a, 0x22, 0x9d, 0xab, 0x56, 0x71, 0x3d, 0x41, 0x29, 0x0b, - 0x64, 0xb4, 0x21, 0xa0, 0xd2, 0x5d, 0x89, 0xb3, 0x3b, 0xf9, 0xe3, 0xea, 0xbe, 0xc7, 0xd8, 0x50, - 0x76, 0x51, 0x84, 0xda, 0x07, 0x1f, 0x6e, 0xdf, 0x7b, 0xc4, 0x7d, 0xee, 0xb1, 0xf7, 0xb5, 0x47, - 0xdd, 0xc7, 0x1e, 0x7e, 0xdf, 0x7a, 0xf8, 0x7d, 0xea, 0xe1, 0xf7, 0xa5, 0xe7, 0xfe, 0xb8, 0x90, - 0x1e, 0x0b, 0xb0, 0xd7, 0x82, 0xe8, 0xb9, 0xcc, 0xf2, 0x5e, 0xfe, 0xe1, 0xbf, 0x11, 0x52, 0x24, - 0xd2, 0x24, 0xd9, 0xd5, 0xd8, 0xa9, 0x49, 0x31, 0x83, 0x1b, 0x65, 0xa2, 0x24, 0x25, 0xc8, 0x0c, - 0xfa, 0x5c, 0x36, 0x22, 0xcc, 0xa4, 0x27, 0x8e, 0x12, 0x47, 0x89, 0xa3, 0xc4, 0x51, 0xe2, 0x28, - 0x71, 0xd4, 0x7a, 0xdd, 0x1a, 0x28, 0x6d, 0x76, 0xb6, 0x01, 0x69, 0x14, 0x09, 0x46, 0x9b, 0x42, - 0x5f, 0x0e, 0xef, 0xd6, 0x39, 0x54, 0x0d, 0x00, 0x3c, 0xa3, 0xe7, 0x9b, 0xd2, 0xb8, 0xe7, 0x73, - 0x82, 0x9f, 0x7a, 0xf9, 0x97, 0xe8, 0x0f, 0x24, 0x70, 0x7c, 0x5f, 0x63, 0xd1, 0x31, 0x2a, 0xd4, - 0x7b, 0xea, 0x52, 0x8d, 0xb6, 0x61, 0xde, 0xe2, 0xc9, 0xb5, 0xbf, 0x93, 0x12, 0xe2, 0x96, 0x29, - 0xb1, 0x60, 0x4a, 0x94, 0xb7, 0x77, 0xcb, 0xbb, 0xd5, 0xda, 0xf6, 0x6e, 0x85, 0xb9, 0x51, 0x6c, - 0x20, 0xc3, 0x8b, 0xe6, 0x82, 0x26, 0x11, 0x4a, 0xed, 0xf4, 0x3a, 0xe1, 0xf5, 0xf5, 0x40, 0x2b, - 0x73, 0x87, 0xfa, 0x08, 0xf3, 0x79, 0x80, 0x34, 0x8e, 0x66, 0x85, 0x43, 0xe3, 0x68, 0x8e, 0x2e, - 0x45, 0xe3, 0x68, 0xae, 0x9e, 0x4e, 0xe3, 0x68, 0xc1, 0x00, 0x69, 0x1c, 0x15, 0x68, 0x24, 0xc1, - 0xe7, 0x98, 0xaf, 0x90, 0xc1, 0x02, 0x3e, 0xc7, 0x9c, 0x70, 0x85, 0x92, 0x49, 0x76, 0x7d, 0xc7, - 0x47, 0x99, 0x98, 0x94, 0x0a, 0xb3, 0x77, 0x44, 0x2e, 0x27, 0x41, 0xf6, 0x90, 0x20, 0x97, 0x92, - 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0x72, 0x29, 0xb9, 0xd4, 0x7a, 0xdd, 0x52, 0x91, 0x2f, 0xba, 0xdd, - 0x58, 0x26, 0x09, 0x22, 0x9a, 0xee, 0x02, 0xc5, 0x34, 0x6e, 0x43, 0x3e, 0xd4, 0xfc, 0xed, 0x9e, - 0x75, 0x53, 0x06, 0xec, 0x5b, 0xb9, 0x3e, 0xf6, 0x09, 0x30, 0xb6, 0x63, 0x61, 0x8c, 0x8c, 0x35, - 0x5c, 0x77, 0xcb, 0x02, 0xfc, 0xdf, 0xfb, 0xf7, 0xe7, 0x5b, 0xfe, 0xee, 0xc5, 0xfd, 0x79, 0xc9, - 0xdf, 0xbd, 0x48, 0x2f, 0x4b, 0xa3, 0x6f, 0xe9, 0xf5, 0xf6, 0xf9, 0x96, 0x5f, 0x9e, 0x5c, 0x57, - 0xce, 0xb7, 0xfc, 0xca, 0xc5, 0xe6, 0xdf, 0x7f, 0x7f, 0xdc, 0xfc, 0xb5, 0xf3, 0x30, 0xff, 0x1b, - 0xff, 0xe3, 0xc1, 0xdd, 0x84, 0x0b, 0xac, 0xc7, 0x43, 0x1f, 0x58, 0x94, 0x7e, 0xbb, 0x28, 0x55, - 0x59, 0x94, 0x56, 0xbb, 0x28, 0x09, 0xbf, 0x57, 0xf7, 0xbf, 0x5e, 0xfc, 0x2a, 0x7d, 0x28, 0x3f, - 0x7c, 0xde, 0xfc, 0x55, 0x7b, 0x78, 0xfe, 0xe2, 0xfd, 0xac, 0x5f, 0x2b, 0x7d, 0xa8, 0x3d, 0x7c, - 0x7e, 0xe1, 0x27, 0xd5, 0x87, 0xcf, 0xbf, 0xf9, 0x6f, 0x54, 0x1e, 0xde, 0xe7, 0x7e, 0x75, 0xf8, - 0xfa, 0xf6, 0x4b, 0x6f, 0x28, 0xbf, 0xf0, 0x86, 0x9d, 0x97, 0xde, 0xb0, 0xf3, 0xc2, 0x1b, 0x5e, - 0x0c, 0x69, 0xfb, 0x85, 0x37, 0x54, 0x1e, 0xee, 0x73, 0xbf, 0xff, 0x7e, 0xf6, 0xaf, 0x56, 0x1f, - 0x36, 0xef, 0x5f, 0xfa, 0x59, 0xed, 0xe1, 0xfe, 0xf3, 0x26, 0x4b, 0x74, 0x31, 0xc6, 0x43, 0x1b, - 0x7c, 0x82, 0x8f, 0x24, 0x9a, 0x9e, 0xbc, 0x35, 0x3e, 0xfc, 0x53, 0xfc, 0x59, 0x41, 0xd2, 0x31, - 0x9d, 0x15, 0x0e, 0x1d, 0xd3, 0x39, 0xba, 0x15, 0x1d, 0xd3, 0xb9, 0x7a, 0x3a, 0x1d, 0xd3, 0x05, - 0x03, 0xa4, 0x63, 0x5a, 0xa0, 0xa1, 0x24, 0x9f, 0xe4, 0xbf, 0x66, 0xd4, 0x58, 0xbc, 0x27, 0xf9, - 0x4f, 0xd9, 0x42, 0xc9, 0x64, 0xea, 0xff, 0xf9, 0x44, 0x1f, 0x94, 0x5a, 0x95, 0xbe, 0x11, 0x7d, - 0xd5, 0xf5, 0x63, 0x29, 0x92, 0x50, 0xe3, 0x01, 0xeb, 0xb3, 0xf8, 0xc8, 0xaa, 0x64, 0x55, 0xb2, - 0x2a, 0x59, 0x95, 0xac, 0x4a, 0x56, 0x5d, 0x33, 0x56, 0x55, 0x5d, 0xa9, 0x8d, 0x32, 0x77, 0xa0, - 0xbc, 0x0a, 0xb4, 0x3e, 0xcd, 0x3b, 0x18, 0xdf, 0xaa, 0x2f, 0x22, 0x01, 0x2c, 0xa9, 0x93, 0x06, - 0x3d, 0x38, 0xfa, 0xab, 0x7e, 0x78, 0xb0, 0xd7, 0x6a, 0x36, 0xce, 0x4e, 0xf7, 0x5b, 0xcd, 0xfd, - 0xfa, 0x49, 0xe3, 0x08, 0xad, 0xba, 0x8e, 0x96, 0x21, 0x26, 0x90, 0x8f, 0x89, 0x40, 0xd7, 0x95, - 0x3e, 0x6f, 0xdd, 0x46, 0xf3, 0xe0, 0xcf, 0x83, 0xa3, 0xfa, 0x69, 0xa3, 0xe9, 0x71, 0xd1, 0xf0, - 0xca, 0xb4, 0xea, 0x1f, 0x87, 0x67, 0x27, 0xa7, 0xfb, 0xcd, 0xd6, 0x61, 0xa3, 0x71, 0xcc, 0x76, - 0x5d, 0x9d, 0x76, 0xad, 0x9f, 0xb0, 0x49, 0x57, 0x2d, 0x55, 0x1b, 0x47, 0x5f, 0xf7, 0xf7, 0x3c, - 0xae, 0x4a, 0xff, 0xc7, 0xaf, 0x0b, 0x8e, 0x47, 0xc0, 0xa2, 0x40, 0x70, 0x07, 0xfb, 0x22, 0x31, - 0xfe, 0x75, 0xd8, 0x55, 0x3d, 0x25, 0xbb, 0x78, 0xe6, 0xe0, 0x74, 0x78, 0xf4, 0x06, 0x67, 0x85, - 0x43, 0x6f, 0x70, 0x8e, 0x0e, 0x45, 0x6f, 0x70, 0xae, 0x9e, 0x4e, 0x6f, 0x70, 0xc1, 0x00, 0xe9, - 0x0d, 0x16, 0x88, 0x7d, 0x81, 0xbd, 0x41, 0xa3, 0xae, 0xa5, 0x51, 0x9d, 0xab, 0xa4, 0x5a, 0x06, - 0xf4, 0x06, 0x81, 0x26, 0x40, 0x7b, 0x67, 0x3a, 0xdd, 0xa5, 0xca, 0xd3, 0x42, 0x87, 0x89, 0xec, - 0x84, 0xba, 0x0b, 0xb5, 0x5a, 0x8a, 0xfb, 0x2d, 0xfe, 0xe6, 0x8d, 0xe2, 0x7e, 0x8b, 0xaf, 0x0f, - 0x8f, 0xfb, 0x2d, 0xae, 0xa2, 0x1f, 0xc3, 0xfd, 0x16, 0xdf, 0x20, 0x25, 0x4a, 0x9f, 0xca, 0xe5, - 0x6a, 0xad, 0x5c, 0xde, 0xaa, 0xed, 0xd4, 0xb6, 0x76, 0x2b, 0x95, 0x52, 0xb5, 0xc4, 0x9d, 0x17, - 0x0b, 0xce, 0x8f, 0x78, 0xd1, 0x70, 0xdd, 0x06, 0x4c, 0x15, 0x85, 0x39, 0x35, 0x3f, 0x07, 0xf5, - 0x18, 0xa7, 0xe7, 0x67, 0x61, 0xed, 0xc9, 0x9e, 0x18, 0xf4, 0x47, 0x43, 0xd5, 0x2d, 0x7a, 0x6d, - 0x33, 0xc3, 0xa1, 0xd7, 0x36, 0x47, 0xf7, 0xa6, 0xd7, 0x36, 0x57, 0x4f, 0xa7, 0xd7, 0xb6, 0x60, - 0x80, 0xf4, 0xda, 0x0a, 0x34, 0xae, 0xe1, 0xb1, 0x21, 0xf3, 0xab, 0x20, 0x8f, 0x0d, 0xf9, 0xb7, - 0x2f, 0xda, 0x58, 0x2b, 0x39, 0x66, 0xa7, 0x8d, 0x55, 0xf4, 0x72, 0x3f, 0x9d, 0x12, 0xb4, 0xb1, - 0x16, 0x4e, 0x09, 0x1e, 0x1b, 0xb2, 0x2a, 0x40, 0x86, 0x17, 0x0d, 0xcd, 0x2b, 0x98, 0xda, 0xe9, - 0x8d, 0x17, 0x47, 0x86, 0x03, 0x23, 0xf1, 0x0c, 0xac, 0xa7, 0xc1, 0xd1, 0x30, 0x9a, 0x15, 0x0e, - 0x0d, 0xa3, 0x39, 0xba, 0x13, 0x0d, 0xa3, 0xb9, 0x7a, 0x3a, 0x0d, 0xa3, 0x05, 0x03, 0xa4, 0x61, - 0x54, 0xa0, 0x11, 0x04, 0xb0, 0x61, 0xd4, 0x0e, 0xc3, 0xbe, 0x14, 0x1a, 0x71, 0xd1, 0x66, 0x89, - 0x28, 0x07, 0x10, 0x81, 0xe3, 0x14, 0xf2, 0xea, 0x5a, 0x87, 0x46, 0x0c, 0x47, 0x63, 0x10, 0x09, - 0xe4, 0x25, 0x9d, 0xef, 0xf2, 0x5a, 0x44, 0xe3, 0x4d, 0x67, 0x82, 0x30, 0x92, 0xba, 0x33, 0x02, - 0x25, 0x5f, 0x4b, 0xf3, 0x33, 0x8c, 0xaf, 0x7c, 0xa5, 0x13, 0x23, 0x74, 0x47, 0x06, 0xcf, 0x5f, - 0x48, 0x72, 0xaf, 0x04, 0x51, 0x1c, 0x9a, 0xb0, 0x13, 0xf6, 0x93, 0xec, 0x2a, 0x68, 0x5f, 0x46, - 0x41, 0xac, 0xda, 0x81, 0xe8, 0x29, 0x3f, 0x11, 0x3d, 0x95, 0x64, 0x57, 0xc1, 0x68, 0xa7, 0xeb, - 0x24, 0x36, 0xd2, 0x8f, 0xc2, 0xbe, 0xea, 0xdc, 0x05, 0x5a, 0xaa, 0xcb, 0xef, 0xed, 0x30, 0x4e, - 0xb2, 0xab, 0x40, 0x74, 0x7f, 0x8c, 0xd4, 0x40, 0x69, 0x3f, 0x8a, 0x65, 0x30, 0x02, 0xdc, 0x24, - 0xfd, 0x96, 0x6e, 0x73, 0xe3, 0x56, 0x23, 0xdc, 0x75, 0x66, 0x87, 0x1d, 0xd9, 0x1b, 0xe8, 0x2b, - 0x1d, 0xfe, 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0x61, 0x8b, 0x38, 0xef, 0xcc, 0x8f, 0x8f, 0x0c, - 0xf2, 0xb1, 0x39, 0x4e, 0xf9, 0x89, 0x00, 0x38, 0x0e, 0x03, 0x65, 0xfc, 0x83, 0x34, 0xee, 0xc1, - 0x1c, 0xef, 0xa0, 0x8d, 0x73, 0x60, 0xc7, 0x37, 0xb0, 0xe3, 0x1a, 0xd8, 0xf1, 0xcc, 0x7a, 0xc3, - 0xd7, 0x9e, 0x8a, 0x31, 0xca, 0x4e, 0x4e, 0xa4, 0xf0, 0x0c, 0xc5, 0x7c, 0x88, 0x58, 0xb6, 0x62, - 0x89, 0xb6, 0x22, 0xbc, 0xbc, 0x62, 0xcb, 0x2c, 0xaa, 0xdc, 0xc2, 0xcb, 0x2e, 0xbc, 0xfc, 0xc2, - 0xcb, 0x30, 0x8e, 0x1b, 0xb3, 0x01, 0x64, 0x2b, 0xa2, 0xc8, 0x73, 0x16, 0xd0, 0x50, 0xfb, 0x7c, - 0x83, 0x66, 0x76, 0x4e, 0x55, 0xd4, 0xc7, 0x10, 0xc1, 0x52, 0x0f, 0x73, 0xf2, 0x06, 0x9c, 0x5c, - 0x23, 0xcb, 0x76, 0x31, 0xe4, 0x1b, 0x5d, 0xc6, 0x0b, 0x23, 0xe7, 0x85, 0x91, 0xf5, 0xc2, 0xc8, - 0x3b, 0x96, 0xcc, 0x83, 0xc9, 0x7d, 0xd6, 0x8a, 0xa7, 0x88, 0x02, 0xbb, 0x81, 0x7d, 0x74, 0x41, - 0x6e, 0x34, 0x5c, 0xc3, 0x3c, 0xf8, 0x6e, 0x72, 0x94, 0x41, 0x7a, 0x22, 0xc1, 0x23, 0xac, 0x70, - 0xba, 0x1f, 0x7a, 0x6a, 0x7a, 0xe9, 0xd3, 0x35, 0x58, 0xf0, 0x4d, 0xc3, 0xc3, 0x84, 0xde, 0x12, - 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x12, 0x7a, 0xa9, 0xac, 0xb3, 0x5b, 0x11, 0xcd, 0xeb, - 0xca, 0x02, 0x1b, 0x31, 0x5a, 0x5f, 0x02, 0xaf, 0x94, 0x9b, 0xb2, 0xbe, 0x86, 0x91, 0x7e, 0xe0, - 0xf2, 0xa5, 0x15, 0x82, 0x82, 0x22, 0xc0, 0x41, 0xb1, 0x20, 0xa1, 0x28, 0xb0, 0x50, 0x38, 0x68, - 0x28, 0x1c, 0x3c, 0x14, 0x0e, 0x22, 0x30, 0x61, 0x02, 0x14, 0x2a, 0xb2, 0xd6, 0x85, 0x75, 0xd4, - 0x72, 0x75, 0x73, 0xa0, 0xb4, 0x29, 0x55, 0x91, 0x6b, 0xe6, 0x58, 0xc5, 0xab, 0xc0, 0x21, 0x62, - 0x6e, 0x00, 0xf1, 0xfc, 0x0b, 0x5b, 0x73, 0x36, 0xd0, 0x37, 0x88, 0x28, 0x18, 0x5e, 0xe6, 0xc2, - 0x05, 0xdf, 0x40, 0x22, 0x17, 0x6f, 0x01, 0x16, 0xcd, 0x17, 0x44, 0x8e, 0xa6, 0x53, 0x4c, 0xdc, - 0x32, 0xc5, 0x96, 0x9c, 0x62, 0xd5, 0x4a, 0x65, 0xa7, 0xc2, 0x34, 0x5b, 0x2f, 0x16, 0xc5, 0x8f, - 0xee, 0xe2, 0x1d, 0xef, 0x57, 0x41, 0xcb, 0x38, 0xf0, 0x4c, 0xb8, 0xdc, 0x90, 0x02, 0x75, 0x46, - 0x5c, 0x41, 0x54, 0x85, 0xbe, 0xe0, 0x5b, 0x76, 0x46, 0xfa, 0x82, 0x6f, 0x9a, 0x39, 0xf4, 0x05, - 0x97, 0x1c, 0x30, 0x7d, 0xc1, 0x15, 0x1e, 0x88, 0x15, 0xcc, 0x17, 0xfc, 0x54, 0x00, 0x5b, 0xb0, - 0x42, 0x5b, 0x70, 0xc1, 0x2f, 0xda, 0x82, 0xf4, 0x2c, 0x68, 0x0b, 0xae, 0xa1, 0x1a, 0x4d, 0xa7, - 0x18, 0x6d, 0xc1, 0xa5, 0xa7, 0xd8, 0x76, 0x85, 0xa6, 0xe0, 0x9a, 0x81, 0x28, 0x7e, 0x74, 0x34, - 0x05, 0x0b, 0x5b, 0xc4, 0x53, 0xa7, 0xed, 0x66, 0x5c, 0x5d, 0x8a, 0xe0, 0x0a, 0xa6, 0xb1, 0xd2, - 0x16, 0x7c, 0x4d, 0x78, 0xb4, 0x05, 0xdf, 0xb0, 0x37, 0xd2, 0x16, 0x7c, 0xd3, 0xcc, 0xa1, 0x2d, - 0xb8, 0xe4, 0x80, 0x69, 0x0b, 0xae, 0xf0, 0x40, 0xac, 0x40, 0xb6, 0x60, 0x5b, 0x69, 0x11, 0xdf, - 0x15, 0xc0, 0x17, 0xdc, 0x05, 0x0e, 0xf1, 0x50, 0xea, 0xcb, 0xd1, 0xc2, 0x5c, 0x1a, 0x83, 0x8b, - 0xba, 0x16, 0x34, 0x06, 0x97, 0xee, 0x5a, 0x94, 0xe8, 0x59, 0xac, 0x99, 0x1e, 0x4d, 0xa7, 0x18, - 0x8d, 0xc1, 0xa5, 0xa7, 0x18, 0xe7, 0x0b, 0xae, 0x21, 0x8c, 0xe2, 0x47, 0x47, 0x6b, 0xb0, 0xb0, - 0x65, 0xdc, 0x93, 0xb7, 0x46, 0xea, 0xae, 0xec, 0xe2, 0x1b, 0x83, 0x59, 0xa4, 0xb4, 0x05, 0x5f, - 0x13, 0x1e, 0x6d, 0xc1, 0x37, 0xec, 0x8b, 0xb4, 0x05, 0xdf, 0x34, 0x73, 0x68, 0x0b, 0x2e, 0x39, - 0x60, 0xda, 0x82, 0x2b, 0x3c, 0x0c, 0x2b, 0x92, 0x2d, 0x08, 0x77, 0xea, 0xd7, 0x4b, 0x32, 0x0e, - 0x72, 0x0a, 0x18, 0xa1, 0xf6, 0x35, 0x6d, 0x18, 0x46, 0xc3, 0x91, 0xa7, 0xe8, 0xe3, 0x43, 0x6d, - 0x16, 0x29, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, - 0x2d, 0xa1, 0x96, 0x49, 0x31, 0xdd, 0x86, 0x91, 0x88, 0x8d, 0x2a, 0x02, 0xd3, 0x4e, 0x02, 0x25, - 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, - 0x32, 0x29, 0xa6, 0xdb, 0xd0, 0xc4, 0x42, 0x27, 0xca, 0xa8, 0x9b, 0x02, 0xac, 0x4b, 0x7a, 0x12, - 0x2b, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, - 0xc1, 0x96, 0x11, 0x81, 0xa6, 0xa8, 0x57, 0xd7, 0x3a, 0x34, 0xc2, 0xa8, 0x10, 0x73, 0x01, 0x94, - 0x97, 0x74, 0xbe, 0xcb, 0x6b, 0x11, 0x8d, 0x0f, 0xa0, 0x0c, 0xc2, 0x48, 0xea, 0xce, 0x08, 0x14, - 0x7d, 0x2d, 0xcd, 0xcf, 0x30, 0xbe, 0xf2, 0x95, 0x4e, 0x8c, 0xd0, 0x1d, 0x19, 0x3c, 0x7f, 0x21, - 0xc9, 0xbd, 0x12, 0x44, 0x71, 0x68, 0xc2, 0x4e, 0xd8, 0x4f, 0xb2, 0xab, 0xa0, 0x7d, 0x19, 0x05, - 0xb1, 0x6a, 0x07, 0xa2, 0xa7, 0xfc, 0x44, 0xf4, 0x54, 0x92, 0x5d, 0x05, 0x2a, 0xba, 0x29, 0xfb, - 0x49, 0x6c, 0xa4, 0x1f, 0x85, 0x7d, 0xd5, 0xb9, 0x0b, 0xb4, 0x54, 0x97, 0xdf, 0xdb, 0x61, 0x9c, - 0x64, 0x57, 0x81, 0xe8, 0xfe, 0x18, 0xa9, 0x95, 0xd2, 0x7e, 0x14, 0xcb, 0x20, 0x0e, 0x07, 0x46, - 0x26, 0xe9, 0xb7, 0x60, 0xa0, 0xaf, 0x74, 0xf8, 0x53, 0xfb, 0xc2, 0x98, 0x58, 0xb5, 0x47, 0x3f, - 0xc8, 0xbd, 0x94, 0x1e, 0xa8, 0xc9, 0x63, 0x34, 0x91, 0x23, 0x41, 0x39, 0x56, 0xff, 0xbf, 0xf2, - 0x0e, 0x71, 0x5f, 0x5c, 0xef, 0x50, 0x25, 0xa6, 0x6e, 0x0c, 0xd8, 0x99, 0xff, 0xdf, 0x94, 0xde, - 0xef, 0xcb, 0x21, 0x54, 0x26, 0xde, 0xe7, 0x0d, 0x3d, 0xe8, 0xf7, 0x81, 0xce, 0x64, 0xfd, 0x26, - 0x6e, 0x71, 0x83, 0x6b, 0xc4, 0x5d, 0x19, 0xcb, 0xee, 0x97, 0xbb, 0x71, 0x68, 0x4c, 0x42, 0x7c, - 0xc1, 0x5c, 0x79, 0xa1, 0xf4, 0xa0, 0x4e, 0x54, 0x8e, 0x07, 0x1d, 0xa3, 0xc7, 0x63, 0x86, 0xa3, - 0xf4, 0xe6, 0x1d, 0x8c, 0xef, 0x5d, 0xeb, 0x78, 0x7c, 0xc7, 0x5a, 0x5f, 0x2e, 0xa3, 0x56, 0x53, - 0xb5, 0x5b, 0xf5, 0x9e, 0x3a, 0x11, 0x3d, 0xd5, 0x3a, 0x88, 0x6e, 0xca, 0x27, 0xb1, 0x91, 0xc7, - 0xa3, 0x9b, 0xd4, 0x3a, 0x1a, 0xdf, 0x9a, 0x56, 0xbd, 0xfb, 0xa3, 0xa9, 0xda, 0x07, 0xfa, 0x38, - 0x96, 0xad, 0xe6, 0xf0, 0x86, 0xb4, 0xce, 0xd2, 0xbf, 0xbe, 0x9e, 0xfd, 0xf1, 0xef, 0xa8, 0xc6, - 0xee, 0x23, 0x70, 0x5c, 0x82, 0xd0, 0x4a, 0xcf, 0x8a, 0x95, 0x1c, 0xb7, 0x39, 0xe6, 0xae, 0x67, - 0xbb, 0xf9, 0x64, 0x47, 0xb9, 0x34, 0x61, 0xe8, 0x61, 0xa7, 0xf5, 0x55, 0x77, 0x43, 0xea, 0x6e, - 0x14, 0x2a, 0x6d, 0x36, 0x3a, 0x61, 0x3f, 0x8c, 0x1d, 0x69, 0x0c, 0x06, 0x40, 0x43, 0x01, 0x33, - 0x14, 0x20, 0x63, 0x00, 0xb1, 0xab, 0x8c, 0x01, 0x51, 0x9d, 0x22, 0xab, 0x8d, 0x43, 0x76, 0x5d, - 0x3a, 0xab, 0xba, 0x91, 0x4d, 0xfb, 0xa2, 0x65, 0xf7, 0x13, 0x2d, 0x27, 0xbb, 0xeb, 0x24, 0x2f, - 0x66, 0x72, 0xdb, 0xed, 0xfa, 0xf6, 0x3a, 0xa0, 0x9d, 0x4f, 0xb2, 0xd4, 0xc5, 0x5d, 0x75, 0xed, - 0x82, 0x75, 0x69, 0x8b, 0x12, 0xb5, 0x44, 0x49, 0xb2, 0x93, 0x91, 0xcb, 0xcf, 0x0f, 0x0b, 0xb9, - 0xe1, 0x4d, 0xda, 0x3f, 0x1c, 0x18, 0x3f, 0x0a, 0x13, 0x63, 0x2d, 0x3b, 0x1e, 0xb7, 0xf2, 0x7e, - 0x1e, 0x81, 0xa5, 0x8a, 0x30, 0x79, 0x82, 0x6e, 0xe9, 0xe3, 0x6c, 0x4f, 0x6c, 0x73, 0x31, 0x51, - 0xcd, 0xed, 0xc4, 0x33, 0x57, 0x13, 0xc9, 0x9c, 0x4f, 0x0c, 0x73, 0x3e, 0xd1, 0xcb, 0xf9, 0xc4, - 0xad, 0xd5, 0x62, 0x95, 0x3d, 0x65, 0xd7, 0x03, 0xf2, 0xc6, 0x20, 0x6b, 0x3d, 0x71, 0x26, 0xe5, - 0x62, 0xfc, 0xf9, 0x96, 0x3b, 0xad, 0x5d, 0x01, 0x70, 0x26, 0x04, 0x2e, 0x05, 0x01, 0x43, 0x18, - 0x5c, 0x0b, 0x04, 0x8c, 0x50, 0xc0, 0x08, 0x06, 0x8c, 0x70, 0xac, 0x87, 0xaf, 0x63, 0x5b, 0x50, - 0xa6, 0x85, 0xc5, 0x5d, 0xbe, 0x4d, 0xe9, 0x8b, 0xab, 0x5c, 0x73, 0x23, 0x33, 0xce, 0xe5, 0x06, - 0x41, 0x76, 0xb0, 0xe4, 0x07, 0x45, 0x86, 0xe0, 0xe4, 0x08, 0x4e, 0x96, 0xe0, 0xe4, 0xc9, 0x8d, - 0x4c, 0x39, 0x92, 0x2b, 0xe7, 0xb2, 0x95, 0x05, 0x90, 0x4e, 0x07, 0x70, 0x9e, 0xa7, 0x93, 0xea, - 0xe5, 0x72, 0x76, 0xc2, 0x73, 0x39, 0x73, 0xbc, 0x3c, 0x13, 0x66, 0x9d, 0x28, 0xd2, 0x7a, 0x50, - 0xcc, 0x75, 0x9f, 0x68, 0xeb, 0x3b, 0x61, 0xd7, 0x71, 0xc2, 0xae, 0xd7, 0x84, 0x5d, 0x97, 0xb9, - 0xde, 0x13, 0x41, 0x61, 0xd6, 0x53, 0x66, 0x75, 0xa7, 0x2f, 0x45, 0x2f, 0x96, 0x3d, 0x84, 0xa2, - 0x33, 0x19, 0x75, 0xd5, 0x00, 0x62, 0x39, 0x1e, 0x3f, 0xfd, 0xfd, 0xf8, 0x31, 0x5d, 0xe7, 0x15, - 0xa4, 0x42, 0xbe, 0xae, 0x33, 0x4d, 0x1d, 0x8e, 0xbc, 0x26, 0x13, 0x3d, 0x71, 0x98, 0x2e, 0x8b, - 0x88, 0x58, 0x47, 0xac, 0x23, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x5d, 0x21, 0xb1, - 0x2e, 0xd3, 0x72, 0x92, 0x9d, 0xf5, 0xc6, 0x18, 0x2f, 0xe5, 0xc1, 0x01, 0xbb, 0x49, 0x40, 0xe4, - 0x3a, 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, 0x91, 0xeb, 0x0a, 0xc9, 0x75, 0x13, - 0x29, 0x27, 0xd6, 0x59, 0x6f, 0x8b, 0x74, 0x5f, 0x2c, 0x18, 0xa8, 0x4b, 0xc3, 0xc1, 0x40, 0xba, - 0x12, 0x91, 0x8e, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0x11, 0xe9, 0x5c, 0xb5, 0x8a, 0xeb, 0x09, 0x4a, - 0x59, 0x20, 0xa3, 0xcd, 0x00, 0x95, 0xee, 0x4a, 0x9c, 0x8d, 0xc9, 0x1f, 0xd7, 0xf7, 0x3d, 0xc6, - 0x86, 0xb2, 0x83, 0x22, 0xd4, 0x16, 0xf8, 0x70, 0x5b, 0xde, 0x23, 0x6e, 0x71, 0x8f, 0xbd, 0xa5, - 0x3d, 0xea, 0x16, 0xf6, 0xf0, 0x5b, 0xd6, 0xc3, 0x6f, 0x51, 0x0f, 0xbf, 0x25, 0x3d, 0xf7, 0xc6, - 0x85, 0xf4, 0x58, 0x80, 0xbd, 0x16, 0x44, 0xcf, 0x65, 0x96, 0xf7, 0xf2, 0x0f, 0xff, 0x8d, 0x90, - 0x22, 0x91, 0x26, 0xc9, 0xae, 0xc6, 0x4e, 0x4d, 0x8a, 0x19, 0xdc, 0x26, 0x13, 0x25, 0x29, 0x41, - 0x66, 0xd0, 0xe7, 0xb2, 0x11, 0x61, 0x26, 0x3d, 0x71, 0x94, 0x38, 0x4a, 0x1c, 0x25, 0x8e, 0x12, - 0x47, 0x89, 0xa3, 0xd6, 0xeb, 0xd6, 0x40, 0x69, 0xb3, 0xb3, 0x0d, 0x48, 0xa3, 0x48, 0x30, 0xda, - 0x14, 0xfa, 0x72, 0x78, 0xb7, 0xce, 0xa1, 0x6a, 0x00, 0xe0, 0xf1, 0x3c, 0xdf, 0x94, 0xc6, 0x3d, - 0x9a, 0x13, 0xfc, 0xc0, 0xcb, 0xbf, 0x44, 0x7f, 0x20, 0x81, 0xe3, 0xfb, 0x1a, 0x8b, 0x8e, 0x51, - 0xa1, 0xde, 0x53, 0x97, 0x6a, 0xb4, 0x0b, 0xf3, 0x16, 0x0f, 0xad, 0xfd, 0x9d, 0x94, 0x10, 0xb7, - 0x4c, 0x89, 0x05, 0x53, 0xa2, 0xbc, 0xbd, 0x5b, 0xde, 0xad, 0xd6, 0xb6, 0x77, 0x2b, 0xcc, 0x8d, - 0x62, 0x03, 0x19, 0x5e, 0x34, 0x17, 0x34, 0x89, 0x50, 0x6a, 0xa7, 0xd7, 0x09, 0xaf, 0xaf, 0x07, - 0x5a, 0x99, 0x3b, 0xd4, 0x47, 0x98, 0xcf, 0x03, 0xa4, 0x71, 0x34, 0x2b, 0x1c, 0x1a, 0x47, 0x73, - 0x74, 0x29, 0x1a, 0x47, 0x73, 0xf5, 0x74, 0x1a, 0x47, 0x0b, 0x06, 0x48, 0xe3, 0xa8, 0x40, 0x23, - 0x09, 0x3e, 0xc7, 0x7c, 0x85, 0x0c, 0x16, 0xf0, 0x39, 0xe6, 0x84, 0x2b, 0x94, 0x4c, 0xb2, 0xeb, - 0x3b, 0x3e, 0xca, 0xc4, 0xa4, 0x54, 0x98, 0xbd, 0x23, 0x72, 0x39, 0x09, 0xb2, 0x87, 0x04, 0xb9, - 0x94, 0x5c, 0x4a, 0x2e, 0x25, 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xd6, 0xeb, 0x96, 0x8a, 0x7c, 0xd1, - 0xed, 0xc6, 0x32, 0x49, 0x10, 0xd1, 0x74, 0x17, 0x28, 0xa6, 0x71, 0x1b, 0xf2, 0xa1, 0xe6, 0x6f, - 0xf7, 0xac, 0x9b, 0x32, 0x60, 0xdf, 0xca, 0xf5, 0xb1, 0x4f, 0x80, 0xb1, 0x1d, 0x0b, 0x63, 0x64, - 0xac, 0xe1, 0xba, 0x5b, 0x16, 0xe0, 0xff, 0xde, 0xbf, 0x3f, 0xdf, 0xf2, 0x77, 0x2f, 0xee, 0xcf, - 0x4b, 0xfe, 0xee, 0x45, 0x7a, 0x59, 0x1a, 0x7d, 0x4b, 0xaf, 0xb7, 0xcf, 0xb7, 0xfc, 0xf2, 0xe4, - 0xba, 0x72, 0xbe, 0xe5, 0x57, 0x2e, 0x36, 0xff, 0xfe, 0xfb, 0xe3, 0xe6, 0xaf, 0x9d, 0x87, 0xf9, - 0xdf, 0xf8, 0x1f, 0x0f, 0xee, 0x26, 0x5c, 0x60, 0x3d, 0x1e, 0xfa, 0xc0, 0xa2, 0xf4, 0xdb, 0x45, - 0xa9, 0xca, 0xa2, 0xb4, 0xda, 0x45, 0x49, 0xf8, 0xbd, 0xba, 0xff, 0xf5, 0xe2, 0x57, 0xe9, 0x43, - 0xf9, 0xe1, 0xf3, 0xe6, 0xaf, 0xda, 0xc3, 0xf3, 0x17, 0xef, 0x67, 0xfd, 0x5a, 0xe9, 0x43, 0xed, - 0xe1, 0xf3, 0x0b, 0x3f, 0xa9, 0x3e, 0x7c, 0xfe, 0xcd, 0x7f, 0xa3, 0xf2, 0xf0, 0x3e, 0xf7, 0xab, - 0xc3, 0xd7, 0xb7, 0x5f, 0x7a, 0x43, 0xf9, 0x85, 0x37, 0xec, 0xbc, 0xf4, 0x86, 0x9d, 0x17, 0xde, - 0xf0, 0x62, 0x48, 0xdb, 0x2f, 0xbc, 0xa1, 0xf2, 0x70, 0x9f, 0xfb, 0xfd, 0xf7, 0xb3, 0x7f, 0xb5, - 0xfa, 0xb0, 0x79, 0xff, 0xd2, 0xcf, 0x6a, 0x0f, 0xf7, 0x9f, 0x37, 0x59, 0xa2, 0x8b, 0x31, 0x1e, - 0xda, 0xe0, 0x13, 0x7c, 0x24, 0xd1, 0xf4, 0xe4, 0xad, 0xf1, 0xe1, 0x9f, 0xe2, 0xcf, 0x0a, 0x92, - 0x8e, 0xe9, 0xac, 0x70, 0xe8, 0x98, 0xce, 0xd1, 0xad, 0xe8, 0x98, 0xce, 0xd5, 0xd3, 0xe9, 0x98, - 0x2e, 0x18, 0x20, 0x1d, 0xd3, 0x02, 0x0d, 0x25, 0xf9, 0x24, 0xff, 0x35, 0xa3, 0xc6, 0xe2, 0x3d, - 0xc9, 0x7f, 0xca, 0x16, 0x4a, 0x26, 0x53, 0xff, 0xcf, 0x27, 0xfa, 0xa0, 0xd4, 0xaa, 0xf4, 0x8d, - 0xe8, 0xab, 0xae, 0x1f, 0x4b, 0x91, 0x84, 0x1a, 0x0f, 0x58, 0x9f, 0xc5, 0x47, 0x56, 0x25, 0xab, - 0x92, 0x55, 0xc9, 0xaa, 0x64, 0x55, 0xb2, 0xea, 0x9a, 0xb1, 0xaa, 0xea, 0x4a, 0x6d, 0x94, 0xb9, - 0x03, 0xe5, 0x55, 0xa0, 0xf5, 0x69, 0xde, 0xc1, 0xf8, 0x56, 0x7d, 0x11, 0x09, 0x60, 0x49, 0x9d, - 0x34, 0xe8, 0xc1, 0xd1, 0x5f, 0xf5, 0xc3, 0x83, 0xbd, 0x56, 0xb3, 0x71, 0x76, 0xba, 0xdf, 0x6a, - 0xee, 0xd7, 0x4f, 0x1a, 0x47, 0x68, 0xd5, 0x75, 0xb4, 0x0c, 0x31, 0x81, 0x7c, 0x4c, 0x04, 0xba, - 0xae, 0xf4, 0x79, 0xeb, 0x36, 0x9a, 0x07, 0x7f, 0x1e, 0x1c, 0xd5, 0x4f, 0x1b, 0x4d, 0x8f, 0x8b, - 0x86, 0x57, 0xa6, 0x55, 0xff, 0x38, 0x3c, 0x3b, 0x39, 0xdd, 0x6f, 0xb6, 0x0e, 0x1b, 0x8d, 0x63, - 0xb6, 0xeb, 0xea, 0xb4, 0x6b, 0xfd, 0x84, 0x4d, 0xba, 0x6a, 0xa9, 0xda, 0x38, 0xfa, 0xba, 0xbf, - 0xe7, 0x71, 0x55, 0xfa, 0x3f, 0x7e, 0x5d, 0x70, 0x3c, 0x02, 0x16, 0x05, 0x82, 0x3b, 0xd8, 0x17, - 0x89, 0xf1, 0xaf, 0xc3, 0xae, 0xea, 0x29, 0xd9, 0xc5, 0x33, 0x07, 0xa7, 0xc3, 0xa3, 0x37, 0x38, - 0x2b, 0x1c, 0x7a, 0x83, 0x73, 0x74, 0x28, 0x7a, 0x83, 0x73, 0xf5, 0x74, 0x7a, 0x83, 0x0b, 0x06, - 0x48, 0x6f, 0xb0, 0x40, 0xec, 0x0b, 0xec, 0x0d, 0x1a, 0x75, 0x2d, 0x8d, 0xea, 0x5c, 0x25, 0xd5, - 0x32, 0xa0, 0x37, 0x08, 0x34, 0x01, 0xda, 0x3b, 0xd3, 0xe9, 0x2e, 0x55, 0x9e, 0x16, 0x3a, 0x4c, - 0x64, 0x27, 0xd4, 0x5d, 0xa8, 0xd5, 0x52, 0xdc, 0x6f, 0xf1, 0x37, 0x6f, 0x14, 0xf7, 0x5b, 0x7c, - 0x7d, 0x78, 0xdc, 0x6f, 0x71, 0x15, 0xfd, 0x18, 0xee, 0xb7, 0xf8, 0x06, 0x29, 0x51, 0xfa, 0x54, - 0x2e, 0x57, 0x6b, 0xe5, 0xf2, 0x56, 0x6d, 0xa7, 0xb6, 0xb5, 0x5b, 0xa9, 0x94, 0xaa, 0x25, 0xee, - 0xbc, 0x58, 0x70, 0x7e, 0xc4, 0x8b, 0x86, 0xeb, 0x36, 0x60, 0xaa, 0x28, 0xcc, 0xa9, 0xf9, 0x39, - 0xa8, 0xc7, 0x38, 0x3d, 0x3f, 0x0b, 0x6b, 0x4f, 0xf6, 0xc4, 0xa0, 0x3f, 0x1a, 0xaa, 0x6e, 0xd1, - 0x6b, 0x9b, 0x19, 0x0e, 0xbd, 0xb6, 0x39, 0xba, 0x37, 0xbd, 0xb6, 0xb9, 0x7a, 0x3a, 0xbd, 0xb6, - 0x05, 0x03, 0xa4, 0xd7, 0x56, 0xa0, 0x71, 0x0d, 0x8f, 0x0d, 0x99, 0x5f, 0x05, 0x79, 0x6c, 0xc8, - 0xbf, 0x7d, 0xd1, 0xc6, 0x5a, 0xc9, 0x31, 0x3b, 0x6d, 0xac, 0xa2, 0x97, 0xfb, 0xe9, 0x94, 0xa0, - 0x8d, 0xb5, 0x70, 0x4a, 0xf0, 0xd8, 0x90, 0x55, 0x01, 0x32, 0xbc, 0x68, 0x68, 0x5e, 0xc1, 0xd4, - 0x4e, 0x6f, 0xbc, 0x38, 0x32, 0x1c, 0x18, 0x89, 0x67, 0x60, 0x3d, 0x0d, 0x8e, 0x86, 0xd1, 0xac, - 0x70, 0x68, 0x18, 0xcd, 0xd1, 0x9d, 0x68, 0x18, 0xcd, 0xd5, 0xd3, 0x69, 0x18, 0x2d, 0x18, 0x20, - 0x0d, 0xa3, 0x02, 0x8d, 0x20, 0x80, 0x0d, 0xa3, 0x76, 0x18, 0xf6, 0xa5, 0xd0, 0x88, 0x8b, 0x36, - 0x4b, 0x44, 0x39, 0x80, 0x08, 0x1c, 0xa7, 0x90, 0x57, 0xd7, 0x3a, 0x34, 0x62, 0x38, 0x1a, 0x83, - 0x48, 0x20, 0x2f, 0xe9, 0x7c, 0x97, 0xd7, 0x22, 0x1a, 0x6f, 0x3a, 0x13, 0x84, 0x91, 0xd4, 0x9d, - 0x11, 0x28, 0xf9, 0x5a, 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, 0x78, - 0xfe, 0x42, 0x92, 0x7b, 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, 0xfb, - 0x32, 0x0a, 0x62, 0xd5, 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x46, 0x3b, - 0x5d, 0x27, 0xb1, 0x91, 0x7e, 0x14, 0xf6, 0x55, 0xe7, 0x2e, 0xd0, 0x52, 0x5d, 0x7e, 0x6f, 0x87, - 0x71, 0x92, 0x5d, 0x05, 0xa2, 0xfb, 0x63, 0xa4, 0x06, 0xe1, 0xc0, 0xf8, 0x51, 0x98, 0x98, 0x60, - 0x84, 0xb8, 0x49, 0xfa, 0x2d, 0xdd, 0xe8, 0xc6, 0xad, 0x4a, 0xb8, 0xeb, 0xce, 0x0e, 0xbb, 0xb2, - 0x37, 0xd0, 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, 0x4c, 0xac, 0xda, 0xc3, 0x16, 0x71, 0xde, 0x9d, - 0x1f, 0x1f, 0x1a, 0xe4, 0x63, 0x73, 0x9c, 0xf4, 0x13, 0x09, 0x70, 0x1c, 0x06, 0xca, 0x08, 0x08, - 0x69, 0xe4, 0x83, 0x39, 0xe2, 0x41, 0x1b, 0xe9, 0xc0, 0x8e, 0x70, 0x60, 0x47, 0x36, 0xb0, 0x23, - 0x9a, 0xf5, 0xc6, 0xaf, 0x3d, 0x15, 0x63, 0x94, 0x9d, 0x9c, 0x48, 0xe1, 0x59, 0x8a, 0xf9, 0x10, - 0xb1, 0x8c, 0xc5, 0x12, 0x8d, 0x45, 0x78, 0x79, 0xc5, 0x96, 0x59, 0x54, 0xb9, 0x85, 0x97, 0x5d, - 0x78, 0xf9, 0x85, 0x97, 0x61, 0x1c, 0x3f, 0x66, 0x03, 0xc8, 0x58, 0x44, 0x91, 0xe7, 0x2c, 0xa0, - 0xa1, 0xf6, 0xf9, 0x06, 0xcd, 0xee, 0x9c, 0xaa, 0xa8, 0x8f, 0x21, 0x82, 0xa5, 0x1e, 0xe6, 0xf4, - 0x0d, 0x38, 0xb9, 0x46, 0x96, 0xed, 0x62, 0xc8, 0x37, 0xba, 0x8c, 0x17, 0x46, 0xce, 0x0b, 0x23, - 0xeb, 0x85, 0x91, 0x77, 0x2c, 0x99, 0x07, 0x93, 0xfb, 0xac, 0x15, 0x4f, 0x11, 0x05, 0x76, 0x03, - 0xfb, 0xf0, 0x82, 0xdc, 0x68, 0xb8, 0x86, 0x79, 0xf4, 0xdd, 0xe4, 0x30, 0x83, 0xf4, 0x4c, 0x82, - 0x47, 0x58, 0xe1, 0x84, 0x3f, 0xf4, 0xd4, 0xf4, 0xd2, 0xa7, 0x6b, 0xb0, 0xe0, 0x9b, 0x86, 0x87, - 0x09, 0xbd, 0x25, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x52, 0x59, 0x67, 0xb7, - 0x22, 0x9a, 0xd7, 0x95, 0x05, 0x36, 0x62, 0xb4, 0xbe, 0x04, 0x5e, 0x2b, 0x37, 0x65, 0x7d, 0x0d, - 0x23, 0xfd, 0xc0, 0x05, 0x4c, 0x2b, 0x04, 0x05, 0x45, 0x80, 0x83, 0x62, 0x41, 0x42, 0x51, 0x60, - 0xa1, 0x70, 0xd0, 0x50, 0x38, 0x78, 0x28, 0x1c, 0x44, 0x60, 0xc2, 0x04, 0x28, 0x54, 0x64, 0xad, - 0x0b, 0xeb, 0xa8, 0xe5, 0xea, 0xe6, 0x40, 0x69, 0x53, 0xaa, 0x22, 0xd7, 0xcc, 0xb1, 0x8a, 0x57, - 0x81, 0x43, 0xc4, 0xdc, 0x02, 0xe2, 0xf9, 0x17, 0xb6, 0xe6, 0x6c, 0xa0, 0x6f, 0x11, 0x51, 0x30, - 0xbc, 0xcc, 0x85, 0x0b, 0xbe, 0x85, 0x44, 0x2e, 0xde, 0x02, 0x2c, 0x9b, 0x2f, 0x88, 0x1c, 0x4d, - 0xa7, 0x98, 0xb8, 0x65, 0x8a, 0x2d, 0x39, 0xc5, 0xaa, 0x95, 0xca, 0x4e, 0x85, 0x69, 0xb6, 0x5e, - 0x2c, 0x8a, 0x1f, 0xdd, 0xc5, 0x3b, 0xde, 0xaf, 0x82, 0x96, 0x71, 0xe0, 0x99, 0x70, 0xb9, 0x21, - 0x05, 0xea, 0x8c, 0xb8, 0x82, 0xa8, 0x0a, 0x7d, 0xc1, 0xb7, 0xec, 0x8c, 0xf4, 0x05, 0xdf, 0x34, - 0x73, 0xe8, 0x0b, 0x2e, 0x39, 0x60, 0xfa, 0x82, 0x2b, 0x3c, 0x10, 0x2b, 0x98, 0x2f, 0xf8, 0xa9, - 0x00, 0xb6, 0x60, 0x85, 0xb6, 0xe0, 0x82, 0x5f, 0xb4, 0x05, 0xe9, 0x59, 0xd0, 0x16, 0x5c, 0x43, - 0x35, 0x9a, 0x4e, 0x31, 0xda, 0x82, 0x4b, 0x4f, 0xb1, 0xed, 0x0a, 0x4d, 0xc1, 0x35, 0x03, 0x51, - 0xfc, 0xe8, 0x68, 0x0a, 0x16, 0xb6, 0x88, 0xa7, 0x4e, 0xdb, 0xcd, 0xb8, 0xba, 0x14, 0xc1, 0x15, - 0x4c, 0x63, 0xa5, 0x2d, 0xf8, 0x9a, 0xf0, 0x68, 0x0b, 0xbe, 0x61, 0x6f, 0xa4, 0x2d, 0xf8, 0xa6, - 0x99, 0x43, 0x5b, 0x70, 0xc9, 0x01, 0xd3, 0x16, 0x5c, 0xe1, 0x81, 0x58, 0x81, 0x6c, 0xc1, 0xb6, - 0xd2, 0x22, 0xbe, 0x2b, 0x80, 0x2f, 0xb8, 0x0b, 0x1c, 0xe2, 0xa1, 0xd4, 0x97, 0xa3, 0x85, 0xb9, - 0x34, 0x06, 0x17, 0x75, 0x2d, 0x68, 0x0c, 0x2e, 0xdd, 0xb5, 0x28, 0xd1, 0xb3, 0x58, 0x33, 0x3d, - 0x9a, 0x4e, 0x31, 0x1a, 0x83, 0x4b, 0x4f, 0x31, 0xce, 0x17, 0x5c, 0x43, 0x18, 0xc5, 0x8f, 0x8e, - 0xd6, 0x60, 0x61, 0xcb, 0xb8, 0x27, 0x6f, 0x8d, 0xd4, 0x5d, 0xd9, 0xc5, 0x37, 0x06, 0xb3, 0x48, - 0x69, 0x0b, 0xbe, 0x26, 0x3c, 0xda, 0x82, 0x6f, 0xd8, 0x17, 0x69, 0x0b, 0xbe, 0x69, 0xe6, 0xd0, - 0x16, 0x5c, 0x72, 0xc0, 0xb4, 0x05, 0x57, 0x78, 0x18, 0x56, 0x24, 0x5b, 0x10, 0xee, 0xdc, 0xaf, - 0x97, 0x64, 0x1c, 0xe4, 0x1c, 0x30, 0x42, 0xed, 0x6b, 0xda, 0x30, 0x8c, 0x86, 0x23, 0x4f, 0xd1, - 0xc7, 0x87, 0xda, 0x2c, 0x52, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, - 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0x93, 0x62, 0xba, 0x0d, 0x23, 0x11, 0x1b, 0x55, 0x04, 0xa6, - 0x9d, 0x04, 0x4a, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, - 0x48, 0x4b, 0xa4, 0x65, 0x52, 0x4c, 0xb7, 0xa1, 0x89, 0x85, 0x4e, 0x94, 0x51, 0x37, 0x05, 0x58, - 0x97, 0xf4, 0x24, 0x56, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, - 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0x23, 0x02, 0x4d, 0x51, 0xaf, 0xae, 0x75, 0x68, 0x84, 0x51, 0x21, - 0xe6, 0x02, 0x28, 0x2f, 0xe9, 0x7c, 0x97, 0xd7, 0x22, 0x1a, 0x1f, 0x40, 0x19, 0x84, 0x91, 0xd4, - 0x9d, 0x11, 0x28, 0xfa, 0x5a, 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, - 0x78, 0xfe, 0x42, 0x92, 0x7b, 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, - 0xfb, 0x32, 0x0a, 0x62, 0xd5, 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x54, - 0x74, 0x53, 0xf6, 0x93, 0xd8, 0x48, 0x3f, 0x0a, 0xfb, 0xaa, 0x73, 0x17, 0x68, 0xa9, 0x2e, 0xbf, - 0xb7, 0xc3, 0x38, 0xc9, 0xae, 0x02, 0xd1, 0xfd, 0x31, 0x52, 0xab, 0x70, 0x60, 0xfc, 0x28, 0x4c, - 0x4c, 0x10, 0x87, 0x03, 0x23, 0x93, 0xf4, 0x5b, 0x30, 0xd0, 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, - 0x4c, 0xac, 0xda, 0xa3, 0x1f, 0xe4, 0x5e, 0x4a, 0x8f, 0xd4, 0xe4, 0x41, 0x9a, 0xc8, 0x91, 0xa0, - 0x1c, 0xac, 0xff, 0x5f, 0x79, 0x87, 0xb8, 0x33, 0xae, 0x77, 0xa8, 0x12, 0x53, 0x37, 0x06, 0xec, - 0xd4, 0xff, 0x6f, 0x4a, 0xef, 0xf7, 0xe5, 0x10, 0x2b, 0x13, 0xef, 0xf3, 0x86, 0x1e, 0xf4, 0xfb, - 0x40, 0xa7, 0xb2, 0x7e, 0x13, 0xb7, 0xb8, 0xc1, 0x35, 0xe2, 0xae, 0x8c, 0x65, 0xf7, 0xcb, 0xdd, - 0x38, 0x34, 0x26, 0x21, 0xbe, 0x64, 0xae, 0x81, 0x54, 0x7a, 0x50, 0xa7, 0x2a, 0xc7, 0x83, 0x8e, - 0xd1, 0xe3, 0x71, 0xc3, 0x51, 0x7a, 0xfb, 0x0e, 0xc6, 0x77, 0xaf, 0x75, 0x3c, 0xbe, 0x67, 0xad, - 0x2f, 0x97, 0x51, 0xab, 0xa9, 0xda, 0xad, 0x7a, 0x4f, 0x9d, 0x88, 0x9e, 0x6a, 0x1d, 0x44, 0x37, - 0xe5, 0x93, 0xd8, 0xc8, 0xe3, 0xd1, 0x6d, 0x6a, 0x1d, 0x8d, 0x6f, 0x4e, 0xab, 0xde, 0xfd, 0xd1, - 0x54, 0xed, 0xc6, 0xc0, 0x1c, 0x87, 0x89, 0x69, 0x35, 0x87, 0xb7, 0xa4, 0x75, 0x96, 0xfe, 0xfd, - 0xf5, 0xec, 0xcf, 0x7f, 0x47, 0x45, 0x76, 0x1f, 0x81, 0xe3, 0x32, 0x84, 0x56, 0x7e, 0x56, 0xae, - 0xec, 0xb8, 0xcd, 0x32, 0x77, 0x7d, 0xdb, 0xcd, 0x27, 0x3b, 0xca, 0xa6, 0x09, 0x49, 0x0f, 0xbb, - 0xad, 0xaf, 0xba, 0x1b, 0x52, 0x77, 0xa3, 0x50, 0x69, 0xb3, 0xd1, 0x09, 0xfb, 0x61, 0xec, 0x48, - 0x67, 0x30, 0x30, 0x1a, 0x0a, 0x9b, 0xa1, 0x30, 0x19, 0x03, 0x8b, 0x5d, 0x65, 0x0c, 0x88, 0xee, - 0x14, 0x5b, 0x6f, 0x1c, 0x12, 0xac, 0x05, 0x62, 0x75, 0x23, 0x9d, 0xf6, 0x85, 0xcb, 0xee, 0x27, - 0x5a, 0x4e, 0x78, 0xd7, 0x89, 0x5e, 0xd4, 0x04, 0xb7, 0xdb, 0xf9, 0xed, 0x75, 0x41, 0x3b, 0x9f, - 0x64, 0xa9, 0x93, 0xbb, 0xea, 0xdc, 0x85, 0xeb, 0xd4, 0x16, 0x85, 0x6a, 0xa9, 0xc2, 0x64, 0x27, - 0x2b, 0x97, 0x9f, 0x23, 0x16, 0xf2, 0xc3, 0x9b, 0xea, 0x03, 0xb1, 0xbd, 0x27, 0xf6, 0x8f, 0x7b, - 0x7b, 0x3f, 0x0b, 0xc0, 0x52, 0x4d, 0x98, 0x3c, 0x51, 0xb7, 0xf4, 0x71, 0xb6, 0x27, 0xba, 0xb9, - 0x98, 0xb8, 0xe6, 0x76, 0x22, 0x9a, 0xab, 0x89, 0x65, 0xce, 0x27, 0x8a, 0x39, 0x9f, 0xf8, 0xe5, - 0x7c, 0x22, 0xd7, 0x6a, 0xd1, 0xca, 0x9e, 0xb2, 0xeb, 0x05, 0x79, 0x63, 0x94, 0xb5, 0x9e, 0x38, - 0x93, 0x72, 0x31, 0xfe, 0x7c, 0xcb, 0x9d, 0xd6, 0xae, 0x00, 0x38, 0x13, 0x02, 0x97, 0x82, 0x80, - 0x21, 0x0c, 0xae, 0x05, 0x02, 0x46, 0x28, 0x60, 0x04, 0x03, 0x46, 0x38, 0xd6, 0xc3, 0xdb, 0xb1, - 0x2d, 0x28, 0xd3, 0xc2, 0xe2, 0x2e, 0xdf, 0xa6, 0xf4, 0xc5, 0x55, 0xae, 0xb9, 0x91, 0x19, 0xe7, - 0x72, 0x83, 0x20, 0x3b, 0x58, 0xf2, 0x83, 0x22, 0x43, 0x70, 0x72, 0x04, 0x27, 0x4b, 0x70, 0xf2, - 0xe4, 0x46, 0xa6, 0x1c, 0xc9, 0x95, 0x73, 0xd9, 0xca, 0x02, 0x48, 0xa7, 0x05, 0x38, 0xcf, 0xd3, - 0x49, 0xf5, 0x72, 0x39, 0x4b, 0xe1, 0xb9, 0x9c, 0x39, 0x5e, 0xae, 0x09, 0xb3, 0x6e, 0x14, 0x69, - 0x7d, 0x28, 0xe6, 0x3a, 0x50, 0xb4, 0xf5, 0x9e, 0xb0, 0xeb, 0x3a, 0x61, 0xd7, 0x6f, 0xc2, 0xae, - 0xd3, 0x5c, 0xef, 0x29, 0xa1, 0x30, 0xeb, 0x2b, 0xb3, 0xba, 0xd3, 0x97, 0xa2, 0x17, 0xcb, 0x1e, - 0x42, 0xd1, 0x99, 0x8c, 0xba, 0x6a, 0x00, 0xb1, 0x1c, 0x8f, 0x9f, 0xff, 0x7e, 0xfc, 0x98, 0xae, - 0xfa, 0x0a, 0x52, 0x21, 0x5f, 0xd7, 0x19, 0xa7, 0x0e, 0x47, 0x5e, 0x93, 0x09, 0x9f, 0x38, 0x4c, - 0x97, 0x45, 0x44, 0xac, 0x23, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x1d, 0xb1, 0xae, - 0x90, 0x58, 0x97, 0x69, 0x39, 0xc9, 0xce, 0x7a, 0x63, 0x8c, 0x97, 0xf4, 0xe0, 0x80, 0xdd, 0x24, - 0x20, 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, 0x91, 0xeb, 0xc8, 0x75, 0x85, 0xe4, - 0xba, 0x89, 0x94, 0x13, 0xeb, 0xac, 0xb7, 0x45, 0xba, 0x4b, 0x16, 0x0c, 0xd4, 0xa5, 0xe1, 0x60, - 0x20, 0x5d, 0x89, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0x11, 0xe9, 0x88, 0x74, 0xae, 0x5a, 0xc5, 0xf5, - 0x04, 0xa5, 0x2c, 0x90, 0xd1, 0xd6, 0x80, 0x4a, 0x77, 0x25, 0xce, 0x46, 0xe5, 0x8f, 0xcb, 0xfb, - 0x1e, 0x63, 0x43, 0xd9, 0x4f, 0x11, 0x6a, 0x4b, 0x7c, 0xb8, 0x2d, 0xf0, 0x11, 0xb7, 0xbc, 0xc7, - 0xde, 0xe2, 0x1e, 0x75, 0x4b, 0x7b, 0xf8, 0x2d, 0xec, 0xe1, 0xb7, 0xac, 0x87, 0xdf, 0xa2, 0x9e, - 0x3b, 0xe5, 0x42, 0x7a, 0x2c, 0xc0, 0x5e, 0x0b, 0xa2, 0xe7, 0x32, 0xcb, 0x7b, 0xf9, 0x87, 0xff, - 0x46, 0x48, 0x91, 0x48, 0x93, 0x64, 0x57, 0x63, 0xa7, 0x26, 0xc5, 0x0c, 0x6e, 0x98, 0x89, 0x92, - 0x94, 0x20, 0x33, 0xe8, 0x73, 0xd9, 0x88, 0x30, 0x93, 0x9e, 0x38, 0x4a, 0x1c, 0x25, 0x8e, 0x12, - 0x47, 0x89, 0xa3, 0xc4, 0x51, 0xeb, 0x75, 0x6b, 0xa0, 0xb4, 0xd9, 0xd9, 0x06, 0xa4, 0x51, 0x24, - 0x18, 0x6d, 0x0a, 0x7d, 0x39, 0xbc, 0x5b, 0xe7, 0x50, 0x35, 0x00, 0xf0, 0xb8, 0x9e, 0x6f, 0x4a, - 0xe3, 0x1e, 0xd5, 0x09, 0x7e, 0x00, 0xe6, 0x5f, 0xa2, 0x3f, 0x90, 0xc0, 0xf1, 0x7d, 0x8d, 0x45, - 0xc7, 0xa8, 0x50, 0xef, 0xa9, 0x4b, 0x35, 0xda, 0x8d, 0x79, 0x8b, 0x87, 0xd8, 0xfe, 0x4e, 0x4a, - 0x88, 0x5b, 0xa6, 0xc4, 0x82, 0x29, 0x51, 0xde, 0xde, 0x2d, 0xef, 0x56, 0x6b, 0xdb, 0xbb, 0x15, - 0xe6, 0x46, 0xb1, 0x81, 0x0c, 0x2f, 0x9a, 0x0b, 0x9a, 0x44, 0x28, 0xb5, 0xd3, 0xeb, 0x84, 0xd7, - 0xd7, 0x03, 0xad, 0xcc, 0x1d, 0xea, 0x23, 0xcc, 0xe7, 0x01, 0xd2, 0x38, 0x9a, 0x15, 0x0e, 0x8d, - 0xa3, 0x39, 0xba, 0x14, 0x8d, 0xa3, 0xb9, 0x7a, 0x3a, 0x8d, 0xa3, 0x05, 0x03, 0xa4, 0x71, 0x54, - 0xa0, 0x91, 0x04, 0x9f, 0x63, 0xbe, 0x42, 0x06, 0x0b, 0xf8, 0x1c, 0x73, 0xc2, 0x15, 0x4a, 0x26, - 0xd9, 0xf5, 0x1d, 0x1f, 0x65, 0x62, 0x52, 0x2a, 0xcc, 0xde, 0x11, 0xb9, 0x9c, 0x04, 0xd9, 0x43, - 0x82, 0x5c, 0x4a, 0x2e, 0x25, 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0xeb, 0x75, 0x4b, 0x45, - 0xbe, 0xe8, 0x76, 0x63, 0x99, 0x24, 0x88, 0x68, 0xba, 0x0b, 0x14, 0xd3, 0xb8, 0x0d, 0xf9, 0x50, - 0xf3, 0xb7, 0x7b, 0xd6, 0x4d, 0x19, 0xb0, 0x6f, 0xe5, 0xfa, 0xd8, 0x27, 0xc0, 0xd8, 0x8e, 0x85, - 0x31, 0x32, 0xd6, 0x70, 0xdd, 0x2d, 0x0b, 0xf0, 0x7f, 0xef, 0xdf, 0x9f, 0x6f, 0xf9, 0xbb, 0x17, - 0xf7, 0xe7, 0x25, 0x7f, 0xf7, 0x22, 0xbd, 0x2c, 0x8d, 0xbe, 0xa5, 0xd7, 0xdb, 0xe7, 0x5b, 0x7e, - 0x79, 0x72, 0x5d, 0x39, 0xdf, 0xf2, 0x2b, 0x17, 0x9b, 0x7f, 0xff, 0xfd, 0x71, 0xf3, 0xd7, 0xce, - 0xc3, 0xfc, 0x6f, 0xfc, 0x8f, 0x07, 0x77, 0x13, 0x2e, 0xb0, 0x1e, 0x0f, 0x7d, 0x60, 0x51, 0xfa, - 0xed, 0xa2, 0x54, 0x65, 0x51, 0x5a, 0xed, 0xa2, 0x24, 0xfc, 0x5e, 0xdd, 0xff, 0x7a, 0xf1, 0xab, - 0xf4, 0xa1, 0xfc, 0xf0, 0x79, 0xf3, 0x57, 0xed, 0xe1, 0xf9, 0x8b, 0xf7, 0xb3, 0x7e, 0xad, 0xf4, - 0xa1, 0xf6, 0xf0, 0xf9, 0x85, 0x9f, 0x54, 0x1f, 0x3e, 0xff, 0xe6, 0xbf, 0x51, 0x79, 0x78, 0x9f, - 0xfb, 0xd5, 0xe1, 0xeb, 0xdb, 0x2f, 0xbd, 0xa1, 0xfc, 0xc2, 0x1b, 0x76, 0x5e, 0x7a, 0xc3, 0xce, - 0x0b, 0x6f, 0x78, 0x31, 0xa4, 0xed, 0x17, 0xde, 0x50, 0x79, 0xb8, 0xcf, 0xfd, 0xfe, 0xfb, 0xd9, - 0xbf, 0x5a, 0x7d, 0xd8, 0xbc, 0x7f, 0xe9, 0x67, 0xb5, 0x87, 0xfb, 0xcf, 0x9b, 0x2c, 0xd1, 0xc5, - 0x18, 0x0f, 0x6d, 0xf0, 0x09, 0x3e, 0x92, 0x68, 0x7a, 0xf2, 0xd6, 0xf8, 0xf0, 0x4f, 0xf1, 0x67, - 0x05, 0x49, 0xc7, 0x74, 0x56, 0x38, 0x74, 0x4c, 0xe7, 0xe8, 0x56, 0x74, 0x4c, 0xe7, 0xea, 0xe9, - 0x74, 0x4c, 0x17, 0x0c, 0x90, 0x8e, 0x69, 0x81, 0x86, 0x92, 0x7c, 0x92, 0xff, 0x9a, 0x51, 0x63, - 0xf1, 0x9e, 0xe4, 0x3f, 0x65, 0x0b, 0x25, 0x93, 0xa9, 0xff, 0xe7, 0x13, 0x7d, 0x50, 0x6a, 0x55, - 0xfa, 0x46, 0xf4, 0x55, 0xd7, 0x8f, 0xa5, 0x48, 0x42, 0x8d, 0x07, 0xac, 0xcf, 0xe2, 0x23, 0xab, - 0x92, 0x55, 0xc9, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x75, 0xcd, 0x58, 0x55, 0x75, 0xa5, 0x36, - 0xca, 0xdc, 0x81, 0xf2, 0x2a, 0xd0, 0xfa, 0x34, 0xef, 0x60, 0x7c, 0xab, 0xbe, 0x88, 0x04, 0xb0, - 0xa4, 0x4e, 0x1a, 0xf4, 0xe0, 0xe8, 0xaf, 0xfa, 0xe1, 0xc1, 0x5e, 0xab, 0xd9, 0x38, 0x3b, 0xdd, - 0x6f, 0x35, 0xf7, 0xeb, 0x27, 0x8d, 0x23, 0xb4, 0xea, 0x3a, 0x5a, 0x86, 0x98, 0x40, 0x3e, 0x26, - 0x02, 0x5d, 0x57, 0xfa, 0xbc, 0x75, 0x1b, 0xcd, 0x83, 0x3f, 0x0f, 0x8e, 0xea, 0xa7, 0x8d, 0xa6, - 0xc7, 0x45, 0xc3, 0x2b, 0xd3, 0xaa, 0x7f, 0x1c, 0x9e, 0x9d, 0x9c, 0xee, 0x37, 0x5b, 0x87, 0x8d, - 0xc6, 0x31, 0xdb, 0x75, 0x75, 0xda, 0xb5, 0x7e, 0xc2, 0x26, 0x5d, 0xb5, 0x54, 0x6d, 0x1c, 0x7d, - 0xdd, 0xdf, 0xf3, 0xb8, 0x2a, 0xfd, 0x1f, 0xbf, 0x2e, 0x38, 0x1e, 0x01, 0x8b, 0x02, 0xc1, 0x1d, - 0xec, 0x8b, 0xc4, 0xf8, 0xd7, 0x61, 0x57, 0xf5, 0x94, 0xec, 0xe2, 0x99, 0x83, 0xd3, 0xe1, 0xd1, - 0x1b, 0x9c, 0x15, 0x0e, 0xbd, 0xc1, 0x39, 0x3a, 0x14, 0xbd, 0xc1, 0xb9, 0x7a, 0x3a, 0xbd, 0xc1, - 0x05, 0x03, 0xa4, 0x37, 0x58, 0x20, 0xf6, 0x05, 0xf6, 0x06, 0x8d, 0xba, 0x96, 0x46, 0x75, 0xae, - 0x92, 0x6a, 0x19, 0xd0, 0x1b, 0x04, 0x9a, 0x00, 0xed, 0x9d, 0xe9, 0x74, 0x97, 0x2a, 0x4f, 0x0b, - 0x1d, 0x26, 0xb2, 0x13, 0xea, 0x2e, 0xd4, 0x6a, 0x29, 0xee, 0xb7, 0xf8, 0x9b, 0x37, 0x8a, 0xfb, - 0x2d, 0xbe, 0x3e, 0x3c, 0xee, 0xb7, 0xb8, 0x8a, 0x7e, 0x0c, 0xf7, 0x5b, 0x7c, 0x83, 0x94, 0x28, - 0x7d, 0x2a, 0x97, 0xab, 0xb5, 0x72, 0x79, 0xab, 0xb6, 0x53, 0xdb, 0xda, 0xad, 0x54, 0x4a, 0xd5, - 0x12, 0x77, 0x5e, 0x2c, 0x38, 0x3f, 0xe2, 0x45, 0xc3, 0x75, 0x1b, 0x30, 0x55, 0x14, 0xe6, 0xd4, - 0xfc, 0x1c, 0xd4, 0x63, 0x9c, 0x9e, 0x9f, 0x85, 0xb5, 0x27, 0x7b, 0x62, 0xd0, 0x1f, 0x0d, 0x55, - 0xb7, 0xe8, 0xb5, 0xcd, 0x0c, 0x87, 0x5e, 0xdb, 0x1c, 0xdd, 0x9b, 0x5e, 0xdb, 0x5c, 0x3d, 0x9d, - 0x5e, 0xdb, 0x82, 0x01, 0xd2, 0x6b, 0x2b, 0xd0, 0xb8, 0x86, 0xc7, 0x86, 0xcc, 0xaf, 0x82, 0x3c, - 0x36, 0xe4, 0xdf, 0xbe, 0x68, 0x63, 0xad, 0xe4, 0x98, 0x9d, 0x36, 0x56, 0xd1, 0xcb, 0xfd, 0x74, - 0x4a, 0xd0, 0xc6, 0x5a, 0x38, 0x25, 0x78, 0x6c, 0xc8, 0xaa, 0x00, 0x19, 0x5e, 0x34, 0x34, 0xaf, - 0x60, 0x6a, 0xa7, 0x37, 0x5e, 0x1c, 0x19, 0x0e, 0x8c, 0xc4, 0x33, 0xb0, 0x9e, 0x06, 0x47, 0xc3, - 0x68, 0x56, 0x38, 0x34, 0x8c, 0xe6, 0xe8, 0x4e, 0x34, 0x8c, 0xe6, 0xea, 0xe9, 0x34, 0x8c, 0x16, - 0x0c, 0x90, 0x86, 0x51, 0x81, 0x46, 0x10, 0xc0, 0x86, 0x51, 0x3b, 0x0c, 0xfb, 0x52, 0x68, 0xc4, - 0x45, 0x9b, 0x25, 0xa2, 0x1c, 0x40, 0x04, 0x8e, 0x53, 0xc8, 0xab, 0x6b, 0x1d, 0x1a, 0x31, 0x1c, - 0x8d, 0x41, 0x24, 0x90, 0x97, 0x74, 0xbe, 0xcb, 0x6b, 0x11, 0x8d, 0x37, 0x9d, 0x09, 0xc2, 0x48, - 0xea, 0xce, 0x08, 0x94, 0x7c, 0x2d, 0xcd, 0xcf, 0x30, 0xbe, 0xf2, 0x95, 0x4e, 0x8c, 0xd0, 0x1d, - 0x19, 0x3c, 0x7f, 0x21, 0xc9, 0xbd, 0x12, 0x44, 0x71, 0x68, 0xc2, 0x4e, 0xd8, 0x4f, 0xb2, 0xab, - 0xa0, 0x7d, 0x19, 0x05, 0xb1, 0x6a, 0x07, 0xa2, 0xa7, 0xfc, 0x44, 0xf4, 0x54, 0x92, 0x5d, 0x05, - 0xa3, 0x9d, 0xae, 0x93, 0xd8, 0x48, 0x3f, 0x0a, 0xfb, 0xaa, 0x73, 0x17, 0x68, 0xa9, 0x2e, 0xbf, - 0xb7, 0xc3, 0x38, 0xc9, 0xae, 0x02, 0xd1, 0xfd, 0x31, 0x52, 0x83, 0x70, 0x60, 0xfc, 0x28, 0x96, - 0xc1, 0x88, 0x70, 0x93, 0xf4, 0x5b, 0xba, 0xcf, 0x8d, 0x5b, 0x91, 0x70, 0xd7, 0x9b, 0x1d, 0xf6, - 0x64, 0x6f, 0xa0, 0xaf, 0x74, 0xf8, 0x53, 0xfb, 0xc2, 0x98, 0x58, 0xb5, 0x87, 0x2d, 0xe2, 0xbc, - 0x37, 0x3f, 0x3e, 0x33, 0xc8, 0xc7, 0xe6, 0x38, 0xe7, 0x27, 0x0a, 0xe0, 0x38, 0x0c, 0x94, 0x01, - 0x10, 0xd2, 0xc0, 0x07, 0x73, 0xc0, 0x83, 0x36, 0xd0, 0x81, 0x1d, 0xe0, 0xc0, 0x0e, 0x6c, 0x60, - 0x07, 0x34, 0xeb, 0x4d, 0x5f, 0x7b, 0x2a, 0xc6, 0x28, 0x3b, 0x39, 0x91, 0xc2, 0x73, 0x14, 0xf3, - 0x21, 0x62, 0xf9, 0x8a, 0x25, 0xfa, 0x8a, 0xf0, 0xf2, 0x8a, 0x2d, 0xb3, 0xa8, 0x72, 0x0b, 0x2f, - 0xbb, 0xf0, 0xf2, 0x0b, 0x2f, 0xc3, 0x38, 0x76, 0xcc, 0x06, 0x90, 0xaf, 0x88, 0x22, 0xcf, 0x59, - 0x40, 0x43, 0xed, 0xf3, 0x0d, 0x9a, 0xdb, 0x39, 0x55, 0x51, 0x1f, 0x43, 0x04, 0x4b, 0x3d, 0xcc, - 0xd9, 0x1b, 0x70, 0x72, 0x8d, 0x2c, 0xdb, 0xc5, 0x90, 0x6f, 0x74, 0x19, 0x2f, 0x8c, 0x9c, 0x17, - 0x46, 0xd6, 0x0b, 0x23, 0xef, 0x58, 0x32, 0x0f, 0x26, 0xf7, 0x59, 0x2b, 0x9e, 0x22, 0x0a, 0xec, - 0x06, 0xf6, 0xd9, 0x05, 0xb9, 0xd1, 0x70, 0x0d, 0xf3, 0xe4, 0xbb, 0xc9, 0x59, 0x06, 0xe9, 0x91, - 0x04, 0x8f, 0xb0, 0xc2, 0xf9, 0x7e, 0xe8, 0xa9, 0xe9, 0xa5, 0x4f, 0xd7, 0x60, 0xc1, 0x37, 0x0d, - 0x0f, 0x13, 0x7a, 0x4b, 0x84, 0x5e, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0xa5, 0xb2, 0xce, - 0x6e, 0x45, 0x34, 0xaf, 0x2b, 0x0b, 0x6c, 0xc4, 0x68, 0x7d, 0x09, 0xbc, 0x54, 0x6e, 0xca, 0xfa, - 0x1a, 0x46, 0xfa, 0x81, 0xeb, 0x97, 0x56, 0x08, 0x0a, 0x8a, 0x00, 0x07, 0xc5, 0x82, 0x84, 0xa2, - 0xc0, 0x42, 0xe1, 0xa0, 0xa1, 0x70, 0xf0, 0x50, 0x38, 0x88, 0xc0, 0x84, 0x09, 0x50, 0xa8, 0xc8, - 0x5a, 0x17, 0xd6, 0x51, 0xcb, 0xd5, 0xcd, 0x81, 0xd2, 0xa6, 0x54, 0x45, 0xae, 0x99, 0x63, 0x15, - 0xaf, 0x02, 0x87, 0x88, 0xb9, 0x03, 0xc4, 0xf3, 0x2f, 0x6c, 0xcd, 0xd9, 0x40, 0xdf, 0x21, 0xa2, - 0x60, 0x78, 0x99, 0x0b, 0x17, 0x7c, 0x07, 0x89, 0x5c, 0xbc, 0x05, 0x58, 0x35, 0x5f, 0x10, 0x39, - 0x9a, 0x4e, 0x31, 0x71, 0xcb, 0x14, 0x5b, 0x72, 0x8a, 0x55, 0x2b, 0x95, 0x9d, 0x0a, 0xd3, 0x6c, - 0xbd, 0x58, 0x14, 0x3f, 0xba, 0x8b, 0x77, 0xbc, 0x5f, 0x05, 0x2d, 0xe3, 0xc0, 0x33, 0xe1, 0x72, - 0x43, 0x0a, 0xd4, 0x19, 0x71, 0x05, 0x51, 0x15, 0xfa, 0x82, 0x6f, 0xd9, 0x19, 0xe9, 0x0b, 0xbe, - 0x69, 0xe6, 0xd0, 0x17, 0x5c, 0x72, 0xc0, 0xf4, 0x05, 0x57, 0x78, 0x20, 0x56, 0x30, 0x5f, 0xf0, - 0x53, 0x01, 0x6c, 0xc1, 0x0a, 0x6d, 0xc1, 0x05, 0xbf, 0x68, 0x0b, 0xd2, 0xb3, 0xa0, 0x2d, 0xb8, - 0x86, 0x6a, 0x34, 0x9d, 0x62, 0xb4, 0x05, 0x97, 0x9e, 0x62, 0xdb, 0x15, 0x9a, 0x82, 0x6b, 0x06, - 0xa2, 0xf8, 0xd1, 0xd1, 0x14, 0x2c, 0x6c, 0x11, 0x4f, 0x9d, 0xb6, 0x9b, 0x71, 0x75, 0x29, 0x82, - 0x2b, 0x98, 0xc6, 0x4a, 0x5b, 0xf0, 0x35, 0xe1, 0xd1, 0x16, 0x7c, 0xc3, 0xde, 0x48, 0x5b, 0xf0, - 0x4d, 0x33, 0x87, 0xb6, 0xe0, 0x92, 0x03, 0xa6, 0x2d, 0xb8, 0xc2, 0x03, 0xb1, 0x02, 0xd9, 0x82, - 0x6d, 0xa5, 0x45, 0x7c, 0x57, 0x00, 0x5f, 0x70, 0x17, 0x38, 0xc4, 0x43, 0xa9, 0x2f, 0x47, 0x0b, - 0x73, 0x69, 0x0c, 0x2e, 0xea, 0x5a, 0xd0, 0x18, 0x5c, 0xba, 0x6b, 0x51, 0xa2, 0x67, 0xb1, 0x66, - 0x7a, 0x34, 0x9d, 0x62, 0x34, 0x06, 0x97, 0x9e, 0x62, 0x9c, 0x2f, 0xb8, 0x86, 0x30, 0x8a, 0x1f, - 0x1d, 0xad, 0xc1, 0xc2, 0x96, 0x71, 0x4f, 0xde, 0x1a, 0xa9, 0xbb, 0xb2, 0x8b, 0x6f, 0x0c, 0x66, - 0x91, 0xd2, 0x16, 0x7c, 0x4d, 0x78, 0xb4, 0x05, 0xdf, 0xb0, 0x2f, 0xd2, 0x16, 0x7c, 0xd3, 0xcc, - 0xa1, 0x2d, 0xb8, 0xe4, 0x80, 0x69, 0x0b, 0xae, 0xf0, 0x30, 0xac, 0x48, 0xb6, 0x20, 0xdc, 0xb1, - 0x5f, 0x2f, 0xc9, 0x38, 0xc8, 0x31, 0x60, 0x84, 0xda, 0xd7, 0xb4, 0x61, 0x18, 0x0d, 0x47, 0x9e, - 0xa2, 0x8f, 0x0f, 0xb5, 0x59, 0xa4, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, - 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x26, 0xc5, 0x74, 0x1b, 0x46, 0x22, 0x36, 0xaa, 0x08, - 0x4c, 0x3b, 0x09, 0x94, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, - 0x2d, 0x91, 0x96, 0x48, 0xcb, 0xa4, 0x98, 0x6e, 0x43, 0x13, 0x0b, 0x9d, 0x28, 0xa3, 0x6e, 0x0a, - 0xb0, 0x2e, 0xe9, 0x49, 0xac, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, - 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x46, 0x04, 0x9a, 0xa2, 0x5e, 0x5d, 0xeb, 0xd0, 0x08, 0xa3, - 0x42, 0xcc, 0x05, 0x50, 0x5e, 0xd2, 0xf9, 0x2e, 0xaf, 0x45, 0x34, 0x3e, 0x80, 0x32, 0x08, 0x23, - 0xa9, 0x3b, 0x23, 0x50, 0xf4, 0xb5, 0x34, 0x3f, 0xc3, 0xf8, 0xca, 0x57, 0x3a, 0x31, 0x42, 0x77, - 0x64, 0xf0, 0xfc, 0x85, 0x24, 0xf7, 0x4a, 0x10, 0xc5, 0xa1, 0x09, 0x3b, 0x61, 0x3f, 0xc9, 0xae, - 0x82, 0xf6, 0x65, 0x14, 0xc4, 0xaa, 0x1d, 0x88, 0x9e, 0xf2, 0x13, 0xd1, 0x53, 0x49, 0x76, 0x15, - 0xa8, 0xe8, 0xa6, 0xec, 0x27, 0xb1, 0x91, 0x7e, 0x14, 0xf6, 0x55, 0xe7, 0x2e, 0xd0, 0x52, 0x5d, - 0x7e, 0x6f, 0x87, 0x71, 0x92, 0x5d, 0x05, 0xa2, 0xfb, 0x63, 0xa4, 0x56, 0xe1, 0xc0, 0xf8, 0x51, - 0x2c, 0x83, 0x38, 0x1c, 0x18, 0x99, 0xa4, 0xdf, 0x82, 0x81, 0xbe, 0xd2, 0xe1, 0x4f, 0xed, 0x0b, - 0x63, 0x62, 0xd5, 0x1e, 0xfd, 0x20, 0xf7, 0x52, 0x7a, 0xa2, 0x26, 0xcf, 0xd1, 0x44, 0x8e, 0x04, - 0xe5, 0x5c, 0xfd, 0xff, 0xca, 0x3b, 0xc4, 0x8d, 0x71, 0xbd, 0x43, 0x95, 0x98, 0xba, 0x31, 0x60, - 0x87, 0xfe, 0x7f, 0x53, 0x7a, 0xbf, 0x2f, 0x87, 0x54, 0x99, 0x78, 0x9f, 0x37, 0xf4, 0xa0, 0xdf, - 0x07, 0x3a, 0x94, 0xf5, 0x9b, 0xb8, 0xc5, 0x0d, 0xae, 0x11, 0x77, 0x65, 0x2c, 0xbb, 0x5f, 0xee, - 0xc6, 0xa1, 0x31, 0x09, 0xf1, 0x15, 0x73, 0xf5, 0x95, 0xd2, 0x83, 0x3a, 0x53, 0x39, 0x1e, 0x74, - 0x8c, 0x1e, 0x8f, 0x1a, 0x8e, 0xd2, 0xbb, 0x77, 0x30, 0xbe, 0x79, 0xad, 0xe3, 0xf1, 0x2d, 0x6b, - 0x7d, 0xb9, 0x8c, 0x5a, 0x4d, 0xd5, 0x6e, 0xd5, 0x7b, 0xea, 0x44, 0xf4, 0x54, 0xeb, 0x20, 0xba, - 0x29, 0x9f, 0xc4, 0x46, 0x1e, 0x8f, 0xee, 0x52, 0xeb, 0x68, 0x7c, 0x6f, 0x5a, 0xf5, 0xee, 0x8f, - 0xa6, 0x6a, 0x37, 0x06, 0xe6, 0x38, 0x96, 0xad, 0xe6, 0xf0, 0x8e, 0xb4, 0xce, 0xd2, 0x3f, 0xbf, - 0x9e, 0xfd, 0xf5, 0xef, 0xa8, 0xc7, 0xee, 0x23, 0x70, 0x5c, 0x84, 0xd0, 0x8a, 0xcf, 0xaa, 0x15, - 0x1d, 0xb7, 0x49, 0xe6, 0xae, 0x6b, 0xbb, 0xf9, 0x64, 0x47, 0xc9, 0x34, 0xc1, 0xe8, 0x61, 0xaf, - 0xf5, 0x55, 0x77, 0x43, 0xea, 0x6e, 0x14, 0x2a, 0x6d, 0x36, 0x3a, 0x61, 0x3f, 0x8c, 0x1d, 0xa9, - 0x0c, 0x06, 0x43, 0x43, 0x31, 0x33, 0x14, 0x23, 0x63, 0x30, 0xb1, 0xab, 0x8c, 0x01, 0x91, 0x9d, - 0x42, 0xcb, 0x8d, 0x43, 0x7c, 0x5d, 0x3e, 0xae, 0xba, 0x11, 0x4e, 0xfb, 0xb2, 0x65, 0xf7, 0x13, - 0x2d, 0xa7, 0xbb, 0xeb, 0x34, 0x2f, 0x68, 0x7a, 0xdb, 0xed, 0xfb, 0xf6, 0x7a, 0xa0, 0x9d, 0x4f, - 0xb2, 0xd4, 0xc7, 0x5d, 0xf5, 0xed, 0xa2, 0xf5, 0x69, 0x8b, 0x2a, 0xb5, 0x4c, 0x55, 0xb2, 0x93, - 0x93, 0xcb, 0xcf, 0x10, 0x0b, 0xd9, 0xe1, 0x4d, 0xba, 0x82, 0x2f, 0xba, 0xdd, 0x58, 0x26, 0x89, - 0xb5, 0xfc, 0xc8, 0x9e, 0xba, 0xe7, 0x22, 0xb0, 0x54, 0x13, 0xec, 0xce, 0x88, 0xb3, 0x3e, 0xc3, - 0xcd, 0xc5, 0x8c, 0x35, 0xb7, 0x33, 0xd0, 0x5c, 0xcd, 0x28, 0x73, 0x3e, 0x43, 0xcc, 0xf9, 0x8c, - 0x2f, 0xe7, 0x33, 0xb8, 0x56, 0x8b, 0x56, 0xac, 0xcf, 0x98, 0xca, 0xf2, 0xb6, 0x2f, 0x45, 0x2f, - 0x96, 0x3d, 0x9b, 0x49, 0x3b, 0x99, 0xd1, 0x54, 0xb3, 0xf8, 0x99, 0xc7, 0x63, 0x20, 0xfb, 0xf8, - 0x31, 0x9d, 0x80, 0x11, 0xe4, 0x34, 0x88, 0x04, 0x31, 0x07, 0xc8, 0x09, 0x23, 0xed, 0x63, 0x43, - 0xfa, 0xb1, 0x76, 0x59, 0xa1, 0x44, 0x56, 0x20, 0x2b, 0x90, 0x15, 0xc8, 0x0a, 0x38, 0xac, 0xb0, - 0xa7, 0xec, 0x3e, 0x34, 0x72, 0x37, 0x60, 0x44, 0x19, 0x38, 0x3a, 0x1a, 0x40, 0x3a, 0x13, 0x07, - 0x97, 0x22, 0x81, 0x21, 0x16, 0xae, 0x45, 0x03, 0x46, 0x3c, 0x60, 0x44, 0x04, 0x46, 0x4c, 0xec, - 0x8a, 0x8a, 0x65, 0x71, 0x71, 0x37, 0x20, 0xcd, 0xe5, 0xbd, 0x8a, 0x1c, 0x55, 0xf9, 0x29, 0xfc, - 0x77, 0x70, 0x1e, 0xd0, 0xe4, 0xde, 0xbb, 0x39, 0xe5, 0xc7, 0xe1, 0xd3, 0xfe, 0xc7, 0x96, 0xbf, - 0x29, 0x3b, 0x6c, 0xfb, 0x5c, 0x1f, 0xf8, 0xe4, 0x30, 0x86, 0x63, 0x61, 0x8c, 0x8c, 0xb5, 0xf3, - 0x43, 0x9f, 0xbc, 0xff, 0xbd, 0x7f, 0x7f, 0xbe, 0xe5, 0xef, 0x5e, 0xdc, 0x9f, 0x97, 0xfc, 0xdd, - 0x8b, 0xf4, 0xb2, 0x34, 0xfa, 0x96, 0x5e, 0x6f, 0x9f, 0x6f, 0xf9, 0xe5, 0xc9, 0x75, 0xe5, 0x7c, - 0xcb, 0xaf, 0x5c, 0x6c, 0xfe, 0xfd, 0xf7, 0xc7, 0xcd, 0x5f, 0x3b, 0x0f, 0xf3, 0xbf, 0xf1, 0x3f, - 0xee, 0x26, 0xe6, 0x5d, 0xac, 0xd3, 0x44, 0x1f, 0x8c, 0x64, 0xaf, 0x32, 0xd9, 0x31, 0x93, 0x5d, - 0xf8, 0xbd, 0xba, 0xff, 0xf5, 0xe2, 0x57, 0xe9, 0x43, 0xf9, 0xe1, 0xf3, 0xe6, 0xaf, 0xda, 0xc3, - 0xf3, 0x17, 0xef, 0x67, 0xfd, 0x5a, 0xe9, 0x43, 0xed, 0xe1, 0xf3, 0x0b, 0x3f, 0xa9, 0x3e, 0x7c, - 0xfe, 0xcd, 0x7f, 0xa3, 0xf2, 0xf0, 0x3e, 0xf7, 0xab, 0xc3, 0xd7, 0xb7, 0x5f, 0x7a, 0x43, 0xf9, - 0x85, 0x37, 0xec, 0xbc, 0xf4, 0x86, 0x9d, 0x17, 0xde, 0xf0, 0x62, 0x48, 0xdb, 0x2f, 0xbc, 0xa1, - 0xf2, 0x70, 0x9f, 0xfb, 0xfd, 0xf7, 0xb3, 0x7f, 0xb5, 0xfa, 0xb0, 0x79, 0xff, 0xd2, 0xcf, 0x6a, - 0x0f, 0xf7, 0x9f, 0x37, 0xd7, 0xb0, 0xf4, 0xbd, 0x5b, 0xed, 0xbf, 0x93, 0x13, 0x78, 0x5e, 0x39, - 0xce, 0xe3, 0x04, 0x9e, 0x99, 0x13, 0x78, 0x2c, 0xae, 0x1f, 0xb6, 0xf0, 0xb4, 0xea, 0x5d, 0x81, - 0xbb, 0xea, 0x64, 0x61, 0x81, 0x65, 0x57, 0xd2, 0xee, 0xd2, 0x01, 0x27, 0x4b, 0x04, 0x9c, 0x2c, - 0x05, 0xb0, 0x3b, 0xe5, 0x7f, 0xd9, 0x7d, 0xd3, 0x72, 0xf9, 0x44, 0x2f, 0x9b, 0x9e, 0x95, 0xc7, - 0xe2, 0x6f, 0x39, 0xbf, 0x71, 0xb9, 0x25, 0x7e, 0x79, 0x85, 0x77, 0x39, 0xff, 0xf2, 0x92, 0xd2, - 0xc5, 0x56, 0x9a, 0x80, 0xa6, 0xc7, 0x72, 0xfa, 0xd8, 0xdb, 0xf7, 0x80, 0xb7, 0xfd, 0x17, 0xdf, - 0xb8, 0x2f, 0x2d, 0xbb, 0x0f, 0x41, 0xf5, 0x9d, 0x25, 0xd4, 0xd1, 0xb7, 0xa9, 0x9b, 0x6f, 0xdb, - 0x95, 0xdf, 0xae, 0xc3, 0xbd, 0x61, 0x67, 0x4b, 0x8d, 0xf1, 0x81, 0x56, 0x1d, 0x91, 0x98, 0x37, - 0xef, 0x6a, 0xd3, 0xf6, 0xfb, 0xe4, 0x53, 0xde, 0x38, 0x55, 0x96, 0x33, 0xab, 0x6a, 0x69, 0x0f, - 0xc8, 0x97, 0xf9, 0x00, 0xdc, 0xce, 0x03, 0xee, 0x65, 0x3f, 0xc0, 0xb6, 0xf6, 0x80, 0xda, 0xda, - 0x03, 0x68, 0x6b, 0x0f, 0x98, 0xb1, 0x45, 0x6d, 0x59, 0xb3, 0x8c, 0xbc, 0x7e, 0x7a, 0x4f, 0x97, - 0xd7, 0x23, 0xb3, 0x99, 0xcd, 0xe3, 0x0f, 0x5a, 0x52, 0x37, 0x59, 0xee, 0x04, 0xd1, 0xc7, 0x92, - 0xb6, 0xbd, 0xa4, 0x0f, 0xb0, 0x30, 0xb7, 0xc7, 0xee, 0x1c, 0x1e, 0x5b, 0x73, 0x75, 0xac, 0xcf, - 0xc9, 0xb1, 0x3e, 0xf7, 0xc6, 0xfa, 0x1c, 0x9b, 0x62, 0x8d, 0x19, 0x97, 0x3d, 0x01, 0xd3, 0x1b, - 0xaf, 0x33, 0x5e, 0x7a, 0x47, 0x9e, 0xa4, 0xe7, 0xf8, 0xf3, 0x96, 0xed, 0x96, 0x5a, 0x99, 0x51, - 0x6f, 0x6d, 0xb2, 0xa4, 0xcd, 0xc9, 0x91, 0x6e, 0x26, 0x43, 0xda, 0x9e, 0xfc, 0xe8, 0x6c, 0xb2, - 0xa3, 0xb3, 0xc9, 0x8d, 0xce, 0x26, 0x33, 0x16, 0xfb, 0xb9, 0x8b, 0xad, 0x19, 0xf0, 0x69, 0x61, - 0xb4, 0xbf, 0xd0, 0xc9, 0xe6, 0xfe, 0x31, 0x5c, 0xe8, 0xb4, 0x2a, 0xe5, 0xda, 0x55, 0xd9, 0x76, - 0x5e, 0xbe, 0x9d, 0x97, 0x71, 0xe7, 0xe5, 0xdc, 0x4e, 0x59, 0xb7, 0x54, 0xde, 0xad, 0x97, 0xf9, - 0xec, 0x03, 0xc3, 0x58, 0x5d, 0x2a, 0xed, 0x6e, 0x79, 0xd3, 0xf8, 0xf3, 0xb9, 0xa8, 0x69, 0xd5, - 0x04, 0x01, 0x43, 0x18, 0x5c, 0x0b, 0x04, 0x8c, 0x50, 0xc0, 0x08, 0x06, 0x8c, 0x70, 0xd8, 0x15, - 0x10, 0xcb, 0x42, 0x92, 0xdd, 0x65, 0xf7, 0x8b, 0x9a, 0xec, 0xef, 0xb6, 0x91, 0xe3, 0xfc, 0x9a, - 0x83, 0xcf, 0xce, 0xed, 0xbe, 0x31, 0x56, 0xba, 0x55, 0x9d, 0x88, 0x6b, 0x11, 0xf6, 0xc7, 0xbb, - 0x1a, 0xbb, 0x83, 0x96, 0x49, 0x00, 0xa4, 0x16, 0x52, 0x0b, 0xa9, 0x85, 0xd4, 0x42, 0x6a, 0x21, - 0xb5, 0xac, 0x28, 0xb5, 0x4c, 0xa4, 0x8e, 0xd8, 0xb2, 0x38, 0xb6, 0xb8, 0x91, 0xb3, 0x47, 0x6a, - 0x71, 0x62, 0x50, 0x12, 0x5a, 0x08, 0x2d, 0x84, 0x16, 0x42, 0x0b, 0xa1, 0x85, 0xd0, 0x62, 0x0d, - 0x5a, 0xd2, 0xb4, 0x27, 0xb3, 0x2c, 0x7c, 0x6b, 0xed, 0x6e, 0x7b, 0x9a, 0xeb, 0xd0, 0x36, 0xb7, - 0x3f, 0xcd, 0x75, 0x65, 0x12, 0x0b, 0x89, 0x85, 0xc4, 0x42, 0x62, 0x59, 0x5d, 0x62, 0xb1, 0x3d, - 0xdb, 0x20, 0xfb, 0xe0, 0xd1, 0xf1, 0xde, 0x4a, 0x77, 0xe5, 0xad, 0xbb, 0xa4, 0x9b, 0x94, 0x9e, - 0x27, 0xb1, 0xb8, 0x3a, 0xac, 0xd1, 0xc9, 0x10, 0xd9, 0xb9, 0xf0, 0x20, 0x08, 0x10, 0x96, 0x10, - 0xa1, 0x08, 0x12, 0x9c, 0x30, 0xc1, 0x09, 0x14, 0x9c, 0x50, 0xb9, 0x11, 0x2c, 0x47, 0xc2, 0xe5, - 0x7e, 0xc8, 0x0d, 0x34, 0xf4, 0x46, 0x18, 0x82, 0xcf, 0x1a, 0x8a, 0xcf, 0xfc, 0x6f, 0x24, 0xb6, - 0x89, 0x34, 0x49, 0x76, 0x35, 0x1e, 0xb2, 0xa7, 0x02, 0xbc, 0x2e, 0x47, 0x6c, 0x3a, 0x18, 0xe3, - 0x74, 0xc2, 0xeb, 0xeb, 0x81, 0x56, 0xe6, 0x0e, 0x85, 0xbb, 0x9e, 0x07, 0x44, 0xf8, 0x22, 0x7c, - 0x11, 0xbe, 0x08, 0x5f, 0x84, 0x2f, 0xc2, 0x17, 0xe1, 0x6b, 0x19, 0xf0, 0x35, 0x51, 0x5c, 0x25, - 0x93, 0xec, 0xfa, 0x8e, 0xfc, 0x65, 0xa7, 0x71, 0xe4, 0xad, 0xf1, 0xe1, 0x18, 0x6c, 0x56, 0x50, - 0xe4, 0x30, 0x72, 0x18, 0x39, 0x8c, 0x1c, 0x46, 0x0e, 0x23, 0x87, 0x91, 0xc3, 0x96, 0xc1, 0x61, - 0x4f, 0x55, 0x77, 0xc8, 0x62, 0x53, 0x2a, 0x4c, 0x1e, 0xb3, 0xd3, 0x48, 0x4a, 0xdf, 0x88, 0xbe, - 0xea, 0xfa, 0xb1, 0x14, 0x49, 0xa8, 0xdd, 0xa3, 0xd8, 0xb3, 0x78, 0x48, 0x61, 0xa4, 0x30, 0x52, - 0x18, 0x29, 0x8c, 0x14, 0x46, 0x0a, 0x9b, 0x57, 0x49, 0xba, 0x52, 0x1b, 0x65, 0xee, 0x40, 0x48, - 0xac, 0xe2, 0x30, 0x86, 0x83, 0xf1, 0xad, 0xf8, 0x22, 0x12, 0x80, 0x12, 0x36, 0x69, 0xa0, 0x83, - 0xa3, 0xbf, 0xea, 0x87, 0x07, 0x7b, 0xad, 0x66, 0xe3, 0xec, 0x74, 0xbf, 0xd5, 0xdc, 0xaf, 0x9f, - 0x34, 0x8e, 0x5c, 0x57, 0xb3, 0xbf, 0x44, 0x7f, 0x30, 0xda, 0x7f, 0xd1, 0xed, 0x31, 0x6c, 0x1b, - 0x4e, 0x4f, 0xe8, 0xfb, 0xc7, 0xd6, 0x6a, 0x34, 0x0f, 0xfe, 0x3c, 0x38, 0xaa, 0x9f, 0x36, 0x9a, - 0x9e, 0xf3, 0x00, 0x1f, 0x3e, 0xb0, 0x95, 0x66, 0xb7, 0xd2, 0x1f, 0x87, 0x67, 0x27, 0xa7, 0xfb, - 0xcd, 0xd6, 0x61, 0xa3, 0x71, 0xcc, 0x76, 0xc2, 0x6d, 0xa7, 0xfa, 0x09, 0x9b, 0x08, 0x3d, 0x95, - 0x1a, 0x47, 0x5f, 0xf7, 0xf7, 0x00, 0x5a, 0xc8, 0x69, 0x04, 0x17, 0xeb, 0xc6, 0xcf, 0x6b, 0xe1, - 0xfe, 0xf4, 0x45, 0x62, 0xfc, 0xeb, 0xb0, 0xab, 0x7a, 0x4a, 0x76, 0xdd, 0x9b, 0x3f, 0xd3, 0xe1, - 0xd0, 0xfb, 0xa1, 0xf7, 0x43, 0xef, 0x87, 0xde, 0x0f, 0xbd, 0x1f, 0x7a, 0x3f, 0x73, 0xd6, 0x0d, - 0xa3, 0xae, 0xa5, 0x51, 0x9d, 0xab, 0xa4, 0x5a, 0x06, 0xf0, 0x7e, 0x5c, 0x1e, 0x2c, 0x7f, 0xa6, - 0xd5, 0xe8, 0x20, 0x55, 0x4f, 0x0b, 0x1d, 0x26, 0xb2, 0x13, 0xea, 0xae, 0xd3, 0xc3, 0xf6, 0x9b, - 0x42, 0x5f, 0x4a, 0xe7, 0xfe, 0x8a, 0xfb, 0xa1, 0x86, 0xf7, 0x4d, 0x69, 0xe7, 0x8a, 0x02, 0xc2, - 0x3c, 0xb9, 0x70, 0x46, 0x2e, 0x1c, 0x50, 0x3c, 0x5f, 0x63, 0xd1, 0x31, 0x2a, 0xd4, 0x7b, 0xea, - 0x32, 0xcd, 0xa6, 0x2d, 0x8e, 0xd7, 0xd3, 0xa3, 0x9a, 0xd9, 0x85, 0xff, 0xa5, 0x0b, 0x97, 0x3e, - 0x95, 0xcb, 0xd5, 0x5a, 0xb9, 0xbc, 0x55, 0xdb, 0xa9, 0x6d, 0xed, 0x56, 0x2a, 0xa5, 0xaa, 0xcb, - 0x27, 0x01, 0xf0, 0xbd, 0xfa, 0xdd, 0x7a, 0x7e, 0xfa, 0x05, 0x3d, 0x8e, 0xa5, 0x75, 0x73, 0x47, - 0x5b, 0xfb, 0xe7, 0xc7, 0xb2, 0x2e, 0xb6, 0xf8, 0xa7, 0xab, 0x41, 0x57, 0x83, 0xae, 0x06, 0x5d, - 0x0d, 0xba, 0x1a, 0x2b, 0xe0, 0x6a, 0x0c, 0xb4, 0x72, 0x36, 0x25, 0xf2, 0xa9, 0x88, 0x94, 0x76, - 0x1d, 0xc6, 0x30, 0x6e, 0x8e, 0xb5, 0xf7, 0x0f, 0x1e, 0xcf, 0x6c, 0xf7, 0x45, 0xb7, 0x1b, 0xcb, - 0x24, 0xf1, 0x00, 0x86, 0x84, 0x00, 0x3d, 0x04, 0xab, 0xa7, 0xe0, 0xf4, 0x98, 0x19, 0x3d, 0xe7, - 0xa6, 0x0c, 0xd4, 0x77, 0x72, 0x7d, 0xe8, 0x13, 0x50, 0x4c, 0xc7, 0xc2, 0x18, 0x19, 0x6b, 0x98, - 0xee, 0x94, 0x05, 0xf6, 0xbf, 0xf7, 0xef, 0xcf, 0xb7, 0xfc, 0xdd, 0x8b, 0xfb, 0xf3, 0x92, 0xbf, - 0x7b, 0x91, 0x5e, 0x96, 0x46, 0xdf, 0xd2, 0xeb, 0xed, 0xf3, 0x2d, 0xbf, 0x3c, 0xb9, 0xae, 0x9c, - 0x6f, 0xf9, 0x95, 0x8b, 0xcd, 0xbf, 0xff, 0xfe, 0xb8, 0xf9, 0x6b, 0xe7, 0x61, 0xfe, 0x37, 0xfe, - 0xc7, 0x83, 0xf9, 0xe3, 0x2f, 0x20, 0x22, 0x79, 0xf8, 0xc0, 0xe2, 0xf2, 0x62, 0x71, 0xa9, 0xb2, - 0xb8, 0xac, 0x46, 0x71, 0x11, 0x7e, 0xaf, 0xee, 0x7f, 0xbd, 0xf8, 0x55, 0xfa, 0x50, 0x7e, 0xf8, - 0xbc, 0xf9, 0xab, 0xf6, 0xf0, 0xfc, 0xc5, 0xfb, 0x59, 0xbf, 0x56, 0xfa, 0x50, 0x7b, 0xf8, 0xfc, - 0xc2, 0x4f, 0xaa, 0x0f, 0x9f, 0x7f, 0xf3, 0xdf, 0xa8, 0x3c, 0xbc, 0xcf, 0xfd, 0xea, 0xf0, 0xf5, - 0xed, 0x97, 0xde, 0x50, 0x7e, 0xe1, 0x0d, 0x3b, 0x2f, 0xbd, 0x61, 0xe7, 0x85, 0x37, 0xbc, 0x18, - 0xd2, 0xf6, 0x0b, 0x6f, 0xa8, 0x3c, 0xdc, 0xe7, 0x7e, 0xff, 0xfd, 0xec, 0x5f, 0xad, 0x3e, 0x6c, - 0xde, 0xbf, 0xf4, 0xb3, 0xda, 0xc3, 0xfd, 0xe7, 0x4d, 0x96, 0x5a, 0x8c, 0x41, 0x27, 0xce, 0x7d, - 0x70, 0x2c, 0x35, 0x48, 0x23, 0x1e, 0x88, 0x85, 0x1d, 0x39, 0x45, 0x01, 0x78, 0xac, 0x83, 0xb5, - 0xd0, 0x23, 0xd7, 0x70, 0x07, 0x47, 0x27, 0xa7, 0xf5, 0xc3, 0xc3, 0xd6, 0x71, 0xb3, 0x71, 0xda, - 0xf8, 0xa3, 0x71, 0xd8, 0x3a, 0xfd, 0xbf, 0xe3, 0x7d, 0x0f, 0xe9, 0x81, 0x5d, 0x02, 0xa5, 0xc1, - 0xbf, 0xb0, 0x68, 0x20, 0x6b, 0xc6, 0x3f, 0xbf, 0x1d, 0xe3, 0xa8, 0xd3, 0xc3, 0x07, 0xb6, 0xd7, - 0x3f, 0xb7, 0xd7, 0x61, 0xe3, 0x8f, 0xfa, 0x61, 0xab, 0xfe, 0xe7, 0x9f, 0xcd, 0xfd, 0x3f, 0xeb, - 0xa7, 0xfb, 0x6c, 0xba, 0x02, 0xa5, 0xda, 0xc9, 0xc1, 0x09, 0xdb, 0xab, 0x38, 0xed, 0xb5, 0x77, - 0xd0, 0xdc, 0xff, 0xe3, 0xf4, 0xf0, 0xff, 0x5a, 0x7f, 0x34, 0x8e, 0x8e, 0xf6, 0xff, 0x38, 0x45, - 0x58, 0x37, 0xc2, 0xd6, 0xfb, 0xdd, 0xd6, 0x3b, 0x3e, 0xf8, 0xc6, 0xe6, 0x2a, 0x4e, 0x73, 0x35, - 0x4e, 0x8e, 0xbf, 0xee, 0xb0, 0xc1, 0x8a, 0xd3, 0x60, 0x27, 0xa7, 0xf5, 0xd3, 0x83, 0x3f, 0xd8, - 0x62, 0xc5, 0x4a, 0x31, 0xb6, 0x57, 0x71, 0xda, 0xeb, 0xcb, 0x9f, 0x48, 0x23, 0x33, 0x88, 0x48, - 0x2e, 0x38, 0xa9, 0x75, 0xad, 0xee, 0xfc, 0x7a, 0x4c, 0x6a, 0x9d, 0x9c, 0x47, 0xed, 0x7c, 0x56, - 0xeb, 0x24, 0x10, 0x47, 0x93, 0xb3, 0xf6, 0x64, 0x4f, 0x0c, 0xfa, 0xa3, 0x99, 0x71, 0x5b, 0x9c, - 0x5a, 0xcb, 0xa9, 0xb5, 0x9c, 0x5a, 0x3b, 0xd5, 0x33, 0x39, 0xb5, 0xf6, 0x5f, 0x02, 0xe2, 0xd4, - 0xda, 0x0d, 0x4e, 0xad, 0xfd, 0xbc, 0xe1, 0x0d, 0x94, 0x36, 0x3b, 0xdb, 0x00, 0x73, 0x6b, 0x6b, - 0x5c, 0x9b, 0xcb, 0xb5, 0xb9, 0x40, 0x78, 0x91, 0x0b, 0x87, 0x6b, 0x73, 0x8b, 0xe0, 0x53, 0x70, - 0x6d, 0xee, 0x6f, 0x74, 0xe1, 0xf2, 0xf6, 0x6e, 0x79, 0xb7, 0x5a, 0xdb, 0xde, 0xe5, 0x8a, 0x5c, - 0x9a, 0x17, 0x34, 0x2f, 0xec, 0x99, 0x17, 0x6e, 0x07, 0x8c, 0x8f, 0xde, 0x85, 0xd3, 0x43, 0xe6, - 0x69, 0x1b, 0xd0, 0x36, 0xa0, 0x6d, 0x40, 0xdb, 0x80, 0xb6, 0x41, 0x71, 0x6d, 0x83, 0xd1, 0x12, - 0x3a, 0xe7, 0x39, 0x82, 0xb0, 0xa8, 0x05, 0x66, 0x11, 0x8b, 0xdd, 0x15, 0x71, 0xc1, 0xf8, 0xc3, - 0x36, 0xef, 0xdf, 0x9f, 0x97, 0xfc, 0xed, 0x8b, 0xc9, 0xff, 0xec, 0x9c, 0x6f, 0xf9, 0xdb, 0x17, - 0x4e, 0x97, 0x71, 0x90, 0x60, 0x97, 0xd7, 0xc7, 0xc6, 0x67, 0x14, 0x85, 0x03, 0x23, 0xdd, 0x63, - 0xec, 0xd3, 0x60, 0xc8, 0xb2, 0x64, 0x59, 0xb2, 0x2c, 0x59, 0x96, 0x2c, 0x4b, 0x96, 0x9d, 0xb3, - 0x6e, 0xb4, 0xc3, 0xb0, 0x2f, 0x05, 0xc4, 0xfe, 0x32, 0xa5, 0x75, 0x41, 0x97, 0x77, 0x2b, 0xdc, - 0xc5, 0xbd, 0xba, 0xd6, 0xa1, 0x11, 0x46, 0x39, 0x3a, 0x56, 0xd2, 0x4b, 0x3a, 0xdf, 0xe5, 0xb5, - 0x88, 0xc6, 0xa7, 0x90, 0x06, 0x61, 0x24, 0x75, 0x67, 0x04, 0x0a, 0xbe, 0x96, 0xe6, 0x67, 0x18, - 0x5f, 0xf9, 0x4a, 0x27, 0x46, 0xe8, 0x8e, 0x0c, 0x9e, 0xbf, 0x90, 0xe4, 0x5e, 0x09, 0xa2, 0x38, - 0x34, 0x61, 0x27, 0xec, 0x27, 0xd9, 0x55, 0xd0, 0xbe, 0x8c, 0x82, 0x58, 0xb5, 0x03, 0xd1, 0x53, - 0x7e, 0x22, 0x7a, 0x2a, 0xc9, 0xae, 0x82, 0xd1, 0xc0, 0x70, 0xa0, 0x55, 0x47, 0x24, 0x26, 0xe8, - 0xa7, 0x65, 0x35, 0x18, 0x21, 0x5a, 0x92, 0x7e, 0x4b, 0xcf, 0x37, 0xb5, 0x5b, 0x65, 0xed, 0x75, - 0x37, 0x8b, 0x5d, 0xcd, 0x1b, 0xe8, 0x2b, 0x1d, 0xfe, 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0xe1, - 0x1d, 0xb6, 0xde, 0xdd, 0x9e, 0xec, 0xd0, 0x95, 0x8b, 0xc5, 0x72, 0xd2, 0x4d, 0x4a, 0xa8, 0xe5, - 0x8f, 0x75, 0x45, 0xe0, 0x2e, 0xc9, 0x1b, 0x83, 0xb8, 0x5d, 0x93, 0x36, 0x0c, 0x61, 0xc3, 0x90, - 0x35, 0x0c, 0x51, 0xaf, 0x36, 0x5e, 0xec, 0xa9, 0xd8, 0x4d, 0xda, 0xe7, 0x8a, 0xbc, 0x7b, 0x0b, - 0x28, 0x1f, 0x92, 0x5b, 0x23, 0xa8, 0x44, 0x23, 0x88, 0x46, 0x10, 0x8d, 0x20, 0x1a, 0x41, 0x34, - 0x82, 0xd0, 0xe5, 0x2c, 0x0b, 0x60, 0xa8, 0x1d, 0xbe, 0x71, 0x6d, 0x47, 0x4d, 0x55, 0xb0, 0xc7, - 0x90, 0x1c, 0xa7, 0x06, 0xc6, 0x04, 0x46, 0xe7, 0xf2, 0x86, 0x24, 0x73, 0x98, 0x72, 0x87, 0x26, - 0x7b, 0xb0, 0xf2, 0x07, 0x2b, 0x83, 0xb0, 0x72, 0xe8, 0x56, 0x16, 0x1d, 0xcb, 0x63, 0xd6, 0x2a, - 0xa7, 0x08, 0x02, 0x35, 0x55, 0x77, 0xfa, 0x52, 0xf4, 0xc0, 0xb6, 0x22, 0xac, 0x01, 0xc4, 0x72, - 0x3c, 0xf6, 0xdd, 0x3f, 0x7e, 0x4c, 0xad, 0xee, 0xe0, 0x51, 0xcc, 0xd7, 0x74, 0x4a, 0xb9, 0xc3, - 0xd4, 0xf1, 0xd2, 0xa7, 0x0d, 0x30, 0x60, 0x97, 0x86, 0x83, 0x01, 0x75, 0x25, 0x42, 0x1d, 0xa1, - 0x8e, 0x50, 0x47, 0xa8, 0x23, 0xd4, 0xb9, 0x6a, 0x15, 0xd7, 0xde, 0xc7, 0xb4, 0x07, 0xd2, 0x97, - 0x1a, 0x6f, 0xef, 0xe4, 0x2c, 0xb2, 0x0f, 0x5c, 0xd2, 0x09, 0x2c, 0xa2, 0x88, 0x62, 0x8a, 0x2d, - 0xaa, 0xa8, 0xe2, 0x0a, 0x2f, 0xb2, 0xf0, 0x62, 0x0b, 0x2f, 0xba, 0x18, 0xe2, 0x0b, 0x22, 0xc2, - 0x78, 0x0e, 0x4b, 0xae, 0x6e, 0x0d, 0x94, 0x36, 0xa5, 0x2a, 0xe0, 0x69, 0x42, 0x55, 0xa0, 0x90, - 0x30, 0x36, 0x71, 0x79, 0xfe, 0x85, 0x55, 0xd3, 0x37, 0xd0, 0x36, 0x79, 0x01, 0xc7, 0xab, 0x5c, - 0x78, 0x60, 0x9b, 0xc0, 0xe4, 0xe2, 0x03, 0xdc, 0x48, 0x03, 0xb4, 0xdc, 0x4f, 0xa7, 0x84, 0xb8, - 0x65, 0x4a, 0x2c, 0x98, 0x12, 0xd5, 0x4a, 0x65, 0xa7, 0xc2, 0xb4, 0x28, 0x36, 0x8b, 0xe1, 0x45, - 0xc3, 0x43, 0xd8, 0x60, 0xca, 0x26, 0xd0, 0x4c, 0x99, 0x1c, 0x22, 0xa3, 0xcc, 0x98, 0x01, 0xad, - 0xda, 0xf4, 0x89, 0xe6, 0xe9, 0x4c, 0xf4, 0x89, 0xe6, 0xea, 0xe9, 0xf4, 0x89, 0x16, 0x0c, 0x90, - 0x3e, 0x51, 0x81, 0x06, 0x0e, 0xe0, 0x3e, 0xd1, 0x27, 0x40, 0x9b, 0xa8, 0x42, 0x9b, 0xe8, 0x5f, - 0xbe, 0x68, 0x13, 0xad, 0xe4, 0x98, 0x98, 0x36, 0x51, 0xd1, 0xab, 0xfd, 0x74, 0x4a, 0xd0, 0x26, - 0x5a, 0x38, 0x25, 0xb6, 0x2b, 0x34, 0x89, 0x56, 0xc0, 0x96, 0xd9, 0xa0, 0x49, 0x04, 0x78, 0x3f, - 0x60, 0x4c, 0xa2, 0x9b, 0x71, 0xb6, 0x23, 0xba, 0x44, 0x69, 0x6c, 0xb4, 0x89, 0x66, 0x85, 0x43, - 0x9b, 0x68, 0x8e, 0xde, 0x44, 0x9b, 0x68, 0xae, 0x9e, 0x4e, 0x9b, 0x68, 0xc1, 0x00, 0x69, 0x13, - 0x15, 0x68, 0xe0, 0x00, 0x6c, 0x13, 0xb5, 0x95, 0x16, 0xf1, 0x1d, 0xa0, 0x4f, 0xb4, 0x0b, 0x14, - 0xd2, 0xa1, 0xd4, 0x97, 0xa3, 0x85, 0x5c, 0x34, 0x8a, 0xfe, 0x6d, 0x54, 0x4c, 0xa3, 0x68, 0xe1, - 0x51, 0x71, 0x89, 0x63, 0xe2, 0x82, 0xd7, 0xfb, 0xe9, 0x94, 0xa0, 0x51, 0xb4, 0x70, 0x4a, 0x70, - 0x3e, 0xd1, 0x8a, 0x98, 0x33, 0x1b, 0xb4, 0x8a, 0x00, 0xef, 0x07, 0x82, 0x55, 0x24, 0x6f, 0x8d, - 0xd4, 0x5d, 0xd9, 0xc5, 0x33, 0x8a, 0xb2, 0xc8, 0x68, 0x13, 0xcd, 0x0a, 0x87, 0x36, 0xd1, 0x1c, - 0x7d, 0x89, 0x36, 0xd1, 0x5c, 0x3d, 0x9d, 0x36, 0xd1, 0x82, 0x01, 0xd2, 0x26, 0x2a, 0xd0, 0xb0, - 0x01, 0xd9, 0x26, 0x72, 0x7e, 0x2e, 0xc2, 0x4b, 0x32, 0xe8, 0xe8, 0x9c, 0x04, 0x42, 0xdc, 0xac, - 0x36, 0x09, 0xa3, 0xe1, 0x48, 0x48, 0xf4, 0xf1, 0x20, 0x2e, 0x8b, 0x8c, 0x10, 0x47, 0x88, 0x23, - 0xc4, 0x11, 0xe2, 0x08, 0x71, 0x84, 0x38, 0x42, 0x1c, 0x21, 0x8e, 0x10, 0xf7, 0xbc, 0x4d, 0x22, - 0x11, 0x1b, 0x85, 0xc8, 0x70, 0x93, 0xc0, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, - 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0xcf, 0xdb, 0xc4, 0xc4, 0x42, 0x27, 0xca, 0xa8, - 0x1b, 0xc0, 0x79, 0xf7, 0x4f, 0x62, 0x23, 0xc8, 0x11, 0xe4, 0x08, 0x72, 0x04, 0x39, 0x82, 0x1c, - 0x41, 0x8e, 0x20, 0x47, 0x90, 0x03, 0x03, 0xb9, 0xb5, 0xde, 0x8e, 0xde, 0xf1, 0xc1, 0xf5, 0xb9, - 0x78, 0xb0, 0x0f, 0xb2, 0xcf, 0x9f, 0x79, 0x9e, 0x7f, 0xc9, 0xc5, 0x69, 0xf7, 0x38, 0x7d, 0x7a, - 0xbd, 0x0e, 0xb2, 0xfc, 0xaf, 0xbc, 0x43, 0xd8, 0x89, 0xce, 0x3b, 0x54, 0x89, 0xa9, 0x1b, 0xe3, - 0xf8, 0x54, 0xcd, 0x6f, 0x4a, 0xef, 0xf7, 0xe5, 0x10, 0x9b, 0x12, 0xef, 0xf3, 0x86, 0x1e, 0xf4, - 0xfb, 0x0e, 0x4f, 0x81, 0xfa, 0x26, 0x6e, 0x71, 0x82, 0x69, 0xc4, 0x5d, 0x19, 0xcb, 0xee, 0x97, - 0xbb, 0x71, 0x28, 0x6b, 0x95, 0x24, 0x20, 0x12, 0xb3, 0x02, 0xd2, 0xe2, 0x39, 0x3d, 0x55, 0x2d, - 0x1e, 0x74, 0x8c, 0x1e, 0x73, 0xed, 0x51, 0x7a, 0x3b, 0x0e, 0xc6, 0x77, 0xa3, 0x75, 0x3c, 0xbe, - 0x07, 0xad, 0x2f, 0x97, 0x51, 0xab, 0xa9, 0xda, 0xad, 0x7a, 0x4f, 0x9d, 0x88, 0x9e, 0x6a, 0x1d, - 0x44, 0x37, 0xe5, 0xb3, 0xf4, 0xef, 0x6e, 0x1d, 0x86, 0x9d, 0xe1, 0x8f, 0x9a, 0xc3, 0xbf, 0xb7, - 0x75, 0x96, 0xfe, 0x71, 0xf5, 0xec, 0x6f, 0x7b, 0xb7, 0x1e, 0x72, 0x65, 0xf7, 0x13, 0x2d, 0xe7, - 0xbc, 0xeb, 0x5c, 0x2f, 0x5c, 0x8e, 0xdb, 0xed, 0xf5, 0xf6, 0xfa, 0x9e, 0x9d, 0x4f, 0xb2, 0xd4, - 0xbb, 0x27, 0x98, 0x97, 0x7a, 0x69, 0x1b, 0x61, 0xac, 0x2e, 0x95, 0xde, 0x18, 0x76, 0x32, 0x5f, - 0xd9, 0x5a, 0x2e, 0xe4, 0x06, 0xf1, 0x9c, 0x22, 0x9d, 0x53, 0x84, 0x73, 0x83, 0x6c, 0xb6, 0x3a, - 0xb4, 0xa3, 0x32, 0x8d, 0x5d, 0x9e, 0x2d, 0xd2, 0xd5, 0x5b, 0xd3, 0x94, 0x1d, 0x19, 0x59, 0x7e, - 0x51, 0x5f, 0xee, 0x27, 0x2c, 0x39, 0xbb, 0x6c, 0x67, 0x15, 0x6a, 0x36, 0x2d, 0xb7, 0x33, 0x2e, - 0xaf, 0x8b, 0x2c, 0xb1, 0x7b, 0x58, 0x3a, 0x93, 0xda, 0xea, 0x99, 0xd3, 0x96, 0xce, 0x94, 0x7e, - 0x7c, 0x4e, 0xbe, 0xbd, 0xe4, 0x0f, 0xb2, 0xf8, 0xfc, 0xdb, 0xcd, 0x73, 0x6d, 0xdb, 0xcf, 0xab, - 0x9d, 0x3d, 0x87, 0x76, 0xf6, 0x7c, 0xd9, 0xd9, 0x73, 0x63, 0x0a, 0x67, 0xa1, 0x85, 0xd3, 0xc2, - 0x23, 0xa3, 0x25, 0xea, 0xe6, 0xbb, 0x02, 0xf5, 0x39, 0x5b, 0x7d, 0x0d, 0xae, 0x8f, 0x79, 0x4b, - 0xa5, 0x9b, 0x37, 0x1a, 0xcd, 0x2c, 0x27, 0x05, 0xde, 0xbe, 0x83, 0x2e, 0xa1, 0x73, 0x7a, 0x5a, - 0xaa, 0xcb, 0xef, 0xed, 0x30, 0x4e, 0x96, 0xd6, 0x2f, 0x33, 0xea, 0x78, 0xfc, 0xa8, 0x25, 0x25, - 0xd9, 0x72, 0xd1, 0x70, 0xe9, 0x48, 0x68, 0x03, 0x05, 0xed, 0x22, 0xa0, 0x2d, 0xf4, 0xb3, 0x8e, - 0x7c, 0xd6, 0x51, 0xcf, 0x3a, 0xe2, 0x15, 0x4b, 0x5e, 0xf7, 0xd4, 0x72, 0x1d, 0xea, 0xac, 0x76, - 0xd9, 0x1b, 0x4c, 0x67, 0x9f, 0xb8, 0x62, 0xe3, 0xe9, 0x2d, 0x8e, 0xa7, 0x39, 0x9e, 0xe6, 0x78, - 0x7a, 0x05, 0xc7, 0xd3, 0xcb, 0x2e, 0xc2, 0xd9, 0x07, 0x89, 0xee, 0x8f, 0x51, 0x9b, 0x28, 0xed, - 0x47, 0x61, 0x62, 0xec, 0x65, 0x42, 0x76, 0xba, 0xc7, 0xb3, 0x00, 0x6c, 0x3d, 0x10, 0xb6, 0x52, - 0xaa, 0xad, 0x97, 0x6c, 0x17, 0xa5, 0xdb, 0x6d, 0x09, 0x77, 0x55, 0xca, 0x9d, 0x97, 0x74, 0xe7, - 0xa5, 0xdd, 0x79, 0x89, 0xb7, 0x53, 0xea, 0x2d, 0x95, 0x7c, 0xeb, 0xa5, 0x3f, 0xfb, 0xc0, 0xf1, - 0x33, 0x3f, 0xeb, 0x89, 0x33, 0x29, 0x17, 0xe3, 0xcf, 0xb7, 0xdc, 0x69, 0xed, 0x0a, 0x80, 0x35, - 0xe3, 0x03, 0x49, 0x10, 0x30, 0x84, 0xc1, 0xb5, 0x40, 0xc0, 0x08, 0x05, 0x8c, 0x60, 0xc0, 0x08, - 0x87, 0x5d, 0x01, 0xb1, 0x2c, 0x24, 0xce, 0x04, 0x65, 0x5a, 0x58, 0xdc, 0xe5, 0xdb, 0x94, 0xbe, - 0xb8, 0xca, 0x35, 0x37, 0x32, 0xe3, 0x6c, 0xdc, 0x81, 0x24, 0x3b, 0x58, 0xf2, 0x83, 0x22, 0x43, - 0x70, 0x72, 0x04, 0x27, 0x4b, 0x70, 0xf2, 0xe4, 0x46, 0xa6, 0x1c, 0xc9, 0x95, 0x73, 0xd9, 0xca, - 0x02, 0x98, 0x2c, 0x0f, 0x70, 0x9e, 0xa9, 0x8f, 0xdb, 0x2a, 0xda, 0x5c, 0xaf, 0xf0, 0x6f, 0x92, - 0xe6, 0x78, 0xd3, 0x1b, 0x98, 0xdd, 0x77, 0x90, 0x76, 0xdd, 0xc1, 0xdc, 0x6d, 0x07, 0x6d, 0x97, - 0x1d, 0xd8, 0xdd, 0x75, 0x60, 0x77, 0xd5, 0x81, 0xdd, 0x4d, 0x67, 0xbd, 0xb7, 0xfe, 0x80, 0xd9, - 0x35, 0x27, 0xab, 0x3b, 0x7d, 0x29, 0x7a, 0xb1, 0xec, 0x21, 0x14, 0x9d, 0xc9, 0xc8, 0xab, 0x06, - 0x10, 0xcb, 0xf1, 0x78, 0x12, 0xe1, 0xc7, 0x8f, 0xe9, 0x44, 0xd1, 0x60, 0x22, 0xe5, 0xeb, 0xba, - 0xc7, 0x88, 0xc3, 0xf1, 0x57, 0x84, 0x21, 0xd7, 0x8f, 0x54, 0x07, 0x31, 0xf8, 0x22, 0xd4, 0x11, - 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0xf7, 0x4a, 0xa8, 0x4b, 0xcb, 0x0e, - 0x99, 0xce, 0x7a, 0x53, 0xd8, 0x59, 0x9c, 0xfb, 0xdb, 0x09, 0x63, 0x63, 0xf1, 0xee, 0x6f, 0xa7, - 0x0a, 0x89, 0x8e, 0x44, 0x47, 0xa2, 0x23, 0xd1, 0x91, 0xe8, 0x5c, 0xb5, 0x8a, 0xeb, 0x27, 0x59, - 0x59, 0x20, 0xa3, 0x5d, 0x4e, 0x95, 0xee, 0xca, 0x5b, 0xbc, 0xd3, 0x26, 0x9e, 0xc4, 0xc6, 0xd3, - 0x26, 0x90, 0x85, 0x14, 0x51, 0x50, 0xb1, 0x85, 0x15, 0x55, 0x60, 0xe1, 0x85, 0x16, 0x5e, 0x70, - 0xe1, 0x85, 0x17, 0x43, 0x80, 0x41, 0x84, 0x18, 0xcf, 0x62, 0x01, 0xb6, 0x5a, 0x10, 0x2d, 0x97, - 0x59, 0xd6, 0xcb, 0x3f, 0xfc, 0x37, 0x42, 0x8a, 0x44, 0x9a, 0x24, 0xbb, 0x1a, 0x1b, 0x35, 0x29, - 0x66, 0xf0, 0xf4, 0x0c, 0x94, 0xa4, 0xf4, 0xda, 0x32, 0x31, 0xfe, 0x78, 0xa7, 0x15, 0x30, 0x2e, - 0x7d, 0x0c, 0x8d, 0x58, 0x4a, 0x2c, 0x25, 0x96, 0x12, 0x4b, 0x89, 0xa5, 0xc4, 0xd2, 0x35, 0xc3, - 0x52, 0x1e, 0x82, 0x46, 0x8c, 0xfb, 0x8d, 0x36, 0xe9, 0x84, 0xd7, 0xd7, 0x03, 0xad, 0xcc, 0x1d, - 0xaa, 0xc9, 0xf8, 0x3c, 0x40, 0x22, 0x1d, 0x91, 0x8e, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0x11, 0xe9, - 0xd6, 0x0c, 0xe9, 0xe8, 0x34, 0xfe, 0x9e, 0xf4, 0xfc, 0x96, 0xd3, 0x38, 0xe1, 0x0a, 0x25, 0x93, - 0xec, 0xfa, 0x8e, 0x66, 0x23, 0x26, 0xa5, 0xca, 0x5b, 0xe3, 0xc3, 0x93, 0xea, 0xac, 0x20, 0x49, - 0xab, 0xa4, 0x55, 0xd2, 0x2a, 0x69, 0x95, 0xb4, 0x4a, 0x5a, 0x25, 0xad, 0x92, 0x56, 0x5f, 0x4b, - 0xab, 0x4f, 0xd9, 0x62, 0x48, 0xac, 0x53, 0xac, 0x41, 0x6a, 0xc5, 0xa4, 0x56, 0xa5, 0x6f, 0x44, - 0x5f, 0x75, 0xfd, 0x58, 0x8a, 0xc4, 0xf1, 0x39, 0xdc, 0x33, 0x33, 0xf4, 0x59, 0x7c, 0x64, 0x55, - 0xb2, 0x2a, 0x59, 0x95, 0xac, 0x4a, 0x56, 0x25, 0xab, 0xae, 0x19, 0xab, 0xaa, 0xae, 0xd4, 0x46, - 0x99, 0x3b, 0x50, 0x5e, 0xad, 0x00, 0xc5, 0x74, 0x30, 0xbe, 0x55, 0x5f, 0x44, 0x02, 0x58, 0x52, - 0x27, 0x0d, 0x7a, 0x70, 0xf4, 0x57, 0xfd, 0xf0, 0x60, 0xaf, 0xd5, 0x6c, 0x9c, 0x9d, 0xee, 0xb7, - 0x9a, 0xfb, 0xf5, 0x93, 0xc6, 0x11, 0x5a, 0x75, 0xfd, 0x4b, 0xf4, 0x07, 0xa3, 0x4d, 0xbc, 0xcf, - 0xa1, 0xe2, 0x1a, 0x7e, 0xfd, 0x82, 0x8b, 0x68, 0x66, 0xeb, 0x36, 0x9a, 0x07, 0x7f, 0x1e, 0x1c, - 0xd5, 0x4f, 0x1b, 0x4d, 0x0f, 0x2e, 0xe0, 0x87, 0x0f, 0x6c, 0xd5, 0xd7, 0xb5, 0xea, 0x1f, 0x87, - 0x67, 0x27, 0xa7, 0xfb, 0xcd, 0xd6, 0x61, 0xa3, 0x71, 0xcc, 0x76, 0x5d, 0x9d, 0x76, 0xad, 0x9f, - 0xb0, 0x49, 0x57, 0x2d, 0x55, 0x1b, 0x47, 0x5f, 0xf7, 0xf7, 0x00, 0x5b, 0x14, 0x2a, 0xa2, 0x0b, - 0x8e, 0x47, 0xc0, 0xa2, 0x40, 0x70, 0x07, 0xfb, 0x22, 0x31, 0xfe, 0x75, 0xd8, 0x55, 0x3d, 0x25, - 0xbb, 0x78, 0xe6, 0xe0, 0x74, 0x78, 0xf4, 0x06, 0x67, 0x85, 0x43, 0x6f, 0x70, 0x8e, 0x0e, 0x45, - 0x6f, 0x70, 0xae, 0x9e, 0x4e, 0x6f, 0x70, 0xc1, 0x00, 0xe9, 0x0d, 0x16, 0x88, 0x7d, 0x81, 0xbd, - 0x41, 0xa3, 0xae, 0xa5, 0x51, 0x9d, 0xab, 0xa4, 0x5a, 0x06, 0xf4, 0x06, 0x3f, 0x01, 0x85, 0x74, - 0xa6, 0x95, 0x49, 0x46, 0x87, 0x37, 0x0b, 0x1d, 0x26, 0xb2, 0x13, 0xea, 0x6e, 0x82, 0x74, 0xcb, - 0x9a, 0x42, 0x5f, 0x4a, 0x38, 0xbf, 0x0d, 0x6f, 0xa8, 0xe7, 0x7d, 0x53, 0x1a, 0x4e, 0x11, 0x41, - 0x19, 0x30, 0x17, 0xde, 0xc8, 0xd5, 0x05, 0x8e, 0xef, 0x6b, 0x2c, 0x3a, 0x46, 0x85, 0x7a, 0x4f, - 0x5d, 0xa6, 0xd9, 0xba, 0x45, 0x3f, 0xe6, 0x77, 0x52, 0x42, 0xdc, 0x32, 0x25, 0x16, 0x4c, 0x89, - 0xd2, 0xa7, 0x72, 0xb9, 0x5a, 0x2b, 0x97, 0xb7, 0x6a, 0x3b, 0xb5, 0xad, 0xdd, 0x4a, 0xa5, 0x54, - 0x45, 0x7a, 0xb2, 0x55, 0xb8, 0x2c, 0x79, 0xc7, 0x68, 0x66, 0x7d, 0x5d, 0xd0, 0xe3, 0x42, 0xa9, - 0xa2, 0x30, 0xe7, 0x71, 0xe5, 0xa0, 0x1e, 0xe3, 0x5c, 0x2e, 0xd0, 0x02, 0x4e, 0x5f, 0x6b, 0x9e, - 0xae, 0x44, 0x5f, 0x6b, 0xae, 0x9e, 0x4e, 0x5f, 0x6b, 0xc1, 0x00, 0xe9, 0x6b, 0x15, 0x68, 0x0c, - 0x01, 0xec, 0x6b, 0x0d, 0x94, 0x36, 0x3b, 0xdb, 0x80, 0x96, 0x56, 0x8d, 0x96, 0xd1, 0xbf, 0x7c, - 0xd1, 0x32, 0x5a, 0xc9, 0xf1, 0x31, 0x2d, 0xa3, 0xa2, 0x97, 0xfb, 0xe9, 0x94, 0xa0, 0x65, 0xb4, - 0x70, 0x4a, 0x94, 0xb7, 0x77, 0xcb, 0xbb, 0xd5, 0xda, 0xf6, 0x2e, 0x8d, 0xa2, 0x15, 0xb0, 0x66, - 0x36, 0x68, 0x14, 0x01, 0xde, 0x0f, 0x08, 0xa3, 0x08, 0x6b, 0x80, 0x8f, 0x75, 0xd2, 0x27, 0x68, - 0xd1, 0xa6, 0x4d, 0x34, 0x4f, 0x4f, 0xa2, 0x4d, 0x34, 0x57, 0x4f, 0xa7, 0x4d, 0xb4, 0x60, 0x80, - 0xb4, 0x89, 0x0a, 0x34, 0x6e, 0x40, 0x5e, 0x1a, 0x19, 0xdd, 0x94, 0x7d, 0xb8, 0x1c, 0xcc, 0x96, - 0x46, 0x7e, 0xc2, 0xda, 0xca, 0xc3, 0xc8, 0x58, 0xc3, 0xd9, 0x45, 0xde, 0xff, 0xde, 0xbf, 0x3f, - 0xdf, 0xf2, 0x77, 0x2f, 0xee, 0xcf, 0x4b, 0xfe, 0xee, 0x45, 0x7a, 0x59, 0x1a, 0x7d, 0x4b, 0xaf, - 0xb7, 0xcf, 0xb7, 0xfc, 0xf2, 0xe4, 0xba, 0x72, 0xbe, 0xe5, 0x57, 0x2e, 0x36, 0xff, 0xfe, 0xfb, - 0xe3, 0xe6, 0xaf, 0x9d, 0x87, 0xf9, 0xdf, 0x18, 0x8c, 0x3f, 0x6c, 0xf3, 0xfe, 0xfd, 0x79, 0xc9, - 0xdf, 0xbe, 0x98, 0xfc, 0xcf, 0xce, 0xf9, 0x96, 0xbf, 0x7d, 0xb1, 0xb9, 0xf9, 0x1f, 0x8f, 0x23, - 0x00, 0x8e, 0x00, 0x72, 0x7d, 0x74, 0xbc, 0x15, 0x49, 0x38, 0x30, 0x12, 0x6f, 0x18, 0xf0, 0x34, - 0x38, 0x8e, 0x05, 0x38, 0x16, 0xe0, 0x58, 0x80, 0x63, 0x01, 0x8e, 0x05, 0x38, 0x16, 0x58, 0xb3, - 0xb1, 0x00, 0xcf, 0x14, 0xc1, 0x47, 0xb9, 0xb5, 0x3e, 0xb6, 0xb9, 0xae, 0x75, 0x68, 0x84, 0x51, - 0x20, 0xbb, 0xed, 0x79, 0x49, 0xe7, 0xbb, 0xbc, 0x16, 0xe3, 0x53, 0xf2, 0xbc, 0x20, 0x8c, 0xa4, - 0xee, 0x8c, 0x40, 0xc9, 0xd7, 0xd2, 0xfc, 0x0c, 0xe3, 0x2b, 0x5f, 0xe9, 0xc4, 0x08, 0xdd, 0x91, - 0xc1, 0xf3, 0x17, 0x92, 0xdc, 0x2b, 0x41, 0x14, 0x87, 0x26, 0xec, 0x84, 0xfd, 0x24, 0xbb, 0x0a, - 0xda, 0x97, 0x51, 0x10, 0xab, 0x76, 0x20, 0x7a, 0xca, 0x4f, 0x44, 0x4f, 0x25, 0xd9, 0x55, 0x30, - 0x1a, 0xb8, 0x0f, 0xb4, 0xea, 0x88, 0xc4, 0x04, 0x5a, 0xaa, 0xcb, 0xef, 0xed, 0x30, 0x4e, 0xb2, - 0xab, 0x40, 0x74, 0x7f, 0x8c, 0x94, 0x40, 0x69, 0x3f, 0x0a, 0x13, 0x13, 0x8c, 0xe8, 0x36, 0x49, - 0xbf, 0xa5, 0x3b, 0x4a, 0xba, 0x15, 0x08, 0x77, 0x3d, 0xd9, 0x61, 0x2f, 0xf6, 0x06, 0xfa, 0x4a, - 0x87, 0x3f, 0xb5, 0x2f, 0x8c, 0x89, 0x55, 0x7b, 0xd8, 0x22, 0xce, 0x7b, 0xf2, 0xe3, 0x8c, 0xa1, - 0x7c, 0x6c, 0x8e, 0xf3, 0x7d, 0x52, 0xfd, 0x1d, 0x87, 0x81, 0x32, 0xf8, 0x41, 0x1a, 0xf4, 0x60, - 0x0e, 0x76, 0xd0, 0x06, 0x39, 0xb0, 0x83, 0x1b, 0xd8, 0x41, 0x0d, 0xec, 0x60, 0x66, 0xbd, 0xc9, - 0x6b, 0x4f, 0xc5, 0x18, 0x65, 0x27, 0x27, 0x52, 0x78, 0x6e, 0x62, 0x3e, 0x44, 0x2c, 0x4f, 0xb1, - 0x44, 0x4f, 0x11, 0x5e, 0x5e, 0xb1, 0x65, 0x16, 0x55, 0x6e, 0xe1, 0x65, 0x17, 0x5e, 0x7e, 0xe1, - 0x65, 0x18, 0xc7, 0x8a, 0xd9, 0x00, 0xf2, 0x14, 0x51, 0xe4, 0x39, 0x0b, 0x68, 0xa8, 0x7d, 0xbe, - 0x41, 0x73, 0x3a, 0xa7, 0x2a, 0xea, 0x63, 0x88, 0x60, 0xa9, 0x87, 0x39, 0x77, 0x1b, 0x4e, 0xae, - 0x91, 0x65, 0xbb, 0x18, 0xf2, 0x8d, 0x2e, 0xe3, 0x85, 0x91, 0xf3, 0xc2, 0xc8, 0x7a, 0x61, 0xe4, - 0x1d, 0x4b, 0xe6, 0xc1, 0xe4, 0x3e, 0x6b, 0xc5, 0x53, 0x44, 0x81, 0xdd, 0xc0, 0x3e, 0x25, 0x2c, - 0x37, 0x1a, 0xae, 0x01, 0xc6, 0xf6, 0xe4, 0xd4, 0xb0, 0xf4, 0xf0, 0xaf, 0x47, 0x58, 0xe1, 0x6a, - 0x1f, 0xf4, 0xd4, 0xf4, 0xd2, 0xa7, 0x6b, 0xb0, 0xe0, 0x9b, 0x86, 0x87, 0x09, 0xbd, 0x25, 0x42, - 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x52, 0x59, 0x67, 0xb7, 0x22, 0x9a, 0xd7, 0x95, - 0x05, 0x36, 0x62, 0xb4, 0xbe, 0x04, 0xde, 0x28, 0x63, 0xca, 0xfa, 0x1a, 0x46, 0xfa, 0x81, 0xbb, - 0x17, 0xac, 0x10, 0x14, 0x14, 0x01, 0x0e, 0x8a, 0x05, 0x09, 0x45, 0x81, 0x85, 0xc2, 0x41, 0x43, - 0xe1, 0xe0, 0xa1, 0x70, 0x10, 0x81, 0x09, 0x13, 0xa0, 0x50, 0x91, 0xb5, 0x2e, 0xac, 0xa3, 0x96, - 0xab, 0x9b, 0x03, 0xa5, 0x4d, 0xa9, 0x8a, 0x5c, 0x33, 0xc7, 0x2a, 0x5e, 0x05, 0x0e, 0x11, 0x73, - 0xff, 0xb7, 0xe7, 0x5f, 0xd8, 0x9a, 0xb3, 0x81, 0xbe, 0x3f, 0x5c, 0xc1, 0xf0, 0x32, 0x17, 0x2e, - 0xf8, 0xfe, 0x71, 0xb9, 0x78, 0x0b, 0xb0, 0x67, 0x56, 0x41, 0xe4, 0x68, 0x3a, 0xc5, 0xc4, 0x2d, - 0x53, 0x6c, 0xc9, 0x29, 0x56, 0xad, 0x54, 0x76, 0x2a, 0x4c, 0xb3, 0xf5, 0x62, 0x51, 0xfc, 0xe8, - 0x2e, 0xde, 0xf1, 0x7e, 0x15, 0xb4, 0x8c, 0x03, 0xcf, 0x84, 0xcb, 0x0d, 0x29, 0x50, 0x67, 0xc4, - 0x15, 0x44, 0x55, 0xe8, 0x0b, 0xbe, 0x65, 0x67, 0xa4, 0x2f, 0xf8, 0xa6, 0x99, 0x43, 0x5f, 0x70, - 0xc9, 0x01, 0xd3, 0x17, 0x5c, 0xe1, 0x81, 0x58, 0xc1, 0x7c, 0xc1, 0x4f, 0x05, 0xb0, 0x05, 0x2b, - 0xb4, 0x05, 0x17, 0xfc, 0xa2, 0x2d, 0x48, 0xcf, 0x82, 0xb6, 0xe0, 0x1a, 0xaa, 0xd1, 0x74, 0x8a, - 0xd1, 0x16, 0x5c, 0x7a, 0x8a, 0x6d, 0x57, 0x68, 0x0a, 0xae, 0x19, 0x88, 0xe2, 0x47, 0x47, 0x53, - 0xb0, 0xb0, 0x45, 0x3c, 0x75, 0xda, 0x6e, 0xc6, 0xd5, 0xa5, 0x08, 0xae, 0x60, 0x1a, 0x2b, 0x6d, - 0xc1, 0xd7, 0x84, 0x47, 0x5b, 0xf0, 0x0d, 0x7b, 0x23, 0x6d, 0xc1, 0x37, 0xcd, 0x1c, 0xda, 0x82, - 0x4b, 0x0e, 0x98, 0xb6, 0xe0, 0x0a, 0x0f, 0xc4, 0x0a, 0x64, 0x0b, 0xb6, 0x95, 0x16, 0xf1, 0x5d, - 0x01, 0x7c, 0xc1, 0x5d, 0xe0, 0x10, 0x0f, 0xa5, 0xbe, 0x1c, 0x2d, 0xcc, 0xa5, 0x31, 0xb8, 0xa8, - 0x6b, 0x41, 0x63, 0x70, 0xe9, 0xae, 0x45, 0x89, 0x9e, 0xc5, 0x9a, 0xe9, 0xd1, 0x74, 0x8a, 0xd1, - 0x18, 0x5c, 0x7a, 0x8a, 0x71, 0xbe, 0xe0, 0x1a, 0xc2, 0x28, 0x7e, 0x74, 0xb4, 0x06, 0x0b, 0x5b, - 0xc6, 0x3d, 0x79, 0x6b, 0xa4, 0xee, 0xca, 0x2e, 0xbe, 0x31, 0x98, 0x45, 0x4a, 0x5b, 0xf0, 0x35, - 0xe1, 0xd1, 0x16, 0x7c, 0xc3, 0xbe, 0x48, 0x5b, 0xf0, 0x4d, 0x33, 0x87, 0xb6, 0xe0, 0x92, 0x03, - 0xa6, 0x2d, 0xb8, 0xc2, 0xc3, 0xb0, 0x22, 0xd9, 0x82, 0x70, 0x47, 0x7e, 0xbd, 0x24, 0xe3, 0x20, - 0x47, 0x80, 0x11, 0x6a, 0x5f, 0xd3, 0x86, 0x61, 0x34, 0x1c, 0x79, 0x8a, 0x3e, 0x3e, 0xd4, 0x66, - 0x91, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, - 0x12, 0x6a, 0x99, 0x14, 0xd3, 0x6d, 0x18, 0x89, 0xd8, 0xa8, 0x22, 0x30, 0xed, 0x24, 0x50, 0x22, - 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, - 0x93, 0x62, 0xba, 0x0d, 0x4d, 0x2c, 0x74, 0xa2, 0x8c, 0xba, 0x29, 0xc0, 0xba, 0xa4, 0x27, 0xb1, - 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, - 0x6c, 0x19, 0x11, 0x68, 0x8a, 0x7a, 0x75, 0xad, 0x43, 0x23, 0x8c, 0x0a, 0x31, 0x17, 0x40, 0x79, - 0x49, 0xe7, 0xbb, 0xbc, 0x16, 0xd1, 0xf8, 0x00, 0xca, 0x20, 0x8c, 0xa4, 0xee, 0x8c, 0x40, 0xd1, - 0xd7, 0xd2, 0xfc, 0x0c, 0xe3, 0x2b, 0x5f, 0xe9, 0xc4, 0x08, 0xdd, 0x91, 0xc1, 0xf3, 0x17, 0x92, - 0xdc, 0x2b, 0x41, 0x14, 0x87, 0x26, 0xec, 0x84, 0xfd, 0x24, 0xbb, 0x0a, 0xda, 0x97, 0x51, 0x10, - 0xab, 0x76, 0x20, 0x7a, 0xca, 0x4f, 0x44, 0x4f, 0x25, 0xd9, 0x55, 0xa0, 0xa2, 0x9b, 0xb2, 0x3f, - 0xd0, 0xaa, 0x23, 0x12, 0x13, 0x68, 0xa9, 0x2e, 0xbf, 0xb7, 0xc3, 0x38, 0xc9, 0xae, 0x02, 0xd1, - 0xfd, 0x31, 0x52, 0x2a, 0xa5, 0xfd, 0x28, 0x4c, 0x4c, 0x10, 0x87, 0x03, 0x23, 0x93, 0xf4, 0x5b, - 0x30, 0xd0, 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, 0x4c, 0xac, 0xda, 0xa3, 0x1f, 0xe4, 0x5e, 0x4a, - 0x4f, 0xd3, 0xe4, 0x19, 0x9a, 0xc8, 0x91, 0xa0, 0x9c, 0xa9, 0xff, 0x5f, 0x79, 0x87, 0xb8, 0x29, - 0xae, 0x77, 0xa8, 0x12, 0x53, 0x37, 0x06, 0xec, 0xc0, 0xff, 0x6f, 0x4a, 0xef, 0xf7, 0xe5, 0x90, - 0x28, 0x13, 0xef, 0xf3, 0x86, 0x1e, 0xf4, 0xfb, 0x40, 0x07, 0xb2, 0x7e, 0x13, 0xb7, 0xb8, 0xc1, - 0x35, 0xe2, 0xae, 0x8c, 0x65, 0xf7, 0xcb, 0xdd, 0x38, 0x34, 0x26, 0x21, 0xbe, 0x5a, 0xae, 0xb6, - 0x4a, 0x7a, 0x50, 0x67, 0x29, 0xc7, 0x83, 0x8e, 0xd1, 0xe3, 0xd1, 0xc2, 0x51, 0x7a, 0xe7, 0x0e, - 0xc6, 0x37, 0xae, 0x75, 0x3c, 0xbe, 0x5d, 0xad, 0x2f, 0x97, 0x51, 0xab, 0xa9, 0xda, 0xad, 0x7a, - 0x4f, 0x9d, 0x88, 0x9e, 0x6a, 0x1d, 0x44, 0x37, 0xe5, 0xb3, 0xf4, 0x16, 0xb5, 0x8e, 0xc6, 0x37, - 0xa6, 0x55, 0xef, 0xfe, 0x68, 0xaa, 0xf6, 0x81, 0x3e, 0x0e, 0x13, 0xd3, 0x6a, 0x0e, 0x6f, 0x47, - 0xeb, 0x2c, 0xfd, 0xdb, 0xeb, 0xd9, 0x9f, 0xfe, 0x8e, 0x42, 0xec, 0x3e, 0x02, 0xc7, 0xd5, 0x07, - 0xad, 0xea, 0xac, 0x52, 0xb5, 0x71, 0x9b, 0x60, 0xee, 0xba, 0xb5, 0x9b, 0x4f, 0x76, 0x94, 0x48, - 0x13, 0x76, 0x4e, 0xbd, 0xdb, 0x8d, 0x61, 0xc7, 0xf5, 0x95, 0xab, 0x75, 0xa2, 0x18, 0xc0, 0x0c, - 0x05, 0xc8, 0x50, 0x40, 0x8c, 0x01, 0xc0, 0xae, 0x32, 0x05, 0x44, 0x6a, 0x0a, 0x2b, 0x31, 0x0e, - 0x59, 0x75, 0xc9, 0x6c, 0xea, 0x46, 0x29, 0xed, 0xeb, 0x94, 0xdd, 0x4f, 0xb4, 0x9c, 0xe7, 0xae, - 0xf3, 0xbb, 0x80, 0x79, 0x6d, 0xb7, 0xdf, 0xdb, 0xeb, 0x7d, 0x16, 0x7b, 0x9e, 0x97, 0xda, 0xdc, - 0xb6, 0x3b, 0x5c, 0xf6, 0x50, 0x2f, 0xfd, 0x78, 0xcb, 0x99, 0x36, 0x79, 0x4c, 0x67, 0xf9, 0x63, - 0xb3, 0x59, 0x34, 0xdb, 0x96, 0x3f, 0xd8, 0xe1, 0xec, 0x18, 0x8c, 0x59, 0x2f, 0xae, 0x67, 0xb3, - 0xc0, 0xcc, 0x52, 0x81, 0x99, 0x7d, 0x02, 0x33, 0xab, 0x84, 0x4c, 0x41, 0xa6, 0x48, 0x99, 0xc2, - 0xc1, 0x03, 0x5f, 0x8b, 0x48, 0xf1, 0x6e, 0x85, 0xba, 0xb7, 0xab, 0x6e, 0x5d, 0xa4, 0xee, 0xec, - 0x59, 0x65, 0xc8, 0xe5, 0x8c, 0x6e, 0xed, 0x24, 0xe3, 0xf2, 0x53, 0xc3, 0x42, 0x5a, 0x78, 0x4f, - 0x9b, 0x3f, 0xb6, 0x47, 0x3a, 0x8f, 0x67, 0x7f, 0x4c, 0x7f, 0xbe, 0xa5, 0x42, 0x60, 0x97, 0xe4, - 0xad, 0xcf, 0x83, 0x77, 0x41, 0xee, 0x6e, 0x89, 0xdd, 0x15, 0xa9, 0x3b, 0x27, 0x74, 0xe7, 0x64, - 0xee, 0x9c, 0xc8, 0x57, 0x0b, 0x51, 0xf6, 0x94, 0xdd, 0xa7, 0x48, 0xde, 0xd8, 0x12, 0x73, 0xe6, - 0xe4, 0x8c, 0x3f, 0x9f, 0x56, 0x0e, 0xad, 0x1c, 0x5a, 0x39, 0xb4, 0x72, 0x68, 0xe5, 0x14, 0x5c, - 0x50, 0xa6, 0x85, 0xc5, 0x5d, 0xbe, 0x4d, 0xe9, 0x8b, 0xab, 0x5c, 0x73, 0x23, 0x33, 0xce, 0xc6, - 0x1d, 0x48, 0xb2, 0x83, 0x25, 0x3f, 0x28, 0x32, 0x04, 0x27, 0x47, 0x70, 0xb2, 0x04, 0x27, 0x4f, - 0x6e, 0x64, 0xca, 0x91, 0x5c, 0x39, 0x97, 0xad, 0x2c, 0x80, 0xc9, 0x94, 0x42, 0xe7, 0x99, 0xfa, - 0xb8, 0xc7, 0x9a, 0xcb, 0x39, 0x8e, 0xcf, 0x25, 0xcd, 0xf1, 0x8e, 0x0e, 0x30, 0x5b, 0x4b, 0x20, - 0x6d, 0x21, 0x81, 0xb9, 0x55, 0x04, 0xda, 0x96, 0x10, 0xb0, 0x5b, 0x3f, 0xc0, 0x6e, 0xf1, 0x00, - 0xbb, 0x95, 0xc3, 0x7a, 0xaf, 0x21, 0x81, 0xd9, 0x82, 0x21, 0xab, 0x3b, 0x7d, 0x29, 0x7a, 0xb1, - 0xec, 0x21, 0x14, 0x9d, 0xc9, 0xc8, 0xab, 0x06, 0x10, 0xcb, 0xf1, 0xf8, 0xc1, 0xef, 0xc7, 0x8f, - 0xe9, 0x64, 0x81, 0x60, 0x22, 0xe5, 0xeb, 0xba, 0x52, 0xc5, 0xe1, 0xf8, 0x2b, 0xc2, 0x90, 0xeb, - 0x47, 0xaa, 0x83, 0x18, 0x7c, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, - 0x47, 0xa8, 0x7b, 0x25, 0xd4, 0xa5, 0x65, 0x87, 0x4c, 0x67, 0xbd, 0x29, 0xdc, 0xac, 0x45, 0x79, - 0x31, 0x61, 0x5c, 0xac, 0x4d, 0x79, 0x31, 0x55, 0x48, 0x74, 0x24, 0x3a, 0x12, 0x1d, 0x89, 0x8e, - 0x44, 0xe7, 0xaa, 0x55, 0x5c, 0x3f, 0xc9, 0xca, 0x02, 0x19, 0xed, 0x33, 0xa7, 0x74, 0x57, 0xe2, - 0x6c, 0x78, 0xfd, 0x38, 0x0d, 0xfc, 0x31, 0x36, 0x94, 0xcd, 0xf9, 0xa0, 0xb6, 0x56, 0x87, 0xdb, - 0x4a, 0x1d, 0x71, 0xeb, 0x74, 0xec, 0xad, 0xd2, 0x51, 0xb7, 0x46, 0x87, 0xdf, 0x0a, 0x1d, 0x7e, - 0xeb, 0x73, 0xf8, 0xad, 0xce, 0xb9, 0xed, 0x2a, 0xa4, 0xc5, 0x02, 0x6c, 0xb5, 0x20, 0x5a, 0x2e, - 0xb3, 0xac, 0x97, 0x7f, 0xf8, 0x6f, 0x84, 0x14, 0x89, 0x34, 0x49, 0x76, 0x35, 0x36, 0x6a, 0x52, - 0xcc, 0xe0, 0x36, 0x8c, 0x28, 0x49, 0xe9, 0x75, 0xc2, 0xeb, 0xeb, 0x81, 0x56, 0xe6, 0x0e, 0x95, - 0x4e, 0x9f, 0x07, 0x48, 0x44, 0x25, 0xa2, 0x12, 0x51, 0x89, 0xa8, 0x44, 0x54, 0x22, 0x2a, 0x11, - 0x95, 0x88, 0xfa, 0x5a, 0x44, 0x9d, 0x70, 0x85, 0x92, 0x49, 0x76, 0x7d, 0x47, 0x4a, 0xc5, 0xa4, - 0x54, 0x79, 0x6b, 0x7c, 0x78, 0x52, 0x9d, 0x15, 0x24, 0x69, 0x95, 0xb4, 0x4a, 0x5a, 0x25, 0xad, - 0x92, 0x56, 0x49, 0xab, 0xa4, 0x55, 0xd2, 0xea, 0x6b, 0x69, 0xf5, 0x29, 0x5b, 0x0c, 0x89, 0x75, - 0x8a, 0x35, 0x48, 0xad, 0x98, 0xd4, 0xaa, 0xf4, 0x8d, 0xe8, 0xab, 0xae, 0x1f, 0x4b, 0x91, 0x00, - 0x1d, 0x71, 0x95, 0x65, 0xe8, 0xb3, 0xf8, 0xc8, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x95, 0xac, - 0x4a, 0x56, 0x5d, 0x33, 0x56, 0x55, 0x5d, 0xa9, 0x8d, 0x32, 0x77, 0xa0, 0xbc, 0x5a, 0x01, 0x8a, - 0xe9, 0x60, 0x7c, 0xab, 0xbe, 0x88, 0x04, 0xb0, 0xa4, 0x4e, 0x1a, 0xf4, 0xe0, 0xe8, 0xaf, 0xfa, - 0xe1, 0xc1, 0x5e, 0xab, 0xd9, 0x38, 0x3b, 0xdd, 0x6f, 0x35, 0xf7, 0xeb, 0x27, 0x8d, 0x23, 0xb4, - 0xea, 0xfa, 0x97, 0xe8, 0x0f, 0x46, 0xbb, 0x3f, 0x9e, 0xc3, 0x9d, 0x13, 0xfe, 0x0b, 0xf2, 0x30, - 0xfc, 0x5c, 0xeb, 0x36, 0x9a, 0x07, 0x7f, 0x1e, 0x1c, 0xd5, 0x4f, 0x1b, 0x4d, 0x0f, 0xef, 0x9c, - 0xfc, 0x0f, 0x6c, 0xd5, 0xd7, 0xb5, 0xea, 0x1f, 0x87, 0x67, 0x27, 0xa7, 0xfb, 0xcd, 0xd6, 0x61, - 0xa3, 0x71, 0xcc, 0x76, 0x5d, 0x9d, 0x76, 0xad, 0x9f, 0xb0, 0x49, 0x57, 0x2d, 0x55, 0x1b, 0x47, - 0x5f, 0xf7, 0xf7, 0x00, 0x5b, 0x14, 0x2a, 0xa2, 0x0b, 0x8e, 0x47, 0xc0, 0xa2, 0x40, 0x70, 0x07, - 0xfb, 0x22, 0x31, 0xfe, 0x75, 0xd8, 0x55, 0x3d, 0x25, 0xbb, 0x78, 0xe6, 0xe0, 0x74, 0x78, 0xf4, - 0x06, 0x67, 0x85, 0x43, 0x6f, 0x70, 0x8e, 0x0e, 0x45, 0x6f, 0x70, 0xae, 0x9e, 0x4e, 0x6f, 0x70, - 0xc1, 0x00, 0xe9, 0x0d, 0x16, 0x88, 0x7d, 0x81, 0xbd, 0x41, 0xa3, 0xae, 0xa5, 0x51, 0x9d, 0xab, - 0xa4, 0x5a, 0x06, 0xf4, 0x06, 0x3f, 0x01, 0x85, 0x74, 0xa6, 0xd5, 0xe8, 0xc4, 0x79, 0x4f, 0x0b, - 0x1d, 0x26, 0xb2, 0x13, 0xea, 0x6e, 0x82, 0x74, 0xcb, 0x9a, 0x42, 0x5f, 0x4a, 0x38, 0xbf, 0x0d, - 0x6f, 0xa8, 0xe7, 0x7d, 0x53, 0x1a, 0x4e, 0x11, 0x41, 0x19, 0x30, 0x17, 0xde, 0xc8, 0xd5, 0x05, - 0x8e, 0xef, 0x6b, 0x2c, 0x3a, 0x46, 0x85, 0x7a, 0x4f, 0x5d, 0xa6, 0xd9, 0xba, 0x45, 0x3f, 0xe6, - 0x77, 0x52, 0x42, 0xdc, 0x32, 0x25, 0x16, 0x4c, 0x89, 0xd2, 0xa7, 0x72, 0xb9, 0x5a, 0x2b, 0x97, - 0xb7, 0x6a, 0x3b, 0xb5, 0xad, 0xdd, 0x4a, 0xa5, 0x54, 0x45, 0x7a, 0xb2, 0x55, 0xb8, 0x2c, 0x79, - 0xc7, 0x68, 0x66, 0x7d, 0x5d, 0xd0, 0xe3, 0x42, 0xa9, 0xa2, 0x30, 0x07, 0x39, 0xe4, 0xa0, 0x1e, - 0xe3, 0x40, 0x07, 0xd0, 0x02, 0x4e, 0x5f, 0x6b, 0x9e, 0xae, 0x44, 0x5f, 0x6b, 0xae, 0x9e, 0x4e, - 0x5f, 0x6b, 0xc1, 0x00, 0xe9, 0x6b, 0x15, 0x68, 0x0c, 0x01, 0xec, 0x6b, 0x0d, 0x94, 0x36, 0x3b, - 0xdb, 0x80, 0x96, 0x56, 0x8d, 0x96, 0xd1, 0xbf, 0x7c, 0xd1, 0x32, 0x5a, 0xc9, 0xf1, 0x31, 0x2d, - 0xa3, 0xa2, 0x97, 0xfb, 0xe9, 0x94, 0xa0, 0x65, 0xb4, 0x70, 0x4a, 0x94, 0xb7, 0x77, 0xcb, 0xbb, - 0xd5, 0xda, 0xf6, 0x2e, 0x8d, 0xa2, 0x15, 0xb0, 0x66, 0x36, 0x68, 0x14, 0x01, 0xde, 0x0f, 0x08, - 0xa3, 0x08, 0x6b, 0x80, 0x8f, 0x75, 0x44, 0x14, 0x68, 0xd1, 0xa6, 0x4d, 0x34, 0x4f, 0x4f, 0xa2, - 0x4d, 0x34, 0x57, 0x4f, 0xa7, 0x4d, 0xb4, 0x60, 0x80, 0xb4, 0x89, 0x0a, 0x34, 0x6e, 0x40, 0x5e, - 0x1a, 0x19, 0xdd, 0x94, 0x7d, 0xb8, 0x1c, 0xcc, 0x96, 0x46, 0x7e, 0xc2, 0xda, 0xca, 0xc3, 0xc8, - 0x58, 0xc3, 0xd9, 0x45, 0xde, 0xff, 0xde, 0xbf, 0x3f, 0xdf, 0xf2, 0x77, 0x2f, 0xee, 0xcf, 0x4b, - 0xfe, 0xee, 0x45, 0x7a, 0x59, 0x1a, 0x7d, 0x4b, 0xaf, 0xb7, 0xcf, 0xb7, 0xfc, 0xf2, 0xe4, 0xba, - 0x72, 0xbe, 0xe5, 0x57, 0x2e, 0x36, 0xff, 0xfe, 0xfb, 0xe3, 0xe6, 0xaf, 0x9d, 0x87, 0xf9, 0xdf, - 0x18, 0x8c, 0x3f, 0x6c, 0xf3, 0xfe, 0xfd, 0x79, 0xc9, 0xdf, 0xbe, 0x98, 0xfc, 0xcf, 0xce, 0xf9, - 0x96, 0xbf, 0x7d, 0xb1, 0xb9, 0xf9, 0x1f, 0x8f, 0x23, 0x00, 0x8e, 0x00, 0x72, 0x7d, 0x74, 0xbc, - 0x15, 0x49, 0x38, 0x30, 0x12, 0x6f, 0x18, 0xf0, 0x34, 0x38, 0x8e, 0x05, 0x38, 0x16, 0xe0, 0x58, - 0x80, 0x63, 0x01, 0x8e, 0x05, 0x38, 0x16, 0x58, 0xb3, 0xb1, 0x40, 0x3b, 0x0c, 0xfb, 0x52, 0x68, - 0xc4, 0x71, 0x40, 0x89, 0x28, 0x07, 0x10, 0x81, 0xeb, 0xf3, 0xfe, 0xea, 0x5a, 0x87, 0x46, 0x18, - 0x05, 0xb2, 0xdb, 0x9e, 0x97, 0x74, 0xbe, 0xcb, 0x6b, 0x11, 0x8d, 0xb7, 0x78, 0x0c, 0xc2, 0x48, - 0xea, 0xce, 0x08, 0x94, 0x7c, 0x2d, 0xcd, 0xcf, 0x30, 0xbe, 0xf2, 0x95, 0x4e, 0x8c, 0xd0, 0x1d, - 0x19, 0x3c, 0x7f, 0x21, 0xc9, 0xbd, 0x12, 0x44, 0x71, 0x68, 0xc2, 0x4e, 0xd8, 0x4f, 0xb2, 0xab, - 0xa0, 0x7d, 0x19, 0x05, 0xb1, 0x6a, 0x07, 0xa2, 0xa7, 0xfc, 0x44, 0xf4, 0x54, 0x92, 0x5d, 0x05, - 0xa3, 0x81, 0xfb, 0x40, 0xab, 0x8e, 0x48, 0x4c, 0xa0, 0xa5, 0xba, 0xfc, 0xde, 0x0e, 0xe3, 0x24, - 0xbb, 0x0a, 0x44, 0xf7, 0xc7, 0x48, 0x09, 0x94, 0x1e, 0x0e, 0xef, 0x83, 0x11, 0xdc, 0x26, 0xe9, - 0xb7, 0x74, 0x43, 0x49, 0x1e, 0xa7, 0x6c, 0xbf, 0xc3, 0x0c, 0xf4, 0x95, 0x0e, 0x7f, 0x6a, 0x5f, - 0x18, 0x13, 0xab, 0xf6, 0xb0, 0x45, 0x70, 0xce, 0x56, 0x9e, 0x11, 0x1b, 0x0f, 0x5a, 0xe6, 0x41, - 0xcb, 0x45, 0x1a, 0xeb, 0xf0, 0xa0, 0xe5, 0xa2, 0x8f, 0x69, 0x78, 0xd0, 0x32, 0x24, 0x78, 0xc1, - 0x1c, 0xb4, 0x9c, 0x13, 0x29, 0x3c, 0x33, 0x31, 0x1f, 0x22, 0x96, 0xa5, 0x58, 0xa2, 0xa5, 0x08, - 0x2f, 0xaf, 0xd8, 0x32, 0x8b, 0x2a, 0xb7, 0xf0, 0xb2, 0x0b, 0x2f, 0xbf, 0xf0, 0x32, 0x8c, 0xe3, - 0xc4, 0x6c, 0x00, 0x59, 0x8a, 0x28, 0xf2, 0x9c, 0x05, 0x34, 0x3a, 0x16, 0xd8, 0xa0, 0x19, 0x9d, - 0x53, 0x15, 0xf5, 0x31, 0x44, 0xb0, 0xd4, 0xc3, 0x9c, 0xba, 0x0d, 0x27, 0xd7, 0xc8, 0xb2, 0x5d, - 0x0c, 0xf9, 0x46, 0x97, 0xf1, 0xc2, 0xc8, 0x79, 0x61, 0x64, 0xbd, 0x30, 0xf2, 0x8e, 0x25, 0xf3, - 0x60, 0x72, 0x9f, 0xb5, 0xe2, 0x29, 0xa2, 0xc0, 0x6e, 0x60, 0x1f, 0x12, 0x96, 0x1b, 0x0d, 0xd7, - 0x00, 0x63, 0x7b, 0x72, 0x68, 0x58, 0x7a, 0xf6, 0xd7, 0x23, 0xac, 0x70, 0xb1, 0x0f, 0x7a, 0x6a, - 0x7a, 0xe9, 0xd3, 0x35, 0x58, 0xf0, 0x4d, 0xc3, 0xc3, 0x84, 0xde, 0x12, 0xa1, 0x97, 0xd0, 0x4b, - 0xe8, 0x25, 0xf4, 0x12, 0x7a, 0xa9, 0xac, 0xb3, 0x5b, 0x11, 0xcd, 0xeb, 0xca, 0x02, 0x1b, 0x31, - 0x5a, 0x5f, 0x02, 0xef, 0x93, 0x31, 0x65, 0x7d, 0x0d, 0x23, 0xfd, 0xc0, 0xcd, 0x0b, 0x56, 0x08, - 0x0a, 0x8a, 0x00, 0x07, 0xc5, 0x82, 0x84, 0xa2, 0xc0, 0x42, 0xe1, 0xa0, 0xa1, 0x70, 0xf0, 0x50, - 0x38, 0x88, 0xc0, 0x84, 0x09, 0x50, 0xa8, 0xc8, 0x5a, 0x17, 0xd6, 0x51, 0xcb, 0xd5, 0xcd, 0x81, - 0xd2, 0xa6, 0x54, 0x45, 0xae, 0x99, 0x63, 0x15, 0xaf, 0x02, 0x87, 0x88, 0xb9, 0xfd, 0xdb, 0xf3, - 0x2f, 0x6c, 0xcd, 0xd9, 0x40, 0xdf, 0x1e, 0xae, 0x60, 0x78, 0x99, 0x0b, 0x17, 0x7c, 0xfb, 0xb8, - 0x5c, 0xbc, 0x05, 0xd8, 0x32, 0xab, 0x20, 0x72, 0x34, 0x9d, 0x62, 0xe2, 0x96, 0x29, 0xb6, 0xe4, - 0x14, 0xab, 0x56, 0x2a, 0x3b, 0x15, 0xa6, 0xd9, 0x7a, 0xb1, 0x28, 0x7e, 0x74, 0x17, 0xef, 0x78, - 0xbf, 0x0a, 0x5a, 0xc6, 0x81, 0x67, 0xc2, 0xe5, 0x86, 0x14, 0xa8, 0x33, 0xe2, 0x0a, 0xa2, 0x2a, - 0xf4, 0x05, 0xdf, 0xb2, 0x33, 0xd2, 0x17, 0x7c, 0xd3, 0xcc, 0xa1, 0x2f, 0xb8, 0xe4, 0x80, 0xe9, - 0x0b, 0xae, 0xf0, 0x40, 0xac, 0x60, 0xbe, 0xe0, 0xa7, 0x02, 0xd8, 0x82, 0x15, 0xda, 0x82, 0x0b, - 0x7e, 0xd1, 0x16, 0xa4, 0x67, 0x41, 0x5b, 0x70, 0x0d, 0xd5, 0x68, 0x3a, 0xc5, 0x68, 0x0b, 0x2e, - 0x3d, 0xc5, 0xb6, 0x2b, 0x34, 0x05, 0xd7, 0x0c, 0x44, 0xf1, 0xa3, 0xa3, 0x29, 0x58, 0xd8, 0x22, - 0x9e, 0x3a, 0x6d, 0x37, 0xe3, 0xea, 0x52, 0x04, 0x57, 0x30, 0x8d, 0x95, 0xb6, 0xe0, 0x6b, 0xc2, - 0xa3, 0x2d, 0xf8, 0x86, 0xbd, 0x91, 0xb6, 0xe0, 0x9b, 0x66, 0x0e, 0x6d, 0xc1, 0x25, 0x07, 0x4c, - 0x5b, 0x70, 0x85, 0x07, 0x62, 0x05, 0xb2, 0x05, 0xdb, 0x4a, 0x8b, 0xf8, 0xae, 0x00, 0xbe, 0xe0, - 0x2e, 0x70, 0x88, 0x87, 0x52, 0x5f, 0x8e, 0x16, 0xe6, 0xd2, 0x18, 0x5c, 0xd4, 0xb5, 0xa0, 0x31, - 0xb8, 0x74, 0xd7, 0xa2, 0x44, 0xcf, 0x62, 0xcd, 0xf4, 0x68, 0x3a, 0xc5, 0x68, 0x0c, 0x2e, 0x3d, - 0xc5, 0x38, 0x5f, 0x70, 0x0d, 0x61, 0x14, 0x3f, 0x3a, 0x5a, 0x83, 0x85, 0x2d, 0xe3, 0x9e, 0xbc, - 0x35, 0x52, 0x77, 0x65, 0x17, 0xdf, 0x18, 0xcc, 0x22, 0xa5, 0x2d, 0xf8, 0x9a, 0xf0, 0x68, 0x0b, - 0xbe, 0x61, 0x5f, 0xa4, 0x2d, 0xf8, 0xa6, 0x99, 0x43, 0x5b, 0x70, 0xc9, 0x01, 0xd3, 0x16, 0x5c, - 0xe1, 0x61, 0x58, 0x91, 0x6c, 0x41, 0xb8, 0x13, 0xbf, 0x5e, 0x92, 0x71, 0x90, 0x13, 0xc0, 0x08, - 0xb5, 0xaf, 0x69, 0xc3, 0x30, 0x1a, 0x8e, 0x3c, 0x45, 0x1f, 0x1f, 0x6a, 0xb3, 0x48, 0x09, 0xb5, - 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x4c, - 0x8a, 0xe9, 0x36, 0x8c, 0x44, 0x6c, 0x54, 0x11, 0x98, 0x76, 0x12, 0x28, 0x91, 0x96, 0x48, 0x4b, - 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x49, 0x31, 0xdd, - 0x86, 0x26, 0x16, 0x3a, 0x51, 0x46, 0xdd, 0x14, 0x60, 0x5d, 0xd2, 0x93, 0x58, 0x09, 0xb6, 0x04, - 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x8c, 0x08, - 0x34, 0x45, 0xbd, 0xba, 0xd6, 0xa1, 0x11, 0x46, 0x85, 0x98, 0x0b, 0xa0, 0xbc, 0xa4, 0xf3, 0x5d, - 0x5e, 0x8b, 0x68, 0x7c, 0x00, 0x65, 0x10, 0x46, 0x52, 0x77, 0x46, 0xa0, 0xe8, 0x6b, 0x69, 0x7e, - 0x86, 0xf1, 0x95, 0xaf, 0x74, 0x62, 0x84, 0xee, 0xc8, 0xe0, 0xf9, 0x0b, 0x49, 0xee, 0x95, 0x20, - 0x8a, 0x43, 0x13, 0x76, 0xc2, 0x7e, 0x92, 0x5d, 0x05, 0xed, 0xcb, 0x28, 0x88, 0x55, 0x3b, 0x10, - 0x3d, 0xe5, 0x27, 0xa2, 0xa7, 0x92, 0xec, 0x2a, 0x50, 0xd1, 0x4d, 0xd9, 0x1f, 0x68, 0xd5, 0x11, - 0x89, 0x09, 0xb4, 0x54, 0x97, 0xdf, 0xdb, 0x61, 0x9c, 0x64, 0x57, 0x81, 0xe8, 0xfe, 0x18, 0x29, - 0x95, 0xd2, 0x7e, 0x14, 0xcb, 0x20, 0x0e, 0x07, 0x46, 0x26, 0xe9, 0xb7, 0x60, 0xa0, 0xaf, 0x74, - 0xf8, 0x53, 0xfb, 0xc2, 0x98, 0x58, 0xb5, 0x47, 0x3f, 0xc8, 0xbd, 0x94, 0x1e, 0xa6, 0xc9, 0x23, - 0x34, 0x91, 0x23, 0x41, 0x39, 0x52, 0xff, 0xbf, 0xf2, 0x0e, 0x71, 0x4f, 0x5c, 0xef, 0x50, 0x25, - 0xa6, 0x6e, 0x0c, 0xd8, 0x79, 0xff, 0xdf, 0x94, 0xde, 0xef, 0xcb, 0x21, 0x50, 0x26, 0xde, 0xe7, - 0x0d, 0x3d, 0xe8, 0xf7, 0x81, 0xce, 0x63, 0xfd, 0x26, 0x6e, 0x71, 0x83, 0x6b, 0xc4, 0x5d, 0x19, - 0xcb, 0xee, 0x97, 0xbb, 0x71, 0x68, 0x4c, 0x42, 0x7c, 0xb1, 0x5c, 0x69, 0x91, 0xf4, 0xa0, 0x4e, - 0x52, 0x8e, 0x07, 0x1d, 0xa3, 0xc7, 0x63, 0x85, 0xa3, 0xf4, 0xc6, 0x1d, 0x8c, 0xef, 0x5b, 0xeb, - 0x78, 0x7c, 0xb7, 0x5a, 0x5f, 0x2e, 0xa3, 0x56, 0x53, 0xb5, 0x5b, 0xf5, 0x9e, 0x3a, 0x11, 0x3d, - 0xd5, 0x3a, 0x88, 0x6e, 0xca, 0x67, 0xe9, 0x1d, 0x6a, 0x1d, 0x8d, 0xef, 0x4b, 0xab, 0xde, 0xfd, - 0xd1, 0x54, 0xed, 0x03, 0x7d, 0x1c, 0xcb, 0x56, 0x73, 0x78, 0x37, 0x5a, 0x67, 0xe9, 0x9f, 0x5e, - 0xcf, 0xfe, 0xf2, 0x77, 0x94, 0x61, 0xf7, 0x11, 0x38, 0xae, 0x3d, 0x68, 0x35, 0x67, 0x85, 0x6a, - 0x8d, 0xdb, 0xfc, 0x72, 0xd7, 0xab, 0xdd, 0x7c, 0xb2, 0xa3, 0x3c, 0x9a, 0x80, 0x73, 0xea, 0xdb, - 0x6e, 0x0c, 0xfb, 0xad, 0xaf, 0x5c, 0xad, 0x11, 0xc5, 0xa0, 0x65, 0x28, 0x3a, 0x86, 0xa2, 0x61, - 0x0c, 0xfa, 0x75, 0x95, 0x29, 0x20, 0x4a, 0x53, 0x54, 0x85, 0x71, 0x08, 0xaa, 0xcb, 0x05, 0x53, - 0x37, 0x3a, 0x69, 0x5f, 0xa5, 0xec, 0x7e, 0xa2, 0xe5, 0x2c, 0x77, 0x9d, 0xdd, 0xc5, 0xcb, 0x6a, - 0xbb, 0xdd, 0xde, 0x5e, 0xe7, 0xb3, 0xd8, 0xf1, 0xbc, 0xd4, 0xe0, 0xb6, 0xdd, 0xdf, 0xb2, 0xa7, - 0x79, 0xe9, 0xc7, 0x5b, 0x4e, 0xb4, 0xc9, 0xf3, 0x39, 0xcb, 0x1f, 0x9b, 0x4d, 0x9f, 0xd9, 0xb6, - 0xfc, 0xc1, 0x0e, 0xa7, 0xc5, 0x60, 0x4c, 0x77, 0x71, 0x3d, 0x8d, 0x05, 0x66, 0x7a, 0x0a, 0xcc, - 0xb4, 0x13, 0x98, 0xe9, 0x24, 0x44, 0x0a, 0x22, 0xc5, 0x08, 0x29, 0x1c, 0x3c, 0xe9, 0xb5, 0x48, - 0x14, 0xef, 0x56, 0xa8, 0x77, 0xbb, 0xea, 0xd5, 0x05, 0xea, 0xcd, 0x9e, 0x55, 0x82, 0x5c, 0xca, - 0xc8, 0xd6, 0x4e, 0x2a, 0x2e, 0x3f, 0x31, 0x2c, 0x24, 0x85, 0x37, 0x69, 0xfc, 0x70, 0x60, 0xfc, - 0x28, 0x4c, 0x8c, 0xb5, 0xb4, 0x78, 0x3c, 0xf3, 0xe3, 0x79, 0x04, 0x96, 0x4a, 0x81, 0x5d, 0x94, - 0xb7, 0x3e, 0x03, 0xde, 0x05, 0xba, 0xbb, 0x45, 0x76, 0x57, 0xa8, 0xee, 0x1c, 0xd1, 0x9d, 0xa3, - 0xb9, 0x73, 0x24, 0x5f, 0x2d, 0x48, 0xd9, 0x53, 0x76, 0x9f, 0x21, 0x79, 0x63, 0x4f, 0xcc, 0x99, - 0x95, 0x33, 0xfe, 0x7c, 0x7a, 0x39, 0xf4, 0x72, 0xe8, 0xe5, 0xd0, 0xcb, 0xa1, 0x97, 0x53, 0x70, - 0x41, 0x99, 0x16, 0x16, 0x77, 0xf9, 0x36, 0xa5, 0x2f, 0xae, 0x72, 0xcd, 0x8d, 0xcc, 0x38, 0x1b, - 0x77, 0x20, 0xc9, 0x0e, 0x96, 0xfc, 0xa0, 0xc8, 0x10, 0x9c, 0x1c, 0xc1, 0xc9, 0x12, 0x9c, 0x3c, - 0xb9, 0x91, 0x29, 0x47, 0x72, 0xe5, 0x5c, 0xb6, 0xb2, 0x00, 0x26, 0x13, 0x0a, 0x9d, 0x67, 0xea, - 0xe3, 0xee, 0x6a, 0x2e, 0x67, 0x38, 0x3e, 0x97, 0x34, 0xc7, 0x7b, 0x39, 0xc0, 0x6c, 0x2a, 0x81, - 0xb4, 0x79, 0x04, 0xe6, 0x26, 0x11, 0x68, 0x9b, 0x41, 0xc0, 0x6e, 0xfa, 0x00, 0xbb, 0xb9, 0x03, - 0xec, 0x26, 0x0e, 0xeb, 0xbd, 0x80, 0x04, 0x66, 0xf3, 0x85, 0xac, 0xee, 0xf4, 0xa5, 0xe8, 0xc5, - 0xb2, 0x87, 0x50, 0x74, 0x26, 0x23, 0xaf, 0x1a, 0x40, 0x2c, 0xc7, 0xe3, 0x47, 0xbf, 0x1f, 0x3f, - 0xa6, 0xd3, 0x05, 0x82, 0x89, 0x94, 0xaf, 0xeb, 0x3a, 0x15, 0x87, 0xe3, 0xaf, 0x08, 0x43, 0xae, - 0x1f, 0xa9, 0x0e, 0x62, 0xf0, 0x45, 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, - 0x1d, 0xa1, 0xee, 0x95, 0x50, 0x97, 0x96, 0x1d, 0x32, 0x9d, 0xf5, 0xa6, 0x70, 0xb3, 0x18, 0xe5, - 0xc5, 0x84, 0x71, 0xb1, 0x38, 0xe5, 0xc5, 0x54, 0x21, 0xd1, 0x91, 0xe8, 0x48, 0x74, 0x24, 0x3a, - 0x12, 0x9d, 0xab, 0x56, 0x71, 0xfd, 0x24, 0x2b, 0x0b, 0x64, 0xb4, 0xc5, 0x9c, 0xd2, 0x5d, 0x89, - 0xb3, 0xd5, 0xf5, 0xe3, 0x44, 0xf0, 0xc7, 0xd8, 0x50, 0xf6, 0xe5, 0x83, 0xda, 0x54, 0x1d, 0x6e, - 0x13, 0x75, 0xc4, 0x4d, 0xd3, 0xb1, 0x37, 0x49, 0x47, 0xdd, 0x14, 0x1d, 0x7e, 0x13, 0x74, 0xf8, - 0x4d, 0xcf, 0xe1, 0x37, 0x39, 0xe7, 0x8e, 0xab, 0x90, 0x16, 0x0b, 0xb0, 0xd5, 0x82, 0x68, 0xb9, - 0xcc, 0xb2, 0x5e, 0xfe, 0xe1, 0xbf, 0x11, 0x52, 0x24, 0xd2, 0x24, 0xd9, 0xd5, 0xd8, 0xa8, 0x49, - 0x31, 0x83, 0x7b, 0x30, 0xa2, 0x24, 0xa5, 0xd7, 0x09, 0xaf, 0xaf, 0x07, 0x5a, 0x99, 0x3b, 0x54, - 0x3a, 0x7d, 0x1e, 0x20, 0x11, 0x95, 0x88, 0x4a, 0x44, 0x25, 0xa2, 0x12, 0x51, 0x89, 0xa8, 0x44, - 0x54, 0x22, 0xea, 0x6b, 0x11, 0x75, 0xc2, 0x15, 0x4a, 0x26, 0xd9, 0xf5, 0x1d, 0x29, 0x15, 0x93, - 0x52, 0xe5, 0xad, 0xf1, 0xe1, 0x49, 0x75, 0x56, 0x90, 0xa4, 0x55, 0xd2, 0x2a, 0x69, 0x95, 0xb4, - 0x4a, 0x5a, 0x25, 0xad, 0x92, 0x56, 0x49, 0xab, 0xaf, 0xa5, 0xd5, 0xa7, 0x6c, 0x31, 0x24, 0xd6, - 0x29, 0xd6, 0x20, 0xb5, 0x62, 0x52, 0xab, 0xd2, 0x37, 0xa2, 0xaf, 0xba, 0x7e, 0x2c, 0x45, 0x02, - 0x74, 0xba, 0x55, 0x96, 0xa1, 0xcf, 0xe2, 0x23, 0xab, 0x92, 0x55, 0xc9, 0xaa, 0x64, 0x55, 0xb2, - 0x2a, 0x59, 0x75, 0xcd, 0x58, 0x55, 0x75, 0xa5, 0x36, 0xca, 0xdc, 0x81, 0xf2, 0x6a, 0x05, 0x28, - 0xa6, 0x83, 0xf1, 0xad, 0xfa, 0x22, 0x12, 0xc0, 0x92, 0x3a, 0x69, 0xd0, 0x83, 0xa3, 0xbf, 0xea, - 0x87, 0x07, 0x7b, 0xad, 0x66, 0xe3, 0xec, 0x74, 0xbf, 0xd5, 0xdc, 0xaf, 0x9f, 0x34, 0x8e, 0xd0, - 0xaa, 0xeb, 0x5f, 0xa2, 0x3f, 0x18, 0xed, 0xfe, 0x78, 0x0e, 0x77, 0x42, 0xf8, 0x2f, 0xc8, 0x63, - 0xf0, 0x73, 0xad, 0xdb, 0x68, 0x1e, 0xfc, 0x79, 0x70, 0x54, 0x3f, 0x6d, 0x34, 0x3d, 0xbc, 0x13, - 0xf2, 0x3f, 0xb0, 0x55, 0x5f, 0xd7, 0xaa, 0x7f, 0x1c, 0x9e, 0x9d, 0x9c, 0xee, 0x37, 0x5b, 0x87, - 0x8d, 0xc6, 0x31, 0xdb, 0x75, 0x75, 0xda, 0xb5, 0x7e, 0xc2, 0x26, 0x5d, 0xb5, 0x54, 0x6d, 0x1c, - 0x7d, 0xdd, 0xdf, 0x03, 0x6c, 0x51, 0xa8, 0x88, 0x2e, 0x38, 0x1e, 0x01, 0x8b, 0x02, 0xc1, 0x1d, - 0xec, 0x8b, 0xc4, 0xf8, 0xd7, 0x61, 0x57, 0xf5, 0x94, 0xec, 0xe2, 0x99, 0x83, 0xd3, 0xe1, 0xd1, - 0x1b, 0x9c, 0x15, 0x0e, 0xbd, 0xc1, 0x39, 0x3a, 0x14, 0xbd, 0xc1, 0xb9, 0x7a, 0x3a, 0xbd, 0xc1, - 0x05, 0x03, 0xa4, 0x37, 0x58, 0x20, 0xf6, 0x05, 0xf6, 0x06, 0x8d, 0xba, 0x96, 0x46, 0x75, 0xae, - 0x92, 0x6a, 0x19, 0xd0, 0x1b, 0xfc, 0x04, 0x14, 0xd2, 0x99, 0x56, 0xa3, 0xf3, 0xe6, 0x3d, 0x2d, - 0x74, 0x98, 0xc8, 0x4e, 0xa8, 0xbb, 0x09, 0xd2, 0x2d, 0x6b, 0x0a, 0x7d, 0x29, 0xe1, 0xfc, 0x36, - 0xbc, 0xa1, 0x9e, 0xf7, 0x4d, 0x69, 0x38, 0x45, 0x04, 0x65, 0xc0, 0x5c, 0x78, 0x23, 0x57, 0x17, - 0x38, 0xbe, 0xaf, 0xb1, 0xe8, 0x18, 0x15, 0xea, 0x3d, 0x75, 0x99, 0x66, 0xeb, 0x16, 0xfd, 0x98, - 0xdf, 0x49, 0x09, 0x71, 0xcb, 0x94, 0x58, 0x30, 0x25, 0x4a, 0x9f, 0xca, 0xe5, 0x6a, 0xad, 0x5c, - 0xde, 0xaa, 0xed, 0xd4, 0xb6, 0x76, 0x2b, 0x95, 0x52, 0x15, 0xe9, 0xc9, 0x56, 0xe1, 0xb2, 0xe4, - 0x1d, 0xa3, 0x99, 0xf5, 0x75, 0x41, 0x8f, 0x0b, 0xa5, 0x8a, 0xc2, 0x1c, 0xe4, 0x90, 0x83, 0x7a, - 0x8c, 0x03, 0x1d, 0x40, 0x0b, 0x38, 0x7d, 0xad, 0x79, 0xba, 0x12, 0x7d, 0xad, 0xb9, 0x7a, 0x3a, - 0x7d, 0xad, 0x05, 0x03, 0xa4, 0xaf, 0x55, 0xa0, 0x31, 0x04, 0xb0, 0xaf, 0x35, 0x50, 0xda, 0xec, - 0x6c, 0x03, 0x5a, 0x5a, 0x35, 0x5a, 0x46, 0xff, 0xf2, 0x45, 0xcb, 0x68, 0x25, 0xc7, 0xc7, 0xb4, - 0x8c, 0x8a, 0x5e, 0xee, 0xa7, 0x53, 0x82, 0x96, 0xd1, 0xc2, 0x29, 0x51, 0xde, 0xde, 0x2d, 0xef, - 0x56, 0x6b, 0xdb, 0xbb, 0x34, 0x8a, 0x56, 0xc0, 0x9a, 0xd9, 0xa0, 0x51, 0x04, 0x78, 0x3f, 0x20, - 0x8c, 0x22, 0xac, 0x01, 0x3e, 0xd6, 0x11, 0x51, 0xa0, 0x45, 0x9b, 0x36, 0xd1, 0x3c, 0x3d, 0x89, - 0x36, 0xd1, 0x5c, 0x3d, 0x9d, 0x36, 0xd1, 0x82, 0x01, 0xd2, 0x26, 0x2a, 0xd0, 0xb8, 0x01, 0x79, - 0x69, 0x64, 0x74, 0x53, 0xf6, 0xe1, 0x72, 0x30, 0x5b, 0x1a, 0xf9, 0x09, 0x6b, 0x2b, 0x0f, 0x23, - 0x63, 0x0d, 0x67, 0x17, 0x79, 0xff, 0x7b, 0xff, 0xfe, 0x7c, 0xcb, 0xdf, 0xbd, 0xb8, 0x3f, 0x2f, - 0xf9, 0xbb, 0x17, 0xe9, 0x65, 0x69, 0xf4, 0x2d, 0xbd, 0xde, 0x3e, 0xdf, 0xf2, 0xcb, 0x93, 0xeb, - 0xca, 0xf9, 0x96, 0x5f, 0xb9, 0xd8, 0xfc, 0xfb, 0xef, 0x8f, 0x9b, 0xbf, 0x76, 0x1e, 0xe6, 0x7f, - 0x63, 0x30, 0xfe, 0xb0, 0xcd, 0xfb, 0xf7, 0xe7, 0x25, 0x7f, 0xfb, 0x62, 0xf2, 0x3f, 0x3b, 0xe7, - 0x5b, 0xfe, 0xf6, 0xc5, 0xe6, 0xe6, 0x7f, 0x3c, 0x8e, 0x00, 0x38, 0x02, 0xc8, 0xf5, 0xd1, 0xf1, - 0x56, 0x24, 0xe1, 0xc0, 0x48, 0xbc, 0x61, 0xc0, 0xd3, 0xe0, 0x38, 0x16, 0xe0, 0x58, 0x80, 0x63, - 0x01, 0x8e, 0x05, 0x38, 0x16, 0xe0, 0x58, 0x60, 0xcd, 0xc6, 0x02, 0xed, 0x30, 0xec, 0x4b, 0xa1, - 0x11, 0xc7, 0x01, 0x25, 0xa2, 0x1c, 0x40, 0x04, 0xae, 0xcf, 0xfb, 0xab, 0x6b, 0x1d, 0x1a, 0x61, - 0x14, 0xc8, 0x6e, 0x7b, 0x5e, 0xd2, 0xf9, 0x2e, 0xaf, 0x45, 0x34, 0xde, 0xe2, 0x31, 0x08, 0x23, - 0xa9, 0x3b, 0x23, 0x50, 0xf2, 0xb5, 0x34, 0x3f, 0xc3, 0xf8, 0xca, 0x57, 0x3a, 0x31, 0x42, 0x77, - 0x64, 0xf0, 0xfc, 0x85, 0x24, 0xf7, 0x4a, 0x10, 0xc5, 0xa1, 0x09, 0x3b, 0x61, 0x3f, 0xc9, 0xae, - 0x82, 0xf6, 0x65, 0x14, 0xc4, 0xaa, 0x1d, 0x88, 0x9e, 0xf2, 0x13, 0xd1, 0x53, 0x49, 0x76, 0x15, - 0x8c, 0x06, 0xee, 0x03, 0xad, 0x3a, 0x22, 0x31, 0x81, 0x96, 0xea, 0xf2, 0x7b, 0x3b, 0x8c, 0x93, - 0xec, 0x2a, 0x10, 0xdd, 0x1f, 0x23, 0x25, 0x08, 0x07, 0xc6, 0x8f, 0xc2, 0xc4, 0x04, 0x23, 0xbc, - 0x4d, 0xd2, 0x6f, 0xe9, 0x96, 0x92, 0x3c, 0x50, 0xd9, 0x7e, 0x97, 0x19, 0xe8, 0x2b, 0x1d, 0xfe, - 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0x61, 0x8b, 0xe0, 0x9c, 0xae, 0x3c, 0x23, 0x36, 0x1e, 0xb5, - 0xcc, 0xa3, 0x96, 0x8b, 0x34, 0xda, 0xe1, 0x51, 0xcb, 0x45, 0x1f, 0xd5, 0xf0, 0xa8, 0x65, 0x48, - 0xf4, 0x82, 0x39, 0x6a, 0x39, 0x27, 0x52, 0x78, 0x76, 0x62, 0x3e, 0x44, 0x2c, 0x53, 0xb1, 0x44, - 0x53, 0x11, 0x5e, 0x5e, 0xb1, 0x65, 0x16, 0x55, 0x6e, 0xe1, 0x65, 0x17, 0x5e, 0x7e, 0xe1, 0x65, - 0x18, 0xc7, 0x8b, 0xd9, 0x00, 0x32, 0x15, 0x51, 0xe4, 0x39, 0x0b, 0x68, 0x74, 0x30, 0xb0, 0x41, - 0xb3, 0x3a, 0xa7, 0x2a, 0xea, 0x63, 0x88, 0x60, 0xa9, 0x87, 0x39, 0x79, 0x1b, 0x4e, 0xae, 0x91, - 0x65, 0xbb, 0x18, 0xf2, 0x8d, 0x2e, 0xe3, 0x85, 0x91, 0xf3, 0xc2, 0xc8, 0x7a, 0x61, 0xe4, 0x1d, - 0x4b, 0xe6, 0xc1, 0xe4, 0x3e, 0x6b, 0xc5, 0x53, 0x44, 0x81, 0xdd, 0xc0, 0x3e, 0x26, 0x2c, 0x37, - 0x1a, 0xae, 0x01, 0xc6, 0xf6, 0xe4, 0xd8, 0xb0, 0xf4, 0xf4, 0xaf, 0x47, 0x58, 0xe1, 0x72, 0x1f, - 0xf4, 0xd4, 0xf4, 0xd2, 0xa7, 0x6b, 0xb0, 0xe0, 0x9b, 0x86, 0x87, 0x09, 0xbd, 0x25, 0x42, 0x2f, - 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x52, 0x59, 0x67, 0xb7, 0x22, 0x9a, 0xd7, 0x95, 0x05, - 0x36, 0x62, 0xb4, 0xbe, 0x04, 0xde, 0x29, 0x63, 0xca, 0xfa, 0x1a, 0x46, 0xfa, 0x81, 0xdb, 0x17, - 0xac, 0x10, 0x14, 0x14, 0x01, 0x0e, 0x8a, 0x05, 0x09, 0x45, 0x81, 0x85, 0xc2, 0x41, 0x43, 0xe1, - 0xe0, 0xa1, 0x70, 0x10, 0x81, 0x09, 0x13, 0xa0, 0x50, 0x91, 0xb5, 0x2e, 0xac, 0xa3, 0x96, 0xab, - 0x9b, 0x03, 0xa5, 0x4d, 0xa9, 0x8a, 0x5c, 0x33, 0xc7, 0x2a, 0x5e, 0x05, 0x0e, 0x11, 0x73, 0x03, - 0xb8, 0xe7, 0x5f, 0xd8, 0x9a, 0xb3, 0x81, 0xbe, 0x41, 0x5c, 0xc1, 0xf0, 0x32, 0x17, 0x2e, 0xf8, - 0x06, 0x72, 0xb9, 0x78, 0x0b, 0xb0, 0x69, 0x56, 0x41, 0xe4, 0x68, 0x3a, 0xc5, 0xc4, 0x2d, 0x53, - 0x6c, 0xc9, 0x29, 0x56, 0xad, 0x54, 0x76, 0x2a, 0x4c, 0xb3, 0xf5, 0x62, 0x51, 0xfc, 0xe8, 0x2e, - 0xde, 0xf1, 0x7e, 0x15, 0xb4, 0x8c, 0x03, 0xcf, 0x84, 0xcb, 0x0d, 0x29, 0x50, 0x67, 0xc4, 0x15, - 0x44, 0x55, 0xe8, 0x0b, 0xbe, 0x65, 0x67, 0xa4, 0x2f, 0xf8, 0xa6, 0x99, 0x43, 0x5f, 0x70, 0xc9, - 0x01, 0xd3, 0x17, 0x5c, 0xe1, 0x81, 0x58, 0xc1, 0x7c, 0xc1, 0x4f, 0x05, 0xb0, 0x05, 0x2b, 0xb4, - 0x05, 0x17, 0xfc, 0xa2, 0x2d, 0x48, 0xcf, 0x82, 0xb6, 0xe0, 0x1a, 0xaa, 0xd1, 0x74, 0x8a, 0xd1, - 0x16, 0x5c, 0x7a, 0x8a, 0x6d, 0x57, 0x68, 0x0a, 0xae, 0x19, 0x88, 0xe2, 0x47, 0x47, 0x53, 0xb0, - 0xb0, 0x45, 0x3c, 0x75, 0xda, 0x6e, 0xc6, 0xd5, 0xa5, 0x08, 0xae, 0x60, 0x1a, 0x2b, 0x6d, 0xc1, - 0xd7, 0x84, 0x47, 0x5b, 0xf0, 0x0d, 0x7b, 0x23, 0x6d, 0xc1, 0x37, 0xcd, 0x1c, 0xda, 0x82, 0x4b, - 0x0e, 0x98, 0xb6, 0xe0, 0x0a, 0x0f, 0xc4, 0x0a, 0x64, 0x0b, 0xb6, 0x95, 0x16, 0xf1, 0x5d, 0x01, - 0x7c, 0xc1, 0x5d, 0xe0, 0x10, 0x0f, 0xa5, 0xbe, 0x1c, 0x2d, 0xcc, 0xa5, 0x31, 0xb8, 0xa8, 0x6b, - 0x41, 0x63, 0x70, 0xe9, 0xae, 0x45, 0x89, 0x9e, 0xc5, 0x9a, 0xe9, 0xd1, 0x74, 0x8a, 0xd1, 0x18, - 0x5c, 0x7a, 0x8a, 0x71, 0xbe, 0xe0, 0x1a, 0xc2, 0x28, 0x7e, 0x74, 0xb4, 0x06, 0x0b, 0x5b, 0xc6, - 0x3d, 0x79, 0x6b, 0xa4, 0xee, 0xca, 0x2e, 0xbe, 0x31, 0x98, 0x45, 0x4a, 0x5b, 0xf0, 0x35, 0xe1, - 0xd1, 0x16, 0x7c, 0xc3, 0xbe, 0x48, 0x5b, 0xf0, 0x4d, 0x33, 0x87, 0xb6, 0xe0, 0x92, 0x03, 0xa6, - 0x2d, 0xb8, 0xc2, 0xc3, 0xb0, 0x22, 0xd9, 0x82, 0x70, 0x67, 0x7e, 0xbd, 0x24, 0xe3, 0x20, 0x67, - 0x80, 0x11, 0x6a, 0x5f, 0xd3, 0x86, 0x61, 0x34, 0x1c, 0x79, 0x8a, 0x3e, 0x3e, 0xd4, 0x66, 0x91, - 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, - 0x6a, 0x99, 0x14, 0xd3, 0x6d, 0x18, 0x89, 0xd8, 0xa8, 0x22, 0x30, 0xed, 0x24, 0x50, 0x22, 0x2d, - 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x93, - 0x62, 0xba, 0x0d, 0x4d, 0x2c, 0x74, 0xa2, 0x8c, 0xba, 0x29, 0xc0, 0xba, 0xa4, 0x27, 0xb1, 0x12, - 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, - 0x19, 0x11, 0x68, 0x8a, 0x7a, 0x75, 0xad, 0x43, 0x23, 0x8c, 0x0a, 0x31, 0x17, 0x40, 0x79, 0x49, - 0xe7, 0xbb, 0xbc, 0x16, 0xd1, 0xf8, 0x00, 0xca, 0x20, 0x8c, 0xa4, 0xee, 0x8c, 0x40, 0xd1, 0xd7, - 0xd2, 0xfc, 0x0c, 0xe3, 0x2b, 0x5f, 0xe9, 0xc4, 0x08, 0xdd, 0x91, 0xc1, 0xf3, 0x17, 0x92, 0xdc, - 0x2b, 0x41, 0x14, 0x87, 0x26, 0xec, 0x84, 0xfd, 0x24, 0xbb, 0x0a, 0xda, 0x97, 0x51, 0x10, 0xab, - 0x76, 0x20, 0x7a, 0xca, 0x4f, 0x44, 0x4f, 0x25, 0xd9, 0x55, 0xa0, 0xa2, 0x9b, 0xb2, 0x3f, 0xd0, - 0xaa, 0x23, 0x12, 0x13, 0x68, 0xa9, 0x2e, 0xbf, 0xb7, 0xc3, 0x38, 0xc9, 0xae, 0x02, 0xd1, 0xfd, - 0x31, 0x52, 0xaa, 0x70, 0x60, 0xfc, 0x28, 0x4c, 0x4c, 0x10, 0x87, 0x03, 0x23, 0x93, 0xf4, 0x5b, - 0x30, 0xd0, 0x57, 0x3a, 0xfc, 0xa9, 0x7d, 0x61, 0x4c, 0xac, 0xda, 0xa3, 0x1f, 0xe4, 0x5e, 0x4a, - 0x8f, 0xd3, 0xe4, 0x21, 0x9a, 0xc8, 0x91, 0xa0, 0x1c, 0xaa, 0xff, 0x5f, 0x79, 0x87, 0xb8, 0x2b, - 0xae, 0x77, 0xa8, 0x12, 0x53, 0x37, 0x06, 0xec, 0xc4, 0xff, 0x6f, 0x4a, 0xef, 0xf7, 0xe5, 0x10, - 0x29, 0x13, 0xef, 0xf3, 0x86, 0x1e, 0xf4, 0xfb, 0x40, 0x27, 0xb2, 0x7e, 0x13, 0xb7, 0xb8, 0xc1, - 0x35, 0xe2, 0xae, 0x8c, 0x65, 0xf7, 0xcb, 0xdd, 0x38, 0x34, 0x26, 0x21, 0xbe, 0x5c, 0xae, 0xb8, - 0x4c, 0x7a, 0x50, 0xa7, 0x29, 0xc7, 0x83, 0x8e, 0xd1, 0xe3, 0xf1, 0xc2, 0x51, 0x7a, 0xeb, 0x0e, - 0xc6, 0x77, 0xae, 0x75, 0x3c, 0xbe, 0x5f, 0xad, 0x2f, 0x97, 0x51, 0xab, 0xa9, 0xda, 0xad, 0x7a, - 0x4f, 0x9d, 0x88, 0x9e, 0x6a, 0x1d, 0x44, 0x37, 0xe5, 0xb3, 0xf4, 0x1e, 0xb5, 0x8e, 0xc6, 0x77, - 0xa6, 0x55, 0xef, 0xfe, 0x68, 0xaa, 0x76, 0x63, 0x60, 0x8e, 0xc3, 0xc4, 0xb4, 0x9a, 0xc3, 0xfb, - 0xd1, 0x3a, 0x4b, 0xff, 0xf8, 0x7a, 0xf6, 0xb7, 0xbf, 0xa3, 0x14, 0xbb, 0x8f, 0xc0, 0x71, 0xfd, - 0x41, 0xab, 0x3b, 0x2b, 0x55, 0x6f, 0xdc, 0x66, 0x98, 0xbb, 0x7e, 0xed, 0xe6, 0x93, 0x1d, 0x65, - 0xd2, 0x04, 0x9f, 0x53, 0xff, 0x76, 0x63, 0xd8, 0x73, 0x7d, 0xe5, 0x6a, 0xad, 0x28, 0x06, 0x33, - 0x43, 0x31, 0x32, 0x14, 0x13, 0x63, 0x30, 0xb0, 0xab, 0x4c, 0x01, 0xd1, 0x9a, 0xe2, 0x6a, 0x8c, - 0x43, 0x5c, 0x5d, 0x36, 0x9e, 0xba, 0xd1, 0x4a, 0xfb, 0x4a, 0x65, 0xf7, 0x13, 0x2d, 0x67, 0xba, - 0xeb, 0x0c, 0x2f, 0x62, 0x66, 0xdb, 0xed, 0xf8, 0xf6, 0xba, 0x9f, 0xc5, 0xae, 0xe7, 0xa5, 0x66, - 0xb7, 0xed, 0x1e, 0x97, 0x3d, 0xdb, 0x4b, 0x3f, 0xde, 0x72, 0xaa, 0x4d, 0x9e, 0xd6, 0x59, 0xfe, - 0xd8, 0x6c, 0x32, 0xcd, 0xb6, 0xe5, 0x0f, 0x76, 0x38, 0x49, 0x06, 0x63, 0xf2, 0x8b, 0xeb, 0x49, - 0x2d, 0x30, 0x93, 0x55, 0x60, 0x26, 0xa1, 0xc0, 0x4c, 0x2e, 0x21, 0x54, 0x10, 0x2a, 0xc6, 0x50, - 0xe1, 0xe0, 0xb9, 0xaf, 0x45, 0xa6, 0x78, 0xb7, 0x42, 0xfd, 0xdb, 0x55, 0xbf, 0x2e, 0x54, 0x7f, - 0xf6, 0xac, 0x52, 0xe4, 0x92, 0x46, 0xb8, 0x76, 0xd2, 0x71, 0xf9, 0xc9, 0x61, 0x21, 0x31, 0xbc, - 0xa9, 0x0e, 0x10, 0xdb, 0xa3, 0x9d, 0xc7, 0x63, 0x40, 0x9e, 0x05, 0x60, 0xa9, 0x18, 0xd8, 0xc5, - 0x79, 0xeb, 0x73, 0xe2, 0x5d, 0xe0, 0xbb, 0x5b, 0x6c, 0x77, 0x85, 0xeb, 0xce, 0x31, 0xdd, 0x39, - 0x9e, 0x3b, 0xc7, 0xf2, 0xd5, 0xc2, 0x94, 0x3d, 0x65, 0xf7, 0x69, 0x92, 0x37, 0xf6, 0xc5, 0x9c, - 0xd9, 0x39, 0xe3, 0xcf, 0xa7, 0x9f, 0x43, 0x3f, 0x87, 0x7e, 0x0e, 0xfd, 0x1c, 0xfa, 0x39, 0x05, - 0x17, 0x94, 0x69, 0x61, 0x71, 0x97, 0x6f, 0x53, 0xfa, 0xe2, 0x2a, 0xd7, 0xdc, 0xc8, 0x8c, 0xb3, - 0x71, 0x07, 0x92, 0xec, 0x60, 0xc9, 0x0f, 0x8a, 0x0c, 0xc1, 0xc9, 0x11, 0x9c, 0x2c, 0xc1, 0xc9, - 0x93, 0x1b, 0x99, 0x72, 0x24, 0x57, 0xce, 0x65, 0x2b, 0x0b, 0x60, 0x32, 0xb5, 0xd0, 0x79, 0xa6, - 0x3e, 0xee, 0xb7, 0xe6, 0x72, 0xae, 0xe3, 0x73, 0x49, 0x73, 0xbc, 0xbb, 0x03, 0xcc, 0x36, 0x13, - 0x48, 0xdb, 0x49, 0x60, 0x6e, 0x1b, 0x81, 0xb6, 0x3d, 0x04, 0xec, 0x36, 0x10, 0xb0, 0xdb, 0x3d, - 0xc0, 0x6e, 0xeb, 0xb0, 0xde, 0x8b, 0x49, 0x60, 0xb6, 0x63, 0xc8, 0xea, 0x4e, 0x5f, 0x8a, 0x5e, - 0x2c, 0x7b, 0x08, 0x45, 0x67, 0x32, 0xf2, 0xaa, 0x01, 0xc4, 0x72, 0x3c, 0x7e, 0xf8, 0xfb, 0xf1, - 0x63, 0x3a, 0x61, 0x20, 0x98, 0x48, 0xf9, 0xba, 0xae, 0x58, 0x71, 0x38, 0xfe, 0x8a, 0x30, 0xe4, - 0xfa, 0x91, 0xea, 0x20, 0x06, 0x5f, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0x47, 0xa8, 0x23, - 0xd4, 0x11, 0xea, 0x5e, 0x09, 0x75, 0x69, 0xd9, 0x21, 0xd3, 0x59, 0x6f, 0x0a, 0x37, 0x0b, 0x52, - 0x5e, 0x4c, 0x18, 0x17, 0x0b, 0x54, 0x5e, 0x4c, 0x15, 0x12, 0x1d, 0x89, 0x8e, 0x44, 0x47, 0xa2, - 0x23, 0xd1, 0xb9, 0x6a, 0x15, 0xd7, 0x4f, 0xb2, 0xb2, 0x40, 0x46, 0x5b, 0xce, 0x29, 0xdd, 0x95, - 0x38, 0x9b, 0x5f, 0x3f, 0xce, 0x03, 0x7f, 0x8c, 0x0d, 0x65, 0x9f, 0x3e, 0xa8, 0x6d, 0xd6, 0xe1, - 0xb6, 0x55, 0x47, 0xdc, 0x46, 0x1d, 0x7b, 0xdb, 0x74, 0xd4, 0x6d, 0xd2, 0xe1, 0xb7, 0x45, 0x87, - 0xdf, 0x06, 0x1d, 0x7e, 0xdb, 0x73, 0xee, 0xc0, 0x0a, 0x69, 0xb1, 0x00, 0x5b, 0x2d, 0x88, 0x96, - 0xcb, 0x2c, 0xeb, 0xe5, 0x1f, 0xfe, 0x1b, 0x21, 0x45, 0x22, 0x4d, 0x92, 0x5d, 0x8d, 0x8d, 0x9a, - 0x14, 0x33, 0xb8, 0x1f, 0x23, 0x4a, 0x52, 0x7a, 0x9d, 0xf0, 0xfa, 0x7a, 0xa0, 0x95, 0xb9, 0x43, - 0xa5, 0xd3, 0xe7, 0x01, 0x12, 0x51, 0x89, 0xa8, 0x44, 0x54, 0x22, 0x2a, 0x11, 0x95, 0x88, 0x4a, - 0x44, 0x25, 0xa2, 0xbe, 0x16, 0x51, 0x27, 0x5c, 0xa1, 0x64, 0x92, 0x5d, 0xdf, 0x91, 0x52, 0x31, - 0x29, 0x55, 0xde, 0x1a, 0x1f, 0x9e, 0x54, 0x67, 0x05, 0x49, 0x5a, 0x25, 0xad, 0x92, 0x56, 0x49, - 0xab, 0xa4, 0x55, 0xd2, 0x2a, 0x69, 0x95, 0xb4, 0xfa, 0x5a, 0x5a, 0x7d, 0xca, 0x16, 0x43, 0x62, - 0x9d, 0x62, 0x0d, 0x52, 0x2b, 0x26, 0xb5, 0x2a, 0x7d, 0x23, 0xfa, 0xaa, 0xeb, 0xc7, 0x52, 0x24, - 0x40, 0xa7, 0x5d, 0x65, 0x19, 0xfa, 0x2c, 0x3e, 0xb2, 0x2a, 0x59, 0x95, 0xac, 0x4a, 0x56, 0x25, - 0xab, 0x92, 0x55, 0xd7, 0x8c, 0x55, 0x55, 0x57, 0x6a, 0xa3, 0xcc, 0x1d, 0x28, 0xaf, 0x56, 0x80, - 0x62, 0x3a, 0x18, 0xdf, 0xaa, 0x2f, 0x22, 0x01, 0x2c, 0xa9, 0x93, 0x06, 0x3d, 0x38, 0xfa, 0xab, - 0x7e, 0x78, 0xb0, 0xd7, 0x6a, 0x36, 0xce, 0x4e, 0xf7, 0x5b, 0xcd, 0xfd, 0xfa, 0x49, 0xe3, 0x08, - 0xad, 0xba, 0xfe, 0x25, 0xfa, 0x83, 0xd1, 0xee, 0x8f, 0xe7, 0x70, 0x67, 0x86, 0xff, 0x82, 0x3c, - 0x18, 0x3f, 0xd7, 0xba, 0x8d, 0xe6, 0xc1, 0x9f, 0x07, 0x47, 0xf5, 0xd3, 0x46, 0xd3, 0xc3, 0x3b, - 0x33, 0xff, 0x03, 0x5b, 0xf5, 0x75, 0xad, 0xfa, 0xc7, 0xe1, 0xd9, 0xc9, 0xe9, 0x7e, 0xb3, 0x75, - 0xd8, 0x68, 0x1c, 0xb3, 0x5d, 0x57, 0xa7, 0x5d, 0xeb, 0x27, 0x6c, 0xd2, 0x55, 0x4b, 0xd5, 0xc6, - 0xd1, 0xd7, 0xfd, 0x3d, 0xc0, 0x16, 0x85, 0x8a, 0xe8, 0x82, 0xe3, 0x11, 0xb0, 0x28, 0x10, 0xdc, - 0xc1, 0xbe, 0x48, 0x8c, 0x7f, 0x1d, 0x76, 0x55, 0x4f, 0xc9, 0x2e, 0x9e, 0x39, 0x38, 0x1d, 0x1e, - 0xbd, 0xc1, 0x59, 0xe1, 0xd0, 0x1b, 0x9c, 0xa3, 0x43, 0xd1, 0x1b, 0x9c, 0xab, 0xa7, 0xd3, 0x1b, - 0x5c, 0x30, 0x40, 0x7a, 0x83, 0x05, 0x62, 0x5f, 0x60, 0x6f, 0xd0, 0xa8, 0x6b, 0x69, 0x54, 0xe7, - 0x2a, 0xa9, 0x96, 0x01, 0xbd, 0xc1, 0x4f, 0x40, 0x21, 0x9d, 0x69, 0x35, 0x3a, 0x79, 0xde, 0xd3, - 0x42, 0x87, 0x89, 0xec, 0x84, 0xba, 0x9b, 0x20, 0xdd, 0xb2, 0xa6, 0xd0, 0x97, 0x12, 0xce, 0x6f, - 0xc3, 0x1b, 0xea, 0x79, 0xdf, 0x94, 0x86, 0x53, 0x44, 0x50, 0x06, 0xcc, 0x85, 0x37, 0x72, 0x75, - 0x81, 0xe3, 0xfb, 0x1a, 0x8b, 0x8e, 0x51, 0xa1, 0xde, 0x53, 0x97, 0x69, 0xb6, 0x6e, 0xd1, 0x8f, - 0xf9, 0x9d, 0x94, 0x10, 0xb7, 0x4c, 0x89, 0x05, 0x53, 0xa2, 0xf4, 0xa9, 0x5c, 0xae, 0xd6, 0xca, - 0xe5, 0xad, 0xda, 0x4e, 0x6d, 0x6b, 0xb7, 0x52, 0x29, 0x55, 0x91, 0x9e, 0x6c, 0x15, 0x2e, 0x4b, - 0xde, 0x31, 0x9a, 0x59, 0x5f, 0x17, 0xf4, 0xb8, 0x50, 0xaa, 0x28, 0xcc, 0x41, 0x0e, 0x39, 0xa8, - 0xc7, 0x38, 0xd0, 0x01, 0xb4, 0x80, 0xd3, 0xd7, 0x9a, 0xa7, 0x2b, 0xd1, 0xd7, 0x9a, 0xab, 0xa7, - 0xd3, 0xd7, 0x5a, 0x30, 0x40, 0xfa, 0x5a, 0x05, 0x1a, 0x43, 0x00, 0xfb, 0x5a, 0x03, 0xa5, 0xcd, - 0xce, 0x36, 0xa0, 0xa5, 0x55, 0xa3, 0x65, 0xf4, 0x2f, 0x5f, 0xb4, 0x8c, 0x56, 0x72, 0x7c, 0x4c, - 0xcb, 0xa8, 0xe8, 0xe5, 0x7e, 0x3a, 0x25, 0x68, 0x19, 0x2d, 0x9c, 0x12, 0xe5, 0xed, 0xdd, 0xf2, - 0x6e, 0xb5, 0xb6, 0xbd, 0x4b, 0xa3, 0x68, 0x05, 0xac, 0x99, 0x0d, 0x1a, 0x45, 0x80, 0xf7, 0x03, - 0xc2, 0x28, 0xc2, 0x1a, 0xe0, 0x63, 0x1d, 0x11, 0x05, 0x5a, 0xb4, 0x69, 0x13, 0xcd, 0xd3, 0x93, - 0x68, 0x13, 0xcd, 0xd5, 0xd3, 0x69, 0x13, 0x2d, 0x18, 0x20, 0x6d, 0xa2, 0x02, 0x8d, 0x1b, 0x90, - 0x97, 0x46, 0x46, 0x37, 0x65, 0x1f, 0x2e, 0x07, 0xb3, 0xa5, 0x91, 0x9f, 0xb0, 0xb6, 0xf2, 0x30, - 0x32, 0xd6, 0x70, 0x76, 0x91, 0xf7, 0xbf, 0xf7, 0xef, 0xcf, 0xb7, 0xfc, 0xdd, 0x8b, 0xfb, 0xf3, - 0x92, 0xbf, 0x7b, 0x91, 0x5e, 0x96, 0x46, 0xdf, 0xd2, 0xeb, 0xed, 0xf3, 0x2d, 0xbf, 0x3c, 0xb9, - 0xae, 0x9c, 0x6f, 0xf9, 0x95, 0x8b, 0xcd, 0xbf, 0xff, 0xfe, 0xb8, 0xf9, 0x6b, 0xe7, 0x61, 0xfe, - 0x37, 0x06, 0xe3, 0x0f, 0xdb, 0xbc, 0x7f, 0x7f, 0x5e, 0xf2, 0xb7, 0x2f, 0x26, 0xff, 0xb3, 0x73, - 0xbe, 0xe5, 0x6f, 0x5f, 0x6c, 0x6e, 0xfe, 0xc7, 0xe3, 0x08, 0x80, 0x23, 0x80, 0x5c, 0x1f, 0x1d, - 0x6f, 0x45, 0x12, 0x0e, 0x8c, 0xc4, 0x1b, 0x06, 0x3c, 0x0d, 0x8e, 0x63, 0x01, 0x8e, 0x05, 0x38, - 0x16, 0xe0, 0x58, 0x80, 0x63, 0x01, 0x8e, 0x05, 0xd6, 0x6c, 0x2c, 0xd0, 0x0e, 0xc3, 0xbe, 0x14, - 0x1a, 0x71, 0x1c, 0x50, 0x22, 0xca, 0x01, 0x44, 0xe0, 0xfa, 0xbc, 0xbf, 0xba, 0xd6, 0xa1, 0x11, - 0x46, 0x81, 0xec, 0xb6, 0xe7, 0x25, 0x9d, 0xef, 0xf2, 0x5a, 0x44, 0xe3, 0x2d, 0x1e, 0x83, 0x30, - 0x92, 0xba, 0x33, 0x02, 0x25, 0x5f, 0x4b, 0xf3, 0x33, 0x8c, 0xaf, 0x7c, 0xa5, 0x13, 0x23, 0x74, - 0x47, 0x06, 0xcf, 0x5f, 0x48, 0x72, 0xaf, 0x04, 0x51, 0x1c, 0x9a, 0xb0, 0x13, 0xf6, 0x93, 0xec, - 0x2a, 0x68, 0x5f, 0x46, 0x41, 0xac, 0xda, 0x81, 0xe8, 0x29, 0x3f, 0x11, 0x3d, 0x95, 0x64, 0x57, - 0xc1, 0x68, 0xe0, 0x3e, 0xd0, 0xaa, 0x23, 0x12, 0x13, 0x68, 0xa9, 0x2e, 0xbf, 0xb7, 0xc3, 0x38, - 0xc9, 0xae, 0x02, 0xd1, 0xfd, 0x31, 0x52, 0x82, 0x70, 0x60, 0x86, 0xe3, 0xfb, 0x60, 0x44, 0xb7, - 0x49, 0xfa, 0x2d, 0xdd, 0x51, 0x92, 0xe7, 0x29, 0xdb, 0xef, 0x31, 0x03, 0x7d, 0xa5, 0xc3, 0x9f, - 0xda, 0x17, 0xc6, 0xc4, 0xaa, 0x3d, 0x6c, 0x11, 0x9c, 0xc3, 0x95, 0x67, 0xc4, 0xc6, 0x93, 0x96, - 0x79, 0xd2, 0x72, 0x91, 0x06, 0x3b, 0x3c, 0x69, 0xb9, 0xe8, 0x83, 0x1a, 0x9e, 0xb4, 0x0c, 0x49, - 0x5e, 0x30, 0x27, 0x2d, 0xe7, 0x44, 0x0a, 0xcf, 0x4d, 0xcc, 0x87, 0x88, 0xe5, 0x29, 0x96, 0xe8, - 0x29, 0xc2, 0xcb, 0x2b, 0xb6, 0xcc, 0xa2, 0xca, 0x2d, 0xbc, 0xec, 0xc2, 0xcb, 0x2f, 0xbc, 0x0c, - 0xe3, 0x58, 0x31, 0x1b, 0x40, 0x9e, 0x22, 0x8a, 0x3c, 0x67, 0x01, 0x8d, 0xce, 0x05, 0x36, 0x68, - 0x4e, 0xe7, 0x54, 0x45, 0x7d, 0x0c, 0x11, 0x2c, 0xf5, 0x30, 0xe7, 0x6e, 0xc3, 0xc9, 0x35, 0xb2, - 0x6c, 0x17, 0x43, 0xbe, 0xd1, 0x65, 0xbc, 0x30, 0x72, 0x5e, 0x18, 0x59, 0x2f, 0x8c, 0xbc, 0x63, - 0xc9, 0x3c, 0x98, 0xdc, 0x67, 0xad, 0x78, 0x8a, 0x28, 0xb0, 0x1b, 0xd8, 0xa7, 0x84, 0xe5, 0x46, - 0xc3, 0x35, 0xc0, 0xd8, 0x9e, 0x9c, 0x1a, 0x96, 0x1e, 0xfe, 0xf5, 0x08, 0x2b, 0x5c, 0xed, 0x83, - 0x9e, 0x9a, 0x5e, 0xfa, 0x74, 0x0d, 0x16, 0x7c, 0xd3, 0xf0, 0x30, 0xa1, 0xb7, 0x44, 0xe8, 0x25, - 0xf4, 0x12, 0x7a, 0x09, 0xbd, 0x84, 0x5e, 0x2a, 0xeb, 0xec, 0x56, 0x44, 0xf3, 0xba, 0xb2, 0xc0, - 0x46, 0x8c, 0xd6, 0x97, 0xc0, 0x1b, 0x65, 0x4c, 0x59, 0x5f, 0xc3, 0x48, 0x3f, 0x70, 0xf7, 0x82, - 0x15, 0x82, 0x82, 0x22, 0xc0, 0x41, 0xb1, 0x20, 0xa1, 0x28, 0xb0, 0x50, 0x38, 0x68, 0x28, 0x1c, - 0x3c, 0x14, 0x0e, 0x22, 0x30, 0x61, 0x02, 0x14, 0x2a, 0xb2, 0xd6, 0x85, 0x75, 0xd4, 0x72, 0x75, - 0x73, 0xa0, 0xb4, 0x29, 0x55, 0x91, 0x6b, 0xe6, 0x58, 0xc5, 0xab, 0xc0, 0x21, 0x62, 0xee, 0xff, - 0xf6, 0xfc, 0x0b, 0x5b, 0x73, 0x36, 0xd0, 0xf7, 0x87, 0x2b, 0x18, 0x5e, 0xe6, 0xc2, 0x05, 0xdf, - 0x3f, 0x2e, 0x17, 0x6f, 0x01, 0xf6, 0xcc, 0x2a, 0x88, 0x1c, 0x4d, 0xa7, 0x98, 0xb8, 0x65, 0x8a, - 0x2d, 0x39, 0xc5, 0xaa, 0x95, 0xca, 0x4e, 0x85, 0x69, 0xb6, 0x5e, 0x2c, 0x8a, 0x1f, 0xdd, 0xc5, - 0x3b, 0xde, 0xaf, 0x82, 0x96, 0x71, 0xe0, 0x99, 0x70, 0xb9, 0x21, 0x05, 0xea, 0x8c, 0xb8, 0x82, - 0xa8, 0x0a, 0x7d, 0xc1, 0xb7, 0xec, 0x8c, 0xf4, 0x05, 0xdf, 0x34, 0x73, 0xe8, 0x0b, 0x2e, 0x39, - 0x60, 0xfa, 0x82, 0x2b, 0x3c, 0x10, 0x2b, 0x98, 0x2f, 0xf8, 0xa9, 0x00, 0xb6, 0x60, 0x85, 0xb6, - 0xe0, 0x82, 0x5f, 0xb4, 0x05, 0xe9, 0x59, 0xd0, 0x16, 0x5c, 0x43, 0x35, 0x9a, 0x4e, 0x31, 0xda, - 0x82, 0x4b, 0x4f, 0xb1, 0xed, 0x0a, 0x4d, 0xc1, 0x35, 0x03, 0x51, 0xfc, 0xe8, 0x68, 0x0a, 0x16, - 0xb6, 0x88, 0xa7, 0x4e, 0xdb, 0xcd, 0xb8, 0xba, 0x14, 0xc1, 0x15, 0x4c, 0x63, 0xa5, 0x2d, 0xf8, - 0x9a, 0xf0, 0x68, 0x0b, 0xbe, 0x61, 0x6f, 0xa4, 0x2d, 0xf8, 0xa6, 0x99, 0x43, 0x5b, 0x70, 0xc9, - 0x01, 0xd3, 0x16, 0x5c, 0xe1, 0x81, 0x58, 0x81, 0x6c, 0xc1, 0xb6, 0xd2, 0x22, 0xbe, 0x2b, 0x80, - 0x2f, 0xb8, 0x0b, 0x1c, 0xe2, 0xa1, 0xd4, 0x97, 0xa3, 0x85, 0xb9, 0x34, 0x06, 0x17, 0x75, 0x2d, - 0x68, 0x0c, 0x2e, 0xdd, 0xb5, 0x28, 0xd1, 0xb3, 0x58, 0x33, 0x3d, 0x9a, 0x4e, 0x31, 0x1a, 0x83, - 0x4b, 0x4f, 0x31, 0xce, 0x17, 0x5c, 0x43, 0x18, 0xc5, 0x8f, 0x8e, 0xd6, 0x60, 0x61, 0xcb, 0xb8, - 0x27, 0x6f, 0x8d, 0xd4, 0x5d, 0xd9, 0xc5, 0x37, 0x06, 0xb3, 0x48, 0x69, 0x0b, 0xbe, 0x26, 0x3c, - 0xda, 0x82, 0x6f, 0xd8, 0x17, 0x69, 0x0b, 0xbe, 0x69, 0xe6, 0xd0, 0x16, 0x5c, 0x72, 0xc0, 0xb4, - 0x05, 0x57, 0x78, 0x18, 0x56, 0x24, 0x5b, 0x10, 0xee, 0xc8, 0xaf, 0x97, 0x64, 0x1c, 0xe4, 0x08, - 0x30, 0x42, 0xed, 0x6b, 0xda, 0x30, 0x8c, 0x86, 0x23, 0x4f, 0xd1, 0xc7, 0x87, 0xda, 0x2c, 0x52, - 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, - 0x2d, 0x93, 0x62, 0xba, 0x0d, 0x23, 0x11, 0x1b, 0x55, 0x04, 0xa6, 0x9d, 0x04, 0x4a, 0xa4, 0x25, - 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x65, 0x52, - 0x4c, 0xb7, 0xa1, 0x89, 0x85, 0x4e, 0x94, 0x51, 0x37, 0x05, 0x58, 0x97, 0xf4, 0x24, 0x56, 0x82, - 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, - 0x23, 0x02, 0x4d, 0x51, 0xaf, 0xae, 0x75, 0x68, 0x84, 0x51, 0x21, 0xe6, 0x02, 0x28, 0x2f, 0xe9, - 0x7c, 0x97, 0xd7, 0x22, 0x1a, 0x1f, 0x40, 0x19, 0x84, 0x91, 0xd4, 0x9d, 0x11, 0x28, 0xfa, 0x5a, - 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, 0x78, 0xfe, 0x42, 0x92, 0x7b, - 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, 0xfb, 0x32, 0x0a, 0x62, 0xd5, - 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x54, 0x74, 0x53, 0xf6, 0x07, 0x5a, - 0x75, 0x44, 0x62, 0x02, 0x2d, 0xd5, 0xe5, 0xf7, 0x76, 0x18, 0x27, 0xd9, 0x55, 0x20, 0xba, 0x3f, - 0x46, 0x4a, 0x15, 0x0e, 0x8c, 0x1f, 0xc5, 0x32, 0x88, 0xc3, 0x81, 0x91, 0x49, 0xfa, 0x2d, 0x18, - 0xe8, 0x2b, 0x1d, 0xfe, 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0xd1, 0x0f, 0x72, 0x2f, 0xa5, 0xa7, - 0x69, 0xf2, 0x0c, 0x4d, 0xe4, 0x48, 0x50, 0xce, 0xd4, 0xff, 0xaf, 0xbc, 0x43, 0xdc, 0x14, 0xd7, - 0x3b, 0x54, 0x89, 0xa9, 0x1b, 0x03, 0x76, 0xe0, 0xff, 0x37, 0xa5, 0xf7, 0xfb, 0x72, 0x48, 0x94, - 0x89, 0xf7, 0x79, 0x43, 0x0f, 0xfa, 0x7d, 0xa0, 0x03, 0x59, 0xbf, 0x89, 0x5b, 0xdc, 0xe0, 0x1a, - 0x71, 0x57, 0xc6, 0xb2, 0xfb, 0xe5, 0x6e, 0x1c, 0x1a, 0x93, 0x10, 0x5f, 0x2d, 0x57, 0x5b, 0x25, - 0x3d, 0xa8, 0xb3, 0x94, 0xe3, 0x41, 0xc7, 0xe8, 0xf1, 0x68, 0xe1, 0x28, 0xbd, 0x73, 0x07, 0xe3, - 0x1b, 0xd7, 0x3a, 0x1e, 0xdf, 0xae, 0xd6, 0x97, 0xcb, 0xa8, 0xd5, 0x54, 0xed, 0x56, 0xbd, 0xa7, - 0x4e, 0x44, 0x4f, 0xb5, 0x0e, 0xa2, 0x9b, 0xf2, 0x59, 0x7a, 0x8b, 0x5a, 0x47, 0xe3, 0x1b, 0xd3, - 0xaa, 0x77, 0x7f, 0x34, 0x55, 0xbb, 0x31, 0x30, 0xc7, 0xb1, 0x6c, 0x35, 0x87, 0xb7, 0xa3, 0x75, - 0x96, 0xfe, 0xed, 0xf5, 0xec, 0x4f, 0x7f, 0x47, 0x21, 0x76, 0x1f, 0x81, 0xe3, 0xea, 0x83, 0x56, - 0x75, 0x56, 0xa9, 0xda, 0xb8, 0x4d, 0x30, 0x77, 0xdd, 0xda, 0xcd, 0x27, 0x3b, 0x4a, 0xa4, 0x09, - 0x3b, 0xa7, 0xde, 0xed, 0xc6, 0xb0, 0xe3, 0xfa, 0xca, 0xd5, 0x3a, 0x51, 0x0c, 0x60, 0x86, 0x02, - 0x64, 0x28, 0x20, 0xc6, 0x00, 0x60, 0x57, 0x99, 0x02, 0x22, 0x35, 0x85, 0x95, 0x18, 0x87, 0xac, - 0xba, 0x64, 0x36, 0x75, 0xa3, 0x94, 0xf6, 0x75, 0xca, 0xee, 0x27, 0x5a, 0xce, 0x73, 0xd7, 0xf9, - 0x5d, 0xc0, 0xbc, 0xb6, 0xdb, 0xef, 0xed, 0xf5, 0x3e, 0x8b, 0x3d, 0xcf, 0x4b, 0x6d, 0x6e, 0xdb, - 0x1d, 0x2e, 0x7b, 0xa8, 0x97, 0x7e, 0xbc, 0xe5, 0x4c, 0x9b, 0x3c, 0xa6, 0xb3, 0xfc, 0xb1, 0xd9, - 0x2c, 0x9a, 0x6d, 0xcb, 0x1f, 0xec, 0x70, 0x76, 0x0c, 0xc6, 0xac, 0x17, 0xd7, 0xb3, 0x59, 0x60, - 0x66, 0xa9, 0xc0, 0xcc, 0x3e, 0x81, 0x99, 0x55, 0x42, 0xa6, 0x20, 0x53, 0xa4, 0x4c, 0xe1, 0xe0, - 0x81, 0xaf, 0x45, 0xa4, 0x78, 0xb7, 0x42, 0xdd, 0xdb, 0x55, 0xb7, 0x2e, 0x52, 0x77, 0xf6, 0xac, - 0x32, 0xe4, 0x72, 0x46, 0xb7, 0x76, 0x92, 0x71, 0xf9, 0xa9, 0x61, 0x21, 0x2d, 0xbc, 0x49, 0x3f, - 0xf0, 0x45, 0xb7, 0x1b, 0xcb, 0x24, 0xb1, 0x96, 0x18, 0x19, 0xe1, 0xe5, 0x22, 0xb0, 0x54, 0x0c, - 0xec, 0xce, 0x9d, 0xb7, 0x3e, 0x17, 0xde, 0x05, 0xbd, 0xbb, 0xa5, 0x76, 0x57, 0xb4, 0xee, 0x9c, - 0xd2, 0x9d, 0xd3, 0xb9, 0x73, 0x2a, 0x5f, 0x2d, 0x4c, 0xb1, 0x3e, 0xb7, 0x3a, 0xcb, 0xdb, 0xbe, - 0x14, 0xbd, 0x58, 0xf6, 0x6c, 0x26, 0xed, 0xc4, 0x54, 0xa9, 0x59, 0xfc, 0xcc, 0xe3, 0x31, 0x89, - 0x7d, 0xfc, 0x98, 0xd2, 0x7b, 0x90, 0xd3, 0x20, 0x12, 0x04, 0xa8, 0x13, 0xe8, 0xc4, 0x01, 0xb4, - 0xec, 0xfc, 0x91, 0x15, 0xc8, 0x0a, 0x64, 0x05, 0xb2, 0xc2, 0xef, 0xdc, 0xcd, 0x3d, 0x65, 0x77, - 0xd6, 0x89, 0xbb, 0x01, 0x23, 0xca, 0xc0, 0xd1, 0xd1, 0x00, 0xd2, 0x99, 0x38, 0xb8, 0x14, 0x09, - 0x0c, 0xb1, 0x70, 0x2d, 0x1a, 0x30, 0xe2, 0x01, 0x23, 0x22, 0x30, 0x62, 0x62, 0x57, 0x54, 0x2c, - 0x8b, 0x8b, 0xbb, 0x01, 0x69, 0x2e, 0xef, 0x55, 0xe4, 0xa8, 0xca, 0x4f, 0xe1, 0xbf, 0x83, 0x93, - 0x03, 0x27, 0xf7, 0xde, 0xcd, 0x79, 0x80, 0x0e, 0xa7, 0x0b, 0x3e, 0xb6, 0xfc, 0x4d, 0xd9, 0x61, - 0xdb, 0xe7, 0xfa, 0xc0, 0x27, 0x87, 0x31, 0x1c, 0x0b, 0x63, 0x64, 0xac, 0x9d, 0x1f, 0x0f, 0xe9, - 0xfd, 0xef, 0xfd, 0xfb, 0xf3, 0x2d, 0x7f, 0xf7, 0xe2, 0xfe, 0xbc, 0xe4, 0xef, 0x5e, 0xa4, 0x97, - 0xa5, 0xd1, 0xb7, 0xf4, 0x7a, 0xfb, 0x7c, 0xcb, 0x2f, 0x4f, 0xae, 0x2b, 0xe7, 0x5b, 0x7e, 0xe5, - 0x62, 0xf3, 0xef, 0xbf, 0x3f, 0x6e, 0xfe, 0xda, 0x79, 0x98, 0xff, 0x8d, 0xff, 0x71, 0x37, 0xa3, - 0xff, 0x62, 0x9d, 0x66, 0x0a, 0x63, 0x24, 0x7b, 0x95, 0xc9, 0x8e, 0x99, 0xec, 0xc2, 0xef, 0xd5, - 0xfd, 0xaf, 0x17, 0xbf, 0x4a, 0x1f, 0xca, 0x0f, 0x9f, 0x37, 0x7f, 0xd5, 0x1e, 0x9e, 0xbf, 0x78, - 0x3f, 0xeb, 0xd7, 0x4a, 0x1f, 0x6a, 0x0f, 0x9f, 0x5f, 0xf8, 0x49, 0xf5, 0xe1, 0xf3, 0x6f, 0xfe, - 0x1b, 0x95, 0x87, 0xf7, 0xb9, 0x5f, 0x1d, 0xbe, 0xbe, 0xfd, 0xd2, 0x1b, 0xca, 0x2f, 0xbc, 0x61, - 0xe7, 0xa5, 0x37, 0xec, 0xbc, 0xf0, 0x86, 0x17, 0x43, 0xda, 0x7e, 0xe1, 0x0d, 0x95, 0x87, 0xfb, - 0xdc, 0xef, 0xbf, 0x9f, 0xfd, 0xab, 0xd5, 0x87, 0xcd, 0xfb, 0x97, 0x7e, 0x56, 0x7b, 0xb8, 0xff, - 0xbc, 0xb9, 0x86, 0xa5, 0xef, 0xdd, 0x6a, 0xff, 0x9d, 0x9c, 0xb9, 0xf3, 0xca, 0x71, 0x1e, 0x67, - 0xee, 0xe4, 0x66, 0xee, 0x58, 0x9c, 0x78, 0x66, 0xe1, 0x49, 0xd5, 0xbb, 0x02, 0x77, 0xd3, 0xc9, - 0x6a, 0x44, 0xcb, 0x8e, 0xa4, 0xdd, 0x75, 0x87, 0x4e, 0xd6, 0x17, 0x3a, 0x59, 0x47, 0x68, 0x77, - 0xbd, 0xe0, 0xb2, 0xfb, 0xa6, 0xe5, 0xd2, 0x89, 0x5c, 0x32, 0x3d, 0x2b, 0x8f, 0xc3, 0xdf, 0x6c, - 0x52, 0xe3, 0x72, 0x6b, 0xfb, 0xf2, 0x2a, 0xee, 0x72, 0xfe, 0xe5, 0x25, 0xe5, 0x89, 0xad, 0xfc, - 0x00, 0xcc, 0x8b, 0xe5, 0xf4, 0xaf, 0xb7, 0x6f, 0xfd, 0xb7, 0xfd, 0x17, 0xdf, 0xb8, 0x1f, 0x2d, - 0xbb, 0xff, 0xc0, 0xf4, 0x9b, 0x25, 0x14, 0xcf, 0x37, 0x28, 0x96, 0x6f, 0xdb, 0x87, 0xdf, 0xae, - 0xa7, 0xbd, 0x61, 0x2f, 0x4b, 0x5d, 0xb1, 0x24, 0x36, 0xd2, 0x8f, 0xc2, 0xbe, 0xea, 0xdc, 0xbd, - 0x79, 0x3f, 0x9b, 0xf6, 0xdf, 0x9e, 0x7e, 0xd2, 0x1b, 0xe7, 0xca, 0x72, 0xe6, 0x51, 0x2d, 0xed, - 0x91, 0xf8, 0x32, 0x1f, 0x79, 0xdb, 0x79, 0xa4, 0xbd, 0xec, 0x47, 0xd6, 0xd6, 0x1e, 0x49, 0x5b, - 0x7b, 0xe4, 0x6c, 0xed, 0x91, 0x32, 0xb6, 0xaa, 0x2d, 0x6b, 0x5e, 0x91, 0xd7, 0x4f, 0xef, 0xe9, - 0xf2, 0x7a, 0x64, 0x36, 0x97, 0x79, 0xfc, 0x41, 0x4b, 0xea, 0x26, 0xcb, 0x9d, 0x12, 0xba, 0xf4, - 0x59, 0x3e, 0x36, 0x66, 0xf3, 0xd8, 0x9d, 0xb5, 0x63, 0x6b, 0x76, 0x8e, 0xf5, 0x59, 0x38, 0xd6, - 0x67, 0xdb, 0x58, 0x9f, 0x55, 0x53, 0xac, 0x01, 0xe3, 0xb2, 0xa7, 0x5c, 0x7a, 0xe3, 0x5d, 0x4a, - 0x96, 0xde, 0x91, 0x27, 0xe9, 0x39, 0xfe, 0xbc, 0x65, 0x7b, 0xa4, 0x56, 0xe6, 0xd0, 0x5b, 0x9b, - 0x1e, 0x69, 0x73, 0x3a, 0xa4, 0x9b, 0xe9, 0x8f, 0xb6, 0xa7, 0x3b, 0x3a, 0x9b, 0xde, 0xe8, 0x6c, - 0x3a, 0xa3, 0xb3, 0xe9, 0x8b, 0xc5, 0x7e, 0xda, 0x62, 0x6b, 0xce, 0x7b, 0x5a, 0x18, 0xed, 0x2f, - 0x6d, 0xb2, 0xb9, 0xed, 0x1c, 0x97, 0x36, 0xad, 0x4a, 0xb9, 0x76, 0x55, 0xb6, 0x9d, 0x97, 0x6f, - 0xe7, 0x65, 0xdc, 0x79, 0x39, 0xb7, 0x53, 0xd6, 0x2d, 0x95, 0x77, 0xeb, 0x65, 0x3e, 0xfb, 0xc0, - 0x4e, 0xd8, 0x0f, 0x63, 0x77, 0xeb, 0x99, 0xd2, 0x8f, 0xe7, 0x22, 0xa6, 0x55, 0x93, 0x03, 0x0c, - 0x59, 0x70, 0x2d, 0x0f, 0x30, 0x32, 0x01, 0x23, 0x17, 0x30, 0xb2, 0x61, 0x57, 0x3e, 0x2c, 0xcb, - 0x48, 0x76, 0x97, 0xdd, 0x2f, 0x62, 0xb2, 0xbf, 0xbb, 0x46, 0x8e, 0xf2, 0x6b, 0x0e, 0x3e, 0x3b, - 0xb7, 0xdb, 0x46, 0x2a, 0x74, 0xdc, 0x84, 0x77, 0xe1, 0x3b, 0x2b, 0x75, 0x37, 0x0a, 0xd5, 0xa8, - 0x70, 0x38, 0x62, 0x96, 0x2c, 0x02, 0x62, 0x0b, 0xb1, 0x85, 0xd8, 0x42, 0x6c, 0x21, 0xb6, 0x10, - 0x5b, 0x56, 0x14, 0x5b, 0x32, 0xad, 0x23, 0xb9, 0x2c, 0x7c, 0x73, 0x27, 0x07, 0x36, 0x39, 0x03, - 0x17, 0x37, 0x27, 0x46, 0x91, 0x5b, 0xc8, 0x2d, 0xe4, 0x16, 0x72, 0x0b, 0xb9, 0x85, 0xdc, 0x62, - 0x8d, 0x5b, 0x26, 0x52, 0x47, 0x6c, 0x59, 0xf8, 0xde, 0xf2, 0xd4, 0x23, 0x22, 0x0b, 0x91, 0x85, - 0xc8, 0x42, 0x64, 0x59, 0x45, 0x64, 0xb1, 0x3d, 0xe1, 0x20, 0xfb, 0x60, 0x61, 0x4c, 0xec, 0x2b, - 0xdd, 0x95, 0xb7, 0xee, 0x92, 0x6e, 0x52, 0x7a, 0x9e, 0xc4, 0xe2, 0xea, 0x68, 0x67, 0x27, 0x63, - 0x64, 0xe7, 0xc2, 0x83, 0x20, 0x40, 0x58, 0x42, 0x84, 0x22, 0x48, 0x70, 0xc2, 0x04, 0x27, 0x50, - 0x70, 0x42, 0xe5, 0x46, 0xb0, 0x1c, 0x09, 0x97, 0xfb, 0x31, 0x37, 0xd0, 0xd8, 0x1b, 0x61, 0x0c, - 0x3e, 0x6b, 0x2c, 0x3e, 0xf3, 0xbf, 0x91, 0xd8, 0x26, 0xd2, 0x24, 0xd9, 0xd5, 0x78, 0xcc, 0x9e, - 0x0a, 0xf0, 0xba, 0x9c, 0xcf, 0xed, 0x60, 0x8c, 0xe3, 0x66, 0xae, 0x67, 0x2e, 0x4f, 0x5c, 0xcc, - 0xf9, 0x24, 0x68, 0x11, 0xb4, 0x08, 0x5a, 0x04, 0x2d, 0x82, 0xd6, 0x0a, 0x80, 0xd6, 0x40, 0x69, - 0xb3, 0xb3, 0x0d, 0xc0, 0x59, 0x2e, 0x31, 0xab, 0x29, 0xf4, 0xa5, 0x74, 0xbe, 0x51, 0xb2, 0xdb, - 0x9a, 0xb9, 0x31, 0xde, 0xa2, 0xd1, 0x79, 0xf1, 0x06, 0xc1, 0x8b, 0x5c, 0x38, 0x7f, 0x89, 0xfe, - 0x40, 0x02, 0xc5, 0xf3, 0x35, 0x16, 0x1d, 0xa3, 0x42, 0xbd, 0xa7, 0x2e, 0xd5, 0x68, 0x73, 0xcb, - 0x2d, 0xe7, 0x71, 0x3d, 0x7c, 0x00, 0xe8, 0xc2, 0xe2, 0x96, 0x5d, 0xf8, 0x5f, 0xba, 0x70, 0x79, - 0x7b, 0xb7, 0xbc, 0x5b, 0xad, 0x6d, 0xef, 0x56, 0xd8, 0x97, 0xb1, 0x80, 0xc4, 0xfd, 0xa7, 0x5f, - 0xd0, 0x34, 0x58, 0xa2, 0x69, 0x70, 0x7d, 0x3d, 0xd0, 0xca, 0xdc, 0xa1, 0x3c, 0xac, 0x79, 0x1e, - 0x10, 0x8d, 0x04, 0x1a, 0x09, 0x34, 0x12, 0x68, 0x24, 0xd0, 0x48, 0xa0, 0x91, 0x30, 0x67, 0xdd, - 0xe0, 0x13, 0x9b, 0x8d, 0xdf, 0x79, 0x62, 0x33, 0x51, 0x5c, 0x25, 0x93, 0xec, 0xfa, 0x8e, 0x0f, - 0x6d, 0xec, 0x34, 0x8e, 0xb3, 0xf5, 0xae, 0xb9, 0x6c, 0x71, 0xb4, 0xee, 0x95, 0xc4, 0x45, 0xe2, - 0x22, 0x71, 0x91, 0xb8, 0x48, 0x5c, 0x2b, 0x40, 0x5c, 0x4e, 0xcf, 0x34, 0xce, 0x41, 0xd7, 0xae, - 0xc3, 0x18, 0x9c, 0x9e, 0x71, 0x3c, 0xf9, 0x02, 0x78, 0x7c, 0x03, 0x76, 0xe6, 0x71, 0xae, 0x8f, - 0x7c, 0x02, 0x88, 0x05, 0xe5, 0x58, 0xd4, 0x2c, 0xa0, 0x75, 0x39, 0x0b, 0x79, 0xf2, 0x75, 0xe1, - 0xd6, 0x58, 0xff, 0xc0, 0x22, 0x01, 0x75, 0x56, 0x32, 0x8b, 0xc4, 0x1c, 0x45, 0x82, 0x67, 0x28, - 0xaf, 0xd5, 0x19, 0xca, 0x20, 0x25, 0x93, 0xcf, 0x22, 0x57, 0xd1, 0x0b, 0xbb, 0x35, 0x3e, 0xdc, - 0xf3, 0xc8, 0x59, 0x41, 0xd1, 0x21, 0xa3, 0x43, 0x46, 0x87, 0x8c, 0x0e, 0x19, 0x1d, 0x32, 0x3a, - 0x64, 0x73, 0xd6, 0x0d, 0x3e, 0x93, 0xdc, 0xf8, 0x9d, 0x67, 0x92, 0x4f, 0x55, 0x57, 0xc9, 0x64, - 0xea, 0xff, 0xf9, 0x6c, 0xd2, 0x52, 0x23, 0x29, 0x7d, 0x23, 0xfa, 0xaa, 0xeb, 0xc7, 0x52, 0x24, - 0xa1, 0x76, 0x8f, 0x62, 0xcf, 0xe2, 0x21, 0x85, 0x91, 0xc2, 0x48, 0x61, 0xa4, 0x30, 0x52, 0x18, - 0x29, 0x6c, 0x5e, 0x25, 0xe9, 0x4a, 0x6d, 0x94, 0xb9, 0x03, 0x21, 0x31, 0x87, 0x6b, 0x1e, 0xbc, - 0x83, 0xf1, 0xad, 0xf8, 0x22, 0x12, 0x80, 0x12, 0x36, 0x69, 0xa0, 0x83, 0xa3, 0xbf, 0xea, 0x87, - 0x07, 0x7b, 0xad, 0x66, 0xe3, 0xec, 0x74, 0xbf, 0xd5, 0xdc, 0xaf, 0x9f, 0x34, 0x8e, 0x5c, 0x57, - 0xb3, 0xd1, 0x52, 0x95, 0x04, 0xc2, 0x80, 0x07, 0x59, 0x4b, 0xf4, 0xbc, 0xb5, 0x1a, 0xcd, 0x83, - 0x3f, 0x0f, 0x8e, 0xea, 0xa7, 0x8d, 0xa6, 0xc7, 0x85, 0x5f, 0xb0, 0xad, 0xf4, 0xc7, 0xe1, 0xd9, - 0xc9, 0xe9, 0x7e, 0xb3, 0x75, 0xd8, 0x68, 0x1c, 0xb3, 0x9d, 0x70, 0xdb, 0xa9, 0x7e, 0xc2, 0x26, - 0x42, 0x4f, 0xa5, 0xc6, 0xd1, 0xd7, 0xfd, 0x3d, 0x6f, 0xcd, 0x57, 0x06, 0x5e, 0xac, 0x1b, 0x3f, - 0xaf, 0x85, 0xfb, 0xd3, 0x17, 0x89, 0xf1, 0xaf, 0xc3, 0xae, 0xea, 0x29, 0xd9, 0x75, 0x6f, 0xfe, - 0x4c, 0x87, 0x43, 0xef, 0x87, 0xde, 0x0f, 0xbd, 0x1f, 0x7a, 0x3f, 0xf4, 0x7e, 0xe8, 0xfd, 0xcc, - 0x59, 0x37, 0x8c, 0xba, 0x96, 0x46, 0x75, 0xae, 0x92, 0x6a, 0x19, 0xc0, 0xfb, 0x71, 0x38, 0xb5, - 0xd0, 0x3b, 0xd3, 0xe9, 0xce, 0x16, 0x9e, 0x16, 0x3a, 0x4c, 0x64, 0x27, 0xd4, 0x5d, 0xa7, 0xf3, - 0xf6, 0xb9, 0xe7, 0xd1, 0xf8, 0x46, 0x70, 0xcf, 0xa3, 0x97, 0xc3, 0xe1, 0x9e, 0x47, 0x45, 0x18, - 0xaf, 0x73, 0xcf, 0xa3, 0xdf, 0xe8, 0xc2, 0xa5, 0x4f, 0xe5, 0x72, 0xb5, 0x56, 0x2e, 0x6f, 0xd5, - 0x76, 0x6a, 0x5b, 0xbb, 0x95, 0x4a, 0xa9, 0x5a, 0xe2, 0xee, 0x47, 0xa0, 0x1e, 0x07, 0x67, 0x1c, - 0xaf, 0xa2, 0xc7, 0xe1, 0xea, 0xcc, 0xc6, 0x1c, 0x94, 0xba, 0x39, 0xbb, 0x31, 0x0b, 0x63, 0x4f, - 0xf6, 0xc4, 0xa0, 0x3f, 0x1a, 0x1a, 0x6d, 0xd1, 0x5b, 0xa1, 0xb7, 0x42, 0x6f, 0x85, 0xde, 0x0a, - 0xbd, 0x15, 0x7a, 0x2b, 0xf3, 0xd6, 0x0d, 0x6e, 0xdd, 0x4c, 0x1b, 0x83, 0x36, 0x06, 0x6d, 0x0c, - 0xda, 0x18, 0x6b, 0xd4, 0x85, 0xb9, 0x75, 0x33, 0xcd, 0x0b, 0x9a, 0x17, 0xf6, 0xcd, 0x8b, 0xf1, - 0x62, 0x98, 0x70, 0x60, 0xa4, 0x7b, 0x03, 0xe3, 0x69, 0x30, 0x34, 0x10, 0x68, 0x20, 0xd0, 0x40, - 0xa0, 0x81, 0x40, 0x03, 0x81, 0x06, 0xc2, 0x9c, 0x75, 0xa3, 0x1d, 0x86, 0x7d, 0x29, 0x34, 0xc2, - 0xa2, 0x9c, 0xd2, 0xba, 0xa0, 0xcb, 0x4a, 0x1f, 0x80, 0x5e, 0xd7, 0x3a, 0x34, 0x62, 0x38, 0x1a, - 0x70, 0x73, 0x0e, 0x7a, 0xd2, 0xf9, 0x2e, 0xaf, 0x45, 0x34, 0x5e, 0xee, 0x1e, 0x84, 0x91, 0xd4, - 0x9d, 0x11, 0x28, 0xf8, 0x5a, 0x9a, 0x9f, 0x61, 0x7c, 0xe5, 0x2b, 0x9d, 0x18, 0xa1, 0x3b, 0x32, - 0x78, 0xfe, 0x42, 0x92, 0x7b, 0x25, 0x88, 0xe2, 0xd0, 0x84, 0x9d, 0xb0, 0x9f, 0x64, 0x57, 0x41, - 0xfb, 0x32, 0x0a, 0x62, 0xd5, 0x0e, 0x44, 0x4f, 0xf9, 0x89, 0xe8, 0xa9, 0x24, 0xbb, 0x0a, 0x46, - 0xdb, 0xa9, 0x25, 0xb1, 0x91, 0x7e, 0x14, 0xf6, 0x55, 0xe7, 0x2e, 0xe8, 0xa7, 0xa5, 0x35, 0x18, - 0x61, 0x5a, 0x92, 0x7e, 0x4b, 0x17, 0xd3, 0xdb, 0xad, 0xb4, 0xf6, 0xba, 0x9c, 0xc5, 0xee, 0xe6, - 0x0d, 0xf4, 0x95, 0x0e, 0x7f, 0x6a, 0x5f, 0x18, 0x13, 0xab, 0xf6, 0xf0, 0x0e, 0x5b, 0xef, 0x72, - 0x8f, 0x46, 0x6c, 0x3e, 0x16, 0xcb, 0x89, 0x37, 0x29, 0xa3, 0x96, 0x3f, 0xd6, 0x15, 0x85, 0xbb, - 0xa4, 0x6f, 0x0c, 0xea, 0x76, 0x4d, 0xdb, 0x30, 0x94, 0x0d, 0x43, 0xd7, 0x30, 0x54, 0xbd, 0xda, - 0x88, 0xb1, 0xa7, 0xdc, 0x9c, 0xba, 0x9d, 0x2f, 0xf2, 0xee, 0x6d, 0xa0, 0x7c, 0x48, 0x6e, 0xcd, - 0xa0, 0x12, 0xcd, 0x20, 0x9a, 0x41, 0x34, 0x83, 0x68, 0x06, 0xd1, 0x0c, 0x42, 0x97, 0xb3, 0x2c, - 0x80, 0xa1, 0x76, 0xf8, 0xc6, 0xb5, 0x25, 0x35, 0x55, 0xc1, 0x1e, 0x43, 0x72, 0x9c, 0x1a, 0x18, - 0x8f, 0x80, 0x9d, 0xcb, 0x1b, 0x92, 0xcc, 0x61, 0xca, 0x1d, 0x9a, 0xec, 0xc1, 0xca, 0x1f, 0xac, - 0x0c, 0xc2, 0xca, 0xa1, 0x5b, 0x59, 0x74, 0x2c, 0x8f, 0x59, 0xab, 0x9c, 0x22, 0x08, 0xd4, 0x06, - 0xd6, 0xd6, 0xb2, 0xb9, 0xd1, 0x57, 0x0d, 0xe3, 0xe0, 0x8c, 0xc9, 0x56, 0xb3, 0xe9, 0xbe, 0xb1, - 0x8f, 0x62, 0xbe, 0xa6, 0x93, 0x72, 0x1c, 0xa6, 0x8e, 0x97, 0x3e, 0x6d, 0x80, 0x01, 0xbb, 0x34, - 0x1c, 0x0c, 0xa8, 0x2b, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0xce, 0x55, 0xab, - 0xb8, 0xf6, 0x3e, 0xa6, 0x3d, 0x90, 0xbe, 0x04, 0x5a, 0x3f, 0x31, 0x65, 0x85, 0x0c, 0x23, 0xfb, - 0xc0, 0x49, 0xf1, 0xc0, 0x22, 0x8a, 0x28, 0xa6, 0xd8, 0xa2, 0x8a, 0x2a, 0xae, 0xf0, 0x22, 0x0b, - 0x2f, 0xb6, 0xf0, 0xa2, 0x8b, 0x21, 0xbe, 0x20, 0x22, 0x8c, 0xe7, 0xb0, 0xe4, 0xea, 0xd6, 0x40, - 0x69, 0x53, 0xaa, 0x22, 0xd5, 0xac, 0xb1, 0x0a, 0x56, 0x81, 0x42, 0xc2, 0x58, 0x06, 0xfb, 0xfc, - 0x0b, 0xab, 0xa6, 0x6f, 0xa0, 0x2d, 0x93, 0x05, 0xc7, 0xab, 0x5c, 0x78, 0x60, 0xcb, 0x68, 0x73, - 0xf1, 0x01, 0x2e, 0x45, 0x04, 0x2d, 0xf7, 0xd3, 0x29, 0x21, 0x6e, 0x99, 0x12, 0x0b, 0xa6, 0x44, - 0xb5, 0x52, 0xd9, 0xa9, 0x30, 0x2d, 0x8a, 0xcd, 0x62, 0x78, 0xd1, 0x5c, 0xbc, 0xe3, 0xfd, 0x00, - 0x29, 0x9b, 0x40, 0x33, 0x65, 0x72, 0x88, 0x8c, 0x32, 0x63, 0x06, 0xb4, 0x6a, 0xd3, 0x27, 0x9a, - 0xa7, 0x33, 0xd1, 0x27, 0x9a, 0xab, 0xa7, 0xd3, 0x27, 0x5a, 0x30, 0x40, 0xfa, 0x44, 0x05, 0x1a, - 0x38, 0x80, 0xfb, 0x44, 0x9f, 0x00, 0x6d, 0xa2, 0x0a, 0x6d, 0xa2, 0x7f, 0xf9, 0xa2, 0x4d, 0xb4, - 0x92, 0x63, 0x62, 0xda, 0x44, 0x45, 0xaf, 0xf6, 0xd3, 0x29, 0x41, 0x9b, 0x68, 0xe1, 0x94, 0xd8, - 0xae, 0xd0, 0x24, 0x5a, 0x01, 0x5b, 0x66, 0x83, 0x26, 0x11, 0xe0, 0xfd, 0x80, 0x31, 0x89, 0x6e, - 0xc6, 0xd9, 0x8e, 0xe8, 0x12, 0xa5, 0xb1, 0xd1, 0x26, 0x9a, 0x15, 0x0e, 0x6d, 0xa2, 0x39, 0x7a, - 0x13, 0x6d, 0xa2, 0xb9, 0x7a, 0x3a, 0x6d, 0xa2, 0x05, 0x03, 0xa4, 0x4d, 0x54, 0xa0, 0x81, 0x03, - 0xb0, 0x4d, 0xd4, 0x56, 0x5a, 0xc4, 0x77, 0x80, 0x3e, 0xd1, 0x2e, 0x50, 0x48, 0x87, 0x52, 0x5f, - 0x8e, 0x16, 0x72, 0xd1, 0x28, 0xfa, 0xb7, 0x51, 0x31, 0x8d, 0xa2, 0x85, 0x47, 0xc5, 0x25, 0x8e, - 0x89, 0x0b, 0x5e, 0xef, 0xa7, 0x53, 0x82, 0x46, 0xd1, 0xc2, 0x29, 0xc1, 0xf9, 0x44, 0x2b, 0x62, - 0xce, 0x6c, 0xd0, 0x2a, 0x02, 0xbc, 0x1f, 0x08, 0x56, 0x91, 0xbc, 0x35, 0x52, 0x77, 0x65, 0x17, - 0xcf, 0x28, 0xca, 0x22, 0xa3, 0x4d, 0x34, 0x2b, 0x1c, 0xda, 0x44, 0x73, 0xf4, 0x25, 0xda, 0x44, - 0x73, 0xf5, 0x74, 0xda, 0x44, 0x0b, 0x06, 0x48, 0x9b, 0xa8, 0x40, 0xc3, 0x06, 0x64, 0x9b, 0xc8, - 0xf9, 0xd9, 0x08, 0x2f, 0xc9, 0xa0, 0xa3, 0xb3, 0x12, 0x08, 0x71, 0xb3, 0xda, 0x24, 0x8c, 0x86, - 0x23, 0x21, 0xd1, 0xc7, 0x83, 0xb8, 0x2c, 0x32, 0x42, 0x1c, 0x21, 0x8e, 0x10, 0x47, 0x88, 0x23, - 0xc4, 0x11, 0xe2, 0x08, 0x71, 0x84, 0x38, 0x42, 0xdc, 0xf3, 0x36, 0x89, 0x44, 0x6c, 0x14, 0x22, - 0xc3, 0x4d, 0x02, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, - 0x47, 0x84, 0x23, 0xc2, 0x3d, 0x6f, 0x13, 0x13, 0x0b, 0x9d, 0x28, 0xa3, 0x6e, 0x00, 0xe7, 0xdd, - 0x3f, 0x89, 0x8d, 0x20, 0x47, 0x90, 0x23, 0xc8, 0x11, 0xe4, 0x08, 0x72, 0x04, 0x39, 0x82, 0x1c, - 0x41, 0x0e, 0x0c, 0xe4, 0xd6, 0x7a, 0x3b, 0x7a, 0xc7, 0x87, 0xd7, 0xe7, 0xe2, 0xc1, 0x3f, 0xcc, - 0x3e, 0x7f, 0xee, 0x79, 0xfe, 0x25, 0x17, 0x27, 0xde, 0xe3, 0xf4, 0xeb, 0xf5, 0x3a, 0xcc, 0xf2, - 0xbf, 0xf2, 0x0e, 0x61, 0x37, 0x3a, 0xef, 0x50, 0x25, 0xa6, 0x6e, 0x8c, 0xe3, 0x93, 0x35, 0xbf, - 0x29, 0xbd, 0xdf, 0x97, 0x43, 0x74, 0x4a, 0xbc, 0xcf, 0x1b, 0x7a, 0xd0, 0xef, 0x3b, 0x3c, 0x09, - 0xea, 0x9b, 0xb8, 0xc5, 0x09, 0xa6, 0x11, 0x77, 0x65, 0x2c, 0xbb, 0x5f, 0xee, 0xc6, 0xa1, 0xac, - 0x55, 0x92, 0x80, 0xc8, 0xcc, 0x8a, 0xc8, 0x8b, 0xe7, 0xf4, 0x74, 0xb5, 0x78, 0xd0, 0x31, 0x7a, - 0xcc, 0xb7, 0x47, 0xe9, 0x2d, 0x39, 0x18, 0xdf, 0x91, 0xd6, 0xf1, 0xf8, 0x3e, 0xb4, 0xbe, 0x5c, - 0x46, 0xad, 0xa6, 0x6a, 0xb7, 0xea, 0x3d, 0x75, 0x22, 0x7a, 0xaa, 0x75, 0x10, 0xdd, 0x54, 0x4f, - 0x62, 0x23, 0x8f, 0x47, 0x7f, 0x7a, 0xeb, 0x30, 0xec, 0x0c, 0x7f, 0xda, 0x1c, 0xfe, 0xc9, 0xad, - 0xb3, 0xf4, 0xef, 0xab, 0x67, 0x7f, 0xde, 0xbb, 0xf5, 0x50, 0x2d, 0xbb, 0x9f, 0x68, 0x39, 0xf5, - 0x5d, 0xa7, 0x7c, 0x21, 0x53, 0xdd, 0x6e, 0xcf, 0xb7, 0xd7, 0xff, 0xec, 0x7c, 0x92, 0xa5, 0x1e, - 0x3e, 0x21, 0xbe, 0x61, 0xd7, 0xf2, 0x55, 0x77, 0x43, 0xea, 0x6e, 0x14, 0x2a, 0x6d, 0x36, 0x3a, - 0x61, 0x3f, 0x8c, 0x2d, 0xd5, 0x66, 0x37, 0xb8, 0xe7, 0x14, 0xef, 0x9c, 0xe2, 0x9c, 0x1b, 0x7c, - 0xb3, 0xd5, 0xa3, 0x1d, 0xd5, 0x6a, 0xfc, 0x1a, 0x6d, 0x91, 0xb4, 0x96, 0x40, 0x56, 0x76, 0xe4, - 0x64, 0xf9, 0xc5, 0x7d, 0xb9, 0x9f, 0xb0, 0xe4, 0x24, 0xb3, 0x9d, 0x5c, 0xc8, 0x49, 0xb5, 0xdc, - 0x0e, 0xb9, 0xbc, 0x6e, 0xb2, 0x9c, 0x7f, 0x79, 0x49, 0x1d, 0xcf, 0x56, 0x87, 0x83, 0xec, 0x68, - 0x4b, 0x2c, 0xd8, 0x6f, 0x5a, 0xa0, 0x97, 0x93, 0x09, 0x6f, 0xdf, 0x4f, 0x97, 0xd0, 0x47, 0x3d, - 0x2d, 0xd5, 0xe5, 0xf7, 0x76, 0x18, 0x27, 0x4b, 0xeb, 0x9e, 0xd9, 0xf3, 0xb7, 0xc7, 0x8f, 0x5a, - 0x52, 0xae, 0x2d, 0xf7, 0x60, 0xf5, 0xa5, 0x4f, 0x12, 0xb1, 0x31, 0xe9, 0xc3, 0xee, 0x24, 0x0e, - 0x5b, 0x93, 0x32, 0xac, 0x4f, 0xb2, 0xb0, 0x3e, 0x69, 0xc2, 0xfa, 0x24, 0x88, 0x62, 0xa9, 0xec, - 0xb2, 0x0f, 0xf2, 0xce, 0x6a, 0xd7, 0xf2, 0xbb, 0xf2, 0xf3, 0x6a, 0xb9, 0xec, 0x9e, 0xbc, 0xdc, - 0xa2, 0x69, 0xad, 0x78, 0xda, 0x2c, 0xa2, 0x6e, 0x8a, 0xa9, 0xed, 0xa2, 0xea, 0xac, 0xb8, 0x3a, - 0x2b, 0xb2, 0xce, 0x8a, 0xed, 0x6a, 0x8c, 0xad, 0x97, 0x5d, 0x84, 0xb3, 0x0f, 0x12, 0xdd, 0x1f, - 0xa3, 0x36, 0x51, 0xda, 0x8f, 0xc2, 0xc4, 0xd8, 0xcb, 0x84, 0x6c, 0x1f, 0xf3, 0x67, 0x01, 0xd8, - 0xf2, 0xba, 0xad, 0x94, 0x6a, 0xeb, 0x25, 0xdb, 0x45, 0xe9, 0x76, 0x5b, 0xc2, 0x5d, 0x95, 0x72, - 0xe7, 0x25, 0xdd, 0x79, 0x69, 0x77, 0x5e, 0xe2, 0xed, 0x94, 0x7a, 0x4b, 0x25, 0xdf, 0x7a, 0xe9, - 0xcf, 0x3e, 0x70, 0x6c, 0x61, 0x5a, 0x4f, 0x9c, 0x49, 0xb9, 0x18, 0x7f, 0xbe, 0xe5, 0x4e, 0x6b, - 0x57, 0x00, 0x9c, 0x09, 0x81, 0x4b, 0x41, 0xc0, 0x10, 0x06, 0xd7, 0x02, 0x01, 0x23, 0x14, 0x30, - 0x82, 0x01, 0x23, 0x1c, 0x76, 0x05, 0xc4, 0xb2, 0x90, 0x38, 0x13, 0x94, 0x69, 0x61, 0x71, 0x97, - 0x6f, 0x53, 0xfa, 0xe2, 0x2a, 0xd7, 0xdc, 0xc8, 0x8c, 0x73, 0xb9, 0x41, 0x90, 0x1d, 0x2c, 0xf9, - 0x41, 0x91, 0x21, 0x38, 0x39, 0x82, 0x93, 0x25, 0x38, 0x79, 0x72, 0x23, 0x53, 0x8e, 0xe4, 0xca, - 0xb9, 0x6c, 0x65, 0x01, 0xa4, 0xd3, 0x1e, 0x9d, 0xe7, 0xe9, 0xa4, 0x7a, 0xd9, 0x9c, 0x85, 0xf9, - 0x6f, 0x72, 0xe6, 0x78, 0x69, 0x3f, 0xcc, 0x1e, 0x03, 0x48, 0x7b, 0x0b, 0x60, 0xee, 0x29, 0x80, - 0xb6, 0x97, 0x00, 0xec, 0x1e, 0x02, 0xb0, 0x7b, 0x07, 0xc0, 0xee, 0x19, 0xb0, 0xde, 0x0b, 0x9c, - 0x61, 0xf6, 0x06, 0xc8, 0xea, 0x4e, 0x5f, 0x8a, 0x5e, 0x2c, 0x7b, 0x08, 0x45, 0x67, 0x32, 0xea, - 0xaa, 0x01, 0xc4, 0x72, 0x3c, 0x9e, 0x47, 0xf8, 0xf1, 0x63, 0xba, 0x7a, 0x3a, 0x48, 0x85, 0x7c, - 0x5d, 0xd7, 0x50, 0x3b, 0x1c, 0x79, 0x4d, 0x16, 0xb4, 0xe0, 0x30, 0x5d, 0x16, 0x11, 0xb1, 0x8e, - 0x58, 0x47, 0xac, 0x23, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0xba, 0x42, 0x62, 0x5d, 0xa6, 0xe5, - 0x24, 0x3b, 0xeb, 0x8d, 0x31, 0x5e, 0xb2, 0x8c, 0x03, 0x76, 0x93, 0x80, 0xc8, 0x75, 0xe4, 0x3a, - 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, 0x15, 0x92, 0xeb, 0x26, 0x52, 0x4e, 0xac, - 0xb3, 0xde, 0x16, 0xe9, 0x6e, 0x93, 0x30, 0x50, 0x97, 0x86, 0x83, 0x81, 0x74, 0x25, 0x22, 0x1d, - 0x91, 0x8e, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0xb9, 0x6a, 0x15, 0xd7, 0x13, 0x94, 0xb2, 0x40, 0x46, - 0x5b, 0xf4, 0x2a, 0xdd, 0x95, 0xb7, 0x78, 0xc7, 0xa5, 0x3c, 0x89, 0x8d, 0xc7, 0xa5, 0x20, 0x0b, - 0x29, 0xa2, 0xa0, 0x62, 0x0b, 0x2b, 0xaa, 0xc0, 0xc2, 0x0b, 0x2d, 0xbc, 0xe0, 0xc2, 0x0b, 0x2f, - 0x86, 0x00, 0x83, 0x08, 0x31, 0x9e, 0xc7, 0x02, 0xec, 0xb5, 0x20, 0x7a, 0x2e, 0xb3, 0xbc, 0x97, - 0x7f, 0xf8, 0x6f, 0x84, 0x14, 0x89, 0x34, 0x49, 0x76, 0x35, 0x76, 0x6a, 0x52, 0xcc, 0xe0, 0xf1, - 0x2f, 0x28, 0x49, 0xe9, 0xb5, 0x65, 0x62, 0xfc, 0xf1, 0x3e, 0x7a, 0x60, 0x5c, 0xfa, 0x18, 0x1a, - 0xb1, 0x94, 0x58, 0x4a, 0x2c, 0x25, 0x96, 0x12, 0x4b, 0x89, 0xa5, 0x6b, 0x86, 0xa5, 0x3c, 0xc5, - 0x8f, 0x18, 0xf7, 0x1b, 0x6d, 0x82, 0xb1, 0x10, 0x32, 0xd7, 0x7b, 0x11, 0x16, 0x44, 0x12, 0xdf, - 0x88, 0x6f, 0xc4, 0x37, 0xe2, 0x1b, 0xf1, 0x8d, 0xf8, 0x66, 0xbd, 0x6e, 0x0d, 0x94, 0x36, 0x3b, - 0xdb, 0x80, 0xf4, 0x86, 0xe4, 0x29, 0x36, 0x85, 0xbe, 0x1c, 0xde, 0xad, 0x73, 0xa8, 0x1a, 0x80, - 0x55, 0xd3, 0x37, 0xc6, 0x47, 0x60, 0xc1, 0x89, 0x0d, 0x28, 0x5e, 0xe5, 0xc2, 0xfb, 0x4b, 0xf4, - 0x07, 0x12, 0x38, 0xbe, 0xaf, 0xb1, 0xe8, 0x18, 0x15, 0xea, 0x3d, 0x75, 0xa9, 0x46, 0x87, 0x8c, - 0x6d, 0xc1, 0xc5, 0xf9, 0xf0, 0x01, 0x30, 0x25, 0xc4, 0x2d, 0x53, 0x62, 0xc1, 0x94, 0x28, 0x6f, - 0xef, 0x96, 0x77, 0xab, 0xb5, 0xed, 0xdd, 0x0a, 0x73, 0xa3, 0xd8, 0x40, 0x86, 0x17, 0xcd, 0x05, - 0x4d, 0x22, 0x94, 0xda, 0xe9, 0x75, 0xc2, 0xeb, 0xeb, 0x81, 0x56, 0xe6, 0x0e, 0x75, 0x26, 0xda, - 0xf3, 0x00, 0x69, 0x1c, 0xcd, 0x0a, 0x87, 0xc6, 0xd1, 0x1c, 0x5d, 0x8a, 0xc6, 0xd1, 0x5c, 0x3d, - 0x9d, 0xc6, 0xd1, 0x82, 0x01, 0xd2, 0x38, 0x2a, 0xd0, 0x48, 0x82, 0xd3, 0xd1, 0x5e, 0x21, 0x83, - 0x05, 0x9c, 0x8e, 0x36, 0xe1, 0x0a, 0x25, 0x93, 0xec, 0xfa, 0x8e, 0x33, 0xd2, 0x30, 0x29, 0x15, - 0x66, 0x0b, 0xb0, 0x5c, 0x4e, 0x82, 0x6c, 0x05, 0x46, 0x2e, 0x25, 0x97, 0x92, 0x4b, 0xc9, 0xa5, - 0xe4, 0x52, 0x72, 0xa9, 0xf5, 0xba, 0xa5, 0x22, 0x5f, 0x74, 0xbb, 0xb1, 0x4c, 0x12, 0x44, 0x34, - 0xdd, 0x05, 0x8a, 0x69, 0xdc, 0x86, 0x7c, 0xa8, 0xf9, 0xdb, 0x3d, 0xeb, 0xa6, 0x0c, 0xd8, 0xb7, - 0x72, 0x7d, 0xec, 0x13, 0x60, 0x6c, 0xc7, 0xc2, 0x18, 0x19, 0x6b, 0xb8, 0xee, 0x96, 0x05, 0xf8, - 0xbf, 0xf7, 0xef, 0xcf, 0xb7, 0xfc, 0xdd, 0x8b, 0xfb, 0xf3, 0x92, 0xbf, 0x7b, 0x91, 0x5e, 0x96, - 0x46, 0xdf, 0xd2, 0xeb, 0xed, 0xf3, 0x2d, 0xbf, 0x3c, 0xb9, 0xae, 0x9c, 0x6f, 0xf9, 0x95, 0x8b, - 0xcd, 0xbf, 0xff, 0xfe, 0xb8, 0xf9, 0x6b, 0xe7, 0x61, 0xfe, 0x37, 0xfe, 0xc7, 0x83, 0xbb, 0x09, - 0x17, 0x58, 0x8f, 0x87, 0x3e, 0xb0, 0x28, 0xfd, 0x76, 0x51, 0xaa, 0xb2, 0x28, 0xad, 0x76, 0x51, - 0x12, 0x7e, 0xaf, 0xee, 0x7f, 0xbd, 0xf8, 0x55, 0xfa, 0x50, 0x7e, 0xf8, 0xbc, 0xf9, 0xab, 0xf6, - 0xf0, 0xfc, 0xc5, 0xfb, 0x59, 0xbf, 0x56, 0xfa, 0x50, 0x7b, 0xf8, 0xfc, 0xc2, 0x4f, 0xaa, 0x0f, - 0x9f, 0x7f, 0xf3, 0xdf, 0xa8, 0x3c, 0xbc, 0xcf, 0xfd, 0xea, 0xf0, 0xf5, 0xed, 0x97, 0xde, 0x50, - 0x7e, 0xe1, 0x0d, 0x3b, 0x2f, 0xbd, 0x61, 0xe7, 0x85, 0x37, 0xbc, 0x18, 0xd2, 0xf6, 0x0b, 0x6f, - 0xa8, 0x3c, 0xdc, 0xe7, 0x7e, 0xff, 0xfd, 0xec, 0x5f, 0xad, 0x3e, 0x6c, 0xde, 0xbf, 0xf4, 0xb3, - 0xda, 0xc3, 0xfd, 0xe7, 0x4d, 0x96, 0xe8, 0x62, 0x8c, 0x87, 0x36, 0xf8, 0x04, 0x1f, 0x49, 0x34, - 0x3d, 0x79, 0x6b, 0x7c, 0xf8, 0xa7, 0xf8, 0xb3, 0x82, 0xa4, 0x63, 0x3a, 0x2b, 0x1c, 0x3a, 0xa6, - 0x73, 0x74, 0x2b, 0x3a, 0xa6, 0x73, 0xf5, 0x74, 0x3a, 0xa6, 0x0b, 0x06, 0x48, 0xc7, 0xb4, 0x40, - 0x43, 0x49, 0x3e, 0xc9, 0x7f, 0xcd, 0xa8, 0xb1, 0x78, 0x4f, 0xf2, 0x9f, 0xb2, 0x85, 0x92, 0xc9, - 0xd4, 0xff, 0xf3, 0x89, 0x3e, 0x28, 0xb5, 0x2a, 0x7d, 0x23, 0xfa, 0xaa, 0xeb, 0xc7, 0x52, 0x24, - 0xa1, 0xc6, 0x03, 0xd6, 0x67, 0xf1, 0x91, 0x55, 0xc9, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x95, - 0xac, 0xba, 0x66, 0xac, 0xaa, 0xba, 0x52, 0x1b, 0x65, 0xee, 0x40, 0x79, 0x15, 0x68, 0x7d, 0x9a, - 0x77, 0x30, 0xbe, 0x55, 0x5f, 0x44, 0x02, 0x58, 0x52, 0x27, 0x0d, 0x7a, 0x70, 0xf4, 0x57, 0xfd, - 0xf0, 0x60, 0xaf, 0xd5, 0x6c, 0x9c, 0x9d, 0xee, 0xb7, 0x9a, 0xfb, 0xf5, 0x93, 0xc6, 0x11, 0x5a, - 0x75, 0x1d, 0x2d, 0x43, 0x4c, 0x20, 0x1f, 0x13, 0x81, 0xae, 0x2b, 0x7d, 0xde, 0xba, 0x8d, 0xe6, - 0xc1, 0x9f, 0x07, 0x47, 0xf5, 0xd3, 0x46, 0xd3, 0xe3, 0xa2, 0xe1, 0x95, 0x69, 0xd5, 0x3f, 0x0e, - 0xcf, 0x4e, 0x4e, 0xf7, 0x9b, 0xad, 0xc3, 0x46, 0xe3, 0x98, 0xed, 0xba, 0x3a, 0xed, 0x5a, 0x3f, - 0x61, 0x93, 0xae, 0x5a, 0xaa, 0x36, 0x8e, 0xbe, 0xee, 0xef, 0x79, 0x5c, 0x95, 0xfe, 0x8f, 0x5f, - 0x17, 0x1c, 0x8f, 0x80, 0x45, 0x81, 0xe0, 0x0e, 0xf6, 0x45, 0x62, 0xfc, 0xeb, 0xb0, 0xab, 0x7a, - 0x4a, 0x76, 0xf1, 0xcc, 0xc1, 0xe9, 0xf0, 0xe8, 0x0d, 0xce, 0x0a, 0x87, 0xde, 0xe0, 0x1c, 0x1d, - 0x8a, 0xde, 0xe0, 0x5c, 0x3d, 0x9d, 0xde, 0xe0, 0x82, 0x01, 0xd2, 0x1b, 0x2c, 0x10, 0xfb, 0x02, - 0x7b, 0x83, 0x46, 0x5d, 0x4b, 0xa3, 0x3a, 0x57, 0x49, 0xb5, 0x0c, 0xe8, 0x0d, 0x02, 0x4d, 0x80, - 0xf6, 0xce, 0x74, 0xba, 0x4b, 0x95, 0xa7, 0x85, 0x0e, 0x13, 0xd9, 0x09, 0x75, 0x17, 0x6a, 0xb5, - 0x14, 0xf7, 0x5b, 0xfc, 0xcd, 0x1b, 0xc5, 0xfd, 0x16, 0x5f, 0x1f, 0x1e, 0xf7, 0x5b, 0x5c, 0x45, - 0x3f, 0x86, 0xfb, 0x2d, 0xbe, 0x41, 0x4a, 0x94, 0x3e, 0x95, 0xcb, 0xd5, 0x5a, 0xb9, 0xbc, 0x55, - 0xdb, 0xa9, 0x6d, 0xed, 0x56, 0x2a, 0xa5, 0x6a, 0x89, 0x3b, 0x2f, 0x16, 0x9c, 0x1f, 0xf1, 0xa2, - 0xe1, 0xba, 0x0d, 0x98, 0x2a, 0xea, 0x45, 0xc2, 0x7c, 0xf7, 0x15, 0xa0, 0xbb, 0x35, 0x09, 0x0c, - 0x64, 0xf4, 0xb3, 0x27, 0x7b, 0x62, 0xd0, 0x1f, 0x0d, 0x55, 0xb7, 0xe8, 0xb5, 0xcd, 0x0c, 0x87, - 0x5e, 0xdb, 0x1c, 0xdd, 0x9b, 0x5e, 0xdb, 0x5c, 0x3d, 0x9d, 0x5e, 0xdb, 0x82, 0x01, 0xd2, 0x6b, - 0x2b, 0xd0, 0xb8, 0x86, 0xc7, 0x86, 0xcc, 0xaf, 0x82, 0x3c, 0x36, 0xe4, 0xdf, 0xbe, 0x68, 0x63, - 0xad, 0xe4, 0x98, 0x9d, 0x36, 0x56, 0xd1, 0xcb, 0xfd, 0x74, 0x4a, 0xd0, 0xc6, 0x5a, 0x38, 0x25, - 0x78, 0x6c, 0xc8, 0xaa, 0x00, 0x19, 0x5e, 0x34, 0x34, 0xaf, 0x60, 0x6a, 0xa7, 0x37, 0x5e, 0x1c, - 0x19, 0x0e, 0x8c, 0xc4, 0x33, 0xb0, 0x9e, 0x06, 0x47, 0xc3, 0x68, 0x56, 0x38, 0x34, 0x8c, 0xe6, - 0xe8, 0x4e, 0x34, 0x8c, 0xe6, 0xea, 0xe9, 0x34, 0x8c, 0x16, 0x0c, 0x90, 0x86, 0x51, 0x81, 0x46, - 0x10, 0xc0, 0x86, 0x51, 0x3b, 0x0c, 0xfb, 0x52, 0x68, 0xc4, 0x45, 0x9b, 0x25, 0xa2, 0x1c, 0x40, - 0x04, 0x8e, 0x53, 0xc8, 0xab, 0x6b, 0x1d, 0x1a, 0x31, 0x1c, 0x8d, 0x41, 0x24, 0x90, 0x97, 0x74, - 0xbe, 0xcb, 0x6b, 0x11, 0x8d, 0x37, 0x9d, 0x09, 0xc2, 0x48, 0xea, 0xce, 0x08, 0x94, 0x7c, 0x2d, - 0xcd, 0xcf, 0x30, 0xbe, 0xf2, 0x95, 0x4e, 0x8c, 0xd0, 0x1d, 0x19, 0x3c, 0x7f, 0x21, 0xc9, 0xbd, - 0x12, 0x44, 0x71, 0x68, 0xc2, 0x4e, 0xd8, 0x4f, 0xb2, 0xab, 0xa0, 0x7d, 0x19, 0x05, 0xb1, 0x6a, - 0x07, 0xa2, 0xa7, 0xfc, 0x44, 0xf4, 0x54, 0x92, 0x5d, 0x05, 0xa3, 0x4d, 0x65, 0x93, 0xd8, 0x48, - 0x3f, 0x0a, 0xfb, 0xaa, 0x73, 0x17, 0x68, 0xa9, 0x2e, 0xbf, 0xb7, 0xc3, 0x38, 0xc9, 0xae, 0x02, - 0xd1, 0xfd, 0x31, 0x52, 0x03, 0xa5, 0xfd, 0x28, 0x4c, 0x4c, 0x30, 0x22, 0xdc, 0x24, 0xfd, 0x96, - 0xee, 0x73, 0xe3, 0x56, 0x24, 0xdc, 0xf5, 0x66, 0x87, 0x3d, 0xd9, 0x1b, 0xe8, 0x2b, 0x1d, 0xfe, - 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0x61, 0x8b, 0x38, 0xef, 0xcd, 0x8f, 0xcf, 0x0c, 0xf2, 0xb1, - 0x39, 0xce, 0xf9, 0x89, 0x02, 0x38, 0x0e, 0x03, 0x65, 0x00, 0x84, 0x34, 0xf0, 0xc1, 0x1c, 0xf0, - 0xa0, 0x0d, 0x74, 0x60, 0x07, 0x38, 0xb0, 0x03, 0x1b, 0xd8, 0x01, 0xcd, 0x7a, 0xd3, 0xd7, 0x9e, - 0x8a, 0x31, 0xca, 0x4e, 0x4e, 0xa4, 0xf0, 0x1c, 0xc5, 0x7c, 0x88, 0x58, 0xbe, 0x62, 0x89, 0xbe, - 0x22, 0xbc, 0xbc, 0x62, 0xcb, 0x2c, 0xaa, 0xdc, 0xc2, 0xcb, 0x2e, 0xbc, 0xfc, 0xc2, 0xcb, 0x30, - 0x8e, 0x1d, 0xb3, 0x01, 0xe4, 0x2b, 0xa2, 0xc8, 0x73, 0x16, 0xd0, 0x50, 0xfb, 0x7c, 0x83, 0xe6, - 0x76, 0x4e, 0x55, 0xd4, 0xc7, 0x10, 0xc1, 0x52, 0x0f, 0x73, 0xf6, 0x06, 0x9c, 0x5c, 0x23, 0xcb, - 0x76, 0x31, 0xe4, 0x1b, 0x5d, 0xc6, 0x0b, 0x23, 0xe7, 0x85, 0x91, 0xf5, 0xc2, 0xc8, 0x3b, 0x96, - 0xcc, 0x83, 0xc9, 0x7d, 0xd6, 0x8a, 0xa7, 0x88, 0x02, 0xbb, 0x81, 0x7d, 0x76, 0x41, 0x6e, 0x34, - 0x5c, 0xc3, 0x3c, 0xf9, 0x6e, 0x72, 0x96, 0x41, 0x7a, 0x24, 0xc1, 0x23, 0xac, 0x70, 0xbe, 0x1f, - 0x7a, 0x6a, 0x7a, 0xe9, 0xd3, 0x35, 0x58, 0xf0, 0x4d, 0xc3, 0xc3, 0x84, 0xde, 0x12, 0xa1, 0x97, - 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x12, 0x7a, 0xa9, 0xac, 0xb3, 0x5b, 0x11, 0xcd, 0xeb, 0xca, 0x02, - 0x1b, 0x31, 0x5a, 0x5f, 0x02, 0x2f, 0x95, 0x9b, 0xb2, 0xbe, 0x86, 0x91, 0x7e, 0xe0, 0xfa, 0xa5, - 0x15, 0x82, 0x82, 0x22, 0xc0, 0x41, 0xb1, 0x20, 0xa1, 0x28, 0xb0, 0x50, 0x38, 0x68, 0x28, 0x1c, - 0x3c, 0x14, 0x0e, 0x22, 0x30, 0x61, 0x02, 0x14, 0x2a, 0xb2, 0xd6, 0x85, 0x75, 0xd4, 0x72, 0x75, - 0x73, 0xa0, 0xb4, 0x29, 0x55, 0x91, 0x6b, 0xe6, 0x58, 0xc5, 0xab, 0xc0, 0x21, 0x62, 0xee, 0x00, - 0xf1, 0xfc, 0x0b, 0x5b, 0x73, 0x36, 0xd0, 0x77, 0x88, 0x28, 0x18, 0x5e, 0xe6, 0xc2, 0x05, 0xdf, - 0x41, 0x22, 0x17, 0x6f, 0x01, 0x56, 0xcd, 0x17, 0x44, 0x8e, 0xa6, 0x53, 0x4c, 0xdc, 0x32, 0xc5, - 0x96, 0x9c, 0x62, 0xd5, 0x4a, 0x65, 0xa7, 0xc2, 0x34, 0x5b, 0x2f, 0x16, 0xc5, 0x8f, 0xee, 0xe2, - 0x1d, 0xef, 0x57, 0x41, 0xcb, 0x38, 0xf0, 0x4c, 0xb8, 0xdc, 0x90, 0x02, 0x75, 0x46, 0x5c, 0x41, - 0x54, 0x85, 0xbe, 0xe0, 0x5b, 0x76, 0x46, 0xfa, 0x82, 0x6f, 0x9a, 0x39, 0xf4, 0x05, 0x97, 0x1c, - 0x30, 0x7d, 0xc1, 0x15, 0x1e, 0x88, 0x15, 0xcc, 0x17, 0xfc, 0x54, 0x00, 0x5b, 0xb0, 0x42, 0x5b, - 0x70, 0xc1, 0x2f, 0xda, 0x82, 0xf4, 0x2c, 0x68, 0x0b, 0xae, 0xa1, 0x1a, 0x4d, 0xa7, 0x18, 0x6d, - 0xc1, 0xa5, 0xa7, 0xd8, 0x76, 0x85, 0xa6, 0xe0, 0x9a, 0x81, 0x28, 0x7e, 0x74, 0x34, 0x05, 0x0b, - 0x5b, 0xc4, 0x53, 0xa7, 0xed, 0x66, 0x5c, 0x5d, 0x8a, 0xe0, 0x0a, 0xa6, 0xb1, 0xd2, 0x16, 0x7c, - 0x4d, 0x78, 0xb4, 0x05, 0xdf, 0xb0, 0x37, 0xd2, 0x16, 0x7c, 0xd3, 0xcc, 0xa1, 0x2d, 0xb8, 0xe4, - 0x80, 0x69, 0x0b, 0xae, 0xf0, 0x40, 0xac, 0x40, 0xb6, 0x60, 0x5b, 0x69, 0x11, 0xdf, 0x15, 0xc0, - 0x17, 0xdc, 0x05, 0x0e, 0xf1, 0x50, 0xea, 0xcb, 0xd1, 0xc2, 0x5c, 0x1a, 0x83, 0x8b, 0xba, 0x16, - 0x34, 0x06, 0x97, 0xee, 0x5a, 0x94, 0xe8, 0x59, 0xac, 0x99, 0x1e, 0x4d, 0xa7, 0x18, 0x8d, 0xc1, - 0xa5, 0xa7, 0x18, 0xe7, 0x0b, 0xae, 0x21, 0x8c, 0xe2, 0x47, 0x47, 0x6b, 0xb0, 0xb0, 0x65, 0xdc, - 0x93, 0xb7, 0x46, 0xea, 0xae, 0xec, 0xe2, 0x1b, 0x83, 0x59, 0xa4, 0xb4, 0x05, 0x5f, 0x13, 0x1e, - 0x6d, 0xc1, 0x37, 0xec, 0x8b, 0xb4, 0x05, 0xdf, 0x34, 0x73, 0x68, 0x0b, 0x2e, 0x39, 0x60, 0xda, - 0x82, 0x2b, 0x3c, 0x0c, 0x2b, 0x92, 0x2d, 0x08, 0x77, 0xec, 0xd7, 0x4b, 0x32, 0x0e, 0x72, 0x0c, - 0x18, 0xa1, 0xf6, 0x35, 0x6d, 0x18, 0x46, 0xc3, 0x91, 0xa7, 0xe8, 0xe3, 0x43, 0x6d, 0x16, 0x29, - 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, - 0x96, 0x49, 0x31, 0xdd, 0x86, 0x91, 0x88, 0x8d, 0x2a, 0x02, 0xd3, 0x4e, 0x02, 0x25, 0xd2, 0x12, - 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x32, 0x29, - 0xa6, 0xdb, 0xd0, 0xc4, 0x42, 0x27, 0xca, 0xa8, 0x9b, 0x02, 0xac, 0x4b, 0x7a, 0x12, 0x2b, 0xc1, - 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, - 0x11, 0x81, 0xa6, 0xa8, 0x57, 0xd7, 0x3a, 0x34, 0xc2, 0xa8, 0x10, 0x73, 0x01, 0x94, 0x97, 0x74, - 0xbe, 0xcb, 0x6b, 0x11, 0x8d, 0x0f, 0xa0, 0x0c, 0xc2, 0x48, 0xea, 0xce, 0x08, 0x14, 0x7d, 0x2d, - 0xcd, 0xcf, 0x30, 0xbe, 0xf2, 0x95, 0x4e, 0x8c, 0xd0, 0x1d, 0x19, 0x3c, 0x7f, 0x21, 0xc9, 0xbd, - 0x12, 0x44, 0x71, 0x68, 0xc2, 0x4e, 0xd8, 0x4f, 0xb2, 0xab, 0xa0, 0x7d, 0x19, 0x05, 0xb1, 0x6a, - 0x07, 0xa2, 0xa7, 0xfc, 0x44, 0xf4, 0x54, 0x92, 0x5d, 0x05, 0x2a, 0xba, 0xa9, 0xfa, 0x49, 0x6c, - 0xa4, 0x1f, 0x85, 0x7d, 0xd5, 0xb9, 0x0b, 0xb4, 0x54, 0x97, 0xdf, 0xdb, 0x61, 0x9c, 0x64, 0x57, - 0x81, 0xe8, 0xfe, 0x18, 0xa9, 0x95, 0xd2, 0x7e, 0x14, 0x26, 0x26, 0x88, 0xc3, 0x81, 0x91, 0x49, - 0xfa, 0x2d, 0x18, 0xe8, 0x2b, 0x1d, 0xfe, 0xd4, 0xbe, 0x30, 0x26, 0x56, 0xed, 0xd1, 0x0f, 0x72, - 0x2f, 0xa5, 0x27, 0x6a, 0xf2, 0x1c, 0x4d, 0xe4, 0x48, 0x50, 0xce, 0xd5, 0xff, 0xaf, 0xbc, 0x43, - 0xdc, 0x18, 0xd7, 0x3b, 0x54, 0x89, 0xa9, 0x1b, 0x03, 0x76, 0xe8, 0xff, 0x37, 0xa5, 0xf7, 0xfb, - 0x72, 0x48, 0x95, 0x89, 0xf7, 0x79, 0x43, 0x0f, 0xfa, 0x7d, 0xa0, 0x43, 0x59, 0xbf, 0xfd, 0x3f, - 0x7b, 0xff, 0xff, 0x94, 0x38, 0xf2, 0x7d, 0x01, 0xe3, 0xbf, 0xcf, 0x5f, 0x61, 0xa5, 0xf6, 0x53, - 0xa5, 0xf5, 0x31, 0x13, 0x41, 0xbe, 0x88, 0xbf, 0x3c, 0xc5, 0x8c, 0xce, 0x16, 0xb5, 0x8e, 0x58, - 0xa8, 0xf3, 0x7e, 0x5e, 0xe5, 0xb2, 0x54, 0x80, 0x86, 0xe9, 0x1d, 0xec, 0x50, 0x49, 0xe3, 0x68, - 0x8d, 0xfc, 0xef, 0x4f, 0x41, 0x42, 0x14, 0x02, 0xb3, 0x22, 0x49, 0xf7, 0x6d, 0x38, 0xd6, 0xd6, - 0x9a, 0x41, 0x30, 0xd7, 0x74, 0xdf, 0x7b, 0xce, 0x3d, 0x7d, 0xfb, 0xb6, 0xfb, 0x48, 0xd7, 0xb8, - 0xba, 0xdf, 0x65, 0x3e, 0xeb, 0x7e, 0x7a, 0x8a, 0x4c, 0x83, 0x13, 0xd2, 0x47, 0xcc, 0xed, 0x47, - 0x4a, 0x8b, 0xd4, 0x99, 0xca, 0xfe, 0xa8, 0x23, 0x45, 0x94, 0x35, 0x5c, 0x86, 0x4f, 0xaf, 0x16, - 0x3d, 0xbc, 0xd6, 0x55, 0xf4, 0xc8, 0x5a, 0x9f, 0xfa, 0xc3, 0x56, 0x83, 0xb7, 0x5b, 0xd5, 0x1e, - 0xbf, 0x76, 0x7b, 0xbc, 0x55, 0x1b, 0x3e, 0x94, 0xae, 0x7d, 0xc9, 0xae, 0xa6, 0x4f, 0xa9, 0x75, - 0x19, 0x3d, 0x9b, 0x56, 0xb5, 0xfb, 0x6f, 0x83, 0xb7, 0x6b, 0xe2, 0xca, 0x0b, 0x64, 0xab, 0x31, - 0x79, 0x22, 0xad, 0xdb, 0xf0, 0xcf, 0xaf, 0xc6, 0x7f, 0xfd, 0x07, 0xe0, 0xb1, 0x7e, 0x0b, 0x34, - 0x07, 0x21, 0x6a, 0xc1, 0x67, 0xdb, 0x82, 0x8e, 0x5e, 0x27, 0xd3, 0x37, 0xb5, 0xf5, 0xdc, 0x59, - 0x93, 0x33, 0xcd, 0x68, 0xf4, 0x64, 0xd6, 0xda, 0xbc, 0xbb, 0xc7, 0x44, 0x77, 0xe8, 0x71, 0x21, - 0xf7, 0x3a, 0xde, 0xc0, 0xf3, 0x35, 0xa1, 0x0c, 0x0d, 0x0e, 0x4d, 0x8a, 0x33, 0x93, 0xe2, 0xc8, - 0x34, 0x38, 0xb1, 0x2e, 0x8f, 0x21, 0x02, 0x3b, 0x46, 0xc3, 0x8d, 0x46, 0xfa, 0x9a, 0x3d, 0x5d, - 0xd5, 0x03, 0x9c, 0xea, 0x61, 0x4b, 0xed, 0x1d, 0x15, 0xbb, 0xbb, 0x6e, 0x37, 0x37, 0xd4, 0xbd, - 0xd5, 0xce, 0x7d, 0x75, 0x33, 0x50, 0xcd, 0x9d, 0x14, 0xcd, 0x71, 0x5d, 0x73, 0xdb, 0xb4, 0x39, - 0xad, 0x10, 0xa5, 0xb2, 0x44, 0x25, 0x35, 0x3e, 0x99, 0xbd, 0x87, 0x28, 0xf0, 0x0e, 0xeb, 0xf5, - 0x0c, 0xf0, 0xd5, 0xad, 0xd3, 0xbf, 0x74, 0xf4, 0x9e, 0xbf, 0xbf, 0xa2, 0x78, 0x30, 0x5b, 0x46, - 0x57, 0x74, 0x3b, 0xd5, 0xd5, 0x6d, 0x3a, 0xaa, 0xd5, 0xf4, 0x56, 0x9f, 0xe9, 0xaa, 0x26, 0xd3, - 0x5e, 0x1d, 0xa6, 0xbd, 0xda, 0x4b, 0x7b, 0xf5, 0xd6, 0x76, 0x31, 0x95, 0x33, 0xae, 0x56, 0x04, - 0xb2, 0x22, 0x1a, 0xab, 0xdc, 0x71, 0x66, 0xe1, 0x22, 0xba, 0xbf, 0xe2, 0x49, 0xab, 0x16, 0x00, - 0xb4, 0x01, 0x81, 0x4e, 0x40, 0xa0, 0x01, 0x0c, 0xba, 0x01, 0x82, 0x0c, 0x50, 0x90, 0x01, 0x0c, - 0x32, 0xc0, 0xb1, 0x1b, 0xb2, 0x8e, 0x6a, 0x40, 0x99, 0x07, 0x16, 0x7d, 0xfe, 0x36, 0x87, 0x2f, - 0xba, 0x7c, 0x4d, 0x0f, 0xcc, 0x68, 0x87, 0x1b, 0x0a, 0xb0, 0x43, 0x0b, 0x7e, 0xa8, 0xc0, 0x10, - 0x39, 0x38, 0x22, 0x07, 0x4b, 0xe4, 0xe0, 0x49, 0x0f, 0x4c, 0x69, 0x82, 0x2b, 0xed, 0xb0, 0x15, - 0x1b, 0x10, 0xd6, 0x03, 0x68, 0xf7, 0xd3, 0x59, 0xf4, 0xd2, 0x59, 0x9e, 0xb0, 0x08, 0x67, 0x9a, - 0xf7, 0x68, 0x92, 0xd9, 0x2c, 0x4a, 0x69, 0x53, 0x28, 0xcd, 0xcd, 0x9f, 0xd4, 0x36, 0x79, 0x92, - 0xdd, 0xcc, 0x49, 0x76, 0xd3, 0x26, 0xd9, 0xcd, 0x99, 0xbb, 0x5d, 0x0a, 0x4a, 0x66, 0x53, 0x65, - 0x1c, 0x77, 0x06, 0xcc, 0xed, 0xf9, 0xac, 0x47, 0x21, 0xe8, 0xcc, 0xb2, 0xae, 0x32, 0x01, 0x5b, - 0xae, 0xa2, 0xb5, 0xdf, 0x8f, 0x1f, 0xc3, 0xbd, 0x5e, 0x4e, 0x08, 0xe4, 0xbb, 0x5a, 0x6a, 0xaa, - 0x31, 0xf3, 0x9a, 0x55, 0x7a, 0xd2, 0xe1, 0x74, 0xb1, 0x45, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, - 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, 0x46, 0xd2, 0xba, 0x18, 0xcb, 0xc1, 0xec, 0x94, - 0x0f, 0x46, 0xb4, 0x97, 0x87, 0x0e, 0xb1, 0x9b, 0x19, 0x04, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, - 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x67, 0x24, 0xaf, 0x9b, 0x41, 0x39, 0x68, 0x9d, 0xf2, - 0xb1, 0x08, 0x7b, 0x63, 0x91, 0x21, 0x75, 0xa1, 0x39, 0x34, 0x28, 0x5d, 0x0e, 0x94, 0x0e, 0x94, - 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x4e, 0xd7, 0xa8, 0xe8, 0x2e, 0x50, 0x8a, 0x0d, 0x99, 0x36, - 0x04, 0xe4, 0xa2, 0xcb, 0xe8, 0x74, 0x27, 0x7f, 0xd9, 0xdd, 0xf7, 0x62, 0x1b, 0x95, 0x2e, 0x8a, - 0xa4, 0xfa, 0xe0, 0x93, 0xeb, 0x7b, 0x4f, 0xb1, 0xcf, 0x3d, 0xed, 0xbe, 0xf6, 0x54, 0xfb, 0xd8, - 0x93, 0xef, 0x5b, 0x4f, 0xbe, 0x4f, 0x3d, 0xf9, 0xbe, 0xf4, 0xe8, 0x8f, 0x4b, 0x52, 0x63, 0x21, - 0xac, 0xb5, 0x50, 0xd4, 0x5c, 0x96, 0x69, 0x2f, 0xbf, 0xf9, 0x6f, 0x4a, 0x29, 0x02, 0x26, 0x83, - 0xf8, 0x2a, 0x52, 0x6a, 0x42, 0x9a, 0x81, 0x46, 0x99, 0x54, 0x9c, 0x92, 0x48, 0x05, 0x7d, 0xc2, - 0x1b, 0x29, 0x54, 0xd2, 0x83, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, - 0x2a, 0x8f, 0x5b, 0x23, 0x2e, 0xe4, 0x71, 0x9e, 0x20, 0x1b, 0xa5, 0x44, 0x46, 0x1b, 0xae, 0xe8, - 0x4f, 0x9e, 0xd6, 0x1d, 0xa9, 0x18, 0x40, 0xf0, 0x8c, 0x9e, 0xaf, 0x5c, 0xd0, 0x3d, 0x9f, 0x93, - 0xf8, 0xa9, 0x97, 0xdf, 0xdc, 0xc1, 0x88, 0x11, 0xb6, 0xef, 0x8b, 0xef, 0x76, 0x24, 0xf7, 0xc4, - 0x19, 0xef, 0xf3, 0x69, 0x1b, 0xe6, 0x23, 0x9c, 0x5c, 0xfb, 0x16, 0x97, 0x70, 0x1f, 0xe1, 0x12, - 0x1b, 0xba, 0x44, 0x21, 0x5f, 0x29, 0x54, 0x4a, 0xe5, 0x7c, 0xa5, 0x08, 0xdf, 0x30, 0x9b, 0x90, - 0xd1, 0xb3, 0xa6, 0x09, 0x91, 0x88, 0x4a, 0xec, 0xb4, 0x3a, 0xde, 0xfd, 0xfd, 0x48, 0x70, 0xf9, - 0x44, 0x75, 0x09, 0x73, 0xd1, 0x40, 0x08, 0x47, 0xcb, 0xcc, 0x81, 0x70, 0xb4, 0xc6, 0x94, 0x82, - 0x70, 0xb4, 0xd6, 0x4c, 0x87, 0x70, 0xb4, 0xa1, 0x81, 0x10, 0x8e, 0x0c, 0xca, 0x24, 0xb0, 0x8e, - 0xf9, 0x0e, 0x18, 0x34, 0x70, 0x1d, 0x73, 0xc6, 0x2b, 0x38, 0x0b, 0xe2, 0xeb, 0x27, 0x2c, 0x65, - 0xd2, 0x64, 0xa9, 0x64, 0x7a, 0x47, 0x24, 0x7c, 0x92, 0x48, 0x0f, 0x09, 0xf0, 0x52, 0xf0, 0x52, - 0xf0, 0x52, 0xf0, 0x52, 0xf0, 0x52, 0xf0, 0x52, 0xe5, 0x71, 0x8b, 0x0f, 0x6d, 0xb7, 0xdb, 0xf5, - 0x59, 0x10, 0x50, 0xa4, 0xa6, 0x15, 0x42, 0x36, 0x45, 0x63, 0x88, 0x45, 0xcd, 0x37, 0xcf, 0xac, - 0x87, 0x02, 0xc1, 0xb9, 0x95, 0x98, 0x63, 0x27, 0x04, 0x6d, 0xbb, 0x72, 0xa5, 0x64, 0xbe, 0x20, - 0x37, 0xdd, 0x62, 0x03, 0xff, 0xd9, 0xdf, 0xbf, 0x3b, 0xb2, 0x2b, 0xcd, 0xe7, 0xbb, 0x9c, 0x5d, - 0x69, 0x86, 0x97, 0xb9, 0xe9, 0xb7, 0xf0, 0x3a, 0x7f, 0x77, 0x64, 0x17, 0x66, 0xd7, 0xc5, 0xbb, - 0x23, 0xbb, 0xd8, 0x3c, 0xf8, 0xfb, 0xef, 0x8f, 0x07, 0xbf, 0x8e, 0xc7, 0xeb, 0x7f, 0xf0, 0x0f, - 0x8b, 0xdc, 0x43, 0x68, 0xd2, 0x5a, 0x1e, 0x3a, 0x44, 0x50, 0x7a, 0x73, 0x50, 0x2a, 0x21, 0x28, - 0x6d, 0x77, 0x50, 0x72, 0xed, 0x5e, 0xd5, 0xfe, 0xd2, 0xfc, 0x95, 0x3b, 0x2c, 0x8c, 0x4f, 0x0f, - 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2f, 0x7b, 0x5b, 0xee, 0xb0, 0x3c, 0x3e, 0x5d, 0xf1, 0x93, - 0xd2, 0xf8, 0xf4, 0x8d, 0xbf, 0xa3, 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, - 0x0a, 0x2b, 0x3e, 0x70, 0xbc, 0xea, 0x03, 0xc7, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, - 0x14, 0xc7, 0xcf, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xbc, 0xea, 0x67, 0xe5, - 0xf1, 0xf3, 0xe9, 0x01, 0x42, 0xb4, 0x19, 0xf9, 0xd0, 0x1e, 0x56, 0xf0, 0x29, 0x81, 0xa6, 0xc5, - 0x1e, 0xa5, 0x4d, 0x7e, 0x15, 0x7f, 0x99, 0x91, 0x50, 0x4c, 0x97, 0x99, 0x03, 0xc5, 0x74, 0x8d, - 0x69, 0x05, 0xc5, 0x74, 0xad, 0x99, 0x0e, 0xc5, 0x74, 0x43, 0x03, 0xa1, 0x98, 0x1a, 0x94, 0x4a, - 0x62, 0x25, 0xff, 0x3d, 0x59, 0xa3, 0x79, 0x2b, 0xf9, 0xaf, 0xb9, 0x05, 0x67, 0xc1, 0xdc, 0xbf, - 0xb1, 0xa2, 0x4f, 0x94, 0xb5, 0x72, 0xf1, 0xe0, 0x0e, 0x78, 0xd7, 0xf6, 0x99, 0x1b, 0x78, 0x82, - 0x1e, 0x61, 0x5d, 0xb0, 0x0f, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, - 0x75, 0xc7, 0xb8, 0x2a, 0xef, 0x32, 0x21, 0xb9, 0x7c, 0x22, 0xca, 0x57, 0x09, 0xed, 0x4f, 0xb3, - 0x6a, 0xd1, 0xa3, 0xfa, 0xe4, 0x06, 0x04, 0x43, 0xea, 0x6c, 0x40, 0x6b, 0x97, 0xdf, 0xaa, 0x17, - 0xb5, 0xb3, 0x56, 0xa3, 0x7e, 0x7b, 0x73, 0xde, 0x6a, 0x9c, 0x57, 0xaf, 0xeb, 0x97, 0xd4, 0xa2, - 0xeb, 0x74, 0x1b, 0x62, 0x40, 0x72, 0x99, 0x88, 0xe8, 0xbe, 0xd2, 0xc5, 0xd1, 0xad, 0x37, 0x6a, - 0x7f, 0xd6, 0x2e, 0xab, 0x37, 0xf5, 0x86, 0x85, 0x4d, 0xc3, 0x5b, 0x33, 0xaa, 0x9f, 0x2f, 0x6e, - 0xaf, 0x6f, 0xce, 0x1b, 0xad, 0x8b, 0x7a, 0xfd, 0x0a, 0xe3, 0xba, 0x3d, 0xe3, 0x5a, 0xbd, 0xc6, - 0x90, 0x6e, 0x9b, 0xab, 0xd6, 0x2f, 0xbf, 0x9c, 0x9f, 0x59, 0xd8, 0x95, 0xfe, 0xdb, 0xaf, 0x26, - 0xf2, 0x11, 0x62, 0x56, 0x50, 0x50, 0x07, 0x07, 0x6e, 0x20, 0xed, 0x7b, 0xaf, 0xcb, 0x7b, 0x9c, - 0x75, 0xe9, 0x89, 0x83, 0xf3, 0xe6, 0x41, 0x1b, 0x5c, 0x66, 0x0e, 0xb4, 0xc1, 0x35, 0x26, 0x14, - 0xb4, 0xc1, 0xb5, 0x66, 0x3a, 0xb4, 0xc1, 0x0d, 0x0d, 0x84, 0x36, 0x68, 0x10, 0xf7, 0x25, 0xac, - 0x0d, 0x4a, 0x7e, 0xcf, 0x24, 0xef, 0xfc, 0x08, 0x4a, 0x05, 0x82, 0xda, 0x20, 0xa1, 0x02, 0x68, - 0xeb, 0x56, 0x84, 0x5d, 0xaa, 0x2c, 0xe1, 0x0a, 0x2f, 0x60, 0x1d, 0x4f, 0x74, 0x49, 0xed, 0x96, - 0x42, 0xbf, 0xc5, 0x37, 0x3e, 0x28, 0xf4, 0x5b, 0x7c, 0xbf, 0x79, 0xe8, 0xb7, 0xb8, 0x8d, 0x7a, - 0x0c, 0xfa, 0x2d, 0xa6, 0xe0, 0x12, 0xb9, 0x93, 0x42, 0xa1, 0x54, 0x2e, 0x14, 0x8e, 0xca, 0xc7, - 0xe5, 0xa3, 0x4a, 0xb1, 0x98, 0x2b, 0xe5, 0xd0, 0x79, 0xd1, 0x70, 0xfe, 0x48, 0xcf, 0x1a, 0xec, - 0xdb, 0x20, 0x13, 0x45, 0xc9, 0x9c, 0x9a, 0x9f, 0x20, 0xf5, 0x34, 0x4e, 0xcf, 0x8f, 0xcd, 0x3a, - 0x63, 0x3d, 0x77, 0x34, 0x98, 0xa6, 0xaa, 0x47, 0xd0, 0xda, 0x96, 0x9a, 0x03, 0xad, 0x6d, 0x8d, - 0xe9, 0x0d, 0xad, 0x6d, 0xad, 0x99, 0x0e, 0xad, 0x6d, 0x43, 0x03, 0xa1, 0xb5, 0x19, 0x94, 0xd7, - 0xe0, 0xd8, 0x90, 0xf5, 0x51, 0x10, 0xc7, 0x86, 0xfc, 0xd7, 0x17, 0x64, 0xac, 0xad, 0xcc, 0xd9, - 0x21, 0x63, 0x99, 0x1e, 0xee, 0xe7, 0x5d, 0x02, 0x32, 0xd6, 0xc6, 0x2e, 0x81, 0x63, 0x43, 0xb6, - 0x85, 0x90, 0xd1, 0xb3, 0x06, 0xe2, 0x15, 0x99, 0xd8, 0x69, 0x45, 0x9b, 0x23, 0xbd, 0x91, 0x64, - 0xf4, 0x04, 0xac, 0xd7, 0xc6, 0x41, 0x30, 0x5a, 0x66, 0x0e, 0x04, 0xa3, 0x35, 0xa6, 0x13, 0x04, - 0xa3, 0xb5, 0x66, 0x3a, 0x04, 0xa3, 0x0d, 0x0d, 0x84, 0x60, 0x64, 0x50, 0x06, 0x41, 0x58, 0x30, - 0x6a, 0x7b, 0xde, 0x80, 0xb9, 0x82, 0xe2, 0xa6, 0xcd, 0x1c, 0xa8, 0x1c, 0x01, 0x0b, 0x34, 0xbb, - 0x90, 0x55, 0x15, 0xc2, 0x93, 0xee, 0x24, 0x1b, 0x23, 0xe1, 0x40, 0x56, 0xd0, 0xf9, 0xce, 0xee, - 0xdd, 0x61, 0xd4, 0x74, 0xc6, 0xf1, 0x86, 0x4c, 0x74, 0xa6, 0x44, 0xc9, 0x16, 0x4c, 0xfe, 0xf4, - 0xfc, 0x1f, 0x36, 0x17, 0x81, 0x74, 0x45, 0x87, 0x39, 0x8b, 0x2f, 0x04, 0x89, 0x57, 0x9c, 0xa1, - 0xef, 0x49, 0xaf, 0xe3, 0x0d, 0x82, 0xf8, 0xca, 0x69, 0xf7, 0x87, 0x8e, 0xcf, 0xdb, 0x8e, 0xdb, - 0xe3, 0x76, 0xe0, 0xf6, 0x78, 0x10, 0x5f, 0x39, 0xd3, 0xa6, 0xb2, 0x81, 0x2f, 0x99, 0x3d, 0xf4, - 0x06, 0xbc, 0xf3, 0xe4, 0x08, 0xc6, 0xfb, 0xdf, 0xdb, 0x9e, 0x1f, 0xc4, 0x57, 0x8e, 0xdb, 0xfd, - 0x77, 0x8a, 0x06, 0x5c, 0xd8, 0x43, 0x9f, 0x39, 0x53, 0x82, 0x1b, 0x84, 0xdf, 0xc2, 0x36, 0x37, - 0x7a, 0x31, 0x42, 0xdf, 0x64, 0xd6, 0x38, 0x91, 0xad, 0x91, 0xf8, 0x21, 0xbc, 0x9f, 0xc2, 0x76, - 0xa5, 0xf4, 0x79, 0x7b, 0x32, 0x22, 0xda, 0x27, 0xf3, 0xcb, 0x92, 0x41, 0xd2, 0x36, 0xcd, 0x2e, - 0x3f, 0x03, 0x00, 0xcd, 0x66, 0x50, 0xc9, 0x7f, 0x28, 0xe5, 0x3d, 0x34, 0xf3, 0x1d, 0x6a, 0x79, - 0x0e, 0xd9, 0xfc, 0x86, 0x6c, 0x5e, 0x43, 0x36, 0x9f, 0xd9, 0x6d, 0xf2, 0x75, 0xc6, 0x7d, 0x1a, - 0x61, 0x27, 0x01, 0x52, 0xf4, 0x04, 0xc5, 0xa4, 0x89, 0xb4, 0x64, 0xc5, 0x1c, 0x64, 0x45, 0xf2, - 0xf0, 0x4a, 0x1b, 0x66, 0xa9, 0xc2, 0x2d, 0x79, 0xd8, 0x25, 0x0f, 0xbf, 0xe4, 0x61, 0x98, 0x8e, - 0x1a, 0xb3, 0x47, 0x48, 0x56, 0xa4, 0x02, 0xcf, 0xb1, 0x41, 0x13, 0xec, 0xb3, 0x25, 0x35, 0xb1, - 0x73, 0x2e, 0xa2, 0xbe, 0x98, 0x48, 0xcc, 0xf5, 0x68, 0x16, 0x6f, 0x90, 0x83, 0x6b, 0xca, 0xb0, - 0x6d, 0x06, 0x7c, 0x53, 0x87, 0x71, 0x63, 0xe0, 0xdc, 0x18, 0x58, 0x37, 0x06, 0xde, 0x69, 0xc1, - 0x3c, 0x31, 0xb8, 0x8f, 0x47, 0xf1, 0x86, 0x22, 0xc0, 0xee, 0xd1, 0x3e, 0xba, 0x20, 0x91, 0x0d, - 0x97, 0x69, 0x1e, 0x7c, 0x37, 0x3b, 0xca, 0x20, 0x3c, 0x91, 0xe0, 0x85, 0xac, 0xa0, 0xdc, 0x8f, - 0xba, 0x6b, 0x5a, 0xe1, 0xea, 0x1a, 0x59, 0xe2, 0x1b, 0x9a, 0x47, 0x93, 0xf4, 0xe6, 0x40, 0x7a, - 0x41, 0x7a, 0x41, 0x7a, 0x41, 0x7a, 0x41, 0x7a, 0x81, 0xac, 0xcb, 0x47, 0x91, 0x9a, 0xd6, 0x15, - 0x1b, 0x36, 0xe5, 0x68, 0x03, 0x46, 0x78, 0xa7, 0xdc, 0x9c, 0xf4, 0x35, 0xb1, 0xf4, 0x10, 0xdb, - 0x97, 0xb6, 0x88, 0x14, 0x98, 0x40, 0x0e, 0xcc, 0x22, 0x09, 0xa6, 0x90, 0x05, 0xe3, 0x48, 0x83, - 0x71, 0xe4, 0xc1, 0x38, 0x12, 0x41, 0x93, 0x4c, 0x10, 0x25, 0x15, 0xf1, 0xe8, 0x92, 0x55, 0xd4, - 0x12, 0x71, 0x73, 0xc4, 0x85, 0xcc, 0x95, 0x28, 0xc7, 0xcc, 0x08, 0xc5, 0x4b, 0x84, 0x4d, 0xa4, - 0xd9, 0x00, 0x62, 0xf1, 0x8b, 0x36, 0xe6, 0xec, 0x51, 0x6f, 0x10, 0x61, 0x18, 0xbd, 0x4c, 0x98, - 0x4b, 0xbc, 0x81, 0x44, 0xc2, 0x5e, 0x03, 0x36, 0xcd, 0x1b, 0x02, 0x47, 0xf3, 0x2e, 0xe6, 0x3e, - 0xc2, 0xc5, 0x32, 0x76, 0xb1, 0x52, 0xb1, 0x78, 0x5c, 0x84, 0x9b, 0xed, 0x16, 0x17, 0xa5, 0x6f, - 0x5d, 0xf3, 0x03, 0x9e, 0x97, 0xa1, 0x61, 0x9c, 0x70, 0x25, 0x5c, 0x22, 0xa5, 0xa0, 0x5a, 0x11, - 0x67, 0x08, 0xaa, 0x40, 0x17, 0x4c, 0x73, 0x32, 0x42, 0x17, 0x4c, 0xd5, 0x73, 0xa0, 0x0b, 0x66, - 0x6c, 0x30, 0x74, 0xc1, 0x2d, 0x4e, 0xc4, 0x0c, 0xd3, 0x05, 0x4f, 0x0c, 0x90, 0x05, 0x8b, 0x90, - 0x05, 0x37, 0xfc, 0x82, 0x2c, 0x08, 0xcd, 0x02, 0xb2, 0xe0, 0x0e, 0xa2, 0xd1, 0xbc, 0x8b, 0x41, - 0x16, 0xcc, 0xdc, 0xc5, 0xf2, 0x45, 0x88, 0x82, 0x3b, 0x46, 0x44, 0xe9, 0x5b, 0x07, 0x51, 0xd0, - 0xd8, 0x20, 0x1e, 0x2a, 0x6d, 0x0f, 0x51, 0x74, 0x31, 0x41, 0x15, 0x0c, 0x6d, 0x85, 0x2c, 0xf8, - 0x1e, 0xf3, 0x20, 0x0b, 0xa6, 0x38, 0x1b, 0x21, 0x0b, 0xa6, 0xea, 0x39, 0x90, 0x05, 0x33, 0x36, - 0x18, 0xb2, 0xe0, 0x16, 0x27, 0x62, 0x06, 0xc9, 0x82, 0x6d, 0x2e, 0x5c, 0xff, 0xc9, 0x00, 0x5d, - 0xb0, 0x42, 0xd8, 0xc4, 0x0b, 0x26, 0xfa, 0xd3, 0x8d, 0xb9, 0x10, 0x06, 0x37, 0x55, 0x2d, 0x20, - 0x0c, 0x66, 0xae, 0x5a, 0xe4, 0xa0, 0x59, 0xec, 0x18, 0x1e, 0xcd, 0xbb, 0x18, 0x84, 0xc1, 0xcc, - 0x5d, 0x0c, 0xf5, 0x82, 0x3b, 0x48, 0x46, 0xe9, 0x5b, 0x07, 0x69, 0xd0, 0xd8, 0x30, 0x6e, 0xb1, - 0x47, 0xc9, 0x44, 0x97, 0x75, 0xe9, 0x0b, 0x83, 0xb1, 0xa5, 0x90, 0x05, 0xdf, 0x63, 0x1e, 0x64, - 0xc1, 0x14, 0xe7, 0x22, 0x64, 0xc1, 0x54, 0x3d, 0x07, 0xb2, 0x60, 0xc6, 0x06, 0x43, 0x16, 0xdc, - 0xe2, 0x34, 0xcc, 0x24, 0x59, 0x90, 0xdc, 0xa9, 0x5f, 0xab, 0x60, 0x9c, 0xc8, 0x29, 0x60, 0x20, - 0xb5, 0xef, 0x19, 0x43, 0x6f, 0x38, 0xc9, 0x3c, 0xdd, 0x01, 0x7d, 0x52, 0x1b, 0x5b, 0x0a, 0x52, - 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, - 0x0b, 0xa7, 0x98, 0x1f, 0xc3, 0xa1, 0xeb, 0x4b, 0x6e, 0x02, 0xa7, 0x9d, 0x19, 0x0a, 0x4a, 0x0b, - 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, - 0xa7, 0x98, 0x1f, 0x43, 0xe9, 0xbb, 0x22, 0xe0, 0x92, 0x3f, 0x18, 0xb0, 0x2f, 0xe9, 0x95, 0xad, - 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, - 0x20, 0xb6, 0xb0, 0x88, 0xa8, 0x8b, 0x5a, 0x55, 0x21, 0x3c, 0xe9, 0x4a, 0xee, 0xd1, 0xdc, 0x00, - 0x65, 0x05, 0x9d, 0xef, 0xec, 0xde, 0x1d, 0x46, 0x07, 0x50, 0x3a, 0xde, 0x90, 0x89, 0xce, 0x94, - 0x28, 0xda, 0x82, 0xc9, 0x9f, 0x9e, 0xff, 0xc3, 0xe6, 0x22, 0x90, 0xae, 0xe8, 0x30, 0x67, 0xf1, - 0x85, 0x20, 0xf1, 0x8a, 0x33, 0xf4, 0x3d, 0xe9, 0x75, 0xbc, 0x41, 0x10, 0x5f, 0x39, 0xed, 0xfe, - 0xd0, 0xf1, 0x79, 0xdb, 0x71, 0x7b, 0xdc, 0x0e, 0xdc, 0x1e, 0x0f, 0xe2, 0x2b, 0x87, 0x0f, 0x1f, - 0x4a, 0x76, 0xe0, 0x4b, 0x66, 0x0f, 0xbd, 0x01, 0xef, 0x3c, 0x39, 0x82, 0xf1, 0xfe, 0xf7, 0xb6, - 0xe7, 0x07, 0xf1, 0x95, 0xe3, 0x76, 0xff, 0x9d, 0xa2, 0x15, 0x17, 0xf6, 0xd0, 0x67, 0x8e, 0xef, - 0x8d, 0x24, 0x0b, 0xc2, 0x6f, 0xce, 0x48, 0xfc, 0x10, 0xde, 0x4f, 0x61, 0xbb, 0x52, 0xfa, 0xbc, - 0x3d, 0xfd, 0x41, 0xe2, 0xa5, 0xf0, 0x40, 0x4d, 0x1c, 0xa3, 0x49, 0xd9, 0x12, 0x2a, 0xc7, 0xea, - 0xff, 0xc5, 0x9e, 0x28, 0xf6, 0xc5, 0xb5, 0x2e, 0x78, 0x20, 0xab, 0x52, 0x12, 0x3b, 0xf3, 0xff, - 0x2b, 0x17, 0xe7, 0x03, 0x36, 0x21, 0x95, 0x81, 0x75, 0xba, 0x27, 0x46, 0x83, 0x01, 0xa1, 0x33, - 0x59, 0xbf, 0xba, 0x8f, 0x74, 0x8d, 0xab, 0xfb, 0x5d, 0xe6, 0xb3, 0xee, 0xa7, 0xa7, 0xc8, 0x34, - 0x38, 0x21, 0x7d, 0xc0, 0xdc, 0x7a, 0xa0, 0xb4, 0x48, 0x9d, 0xa8, 0xec, 0x8f, 0x3a, 0x52, 0x44, - 0x39, 0xc3, 0x65, 0xf8, 0xf0, 0x6a, 0xd1, 0xb3, 0x6b, 0x5d, 0x45, 0x4f, 0xac, 0xf5, 0xa9, 0x3f, - 0x6c, 0x35, 0x78, 0xbb, 0x55, 0xed, 0xf1, 0x6b, 0xb7, 0xc7, 0x5b, 0xb5, 0xe1, 0x43, 0xe9, 0xda, - 0x97, 0xec, 0x6a, 0xfa, 0x90, 0x5a, 0x97, 0xd1, 0xa3, 0x69, 0x55, 0xbb, 0xff, 0x36, 0x78, 0xbb, - 0x26, 0xae, 0x7c, 0xd6, 0x6a, 0x4c, 0x1e, 0x48, 0xeb, 0x36, 0xfc, 0xeb, 0xab, 0xf1, 0x1f, 0xff, - 0x01, 0x68, 0xac, 0xdf, 0x02, 0xcd, 0x21, 0x88, 0x5a, 0xe8, 0xd9, 0xb2, 0x90, 0xa3, 0xd7, 0xc7, - 0xf4, 0xcd, 0x6c, 0x3d, 0x77, 0xd6, 0xe4, 0x4b, 0x33, 0x0e, 0x3d, 0x99, 0xb4, 0x36, 0xef, 0xee, - 0x31, 0xd1, 0x1d, 0x7a, 0x5c, 0xc8, 0xbd, 0x8e, 0x37, 0xf0, 0x7c, 0x4d, 0x18, 0x43, 0x83, 0x40, - 0x93, 0x22, 0xcc, 0xa4, 0x08, 0x32, 0x0d, 0x42, 0xac, 0xcb, 0x63, 0x88, 0xa0, 0x8e, 0xc9, 0x68, - 0xa3, 0x91, 0xbb, 0x66, 0xce, 0x55, 0xf5, 0xc0, 0xa6, 0x7a, 0xd0, 0x52, 0x7b, 0x47, 0xc5, 0xce, - 0xae, 0xdb, 0xc9, 0xcd, 0x74, 0x6e, 0xb5, 0x53, 0x5f, 0xdd, 0x04, 0x54, 0x73, 0x27, 0x45, 0x53, - 0x5c, 0xd7, 0xd4, 0x36, 0x6c, 0x4a, 0x2b, 0x84, 0xa8, 0x0c, 0x21, 0x49, 0x8d, 0x47, 0x66, 0xef, - 0x1f, 0x0a, 0x7c, 0xc3, 0x9a, 0x8d, 0xbf, 0x37, 0x92, 0xf6, 0xd0, 0x0b, 0xa4, 0x32, 0xef, 0x78, - 0x69, 0xe5, 0xbd, 0x68, 0x81, 0xa2, 0x88, 0x30, 0x5b, 0x41, 0x57, 0x74, 0x3b, 0xd5, 0x85, 0x6d, - 0x3a, 0x0a, 0xd5, 0xf4, 0x16, 0x9e, 0xe9, 0x2a, 0x24, 0xd3, 0x5e, 0x18, 0xa6, 0xbd, 0xd0, 0x4b, - 0x7b, 0xe1, 0xd6, 0x76, 0x71, 0x95, 0x33, 0xae, 0x56, 0x03, 0xb2, 0x22, 0x22, 0xab, 0xdc, 0x71, - 0x66, 0xe1, 0x22, 0xba, 0xbf, 0xe2, 0x49, 0xab, 0x16, 0x00, 0xb4, 0x01, 0x81, 0x4e, 0x40, 0xa0, - 0x01, 0x0c, 0xba, 0x01, 0x82, 0x0c, 0x50, 0x90, 0x01, 0x0c, 0x32, 0xc0, 0xb1, 0x1b, 0xba, 0x8e, - 0x6a, 0x40, 0x99, 0x07, 0x16, 0x7d, 0xfe, 0x36, 0x87, 0x2f, 0xba, 0x7c, 0x4d, 0x0f, 0xcc, 0x68, - 0x87, 0x1b, 0x0a, 0xb0, 0x43, 0x0b, 0x7e, 0xa8, 0xc0, 0x10, 0x39, 0x38, 0x22, 0x07, 0x4b, 0xe4, - 0xe0, 0x49, 0x0f, 0x4c, 0x69, 0x82, 0x2b, 0xed, 0xb0, 0x15, 0x1b, 0x10, 0x96, 0x03, 0x68, 0xf7, - 0xd3, 0x59, 0xf4, 0xd2, 0x59, 0x9d, 0xb0, 0x08, 0x67, 0x9a, 0xb7, 0x67, 0x92, 0xd9, 0x27, 0x4a, - 0x69, 0x3f, 0x28, 0xcd, 0x7d, 0x9f, 0xd4, 0xf6, 0x77, 0x92, 0xdd, 0xc7, 0x49, 0x76, 0xbf, 0x26, - 0xd9, 0x7d, 0x99, 0xbb, 0x5d, 0x08, 0x4a, 0x66, 0x3f, 0x65, 0x1c, 0x77, 0x06, 0xcc, 0xed, 0xf9, - 0xac, 0x47, 0x21, 0xe8, 0xcc, 0xb2, 0xae, 0x32, 0x01, 0x5b, 0xae, 0xa2, 0xd5, 0xdf, 0x8f, 0x1f, - 0xc3, 0x7d, 0x5e, 0x4e, 0x08, 0xe4, 0xbb, 0x5a, 0x69, 0xaa, 0x31, 0xf3, 0x9a, 0x15, 0x7a, 0xd2, - 0xe1, 0x74, 0xb1, 0x45, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, 0xa0, 0x75, - 0xa0, 0x75, 0x46, 0xd2, 0xba, 0x18, 0xcb, 0xc1, 0xec, 0x94, 0x0f, 0x46, 0xb4, 0x95, 0x87, 0x0e, - 0xb1, 0x9b, 0x19, 0x04, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x5e, 0x07, - 0x5e, 0x67, 0x24, 0xaf, 0x9b, 0x41, 0x39, 0x68, 0x9d, 0xf2, 0xb1, 0x08, 0xfb, 0x62, 0x91, 0x21, - 0x75, 0xa1, 0x39, 0x34, 0x28, 0x5d, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, - 0x4e, 0xd7, 0xa8, 0xe8, 0x2e, 0x50, 0x8a, 0x0d, 0x99, 0x36, 0x03, 0xe4, 0xa2, 0xcb, 0xe8, 0x34, - 0x26, 0x7f, 0xd9, 0xdf, 0xf7, 0x62, 0x1b, 0x95, 0x0e, 0x8a, 0xa4, 0x5a, 0xe0, 0x93, 0x6b, 0x79, - 0x4f, 0xb1, 0xc5, 0x3d, 0xed, 0x96, 0xf6, 0x54, 0x5b, 0xd8, 0x93, 0x6f, 0x59, 0x4f, 0xbe, 0x45, - 0x3d, 0xf9, 0x96, 0xf4, 0xe8, 0x8d, 0x4b, 0x52, 0x63, 0x21, 0xac, 0xb5, 0x50, 0xd4, 0x5c, 0x96, - 0x69, 0x2f, 0xbf, 0xf9, 0x6f, 0x4a, 0x29, 0x02, 0x26, 0x83, 0xf8, 0x2a, 0x52, 0x6a, 0x42, 0x9a, - 0x81, 0x36, 0x99, 0x54, 0x9c, 0x92, 0x48, 0x05, 0x7d, 0xc2, 0x1b, 0x29, 0x54, 0xd2, 0x83, 0x8e, - 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x82, 0x8e, 0x2a, 0x8f, 0x5b, 0x23, 0x2e, 0xe4, - 0x71, 0x9e, 0x20, 0x1b, 0xa5, 0x44, 0x46, 0x1b, 0xae, 0xe8, 0x4f, 0x9e, 0xd6, 0x1d, 0xa9, 0x18, - 0x40, 0xf0, 0x78, 0x9e, 0xaf, 0x5c, 0xd0, 0x3d, 0x9a, 0x93, 0xf8, 0x81, 0x97, 0xdf, 0xdc, 0xc1, - 0x88, 0x11, 0xb6, 0xef, 0x8b, 0xef, 0x76, 0x24, 0xf7, 0xc4, 0x19, 0xef, 0xf3, 0x69, 0x17, 0xe6, - 0x23, 0x1c, 0x5a, 0xfb, 0x16, 0x97, 0x70, 0x1f, 0xe1, 0x12, 0x1b, 0xba, 0x44, 0x21, 0x5f, 0x29, - 0x54, 0x4a, 0xe5, 0x7c, 0xa5, 0x08, 0xdf, 0x30, 0x9b, 0x90, 0xd1, 0xb3, 0xa6, 0x09, 0x91, 0x88, - 0x4a, 0xec, 0xb4, 0x3a, 0xde, 0xfd, 0xfd, 0x48, 0x70, 0xf9, 0x44, 0x75, 0x09, 0x73, 0xd1, 0x40, - 0x08, 0x47, 0xcb, 0xcc, 0x81, 0x70, 0xb4, 0xc6, 0x94, 0x82, 0x70, 0xb4, 0xd6, 0x4c, 0x87, 0x70, - 0xb4, 0xa1, 0x81, 0x10, 0x8e, 0x0c, 0xca, 0x24, 0xb0, 0x8e, 0xf9, 0x0e, 0x18, 0x34, 0x70, 0x1d, - 0x73, 0xc6, 0x2b, 0x38, 0x0b, 0xe2, 0xeb, 0x27, 0x2c, 0x65, 0xd2, 0x64, 0xa9, 0x64, 0x7a, 0x47, - 0x24, 0x7c, 0x92, 0x48, 0x0f, 0x09, 0xf0, 0x52, 0xf0, 0x52, 0xf0, 0x52, 0xf0, 0x52, 0xf0, 0x52, - 0xf0, 0x52, 0xe5, 0x71, 0x8b, 0x0f, 0x6d, 0xb7, 0xdb, 0xf5, 0x59, 0x10, 0x50, 0xa4, 0xa6, 0x15, - 0x42, 0x36, 0x45, 0x63, 0x88, 0x45, 0xcd, 0x37, 0xcf, 0xac, 0x87, 0x02, 0xc1, 0xb9, 0x95, 0x98, - 0x63, 0x27, 0x04, 0x6d, 0xbb, 0x72, 0xa5, 0x64, 0xbe, 0x20, 0x37, 0xdd, 0x62, 0x03, 0xff, 0xd9, - 0xdf, 0xbf, 0x3b, 0xb2, 0x2b, 0xcd, 0xe7, 0xbb, 0x9c, 0x5d, 0x69, 0x86, 0x97, 0xb9, 0xe9, 0xb7, - 0xf0, 0x3a, 0x7f, 0x77, 0x64, 0x17, 0x66, 0xd7, 0xc5, 0xbb, 0x23, 0xbb, 0xd8, 0x3c, 0xf8, 0xfb, - 0xef, 0x8f, 0x07, 0xbf, 0x8e, 0xc7, 0xeb, 0x7f, 0xf0, 0x0f, 0x8b, 0xdc, 0x43, 0x68, 0xd2, 0x5a, - 0x1e, 0x3a, 0x44, 0x50, 0x7a, 0x73, 0x50, 0x2a, 0x21, 0x28, 0x6d, 0x77, 0x50, 0x72, 0xed, 0x5e, - 0xd5, 0xfe, 0xd2, 0xfc, 0x95, 0x3b, 0x2c, 0x8c, 0x4f, 0x0f, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, - 0x2f, 0x7b, 0x5b, 0xee, 0xb0, 0x3c, 0x3e, 0x5d, 0xf1, 0x93, 0xd2, 0xf8, 0xf4, 0x8d, 0xbf, 0xa3, - 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, 0x0a, 0x2b, 0x3e, 0x70, 0xbc, 0xea, - 0x03, 0xc7, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, 0x14, 0xc7, 0xcf, 0x89, 0xf7, 0xef, - 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xbc, 0xea, 0x67, 0xe5, 0xf1, 0xf3, 0xe9, 0x01, 0x42, 0xb4, - 0x19, 0xf9, 0xd0, 0x1e, 0x56, 0xf0, 0x29, 0x81, 0xa6, 0xc5, 0x1e, 0xa5, 0x4d, 0x7e, 0x15, 0x7f, - 0x99, 0x91, 0x50, 0x4c, 0x97, 0x99, 0x03, 0xc5, 0x74, 0x8d, 0x69, 0x05, 0xc5, 0x74, 0xad, 0x99, - 0x0e, 0xc5, 0x74, 0x43, 0x03, 0xa1, 0x98, 0x1a, 0x94, 0x4a, 0x62, 0x25, 0xff, 0x3d, 0x59, 0xa3, - 0x79, 0x2b, 0xf9, 0xaf, 0xb9, 0x05, 0x67, 0xc1, 0xdc, 0xbf, 0xb1, 0xa2, 0x4f, 0x94, 0xb5, 0x72, - 0xf1, 0xe0, 0x0e, 0x78, 0xd7, 0xf6, 0x99, 0x1b, 0x78, 0x82, 0x1e, 0x61, 0x5d, 0xb0, 0x0f, 0x5c, - 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x15, 0x5c, 0x75, 0xc7, 0xb8, 0x2a, 0xef, 0x32, - 0x21, 0xb9, 0x7c, 0x22, 0xca, 0x57, 0x09, 0xed, 0x4f, 0xb3, 0x6a, 0xd1, 0xa3, 0xfa, 0xe4, 0x06, - 0x04, 0x43, 0xea, 0x6c, 0x40, 0x6b, 0x97, 0xdf, 0xaa, 0x17, 0xb5, 0xb3, 0x56, 0xa3, 0x7e, 0x7b, - 0x73, 0xde, 0x6a, 0x9c, 0x57, 0xaf, 0xeb, 0x97, 0xd4, 0xa2, 0xeb, 0x74, 0x1b, 0x62, 0x40, 0x72, - 0x99, 0x88, 0xe8, 0xbe, 0xd2, 0xc5, 0xd1, 0xad, 0x37, 0x6a, 0x7f, 0xd6, 0x2e, 0xab, 0x37, 0xf5, - 0x86, 0x85, 0x4d, 0xc3, 0x5b, 0x33, 0xaa, 0x9f, 0x2f, 0x6e, 0xaf, 0x6f, 0xce, 0x1b, 0xad, 0x8b, - 0x7a, 0xfd, 0x0a, 0xe3, 0xba, 0x3d, 0xe3, 0x5a, 0xbd, 0xc6, 0x90, 0x6e, 0x9b, 0xab, 0xd6, 0x2f, - 0xbf, 0x9c, 0x9f, 0x59, 0xd8, 0x95, 0xfe, 0xdb, 0xaf, 0x26, 0xf2, 0x11, 0x62, 0x56, 0x50, 0x50, - 0x07, 0x07, 0x6e, 0x20, 0xed, 0x7b, 0xaf, 0xcb, 0x7b, 0x9c, 0x75, 0xe9, 0x89, 0x83, 0xf3, 0xe6, - 0x41, 0x1b, 0x5c, 0x66, 0x0e, 0xb4, 0xc1, 0x35, 0x26, 0x14, 0xb4, 0xc1, 0xb5, 0x66, 0x3a, 0xb4, - 0xc1, 0x0d, 0x0d, 0x84, 0x36, 0x68, 0x10, 0xf7, 0x25, 0xac, 0x0d, 0x4a, 0x7e, 0xcf, 0x24, 0xef, - 0xfc, 0x08, 0x4a, 0x05, 0x82, 0xda, 0x20, 0xa1, 0x02, 0x68, 0xeb, 0x56, 0x84, 0x5d, 0xaa, 0x2c, - 0xe1, 0x0a, 0x2f, 0x60, 0x1d, 0x4f, 0x74, 0x49, 0xed, 0x96, 0x42, 0xbf, 0xc5, 0x37, 0x3e, 0x28, - 0xf4, 0x5b, 0x7c, 0xbf, 0x79, 0xe8, 0xb7, 0xb8, 0x8d, 0x7a, 0x0c, 0xfa, 0x2d, 0xa6, 0xe0, 0x12, - 0xb9, 0x93, 0x42, 0xa1, 0x54, 0x2e, 0x14, 0x8e, 0xca, 0xc7, 0xe5, 0xa3, 0x4a, 0xb1, 0x98, 0x2b, - 0xe5, 0xd0, 0x79, 0xd1, 0x70, 0xfe, 0x48, 0xcf, 0x1a, 0xec, 0xdb, 0x20, 0x13, 0x45, 0xc9, 0x9c, - 0x9a, 0x9f, 0x20, 0xf5, 0x34, 0x4e, 0xcf, 0x8f, 0xcd, 0x3a, 0x63, 0x3d, 0x77, 0x34, 0x98, 0xa6, - 0xaa, 0x47, 0xd0, 0xda, 0x96, 0x9a, 0x03, 0xad, 0x6d, 0x8d, 0xe9, 0x0d, 0xad, 0x6d, 0xad, 0x99, - 0x0e, 0xad, 0x6d, 0x43, 0x03, 0xa1, 0xb5, 0x19, 0x94, 0xd7, 0xe0, 0xd8, 0x90, 0xf5, 0x51, 0x10, - 0xc7, 0x86, 0xfc, 0xd7, 0x17, 0x64, 0xac, 0xad, 0xcc, 0xd9, 0x21, 0x63, 0x99, 0x1e, 0xee, 0xe7, - 0x5d, 0x02, 0x32, 0xd6, 0xc6, 0x2e, 0x81, 0x63, 0x43, 0xb6, 0x85, 0x90, 0xd1, 0xb3, 0x06, 0xe2, - 0x15, 0x99, 0xd8, 0x69, 0x45, 0x9b, 0x23, 0xbd, 0x91, 0x64, 0xf4, 0x04, 0xac, 0xd7, 0xc6, 0x41, - 0x30, 0x5a, 0x66, 0x0e, 0x04, 0xa3, 0x35, 0xa6, 0x13, 0x04, 0xa3, 0xb5, 0x66, 0x3a, 0x04, 0xa3, - 0x0d, 0x0d, 0x84, 0x60, 0x64, 0x50, 0x06, 0x41, 0x58, 0x30, 0x6a, 0x7b, 0xde, 0x80, 0xb9, 0x82, - 0xe2, 0xa6, 0xcd, 0x1c, 0xa8, 0x1c, 0x01, 0x0b, 0x34, 0xbb, 0x90, 0x55, 0x15, 0xc2, 0x93, 0xee, - 0x24, 0x1b, 0x23, 0xe1, 0x40, 0x56, 0xd0, 0xf9, 0xce, 0xee, 0xdd, 0x61, 0xd4, 0x74, 0xc6, 0xf1, - 0x86, 0x4c, 0x74, 0xa6, 0x44, 0xc9, 0x16, 0x4c, 0xfe, 0xf4, 0xfc, 0x1f, 0x36, 0x17, 0x81, 0x74, - 0x45, 0x87, 0x39, 0x8b, 0x2f, 0x04, 0x89, 0x57, 0x9c, 0xa1, 0xef, 0x49, 0xaf, 0xe3, 0x0d, 0x82, - 0xf8, 0xca, 0x69, 0xf7, 0x87, 0x8e, 0xcf, 0xdb, 0x8e, 0xdb, 0xe3, 0x76, 0xe0, 0xf6, 0x78, 0x10, - 0x5f, 0x39, 0xd3, 0xa6, 0xb2, 0x81, 0x2f, 0x99, 0x3d, 0xf4, 0x06, 0xbc, 0xf3, 0xe4, 0x08, 0xc6, - 0xfb, 0xdf, 0xdb, 0x9e, 0x1f, 0xc4, 0x57, 0x8e, 0xdb, 0xfd, 0x77, 0x8a, 0x06, 0xde, 0x48, 0xda, - 0x43, 0x2f, 0x90, 0xce, 0x94, 0xe2, 0x06, 0xe1, 0xb7, 0xb0, 0xd1, 0x8d, 0x5e, 0x94, 0xd0, 0x37, - 0x9d, 0x35, 0x4e, 0x65, 0x6b, 0x24, 0x7e, 0x08, 0xef, 0xa7, 0xb0, 0x5d, 0x29, 0x7d, 0xde, 0x9e, - 0x8c, 0x88, 0xf6, 0xe9, 0xfc, 0xb2, 0x68, 0x90, 0xb4, 0x4d, 0xb3, 0xd3, 0xcf, 0x20, 0x40, 0xb3, - 0x19, 0x54, 0x32, 0x20, 0x4a, 0x99, 0x0f, 0xcd, 0x8c, 0x87, 0x5a, 0xa6, 0x43, 0x36, 0xc3, 0x21, - 0x9b, 0xd9, 0x90, 0xcd, 0x68, 0x76, 0x9b, 0x7e, 0x9d, 0x71, 0x9f, 0x46, 0xd8, 0x49, 0x80, 0x14, - 0x3d, 0x49, 0x31, 0x69, 0x22, 0x2d, 0x61, 0x31, 0x07, 0x61, 0x91, 0x3c, 0xbc, 0xd2, 0x86, 0x59, - 0xaa, 0x70, 0x4b, 0x1e, 0x76, 0xc9, 0xc3, 0x2f, 0x79, 0x18, 0xa6, 0xa3, 0xc7, 0xec, 0x11, 0x12, - 0x16, 0xa9, 0xc0, 0x73, 0x6c, 0xd0, 0x04, 0xfb, 0x6c, 0x49, 0x4d, 0xee, 0x9c, 0x8b, 0xa8, 0x2f, - 0x26, 0x12, 0x73, 0x3d, 0x9a, 0xe5, 0x1b, 0xe4, 0xe0, 0x9a, 0x32, 0x6c, 0x9b, 0x01, 0xdf, 0xd4, - 0x61, 0xdc, 0x18, 0x38, 0x37, 0x06, 0xd6, 0x8d, 0x81, 0x77, 0x5a, 0x30, 0x4f, 0x0c, 0xee, 0xe3, - 0x51, 0xbc, 0xa1, 0x08, 0xb0, 0x7b, 0xb4, 0x0f, 0x2f, 0x48, 0x64, 0xc3, 0x65, 0x9a, 0x47, 0xdf, - 0xcd, 0x0e, 0x33, 0x08, 0xcf, 0x24, 0x78, 0x21, 0x2b, 0x28, 0xf8, 0xa3, 0xee, 0x9a, 0x56, 0xb8, + 0xb0, 0x08, 0xe4, 0x90, 0x56, 0xad, 0x27, 0xc8, 0x73, 0xb9, 0x55, 0x8b, 0xeb, 0xa7, 0xb5, 0xd4, + 0x6f, 0x6d, 0xaf, 0x9f, 0x96, 0xbf, 0x58, 0xf1, 0xd9, 0xea, 0x37, 0x50, 0x8f, 0x16, 0xd9, 0x9a, + 0xac, 0x71, 0x8d, 0xaf, 0xdc, 0x14, 0xbe, 0x4b, 0x4e, 0xe7, 0x0e, 0x39, 0xae, 0xd9, 0x7c, 0x5a, + 0xc8, 0x8c, 0x6b, 0xa7, 0x8b, 0xe1, 0x39, 0x73, 0xed, 0xf4, 0xa3, 0x3b, 0x23, 0x7e, 0xc9, 0xa6, + 0xce, 0xed, 0xfc, 0x4b, 0xa7, 0x53, 0xe3, 0x96, 0xfe, 0xfb, 0x66, 0x73, 0x93, 0x2b, 0x37, 0x1d, + 0x36, 0xa7, 0x56, 0xc1, 0x0b, 0xda, 0xb8, 0x45, 0xcd, 0x6d, 0x39, 0x88, 0xb5, 0x5a, 0x1e, 0x61, + 0x9e, 0xc2, 0xed, 0x84, 0x71, 0x1a, 0xa5, 0x5f, 0x75, 0x72, 0x08, 0x33, 0xcf, 0x72, 0x47, 0x41, + 0x56, 0x23, 0x7b, 0xb4, 0xfd, 0x60, 0x10, 0xea, 0xe7, 0xc6, 0x6b, 0xef, 0x1a, 0xfe, 0xe9, 0xe8, + 0x7f, 0xce, 0x7e, 0x6f, 0xa9, 0x75, 0x58, 0x7d, 0x0c, 0xba, 0xc3, 0x70, 0x50, 0x79, 0xf3, 0xec, + 0x93, 0x5a, 0x44, 0xce, 0x28, 0xdc, 0xdd, 0x68, 0x7d, 0xdc, 0xf6, 0xcf, 0x9b, 0x8d, 0x83, 0xda, + 0xe9, 0x99, 0x62, 0xd6, 0xf2, 0x45, 0xd9, 0xf7, 0xf5, 0xb0, 0xd1, 0xfc, 0xe7, 0xe9, 0x59, 0xed, + 0xac, 0xce, 0xa6, 0xe6, 0xb7, 0xa9, 0xa7, 0x27, 0x67, 0x75, 0xbf, 0x75, 0x7c, 0xd8, 0x38, 0xf8, + 0xdd, 0x6f, 0xb4, 0x3e, 0xee, 0xb2, 0xb7, 0x39, 0x2a, 0xec, 0xab, 0x8f, 0xad, 0xe6, 0x78, 0x57, + 0x31, 0x07, 0x02, 0xbb, 0x5b, 0x1d, 0xed, 0xee, 0xc7, 0xd6, 0xe1, 0x29, 0xbb, 0x2a, 0x60, 0x64, + 0xfd, 0xd3, 0xd6, 0x3b, 0x36, 0x56, 0x62, 0x63, 0x3f, 0xb6, 0x9a, 0x6c, 0x6c, 0xce, 0xee, 0xd6, + 0xbb, 0xc3, 0xe3, 0x7f, 0x9d, 0xb6, 0xea, 0x07, 0x6c, 0xac, 0x08, 0x7c, 0x1d, 0x9d, 0x1f, 0x9e, + 0x01, 0x60, 0x39, 0xef, 0xef, 0xc7, 0x56, 0x13, 0xcd, 0x95, 0xd5, 0xdc, 0x6d, 0x34, 0x57, 0xc8, + 0xe4, 0xee, 0xfa, 0x87, 0xb5, 0xfd, 0xfa, 0x61, 0xfd, 0x2d, 0xae, 0xad, 0xa8, 0xfe, 0xb2, 0xbb, + 0x32, 0x0e, 0x03, 0xda, 0x2b, 0x6b, 0x1d, 0xd8, 0x57, 0xe9, 0x50, 0xcd, 0x36, 0x7b, 0x9b, 0x77, + 0x30, 0xa1, 0xae, 0x4b, 0xcd, 0x54, 0x24, 0x5d, 0x14, 0x3d, 0xaf, 0x55, 0xc8, 0x59, 0xf0, 0x61, + 0x1c, 0x7c, 0xee, 0x86, 0x1d, 0xbd, 0x6a, 0x82, 0xa9, 0x40, 0xe9, 0x59, 0xce, 0xf3, 0x31, 0x7d, + 0x97, 0x41, 0x77, 0x40, 0xdd, 0xc2, 0x13, 0x05, 0x51, 0xb7, 0x90, 0xab, 0x76, 0x50, 0xb7, 0x40, + 0xdd, 0xc2, 0x77, 0x76, 0x4c, 0xbf, 0x6e, 0xe1, 0x73, 0xaf, 0xd7, 0x0d, 0x83, 0x58, 0xb3, 0x66, + 0x61, 0x8b, 0x22, 0x7f, 0x79, 0x95, 0x5a, 0xd7, 0x22, 0x7f, 0xc9, 0x1b, 0x7f, 0x8a, 0x51, 0x3a, + 0x7f, 0x95, 0x04, 0xed, 0xf0, 0x72, 0xd8, 0xf5, 0x92, 0x70, 0x90, 0x06, 0x49, 0x2a, 0x5f, 0x44, + 0xbf, 0x24, 0x91, 0x72, 0x7a, 0x2b, 0x7f, 0x8a, 0x72, 0xfa, 0xe2, 0xf9, 0x4b, 0x94, 0xd3, 0x3f, + 0xce, 0xe0, 0xa4, 0xcb, 0xe9, 0x85, 0xfb, 0x8c, 0x96, 0x8e, 0xa5, 0x68, 0xbf, 0x91, 0x92, 0xa1, + 0x84, 0x88, 0x42, 0x44, 0x21, 0xa2, 0xe5, 0x26, 0xa2, 0x6a, 0xd7, 0xa0, 0x69, 0xc5, 0x1e, 0x97, + 0xce, 0xb7, 0x4e, 0x0c, 0x72, 0xbe, 0xa1, 0xba, 0xb1, 0xc8, 0xfb, 0x50, 0xc0, 0x94, 0xb7, 0x22, + 0x43, 0x84, 0x15, 0x54, 0x98, 0x43, 0x86, 0x39, 0x74, 0x98, 0x42, 0x88, 0x0e, 0x94, 0x28, 0x41, + 0xca, 0x6c, 0x27, 0xed, 0x66, 0xbc, 0xe9, 0xc5, 0x3a, 0x97, 0x3c, 0xf1, 0x2d, 0xe6, 0xed, 0x38, + 0xe0, 0xd5, 0xac, 0xf9, 0xbc, 0x9d, 0xfb, 0x71, 0x3a, 0xae, 0x47, 0x7f, 0xfc, 0xcd, 0x71, 0x3d, + 0xfa, 0xca, 0x2e, 0x60, 0x95, 0xa8, 0x00, 0x51, 0x01, 0xa2, 0x02, 0x44, 0x05, 0x88, 0x0a, 0x10, + 0x15, 0x20, 0x2a, 0x40, 0x54, 0x80, 0xa8, 0x00, 0x51, 0x01, 0xa2, 0x02, 0x44, 0x05, 0x88, 0x0a, + 0x38, 0x1d, 0x15, 0x60, 0x12, 0xaf, 0x96, 0x0a, 0xae, 0x6b, 0x91, 0x9e, 0x52, 0xc1, 0xd8, 0xb3, + 0x95, 0xa7, 0xf1, 0xbe, 0xcf, 0x16, 0x7a, 0x92, 0xad, 0x73, 0x8d, 0xcb, 0x0a, 0xa3, 0xfe, 0xcd, + 0xb6, 0xd7, 0x0d, 0x3e, 0x87, 0xdd, 0xb0, 0xe3, 0x0d, 0xe3, 0xa8, 0x1d, 0x0c, 0x14, 0x4a, 0x0b, + 0x1f, 0x94, 0x4a, 0x79, 0xa1, 0x15, 0xe9, 0xa1, 0xbc, 0xb0, 0x78, 0xa4, 0x85, 0xf2, 0x42, 0xb3, + 0x78, 0x56, 0xa6, 0x51, 0x5e, 0x37, 0xba, 0x8e, 0x52, 0xbd, 0x6c, 0xc2, 0x82, 0x54, 0x4a, 0x0d, + 0x5d, 0x8d, 0x1c, 0x91, 0x54, 0x28, 0x5f, 0x64, 0x88, 0xa4, 0x82, 0x73, 0x46, 0x78, 0x26, 0x48, + 0xa9, 0xd6, 0x7b, 0xe9, 0x78, 0xab, 0xd4, 0x7c, 0x2b, 0x1b, 0x64, 0x75, 0xc3, 0x6c, 0x61, 0xa0, + 0xed, 0x0c, 0xb5, 0x95, 0xc1, 0x36, 0x37, 0xdc, 0xe6, 0x06, 0xdc, 0xd4, 0x90, 0xeb, 0x18, 0x74, + 0x25, 0xc3, 0xae, 0x6e, 0xe0, 0x67, 0x02, 0xaf, 0x83, 0xbf, 0xbc, 0x89, 0xd6, 0x8e, 0x67, 0x78, + 0x1b, 0x4d, 0x69, 0x59, 0x58, 0x85, 0xb2, 0xf2, 0xea, 0xe6, 0x77, 0xcd, 0xc0, 0xc0, 0x12, 0x14, + 0xec, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xd0, 0x05, 0x11, + 0x65, 0x30, 0x99, 0xed, 0xb0, 0x7a, 0xbe, 0x78, 0xe9, 0xbc, 0x0f, 0xa3, 0x38, 0x7d, 0x55, 0xb5, + 0x38, 0xef, 0x99, 0x75, 0x7f, 0x6d, 0x20, 0xfa, 0x24, 0x88, 0xaf, 0x42, 0xd5, 0x7b, 0x31, 0xee, + 0x7e, 0xd9, 0xd8, 0xb7, 0x67, 0xd9, 0x9d, 0xdc, 0x66, 0x06, 0xd6, 0x18, 0xd6, 0x97, 0x96, 0x31, + 0xbe, 0x1d, 0xc5, 0x81, 0x75, 0xbc, 0x4b, 0x82, 0x76, 0x1a, 0xf5, 0xe2, 0xb7, 0xd1, 0x55, 0x34, + 0xbe, 0xad, 0x7c, 0xd3, 0x6c, 0x3d, 0xb7, 0x2f, 0x0c, 0x55, 0x33, 0xf8, 0x0b, 0xd5, 0xbc, 0xa7, + 0x9a, 0xdb, 0xd5, 0xbd, 0xed, 0xbd, 0xdd, 0xd7, 0xd5, 0xbd, 0x1d, 0x74, 0xd4, 0xc6, 0x21, 0xb0, + 0x93, 0x7a, 0x51, 0xd6, 0x3b, 0xdb, 0x15, 0xe3, 0x4e, 0xfd, 0x24, 0xbc, 0x09, 0xe3, 0xd4, 0x4b, + 0xc3, 0x20, 0xe9, 0xf4, 0xfe, 0x8c, 0xed, 0x68, 0xf4, 0xd2, 0x4a, 0x94, 0x1d, 0x4d, 0xa3, 0x12, + 0x6d, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x2b, 0x9c, 0x77, 0xfd, 0x12, 0xf0, + 0xfb, 0xe6, 0x5d, 0xa9, 0x14, 0xbc, 0xdc, 0x4e, 0x4b, 0x56, 0x4d, 0xea, 0xa5, 0xd1, 0x75, 0x98, + 0xd8, 0x79, 0x2c, 0x8b, 0xcb, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0x28, + 0x8d, 0xbb, 0xd0, 0x09, 0xdb, 0xd1, 0x75, 0xd0, 0xdd, 0xdd, 0xb6, 0x74, 0x18, 0xaa, 0x06, 0xb2, + 0x97, 0x82, 0x59, 0x55, 0x52, 0x10, 0x7a, 0x0f, 0xee, 0x52, 0x0a, 0xa2, 0x4a, 0x0a, 0xe2, 0x19, + 0x29, 0x88, 0xb9, 0x6a, 0x3a, 0x94, 0x82, 0x78, 0x85, 0x6a, 0x3e, 0x23, 0xf3, 0x40, 0xe6, 0xa1, + 0xa0, 0x24, 0xfe, 0xcf, 0x20, 0x89, 0xa3, 0xf8, 0xca, 0x4b, 0xbf, 0x24, 0xe1, 0xe0, 0x4b, 0xaf, + 0xdb, 0xf1, 0xfa, 0xed, 0xd4, 0x8e, 0xcc, 0x3f, 0xbc, 0x1c, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, + 0xa9, 0x87, 0xd4, 0x97, 0x86, 0xd4, 0xf7, 0xc3, 0xa4, 0x1d, 0xc6, 0x69, 0x70, 0x15, 0x1a, 0xb2, + 0xfa, 0x1d, 0xf8, 0xf4, 0x7a, 0xf2, 0x69, 0x4a, 0xfa, 0xe0, 0xd3, 0x8e, 0xf2, 0x69, 0x57, 0x54, + 0x73, 0x6b, 0x13, 0xe5, 0x84, 0x51, 0x97, 0x85, 0x51, 0x97, 0xaa, 0xc3, 0x4f, 0x79, 0x82, 0xda, + 0x4c, 0xae, 0x63, 0x63, 0xad, 0x1e, 0x1a, 0x56, 0xf4, 0xf2, 0xee, 0x30, 0x0e, 0x95, 0x81, 0xeb, + 0x7a, 0x2a, 0xa6, 0xa0, 0x5e, 0x4a, 0x83, 0xd8, 0x97, 0xd8, 0x80, 0xc6, 0x40, 0xf6, 0xfb, 0x40, + 0xab, 0xde, 0xb2, 0x5f, 0xa5, 0x65, 0xbf, 0x3c, 0xe1, 0x1b, 0x5a, 0xf6, 0x69, 0xd9, 0xcf, 0x6d, + 0x27, 0x69, 0xd9, 0xa7, 0x65, 0xbf, 0x7c, 0xa0, 0x60, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, + 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x0d, 0xbf, 0xa6, 0x65, 0x5f, 0xdd, 0xba, 0xd3, 0xb2, 0xaf, + 0xf8, 0xe0, 0xc4, 0xf7, 0xe7, 0xcb, 0x20, 0xbe, 0x6f, 0x6d, 0xfe, 0x16, 0x55, 0x93, 0xf8, 0xfe, + 0x92, 0x6a, 0xd2, 0xb2, 0x6f, 0xed, 0x10, 0xd8, 0x49, 0xa5, 0x70, 0x6e, 0x75, 0xb5, 0xa5, 0x65, + 0x7f, 0x16, 0xbd, 0xa0, 0x65, 0x1f, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x4b, 0x4b, 0xe5, + 0x69, 0xd9, 0x2f, 0x85, 0xd3, 0x42, 0xcb, 0x3e, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, + 0xee, 0x82, 0xe4, 0x79, 0xa7, 0x65, 0x9f, 0x96, 0x7d, 0x03, 0xd3, 0x42, 0xcb, 0xfe, 0x7c, 0x19, + 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0xd2, 0xb2, 0x8f, 0x6a, 0xba, 0xe2, 0x90, 0xd8, 0x49, + 0x25, 0xf3, 0xb0, 0xba, 0xda, 0xd2, 0xb2, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, + 0x7a, 0xcd, 0xf3, 0x4e, 0xcb, 0x3e, 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, 0x07, 0x9f, 0x76, 0x94, + 0x4f, 0xd3, 0xb2, 0x0f, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, 0x2d, 0xfb, 0x8e, 0xb5, 0xec, 0x4f, + 0x3a, 0xc1, 0xcb, 0xd2, 0xb1, 0xbf, 0x51, 0x60, 0xdd, 0xd5, 0xd6, 0xd9, 0xc2, 0xe9, 0x6a, 0x45, + 0x65, 0x1e, 0x43, 0x32, 0x6c, 0xa7, 0x71, 0xc6, 0xc0, 0x9a, 0x93, 0x87, 0x6c, 0x64, 0xcf, 0xe8, + 0xb7, 0xb2, 0x27, 0xf3, 0xf7, 0xaf, 0xfa, 0x7e, 0x2b, 0x0c, 0x93, 0xf7, 0xa3, 0x87, 0xf1, 0x6b, + 0x97, 0xd1, 0x69, 0x70, 0x19, 0xf9, 0x8d, 0xfe, 0xcd, 0xf6, 0xe1, 0xe4, 0x01, 0xce, 0x27, 0xeb, + 0xf7, 0x27, 0x71, 0xa3, 0xc3, 0xf1, 0xf2, 0x37, 0x8a, 0xa9, 0xfa, 0x32, 0x9f, 0x2c, 0x74, 0x98, + 0xb4, 0x0e, 0x51, 0x11, 0x0e, 0x8f, 0xe0, 0x79, 0xc9, 0xfb, 0x9c, 0xc8, 0x9c, 0x8d, 0xfc, 0x35, + 0x57, 0x40, 0x6b, 0x2b, 0xe3, 0x57, 0x37, 0x7d, 0x65, 0x52, 0x3a, 0x3b, 0x0b, 0x2a, 0x2d, 0x48, + 0x13, 0x3a, 0x83, 0xb2, 0x03, 0x5f, 0xc4, 0x93, 0x00, 0x1a, 0xc1, 0x7e, 0xbd, 0xa0, 0xbe, 0x56, + 0xf0, 0x5e, 0x3d, 0x48, 0xaf, 0x1e, 0x8c, 0x57, 0x0d, 0xba, 0x17, 0x0b, 0x75, 0xa5, 0x07, 0xaa, + 0x54, 0xda, 0xd3, 0x33, 0x2f, 0xac, 0xc4, 0xd3, 0x63, 0x99, 0xc9, 0x13, 0x56, 0x28, 0x9d, 0xc9, + 0x58, 0x6a, 0x59, 0x53, 0xcd, 0x2c, 0xa9, 0x7e, 0x56, 0x54, 0x3b, 0x0b, 0x6a, 0x96, 0xf5, 0x34, + 0xcb, 0x72, 0x9a, 0x64, 0x35, 0x8b, 0x1d, 0x33, 0xd0, 0x9a, 0x64, 0x55, 0x19, 0x84, 0x71, 0xc7, + 0xeb, 0x4c, 0x3a, 0x4f, 0xbd, 0xa4, 0x37, 0x34, 0x99, 0x5a, 0xb8, 0xbc, 0x06, 0xad, 0x81, 0x61, + 0x36, 0x2d, 0xb7, 0xca, 0x09, 0x0f, 0xf5, 0xf2, 0x1a, 0x46, 0x27, 0x96, 0x1a, 0x48, 0xcc, 0x01, + 0xc5, 0x14, 0x58, 0x74, 0x00, 0x46, 0x09, 0x68, 0x66, 0x3b, 0xa9, 0x5e, 0x16, 0x63, 0xd8, 0x12, + 0xab, 0xdc, 0x0a, 0x4b, 0x7e, 0xe4, 0x3b, 0x87, 0x98, 0xfc, 0xc8, 0x2c, 0x2f, 0xa2, 0x31, 0x69, + 0x5b, 0x30, 0xa5, 0x20, 0x18, 0xee, 0x5a, 0xc8, 0x18, 0xa9, 0xc5, 0x0b, 0x14, 0xf3, 0x54, 0x44, + 0x0d, 0x88, 0x1a, 0x10, 0x35, 0x20, 0x6a, 0x50, 0x84, 0xa8, 0x81, 0x52, 0xd8, 0x76, 0xe9, 0x78, + 0xab, 0x84, 0x6f, 0x95, 0x0d, 0x32, 0x2c, 0x1d, 0x96, 0x0e, 0x4b, 0x87, 0xa5, 0xbb, 0x64, 0xe0, + 0x67, 0x02, 0xb9, 0xe0, 0x80, 0x8e, 0xc8, 0x67, 0xe5, 0x07, 0x07, 0x6b, 0x90, 0x70, 0x06, 0x2c, + 0x9c, 0x01, 0x0d, 0x27, 0xc0, 0x43, 0x17, 0x44, 0x94, 0xc1, 0x64, 0xb6, 0xc3, 0x5c, 0x70, 0xc0, + 0x05, 0x07, 0x9a, 0x0f, 0x4e, 0x37, 0xe4, 0x7c, 0x19, 0x74, 0x43, 0x5a, 0x9b, 0xbf, 0x45, 0xd5, + 0xa4, 0x1b, 0x72, 0x49, 0x35, 0xb9, 0xe0, 0xc0, 0xda, 0x21, 0xb0, 0x93, 0xca, 0x98, 0xa1, 0xd5, + 0xd5, 0x96, 0x0b, 0x0e, 0x66, 0xd1, 0x0b, 0x2e, 0x38, 0x80, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, + 0xf9, 0xd2, 0x52, 0x79, 0x2e, 0x38, 0x28, 0x85, 0xd3, 0xc2, 0x05, 0x07, 0xb8, 0x0b, 0xb8, 0x0b, + 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0x92, 0xe7, 0x9d, 0x0b, 0x0e, 0xb8, 0xe0, 0xc0, 0xc0, 0xb4, + 0x70, 0xc1, 0xc1, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0x72, 0xc1, 0x01, 0xaa, + 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, 0x05, 0x07, 0x90, 0x7a, 0x48, + 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0xd7, 0x3c, 0xef, 0x5c, 0x70, 0x00, 0x9f, 0xb6, 0x23, 0x2d, + 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x5c, 0x70, 0x00, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, + 0x17, 0x1c, 0xd8, 0x0d, 0x45, 0x59, 0xb8, 0xd8, 0x40, 0x63, 0x42, 0x8a, 0x9e, 0x6a, 0xdd, 0xaa, + 0xcc, 0xbe, 0x0f, 0x4c, 0xa6, 0xfa, 0x8d, 0xc5, 0x96, 0xbc, 0x55, 0xbf, 0x4a, 0xab, 0x7e, 0x79, + 0xc2, 0x36, 0xb4, 0xea, 0xd3, 0xaa, 0x9f, 0xdb, 0x4e, 0xd2, 0xaa, 0x4f, 0xab, 0x7e, 0xf9, 0x40, + 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, 0x00, 0x0f, 0x1b, 0x5e, + 0x4d, 0xab, 0xbe, 0xba, 0x75, 0xa7, 0x55, 0x5f, 0xf1, 0xc1, 0x89, 0xeb, 0xcf, 0x97, 0x41, 0x5c, + 0xdf, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0x71, 0xfd, 0x25, 0xd5, 0xa4, 0x55, 0xdf, 0xda, 0x21, 0xb0, + 0x93, 0x4a, 0xc1, 0xdc, 0xea, 0x6a, 0x4b, 0xab, 0xfe, 0x2c, 0x7a, 0x41, 0xab, 0x3e, 0x54, 0x1e, + 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, 0xd3, 0xaa, 0x5f, 0x0a, 0xa7, 0x85, 0x56, 0x7d, + 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xc9, 0xf3, 0x4e, 0xab, 0x3e, 0xad, + 0xfa, 0x06, 0xa6, 0x85, 0x56, 0xfd, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, 0xd5, 0xa4, + 0x55, 0x1f, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0xa5, 0x55, 0x1f, + 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, 0x9d, 0x56, 0x7d, 0xf8, 0xb4, + 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0xa6, 0x55, 0x1f, 0x46, 0x0d, 0xa3, 0x2e, + 0xa4, 0x24, 0x5a, 0xf5, 0x1d, 0x69, 0xd5, 0x9f, 0x74, 0x80, 0x97, 0xa5, 0x53, 0x7f, 0xa3, 0xc0, + 0x3a, 0xab, 0xad, 0xab, 0x85, 0xd1, 0xd1, 0x8a, 0xca, 0xfc, 0x85, 0x64, 0xd8, 0x4e, 0xe3, 0x8c, + 0x71, 0x35, 0x27, 0x0f, 0xd7, 0xc8, 0x9e, 0xcd, 0x6f, 0x65, 0x4f, 0xe4, 0xef, 0x5f, 0xf5, 0xfd, + 0x56, 0x18, 0x26, 0xef, 0x47, 0x0f, 0xe1, 0xd7, 0x2e, 0xa3, 0xd3, 0xe0, 0x32, 0xf2, 0x1b, 0xfd, + 0x9b, 0xed, 0xf3, 0xc9, 0xc2, 0xfd, 0x49, 0x80, 0xe8, 0x70, 0xbc, 0xee, 0x8d, 0x62, 0xea, 0xba, + 0xa0, 0x9e, 0x2b, 0xcd, 0xb9, 0x50, 0x9d, 0x6f, 0xa1, 0x34, 0xd7, 0x42, 0x6d, 0x9e, 0x85, 0x66, + 0x8c, 0x53, 0x3f, 0xa6, 0xa9, 0x1d, 0xc3, 0x34, 0x8b, 0x59, 0x9a, 0xc5, 0x28, 0x4d, 0x62, 0x92, + 0xc5, 0x46, 0x7e, 0xad, 0x39, 0x14, 0x95, 0x41, 0x18, 0x77, 0xbc, 0xce, 0xa4, 0x6f, 0xc4, 0x4b, + 0x7a, 0x43, 0x93, 0x99, 0x43, 0xcb, 0x6b, 0xd0, 0x1a, 0xf7, 0x61, 0xd3, 0x30, 0xa3, 0x1c, 0xae, + 0x50, 0x4f, 0x8e, 0x31, 0xf8, 0xa8, 0xd4, 0x40, 0x62, 0x0e, 0x28, 0xa6, 0xc0, 0x52, 0xce, 0xb0, + 0x88, 0x7a, 0x52, 0xcb, 0xb0, 0xa1, 0x45, 0xb9, 0x91, 0x85, 0x28, 0x07, 0x51, 0x8e, 0x1f, 0x8d, + 0x72, 0x28, 0x04, 0xdf, 0x04, 0xc3, 0x04, 0x1b, 0x05, 0x52, 0x3f, 0x2d, 0xb5, 0x73, 0x59, 0xdd, + 0x2a, 0xa2, 0x71, 0x9d, 0x7c, 0xe2, 0x67, 0x32, 0x87, 0x21, 0x7f, 0x55, 0x15, 0x50, 0xd3, 0x4a, + 0xd4, 0xbf, 0xd9, 0xf5, 0xba, 0xc1, 0xe7, 0xb0, 0x1b, 0x76, 0x66, 0xef, 0x4c, 0x4a, 0x59, 0x67, + 0x80, 0xfc, 0xa0, 0x54, 0xa1, 0x43, 0x28, 0x1b, 0x29, 0x13, 0x27, 0x3e, 0x1a, 0x44, 0x47, 0x8f, + 0xd8, 0x68, 0x11, 0x19, 0x75, 0xe2, 0xa2, 0x4e, 0x54, 0x54, 0x89, 0x49, 0xb1, 0x60, 0x57, 0x3a, + 0xb2, 0x55, 0x59, 0x48, 0x14, 0xa9, 0xe5, 0x15, 0x14, 0xd3, 0x53, 0xea, 0xe9, 0x85, 0x4d, 0xd2, + 0x0b, 0xc5, 0x89, 0x0e, 0x91, 0x5e, 0x20, 0xbd, 0x60, 0x6e, 0x84, 0x67, 0x82, 0xda, 0x53, 0x1b, + 0xa2, 0x9c, 0x52, 0xc8, 0xe4, 0x96, 0xfc, 0x1e, 0x03, 0xc2, 0xf9, 0x25, 0x30, 0xd8, 0xe6, 0x86, + 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, 0x1d, 0x83, 0xae, 0x64, 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, + 0xf7, 0x18, 0xd0, 0xf8, 0xf8, 0xac, 0xfc, 0xe0, 0x60, 0x0d, 0x12, 0xce, 0x80, 0x85, 0x33, 0xa0, + 0xe1, 0x04, 0x78, 0xe8, 0x82, 0x88, 0x32, 0x98, 0xcc, 0x76, 0x98, 0x7b, 0x0c, 0xb8, 0xc7, 0x40, + 0xf3, 0xc1, 0x69, 0x7a, 0x9c, 0x2f, 0x83, 0xa6, 0x47, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0x34, 0x3d, + 0x2e, 0xa9, 0x26, 0xf7, 0x18, 0x58, 0x3b, 0x04, 0x76, 0x52, 0x99, 0x26, 0xb4, 0xba, 0xda, 0x72, + 0x8f, 0xc1, 0x2c, 0x7a, 0xc1, 0x3d, 0x06, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, + 0x2a, 0xcf, 0x3d, 0x06, 0xa5, 0x70, 0x5a, 0xb8, 0xc7, 0x00, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, + 0x77, 0x01, 0x77, 0x41, 0xf2, 0xbc, 0x73, 0x8f, 0x01, 0xf7, 0x18, 0x18, 0x98, 0x16, 0xee, 0x31, + 0x98, 0x2f, 0x83, 0x14, 0x84, 0xb5, 0x1d, 0x5e, 0x54, 0x4d, 0xee, 0x31, 0x40, 0x35, 0x5d, 0x71, + 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, 0x6d, 0xb9, 0xc7, 0x00, 0x52, 0x0f, 0xa9, 0x87, 0xd4, + 0x43, 0xea, 0x21, 0xf5, 0x9a, 0xe7, 0x9d, 0x7b, 0x0c, 0xe0, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, + 0xf8, 0xb4, 0xa3, 0x7c, 0x9a, 0x7b, 0x0c, 0x60, 0xd4, 0x30, 0xea, 0x42, 0x4a, 0xe2, 0x1e, 0x03, + 0xed, 0x71, 0x56, 0x4b, 0xc3, 0x8a, 0x16, 0xef, 0x33, 0xc8, 0x5a, 0xc1, 0xcb, 0x32, 0xea, 0x4f, + 0x65, 0xf4, 0x7d, 0x60, 0x32, 0x06, 0x58, 0x61, 0x34, 0xfb, 0x7d, 0xa0, 0x55, 0x6f, 0xd9, 0xaf, + 0xd2, 0xb2, 0x5f, 0x9e, 0xf0, 0x0d, 0x2d, 0xfb, 0xb4, 0xec, 0xe7, 0xb6, 0x93, 0xb4, 0xec, 0xd3, + 0xb2, 0x5f, 0x3e, 0x50, 0xb0, 0x07, 0x07, 0x6b, 0x90, 0x70, 0x06, 0x2c, 0x9c, 0x01, 0x0d, 0x27, + 0xc0, 0xc3, 0x86, 0x5f, 0xd3, 0xb2, 0xaf, 0x6e, 0xdd, 0x69, 0xd9, 0x57, 0x7c, 0x70, 0xe2, 0xfb, + 0xf3, 0x65, 0x10, 0xdf, 0xb7, 0x36, 0x7f, 0x8b, 0xaa, 0x49, 0x7c, 0x7f, 0x49, 0x35, 0x69, 0xd9, + 0xb7, 0x76, 0x08, 0xec, 0xa4, 0x52, 0x38, 0xb7, 0xba, 0xda, 0xd2, 0xb2, 0x3f, 0x8b, 0x5e, 0xd0, + 0xb2, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xa5, 0xa5, 0xf2, 0xb4, 0xec, 0x97, 0xc2, + 0x69, 0xa1, 0x65, 0x1f, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x01, 0x77, 0x41, 0xf2, 0xbc, + 0xd3, 0xb2, 0x4f, 0xcb, 0xbe, 0x81, 0x69, 0xa1, 0x65, 0x7f, 0xbe, 0x0c, 0x52, 0x10, 0xd6, 0x76, + 0x78, 0x51, 0x35, 0x69, 0xd9, 0x47, 0x35, 0x5d, 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, + 0x6d, 0x69, 0xd9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0xbd, 0xe6, 0x79, 0xa7, + 0x65, 0x1f, 0x3e, 0x6d, 0x47, 0x5a, 0x28, 0xe9, 0x83, 0x4f, 0x3b, 0xca, 0xa7, 0x69, 0xd9, 0x87, + 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0x96, 0x7d, 0xc7, 0x5a, 0xf6, 0x27, 0x9d, 0xe0, 0x65, 0xe9, + 0xd8, 0xdf, 0x28, 0xb0, 0xee, 0x6a, 0xeb, 0x6c, 0xe1, 0x74, 0xb5, 0xa2, 0x32, 0x8f, 0x21, 0x19, + 0xb6, 0xd3, 0x38, 0x63, 0x60, 0xcd, 0xc9, 0x43, 0x36, 0xb2, 0x67, 0xf4, 0x5b, 0xd9, 0x93, 0xf9, + 0xfb, 0x57, 0x7d, 0xbf, 0x15, 0x86, 0xc9, 0xfb, 0xd1, 0xc3, 0xf8, 0xb5, 0xcb, 0xe8, 0x34, 0xb8, + 0x8c, 0xfc, 0x46, 0xff, 0x66, 0xf7, 0x70, 0xf2, 0x00, 0xe7, 0x93, 0xf5, 0xfb, 0x93, 0xb8, 0xd1, + 0xe1, 0x78, 0xf9, 0x1b, 0xc5, 0x54, 0x7d, 0x99, 0x4f, 0x16, 0x3a, 0x4c, 0x5a, 0x87, 0xa8, 0x08, + 0x87, 0x47, 0xf0, 0xbc, 0xe4, 0x7d, 0x4e, 0x64, 0xce, 0x46, 0xfe, 0x9a, 0x2b, 0xa0, 0xb5, 0x95, + 0xf1, 0xab, 0x9b, 0xbe, 0x32, 0x29, 0x9d, 0x9d, 0x05, 0x95, 0x16, 0xa4, 0x09, 0x9d, 0x41, 0xd9, + 0x81, 0x2f, 0xe2, 0x49, 0x00, 0x8d, 0x60, 0xbf, 0x5e, 0x50, 0x5f, 0x2b, 0x78, 0xaf, 0x1e, 0xa4, + 0x57, 0x0f, 0xc6, 0xab, 0x06, 0xdd, 0x8b, 0x85, 0xba, 0xd2, 0x03, 0x55, 0x2a, 0xed, 0xe9, 0x99, + 0x17, 0x56, 0xe2, 0xe9, 0xb1, 0xcc, 0xe4, 0x09, 0x2b, 0x94, 0xce, 0x64, 0x2c, 0xb5, 0xac, 0xa9, + 0x66, 0x96, 0x54, 0x3f, 0x2b, 0xaa, 0x9d, 0x05, 0x35, 0xcb, 0x7a, 0x9a, 0x65, 0x39, 0x4d, 0xb2, + 0x9a, 0xc5, 0x8e, 0x19, 0x68, 0x4d, 0xb2, 0xaa, 0x0c, 0xc2, 0xb8, 0xe3, 0x75, 0x26, 0x9d, 0xa7, + 0x5e, 0xd2, 0x1b, 0x9a, 0x4c, 0x2d, 0x5c, 0x5e, 0x83, 0xd6, 0xc0, 0x30, 0x9b, 0x96, 0x5b, 0xe5, + 0x84, 0x87, 0x7a, 0x79, 0x0d, 0xa3, 0x13, 0x4b, 0x0d, 0x24, 0xe6, 0x80, 0x62, 0x0a, 0x2c, 0x3a, + 0x00, 0xa3, 0x04, 0x34, 0xb3, 0x9d, 0x54, 0x2f, 0x8b, 0x31, 0x6c, 0x89, 0x55, 0x6e, 0x85, 0x25, + 0x3f, 0xf2, 0x9d, 0x43, 0x4c, 0x7e, 0x64, 0x96, 0x17, 0xd1, 0x98, 0xb4, 0x2d, 0x98, 0x52, 0x10, + 0x0c, 0x77, 0x2d, 0x64, 0x8c, 0xd4, 0xe2, 0x05, 0x8a, 0x79, 0x2a, 0xa2, 0x06, 0x44, 0x0d, 0x88, + 0x1a, 0x10, 0x35, 0x28, 0x42, 0xd4, 0x40, 0x29, 0x6c, 0xbb, 0x74, 0xbc, 0x55, 0xc2, 0xb7, 0xca, + 0x06, 0x19, 0x96, 0x0e, 0x4b, 0x87, 0xa5, 0xc3, 0xd2, 0x5d, 0x32, 0xf0, 0x33, 0x81, 0x5c, 0x70, + 0x40, 0x47, 0xe4, 0xb3, 0xf2, 0x83, 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, + 0xe0, 0xa1, 0x0b, 0x22, 0xca, 0x60, 0x32, 0xdb, 0x61, 0x2e, 0x38, 0xe0, 0x82, 0x03, 0xcd, 0x07, + 0xa7, 0x1b, 0x72, 0xbe, 0x0c, 0xba, 0x21, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, 0xd2, 0x0d, 0xb9, 0xa4, + 0x9a, 0x5c, 0x70, 0x60, 0xed, 0x10, 0xd8, 0x49, 0x65, 0xcc, 0xd0, 0xea, 0x6a, 0xcb, 0x05, 0x07, + 0xb3, 0xe8, 0x05, 0x17, 0x1c, 0x40, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, 0x69, 0xa9, 0x3c, + 0x17, 0x1c, 0x94, 0xc2, 0x69, 0xe1, 0x82, 0x03, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, + 0xdc, 0x05, 0xc9, 0xf3, 0xce, 0x05, 0x07, 0x5c, 0x70, 0x60, 0x60, 0x5a, 0xb8, 0xe0, 0x60, 0xbe, + 0x0c, 0x52, 0x10, 0xd6, 0x76, 0x78, 0x51, 0x35, 0xb9, 0xe0, 0x00, 0xd5, 0x74, 0xc5, 0x21, 0xb1, + 0x93, 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0xe5, 0x82, 0x03, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, + 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x2e, 0x38, 0x80, 0x4f, 0xdb, 0x91, 0x16, 0x4a, 0xfa, 0xe0, 0xd3, + 0x8e, 0xf2, 0x69, 0x2e, 0x38, 0x80, 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0x0b, 0x0e, 0xec, 0x86, + 0xa2, 0x2c, 0x5c, 0x6c, 0xa0, 0x31, 0x21, 0x45, 0x4f, 0xb5, 0x6e, 0x55, 0x66, 0xdf, 0x07, 0x26, + 0x53, 0xfd, 0xc6, 0x62, 0x4b, 0xde, 0xaa, 0x5f, 0xa5, 0x55, 0xbf, 0x3c, 0x61, 0x1b, 0x5a, 0xf5, + 0x69, 0xd5, 0xcf, 0x6d, 0x27, 0x69, 0xd5, 0xa7, 0x55, 0xbf, 0x7c, 0xa0, 0x60, 0x0f, 0x0e, 0xd6, + 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x0d, 0xaf, 0xa6, 0x55, 0x5f, 0xdd, + 0xba, 0xd3, 0xaa, 0xaf, 0xf8, 0xe0, 0xc4, 0xf5, 0xe7, 0xcb, 0x20, 0xae, 0x6f, 0x6d, 0xfe, 0x16, + 0x55, 0x93, 0xb8, 0xfe, 0x92, 0x6a, 0xd2, 0xaa, 0x6f, 0xed, 0x10, 0xd8, 0x49, 0xa5, 0x60, 0x6e, + 0x75, 0xb5, 0xa5, 0x55, 0x7f, 0x16, 0xbd, 0xa0, 0x55, 0x1f, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, + 0xe5, 0x4b, 0x4b, 0xe5, 0x69, 0xd5, 0x2f, 0x85, 0xd3, 0x42, 0xab, 0x3e, 0xee, 0x02, 0xee, 0x02, + 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0xa7, 0x55, 0x9f, 0x56, 0x7d, 0x03, 0xd3, 0x42, + 0xab, 0xfe, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0xd2, 0xaa, 0x8f, 0x6a, 0xba, + 0xe2, 0x90, 0xd8, 0x49, 0x25, 0xf3, 0xb0, 0xba, 0xda, 0xd2, 0xaa, 0x0f, 0xa9, 0x87, 0xd4, 0x43, + 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0x4e, 0xab, 0x3e, 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, + 0x07, 0x9f, 0x76, 0x94, 0x4f, 0xd3, 0xaa, 0x0f, 0xa3, 0x86, 0x51, 0x17, 0x52, 0x12, 0xad, 0xfa, + 0x8e, 0xb4, 0xea, 0x4f, 0x3a, 0xc0, 0xcb, 0xd2, 0xa9, 0xbf, 0x51, 0x60, 0x9d, 0xd5, 0xd6, 0xd5, + 0xc2, 0xe8, 0x68, 0x45, 0x65, 0xfe, 0x42, 0x32, 0x6c, 0xa7, 0x71, 0xc6, 0xb8, 0x9a, 0x93, 0x87, + 0x6b, 0x64, 0xcf, 0xe6, 0xb7, 0xb2, 0x27, 0xf2, 0xf7, 0xaf, 0xfa, 0x7e, 0x2b, 0x0c, 0x93, 0xf7, + 0xa3, 0x87, 0xf0, 0x6b, 0x97, 0xd1, 0x69, 0x70, 0x19, 0xf9, 0x8d, 0xfe, 0xcd, 0xee, 0xf9, 0x64, + 0xe1, 0xfe, 0x24, 0x40, 0x74, 0x38, 0x5e, 0xf7, 0x46, 0x31, 0x75, 0x5d, 0x50, 0xcf, 0x95, 0xe6, + 0x5c, 0xa8, 0xce, 0xb7, 0x50, 0x9a, 0x6b, 0xa1, 0x36, 0xcf, 0x42, 0x33, 0xc6, 0xa9, 0x1f, 0xd3, + 0xd4, 0x8e, 0x61, 0x9a, 0xc5, 0x2c, 0xcd, 0x62, 0x94, 0x26, 0x31, 0xc9, 0x62, 0x23, 0xbf, 0xd6, + 0x1c, 0x8a, 0xca, 0x20, 0x8c, 0x3b, 0x5e, 0x67, 0xd2, 0x37, 0xe2, 0x25, 0xbd, 0xa1, 0xc9, 0xcc, + 0xa1, 0xe5, 0x35, 0x68, 0x8d, 0xfb, 0xb0, 0x69, 0x98, 0x51, 0x0e, 0x57, 0xa8, 0x27, 0xc7, 0x18, + 0x7c, 0x54, 0x6a, 0x20, 0x31, 0x07, 0x14, 0x53, 0x60, 0x29, 0x67, 0x58, 0x44, 0x3d, 0xa9, 0x65, + 0xd8, 0xd0, 0xa2, 0xdc, 0xc8, 0x42, 0x94, 0x83, 0x28, 0xc7, 0x8f, 0x46, 0x39, 0x14, 0x82, 0x6f, + 0x82, 0x61, 0x82, 0x8d, 0x02, 0xa9, 0x9f, 0x96, 0xda, 0xb9, 0xac, 0x6e, 0x15, 0xd1, 0xb8, 0x4e, + 0x3e, 0xf1, 0x33, 0x99, 0xc3, 0x90, 0xbf, 0xaa, 0x0a, 0xa8, 0x69, 0xa5, 0x5b, 0xbd, 0xe9, 0xc7, + 0x5e, 0x78, 0xd3, 0x97, 0x53, 0xd1, 0x19, 0x0c, 0xdf, 0x91, 0x25, 0x74, 0xe0, 0x64, 0xa3, 0x62, + 0xe2, 0x24, 0x47, 0x83, 0xd4, 0xe8, 0x91, 0x18, 0x2d, 0xd2, 0xa2, 0x4e, 0x52, 0xd4, 0x49, 0x89, + 0x2a, 0x09, 0x29, 0x16, 0xc4, 0x4a, 0x47, 0xb1, 0x2a, 0x0b, 0x49, 0x21, 0xb5, 0x1c, 0x82, 0x62, + 0x2a, 0x4a, 0x3d, 0x95, 0xb0, 0x49, 0x2a, 0xa1, 0x38, 0x91, 0x20, 0x52, 0x09, 0xa4, 0x12, 0xcc, + 0x8d, 0xf0, 0x4c, 0x50, 0x7b, 0x6a, 0x43, 0x94, 0xd3, 0x07, 0x99, 0xdc, 0x92, 0xdf, 0x59, 0x40, + 0xe8, 0xbe, 0x04, 0x06, 0xdb, 0xdc, 0x70, 0x9b, 0x1b, 0x70, 0x53, 0x43, 0xae, 0x63, 0xd0, 0x95, + 0x0c, 0xbb, 0xba, 0x81, 0x9f, 0x09, 0xe4, 0xce, 0x02, 0x9a, 0x1c, 0x9f, 0x95, 0x1f, 0x1c, 0xac, + 0x41, 0xc2, 0x19, 0xb0, 0x70, 0x06, 0x34, 0x9c, 0x00, 0x0f, 0x5d, 0x10, 0x51, 0x06, 0x93, 0xd9, + 0x0e, 0x73, 0x67, 0x01, 0x77, 0x16, 0x68, 0x3e, 0x38, 0x0d, 0x8e, 0xf3, 0x65, 0xd0, 0xe0, 0x68, + 0x6d, 0xfe, 0x16, 0x55, 0x93, 0x06, 0xc7, 0x25, 0xd5, 0xe4, 0xce, 0x02, 0x6b, 0x87, 0xc0, 0x4e, + 0x2a, 0x93, 0x83, 0x56, 0x57, 0x5b, 0xee, 0x2c, 0x98, 0x45, 0x2f, 0xb8, 0xb3, 0x00, 0x2a, 0x0f, + 0x95, 0x87, 0xca, 0x43, 0xe5, 0x4b, 0x4b, 0xe5, 0xb9, 0xb3, 0xa0, 0x14, 0x4e, 0x0b, 0x77, 0x16, + 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, 0x9e, 0x77, 0xee, 0x2c, 0xe0, + 0xce, 0x02, 0x03, 0xd3, 0xc2, 0x9d, 0x05, 0xf3, 0x65, 0x90, 0x82, 0xb0, 0xb6, 0xc3, 0x8b, 0xaa, + 0xc9, 0x9d, 0x05, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, 0xab, 0x2d, 0x77, + 0x16, 0x40, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0x73, 0x67, 0x01, + 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, 0x07, 0x9f, 0x76, 0x94, 0x4f, 0x73, 0x67, 0x01, 0x8c, 0x1a, + 0x46, 0x5d, 0x48, 0x49, 0xdc, 0x59, 0xa0, 0x3a, 0xba, 0x6a, 0x3e, 0xa2, 0x68, 0xf1, 0xc6, 0x82, + 0xac, 0x01, 0xbc, 0x2c, 0xc3, 0xfc, 0x54, 0x86, 0xdb, 0x07, 0x26, 0x83, 0x7e, 0x15, 0x86, 0xaf, + 0xdf, 0x87, 0x57, 0xf5, 0x46, 0xfd, 0x2a, 0x8d, 0xfa, 0xe5, 0x09, 0xda, 0xd0, 0xa8, 0x4f, 0xa3, + 0x7e, 0x6e, 0x3b, 0x49, 0xa3, 0x3e, 0x8d, 0xfa, 0xe5, 0x03, 0x05, 0x7b, 0x70, 0xb0, 0x06, 0x09, + 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x6c, 0x58, 0x35, 0x8d, 0xfa, 0xea, 0xd6, 0x9d, + 0x46, 0x7d, 0xc5, 0x07, 0x27, 0xaa, 0x3f, 0x5f, 0x06, 0x51, 0x7d, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, + 0x44, 0xf5, 0x97, 0x54, 0x93, 0x46, 0x7d, 0x6b, 0x87, 0xc0, 0x4e, 0x2a, 0xe5, 0x72, 0xab, 0xab, + 0x2d, 0x8d, 0xfa, 0xb3, 0xe8, 0x05, 0x8d, 0xfa, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, + 0x5a, 0x2a, 0x4f, 0xa3, 0x7e, 0x29, 0x9c, 0x16, 0x1a, 0xf5, 0x71, 0x17, 0x70, 0x17, 0x70, 0x17, + 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0x8d, 0xfa, 0x34, 0xea, 0x1b, 0x98, 0x16, 0x1a, 0xf5, + 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, 0x87, 0x17, 0x55, 0x93, 0x46, 0x7d, 0x54, 0xd3, 0x15, 0x87, + 0xc4, 0x4e, 0x2a, 0x99, 0x87, 0xd5, 0xd5, 0x96, 0x46, 0x7d, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, + 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x1a, 0xf5, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, + 0xb4, 0xa3, 0x7c, 0x9a, 0x46, 0x7d, 0x18, 0x35, 0x8c, 0xba, 0x90, 0x92, 0x68, 0xd4, 0x77, 0xa2, + 0x51, 0x7f, 0xd2, 0xff, 0x5d, 0x96, 0x3e, 0xfd, 0x8d, 0x02, 0x6b, 0xac, 0xb6, 0xa6, 0x16, 0x44, + 0x43, 0x2b, 0x2a, 0xb3, 0x17, 0x92, 0x61, 0x3b, 0x8d, 0x33, 0xb6, 0xd5, 0x9c, 0x3c, 0x5a, 0x23, + 0x7b, 0x32, 0xbf, 0x95, 0x3d, 0x8f, 0xbf, 0x7f, 0xd5, 0xf7, 0x5b, 0x61, 0x98, 0xbc, 0x1f, 0x3d, + 0x82, 0x5f, 0xbb, 0x8c, 0x4e, 0x83, 0xcb, 0xc8, 0x3f, 0xac, 0x7e, 0xec, 0xc7, 0xf5, 0x9b, 0x7e, + 0xec, 0x4f, 0x42, 0x43, 0x87, 0xe3, 0x55, 0x6f, 0x14, 0x53, 0xcf, 0x65, 0x3e, 0x59, 0xe8, 0xe4, + 0x68, 0x9d, 0x18, 0x77, 0x4f, 0x8a, 0xe0, 0xe1, 0xc8, 0xe9, 0x50, 0xc8, 0x1c, 0x84, 0xfc, 0xd5, + 0x54, 0x40, 0x45, 0x2b, 0x93, 0xf7, 0x74, 0xd3, 0xef, 0xca, 0x75, 0xfa, 0xcf, 0x42, 0x44, 0x77, + 0x64, 0x09, 0x1d, 0x36, 0xd9, 0xe1, 0x2d, 0xe2, 0x01, 0x7d, 0x8d, 0xc0, 0xbd, 0x5e, 0x80, 0x5e, + 0x2b, 0x10, 0xaf, 0x1e, 0x70, 0x57, 0x0f, 0xac, 0xab, 0x06, 0xd0, 0x8b, 0x05, 0xaf, 0xd2, 0xc3, + 0x51, 0x2a, 0x0b, 0x7e, 0x9e, 0xb8, 0x2a, 0xdf, 0xe9, 0xda, 0xd2, 0xf2, 0x2e, 0x95, 0x26, 0x5e, + 0xa9, 0x65, 0x43, 0x35, 0xb3, 0x9f, 0xfa, 0xd9, 0x4e, 0xed, 0xec, 0xa6, 0x59, 0x36, 0xd3, 0x2c, + 0x7b, 0x69, 0x92, 0xad, 0x2c, 0x76, 0x54, 0x40, 0x6b, 0x42, 0x55, 0xa5, 0x3d, 0xb5, 0x21, 0xca, + 0x13, 0x08, 0x33, 0xb9, 0x25, 0x1f, 0x41, 0xb8, 0xc9, 0x08, 0xc2, 0xe2, 0x1b, 0x6c, 0x73, 0xc3, + 0x6d, 0x6e, 0xc0, 0x4d, 0x0d, 0xb9, 0x8e, 0x41, 0x57, 0x32, 0xec, 0xea, 0x06, 0x7e, 0x26, 0x90, + 0x11, 0x84, 0xd4, 0x2c, 0x3e, 0x2b, 0x3f, 0x38, 0x58, 0x83, 0x84, 0x33, 0x60, 0xe1, 0x0c, 0x68, + 0x38, 0x01, 0x1e, 0xba, 0x20, 0xa2, 0x0c, 0x26, 0xb3, 0x1d, 0x66, 0x04, 0x21, 0x23, 0x08, 0x35, + 0x1f, 0x9c, 0x7a, 0xc5, 0xf9, 0x32, 0xa8, 0x57, 0xb4, 0x36, 0x7f, 0x8b, 0xaa, 0x49, 0xbd, 0xe2, + 0x92, 0x6a, 0x32, 0x82, 0xd0, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0x23, 0xe0, 0xea, 0x6a, 0xcb, 0x08, + 0xc2, 0x59, 0xf4, 0x82, 0x11, 0x84, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, 0x2a, + 0xcf, 0x08, 0xc2, 0x52, 0x38, 0x2d, 0x8c, 0x20, 0xc4, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, + 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x8c, 0x20, 0x64, 0x04, 0xa1, 0x81, 0x69, 0x61, 0x04, 0xe1, 0x7c, + 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0x32, 0x82, 0x10, 0xd5, 0x74, 0xc5, 0x21, 0xb1, + 0x93, 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0x65, 0x04, 0x21, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, + 0x43, 0xea, 0x35, 0xcf, 0x3b, 0x23, 0x08, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, 0xb4, + 0xa3, 0x7c, 0x9a, 0x11, 0x84, 0x30, 0x6a, 0x18, 0x75, 0x21, 0x25, 0x31, 0x82, 0xd0, 0x60, 0x6c, + 0xd5, 0x4d, 0x7f, 0xfc, 0x09, 0x77, 0x46, 0x10, 0x66, 0x0d, 0xe0, 0x65, 0x99, 0x41, 0xa8, 0x32, + 0xaf, 0x2e, 0x48, 0x43, 0xfd, 0x4e, 0xfd, 0x89, 0xd8, 0x92, 0x37, 0xea, 0x57, 0x69, 0xd4, 0x2f, + 0x4f, 0xd0, 0x86, 0x46, 0x7d, 0x1a, 0xf5, 0x73, 0xdb, 0x49, 0x1a, 0xf5, 0x69, 0xd4, 0x2f, 0x1f, + 0x28, 0xd8, 0x83, 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, 0xe0, 0x61, 0xc3, + 0xaa, 0x69, 0xd4, 0x57, 0xb7, 0xee, 0x34, 0xea, 0x2b, 0x3e, 0x38, 0x51, 0xfd, 0xf9, 0x32, 0x88, + 0xea, 0x5b, 0x9b, 0xbf, 0x45, 0xd5, 0x24, 0xaa, 0xbf, 0xa4, 0x9a, 0x34, 0xea, 0x5b, 0x3b, 0x04, + 0x76, 0x52, 0x29, 0x97, 0x5b, 0x5d, 0x6d, 0x69, 0xd4, 0x9f, 0x45, 0x2f, 0x68, 0xd4, 0x87, 0xca, + 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x1a, 0xf5, 0x4b, 0xe1, 0xb4, 0xd0, 0xa8, + 0x8f, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x69, 0xd4, 0xa7, + 0x51, 0xdf, 0xc0, 0xb4, 0xd0, 0xa8, 0x3f, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, + 0x34, 0xea, 0xa3, 0x9a, 0xae, 0x38, 0x24, 0x76, 0x52, 0xc9, 0x3c, 0xac, 0xae, 0xb6, 0x34, 0xea, + 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0xd3, 0xa8, 0x0f, 0x9f, + 0xb6, 0x23, 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x34, 0xea, 0xc3, 0xa8, 0x61, 0xd4, + 0x85, 0x94, 0x44, 0xa3, 0xbe, 0x13, 0x8d, 0xfa, 0x93, 0xfe, 0xef, 0xb2, 0xf4, 0xe9, 0x6f, 0x14, + 0x58, 0x63, 0xb5, 0x35, 0xb5, 0x20, 0x1a, 0x5a, 0x51, 0x99, 0xbd, 0x90, 0x0c, 0xdb, 0x69, 0x9c, + 0xb1, 0xad, 0xe6, 0xe4, 0xd1, 0x1a, 0xd9, 0x93, 0xf9, 0xad, 0xec, 0x79, 0xfc, 0xfd, 0xab, 0xbe, + 0xdf, 0x0a, 0xc3, 0xe4, 0xfd, 0xe8, 0x11, 0xfc, 0xda, 0x65, 0x74, 0x1a, 0x5c, 0x46, 0xfe, 0x61, + 0xf5, 0x63, 0x3f, 0xfe, 0xd8, 0xef, 0x0e, 0xfc, 0x49, 0x68, 0xe8, 0x70, 0xbc, 0xea, 0x8d, 0x62, + 0xea, 0xb9, 0xcc, 0x27, 0x0b, 0x9d, 0x1c, 0xad, 0x13, 0xe3, 0xee, 0x49, 0x11, 0x3c, 0x1c, 0x39, + 0x1d, 0x0a, 0x99, 0x83, 0x90, 0xbf, 0x9a, 0x0a, 0xa8, 0x68, 0xa5, 0xfb, 0x6a, 0xf4, 0x9e, 0xa2, + 0xfe, 0xcd, 0xb6, 0x77, 0x3d, 0xec, 0xa6, 0x51, 0x3b, 0x18, 0xc8, 0x65, 0x0b, 0x66, 0xc1, 0xa2, + 0x07, 0xa5, 0x0a, 0x1d, 0x40, 0xd9, 0x81, 0x2e, 0xe2, 0x41, 0x7e, 0x8d, 0x60, 0xbe, 0x5e, 0xd0, + 0x5e, 0x2b, 0x38, 0xaf, 0x1e, 0x84, 0x57, 0x0f, 0xb6, 0xab, 0x06, 0xd5, 0x8b, 0x05, 0xb9, 0xd2, + 0x03, 0x53, 0x2a, 0x0b, 0xbe, 0x9f, 0xb8, 0x2a, 0xdf, 0xe9, 0xe4, 0xd2, 0xf2, 0x38, 0x95, 0xa6, + 0x60, 0xa9, 0x65, 0x48, 0x35, 0x33, 0xa2, 0xfa, 0x19, 0x50, 0xed, 0x8c, 0xa7, 0x59, 0x86, 0xd3, + 0x2c, 0xa3, 0x69, 0x92, 0xc1, 0x2c, 0x76, 0xa4, 0x40, 0x6b, 0x6a, 0x55, 0xa5, 0x3d, 0xb5, 0x21, + 0xca, 0x53, 0x09, 0x33, 0xb9, 0x25, 0x1f, 0x4b, 0xb8, 0xc9, 0x58, 0xc2, 0xe2, 0x1b, 0x6c, 0x73, + 0xc3, 0x6d, 0x6e, 0xc0, 0x4d, 0x0d, 0xb9, 0x8e, 0x41, 0x57, 0x32, 0xec, 0xea, 0x06, 0x7e, 0x26, + 0x90, 0xb1, 0x84, 0xd4, 0x31, 0x3e, 0x2b, 0x3f, 0x38, 0x58, 0x83, 0x84, 0x33, 0x60, 0xe1, 0x0c, + 0x68, 0x38, 0x01, 0x1e, 0xba, 0x20, 0xa2, 0x0c, 0x26, 0xb3, 0x1d, 0x66, 0x2c, 0x21, 0x63, 0x09, + 0x35, 0x1f, 0x9c, 0x1a, 0xc6, 0xf9, 0x32, 0xa8, 0x61, 0xb4, 0x36, 0x7f, 0x8b, 0xaa, 0x49, 0x0d, + 0xe3, 0x92, 0x6a, 0x32, 0x96, 0xd0, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0x73, 0xe0, 0xea, 0x6a, 0xcb, + 0x58, 0xc2, 0x59, 0xf4, 0x82, 0xb1, 0x84, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x5f, 0x5a, + 0x2a, 0xcf, 0x58, 0xc2, 0x52, 0x38, 0x2d, 0x8c, 0x25, 0xc4, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, 0xc0, + 0x5d, 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x8c, 0x25, 0x64, 0x2c, 0xa1, 0x81, 0x69, 0x61, 0x2c, 0xe1, + 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, 0x6a, 0x32, 0x96, 0x10, 0xd5, 0x74, 0xc5, 0x21, + 0xb1, 0x93, 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0x65, 0x2c, 0x21, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, + 0xd4, 0x43, 0xea, 0x35, 0xcf, 0x3b, 0x63, 0x09, 0xe1, 0xd3, 0x76, 0xa4, 0x85, 0x92, 0x3e, 0xf8, + 0xb4, 0xa3, 0x7c, 0x9a, 0xb1, 0x84, 0x30, 0x6a, 0x18, 0x75, 0x21, 0x25, 0x31, 0x96, 0x50, 0x77, + 0x94, 0xd5, 0x03, 0xc3, 0x8a, 0x16, 0x07, 0x14, 0x66, 0xad, 0xe0, 0x65, 0x99, 0x50, 0xa8, 0x32, + 0xcd, 0x2e, 0x48, 0x43, 0xfd, 0x9e, 0xfd, 0x89, 0xd8, 0x92, 0xb7, 0xec, 0x57, 0x69, 0xd9, 0x2f, + 0x4f, 0xf8, 0x86, 0x96, 0x7d, 0x5a, 0xf6, 0x73, 0xdb, 0x49, 0x5a, 0xf6, 0x69, 0xd9, 0x2f, 0x1f, + 0x28, 0xd8, 0x83, 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, 0xe0, 0x61, 0xc3, + 0xaf, 0x69, 0xd9, 0x57, 0xb7, 0xee, 0xb4, 0xec, 0x2b, 0x3e, 0x38, 0xf1, 0xfd, 0xf9, 0x32, 0x88, + 0xef, 0x5b, 0x9b, 0xbf, 0x45, 0xd5, 0x24, 0xbe, 0xbf, 0xa4, 0x9a, 0xb4, 0xec, 0x5b, 0x3b, 0x04, + 0x76, 0x52, 0x29, 0x9c, 0x5b, 0x5d, 0x6d, 0x69, 0xd9, 0x9f, 0x45, 0x2f, 0x68, 0xd9, 0x87, 0xca, + 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x5a, 0xf6, 0x4b, 0xe1, 0xb4, 0xd0, 0xb2, + 0x8f, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x69, 0xd9, 0xa7, + 0x65, 0xdf, 0xc0, 0xb4, 0xd0, 0xb2, 0x3f, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, + 0xb4, 0xec, 0xa3, 0x9a, 0xae, 0x38, 0x24, 0x76, 0x52, 0xc9, 0x3c, 0xac, 0xae, 0xb6, 0xb4, 0xec, + 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0xd3, 0xb2, 0x0f, 0x9f, + 0xb6, 0x23, 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0xb4, 0xec, 0xc3, 0xa8, 0x61, 0xd4, + 0x85, 0x94, 0x44, 0xcb, 0xbe, 0x63, 0x2d, 0xfb, 0x93, 0x4e, 0xf0, 0xb2, 0x74, 0xec, 0x6f, 0x14, + 0x58, 0x77, 0xb5, 0x75, 0xb6, 0x70, 0xba, 0x5a, 0x51, 0x99, 0xc7, 0x90, 0x0c, 0xdb, 0x69, 0x9c, + 0x31, 0xb0, 0xe6, 0xe4, 0x21, 0x1b, 0xd9, 0x33, 0xfa, 0xad, 0xec, 0xc9, 0xfc, 0xfd, 0xab, 0xbe, + 0xdf, 0x0a, 0xc3, 0xe4, 0xfd, 0xe8, 0x61, 0xfc, 0xda, 0x65, 0x74, 0x1a, 0x5c, 0x46, 0xfe, 0xe1, + 0xab, 0x8f, 0xfd, 0xb8, 0xd1, 0xbf, 0xd9, 0x3e, 0x9a, 0xae, 0xdf, 0x9f, 0xc4, 0x8d, 0x0e, 0xc7, + 0xcb, 0xdf, 0x28, 0xa6, 0xea, 0xcb, 0x7c, 0xb2, 0xd0, 0x61, 0xd2, 0x3a, 0x44, 0x45, 0x38, 0x3c, + 0x82, 0xe7, 0x25, 0xef, 0x73, 0x22, 0x73, 0x36, 0xf2, 0xd7, 0x5c, 0x01, 0xad, 0xad, 0xdc, 0x79, + 0x75, 0xc3, 0x78, 0xb2, 0x1b, 0x52, 0x9a, 0x3b, 0x0b, 0x2d, 0x3d, 0x20, 0x53, 0xe8, 0x3c, 0xca, + 0x0e, 0x7f, 0x11, 0x4f, 0x08, 0x68, 0x04, 0xfe, 0xf5, 0x02, 0xfc, 0x5a, 0x81, 0x7c, 0xf5, 0x80, + 0xbd, 0x7a, 0x60, 0x5e, 0x35, 0x00, 0x5f, 0x2c, 0x04, 0x96, 0x1e, 0xae, 0x52, 0x59, 0xf0, 0x09, + 0xc5, 0x55, 0xf9, 0x4e, 0xd7, 0x97, 0x96, 0x27, 0xaa, 0x34, 0x31, 0x4b, 0x2d, 0x9b, 0xaa, 0x99, + 0x3d, 0xd5, 0xcf, 0x96, 0x6a, 0x67, 0x47, 0xcd, 0xb2, 0xa1, 0x66, 0xd9, 0x4f, 0x93, 0x6c, 0x67, + 0xb1, 0x63, 0x09, 0x5a, 0x13, 0xae, 0x2a, 0xed, 0xa9, 0x0d, 0x51, 0x9e, 0x60, 0x98, 0xc9, 0x2d, + 0xf9, 0x08, 0xc3, 0x4d, 0x46, 0x18, 0x16, 0xdf, 0x60, 0x9b, 0x1b, 0x6e, 0x73, 0x03, 0x6e, 0x6a, + 0xc8, 0x75, 0x0c, 0xba, 0x92, 0x61, 0x57, 0x37, 0xf0, 0x33, 0x81, 0x8c, 0x30, 0xa4, 0xe6, 0xf1, + 0x59, 0xf9, 0xc1, 0xc1, 0x1a, 0x24, 0x9c, 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xd0, 0x05, + 0x11, 0x65, 0x30, 0x99, 0xed, 0x30, 0x23, 0x0c, 0x19, 0x61, 0xa8, 0xf9, 0xe0, 0xd4, 0x3b, 0xce, + 0x97, 0x41, 0xbd, 0xa3, 0xb5, 0xf9, 0x5b, 0x54, 0x4d, 0xea, 0x1d, 0x97, 0x54, 0x93, 0x11, 0x86, + 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x1a, 0x09, 0x57, 0x57, 0x5b, 0x46, 0x18, 0xce, 0xa2, 0x17, 0x8c, + 0x30, 0x84, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0xf9, 0xd2, 0x52, 0x79, 0x46, 0x18, 0x96, 0xc2, + 0x69, 0x61, 0x84, 0x21, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, + 0x67, 0x84, 0x21, 0x23, 0x0c, 0x0d, 0x4c, 0x0b, 0x23, 0x0c, 0xe7, 0xcb, 0x20, 0x05, 0x61, 0x6d, + 0x87, 0x17, 0x55, 0x93, 0x11, 0x86, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, 0xab, + 0xab, 0x2d, 0x23, 0x0c, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0xaf, 0x79, 0xde, + 0x19, 0x61, 0x08, 0x9f, 0xb6, 0x23, 0x2d, 0x94, 0xf4, 0xc1, 0xa7, 0x1d, 0xe5, 0xd3, 0x8c, 0x30, + 0x84, 0x51, 0xc3, 0xa8, 0x0b, 0x29, 0x89, 0x11, 0x86, 0x56, 0x93, 0xad, 0xb2, 0x51, 0x45, 0x8b, + 0x03, 0x0c, 0xb3, 0x46, 0xf0, 0xb2, 0x4c, 0x30, 0x54, 0x99, 0x71, 0x17, 0xa4, 0xa1, 0x7e, 0xc7, + 0xfe, 0x44, 0x6c, 0xc9, 0x1b, 0xf6, 0xab, 0x34, 0xec, 0x97, 0x27, 0x78, 0x43, 0xc3, 0x3e, 0x0d, + 0xfb, 0xb9, 0xed, 0x24, 0x0d, 0xfb, 0x34, 0xec, 0x97, 0x0f, 0x14, 0xec, 0xc1, 0xc1, 0x1a, 0x24, + 0x9c, 0x01, 0x0b, 0x67, 0x40, 0xc3, 0x09, 0xf0, 0xb0, 0x61, 0xd7, 0x34, 0xec, 0xab, 0x5b, 0x77, + 0x1a, 0xf6, 0x15, 0x1f, 0x9c, 0xe8, 0xfe, 0x7c, 0x19, 0x44, 0xf7, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, + 0x12, 0xdd, 0x5f, 0x52, 0x4d, 0x1a, 0xf6, 0xad, 0x1d, 0x02, 0x3b, 0xa9, 0x94, 0xcd, 0xad, 0xae, + 0xb6, 0x34, 0xec, 0xcf, 0xa2, 0x17, 0x34, 0xec, 0x43, 0xe5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x7c, + 0x69, 0xa9, 0x3c, 0x0d, 0xfb, 0xa5, 0x70, 0x5a, 0x68, 0xd8, 0xc7, 0x5d, 0xc0, 0x5d, 0xc0, 0x5d, + 0xc0, 0x5d, 0xc0, 0x5d, 0x90, 0x3c, 0xef, 0x34, 0xec, 0xd3, 0xb0, 0x6f, 0x60, 0x5a, 0x68, 0xd8, + 0x9f, 0x2f, 0x83, 0x14, 0x84, 0xb5, 0x1d, 0x5e, 0x54, 0x4d, 0x1a, 0xf6, 0x51, 0x4d, 0x57, 0x1c, + 0x12, 0x3b, 0xa9, 0x64, 0x1e, 0x56, 0x57, 0x5b, 0x1a, 0xf6, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, + 0xa4, 0x1e, 0x52, 0xaf, 0x79, 0xde, 0x69, 0xd8, 0x87, 0x4f, 0xdb, 0x91, 0x16, 0x4a, 0xfa, 0xe0, + 0xd3, 0x8e, 0xf2, 0x69, 0x1a, 0xf6, 0x61, 0xd4, 0x30, 0xea, 0x42, 0x4a, 0xa2, 0x61, 0xdf, 0xa9, + 0x86, 0xfd, 0x49, 0x1f, 0x78, 0x59, 0xfa, 0xf5, 0x37, 0x0a, 0xac, 0xb9, 0xda, 0x1a, 0x5b, 0x30, + 0x4d, 0xad, 0xa8, 0xcc, 0x62, 0x48, 0x86, 0xed, 0x34, 0xce, 0xd8, 0x57, 0x73, 0xf2, 0x88, 0x8d, + 0xec, 0x09, 0xfd, 0x56, 0xf6, 0x5c, 0xfe, 0xfe, 0x55, 0xdf, 0x6f, 0x85, 0x61, 0xf2, 0x7e, 0xf4, + 0x28, 0x7e, 0xed, 0x32, 0x3a, 0x0d, 0x2e, 0x23, 0xff, 0xf0, 0xd5, 0xc7, 0x7e, 0xdc, 0xe8, 0xdf, + 0x6c, 0x9f, 0x4f, 0x56, 0xef, 0x4f, 0x22, 0x46, 0x87, 0xe3, 0xc5, 0x6f, 0x14, 0x53, 0xed, 0x65, + 0x3e, 0x59, 0xe8, 0x20, 0x69, 0x1d, 0x20, 0xf7, 0x0f, 0x8e, 0xe0, 0x59, 0xc9, 0xf7, 0x8c, 0xc8, + 0x9c, 0x8b, 0xfc, 0xb5, 0x56, 0x40, 0x63, 0x2b, 0xb3, 0xd7, 0xb6, 0xeb, 0x5d, 0x0f, 0xbb, 0xe9, + 0x64, 0x3f, 0xa4, 0xf4, 0x76, 0x16, 0x52, 0x7a, 0x50, 0xaa, 0xd0, 0x79, 0x94, 0x1d, 0xfb, 0x22, + 0x9e, 0x0a, 0xd0, 0x08, 0xf9, 0xeb, 0x85, 0xf6, 0xb5, 0x42, 0xf8, 0xea, 0xa1, 0x7a, 0xf5, 0x90, + 0xbc, 0x6a, 0xe8, 0xbd, 0x58, 0x08, 0x2c, 0x3d, 0x56, 0xa5, 0xb2, 0xe0, 0x11, 0x8a, 0xab, 0xf2, + 0x9d, 0x7e, 0x2f, 0x2d, 0x3f, 0x54, 0x69, 0x56, 0x96, 0x5a, 0x1e, 0x55, 0x33, 0x6f, 0xaa, 0x9f, + 0x27, 0xd5, 0xce, 0x8b, 0x9a, 0xe5, 0x41, 0xcd, 0xf2, 0x9e, 0x26, 0x79, 0xce, 0x62, 0xc7, 0x11, + 0xb4, 0x66, 0x5b, 0x55, 0xda, 0x53, 0x1b, 0xa2, 0x3c, 0xbb, 0x30, 0x93, 0x5b, 0xf2, 0xe1, 0x85, + 0x9b, 0x0c, 0x2f, 0x2c, 0xbe, 0xc1, 0x36, 0x37, 0xdc, 0xe6, 0x06, 0xdc, 0xd4, 0x90, 0xeb, 0x18, + 0x74, 0x25, 0xc3, 0xae, 0x6e, 0xe0, 0x67, 0x02, 0x19, 0x5e, 0x48, 0xb5, 0xe3, 0xb3, 0xf2, 0x83, + 0x83, 0x35, 0x48, 0x38, 0x03, 0x16, 0xce, 0x80, 0x86, 0x13, 0xe0, 0xa1, 0x0b, 0x22, 0xca, 0x60, + 0x32, 0xdb, 0x61, 0x86, 0x17, 0x32, 0xbc, 0x50, 0xf3, 0xc1, 0xa9, 0x74, 0x9c, 0x2f, 0x83, 0x4a, + 0x47, 0x6b, 0xf3, 0xb7, 0xa8, 0x9a, 0x54, 0x3a, 0x2e, 0xa9, 0x26, 0xc3, 0x0b, 0xad, 0x1d, 0x02, + 0x3b, 0xa9, 0xb4, 0x10, 0xae, 0xae, 0xb6, 0x0c, 0x2f, 0x9c, 0x45, 0x2f, 0x18, 0x5e, 0x08, 0x95, + 0x87, 0xca, 0x43, 0xe5, 0xa1, 0xf2, 0xa5, 0xa5, 0xf2, 0x0c, 0x2f, 0x2c, 0x85, 0xd3, 0xc2, 0xf0, + 0x42, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xc9, 0xf3, 0xce, 0xf0, 0x42, + 0x86, 0x17, 0x1a, 0x98, 0x16, 0x86, 0x17, 0xce, 0x97, 0x41, 0x0a, 0xc2, 0xda, 0x0e, 0x2f, 0xaa, + 0x26, 0xc3, 0x0b, 0x51, 0x4d, 0x57, 0x1c, 0x12, 0x3b, 0xa9, 0x64, 0x1e, 0x56, 0x57, 0x5b, 0x86, + 0x17, 0x42, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x5e, 0xf3, 0xbc, 0x33, 0xbc, 0x10, + 0x3e, 0x6d, 0x47, 0x5a, 0x28, 0xe9, 0x83, 0x4f, 0x3b, 0xca, 0xa7, 0x19, 0x5e, 0x08, 0xa3, 0x86, + 0x51, 0x17, 0x52, 0x12, 0xc3, 0x0b, 0x6d, 0x26, 0x5b, 0xdd, 0x19, 0x56, 0xb4, 0x38, 0xbe, 0x30, + 0x6b, 0x05, 0x2f, 0xcb, 0xfc, 0x42, 0x95, 0x19, 0x77, 0x41, 0x1a, 0xea, 0xf7, 0xec, 0x4f, 0xc4, + 0x96, 0xbc, 0x65, 0xbf, 0x4a, 0xcb, 0x7e, 0x79, 0xc2, 0x37, 0xb4, 0xec, 0xd3, 0xb2, 0x9f, 0xdb, + 0x4e, 0xd2, 0xb2, 0x4f, 0xcb, 0x7e, 0xf9, 0x40, 0xc1, 0x1e, 0x1c, 0xac, 0x41, 0xc2, 0x19, 0xb0, + 0x70, 0x06, 0x34, 0x9c, 0x00, 0x0f, 0x1b, 0x7e, 0x4d, 0xcb, 0xbe, 0xba, 0x75, 0xa7, 0x65, 0x5f, + 0xf1, 0xc1, 0x89, 0xef, 0xcf, 0x97, 0x41, 0x7c, 0xdf, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0xf1, 0xfd, + 0x25, 0xd5, 0xa4, 0x65, 0xdf, 0xda, 0x21, 0xb0, 0x93, 0x4a, 0xe1, 0xdc, 0xea, 0x6a, 0x4b, 0xcb, + 0xfe, 0x2c, 0x7a, 0x41, 0xcb, 0x3e, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x97, 0x96, 0xca, + 0xd3, 0xb2, 0x5f, 0x0a, 0xa7, 0x85, 0x96, 0x7d, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, 0xdc, 0x05, + 0xdc, 0x05, 0xc9, 0xf3, 0x4e, 0xcb, 0x3e, 0x2d, 0xfb, 0x06, 0xa6, 0x85, 0x96, 0xfd, 0xf9, 0x32, + 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, 0xd5, 0xa4, 0x65, 0x1f, 0xd5, 0x74, 0xc5, 0x21, 0xb1, 0x93, + 0x4a, 0xe6, 0x61, 0x75, 0xb5, 0xa5, 0x65, 0x1f, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, + 0xf5, 0x9a, 0xe7, 0x9d, 0x96, 0x7d, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, 0x0f, 0x3e, 0xed, 0x28, + 0x9f, 0xa6, 0x65, 0x1f, 0x46, 0x0d, 0xa3, 0x2e, 0xa4, 0x24, 0x5a, 0xf6, 0x1d, 0x6b, 0xd9, 0x9f, + 0x74, 0x82, 0x97, 0xa5, 0x63, 0x7f, 0xa3, 0xc0, 0xba, 0xab, 0xad, 0xb3, 0x85, 0xd3, 0xd5, 0x8a, + 0xca, 0x3c, 0x86, 0x64, 0xd8, 0x4e, 0xe3, 0x8c, 0x81, 0x35, 0x27, 0x0f, 0xd9, 0xc8, 0x9e, 0xd1, + 0x6f, 0x65, 0x4f, 0xe6, 0xef, 0x5f, 0xf5, 0xfd, 0x56, 0x18, 0x26, 0xef, 0x47, 0x0f, 0xe3, 0xd7, + 0x2e, 0xa3, 0xd3, 0xe0, 0x32, 0xf2, 0x0f, 0x5f, 0x7d, 0xec, 0xc7, 0x8d, 0xfe, 0xcd, 0xee, 0xd1, + 0x74, 0xfd, 0xfe, 0x24, 0x6e, 0x74, 0x38, 0x5e, 0xfe, 0x46, 0x31, 0x55, 0x5f, 0xe6, 0x93, 0x85, + 0x0e, 0x93, 0xd6, 0x21, 0x2a, 0xc2, 0xe1, 0x11, 0x3c, 0x2f, 0x79, 0x9f, 0x13, 0x99, 0xb3, 0x91, + 0xbf, 0xe6, 0x0a, 0x68, 0x6d, 0xe5, 0xce, 0xab, 0x1b, 0xc6, 0x93, 0xdd, 0x90, 0xd2, 0xdc, 0x59, + 0x68, 0xe9, 0x01, 0x99, 0x42, 0xe7, 0x51, 0x76, 0xf8, 0x8b, 0x78, 0x42, 0x40, 0x23, 0xf0, 0xaf, + 0x17, 0xe0, 0xd7, 0x0a, 0xe4, 0xab, 0x07, 0xec, 0xd5, 0x03, 0xf3, 0xaa, 0x01, 0xf8, 0x62, 0x21, + 0xb0, 0xf4, 0x70, 0x95, 0xca, 0x82, 0x4f, 0x28, 0xae, 0xca, 0x77, 0xba, 0xbe, 0xb4, 0x3c, 0x51, + 0xa5, 0x89, 0x59, 0x6a, 0xd9, 0x54, 0xcd, 0xec, 0xa9, 0x7e, 0xb6, 0x54, 0x3b, 0x3b, 0x6a, 0x96, + 0x0d, 0x35, 0xcb, 0x7e, 0x9a, 0x64, 0x3b, 0x8b, 0x1d, 0x4b, 0xd0, 0x9a, 0x70, 0x55, 0x69, 0x4f, + 0x6d, 0x88, 0xf2, 0x04, 0xc3, 0x4c, 0x6e, 0xc9, 0x47, 0x18, 0x6e, 0x32, 0xc2, 0xb0, 0xf8, 0x06, + 0xdb, 0xdc, 0x70, 0x9b, 0x1b, 0x70, 0x53, 0x43, 0xae, 0x63, 0xd0, 0x95, 0x0c, 0xbb, 0xba, 0x81, + 0x9f, 0x09, 0x64, 0x84, 0x21, 0x35, 0x8f, 0xcf, 0xca, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, + 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, 0x2e, 0x88, 0x28, 0x83, 0xc9, 0x6c, 0x87, 0x19, 0x61, 0xc8, + 0x08, 0x43, 0xcd, 0x07, 0xa7, 0xde, 0x71, 0xbe, 0x0c, 0xea, 0x1d, 0xad, 0xcd, 0xdf, 0xa2, 0x6a, + 0x52, 0xef, 0xb8, 0xa4, 0x9a, 0x8c, 0x30, 0xb4, 0x76, 0x08, 0xec, 0xa4, 0xd2, 0x48, 0xb8, 0xba, + 0xda, 0x32, 0xc2, 0x70, 0x16, 0xbd, 0x60, 0x84, 0x21, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x87, 0xca, + 0x97, 0x96, 0xca, 0x33, 0xc2, 0xb0, 0x14, 0x4e, 0x0b, 0x23, 0x0c, 0x71, 0x17, 0x70, 0x17, 0x70, + 0x17, 0x70, 0x17, 0x70, 0x17, 0x24, 0xcf, 0x3b, 0x23, 0x0c, 0x19, 0x61, 0x68, 0x60, 0x5a, 0x18, + 0x61, 0x38, 0x5f, 0x06, 0x29, 0x08, 0x6b, 0x3b, 0xbc, 0xa8, 0x9a, 0x8c, 0x30, 0x44, 0x35, 0x5d, + 0x71, 0x48, 0xec, 0xa4, 0x92, 0x79, 0x58, 0x5d, 0x6d, 0x19, 0x61, 0x08, 0xa9, 0x87, 0xd4, 0x43, + 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0xce, 0x08, 0x43, 0xf8, 0xb4, 0x1d, 0x69, 0xa1, 0xa4, + 0x0f, 0x3e, 0xed, 0x28, 0x9f, 0x66, 0x84, 0x21, 0x8c, 0x1a, 0x46, 0x5d, 0x48, 0x49, 0x8c, 0x30, + 0xb4, 0x9a, 0x6c, 0x95, 0x8d, 0x2a, 0x5a, 0x1c, 0x60, 0x98, 0x35, 0x82, 0x97, 0x65, 0x82, 0xa1, + 0xca, 0x8c, 0xbb, 0x20, 0x0d, 0xf5, 0x3b, 0xf6, 0x27, 0x62, 0x4b, 0xde, 0xb0, 0x5f, 0xa5, 0x61, + 0xbf, 0x3c, 0xc1, 0x1b, 0x1a, 0xf6, 0x69, 0xd8, 0xcf, 0x6d, 0x27, 0x69, 0xd8, 0xa7, 0x61, 0xbf, + 0x7c, 0xa0, 0x60, 0x0f, 0x0e, 0xd6, 0x20, 0xe1, 0x0c, 0x58, 0x38, 0x03, 0x1a, 0x4e, 0x80, 0x87, + 0x0d, 0xbb, 0xa6, 0x61, 0x5f, 0xdd, 0xba, 0xd3, 0xb0, 0xaf, 0xf8, 0xe0, 0x44, 0xf7, 0xe7, 0xcb, + 0x20, 0xba, 0x6f, 0x6d, 0xfe, 0x16, 0x55, 0x93, 0xe8, 0xfe, 0x92, 0x6a, 0xd2, 0xb0, 0x6f, 0xed, + 0x10, 0xd8, 0x49, 0xa5, 0x6c, 0x6e, 0x75, 0xb5, 0xa5, 0x61, 0x7f, 0x16, 0xbd, 0xa0, 0x61, 0x1f, + 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, 0x4b, 0x4b, 0xe5, 0x69, 0xd8, 0x2f, 0x85, 0xd3, 0x42, + 0xc3, 0x3e, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x02, 0xee, 0x82, 0xe4, 0x79, 0xa7, 0x61, + 0x9f, 0x86, 0x7d, 0x03, 0xd3, 0x42, 0xc3, 0xfe, 0x7c, 0x19, 0xa4, 0x20, 0xac, 0xed, 0xf0, 0xa2, + 0x6a, 0xd2, 0xb0, 0x8f, 0x6a, 0xba, 0xe2, 0x90, 0xd8, 0x49, 0x25, 0xf3, 0xb0, 0xba, 0xda, 0xd2, + 0xb0, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x21, 0xf5, 0x90, 0x7a, 0xcd, 0xf3, 0x4e, 0xc3, 0x3e, + 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, 0x07, 0x9f, 0x76, 0x94, 0x4f, 0xd3, 0xb0, 0x0f, 0xa3, 0x86, + 0x51, 0x17, 0x52, 0x12, 0x0d, 0xfb, 0x4e, 0x35, 0xec, 0x4f, 0xfa, 0xc0, 0xcb, 0xd2, 0xaf, 0xbf, + 0x51, 0x60, 0xcd, 0xd5, 0xd6, 0xd8, 0x82, 0x69, 0x6a, 0x45, 0x65, 0x16, 0x43, 0x32, 0x6c, 0xa7, + 0x71, 0xc6, 0xbe, 0x9a, 0x93, 0x47, 0x6c, 0x64, 0x4f, 0xe8, 0xb7, 0xb2, 0xe7, 0xf2, 0xf7, 0xaf, + 0xfa, 0x7e, 0x2b, 0x0c, 0x93, 0xf7, 0xa3, 0x47, 0xf1, 0x6b, 0x97, 0xd1, 0x69, 0x70, 0x19, 0xf9, + 0x87, 0xaf, 0x3e, 0xf6, 0xe3, 0x46, 0xff, 0x66, 0xf7, 0x7c, 0xb2, 0x7a, 0x7f, 0x12, 0x31, 0x3a, + 0x1c, 0x2f, 0x7e, 0xa3, 0x98, 0x6a, 0x2f, 0xf3, 0xc9, 0x42, 0x07, 0x49, 0xeb, 0x00, 0xb9, 0x7f, + 0x70, 0x04, 0xcf, 0x4a, 0xbe, 0x67, 0x44, 0xe6, 0x5c, 0xe4, 0xaf, 0xb5, 0x02, 0x1a, 0x5b, 0x19, + 0x24, 0x69, 0xe8, 0xf5, 0x7b, 0xdd, 0xa8, 0xfd, 0x75, 0xf4, 0xf2, 0xb6, 0xc5, 0x74, 0x76, 0x3e, + 0xf3, 0xe5, 0xbe, 0x44, 0xa1, 0x73, 0x28, 0x3b, 0xee, 0x45, 0x3c, 0x05, 0xa0, 0x11, 0xea, 0xd7, + 0x0b, 0xe9, 0x6b, 0x85, 0xee, 0xd5, 0x43, 0xf4, 0xea, 0xa1, 0x78, 0xd5, 0x90, 0x7b, 0xb1, 0x90, + 0x57, 0x7a, 0x9c, 0x4a, 0x65, 0xc1, 0x13, 0x14, 0x57, 0xe5, 0x3b, 0x7d, 0x5e, 0x5a, 0xfe, 0xa7, + 0xd2, 0x8c, 0x2c, 0xb5, 0xfc, 0xa9, 0x66, 0xbe, 0x54, 0x3f, 0x3f, 0xaa, 0x9d, 0x0f, 0x35, 0xcb, + 0x7f, 0x9a, 0xe5, 0x3b, 0x4d, 0xf2, 0x9b, 0xc5, 0x8e, 0x1f, 0x68, 0xcd, 0xb4, 0xaa, 0xb4, 0xa7, + 0x36, 0x44, 0x79, 0x66, 0x61, 0x26, 0xb7, 0xe4, 0x43, 0x0b, 0x37, 0x19, 0x5a, 0x58, 0x7c, 0x83, + 0x6d, 0x6e, 0xb8, 0xcd, 0x0d, 0xb8, 0xa9, 0x21, 0xd7, 0x31, 0xe8, 0x4a, 0x86, 0x5d, 0xdd, 0xc0, + 0xcf, 0x04, 0x32, 0xb4, 0x90, 0x2a, 0xc7, 0x67, 0xe5, 0x07, 0x07, 0x6b, 0x90, 0x70, 0x06, 0x2c, + 0x9c, 0x01, 0x0d, 0x27, 0xc0, 0x43, 0x17, 0x44, 0x94, 0xc1, 0x64, 0xb6, 0xc3, 0x0c, 0x2d, 0x64, + 0x68, 0xa1, 0xe6, 0x83, 0x53, 0xe1, 0x38, 0x5f, 0x06, 0x15, 0x8e, 0xd6, 0xe6, 0x6f, 0x51, 0x35, + 0xa9, 0x70, 0x5c, 0x52, 0x4d, 0x86, 0x16, 0x5a, 0x3b, 0x04, 0x76, 0x52, 0x69, 0x1d, 0x5c, 0x5d, + 0x6d, 0x19, 0x5a, 0x38, 0x8b, 0x5e, 0x30, 0xb4, 0x10, 0x2a, 0x0f, 0x95, 0x87, 0xca, 0x43, 0xe5, + 0x4b, 0x4b, 0xe5, 0x19, 0x5a, 0x58, 0x0a, 0xa7, 0x85, 0xa1, 0x85, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, + 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0x92, 0xe7, 0x9d, 0xa1, 0x85, 0x0c, 0x2d, 0x34, 0x30, 0x2d, 0x0c, + 0x2d, 0x9c, 0x2f, 0x83, 0x14, 0x84, 0xb5, 0x1d, 0x5e, 0x54, 0x4d, 0x86, 0x16, 0xa2, 0x9a, 0xae, + 0x38, 0x24, 0x76, 0x52, 0xc9, 0x3c, 0xac, 0xae, 0xb6, 0x0c, 0x2d, 0x84, 0xd4, 0x43, 0xea, 0x21, + 0xf5, 0x90, 0x7a, 0x48, 0xbd, 0xe6, 0x79, 0x67, 0x68, 0x21, 0x7c, 0xda, 0x8e, 0xb4, 0x50, 0xd2, + 0x07, 0x9f, 0x76, 0x94, 0x4f, 0x33, 0xb4, 0x10, 0x46, 0x0d, 0xa3, 0x2e, 0xa4, 0x24, 0x86, 0x16, + 0xaa, 0x4e, 0xb4, 0xba, 0x3f, 0xa8, 0x68, 0x71, 0x64, 0x61, 0xd6, 0x06, 0x5e, 0x96, 0x99, 0x85, + 0x2a, 0x73, 0xed, 0x82, 0x34, 0xd4, 0xef, 0xd7, 0x9f, 0x88, 0x2d, 0x79, 0xbb, 0x7e, 0x95, 0x76, + 0xfd, 0xf2, 0x84, 0x6e, 0x68, 0xd7, 0xa7, 0x5d, 0x3f, 0xb7, 0x9d, 0xa4, 0x5d, 0x9f, 0x76, 0xfd, + 0xf2, 0x81, 0x82, 0x3d, 0x38, 0x58, 0x83, 0x84, 0x33, 0x60, 0xe1, 0x0c, 0x68, 0x38, 0x01, 0x1e, + 0x36, 0xdc, 0x9a, 0x76, 0x7d, 0x75, 0xeb, 0x4e, 0xbb, 0xbe, 0xe2, 0x83, 0x13, 0xdb, 0x9f, 0x2f, + 0x83, 0xd8, 0xbe, 0xb5, 0xf9, 0x5b, 0x54, 0x4d, 0x62, 0xfb, 0x4b, 0xaa, 0x49, 0xbb, 0xbe, 0xb5, + 0x43, 0x60, 0x27, 0x95, 0xa2, 0xb9, 0xd5, 0xd5, 0x96, 0x76, 0xfd, 0x59, 0xf4, 0x82, 0x76, 0x7d, + 0xa8, 0x3c, 0x54, 0x1e, 0x2a, 0x0f, 0x95, 0x2f, 0x2d, 0x95, 0xa7, 0x5d, 0xbf, 0x14, 0x4e, 0x0b, + 0xed, 0xfa, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0x92, 0xe7, 0x9d, 0x76, + 0x7d, 0xda, 0xf5, 0x0d, 0x4c, 0x0b, 0xed, 0xfa, 0xf3, 0x65, 0x90, 0x82, 0xb0, 0xb6, 0xc3, 0x8b, + 0xaa, 0x49, 0xbb, 0x3e, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0x4b, + 0xbb, 0x3e, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x43, 0xea, 0x35, 0xcf, 0x3b, 0xed, 0xfa, + 0xf0, 0x69, 0x3b, 0xd2, 0x42, 0x49, 0x1f, 0x7c, 0xda, 0x51, 0x3e, 0x4d, 0xbb, 0x3e, 0x8c, 0x1a, + 0x46, 0x5d, 0x48, 0x49, 0xb4, 0xeb, 0x3b, 0xd4, 0xae, 0x3f, 0xe9, 0x02, 0x2f, 0x4b, 0xb7, 0xfe, + 0x46, 0x81, 0xf5, 0x56, 0x5b, 0x5f, 0x0b, 0xa5, 0xa7, 0x15, 0x95, 0x39, 0x0c, 0xc9, 0xb0, 0x9d, + 0xc6, 0x19, 0xf3, 0x6a, 0x4e, 0x1e, 0xb0, 0x91, 0x3d, 0x9f, 0xdf, 0xca, 0x9e, 0xca, 0xdf, 0xbf, + 0xea, 0xfb, 0xad, 0x30, 0x4c, 0xde, 0x8f, 0x1e, 0xc4, 0xaf, 0x5d, 0x46, 0xa7, 0xc1, 0x65, 0xe4, + 0x9f, 0x26, 0x69, 0xd8, 0x1a, 0x2f, 0xbe, 0xd1, 0xbf, 0xd9, 0xf6, 0x27, 0xb1, 0xa2, 0xc3, 0xf1, + 0xd2, 0x37, 0x8a, 0xa9, 0xf2, 0x32, 0x9f, 0x2c, 0x74, 0x88, 0xb4, 0x0e, 0x8f, 0xeb, 0x87, 0x46, + 0xf0, 0x9c, 0xe4, 0x79, 0x3e, 0x64, 0xce, 0x44, 0xfe, 0x1a, 0x2b, 0xa0, 0xad, 0x95, 0x7b, 0xaf, + 0x6c, 0x57, 0x4c, 0x5f, 0xe7, 0x93, 0x5e, 0xee, 0x4b, 0x14, 0x3a, 0x83, 0xb2, 0x43, 0x5e, 0xc4, + 0x03, 0xff, 0x1a, 0x01, 0x7e, 0xbd, 0x40, 0xbe, 0x56, 0xc0, 0x5e, 0x3d, 0x30, 0xaf, 0x1e, 0x80, + 0x57, 0x0d, 0xb4, 0x17, 0x0b, 0x75, 0xa5, 0x87, 0xa8, 0x54, 0x16, 0x7c, 0x40, 0x71, 0x55, 0xbe, + 0xd3, 0xdd, 0xa5, 0xe5, 0x79, 0x2a, 0x4d, 0xc6, 0x52, 0xcb, 0x9a, 0x6a, 0x66, 0x49, 0xf5, 0xb3, + 0xa2, 0xda, 0x59, 0x50, 0xb3, 0xac, 0xa7, 0x59, 0x96, 0xd3, 0x24, 0xab, 0x59, 0xec, 0xb8, 0x81, + 0xd6, 0x24, 0xab, 0x4a, 0x7b, 0x6a, 0x43, 0x94, 0x27, 0x15, 0x66, 0x72, 0x4b, 0x3e, 0xaa, 0x70, + 0x93, 0x51, 0x85, 0xc5, 0x37, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0x72, 0x1d, 0x83, + 0xae, 0x64, 0xd8, 0xd5, 0x0d, 0xfc, 0x4c, 0x20, 0xa3, 0x0a, 0xa9, 0x6d, 0x7c, 0x56, 0x7e, 0x70, + 0xb0, 0x06, 0x09, 0x67, 0xc0, 0xc2, 0x19, 0xd0, 0x70, 0x02, 0x3c, 0x74, 0x41, 0x44, 0x19, 0x4c, + 0x66, 0x3b, 0xcc, 0xa8, 0x42, 0x46, 0x15, 0x6a, 0x3e, 0x38, 0x75, 0x8d, 0xf3, 0x65, 0x50, 0xd7, + 0x68, 0x6d, 0xfe, 0x16, 0x55, 0x93, 0xba, 0xc6, 0x25, 0xd5, 0x64, 0x54, 0xa1, 0xb5, 0x43, 0x60, + 0x27, 0x95, 0x86, 0xc1, 0xd5, 0xd5, 0x96, 0x51, 0x85, 0xb3, 0xe8, 0x05, 0xa3, 0x0a, 0xa1, 0xf2, + 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x51, 0x85, 0xa5, 0x70, 0x5a, 0x18, 0x55, + 0x88, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x80, 0xbb, 0x20, 0x79, 0xde, 0x19, 0x55, 0xc8, + 0xa8, 0x42, 0x03, 0xd3, 0xc2, 0xa8, 0xc2, 0xf9, 0x32, 0x48, 0x41, 0x58, 0xdb, 0xe1, 0x45, 0xd5, + 0x64, 0x54, 0x21, 0xaa, 0xe9, 0x8a, 0x43, 0x62, 0x27, 0x95, 0xcc, 0xc3, 0xea, 0x6a, 0xcb, 0xa8, + 0x42, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0x87, 0xd4, 0x6b, 0x9e, 0x77, 0x46, 0x15, 0xc2, + 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0xa3, 0x0a, 0x61, 0xd4, 0x30, + 0xea, 0x42, 0x4a, 0x62, 0x54, 0xa1, 0xe5, 0x34, 0xab, 0xdd, 0xc5, 0x51, 0x85, 0x59, 0x1b, 0x78, + 0x59, 0x66, 0x15, 0xaa, 0x4c, 0xb4, 0x0b, 0xd2, 0x50, 0xbf, 0x5f, 0x7f, 0x22, 0xb6, 0xe4, 0xed, + 0xfa, 0x55, 0xda, 0xf5, 0xcb, 0x13, 0xba, 0xa1, 0x5d, 0x9f, 0x76, 0xfd, 0xdc, 0x76, 0x92, 0x76, + 0x7d, 0xda, 0xf5, 0xcb, 0x07, 0x0a, 0xf6, 0xe0, 0x60, 0x0d, 0x12, 0xce, 0x80, 0x85, 0x33, 0xa0, + 0xe1, 0x04, 0x78, 0xd8, 0x70, 0x6b, 0xda, 0xf5, 0xd5, 0xad, 0x3b, 0xed, 0xfa, 0x8a, 0x0f, 0x4e, + 0x6c, 0x7f, 0xbe, 0x0c, 0x62, 0xfb, 0xd6, 0xe6, 0x6f, 0x51, 0x35, 0x89, 0xed, 0x2f, 0xa9, 0x26, + 0xed, 0xfa, 0xd6, 0x0e, 0x81, 0x9d, 0x54, 0x8a, 0xe6, 0x56, 0x57, 0x5b, 0xda, 0xf5, 0x67, 0xd1, + 0x0b, 0xda, 0xf5, 0xa1, 0xf2, 0x50, 0x79, 0xa8, 0x3c, 0x54, 0xbe, 0xb4, 0x54, 0x9e, 0x76, 0xfd, + 0x52, 0x38, 0x2d, 0xb4, 0xeb, 0xe3, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0xe0, 0x2e, 0x48, + 0x9e, 0x77, 0xda, 0xf5, 0x69, 0xd7, 0x37, 0x30, 0x2d, 0xb4, 0xeb, 0xcf, 0x97, 0x41, 0x0a, 0xc2, + 0xda, 0x0e, 0x2f, 0xaa, 0x26, 0xed, 0xfa, 0xa8, 0xa6, 0x2b, 0x0e, 0x89, 0x9d, 0x54, 0x32, 0x0f, + 0xab, 0xab, 0x2d, 0xed, 0xfa, 0x90, 0x7a, 0x48, 0x3d, 0xa4, 0x1e, 0x52, 0x0f, 0xa9, 0xd7, 0x3c, + 0xef, 0xb4, 0xeb, 0xc3, 0xa7, 0xed, 0x48, 0x0b, 0x25, 0x7d, 0xf0, 0x69, 0x47, 0xf9, 0x34, 0xed, + 0xfa, 0x30, 0x6a, 0x18, 0x75, 0x21, 0x25, 0xd1, 0xae, 0xef, 0x50, 0xbb, 0xfe, 0xa4, 0x0b, 0xbc, + 0x2c, 0xdd, 0xfa, 0x1b, 0x05, 0xd6, 0x5b, 0x6d, 0x7d, 0x2d, 0x94, 0x9e, 0x56, 0x54, 0xe6, 0x30, + 0x24, 0xc3, 0x76, 0x1a, 0x67, 0xcc, 0xab, 0x39, 0x79, 0xc0, 0x46, 0xf6, 0x7c, 0x7e, 0x2b, 0x7b, + 0x2a, 0x7f, 0xff, 0xaa, 0xef, 0xb7, 0xc2, 0x30, 0x79, 0x3f, 0x7a, 0x10, 0xbf, 0x76, 0x19, 0x9d, + 0x06, 0x97, 0x91, 0x7f, 0x9a, 0xa4, 0x61, 0x6b, 0xbc, 0xf8, 0x46, 0xff, 0x66, 0xd7, 0x9f, 0xc4, + 0x8a, 0x0e, 0xc7, 0x4b, 0xdf, 0x28, 0xa6, 0xca, 0xcb, 0x7c, 0xb2, 0xd0, 0x21, 0xd2, 0x3a, 0x3c, + 0xae, 0x1f, 0x1a, 0xc1, 0x73, 0x92, 0xe7, 0xf9, 0x90, 0x39, 0x13, 0xf9, 0x6b, 0xac, 0x80, 0xb6, + 0x0a, 0x8f, 0x7b, 0x51, 0x19, 0xef, 0x22, 0x3c, 0xce, 0x45, 0x7c, 0x7c, 0x8b, 0x46, 0x28, 0x5f, + 0x2f, 0x64, 0xaf, 0x15, 0x9a, 0x57, 0x0f, 0xc1, 0xab, 0x87, 0xda, 0x55, 0x43, 0xea, 0xc5, 0xc2, + 0x57, 0xe9, 0x71, 0x29, 0x95, 0x29, 0xa4, 0x79, 0x19, 0xc0, 0x08, 0xeb, 0xf2, 0xf4, 0x74, 0x2e, + 0x8a, 0x15, 0x56, 0x2f, 0x9d, 0xd8, 0x95, 0x5a, 0x86, 0x54, 0x33, 0x23, 0xaa, 0x9f, 0x01, 0xd5, + 0xce, 0x78, 0x9a, 0x65, 0x38, 0xcd, 0x32, 0x9a, 0x26, 0x19, 0xcc, 0x62, 0xc7, 0x08, 0xd4, 0x32, + 0x92, 0xb3, 0xf3, 0x16, 0x75, 0xc2, 0x38, 0x8d, 0xd2, 0xaf, 0x49, 0x78, 0xa9, 0x71, 0xe8, 0xa6, + 0x9e, 0xa5, 0x42, 0xce, 0xb1, 0xd2, 0xc8, 0x1e, 0x6d, 0x3f, 0x18, 0x18, 0xcc, 0x5f, 0xac, 0xbd, + 0x6b, 0xf8, 0xa7, 0xa3, 0xff, 0x39, 0xfb, 0xbd, 0x55, 0xd7, 0x3a, 0xea, 0xe3, 0xb4, 0xc5, 0x40, + 0x35, 0xaf, 0x6a, 0x54, 0x22, 0xd5, 0x68, 0x7d, 0xdc, 0xf6, 0xcf, 0x9b, 0x8d, 0x83, 0xda, 0xe9, + 0x59, 0xa5, 0x8c, 0x35, 0x69, 0x46, 0xfb, 0x7a, 0xd8, 0x68, 0xfe, 0xf3, 0xf4, 0xac, 0x76, 0x56, + 0x67, 0x53, 0xf3, 0xdb, 0xd4, 0xd3, 0x93, 0xb3, 0xba, 0xdf, 0x3a, 0x3e, 0x6c, 0x1c, 0xfc, 0xee, + 0x37, 0x5a, 0x1f, 0x77, 0xd9, 0xdb, 0x1c, 0x15, 0xf6, 0xd5, 0xc7, 0x56, 0x73, 0xbc, 0xab, 0x98, + 0x03, 0x81, 0xdd, 0xad, 0x8e, 0x76, 0xf7, 0x63, 0xeb, 0xf0, 0x94, 0x5d, 0x15, 0x30, 0xb2, 0xfe, + 0x69, 0xeb, 0x1d, 0x1b, 0x2b, 0xb1, 0xb1, 0x1f, 0x5b, 0x4d, 0x36, 0x36, 0x67, 0x77, 0xeb, 0xdd, + 0xe1, 0xf1, 0xbf, 0x4e, 0x5b, 0xf5, 0x03, 0x36, 0x56, 0x04, 0xbe, 0x8e, 0xce, 0x0f, 0xcf, 0x00, + 0xb0, 0x9c, 0xf7, 0xf7, 0x63, 0xab, 0x89, 0xe6, 0xca, 0x6a, 0xee, 0x36, 0x9a, 0x2b, 0x64, 0x72, + 0x77, 0xfd, 0xc3, 0xda, 0x7e, 0xfd, 0xb0, 0xfe, 0x16, 0xd7, 0x56, 0x54, 0x7f, 0xd9, 0x5d, 0x19, + 0x87, 0x01, 0xed, 0x95, 0xb5, 0x0e, 0xec, 0xab, 0x74, 0xa8, 0x66, 0x9b, 0xbd, 0xcd, 0x3b, 0x98, + 0x50, 0xd7, 0xa5, 0x66, 0x2a, 0x92, 0x2e, 0x8a, 0x9e, 0xd7, 0xda, 0x28, 0xa0, 0x56, 0x57, 0xc2, + 0x38, 0xf8, 0xdc, 0x0d, 0x3b, 0x7a, 0xd5, 0x04, 0x53, 0x81, 0xc2, 0x59, 0x40, 0xe5, 0xe9, 0xaf, + 0xd4, 0x2d, 0xe4, 0xa0, 0x1a, 0xd4, 0x2d, 0xe4, 0x2e, 0x98, 0xba, 0x85, 0xa2, 0xf8, 0x16, 0x06, + 0x75, 0x0b, 0x7a, 0xd3, 0x53, 0x95, 0xa6, 0xa5, 0x52, 0xe9, 0x9f, 0x1d, 0xbe, 0x35, 0xad, 0xf4, + 0x97, 0x6b, 0xd4, 0x2a, 0x46, 0xdd, 0xfc, 0x70, 0x10, 0x7a, 0xd7, 0xc3, 0x6e, 0x1a, 0xf5, 0xbb, + 0xa1, 0x37, 0x7a, 0x2d, 0x03, 0xf9, 0x22, 0xfa, 0x07, 0x64, 0x16, 0xbc, 0xa2, 0x7e, 0x93, 0x8a, + 0x7a, 0x77, 0x5c, 0x28, 0x2a, 0xea, 0xd7, 0x18, 0xc7, 0xc4, 0x2b, 0xea, 0xdb, 0xd3, 0x33, 0xaf, + 0x44, 0x7e, 0x33, 0x79, 0x3a, 0x5c, 0x74, 0x0b, 0x2e, 0x0a, 0x17, 0x85, 0x8b, 0xc2, 0x45, 0xdd, + 0x33, 0xbc, 0x33, 0x41, 0x5a, 0xe1, 0xc7, 0xa5, 0xf3, 0xad, 0x13, 0x86, 0x9c, 0x6f, 0xa8, 0xcd, + 0x65, 0x54, 0xca, 0xa3, 0x80, 0xd4, 0x07, 0x4f, 0x5a, 0x0c, 0x9c, 0xb4, 0x1b, 0x34, 0x69, 0x35, + 0x60, 0xd2, 0x7c, 0xb0, 0xa4, 0xf9, 0x40, 0x49, 0xd3, 0x41, 0x92, 0xe5, 0x1a, 0x39, 0xa4, 0x3e, + 0x30, 0xd2, 0xf0, 0xb2, 0x28, 0xe5, 0x4b, 0xa2, 0x98, 0x1e, 0xf4, 0x9d, 0x43, 0xbc, 0xde, 0xd3, + 0x83, 0x96, 0x23, 0x75, 0x2f, 0x33, 0x3e, 0x4a, 0x5e, 0x7c, 0xd9, 0x31, 0x1d, 0x99, 0x78, 0xbd, + 0xa4, 0xb8, 0xbc, 0x23, 0x41, 0x54, 0x80, 0xa8, 0x00, 0x51, 0x01, 0xa2, 0x02, 0x45, 0x88, 0x0a, + 0x28, 0x85, 0x65, 0x97, 0x8e, 0xb7, 0x4a, 0x78, 0x56, 0xd9, 0x20, 0xc3, 0xcd, 0xe1, 0xe6, 0x70, + 0x73, 0xb8, 0xb9, 0x4b, 0x06, 0x7e, 0x26, 0x30, 0xe8, 0x76, 0x7b, 0x7f, 0xce, 0x49, 0x49, 0x30, + 0xb0, 0xbb, 0x2f, 0x68, 0x79, 0x29, 0xca, 0x6a, 0x6c, 0x14, 0x22, 0xbe, 0x0f, 0x47, 0xdc, 0x55, + 0x54, 0x66, 0x98, 0xb2, 0x86, 0x2b, 0x67, 0x60, 0xcb, 0x19, 0xf8, 0x72, 0x02, 0xc6, 0x74, 0xe1, + 0x4c, 0x19, 0xd6, 0x66, 0x3b, 0x6c, 0x7f, 0x57, 0x91, 0x7e, 0x08, 0x7a, 0x89, 0x6d, 0x6c, 0x71, + 0xd5, 0xe1, 0xca, 0x7b, 0x79, 0x1d, 0xfc, 0x15, 0x5d, 0x0f, 0xaf, 0x85, 0x4b, 0x2c, 0xbf, 0xab, + 0x4d, 0x8b, 0xcb, 0xb0, 0x73, 0x57, 0xb6, 0x70, 0x55, 0x70, 0x55, 0x70, 0x55, 0x70, 0x55, 0x70, + 0x55, 0xca, 0xe3, 0xaa, 0x0c, 0xa3, 0x38, 0x7d, 0x55, 0x35, 0xf4, 0x54, 0x5e, 0x73, 0xa5, 0xa2, + 0xde, 0x83, 0x73, 0xa5, 0xe2, 0x7c, 0x19, 0x5c, 0xa9, 0x68, 0x6d, 0xfe, 0x16, 0x55, 0x93, 0x2b, + 0x15, 0x97, 0x54, 0x73, 0xbb, 0xba, 0xb7, 0xbd, 0xb7, 0xfb, 0xba, 0xba, 0xb7, 0x83, 0x8e, 0xda, + 0x38, 0x04, 0x76, 0x52, 0xb9, 0x59, 0xb1, 0x00, 0x96, 0x8c, 0x9b, 0x15, 0x1f, 0xad, 0x39, 0x0b, + 0x47, 0x9f, 0xa0, 0x51, 0x78, 0xa6, 0xa7, 0x58, 0xb7, 0x2a, 0x57, 0xef, 0x49, 0xde, 0x89, 0xf5, + 0x28, 0x0d, 0x90, 0xbc, 0x23, 0xeb, 0x31, 0x94, 0x55, 0xaf, 0x88, 0xa8, 0x52, 0x11, 0x51, 0x9e, + 0xb8, 0x0d, 0x15, 0x11, 0x54, 0x44, 0xe4, 0xb6, 0x93, 0x54, 0x44, 0x50, 0x11, 0x41, 0x9a, 0xa1, + 0xcc, 0x30, 0x65, 0x0d, 0x57, 0xce, 0xc0, 0x96, 0x33, 0xf0, 0xe5, 0x04, 0x8c, 0xd9, 0xf0, 0x7b, + 0x2a, 0x22, 0xf4, 0xcd, 0x3b, 0x15, 0x11, 0x39, 0xec, 0x25, 0x15, 0x11, 0x54, 0x44, 0xe0, 0xaa, + 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0x94, 0xd5, 0x55, 0xa1, 0x22, 0x42, 0xfd, 0x8b, 0x8a, 0x08, + 0x2a, 0x22, 0xee, 0xac, 0x83, 0x8a, 0x88, 0x67, 0x54, 0x44, 0x3c, 0xac, 0x9a, 0x54, 0x44, 0x58, + 0x3b, 0x04, 0x76, 0x52, 0xa9, 0x88, 0x28, 0x80, 0x25, 0xa3, 0x22, 0xe2, 0x7f, 0x57, 0x44, 0x08, + 0x0e, 0x2f, 0xd7, 0xd7, 0x2b, 0xe6, 0x44, 0x95, 0x4f, 0x43, 0x2b, 0x2a, 0x45, 0x2e, 0xc9, 0xb0, + 0x9d, 0xc6, 0x19, 0xe1, 0x6a, 0x4e, 0x1e, 0xad, 0x91, 0x3d, 0x99, 0xdf, 0xca, 0x9e, 0xc7, 0xdf, + 0xbf, 0xea, 0xfb, 0xad, 0x30, 0x4c, 0xde, 0x8f, 0x1e, 0xc1, 0xaf, 0x5d, 0x46, 0xa7, 0xc1, 0x65, + 0xe4, 0x9f, 0x0f, 0xc2, 0xa3, 0x6c, 0xd9, 0xad, 0xd1, 0xaa, 0xfd, 0xba, 0x38, 0x0d, 0x2f, 0xe6, + 0x6c, 0xab, 0x48, 0x75, 0xb6, 0x55, 0xc4, 0x6c, 0xab, 0x27, 0x0b, 0x62, 0xb6, 0x55, 0xae, 0xda, + 0xc1, 0x6c, 0x2b, 0x66, 0x5b, 0x7d, 0x67, 0xc7, 0x98, 0x6d, 0x55, 0x40, 0x83, 0xac, 0x6e, 0x98, + 0x2d, 0x0c, 0xb4, 0x9d, 0xa1, 0xb6, 0x32, 0xd8, 0xe6, 0x86, 0xdb, 0xdc, 0x80, 0x9b, 0x1a, 0xf2, + 0x72, 0x86, 0x1f, 0xd4, 0x2b, 0x39, 0x29, 0x89, 0xa0, 0x24, 0x42, 0x53, 0x30, 0x25, 0x11, 0x94, + 0x44, 0x50, 0x12, 0x61, 0x01, 0x61, 0xca, 0x50, 0x36, 0xdb, 0x61, 0x4a, 0x22, 0x28, 0x89, 0xd0, + 0x7c, 0x70, 0x4a, 0x22, 0xe6, 0xcb, 0xa0, 0x24, 0xc2, 0xda, 0xfc, 0x2d, 0xaa, 0x26, 0x25, 0x11, + 0x4b, 0xaa, 0x49, 0x49, 0x84, 0xb5, 0x43, 0x60, 0x27, 0x95, 0x92, 0x88, 0x22, 0xc4, 0x24, 0x28, + 0x89, 0x78, 0x2c, 0xe1, 0x1c, 0x31, 0x24, 0xe2, 0xa7, 0x5e, 0x2c, 0x43, 0x22, 0xc4, 0xe2, 0x39, + 0x0c, 0x89, 0x28, 0x51, 0xdc, 0x86, 0xd4, 0x02, 0xa9, 0x85, 0xdc, 0x76, 0x92, 0xd4, 0x02, 0xa9, + 0x05, 0x55, 0x28, 0x22, 0xb5, 0xa0, 0xb9, 0x02, 0x52, 0x0b, 0x8e, 0x40, 0x96, 0x13, 0xd0, 0x65, + 0xc3, 0xe9, 0x49, 0x2d, 0xa8, 0x5b, 0x77, 0x52, 0x0b, 0x8a, 0x0f, 0x4e, 0x6a, 0x61, 0xbe, 0x0c, + 0x52, 0x0b, 0xd6, 0xe6, 0x6f, 0x51, 0x35, 0x49, 0x2d, 0x2c, 0xa9, 0x26, 0xa9, 0x05, 0x6b, 0x87, + 0xc0, 0x4e, 0x2a, 0xa9, 0x85, 0x22, 0xc4, 0x24, 0x48, 0x2d, 0xfc, 0xcf, 0xd4, 0x02, 0xdd, 0x96, + 0xae, 0x68, 0x2c, 0xdd, 0x96, 0x0f, 0x6a, 0x68, 0xf1, 0xba, 0x2d, 0x1b, 0x74, 0x5b, 0x3e, 0xb2, + 0xcb, 0x1a, 0x39, 0x39, 0xd5, 0x5c, 0x9c, 0x7a, 0xbf, 0x65, 0x95, 0x7e, 0xcb, 0x15, 0x24, 0xd2, + 0x6f, 0x29, 0xee, 0x6d, 0xd1, 0x6f, 0xf9, 0xc4, 0x1d, 0x53, 0xeb, 0xb7, 0x0c, 0xe3, 0xe0, 0x73, + 0x37, 0xec, 0xe8, 0x17, 0x45, 0x4c, 0x05, 0x6b, 0x25, 0x21, 0x6d, 0x86, 0xa5, 0x2b, 0x47, 0x26, + 0xe8, 0xf4, 0x2c, 0x15, 0x54, 0x98, 0x43, 0x86, 0x39, 0x74, 0x98, 0x42, 0x48, 0x39, 0x43, 0x1f, + 0xea, 0xb9, 0x2b, 0xc3, 0x61, 0xe6, 0xca, 0x43, 0xcc, 0x89, 0x65, 0x10, 0xcb, 0x78, 0x5a, 0x2c, + 0x43, 0x21, 0xd0, 0x26, 0x18, 0x16, 0xd8, 0x28, 0x90, 0x12, 0x6a, 0x29, 0x9f, 0xfb, 0x4a, 0x57, + 0x11, 0x8d, 0xe6, 0xe4, 0x18, 0x33, 0x93, 0x39, 0x17, 0xf9, 0x6b, 0x6d, 0xbe, 0x9f, 0x98, 0xb3, + 0xfe, 0x8f, 0x7c, 0xc7, 0xf1, 0x75, 0x55, 0x99, 0x42, 0x78, 0xe3, 0x97, 0x93, 0xb3, 0x8c, 0xc3, + 0x68, 0x90, 0xd6, 0xd2, 0x54, 0x86, 0xb3, 0x56, 0x8e, 0xa2, 0xb8, 0xde, 0x0d, 0x47, 0xde, 0xdf, + 0xa0, 0xf2, 0xe6, 0x59, 0x3c, 0xec, 0x76, 0x5f, 0x08, 0x08, 0x09, 0xfe, 0x92, 0x17, 0x72, 0x9c, + 0x74, 0xc2, 0x24, 0xec, 0xec, 0x7f, 0xcd, 0x44, 0x38, 0xad, 0x38, 0xc2, 0x06, 0xd3, 0x31, 0x43, + 0x29, 0x60, 0x15, 0x57, 0xb2, 0x86, 0xf9, 0x1a, 0xbf, 0xfc, 0x4c, 0x54, 0x3e, 0x9f, 0x94, 0x93, + 0xae, 0x4a, 0xe9, 0xa8, 0x1b, 0xba, 0x99, 0x8f, 0x0a, 0xac, 0xfe, 0xc2, 0x72, 0x78, 0x59, 0x95, + 0xa0, 0xdf, 0xef, 0x7e, 0xf5, 0xfa, 0xbd, 0x6e, 0xd4, 0xfe, 0x9a, 0xdb, 0xab, 0x9a, 0xdf, 0xc5, + 0x78, 0xf7, 0xd3, 0x73, 0x52, 0xad, 0x7c, 0x93, 0x38, 0xb9, 0x47, 0xe6, 0x24, 0x22, 0x6f, 0x77, + 0x23, 0x6b, 0x49, 0xbf, 0xd7, 0xcd, 0xd1, 0x26, 0x4a, 0x85, 0xce, 0xc4, 0x43, 0x63, 0xe2, 0xa1, + 0xaf, 0xfb, 0xa1, 0xad, 0xf1, 0xc6, 0x97, 0xd4, 0x5c, 0xe7, 0x9d, 0xd6, 0x90, 0x1a, 0x17, 0x29, + 0x3b, 0x16, 0x52, 0x28, 0x3f, 0x2c, 0x16, 0xfc, 0x97, 0x0c, 0xf2, 0x0b, 0x9a, 0x1c, 0x69, 0xd3, + 0xa3, 0x66, 0x82, 0xd4, 0x4c, 0x91, 0x8e, 0x49, 0x2a, 0x06, 0x6d, 0x96, 0xca, 0xc0, 0x56, 0x3a, + 0x93, 0x4c, 0xa4, 0x17, 0xfe, 0xd5, 0xef, 0x25, 0x69, 0xde, 0x2e, 0xd1, 0xa3, 0xe7, 0xeb, 0x61, + 0xb1, 0x42, 0xfa, 0x73, 0x27, 0xdb, 0x7a, 0x52, 0xff, 0xbf, 0xfa, 0xc1, 0x99, 0x7f, 0x72, 0x7c, + 0x7e, 0x56, 0x97, 0x12, 0x27, 0x9b, 0x64, 0x15, 0x4f, 0xaa, 0x6a, 0x24, 0x51, 0x15, 0xec, 0xac, + 0x96, 0xbd, 0x55, 0xb7, 0xbb, 0xea, 0xf6, 0x57, 0xd7, 0x0e, 0xcb, 0xd8, 0x63, 0x21, 0xbb, 0x3c, + 0xdb, 0x1a, 0xf1, 0x34, 0xe6, 0x92, 0xe5, 0x9c, 0x98, 0x4c, 0x2f, 0x1d, 0x09, 0x16, 0x3c, 0x3d, + 0x53, 0xe7, 0x70, 0x5b, 0x50, 0x46, 0x3d, 0x1e, 0x5e, 0x8f, 0x36, 0xef, 0xb6, 0x28, 0x11, 0xf6, + 0x17, 0x72, 0x38, 0x1c, 0x5d, 0x9b, 0xe0, 0xf0, 0xa2, 0x58, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, + 0x61, 0x70, 0x18, 0x1c, 0x5e, 0x33, 0x1c, 0x56, 0xe6, 0xc1, 0x2a, 0xfc, 0x17, 0x20, 0x04, 0x08, + 0x01, 0x42, 0x80, 0x50, 0xe6, 0xc4, 0x74, 0xc3, 0xe0, 0x32, 0x09, 0x2f, 0x35, 0xc0, 0x4f, 0x70, + 0xca, 0x4b, 0xa5, 0x35, 0xcb, 0xae, 0x4f, 0x14, 0xe9, 0x4d, 0xd2, 0x1b, 0xa6, 0x51, 0x7c, 0x95, + 0xd9, 0xe6, 0xd9, 0x8f, 0x33, 0xbc, 0xef, 0x84, 0x97, 0x51, 0x1c, 0xa5, 0x51, 0x2f, 0x1e, 0x3c, + 0xfe, 0x4f, 0xb3, 0x7f, 0x19, 0x17, 0x5d, 0x14, 0x4a, 0x7f, 0x44, 0x6b, 0xa8, 0x66, 0x52, 0x34, + 0x6a, 0xa9, 0xe6, 0xc2, 0x14, 0x6a, 0xaa, 0x66, 0xc2, 0xee, 0xd6, 0x56, 0x29, 0x35, 0x93, 0x0e, + 0x07, 0x61, 0x22, 0x6d, 0xe2, 0x15, 0x5b, 0x4e, 0xee, 0xe2, 0x57, 0x6f, 0xb2, 0x9b, 0xde, 0xe7, + 0xaf, 0x1a, 0x2d, 0x98, 0x16, 0xed, 0x25, 0x0b, 0x58, 0x36, 0x7e, 0x93, 0x94, 0x61, 0x17, 0x8e, + 0x3c, 0x28, 0x07, 0xef, 0x54, 0x82, 0x76, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, + 0x80, 0x3c, 0x40, 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x81, 0x56, 0x29, 0xab, 0x76, + 0x94, 0x3b, 0xbd, 0x15, 0x22, 0x77, 0x0e, 0xe5, 0xd8, 0x9b, 0x94, 0x63, 0xbf, 0x82, 0xcc, 0x5c, + 0x32, 0xd1, 0x39, 0x64, 0xe2, 0x75, 0xe5, 0x55, 0xea, 0xca, 0x15, 0xd1, 0x95, 0xba, 0xf2, 0x32, + 0x42, 0x05, 0x75, 0xe5, 0xab, 0x6c, 0x1e, 0xf5, 0x6c, 0x44, 0xe2, 0x88, 0xc4, 0x11, 0x89, 0xa3, + 0x9e, 0xed, 0xa7, 0x9d, 0x43, 0xea, 0xd9, 0x44, 0x95, 0x88, 0xba, 0x72, 0x70, 0x18, 0x1c, 0x06, + 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x36, 0xc4, 0x61, 0xea, 0xca, 0x01, 0x42, 0x80, 0x10, 0x20, + 0x04, 0x08, 0x7f, 0xf4, 0xc4, 0x50, 0x1a, 0x42, 0x69, 0xc8, 0xcf, 0x4a, 0xa1, 0x34, 0x24, 0xc7, + 0x83, 0x48, 0x69, 0x48, 0x41, 0x71, 0xec, 0x19, 0xa5, 0x21, 0xe5, 0x20, 0x0f, 0xd4, 0x95, 0x43, + 0x1e, 0x20, 0x0f, 0x90, 0x07, 0xc8, 0x03, 0xe4, 0x01, 0xf2, 0x00, 0x79, 0x80, 0x3c, 0x40, 0x1e, + 0x20, 0x0f, 0x65, 0x24, 0x0f, 0xd4, 0x95, 0xbb, 0x50, 0x57, 0x2e, 0x70, 0x0f, 0x16, 0x57, 0x5e, + 0x14, 0x53, 0x17, 0x2a, 0xb9, 0x16, 0xf1, 0xff, 0xcc, 0x05, 0x2c, 0xa3, 0xc5, 0xb4, 0x26, 0x6b, + 0x29, 0xd3, 0x0d, 0x1c, 0x83, 0xf1, 0xf5, 0x5f, 0x5e, 0xaf, 0x3f, 0x76, 0x57, 0x05, 0x2e, 0xe1, + 0xb8, 0x27, 0x80, 0x7b, 0x38, 0xf2, 0x08, 0x43, 0xe4, 0x7b, 0xc3, 0x2d, 0xd7, 0x70, 0xfc, 0x68, + 0x14, 0x21, 0xd7, 0x1b, 0x66, 0xb9, 0x85, 0x63, 0xa5, 0x63, 0xc0, 0x2d, 0x1c, 0x8a, 0xdd, 0x52, + 0x32, 0x57, 0x6a, 0xd3, 0x2c, 0xe5, 0x94, 0x41, 0x2a, 0x06, 0xfd, 0x11, 0xeb, 0x95, 0x0a, 0xba, + 0xdd, 0xde, 0x9f, 0x5e, 0xef, 0xcf, 0xd8, 0x0b, 0x06, 0xf2, 0xd9, 0x9d, 0x05, 0x69, 0xf2, 0x15, + 0xd9, 0x9b, 0x24, 0x90, 0xd4, 0x0d, 0xa8, 0x9e, 0x21, 0xd5, 0x8e, 0xc1, 0xad, 0x5f, 0xfe, 0x48, + 0xc4, 0xd0, 0x0a, 0xc7, 0xc5, 0x0a, 0x9f, 0x3e, 0x1a, 0x46, 0x71, 0xfa, 0x9b, 0x42, 0xf2, 0x68, + 0x47, 0x50, 0xc4, 0x49, 0x10, 0x5f, 0x8d, 0x1e, 0xe6, 0x93, 0xa8, 0xba, 0x2a, 0x84, 0xdc, 0x8f, + 0x22, 0x9d, 0x0b, 0xfa, 0x15, 0x50, 0x65, 0x49, 0xdc, 0xc7, 0xa0, 0x3b, 0x0c, 0x15, 0xe5, 0xbd, + 0x4b, 0x82, 0x76, 0x1a, 0xf5, 0xe2, 0xb7, 0xd1, 0x55, 0x34, 0xce, 0x38, 0x6d, 0x8a, 0xcb, 0xbd, + 0x55, 0xc8, 0x53, 0x1c, 0x05, 0x7f, 0x95, 0x5e, 0x45, 0xaa, 0x3b, 0x3b, 0x25, 0x56, 0x92, 0x82, + 0x26, 0x96, 0x2e, 0xd6, 0xb9, 0xb5, 0x34, 0x1a, 0x04, 0x9f, 0xbb, 0xa1, 0x37, 0x8e, 0x9c, 0x07, + 0x03, 0xef, 0x32, 0xea, 0xa6, 0x61, 0xa2, 0xd0, 0x5b, 0xfa, 0xb0, 0x5c, 0x79, 0x2a, 0x73, 0x19, + 0x74, 0x07, 0x21, 0x74, 0x06, 0x3a, 0x03, 0x9d, 0x81, 0xce, 0x14, 0x89, 0xce, 0x7c, 0xee, 0xf5, + 0xba, 0x61, 0x10, 0x6b, 0x54, 0xc3, 0x6d, 0xad, 0x31, 0x20, 0x26, 0x61, 0xbf, 0x1b, 0xb4, 0x67, + 0xc0, 0x24, 0x8f, 0x84, 0xf7, 0x05, 0x02, 0x81, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x81, 0x40, + 0xa0, 0xf6, 0x27, 0x52, 0x6c, 0xf8, 0x84, 0x02, 0xb3, 0xc5, 0xda, 0x24, 0xe6, 0xd8, 0xe6, 0x75, + 0xca, 0x99, 0x63, 0x4b, 0x65, 0x86, 0x23, 0xee, 0x06, 0x95, 0x19, 0x7a, 0x58, 0x41, 0x65, 0xc6, + 0xcf, 0x70, 0x39, 0x2a, 0x33, 0xe0, 0x71, 0xf0, 0x38, 0x78, 0x5c, 0xa1, 0x78, 0x1c, 0x95, 0x19, + 0x3f, 0xfa, 0x45, 0x65, 0xc6, 0x4a, 0xe2, 0xa8, 0xcc, 0xc8, 0x47, 0x45, 0xa8, 0xcc, 0x28, 0xb8, + 0x92, 0x50, 0x99, 0x21, 0xba, 0x5e, 0x2a, 0x33, 0x72, 0xa0, 0x32, 0xa4, 0xa5, 0xa0, 0x33, 0xd0, + 0x19, 0xe8, 0x4c, 0xe1, 0xe8, 0x0c, 0x69, 0x29, 0x15, 0x40, 0xa4, 0x32, 0x03, 0x08, 0x04, 0x02, + 0x81, 0x40, 0x20, 0x10, 0x08, 0x2c, 0x02, 0x04, 0x52, 0x99, 0xe1, 0x48, 0x65, 0x06, 0x93, 0xa0, + 0xac, 0xd5, 0xc2, 0x25, 0x75, 0xb0, 0x1f, 0x06, 0x35, 0x68, 0x05, 0xe9, 0x97, 0xe3, 0x6c, 0x35, + 0x25, 0x1a, 0x07, 0x95, 0xf3, 0xcc, 0x16, 0x99, 0x59, 0x2d, 0x0c, 0x7f, 0x62, 0xf8, 0x13, 0xc3, + 0x9f, 0x72, 0x05, 0x8d, 0xdc, 0x87, 0x3f, 0x05, 0xc3, 0xf4, 0x8b, 0xd7, 0x0f, 0x06, 0x83, 0x4c, + 0x05, 0x84, 0x0a, 0x0d, 0x17, 0xc5, 0xc8, 0x14, 0x1c, 0x6e, 0x32, 0x0a, 0x8a, 0x82, 0x43, 0x07, + 0xd9, 0x33, 0x05, 0x87, 0x72, 0xec, 0x78, 0x1e, 0x40, 0x9c, 0x0e, 0x7a, 0x97, 0xb1, 0x31, 0x0b, + 0xee, 0xcc, 0x6f, 0x6b, 0x50, 0x78, 0xde, 0x09, 0x07, 0xed, 0x24, 0xea, 0x8b, 0xb0, 0xd6, 0x3b, + 0x77, 0x77, 0xce, 0x85, 0x80, 0x09, 0x60, 0x02, 0x98, 0x00, 0x26, 0xe4, 0xa8, 0xef, 0x83, 0x34, + 0x89, 0xe2, 0x2b, 0x90, 0x60, 0xb5, 0x67, 0xed, 0xf6, 0xda, 0x41, 0x57, 0x22, 0x09, 0x38, 0xbf, + 0x7c, 0x66, 0x2a, 0x01, 0x0c, 0x00, 0x03, 0xc0, 0x00, 0x30, 0x20, 0xcf, 0xc0, 0xc3, 0xc0, 0x8b, + 0x87, 0xd7, 0x9f, 0x45, 0xaa, 0xea, 0xa6, 0x06, 0x46, 0xe0, 0x46, 0x2b, 0xe1, 0x9a, 0x77, 0xd9, + 0xdb, 0xa0, 0x14, 0x32, 0xed, 0x2a, 0x85, 0xcb, 0x5a, 0x35, 0xed, 0x9a, 0x65, 0xca, 0xb7, 0xb2, + 0x77, 0x73, 0x95, 0xee, 0xd5, 0x6f, 0x57, 0xf7, 0xb6, 0xf7, 0x76, 0x5f, 0x57, 0xf7, 0x76, 0x4a, + 0xa4, 0x03, 0x05, 0x49, 0xeb, 0x5f, 0xac, 0x81, 0x77, 0x2d, 0x55, 0x61, 0x37, 0x03, 0x40, 0x99, + 0x8a, 0x3a, 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, + 0x7c, 0x6b, 0x7c, 0x6b, 0x7c, 0x6b, 0x37, 0x7d, 0xeb, 0x71, 0x61, 0xa2, 0x97, 0xd5, 0x0d, 0x4a, + 0xfa, 0xd8, 0x77, 0x04, 0xe1, 0x6b, 0xe3, 0x6b, 0xe3, 0x6b, 0xe3, 0x6b, 0xe7, 0xa8, 0xef, 0xe4, + 0x32, 0x73, 0x43, 0x84, 0x54, 0xe2, 0x65, 0x2d, 0x62, 0xc1, 0x58, 0x04, 0x28, 0x00, 0x0a, 0x80, + 0x02, 0xa0, 0x40, 0x01, 0x8c, 0xcb, 0x02, 0x10, 0x6c, 0x0b, 0x7c, 0x76, 0x3d, 0x1e, 0x5e, 0x8f, + 0xb6, 0xe6, 0x76, 0x0d, 0x40, 0x26, 0x09, 0xaf, 0x7b, 0x37, 0xa1, 0xd7, 0x4f, 0xa2, 0x9b, 0x20, + 0x0d, 0x45, 0x83, 0xfb, 0xcb, 0xa2, 0x00, 0x1d, 0x40, 0x07, 0xd0, 0x01, 0x74, 0x24, 0x8d, 0x4c, + 0xd6, 0xde, 0x29, 0x89, 0x41, 0x02, 0x11, 0xc1, 0x4a, 0xa3, 0x13, 0xc6, 0x69, 0x94, 0x7e, 0xdd, + 0x0f, 0x06, 0xa1, 0xfc, 0x44, 0x93, 0x93, 0xfa, 0xd1, 0xf1, 0xc7, 0xba, 0xdf, 0x3a, 0x69, 0x7c, + 0xac, 0x9d, 0xd5, 0xfd, 0xda, 0xa9, 0x7f, 0xdc, 0x3a, 0x6b, 0x1c, 0x37, 0xa5, 0x8e, 0xdc, 0x38, + 0xa8, 0x3a, 0x10, 0x9d, 0x92, 0x29, 0x1c, 0x7d, 0x9e, 0xee, 0xdc, 0x9d, 0x2d, 0xcb, 0x36, 0xb1, + 0x76, 0x78, 0x58, 0x29, 0x62, 0xd4, 0xde, 0x62, 0xc3, 0x5a, 0x87, 0xb5, 0x03, 0xe9, 0x1d, 0x13, + 0xf9, 0xe4, 0x0b, 0xd7, 0x0d, 0xb7, 0x9b, 0xce, 0x66, 0x6f, 0x98, 0x86, 0xde, 0x65, 0x37, 0xe8, + 0x7b, 0x9d, 0xe0, 0xba, 0x1f, 0xc5, 0x57, 0x82, 0xde, 0xe6, 0xb2, 0xac, 0xbc, 0x07, 0xd3, 0xcb, + 0xce, 0x67, 0xc2, 0x9d, 0xc5, 0x9d, 0xc5, 0x9d, 0x5d, 0x73, 0x77, 0x56, 0x6e, 0x7e, 0x92, 0xd0, + 0xdc, 0x24, 0x47, 0x6f, 0x26, 0x0a, 0xe3, 0x8e, 0xd7, 0xee, 0x5d, 0x5f, 0x0f, 0xe3, 0x28, 0xfd, + 0x2a, 0x78, 0x45, 0xd1, 0xa2, 0x1c, 0x39, 0xc0, 0x69, 0x1e, 0x37, 0xeb, 0xe0, 0x0d, 0x78, 0x03, + 0xde, 0x80, 0x37, 0x79, 0xea, 0xfb, 0xcc, 0x76, 0x11, 0xb8, 0x97, 0x80, 0x34, 0x66, 0xba, 0x09, + 0xcf, 0x74, 0xcb, 0xf3, 0xb2, 0x45, 0x37, 0x86, 0xa7, 0x85, 0x9f, 0xaf, 0xfa, 0xde, 0xf5, 0xb0, + 0x9b, 0x46, 0x5f, 0x7a, 0xfd, 0xfc, 0x67, 0xa8, 0x2d, 0x7e, 0x3c, 0xa3, 0xd4, 0xdc, 0xf3, 0x18, + 0x18, 0xa5, 0x66, 0xe2, 0x11, 0x94, 0x7c, 0x94, 0x5a, 0xce, 0x33, 0x19, 0x1f, 0x70, 0x24, 0x72, + 0x9c, 0xcd, 0x28, 0x64, 0x58, 0xa0, 0x28, 0x50, 0x14, 0x28, 0x4a, 0x41, 0x6e, 0x6b, 0x0d, 0xe3, + 0xe0, 0x73, 0x37, 0xec, 0xc8, 0xe7, 0x42, 0xa7, 0x82, 0xb8, 0xd5, 0xc1, 0xc2, 0x64, 0x6a, 0x98, + 0x4e, 0x3d, 0x13, 0xaa, 0x65, 0x4a, 0xd5, 0x4d, 0xaa, 0xba, 0x69, 0x55, 0x35, 0xb1, 0x32, 0xa6, + 0x56, 0xc8, 0xe4, 0xca, 0x47, 0x87, 0x96, 0xce, 0x0b, 0xb7, 0x3a, 0x68, 0xbc, 0xd4, 0xca, 0x94, + 0x96, 0x7b, 0x69, 0xda, 0x95, 0xc7, 0xbd, 0x05, 0x69, 0x80, 0x12, 0xa0, 0x04, 0x28, 0x01, 0x4a, + 0x05, 0x02, 0x25, 0x2e, 0x0f, 0xff, 0xd1, 0x2f, 0x2e, 0x0f, 0x5f, 0x49, 0x1c, 0x97, 0x87, 0xe7, + 0xa3, 0x22, 0x5c, 0x1e, 0x5e, 0x70, 0x25, 0xe1, 0xf2, 0x70, 0x59, 0x4a, 0xc1, 0x45, 0x71, 0x46, + 0x59, 0xe4, 0x85, 0xa4, 0x68, 0xae, 0x39, 0xe5, 0xfc, 0xdf, 0x6d, 0xae, 0x65, 0x72, 0xe3, 0x0b, + 0xf1, 0xe4, 0xaa, 0xe3, 0xc6, 0x1f, 0x5f, 0xb0, 0x94, 0x50, 0x95, 0x94, 0x90, 0x1e, 0x65, 0x24, + 0x25, 0x54, 0x42, 0xa4, 0x20, 0x25, 0xf4, 0xbd, 0x0d, 0x22, 0x25, 0x64, 0x6d, 0x3a, 0xf5, 0x4c, + 0xa8, 0x96, 0x29, 0x55, 0x37, 0xa9, 0xea, 0xa6, 0x55, 0xd5, 0xc4, 0xca, 0xd2, 0x12, 0x52, 0x42, + 0x4f, 0xf0, 0xf4, 0x48, 0x09, 0x91, 0x12, 0x02, 0x94, 0x00, 0x25, 0x40, 0x09, 0x50, 0xfa, 0xdf, + 0xe7, 0x85, 0x94, 0xd0, 0x8f, 0x7e, 0x91, 0x12, 0x5a, 0x49, 0x1c, 0x29, 0xa1, 0x7c, 0x54, 0x84, + 0x94, 0x50, 0xc1, 0x95, 0x84, 0x94, 0x90, 0x2c, 0xa5, 0x20, 0x25, 0xe4, 0x44, 0x4a, 0x68, 0x92, + 0xc9, 0xa0, 0xcb, 0xd4, 0x4e, 0x29, 0xdc, 0x51, 0x86, 0x4a, 0xae, 0x09, 0xb8, 0x64, 0xd8, 0x4e, + 0xb3, 0xf9, 0xff, 0x95, 0xe6, 0x64, 0x95, 0x8d, 0x6c, 0x91, 0x7e, 0x2b, 0x5b, 0x9a, 0xbf, 0x7f, + 0xd5, 0xf7, 0x5b, 0x61, 0x98, 0xbc, 0x1f, 0xad, 0xc6, 0xaf, 0x7f, 0xbe, 0xea, 0x1f, 0x4d, 0x17, + 0x53, 0xa6, 0xce, 0xd7, 0x24, 0xe9, 0x25, 0xde, 0x97, 0x20, 0xee, 0x74, 0xf3, 0x9c, 0x14, 0x35, + 0x8f, 0xea, 0x2f, 0x7e, 0x3e, 0xbd, 0xaf, 0xee, 0xc5, 0x27, 0xe8, 0x7d, 0x35, 0x89, 0x2f, 0xd0, + 0xfb, 0xba, 0xd2, 0x31, 0xa0, 0xf7, 0x95, 0x42, 0x07, 0x6b, 0x03, 0xa4, 0x66, 0x88, 0x54, 0x0c, + 0x52, 0x31, 0xf8, 0x8f, 0x58, 0xa1, 0x43, 0x9a, 0x84, 0x41, 0xea, 0x05, 0x03, 0xef, 0xcf, 0x28, + 0xfd, 0xd2, 0x49, 0x82, 0x3f, 0xe5, 0x53, 0x3f, 0xcb, 0x22, 0x29, 0x7e, 0xb0, 0x30, 0xa3, 0x1a, + 0xe6, 0x54, 0xcf, 0xac, 0x6a, 0x99, 0x57, 0x75, 0x33, 0xab, 0x6e, 0x6e, 0x55, 0xcd, 0xae, 0x6c, + 0x00, 0x8e, 0xe2, 0x87, 0x27, 0x78, 0x7f, 0x5b, 0x44, 0x2a, 0xdd, 0x0d, 0x4a, 0xb9, 0x11, 0x9c, + 0x5a, 0x08, 0x6b, 0x50, 0xbd, 0x9e, 0xd7, 0x21, 0xa7, 0x7a, 0x1d, 0x52, 0x07, 0xa9, 0x83, 0xd4, + 0x41, 0xea, 0x20, 0x75, 0x90, 0x3a, 0x48, 0x1d, 0xa4, 0x0e, 0x52, 0x07, 0xa9, 0x83, 0xd4, 0x59, + 0x90, 0x3a, 0xea, 0x4f, 0xac, 0xb5, 0xc2, 0x21, 0x6d, 0xb0, 0x2f, 0x40, 0x19, 0x2d, 0xe7, 0xc3, + 0x74, 0x35, 0x25, 0xaa, 0x40, 0xb9, 0x4a, 0x82, 0x76, 0x78, 0x39, 0xec, 0x7a, 0x49, 0x38, 0x48, + 0x83, 0x24, 0xcd, 0xbf, 0x06, 0x65, 0x49, 0x02, 0x55, 0x28, 0xee, 0x39, 0xba, 0x54, 0xa1, 0x98, + 0x38, 0xaa, 0x54, 0xa1, 0xac, 0x74, 0x0c, 0xa8, 0x42, 0x21, 0x60, 0xe9, 0x0a, 0x93, 0x26, 0x60, + 0xa9, 0x47, 0x83, 0x18, 0xb7, 0x41, 0xd0, 0x90, 0xa0, 0x21, 0x41, 0x43, 0x82, 0x86, 0x04, 0x0d, + 0x9d, 0x08, 0x1a, 0x0a, 0xf8, 0x45, 0x5f, 0xc2, 0x6e, 0x3f, 0x4c, 0xbc, 0x5e, 0xdc, 0xfd, 0x2a, + 0x0f, 0x47, 0x77, 0x85, 0x01, 0x49, 0x40, 0x12, 0x90, 0x04, 0x24, 0x01, 0x49, 0x40, 0xd2, 0xe2, + 0x1e, 0x64, 0x01, 0x5c, 0x2f, 0x8d, 0xae, 0x43, 0x79, 0x4c, 0x5a, 0x90, 0x06, 0x28, 0x01, 0x4a, + 0x80, 0x12, 0xa0, 0x54, 0x20, 0x50, 0x1a, 0x46, 0x71, 0xba, 0xb5, 0xab, 0x80, 0x49, 0xbb, 0x8c, + 0x66, 0xfa, 0xfe, 0x83, 0x30, 0x9a, 0x29, 0x3f, 0x79, 0x8c, 0x66, 0x2a, 0xac, 0x8a, 0x6c, 0x6f, + 0xee, 0xed, 0x32, 0x9b, 0xc9, 0xb5, 0x4f, 0xbf, 0x58, 0x63, 0x52, 0x31, 0x48, 0x83, 0x6e, 0xe8, + 0x25, 0xbd, 0x61, 0x1a, 0x0e, 0x94, 0x98, 0xc5, 0xb2, 0x48, 0xe8, 0x05, 0xf4, 0x02, 0x7a, 0x01, + 0xbd, 0x28, 0x10, 0xbd, 0xe8, 0x84, 0xed, 0xe8, 0x3a, 0xe8, 0xee, 0x6e, 0x6b, 0x44, 0xbd, 0xaa, + 0x82, 0x32, 0x96, 0xfc, 0x84, 0x2a, 0x7c, 0xc6, 0x4d, 0x3e, 0x53, 0x85, 0xcf, 0xc0, 0x67, 0xfe, + 0xb7, 0x8a, 0xbc, 0x42, 0x45, 0x20, 0x33, 0x05, 0x21, 0x33, 0x74, 0xfa, 0x18, 0xf5, 0x76, 0xdc, + 0xef, 0x08, 0x60, 0x80, 0x43, 0x8e, 0xcc, 0x96, 0x01, 0x0e, 0xd4, 0x43, 0xbb, 0xc0, 0x4e, 0xa9, + 0x87, 0xd6, 0x03, 0x0b, 0xea, 0xa1, 0x7f, 0xcc, 0x84, 0x11, 0x88, 0xb3, 0x34, 0x6d, 0x5a, 0x26, + 0x4e, 0xdd, 0xd4, 0xa9, 0x9b, 0x3c, 0x55, 0xd3, 0x27, 0xcb, 0x18, 0x28, 0x3e, 0x7b, 0x82, 0x07, + 0x46, 0x3d, 0x34, 0xf5, 0xd0, 0x40, 0x12, 0x90, 0x04, 0x24, 0x01, 0x49, 0x40, 0x92, 0x39, 0x24, + 0x51, 0x0f, 0x0d, 0x28, 0x01, 0x4a, 0x80, 0x12, 0xa0, 0xf4, 0x23, 0xe7, 0x85, 0x7a, 0xe8, 0x1f, + 0xfe, 0xa2, 0x1e, 0x7a, 0x25, 0x71, 0xd4, 0x0f, 0xe4, 0xa3, 0x22, 0xd4, 0x43, 0x17, 0x5d, 0x4b, + 0x28, 0x21, 0x28, 0x1c, 0xa9, 0xa0, 0x1e, 0x1a, 0x7a, 0x01, 0xbd, 0x80, 0x5e, 0x40, 0x2f, 0x9e, + 0x76, 0x5e, 0xa8, 0x87, 0x86, 0xcf, 0x50, 0x0f, 0x0d, 0x9f, 0x71, 0x8b, 0xcf, 0x50, 0x0f, 0x0d, + 0x99, 0xa1, 0x1e, 0x3a, 0x0f, 0x17, 0x6b, 0x9d, 0xea, 0xa1, 0xb9, 0xfb, 0xc0, 0x5a, 0x2f, 0x9c, + 0xd2, 0x07, 0xf3, 0xdb, 0x0f, 0xde, 0x67, 0x0b, 0x3a, 0xc9, 0xd6, 0x53, 0xa2, 0xfb, 0x0f, 0xba, + 0xbd, 0xab, 0xab, 0x28, 0xbe, 0xf2, 0x7a, 0xfd, 0x91, 0x0e, 0x0d, 0xf2, 0xbf, 0xfe, 0xe0, 0xbe, + 0x00, 0x6e, 0x3f, 0x70, 0x2f, 0x34, 0xc2, 0xed, 0x07, 0x26, 0xa1, 0x0d, 0x6e, 0x3f, 0x58, 0xe9, + 0x18, 0x70, 0xfb, 0x01, 0xdd, 0x3e, 0xd6, 0x06, 0x48, 0xcd, 0x10, 0xa9, 0x18, 0xa4, 0x62, 0x50, + 0x21, 0xb1, 0x6e, 0x9f, 0x6e, 0x6f, 0xe4, 0xdd, 0x46, 0x57, 0x5f, 0x3e, 0xf7, 0x12, 0x6f, 0xcc, + 0x41, 0xbc, 0xf6, 0x97, 0x20, 0xbe, 0x0a, 0x07, 0xf2, 0x39, 0xa8, 0xff, 0x21, 0x5b, 0xfe, 0x02, + 0xd7, 0x91, 0xba, 0x92, 0xf3, 0x52, 0xb7, 0xaf, 0x7a, 0x76, 0x56, 0xcb, 0xde, 0xaa, 0xdb, 0x5d, + 0x75, 0xfb, 0xab, 0x6a, 0x87, 0x65, 0x83, 0x73, 0xd4, 0x79, 0x3f, 0xc1, 0x1d, 0xe4, 0xfe, 0x56, + 0x87, 0xa3, 0x55, 0x4e, 0x44, 0xad, 0xee, 0x05, 0x3a, 0x18, 0xea, 0x90, 0xd7, 0x29, 0x67, 0xa8, + 0x03, 0x34, 0x0f, 0x9a, 0x07, 0xcd, 0x83, 0xe6, 0x41, 0xf3, 0xa0, 0x79, 0xd0, 0x3c, 0x68, 0x1e, + 0x34, 0x0f, 0x9a, 0x07, 0xcd, 0x73, 0x83, 0xe6, 0x51, 0xab, 0x62, 0xad, 0x16, 0x2e, 0xa9, 0x83, + 0x79, 0xa9, 0xca, 0xe1, 0x64, 0x3d, 0xc7, 0xd9, 0x72, 0x4a, 0x54, 0xa9, 0x32, 0xdf, 0x74, 0x2f, + 0xdb, 0x93, 0x9c, 0x2b, 0x55, 0xee, 0x0b, 0xc8, 0xb7, 0x52, 0x65, 0x93, 0x4a, 0x15, 0x87, 0x3d, + 0x5b, 0x2a, 0x55, 0x0a, 0x84, 0x23, 0xb9, 0x7b, 0x9e, 0x73, 0x7a, 0x1e, 0x06, 0x97, 0x49, 0x78, + 0x99, 0xa7, 0xc2, 0x4e, 0x3d, 0xcb, 0xd7, 0x39, 0x7e, 0x66, 0x2b, 0x83, 0xba, 0x5f, 0x7f, 0xcd, + 0xa2, 0xcc, 0x2f, 0xef, 0xdb, 0xae, 0x12, 0xd9, 0xfd, 0x71, 0x5f, 0xa6, 0x97, 0x84, 0x97, 0xdd, + 0xb0, 0x9d, 0xf6, 0x92, 0xfc, 0xed, 0xfe, 0x7d, 0x01, 0x54, 0x28, 0x62, 0xf7, 0xb1, 0xfb, 0x0e, + 0xda, 0x7d, 0x2a, 0x14, 0x9f, 0x51, 0xa1, 0xa8, 0x64, 0x70, 0xa4, 0x0d, 0x8f, 0x9a, 0x01, 0x52, + 0x33, 0x44, 0x2a, 0x06, 0xa9, 0x18, 0xf1, 0x2f, 0xb1, 0xd4, 0xd5, 0x3d, 0x57, 0xc5, 0x6b, 0x77, + 0xa3, 0xc9, 0x46, 0x4b, 0xcf, 0xde, 0x7b, 0x58, 0xae, 0x7c, 0xca, 0xea, 0x32, 0xe8, 0x0e, 0xc8, + 0x59, 0xe9, 0x1b, 0x56, 0x3d, 0x03, 0xab, 0x65, 0x68, 0xd5, 0x0d, 0xae, 0xba, 0xe1, 0x55, 0x35, + 0xc0, 0x32, 0x86, 0x58, 0xc8, 0x20, 0xcb, 0x45, 0x0e, 0x1e, 0x3d, 0x2f, 0xe4, 0xac, 0x34, 0x5e, + 0xea, 0x03, 0xc0, 0x34, 0x1c, 0xa4, 0x61, 0xe2, 0x45, 0x1d, 0x0b, 0x50, 0x9c, 0xc9, 0x06, 0xb0, + 0x00, 0x2c, 0x00, 0x0b, 0xc0, 0x2a, 0x10, 0x60, 0x25, 0x77, 0x0d, 0x98, 0x97, 0x8e, 0xe4, 0x2a, + 0x60, 0xd7, 0x9e, 0xa0, 0x8c, 0x6c, 0xef, 0x0a, 0x3f, 0xda, 0xe9, 0xee, 0x00, 0xe1, 0x57, 0xd5, + 0x8a, 0xc2, 0xa4, 0xa0, 0xec, 0xed, 0xbc, 0x56, 0x10, 0xa5, 0x33, 0x80, 0x4b, 0xef, 0x6d, 0xcd, + 0x1e, 0x4c, 0x73, 0x20, 0x97, 0x92, 0x83, 0xf0, 0xa8, 0x58, 0xe5, 0xe9, 0x4b, 0x33, 0xb9, 0x06, + 0x53, 0x98, 0x84, 0x0d, 0xfe, 0xc3, 0xaa, 0xa4, 0x38, 0xb8, 0xcb, 0x15, 0x55, 0xda, 0xae, 0xee, + 0x6d, 0xef, 0xed, 0xbe, 0xae, 0xee, 0xed, 0xac, 0x91, 0x4e, 0x6d, 0x94, 0x43, 0xca, 0xc5, 0x46, + 0x81, 0x4f, 0x9e, 0x22, 0xa0, 0x47, 0xfd, 0x9b, 0x6d, 0x2f, 0xe8, 0x74, 0x92, 0x70, 0x30, 0x50, + 0x84, 0xf5, 0xad, 0xdf, 0x14, 0x64, 0xb5, 0x82, 0x34, 0x0d, 0x93, 0x58, 0x0d, 0xd9, 0x2b, 0xff, + 0xf9, 0xe5, 0x97, 0x4f, 0x9b, 0xde, 0xde, 0xc5, 0xb7, 0x4f, 0x5b, 0xde, 0xde, 0xc5, 0xe4, 0xdb, + 0xad, 0xf1, 0x7f, 0x26, 0xdf, 0x57, 0x3f, 0x6d, 0x7a, 0xdb, 0xd3, 0xef, 0x77, 0x3e, 0x6d, 0x7a, + 0x3b, 0x17, 0xcf, 0xff, 0xf8, 0xe3, 0xd7, 0xe7, 0x7f, 0xbf, 0xba, 0x7d, 0xfa, 0x1f, 0xfe, 0xa3, + 0x52, 0xf4, 0x43, 0xc4, 0xb8, 0x3f, 0x2a, 0xa8, 0x8d, 0x4a, 0x66, 0xef, 0xc5, 0xcd, 0x68, 0x94, + 0xcd, 0x0b, 0x4f, 0x68, 0x94, 0xa5, 0xda, 0xe0, 0x7b, 0x6f, 0x93, 0x6a, 0x83, 0xd2, 0x61, 0x05, + 0xd5, 0x06, 0xab, 0x6d, 0x1f, 0xd5, 0x06, 0xd6, 0x86, 0x55, 0xcf, 0xc0, 0x6a, 0x19, 0x5a, 0x75, + 0x83, 0xab, 0x6e, 0x78, 0x55, 0x0d, 0xb0, 0x2c, 0x6d, 0xa1, 0xda, 0xe0, 0x09, 0x7e, 0x20, 0xd5, + 0x06, 0x54, 0x1b, 0x00, 0x58, 0x00, 0x16, 0x80, 0x05, 0x60, 0xad, 0x60, 0xcd, 0xa8, 0x36, 0xf8, + 0x99, 0x2f, 0xaa, 0x0d, 0x56, 0x13, 0x45, 0xb5, 0x41, 0x71, 0x1c, 0x84, 0x47, 0xc5, 0x52, 0x6d, + 0x20, 0xab, 0x4a, 0x54, 0x1b, 0xac, 0x87, 0x4e, 0x51, 0x6d, 0x60, 0x7f, 0xf2, 0xa8, 0x36, 0xc8, + 0x87, 0xea, 0x51, 0x6d, 0xe0, 0xf4, 0x21, 0xa2, 0xda, 0x80, 0x6a, 0x03, 0x47, 0xaa, 0x0d, 0x98, + 0xd7, 0x66, 0xad, 0x16, 0x2e, 0xa9, 0x83, 0xf9, 0xbc, 0xb6, 0x93, 0xd1, 0x7a, 0x4e, 0x66, 0xcb, + 0x29, 0xd1, 0xdc, 0x9e, 0x7c, 0x8b, 0x5d, 0x44, 0x8a, 0x5c, 0xc4, 0x66, 0xf4, 0x54, 0x99, 0xd1, + 0x93, 0xa7, 0x27, 0xc9, 0x8c, 0x9e, 0xc2, 0x60, 0x46, 0xee, 0x33, 0x7a, 0x82, 0x61, 0xfa, 0xc5, + 0xeb, 0x07, 0x83, 0x41, 0xa6, 0x02, 0x42, 0xb5, 0x73, 0x8b, 0x62, 0x64, 0x6a, 0xe8, 0x36, 0x99, + 0xd8, 0x43, 0x0d, 0x9d, 0x43, 0x66, 0x49, 0xc5, 0x3c, 0x15, 0x83, 0x01, 0x89, 0x65, 0xbe, 0x16, + 0xf2, 0xf7, 0x51, 0x7c, 0x25, 0x65, 0x63, 0x16, 0x43, 0x2e, 0x6b, 0x50, 0x4b, 0xdd, 0x09, 0x07, + 0xed, 0x24, 0xea, 0x8b, 0x90, 0xd6, 0xd9, 0x4b, 0xbb, 0x2b, 0x04, 0x4c, 0x00, 0x13, 0xc0, 0x04, + 0x30, 0x21, 0x57, 0x2e, 0x9b, 0x44, 0xf1, 0x15, 0x48, 0xb0, 0xda, 0xb3, 0x76, 0x7b, 0xed, 0xa0, + 0xeb, 0x05, 0x03, 0x39, 0x18, 0x98, 0x49, 0x00, 0x03, 0xc0, 0x00, 0x30, 0x00, 0x0c, 0xc8, 0x33, + 0xf0, 0x30, 0xf0, 0xe2, 0xe1, 0xf5, 0xe7, 0x30, 0x11, 0x84, 0x01, 0x81, 0xd2, 0x2a, 0xe1, 0x52, + 0x2a, 0xc1, 0x12, 0x44, 0x8d, 0x52, 0x29, 0xa5, 0x7a, 0x16, 0xad, 0x52, 0x28, 0xcd, 0x32, 0x15, + 0xc1, 0x82, 0x0b, 0x95, 0xd2, 0x26, 0xed, 0x57, 0xaf, 0x55, 0xba, 0xa4, 0xaa, 0x03, 0x05, 0xc9, + 0xea, 0x5f, 0xac, 0x81, 0x77, 0x3d, 0xce, 0x9d, 0x4a, 0x3a, 0xd7, 0x53, 0x01, 0xf8, 0xd6, 0xf8, + 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, 0xd6, 0xf8, + 0xd6, 0xeb, 0xe0, 0x5b, 0x0b, 0x5c, 0x69, 0xfa, 0xb0, 0x8f, 0x9d, 0xfb, 0xd5, 0xa6, 0xf8, 0xda, + 0xf8, 0xda, 0xf8, 0xda, 0xf8, 0xda, 0xe4, 0x32, 0xf3, 0x45, 0x84, 0x54, 0xe2, 0x65, 0x2d, 0x62, + 0x81, 0x40, 0xc7, 0x3d, 0x28, 0x00, 0x0a, 0x80, 0x02, 0x6b, 0x8e, 0x02, 0x52, 0xc6, 0x65, 0x01, + 0x08, 0xb6, 0x05, 0x3e, 0xbb, 0x1e, 0x0f, 0xaf, 0x47, 0x5b, 0x73, 0xbb, 0x06, 0x20, 0x93, 0x84, + 0xd7, 0xbd, 0x9b, 0xd0, 0xeb, 0x27, 0xd1, 0x4d, 0x90, 0x86, 0xa2, 0xc1, 0xfd, 0x65, 0x51, 0x80, + 0x0e, 0xa0, 0x03, 0xe8, 0x00, 0x3a, 0x92, 0x46, 0xc6, 0xeb, 0x49, 0x94, 0x6c, 0x2f, 0x60, 0x90, + 0x40, 0x44, 0xb0, 0xd2, 0xe8, 0x84, 0x71, 0x1a, 0xa5, 0x5f, 0xf7, 0x83, 0x41, 0x28, 0x3f, 0x50, + 0xf0, 0xa4, 0x7e, 0x74, 0xfc, 0xb1, 0xee, 0xb7, 0x4e, 0x1a, 0x1f, 0x6b, 0x67, 0x75, 0xbf, 0x76, + 0xea, 0x1f, 0xb7, 0xce, 0x1a, 0xc7, 0x4d, 0xa9, 0x23, 0x37, 0x0e, 0xaa, 0x0e, 0x44, 0x47, 0x34, + 0x08, 0x47, 0x9f, 0xa7, 0x3b, 0x77, 0x67, 0xcb, 0xb2, 0x4d, 0xac, 0x1d, 0x1e, 0x56, 0x8a, 0x18, + 0xb5, 0xb7, 0xd8, 0xb0, 0xd6, 0x61, 0xed, 0x40, 0x7a, 0xc7, 0x44, 0x3e, 0xf9, 0xc2, 0x75, 0xc3, + 0xed, 0xa6, 0xb3, 0x39, 0x6e, 0xb8, 0xbf, 0xec, 0x06, 0x7d, 0xaf, 0x13, 0x5c, 0xf7, 0xa3, 0xf8, + 0x4a, 0xd0, 0xdb, 0x5c, 0x96, 0x95, 0xf7, 0xac, 0x75, 0xd9, 0x61, 0xe1, 0xb8, 0xb3, 0xb8, 0xb3, + 0xb8, 0xb3, 0x6b, 0xee, 0xce, 0xca, 0x0d, 0xf3, 0x16, 0x1a, 0xe2, 0xed, 0xe8, 0x65, 0x3b, 0x61, + 0xdc, 0xf1, 0xda, 0xbd, 0xeb, 0xeb, 0x61, 0x1c, 0xa5, 0x5f, 0x05, 0x6f, 0xdd, 0x59, 0x94, 0x23, + 0x07, 0x38, 0xcd, 0xe3, 0x66, 0x1d, 0xbc, 0x01, 0x6f, 0xc0, 0x1b, 0xf0, 0x26, 0x4f, 0x7d, 0x9f, + 0xd9, 0x2e, 0x02, 0xf7, 0x8e, 0x43, 0x5a, 0xda, 0x4b, 0x83, 0xae, 0xd7, 0x0f, 0xd2, 0x2f, 0x82, + 0x21, 0xfb, 0xbb, 0x42, 0x40, 0x1b, 0xd0, 0x06, 0xb4, 0x01, 0x6d, 0x72, 0xd4, 0x77, 0xb1, 0x7b, + 0x05, 0x28, 0xc8, 0x7f, 0x60, 0xe1, 0x14, 0xe4, 0x3f, 0x5d, 0x0e, 0x05, 0xf9, 0xce, 0xbe, 0x7a, + 0x0a, 0xf2, 0xed, 0x3e, 0xf5, 0x62, 0x7d, 0x1c, 0xec, 0xb1, 0x37, 0x13, 0xca, 0xfb, 0xd8, 0x53, + 0x39, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xb8, + 0xd9, 0xb8, 0xd9, 0xb8, 0xd9, 0xce, 0xb9, 0xd9, 0x5c, 0x4d, 0x22, 0x7c, 0x35, 0x49, 0x8e, 0x37, + 0xd3, 0xb8, 0x71, 0x03, 0x48, 0x1a, 0x5d, 0x87, 0xc9, 0x20, 0xff, 0x2b, 0x40, 0xb2, 0xcf, 0x75, + 0xfc, 0x0e, 0x90, 0x4d, 0xee, 0x00, 0x29, 0x10, 0x0b, 0xe2, 0x0e, 0x10, 0x87, 0xef, 0x00, 0x69, + 0x4f, 0xcf, 0x94, 0x50, 0x38, 0x26, 0xfb, 0x7c, 0x99, 0x30, 0xcc, 0x16, 0x61, 0x18, 0xc2, 0x30, + 0x84, 0x61, 0x5c, 0x0c, 0xc3, 0xe4, 0x6d, 0xa8, 0xee, 0x1a, 0xac, 0x38, 0x6c, 0xa7, 0x5e, 0x12, + 0xa6, 0xc9, 0x57, 0xf9, 0x56, 0x9e, 0x45, 0x71, 0x42, 0xea, 0x72, 0xa7, 0x12, 0xf1, 0xd5, 0xa6, + 0x94, 0x10, 0x59, 0xa2, 0x2b, 0x66, 0x3b, 0x35, 0x6c, 0xa8, 0x9e, 0x2d, 0xd5, 0xb2, 0xa9, 0xea, + 0xb6, 0x55, 0xdd, 0xc6, 0xaa, 0xda, 0x5a, 0xe1, 0x48, 0x87, 0xd0, 0x89, 0x11, 0x0b, 0x85, 0x2f, + 0x9d, 0x97, 0x4e, 0xd8, 0x8e, 0xae, 0x83, 0xee, 0xee, 0xb6, 0xe4, 0x91, 0x99, 0x3a, 0x7d, 0x55, + 0x41, 0x19, 0x4b, 0x51, 0x33, 0x49, 0x61, 0xb2, 0x31, 0xf9, 0xe9, 0x97, 0xc2, 0x3d, 0xe8, 0x1a, + 0x31, 0xfa, 0xfb, 0x6a, 0x50, 0x7d, 0xa1, 0x23, 0x4e, 0x29, 0x66, 0xff, 0xb8, 0x06, 0x6e, 0x8a, + 0xcb, 0xbd, 0x55, 0xb8, 0x46, 0x5e, 0x23, 0x96, 0x7f, 0x5f, 0x45, 0x5e, 0xa1, 0x22, 0x6e, 0x03, + 0x9f, 0xfc, 0xa7, 0x17, 0xe6, 0x12, 0x7b, 0x01, 0xda, 0xfe, 0xa5, 0xd7, 0xed, 0x78, 0x69, 0x74, + 0xad, 0x30, 0xf0, 0x60, 0x2e, 0x4a, 0x9e, 0x21, 0xed, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, + 0x12, 0x0c, 0x09, 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0xd2, + 0xd3, 0xd5, 0xe4, 0xbf, 0x61, 0xd8, 0x0f, 0xba, 0xd1, 0x4d, 0xe8, 0x45, 0x71, 0x1a, 0x26, 0x37, + 0x41, 0x57, 0x9e, 0x2a, 0x3d, 0x20, 0x93, 0xac, 0x12, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, + 0xc1, 0x99, 0xe0, 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x72, 0x92, 0x33, + 0x5d, 0x47, 0x71, 0x74, 0x3d, 0xbc, 0xf6, 0x82, 0xce, 0x4d, 0x98, 0xa4, 0xd1, 0x20, 0x1c, 0x79, + 0x49, 0x8a, 0xfc, 0xe9, 0x3b, 0xf2, 0xe1, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, + 0x97, 0x82, 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, 0xca, 0xb1, 0x4f, 0xcc, + 0xbb, 0xdd, 0x4a, 0xa8, 0x69, 0x7f, 0xf6, 0xf9, 0x96, 0xcd, 0xfb, 0x93, 0x9e, 0xf4, 0x97, 0x59, + 0x27, 0xe9, 0x3a, 0x8c, 0xd7, 0x1f, 0x4f, 0x2b, 0x90, 0x9b, 0xaa, 0x3f, 0xfe, 0xf8, 0x82, 0x75, + 0xe4, 0x56, 0xe9, 0xc8, 0xd5, 0xe3, 0xa6, 0x74, 0xe4, 0x96, 0x10, 0x22, 0xe8, 0xc8, 0x7d, 0xca, + 0x66, 0x11, 0xef, 0x33, 0xb5, 0xa1, 0x7a, 0xb6, 0x54, 0xcb, 0xa6, 0xaa, 0xdb, 0x56, 0x75, 0x1b, + 0xab, 0x6a, 0x6b, 0x65, 0x89, 0x09, 0xf1, 0xbe, 0x27, 0x39, 0x7d, 0xc4, 0xfb, 0x9e, 0xf4, 0x45, + 0xbc, 0x8f, 0x60, 0x8e, 0x89, 0xfd, 0x59, 0x54, 0x11, 0xe2, 0x7d, 0x85, 0x56, 0x11, 0xe2, 0x7d, + 0xa2, 0xeb, 0xa5, 0x23, 0xf7, 0x87, 0x19, 0x12, 0x1d, 0xb9, 0x30, 0x24, 0x18, 0x12, 0x0c, 0x09, + 0x86, 0x04, 0x43, 0x82, 0x21, 0xc1, 0x90, 0x60, 0x48, 0x30, 0x24, 0x18, 0x12, 0x0c, 0xe9, 0x27, + 0xd4, 0x84, 0x8e, 0x5c, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x82, 0x33, 0xc1, 0x99, 0xe0, + 0x4c, 0x70, 0x26, 0x38, 0x13, 0x9c, 0x09, 0xce, 0x04, 0x67, 0x7a, 0x5c, 0x4d, 0xe8, 0xc8, 0x85, + 0x4b, 0xc1, 0xa5, 0xe0, 0x52, 0x70, 0x29, 0xb8, 0x14, 0x5c, 0x0a, 0x2e, 0x05, 0x97, 0x82, 0x4b, + 0xc1, 0xa5, 0xe0, 0x52, 0xa5, 0xe7, 0x52, 0x74, 0xe4, 0xda, 0x76, 0xe4, 0xe6, 0x78, 0xab, 0x76, + 0xfe, 0xef, 0x94, 0x4b, 0xd5, 0x75, 0xb4, 0xa0, 0x92, 0x6b, 0xe3, 0x73, 0x32, 0x6c, 0xa7, 0x71, + 0xe6, 0x20, 0x37, 0x27, 0xcb, 0x6b, 0x64, 0xab, 0xf3, 0x5b, 0xd9, 0x9a, 0xfc, 0xfd, 0xab, 0xbe, + 0xdf, 0x0a, 0xc3, 0xe4, 0xfd, 0x68, 0x19, 0xfe, 0xd9, 0x64, 0x19, 0x65, 0xba, 0xdc, 0x3d, 0x09, + 0xe2, 0x41, 0xbf, 0x97, 0xa4, 0x02, 0xf7, 0xbb, 0xcf, 0x3e, 0x9a, 0x2b, 0xde, 0xdd, 0x8b, 0x78, + 0x70, 0xc5, 0xbb, 0x49, 0xc4, 0x82, 0x2b, 0xde, 0x57, 0x3a, 0x06, 0x5c, 0xf1, 0xce, 0x40, 0x09, + 0x6b, 0x03, 0xa4, 0x66, 0x88, 0x54, 0x0c, 0x52, 0x31, 0x18, 0x8e, 0xd8, 0x40, 0x89, 0x6e, 0xaf, + 0x1d, 0x74, 0xbd, 0xa0, 0xd3, 0x49, 0xc2, 0xc1, 0x40, 0x3e, 0x7f, 0xb5, 0x28, 0x8e, 0x4c, 0x92, + 0xb6, 0x79, 0xd3, 0x33, 0x73, 0x5a, 0xe6, 0x4e, 0xdd, 0xec, 0xa9, 0x9b, 0x3f, 0x55, 0x33, 0x28, + 0x1b, 0xf2, 0x2a, 0x7e, 0x26, 0x69, 0x18, 0x47, 0xbd, 0x58, 0x23, 0x8b, 0xb4, 0x27, 0x28, 0x23, + 0xdb, 0xae, 0xc2, 0xe7, 0x75, 0xa6, 0x2f, 0x25, 0xea, 0x0b, 0x43, 0x8a, 0xf6, 0x1b, 0xd2, 0x7d, + 0x53, 0x7a, 0x6f, 0xec, 0x81, 0x37, 0x77, 0xb3, 0xad, 0xf8, 0xee, 0x96, 0xde, 0xe1, 0x6f, 0x8a, + 0x32, 0x5b, 0x41, 0x9a, 0x86, 0x49, 0xac, 0xf6, 0x3a, 0x67, 0x82, 0xff, 0xf3, 0xcb, 0x2f, 0x9f, + 0x36, 0xbd, 0xbd, 0x8b, 0x6f, 0x9f, 0xb6, 0xbc, 0xbd, 0x8b, 0xc9, 0xb7, 0x5b, 0xe3, 0xff, 0x4c, + 0xbe, 0xaf, 0x7e, 0xda, 0xf4, 0xb6, 0xa7, 0xdf, 0xef, 0x7c, 0xda, 0xf4, 0x76, 0x2e, 0x9e, 0xff, + 0xf1, 0xc7, 0xaf, 0xcf, 0xff, 0x7e, 0x75, 0xfb, 0xf4, 0x3f, 0xfc, 0x47, 0x45, 0xed, 0xe1, 0x2e, + 0x54, 0x24, 0xdd, 0xbe, 0x28, 0xf1, 0xe1, 0xdb, 0xe5, 0xf0, 0xe9, 0x1c, 0xbe, 0xc0, 0xbb, 0xac, + 0x79, 0xef, 0x2e, 0xfe, 0xde, 0x7a, 0xb1, 0x7d, 0xfb, 0xe6, 0xf9, 0xdf, 0xaf, 0x6f, 0xef, 0xff, + 0xf0, 0xdb, 0x43, 0xbf, 0xb6, 0xf5, 0xe2, 0xf5, 0xed, 0x9b, 0x47, 0xfe, 0x65, 0xf7, 0xf6, 0xcd, + 0x0f, 0x7e, 0xc6, 0xce, 0xed, 0x2f, 0x4b, 0xbf, 0x3a, 0xfa, 0x79, 0xf5, 0xb1, 0x3f, 0xd8, 0x7e, + 0xe4, 0x0f, 0x5e, 0x3d, 0xf6, 0x07, 0xaf, 0x1e, 0xf9, 0x83, 0x47, 0x97, 0x54, 0x7d, 0xe4, 0x0f, + 0x76, 0x6e, 0xbf, 0x2d, 0xfd, 0xfe, 0x2f, 0x0f, 0xff, 0xea, 0xee, 0xed, 0xf3, 0x6f, 0x8f, 0xfd, + 0xdb, 0xeb, 0xdb, 0x6f, 0x6f, 0x9e, 0x97, 0xd0, 0x14, 0x6d, 0x14, 0xfb, 0x39, 0x84, 0x4d, 0xa9, + 0xa2, 0xc7, 0x39, 0x48, 0x93, 0x28, 0xbe, 0xd2, 0xf4, 0x36, 0x7f, 0xa3, 0xc2, 0x41, 0x74, 0xbd, + 0x22, 0xd5, 0xe2, 0xe9, 0xd0, 0xeb, 0x44, 0x83, 0x76, 0xef, 0x26, 0xd4, 0x98, 0xd6, 0xba, 0x28, + 0x4e, 0xbe, 0x16, 0xfc, 0x32, 0xe8, 0x0e, 0x42, 0x82, 0x78, 0x04, 0xf1, 0x08, 0xe2, 0x11, 0xc4, + 0x2b, 0x52, 0x10, 0xef, 0x73, 0xaf, 0xd7, 0x0d, 0x03, 0x95, 0x30, 0xde, 0xd6, 0x1a, 0xc3, 0x5f, + 0x3f, 0x18, 0x0c, 0xa2, 0x9b, 0xd0, 0xbb, 0xee, 0x75, 0x14, 0xa6, 0xf0, 0x2d, 0x48, 0x03, 0xfc, + 0x00, 0x3f, 0xc0, 0x0f, 0xf0, 0x03, 0xfc, 0x00, 0x3f, 0x1b, 0xf0, 0x4b, 0xdb, 0x7d, 0xef, 0x5a, + 0xa3, 0xa4, 0x62, 0x2a, 0x08, 0x28, 0x02, 0x8a, 0x80, 0x22, 0xa0, 0xa8, 0x40, 0x50, 0x34, 0x8c, + 0xe2, 0x74, 0x6b, 0x57, 0x01, 0x89, 0x76, 0xe9, 0x92, 0xfd, 0xfe, 0x83, 0x58, 0x74, 0xc9, 0x6e, + 0xd2, 0x02, 0xe9, 0xb8, 0x39, 0x58, 0x54, 0x11, 0x83, 0x2e, 0x59, 0x6d, 0x15, 0xd9, 0xdd, 0xd9, + 0x79, 0xb5, 0x43, 0xa7, 0xac, 0x6b, 0x9f, 0x4e, 0xa7, 0x6c, 0x2e, 0x5e, 0x4f, 0x99, 0x3b, 0x65, + 0xa7, 0xfd, 0x76, 0x5c, 0x5f, 0x9b, 0x97, 0x83, 0xc6, 0xf5, 0xb5, 0x74, 0x1b, 0x39, 0xc2, 0x14, + 0xe9, 0x36, 0xd2, 0x43, 0x09, 0xba, 0x8d, 0x08, 0x90, 0x11, 0x20, 0x23, 0x40, 0x46, 0x80, 0xcc, + 0x3a, 0x40, 0x46, 0xb7, 0x91, 0x3b, 0xf1, 0x31, 0xba, 0x8d, 0x0a, 0xf6, 0xc6, 0x1e, 0x78, 0x73, + 0x74, 0x1b, 0x89, 0x0b, 0xa6, 0xdb, 0xc8, 0x41, 0xcc, 0x72, 0xe3, 0xf0, 0xd1, 0x6d, 0xa4, 0x74, + 0xf8, 0xe8, 0x36, 0xa2, 0xdb, 0xc8, 0x51, 0xa7, 0x5c, 0xef, 0x39, 0xe8, 0x36, 0x5a, 0xc1, 0x58, + 0x92, 0x25, 0x12, 0x5d, 0x2f, 0xdd, 0x46, 0x3f, 0x26, 0x8c, 0x82, 0x6b, 0x82, 0x78, 0x04, 0xf1, + 0x08, 0xe2, 0x15, 0x39, 0x88, 0x47, 0xc1, 0xb5, 0x0a, 0xfc, 0xd1, 0x6d, 0x04, 0xf8, 0x01, 0x7e, + 0x80, 0x1f, 0xe0, 0x07, 0xf8, 0xad, 0x1d, 0xf8, 0xd1, 0x6d, 0x04, 0x14, 0x01, 0x45, 0x40, 0x11, + 0x50, 0xf4, 0xf8, 0x79, 0xa1, 0xdb, 0xe8, 0x87, 0xbf, 0xe8, 0x36, 0x5a, 0x49, 0x1c, 0xdd, 0x46, + 0xf9, 0xa8, 0x08, 0xdd, 0x46, 0x85, 0x57, 0x13, 0xf2, 0x48, 0xb2, 0x5c, 0x82, 0x6e, 0x23, 0xf3, + 0x6e, 0x23, 0xae, 0xe6, 0xb3, 0x56, 0x08, 0x37, 0x14, 0xc1, 0xfe, 0x76, 0xbe, 0xd9, 0x4a, 0x4a, + 0x74, 0x41, 0xdf, 0x70, 0x10, 0x7a, 0xd7, 0xc3, 0x6e, 0x1a, 0xf5, 0xbb, 0xa1, 0x37, 0x7a, 0xc3, + 0x83, 0xfc, 0x6f, 0xea, 0x7b, 0x40, 0x06, 0x57, 0xf6, 0xb9, 0x17, 0x9f, 0xe0, 0xca, 0x3e, 0x93, + 0xf8, 0x02, 0x57, 0xf6, 0xad, 0x74, 0x0c, 0xb8, 0xb2, 0x8f, 0x26, 0x5a, 0x6b, 0x03, 0xa4, 0x66, + 0x88, 0x54, 0x0c, 0x52, 0x31, 0xc8, 0x8f, 0x58, 0x13, 0x6d, 0x18, 0x07, 0x9f, 0xbb, 0x61, 0x47, + 0x3e, 0xd7, 0x33, 0x15, 0x44, 0x79, 0x83, 0x85, 0xc9, 0xd4, 0x30, 0x9d, 0x7a, 0x26, 0x54, 0xcb, + 0x94, 0xaa, 0x9b, 0x54, 0x75, 0xd3, 0xaa, 0x6a, 0x62, 0x65, 0x23, 0x6d, 0x94, 0x37, 0x3c, 0xc1, + 0xd3, 0xdb, 0x22, 0x24, 0xe9, 0x6e, 0x04, 0xca, 0x89, 0x48, 0xd4, 0x72, 0x18, 0x63, 0x8d, 0x26, + 0x21, 0x85, 0x23, 0xfb, 0x27, 0x46, 0xe2, 0xc2, 0xfc, 0x51, 0x11, 0x0a, 0x07, 0x85, 0x83, 0xc2, + 0xad, 0x27, 0x85, 0x13, 0x8a, 0x39, 0xe9, 0xc4, 0x9e, 0x84, 0x0d, 0x18, 0xc4, 0x0a, 0x62, 0x05, + 0xb1, 0x72, 0x93, 0x58, 0x49, 0x19, 0xc4, 0x99, 0x80, 0xa0, 0xdb, 0xed, 0xfd, 0x39, 0x77, 0x62, + 0x83, 0x81, 0xbc, 0x3e, 0x4f, 0x4f, 0xe8, 0xb2, 0x68, 0x61, 0x35, 0x53, 0x8a, 0x7f, 0x29, 0xc5, + 0xc1, 0xd4, 0xcc, 0xb6, 0xa6, 0xf9, 0xd6, 0x37, 0xe3, 0xda, 0xe6, 0xdc, 0xcc, 0xac, 0x9b, 0x99, + 0x77, 0x13, 0x33, 0x2f, 0x6b, 0xee, 0x85, 0xcd, 0xbe, 0x5e, 0x5c, 0xcd, 0x20, 0xbe, 0xa6, 0x14, + 0x67, 0x93, 0x57, 0x00, 0xc1, 0x97, 0x5f, 0xb9, 0x0e, 0xfe, 0x8a, 0xae, 0x87, 0xd7, 0x39, 0xd7, + 0xdf, 0x7c, 0xf7, 0xed, 0x2f, 0x8a, 0xd5, 0x83, 0xe3, 0x2d, 0xa0, 0x18, 0x28, 0x06, 0x8a, 0x81, + 0x62, 0xa0, 0x78, 0xb1, 0x7d, 0xea, 0x55, 0x55, 0x11, 0x89, 0x5f, 0x2b, 0x88, 0xd2, 0x69, 0xa7, + 0x9a, 0x7e, 0x29, 0x4e, 0x5d, 0xd4, 0x6c, 0xaf, 0x52, 0x86, 0xb5, 0x25, 0xb1, 0xca, 0xed, 0x56, + 0x33, 0xb9, 0x06, 0xfd, 0x34, 0x4a, 0xe6, 0x65, 0x51, 0x95, 0x14, 0xdb, 0xb0, 0x5c, 0x51, 0xa5, + 0xed, 0xea, 0xde, 0xf6, 0xde, 0xee, 0xeb, 0xea, 0xde, 0xce, 0x1a, 0xe9, 0x14, 0x53, 0x25, 0x6d, + 0x09, 0x5c, 0xa1, 0x42, 0xc1, 0xc2, 0x85, 0x14, 0x33, 0x39, 0x8e, 0x15, 0x54, 0x84, 0xa3, 0x5f, + 0x97, 0xa8, 0xaa, 0x90, 0xd3, 0x02, 0x89, 0x79, 0x23, 0x32, 0xf7, 0x4e, 0x2d, 0xf9, 0x9c, 0x12, + 0xf7, 0x4f, 0x2d, 0x05, 0x7c, 0xa4, 0xd3, 0x97, 0x55, 0xd2, 0x97, 0xee, 0x90, 0x6c, 0xd2, 0x97, + 0x6b, 0x8c, 0x59, 0xa4, 0x2f, 0xf3, 0xdc, 0x4c, 0xd2, 0x97, 0xae, 0x9b, 0x6f, 0x7d, 0x33, 0xae, + 0x6d, 0xce, 0xcd, 0xcc, 0xba, 0x99, 0x79, 0x37, 0x31, 0xf3, 0x3a, 0xe4, 0x8d, 0xf4, 0x65, 0x0e, + 0xde, 0x2c, 0xe9, 0xcb, 0xe5, 0xbd, 0x21, 0x7d, 0x09, 0x14, 0x03, 0xc5, 0x40, 0x31, 0x50, 0xbc, + 0xbe, 0x50, 0x4c, 0xfa, 0x72, 0xe5, 0x2f, 0xd2, 0x97, 0x22, 0x62, 0x49, 0x5f, 0xca, 0xaa, 0x12, + 0xe9, 0xcb, 0xf5, 0xd0, 0x29, 0xd2, 0x97, 0xb6, 0x04, 0x8e, 0xf4, 0xe5, 0x03, 0x72, 0x5c, 0x4c, + 0x5f, 0x0a, 0x0c, 0xac, 0x94, 0x53, 0x02, 0xc6, 0x09, 0x38, 0xa6, 0x3e, 0x15, 0x91, 0x74, 0xf2, + 0x4f, 0x8c, 0xbb, 0x3c, 0x1f, 0x84, 0x47, 0xd9, 0xf2, 0x5a, 0xa3, 0xd5, 0xf9, 0xf5, 0xdc, 0x89, + 0x97, 0x9b, 0xa3, 0x0e, 0x22, 0xd1, 0x51, 0x07, 0x11, 0xa3, 0x0e, 0x18, 0x75, 0xe0, 0x44, 0x80, + 0x87, 0x51, 0x07, 0x7a, 0x40, 0xc6, 0xa8, 0x03, 0x03, 0x03, 0x26, 0x6e, 0xc8, 0x34, 0x0c, 0x9a, + 0x9e, 0x61, 0xd3, 0x32, 0x70, 0xea, 0x86, 0x4e, 0xdd, 0xe0, 0xa9, 0x1a, 0xbe, 0x62, 0x12, 0x44, + 0xf1, 0x5a, 0x21, 0x92, 0x92, 0x45, 0x0c, 0xb9, 0x91, 0x94, 0x2c, 0x94, 0x09, 0x37, 0x33, 0xe5, + 0x66, 0x26, 0xdd, 0xc4, 0xb4, 0xcb, 0x9a, 0x78, 0x61, 0x53, 0x3f, 0xdb, 0x31, 0x92, 0x92, 0xb9, + 0x88, 0x22, 0x29, 0x59, 0x3c, 0x58, 0x5b, 0x12, 0x4b, 0x52, 0x52, 0x56, 0x95, 0x48, 0x4a, 0xae, + 0x87, 0x4e, 0x91, 0x94, 0x34, 0x5d, 0x3f, 0x49, 0xc9, 0x87, 0xe4, 0x38, 0x96, 0x55, 0x8a, 0xe8, + 0xa9, 0xa4, 0xa7, 0xf2, 0x69, 0xe4, 0x9b, 0x9e, 0x4a, 0x87, 0x48, 0x36, 0x71, 0xd2, 0x35, 0xc6, + 0x2c, 0xe2, 0xa4, 0x79, 0x6c, 0x22, 0x71, 0x52, 0x97, 0x4d, 0xb6, 0xbe, 0xe9, 0xd6, 0x36, 0xe1, + 0x66, 0xa6, 0xdc, 0xcc, 0xa4, 0x9b, 0x98, 0x76, 0x1d, 0xc2, 0x46, 0x9c, 0x74, 0x65, 0xeb, 0x48, + 0x9c, 0x74, 0x95, 0xe0, 0x16, 0x71, 0xd2, 0x52, 0xc7, 0xb4, 0x88, 0x93, 0x8a, 0xaa, 0x12, 0x71, + 0xd2, 0xe2, 0x4a, 0x21, 0x4e, 0xaa, 0xc1, 0x39, 0xd7, 0x39, 0x4e, 0x4a, 0xf3, 0x46, 0x51, 0xd4, + 0xc8, 0x45, 0xf5, 0x71, 0xb7, 0x79, 0xa3, 0xb1, 0x26, 0xcd, 0x1b, 0x32, 0x51, 0x7e, 0xd1, 0xe8, + 0xbe, 0x78, 0xfb, 0x46, 0x95, 0xf6, 0x0d, 0xbd, 0x90, 0x0f, 0xed, 0x1b, 0x25, 0x84, 0x32, 0xb1, + 0xf6, 0x8d, 0x30, 0x0e, 0x3e, 0x77, 0xc3, 0x8e, 0x7c, 0x5a, 0x72, 0x2a, 0x48, 0x2a, 0x4d, 0xa1, + 0x33, 0xad, 0x50, 0x98, 0x3b, 0xd2, 0x28, 0xe2, 0x94, 0x29, 0x55, 0x37, 0xa9, 0xea, 0xa6, 0x55, + 0xd5, 0xc4, 0x16, 0x93, 0x8c, 0x8a, 0x47, 0xc3, 0x15, 0xa7, 0x09, 0x0a, 0x4f, 0x11, 0x84, 0x60, + 0x96, 0x9a, 0x60, 0x0a, 0x84, 0x26, 0x72, 0xe4, 0x70, 0x1b, 0x0e, 0x69, 0x88, 0x94, 0x66, 0x38, + 0xa6, 0x11, 0x95, 0x5c, 0x79, 0x73, 0x0e, 0x51, 0x86, 0x7c, 0x94, 0x73, 0x75, 0x55, 0x5a, 0xed, + 0x13, 0x56, 0x54, 0xc2, 0x91, 0xb7, 0x32, 0xf6, 0x54, 0x66, 0xaf, 0xce, 0x1b, 0x6f, 0xeb, 0x8a, + 0x9f, 0x7a, 0x18, 0x0d, 0xd2, 0x5a, 0x9a, 0xe6, 0xc3, 0x43, 0x2a, 0x47, 0x51, 0x5c, 0xef, 0x86, + 0x23, 0x8f, 0x63, 0x50, 0x79, 0xf3, 0x2c, 0x1e, 0x76, 0xbb, 0x2f, 0x72, 0xf8, 0xd0, 0xe0, 0xaf, + 0xfc, 0x3f, 0xf4, 0x38, 0xe9, 0x84, 0x49, 0xd8, 0xd9, 0xff, 0x9a, 0x7d, 0xa4, 0xe9, 0xab, 0xcd, + 0xd9, 0xae, 0x58, 0xda, 0x93, 0x1c, 0x8c, 0xc7, 0x4f, 0x19, 0x8d, 0xd5, 0x6c, 0xc4, 0xcf, 0x9f, + 0xec, 0x9f, 0xfb, 0xcb, 0x9f, 0x54, 0x98, 0xbc, 0x14, 0x45, 0x5d, 0x41, 0x7e, 0xee, 0xed, 0x3c, + 0x7d, 0x6f, 0x7f, 0x62, 0x5f, 0x2b, 0x49, 0xf4, 0xf9, 0xa7, 0x37, 0x73, 0xe6, 0xe4, 0x8f, 0x3e, + 0xe4, 0x27, 0xdf, 0xe9, 0x6a, 0x61, 0xda, 0x95, 0xc3, 0xb1, 0x79, 0xc4, 0x0e, 0xee, 0xc6, 0x06, + 0x92, 0xe8, 0xf3, 0x8a, 0xf1, 0x81, 0xbc, 0xf8, 0x7f, 0xee, 0xfc, 0x3e, 0x77, 0xfe, 0x7e, 0x9f, + 0x9f, 0x4f, 0xf7, 0xae, 0x20, 0xd6, 0x68, 0xd5, 0xf0, 0x65, 0x25, 0xb8, 0x8c, 0xbc, 0x41, 0x70, + 0x19, 0xad, 0x5e, 0x20, 0x3c, 0xbf, 0x50, 0x65, 0xf6, 0x91, 0xab, 0xba, 0x5b, 0xb9, 0x64, 0x4f, + 0x72, 0xcb, 0x96, 0xe4, 0x19, 0xe2, 0xcb, 0xf7, 0xb8, 0x4a, 0x85, 0xed, 0xc4, 0xc2, 0x73, 0x62, + 0x61, 0xb8, 0xdc, 0x8f, 0xb3, 0x1b, 0xc4, 0x23, 0xaf, 0x2c, 0xc5, 0xec, 0x6c, 0xe6, 0xa7, 0x22, + 0xf7, 0x4f, 0x7d, 0x5e, 0x1a, 0x92, 0x6f, 0xea, 0x34, 0xf7, 0xf8, 0xbf, 0x44, 0xbc, 0x5f, 0xc6, + 0x28, 0x48, 0x19, 0x07, 0x71, 0x23, 0x21, 0x6e, 0x2c, 0xc4, 0x8d, 0x86, 0x9b, 0x21, 0xb4, 0xbc, + 0x53, 0x9e, 0xb3, 0xa3, 0xef, 0x65, 0x7c, 0x51, 0xa8, 0x42, 0x63, 0x51, 0x8c, 0x4c, 0xa5, 0xc6, + 0x26, 0x83, 0x36, 0x85, 0xcd, 0x90, 0xb4, 0x39, 0x52, 0x33, 0x4b, 0x6a, 0xe6, 0x49, 0xcd, 0x4c, + 0xe5, 0x6b, 0xae, 0x72, 0x36, 0x5b, 0xb3, 0x5d, 0x10, 0x4b, 0x1b, 0xce, 0xf4, 0xbe, 0x1b, 0x06, + 0x97, 0x49, 0x78, 0x29, 0xa1, 0xf4, 0x53, 0xaf, 0x46, 0xa0, 0x4d, 0xa6, 0xd2, 0xca, 0x62, 0x49, + 0xbf, 0xfe, 0x3a, 0x49, 0x28, 0xbd, 0x5c, 0x34, 0x98, 0xeb, 0x30, 0xdf, 0xb9, 0x7f, 0xb3, 0xed, + 0x0d, 0x92, 0x34, 0xf4, 0xfa, 0xbd, 0x6e, 0xd4, 0xfe, 0x2a, 0x38, 0xeb, 0xf9, 0xbe, 0x24, 0xe6, + 0x3e, 0x03, 0x47, 0xc0, 0x11, 0x05, 0x84, 0xf9, 0x7d, 0x70, 0x77, 0xb2, 0xa7, 0xf2, 0x05, 0x84, + 0x53, 0x41, 0x4c, 0x80, 0xd6, 0x36, 0x6d, 0xba, 0x26, 0x4e, 0xcb, 0xd4, 0xa9, 0x9b, 0x3c, 0x75, + 0xd3, 0xa7, 0x6e, 0x02, 0x65, 0x4c, 0xa1, 0x90, 0x49, 0x14, 0x37, 0x8d, 0x33, 0x01, 0x49, 0x6f, + 0x98, 0x86, 0x8a, 0xa3, 0x4d, 0x32, 0x79, 0x3a, 0x73, 0x46, 0xb6, 0x98, 0x33, 0xe2, 0xb8, 0x21, + 0xd5, 0x36, 0xa8, 0x66, 0x86, 0xd5, 0xcc, 0xc0, 0x9a, 0x19, 0x5a, 0x59, 0x83, 0x2b, 0x6c, 0x78, + 0xd5, 0x0c, 0xf0, 0xa2, 0x21, 0xd6, 0xd3, 0xff, 0x05, 0x7b, 0xac, 0xa5, 0xfb, 0x3a, 0x66, 0x59, + 0xdd, 0x3c, 0x5b, 0x98, 0x69, 0x5b, 0x73, 0x6d, 0x65, 0xb6, 0xcd, 0xcd, 0xb7, 0xb9, 0x19, 0x37, + 0x37, 0xe7, 0x3a, 0x66, 0x5d, 0xc9, 0xbc, 0xab, 0x9b, 0xf9, 0x99, 0xc0, 0x76, 0xaf, 0xdb, 0x4b, + 0xf4, 0xcf, 0xcd, 0xfc, 0xc6, 0xaa, 0x91, 0xf8, 0x17, 0x6b, 0x31, 0xdb, 0x46, 0x1b, 0x06, 0x2c, + 0xe1, 0xc0, 0x0d, 0x58, 0xb0, 0x86, 0x07, 0x67, 0x60, 0xc2, 0x19, 0xb8, 0x70, 0x06, 0x36, 0x74, + 0xe1, 0x43, 0x19, 0x46, 0x66, 0xbb, 0xac, 0x36, 0xa5, 0xf0, 0xd1, 0x73, 0x2f, 0x97, 0x80, 0xfd, + 0x61, 0x2f, 0xff, 0xb5, 0x81, 0xec, 0xa5, 0x04, 0xee, 0x04, 0xe8, 0x36, 0xca, 0xa9, 0xda, 0x9a, + 0xd3, 0xf0, 0xc2, 0xb8, 0xd3, 0xef, 0x45, 0x63, 0xc3, 0x61, 0xe4, 0xb3, 0xcc, 0x56, 0x80, 0xdb, + 0x82, 0xdb, 0x82, 0xdb, 0x82, 0xdb, 0x82, 0xdb, 0x82, 0xdb, 0x52, 0x52, 0xb7, 0x65, 0x86, 0x75, + 0x78, 0x2e, 0x2b, 0x6f, 0x6e, 0x3f, 0x48, 0xbf, 0x78, 0x51, 0xc7, 0xce, 0x71, 0x99, 0x2e, 0x00, + 0xbf, 0x05, 0xbf, 0x05, 0xbf, 0x05, 0xbf, 0x05, 0xbf, 0x05, 0xbf, 0xa5, 0xa4, 0x7e, 0xcb, 0x14, + 0xea, 0x70, 0x5b, 0x56, 0xde, 0x5b, 0xd9, 0x2b, 0xf9, 0xbe, 0xab, 0xd1, 0x92, 0x57, 0xf5, 0x7d, + 0x57, 0x97, 0x71, 0x59, 0x70, 0x59, 0x70, 0x59, 0x70, 0x59, 0xca, 0xeb, 0xb2, 0x68, 0x17, 0x1c, + 0xcc, 0x04, 0x07, 0x69, 0x9a, 0x78, 0x51, 0xdc, 0x09, 0xff, 0xb2, 0x3b, 0x74, 0xb3, 0x76, 0xe4, + 0xf9, 0x5a, 0x8c, 0x94, 0xdd, 0x86, 0x23, 0x9b, 0x03, 0x8f, 0x0b, 0x00, 0xe4, 0x16, 0x10, 0xb9, + 0x02, 0x48, 0xce, 0x01, 0x93, 0x73, 0x00, 0xe5, 0x1c, 0x50, 0xd9, 0x00, 0x96, 0x11, 0x70, 0xd9, + 0x73, 0x6e, 0x87, 0xb8, 0xb7, 0x0b, 0x1c, 0xfc, 0x21, 0x2e, 0xfe, 0xe0, 0xff, 0x8d, 0xc1, 0x76, + 0x10, 0xa6, 0x83, 0xd9, 0x77, 0x19, 0x67, 0x9f, 0x00, 0xf0, 0xc6, 0x7a, 0x1c, 0x19, 0x83, 0xe3, + 0x62, 0x54, 0xeb, 0xb9, 0x74, 0x4e, 0x2c, 0x6a, 0x3e, 0x71, 0xb4, 0x70, 0xb4, 0x70, 0xb4, 0x70, + 0xb4, 0x70, 0xb4, 0x4a, 0xe0, 0x68, 0xa9, 0xdd, 0x84, 0xfd, 0x3d, 0x14, 0xb1, 0x74, 0xb3, 0x74, + 0x6f, 0xce, 0x7e, 0xec, 0xcb, 0xd6, 0x66, 0x3e, 0xb3, 0xba, 0x69, 0xdb, 0x51, 0xf7, 0x62, 0x69, + 0x39, 0x46, 0x37, 0x73, 0x3f, 0xba, 0x1e, 0xc3, 0xdb, 0x95, 0x1d, 0x33, 0xa7, 0x8b, 0x2a, 0x1c, + 0xfc, 0x85, 0x0a, 0x7f, 0x47, 0x85, 0xad, 0x6e, 0x04, 0x2f, 0x94, 0x2e, 0x6f, 0xac, 0xa7, 0xf4, + 0x0b, 0x82, 0x06, 0x82, 0x41, 0x83, 0xeb, 0xeb, 0x61, 0x1c, 0xa5, 0x5f, 0x5d, 0x49, 0xd6, 0xdc, + 0x5f, 0x10, 0x81, 0x04, 0x02, 0x09, 0x04, 0x12, 0x08, 0x24, 0x10, 0x48, 0x20, 0x90, 0xf0, 0x44, + 0xbb, 0x41, 0xc6, 0xe6, 0xd9, 0x8f, 0x64, 0x6c, 0xa6, 0x88, 0x1b, 0x85, 0x83, 0xd9, 0xf7, 0x5f, + 0x49, 0xda, 0xe8, 0xbc, 0x1c, 0xb3, 0x7e, 0xd7, 0xa5, 0xd3, 0x62, 0xd4, 0xf7, 0x8a, 0xc7, 0x85, + 0xc7, 0x85, 0xc7, 0x85, 0xc7, 0x85, 0xc7, 0x55, 0x02, 0x8f, 0x2b, 0xea, 0x7b, 0x41, 0xa7, 0x93, + 0x84, 0x83, 0x81, 0x0b, 0x4e, 0xd7, 0x9e, 0xe1, 0x1a, 0xb2, 0x77, 0xb2, 0xf6, 0xe9, 0x9b, 0x85, + 0x6b, 0x18, 0xec, 0x75, 0x63, 0x49, 0x47, 0x7e, 0x73, 0x60, 0x2d, 0xad, 0x20, 0x4d, 0xc3, 0x24, + 0x36, 0x57, 0x97, 0xd9, 0x82, 0xfe, 0xf3, 0xcb, 0x2f, 0x9f, 0x36, 0xbd, 0xbd, 0x8b, 0x6f, 0x9f, + 0xb6, 0xbc, 0xbd, 0x8b, 0xc9, 0xb7, 0x5b, 0xe3, 0xff, 0x4c, 0xbe, 0xaf, 0x7e, 0xda, 0xf4, 0xb6, + 0xa7, 0xdf, 0xef, 0x7c, 0xda, 0xf4, 0x76, 0x2e, 0x9e, 0xff, 0xf1, 0xc7, 0xaf, 0xcf, 0xff, 0x7e, + 0x75, 0xfb, 0xf4, 0x3f, 0xfc, 0x47, 0xc5, 0xfc, 0xa1, 0x2f, 0x6c, 0x03, 0xeb, 0x2f, 0x30, 0x12, + 0x33, 0x23, 0xb1, 0x8b, 0x91, 0x28, 0x96, 0x91, 0x08, 0xbc, 0xcb, 0x9a, 0xf7, 0xee, 0xe2, 0xef, + 0xad, 0x17, 0xdb, 0xb7, 0x6f, 0x9e, 0xff, 0xfd, 0xfa, 0xf6, 0xfe, 0x0f, 0xbf, 0x3d, 0xf4, 0x6b, + 0x5b, 0x2f, 0x5e, 0xdf, 0xbe, 0x79, 0xe4, 0x5f, 0x76, 0x6f, 0xdf, 0xfc, 0xe0, 0x67, 0xec, 0xdc, + 0xfe, 0xb2, 0xf4, 0xab, 0xa3, 0x9f, 0x57, 0x1f, 0xfb, 0x83, 0xed, 0x47, 0xfe, 0xe0, 0xd5, 0x63, + 0x7f, 0xf0, 0xea, 0x91, 0x3f, 0x78, 0x74, 0x49, 0xd5, 0x47, 0xfe, 0x60, 0xe7, 0xf6, 0xdb, 0xd2, + 0xef, 0xff, 0xf2, 0xf0, 0xaf, 0xee, 0xde, 0x3e, 0xff, 0xf6, 0xd8, 0xbf, 0xbd, 0xbe, 0xfd, 0xf6, + 0xe6, 0x39, 0x26, 0x93, 0x5c, 0x64, 0x29, 0x63, 0x61, 0x7f, 0xa5, 0x9e, 0x73, 0xf9, 0xc8, 0x87, + 0x16, 0x45, 0x84, 0x8c, 0x08, 0x19, 0x11, 0x32, 0x22, 0x64, 0x44, 0xc8, 0x88, 0x90, 0x3d, 0xd1, + 0x6e, 0x90, 0x93, 0x7c, 0xf6, 0x23, 0x39, 0xc9, 0xbb, 0xa8, 0x1b, 0x85, 0x83, 0x85, 0xff, 0x9f, + 0xdc, 0xa4, 0xd2, 0x4b, 0x8a, 0xe2, 0x9b, 0xa0, 0x1b, 0x75, 0xbc, 0x24, 0x0c, 0x06, 0xbd, 0xd8, + 0xde, 0x15, 0xbb, 0xb7, 0x1e, 0xbc, 0x30, 0xbc, 0x30, 0xbc, 0x30, 0xbc, 0x30, 0xbc, 0x30, 0xbc, + 0xb0, 0xa7, 0x22, 0x49, 0x27, 0x8c, 0xd3, 0x28, 0xfd, 0xea, 0x88, 0x27, 0x66, 0xd8, 0xf3, 0x50, + 0x69, 0x64, 0x5b, 0xb1, 0x1f, 0x0c, 0x1c, 0x30, 0x61, 0xd3, 0x17, 0xd4, 0x68, 0x7e, 0xac, 0x1d, + 0x36, 0xde, 0xfa, 0x27, 0xc7, 0xff, 0x3f, 0x7b, 0x67, 0xdb, 0xd3, 0x36, 0xd2, 0x7e, 0xf1, 0xf7, + 0xfd, 0x14, 0xc8, 0xba, 0x5f, 0x14, 0xa9, 0xae, 0x09, 0xe4, 0xa1, 0xf4, 0x5d, 0xba, 0xd0, 0x15, + 0xba, 0x29, 0x41, 0x01, 0x56, 0xfa, 0x8b, 0xcd, 0x46, 0x93, 0x64, 0x42, 0xa7, 0x84, 0x71, 0x64, + 0x4f, 0x28, 0xa8, 0xe5, 0xbb, 0xff, 0x95, 0xd8, 0x31, 0x0d, 0x0e, 0xf7, 0x36, 0x84, 0xcc, 0x1c, + 0x27, 0x07, 0xad, 0x84, 0x37, 0x90, 0xe6, 0xc2, 0x33, 0xd7, 0x75, 0x7e, 0x73, 0x3c, 0x0f, 0x17, + 0xe7, 0x87, 0xed, 0xe6, 0x61, 0xfd, 0xac, 0x71, 0xe2, 0xba, 0x9a, 0x4d, 0x96, 0xaa, 0xc4, 0x10, + 0x06, 0x3c, 0xc8, 0x5a, 0xa2, 0xa7, 0xad, 0x55, 0x3f, 0x6b, 0x1f, 0x37, 0x1a, 0xa7, 0x1e, 0x57, + 0x7d, 0xc1, 0x36, 0xd1, 0x1f, 0x8d, 0x93, 0xcf, 0x87, 0x07, 0x6c, 0x21, 0xdc, 0x16, 0x6a, 0x34, + 0x8f, 0xfe, 0x3c, 0x3a, 0xa9, 0x9f, 0x37, 0x9a, 0x6c, 0x25, 0xe0, 0x3c, 0x3a, 0xbe, 0x38, 0x3b, + 0x3f, 0x6c, 0xa2, 0xd4, 0x3b, 0xa7, 0x11, 0xb4, 0x36, 0x8d, 0x9f, 0x37, 0xc2, 0xfd, 0x19, 0x88, + 0xd8, 0xf8, 0x37, 0x61, 0x4f, 0xf5, 0x95, 0xec, 0xb9, 0x37, 0x7f, 0x66, 0xc3, 0xa1, 0xf7, 0x43, + 0xef, 0x87, 0xde, 0x0f, 0xbd, 0x1f, 0x7a, 0x3f, 0xf4, 0x7e, 0x16, 0xac, 0x1b, 0x46, 0xdd, 0x48, + 0xa3, 0xba, 0xd7, 0x71, 0xb5, 0x0c, 0xe0, 0xfd, 0x38, 0x9c, 0x5a, 0xe8, 0x5d, 0xe8, 0x64, 0x67, + 0x0b, 0x4f, 0x0b, 0x1d, 0xc6, 0xb2, 0x1b, 0xea, 0x9e, 0xd3, 0x79, 0xfb, 0xdc, 0xf3, 0x28, 0xbd, + 0x11, 0xdc, 0xf3, 0xe8, 0xf9, 0x70, 0xb8, 0xe7, 0x51, 0x11, 0x46, 0xed, 0xdc, 0xf3, 0xe8, 0x37, + 0xba, 0x70, 0xe9, 0x43, 0xb9, 0x5c, 0xad, 0x95, 0xcb, 0x3b, 0xb5, 0xbd, 0xda, 0xce, 0x7e, 0xa5, + 0x52, 0xaa, 0x96, 0xb8, 0xfb, 0x11, 0xa8, 0xc7, 0xc1, 0x19, 0xc7, 0xeb, 0xe8, 0x71, 0xb8, 0x3a, + 0xb3, 0x31, 0x07, 0xa5, 0x6e, 0xce, 0x6e, 0xcc, 0xc2, 0x38, 0x90, 0x7d, 0x31, 0x1a, 0x4c, 0x86, + 0x46, 0x3b, 0xf4, 0x56, 0xe8, 0xad, 0xd0, 0x5b, 0xa1, 0xb7, 0x42, 0x6f, 0x85, 0xde, 0xca, 0xa2, + 0x75, 0x83, 0x5b, 0x37, 0xd3, 0xc6, 0xa0, 0x8d, 0x41, 0x1b, 0x83, 0x36, 0xc6, 0x06, 0x75, 0x61, + 0x6e, 0xdd, 0x4c, 0xf3, 0x82, 0xe6, 0x85, 0x7d, 0xf3, 0x22, 0x5d, 0x0c, 0x13, 0x8e, 0x8c, 0x74, + 0x6f, 0x60, 0xfc, 0x1a, 0x0c, 0x0d, 0x04, 0x1a, 0x08, 0x34, 0x10, 0x68, 0x20, 0xd0, 0x40, 0xa0, + 0x81, 0xb0, 0x60, 0xdd, 0xe8, 0x84, 0xe1, 0x40, 0x0a, 0x8d, 0xb0, 0x28, 0xa7, 0xb4, 0x29, 0xe8, + 0xb2, 0xd6, 0x07, 0xa0, 0xd7, 0xb5, 0x0e, 0x8d, 0x18, 0x8f, 0x06, 0xdc, 0x9c, 0x83, 0x1e, 0x77, + 0xbf, 0xca, 0x1b, 0x31, 0x4c, 0x97, 0xbb, 0x07, 0xe1, 0x50, 0xea, 0xee, 0x04, 0x14, 0x7c, 0x2d, + 0xcd, 0xf7, 0x30, 0xba, 0xf6, 0x95, 0x8e, 0x8d, 0xd0, 0x5d, 0x19, 0x3c, 0x7d, 0x21, 0xce, 0xbd, + 0x12, 0x0c, 0xa3, 0xd0, 0x84, 0xdd, 0x70, 0x10, 0x67, 0x57, 0x41, 0xe7, 0x6a, 0x18, 0x44, 0xaa, + 0x13, 0x88, 0xbe, 0xf2, 0x63, 0xd1, 0x57, 0x71, 0x76, 0x15, 0x4c, 0xf6, 0x5c, 0x8c, 0x23, 0x23, + 0xfd, 0x61, 0x38, 0x50, 0xdd, 0xfb, 0x60, 0x90, 0x94, 0xd6, 0x60, 0x82, 0x69, 0x71, 0xf2, 0x2d, + 0x59, 0x4c, 0x6f, 0xb7, 0xd2, 0xda, 0xeb, 0x72, 0x16, 0xbb, 0x9b, 0x37, 0xd2, 0xd7, 0x3a, 0xfc, + 0xae, 0x7d, 0x61, 0x4c, 0xa4, 0x3a, 0xe3, 0x3b, 0x6c, 0xbd, 0xcb, 0x3d, 0x1a, 0xb1, 0xf9, 0x58, + 0x2c, 0x27, 0xde, 0xb4, 0x8c, 0x5a, 0xfe, 0x58, 0x57, 0x14, 0xee, 0x92, 0xbe, 0x31, 0xa8, 0xdb, + 0x35, 0x6d, 0xc3, 0x50, 0x36, 0x0c, 0x5d, 0xc3, 0x50, 0xf5, 0x7a, 0x23, 0xc6, 0x81, 0x72, 0x73, + 0xea, 0x76, 0xbe, 0xc8, 0xbb, 0xb7, 0x81, 0xf2, 0x21, 0xb9, 0x35, 0x83, 0x4a, 0x34, 0x83, 0x68, + 0x06, 0xd1, 0x0c, 0xa2, 0x19, 0x44, 0x33, 0x08, 0x5d, 0xce, 0xb2, 0x00, 0xc6, 0xda, 0xe1, 0x1b, + 0xd7, 0x96, 0xd4, 0x4c, 0x05, 0x7b, 0x0c, 0xc9, 0x71, 0x6a, 0x60, 0x3c, 0x02, 0x76, 0x2e, 0x6f, + 0x48, 0x32, 0x87, 0x29, 0x77, 0x68, 0xb2, 0x07, 0x2b, 0x7f, 0xb0, 0x32, 0x08, 0x2b, 0x87, 0x6e, + 0x65, 0xd1, 0xb1, 0x3c, 0x66, 0xad, 0x72, 0x8e, 0x20, 0x50, 0x5b, 0x58, 0x5b, 0xcb, 0xe6, 0x46, + 0x5f, 0x35, 0x8c, 0x83, 0x33, 0xa6, 0x5b, 0xcd, 0x26, 0xfb, 0xc6, 0x3e, 0x8a, 0xf9, 0x86, 0x4e, + 0xca, 0x71, 0x98, 0x3a, 0x5e, 0xf2, 0xb4, 0x01, 0x06, 0xec, 0x92, 0x70, 0x30, 0xa0, 0xae, 0x44, + 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x57, 0xad, 0xe2, 0xda, 0xfb, 0x98, 0xf5, + 0x40, 0x06, 0x12, 0x68, 0xfd, 0xc4, 0x8c, 0x15, 0x32, 0x8e, 0xec, 0x1d, 0x27, 0xc5, 0x03, 0x8b, + 0x28, 0xa2, 0x98, 0x62, 0x8b, 0x2a, 0xaa, 0xb8, 0xc2, 0x8b, 0x2c, 0xbc, 0xd8, 0xc2, 0x8b, 0x2e, + 0x86, 0xf8, 0x82, 0x88, 0x30, 0x9e, 0xc3, 0x92, 0xab, 0x5b, 0x23, 0xa5, 0x4d, 0xa9, 0x8a, 0x54, + 0xb3, 0x52, 0x15, 0xac, 0x02, 0x85, 0x84, 0xb1, 0x0c, 0xf6, 0xe9, 0x17, 0x56, 0x4d, 0xdf, 0x42, + 0x5b, 0x26, 0x0b, 0x8e, 0x57, 0xb9, 0xf0, 0xc0, 0x96, 0xd1, 0xe6, 0xe2, 0x03, 0x5c, 0x8a, 0x08, + 0x5a, 0xee, 0x67, 0x53, 0x42, 0xdc, 0x31, 0x25, 0x96, 0x4c, 0x89, 0x6a, 0xa5, 0xb2, 0x57, 0x61, + 0x5a, 0x14, 0x9b, 0xc5, 0xf0, 0xa2, 0x69, 0xbd, 0xe1, 0xfd, 0x00, 0x29, 0x9b, 0x40, 0x33, 0x65, + 0x72, 0x88, 0x8c, 0x32, 0x63, 0x06, 0xb4, 0x6a, 0xd3, 0x27, 0x5a, 0xa4, 0x33, 0xd1, 0x27, 0x5a, + 0xa8, 0xa7, 0xd3, 0x27, 0x5a, 0x32, 0x40, 0xfa, 0x44, 0x05, 0x1a, 0x38, 0x80, 0xfb, 0x44, 0x1f, + 0x00, 0x6d, 0xa2, 0x0a, 0x6d, 0xa2, 0x7f, 0xf9, 0xa2, 0x4d, 0xb4, 0x96, 0x63, 0x62, 0xda, 0x44, + 0x45, 0xaf, 0xf6, 0xb3, 0x29, 0x41, 0x9b, 0x68, 0xe9, 0x94, 0xd8, 0xad, 0xd0, 0x24, 0x5a, 0x03, + 0x5b, 0x66, 0x8b, 0x26, 0x11, 0xe0, 0xfd, 0x80, 0x31, 0x89, 0x6e, 0xd3, 0x6c, 0x47, 0x74, 0x89, + 0x92, 0xd8, 0x68, 0x13, 0xcd, 0x0b, 0x87, 0x36, 0xd1, 0x02, 0xbd, 0x89, 0x36, 0xd1, 0x42, 0x3d, + 0x9d, 0x36, 0xd1, 0x92, 0x01, 0xd2, 0x26, 0x2a, 0xd0, 0xc0, 0x01, 0xd8, 0x26, 0xea, 0x28, 0x2d, + 0xa2, 0x7b, 0x40, 0x9f, 0x68, 0x1f, 0x28, 0xa4, 0x63, 0xa9, 0xaf, 0x26, 0x0b, 0xb9, 0x68, 0x14, + 0xfd, 0xdb, 0xa8, 0x98, 0x46, 0xd1, 0xd2, 0xa3, 0xe2, 0x12, 0xc7, 0xc4, 0x05, 0xaf, 0xf7, 0xb3, + 0x29, 0x41, 0xa3, 0x68, 0xe9, 0x94, 0xe0, 0x7c, 0xa2, 0x35, 0x31, 0x67, 0xb6, 0x68, 0x15, 0x01, + 0xde, 0x0f, 0x04, 0xab, 0x48, 0xde, 0x19, 0xa9, 0x7b, 0xb2, 0x87, 0x67, 0x14, 0x65, 0x91, 0xd1, + 0x26, 0x9a, 0x17, 0x0e, 0x6d, 0xa2, 0x05, 0xfa, 0x12, 0x6d, 0xa2, 0x85, 0x7a, 0x3a, 0x6d, 0xa2, + 0x25, 0x03, 0xa4, 0x4d, 0x54, 0xa0, 0x61, 0x03, 0xb2, 0x4d, 0xe4, 0xfc, 0x6c, 0x84, 0xe7, 0x64, + 0xd0, 0xd1, 0x59, 0x09, 0x84, 0xb8, 0x79, 0x6d, 0x12, 0x0e, 0xc7, 0x23, 0x21, 0x31, 0xc0, 0x83, + 0xb8, 0x2c, 0x32, 0x42, 0x1c, 0x21, 0x8e, 0x10, 0x47, 0x88, 0x23, 0xc4, 0x11, 0xe2, 0x08, 0x71, + 0x84, 0x38, 0x42, 0xdc, 0xd3, 0x36, 0x19, 0x8a, 0xc8, 0x28, 0x44, 0x86, 0x9b, 0x06, 0x46, 0x84, + 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x7b, + 0xda, 0x26, 0x26, 0x12, 0x3a, 0x56, 0x46, 0xdd, 0x02, 0xce, 0xbb, 0xff, 0x25, 0x36, 0x82, 0x1c, + 0x41, 0x8e, 0x20, 0x47, 0x90, 0x23, 0xc8, 0x11, 0xe4, 0x08, 0x72, 0x04, 0x39, 0x30, 0x90, 0xdb, + 0xe8, 0xed, 0xe8, 0x1d, 0x1f, 0x5e, 0x9f, 0x8b, 0x07, 0xff, 0x30, 0xfb, 0xfc, 0xb9, 0xe7, 0xf9, + 0x97, 0x5c, 0x9c, 0x78, 0x8f, 0xd3, 0xaf, 0x37, 0xeb, 0x30, 0xcb, 0xff, 0xca, 0x7b, 0x84, 0xdd, + 0xe8, 0xbc, 0x63, 0x15, 0x9b, 0xba, 0x31, 0x8e, 0x4f, 0xd6, 0xfc, 0xa2, 0xf4, 0xe1, 0x40, 0x8e, + 0xd1, 0x29, 0xf6, 0x3e, 0x6e, 0xe9, 0xd1, 0x60, 0xe0, 0xf0, 0x24, 0xa8, 0x2f, 0xe2, 0x0e, 0x27, + 0x98, 0x46, 0xd4, 0x93, 0x91, 0xec, 0x7d, 0xba, 0x4f, 0x43, 0xd9, 0xa8, 0x24, 0x01, 0x91, 0x99, + 0x35, 0x91, 0x17, 0xcf, 0xe9, 0xe9, 0x6a, 0xd1, 0xa8, 0x6b, 0x74, 0xca, 0xb7, 0x27, 0xc9, 0x2d, + 0x39, 0x4a, 0xef, 0x48, 0xfb, 0x34, 0xbd, 0x0f, 0xed, 0x4f, 0x57, 0xc3, 0x76, 0x53, 0x75, 0xda, + 0xf5, 0xbe, 0x3a, 0x13, 0x7d, 0xd5, 0x3e, 0x1a, 0xde, 0x96, 0xcf, 0x22, 0x23, 0x4f, 0x27, 0x7f, + 0x7a, 0xfb, 0x38, 0xec, 0x8e, 0x7f, 0xda, 0x1c, 0xff, 0xc9, 0xed, 0x8b, 0xe4, 0xef, 0xab, 0x67, + 0x7f, 0xde, 0x9b, 0xcd, 0x50, 0x2d, 0xbb, 0x9f, 0x68, 0x39, 0xf5, 0x5d, 0xa7, 0x7c, 0x21, 0x53, + 0xdd, 0x6e, 0xcf, 0xb7, 0xd7, 0xff, 0xec, 0x7c, 0x92, 0xa5, 0x1e, 0x3e, 0x25, 0xbe, 0x71, 0xd7, + 0xf2, 0x55, 0x6f, 0x4b, 0xea, 0xde, 0x30, 0x54, 0xda, 0x6c, 0x75, 0xc3, 0x41, 0x18, 0x59, 0xaa, + 0xcd, 0x6e, 0x70, 0xcf, 0x29, 0xde, 0x39, 0xc5, 0x39, 0x37, 0xf8, 0x66, 0xab, 0x47, 0x3b, 0xaa, + 0xd5, 0xf8, 0x35, 0xda, 0x22, 0x69, 0xad, 0x80, 0xac, 0xec, 0xc8, 0xc9, 0xea, 0x8b, 0xfb, 0x6a, + 0x3f, 0x61, 0xc5, 0x49, 0x66, 0x3b, 0xb9, 0x90, 0x93, 0x6a, 0xb5, 0x1d, 0x72, 0x75, 0xdd, 0x64, + 0x35, 0xff, 0xf2, 0x8a, 0x3a, 0x9e, 0xad, 0x0e, 0x07, 0xd9, 0xd1, 0x56, 0x58, 0xb0, 0x5f, 0xb5, + 0x40, 0xaf, 0x26, 0x13, 0x5e, 0xbf, 0x9f, 0xae, 0xa0, 0x8f, 0x7a, 0x5a, 0xaa, 0xab, 0xaf, 0x9d, + 0x30, 0x8a, 0x57, 0xd6, 0x3d, 0xb3, 0xe7, 0x6f, 0x8f, 0x1f, 0xb5, 0xa2, 0x5c, 0x5b, 0xed, 0xc1, + 0xea, 0x2b, 0x9f, 0x24, 0x62, 0x63, 0xd2, 0x87, 0xdd, 0x49, 0x1c, 0xb6, 0x26, 0x65, 0x58, 0x9f, + 0x64, 0x61, 0x7d, 0xd2, 0x84, 0xf5, 0x49, 0x10, 0xc5, 0x52, 0xd9, 0x55, 0x1f, 0xe4, 0x9d, 0xd5, + 0xae, 0xd5, 0x77, 0xe5, 0xa7, 0xd5, 0x72, 0xd5, 0x3d, 0x79, 0xb5, 0x45, 0xd3, 0x5a, 0xf1, 0xb4, + 0x59, 0x44, 0xdd, 0x14, 0x53, 0xdb, 0x45, 0xd5, 0x59, 0x71, 0x75, 0x56, 0x64, 0x9d, 0x15, 0xdb, + 0xf5, 0x18, 0x5b, 0xaf, 0xba, 0x08, 0x67, 0x1f, 0x24, 0x7a, 0xdf, 0x26, 0x6d, 0xa2, 0xb4, 0x3f, + 0x0c, 0x63, 0x63, 0x2f, 0x13, 0xb2, 0x7d, 0xcc, 0x9f, 0x04, 0x60, 0xcb, 0xeb, 0xb6, 0x52, 0xaa, + 0xad, 0x97, 0x6c, 0x17, 0xa5, 0xdb, 0x6d, 0x09, 0x77, 0x55, 0xca, 0x9d, 0x97, 0x74, 0xe7, 0xa5, + 0xdd, 0x79, 0x89, 0xb7, 0x53, 0xea, 0x2d, 0x95, 0x7c, 0xeb, 0xa5, 0x3f, 0xfb, 0xc0, 0xd4, 0xc2, + 0xb4, 0x9e, 0x38, 0xd3, 0x72, 0x91, 0x7e, 0xbe, 0xe5, 0x4e, 0x6b, 0x57, 0x00, 0x9c, 0x09, 0x81, + 0x4b, 0x41, 0xc0, 0x10, 0x06, 0xd7, 0x02, 0x01, 0x23, 0x14, 0x30, 0x82, 0x01, 0x23, 0x1c, 0x76, + 0x05, 0xc4, 0xb2, 0x90, 0x38, 0x13, 0x94, 0x59, 0x61, 0x71, 0x97, 0x6f, 0x33, 0xfa, 0xe2, 0x2a, + 0xd7, 0xdc, 0xc8, 0x8c, 0x73, 0xb9, 0x41, 0x90, 0x1d, 0x2c, 0xf9, 0x41, 0x91, 0x21, 0x38, 0x39, + 0x82, 0x93, 0x25, 0x38, 0x79, 0x72, 0x23, 0x53, 0x8e, 0xe4, 0xca, 0xb9, 0x6c, 0x65, 0x01, 0x24, + 0xd3, 0x1e, 0x9d, 0xe7, 0xe9, 0xb4, 0x7a, 0xd9, 0x9c, 0x85, 0xf9, 0x6f, 0x72, 0xe6, 0x78, 0x69, + 0x3f, 0xcc, 0x1e, 0x03, 0x48, 0x7b, 0x0b, 0x60, 0xee, 0x29, 0x80, 0xb6, 0x97, 0x00, 0xec, 0x1e, + 0x02, 0xb0, 0x7b, 0x07, 0xc0, 0xee, 0x19, 0xb0, 0xd9, 0x0b, 0x9c, 0x61, 0xf6, 0x06, 0xc8, 0xea, + 0xce, 0x40, 0x8a, 0x7e, 0x24, 0xfb, 0x08, 0x45, 0x67, 0x3a, 0xea, 0xaa, 0x01, 0xc4, 0x72, 0x9a, + 0xce, 0x23, 0x7c, 0xff, 0x3e, 0x59, 0x3d, 0x1d, 0x24, 0x42, 0xbe, 0xa9, 0x6b, 0xa8, 0x1d, 0x8e, + 0xbc, 0xa6, 0x0b, 0x5a, 0x70, 0x98, 0x2e, 0x8b, 0x88, 0x58, 0x47, 0xac, 0x23, 0xd6, 0x11, 0xeb, + 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x5d, 0x21, 0xb1, 0x2e, 0xd3, 0x72, 0x92, 0x9d, 0xf5, 0xc6, 0x48, + 0x97, 0x2c, 0xe3, 0x80, 0xdd, 0x34, 0x20, 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, + 0x91, 0xeb, 0xc8, 0x75, 0x85, 0xe4, 0xba, 0xa9, 0x94, 0x13, 0xeb, 0xac, 0xb7, 0x45, 0xb2, 0xdb, + 0x24, 0x0c, 0xd4, 0x25, 0xe1, 0x60, 0x20, 0x5d, 0x89, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0x11, 0xe9, + 0x88, 0x74, 0xae, 0x5a, 0xc5, 0xf5, 0x04, 0xa5, 0x2c, 0x90, 0xc9, 0x16, 0xbd, 0x4a, 0xf7, 0xe4, + 0x1d, 0xde, 0x71, 0x29, 0xbf, 0xc4, 0xc6, 0xe3, 0x52, 0x90, 0x85, 0x14, 0x51, 0x50, 0xb1, 0x85, + 0x15, 0x55, 0x60, 0xe1, 0x85, 0x16, 0x5e, 0x70, 0xe1, 0x85, 0x17, 0x43, 0x80, 0x41, 0x84, 0x18, + 0xcf, 0x63, 0x01, 0xf6, 0x5a, 0x10, 0x3d, 0x97, 0x79, 0xde, 0xcb, 0xff, 0xf8, 0x6f, 0x82, 0x14, + 0xb1, 0x34, 0x71, 0x76, 0x95, 0x3a, 0x35, 0x09, 0x66, 0xf0, 0xf8, 0x17, 0x94, 0xa4, 0xf4, 0x3a, + 0x32, 0x36, 0x7e, 0xba, 0x8f, 0x1e, 0x18, 0x97, 0x3e, 0x86, 0x46, 0x2c, 0x25, 0x96, 0x12, 0x4b, + 0x89, 0xa5, 0xc4, 0x52, 0x62, 0xe9, 0x86, 0x61, 0x29, 0x4f, 0xf1, 0x23, 0xc6, 0xfd, 0x46, 0x9b, + 0x60, 0x2c, 0x84, 0xcc, 0xf5, 0x5e, 0x84, 0x05, 0x91, 0xc4, 0x37, 0xe2, 0x1b, 0xf1, 0x8d, 0xf8, + 0x46, 0x7c, 0x23, 0xbe, 0x59, 0xaf, 0x5b, 0x23, 0xa5, 0xcd, 0xde, 0x2e, 0x20, 0xbd, 0x21, 0x79, + 0x8a, 0x4d, 0xa1, 0xaf, 0xc6, 0x77, 0xeb, 0x12, 0xaa, 0x06, 0x60, 0xd5, 0xf4, 0xad, 0xf4, 0x08, + 0x2c, 0x38, 0xb1, 0x01, 0xc5, 0xab, 0x5c, 0x78, 0x7f, 0x89, 0xc1, 0x48, 0x02, 0xc7, 0xf7, 0x39, + 0x12, 0x5d, 0xa3, 0x42, 0x7d, 0xa0, 0xae, 0xd4, 0xe4, 0x90, 0xb1, 0x1d, 0xb8, 0x38, 0x1f, 0xde, + 0x01, 0xa6, 0x84, 0xb8, 0x63, 0x4a, 0x2c, 0x99, 0x12, 0xe5, 0xdd, 0xfd, 0xf2, 0x7e, 0xb5, 0xb6, + 0xbb, 0x5f, 0x61, 0x6e, 0x14, 0x1b, 0xc8, 0xf0, 0xa2, 0x69, 0xd1, 0x24, 0x42, 0xa9, 0x9d, 0x5e, + 0x37, 0xbc, 0xb9, 0x19, 0x69, 0x65, 0xee, 0x51, 0x67, 0xa2, 0x3d, 0x0d, 0x90, 0xc6, 0xd1, 0xbc, + 0x70, 0x68, 0x1c, 0x2d, 0xd0, 0xa5, 0x68, 0x1c, 0x2d, 0xd4, 0xd3, 0x69, 0x1c, 0x2d, 0x19, 0x20, + 0x8d, 0xa3, 0x02, 0x8d, 0x24, 0x38, 0x1d, 0xed, 0x05, 0x32, 0x58, 0xc0, 0xe9, 0x68, 0x53, 0xae, + 0x50, 0x32, 0xce, 0xae, 0xef, 0x39, 0x23, 0x0d, 0x93, 0x52, 0x61, 0xb6, 0x00, 0xcb, 0xe5, 0x24, + 0xc8, 0x56, 0x60, 0xe4, 0x52, 0x72, 0x29, 0xb9, 0x94, 0x5c, 0x4a, 0x2e, 0x25, 0x97, 0x5a, 0xaf, + 0x5b, 0x6a, 0xe8, 0x8b, 0x5e, 0x2f, 0x92, 0x71, 0x8c, 0x88, 0xa6, 0xfb, 0x40, 0x31, 0xa5, 0x6d, + 0xc8, 0x87, 0x9a, 0xbf, 0xdd, 0xb3, 0x6e, 0xcb, 0x80, 0x7d, 0x2b, 0xd7, 0xc7, 0x3e, 0x00, 0xc6, + 0x76, 0x2a, 0x8c, 0x91, 0x91, 0x86, 0xeb, 0x6e, 0x59, 0x80, 0xff, 0xbc, 0x7d, 0x7b, 0xb9, 0xe3, + 0xef, 0xb7, 0x7e, 0x5e, 0x96, 0xfc, 0xfd, 0x56, 0x72, 0x59, 0x9a, 0x7c, 0x4b, 0xae, 0x77, 0x2f, + 0x77, 0xfc, 0xf2, 0xf4, 0xba, 0x72, 0xb9, 0xe3, 0x57, 0x5a, 0xdb, 0x7f, 0xff, 0xfd, 0x7e, 0xfb, + 0xc7, 0xde, 0xc3, 0xe2, 0x6f, 0xfc, 0x8f, 0x07, 0x77, 0x13, 0x5a, 0x58, 0x8f, 0x87, 0xde, 0xb1, + 0x28, 0xfd, 0x76, 0x51, 0xaa, 0xb2, 0x28, 0xad, 0x77, 0x51, 0x12, 0x7e, 0xbf, 0xee, 0x7f, 0x6e, + 0xfd, 0x28, 0xbd, 0x2b, 0x3f, 0x7c, 0xdc, 0xfe, 0x51, 0x7b, 0x78, 0xfa, 0xe2, 0xcf, 0x79, 0xbf, + 0x56, 0x7a, 0x57, 0x7b, 0xf8, 0xf8, 0xcc, 0x4f, 0xaa, 0x0f, 0x1f, 0x7f, 0xf3, 0xdf, 0xa8, 0x3c, + 0xbc, 0xcd, 0xfd, 0xea, 0xf8, 0xf5, 0xdd, 0xe7, 0xde, 0x50, 0x7e, 0xe6, 0x0d, 0x7b, 0xcf, 0xbd, + 0x61, 0xef, 0x99, 0x37, 0x3c, 0x1b, 0xd2, 0xee, 0x33, 0x6f, 0xa8, 0x3c, 0xfc, 0xcc, 0xfd, 0xfe, + 0xdb, 0xf9, 0xbf, 0x5a, 0x7d, 0xd8, 0xfe, 0xf9, 0xdc, 0xcf, 0x6a, 0x0f, 0x3f, 0x3f, 0x6e, 0xb3, + 0x44, 0x17, 0x63, 0x3c, 0xb4, 0xc5, 0x27, 0xf8, 0x48, 0xa2, 0xe9, 0xc9, 0x3b, 0xe3, 0xc3, 0x3f, + 0xc5, 0x9f, 0x17, 0x24, 0x1d, 0xd3, 0x79, 0xe1, 0xd0, 0x31, 0x5d, 0xa0, 0x5b, 0xd1, 0x31, 0x5d, + 0xa8, 0xa7, 0xd3, 0x31, 0x5d, 0x32, 0x40, 0x3a, 0xa6, 0x05, 0x1a, 0x4a, 0xf2, 0x49, 0xfe, 0x4b, + 0x46, 0x8d, 0xc5, 0x7b, 0x92, 0xff, 0x2b, 0x5b, 0x28, 0x19, 0xcf, 0xfc, 0x3f, 0x9f, 0xe8, 0x83, + 0x52, 0xab, 0xd2, 0xb7, 0x62, 0xa0, 0x7a, 0x7e, 0x24, 0x45, 0x1c, 0x6a, 0x3c, 0x60, 0x7d, 0x12, + 0x1f, 0x59, 0x95, 0xac, 0x4a, 0x56, 0x25, 0xab, 0x92, 0x55, 0xc9, 0xaa, 0x1b, 0xc6, 0xaa, 0xaa, + 0x27, 0xb5, 0x51, 0xe6, 0x1e, 0x94, 0x57, 0x81, 0xd6, 0xa7, 0x79, 0x47, 0xe9, 0xad, 0xfa, 0x24, + 0x62, 0xc0, 0x92, 0x3a, 0x6d, 0xd0, 0xa3, 0x93, 0xbf, 0xea, 0xc7, 0x47, 0x07, 0xed, 0x66, 0xe3, + 0xe2, 0xfc, 0xb0, 0xdd, 0x3c, 0xac, 0x9f, 0x35, 0x4e, 0xd0, 0xaa, 0xeb, 0x64, 0x19, 0x62, 0x0c, + 0xf9, 0x98, 0x08, 0x74, 0x5d, 0xe9, 0xd3, 0xd6, 0xad, 0x9f, 0xb5, 0x8f, 0x1b, 0x8d, 0x53, 0x8f, + 0x2b, 0x86, 0xd7, 0xa6, 0x49, 0xff, 0x68, 0x9c, 0x7c, 0x3e, 0x3c, 0x60, 0x8b, 0xae, 0x4f, 0x8b, + 0x36, 0x9a, 0x47, 0x7f, 0x1e, 0x9d, 0xd4, 0xcf, 0x1b, 0x4d, 0xb6, 0xea, 0x1a, 0xe5, 0xe9, 0xf1, + 0xc5, 0xd9, 0xf9, 0x61, 0x13, 0xb5, 0xfe, 0x42, 0x45, 0xd4, 0xe2, 0x78, 0x04, 0x2c, 0x0a, 0x04, + 0x77, 0x70, 0x20, 0x62, 0xe3, 0xdf, 0x84, 0x3d, 0xd5, 0x57, 0xb2, 0x87, 0x67, 0x0e, 0xce, 0x86, + 0x47, 0x6f, 0x70, 0x5e, 0x38, 0xf4, 0x06, 0x17, 0xe8, 0x50, 0xf4, 0x06, 0x17, 0xea, 0xe9, 0xf4, + 0x06, 0x97, 0x0c, 0x90, 0xde, 0x60, 0x81, 0x08, 0x18, 0xd8, 0x1b, 0x34, 0xea, 0x46, 0x1a, 0xd5, + 0xbd, 0x8e, 0xab, 0x65, 0x40, 0x6f, 0x10, 0x68, 0x02, 0xb4, 0x77, 0xa1, 0x93, 0x5d, 0xaa, 0x3c, + 0x2d, 0x74, 0x18, 0xcb, 0x6e, 0xa8, 0x7b, 0x50, 0xab, 0xa5, 0xb8, 0xdf, 0xe2, 0x6f, 0xde, 0x28, + 0xee, 0xb7, 0xf8, 0xf2, 0xf0, 0xb8, 0xdf, 0xe2, 0x3a, 0xba, 0x32, 0xdc, 0x6f, 0xf1, 0x15, 0x52, + 0xa2, 0xf4, 0xa1, 0x5c, 0xae, 0xd6, 0xca, 0xe5, 0x9d, 0xda, 0x5e, 0x6d, 0x67, 0xbf, 0x52, 0x29, + 0x55, 0x4b, 0xdc, 0x79, 0xb1, 0xe0, 0xfc, 0x88, 0x17, 0x0d, 0xd7, 0x6d, 0xc0, 0x54, 0x51, 0x6f, + 0x28, 0xcc, 0x57, 0x5f, 0x01, 0xba, 0x5b, 0xd3, 0xc0, 0x40, 0x46, 0x3f, 0x07, 0xb2, 0x2f, 0x46, + 0x83, 0xc9, 0x50, 0x75, 0x87, 0x5e, 0xdb, 0xdc, 0x70, 0xe8, 0xb5, 0x2d, 0xd0, 0xbd, 0xe9, 0xb5, + 0x2d, 0xd4, 0xd3, 0xe9, 0xb5, 0x2d, 0x19, 0x20, 0xbd, 0xb6, 0x02, 0x8d, 0x6b, 0x78, 0x6c, 0xc8, + 0xe2, 0x2a, 0xc8, 0x63, 0x43, 0xfe, 0xed, 0x8b, 0x36, 0xd6, 0x5a, 0x8e, 0xd9, 0x69, 0x63, 0x15, + 0xbd, 0xdc, 0xcf, 0xa6, 0x04, 0x6d, 0xac, 0xa5, 0x53, 0x82, 0xc7, 0x86, 0xac, 0x0b, 0x90, 0xe1, + 0x45, 0x43, 0xf3, 0x0a, 0xa6, 0x76, 0x7a, 0xe9, 0xe2, 0xc8, 0x70, 0x64, 0x24, 0x9e, 0x81, 0xf5, + 0x6b, 0x70, 0x34, 0x8c, 0xe6, 0x85, 0x43, 0xc3, 0x68, 0x81, 0xee, 0x44, 0xc3, 0x68, 0xa1, 0x9e, + 0x4e, 0xc3, 0x68, 0xc9, 0x00, 0x69, 0x18, 0x15, 0x68, 0x04, 0x01, 0x6c, 0x18, 0x75, 0xc2, 0x70, + 0x20, 0x85, 0x46, 0x5c, 0xb4, 0x59, 0x22, 0xca, 0x01, 0x44, 0xe0, 0x38, 0x85, 0xbc, 0xba, 0xd6, + 0xa1, 0x11, 0xe3, 0xd1, 0x18, 0x44, 0x02, 0x79, 0x71, 0xf7, 0xab, 0xbc, 0x11, 0xc3, 0x74, 0xd3, + 0x99, 0x20, 0x1c, 0x4a, 0xdd, 0x9d, 0x80, 0x92, 0xaf, 0xa5, 0xf9, 0x1e, 0x46, 0xd7, 0xbe, 0xd2, + 0xb1, 0x11, 0xba, 0x2b, 0x83, 0xa7, 0x2f, 0xc4, 0xb9, 0x57, 0x82, 0x61, 0x14, 0x9a, 0xb0, 0x1b, + 0x0e, 0xe2, 0xec, 0x2a, 0xe8, 0x5c, 0x0d, 0x83, 0x48, 0x75, 0x02, 0xd1, 0x57, 0x7e, 0x2c, 0xfa, + 0x2a, 0xce, 0xae, 0x82, 0xc9, 0x4e, 0xd7, 0x71, 0x64, 0xa4, 0x3f, 0x0c, 0x07, 0xaa, 0x7b, 0x1f, + 0x68, 0xa9, 0xae, 0xbe, 0x76, 0xc2, 0x28, 0xce, 0xae, 0x02, 0xd1, 0xfb, 0x36, 0x51, 0x03, 0xa5, + 0xfd, 0x61, 0x18, 0x9b, 0x60, 0x42, 0xb8, 0x71, 0xf2, 0x2d, 0xd9, 0xe7, 0xc6, 0xad, 0x48, 0xb8, + 0xeb, 0xcd, 0x0e, 0x7b, 0xb2, 0x37, 0xd2, 0xd7, 0x3a, 0xfc, 0xae, 0x7d, 0x61, 0x4c, 0xa4, 0x3a, + 0xe3, 0x16, 0x71, 0xde, 0x9b, 0x1f, 0x9f, 0x19, 0xe4, 0x63, 0x73, 0x9c, 0xf3, 0x53, 0x05, 0x70, + 0x1c, 0x06, 0xca, 0x00, 0x08, 0x69, 0xe0, 0x83, 0x39, 0xe0, 0x41, 0x1b, 0xe8, 0xc0, 0x0e, 0x70, + 0x60, 0x07, 0x36, 0xb0, 0x03, 0x9a, 0xcd, 0xa6, 0xaf, 0x03, 0x15, 0x61, 0x94, 0x9d, 0x9c, 0x48, + 0xe1, 0x39, 0x8a, 0xf9, 0x10, 0xb1, 0x7c, 0xc5, 0x12, 0x7d, 0x45, 0x78, 0x79, 0xc5, 0x96, 0x59, + 0x54, 0xb9, 0x85, 0x97, 0x5d, 0x78, 0xf9, 0x85, 0x97, 0x61, 0x1c, 0x3b, 0x66, 0x0b, 0xc8, 0x57, + 0x44, 0x91, 0xe7, 0x2c, 0xa0, 0xb1, 0xf6, 0xf9, 0x06, 0xcd, 0xed, 0x9c, 0xa9, 0xa8, 0x8f, 0x21, + 0x82, 0xa5, 0x1e, 0xe6, 0xec, 0x0d, 0x38, 0xb9, 0x46, 0x96, 0xed, 0x62, 0xc8, 0x37, 0xba, 0x8c, + 0x17, 0x46, 0xce, 0x0b, 0x23, 0xeb, 0x85, 0x91, 0x77, 0x2c, 0x99, 0x07, 0x93, 0xfb, 0xac, 0x15, + 0xcf, 0x11, 0x05, 0x76, 0x0b, 0xfb, 0xec, 0x82, 0xdc, 0x68, 0xb8, 0x86, 0x79, 0xf2, 0xdd, 0xf4, + 0x2c, 0x83, 0xe4, 0x48, 0x82, 0x47, 0x58, 0xe1, 0x7c, 0x3f, 0xf4, 0xd4, 0xf4, 0x92, 0xa7, 0x6b, + 0xb0, 0xe0, 0x9b, 0x84, 0x87, 0x09, 0xbd, 0x25, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, + 0xf4, 0x52, 0x59, 0xe7, 0xb7, 0x22, 0x9a, 0xd7, 0x95, 0x05, 0x36, 0x61, 0xb4, 0x81, 0x04, 0x5e, + 0x2a, 0x37, 0x63, 0x7d, 0x8d, 0x23, 0x7d, 0xc7, 0xf5, 0x4b, 0x6b, 0x04, 0x05, 0x45, 0x80, 0x83, + 0x62, 0x41, 0x42, 0x51, 0x60, 0xa1, 0x70, 0xd0, 0x50, 0x38, 0x78, 0x28, 0x1c, 0x44, 0x60, 0xc2, + 0x04, 0x28, 0x54, 0x64, 0xad, 0x0b, 0xeb, 0xa8, 0xe5, 0xea, 0xe6, 0x48, 0x69, 0x53, 0xaa, 0x22, + 0xd7, 0xcc, 0x54, 0xc5, 0xab, 0xc0, 0x21, 0x62, 0xee, 0x00, 0xf1, 0xf4, 0x0b, 0x5b, 0x73, 0xb6, + 0xd0, 0x77, 0x88, 0x28, 0x18, 0x5e, 0xe6, 0xc2, 0x05, 0xdf, 0x41, 0x22, 0x17, 0x6f, 0x01, 0x56, + 0xcd, 0x17, 0x44, 0x8e, 0x66, 0x53, 0x4c, 0xdc, 0x31, 0xc5, 0x56, 0x9c, 0x62, 0xd5, 0x4a, 0x65, + 0xaf, 0xc2, 0x34, 0xdb, 0x2c, 0x16, 0xc5, 0x8f, 0xae, 0xf5, 0x86, 0xf7, 0xab, 0xa0, 0x65, 0x1c, + 0x78, 0x26, 0x5c, 0x6e, 0x48, 0x81, 0x3a, 0x23, 0xae, 0x20, 0xaa, 0x42, 0x5f, 0xf0, 0x35, 0x3b, + 0x23, 0x7d, 0xc1, 0x57, 0xcd, 0x1c, 0xfa, 0x82, 0x2b, 0x0e, 0x98, 0xbe, 0xe0, 0x1a, 0x0f, 0xc4, + 0x0a, 0xe6, 0x0b, 0x7e, 0x28, 0x80, 0x2d, 0x58, 0xa1, 0x2d, 0xb8, 0xe4, 0x17, 0x6d, 0x41, 0x7a, + 0x16, 0xb4, 0x05, 0x37, 0x50, 0x8d, 0x66, 0x53, 0x8c, 0xb6, 0xe0, 0xca, 0x53, 0x6c, 0xb7, 0x42, + 0x53, 0x70, 0xc3, 0x40, 0x14, 0x3f, 0x3a, 0x9a, 0x82, 0x85, 0x2d, 0xe2, 0x89, 0xd3, 0x76, 0x9b, + 0x56, 0x97, 0x22, 0xb8, 0x82, 0x49, 0xac, 0xb4, 0x05, 0x5f, 0x12, 0x1e, 0x6d, 0xc1, 0x57, 0xec, + 0x8d, 0xb4, 0x05, 0x5f, 0x35, 0x73, 0x68, 0x0b, 0xae, 0x38, 0x60, 0xda, 0x82, 0x6b, 0x3c, 0x10, + 0x2b, 0x90, 0x2d, 0xd8, 0x51, 0x5a, 0x44, 0xf7, 0x05, 0xf0, 0x05, 0xf7, 0x81, 0x43, 0x3c, 0x96, + 0xfa, 0x6a, 0xb2, 0x30, 0x97, 0xc6, 0xe0, 0xb2, 0xae, 0x05, 0x8d, 0xc1, 0x95, 0xbb, 0x16, 0x25, + 0x7a, 0x16, 0x1b, 0xa6, 0x47, 0xb3, 0x29, 0x46, 0x63, 0x70, 0xe5, 0x29, 0xc6, 0xf9, 0x82, 0x1b, + 0x08, 0xa3, 0xf8, 0xd1, 0xd1, 0x1a, 0x2c, 0x6c, 0x19, 0xf7, 0xe4, 0x9d, 0x91, 0xba, 0x27, 0x7b, + 0xf8, 0xc6, 0x60, 0x16, 0x29, 0x6d, 0xc1, 0x97, 0x84, 0x47, 0x5b, 0xf0, 0x15, 0xfb, 0x22, 0x6d, + 0xc1, 0x57, 0xcd, 0x1c, 0xda, 0x82, 0x2b, 0x0e, 0x98, 0xb6, 0xe0, 0x1a, 0x0f, 0xc3, 0x8a, 0x64, + 0x0b, 0xc2, 0x1d, 0xfb, 0xf5, 0x9c, 0x8c, 0x83, 0x1c, 0x03, 0x46, 0xa8, 0x7d, 0x49, 0x1b, 0x86, + 0xc3, 0xf1, 0xc8, 0x53, 0x0c, 0xf0, 0xa1, 0x36, 0x8b, 0x94, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, + 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0xcb, 0xa4, 0x98, 0x6d, 0xc3, 0xa1, + 0x88, 0x8c, 0x2a, 0x02, 0xd3, 0x4e, 0x03, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, + 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x32, 0x29, 0x66, 0xdb, 0xd0, 0x44, 0x42, 0xc7, + 0xca, 0xa8, 0xdb, 0x02, 0xac, 0x4b, 0xfa, 0x25, 0x56, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, + 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0x23, 0x02, 0x4d, 0x51, 0xaf, 0xae, + 0x75, 0x68, 0x84, 0x51, 0x21, 0xe6, 0x02, 0x28, 0x2f, 0xee, 0x7e, 0x95, 0x37, 0x62, 0x98, 0x1e, + 0x40, 0x19, 0x84, 0x43, 0xa9, 0xbb, 0x13, 0x50, 0xf4, 0xb5, 0x34, 0xdf, 0xc3, 0xe8, 0xda, 0x57, + 0x3a, 0x36, 0x42, 0x77, 0x65, 0xf0, 0xf4, 0x85, 0x38, 0xf7, 0x4a, 0x30, 0x8c, 0x42, 0x13, 0x76, + 0xc3, 0x41, 0x9c, 0x5d, 0x05, 0x9d, 0xab, 0x61, 0x10, 0xa9, 0x4e, 0x20, 0xfa, 0xca, 0x8f, 0x45, + 0x5f, 0xc5, 0xd9, 0x55, 0xa0, 0x86, 0xb7, 0x65, 0x3f, 0x8e, 0x8c, 0xf4, 0x87, 0xe1, 0x40, 0x75, + 0xef, 0x03, 0x2d, 0xd5, 0xd5, 0xd7, 0x4e, 0x18, 0xc5, 0xd9, 0x55, 0x20, 0x7a, 0xdf, 0x26, 0x6a, + 0xa5, 0xb4, 0x3f, 0x0c, 0x63, 0x13, 0x44, 0xe1, 0xc8, 0xc8, 0x38, 0xf9, 0x16, 0x8c, 0xf4, 0xb5, + 0x0e, 0xbf, 0x6b, 0x5f, 0x18, 0x13, 0xa9, 0xce, 0xe4, 0x07, 0xb9, 0x97, 0x92, 0x13, 0x35, 0x79, + 0x8e, 0x26, 0x72, 0x24, 0x28, 0xe7, 0xea, 0xff, 0x57, 0xde, 0x23, 0x6e, 0x8c, 0xeb, 0x1d, 0xab, + 0xd8, 0xd4, 0x8d, 0x01, 0x3b, 0xf4, 0xff, 0x8b, 0xd2, 0x87, 0x03, 0x39, 0xa6, 0xca, 0xd8, 0xfb, + 0xb8, 0xa5, 0x47, 0x83, 0x01, 0xd0, 0xa1, 0xac, 0x5f, 0xc4, 0x1d, 0x6e, 0x70, 0x8d, 0xa8, 0x27, + 0x23, 0xd9, 0xfb, 0x74, 0x9f, 0x86, 0xc6, 0x24, 0xc4, 0x57, 0xcc, 0xf5, 0x57, 0x4a, 0x0f, 0xea, + 0x4c, 0xe5, 0x68, 0xd4, 0x35, 0x3a, 0x1d, 0x35, 0x9c, 0x24, 0x77, 0xef, 0x28, 0xbd, 0x79, 0xed, + 0xd3, 0xf4, 0x96, 0xb5, 0x3f, 0x5d, 0x0d, 0xdb, 0x4d, 0xd5, 0x69, 0xd7, 0xfb, 0xea, 0x4c, 0xf4, + 0x55, 0xfb, 0x68, 0x78, 0x5b, 0x3e, 0x8b, 0x8c, 0x3c, 0x9d, 0xdc, 0xa5, 0xf6, 0x49, 0x7a, 0x6f, + 0xda, 0xf5, 0xde, 0xb7, 0xa6, 0xea, 0x1c, 0xe9, 0xd3, 0x30, 0x36, 0xed, 0xe6, 0xf8, 0x8e, 0xb4, + 0x2f, 0x92, 0x3f, 0xbf, 0x9e, 0xfd, 0xf5, 0x6f, 0xa8, 0xc7, 0xee, 0x23, 0x70, 0x5c, 0x84, 0xd0, + 0x8a, 0xcf, 0xba, 0x15, 0x1d, 0xb7, 0x49, 0xe6, 0xae, 0x6b, 0xbb, 0xf9, 0x64, 0x47, 0xc9, 0x34, + 0xc5, 0xe8, 0x71, 0xaf, 0xf5, 0x55, 0x6f, 0x4b, 0xea, 0xde, 0x30, 0x54, 0xda, 0x6c, 0x75, 0xc3, + 0x41, 0x18, 0x39, 0x52, 0x19, 0x0c, 0x86, 0x86, 0x62, 0x66, 0x28, 0x46, 0xc6, 0x60, 0x62, 0x57, + 0x19, 0x03, 0x22, 0x3b, 0x85, 0x96, 0x1b, 0x87, 0xf8, 0xba, 0x7a, 0x5c, 0x75, 0x23, 0x9c, 0xf6, + 0x65, 0xcb, 0xee, 0x27, 0x5a, 0x4e, 0x77, 0xd7, 0x69, 0x5e, 0xd0, 0xf4, 0xb6, 0xdb, 0xf7, 0xed, + 0xf5, 0x40, 0x3b, 0x9f, 0x64, 0xa9, 0x8f, 0xbb, 0xea, 0xdb, 0x45, 0xeb, 0xd3, 0x16, 0x55, 0x6a, + 0x95, 0xaa, 0x64, 0x27, 0x27, 0x57, 0x9f, 0x21, 0x16, 0xb2, 0xc3, 0xfb, 0xb5, 0x07, 0x44, 0xf6, + 0x9e, 0xd3, 0x3f, 0xee, 0xe8, 0x3d, 0xfb, 0xf9, 0x96, 0xea, 0xc1, 0xf4, 0x31, 0xba, 0xa5, 0x8f, + 0xb3, 0x3d, 0xbb, 0xcd, 0xc5, 0x6c, 0x35, 0xb7, 0xb3, 0xcf, 0x5c, 0xcd, 0x26, 0x73, 0x3e, 0x3b, + 0xcc, 0xf9, 0x6c, 0x2f, 0xe7, 0xb3, 0xb7, 0xd6, 0x8b, 0x54, 0x0e, 0x94, 0x5d, 0x13, 0xc8, 0x4b, + 0x31, 0xd6, 0x7a, 0xe2, 0x4c, 0xcb, 0x45, 0xfa, 0xf9, 0x96, 0x3b, 0xad, 0x5d, 0x01, 0x70, 0x26, + 0x04, 0x2e, 0x05, 0x01, 0x43, 0x18, 0x5c, 0x0b, 0x04, 0x8c, 0x50, 0xc0, 0x08, 0x06, 0x8c, 0x70, + 0x6c, 0x86, 0xad, 0x63, 0x5b, 0x50, 0x66, 0x85, 0xc5, 0x5d, 0xbe, 0xcd, 0xe8, 0x8b, 0xab, 0x5c, + 0x73, 0x23, 0x33, 0xce, 0xe5, 0x06, 0x41, 0x76, 0xb0, 0xe4, 0x07, 0x45, 0x86, 0xe0, 0xe4, 0x08, + 0x4e, 0x96, 0xe0, 0xe4, 0xc9, 0x8d, 0x4c, 0x39, 0x92, 0x2b, 0xe7, 0xb2, 0x95, 0x05, 0x90, 0xcc, + 0x07, 0x70, 0x9e, 0xa7, 0xd3, 0xea, 0xe5, 0x72, 0x7a, 0xc2, 0x53, 0x39, 0x73, 0xbc, 0x46, 0x13, + 0x66, 0xb1, 0x28, 0xd2, 0xa2, 0x50, 0xcc, 0xc5, 0x9f, 0x68, 0x8b, 0x3c, 0x61, 0x17, 0x73, 0xc2, + 0x2e, 0xda, 0x84, 0x5d, 0x9c, 0xb9, 0xd9, 0x53, 0x41, 0x61, 0x16, 0x55, 0x66, 0x75, 0x67, 0x20, + 0x45, 0x3f, 0x92, 0x7d, 0x84, 0xa2, 0x33, 0x1d, 0x75, 0xd5, 0x00, 0x62, 0x39, 0x4d, 0x9f, 0xfd, + 0xbe, 0x7f, 0x9f, 0xac, 0xf5, 0x0a, 0x12, 0x21, 0xdf, 0xd4, 0xa9, 0xa6, 0x0e, 0x47, 0x5e, 0xd3, + 0x99, 0x9e, 0x38, 0x4c, 0x97, 0x45, 0x44, 0xac, 0x23, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0x3a, + 0x62, 0x1d, 0xb1, 0xae, 0x90, 0x58, 0x97, 0x69, 0x39, 0xc9, 0xce, 0x7a, 0x63, 0xa4, 0x6b, 0x79, + 0x70, 0xc0, 0x6e, 0x1a, 0x10, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, 0x91, 0xeb, 0xc8, 0x75, + 0xe4, 0xba, 0x42, 0x72, 0xdd, 0x54, 0xca, 0x89, 0x75, 0xd6, 0xdb, 0x22, 0xd9, 0x1b, 0x0b, 0x06, + 0xea, 0x92, 0x70, 0x30, 0x90, 0xae, 0x44, 0xa4, 0x23, 0xd2, 0x11, 0xe9, 0x88, 0x74, 0x44, 0x3a, + 0x57, 0xad, 0xe2, 0x7a, 0x82, 0x52, 0x16, 0xc8, 0x64, 0x43, 0x40, 0xa5, 0x7b, 0x12, 0x67, 0x77, + 0xf2, 0xc7, 0xd5, 0x7d, 0x8f, 0xb1, 0xa1, 0xec, 0xa2, 0x08, 0xb5, 0x0f, 0x3e, 0xdc, 0xbe, 0xf7, + 0x88, 0xfb, 0xdc, 0x63, 0xef, 0x6b, 0x8f, 0xba, 0x8f, 0x3d, 0xfc, 0xbe, 0xf5, 0xf0, 0xfb, 0xd4, + 0xc3, 0xef, 0x4b, 0xcf, 0xfd, 0x71, 0x21, 0x3d, 0x16, 0x60, 0xaf, 0x05, 0xd1, 0x73, 0x99, 0xe7, + 0xbd, 0xfc, 0x8f, 0xff, 0x26, 0x48, 0x11, 0x4b, 0x13, 0x67, 0x57, 0xa9, 0x53, 0x93, 0x60, 0x06, + 0x37, 0xca, 0x44, 0x49, 0x4a, 0x90, 0x19, 0xf4, 0xb9, 0x6c, 0x44, 0x98, 0x49, 0x4f, 0x1c, 0x25, + 0x8e, 0x12, 0x47, 0x89, 0xa3, 0xc4, 0x51, 0xe2, 0xa8, 0xf5, 0xba, 0x35, 0x52, 0xda, 0xec, 0xed, + 0x02, 0xd2, 0x28, 0x12, 0x8c, 0x36, 0x85, 0xbe, 0x1a, 0xdf, 0xad, 0x4b, 0xa8, 0x1a, 0x00, 0x78, + 0x46, 0xcf, 0x17, 0xa5, 0x71, 0xcf, 0xe7, 0x04, 0x3f, 0xf5, 0xf2, 0x2f, 0x31, 0x18, 0x49, 0xe0, + 0xf8, 0x3e, 0x47, 0xa2, 0x6b, 0x54, 0xa8, 0x0f, 0xd4, 0x95, 0x9a, 0x6c, 0xc3, 0xbc, 0xc3, 0x93, + 0x6b, 0x7f, 0x27, 0x25, 0xc4, 0x1d, 0x53, 0x62, 0xc9, 0x94, 0x28, 0xef, 0xee, 0x97, 0xf7, 0xab, + 0xb5, 0xdd, 0xfd, 0x0a, 0x73, 0xa3, 0xd8, 0x40, 0x86, 0x17, 0x4d, 0x8b, 0x26, 0x11, 0x4a, 0xed, + 0xf4, 0xba, 0xe1, 0xcd, 0xcd, 0x48, 0x2b, 0x73, 0x8f, 0xfa, 0x08, 0xf3, 0x69, 0x80, 0x34, 0x8e, + 0xe6, 0x85, 0x43, 0xe3, 0x68, 0x81, 0x2e, 0x45, 0xe3, 0x68, 0xa1, 0x9e, 0x4e, 0xe3, 0x68, 0xc9, + 0x00, 0x69, 0x1c, 0x15, 0x68, 0x24, 0xc1, 0xe7, 0x98, 0x2f, 0x90, 0xc1, 0x02, 0x3e, 0xc7, 0x9c, + 0x72, 0x85, 0x92, 0x71, 0x76, 0x7d, 0xcf, 0x47, 0x99, 0x98, 0x94, 0x0a, 0xb3, 0x77, 0x44, 0x2e, + 0x27, 0x41, 0xf6, 0x90, 0x20, 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0x72, 0x29, 0xb9, 0xd4, + 0x7a, 0xdd, 0x52, 0x43, 0x5f, 0xf4, 0x7a, 0x91, 0x8c, 0x63, 0x44, 0x34, 0xdd, 0x07, 0x8a, 0x29, + 0x6d, 0x43, 0x3e, 0xd4, 0xfc, 0xed, 0x9e, 0x75, 0x5b, 0x06, 0xec, 0x5b, 0xb9, 0x3e, 0xf6, 0x01, + 0x30, 0xb6, 0x53, 0x61, 0x8c, 0x8c, 0x34, 0x5c, 0x77, 0xcb, 0x02, 0xfc, 0xe7, 0xed, 0xdb, 0xcb, + 0x1d, 0x7f, 0xbf, 0xf5, 0xf3, 0xb2, 0xe4, 0xef, 0xb7, 0x92, 0xcb, 0xd2, 0xe4, 0x5b, 0x72, 0xbd, + 0x7b, 0xb9, 0xe3, 0x97, 0xa7, 0xd7, 0x95, 0xcb, 0x1d, 0xbf, 0xd2, 0xda, 0xfe, 0xfb, 0xef, 0xf7, + 0xdb, 0x3f, 0xf6, 0x1e, 0x16, 0x7f, 0xe3, 0x7f, 0x3c, 0xb8, 0x9b, 0xd0, 0xc2, 0x7a, 0x3c, 0xf4, + 0x8e, 0x45, 0xe9, 0xb7, 0x8b, 0x52, 0x95, 0x45, 0x69, 0xbd, 0x8b, 0x92, 0xf0, 0xfb, 0x75, 0xff, + 0x73, 0xeb, 0x47, 0xe9, 0x5d, 0xf9, 0xe1, 0xe3, 0xf6, 0x8f, 0xda, 0xc3, 0xd3, 0x17, 0x7f, 0xce, + 0xfb, 0xb5, 0xd2, 0xbb, 0xda, 0xc3, 0xc7, 0x67, 0x7e, 0x52, 0x7d, 0xf8, 0xf8, 0x9b, 0xff, 0x46, + 0xe5, 0xe1, 0x6d, 0xee, 0x57, 0xc7, 0xaf, 0xef, 0x3e, 0xf7, 0x86, 0xf2, 0x33, 0x6f, 0xd8, 0x7b, + 0xee, 0x0d, 0x7b, 0xcf, 0xbc, 0xe1, 0xd9, 0x90, 0x76, 0x9f, 0x79, 0x43, 0xe5, 0xe1, 0x67, 0xee, + 0xf7, 0xdf, 0xce, 0xff, 0xd5, 0xea, 0xc3, 0xf6, 0xcf, 0xe7, 0x7e, 0x56, 0x7b, 0xf8, 0xf9, 0x71, + 0x9b, 0x25, 0xba, 0x18, 0xe3, 0xa1, 0x2d, 0x3e, 0xc1, 0x47, 0x12, 0x4d, 0x4f, 0xde, 0x19, 0x1f, + 0xfe, 0x29, 0xfe, 0xbc, 0x20, 0xe9, 0x98, 0xce, 0x0b, 0x87, 0x8e, 0xe9, 0x02, 0xdd, 0x8a, 0x8e, + 0xe9, 0x42, 0x3d, 0x9d, 0x8e, 0xe9, 0x92, 0x01, 0xd2, 0x31, 0x2d, 0xd0, 0x50, 0x92, 0x4f, 0xf2, + 0x5f, 0x32, 0x6a, 0x2c, 0xde, 0x93, 0xfc, 0x5f, 0xd9, 0x42, 0xc9, 0x78, 0xe6, 0xff, 0xf9, 0x44, + 0x1f, 0x94, 0x5a, 0x95, 0xbe, 0x15, 0x03, 0xd5, 0xf3, 0x23, 0x29, 0xe2, 0x50, 0xe3, 0x01, 0xeb, + 0x93, 0xf8, 0xc8, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x95, 0xac, 0x4a, 0x56, 0xdd, 0x30, 0x56, + 0x55, 0x3d, 0xa9, 0x8d, 0x32, 0xf7, 0xa0, 0xbc, 0x0a, 0xb4, 0x3e, 0xcd, 0x3b, 0x4a, 0x6f, 0xd5, + 0x27, 0x11, 0x03, 0x96, 0xd4, 0x69, 0x83, 0x1e, 0x9d, 0xfc, 0x55, 0x3f, 0x3e, 0x3a, 0x68, 0x37, + 0x1b, 0x17, 0xe7, 0x87, 0xed, 0xe6, 0x61, 0xfd, 0xac, 0x71, 0x82, 0x56, 0x5d, 0x27, 0xcb, 0x10, + 0x63, 0xc8, 0xc7, 0x44, 0xa0, 0xeb, 0x4a, 0x9f, 0xb6, 0x6e, 0xfd, 0xac, 0x7d, 0xdc, 0x68, 0x9c, + 0x7a, 0x5c, 0x31, 0xbc, 0x36, 0x4d, 0xfa, 0x47, 0xe3, 0xe4, 0xf3, 0xe1, 0x01, 0x5b, 0x74, 0x7d, + 0x5a, 0xb4, 0xd1, 0x3c, 0xfa, 0xf3, 0xe8, 0xa4, 0x7e, 0xde, 0x68, 0xb2, 0x55, 0xd7, 0x28, 0x4f, + 0x8f, 0x2f, 0xce, 0xce, 0x0f, 0x9b, 0xa8, 0xf5, 0x17, 0x2a, 0xa2, 0x16, 0xc7, 0x23, 0x60, 0x51, + 0x20, 0xb8, 0x83, 0x03, 0x11, 0x1b, 0xff, 0x26, 0xec, 0xa9, 0xbe, 0x92, 0x3d, 0x3c, 0x73, 0x70, + 0x36, 0x3c, 0x7a, 0x83, 0xf3, 0xc2, 0xa1, 0x37, 0xb8, 0x40, 0x87, 0xa2, 0x37, 0xb8, 0x50, 0x4f, + 0xa7, 0x37, 0xb8, 0x64, 0x80, 0xf4, 0x06, 0x0b, 0x44, 0xc0, 0xc0, 0xde, 0xa0, 0x51, 0x37, 0xd2, + 0xa8, 0xee, 0x75, 0x5c, 0x2d, 0x03, 0x7a, 0x83, 0x40, 0x13, 0xa0, 0xbd, 0x0b, 0x9d, 0xec, 0x52, + 0xe5, 0x69, 0xa1, 0xc3, 0x58, 0x76, 0x43, 0xdd, 0x83, 0x5a, 0x2d, 0xc5, 0xfd, 0x16, 0x7f, 0xf3, + 0x46, 0x71, 0xbf, 0xc5, 0x97, 0x87, 0xc7, 0xfd, 0x16, 0xd7, 0xd1, 0x95, 0xe1, 0x7e, 0x8b, 0xaf, + 0x90, 0x12, 0xa5, 0x0f, 0xe5, 0x72, 0xb5, 0x56, 0x2e, 0xef, 0xd4, 0xf6, 0x6a, 0x3b, 0xfb, 0x95, + 0x4a, 0xa9, 0x5a, 0xe2, 0xce, 0x8b, 0x05, 0xe7, 0x47, 0xbc, 0x68, 0xb8, 0x6e, 0x03, 0xa6, 0x8a, + 0xc2, 0x9c, 0x9a, 0x9f, 0x83, 0x7a, 0x8c, 0xd3, 0xf3, 0xb3, 0xb0, 0x0e, 0x64, 0x5f, 0x8c, 0x06, + 0x93, 0xa1, 0xea, 0x0e, 0xbd, 0xb6, 0xb9, 0xe1, 0xd0, 0x6b, 0x5b, 0xa0, 0x7b, 0xd3, 0x6b, 0x5b, + 0xa8, 0xa7, 0xd3, 0x6b, 0x5b, 0x32, 0x40, 0x7a, 0x6d, 0x05, 0x1a, 0xd7, 0xf0, 0xd8, 0x90, 0xc5, + 0x55, 0x90, 0xc7, 0x86, 0xfc, 0xdb, 0x17, 0x6d, 0xac, 0xb5, 0x1c, 0xb3, 0xd3, 0xc6, 0x2a, 0x7a, + 0xb9, 0x9f, 0x4d, 0x09, 0xda, 0x58, 0x4b, 0xa7, 0x04, 0x8f, 0x0d, 0x59, 0x17, 0x20, 0xc3, 0x8b, + 0x86, 0xe6, 0x15, 0x4c, 0xed, 0xf4, 0xd2, 0xc5, 0x91, 0xe1, 0xc8, 0x48, 0x3c, 0x03, 0xeb, 0xd7, + 0xe0, 0x68, 0x18, 0xcd, 0x0b, 0x87, 0x86, 0xd1, 0x02, 0xdd, 0x89, 0x86, 0xd1, 0x42, 0x3d, 0x9d, + 0x86, 0xd1, 0x92, 0x01, 0xd2, 0x30, 0x2a, 0xd0, 0x08, 0x02, 0xd8, 0x30, 0xea, 0x84, 0xe1, 0x40, + 0x0a, 0x8d, 0xb8, 0x68, 0xb3, 0x44, 0x94, 0x03, 0x88, 0xc0, 0x71, 0x0a, 0x79, 0x75, 0xad, 0x43, + 0x23, 0xc6, 0xa3, 0x31, 0x88, 0x04, 0xf2, 0xe2, 0xee, 0x57, 0x79, 0x23, 0x86, 0xe9, 0xa6, 0x33, + 0x41, 0x38, 0x94, 0xba, 0x3b, 0x01, 0x25, 0x5f, 0x4b, 0xf3, 0x3d, 0x8c, 0xae, 0x7d, 0xa5, 0x63, + 0x23, 0x74, 0x57, 0x06, 0x4f, 0x5f, 0x88, 0x73, 0xaf, 0x04, 0xc3, 0x28, 0x34, 0x61, 0x37, 0x1c, + 0xc4, 0xd9, 0x55, 0xd0, 0xb9, 0x1a, 0x06, 0x91, 0xea, 0x04, 0xa2, 0xaf, 0xfc, 0x58, 0xf4, 0x55, + 0x9c, 0x5d, 0x05, 0x93, 0x9d, 0xae, 0xe3, 0xc8, 0x48, 0x7f, 0x18, 0x0e, 0x54, 0xf7, 0x3e, 0xd0, + 0x52, 0x5d, 0x7d, 0xed, 0x84, 0x51, 0x9c, 0x5d, 0x05, 0xa2, 0xf7, 0x6d, 0xa2, 0x06, 0x4a, 0xfb, + 0xc3, 0x48, 0x06, 0x13, 0xc0, 0x8d, 0x93, 0x6f, 0xc9, 0x36, 0x37, 0x6e, 0x35, 0xc2, 0x5d, 0x67, + 0x76, 0xd8, 0x91, 0xbd, 0x91, 0xbe, 0xd6, 0xe1, 0x77, 0xed, 0x0b, 0x63, 0x22, 0xd5, 0x19, 0xb7, + 0x88, 0xf3, 0xce, 0xfc, 0xf8, 0xc8, 0x20, 0x1f, 0x9b, 0xe3, 0x94, 0x9f, 0x0a, 0x80, 0xe3, 0x30, + 0x50, 0xc6, 0x3f, 0x48, 0xe3, 0x1e, 0xcc, 0xf1, 0x0e, 0xda, 0x38, 0x07, 0x76, 0x7c, 0x03, 0x3b, + 0xae, 0x81, 0x1d, 0xcf, 0x6c, 0x36, 0x7c, 0x1d, 0xa8, 0x08, 0xa3, 0xec, 0xe4, 0x44, 0x0a, 0xcf, + 0x50, 0xcc, 0x87, 0x88, 0x65, 0x2b, 0x96, 0x68, 0x2b, 0xc2, 0xcb, 0x2b, 0xb6, 0xcc, 0xa2, 0xca, + 0x2d, 0xbc, 0xec, 0xc2, 0xcb, 0x2f, 0xbc, 0x0c, 0xe3, 0xb8, 0x31, 0x5b, 0x40, 0xb6, 0x22, 0x8a, + 0x3c, 0x67, 0x01, 0x8d, 0xb5, 0xcf, 0x37, 0x68, 0x66, 0xe7, 0x4c, 0x45, 0x7d, 0x0c, 0x11, 0x2c, + 0xf5, 0x30, 0x27, 0x6f, 0xc0, 0xc9, 0x35, 0xb2, 0x6c, 0x17, 0x43, 0xbe, 0xd1, 0x65, 0xbc, 0x30, + 0x72, 0x5e, 0x18, 0x59, 0x2f, 0x8c, 0xbc, 0x63, 0xc9, 0x3c, 0x98, 0xdc, 0x67, 0xad, 0x78, 0x8e, + 0x28, 0xb0, 0x5b, 0xd8, 0x47, 0x17, 0xe4, 0x46, 0xc3, 0x35, 0xcc, 0x83, 0xef, 0xa6, 0x47, 0x19, + 0x24, 0x27, 0x12, 0x3c, 0xc2, 0x0a, 0xa7, 0xfb, 0xa1, 0xa7, 0xa6, 0x97, 0x3c, 0x5d, 0x83, 0x05, + 0xdf, 0x24, 0x3c, 0x4c, 0xe8, 0x2d, 0x11, 0x7a, 0x09, 0xbd, 0x84, 0x5e, 0x42, 0x2f, 0xa1, 0x97, + 0xca, 0x3a, 0xbf, 0x15, 0xd1, 0xbc, 0xae, 0x2c, 0xb0, 0x09, 0xa3, 0x0d, 0x24, 0xf0, 0x4a, 0xb9, + 0x19, 0xeb, 0x6b, 0x1c, 0xe9, 0x3b, 0x2e, 0x5f, 0x5a, 0x23, 0x28, 0x28, 0x02, 0x1c, 0x14, 0x0b, + 0x12, 0x8a, 0x02, 0x0b, 0x85, 0x83, 0x86, 0xc2, 0xc1, 0x43, 0xe1, 0x20, 0x02, 0x13, 0x26, 0x40, + 0xa1, 0x22, 0x6b, 0x5d, 0x58, 0x47, 0x2d, 0x57, 0x37, 0x47, 0x4a, 0x9b, 0x52, 0x15, 0xb9, 0x66, + 0xa6, 0x2a, 0x5e, 0x05, 0x0e, 0x11, 0x73, 0x03, 0x88, 0xa7, 0x5f, 0xd8, 0x9a, 0xb3, 0x85, 0xbe, + 0x41, 0x44, 0xc1, 0xf0, 0x32, 0x17, 0x2e, 0xf8, 0x06, 0x12, 0xb9, 0x78, 0x0b, 0xb0, 0x68, 0xbe, + 0x20, 0x72, 0x34, 0x9b, 0x62, 0xe2, 0x8e, 0x29, 0xb6, 0xe2, 0x14, 0xab, 0x56, 0x2a, 0x7b, 0x15, + 0xa6, 0xd9, 0x66, 0xb1, 0x28, 0x7e, 0x74, 0xad, 0x37, 0xbc, 0x5f, 0x05, 0x2d, 0xe3, 0xc0, 0x33, + 0xe1, 0x72, 0x43, 0x0a, 0xd4, 0x19, 0x71, 0x05, 0x51, 0x15, 0xfa, 0x82, 0xaf, 0xd9, 0x19, 0xe9, + 0x0b, 0xbe, 0x6a, 0xe6, 0xd0, 0x17, 0x5c, 0x71, 0xc0, 0xf4, 0x05, 0xd7, 0x78, 0x20, 0x56, 0x30, + 0x5f, 0xf0, 0x43, 0x01, 0x6c, 0xc1, 0x0a, 0x6d, 0xc1, 0x25, 0xbf, 0x68, 0x0b, 0xd2, 0xb3, 0xa0, + 0x2d, 0xb8, 0x81, 0x6a, 0x34, 0x9b, 0x62, 0xb4, 0x05, 0x57, 0x9e, 0x62, 0xbb, 0x15, 0x9a, 0x82, + 0x1b, 0x06, 0xa2, 0xf8, 0xd1, 0xd1, 0x14, 0x2c, 0x6c, 0x11, 0x4f, 0x9c, 0xb6, 0xdb, 0xb4, 0xba, + 0x14, 0xc1, 0x15, 0x4c, 0x62, 0xa5, 0x2d, 0xf8, 0x92, 0xf0, 0x68, 0x0b, 0xbe, 0x62, 0x6f, 0xa4, + 0x2d, 0xf8, 0xaa, 0x99, 0x43, 0x5b, 0x70, 0xc5, 0x01, 0xd3, 0x16, 0x5c, 0xe3, 0x81, 0x58, 0x81, + 0x6c, 0xc1, 0x8e, 0xd2, 0x22, 0xba, 0x2f, 0x80, 0x2f, 0xb8, 0x0f, 0x1c, 0xe2, 0xb1, 0xd4, 0x57, + 0x93, 0x85, 0xb9, 0x34, 0x06, 0x97, 0x75, 0x2d, 0x68, 0x0c, 0xae, 0xdc, 0xb5, 0x28, 0xd1, 0xb3, + 0xd8, 0x30, 0x3d, 0x9a, 0x4d, 0x31, 0x1a, 0x83, 0x2b, 0x4f, 0x31, 0xce, 0x17, 0xdc, 0x40, 0x18, + 0xc5, 0x8f, 0x8e, 0xd6, 0x60, 0x61, 0xcb, 0xb8, 0x27, 0xef, 0x8c, 0xd4, 0x3d, 0xd9, 0xc3, 0x37, + 0x06, 0xb3, 0x48, 0x69, 0x0b, 0xbe, 0x24, 0x3c, 0xda, 0x82, 0xaf, 0xd8, 0x17, 0x69, 0x0b, 0xbe, + 0x6a, 0xe6, 0xd0, 0x16, 0x5c, 0x71, 0xc0, 0xb4, 0x05, 0xd7, 0x78, 0x18, 0x56, 0x24, 0x5b, 0x10, + 0xee, 0xd4, 0xaf, 0xe7, 0x64, 0x1c, 0xe4, 0x14, 0x30, 0x42, 0xed, 0x4b, 0xda, 0x30, 0x1c, 0x8e, + 0x47, 0x9e, 0x62, 0x80, 0x0f, 0xb5, 0x59, 0xa4, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, + 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x26, 0xc5, 0x6c, 0x1b, 0x0e, 0x45, 0x64, + 0x54, 0x11, 0x98, 0x76, 0x1a, 0x28, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, + 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x49, 0x31, 0xdb, 0x86, 0x26, 0x12, 0x3a, 0x56, 0x46, + 0xdd, 0x16, 0x60, 0x5d, 0xd2, 0x2f, 0xb1, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, + 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x19, 0x11, 0x68, 0x8a, 0x7a, 0x75, 0xad, 0x43, + 0x23, 0x8c, 0x0a, 0x31, 0x17, 0x40, 0x79, 0x71, 0xf7, 0xab, 0xbc, 0x11, 0xc3, 0xf4, 0x00, 0xca, + 0x20, 0x1c, 0x4a, 0xdd, 0x9d, 0x80, 0xa2, 0xaf, 0xa5, 0xf9, 0x1e, 0x46, 0xd7, 0xbe, 0xd2, 0xb1, + 0x11, 0xba, 0x2b, 0x83, 0xa7, 0x2f, 0xc4, 0xb9, 0x57, 0x82, 0x61, 0x14, 0x9a, 0xb0, 0x1b, 0x0e, + 0xe2, 0xec, 0x2a, 0xe8, 0x5c, 0x0d, 0x83, 0x48, 0x75, 0x02, 0xd1, 0x57, 0x7e, 0x2c, 0xfa, 0x2a, + 0xce, 0xae, 0x02, 0x35, 0xbc, 0x2d, 0xfb, 0x71, 0x64, 0xa4, 0x3f, 0x0c, 0x07, 0xaa, 0x7b, 0x1f, + 0x68, 0xa9, 0xae, 0xbe, 0x76, 0xc2, 0x28, 0xce, 0xae, 0x02, 0xd1, 0xfb, 0x36, 0x51, 0x2b, 0xa5, + 0xfd, 0x61, 0x24, 0x83, 0x28, 0x1c, 0x19, 0x19, 0x27, 0xdf, 0x82, 0x91, 0xbe, 0xd6, 0xe1, 0x77, + 0xed, 0x0b, 0x63, 0x22, 0xd5, 0x99, 0xfc, 0x20, 0xf7, 0x52, 0x72, 0xa0, 0x26, 0x8f, 0xd1, 0x44, + 0x8e, 0x04, 0xe5, 0x58, 0xfd, 0xff, 0xca, 0x7b, 0xc4, 0x7d, 0x71, 0xbd, 0x63, 0x15, 0x9b, 0xba, + 0x31, 0x60, 0x67, 0xfe, 0x7f, 0x51, 0xfa, 0x70, 0x20, 0xc7, 0x50, 0x19, 0x7b, 0x1f, 0xb7, 0xf4, + 0x68, 0x30, 0x00, 0x3a, 0x93, 0xf5, 0x8b, 0xb8, 0xc3, 0x0d, 0xae, 0x11, 0xf5, 0x64, 0x24, 0x7b, + 0x9f, 0xee, 0xd3, 0xd0, 0x98, 0x84, 0xf8, 0x82, 0xb9, 0xf6, 0x42, 0xe9, 0x41, 0x9d, 0xa8, 0x1c, + 0x8d, 0xba, 0x46, 0xa7, 0x63, 0x86, 0x93, 0xe4, 0xe6, 0x1d, 0xa5, 0xf7, 0xae, 0x7d, 0x9a, 0xde, + 0xb1, 0xf6, 0xa7, 0xab, 0x61, 0xbb, 0xa9, 0x3a, 0xed, 0x7a, 0x5f, 0x9d, 0x89, 0xbe, 0x6a, 0x1f, + 0x0d, 0x6f, 0xcb, 0x67, 0x91, 0x91, 0xa7, 0x93, 0x9b, 0xd4, 0x3e, 0x49, 0x6f, 0x4d, 0xbb, 0xde, + 0xfb, 0xd6, 0x54, 0x9d, 0x23, 0x7d, 0x1a, 0xc9, 0x76, 0x73, 0x7c, 0x43, 0xda, 0x17, 0xc9, 0x5f, + 0x5f, 0xcf, 0xfe, 0xf8, 0x37, 0x54, 0x63, 0xf7, 0x11, 0x38, 0x2e, 0x41, 0x68, 0xa5, 0x67, 0xcd, + 0x4a, 0x8e, 0xdb, 0x1c, 0x73, 0xd7, 0xb3, 0xdd, 0x7c, 0xb2, 0xa3, 0x5c, 0x9a, 0x32, 0xf4, 0xb8, + 0xd3, 0xfa, 0xaa, 0xb7, 0x25, 0x75, 0x6f, 0x18, 0x2a, 0x6d, 0xb6, 0xba, 0xe1, 0x20, 0x8c, 0x1c, + 0x69, 0x0c, 0x06, 0x40, 0x43, 0x01, 0x33, 0x14, 0x20, 0x63, 0x00, 0xb1, 0xab, 0x8c, 0x01, 0x51, + 0x9d, 0x22, 0xab, 0x8d, 0x43, 0x76, 0x5d, 0x39, 0xab, 0xba, 0x91, 0x4d, 0xfb, 0xa2, 0x65, 0xf7, + 0x13, 0x2d, 0x27, 0xbb, 0xeb, 0x24, 0x2f, 0x66, 0x72, 0xdb, 0xed, 0xfa, 0xf6, 0x3a, 0xa0, 0x9d, + 0x4f, 0xb2, 0xd4, 0xc5, 0x5d, 0x75, 0xed, 0x82, 0x75, 0x69, 0x8b, 0x12, 0xb5, 0x42, 0x49, 0xb2, + 0x93, 0x91, 0xab, 0xcf, 0x0f, 0x0b, 0xb9, 0xe1, 0x4d, 0xdb, 0x3f, 0x1c, 0x19, 0x7f, 0x18, 0xc6, + 0xc6, 0x5a, 0x76, 0x3c, 0x6e, 0xe5, 0xfd, 0x34, 0x02, 0x4b, 0x15, 0x61, 0xfa, 0x04, 0xdd, 0xd2, + 0xc7, 0xd9, 0x9e, 0xd8, 0xe6, 0x62, 0xa2, 0x9a, 0xdb, 0x89, 0x67, 0xae, 0x26, 0x92, 0x39, 0x9f, + 0x18, 0xe6, 0x7c, 0xa2, 0x97, 0xf3, 0x89, 0x5b, 0xeb, 0xc5, 0x2a, 0x07, 0xca, 0xae, 0x07, 0xe4, + 0xa5, 0x20, 0x6b, 0x3d, 0x71, 0xa6, 0xe5, 0x22, 0xfd, 0x7c, 0xcb, 0x9d, 0xd6, 0xae, 0x00, 0x38, + 0x13, 0x02, 0x97, 0x82, 0x80, 0x21, 0x0c, 0xae, 0x05, 0x02, 0x46, 0x28, 0x60, 0x04, 0x03, 0x46, + 0x38, 0x36, 0xc3, 0xd7, 0xb1, 0x2d, 0x28, 0xb3, 0xc2, 0xe2, 0x2e, 0xdf, 0x66, 0xf4, 0xc5, 0x55, + 0xae, 0xb9, 0x91, 0x19, 0xe7, 0x72, 0x83, 0x20, 0x3b, 0x58, 0xf2, 0x83, 0x22, 0x43, 0x70, 0x72, + 0x04, 0x27, 0x4b, 0x70, 0xf2, 0xe4, 0x46, 0xa6, 0x1c, 0xc9, 0x95, 0x73, 0xd9, 0xca, 0x02, 0x48, + 0xa6, 0x03, 0x38, 0xcf, 0xd3, 0x69, 0xf5, 0x72, 0x39, 0x3b, 0xe1, 0xa9, 0x9c, 0x39, 0x5e, 0x9e, + 0x09, 0xb3, 0x4e, 0x14, 0x69, 0x3d, 0x28, 0xe6, 0xba, 0x4f, 0xb4, 0xf5, 0x9d, 0xb0, 0xeb, 0x38, + 0x61, 0xd7, 0x6b, 0xc2, 0xae, 0xcb, 0xdc, 0xec, 0x89, 0xa0, 0x30, 0xeb, 0x29, 0xb3, 0xba, 0x33, + 0x90, 0xa2, 0x1f, 0xc9, 0x3e, 0x42, 0xd1, 0x99, 0x8e, 0xba, 0x6a, 0x00, 0xb1, 0x9c, 0xa6, 0x4f, + 0x7f, 0xdf, 0xbf, 0x4f, 0xd6, 0x79, 0x05, 0x89, 0x90, 0x6f, 0xea, 0x4c, 0x53, 0x87, 0x23, 0xaf, + 0xe9, 0x44, 0x4f, 0x1c, 0xa6, 0xcb, 0x22, 0x22, 0xd6, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0x3a, 0x62, + 0x1d, 0xb1, 0x8e, 0x58, 0x57, 0x48, 0xac, 0xcb, 0xb4, 0x9c, 0x64, 0x67, 0xbd, 0x31, 0xd2, 0xa5, + 0x3c, 0x38, 0x60, 0x37, 0x0d, 0x88, 0x5c, 0x47, 0xae, 0x23, 0xd7, 0x91, 0xeb, 0xc8, 0x75, 0xe4, + 0x3a, 0x72, 0x5d, 0x21, 0xb9, 0x6e, 0x2a, 0xe5, 0xc4, 0x3a, 0xeb, 0x6d, 0x91, 0xec, 0x8b, 0x05, + 0x03, 0x75, 0x49, 0x38, 0x18, 0x48, 0x57, 0x22, 0xd2, 0x11, 0xe9, 0x88, 0x74, 0x44, 0x3a, 0x22, + 0x9d, 0xab, 0x56, 0x71, 0x3d, 0x41, 0x29, 0x0b, 0x64, 0xb2, 0x19, 0xa0, 0xd2, 0x3d, 0x89, 0xb3, + 0x31, 0xf9, 0xe3, 0xfa, 0xbe, 0xc7, 0xd8, 0x50, 0x76, 0x50, 0x84, 0xda, 0x02, 0x1f, 0x6e, 0xcb, + 0x7b, 0xc4, 0x2d, 0xee, 0xb1, 0xb7, 0xb4, 0x47, 0xdd, 0xc2, 0x1e, 0x7e, 0xcb, 0x7a, 0xf8, 0x2d, + 0xea, 0xe1, 0xb7, 0xa4, 0xe7, 0xde, 0xb8, 0x90, 0x1e, 0x0b, 0xb0, 0xd7, 0x82, 0xe8, 0xb9, 0xcc, + 0xf3, 0x5e, 0xfe, 0xc7, 0x7f, 0x13, 0xa4, 0x88, 0xa5, 0x89, 0xb3, 0xab, 0xd4, 0xa9, 0x49, 0x30, + 0x83, 0xdb, 0x64, 0xa2, 0x24, 0x25, 0xc8, 0x0c, 0xfa, 0x5c, 0x36, 0x22, 0xcc, 0xa4, 0x27, 0x8e, + 0x12, 0x47, 0x89, 0xa3, 0xc4, 0x51, 0xe2, 0x28, 0x71, 0xd4, 0x7a, 0xdd, 0x1a, 0x29, 0x6d, 0xf6, + 0x76, 0x01, 0x69, 0x14, 0x09, 0x46, 0x9b, 0x42, 0x5f, 0x8d, 0xef, 0xd6, 0x25, 0x54, 0x0d, 0x00, + 0x3c, 0x9e, 0xe7, 0x8b, 0xd2, 0xb8, 0x47, 0x73, 0x82, 0x1f, 0x78, 0xf9, 0x97, 0x18, 0x8c, 0x24, + 0x70, 0x7c, 0x9f, 0x23, 0xd1, 0x35, 0x2a, 0xd4, 0x07, 0xea, 0x4a, 0x4d, 0x76, 0x61, 0xde, 0xe1, + 0xa1, 0xb5, 0xbf, 0x93, 0x12, 0xe2, 0x8e, 0x29, 0xb1, 0x64, 0x4a, 0x94, 0x77, 0xf7, 0xcb, 0xfb, + 0xd5, 0xda, 0xee, 0x7e, 0x85, 0xb9, 0x51, 0x6c, 0x20, 0xc3, 0x8b, 0xa6, 0x45, 0x93, 0x08, 0xa5, + 0x76, 0x7a, 0xdd, 0xf0, 0xe6, 0x66, 0xa4, 0x95, 0xb9, 0x47, 0x7d, 0x84, 0xf9, 0x34, 0x40, 0x1a, + 0x47, 0xf3, 0xc2, 0xa1, 0x71, 0xb4, 0x40, 0x97, 0xa2, 0x71, 0xb4, 0x50, 0x4f, 0xa7, 0x71, 0xb4, + 0x64, 0x80, 0x34, 0x8e, 0x0a, 0x34, 0x92, 0xe0, 0x73, 0xcc, 0x17, 0xc8, 0x60, 0x01, 0x9f, 0x63, + 0x4e, 0xb9, 0x42, 0xc9, 0x38, 0xbb, 0xbe, 0xe7, 0xa3, 0x4c, 0x4c, 0x4a, 0x85, 0xd9, 0x3b, 0x22, + 0x97, 0x93, 0x20, 0x7b, 0x48, 0x90, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0x72, 0x29, 0xb9, 0x94, 0x5c, + 0x6a, 0xbd, 0x6e, 0xa9, 0xa1, 0x2f, 0x7a, 0xbd, 0x48, 0xc6, 0x31, 0x22, 0x9a, 0xee, 0x03, 0xc5, + 0x94, 0xb6, 0x21, 0x1f, 0x6a, 0xfe, 0x76, 0xcf, 0xba, 0x2d, 0x03, 0xf6, 0xad, 0x5c, 0x1f, 0xfb, + 0x00, 0x18, 0xdb, 0xa9, 0x30, 0x46, 0x46, 0x1a, 0xae, 0xbb, 0x65, 0x01, 0xfe, 0xf3, 0xf6, 0xed, + 0xe5, 0x8e, 0xbf, 0xdf, 0xfa, 0x79, 0x59, 0xf2, 0xf7, 0x5b, 0xc9, 0x65, 0x69, 0xf2, 0x2d, 0xb9, + 0xde, 0xbd, 0xdc, 0xf1, 0xcb, 0xd3, 0xeb, 0xca, 0xe5, 0x8e, 0x5f, 0x69, 0x6d, 0xff, 0xfd, 0xf7, + 0xfb, 0xed, 0x1f, 0x7b, 0x0f, 0x8b, 0xbf, 0xf1, 0x3f, 0x1e, 0xdc, 0x4d, 0x68, 0x61, 0x3d, 0x1e, + 0x7a, 0xc7, 0xa2, 0xf4, 0xdb, 0x45, 0xa9, 0xca, 0xa2, 0xb4, 0xde, 0x45, 0x49, 0xf8, 0xfd, 0xba, + 0xff, 0xb9, 0xf5, 0xa3, 0xf4, 0xae, 0xfc, 0xf0, 0x71, 0xfb, 0x47, 0xed, 0xe1, 0xe9, 0x8b, 0x3f, + 0xe7, 0xfd, 0x5a, 0xe9, 0x5d, 0xed, 0xe1, 0xe3, 0x33, 0x3f, 0xa9, 0x3e, 0x7c, 0xfc, 0xcd, 0x7f, + 0xa3, 0xf2, 0xf0, 0x36, 0xf7, 0xab, 0xe3, 0xd7, 0x77, 0x9f, 0x7b, 0x43, 0xf9, 0x99, 0x37, 0xec, + 0x3d, 0xf7, 0x86, 0xbd, 0x67, 0xde, 0xf0, 0x6c, 0x48, 0xbb, 0xcf, 0xbc, 0xa1, 0xf2, 0xf0, 0x33, + 0xf7, 0xfb, 0x6f, 0xe7, 0xff, 0x6a, 0xf5, 0x61, 0xfb, 0xe7, 0x73, 0x3f, 0xab, 0x3d, 0xfc, 0xfc, + 0xb8, 0xcd, 0x12, 0x5d, 0x8c, 0xf1, 0xd0, 0x16, 0x9f, 0xe0, 0x23, 0x89, 0xa6, 0x27, 0xef, 0x8c, + 0x0f, 0xff, 0x14, 0x7f, 0x5e, 0x90, 0x74, 0x4c, 0xe7, 0x85, 0x43, 0xc7, 0x74, 0x81, 0x6e, 0x45, + 0xc7, 0x74, 0xa1, 0x9e, 0x4e, 0xc7, 0x74, 0xc9, 0x00, 0xe9, 0x98, 0x16, 0x68, 0x28, 0xc9, 0x27, + 0xf9, 0x2f, 0x19, 0x35, 0x16, 0xef, 0x49, 0xfe, 0xaf, 0x6c, 0xa1, 0x64, 0x3c, 0xf3, 0xff, 0x7c, + 0xa2, 0x0f, 0x4a, 0xad, 0x4a, 0xdf, 0x8a, 0x81, 0xea, 0xf9, 0x91, 0x14, 0x71, 0xa8, 0xf1, 0x80, + 0xf5, 0x49, 0x7c, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x95, 0xac, 0x4a, 0x56, 0x25, 0xab, 0x6e, 0x18, + 0xab, 0xaa, 0x9e, 0xd4, 0x46, 0x99, 0x7b, 0x50, 0x5e, 0x05, 0x5a, 0x9f, 0xe6, 0x1d, 0xa5, 0xb7, + 0xea, 0x93, 0x88, 0x01, 0x4b, 0xea, 0xb4, 0x41, 0x8f, 0x4e, 0xfe, 0xaa, 0x1f, 0x1f, 0x1d, 0xb4, + 0x9b, 0x8d, 0x8b, 0xf3, 0xc3, 0x76, 0xf3, 0xb0, 0x7e, 0xd6, 0x38, 0x41, 0xab, 0xae, 0x93, 0x65, + 0x88, 0x31, 0xe4, 0x63, 0x22, 0xd0, 0x75, 0xa5, 0x4f, 0x5b, 0xb7, 0x7e, 0xd6, 0x3e, 0x6e, 0x34, + 0x4e, 0x3d, 0xae, 0x18, 0x5e, 0x9b, 0x26, 0xfd, 0xa3, 0x71, 0xf2, 0xf9, 0xf0, 0x80, 0x2d, 0xba, + 0x3e, 0x2d, 0xda, 0x68, 0x1e, 0xfd, 0x79, 0x74, 0x52, 0x3f, 0x6f, 0x34, 0xd9, 0xaa, 0x6b, 0x94, + 0xa7, 0xc7, 0x17, 0x67, 0xe7, 0x87, 0x4d, 0xd4, 0xfa, 0x0b, 0x15, 0x51, 0x8b, 0xe3, 0x11, 0xb0, + 0x28, 0x10, 0xdc, 0xc1, 0x81, 0x88, 0x8d, 0x7f, 0x13, 0xf6, 0x54, 0x5f, 0xc9, 0x1e, 0x9e, 0x39, + 0x38, 0x1b, 0x1e, 0xbd, 0xc1, 0x79, 0xe1, 0xd0, 0x1b, 0x5c, 0xa0, 0x43, 0xd1, 0x1b, 0x5c, 0xa8, + 0xa7, 0xd3, 0x1b, 0x5c, 0x32, 0x40, 0x7a, 0x83, 0x05, 0x22, 0x60, 0x60, 0x6f, 0xd0, 0xa8, 0x1b, + 0x69, 0x54, 0xf7, 0x3a, 0xae, 0x96, 0x01, 0xbd, 0x41, 0xa0, 0x09, 0xd0, 0xde, 0x85, 0x4e, 0x76, + 0xa9, 0xf2, 0xb4, 0xd0, 0x61, 0x2c, 0xbb, 0xa1, 0xee, 0x41, 0xad, 0x96, 0xe2, 0x7e, 0x8b, 0xbf, + 0x79, 0xa3, 0xb8, 0xdf, 0xe2, 0xcb, 0xc3, 0xe3, 0x7e, 0x8b, 0xeb, 0xe8, 0xca, 0x70, 0xbf, 0xc5, + 0x57, 0x48, 0x89, 0xd2, 0x87, 0x72, 0xb9, 0x5a, 0x2b, 0x97, 0x77, 0x6a, 0x7b, 0xb5, 0x9d, 0xfd, + 0x4a, 0xa5, 0x54, 0x2d, 0x71, 0xe7, 0xc5, 0x82, 0xf3, 0x23, 0x5e, 0x34, 0x5c, 0xb7, 0x01, 0x53, + 0x45, 0x61, 0x4e, 0xcd, 0xcf, 0x41, 0x3d, 0xc6, 0xe9, 0xf9, 0x59, 0x58, 0x07, 0xb2, 0x2f, 0x46, + 0x83, 0xc9, 0x50, 0x75, 0x87, 0x5e, 0xdb, 0xdc, 0x70, 0xe8, 0xb5, 0x2d, 0xd0, 0xbd, 0xe9, 0xb5, + 0x2d, 0xd4, 0xd3, 0xe9, 0xb5, 0x2d, 0x19, 0x20, 0xbd, 0xb6, 0x02, 0x8d, 0x6b, 0x78, 0x6c, 0xc8, + 0xe2, 0x2a, 0xc8, 0x63, 0x43, 0xfe, 0xed, 0x8b, 0x36, 0xd6, 0x5a, 0x8e, 0xd9, 0x69, 0x63, 0x15, + 0xbd, 0xdc, 0xcf, 0xa6, 0x04, 0x6d, 0xac, 0xa5, 0x53, 0x82, 0xc7, 0x86, 0xac, 0x0b, 0x90, 0xe1, + 0x45, 0x43, 0xf3, 0x0a, 0xa6, 0x76, 0x7a, 0xe9, 0xe2, 0xc8, 0x70, 0x64, 0x24, 0x9e, 0x81, 0xf5, + 0x6b, 0x70, 0x34, 0x8c, 0xe6, 0x85, 0x43, 0xc3, 0x68, 0x81, 0xee, 0x44, 0xc3, 0x68, 0xa1, 0x9e, + 0x4e, 0xc3, 0x68, 0xc9, 0x00, 0x69, 0x18, 0x15, 0x68, 0x04, 0x01, 0x6c, 0x18, 0x75, 0xc2, 0x70, + 0x20, 0x85, 0x46, 0x5c, 0xb4, 0x59, 0x22, 0xca, 0x01, 0x44, 0xe0, 0x38, 0x85, 0xbc, 0xba, 0xd6, + 0xa1, 0x11, 0xe3, 0xd1, 0x18, 0x44, 0x02, 0x79, 0x71, 0xf7, 0xab, 0xbc, 0x11, 0xc3, 0x74, 0xd3, + 0x99, 0x20, 0x1c, 0x4a, 0xdd, 0x9d, 0x80, 0x92, 0xaf, 0xa5, 0xf9, 0x1e, 0x46, 0xd7, 0xbe, 0xd2, + 0xb1, 0x11, 0xba, 0x2b, 0x83, 0xa7, 0x2f, 0xc4, 0xb9, 0x57, 0x82, 0x61, 0x14, 0x9a, 0xb0, 0x1b, + 0x0e, 0xe2, 0xec, 0x2a, 0xe8, 0x5c, 0x0d, 0x83, 0x48, 0x75, 0x02, 0xd1, 0x57, 0x7e, 0x2c, 0xfa, + 0x2a, 0xce, 0xae, 0x82, 0xc9, 0x4e, 0xd7, 0x71, 0x64, 0xa4, 0x3f, 0x0c, 0x07, 0xaa, 0x7b, 0x1f, + 0x68, 0xa9, 0xae, 0xbe, 0x76, 0xc2, 0x28, 0xce, 0xae, 0x02, 0xd1, 0xfb, 0x36, 0x51, 0x83, 0x70, + 0x64, 0xfc, 0x61, 0x18, 0x9b, 0x60, 0x82, 0xb8, 0x71, 0xf2, 0x2d, 0xd9, 0xe8, 0xc6, 0xad, 0x4a, + 0xb8, 0xeb, 0xce, 0x0e, 0xbb, 0xb2, 0x37, 0xd2, 0xd7, 0x3a, 0xfc, 0xae, 0x7d, 0x61, 0x4c, 0xa4, + 0x3a, 0xe3, 0x16, 0x71, 0xde, 0x9d, 0x1f, 0x1f, 0x1a, 0xe4, 0x63, 0x73, 0x9c, 0xf4, 0x53, 0x09, + 0x70, 0x1c, 0x06, 0xca, 0x08, 0x08, 0x69, 0xe4, 0x83, 0x39, 0xe2, 0x41, 0x1b, 0xe9, 0xc0, 0x8e, + 0x70, 0x60, 0x47, 0x36, 0xb0, 0x23, 0x9a, 0xcd, 0xc6, 0xaf, 0x03, 0x15, 0x61, 0x94, 0x9d, 0x9c, + 0x48, 0xe1, 0x59, 0x8a, 0xf9, 0x10, 0xb1, 0x8c, 0xc5, 0x12, 0x8d, 0x45, 0x78, 0x79, 0xc5, 0x96, + 0x59, 0x54, 0xb9, 0x85, 0x97, 0x5d, 0x78, 0xf9, 0x85, 0x97, 0x61, 0x1c, 0x3f, 0x66, 0x0b, 0xc8, + 0x58, 0x44, 0x91, 0xe7, 0x2c, 0xa0, 0xb1, 0xf6, 0xf9, 0x06, 0xcd, 0xee, 0x9c, 0xa9, 0xa8, 0x8f, + 0x21, 0x82, 0xa5, 0x1e, 0xe6, 0xf4, 0x0d, 0x38, 0xb9, 0x46, 0x96, 0xed, 0x62, 0xc8, 0x37, 0xba, + 0x8c, 0x17, 0x46, 0xce, 0x0b, 0x23, 0xeb, 0x85, 0x91, 0x77, 0x2c, 0x99, 0x07, 0x93, 0xfb, 0xac, + 0x15, 0xcf, 0x11, 0x05, 0x76, 0x0b, 0xfb, 0xf0, 0x82, 0xdc, 0x68, 0xb8, 0x86, 0x79, 0xf4, 0xdd, + 0xf4, 0x30, 0x83, 0xe4, 0x4c, 0x82, 0x47, 0x58, 0xe1, 0x84, 0x3f, 0xf4, 0xd4, 0xf4, 0x92, 0xa7, + 0x6b, 0xb0, 0xe0, 0x9b, 0x84, 0x87, 0x09, 0xbd, 0x25, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, + 0x25, 0xf4, 0x52, 0x59, 0xe7, 0xb7, 0x22, 0x9a, 0xd7, 0x95, 0x05, 0x36, 0x61, 0xb4, 0x81, 0x04, + 0x5e, 0x2b, 0x37, 0x63, 0x7d, 0x8d, 0x23, 0x7d, 0xc7, 0x05, 0x4c, 0x6b, 0x04, 0x05, 0x45, 0x80, + 0x83, 0x62, 0x41, 0x42, 0x51, 0x60, 0xa1, 0x70, 0xd0, 0x50, 0x38, 0x78, 0x28, 0x1c, 0x44, 0x60, + 0xc2, 0x04, 0x28, 0x54, 0x64, 0xad, 0x0b, 0xeb, 0xa8, 0xe5, 0xea, 0xe6, 0x48, 0x69, 0x53, 0xaa, + 0x22, 0xd7, 0xcc, 0x54, 0xc5, 0xab, 0xc0, 0x21, 0x62, 0x6e, 0x01, 0xf1, 0xf4, 0x0b, 0x5b, 0x73, + 0xb6, 0xd0, 0xb7, 0x88, 0x28, 0x18, 0x5e, 0xe6, 0xc2, 0x05, 0xdf, 0x42, 0x22, 0x17, 0x6f, 0x01, + 0x96, 0xcd, 0x17, 0x44, 0x8e, 0x66, 0x53, 0x4c, 0xdc, 0x31, 0xc5, 0x56, 0x9c, 0x62, 0xd5, 0x4a, + 0x65, 0xaf, 0xc2, 0x34, 0xdb, 0x2c, 0x16, 0xc5, 0x8f, 0xae, 0xf5, 0x86, 0xf7, 0xab, 0xa0, 0x65, + 0x1c, 0x78, 0x26, 0x5c, 0x6e, 0x48, 0x81, 0x3a, 0x23, 0xae, 0x20, 0xaa, 0x42, 0x5f, 0xf0, 0x35, + 0x3b, 0x23, 0x7d, 0xc1, 0x57, 0xcd, 0x1c, 0xfa, 0x82, 0x2b, 0x0e, 0x98, 0xbe, 0xe0, 0x1a, 0x0f, + 0xc4, 0x0a, 0xe6, 0x0b, 0x7e, 0x28, 0x80, 0x2d, 0x58, 0xa1, 0x2d, 0xb8, 0xe4, 0x17, 0x6d, 0x41, + 0x7a, 0x16, 0xb4, 0x05, 0x37, 0x50, 0x8d, 0x66, 0x53, 0x8c, 0xb6, 0xe0, 0xca, 0x53, 0x6c, 0xb7, + 0x42, 0x53, 0x70, 0xc3, 0x40, 0x14, 0x3f, 0x3a, 0x9a, 0x82, 0x85, 0x2d, 0xe2, 0x89, 0xd3, 0x76, + 0x9b, 0x56, 0x97, 0x22, 0xb8, 0x82, 0x49, 0xac, 0xb4, 0x05, 0x5f, 0x12, 0x1e, 0x6d, 0xc1, 0x57, + 0xec, 0x8d, 0xb4, 0x05, 0x5f, 0x35, 0x73, 0x68, 0x0b, 0xae, 0x38, 0x60, 0xda, 0x82, 0x6b, 0x3c, + 0x10, 0x2b, 0x90, 0x2d, 0xd8, 0x51, 0x5a, 0x44, 0xf7, 0x05, 0xf0, 0x05, 0xf7, 0x81, 0x43, 0x3c, + 0x96, 0xfa, 0x6a, 0xb2, 0x30, 0x97, 0xc6, 0xe0, 0xb2, 0xae, 0x05, 0x8d, 0xc1, 0x95, 0xbb, 0x16, + 0x25, 0x7a, 0x16, 0x1b, 0xa6, 0x47, 0xb3, 0x29, 0x46, 0x63, 0x70, 0xe5, 0x29, 0xc6, 0xf9, 0x82, + 0x1b, 0x08, 0xa3, 0xf8, 0xd1, 0xd1, 0x1a, 0x2c, 0x6c, 0x19, 0xf7, 0xe4, 0x9d, 0x91, 0xba, 0x27, + 0x7b, 0xf8, 0xc6, 0x60, 0x16, 0x29, 0x6d, 0xc1, 0x97, 0x84, 0x47, 0x5b, 0xf0, 0x15, 0xfb, 0x22, + 0x6d, 0xc1, 0x57, 0xcd, 0x1c, 0xda, 0x82, 0x2b, 0x0e, 0x98, 0xb6, 0xe0, 0x1a, 0x0f, 0xc3, 0x8a, + 0x64, 0x0b, 0xc2, 0x9d, 0xfb, 0xf5, 0x9c, 0x8c, 0x83, 0x9c, 0x03, 0x46, 0xa8, 0x7d, 0x49, 0x1b, + 0x86, 0xc3, 0xf1, 0xc8, 0x53, 0x0c, 0xf0, 0xa1, 0x36, 0x8b, 0x94, 0x50, 0x4b, 0xa8, 0x25, 0xd4, + 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0xcb, 0xa4, 0x98, 0x6d, 0xc3, + 0xa1, 0x88, 0x8c, 0x2a, 0x02, 0xd3, 0x4e, 0x03, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, + 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x32, 0x29, 0x66, 0xdb, 0xd0, 0x44, 0x42, + 0xc7, 0xca, 0xa8, 0xdb, 0x02, 0xac, 0x4b, 0xfa, 0x25, 0x56, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, + 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0x23, 0x02, 0x4d, 0x51, 0xaf, + 0xae, 0x75, 0x68, 0x84, 0x51, 0x21, 0xe6, 0x02, 0x28, 0x2f, 0xee, 0x7e, 0x95, 0x37, 0x62, 0x98, + 0x1e, 0x40, 0x19, 0x84, 0x43, 0xa9, 0xbb, 0x13, 0x50, 0xf4, 0xb5, 0x34, 0xdf, 0xc3, 0xe8, 0xda, + 0x57, 0x3a, 0x36, 0x42, 0x77, 0x65, 0xf0, 0xf4, 0x85, 0x38, 0xf7, 0x4a, 0x30, 0x8c, 0x42, 0x13, + 0x76, 0xc3, 0x41, 0x9c, 0x5d, 0x05, 0x9d, 0xab, 0x61, 0x10, 0xa9, 0x4e, 0x20, 0xfa, 0xca, 0x8f, + 0x45, 0x5f, 0xc5, 0xd9, 0x55, 0xa0, 0x86, 0xb7, 0x65, 0x3f, 0x8e, 0x8c, 0xf4, 0x87, 0xe1, 0x40, + 0x75, 0xef, 0x03, 0x2d, 0xd5, 0xd5, 0xd7, 0x4e, 0x18, 0xc5, 0xd9, 0x55, 0x20, 0x7a, 0xdf, 0x26, + 0x6a, 0x15, 0x8e, 0x8c, 0x3f, 0x0c, 0x63, 0x13, 0x44, 0xe1, 0xc8, 0xc8, 0x38, 0xf9, 0x16, 0x8c, + 0xf4, 0xb5, 0x0e, 0xbf, 0x6b, 0x5f, 0x18, 0x13, 0xa9, 0xce, 0xe4, 0x07, 0xb9, 0x97, 0x92, 0x23, + 0x35, 0x79, 0x90, 0x26, 0x72, 0x24, 0x28, 0x07, 0xeb, 0xff, 0x57, 0xde, 0x23, 0xee, 0x8c, 0xeb, + 0x1d, 0xab, 0xd8, 0xd4, 0x8d, 0x01, 0x3b, 0xf5, 0xff, 0x8b, 0xd2, 0x87, 0x03, 0x39, 0xc6, 0xca, + 0xd8, 0xfb, 0xb8, 0xa5, 0x47, 0x83, 0x01, 0xd0, 0xa9, 0xac, 0x5f, 0xc4, 0x1d, 0x6e, 0x70, 0x8d, + 0xa8, 0x27, 0x23, 0xd9, 0xfb, 0x74, 0x9f, 0x86, 0xc6, 0x24, 0xc4, 0x97, 0xcc, 0x0d, 0x90, 0x4a, + 0x0f, 0xea, 0x54, 0xe5, 0x68, 0xd4, 0x35, 0x3a, 0x1d, 0x37, 0x9c, 0x24, 0xb7, 0xef, 0x28, 0xbd, + 0x7b, 0xed, 0xd3, 0xf4, 0x9e, 0xb5, 0x3f, 0x5d, 0x0d, 0xdb, 0x4d, 0xd5, 0x69, 0xd7, 0xfb, 0xea, + 0x4c, 0xf4, 0x55, 0xfb, 0x68, 0x78, 0x5b, 0x3e, 0x8b, 0x8c, 0x3c, 0x9d, 0xdc, 0xa6, 0xf6, 0x49, + 0x7a, 0x73, 0xda, 0xf5, 0xde, 0xb7, 0xa6, 0xea, 0x34, 0x46, 0xe6, 0x34, 0x8c, 0x4d, 0xbb, 0x39, + 0xbe, 0x25, 0xed, 0x8b, 0xe4, 0xef, 0xaf, 0x67, 0x7f, 0xfe, 0x1b, 0x2a, 0xb2, 0xfb, 0x08, 0x1c, + 0x97, 0x21, 0xb4, 0xf2, 0xb3, 0x76, 0x65, 0xc7, 0x6d, 0x96, 0xb9, 0xeb, 0xdb, 0x6e, 0x3e, 0xd9, + 0x51, 0x36, 0x4d, 0x49, 0x7a, 0xdc, 0x6d, 0x7d, 0xd5, 0xdb, 0x92, 0xba, 0x37, 0x0c, 0x95, 0x36, + 0x5b, 0xdd, 0x70, 0x10, 0x46, 0x8e, 0x74, 0x06, 0x03, 0xa3, 0xa1, 0xb0, 0x19, 0x0a, 0x93, 0x31, + 0xb0, 0xd8, 0x55, 0xc6, 0x80, 0xe8, 0x4e, 0xb1, 0xf5, 0xc6, 0x21, 0xc1, 0x5a, 0x20, 0x56, 0x37, + 0xd2, 0x69, 0x5f, 0xb8, 0xec, 0x7e, 0xa2, 0xe5, 0x84, 0x77, 0x9d, 0xe8, 0x45, 0x4d, 0x70, 0xbb, + 0x9d, 0xdf, 0x5e, 0x17, 0xb4, 0xf3, 0x49, 0x96, 0x3a, 0xb9, 0xab, 0xce, 0x5d, 0xb8, 0x4e, 0x6d, + 0x51, 0xa8, 0x56, 0x2a, 0x4c, 0x76, 0xb2, 0x72, 0xf5, 0x39, 0x62, 0x21, 0x3f, 0xbc, 0x99, 0x3e, + 0x10, 0xd9, 0x7b, 0x62, 0xff, 0xb8, 0xb7, 0xf7, 0x93, 0x00, 0x2c, 0xd5, 0x84, 0xe9, 0x13, 0x75, + 0x4b, 0x1f, 0x67, 0x7b, 0xa2, 0x9b, 0x8b, 0x89, 0x6b, 0x6e, 0x27, 0xa2, 0xb9, 0x9a, 0x58, 0xe6, + 0x7c, 0xa2, 0x98, 0xf3, 0x89, 0x5f, 0xce, 0x27, 0x72, 0xad, 0x17, 0xad, 0x1c, 0x28, 0xbb, 0x5e, + 0x90, 0x97, 0xa2, 0xac, 0xf5, 0xc4, 0x99, 0x96, 0x8b, 0xf4, 0xf3, 0x2d, 0x77, 0x5a, 0xbb, 0x02, + 0xe0, 0x4c, 0x08, 0x5c, 0x0a, 0x02, 0x86, 0x30, 0xb8, 0x16, 0x08, 0x18, 0xa1, 0x80, 0x11, 0x0c, + 0x18, 0xe1, 0xd8, 0x0c, 0x6f, 0xc7, 0xb6, 0xa0, 0xcc, 0x0a, 0x8b, 0xbb, 0x7c, 0x9b, 0xd1, 0x17, + 0x57, 0xb9, 0xe6, 0x46, 0x66, 0x9c, 0xcb, 0x0d, 0x82, 0xec, 0x60, 0xc9, 0x0f, 0x8a, 0x0c, 0xc1, + 0xc9, 0x11, 0x9c, 0x2c, 0xc1, 0xc9, 0x93, 0x1b, 0x99, 0x72, 0x24, 0x57, 0xce, 0x65, 0x2b, 0x0b, + 0x20, 0x99, 0x16, 0xe0, 0x3c, 0x4f, 0xa7, 0xd5, 0xcb, 0xe5, 0x2c, 0x85, 0xa7, 0x72, 0xe6, 0x78, + 0xb9, 0x26, 0xcc, 0xba, 0x51, 0xa4, 0xf5, 0xa1, 0x98, 0xeb, 0x40, 0xd1, 0xd6, 0x7b, 0xc2, 0xae, + 0xeb, 0x84, 0x5d, 0xbf, 0x09, 0xbb, 0x4e, 0x73, 0xb3, 0xa7, 0x84, 0xc2, 0xac, 0xaf, 0xcc, 0xea, + 0xce, 0x40, 0x8a, 0x7e, 0x24, 0xfb, 0x08, 0x45, 0x67, 0x3a, 0xea, 0xaa, 0x01, 0xc4, 0x72, 0x9a, + 0x3e, 0xff, 0x7d, 0xff, 0x3e, 0x59, 0xf5, 0x15, 0x24, 0x42, 0xbe, 0xa9, 0x33, 0x4e, 0x1d, 0x8e, + 0xbc, 0xa6, 0x13, 0x3e, 0x71, 0x98, 0x2e, 0x8b, 0x88, 0x58, 0x47, 0xac, 0x23, 0xd6, 0x11, 0xeb, + 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x5d, 0x21, 0xb1, 0x2e, 0xd3, 0x72, 0x92, 0x9d, 0xf5, 0xc6, 0x48, + 0x97, 0xf4, 0xe0, 0x80, 0xdd, 0x34, 0x20, 0x72, 0x1d, 0xb9, 0x8e, 0x5c, 0x47, 0xae, 0x23, 0xd7, + 0x91, 0xeb, 0xc8, 0x75, 0x85, 0xe4, 0xba, 0xa9, 0x94, 0x13, 0xeb, 0xac, 0xb7, 0x45, 0xb2, 0x4b, + 0x16, 0x0c, 0xd4, 0x25, 0xe1, 0x60, 0x20, 0x5d, 0x89, 0x48, 0x47, 0xa4, 0x23, 0xd2, 0x11, 0xe9, + 0x88, 0x74, 0xae, 0x5a, 0xc5, 0xf5, 0x04, 0xa5, 0x2c, 0x90, 0xc9, 0xd6, 0x80, 0x4a, 0xf7, 0x24, + 0xce, 0x46, 0xe5, 0x8f, 0xcb, 0xfb, 0x1e, 0x63, 0x43, 0xd9, 0x4f, 0x11, 0x6a, 0x4b, 0x7c, 0xb8, + 0x2d, 0xf0, 0x11, 0xb7, 0xbc, 0xc7, 0xde, 0xe2, 0x1e, 0x75, 0x4b, 0x7b, 0xf8, 0x2d, 0xec, 0xe1, + 0xb7, 0xac, 0x87, 0xdf, 0xa2, 0x9e, 0x3b, 0xe5, 0x42, 0x7a, 0x2c, 0xc0, 0x5e, 0x0b, 0xa2, 0xe7, + 0x32, 0xcf, 0x7b, 0xf9, 0x1f, 0xff, 0x4d, 0x90, 0x22, 0x96, 0x26, 0xce, 0xae, 0x52, 0xa7, 0x26, + 0xc1, 0x0c, 0x6e, 0x98, 0x89, 0x92, 0x94, 0x20, 0x33, 0xe8, 0x73, 0xd9, 0x88, 0x30, 0x93, 0x9e, + 0x38, 0x4a, 0x1c, 0x25, 0x8e, 0x12, 0x47, 0x89, 0xa3, 0xc4, 0x51, 0xeb, 0x75, 0x6b, 0xa4, 0xb4, + 0xd9, 0xdb, 0x05, 0xa4, 0x51, 0x24, 0x18, 0x6d, 0x0a, 0x7d, 0x35, 0xbe, 0x5b, 0x97, 0x50, 0x35, + 0x00, 0xf0, 0xb8, 0x9e, 0x2f, 0x4a, 0xe3, 0x1e, 0xd5, 0x09, 0x7e, 0x00, 0xe6, 0x5f, 0x62, 0x30, + 0x92, 0xc0, 0xf1, 0x7d, 0x8e, 0x44, 0xd7, 0xa8, 0x50, 0x1f, 0xa8, 0x2b, 0x35, 0xd9, 0x8d, 0x79, + 0x87, 0x87, 0xd8, 0xfe, 0x4e, 0x4a, 0x88, 0x3b, 0xa6, 0xc4, 0x92, 0x29, 0x51, 0xde, 0xdd, 0x2f, + 0xef, 0x57, 0x6b, 0xbb, 0xfb, 0x15, 0xe6, 0x46, 0xb1, 0x81, 0x0c, 0x2f, 0x9a, 0x16, 0x4d, 0x22, + 0x94, 0xda, 0xe9, 0x75, 0xc3, 0x9b, 0x9b, 0x91, 0x56, 0xe6, 0x1e, 0xf5, 0x11, 0xe6, 0xd3, 0x00, + 0x69, 0x1c, 0xcd, 0x0b, 0x87, 0xc6, 0xd1, 0x02, 0x5d, 0x8a, 0xc6, 0xd1, 0x42, 0x3d, 0x9d, 0xc6, + 0xd1, 0x92, 0x01, 0xd2, 0x38, 0x2a, 0xd0, 0x48, 0x82, 0xcf, 0x31, 0x5f, 0x20, 0x83, 0x05, 0x7c, + 0x8e, 0x39, 0xe5, 0x0a, 0x25, 0xe3, 0xec, 0xfa, 0x9e, 0x8f, 0x32, 0x31, 0x29, 0x15, 0x66, 0xef, + 0x88, 0x5c, 0x4e, 0x82, 0xec, 0x21, 0x41, 0x2e, 0x25, 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, + 0x72, 0xa9, 0xf5, 0xba, 0xa5, 0x86, 0xbe, 0xe8, 0xf5, 0x22, 0x19, 0xc7, 0x88, 0x68, 0xba, 0x0f, + 0x14, 0x53, 0xda, 0x86, 0x7c, 0xa8, 0xf9, 0xdb, 0x3d, 0xeb, 0xb6, 0x0c, 0xd8, 0xb7, 0x72, 0x7d, + 0xec, 0x03, 0x60, 0x6c, 0xa7, 0xc2, 0x18, 0x19, 0x69, 0xb8, 0xee, 0x96, 0x05, 0xf8, 0xcf, 0xdb, + 0xb7, 0x97, 0x3b, 0xfe, 0x7e, 0xeb, 0xe7, 0x65, 0xc9, 0xdf, 0x6f, 0x25, 0x97, 0xa5, 0xc9, 0xb7, + 0xe4, 0x7a, 0xf7, 0x72, 0xc7, 0x2f, 0x4f, 0xaf, 0x2b, 0x97, 0x3b, 0x7e, 0xa5, 0xb5, 0xfd, 0xf7, + 0xdf, 0xef, 0xb7, 0x7f, 0xec, 0x3d, 0x2c, 0xfe, 0xc6, 0xff, 0x78, 0x70, 0x37, 0xa1, 0x85, 0xf5, + 0x78, 0xe8, 0x1d, 0x8b, 0xd2, 0x6f, 0x17, 0xa5, 0x2a, 0x8b, 0xd2, 0x7a, 0x17, 0x25, 0xe1, 0xf7, + 0xeb, 0xfe, 0xe7, 0xd6, 0x8f, 0xd2, 0xbb, 0xf2, 0xc3, 0xc7, 0xed, 0x1f, 0xb5, 0x87, 0xa7, 0x2f, + 0xfe, 0x9c, 0xf7, 0x6b, 0xa5, 0x77, 0xb5, 0x87, 0x8f, 0xcf, 0xfc, 0xa4, 0xfa, 0xf0, 0xf1, 0x37, + 0xff, 0x8d, 0xca, 0xc3, 0xdb, 0xdc, 0xaf, 0x8e, 0x5f, 0xdf, 0x7d, 0xee, 0x0d, 0xe5, 0x67, 0xde, + 0xb0, 0xf7, 0xdc, 0x1b, 0xf6, 0x9e, 0x79, 0xc3, 0xb3, 0x21, 0xed, 0x3e, 0xf3, 0x86, 0xca, 0xc3, + 0xcf, 0xdc, 0xef, 0xbf, 0x9d, 0xff, 0xab, 0xd5, 0x87, 0xed, 0x9f, 0xcf, 0xfd, 0xac, 0xf6, 0xf0, + 0xf3, 0xe3, 0x36, 0x4b, 0x74, 0x31, 0xc6, 0x43, 0x5b, 0x7c, 0x82, 0x8f, 0x24, 0x9a, 0x9e, 0xbc, + 0x33, 0x3e, 0xfc, 0x53, 0xfc, 0x79, 0x41, 0xd2, 0x31, 0x9d, 0x17, 0x0e, 0x1d, 0xd3, 0x05, 0xba, + 0x15, 0x1d, 0xd3, 0x85, 0x7a, 0x3a, 0x1d, 0xd3, 0x25, 0x03, 0xa4, 0x63, 0x5a, 0xa0, 0xa1, 0x24, + 0x9f, 0xe4, 0xbf, 0x64, 0xd4, 0x58, 0xbc, 0x27, 0xf9, 0xbf, 0xb2, 0x85, 0x92, 0xf1, 0xcc, 0xff, + 0xf3, 0x89, 0x3e, 0x28, 0xb5, 0x2a, 0x7d, 0x2b, 0x06, 0xaa, 0xe7, 0x47, 0x52, 0xc4, 0xa1, 0xc6, + 0x03, 0xd6, 0x27, 0xf1, 0x91, 0x55, 0xc9, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x95, 0xac, 0xba, + 0x61, 0xac, 0xaa, 0x7a, 0x52, 0x1b, 0x65, 0xee, 0x41, 0x79, 0x15, 0x68, 0x7d, 0x9a, 0x77, 0x94, + 0xde, 0xaa, 0x4f, 0x22, 0x06, 0x2c, 0xa9, 0xd3, 0x06, 0x3d, 0x3a, 0xf9, 0xab, 0x7e, 0x7c, 0x74, + 0xd0, 0x6e, 0x36, 0x2e, 0xce, 0x0f, 0xdb, 0xcd, 0xc3, 0xfa, 0x59, 0xe3, 0x04, 0xad, 0xba, 0x4e, + 0x96, 0x21, 0xc6, 0x90, 0x8f, 0x89, 0x40, 0xd7, 0x95, 0x3e, 0x6d, 0xdd, 0xfa, 0x59, 0xfb, 0xb8, + 0xd1, 0x38, 0xf5, 0xb8, 0x62, 0x78, 0x6d, 0x9a, 0xf4, 0x8f, 0xc6, 0xc9, 0xe7, 0xc3, 0x03, 0xb6, + 0xe8, 0xfa, 0xb4, 0x68, 0xa3, 0x79, 0xf4, 0xe7, 0xd1, 0x49, 0xfd, 0xbc, 0xd1, 0x64, 0xab, 0xae, + 0x51, 0x9e, 0x1e, 0x5f, 0x9c, 0x9d, 0x1f, 0x36, 0x51, 0xeb, 0x2f, 0x54, 0x44, 0x2d, 0x8e, 0x47, + 0xc0, 0xa2, 0x40, 0x70, 0x07, 0x07, 0x22, 0x36, 0xfe, 0x4d, 0xd8, 0x53, 0x7d, 0x25, 0x7b, 0x78, + 0xe6, 0xe0, 0x6c, 0x78, 0xf4, 0x06, 0xe7, 0x85, 0x43, 0x6f, 0x70, 0x81, 0x0e, 0x45, 0x6f, 0x70, + 0xa1, 0x9e, 0x4e, 0x6f, 0x70, 0xc9, 0x00, 0xe9, 0x0d, 0x16, 0x88, 0x80, 0x81, 0xbd, 0x41, 0xa3, + 0x6e, 0xa4, 0x51, 0xdd, 0xeb, 0xb8, 0x5a, 0x06, 0xf4, 0x06, 0x81, 0x26, 0x40, 0x7b, 0x17, 0x3a, + 0xd9, 0xa5, 0xca, 0xd3, 0x42, 0x87, 0xb1, 0xec, 0x86, 0xba, 0x07, 0xb5, 0x5a, 0x8a, 0xfb, 0x2d, + 0xfe, 0xe6, 0x8d, 0xe2, 0x7e, 0x8b, 0x2f, 0x0f, 0x8f, 0xfb, 0x2d, 0xae, 0xa3, 0x2b, 0xc3, 0xfd, + 0x16, 0x5f, 0x21, 0x25, 0x4a, 0x1f, 0xca, 0xe5, 0x6a, 0xad, 0x5c, 0xde, 0xa9, 0xed, 0xd5, 0x76, + 0xf6, 0x2b, 0x95, 0x52, 0xb5, 0xc4, 0x9d, 0x17, 0x0b, 0xce, 0x8f, 0x78, 0xd1, 0x70, 0xdd, 0x06, + 0x4c, 0x15, 0x85, 0x39, 0x35, 0x3f, 0x07, 0xf5, 0x18, 0xa7, 0xe7, 0x67, 0x61, 0x1d, 0xc8, 0xbe, + 0x18, 0x0d, 0x26, 0x43, 0xd5, 0x1d, 0x7a, 0x6d, 0x73, 0xc3, 0xa1, 0xd7, 0xb6, 0x40, 0xf7, 0xa6, + 0xd7, 0xb6, 0x50, 0x4f, 0xa7, 0xd7, 0xb6, 0x64, 0x80, 0xf4, 0xda, 0x0a, 0x34, 0xae, 0xe1, 0xb1, + 0x21, 0x8b, 0xab, 0x20, 0x8f, 0x0d, 0xf9, 0xb7, 0x2f, 0xda, 0x58, 0x6b, 0x39, 0x66, 0xa7, 0x8d, + 0x55, 0xf4, 0x72, 0x3f, 0x9b, 0x12, 0xb4, 0xb1, 0x96, 0x4e, 0x09, 0x1e, 0x1b, 0xb2, 0x2e, 0x40, + 0x86, 0x17, 0x0d, 0xcd, 0x2b, 0x98, 0xda, 0xe9, 0xa5, 0x8b, 0x23, 0xc3, 0x91, 0x91, 0x78, 0x06, + 0xd6, 0xaf, 0xc1, 0xd1, 0x30, 0x9a, 0x17, 0x0e, 0x0d, 0xa3, 0x05, 0xba, 0x13, 0x0d, 0xa3, 0x85, + 0x7a, 0x3a, 0x0d, 0xa3, 0x25, 0x03, 0xa4, 0x61, 0x54, 0xa0, 0x11, 0x04, 0xb0, 0x61, 0xd4, 0x09, + 0xc3, 0x81, 0x14, 0x1a, 0x71, 0xd1, 0x66, 0x89, 0x28, 0x07, 0x10, 0x81, 0xe3, 0x14, 0xf2, 0xea, + 0x5a, 0x87, 0x46, 0x8c, 0x47, 0x63, 0x10, 0x09, 0xe4, 0xc5, 0xdd, 0xaf, 0xf2, 0x46, 0x0c, 0xd3, + 0x4d, 0x67, 0x82, 0x70, 0x28, 0x75, 0x77, 0x02, 0x4a, 0xbe, 0x96, 0xe6, 0x7b, 0x18, 0x5d, 0xfb, + 0x4a, 0xc7, 0x46, 0xe8, 0xae, 0x0c, 0x9e, 0xbe, 0x10, 0xe7, 0x5e, 0x09, 0x86, 0x51, 0x68, 0xc2, + 0x6e, 0x38, 0x88, 0xb3, 0xab, 0xa0, 0x73, 0x35, 0x0c, 0x22, 0xd5, 0x09, 0x44, 0x5f, 0xf9, 0xb1, + 0xe8, 0xab, 0x38, 0xbb, 0x0a, 0x26, 0x3b, 0x5d, 0xc7, 0x91, 0x91, 0xfe, 0x30, 0x1c, 0xa8, 0xee, + 0x7d, 0xa0, 0xa5, 0xba, 0xfa, 0xda, 0x09, 0xa3, 0x38, 0xbb, 0x0a, 0x44, 0xef, 0xdb, 0x44, 0x0d, + 0xc2, 0x91, 0xf1, 0x87, 0x91, 0x0c, 0x26, 0x84, 0x1b, 0x27, 0xdf, 0x92, 0x7d, 0x6e, 0xdc, 0x8a, + 0x84, 0xbb, 0xde, 0xec, 0xb0, 0x27, 0x7b, 0x23, 0x7d, 0xad, 0xc3, 0xef, 0xda, 0x17, 0xc6, 0x44, + 0xaa, 0x33, 0x6e, 0x11, 0xe7, 0xbd, 0xf9, 0xf1, 0x99, 0x41, 0x3e, 0x36, 0xc7, 0x39, 0x3f, 0x55, + 0x00, 0xc7, 0x61, 0xa0, 0x0c, 0x80, 0x90, 0x06, 0x3e, 0x98, 0x03, 0x1e, 0xb4, 0x81, 0x0e, 0xec, + 0x00, 0x07, 0x76, 0x60, 0x03, 0x3b, 0xa0, 0xd9, 0x6c, 0xfa, 0x3a, 0x50, 0x11, 0x46, 0xd9, 0xc9, + 0x89, 0x14, 0x9e, 0xa3, 0x98, 0x0f, 0x11, 0xcb, 0x57, 0x2c, 0xd1, 0x57, 0x84, 0x97, 0x57, 0x6c, + 0x99, 0x45, 0x95, 0x5b, 0x78, 0xd9, 0x85, 0x97, 0x5f, 0x78, 0x19, 0xc6, 0xb1, 0x63, 0xb6, 0x80, + 0x7c, 0x45, 0x14, 0x79, 0xce, 0x02, 0x1a, 0x6b, 0x9f, 0x6f, 0xd0, 0xdc, 0xce, 0x99, 0x8a, 0xfa, + 0x18, 0x22, 0x58, 0xea, 0x61, 0xce, 0xde, 0x80, 0x93, 0x6b, 0x64, 0xd9, 0x2e, 0x86, 0x7c, 0xa3, + 0xcb, 0x78, 0x61, 0xe4, 0xbc, 0x30, 0xb2, 0x5e, 0x18, 0x79, 0xc7, 0x92, 0x79, 0x30, 0xb9, 0xcf, + 0x5a, 0xf1, 0x1c, 0x51, 0x60, 0xb7, 0xb0, 0xcf, 0x2e, 0xc8, 0x8d, 0x86, 0x6b, 0x98, 0x27, 0xdf, + 0x4d, 0xcf, 0x32, 0x48, 0x8e, 0x24, 0x78, 0x84, 0x15, 0xce, 0xf7, 0x43, 0x4f, 0x4d, 0x2f, 0x79, + 0xba, 0x06, 0x0b, 0xbe, 0x49, 0x78, 0x98, 0xd0, 0x5b, 0x22, 0xf4, 0x12, 0x7a, 0x09, 0xbd, 0x84, + 0x5e, 0x42, 0x2f, 0x95, 0x75, 0x7e, 0x2b, 0xa2, 0x79, 0x5d, 0x59, 0x60, 0x13, 0x46, 0x1b, 0x48, + 0xe0, 0xa5, 0x72, 0x33, 0xd6, 0xd7, 0x38, 0xd2, 0x77, 0x5c, 0xbf, 0xb4, 0x46, 0x50, 0x50, 0x04, + 0x38, 0x28, 0x16, 0x24, 0x14, 0x05, 0x16, 0x0a, 0x07, 0x0d, 0x85, 0x83, 0x87, 0xc2, 0x41, 0x04, + 0x26, 0x4c, 0x80, 0x42, 0x45, 0xd6, 0xba, 0xb0, 0x8e, 0x5a, 0xae, 0x6e, 0x8e, 0x94, 0x36, 0xa5, + 0x2a, 0x72, 0xcd, 0x4c, 0x55, 0xbc, 0x0a, 0x1c, 0x22, 0xe6, 0x0e, 0x10, 0x4f, 0xbf, 0xb0, 0x35, + 0x67, 0x0b, 0x7d, 0x87, 0x88, 0x82, 0xe1, 0x65, 0x2e, 0x5c, 0xf0, 0x1d, 0x24, 0x72, 0xf1, 0x16, + 0x60, 0xd5, 0x7c, 0x41, 0xe4, 0x68, 0x36, 0xc5, 0xc4, 0x1d, 0x53, 0x6c, 0xc5, 0x29, 0x56, 0xad, + 0x54, 0xf6, 0x2a, 0x4c, 0xb3, 0xcd, 0x62, 0x51, 0xfc, 0xe8, 0x5a, 0x6f, 0x78, 0xbf, 0x0a, 0x5a, + 0xc6, 0x81, 0x67, 0xc2, 0xe5, 0x86, 0x14, 0xa8, 0x33, 0xe2, 0x0a, 0xa2, 0x2a, 0xf4, 0x05, 0x5f, + 0xb3, 0x33, 0xd2, 0x17, 0x7c, 0xd5, 0xcc, 0xa1, 0x2f, 0xb8, 0xe2, 0x80, 0xe9, 0x0b, 0xae, 0xf1, + 0x40, 0xac, 0x60, 0xbe, 0xe0, 0x87, 0x02, 0xd8, 0x82, 0x15, 0xda, 0x82, 0x4b, 0x7e, 0xd1, 0x16, + 0xa4, 0x67, 0x41, 0x5b, 0x70, 0x03, 0xd5, 0x68, 0x36, 0xc5, 0x68, 0x0b, 0xae, 0x3c, 0xc5, 0x76, + 0x2b, 0x34, 0x05, 0x37, 0x0c, 0x44, 0xf1, 0xa3, 0xa3, 0x29, 0x58, 0xd8, 0x22, 0x9e, 0x38, 0x6d, + 0xb7, 0x69, 0x75, 0x29, 0x82, 0x2b, 0x98, 0xc4, 0x4a, 0x5b, 0xf0, 0x25, 0xe1, 0xd1, 0x16, 0x7c, + 0xc5, 0xde, 0x48, 0x5b, 0xf0, 0x55, 0x33, 0x87, 0xb6, 0xe0, 0x8a, 0x03, 0xa6, 0x2d, 0xb8, 0xc6, + 0x03, 0xb1, 0x02, 0xd9, 0x82, 0x1d, 0xa5, 0x45, 0x74, 0x5f, 0x00, 0x5f, 0x70, 0x1f, 0x38, 0xc4, + 0x63, 0xa9, 0xaf, 0x26, 0x0b, 0x73, 0x69, 0x0c, 0x2e, 0xeb, 0x5a, 0xd0, 0x18, 0x5c, 0xb9, 0x6b, + 0x51, 0xa2, 0x67, 0xb1, 0x61, 0x7a, 0x34, 0x9b, 0x62, 0x34, 0x06, 0x57, 0x9e, 0x62, 0x9c, 0x2f, + 0xb8, 0x81, 0x30, 0x8a, 0x1f, 0x1d, 0xad, 0xc1, 0xc2, 0x96, 0x71, 0x4f, 0xde, 0x19, 0xa9, 0x7b, + 0xb2, 0x87, 0x6f, 0x0c, 0x66, 0x91, 0xd2, 0x16, 0x7c, 0x49, 0x78, 0xb4, 0x05, 0x5f, 0xb1, 0x2f, + 0xd2, 0x16, 0x7c, 0xd5, 0xcc, 0xa1, 0x2d, 0xb8, 0xe2, 0x80, 0x69, 0x0b, 0xae, 0xf1, 0x30, 0xac, + 0x48, 0xb6, 0x20, 0xdc, 0xb1, 0x5f, 0xcf, 0xc9, 0x38, 0xc8, 0x31, 0x60, 0x84, 0xda, 0x97, 0xb4, + 0x61, 0x38, 0x1c, 0x8f, 0x3c, 0xc5, 0x00, 0x1f, 0x6a, 0xb3, 0x48, 0x09, 0xb5, 0x84, 0x5a, 0x42, + 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x4c, 0x8a, 0xd9, 0x36, + 0x1c, 0x8a, 0xc8, 0xa8, 0x22, 0x30, 0xed, 0x34, 0x50, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, + 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x93, 0x62, 0xb6, 0x0d, 0x4d, 0x24, + 0x74, 0xac, 0x8c, 0xba, 0x2d, 0xc0, 0xba, 0xa4, 0x5f, 0x62, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, + 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x32, 0x22, 0xd0, 0x14, 0xf5, + 0xea, 0x5a, 0x87, 0x46, 0x18, 0x15, 0x62, 0x2e, 0x80, 0xf2, 0xe2, 0xee, 0x57, 0x79, 0x23, 0x86, + 0xe9, 0x01, 0x94, 0x41, 0x38, 0x94, 0xba, 0x3b, 0x01, 0x45, 0x5f, 0x4b, 0xf3, 0x3d, 0x8c, 0xae, + 0x7d, 0xa5, 0x63, 0x23, 0x74, 0x57, 0x06, 0x4f, 0x5f, 0x88, 0x73, 0xaf, 0x04, 0xc3, 0x28, 0x34, + 0x61, 0x37, 0x1c, 0xc4, 0xd9, 0x55, 0xd0, 0xb9, 0x1a, 0x06, 0x91, 0xea, 0x04, 0xa2, 0xaf, 0xfc, + 0x58, 0xf4, 0x55, 0x9c, 0x5d, 0x05, 0x6a, 0x78, 0x5b, 0xf6, 0xe3, 0xc8, 0x48, 0x7f, 0x18, 0x0e, + 0x54, 0xf7, 0x3e, 0xd0, 0x52, 0x5d, 0x7d, 0xed, 0x84, 0x51, 0x9c, 0x5d, 0x05, 0xa2, 0xf7, 0x6d, + 0xa2, 0x56, 0xe1, 0xc8, 0xf8, 0xc3, 0x48, 0x06, 0x51, 0x38, 0x32, 0x32, 0x4e, 0xbe, 0x05, 0x23, + 0x7d, 0xad, 0xc3, 0xef, 0xda, 0x17, 0xc6, 0x44, 0xaa, 0x33, 0xf9, 0x41, 0xee, 0xa5, 0xe4, 0x44, + 0x4d, 0x9e, 0xa3, 0x89, 0x1c, 0x09, 0xca, 0xb9, 0xfa, 0xff, 0x95, 0xf7, 0x88, 0x1b, 0xe3, 0x7a, + 0xc7, 0x2a, 0x36, 0x75, 0x63, 0xc0, 0x0e, 0xfd, 0xff, 0xa2, 0xf4, 0xe1, 0x40, 0x8e, 0xa9, 0x32, + 0xf6, 0x3e, 0x6e, 0xe9, 0xd1, 0x60, 0x00, 0x74, 0x28, 0xeb, 0x17, 0x71, 0x87, 0x1b, 0x5c, 0x23, + 0xea, 0xc9, 0x48, 0xf6, 0x3e, 0xdd, 0xa7, 0xa1, 0x31, 0x09, 0xf1, 0x15, 0x73, 0xfd, 0x95, 0xd2, + 0x83, 0x3a, 0x53, 0x39, 0x1a, 0x75, 0x8d, 0x4e, 0x47, 0x0d, 0x27, 0xc9, 0xdd, 0x3b, 0x4a, 0x6f, + 0x5e, 0xfb, 0x34, 0xbd, 0x65, 0xed, 0x4f, 0x57, 0xc3, 0x76, 0x53, 0x75, 0xda, 0xf5, 0xbe, 0x3a, + 0x13, 0x7d, 0xd5, 0x3e, 0x1a, 0xde, 0x96, 0xcf, 0x22, 0x23, 0x4f, 0x27, 0x77, 0xa9, 0x7d, 0x92, + 0xde, 0x9b, 0x76, 0xbd, 0xf7, 0xad, 0xa9, 0x3a, 0x8d, 0x91, 0x39, 0x8d, 0x64, 0xbb, 0x39, 0xbe, + 0x23, 0xed, 0x8b, 0xe4, 0xcf, 0xaf, 0x67, 0x7f, 0xfd, 0x1b, 0xea, 0xb1, 0xfb, 0x08, 0x1c, 0x17, + 0x21, 0xb4, 0xe2, 0xb3, 0x6e, 0x45, 0xc7, 0x6d, 0x92, 0xb9, 0xeb, 0xda, 0x6e, 0x3e, 0xd9, 0x51, + 0x32, 0x4d, 0x31, 0x7a, 0xdc, 0x6b, 0x7d, 0xd5, 0xdb, 0x92, 0xba, 0x37, 0x0c, 0x95, 0x36, 0x5b, + 0xdd, 0x70, 0x10, 0x46, 0x8e, 0x54, 0x06, 0x83, 0xa1, 0xa1, 0x98, 0x19, 0x8a, 0x91, 0x31, 0x98, + 0xd8, 0x55, 0xc6, 0x80, 0xc8, 0x4e, 0xa1, 0xe5, 0xc6, 0x21, 0xbe, 0xae, 0x1e, 0x57, 0xdd, 0x08, + 0xa7, 0x7d, 0xd9, 0xb2, 0xfb, 0x89, 0x96, 0xd3, 0xdd, 0x75, 0x9a, 0x17, 0x34, 0xbd, 0xed, 0xf6, + 0x7d, 0x7b, 0x3d, 0xd0, 0xce, 0x27, 0x59, 0xea, 0xe3, 0xae, 0xfa, 0x76, 0xd1, 0xfa, 0xb4, 0x45, + 0x95, 0x5a, 0xa5, 0x2a, 0xd9, 0xc9, 0xc9, 0xd5, 0x67, 0x88, 0x85, 0xec, 0xf0, 0xa6, 0x5d, 0xc1, + 0x17, 0xbd, 0x5e, 0x24, 0xe3, 0xd8, 0x5a, 0x7e, 0x64, 0x4f, 0xdd, 0x73, 0x11, 0x58, 0xaa, 0x09, + 0x76, 0x67, 0xc4, 0x59, 0x9f, 0xe1, 0xe6, 0x62, 0xc6, 0x9a, 0xdb, 0x19, 0x68, 0xae, 0x66, 0x94, + 0x39, 0x9f, 0x21, 0xe6, 0x7c, 0xc6, 0x97, 0xf3, 0x19, 0x5c, 0xeb, 0x45, 0x2b, 0xd6, 0x67, 0x4c, + 0x65, 0x79, 0x3b, 0x90, 0xa2, 0x1f, 0xc9, 0xbe, 0xcd, 0xa4, 0x9d, 0xce, 0x68, 0xaa, 0x59, 0xfc, + 0xcc, 0xd3, 0x14, 0xc8, 0xde, 0xbf, 0x4f, 0x26, 0x60, 0x04, 0x39, 0x0d, 0x22, 0x41, 0x2c, 0x00, + 0x72, 0xc2, 0x48, 0xfb, 0xd8, 0x90, 0x7c, 0xac, 0x5d, 0x56, 0x28, 0x91, 0x15, 0xc8, 0x0a, 0x64, + 0x05, 0xb2, 0x02, 0x0e, 0x2b, 0x1c, 0x28, 0xbb, 0x0f, 0x8d, 0xdc, 0x0d, 0x18, 0x51, 0x06, 0x8e, + 0x8e, 0x06, 0x90, 0xce, 0xc4, 0xc1, 0xa5, 0x48, 0x60, 0x88, 0x85, 0x6b, 0xd1, 0x80, 0x11, 0x0f, + 0x18, 0x11, 0x81, 0x11, 0x13, 0xbb, 0xa2, 0x62, 0x59, 0x5c, 0xdc, 0x0d, 0x48, 0x73, 0x79, 0xaf, + 0x86, 0x8e, 0xaa, 0xfc, 0x0c, 0xfe, 0x3b, 0x38, 0x0f, 0x68, 0x7a, 0xef, 0xdd, 0x9c, 0xf2, 0xe3, + 0xf0, 0x69, 0xff, 0x63, 0xcb, 0xdf, 0x96, 0x1d, 0xb6, 0x7d, 0xae, 0x0f, 0x7c, 0x70, 0x18, 0xc3, + 0xa9, 0x30, 0x46, 0x46, 0xda, 0xf9, 0xa1, 0x4f, 0xde, 0x3f, 0x6f, 0xdf, 0x5e, 0xee, 0xf8, 0xfb, + 0xad, 0x9f, 0x97, 0x25, 0x7f, 0xbf, 0x95, 0x5c, 0x96, 0x26, 0xdf, 0x92, 0xeb, 0xdd, 0xcb, 0x1d, + 0xbf, 0x3c, 0xbd, 0xae, 0x5c, 0xee, 0xf8, 0x95, 0xd6, 0xf6, 0xdf, 0x7f, 0xbf, 0xdf, 0xfe, 0xb1, + 0xf7, 0xb0, 0xf8, 0x1b, 0xff, 0xe3, 0x6e, 0x62, 0x5e, 0x6b, 0x93, 0x26, 0xfa, 0x60, 0x24, 0x7b, + 0x95, 0xc9, 0x8e, 0x99, 0xec, 0xc2, 0xef, 0xd7, 0xfd, 0xcf, 0xad, 0x1f, 0xa5, 0x77, 0xe5, 0x87, + 0x8f, 0xdb, 0x3f, 0x6a, 0x0f, 0x4f, 0x5f, 0xfc, 0x39, 0xef, 0xd7, 0x4a, 0xef, 0x6a, 0x0f, 0x1f, + 0x9f, 0xf9, 0x49, 0xf5, 0xe1, 0xe3, 0x6f, 0xfe, 0x1b, 0x95, 0x87, 0xb7, 0xb9, 0x5f, 0x1d, 0xbf, + 0xbe, 0xfb, 0xdc, 0x1b, 0xca, 0xcf, 0xbc, 0x61, 0xef, 0xb9, 0x37, 0xec, 0x3d, 0xf3, 0x86, 0x67, + 0x43, 0xda, 0x7d, 0xe6, 0x0d, 0x95, 0x87, 0x9f, 0xb9, 0xdf, 0x7f, 0x3b, 0xff, 0x57, 0xab, 0x0f, + 0xdb, 0x3f, 0x9f, 0xfb, 0x59, 0xed, 0xe1, 0xe7, 0xc7, 0xed, 0x0d, 0x2c, 0x7d, 0x6f, 0xd6, 0xfb, + 0xef, 0xe4, 0x04, 0x9e, 0x17, 0x8e, 0xf3, 0x38, 0x81, 0x67, 0xee, 0x04, 0x1e, 0x8b, 0xeb, 0x87, + 0x2d, 0x3c, 0xad, 0x7a, 0x53, 0xe0, 0xae, 0x3a, 0x5d, 0x58, 0x60, 0xd9, 0x95, 0xb4, 0xbb, 0x74, + 0xc0, 0xc9, 0x12, 0x01, 0x27, 0x4b, 0x01, 0xec, 0x4e, 0xf9, 0x5f, 0x75, 0xdf, 0xb4, 0x5c, 0x3e, + 0xd1, 0xcb, 0xa6, 0x67, 0xe5, 0xb1, 0xf8, 0x6b, 0xce, 0x6f, 0x5c, 0x6d, 0x89, 0x5f, 0x5d, 0xe1, + 0x5d, 0xcd, 0xbf, 0xbc, 0xa2, 0x74, 0xb1, 0x95, 0x26, 0xa0, 0xe9, 0xb1, 0x9a, 0x3e, 0xf6, 0xfa, + 0x3d, 0xe0, 0x75, 0xff, 0xc5, 0x57, 0xee, 0x4b, 0xab, 0xee, 0x43, 0x50, 0x7d, 0x67, 0x05, 0x75, + 0xf4, 0x75, 0xea, 0xe6, 0xeb, 0x76, 0xe5, 0xd7, 0xeb, 0x70, 0xaf, 0xd8, 0xd9, 0x12, 0x63, 0x7c, + 0xa4, 0x55, 0x57, 0xc4, 0xe6, 0xd5, 0xbb, 0xda, 0xac, 0xfd, 0x3e, 0xfd, 0x94, 0x57, 0x4e, 0x95, + 0xd5, 0xcc, 0xaa, 0x5a, 0xd9, 0x03, 0xf2, 0x55, 0x3e, 0x00, 0xb7, 0xf3, 0x80, 0x7b, 0xd5, 0x0f, + 0xb0, 0xad, 0x3d, 0xa0, 0xb6, 0xf6, 0x00, 0xda, 0xda, 0x03, 0x66, 0x6c, 0x51, 0x5b, 0xd5, 0x2c, + 0x23, 0x6f, 0x90, 0xdc, 0xd3, 0xd5, 0xf5, 0xc8, 0x6c, 0x66, 0x73, 0xfa, 0x41, 0x2b, 0xea, 0x26, + 0xab, 0x9d, 0x20, 0xfa, 0x58, 0xd2, 0x76, 0x57, 0xf4, 0x01, 0x16, 0xe6, 0xf6, 0xd8, 0x9d, 0xc3, + 0x63, 0x6b, 0xae, 0x8e, 0xf5, 0x39, 0x39, 0xd6, 0xe7, 0xde, 0x58, 0x9f, 0x63, 0x53, 0xac, 0x31, + 0xe3, 0xaa, 0x27, 0x60, 0x7a, 0xe9, 0x3a, 0xe3, 0x95, 0x77, 0xe4, 0x69, 0x7a, 0xa6, 0x9f, 0xb7, + 0x6a, 0xb7, 0xd4, 0xca, 0x8c, 0x7a, 0x6b, 0x93, 0x25, 0x6d, 0x4e, 0x8e, 0x74, 0x33, 0x19, 0xd2, + 0xf6, 0xe4, 0x47, 0x67, 0x93, 0x1d, 0x9d, 0x4d, 0x6e, 0x74, 0x36, 0x99, 0xb1, 0xd8, 0xcf, 0x5d, + 0x6c, 0xcd, 0x80, 0x4f, 0x0a, 0xa3, 0xfd, 0x85, 0x4e, 0x36, 0xf7, 0x8f, 0xe1, 0x42, 0xa7, 0x75, + 0x29, 0xd7, 0xae, 0xca, 0xb6, 0xf3, 0xf2, 0xed, 0xbc, 0x8c, 0x3b, 0x2f, 0xe7, 0x76, 0xca, 0xba, + 0xa5, 0xf2, 0x6e, 0xbd, 0xcc, 0x67, 0x1f, 0x18, 0x46, 0xea, 0x4a, 0x69, 0x77, 0xcb, 0x9b, 0xd2, + 0xcf, 0xe7, 0xa2, 0xa6, 0x75, 0x13, 0x04, 0x0c, 0x61, 0x70, 0x2d, 0x10, 0x30, 0x42, 0x01, 0x23, + 0x18, 0x30, 0xc2, 0x61, 0x57, 0x40, 0x2c, 0x0b, 0x49, 0x76, 0x97, 0xdd, 0x2f, 0x6a, 0xb2, 0xbf, + 0xdb, 0x46, 0x8e, 0xf3, 0x6b, 0x0e, 0x3e, 0x3b, 0xb7, 0xfb, 0x46, 0xaa, 0x74, 0xeb, 0x3a, 0x11, + 0xd7, 0x22, 0xec, 0xa7, 0xbb, 0x1a, 0xbb, 0x83, 0x96, 0x69, 0x00, 0xa4, 0x16, 0x52, 0x0b, 0xa9, + 0x85, 0xd4, 0x42, 0x6a, 0x21, 0xb5, 0xac, 0x29, 0xb5, 0x4c, 0xa5, 0x8e, 0xd8, 0xb2, 0x3c, 0xb6, + 0xb8, 0x91, 0xb3, 0x47, 0x6a, 0x71, 0x62, 0x50, 0x12, 0x5a, 0x08, 0x2d, 0x84, 0x16, 0x42, 0x0b, + 0xa1, 0x85, 0xd0, 0x62, 0x0d, 0x5a, 0x92, 0xb4, 0x27, 0xb3, 0x2c, 0x7d, 0x6b, 0xed, 0x6e, 0x7b, + 0x9a, 0xeb, 0xd0, 0x36, 0xb7, 0x3f, 0xcd, 0x75, 0x65, 0x12, 0x0b, 0x89, 0x85, 0xc4, 0x42, 0x62, + 0x59, 0x5f, 0x62, 0xb1, 0x3d, 0xdb, 0x20, 0xfb, 0xe0, 0xc9, 0xf1, 0xde, 0x4a, 0xf7, 0xe4, 0x9d, + 0xbb, 0xa4, 0x9b, 0x96, 0x9e, 0x5f, 0x62, 0x71, 0x75, 0x58, 0xa3, 0x93, 0x21, 0xb2, 0x73, 0xe1, + 0x41, 0x10, 0x20, 0x2c, 0x21, 0x42, 0x11, 0x24, 0x38, 0x61, 0x82, 0x13, 0x28, 0x38, 0xa1, 0x72, + 0x23, 0x58, 0x8e, 0x84, 0xcb, 0xfd, 0x90, 0x1b, 0x68, 0xe8, 0x8d, 0x30, 0x04, 0x9f, 0x37, 0x14, + 0x9f, 0xfb, 0xdf, 0x44, 0x6c, 0x63, 0x69, 0xe2, 0xec, 0x2a, 0x1d, 0xb2, 0x27, 0x02, 0xbc, 0x29, + 0x47, 0x6c, 0x3a, 0x18, 0xe3, 0x74, 0xc3, 0x9b, 0x9b, 0x91, 0x56, 0xe6, 0x1e, 0x85, 0xbb, 0x9e, + 0x06, 0x44, 0xf8, 0x22, 0x7c, 0x11, 0xbe, 0x08, 0x5f, 0x84, 0x2f, 0xc2, 0x17, 0xe1, 0x6b, 0x15, + 0xf0, 0x35, 0x55, 0x5c, 0x25, 0xe3, 0xec, 0xfa, 0x9e, 0xfc, 0x65, 0xa7, 0x71, 0xe4, 0x9d, 0xf1, + 0xe1, 0x18, 0x6c, 0x5e, 0x50, 0xe4, 0x30, 0x72, 0x18, 0x39, 0x8c, 0x1c, 0x46, 0x0e, 0x23, 0x87, + 0x91, 0xc3, 0x56, 0xc1, 0x61, 0xbf, 0xaa, 0xee, 0x98, 0xc5, 0x66, 0x54, 0x98, 0x3c, 0x66, 0xa7, + 0x91, 0x94, 0xbe, 0x15, 0x03, 0xd5, 0xf3, 0x23, 0x29, 0xe2, 0x50, 0xbb, 0x47, 0xb1, 0x27, 0xf1, + 0x90, 0xc2, 0x48, 0x61, 0xa4, 0x30, 0x52, 0x18, 0x29, 0x8c, 0x14, 0xb6, 0xa8, 0x92, 0xf4, 0xa4, + 0x36, 0xca, 0xdc, 0x83, 0x90, 0x58, 0xc5, 0x61, 0x0c, 0x47, 0xe9, 0xad, 0xf8, 0x24, 0x62, 0x80, + 0x12, 0x36, 0x6d, 0xa0, 0xa3, 0x93, 0xbf, 0xea, 0xc7, 0x47, 0x07, 0xed, 0x66, 0xe3, 0xe2, 0xfc, + 0xb0, 0xdd, 0x3c, 0xac, 0x9f, 0x35, 0x4e, 0x5c, 0x57, 0xb3, 0xbf, 0xc4, 0x60, 0x34, 0xd9, 0x7f, + 0xd1, 0xed, 0x31, 0x6c, 0x5b, 0x4e, 0x4f, 0xe8, 0xfb, 0x9f, 0xad, 0x55, 0x3f, 0x6b, 0x1f, 0x37, + 0x1a, 0xa7, 0x9e, 0xf3, 0xe8, 0x1e, 0xde, 0xb1, 0x89, 0xe6, 0x37, 0xd1, 0x1f, 0x8d, 0x93, 0xcf, + 0x87, 0x07, 0x6c, 0x21, 0xdc, 0x16, 0x6a, 0x34, 0x8f, 0xfe, 0x3c, 0x3a, 0xa9, 0x9f, 0x37, 0x9a, + 0x6c, 0x25, 0xe0, 0x3c, 0x3a, 0xbe, 0x38, 0x3b, 0x3f, 0x6c, 0xa2, 0xd4, 0x3b, 0xa7, 0x11, 0xb4, + 0x36, 0x8d, 0x9f, 0x37, 0xc2, 0xfd, 0x19, 0x88, 0xd8, 0xf8, 0x37, 0x61, 0x4f, 0xf5, 0x95, 0xec, + 0xb9, 0x37, 0x7f, 0x66, 0xc3, 0xa1, 0xf7, 0x43, 0xef, 0x87, 0xde, 0x0f, 0xbd, 0x1f, 0x7a, 0x3f, + 0xf4, 0x7e, 0x16, 0xac, 0x1b, 0x46, 0xdd, 0x48, 0xa3, 0xba, 0xd7, 0x71, 0xb5, 0x0c, 0xe0, 0xfd, + 0xb8, 0x3c, 0x58, 0xfe, 0x42, 0xab, 0xc9, 0x41, 0xaa, 0x9e, 0x16, 0x3a, 0x8c, 0x65, 0x37, 0xd4, + 0x3d, 0xa7, 0x87, 0xed, 0x37, 0x85, 0xbe, 0x92, 0xce, 0xfd, 0x15, 0xf7, 0x03, 0x0e, 0xef, 0x8b, + 0xd2, 0xce, 0x15, 0x05, 0x84, 0x79, 0x72, 0xe1, 0x4c, 0x5c, 0x38, 0xa0, 0x78, 0x3e, 0x47, 0xa2, + 0x6b, 0x54, 0xa8, 0x0f, 0xd4, 0x55, 0x92, 0x4d, 0x3b, 0x1c, 0xb5, 0x27, 0x47, 0x35, 0xb3, 0x0b, + 0xff, 0x4b, 0x17, 0x2e, 0x7d, 0x28, 0x97, 0xab, 0xb5, 0x72, 0x79, 0xa7, 0xb6, 0x57, 0xdb, 0xd9, + 0xaf, 0x54, 0x4a, 0x55, 0x97, 0x4f, 0x02, 0xe0, 0x7b, 0xf5, 0x9b, 0xcd, 0xfc, 0xf4, 0x16, 0x3d, + 0x8e, 0x95, 0x75, 0x73, 0x47, 0x5b, 0xfb, 0xe7, 0xc7, 0xb2, 0x2e, 0xb6, 0xf8, 0xa7, 0xab, 0x41, + 0x57, 0x83, 0xae, 0x06, 0x5d, 0x0d, 0xba, 0x1a, 0x6b, 0xe0, 0x6a, 0x8c, 0xb4, 0x72, 0x36, 0x25, + 0xf2, 0x57, 0x11, 0x29, 0xed, 0x3b, 0x8c, 0x21, 0x6d, 0x8e, 0x8d, 0xf7, 0x0f, 0x1e, 0xcf, 0x6c, + 0xf7, 0x45, 0xaf, 0x17, 0xc9, 0x38, 0xf6, 0x00, 0x86, 0x84, 0x00, 0x3d, 0x04, 0xab, 0xa7, 0xe0, + 0xf4, 0x98, 0x39, 0x3d, 0xe7, 0xb6, 0x0c, 0xd4, 0x77, 0x72, 0x7d, 0xe8, 0x03, 0x50, 0x4c, 0xa7, + 0xc2, 0x18, 0x19, 0x69, 0x98, 0xee, 0x94, 0x05, 0xf6, 0xcf, 0xdb, 0xb7, 0x97, 0x3b, 0xfe, 0x7e, + 0xeb, 0xe7, 0x65, 0xc9, 0xdf, 0x6f, 0x25, 0x97, 0xa5, 0xc9, 0xb7, 0xe4, 0x7a, 0xf7, 0x72, 0xc7, + 0x2f, 0x4f, 0xaf, 0x2b, 0x97, 0x3b, 0x7e, 0xa5, 0xb5, 0xfd, 0xf7, 0xdf, 0xef, 0xb7, 0x7f, 0xec, + 0x3d, 0x2c, 0xfe, 0xc6, 0xff, 0x78, 0x30, 0x7f, 0x7c, 0x0b, 0x22, 0x92, 0x87, 0x77, 0x2c, 0x2e, + 0xcf, 0x16, 0x97, 0x2a, 0x8b, 0xcb, 0x7a, 0x14, 0x17, 0xe1, 0xf7, 0xeb, 0xfe, 0xe7, 0xd6, 0x8f, + 0xd2, 0xbb, 0xf2, 0xc3, 0xc7, 0xed, 0x1f, 0xb5, 0x87, 0xa7, 0x2f, 0xfe, 0x9c, 0xf7, 0x6b, 0xa5, + 0x77, 0xb5, 0x87, 0x8f, 0xcf, 0xfc, 0xa4, 0xfa, 0xf0, 0xf1, 0x37, 0xff, 0x8d, 0xca, 0xc3, 0xdb, + 0xdc, 0xaf, 0x8e, 0x5f, 0xdf, 0x7d, 0xee, 0x0d, 0xe5, 0x67, 0xde, 0xb0, 0xf7, 0xdc, 0x1b, 0xf6, + 0x9e, 0x79, 0xc3, 0xb3, 0x21, 0xed, 0x3e, 0xf3, 0x86, 0xca, 0xc3, 0xcf, 0xdc, 0xef, 0xbf, 0x9d, + 0xff, 0xab, 0xd5, 0x87, 0xed, 0x9f, 0xcf, 0xfd, 0xac, 0xf6, 0xf0, 0xf3, 0xe3, 0x36, 0x4b, 0x2d, + 0xc6, 0xa0, 0x13, 0xe7, 0x3e, 0x38, 0x96, 0x1a, 0xa4, 0x11, 0x0f, 0xc4, 0xc2, 0x8e, 0x9c, 0xa2, + 0x00, 0x3c, 0xd6, 0xc1, 0x5a, 0xe8, 0x91, 0x6b, 0xb8, 0xa3, 0x93, 0xb3, 0xf3, 0xfa, 0xf1, 0x71, + 0xfb, 0xb4, 0xd9, 0x38, 0x6f, 0xfc, 0xd1, 0x38, 0x6e, 0x9f, 0xff, 0xdf, 0xe9, 0xa1, 0x87, 0xf4, + 0xc0, 0x2e, 0x86, 0xd2, 0xe0, 0x1f, 0x58, 0x34, 0x30, 0x6d, 0xc6, 0xc6, 0xd9, 0xe9, 0x67, 0x1c, + 0x75, 0x7a, 0x78, 0xc7, 0xf6, 0xfa, 0x97, 0xb4, 0x3b, 0x3b, 0x3a, 0x63, 0x7b, 0x15, 0x2b, 0xbf, + 0xf6, 0xd8, 0x60, 0xc5, 0x69, 0xb0, 0xe3, 0xc6, 0x1f, 0xf5, 0xe3, 0x76, 0xfd, 0xcf, 0x3f, 0x9b, + 0x87, 0x7f, 0xd6, 0xcf, 0x0f, 0xd9, 0x74, 0xc5, 0x69, 0xba, 0x83, 0xa3, 0xe6, 0xe1, 0x1f, 0xe7, + 0xc7, 0xff, 0xd7, 0xfe, 0xa3, 0x71, 0x72, 0x72, 0xf8, 0xc7, 0x39, 0xc2, 0xb2, 0x39, 0xb6, 0xde, + 0xef, 0xb6, 0xde, 0xd9, 0x79, 0xfd, 0xfc, 0xe8, 0x0f, 0xb6, 0x58, 0x71, 0x5a, 0xec, 0xd3, 0x9f, + 0xa7, 0x6c, 0xae, 0xe2, 0x34, 0xd7, 0xe9, 0xd1, 0x17, 0x36, 0x57, 0x81, 0x48, 0xff, 0xcf, 0x2f, + 0x48, 0xe9, 0x05, 0x11, 0x49, 0x8b, 0x93, 0x5a, 0x37, 0xea, 0xce, 0x6f, 0xc6, 0xa4, 0xd6, 0xe9, + 0x79, 0xd4, 0xce, 0x67, 0xb5, 0x4e, 0x03, 0x71, 0x34, 0x39, 0xeb, 0x40, 0xf6, 0xc5, 0x68, 0x30, + 0x99, 0x19, 0xb7, 0xc3, 0xa9, 0xb5, 0x9c, 0x5a, 0xcb, 0xa9, 0xb5, 0x33, 0x3d, 0x93, 0x53, 0x6b, + 0xff, 0x25, 0x20, 0x4e, 0xad, 0xdd, 0xe2, 0xd4, 0xda, 0x8f, 0x5b, 0xde, 0x48, 0x69, 0xb3, 0xb7, + 0x0b, 0x30, 0xb7, 0xb6, 0xc6, 0xb5, 0xb9, 0x5c, 0x9b, 0x0b, 0x84, 0x17, 0xb9, 0x70, 0xb8, 0x36, + 0xb7, 0x08, 0x46, 0x05, 0xd7, 0xe6, 0xfe, 0x46, 0x17, 0x2e, 0xef, 0xee, 0x97, 0xf7, 0xab, 0xb5, + 0xdd, 0x7d, 0xae, 0xc8, 0xa5, 0x79, 0x41, 0xf3, 0xc2, 0x9e, 0x79, 0xe1, 0x76, 0xc0, 0xf8, 0xe8, + 0x5d, 0x38, 0x3d, 0x64, 0x9e, 0xb6, 0x01, 0x6d, 0x03, 0xda, 0x06, 0xb4, 0x0d, 0x68, 0x1b, 0x14, + 0xd7, 0x36, 0x98, 0x2c, 0xa1, 0x73, 0x9e, 0x23, 0x08, 0x8b, 0x5a, 0x60, 0x16, 0xb1, 0xd8, 0x5d, + 0x11, 0x17, 0xa4, 0x1f, 0xb6, 0xfd, 0xf3, 0xed, 0x65, 0xc9, 0xdf, 0x6d, 0x4d, 0xff, 0x67, 0xef, + 0x72, 0xc7, 0xdf, 0x6d, 0x39, 0x5d, 0xc6, 0x41, 0x82, 0x5d, 0x5d, 0x1f, 0x4b, 0xcf, 0x28, 0x0a, + 0x47, 0x46, 0xba, 0xc7, 0xd8, 0x5f, 0x83, 0x21, 0xcb, 0x92, 0x65, 0xc9, 0xb2, 0x64, 0x59, 0xb2, + 0x2c, 0x59, 0x76, 0xc1, 0xba, 0xd1, 0x09, 0xc3, 0x81, 0x14, 0x10, 0xfb, 0xcb, 0x94, 0x36, 0x05, + 0x5d, 0xde, 0xac, 0x71, 0x17, 0xf7, 0xea, 0x5a, 0x87, 0x46, 0x18, 0xe5, 0xe8, 0x58, 0x49, 0x2f, + 0xee, 0x7e, 0x95, 0x37, 0x62, 0x98, 0x9e, 0x42, 0x1a, 0x84, 0x43, 0xa9, 0xbb, 0x13, 0x50, 0xf0, + 0xb5, 0x34, 0xdf, 0xc3, 0xe8, 0xda, 0x57, 0x3a, 0x36, 0x42, 0x77, 0x65, 0xf0, 0xf4, 0x85, 0x38, + 0xf7, 0x4a, 0x30, 0x8c, 0x42, 0x13, 0x76, 0xc3, 0x41, 0x9c, 0x5d, 0x05, 0x9d, 0xab, 0x61, 0x10, + 0xa9, 0x4e, 0x20, 0xfa, 0xca, 0x8f, 0x45, 0x5f, 0xc5, 0xd9, 0x55, 0x30, 0x19, 0x18, 0x8e, 0xb4, + 0xea, 0x8a, 0xd8, 0x04, 0x83, 0xa4, 0xac, 0x06, 0x13, 0x44, 0x8b, 0x93, 0x6f, 0xc9, 0xf9, 0xa6, + 0x76, 0xab, 0xac, 0xbd, 0xee, 0x66, 0xb1, 0xab, 0x79, 0x23, 0x7d, 0xad, 0xc3, 0xef, 0xda, 0x17, + 0xc6, 0x44, 0xaa, 0x33, 0xbe, 0xc3, 0xd6, 0xbb, 0xdb, 0x2f, 0x3b, 0x74, 0xe5, 0x62, 0xb1, 0x9c, + 0x74, 0xd3, 0x12, 0x6a, 0xf9, 0x63, 0x5d, 0x11, 0xb8, 0x4b, 0xf2, 0xc6, 0x20, 0x6e, 0xd7, 0xa4, + 0x0d, 0x43, 0xd8, 0x30, 0x64, 0x0d, 0x43, 0xd4, 0xeb, 0x8d, 0x17, 0x07, 0x2a, 0x72, 0x93, 0xf6, + 0xb9, 0x22, 0xef, 0xde, 0x02, 0xca, 0x87, 0xe4, 0xd6, 0x08, 0x2a, 0xd1, 0x08, 0xa2, 0x11, 0x44, + 0x23, 0x88, 0x46, 0x10, 0x8d, 0x20, 0x74, 0x39, 0xcb, 0x02, 0x18, 0x6b, 0x87, 0x6f, 0x5c, 0xdb, + 0x51, 0x33, 0x15, 0xec, 0x31, 0x24, 0xc7, 0xa9, 0x81, 0x31, 0x81, 0xd1, 0xb9, 0xbc, 0x21, 0xc9, + 0x1c, 0xa6, 0xdc, 0xa1, 0xc9, 0x1e, 0xac, 0xfc, 0xc1, 0xca, 0x20, 0xac, 0x1c, 0xba, 0x95, 0x45, + 0xc7, 0xf2, 0x98, 0xb5, 0xca, 0x39, 0x82, 0x40, 0xcd, 0xd4, 0x9d, 0x81, 0x14, 0x7d, 0xb0, 0xad, + 0x08, 0x6b, 0x00, 0xb1, 0x9c, 0xa6, 0xbe, 0xfb, 0xfb, 0xf7, 0x89, 0xd5, 0x1d, 0x3c, 0x8a, 0xf9, + 0x86, 0x4e, 0x29, 0x77, 0x98, 0x3a, 0x5e, 0xf2, 0xb4, 0x01, 0x06, 0xec, 0x92, 0x70, 0x30, 0xa0, + 0xae, 0x44, 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0x3a, 0x57, 0xad, 0xe2, 0xda, 0xfb, + 0x98, 0xf5, 0x40, 0x06, 0x52, 0xe3, 0xed, 0x9d, 0x9c, 0x45, 0xf6, 0x8e, 0x4b, 0x3a, 0x81, 0x45, + 0x14, 0x51, 0x4c, 0xb1, 0x45, 0x15, 0x55, 0x5c, 0xe1, 0x45, 0x16, 0x5e, 0x6c, 0xe1, 0x45, 0x17, + 0x43, 0x7c, 0x41, 0x44, 0x18, 0xcf, 0x61, 0xc9, 0xd5, 0xad, 0x91, 0xd2, 0xa6, 0x54, 0x05, 0x3c, + 0x4d, 0xa8, 0x0a, 0x14, 0x12, 0xc6, 0x26, 0x2e, 0x4f, 0xbf, 0xb0, 0x6a, 0xfa, 0x16, 0xda, 0x26, + 0x2f, 0xe0, 0x78, 0x95, 0x0b, 0x0f, 0x6c, 0x13, 0x98, 0x5c, 0x7c, 0x80, 0x1b, 0x69, 0x80, 0x96, + 0xfb, 0xd9, 0x94, 0x10, 0x77, 0x4c, 0x89, 0x25, 0x53, 0xa2, 0x5a, 0xa9, 0xec, 0x55, 0x98, 0x16, + 0xc5, 0x66, 0x31, 0xbc, 0x68, 0x78, 0x08, 0x1b, 0x4c, 0xd9, 0x04, 0x9a, 0x29, 0x93, 0x43, 0x64, + 0x94, 0x19, 0x33, 0xa0, 0x55, 0x9b, 0x3e, 0xd1, 0x22, 0x9d, 0x89, 0x3e, 0xd1, 0x42, 0x3d, 0x9d, + 0x3e, 0xd1, 0x92, 0x01, 0xd2, 0x27, 0x2a, 0xd0, 0xc0, 0x01, 0xdc, 0x27, 0xfa, 0x00, 0x68, 0x13, + 0x55, 0x68, 0x13, 0xfd, 0xcb, 0x17, 0x6d, 0xa2, 0xb5, 0x1c, 0x13, 0xd3, 0x26, 0x2a, 0x7a, 0xb5, + 0x9f, 0x4d, 0x09, 0xda, 0x44, 0x4b, 0xa7, 0xc4, 0x6e, 0x85, 0x26, 0xd1, 0x1a, 0xd8, 0x32, 0x5b, + 0x34, 0x89, 0x00, 0xef, 0x07, 0x8c, 0x49, 0x74, 0x9b, 0x66, 0x3b, 0xa2, 0x4b, 0x94, 0xc4, 0x46, + 0x9b, 0x68, 0x5e, 0x38, 0xb4, 0x89, 0x16, 0xe8, 0x4d, 0xb4, 0x89, 0x16, 0xea, 0xe9, 0xb4, 0x89, + 0x96, 0x0c, 0x90, 0x36, 0x51, 0x81, 0x06, 0x0e, 0xc0, 0x36, 0x51, 0x47, 0x69, 0x11, 0xdd, 0x03, + 0xfa, 0x44, 0xfb, 0x40, 0x21, 0x1d, 0x4b, 0x7d, 0x35, 0x59, 0xc8, 0x45, 0xa3, 0xe8, 0xdf, 0x46, + 0xc5, 0x34, 0x8a, 0x96, 0x1e, 0x15, 0x97, 0x38, 0x26, 0x2e, 0x78, 0xbd, 0x9f, 0x4d, 0x09, 0x1a, + 0x45, 0x4b, 0xa7, 0x04, 0xe7, 0x13, 0xad, 0x89, 0x39, 0xb3, 0x45, 0xab, 0x08, 0xf0, 0x7e, 0x20, + 0x58, 0x45, 0xf2, 0xce, 0x48, 0xdd, 0x93, 0x3d, 0x3c, 0xa3, 0x28, 0x8b, 0x8c, 0x36, 0xd1, 0xbc, + 0x70, 0x68, 0x13, 0x2d, 0xd0, 0x97, 0x68, 0x13, 0x2d, 0xd4, 0xd3, 0x69, 0x13, 0x2d, 0x19, 0x20, + 0x6d, 0xa2, 0x02, 0x0d, 0x1b, 0x90, 0x6d, 0x22, 0xe7, 0xe7, 0x22, 0x3c, 0x27, 0x83, 0x8e, 0xce, + 0x49, 0x20, 0xc4, 0xcd, 0x6b, 0x93, 0x70, 0x38, 0x1e, 0x09, 0x89, 0x01, 0x1e, 0xc4, 0x65, 0x91, + 0x11, 0xe2, 0x08, 0x71, 0x84, 0x38, 0x42, 0x1c, 0x21, 0x8e, 0x10, 0x47, 0x88, 0x23, 0xc4, 0x11, + 0xe2, 0x9e, 0xb6, 0xc9, 0x50, 0x44, 0x46, 0x21, 0x32, 0xdc, 0x34, 0x30, 0x22, 0x1c, 0x11, 0x8e, + 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0xdc, 0xd3, 0x36, 0x31, + 0x91, 0xd0, 0xb1, 0x32, 0xea, 0x16, 0x70, 0xde, 0xfd, 0x2f, 0xb1, 0x11, 0xe4, 0x08, 0x72, 0x04, + 0x39, 0x82, 0x1c, 0x41, 0x8e, 0x20, 0x47, 0x90, 0x23, 0xc8, 0x81, 0x81, 0xdc, 0x46, 0x6f, 0x47, + 0xef, 0xf8, 0xe0, 0xfa, 0x5c, 0x3c, 0xd8, 0x07, 0xd9, 0xe7, 0xcf, 0x3c, 0xcf, 0xbf, 0xe4, 0xe2, + 0xb4, 0x7b, 0x9c, 0x3e, 0xbd, 0x59, 0x07, 0x59, 0xfe, 0x57, 0xde, 0x23, 0xec, 0x44, 0xe7, 0x1d, + 0xab, 0xd8, 0xd4, 0x8d, 0x71, 0x7c, 0xaa, 0xe6, 0x17, 0xa5, 0x0f, 0x07, 0x72, 0x8c, 0x4d, 0xb1, + 0xf7, 0x71, 0x4b, 0x8f, 0x06, 0x03, 0x87, 0xa7, 0x40, 0x7d, 0x11, 0x77, 0x38, 0xc1, 0x34, 0xa2, + 0x9e, 0x8c, 0x64, 0xef, 0xd3, 0x7d, 0x1a, 0xca, 0x46, 0x25, 0x09, 0x88, 0xc4, 0xac, 0x81, 0xb4, + 0x78, 0x4e, 0x4f, 0x55, 0x8b, 0x46, 0x5d, 0xa3, 0x53, 0xae, 0x3d, 0x49, 0x6e, 0xc7, 0x51, 0x7a, + 0x37, 0xda, 0xa7, 0xe9, 0x3d, 0x68, 0x7f, 0xba, 0x1a, 0xb6, 0x9b, 0xaa, 0xd3, 0xae, 0xf7, 0xd5, + 0x99, 0xe8, 0xab, 0xf6, 0xd1, 0xf0, 0xb6, 0x7c, 0x91, 0xfc, 0xdd, 0xed, 0xe3, 0xb0, 0x3b, 0xfe, + 0x51, 0x73, 0xfc, 0xf7, 0xb6, 0x2f, 0x92, 0x3f, 0xae, 0x9e, 0xfd, 0x6d, 0x6f, 0x36, 0x43, 0xae, + 0xec, 0x7e, 0xa2, 0xe5, 0x9c, 0x77, 0x9d, 0xeb, 0x85, 0xcb, 0x71, 0xbb, 0xbd, 0xde, 0x5e, 0xdf, + 0xb3, 0xf3, 0x49, 0x96, 0x7a, 0xf7, 0x14, 0xf3, 0x12, 0x2f, 0x6d, 0x2b, 0x8c, 0xd4, 0x95, 0xd2, + 0x5b, 0xe3, 0x4e, 0xe6, 0x2b, 0x5b, 0xcb, 0x85, 0xdc, 0x20, 0x9e, 0x53, 0xa4, 0x73, 0x8a, 0x70, + 0x6e, 0x90, 0xcd, 0x56, 0x87, 0x76, 0x54, 0xa6, 0xb1, 0xcb, 0xb3, 0x45, 0xba, 0x7a, 0x6d, 0x9a, + 0xb2, 0x23, 0x23, 0xab, 0x2f, 0xea, 0xab, 0xfd, 0x84, 0x15, 0x67, 0x97, 0xed, 0xac, 0x42, 0xcd, + 0xa6, 0xd5, 0x76, 0xc6, 0xd5, 0x75, 0x91, 0x15, 0x76, 0x0f, 0x4b, 0x67, 0x52, 0x5b, 0x3d, 0x73, + 0xda, 0xd2, 0x99, 0xd2, 0x8f, 0xcf, 0xc9, 0x77, 0x57, 0xfc, 0x41, 0x16, 0x9f, 0x7f, 0xbb, 0x79, + 0xae, 0x6d, 0xfb, 0x79, 0xb5, 0xb3, 0xe7, 0xd0, 0xce, 0x9e, 0x2f, 0x3b, 0x7b, 0x6e, 0x4c, 0xe1, + 0x2c, 0xb4, 0x70, 0x5a, 0x78, 0x64, 0xb4, 0x42, 0xdd, 0x7c, 0x53, 0xa0, 0x3e, 0x67, 0xab, 0xaf, + 0xc1, 0xf5, 0x31, 0x6f, 0xa5, 0x74, 0xf3, 0x4a, 0xa3, 0x99, 0xd5, 0xa4, 0xc0, 0xeb, 0x77, 0xd0, + 0x15, 0x74, 0x4e, 0x4f, 0x4b, 0x75, 0xf5, 0xb5, 0x13, 0x46, 0xf1, 0xca, 0xfa, 0x65, 0x46, 0x1d, + 0x8f, 0x1f, 0xb5, 0xa2, 0x24, 0x5b, 0x2d, 0x1a, 0xae, 0x1c, 0x09, 0x6d, 0xa0, 0xa0, 0x5d, 0x04, + 0xb4, 0x85, 0x7e, 0xd6, 0x91, 0xcf, 0x3a, 0xea, 0x59, 0x47, 0xbc, 0x62, 0xc9, 0xeb, 0x81, 0x5a, + 0xad, 0x43, 0x9d, 0xd5, 0x2e, 0x7b, 0x83, 0xe9, 0xec, 0x13, 0xd7, 0x6c, 0x3c, 0xbd, 0xc3, 0xf1, + 0x34, 0xc7, 0xd3, 0x1c, 0x4f, 0xaf, 0xe1, 0x78, 0x7a, 0xd5, 0x45, 0x38, 0xfb, 0x20, 0xd1, 0xfb, + 0x36, 0x69, 0x13, 0xa5, 0xfd, 0x61, 0x18, 0x1b, 0x7b, 0x99, 0x90, 0x9d, 0xee, 0xf1, 0x24, 0x00, + 0x5b, 0x0f, 0x84, 0xad, 0x94, 0x6a, 0xeb, 0x25, 0xdb, 0x45, 0xe9, 0x76, 0x5b, 0xc2, 0x5d, 0x95, + 0x72, 0xe7, 0x25, 0xdd, 0x79, 0x69, 0x77, 0x5e, 0xe2, 0xed, 0x94, 0x7a, 0x4b, 0x25, 0xdf, 0x7a, + 0xe9, 0xcf, 0x3e, 0x30, 0x7d, 0xe6, 0x67, 0x3d, 0x71, 0xa6, 0xe5, 0x22, 0xfd, 0x7c, 0xcb, 0x9d, + 0xd6, 0xae, 0x00, 0x58, 0x33, 0x3e, 0x90, 0x04, 0x01, 0x43, 0x18, 0x5c, 0x0b, 0x04, 0x8c, 0x50, + 0xc0, 0x08, 0x06, 0x8c, 0x70, 0xd8, 0x15, 0x10, 0xcb, 0x42, 0xe2, 0x4c, 0x50, 0x66, 0x85, 0xc5, + 0x5d, 0xbe, 0xcd, 0xe8, 0x8b, 0xab, 0x5c, 0x73, 0x23, 0x33, 0xce, 0xc6, 0x1d, 0x48, 0xb2, 0x83, + 0x25, 0x3f, 0x28, 0x32, 0x04, 0x27, 0x47, 0x70, 0xb2, 0x04, 0x27, 0x4f, 0x6e, 0x64, 0xca, 0x91, + 0x5c, 0x39, 0x97, 0xad, 0x2c, 0x80, 0xe9, 0xf2, 0x00, 0xe7, 0x99, 0xfa, 0xb8, 0xad, 0xa2, 0xcd, + 0xf5, 0x0a, 0xff, 0x26, 0x69, 0x8e, 0x37, 0xbd, 0x81, 0xd9, 0x7d, 0x07, 0x69, 0xd7, 0x1d, 0xcc, + 0xdd, 0x76, 0xd0, 0x76, 0xd9, 0x81, 0xdd, 0x5d, 0x07, 0x76, 0x57, 0x1d, 0xd8, 0xdd, 0x74, 0x36, + 0x7b, 0xeb, 0x0f, 0x98, 0x5d, 0x73, 0xb2, 0xba, 0x33, 0x90, 0xa2, 0x1f, 0xc9, 0x3e, 0x42, 0xd1, + 0x99, 0x8e, 0xbc, 0x6a, 0x00, 0xb1, 0x9c, 0xa6, 0x93, 0x08, 0xdf, 0xbf, 0x4f, 0x26, 0x8a, 0x06, + 0x53, 0x29, 0xdf, 0xd4, 0x3d, 0x46, 0x1c, 0x8e, 0xbf, 0x86, 0x18, 0x72, 0xfd, 0x48, 0x75, 0x10, + 0x83, 0x2f, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0x47, 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x08, 0x75, 0x2f, + 0x84, 0xba, 0xa4, 0xec, 0x90, 0xe9, 0xac, 0x37, 0x85, 0x9d, 0xc5, 0xb9, 0xbf, 0x9d, 0x30, 0x36, + 0x16, 0xef, 0xfe, 0x76, 0xaa, 0x90, 0xe8, 0x48, 0x74, 0x24, 0x3a, 0x12, 0x1d, 0x89, 0xce, 0x55, + 0xab, 0xb8, 0x7e, 0x92, 0x95, 0x05, 0x32, 0xd9, 0xe5, 0x54, 0xe9, 0x9e, 0xbc, 0xc3, 0x3b, 0x6d, + 0xe2, 0x97, 0xd8, 0x78, 0xda, 0x04, 0xb2, 0x90, 0x22, 0x0a, 0x2a, 0xb6, 0xb0, 0xa2, 0x0a, 0x2c, + 0xbc, 0xd0, 0xc2, 0x0b, 0x2e, 0xbc, 0xf0, 0x62, 0x08, 0x30, 0x88, 0x10, 0xe3, 0x59, 0x2c, 0xc0, + 0x56, 0x0b, 0xa2, 0xe5, 0x32, 0xcf, 0x7a, 0xf9, 0x1f, 0xff, 0x4d, 0x90, 0x22, 0x96, 0x26, 0xce, + 0xae, 0x52, 0xa3, 0x26, 0xc1, 0x0c, 0x9e, 0x9e, 0x81, 0x92, 0x94, 0x5e, 0x47, 0xc6, 0xc6, 0x4f, + 0x77, 0x5a, 0x01, 0xe3, 0xd2, 0xc7, 0xd0, 0x88, 0xa5, 0xc4, 0x52, 0x62, 0x29, 0xb1, 0x94, 0x58, + 0x4a, 0x2c, 0xdd, 0x30, 0x2c, 0xe5, 0x21, 0x68, 0xc4, 0xb8, 0xdf, 0x68, 0x93, 0x6e, 0x78, 0x73, + 0x33, 0xd2, 0xca, 0xdc, 0xa3, 0x9a, 0x8c, 0x4f, 0x03, 0x24, 0xd2, 0x11, 0xe9, 0x88, 0x74, 0x44, + 0x3a, 0x22, 0x1d, 0x91, 0x6e, 0xc3, 0x90, 0x8e, 0x4e, 0xe3, 0xef, 0x49, 0xcf, 0x6f, 0x39, 0x8d, + 0x53, 0xae, 0x50, 0x32, 0xce, 0xae, 0xef, 0x69, 0x36, 0x62, 0x52, 0xaa, 0xbc, 0x33, 0x3e, 0x3c, + 0xa9, 0xce, 0x0b, 0x92, 0xb4, 0x4a, 0x5a, 0x25, 0xad, 0x92, 0x56, 0x49, 0xab, 0xa4, 0x55, 0xd2, + 0x2a, 0x69, 0xf5, 0xa5, 0xb4, 0xfa, 0x2b, 0x5b, 0x8c, 0x89, 0x75, 0x86, 0x35, 0x48, 0xad, 0x98, + 0xd4, 0xaa, 0xf4, 0xad, 0x18, 0xa8, 0x9e, 0x1f, 0x49, 0x11, 0x3b, 0x3e, 0x87, 0x7b, 0x6e, 0x86, + 0x3e, 0x89, 0x8f, 0xac, 0x4a, 0x56, 0x25, 0xab, 0x92, 0x55, 0xc9, 0xaa, 0x64, 0xd5, 0x0d, 0x63, + 0x55, 0xd5, 0x93, 0xda, 0x28, 0x73, 0x0f, 0xca, 0xab, 0x15, 0xa0, 0x98, 0x8e, 0xd2, 0x5b, 0xf5, + 0x49, 0xc4, 0x80, 0x25, 0x75, 0xda, 0xa0, 0x47, 0x27, 0x7f, 0xd5, 0x8f, 0x8f, 0x0e, 0xda, 0xcd, + 0xc6, 0xc5, 0xf9, 0x61, 0xbb, 0x79, 0x58, 0x3f, 0x6b, 0x9c, 0xa0, 0x55, 0xd7, 0xbf, 0xc4, 0x60, + 0x34, 0xd9, 0xc4, 0xfb, 0x12, 0x2a, 0xae, 0xf1, 0xd7, 0x0f, 0xb8, 0x88, 0xe6, 0xb6, 0x6e, 0xfd, + 0xac, 0x7d, 0xdc, 0x68, 0x9c, 0x7a, 0x70, 0xd1, 0x3e, 0xbc, 0x63, 0x93, 0xbe, 0xac, 0x49, 0xff, + 0x68, 0x9c, 0x7c, 0x3e, 0x3c, 0x60, 0x8b, 0xae, 0x4f, 0x8b, 0x36, 0x9a, 0x47, 0x7f, 0x1e, 0x9d, + 0xd4, 0xcf, 0x1b, 0x4d, 0xb6, 0xea, 0x1a, 0xe5, 0xe9, 0xf1, 0xc5, 0xd9, 0xf9, 0x61, 0x13, 0xb5, + 0xfe, 0x42, 0x45, 0xd4, 0xe2, 0x78, 0x04, 0x2c, 0x0a, 0x04, 0x77, 0x70, 0x20, 0x62, 0xe3, 0xdf, + 0x84, 0x3d, 0xd5, 0x57, 0xb2, 0x87, 0x67, 0x0e, 0xce, 0x86, 0x47, 0x6f, 0x70, 0x5e, 0x38, 0xf4, + 0x06, 0x17, 0xe8, 0x50, 0xf4, 0x06, 0x17, 0xea, 0xe9, 0xf4, 0x06, 0x97, 0x0c, 0x90, 0xde, 0x60, + 0x81, 0x08, 0x18, 0xd8, 0x1b, 0x34, 0xea, 0x46, 0x1a, 0xd5, 0xbd, 0x8e, 0xab, 0x65, 0x40, 0x6f, + 0xf0, 0x03, 0x50, 0x48, 0x17, 0x5a, 0x99, 0x78, 0x72, 0x78, 0xb3, 0xd0, 0x61, 0x2c, 0xbb, 0xa1, + 0xee, 0xc5, 0x48, 0xb7, 0xac, 0x29, 0xf4, 0x95, 0x84, 0xf3, 0xdb, 0xf0, 0x06, 0x7c, 0xde, 0x17, + 0xa5, 0xe1, 0x14, 0x11, 0x94, 0x01, 0x73, 0xe1, 0x4d, 0x5c, 0x5d, 0xe0, 0xf8, 0x3e, 0x47, 0xa2, + 0x6b, 0x54, 0xa8, 0x0f, 0xd4, 0x55, 0x92, 0xad, 0x3b, 0x74, 0x65, 0x7e, 0x27, 0x25, 0xc4, 0x1d, + 0x53, 0x62, 0xc9, 0x94, 0x28, 0x7d, 0x28, 0x97, 0xab, 0xb5, 0x72, 0x79, 0xa7, 0xb6, 0x57, 0xdb, + 0xd9, 0xaf, 0x54, 0x4a, 0x55, 0xa4, 0x27, 0x5b, 0x85, 0xcb, 0x92, 0x37, 0x8c, 0x66, 0xde, 0x57, + 0x8b, 0x1e, 0x17, 0x4a, 0x15, 0x85, 0x39, 0x8f, 0x2b, 0x07, 0xf5, 0x18, 0xe7, 0x72, 0x81, 0x16, + 0x70, 0xfa, 0x5a, 0x8b, 0x74, 0x25, 0xfa, 0x5a, 0x0b, 0xf5, 0x74, 0xfa, 0x5a, 0x4b, 0x06, 0x48, + 0x5f, 0xab, 0x40, 0x63, 0x08, 0x60, 0x5f, 0x6b, 0xa4, 0xb4, 0xd9, 0xdb, 0x05, 0xb4, 0xb4, 0x6a, + 0xb4, 0x8c, 0xfe, 0xe5, 0x8b, 0x96, 0xd1, 0x5a, 0x8e, 0x8f, 0x69, 0x19, 0x15, 0xbd, 0xdc, 0xcf, + 0xa6, 0x04, 0x2d, 0xa3, 0xa5, 0x53, 0xa2, 0xbc, 0xbb, 0x5f, 0xde, 0xaf, 0xd6, 0x76, 0xf7, 0x69, + 0x14, 0xad, 0x81, 0x35, 0xb3, 0x45, 0xa3, 0x08, 0xf0, 0x7e, 0x40, 0x18, 0x45, 0x58, 0x03, 0x7c, + 0xac, 0x93, 0x3e, 0x41, 0x8b, 0x36, 0x6d, 0xa2, 0x45, 0x7a, 0x12, 0x6d, 0xa2, 0x85, 0x7a, 0x3a, + 0x6d, 0xa2, 0x25, 0x03, 0xa4, 0x4d, 0x54, 0xa0, 0x71, 0x03, 0xf2, 0xd2, 0xc8, 0xe1, 0x6d, 0xd9, + 0x87, 0xcb, 0xc1, 0x6c, 0x69, 0xe4, 0x07, 0xac, 0xad, 0x3c, 0x8c, 0x8c, 0x34, 0x9c, 0x5d, 0xe4, + 0xfd, 0xf3, 0xf6, 0xed, 0xe5, 0x8e, 0xbf, 0xdf, 0xfa, 0x79, 0x59, 0xf2, 0xf7, 0x5b, 0xc9, 0x65, + 0x69, 0xf2, 0x2d, 0xb9, 0xde, 0xbd, 0xdc, 0xf1, 0xcb, 0xd3, 0xeb, 0xca, 0xe5, 0x8e, 0x5f, 0x69, + 0x6d, 0xff, 0xfd, 0xf7, 0xfb, 0xed, 0x1f, 0x7b, 0x0f, 0x8b, 0xbf, 0x31, 0x48, 0x3f, 0x6c, 0xfb, + 0xe7, 0xdb, 0xcb, 0x92, 0xbf, 0xdb, 0x9a, 0xfe, 0xcf, 0xde, 0xe5, 0x8e, 0xbf, 0xdb, 0xda, 0xde, + 0xfe, 0x8f, 0xc7, 0x11, 0x00, 0x47, 0x00, 0xb9, 0x3e, 0x9a, 0x6e, 0x45, 0x12, 0x8e, 0x8c, 0xc4, + 0x1b, 0x06, 0xfc, 0x1a, 0x1c, 0xc7, 0x02, 0x1c, 0x0b, 0x70, 0x2c, 0xc0, 0xb1, 0x00, 0xc7, 0x02, + 0x1c, 0x0b, 0x6c, 0xd8, 0x58, 0x80, 0x67, 0x8a, 0xe0, 0xa3, 0xdc, 0x46, 0x1f, 0xdb, 0x5c, 0xd7, + 0x3a, 0x34, 0xc2, 0x28, 0x90, 0xdd, 0xf6, 0xbc, 0xb8, 0xfb, 0x55, 0xde, 0x88, 0xf4, 0x94, 0x3c, + 0x2f, 0x08, 0x87, 0x52, 0x77, 0x27, 0xa0, 0xe4, 0x6b, 0x69, 0xbe, 0x87, 0xd1, 0xb5, 0xaf, 0x74, + 0x6c, 0x84, 0xee, 0xca, 0xe0, 0xe9, 0x0b, 0x71, 0xee, 0x95, 0x60, 0x18, 0x85, 0x26, 0xec, 0x86, + 0x83, 0x38, 0xbb, 0x0a, 0x3a, 0x57, 0xc3, 0x20, 0x52, 0x9d, 0x40, 0xf4, 0x95, 0x1f, 0x8b, 0xbe, + 0x8a, 0xb3, 0xab, 0x60, 0x32, 0x70, 0x1f, 0x69, 0xd5, 0x15, 0xb1, 0x09, 0xb4, 0x54, 0x57, 0x5f, + 0x3b, 0x61, 0x14, 0x67, 0x57, 0x81, 0xe8, 0x7d, 0x9b, 0x28, 0x81, 0xd2, 0xfe, 0x30, 0x8c, 0x4d, + 0x30, 0xa1, 0xdb, 0x38, 0xf9, 0x96, 0xec, 0x28, 0xe9, 0x56, 0x20, 0xdc, 0xf5, 0x64, 0x87, 0xbd, + 0xd8, 0x1b, 0xe9, 0x6b, 0x1d, 0x7e, 0xd7, 0xbe, 0x30, 0x26, 0x52, 0x9d, 0x71, 0x8b, 0x38, 0xef, + 0xc9, 0x8f, 0x33, 0x86, 0xf2, 0xb1, 0x39, 0xce, 0xf7, 0x69, 0xf5, 0x77, 0x1c, 0x06, 0xca, 0xe0, + 0x07, 0x69, 0xd0, 0x83, 0x39, 0xd8, 0x41, 0x1b, 0xe4, 0xc0, 0x0e, 0x6e, 0x60, 0x07, 0x35, 0xb0, + 0x83, 0x99, 0xcd, 0x26, 0xaf, 0x03, 0x15, 0x61, 0x94, 0x9d, 0x9c, 0x48, 0xe1, 0xb9, 0x89, 0xf9, + 0x10, 0xb1, 0x3c, 0xc5, 0x12, 0x3d, 0x45, 0x78, 0x79, 0xc5, 0x96, 0x59, 0x54, 0xb9, 0x85, 0x97, + 0x5d, 0x78, 0xf9, 0x85, 0x97, 0x61, 0x1c, 0x2b, 0x66, 0x0b, 0xc8, 0x53, 0x44, 0x91, 0xe7, 0x2c, + 0xa0, 0xb1, 0xf6, 0xf9, 0x06, 0xcd, 0xe9, 0x9c, 0xa9, 0xa8, 0x8f, 0x21, 0x82, 0xa5, 0x1e, 0xe6, + 0xdc, 0x6d, 0x38, 0xb9, 0x46, 0x96, 0xed, 0x62, 0xc8, 0x37, 0xba, 0x8c, 0x17, 0x46, 0xce, 0x0b, + 0x23, 0xeb, 0x85, 0x91, 0x77, 0x2c, 0x99, 0x07, 0x93, 0xfb, 0xac, 0x15, 0xcf, 0x11, 0x05, 0x76, + 0x0b, 0xfb, 0x94, 0xb0, 0xdc, 0x68, 0xb8, 0x06, 0x18, 0xdb, 0x2f, 0xa7, 0x86, 0x25, 0x87, 0x7f, + 0x3d, 0xc2, 0x0a, 0x57, 0xfb, 0xa0, 0xa7, 0xa6, 0x97, 0x3c, 0x5d, 0x83, 0x05, 0xdf, 0x24, 0x3c, + 0x4c, 0xe8, 0x2d, 0x11, 0x7a, 0x09, 0xbd, 0x84, 0x5e, 0x42, 0x2f, 0xa1, 0x97, 0xca, 0x3a, 0xbf, + 0x15, 0xd1, 0xbc, 0xae, 0x2c, 0xb0, 0x09, 0xa3, 0x0d, 0x24, 0xf0, 0x46, 0x19, 0x33, 0xd6, 0xd7, + 0x38, 0xd2, 0x77, 0xdc, 0xbd, 0x60, 0x8d, 0xa0, 0xa0, 0x08, 0x70, 0x50, 0x2c, 0x48, 0x28, 0x0a, + 0x2c, 0x14, 0x0e, 0x1a, 0x0a, 0x07, 0x0f, 0x85, 0x83, 0x08, 0x4c, 0x98, 0x00, 0x85, 0x8a, 0xac, + 0x75, 0x61, 0x1d, 0xb5, 0x5c, 0xdd, 0x1c, 0x29, 0x6d, 0x4a, 0x55, 0xe4, 0x9a, 0x99, 0xaa, 0x78, + 0x15, 0x38, 0x44, 0xcc, 0xfd, 0xdf, 0x9e, 0x7e, 0x61, 0x6b, 0xce, 0x16, 0xfa, 0xfe, 0x70, 0x05, + 0xc3, 0xcb, 0x5c, 0xb8, 0xe0, 0xfb, 0xc7, 0xe5, 0xe2, 0x2d, 0xc0, 0x9e, 0x59, 0x05, 0x91, 0xa3, + 0xd9, 0x14, 0x13, 0x77, 0x4c, 0xb1, 0x15, 0xa7, 0x58, 0xb5, 0x52, 0xd9, 0xab, 0x30, 0xcd, 0x36, + 0x8b, 0x45, 0xf1, 0xa3, 0x6b, 0xbd, 0xe1, 0xfd, 0x2a, 0x68, 0x19, 0x07, 0x9e, 0x09, 0x97, 0x1b, + 0x52, 0xa0, 0xce, 0x88, 0x2b, 0x88, 0xaa, 0xd0, 0x17, 0x7c, 0xcd, 0xce, 0x48, 0x5f, 0xf0, 0x55, + 0x33, 0x87, 0xbe, 0xe0, 0x8a, 0x03, 0xa6, 0x2f, 0xb8, 0xc6, 0x03, 0xb1, 0x82, 0xf9, 0x82, 0x1f, + 0x0a, 0x60, 0x0b, 0x56, 0x68, 0x0b, 0x2e, 0xf9, 0x45, 0x5b, 0x90, 0x9e, 0x05, 0x6d, 0xc1, 0x0d, + 0x54, 0xa3, 0xd9, 0x14, 0xa3, 0x2d, 0xb8, 0xf2, 0x14, 0xdb, 0xad, 0xd0, 0x14, 0xdc, 0x30, 0x10, + 0xc5, 0x8f, 0x8e, 0xa6, 0x60, 0x61, 0x8b, 0x78, 0xe2, 0xb4, 0xdd, 0xa6, 0xd5, 0xa5, 0x08, 0xae, + 0x60, 0x12, 0x2b, 0x6d, 0xc1, 0x97, 0x84, 0x47, 0x5b, 0xf0, 0x15, 0x7b, 0x23, 0x6d, 0xc1, 0x57, + 0xcd, 0x1c, 0xda, 0x82, 0x2b, 0x0e, 0x98, 0xb6, 0xe0, 0x1a, 0x0f, 0xc4, 0x0a, 0x64, 0x0b, 0x76, + 0x94, 0x16, 0xd1, 0x7d, 0x01, 0x7c, 0xc1, 0x7d, 0xe0, 0x10, 0x8f, 0xa5, 0xbe, 0x9a, 0x2c, 0xcc, + 0xa5, 0x31, 0xb8, 0xac, 0x6b, 0x41, 0x63, 0x70, 0xe5, 0xae, 0x45, 0x89, 0x9e, 0xc5, 0x86, 0xe9, + 0xd1, 0x6c, 0x8a, 0xd1, 0x18, 0x5c, 0x79, 0x8a, 0x71, 0xbe, 0xe0, 0x06, 0xc2, 0x28, 0x7e, 0x74, + 0xb4, 0x06, 0x0b, 0x5b, 0xc6, 0x3d, 0x79, 0x67, 0xa4, 0xee, 0xc9, 0x1e, 0xbe, 0x31, 0x98, 0x45, + 0x4a, 0x5b, 0xf0, 0x25, 0xe1, 0xd1, 0x16, 0x7c, 0xc5, 0xbe, 0x48, 0x5b, 0xf0, 0x55, 0x33, 0x87, + 0xb6, 0xe0, 0x8a, 0x03, 0xa6, 0x2d, 0xb8, 0xc6, 0xc3, 0xb0, 0x22, 0xd9, 0x82, 0x70, 0x47, 0x7e, + 0x3d, 0x27, 0xe3, 0x20, 0x47, 0x80, 0x11, 0x6a, 0x5f, 0xd2, 0x86, 0xe1, 0x70, 0x3c, 0xf2, 0x14, + 0x03, 0x7c, 0xa8, 0xcd, 0x22, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, + 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x32, 0x29, 0x66, 0xdb, 0x70, 0x28, 0x22, 0xa3, 0x8a, 0xc0, + 0xb4, 0xd3, 0x40, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, + 0x12, 0x69, 0x89, 0xb4, 0x4c, 0x8a, 0xd9, 0x36, 0x34, 0x91, 0xd0, 0xb1, 0x32, 0xea, 0xb6, 0x00, + 0xeb, 0x92, 0x7e, 0x89, 0x95, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, + 0x82, 0x2d, 0xc1, 0x96, 0x60, 0xcb, 0x88, 0x40, 0x53, 0xd4, 0xab, 0x6b, 0x1d, 0x1a, 0x61, 0x54, + 0x88, 0xb9, 0x00, 0xca, 0x8b, 0xbb, 0x5f, 0xe5, 0x8d, 0x18, 0xa6, 0x07, 0x50, 0x06, 0xe1, 0x50, + 0xea, 0xee, 0x04, 0x14, 0x7d, 0x2d, 0xcd, 0xf7, 0x30, 0xba, 0xf6, 0x95, 0x8e, 0x8d, 0xd0, 0x5d, + 0x19, 0x3c, 0x7d, 0x21, 0xce, 0xbd, 0x12, 0x0c, 0xa3, 0xd0, 0x84, 0xdd, 0x70, 0x10, 0x67, 0x57, + 0x41, 0xe7, 0x6a, 0x18, 0x44, 0xaa, 0x13, 0x88, 0xbe, 0xf2, 0x63, 0xd1, 0x57, 0x71, 0x76, 0x15, + 0xa8, 0xe1, 0x6d, 0xd9, 0x1f, 0x69, 0xd5, 0x15, 0xb1, 0x09, 0xb4, 0x54, 0x57, 0x5f, 0x3b, 0x61, + 0x14, 0x67, 0x57, 0x81, 0xe8, 0x7d, 0x9b, 0x28, 0x95, 0xd2, 0xfe, 0x30, 0x8c, 0x4d, 0x10, 0x85, + 0x23, 0x23, 0xe3, 0xe4, 0x5b, 0x30, 0xd2, 0xd7, 0x3a, 0xfc, 0xae, 0x7d, 0x61, 0x4c, 0xa4, 0x3a, + 0x93, 0x1f, 0xe4, 0x5e, 0x4a, 0x4e, 0xd3, 0xe4, 0x19, 0x9a, 0xc8, 0x91, 0xa0, 0x9c, 0xa9, 0xff, + 0x5f, 0x79, 0x8f, 0xb8, 0x29, 0xae, 0x77, 0xac, 0x62, 0x53, 0x37, 0x06, 0xec, 0xc0, 0xff, 0x2f, + 0x4a, 0x1f, 0x0e, 0xe4, 0x98, 0x28, 0x63, 0xef, 0xe3, 0x96, 0x1e, 0x0d, 0x06, 0x40, 0x07, 0xb2, + 0x7e, 0x11, 0x77, 0xb8, 0xc1, 0x35, 0xa2, 0x9e, 0x8c, 0x64, 0xef, 0xd3, 0x7d, 0x1a, 0x1a, 0x93, + 0x10, 0x5f, 0x2d, 0xd7, 0x5b, 0x25, 0x3d, 0xa8, 0xb3, 0x94, 0xa3, 0x51, 0xd7, 0xe8, 0x74, 0xb4, + 0x70, 0x92, 0xdc, 0xb9, 0xa3, 0xf4, 0xc6, 0xb5, 0x4f, 0xd3, 0xdb, 0xd5, 0xfe, 0x74, 0x35, 0x6c, + 0x37, 0x55, 0xa7, 0x5d, 0xef, 0xab, 0x33, 0xd1, 0x57, 0xed, 0xa3, 0xe1, 0x6d, 0xf9, 0x22, 0xb9, + 0x45, 0xed, 0x93, 0xf4, 0xc6, 0xb4, 0xeb, 0xbd, 0x6f, 0x4d, 0xd5, 0x39, 0xd2, 0xa7, 0x61, 0x6c, + 0xda, 0xcd, 0xf1, 0xed, 0x68, 0x5f, 0x24, 0x7f, 0x7b, 0x3d, 0xfb, 0xd3, 0xdf, 0x50, 0x88, 0xdd, + 0x47, 0xe0, 0xb8, 0xfa, 0xa0, 0x55, 0x9d, 0x75, 0xaa, 0x36, 0x6e, 0x13, 0xcc, 0x5d, 0xb7, 0x76, + 0xf3, 0xc9, 0x8e, 0x12, 0x69, 0xca, 0xce, 0x89, 0x77, 0xbb, 0x35, 0xee, 0xb8, 0xbe, 0x72, 0xb5, + 0x4e, 0x14, 0x03, 0x98, 0xa1, 0x00, 0x19, 0x0a, 0x88, 0x31, 0x00, 0xd8, 0x55, 0xa6, 0x80, 0x48, + 0x4d, 0x61, 0x25, 0xc6, 0x21, 0xab, 0xae, 0x98, 0x4d, 0xdd, 0x28, 0xa5, 0x7d, 0x9d, 0xb2, 0xfb, + 0x89, 0x96, 0xf3, 0xdc, 0x75, 0x7e, 0x17, 0x30, 0xaf, 0xed, 0xf6, 0x7b, 0x7b, 0xbd, 0xcf, 0x62, + 0xcf, 0xf3, 0x12, 0x9b, 0xdb, 0x76, 0x87, 0xcb, 0x1e, 0xea, 0x25, 0x1f, 0x6f, 0x39, 0xd3, 0xa6, + 0x8f, 0xe9, 0x2c, 0x7f, 0x6c, 0x36, 0x8b, 0x66, 0xd7, 0xf2, 0x07, 0x3b, 0x9c, 0x1d, 0x83, 0x31, + 0xeb, 0xc5, 0xf5, 0x6c, 0x16, 0x98, 0x59, 0x2a, 0x30, 0xb3, 0x4f, 0x60, 0x66, 0x95, 0x90, 0x29, + 0xc8, 0x14, 0x09, 0x53, 0x38, 0x78, 0xe0, 0x6b, 0x11, 0x29, 0xde, 0xac, 0x51, 0xf7, 0x76, 0xd5, + 0xad, 0x8b, 0xd4, 0x9d, 0x3d, 0xab, 0x0c, 0xb9, 0x9a, 0xd1, 0xad, 0x9d, 0x64, 0x5c, 0x7d, 0x6a, + 0x58, 0x48, 0x0b, 0xef, 0xd7, 0xe6, 0x8f, 0xec, 0x91, 0xce, 0xe3, 0xd9, 0x1f, 0xb3, 0x9f, 0x6f, + 0xa9, 0x10, 0xd8, 0x25, 0x79, 0xeb, 0xf3, 0xe0, 0x5d, 0x90, 0xbb, 0x5b, 0x62, 0x77, 0x45, 0xea, + 0xce, 0x09, 0xdd, 0x39, 0x99, 0x3b, 0x27, 0xf2, 0xf5, 0x42, 0x94, 0x03, 0x65, 0xf7, 0x29, 0x92, + 0x97, 0x5a, 0x62, 0xce, 0x9c, 0x9c, 0xf4, 0xf3, 0x69, 0xe5, 0xd0, 0xca, 0xa1, 0x95, 0x43, 0x2b, + 0x87, 0x56, 0x4e, 0xc1, 0x05, 0x65, 0x56, 0x58, 0xdc, 0xe5, 0xdb, 0x8c, 0xbe, 0xb8, 0xca, 0x35, + 0x37, 0x32, 0xe3, 0x6c, 0xdc, 0x81, 0x24, 0x3b, 0x58, 0xf2, 0x83, 0x22, 0x43, 0x70, 0x72, 0x04, + 0x27, 0x4b, 0x70, 0xf2, 0xe4, 0x46, 0xa6, 0x1c, 0xc9, 0x95, 0x73, 0xd9, 0xca, 0x02, 0x98, 0x4e, + 0x29, 0x74, 0x9e, 0xa9, 0x8f, 0x7b, 0xac, 0xb9, 0x9c, 0xe3, 0xf8, 0x54, 0xd2, 0x1c, 0xef, 0xe8, + 0x00, 0xb3, 0xb5, 0x04, 0xd2, 0x16, 0x12, 0x98, 0x5b, 0x45, 0xa0, 0x6d, 0x09, 0x01, 0xbb, 0xf5, + 0x03, 0xec, 0x16, 0x0f, 0xb0, 0x5b, 0x39, 0x6c, 0xf6, 0x1a, 0x12, 0x98, 0x2d, 0x18, 0xb2, 0xba, + 0x33, 0x90, 0xa2, 0x1f, 0xc9, 0x3e, 0x42, 0xd1, 0x99, 0x8e, 0xbc, 0x6a, 0x00, 0xb1, 0x9c, 0xa6, + 0x0f, 0x7e, 0xdf, 0xbf, 0x4f, 0x26, 0x0b, 0x04, 0x53, 0x29, 0xdf, 0xd4, 0x95, 0x2a, 0x0e, 0xc7, + 0x5f, 0x43, 0x0c, 0xb9, 0x7e, 0xa4, 0x3a, 0x88, 0xc1, 0x17, 0xa1, 0x8e, 0x50, 0x47, 0xa8, 0x23, + 0xd4, 0x11, 0xea, 0x08, 0x75, 0x84, 0xba, 0x17, 0x42, 0x5d, 0x52, 0x76, 0xc8, 0x74, 0xd6, 0x9b, + 0xc2, 0xcd, 0x5a, 0x94, 0x67, 0x13, 0xc6, 0xc5, 0xda, 0x94, 0x67, 0x53, 0x85, 0x44, 0x47, 0xa2, + 0x23, 0xd1, 0x91, 0xe8, 0x48, 0x74, 0xae, 0x5a, 0xc5, 0xf5, 0x93, 0xac, 0x2c, 0x90, 0xc9, 0x3e, + 0x73, 0x4a, 0xf7, 0x24, 0xce, 0x86, 0xd7, 0x8f, 0xd3, 0xc0, 0x1f, 0x63, 0x43, 0xd9, 0x9c, 0x0f, + 0x6a, 0x6b, 0x75, 0xb8, 0xad, 0xd4, 0x11, 0xb7, 0x4e, 0xc7, 0xde, 0x2a, 0x1d, 0x75, 0x6b, 0x74, + 0xf8, 0xad, 0xd0, 0xe1, 0xb7, 0x3e, 0x87, 0xdf, 0xea, 0x9c, 0xdb, 0xae, 0x42, 0x5a, 0x2c, 0xc0, + 0x56, 0x0b, 0xa2, 0xe5, 0x32, 0xcf, 0x7a, 0xf9, 0x1f, 0xff, 0x4d, 0x90, 0x22, 0x96, 0x26, 0xce, + 0xae, 0x52, 0xa3, 0x26, 0xc1, 0x0c, 0x6e, 0xc3, 0x88, 0x92, 0x94, 0x5e, 0x37, 0xbc, 0xb9, 0x19, + 0x69, 0x65, 0xee, 0x51, 0xe9, 0xf4, 0x69, 0x80, 0x44, 0x54, 0x22, 0x2a, 0x11, 0x95, 0x88, 0x4a, + 0x44, 0x25, 0xa2, 0x12, 0x51, 0x89, 0xa8, 0x2f, 0x45, 0xd4, 0x29, 0x57, 0x28, 0x19, 0x67, 0xd7, + 0xf7, 0xa4, 0x54, 0x4c, 0x4a, 0x95, 0x77, 0xc6, 0x87, 0x27, 0xd5, 0x79, 0x41, 0x92, 0x56, 0x49, + 0xab, 0xa4, 0x55, 0xd2, 0x2a, 0x69, 0x95, 0xb4, 0x4a, 0x5a, 0x25, 0xad, 0xbe, 0x94, 0x56, 0x7f, + 0x65, 0x8b, 0x31, 0xb1, 0xce, 0xb0, 0x06, 0xa9, 0x15, 0x93, 0x5a, 0x95, 0xbe, 0x15, 0x03, 0xd5, + 0xf3, 0x23, 0x29, 0x62, 0xa0, 0x23, 0xae, 0xb2, 0x0c, 0x7d, 0x12, 0x1f, 0x59, 0x95, 0xac, 0x4a, + 0x56, 0x25, 0xab, 0x92, 0x55, 0xc9, 0xaa, 0x1b, 0xc6, 0xaa, 0xaa, 0x27, 0xb5, 0x51, 0xe6, 0x1e, + 0x94, 0x57, 0x2b, 0x40, 0x31, 0x1d, 0xa5, 0xb7, 0xea, 0x93, 0x88, 0x01, 0x4b, 0xea, 0xb4, 0x41, + 0x8f, 0x4e, 0xfe, 0xaa, 0x1f, 0x1f, 0x1d, 0xb4, 0x9b, 0x8d, 0x8b, 0xf3, 0xc3, 0x76, 0xf3, 0xb0, + 0x7e, 0xd6, 0x38, 0x41, 0xab, 0xae, 0x7f, 0x89, 0xc1, 0x68, 0xb2, 0xfb, 0xe3, 0x25, 0xdc, 0x39, + 0xe1, 0x3f, 0x20, 0x0f, 0xc3, 0xcf, 0xb5, 0x6e, 0xfd, 0xac, 0x7d, 0xdc, 0x68, 0x9c, 0x7a, 0x78, + 0x87, 0xe4, 0xbf, 0x63, 0x93, 0xbe, 0xac, 0x49, 0xff, 0x68, 0x9c, 0x7c, 0x3e, 0x3c, 0x60, 0x8b, + 0xae, 0x4f, 0x8b, 0x36, 0x9a, 0x47, 0x7f, 0x1e, 0x9d, 0xd4, 0xcf, 0x1b, 0x4d, 0xb6, 0xea, 0x1a, + 0xe5, 0xe9, 0xf1, 0xc5, 0xd9, 0xf9, 0x61, 0x13, 0xb5, 0xfe, 0x42, 0x45, 0xd4, 0xe2, 0x78, 0x04, + 0x2c, 0x0a, 0x04, 0x77, 0x70, 0x20, 0x62, 0xe3, 0xdf, 0x84, 0x3d, 0xd5, 0x57, 0xb2, 0x87, 0x67, + 0x0e, 0xce, 0x86, 0x47, 0x6f, 0x70, 0x5e, 0x38, 0xf4, 0x06, 0x17, 0xe8, 0x50, 0xf4, 0x06, 0x17, + 0xea, 0xe9, 0xf4, 0x06, 0x97, 0x0c, 0x90, 0xde, 0x60, 0x81, 0x08, 0x18, 0xd8, 0x1b, 0x34, 0xea, + 0x46, 0x1a, 0xd5, 0xbd, 0x8e, 0xab, 0x65, 0x40, 0x6f, 0xf0, 0x03, 0x50, 0x48, 0x17, 0x5a, 0x4d, + 0x4e, 0x9c, 0xf7, 0xb4, 0xd0, 0x61, 0x2c, 0xbb, 0xa1, 0xee, 0xc5, 0x48, 0xb7, 0xac, 0x29, 0xf4, + 0x95, 0x84, 0xf3, 0xdb, 0xf0, 0x06, 0x7c, 0xde, 0x17, 0xa5, 0xe1, 0x14, 0x11, 0x94, 0x01, 0x73, + 0xe1, 0x4d, 0x5c, 0x5d, 0xe0, 0xf8, 0x3e, 0x47, 0xa2, 0x6b, 0x54, 0xa8, 0x0f, 0xd4, 0x55, 0x92, + 0xad, 0x3b, 0x74, 0x65, 0x7e, 0x27, 0x25, 0xc4, 0x1d, 0x53, 0x62, 0xc9, 0x94, 0x28, 0x7d, 0x28, + 0x97, 0xab, 0xb5, 0x72, 0x79, 0xa7, 0xb6, 0x57, 0xdb, 0xd9, 0xaf, 0x54, 0x4a, 0x55, 0xa4, 0x27, + 0x5b, 0x85, 0xcb, 0x92, 0x37, 0x8c, 0x66, 0xde, 0x57, 0x8b, 0x1e, 0x17, 0x4a, 0x15, 0x85, 0x39, + 0xc8, 0x21, 0x07, 0xf5, 0x18, 0x07, 0x3a, 0x80, 0x16, 0x70, 0xfa, 0x5a, 0x8b, 0x74, 0x25, 0xfa, + 0x5a, 0x0b, 0xf5, 0x74, 0xfa, 0x5a, 0x4b, 0x06, 0x48, 0x5f, 0xab, 0x40, 0x63, 0x08, 0x60, 0x5f, + 0x6b, 0xa4, 0xb4, 0xd9, 0xdb, 0x05, 0xb4, 0xb4, 0x6a, 0xb4, 0x8c, 0xfe, 0xe5, 0x8b, 0x96, 0xd1, + 0x5a, 0x8e, 0x8f, 0x69, 0x19, 0x15, 0xbd, 0xdc, 0xcf, 0xa6, 0x04, 0x2d, 0xa3, 0xa5, 0x53, 0xa2, + 0xbc, 0xbb, 0x5f, 0xde, 0xaf, 0xd6, 0x76, 0xf7, 0x69, 0x14, 0xad, 0x81, 0x35, 0xb3, 0x45, 0xa3, + 0x08, 0xf0, 0x7e, 0x40, 0x18, 0x45, 0x58, 0x03, 0x7c, 0xac, 0x23, 0xa2, 0x40, 0x8b, 0x36, 0x6d, + 0xa2, 0x45, 0x7a, 0x12, 0x6d, 0xa2, 0x85, 0x7a, 0x3a, 0x6d, 0xa2, 0x25, 0x03, 0xa4, 0x4d, 0x54, + 0xa0, 0x71, 0x03, 0xf2, 0xd2, 0xc8, 0xe1, 0x6d, 0xd9, 0x87, 0xcb, 0xc1, 0x6c, 0x69, 0xe4, 0x07, + 0xac, 0xad, 0x3c, 0x8c, 0x8c, 0x34, 0x9c, 0x5d, 0xe4, 0xfd, 0xf3, 0xf6, 0xed, 0xe5, 0x8e, 0xbf, + 0xdf, 0xfa, 0x79, 0x59, 0xf2, 0xf7, 0x5b, 0xc9, 0x65, 0x69, 0xf2, 0x2d, 0xb9, 0xde, 0xbd, 0xdc, + 0xf1, 0xcb, 0xd3, 0xeb, 0xca, 0xe5, 0x8e, 0x5f, 0x69, 0x6d, 0xff, 0xfd, 0xf7, 0xfb, 0xed, 0x1f, + 0x7b, 0x0f, 0x8b, 0xbf, 0x31, 0x48, 0x3f, 0x6c, 0xfb, 0xe7, 0xdb, 0xcb, 0x92, 0xbf, 0xdb, 0x9a, + 0xfe, 0xcf, 0xde, 0xe5, 0x8e, 0xbf, 0xdb, 0xda, 0xde, 0xfe, 0x8f, 0xc7, 0x11, 0x00, 0x47, 0x00, + 0xb9, 0x3e, 0x9a, 0x6e, 0x45, 0x12, 0x8e, 0x8c, 0xc4, 0x1b, 0x06, 0xfc, 0x1a, 0x1c, 0xc7, 0x02, + 0x1c, 0x0b, 0x70, 0x2c, 0xc0, 0xb1, 0x00, 0xc7, 0x02, 0x1c, 0x0b, 0x6c, 0xd8, 0x58, 0xa0, 0x13, + 0x86, 0x03, 0x29, 0x34, 0xe2, 0x38, 0xa0, 0x44, 0x94, 0x03, 0x88, 0xc0, 0xf5, 0x79, 0x7f, 0x75, + 0xad, 0x43, 0x23, 0x8c, 0x02, 0xd9, 0x6d, 0xcf, 0x8b, 0xbb, 0x5f, 0xe5, 0x8d, 0x18, 0xa6, 0x5b, + 0x3c, 0x06, 0xe1, 0x50, 0xea, 0xee, 0x04, 0x94, 0x7c, 0x2d, 0xcd, 0xf7, 0x30, 0xba, 0xf6, 0x95, + 0x8e, 0x8d, 0xd0, 0x5d, 0x19, 0x3c, 0x7d, 0x21, 0xce, 0xbd, 0x12, 0x0c, 0xa3, 0xd0, 0x84, 0xdd, + 0x70, 0x10, 0x67, 0x57, 0x41, 0xe7, 0x6a, 0x18, 0x44, 0xaa, 0x13, 0x88, 0xbe, 0xf2, 0x63, 0xd1, + 0x57, 0x71, 0x76, 0x15, 0x4c, 0x06, 0xee, 0x23, 0xad, 0xba, 0x22, 0x36, 0x81, 0x96, 0xea, 0xea, + 0x6b, 0x27, 0x8c, 0xe2, 0xec, 0x2a, 0x10, 0xbd, 0x6f, 0x13, 0x25, 0x50, 0x7a, 0x3c, 0xbc, 0x0f, + 0x26, 0x70, 0x1b, 0x27, 0xdf, 0x92, 0x0d, 0x25, 0x79, 0x9c, 0xb2, 0xfd, 0x0e, 0x33, 0xd2, 0xd7, + 0x3a, 0xfc, 0xae, 0x7d, 0x61, 0x4c, 0xa4, 0x3a, 0xe3, 0x16, 0xc1, 0x39, 0x5b, 0x79, 0x4e, 0x6c, + 0x3c, 0x68, 0x99, 0x07, 0x2d, 0x17, 0x69, 0xac, 0xc3, 0x83, 0x96, 0x8b, 0x3e, 0xa6, 0xe1, 0x41, + 0xcb, 0x90, 0xe0, 0x05, 0x73, 0xd0, 0x72, 0x4e, 0xa4, 0xf0, 0xcc, 0xc4, 0x7c, 0x88, 0x58, 0x96, + 0x62, 0x89, 0x96, 0x22, 0xbc, 0xbc, 0x62, 0xcb, 0x2c, 0xaa, 0xdc, 0xc2, 0xcb, 0x2e, 0xbc, 0xfc, + 0xc2, 0xcb, 0x30, 0x8e, 0x13, 0xb3, 0x05, 0x64, 0x29, 0xa2, 0xc8, 0x73, 0x16, 0xd0, 0xe4, 0x58, + 0x60, 0x83, 0x66, 0x74, 0xce, 0x54, 0xd4, 0xc7, 0x10, 0xc1, 0x52, 0x0f, 0x73, 0xea, 0x36, 0x9c, + 0x5c, 0x23, 0xcb, 0x76, 0x31, 0xe4, 0x1b, 0x5d, 0xc6, 0x0b, 0x23, 0xe7, 0x85, 0x91, 0xf5, 0xc2, + 0xc8, 0x3b, 0x96, 0xcc, 0x83, 0xc9, 0x7d, 0xd6, 0x8a, 0xe7, 0x88, 0x02, 0xbb, 0x85, 0x7d, 0x48, + 0x58, 0x6e, 0x34, 0x5c, 0x03, 0x8c, 0xed, 0x97, 0x43, 0xc3, 0x92, 0xb3, 0xbf, 0x1e, 0x61, 0x85, + 0x8b, 0x7d, 0xd0, 0x53, 0xd3, 0x4b, 0x9e, 0xae, 0xc1, 0x82, 0x6f, 0x12, 0x1e, 0x26, 0xf4, 0x96, + 0x08, 0xbd, 0x84, 0x5e, 0x42, 0x2f, 0xa1, 0x97, 0xd0, 0x4b, 0x65, 0x9d, 0xdf, 0x8a, 0x68, 0x5e, + 0x57, 0x16, 0xd8, 0x84, 0xd1, 0x06, 0x12, 0x78, 0x9f, 0x8c, 0x19, 0xeb, 0x6b, 0x1c, 0xe9, 0x3b, + 0x6e, 0x5e, 0xb0, 0x46, 0x50, 0x50, 0x04, 0x38, 0x28, 0x16, 0x24, 0x14, 0x05, 0x16, 0x0a, 0x07, + 0x0d, 0x85, 0x83, 0x87, 0xc2, 0x41, 0x04, 0x26, 0x4c, 0x80, 0x42, 0x45, 0xd6, 0xba, 0xb0, 0x8e, + 0x5a, 0xae, 0x6e, 0x8e, 0x94, 0x36, 0xa5, 0x2a, 0x72, 0xcd, 0x4c, 0x55, 0xbc, 0x0a, 0x1c, 0x22, + 0xe6, 0xf6, 0x6f, 0x4f, 0xbf, 0xb0, 0x35, 0x67, 0x0b, 0x7d, 0x7b, 0xb8, 0x82, 0xe1, 0x65, 0x2e, + 0x5c, 0xf0, 0xed, 0xe3, 0x72, 0xf1, 0x16, 0x60, 0xcb, 0xac, 0x82, 0xc8, 0xd1, 0x6c, 0x8a, 0x89, + 0x3b, 0xa6, 0xd8, 0x8a, 0x53, 0xac, 0x5a, 0xa9, 0xec, 0x55, 0x98, 0x66, 0x9b, 0xc5, 0xa2, 0xf8, + 0xd1, 0xb5, 0xde, 0xf0, 0x7e, 0x15, 0xb4, 0x8c, 0x03, 0xcf, 0x84, 0xcb, 0x0d, 0x29, 0x50, 0x67, + 0xc4, 0x15, 0x44, 0x55, 0xe8, 0x0b, 0xbe, 0x66, 0x67, 0xa4, 0x2f, 0xf8, 0xaa, 0x99, 0x43, 0x5f, + 0x70, 0xc5, 0x01, 0xd3, 0x17, 0x5c, 0xe3, 0x81, 0x58, 0xc1, 0x7c, 0xc1, 0x0f, 0x05, 0xb0, 0x05, + 0x2b, 0xb4, 0x05, 0x97, 0xfc, 0xa2, 0x2d, 0x48, 0xcf, 0x82, 0xb6, 0xe0, 0x06, 0xaa, 0xd1, 0x6c, + 0x8a, 0xd1, 0x16, 0x5c, 0x79, 0x8a, 0xed, 0x56, 0x68, 0x0a, 0x6e, 0x18, 0x88, 0xe2, 0x47, 0x47, + 0x53, 0xb0, 0xb0, 0x45, 0x3c, 0x71, 0xda, 0x6e, 0xd3, 0xea, 0x52, 0x04, 0x57, 0x30, 0x89, 0x95, + 0xb6, 0xe0, 0x4b, 0xc2, 0xa3, 0x2d, 0xf8, 0x8a, 0xbd, 0x91, 0xb6, 0xe0, 0xab, 0x66, 0x0e, 0x6d, + 0xc1, 0x15, 0x07, 0x4c, 0x5b, 0x70, 0x8d, 0x07, 0x62, 0x05, 0xb2, 0x05, 0x3b, 0x4a, 0x8b, 0xe8, + 0xbe, 0x00, 0xbe, 0xe0, 0x3e, 0x70, 0x88, 0xc7, 0x52, 0x5f, 0x4d, 0x16, 0xe6, 0xd2, 0x18, 0x5c, + 0xd6, 0xb5, 0xa0, 0x31, 0xb8, 0x72, 0xd7, 0xa2, 0x44, 0xcf, 0x62, 0xc3, 0xf4, 0x68, 0x36, 0xc5, + 0x68, 0x0c, 0xae, 0x3c, 0xc5, 0x38, 0x5f, 0x70, 0x03, 0x61, 0x14, 0x3f, 0x3a, 0x5a, 0x83, 0x85, + 0x2d, 0xe3, 0x9e, 0xbc, 0x33, 0x52, 0xf7, 0x64, 0x0f, 0xdf, 0x18, 0xcc, 0x22, 0xa5, 0x2d, 0xf8, + 0x92, 0xf0, 0x68, 0x0b, 0xbe, 0x62, 0x5f, 0xa4, 0x2d, 0xf8, 0xaa, 0x99, 0x43, 0x5b, 0x70, 0xc5, + 0x01, 0xd3, 0x16, 0x5c, 0xe3, 0x61, 0x58, 0x91, 0x6c, 0x41, 0xb8, 0x13, 0xbf, 0x9e, 0x93, 0x71, + 0x90, 0x13, 0xc0, 0x08, 0xb5, 0x2f, 0x69, 0xc3, 0x70, 0x38, 0x1e, 0x79, 0x8a, 0x01, 0x3e, 0xd4, + 0x66, 0x91, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, + 0xd4, 0x12, 0x6a, 0x99, 0x14, 0xb3, 0x6d, 0x38, 0x14, 0x91, 0x51, 0x45, 0x60, 0xda, 0x69, 0xa0, + 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, + 0x5a, 0x26, 0xc5, 0x6c, 0x1b, 0x9a, 0x48, 0xe8, 0x58, 0x19, 0x75, 0x5b, 0x80, 0x75, 0x49, 0xbf, + 0xc4, 0x4a, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, + 0x4b, 0xb0, 0x65, 0x44, 0xa0, 0x29, 0xea, 0xd5, 0xb5, 0x0e, 0x8d, 0x30, 0x2a, 0xc4, 0x5c, 0x00, + 0xe5, 0xc5, 0xdd, 0xaf, 0xf2, 0x46, 0x0c, 0xd3, 0x03, 0x28, 0x83, 0x70, 0x28, 0x75, 0x77, 0x02, + 0x8a, 0xbe, 0x96, 0xe6, 0x7b, 0x18, 0x5d, 0xfb, 0x4a, 0xc7, 0x46, 0xe8, 0xae, 0x0c, 0x9e, 0xbe, + 0x10, 0xe7, 0x5e, 0x09, 0x86, 0x51, 0x68, 0xc2, 0x6e, 0x38, 0x88, 0xb3, 0xab, 0xa0, 0x73, 0x35, + 0x0c, 0x22, 0xd5, 0x09, 0x44, 0x5f, 0xf9, 0xb1, 0xe8, 0xab, 0x38, 0xbb, 0x0a, 0xd4, 0xf0, 0xb6, + 0xec, 0x8f, 0xb4, 0xea, 0x8a, 0xd8, 0x04, 0x5a, 0xaa, 0xab, 0xaf, 0x9d, 0x30, 0x8a, 0xb3, 0xab, + 0x40, 0xf4, 0xbe, 0x4d, 0x94, 0x4a, 0x69, 0x7f, 0x18, 0xc9, 0x20, 0x0a, 0x47, 0x46, 0xc6, 0xc9, + 0xb7, 0x60, 0xa4, 0xaf, 0x75, 0xf8, 0x5d, 0xfb, 0xc2, 0x98, 0x48, 0x75, 0x26, 0x3f, 0xc8, 0xbd, + 0x94, 0x1c, 0xa6, 0xc9, 0x23, 0x34, 0x91, 0x23, 0x41, 0x39, 0x52, 0xff, 0xbf, 0xf2, 0x1e, 0x71, + 0x4f, 0x5c, 0xef, 0x58, 0xc5, 0xa6, 0x6e, 0x0c, 0xd8, 0x79, 0xff, 0x5f, 0x94, 0x3e, 0x1c, 0xc8, + 0x31, 0x50, 0xc6, 0xde, 0xc7, 0x2d, 0x3d, 0x1a, 0x0c, 0x80, 0xce, 0x63, 0xfd, 0x22, 0xee, 0x70, + 0x83, 0x6b, 0x44, 0x3d, 0x19, 0xc9, 0xde, 0xa7, 0xfb, 0x34, 0x34, 0x26, 0x21, 0xbe, 0x58, 0xae, + 0xb5, 0x48, 0x7a, 0x50, 0x27, 0x29, 0x47, 0xa3, 0xae, 0xd1, 0xe9, 0x58, 0xe1, 0x24, 0xb9, 0x71, + 0x47, 0xe9, 0x7d, 0x6b, 0x9f, 0xa6, 0x77, 0xab, 0xfd, 0xe9, 0x6a, 0xd8, 0x6e, 0xaa, 0x4e, 0xbb, + 0xde, 0x57, 0x67, 0xa2, 0xaf, 0xda, 0x47, 0xc3, 0xdb, 0xf2, 0x45, 0x72, 0x87, 0xda, 0x27, 0xe9, + 0x7d, 0x69, 0xd7, 0x7b, 0xdf, 0x9a, 0xaa, 0x73, 0xa4, 0x4f, 0x23, 0xd9, 0x6e, 0x8e, 0xef, 0x46, + 0xfb, 0x22, 0xf9, 0xd3, 0xeb, 0xd9, 0x5f, 0xfe, 0x86, 0x32, 0xec, 0x3e, 0x02, 0xc7, 0xb5, 0x07, + 0xad, 0xe6, 0xac, 0x51, 0xad, 0x71, 0x9b, 0x5f, 0xee, 0x7a, 0xb5, 0x9b, 0x4f, 0x76, 0x94, 0x47, + 0x53, 0x70, 0x4e, 0x7c, 0xdb, 0xad, 0x71, 0xbf, 0xf5, 0x95, 0xab, 0x35, 0xa2, 0x18, 0xb4, 0x0c, + 0x45, 0xc7, 0x50, 0x34, 0x8c, 0x41, 0xbf, 0xae, 0x32, 0x05, 0x44, 0x69, 0x8a, 0xaa, 0x30, 0x0e, + 0x41, 0x75, 0xb5, 0x60, 0xea, 0x46, 0x27, 0xed, 0xab, 0x94, 0xdd, 0x4f, 0xb4, 0x9c, 0xe5, 0xae, + 0xb3, 0xbb, 0x78, 0x59, 0x6d, 0xb7, 0xdb, 0xdb, 0xeb, 0x7c, 0x16, 0x3b, 0x9e, 0x97, 0x18, 0xdc, + 0xb6, 0xfb, 0x5b, 0xf6, 0x34, 0x2f, 0xf9, 0x78, 0xcb, 0x89, 0x36, 0x7d, 0x3e, 0x67, 0xf9, 0x63, + 0xb3, 0xe9, 0x33, 0xbb, 0x96, 0x3f, 0xd8, 0xe1, 0xb4, 0x18, 0x8c, 0xe9, 0x2e, 0xae, 0xa7, 0xb1, + 0xc0, 0x4c, 0x4f, 0x81, 0x99, 0x76, 0x02, 0x33, 0x9d, 0x84, 0x48, 0x41, 0xa4, 0x98, 0x20, 0x85, + 0x83, 0x27, 0xbd, 0x16, 0x89, 0xe2, 0xcd, 0x1a, 0xf5, 0x6e, 0x57, 0xbd, 0xba, 0x40, 0xbd, 0xd9, + 0xb3, 0x4a, 0x90, 0x2b, 0x19, 0xd9, 0xda, 0x49, 0xc5, 0xd5, 0x27, 0x86, 0x85, 0xa4, 0xf0, 0xa6, + 0x8d, 0x1f, 0x8e, 0x8c, 0x3f, 0x0c, 0x63, 0x63, 0x2d, 0x2d, 0x1e, 0xcf, 0xfc, 0x78, 0x1a, 0x81, + 0xa5, 0x52, 0x60, 0x17, 0xe5, 0xad, 0xcf, 0x80, 0x77, 0x81, 0xee, 0x6e, 0x91, 0xdd, 0x15, 0xaa, + 0x3b, 0x47, 0x74, 0xe7, 0x68, 0xee, 0x1c, 0xc9, 0xd7, 0x0b, 0x52, 0x0e, 0x94, 0xdd, 0x67, 0x48, + 0x5e, 0xea, 0x89, 0x39, 0xb3, 0x72, 0xd2, 0xcf, 0xa7, 0x97, 0x43, 0x2f, 0x87, 0x5e, 0x0e, 0xbd, + 0x1c, 0x7a, 0x39, 0x05, 0x17, 0x94, 0x59, 0x61, 0x71, 0x97, 0x6f, 0x33, 0xfa, 0xe2, 0x2a, 0xd7, + 0xdc, 0xc8, 0x8c, 0xb3, 0x71, 0x07, 0x92, 0xec, 0x60, 0xc9, 0x0f, 0x8a, 0x0c, 0xc1, 0xc9, 0x11, + 0x9c, 0x2c, 0xc1, 0xc9, 0x93, 0x1b, 0x99, 0x72, 0x24, 0x57, 0xce, 0x65, 0x2b, 0x0b, 0x60, 0x3a, + 0xa1, 0xd0, 0x79, 0xa6, 0x3e, 0xee, 0xae, 0xe6, 0x72, 0x86, 0xe3, 0x53, 0x49, 0x73, 0xbc, 0x97, + 0x03, 0xcc, 0xa6, 0x12, 0x48, 0x9b, 0x47, 0x60, 0x6e, 0x12, 0x81, 0xb6, 0x19, 0x04, 0xec, 0xa6, + 0x0f, 0xb0, 0x9b, 0x3b, 0xc0, 0x6e, 0xe2, 0xb0, 0xd9, 0x0b, 0x48, 0x60, 0x36, 0x5f, 0xc8, 0xea, + 0xce, 0x40, 0x8a, 0x7e, 0x24, 0xfb, 0x08, 0x45, 0x67, 0x3a, 0xf2, 0xaa, 0x01, 0xc4, 0x72, 0x9a, + 0x3e, 0xfa, 0x7d, 0xff, 0x3e, 0x99, 0x2e, 0x10, 0x4c, 0xa5, 0x7c, 0x53, 0xd7, 0xa9, 0x38, 0x1c, + 0x7f, 0x0d, 0x31, 0xe4, 0xfa, 0x91, 0xea, 0x20, 0x06, 0x5f, 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, + 0x50, 0x47, 0xa8, 0x23, 0xd4, 0x11, 0xea, 0x5e, 0x08, 0x75, 0x49, 0xd9, 0x21, 0xd3, 0x59, 0x6f, + 0x0a, 0x37, 0x8b, 0x51, 0x9e, 0x4d, 0x18, 0x17, 0x8b, 0x53, 0x9e, 0x4d, 0x15, 0x12, 0x1d, 0x89, + 0x8e, 0x44, 0x47, 0xa2, 0x23, 0xd1, 0xb9, 0x6a, 0x15, 0xd7, 0x4f, 0xb2, 0xb2, 0x40, 0x26, 0x5b, + 0xcc, 0x29, 0xdd, 0x93, 0x38, 0x5b, 0x5d, 0x3f, 0x4e, 0x04, 0x7f, 0x8c, 0x0d, 0x65, 0x5f, 0x3e, + 0xa8, 0x4d, 0xd5, 0xe1, 0x36, 0x51, 0x47, 0xdc, 0x34, 0x1d, 0x7b, 0x93, 0x74, 0xd4, 0x4d, 0xd1, + 0xe1, 0x37, 0x41, 0x87, 0xdf, 0xf4, 0x1c, 0x7e, 0x93, 0x73, 0xee, 0xb8, 0x0a, 0x69, 0xb1, 0x00, + 0x5b, 0x2d, 0x88, 0x96, 0xcb, 0x3c, 0xeb, 0xe5, 0x7f, 0xfc, 0x37, 0x41, 0x8a, 0x58, 0x9a, 0x38, + 0xbb, 0x4a, 0x8d, 0x9a, 0x04, 0x33, 0xb8, 0x07, 0x23, 0x4a, 0x52, 0x7a, 0xdd, 0xf0, 0xe6, 0x66, + 0xa4, 0x95, 0xb9, 0x47, 0xa5, 0xd3, 0xa7, 0x01, 0x12, 0x51, 0x89, 0xa8, 0x44, 0x54, 0x22, 0x2a, + 0x11, 0x95, 0x88, 0x4a, 0x44, 0x25, 0xa2, 0xbe, 0x14, 0x51, 0xa7, 0x5c, 0xa1, 0x64, 0x9c, 0x5d, + 0xdf, 0x93, 0x52, 0x31, 0x29, 0x55, 0xde, 0x19, 0x1f, 0x9e, 0x54, 0xe7, 0x05, 0x49, 0x5a, 0x25, + 0xad, 0x92, 0x56, 0x49, 0xab, 0xa4, 0x55, 0xd2, 0x2a, 0x69, 0x95, 0xb4, 0xfa, 0x52, 0x5a, 0xfd, + 0x95, 0x2d, 0xc6, 0xc4, 0x3a, 0xc3, 0x1a, 0xa4, 0x56, 0x4c, 0x6a, 0x55, 0xfa, 0x56, 0x0c, 0x54, + 0xcf, 0x8f, 0xa4, 0x88, 0x81, 0x4e, 0xb7, 0xca, 0x32, 0xf4, 0x49, 0x7c, 0x64, 0x55, 0xb2, 0x2a, + 0x59, 0x95, 0xac, 0x4a, 0x56, 0x25, 0xab, 0x6e, 0x18, 0xab, 0xaa, 0x9e, 0xd4, 0x46, 0x99, 0x7b, + 0x50, 0x5e, 0xad, 0x00, 0xc5, 0x74, 0x94, 0xde, 0xaa, 0x4f, 0x22, 0x06, 0x2c, 0xa9, 0xd3, 0x06, + 0x3d, 0x3a, 0xf9, 0xab, 0x7e, 0x7c, 0x74, 0xd0, 0x6e, 0x36, 0x2e, 0xce, 0x0f, 0xdb, 0xcd, 0xc3, + 0xfa, 0x59, 0xe3, 0x04, 0xad, 0xba, 0xfe, 0x25, 0x06, 0xa3, 0xc9, 0xee, 0x8f, 0x97, 0x70, 0x27, + 0x84, 0xff, 0x80, 0x3c, 0x06, 0x3f, 0xd7, 0xba, 0xf5, 0xb3, 0xf6, 0x71, 0xa3, 0x71, 0xea, 0xe1, + 0x1d, 0x8f, 0xff, 0x8e, 0x4d, 0xfa, 0xb2, 0x26, 0xfd, 0xa3, 0x71, 0xf2, 0xf9, 0xf0, 0x80, 0x2d, + 0xba, 0x3e, 0x2d, 0xda, 0x68, 0x1e, 0xfd, 0x79, 0x74, 0x52, 0x3f, 0x6f, 0x34, 0xd9, 0xaa, 0x6b, + 0x94, 0xa7, 0xc7, 0x17, 0x67, 0xe7, 0x87, 0x4d, 0xd4, 0xfa, 0x0b, 0x15, 0x51, 0x8b, 0xe3, 0x11, + 0xb0, 0x28, 0x10, 0xdc, 0xc1, 0x81, 0x88, 0x8d, 0x7f, 0x13, 0xf6, 0x54, 0x5f, 0xc9, 0x1e, 0x9e, + 0x39, 0x38, 0x1b, 0x1e, 0xbd, 0xc1, 0x79, 0xe1, 0xd0, 0x1b, 0x5c, 0xa0, 0x43, 0xd1, 0x1b, 0x5c, + 0xa8, 0xa7, 0xd3, 0x1b, 0x5c, 0x32, 0x40, 0x7a, 0x83, 0x05, 0x22, 0x60, 0x60, 0x6f, 0xd0, 0xa8, + 0x1b, 0x69, 0x54, 0xf7, 0x3a, 0xae, 0x96, 0x01, 0xbd, 0xc1, 0x0f, 0x40, 0x21, 0x5d, 0x68, 0x35, + 0x39, 0x6f, 0xde, 0xd3, 0x42, 0x87, 0xb1, 0xec, 0x86, 0xba, 0x17, 0x23, 0xdd, 0xb2, 0xa6, 0xd0, + 0x57, 0x12, 0xce, 0x6f, 0xc3, 0x1b, 0xf0, 0x79, 0x5f, 0x94, 0x86, 0x53, 0x44, 0x50, 0x06, 0xcc, + 0x85, 0x37, 0x71, 0x75, 0x81, 0xe3, 0xfb, 0x1c, 0x89, 0xae, 0x51, 0xa1, 0x3e, 0x50, 0x57, 0x49, + 0xb6, 0xee, 0xd0, 0x95, 0xf9, 0x9d, 0x94, 0x10, 0x77, 0x4c, 0x89, 0x25, 0x53, 0xa2, 0xf4, 0xa1, + 0x5c, 0xae, 0xd6, 0xca, 0xe5, 0x9d, 0xda, 0x5e, 0x6d, 0x67, 0xbf, 0x52, 0x29, 0x55, 0x91, 0x9e, + 0x6c, 0x15, 0x2e, 0x4b, 0xde, 0x30, 0x9a, 0x79, 0x5f, 0x2d, 0x7a, 0x5c, 0x28, 0x55, 0x14, 0xe6, + 0x20, 0x87, 0x1c, 0xd4, 0x63, 0x1c, 0xe8, 0x00, 0x5a, 0xc0, 0xe9, 0x6b, 0x2d, 0xd2, 0x95, 0xe8, + 0x6b, 0x2d, 0xd4, 0xd3, 0xe9, 0x6b, 0x2d, 0x19, 0x20, 0x7d, 0xad, 0x02, 0x8d, 0x21, 0x80, 0x7d, + 0xad, 0x91, 0xd2, 0x66, 0x6f, 0x17, 0xd0, 0xd2, 0xaa, 0xd1, 0x32, 0xfa, 0x97, 0x2f, 0x5a, 0x46, + 0x6b, 0x39, 0x3e, 0xa6, 0x65, 0x54, 0xf4, 0x72, 0x3f, 0x9b, 0x12, 0xb4, 0x8c, 0x96, 0x4e, 0x89, + 0xf2, 0xee, 0x7e, 0x79, 0xbf, 0x5a, 0xdb, 0xdd, 0xa7, 0x51, 0xb4, 0x06, 0xd6, 0xcc, 0x16, 0x8d, + 0x22, 0xc0, 0xfb, 0x01, 0x61, 0x14, 0x61, 0x0d, 0xf0, 0xb1, 0x8e, 0x88, 0x02, 0x2d, 0xda, 0xb4, + 0x89, 0x16, 0xe9, 0x49, 0xb4, 0x89, 0x16, 0xea, 0xe9, 0xb4, 0x89, 0x96, 0x0c, 0x90, 0x36, 0x51, + 0x81, 0xc6, 0x0d, 0xc8, 0x4b, 0x23, 0x87, 0xb7, 0x65, 0x1f, 0x2e, 0x07, 0xb3, 0xa5, 0x91, 0x1f, + 0xb0, 0xb6, 0xf2, 0x30, 0x32, 0xd2, 0x70, 0x76, 0x91, 0xf7, 0xcf, 0xdb, 0xb7, 0x97, 0x3b, 0xfe, + 0x7e, 0xeb, 0xe7, 0x65, 0xc9, 0xdf, 0x6f, 0x25, 0x97, 0xa5, 0xc9, 0xb7, 0xe4, 0x7a, 0xf7, 0x72, + 0xc7, 0x2f, 0x4f, 0xaf, 0x2b, 0x97, 0x3b, 0x7e, 0xa5, 0xb5, 0xfd, 0xf7, 0xdf, 0xef, 0xb7, 0x7f, + 0xec, 0x3d, 0x2c, 0xfe, 0xc6, 0x20, 0xfd, 0xb0, 0xed, 0x9f, 0x6f, 0x2f, 0x4b, 0xfe, 0x6e, 0x6b, + 0xfa, 0x3f, 0x7b, 0x97, 0x3b, 0xfe, 0x6e, 0x6b, 0x7b, 0xfb, 0x3f, 0x1e, 0x47, 0x00, 0x1c, 0x01, + 0xe4, 0xfa, 0x68, 0xba, 0x15, 0x49, 0x38, 0x32, 0x12, 0x6f, 0x18, 0xf0, 0x6b, 0x70, 0x1c, 0x0b, + 0x70, 0x2c, 0xc0, 0xb1, 0x00, 0xc7, 0x02, 0x1c, 0x0b, 0x70, 0x2c, 0xb0, 0x61, 0x63, 0x81, 0x4e, + 0x18, 0x0e, 0xa4, 0xd0, 0x88, 0xe3, 0x80, 0x12, 0x51, 0x0e, 0x20, 0x02, 0xd7, 0xe7, 0xfd, 0xd5, + 0xb5, 0x0e, 0x8d, 0x30, 0x0a, 0x64, 0xb7, 0x3d, 0x2f, 0xee, 0x7e, 0x95, 0x37, 0x62, 0x98, 0x6e, + 0xf1, 0x18, 0x84, 0x43, 0xa9, 0xbb, 0x13, 0x50, 0xf2, 0xb5, 0x34, 0xdf, 0xc3, 0xe8, 0xda, 0x57, + 0x3a, 0x36, 0x42, 0x77, 0x65, 0xf0, 0xf4, 0x85, 0x38, 0xf7, 0x4a, 0x30, 0x8c, 0x42, 0x13, 0x76, + 0xc3, 0x41, 0x9c, 0x5d, 0x05, 0x9d, 0xab, 0x61, 0x10, 0xa9, 0x4e, 0x20, 0xfa, 0xca, 0x8f, 0x45, + 0x5f, 0xc5, 0xd9, 0x55, 0x30, 0x19, 0xb8, 0x8f, 0xb4, 0xea, 0x8a, 0xd8, 0x04, 0x5a, 0xaa, 0xab, + 0xaf, 0x9d, 0x30, 0x8a, 0xb3, 0xab, 0x40, 0xf4, 0xbe, 0x4d, 0x94, 0x20, 0x1c, 0x19, 0x7f, 0x18, + 0xc6, 0x26, 0x98, 0xe0, 0x6d, 0x9c, 0x7c, 0x4b, 0xb6, 0x94, 0xe4, 0x81, 0xca, 0xf6, 0xbb, 0xcc, + 0x48, 0x5f, 0xeb, 0xf0, 0xbb, 0xf6, 0x85, 0x31, 0x91, 0xea, 0x8c, 0x5b, 0x04, 0xe7, 0x74, 0xe5, + 0x39, 0xb1, 0xf1, 0xa8, 0x65, 0x1e, 0xb5, 0x5c, 0xa4, 0xd1, 0x0e, 0x8f, 0x5a, 0x2e, 0xfa, 0xa8, + 0x86, 0x47, 0x2d, 0x43, 0xa2, 0x17, 0xcc, 0x51, 0xcb, 0x39, 0x91, 0xc2, 0xb3, 0x13, 0xf3, 0x21, + 0x62, 0x99, 0x8a, 0x25, 0x9a, 0x8a, 0xf0, 0xf2, 0x8a, 0x2d, 0xb3, 0xa8, 0x72, 0x0b, 0x2f, 0xbb, + 0xf0, 0xf2, 0x0b, 0x2f, 0xc3, 0x38, 0x5e, 0xcc, 0x16, 0x90, 0xa9, 0x88, 0x22, 0xcf, 0x59, 0x40, + 0x93, 0x83, 0x81, 0x0d, 0x9a, 0xd5, 0x39, 0x53, 0x51, 0x1f, 0x43, 0x04, 0x4b, 0x3d, 0xcc, 0xc9, + 0xdb, 0x70, 0x72, 0x8d, 0x2c, 0xdb, 0xc5, 0x90, 0x6f, 0x74, 0x19, 0x2f, 0x8c, 0x9c, 0x17, 0x46, + 0xd6, 0x0b, 0x23, 0xef, 0x58, 0x32, 0x0f, 0x26, 0xf7, 0x59, 0x2b, 0x9e, 0x23, 0x0a, 0xec, 0x16, + 0xf6, 0x31, 0x61, 0xb9, 0xd1, 0x70, 0x0d, 0x30, 0xb6, 0x5f, 0x8e, 0x0d, 0x4b, 0x4e, 0xff, 0x7a, + 0x84, 0x15, 0x2e, 0xf7, 0x41, 0x4f, 0x4d, 0x2f, 0x79, 0xba, 0x06, 0x0b, 0xbe, 0x49, 0x78, 0x98, + 0xd0, 0x5b, 0x22, 0xf4, 0x12, 0x7a, 0x09, 0xbd, 0x84, 0x5e, 0x42, 0x2f, 0x95, 0x75, 0x7e, 0x2b, + 0xa2, 0x79, 0x5d, 0x59, 0x60, 0x13, 0x46, 0x1b, 0x48, 0xe0, 0x9d, 0x32, 0x66, 0xac, 0xaf, 0x71, + 0xa4, 0xef, 0xb8, 0x7d, 0xc1, 0x1a, 0x41, 0x41, 0x11, 0xe0, 0xa0, 0x58, 0x90, 0x50, 0x14, 0x58, + 0x28, 0x1c, 0x34, 0x14, 0x0e, 0x1e, 0x0a, 0x07, 0x11, 0x98, 0x30, 0x01, 0x0a, 0x15, 0x59, 0xeb, + 0xc2, 0x3a, 0x6a, 0xb9, 0xba, 0x39, 0x52, 0xda, 0x94, 0xaa, 0xc8, 0x35, 0x33, 0x55, 0xf1, 0x2a, + 0x70, 0x88, 0x98, 0x1b, 0xc0, 0x3d, 0xfd, 0xc2, 0xd6, 0x9c, 0x2d, 0xf4, 0x0d, 0xe2, 0x0a, 0x86, + 0x97, 0xb9, 0x70, 0xc1, 0x37, 0x90, 0xcb, 0xc5, 0x5b, 0x80, 0x4d, 0xb3, 0x0a, 0x22, 0x47, 0xb3, + 0x29, 0x26, 0xee, 0x98, 0x62, 0x2b, 0x4e, 0xb1, 0x6a, 0xa5, 0xb2, 0x57, 0x61, 0x9a, 0x6d, 0x16, + 0x8b, 0xe2, 0x47, 0xd7, 0x7a, 0xc3, 0xfb, 0x55, 0xd0, 0x32, 0x0e, 0x3c, 0x13, 0x2e, 0x37, 0xa4, + 0x40, 0x9d, 0x11, 0x57, 0x10, 0x55, 0xa1, 0x2f, 0xf8, 0x9a, 0x9d, 0x91, 0xbe, 0xe0, 0xab, 0x66, + 0x0e, 0x7d, 0xc1, 0x15, 0x07, 0x4c, 0x5f, 0x70, 0x8d, 0x07, 0x62, 0x05, 0xf3, 0x05, 0x3f, 0x14, + 0xc0, 0x16, 0xac, 0xd0, 0x16, 0x5c, 0xf2, 0x8b, 0xb6, 0x20, 0x3d, 0x0b, 0xda, 0x82, 0x1b, 0xa8, + 0x46, 0xb3, 0x29, 0x46, 0x5b, 0x70, 0xe5, 0x29, 0xb6, 0x5b, 0xa1, 0x29, 0xb8, 0x61, 0x20, 0x8a, + 0x1f, 0x1d, 0x4d, 0xc1, 0xc2, 0x16, 0xf1, 0xc4, 0x69, 0xbb, 0x4d, 0xab, 0x4b, 0x11, 0x5c, 0xc1, + 0x24, 0x56, 0xda, 0x82, 0x2f, 0x09, 0x8f, 0xb6, 0xe0, 0x2b, 0xf6, 0x46, 0xda, 0x82, 0xaf, 0x9a, + 0x39, 0xb4, 0x05, 0x57, 0x1c, 0x30, 0x6d, 0xc1, 0x35, 0x1e, 0x88, 0x15, 0xc8, 0x16, 0xec, 0x28, + 0x2d, 0xa2, 0xfb, 0x02, 0xf8, 0x82, 0xfb, 0xc0, 0x21, 0x1e, 0x4b, 0x7d, 0x35, 0x59, 0x98, 0x4b, + 0x63, 0x70, 0x59, 0xd7, 0x82, 0xc6, 0xe0, 0xca, 0x5d, 0x8b, 0x12, 0x3d, 0x8b, 0x0d, 0xd3, 0xa3, + 0xd9, 0x14, 0xa3, 0x31, 0xb8, 0xf2, 0x14, 0xe3, 0x7c, 0xc1, 0x0d, 0x84, 0x51, 0xfc, 0xe8, 0x68, + 0x0d, 0x16, 0xb6, 0x8c, 0x7b, 0xf2, 0xce, 0x48, 0xdd, 0x93, 0x3d, 0x7c, 0x63, 0x30, 0x8b, 0x94, + 0xb6, 0xe0, 0x4b, 0xc2, 0xa3, 0x2d, 0xf8, 0x8a, 0x7d, 0x91, 0xb6, 0xe0, 0xab, 0x66, 0x0e, 0x6d, + 0xc1, 0x15, 0x07, 0x4c, 0x5b, 0x70, 0x8d, 0x87, 0x61, 0x45, 0xb2, 0x05, 0xe1, 0xce, 0xfc, 0x7a, + 0x4e, 0xc6, 0x41, 0xce, 0x00, 0x23, 0xd4, 0xbe, 0xa4, 0x0d, 0xc3, 0xe1, 0x78, 0xe4, 0x29, 0x06, + 0xf8, 0x50, 0x9b, 0x45, 0x4a, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, + 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x65, 0x52, 0xcc, 0xb6, 0xe1, 0x50, 0x44, 0x46, 0x15, 0x81, 0x69, + 0xa7, 0x81, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, + 0xd2, 0x12, 0x69, 0x99, 0x14, 0xb3, 0x6d, 0x68, 0x22, 0xa1, 0x63, 0x65, 0xd4, 0x6d, 0x01, 0xd6, + 0x25, 0xfd, 0x12, 0x2b, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, + 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x11, 0x81, 0xa6, 0xa8, 0x57, 0xd7, 0x3a, 0x34, 0xc2, 0xa8, 0x10, + 0x73, 0x01, 0x94, 0x17, 0x77, 0xbf, 0xca, 0x1b, 0x31, 0x4c, 0x0f, 0xa0, 0x0c, 0xc2, 0xa1, 0xd4, + 0xdd, 0x09, 0x28, 0xfa, 0x5a, 0x9a, 0xef, 0x61, 0x74, 0xed, 0x2b, 0x1d, 0x1b, 0xa1, 0xbb, 0x32, + 0x78, 0xfa, 0x42, 0x9c, 0x7b, 0x25, 0x18, 0x46, 0xa1, 0x09, 0xbb, 0xe1, 0x20, 0xce, 0xae, 0x82, + 0xce, 0xd5, 0x30, 0x88, 0x54, 0x27, 0x10, 0x7d, 0xe5, 0xc7, 0xa2, 0xaf, 0xe2, 0xec, 0x2a, 0x50, + 0xc3, 0xdb, 0xb2, 0x3f, 0xd2, 0xaa, 0x2b, 0x62, 0x13, 0x68, 0xa9, 0xae, 0xbe, 0x76, 0xc2, 0x28, + 0xce, 0xae, 0x02, 0xd1, 0xfb, 0x36, 0x51, 0xaa, 0x70, 0x64, 0xfc, 0x61, 0x18, 0x9b, 0x20, 0x0a, + 0x47, 0x46, 0xc6, 0xc9, 0xb7, 0x60, 0xa4, 0xaf, 0x75, 0xf8, 0x5d, 0xfb, 0xc2, 0x98, 0x48, 0x75, + 0x26, 0x3f, 0xc8, 0xbd, 0x94, 0x1c, 0xa7, 0xc9, 0x43, 0x34, 0x91, 0x23, 0x41, 0x39, 0x54, 0xff, + 0xbf, 0xf2, 0x1e, 0x71, 0x57, 0x5c, 0xef, 0x58, 0xc5, 0xa6, 0x6e, 0x0c, 0xd8, 0x89, 0xff, 0x5f, + 0x94, 0x3e, 0x1c, 0xc8, 0x31, 0x52, 0xc6, 0xde, 0xc7, 0x2d, 0x3d, 0x1a, 0x0c, 0x80, 0x4e, 0x64, + 0xfd, 0x22, 0xee, 0x70, 0x83, 0x6b, 0x44, 0x3d, 0x19, 0xc9, 0xde, 0xa7, 0xfb, 0x34, 0x34, 0x26, + 0x21, 0xbe, 0x5c, 0xae, 0xb9, 0x4c, 0x7a, 0x50, 0xa7, 0x29, 0x47, 0xa3, 0xae, 0xd1, 0xe9, 0x78, + 0xe1, 0x24, 0xb9, 0x75, 0x47, 0xe9, 0x9d, 0x6b, 0x9f, 0xa6, 0xf7, 0xab, 0xfd, 0xe9, 0x6a, 0xd8, + 0x6e, 0xaa, 0x4e, 0xbb, 0xde, 0x57, 0x67, 0xa2, 0xaf, 0xda, 0x47, 0xc3, 0xdb, 0xf2, 0x45, 0x72, + 0x8f, 0xda, 0x27, 0xe9, 0x9d, 0x69, 0xd7, 0x7b, 0xdf, 0x9a, 0xaa, 0xd3, 0x18, 0x99, 0xd3, 0x30, + 0x36, 0xed, 0xe6, 0xf8, 0x7e, 0xb4, 0x2f, 0x92, 0x3f, 0xbe, 0x9e, 0xfd, 0xed, 0x6f, 0x28, 0xc5, + 0xee, 0x23, 0x70, 0x5c, 0x7f, 0xd0, 0xea, 0xce, 0x5a, 0xd5, 0x1b, 0xb7, 0x19, 0xe6, 0xae, 0x5f, + 0xbb, 0xf9, 0x64, 0x47, 0x99, 0x34, 0xc5, 0xe7, 0xc4, 0xbf, 0xdd, 0x1a, 0xf7, 0x5c, 0x5f, 0xb9, + 0x5a, 0x2b, 0x8a, 0xc1, 0xcc, 0x50, 0x8c, 0x0c, 0xc5, 0xc4, 0x18, 0x0c, 0xec, 0x2a, 0x53, 0x40, + 0xb4, 0xa6, 0xb8, 0x1a, 0xe3, 0x10, 0x57, 0x57, 0x8d, 0xa7, 0x6e, 0xb4, 0xd2, 0xbe, 0x52, 0xd9, + 0xfd, 0x44, 0xcb, 0x99, 0xee, 0x3a, 0xc3, 0x8b, 0x98, 0xd9, 0x76, 0x3b, 0xbe, 0xbd, 0xee, 0x67, + 0xb1, 0xeb, 0x79, 0x89, 0xd9, 0x6d, 0xbb, 0xc7, 0x65, 0xcf, 0xf6, 0x92, 0x8f, 0xb7, 0x9c, 0x6a, + 0xd3, 0xa7, 0x75, 0x96, 0x3f, 0x36, 0x9b, 0x4c, 0xb3, 0x6b, 0xf9, 0x83, 0x1d, 0x4e, 0x92, 0xc1, + 0x98, 0xfc, 0xe2, 0x7a, 0x52, 0x0b, 0xcc, 0x64, 0x15, 0x98, 0x49, 0x28, 0x30, 0x93, 0x4b, 0x08, + 0x15, 0x84, 0x8a, 0x14, 0x2a, 0x1c, 0x3c, 0xf7, 0xb5, 0xc8, 0x14, 0x6f, 0xd6, 0xa8, 0x7f, 0xbb, + 0xea, 0xd7, 0x85, 0xea, 0xcf, 0x9e, 0x55, 0x8a, 0x5c, 0xd1, 0x08, 0xd7, 0x4e, 0x3a, 0xae, 0x3e, + 0x39, 0x2c, 0x24, 0x86, 0x37, 0xd3, 0x01, 0x22, 0x7b, 0xb4, 0xf3, 0x78, 0x0c, 0xc8, 0x93, 0x00, + 0x2c, 0x15, 0x03, 0xbb, 0x38, 0x6f, 0x7d, 0x4e, 0xbc, 0x0b, 0x7c, 0x77, 0x8b, 0xed, 0xae, 0x70, + 0xdd, 0x39, 0xa6, 0x3b, 0xc7, 0x73, 0xe7, 0x58, 0xbe, 0x5e, 0x98, 0x72, 0xa0, 0xec, 0x3e, 0x4d, + 0xf2, 0x52, 0x5f, 0xcc, 0x99, 0x9d, 0x93, 0x7e, 0x3e, 0xfd, 0x1c, 0xfa, 0x39, 0xf4, 0x73, 0xe8, + 0xe7, 0xd0, 0xcf, 0x29, 0xb8, 0xa0, 0xcc, 0x0a, 0x8b, 0xbb, 0x7c, 0x9b, 0xd1, 0x17, 0x57, 0xb9, + 0xe6, 0x46, 0x66, 0x9c, 0x8d, 0x3b, 0x90, 0x64, 0x07, 0x4b, 0x7e, 0x50, 0x64, 0x08, 0x4e, 0x8e, + 0xe0, 0x64, 0x09, 0x4e, 0x9e, 0xdc, 0xc8, 0x94, 0x23, 0xb9, 0x72, 0x2e, 0x5b, 0x59, 0x00, 0xd3, + 0xa9, 0x85, 0xce, 0x33, 0xf5, 0x71, 0xbf, 0x35, 0x97, 0x73, 0x1d, 0x9f, 0x4a, 0x9a, 0xe3, 0xdd, + 0x1d, 0x60, 0xb6, 0x99, 0x40, 0xda, 0x4e, 0x02, 0x73, 0xdb, 0x08, 0xb4, 0xed, 0x21, 0x60, 0xb7, + 0x81, 0x80, 0xdd, 0xee, 0x01, 0x76, 0x5b, 0x87, 0xcd, 0x5e, 0x4c, 0x02, 0xb3, 0x1d, 0x43, 0x56, + 0x77, 0x06, 0x52, 0xf4, 0x23, 0xd9, 0x47, 0x28, 0x3a, 0xd3, 0x91, 0x57, 0x0d, 0x20, 0x96, 0xd3, + 0xf4, 0xe1, 0xef, 0xfb, 0xf7, 0xc9, 0x84, 0x81, 0x60, 0x2a, 0xe5, 0x9b, 0xba, 0x62, 0xc5, 0xe1, + 0xf8, 0x6b, 0x88, 0x21, 0xd7, 0x8f, 0x54, 0x07, 0x31, 0xf8, 0x22, 0xd4, 0x11, 0xea, 0x08, 0x75, + 0x84, 0x3a, 0x42, 0x1d, 0xa1, 0x8e, 0x50, 0xf7, 0x42, 0xa8, 0x4b, 0xca, 0x0e, 0x99, 0xce, 0x7a, + 0x53, 0xb8, 0x59, 0x90, 0xf2, 0x6c, 0xc2, 0xb8, 0x58, 0xa0, 0xf2, 0x6c, 0xaa, 0x90, 0xe8, 0x48, + 0x74, 0x24, 0x3a, 0x12, 0x1d, 0x89, 0xce, 0x55, 0xab, 0xb8, 0x7e, 0x92, 0x95, 0x05, 0x32, 0xd9, + 0x72, 0x4e, 0xe9, 0x9e, 0xc4, 0xd9, 0xfc, 0xfa, 0x71, 0x1e, 0xf8, 0x63, 0x6c, 0x28, 0xfb, 0xf4, + 0x41, 0x6d, 0xb3, 0x0e, 0xb7, 0xad, 0x3a, 0xe2, 0x36, 0xea, 0xd8, 0xdb, 0xa6, 0xa3, 0x6e, 0x93, + 0x0e, 0xbf, 0x2d, 0x3a, 0xfc, 0x36, 0xe8, 0xf0, 0xdb, 0x9e, 0x73, 0x07, 0x56, 0x48, 0x8b, 0x05, + 0xd8, 0x6a, 0x41, 0xb4, 0x5c, 0xe6, 0x59, 0x2f, 0xff, 0xe3, 0xbf, 0x09, 0x52, 0xc4, 0xd2, 0xc4, + 0xd9, 0x55, 0x6a, 0xd4, 0x24, 0x98, 0xc1, 0xfd, 0x18, 0x51, 0x92, 0xd2, 0xeb, 0x86, 0x37, 0x37, + 0x23, 0xad, 0xcc, 0x3d, 0x2a, 0x9d, 0x3e, 0x0d, 0x90, 0x88, 0x4a, 0x44, 0x25, 0xa2, 0x12, 0x51, + 0x89, 0xa8, 0x44, 0x54, 0x22, 0x2a, 0x11, 0xf5, 0xa5, 0x88, 0x3a, 0xe5, 0x0a, 0x25, 0xe3, 0xec, + 0xfa, 0x9e, 0x94, 0x8a, 0x49, 0xa9, 0xf2, 0xce, 0xf8, 0xf0, 0xa4, 0x3a, 0x2f, 0x48, 0xd2, 0x2a, + 0x69, 0x95, 0xb4, 0x4a, 0x5a, 0x25, 0xad, 0x92, 0x56, 0x49, 0xab, 0xa4, 0xd5, 0x97, 0xd2, 0xea, + 0xaf, 0x6c, 0x31, 0x26, 0xd6, 0x19, 0xd6, 0x20, 0xb5, 0x62, 0x52, 0xab, 0xd2, 0xb7, 0x62, 0xa0, + 0x7a, 0x7e, 0x24, 0x45, 0x0c, 0x74, 0xda, 0x55, 0x96, 0xa1, 0x4f, 0xe2, 0x23, 0xab, 0x92, 0x55, + 0xc9, 0xaa, 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x75, 0xc3, 0x58, 0x55, 0xf5, 0xa4, 0x36, 0xca, 0xdc, + 0x83, 0xf2, 0x6a, 0x05, 0x28, 0xa6, 0xa3, 0xf4, 0x56, 0x7d, 0x12, 0x31, 0x60, 0x49, 0x9d, 0x36, + 0xe8, 0xd1, 0xc9, 0x5f, 0xf5, 0xe3, 0xa3, 0x83, 0x76, 0xb3, 0x71, 0x71, 0x7e, 0xd8, 0x6e, 0x1e, + 0xd6, 0xcf, 0x1a, 0x27, 0x68, 0xd5, 0xf5, 0x2f, 0x31, 0x18, 0x4d, 0x76, 0x7f, 0xbc, 0x84, 0x3b, + 0x33, 0xfc, 0x07, 0xe4, 0xc1, 0xf8, 0xb9, 0xd6, 0xad, 0x9f, 0xb5, 0x8f, 0x1b, 0x8d, 0x53, 0x0f, + 0xef, 0xc0, 0xfc, 0x77, 0x6c, 0xd2, 0x97, 0x35, 0xe9, 0x1f, 0x8d, 0x93, 0xcf, 0x87, 0x07, 0x6c, + 0xd1, 0xf5, 0x69, 0xd1, 0x46, 0xf3, 0xe8, 0xcf, 0xa3, 0x93, 0xfa, 0x79, 0xa3, 0xc9, 0x56, 0x5d, + 0xa3, 0x3c, 0x3d, 0xbe, 0x38, 0x3b, 0x3f, 0x6c, 0xa2, 0xd6, 0x5f, 0xa8, 0x88, 0x5a, 0x1c, 0x8f, + 0x80, 0x45, 0x81, 0xe0, 0x0e, 0x0e, 0x44, 0x6c, 0xfc, 0x9b, 0xb0, 0xa7, 0xfa, 0x4a, 0xf6, 0xf0, + 0xcc, 0xc1, 0xd9, 0xf0, 0xe8, 0x0d, 0xce, 0x0b, 0x87, 0xde, 0xe0, 0x02, 0x1d, 0x8a, 0xde, 0xe0, + 0x42, 0x3d, 0x9d, 0xde, 0xe0, 0x92, 0x01, 0xd2, 0x1b, 0x2c, 0x10, 0x01, 0x03, 0x7b, 0x83, 0x46, + 0xdd, 0x48, 0xa3, 0xba, 0xd7, 0x71, 0xb5, 0x0c, 0xe8, 0x0d, 0x7e, 0x00, 0x0a, 0xe9, 0x42, 0xab, + 0xc9, 0xc9, 0xf3, 0x9e, 0x16, 0x3a, 0x8c, 0x65, 0x37, 0xd4, 0xbd, 0x18, 0xe9, 0x96, 0x35, 0x85, + 0xbe, 0x92, 0x70, 0x7e, 0x1b, 0xde, 0x80, 0xcf, 0xfb, 0xa2, 0x34, 0x9c, 0x22, 0x82, 0x32, 0x60, + 0x2e, 0xbc, 0x89, 0xab, 0x0b, 0x1c, 0xdf, 0xe7, 0x48, 0x74, 0x8d, 0x0a, 0xf5, 0x81, 0xba, 0x4a, + 0xb2, 0x75, 0x87, 0xae, 0xcc, 0xef, 0xa4, 0x84, 0xb8, 0x63, 0x4a, 0x2c, 0x99, 0x12, 0xa5, 0x0f, + 0xe5, 0x72, 0xb5, 0x56, 0x2e, 0xef, 0xd4, 0xf6, 0x6a, 0x3b, 0xfb, 0x95, 0x4a, 0xa9, 0x8a, 0xf4, + 0x64, 0xab, 0x70, 0x59, 0xf2, 0x86, 0xd1, 0xcc, 0xfb, 0x6a, 0xd1, 0xe3, 0x42, 0xa9, 0xa2, 0x30, + 0x07, 0x39, 0xe4, 0xa0, 0x1e, 0xe3, 0x40, 0x07, 0xd0, 0x02, 0x4e, 0x5f, 0x6b, 0x91, 0xae, 0x44, + 0x5f, 0x6b, 0xa1, 0x9e, 0x4e, 0x5f, 0x6b, 0xc9, 0x00, 0xe9, 0x6b, 0x15, 0x68, 0x0c, 0x01, 0xec, + 0x6b, 0x8d, 0x94, 0x36, 0x7b, 0xbb, 0x80, 0x96, 0x56, 0x8d, 0x96, 0xd1, 0xbf, 0x7c, 0xd1, 0x32, + 0x5a, 0xcb, 0xf1, 0x31, 0x2d, 0xa3, 0xa2, 0x97, 0xfb, 0xd9, 0x94, 0xa0, 0x65, 0xb4, 0x74, 0x4a, + 0x94, 0x77, 0xf7, 0xcb, 0xfb, 0xd5, 0xda, 0xee, 0x3e, 0x8d, 0xa2, 0x35, 0xb0, 0x66, 0xb6, 0x68, + 0x14, 0x01, 0xde, 0x0f, 0x08, 0xa3, 0x08, 0x6b, 0x80, 0x8f, 0x75, 0x44, 0x14, 0x68, 0xd1, 0xa6, + 0x4d, 0xb4, 0x48, 0x4f, 0xa2, 0x4d, 0xb4, 0x50, 0x4f, 0xa7, 0x4d, 0xb4, 0x64, 0x80, 0xb4, 0x89, + 0x0a, 0x34, 0x6e, 0x40, 0x5e, 0x1a, 0x39, 0xbc, 0x2d, 0xfb, 0x70, 0x39, 0x98, 0x2d, 0x8d, 0xfc, + 0x80, 0xb5, 0x95, 0x87, 0x91, 0x91, 0x86, 0xb3, 0x8b, 0xbc, 0x7f, 0xde, 0xbe, 0xbd, 0xdc, 0xf1, + 0xf7, 0x5b, 0x3f, 0x2f, 0x4b, 0xfe, 0x7e, 0x2b, 0xb9, 0x2c, 0x4d, 0xbe, 0x25, 0xd7, 0xbb, 0x97, + 0x3b, 0x7e, 0x79, 0x7a, 0x5d, 0xb9, 0xdc, 0xf1, 0x2b, 0xad, 0xed, 0xbf, 0xff, 0x7e, 0xbf, 0xfd, + 0x63, 0xef, 0x61, 0xf1, 0x37, 0x06, 0xe9, 0x87, 0x6d, 0xff, 0x7c, 0x7b, 0x59, 0xf2, 0x77, 0x5b, + 0xd3, 0xff, 0xd9, 0xbb, 0xdc, 0xf1, 0x77, 0x5b, 0xdb, 0xdb, 0xff, 0xf1, 0x38, 0x02, 0xe0, 0x08, + 0x20, 0xd7, 0x47, 0xd3, 0xad, 0x48, 0xc2, 0x91, 0x91, 0x78, 0xc3, 0x80, 0x5f, 0x83, 0xe3, 0x58, + 0x80, 0x63, 0x01, 0x8e, 0x05, 0x38, 0x16, 0xe0, 0x58, 0x80, 0x63, 0x81, 0x0d, 0x1b, 0x0b, 0x74, + 0xc2, 0x70, 0x20, 0x85, 0x46, 0x1c, 0x07, 0x94, 0x88, 0x72, 0x00, 0x11, 0xb8, 0x3e, 0xef, 0xaf, + 0xae, 0x75, 0x68, 0x84, 0x51, 0x20, 0xbb, 0xed, 0x79, 0x71, 0xf7, 0xab, 0xbc, 0x11, 0xc3, 0x74, + 0x8b, 0xc7, 0x20, 0x1c, 0x4a, 0xdd, 0x9d, 0x80, 0x92, 0xaf, 0xa5, 0xf9, 0x1e, 0x46, 0xd7, 0xbe, + 0xd2, 0xb1, 0x11, 0xba, 0x2b, 0x83, 0xa7, 0x2f, 0xc4, 0xb9, 0x57, 0x82, 0x61, 0x14, 0x9a, 0xb0, + 0x1b, 0x0e, 0xe2, 0xec, 0x2a, 0xe8, 0x5c, 0x0d, 0x83, 0x48, 0x75, 0x02, 0xd1, 0x57, 0x7e, 0x2c, + 0xfa, 0x2a, 0xce, 0xae, 0x82, 0xc9, 0xc0, 0x7d, 0xa4, 0x55, 0x57, 0xc4, 0x26, 0xd0, 0x52, 0x5d, + 0x7d, 0xed, 0x84, 0x51, 0x9c, 0x5d, 0x05, 0xa2, 0xf7, 0x6d, 0xa2, 0x04, 0xe1, 0xc8, 0x8c, 0xc7, + 0xf7, 0xc1, 0x84, 0x6e, 0xe3, 0xe4, 0x5b, 0xb2, 0xa3, 0x24, 0xcf, 0x53, 0xb6, 0xdf, 0x63, 0x46, + 0xfa, 0x5a, 0x87, 0xdf, 0xb5, 0x2f, 0x8c, 0x89, 0x54, 0x67, 0xdc, 0x22, 0x38, 0x87, 0x2b, 0xcf, + 0x89, 0x8d, 0x27, 0x2d, 0xf3, 0xa4, 0xe5, 0x22, 0x0d, 0x76, 0x78, 0xd2, 0x72, 0xd1, 0x07, 0x35, + 0x3c, 0x69, 0x19, 0x92, 0xbc, 0x60, 0x4e, 0x5a, 0xce, 0x89, 0x14, 0x9e, 0x9b, 0x98, 0x0f, 0x11, + 0xcb, 0x53, 0x2c, 0xd1, 0x53, 0x84, 0x97, 0x57, 0x6c, 0x99, 0x45, 0x95, 0x5b, 0x78, 0xd9, 0x85, + 0x97, 0x5f, 0x78, 0x19, 0xc6, 0xb1, 0x62, 0xb6, 0x80, 0x3c, 0x45, 0x14, 0x79, 0xce, 0x02, 0x9a, + 0x9c, 0x0b, 0x6c, 0xd0, 0x9c, 0xce, 0x99, 0x8a, 0xfa, 0x18, 0x22, 0x58, 0xea, 0x61, 0xce, 0xdd, + 0x86, 0x93, 0x6b, 0x64, 0xd9, 0x2e, 0x86, 0x7c, 0xa3, 0xcb, 0x78, 0x61, 0xe4, 0xbc, 0x30, 0xb2, + 0x5e, 0x18, 0x79, 0xc7, 0x92, 0x79, 0x30, 0xb9, 0xcf, 0x5a, 0xf1, 0x1c, 0x51, 0x60, 0xb7, 0xb0, + 0x4f, 0x09, 0xcb, 0x8d, 0x86, 0x6b, 0x80, 0xb1, 0xfd, 0x72, 0x6a, 0x58, 0x72, 0xf8, 0xd7, 0x23, + 0xac, 0x70, 0xb5, 0x0f, 0x7a, 0x6a, 0x7a, 0xc9, 0xd3, 0x35, 0x58, 0xf0, 0x4d, 0xc2, 0xc3, 0x84, + 0xde, 0x12, 0xa1, 0x97, 0xd0, 0x4b, 0xe8, 0x25, 0xf4, 0x12, 0x7a, 0xa9, 0xac, 0xf3, 0x5b, 0x11, + 0xcd, 0xeb, 0xca, 0x02, 0x9b, 0x30, 0xda, 0x40, 0x02, 0x6f, 0x94, 0x31, 0x63, 0x7d, 0x8d, 0x23, + 0x7d, 0xc7, 0xdd, 0x0b, 0xd6, 0x08, 0x0a, 0x8a, 0x00, 0x07, 0xc5, 0x82, 0x84, 0xa2, 0xc0, 0x42, + 0xe1, 0xa0, 0xa1, 0x70, 0xf0, 0x50, 0x38, 0x88, 0xc0, 0x84, 0x09, 0x50, 0xa8, 0xc8, 0x5a, 0x17, + 0xd6, 0x51, 0xcb, 0xd5, 0xcd, 0x91, 0xd2, 0xa6, 0x54, 0x45, 0xae, 0x99, 0xa9, 0x8a, 0x57, 0x81, + 0x43, 0xc4, 0xdc, 0xff, 0xed, 0xe9, 0x17, 0xb6, 0xe6, 0x6c, 0xa1, 0xef, 0x0f, 0x57, 0x30, 0xbc, + 0xcc, 0x85, 0x0b, 0xbe, 0x7f, 0x5c, 0x2e, 0xde, 0x02, 0xec, 0x99, 0x55, 0x10, 0x39, 0x9a, 0x4d, + 0x31, 0x71, 0xc7, 0x14, 0x5b, 0x71, 0x8a, 0x55, 0x2b, 0x95, 0xbd, 0x0a, 0xd3, 0x6c, 0xb3, 0x58, + 0x14, 0x3f, 0xba, 0xd6, 0x1b, 0xde, 0xaf, 0x82, 0x96, 0x71, 0xe0, 0x99, 0x70, 0xb9, 0x21, 0x05, + 0xea, 0x8c, 0xb8, 0x82, 0xa8, 0x0a, 0x7d, 0xc1, 0xd7, 0xec, 0x8c, 0xf4, 0x05, 0x5f, 0x35, 0x73, + 0xe8, 0x0b, 0xae, 0x38, 0x60, 0xfa, 0x82, 0x6b, 0x3c, 0x10, 0x2b, 0x98, 0x2f, 0xf8, 0xa1, 0x00, + 0xb6, 0x60, 0x85, 0xb6, 0xe0, 0x92, 0x5f, 0xb4, 0x05, 0xe9, 0x59, 0xd0, 0x16, 0xdc, 0x40, 0x35, + 0x9a, 0x4d, 0x31, 0xda, 0x82, 0x2b, 0x4f, 0xb1, 0xdd, 0x0a, 0x4d, 0xc1, 0x0d, 0x03, 0x51, 0xfc, + 0xe8, 0x68, 0x0a, 0x16, 0xb6, 0x88, 0x27, 0x4e, 0xdb, 0x6d, 0x5a, 0x5d, 0x8a, 0xe0, 0x0a, 0x26, + 0xb1, 0xd2, 0x16, 0x7c, 0x49, 0x78, 0xb4, 0x05, 0x5f, 0xb1, 0x37, 0xd2, 0x16, 0x7c, 0xd5, 0xcc, + 0xa1, 0x2d, 0xb8, 0xe2, 0x80, 0x69, 0x0b, 0xae, 0xf1, 0x40, 0xac, 0x40, 0xb6, 0x60, 0x47, 0x69, + 0x11, 0xdd, 0x17, 0xc0, 0x17, 0xdc, 0x07, 0x0e, 0xf1, 0x58, 0xea, 0xab, 0xc9, 0xc2, 0x5c, 0x1a, + 0x83, 0xcb, 0xba, 0x16, 0x34, 0x06, 0x57, 0xee, 0x5a, 0x94, 0xe8, 0x59, 0x6c, 0x98, 0x1e, 0xcd, + 0xa6, 0x18, 0x8d, 0xc1, 0x95, 0xa7, 0x18, 0xe7, 0x0b, 0x6e, 0x20, 0x8c, 0xe2, 0x47, 0x47, 0x6b, + 0xb0, 0xb0, 0x65, 0xdc, 0x93, 0x77, 0x46, 0xea, 0x9e, 0xec, 0xe1, 0x1b, 0x83, 0x59, 0xa4, 0xb4, + 0x05, 0x5f, 0x12, 0x1e, 0x6d, 0xc1, 0x57, 0xec, 0x8b, 0xb4, 0x05, 0x5f, 0x35, 0x73, 0x68, 0x0b, + 0xae, 0x38, 0x60, 0xda, 0x82, 0x6b, 0x3c, 0x0c, 0x2b, 0x92, 0x2d, 0x08, 0x77, 0xe4, 0xd7, 0x73, + 0x32, 0x0e, 0x72, 0x04, 0x18, 0xa1, 0xf6, 0x25, 0x6d, 0x18, 0x0e, 0xc7, 0x23, 0x4f, 0x31, 0xc0, + 0x87, 0xda, 0x2c, 0x52, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, 0x25, 0xd4, 0x12, 0x6a, 0x09, + 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0x93, 0x62, 0xb6, 0x0d, 0x87, 0x22, 0x32, 0xaa, 0x08, 0x4c, 0x3b, + 0x0d, 0x94, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, 0x44, 0x5a, 0x22, 0x2d, 0x91, + 0x96, 0x48, 0xcb, 0xa4, 0x98, 0x6d, 0x43, 0x13, 0x09, 0x1d, 0x2b, 0xa3, 0x6e, 0x0b, 0xb0, 0x2e, + 0xe9, 0x97, 0x58, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, 0x60, 0x4b, 0xb0, 0x25, 0xd8, + 0x12, 0x6c, 0x09, 0xb6, 0x8c, 0x08, 0x34, 0x45, 0xbd, 0xba, 0xd6, 0xa1, 0x11, 0x46, 0x85, 0x98, + 0x0b, 0xa0, 0xbc, 0xb8, 0xfb, 0x55, 0xde, 0x88, 0x61, 0x7a, 0x00, 0x65, 0x10, 0x0e, 0xa5, 0xee, + 0x4e, 0x40, 0xd1, 0xd7, 0xd2, 0x7c, 0x0f, 0xa3, 0x6b, 0x5f, 0xe9, 0xd8, 0x08, 0xdd, 0x95, 0xc1, + 0xd3, 0x17, 0xe2, 0xdc, 0x2b, 0xc1, 0x30, 0x0a, 0x4d, 0xd8, 0x0d, 0x07, 0x71, 0x76, 0x15, 0x74, + 0xae, 0x86, 0x41, 0xa4, 0x3a, 0x81, 0xe8, 0x2b, 0x3f, 0x16, 0x7d, 0x15, 0x67, 0x57, 0x81, 0x1a, + 0xde, 0x96, 0xfd, 0x91, 0x56, 0x5d, 0x11, 0x9b, 0x40, 0x4b, 0x75, 0xf5, 0xb5, 0x13, 0x46, 0x71, + 0x76, 0x15, 0x88, 0xde, 0xb7, 0x89, 0x52, 0x85, 0x23, 0xe3, 0x0f, 0x23, 0x19, 0x44, 0xe1, 0xc8, + 0xc8, 0x38, 0xf9, 0x16, 0x8c, 0xf4, 0xb5, 0x0e, 0xbf, 0x6b, 0x5f, 0x18, 0x13, 0xa9, 0xce, 0xe4, + 0x07, 0xb9, 0x97, 0x92, 0xd3, 0x34, 0x79, 0x86, 0x26, 0x72, 0x24, 0x28, 0x67, 0xea, 0xff, 0x57, + 0xde, 0x23, 0x6e, 0x8a, 0xeb, 0x1d, 0xab, 0xd8, 0xd4, 0x8d, 0x01, 0x3b, 0xf0, 0xff, 0x8b, 0xd2, + 0x87, 0x03, 0x39, 0x26, 0xca, 0xd8, 0xfb, 0xb8, 0xa5, 0x47, 0x83, 0x01, 0xd0, 0x81, 0xac, 0x5f, + 0xc4, 0x1d, 0x6e, 0x70, 0x8d, 0xa8, 0x27, 0x23, 0xd9, 0xfb, 0x74, 0x9f, 0x86, 0xc6, 0x24, 0xc4, + 0x57, 0xcb, 0xf5, 0x56, 0x49, 0x0f, 0xea, 0x2c, 0xe5, 0x68, 0xd4, 0x35, 0x3a, 0x1d, 0x2d, 0x9c, + 0x24, 0x77, 0xee, 0x28, 0xbd, 0x71, 0xed, 0xd3, 0xf4, 0x76, 0xb5, 0x3f, 0x5d, 0x0d, 0xdb, 0x4d, + 0xd5, 0x69, 0xd7, 0xfb, 0xea, 0x4c, 0xf4, 0x55, 0xfb, 0x68, 0x78, 0x5b, 0xbe, 0x48, 0x6e, 0x51, + 0xfb, 0x24, 0xbd, 0x31, 0xed, 0x7a, 0xef, 0x5b, 0x53, 0x75, 0x1a, 0x23, 0x73, 0x1a, 0xc9, 0x76, + 0x73, 0x7c, 0x3b, 0xda, 0x17, 0xc9, 0xdf, 0x5e, 0xcf, 0xfe, 0xf4, 0x37, 0x14, 0x62, 0xf7, 0x11, + 0x38, 0xae, 0x3e, 0x68, 0x55, 0x67, 0x9d, 0xaa, 0x8d, 0xdb, 0x04, 0x73, 0xd7, 0xad, 0xdd, 0x7c, + 0xb2, 0xa3, 0x44, 0x9a, 0xb2, 0x73, 0xe2, 0xdd, 0x6e, 0x8d, 0x3b, 0xae, 0xaf, 0x5c, 0xad, 0x13, + 0xc5, 0x00, 0x66, 0x28, 0x40, 0x86, 0x02, 0x62, 0x0c, 0x00, 0x76, 0x95, 0x29, 0x20, 0x52, 0x53, + 0x58, 0x89, 0x71, 0xc8, 0xaa, 0x2b, 0x66, 0x53, 0x37, 0x4a, 0x69, 0x5f, 0xa7, 0xec, 0x7e, 0xa2, + 0xe5, 0x3c, 0x77, 0x9d, 0xdf, 0x05, 0xcc, 0x6b, 0xbb, 0xfd, 0xde, 0x5e, 0xef, 0xb3, 0xd8, 0xf3, + 0xbc, 0xc4, 0xe6, 0xb6, 0xdd, 0xe1, 0xb2, 0x87, 0x7a, 0xc9, 0xc7, 0x5b, 0xce, 0xb4, 0xe9, 0x63, + 0x3a, 0xcb, 0x1f, 0x9b, 0xcd, 0xa2, 0xd9, 0xb5, 0xfc, 0xc1, 0x0e, 0x67, 0xc7, 0x60, 0xcc, 0x7a, + 0x71, 0x3d, 0x9b, 0x05, 0x66, 0x96, 0x0a, 0xcc, 0xec, 0x13, 0x98, 0x59, 0x25, 0x64, 0x0a, 0x32, + 0x45, 0xc2, 0x14, 0x0e, 0x1e, 0xf8, 0x5a, 0x44, 0x8a, 0x37, 0x6b, 0xd4, 0xbd, 0x5d, 0x75, 0xeb, + 0x22, 0x75, 0x67, 0xcf, 0x2a, 0x43, 0xae, 0x66, 0x74, 0x6b, 0x27, 0x19, 0x57, 0x9f, 0x1a, 0x16, + 0xd2, 0xc2, 0x9b, 0xf6, 0x03, 0x5f, 0xf4, 0x7a, 0x91, 0x8c, 0x63, 0x6b, 0x89, 0x91, 0x11, 0x5e, + 0x2e, 0x02, 0x4b, 0xc5, 0xc0, 0xee, 0xdc, 0x79, 0xeb, 0x73, 0xe1, 0x5d, 0xd0, 0xbb, 0x5b, 0x6a, + 0x77, 0x45, 0xeb, 0xce, 0x29, 0xdd, 0x39, 0x9d, 0x3b, 0xa7, 0xf2, 0xf5, 0xc2, 0x14, 0xeb, 0x73, + 0xab, 0xb3, 0xbc, 0x1d, 0x48, 0xd1, 0x8f, 0x64, 0xdf, 0x66, 0xd2, 0x4e, 0x4d, 0x95, 0x9a, 0xc5, + 0xcf, 0x3c, 0x4d, 0x49, 0xec, 0xfd, 0xfb, 0x84, 0xde, 0x83, 0x9c, 0x06, 0x91, 0x20, 0x40, 0x9d, + 0x40, 0x27, 0x0e, 0xa0, 0x65, 0xe7, 0x8f, 0xac, 0x40, 0x56, 0x20, 0x2b, 0x90, 0x15, 0x7e, 0xe7, + 0x6e, 0x1e, 0x28, 0xbb, 0xb3, 0x4e, 0xdc, 0x0d, 0x18, 0x51, 0x06, 0x8e, 0x8e, 0x06, 0x90, 0xce, + 0xc4, 0xc1, 0xa5, 0x48, 0x60, 0x88, 0x85, 0x6b, 0xd1, 0x80, 0x11, 0x0f, 0x18, 0x11, 0x81, 0x11, + 0x13, 0xbb, 0xa2, 0x62, 0x59, 0x5c, 0xdc, 0x0d, 0x48, 0x73, 0x79, 0xaf, 0x86, 0x8e, 0xaa, 0xfc, + 0x0c, 0xfe, 0x3b, 0x38, 0x39, 0x70, 0x7a, 0xef, 0xdd, 0x9c, 0x07, 0xe8, 0x70, 0xba, 0xe0, 0x63, + 0xcb, 0xdf, 0x96, 0x1d, 0xb6, 0x7d, 0xae, 0x0f, 0x7c, 0x70, 0x18, 0xc3, 0xa9, 0x30, 0x46, 0x46, + 0xda, 0xf9, 0xf1, 0x90, 0xde, 0x3f, 0x6f, 0xdf, 0x5e, 0xee, 0xf8, 0xfb, 0xad, 0x9f, 0x97, 0x25, + 0x7f, 0xbf, 0x95, 0x5c, 0x96, 0x26, 0xdf, 0x92, 0xeb, 0xdd, 0xcb, 0x1d, 0xbf, 0x3c, 0xbd, 0xae, + 0x5c, 0xee, 0xf8, 0x95, 0xd6, 0xf6, 0xdf, 0x7f, 0xbf, 0xdf, 0xfe, 0xb1, 0xf7, 0xb0, 0xf8, 0x1b, + 0xff, 0xe3, 0x6e, 0x46, 0x7f, 0x6b, 0x93, 0x66, 0x0a, 0x63, 0x24, 0x7b, 0x95, 0xc9, 0x8e, 0x99, + 0xec, 0xc2, 0xef, 0xd7, 0xfd, 0xcf, 0xad, 0x1f, 0xa5, 0x77, 0xe5, 0x87, 0x8f, 0xdb, 0x3f, 0x6a, + 0x0f, 0x4f, 0x5f, 0xfc, 0x39, 0xef, 0xd7, 0x4a, 0xef, 0x6a, 0x0f, 0x1f, 0x9f, 0xf9, 0x49, 0xf5, + 0xe1, 0xe3, 0x6f, 0xfe, 0x1b, 0x95, 0x87, 0xb7, 0xb9, 0x5f, 0x1d, 0xbf, 0xbe, 0xfb, 0xdc, 0x1b, + 0xca, 0xcf, 0xbc, 0x61, 0xef, 0xb9, 0x37, 0xec, 0x3d, 0xf3, 0x86, 0x67, 0x43, 0xda, 0x7d, 0xe6, + 0x0d, 0x95, 0x87, 0x9f, 0xb9, 0xdf, 0x7f, 0x3b, 0xff, 0x57, 0xab, 0x0f, 0xdb, 0x3f, 0x9f, 0xfb, + 0x59, 0xed, 0xe1, 0xe7, 0xc7, 0xed, 0x0d, 0x2c, 0x7d, 0x6f, 0xd6, 0xfb, 0xef, 0xe4, 0xcc, 0x9d, + 0x17, 0x8e, 0xf3, 0x38, 0x73, 0x27, 0x37, 0x73, 0xc7, 0xe2, 0xc4, 0x33, 0x0b, 0x4f, 0xaa, 0xde, + 0x14, 0xb8, 0x9b, 0x4e, 0x57, 0x23, 0x5a, 0x76, 0x24, 0xed, 0xae, 0x3b, 0x74, 0xb2, 0xbe, 0xd0, + 0xc9, 0x3a, 0x42, 0xbb, 0xeb, 0x05, 0x57, 0xdd, 0x37, 0x2d, 0x97, 0x4e, 0xe4, 0x92, 0xe9, 0x59, + 0x79, 0x1c, 0xfe, 0x6a, 0x93, 0x1a, 0x57, 0x5b, 0xdb, 0x57, 0x57, 0x71, 0x57, 0xf3, 0x2f, 0xaf, + 0x28, 0x4f, 0x6c, 0xe5, 0x07, 0x60, 0x5e, 0xac, 0xa6, 0x7f, 0xbd, 0x7e, 0xeb, 0xbf, 0xee, 0xbf, + 0xf8, 0xca, 0xfd, 0x68, 0xd5, 0xfd, 0x07, 0xa6, 0xdf, 0xac, 0xa0, 0x78, 0xbe, 0x42, 0xb1, 0x7c, + 0xdd, 0x3e, 0xfc, 0x7a, 0x3d, 0xed, 0x15, 0x7b, 0x59, 0xe2, 0x8a, 0xc5, 0x91, 0x91, 0xfe, 0x30, + 0x1c, 0xa8, 0xee, 0xfd, 0xab, 0xf7, 0xb3, 0x59, 0xff, 0xed, 0xd7, 0x4f, 0x7a, 0xe5, 0x5c, 0x59, + 0xcd, 0x3c, 0xaa, 0x95, 0x3d, 0x12, 0x5f, 0xe5, 0x23, 0x6f, 0x3b, 0x8f, 0xb4, 0x57, 0xfd, 0xc8, + 0xda, 0xda, 0x23, 0x69, 0x6b, 0x8f, 0x9c, 0xad, 0x3d, 0x52, 0xc6, 0x56, 0xb5, 0x55, 0xcd, 0x2b, + 0xf2, 0x06, 0xc9, 0x3d, 0x5d, 0x5d, 0x8f, 0xcc, 0xe6, 0x32, 0xa7, 0x1f, 0xb4, 0xa2, 0x6e, 0xb2, + 0xda, 0x29, 0xa1, 0x2b, 0x9f, 0xe5, 0x63, 0x63, 0x36, 0x8f, 0xdd, 0x59, 0x3b, 0xb6, 0x66, 0xe7, + 0x58, 0x9f, 0x85, 0x63, 0x7d, 0xb6, 0x8d, 0xf5, 0x59, 0x35, 0xc5, 0x1a, 0x30, 0xae, 0x7a, 0xca, + 0xa5, 0x97, 0xee, 0x52, 0xb2, 0xf2, 0x8e, 0x3c, 0x4d, 0xcf, 0xf4, 0xf3, 0x56, 0xed, 0x91, 0x5a, + 0x99, 0x43, 0x6f, 0x6d, 0x7a, 0xa4, 0xcd, 0xe9, 0x90, 0x6e, 0xa6, 0x3f, 0xda, 0x9e, 0xee, 0xe8, + 0x6c, 0x7a, 0xa3, 0xb3, 0xe9, 0x8c, 0xce, 0xa6, 0x2f, 0x16, 0xfb, 0x69, 0x8b, 0xad, 0x39, 0xef, + 0x49, 0x61, 0xb4, 0xbf, 0xb4, 0xc9, 0xe6, 0xb6, 0x73, 0x5c, 0xda, 0xb4, 0x2e, 0xe5, 0xda, 0x55, + 0xd9, 0x76, 0x5e, 0xbe, 0x9d, 0x97, 0x71, 0xe7, 0xe5, 0xdc, 0x4e, 0x59, 0xb7, 0x54, 0xde, 0xad, + 0x97, 0xf9, 0xec, 0x03, 0xbb, 0xe1, 0x20, 0x8c, 0xdc, 0xad, 0x67, 0x4a, 0x3e, 0x9e, 0x8b, 0x98, + 0xd6, 0x4d, 0x0e, 0x30, 0x64, 0xc1, 0xb5, 0x3c, 0xc0, 0xc8, 0x04, 0x8c, 0x5c, 0xc0, 0xc8, 0x86, + 0x5d, 0xf9, 0xb0, 0x2c, 0x23, 0xd9, 0x5d, 0x76, 0xbf, 0x88, 0xc9, 0xfe, 0xee, 0x1a, 0x39, 0xca, + 0xaf, 0x39, 0xf8, 0xec, 0xdc, 0x6e, 0x1b, 0x89, 0xd0, 0x71, 0x13, 0xde, 0xa5, 0xef, 0xac, 0xd4, + 0xbd, 0x61, 0xa8, 0x26, 0x85, 0xc3, 0x11, 0xb3, 0x64, 0x11, 0x10, 0x5b, 0x88, 0x2d, 0xc4, 0x16, + 0x62, 0x0b, 0xb1, 0x85, 0xd8, 0xb2, 0xa6, 0xd8, 0x92, 0x69, 0x1d, 0xc9, 0x65, 0xe9, 0x9b, 0x3b, + 0x3d, 0xb0, 0xc9, 0x19, 0xb8, 0xb8, 0x39, 0x31, 0x8a, 0xdc, 0x42, 0x6e, 0x21, 0xb7, 0x90, 0x5b, + 0xc8, 0x2d, 0xe4, 0x16, 0x6b, 0xdc, 0x32, 0x95, 0x3a, 0x62, 0xcb, 0xd2, 0xf7, 0x96, 0xa7, 0x1e, + 0x11, 0x59, 0x88, 0x2c, 0x44, 0x16, 0x22, 0xcb, 0x3a, 0x22, 0x8b, 0xed, 0x09, 0x07, 0xd9, 0x07, + 0x0b, 0x63, 0x22, 0x5f, 0xe9, 0x9e, 0xbc, 0x73, 0x97, 0x74, 0xd3, 0xd2, 0xf3, 0x4b, 0x2c, 0xae, + 0x8e, 0x76, 0x76, 0x32, 0x46, 0x76, 0x2e, 0x3c, 0x08, 0x02, 0x84, 0x25, 0x44, 0x28, 0x82, 0x04, + 0x27, 0x4c, 0x70, 0x02, 0x05, 0x27, 0x54, 0x6e, 0x04, 0xcb, 0x91, 0x70, 0xb9, 0x1f, 0x73, 0x03, + 0x8d, 0xbd, 0x11, 0xc6, 0xe0, 0xf3, 0xc6, 0xe2, 0x73, 0xff, 0x9b, 0x88, 0x6d, 0x2c, 0x4d, 0x9c, + 0x5d, 0xa5, 0x63, 0xf6, 0x44, 0x80, 0x37, 0xe5, 0x7c, 0x6e, 0x07, 0x63, 0x1c, 0x37, 0x73, 0x3d, + 0x73, 0x79, 0xe2, 0x62, 0xce, 0x27, 0x41, 0x8b, 0xa0, 0x45, 0xd0, 0x22, 0x68, 0x11, 0xb4, 0xd6, + 0x00, 0xb4, 0x46, 0x4a, 0x9b, 0xbd, 0x5d, 0x00, 0xce, 0x72, 0x89, 0x59, 0x4d, 0xa1, 0xaf, 0xa4, + 0xf3, 0x8d, 0x92, 0xdd, 0xd6, 0xcc, 0xad, 0x74, 0x8b, 0x46, 0xe7, 0xc5, 0x1b, 0x04, 0x2f, 0x72, + 0xe1, 0xfc, 0x25, 0x06, 0x23, 0x09, 0x14, 0xcf, 0xe7, 0x48, 0x74, 0x8d, 0x0a, 0xf5, 0x81, 0xba, + 0x52, 0x93, 0xcd, 0x2d, 0x77, 0x9c, 0xc7, 0xf5, 0xf0, 0x0e, 0xa0, 0x0b, 0x8b, 0x3b, 0x76, 0xe1, + 0x7f, 0xe9, 0xc2, 0xe5, 0xdd, 0xfd, 0xf2, 0x7e, 0xb5, 0xb6, 0xbb, 0x5f, 0x61, 0x5f, 0xc6, 0x02, + 0x12, 0xf7, 0x9f, 0xde, 0xa2, 0x69, 0xb0, 0x42, 0xd3, 0xe0, 0xe6, 0x66, 0xa4, 0x95, 0xb9, 0x47, + 0x79, 0x58, 0xf3, 0x34, 0x20, 0x1a, 0x09, 0x34, 0x12, 0x68, 0x24, 0xd0, 0x48, 0xa0, 0x91, 0x40, + 0x23, 0x61, 0xc1, 0xba, 0xc1, 0x27, 0x36, 0x5b, 0xbf, 0xf3, 0xc4, 0x66, 0xaa, 0xb8, 0x4a, 0xc6, + 0xd9, 0xf5, 0x3d, 0x1f, 0xda, 0xd8, 0x69, 0x1c, 0x67, 0xeb, 0x5d, 0x73, 0xd9, 0xe2, 0x68, 0xdd, + 0x2b, 0x89, 0x8b, 0xc4, 0x45, 0xe2, 0x22, 0x71, 0x91, 0xb8, 0xd6, 0x80, 0xb8, 0x9c, 0x9e, 0x69, + 0x9c, 0x83, 0xae, 0x7d, 0x87, 0x31, 0x38, 0x3d, 0xe3, 0x78, 0xfa, 0x05, 0xf0, 0xf8, 0x06, 0xec, + 0xcc, 0xe3, 0x5c, 0x1f, 0xf9, 0x00, 0x10, 0x0b, 0xca, 0xb1, 0xa8, 0x59, 0x40, 0x9b, 0x72, 0x16, + 0xf2, 0xf4, 0xab, 0xe5, 0xd6, 0x58, 0x7f, 0xc7, 0x22, 0x01, 0x75, 0x56, 0x32, 0x8b, 0xc4, 0x02, + 0x45, 0x82, 0x67, 0x28, 0x6f, 0xd4, 0x19, 0xca, 0x20, 0x25, 0x93, 0xcf, 0x22, 0xd7, 0xd1, 0x0b, + 0xbb, 0x33, 0x3e, 0xdc, 0xf3, 0xc8, 0x79, 0x41, 0xd1, 0x21, 0xa3, 0x43, 0x46, 0x87, 0x8c, 0x0e, + 0x19, 0x1d, 0x32, 0x3a, 0x64, 0x0b, 0xd6, 0x0d, 0x3e, 0x93, 0xdc, 0xfa, 0x9d, 0x67, 0x92, 0xbf, + 0xaa, 0xae, 0x92, 0xf1, 0xcc, 0xff, 0xf3, 0xd9, 0xa4, 0xa5, 0x46, 0x52, 0xfa, 0x56, 0x0c, 0x54, + 0xcf, 0x8f, 0xa4, 0x88, 0x43, 0xed, 0x1e, 0xc5, 0x9e, 0xc4, 0x43, 0x0a, 0x23, 0x85, 0x91, 0xc2, + 0x48, 0x61, 0xa4, 0x30, 0x52, 0xd8, 0xa2, 0x4a, 0xd2, 0x93, 0xda, 0x28, 0x73, 0x0f, 0x42, 0x62, + 0x0e, 0xd7, 0x3c, 0x78, 0x47, 0xe9, 0xad, 0xf8, 0x24, 0x62, 0x80, 0x12, 0x36, 0x6d, 0xa0, 0xa3, + 0x93, 0xbf, 0xea, 0xc7, 0x47, 0x07, 0xed, 0x66, 0xe3, 0xe2, 0xfc, 0xb0, 0xdd, 0x3c, 0xac, 0x9f, + 0x35, 0x4e, 0x5c, 0x57, 0xb3, 0xc9, 0x52, 0x95, 0x18, 0xc2, 0x80, 0x07, 0x59, 0x4b, 0xf4, 0xb4, + 0xb5, 0xea, 0x67, 0xed, 0xe3, 0x46, 0xe3, 0xd4, 0xe3, 0xaa, 0x2f, 0xd8, 0x26, 0xfa, 0xa3, 0x71, + 0xf2, 0xf9, 0xf0, 0x80, 0x2d, 0x84, 0xdb, 0x42, 0x8d, 0xe6, 0xd1, 0x9f, 0x47, 0x27, 0xf5, 0xf3, + 0x46, 0x93, 0xad, 0x04, 0x9c, 0x47, 0xc7, 0x17, 0x67, 0xe7, 0x87, 0x4d, 0x94, 0x7a, 0xe7, 0x34, + 0x82, 0xd6, 0xa6, 0xf1, 0xf3, 0x46, 0xb8, 0x3f, 0x03, 0x11, 0x1b, 0xff, 0x26, 0xec, 0xa9, 0xbe, + 0x92, 0x3d, 0xf7, 0xe6, 0xcf, 0x6c, 0x38, 0xf4, 0x7e, 0xe8, 0xfd, 0xd0, 0xfb, 0xa1, 0xf7, 0x43, + 0xef, 0x87, 0xde, 0xcf, 0x82, 0x75, 0xc3, 0xa8, 0x1b, 0x69, 0x54, 0xf7, 0x3a, 0xae, 0x96, 0x01, + 0xbc, 0x1f, 0x87, 0x53, 0x0b, 0xbd, 0x0b, 0x9d, 0xec, 0x6c, 0xe1, 0x69, 0xa1, 0xc3, 0x58, 0x76, + 0x43, 0xdd, 0x73, 0x3a, 0x6f, 0x9f, 0x7b, 0x1e, 0xa5, 0x37, 0x82, 0x7b, 0x1e, 0x3d, 0x1f, 0x0e, + 0xf7, 0x3c, 0x2a, 0xc2, 0xa8, 0x9d, 0x7b, 0x1e, 0xfd, 0x46, 0x17, 0x2e, 0x7d, 0x28, 0x97, 0xab, + 0xb5, 0x72, 0x79, 0xa7, 0xb6, 0x57, 0xdb, 0xd9, 0xaf, 0x54, 0x4a, 0xd5, 0x12, 0x77, 0x3f, 0x02, + 0xf5, 0x38, 0x38, 0xe3, 0x78, 0x1d, 0x3d, 0x0e, 0x57, 0x67, 0x36, 0xe6, 0xa0, 0xd4, 0xcd, 0xd9, + 0x8d, 0x59, 0x18, 0x07, 0xb2, 0x2f, 0x46, 0x83, 0xc9, 0xd0, 0x68, 0x87, 0xde, 0x0a, 0xbd, 0x15, + 0x7a, 0x2b, 0xf4, 0x56, 0xe8, 0xad, 0xd0, 0x5b, 0x59, 0xb4, 0x6e, 0x70, 0xeb, 0x66, 0xda, 0x18, + 0xb4, 0x31, 0x68, 0x63, 0xd0, 0xc6, 0xd8, 0xa0, 0x2e, 0xcc, 0xad, 0x9b, 0x69, 0x5e, 0xd0, 0xbc, + 0xb0, 0x6f, 0x5e, 0xa4, 0x8b, 0x61, 0xc2, 0x91, 0x91, 0xee, 0x0d, 0x8c, 0x5f, 0x83, 0xa1, 0x81, + 0x40, 0x03, 0x81, 0x06, 0x02, 0x0d, 0x04, 0x1a, 0x08, 0x34, 0x10, 0x16, 0xac, 0x1b, 0x9d, 0x30, + 0x1c, 0x48, 0xa1, 0x11, 0x16, 0xe5, 0x94, 0x36, 0x05, 0x5d, 0xd6, 0xfa, 0x00, 0xf4, 0xba, 0xd6, + 0xa1, 0x11, 0xe3, 0xd1, 0x80, 0x9b, 0x73, 0xd0, 0xe3, 0xee, 0x57, 0x79, 0x23, 0x86, 0xe9, 0x72, + 0xf7, 0x20, 0x1c, 0x4a, 0xdd, 0x9d, 0x80, 0x82, 0xaf, 0xa5, 0xf9, 0x1e, 0x46, 0xd7, 0xbe, 0xd2, + 0xb1, 0x11, 0xba, 0x2b, 0x83, 0xa7, 0x2f, 0xc4, 0xb9, 0x57, 0x82, 0x61, 0x14, 0x9a, 0xb0, 0x1b, + 0x0e, 0xe2, 0xec, 0x2a, 0xe8, 0x5c, 0x0d, 0x83, 0x48, 0x75, 0x02, 0xd1, 0x57, 0x7e, 0x2c, 0xfa, + 0x2a, 0xce, 0xae, 0x82, 0xc9, 0x76, 0x6a, 0x71, 0x64, 0xa4, 0x3f, 0x0c, 0x07, 0xaa, 0x7b, 0x1f, + 0x0c, 0x92, 0xd2, 0x1a, 0x4c, 0x30, 0x2d, 0x4e, 0xbe, 0x25, 0x8b, 0xe9, 0xed, 0x56, 0x5a, 0x7b, + 0x5d, 0xce, 0x62, 0x77, 0xf3, 0x46, 0xfa, 0x5a, 0x87, 0xdf, 0xb5, 0x2f, 0x8c, 0x89, 0x54, 0x67, + 0x7c, 0x87, 0xad, 0x77, 0xb9, 0x47, 0x23, 0x36, 0x1f, 0x8b, 0xe5, 0xc4, 0x9b, 0x96, 0x51, 0xcb, + 0x1f, 0xeb, 0x8a, 0xc2, 0x5d, 0xd2, 0x37, 0x06, 0x75, 0xbb, 0xa6, 0x6d, 0x18, 0xca, 0x86, 0xa1, + 0x6b, 0x18, 0xaa, 0x5e, 0x6f, 0xc4, 0x38, 0x50, 0x6e, 0x4e, 0xdd, 0xce, 0x17, 0x79, 0xf7, 0x36, + 0x50, 0x3e, 0x24, 0xb7, 0x66, 0x50, 0x89, 0x66, 0x10, 0xcd, 0x20, 0x9a, 0x41, 0x34, 0x83, 0x68, + 0x06, 0xa1, 0xcb, 0x59, 0x16, 0xc0, 0x58, 0x3b, 0x7c, 0xe3, 0xda, 0x92, 0x9a, 0xa9, 0x60, 0x8f, + 0x21, 0x39, 0x4e, 0x0d, 0x8c, 0x47, 0xc0, 0xce, 0xe5, 0x0d, 0x49, 0xe6, 0x30, 0xe5, 0x0e, 0x4d, + 0xf6, 0x60, 0xe5, 0x0f, 0x56, 0x06, 0x61, 0xe5, 0xd0, 0xad, 0x2c, 0x3a, 0x96, 0xc7, 0xac, 0x55, + 0xce, 0x11, 0x04, 0x6a, 0x0b, 0x6b, 0x6b, 0xd9, 0xdc, 0xe8, 0xab, 0x86, 0x71, 0x70, 0xc6, 0x74, + 0xab, 0xd9, 0x64, 0xdf, 0xd8, 0x47, 0x31, 0xdf, 0xd0, 0x49, 0x39, 0x0e, 0x53, 0xc7, 0x4b, 0x9e, + 0x36, 0xc0, 0x80, 0x5d, 0x12, 0x0e, 0x06, 0xd4, 0x95, 0x08, 0x75, 0x84, 0x3a, 0x42, 0x1d, 0xa1, + 0x8e, 0x50, 0xe7, 0xaa, 0x55, 0x5c, 0x7b, 0x1f, 0xb3, 0x1e, 0xc8, 0x40, 0x02, 0xad, 0x9f, 0x98, + 0xb1, 0x42, 0xc6, 0x91, 0xbd, 0xe3, 0xa4, 0x78, 0x60, 0x11, 0x45, 0x14, 0x53, 0x6c, 0x51, 0x45, + 0x15, 0x57, 0x78, 0x91, 0x85, 0x17, 0x5b, 0x78, 0xd1, 0xc5, 0x10, 0x5f, 0x10, 0x11, 0xc6, 0x73, + 0x58, 0x72, 0x75, 0x6b, 0xa4, 0xb4, 0x29, 0x55, 0x91, 0x6a, 0x56, 0xaa, 0x82, 0x55, 0xa0, 0x90, + 0x30, 0x96, 0xc1, 0x3e, 0xfd, 0xc2, 0xaa, 0xe9, 0x5b, 0x68, 0xcb, 0x64, 0xc1, 0xf1, 0x2a, 0x17, + 0x1e, 0xd8, 0x32, 0xda, 0x5c, 0x7c, 0x80, 0x4b, 0x11, 0x41, 0xcb, 0xfd, 0x6c, 0x4a, 0x88, 0x3b, + 0xa6, 0xc4, 0x92, 0x29, 0x51, 0xad, 0x54, 0xf6, 0x2a, 0x4c, 0x8b, 0x62, 0xb3, 0x18, 0x5e, 0x34, + 0xad, 0x37, 0xbc, 0x1f, 0x20, 0x65, 0x13, 0x68, 0xa6, 0x4c, 0x0e, 0x91, 0x51, 0x66, 0xcc, 0x80, + 0x56, 0x6d, 0xfa, 0x44, 0x8b, 0x74, 0x26, 0xfa, 0x44, 0x0b, 0xf5, 0x74, 0xfa, 0x44, 0x4b, 0x06, + 0x48, 0x9f, 0xa8, 0x40, 0x03, 0x07, 0x70, 0x9f, 0xe8, 0x03, 0xa0, 0x4d, 0x54, 0xa1, 0x4d, 0xf4, + 0x2f, 0x5f, 0xb4, 0x89, 0xd6, 0x72, 0x4c, 0x4c, 0x9b, 0xa8, 0xe8, 0xd5, 0x7e, 0x36, 0x25, 0x68, + 0x13, 0x2d, 0x9d, 0x12, 0xbb, 0x15, 0x9a, 0x44, 0x6b, 0x60, 0xcb, 0x6c, 0xd1, 0x24, 0x02, 0xbc, + 0x1f, 0x30, 0x26, 0xd1, 0x6d, 0x9a, 0xed, 0x88, 0x2e, 0x51, 0x12, 0x1b, 0x6d, 0xa2, 0x79, 0xe1, + 0xd0, 0x26, 0x5a, 0xa0, 0x37, 0xd1, 0x26, 0x5a, 0xa8, 0xa7, 0xd3, 0x26, 0x5a, 0x32, 0x40, 0xda, + 0x44, 0x05, 0x1a, 0x38, 0x00, 0xdb, 0x44, 0x1d, 0xa5, 0x45, 0x74, 0x0f, 0xe8, 0x13, 0xed, 0x03, + 0x85, 0x74, 0x2c, 0xf5, 0xd5, 0x64, 0x21, 0x17, 0x8d, 0xa2, 0x7f, 0x1b, 0x15, 0xd3, 0x28, 0x5a, + 0x7a, 0x54, 0x5c, 0xe2, 0x98, 0xb8, 0xe0, 0xf5, 0x7e, 0x36, 0x25, 0x68, 0x14, 0x2d, 0x9d, 0x12, + 0x9c, 0x4f, 0xb4, 0x26, 0xe6, 0xcc, 0x16, 0xad, 0x22, 0xc0, 0xfb, 0x81, 0x60, 0x15, 0xc9, 0x3b, + 0x23, 0x75, 0x4f, 0xf6, 0xf0, 0x8c, 0xa2, 0x2c, 0x32, 0xda, 0x44, 0xf3, 0xc2, 0xa1, 0x4d, 0xb4, + 0x40, 0x5f, 0xa2, 0x4d, 0xb4, 0x50, 0x4f, 0xa7, 0x4d, 0xb4, 0x64, 0x80, 0xb4, 0x89, 0x0a, 0x34, + 0x6c, 0x40, 0xb6, 0x89, 0x9c, 0x9f, 0x8d, 0xf0, 0x9c, 0x0c, 0x3a, 0x3a, 0x2b, 0x81, 0x10, 0x37, + 0xaf, 0x4d, 0xc2, 0xe1, 0x78, 0x24, 0x24, 0x06, 0x78, 0x10, 0x97, 0x45, 0x46, 0x88, 0x23, 0xc4, + 0x11, 0xe2, 0x08, 0x71, 0x84, 0x38, 0x42, 0x1c, 0x21, 0x8e, 0x10, 0x47, 0x88, 0x7b, 0xda, 0x26, + 0x43, 0x11, 0x19, 0x85, 0xc8, 0x70, 0xd3, 0xc0, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, + 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x4f, 0xdb, 0xc4, 0x44, 0x42, 0xc7, 0xca, + 0xa8, 0x5b, 0xc0, 0x79, 0xf7, 0xbf, 0xc4, 0x46, 0x90, 0x23, 0xc8, 0x11, 0xe4, 0x08, 0x72, 0x04, + 0x39, 0x82, 0x1c, 0x41, 0x8e, 0x20, 0x07, 0x06, 0x72, 0x1b, 0xbd, 0x1d, 0xbd, 0xe3, 0xc3, 0xeb, + 0x73, 0xf1, 0xe0, 0x1f, 0x66, 0x9f, 0x3f, 0xf7, 0x3c, 0xff, 0x92, 0x8b, 0x13, 0xef, 0x71, 0xfa, + 0xf5, 0x66, 0x1d, 0x66, 0xf9, 0x5f, 0x79, 0x8f, 0xb0, 0x1b, 0x9d, 0x77, 0xac, 0x62, 0x53, 0x37, + 0xc6, 0xf1, 0xc9, 0x9a, 0x5f, 0x94, 0x3e, 0x1c, 0xc8, 0x31, 0x3a, 0xc5, 0xde, 0xc7, 0x2d, 0x3d, + 0x1a, 0x0c, 0x1c, 0x9e, 0x04, 0xf5, 0x45, 0xdc, 0xe1, 0x04, 0xd3, 0x88, 0x7a, 0x32, 0x92, 0xbd, + 0x4f, 0xf7, 0x69, 0x28, 0x1b, 0x95, 0x24, 0x20, 0x32, 0xb3, 0x26, 0xf2, 0xe2, 0x39, 0x3d, 0x5d, + 0x2d, 0x1a, 0x75, 0x8d, 0x4e, 0xf9, 0xf6, 0x24, 0xb9, 0x25, 0x47, 0xe9, 0x1d, 0x69, 0x9f, 0xa6, + 0xf7, 0xa1, 0xfd, 0xe9, 0x6a, 0xd8, 0x6e, 0xaa, 0x4e, 0xbb, 0xde, 0x57, 0x67, 0xa2, 0xaf, 0xda, + 0x47, 0xc3, 0xdb, 0xea, 0x59, 0x64, 0xe4, 0xe9, 0xe4, 0x4f, 0x6f, 0x1f, 0x87, 0xdd, 0xf1, 0x4f, + 0x9b, 0xe3, 0x3f, 0xb9, 0x7d, 0x91, 0xfc, 0x7d, 0xf5, 0xec, 0xcf, 0x7b, 0xb3, 0x19, 0xaa, 0x65, + 0xf7, 0x13, 0x2d, 0xa7, 0xbe, 0xeb, 0x94, 0x2f, 0x64, 0xaa, 0xdb, 0xed, 0xf9, 0xf6, 0xfa, 0x9f, + 0x9d, 0x4f, 0xb2, 0xd4, 0xc3, 0xa7, 0xc4, 0x37, 0xee, 0x5a, 0xbe, 0xea, 0x6d, 0x49, 0xdd, 0x1b, + 0x86, 0x4a, 0x9b, 0xad, 0x6e, 0x38, 0x08, 0x23, 0x4b, 0xb5, 0xd9, 0x0d, 0xee, 0x39, 0xc5, 0x3b, + 0xa7, 0x38, 0xe7, 0x06, 0xdf, 0x6c, 0xf5, 0x68, 0x47, 0xb5, 0x1a, 0xbf, 0x46, 0x5b, 0x24, 0xad, + 0x15, 0x90, 0x95, 0x1d, 0x39, 0x59, 0x7d, 0x71, 0x5f, 0xed, 0x27, 0xac, 0x38, 0xc9, 0x6c, 0x27, + 0x17, 0x72, 0x52, 0xad, 0xb6, 0x43, 0xae, 0xae, 0x9b, 0xac, 0xe6, 0x5f, 0x5e, 0x51, 0xc7, 0xb3, + 0xd5, 0xe1, 0x20, 0x3b, 0xda, 0x0a, 0x0b, 0xf6, 0xab, 0x16, 0xe8, 0xd5, 0x64, 0xc2, 0xeb, 0xf7, + 0xd3, 0x15, 0xf4, 0x51, 0x4f, 0x4b, 0x75, 0xf5, 0xb5, 0x13, 0x46, 0xf1, 0xca, 0xba, 0x67, 0xf6, + 0xfc, 0xed, 0xf1, 0xa3, 0x56, 0x94, 0x6b, 0xab, 0x3d, 0x58, 0x7d, 0xe5, 0x93, 0x44, 0x6c, 0x4c, + 0xfa, 0xb0, 0x3b, 0x89, 0xc3, 0xd6, 0xa4, 0x0c, 0xeb, 0x93, 0x2c, 0xac, 0x4f, 0x9a, 0xb0, 0x3e, + 0x09, 0xa2, 0x58, 0x2a, 0xbb, 0xea, 0x83, 0xbc, 0xb3, 0xda, 0xb5, 0xfa, 0xae, 0xfc, 0xb4, 0x5a, + 0xae, 0xba, 0x27, 0xaf, 0xb6, 0x68, 0x5a, 0x2b, 0x9e, 0x36, 0x8b, 0xa8, 0x9b, 0x62, 0x6a, 0xbb, + 0xa8, 0x3a, 0x2b, 0xae, 0xce, 0x8a, 0xac, 0xb3, 0x62, 0xbb, 0x1e, 0x63, 0xeb, 0x55, 0x17, 0xe1, + 0xec, 0x83, 0x44, 0xef, 0xdb, 0xa4, 0x4d, 0x94, 0xf6, 0x87, 0x61, 0x6c, 0xec, 0x65, 0x42, 0xb6, + 0x8f, 0xf9, 0x93, 0x00, 0x6c, 0x79, 0xdd, 0x56, 0x4a, 0xb5, 0xf5, 0x92, 0xed, 0xa2, 0x74, 0xbb, + 0x2d, 0xe1, 0xae, 0x4a, 0xb9, 0xf3, 0x92, 0xee, 0xbc, 0xb4, 0x3b, 0x2f, 0xf1, 0x76, 0x4a, 0xbd, + 0xa5, 0x92, 0x6f, 0xbd, 0xf4, 0x67, 0x1f, 0x98, 0x5a, 0x98, 0xd6, 0x13, 0x67, 0x5a, 0x2e, 0xd2, + 0xcf, 0xb7, 0xdc, 0x69, 0xed, 0x0a, 0x80, 0x33, 0x21, 0x70, 0x29, 0x08, 0x18, 0xc2, 0xe0, 0x5a, + 0x20, 0x60, 0x84, 0x02, 0x46, 0x30, 0x60, 0x84, 0xc3, 0xae, 0x80, 0x58, 0x16, 0x12, 0x67, 0x82, + 0x32, 0x2b, 0x2c, 0xee, 0xf2, 0x6d, 0x46, 0x5f, 0x5c, 0xe5, 0x9a, 0x1b, 0x99, 0x71, 0x2e, 0x37, + 0x08, 0xb2, 0x83, 0x25, 0x3f, 0x28, 0x32, 0x04, 0x27, 0x47, 0x70, 0xb2, 0x04, 0x27, 0x4f, 0x6e, + 0x64, 0xca, 0x91, 0x5c, 0x39, 0x97, 0xad, 0x2c, 0x80, 0x64, 0xda, 0xa3, 0xf3, 0x3c, 0x9d, 0x56, + 0x2f, 0x9b, 0xb3, 0x30, 0xff, 0x4d, 0xce, 0x1c, 0x2f, 0xed, 0x87, 0xd9, 0x63, 0x00, 0x69, 0x6f, + 0x01, 0xcc, 0x3d, 0x05, 0xd0, 0xf6, 0x12, 0x80, 0xdd, 0x43, 0x00, 0x76, 0xef, 0x00, 0xd8, 0x3d, + 0x03, 0x36, 0x7b, 0x81, 0x33, 0xcc, 0xde, 0x00, 0x59, 0xdd, 0x19, 0x48, 0xd1, 0x8f, 0x64, 0x1f, + 0xa1, 0xe8, 0x4c, 0x47, 0x5d, 0x35, 0x80, 0x58, 0x4e, 0xd3, 0x79, 0x84, 0xef, 0xdf, 0x27, 0xab, + 0xa7, 0x83, 0x44, 0xc8, 0x37, 0x75, 0x0d, 0xb5, 0xc3, 0x91, 0xd7, 0x74, 0x41, 0x0b, 0x0e, 0xd3, + 0x65, 0x11, 0x11, 0xeb, 0x88, 0x75, 0xc4, 0x3a, 0x62, 0x1d, 0xb1, 0x8e, 0x58, 0x47, 0xac, 0x2b, + 0x24, 0xd6, 0x65, 0x5a, 0x4e, 0xb2, 0xb3, 0xde, 0x18, 0xe9, 0x92, 0x65, 0x1c, 0xb0, 0x9b, 0x06, + 0x44, 0xae, 0x23, 0xd7, 0x91, 0xeb, 0xc8, 0x75, 0xe4, 0x3a, 0x72, 0x1d, 0xb9, 0xae, 0x90, 0x5c, + 0x37, 0x95, 0x72, 0x62, 0x9d, 0xf5, 0xb6, 0x48, 0x76, 0x9b, 0x84, 0x81, 0xba, 0x24, 0x1c, 0x0c, + 0xa4, 0x2b, 0x11, 0xe9, 0x88, 0x74, 0x44, 0x3a, 0x22, 0x1d, 0x91, 0xce, 0x55, 0xab, 0xb8, 0x9e, + 0xa0, 0x94, 0x05, 0x32, 0xd9, 0xa2, 0x57, 0xe9, 0x9e, 0xbc, 0xc3, 0x3b, 0x2e, 0xe5, 0x97, 0xd8, + 0x78, 0x5c, 0x0a, 0xb2, 0x90, 0x22, 0x0a, 0x2a, 0xb6, 0xb0, 0xa2, 0x0a, 0x2c, 0xbc, 0xd0, 0xc2, + 0x0b, 0x2e, 0xbc, 0xf0, 0x62, 0x08, 0x30, 0x88, 0x10, 0xe3, 0x79, 0x2c, 0xc0, 0x5e, 0x0b, 0xa2, + 0xe7, 0x32, 0xcf, 0x7b, 0xf9, 0x1f, 0xff, 0x4d, 0x90, 0x22, 0x96, 0x26, 0xce, 0xae, 0x52, 0xa7, + 0x26, 0xc1, 0x0c, 0x1e, 0xff, 0x82, 0x92, 0x94, 0x5e, 0x47, 0xc6, 0xc6, 0x4f, 0xf7, 0xd1, 0x03, + 0xe3, 0xd2, 0xc7, 0xd0, 0x88, 0xa5, 0xc4, 0x52, 0x62, 0x29, 0xb1, 0x94, 0x58, 0x4a, 0x2c, 0xdd, + 0x30, 0x2c, 0xe5, 0x29, 0x7e, 0xc4, 0xb8, 0xdf, 0x68, 0x13, 0x8c, 0x85, 0x90, 0xb9, 0xde, 0x8b, + 0xb0, 0x20, 0x92, 0xf8, 0x46, 0x7c, 0x23, 0xbe, 0x11, 0xdf, 0x88, 0x6f, 0xc4, 0x37, 0xeb, 0x75, + 0x6b, 0xa4, 0xb4, 0xd9, 0xdb, 0x05, 0xa4, 0x37, 0x24, 0x4f, 0xb1, 0x29, 0xf4, 0xd5, 0xf8, 0x6e, + 0x5d, 0x42, 0xd5, 0x00, 0xac, 0x9a, 0xbe, 0x95, 0x1e, 0x81, 0x05, 0x27, 0x36, 0xa0, 0x78, 0x95, + 0x0b, 0xef, 0x2f, 0x31, 0x18, 0x49, 0xe0, 0xf8, 0x3e, 0x47, 0xa2, 0x6b, 0x54, 0xa8, 0x0f, 0xd4, + 0x95, 0x9a, 0x1c, 0x32, 0xb6, 0x03, 0x17, 0xe7, 0xc3, 0x3b, 0xc0, 0x94, 0x10, 0x77, 0x4c, 0x89, + 0x25, 0x53, 0xa2, 0xbc, 0xbb, 0x5f, 0xde, 0xaf, 0xd6, 0x76, 0xf7, 0x2b, 0xcc, 0x8d, 0x62, 0x03, + 0x19, 0x5e, 0x34, 0x2d, 0x9a, 0x44, 0x28, 0xb5, 0xd3, 0xeb, 0x86, 0x37, 0x37, 0x23, 0xad, 0xcc, + 0x3d, 0xea, 0x4c, 0xb4, 0xa7, 0x01, 0xd2, 0x38, 0x9a, 0x17, 0x0e, 0x8d, 0xa3, 0x05, 0xba, 0x14, + 0x8d, 0xa3, 0x85, 0x7a, 0x3a, 0x8d, 0xa3, 0x25, 0x03, 0xa4, 0x71, 0x54, 0xa0, 0x91, 0x04, 0xa7, + 0xa3, 0xbd, 0x40, 0x06, 0x0b, 0x38, 0x1d, 0x6d, 0xca, 0x15, 0x4a, 0xc6, 0xd9, 0xf5, 0x3d, 0x67, + 0xa4, 0x61, 0x52, 0x2a, 0xcc, 0x16, 0x60, 0xb9, 0x9c, 0x04, 0xd9, 0x0a, 0x8c, 0x5c, 0x4a, 0x2e, + 0x25, 0x97, 0x92, 0x4b, 0xc9, 0xa5, 0xe4, 0x52, 0xeb, 0x75, 0x4b, 0x0d, 0x7d, 0xd1, 0xeb, 0x45, + 0x32, 0x8e, 0x11, 0xd1, 0x74, 0x1f, 0x28, 0xa6, 0xb4, 0x0d, 0xf9, 0x50, 0xf3, 0xb7, 0x7b, 0xd6, + 0x6d, 0x19, 0xb0, 0x6f, 0xe5, 0xfa, 0xd8, 0x07, 0xc0, 0xd8, 0x4e, 0x85, 0x31, 0x32, 0xd2, 0x70, + 0xdd, 0x2d, 0x0b, 0xf0, 0x9f, 0xb7, 0x6f, 0x2f, 0x77, 0xfc, 0xfd, 0xd6, 0xcf, 0xcb, 0x92, 0xbf, + 0xdf, 0x4a, 0x2e, 0x4b, 0x93, 0x6f, 0xc9, 0xf5, 0xee, 0xe5, 0x8e, 0x5f, 0x9e, 0x5e, 0x57, 0x2e, + 0x77, 0xfc, 0x4a, 0x6b, 0xfb, 0xef, 0xbf, 0xdf, 0x6f, 0xff, 0xd8, 0x7b, 0x58, 0xfc, 0x8d, 0xff, + 0xf1, 0xe0, 0x6e, 0x42, 0x0b, 0xeb, 0xf1, 0xd0, 0x3b, 0x16, 0xa5, 0xdf, 0x2e, 0x4a, 0x55, 0x16, + 0xa5, 0xf5, 0x2e, 0x4a, 0xc2, 0xef, 0xd7, 0xfd, 0xcf, 0xad, 0x1f, 0xa5, 0x77, 0xe5, 0x87, 0x8f, + 0xdb, 0x3f, 0x6a, 0x0f, 0x4f, 0x5f, 0xfc, 0x39, 0xef, 0xd7, 0x4a, 0xef, 0x6a, 0x0f, 0x1f, 0x9f, + 0xf9, 0x49, 0xf5, 0xe1, 0xe3, 0x6f, 0xfe, 0x1b, 0x95, 0x87, 0xb7, 0xb9, 0x5f, 0x1d, 0xbf, 0xbe, + 0xfb, 0xdc, 0x1b, 0xca, 0xcf, 0xbc, 0x61, 0xef, 0xb9, 0x37, 0xec, 0x3d, 0xf3, 0x86, 0x67, 0x43, + 0xda, 0x7d, 0xe6, 0x0d, 0x95, 0x87, 0x9f, 0xb9, 0xdf, 0x7f, 0x3b, 0xff, 0x57, 0xab, 0x0f, 0xdb, + 0x3f, 0x9f, 0xfb, 0x59, 0xed, 0xe1, 0xe7, 0xc7, 0x6d, 0x96, 0xe8, 0x62, 0x8c, 0x87, 0xb6, 0xf8, + 0x04, 0x1f, 0x49, 0x34, 0x3d, 0x79, 0x67, 0x7c, 0xf8, 0xa7, 0xf8, 0xf3, 0x82, 0xa4, 0x63, 0x3a, + 0x2f, 0x1c, 0x3a, 0xa6, 0x0b, 0x74, 0x2b, 0x3a, 0xa6, 0x0b, 0xf5, 0x74, 0x3a, 0xa6, 0x4b, 0x06, + 0x48, 0xc7, 0xb4, 0x40, 0x43, 0x49, 0x3e, 0xc9, 0x7f, 0xc9, 0xa8, 0xb1, 0x78, 0x4f, 0xf2, 0x7f, + 0x65, 0x0b, 0x25, 0xe3, 0x99, 0xff, 0xe7, 0x13, 0x7d, 0x50, 0x6a, 0x55, 0xfa, 0x56, 0x0c, 0x54, + 0xcf, 0x8f, 0xa4, 0x88, 0x43, 0x8d, 0x07, 0xac, 0x4f, 0xe2, 0x23, 0xab, 0x92, 0x55, 0xc9, 0xaa, + 0x64, 0x55, 0xb2, 0x2a, 0x59, 0x75, 0xc3, 0x58, 0x55, 0xf5, 0xa4, 0x36, 0xca, 0xdc, 0x83, 0xf2, + 0x2a, 0xd0, 0xfa, 0x34, 0xef, 0x28, 0xbd, 0x55, 0x9f, 0x44, 0x0c, 0x58, 0x52, 0xa7, 0x0d, 0x7a, + 0x74, 0xf2, 0x57, 0xfd, 0xf8, 0xe8, 0xa0, 0xdd, 0x6c, 0x5c, 0x9c, 0x1f, 0xb6, 0x9b, 0x87, 0xf5, + 0xb3, 0xc6, 0x09, 0x5a, 0x75, 0x9d, 0x2c, 0x43, 0x8c, 0x21, 0x1f, 0x13, 0x81, 0xae, 0x2b, 0x7d, + 0xda, 0xba, 0xf5, 0xb3, 0xf6, 0x71, 0xa3, 0x71, 0xea, 0x71, 0xc5, 0xf0, 0xda, 0x34, 0xe9, 0x1f, + 0x8d, 0x93, 0xcf, 0x87, 0x07, 0x6c, 0xd1, 0xf5, 0x69, 0xd1, 0x46, 0xf3, 0xe8, 0xcf, 0xa3, 0x93, + 0xfa, 0x79, 0xa3, 0xc9, 0x56, 0x5d, 0xa3, 0x3c, 0x3d, 0xbe, 0x38, 0x3b, 0x3f, 0x6c, 0xa2, 0xd6, + 0x5f, 0xa8, 0x88, 0x5a, 0x1c, 0x8f, 0x80, 0x45, 0x81, 0xe0, 0x0e, 0x0e, 0x44, 0x6c, 0xfc, 0x9b, + 0xb0, 0xa7, 0xfa, 0x4a, 0xf6, 0xf0, 0xcc, 0xc1, 0xd9, 0xf0, 0xe8, 0x0d, 0xce, 0x0b, 0x87, 0xde, + 0xe0, 0x02, 0x1d, 0x8a, 0xde, 0xe0, 0x42, 0x3d, 0x9d, 0xde, 0xe0, 0x92, 0x01, 0xd2, 0x1b, 0x2c, + 0x10, 0x01, 0x03, 0x7b, 0x83, 0x46, 0xdd, 0x48, 0xa3, 0xba, 0xd7, 0x71, 0xb5, 0x0c, 0xe8, 0x0d, + 0x02, 0x4d, 0x80, 0xf6, 0x2e, 0x74, 0xb2, 0x4b, 0x95, 0xa7, 0x85, 0x0e, 0x63, 0xd9, 0x0d, 0x75, + 0x0f, 0x6a, 0xb5, 0x14, 0xf7, 0x5b, 0xfc, 0xcd, 0x1b, 0xc5, 0xfd, 0x16, 0x5f, 0x1e, 0x1e, 0xf7, + 0x5b, 0x5c, 0x47, 0x57, 0x86, 0xfb, 0x2d, 0xbe, 0x42, 0x4a, 0x94, 0x3e, 0x94, 0xcb, 0xd5, 0x5a, + 0xb9, 0xbc, 0x53, 0xdb, 0xab, 0xed, 0xec, 0x57, 0x2a, 0xa5, 0x6a, 0x89, 0x3b, 0x2f, 0x16, 0x9c, + 0x1f, 0xf1, 0xa2, 0xe1, 0xba, 0x0d, 0x98, 0x2a, 0xea, 0x0d, 0x85, 0xf9, 0xea, 0x2b, 0x40, 0x77, + 0x6b, 0x1a, 0x18, 0xc8, 0xe8, 0xe7, 0x40, 0xf6, 0xc5, 0x68, 0x30, 0x19, 0xaa, 0xee, 0xd0, 0x6b, + 0x9b, 0x1b, 0x0e, 0xbd, 0xb6, 0x05, 0xba, 0x37, 0xbd, 0xb6, 0x85, 0x7a, 0x3a, 0xbd, 0xb6, 0x25, + 0x03, 0xa4, 0xd7, 0x56, 0xa0, 0x71, 0x0d, 0x8f, 0x0d, 0x59, 0x5c, 0x05, 0x79, 0x6c, 0xc8, 0xbf, + 0x7d, 0xd1, 0xc6, 0x5a, 0xcb, 0x31, 0x3b, 0x6d, 0xac, 0xa2, 0x97, 0xfb, 0xd9, 0x94, 0xa0, 0x8d, + 0xb5, 0x74, 0x4a, 0xf0, 0xd8, 0x90, 0x75, 0x01, 0x32, 0xbc, 0x68, 0x68, 0x5e, 0xc1, 0xd4, 0x4e, + 0x2f, 0x5d, 0x1c, 0x19, 0x8e, 0x8c, 0xc4, 0x33, 0xb0, 0x7e, 0x0d, 0x8e, 0x86, 0xd1, 0xbc, 0x70, + 0x68, 0x18, 0x2d, 0xd0, 0x9d, 0x68, 0x18, 0x2d, 0xd4, 0xd3, 0x69, 0x18, 0x2d, 0x19, 0x20, 0x0d, + 0xa3, 0x02, 0x8d, 0x20, 0x80, 0x0d, 0xa3, 0x4e, 0x18, 0x0e, 0xa4, 0xd0, 0x88, 0x8b, 0x36, 0x4b, + 0x44, 0x39, 0x80, 0x08, 0x1c, 0xa7, 0x90, 0x57, 0xd7, 0x3a, 0x34, 0x62, 0x3c, 0x1a, 0x83, 0x48, + 0x20, 0x2f, 0xee, 0x7e, 0x95, 0x37, 0x62, 0x98, 0x6e, 0x3a, 0x13, 0x84, 0x43, 0xa9, 0xbb, 0x13, + 0x50, 0xf2, 0xb5, 0x34, 0xdf, 0xc3, 0xe8, 0xda, 0x57, 0x3a, 0x36, 0x42, 0x77, 0x65, 0xf0, 0xf4, + 0x85, 0x38, 0xf7, 0x4a, 0x30, 0x8c, 0x42, 0x13, 0x76, 0xc3, 0x41, 0x9c, 0x5d, 0x05, 0x9d, 0xab, + 0x61, 0x10, 0xa9, 0x4e, 0x20, 0xfa, 0xca, 0x8f, 0x45, 0x5f, 0xc5, 0xd9, 0x55, 0x30, 0xd9, 0x54, + 0x36, 0x8e, 0x8c, 0xf4, 0x87, 0xe1, 0x40, 0x75, 0xef, 0x03, 0x2d, 0xd5, 0xd5, 0xd7, 0x4e, 0x18, + 0xc5, 0xd9, 0x55, 0x20, 0x7a, 0xdf, 0x26, 0x6a, 0xa0, 0xb4, 0x3f, 0x0c, 0x63, 0x13, 0x4c, 0x08, + 0x37, 0x4e, 0xbe, 0x25, 0xfb, 0xdc, 0xb8, 0x15, 0x09, 0x77, 0xbd, 0xd9, 0x61, 0x4f, 0xf6, 0x46, + 0xfa, 0x5a, 0x87, 0xdf, 0xb5, 0x2f, 0x8c, 0x89, 0x54, 0x67, 0xdc, 0x22, 0xce, 0x7b, 0xf3, 0xe3, + 0x33, 0x83, 0x7c, 0x6c, 0x8e, 0x73, 0x7e, 0xaa, 0x00, 0x8e, 0xc3, 0x40, 0x19, 0x00, 0x21, 0x0d, + 0x7c, 0x30, 0x07, 0x3c, 0x68, 0x03, 0x1d, 0xd8, 0x01, 0x0e, 0xec, 0xc0, 0x06, 0x76, 0x40, 0xb3, + 0xd9, 0xf4, 0x75, 0xa0, 0x22, 0x8c, 0xb2, 0x93, 0x13, 0x29, 0x3c, 0x47, 0x31, 0x1f, 0x22, 0x96, + 0xaf, 0x58, 0xa2, 0xaf, 0x08, 0x2f, 0xaf, 0xd8, 0x32, 0x8b, 0x2a, 0xb7, 0xf0, 0xb2, 0x0b, 0x2f, + 0xbf, 0xf0, 0x32, 0x8c, 0x63, 0xc7, 0x6c, 0x01, 0xf9, 0x8a, 0x28, 0xf2, 0x9c, 0x05, 0x34, 0xd6, + 0x3e, 0xdf, 0xa0, 0xb9, 0x9d, 0x33, 0x15, 0xf5, 0x31, 0x44, 0xb0, 0xd4, 0xc3, 0x9c, 0xbd, 0x01, + 0x27, 0xd7, 0xc8, 0xb2, 0x5d, 0x0c, 0xf9, 0x46, 0x97, 0xf1, 0xc2, 0xc8, 0x79, 0x61, 0x64, 0xbd, + 0x30, 0xf2, 0x8e, 0x25, 0xf3, 0x60, 0x72, 0x9f, 0xb5, 0xe2, 0x39, 0xa2, 0xc0, 0x6e, 0x61, 0x9f, + 0x5d, 0x90, 0x1b, 0x0d, 0xd7, 0x30, 0x4f, 0xbe, 0x9b, 0x9e, 0x65, 0x90, 0x1c, 0x49, 0xf0, 0x08, + 0x2b, 0x9c, 0xef, 0x87, 0x9e, 0x9a, 0x5e, 0xf2, 0x74, 0x0d, 0x16, 0x7c, 0x93, 0xf0, 0x30, 0xa1, + 0xb7, 0x44, 0xe8, 0x25, 0xf4, 0x12, 0x7a, 0x09, 0xbd, 0x84, 0x5e, 0x2a, 0xeb, 0xfc, 0x56, 0x44, + 0xf3, 0xba, 0xb2, 0xc0, 0x26, 0x8c, 0x36, 0x90, 0xc0, 0x4b, 0xe5, 0x66, 0xac, 0xaf, 0x71, 0xa4, + 0xef, 0xb8, 0x7e, 0x69, 0x8d, 0xa0, 0xa0, 0x08, 0x70, 0x50, 0x2c, 0x48, 0x28, 0x0a, 0x2c, 0x14, + 0x0e, 0x1a, 0x0a, 0x07, 0x0f, 0x85, 0x83, 0x08, 0x4c, 0x98, 0x00, 0x85, 0x8a, 0xac, 0x75, 0x61, + 0x1d, 0xb5, 0x5c, 0xdd, 0x1c, 0x29, 0x6d, 0x4a, 0x55, 0xe4, 0x9a, 0x99, 0xaa, 0x78, 0x15, 0x38, + 0x44, 0xcc, 0x1d, 0x20, 0x9e, 0x7e, 0x61, 0x6b, 0xce, 0x16, 0xfa, 0x0e, 0x11, 0x05, 0xc3, 0xcb, + 0x5c, 0xb8, 0xe0, 0x3b, 0x48, 0xe4, 0xe2, 0x2d, 0xc0, 0xaa, 0xf9, 0x82, 0xc8, 0xd1, 0x6c, 0x8a, + 0x89, 0x3b, 0xa6, 0xd8, 0x8a, 0x53, 0xac, 0x5a, 0xa9, 0xec, 0x55, 0x98, 0x66, 0x9b, 0xc5, 0xa2, + 0xf8, 0xd1, 0xb5, 0xde, 0xf0, 0x7e, 0x15, 0xb4, 0x8c, 0x03, 0xcf, 0x84, 0xcb, 0x0d, 0x29, 0x50, + 0x67, 0xc4, 0x15, 0x44, 0x55, 0xe8, 0x0b, 0xbe, 0x66, 0x67, 0xa4, 0x2f, 0xf8, 0xaa, 0x99, 0x43, + 0x5f, 0x70, 0xc5, 0x01, 0xd3, 0x17, 0x5c, 0xe3, 0x81, 0x58, 0xc1, 0x7c, 0xc1, 0x0f, 0x05, 0xb0, + 0x05, 0x2b, 0xb4, 0x05, 0x97, 0xfc, 0xa2, 0x2d, 0x48, 0xcf, 0x82, 0xb6, 0xe0, 0x06, 0xaa, 0xd1, + 0x6c, 0x8a, 0xd1, 0x16, 0x5c, 0x79, 0x8a, 0xed, 0x56, 0x68, 0x0a, 0x6e, 0x18, 0x88, 0xe2, 0x47, + 0x47, 0x53, 0xb0, 0xb0, 0x45, 0x3c, 0x71, 0xda, 0x6e, 0xd3, 0xea, 0x52, 0x04, 0x57, 0x30, 0x89, + 0x95, 0xb6, 0xe0, 0x4b, 0xc2, 0xa3, 0x2d, 0xf8, 0x8a, 0xbd, 0x91, 0xb6, 0xe0, 0xab, 0x66, 0x0e, + 0x6d, 0xc1, 0x15, 0x07, 0x4c, 0x5b, 0x70, 0x8d, 0x07, 0x62, 0x05, 0xb2, 0x05, 0x3b, 0x4a, 0x8b, + 0xe8, 0xbe, 0x00, 0xbe, 0xe0, 0x3e, 0x70, 0x88, 0xc7, 0x52, 0x5f, 0x4d, 0x16, 0xe6, 0xd2, 0x18, + 0x5c, 0xd6, 0xb5, 0xa0, 0x31, 0xb8, 0x72, 0xd7, 0xa2, 0x44, 0xcf, 0x62, 0xc3, 0xf4, 0x68, 0x36, + 0xc5, 0x68, 0x0c, 0xae, 0x3c, 0xc5, 0x38, 0x5f, 0x70, 0x03, 0x61, 0x14, 0x3f, 0x3a, 0x5a, 0x83, + 0x85, 0x2d, 0xe3, 0x9e, 0xbc, 0x33, 0x52, 0xf7, 0x64, 0x0f, 0xdf, 0x18, 0xcc, 0x22, 0xa5, 0x2d, + 0xf8, 0x92, 0xf0, 0x68, 0x0b, 0xbe, 0x62, 0x5f, 0xa4, 0x2d, 0xf8, 0xaa, 0x99, 0x43, 0x5b, 0x70, + 0xc5, 0x01, 0xd3, 0x16, 0x5c, 0xe3, 0x61, 0x58, 0x91, 0x6c, 0x41, 0xb8, 0x63, 0xbf, 0x9e, 0x93, + 0x71, 0x90, 0x63, 0xc0, 0x08, 0xb5, 0x2f, 0x69, 0xc3, 0x70, 0x38, 0x1e, 0x79, 0x8a, 0x01, 0x3e, + 0xd4, 0x66, 0x91, 0x12, 0x6a, 0x09, 0xb5, 0x84, 0x5a, 0x42, 0x2d, 0xa1, 0x96, 0x50, 0x4b, 0xa8, + 0x25, 0xd4, 0x12, 0x6a, 0x99, 0x14, 0xb3, 0x6d, 0x38, 0x14, 0x91, 0x51, 0x45, 0x60, 0xda, 0x69, + 0xa0, 0x44, 0x5a, 0x22, 0x2d, 0x91, 0x96, 0x48, 0x4b, 0xa4, 0x25, 0xd2, 0x12, 0x69, 0x89, 0xb4, + 0x44, 0x5a, 0x26, 0xc5, 0x6c, 0x1b, 0x9a, 0x48, 0xe8, 0x58, 0x19, 0x75, 0x5b, 0x80, 0x75, 0x49, + 0xbf, 0xc4, 0x4a, 0xb0, 0x25, 0xd8, 0x12, 0x6c, 0x09, 0xb6, 0x04, 0x5b, 0x82, 0x2d, 0xc1, 0x96, + 0x60, 0x4b, 0xb0, 0x65, 0x44, 0xa0, 0x29, 0xea, 0xd5, 0xb5, 0x0e, 0x8d, 0x30, 0x2a, 0xc4, 0x5c, + 0x00, 0xe5, 0xc5, 0xdd, 0xaf, 0xf2, 0x46, 0x0c, 0xd3, 0x03, 0x28, 0x83, 0x70, 0x28, 0x75, 0x77, + 0x02, 0x8a, 0xbe, 0x96, 0xe6, 0x7b, 0xf8, 0xff, 0xec, 0xfd, 0xff, 0x6f, 0xda, 0xc8, 0xf7, 0x05, + 0x8c, 0xff, 0xde, 0xbf, 0x22, 0xb2, 0xf6, 0x23, 0x25, 0xfa, 0xd4, 0x75, 0x20, 0x7c, 0x09, 0xf9, + 0xe5, 0x11, 0x6d, 0xd2, 0x15, 0xda, 0x34, 0x44, 0x24, 0xe9, 0xfb, 0x79, 0x29, 0xcb, 0x22, 0x03, + 0x03, 0x9d, 0x96, 0x8c, 0x91, 0x3d, 0xa4, 0x89, 0x1a, 0xfe, 0xf7, 0x47, 0x60, 0xe3, 0x04, 0x0c, + 0x6d, 0x08, 0xf6, 0xcc, 0x1d, 0x38, 0xd1, 0x6a, 0xe3, 0x12, 0x88, 0x6f, 0x3c, 0x73, 0xef, 0x39, + 0xf7, 0xcc, 0x9d, 0x3b, 0xfe, 0x0f, 0x9b, 0x8b, 0x40, 0xba, 0xa2, 0xc3, 0x9c, 0xc5, 0x17, 0x82, + 0xc4, 0x2b, 0xce, 0xd0, 0xf7, 0xa4, 0xd7, 0xf1, 0x06, 0x41, 0x7c, 0xe5, 0xb4, 0xfb, 0x43, 0xc7, + 0xe7, 0x6d, 0xc7, 0xed, 0x71, 0x3b, 0x70, 0x7b, 0x3c, 0x88, 0xaf, 0x1c, 0x3e, 0xbc, 0x2f, 0xd9, + 0x81, 0x2f, 0x99, 0x3d, 0xf4, 0x06, 0xbc, 0xf3, 0xe8, 0x08, 0xc6, 0xfb, 0xdf, 0xda, 0x9e, 0x1f, + 0xc4, 0x57, 0x8e, 0xdb, 0xfd, 0x3e, 0x45, 0x2b, 0x2e, 0xec, 0xa1, 0x17, 0x48, 0xc7, 0xf7, 0x46, + 0x92, 0x05, 0xe1, 0x37, 0x67, 0x24, 0x7e, 0x08, 0xef, 0xa7, 0xb0, 0x5d, 0x29, 0x7d, 0xde, 0x9e, + 0xfe, 0x20, 0xf1, 0x52, 0x78, 0xa2, 0x26, 0xce, 0xd1, 0xa4, 0x6c, 0x09, 0x95, 0x73, 0xf5, 0xff, + 0x61, 0x8f, 0x14, 0x1b, 0xe3, 0x5a, 0xe7, 0x3c, 0x90, 0x55, 0x29, 0x89, 0x1d, 0xfa, 0xff, 0x85, + 0x8b, 0xb3, 0x01, 0x9b, 0xb0, 0xca, 0xc0, 0x3a, 0xd9, 0x13, 0xa3, 0xc1, 0x80, 0xd0, 0xa1, 0xac, + 0x5f, 0xdc, 0x07, 0xba, 0xc6, 0xd5, 0xfd, 0x2e, 0xf3, 0x59, 0xf7, 0xe3, 0x63, 0x64, 0x1a, 0x9c, + 0x90, 0x3e, 0x62, 0x6e, 0x3f, 0x52, 0x5a, 0xa4, 0xce, 0x54, 0xf6, 0x47, 0x1d, 0x29, 0xa2, 0xac, + 0xe1, 0x22, 0x7c, 0x7a, 0xb5, 0xe8, 0xe1, 0xb5, 0x2e, 0xa3, 0x47, 0xd6, 0xfa, 0xd8, 0x1f, 0xb6, + 0x1a, 0xbc, 0xdd, 0xaa, 0xf6, 0xf8, 0x95, 0xdb, 0xe3, 0xad, 0xda, 0xf0, 0xbe, 0x74, 0xe5, 0x4b, + 0x76, 0x39, 0x7d, 0x4a, 0xad, 0x8b, 0xe8, 0xd9, 0xb4, 0xaa, 0xdd, 0xef, 0x0d, 0xde, 0xae, 0x89, + 0x4b, 0x2f, 0x90, 0xad, 0xc6, 0xe4, 0x89, 0xb4, 0x6e, 0xc2, 0x3f, 0xbf, 0x1a, 0xff, 0xf5, 0xef, + 0x80, 0xc7, 0xfa, 0x2d, 0xd0, 0x1c, 0x84, 0xa8, 0x05, 0x9f, 0x6d, 0x0b, 0x3a, 0x7a, 0x9d, 0x4c, + 0xdf, 0xd4, 0xd6, 0x73, 0x67, 0x4d, 0xce, 0x34, 0xa3, 0xd1, 0x93, 0x59, 0x6b, 0xf3, 0xee, 0x1e, + 0x13, 0xdd, 0xa1, 0xc7, 0x85, 0xdc, 0xeb, 0x78, 0x03, 0xcf, 0xd7, 0x84, 0x32, 0x34, 0x38, 0x34, + 0x29, 0xce, 0x4c, 0x8a, 0x23, 0xd3, 0xe0, 0xc4, 0xba, 0x3c, 0x86, 0x08, 0xec, 0x18, 0x0d, 0x37, + 0x1a, 0xe9, 0x6b, 0xf6, 0x74, 0x55, 0x0f, 0x70, 0xaa, 0x87, 0x2d, 0xb5, 0x77, 0x54, 0xec, 0xee, + 0xba, 0xdd, 0xdc, 0x50, 0xf7, 0x56, 0x3b, 0xf7, 0xd5, 0xcd, 0x40, 0x35, 0x77, 0x52, 0x34, 0xc7, + 0x75, 0xcd, 0x6d, 0xd3, 0xe6, 0xb4, 0x42, 0x94, 0xca, 0x12, 0x95, 0xd4, 0xf8, 0x64, 0xf6, 0x1e, + 0xa2, 0xc0, 0x3b, 0xac, 0x97, 0x33, 0xc0, 0x57, 0xb7, 0x4e, 0xff, 0xdc, 0xd1, 0x7b, 0xfe, 0xfe, + 0x8a, 0xe2, 0xc1, 0x6c, 0x19, 0x5d, 0xd1, 0xed, 0x54, 0x57, 0xb7, 0xe9, 0xa8, 0x56, 0xd3, 0x5b, + 0x7d, 0xa6, 0xab, 0x9a, 0x4c, 0x7b, 0x75, 0x98, 0xf6, 0x6a, 0x2f, 0xed, 0xd5, 0x5b, 0xdb, 0xc5, + 0x54, 0x4e, 0xb9, 0x5a, 0x11, 0xc8, 0x8a, 0x68, 0xac, 0x72, 0xc7, 0x99, 0x85, 0x8b, 0xe8, 0xfe, + 0x8a, 0x27, 0xad, 0x5a, 0x00, 0xd0, 0x06, 0x04, 0x3a, 0x01, 0x81, 0x06, 0x30, 0xe8, 0x06, 0x08, + 0x32, 0x40, 0x41, 0x06, 0x30, 0xc8, 0x00, 0xc7, 0x6e, 0xc8, 0x3a, 0xaa, 0x01, 0x65, 0x1e, 0x58, + 0xf4, 0xf9, 0xdb, 0x1c, 0xbe, 0xe8, 0xf2, 0x35, 0x3d, 0x30, 0xa3, 0x1d, 0x6e, 0x28, 0xc0, 0x0e, + 0x2d, 0xf8, 0xa1, 0x02, 0x43, 0xe4, 0xe0, 0x88, 0x1c, 0x2c, 0x91, 0x83, 0x27, 0x3d, 0x30, 0xa5, + 0x09, 0xae, 0xb4, 0xc3, 0x56, 0x6c, 0x40, 0x58, 0x0f, 0xa0, 0xdd, 0x4f, 0x67, 0xd1, 0x4b, 0x67, + 0x79, 0xc2, 0x22, 0x9c, 0x69, 0xde, 0xa3, 0x49, 0x66, 0xb3, 0x28, 0xa5, 0x4d, 0xa1, 0x34, 0x37, + 0x7f, 0x52, 0xdb, 0xe4, 0x49, 0x76, 0x33, 0x27, 0xd9, 0x4d, 0x9b, 0x64, 0x37, 0x67, 0xee, 0x76, + 0x29, 0x28, 0x99, 0x4d, 0x95, 0x71, 0xdc, 0x19, 0x30, 0xb7, 0xe7, 0xb3, 0x1e, 0x85, 0xa0, 0x33, + 0xcb, 0xba, 0xca, 0x04, 0x6c, 0xb9, 0x8c, 0xd6, 0x7e, 0x3f, 0x7c, 0x08, 0xf7, 0x7a, 0x39, 0x21, + 0x90, 0xef, 0x6a, 0xa9, 0xa9, 0xc6, 0xcc, 0x6b, 0x56, 0xe9, 0x49, 0x87, 0xd3, 0xc5, 0x16, 0x81, + 0xd6, 0x81, 0xd6, 0x81, 0xd6, 0x81, 0xd6, 0x81, 0xd6, 0x81, 0xd6, 0x81, 0xd6, 0x19, 0x49, 0xeb, + 0x62, 0x2c, 0x07, 0xb3, 0x53, 0x3e, 0x18, 0xd1, 0x5e, 0x1e, 0x3a, 0xc4, 0x6e, 0x66, 0x10, 0x78, + 0x1d, 0x78, 0x1d, 0x78, 0x1d, 0x78, 0x1d, 0x78, 0x1d, 0x78, 0x1d, 0x78, 0x9d, 0x91, 0xbc, 0x6e, + 0x06, 0xe5, 0xa0, 0x75, 0xca, 0xc7, 0x22, 0xec, 0x8d, 0x45, 0x86, 0xd4, 0x85, 0xe6, 0xd0, 0xa0, + 0x74, 0x39, 0x50, 0x3a, 0x50, 0x3a, 0x50, 0x3a, 0x50, 0x3a, 0x50, 0x3a, 0x5d, 0xa3, 0xa2, 0xbb, + 0x40, 0x29, 0x36, 0x64, 0xda, 0x10, 0x90, 0x8b, 0x2e, 0xa3, 0xd3, 0x9d, 0xfc, 0x79, 0x77, 0xdf, + 0xb3, 0x6d, 0x54, 0xba, 0x28, 0x92, 0xea, 0x83, 0x4f, 0xae, 0xef, 0x3d, 0xc5, 0x3e, 0xf7, 0xb4, + 0xfb, 0xda, 0x53, 0xed, 0x63, 0x4f, 0xbe, 0x6f, 0x3d, 0xf9, 0x3e, 0xf5, 0xe4, 0xfb, 0xd2, 0xa3, + 0x3f, 0x2e, 0x49, 0x8d, 0x85, 0xb0, 0xd6, 0x42, 0x51, 0x73, 0x59, 0xa6, 0xbd, 0xfc, 0xe6, 0xbf, + 0x29, 0xa5, 0x08, 0x98, 0x0c, 0xe2, 0xab, 0x48, 0xa9, 0x09, 0x69, 0x06, 0x1a, 0x65, 0x52, 0x71, + 0x4a, 0x22, 0x15, 0xf4, 0x09, 0x6f, 0xa4, 0x50, 0x49, 0x0f, 0x3a, 0x0a, 0x3a, 0x0a, 0x3a, 0x0a, + 0x3a, 0x0a, 0x3a, 0x0a, 0x3a, 0xaa, 0x3c, 0x6e, 0x8d, 0xb8, 0x90, 0x47, 0x79, 0x82, 0x6c, 0x94, + 0x12, 0x19, 0x6d, 0xb8, 0xa2, 0x3f, 0x79, 0x5a, 0xb7, 0xa4, 0x62, 0x00, 0xc1, 0x33, 0x7a, 0xbe, + 0x70, 0x41, 0xf7, 0x7c, 0x4e, 0xe2, 0xa7, 0x5e, 0x7e, 0x75, 0x07, 0x23, 0x46, 0xd8, 0xbe, 0xcf, + 0xbe, 0xdb, 0x91, 0xdc, 0x13, 0xa7, 0xbc, 0xcf, 0xa7, 0x6d, 0x98, 0x0f, 0x71, 0x72, 0xed, 0x6b, + 0x5c, 0xc2, 0x7d, 0x80, 0x4b, 0x6c, 0xe8, 0x12, 0x85, 0x7c, 0xa5, 0x50, 0x29, 0x95, 0xf3, 0x95, + 0x22, 0x7c, 0xc3, 0x6c, 0x42, 0x46, 0xcf, 0x9a, 0x26, 0x44, 0x22, 0x2a, 0xb1, 0xd3, 0xea, 0x78, + 0x77, 0x77, 0x23, 0xc1, 0xe5, 0x23, 0xd5, 0x25, 0xcc, 0x45, 0x03, 0x21, 0x1c, 0x2d, 0x33, 0x07, + 0xc2, 0xd1, 0x1a, 0x53, 0x0a, 0xc2, 0xd1, 0x5a, 0x33, 0x1d, 0xc2, 0xd1, 0x86, 0x06, 0x42, 0x38, + 0x32, 0x28, 0x93, 0xc0, 0x3a, 0xe6, 0x1b, 0x60, 0xd0, 0xc0, 0x75, 0xcc, 0x19, 0xaf, 0xe0, 0x2c, + 0x88, 0xaf, 0x1f, 0xb1, 0x94, 0x49, 0x93, 0xa5, 0x92, 0xe9, 0x1d, 0x91, 0xf0, 0x49, 0x22, 0x3d, + 0x24, 0xc0, 0x4b, 0xc1, 0x4b, 0xc1, 0x4b, 0xc1, 0x4b, 0xc1, 0x4b, 0xc1, 0x4b, 0x95, 0xc7, 0x2d, + 0x3e, 0xb4, 0xdd, 0x6e, 0xd7, 0x67, 0x41, 0x40, 0x91, 0x9a, 0x56, 0x08, 0xd9, 0x14, 0x8d, 0x21, + 0x16, 0x35, 0x5f, 0x3d, 0xb3, 0xee, 0x0b, 0x04, 0xe7, 0x56, 0x62, 0x8e, 0x1d, 0x13, 0xb4, 0xed, + 0xd2, 0x95, 0x92, 0xf9, 0x82, 0xdc, 0x74, 0x8b, 0x0d, 0xfc, 0x6f, 0x7f, 0xff, 0xf6, 0xd0, 0xae, + 0x34, 0x9f, 0x6e, 0x73, 0x76, 0xa5, 0x19, 0x5e, 0xe6, 0xa6, 0xdf, 0xc2, 0xeb, 0xfc, 0xed, 0xa1, + 0x5d, 0x98, 0x5d, 0x17, 0x6f, 0x0f, 0xed, 0x62, 0xf3, 0xe0, 0xdf, 0x7f, 0x3f, 0x1c, 0xfc, 0x3a, + 0x1a, 0xaf, 0xff, 0xc1, 0xbf, 0x2c, 0x72, 0x0f, 0xa1, 0x49, 0x6b, 0x79, 0xe8, 0x3d, 0x82, 0xd2, + 0xab, 0x83, 0x52, 0x09, 0x41, 0x69, 0xbb, 0x83, 0x92, 0x6b, 0xf7, 0xaa, 0xf6, 0xe7, 0xe6, 0xaf, + 0xdc, 0xfb, 0xc2, 0xf8, 0xe4, 0xe0, 0x57, 0x79, 0xbc, 0xf8, 0xe2, 0xd3, 0xb2, 0xb7, 0xe5, 0xde, + 0x97, 0xc7, 0x27, 0x2b, 0x7e, 0x52, 0x1a, 0x9f, 0xbc, 0xf2, 0x77, 0x14, 0xc7, 0xfb, 0x89, 0xb7, + 0x4e, 0x5e, 0xcf, 0xaf, 0xfa, 0x40, 0x61, 0xc5, 0x07, 0x8e, 0x56, 0x7d, 0xe0, 0x68, 0xc5, 0x07, + 0x56, 0x9a, 0x94, 0x5f, 0xf1, 0x81, 0xe2, 0xf8, 0x29, 0xf1, 0xfe, 0xfd, 0xe5, 0x6f, 0x2d, 0x8d, + 0x0f, 0x9e, 0x56, 0xfd, 0xac, 0x3c, 0x7e, 0x3a, 0x39, 0x40, 0x88, 0x36, 0x23, 0x1f, 0xda, 0xc3, + 0x0a, 0x3e, 0x25, 0xd0, 0xb4, 0xd8, 0x83, 0xb4, 0xc9, 0xaf, 0xe2, 0x2f, 0x33, 0x12, 0x8a, 0xe9, + 0x32, 0x73, 0xa0, 0x98, 0xae, 0x31, 0xad, 0xa0, 0x98, 0xae, 0x35, 0xd3, 0xa1, 0x98, 0x6e, 0x68, + 0x20, 0x14, 0x53, 0x83, 0x52, 0x49, 0xac, 0xe4, 0xbf, 0x25, 0x6b, 0x34, 0x6f, 0x25, 0xff, 0x25, + 0xb7, 0xe0, 0x2c, 0x98, 0xfb, 0x37, 0x56, 0xf4, 0x89, 0xb2, 0x56, 0x2e, 0xee, 0xdd, 0x01, 0xef, + 0xda, 0x3e, 0x73, 0x03, 0x4f, 0xd0, 0x23, 0xac, 0x0b, 0xf6, 0x81, 0xab, 0x82, 0xab, 0x82, 0xab, + 0x82, 0xab, 0x82, 0xab, 0x82, 0xab, 0xee, 0x18, 0x57, 0xe5, 0x5d, 0x26, 0x24, 0x97, 0x8f, 0x44, + 0xf9, 0x2a, 0xa1, 0xfd, 0x69, 0x56, 0x2d, 0x7a, 0x54, 0x1f, 0xdd, 0x80, 0x60, 0x48, 0x9d, 0x0d, + 0x68, 0xed, 0xe2, 0x6b, 0xf5, 0xbc, 0x76, 0xda, 0x6a, 0xd4, 0x6f, 0xae, 0xcf, 0x5a, 0x8d, 0xb3, + 0xea, 0x55, 0xfd, 0x82, 0x5a, 0x74, 0x9d, 0x6e, 0x43, 0x0c, 0x48, 0x2e, 0x13, 0x11, 0xdd, 0x57, + 0xba, 0x38, 0xba, 0xd5, 0xab, 0xd6, 0x79, 0xbd, 0x7e, 0x69, 0x61, 0xc7, 0xf0, 0xd6, 0x0c, 0xe9, + 0xa7, 0xfa, 0xc5, 0xe7, 0xb3, 0x53, 0x8c, 0xe8, 0xf6, 0x8c, 0x68, 0xbd, 0x51, 0xfb, 0xbb, 0x76, + 0x51, 0xbd, 0xae, 0x37, 0x30, 0xaa, 0x5b, 0xe4, 0xa7, 0xe7, 0x37, 0x57, 0xd7, 0x67, 0x0d, 0xaa, + 0xf1, 0x97, 0x94, 0x45, 0x4d, 0xe4, 0x23, 0xc4, 0xac, 0xa0, 0xa0, 0x0e, 0x0e, 0xdc, 0x40, 0xda, + 0x77, 0x5e, 0x97, 0xf7, 0x38, 0xeb, 0xd2, 0x13, 0x07, 0xe7, 0xcd, 0x83, 0x36, 0xb8, 0xcc, 0x1c, + 0x68, 0x83, 0x6b, 0x4c, 0x28, 0x68, 0x83, 0x6b, 0xcd, 0x74, 0x68, 0x83, 0x1b, 0x1a, 0x08, 0x6d, + 0xd0, 0x20, 0x06, 0x4c, 0x58, 0x1b, 0x94, 0xfc, 0x8e, 0x49, 0xde, 0xf9, 0x11, 0x94, 0x0a, 0x04, + 0xb5, 0x41, 0x42, 0x05, 0xd0, 0xd6, 0x8d, 0x08, 0xbb, 0x54, 0x59, 0xc2, 0x15, 0x5e, 0xc0, 0x3a, + 0x9e, 0xe8, 0x92, 0xda, 0x2d, 0x85, 0x7e, 0x8b, 0xaf, 0x7c, 0x50, 0xe8, 0xb7, 0xf8, 0x76, 0xf3, + 0xd0, 0x6f, 0x71, 0x1b, 0x55, 0x19, 0xf4, 0x5b, 0x4c, 0xc1, 0x25, 0x72, 0xc7, 0x85, 0x42, 0xa9, + 0x5c, 0x28, 0x1c, 0x96, 0x8f, 0xca, 0x87, 0x95, 0x62, 0x31, 0x57, 0xca, 0xa1, 0xf3, 0xa2, 0xe1, + 0xfc, 0x91, 0x9e, 0x35, 0xd8, 0xb7, 0x41, 0x26, 0x8a, 0x92, 0x39, 0x35, 0x3f, 0x41, 0xea, 0x69, + 0x9c, 0x9e, 0x1f, 0x9b, 0x75, 0xca, 0x7a, 0xee, 0x68, 0x30, 0x4d, 0x55, 0x0f, 0xa1, 0xb5, 0x2d, + 0x35, 0x07, 0x5a, 0xdb, 0x1a, 0xd3, 0x1b, 0x5a, 0xdb, 0x5a, 0x33, 0x1d, 0x5a, 0xdb, 0x86, 0x06, + 0x42, 0x6b, 0x33, 0x28, 0xaf, 0xc1, 0xb1, 0x21, 0xeb, 0xa3, 0x20, 0x8e, 0x0d, 0xf9, 0xd3, 0x17, + 0x64, 0xac, 0xad, 0xcc, 0xd9, 0x21, 0x63, 0x99, 0x1e, 0xee, 0xe7, 0x5d, 0x02, 0x32, 0xd6, 0xc6, + 0x2e, 0x81, 0x63, 0x43, 0xb6, 0x85, 0x90, 0xd1, 0xb3, 0x06, 0xe2, 0x15, 0x99, 0xd8, 0x69, 0x45, + 0x9b, 0x23, 0xbd, 0x91, 0x64, 0xf4, 0x04, 0xac, 0x97, 0xc6, 0x41, 0x30, 0x5a, 0x66, 0x0e, 0x04, + 0xa3, 0x35, 0xa6, 0x13, 0x04, 0xa3, 0xb5, 0x66, 0x3a, 0x04, 0xa3, 0x0d, 0x0d, 0x84, 0x60, 0x64, + 0x50, 0x06, 0x41, 0x58, 0x30, 0x6a, 0x7b, 0xde, 0x80, 0xb9, 0x82, 0xe2, 0xa6, 0xcd, 0x1c, 0xa8, + 0x1c, 0x01, 0x0b, 0x34, 0xbb, 0x90, 0x55, 0x15, 0xc2, 0x93, 0xee, 0x24, 0x1b, 0x23, 0xe1, 0x40, + 0x56, 0xd0, 0xf9, 0xc6, 0xee, 0xdc, 0x61, 0xd4, 0x74, 0xc6, 0xf1, 0x86, 0x4c, 0x74, 0xa6, 0x44, + 0xc9, 0x16, 0x4c, 0xfe, 0xf4, 0xfc, 0x1f, 0x36, 0x17, 0x81, 0x74, 0x45, 0x87, 0x39, 0x8b, 0x2f, + 0x04, 0x89, 0x57, 0x9c, 0xa1, 0xef, 0x49, 0xaf, 0xe3, 0x0d, 0x82, 0xf8, 0xca, 0x69, 0xf7, 0x87, + 0x8e, 0xcf, 0xdb, 0x8e, 0xdb, 0xe3, 0x76, 0xe0, 0xf6, 0x78, 0x10, 0x5f, 0x39, 0xd3, 0xa6, 0xb2, + 0x81, 0x2f, 0x99, 0x3d, 0xf4, 0x06, 0xbc, 0xf3, 0xe8, 0x08, 0xc6, 0xfb, 0xdf, 0xda, 0x9e, 0x1f, + 0xc4, 0x57, 0x8e, 0xdb, 0xfd, 0x3e, 0x45, 0x03, 0x2e, 0xec, 0xa1, 0xcf, 0x9c, 0x29, 0xc1, 0x0d, + 0xc2, 0x6f, 0x61, 0x9b, 0x1b, 0xbd, 0x18, 0xa1, 0x6f, 0x32, 0x6b, 0x9c, 0xc8, 0xd6, 0x48, 0xfc, + 0x10, 0xde, 0x4f, 0x61, 0xbb, 0x52, 0xfa, 0xbc, 0x3d, 0x19, 0x11, 0xed, 0x93, 0xf9, 0x79, 0xc9, + 0x20, 0x69, 0x9b, 0x66, 0x97, 0x9f, 0x01, 0x80, 0x66, 0x33, 0xa8, 0xe4, 0x3f, 0x94, 0xf2, 0x1e, + 0x9a, 0xf9, 0x0e, 0xb5, 0x3c, 0x87, 0x6c, 0x7e, 0x43, 0x36, 0xaf, 0x21, 0x9b, 0xcf, 0xec, 0x36, + 0xf9, 0x3a, 0xe5, 0x3e, 0x8d, 0xb0, 0x93, 0x00, 0x29, 0x7a, 0x82, 0x62, 0xd2, 0x44, 0x5a, 0xb2, + 0x62, 0x0e, 0xb2, 0x22, 0x79, 0x78, 0xa5, 0x0d, 0xb3, 0x54, 0xe1, 0x96, 0x3c, 0xec, 0x92, 0x87, + 0x5f, 0xf2, 0x30, 0x4c, 0x47, 0x8d, 0xd9, 0x23, 0x24, 0x2b, 0x52, 0x81, 0xe7, 0xd8, 0xa0, 0x09, + 0xf6, 0xd9, 0x92, 0x9a, 0xd8, 0x39, 0x17, 0x51, 0x9f, 0x4d, 0x24, 0xe6, 0x7a, 0x34, 0x8b, 0x37, + 0xc8, 0xc1, 0x35, 0x65, 0xd8, 0x36, 0x03, 0xbe, 0xa9, 0xc3, 0xb8, 0x31, 0x70, 0x6e, 0x0c, 0xac, + 0x1b, 0x03, 0xef, 0xb4, 0x60, 0x9e, 0x18, 0xdc, 0xc7, 0xa3, 0x78, 0x4d, 0x11, 0x60, 0xf7, 0x68, + 0x1f, 0x5d, 0x90, 0xc8, 0x86, 0xcb, 0x34, 0x0f, 0xbe, 0x9b, 0x1d, 0x65, 0x10, 0x9e, 0x48, 0xf0, + 0x4c, 0x56, 0x50, 0xee, 0x47, 0xdd, 0x35, 0xad, 0x70, 0x75, 0x8d, 0x2c, 0xf1, 0x0d, 0xcd, 0xa3, + 0x49, 0x7a, 0x73, 0x20, 0xbd, 0x20, 0xbd, 0x20, 0xbd, 0x20, 0xbd, 0x20, 0xbd, 0x40, 0xd6, 0xe5, + 0xa3, 0x48, 0x4d, 0xeb, 0x8a, 0x0d, 0x9b, 0x72, 0xb4, 0x01, 0x23, 0xbc, 0x53, 0x6e, 0x4e, 0xfa, + 0x9a, 0x58, 0xfa, 0x1e, 0xdb, 0x97, 0xb6, 0x88, 0x14, 0x98, 0x40, 0x0e, 0xcc, 0x22, 0x09, 0xa6, + 0x90, 0x05, 0xe3, 0x48, 0x83, 0x71, 0xe4, 0xc1, 0x38, 0x12, 0x41, 0x93, 0x4c, 0x10, 0x25, 0x15, + 0xf1, 0xe8, 0x92, 0x55, 0xd4, 0x12, 0x71, 0x73, 0xc4, 0x85, 0xcc, 0x95, 0x28, 0xc7, 0xcc, 0x08, + 0xc5, 0x4b, 0x84, 0x4d, 0xa4, 0xd9, 0x00, 0x62, 0xf1, 0x8b, 0x36, 0xe6, 0xec, 0x51, 0x6f, 0x10, + 0x61, 0x18, 0xbd, 0x4c, 0x98, 0x4b, 0xbc, 0x81, 0x44, 0xc2, 0x5e, 0x03, 0x36, 0xcd, 0x1b, 0x02, + 0x47, 0xf3, 0x2e, 0xe6, 0x3e, 0xc0, 0xc5, 0x32, 0x76, 0xb1, 0x52, 0xb1, 0x78, 0x54, 0x84, 0x9b, + 0xed, 0x16, 0x17, 0xa5, 0x6f, 0x5d, 0xf3, 0x1d, 0x9e, 0x97, 0xa1, 0x61, 0x9c, 0x70, 0x25, 0x5c, + 0x22, 0xa5, 0xa0, 0x5a, 0x11, 0x67, 0x08, 0xaa, 0x40, 0x17, 0x4c, 0x73, 0x32, 0x42, 0x17, 0x4c, + 0xd5, 0x73, 0xa0, 0x0b, 0x66, 0x6c, 0x30, 0x74, 0xc1, 0x2d, 0x4e, 0xc4, 0x0c, 0xd3, 0x05, 0x8f, + 0x0d, 0x90, 0x05, 0x8b, 0x90, 0x05, 0x37, 0xfc, 0x82, 0x2c, 0x08, 0xcd, 0x02, 0xb2, 0xe0, 0x0e, + 0xa2, 0xd1, 0xbc, 0x8b, 0x41, 0x16, 0xcc, 0xdc, 0xc5, 0xf2, 0x45, 0x88, 0x82, 0x3b, 0x46, 0x44, + 0xe9, 0x5b, 0x07, 0x51, 0xd0, 0xd8, 0x20, 0x1e, 0x2a, 0x6d, 0xf7, 0x51, 0x74, 0x31, 0x41, 0x15, + 0x0c, 0x6d, 0x85, 0x2c, 0xf8, 0x16, 0xf3, 0x20, 0x0b, 0xa6, 0x38, 0x1b, 0x21, 0x0b, 0xa6, 0xea, + 0x39, 0x90, 0x05, 0x33, 0x36, 0x18, 0xb2, 0xe0, 0x16, 0x27, 0x62, 0x06, 0xc9, 0x82, 0x6d, 0x2e, + 0x5c, 0xff, 0xd1, 0x00, 0x5d, 0xb0, 0x42, 0xd8, 0xc4, 0x73, 0x26, 0xfa, 0xd3, 0x8d, 0xb9, 0x10, + 0x06, 0x37, 0x55, 0x2d, 0x20, 0x0c, 0x66, 0xae, 0x5a, 0xe4, 0xa0, 0x59, 0xec, 0x18, 0x1e, 0xcd, + 0xbb, 0x18, 0x84, 0xc1, 0xcc, 0x5d, 0x0c, 0xf5, 0x82, 0x3b, 0x48, 0x46, 0xe9, 0x5b, 0x07, 0x69, + 0xd0, 0xd8, 0x30, 0x6e, 0xb1, 0x07, 0xc9, 0x44, 0x97, 0x75, 0xe9, 0x0b, 0x83, 0xb1, 0xa5, 0x90, + 0x05, 0xdf, 0x62, 0x1e, 0x64, 0xc1, 0x14, 0xe7, 0x22, 0x64, 0xc1, 0x54, 0x3d, 0x07, 0xb2, 0x60, + 0xc6, 0x06, 0x43, 0x16, 0xdc, 0xe2, 0x34, 0xcc, 0x24, 0x59, 0x90, 0xdc, 0xa9, 0x5f, 0xab, 0x60, + 0x9c, 0xc8, 0x29, 0x60, 0x20, 0xb5, 0x6f, 0x19, 0x43, 0x6f, 0x38, 0xc9, 0x3c, 0xdd, 0x01, 0x7d, + 0x52, 0x1b, 0x5b, 0x0a, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, + 0x52, 0x0b, 0x52, 0x0b, 0x52, 0x0b, 0xa7, 0x98, 0x1f, 0xc3, 0xa1, 0xeb, 0x4b, 0x6e, 0x02, 0xa7, + 0x9d, 0x19, 0x0a, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0x4a, + 0x0b, 0x4a, 0x0b, 0x4a, 0x0b, 0xa7, 0x98, 0x1f, 0x43, 0xe9, 0xbb, 0x22, 0xe0, 0x92, 0xdf, 0x1b, + 0xb0, 0x2f, 0xe9, 0x85, 0xad, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, + 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0x20, 0xb6, 0xb0, 0x88, 0xa8, 0x8b, 0x5a, 0x55, 0x21, 0x3c, 0xe9, + 0x4a, 0xee, 0xd1, 0xdc, 0x00, 0x65, 0x05, 0x9d, 0x6f, 0xec, 0xce, 0x1d, 0x46, 0x07, 0x50, 0x3a, + 0xde, 0x90, 0x89, 0xce, 0x94, 0x28, 0xda, 0x82, 0xc9, 0x9f, 0x9e, 0xff, 0xc3, 0xe6, 0x22, 0x90, + 0xae, 0xe8, 0x30, 0x67, 0xf1, 0x85, 0x20, 0xf1, 0x8a, 0x33, 0xf4, 0x3d, 0xe9, 0x75, 0xbc, 0x41, + 0x10, 0x5f, 0x39, 0xed, 0xfe, 0xd0, 0xf1, 0x79, 0xdb, 0x71, 0x7b, 0xdc, 0x0e, 0xdc, 0x1e, 0x0f, + 0xe2, 0x2b, 0x87, 0x0f, 0xef, 0x4b, 0x76, 0xe0, 0x4b, 0x66, 0x0f, 0xbd, 0x01, 0xef, 0x3c, 0x3a, + 0x82, 0xf1, 0xfe, 0xb7, 0xb6, 0xe7, 0x07, 0xf1, 0x95, 0xe3, 0x76, 0xbf, 0x4f, 0xd1, 0x8a, 0x0b, + 0x7b, 0xe8, 0x33, 0xc7, 0xf7, 0x46, 0x92, 0x05, 0xe1, 0x37, 0x67, 0x24, 0x7e, 0x08, 0xef, 0xa7, + 0xb0, 0x5d, 0x29, 0x7d, 0xde, 0x9e, 0xfe, 0x20, 0xf1, 0x52, 0x78, 0xa0, 0x26, 0x8e, 0xd1, 0xa4, + 0x6c, 0x09, 0x95, 0x63, 0xf5, 0xff, 0x61, 0x8f, 0x14, 0xfb, 0xe2, 0x5a, 0xe7, 0x3c, 0x90, 0x55, + 0x29, 0x89, 0x9d, 0xf9, 0xff, 0x85, 0x8b, 0xb3, 0x01, 0x9b, 0x90, 0xca, 0xc0, 0x3a, 0xd9, 0x13, + 0xa3, 0xc1, 0x80, 0xd0, 0x99, 0xac, 0x5f, 0xdc, 0x07, 0xba, 0xc6, 0xd5, 0xfd, 0x2e, 0xf3, 0x59, + 0xf7, 0xe3, 0x63, 0x64, 0x1a, 0x9c, 0x90, 0x3e, 0x60, 0x6e, 0x3d, 0x50, 0x5a, 0xa4, 0x4e, 0x54, + 0xf6, 0x47, 0x1d, 0x29, 0xa2, 0x9c, 0xe1, 0x22, 0x7c, 0x78, 0xb5, 0xe8, 0xd9, 0xb5, 0x2e, 0xa3, + 0x27, 0xd6, 0xfa, 0xd8, 0x1f, 0xb6, 0x1a, 0xbc, 0xdd, 0xaa, 0xf6, 0xf8, 0x95, 0xdb, 0xe3, 0xad, + 0xda, 0xf0, 0xbe, 0x74, 0xe5, 0x4b, 0x76, 0x39, 0x7d, 0x48, 0xad, 0x8b, 0xe8, 0xd1, 0xb4, 0xaa, + 0xdd, 0xef, 0x0d, 0xde, 0xae, 0x89, 0x4b, 0x9f, 0xb5, 0x1a, 0x93, 0x07, 0xd2, 0xba, 0x09, 0xff, + 0xfa, 0x6a, 0xfc, 0xc7, 0xbf, 0x03, 0x1a, 0xeb, 0xb7, 0x40, 0x73, 0x08, 0xa2, 0x16, 0x7a, 0xb6, + 0x2c, 0xe4, 0xe8, 0xf5, 0x31, 0x7d, 0x33, 0x5b, 0xcf, 0x9d, 0x35, 0xf9, 0xd2, 0x8c, 0x43, 0x4f, + 0x26, 0xad, 0xcd, 0xbb, 0x7b, 0x4c, 0x74, 0x87, 0x1e, 0x17, 0x72, 0xaf, 0xe3, 0x0d, 0x3c, 0x5f, + 0x13, 0xc6, 0xd0, 0x20, 0xd0, 0xa4, 0x08, 0x33, 0x29, 0x82, 0x4c, 0x83, 0x10, 0xeb, 0xf2, 0x18, + 0x22, 0xa8, 0x63, 0x32, 0xda, 0x68, 0xe4, 0xae, 0x99, 0x73, 0x55, 0x3d, 0xb0, 0xa9, 0x1e, 0xb4, + 0xd4, 0xde, 0x51, 0xb1, 0xb3, 0xeb, 0x76, 0x72, 0x33, 0x9d, 0x5b, 0xed, 0xd4, 0x57, 0x37, 0x01, + 0xd5, 0xdc, 0x49, 0xd1, 0x14, 0xd7, 0x35, 0xb5, 0x0d, 0x9b, 0xd2, 0x0a, 0x21, 0x2a, 0x43, 0x48, + 0x52, 0xe3, 0x91, 0xd9, 0xfb, 0x87, 0x02, 0xdf, 0xb0, 0x66, 0xe3, 0xef, 0x8d, 0xa4, 0x3d, 0xf4, + 0x02, 0xa9, 0xcc, 0x3b, 0x9e, 0x5b, 0x79, 0x2f, 0x5a, 0xa0, 0x28, 0x22, 0xcc, 0x56, 0xd0, 0x15, + 0xdd, 0x4e, 0x75, 0x61, 0x9b, 0x8e, 0x42, 0x35, 0xbd, 0x85, 0x67, 0xba, 0x0a, 0xc9, 0xb4, 0x17, + 0x86, 0x69, 0x2f, 0xf4, 0xd2, 0x5e, 0xb8, 0xb5, 0x5d, 0x5c, 0xe5, 0x94, 0xab, 0xd5, 0x80, 0xac, + 0x88, 0xc8, 0x2a, 0x77, 0x9c, 0x59, 0xb8, 0x88, 0xee, 0xaf, 0x78, 0xd2, 0xaa, 0x05, 0x00, 0x6d, + 0x40, 0xa0, 0x13, 0x10, 0x68, 0x00, 0x83, 0x6e, 0x80, 0x20, 0x03, 0x14, 0x64, 0x00, 0x83, 0x0c, + 0x70, 0xec, 0x86, 0xae, 0xa3, 0x1a, 0x50, 0xe6, 0x81, 0x45, 0x9f, 0xbf, 0xcd, 0xe1, 0x8b, 0x2e, + 0x5f, 0xd3, 0x03, 0x33, 0xda, 0xe1, 0x86, 0x02, 0xec, 0xd0, 0x82, 0x1f, 0x2a, 0x30, 0x44, 0x0e, + 0x8e, 0xc8, 0xc1, 0x12, 0x39, 0x78, 0xd2, 0x03, 0x53, 0x9a, 0xe0, 0x4a, 0x3b, 0x6c, 0xc5, 0x06, + 0x84, 0xe5, 0x00, 0xda, 0xfd, 0x74, 0x16, 0xbd, 0x74, 0x56, 0x27, 0x2c, 0xc2, 0x99, 0xe6, 0xed, + 0x99, 0x64, 0xf6, 0x89, 0x52, 0xda, 0x0f, 0x4a, 0x73, 0xdf, 0x27, 0xb5, 0xfd, 0x9d, 0x64, 0xf7, + 0x71, 0x92, 0xdd, 0xaf, 0x49, 0x76, 0x5f, 0xe6, 0x6e, 0x17, 0x82, 0x92, 0xd9, 0x4f, 0x19, 0xc7, + 0x9d, 0x01, 0x73, 0x7b, 0x3e, 0xeb, 0x51, 0x08, 0x3a, 0xb3, 0xac, 0xab, 0x4c, 0xc0, 0x96, 0xcb, + 0x68, 0xf5, 0xf7, 0xc3, 0x87, 0x70, 0x9f, 0x97, 0x13, 0x02, 0xf9, 0xae, 0x56, 0x9a, 0x6a, 0xcc, + 0xbc, 0x66, 0x85, 0x9e, 0x74, 0x38, 0x5d, 0x6c, 0x11, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, + 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x9d, 0x91, 0xb4, 0x2e, 0xc6, 0x72, 0x30, 0x3b, 0xe5, 0x83, + 0x11, 0x6d, 0xe5, 0xa1, 0x43, 0xec, 0x66, 0x06, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, + 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x19, 0xc9, 0xeb, 0x66, 0x50, 0x0e, 0x5a, 0xa7, 0x7c, 0x2c, + 0xc2, 0xbe, 0x58, 0x64, 0x48, 0x5d, 0x68, 0x0e, 0x0d, 0x4a, 0x97, 0x03, 0xa5, 0x03, 0xa5, 0x03, + 0xa5, 0x03, 0xa5, 0x03, 0xa5, 0xd3, 0x35, 0x2a, 0xba, 0x0b, 0x94, 0x62, 0x43, 0xa6, 0xcd, 0x00, + 0xb9, 0xe8, 0x32, 0x3a, 0x8d, 0xc9, 0x9f, 0xf7, 0xf7, 0x3d, 0xdb, 0x46, 0xa5, 0x83, 0x22, 0xa9, + 0x16, 0xf8, 0xe4, 0x5a, 0xde, 0x53, 0x6c, 0x71, 0x4f, 0xbb, 0xa5, 0x3d, 0xd5, 0x16, 0xf6, 0xe4, + 0x5b, 0xd6, 0x93, 0x6f, 0x51, 0x4f, 0xbe, 0x25, 0x3d, 0x7a, 0xe3, 0x92, 0xd4, 0x58, 0x08, 0x6b, + 0x2d, 0x14, 0x35, 0x97, 0x65, 0xda, 0xcb, 0x6f, 0xfe, 0x9b, 0x52, 0x8a, 0x80, 0xc9, 0x20, 0xbe, + 0x8a, 0x94, 0x9a, 0x90, 0x66, 0xa0, 0x4d, 0x26, 0x15, 0xa7, 0x24, 0x52, 0x41, 0x9f, 0xf0, 0x46, + 0x0a, 0x95, 0xf4, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xca, + 0xe3, 0xd6, 0x88, 0x0b, 0x79, 0x94, 0x27, 0xc8, 0x46, 0x29, 0x91, 0xd1, 0x86, 0x2b, 0xfa, 0x93, + 0xa7, 0x75, 0x4b, 0x2a, 0x06, 0x10, 0x3c, 0x9e, 0xe7, 0x0b, 0x17, 0x74, 0x8f, 0xe6, 0x24, 0x7e, + 0xe0, 0xe5, 0x57, 0x77, 0x30, 0x62, 0x84, 0xed, 0xfb, 0xec, 0xbb, 0x1d, 0xc9, 0x3d, 0x71, 0xca, + 0xfb, 0x7c, 0xda, 0x85, 0xf9, 0x10, 0x87, 0xd6, 0xbe, 0xc6, 0x25, 0xdc, 0x07, 0xb8, 0xc4, 0x86, + 0x2e, 0x51, 0xc8, 0x57, 0x0a, 0x95, 0x52, 0x39, 0x5f, 0x29, 0xc2, 0x37, 0xcc, 0x26, 0x64, 0xf4, + 0xac, 0x69, 0x42, 0x24, 0xa2, 0x12, 0x3b, 0xad, 0x8e, 0x77, 0x77, 0x37, 0x12, 0x5c, 0x3e, 0x52, + 0x5d, 0xc2, 0x5c, 0x34, 0x10, 0xc2, 0xd1, 0x32, 0x73, 0x20, 0x1c, 0xad, 0x31, 0xa5, 0x20, 0x1c, + 0xad, 0x35, 0xd3, 0x21, 0x1c, 0x6d, 0x68, 0x20, 0x84, 0x23, 0x83, 0x32, 0x09, 0xac, 0x63, 0xbe, + 0x01, 0x06, 0x0d, 0x5c, 0xc7, 0x9c, 0xf1, 0x0a, 0xce, 0x82, 0xf8, 0xfa, 0x11, 0x4b, 0x99, 0x34, + 0x59, 0x2a, 0x99, 0xde, 0x11, 0x09, 0x9f, 0x24, 0xd2, 0x43, 0x02, 0xbc, 0x14, 0xbc, 0x14, 0xbc, + 0x14, 0xbc, 0x14, 0xbc, 0x14, 0xbc, 0x54, 0x79, 0xdc, 0xe2, 0x43, 0xdb, 0xed, 0x76, 0x7d, 0x16, + 0x04, 0x14, 0xa9, 0x69, 0x85, 0x90, 0x4d, 0xd1, 0x18, 0x62, 0x51, 0xf3, 0xd5, 0x33, 0xeb, 0xbe, + 0x40, 0x70, 0x6e, 0x25, 0xe6, 0xd8, 0x31, 0x41, 0xdb, 0x2e, 0x5d, 0x29, 0x99, 0x2f, 0xc8, 0x4d, + 0xb7, 0xd8, 0xc0, 0xff, 0xf6, 0xf7, 0x6f, 0x0f, 0xed, 0x4a, 0xf3, 0xe9, 0x36, 0x67, 0x57, 0x9a, + 0xe1, 0x65, 0x6e, 0xfa, 0x2d, 0xbc, 0xce, 0xdf, 0x1e, 0xda, 0x85, 0xd9, 0x75, 0xf1, 0xf6, 0xd0, + 0x2e, 0x36, 0x0f, 0xfe, 0xfd, 0xf7, 0xc3, 0xc1, 0xaf, 0xa3, 0xf1, 0xfa, 0x1f, 0xfc, 0xcb, 0x22, + 0xf7, 0x10, 0x9a, 0xb4, 0x96, 0x87, 0xde, 0x23, 0x28, 0xbd, 0x3a, 0x28, 0x95, 0x10, 0x94, 0xb6, + 0x3b, 0x28, 0xb9, 0x76, 0xaf, 0x6a, 0x7f, 0x6e, 0xfe, 0xca, 0xbd, 0x2f, 0x8c, 0x4f, 0x0e, 0x7e, + 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2d, 0x7b, 0x5b, 0xee, 0x7d, 0x79, 0x7c, 0xb2, 0xe2, 0x27, 0xa5, + 0xf1, 0xc9, 0x2b, 0x7f, 0x47, 0x71, 0xbc, 0x9f, 0x78, 0xeb, 0xe4, 0xf5, 0xfc, 0xaa, 0x0f, 0x14, + 0x56, 0x7c, 0xe0, 0x68, 0xd5, 0x07, 0x8e, 0x56, 0x7c, 0x60, 0xa5, 0x49, 0xf9, 0x15, 0x1f, 0x28, + 0x8e, 0x9f, 0x12, 0xef, 0xdf, 0x5f, 0xfe, 0xd6, 0xd2, 0xf8, 0xe0, 0x69, 0xd5, 0xcf, 0xca, 0xe3, + 0xa7, 0x93, 0x03, 0x84, 0x68, 0x33, 0xf2, 0xa1, 0x3d, 0xac, 0xe0, 0x53, 0x02, 0x4d, 0x8b, 0x3d, + 0x48, 0x9b, 0xfc, 0x2a, 0xfe, 0x32, 0x23, 0xa1, 0x98, 0x2e, 0x33, 0x07, 0x8a, 0xe9, 0x1a, 0xd3, + 0x0a, 0x8a, 0xe9, 0x5a, 0x33, 0x1d, 0x8a, 0xe9, 0x86, 0x06, 0x42, 0x31, 0x35, 0x28, 0x95, 0xc4, + 0x4a, 0xfe, 0x5b, 0xb2, 0x46, 0xf3, 0x56, 0xf2, 0x5f, 0x72, 0x0b, 0xce, 0x82, 0xb9, 0x7f, 0x63, + 0x45, 0x9f, 0x28, 0x6b, 0xe5, 0xe2, 0xde, 0x1d, 0xf0, 0xae, 0xed, 0x33, 0x37, 0xf0, 0x04, 0x3d, + 0xc2, 0xba, 0x60, 0x1f, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0xea, + 0x8e, 0x71, 0x55, 0xde, 0x65, 0x42, 0x72, 0xf9, 0x48, 0x94, 0xaf, 0x12, 0xda, 0x9f, 0x66, 0xd5, + 0xa2, 0x47, 0xf5, 0xd1, 0x0d, 0x08, 0x86, 0xd4, 0xd9, 0x80, 0xd6, 0x2e, 0xbe, 0x56, 0xcf, 0x6b, + 0xa7, 0xad, 0x46, 0xfd, 0xe6, 0xfa, 0xac, 0xd5, 0x38, 0xab, 0x5e, 0xd5, 0x2f, 0xa8, 0x45, 0xd7, + 0xe9, 0x36, 0xc4, 0x80, 0xe4, 0x32, 0x11, 0xd1, 0x7d, 0xa5, 0x8b, 0xa3, 0x5b, 0xbd, 0x6a, 0x9d, + 0xd7, 0xeb, 0x97, 0x16, 0x76, 0x0c, 0x6f, 0xcd, 0x90, 0x7e, 0xaa, 0x5f, 0x7c, 0x3e, 0x3b, 0xc5, + 0x88, 0x6e, 0xcf, 0x88, 0xd6, 0x1b, 0xb5, 0xbf, 0x6b, 0x17, 0xd5, 0xeb, 0x7a, 0x03, 0xa3, 0xba, + 0x45, 0x7e, 0x7a, 0x7e, 0x73, 0x75, 0x7d, 0xd6, 0xa0, 0x1a, 0x7f, 0x49, 0x59, 0xd4, 0x44, 0x3e, + 0x42, 0xcc, 0x0a, 0x0a, 0xea, 0xe0, 0xc0, 0x0d, 0xa4, 0x7d, 0xe7, 0x75, 0x79, 0x8f, 0xb3, 0x2e, + 0x3d, 0x71, 0x70, 0xde, 0x3c, 0x68, 0x83, 0xcb, 0xcc, 0x81, 0x36, 0xb8, 0xc6, 0x84, 0x82, 0x36, + 0xb8, 0xd6, 0x4c, 0x87, 0x36, 0xb8, 0xa1, 0x81, 0xd0, 0x06, 0x0d, 0x62, 0xc0, 0x84, 0xb5, 0x41, + 0xc9, 0xef, 0x98, 0xe4, 0x9d, 0x1f, 0x41, 0xa9, 0x40, 0x50, 0x1b, 0x24, 0x54, 0x00, 0x6d, 0xdd, + 0x88, 0xb0, 0x4b, 0x95, 0x25, 0x5c, 0xe1, 0x05, 0xac, 0xe3, 0x89, 0x2e, 0xa9, 0xdd, 0x52, 0xe8, + 0xb7, 0xf8, 0xca, 0x07, 0x85, 0x7e, 0x8b, 0x6f, 0x37, 0x0f, 0xfd, 0x16, 0xb7, 0x51, 0x95, 0x41, + 0xbf, 0xc5, 0x14, 0x5c, 0x22, 0x77, 0x5c, 0x28, 0x94, 0xca, 0x85, 0xc2, 0x61, 0xf9, 0xa8, 0x7c, + 0x58, 0x29, 0x16, 0x73, 0xa5, 0x1c, 0x3a, 0x2f, 0x1a, 0xce, 0x1f, 0xe9, 0x59, 0x83, 0x7d, 0x1b, + 0x64, 0xa2, 0x28, 0x99, 0x53, 0xf3, 0x13, 0xa4, 0x9e, 0xc6, 0xe9, 0xf9, 0xb1, 0x59, 0xa7, 0xac, + 0xe7, 0x8e, 0x06, 0xd3, 0x54, 0xf5, 0x10, 0x5a, 0xdb, 0x52, 0x73, 0xa0, 0xb5, 0xad, 0x31, 0xbd, + 0xa1, 0xb5, 0xad, 0x35, 0xd3, 0xa1, 0xb5, 0x6d, 0x68, 0x20, 0xb4, 0x36, 0x83, 0xf2, 0x1a, 0x1c, + 0x1b, 0xb2, 0x3e, 0x0a, 0xe2, 0xd8, 0x90, 0x3f, 0x7d, 0x41, 0xc6, 0xda, 0xca, 0x9c, 0x1d, 0x32, + 0x96, 0xe9, 0xe1, 0x7e, 0xde, 0x25, 0x20, 0x63, 0x6d, 0xec, 0x12, 0x38, 0x36, 0x64, 0x5b, 0x08, + 0x19, 0x3d, 0x6b, 0x20, 0x5e, 0x91, 0x89, 0x9d, 0x56, 0xb4, 0x39, 0xd2, 0x1b, 0x49, 0x46, 0x4f, + 0xc0, 0x7a, 0x69, 0x1c, 0x04, 0xa3, 0x65, 0xe6, 0x40, 0x30, 0x5a, 0x63, 0x3a, 0x41, 0x30, 0x5a, + 0x6b, 0xa6, 0x43, 0x30, 0xda, 0xd0, 0x40, 0x08, 0x46, 0x06, 0x65, 0x10, 0x84, 0x05, 0xa3, 0xb6, + 0xe7, 0x0d, 0x98, 0x2b, 0x28, 0x6e, 0xda, 0xcc, 0x81, 0xca, 0x11, 0xb0, 0x40, 0xb3, 0x0b, 0x59, + 0x55, 0x21, 0x3c, 0xe9, 0x4e, 0xb2, 0x31, 0x12, 0x0e, 0x64, 0x05, 0x9d, 0x6f, 0xec, 0xce, 0x1d, + 0x46, 0x4d, 0x67, 0x1c, 0x6f, 0xc8, 0x44, 0x67, 0x4a, 0x94, 0x6c, 0xc1, 0xe4, 0x4f, 0xcf, 0xff, + 0x61, 0x73, 0x11, 0x48, 0x57, 0x74, 0x98, 0xb3, 0xf8, 0x42, 0x90, 0x78, 0xc5, 0x19, 0xfa, 0x9e, + 0xf4, 0x3a, 0xde, 0x20, 0x88, 0xaf, 0x9c, 0x76, 0x7f, 0xe8, 0xf8, 0xbc, 0xed, 0xb8, 0x3d, 0x6e, + 0x07, 0x6e, 0x8f, 0x07, 0xf1, 0x95, 0x33, 0x6d, 0x2a, 0x1b, 0xf8, 0x92, 0xd9, 0x43, 0x6f, 0xc0, + 0x3b, 0x8f, 0x8e, 0x60, 0xbc, 0xff, 0xad, 0xed, 0xf9, 0x41, 0x7c, 0xe5, 0xb8, 0xdd, 0xef, 0x53, + 0x34, 0xf0, 0x46, 0xd2, 0x1e, 0x7a, 0x81, 0x74, 0xa6, 0x14, 0x37, 0x08, 0xbf, 0x85, 0x8d, 0x6e, + 0xf4, 0xa2, 0x84, 0xbe, 0xe9, 0xac, 0x71, 0x2a, 0x5b, 0x23, 0xf1, 0x43, 0x78, 0x3f, 0x85, 0xed, + 0x4a, 0xe9, 0xf3, 0xf6, 0x64, 0x44, 0xb4, 0x4f, 0xe7, 0xe7, 0x45, 0x83, 0xa4, 0x6d, 0x9a, 0x9d, + 0x7e, 0x06, 0x01, 0x9a, 0xcd, 0xa0, 0x92, 0x01, 0x51, 0xca, 0x7c, 0x68, 0x66, 0x3c, 0xd4, 0x32, + 0x1d, 0xb2, 0x19, 0x0e, 0xd9, 0xcc, 0x86, 0x6c, 0x46, 0xb3, 0xdb, 0xf4, 0xeb, 0x94, 0xfb, 0x34, + 0xc2, 0x4e, 0x02, 0xa4, 0xe8, 0x49, 0x8a, 0x49, 0x13, 0x69, 0x09, 0x8b, 0x39, 0x08, 0x8b, 0xe4, + 0xe1, 0x95, 0x36, 0xcc, 0x52, 0x85, 0x5b, 0xf2, 0xb0, 0x4b, 0x1e, 0x7e, 0xc9, 0xc3, 0x30, 0x1d, + 0x3d, 0x66, 0x8f, 0x90, 0xb0, 0x48, 0x05, 0x9e, 0x63, 0x83, 0x26, 0xd8, 0x67, 0x4b, 0x6a, 0x72, + 0xe7, 0x5c, 0x44, 0x7d, 0x36, 0x91, 0x98, 0xeb, 0xd1, 0x2c, 0xdf, 0x20, 0x07, 0xd7, 0x94, 0x61, + 0xdb, 0x0c, 0xf8, 0xa6, 0x0e, 0xe3, 0xc6, 0xc0, 0xb9, 0x31, 0xb0, 0x6e, 0x0c, 0xbc, 0xd3, 0x82, + 0x79, 0x62, 0x70, 0x1f, 0x8f, 0xe2, 0x35, 0x45, 0x80, 0xdd, 0xa3, 0x7d, 0x78, 0x41, 0x22, 0x1b, + 0x2e, 0xd3, 0x3c, 0xfa, 0x6e, 0x76, 0x98, 0x41, 0x78, 0x26, 0xc1, 0x33, 0x59, 0x41, 0xc1, 0x1f, + 0x75, 0xd7, 0xb4, 0xc2, 0xd5, 0x35, 0xb2, 0xc4, 0x37, 0x34, 0x8f, 0x26, 0xe9, 0xcd, 0x81, 0xf4, + 0x82, 0xf4, 0x82, 0xf4, 0x82, 0xf4, 0x82, 0xf4, 0x02, 0x59, 0x97, 0x8f, 0x22, 0x35, 0xad, 0x2b, + 0x36, 0x6c, 0xca, 0xd1, 0x06, 0x8c, 0xf0, 0x5e, 0xb9, 0x39, 0xe9, 0x6b, 0x62, 0xe9, 0x7b, 0x6c, + 0x60, 0xda, 0x22, 0x52, 0x60, 0x02, 0x39, 0x30, 0x8b, 0x24, 0x98, 0x42, 0x16, 0x8c, 0x23, 0x0d, + 0xc6, 0x91, 0x07, 0xe3, 0x48, 0x04, 0x4d, 0x32, 0x41, 0x94, 0x54, 0xc4, 0xa3, 0x4b, 0x56, 0x51, + 0x4b, 0xc4, 0xcd, 0x11, 0x17, 0x32, 0x57, 0xa2, 0x1c, 0x33, 0x23, 0x14, 0x2f, 0x11, 0x36, 0x91, + 0x66, 0x0b, 0x88, 0xc5, 0x2f, 0xda, 0x98, 0xb3, 0x47, 0xbd, 0x45, 0x84, 0x61, 0xf4, 0x32, 0x61, + 0x2e, 0xf1, 0x16, 0x12, 0x09, 0x7b, 0x0d, 0xd8, 0x36, 0x6f, 0x08, 0x1c, 0xcd, 0xbb, 0x98, 0xfb, + 0x00, 0x17, 0xcb, 0xd8, 0xc5, 0x4a, 0xc5, 0xe2, 0x51, 0x11, 0x6e, 0xb6, 0x5b, 0x5c, 0x94, 0xbe, + 0x75, 0xcd, 0x77, 0x78, 0x5e, 0x86, 0x86, 0x71, 0xc2, 0x95, 0x70, 0x89, 0x94, 0x82, 0x6a, 0x45, + 0x9c, 0x21, 0xa8, 0x02, 0x5d, 0x30, 0xcd, 0xc9, 0x08, 0x5d, 0x30, 0x55, 0xcf, 0x81, 0x2e, 0x98, + 0xb1, 0xc1, 0xd0, 0x05, 0xb7, 0x38, 0x11, 0x33, 0x4c, 0x17, 0x3c, 0x36, 0x40, 0x16, 0x2c, 0x42, + 0x16, 0xdc, 0xf0, 0x0b, 0xb2, 0x20, 0x34, 0x0b, 0xc8, 0x82, 0x3b, 0x88, 0x46, 0xf3, 0x2e, 0x06, + 0x59, 0x30, 0x73, 0x17, 0xcb, 0x17, 0x21, 0x0a, 0xee, 0x18, 0x11, 0xa5, 0x6f, 0x1d, 0x44, 0x41, + 0x63, 0x83, 0x78, 0xa8, 0xb4, 0xdd, 0x47, 0xd1, 0xc5, 0x04, 0x55, 0x30, 0xb4, 0x15, 0xb2, 0xe0, + 0x5b, 0xcc, 0x83, 0x2c, 0x98, 0xe2, 0x6c, 0x84, 0x2c, 0x98, 0xaa, 0xe7, 0x40, 0x16, 0xcc, 0xd8, + 0x60, 0xc8, 0x82, 0x5b, 0x9c, 0x88, 0x19, 0x24, 0x0b, 0xb6, 0xb9, 0x70, 0xfd, 0x47, 0x03, 0x74, + 0xc1, 0x0a, 0x61, 0x13, 0xcf, 0x99, 0xe8, 0x4f, 0x37, 0xe6, 0x42, 0x18, 0xdc, 0x54, 0xb5, 0x80, + 0x30, 0x98, 0xb9, 0x6a, 0x91, 0x83, 0x66, 0xb1, 0x63, 0x78, 0x34, 0xef, 0x62, 0x10, 0x06, 0x33, + 0x77, 0x31, 0xd4, 0x0b, 0xee, 0x20, 0x19, 0xa5, 0x6f, 0x1d, 0xa4, 0x41, 0x63, 0xc3, 0xb8, 0xc5, + 0x1e, 0x24, 0x13, 0x5d, 0xd6, 0xa5, 0x2f, 0x0c, 0xc6, 0x96, 0x42, 0x16, 0x7c, 0x8b, 0x79, 0x90, + 0x05, 0x53, 0x9c, 0x8b, 0x90, 0x05, 0x53, 0xf5, 0x1c, 0xc8, 0x82, 0x19, 0x1b, 0x0c, 0x59, 0x70, + 0x8b, 0xd3, 0x30, 0x93, 0x64, 0x41, 0x72, 0xe7, 0x7e, 0xad, 0x82, 0x71, 0x22, 0xe7, 0x80, 0x81, + 0xd4, 0xbe, 0x65, 0x0c, 0xbd, 0xe1, 0x24, 0xf3, 0x74, 0x07, 0xf4, 0x49, 0x6d, 0x6c, 0x29, 0x48, + 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, 0x2d, 0x48, + 0x2d, 0x9c, 0x62, 0x7e, 0x0c, 0x87, 0xae, 0x2f, 0xb9, 0x09, 0x9c, 0x76, 0x66, 0x28, 0x28, 0x2d, + 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, 0x28, 0x2d, + 0x9c, 0x62, 0x7e, 0x0c, 0xa5, 0xef, 0x8a, 0x80, 0x4b, 0x7e, 0x6f, 0xc0, 0xbe, 0xa4, 0x17, 0xb6, + 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, 0x82, 0xd8, + 0x82, 0xd8, 0xc2, 0x22, 0xa2, 0x2e, 0x6a, 0x55, 0x85, 0xf0, 0xa4, 0x2b, 0xb9, 0x47, 0x73, 0x03, + 0x94, 0x15, 0x74, 0xbe, 0xb1, 0x3b, 0x77, 0x18, 0x1d, 0x40, 0xe9, 0x78, 0x43, 0x26, 0x3a, 0x53, + 0xa2, 0x68, 0x0b, 0x26, 0x7f, 0x7a, 0xfe, 0x0f, 0x9b, 0x8b, 0x40, 0xba, 0xa2, 0xc3, 0x9c, 0xc5, + 0x17, 0x82, 0xc4, 0x2b, 0xce, 0xd0, 0xf7, 0xa4, 0xd7, 0xf1, 0x06, 0x41, 0x7c, 0xe5, 0xb4, 0xfb, + 0x43, 0xc7, 0xe7, 0x6d, 0xc7, 0xed, 0x71, 0x3b, 0x70, 0x7b, 0x3c, 0x88, 0xaf, 0x1c, 0x3e, 0xbc, + 0x2f, 0xd9, 0x81, 0x2f, 0x99, 0x3d, 0xf4, 0x06, 0xbc, 0xf3, 0xe8, 0x08, 0xc6, 0xfb, 0xdf, 0xda, + 0x9e, 0x1f, 0xc4, 0x57, 0x8e, 0xdb, 0xfd, 0x3e, 0x45, 0x2b, 0x6f, 0x24, 0xed, 0xa1, 0x17, 0x48, + 0xc7, 0xf7, 0x46, 0x92, 0x05, 0xe1, 0x37, 0x67, 0x24, 0x7e, 0x08, 0xef, 0xa7, 0xb0, 0x5d, 0x29, + 0x7d, 0xde, 0x9e, 0xfe, 0x20, 0xf1, 0x52, 0x78, 0xa4, 0x26, 0x0e, 0xd2, 0xa4, 0x6c, 0x09, 0x95, + 0x83, 0xf5, 0xff, 0x61, 0x8f, 0x14, 0x3b, 0xe3, 0x5a, 0xe7, 0x3c, 0x90, 0x55, 0x29, 0x89, 0x9d, + 0xfa, 0xff, 0x85, 0x8b, 0xb3, 0x01, 0x9b, 0xd0, 0xca, 0xc0, 0x3a, 0xd9, 0x13, 0xa3, 0xc1, 0x80, + 0xd0, 0xa9, 0xac, 0x5f, 0xdc, 0x07, 0xba, 0xc6, 0xd5, 0xfd, 0x2e, 0xf3, 0x59, 0xf7, 0xe3, 0x63, + 0x64, 0x1a, 0x9c, 0x90, 0x3e, 0x64, 0xee, 0x00, 0x54, 0x5a, 0xa4, 0x4e, 0x55, 0xf6, 0x47, 0x1d, + 0x29, 0xa2, 0xbc, 0xe1, 0x22, 0x7c, 0x7c, 0xb5, 0xe8, 0xe9, 0xb5, 0x2e, 0xa3, 0x67, 0xd6, 0xfa, + 0xd8, 0x1f, 0xb6, 0x1a, 0xbc, 0xdd, 0xaa, 0xf6, 0xf8, 0x95, 0xdb, 0xe3, 0xad, 0xda, 0xf0, 0xbe, + 0x74, 0xe5, 0x4b, 0x76, 0x39, 0x7d, 0x4c, 0xad, 0x8b, 0xe8, 0xe1, 0xb4, 0xaa, 0xdd, 0xef, 0x0d, + 0xde, 0xae, 0x8f, 0xe4, 0xa5, 0x17, 0xc8, 0x56, 0x63, 0xf2, 0x48, 0x5a, 0x37, 0xe1, 0xdf, 0x5f, + 0x8d, 0xff, 0xfc, 0x77, 0x40, 0x64, 0xfd, 0x16, 0x68, 0x0e, 0x43, 0xd4, 0xc2, 0xcf, 0xd6, 0x85, + 0x1d, 0xbd, 0x5e, 0xa6, 0x6f, 0x6e, 0xeb, 0xb9, 0xb3, 0x26, 0x6f, 0x9a, 0x31, 0xe9, 0xc9, 0xb4, + 0xb5, 0x79, 0x77, 0x8f, 0x89, 0xee, 0xd0, 0xe3, 0x42, 0xee, 0x75, 0xbc, 0x81, 0xe7, 0x6b, 0xc2, + 0x19, 0x1a, 0x34, 0x9a, 0x14, 0x6d, 0x26, 0x45, 0x93, 0x69, 0xd0, 0x62, 0x5d, 0x1e, 0x43, 0x04, + 0x77, 0xcc, 0xc6, 0x1b, 0x8d, 0x0c, 0x56, 0x01, 0x63, 0xd5, 0x03, 0x9d, 0xea, 0x81, 0x4b, 0xed, + 0x1d, 0x15, 0x3b, 0xbc, 0x6e, 0x47, 0x37, 0xd5, 0xc1, 0xd5, 0x4e, 0x7e, 0x75, 0x53, 0x50, 0xcd, + 0x9d, 0x14, 0x4d, 0x72, 0x5d, 0x93, 0xdb, 0xb8, 0x49, 0xad, 0x10, 0xa8, 0x32, 0x05, 0x26, 0x35, + 0x5e, 0x99, 0xbd, 0x8f, 0x28, 0xf0, 0x0f, 0x6b, 0x6e, 0x0e, 0xf8, 0xea, 0x56, 0xec, 0x9f, 0x7b, + 0x7b, 0x2f, 0x18, 0xa0, 0x28, 0x26, 0xcc, 0x56, 0xd4, 0x15, 0xdd, 0x4e, 0x75, 0xa1, 0x9b, 0x8e, + 0xc2, 0x35, 0xbd, 0x85, 0x68, 0xba, 0x0a, 0xcb, 0xb4, 0x17, 0x8a, 0x69, 0x2f, 0xfc, 0xd2, 0x5e, + 0xc8, 0xb5, 0x5d, 0x6c, 0xe5, 0x94, 0xab, 0xd5, 0x82, 0xac, 0x88, 0xca, 0x2a, 0x77, 0x9c, 0x59, + 0xb8, 0x88, 0xee, 0xaf, 0x78, 0xd2, 0xaa, 0x05, 0x00, 0x6d, 0x40, 0xa0, 0x13, 0x10, 0x68, 0x00, + 0x83, 0x6e, 0x80, 0x20, 0x03, 0x14, 0x64, 0x00, 0x83, 0x0c, 0x70, 0xec, 0x86, 0xb6, 0xa3, 0x1a, + 0x50, 0xe6, 0x81, 0x45, 0x9f, 0xbf, 0xcd, 0xe1, 0x8b, 0x2e, 0x5f, 0xd3, 0x03, 0x33, 0xda, 0xe1, + 0x86, 0x02, 0xec, 0xd0, 0x82, 0x1f, 0x2a, 0x30, 0x44, 0x0e, 0x8e, 0xc8, 0xc1, 0x12, 0x39, 0x78, + 0xd2, 0x03, 0x53, 0x9a, 0xe0, 0x4a, 0x3b, 0x6c, 0xc5, 0x06, 0x84, 0x65, 0x01, 0xda, 0xfd, 0x74, + 0x16, 0xbd, 0x74, 0x56, 0x29, 0x2c, 0xc2, 0x99, 0xe6, 0xed, 0x9a, 0x64, 0xf6, 0x8d, 0x52, 0xda, + 0x1f, 0x4a, 0x73, 0x1f, 0x28, 0xb5, 0xfd, 0x9e, 0x64, 0xf7, 0x75, 0x92, 0xdd, 0xbf, 0x49, 0x76, + 0x9f, 0xe6, 0x6e, 0x97, 0x84, 0x92, 0xd9, 0x5f, 0x19, 0xc7, 0x9d, 0x01, 0x73, 0x7b, 0x3e, 0xeb, + 0x51, 0x08, 0x3a, 0xb3, 0xac, 0xab, 0x4c, 0xc0, 0x96, 0xcb, 0x68, 0xfd, 0xf7, 0xc3, 0x87, 0x70, + 0xd7, 0x97, 0x13, 0x02, 0xf9, 0xae, 0x56, 0x9c, 0x6a, 0xcc, 0xbc, 0x66, 0x05, 0x9f, 0x74, 0x38, + 0x5d, 0x6c, 0x11, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, 0x1d, 0x68, + 0x9d, 0x91, 0xb4, 0x2e, 0xc6, 0x72, 0x30, 0x3b, 0xe5, 0x83, 0x11, 0x6d, 0xe9, 0xa1, 0x43, 0xec, + 0x66, 0x06, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, 0x81, 0xd7, + 0x19, 0xc9, 0xeb, 0x66, 0x50, 0x0e, 0x5a, 0xa7, 0x7c, 0x2c, 0xc2, 0x2e, 0x59, 0x64, 0x48, 0x5d, + 0x68, 0x0e, 0x0d, 0x4a, 0x97, 0x03, 0xa5, 0x03, 0xa5, 0x03, 0xa5, 0x03, 0xa5, 0x03, 0xa5, 0xd3, + 0x35, 0x2a, 0xba, 0x0b, 0x94, 0x62, 0x43, 0xa6, 0xad, 0x01, 0xb9, 0xe8, 0x32, 0x3a, 0x8d, 0xca, + 0x9f, 0xb7, 0xf7, 0x3d, 0xdb, 0x46, 0xa5, 0x9f, 0x22, 0xa9, 0x96, 0xf8, 0xe4, 0x5a, 0xe0, 0x53, + 0x6c, 0x79, 0x4f, 0xbb, 0xc5, 0x3d, 0xd5, 0x96, 0xf6, 0xe4, 0x5b, 0xd8, 0x93, 0x6f, 0x59, 0x4f, + 0xbe, 0x45, 0x3d, 0x3a, 0xe5, 0x92, 0xd4, 0x58, 0x08, 0x6b, 0x2d, 0x14, 0x35, 0x97, 0x65, 0xda, + 0xcb, 0x6f, 0xfe, 0x9b, 0x52, 0x8a, 0x80, 0xc9, 0x20, 0xbe, 0x8a, 0x94, 0x9a, 0x90, 0x66, 0xa0, + 0x61, 0x26, 0x15, 0xa7, 0x24, 0x52, 0x41, 0x9f, 0xf0, 0x46, 0x0a, 0x95, 0xf4, 0xa0, 0xa3, 0xa0, + 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0xca, 0xe3, 0xd6, 0x88, 0x0b, 0x79, 0x94, + 0x27, 0xc8, 0x46, 0x29, 0x91, 0xd1, 0x86, 0x2b, 0xfa, 0x93, 0xa7, 0x75, 0x4b, 0x2a, 0x06, 0x10, + 0x3c, 0xae, 0xe7, 0x0b, 0x17, 0x74, 0x8f, 0xea, 0x24, 0x7e, 0x00, 0xe6, 0x57, 0x77, 0x30, 0x62, + 0x84, 0xed, 0xfb, 0xec, 0xbb, 0x1d, 0xc9, 0x3d, 0x71, 0xca, 0xfb, 0x7c, 0xda, 0x8d, 0xf9, 0x10, + 0x87, 0xd8, 0xbe, 0xc6, 0x25, 0xdc, 0x07, 0xb8, 0xc4, 0x86, 0x2e, 0x51, 0xc8, 0x57, 0x0a, 0x95, + 0x52, 0x39, 0x5f, 0x29, 0xc2, 0x37, 0xcc, 0x26, 0x64, 0xf4, 0xac, 0x69, 0x42, 0x24, 0xa2, 0x12, + 0x3b, 0xad, 0x8e, 0x77, 0x77, 0x37, 0x12, 0x5c, 0x3e, 0x52, 0x5d, 0xc2, 0x5c, 0x34, 0x10, 0xc2, + 0xd1, 0x32, 0x73, 0x20, 0x1c, 0xad, 0x31, 0xa5, 0x20, 0x1c, 0xad, 0x35, 0xd3, 0x21, 0x1c, 0x6d, + 0x68, 0x20, 0x84, 0x23, 0x83, 0x32, 0x09, 0xac, 0x63, 0xbe, 0x01, 0x06, 0x0d, 0x5c, 0xc7, 0x9c, + 0xf1, 0x0a, 0xce, 0x82, 0xf8, 0xfa, 0x11, 0x4b, 0x99, 0x34, 0x59, 0x2a, 0x99, 0xde, 0x11, 0x09, + 0x9f, 0x24, 0xd2, 0x43, 0x02, 0xbc, 0x14, 0xbc, 0x14, 0xbc, 0x14, 0xbc, 0x14, 0xbc, 0x14, 0xbc, + 0x54, 0x79, 0xdc, 0xe2, 0x43, 0xdb, 0xed, 0x76, 0x7d, 0x16, 0x04, 0x14, 0xa9, 0x69, 0x85, 0x90, + 0x4d, 0xd1, 0x18, 0x62, 0x51, 0xf3, 0xd5, 0x33, 0xeb, 0xbe, 0x40, 0x70, 0x6e, 0x25, 0xe6, 0xd8, + 0x31, 0x41, 0xdb, 0x2e, 0x5d, 0x29, 0x99, 0x2f, 0xc8, 0x4d, 0xb7, 0xd8, 0xc0, 0xff, 0xf6, 0xf7, + 0x6f, 0x0f, 0xed, 0x4a, 0xf3, 0xe9, 0x36, 0x67, 0x57, 0x9a, 0xe1, 0x65, 0x6e, 0xfa, 0x2d, 0xbc, + 0xce, 0xdf, 0x1e, 0xda, 0x85, 0xd9, 0x75, 0xf1, 0xf6, 0xd0, 0x2e, 0x36, 0x0f, 0xfe, 0xfd, 0xf7, + 0xc3, 0xc1, 0xaf, 0xa3, 0xf1, 0xfa, 0x1f, 0xfc, 0xcb, 0x22, 0xf7, 0x10, 0x9a, 0xb4, 0x96, 0x87, + 0xde, 0x23, 0x28, 0xbd, 0x3a, 0x28, 0x95, 0x10, 0x94, 0xb6, 0x3b, 0x28, 0xb9, 0x76, 0xaf, 0x6a, + 0x7f, 0x6e, 0xfe, 0xca, 0xbd, 0x2f, 0x8c, 0x4f, 0x0e, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2d, + 0x7b, 0x5b, 0xee, 0x7d, 0x79, 0x7c, 0xb2, 0xe2, 0x27, 0xa5, 0xf1, 0xc9, 0x2b, 0x7f, 0x47, 0x71, + 0xbc, 0x9f, 0x78, 0xeb, 0xe4, 0xf5, 0xfc, 0xaa, 0x0f, 0x14, 0x56, 0x7c, 0xe0, 0x68, 0xd5, 0x07, + 0x8e, 0x56, 0x7c, 0x60, 0xa5, 0x49, 0xf9, 0x15, 0x1f, 0x28, 0x8e, 0x9f, 0x12, 0xef, 0xdf, 0x5f, + 0xfe, 0xd6, 0xd2, 0xf8, 0xe0, 0x69, 0xd5, 0xcf, 0xca, 0xe3, 0xa7, 0x93, 0x03, 0x84, 0x68, 0x33, + 0xf2, 0xa1, 0x3d, 0xac, 0xe0, 0x53, 0x02, 0x4d, 0x8b, 0x3d, 0x48, 0x9b, 0xfc, 0x2a, 0xfe, 0x32, + 0x23, 0xa1, 0x98, 0x2e, 0x33, 0x07, 0x8a, 0xe9, 0x1a, 0xd3, 0x0a, 0x8a, 0xe9, 0x5a, 0x33, 0x1d, + 0x8a, 0xe9, 0x86, 0x06, 0x42, 0x31, 0x35, 0x28, 0x95, 0xc4, 0x4a, 0xfe, 0x5b, 0xb2, 0x46, 0xf3, + 0x56, 0xf2, 0x5f, 0x72, 0x0b, 0xce, 0x82, 0xb9, 0x7f, 0x63, 0x45, 0x9f, 0x28, 0x6b, 0xe5, 0xe2, + 0xde, 0x1d, 0xf0, 0xae, 0xed, 0x33, 0x37, 0xf0, 0x04, 0x3d, 0xc2, 0xba, 0x60, 0x1f, 0xb8, 0x2a, + 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0x2a, 0xb8, 0xea, 0x8e, 0x71, 0x55, 0xde, 0x65, 0x42, + 0x72, 0xf9, 0x48, 0x94, 0xaf, 0x12, 0xda, 0x9f, 0x66, 0xd5, 0xa2, 0x47, 0xf5, 0xd1, 0x0d, 0x08, + 0x86, 0xd4, 0xd9, 0x80, 0xd6, 0x2e, 0xbe, 0x56, 0xcf, 0x6b, 0xa7, 0xad, 0x46, 0xfd, 0xe6, 0xfa, + 0xac, 0xd5, 0x38, 0xab, 0x5e, 0xd5, 0x2f, 0xa8, 0x45, 0xd7, 0xe9, 0x36, 0xc4, 0x80, 0xe4, 0x32, + 0x11, 0xd1, 0x7d, 0xa5, 0x8b, 0xa3, 0x5b, 0xbd, 0x6a, 0x9d, 0xd7, 0xeb, 0x97, 0x16, 0x76, 0x0c, + 0x6f, 0xcd, 0x90, 0x7e, 0xaa, 0x5f, 0x7c, 0x3e, 0x3b, 0xc5, 0x88, 0x6e, 0xcf, 0x88, 0xd6, 0x1b, + 0xb5, 0xbf, 0x6b, 0x17, 0xd5, 0xeb, 0x7a, 0x03, 0xa3, 0xba, 0x45, 0x7e, 0x7a, 0x7e, 0x73, 0x75, + 0x7d, 0xd6, 0xa0, 0x1a, 0x7f, 0x49, 0x59, 0xd4, 0x44, 0x3e, 0x42, 0xcc, 0x0a, 0x0a, 0xea, 0xe0, + 0xc0, 0x0d, 0xa4, 0x7d, 0xe7, 0x75, 0x79, 0x8f, 0xb3, 0x2e, 0x3d, 0x71, 0x70, 0xde, 0x3c, 0x68, + 0x83, 0xcb, 0xcc, 0x81, 0x36, 0xb8, 0xc6, 0x84, 0x82, 0x36, 0xb8, 0xd6, 0x4c, 0x87, 0x36, 0xb8, + 0xa1, 0x81, 0xd0, 0x06, 0x0d, 0x62, 0xc0, 0x84, 0xb5, 0x41, 0xc9, 0xef, 0x98, 0xe4, 0x9d, 0x1f, + 0x41, 0xa9, 0x40, 0x50, 0x1b, 0x24, 0x54, 0x00, 0x6d, 0xdd, 0x88, 0xb0, 0x4b, 0x95, 0x25, 0x5c, + 0xe1, 0x05, 0xac, 0xe3, 0x89, 0x2e, 0xa9, 0xdd, 0x52, 0xe8, 0xb7, 0xf8, 0xca, 0x07, 0x85, 0x7e, + 0x8b, 0x6f, 0x37, 0x0f, 0xfd, 0x16, 0xb7, 0x51, 0x95, 0x41, 0xbf, 0xc5, 0x14, 0x5c, 0x22, 0x77, + 0x5c, 0x28, 0x94, 0xca, 0x85, 0xc2, 0x61, 0xf9, 0xa8, 0x7c, 0x58, 0x29, 0x16, 0x73, 0xa5, 0x1c, + 0x3a, 0x2f, 0x1a, 0xce, 0x1f, 0xe9, 0x59, 0x83, 0x7d, 0x1b, 0x64, 0xa2, 0x28, 0x99, 0x53, 0xf3, + 0x13, 0xa4, 0x9e, 0xc6, 0xe9, 0xf9, 0xb1, 0x59, 0xa7, 0xac, 0xe7, 0x8e, 0x06, 0xd3, 0x54, 0xf5, + 0x10, 0x5a, 0xdb, 0x52, 0x73, 0xa0, 0xb5, 0xad, 0x31, 0xbd, 0xa1, 0xb5, 0xad, 0x35, 0xd3, 0xa1, + 0xb5, 0x6d, 0x68, 0x20, 0xb4, 0x36, 0x83, 0xf2, 0x1a, 0x1c, 0x1b, 0xb2, 0x3e, 0x0a, 0xe2, 0xd8, + 0x90, 0x3f, 0x7d, 0x41, 0xc6, 0xda, 0xca, 0x9c, 0x1d, 0x32, 0x96, 0xe9, 0xe1, 0x7e, 0xde, 0x25, + 0x20, 0x63, 0x6d, 0xec, 0x12, 0x38, 0x36, 0x64, 0x5b, 0x08, 0x19, 0x3d, 0x6b, 0x20, 0x5e, 0x91, + 0x89, 0x9d, 0x56, 0xb4, 0x39, 0xd2, 0x1b, 0x49, 0x46, 0x4f, 0xc0, 0x7a, 0x69, 0x1c, 0x04, 0xa3, + 0x65, 0xe6, 0x40, 0x30, 0x5a, 0x63, 0x3a, 0x41, 0x30, 0x5a, 0x6b, 0xa6, 0x43, 0x30, 0xda, 0xd0, + 0x40, 0x08, 0x46, 0x06, 0x65, 0x10, 0x84, 0x05, 0xa3, 0xb6, 0xe7, 0x0d, 0x98, 0x2b, 0x28, 0x6e, + 0xda, 0xcc, 0x81, 0xca, 0x11, 0xb0, 0x40, 0xb3, 0x0b, 0x59, 0x55, 0x21, 0x3c, 0xe9, 0x4e, 0xb2, + 0x31, 0x12, 0x0e, 0x64, 0x05, 0x9d, 0x6f, 0xec, 0xce, 0x1d, 0x46, 0x4d, 0x67, 0x1c, 0x6f, 0xc8, + 0x44, 0x67, 0x4a, 0x94, 0x6c, 0xc1, 0xe4, 0x4f, 0xcf, 0xff, 0x61, 0x73, 0x11, 0x48, 0x57, 0x74, + 0x98, 0xb3, 0xf8, 0x42, 0x90, 0x78, 0xc5, 0x19, 0xfa, 0x9e, 0xf4, 0x3a, 0xde, 0x20, 0x88, 0xaf, + 0x9c, 0x76, 0x7f, 0xe8, 0xf8, 0xbc, 0xed, 0xb8, 0x3d, 0x6e, 0x07, 0x6e, 0x8f, 0x07, 0xf1, 0x95, + 0x33, 0x6d, 0x2a, 0x1b, 0xf8, 0x92, 0xd9, 0x43, 0x6f, 0xc0, 0x3b, 0x8f, 0x8e, 0x60, 0xbc, 0xff, + 0xad, 0xed, 0xf9, 0x41, 0x7c, 0xe5, 0xb8, 0xdd, 0xef, 0x53, 0x34, 0xf0, 0x46, 0xd2, 0x1e, 0xfa, + 0xcc, 0x99, 0x32, 0xdc, 0x20, 0xfc, 0x16, 0xf6, 0xb9, 0xd1, 0x0b, 0x12, 0xfa, 0x66, 0xb3, 0xc6, + 0x99, 0x6c, 0x8d, 0xc4, 0x0f, 0xe1, 0xfd, 0x14, 0xb6, 0x2b, 0xa5, 0xcf, 0xdb, 0x93, 0x11, 0xd1, + 0x3e, 0x9b, 0x9f, 0xd7, 0x0c, 0x92, 0xb6, 0x69, 0xf6, 0xf9, 0x19, 0x02, 0x68, 0x36, 0x83, 0x4a, + 0x02, 0x44, 0x29, 0xf1, 0xa1, 0x99, 0xf0, 0x50, 0x4b, 0x74, 0xc8, 0x26, 0x38, 0x64, 0x13, 0x1b, + 0xb2, 0x09, 0xcd, 0x6e, 0xb3, 0xaf, 0x53, 0xee, 0xd3, 0x08, 0x3b, 0x09, 0x90, 0xa2, 0xa7, 0x28, + 0x26, 0x4d, 0xa4, 0xa5, 0x2b, 0xe6, 0xa0, 0x2b, 0x92, 0x87, 0x57, 0xda, 0x30, 0x4b, 0x15, 0x6e, + 0xc9, 0xc3, 0x2e, 0x79, 0xf8, 0x25, 0x0f, 0xc3, 0x74, 0xe4, 0x98, 0x3d, 0x42, 0xba, 0x22, 0x15, + 0x78, 0x8e, 0x0d, 0x9a, 0x60, 0x9f, 0x2d, 0xa9, 0xa9, 0x9d, 0x73, 0x11, 0xf5, 0xd9, 0x44, 0x62, + 0xae, 0x47, 0xb3, 0x7a, 0x83, 0x1c, 0x5c, 0x53, 0x86, 0x6d, 0x33, 0xe0, 0x9b, 0x3a, 0x8c, 0x1b, + 0x03, 0xe7, 0xc6, 0xc0, 0xba, 0x31, 0xf0, 0x4e, 0x0b, 0xe6, 0x89, 0xc1, 0x7d, 0x3c, 0x8a, 0xd7, + 0x14, 0x01, 0x76, 0x8f, 0xf6, 0xd9, 0x05, 0x89, 0x6c, 0xb8, 0x4c, 0xf3, 0xe4, 0xbb, 0xd9, 0x59, + 0x06, 0xe1, 0x91, 0x04, 0xcf, 0x64, 0x05, 0xf5, 0x7e, 0xd4, 0x5d, 0xd3, 0x0a, 0x57, 0xd7, 0xc8, + 0x12, 0xdf, 0xd0, 0x3c, 0x9a, 0xa4, 0x37, 0x07, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, + 0xd2, 0x0b, 0x64, 0x5d, 0x3e, 0x8a, 0xd4, 0xb4, 0xae, 0xd8, 0xb0, 0x29, 0x47, 0x1b, 0x30, 0xc2, + 0x5b, 0xe5, 0xe6, 0xa4, 0xaf, 0x89, 0xa5, 0xef, 0xb1, 0x7f, 0x69, 0x8b, 0x48, 0x81, 0x09, 0xe4, + 0xc0, 0x2c, 0x92, 0x60, 0x0a, 0x59, 0x30, 0x8e, 0x34, 0x18, 0x47, 0x1e, 0x8c, 0x23, 0x11, 0x34, + 0xc9, 0x04, 0x51, 0x52, 0x11, 0x8f, 0x2e, 0x59, 0x45, 0x2d, 0x11, 0x37, 0x47, 0x5c, 0xc8, 0x5c, + 0x89, 0x72, 0xcc, 0x8c, 0x50, 0xbc, 0x44, 0xd8, 0x44, 0x9a, 0x1d, 0x20, 0x16, 0xbf, 0x68, 0x63, + 0xce, 0x1e, 0xf5, 0x0e, 0x11, 0x86, 0xd1, 0xcb, 0x84, 0xb9, 0xc4, 0x3b, 0x48, 0x24, 0xec, 0x35, + 0x60, 0xd7, 0xbc, 0x21, 0x70, 0x34, 0xef, 0x62, 0xee, 0x03, 0x5c, 0x2c, 0x63, 0x17, 0x2b, 0x15, + 0x8b, 0x47, 0x45, 0xb8, 0xd9, 0x6e, 0x71, 0x51, 0xfa, 0xd6, 0x35, 0xdf, 0xe1, 0x79, 0x19, 0x1a, + 0xc6, 0x09, 0x57, 0xc2, 0x25, 0x52, 0x0a, 0xaa, 0x15, 0x71, 0x86, 0xa0, 0x0a, 0x74, 0xc1, 0x34, + 0x27, 0x23, 0x74, 0xc1, 0x54, 0x3d, 0x07, 0xba, 0x60, 0xc6, 0x06, 0x43, 0x17, 0xdc, 0xe2, 0x44, + 0xcc, 0x30, 0x5d, 0xf0, 0xd8, 0x00, 0x59, 0xb0, 0x08, 0x59, 0x70, 0xc3, 0x2f, 0xc8, 0x82, 0xd0, + 0x2c, 0x20, 0x0b, 0xee, 0x20, 0x1a, 0xcd, 0xbb, 0x18, 0x64, 0xc1, 0xcc, 0x5d, 0x2c, 0x5f, 0x84, + 0x28, 0xb8, 0x63, 0x44, 0x94, 0xbe, 0x75, 0x10, 0x05, 0x8d, 0x0d, 0xe2, 0xa1, 0xd2, 0x76, 0x1f, + 0x45, 0x17, 0x13, 0x54, 0xc1, 0xd0, 0x56, 0xc8, 0x82, 0x6f, 0x31, 0x0f, 0xb2, 0x60, 0x8a, 0xb3, + 0x11, 0xb2, 0x60, 0xaa, 0x9e, 0x03, 0x59, 0x30, 0x63, 0x83, 0x21, 0x0b, 0x6e, 0x71, 0x22, 0x66, + 0x90, 0x2c, 0xd8, 0xe6, 0xc2, 0xf5, 0x1f, 0x0d, 0xd0, 0x05, 0x2b, 0x84, 0x4d, 0x3c, 0x67, 0xa2, + 0x3f, 0xdd, 0x98, 0x0b, 0x61, 0x70, 0x53, 0xd5, 0x02, 0xc2, 0x60, 0xe6, 0xaa, 0x45, 0x0e, 0x9a, + 0xc5, 0x8e, 0xe1, 0xd1, 0xbc, 0x8b, 0x41, 0x18, 0xcc, 0xdc, 0xc5, 0x50, 0x2f, 0xb8, 0x83, 0x64, + 0x94, 0xbe, 0x75, 0x90, 0x06, 0x8d, 0x0d, 0xe3, 0x16, 0x7b, 0x90, 0x4c, 0x74, 0x59, 0x97, 0xbe, + 0x30, 0x18, 0x5b, 0x0a, 0x59, 0xf0, 0x2d, 0xe6, 0x41, 0x16, 0x4c, 0x71, 0x2e, 0x42, 0x16, 0x4c, + 0xd5, 0x73, 0x20, 0x0b, 0x66, 0x6c, 0x30, 0x64, 0xc1, 0x2d, 0x4e, 0xc3, 0x4c, 0x92, 0x05, 0xc9, + 0x1d, 0xfb, 0xb5, 0x0a, 0xc6, 0x89, 0x1c, 0x03, 0x06, 0x52, 0xfb, 0x96, 0x31, 0xf4, 0x86, 0x93, + 0xcc, 0xd3, 0x1d, 0xd0, 0x27, 0xb5, 0xb1, 0xa5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, + 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x70, 0x8a, 0xf9, 0x31, 0x1c, 0xba, + 0xbe, 0xe4, 0x26, 0x70, 0xda, 0x99, 0xa1, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, + 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0x70, 0x8a, 0xf9, 0x31, 0x94, 0xbe, 0x2b, + 0x02, 0x2e, 0xf9, 0xbd, 0x01, 0xfb, 0x92, 0x5e, 0xd8, 0x0a, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, + 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x8b, 0x88, 0xba, 0xa8, + 0x55, 0x15, 0xc2, 0x93, 0xae, 0xe4, 0x1e, 0xcd, 0x0d, 0x50, 0x56, 0xd0, 0xf9, 0xc6, 0xee, 0xdc, + 0x61, 0x74, 0x00, 0xa5, 0xe3, 0x0d, 0x99, 0xe8, 0x4c, 0x89, 0xa2, 0x2d, 0x98, 0xfc, 0xe9, 0xf9, + 0x3f, 0x6c, 0x2e, 0x02, 0xe9, 0x8a, 0x0e, 0x73, 0x16, 0x5f, 0x08, 0x12, 0xaf, 0x38, 0x43, 0xdf, + 0x93, 0x5e, 0xc7, 0x1b, 0x04, 0xf1, 0x95, 0xd3, 0xee, 0x0f, 0x1d, 0x9f, 0xb7, 0x1d, 0xb7, 0xc7, + 0xed, 0xc0, 0xed, 0xf1, 0x20, 0xbe, 0x72, 0xf8, 0xf0, 0xbe, 0x64, 0x07, 0xbe, 0x64, 0xf6, 0xd0, + 0x1b, 0xf0, 0xce, 0xa3, 0x23, 0x18, 0xef, 0x7f, 0x6b, 0x7b, 0x7e, 0x10, 0x5f, 0x39, 0x6e, 0xf7, + 0xfb, 0x14, 0xad, 0xbc, 0x91, 0xb4, 0x87, 0x3e, 0x73, 0x7c, 0x6f, 0x24, 0x59, 0x10, 0x7e, 0x73, + 0x46, 0xe2, 0x87, 0xf0, 0x7e, 0x0a, 0xdb, 0x95, 0xd2, 0xe7, 0xed, 0xe9, 0x0f, 0x12, 0x2f, 0x85, + 0x27, 0x6a, 0xe2, 0x1c, 0x4d, 0xca, 0x96, 0x50, 0x39, 0x57, 0xff, 0x1f, 0xf6, 0x48, 0xb1, 0x31, + 0xae, 0x75, 0xce, 0x03, 0x59, 0x95, 0x92, 0xd8, 0xa1, 0xff, 0x5f, 0xb8, 0x38, 0x1b, 0xb0, 0x09, + 0xab, 0x0c, 0xac, 0x93, 0x3d, 0x31, 0x1a, 0x0c, 0x08, 0x1d, 0xca, 0xfa, 0xc5, 0x7d, 0xa0, 0x6b, + 0x5c, 0xdd, 0xef, 0x32, 0x9f, 0x75, 0x3f, 0x3e, 0x46, 0xa6, 0xc1, 0x09, 0xe9, 0x23, 0xe6, 0xf6, + 0x23, 0xa5, 0x45, 0xea, 0x4c, 0x65, 0x7f, 0xd4, 0x91, 0x22, 0xca, 0x1a, 0x2e, 0xc2, 0xa7, 0x57, + 0x8b, 0x1e, 0x5e, 0xeb, 0x32, 0x7a, 0x64, 0xad, 0x8f, 0xfd, 0x61, 0xab, 0xc1, 0xdb, 0xad, 0x6a, + 0x8f, 0x5f, 0xb9, 0x3d, 0xde, 0xaa, 0x0d, 0xef, 0x4b, 0x57, 0xbe, 0x64, 0x97, 0xd3, 0xa7, 0xd4, + 0xba, 0x88, 0x9e, 0x4d, 0xab, 0xda, 0xfd, 0xde, 0xe0, 0xed, 0xfa, 0x48, 0x5e, 0xfa, 0xac, 0xd5, + 0x98, 0x3c, 0x91, 0xd6, 0x4d, 0xf8, 0xe7, 0x57, 0xe3, 0xbf, 0xfe, 0x1d, 0xf0, 0x58, 0xbf, 0x05, + 0x9a, 0x83, 0x10, 0xb5, 0xe0, 0xb3, 0x6d, 0x41, 0x47, 0xaf, 0x93, 0xe9, 0x9b, 0xda, 0x7a, 0xee, + 0xac, 0xc9, 0x99, 0x66, 0x34, 0x7a, 0x32, 0x6b, 0x6d, 0xde, 0xdd, 0x63, 0xa2, 0x3b, 0xf4, 0xb8, + 0x90, 0x7b, 0x1d, 0x6f, 0xe0, 0xf9, 0x9a, 0x50, 0x86, 0x06, 0x87, 0x26, 0xc5, 0x99, 0x49, 0x71, + 0x64, 0x1a, 0x9c, 0x58, 0x97, 0xc7, 0x10, 0x81, 0x1d, 0xa3, 0xe1, 0x46, 0x23, 0x7d, 0xcd, 0x9e, + 0xae, 0xea, 0x01, 0x4e, 0xf5, 0xb0, 0xa5, 0xf6, 0x8e, 0x8a, 0xdd, 0x5d, 0xb7, 0x9b, 0x1b, 0xea, + 0xde, 0x6a, 0xe7, 0xbe, 0xba, 0x19, 0xa8, 0xe6, 0x4e, 0x8a, 0xe6, 0xb8, 0xae, 0xb9, 0x6d, 0xda, + 0x9c, 0x56, 0x88, 0x52, 0x59, 0xa2, 0x92, 0x1a, 0x9f, 0xcc, 0xde, 0x43, 0x14, 0x78, 0x87, 0x35, + 0x9b, 0x0a, 0xb6, 0xdb, 0xed, 0xfa, 0x2c, 0x08, 0x94, 0xf9, 0x47, 0xbc, 0xea, 0x9e, 0xb0, 0x40, + 0x51, 0x4c, 0x50, 0x5b, 0x11, 0xa7, 0xbc, 0xc2, 0x4d, 0x47, 0xc5, 0x9a, 0xde, 0x0a, 0x34, 0x5d, + 0x15, 0x65, 0xda, 0x2b, 0xc4, 0xb4, 0x57, 0x7c, 0x69, 0xaf, 0xe0, 0xda, 0x2e, 0xb6, 0xa2, 0xbc, + 0x62, 0x2a, 0xf6, 0xdb, 0x01, 0x73, 0x7b, 0x3e, 0xeb, 0xa9, 0x74, 0xda, 0x59, 0x45, 0x53, 0x59, + 0xe1, 0x3d, 0x2f, 0x23, 0x42, 0xf6, 0xe1, 0x43, 0x58, 0x80, 0xe1, 0x24, 0x30, 0x08, 0x0c, 0x62, + 0x0d, 0x22, 0xe7, 0x4a, 0xa6, 0x9e, 0x36, 0x84, 0xb7, 0x55, 0xcb, 0x15, 0x72, 0xe0, 0x0a, 0xe0, + 0x0a, 0xe0, 0x0a, 0xe0, 0x0a, 0x74, 0xb8, 0xc2, 0x29, 0x57, 0xbb, 0x68, 0xa4, 0x2f, 0x61, 0xa4, + 0x92, 0x38, 0x6a, 0x4a, 0x20, 0xb5, 0x81, 0x83, 0x4e, 0x90, 0xa0, 0x01, 0x16, 0xba, 0x41, 0x83, + 0x0c, 0x78, 0x90, 0x01, 0x11, 0x32, 0x60, 0xa2, 0x16, 0x54, 0x14, 0x83, 0x8b, 0xbe, 0x84, 0x34, + 0xe1, 0xf7, 0x7c, 0xa8, 0x29, 0xca, 0xcf, 0xd1, 0x7f, 0x0d, 0xe7, 0x01, 0xcd, 0x9e, 0xbd, 0x9e, + 0x53, 0x7e, 0x34, 0xae, 0xf6, 0x3f, 0x8f, 0xfc, 0x7d, 0x41, 0xe3, 0xd8, 0x27, 0xe6, 0xc0, 0xb1, + 0x46, 0x1b, 0x2e, 0x5d, 0x29, 0x99, 0x2f, 0xb4, 0x1f, 0xfa, 0x64, 0xfd, 0xb7, 0xbf, 0x7f, 0x7b, + 0x68, 0x57, 0x9a, 0x4f, 0xb7, 0x39, 0xbb, 0xd2, 0x0c, 0x2f, 0x73, 0xd3, 0x6f, 0xe1, 0x75, 0xfe, + 0xf6, 0xd0, 0x2e, 0xcc, 0xae, 0x8b, 0xb7, 0x87, 0x76, 0xb1, 0x79, 0xf0, 0xef, 0xbf, 0x1f, 0x0e, + 0x7e, 0x1d, 0x8d, 0xd7, 0xff, 0xe0, 0x5f, 0xfa, 0x0a, 0xf3, 0x9a, 0xbb, 0x54, 0xe8, 0x43, 0xc3, + 0xd9, 0x4b, 0x70, 0x76, 0x9a, 0xce, 0xee, 0xda, 0xbd, 0xaa, 0xfd, 0xb9, 0xf9, 0x2b, 0xf7, 0xbe, + 0x30, 0x3e, 0x39, 0xf8, 0x55, 0x1e, 0x2f, 0xbe, 0xf8, 0xb4, 0xec, 0x6d, 0xb9, 0xf7, 0xe5, 0xf1, + 0xc9, 0x8a, 0x9f, 0x94, 0xc6, 0x27, 0xaf, 0xfc, 0x1d, 0xc5, 0xf1, 0x7e, 0xe2, 0xad, 0x93, 0xd7, + 0xf3, 0xab, 0x3e, 0x50, 0x58, 0xf1, 0x81, 0xa3, 0x55, 0x1f, 0x38, 0x5a, 0xf1, 0x81, 0x95, 0x26, + 0xe5, 0x57, 0x7c, 0xa0, 0x38, 0x7e, 0x4a, 0xbc, 0x7f, 0x7f, 0xf9, 0x5b, 0x4b, 0xe3, 0x83, 0xa7, + 0x55, 0x3f, 0x2b, 0x8f, 0x9f, 0x4e, 0x0e, 0x76, 0x30, 0xf4, 0xbd, 0xdb, 0xee, 0xbf, 0x13, 0x05, + 0x3c, 0x6f, 0xcc, 0xf3, 0x50, 0xc0, 0xb3, 0xb4, 0x80, 0x47, 0xe1, 0xfe, 0x61, 0x05, 0xab, 0x55, + 0xef, 0x0c, 0x9e, 0xaa, 0xb3, 0x8d, 0x05, 0x8a, 0x55, 0x49, 0xb5, 0x5b, 0x07, 0xb4, 0x6c, 0x11, + 0xd0, 0xb2, 0x15, 0x40, 0x6d, 0xc9, 0x7f, 0xd6, 0x73, 0x53, 0x71, 0xf8, 0xa4, 0x1e, 0x36, 0x2d, + 0x25, 0xcb, 0xe2, 0x69, 0xd6, 0x37, 0x66, 0x1b, 0xe2, 0xb3, 0x0b, 0xbc, 0xd9, 0xfc, 0xe6, 0x8c, + 0xdc, 0x45, 0x95, 0x9b, 0x10, 0x75, 0x8f, 0x6c, 0xe6, 0x58, 0xfa, 0x33, 0x20, 0xdd, 0xdf, 0x98, + 0xf2, 0x5c, 0xca, 0x7a, 0x0e, 0x91, 0x9a, 0x3b, 0x19, 0xc4, 0xd1, 0x74, 0xe2, 0x66, 0xba, 0x53, + 0x39, 0xbd, 0x09, 0x97, 0xe2, 0x64, 0x0b, 0xb5, 0xb2, 0x91, 0xe0, 0x1d, 0x37, 0x90, 0xa9, 0x4f, + 0xb5, 0x79, 0x45, 0x6e, 0x76, 0x97, 0x94, 0x5d, 0x25, 0x9b, 0xaa, 0xaa, 0xcc, 0x16, 0xc8, 0xb3, + 0x5c, 0x00, 0x57, 0xb3, 0xc0, 0x9d, 0xf5, 0x02, 0xb6, 0xb2, 0x05, 0x6a, 0x65, 0x0b, 0xd0, 0xca, + 0x16, 0x98, 0x69, 0x83, 0x5a, 0x56, 0x55, 0x46, 0xd6, 0x20, 0x7c, 0xa6, 0xd9, 0xcd, 0xc8, 0xb8, + 0xb2, 0x39, 0xba, 0x51, 0x46, 0xd3, 0x24, 0xdb, 0x02, 0xd1, 0xe7, 0x90, 0x96, 0xcf, 0xe8, 0x06, + 0x0a, 0x6a, 0x7b, 0xd4, 0xd6, 0xf0, 0xa8, 0xaa, 0xd5, 0x51, 0x5e, 0x93, 0xa3, 0xbc, 0xf6, 0x46, + 0x79, 0x8d, 0x8d, 0x59, 0x39, 0x63, 0xd6, 0x05, 0x98, 0x56, 0xb4, 0xcf, 0x38, 0xf3, 0x89, 0x3c, + 0x73, 0xcf, 0xe8, 0x7e, 0x59, 0xab, 0xa5, 0x4a, 0x2a, 0xea, 0x95, 0x15, 0x4b, 0xaa, 0x2c, 0x8e, + 0xd4, 0x53, 0x0c, 0xa9, 0xba, 0xf8, 0x51, 0x5b, 0xb1, 0xa3, 0xb6, 0xe2, 0x46, 0x6d, 0xc5, 0x8c, + 0x66, 0xaf, 0xbb, 0xa8, 0xaa, 0x80, 0x0f, 0x03, 0xa3, 0xfa, 0x8d, 0x4e, 0x2a, 0xfb, 0xc7, 0x60, + 0xa3, 0xd3, 0xb6, 0x84, 0x6b, 0x5d, 0x61, 0x5b, 0x7b, 0xf8, 0xd6, 0x1e, 0xc6, 0xb5, 0x87, 0x73, + 0x35, 0x61, 0x5d, 0x51, 0x78, 0x57, 0x1e, 0xe6, 0xe3, 0x1b, 0x7a, 0x3e, 0xef, 0x73, 0xa1, 0x6f, + 0x7b, 0x53, 0x74, 0x7f, 0x6c, 0x6a, 0xda, 0x36, 0x40, 0xa0, 0x01, 0x0c, 0xba, 0x01, 0x82, 0x0c, + 0x50, 0x90, 0x01, 0x0c, 0x32, 0xc0, 0xa1, 0x16, 0x40, 0x14, 0x03, 0x49, 0xfc, 0x94, 0xf5, 0x6f, + 0x6a, 0x52, 0xdf, 0x6d, 0x23, 0xc1, 0xf3, 0xcb, 0x1a, 0xee, 0x9d, 0xe8, 0xbe, 0x11, 0x21, 0xdd, + 0xb6, 0x16, 0xe2, 0x2a, 0x24, 0xfb, 0x51, 0x57, 0x63, 0x7d, 0xa4, 0x65, 0x66, 0x00, 0x58, 0x0b, + 0x58, 0x0b, 0x58, 0x0b, 0x58, 0x0b, 0x58, 0x0b, 0x58, 0xcb, 0x96, 0xb2, 0x96, 0x19, 0xd4, 0x81, + 0xb6, 0x6c, 0x4e, 0x5b, 0xf4, 0xc0, 0xd9, 0x33, 0x6b, 0xd1, 0x22, 0x50, 0x82, 0xb4, 0x80, 0xb4, + 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x28, 0x23, 0x2d, 0xa1, 0xdb, 0x83, 0xb3, 0x6c, + 0xfc, 0x68, 0xd5, 0xb6, 0x3d, 0x4d, 0x4c, 0x68, 0x95, 0xed, 0x4f, 0x13, 0x53, 0x19, 0x8c, 0x05, + 0x8c, 0x05, 0x8c, 0x05, 0x8c, 0x65, 0x7b, 0x19, 0x8b, 0xea, 0x6a, 0x83, 0xf8, 0xc6, 0xd3, 0xe3, + 0xbd, 0xb9, 0xe8, 0xb2, 0x07, 0x7d, 0x4e, 0x37, 0x0b, 0x3d, 0x2f, 0x6c, 0xd1, 0x75, 0x58, 0xa3, + 0x96, 0x14, 0x59, 0x3b, 0xf0, 0x50, 0x00, 0x20, 0x5a, 0x40, 0x44, 0x05, 0x90, 0xc8, 0x01, 0x13, + 0x39, 0x80, 0x22, 0x07, 0x54, 0x7a, 0x00, 0x4b, 0x13, 0x70, 0xe9, 0x4f, 0xb9, 0x09, 0xa5, 0xde, + 0x14, 0x52, 0xf0, 0x65, 0xa9, 0xf8, 0xd2, 0xff, 0xa6, 0x60, 0x1b, 0x30, 0x19, 0xc4, 0x57, 0x51, + 0xca, 0x1e, 0x02, 0xf0, 0xae, 0x1c, 0xb1, 0xa9, 0x21, 0xc7, 0xe9, 0x78, 0x77, 0x77, 0x23, 0xc1, + 0xe5, 0x23, 0x15, 0xde, 0xb5, 0x68, 0x10, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, + 0x17, 0xc8, 0x17, 0xc8, 0x57, 0x16, 0xe4, 0x6b, 0x86, 0xb8, 0x9c, 0x05, 0xf1, 0xf5, 0x23, 0xf8, + 0x97, 0x9a, 0xc1, 0x61, 0x0f, 0xd2, 0x26, 0xc7, 0xc1, 0x96, 0x19, 0x05, 0x1e, 0x06, 0x1e, 0x06, + 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x96, 0x05, 0x0f, 0x7b, 0x89, 0xba, 0x13, + 0x2e, 0x36, 0x87, 0xc2, 0xe0, 0x63, 0x6a, 0x06, 0x89, 0x8b, 0x7b, 0x77, 0xc0, 0xbb, 0xb6, 0xcf, + 0xdc, 0xc0, 0x13, 0xfa, 0xa9, 0xd8, 0x82, 0x3d, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, + 0x60, 0x61, 0x60, 0x61, 0xeb, 0x22, 0x49, 0x97, 0x09, 0xc9, 0xe5, 0x23, 0x11, 0x26, 0x56, 0xd4, + 0x68, 0x43, 0x2d, 0x7a, 0x14, 0x1f, 0xdd, 0x80, 0x40, 0x08, 0x9b, 0x0d, 0x50, 0xed, 0xe2, 0x6b, + 0xf5, 0xbc, 0x76, 0xda, 0x6a, 0xd4, 0x6f, 0xae, 0xcf, 0x5a, 0x8d, 0xb3, 0xea, 0x55, 0xfd, 0x42, + 0x77, 0x34, 0xfb, 0xea, 0x0e, 0x46, 0xd3, 0xfe, 0x8b, 0x7a, 0x8f, 0x61, 0xdb, 0xd3, 0x7a, 0x42, + 0xdf, 0x6f, 0x47, 0xab, 0x7a, 0xd5, 0x3a, 0xaf, 0xd7, 0x2f, 0x2d, 0xed, 0xd6, 0x8d, 0xdf, 0x63, + 0x88, 0x96, 0x0f, 0xd1, 0xa7, 0xfa, 0xc5, 0xe7, 0xb3, 0x53, 0x8c, 0x10, 0xdd, 0x11, 0xaa, 0x37, + 0x6a, 0x7f, 0xd7, 0x2e, 0xaa, 0xd7, 0xf5, 0x06, 0x46, 0x89, 0xb0, 0x1f, 0x9d, 0xdf, 0x5c, 0x5d, + 0x9f, 0x35, 0xa8, 0xc4, 0x3b, 0xad, 0x16, 0x34, 0x77, 0x8d, 0x3f, 0xef, 0x84, 0xfa, 0x33, 0x70, + 0x03, 0x69, 0xdf, 0x79, 0x5d, 0xde, 0xe3, 0xac, 0xab, 0x5f, 0xfc, 0x99, 0x37, 0x07, 0xda, 0x0f, + 0xb4, 0x1f, 0x68, 0x3f, 0xd0, 0x7e, 0xa0, 0xfd, 0x40, 0xfb, 0x59, 0x33, 0x6e, 0x48, 0x7e, 0xc7, + 0x24, 0xef, 0xfc, 0x08, 0x4a, 0x05, 0x02, 0xda, 0x8f, 0xce, 0x83, 0xe5, 0x6f, 0x04, 0x9f, 0x1e, + 0xa4, 0x6a, 0x09, 0x57, 0x78, 0x01, 0xeb, 0x78, 0xa2, 0xab, 0xf5, 0xb0, 0xfd, 0x86, 0x2b, 0xfa, + 0x4c, 0xbb, 0xbe, 0xa2, 0x3f, 0xe1, 0xb0, 0xbe, 0x70, 0xa1, 0x1d, 0x51, 0x88, 0x70, 0x9e, 0x84, + 0x39, 0x53, 0x15, 0x8e, 0x90, 0x3d, 0x9f, 0x7d, 0xb7, 0x23, 0xb9, 0x27, 0x4e, 0x79, 0x3f, 0xf4, + 0xa6, 0x43, 0x64, 0xed, 0xe1, 0x51, 0xcd, 0x98, 0xc2, 0x7f, 0x98, 0xc2, 0xb9, 0xe3, 0x42, 0xa1, + 0x54, 0x2e, 0x14, 0x0e, 0xcb, 0x47, 0xe5, 0xc3, 0x4a, 0xb1, 0x98, 0x2b, 0xe9, 0x5c, 0x09, 0x20, + 0x3f, 0xab, 0xdf, 0xed, 0xe6, 0xdd, 0x9b, 0xd0, 0x38, 0x32, 0x9b, 0xe6, 0x9a, 0x5a, 0xfb, 0x27, + 0x73, 0x59, 0x1d, 0x2d, 0xfe, 0xa1, 0x6a, 0x40, 0xd5, 0x80, 0xaa, 0x01, 0x55, 0x03, 0xaa, 0xc6, + 0x16, 0xa8, 0x1a, 0x23, 0xc1, 0xb5, 0x95, 0x44, 0xbe, 0x04, 0x91, 0x5c, 0x45, 0xa3, 0x0d, 0xd1, + 0x70, 0xec, 0xbc, 0x7e, 0xf0, 0x7c, 0x66, 0xbb, 0xed, 0x76, 0xbb, 0x3e, 0x0b, 0x02, 0x8b, 0x40, + 0x4a, 0x48, 0x60, 0x86, 0xd0, 0x9a, 0x29, 0x74, 0x66, 0xcc, 0x92, 0x99, 0x73, 0x5f, 0x20, 0x34, + 0x77, 0x12, 0x73, 0xe8, 0x98, 0x90, 0x4d, 0x97, 0xae, 0x94, 0xcc, 0x17, 0x64, 0xa6, 0x53, 0x6c, + 0xd8, 0x7f, 0xfb, 0xfb, 0xb7, 0x87, 0x76, 0xa5, 0xf9, 0x74, 0x9b, 0xb3, 0x2b, 0xcd, 0xf0, 0x32, + 0x37, 0xfd, 0x16, 0x5e, 0xe7, 0x6f, 0x0f, 0xed, 0xc2, 0xec, 0xba, 0x78, 0x7b, 0x68, 0x17, 0x9b, + 0x07, 0xff, 0xfe, 0xfb, 0xe1, 0xe0, 0xd7, 0xd1, 0x78, 0xfd, 0x0f, 0xfe, 0x65, 0x91, 0xf9, 0xe3, + 0x9b, 0x24, 0x2c, 0x19, 0xbf, 0x47, 0x70, 0x59, 0x19, 0x5c, 0x4a, 0x08, 0x2e, 0xdb, 0x11, 0x5c, + 0x5c, 0xbb, 0x57, 0xb5, 0x3f, 0x37, 0x7f, 0xe5, 0xde, 0x17, 0xc6, 0x27, 0x07, 0xbf, 0xca, 0xe3, + 0xc5, 0x17, 0x9f, 0x96, 0xbd, 0x2d, 0xf7, 0xbe, 0x3c, 0x3e, 0x59, 0xf1, 0x93, 0xd2, 0xf8, 0xe4, + 0x95, 0xbf, 0xa3, 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, 0x0a, 0x2b, 0x3e, + 0x70, 0xb4, 0xea, 0x03, 0x47, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, 0x14, 0xc7, 0x4f, + 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xb4, 0xea, 0x67, 0xe5, 0xf1, 0xd3, 0xc9, + 0x01, 0x42, 0x2d, 0x8d, 0xa4, 0x93, 0xce, 0x73, 0xd0, 0x0c, 0x35, 0x94, 0x32, 0x1e, 0x12, 0x1b, + 0x3b, 0x12, 0x88, 0x42, 0x60, 0x59, 0x87, 0xd6, 0x46, 0x8f, 0xc4, 0xc0, 0xd5, 0x2e, 0xae, 0xae, + 0xab, 0xe7, 0xe7, 0xad, 0xcb, 0x46, 0xfd, 0xba, 0xfe, 0xa9, 0x7e, 0xde, 0xba, 0xfe, 0xdf, 0xe5, + 0x99, 0x45, 0x69, 0xc1, 0x2e, 0x20, 0x85, 0xc1, 0xbf, 0x68, 0xb1, 0x81, 0xd9, 0x30, 0xd6, 0xaf, + 0x2e, 0x3f, 0xd3, 0x41, 0xa7, 0xf1, 0x7b, 0x8c, 0xd7, 0x1f, 0xdc, 0xee, 0xaa, 0x76, 0x85, 0xf1, + 0x32, 0xcb, 0xbf, 0x8e, 0x30, 0x60, 0xe6, 0x0c, 0xd8, 0x79, 0xfd, 0x53, 0xf5, 0xbc, 0x55, 0xfd, + 0xfb, 0xef, 0xc6, 0xd9, 0xdf, 0xd5, 0xeb, 0x33, 0x0c, 0x9d, 0x39, 0x43, 0x77, 0x5a, 0x6b, 0x9c, + 0x7d, 0xba, 0x3e, 0xff, 0x5f, 0xeb, 0x53, 0xfd, 0xe2, 0xe2, 0xec, 0xd3, 0x35, 0x85, 0x6d, 0x73, + 0x18, 0xbd, 0xd7, 0x8e, 0xde, 0xd5, 0x75, 0xf5, 0xba, 0xf6, 0x09, 0x23, 0x66, 0xce, 0x88, 0x7d, + 0xfc, 0xfb, 0x12, 0xc3, 0x65, 0xce, 0x70, 0x5d, 0xd6, 0xbe, 0x60, 0xb8, 0x0c, 0x62, 0xfa, 0x7f, + 0x7f, 0xa1, 0xe4, 0x5e, 0x24, 0x2c, 0x69, 0xa2, 0xa8, 0x75, 0xa7, 0x9e, 0xfc, 0x6e, 0x14, 0xb5, + 0xce, 0xce, 0xa3, 0xd6, 0x5e, 0xd5, 0x3a, 0x33, 0x44, 0x53, 0x71, 0xd6, 0x29, 0xeb, 0xb9, 0xa3, + 0xc1, 0xb4, 0x32, 0xee, 0x10, 0xa5, 0xb5, 0x28, 0xad, 0x45, 0x69, 0xed, 0xdc, 0xcc, 0x44, 0x69, + 0xed, 0x1f, 0x0c, 0x42, 0x69, 0xed, 0x1e, 0x4a, 0x6b, 0x4f, 0xf6, 0xac, 0x11, 0x17, 0xf2, 0x28, + 0x4f, 0xa0, 0xb6, 0xb6, 0x8c, 0xbd, 0xb9, 0xd8, 0x9b, 0x4b, 0x88, 0x5e, 0x24, 0xcc, 0xc1, 0xde, + 0x5c, 0x13, 0x84, 0x0a, 0xec, 0xcd, 0x7d, 0xc5, 0x14, 0x2e, 0xe4, 0x2b, 0x85, 0x4a, 0xa9, 0x9c, + 0xaf, 0x60, 0x47, 0x2e, 0xc4, 0x0b, 0x88, 0x17, 0xea, 0xc4, 0x0b, 0xbd, 0x09, 0xe3, 0xb3, 0x76, + 0xa1, 0xf5, 0x90, 0x79, 0xc8, 0x06, 0x90, 0x0d, 0x20, 0x1b, 0x40, 0x36, 0x80, 0x6c, 0x60, 0xae, + 0x6c, 0x30, 0xdd, 0xe5, 0xa2, 0xdd, 0x47, 0x28, 0x6c, 0x6a, 0x21, 0xb3, 0x89, 0x05, 0x9b, 0x56, + 0xf4, 0x6d, 0x5a, 0x71, 0xf6, 0x73, 0xf9, 0xdb, 0x43, 0xfb, 0x38, 0xdc, 0x49, 0x98, 0x6b, 0x26, + 0x36, 0x18, 0x4e, 0xff, 0xaf, 0x73, 0x6f, 0x0b, 0x68, 0x7d, 0x76, 0x8e, 0x17, 0x1d, 0xdc, 0xe4, + 0x8d, 0x24, 0xd3, 0xcf, 0xed, 0x5f, 0x1a, 0x03, 0x82, 0x0f, 0x82, 0x0f, 0x82, 0x0f, 0x82, 0x0f, + 0x82, 0x0f, 0x82, 0xbf, 0x66, 0xdc, 0x68, 0x7b, 0xde, 0x80, 0xb9, 0x24, 0x9a, 0xee, 0xe4, 0x76, + 0x85, 0xba, 0xbc, 0xdb, 0xe2, 0x29, 0x6e, 0x55, 0x85, 0xf0, 0xa4, 0x2b, 0xb9, 0xa6, 0xb3, 0x36, + 0xad, 0xa0, 0xf3, 0x8d, 0xdd, 0xb9, 0xc3, 0xe8, 0x68, 0x56, 0xc7, 0x1b, 0x32, 0xd1, 0x99, 0x12, + 0x05, 0x5b, 0x30, 0xf9, 0xd3, 0xf3, 0x7f, 0xd8, 0x5c, 0x04, 0xd2, 0x15, 0x1d, 0xe6, 0x2c, 0xbe, + 0x10, 0x24, 0x5e, 0x71, 0x86, 0xbe, 0x27, 0xbd, 0x8e, 0x37, 0x08, 0xe2, 0x2b, 0xa7, 0xdd, 0x1f, + 0x3a, 0x3e, 0x6f, 0x3b, 0x6e, 0x8f, 0xdb, 0x81, 0xdb, 0xe3, 0x41, 0x7c, 0xe5, 0x4c, 0xb3, 0xe5, + 0x91, 0xe0, 0x1d, 0x37, 0x90, 0xce, 0x20, 0x0c, 0xab, 0xce, 0x94, 0xa2, 0x05, 0xe1, 0xb7, 0xf0, + 0xd0, 0x57, 0xb5, 0x51, 0x56, 0xdd, 0x74, 0x53, 0x38, 0xd5, 0xac, 0x91, 0xf8, 0x21, 0xbc, 0x9f, + 0xc2, 0x76, 0xa5, 0xf4, 0x79, 0x7b, 0xf2, 0x84, 0x95, 0x4f, 0xb7, 0x17, 0x6d, 0xcb, 0x12, 0xb6, + 0x28, 0x76, 0xba, 0x59, 0x08, 0x55, 0x7c, 0x5b, 0x5d, 0x0c, 0x5c, 0x27, 0xf3, 0xa6, 0xc1, 0xb8, + 0x75, 0x33, 0x6d, 0x32, 0x0c, 0x9b, 0x0c, 0xb3, 0x26, 0xc3, 0xa8, 0xb7, 0x9b, 0x5e, 0x9c, 0x72, + 0x5f, 0x8f, 0xdb, 0x27, 0x82, 0xbc, 0x7e, 0x09, 0x28, 0x69, 0x92, 0x5e, 0x21, 0x28, 0x07, 0x21, + 0x08, 0x42, 0x10, 0x84, 0x20, 0x08, 0x41, 0x10, 0x82, 0xa8, 0xc3, 0x59, 0x6c, 0xc0, 0x04, 0x3b, + 0x6c, 0xa9, 0x5b, 0x8e, 0x9a, 0x8b, 0x60, 0xcf, 0x26, 0x69, 0x76, 0x0d, 0x1a, 0x55, 0x9d, 0xda, + 0xe1, 0x8d, 0x12, 0xcc, 0xd1, 0x84, 0x3b, 0x6a, 0xb0, 0x47, 0x16, 0xfe, 0xc8, 0xc2, 0x20, 0x59, + 0x38, 0xd4, 0x0b, 0x8b, 0x9a, 0xe1, 0x31, 0x1e, 0x95, 0x6b, 0x0a, 0x00, 0x35, 0x17, 0x77, 0x06, + 0xcc, 0xed, 0x11, 0xeb, 0xcf, 0x58, 0x26, 0x60, 0xcb, 0x65, 0xa4, 0xbb, 0x7f, 0xf8, 0x10, 0x4a, + 0xdd, 0xce, 0x33, 0x98, 0xef, 0x68, 0x9d, 0xbd, 0x46, 0xd7, 0xb1, 0xc2, 0xd5, 0x06, 0x32, 0xc4, + 0x2e, 0x34, 0x87, 0x06, 0xa9, 0xcb, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, + 0xe9, 0x1a, 0x15, 0xdd, 0xda, 0xc7, 0xbc, 0x06, 0x32, 0x60, 0x82, 0x5e, 0x43, 0xe9, 0xd8, 0xb2, + 0xf7, 0xd8, 0xe7, 0x4a, 0x18, 0x44, 0x29, 0x82, 0x29, 0x6d, 0x50, 0xa5, 0x0a, 0xae, 0xe4, 0x41, + 0x96, 0x3c, 0xd8, 0x92, 0x07, 0x5d, 0x1a, 0xe0, 0x4b, 0x04, 0x84, 0xe9, 0x29, 0x2c, 0x89, 0xb8, + 0x35, 0xe2, 0x42, 0xe6, 0x4a, 0x04, 0x8f, 0x58, 0x2a, 0x11, 0x32, 0x89, 0x46, 0x67, 0x9b, 0xc5, + 0x2f, 0x5a, 0x31, 0x7d, 0x8f, 0x5a, 0xe7, 0x1b, 0xe2, 0xf4, 0x2a, 0x61, 0x1e, 0xb1, 0xce, 0x38, + 0x09, 0xfb, 0x08, 0x76, 0x17, 0x21, 0x1a, 0xee, 0xe7, 0x5d, 0xc2, 0x7d, 0x80, 0x4b, 0x6c, 0xe8, + 0x12, 0xa5, 0x62, 0xf1, 0xa8, 0x08, 0xb7, 0x30, 0x9b, 0x8b, 0xd1, 0xb3, 0x06, 0x27, 0xd3, 0x91, + 0x09, 0x9b, 0x84, 0x2a, 0x65, 0x12, 0x14, 0x99, 0x4a, 0xc5, 0x0c, 0xd1, 0xa8, 0x0d, 0x9d, 0x68, + 0x9d, 0xc9, 0x04, 0x9d, 0x68, 0xad, 0x99, 0x0e, 0x9d, 0x68, 0x43, 0x03, 0xa1, 0x13, 0x19, 0x94, + 0x38, 0x10, 0xd7, 0x89, 0x8e, 0x09, 0xca, 0x44, 0x45, 0xc8, 0x44, 0x7f, 0xf8, 0x82, 0x4c, 0xb4, + 0x95, 0x39, 0x31, 0x64, 0x22, 0xd3, 0xa3, 0xfd, 0xbc, 0x4b, 0x40, 0x26, 0xda, 0xd8, 0x25, 0xf2, + 0x45, 0x88, 0x44, 0x5b, 0x20, 0xcb, 0xec, 0x41, 0x24, 0x22, 0xf8, 0x3c, 0xc8, 0x88, 0x44, 0xf7, + 0x91, 0xb7, 0x53, 0x54, 0x89, 0x42, 0xdb, 0x20, 0x13, 0x2d, 0x33, 0x07, 0x32, 0xd1, 0x1a, 0xb3, + 0x09, 0x32, 0xd1, 0x5a, 0x33, 0x1d, 0x32, 0xd1, 0x86, 0x06, 0x42, 0x26, 0x32, 0x28, 0x71, 0x20, + 0x2c, 0x13, 0xb5, 0xb9, 0x70, 0xfd, 0x47, 0x82, 0x3a, 0x51, 0x85, 0x90, 0x49, 0xe7, 0x4c, 0xf4, + 0xa7, 0x1b, 0xb9, 0x20, 0x14, 0xfd, 0x29, 0x2b, 0x86, 0x50, 0xb4, 0x71, 0x56, 0x9c, 0x43, 0x4e, + 0x6c, 0x78, 0xbc, 0x9f, 0x77, 0x09, 0x08, 0x45, 0x1b, 0xbb, 0x04, 0xea, 0x89, 0xb6, 0x44, 0x9c, + 0xd9, 0x83, 0x54, 0x44, 0xf0, 0x79, 0x50, 0x90, 0x8a, 0xd8, 0x83, 0x64, 0xa2, 0xcb, 0xba, 0xf4, + 0x84, 0xa2, 0xd8, 0x32, 0xc8, 0x44, 0xcb, 0xcc, 0x81, 0x4c, 0xb4, 0xc6, 0x5c, 0x82, 0x4c, 0xb4, + 0xd6, 0x4c, 0x87, 0x4c, 0xb4, 0xa1, 0x81, 0x90, 0x89, 0x0c, 0x4a, 0x1b, 0x28, 0xcb, 0x44, 0xda, + 0xcf, 0x45, 0x58, 0x05, 0x83, 0x9a, 0xce, 0x49, 0x00, 0x89, 0x5b, 0x36, 0x26, 0xde, 0x70, 0x92, + 0x09, 0xb9, 0x03, 0x7a, 0x24, 0x2e, 0xb6, 0x0c, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, + 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x0e, 0x24, 0x6e, 0x71, 0x4c, 0x86, 0xae, 0x2f, 0x39, + 0x45, 0x0e, 0x37, 0x33, 0x0c, 0x14, 0x0e, 0x14, 0x0e, 0x14, 0x0e, 0x14, 0x0e, 0x14, 0x0e, 0x14, + 0x0e, 0x14, 0x0e, 0x14, 0x0e, 0x14, 0x6e, 0x71, 0x4c, 0xa4, 0xef, 0x8a, 0x80, 0x4b, 0x7e, 0x4f, + 0xb0, 0xee, 0xfe, 0x85, 0x6d, 0x20, 0x72, 0x20, 0x72, 0x20, 0x72, 0x20, 0x72, 0x20, 0x72, 0x20, + 0x72, 0x20, 0x72, 0x20, 0x72, 0xc4, 0x88, 0xdc, 0x4e, 0xb7, 0xa3, 0xd7, 0x7c, 0x70, 0x7d, 0xc2, + 0x1e, 0xda, 0x07, 0xd9, 0x27, 0xcf, 0x3c, 0x4f, 0xbe, 0xa4, 0xe3, 0xb4, 0x7b, 0x3a, 0x73, 0x7a, + 0xb7, 0x0e, 0xb2, 0xfc, 0x87, 0x3d, 0x52, 0xe8, 0x44, 0x67, 0x9d, 0xf3, 0x40, 0x56, 0xa5, 0xd4, + 0x7c, 0xaa, 0xe6, 0x17, 0x2e, 0xce, 0x06, 0x6c, 0x42, 0x9b, 0x02, 0xeb, 0x64, 0x4f, 0x8c, 0x06, + 0x03, 0x8d, 0xa7, 0x40, 0x7d, 0x71, 0x1f, 0xe8, 0x18, 0x53, 0xf7, 0xbb, 0xcc, 0x67, 0xdd, 0x8f, + 0x8f, 0x91, 0x29, 0x3b, 0xe5, 0x24, 0x44, 0x20, 0x66, 0x0b, 0xa0, 0xc5, 0xd2, 0x7a, 0xaa, 0x9a, + 0x3f, 0xea, 0x48, 0x11, 0xf1, 0xda, 0x8b, 0xf0, 0x71, 0xd4, 0xa2, 0xa7, 0xd1, 0xba, 0x8c, 0x9e, + 0x41, 0xeb, 0x63, 0x7f, 0xd8, 0x6a, 0xf0, 0x76, 0xab, 0xda, 0xe3, 0x57, 0x6e, 0x8f, 0xb7, 0x6a, + 0xc3, 0xfb, 0xd2, 0x4d, 0xf8, 0x77, 0xb7, 0xce, 0xbd, 0xce, 0xe4, 0x47, 0x8d, 0xc9, 0xdf, 0xdb, + 0xba, 0x09, 0xff, 0xb8, 0x6a, 0xfc, 0xb7, 0xbd, 0xdb, 0x0d, 0xb8, 0x52, 0x7b, 0x47, 0xc5, 0x3e, + 0xaf, 0xdb, 0xd7, 0x8d, 0xf3, 0x71, 0xb5, 0xb3, 0x5e, 0xdd, 0xdc, 0x53, 0x73, 0x27, 0x45, 0xb3, + 0x7b, 0x46, 0xf3, 0x42, 0x2d, 0x6d, 0xcf, 0xf3, 0x79, 0x9f, 0x8b, 0xbd, 0xc9, 0x24, 0xb3, 0xb9, + 0xaa, 0xed, 0x42, 0x7a, 0x28, 0x9e, 0x56, 0x4a, 0xa7, 0x95, 0xc2, 0xe9, 0xa1, 0x6c, 0xaa, 0x26, + 0xb4, 0xa6, 0x30, 0x4d, 0x3b, 0x3c, 0x2b, 0x64, 0x57, 0x69, 0xb3, 0x29, 0x35, 0x30, 0x92, 0x7d, + 0x50, 0xcf, 0xf6, 0x0e, 0x19, 0x7b, 0x97, 0x6a, 0xaf, 0xa2, 0xea, 0x4d, 0xd9, 0x4e, 0xc6, 0xec, + 0xa6, 0x48, 0x86, 0xd3, 0x43, 0xd1, 0x99, 0xd4, 0x4a, 0xcf, 0x9c, 0x56, 0x74, 0xa6, 0xf4, 0xf3, + 0x3a, 0x79, 0x3e, 0xe3, 0x1b, 0x29, 0x5c, 0xff, 0xd6, 0xb3, 0xae, 0xad, 0x7a, 0xbd, 0x5a, 0xdb, + 0x3a, 0xb4, 0xb6, 0xf5, 0x65, 0x6d, 0xeb, 0xc6, 0x00, 0x4e, 0xa3, 0x81, 0x53, 0xc1, 0x92, 0x51, + 0x86, 0xb8, 0xf9, 0xce, 0xa0, 0x39, 0xa7, 0x6a, 0xae, 0x91, 0x9b, 0x63, 0x56, 0xa6, 0xec, 0x26, + 0xa5, 0x6c, 0x26, 0x1b, 0x17, 0x48, 0x7f, 0x82, 0x66, 0x30, 0x39, 0x2d, 0xc1, 0x78, 0xff, 0x5b, + 0xdb, 0xf3, 0x83, 0xcc, 0xe6, 0x65, 0xcc, 0x3a, 0x9e, 0x6f, 0x95, 0x91, 0x93, 0x65, 0x4b, 0x0d, + 0x33, 0xa7, 0x84, 0x2a, 0xa8, 0xa0, 0x5a, 0x0a, 0xa8, 0x8a, 0xfa, 0x29, 0xa7, 0x7c, 0xca, 0xa9, + 0x9e, 0x72, 0x8a, 0x67, 0x16, 0xbc, 0x9e, 0xf2, 0x6c, 0x15, 0xea, 0x38, 0x76, 0xa9, 0x4b, 0xa6, + 0xe3, 0x3b, 0x6e, 0x59, 0x3e, 0x7d, 0x88, 0x7c, 0x1a, 0xf9, 0x34, 0xf2, 0xe9, 0x2d, 0xcc, 0xa7, + 0xb3, 0x0e, 0xc2, 0xf1, 0x8d, 0xdc, 0xee, 0xf7, 0xe9, 0x98, 0x70, 0x61, 0x0f, 0xbd, 0x40, 0xaa, + 0xf3, 0x84, 0xf8, 0x74, 0x8f, 0x05, 0x03, 0x54, 0x2d, 0x08, 0x2b, 0x09, 0xd5, 0xca, 0x43, 0xb6, + 0x8e, 0xd0, 0xad, 0x37, 0x84, 0xeb, 0x0a, 0xe5, 0xda, 0x43, 0xba, 0xf6, 0xd0, 0xae, 0x3d, 0xc4, + 0xab, 0x09, 0xf5, 0x8a, 0x42, 0xbe, 0xf2, 0xd0, 0x1f, 0xdf, 0x30, 0x5a, 0xf3, 0x53, 0xee, 0x38, + 0xb3, 0x70, 0x11, 0xdd, 0x5f, 0xf1, 0xa4, 0x55, 0x0b, 0x00, 0xca, 0x84, 0x0f, 0x4a, 0x80, 0x40, + 0x03, 0x18, 0x74, 0x03, 0x04, 0x19, 0xa0, 0x20, 0x03, 0x18, 0x64, 0x80, 0x43, 0x2d, 0x80, 0x28, + 0x06, 0x12, 0x6d, 0x80, 0x32, 0x0f, 0x2c, 0xfa, 0xfc, 0x6d, 0x0e, 0x5f, 0x74, 0xf9, 0x9a, 0x1e, + 0x98, 0xd1, 0x96, 0x77, 0x50, 0x82, 0x1d, 0x5a, 0xf0, 0x43, 0x05, 0x86, 0xc8, 0xc1, 0x11, 0x39, + 0x58, 0x22, 0x07, 0x4f, 0x7a, 0x60, 0x4a, 0x13, 0x5c, 0x69, 0x87, 0xad, 0xd8, 0x80, 0xd9, 0xf6, + 0x00, 0xed, 0x9e, 0xfa, 0xdc, 0x56, 0x51, 0xe5, 0x7e, 0x85, 0x3f, 0x41, 0x9a, 0xe6, 0xa6, 0x37, + 0x64, 0xba, 0xef, 0x50, 0xea, 0xba, 0x43, 0xb3, 0xdb, 0x0e, 0xb5, 0x2e, 0x3b, 0x64, 0xbb, 0xeb, + 0x90, 0xed, 0xaa, 0x43, 0xb6, 0x9b, 0xce, 0x6e, 0xb7, 0xfe, 0x20, 0xd3, 0x35, 0x27, 0x8e, 0x3b, + 0x03, 0xe6, 0xf6, 0x7c, 0xd6, 0xa3, 0x10, 0x74, 0x66, 0x99, 0x57, 0x99, 0x80, 0x2d, 0x97, 0x51, + 0x11, 0xe1, 0x87, 0x0f, 0x61, 0xa1, 0xa8, 0x33, 0x83, 0xf2, 0x5d, 0xed, 0x31, 0xa2, 0x31, 0xff, + 0x1a, 0xd2, 0x80, 0xeb, 0x67, 0x56, 0x47, 0x22, 0xf9, 0x02, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, + 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x7b, 0x23, 0xa9, 0x0b, 0xc3, 0x0e, 0x38, 0x9d, 0xf2, + 0xa1, 0x50, 0xb3, 0x39, 0xf7, 0xd5, 0x0e, 0xa3, 0x62, 0xf3, 0xee, 0xab, 0x5d, 0x05, 0x8c, 0x0e, + 0x8c, 0x0e, 0x8c, 0x0e, 0x8c, 0x0e, 0x8c, 0x4e, 0xd7, 0xa8, 0xe8, 0x5e, 0xc9, 0x8a, 0x0d, 0x99, + 0x76, 0x39, 0xe5, 0xa2, 0xcb, 0x1e, 0xe8, 0x9d, 0x36, 0xf1, 0xc2, 0x36, 0x9c, 0x36, 0x41, 0x19, + 0x48, 0x29, 0x02, 0x2a, 0x6d, 0x60, 0xa5, 0x0a, 0xb0, 0xe4, 0x81, 0x96, 0x3c, 0xe0, 0x92, 0x07, + 0x5e, 0x1a, 0x00, 0x4c, 0x04, 0x88, 0xe9, 0x49, 0x2c, 0x84, 0xa5, 0x16, 0x8a, 0x92, 0xcb, 0x32, + 0xe9, 0xe5, 0x37, 0xff, 0x4d, 0x29, 0x45, 0xc0, 0x64, 0x10, 0x5f, 0x45, 0x42, 0x4d, 0x48, 0x33, + 0x70, 0x7a, 0x06, 0x15, 0xa7, 0xb4, 0xda, 0x2c, 0x90, 0x76, 0xd4, 0x69, 0x85, 0x18, 0x2f, 0x7d, + 0x36, 0x0d, 0xb4, 0x14, 0xb4, 0x14, 0xb4, 0x14, 0xb4, 0x14, 0xb4, 0x14, 0xb4, 0x74, 0xc7, 0x68, + 0x29, 0x0e, 0x41, 0x03, 0x8d, 0x7b, 0xc5, 0x98, 0x74, 0xbc, 0xbb, 0xbb, 0x91, 0xe0, 0xf2, 0x91, + 0xaa, 0xc8, 0xb8, 0x68, 0x20, 0x28, 0x1d, 0x28, 0x1d, 0x28, 0x1d, 0x28, 0x1d, 0x28, 0x1d, 0x28, + 0xdd, 0x8e, 0x51, 0x3a, 0x28, 0x8d, 0xaf, 0x83, 0x9e, 0x57, 0x29, 0x8d, 0x33, 0x5e, 0xc1, 0x59, + 0x10, 0x5f, 0x3f, 0x42, 0x6c, 0xa4, 0xc9, 0x52, 0xd9, 0x83, 0xb4, 0xc9, 0x33, 0xd5, 0x65, 0x46, + 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, 0x82, 0xad, + 0xbe, 0x95, 0xad, 0xbe, 0xe4, 0x16, 0x13, 0xc6, 0x3a, 0xc7, 0x35, 0xc0, 0x5a, 0x69, 0xb2, 0x56, + 0x2e, 0xee, 0xdd, 0x01, 0xef, 0xda, 0x3e, 0x73, 0x03, 0xcd, 0xe7, 0x70, 0x2f, 0xf5, 0xd0, 0x05, + 0xfb, 0xc0, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0x77, 0x8c, 0xab, + 0xf2, 0x2e, 0x13, 0x92, 0xcb, 0x47, 0xa2, 0x7c, 0xb5, 0x48, 0xc8, 0xa6, 0x5a, 0xf4, 0xa8, 0x3e, + 0xba, 0x01, 0xc1, 0x90, 0x3a, 0x1b, 0xd0, 0xda, 0xc5, 0xd7, 0xea, 0x79, 0xed, 0xb4, 0xd5, 0xa8, + 0xdf, 0x5c, 0x9f, 0xb5, 0x1a, 0x67, 0xd5, 0xab, 0xfa, 0x05, 0xb5, 0xe8, 0xfa, 0xd5, 0x1d, 0x8c, + 0xa6, 0x4d, 0xbc, 0x6f, 0x49, 0xd9, 0x35, 0xf9, 0xfa, 0x45, 0xce, 0xa2, 0xa5, 0xa3, 0x5b, 0xbd, + 0x6a, 0x9d, 0xd7, 0xeb, 0x97, 0x16, 0x39, 0x6b, 0xc7, 0xef, 0x31, 0xa4, 0x6f, 0x1b, 0xd2, 0x4f, + 0xf5, 0x8b, 0xcf, 0x67, 0xa7, 0x18, 0xd1, 0xed, 0x19, 0xd1, 0x7a, 0xa3, 0xf6, 0x77, 0xed, 0xa2, + 0x7a, 0x5d, 0x6f, 0x60, 0x54, 0xb7, 0xc8, 0x4f, 0xcf, 0x6f, 0xae, 0xae, 0xcf, 0x1a, 0x54, 0xe3, + 0x2f, 0x29, 0x8b, 0x9a, 0xc8, 0x47, 0x88, 0x59, 0x41, 0x41, 0x1d, 0x1c, 0xb8, 0x81, 0xb4, 0xef, + 0xbc, 0x2e, 0xef, 0x71, 0xd6, 0xa5, 0x27, 0x0e, 0xce, 0x9b, 0x07, 0x6d, 0x70, 0x99, 0x39, 0xd0, + 0x06, 0xd7, 0x98, 0x50, 0xd0, 0x06, 0xd7, 0x9a, 0xe9, 0xd0, 0x06, 0x37, 0x34, 0x10, 0xda, 0xa0, + 0x41, 0x0c, 0x98, 0xb0, 0x36, 0x28, 0xf9, 0x1d, 0x93, 0xbc, 0xf3, 0x23, 0x28, 0x15, 0x08, 0x6a, + 0x83, 0xc7, 0x84, 0x4c, 0xba, 0x11, 0x5c, 0x06, 0xd3, 0xc3, 0x9b, 0x5d, 0xe1, 0x05, 0xac, 0xe3, + 0x89, 0x6e, 0x40, 0xe9, 0x91, 0x35, 0x5c, 0xd1, 0x67, 0xe4, 0xf4, 0x36, 0x7a, 0x09, 0x9f, 0xf5, + 0x85, 0x0b, 0x72, 0x88, 0x48, 0x94, 0x03, 0x26, 0xcc, 0x9b, 0xaa, 0xba, 0x84, 0xed, 0xfb, 0xec, + 0xbb, 0x1d, 0xc9, 0x3d, 0x71, 0xca, 0xfb, 0xa1, 0xb7, 0x1e, 0x42, 0x95, 0x79, 0x8d, 0x4b, 0xb8, + 0x0f, 0x70, 0x89, 0x0d, 0x5d, 0x22, 0x77, 0x5c, 0x28, 0x94, 0xca, 0x85, 0xc2, 0x61, 0xf9, 0xa8, + 0x7c, 0x58, 0x29, 0x16, 0x73, 0x25, 0x4a, 0x2b, 0x5b, 0xc6, 0x79, 0xc9, 0x3b, 0x58, 0xb3, 0xec, + 0xab, 0x09, 0x8d, 0x8b, 0x4a, 0x14, 0x25, 0x73, 0x1e, 0x57, 0x82, 0xd4, 0xd3, 0x38, 0x97, 0x8b, + 0x68, 0x00, 0x87, 0xae, 0xb5, 0xce, 0x54, 0x82, 0xae, 0xb5, 0xd6, 0x4c, 0x87, 0xae, 0xb5, 0xa1, + 0x81, 0xd0, 0xb5, 0x0c, 0xca, 0x21, 0x08, 0xeb, 0x5a, 0x23, 0x2e, 0xe4, 0x51, 0x9e, 0xa0, 0xa4, + 0x55, 0x86, 0x64, 0xf4, 0x87, 0x2f, 0x48, 0x46, 0x5b, 0x99, 0x1f, 0x43, 0x32, 0x32, 0x3d, 0xdc, + 0xcf, 0xbb, 0x04, 0x24, 0xa3, 0x8d, 0x5d, 0xa2, 0x90, 0xaf, 0x14, 0x2a, 0xa5, 0x72, 0xbe, 0x02, + 0xa1, 0x68, 0x0b, 0xa4, 0x99, 0x3d, 0x08, 0x45, 0x04, 0x9f, 0x07, 0x09, 0xa1, 0x88, 0x56, 0x82, + 0x4f, 0xeb, 0xa4, 0x4f, 0xa2, 0x41, 0x1b, 0x32, 0xd1, 0x3a, 0x33, 0x09, 0x32, 0xd1, 0x5a, 0x33, + 0x1d, 0x32, 0xd1, 0x86, 0x06, 0x42, 0x26, 0x32, 0x28, 0x6f, 0xa0, 0xbc, 0x35, 0x72, 0x78, 0x5f, + 0xb2, 0xc9, 0xf9, 0x60, 0xbc, 0x35, 0xf2, 0x98, 0x56, 0x2b, 0x0f, 0xc9, 0x7c, 0x41, 0x4e, 0x2e, + 0xb2, 0xfe, 0xdb, 0xdf, 0xbf, 0x3d, 0xb4, 0x2b, 0xae, 0xdd, 0xab, 0xda, 0x9f, 0x9b, 0xbf, 0x72, + 0xef, 0x0b, 0xe3, 0x93, 0x83, 0x5f, 0xe5, 0xf1, 0xe2, 0x8b, 0x4f, 0xcb, 0xde, 0x96, 0x7b, 0x5f, + 0x1e, 0x9f, 0xac, 0xf8, 0x49, 0x69, 0x7c, 0xf2, 0xca, 0xdf, 0x51, 0x1c, 0xef, 0x27, 0xde, 0x3a, + 0x79, 0x3d, 0xbf, 0xea, 0x03, 0x85, 0x15, 0x1f, 0x38, 0x5a, 0xf5, 0x81, 0xa3, 0x15, 0x1f, 0x58, + 0x69, 0x52, 0x7e, 0xc5, 0x07, 0x8a, 0xe3, 0xa7, 0xc4, 0xfb, 0xf7, 0x97, 0xbf, 0xb5, 0x34, 0x3e, + 0x78, 0x5a, 0xf5, 0xb3, 0xf2, 0xf8, 0xe9, 0xe4, 0xe0, 0xc0, 0xd9, 0xcf, 0xe5, 0x6f, 0x0f, 0xed, + 0xe3, 0xe6, 0x53, 0xee, 0xf6, 0xd0, 0xce, 0x35, 0x27, 0xef, 0x6c, 0x3e, 0xdd, 0xe6, 0xec, 0xca, + 0xec, 0x72, 0xf2, 0xff, 0x83, 0xbf, 0x2c, 0xa4, 0x45, 0x48, 0x8b, 0x12, 0x8e, 0x1b, 0xf5, 0x67, + 0xf1, 0x46, 0x92, 0xd1, 0xcb, 0x8d, 0x5e, 0x1a, 0x87, 0x04, 0x09, 0x09, 0x12, 0x12, 0x24, 0x24, + 0x48, 0x48, 0x90, 0x90, 0x20, 0xed, 0x58, 0x82, 0x84, 0x83, 0x56, 0xe8, 0x53, 0xb9, 0x9d, 0x3e, + 0xcb, 0xba, 0x2a, 0x84, 0x27, 0x5d, 0xc9, 0x89, 0xb4, 0x20, 0xb4, 0x82, 0xce, 0x37, 0x76, 0xe7, + 0x46, 0x47, 0x07, 0x5a, 0x8e, 0x37, 0x64, 0xa2, 0x33, 0x25, 0x4a, 0xb6, 0x60, 0xf2, 0xa7, 0xe7, + 0xff, 0xb0, 0xb9, 0x08, 0xa4, 0x2b, 0x3a, 0xcc, 0x59, 0x7c, 0x21, 0x48, 0xbc, 0xe2, 0x0c, 0x7d, + 0x4f, 0x7a, 0x1d, 0x6f, 0x10, 0xc4, 0x57, 0x4e, 0xbb, 0x3f, 0x74, 0x7c, 0xde, 0x76, 0xdc, 0x1e, + 0xb7, 0x03, 0xb7, 0xc7, 0x83, 0xf8, 0xca, 0x99, 0xaa, 0x19, 0x23, 0xc1, 0x3b, 0x6e, 0x20, 0x1d, + 0xc1, 0x78, 0xff, 0x5b, 0xdb, 0xf3, 0x83, 0xf8, 0xca, 0x71, 0xbb, 0xdf, 0xa7, 0x48, 0xc0, 0x85, + 0x3d, 0xf4, 0x02, 0xe9, 0x4c, 0xd9, 0x6d, 0x10, 0x7e, 0x0b, 0xdb, 0x6c, 0xea, 0x05, 0x08, 0x7d, + 0x33, 0x59, 0xe3, 0x2c, 0xb6, 0x46, 0xe2, 0x87, 0xf0, 0x7e, 0x0a, 0xdb, 0x95, 0xd2, 0xe7, 0xed, + 0xc9, 0x88, 0x68, 0x9f, 0xc9, 0xcf, 0x65, 0x54, 0x49, 0xdb, 0x34, 0xfb, 0xfb, 0x2c, 0xfa, 0x6b, + 0x36, 0x83, 0x4a, 0xf2, 0x43, 0x29, 0xe9, 0xa1, 0x99, 0xec, 0x50, 0x4b, 0x72, 0xc8, 0x26, 0x37, + 0x64, 0x93, 0x1a, 0xb2, 0xc9, 0xcc, 0x6e, 0x33, 0xaf, 0x53, 0xee, 0xd3, 0x08, 0x3b, 0x09, 0x90, + 0xa2, 0xa7, 0x26, 0x26, 0x4d, 0xa4, 0xa5, 0x29, 0xe6, 0xa0, 0x29, 0x92, 0x87, 0x57, 0xda, 0x30, + 0x4b, 0x15, 0x6e, 0xc9, 0xc3, 0x2e, 0x79, 0xf8, 0x25, 0x0f, 0xc3, 0x74, 0xa4, 0x98, 0x3d, 0x42, + 0x9a, 0x22, 0x15, 0x78, 0x8e, 0x0d, 0x9a, 0x60, 0x9f, 0x2d, 0xa9, 0x29, 0x9d, 0x73, 0x11, 0xf5, + 0xd9, 0x44, 0x62, 0xae, 0x47, 0xb3, 0xa0, 0x9d, 0x1c, 0x5c, 0x53, 0x86, 0x6d, 0x33, 0xe0, 0x9b, + 0x3a, 0x8c, 0x1b, 0x03, 0xe7, 0xc6, 0xc0, 0xba, 0x31, 0xf0, 0x4e, 0x0b, 0xe6, 0x89, 0xc1, 0x7d, + 0x3c, 0x8a, 0xd7, 0x14, 0x01, 0x76, 0x8f, 0xf6, 0xd1, 0x69, 0x89, 0x6c, 0xb8, 0x4c, 0xd0, 0xb6, + 0x17, 0x47, 0xa9, 0x85, 0x27, 0xa2, 0x3d, 0x93, 0x15, 0x6c, 0x81, 0xa2, 0xee, 0x9a, 0x56, 0xb8, 0xba, 0x46, 0x96, 0xf8, 0x86, 0xe6, 0xd1, 0x24, 0xbd, 0x39, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x20, 0xeb, 0xf2, 0x51, 0xa4, 0xa6, 0x75, 0xc5, 0x86, 0x4d, 0x39, 0xda, - 0x80, 0x11, 0xde, 0x2b, 0x37, 0x27, 0x7d, 0x4d, 0x2c, 0x3d, 0xc4, 0x06, 0xa6, 0x2d, 0x22, 0x05, - 0x26, 0x90, 0x03, 0xb3, 0x48, 0x82, 0x29, 0x64, 0xc1, 0x38, 0xd2, 0x60, 0x1c, 0x79, 0x30, 0x8e, - 0x44, 0xd0, 0x24, 0x13, 0x44, 0x49, 0x45, 0x3c, 0xba, 0x64, 0x15, 0xb5, 0x44, 0xdc, 0x1c, 0x71, - 0x21, 0x73, 0x25, 0xca, 0x31, 0x33, 0x42, 0xf1, 0x12, 0x61, 0x13, 0x69, 0xb6, 0x80, 0x58, 0xfc, - 0xa2, 0x8d, 0x39, 0x7b, 0xd4, 0x5b, 0x44, 0x18, 0x46, 0x2f, 0x13, 0xe6, 0x12, 0x6f, 0x21, 0x91, - 0xb0, 0xd7, 0x80, 0x6d, 0xf3, 0x86, 0xc0, 0xd1, 0xbc, 0x8b, 0xb9, 0x8f, 0x70, 0xb1, 0x8c, 0x5d, - 0xac, 0x54, 0x2c, 0x1e, 0x17, 0xe1, 0x66, 0xbb, 0xc5, 0x45, 0xe9, 0x5b, 0xd7, 0xfc, 0x80, 0xe7, - 0x65, 0x68, 0x18, 0x27, 0x5c, 0x09, 0x97, 0x48, 0x29, 0xa8, 0x56, 0xc4, 0x19, 0x82, 0x2a, 0xd0, - 0x05, 0xd3, 0x9c, 0x8c, 0xd0, 0x05, 0x53, 0xf5, 0x1c, 0xe8, 0x82, 0x19, 0x1b, 0x0c, 0x5d, 0x70, - 0x8b, 0x13, 0x31, 0xc3, 0x74, 0xc1, 0x13, 0x03, 0x64, 0xc1, 0x22, 0x64, 0xc1, 0x0d, 0xbf, 0x20, - 0x0b, 0x42, 0xb3, 0x80, 0x2c, 0xb8, 0x83, 0x68, 0x34, 0xef, 0x62, 0x90, 0x05, 0x33, 0x77, 0xb1, - 0x7c, 0x11, 0xa2, 0xe0, 0x8e, 0x11, 0x51, 0xfa, 0xd6, 0x41, 0x14, 0x34, 0x36, 0x88, 0x87, 0x4a, - 0xdb, 0x43, 0x14, 0x5d, 0x4c, 0x50, 0x05, 0x43, 0x5b, 0x21, 0x0b, 0xbe, 0xc7, 0x3c, 0xc8, 0x82, - 0x29, 0xce, 0x46, 0xc8, 0x82, 0xa9, 0x7a, 0x0e, 0x64, 0xc1, 0x8c, 0x0d, 0x86, 0x2c, 0xb8, 0xc5, - 0x89, 0x98, 0x41, 0xb2, 0x60, 0x9b, 0x0b, 0xd7, 0x7f, 0x32, 0x40, 0x17, 0xac, 0x10, 0x36, 0xf1, - 0x82, 0x89, 0xfe, 0x74, 0x63, 0x2e, 0x84, 0xc1, 0x4d, 0x55, 0x0b, 0x08, 0x83, 0x99, 0xab, 0x16, - 0x39, 0x68, 0x16, 0x3b, 0x86, 0x47, 0xf3, 0x2e, 0x06, 0x61, 0x30, 0x73, 0x17, 0x43, 0xbd, 0xe0, - 0x0e, 0x92, 0x51, 0xfa, 0xd6, 0x41, 0x1a, 0x34, 0x36, 0x8c, 0x5b, 0xec, 0x51, 0x32, 0xd1, 0x65, - 0x5d, 0xfa, 0xc2, 0x60, 0x6c, 0x29, 0x64, 0xc1, 0xf7, 0x98, 0x07, 0x59, 0x30, 0xc5, 0xb9, 0x08, - 0x59, 0x30, 0x55, 0xcf, 0x81, 0x2c, 0x98, 0xb1, 0xc1, 0x90, 0x05, 0xb7, 0x38, 0x0d, 0x33, 0x49, - 0x16, 0x24, 0x77, 0xee, 0xd7, 0x2a, 0x18, 0x27, 0x72, 0x0e, 0x18, 0x48, 0xed, 0x7b, 0xc6, 0xd0, - 0x1b, 0x4e, 0x32, 0x4f, 0x77, 0x40, 0x9f, 0xd4, 0xc6, 0x96, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, - 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0xc2, 0x29, 0xe6, 0xc7, - 0x70, 0xe8, 0xfa, 0x92, 0x9b, 0xc0, 0x69, 0x67, 0x86, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, - 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0xc2, 0x29, 0xe6, 0xc7, 0x50, - 0xfa, 0xae, 0x08, 0xb8, 0xe4, 0x0f, 0x06, 0xec, 0x4b, 0x7a, 0x65, 0x2b, 0x88, 0x2d, 0x88, 0x2d, - 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x2c, 0x22, - 0xea, 0xa2, 0x56, 0x55, 0x08, 0x4f, 0xba, 0x92, 0x7b, 0x34, 0x37, 0x40, 0x59, 0x41, 0xe7, 0x3b, - 0xbb, 0x77, 0x87, 0xd1, 0x01, 0x94, 0x8e, 0x37, 0x64, 0xa2, 0x33, 0x25, 0x8a, 0xb6, 0x60, 0xf2, - 0xa7, 0xe7, 0xff, 0xb0, 0xb9, 0x08, 0xa4, 0x2b, 0x3a, 0xcc, 0x59, 0x7c, 0x21, 0x48, 0xbc, 0xe2, - 0x0c, 0x7d, 0x4f, 0x7a, 0x1d, 0x6f, 0x10, 0xc4, 0x57, 0x4e, 0xbb, 0x3f, 0x74, 0x7c, 0xde, 0x76, - 0xdc, 0x1e, 0xb7, 0x03, 0xb7, 0xc7, 0x83, 0xf8, 0xca, 0xe1, 0xc3, 0x87, 0x92, 0x1d, 0xf8, 0x92, - 0xd9, 0x43, 0x6f, 0xc0, 0x3b, 0x4f, 0x8e, 0x60, 0xbc, 0xff, 0xbd, 0xed, 0xf9, 0x41, 0x7c, 0xe5, - 0xb8, 0xdd, 0x7f, 0xa7, 0x68, 0xe5, 0x8d, 0xa4, 0x3d, 0xf4, 0x02, 0xe9, 0xf8, 0xde, 0x48, 0xb2, - 0x20, 0xfc, 0xe6, 0x8c, 0xc4, 0x0f, 0xe1, 0xfd, 0x14, 0xb6, 0x2b, 0xa5, 0xcf, 0xdb, 0xd3, 0x1f, - 0x24, 0x5e, 0x0a, 0x8f, 0xd4, 0xc4, 0x41, 0x9a, 0x94, 0x2d, 0xa1, 0x72, 0xb0, 0xfe, 0x5f, 0xec, - 0x89, 0x62, 0x67, 0x5c, 0xeb, 0x82, 0x07, 0xb2, 0x2a, 0x25, 0xb1, 0x53, 0xff, 0xbf, 0x72, 0x71, - 0x3e, 0x60, 0x13, 0x5a, 0x19, 0x58, 0xa7, 0x7b, 0x62, 0x34, 0x18, 0x10, 0x3a, 0x95, 0xf5, 0xab, - 0xfb, 0x48, 0xd7, 0xb8, 0xba, 0xdf, 0x65, 0x3e, 0xeb, 0x7e, 0x7a, 0x8a, 0x4c, 0x83, 0x13, 0xd2, - 0x87, 0xcc, 0x1d, 0x80, 0x4a, 0x8b, 0xd4, 0xa9, 0xca, 0xfe, 0xa8, 0x23, 0x45, 0x94, 0x37, 0x5c, - 0x86, 0x8f, 0xaf, 0x16, 0x3d, 0xbd, 0xd6, 0x55, 0xf4, 0xcc, 0x5a, 0x9f, 0xfa, 0xc3, 0x56, 0x83, - 0xb7, 0x5b, 0xd5, 0x1e, 0xbf, 0x76, 0x7b, 0xbc, 0x55, 0x1b, 0x3e, 0x94, 0xae, 0x7d, 0xc9, 0xae, - 0xa6, 0x8f, 0xa9, 0x75, 0x19, 0x3d, 0x9c, 0x56, 0xb5, 0xfb, 0x6f, 0x83, 0xb7, 0xeb, 0x23, 0x79, - 0xe5, 0x05, 0xb2, 0xd5, 0x98, 0x3c, 0x92, 0xd6, 0x6d, 0xf8, 0xf7, 0x57, 0xe3, 0x3f, 0xff, 0x03, - 0x10, 0x59, 0xbf, 0x05, 0x9a, 0xc3, 0x10, 0xb5, 0xf0, 0xb3, 0x75, 0x61, 0x47, 0xaf, 0x97, 0xe9, - 0x9b, 0xdb, 0x7a, 0xee, 0xac, 0xc9, 0x9b, 0x66, 0x4c, 0x7a, 0x32, 0x6d, 0x6d, 0xde, 0xdd, 0x63, - 0xa2, 0x3b, 0xf4, 0xb8, 0x90, 0x7b, 0x1d, 0x6f, 0xe0, 0xf9, 0x9a, 0x70, 0x86, 0x06, 0x8d, 0x26, - 0x45, 0x9b, 0x49, 0xd1, 0x64, 0x1a, 0xb4, 0x58, 0x97, 0xc7, 0x10, 0xc1, 0x1d, 0xb3, 0xf1, 0x46, - 0x23, 0x83, 0x55, 0xc0, 0x58, 0xf5, 0x40, 0xa7, 0x7a, 0xe0, 0x52, 0x7b, 0x47, 0xc5, 0x0e, 0xaf, - 0xdb, 0xd1, 0x4d, 0x75, 0x70, 0xb5, 0x93, 0x5f, 0xdd, 0x14, 0x54, 0x73, 0x27, 0x45, 0x93, 0x5c, - 0xd7, 0xe4, 0x36, 0x6e, 0x52, 0x2b, 0x04, 0xaa, 0x4c, 0x81, 0x49, 0x8d, 0x57, 0x66, 0xef, 0x23, - 0x0a, 0xfc, 0xc3, 0x9a, 0x9b, 0x03, 0xbe, 0xba, 0x15, 0xfb, 0x97, 0xde, 0xde, 0x0b, 0x06, 0x28, - 0x8a, 0x09, 0xb3, 0x15, 0x75, 0x45, 0xb7, 0x53, 0x5d, 0xe8, 0xa6, 0xa3, 0x70, 0x4d, 0x6f, 0x21, - 0x9a, 0xae, 0xc2, 0x32, 0xed, 0x85, 0x62, 0xda, 0x0b, 0xbf, 0xb4, 0x17, 0x72, 0x6d, 0x17, 0x5b, - 0x39, 0xe3, 0x6a, 0xb5, 0x20, 0x2b, 0xa2, 0xb2, 0xca, 0x1d, 0x67, 0x16, 0x2e, 0xa2, 0xfb, 0x2b, - 0x9e, 0xb4, 0x6a, 0x01, 0x40, 0x1b, 0x10, 0xe8, 0x04, 0x04, 0x1a, 0xc0, 0xa0, 0x1b, 0x20, 0xc8, - 0x00, 0x05, 0x19, 0xc0, 0x20, 0x03, 0x1c, 0xbb, 0xa1, 0xed, 0xa8, 0x06, 0x94, 0x79, 0x60, 0xd1, - 0xe7, 0x6f, 0x73, 0xf8, 0xa2, 0xcb, 0xd7, 0xf4, 0xc0, 0x8c, 0x76, 0xb8, 0xa1, 0x00, 0x3b, 0xb4, - 0xe0, 0x87, 0x0a, 0x0c, 0x91, 0x83, 0x23, 0x72, 0xb0, 0x44, 0x0e, 0x9e, 0xf4, 0xc0, 0x94, 0x26, - 0xb8, 0xd2, 0x0e, 0x5b, 0xb1, 0x01, 0x61, 0x59, 0x80, 0x76, 0x3f, 0x9d, 0x45, 0x2f, 0x9d, 0x55, - 0x0a, 0x8b, 0x70, 0xa6, 0x79, 0xbb, 0x26, 0x99, 0x7d, 0xa3, 0x94, 0xf6, 0x87, 0xd2, 0xdc, 0x07, - 0x4a, 0x6d, 0xbf, 0x27, 0xd9, 0x7d, 0x9d, 0x64, 0xf7, 0x6f, 0x92, 0xdd, 0xa7, 0xb9, 0xdb, 0x25, - 0xa1, 0x64, 0xf6, 0x57, 0xc6, 0x71, 0x67, 0xc0, 0xdc, 0x9e, 0xcf, 0x7a, 0x14, 0x82, 0xce, 0x2c, - 0xeb, 0x2a, 0x13, 0xb0, 0xe5, 0x2a, 0x5a, 0xff, 0xfd, 0xf8, 0x31, 0xdc, 0xf5, 0xe5, 0x84, 0x40, - 0xbe, 0xab, 0x15, 0xa7, 0x1a, 0x33, 0xaf, 0x59, 0xc1, 0x27, 0x1d, 0x4e, 0x17, 0x5b, 0x04, 0x5a, - 0x07, 0x5a, 0x07, 0x5a, 0x07, 0x5a, 0x07, 0x5a, 0x07, 0x5a, 0x07, 0x5a, 0x67, 0x24, 0xad, 0x8b, - 0xb1, 0x1c, 0xcc, 0x4e, 0xf9, 0x60, 0x44, 0x5b, 0x7a, 0xe8, 0x10, 0xbb, 0x99, 0x41, 0xe0, 0x75, - 0xe0, 0x75, 0xe0, 0x75, 0xe0, 0x75, 0xe0, 0x75, 0xe0, 0x75, 0xe0, 0x75, 0x46, 0xf2, 0xba, 0x19, - 0x94, 0x83, 0xd6, 0x29, 0x1f, 0x8b, 0xb0, 0x4b, 0x16, 0x19, 0x52, 0x17, 0x9a, 0x43, 0x83, 0xd2, - 0xe5, 0x40, 0xe9, 0x40, 0xe9, 0x40, 0xe9, 0x40, 0xe9, 0x40, 0xe9, 0x74, 0x8d, 0x8a, 0xee, 0x02, - 0xa5, 0xd8, 0x90, 0x69, 0x6b, 0x40, 0x2e, 0xba, 0x8c, 0x4e, 0xa3, 0xf2, 0x97, 0xed, 0x7d, 0x2f, - 0xb6, 0x51, 0xe9, 0xa7, 0x48, 0xaa, 0x25, 0x3e, 0xb9, 0x16, 0xf8, 0x14, 0x5b, 0xde, 0xd3, 0x6e, - 0x71, 0x4f, 0xb5, 0xa5, 0x3d, 0xf9, 0x16, 0xf6, 0xe4, 0x5b, 0xd6, 0x93, 0x6f, 0x51, 0x8f, 0x4e, - 0xb9, 0x24, 0x35, 0x16, 0xc2, 0x5a, 0x0b, 0x45, 0xcd, 0x65, 0x99, 0xf6, 0xf2, 0x9b, 0xff, 0xa6, - 0x94, 0x22, 0x60, 0x32, 0x88, 0xaf, 0x22, 0xa5, 0x26, 0xa4, 0x19, 0x68, 0x98, 0x49, 0xc5, 0x29, - 0x89, 0x54, 0xd0, 0x27, 0xbc, 0x91, 0x42, 0x25, 0x3d, 0xe8, 0x28, 0xe8, 0x28, 0xe8, 0x28, 0xe8, - 0x28, 0xe8, 0x28, 0xe8, 0xa8, 0xf2, 0xb8, 0x35, 0xe2, 0x42, 0x1e, 0xe7, 0x09, 0xb2, 0x51, 0x4a, - 0x64, 0xb4, 0xe1, 0x8a, 0xfe, 0xe4, 0x69, 0xdd, 0x91, 0x8a, 0x01, 0x04, 0x8f, 0xeb, 0xf9, 0xca, - 0x05, 0xdd, 0xa3, 0x3a, 0x89, 0x1f, 0x80, 0xf9, 0xcd, 0x1d, 0x8c, 0x18, 0x61, 0xfb, 0xbe, 0xf8, - 0x6e, 0x47, 0x72, 0x4f, 0x9c, 0xf1, 0x3e, 0x9f, 0x76, 0x63, 0x3e, 0xc2, 0x21, 0xb6, 0x6f, 0x71, - 0x09, 0xf7, 0x11, 0x2e, 0xb1, 0xa1, 0x4b, 0x14, 0xf2, 0x95, 0x42, 0xa5, 0x54, 0xce, 0x57, 0x8a, - 0xf0, 0x0d, 0xb3, 0x09, 0x19, 0x3d, 0x6b, 0x9a, 0x10, 0x89, 0xa8, 0xc4, 0x4e, 0xab, 0xe3, 0xdd, - 0xdf, 0x8f, 0x04, 0x97, 0x4f, 0x54, 0x97, 0x30, 0x17, 0x0d, 0x84, 0x70, 0xb4, 0xcc, 0x1c, 0x08, - 0x47, 0x6b, 0x4c, 0x29, 0x08, 0x47, 0x6b, 0xcd, 0x74, 0x08, 0x47, 0x1b, 0x1a, 0x08, 0xe1, 0xc8, - 0xa0, 0x4c, 0x02, 0xeb, 0x98, 0xef, 0x80, 0x41, 0x03, 0xd7, 0x31, 0x67, 0xbc, 0x82, 0xb3, 0x20, - 0xbe, 0x7e, 0xc2, 0x52, 0x26, 0x4d, 0x96, 0x4a, 0xa6, 0x77, 0x44, 0xc2, 0x27, 0x89, 0xf4, 0x90, - 0x00, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x55, 0x1e, 0xb7, 0xf8, - 0xd0, 0x76, 0xbb, 0x5d, 0x9f, 0x05, 0x01, 0x45, 0x6a, 0x5a, 0x21, 0x64, 0x53, 0x34, 0x86, 0x58, - 0xd4, 0x7c, 0xf3, 0xcc, 0x7a, 0x28, 0x10, 0x9c, 0x5b, 0x89, 0x39, 0x76, 0x42, 0xd0, 0xb6, 0x2b, - 0x57, 0x4a, 0xe6, 0x0b, 0x72, 0xd3, 0x2d, 0x36, 0xf0, 0x9f, 0xfd, 0xfd, 0xbb, 0x23, 0xbb, 0xd2, - 0x7c, 0xbe, 0xcb, 0xd9, 0x95, 0x66, 0x78, 0x99, 0x9b, 0x7e, 0x0b, 0xaf, 0xf3, 0x77, 0x47, 0x76, - 0x61, 0x76, 0x5d, 0xbc, 0x3b, 0xb2, 0x8b, 0xcd, 0x83, 0xbf, 0xff, 0xfe, 0x78, 0xf0, 0xeb, 0x78, - 0xbc, 0xfe, 0x07, 0xff, 0xb0, 0xc8, 0x3d, 0x84, 0x26, 0xad, 0xe5, 0xa1, 0x43, 0x04, 0xa5, 0x37, - 0x07, 0xa5, 0x12, 0x82, 0xd2, 0x76, 0x07, 0x25, 0xd7, 0xee, 0x55, 0xed, 0x2f, 0xcd, 0x5f, 0xb9, - 0xc3, 0xc2, 0xf8, 0xf4, 0xe0, 0x57, 0x79, 0xbc, 0xf8, 0xe2, 0xf3, 0xb2, 0xb7, 0xe5, 0x0e, 0xcb, - 0xe3, 0xd3, 0x15, 0x3f, 0x29, 0x8d, 0x4f, 0xdf, 0xf8, 0x3b, 0x8a, 0xe3, 0xfd, 0xc4, 0x5b, 0x27, - 0xaf, 0xe7, 0x57, 0x7d, 0xa0, 0xb0, 0xe2, 0x03, 0xc7, 0xab, 0x3e, 0x70, 0xbc, 0xe2, 0x03, 0x2b, - 0x4d, 0xca, 0xaf, 0xf8, 0x40, 0x71, 0xfc, 0x9c, 0x78, 0xff, 0xfe, 0xf2, 0xb7, 0x96, 0xc6, 0x07, - 0xcf, 0xab, 0x7e, 0x56, 0x1e, 0x3f, 0x9f, 0x1e, 0x20, 0x44, 0x9b, 0x91, 0x0f, 0xed, 0x61, 0x05, - 0x9f, 0x12, 0x68, 0x5a, 0xec, 0x51, 0xda, 0xe4, 0x57, 0xf1, 0x97, 0x19, 0x09, 0xc5, 0x74, 0x99, - 0x39, 0x50, 0x4c, 0xd7, 0x98, 0x56, 0x50, 0x4c, 0xd7, 0x9a, 0xe9, 0x50, 0x4c, 0x37, 0x34, 0x10, - 0x8a, 0xa9, 0x41, 0xa9, 0x24, 0x56, 0xf2, 0xdf, 0x93, 0x35, 0x9a, 0xb7, 0x92, 0xff, 0x9a, 0x5b, - 0x70, 0x16, 0xcc, 0xfd, 0x1b, 0x2b, 0xfa, 0x44, 0x59, 0x2b, 0x17, 0x0f, 0xee, 0x80, 0x77, 0x6d, - 0x9f, 0xb9, 0x81, 0x27, 0xe8, 0x11, 0xd6, 0x05, 0xfb, 0xc0, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0xc1, - 0x55, 0xc1, 0x55, 0xc1, 0x55, 0x77, 0x8c, 0xab, 0xf2, 0x2e, 0x13, 0x92, 0xcb, 0x27, 0xa2, 0x7c, - 0x95, 0xd0, 0xfe, 0x34, 0xab, 0x16, 0x3d, 0xaa, 0x4f, 0x6e, 0x40, 0x30, 0xa4, 0xce, 0x06, 0xb4, - 0x76, 0xf9, 0xad, 0x7a, 0x51, 0x3b, 0x6b, 0x35, 0xea, 0xb7, 0x37, 0xe7, 0xad, 0xc6, 0x79, 0xf5, - 0xba, 0x7e, 0x49, 0x2d, 0xba, 0x4e, 0xb7, 0x21, 0x06, 0x24, 0x97, 0x89, 0x88, 0xee, 0x2b, 0x5d, - 0x1c, 0xdd, 0x7a, 0xa3, 0xf6, 0x67, 0xed, 0xb2, 0x7a, 0x53, 0x6f, 0x58, 0xd8, 0x34, 0xbc, 0x35, - 0xa3, 0xfa, 0xf9, 0xe2, 0xf6, 0xfa, 0xe6, 0xbc, 0xd1, 0xba, 0xa8, 0xd7, 0xaf, 0x30, 0xae, 0xdb, - 0x33, 0xae, 0xd5, 0x6b, 0x0c, 0xe9, 0xb6, 0xb9, 0x6a, 0xfd, 0xf2, 0xcb, 0xf9, 0x99, 0x85, 0x5d, - 0xe9, 0xbf, 0xfd, 0x6a, 0x22, 0x1f, 0x21, 0x66, 0x05, 0x05, 0x75, 0x70, 0xe0, 0x06, 0xd2, 0xbe, - 0xf7, 0xba, 0xbc, 0xc7, 0x59, 0x97, 0x9e, 0x38, 0x38, 0x6f, 0x1e, 0xb4, 0xc1, 0x65, 0xe6, 0x40, - 0x1b, 0x5c, 0x63, 0x42, 0x41, 0x1b, 0x5c, 0x6b, 0xa6, 0x43, 0x1b, 0xdc, 0xd0, 0x40, 0x68, 0x83, - 0x06, 0x71, 0x5f, 0xc2, 0xda, 0xa0, 0xe4, 0xf7, 0x4c, 0xf2, 0xce, 0x8f, 0xa0, 0x54, 0x20, 0xa8, - 0x0d, 0x12, 0x2a, 0x80, 0xb6, 0x6e, 0x45, 0xd8, 0xa5, 0xca, 0x12, 0xae, 0xf0, 0x02, 0xd6, 0xf1, - 0x44, 0x97, 0xd4, 0x6e, 0x29, 0xf4, 0x5b, 0x7c, 0xe3, 0x83, 0x42, 0xbf, 0xc5, 0xf7, 0x9b, 0x87, - 0x7e, 0x8b, 0xdb, 0xa8, 0xc7, 0xa0, 0xdf, 0x62, 0x0a, 0x2e, 0x91, 0x3b, 0x29, 0x14, 0x4a, 0xe5, - 0x42, 0xe1, 0xa8, 0x7c, 0x5c, 0x3e, 0xaa, 0x14, 0x8b, 0xb9, 0x52, 0x0e, 0x9d, 0x17, 0x0d, 0xe7, - 0x8f, 0xf4, 0xac, 0xc1, 0xbe, 0x0d, 0x32, 0x51, 0x94, 0xcc, 0xa9, 0xf9, 0x09, 0x52, 0x4f, 0xe3, - 0xf4, 0xfc, 0xd8, 0xac, 0x33, 0xd6, 0x73, 0x47, 0x83, 0x69, 0xaa, 0x7a, 0x04, 0xad, 0x6d, 0xa9, - 0x39, 0xd0, 0xda, 0xd6, 0x98, 0xde, 0xd0, 0xda, 0xd6, 0x9a, 0xe9, 0xd0, 0xda, 0x36, 0x34, 0x10, - 0x5a, 0x9b, 0x41, 0x79, 0x0d, 0x8e, 0x0d, 0x59, 0x1f, 0x05, 0x71, 0x6c, 0xc8, 0x7f, 0x7d, 0x41, - 0xc6, 0xda, 0xca, 0x9c, 0x1d, 0x32, 0x96, 0xe9, 0xe1, 0x7e, 0xde, 0x25, 0x20, 0x63, 0x6d, 0xec, - 0x12, 0x38, 0x36, 0x64, 0x5b, 0x08, 0x19, 0x3d, 0x6b, 0x20, 0x5e, 0x91, 0x89, 0x9d, 0x56, 0xb4, - 0x39, 0xd2, 0x1b, 0x49, 0x46, 0x4f, 0xc0, 0x7a, 0x6d, 0x1c, 0x04, 0xa3, 0x65, 0xe6, 0x40, 0x30, - 0x5a, 0x63, 0x3a, 0x41, 0x30, 0x5a, 0x6b, 0xa6, 0x43, 0x30, 0xda, 0xd0, 0x40, 0x08, 0x46, 0x06, - 0x65, 0x10, 0x84, 0x05, 0xa3, 0xb6, 0xe7, 0x0d, 0x98, 0x2b, 0x28, 0x6e, 0xda, 0xcc, 0x81, 0xca, - 0x11, 0xb0, 0x40, 0xb3, 0x0b, 0x59, 0x55, 0x21, 0x3c, 0xe9, 0x4e, 0xb2, 0x31, 0x12, 0x0e, 0x64, - 0x05, 0x9d, 0xef, 0xec, 0xde, 0x1d, 0x46, 0x4d, 0x67, 0x1c, 0x6f, 0xc8, 0x44, 0x67, 0x4a, 0x94, - 0x6c, 0xc1, 0xe4, 0x4f, 0xcf, 0xff, 0x61, 0x73, 0x11, 0x48, 0x57, 0x74, 0x98, 0xb3, 0xf8, 0x42, - 0x90, 0x78, 0xc5, 0x19, 0xfa, 0x9e, 0xf4, 0x3a, 0xde, 0x20, 0x88, 0xaf, 0x9c, 0x76, 0x7f, 0xe8, - 0xf8, 0xbc, 0xed, 0xb8, 0x3d, 0x6e, 0x07, 0x6e, 0x8f, 0x07, 0xf1, 0x95, 0x33, 0x6d, 0x2a, 0x1b, - 0xf8, 0x92, 0xd9, 0x43, 0x6f, 0xc0, 0x3b, 0x4f, 0x8e, 0x60, 0xbc, 0xff, 0xbd, 0xed, 0xf9, 0x41, - 0x7c, 0xe5, 0xb8, 0xdd, 0x7f, 0xa7, 0x68, 0xe0, 0x8d, 0xa4, 0x3d, 0xf4, 0x99, 0x33, 0x65, 0xb8, - 0x41, 0xf8, 0x2d, 0xec, 0x73, 0xa3, 0x17, 0x24, 0xf4, 0xcd, 0x66, 0x8d, 0x33, 0xd9, 0x1a, 0x89, - 0x1f, 0xc2, 0xfb, 0x29, 0x6c, 0x57, 0x4a, 0x9f, 0xb7, 0x27, 0x23, 0xa2, 0x7d, 0x36, 0xbf, 0xac, - 0x19, 0x24, 0x6d, 0xd3, 0xec, 0xf3, 0x33, 0x04, 0xd0, 0x6c, 0x06, 0x95, 0x04, 0x88, 0x52, 0xe2, - 0x43, 0x33, 0xe1, 0xa1, 0x96, 0xe8, 0x90, 0x4d, 0x70, 0xc8, 0x26, 0x36, 0x64, 0x13, 0x9a, 0xdd, - 0x66, 0x5f, 0x67, 0xdc, 0xa7, 0x11, 0x76, 0x12, 0x20, 0x45, 0x4f, 0x51, 0x4c, 0x9a, 0x48, 0x4b, - 0x57, 0xcc, 0x41, 0x57, 0x24, 0x0f, 0xaf, 0xb4, 0x61, 0x96, 0x2a, 0xdc, 0x92, 0x87, 0x5d, 0xf2, - 0xf0, 0x4b, 0x1e, 0x86, 0xe9, 0xc8, 0x31, 0x7b, 0x84, 0x74, 0x45, 0x2a, 0xf0, 0x1c, 0x1b, 0x34, - 0xc1, 0x3e, 0x5b, 0x52, 0x53, 0x3b, 0xe7, 0x22, 0xea, 0x8b, 0x89, 0xc4, 0x5c, 0x8f, 0x66, 0xf5, - 0x06, 0x39, 0xb8, 0xa6, 0x0c, 0xdb, 0x66, 0xc0, 0x37, 0x75, 0x18, 0x37, 0x06, 0xce, 0x8d, 0x81, - 0x75, 0x63, 0xe0, 0x9d, 0x16, 0xcc, 0x13, 0x83, 0xfb, 0x78, 0x14, 0x6f, 0x28, 0x02, 0xec, 0x1e, - 0xed, 0xb3, 0x0b, 0x12, 0xd9, 0x70, 0x99, 0xe6, 0xc9, 0x77, 0xb3, 0xb3, 0x0c, 0xc2, 0x23, 0x09, - 0x5e, 0xc8, 0x0a, 0xea, 0xfd, 0xa8, 0xbb, 0xa6, 0x15, 0xae, 0xae, 0x91, 0x25, 0xbe, 0xa1, 0x79, - 0x34, 0x49, 0x6f, 0x0e, 0xa4, 0x17, 0xa4, 0x17, 0xa4, 0x17, 0xa4, 0x17, 0xa4, 0x17, 0xc8, 0xba, - 0x7c, 0x14, 0xa9, 0x69, 0x5d, 0xb1, 0x61, 0x53, 0x8e, 0x36, 0x60, 0x84, 0xb7, 0xca, 0xcd, 0x49, - 0x5f, 0x13, 0x4b, 0x0f, 0xb1, 0x7f, 0x69, 0x8b, 0x48, 0x81, 0x09, 0xe4, 0xc0, 0x2c, 0x92, 0x60, - 0x0a, 0x59, 0x30, 0x8e, 0x34, 0x18, 0x47, 0x1e, 0x8c, 0x23, 0x11, 0x34, 0xc9, 0x04, 0x51, 0x52, - 0x11, 0x8f, 0x2e, 0x59, 0x45, 0x2d, 0x11, 0x37, 0x47, 0x5c, 0xc8, 0x5c, 0x89, 0x72, 0xcc, 0x8c, - 0x50, 0xbc, 0x44, 0xd8, 0x44, 0x9a, 0x1d, 0x20, 0x16, 0xbf, 0x68, 0x63, 0xce, 0x1e, 0xf5, 0x0e, - 0x11, 0x86, 0xd1, 0xcb, 0x84, 0xb9, 0xc4, 0x3b, 0x48, 0x24, 0xec, 0x35, 0x60, 0xd7, 0xbc, 0x21, - 0x70, 0x34, 0xef, 0x62, 0xee, 0x23, 0x5c, 0x2c, 0x63, 0x17, 0x2b, 0x15, 0x8b, 0xc7, 0x45, 0xb8, - 0xd9, 0x6e, 0x71, 0x51, 0xfa, 0xd6, 0x35, 0x3f, 0xe0, 0x79, 0x19, 0x1a, 0xc6, 0x09, 0x57, 0xc2, - 0x25, 0x52, 0x0a, 0xaa, 0x15, 0x71, 0x86, 0xa0, 0x0a, 0x74, 0xc1, 0x34, 0x27, 0x23, 0x74, 0xc1, - 0x54, 0x3d, 0x07, 0xba, 0x60, 0xc6, 0x06, 0x43, 0x17, 0xdc, 0xe2, 0x44, 0xcc, 0x30, 0x5d, 0xf0, - 0xc4, 0x00, 0x59, 0xb0, 0x08, 0x59, 0x70, 0xc3, 0x2f, 0xc8, 0x82, 0xd0, 0x2c, 0x20, 0x0b, 0xee, - 0x20, 0x1a, 0xcd, 0xbb, 0x18, 0x64, 0xc1, 0xcc, 0x5d, 0x2c, 0x5f, 0x84, 0x28, 0xb8, 0x63, 0x44, - 0x94, 0xbe, 0x75, 0x10, 0x05, 0x8d, 0x0d, 0xe2, 0xa1, 0xd2, 0xf6, 0x10, 0x45, 0x17, 0x13, 0x54, - 0xc1, 0xd0, 0x56, 0xc8, 0x82, 0xef, 0x31, 0x0f, 0xb2, 0x60, 0x8a, 0xb3, 0x11, 0xb2, 0x60, 0xaa, - 0x9e, 0x03, 0x59, 0x30, 0x63, 0x83, 0x21, 0x0b, 0x6e, 0x71, 0x22, 0x66, 0x90, 0x2c, 0xd8, 0xe6, - 0xc2, 0xf5, 0x9f, 0x0c, 0xd0, 0x05, 0x2b, 0x84, 0x4d, 0xbc, 0x60, 0xa2, 0x3f, 0xdd, 0x98, 0x0b, - 0x61, 0x70, 0x53, 0xd5, 0x02, 0xc2, 0x60, 0xe6, 0xaa, 0x45, 0x0e, 0x9a, 0xc5, 0x8e, 0xe1, 0xd1, - 0xbc, 0x8b, 0x41, 0x18, 0xcc, 0xdc, 0xc5, 0x50, 0x2f, 0xb8, 0x83, 0x64, 0x94, 0xbe, 0x75, 0x90, - 0x06, 0x8d, 0x0d, 0xe3, 0x16, 0x7b, 0x94, 0x4c, 0x74, 0x59, 0x97, 0xbe, 0x30, 0x18, 0x5b, 0x0a, - 0x59, 0xf0, 0x3d, 0xe6, 0x41, 0x16, 0x4c, 0x71, 0x2e, 0x42, 0x16, 0x4c, 0xd5, 0x73, 0x20, 0x0b, - 0x66, 0x6c, 0x30, 0x64, 0xc1, 0x2d, 0x4e, 0xc3, 0x4c, 0x92, 0x05, 0xc9, 0x1d, 0xfb, 0xb5, 0x0a, - 0xc6, 0x89, 0x1c, 0x03, 0x06, 0x52, 0xfb, 0x9e, 0x31, 0xf4, 0x86, 0x93, 0xcc, 0xd3, 0x1d, 0xd0, - 0x27, 0xb5, 0xb1, 0xa5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, - 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x70, 0x8a, 0xf9, 0x31, 0x1c, 0xba, 0xbe, 0xe4, 0x26, 0x70, - 0xda, 0x99, 0xa1, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, - 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0x70, 0x8a, 0xf9, 0x31, 0x94, 0xbe, 0x2b, 0x02, 0x2e, 0xf9, 0x83, - 0x01, 0xfb, 0x92, 0x5e, 0xd9, 0x0a, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, - 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x8b, 0x88, 0xba, 0xa8, 0x55, 0x15, 0xc2, 0x93, - 0xae, 0xe4, 0x1e, 0xcd, 0x0d, 0x50, 0x56, 0xd0, 0xf9, 0xce, 0xee, 0xdd, 0x61, 0x74, 0x00, 0xa5, - 0xe3, 0x0d, 0x99, 0xe8, 0x4c, 0x89, 0xa2, 0x2d, 0x98, 0xfc, 0xe9, 0xf9, 0x3f, 0x6c, 0x2e, 0x02, - 0xe9, 0x8a, 0x0e, 0x73, 0x16, 0x5f, 0x08, 0x12, 0xaf, 0x38, 0x43, 0xdf, 0x93, 0x5e, 0xc7, 0x1b, - 0x04, 0xf1, 0x95, 0xd3, 0xee, 0x0f, 0x1d, 0x9f, 0xb7, 0x1d, 0xb7, 0xc7, 0xed, 0xc0, 0xed, 0xf1, - 0x20, 0xbe, 0x72, 0xf8, 0xf0, 0xa1, 0x64, 0x07, 0xbe, 0x64, 0xf6, 0xd0, 0x1b, 0xf0, 0xce, 0x93, - 0x23, 0x18, 0xef, 0x7f, 0x6f, 0x7b, 0x7e, 0x10, 0x5f, 0x39, 0x6e, 0xf7, 0xdf, 0x29, 0x5a, 0x79, - 0x23, 0x69, 0x0f, 0x7d, 0xe6, 0xf8, 0xde, 0x48, 0xb2, 0x20, 0xfc, 0xe6, 0x8c, 0xc4, 0x0f, 0xe1, - 0xfd, 0x14, 0xb6, 0x2b, 0xa5, 0xcf, 0xdb, 0xd3, 0x1f, 0x24, 0x5e, 0x0a, 0x4f, 0xd4, 0xc4, 0x39, - 0x9a, 0x94, 0x2d, 0xa1, 0x72, 0xae, 0xfe, 0x5f, 0xec, 0x89, 0x62, 0x63, 0x5c, 0xeb, 0x82, 0x07, - 0xb2, 0x2a, 0x25, 0xb1, 0x43, 0xff, 0xbf, 0x72, 0x71, 0x3e, 0x60, 0x13, 0x56, 0x19, 0x58, 0xa7, - 0x7b, 0x62, 0x34, 0x18, 0x10, 0x3a, 0x94, 0xf5, 0xab, 0xfb, 0x48, 0xd7, 0xb8, 0xba, 0xdf, 0x65, - 0x3e, 0xeb, 0x7e, 0x7a, 0x8a, 0x4c, 0x83, 0x13, 0xd2, 0x47, 0xcc, 0xed, 0x47, 0x4a, 0x8b, 0xd4, - 0x99, 0xca, 0xfe, 0xa8, 0x23, 0x45, 0x94, 0x35, 0x5c, 0x86, 0x4f, 0xaf, 0x16, 0x3d, 0xbc, 0xd6, - 0x55, 0xf4, 0xc8, 0x5a, 0x9f, 0xfa, 0xc3, 0x56, 0x83, 0xb7, 0x5b, 0xd5, 0x1e, 0xbf, 0x76, 0x7b, - 0xbc, 0x55, 0x1b, 0x3e, 0x94, 0xae, 0x7d, 0xc9, 0xae, 0xa6, 0x4f, 0xa9, 0x75, 0x19, 0x3d, 0x9b, - 0x56, 0xb5, 0xfb, 0x6f, 0x83, 0xb7, 0xeb, 0x23, 0x79, 0xe5, 0xb3, 0x56, 0x63, 0xf2, 0x44, 0x5a, - 0xb7, 0xe1, 0x9f, 0x5f, 0x8d, 0xff, 0xfa, 0x0f, 0xc0, 0x63, 0xfd, 0x16, 0x68, 0x0e, 0x42, 0xd4, - 0x82, 0xcf, 0xb6, 0x05, 0x1d, 0xbd, 0x4e, 0xa6, 0x6f, 0x6a, 0xeb, 0xb9, 0xb3, 0x26, 0x67, 0x9a, - 0xd1, 0xe8, 0xc9, 0xac, 0xb5, 0x79, 0x77, 0x8f, 0x89, 0xee, 0xd0, 0xe3, 0x42, 0xee, 0x75, 0xbc, - 0x81, 0xe7, 0x6b, 0x42, 0x19, 0x1a, 0x1c, 0x9a, 0x14, 0x67, 0x26, 0xc5, 0x91, 0x69, 0x70, 0x62, - 0x5d, 0x1e, 0x43, 0x04, 0x76, 0x8c, 0x86, 0x1b, 0x8d, 0xf4, 0x35, 0x7b, 0xba, 0xaa, 0x07, 0x38, - 0xd5, 0xc3, 0x96, 0xda, 0x3b, 0x2a, 0x76, 0x77, 0xdd, 0x6e, 0x6e, 0xa8, 0x7b, 0xab, 0x9d, 0xfb, - 0xea, 0x66, 0xa0, 0x9a, 0x3b, 0x29, 0x9a, 0xe3, 0xba, 0xe6, 0xb6, 0x69, 0x73, 0x5a, 0x21, 0x4a, - 0x65, 0x89, 0x4a, 0x6a, 0x7c, 0x32, 0x7b, 0x0f, 0x51, 0xe0, 0x1d, 0xd6, 0x6c, 0x2a, 0xd8, 0x6e, - 0xb7, 0xeb, 0xb3, 0x20, 0x50, 0xe6, 0x1f, 0xf1, 0xaa, 0x7b, 0xc2, 0x02, 0x45, 0x31, 0x41, 0x6d, - 0x45, 0x9c, 0xf2, 0x0a, 0x37, 0x1d, 0x15, 0x6b, 0x7a, 0x2b, 0xd0, 0x74, 0x55, 0x94, 0x69, 0xaf, - 0x10, 0xd3, 0x5e, 0xf1, 0xa5, 0xbd, 0x82, 0x6b, 0xbb, 0xd8, 0x8a, 0xf2, 0x8a, 0xa9, 0xd8, 0x6f, - 0x07, 0xcc, 0xed, 0xf9, 0xac, 0xa7, 0xd2, 0x69, 0x67, 0x15, 0x4d, 0x65, 0x85, 0xf7, 0xbc, 0x8a, - 0x08, 0xd9, 0xc7, 0x8f, 0x61, 0x01, 0x86, 0x93, 0xc0, 0x20, 0x30, 0x88, 0x35, 0x88, 0x9c, 0x2b, - 0x99, 0x7a, 0xda, 0x10, 0xde, 0x56, 0x2d, 0x57, 0xc8, 0x81, 0x2b, 0x80, 0x2b, 0x80, 0x2b, 0x80, - 0x2b, 0xd0, 0xe1, 0x0a, 0x67, 0x5c, 0xed, 0xa2, 0x91, 0xbe, 0x84, 0x91, 0x4a, 0xe2, 0xa8, 0x29, - 0x81, 0xd4, 0x06, 0x0e, 0x3a, 0x41, 0x82, 0x06, 0x58, 0xe8, 0x06, 0x0d, 0x32, 0xe0, 0x41, 0x06, - 0x44, 0xc8, 0x80, 0x89, 0x5a, 0x50, 0x51, 0x0c, 0x2e, 0xfa, 0x12, 0xd2, 0x84, 0xdf, 0xf3, 0xa1, - 0xa6, 0x28, 0x3f, 0x47, 0xff, 0x35, 0x9c, 0x07, 0x34, 0x7b, 0xf6, 0x7a, 0x4e, 0xf9, 0xd1, 0xb8, - 0xda, 0xff, 0x32, 0xf2, 0x0f, 0x05, 0x8d, 0x63, 0x9f, 0x98, 0x03, 0x27, 0x1a, 0x6d, 0xb8, 0x72, - 0xa5, 0x64, 0xbe, 0xd0, 0x7e, 0xe8, 0x93, 0xf5, 0xcf, 0xfe, 0xfe, 0xdd, 0x91, 0x5d, 0x69, 0x3e, - 0xdf, 0xe5, 0xec, 0x4a, 0x33, 0xbc, 0xcc, 0x4d, 0xbf, 0x85, 0xd7, 0xf9, 0xbb, 0x23, 0xbb, 0x30, - 0xbb, 0x2e, 0xde, 0x1d, 0xd9, 0xc5, 0xe6, 0xc1, 0xdf, 0x7f, 0x7f, 0x3c, 0xf8, 0x75, 0x3c, 0x5e, - 0xff, 0x83, 0x7f, 0xe8, 0x2b, 0xcc, 0x6b, 0xee, 0x52, 0xa1, 0x0f, 0x0d, 0x67, 0x2f, 0xc1, 0xd9, - 0x69, 0x3a, 0xbb, 0x6b, 0xf7, 0xaa, 0xf6, 0x97, 0xe6, 0xaf, 0xdc, 0x61, 0x61, 0x7c, 0x7a, 0xf0, - 0xab, 0x3c, 0x5e, 0x7c, 0xf1, 0x79, 0xd9, 0xdb, 0x72, 0x87, 0xe5, 0xf1, 0xe9, 0x8a, 0x9f, 0x94, - 0xc6, 0xa7, 0x6f, 0xfc, 0x1d, 0xc5, 0xf1, 0x7e, 0xe2, 0xad, 0x93, 0xd7, 0xf3, 0xab, 0x3e, 0x50, - 0x58, 0xf1, 0x81, 0xe3, 0x55, 0x1f, 0x38, 0x5e, 0xf1, 0x81, 0x95, 0x26, 0xe5, 0x57, 0x7c, 0xa0, - 0x38, 0x7e, 0x4e, 0xbc, 0x7f, 0x7f, 0xf9, 0x5b, 0x4b, 0xe3, 0x83, 0xe7, 0x55, 0x3f, 0x2b, 0x8f, - 0x9f, 0x4f, 0x0f, 0x76, 0x30, 0xf4, 0x7d, 0xd8, 0xee, 0xbf, 0x13, 0x05, 0x3c, 0xef, 0xcc, 0xf3, - 0x50, 0xc0, 0xb3, 0xb4, 0x80, 0x47, 0xe1, 0xfe, 0x61, 0x05, 0xab, 0x55, 0x1f, 0x0c, 0x9e, 0xaa, - 0xb3, 0x8d, 0x05, 0x8a, 0x55, 0x49, 0xb5, 0x5b, 0x07, 0xb4, 0x6c, 0x11, 0xd0, 0xb2, 0x15, 0x40, - 0x6d, 0xc9, 0x7f, 0xd6, 0x73, 0x53, 0x71, 0xf8, 0xa4, 0x1e, 0x36, 0x2d, 0x25, 0xcb, 0xe2, 0x69, - 0xd6, 0x37, 0x66, 0x1b, 0xe2, 0xb3, 0x0b, 0xbc, 0xd9, 0xfc, 0xe6, 0x8c, 0xdc, 0x45, 0x95, 0x9b, - 0x10, 0x75, 0x8f, 0x6c, 0xe6, 0x58, 0xfa, 0x33, 0x20, 0xdd, 0xdf, 0x98, 0xf2, 0x5c, 0xca, 0x7a, - 0x0e, 0x91, 0x9a, 0x3b, 0x19, 0xc4, 0xd1, 0x74, 0xe2, 0x66, 0xba, 0x53, 0x39, 0xbd, 0x09, 0x97, - 0xe2, 0x64, 0x0b, 0xb5, 0xb2, 0x91, 0xe0, 0x1d, 0x37, 0x90, 0xa9, 0x4f, 0xb5, 0x79, 0x45, 0x6e, - 0x76, 0x97, 0x94, 0x5d, 0x25, 0x9b, 0xaa, 0xaa, 0xcc, 0x16, 0xc8, 0xb3, 0x5c, 0x00, 0x57, 0xb3, - 0xc0, 0x9d, 0xf5, 0x02, 0xb6, 0xb2, 0x05, 0x6a, 0x65, 0x0b, 0xd0, 0xca, 0x16, 0x98, 0x69, 0x83, - 0x5a, 0x56, 0x55, 0x46, 0xd6, 0x20, 0x7c, 0xa6, 0xd9, 0xcd, 0xc8, 0xb8, 0xb2, 0x39, 0xba, 0x51, - 0x46, 0xd3, 0x24, 0xdb, 0x02, 0xd1, 0x97, 0x90, 0x96, 0xcf, 0xe8, 0x06, 0x0a, 0x6a, 0x7b, 0xd4, - 0xd6, 0xf0, 0xa8, 0xaa, 0xd5, 0x51, 0x5e, 0x93, 0xa3, 0xbc, 0xf6, 0x46, 0x79, 0x8d, 0x8d, 0x59, - 0x39, 0x63, 0xd6, 0x05, 0x98, 0x56, 0xb4, 0xcf, 0x38, 0xf3, 0x89, 0x3c, 0x73, 0xcf, 0xe8, 0x7e, - 0x59, 0xab, 0xa5, 0x4a, 0x2a, 0xea, 0x95, 0x15, 0x4b, 0xaa, 0x2c, 0x8e, 0xd4, 0x53, 0x0c, 0xa9, - 0xba, 0xf8, 0x51, 0x5b, 0xb1, 0xa3, 0xb6, 0xe2, 0x46, 0x6d, 0xc5, 0x8c, 0x66, 0xaf, 0xbb, 0xa8, - 0xaa, 0x80, 0x0f, 0x03, 0xa3, 0xfa, 0x8d, 0x4e, 0x2a, 0xfb, 0xc7, 0x60, 0xa3, 0xd3, 0xb6, 0x84, - 0x6b, 0x5d, 0x61, 0x5b, 0x7b, 0xf8, 0xd6, 0x1e, 0xc6, 0xb5, 0x87, 0x73, 0x35, 0x61, 0x5d, 0x51, - 0x78, 0x57, 0x1e, 0xe6, 0xe3, 0x1b, 0x7a, 0x3e, 0xef, 0x73, 0xa1, 0x6f, 0x7b, 0x53, 0x74, 0x7f, - 0x6c, 0x6a, 0xda, 0x36, 0x40, 0xa0, 0x01, 0x0c, 0xba, 0x01, 0x82, 0x0c, 0x50, 0x90, 0x01, 0x0c, - 0x32, 0xc0, 0xa1, 0x16, 0x40, 0x14, 0x03, 0x49, 0xfc, 0x94, 0xf5, 0x6f, 0x6a, 0x52, 0xdf, 0x6d, - 0x23, 0xc1, 0xf3, 0xcb, 0x1a, 0xee, 0x9d, 0xe8, 0xbe, 0x11, 0x21, 0xdd, 0xb6, 0x16, 0xe2, 0x2a, - 0x24, 0xfb, 0x51, 0x57, 0x63, 0x7d, 0xa4, 0x65, 0x66, 0x00, 0x58, 0x0b, 0x58, 0x0b, 0x58, 0x0b, - 0x58, 0x0b, 0x58, 0x0b, 0x58, 0xcb, 0x96, 0xb2, 0x96, 0x19, 0xd4, 0x81, 0xb6, 0x6c, 0x4e, 0x5b, - 0xf4, 0xc0, 0xd9, 0x0b, 0x6b, 0xd1, 0x22, 0x50, 0x82, 0xb4, 0x80, 0xb4, 0x80, 0xb4, 0x80, 0xb4, - 0x80, 0xb4, 0x80, 0xb4, 0x28, 0x23, 0x2d, 0xa1, 0xdb, 0x83, 0xb3, 0x6c, 0xfc, 0x68, 0xd5, 0xb6, - 0x3d, 0x4d, 0x4c, 0x68, 0x95, 0xed, 0x4f, 0x13, 0x53, 0x19, 0x8c, 0x05, 0x8c, 0x05, 0x8c, 0x05, - 0x8c, 0x65, 0x7b, 0x19, 0x8b, 0xea, 0x6a, 0x83, 0xf8, 0xc6, 0xd3, 0xe3, 0xbd, 0xb9, 0xe8, 0xb2, - 0x47, 0x7d, 0x4e, 0x37, 0x0b, 0x3d, 0xaf, 0x6c, 0xd1, 0x75, 0x58, 0xa3, 0x96, 0x14, 0x59, 0x3b, - 0xf0, 0x50, 0x00, 0x20, 0x5a, 0x40, 0x44, 0x05, 0x90, 0xc8, 0x01, 0x13, 0x39, 0x80, 0x22, 0x07, - 0x54, 0x7a, 0x00, 0x4b, 0x13, 0x70, 0xe9, 0x4f, 0xb9, 0x09, 0xa5, 0xde, 0x14, 0x52, 0xf0, 0x65, - 0xa9, 0xf8, 0xd2, 0xff, 0xa6, 0x60, 0x1b, 0x30, 0x19, 0xc4, 0x57, 0x51, 0xca, 0x1e, 0x02, 0xf0, - 0xae, 0x1c, 0xb1, 0xa9, 0x21, 0xc7, 0xe9, 0x78, 0xf7, 0xf7, 0x23, 0xc1, 0xe5, 0x13, 0x15, 0xde, - 0xb5, 0x68, 0x10, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, 0x17, 0xc8, - 0x57, 0x16, 0xe4, 0x6b, 0x86, 0xb8, 0x9c, 0x05, 0xf1, 0xf5, 0x13, 0xf8, 0x97, 0x9a, 0xc1, 0x61, - 0x8f, 0xd2, 0x26, 0xc7, 0xc1, 0x96, 0x19, 0x05, 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x06, - 0x1e, 0x06, 0x1e, 0x06, 0x1e, 0x96, 0x05, 0x0f, 0x7b, 0x8d, 0xba, 0x13, 0x2e, 0x36, 0x87, 0xc2, - 0xe0, 0x63, 0x6a, 0x06, 0x89, 0x8b, 0x07, 0x77, 0xc0, 0xbb, 0xb6, 0xcf, 0xdc, 0xc0, 0x13, 0xfa, - 0xa9, 0xd8, 0x82, 0x3d, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, 0x60, 0x61, - 0xeb, 0x22, 0x49, 0x97, 0x09, 0xc9, 0xe5, 0x13, 0x11, 0x26, 0x56, 0xd4, 0x68, 0x43, 0x2d, 0x7a, - 0x14, 0x9f, 0xdc, 0x80, 0x40, 0x08, 0x9b, 0x0d, 0x50, 0xed, 0xf2, 0x5b, 0xf5, 0xa2, 0x76, 0xd6, - 0x6a, 0xd4, 0x6f, 0x6f, 0xce, 0x5b, 0x8d, 0xf3, 0xea, 0x75, 0xfd, 0x52, 0x77, 0x34, 0xfb, 0xe6, - 0x0e, 0x46, 0xd3, 0xfe, 0x8b, 0x7a, 0x8f, 0x61, 0xdb, 0xd3, 0x7a, 0x42, 0xdf, 0x6f, 0x47, 0xab, - 0xde, 0xa8, 0xfd, 0x59, 0xbb, 0xac, 0xde, 0xd4, 0x1b, 0x96, 0x76, 0x03, 0xc7, 0x87, 0x18, 0xa5, - 0xe5, 0xa3, 0xf4, 0xf9, 0xe2, 0xf6, 0xfa, 0xe6, 0xbc, 0xd1, 0xba, 0xa8, 0xd7, 0xaf, 0x30, 0x4e, - 0x74, 0xc7, 0xa9, 0x7a, 0x8d, 0x21, 0xa2, 0xee, 0x4a, 0xf5, 0xcb, 0x2f, 0xe7, 0x67, 0x04, 0x46, - 0x48, 0xab, 0x05, 0xcd, 0x5d, 0xe3, 0xcf, 0x3b, 0xa1, 0xfe, 0x0c, 0xdc, 0x40, 0xda, 0xf7, 0x5e, - 0x97, 0xf7, 0x38, 0xeb, 0xea, 0x17, 0x7f, 0xe6, 0xcd, 0x81, 0xf6, 0x03, 0xed, 0x07, 0xda, 0x0f, - 0xb4, 0x1f, 0x68, 0x3f, 0xd0, 0x7e, 0xd6, 0x8c, 0x1b, 0x92, 0xdf, 0x33, 0xc9, 0x3b, 0x3f, 0x82, - 0x52, 0x81, 0x80, 0xf6, 0xa3, 0xf3, 0x60, 0xf9, 0x5b, 0xc1, 0xa7, 0x07, 0xa9, 0x5a, 0xc2, 0x15, - 0x5e, 0xc0, 0x3a, 0x9e, 0xe8, 0x6a, 0x3d, 0x6c, 0xbf, 0xe1, 0x8a, 0x3e, 0xd3, 0xae, 0xaf, 0xe8, - 0x4f, 0x35, 0xac, 0xaf, 0x5c, 0x68, 0x47, 0x14, 0x22, 0x9c, 0x27, 0x61, 0xce, 0x54, 0x85, 0x23, - 0x64, 0xcf, 0x17, 0xdf, 0xed, 0x48, 0xee, 0x89, 0x33, 0xde, 0x0f, 0xbd, 0xe9, 0x08, 0xf9, 0x7a, - 0x78, 0x54, 0x33, 0xa6, 0xf0, 0x7f, 0x4c, 0xe1, 0xdc, 0x49, 0xa1, 0x50, 0x2a, 0x17, 0x0a, 0x47, - 0xe5, 0xe3, 0xf2, 0x51, 0xa5, 0x58, 0xcc, 0x95, 0x74, 0xae, 0x04, 0x90, 0x9f, 0xd5, 0x1f, 0x76, - 0xf3, 0xee, 0x4d, 0x68, 0x1c, 0x99, 0x4d, 0x73, 0x4d, 0xad, 0xfd, 0x93, 0xb9, 0xac, 0x8e, 0x16, - 0xff, 0x50, 0x35, 0xa0, 0x6a, 0x40, 0xd5, 0x80, 0xaa, 0x01, 0x55, 0x63, 0x0b, 0x54, 0x8d, 0x91, - 0xe0, 0xda, 0x4a, 0x22, 0x5f, 0x83, 0x48, 0xae, 0xa2, 0xd1, 0x86, 0x68, 0x38, 0x76, 0x5e, 0x3f, - 0x78, 0x39, 0xb3, 0xdd, 0x76, 0xbb, 0x5d, 0x9f, 0x05, 0x81, 0x45, 0x20, 0x25, 0x24, 0x30, 0x43, - 0x68, 0xcd, 0x14, 0x3a, 0x33, 0x66, 0xc9, 0xcc, 0x79, 0x28, 0x10, 0x9a, 0x3b, 0x89, 0x39, 0x74, - 0x42, 0xc8, 0xa6, 0x2b, 0x57, 0x4a, 0xe6, 0x0b, 0x32, 0xd3, 0x29, 0x36, 0xec, 0x9f, 0xfd, 0xfd, - 0xbb, 0x23, 0xbb, 0xd2, 0x7c, 0xbe, 0xcb, 0xd9, 0x95, 0x66, 0x78, 0x99, 0x9b, 0x7e, 0x0b, 0xaf, - 0xf3, 0x77, 0x47, 0x76, 0x61, 0x76, 0x5d, 0xbc, 0x3b, 0xb2, 0x8b, 0xcd, 0x83, 0xbf, 0xff, 0xfe, - 0x78, 0xf0, 0xeb, 0x78, 0xbc, 0xfe, 0x07, 0xff, 0xb0, 0xc8, 0xfc, 0xf1, 0x4d, 0x12, 0x96, 0x8c, - 0x0f, 0x11, 0x5c, 0x56, 0x06, 0x97, 0x12, 0x82, 0xcb, 0x76, 0x04, 0x17, 0xd7, 0xee, 0x55, 0xed, - 0x2f, 0xcd, 0x5f, 0xb9, 0xc3, 0xc2, 0xf8, 0xf4, 0xe0, 0x57, 0x79, 0xbc, 0xf8, 0xe2, 0xf3, 0xb2, - 0xb7, 0xe5, 0x0e, 0xcb, 0xe3, 0xd3, 0x15, 0x3f, 0x29, 0x8d, 0x4f, 0xdf, 0xf8, 0x3b, 0x8a, 0xe3, - 0xfd, 0xc4, 0x5b, 0x27, 0xaf, 0xe7, 0x57, 0x7d, 0xa0, 0xb0, 0xe2, 0x03, 0xc7, 0xab, 0x3e, 0x70, - 0xbc, 0xe2, 0x03, 0x2b, 0x4d, 0xca, 0xaf, 0xf8, 0x40, 0x71, 0xfc, 0x9c, 0x78, 0xff, 0xfe, 0xf2, - 0xb7, 0x96, 0xc6, 0x07, 0xcf, 0xab, 0x7e, 0x56, 0x1e, 0x3f, 0x9f, 0x1e, 0x20, 0xd4, 0xd2, 0x48, - 0x3a, 0xe9, 0x3c, 0x07, 0xcd, 0x50, 0x43, 0x29, 0xe3, 0x21, 0xb1, 0xb1, 0x23, 0x81, 0x28, 0x04, - 0x96, 0x75, 0x68, 0x6d, 0xf4, 0x48, 0x0c, 0x5c, 0xed, 0xf2, 0xfa, 0xa6, 0x7a, 0x71, 0xd1, 0xba, - 0x6a, 0xd4, 0x6f, 0xea, 0x9f, 0xeb, 0x17, 0xad, 0x9b, 0xff, 0x5d, 0x9d, 0x5b, 0x94, 0x16, 0xec, - 0x02, 0x52, 0x18, 0xfc, 0x8b, 0x16, 0x1b, 0x88, 0x87, 0xf1, 0xcf, 0xaf, 0x57, 0x74, 0xd0, 0x69, - 0x7c, 0x88, 0xf1, 0xfa, 0xfd, 0x78, 0x5d, 0xd4, 0x3f, 0x57, 0x2f, 0x5a, 0xd5, 0x3f, 0xff, 0x6c, - 0x9c, 0xff, 0x59, 0xbd, 0x39, 0xc7, 0xd0, 0x19, 0xe4, 0x6a, 0xd7, 0xb5, 0x6b, 0x8c, 0x97, 0x39, - 0xe3, 0x75, 0x56, 0x6b, 0x9c, 0x7f, 0xbe, 0xb9, 0xf8, 0x5f, 0xeb, 0x73, 0xfd, 0xf2, 0xf2, 0xfc, - 0xf3, 0x0d, 0x85, 0x7d, 0x23, 0x18, 0xbd, 0xb7, 0x8e, 0xde, 0x55, 0xed, 0x2b, 0x86, 0xcb, 0x9c, - 0xe1, 0xaa, 0x5f, 0x5f, 0x7d, 0x39, 0xc6, 0x80, 0x99, 0x33, 0x60, 0xd7, 0x37, 0xd5, 0x9b, 0xda, - 0x67, 0x8c, 0x98, 0x59, 0x2e, 0x86, 0xf1, 0x32, 0x67, 0xbc, 0x3e, 0xfd, 0x49, 0x29, 0x33, 0x23, - 0x61, 0x49, 0x13, 0x45, 0xad, 0x3b, 0xf5, 0xe4, 0x77, 0xa3, 0xa8, 0x75, 0x76, 0x1e, 0xb5, 0xf6, - 0xaa, 0xd6, 0x99, 0x21, 0x9a, 0x8a, 0xb3, 0xce, 0x58, 0xcf, 0x1d, 0x0d, 0xa6, 0x95, 0x71, 0x47, - 0x28, 0xad, 0x45, 0x69, 0x2d, 0x4a, 0x6b, 0xe7, 0x66, 0x26, 0x4a, 0x6b, 0xff, 0xc3, 0x20, 0x94, - 0xd6, 0xee, 0xa1, 0xb4, 0xf6, 0x74, 0xcf, 0x1a, 0x71, 0x21, 0x8f, 0xf3, 0x04, 0x6a, 0x6b, 0xcb, - 0xd8, 0x9b, 0x8b, 0xbd, 0xb9, 0x84, 0xe8, 0x45, 0xc2, 0x1c, 0xec, 0xcd, 0x35, 0x41, 0xa7, 0xc0, - 0xde, 0xdc, 0x37, 0x4c, 0xe1, 0x42, 0xbe, 0x52, 0xa8, 0x94, 0xca, 0xf9, 0x0a, 0x76, 0xe4, 0x42, - 0xbc, 0x80, 0x78, 0xa1, 0x4e, 0xbc, 0xd0, 0x9b, 0x30, 0xbe, 0x68, 0x17, 0x5a, 0x0f, 0x99, 0x87, - 0x6c, 0x00, 0xd9, 0x00, 0xb2, 0x01, 0x64, 0x03, 0xc8, 0x06, 0xe6, 0xca, 0x06, 0xd3, 0x5d, 0x2e, - 0xda, 0x7d, 0x84, 0xc2, 0xa6, 0x16, 0x32, 0x9b, 0x58, 0xb0, 0x69, 0x45, 0xdf, 0xa6, 0x15, 0x67, - 0x3f, 0x97, 0xbf, 0x3b, 0xb2, 0x4f, 0xc2, 0x9d, 0x84, 0xb9, 0x66, 0x62, 0x83, 0xe1, 0xf4, 0xff, - 0x3a, 0xf7, 0xb6, 0x80, 0xd6, 0x67, 0xe7, 0x78, 0xd1, 0xc1, 0x4d, 0xde, 0x48, 0x32, 0xfd, 0xdc, - 0xfe, 0xb5, 0x31, 0x20, 0xf8, 0x20, 0xf8, 0x20, 0xf8, 0x20, 0xf8, 0x20, 0xf8, 0x20, 0xf8, 0x6b, - 0xc6, 0x8d, 0xb6, 0xe7, 0x0d, 0x98, 0x4b, 0xa2, 0xe9, 0x4e, 0x6e, 0x57, 0xa8, 0xcb, 0x87, 0x2d, - 0x9e, 0xe2, 0x56, 0x55, 0x08, 0x4f, 0xba, 0x92, 0x6b, 0x3a, 0x6b, 0xd3, 0x0a, 0x3a, 0xdf, 0xd9, - 0xbd, 0x3b, 0x8c, 0x8e, 0x66, 0x75, 0xbc, 0x21, 0x13, 0x9d, 0x29, 0x51, 0xb0, 0x05, 0x93, 0x3f, - 0x3d, 0xff, 0x87, 0xcd, 0x45, 0x20, 0x5d, 0xd1, 0x61, 0xce, 0xe2, 0x0b, 0x41, 0xe2, 0x15, 0x67, - 0xe8, 0x7b, 0xd2, 0xeb, 0x78, 0x83, 0x20, 0xbe, 0x72, 0xda, 0xfd, 0xa1, 0xe3, 0xf3, 0xb6, 0xe3, - 0xf6, 0xb8, 0x1d, 0xb8, 0x3d, 0x1e, 0xc4, 0x57, 0xce, 0x34, 0x5b, 0x1e, 0x09, 0xde, 0x71, 0x03, - 0xe9, 0x0c, 0xc2, 0xb0, 0xea, 0x4c, 0x29, 0x5a, 0x10, 0x7e, 0x0b, 0x0f, 0x7d, 0x55, 0x1b, 0x65, - 0xd5, 0x4d, 0x37, 0x85, 0x53, 0xcd, 0x1a, 0x89, 0x1f, 0xc2, 0xfb, 0x29, 0x6c, 0x57, 0x4a, 0x9f, - 0xb7, 0x27, 0x4f, 0x58, 0xf9, 0x74, 0x7b, 0xd5, 0xb6, 0x2c, 0x61, 0x8b, 0x62, 0xa7, 0x9b, 0x85, - 0x50, 0xc5, 0xb7, 0xd5, 0xc5, 0xc0, 0x75, 0x32, 0x6f, 0x1a, 0x8c, 0x5b, 0x37, 0xd3, 0x26, 0xc3, - 0xb0, 0xc9, 0x30, 0x6b, 0x32, 0x8c, 0x7a, 0xbb, 0xe9, 0xc5, 0x19, 0xf7, 0xf5, 0xb8, 0x7d, 0x22, - 0xc8, 0xeb, 0x97, 0x80, 0x92, 0x26, 0xe9, 0x15, 0x82, 0x72, 0x10, 0x82, 0x20, 0x04, 0x41, 0x08, - 0x82, 0x10, 0x04, 0x21, 0x88, 0x3a, 0x9c, 0xc5, 0x06, 0x4c, 0xb0, 0xc3, 0x96, 0xba, 0xe5, 0xa8, - 0xb9, 0x08, 0xf6, 0x62, 0x92, 0x66, 0xd7, 0xa0, 0x51, 0xd5, 0xa9, 0x1d, 0xde, 0x28, 0xc1, 0x1c, - 0x4d, 0xb8, 0xa3, 0x06, 0x7b, 0x64, 0xe1, 0x8f, 0x2c, 0x0c, 0x92, 0x85, 0x43, 0xbd, 0xb0, 0xa8, - 0x19, 0x1e, 0xe3, 0x51, 0xb9, 0xa1, 0x00, 0x50, 0x73, 0x71, 0x67, 0xc0, 0xdc, 0x1e, 0xb1, 0xfe, - 0x8c, 0x65, 0x02, 0xb6, 0x5c, 0x45, 0xba, 0xfb, 0xc7, 0x8f, 0xa1, 0xd4, 0xed, 0xbc, 0x80, 0xf9, - 0x8e, 0xd6, 0xd9, 0x6b, 0x74, 0x1d, 0x2b, 0x5c, 0x6d, 0x20, 0x43, 0xec, 0x42, 0x73, 0x68, 0x90, - 0xba, 0x1c, 0x48, 0x1d, 0x48, 0x1d, 0x48, 0x1d, 0x48, 0x1d, 0x48, 0x9d, 0xae, 0x51, 0xd1, 0xad, - 0x7d, 0xcc, 0x6b, 0x20, 0x03, 0x26, 0xe8, 0x35, 0x94, 0x8e, 0x2d, 0x3b, 0xc4, 0x3e, 0x57, 0xc2, - 0x20, 0x4a, 0x11, 0x4c, 0x69, 0x83, 0x2a, 0x55, 0x70, 0x25, 0x0f, 0xb2, 0xe4, 0xc1, 0x96, 0x3c, - 0xe8, 0xd2, 0x00, 0x5f, 0x22, 0x20, 0x4c, 0x4f, 0x61, 0x49, 0xc4, 0xad, 0x11, 0x17, 0x32, 0x57, - 0x22, 0x78, 0xc4, 0x52, 0x89, 0x90, 0x49, 0x34, 0x3a, 0xdb, 0x2c, 0x7e, 0xd1, 0x8a, 0xe9, 0x7b, - 0xd4, 0x3a, 0xdf, 0x10, 0xa7, 0x57, 0x09, 0xf3, 0x88, 0x75, 0xc6, 0x49, 0xd8, 0x47, 0xb0, 0xbb, - 0x08, 0xd1, 0x70, 0x3f, 0xef, 0x12, 0xee, 0x23, 0x5c, 0x62, 0x43, 0x97, 0x28, 0x15, 0x8b, 0xc7, - 0x45, 0xb8, 0x85, 0xd9, 0x5c, 0x8c, 0x9e, 0x35, 0x38, 0x99, 0x8e, 0x4c, 0xd8, 0x24, 0x54, 0x29, - 0x93, 0xa0, 0xc8, 0x54, 0x2a, 0x66, 0x88, 0x46, 0x6d, 0xe8, 0x44, 0xeb, 0x4c, 0x26, 0xe8, 0x44, - 0x6b, 0xcd, 0x74, 0xe8, 0x44, 0x1b, 0x1a, 0x08, 0x9d, 0xc8, 0xa0, 0xc4, 0x81, 0xb8, 0x4e, 0x74, - 0x42, 0x50, 0x26, 0x2a, 0x42, 0x26, 0xfa, 0x8f, 0x2f, 0xc8, 0x44, 0x5b, 0x99, 0x13, 0x43, 0x26, - 0x32, 0x3d, 0xda, 0xcf, 0xbb, 0x04, 0x64, 0xa2, 0x8d, 0x5d, 0x22, 0x5f, 0x84, 0x48, 0xb4, 0x05, - 0xb2, 0xcc, 0x1e, 0x44, 0x22, 0x82, 0xcf, 0x83, 0x8c, 0x48, 0xf4, 0x10, 0x79, 0x3b, 0x45, 0x95, - 0x28, 0xb4, 0x0d, 0x32, 0xd1, 0x32, 0x73, 0x20, 0x13, 0xad, 0x31, 0x9b, 0x20, 0x13, 0xad, 0x35, - 0xd3, 0x21, 0x13, 0x6d, 0x68, 0x20, 0x64, 0x22, 0x83, 0x12, 0x07, 0xc2, 0x32, 0x51, 0x9b, 0x0b, - 0xd7, 0x7f, 0x22, 0xa8, 0x13, 0x55, 0x08, 0x99, 0x74, 0xc1, 0x44, 0x7f, 0xba, 0x91, 0x0b, 0x42, - 0xd1, 0x7f, 0x65, 0xc5, 0x10, 0x8a, 0x36, 0xce, 0x8a, 0x73, 0xc8, 0x89, 0x0d, 0x8f, 0xf7, 0xf3, - 0x2e, 0x01, 0xa1, 0x68, 0x63, 0x97, 0x40, 0x3d, 0xd1, 0x96, 0x88, 0x33, 0x7b, 0x90, 0x8a, 0x08, - 0x3e, 0x0f, 0x0a, 0x52, 0x11, 0x7b, 0x94, 0x4c, 0x74, 0x59, 0x97, 0x9e, 0x50, 0x14, 0x5b, 0x06, - 0x99, 0x68, 0x99, 0x39, 0x90, 0x89, 0xd6, 0x98, 0x4b, 0x90, 0x89, 0xd6, 0x9a, 0xe9, 0x90, 0x89, - 0x36, 0x34, 0x10, 0x32, 0x91, 0x41, 0x69, 0x03, 0x65, 0x99, 0x48, 0xfb, 0xb9, 0x08, 0xab, 0x60, - 0x50, 0xd3, 0x39, 0x09, 0x20, 0x71, 0xcb, 0xc6, 0xc4, 0x1b, 0x4e, 0x32, 0x21, 0x77, 0x40, 0x8f, - 0xc4, 0xc5, 0x96, 0x81, 0xc4, 0x81, 0xc4, 0x81, 0xc4, 0x81, 0xc4, 0x81, 0xc4, 0x81, 0xc4, 0x81, - 0xc4, 0x81, 0xc4, 0x81, 0xc4, 0x2d, 0x8e, 0xc9, 0xd0, 0xf5, 0x25, 0xa7, 0xc8, 0xe1, 0x66, 0x86, - 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x81, 0xc2, - 0x81, 0xc2, 0x2d, 0x8e, 0x89, 0xf4, 0x5d, 0x11, 0x70, 0xc9, 0x1f, 0x08, 0xd6, 0xdd, 0xbf, 0xb2, - 0x0d, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, - 0x8e, 0x18, 0x91, 0xdb, 0xe9, 0x76, 0xf4, 0x9a, 0x0f, 0xae, 0x4f, 0xd8, 0x43, 0xfb, 0x20, 0xfb, - 0xe4, 0x99, 0xe7, 0xc9, 0x97, 0x74, 0x9c, 0x76, 0x4f, 0x67, 0x4e, 0xef, 0xd6, 0x41, 0x96, 0x7f, - 0xb1, 0x27, 0x0a, 0x9d, 0xe8, 0xac, 0x0b, 0x1e, 0xc8, 0xaa, 0x94, 0x9a, 0x4f, 0xd5, 0xfc, 0xca, - 0xc5, 0xf9, 0x80, 0x4d, 0x68, 0x53, 0x60, 0x9d, 0xee, 0x89, 0xd1, 0x60, 0xa0, 0xf1, 0x14, 0xa8, - 0xaf, 0xee, 0x23, 0x1d, 0x63, 0xea, 0x7e, 0x97, 0xf9, 0xac, 0xfb, 0xe9, 0x29, 0x32, 0x65, 0xa7, - 0x9c, 0x84, 0x08, 0xc4, 0x6c, 0x01, 0xb4, 0x58, 0x5a, 0x4f, 0x55, 0xf3, 0x47, 0x1d, 0x29, 0x22, - 0x5e, 0x7b, 0x19, 0x3e, 0x8e, 0x5a, 0xf4, 0x34, 0x5a, 0x57, 0xd1, 0x33, 0x68, 0x7d, 0xea, 0x0f, - 0x5b, 0x0d, 0xde, 0x6e, 0x55, 0x7b, 0xfc, 0xda, 0xed, 0xf1, 0x56, 0x6d, 0xf8, 0x50, 0xba, 0x0d, - 0xff, 0xee, 0xd6, 0x85, 0xd7, 0x99, 0xfc, 0xa8, 0x31, 0xf9, 0x7b, 0x5b, 0xb7, 0xe1, 0x1f, 0x57, - 0x8d, 0xff, 0xb6, 0x0f, 0xbb, 0x01, 0x57, 0x6a, 0xef, 0xa8, 0xd8, 0xe7, 0x75, 0xfb, 0xba, 0x71, - 0x3e, 0xae, 0x76, 0xd6, 0xab, 0x9b, 0x7b, 0x6a, 0xee, 0xa4, 0x68, 0x76, 0xcf, 0x68, 0x5e, 0xa8, - 0xa5, 0xed, 0x79, 0x3e, 0xef, 0x73, 0xb1, 0x37, 0x99, 0x64, 0x36, 0x57, 0xb5, 0x5d, 0x48, 0x0f, - 0xc5, 0xd3, 0x4a, 0xe9, 0xb4, 0x52, 0x38, 0x3d, 0x94, 0x4d, 0xd5, 0x84, 0xd6, 0x14, 0xa6, 0x69, - 0x87, 0x67, 0x85, 0xec, 0x2a, 0x6d, 0x36, 0xa5, 0x06, 0x46, 0xb2, 0x0f, 0xea, 0xd9, 0xde, 0x21, - 0x63, 0xef, 0x52, 0xed, 0x55, 0x54, 0xbd, 0x29, 0xdb, 0xc9, 0x98, 0xdd, 0x14, 0xc9, 0x70, 0x7a, - 0x28, 0x3a, 0x93, 0x5a, 0xe9, 0x99, 0xd3, 0x8a, 0xce, 0x94, 0x7e, 0x59, 0x27, 0xcf, 0x67, 0x7c, - 0x23, 0x85, 0xeb, 0xdf, 0x7a, 0xd6, 0xb5, 0x55, 0xaf, 0x57, 0x6b, 0x5b, 0x87, 0xd6, 0xb6, 0xbe, - 0xac, 0x6d, 0xdd, 0x18, 0xc0, 0x69, 0x34, 0x70, 0x2a, 0x58, 0x32, 0xca, 0x10, 0x37, 0x3f, 0x18, - 0x34, 0xe7, 0x54, 0xcd, 0x35, 0x72, 0x73, 0xcc, 0xca, 0x94, 0xdd, 0xa4, 0x94, 0xcd, 0x64, 0xe3, - 0x02, 0xe9, 0x4f, 0xd0, 0x0c, 0x26, 0xa7, 0x25, 0x18, 0xef, 0x7f, 0x6f, 0x7b, 0x7e, 0x90, 0xd9, - 0xbc, 0x8c, 0x59, 0xc7, 0xcb, 0xad, 0x32, 0x72, 0xb2, 0x6c, 0xa9, 0x61, 0xe6, 0x94, 0x50, 0x05, - 0x15, 0x54, 0x4b, 0x01, 0x55, 0x51, 0x3f, 0xe5, 0x94, 0x4f, 0x39, 0xd5, 0x53, 0x4e, 0xf1, 0xcc, - 0x82, 0xd7, 0x33, 0x9e, 0xad, 0x42, 0x1d, 0xc7, 0x2e, 0x75, 0xc9, 0x74, 0x7c, 0xc7, 0x2d, 0xcb, - 0xa7, 0x8f, 0x90, 0x4f, 0x23, 0x9f, 0x46, 0x3e, 0xbd, 0x85, 0xf9, 0x74, 0xd6, 0x41, 0x38, 0xbe, - 0x91, 0xdb, 0xfd, 0x77, 0x3a, 0x26, 0x5c, 0xd8, 0x43, 0x2f, 0x90, 0xea, 0x3c, 0x21, 0x3e, 0xdd, - 0x63, 0xc1, 0x00, 0x55, 0x0b, 0xc2, 0x4a, 0x42, 0xb5, 0xf2, 0x90, 0xad, 0x23, 0x74, 0xeb, 0x0d, - 0xe1, 0xba, 0x42, 0xb9, 0xf6, 0x90, 0xae, 0x3d, 0xb4, 0x6b, 0x0f, 0xf1, 0x6a, 0x42, 0xbd, 0xa2, - 0x90, 0xaf, 0x3c, 0xf4, 0xc7, 0x37, 0x8c, 0xd6, 0xfc, 0x94, 0x3b, 0xce, 0x2c, 0x5c, 0x44, 0xf7, - 0x57, 0x3c, 0x69, 0xd5, 0x02, 0x80, 0x32, 0xe1, 0x83, 0x12, 0x20, 0xd0, 0x00, 0x06, 0xdd, 0x00, - 0x41, 0x06, 0x28, 0xc8, 0x00, 0x06, 0x19, 0xe0, 0x50, 0x0b, 0x20, 0x8a, 0x81, 0x44, 0x1b, 0xa0, - 0xcc, 0x03, 0x8b, 0x3e, 0x7f, 0x9b, 0xc3, 0x17, 0x5d, 0xbe, 0xa6, 0x07, 0x66, 0xb4, 0xe5, 0x1d, - 0x94, 0x60, 0x87, 0x16, 0xfc, 0x50, 0x81, 0x21, 0x72, 0x70, 0x44, 0x0e, 0x96, 0xc8, 0xc1, 0x93, - 0x1e, 0x98, 0xd2, 0x04, 0x57, 0xda, 0x61, 0x2b, 0x36, 0x60, 0xb6, 0x3d, 0x40, 0xbb, 0xa7, 0xbe, - 0xb4, 0x55, 0x54, 0xb9, 0x5f, 0xe1, 0xbf, 0x20, 0x4d, 0x73, 0xd3, 0x1b, 0x32, 0xdd, 0x77, 0x28, - 0x75, 0xdd, 0xa1, 0xd9, 0x6d, 0x87, 0x5a, 0x97, 0x1d, 0xb2, 0xdd, 0x75, 0xc8, 0x76, 0xd5, 0x21, - 0xdb, 0x4d, 0x67, 0xb7, 0x5b, 0x7f, 0x90, 0xe9, 0x9a, 0x13, 0xc7, 0x9d, 0x01, 0x73, 0x7b, 0x3e, - 0xeb, 0x51, 0x08, 0x3a, 0xb3, 0xcc, 0xab, 0x4c, 0xc0, 0x96, 0xab, 0xa8, 0x88, 0xf0, 0xe3, 0xc7, - 0xb0, 0x50, 0xd4, 0x99, 0x41, 0xf9, 0xae, 0xf6, 0x18, 0xd1, 0x98, 0x7f, 0x0d, 0x69, 0xc0, 0xf5, - 0x0b, 0xab, 0x23, 0x91, 0x7c, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, - 0xd4, 0x81, 0xd4, 0xbd, 0x93, 0xd4, 0x85, 0x61, 0x07, 0x9c, 0x4e, 0xf9, 0x50, 0xa8, 0xd9, 0x9c, - 0xfb, 0x66, 0x87, 0x51, 0xb1, 0x79, 0xf7, 0xcd, 0xae, 0x02, 0x46, 0x07, 0x46, 0x07, 0x46, 0x07, - 0x46, 0x07, 0x46, 0xa7, 0x6b, 0x54, 0x74, 0xaf, 0x64, 0xc5, 0x86, 0x4c, 0xbb, 0x9c, 0x72, 0xd1, - 0x65, 0x8f, 0xf4, 0x4e, 0x9b, 0x78, 0x65, 0x1b, 0x4e, 0x9b, 0xa0, 0x0c, 0xa4, 0x14, 0x01, 0x95, - 0x36, 0xb0, 0x52, 0x05, 0x58, 0xf2, 0x40, 0x4b, 0x1e, 0x70, 0xc9, 0x03, 0x2f, 0x0d, 0x00, 0x26, - 0x02, 0xc4, 0xf4, 0x24, 0x16, 0xc2, 0x52, 0x0b, 0x45, 0xc9, 0x65, 0x99, 0xf4, 0xf2, 0x9b, 0xff, - 0xa6, 0x94, 0x22, 0x60, 0x32, 0x88, 0xaf, 0x22, 0xa1, 0x26, 0xa4, 0x19, 0x38, 0x3d, 0x83, 0x8a, - 0x53, 0x5a, 0x6d, 0x16, 0x48, 0x3b, 0xea, 0xb4, 0x42, 0x8c, 0x97, 0xbe, 0x98, 0x06, 0x5a, 0x0a, - 0x5a, 0x0a, 0x5a, 0x0a, 0x5a, 0x0a, 0x5a, 0x0a, 0x5a, 0xba, 0x63, 0xb4, 0x14, 0x87, 0xa0, 0x81, - 0xc6, 0xbd, 0x61, 0x4c, 0x3a, 0xde, 0xfd, 0xfd, 0x48, 0x70, 0xf9, 0x44, 0x55, 0x64, 0x5c, 0x34, - 0x10, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x0e, 0x94, 0x6e, 0xc7, 0x28, 0x1d, - 0x94, 0xc6, 0xb7, 0x41, 0xcf, 0x9b, 0x94, 0xc6, 0x19, 0xaf, 0xe0, 0x2c, 0x88, 0xaf, 0x9f, 0x20, - 0x36, 0xd2, 0x64, 0xa9, 0xec, 0x51, 0xda, 0xe4, 0x99, 0xea, 0x32, 0x23, 0xc1, 0x56, 0xc1, 0x56, - 0xc1, 0x56, 0xc1, 0x56, 0xc1, 0x56, 0xc1, 0x56, 0xc1, 0x56, 0xc1, 0x56, 0xdf, 0xcb, 0x56, 0x5f, - 0x73, 0x8b, 0x09, 0x63, 0x9d, 0xe3, 0x1a, 0x60, 0xad, 0x34, 0x59, 0x2b, 0x17, 0x0f, 0xee, 0x80, - 0x77, 0x6d, 0x9f, 0xb9, 0x81, 0xe6, 0x73, 0xb8, 0x97, 0x7a, 0xe8, 0x82, 0x7d, 0xe0, 0xaa, 0xe0, - 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0x3b, 0xc6, 0x55, 0x79, 0x97, 0x09, 0xc9, - 0xe5, 0x13, 0x51, 0xbe, 0x5a, 0x24, 0x64, 0x53, 0x2d, 0x7a, 0x54, 0x9f, 0xdc, 0x80, 0x60, 0x48, - 0x9d, 0x0d, 0x68, 0xed, 0xf2, 0x5b, 0xf5, 0xa2, 0x76, 0xd6, 0x6a, 0xd4, 0x6f, 0x6f, 0xce, 0x5b, - 0x8d, 0xf3, 0xea, 0x75, 0xfd, 0x92, 0x5a, 0x74, 0xfd, 0xe6, 0x0e, 0x46, 0xd3, 0x26, 0xde, 0x77, - 0xa4, 0xec, 0x9a, 0x7c, 0xfd, 0x22, 0x67, 0xd1, 0xd2, 0xd1, 0xad, 0x37, 0x6a, 0x7f, 0xd6, 0x2e, - 0xab, 0x37, 0xf5, 0x86, 0x45, 0xce, 0xe0, 0xf1, 0x21, 0x46, 0xf5, 0x7d, 0xa3, 0xfa, 0xf9, 0xe2, - 0xf6, 0xfa, 0xe6, 0xbc, 0xd1, 0xba, 0xa8, 0xd7, 0xaf, 0x30, 0xae, 0xdb, 0x33, 0xae, 0xd5, 0x6b, - 0x0c, 0xe9, 0xb6, 0xb9, 0x6a, 0xfd, 0xf2, 0xcb, 0xf9, 0x19, 0xc1, 0x11, 0x25, 0x65, 0x51, 0x13, - 0xf9, 0x08, 0x31, 0x2b, 0x28, 0xa8, 0x83, 0x03, 0x37, 0x90, 0xf6, 0xbd, 0xd7, 0xe5, 0x3d, 0xce, - 0xba, 0xf4, 0xc4, 0xc1, 0x79, 0xf3, 0xa0, 0x0d, 0x2e, 0x33, 0x07, 0xda, 0xe0, 0x1a, 0x13, 0x0a, - 0xda, 0xe0, 0x5a, 0x33, 0x1d, 0xda, 0xe0, 0x86, 0x06, 0x42, 0x1b, 0x34, 0x88, 0xfb, 0x12, 0xd6, - 0x06, 0x25, 0xbf, 0x67, 0x92, 0x77, 0x7e, 0x04, 0xa5, 0x02, 0x41, 0x6d, 0xf0, 0x84, 0x90, 0x49, - 0xb7, 0x82, 0xcb, 0x60, 0x7a, 0x78, 0xb3, 0x2b, 0xbc, 0x80, 0x75, 0x3c, 0xd1, 0x0d, 0x28, 0x3d, - 0xb2, 0x86, 0x2b, 0xfa, 0x8c, 0x9c, 0xde, 0x46, 0x2f, 0xd5, 0xb3, 0xbe, 0x72, 0x41, 0x0e, 0x11, - 0x89, 0x72, 0xc0, 0x84, 0x79, 0x53, 0x55, 0x97, 0xb0, 0x7d, 0x5f, 0x7c, 0xb7, 0x23, 0xb9, 0x27, - 0xce, 0x78, 0x3f, 0xf4, 0xd6, 0x23, 0xe8, 0x31, 0x6f, 0x71, 0x09, 0xf7, 0x11, 0x2e, 0xb1, 0xa1, - 0x4b, 0xe4, 0x4e, 0x0a, 0x85, 0x52, 0xb9, 0x50, 0x38, 0x2a, 0x1f, 0x97, 0x8f, 0x2a, 0xc5, 0x62, - 0xae, 0x44, 0x69, 0x65, 0xcb, 0x38, 0x2f, 0xf9, 0x00, 0x6b, 0x96, 0x7d, 0x35, 0xa1, 0x71, 0x51, - 0x89, 0xa2, 0x64, 0xce, 0xe3, 0x4a, 0x90, 0x7a, 0x1a, 0xe7, 0x72, 0x11, 0x0d, 0xe0, 0xd0, 0xb5, - 0xd6, 0x99, 0x4a, 0xd0, 0xb5, 0xd6, 0x9a, 0xe9, 0xd0, 0xb5, 0x36, 0x34, 0x10, 0xba, 0x96, 0x41, - 0x39, 0x04, 0x61, 0x5d, 0x6b, 0xc4, 0x85, 0x3c, 0xce, 0x13, 0x94, 0xb4, 0xca, 0x90, 0x8c, 0xfe, - 0xe3, 0x0b, 0x92, 0xd1, 0x56, 0xe6, 0xc7, 0x90, 0x8c, 0x4c, 0x0f, 0xf7, 0xf3, 0x2e, 0x01, 0xc9, - 0x68, 0x63, 0x97, 0x28, 0xe4, 0x2b, 0x85, 0x4a, 0xa9, 0x9c, 0xaf, 0x40, 0x28, 0xda, 0x02, 0x69, - 0x66, 0x0f, 0x42, 0x11, 0xc1, 0xe7, 0x41, 0x42, 0x28, 0xa2, 0x95, 0xe0, 0xd3, 0x3a, 0xe9, 0x93, - 0x68, 0xd0, 0x86, 0x4c, 0xb4, 0xce, 0x4c, 0x82, 0x4c, 0xb4, 0xd6, 0x4c, 0x87, 0x4c, 0xb4, 0xa1, - 0x81, 0x90, 0x89, 0x0c, 0xca, 0x1b, 0x28, 0x6f, 0x8d, 0x1c, 0x3e, 0x94, 0x6c, 0x72, 0x3e, 0x18, - 0x6f, 0x8d, 0x3c, 0xa1, 0xd5, 0xca, 0x43, 0x32, 0x5f, 0x90, 0x93, 0x8b, 0xac, 0x7f, 0xf6, 0xf7, - 0xef, 0x8e, 0xec, 0x8a, 0x6b, 0xf7, 0xaa, 0xf6, 0x97, 0xe6, 0xaf, 0xdc, 0x61, 0x61, 0x7c, 0x7a, - 0xf0, 0xab, 0x3c, 0x5e, 0x7c, 0xf1, 0x79, 0xd9, 0xdb, 0x72, 0x87, 0xe5, 0xf1, 0xe9, 0x8a, 0x9f, - 0x94, 0xc6, 0xa7, 0x6f, 0xfc, 0x1d, 0xc5, 0xf1, 0x7e, 0xe2, 0xad, 0x93, 0xd7, 0xf3, 0xab, 0x3e, - 0x50, 0x58, 0xf1, 0x81, 0xe3, 0x55, 0x1f, 0x38, 0x5e, 0xf1, 0x81, 0x95, 0x26, 0xe5, 0x57, 0x7c, - 0xa0, 0x38, 0x7e, 0x4e, 0xbc, 0x7f, 0x7f, 0xf9, 0x5b, 0x4b, 0xe3, 0x83, 0xe7, 0x55, 0x3f, 0x2b, - 0x8f, 0x9f, 0x4f, 0x0f, 0x0e, 0x9c, 0xfd, 0x5c, 0xfe, 0xee, 0xc8, 0x3e, 0x69, 0x3e, 0xe7, 0xee, - 0x8e, 0xec, 0x5c, 0x73, 0xf2, 0xce, 0xe6, 0xf3, 0x5d, 0xce, 0xae, 0xcc, 0x2e, 0x27, 0xff, 0x3f, - 0xf8, 0xc3, 0x42, 0x5a, 0x84, 0xb4, 0x28, 0xe1, 0xb8, 0x51, 0x7f, 0x16, 0x6f, 0x24, 0x19, 0xbd, - 0xdc, 0xe8, 0xb5, 0x71, 0x48, 0x90, 0x90, 0x20, 0x21, 0x41, 0x42, 0x82, 0x84, 0x04, 0x09, 0x09, - 0xd2, 0x8e, 0x25, 0x48, 0x38, 0x68, 0x85, 0x3e, 0x95, 0xdb, 0xe9, 0xb3, 0xac, 0xab, 0x42, 0x78, - 0xd2, 0x95, 0x9c, 0x48, 0x0b, 0x42, 0x2b, 0xe8, 0x7c, 0x67, 0xf7, 0x6e, 0x74, 0x74, 0xa0, 0xe5, - 0x78, 0x43, 0x26, 0x3a, 0x53, 0xa2, 0x64, 0x0b, 0x26, 0x7f, 0x7a, 0xfe, 0x0f, 0x9b, 0x8b, 0x40, - 0xba, 0xa2, 0xc3, 0x9c, 0xc5, 0x17, 0x82, 0xc4, 0x2b, 0xce, 0xd0, 0xf7, 0xa4, 0xd7, 0xf1, 0x06, - 0x41, 0x7c, 0xe5, 0xb4, 0xfb, 0x43, 0xc7, 0xe7, 0x6d, 0xc7, 0xed, 0x71, 0x3b, 0x70, 0x7b, 0x3c, - 0x88, 0xaf, 0x9c, 0xa9, 0x9a, 0x31, 0x12, 0xbc, 0xe3, 0x06, 0xd2, 0x11, 0x8c, 0xf7, 0xbf, 0xb7, - 0x3d, 0x3f, 0x88, 0xaf, 0x1c, 0xb7, 0xfb, 0xef, 0x14, 0x09, 0xb8, 0xb0, 0x87, 0x5e, 0x20, 0x9d, - 0x29, 0xbb, 0x0d, 0xc2, 0x6f, 0x61, 0x9b, 0x4d, 0xbd, 0x00, 0xa1, 0x6f, 0x26, 0x6b, 0x9c, 0xc5, - 0xd6, 0x48, 0xfc, 0x10, 0xde, 0x4f, 0x61, 0xbb, 0x52, 0xfa, 0xbc, 0x3d, 0x19, 0x11, 0xed, 0x33, - 0xf9, 0xa5, 0x8c, 0x2a, 0x69, 0x9b, 0x66, 0x7f, 0x9f, 0x45, 0x7f, 0xcd, 0x66, 0x50, 0x49, 0x7e, - 0x28, 0x25, 0x3d, 0x34, 0x93, 0x1d, 0x6a, 0x49, 0x0e, 0xd9, 0xe4, 0x86, 0x6c, 0x52, 0x43, 0x36, - 0x99, 0xd9, 0x6d, 0xe6, 0x75, 0xc6, 0x7d, 0x1a, 0x61, 0x27, 0x01, 0x52, 0xf4, 0xd4, 0xc4, 0xa4, - 0x89, 0xb4, 0x34, 0xc5, 0x1c, 0x34, 0x45, 0xf2, 0xf0, 0x4a, 0x1b, 0x66, 0xa9, 0xc2, 0x2d, 0x79, - 0xd8, 0x25, 0x0f, 0xbf, 0xe4, 0x61, 0x98, 0x8e, 0x14, 0xb3, 0x47, 0x48, 0x53, 0xa4, 0x02, 0xcf, - 0xb1, 0x41, 0x13, 0xec, 0xb3, 0x25, 0x35, 0xa5, 0x73, 0x2e, 0xa2, 0xbe, 0x98, 0x48, 0xcc, 0xf5, - 0x68, 0x16, 0xb4, 0x93, 0x83, 0x6b, 0xca, 0xb0, 0x6d, 0x06, 0x7c, 0x53, 0x87, 0x71, 0x63, 0xe0, - 0xdc, 0x18, 0x58, 0x37, 0x06, 0xde, 0x69, 0xc1, 0x3c, 0x31, 0xb8, 0x8f, 0x47, 0xf1, 0x86, 0x22, - 0xc0, 0xee, 0xd1, 0x3e, 0x3a, 0x2d, 0x91, 0x0d, 0x97, 0x09, 0xda, 0xf6, 0xea, 0x28, 0xb5, 0xf0, - 0x44, 0xb4, 0x17, 0xb2, 0x82, 0x2d, 0x50, 0xd4, 0x5d, 0xd3, 0x0a, 0x57, 0xd7, 0xc8, 0x12, 0xdf, - 0xd0, 0x3c, 0x9a, 0xa4, 0x37, 0x07, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, - 0x64, 0x5d, 0x3e, 0x8a, 0xd4, 0xb4, 0xae, 0xd8, 0xb0, 0x29, 0x47, 0x1b, 0x30, 0xc2, 0xdd, 0x43, - 0xe6, 0xa4, 0xaf, 0x89, 0xa5, 0x87, 0x68, 0xe9, 0xb0, 0x45, 0xa4, 0xc0, 0x04, 0x72, 0x60, 0x16, - 0x49, 0x30, 0x85, 0x2c, 0x18, 0x47, 0x1a, 0x8c, 0x23, 0x0f, 0xc6, 0x91, 0x08, 0x9a, 0x64, 0x82, - 0x28, 0xa9, 0x88, 0x47, 0x97, 0xac, 0xa2, 0x96, 0x88, 0x9b, 0x23, 0x2e, 0x64, 0xae, 0x44, 0x39, - 0x66, 0x46, 0x28, 0x5e, 0x22, 0x6c, 0x22, 0xcd, 0xa6, 0x78, 0x8b, 0x5f, 0xb4, 0x31, 0x67, 0x8f, - 0x7a, 0xd3, 0x3c, 0xc3, 0xe8, 0x65, 0xc2, 0x5c, 0xe2, 0x4d, 0xf5, 0x12, 0xf6, 0x1a, 0xd0, 0x48, - 0xcc, 0x10, 0x38, 0x9a, 0x77, 0x31, 0xf7, 0x11, 0x2e, 0x96, 0xb1, 0x8b, 0x95, 0x8a, 0xc5, 0xe3, - 0x22, 0xdc, 0x6c, 0xb7, 0xb8, 0x28, 0x7d, 0xeb, 0x9a, 0x1f, 0xf0, 0xbc, 0x0c, 0x0d, 0xe3, 0x84, - 0x2b, 0xe1, 0x12, 0x29, 0x05, 0xd5, 0x8a, 0x38, 0x43, 0x50, 0x05, 0xba, 0x60, 0x9a, 0x93, 0x11, - 0xba, 0x60, 0xaa, 0x9e, 0x03, 0x5d, 0x30, 0x63, 0x83, 0xa1, 0x0b, 0x6e, 0x71, 0x22, 0x66, 0x98, - 0x2e, 0x78, 0x62, 0x80, 0x2c, 0x58, 0x84, 0x2c, 0xb8, 0xe1, 0x17, 0x64, 0x41, 0x68, 0x16, 0x90, - 0x05, 0x77, 0x10, 0x8d, 0xe6, 0x5d, 0x0c, 0xb2, 0x60, 0xe6, 0x2e, 0x96, 0x2f, 0x42, 0x14, 0xdc, - 0x31, 0x22, 0x4a, 0xdf, 0x3a, 0x88, 0x82, 0xc6, 0x06, 0xf1, 0x50, 0x69, 0x7b, 0x88, 0xa2, 0x8b, - 0x09, 0xaa, 0x60, 0x68, 0x2b, 0x64, 0xc1, 0xf7, 0x98, 0x07, 0x59, 0x30, 0xc5, 0xd9, 0x08, 0x59, - 0x30, 0x55, 0xcf, 0x81, 0x2c, 0x98, 0xb1, 0xc1, 0x90, 0x05, 0xb7, 0x38, 0x11, 0x33, 0x48, 0x16, - 0x6c, 0x73, 0xe1, 0xfa, 0x4f, 0x06, 0xe8, 0x82, 0x15, 0xc2, 0x26, 0x5e, 0x30, 0xd1, 0x9f, 0x6e, - 0xcc, 0x85, 0x30, 0xb8, 0xa9, 0x6a, 0x01, 0x61, 0x30, 0x73, 0xd5, 0x22, 0x07, 0xcd, 0x62, 0xc7, - 0xf0, 0x68, 0xde, 0xc5, 0x20, 0x0c, 0x66, 0xee, 0x62, 0xa8, 0x17, 0xdc, 0x41, 0x32, 0x4a, 0xdf, - 0x3a, 0x48, 0x83, 0xc6, 0x86, 0x71, 0x8b, 0x3d, 0x4a, 0x26, 0xba, 0xac, 0x4b, 0x5f, 0x18, 0x8c, - 0x2d, 0x85, 0x2c, 0xf8, 0x1e, 0xf3, 0x20, 0x0b, 0xa6, 0x38, 0x17, 0x21, 0x0b, 0xa6, 0xea, 0x39, - 0x90, 0x05, 0x33, 0x36, 0x18, 0xb2, 0xe0, 0x16, 0xa7, 0x61, 0x26, 0xc9, 0x82, 0xe4, 0x8e, 0xfc, - 0x5a, 0x05, 0xe3, 0x44, 0x8e, 0x00, 0x03, 0xa9, 0x7d, 0xcf, 0x18, 0x7a, 0xc3, 0x49, 0xe6, 0xe9, - 0x0e, 0xe8, 0x93, 0xda, 0xd8, 0x52, 0x90, 0x5a, 0x90, 0x5a, 0x90, 0x5a, 0x90, 0x5a, 0x90, 0x5a, - 0x90, 0x5a, 0x90, 0x5a, 0x90, 0x5a, 0x90, 0x5a, 0x38, 0xc5, 0xfc, 0x18, 0x0e, 0x5d, 0x5f, 0x72, - 0x13, 0x38, 0xed, 0xcc, 0x50, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x50, - 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x50, 0x5a, 0x38, 0xc5, 0xfc, 0x18, 0x4a, 0xdf, 0x15, 0x01, 0x97, - 0xfc, 0xc1, 0x80, 0x7d, 0x49, 0xaf, 0x6c, 0x05, 0xb1, 0x05, 0xb1, 0x05, 0xb1, 0x05, 0xb1, 0x05, - 0xb1, 0x05, 0xb1, 0x05, 0xb1, 0x05, 0xb1, 0x05, 0xb1, 0x85, 0x45, 0x44, 0x5d, 0xd4, 0xaa, 0x0a, - 0xe1, 0x49, 0x57, 0x72, 0x8f, 0xe6, 0x06, 0x28, 0x2b, 0xe8, 0x7c, 0x67, 0xf7, 0xee, 0x30, 0x3a, - 0x80, 0xd2, 0xf1, 0x86, 0x4c, 0x74, 0xa6, 0x44, 0xd1, 0x16, 0x4c, 0xfe, 0xf4, 0xfc, 0x1f, 0x36, - 0x17, 0x81, 0x74, 0x45, 0x87, 0x39, 0x8b, 0x2f, 0x04, 0x89, 0x57, 0x9c, 0xa1, 0xef, 0x49, 0xaf, - 0xe3, 0x0d, 0x82, 0xf8, 0xca, 0x69, 0xf7, 0x87, 0x8e, 0xcf, 0xdb, 0x8e, 0xdb, 0xe3, 0x76, 0xe0, - 0xf6, 0x78, 0x10, 0x5f, 0x39, 0x7c, 0xf8, 0x50, 0xb2, 0x47, 0x82, 0x77, 0xdc, 0x40, 0x3a, 0x82, - 0xf1, 0xfe, 0xf7, 0xb6, 0xe7, 0x07, 0xf1, 0x95, 0xe3, 0x76, 0xff, 0x9d, 0x22, 0x15, 0x17, 0xf6, - 0xd0, 0x0b, 0xa4, 0xe3, 0x7b, 0x23, 0xc9, 0x82, 0xf0, 0x9b, 0x33, 0x12, 0x3f, 0x84, 0xf7, 0x53, - 0xd8, 0xae, 0x94, 0x3e, 0x6f, 0x4f, 0x7f, 0x90, 0x78, 0x29, 0x3c, 0x4d, 0x13, 0x67, 0x68, 0x52, - 0xb6, 0x84, 0xca, 0x99, 0xfa, 0x7f, 0xb1, 0x27, 0x8a, 0x4d, 0x71, 0xad, 0x0b, 0x1e, 0xc8, 0xaa, - 0x94, 0xc4, 0x0e, 0xfc, 0xff, 0xca, 0xc5, 0xf9, 0x80, 0x4d, 0x18, 0x65, 0x60, 0x9d, 0xee, 0x89, - 0xd1, 0x60, 0x40, 0xe8, 0x40, 0xd6, 0xaf, 0xee, 0x23, 0x5d, 0xe3, 0xea, 0x7e, 0x97, 0xf9, 0xac, - 0xfb, 0xe9, 0x29, 0x32, 0x0d, 0x4e, 0x48, 0x1f, 0x2d, 0xb7, 0x1b, 0x25, 0x2d, 0x52, 0x67, 0x29, - 0xfb, 0xa3, 0x8e, 0x14, 0x51, 0xb6, 0x70, 0x19, 0x3e, 0xb9, 0x5a, 0xf4, 0xe0, 0x5a, 0x57, 0xd1, - 0xe3, 0x6a, 0x7d, 0xea, 0x0f, 0x5b, 0x0d, 0xde, 0x6e, 0x55, 0x7b, 0xfc, 0xda, 0xed, 0xf1, 0x56, - 0x6d, 0xf8, 0x50, 0xba, 0x0d, 0x1f, 0x51, 0xeb, 0x32, 0x7a, 0x30, 0xad, 0x6a, 0xf7, 0xdf, 0x06, - 0x6f, 0xd7, 0xc4, 0x95, 0x17, 0xc8, 0x56, 0x63, 0xf2, 0x38, 0x5a, 0xb7, 0xe1, 0xdf, 0x5e, 0x8d, - 0xff, 0xf4, 0x0f, 0x00, 0x62, 0xfd, 0x16, 0x68, 0x8e, 0x3e, 0xd4, 0xa2, 0xce, 0x36, 0x45, 0x1b, - 0xbd, 0x0e, 0xa6, 0x6f, 0x5a, 0xeb, 0xb9, 0xb3, 0x26, 0x47, 0x9a, 0x71, 0xe7, 0x50, 0xbb, 0xdd, - 0x9b, 0x4c, 0x5c, 0x9b, 0xeb, 0xda, 0x27, 0x4a, 0x83, 0x30, 0x93, 0x22, 0xc8, 0xa4, 0x08, 0x31, - 0x0d, 0x02, 0xac, 0xcb, 0x53, 0x88, 0x40, 0x8d, 0xb1, 0x10, 0xa3, 0x91, 0xab, 0x66, 0xcc, 0x4d, - 0xf5, 0x20, 0xa5, 0x7a, 0x9c, 0x52, 0x7b, 0x47, 0xc5, 0x7e, 0xae, 0xdb, 0xbf, 0x0d, 0xf4, 0x6b, - 0xb5, 0xf3, 0x5e, 0xdd, 0xec, 0x53, 0x73, 0x27, 0x45, 0xf3, 0x5b, 0xd7, 0xbc, 0x36, 0x69, 0x3e, - 0x2b, 0x84, 0xa6, 0xcc, 0xa0, 0x48, 0x8d, 0x33, 0x66, 0xef, 0x1a, 0x0a, 0xdc, 0xc2, 0x7a, 0x3d, - 0xfc, 0xbe, 0xba, 0xe5, 0xf7, 0x97, 0x46, 0xdd, 0xf3, 0xf7, 0x57, 0x14, 0x08, 0x66, 0xab, 0xe3, - 0x8a, 0x6e, 0xa7, 0xba, 0x68, 0x4d, 0x47, 0x11, 0x9a, 0xde, 0xa2, 0x32, 0x5d, 0x45, 0x62, 0xda, - 0x8b, 0xbe, 0xb4, 0x17, 0x71, 0x69, 0x2f, 0xca, 0xda, 0x2e, 0x8a, 0x72, 0xc6, 0xd5, 0x4a, 0x3e, - 0x56, 0xc4, 0x5f, 0x95, 0x3b, 0xce, 0x2c, 0x5c, 0x44, 0xf7, 0x57, 0x3c, 0x69, 0xd5, 0x02, 0x40, - 0x12, 0x08, 0xf2, 0x8a, 0x6f, 0xac, 0xb1, 0x2a, 0x99, 0x46, 0xb5, 0xb1, 0xee, 0x2a, 0x62, 0x32, - 0xd5, 0xc1, 0x64, 0xaa, 0x7e, 0xc9, 0x54, 0xf3, 0x6e, 0xb7, 0x96, 0xa3, 0x1a, 0x50, 0xe6, 0x81, - 0x45, 0x9f, 0xbf, 0xcd, 0xe1, 0x8b, 0x2e, 0x5f, 0xd3, 0x03, 0x33, 0xda, 0xf2, 0x0e, 0x4a, 0xb0, - 0x43, 0x0b, 0x7e, 0xa8, 0xc0, 0x10, 0x39, 0x38, 0x22, 0x07, 0x4b, 0xe4, 0xe0, 0x49, 0x0f, 0x4c, - 0x69, 0x82, 0x2b, 0xed, 0xb0, 0x15, 0x1b, 0x30, 0x5b, 0xff, 0xd7, 0xee, 0xa9, 0x2f, 0x0d, 0x51, - 0x74, 0x16, 0x24, 0x2c, 0x42, 0x9a, 0xe6, 0xed, 0x97, 0x64, 0xf6, 0x81, 0x52, 0xda, 0xef, 0x49, - 0x73, 0x5f, 0x27, 0xb5, 0xfd, 0x9b, 0x64, 0xf7, 0x69, 0x92, 0xdd, 0x8f, 0x49, 0x76, 0xdf, 0xe5, - 0x6e, 0x17, 0x7c, 0x92, 0xd9, 0x2f, 0x19, 0xc7, 0x9d, 0x01, 0x73, 0x7b, 0x3e, 0xeb, 0x51, 0x08, - 0x3a, 0xb3, 0xcc, 0xab, 0x4c, 0xc0, 0x96, 0xab, 0x68, 0xe1, 0xf7, 0xe3, 0xc7, 0x70, 0x2b, 0x97, - 0x33, 0x83, 0xf2, 0x5d, 0x2d, 0x2b, 0xd5, 0x98, 0x7f, 0x0d, 0x69, 0xc0, 0xf5, 0x0b, 0xab, 0x23, - 0x91, 0x7c, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, 0x81, 0xd4, - 0xbd, 0x93, 0xd4, 0x85, 0x61, 0x07, 0x9c, 0x4e, 0xf9, 0x50, 0x84, 0xfd, 0x11, 0xc8, 0x50, 0xba, - 0xd0, 0x1c, 0x1a, 0x8c, 0x2e, 0x07, 0x46, 0x07, 0x46, 0x07, 0x46, 0x07, 0x46, 0x07, 0x46, 0xa7, - 0x6b, 0x54, 0x74, 0xaf, 0x64, 0xc5, 0x86, 0x4c, 0x9b, 0xc2, 0x70, 0xd1, 0x65, 0x74, 0xba, 0x53, - 0xbe, 0x94, 0x81, 0xbf, 0xd8, 0x46, 0xa5, 0x93, 0x0e, 0xa9, 0x3e, 0xa8, 0xe4, 0xfa, 0x9e, 0x52, - 0xec, 0x73, 0x4a, 0xbb, 0xaf, 0x29, 0xd5, 0x3e, 0xa6, 0xe4, 0xfb, 0x96, 0x92, 0xef, 0x53, 0x4a, - 0xbe, 0x2f, 0x29, 0x7a, 0xa4, 0x91, 0x94, 0x58, 0x08, 0x4b, 0x2d, 0x14, 0x25, 0x97, 0x65, 0xd2, - 0xcb, 0x6f, 0xfe, 0x9b, 0x52, 0x8a, 0x80, 0xc9, 0x20, 0xbe, 0x8a, 0x84, 0x9a, 0x90, 0x66, 0xa0, - 0x67, 0x12, 0x15, 0xa7, 0xb4, 0x3a, 0xde, 0xfd, 0xfd, 0x48, 0x70, 0xf9, 0x44, 0x95, 0x9d, 0x2e, - 0x1a, 0x08, 0x8a, 0x0a, 0x8a, 0x0a, 0x8a, 0x0a, 0x8a, 0x0a, 0x8a, 0x0a, 0x8a, 0x0a, 0x8a, 0x0a, - 0x8a, 0xfa, 0x5e, 0x8a, 0x3a, 0xe3, 0x15, 0x9c, 0x05, 0xf1, 0xf5, 0x13, 0x58, 0x2a, 0x4d, 0x96, - 0xca, 0x1e, 0xa5, 0x4d, 0x9e, 0xa9, 0x2e, 0x33, 0x12, 0x6c, 0x15, 0x6c, 0x15, 0x6c, 0x15, 0x6c, - 0x15, 0x6c, 0x15, 0x6c, 0x15, 0x6c, 0x15, 0x6c, 0xf5, 0xbd, 0x6c, 0xf5, 0x35, 0xb7, 0x98, 0x30, - 0xd6, 0x39, 0xae, 0x01, 0xd6, 0x4a, 0x93, 0xb5, 0x72, 0xf1, 0xe0, 0x0e, 0x78, 0xd7, 0xf6, 0x99, - 0x1b, 0x10, 0x3a, 0x8f, 0x22, 0xf6, 0xd0, 0x05, 0xfb, 0xc0, 0x55, 0xc1, 0x55, 0xc1, 0x55, 0xc1, - 0x55, 0xc1, 0x55, 0xc1, 0x55, 0x77, 0x8c, 0xab, 0xf2, 0x2e, 0x13, 0x92, 0xcb, 0x27, 0xa2, 0x7c, - 0xb5, 0x48, 0xc8, 0xa6, 0x5a, 0xf4, 0xa8, 0x3e, 0xb9, 0x01, 0xc1, 0x90, 0x3a, 0x1b, 0xd0, 0xda, - 0xe5, 0xb7, 0xea, 0x45, 0xed, 0xac, 0xd5, 0xa8, 0xdf, 0xde, 0x9c, 0xb7, 0x1a, 0xe7, 0xd5, 0xeb, - 0xfa, 0x25, 0xb5, 0xe8, 0xfa, 0xcd, 0x1d, 0x8c, 0xa6, 0xdd, 0x1f, 0xef, 0xc8, 0x1d, 0xea, 0x49, - 0xfc, 0x24, 0xff, 0xd9, 0xe8, 0xd6, 0x1b, 0xb5, 0x3f, 0x6b, 0x97, 0xd5, 0x9b, 0x7a, 0x83, 0xde, - 0x39, 0xd4, 0x04, 0x4f, 0x7a, 0x36, 0x64, 0x54, 0x3f, 0x5f, 0xdc, 0x5e, 0xdf, 0x9c, 0x37, 0x5a, - 0x17, 0xf5, 0xfa, 0x15, 0xc6, 0x75, 0x7b, 0xc6, 0xb5, 0x7a, 0x8d, 0x21, 0xdd, 0x36, 0x57, 0xad, - 0x5f, 0x7e, 0x39, 0x3f, 0xb3, 0x70, 0xa2, 0xf8, 0x6f, 0xbf, 0x9a, 0xc8, 0x47, 0x88, 0x59, 0x41, - 0x41, 0x1d, 0x1c, 0xb8, 0x81, 0xb4, 0xef, 0xbd, 0x2e, 0xef, 0x71, 0xd6, 0xa5, 0x27, 0x0e, 0xce, - 0x9b, 0x07, 0x6d, 0x70, 0x99, 0x39, 0xd0, 0x06, 0xd7, 0x98, 0x50, 0xd0, 0x06, 0xd7, 0x9a, 0xe9, - 0xd0, 0x06, 0x37, 0x34, 0x10, 0xda, 0xa0, 0x41, 0xdc, 0x97, 0xb0, 0x36, 0x28, 0xf9, 0x3d, 0x93, - 0xbc, 0xf3, 0x23, 0x28, 0x15, 0x08, 0x6a, 0x83, 0x27, 0x84, 0x4c, 0xba, 0x15, 0x7c, 0x7a, 0x3c, - 0xac, 0x25, 0x5c, 0xe1, 0x05, 0xac, 0xe3, 0x89, 0x6e, 0x40, 0xe9, 0x91, 0x35, 0x5c, 0xd1, 0x67, - 0xe4, 0xf4, 0x36, 0x7a, 0xa9, 0x9e, 0xf5, 0x95, 0x0b, 0x72, 0x88, 0x48, 0x94, 0x03, 0x26, 0xcc, - 0x9b, 0xaa, 0xba, 0x84, 0xed, 0xfb, 0xe2, 0xbb, 0x1d, 0xc9, 0x3d, 0x71, 0xc6, 0xfb, 0xa1, 0xb7, - 0x1e, 0x41, 0x8f, 0x79, 0x8b, 0x4b, 0xb8, 0x8f, 0x70, 0x89, 0x0d, 0x5d, 0x22, 0x77, 0x52, 0x28, - 0x94, 0xca, 0x85, 0xc2, 0x51, 0xf9, 0xb8, 0x7c, 0x54, 0x29, 0x16, 0x73, 0x25, 0x4a, 0x2b, 0x5b, - 0xc6, 0x79, 0xc9, 0x07, 0x58, 0xb3, 0xec, 0xab, 0x09, 0x8d, 0x8b, 0x4a, 0x14, 0x25, 0x73, 0x90, - 0x43, 0x82, 0xd4, 0xd3, 0x38, 0xd0, 0x81, 0x68, 0x00, 0x87, 0xae, 0xb5, 0xce, 0x54, 0x82, 0xae, - 0xb5, 0xd6, 0x4c, 0x87, 0xae, 0xb5, 0xa1, 0x81, 0xd0, 0xb5, 0x0c, 0xca, 0x21, 0x08, 0xeb, 0x5a, - 0x23, 0x2e, 0xe4, 0x71, 0x9e, 0xa0, 0xa4, 0x55, 0x86, 0x64, 0xf4, 0x1f, 0x5f, 0x90, 0x8c, 0xb6, - 0x32, 0x3f, 0x86, 0x64, 0x64, 0x7a, 0xb8, 0x9f, 0x77, 0x09, 0x48, 0x46, 0x1b, 0xbb, 0x44, 0x21, - 0x5f, 0x29, 0x54, 0x4a, 0xe5, 0x7c, 0x05, 0x42, 0xd1, 0x16, 0x48, 0x33, 0x7b, 0x10, 0x8a, 0x08, - 0x3e, 0x0f, 0x12, 0x42, 0x11, 0xad, 0x04, 0x9f, 0xd6, 0x11, 0x51, 0x44, 0x83, 0x36, 0x64, 0xa2, - 0x75, 0x66, 0x12, 0x64, 0xa2, 0xb5, 0x66, 0x3a, 0x64, 0xa2, 0x0d, 0x0d, 0x84, 0x4c, 0x64, 0x50, - 0xde, 0x40, 0x79, 0x6b, 0xe4, 0xf0, 0xa1, 0x64, 0x93, 0xf3, 0xc1, 0x78, 0x6b, 0xe4, 0x09, 0xad, - 0x56, 0x1e, 0x92, 0xf9, 0x82, 0x9c, 0x5c, 0x64, 0xfd, 0xb3, 0xbf, 0x7f, 0x77, 0x64, 0x57, 0x5c, - 0xbb, 0x57, 0xb5, 0xbf, 0x34, 0x7f, 0xe5, 0x0e, 0x0b, 0xe3, 0xd3, 0x83, 0x5f, 0xe5, 0xf1, 0xe2, - 0x8b, 0xcf, 0xcb, 0xde, 0x96, 0x3b, 0x2c, 0x8f, 0x4f, 0x57, 0xfc, 0xa4, 0x34, 0x3e, 0x7d, 0xe3, - 0xef, 0x28, 0x8e, 0xf7, 0x13, 0x6f, 0x9d, 0xbc, 0x9e, 0x5f, 0xf5, 0x81, 0xc2, 0x8a, 0x0f, 0x1c, - 0xaf, 0xfa, 0xc0, 0xf1, 0x8a, 0x0f, 0xac, 0x34, 0x29, 0xbf, 0xe2, 0x03, 0xc5, 0xf1, 0x73, 0xe2, - 0xfd, 0xfb, 0xcb, 0xdf, 0x5a, 0x1a, 0x1f, 0x3c, 0xaf, 0xfa, 0x59, 0x79, 0xfc, 0x7c, 0x7a, 0x70, - 0xe0, 0xec, 0xe7, 0xf2, 0x77, 0x47, 0xf6, 0x49, 0xf3, 0x39, 0x77, 0x77, 0x64, 0xe7, 0x9a, 0x93, - 0x77, 0x36, 0x9f, 0xef, 0x72, 0x76, 0x65, 0x76, 0x39, 0xf9, 0xff, 0xc1, 0x1f, 0x16, 0xd2, 0x22, - 0xa4, 0x45, 0x09, 0xc7, 0x8d, 0xfa, 0xb3, 0x78, 0x23, 0xc9, 0xe8, 0xe5, 0x46, 0xaf, 0x8d, 0x43, - 0x82, 0x84, 0x04, 0x09, 0x09, 0x12, 0x12, 0x24, 0x24, 0x48, 0x48, 0x90, 0x76, 0x2c, 0x41, 0x6a, - 0x7b, 0xde, 0x80, 0xb9, 0x82, 0x62, 0x72, 0x94, 0x03, 0x95, 0x23, 0x60, 0x81, 0xee, 0x43, 0x10, - 0xab, 0x42, 0x78, 0xd2, 0x95, 0x9c, 0x48, 0x0b, 0x42, 0x2b, 0xe8, 0x7c, 0x67, 0xf7, 0xee, 0x30, - 0xea, 0x7b, 0xe9, 0x78, 0x43, 0x26, 0x3a, 0x53, 0xa2, 0x64, 0x0b, 0x26, 0x7f, 0x7a, 0xfe, 0x0f, - 0x9b, 0x8b, 0x40, 0xba, 0xa2, 0xc3, 0x9c, 0xc5, 0x17, 0x82, 0xc4, 0x2b, 0xce, 0xd0, 0xf7, 0xa4, - 0xd7, 0xf1, 0x06, 0x41, 0x7c, 0xe5, 0xb4, 0xfb, 0x43, 0xc7, 0xe7, 0x6d, 0xc7, 0xed, 0x71, 0x3b, - 0x70, 0x7b, 0x3c, 0x88, 0xaf, 0x9c, 0xa9, 0x9a, 0x31, 0x12, 0xbc, 0xe3, 0x06, 0xd2, 0x11, 0x8c, - 0xf7, 0xbf, 0xb7, 0x3d, 0x3f, 0x88, 0xaf, 0x1c, 0xb7, 0xfb, 0xef, 0x14, 0x09, 0xb8, 0xb0, 0x87, - 0x3e, 0x73, 0xa6, 0xe4, 0x36, 0x08, 0xbf, 0x85, 0x5d, 0x36, 0x71, 0xc6, 0xb4, 0xfa, 0x09, 0x33, - 0x12, 0x3f, 0x84, 0xf7, 0x53, 0xd8, 0xae, 0x94, 0x3e, 0x6f, 0x4f, 0x46, 0x84, 0xce, 0x81, 0xd3, - 0x4b, 0x6c, 0xc3, 0xe9, 0xd3, 0x38, 0x7d, 0xda, 0xa4, 0x5c, 0x07, 0xa7, 0x4f, 0x9b, 0x9e, 0xd3, - 0xe0, 0xf4, 0x69, 0x92, 0xc4, 0x8b, 0xcc, 0xe9, 0xd3, 0x09, 0x90, 0xa2, 0x27, 0x26, 0x26, 0x4d, - 0xa4, 0x25, 0x29, 0xe6, 0x20, 0x29, 0x92, 0x87, 0x57, 0xda, 0x30, 0x4b, 0x15, 0x6e, 0xc9, 0xc3, - 0x2e, 0x79, 0xf8, 0x25, 0x0f, 0xc3, 0x74, 0x94, 0x98, 0x3d, 0x42, 0x92, 0x22, 0x15, 0x78, 0x8e, - 0x0d, 0x9a, 0x9e, 0x95, 0x2c, 0xa9, 0x09, 0x9d, 0x73, 0x11, 0xf5, 0xc5, 0x44, 0x62, 0xae, 0x47, - 0xb3, 0x9e, 0x9d, 0x1c, 0x5c, 0x53, 0x86, 0x6d, 0x33, 0xe0, 0x9b, 0x3a, 0x8c, 0x1b, 0x03, 0xe7, - 0xc6, 0xc0, 0xba, 0x31, 0xf0, 0x4e, 0x0b, 0xe6, 0x89, 0xc1, 0x7d, 0x3c, 0x8a, 0x37, 0x14, 0x01, - 0x76, 0x8f, 0xf6, 0xc9, 0x69, 0x89, 0x6c, 0xb8, 0x4c, 0xd0, 0xb6, 0x57, 0x27, 0xa9, 0x85, 0x07, - 0xa2, 0xbd, 0x90, 0x15, 0xec, 0x80, 0xa2, 0xee, 0x9a, 0x56, 0xb8, 0xba, 0x46, 0x96, 0xf8, 0x86, - 0xe6, 0xd1, 0x24, 0xbd, 0x39, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x20, - 0xeb, 0xf2, 0x51, 0xa4, 0xa6, 0x75, 0xc5, 0x86, 0x4d, 0x39, 0xda, 0x80, 0x11, 0x6e, 0x1e, 0x32, - 0x27, 0x7d, 0x4d, 0x2c, 0x3d, 0x44, 0x47, 0x87, 0x2d, 0x22, 0x05, 0x26, 0x90, 0x03, 0xb3, 0x48, - 0x82, 0x29, 0x64, 0xc1, 0x38, 0xd2, 0x60, 0x1c, 0x79, 0x30, 0x8e, 0x44, 0xd0, 0x24, 0x13, 0x44, - 0x49, 0x45, 0x3c, 0xba, 0x64, 0x15, 0xb5, 0x44, 0xdc, 0x1c, 0x71, 0x21, 0x73, 0x25, 0xca, 0x31, - 0x33, 0x42, 0xf1, 0x12, 0x61, 0x13, 0x69, 0xf6, 0xc4, 0x5b, 0xfc, 0xa2, 0x8d, 0x39, 0x7b, 0xd4, - 0x7b, 0xe6, 0x19, 0x46, 0x2f, 0x13, 0xe6, 0x12, 0xef, 0xa9, 0x97, 0xb0, 0xd7, 0x80, 0x3e, 0x62, - 0x86, 0xc0, 0xd1, 0xbc, 0x8b, 0xb9, 0x8f, 0x70, 0xb1, 0x8c, 0x5d, 0xac, 0x54, 0x2c, 0x1e, 0x17, - 0xe1, 0x66, 0xbb, 0xc5, 0x45, 0xe9, 0x5b, 0xd7, 0xfc, 0x80, 0xe7, 0x65, 0x68, 0x18, 0x27, 0x5c, - 0x09, 0x97, 0x48, 0x29, 0xa8, 0x56, 0xc4, 0x19, 0x82, 0x2a, 0xd0, 0x05, 0xd3, 0x9c, 0x8c, 0xd0, - 0x05, 0x53, 0xf5, 0x1c, 0xe8, 0x82, 0x19, 0x1b, 0x0c, 0x5d, 0x70, 0x8b, 0x13, 0x31, 0xc3, 0x74, - 0xc1, 0x13, 0x03, 0x64, 0xc1, 0x22, 0x64, 0xc1, 0x0d, 0xbf, 0x20, 0x0b, 0x42, 0xb3, 0x80, 0x2c, - 0xb8, 0x83, 0x68, 0x34, 0xef, 0x62, 0x90, 0x05, 0x33, 0x77, 0xb1, 0x7c, 0x11, 0xa2, 0xe0, 0x8e, - 0x11, 0x51, 0xfa, 0xd6, 0x41, 0x14, 0x34, 0x36, 0x88, 0x87, 0x4a, 0xdb, 0x43, 0x14, 0x5d, 0x4c, - 0x50, 0x05, 0x43, 0x5b, 0x21, 0x0b, 0xbe, 0xc7, 0x3c, 0xc8, 0x82, 0x29, 0xce, 0x46, 0xc8, 0x82, - 0xa9, 0x7a, 0x0e, 0x64, 0xc1, 0x8c, 0x0d, 0x86, 0x2c, 0xb8, 0xc5, 0x89, 0x98, 0x41, 0xb2, 0x60, - 0x9b, 0x0b, 0xd7, 0x7f, 0x32, 0x40, 0x17, 0xac, 0x10, 0x36, 0xf1, 0x82, 0x89, 0xfe, 0x74, 0x63, - 0x2e, 0x84, 0xc1, 0x4d, 0x55, 0x0b, 0x08, 0x83, 0x99, 0xab, 0x16, 0x39, 0x68, 0x16, 0x3b, 0x86, - 0x47, 0xf3, 0x2e, 0x06, 0x61, 0x30, 0x73, 0x17, 0x43, 0xbd, 0xe0, 0x0e, 0x92, 0x51, 0xfa, 0xd6, - 0x41, 0x1a, 0x34, 0x36, 0x8c, 0x5b, 0xec, 0x51, 0x32, 0xd1, 0x65, 0x5d, 0xfa, 0xc2, 0x60, 0x6c, - 0x29, 0x64, 0xc1, 0xf7, 0x98, 0x07, 0x59, 0x30, 0xc5, 0xb9, 0x08, 0x59, 0x30, 0x55, 0xcf, 0x81, - 0x2c, 0x98, 0xb1, 0xc1, 0x90, 0x05, 0xb7, 0x38, 0x0d, 0x33, 0x49, 0x16, 0x24, 0x77, 0xe2, 0xd7, - 0x2a, 0x18, 0x27, 0x72, 0x02, 0x18, 0x48, 0xed, 0x7b, 0xc6, 0xd0, 0x1b, 0x4e, 0x32, 0x4f, 0x77, - 0x40, 0x9f, 0xd4, 0xc6, 0x96, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, - 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0xc2, 0x29, 0xe6, 0xc7, 0x70, 0xe8, 0xfa, 0x92, 0x9b, - 0xc0, 0x69, 0x67, 0x86, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, - 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0xc2, 0x29, 0xe6, 0xc7, 0x50, 0xfa, 0xae, 0x08, 0xb8, 0xe4, - 0x0f, 0x06, 0xec, 0x4b, 0x7a, 0x65, 0x2b, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, - 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x2c, 0x22, 0xea, 0xa2, 0x56, 0x55, 0x08, - 0x4f, 0xba, 0x92, 0x7b, 0x34, 0x37, 0x40, 0x59, 0x41, 0xe7, 0x3b, 0xbb, 0x77, 0x87, 0xd1, 0x01, - 0x94, 0x8e, 0x37, 0x64, 0xa2, 0x33, 0x25, 0x8a, 0xb6, 0x60, 0xf2, 0xa7, 0xe7, 0xff, 0xb0, 0xb9, - 0x08, 0xa4, 0x2b, 0x3a, 0xcc, 0x59, 0x7c, 0x21, 0x48, 0xbc, 0xe2, 0x0c, 0x7d, 0x4f, 0x7a, 0x1d, - 0x6f, 0x10, 0xc4, 0x57, 0x4e, 0xbb, 0x3f, 0x74, 0x7c, 0xde, 0x76, 0xdc, 0x1e, 0xb7, 0x03, 0xb7, - 0xc7, 0x83, 0xf8, 0xca, 0xe1, 0xc3, 0x87, 0x92, 0x3d, 0x12, 0xbc, 0xe3, 0x06, 0xd2, 0x11, 0x8c, - 0xf7, 0xbf, 0xb7, 0x3d, 0x3f, 0x88, 0xaf, 0x1c, 0xb7, 0xfb, 0xef, 0x14, 0xa9, 0xb8, 0xb0, 0x87, - 0x3e, 0x73, 0x7c, 0x6f, 0x24, 0x59, 0x10, 0x7e, 0x73, 0x46, 0xe2, 0x87, 0xf0, 0x7e, 0x0a, 0xdb, - 0x95, 0xd2, 0xe7, 0xed, 0xe9, 0x0f, 0x12, 0x2f, 0x85, 0x87, 0x69, 0xe2, 0x08, 0x4d, 0xca, 0x96, - 0x50, 0x39, 0x52, 0xff, 0x2f, 0xf6, 0x44, 0xb1, 0x27, 0xae, 0x75, 0xc1, 0x03, 0x59, 0x95, 0x92, - 0xd8, 0x79, 0xff, 0x5f, 0xb9, 0x38, 0x1f, 0xb0, 0x09, 0xa1, 0x0c, 0xac, 0xd3, 0x3d, 0x31, 0x1a, - 0x0c, 0x08, 0x9d, 0xc7, 0xfa, 0xd5, 0x7d, 0xa4, 0x6b, 0x5c, 0xdd, 0xef, 0x32, 0x9f, 0x75, 0x3f, - 0x3d, 0x45, 0xa6, 0xc1, 0x09, 0xe9, 0x83, 0xe5, 0x56, 0x83, 0xa4, 0x45, 0xea, 0x24, 0x65, 0x7f, - 0xd4, 0x91, 0x22, 0xca, 0x15, 0x2e, 0xc3, 0x07, 0x57, 0x8b, 0x9e, 0x5b, 0xeb, 0x2a, 0x7a, 0x5a, - 0xad, 0x4f, 0xfd, 0x61, 0xab, 0xc1, 0xdb, 0xad, 0x6a, 0x8f, 0x5f, 0xbb, 0x3d, 0xde, 0xaa, 0x0d, - 0x1f, 0x4a, 0xb7, 0xe1, 0x13, 0x6a, 0x5d, 0x46, 0xcf, 0xa5, 0x55, 0xed, 0xfe, 0xdb, 0xe0, 0xed, - 0x9a, 0xb8, 0xf2, 0x59, 0xab, 0x31, 0x79, 0x1a, 0xad, 0xdb, 0xf0, 0x4f, 0xaf, 0xc6, 0x7f, 0xf9, - 0x07, 0xc0, 0xb0, 0x7e, 0x0b, 0x34, 0xc7, 0x1e, 0x6a, 0x31, 0x67, 0x8b, 0x62, 0x8d, 0x5e, 0xff, - 0xd2, 0x37, 0xab, 0xf5, 0xdc, 0x59, 0x93, 0x1f, 0xcd, 0x88, 0x73, 0xa8, 0xdb, 0xee, 0x4d, 0xe6, - 0xad, 0xcd, 0x75, 0xed, 0x11, 0xa5, 0xc1, 0x96, 0x49, 0xb1, 0x63, 0x52, 0x6c, 0x98, 0x06, 0xfb, - 0xd5, 0xe5, 0x29, 0x44, 0x90, 0xc6, 0x54, 0x84, 0xd1, 0x48, 0x54, 0xb3, 0x25, 0xa6, 0x7a, 0x70, - 0x52, 0x3d, 0x4a, 0xa9, 0xbd, 0xa3, 0x62, 0x2f, 0xd7, 0xed, 0xdd, 0xe6, 0x79, 0xb5, 0xda, 0x69, - 0xaf, 0x6e, 0xf2, 0xa9, 0xb9, 0x93, 0xa2, 0xe9, 0xad, 0x6b, 0x5a, 0x1b, 0x34, 0x9d, 0x15, 0xe2, - 0x52, 0x56, 0x38, 0xa4, 0xc6, 0x15, 0xb3, 0x77, 0x0c, 0x05, 0x4e, 0x61, 0xcd, 0x06, 0xdf, 0x1b, - 0x49, 0x7b, 0xe8, 0x05, 0x52, 0x99, 0x5b, 0xbc, 0x74, 0xe8, 0x5e, 0xb4, 0x40, 0x51, 0x28, 0x98, - 0x2d, 0x8c, 0x2b, 0xba, 0x9d, 0xea, 0x7a, 0x35, 0x1d, 0xf5, 0x67, 0x7a, 0xeb, 0xc9, 0x74, 0xd5, - 0x87, 0x69, 0xaf, 0xf7, 0xd2, 0x5e, 0xbf, 0xa5, 0xbd, 0x1e, 0x6b, 0xbb, 0x48, 0xca, 0x19, 0x57, - 0xab, 0xf8, 0x58, 0x11, 0x83, 0x55, 0xee, 0x38, 0xb3, 0x70, 0x11, 0xdd, 0x5f, 0xf1, 0xa4, 0x55, - 0x0b, 0x00, 0x49, 0x20, 0xc8, 0x2b, 0xbe, 0xb1, 0xc6, 0x82, 0x64, 0x1a, 0x85, 0xc6, 0xba, 0x0b, - 0x88, 0xc9, 0x14, 0x06, 0x93, 0x29, 0xf8, 0x25, 0x53, 0xc8, 0xbb, 0xdd, 0x62, 0x8e, 0x6a, 0x40, - 0x99, 0x07, 0x16, 0x7d, 0xfe, 0x36, 0x87, 0x2f, 0xba, 0x7c, 0x4d, 0x0f, 0xcc, 0x68, 0xcb, 0x3b, - 0x28, 0xc1, 0x0e, 0x2d, 0xf8, 0xa1, 0x02, 0x43, 0xe4, 0xe0, 0x88, 0x1c, 0x2c, 0x91, 0x83, 0x27, - 0x3d, 0x30, 0xa5, 0x09, 0xae, 0xb4, 0xc3, 0x56, 0x6c, 0xc0, 0x6c, 0xf9, 0x5f, 0xbb, 0xa7, 0xbe, - 0xf4, 0x42, 0xd1, 0x59, 0x8f, 0xb0, 0x08, 0x69, 0x9a, 0x77, 0x5e, 0x92, 0xd9, 0x02, 0x4a, 0x69, - 0xab, 0x27, 0xcd, 0x2d, 0x9d, 0xd4, 0xb6, 0x6e, 0x92, 0xdd, 0xa2, 0x49, 0x76, 0x2b, 0x26, 0xd9, - 0x2d, 0x97, 0xbb, 0x5d, 0xee, 0x49, 0x66, 0xab, 0x64, 0x1c, 0x77, 0x06, 0xcc, 0xed, 0xf9, 0xac, - 0x47, 0x21, 0xe8, 0xcc, 0x32, 0xaf, 0x32, 0x01, 0x5b, 0xae, 0xa2, 0xa5, 0xdf, 0x8f, 0x1f, 0xc3, - 0x6d, 0x5c, 0xce, 0x0c, 0xca, 0x77, 0xb5, 0xaa, 0x54, 0x63, 0xfe, 0x35, 0xa4, 0x01, 0xd7, 0x2f, - 0xac, 0x8e, 0x44, 0xf2, 0x05, 0x52, 0x07, 0x52, 0x07, 0x52, 0x07, 0x52, 0x07, 0x52, 0x07, 0x52, - 0x07, 0x52, 0xf7, 0x4e, 0x52, 0x17, 0x86, 0x1d, 0x70, 0x3a, 0xe5, 0x43, 0x11, 0xf6, 0x46, 0x20, - 0x43, 0xe9, 0x42, 0x73, 0x68, 0x30, 0xba, 0x1c, 0x18, 0x1d, 0x18, 0x1d, 0x18, 0x1d, 0x18, 0x1d, - 0x18, 0x9d, 0xae, 0x51, 0xd1, 0xbd, 0x92, 0x15, 0x1b, 0x32, 0x6d, 0x08, 0xc3, 0x45, 0x97, 0xd1, - 0x69, 0x4c, 0xf9, 0x52, 0x08, 0xfe, 0x62, 0x1b, 0x95, 0x2e, 0x3a, 0xa4, 0x5a, 0xa0, 0x92, 0x6b, - 0x79, 0x4a, 0xb1, 0xc5, 0x29, 0xed, 0x96, 0xa6, 0x54, 0x5b, 0x98, 0x92, 0x6f, 0x59, 0x4a, 0xbe, - 0x45, 0x29, 0xf9, 0x96, 0xa4, 0xe8, 0x8f, 0x46, 0x52, 0x62, 0x21, 0x2c, 0xb5, 0x50, 0x94, 0x5c, - 0x96, 0x49, 0x2f, 0xbf, 0xf9, 0x6f, 0x4a, 0x29, 0x02, 0x26, 0x83, 0xf8, 0x2a, 0x12, 0x6a, 0x42, - 0x9a, 0x81, 0x8e, 0x49, 0x54, 0x9c, 0xd2, 0xea, 0x78, 0xf7, 0xf7, 0x23, 0xc1, 0xe5, 0x13, 0x55, - 0x76, 0xba, 0x68, 0x20, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, - 0x28, 0x2a, 0x28, 0xea, 0x7b, 0x29, 0xea, 0x8c, 0x57, 0x70, 0x16, 0xc4, 0xd7, 0x4f, 0x60, 0xa9, - 0x34, 0x59, 0x2a, 0x7b, 0x94, 0x36, 0x79, 0xa6, 0xba, 0xcc, 0x48, 0xb0, 0x55, 0xb0, 0x55, 0xb0, - 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0xd5, 0xf7, 0xb2, 0xd5, 0xd7, 0xdc, - 0x62, 0xc2, 0x58, 0xe7, 0xb8, 0x06, 0x58, 0x2b, 0x4d, 0xd6, 0xca, 0xc5, 0x83, 0x3b, 0xe0, 0x5d, - 0xdb, 0x67, 0x6e, 0x40, 0xe8, 0x2c, 0x8a, 0xd8, 0x43, 0x17, 0xec, 0x03, 0x57, 0x05, 0x57, 0x05, - 0x57, 0x05, 0x57, 0x05, 0x57, 0x05, 0x57, 0xdd, 0x31, 0xae, 0xca, 0xbb, 0x4c, 0x48, 0x2e, 0x9f, - 0x88, 0xf2, 0xd5, 0x22, 0x21, 0x9b, 0x6a, 0xd1, 0xa3, 0xfa, 0xe4, 0x06, 0x04, 0x43, 0xea, 0x6c, - 0x40, 0x6b, 0x97, 0xdf, 0xaa, 0x17, 0xb5, 0xb3, 0x56, 0xa3, 0x7e, 0x7b, 0x73, 0xde, 0x6a, 0x9c, - 0x57, 0xaf, 0xeb, 0x97, 0xd4, 0xa2, 0xeb, 0x37, 0x77, 0x30, 0x9a, 0x76, 0x7f, 0xbc, 0x23, 0x77, - 0x9e, 0x27, 0xf1, 0x43, 0xfc, 0x67, 0xa3, 0x5b, 0x6f, 0xd4, 0xfe, 0xac, 0x5d, 0x56, 0x6f, 0xea, - 0x0d, 0x7a, 0x47, 0x50, 0x13, 0x3c, 0xe4, 0xd9, 0x90, 0x51, 0xfd, 0x7c, 0x71, 0x7b, 0x7d, 0x73, - 0xde, 0x68, 0x5d, 0xd4, 0xeb, 0x57, 0x18, 0xd7, 0xed, 0x19, 0xd7, 0xea, 0x35, 0x86, 0x74, 0xdb, - 0x5c, 0xb5, 0x7e, 0xf9, 0xe5, 0xfc, 0xcc, 0xc2, 0x61, 0xe2, 0xbf, 0xfd, 0x6a, 0x22, 0x1f, 0x21, - 0x66, 0x05, 0x05, 0x75, 0x70, 0xe0, 0x06, 0xd2, 0xbe, 0xf7, 0xba, 0xbc, 0xc7, 0x59, 0x97, 0x9e, - 0x38, 0x38, 0x6f, 0x1e, 0xb4, 0xc1, 0x65, 0xe6, 0x40, 0x1b, 0x5c, 0x63, 0x42, 0x41, 0x1b, 0x5c, - 0x6b, 0xa6, 0x43, 0x1b, 0xdc, 0xd0, 0x40, 0x68, 0x83, 0x06, 0x71, 0x5f, 0xc2, 0xda, 0xa0, 0xe4, - 0xf7, 0x4c, 0xf2, 0xce, 0x8f, 0xa0, 0x54, 0x20, 0xa8, 0x0d, 0x9e, 0x10, 0x32, 0xe9, 0x56, 0xf0, - 0xe9, 0xe9, 0xb0, 0x96, 0x70, 0x85, 0x17, 0xb0, 0x8e, 0x27, 0xba, 0x01, 0xa5, 0x47, 0xd6, 0x70, - 0x45, 0x9f, 0x91, 0xd3, 0xdb, 0xe8, 0xa5, 0x7a, 0xd6, 0x57, 0x2e, 0xc8, 0x21, 0x22, 0x51, 0x0e, - 0x98, 0x30, 0x6f, 0xaa, 0xea, 0x12, 0xb6, 0xef, 0x8b, 0xef, 0x76, 0x24, 0xf7, 0xc4, 0x19, 0xef, - 0x87, 0xde, 0x7a, 0x04, 0x3d, 0xe6, 0x2d, 0x2e, 0xe1, 0x3e, 0xc2, 0x25, 0x36, 0x74, 0x89, 0xdc, - 0x49, 0xa1, 0x50, 0x2a, 0x17, 0x0a, 0x47, 0xe5, 0xe3, 0xf2, 0x51, 0xa5, 0x58, 0xcc, 0x95, 0x28, - 0xad, 0x6c, 0x19, 0xe7, 0x25, 0x1f, 0x60, 0xcd, 0xb2, 0xaf, 0x26, 0x34, 0x2e, 0x2a, 0x51, 0x94, - 0xcc, 0x41, 0x0e, 0x09, 0x52, 0x4f, 0xe3, 0x40, 0x07, 0xa2, 0x01, 0x1c, 0xba, 0xd6, 0x3a, 0x53, - 0x09, 0xba, 0xd6, 0x5a, 0x33, 0x1d, 0xba, 0xd6, 0x86, 0x06, 0x42, 0xd7, 0x32, 0x28, 0x87, 0x20, - 0xac, 0x6b, 0x8d, 0xb8, 0x90, 0xc7, 0x79, 0x82, 0x92, 0x56, 0x19, 0x92, 0xd1, 0x7f, 0x7c, 0x41, - 0x32, 0xda, 0xca, 0xfc, 0x18, 0x92, 0x91, 0xe9, 0xe1, 0x7e, 0xde, 0x25, 0x20, 0x19, 0x6d, 0xec, - 0x12, 0x85, 0x7c, 0xa5, 0x50, 0x29, 0x95, 0xf3, 0x15, 0x08, 0x45, 0x5b, 0x20, 0xcd, 0xec, 0x41, - 0x28, 0x22, 0xf8, 0x3c, 0x48, 0x08, 0x45, 0xb4, 0x12, 0x7c, 0x5a, 0x47, 0x44, 0x11, 0x0d, 0xda, - 0x90, 0x89, 0xd6, 0x99, 0x49, 0x90, 0x89, 0xd6, 0x9a, 0xe9, 0x90, 0x89, 0x36, 0x34, 0x10, 0x32, - 0x91, 0x41, 0x79, 0x03, 0xe5, 0xad, 0x91, 0xc3, 0x87, 0x92, 0x4d, 0xce, 0x07, 0xe3, 0xad, 0x91, - 0x27, 0xb4, 0x5a, 0x79, 0x48, 0xe6, 0x0b, 0x72, 0x72, 0x91, 0xf5, 0xcf, 0xfe, 0xfe, 0xdd, 0x91, - 0x5d, 0x71, 0xed, 0x5e, 0xd5, 0xfe, 0xd2, 0xfc, 0x95, 0x3b, 0x2c, 0x8c, 0x4f, 0x0f, 0x7e, 0x95, - 0xc7, 0x8b, 0x2f, 0x3e, 0x2f, 0x7b, 0x5b, 0xee, 0xb0, 0x3c, 0x3e, 0x5d, 0xf1, 0x93, 0xd2, 0xf8, - 0xf4, 0x8d, 0xbf, 0xa3, 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, 0x0a, 0x2b, - 0x3e, 0x70, 0xbc, 0xea, 0x03, 0xc7, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, 0x14, 0xc7, - 0xcf, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xbc, 0xea, 0x67, 0xe5, 0xf1, 0xf3, - 0xe9, 0xc1, 0x81, 0xb3, 0x9f, 0xcb, 0xdf, 0x1d, 0xd9, 0x27, 0xcd, 0xe7, 0xdc, 0xdd, 0x91, 0x9d, - 0x6b, 0x4e, 0xde, 0xd9, 0x7c, 0xbe, 0xcb, 0xd9, 0x95, 0xd9, 0xe5, 0xe4, 0xff, 0x07, 0x7f, 0x58, - 0x48, 0x8b, 0x90, 0x16, 0x25, 0x1c, 0x37, 0xea, 0xcf, 0xe2, 0x8d, 0x24, 0xa3, 0x97, 0x1b, 0xbd, - 0x36, 0x0e, 0x09, 0x12, 0x12, 0x24, 0x24, 0x48, 0x48, 0x90, 0x90, 0x20, 0x21, 0x41, 0xda, 0xb1, - 0x04, 0xa9, 0xed, 0x79, 0x03, 0xe6, 0x0a, 0x8a, 0xc9, 0x51, 0x0e, 0x54, 0x8e, 0x80, 0x05, 0xba, - 0x0f, 0x41, 0xac, 0x0a, 0xe1, 0x49, 0x57, 0x72, 0x22, 0x2d, 0x08, 0xad, 0xa0, 0xf3, 0x9d, 0xdd, - 0xbb, 0xc3, 0xa8, 0xef, 0xa5, 0xe3, 0x0d, 0x99, 0xe8, 0x4c, 0x89, 0x92, 0x2d, 0x98, 0xfc, 0xe9, + 0x80, 0x11, 0xee, 0x1e, 0x32, 0x27, 0x7d, 0x4d, 0x2c, 0x7d, 0x8f, 0x96, 0x0e, 0x5b, 0x44, 0x0a, + 0x4c, 0x20, 0x07, 0x66, 0x91, 0x04, 0x53, 0xc8, 0x82, 0x71, 0xa4, 0xc1, 0x38, 0xf2, 0x60, 0x1c, + 0x89, 0xa0, 0x49, 0x26, 0x88, 0x92, 0x8a, 0x78, 0x74, 0xc9, 0x2a, 0x6a, 0x89, 0xb8, 0x39, 0xe2, + 0x42, 0xe6, 0x4a, 0x94, 0x63, 0x66, 0x84, 0xe2, 0x25, 0xc2, 0x26, 0xd2, 0x6c, 0x8a, 0xb7, 0xf8, + 0x45, 0x1b, 0x73, 0xf6, 0xa8, 0x37, 0xcd, 0x33, 0x8c, 0x5e, 0x26, 0xcc, 0x25, 0xde, 0x54, 0x2f, + 0x61, 0xaf, 0x01, 0x8d, 0xc4, 0x0c, 0x81, 0xa3, 0x79, 0x17, 0x73, 0x1f, 0xe0, 0x62, 0x19, 0xbb, + 0x58, 0xa9, 0x58, 0x3c, 0x2a, 0xc2, 0xcd, 0x76, 0x8b, 0x8b, 0xd2, 0xb7, 0xae, 0xf9, 0x0e, 0xcf, + 0xcb, 0xd0, 0x30, 0x4e, 0xb8, 0x12, 0x2e, 0x91, 0x52, 0x50, 0xad, 0x88, 0x33, 0x04, 0x55, 0xa0, + 0x0b, 0xa6, 0x39, 0x19, 0xa1, 0x0b, 0xa6, 0xea, 0x39, 0xd0, 0x05, 0x33, 0x36, 0x18, 0xba, 0xe0, + 0x16, 0x27, 0x62, 0x86, 0xe9, 0x82, 0xc7, 0x06, 0xc8, 0x82, 0x45, 0xc8, 0x82, 0x1b, 0x7e, 0x41, + 0x16, 0x84, 0x66, 0x01, 0x59, 0x70, 0x07, 0xd1, 0x68, 0xde, 0xc5, 0x20, 0x0b, 0x66, 0xee, 0x62, + 0xf9, 0x22, 0x44, 0xc1, 0x1d, 0x23, 0xa2, 0xf4, 0xad, 0x83, 0x28, 0x68, 0x6c, 0x10, 0x0f, 0x95, + 0xb6, 0xfb, 0x28, 0xba, 0x98, 0xa0, 0x0a, 0x86, 0xb6, 0x42, 0x16, 0x7c, 0x8b, 0x79, 0x90, 0x05, + 0x53, 0x9c, 0x8d, 0x90, 0x05, 0x53, 0xf5, 0x1c, 0xc8, 0x82, 0x19, 0x1b, 0x0c, 0x59, 0x70, 0x8b, + 0x13, 0x31, 0x83, 0x64, 0xc1, 0x36, 0x17, 0xae, 0xff, 0x68, 0x80, 0x2e, 0x58, 0x21, 0x6c, 0xe2, + 0x39, 0x13, 0xfd, 0xe9, 0xc6, 0x5c, 0x08, 0x83, 0x9b, 0xaa, 0x16, 0x10, 0x06, 0x33, 0x57, 0x2d, + 0x72, 0xd0, 0x2c, 0x76, 0x0c, 0x8f, 0xe6, 0x5d, 0x0c, 0xc2, 0x60, 0xe6, 0x2e, 0x86, 0x7a, 0xc1, + 0x1d, 0x24, 0xa3, 0xf4, 0xad, 0x83, 0x34, 0x68, 0x6c, 0x18, 0xb7, 0xd8, 0x83, 0x64, 0xa2, 0xcb, + 0xba, 0xf4, 0x85, 0xc1, 0xd8, 0x52, 0xc8, 0x82, 0x6f, 0x31, 0x0f, 0xb2, 0x60, 0x8a, 0x73, 0x11, + 0xb2, 0x60, 0xaa, 0x9e, 0x03, 0x59, 0x30, 0x63, 0x83, 0x21, 0x0b, 0x6e, 0x71, 0x1a, 0x66, 0x92, + 0x2c, 0x48, 0xee, 0xc8, 0xaf, 0x55, 0x30, 0x4e, 0xe4, 0x08, 0x30, 0x90, 0xda, 0xb7, 0x8c, 0xa1, + 0x37, 0x9c, 0x64, 0x9e, 0xee, 0x80, 0x3e, 0xa9, 0x8d, 0x2d, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, + 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x85, 0x53, 0xcc, 0x8f, + 0xe1, 0xd0, 0xf5, 0x25, 0x37, 0x81, 0xd3, 0xce, 0x0c, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, + 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x85, 0x53, 0xcc, 0x8f, 0xa1, + 0xf4, 0x5d, 0x11, 0x70, 0xc9, 0xef, 0x0d, 0xd8, 0x97, 0xf4, 0xc2, 0x56, 0x10, 0x5b, 0x10, 0x5b, + 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x58, 0x44, + 0xd4, 0x45, 0xad, 0xaa, 0x10, 0x9e, 0x74, 0x25, 0xf7, 0x68, 0x6e, 0x80, 0xb2, 0x82, 0xce, 0x37, + 0x76, 0xe7, 0x0e, 0xa3, 0x03, 0x28, 0x1d, 0x6f, 0xc8, 0x44, 0x67, 0x4a, 0x14, 0x6d, 0xc1, 0xe4, + 0x4f, 0xcf, 0xff, 0x61, 0x73, 0x11, 0x48, 0x57, 0x74, 0x98, 0xb3, 0xf8, 0x42, 0x90, 0x78, 0xc5, + 0x19, 0xfa, 0x9e, 0xf4, 0x3a, 0xde, 0x20, 0x88, 0xaf, 0x9c, 0x76, 0x7f, 0xe8, 0xf8, 0xbc, 0xed, + 0xb8, 0x3d, 0x6e, 0x07, 0x6e, 0x8f, 0x07, 0xf1, 0x95, 0xc3, 0x87, 0xf7, 0x25, 0x7b, 0x24, 0x78, + 0xc7, 0x0d, 0xa4, 0x23, 0x18, 0xef, 0x7f, 0x6b, 0x7b, 0x7e, 0x10, 0x5f, 0x39, 0x6e, 0xf7, 0xfb, + 0x14, 0xa9, 0xb8, 0xb0, 0x87, 0x5e, 0x20, 0x1d, 0xdf, 0x1b, 0x49, 0x16, 0x84, 0xdf, 0x9c, 0x91, + 0xf8, 0x21, 0xbc, 0x9f, 0xc2, 0x76, 0xa5, 0xf4, 0x79, 0x7b, 0xfa, 0x83, 0xc4, 0x4b, 0xe1, 0x69, + 0x9a, 0x38, 0x43, 0x93, 0xb2, 0x25, 0x54, 0xce, 0xd4, 0xff, 0x87, 0x3d, 0x52, 0x6c, 0x8a, 0x6b, + 0x9d, 0xf3, 0x40, 0x56, 0xa5, 0x24, 0x76, 0xe0, 0xff, 0x17, 0x2e, 0xce, 0x06, 0x6c, 0xc2, 0x28, + 0x03, 0xeb, 0x64, 0x4f, 0x8c, 0x06, 0x03, 0x42, 0x07, 0xb2, 0x7e, 0x71, 0x1f, 0xe8, 0x1a, 0x57, + 0xf7, 0xbb, 0xcc, 0x67, 0xdd, 0x8f, 0x8f, 0x91, 0x69, 0x70, 0x42, 0xfa, 0x68, 0xb9, 0xdd, 0x28, + 0x69, 0x91, 0x3a, 0x4b, 0xd9, 0x1f, 0x75, 0xa4, 0x88, 0xb2, 0x85, 0x8b, 0xf0, 0xc9, 0xd5, 0xa2, + 0x07, 0xd7, 0xba, 0x8c, 0x1e, 0x57, 0xeb, 0x63, 0x7f, 0xd8, 0x6a, 0xf0, 0x76, 0xab, 0xda, 0xe3, + 0x57, 0x6e, 0x8f, 0xb7, 0x6a, 0xc3, 0xfb, 0xd2, 0x4d, 0xf8, 0x88, 0x5a, 0x17, 0xd1, 0x83, 0x69, + 0x55, 0xbb, 0xdf, 0x1b, 0xbc, 0x5d, 0x13, 0x97, 0x5e, 0x20, 0x5b, 0x8d, 0xc9, 0xe3, 0x68, 0xdd, + 0x84, 0x7f, 0x7b, 0x35, 0xfe, 0xd3, 0xdf, 0x01, 0x88, 0xf5, 0x5b, 0xa0, 0x39, 0xfa, 0x50, 0x8b, + 0x3a, 0xdb, 0x14, 0x6d, 0xf4, 0x3a, 0x98, 0xbe, 0x69, 0xad, 0xe7, 0xce, 0x9a, 0x1c, 0x69, 0xc6, + 0x9d, 0x43, 0xed, 0x76, 0x6f, 0x32, 0x71, 0x6d, 0xae, 0x6b, 0x9f, 0x28, 0x0d, 0xc2, 0x4c, 0x8a, + 0x20, 0x93, 0x22, 0xc4, 0x34, 0x08, 0xb0, 0x2e, 0x4f, 0x21, 0x02, 0x35, 0xc6, 0x42, 0x8c, 0x46, + 0xae, 0x9a, 0x31, 0x37, 0xd5, 0x83, 0x94, 0xea, 0x71, 0x4a, 0xed, 0x1d, 0x15, 0xfb, 0xb9, 0x6e, + 0xff, 0x36, 0xd0, 0xaf, 0xd5, 0xce, 0x7b, 0x75, 0xb3, 0x4f, 0xcd, 0x9d, 0x14, 0xcd, 0x6f, 0x5d, + 0xf3, 0xda, 0xa4, 0xf9, 0xac, 0x10, 0x9a, 0x32, 0x83, 0x22, 0x35, 0xce, 0x98, 0xbd, 0x6b, 0x28, + 0x70, 0x0b, 0xeb, 0xe5, 0xf0, 0xfb, 0xea, 0x96, 0xdf, 0x9f, 0x1b, 0x75, 0xcf, 0xdf, 0x5f, 0x51, + 0x20, 0x98, 0xad, 0x8e, 0x2b, 0xba, 0x9d, 0xea, 0xa2, 0x35, 0x1d, 0x45, 0x68, 0x7a, 0x8b, 0xca, + 0x74, 0x15, 0x89, 0x69, 0x2f, 0xfa, 0xd2, 0x5e, 0xc4, 0xa5, 0xbd, 0x28, 0x6b, 0xbb, 0x28, 0xca, + 0x29, 0x57, 0x2b, 0xf9, 0x58, 0x11, 0x7f, 0x55, 0xee, 0x38, 0xb3, 0x70, 0x11, 0xdd, 0x5f, 0xf1, + 0xa4, 0x55, 0x0b, 0x00, 0x49, 0x20, 0xc8, 0x2b, 0xbe, 0xb1, 0xc6, 0xaa, 0x64, 0x1a, 0xd5, 0xc6, + 0xba, 0xab, 0x88, 0xc9, 0x54, 0x07, 0x93, 0xa9, 0xfa, 0x25, 0x53, 0xcd, 0xbb, 0xdd, 0x5a, 0x8e, + 0x6a, 0x40, 0x99, 0x07, 0x16, 0x7d, 0xfe, 0x36, 0x87, 0x2f, 0xba, 0x7c, 0x4d, 0x0f, 0xcc, 0x68, + 0xcb, 0x3b, 0x28, 0xc1, 0x0e, 0x2d, 0xf8, 0xa1, 0x02, 0x43, 0xe4, 0xe0, 0x88, 0x1c, 0x2c, 0x91, + 0x83, 0x27, 0x3d, 0x30, 0xa5, 0x09, 0xae, 0xb4, 0xc3, 0x56, 0x6c, 0xc0, 0x6c, 0xfd, 0x5f, 0xbb, + 0xa7, 0x3e, 0x37, 0x44, 0xd1, 0x59, 0x90, 0xb0, 0x08, 0x69, 0x9a, 0xb7, 0x5f, 0x92, 0xd9, 0x07, + 0x4a, 0x69, 0xbf, 0x27, 0xcd, 0x7d, 0x9d, 0xd4, 0xf6, 0x6f, 0x92, 0xdd, 0xa7, 0x49, 0x76, 0x3f, + 0x26, 0xd9, 0x7d, 0x97, 0xbb, 0x5d, 0xf0, 0x49, 0x66, 0xbf, 0x64, 0x1c, 0x77, 0x06, 0xcc, 0xed, + 0xf9, 0xac, 0x47, 0x21, 0xe8, 0xcc, 0x32, 0xaf, 0x32, 0x01, 0x5b, 0x2e, 0xa3, 0x85, 0xdf, 0x0f, + 0x1f, 0xc2, 0xad, 0x5c, 0xce, 0x0c, 0xca, 0x77, 0xb5, 0xac, 0x54, 0x63, 0xfe, 0x35, 0xa4, 0x01, + 0xd7, 0xcf, 0xac, 0x8e, 0x44, 0xf2, 0x05, 0x52, 0x07, 0x52, 0x07, 0x52, 0x07, 0x52, 0x07, 0x52, + 0x07, 0x52, 0x07, 0x52, 0xf7, 0x46, 0x52, 0x17, 0x86, 0x1d, 0x70, 0x3a, 0xe5, 0x43, 0x11, 0xf6, + 0x47, 0x20, 0x43, 0xe9, 0x42, 0x73, 0x68, 0x30, 0xba, 0x1c, 0x18, 0x1d, 0x18, 0x1d, 0x18, 0x1d, + 0x18, 0x1d, 0x18, 0x9d, 0xae, 0x51, 0xd1, 0xbd, 0x92, 0x15, 0x1b, 0x32, 0x6d, 0x0a, 0xc3, 0x45, + 0x97, 0xd1, 0xe9, 0x4e, 0xf9, 0x5c, 0x06, 0xfe, 0x6c, 0x1b, 0x95, 0x4e, 0x3a, 0xa4, 0xfa, 0xa0, + 0x92, 0xeb, 0x7b, 0x4a, 0xb1, 0xcf, 0x29, 0xed, 0xbe, 0xa6, 0x54, 0xfb, 0x98, 0x92, 0xef, 0x5b, + 0x4a, 0xbe, 0x4f, 0x29, 0xf9, 0xbe, 0xa4, 0xe8, 0x91, 0x46, 0x52, 0x62, 0x21, 0x2c, 0xb5, 0x50, + 0x94, 0x5c, 0x96, 0x49, 0x2f, 0xbf, 0xf9, 0x6f, 0x4a, 0x29, 0x02, 0x26, 0x83, 0xf8, 0x2a, 0x12, + 0x6a, 0x42, 0x9a, 0x81, 0x9e, 0x49, 0x54, 0x9c, 0xd2, 0xea, 0x78, 0x77, 0x77, 0x23, 0xc1, 0xe5, + 0x23, 0x55, 0x76, 0xba, 0x68, 0x20, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, 0x28, 0x2a, + 0x28, 0x2a, 0x28, 0x2a, 0x28, 0xea, 0x5b, 0x29, 0xea, 0x8c, 0x57, 0x70, 0x16, 0xc4, 0xd7, 0x8f, + 0x60, 0xa9, 0x34, 0x59, 0x2a, 0x7b, 0x90, 0x36, 0x79, 0xa6, 0xba, 0xcc, 0x48, 0xb0, 0x55, 0xb0, + 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0x55, 0xb0, 0xd5, 0xb7, 0xb2, 0xd5, + 0x97, 0xdc, 0x62, 0xc2, 0x58, 0xe7, 0xb8, 0x06, 0x58, 0x2b, 0x4d, 0xd6, 0xca, 0xc5, 0xbd, 0x3b, + 0xe0, 0x5d, 0xdb, 0x67, 0x6e, 0x40, 0xe8, 0x3c, 0x8a, 0xd8, 0x43, 0x17, 0xec, 0x03, 0x57, 0x05, + 0x57, 0x05, 0x57, 0x05, 0x57, 0x05, 0x57, 0x05, 0x57, 0xdd, 0x31, 0xae, 0xca, 0xbb, 0x4c, 0x48, + 0x2e, 0x1f, 0x89, 0xf2, 0xd5, 0x22, 0x21, 0x9b, 0x6a, 0xd1, 0xa3, 0xfa, 0xe8, 0x06, 0x04, 0x43, + 0xea, 0x6c, 0x40, 0x6b, 0x17, 0x5f, 0xab, 0xe7, 0xb5, 0xd3, 0x56, 0xa3, 0x7e, 0x73, 0x7d, 0xd6, + 0x6a, 0x9c, 0x55, 0xaf, 0xea, 0x17, 0xd4, 0xa2, 0xeb, 0x57, 0x77, 0x30, 0x9a, 0x76, 0x7f, 0xbc, + 0x25, 0x77, 0xa8, 0x27, 0xf1, 0x93, 0xfc, 0x67, 0xa3, 0x5b, 0xbd, 0x6a, 0x9d, 0xd7, 0xeb, 0x97, + 0xf4, 0x0e, 0xa1, 0x26, 0x78, 0xcc, 0xb3, 0x21, 0x43, 0xfa, 0xa9, 0x7e, 0xf1, 0xf9, 0xec, 0x14, + 0x23, 0xba, 0x3d, 0x23, 0x5a, 0x6f, 0xd4, 0xfe, 0xae, 0x5d, 0x54, 0xaf, 0xeb, 0x0d, 0x8c, 0xea, + 0x16, 0xf9, 0xe9, 0xf9, 0xcd, 0xd5, 0xf5, 0x59, 0x83, 0x6a, 0xfc, 0x25, 0x65, 0x51, 0x13, 0xf9, + 0x08, 0x31, 0x2b, 0x28, 0xa8, 0x83, 0x03, 0x37, 0x90, 0xf6, 0x9d, 0xd7, 0xe5, 0x3d, 0xce, 0xba, + 0xf4, 0xc4, 0xc1, 0x79, 0xf3, 0xa0, 0x0d, 0x2e, 0x33, 0x07, 0xda, 0xe0, 0x1a, 0x13, 0x0a, 0xda, + 0xe0, 0x5a, 0x33, 0x1d, 0xda, 0xe0, 0x86, 0x06, 0x42, 0x1b, 0x34, 0x88, 0x01, 0x13, 0xd6, 0x06, + 0x25, 0xbf, 0x63, 0x92, 0x77, 0x7e, 0x04, 0xa5, 0x02, 0x41, 0x6d, 0xf0, 0x98, 0x90, 0x49, 0x37, + 0x82, 0x4f, 0x8f, 0x87, 0xb5, 0x84, 0x2b, 0xbc, 0x80, 0x75, 0x3c, 0xd1, 0x0d, 0x28, 0x3d, 0xb2, + 0x86, 0x2b, 0xfa, 0x8c, 0x9c, 0xde, 0x46, 0x2f, 0xe1, 0xb3, 0xbe, 0x70, 0x41, 0x0e, 0x11, 0x89, + 0x72, 0xc0, 0x84, 0x79, 0x53, 0x55, 0x97, 0xb0, 0x7d, 0x9f, 0x7d, 0xb7, 0x23, 0xb9, 0x27, 0x4e, + 0x79, 0x3f, 0xf4, 0xd6, 0x43, 0xa8, 0x32, 0xaf, 0x71, 0x09, 0xf7, 0x01, 0x2e, 0xb1, 0xa1, 0x4b, + 0xe4, 0x8e, 0x0b, 0x85, 0x52, 0xb9, 0x50, 0x38, 0x2c, 0x1f, 0x95, 0x0f, 0x2b, 0xc5, 0x62, 0xae, + 0x44, 0x69, 0x65, 0xcb, 0x38, 0x2f, 0x79, 0x07, 0x6b, 0x96, 0x7d, 0x35, 0xa1, 0x71, 0x51, 0x89, + 0xa2, 0x64, 0x0e, 0x72, 0x48, 0x90, 0x7a, 0x1a, 0x07, 0x3a, 0x10, 0x0d, 0xe0, 0xd0, 0xb5, 0xd6, + 0x99, 0x4a, 0xd0, 0xb5, 0xd6, 0x9a, 0xe9, 0xd0, 0xb5, 0x36, 0x34, 0x10, 0xba, 0x96, 0x41, 0x39, + 0x04, 0x61, 0x5d, 0x6b, 0xc4, 0x85, 0x3c, 0xca, 0x13, 0x94, 0xb4, 0xca, 0x90, 0x8c, 0xfe, 0xf0, + 0x05, 0xc9, 0x68, 0x2b, 0xf3, 0x63, 0x48, 0x46, 0xa6, 0x87, 0xfb, 0x79, 0x97, 0x80, 0x64, 0xb4, + 0xb1, 0x4b, 0x14, 0xf2, 0x95, 0x42, 0xa5, 0x54, 0xce, 0x57, 0x20, 0x14, 0x6d, 0x81, 0x34, 0xb3, + 0x07, 0xa1, 0x88, 0xe0, 0xf3, 0x20, 0x21, 0x14, 0xd1, 0x4a, 0xf0, 0x69, 0x1d, 0x11, 0x45, 0x34, + 0x68, 0x43, 0x26, 0x5a, 0x67, 0x26, 0x41, 0x26, 0x5a, 0x6b, 0xa6, 0x43, 0x26, 0xda, 0xd0, 0x40, + 0xc8, 0x44, 0x06, 0xe5, 0x0d, 0x94, 0xb7, 0x46, 0x0e, 0xef, 0x4b, 0x36, 0x39, 0x1f, 0x8c, 0xb7, + 0x46, 0x1e, 0xd3, 0x6a, 0xe5, 0x21, 0x99, 0x2f, 0xc8, 0xc9, 0x45, 0xd6, 0x7f, 0xfb, 0xfb, 0xb7, + 0x87, 0x76, 0xc5, 0xb5, 0x7b, 0x55, 0xfb, 0x73, 0xf3, 0x57, 0xee, 0x7d, 0x61, 0x7c, 0x72, 0xf0, + 0xab, 0x3c, 0x5e, 0x7c, 0xf1, 0x69, 0xd9, 0xdb, 0x72, 0xef, 0xcb, 0xe3, 0x93, 0x15, 0x3f, 0x29, + 0x8d, 0x4f, 0x5e, 0xf9, 0x3b, 0x8a, 0xe3, 0xfd, 0xc4, 0x5b, 0x27, 0xaf, 0xe7, 0x57, 0x7d, 0xa0, + 0xb0, 0xe2, 0x03, 0x47, 0xab, 0x3e, 0x70, 0xb4, 0xe2, 0x03, 0x2b, 0x4d, 0xca, 0xaf, 0xf8, 0x40, + 0x71, 0xfc, 0x94, 0x78, 0xff, 0xfe, 0xf2, 0xb7, 0x96, 0xc6, 0x07, 0x4f, 0xab, 0x7e, 0x56, 0x1e, + 0x3f, 0x9d, 0x1c, 0x1c, 0x38, 0xfb, 0xb9, 0xfc, 0xed, 0xa1, 0x7d, 0xdc, 0x7c, 0xca, 0xdd, 0x1e, + 0xda, 0xb9, 0xe6, 0xe4, 0x9d, 0xcd, 0xa7, 0xdb, 0x9c, 0x5d, 0x99, 0x5d, 0x4e, 0xfe, 0x7f, 0xf0, + 0x97, 0x85, 0xb4, 0x08, 0x69, 0x51, 0xc2, 0x71, 0xa3, 0xfe, 0x2c, 0xde, 0x48, 0x32, 0x7a, 0xb9, + 0xd1, 0x4b, 0xe3, 0x90, 0x20, 0x21, 0x41, 0x42, 0x82, 0x84, 0x04, 0x09, 0x09, 0x12, 0x12, 0xa4, + 0x1d, 0x4b, 0x90, 0xda, 0x9e, 0x37, 0x60, 0xae, 0xa0, 0x98, 0x1c, 0xe5, 0x40, 0xe5, 0x08, 0x58, + 0xa0, 0xfb, 0x10, 0xc4, 0xaa, 0x10, 0x9e, 0x74, 0x25, 0x27, 0xd2, 0x82, 0xd0, 0x0a, 0x3a, 0xdf, + 0xd8, 0x9d, 0x3b, 0x8c, 0xfa, 0x5e, 0x3a, 0xde, 0x90, 0x89, 0xce, 0x94, 0x28, 0xd9, 0x82, 0xc9, + 0x9f, 0x9e, 0xff, 0xc3, 0xe6, 0x22, 0x90, 0xae, 0xe8, 0x30, 0x67, 0xf1, 0x85, 0x20, 0xf1, 0x8a, + 0x33, 0xf4, 0x3d, 0xe9, 0x75, 0xbc, 0x41, 0x10, 0x5f, 0x39, 0xed, 0xfe, 0xd0, 0xf1, 0x79, 0xdb, + 0x71, 0x7b, 0xdc, 0x0e, 0xdc, 0x1e, 0x0f, 0xe2, 0x2b, 0x67, 0xaa, 0x66, 0x8c, 0x04, 0xef, 0xb8, + 0x81, 0x74, 0x04, 0xe3, 0xfd, 0x6f, 0x6d, 0xcf, 0x0f, 0xe2, 0x2b, 0xc7, 0xed, 0x7e, 0x9f, 0x22, + 0x01, 0x17, 0xf6, 0xd0, 0x67, 0xce, 0x94, 0xdc, 0x06, 0xe1, 0xb7, 0xb0, 0xcb, 0x26, 0xce, 0x98, + 0x56, 0x3f, 0x61, 0x46, 0xe2, 0x87, 0xf0, 0x7e, 0x0a, 0xdb, 0x95, 0xd2, 0xe7, 0xed, 0xc9, 0x88, + 0xd0, 0x39, 0x70, 0x7a, 0x89, 0x6d, 0x38, 0x7d, 0x1a, 0xa7, 0x4f, 0x9b, 0x94, 0xeb, 0xe0, 0xf4, + 0x69, 0xd3, 0x73, 0x1a, 0x9c, 0x3e, 0x4d, 0x92, 0x78, 0x91, 0x39, 0x7d, 0x3a, 0x01, 0x52, 0xf4, + 0xc4, 0xc4, 0xa4, 0x89, 0xb4, 0x24, 0xc5, 0x1c, 0x24, 0x45, 0xf2, 0xf0, 0x4a, 0x1b, 0x66, 0xa9, + 0xc2, 0x2d, 0x79, 0xd8, 0x25, 0x0f, 0xbf, 0xe4, 0x61, 0x98, 0x8e, 0x12, 0xb3, 0x47, 0x48, 0x52, + 0xa4, 0x02, 0xcf, 0xb1, 0x41, 0xd3, 0xb3, 0x92, 0x25, 0x35, 0xa1, 0x73, 0x2e, 0xa2, 0x3e, 0x9b, + 0x48, 0xcc, 0xf5, 0x68, 0xd6, 0xb3, 0x93, 0x83, 0x6b, 0xca, 0xb0, 0x6d, 0x06, 0x7c, 0x53, 0x87, + 0x71, 0x63, 0xe0, 0xdc, 0x18, 0x58, 0x37, 0x06, 0xde, 0x69, 0xc1, 0x3c, 0x31, 0xb8, 0x8f, 0x47, + 0xf1, 0x9a, 0x22, 0xc0, 0xee, 0xd1, 0x3e, 0x39, 0x2d, 0x91, 0x0d, 0x97, 0x09, 0xda, 0xf6, 0xe2, + 0x24, 0xb5, 0xf0, 0x40, 0xb4, 0x67, 0xb2, 0x82, 0x1d, 0x50, 0xd4, 0x5d, 0xd3, 0x0a, 0x57, 0xd7, + 0xc8, 0x12, 0xdf, 0xd0, 0x3c, 0x9a, 0xa4, 0x37, 0x07, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, 0x0b, 0xd2, + 0x0b, 0xd2, 0x0b, 0x64, 0x5d, 0x3e, 0x8a, 0xd4, 0xb4, 0xae, 0xd8, 0xb0, 0x29, 0x47, 0x1b, 0x30, + 0xc2, 0xcd, 0x43, 0xe6, 0xa4, 0xaf, 0x89, 0xa5, 0xef, 0xd1, 0xd1, 0x61, 0x8b, 0x48, 0x81, 0x09, + 0xe4, 0xc0, 0x2c, 0x92, 0x60, 0x0a, 0x59, 0x30, 0x8e, 0x34, 0x18, 0x47, 0x1e, 0x8c, 0x23, 0x11, + 0x34, 0xc9, 0x04, 0x51, 0x52, 0x11, 0x8f, 0x2e, 0x59, 0x45, 0x2d, 0x11, 0x37, 0x47, 0x5c, 0xc8, + 0x5c, 0x89, 0x72, 0xcc, 0x8c, 0x50, 0xbc, 0x44, 0xd8, 0x44, 0x9a, 0x3d, 0xf1, 0x16, 0xbf, 0x68, + 0x63, 0xce, 0x1e, 0xf5, 0x9e, 0x79, 0x86, 0xd1, 0xcb, 0x84, 0xb9, 0xc4, 0x7b, 0xea, 0x25, 0xec, + 0x35, 0xa0, 0x8f, 0x98, 0x21, 0x70, 0x34, 0xef, 0x62, 0xee, 0x03, 0x5c, 0x2c, 0x63, 0x17, 0x2b, + 0x15, 0x8b, 0x47, 0x45, 0xb8, 0xd9, 0x6e, 0x71, 0x51, 0xfa, 0xd6, 0x35, 0xdf, 0xe1, 0x79, 0x19, + 0x1a, 0xc6, 0x09, 0x57, 0xc2, 0x25, 0x52, 0x0a, 0xaa, 0x15, 0x71, 0x86, 0xa0, 0x0a, 0x74, 0xc1, + 0x34, 0x27, 0x23, 0x74, 0xc1, 0x54, 0x3d, 0x07, 0xba, 0x60, 0xc6, 0x06, 0x43, 0x17, 0xdc, 0xe2, + 0x44, 0xcc, 0x30, 0x5d, 0xf0, 0xd8, 0x00, 0x59, 0xb0, 0x08, 0x59, 0x70, 0xc3, 0x2f, 0xc8, 0x82, + 0xd0, 0x2c, 0x20, 0x0b, 0xee, 0x20, 0x1a, 0xcd, 0xbb, 0x18, 0x64, 0xc1, 0xcc, 0x5d, 0x2c, 0x5f, + 0x84, 0x28, 0xb8, 0x63, 0x44, 0x94, 0xbe, 0x75, 0x10, 0x05, 0x8d, 0x0d, 0xe2, 0xa1, 0xd2, 0x76, + 0x1f, 0x45, 0x17, 0x13, 0x54, 0xc1, 0xd0, 0x56, 0xc8, 0x82, 0x6f, 0x31, 0x0f, 0xb2, 0x60, 0x8a, + 0xb3, 0x11, 0xb2, 0x60, 0xaa, 0x9e, 0x03, 0x59, 0x30, 0x63, 0x83, 0x21, 0x0b, 0x6e, 0x71, 0x22, + 0x66, 0x90, 0x2c, 0xd8, 0xe6, 0xc2, 0xf5, 0x1f, 0x0d, 0xd0, 0x05, 0x2b, 0x84, 0x4d, 0x3c, 0x67, + 0xa2, 0x3f, 0xdd, 0x98, 0x0b, 0x61, 0x70, 0x53, 0xd5, 0x02, 0xc2, 0x60, 0xe6, 0xaa, 0x45, 0x0e, + 0x9a, 0xc5, 0x8e, 0xe1, 0xd1, 0xbc, 0x8b, 0x41, 0x18, 0xcc, 0xdc, 0xc5, 0x50, 0x2f, 0xb8, 0x83, + 0x64, 0x94, 0xbe, 0x75, 0x90, 0x06, 0x8d, 0x0d, 0xe3, 0x16, 0x7b, 0x90, 0x4c, 0x74, 0x59, 0x97, + 0xbe, 0x30, 0x18, 0x5b, 0x0a, 0x59, 0xf0, 0x2d, 0xe6, 0x41, 0x16, 0x4c, 0x71, 0x2e, 0x42, 0x16, + 0x4c, 0xd5, 0x73, 0x20, 0x0b, 0x66, 0x6c, 0x30, 0x64, 0xc1, 0x2d, 0x4e, 0xc3, 0x4c, 0x92, 0x05, + 0xc9, 0x9d, 0xf8, 0xb5, 0x0a, 0xc6, 0x89, 0x9c, 0x00, 0x06, 0x52, 0xfb, 0x96, 0x31, 0xf4, 0x86, + 0x93, 0xcc, 0xd3, 0x1d, 0xd0, 0x27, 0xb5, 0xb1, 0xa5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, + 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x20, 0xb5, 0x70, 0x8a, 0xf9, 0x31, 0x1c, + 0xba, 0xbe, 0xe4, 0x26, 0x70, 0xda, 0x99, 0xa1, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, + 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0xa0, 0xb4, 0x70, 0x8a, 0xf9, 0x31, 0x94, 0xbe, + 0x2b, 0x02, 0x2e, 0xf9, 0xbd, 0x01, 0xfb, 0x92, 0x5e, 0xd8, 0x0a, 0x62, 0x0b, 0x62, 0x0b, 0x62, + 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x62, 0x0b, 0x8b, 0x88, 0xba, + 0xa8, 0x55, 0x15, 0xc2, 0x93, 0xae, 0xe4, 0x1e, 0xcd, 0x0d, 0x50, 0x56, 0xd0, 0xf9, 0xc6, 0xee, + 0xdc, 0x61, 0x74, 0x00, 0xa5, 0xe3, 0x0d, 0x99, 0xe8, 0x4c, 0x89, 0xa2, 0x2d, 0x98, 0xfc, 0xe9, 0xf9, 0x3f, 0x6c, 0x2e, 0x02, 0xe9, 0x8a, 0x0e, 0x73, 0x16, 0x5f, 0x08, 0x12, 0xaf, 0x38, 0x43, 0xdf, 0x93, 0x5e, 0xc7, 0x1b, 0x04, 0xf1, 0x95, 0xd3, 0xee, 0x0f, 0x1d, 0x9f, 0xb7, 0x1d, 0xb7, - 0xc7, 0xed, 0xc0, 0xed, 0xf1, 0x20, 0xbe, 0x72, 0xa6, 0x6a, 0xc6, 0x48, 0xf0, 0x8e, 0x1b, 0x48, - 0x47, 0x30, 0xde, 0xff, 0xde, 0xf6, 0xfc, 0x20, 0xbe, 0x72, 0xdc, 0xee, 0xbf, 0x53, 0x24, 0xf0, - 0x46, 0xd2, 0x1e, 0x7a, 0x81, 0x74, 0xa6, 0xf4, 0x36, 0x08, 0xbf, 0x85, 0x7d, 0x36, 0x71, 0xca, - 0xb4, 0xfa, 0x29, 0x33, 0x12, 0x3f, 0x84, 0xf7, 0x53, 0xd8, 0xae, 0x94, 0x3e, 0x6f, 0x4f, 0x46, - 0x84, 0xce, 0x91, 0xd3, 0x4b, 0x6c, 0xc3, 0xf9, 0xd3, 0x38, 0x7f, 0xda, 0xa4, 0x6c, 0x07, 0xe7, - 0x4f, 0x9b, 0x9e, 0xd5, 0xe0, 0xfc, 0x69, 0x92, 0xd4, 0x8b, 0xcc, 0xf9, 0xd3, 0x09, 0x90, 0xa2, - 0x27, 0x27, 0x26, 0x4d, 0xa4, 0x25, 0x2a, 0xe6, 0x20, 0x2a, 0x92, 0x87, 0x57, 0xda, 0x30, 0x4b, - 0x15, 0x6e, 0xc9, 0xc3, 0x2e, 0x79, 0xf8, 0x25, 0x0f, 0xc3, 0x74, 0xb4, 0x98, 0x3d, 0x42, 0xa2, - 0x22, 0x15, 0x78, 0x8e, 0x0d, 0x9a, 0x9e, 0x96, 0x2c, 0xa9, 0x49, 0x9d, 0x73, 0x11, 0xf5, 0xc5, - 0x44, 0x62, 0xae, 0x47, 0xb3, 0xa2, 0x9d, 0x1c, 0x5c, 0x53, 0x86, 0x6d, 0x33, 0xe0, 0x9b, 0x3a, - 0x8c, 0x1b, 0x03, 0xe7, 0xc6, 0xc0, 0xba, 0x31, 0xf0, 0x4e, 0x0b, 0xe6, 0x89, 0xc1, 0x7d, 0x3c, - 0x8a, 0x37, 0x14, 0x01, 0x76, 0x8f, 0xf6, 0xd9, 0x69, 0x89, 0x6c, 0xb8, 0x4c, 0xd0, 0xb6, 0x57, - 0x67, 0xa9, 0x85, 0x47, 0xa2, 0xbd, 0x90, 0x15, 0xec, 0x81, 0xa2, 0xee, 0x9a, 0x56, 0xb8, 0xba, - 0x46, 0x96, 0xf8, 0x86, 0xe6, 0xd1, 0x24, 0xbd, 0x39, 0x90, 0x5e, 0x90, 0x5e, 0x90, 0x5e, 0x90, - 0x5e, 0x90, 0x5e, 0x20, 0xeb, 0xf2, 0x51, 0xa4, 0xa6, 0x75, 0xc5, 0x86, 0x4d, 0x39, 0xda, 0x80, - 0x11, 0x6e, 0x1f, 0x32, 0x27, 0x7d, 0x4d, 0x2c, 0x3d, 0x44, 0x4f, 0x87, 0x2d, 0x22, 0x05, 0x26, - 0x90, 0x03, 0xb3, 0x48, 0x82, 0x29, 0x64, 0xc1, 0x38, 0xd2, 0x60, 0x1c, 0x79, 0x30, 0x8e, 0x44, - 0xd0, 0x24, 0x13, 0x44, 0x49, 0x45, 0x3c, 0xba, 0x64, 0x15, 0xb5, 0x44, 0xdc, 0x1c, 0x71, 0x21, - 0x73, 0x25, 0xca, 0x31, 0x33, 0x42, 0xf1, 0x12, 0x61, 0x13, 0x69, 0x76, 0xc5, 0x5b, 0xfc, 0xa2, - 0x8d, 0x39, 0x7b, 0xd4, 0xbb, 0xe6, 0x19, 0x46, 0x2f, 0x13, 0xe6, 0x12, 0xef, 0xaa, 0x97, 0xb0, - 0xd7, 0x80, 0x4e, 0x62, 0x86, 0xc0, 0xd1, 0xbc, 0x8b, 0xb9, 0x8f, 0x70, 0xb1, 0x8c, 0x5d, 0xac, - 0x54, 0x2c, 0x1e, 0x17, 0xe1, 0x66, 0xbb, 0xc5, 0x45, 0xe9, 0x5b, 0xd7, 0xfc, 0x80, 0xe7, 0x65, - 0x68, 0x18, 0x27, 0x5c, 0x09, 0x97, 0x48, 0x29, 0xa8, 0x56, 0xc4, 0x19, 0x82, 0x2a, 0xd0, 0x05, - 0xd3, 0x9c, 0x8c, 0xd0, 0x05, 0x53, 0xf5, 0x1c, 0xe8, 0x82, 0x19, 0x1b, 0x0c, 0x5d, 0x70, 0x8b, - 0x13, 0x31, 0xc3, 0x74, 0xc1, 0x13, 0x03, 0x64, 0xc1, 0x22, 0x64, 0xc1, 0x0d, 0xbf, 0x20, 0x0b, - 0x42, 0xb3, 0x80, 0x2c, 0xb8, 0x83, 0x68, 0x34, 0xef, 0x62, 0x90, 0x05, 0x33, 0x77, 0xb1, 0x7c, - 0x11, 0xa2, 0xe0, 0x8e, 0x11, 0x51, 0xfa, 0xd6, 0x41, 0x14, 0x34, 0x36, 0x88, 0x87, 0x4a, 0xdb, - 0x43, 0x14, 0x5d, 0x4c, 0x50, 0x05, 0x43, 0x5b, 0x21, 0x0b, 0xbe, 0xc7, 0x3c, 0xc8, 0x82, 0x29, - 0xce, 0x46, 0xc8, 0x82, 0xa9, 0x7a, 0x0e, 0x64, 0xc1, 0x8c, 0x0d, 0x86, 0x2c, 0xb8, 0xc5, 0x89, - 0x98, 0x41, 0xb2, 0x60, 0x9b, 0x0b, 0xd7, 0x7f, 0x32, 0x40, 0x17, 0xac, 0x10, 0x36, 0xf1, 0x82, - 0x89, 0xfe, 0x74, 0x63, 0x2e, 0x84, 0xc1, 0x4d, 0x55, 0x0b, 0x08, 0x83, 0x99, 0xab, 0x16, 0x39, - 0x68, 0x16, 0x3b, 0x86, 0x47, 0xf3, 0x2e, 0x06, 0x61, 0x30, 0x73, 0x17, 0x43, 0xbd, 0xe0, 0x0e, - 0x92, 0x51, 0xfa, 0xd6, 0x41, 0x1a, 0x34, 0x36, 0x8c, 0x5b, 0xec, 0x51, 0x32, 0xd1, 0x65, 0x5d, - 0xfa, 0xc2, 0x60, 0x6c, 0x29, 0x64, 0xc1, 0xf7, 0x98, 0x07, 0x59, 0x30, 0xc5, 0xb9, 0x08, 0x59, - 0x30, 0x55, 0xcf, 0x81, 0x2c, 0x98, 0xb1, 0xc1, 0x90, 0x05, 0xb7, 0x38, 0x0d, 0x33, 0x49, 0x16, - 0x24, 0x77, 0xe6, 0xd7, 0x2a, 0x18, 0x27, 0x72, 0x06, 0x18, 0x48, 0xed, 0x7b, 0xc6, 0xd0, 0x1b, - 0x4e, 0x32, 0x4f, 0x77, 0x40, 0x9f, 0xd4, 0xc6, 0x96, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, - 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0xc2, 0x29, 0xe6, 0xc7, 0x70, - 0xe8, 0xfa, 0x92, 0x9b, 0xc0, 0x69, 0x67, 0x86, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, - 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0xc2, 0x29, 0xe6, 0xc7, 0x50, 0xfa, - 0xae, 0x08, 0xb8, 0xe4, 0x0f, 0x06, 0xec, 0x4b, 0x7a, 0x65, 0x2b, 0x88, 0x2d, 0x88, 0x2d, 0x88, - 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x2c, 0x22, 0xea, - 0xa2, 0x56, 0x55, 0x08, 0x4f, 0xba, 0x92, 0x7b, 0x34, 0x37, 0x40, 0x59, 0x41, 0xe7, 0x3b, 0xbb, - 0x77, 0x87, 0xd1, 0x01, 0x94, 0x8e, 0x37, 0x64, 0xa2, 0x33, 0x25, 0x8a, 0xb6, 0x60, 0xf2, 0xa7, - 0xe7, 0xff, 0xb0, 0xb9, 0x08, 0xa4, 0x2b, 0x3a, 0xcc, 0x59, 0x7c, 0x21, 0x48, 0xbc, 0xe2, 0x0c, - 0x7d, 0x4f, 0x7a, 0x1d, 0x6f, 0x10, 0xc4, 0x57, 0x4e, 0xbb, 0x3f, 0x74, 0x7c, 0xde, 0x76, 0xdc, - 0x1e, 0xb7, 0x03, 0xb7, 0xc7, 0x83, 0xf8, 0xca, 0xe1, 0xc3, 0x87, 0x92, 0x3d, 0x12, 0xbc, 0xe3, - 0x06, 0xd2, 0x11, 0x8c, 0xf7, 0xbf, 0xb7, 0x3d, 0x3f, 0x88, 0xaf, 0x1c, 0xb7, 0xfb, 0xef, 0x14, - 0xa9, 0xbc, 0x91, 0xb4, 0x87, 0x5e, 0x20, 0x1d, 0xdf, 0x1b, 0x49, 0x16, 0x84, 0xdf, 0x9c, 0x91, - 0xf8, 0x21, 0xbc, 0x9f, 0xc2, 0x76, 0xa5, 0xf4, 0x79, 0x7b, 0xfa, 0x83, 0xc4, 0x4b, 0xe1, 0x71, - 0x9a, 0x38, 0x44, 0x93, 0xb2, 0x25, 0x54, 0x0e, 0xd5, 0xff, 0x8b, 0x3d, 0x51, 0xec, 0x8a, 0x6b, - 0x5d, 0xf0, 0x40, 0x56, 0xa5, 0x24, 0x76, 0xe2, 0xff, 0x57, 0x2e, 0xce, 0x07, 0x6c, 0x42, 0x29, - 0x03, 0xeb, 0x74, 0x4f, 0x8c, 0x06, 0x03, 0x42, 0x27, 0xb2, 0x7e, 0x75, 0x1f, 0xe9, 0x1a, 0x57, - 0xf7, 0xbb, 0xcc, 0x67, 0xdd, 0x4f, 0x4f, 0x91, 0x69, 0x70, 0x42, 0xfa, 0x70, 0xb9, 0xe5, 0x30, - 0x69, 0x91, 0x3a, 0x4d, 0xd9, 0x1f, 0x75, 0xa4, 0x88, 0xf2, 0x85, 0xcb, 0xf0, 0xd1, 0xd5, 0xa2, - 0x27, 0xd7, 0xba, 0x8a, 0x9e, 0x57, 0xeb, 0x53, 0x7f, 0xd8, 0x6a, 0xf0, 0x76, 0xab, 0xda, 0xe3, - 0xd7, 0x6e, 0x8f, 0xb7, 0x6a, 0xc3, 0x87, 0xd2, 0x6d, 0xf8, 0x8c, 0x5a, 0x97, 0xd1, 0x93, 0x69, - 0x55, 0xbb, 0xff, 0x36, 0x78, 0xbb, 0x3e, 0x92, 0x57, 0x5e, 0x20, 0x5b, 0x8d, 0xc9, 0xf3, 0x68, - 0xdd, 0x86, 0x7f, 0x7c, 0x35, 0xfe, 0xdb, 0x3f, 0x00, 0x8a, 0xf5, 0x5b, 0xa0, 0x39, 0xfe, 0x50, - 0x8b, 0x3b, 0x5b, 0x15, 0x6f, 0xf4, 0x7a, 0x98, 0xbe, 0x79, 0xad, 0xe7, 0xce, 0x9a, 0x3c, 0x69, - 0x46, 0x9f, 0x43, 0xfd, 0x76, 0x6f, 0x32, 0x73, 0x6d, 0xae, 0x6b, 0xaf, 0x28, 0x0d, 0xce, 0x4c, - 0x8a, 0x23, 0x93, 0xe2, 0xc4, 0x34, 0x38, 0xb0, 0x2e, 0x4f, 0x21, 0x82, 0x35, 0xe6, 0x62, 0x8c, - 0x46, 0xba, 0x9a, 0x35, 0x3d, 0xd5, 0x83, 0x95, 0xea, 0x91, 0x4a, 0xed, 0x1d, 0x15, 0x7b, 0xba, - 0x6e, 0x0f, 0x37, 0xd1, 0xb3, 0xd5, 0x4e, 0x7c, 0x75, 0xd3, 0x4f, 0xcd, 0x9d, 0x14, 0x4d, 0x70, - 0x5d, 0x13, 0xdb, 0xa8, 0x09, 0xad, 0x10, 0x9d, 0xb2, 0x43, 0x23, 0x35, 0xee, 0x98, 0xbd, 0x73, - 0x28, 0x70, 0x0c, 0x6b, 0x6e, 0x02, 0xf8, 0xea, 0x16, 0xe2, 0x5f, 0x5a, 0x76, 0x2f, 0x18, 0xa0, - 0x28, 0x18, 0xcc, 0x16, 0xca, 0x15, 0xdd, 0x4e, 0x75, 0xfd, 0x9a, 0x8e, 0x7a, 0x34, 0xbd, 0xf5, - 0x65, 0xba, 0xea, 0xc5, 0xb4, 0xd7, 0x7f, 0x69, 0xaf, 0xe7, 0xd2, 0x5e, 0x9f, 0xb5, 0x5d, 0x34, - 0xe5, 0x8c, 0xab, 0x55, 0x7e, 0xac, 0x88, 0xc3, 0x2a, 0x77, 0x9c, 0x59, 0xb8, 0x88, 0xee, 0xaf, - 0x78, 0xd2, 0xaa, 0x05, 0x80, 0x24, 0x10, 0xe4, 0x15, 0xdf, 0x58, 0x63, 0x81, 0x32, 0x8d, 0xc2, - 0x63, 0xdd, 0x05, 0xc5, 0x64, 0x0a, 0x85, 0xc9, 0x14, 0x00, 0x93, 0x29, 0xec, 0xdd, 0x6e, 0x41, - 0x47, 0x35, 0xa0, 0xcc, 0x03, 0x8b, 0x3e, 0x7f, 0x9b, 0xc3, 0x17, 0x5d, 0xbe, 0xa6, 0x07, 0x66, - 0xb4, 0xe5, 0x1d, 0x94, 0x60, 0x87, 0x16, 0xfc, 0x50, 0x81, 0x21, 0x72, 0x70, 0x44, 0x0e, 0x96, - 0xc8, 0xc1, 0x93, 0x1e, 0x98, 0xd2, 0x04, 0x57, 0xda, 0x61, 0x2b, 0x36, 0x60, 0x56, 0x06, 0xa0, - 0xdd, 0x53, 0x5f, 0x7a, 0xa3, 0xe8, 0xac, 0x4b, 0x58, 0x84, 0x34, 0xcd, 0x3b, 0x31, 0xc9, 0x6c, - 0x09, 0xa5, 0xb4, 0xf5, 0x93, 0xe6, 0x16, 0x4f, 0x6a, 0x5b, 0x39, 0xc9, 0x6e, 0xd9, 0x24, 0xbb, - 0x35, 0x93, 0xec, 0x16, 0xcc, 0xdd, 0x2e, 0xfc, 0x24, 0xb3, 0x75, 0x32, 0x8e, 0x3b, 0x03, 0xe6, - 0xf6, 0x7c, 0xd6, 0xa3, 0x10, 0x74, 0x66, 0x99, 0x57, 0x99, 0x80, 0x2d, 0x57, 0xd1, 0xe2, 0xef, - 0xc7, 0x8f, 0xe1, 0xa6, 0x2e, 0x67, 0x06, 0xe5, 0xbb, 0x5a, 0x5d, 0xaa, 0x31, 0xff, 0x1a, 0xd2, - 0x80, 0xeb, 0x17, 0x56, 0x47, 0x22, 0xf9, 0x02, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x03, - 0xa9, 0x03, 0xa9, 0x03, 0xa9, 0x7b, 0x27, 0xa9, 0x0b, 0xc3, 0x0e, 0x38, 0x9d, 0xf2, 0xa1, 0x08, - 0x3b, 0x25, 0x90, 0xa1, 0x74, 0xa1, 0x39, 0x34, 0x18, 0x5d, 0x0e, 0x8c, 0x0e, 0x8c, 0x0e, 0x8c, - 0x0e, 0x8c, 0x0e, 0x8c, 0x4e, 0xd7, 0xa8, 0xe8, 0x5e, 0xc9, 0x8a, 0x0d, 0x99, 0xb6, 0x87, 0xe1, - 0xa2, 0xcb, 0xe8, 0x34, 0xaa, 0x7c, 0xa9, 0x03, 0x7f, 0xb1, 0x8d, 0x4a, 0x4f, 0x1d, 0x52, 0x2d, - 0x51, 0xc9, 0xb5, 0x40, 0xa5, 0xd8, 0xf2, 0x94, 0x76, 0x8b, 0x53, 0xaa, 0x2d, 0x4d, 0xc9, 0xb7, - 0x30, 0x25, 0xdf, 0xb2, 0x94, 0x7c, 0x8b, 0x52, 0x74, 0x4b, 0x23, 0x29, 0xb1, 0x10, 0x96, 0x5a, - 0x28, 0x4a, 0x2e, 0xcb, 0xa4, 0x97, 0xdf, 0xfc, 0x37, 0xa5, 0x14, 0x01, 0x93, 0x41, 0x7c, 0x15, - 0x09, 0x35, 0x21, 0xcd, 0x40, 0xef, 0x24, 0x2a, 0x4e, 0x69, 0x75, 0xbc, 0xfb, 0xfb, 0x91, 0xe0, - 0xf2, 0x89, 0x2a, 0x3b, 0x5d, 0x34, 0x10, 0x14, 0x15, 0x14, 0x15, 0x14, 0x15, 0x14, 0x15, 0x14, - 0x15, 0x14, 0x15, 0x14, 0x15, 0x14, 0xf5, 0xbd, 0x14, 0x75, 0xc6, 0x2b, 0x38, 0x0b, 0xe2, 0xeb, - 0x27, 0xb0, 0x54, 0x9a, 0x2c, 0x95, 0x3d, 0x4a, 0x9b, 0x3c, 0x53, 0x5d, 0x66, 0x24, 0xd8, 0x2a, - 0xd8, 0x2a, 0xd8, 0x2a, 0xd8, 0x2a, 0xd8, 0x2a, 0xd8, 0x2a, 0xd8, 0x2a, 0xd8, 0xea, 0x7b, 0xd9, - 0xea, 0x6b, 0x6e, 0x31, 0x61, 0xac, 0x73, 0x5c, 0x03, 0xac, 0x95, 0x26, 0x6b, 0xe5, 0xe2, 0xc1, - 0x1d, 0xf0, 0xae, 0xed, 0x33, 0x37, 0x20, 0x74, 0x32, 0x45, 0xec, 0xa1, 0x0b, 0xf6, 0x81, 0xab, - 0x82, 0xab, 0x82, 0xab, 0x82, 0xab, 0x82, 0xab, 0x82, 0xab, 0xee, 0x18, 0x57, 0xe5, 0x5d, 0x26, - 0x24, 0x97, 0x4f, 0x44, 0xf9, 0x6a, 0x91, 0x90, 0x4d, 0xb5, 0xe8, 0x51, 0x7d, 0x72, 0x03, 0x82, - 0x21, 0x75, 0x36, 0xa0, 0xb5, 0xcb, 0x6f, 0xd5, 0x8b, 0xda, 0x59, 0xab, 0x51, 0xbf, 0xbd, 0x39, - 0x6f, 0x35, 0xce, 0xab, 0xd7, 0xf5, 0x4b, 0x6a, 0xd1, 0xf5, 0x9b, 0x3b, 0x18, 0x4d, 0xbb, 0x3f, - 0xde, 0x91, 0x3b, 0xdf, 0x93, 0xf8, 0xa1, 0xfe, 0xb3, 0xd1, 0xad, 0x37, 0x6a, 0x7f, 0xd6, 0x2e, - 0xab, 0x37, 0xf5, 0x06, 0xbd, 0x23, 0xa9, 0x09, 0x1e, 0xfa, 0x6c, 0xc8, 0xa8, 0x7e, 0xbe, 0xb8, - 0xbd, 0xbe, 0x39, 0x6f, 0xb4, 0x2e, 0xea, 0xf5, 0x2b, 0x8c, 0xeb, 0xf6, 0x8c, 0x6b, 0xf5, 0x1a, - 0x43, 0xba, 0x6d, 0xae, 0x5a, 0xbf, 0xfc, 0x72, 0x7e, 0x66, 0xe1, 0x70, 0xf1, 0xdf, 0x7e, 0x35, - 0x91, 0x8f, 0x10, 0xb3, 0x82, 0x82, 0x3a, 0x38, 0x70, 0x03, 0x69, 0xdf, 0x7b, 0x5d, 0xde, 0xe3, + 0xc7, 0xed, 0xc0, 0xed, 0xf1, 0x20, 0xbe, 0x72, 0xf8, 0xf0, 0xbe, 0x64, 0x8f, 0x04, 0xef, 0xb8, + 0x81, 0x74, 0x04, 0xe3, 0xfd, 0x6f, 0x6d, 0xcf, 0x0f, 0xe2, 0x2b, 0xc7, 0xed, 0x7e, 0x9f, 0x22, + 0x15, 0x17, 0xf6, 0xd0, 0x67, 0x8e, 0xef, 0x8d, 0x24, 0x0b, 0xc2, 0x6f, 0xce, 0x48, 0xfc, 0x10, + 0xde, 0x4f, 0x61, 0xbb, 0x52, 0xfa, 0xbc, 0x3d, 0xfd, 0x41, 0xe2, 0xa5, 0xf0, 0x30, 0x4d, 0x1c, + 0xa1, 0x49, 0xd9, 0x12, 0x2a, 0x47, 0xea, 0xff, 0xc3, 0x1e, 0x29, 0xf6, 0xc4, 0xb5, 0xce, 0x79, + 0x20, 0xab, 0x52, 0x12, 0x3b, 0xef, 0xff, 0x0b, 0x17, 0x67, 0x03, 0x36, 0x21, 0x94, 0x81, 0x75, + 0xb2, 0x27, 0x46, 0x83, 0x01, 0xa1, 0xf3, 0x58, 0xbf, 0xb8, 0x0f, 0x74, 0x8d, 0xab, 0xfb, 0x5d, + 0xe6, 0xb3, 0xee, 0xc7, 0xc7, 0xc8, 0x34, 0x38, 0x21, 0x7d, 0xb0, 0xdc, 0x6a, 0x90, 0xb4, 0x48, + 0x9d, 0xa4, 0xec, 0x8f, 0x3a, 0x52, 0x44, 0xb9, 0xc2, 0x45, 0xf8, 0xe0, 0x6a, 0xd1, 0x73, 0x6b, + 0x5d, 0x46, 0x4f, 0xab, 0xf5, 0xb1, 0x3f, 0x6c, 0x35, 0x78, 0xbb, 0x55, 0xed, 0xf1, 0x2b, 0xb7, + 0xc7, 0x5b, 0xb5, 0xe1, 0x7d, 0xe9, 0x26, 0x7c, 0x42, 0xad, 0x8b, 0xe8, 0xb9, 0xb4, 0xaa, 0xdd, + 0xef, 0x0d, 0xde, 0xae, 0x89, 0x4b, 0x9f, 0xb5, 0x1a, 0x93, 0xa7, 0xd1, 0xba, 0x09, 0xff, 0xf4, + 0x6a, 0xfc, 0x97, 0xbf, 0x03, 0x0c, 0xeb, 0xb7, 0x40, 0x73, 0xec, 0xa1, 0x16, 0x73, 0xb6, 0x28, + 0xd6, 0xe8, 0xf5, 0x2f, 0x7d, 0xb3, 0x5a, 0xcf, 0x9d, 0x35, 0xf9, 0xd1, 0x8c, 0x38, 0x87, 0xba, + 0xed, 0xde, 0x64, 0xde, 0xda, 0x5c, 0xd7, 0x1e, 0x51, 0x1a, 0x6c, 0x99, 0x14, 0x3b, 0x26, 0xc5, + 0x86, 0x69, 0xb0, 0x5f, 0x5d, 0x9e, 0x42, 0x04, 0x69, 0x4c, 0x45, 0x18, 0x8d, 0x44, 0x35, 0x5b, + 0x62, 0xaa, 0x07, 0x27, 0xd5, 0xa3, 0x94, 0xda, 0x3b, 0x2a, 0xf6, 0x72, 0xdd, 0xde, 0x6d, 0x9e, + 0x57, 0xab, 0x9d, 0xf6, 0xea, 0x26, 0x9f, 0x9a, 0x3b, 0x29, 0x9a, 0xde, 0xba, 0xa6, 0xb5, 0x41, + 0xd3, 0x59, 0x21, 0x2e, 0x65, 0x85, 0x43, 0x6a, 0x5c, 0x31, 0x7b, 0xc7, 0x50, 0xe0, 0x14, 0xd6, + 0x6c, 0xf0, 0xbd, 0x91, 0xb4, 0x87, 0x5e, 0x20, 0x95, 0xb9, 0xc5, 0x73, 0x87, 0xee, 0x45, 0x0b, + 0x14, 0x85, 0x82, 0xd9, 0xc2, 0xb8, 0xa2, 0xdb, 0xa9, 0xae, 0x57, 0xd3, 0x51, 0x7f, 0xa6, 0xb7, + 0x9e, 0x4c, 0x57, 0x7d, 0x98, 0xf6, 0x7a, 0x2f, 0xed, 0xf5, 0x5b, 0xda, 0xeb, 0xb1, 0xb6, 0x8b, + 0xa4, 0x9c, 0x72, 0xb5, 0x8a, 0x8f, 0x15, 0x31, 0x58, 0xe5, 0x8e, 0x33, 0x0b, 0x17, 0xd1, 0xfd, + 0x15, 0x4f, 0x5a, 0xb5, 0x00, 0x90, 0x04, 0x82, 0xbc, 0xe2, 0x1b, 0x6b, 0x2c, 0x48, 0xa6, 0x51, + 0x68, 0xac, 0xbb, 0x80, 0x98, 0x4c, 0x61, 0x30, 0x99, 0x82, 0x5f, 0x32, 0x85, 0xbc, 0xdb, 0x2d, + 0xe6, 0xa8, 0x06, 0x94, 0x79, 0x60, 0xd1, 0xe7, 0x6f, 0x73, 0xf8, 0xa2, 0xcb, 0xd7, 0xf4, 0xc0, + 0x8c, 0xb6, 0xbc, 0x83, 0x12, 0xec, 0xd0, 0x82, 0x1f, 0x2a, 0x30, 0x44, 0x0e, 0x8e, 0xc8, 0xc1, + 0x12, 0x39, 0x78, 0xd2, 0x03, 0x53, 0x9a, 0xe0, 0x4a, 0x3b, 0x6c, 0xc5, 0x06, 0xcc, 0x96, 0xff, + 0xb5, 0x7b, 0xea, 0x73, 0x2f, 0x14, 0x9d, 0xf5, 0x08, 0x8b, 0x90, 0xa6, 0x79, 0xe7, 0x25, 0x99, + 0x2d, 0xa0, 0x94, 0xb6, 0x7a, 0xd2, 0xdc, 0xd2, 0x49, 0x6d, 0xeb, 0x26, 0xd9, 0x2d, 0x9a, 0x64, + 0xb7, 0x62, 0x92, 0xdd, 0x72, 0xb9, 0xdb, 0xe5, 0x9e, 0x64, 0xb6, 0x4a, 0xc6, 0x71, 0x67, 0xc0, + 0xdc, 0x9e, 0xcf, 0x7a, 0x14, 0x82, 0xce, 0x2c, 0xf3, 0x2a, 0x13, 0xb0, 0xe5, 0x32, 0x5a, 0xfa, + 0xfd, 0xf0, 0x21, 0xdc, 0xc6, 0xe5, 0xcc, 0xa0, 0x7c, 0x57, 0xab, 0x4a, 0x35, 0xe6, 0x5f, 0x43, + 0x1a, 0x70, 0xfd, 0xcc, 0xea, 0x48, 0x24, 0x5f, 0x20, 0x75, 0x20, 0x75, 0x20, 0x75, 0x20, 0x75, + 0x20, 0x75, 0x20, 0x75, 0x20, 0x75, 0x6f, 0x24, 0x75, 0x61, 0xd8, 0x01, 0xa7, 0x53, 0x3e, 0x14, + 0x61, 0x6f, 0x04, 0x32, 0x94, 0x2e, 0x34, 0x87, 0x06, 0xa3, 0xcb, 0x81, 0xd1, 0x81, 0xd1, 0x81, + 0xd1, 0x81, 0xd1, 0x81, 0xd1, 0xe9, 0x1a, 0x15, 0xdd, 0x2b, 0x59, 0xb1, 0x21, 0xd3, 0x86, 0x30, + 0x5c, 0x74, 0x19, 0x9d, 0xc6, 0x94, 0xcf, 0x85, 0xe0, 0xcf, 0xb6, 0x51, 0xe9, 0xa2, 0x43, 0xaa, + 0x05, 0x2a, 0xb9, 0x96, 0xa7, 0x14, 0x5b, 0x9c, 0xd2, 0x6e, 0x69, 0x4a, 0xb5, 0x85, 0x29, 0xf9, + 0x96, 0xa5, 0xe4, 0x5b, 0x94, 0x92, 0x6f, 0x49, 0x8a, 0xfe, 0x68, 0x24, 0x25, 0x16, 0xc2, 0x52, + 0x0b, 0x45, 0xc9, 0x65, 0x99, 0xf4, 0xf2, 0x9b, 0xff, 0xa6, 0x94, 0x22, 0x60, 0x32, 0x88, 0xaf, + 0x22, 0xa1, 0x26, 0xa4, 0x19, 0xe8, 0x98, 0x44, 0xc5, 0x29, 0xad, 0x8e, 0x77, 0x77, 0x37, 0x12, + 0x5c, 0x3e, 0x52, 0x65, 0xa7, 0x8b, 0x06, 0x82, 0xa2, 0x82, 0xa2, 0x82, 0xa2, 0x82, 0xa2, 0x82, + 0xa2, 0x82, 0xa2, 0x82, 0xa2, 0x82, 0xa2, 0xbe, 0x95, 0xa2, 0xce, 0x78, 0x05, 0x67, 0x41, 0x7c, + 0xfd, 0x08, 0x96, 0x4a, 0x93, 0xa5, 0xb2, 0x07, 0x69, 0x93, 0x67, 0xaa, 0xcb, 0x8c, 0x04, 0x5b, + 0x05, 0x5b, 0x05, 0x5b, 0x05, 0x5b, 0x05, 0x5b, 0x05, 0x5b, 0x05, 0x5b, 0x05, 0x5b, 0x7d, 0x2b, + 0x5b, 0x7d, 0xc9, 0x2d, 0x26, 0x8c, 0x75, 0x8e, 0x6b, 0x80, 0xb5, 0xd2, 0x64, 0xad, 0x5c, 0xdc, + 0xbb, 0x03, 0xde, 0xb5, 0x7d, 0xe6, 0x06, 0x84, 0xce, 0xa2, 0x88, 0x3d, 0x74, 0xc1, 0x3e, 0x70, + 0x55, 0x70, 0x55, 0x70, 0x55, 0x70, 0x55, 0x70, 0x55, 0x70, 0xd5, 0x1d, 0xe3, 0xaa, 0xbc, 0xcb, + 0x84, 0xe4, 0xf2, 0x91, 0x28, 0x5f, 0x2d, 0x12, 0xb2, 0xa9, 0x16, 0x3d, 0xaa, 0x8f, 0x6e, 0x40, + 0x30, 0xa4, 0xce, 0x06, 0xb4, 0x76, 0xf1, 0xb5, 0x7a, 0x5e, 0x3b, 0x6d, 0x35, 0xea, 0x37, 0xd7, + 0x67, 0xad, 0xc6, 0x59, 0xf5, 0xaa, 0x7e, 0x41, 0x2d, 0xba, 0x7e, 0x75, 0x07, 0xa3, 0x69, 0xf7, + 0xc7, 0x5b, 0x72, 0xe7, 0x79, 0x12, 0x3f, 0xc4, 0x7f, 0x36, 0xba, 0xd5, 0xab, 0xd6, 0x79, 0xbd, + 0x7e, 0x49, 0xef, 0xfc, 0x69, 0x82, 0x27, 0x3c, 0x1b, 0x32, 0xa4, 0x9f, 0xea, 0x17, 0x9f, 0xcf, + 0x4e, 0x31, 0xa2, 0xdb, 0x33, 0xa2, 0xf5, 0x46, 0xed, 0xef, 0xda, 0x45, 0xf5, 0xba, 0xde, 0xc0, + 0xa8, 0x6e, 0x91, 0x9f, 0x9e, 0xdf, 0x5c, 0x5d, 0x9f, 0x35, 0xa8, 0xc6, 0x5f, 0x52, 0x16, 0x35, + 0x91, 0x8f, 0x10, 0xb3, 0x82, 0x82, 0x3a, 0x38, 0x70, 0x03, 0x69, 0xdf, 0x79, 0x5d, 0xde, 0xe3, 0xac, 0x4b, 0x4f, 0x1c, 0x9c, 0x37, 0x0f, 0xda, 0xe0, 0x32, 0x73, 0xa0, 0x0d, 0xae, 0x31, 0xa1, - 0xa0, 0x0d, 0xae, 0x35, 0xd3, 0xa1, 0x0d, 0x6e, 0x68, 0x20, 0xb4, 0x41, 0x83, 0xb8, 0x2f, 0x61, - 0x6d, 0x50, 0xf2, 0x7b, 0x26, 0x79, 0xe7, 0x47, 0x50, 0x2a, 0x10, 0xd4, 0x06, 0x4f, 0x08, 0x99, - 0x74, 0x2b, 0xf8, 0xf4, 0x94, 0x58, 0x4b, 0xb8, 0xc2, 0x0b, 0x58, 0xc7, 0x13, 0xdd, 0x80, 0xd2, - 0x23, 0x6b, 0xb8, 0xa2, 0xcf, 0xc8, 0xe9, 0x6d, 0xf4, 0x52, 0x3d, 0xeb, 0x2b, 0x17, 0xe4, 0x10, - 0x91, 0x28, 0x07, 0x4c, 0x98, 0x37, 0x55, 0x75, 0x09, 0xdb, 0xf7, 0xc5, 0x77, 0x3b, 0x92, 0x7b, - 0xe2, 0x8c, 0xf7, 0x43, 0x6f, 0x3d, 0x82, 0x1e, 0xf3, 0x16, 0x97, 0x70, 0x1f, 0xe1, 0x12, 0x1b, - 0xba, 0x44, 0xee, 0xa4, 0x50, 0x28, 0x95, 0x0b, 0x85, 0xa3, 0xf2, 0x71, 0xf9, 0xa8, 0x52, 0x2c, - 0xe6, 0x4a, 0x94, 0x56, 0xb6, 0x8c, 0xf3, 0x92, 0x0f, 0xb0, 0x66, 0xd9, 0x57, 0x13, 0x1a, 0x17, + 0xa0, 0x0d, 0xae, 0x35, 0xd3, 0xa1, 0x0d, 0x6e, 0x68, 0x20, 0xb4, 0x41, 0x83, 0x18, 0x30, 0x61, + 0x6d, 0x50, 0xf2, 0x3b, 0x26, 0x79, 0xe7, 0x47, 0x50, 0x2a, 0x10, 0xd4, 0x06, 0x8f, 0x09, 0x99, + 0x74, 0x23, 0xf8, 0xf4, 0x74, 0x58, 0x4b, 0xb8, 0xc2, 0x0b, 0x58, 0xc7, 0x13, 0xdd, 0x80, 0xd2, + 0x23, 0x6b, 0xb8, 0xa2, 0xcf, 0xc8, 0xe9, 0x6d, 0xf4, 0x12, 0x3e, 0xeb, 0x0b, 0x17, 0xe4, 0x10, + 0x91, 0x28, 0x07, 0x4c, 0x98, 0x37, 0x55, 0x75, 0x09, 0xdb, 0xf7, 0xd9, 0x77, 0x3b, 0x92, 0x7b, + 0xe2, 0x94, 0xf7, 0x43, 0x6f, 0x3d, 0x84, 0x2a, 0xf3, 0x1a, 0x97, 0x70, 0x1f, 0xe0, 0x12, 0x1b, + 0xba, 0x44, 0xee, 0xb8, 0x50, 0x28, 0x95, 0x0b, 0x85, 0xc3, 0xf2, 0x51, 0xf9, 0xb0, 0x52, 0x2c, + 0xe6, 0x4a, 0x94, 0x56, 0xb6, 0x8c, 0xf3, 0x92, 0x77, 0xb0, 0x66, 0xd9, 0x57, 0x13, 0x1a, 0x17, 0x95, 0x28, 0x4a, 0xe6, 0x20, 0x87, 0x04, 0xa9, 0xa7, 0x71, 0xa0, 0x03, 0xd1, 0x00, 0x0e, 0x5d, 0x6b, 0x9d, 0xa9, 0x04, 0x5d, 0x6b, 0xad, 0x99, 0x0e, 0x5d, 0x6b, 0x43, 0x03, 0xa1, 0x6b, 0x19, - 0x94, 0x43, 0x10, 0xd6, 0xb5, 0x46, 0x5c, 0xc8, 0xe3, 0x3c, 0x41, 0x49, 0xab, 0x0c, 0xc9, 0xe8, - 0x3f, 0xbe, 0x20, 0x19, 0x6d, 0x65, 0x7e, 0x0c, 0xc9, 0xc8, 0xf4, 0x70, 0x3f, 0xef, 0x12, 0x90, - 0x8c, 0x36, 0x76, 0x89, 0x42, 0xbe, 0x52, 0xa8, 0x94, 0xca, 0xf9, 0x0a, 0x84, 0xa2, 0x2d, 0x90, - 0x66, 0xf6, 0x20, 0x14, 0x11, 0x7c, 0x1e, 0x24, 0x84, 0x22, 0x5a, 0x09, 0x3e, 0xad, 0x23, 0xa2, - 0x88, 0x06, 0x6d, 0xc8, 0x44, 0xeb, 0xcc, 0x24, 0xc8, 0x44, 0x6b, 0xcd, 0x74, 0xc8, 0x44, 0x1b, - 0x1a, 0x08, 0x99, 0xc8, 0xa0, 0xbc, 0x81, 0xf2, 0xd6, 0xc8, 0xe1, 0x43, 0xc9, 0x26, 0xe7, 0x83, - 0xf1, 0xd6, 0xc8, 0x13, 0x5a, 0xad, 0x3c, 0x24, 0xf3, 0x05, 0x39, 0xb9, 0xc8, 0xfa, 0x67, 0x7f, - 0xff, 0xee, 0xc8, 0xae, 0xb8, 0x76, 0xaf, 0x6a, 0x7f, 0x69, 0xfe, 0xca, 0x1d, 0x16, 0xc6, 0xa7, - 0x07, 0xbf, 0xca, 0xe3, 0xc5, 0x17, 0x9f, 0x97, 0xbd, 0x2d, 0x77, 0x58, 0x1e, 0x9f, 0xae, 0xf8, - 0x49, 0x69, 0x7c, 0xfa, 0xc6, 0xdf, 0x51, 0x1c, 0xef, 0x27, 0xde, 0x3a, 0x79, 0x3d, 0xbf, 0xea, - 0x03, 0x85, 0x15, 0x1f, 0x38, 0x5e, 0xf5, 0x81, 0xe3, 0x15, 0x1f, 0x58, 0x69, 0x52, 0x7e, 0xc5, - 0x07, 0x8a, 0xe3, 0xe7, 0xc4, 0xfb, 0xf7, 0x97, 0xbf, 0xb5, 0x34, 0x3e, 0x78, 0x5e, 0xf5, 0xb3, - 0xf2, 0xf8, 0xf9, 0xf4, 0xe0, 0xc0, 0xd9, 0xcf, 0xe5, 0xef, 0x8e, 0xec, 0x93, 0xe6, 0x73, 0xee, - 0xee, 0xc8, 0xce, 0x35, 0x27, 0xef, 0x6c, 0x3e, 0xdf, 0xe5, 0xec, 0xca, 0xec, 0x72, 0xf2, 0xff, - 0x83, 0x3f, 0x2c, 0xa4, 0x45, 0x48, 0x8b, 0x12, 0x8e, 0x1b, 0xf5, 0x67, 0xf1, 0x46, 0x92, 0xd1, - 0xcb, 0x8d, 0x5e, 0x1b, 0x87, 0x04, 0x09, 0x09, 0x12, 0x12, 0x24, 0x24, 0x48, 0x48, 0x90, 0x90, - 0x20, 0xed, 0x58, 0x82, 0xd4, 0xf6, 0xbc, 0x01, 0x73, 0x05, 0xc5, 0xe4, 0x28, 0x07, 0x2a, 0x47, - 0xc0, 0x02, 0xdd, 0x87, 0x20, 0x56, 0x85, 0xf0, 0xa4, 0x2b, 0x39, 0x91, 0x16, 0x84, 0x56, 0xd0, - 0xf9, 0xce, 0xee, 0xdd, 0x61, 0xd4, 0xf7, 0xd2, 0xf1, 0x86, 0x4c, 0x74, 0xa6, 0x44, 0xc9, 0x16, - 0x4c, 0xfe, 0xf4, 0xfc, 0x1f, 0x36, 0x17, 0x81, 0x74, 0x45, 0x87, 0x39, 0x8b, 0x2f, 0x04, 0x89, - 0x57, 0x9c, 0xa1, 0xef, 0x49, 0xaf, 0xe3, 0x0d, 0x82, 0xf8, 0xca, 0x69, 0xf7, 0x87, 0x8e, 0xcf, - 0xdb, 0x8e, 0xdb, 0xe3, 0x76, 0xe0, 0xf6, 0x78, 0x10, 0x5f, 0x39, 0x53, 0x35, 0x63, 0x24, 0x78, - 0xc7, 0x0d, 0xa4, 0x23, 0x18, 0xef, 0x7f, 0x6f, 0x7b, 0x7e, 0x10, 0x5f, 0x39, 0x6e, 0xf7, 0xdf, - 0x29, 0x12, 0x78, 0x23, 0x69, 0x0f, 0x7d, 0xe6, 0x4c, 0xd9, 0x6d, 0x10, 0x7e, 0x0b, 0xdb, 0x6c, - 0xe2, 0x90, 0x69, 0xf5, 0x33, 0x66, 0x24, 0x7e, 0x08, 0xef, 0xa7, 0xb0, 0x5d, 0x29, 0x7d, 0xde, - 0x9e, 0x8c, 0x08, 0x9d, 0x13, 0xa7, 0x97, 0xd8, 0x86, 0xe3, 0xa7, 0x71, 0xfc, 0xb4, 0x49, 0xc9, - 0x0e, 0x8e, 0x9f, 0x36, 0x3d, 0xa9, 0xc1, 0xf1, 0xd3, 0x24, 0x99, 0x17, 0x99, 0xe3, 0xa7, 0x13, - 0x20, 0x45, 0x4f, 0x4d, 0x4c, 0x9a, 0x48, 0x4b, 0x53, 0xcc, 0x41, 0x53, 0x24, 0x0f, 0xaf, 0xb4, - 0x61, 0x96, 0x2a, 0xdc, 0x92, 0x87, 0x5d, 0xf2, 0xf0, 0x4b, 0x1e, 0x86, 0xe9, 0x48, 0x31, 0x7b, - 0x84, 0x34, 0x45, 0x2a, 0xf0, 0x1c, 0x1b, 0x34, 0x3d, 0x2c, 0x59, 0x52, 0x53, 0x3a, 0xe7, 0x22, - 0xea, 0x8b, 0x89, 0xc4, 0x5c, 0x8f, 0x66, 0x41, 0x3b, 0x39, 0xb8, 0xa6, 0x0c, 0xdb, 0x66, 0xc0, - 0x37, 0x75, 0x18, 0x37, 0x06, 0xce, 0x8d, 0x81, 0x75, 0x63, 0xe0, 0x9d, 0x16, 0xcc, 0x13, 0x83, - 0xfb, 0x78, 0x14, 0x6f, 0x28, 0x02, 0xec, 0x1e, 0xed, 0xa3, 0xd3, 0x12, 0xd9, 0x70, 0x99, 0xa0, - 0x6d, 0xaf, 0x8e, 0x52, 0x0b, 0x4f, 0x44, 0x7b, 0x21, 0x2b, 0xd8, 0x02, 0x45, 0xdd, 0x35, 0xad, - 0x70, 0x75, 0x8d, 0x2c, 0xf1, 0x0d, 0xcd, 0xa3, 0x49, 0x7a, 0x73, 0x20, 0xbd, 0x20, 0xbd, 0x20, - 0xbd, 0x20, 0xbd, 0x20, 0xbd, 0x40, 0xd6, 0xe5, 0xa3, 0x48, 0x4d, 0xeb, 0x8a, 0x0d, 0x9b, 0x72, - 0xb4, 0x01, 0x23, 0xdc, 0x3d, 0x64, 0x4e, 0xfa, 0x9a, 0x58, 0x7a, 0x88, 0x96, 0x0e, 0x5b, 0x44, - 0x0a, 0x4c, 0x20, 0x07, 0x66, 0x91, 0x04, 0x53, 0xc8, 0x82, 0x71, 0xa4, 0xc1, 0x38, 0xf2, 0x60, - 0x1c, 0x89, 0xa0, 0x49, 0x26, 0x88, 0x92, 0x8a, 0x78, 0x74, 0xc9, 0x2a, 0x6a, 0x89, 0xb8, 0x39, - 0xe2, 0x42, 0xe6, 0x4a, 0x94, 0x63, 0x66, 0x84, 0xe2, 0x25, 0xc2, 0x26, 0xd2, 0x6c, 0x8a, 0xb7, - 0xf8, 0x45, 0x1b, 0x73, 0xf6, 0xa8, 0x37, 0xcd, 0x33, 0x8c, 0x5e, 0x26, 0xcc, 0x25, 0xde, 0x54, - 0x2f, 0x61, 0xaf, 0x01, 0x8d, 0xc4, 0x0c, 0x81, 0xa3, 0x79, 0x17, 0x73, 0x1f, 0xe1, 0x62, 0x19, - 0xbb, 0x58, 0xa9, 0x58, 0x3c, 0x2e, 0xc2, 0xcd, 0x76, 0x8b, 0x8b, 0xd2, 0xb7, 0xae, 0xf9, 0x01, - 0xcf, 0xcb, 0xd0, 0x30, 0x4e, 0xb8, 0x12, 0x2e, 0x91, 0x52, 0x50, 0xad, 0x88, 0x33, 0x04, 0x55, - 0xa0, 0x0b, 0xa6, 0x39, 0x19, 0xa1, 0x0b, 0xa6, 0xea, 0x39, 0xd0, 0x05, 0x33, 0x36, 0x18, 0xba, - 0xe0, 0x16, 0x27, 0x62, 0x86, 0xe9, 0x82, 0x27, 0x06, 0xc8, 0x82, 0x45, 0xc8, 0x82, 0x1b, 0x7e, - 0x41, 0x16, 0x84, 0x66, 0x01, 0x59, 0x70, 0x07, 0xd1, 0x68, 0xde, 0xc5, 0x20, 0x0b, 0x66, 0xee, - 0x62, 0xf9, 0x22, 0x44, 0xc1, 0x1d, 0x23, 0xa2, 0xf4, 0xad, 0x83, 0x28, 0x68, 0x6c, 0x10, 0x0f, - 0x95, 0xb6, 0x87, 0x28, 0xba, 0x98, 0xa0, 0x0a, 0x86, 0xb6, 0x42, 0x16, 0x7c, 0x8f, 0x79, 0x90, - 0x05, 0x53, 0x9c, 0x8d, 0x90, 0x05, 0x53, 0xf5, 0x1c, 0xc8, 0x82, 0x19, 0x1b, 0x0c, 0x59, 0x70, - 0x8b, 0x13, 0x31, 0x83, 0x64, 0xc1, 0x36, 0x17, 0xae, 0xff, 0x64, 0x80, 0x2e, 0x58, 0x21, 0x6c, - 0xe2, 0x05, 0x13, 0xfd, 0xe9, 0xc6, 0x5c, 0x08, 0x83, 0x9b, 0xaa, 0x16, 0x10, 0x06, 0x33, 0x57, - 0x2d, 0x72, 0xd0, 0x2c, 0x76, 0x0c, 0x8f, 0xe6, 0x5d, 0x0c, 0xc2, 0x60, 0xe6, 0x2e, 0x86, 0x7a, - 0xc1, 0x1d, 0x24, 0xa3, 0xf4, 0xad, 0x83, 0x34, 0x68, 0x6c, 0x18, 0xb7, 0xd8, 0xa3, 0x64, 0xa2, - 0xcb, 0xba, 0xf4, 0x85, 0xc1, 0xd8, 0x52, 0xc8, 0x82, 0xef, 0x31, 0x0f, 0xb2, 0x60, 0x8a, 0x73, - 0x11, 0xb2, 0x60, 0xaa, 0x9e, 0x03, 0x59, 0x30, 0x63, 0x83, 0x21, 0x0b, 0x6e, 0x71, 0x1a, 0x66, - 0x92, 0x2c, 0x48, 0xee, 0xc8, 0xaf, 0x55, 0x30, 0x4e, 0xe4, 0x08, 0x30, 0x90, 0xda, 0xf7, 0x8c, - 0xa1, 0x37, 0x9c, 0x64, 0x9e, 0xee, 0x80, 0x3e, 0xa9, 0x8d, 0x2d, 0x05, 0xa9, 0x05, 0xa9, 0x05, - 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x05, 0xa9, 0x85, 0x53, 0xcc, - 0x8f, 0xe1, 0xd0, 0xf5, 0x25, 0x37, 0x81, 0xd3, 0xce, 0x0c, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, - 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x05, 0xa5, 0x85, 0x53, 0xcc, 0x8f, - 0xa1, 0xf4, 0x5d, 0x11, 0x70, 0xc9, 0x1f, 0x0c, 0xd8, 0x97, 0xf4, 0xca, 0x56, 0x10, 0x5b, 0x10, - 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x10, 0x5b, 0x58, - 0x44, 0xd4, 0x45, 0xad, 0xaa, 0x10, 0x9e, 0x74, 0x25, 0xf7, 0x68, 0x6e, 0x80, 0xb2, 0x82, 0xce, - 0x77, 0x76, 0xef, 0x0e, 0xa3, 0x03, 0x28, 0x1d, 0x6f, 0xc8, 0x44, 0x67, 0x4a, 0x14, 0x6d, 0xc1, - 0xe4, 0x4f, 0xcf, 0xff, 0x61, 0x73, 0x11, 0x48, 0x57, 0x74, 0x98, 0xb3, 0xf8, 0x42, 0x90, 0x78, - 0xc5, 0x19, 0xfa, 0x9e, 0xf4, 0x3a, 0xde, 0x20, 0x88, 0xaf, 0x9c, 0x76, 0x7f, 0xe8, 0xf8, 0xbc, - 0xed, 0xb8, 0x3d, 0x6e, 0x07, 0x6e, 0x8f, 0x07, 0xf1, 0x95, 0xc3, 0x87, 0x0f, 0x25, 0x7b, 0x24, - 0x78, 0xc7, 0x0d, 0xa4, 0x23, 0x18, 0xef, 0x7f, 0x6f, 0x7b, 0x7e, 0x10, 0x5f, 0x39, 0x6e, 0xf7, - 0xdf, 0x29, 0x52, 0x79, 0x23, 0x69, 0x0f, 0x7d, 0xe6, 0xf8, 0xde, 0x48, 0xb2, 0x20, 0xfc, 0xe6, - 0x8c, 0xc4, 0x0f, 0xe1, 0xfd, 0x14, 0xb6, 0x2b, 0xa5, 0xcf, 0xdb, 0xd3, 0x1f, 0x24, 0x5e, 0x0a, - 0x4f, 0xd3, 0xc4, 0x19, 0x9a, 0x94, 0x2d, 0xa1, 0x72, 0xa6, 0xfe, 0x5f, 0xec, 0x89, 0x62, 0x53, - 0x5c, 0xeb, 0x82, 0x07, 0xb2, 0x2a, 0x25, 0xb1, 0x03, 0xff, 0xbf, 0x72, 0x71, 0x3e, 0x60, 0x13, - 0x46, 0x19, 0x58, 0xa7, 0x7b, 0x62, 0x34, 0x18, 0x10, 0x3a, 0x90, 0xf5, 0xab, 0xfb, 0x48, 0xd7, - 0xb8, 0xba, 0xdf, 0x65, 0x3e, 0xeb, 0x7e, 0x7a, 0x8a, 0x4c, 0x83, 0x13, 0xd2, 0x47, 0xcb, 0xed, - 0x46, 0x49, 0x8b, 0xd4, 0x59, 0xca, 0xfe, 0xa8, 0x23, 0x45, 0x94, 0x2d, 0x5c, 0x86, 0x4f, 0xae, - 0x16, 0x3d, 0xb8, 0xd6, 0x55, 0xf4, 0xb8, 0x5a, 0x9f, 0xfa, 0xc3, 0x56, 0x83, 0xb7, 0x5b, 0xd5, - 0x1e, 0xbf, 0x76, 0x7b, 0xbc, 0x55, 0x1b, 0x3e, 0x94, 0x6e, 0xc3, 0x47, 0xd4, 0xba, 0x8c, 0x1e, - 0x4c, 0xab, 0xda, 0xfd, 0xb7, 0xc1, 0xdb, 0xf5, 0x91, 0xbc, 0xf2, 0x59, 0xab, 0x31, 0x79, 0x1c, - 0xad, 0xdb, 0xf0, 0x6f, 0xaf, 0xc6, 0x7f, 0xfa, 0x07, 0x00, 0xb1, 0x7e, 0x0b, 0x34, 0x47, 0x1f, - 0x6a, 0x51, 0x67, 0x9b, 0xa2, 0x8d, 0x5e, 0x07, 0xd3, 0x37, 0xad, 0xf5, 0xdc, 0x59, 0x93, 0x23, - 0xcd, 0xb8, 0x73, 0xa8, 0xdd, 0xee, 0x4d, 0x26, 0xae, 0xcd, 0x75, 0xed, 0x13, 0xa5, 0x41, 0x98, - 0x49, 0x11, 0x64, 0x52, 0x84, 0x98, 0x06, 0x01, 0xd6, 0xe5, 0x29, 0x44, 0xa0, 0xc6, 0x58, 0x88, - 0xd1, 0xc8, 0x55, 0x33, 0xe6, 0xa6, 0x7a, 0x90, 0x52, 0x3d, 0x4e, 0xa9, 0xbd, 0xa3, 0x62, 0x3f, - 0xd7, 0xed, 0xdf, 0x06, 0xfa, 0xb5, 0xda, 0x79, 0xaf, 0x6e, 0xf6, 0xa9, 0xb9, 0x93, 0xa2, 0xf9, - 0xad, 0x6b, 0x5e, 0x9b, 0x34, 0x9f, 0x15, 0x42, 0x53, 0x66, 0x50, 0xa4, 0xc6, 0x19, 0xb3, 0x77, - 0x0d, 0x05, 0x6e, 0x61, 0xcd, 0xe6, 0x81, 0xed, 0x76, 0xbb, 0x3e, 0x0b, 0x02, 0x65, 0x8e, 0x11, - 0x2f, 0xa6, 0x27, 0x2c, 0x50, 0x14, 0x0c, 0xd4, 0x16, 0xba, 0x29, 0x2f, 0x5c, 0xd3, 0x51, 0x88, - 0xa6, 0xb7, 0xb0, 0x4c, 0x57, 0xa1, 0x98, 0xf6, 0xc2, 0x2f, 0xed, 0x85, 0x5c, 0xda, 0x0b, 0xb3, - 0xb6, 0x8b, 0xa6, 0x28, 0x2f, 0x84, 0x8a, 0xfd, 0x76, 0xc0, 0xdc, 0x9e, 0xcf, 0x7a, 0x2a, 0x9d, - 0x76, 0x56, 0xa8, 0x54, 0x56, 0x78, 0xcf, 0xab, 0x88, 0x89, 0x7d, 0xfc, 0x18, 0xd6, 0x56, 0x38, - 0x09, 0x0c, 0x02, 0x83, 0x58, 0x83, 0xc5, 0xb9, 0x92, 0xa9, 0xa7, 0x0d, 0xe1, 0x6d, 0xd5, 0x72, - 0x85, 0x1c, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0x1d, 0xae, 0x70, 0xc6, 0xd5, 0x2e, - 0x11, 0xe9, 0x4b, 0x18, 0xa9, 0x24, 0x8e, 0x9a, 0x12, 0x48, 0x6d, 0xe0, 0xa0, 0x13, 0x24, 0x68, - 0x80, 0x85, 0x6e, 0xd0, 0x20, 0x03, 0x1e, 0x64, 0x40, 0x84, 0x0c, 0x98, 0xa8, 0x05, 0x15, 0xc5, - 0xe0, 0xa2, 0x2f, 0x21, 0x4d, 0xf8, 0x3d, 0x1f, 0x6a, 0x8a, 0xf2, 0x73, 0xf4, 0x5f, 0xc3, 0x31, - 0x3f, 0xb3, 0x67, 0xaf, 0xe7, 0xf0, 0x1e, 0x8d, 0x6b, 0xfb, 0x2f, 0x23, 0xff, 0x50, 0xd0, 0x38, - 0xf6, 0x89, 0x39, 0x70, 0xa2, 0xd1, 0x86, 0x2b, 0x57, 0x4a, 0xe6, 0x0b, 0xed, 0x67, 0x39, 0x59, - 0xff, 0xec, 0xef, 0xdf, 0x1d, 0xd9, 0x95, 0xe6, 0xf3, 0x5d, 0xce, 0xae, 0x34, 0xc3, 0xcb, 0xdc, - 0xf4, 0x5b, 0x78, 0x9d, 0xbf, 0x3b, 0xb2, 0x0b, 0xb3, 0xeb, 0xe2, 0xdd, 0x91, 0x5d, 0x6c, 0x1e, - 0xfc, 0xfd, 0xf7, 0xc7, 0x83, 0x5f, 0xc7, 0xe3, 0xf5, 0x3f, 0xf8, 0x87, 0xbe, 0xf2, 0xbb, 0xe6, - 0x2e, 0x95, 0xf5, 0xd0, 0x70, 0xf6, 0x12, 0x9c, 0x9d, 0xa6, 0xb3, 0xbb, 0x76, 0xaf, 0x6a, 0x7f, - 0x69, 0xfe, 0xca, 0x1d, 0x16, 0xc6, 0xa7, 0x07, 0xbf, 0xca, 0xe3, 0xc5, 0x17, 0x9f, 0x97, 0xbd, - 0x2d, 0x77, 0x58, 0x1e, 0x9f, 0xae, 0xf8, 0x49, 0x69, 0x7c, 0xfa, 0xc6, 0xdf, 0x51, 0x1c, 0xef, - 0x27, 0xde, 0x3a, 0x79, 0x3d, 0xbf, 0xea, 0x03, 0x85, 0x15, 0x1f, 0x38, 0x5e, 0xf5, 0x81, 0xe3, - 0x15, 0x1f, 0x58, 0x69, 0x52, 0x7e, 0xc5, 0x07, 0x8a, 0xe3, 0xe7, 0xc4, 0xfb, 0xf7, 0x97, 0xbf, - 0xb5, 0x34, 0x3e, 0x78, 0x5e, 0xf5, 0xb3, 0xf2, 0xf8, 0xf9, 0xf4, 0x60, 0x07, 0x43, 0xdf, 0x87, - 0xed, 0xfe, 0x3b, 0x51, 0xb9, 0xf3, 0xce, 0x3c, 0x0f, 0x95, 0x3b, 0x89, 0xca, 0x1d, 0x85, 0xdb, - 0x82, 0x15, 0xac, 0x54, 0x7d, 0x30, 0x78, 0x9a, 0xce, 0xb6, 0x0e, 0x28, 0x56, 0x24, 0xd5, 0x6e, - 0x12, 0xd0, 0xb2, 0x19, 0x40, 0x4b, 0xd1, 0xbf, 0xda, 0xe2, 0xfe, 0xac, 0xe7, 0xa6, 0xe2, 0xd0, - 0x49, 0x39, 0x64, 0x5a, 0x4a, 0x96, 0xc3, 0x53, 0x2b, 0x6a, 0xcc, 0x36, 0xb6, 0x67, 0x17, 0x71, - 0xb3, 0xf9, 0xcd, 0x19, 0xf9, 0x89, 0x2a, 0xff, 0x20, 0xe8, 0x17, 0xd9, 0xcc, 0xaf, 0xf4, 0x47, - 0x3f, 0xdd, 0xdf, 0x98, 0xf2, 0x3c, 0xca, 0x7a, 0xfe, 0x90, 0x99, 0x37, 0x19, 0x04, 0xcf, 0x14, - 0x82, 0x65, 0xba, 0x73, 0x38, 0xbd, 0x99, 0x96, 0xe2, 0x2c, 0xcb, 0xa8, 0xc2, 0x2a, 0xd3, 0x4a, - 0xaa, 0x8c, 0x2a, 0xa6, 0x5e, 0x16, 0xbf, 0xf3, 0x29, 0xff, 0xe2, 0x0c, 0x17, 0xb7, 0xd5, 0x2c, - 0x5e, 0x67, 0xbd, 0x38, 0xad, 0x6c, 0xf1, 0x59, 0xd9, 0xe2, 0xb2, 0xb2, 0xc5, 0x63, 0xda, 0xf8, - 0x95, 0x55, 0x05, 0x91, 0x35, 0x43, 0x11, 0x3b, 0x8a, 0xef, 0x19, 0xcd, 0xcb, 0x99, 0x77, 0xcd, - 0xdf, 0x2e, 0xa3, 0x29, 0x93, 0x6d, 0xcd, 0x4f, 0xe6, 0xb5, 0x3d, 0x2a, 0x6a, 0x78, 0xd4, 0xd6, - 0xea, 0xa8, 0xaa, 0xc9, 0x51, 0x5e, 0x7b, 0xa3, 0xbc, 0xc6, 0x46, 0x79, 0x2d, 0x8d, 0x59, 0x69, - 0x62, 0xe6, 0x35, 0x30, 0x2f, 0x8b, 0xa0, 0x5d, 0x26, 0x24, 0x97, 0x4f, 0xd9, 0x6e, 0xc4, 0x88, - 0x19, 0x5a, 0x31, 0xc3, 0x7b, 0xd4, 0xa2, 0x3f, 0xe5, 0x93, 0x1b, 0x28, 0x70, 0xd1, 0xd9, 0x03, - 0xac, 0x7e, 0xa9, 0xb5, 0xae, 0x27, 0xff, 0xbb, 0xf9, 0xdf, 0xd5, 0x79, 0xd6, 0x6e, 0xfa, 0xcd, - 0x1d, 0x8c, 0x58, 0xa0, 0x64, 0x95, 0x56, 0xf1, 0x0e, 0x8b, 0xda, 0xd5, 0xb7, 0x52, 0xeb, 0xa2, - 0xfa, 0xe9, 0xfc, 0xe2, 0xfc, 0xac, 0x75, 0x7b, 0x59, 0xfb, 0x5c, 0xbd, 0xbe, 0xb1, 0xb6, 0x61, - 0xcb, 0x8a, 0xe2, 0xe7, 0x78, 0xdd, 0xb8, 0x39, 0x6f, 0x5d, 0xd5, 0x2f, 0x6a, 0x9f, 0xff, 0xd7, - 0x9a, 0x3c, 0x53, 0x3c, 0xc3, 0xf5, 0x9f, 0xe1, 0x45, 0xed, 0xf2, 0xaf, 0xeb, 0x9b, 0xea, 0xcd, - 0x39, 0x1e, 0xde, 0xbb, 0x1c, 0xb9, 0x00, 0x07, 0xde, 0x60, 0xf2, 0xe5, 0xbf, 0x5d, 0x5d, 0xb6, - 0xce, 0xbf, 0x5d, 0x5d, 0xe2, 0xe9, 0x6d, 0xe0, 0xba, 0xad, 0xeb, 0xab, 0x2f, 0x78, 0x80, 0x9b, - 0x3c, 0x40, 0xcc, 0xc0, 0xf7, 0x3d, 0xc0, 0xe3, 0x89, 0xff, 0x22, 0x0a, 0xa6, 0x11, 0x05, 0xbf, - 0x5d, 0x5d, 0x5c, 0xe3, 0xe9, 0x6d, 0x30, 0x07, 0x4b, 0x98, 0x83, 0x1b, 0x32, 0x19, 0xa4, 0x24, - 0x69, 0xce, 0xc6, 0xaf, 0xb7, 0x17, 0x37, 0x78, 0x8e, 0x9b, 0x23, 0x0b, 0x9e, 0x63, 0x7a, 0x29, - 0x72, 0x01, 0xcf, 0x70, 0xfd, 0x67, 0xf8, 0xed, 0xea, 0xf2, 0x5b, 0xa1, 0xf5, 0xe5, 0xa2, 0xfe, - 0x7f, 0xd7, 0x57, 0xe7, 0x9f, 0xf1, 0x04, 0xdf, 0x85, 0x2e, 0x40, 0xe7, 0x4d, 0xd1, 0x59, 0xe1, - 0x04, 0xcc, 0xf4, 0x0e, 0x4d, 0xd3, 0xd6, 0x3d, 0x50, 0x76, 0x95, 0xea, 0xef, 0xd7, 0x59, 0x76, - 0x95, 0x41, 0x65, 0x7f, 0x8a, 0x95, 0x4d, 0x1f, 0x08, 0x4d, 0x87, 0xf8, 0xc0, 0xab, 0x0c, 0x16, - 0xff, 0xb3, 0x29, 0xaf, 0xcf, 0xb4, 0x8c, 0x3e, 0xd3, 0x72, 0xf9, 0x6c, 0xca, 0xe2, 0xd3, 0x9a, - 0x08, 0x19, 0xc5, 0x03, 0x9d, 0x71, 0xc0, 0x4a, 0xb5, 0x86, 0xf0, 0x3d, 0x95, 0x96, 0xe9, 0xc4, - 0xa0, 0xcd, 0x23, 0xc6, 0x66, 0xbf, 0x61, 0xc3, 0x29, 0x96, 0xf6, 0xd4, 0xd2, 0x30, 0xa5, 0x36, - 0x1b, 0xc7, 0xf7, 0x3f, 0xfd, 0x0d, 0x9e, 0x7c, 0x78, 0x86, 0x61, 0xc0, 0xe4, 0xe6, 0x1d, 0xa6, - 0x5e, 0x4a, 0xc4, 0xe2, 0x5f, 0xb9, 0xe1, 0x8c, 0x48, 0xa7, 0xba, 0x35, 0xb5, 0x72, 0xaf, 0x34, - 0xcb, 0xba, 0xb2, 0x29, 0xdf, 0x4a, 0xbb, 0x4c, 0x2b, 0xb3, 0x72, 0xac, 0xcc, 0xca, 0xae, 0x32, - 0x2b, 0xaf, 0xd2, 0x1b, 0x1b, 0xd3, 0xaa, 0x1e, 0x8d, 0x7d, 0x33, 0xbd, 0x29, 0xb2, 0xe8, 0xf5, - 0x69, 0xcd, 0x90, 0x74, 0x4b, 0xdb, 0x53, 0xaf, 0xf9, 0xcc, 0xa2, 0xc6, 0x33, 0xdb, 0x9a, 0xce, - 0xac, 0x6a, 0x38, 0x33, 0xaf, 0xd9, 0xcc, 0xbc, 0x46, 0x33, 0xf3, 0x9a, 0x4c, 0x5a, 0xc9, 0x5c, - 0xda, 0xa5, 0xe8, 0x96, 0xdb, 0xef, 0xfb, 0xac, 0xef, 0x4a, 0xcf, 0xcf, 0x6e, 0xfb, 0xcc, 0xab, - 0x7b, 0x18, 0xb6, 0x87, 0xe6, 0x08, 0x7b, 0x68, 0xd4, 0x04, 0x22, 0x65, 0x01, 0x49, 0x59, 0x60, - 0x52, 0x16, 0xa0, 0xcc, 0x10, 0x23, 0x33, 0xdb, 0x43, 0x93, 0x6d, 0x73, 0x75, 0x25, 0xcd, 0xd4, - 0x33, 0x6e, 0x9e, 0x9e, 0xd9, 0x96, 0x40, 0x15, 0x61, 0x4d, 0x6d, 0x78, 0x53, 0x15, 0xe6, 0x94, - 0x87, 0x3b, 0xe5, 0x61, 0x4f, 0x79, 0xf8, 0xcb, 0x26, 0x0c, 0x66, 0x14, 0x0e, 0x33, 0x0f, 0x8b, - 0x2f, 0xfc, 0x4e, 0x51, 0x0f, 0xf2, 0x17, 0xb2, 0xa7, 0xa6, 0xb1, 0x8f, 0x9a, 0xd6, 0xe2, 0xca, - 0x5a, 0x89, 0xab, 0x6c, 0x1d, 0xae, 0xa7, 0x55, 0xb8, 0xea, 0xd6, 0xe0, 0xda, 0x5a, 0x81, 0x6b, - 0x6b, 0xfd, 0xad, 0xad, 0xd5, 0xb7, 0xd9, 0x9d, 0xc9, 0x94, 0xb5, 0xee, 0xd6, 0xd5, 0xb0, 0x59, - 0x65, 0xaf, 0x56, 0xe5, 0x3d, 0x59, 0xb7, 0xae, 0xd1, 0x72, 0xd3, 0xd4, 0x96, 0x56, 0x19, 0xb2, - 0x71, 0x57, 0x25, 0x7f, 0x01, 0x75, 0x01, 0x75, 0x01, 0x75, 0x01, 0x75, 0x01, 0x75, 0x59, 0x1a, - 0x1d, 0x6d, 0x31, 0xba, 0x6f, 0x33, 0x5f, 0x21, 0x6f, 0x51, 0x70, 0xee, 0xa5, 0xd5, 0x70, 0x45, - 0x5f, 0xdd, 0x21, 0x22, 0x0a, 0xdb, 0x33, 0x7f, 0xe5, 0x42, 0xc3, 0x11, 0x7e, 0x7a, 0xce, 0xfd, - 0x9a, 0x36, 0x9a, 0xd0, 0x70, 0xdf, 0x2f, 0xbe, 0xdb, 0x91, 0xdc, 0x13, 0x67, 0xbc, 0xcf, 0xa7, - 0xc5, 0x38, 0x47, 0xea, 0x7a, 0x98, 0x2b, 0x3c, 0x10, 0xf2, 0xab, 0xfb, 0xb8, 0x73, 0x53, 0xa9, - 0x90, 0xaf, 0x14, 0x2a, 0xa5, 0x72, 0xbe, 0x52, 0xdc, 0xa1, 0x39, 0xb5, 0x25, 0x0d, 0xd3, 0x91, - 0x49, 0x2d, 0xcb, 0xa4, 0x0a, 0x2a, 0x53, 0xa9, 0x02, 0x72, 0x29, 0xe4, 0x52, 0xc8, 0xa5, 0x90, - 0x4b, 0x21, 0x97, 0x42, 0x2e, 0x85, 0x5c, 0x0a, 0xb9, 0x14, 0x72, 0x29, 0xe4, 0x52, 0xc8, 0xa5, - 0x90, 0x4b, 0x29, 0xcb, 0xa5, 0x70, 0xd0, 0xca, 0x92, 0xfb, 0xa8, 0xdb, 0x5e, 0x37, 0xdb, 0x4e, - 0x16, 0x5f, 0x39, 0x2f, 0xc5, 0xe0, 0x59, 0x1e, 0xcf, 0x86, 0xbd, 0xfe, 0xdb, 0x38, 0x63, 0x28, - 0x1c, 0xb0, 0x22, 0xa5, 0x7f, 0xcd, 0x64, 0xab, 0xfa, 0x62, 0xd4, 0x0e, 0x9c, 0xaf, 0xe2, 0x06, - 0x76, 0x34, 0xf6, 0x59, 0x6d, 0x11, 0x89, 0x6e, 0x80, 0xfd, 0x21, 0xd8, 0x1f, 0x42, 0x42, 0xce, - 0xc1, 0xfe, 0x10, 0xb5, 0x00, 0x96, 0xdd, 0x19, 0x2b, 0x81, 0x1d, 0xb0, 0x7e, 0xf4, 0x80, 0xb3, - 0x3e, 0x60, 0xe5, 0xe5, 0x5e, 0x86, 0xef, 0x14, 0xc1, 0xe9, 0x2a, 0x44, 0x02, 0x9e, 0xf2, 0xc0, - 0xa7, 0x3c, 0x00, 0x2a, 0x0f, 0x84, 0x66, 0xe6, 0x86, 0x99, 0xef, 0x14, 0xc9, 0x76, 0x23, 0x5d, - 0xc2, 0x3b, 0xb3, 0xdc, 0x50, 0xa7, 0x28, 0x5c, 0x26, 0xc3, 0x66, 0x1e, 0xcb, 0x83, 0x66, 0x84, - 0x53, 0x6d, 0x61, 0x55, 0x5b, 0x78, 0xd5, 0x16, 0x66, 0xb3, 0x17, 0xf9, 0xf6, 0x14, 0x2c, 0x0f, - 0x66, 0x1d, 0x7e, 0xe3, 0x1b, 0xdd, 0xb3, 0xe9, 0x92, 0xe0, 0xa9, 0xea, 0xd6, 0xa4, 0xd1, 0x7d, - 0x15, 0x4d, 0x42, 0xb5, 0x4b, 0x11, 0xca, 0xea, 0x37, 0x74, 0x04, 0x6a, 0xbd, 0x01, 0x5b, 0x57, - 0xe0, 0xd6, 0x1e, 0xc0, 0xb5, 0x07, 0x72, 0xed, 0x01, 0x5d, 0x4d, 0x60, 0x57, 0x14, 0xe0, 0xe3, - 0xa7, 0xa9, 0xac, 0x0e, 0x64, 0x99, 0x7a, 0xa0, 0xac, 0x1e, 0x64, 0x31, 0x10, 0x97, 0x15, 0xde, - 0x52, 0x6d, 0x7d, 0xc8, 0xec, 0x4b, 0x6d, 0x58, 0xda, 0xd3, 0x55, 0x2f, 0xa2, 0x09, 0x61, 0x13, - 0xb7, 0xd7, 0x54, 0x3f, 0x12, 0xdf, 0x5f, 0xe3, 0x9a, 0xbf, 0xe2, 0x88, 0x35, 0x3f, 0xe5, 0x34, - 0xd4, 0x95, 0x50, 0x9b, 0x72, 0xba, 0xea, 0x4c, 0x48, 0xcd, 0xbd, 0x0f, 0xdb, 0x79, 0xb7, 0xe6, - 0x56, 0x71, 0x8d, 0x4c, 0xda, 0xa7, 0xbf, 0x05, 0x96, 0x32, 0xeb, 0x80, 0xfe, 0x96, 0x00, 0xa5, - 0xef, 0xe6, 0x99, 0xb4, 0x67, 0xd7, 0xef, 0x1c, 0x0a, 0xa6, 0xab, 0x25, 0x55, 0xd2, 0xe2, 0x98, - 0x12, 0x4f, 0xef, 0x0a, 0x49, 0x02, 0x92, 0x04, 0x24, 0x09, 0x48, 0x12, 0x90, 0x24, 0x74, 0x48, - 0x12, 0x43, 0x57, 0x7e, 0x9f, 0x55, 0x35, 0xd8, 0x0a, 0xe3, 0xf1, 0xeb, 0x98, 0x9c, 0x2b, 0x28, - 0xbc, 0xe7, 0xb9, 0x18, 0xdd, 0x4f, 0x9e, 0xf6, 0xb6, 0x94, 0x6e, 0x9b, 0xbd, 0xee, 0xa2, 0xa8, - 0x24, 0x3a, 0xbe, 0x9f, 0xd6, 0x42, 0xd7, 0xd0, 0xdb, 0x9c, 0x97, 0x32, 0xa2, 0x2c, 0x4b, 0xa4, - 0xb3, 0x9f, 0x1f, 0x66, 0x15, 0x58, 0x28, 0x49, 0xc6, 0x94, 0x26, 0x5f, 0x4a, 0x93, 0x2d, 0x35, - 0xc9, 0x15, 0x76, 0x5e, 0xa4, 0x19, 0x5e, 0xb2, 0xac, 0x8b, 0x7b, 0x6f, 0x5d, 0x7d, 0x70, 0x1d, - 0xd9, 0x86, 0x7d, 0x21, 0xf4, 0xe7, 0x35, 0x85, 0xf9, 0xbc, 0x1b, 0xfb, 0x2f, 0x0a, 0x99, 0x6f, - 0xc0, 0x28, 0x60, 0x07, 0x06, 0x76, 0x60, 0x10, 0x52, 0x37, 0xb0, 0x03, 0x43, 0x2d, 0x54, 0x64, - 0xb8, 0x03, 0xa3, 0xa0, 0x72, 0x0b, 0x46, 0x01, 0x7b, 0x30, 0xb4, 0x85, 0x38, 0xb5, 0xa1, 0x4e, - 0x55, 0xc8, 0x53, 0x1e, 0xfa, 0x94, 0x87, 0x40, 0xe5, 0xa1, 0xd0, 0x4c, 0x89, 0x00, 0x7b, 0x30, - 0xc8, 0x85, 0xcb, 0x64, 0xd8, 0xc4, 0x1e, 0x0c, 0x43, 0xc2, 0xa9, 0xb6, 0xb0, 0xaa, 0x2d, 0xbc, - 0x6a, 0x0b, 0xb3, 0xd9, 0x86, 0xdb, 0x8c, 0xc3, 0xae, 0xb2, 0xf0, 0x1b, 0xdf, 0x08, 0x7b, 0x30, - 0x0c, 0xe4, 0xb5, 0x3a, 0x03, 0xb5, 0xde, 0x80, 0xad, 0x2b, 0x70, 0x6b, 0x0f, 0xe0, 0xda, 0x03, - 0xb9, 0xf6, 0x80, 0xae, 0x26, 0xb0, 0x2b, 0x0a, 0xf0, 0xf1, 0xd3, 0xc4, 0x1e, 0x8c, 0xac, 0x6f, - 0x89, 0x3d, 0x18, 0xdb, 0x87, 0xb0, 0x89, 0xdb, 0x63, 0x0f, 0x06, 0xf6, 0x60, 0x68, 0x9a, 0x72, - 0xd8, 0x83, 0x81, 0x3d, 0x18, 0x66, 0x70, 0x0d, 0xec, 0xc1, 0xc0, 0x1e, 0x0c, 0x33, 0xa6, 0x2b, - 0xf6, 0x60, 0x40, 0x92, 0x80, 0x24, 0x01, 0x49, 0x02, 0x92, 0xc4, 0xae, 0x49, 0x12, 0xd8, 0x83, - 0x61, 0x3a, 0x3b, 0xc0, 0x1e, 0x8c, 0x35, 0xee, 0xa7, 0xb7, 0xa8, 0xb4, 0x30, 0xab, 0x92, 0x2e, - 0x60, 0x17, 0x86, 0xf2, 0x39, 0x87, 0x5d, 0x18, 0x26, 0xa4, 0x57, 0xd8, 0x85, 0x91, 0x6e, 0x80, - 0x21, 0xb9, 0x0f, 0xa3, 0x80, 0x8d, 0x18, 0xe6, 0x4c, 0x6d, 0x12, 0x53, 0x7a, 0x17, 0x76, 0x62, - 0x70, 0xd1, 0x65, 0x8f, 0xd9, 0x6d, 0xc3, 0x08, 0x7f, 0x7d, 0x36, 0x7b, 0x30, 0x8e, 0xb0, 0x07, - 0x03, 0x7b, 0x30, 0x88, 0xaa, 0x18, 0xd8, 0x83, 0x91, 0xad, 0xca, 0x10, 0xcf, 0xfb, 0x01, 0x73, - 0x7b, 0x3e, 0xeb, 0x65, 0x31, 0xe9, 0x67, 0x42, 0x41, 0x06, 0x75, 0x0c, 0xd6, 0x55, 0x04, 0x6c, - 0x1f, 0x3f, 0x86, 0xc9, 0x98, 0x13, 0x06, 0xca, 0x1d, 0x00, 0x9c, 0x6c, 0x4a, 0xc2, 0x33, 0x2d, - 0x01, 0xcf, 0x7c, 0xd3, 0x5f, 0x1e, 0x80, 0x03, 0xc0, 0x01, 0xe0, 0xa4, 0xf0, 0x14, 0xb2, 0xdb, - 0xf4, 0xc7, 0xfb, 0x43, 0x05, 0xbb, 0xfd, 0x78, 0x66, 0xab, 0x59, 0x19, 0xaf, 0x45, 0x62, 0x9b, - 0x1f, 0xb9, 0x20, 0xa7, 0x3c, 0xd8, 0x29, 0x0f, 0x7a, 0xca, 0x83, 0x5f, 0x76, 0x6a, 0xcf, 0x5e, - 0x86, 0x32, 0x64, 0xe6, 0x6b, 0x7d, 0xb1, 0xdf, 0x8c, 0xb8, 0x90, 0xa5, 0x42, 0x96, 0x3e, 0x13, - 0x45, 0xb1, 0x93, 0x0c, 0x6f, 0xa1, 0xa6, 0x96, 0x58, 0xc1, 0xba, 0x93, 0xca, 0x5a, 0x61, 0xd5, - 0xa5, 0x2e, 0x8a, 0x6b, 0x81, 0x75, 0xd4, 0x5f, 0xaa, 0x28, 0xc1, 0x52, 0x59, 0xdb, 0xab, 0x6b, - 0x8a, 0xe4, 0x4e, 0x0a, 0x85, 0x52, 0xb9, 0x50, 0x38, 0x2a, 0x1f, 0x97, 0x8f, 0x2a, 0xc5, 0x62, - 0xae, 0x94, 0x2b, 0x6e, 0xf1, 0xac, 0x31, 0x74, 0x59, 0xb7, 0x69, 0xca, 0xb2, 0x4c, 0x06, 0xd9, - 0xae, 0x2b, 0xbd, 0x7b, 0xde, 0xb1, 0x67, 0x07, 0x83, 0x33, 0x05, 0x89, 0xc6, 0xe2, 0x1d, 0x91, - 0x74, 0x20, 0xe9, 0x40, 0xd2, 0x81, 0xa4, 0xc3, 0xc0, 0xa4, 0xa3, 0xed, 0x79, 0x03, 0xe6, 0x0a, - 0x05, 0x59, 0x47, 0x2e, 0xb7, 0xc3, 0x20, 0xd5, 0x19, 0x8c, 0x02, 0xc9, 0x7c, 0x7b, 0xc0, 0x03, - 0x05, 0x7d, 0xaf, 0xe6, 0xee, 0x06, 0x70, 0x02, 0x38, 0x01, 0x9c, 0x00, 0x4e, 0x06, 0x82, 0x13, - 0x1f, 0x3e, 0x14, 0x6c, 0xb7, 0xdb, 0xf5, 0x59, 0x10, 0xa8, 0x40, 0xa8, 0x2c, 0x85, 0xb1, 0x2b, - 0x57, 0x4a, 0xe6, 0x8b, 0xcc, 0xa5, 0x31, 0xeb, 0x9f, 0xfd, 0xfd, 0xbb, 0x23, 0xbb, 0xd2, 0x7c, - 0xbe, 0xcb, 0xd9, 0x95, 0x66, 0x78, 0x99, 0x9b, 0x7e, 0x0b, 0xaf, 0xf3, 0x77, 0x47, 0x76, 0x61, - 0x76, 0x5d, 0xbc, 0x3b, 0xb2, 0x8b, 0xcd, 0x83, 0xbf, 0xff, 0xfe, 0x78, 0xf0, 0xeb, 0x78, 0xbc, - 0xfe, 0x07, 0xff, 0xb0, 0x4c, 0xcb, 0x69, 0x51, 0xaa, 0xbc, 0x86, 0xbc, 0xb5, 0x6d, 0xa5, 0xca, - 0x46, 0x70, 0xc5, 0x6c, 0xaa, 0x0a, 0x93, 0xc1, 0x35, 0x83, 0xea, 0x42, 0xb0, 0x43, 0xb0, 0x43, - 0xb0, 0x43, 0xb0, 0x43, 0xac, 0x97, 0xbe, 0xf5, 0x16, 0x58, 0x2f, 0xa5, 0x07, 0x2f, 0x89, 0xdb, - 0x61, 0xbd, 0x34, 0x2d, 0x42, 0x89, 0xf5, 0xd2, 0xed, 0x9a, 0x35, 0x58, 0x2f, 0x35, 0x2e, 0xbd, - 0x18, 0x78, 0x1d, 0x77, 0x60, 0x4f, 0xb8, 0x59, 0xf6, 0x39, 0xc6, 0xab, 0x7b, 0x21, 0xd1, 0x40, - 0xa2, 0x81, 0x44, 0x03, 0x89, 0x86, 0xa1, 0x89, 0xc6, 0x71, 0x5e, 0x41, 0xa2, 0x51, 0x46, 0xa2, - 0x81, 0x44, 0x03, 0x89, 0x06, 0x12, 0x8d, 0x37, 0x4c, 0x11, 0xd5, 0x4d, 0x55, 0x91, 0x5e, 0x20, - 0xbd, 0x78, 0xcb, 0x34, 0xb9, 0x67, 0xdd, 0xec, 0xf3, 0x8a, 0xc9, 0x4d, 0x90, 0x50, 0x20, 0xa1, - 0x40, 0x42, 0x81, 0x84, 0x02, 0x09, 0x05, 0x12, 0x0a, 0x24, 0x14, 0x48, 0x28, 0x90, 0x50, 0x20, - 0xa1, 0x40, 0x42, 0xb1, 0x7d, 0x09, 0x85, 0x60, 0x8f, 0xd2, 0xfe, 0xee, 0x29, 0x68, 0x20, 0x11, - 0xdf, 0x09, 0xa9, 0x05, 0x52, 0x0b, 0xa4, 0x16, 0x48, 0x2d, 0x0c, 0x4c, 0x2d, 0xf8, 0x50, 0x65, - 0xc1, 0x7c, 0x25, 0xc3, 0x7b, 0x44, 0xcf, 0xcc, 0xf8, 0xf4, 0x42, 0xf1, 0x66, 0x86, 0xc4, 0x18, - 0x9d, 0x28, 0xb8, 0x97, 0xaa, 0xcd, 0x0d, 0xf1, 0x0d, 0xb7, 0x65, 0x93, 0x43, 0xb6, 0x04, 0x4f, - 0x51, 0x8a, 0xa4, 0xd6, 0x89, 0x4a, 0x70, 0xa2, 0x74, 0x9d, 0xc8, 0xb5, 0x7b, 0x55, 0xfb, 0x4b, - 0xf3, 0x57, 0xee, 0xb0, 0x30, 0x3e, 0x3d, 0xf8, 0x55, 0x1e, 0x2f, 0xbe, 0xf8, 0xbc, 0xec, 0x6d, - 0xb9, 0xc3, 0xf2, 0xf8, 0x74, 0xc5, 0x4f, 0x4a, 0xe3, 0xd3, 0x37, 0xfe, 0x8e, 0xe2, 0x78, 0x3f, - 0xf1, 0xd6, 0xc9, 0xeb, 0xf9, 0x55, 0x1f, 0x28, 0xac, 0xf8, 0xc0, 0xf1, 0xaa, 0x0f, 0x1c, 0xaf, - 0xf8, 0xc0, 0x4a, 0x93, 0xf2, 0x2b, 0x3e, 0x50, 0x1c, 0x3f, 0x27, 0xde, 0xbf, 0xbf, 0xfc, 0xad, - 0xa5, 0xf1, 0xc1, 0xf3, 0xaa, 0x9f, 0x95, 0xc7, 0xcf, 0xa7, 0x07, 0x5b, 0x10, 0x52, 0x90, 0xeb, - 0x66, 0x90, 0xeb, 0x7a, 0x3e, 0xef, 0x67, 0xa8, 0x46, 0xbe, 0x64, 0x57, 0xe1, 0x7d, 0x90, 0xe7, - 0x22, 0xcf, 0x45, 0x9e, 0x8b, 0x3c, 0xd7, 0xc0, 0x3c, 0xb7, 0xdd, 0x1f, 0xda, 0x61, 0x14, 0xb3, - 0xa7, 0x47, 0x4f, 0x64, 0x7c, 0x10, 0x9a, 0x8a, 0x83, 0xcf, 0x32, 0x3e, 0xe8, 0xcc, 0x24, 0x04, - 0x74, 0xa5, 0xe7, 0xdb, 0xbc, 0xab, 0x0a, 0x08, 0x67, 0xb7, 0x03, 0x1e, 0x02, 0x0f, 0x81, 0x87, - 0xc0, 0x43, 0x03, 0xf1, 0x10, 0xad, 0x52, 0x76, 0x58, 0x45, 0x6c, 0xe2, 0x54, 0xb6, 0x34, 0x42, - 0xd9, 0x16, 0x9f, 0xca, 0x96, 0xc1, 0xa1, 0xa5, 0x34, 0x4f, 0xc8, 0x91, 0x23, 0x21, 0xd8, 0xc0, - 0x66, 0xa2, 0xe3, 0x0e, 0x83, 0xd1, 0x20, 0x9b, 0xe1, 0x7c, 0x39, 0x0e, 0x7f, 0xd9, 0xdd, 0x70, - 0x7e, 0x0e, 0xce, 0xcf, 0x21, 0xc1, 0x0a, 0x71, 0x7e, 0x8e, 0x5a, 0x00, 0xc9, 0xec, 0xfc, 0x9c, - 0x30, 0xcc, 0x04, 0xd9, 0xa7, 0xc3, 0xb3, 0x1b, 0x65, 0x9b, 0x08, 0xe7, 0x90, 0x08, 0x23, 0x11, - 0x46, 0x22, 0xbc, 0x4b, 0x89, 0x70, 0x56, 0xa1, 0x71, 0x21, 0x44, 0x66, 0x3f, 0x91, 0xe7, 0x23, - 0x65, 0xd6, 0xb3, 0x38, 0xdb, 0x80, 0xa9, 0x2c, 0x70, 0xaa, 0x0c, 0xa0, 0x7a, 0x02, 0xa9, 0xea, - 0x80, 0xaa, 0x2d, 0xb0, 0x6a, 0x0b, 0xb0, 0xda, 0x02, 0x6d, 0xb6, 0x01, 0x37, 0xe3, 0xc0, 0xab, - 0x2c, 0x00, 0xbf, 0xa8, 0x1c, 0x32, 0xcb, 0x33, 0x58, 0x56, 0x7a, 0x79, 0x16, 0x47, 0xd7, 0x6a, - 0x0e, 0xcb, 0x99, 0xa7, 0xea, 0x14, 0xc2, 0xb4, 0xde, 0x70, 0xad, 0x2b, 0x6c, 0x6b, 0x0f, 0xdf, - 0xda, 0xc3, 0xb8, 0xf6, 0x70, 0xae, 0x26, 0xac, 0x2b, 0x0a, 0xef, 0xca, 0xc3, 0xfc, 0x0b, 0xef, - 0xce, 0x7a, 0x85, 0xeb, 0xf7, 0x2c, 0x3c, 0xdb, 0xaa, 0x8f, 0xdf, 0x05, 0xff, 0x23, 0xc5, 0xb7, - 0x55, 0xc5, 0xd1, 0x29, 0x80, 0x01, 0x0d, 0x50, 0xd0, 0x0d, 0x0e, 0x64, 0x40, 0x82, 0x0c, 0x58, - 0x90, 0x01, 0x0d, 0xb5, 0xe0, 0xa1, 0x18, 0x44, 0xe2, 0xa7, 0x7c, 0xa3, 0x23, 0xb6, 0xcf, 0xf9, - 0x3d, 0xef, 0x32, 0x21, 0xb9, 0x7c, 0xca, 0xae, 0x81, 0xe8, 0x9b, 0x78, 0x7e, 0x51, 0xc3, 0xbd, - 0x6b, 0xd1, 0x9f, 0xfe, 0xc9, 0x0d, 0x34, 0x86, 0x9e, 0xd9, 0x40, 0xdc, 0xdc, 0x5e, 0x5e, 0x9e, - 0x5f, 0xb4, 0xce, 0x2f, 0x3f, 0x57, 0xaf, 0xae, 0x6f, 0x2f, 0xaa, 0x37, 0xb5, 0xfa, 0x65, 0xeb, - 0xe6, 0x7f, 0x57, 0xe7, 0xba, 0x42, 0xd1, 0xb4, 0x6b, 0x41, 0xa0, 0x6c, 0xaf, 0xcc, 0xb2, 0xaf, - 0x5f, 0xda, 0xee, 0x3c, 0x37, 0x34, 0xd7, 0x8d, 0x9b, 0xf3, 0xd6, 0x55, 0xfd, 0xa2, 0xf6, 0xf9, - 0x7f, 0xad, 0x70, 0x98, 0x2c, 0x6d, 0x86, 0x8d, 0xb5, 0xdc, 0xb9, 0xb9, 0xed, 0x71, 0x1f, 0xc9, - 0xd0, 0xfb, 0x58, 0x42, 0xb6, 0x05, 0x3d, 0x2b, 0xef, 0xab, 0xb3, 0xd0, 0x67, 0x59, 0x45, 0x4a, - 0xf4, 0x62, 0x10, 0x7d, 0xcf, 0xa2, 0x18, 0x48, 0xdf, 0x84, 0x52, 0xd1, 0xfe, 0x27, 0x18, 0xb5, - 0xe5, 0xe0, 0x21, 0xd0, 0xa0, 0x6a, 0x46, 0x37, 0xde, 0x72, 0x5d, 0xf3, 0x08, 0xba, 0xe6, 0x76, - 0xa5, 0xae, 0xd0, 0x35, 0xa1, 0x6b, 0xa6, 0xfa, 0x34, 0x95, 0xeb, 0x9a, 0x61, 0xe4, 0xd5, 0xa7, - 0x6c, 0x46, 0xf7, 0xd7, 0xa3, 0x6d, 0xe6, 0xa0, 0x6d, 0x6e, 0x39, 0x30, 0xe8, 0x06, 0x08, 0x32, - 0x40, 0x41, 0x06, 0x30, 0xc8, 0x00, 0x87, 0xa6, 0x1c, 0x57, 0xb1, 0xe7, 0xab, 0x06, 0x94, 0xf8, - 0xc6, 0x3e, 0xbb, 0xf7, 0x24, 0xb3, 0x99, 0xe8, 0x0e, 0x3d, 0x1e, 0x1e, 0xad, 0xab, 0x59, 0xdb, - 0x4b, 0x58, 0xa4, 0x69, 0xe2, 0xeb, 0x01, 0x1f, 0xed, 0x20, 0x44, 0x01, 0x8c, 0x68, 0x81, 0x12, - 0x15, 0x70, 0x22, 0x07, 0x52, 0xe4, 0xc0, 0x8a, 0x1c, 0x68, 0xe9, 0x01, 0x2f, 0x4d, 0x20, 0xa6, - 0x1d, 0xcc, 0x56, 0x81, 0x9a, 0x7e, 0x8f, 0x5d, 0x81, 0x6d, 0xba, 0xfd, 0x56, 0x2f, 0xc4, 0x91, - 0x81, 0x3a, 0x4a, 0x90, 0x47, 0x13, 0xfa, 0xa8, 0x41, 0x20, 0x59, 0x28, 0x24, 0x0b, 0x89, 0x64, - 0xa1, 0x51, 0x2f, 0x44, 0x6a, 0x86, 0x4a, 0x32, 0x90, 0x19, 0x1b, 0x42, 0x06, 0x33, 0x13, 0x81, - 0x90, 0x08, 0x68, 0x2e, 0x82, 0xe7, 0x11, 0x11, 0x73, 0xa8, 0x80, 0x28, 0x45, 0x30, 0xa5, 0x0d, - 0xaa, 0x54, 0xc1, 0x95, 0x3c, 0xc8, 0x92, 0x07, 0x5b, 0xf2, 0xa0, 0x4b, 0x03, 0x7c, 0x89, 0x80, - 0x70, 0x3c, 0x5a, 0xda, 0x0a, 0x4d, 0xff, 0x33, 0x6e, 0x0d, 0x98, 0xdb, 0xd3, 0x53, 0x7c, 0xfa, - 0x9f, 0x39, 0x64, 0x99, 0x90, 0x4d, 0x57, 0x51, 0xad, 0xd3, 0xc7, 0x8f, 0x61, 0x71, 0x91, 0x13, - 0x73, 0x87, 0x0f, 0xf0, 0x36, 0x22, 0x9e, 0xa6, 0x78, 0x67, 0xe6, 0x9b, 0x5d, 0x4c, 0xe5, 0xce, - 0x4d, 0x43, 0x04, 0x9a, 0x24, 0xc7, 0xcc, 0x83, 0x63, 0x82, 0x63, 0x82, 0x63, 0x82, 0x63, 0x82, - 0x63, 0x1a, 0x2e, 0xf8, 0xc4, 0x06, 0xb9, 0x01, 0xbd, 0xa0, 0x30, 0x0b, 0xa5, 0x6e, 0x40, 0x2d, - 0x1a, 0xd0, 0x12, 0x7f, 0x92, 0x00, 0x4d, 0xcd, 0x30, 0x82, 0x40, 0x6d, 0x06, 0x60, 0x53, 0x07, - 0x6e, 0x63, 0x00, 0xdc, 0x18, 0x20, 0x37, 0x06, 0xd0, 0x69, 0x01, 0x3b, 0x31, 0x80, 0x8f, 0x47, - 0x91, 0x9c, 0x98, 0xb4, 0x04, 0x5d, 0x6d, 0x31, 0xba, 0x6f, 0x33, 0x9f, 0x62, 0xd8, 0x8b, 0x80, - 0xb6, 0x4c, 0xd0, 0xb4, 0x86, 0x2b, 0xfa, 0x4c, 0xeb, 0x96, 0xdf, 0xdf, 0x7d, 0xd1, 0x84, 0x89, - 0xe9, 0x83, 0xfb, 0xca, 0x05, 0x59, 0x1c, 0x23, 0xce, 0xf0, 0x12, 0x66, 0xce, 0x8e, 0xcb, 0xa7, - 0x6e, 0xe7, 0x17, 0xdf, 0xed, 0x48, 0xee, 0x89, 0x33, 0xde, 0xe7, 0xd3, 0x2a, 0xe3, 0x23, 0xb2, - 0xf6, 0x8e, 0x0f, 0x09, 0xbb, 0x8e, 0xfb, 0x08, 0xd7, 0x49, 0xd9, 0x75, 0x0a, 0xf9, 0x4a, 0xa1, - 0x52, 0x2a, 0xe7, 0x2b, 0x45, 0xf8, 0xd0, 0x76, 0x72, 0x42, 0xba, 0x56, 0x35, 0x3f, 0xe0, 0xf9, - 0x10, 0x8f, 0xc1, 0xf4, 0x4a, 0xa2, 0x12, 0x0c, 0x9e, 0x58, 0x69, 0x14, 0x71, 0x20, 0x80, 0x4a, - 0xb6, 0xc9, 0x5c, 0x83, 0x4a, 0xb6, 0x91, 0x47, 0x40, 0x25, 0x4b, 0xd9, 0x50, 0xa8, 0x64, 0x5b, - 0x90, 0xe3, 0x18, 0xa0, 0x92, 0xf1, 0xa1, 0x82, 0xf3, 0x0c, 0x37, 0x45, 0xda, 0x5c, 0x85, 0xa0, - 0x6d, 0xd1, 0xd8, 0x42, 0x26, 0x7b, 0xf7, 0xcc, 0x53, 0x72, 0x96, 0x66, 0x6a, 0x73, 0xf0, 0x84, - 0xb0, 0x8d, 0xaa, 0xce, 0xf2, 0xdc, 0xd8, 0xd0, 0x6d, 0x39, 0x0b, 0x74, 0xbb, 0x12, 0x64, 0xa2, - 0xf0, 0x69, 0x56, 0x30, 0x2b, 0x21, 0x98, 0xed, 0x66, 0x30, 0x73, 0xed, 0x5e, 0xd5, 0xfe, 0xd2, - 0xfc, 0x95, 0x3b, 0x2c, 0x8c, 0x4f, 0x0f, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2f, 0x7b, 0x5b, - 0xee, 0xb0, 0x3c, 0x3e, 0x5d, 0xf1, 0x93, 0xd2, 0xf8, 0xf4, 0x8d, 0xbf, 0xa3, 0x38, 0xde, 0x4f, - 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, 0x0a, 0x2b, 0x3e, 0x70, 0xbc, 0xea, 0x03, 0xc7, 0x2b, - 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, 0x14, 0xc7, 0xcf, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, - 0x69, 0x7c, 0xf0, 0xbc, 0xea, 0x67, 0xe5, 0xf1, 0xf3, 0xe9, 0x01, 0x42, 0xbb, 0xd9, 0x79, 0xda, - 0x1e, 0x34, 0x62, 0xe2, 0x96, 0x50, 0x29, 0x28, 0xd5, 0xd4, 0x5d, 0xf8, 0x3f, 0xed, 0x22, 0xdf, - 0x7d, 0x38, 0xec, 0x69, 0x1b, 0x7d, 0x77, 0x16, 0xbb, 0x4f, 0x2d, 0xbe, 0xa0, 0xb2, 0x5b, 0x31, - 0x7d, 0x07, 0xd8, 0xed, 0x4d, 0xfb, 0x7f, 0xb1, 0x27, 0x42, 0xab, 0x2f, 0xd6, 0x05, 0x0f, 0x64, - 0x55, 0x4a, 0x22, 0x8d, 0x04, 0xbe, 0x72, 0x71, 0x3e, 0x60, 0xf7, 0x2c, 0xec, 0x29, 0x27, 0x46, - 0x83, 0x01, 0x81, 0x3d, 0x67, 0x5f, 0xdd, 0x47, 0x7a, 0x46, 0xd5, 0xfd, 0x2e, 0xf3, 0x59, 0xf7, - 0xd3, 0x53, 0x64, 0xd2, 0x4e, 0xfb, 0x14, 0x31, 0x18, 0xdb, 0x36, 0xf8, 0xb2, 0x48, 0x6c, 0xfc, - 0xf4, 0x47, 0x1d, 0x29, 0x22, 0x41, 0xe0, 0x32, 0x7c, 0x46, 0xb5, 0xe8, 0x11, 0xb5, 0xae, 0xa2, - 0x07, 0xd3, 0xfa, 0xd4, 0x1f, 0xb6, 0x1a, 0xbc, 0xdd, 0x9a, 0x84, 0xb4, 0x6b, 0x26, 0x5b, 0x37, - 0xd3, 0x3f, 0xf8, 0xfc, 0xf5, 0xc3, 0x88, 0x5e, 0x6b, 0x5d, 0x4f, 0xff, 0xf8, 0x56, 0x63, 0xfa, - 0xb7, 0x9e, 0x93, 0xd8, 0xeb, 0x3b, 0x46, 0xaf, 0xb9, 0x5d, 0x8a, 0x17, 0xa6, 0xc7, 0x09, 0x3d, - 0xce, 0xa2, 0x7e, 0xaa, 0x6a, 0x98, 0xa6, 0x56, 0xc0, 0xfa, 0x13, 0xc6, 0x61, 0x0f, 0x78, 0x40, - 0xa1, 0xbf, 0xee, 0xbc, 0x39, 0x68, 0xae, 0xab, 0xc5, 0x00, 0x34, 0xd7, 0x5d, 0xb4, 0x06, 0xcd, - 0x75, 0x57, 0x18, 0x84, 0xe6, 0xba, 0x20, 0x3c, 0xaf, 0x9e, 0xbe, 0xf6, 0xe6, 0xba, 0xaf, 0xf1, - 0x83, 0x4e, 0x67, 0xdd, 0x39, 0xab, 0xd0, 0x56, 0x17, 0x6d, 0x75, 0x4d, 0x00, 0x3d, 0x6a, 0xe0, - 0x47, 0x16, 0x04, 0xc9, 0x82, 0x21, 0x59, 0x50, 0xd4, 0xaf, 0x43, 0xec, 0xa1, 0xad, 0xee, 0x8b, - 0x21, 0xb3, 0xcc, 0xde, 0xe6, 0x5d, 0x7a, 0x2d, 0xcf, 0x5e, 0x1b, 0x87, 0xe6, 0xba, 0x94, 0xa1, - 0x94, 0x22, 0xa4, 0xd2, 0x86, 0x56, 0xaa, 0x10, 0x4b, 0x1e, 0x6a, 0xc9, 0x43, 0x2e, 0x79, 0xe8, - 0xa5, 0x01, 0xc1, 0x44, 0xa0, 0x38, 0x1e, 0x2d, 0x34, 0xd7, 0x7d, 0x47, 0x26, 0x49, 0xba, 0xb9, - 0xee, 0x6b, 0xfa, 0x80, 0xba, 0x18, 0x2a, 0xce, 0x36, 0x53, 0x44, 0x02, 0x82, 0x2d, 0x76, 0x67, - 0x96, 0xa1, 0xcb, 0x2e, 0xc8, 0x26, 0xc8, 0x26, 0xc8, 0x26, 0xc8, 0x26, 0xc8, 0xe6, 0x56, 0xeb, - 0x3f, 0x8b, 0xa0, 0x4c, 0xb7, 0x95, 0xc8, 0xcc, 0x40, 0x9a, 0x9d, 0x44, 0x72, 0xe8, 0x24, 0x62, - 0x2c, 0x64, 0x9b, 0x01, 0xdd, 0xd4, 0x21, 0xdc, 0x18, 0x28, 0x37, 0x06, 0xd2, 0x8d, 0x81, 0x76, - 0x5a, 0x10, 0x4f, 0x0c, 0xea, 0xc9, 0x42, 0x7e, 0x6c, 0x18, 0x17, 0x5d, 0x46, 0xb7, 0x79, 0xe3, - 0xab, 0xc5, 0xa0, 0x89, 0x99, 0x44, 0x5d, 0x94, 0x76, 0x67, 0x49, 0xb2, 0x74, 0xc0, 0x04, 0x5a, - 0x60, 0x16, 0x3d, 0x30, 0x85, 0x26, 0x18, 0x47, 0x17, 0x8c, 0xa3, 0x0d, 0xc6, 0xd1, 0x07, 0x9a, - 0x34, 0x82, 0x28, 0x9d, 0x88, 0x47, 0x97, 0x6c, 0x83, 0xb2, 0x44, 0xdc, 0xa4, 0xb7, 0x8c, 0xb5, - 0x32, 0x9b, 0x2f, 0xd3, 0x6e, 0xae, 0xb2, 0xb8, 0xcc, 0x35, 0x21, 0x46, 0xe8, 0x59, 0x61, 0xaa, - 0x1b, 0x13, 0x3b, 0x70, 0x72, 0xa5, 0xff, 0x52, 0x3a, 0x80, 0x72, 0xa5, 0xe7, 0x52, 0x27, 0xe0, - 0x79, 0x10, 0x70, 0x10, 0x70, 0x10, 0x70, 0x10, 0x70, 0x10, 0xf0, 0x2d, 0x21, 0xe0, 0x54, 0x75, - 0xbd, 0xd8, 0x40, 0xda, 0xfa, 0x5e, 0x22, 0xba, 0x53, 0xd6, 0xf9, 0x16, 0xe9, 0x06, 0xf5, 0x93, - 0x64, 0xa8, 0xeb, 0x7e, 0x26, 0xd1, 0x0f, 0x33, 0x69, 0x88, 0x69, 0x74, 0xc4, 0x58, 0x5a, 0x62, - 0x2c, 0x3d, 0x31, 0x96, 0xa6, 0xd0, 0xa6, 0x2b, 0xc4, 0x69, 0x4b, 0x3c, 0xea, 0xe4, 0xf5, 0xc3, - 0x44, 0xdc, 0x1d, 0x71, 0x21, 0x4b, 0x05, 0x13, 0x62, 0x6e, 0xc4, 0x12, 0x4e, 0x0c, 0x30, 0x95, - 0xf6, 0x99, 0xa1, 0x8b, 0x5f, 0x66, 0x60, 0xd8, 0x9e, 0x29, 0x67, 0x8a, 0x1a, 0x4a, 0x6f, 0x13, - 0x66, 0x1b, 0x72, 0xe6, 0x68, 0xc2, 0x6e, 0x83, 0xce, 0x4f, 0x34, 0x0c, 0xde, 0xe6, 0x5d, 0xd1, - 0x7d, 0x84, 0x2b, 0x2a, 0x76, 0xc5, 0xdc, 0x49, 0xa1, 0x50, 0x2a, 0x17, 0x0a, 0x47, 0xe5, 0xe3, - 0xf2, 0x51, 0xa5, 0x58, 0xcc, 0x95, 0x72, 0x45, 0x78, 0x27, 0xa8, 0xb1, 0x59, 0x56, 0x36, 0x3f, - 0xe0, 0xf9, 0x6d, 0x19, 0x3a, 0x58, 0x03, 0xaf, 0xe3, 0x0e, 0x6c, 0x2e, 0x24, 0xf3, 0x7b, 0x2e, - 0xad, 0x06, 0x18, 0xff, 0x99, 0x02, 0x2d, 0xb1, 0x1d, 0x82, 0x69, 0x1a, 0x66, 0x42, 0x30, 0xcd, - 0x70, 0xd6, 0x42, 0x30, 0xcd, 0xd4, 0xc3, 0x20, 0x98, 0x2a, 0x36, 0x1c, 0x82, 0xe9, 0x0e, 0x66, - 0x94, 0x86, 0x0a, 0xa6, 0xc7, 0x79, 0x83, 0x04, 0xd3, 0x32, 0x04, 0xd3, 0x94, 0xbf, 0x20, 0x98, - 0x82, 0xde, 0x2e, 0x31, 0x1b, 0x82, 0x29, 0xe0, 0xed, 0x77, 0xae, 0x08, 0xc1, 0x54, 0xb9, 0x2b, - 0x16, 0xf2, 0x95, 0x42, 0xa5, 0x54, 0xce, 0x57, 0x20, 0x93, 0x82, 0x10, 0x1b, 0x66, 0x25, 0x64, - 0xd2, 0xad, 0xc3, 0x84, 0x99, 0xd4, 0xf8, 0xfa, 0xa8, 0x7f, 0xd3, 0x64, 0xd2, 0xd7, 0xb6, 0x43, - 0x26, 0x4d, 0xc3, 0x4c, 0xc8, 0xa4, 0x19, 0xce, 0x5a, 0xc8, 0xa4, 0x99, 0x7a, 0x18, 0x64, 0x52, - 0xc5, 0x86, 0x43, 0x26, 0xdd, 0xc1, 0x3c, 0xd2, 0x40, 0x99, 0xd4, 0x20, 0x9e, 0xf0, 0x9a, 0x2b, - 0xe4, 0x4c, 0x28, 0x2f, 0xbd, 0x72, 0xa5, 0x64, 0xbe, 0x30, 0x46, 0x2f, 0xb5, 0xfe, 0xd9, 0xdf, - 0xbf, 0x3b, 0xb2, 0x2b, 0xcd, 0xe7, 0xbb, 0x9c, 0x5d, 0x69, 0x86, 0x97, 0xb9, 0xe9, 0xb7, 0xf0, - 0x3a, 0x7f, 0x77, 0x64, 0x17, 0x66, 0xd7, 0xc5, 0xbb, 0x23, 0xbb, 0xd8, 0x3c, 0xf8, 0xfb, 0xef, - 0x8f, 0x07, 0xbf, 0x8e, 0xc7, 0xeb, 0x7f, 0xf0, 0x0f, 0x0b, 0xa9, 0x1d, 0x52, 0x3b, 0x7d, 0xa9, - 0x5d, 0xc9, 0xe0, 0xd4, 0xae, 0x84, 0xd4, 0x0e, 0xa9, 0x1d, 0x52, 0x3b, 0xa4, 0x76, 0x48, 0xed, - 0x90, 0xda, 0x21, 0xb5, 0x43, 0x6a, 0xb7, 0x22, 0xb5, 0x2b, 0x21, 0xb5, 0x43, 0x6a, 0xf7, 0x3a, - 0xb5, 0x73, 0xed, 0x5e, 0xd5, 0xfe, 0xd2, 0xfc, 0x95, 0x3b, 0x2c, 0x8c, 0x4f, 0x0f, 0x7e, 0x95, - 0xc7, 0x8b, 0x2f, 0x3e, 0x2f, 0x7b, 0x5b, 0xee, 0xb0, 0x3c, 0x3e, 0x5d, 0xf1, 0x93, 0xd2, 0xf8, - 0xf4, 0x8d, 0xbf, 0xa3, 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, 0x07, 0x0a, 0x2b, - 0x3e, 0x70, 0xbc, 0xea, 0x03, 0xc7, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, 0x0f, 0x14, 0xc7, - 0xcf, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xbc, 0xea, 0x67, 0xe5, 0xf1, 0xf3, - 0xe9, 0x01, 0x12, 0x5d, 0x24, 0xba, 0x3a, 0x3c, 0xfe, 0x7e, 0x38, 0x08, 0xec, 0xb6, 0x67, 0x50, - 0x7a, 0x1b, 0x5b, 0x8c, 0xa4, 0x16, 0x49, 0x2d, 0x92, 0x5a, 0x24, 0xb5, 0x48, 0x6a, 0x91, 0xd4, - 0x22, 0xa9, 0x45, 0x52, 0xfb, 0x2a, 0xee, 0xb6, 0x3d, 0x6f, 0xc0, 0x5c, 0x61, 0x52, 0x3e, 0x9b, - 0x03, 0xb9, 0xde, 0x4e, 0x72, 0x2d, 0x3b, 0x86, 0x71, 0x6b, 0xd9, 0x01, 0xb5, 0x06, 0xb5, 0x06, - 0xb5, 0x06, 0xb5, 0x06, 0xb5, 0x06, 0xb5, 0x06, 0xb5, 0x06, 0xb5, 0x5e, 0xdc, 0x31, 0x7d, 0x62, - 0x10, 0xb1, 0x2e, 0x62, 0xc3, 0x74, 0xca, 0x5f, 0xd8, 0x30, 0x0d, 0x76, 0xbb, 0xc4, 0x6c, 0x6c, - 0x98, 0x06, 0xba, 0xfd, 0xce, 0x15, 0xb1, 0x61, 0x5a, 0xb9, 0x2b, 0x96, 0xe1, 0x8a, 0xa0, 0xc1, - 0x66, 0x59, 0x89, 0x1a, 0x83, 0xad, 0x83, 0x82, 0x48, 0x55, 0x94, 0x03, 0xd3, 0x74, 0x50, 0x39, - 0x80, 0x10, 0x9a, 0x8a, 0x99, 0x10, 0x42, 0x33, 0x9c, 0xab, 0x10, 0x42, 0x33, 0xf5, 0x30, 0x08, - 0xa1, 0x8a, 0x0d, 0x87, 0x10, 0xba, 0x83, 0xa9, 0x22, 0x84, 0xd0, 0xcc, 0x49, 0x02, 0x84, 0xd0, - 0xb4, 0xbf, 0x20, 0x84, 0x82, 0xdd, 0x2e, 0x31, 0x1b, 0x42, 0x28, 0xd0, 0xed, 0x77, 0xae, 0x08, - 0x21, 0x54, 0xb9, 0x2b, 0xe6, 0x8b, 0x68, 0x19, 0x09, 0x22, 0x6c, 0x98, 0x95, 0x90, 0x42, 0xb7, - 0x0e, 0x0c, 0x2c, 0x9f, 0xdd, 0x7b, 0x92, 0x19, 0xda, 0x33, 0x72, 0x99, 0xf1, 0x10, 0x48, 0xd3, - 0x30, 0x13, 0x02, 0x69, 0x86, 0xd3, 0x16, 0x02, 0x69, 0xa6, 0x1e, 0x06, 0x81, 0x54, 0xb1, 0xe1, - 0x10, 0x48, 0x77, 0x30, 0x85, 0x44, 0xd3, 0x48, 0x55, 0x5c, 0x01, 0x9d, 0x45, 0xb2, 0x30, 0x18, - 0x4d, 0x23, 0x91, 0xdc, 0xed, 0x4e, 0x72, 0x57, 0x32, 0x39, 0xb9, 0x43, 0xdb, 0x48, 0x24, 0x77, - 0x48, 0xee, 0x90, 0xdc, 0x21, 0xb9, 0x43, 0x72, 0x87, 0xe4, 0x0e, 0xc9, 0xdd, 0xaa, 0xe4, 0x0e, - 0x6d, 0x23, 0x91, 0xdc, 0xcd, 0x25, 0x77, 0x68, 0x1b, 0x89, 0xb6, 0x91, 0x48, 0x75, 0x77, 0x22, - 0xd5, 0x0d, 0x78, 0xd7, 0x9c, 0xd4, 0x76, 0x62, 0x2c, 0x52, 0x59, 0xa4, 0xb2, 0x48, 0x65, 0x91, - 0xca, 0x22, 0x95, 0x45, 0x2a, 0x8b, 0x54, 0x16, 0xa9, 0xec, 0x6b, 0x7a, 0xe0, 0xdb, 0x01, 0xef, - 0xda, 0x72, 0x62, 0xb8, 0x41, 0x99, 0x6c, 0xc5, 0x00, 0x5b, 0xa3, 0xc9, 0x80, 0xed, 0x1c, 0x19, - 0x4d, 0xdd, 0xe9, 0x3e, 0xe5, 0x81, 0xdb, 0x66, 0x03, 0xcb, 0xa0, 0x0a, 0x78, 0x83, 0x66, 0xb0, - 0x99, 0x33, 0xd9, 0xbc, 0x19, 0x9d, 0x98, 0xd9, 0x23, 0x2e, 0xe4, 0x71, 0xde, 0x3a, 0x34, 0xef, - 0x2f, 0x88, 0x66, 0x77, 0xd9, 0x40, 0xd3, 0xcd, 0xda, 0x7e, 0x67, 0xfe, 0x6c, 0x8f, 0x1f, 0xbc, - 0x89, 0xdb, 0xf3, 0x0c, 0xd5, 0x30, 0xfe, 0xf3, 0xcf, 0x98, 0xed, 0x19, 0xca, 0x95, 0x0c, 0xff, - 0x43, 0x0c, 0xde, 0x42, 0x64, 0x58, 0xd2, 0xf3, 0x7b, 0xdf, 0x36, 0x70, 0xbf, 0xdf, 0xd6, 0xfb, - 0xf6, 0x51, 0xe1, 0xa4, 0x58, 0x2e, 0xc2, 0xc1, 0xc9, 0x38, 0xf8, 0x07, 0x58, 0xad, 0xe2, 0xab, - 0xf9, 0x01, 0x61, 0x1f, 0x04, 0x34, 0x99, 0x6e, 0x31, 0x31, 0xba, 0x67, 0xbe, 0x3b, 0x89, 0x26, - 0x06, 0xe7, 0x5c, 0xb9, 0x82, 0x81, 0xb6, 0x9f, 0x8b, 0xd1, 0xfd, 0x84, 0x20, 0x98, 0x15, 0x4c, - 0xcc, 0xb1, 0xd6, 0x8c, 0x90, 0x67, 0x48, 0xa8, 0x33, 0x50, 0x23, 0x35, 0xac, 0x52, 0x2d, 0x11, - 0xd3, 0x4e, 0x0c, 0xb2, 0xd9, 0xb4, 0xca, 0xb5, 0xd8, 0x70, 0x54, 0xb0, 0xa1, 0x82, 0x6d, 0x6b, - 0xa0, 0x04, 0x15, 0x81, 0x5b, 0xfa, 0xfc, 0x28, 0x57, 0x04, 0x4a, 0x13, 0xd6, 0xfd, 0x63, 0x52, - 0x60, 0xc0, 0x62, 0x3f, 0x6a, 0x02, 0xd3, 0x26, 0x27, 0xa8, 0x09, 0xcc, 0xd8, 0x6a, 0xd4, 0x04, - 0x2a, 0x32, 0x1c, 0x35, 0x81, 0xe0, 0x04, 0xe6, 0x88, 0x07, 0x06, 0xd6, 0x04, 0x9a, 0xa5, 0x87, - 0x9a, 0xa4, 0x7f, 0x1a, 0xa2, 0x77, 0x12, 0x4e, 0x02, 0x3e, 0x20, 0x04, 0xad, 0x01, 0x38, 0x42, - 0x78, 0x32, 0xf4, 0x63, 0xca, 0x01, 0xc8, 0x0a, 0x3a, 0xdf, 0xd9, 0xbd, 0x3b, 0x74, 0xe5, 0xf7, - 0x49, 0xf8, 0x71, 0xbc, 0x21, 0x13, 0x9d, 0x29, 0xb1, 0xb6, 0x05, 0x93, 0x3f, 0x3d, 0xff, 0x87, - 0xcd, 0x45, 0x20, 0x5d, 0xd1, 0x61, 0xce, 0xe2, 0x0b, 0x41, 0xe2, 0x15, 0x67, 0xe8, 0x7b, 0xd2, - 0xeb, 0x78, 0x83, 0x20, 0xbe, 0x72, 0xda, 0xfd, 0xa1, 0xe3, 0xf3, 0xb6, 0xe3, 0x4a, 0xe9, 0xdb, - 0x01, 0x93, 0x41, 0x7c, 0xe5, 0xc8, 0x91, 0x10, 0x6c, 0x60, 0x33, 0xd1, 0x71, 0x87, 0xc1, 0x68, - 0x30, 0x7d, 0x5a, 0xd1, 0x8b, 0x41, 0xf4, 0xdd, 0x09, 0x46, 0x6d, 0x39, 0x78, 0x08, 0xa2, 0xef, - 0x4e, 0xc0, 0xfa, 0x13, 0x18, 0xb7, 0x07, 0x3c, 0x90, 0xc1, 0xdc, 0xbf, 0x66, 0xff, 0x88, 0x5f, - 0x75, 0x02, 0xe9, 0x4a, 0x46, 0x13, 0xe2, 0xe9, 0xf9, 0x12, 0x2d, 0x8b, 0x88, 0x79, 0xf5, 0x84, - 0xb0, 0x4f, 0x25, 0x7d, 0xd1, 0x65, 0xd4, 0xb8, 0xba, 0x75, 0xc1, 0x03, 0x59, 0x95, 0xd2, 0x27, - 0x19, 0x67, 0xac, 0xaf, 0x5c, 0x9c, 0x0f, 0xd8, 0xd4, 0x31, 0xad, 0xd3, 0x3d, 0x31, 0x1a, 0x0c, - 0x0e, 0x09, 0x1a, 0xe9, 0x3e, 0xd2, 0x37, 0xb2, 0xee, 0x77, 0x99, 0xcf, 0xba, 0x9f, 0x9e, 0x22, - 0x13, 0xe1, 0xb0, 0xe6, 0xc2, 0xef, 0x16, 0xc3, 0x2e, 0xc1, 0xb4, 0xc5, 0x0a, 0xa4, 0x3f, 0xea, - 0x48, 0x11, 0xe5, 0x58, 0x97, 0xe1, 0xe3, 0xab, 0x45, 0x4f, 0xaf, 0x75, 0x15, 0x3d, 0xb3, 0xd6, - 0xa7, 0xfe, 0xb0, 0xd5, 0xe0, 0xed, 0xd6, 0x24, 0x9a, 0x5e, 0x33, 0xd9, 0xba, 0x99, 0x3e, 0x8b, - 0xf3, 0xd7, 0xcf, 0x29, 0x7a, 0xad, 0x75, 0x3d, 0x7d, 0x2e, 0xad, 0xeb, 0xf0, 0x6f, 0x9e, 0x84, - 0xe0, 0xd9, 0x35, 0x2d, 0xc2, 0x41, 0x07, 0xd6, 0x69, 0x58, 0x42, 0x24, 0x4e, 0x51, 0x8d, 0x4f, - 0x5b, 0x18, 0x97, 0x68, 0xf8, 0xa3, 0xfe, 0xd9, 0x4f, 0x60, 0xe6, 0x5b, 0x61, 0x46, 0x46, 0x65, - 0xc2, 0xbf, 0x6c, 0xc4, 0x9d, 0x9a, 0x45, 0x24, 0x32, 0xcc, 0x24, 0x35, 0x22, 0xe6, 0xc4, 0xab, - 0x6c, 0x79, 0x22, 0x06, 0x11, 0x5c, 0x4d, 0xa3, 0xbd, 0x6a, 0x46, 0x75, 0x75, 0x8c, 0xfc, 0x2a, - 0x18, 0xf9, 0xd5, 0x2e, 0xf2, 0xab, 0x5a, 0xe0, 0x7c, 0xaf, 0x47, 0xeb, 0x8c, 0xd3, 0xd2, 0x68, - 0xac, 0x19, 0x4f, 0xb3, 0x09, 0x36, 0xd5, 0x7a, 0x29, 0xa3, 0x7d, 0x65, 0x24, 0x35, 0x55, 0x90, - 0x64, 0xa1, 0x0c, 0xd9, 0xc2, 0x18, 0xca, 0x85, 0x30, 0x66, 0x14, 0xbe, 0x50, 0x2f, 0x74, 0x31, - 0xa6, 0xb0, 0xc5, 0x98, 0x42, 0x16, 0x63, 0x0a, 0x57, 0xb0, 0x7e, 0xf4, 0xbb, 0x51, 0x24, 0x5b, - 0x88, 0x32, 0xd7, 0xf7, 0xa4, 0x54, 0xa0, 0x18, 0xf3, 0x22, 0x94, 0x25, 0xb8, 0x1d, 0x85, 0x78, - 0xdf, 0x12, 0xc2, 0x55, 0x07, 0x26, 0xf4, 0x1d, 0x31, 0xa5, 0x0e, 0xda, 0x90, 0x63, 0xbf, 0x4d, - 0xea, 0x1a, 0x40, 0x79, 0xbf, 0x83, 0x09, 0x6d, 0x3d, 0x4c, 0x73, 0x9d, 0xdc, 0x49, 0xa1, 0x50, - 0x2a, 0x17, 0x0a, 0x47, 0xe5, 0xe3, 0xf2, 0x51, 0xa5, 0x58, 0xcc, 0x95, 0x72, 0x45, 0x78, 0xd3, - 0x76, 0x52, 0x43, 0xba, 0x56, 0x35, 0xb1, 0x72, 0x4c, 0x3d, 0x1a, 0x5b, 0x3f, 0x19, 0xef, 0x7f, - 0x97, 0x74, 0xd5, 0xb2, 0xc8, 0x3e, 0x08, 0x65, 0x6f, 0x31, 0x0b, 0x42, 0xd9, 0x06, 0x33, 0x0d, - 0x42, 0xd9, 0x46, 0x1e, 0x01, 0xa1, 0x2c, 0x65, 0x43, 0x21, 0x94, 0x6d, 0x41, 0xa6, 0x63, 0x88, - 0x50, 0x46, 0xb2, 0x41, 0x30, 0xe1, 0x06, 0xc0, 0x10, 0xca, 0xde, 0x9d, 0xed, 0x43, 0x28, 0x4b, - 0x3d, 0xdb, 0x87, 0x50, 0xb6, 0xad, 0xf0, 0x31, 0xef, 0x3a, 0x10, 0xca, 0x52, 0x77, 0x9d, 0x42, - 0xbe, 0x52, 0xa8, 0x94, 0xca, 0xf9, 0x0a, 0xe4, 0xb1, 0x2d, 0x25, 0x84, 0x74, 0xad, 0x82, 0x3c, - 0x46, 0xd9, 0x12, 0x6c, 0xac, 0xf8, 0xbd, 0x5d, 0x5b, 0xb4, 0xb1, 0x82, 0xce, 0xb6, 0x6a, 0x02, - 0xbb, 0x2a, 0x3e, 0xec, 0xb0, 0xd3, 0xbd, 0x6c, 0x8b, 0xa6, 0x52, 0xa2, 0x49, 0x6b, 0x33, 0x34, - 0xc9, 0xcd, 0xcf, 0x24, 0x37, 0x3b, 0xd3, 0xda, 0xdc, 0xac, 0xdb, 0xad, 0x88, 0x61, 0xd8, 0xf6, - 0x60, 0x97, 0x45, 0x62, 0x0f, 0x5c, 0xf6, 0x7b, 0x91, 0xf5, 0xa2, 0xb3, 0x3e, 0x4c, 0xd4, 0x73, - 0x67, 0x4d, 0xe1, 0x82, 0x4a, 0x98, 0x30, 0x3a, 0x3c, 0xe8, 0xf1, 0x14, 0xf5, 0xf3, 0x54, 0xc3, - 0x1c, 0xd5, 0xbc, 0xdb, 0x97, 0xc4, 0xee, 0x5e, 0xcd, 0xbb, 0x79, 0xb5, 0xef, 0xde, 0xa5, 0x50, - 0xc9, 0x40, 0xab, 0x62, 0x81, 0x4a, 0x65, 0x02, 0xb9, 0x0a, 0x04, 0x72, 0x95, 0x06, 0xe4, 0x2a, - 0x0a, 0x76, 0x8b, 0xdd, 0xe8, 0xde, 0x2d, 0x6b, 0xb5, 0xb9, 0xe8, 0x72, 0xd1, 0xb7, 0x03, 0x02, - 0xbb, 0x63, 0xe3, 0x18, 0xf6, 0xda, 0x28, 0xdd, 0xe2, 0x0f, 0x89, 0xa5, 0x2b, 0x32, 0x45, 0x7c, - 0x94, 0x8a, 0xf6, 0x68, 0x16, 0xe9, 0x51, 0x2b, 0xca, 0x23, 0x5b, 0x84, 0x47, 0xb6, 0xe8, 0x8e, - 0x6c, 0x91, 0xdd, 0x6e, 0xcb, 0xf0, 0x64, 0x8a, 0xe6, 0x5e, 0x72, 0x2e, 0x7f, 0x82, 0x50, 0x36, - 0x91, 0xd3, 0x4e, 0xe2, 0x2c, 0xac, 0x42, 0xc0, 0x96, 0x68, 0xb0, 0x68, 0x54, 0xc2, 0x11, 0xec, - 0xa1, 0x74, 0x3f, 0x1c, 0x04, 0xf6, 0xc0, 0x6d, 0xb3, 0x01, 0xa5, 0x1e, 0x4a, 0x84, 0x66, 0x10, - 0xcd, 0x99, 0x44, 0x6f, 0x46, 0x25, 0x66, 0x16, 0x2a, 0x77, 0xdf, 0x61, 0x1a, 0x2a, 0x77, 0xdf, - 0xf9, 0xe0, 0x50, 0xb9, 0x9b, 0x9e, 0x99, 0xf1, 0x3e, 0xdd, 0x12, 0xca, 0x0e, 0xb7, 0x84, 0xb4, - 0xfe, 0xde, 0x77, 0x50, 0xba, 0x9b, 0xbe, 0xef, 0x1c, 0x15, 0x4e, 0x8a, 0x65, 0xd4, 0xed, 0x6e, - 0x49, 0xce, 0x69, 0x8e, 0x55, 0x4d, 0x6c, 0x78, 0x33, 0x92, 0x2e, 0xd3, 0x3e, 0x8a, 0x8c, 0xf2, - 0xd1, 0x63, 0x44, 0x8f, 0x1a, 0xa3, 0x63, 0x4d, 0x13, 0x25, 0xeb, 0x14, 0x43, 0xc0, 0x4b, 0xcf, - 0xd5, 0xe1, 0x43, 0xc9, 0x76, 0xbb, 0x5d, 0x9f, 0x05, 0x01, 0x45, 0x15, 0x86, 0x50, 0x2f, 0x38, - 0xeb, 0xca, 0x95, 0x92, 0xf9, 0x82, 0x5c, 0x8a, 0x6c, 0xfd, 0xb3, 0xbf, 0xec, 0x70, 0xfd, 0xf2, - 0x78, 0xf1, 0xc5, 0x15, 0x67, 0xf0, 0x97, 0xc7, 0xa7, 0x2b, 0x7e, 0x52, 0x1a, 0x9f, 0xbe, 0xf1, - 0x77, 0x14, 0x57, 0x9c, 0xe3, 0x9f, 0x5f, 0xf5, 0x81, 0xc2, 0x8a, 0x0f, 0x1c, 0xaf, 0xfa, 0xc0, - 0xf1, 0x8a, 0x0f, 0xac, 0x34, 0x29, 0xbf, 0xe2, 0x03, 0xc5, 0xf1, 0x73, 0xe2, 0xfd, 0xfb, 0xcb, - 0xdf, 0x5a, 0x1a, 0x1f, 0x3c, 0xaf, 0xfa, 0x59, 0x79, 0xfc, 0x7c, 0x7a, 0x70, 0xf0, 0x87, 0x85, - 0x50, 0x4b, 0x0c, 0x7a, 0x9a, 0xbb, 0x5a, 0x12, 0xab, 0xb1, 0xd4, 0xa9, 0xe3, 0x0d, 0x3c, 0x3f, - 0xa0, 0x53, 0x3c, 0x11, 0xd9, 0x83, 0xba, 0x09, 0xd4, 0x4d, 0xfc, 0xc7, 0x4c, 0x41, 0xdd, 0xc4, - 0x6f, 0x67, 0x30, 0xea, 0x26, 0xd6, 0x34, 0x0c, 0x75, 0x13, 0x04, 0x13, 0x30, 0x82, 0x75, 0x13, - 0x64, 0x96, 0x28, 0x09, 0x2d, 0x49, 0x12, 0x5b, 0x82, 0x24, 0x94, 0xae, 0x53, 0x5c, 0x62, 0xa4, - 0xda, 0xeb, 0x91, 0x68, 0xf3, 0x1f, 0xca, 0x0b, 0x1e, 0x94, 0xfa, 0xae, 0x52, 0x5c, 0x11, 0xa4, - 0x3e, 0xd5, 0xa9, 0x36, 0xeb, 0x21, 0x3d, 0xe7, 0x21, 0x97, 0x50, 0x90, 0x4b, 0xd0, 0x45, 0x62, - 0x1e, 0xe6, 0xd1, 0x45, 0xe2, 0x4d, 0x46, 0xd1, 0xea, 0x22, 0xb1, 0x93, 0x9a, 0xdf, 0xd0, 0x67, - 0x3d, 0xe6, 0x33, 0x41, 0x61, 0x8b, 0xe3, 0x2c, 0xab, 0x7a, 0x65, 0x93, 0xe6, 0xc0, 0x72, 0xc6, - 0x7a, 0xee, 0x68, 0x30, 0x95, 0x01, 0x72, 0x47, 0x47, 0x50, 0x22, 0xf7, 0xa0, 0x44, 0xfe, 0xc7, - 0xdc, 0x85, 0x12, 0xf9, 0xdb, 0x19, 0x0c, 0x25, 0x72, 0x4d, 0xc3, 0xa0, 0x44, 0x52, 0x24, 0x9c, - 0x50, 0x22, 0xff, 0x13, 0xa5, 0xa0, 0x44, 0x2e, 0x7e, 0x41, 0x89, 0x34, 0x5a, 0x9e, 0x81, 0x12, - 0x69, 0x4a, 0x78, 0x5e, 0x4c, 0x7c, 0x31, 0xd5, 0xd7, 0x9c, 0xea, 0x50, 0x22, 0x4d, 0x23, 0x44, - 0x74, 0xac, 0x40, 0xe1, 0x96, 0x7a, 0xb7, 0x90, 0x14, 0xe8, 0x68, 0x4c, 0x45, 0x09, 0x74, 0x11, - 0x80, 0x54, 0x02, 0xa9, 0x04, 0x52, 0x09, 0xa4, 0x12, 0x48, 0x25, 0x90, 0x4a, 0x12, 0x71, 0x87, - 0x77, 0x99, 0x90, 0x5c, 0x3e, 0xf9, 0xac, 0x47, 0xa9, 0xd9, 0x0d, 0x01, 0xae, 0x6d, 0xd5, 0xa2, - 0x47, 0xf3, 0xc9, 0x0d, 0x08, 0x85, 0xc2, 0xd9, 0xc0, 0xdd, 0xdc, 0x5e, 0x5e, 0x9e, 0x5f, 0xb4, - 0xce, 0x2f, 0x3f, 0x57, 0xaf, 0xae, 0x6f, 0x2f, 0xaa, 0x37, 0xb5, 0xfa, 0x65, 0xeb, 0xfa, 0xf6, - 0xd3, 0xcd, 0xc5, 0xb7, 0xd6, 0xcd, 0xff, 0xae, 0xce, 0xa9, 0x44, 0xc8, 0x69, 0x1a, 0x15, 0x90, - 0xda, 0x61, 0x44, 0xf4, 0xf8, 0xe3, 0xeb, 0xc6, 0xcd, 0x79, 0xeb, 0x53, 0xed, 0xf2, 0xac, 0x76, - 0xf9, 0x67, 0xeb, 0xba, 0x76, 0x66, 0x41, 0xc2, 0x30, 0x66, 0xec, 0x22, 0x6f, 0xfc, 0x5c, 0xbf, - 0xa8, 0x37, 0x30, 0x6e, 0xc6, 0x8d, 0x5b, 0xe3, 0xfc, 0x6b, 0xfd, 0xe6, 0xbc, 0x75, 0x7e, 0x79, - 0x76, 0x55, 0xaf, 0x5d, 0xde, 0x60, 0x04, 0x0d, 0x8b, 0x9a, 0x57, 0x8d, 0xf3, 0x2f, 0xe7, 0x8d, - 0xf3, 0xcb, 0xcf, 0xe7, 0x18, 0x3a, 0xc3, 0x86, 0xee, 0xfa, 0xfc, 0xcf, 0xaf, 0xe7, 0x97, 0x37, - 0xad, 0x8b, 0xda, 0x35, 0x25, 0xbf, 0x23, 0x61, 0x49, 0x73, 0xd7, 0xd3, 0x35, 0xb4, 0x2b, 0x57, - 0x23, 0x16, 0xe0, 0x30, 0x96, 0x77, 0x1d, 0xc6, 0xa2, 0xef, 0x30, 0xc1, 0xdd, 0x38, 0x84, 0x45, - 0xab, 0x94, 0x4f, 0x41, 0xc2, 0xd7, 0x2c, 0xdd, 0x6b, 0x97, 0xec, 0x71, 0x04, 0x4b, 0xc2, 0x1a, - 0x1c, 0xc1, 0xb2, 0xc2, 0x20, 0x1c, 0xc1, 0x02, 0x4e, 0xf3, 0xea, 0xe9, 0x6b, 0x97, 0xda, 0xe3, - 0xb8, 0x31, 0x60, 0x6e, 0x4f, 0xaf, 0xbc, 0x1e, 0xcb, 0xea, 0x1a, 0xeb, 0x10, 0xad, 0xab, 0x88, - 0xd6, 0x7d, 0xfc, 0x18, 0x12, 0x27, 0x67, 0x8a, 0xab, 0xbb, 0xc2, 0x9e, 0x3e, 0x6c, 0xb1, 0xcf, - 0xcd, 0x8e, 0x52, 0xd6, 0x40, 0x94, 0xf4, 0xee, 0x76, 0x23, 0xb1, 0xbb, 0x8d, 0xc4, 0x6e, 0x36, - 0xbd, 0xbb, 0xd7, 0x54, 0xcf, 0x77, 0xcd, 0xf9, 0xb2, 0x61, 0x79, 0xb2, 0xa5, 0xe5, 0xf8, 0xce, - 0x6c, 0x0e, 0x2a, 0x56, 0x8b, 0x57, 0xea, 0x50, 0x43, 0xcd, 0x9d, 0x14, 0xf9, 0xa9, 0x2e, 0xff, - 0x34, 0xc5, 0x2f, 0xd5, 0x4c, 0xe2, 0xec, 0xa7, 0x94, 0x82, 0xe9, 0xa4, 0x56, 0x82, 0xd2, 0x21, - 0x39, 0x29, 0x96, 0x98, 0x94, 0x4b, 0x4a, 0x3a, 0x24, 0x24, 0xbd, 0x92, 0x91, 0x2e, 0x89, 0x48, - 0xbb, 0x24, 0xa4, 0x5d, 0x02, 0xd2, 0x2e, 0xf9, 0x6c, 0x17, 0x8c, 0x2b, 0x97, 0x70, 0x34, 0x4a, - 0x36, 0x3a, 0x24, 0x1a, 0x9d, 0x92, 0x8c, 0x02, 0x76, 0xf0, 0xc1, 0x60, 0x1f, 0x50, 0x28, 0xa9, - 0xa8, 0x95, 0x50, 0xb4, 0x48, 0x26, 0x5a, 0x24, 0x12, 0xb5, 0x92, 0x48, 0xd6, 0xf3, 0x51, 0x71, - 0x4a, 0x45, 0x3d, 0x95, 0x52, 0x80, 0x0c, 0xe9, 0x6b, 0x18, 0xd9, 0x46, 0xf6, 0xec, 0xe2, 0x6d, - 0x36, 0xbf, 0x39, 0x23, 0x8f, 0x51, 0xe5, 0x29, 0x64, 0x3d, 0x24, 0x9b, 0x59, 0x96, 0xfe, 0x1c, - 0x48, 0xf7, 0x37, 0xa6, 0x3c, 0x9b, 0xb2, 0x9e, 0x45, 0xe4, 0x66, 0x4f, 0x06, 0x01, 0x35, 0xc5, - 0x00, 0x9a, 0xee, 0x9c, 0x4e, 0x6f, 0xe6, 0xa5, 0xf3, 0x9b, 0x52, 0x9a, 0xbb, 0x33, 0xce, 0xca, - 0x45, 0x97, 0xa5, 0x95, 0xfa, 0x67, 0x43, 0x4e, 0x33, 0x25, 0xa1, 0x99, 0x92, 0xcd, 0x6c, 0x48, - 0x65, 0x5a, 0x13, 0x20, 0xa3, 0xa0, 0xa5, 0x33, 0x58, 0xa5, 0x18, 0x97, 0xde, 0x19, 0x8f, 0xd2, - 0x89, 0x3d, 0x9b, 0x47, 0x8a, 0xcd, 0x7e, 0xc3, 0x86, 0x53, 0x2c, 0xed, 0xa9, 0xa5, 0x61, 0x4a, - 0x6d, 0x36, 0x8e, 0xef, 0x7f, 0xfa, 0x1b, 0x3c, 0x79, 0xab, 0xe3, 0xdd, 0xdf, 0x8f, 0x04, 0x97, - 0x9c, 0x6d, 0x7e, 0x12, 0xd2, 0xab, 0x93, 0x8c, 0x5e, 0x7e, 0xe9, 0x86, 0xb3, 0x62, 0x26, 0x9a, - 0x6d, 0xf8, 0x6b, 0xd2, 0x5a, 0x93, 0x48, 0x73, 0xad, 0x21, 0x9b, 0x35, 0x84, 0xb4, 0xd7, 0x06, - 0x32, 0xd3, 0xfc, 0x33, 0xd3, 0xf2, 0x33, 0xd3, 0xe8, 0xf5, 0xc6, 0xc7, 0x33, 0x9e, 0x0e, 0x45, - 0x8a, 0xbd, 0xf3, 0x29, 0xbd, 0x39, 0xb2, 0xe8, 0xf8, 0x4f, 0x69, 0xcd, 0x91, 0x74, 0xdc, 0x3f, - 0xf5, 0x30, 0x90, 0x45, 0x38, 0xc8, 0x36, 0x2c, 0x64, 0x15, 0x1e, 0x32, 0x0f, 0x13, 0x99, 0x87, - 0x8b, 0xcc, 0xc3, 0x06, 0xcd, 0x54, 0x2e, 0xad, 0x70, 0x12, 0xff, 0xc2, 0x30, 0x29, 0x4c, 0x7d, - 0x5e, 0xc5, 0x6d, 0x4c, 0x52, 0xcc, 0x39, 0x17, 0xc3, 0x4b, 0xca, 0x85, 0x0a, 0x99, 0x55, 0x40, - 0x64, 0x59, 0xe9, 0xa0, 0xa6, 0xa2, 0x21, 0xeb, 0xca, 0x05, 0x65, 0x15, 0x0a, 0xca, 0x2a, 0x11, - 0x94, 0x55, 0x1c, 0xd0, 0x56, 0x4b, 0x33, 0xab, 0x14, 0x50, 0x50, 0x11, 0x90, 0xe5, 0xca, 0x7f, - 0x72, 0x85, 0x3f, 0x0c, 0x94, 0x54, 0xe5, 0xcc, 0x54, 0xc5, 0x16, 0x57, 0xb2, 0xec, 0x00, 0x27, - 0xfc, 0xf5, 0xd9, 0x00, 0x4e, 0x2e, 0x2b, 0xc0, 0xc9, 0x03, 0x70, 0x00, 0x38, 0x00, 0x1c, 0x82, - 0xfc, 0x38, 0xc3, 0xf4, 0x5b, 0x59, 0x3a, 0xae, 0x88, 0x3f, 0x67, 0xce, 0xa3, 0x55, 0x84, 0x37, - 0xb5, 0x61, 0x4e, 0x55, 0xb8, 0x53, 0x1e, 0xf6, 0x94, 0x87, 0x3f, 0xe5, 0x61, 0x30, 0x9b, 0x70, - 0x98, 0x51, 0x58, 0xcc, 0x9e, 0x8f, 0x27, 0xfc, 0x66, 0x24, 0xb2, 0x29, 0x1e, 0x48, 0x70, 0xb2, - 0x4a, 0x86, 0xf7, 0x88, 0x1e, 0x57, 0xb6, 0x1d, 0x32, 0x15, 0x14, 0xed, 0xcd, 0x06, 0xa5, 0xdd, - 0x1f, 0xda, 0x3f, 0xd9, 0x60, 0x60, 0xff, 0x10, 0xde, 0x4f, 0x61, 0xc7, 0x40, 0x63, 0x2b, 0xda, - 0xd7, 0xa2, 0xb2, 0x8d, 0xac, 0x9e, 0x36, 0xb1, 0xf1, 0xa3, 0xfe, 0xf4, 0xe7, 0x55, 0xeb, 0xff, - 0xce, 0x2f, 0x2e, 0x5a, 0x7f, 0x5d, 0xd6, 0xff, 0xef, 0xb2, 0x75, 0x7d, 0x73, 0xd6, 0xfa, 0x5c, - 0xff, 0xfa, 0xf5, 0xf6, 0xb2, 0x76, 0xf3, 0x3f, 0x55, 0x3b, 0x88, 0x34, 0xb4, 0x78, 0x55, 0xbc, - 0xb3, 0x65, 0xf6, 0xb4, 0x2f, 0xeb, 0xad, 0xf3, 0xff, 0xf7, 0xaa, 0xde, 0xb8, 0x69, 0x5d, 0xdf, - 0x7e, 0xfa, 0x5c, 0xbf, 0xfc, 0x72, 0xae, 0xb0, 0x4b, 0xab, 0xc2, 0x5d, 0xce, 0xfa, 0x1e, 0x6f, - 0xf5, 0xec, 0xdb, 0x79, 0xe3, 0xa6, 0x76, 0x7d, 0x8e, 0xe7, 0x9a, 0xc1, 0xb4, 0xc5, 0x43, 0x4d, - 0xf3, 0xa1, 0x5e, 0x9d, 0x9f, 0x37, 0xb6, 0x6d, 0x6f, 0x57, 0x13, 0xfb, 0x72, 0x08, 0x91, 0xa8, - 0x40, 0x76, 0x35, 0xb2, 0xa7, 0x8a, 0x82, 0x7b, 0x29, 0xa1, 0xbe, 0xea, 0x23, 0x85, 0xbe, 0xa3, - 0x28, 0x35, 0x1c, 0x39, 0xa9, 0xe9, 0x68, 0x49, 0x3d, 0xfd, 0x7e, 0xf4, 0xf5, 0xa3, 0xd4, 0xdc, - 0x0b, 0x52, 0xf3, 0xd1, 0x8f, 0x14, 0x8e, 0xbb, 0x1b, 0xeb, 0xe9, 0xee, 0xb4, 0xf3, 0x53, 0x4e, - 0xf7, 0x11, 0x8c, 0x24, 0xe6, 0xde, 0x96, 0x76, 0x1e, 0x6a, 0x6e, 0x53, 0xcb, 0x02, 0x0d, 0x04, - 0x23, 0x90, 0x3e, 0x17, 0x7d, 0x1d, 0x9d, 0x0a, 0x4e, 0xd4, 0x76, 0x2a, 0x90, 0xcc, 0x17, 0xca, - 0x39, 0x86, 0xf5, 0xcf, 0x7e, 0xa9, 0x58, 0x3c, 0xbe, 0x3b, 0xb2, 0x8b, 0xcd, 0xe7, 0x52, 0xb1, - 0x78, 0x77, 0x64, 0xe7, 0x9b, 0x77, 0x47, 0x76, 0x65, 0xf2, 0xaf, 0xc2, 0xf4, 0xe2, 0x57, 0x7e, - 0xfc, 0x5c, 0x9a, 0xfc, 0xa0, 0xd0, 0x7c, 0xf9, 0xf7, 0xab, 0x7f, 0x1e, 0x8f, 0x9f, 0xef, 0x72, - 0x76, 0x31, 0xfa, 0x57, 0x61, 0xfa, 0xaf, 0x4a, 0xf4, 0xaf, 0xdc, 0xe1, 0xe4, 0xa7, 0x93, 0xcb, - 0x83, 0x53, 0x55, 0x37, 0xfa, 0xc3, 0xda, 0x36, 0xdf, 0xfe, 0x60, 0xf6, 0xdf, 0x91, 0x9d, 0xfd, - 0x4d, 0xa3, 0x16, 0x8d, 0x94, 0xf4, 0xa1, 0x50, 0xda, 0x7f, 0x42, 0x69, 0xdf, 0x09, 0x35, 0xfd, - 0x26, 0x32, 0xd8, 0x87, 0x9d, 0x41, 0x59, 0x4f, 0x36, 0xd5, 0xc6, 0x09, 0xec, 0xcd, 0xa2, 0xea, - 0x58, 0x11, 0xf7, 0x46, 0xf5, 0xc4, 0xfa, 0x77, 0x43, 0xf5, 0x44, 0x5a, 0x37, 0x44, 0xf5, 0xc4, - 0xef, 0x9e, 0x8e, 0xc2, 0xea, 0x09, 0x2e, 0x64, 0xa9, 0xa0, 0xa0, 0x7c, 0x22, 0xc3, 0x5c, 0x41, - 0x91, 0xfa, 0xa8, 0xa6, 0x35, 0x96, 0xba, 0x02, 0x02, 0xc5, 0x6d, 0x3f, 0x15, 0xab, 0x87, 0x3a, - 0x14, 0x9b, 0xb1, 0x9a, 0x46, 0x66, 0x5b, 0x3f, 0x45, 0x72, 0x27, 0x85, 0x42, 0xa9, 0x5c, 0x28, - 0x1c, 0x95, 0x8f, 0xcb, 0x47, 0x95, 0x62, 0x31, 0x57, 0x52, 0x75, 0x1c, 0xb4, 0x96, 0x59, 0x83, - 0xdc, 0x32, 0xdb, 0xf4, 0x02, 0x6d, 0x9e, 0x54, 0xb4, 0xb9, 0x78, 0xd5, 0xd4, 0x21, 0xbe, 0x7e, - 0xca, 0xe2, 0x84, 0x3c, 0x34, 0x4f, 0xd2, 0xac, 0xa8, 0xa0, 0x79, 0x52, 0x36, 0x13, 0xc0, 0xf8, - 0xe6, 0x49, 0x4b, 0x43, 0x80, 0xc6, 0xfe, 0x49, 0x9f, 0x63, 0x1b, 0xd0, 0x41, 0xc9, 0xe4, 0x0e, - 0x4a, 0xaf, 0xfb, 0x05, 0x19, 0xd8, 0x43, 0x89, 0x3d, 0x4a, 0x3b, 0x93, 0x3e, 0x4a, 0x8b, 0xbf, - 0x18, 0xbd, 0x94, 0xd4, 0xea, 0x84, 0xe8, 0xa5, 0x84, 0x5e, 0x4a, 0x6f, 0x77, 0xfd, 0x0c, 0xfa, - 0x29, 0xcd, 0xff, 0x7a, 0xf4, 0x54, 0xa2, 0x15, 0x1e, 0xb2, 0x0a, 0x13, 0x99, 0x87, 0x8b, 0xcc, - 0xc3, 0x46, 0xe6, 0xe1, 0x83, 0x66, 0x86, 0x87, 0x9e, 0x4a, 0xe8, 0xa9, 0xa4, 0x2e, 0xec, 0x64, - 0x1d, 0x7e, 0x94, 0x85, 0x21, 0x65, 0xe1, 0x48, 0x59, 0x58, 0x32, 0x43, 0x9a, 0x44, 0x4f, 0xa5, - 0x55, 0x21, 0x01, 0x3d, 0x95, 0xd0, 0x53, 0x09, 0x3d, 0x95, 0x00, 0x38, 0x00, 0x9c, 0x54, 0x9f, - 0x42, 0x66, 0x3d, 0x95, 0xb2, 0x49, 0xc3, 0x95, 0xa6, 0xe5, 0x8a, 0x78, 0x74, 0xe6, 0x7c, 0x5a, - 0x45, 0x98, 0x53, 0x1b, 0xee, 0x54, 0x85, 0x3d, 0xe5, 0xe1, 0x4f, 0x79, 0x18, 0x54, 0x1e, 0x0e, - 0xb3, 0x09, 0x8b, 0x19, 0x85, 0xc7, 0xec, 0x79, 0x79, 0xc2, 0x6f, 0xda, 0xfd, 0xa1, 0x3d, 0x17, - 0xcc, 0x6c, 0x9f, 0x75, 0x1e, 0xb2, 0xde, 0x86, 0x8e, 0x8e, 0x4b, 0xa9, 0x0c, 0x15, 0x9a, 0x05, - 0x90, 0x1f, 0xbd, 0x25, 0x09, 0x10, 0xf6, 0xf2, 0x65, 0x78, 0x63, 0x85, 0x7b, 0xf9, 0xe2, 0x1d, - 0xcb, 0xe1, 0xdd, 0x66, 0xff, 0xbc, 0x3b, 0xb2, 0x4f, 0xa2, 0x5b, 0x46, 0x2f, 0xdd, 0x1d, 0xd9, - 0xb9, 0x97, 0x7b, 0x85, 0x2f, 0xde, 0x1d, 0xd9, 0xa5, 0x97, 0x1b, 0x4e, 0x5f, 0x9b, 0xfe, 0x9a, - 0xf8, 0xae, 0x93, 0x97, 0x5e, 0x7e, 0xd5, 0xaf, 0xe2, 0xf4, 0x95, 0xbb, 0x23, 0xfb, 0x38, 0x7a, - 0xa1, 0x34, 0x7e, 0x2e, 0xbc, 0xfa, 0xc5, 0xe5, 0xa9, 0x9d, 0xb3, 0x1f, 0x56, 0x16, 0xac, 0x3e, - 0xd9, 0xde, 0x8d, 0x81, 0xd8, 0xf4, 0x8b, 0x40, 0xf1, 0xbe, 0x40, 0xb1, 0x1f, 0x3a, 0xe9, 0x8b, - 0xa3, 0x3c, 0xe7, 0xa6, 0xdf, 0xc2, 0xeb, 0xfc, 0x4b, 0x48, 0x78, 0xce, 0x17, 0xa7, 0xbe, 0x79, - 0xf0, 0xf7, 0xdf, 0x1f, 0x0f, 0x7e, 0x1d, 0x8f, 0xd7, 0xff, 0x20, 0x36, 0xfe, 0xc2, 0xbf, 0xe1, - 0xdf, 0x8a, 0xfd, 0xdb, 0x44, 0x7c, 0x46, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x50, 0x1b, 0x28, 0x7c, - 0x6f, 0x24, 0xd9, 0xdf, 0x7f, 0xdb, 0xd2, 0xf5, 0xfb, 0x4c, 0x9e, 0x22, 0x81, 0x40, 0x02, 0x81, - 0xb8, 0x81, 0xb8, 0xb1, 0x76, 0xdc, 0x40, 0x3e, 0x01, 0x77, 0x87, 0xbb, 0xef, 0x8c, 0xbb, 0x23, - 0xbd, 0x40, 0xdc, 0x40, 0xdc, 0x40, 0xdc, 0x78, 0x6b, 0xdc, 0xf0, 0x7c, 0xde, 0xe7, 0x02, 0xe9, - 0x05, 0xd2, 0x0b, 0xc4, 0x0d, 0xc4, 0x8d, 0xf5, 0xe3, 0x06, 0xd2, 0x0b, 0xb8, 0x3b, 0xdc, 0x7d, - 0x67, 0xdc, 0x1d, 0xe9, 0x05, 0xe2, 0x06, 0xe2, 0x06, 0xe2, 0xc6, 0x7f, 0xc5, 0x8d, 0x8e, 0x37, - 0xf0, 0xfc, 0xd3, 0xa9, 0xaf, 0xfe, 0xca, 0x8f, 0xc1, 0xfa, 0x69, 0xb8, 0xb3, 0xe9, 0xed, 0xca, - 0xb7, 0xe7, 0x84, 0x2d, 0x2e, 0x5c, 0xff, 0x49, 0x61, 0x91, 0xac, 0x8a, 0x1a, 0xd9, 0x0b, 0x26, - 0xfa, 0xd3, 0xfd, 0x89, 0x5b, 0x57, 0x25, 0xab, 0xe3, 0xf0, 0x25, 0x4d, 0x27, 0xe0, 0xc4, 0xbd, - 0x30, 0x4f, 0x14, 0xdf, 0x57, 0xe3, 0x41, 0x37, 0x0a, 0x0f, 0x57, 0xd2, 0x72, 0xa8, 0x12, 0xa6, - 0xd2, 0x96, 0x1d, 0x95, 0x89, 0x73, 0x47, 0xd4, 0xda, 0x8d, 0x73, 0x47, 0xd6, 0x89, 0x6f, 0x38, - 0x77, 0x44, 0xfd, 0x74, 0xc2, 0xb9, 0x23, 0xff, 0xfd, 0xeb, 0xb1, 0xb3, 0x78, 0xed, 0xbb, 0x61, - 0x67, 0x71, 0x5a, 0x37, 0xc4, 0xce, 0xe2, 0xdf, 0x3d, 0x1d, 0x9c, 0x3b, 0xb2, 0xd6, 0x2d, 0x70, - 0xee, 0x08, 0xfd, 0x2c, 0x08, 0xe7, 0x8e, 0x98, 0x97, 0x30, 0xe3, 0xdc, 0x11, 0x9c, 0x3b, 0xa2, - 0x3c, 0xb7, 0xc4, 0xb9, 0x23, 0xa9, 0xfe, 0x7e, 0x65, 0xcd, 0xe1, 0x17, 0x9a, 0xa0, 0xcf, 0xfd, - 0x1b, 0xe7, 0x8f, 0xac, 0x47, 0xfe, 0x71, 0xfe, 0x08, 0xce, 0x1f, 0x31, 0xf8, 0xfc, 0x91, 0xdf, - 0x86, 0x02, 0x8d, 0xe7, 0x90, 0x9c, 0x3f, 0x4a, 0x1c, 0x45, 0x92, 0xe5, 0x54, 0xd3, 0x36, 0xc5, - 0xb4, 0x1d, 0x47, 0xf2, 0x41, 0xe1, 0xa8, 0xa5, 0x35, 0x5a, 0xca, 0x46, 0x69, 0x03, 0x57, 0x5f, - 0xd3, 0xb5, 0xdf, 0x37, 0xfe, 0xeb, 0x8f, 0xde, 0x7a, 0x9f, 0x58, 0x73, 0x9c, 0x37, 0x1d, 0x5f, - 0x25, 0xe3, 0xfa, 0x8e, 0x31, 0x5d, 0x63, 0x2c, 0xd7, 0x1b, 0xc7, 0xb7, 0x8f, 0xc6, 0x1a, 0x23, - 0x61, 0x75, 0x66, 0xba, 0xf8, 0x7a, 0x23, 0x10, 0x4b, 0x6a, 0xd1, 0xe7, 0xd7, 0x1c, 0xfb, 0xf7, - 0x75, 0x47, 0x7e, 0xb7, 0x88, 0xbf, 0x89, 0x38, 0xff, 0x5a, 0x74, 0x17, 0x4c, 0x4e, 0x26, 0xcc, - 0x7b, 0x66, 0xc5, 0x86, 0x62, 0x7a, 0x6a, 0x22, 0x79, 0x6a, 0xe2, 0xf7, 0xa2, 0xa8, 0x3d, 0x7b, - 0x36, 0xc4, 0xa2, 0xcc, 0x7b, 0xbb, 0xfb, 0x5a, 0x5d, 0xd6, 0x73, 0x47, 0x03, 0x69, 0xdf, 0x33, - 0xe9, 0xf3, 0xce, 0xfb, 0x07, 0x6e, 0x36, 0x7d, 0x16, 0x7e, 0xdf, 0x3b, 0x1f, 0xfa, 0x66, 0x1a, - 0xd5, 0xc6, 0xab, 0x60, 0x69, 0xac, 0x72, 0xa5, 0xe3, 0x50, 0x69, 0x39, 0x56, 0xea, 0x0e, 0x96, - 0xba, 0xa3, 0xa5, 0xee, 0x70, 0x7a, 0xe8, 0xdc, 0xc6, 0xab, 0x3c, 0x73, 0xab, 0x38, 0xc7, 0xf9, - 0x4d, 0xe6, 0x4c, 0xe4, 0x45, 0x1b, 0x9c, 0xd2, 0x90, 0xd2, 0x2a, 0x4c, 0x0a, 0x49, 0x48, 0x9a, - 0xab, 0x28, 0x29, 0x4b, 0xe0, 0x69, 0xaf, 0x82, 0x64, 0xa1, 0x57, 0xa7, 0x20, 0x63, 0xa4, 0xba, - 0x4a, 0x91, 0xd5, 0x10, 0xc4, 0x35, 0xf8, 0x45, 0xc2, 0x63, 0xa1, 0x29, 0xaf, 0x6d, 0xaa, 0xca, - 0xa7, 0xde, 0xc1, 0x1b, 0x99, 0x70, 0xdb, 0x03, 0xd6, 0xdd, 0x9c, 0x7f, 0xcc, 0x7e, 0x11, 0x88, - 0x07, 0x88, 0x07, 0x88, 0xc7, 0xbb, 0xe6, 0x4d, 0xdb, 0xf3, 0x06, 0xcc, 0x15, 0x29, 0x30, 0x8f, - 0x5c, 0x8e, 0x70, 0xc8, 0xe1, 0x5d, 0x26, 0x24, 0xef, 0x71, 0xe6, 0x6f, 0x1e, 0x75, 0x5e, 0xfd, - 0x2e, 0x04, 0x1e, 0x04, 0x1e, 0x04, 0x9e, 0x0d, 0xbc, 0x48, 0x3e, 0x6d, 0x76, 0x6a, 0x5d, 0x1c, - 0x7c, 0x36, 0xa0, 0x80, 0x56, 0x2d, 0x32, 0xe5, 0x93, 0x1b, 0xb0, 0xf4, 0xce, 0x14, 0xaf, 0x5d, - 0x5e, 0xdf, 0x54, 0x2f, 0x2e, 0x5a, 0x57, 0x8d, 0xfa, 0x4d, 0xfd, 0x73, 0xfd, 0xa2, 0x75, 0xf3, - 0xbf, 0xab, 0xf3, 0x4d, 0xa7, 0xe3, 0x94, 0xfa, 0x06, 0xa9, 0x54, 0xca, 0xa5, 0x7c, 0x82, 0x72, - 0xed, 0xcf, 0xaf, 0x57, 0x16, 0x85, 0xd4, 0x25, 0xe5, 0xbf, 0xeb, 0xa2, 0xfe, 0xb9, 0x7a, 0xd1, - 0xaa, 0xfe, 0xf9, 0x67, 0xe3, 0xfc, 0xcf, 0xea, 0xcd, 0xf9, 0x36, 0xfe, 0x89, 0xb5, 0xeb, 0xda, - 0xf5, 0x36, 0xfe, 0x5d, 0x67, 0xb5, 0xc6, 0xf9, 0xe7, 0x9b, 0x8b, 0xff, 0xb5, 0x3e, 0xd7, 0x2f, - 0x2f, 0xcf, 0x3f, 0xdf, 0x9c, 0x9f, 0x6d, 0xe3, 0x5f, 0x79, 0x55, 0xfb, 0xba, 0x8d, 0x7f, 0x56, - 0xfd, 0xfa, 0xea, 0xcb, 0xf1, 0x36, 0xfe, 0x61, 0xd7, 0x37, 0xd5, 0x9b, 0xda, 0xe7, 0x6d, 0x1d, - 0xb2, 0x6d, 0xfc, 0xbb, 0x3e, 0xfd, 0x99, 0x06, 0xb2, 0x6d, 0xf4, 0x1b, 0x9a, 0xaa, 0xf9, 0xa1, - 0x92, 0xac, 0x2c, 0x5a, 0x50, 0xde, 0x30, 0x1f, 0x9b, 0xfe, 0x16, 0x64, 0x62, 0xc8, 0xc4, 0x90, - 0x89, 0xbd, 0x6b, 0xde, 0x6c, 0xdc, 0x3a, 0xe8, 0xa5, 0x15, 0x10, 0x8a, 0x78, 0x54, 0x14, 0xf1, - 0x44, 0xf5, 0x29, 0x04, 0x2a, 0x6d, 0x36, 0x90, 0xd5, 0x36, 0x97, 0xd3, 0xde, 0x19, 0xbc, 0x51, - 0x71, 0x83, 0x8a, 0x9b, 0x75, 0x43, 0xc2, 0xbb, 0x83, 0x6d, 0x3c, 0xee, 0x03, 0xe6, 0xf6, 0xde, - 0x27, 0x75, 0xc5, 0xd1, 0xf5, 0x1d, 0x4b, 0xfb, 0xd6, 0x55, 0x14, 0x85, 0x3e, 0x7e, 0x8c, 0xa2, - 0x86, 0xf3, 0xca, 0xdd, 0x28, 0x04, 0x90, 0xfe, 0xfd, 0x70, 0x83, 0xd0, 0x31, 0xf9, 0xf4, 0x6e, - 0x94, 0xe9, 0xbd, 0xe3, 0x4f, 0xdd, 0x8d, 0x88, 0x31, 0x7d, 0x30, 0xdb, 0x52, 0xa0, 0xd7, 0x1f, - 0x78, 0x6d, 0x77, 0xb0, 0x79, 0x4a, 0x14, 0xfd, 0x9e, 0xcd, 0x92, 0xa2, 0xdc, 0x96, 0x24, 0x45, - 0xef, 0x74, 0x1d, 0x64, 0x44, 0xef, 0x73, 0x2d, 0x3d, 0xe9, 0xd0, 0x7b, 0x5d, 0xee, 0x85, 0xb5, - 0x07, 0xf7, 0xe9, 0xad, 0xfd, 0x4c, 0x7e, 0xd9, 0x86, 0x63, 0xb1, 0x99, 0x13, 0xa6, 0xe6, 0x8c, - 0x69, 0x3a, 0x65, 0x06, 0xce, 0x99, 0xb6, 0x93, 0x66, 0xe6, 0xac, 0x99, 0x39, 0x6d, 0x36, 0xce, - 0x9b, 0x8e, 0x6a, 0xb9, 0xe9, 0xe6, 0xb6, 0x4d, 0x9d, 0x3a, 0xfe, 0x45, 0xf7, 0xee, 0x70, 0xc8, - 0x45, 0x3f, 0x48, 0x6f, 0x7e, 0xcc, 0xa6, 0x70, 0xfc, 0x9b, 0x0f, 0x53, 0x2d, 0x95, 0xcc, 0xa5, - 0xf4, 0xeb, 0xd2, 0x6e, 0x11, 0x95, 0x45, 0x4b, 0xa8, 0x0c, 0xc2, 0x41, 0x56, 0x61, 0x21, 0xf3, - 0xf0, 0x90, 0x79, 0x98, 0xc8, 0x36, 0x5c, 0xa4, 0x13, 0x36, 0x52, 0x0a, 0x1f, 0xa9, 0x87, 0x91, - 0xc5, 0x70, 0x92, 0xfe, 0xb4, 0x5a, 0x88, 0x2a, 0x69, 0x4f, 0xaa, 0x74, 0x83, 0x4b, 0x66, 0x41, - 0x26, 0xcb, 0x60, 0xa3, 0x20, 0xe8, 0x64, 0x1d, 0x7c, 0x94, 0x05, 0x21, 0x65, 0xc1, 0x48, 0x4d, - 0x50, 0x4a, 0x37, 0x38, 0xa5, 0x1c, 0xa4, 0x32, 0x0b, 0x56, 0xf1, 0x2f, 0x7e, 0xe7, 0xae, 0xd8, - 0xb5, 0x1d, 0xea, 0x5d, 0xbb, 0x67, 0x35, 0x87, 0xb0, 0xcc, 0x43, 0x99, 0x8a, 0x90, 0xa6, 0x30, - 0xb4, 0xa9, 0x0a, 0x71, 0xca, 0x43, 0x9d, 0xf2, 0x90, 0xa7, 0x36, 0xf4, 0x65, 0x13, 0x02, 0x33, - 0x0a, 0x85, 0x99, 0x87, 0xc4, 0x17, 0xed, 0x47, 0xd1, 0x2c, 0x8e, 0xe5, 0xa1, 0xf0, 0x7e, 0x19, - 0xcf, 0x28, 0x35, 0xbd, 0xff, 0x32, 0x0f, 0x99, 0x2a, 0x43, 0xa7, 0x86, 0x10, 0xaa, 0x3a, 0x94, - 0x6a, 0x0b, 0xa9, 0xda, 0x42, 0xab, 0x9e, 0x10, 0x9b, 0x6d, 0xa8, 0xcd, 0x38, 0xe4, 0xc6, 0x8f, - 0x2c, 0xf3, 0x3e, 0xc6, 0x09, 0x8f, 0xe3, 0xc3, 0x87, 0x82, 0xed, 0x76, 0xbb, 0x3e, 0x0b, 0x02, - 0x85, 0xe7, 0x09, 0xa9, 0x38, 0xc6, 0x4c, 0xf9, 0xf1, 0x65, 0x96, 0xca, 0xd3, 0x4c, 0xf7, 0xff, - 0x7f, 0x77, 0x7f, 0xff, 0x3d, 0xfc, 0x75, 0x39, 0x9e, 0xfc, 0xff, 0x62, 0xdc, 0xfc, 0xff, 0x1f, - 0xfc, 0x3f, 0x16, 0x8e, 0xf5, 0x50, 0xef, 0xb7, 0x56, 0x10, 0xdc, 0xdb, 0xbe, 0x2b, 0xfa, 0x2c, - 0x50, 0xc8, 0x68, 0x5e, 0xee, 0x09, 0x56, 0x03, 0x56, 0x03, 0x56, 0x03, 0x56, 0x03, 0x56, 0x93, - 0x4a, 0xf9, 0xdf, 0xbb, 0x09, 0x4d, 0x59, 0x0d, 0xa1, 0x89, 0x8a, 0x9c, 0x3b, 0xb6, 0xdb, 0x19, - 0x9c, 0xba, 0x9d, 0xc1, 0xab, 0x4b, 0x3b, 0x60, 0x32, 0x58, 0xf8, 0xf7, 0xec, 0x9f, 0x51, 0x35, - 0x62, 0xf4, 0xaf, 0xe9, 0x16, 0x0e, 0x53, 0xa1, 0xdc, 0x28, 0x2d, 0x25, 0xe3, 0x6e, 0xe5, 0x2f, - 0x24, 0x24, 0xeb, 0x22, 0xf8, 0x49, 0x9c, 0x73, 0xc2, 0x3a, 0x37, 0x27, 0x08, 0xee, 0x9d, 0xd9, - 0x42, 0xfc, 0xec, 0xe2, 0x5d, 0x55, 0xf2, 0xfa, 0xc6, 0x3c, 0x8b, 0x23, 0xb4, 0x32, 0x96, 0xb5, - 0xd4, 0xc8, 0x59, 0x38, 0x44, 0x8b, 0x14, 0xb1, 0x83, 0xe2, 0x6f, 0x26, 0x71, 0xc3, 0xf1, 0x59, - 0xba, 0x88, 0x99, 0x0a, 0x42, 0xb6, 0x64, 0x9f, 0x47, 0x14, 0x94, 0x77, 0x19, 0xfe, 0xa6, 0x27, - 0x96, 0x64, 0x8f, 0x7e, 0xd3, 0xdb, 0x18, 0xbe, 0xdc, 0x9d, 0x07, 0xf8, 0x01, 0xfc, 0x00, 0x7e, - 0x24, 0xc0, 0x0f, 0xcb, 0xdd, 0x04, 0xf3, 0x04, 0x65, 0xf9, 0x82, 0xca, 0xd0, 0xa9, 0x21, 0x84, - 0xaa, 0x0e, 0xa5, 0xda, 0x42, 0xaa, 0xb6, 0xd0, 0xaa, 0x27, 0xc4, 0x66, 0xaf, 0xb3, 0xed, 0x61, - 0xb9, 0x3b, 0x45, 0x42, 0x89, 0xe5, 0x6e, 0x2c, 0x77, 0xab, 0xf3, 0x5d, 0x2c, 0x77, 0x83, 0xd5, - 0x80, 0xd5, 0x80, 0xd5, 0x80, 0xd5, 0xec, 0x06, 0xab, 0xc1, 0x72, 0x37, 0x96, 0xbb, 0x49, 0x68, - 0x29, 0xbb, 0xb3, 0xdc, 0x9d, 0xc1, 0xf9, 0xdc, 0xd9, 0x0d, 0x39, 0xed, 0x2d, 0x78, 0xd1, 0xf9, - 0xdd, 0x99, 0xc8, 0x56, 0xd9, 0x1c, 0xe4, 0x1d, 0xff, 0xf6, 0x2c, 0x0f, 0xf4, 0x7e, 0xb9, 0x49, - 0x86, 0x07, 0x7b, 0xc7, 0x37, 0xc9, 0xe4, 0x80, 0xef, 0xac, 0x66, 0x4c, 0xc6, 0x61, 0x46, 0x7f, - 0x78, 0xb1, 0x32, 0x59, 0x9f, 0x7b, 0xd3, 0xa1, 0xb2, 0xb5, 0xfe, 0xfd, 0xb0, 0xf5, 0xe7, 0xd4, - 0xb4, 0xd6, 0x75, 0x70, 0xdf, 0xfa, 0x1a, 0x59, 0xf4, 0x81, 0x66, 0x40, 0x1a, 0xe3, 0x24, 0xfa, - 0x2c, 0x27, 0xe4, 0xff, 0xc7, 0xde, 0xdb, 0x37, 0xb5, 0x91, 0x24, 0xed, 0xde, 0xff, 0xfb, 0x53, - 0x10, 0x8a, 0xdd, 0x08, 0xd8, 0x75, 0x23, 0x90, 0x79, 0x31, 0x8e, 0x38, 0x31, 0x21, 0x1b, 0x79, - 0x46, 0x3b, 0x60, 0xf3, 0x60, 0xec, 0xb3, 0x7b, 0xdb, 0x8c, 0xa2, 0x91, 0x4a, 0xd0, 0xeb, 0xa6, - 0xa5, 0xbb, 0xbb, 0xc5, 0x98, 0x63, 0xf3, 0xdd, 0x9f, 0xd0, 0x2b, 0x08, 0xc1, 0x18, 0x50, 0x55, - 0x56, 0x55, 0xeb, 0x47, 0x6c, 0xd8, 0x2c, 0x63, 0xba, 0x4a, 0xd5, 0x59, 0xd7, 0x95, 0x57, 0x56, - 0x66, 0x16, 0xb7, 0xbe, 0x7b, 0x79, 0xeb, 0xfb, 0xad, 0xd7, 0xa9, 0xa3, 0xe3, 0xd3, 0xd3, 0xe0, - 0x83, 0x7b, 0xe6, 0x5d, 0xb5, 0x0b, 0x81, 0xbb, 0xe6, 0x6f, 0xd8, 0x42, 0xc9, 0xe5, 0xcb, 0xca, - 0x92, 0x5c, 0xa5, 0xed, 0xb0, 0x39, 0x47, 0x44, 0xf3, 0xfa, 0x7c, 0xe1, 0xfa, 0x59, 0x74, 0x83, - 0xa4, 0x1b, 0xa4, 0xb5, 0x48, 0x9b, 0x67, 0xdd, 0x20, 0x27, 0xdb, 0x46, 0x5f, 0x4f, 0xc8, 0xeb, - 0x47, 0xd2, 0x19, 0x52, 0x60, 0xa3, 0xea, 0xde, 0xb0, 0xc6, 0x36, 0xae, 0xb1, 0x0d, 0x6c, 0x66, - 0x23, 0xbb, 0xe1, 0x00, 0x6b, 0xeb, 0x0c, 0xa9, 0xb9, 0x2b, 0x92, 0x99, 0x2e, 0x48, 0x74, 0x85, - 0xa4, 0x2b, 0xe4, 0x12, 0x5d, 0x21, 0xf5, 0x86, 0x46, 0xb4, 0x77, 0x85, 0x9c, 0xf7, 0x5a, 0xf3, - 0x9f, 0xee, 0x84, 0xf9, 0xae, 0x3b, 0xbf, 0x7f, 0x21, 0x54, 0x3b, 0xec, 0xc5, 0x83, 0x57, 0xde, - 0x0e, 0xe3, 0x4c, 0x19, 0xea, 0x3a, 0xb9, 0x46, 0xd7, 0x49, 0xba, 0x4e, 0xba, 0x04, 0x76, 0x32, - 0xa0, 0xa7, 0x17, 0xfc, 0x34, 0x83, 0xe0, 0x64, 0x09, 0x8c, 0xa5, 0x08, 0x68, 0xbc, 0x68, 0xfe, - 0xa7, 0xde, 0xd1, 0xba, 0xab, 0x47, 0x02, 0x1a, 0x5d, 0x97, 0x76, 0x14, 0xe7, 0x2a, 0x0d, 0x86, - 0x3b, 0xcf, 0x40, 0xca, 0xdb, 0xe4, 0x7d, 0xdd, 0x1e, 0x08, 0x52, 0x80, 0x14, 0x20, 0x05, 0x48, - 0x41, 0xab, 0xc5, 0xcf, 0x7d, 0xf5, 0xe4, 0x4f, 0x39, 0xe1, 0xe5, 0x02, 0x70, 0xc2, 0x24, 0xb2, - 0x18, 0x44, 0x06, 0xd5, 0xc7, 0xd4, 0x28, 0xb0, 0x01, 0x6c, 0x00, 0x1b, 0xc0, 0x06, 0xbe, 0x20, - 0xcc, 0xc2, 0x71, 0xc2, 0xff, 0xf6, 0x54, 0x7a, 0x19, 0x0c, 0x56, 0xf4, 0x62, 0x8e, 0x1b, 0x05, - 0x7f, 0xfa, 0xce, 0x6e, 0x8d, 0x03, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0xa0, 0x97, 0x17, 0x4e, - 0xcf, 0xbb, 0x13, 0x88, 0x09, 0xf2, 0xfe, 0x78, 0xe6, 0xd8, 0x61, 0xcb, 0xc0, 0xa3, 0x3f, 0x26, - 0xd1, 0x20, 0x55, 0xba, 0x94, 0xa9, 0x66, 0x27, 0x69, 0x99, 0x28, 0x1a, 0x2c, 0x1d, 0x86, 0xc9, - 0xa9, 0x32, 0x56, 0x6a, 0x6b, 0xb0, 0x74, 0x62, 0x3f, 0x4a, 0x04, 0x1a, 0xaa, 0xc8, 0x94, 0x51, - 0x7e, 0x0a, 0xe3, 0x9e, 0x32, 0xd7, 0xaf, 0x67, 0x32, 0xce, 0xdb, 0x34, 0x6c, 0xe6, 0x51, 0x27, - 0xd9, 0x8d, 0x4e, 0x87, 0x96, 0xb5, 0xe6, 0x65, 0xe9, 0xee, 0x7e, 0xf8, 0xad, 0x78, 0xaf, 0x7e, - 0xad, 0xb2, 0x51, 0xa0, 0xb7, 0xef, 0x49, 0x41, 0xd1, 0xf1, 0x02, 0xb8, 0xf4, 0x17, 0x2a, 0xcd, - 0x4c, 0x54, 0x98, 0x4c, 0x78, 0x76, 0x3c, 0x00, 0x4e, 0x3c, 0x4e, 0x3c, 0x4e, 0x3c, 0x4e, 0xbc, - 0x7e, 0x27, 0xde, 0x0c, 0xc2, 0xdc, 0x44, 0x99, 0x4d, 0x5c, 0x6b, 0x5c, 0x6b, 0x5c, 0xeb, 0x42, - 0xba, 0xd6, 0x2f, 0xf0, 0xab, 0xf1, 0xab, 0x75, 0x3e, 0x89, 0x2a, 0xdb, 0xd3, 0xf3, 0x6e, 0xf9, - 0xba, 0x44, 0xec, 0xfa, 0x5b, 0xad, 0xb7, 0x27, 0x68, 0xa8, 0xb6, 0x7d, 0xae, 0x23, 0xd3, 0xbf, - 0xd7, 0xff, 0x74, 0x99, 0x89, 0x5c, 0xff, 0xd1, 0x93, 0xc9, 0xf6, 0x77, 0x50, 0x18, 0x91, 0xed, - 0x6f, 0x47, 0xf8, 0x14, 0x3c, 0xdb, 0xff, 0x7f, 0x7b, 0x2a, 0x8d, 0x4c, 0x26, 0x60, 0x8e, 0x07, - 0x30, 0x13, 0x8d, 0x59, 0x27, 0x1a, 0x43, 0x34, 0x86, 0x68, 0x8c, 0x9b, 0xd1, 0x18, 0x53, 0x1d, - 0xe0, 0x4b, 0xa9, 0x6a, 0xaa, 0xe8, 0xc2, 0x40, 0x8d, 0xd2, 0xcc, 0x96, 0x9a, 0x8c, 0xe4, 0xf9, - 0xc5, 0x18, 0xdc, 0x0a, 0xe5, 0x02, 0xcc, 0x89, 0xc3, 0x9d, 0x38, 0xec, 0xc9, 0xc2, 0x9f, 0xe1, - 0x30, 0x84, 0xb7, 0x17, 0x63, 0x18, 0xbd, 0x31, 0x68, 0x66, 0x5f, 0x9a, 0xbc, 0x39, 0x48, 0x08, - 0x28, 0x67, 0x01, 0xb3, 0x42, 0x03, 0x69, 0x0f, 0x80, 0xd4, 0x1a, 0xa0, 0x5a, 0x03, 0x56, 0x3b, - 0x00, 0x6b, 0x16, 0x68, 0x0d, 0x03, 0xae, 0x18, 0xf0, 0x4e, 0x06, 0xba, 0x58, 0x97, 0xb3, 0xfc, - 0x49, 0xd6, 0xc3, 0xba, 0x94, 0xc9, 0xcb, 0x1c, 0x97, 0x88, 0xf9, 0xb0, 0x36, 0xa1, 0xd9, 0x22, - 0x44, 0xdb, 0x82, 0x6a, 0xeb, 0x90, 0x6d, 0x1d, 0xba, 0xed, 0x42, 0xb8, 0x0c, 0x94, 0x0b, 0x41, - 0xfa, 0x64, 0x29, 0xc5, 0xee, 0x06, 0x98, 0xd9, 0xb1, 0xbd, 0x28, 0xc9, 0x5f, 0x54, 0x24, 0x37, - 0xec, 0x08, 0x7f, 0xb7, 0x05, 0x87, 0x34, 0x9b, 0x3a, 0x72, 0xdf, 0x97, 0x2c, 0x20, 0x2d, 0x49, - 0xa5, 0x9a, 0x38, 0x42, 0xac, 0x33, 0xc3, 0x8f, 0xf3, 0x13, 0x6c, 0x8d, 0x2f, 0x98, 0xb7, 0x60, - 0x19, 0xae, 0xa6, 0x4d, 0x2e, 0xfc, 0xb6, 0xf0, 0x26, 0xb7, 0x51, 0xd9, 0xd9, 0xd8, 0xd9, 0xda, - 0xae, 0xec, 0x6c, 0x2e, 0xb0, 0xed, 0x3d, 0x2b, 0xe6, 0x68, 0xc7, 0xcf, 0x8a, 0xf1, 0x79, 0x04, - 0xb0, 0xa1, 0x74, 0x51, 0xb1, 0x20, 0x1c, 0x2b, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, - 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, - 0xf4, 0x47, 0x38, 0xbe, 0xb0, 0x20, 0x1c, 0x5f, 0x20, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, - 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, - 0xd1, 0x83, 0x11, 0x4c, 0x67, 0xdb, 0x1a, 0xbe, 0x4c, 0x7e, 0x66, 0x3c, 0xab, 0x5d, 0x06, 0x86, - 0x95, 0xf3, 0xe5, 0x51, 0xb1, 0x6b, 0x79, 0x5c, 0x36, 0x56, 0x1e, 0xd6, 0x46, 0x3c, 0xf3, 0xd3, - 0x4a, 0xfc, 0x2a, 0xab, 0x11, 0xb2, 0x37, 0x27, 0xed, 0xcc, 0x64, 0x4d, 0xdc, 0x63, 0x2e, 0xa5, - 0xae, 0x8f, 0xa7, 0xda, 0x78, 0x33, 0x9a, 0x6a, 0xe3, 0xff, 0x1b, 0x4e, 0xb5, 0x71, 0x38, 0x9e, - 0xaa, 0x27, 0x2d, 0x63, 0x0c, 0x98, 0x69, 0x29, 0x1b, 0x4a, 0x6f, 0xc3, 0x35, 0xab, 0x83, 0x51, - 0xa8, 0x57, 0xb5, 0x15, 0x69, 0xa3, 0x5e, 0xd5, 0xc3, 0x48, 0x19, 0xf5, 0xaa, 0xf7, 0x2f, 0x0d, - 0xf5, 0xaa, 0xce, 0x01, 0xe5, 0x2c, 0x60, 0x52, 0xaf, 0xea, 0x03, 0x90, 0x5a, 0x03, 0x54, 0x6b, - 0xc0, 0x6a, 0x07, 0x60, 0x8b, 0xa1, 0xa0, 0xa9, 0x57, 0xd5, 0x09, 0xc5, 0x9c, 0x1e, 0x7b, 0x0d, - 0xd1, 0xb6, 0xa0, 0xda, 0x3a, 0x64, 0x5b, 0x87, 0x6e, 0xbb, 0x10, 0x2e, 0x03, 0xe5, 0x42, 0x90, - 0x3e, 0x59, 0x4a, 0x4e, 0x8f, 0x8d, 0x0e, 0xc9, 0xe9, 0x71, 0xf1, 0x88, 0x75, 0x66, 0x78, 0x4e, - 0x8f, 0x39, 0x3d, 0xb6, 0x64, 0x72, 0x9c, 0x1e, 0x73, 0x7a, 0xec, 0xfa, 0xe7, 0xa1, 0x5e, 0x15, - 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, - 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0xf6, 0x85, 0x23, 0xf5, 0xaa, 0x08, 0x47, 0x84, - 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, - 0xc2, 0x11, 0xe1, 0xe8, 0xb1, 0x70, 0xa4, 0x5e, 0xf5, 0x11, 0xe3, 0xb9, 0x54, 0x47, 0x98, 0xa9, - 0x24, 0xa7, 0x56, 0x55, 0xcc, 0xe6, 0x16, 0xb2, 0x56, 0xd5, 0x60, 0x59, 0xe2, 0x92, 0xc6, 0x3a, - 0xd5, 0x0f, 0xfd, 0x69, 0xfa, 0x52, 0xa3, 0xea, 0xf4, 0xf5, 0xaf, 0x86, 0x8d, 0xdc, 0x25, 0xe3, - 0x36, 0x71, 0xe5, 0xb2, 0x1e, 0x7b, 0xd6, 0x6b, 0xca, 0xfa, 0x0c, 0x4e, 0xa3, 0xb1, 0x95, 0x52, - 0xd5, 0xed, 0xa4, 0xb9, 0xc1, 0x3b, 0xcc, 0xc7, 0x03, 0x70, 0x87, 0x39, 0x77, 0x98, 0xff, 0xc5, - 0xeb, 0xe4, 0x0e, 0xf3, 0xe2, 0x91, 0x98, 0xb1, 0x3b, 0xcc, 0xcd, 0x16, 0x3d, 0x8b, 0x14, 0x3b, - 0x8b, 0x75, 0x83, 0xa8, 0xd0, 0x0d, 0xc2, 0x01, 0x80, 0x13, 0x07, 0x3a, 0x71, 0xc0, 0x93, 0x05, - 0x3e, 0x3f, 0xa5, 0xab, 0xf1, 0x6e, 0x10, 0x02, 0xc5, 0xc8, 0x72, 0x45, 0xc8, 0x42, 0xe1, 0x63, - 0xb1, 0x14, 0x00, 0xfa, 0x40, 0xf8, 0x0d, 0xa5, 0xd6, 0x20, 0xd5, 0x0e, 0xb4, 0x9a, 0x8f, 0x3b, - 0x2e, 0x09, 0x44, 0xa6, 0xc5, 0x8e, 0xee, 0xe5, 0x8f, 0xec, 0x05, 0x8f, 0xea, 0x85, 0x8f, 0xe8, - 0x05, 0x13, 0x2d, 0x6c, 0x1c, 0xc9, 0x5b, 0x3a, 0x17, 0xb5, 0x75, 0x04, 0x6f, 0xf3, 0xf8, 0x53, - 0xf0, 0xc8, 0xdd, 0xca, 0x51, 0xbb, 0x6d, 0x53, 0xb2, 0x75, 0xb4, 0x6e, 0xd5, 0xa6, 0x0a, 0x72, - 0xe4, 0x7c, 0xec, 0xeb, 0x71, 0xa5, 0xc1, 0x30, 0x80, 0x40, 0x51, 0xae, 0x5c, 0x31, 0x2e, 0x02, - 0x0a, 0x01, 0x85, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x10, 0x50, 0x08, 0x28, 0x04, 0x14, 0x02, 0x0a, - 0x01, 0x85, 0x80, 0x42, 0x40, 0x19, 0x15, 0x50, 0x2f, 0x04, 0x05, 0xd4, 0x0b, 0x04, 0x14, 0x02, - 0x0a, 0x01, 0x85, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x10, 0x50, 0x08, 0x28, 0x04, 0x14, 0x02, 0x0a, - 0x01, 0x85, 0x80, 0x32, 0x2d, 0xa0, 0x28, 0x98, 0xbb, 0x63, 0x1c, 0x17, 0x6a, 0x8a, 0x46, 0xd5, - 0x26, 0x26, 0xeb, 0x31, 0x29, 0x45, 0x2b, 0xac, 0xd9, 0x38, 0x58, 0x8a, 0x76, 0x38, 0x9a, 0x99, - 0xab, 0xa5, 0x68, 0xcf, 0x1c, 0x32, 0x59, 0x53, 0xa6, 0xea, 0x82, 0x89, 0x6a, 0x34, 0xcd, 0x39, - 0x4d, 0x52, 0x8f, 0x29, 0xce, 0x6f, 0x38, 0x1a, 0x8c, 0xa6, 0x34, 0x59, 0xe7, 0x20, 0x6a, 0x69, - 0x33, 0x99, 0x89, 0x0e, 0x9f, 0x7a, 0xba, 0x26, 0x13, 0xd7, 0xeb, 0x6d, 0x6b, 0x8f, 0x3c, 0x9a, - 0x88, 0x30, 0x1a, 0x8c, 0x24, 0x9a, 0x8a, 0x18, 0x1a, 0x8f, 0x0c, 0x1a, 0x8f, 0x00, 0x9a, 0x8d, - 0xf4, 0xb9, 0x45, 0x1b, 0xda, 0x23, 0x74, 0x13, 0x8b, 0x8d, 0x55, 0xd8, 0x4e, 0x55, 0x5b, 0xa7, - 0xc5, 0x8e, 0xeb, 0x06, 0x35, 0xc6, 0xdc, 0x4a, 0x07, 0x23, 0x66, 0x5b, 0x5d, 0x2d, 0x0f, 0x79, - 0xad, 0x3c, 0x05, 0x5d, 0x85, 0x04, 0xfc, 0xfe, 0x6b, 0x31, 0x88, 0xf8, 0xfa, 0xde, 0xba, 0xe6, - 0x4a, 0x51, 0xff, 0x20, 0xbf, 0x0d, 0xe0, 0xdb, 0x00, 0xfc, 0x76, 0x51, 0xe1, 0x5e, 0x77, 0x15, - 0x66, 0xa9, 0x39, 0xde, 0x51, 0x86, 0x5a, 0x68, 0x8c, 0x9e, 0x4f, 0x07, 0x0d, 0x91, 0x0e, 0x1a, - 0x6d, 0xfa, 0x67, 0x58, 0x84, 0x21, 0x09, 0x38, 0xf2, 0x23, 0xee, 0x66, 0xac, 0x7b, 0xc6, 0xc4, - 0x49, 0x31, 0xdf, 0x41, 0xe3, 0x7a, 0x28, 0xb3, 0x5d, 0x34, 0xd6, 0x4c, 0x77, 0xd1, 0x58, 0x2b, - 0x48, 0x17, 0x8d, 0x36, 0x3d, 0x34, 0x1c, 0x06, 0x3d, 0x49, 0xf0, 0x33, 0x03, 0x82, 0x86, 0xc0, - 0xd0, 0x9c, 0x54, 0x17, 0x94, 0xee, 0x12, 0x52, 0xfe, 0x5e, 0x69, 0x5f, 0x1e, 0x98, 0xd1, 0xab, - 0x1b, 0x31, 0xe6, 0x5b, 0x3f, 0x18, 0xfd, 0xff, 0x41, 0x54, 0xd8, 0x97, 0x73, 0x33, 0x13, 0xc7, - 0x35, 0xbd, 0x13, 0x41, 0x7e, 0x9c, 0x1a, 0x0d, 0x8a, 0x84, 0x22, 0xa1, 0x48, 0x28, 0x12, 0x8a, - 0x74, 0x94, 0x22, 0x3f, 0x5f, 0x53, 0xe4, 0xff, 0x69, 0xf6, 0xd2, 0x54, 0x25, 0xf9, 0xf2, 0x4a, - 0x79, 0x75, 0xf5, 0x3a, 0x5a, 0x7e, 0x3c, 0xfa, 0x95, 0x9b, 0xb8, 0x9e, 0xdd, 0xf1, 0xb3, 0xc9, - 0x93, 0x5b, 0xea, 0x1b, 0x59, 0x2a, 0x3a, 0x5e, 0x62, 0xed, 0xdb, 0x20, 0x07, 0x4f, 0x7f, 0x76, - 0xb0, 0xf9, 0x80, 0x4d, 0xa7, 0x19, 0xa8, 0x6f, 0xf9, 0xab, 0x5c, 0xc5, 0xea, 0x5c, 0xe5, 0xe9, - 0x65, 0xd0, 0x49, 0x82, 0xe6, 0xd9, 0x20, 0xdd, 0x59, 0x24, 0x88, 0xd3, 0x0e, 0xe3, 0x4c, 0x22, - 0x8a, 0xe3, 0x7a, 0x00, 0xe7, 0x98, 0xc4, 0xa9, 0x87, 0x66, 0xa5, 0x4c, 0x9d, 0x73, 0x8d, 0xce, - 0x0c, 0x17, 0xa1, 0x5b, 0xb6, 0x99, 0xc6, 0xb3, 0x46, 0x1b, 0xce, 0x1a, 0x8f, 0xf3, 0x57, 0x88, - 0xf3, 0x8b, 0xf9, 0xf7, 0xc4, 0xf9, 0x8b, 0xe7, 0xb9, 0x10, 0xe7, 0x27, 0x88, 0x41, 0x10, 0x83, - 0x20, 0x06, 0x41, 0x0c, 0x82, 0x18, 0x02, 0x41, 0x0c, 0xe2, 0xfc, 0x4b, 0xc4, 0xf9, 0xa1, 0x48, - 0x28, 0x12, 0x8a, 0x84, 0x22, 0xa1, 0x48, 0xe2, 0xfc, 0x7e, 0xa9, 0xe5, 0x85, 0x09, 0xaa, 0x1a, - 0xa8, 0x60, 0xa6, 0xec, 0xd3, 0x4f, 0x5b, 0xb0, 0x5f, 0xfb, 0x39, 0xf9, 0xee, 0x50, 0xb5, 0x8b, - 0x54, 0x0e, 0x74, 0xae, 0xce, 0x4f, 0x54, 0x9a, 0x9d, 0x45, 0xdd, 0xe0, 0x34, 0xed, 0xf4, 0xba, - 0x99, 0xfe, 0x92, 0xa0, 0xd9, 0x21, 0x28, 0x0b, 0xd2, 0xe2, 0xbf, 0x53, 0x09, 0x2a, 0xe3, 0x91, - 0x2f, 0x52, 0x25, 0xa8, 0xf6, 0xd2, 0xa0, 0xc1, 0x96, 0x37, 0x77, 0x60, 0x38, 0x7c, 0x3c, 0x07, - 0x86, 0x5c, 0xad, 0x6b, 0x3f, 0x44, 0xc0, 0xd5, 0xba, 0x82, 0x32, 0xc8, 0xd8, 0xa1, 0xa1, 0x19, - 0xc0, 0x12, 0x01, 0xae, 0xdb, 0x00, 0x46, 0x24, 0xd4, 0x2a, 0xb0, 0x49, 0x01, 0x9c, 0x38, 0xd0, - 0x89, 0x03, 0x9e, 0x2c, 0xf0, 0x99, 0x8b, 0x2c, 0x2d, 0x11, 0x0d, 0x7d, 0x9c, 0x07, 0x26, 0x11, - 0x0d, 0x5d, 0x5d, 0x1d, 0x86, 0x9a, 0xca, 0x43, 0x48, 0x5e, 0xe4, 0x23, 0x41, 0x6e, 0x95, 0xb7, - 0xe5, 0xc3, 0x43, 0x7d, 0x50, 0x1f, 0xd4, 0xe7, 0x98, 0x16, 0x10, 0xd2, 0x04, 0xa2, 0xda, 0x40, - 0x48, 0x23, 0x88, 0x69, 0x05, 0x49, 0xe0, 0xb4, 0x00, 0xa0, 0xd2, 0x40, 0x6a, 0x0d, 0x50, 0xad, - 0x01, 0xab, 0x1d, 0x80, 0x35, 0x0b, 0xb4, 0x86, 0x01, 0x57, 0x4e, 0x73, 0xcc, 0xec, 0xb8, 0xa8, - 0x7b, 0xb1, 0x11, 0x84, 0xad, 0x56, 0xaa, 0xb2, 0x4c, 0xf0, 0x7e, 0x8f, 0xf5, 0x97, 0x02, 0x63, - 0x1d, 0x84, 0x79, 0xae, 0xd2, 0x44, 0xec, 0x8a, 0x8f, 0xd2, 0xf2, 0xf2, 0xe7, 0xb5, 0x60, 0xe7, - 0xf8, 0xc7, 0xe7, 0xf5, 0x60, 0xe7, 0x78, 0xf8, 0xed, 0xfa, 0xe0, 0xaf, 0xe1, 0xf7, 0x95, 0xcf, - 0x6b, 0xc1, 0xc6, 0xf8, 0xfb, 0xcd, 0xcf, 0x6b, 0xc1, 0xe6, 0xf1, 0xca, 0x97, 0x2f, 0xab, 0x2b, - 0xdf, 0x5f, 0x5c, 0x3d, 0xfe, 0x17, 0x97, 0xff, 0xfe, 0xf9, 0xcb, 0x97, 0xee, 0xf7, 0x77, 0x57, - 0xfd, 0x3f, 0xf7, 0xae, 0x8e, 0xff, 0xb9, 0xf2, 0x4b, 0x89, 0xf6, 0xfa, 0xf2, 0xfb, 0xb6, 0x34, - 0xec, 0xf4, 0xad, 0x52, 0x39, 0x77, 0x66, 0x32, 0x22, 0x1e, 0x0d, 0x1e, 0x0d, 0x1e, 0x0d, 0x1e, - 0x0d, 0x1e, 0x0d, 0x1e, 0x0d, 0x1e, 0x0d, 0x1e, 0x8d, 0xa6, 0x97, 0x9e, 0x09, 0xc5, 0x18, 0x27, - 0xf1, 0xeb, 0xe1, 0x78, 0x78, 0x33, 0x78, 0x33, 0x78, 0x33, 0x78, 0x33, 0x78, 0x33, 0x78, 0x33, - 0x78, 0x33, 0x8b, 0xe5, 0xcd, 0x70, 0xfd, 0xe1, 0x5d, 0x7e, 0x98, 0xbd, 0x6a, 0x91, 0x99, 0x1a, - 0x83, 0x61, 0x32, 0x07, 0xb7, 0x20, 0x6a, 0x75, 0x38, 0x8c, 0x25, 0x5c, 0xef, 0x45, 0x59, 0x5e, - 0xcd, 0x73, 0x43, 0x19, 0x9d, 0xfb, 0x51, 0x52, 0x8b, 0x55, 0xdf, 0x75, 0xc8, 0x4a, 0xaf, 0x96, - 0x92, 0x5e, 0x1c, 0x1b, 0xc8, 0x9d, 0xd9, 0x0f, 0xbf, 0x99, 0x1f, 0xe4, 0x7d, 0xda, 0x52, 0xa9, - 0x6a, 0xbd, 0xbe, 0x1c, 0x0d, 0x41, 0xa1, 0xa2, 0x53, 0x70, 0xe3, 0xce, 0xed, 0x99, 0xbf, 0xea, - 0x4f, 0x65, 0xa3, 0x76, 0xd2, 0x5f, 0xf3, 0x2c, 0x52, 0xc5, 0xa2, 0xde, 0x24, 0x45, 0x23, 0x49, - 0x89, 0xc6, 0x2a, 0x13, 0x2b, 0x54, 0x26, 0xfa, 0x14, 0x43, 0xa1, 0x32, 0xd1, 0xe5, 0xca, 0x44, - 0x95, 0x84, 0x27, 0xb1, 0x6a, 0x99, 0xab, 0x4d, 0x1c, 0x0f, 0xa0, 0xbb, 0xf2, 0x49, 0xb5, 0xc3, - 0x5e, 0x3c, 0x78, 0xe5, 0x83, 0xc6, 0xc5, 0x86, 0xaa, 0x1f, 0xd7, 0xb8, 0x16, 0x8d, 0xea, 0x47, - 0x97, 0xc0, 0x4e, 0x06, 0xf4, 0xfc, 0x10, 0xe3, 0xc6, 0x02, 0xbb, 0x13, 0x8b, 0x3f, 0xe9, 0x74, - 0x62, 0x15, 0x26, 0x26, 0x2c, 0x7e, 0xec, 0x1d, 0xad, 0x2f, 0x40, 0xbf, 0xec, 0x76, 0x14, 0xe7, - 0x2a, 0x0d, 0x86, 0x3b, 0x4f, 0x65, 0xe6, 0xc8, 0xe6, 0xf6, 0x40, 0x90, 0x02, 0xa4, 0x00, 0x29, - 0x40, 0x0a, 0x9a, 0x45, 0x72, 0x1a, 0x25, 0xa7, 0x26, 0x39, 0xe1, 0xe5, 0x02, 0x70, 0xc2, 0xd4, - 0xd5, 0xf2, 0xc6, 0x08, 0x61, 0x6a, 0x14, 0xd8, 0x00, 0x36, 0x80, 0x0d, 0x60, 0x03, 0x5f, 0x10, - 0x66, 0xe1, 0x38, 0xe1, 0x7f, 0x7b, 0x2a, 0xbd, 0x0c, 0xd4, 0xb7, 0x6e, 0x94, 0x9a, 0x54, 0x09, - 0xd3, 0xc3, 0xc0, 0x0a, 0xb0, 0x02, 0xac, 0x00, 0x2b, 0x68, 0xb5, 0xf8, 0x3c, 0x3a, 0x57, 0x79, - 0xd4, 0xfc, 0x9a, 0x6d, 0x6d, 0x18, 0x24, 0x05, 0x03, 0xf9, 0x7e, 0xa5, 0x8f, 0x49, 0x34, 0x48, - 0xde, 0x28, 0x25, 0x61, 0xd2, 0xc9, 0x54, 0xb3, 0x93, 0xb4, 0x4c, 0xe4, 0x30, 0x96, 0x0e, 0x07, - 0x37, 0x1b, 0x9a, 0xca, 0x22, 0x34, 0x98, 0xe0, 0xb5, 0x1f, 0x25, 0x02, 0x9d, 0x3c, 0x64, 0xf2, - 0xde, 0x3f, 0x85, 0x71, 0x4f, 0x09, 0x8c, 0xf3, 0x36, 0x0d, 0x9b, 0x79, 0xd4, 0x49, 0x76, 0xa3, - 0xd3, 0xa1, 0x75, 0xad, 0x79, 0x59, 0x63, 0xb1, 0x1f, 0x7e, 0x2b, 0xdc, 0xab, 0x5f, 0x7f, 0xb9, - 0xb1, 0xb1, 0xb5, 0xbd, 0xb1, 0xb1, 0xb6, 0xfd, 0x62, 0x7b, 0x6d, 0x67, 0x73, 0x73, 0x7d, 0x6b, - 0x7d, 0xb3, 0x40, 0xd6, 0xe0, 0x49, 0xd6, 0xe3, 0xf1, 0xc2, 0x78, 0xf7, 0x03, 0xbd, 0x74, 0x11, - 0xc6, 0xa6, 0xdd, 0xfb, 0xc9, 0x38, 0xf8, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0x7a, 0xa3, - 0x3e, 0xa7, 0xe7, 0xdd, 0x09, 0xc4, 0x04, 0x79, 0x7f, 0x3c, 0x73, 0x6e, 0xfe, 0x96, 0x49, 0x37, - 0x1f, 0x17, 0x7f, 0x31, 0x5c, 0xfc, 0x75, 0x5c, 0xfc, 0x85, 0x75, 0xf1, 0xd7, 0x2a, 0x1b, 0xb8, - 0xf4, 0xb8, 0xf4, 0xfa, 0x5d, 0xfa, 0x0b, 0x95, 0x66, 0x26, 0x4a, 0x5b, 0x26, 0x3c, 0x3b, 0x1e, - 0x00, 0x27, 0x1e, 0x27, 0x1e, 0x27, 0x1e, 0x27, 0x5e, 0xbf, 0x13, 0x6f, 0x06, 0x61, 0x6e, 0xa2, - 0xcc, 0x26, 0xae, 0x35, 0xae, 0x35, 0xae, 0x75, 0x21, 0x5d, 0xeb, 0x17, 0xf8, 0xd5, 0xf8, 0xd5, - 0x3a, 0x9f, 0x44, 0x41, 0xef, 0xbd, 0x05, 0xbd, 0x1a, 0xdb, 0x58, 0x68, 0x28, 0xe2, 0x7d, 0x66, - 0xf1, 0x2d, 0x8f, 0xdb, 0x50, 0x68, 0xcc, 0x3d, 0xd3, 0xdb, 0x7d, 0xc2, 0x48, 0xb7, 0x09, 0x23, - 0xdd, 0x25, 0xf4, 0x76, 0x93, 0x98, 0xf7, 0xbd, 0x6a, 0xde, 0xb5, 0x16, 0x77, 0x6b, 0x49, 0x4b, - 0x91, 0xfb, 0x13, 0xba, 0x3e, 0xcc, 0x07, 0x10, 0x4f, 0xdf, 0xd6, 0x4f, 0xfb, 0xcd, 0x27, 0x1a, - 0x8c, 0x2e, 0x43, 0x11, 0x37, 0x90, 0xa7, 0xbd, 0x9d, 0xc7, 0xaf, 0xed, 0xe3, 0x7e, 0xe3, 0x91, - 0x6f, 0x61, 0xde, 0xd5, 0x97, 0x59, 0xf5, 0x27, 0xec, 0xc0, 0xc7, 0xec, 0xb8, 0xc7, 0xbd, 0xc9, - 0x87, 0xbf, 0x8f, 0x47, 0xbc, 0x8b, 0x52, 0x94, 0x45, 0x8f, 0x4f, 0x13, 0xbe, 0x96, 0xff, 0xfd, - 0xdf, 0x7e, 0xe4, 0x9b, 0x7f, 0x5a, 0x4f, 0x8b, 0x27, 0x07, 0x06, 0xe7, 0x09, 0xfc, 0x4d, 0x05, - 0xf6, 0x1e, 0xff, 0x51, 0x75, 0x04, 0xee, 0xb4, 0x05, 0xe6, 0xb4, 0x05, 0xde, 0x66, 0x02, 0x6b, - 0xfd, 0x85, 0x71, 0x0c, 0x5d, 0x9e, 0xda, 0xe3, 0xa1, 0x74, 0x1a, 0x77, 0x4e, 0xe6, 0x48, 0xac, - 0xb9, 0xbe, 0x79, 0x69, 0xf8, 0x9c, 0x27, 0xae, 0xf0, 0x7c, 0x6d, 0x5f, 0xe6, 0x8e, 0xa1, 0xeb, - 0x88, 0x95, 0x6b, 0xd8, 0x3a, 0xba, 0xb6, 0x90, 0xf6, 0xad, 0xa4, 0x7d, 0x4b, 0xe9, 0xdd, 0x5a, - 0x76, 0xdc, 0xa9, 0x79, 0xdb, 0xaa, 0x94, 0xc2, 0x76, 0x14, 0x64, 0x61, 0x3b, 0x9a, 0xff, 0x3d, - 0x8f, 0x4d, 0x6f, 0xf2, 0xc4, 0x79, 0xa5, 0xa2, 0x96, 0x2e, 0x4c, 0xda, 0x8e, 0xb6, 0x74, 0x1e, - 0x65, 0x69, 0xdc, 0xa6, 0xba, 0xb7, 0xab, 0xb1, 0x6d, 0x6b, 0x6c, 0xfb, 0x9a, 0xd9, 0xc6, 0x6e, - 0x84, 0x4b, 0x74, 0x75, 0x4d, 0x2a, 0x85, 0x6d, 0xfd, 0x3d, 0xd7, 0xc2, 0xb6, 0xeb, 0x0d, 0xd7, - 0xd6, 0x3c, 0x69, 0xb8, 0xa6, 0x07, 0x02, 0x4c, 0x41, 0x81, 0x71, 0x48, 0x30, 0x0e, 0x0d, 0x66, - 0x21, 0x42, 0x5f, 0x6c, 0x76, 0xc9, 0xe5, 0x86, 0x6b, 0x7d, 0x5e, 0x1f, 0x09, 0x6c, 0x43, 0x39, - 0x33, 0x93, 0x11, 0x48, 0x9a, 0x11, 0x49, 0x9a, 0xd1, 0x0b, 0x3b, 0xa6, 0xe1, 0x47, 0x0c, 0x86, - 0xc4, 0xe0, 0x48, 0x06, 0x96, 0xf4, 0xc2, 0x93, 0x66, 0x98, 0x9a, 0x2c, 0x81, 0xf9, 0xa4, 0x99, - 0x58, 0x85, 0xed, 0x54, 0xb5, 0x4d, 0xb6, 0x3a, 0xd8, 0x36, 0xf0, 0xec, 0x83, 0x51, 0xb0, 0x75, - 0x75, 0xb5, 0x3c, 0x0c, 0xb5, 0x96, 0x27, 0x30, 0xb9, 0x00, 0x79, 0x9a, 0xcd, 0x31, 0xc6, 0x1a, - 0xa2, 0x9c, 0xd1, 0xf3, 0xcd, 0x10, 0xce, 0x3a, 0x84, 0x03, 0xe1, 0x40, 0x38, 0x6e, 0x12, 0x8e, - 0x6e, 0xff, 0xd8, 0xbc, 0x9f, 0x2c, 0xe5, 0x2f, 0x1b, 0xf6, 0x9b, 0x8d, 0xc3, 0x99, 0x04, 0xac, - 0x09, 0xc2, 0x9b, 0x14, 0xcc, 0x89, 0xc3, 0x9d, 0x38, 0xec, 0xc9, 0xc2, 0x9f, 0x19, 0x18, 0x34, - 0x04, 0x87, 0xe6, 0xfd, 0xf0, 0x99, 0x1d, 0x13, 0xb5, 0x54, 0x92, 0x47, 0xf9, 0xa5, 0x19, 0x9f, - 0x7c, 0xc6, 0x17, 0x33, 0xd8, 0x1b, 0xa2, 0x54, 0x1f, 0x7d, 0x94, 0xd7, 0x61, 0x26, 0x78, 0x91, - 0x69, 0xf5, 0x6d, 0xbd, 0x71, 0xf4, 0x9f, 0x83, 0x5a, 0x49, 0x22, 0x65, 0x38, 0x13, 0xb9, 0x37, - 0x4f, 0xe8, 0xf6, 0xcd, 0xf1, 0x0a, 0xd6, 0x0f, 0x3e, 0x6d, 0x08, 0x5c, 0x42, 0xf9, 0xbc, 0x80, - 0xeb, 0xb6, 0xe5, 0xfb, 0xe5, 0x9d, 0xc7, 0x0b, 0x9f, 0x8f, 0x6e, 0xc0, 0x2e, 0x8d, 0xdd, 0xca, - 0x31, 0x63, 0x82, 0x66, 0x6e, 0xe7, 0xc0, 0xf5, 0xc5, 0xf5, 0xc5, 0xf5, 0xc5, 0xf5, 0x35, 0xbc, - 0x63, 0xcc, 0xdd, 0xce, 0x31, 0xe3, 0xf6, 0xae, 0x2f, 0x30, 0x19, 0x9d, 0xab, 0x3c, 0x8d, 0x9a, - 0xe6, 0xb9, 0x68, 0x34, 0x8e, 0x21, 0xb3, 0xbc, 0x71, 0x61, 0xd4, 0xfa, 0x1a, 0x7c, 0x07, 0xdf, - 0xc1, 0x77, 0xf0, 0x9d, 0x5f, 0x7c, 0xd7, 0x8b, 0x92, 0xfc, 0x45, 0x45, 0x80, 0xee, 0xb6, 0x0d, - 0x0e, 0x61, 0xb6, 0x73, 0x81, 0x9c, 0x92, 0x17, 0xe9, 0x64, 0x20, 0x44, 0x2c, 0x33, 0xc3, 0x09, - 0xf5, 0x05, 0x9e, 0x8c, 0x27, 0x58, 0xe6, 0x2e, 0x18, 0x4e, 0x12, 0xe9, 0x78, 0x60, 0xdb, 0x44, - 0x36, 0x2a, 0x3b, 0x1b, 0x3b, 0x5b, 0xdb, 0x95, 0x9d, 0xcd, 0x02, 0xdb, 0xca, 0x33, 0x3f, 0x9f, - 0x7e, 0xbc, 0xc0, 0xaa, 0x25, 0x93, 0x3b, 0x40, 0xce, 0x38, 0x41, 0x46, 0x56, 0x20, 0x2b, 0x90, - 0x15, 0x7e, 0xca, 0x0a, 0x4e, 0x90, 0xe7, 0x5c, 0xc0, 0x0f, 0x1c, 0x21, 0xcf, 0xbb, 0x84, 0x1f, - 0xdf, 0xd5, 0xdf, 0x54, 0x3f, 0x1c, 0x71, 0x8a, 0xfc, 0xf8, 0xa5, 0xdb, 0xff, 0xb8, 0x77, 0x24, - 0xb5, 0x78, 0x1c, 0x25, 0x9b, 0xf5, 0x83, 0x9d, 0x4e, 0xf5, 0x34, 0xd4, 0x52, 0xec, 0xda, 0x63, - 0x37, 0xde, 0x15, 0x25, 0x8b, 0xb2, 0xf2, 0xb0, 0xb9, 0x41, 0x79, 0x5c, 0x5e, 0x5d, 0x0e, 0xdb, - 0xa3, 0x82, 0x80, 0x45, 0xa8, 0x03, 0x38, 0xef, 0xc5, 0x79, 0x14, 0xe4, 0x9d, 0x6e, 0x27, 0xee, - 0x9c, 0x5e, 0x9a, 0xab, 0x07, 0xb8, 0x35, 0x0e, 0x75, 0x01, 0xd4, 0x05, 0xd8, 0x97, 0x39, 0xd4, - 0x05, 0x08, 0x92, 0x85, 0xb1, 0xba, 0x00, 0x43, 0xa5, 0x4c, 0x33, 0x1b, 0xca, 0x48, 0x49, 0x93, - 0x61, 0x08, 0x23, 0xa2, 0x43, 0x44, 0x87, 0x88, 0x8e, 0xab, 0x11, 0x1d, 0x53, 0x90, 0x38, 0x19, - 0xc0, 0x78, 0xc4, 0x7b, 0x66, 0x6b, 0x1a, 0x0e, 0x7c, 0xdf, 0x86, 0x4b, 0xd3, 0x5d, 0xbd, 0x4d, - 0xc3, 0xa6, 0x24, 0x7c, 0x5a, 0x80, 0x51, 0x69, 0x38, 0xb5, 0x06, 0xab, 0xd6, 0xe0, 0xd5, 0x0e, - 0xcc, 0xca, 0x84, 0x7f, 0x0c, 0x47, 0xe6, 0xcc, 0x07, 0xd4, 0x67, 0x76, 0x9c, 0x4c, 0x60, 0x7d, - 0xc6, 0xa7, 0x14, 0x38, 0x88, 0x97, 0x0d, 0xb4, 0xcf, 0x2c, 0xac, 0x50, 0xbc, 0x7d, 0x32, 0xae, - 0x60, 0xdc, 0x7d, 0xfc, 0xf5, 0x5d, 0x6c, 0xa4, 0x25, 0xf9, 0x52, 0x2e, 0xa1, 0x2d, 0xef, 0xc6, - 0x7a, 0x6e, 0x09, 0xae, 0xa7, 0xc8, 0x48, 0xc7, 0xe4, 0xdb, 0xc8, 0xdb, 0xb3, 0x40, 0x3e, 0xcb, - 0x8c, 0xf1, 0x66, 0xb8, 0xf7, 0xb8, 0xf7, 0xb8, 0xf7, 0xb8, 0xf7, 0xb8, 0xf7, 0xb8, 0xf7, 0x82, - 0x4e, 0xd3, 0x07, 0xfc, 0x7b, 0x53, 0x4b, 0x2b, 0x96, 0x67, 0xb3, 0x38, 0x2e, 0xbe, 0x60, 0xfe, - 0x0d, 0x7e, 0xbe, 0x23, 0x7e, 0xbe, 0x57, 0xe7, 0x0e, 0x86, 0xf3, 0x76, 0xae, 0x15, 0x8a, 0xad, - 0xfc, 0x9d, 0xe9, 0x6c, 0x13, 0x23, 0xe9, 0x3c, 0xe6, 0xde, 0xbc, 0x91, 0xda, 0x87, 0xc1, 0x4d, - 0x89, 0xe6, 0xeb, 0x1e, 0x06, 0xc3, 0x78, 0x7e, 0x42, 0x5e, 0xe1, 0x84, 0xdc, 0x21, 0xcd, 0xc7, - 0x09, 0xf9, 0x22, 0x33, 0x15, 0x27, 0xe4, 0xf3, 0xc2, 0x25, 0x21, 0x34, 0xa7, 0x61, 0x54, 0x1a, - 0x4e, 0xad, 0xc1, 0xaa, 0x35, 0x78, 0xb5, 0x03, 0xb3, 0x42, 0x82, 0x86, 0x10, 0x9a, 0x1e, 0x9f, - 0x92, 0x13, 0x72, 0xdd, 0xe3, 0x72, 0x42, 0xee, 0xe5, 0x96, 0x77, 0x63, 0x3d, 0x39, 0x21, 0x77, - 0x8d, 0x68, 0xbc, 0x3c, 0x21, 0x37, 0xdd, 0x34, 0x75, 0xc6, 0x74, 0xcd, 0x36, 0x4f, 0xc5, 0xb5, - 0xc7, 0xb5, 0xc7, 0xb5, 0xc7, 0xb5, 0xf7, 0xd4, 0xb5, 0x37, 0xdf, 0x9c, 0x75, 0xc6, 0xad, 0x5f, - 0x87, 0x14, 0x67, 0xd6, 0x86, 0xb4, 0x31, 0x88, 0x11, 0x62, 0x84, 0x18, 0x21, 0x46, 0x57, 0x88, - 0x91, 0x98, 0x97, 0xa1, 0x85, 0x25, 0x6d, 0xcc, 0xd8, 0xd2, 0x92, 0x36, 0xa6, 0x7d, 0x49, 0x49, - 0x1b, 0x73, 0x95, 0x71, 0x38, 0x8c, 0x5f, 0x5a, 0xc4, 0xb4, 0xb1, 0x61, 0x36, 0x13, 0x9d, 0xc2, - 0xdc, 0x37, 0x1d, 0x57, 0x4c, 0xa6, 0x64, 0x24, 0x75, 0x2f, 0xed, 0x35, 0xf3, 0x91, 0x60, 0x2f, - 0xbd, 0x1b, 0xce, 0xb5, 0x3e, 0x9a, 0x6a, 0xe3, 0x60, 0x34, 0xc1, 0x46, 0x3d, 0x8b, 0xb2, 0xc6, - 0xaf, 0x83, 0x09, 0x36, 0xaa, 0xed, 0xc6, 0x7e, 0x7f, 0x5e, 0x47, 0xe3, 0x69, 0x2d, 0x40, 0x23, - 0x33, 0x73, 0x61, 0x0d, 0xe3, 0x61, 0x0c, 0x43, 0x61, 0x0b, 0xda, 0x97, 0xd9, 0x09, 0x3b, 0xd0, - 0xbe, 0xac, 0x88, 0x0c, 0x66, 0x2c, 0x2c, 0x30, 0xb1, 0xf8, 0x58, 0x85, 0x6d, 0x33, 0x21, 0x80, - 0x89, 0xe4, 0x37, 0x70, 0x8d, 0x4b, 0xe9, 0x60, 0x44, 0xba, 0xab, 0xab, 0xa3, 0x3c, 0xfb, 0xf2, - 0x35, 0x4e, 0x2e, 0x02, 0xef, 0x18, 0xc9, 0xac, 0x37, 0x9a, 0x51, 0x6f, 0xbc, 0x5d, 0x66, 0x05, - 0xbe, 0x81, 0x6f, 0xe0, 0x9b, 0xb9, 0x96, 0xc0, 0x58, 0xbb, 0x4c, 0xb9, 0x5b, 0x50, 0xb8, 0x04, - 0xc5, 0x1a, 0xac, 0x09, 0xc2, 0x9b, 0x14, 0xcc, 0x89, 0xc3, 0x9d, 0x38, 0xec, 0xc9, 0xc2, 0x9f, - 0xb9, 0x50, 0xd4, 0x12, 0x97, 0xa0, 0x3c, 0xde, 0x17, 0x2b, 0xde, 0x25, 0x28, 0xdc, 0x81, 0x32, - 0xef, 0x0a, 0xca, 0x64, 0x96, 0x17, 0xef, 0x02, 0x14, 0x99, 0x0c, 0x72, 0xee, 0x3e, 0x31, 0xfb, - 0x54, 0x13, 0x75, 0xf0, 0xa6, 0x33, 0xc2, 0x85, 0x32, 0xc1, 0x71, 0x7d, 0x71, 0x7d, 0x71, 0x7d, - 0x71, 0x7d, 0x0d, 0xed, 0x18, 0xf3, 0x99, 0xda, 0x86, 0x33, 0xb4, 0xfd, 0x20, 0xa3, 0x73, 0x95, - 0xa7, 0x51, 0xd3, 0x3c, 0x17, 0x8d, 0xc6, 0x31, 0xd5, 0xa2, 0x41, 0xb5, 0xc3, 0x5e, 0x3c, 0xd8, - 0xb0, 0xeb, 0x6b, 0xf0, 0x1d, 0x7c, 0x07, 0xdf, 0xc1, 0x77, 0x7e, 0xf1, 0x5d, 0x2f, 0x4a, 0xf2, - 0x17, 0x15, 0x01, 0xba, 0xdb, 0x36, 0x38, 0xc4, 0x61, 0x98, 0x9c, 0x2a, 0xe3, 0x51, 0x10, 0x81, - 0xb4, 0xf8, 0xfd, 0x28, 0x11, 0x2c, 0x09, 0x11, 0xa9, 0x18, 0x9a, 0x0c, 0x37, 0x88, 0x55, 0x09, - 0x8e, 0xf7, 0x36, 0x0d, 0x9b, 0x79, 0xd4, 0x49, 0x76, 0xa3, 0xd3, 0x28, 0xcf, 0xfa, 0x03, 0x17, - 0x21, 0x9c, 0x54, 0xda, 0x0f, 0xbf, 0x15, 0xde, 0x44, 0x36, 0x2a, 0x3b, 0x1b, 0x3b, 0x5b, 0xdb, - 0x95, 0x9d, 0xcd, 0x02, 0xdb, 0x8a, 0xa7, 0x79, 0xdb, 0xc7, 0x8b, 0xdc, 0x4a, 0x52, 0xee, 0x00, - 0x39, 0xe3, 0x04, 0x19, 0x59, 0x81, 0xac, 0x40, 0x56, 0xf8, 0x29, 0x2b, 0x38, 0x41, 0x9e, 0x73, - 0x01, 0x3f, 0x70, 0x84, 0x3c, 0xef, 0x12, 0x8a, 0xd5, 0x69, 0x16, 0xef, 0x14, 0x59, 0xb0, 0x1e, - 0x93, 0xa3, 0x64, 0xc3, 0x7e, 0x30, 0xc5, 0x71, 0x36, 0x8a, 0xe3, 0x0c, 0x14, 0x50, 0x6a, 0x2c, - 0x02, 0x78, 0xe6, 0x90, 0x2d, 0xf4, 0x5d, 0xd2, 0x9b, 0x29, 0xb3, 0x4b, 0xba, 0xa5, 0x4f, 0x69, - 0x2f, 0xca, 0xf2, 0x6a, 0x9e, 0xeb, 0x4d, 0x2a, 0x2e, 0xed, 0x47, 0x49, 0x2d, 0x56, 0x7d, 0x4f, - 0xb3, 0xcf, 0x9e, 0x49, 0x2f, 0x8e, 0x35, 0x96, 0x56, 0xec, 0x87, 0xdf, 0xcc, 0x3d, 0xfc, 0x7d, - 0xda, 0x52, 0xa9, 0x6a, 0xbd, 0xbe, 0x1c, 0x3d, 0xda, 0x29, 0x6b, 0x30, 0x84, 0x08, 0xd6, 0x90, - 0xa0, 0xa4, 0xb5, 0xe0, 0xe6, 0x09, 0xf5, 0xb0, 0x7a, 0x40, 0x68, 0x7e, 0xc8, 0x98, 0xef, 0x09, - 0x73, 0x9a, 0x97, 0x6e, 0xb3, 0xb2, 0x63, 0x4e, 0xf3, 0xbd, 0xca, 0xa7, 0xbf, 0x80, 0x39, 0x16, - 0xbf, 0xd4, 0x1c, 0x07, 0x82, 0xe6, 0x5b, 0xf4, 0x89, 0x6b, 0x3a, 0x7a, 0xde, 0x9c, 0xe6, 0xa0, - 0xa7, 0x0c, 0x4c, 0x5b, 0x94, 0x4b, 0x67, 0x34, 0xcb, 0x40, 0xd4, 0x4a, 0x77, 0x74, 0xca, 0x58, - 0x14, 0xca, 0x58, 0xb4, 0xc9, 0x4c, 0x54, 0xc9, 0x2e, 0x24, 0xea, 0x2a, 0xb3, 0x2a, 0x85, 0xbd, - 0xfc, 0x4c, 0x25, 0x79, 0xd4, 0x1c, 0xe0, 0x6b, 0xd0, 0x3c, 0x53, 0xcd, 0xaf, 0xfa, 0x6c, 0x65, - 0x52, 0x52, 0x75, 0xd7, 0x28, 0x9a, 0xde, 0xee, 0x8d, 0x44, 0x9e, 0xbe, 0xcd, 0xe8, 0x7a, 0xac, - 0xde, 0x18, 0xbb, 0xf6, 0x98, 0xba, 0x89, 0x18, 0xba, 0xc1, 0x98, 0xb9, 0xa9, 0x18, 0xb9, 0xf1, - 0x98, 0xb8, 0xf1, 0x18, 0xb8, 0xd9, 0x98, 0xb7, 0x5b, 0x6a, 0x51, 0x7b, 0x0c, 0xdb, 0x60, 0xea, - 0xa7, 0xe6, 0x54, 0x4f, 0x0d, 0x3e, 0xb8, 0x06, 0x5f, 0xa0, 0x1d, 0x66, 0x79, 0xd0, 0x8e, 0x3b, - 0x9d, 0x56, 0x94, 0x9c, 0xea, 0x87, 0xf9, 0xe9, 0xc7, 0x83, 0xef, 0xe0, 0x3b, 0xf8, 0x0e, 0xbe, - 0x83, 0xef, 0x62, 0xf8, 0x1e, 0x45, 0xad, 0x20, 0x8f, 0x2f, 0xf4, 0x23, 0xfb, 0xf8, 0xc1, 0xfa, - 0x31, 0xbd, 0x1d, 0xc6, 0x19, 0xa0, 0x0e, 0xa8, 0x03, 0xea, 0x80, 0x3a, 0xa0, 0x7e, 0x27, 0xa8, - 0x8f, 0x22, 0xcd, 0x06, 0x50, 0x7d, 0xfc, 0x64, 0xfd, 0xb0, 0xbe, 0x06, 0xa4, 0x03, 0xe9, 0x40, - 0xfa, 0xa2, 0x41, 0x7a, 0x96, 0xa7, 0xfa, 0xa4, 0xff, 0x14, 0xa2, 0xbf, 0x2c, 0x10, 0xa2, 0xc7, - 0xea, 0x42, 0xc5, 0x41, 0x33, 0xec, 0x86, 0x27, 0x51, 0x1c, 0xe5, 0x97, 0xfa, 0x91, 0x7d, 0x66, - 0x04, 0xfd, 0x08, 0xbf, 0x57, 0xfb, 0x54, 0xdb, 0x6b, 0xac, 0x37, 0x2a, 0x20, 0x3d, 0x48, 0x0f, - 0xd2, 0x2f, 0x1a, 0xd2, 0x0f, 0x11, 0x26, 0xef, 0x3f, 0xdf, 0x00, 0xda, 0x6f, 0x68, 0x7c, 0x66, - 0x2d, 0xe9, 0x9d, 0xf7, 0xd7, 0xe0, 0xaa, 0x40, 0x0c, 0x72, 0x1e, 0x7e, 0x0b, 0x54, 0xf3, 0xbc, - 0x1b, 0x74, 0xc3, 0xfc, 0x2c, 0xd3, 0xcf, 0x1f, 0xb7, 0x9e, 0x0f, 0xc2, 0x83, 0xf0, 0x20, 0xfc, - 0x82, 0x21, 0x7c, 0x2f, 0x4a, 0xf2, 0x97, 0x06, 0xc0, 0x5d, 0x63, 0xc1, 0x8f, 0xa1, 0xee, 0x01, - 0x06, 0x92, 0xd9, 0x4d, 0x76, 0x07, 0x30, 0x5d, 0x0f, 0x6a, 0xb8, 0xfa, 0x5f, 0xa2, 0x82, 0xdb, - 0x44, 0x45, 0xb1, 0xc9, 0x6a, 0x7e, 0xa9, 0x57, 0x5a, 0xd9, 0xdc, 0xf4, 0xf8, 0xa5, 0x3a, 0x5a, - 0xa2, 0x71, 0x5c, 0x2c, 0x47, 0x33, 0x3a, 0xef, 0x9d, 0x07, 0x61, 0xaa, 0xc2, 0x20, 0x6c, 0xb5, - 0x52, 0x95, 0x65, 0xca, 0x8c, 0xc3, 0x79, 0xd7, 0x38, 0xfa, 0xc3, 0x16, 0x2f, 0x70, 0x66, 0x71, - 0x66, 0x71, 0x66, 0x71, 0x66, 0x71, 0x66, 0x71, 0x66, 0x71, 0x66, 0x71, 0x66, 0x71, 0x66, 0x17, - 0xc6, 0x99, 0x4d, 0x54, 0xae, 0xdf, 0x73, 0xed, 0x3f, 0x14, 0x97, 0x12, 0x97, 0x12, 0x97, 0x72, - 0xc1, 0x5c, 0x4a, 0x7d, 0x1b, 0x7f, 0x69, 0x2a, 0xd1, 0x41, 0xe3, 0x33, 0x0f, 0xc2, 0x3c, 0x57, - 0x69, 0xa2, 0xdd, 0xa7, 0x2c, 0xfd, 0xf1, 0x39, 0x0c, 0xda, 0xd5, 0xe0, 0xed, 0x5a, 0xb0, 0x73, - 0xfc, 0xbd, 0x72, 0xb5, 0xfc, 0xe5, 0xcb, 0xea, 0xcd, 0x9f, 0x6c, 0x5c, 0xad, 0x7c, 0x7f, 0xf1, - 0x7c, 0xe7, 0xea, 0xd6, 0x8f, 0x2b, 0x57, 0x7f, 0x2b, 0xb9, 0x46, 0x4c, 0xf4, 0xa9, 0xf0, 0xa8, - 0x4f, 0x85, 0x13, 0x5e, 0x44, 0xb7, 0x13, 0x99, 0x49, 0xb2, 0x1f, 0x3f, 0x98, 0x24, 0x7b, 0xbc, - 0x14, 0xbc, 0x14, 0xbc, 0x14, 0x2d, 0x16, 0xbb, 0x08, 0x49, 0xf6, 0x74, 0xa7, 0x79, 0x6a, 0x77, - 0x9a, 0x51, 0x47, 0x16, 0x0f, 0x7b, 0xd3, 0x9c, 0xa6, 0x61, 0x53, 0xb5, 0x7b, 0x71, 0x90, 0xaa, - 0x2c, 0x0f, 0xd3, 0x5c, 0x5f, 0x97, 0x9a, 0x99, 0x27, 0xd3, 0xaf, 0x46, 0x90, 0x17, 0xe9, 0x57, - 0x43, 0xbf, 0x9a, 0xbf, 0x78, 0x90, 0xa6, 0x96, 0x54, 0x33, 0x06, 0xac, 0xa5, 0x35, 0x95, 0xe6, - 0x2d, 0x8f, 0x8b, 0x8c, 0x8b, 0x8c, 0x8b, 0xac, 0x1b, 0x42, 0x26, 0x0f, 0x34, 0x75, 0xa9, 0xaa, - 0xe1, 0xcb, 0x54, 0x4d, 0xe9, 0x7a, 0x43, 0xfa, 0xde, 0x18, 0x88, 0x99, 0x04, 0x33, 0x01, 0x50, - 0x33, 0x0d, 0x6e, 0x62, 0x20, 0x27, 0x06, 0x76, 0x32, 0xa0, 0xa7, 0x17, 0xfc, 0x34, 0x83, 0xa0, - 0xb9, 0x78, 0x81, 0x40, 0xdc, 0xc0, 0x50, 0xfc, 0x40, 0xff, 0x0b, 0xd3, 0xf8, 0xb2, 0x4a, 0x67, - 0x2a, 0xee, 0xaa, 0x34, 0xe8, 0x24, 0xf1, 0xa5, 0x39, 0xa2, 0xb9, 0x39, 0x08, 0x64, 0x00, 0x19, - 0x40, 0x06, 0x90, 0x01, 0x64, 0x50, 0x44, 0x11, 0x54, 0x88, 0x0e, 0xfb, 0xb7, 0x03, 0xac, 0x5a, - 0xa2, 0xd0, 0xfa, 0xde, 0x97, 0x8e, 0x33, 0xe2, 0xe1, 0x15, 0x22, 0xda, 0xa3, 0x54, 0xc3, 0xc7, - 0x3a, 0x1e, 0xa4, 0xaa, 0x10, 0xa4, 0x22, 0x48, 0x45, 0x90, 0x8a, 0x20, 0x15, 0x41, 0x2a, 0x74, - 0x09, 0xba, 0x04, 0x5d, 0x82, 0x2e, 0x21, 0x48, 0x45, 0x90, 0x0a, 0x32, 0x80, 0x0c, 0x20, 0x03, - 0xc8, 0x80, 0x20, 0x95, 0x9f, 0x41, 0x2a, 0x8d, 0xb7, 0xc2, 0x92, 0xf2, 0xea, 0xd0, 0x8b, 0x2d, - 0x69, 0x09, 0xf7, 0x3d, 0xfa, 0x72, 0xcf, 0x5f, 0x47, 0xd3, 0x38, 0x1c, 0xcd, 0xc2, 0xc3, 0x14, - 0xdc, 0xe8, 0xb4, 0x1b, 0x64, 0x67, 0x9d, 0x34, 0x6f, 0xf6, 0xf2, 0x4c, 0x5f, 0xfe, 0xed, 0xf4, - 0x63, 0x49, 0xbe, 0x15, 0x74, 0xf5, 0x48, 0xbe, 0x25, 0xf9, 0xf6, 0x2f, 0x1e, 0x14, 0xb6, 0x23, - 0x03, 0x77, 0x43, 0xb6, 0x23, 0xd2, 0x6e, 0x5d, 0xd4, 0x7b, 0x9c, 0x68, 0xd8, 0xd1, 0x73, 0x05, - 0x3f, 0xd1, 0x08, 0xdb, 0x51, 0x30, 0xf2, 0x94, 0x0c, 0x45, 0x9a, 0x26, 0x23, 0x10, 0x66, 0x22, - 0xcc, 0x44, 0x98, 0x89, 0x30, 0x93, 0x56, 0x8b, 0x8f, 0x55, 0xd8, 0x4e, 0x55, 0xdb, 0x64, 0x98, - 0x69, 0xdb, 0xc0, 0xb3, 0x0f, 0x46, 0xea, 0x7a, 0x75, 0x75, 0x94, 0x6e, 0x53, 0x9e, 0xc0, 0xe4, - 0x02, 0x9c, 0x70, 0x68, 0x2e, 0x1b, 0x9b, 0x31, 0x0a, 0xad, 0xe5, 0x63, 0x86, 0xfc, 0x59, 0x08, - 0x07, 0xc2, 0x81, 0x70, 0x74, 0x13, 0x8e, 0x6e, 0xff, 0xd8, 0xbc, 0x9f, 0x2c, 0xe5, 0x2f, 0x1b, - 0xf6, 0x9b, 0x8d, 0xc3, 0x99, 0x04, 0xac, 0x09, 0xc2, 0x9b, 0x14, 0xcc, 0x89, 0xc3, 0x9d, 0x38, - 0xec, 0xc9, 0xc2, 0x9f, 0x19, 0x18, 0x34, 0x04, 0x87, 0xe6, 0xfd, 0xf0, 0x99, 0x1d, 0x13, 0xb5, - 0x54, 0x92, 0x47, 0xf9, 0xa5, 0x19, 0x9f, 0x7c, 0xc6, 0x17, 0xdb, 0x34, 0x38, 0x46, 0x7d, 0xf4, - 0x51, 0x5e, 0x87, 0x99, 0xc0, 0xfe, 0x1c, 0x2f, 0x60, 0xf5, 0x6d, 0xbd, 0x71, 0xf4, 0x9f, 0x83, - 0x9a, 0xe9, 0xed, 0x39, 0x68, 0xd3, 0x9b, 0x69, 0xef, 0x45, 0x78, 0xd7, 0xd7, 0x77, 0xe3, 0x23, - 0x4c, 0xad, 0x60, 0xfd, 0xe0, 0xd3, 0x46, 0xc9, 0xf8, 0x90, 0x57, 0xcf, 0x0b, 0xb8, 0x6e, 0x5b, - 0x02, 0xeb, 0x66, 0x74, 0x84, 0x63, 0xdf, 0x00, 0xdf, 0x8b, 0x76, 0xe4, 0xc9, 0xd9, 0xf0, 0x6a, - 0x41, 0xe3, 0xbe, 0xef, 0x78, 0x20, 0x5c, 0x5f, 0x5c, 0x5f, 0x5c, 0x5f, 0x5c, 0x5f, 0x5c, 0xdf, - 0x45, 0x72, 0x7d, 0x0f, 0xaa, 0x47, 0xbf, 0x35, 0x3e, 0xd4, 0x8e, 0x3e, 0x1e, 0x34, 0x0e, 0x0e, - 0xdf, 0x1f, 0xbd, 0x7f, 0xf3, 0x7e, 0x0f, 0x2f, 0x58, 0xc3, 0x62, 0x1e, 0x7e, 0xf8, 0x74, 0x80, - 0x43, 0x3c, 0xd7, 0x12, 0xee, 0xed, 0xb2, 0x82, 0xf3, 0xad, 0xe0, 0x87, 0x43, 0xb4, 0x45, 0x31, - 0x18, 0xd5, 0x48, 0x73, 0xfd, 0x99, 0x51, 0x4c, 0x36, 0xdb, 0x9f, 0x1d, 0xcc, 0x60, 0xf3, 0xfd, - 0x99, 0xc1, 0x8c, 0x34, 0xe3, 0x17, 0x10, 0x96, 0x4e, 0x1f, 0xfc, 0x18, 0xaa, 0x72, 0x98, 0x3c, - 0x5f, 0x34, 0x29, 0x7e, 0x2a, 0xe7, 0xba, 0x1c, 0xb6, 0x23, 0xad, 0x3d, 0x39, 0xf4, 0xbf, 0x50, - 0x9d, 0xb9, 0x01, 0x7a, 0x7b, 0x75, 0xcc, 0x30, 0x92, 0xce, 0x9e, 0x1d, 0x33, 0x2e, 0xb9, 0xa9, - 0xcc, 0x80, 0x0a, 0x99, 0x01, 0x82, 0x71, 0x03, 0x32, 0x03, 0x8a, 0x48, 0x10, 0x64, 0x06, 0x3c, - 0x14, 0xc6, 0x08, 0x8f, 0x5a, 0x85, 0x37, 0x29, 0x98, 0x13, 0x87, 0x3b, 0x71, 0xd8, 0x93, 0x85, - 0x3f, 0x3f, 0xc5, 0x1c, 0xe1, 0xd1, 0x27, 0x8c, 0x41, 0x66, 0x80, 0x9f, 0xe1, 0x28, 0x32, 0x03, - 0x9e, 0xbc, 0x6e, 0x64, 0x06, 0x48, 0x03, 0x3e, 0x99, 0x01, 0x64, 0x06, 0xe0, 0xfa, 0xe2, 0xfa, - 0xe2, 0xfa, 0xe2, 0xfa, 0x2e, 0xba, 0xeb, 0x4b, 0x66, 0x80, 0x99, 0xc5, 0x24, 0x33, 0x60, 0xee, - 0x25, 0x24, 0x33, 0x60, 0xde, 0x15, 0x24, 0x33, 0xa0, 0x28, 0x8c, 0x4a, 0x66, 0xc0, 0x7c, 0x83, - 0x91, 0x19, 0x40, 0x66, 0xc0, 0x63, 0x33, 0x03, 0x34, 0x36, 0x42, 0xd4, 0xff, 0x3e, 0xdd, 0x6a, - 0x9e, 0xf3, 0xbb, 0xba, 0x34, 0x70, 0x8c, 0x66, 0x06, 0xf5, 0x8c, 0xa2, 0x9c, 0x51, 0x54, 0x33, - 0x83, 0x62, 0x74, 0x43, 0xfd, 0x2b, 0x14, 0x28, 0x69, 0x4d, 0xc0, 0x79, 0x74, 0xf7, 0xcc, 0x6a, - 0x3b, 0xa2, 0x15, 0xab, 0xf7, 0xad, 0x58, 0xa7, 0x3b, 0x7d, 0xfa, 0xd8, 0x01, 0x35, 0xc9, 0x55, - 0x1a, 0xc4, 0xea, 0x42, 0xc5, 0x41, 0x37, 0xed, 0x74, 0xc3, 0xd3, 0xc1, 0xab, 0x08, 0xba, 0x9d, - 0x38, 0x6a, 0x46, 0x4a, 0x67, 0x53, 0xd4, 0x9f, 0x8d, 0x44, 0x9f, 0xd4, 0x9f, 0xae, 0x21, 0x7d, - 0x52, 0xe9, 0x93, 0xfa, 0x57, 0x1f, 0x49, 0x5b, 0x9f, 0xd4, 0xc1, 0x36, 0x5d, 0x0f, 0xf2, 0xce, - 0x70, 0xc3, 0x56, 0xf4, 0x37, 0x4d, 0x9d, 0x19, 0x81, 0x0e, 0xaa, 0x0e, 0xc1, 0x83, 0x29, 0x98, - 0x30, 0x0e, 0x17, 0xc6, 0x61, 0xc3, 0x2c, 0x7c, 0xb8, 0x29, 0x02, 0xb5, 0x77, 0x50, 0xa5, 0x99, - 0x9d, 0x41, 0x88, 0x31, 0x09, 0x35, 0x02, 0x90, 0x63, 0x1a, 0x7a, 0xc4, 0x20, 0x48, 0x0c, 0x8a, - 0x64, 0x20, 0xc9, 0x8f, 0xc8, 0xa5, 0xb1, 0x94, 0xf5, 0xd6, 0xf0, 0x3a, 0xc8, 0x20, 0x3a, 0xef, - 0x76, 0xd2, 0x7c, 0xa8, 0x5a, 0x2e, 0xcd, 0xe7, 0xf0, 0xdc, 0x3d, 0xac, 0x21, 0xfb, 0xb9, 0x71, - 0xe5, 0xe5, 0x61, 0xed, 0x5f, 0xb5, 0x37, 0x47, 0x8d, 0xc3, 0xf7, 0x1f, 0x8f, 0x6a, 0x24, 0x10, - 0x89, 0xe3, 0xeb, 0x5d, 0x38, 0x9b, 0x76, 0x3b, 0x31, 0x09, 0x44, 0x0e, 0xe3, 0xef, 0x7d, 0x38, - 0x3c, 0x78, 0x71, 0x1c, 0x77, 0x2e, 0xc9, 0x26, 0x10, 0x8d, 0x91, 0x73, 0x08, 0x99, 0x26, 0x33, - 0x21, 0xa7, 0x9c, 0xc3, 0x0d, 0x83, 0x63, 0xd4, 0x92, 0xde, 0x79, 0x7f, 0xf1, 0x16, 0x39, 0x7b, - 0x56, 0x98, 0x7f, 0x45, 0x78, 0x17, 0x22, 0x84, 0x08, 0x21, 0x42, 0x88, 0xd0, 0xcc, 0x8e, 0x31, - 0x77, 0xdd, 0xc3, 0x0c, 0xf9, 0x6d, 0x1b, 0x1c, 0xe3, 0x60, 0x72, 0xa2, 0x37, 0x34, 0xa4, 0x57, - 0x69, 0xa7, 0x97, 0x47, 0xc9, 0xe9, 0x08, 0x9b, 0x27, 0x3f, 0x1e, 0xf1, 0x7d, 0x4b, 0xb5, 0xa3, - 0x24, 0xca, 0xa3, 0x4e, 0x92, 0xdd, 0xff, 0x9f, 0x26, 0xff, 0x45, 0xff, 0x2d, 0x12, 0xa6, 0xed, - 0x87, 0xbc, 0xb1, 0xf9, 0x06, 0xbb, 0x99, 0x71, 0x21, 0x94, 0x91, 0xdd, 0xcb, 0x54, 0x6a, 0x1a, - 0xe2, 0x85, 0xb8, 0xeb, 0x36, 0x7f, 0x75, 0x86, 0xab, 0x19, 0x9c, 0x5c, 0x96, 0xcc, 0xa7, 0xdd, - 0x8a, 0xf3, 0xd8, 0x0c, 0x97, 0x0d, 0xde, 0xa4, 0xd1, 0x21, 0xaf, 0x28, 0xbd, 0x23, 0x43, 0x52, - 0x2c, 0x8b, 0xe5, 0x27, 0xa9, 0x19, 0xe5, 0xdb, 0x87, 0xb5, 0xf4, 0x56, 0xd2, 0xc5, 0x09, 0xf4, - 0x56, 0xe2, 0xa0, 0xca, 0x15, 0x9d, 0xc8, 0x41, 0x95, 0x20, 0x81, 0x70, 0x50, 0x35, 0xcf, 0xe2, - 0x71, 0x50, 0x45, 0x7c, 0x8e, 0xf8, 0x1c, 0xf1, 0x39, 0x0e, 0xaa, 0x9e, 0xec, 0x1c, 0x72, 0x50, - 0x65, 0xd4, 0x88, 0x38, 0xa8, 0x82, 0x08, 0x21, 0x42, 0x88, 0x10, 0x22, 0x7c, 0xf0, 0x8e, 0xe1, - 0xa0, 0x8a, 0x83, 0xaa, 0xa7, 0x8e, 0xc2, 0x41, 0x95, 0xc6, 0x8d, 0xc8, 0x41, 0x95, 0xa7, 0x3c, - 0xb6, 0xc4, 0x41, 0x95, 0x05, 0xf1, 0xc0, 0x41, 0x95, 0xbb, 0x07, 0x55, 0xb4, 0xfa, 0xb0, 0x6d, - 0x29, 0x8e, 0x5b, 0x88, 0xe5, 0x36, 0x10, 0xf5, 0xfe, 0x7c, 0xf7, 0xfa, 0x33, 0x39, 0xb8, 0x9e, - 0xed, 0xc1, 0x68, 0xb2, 0x8d, 0xc1, 0x7f, 0x58, 0x3f, 0xea, 0xec, 0x0d, 0xa7, 0xea, 0x4a, 0xbf, - 0x88, 0xe7, 0x9a, 0x0a, 0x8c, 0x2b, 0x93, 0xd7, 0xb0, 0x6e, 0xa8, 0xc0, 0xf8, 0xe6, 0x08, 0x14, - 0x18, 0xeb, 0x88, 0x69, 0x50, 0x60, 0x2c, 0xe4, 0xdb, 0x51, 0x60, 0x3c, 0xc7, 0x03, 0x29, 0x30, - 0x36, 0x08, 0x31, 0x26, 0xa1, 0x46, 0x00, 0x72, 0xa4, 0x24, 0x28, 0x79, 0x1b, 0x45, 0xd4, 0x53, - 0xe4, 0x6d, 0xcc, 0xb3, 0x78, 0xe4, 0x6d, 0x38, 0x82, 0xaf, 0x77, 0xe1, 0x2c, 0xc7, 0x55, 0x9e, - 0x84, 0xf9, 0x38, 0xae, 0xba, 0x7f, 0x69, 0xc8, 0xdb, 0x98, 0x63, 0x0c, 0xf2, 0x36, 0xc8, 0xdb, - 0x80, 0x08, 0x21, 0x42, 0x88, 0x10, 0x22, 0x7c, 0xf8, 0x8e, 0x21, 0x6f, 0x83, 0xbc, 0x8d, 0xa7, - 0x8e, 0x42, 0xde, 0x86, 0xc6, 0x8d, 0x48, 0xde, 0x86, 0xa7, 0x3c, 0xb6, 0x44, 0xde, 0x86, 0x05, - 0xf1, 0x40, 0xde, 0x86, 0x5b, 0xa7, 0xf2, 0x37, 0x0e, 0x6b, 0x29, 0x30, 0xd6, 0xc5, 0x09, 0x14, - 0x18, 0x73, 0x50, 0xe5, 0x8a, 0x4e, 0xe4, 0xa0, 0x4a, 0x90, 0x40, 0x38, 0xa8, 0x9a, 0x67, 0xf1, - 0x38, 0xa8, 0x22, 0x3e, 0x47, 0x7c, 0x8e, 0xf8, 0x1c, 0x07, 0x55, 0x4f, 0x76, 0x0e, 0x39, 0xa8, - 0x32, 0x6a, 0x44, 0x1c, 0x54, 0x41, 0x84, 0x10, 0x21, 0x44, 0x08, 0x11, 0x3e, 0x78, 0xc7, 0x70, - 0x50, 0xc5, 0x41, 0xd5, 0x53, 0x47, 0xe1, 0xa0, 0x4a, 0xe3, 0x46, 0xe4, 0xa0, 0xca, 0x53, 0x1e, - 0x5b, 0xe2, 0xa0, 0xca, 0x82, 0x78, 0xe0, 0xa0, 0xca, 0xdd, 0x83, 0x2a, 0x0a, 0x8c, 0x6d, 0x5b, - 0x8a, 0xe3, 0x16, 0xe2, 0x7e, 0x81, 0x71, 0x65, 0x54, 0x60, 0xbc, 0xce, 0x85, 0xf4, 0xfe, 0x5f, - 0x48, 0x6f, 0xf6, 0x96, 0x75, 0x23, 0x56, 0xe8, 0xe3, 0xbd, 0xf9, 0x71, 0xd6, 0x0d, 0x4e, 0xa2, - 0x5c, 0xdf, 0xf5, 0xf8, 0xe3, 0x07, 0x72, 0x0b, 0xfe, 0x43, 0x02, 0x5f, 0xdc, 0x82, 0xcf, 0x2d, - 0xf8, 0xf7, 0x7e, 0x24, 0x6d, 0xb7, 0xe0, 0x87, 0x79, 0x1e, 0x36, 0xcf, 0xfa, 0x62, 0x4e, 0xc3, - 0x4e, 0x9f, 0x31, 0xe3, 0xa9, 0xa7, 0xd3, 0x9c, 0xc2, 0x21, 0x58, 0x30, 0x1d, 0x43, 0xa0, 0x39, - 0x85, 0x4f, 0xb2, 0x85, 0xe6, 0x14, 0x4b, 0x34, 0xa7, 0x90, 0x82, 0x1c, 0xa9, 0xf0, 0x25, 0x39, - 0x7f, 0x45, 0x8c, 0xc5, 0x19, 0xcb, 0xf9, 0x8b, 0x4e, 0x93, 0x4e, 0xaa, 0xb4, 0xfa, 0x41, 0xf7, - 0x6e, 0xaa, 0x1b, 0x63, 0x99, 0xcf, 0xee, 0x6b, 0x87, 0x71, 0xa6, 0xc8, 0x66, 0x10, 0x87, 0x50, - 0x41, 0x28, 0x95, 0x82, 0x54, 0x71, 0x68, 0x15, 0x87, 0x58, 0x59, 0xa8, 0x35, 0x03, 0xb9, 0x86, - 0xa0, 0x77, 0xb2, 0x34, 0x72, 0xd9, 0x0c, 0x27, 0x9d, 0x4e, 0xac, 0xc2, 0x44, 0x22, 0x9b, 0x61, - 0x7d, 0x81, 0xd3, 0xec, 0xb2, 0x5e, 0xb7, 0x9b, 0xaa, 0x2c, 0x93, 0x21, 0xbf, 0xa9, 0xd1, 0xa0, - 0x3f, 0xe8, 0x0f, 0xfa, 0x83, 0xfe, 0xa0, 0x3f, 0xe8, 0xcf, 0x7f, 0x71, 0x5a, 0xa8, 0x44, 0x91, - 0xd1, 0x71, 0x5d, 0xf9, 0x66, 0x10, 0x9f, 0xa2, 0x65, 0x6d, 0x5e, 0x10, 0x45, 0xcb, 0x04, 0x30, - 0x1d, 0x71, 0x33, 0x08, 0x60, 0x0a, 0x72, 0x04, 0x01, 0x4c, 0x14, 0x1c, 0x0a, 0x0e, 0x05, 0x87, - 0x82, 0x43, 0xc1, 0x2d, 0xa4, 0x82, 0x23, 0x80, 0x09, 0xfd, 0x41, 0x7f, 0xd0, 0x1f, 0xf4, 0x07, - 0xfd, 0x2d, 0x20, 0xfd, 0x11, 0xc0, 0xb4, 0x1a, 0xc0, 0xa4, 0x98, 0xcd, 0xb6, 0x31, 0xd8, 0x37, - 0x02, 0xcb, 0xf5, 0x6a, 0x7b, 0x59, 0xf7, 0x75, 0x94, 0x37, 0xaa, 0xa3, 0x19, 0xbd, 0x8e, 0xf2, - 0x22, 0x5d, 0x7b, 0xd9, 0xb9, 0x50, 0x69, 0xdc, 0x09, 0x0d, 0x55, 0x14, 0x4c, 0x3d, 0x9d, 0x8a, - 0x02, 0x07, 0x7d, 0x5a, 0x2a, 0x0a, 0xec, 0xf8, 0xa4, 0x54, 0x14, 0xcc, 0xb5, 0x11, 0xa8, 0x28, - 0xe0, 0x40, 0xce, 0x19, 0xd9, 0xcc, 0x81, 0x9c, 0xa0, 0xe6, 0x31, 0x76, 0x20, 0x17, 0xb6, 0x2e, - 0x54, 0x9a, 0x47, 0x99, 0x0a, 0xce, 0xa2, 0xd3, 0xb3, 0xe0, 0x5c, 0xe5, 0x69, 0xd4, 0x34, 0x1f, - 0x9e, 0xbc, 0x7b, 0x58, 0xe2, 0x94, 0x36, 0x00, 0x55, 0x02, 0x58, 0x05, 0x01, 0x56, 0x0a, 0x68, - 0xc5, 0x01, 0x57, 0x1c, 0x78, 0x65, 0x01, 0xd8, 0x5c, 0x38, 0x6b, 0x89, 0x38, 0xe5, 0xe3, 0x3c, - 0xc1, 0x85, 0x3e, 0xa6, 0x53, 0xb9, 0xd0, 0x09, 0xdd, 0x68, 0x20, 0x48, 0x0f, 0xd2, 0x83, 0xf4, - 0x20, 0x3d, 0x48, 0x0f, 0xd2, 0xb3, 0x4c, 0x7a, 0x41, 0x27, 0x09, 0x4e, 0x3a, 0x1d, 0x39, 0xf2, - 0x9b, 0x0c, 0x08, 0x09, 0x42, 0x82, 0x90, 0x20, 0x24, 0x08, 0x09, 0x42, 0x82, 0xf2, 0x4f, 0x24, - 0x43, 0xe5, 0x01, 0xc9, 0x09, 0x37, 0x4f, 0xb5, 0x17, 0xa8, 0xc4, 0x2e, 0x55, 0x7d, 0x5f, 0x25, - 0x4f, 0xa3, 0xd3, 0x53, 0x95, 0x66, 0xe6, 0xce, 0xf6, 0x6e, 0x8d, 0xc3, 0x19, 0x1f, 0x67, 0x7c, - 0xf6, 0x1d, 0x0f, 0xce, 0xf8, 0x04, 0x59, 0xc3, 0xd8, 0x19, 0xdf, 0x14, 0xb4, 0x98, 0xd7, 0x76, - 0xd3, 0xc3, 0x99, 0x55, 0x5c, 0xeb, 0x28, 0x2e, 0x14, 0x17, 0x8a, 0x6b, 0x31, 0x14, 0x97, 0x29, - 0x80, 0x9c, 0x0c, 0x60, 0x28, 0x7f, 0xeb, 0xde, 0x8d, 0x69, 0x24, 0x9f, 0x4b, 0x18, 0x2a, 0xc5, - 0x20, 0x53, 0x12, 0x3a, 0x2d, 0x40, 0xa8, 0x34, 0x94, 0x5a, 0x83, 0x54, 0x6b, 0xd0, 0x6a, 0x07, - 0x62, 0xcd, 0x42, 0xad, 0x61, 0xc8, 0x15, 0x83, 0xde, 0xc9, 0x40, 0x2d, 0x15, 0x87, 0x97, 0x72, - 0xc6, 0x7f, 0x7d, 0x37, 0x73, 0x7f, 0x58, 0x21, 0xfb, 0x33, 0x7b, 0x5a, 0x60, 0x0d, 0x98, 0x6d, - 0x00, 0xb4, 0x45, 0xa0, 0xb6, 0x05, 0xd8, 0xd6, 0x81, 0xdb, 0x3a, 0x80, 0xdb, 0x05, 0x72, 0x19, - 0x40, 0x17, 0x02, 0xf6, 0xc9, 0x52, 0x1a, 0x3f, 0xcd, 0xb8, 0x77, 0xc7, 0xf6, 0xa2, 0x24, 0x5f, - 0xdf, 0x92, 0xdc, 0xb0, 0x23, 0xfc, 0xdd, 0x12, 0x1c, 0xf2, 0x30, 0x4c, 0x4e, 0xfb, 0x9f, 0xf6, - 0xb3, 0xe8, 0x06, 0x91, 0x05, 0xa4, 0xa5, 0xd1, 0xfd, 0xbc, 0xe2, 0x48, 0x68, 0x89, 0x58, 0x67, - 0x86, 0xff, 0x14, 0xc6, 0x3d, 0x65, 0x71, 0xfc, 0xb7, 0x69, 0xd8, 0xcc, 0xa3, 0x4e, 0xb2, 0x1b, - 0x9d, 0x46, 0x83, 0x1b, 0x8b, 0xd7, 0xc4, 0xe7, 0x71, 0xf5, 0xdc, 0x82, 0xc9, 0x85, 0xdf, 0x16, - 0xde, 0xe4, 0xb6, 0x36, 0x37, 0x5f, 0x6c, 0x2e, 0xb0, 0xd9, 0x3d, 0x2b, 0xe6, 0x68, 0xc7, 0xcf, - 0x8a, 0xf1, 0x79, 0x04, 0x60, 0x41, 0xe8, 0x94, 0xe3, 0x5e, 0x37, 0x46, 0xe2, 0xd4, 0x03, 0x25, - 0x89, 0x92, 0x44, 0x49, 0xa2, 0x24, 0x51, 0x92, 0x77, 0xee, 0xd8, 0xa8, 0xa5, 0x92, 0x3c, 0xca, - 0x2f, 0x53, 0xd5, 0xb6, 0x20, 0x27, 0xd7, 0x05, 0xfd, 0xaf, 0x52, 0x7d, 0xf4, 0x51, 0x5f, 0x87, - 0x99, 0x05, 0xbc, 0x18, 0x2f, 0xf8, 0xfb, 0x4f, 0xb5, 0xc3, 0xbd, 0xf7, 0xd5, 0xdd, 0xc6, 0x61, - 0xed, 0x43, 0xed, 0xa8, 0x71, 0x74, 0x58, 0xff, 0xf5, 0xd7, 0xda, 0x61, 0xe3, 0xe8, 0x3f, 0x07, - 0x35, 0x69, 0x04, 0x19, 0x38, 0xc2, 0x99, 0xb8, 0xc2, 0xb6, 0xa3, 0xb2, 0xa7, 0x5e, 0xc2, 0xff, - 0xad, 0xd6, 0x8f, 0x1a, 0x6f, 0xdf, 0x1f, 0x36, 0x5e, 0xff, 0x7a, 0x50, 0x5a, 0x04, 0xc1, 0xe7, - 0xca, 0x7a, 0x7f, 0xf8, 0xcf, 0x87, 0xa3, 0xda, 0x7e, 0xa9, 0xe0, 0x62, 0xe7, 0xb8, 0x68, 0x34, - 0xc8, 0x49, 0xdf, 0x5f, 0x7b, 0x42, 0x66, 0x73, 0x97, 0x67, 0xc6, 0xb3, 0x9f, 0xcb, 0x3c, 0x9d, - 0x79, 0x3b, 0xfd, 0x7f, 0x8d, 0x24, 0x3a, 0xcb, 0x19, 0x8c, 0x41, 0x63, 0x11, 0xd6, 0xdb, 0x56, - 0x74, 0xb6, 0x90, 0xbe, 0x26, 0x75, 0xc6, 0x4f, 0xfd, 0x4c, 0xea, 0x0c, 0xa9, 0x33, 0x0e, 0xe9, - 0xe1, 0xc9, 0x8e, 0x8b, 0x55, 0xd8, 0x96, 0xd1, 0xc0, 0x13, 0xed, 0xbb, 0x2d, 0x30, 0xd6, 0xc1, - 0xc8, 0x47, 0x58, 0x5d, 0x1d, 0xb1, 0xf2, 0x34, 0x55, 0xc3, 0xd1, 0x77, 0x38, 0x57, 0x46, 0xee, - 0x07, 0xbb, 0xd7, 0xf0, 0x4c, 0xdc, 0x17, 0x76, 0xaf, 0xc9, 0x49, 0x71, 0x72, 0x05, 0x4e, 0x86, - 0x93, 0xe1, 0xe4, 0x42, 0x71, 0x32, 0xe9, 0xac, 0xde, 0x89, 0x24, 0x71, 0xb1, 0x64, 0x03, 0xa0, - 0x2d, 0x02, 0xb5, 0x2d, 0xc0, 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, 0xcb, 0x00, 0xba, - 0x10, 0xb0, 0xcb, 0x8b, 0xae, 0x99, 0x1d, 0x4b, 0x3a, 0xab, 0xb1, 0x2f, 0xd2, 0x59, 0x45, 0x87, - 0x27, 0x9d, 0x95, 0x74, 0x56, 0x4b, 0x26, 0x47, 0x3a, 0x6b, 0x21, 0x47, 0x23, 0x9d, 0xf5, 0xe1, - 0x66, 0x48, 0x3a, 0x2b, 0x4a, 0x12, 0x25, 0x89, 0x92, 0x44, 0x49, 0x2e, 0xaa, 0x92, 0x24, 0x9d, - 0x55, 0x78, 0xc1, 0x49, 0x67, 0x5d, 0x22, 0x9d, 0x95, 0x74, 0xd6, 0x42, 0x8b, 0x1d, 0xd2, 0x59, - 0xdd, 0x1a, 0x81, 0x74, 0x56, 0xd1, 0x74, 0x56, 0x03, 0x37, 0x4b, 0xcb, 0xd9, 0x8b, 0x5f, 0xdd, - 0xea, 0x7e, 0x57, 0x97, 0x62, 0xdd, 0x30, 0xf7, 0xa2, 0x2c, 0xaf, 0xe6, 0xb9, 0xe1, 0xf6, 0x78, - 0xfb, 0x51, 0x52, 0x8b, 0x55, 0x5f, 0x57, 0xf4, 0x3d, 0x93, 0xa4, 0x17, 0xc7, 0x06, 0x53, 0x97, - 0xf6, 0xc3, 0x6f, 0x72, 0x83, 0xbd, 0x4f, 0x5b, 0x2a, 0x55, 0xad, 0xd7, 0x97, 0xa3, 0xa1, 0xbc, - 0x32, 0x34, 0x21, 0x88, 0x73, 0x1c, 0xda, 0x4a, 0x46, 0xd3, 0xe8, 0x9e, 0x7a, 0x7f, 0xfa, 0xfb, - 0xd1, 0xf4, 0xfb, 0xdf, 0x1f, 0xf6, 0xa7, 0x7b, 0x64, 0x32, 0x59, 0x91, 0x3e, 0xfb, 0xc5, 0xb6, - 0xf8, 0x45, 0xe8, 0xb7, 0x6f, 0x26, 0x65, 0xd5, 0x68, 0x8a, 0xaa, 0xf1, 0xee, 0xfa, 0x15, 0xba, - 0xeb, 0xdf, 0x1c, 0x82, 0xee, 0xfa, 0x8f, 0x06, 0x4a, 0xba, 0xeb, 0x73, 0x83, 0xf6, 0x3c, 0x8b, - 0xc7, 0x3d, 0x6a, 0xb6, 0x81, 0x55, 0x10, 0x60, 0xa5, 0x80, 0x56, 0x1c, 0x70, 0xc5, 0x81, 0x57, - 0x16, 0x80, 0xfd, 0x8c, 0x93, 0x70, 0x8f, 0x9a, 0x4d, 0x7d, 0xc7, 0x0d, 0xda, 0x90, 0x1e, 0xa4, - 0x07, 0xe9, 0x41, 0x7a, 0x90, 0x1e, 0xa4, 0x37, 0x37, 0xe9, 0x71, 0x83, 0x36, 0x24, 0x08, 0x09, - 0x42, 0x82, 0x90, 0x20, 0x24, 0xe8, 0x38, 0x09, 0x72, 0xb2, 0x67, 0xf5, 0x64, 0xcf, 0x40, 0x26, - 0x8e, 0xc6, 0x03, 0xbd, 0x67, 0x0e, 0x19, 0x85, 0x29, 0x63, 0xb0, 0x6f, 0x04, 0x25, 0xad, 0xe7, - 0xa6, 0x1a, 0x72, 0x14, 0xf4, 0xd8, 0xe3, 0xfc, 0xd6, 0x33, 0xdf, 0x13, 0xe6, 0xb4, 0x3b, 0xdd, - 0xf6, 0x66, 0xc5, 0xce, 0x34, 0x98, 0xd6, 0xd3, 0x4d, 0x6a, 0x3e, 0x33, 0x7a, 0xfa, 0xcb, 0x9f, - 0xe3, 0xc5, 0x97, 0xce, 0xbb, 0xf1, 0xfc, 0xb7, 0xfb, 0x4f, 0x1c, 0x8e, 0xc1, 0xd3, 0xe6, 0x34, - 0x43, 0x3d, 0x59, 0x05, 0xda, 0xa4, 0x8f, 0x4e, 0x89, 0x63, 0x40, 0xca, 0xe8, 0x96, 0x2c, 0xc6, - 0xa4, 0x89, 0x31, 0x09, 0x62, 0x46, 0x6a, 0xd8, 0x85, 0x62, 0x5d, 0xa7, 0xf6, 0xa5, 0xe8, 0xb4, - 0x1b, 0xc4, 0xad, 0x6e, 0x90, 0x5d, 0x26, 0xfa, 0x0e, 0xe7, 0xaf, 0x4b, 0xb5, 0x6e, 0x3e, 0x5d, - 0xd3, 0xdb, 0xd4, 0x9b, 0x54, 0xa4, 0x3d, 0x02, 0x62, 0x22, 0xe2, 0x61, 0x30, 0xc2, 0x61, 0x2a, - 0xa2, 0x61, 0x3c, 0x82, 0x61, 0x3c, 0x62, 0x61, 0x36, 0x42, 0xe1, 0x96, 0x92, 0xd0, 0x9d, 0x04, - 0x64, 0xea, 0xc6, 0x78, 0xb3, 0x37, 0xc4, 0x1b, 0xcf, 0x57, 0x5c, 0x23, 0x5f, 0x51, 0x00, 0x7a, - 0xc4, 0x20, 0x48, 0x3c, 0x78, 0x4a, 0xbe, 0xa2, 0xc1, 0x7c, 0x45, 0x95, 0x84, 0x27, 0xb1, 0x6a, - 0x99, 0x3f, 0xa1, 0x1a, 0x0f, 0x64, 0xfe, 0x64, 0xaa, 0x6f, 0x89, 0x1c, 0x4c, 0x89, 0x63, 0xa7, - 0x20, 0x86, 0x4a, 0x61, 0xa9, 0x38, 0xa6, 0x8a, 0x63, 0xab, 0x2c, 0xc6, 0x9a, 0xc1, 0x5a, 0x43, - 0x98, 0x3b, 0x59, 0x1a, 0x0e, 0xa6, 0x2c, 0xbe, 0x58, 0x13, 0xd9, 0x19, 0xdd, 0x4e, 0x96, 0x07, - 0x99, 0xca, 0xb2, 0xa8, 0x93, 0x04, 0xbd, 0x6e, 0x60, 0xb6, 0x2d, 0xf3, 0xe4, 0xed, 0xde, 0x3d, - 0x2c, 0x44, 0x05, 0x51, 0x41, 0x54, 0x10, 0x95, 0x57, 0x44, 0x65, 0xbc, 0xad, 0xb1, 0x40, 0x1b, - 0x63, 0xa1, 0xb6, 0xc5, 0x02, 0x5d, 0x46, 0x24, 0xdb, 0x12, 0x4b, 0x77, 0x65, 0x14, 0x6e, 0x3b, - 0x6c, 0xa3, 0xdf, 0xab, 0x44, 0xff, 0x50, 0xc9, 0x36, 0xc2, 0xb6, 0x4c, 0x44, 0xb0, 0x4d, 0xb0, - 0x15, 0x33, 0xf1, 0xb4, 0x4f, 0xcf, 0x31, 0x29, 0x70, 0x3a, 0xdc, 0x9e, 0x22, 0xa5, 0xc0, 0x9d, - 0x77, 0xe3, 0xac, 0x7c, 0xf3, 0x94, 0xd4, 0xc8, 0xc5, 0xaa, 0x74, 0xb4, 0xd0, 0x1d, 0x34, 0xa0, - 0xa3, 0x05, 0x27, 0x44, 0x2e, 0x8a, 0x43, 0x4e, 0x88, 0x38, 0x21, 0xfa, 0xf9, 0x02, 0x71, 0x42, - 0x64, 0x19, 0x3b, 0x05, 0x31, 0x54, 0x0a, 0x4b, 0xc5, 0x31, 0x55, 0x1c, 0x5b, 0x65, 0x31, 0xd6, - 0xac, 0x1c, 0xe1, 0x84, 0xe8, 0x11, 0xce, 0x1e, 0x27, 0x44, 0x9c, 0x10, 0x41, 0x54, 0x10, 0x15, - 0x44, 0x05, 0x51, 0x3d, 0x7e, 0xc7, 0x70, 0x42, 0xf4, 0xe0, 0x2f, 0x4e, 0x88, 0xe6, 0x1a, 0x8e, - 0x13, 0x22, 0x3d, 0x26, 0xc2, 0x09, 0x91, 0xf7, 0x66, 0xc2, 0x09, 0x91, 0x59, 0xa5, 0xc1, 0x09, - 0x91, 0xbd, 0x13, 0x22, 0x3a, 0x24, 0xd8, 0xb6, 0x04, 0xcb, 0x16, 0x60, 0xb9, 0x3d, 0xc2, 0x7e, - 0x37, 0xce, 0x1a, 0xf5, 0xd3, 0xee, 0x5e, 0xab, 0xfb, 0xa1, 0x3f, 0x1b, 0x7a, 0x23, 0xf8, 0xde, - 0x1b, 0x41, 0x43, 0x55, 0xfe, 0x3c, 0xc6, 0xe4, 0x63, 0x5b, 0x84, 0x24, 0x4b, 0xf5, 0x75, 0x45, - 0xe8, 0x3f, 0x8c, 0xa6, 0x08, 0x82, 0xb1, 0x27, 0x9a, 0x22, 0xd0, 0x14, 0xe1, 0x2f, 0x1e, 0xa4, - 0xb9, 0x7a, 0xd9, 0x4c, 0xd5, 0x32, 0x8d, 0x10, 0x68, 0x84, 0xb0, 0x44, 0x23, 0x04, 0xbd, 0x82, - 0x41, 0x7b, 0x23, 0x04, 0x53, 0x39, 0x23, 0x86, 0x73, 0x45, 0x4c, 0xf7, 0xb7, 0x35, 0x14, 0xf7, - 0xa2, 0xd5, 0x82, 0x2c, 0xb8, 0x89, 0x81, 0x9c, 0x18, 0xd8, 0xc9, 0x80, 0x9e, 0x1f, 0x71, 0x34, - 0x63, 0x67, 0x64, 0x02, 0x49, 0x1c, 0x86, 0x92, 0x37, 0x08, 0x94, 0x39, 0x1c, 0xc6, 0x48, 0xb2, - 0x54, 0x6b, 0xfa, 0xbc, 0x86, 0x98, 0x94, 0x96, 0xa0, 0x8a, 0xce, 0x34, 0x79, 0x23, 0xe9, 0xf1, - 0xc6, 0xa4, 0x48, 0x05, 0x29, 0x82, 0x14, 0x41, 0x8a, 0x20, 0x45, 0x90, 0x22, 0x48, 0x11, 0xa4, - 0x08, 0x52, 0x04, 0x29, 0x82, 0x14, 0xf1, 0x45, 0x8a, 0x68, 0xcc, 0xd3, 0xe0, 0x74, 0xdc, 0xee, - 0xbb, 0xb4, 0x74, 0x38, 0xfe, 0x2e, 0x4b, 0x7d, 0x3c, 0x1b, 0x4f, 0x55, 0x5b, 0xa5, 0x2a, 0x69, - 0xaa, 0xe0, 0x24, 0x4c, 0x5a, 0x7f, 0x46, 0xad, 0xc1, 0x6b, 0xd2, 0x74, 0x56, 0x7e, 0xd7, 0xc3, - 0x39, 0x3b, 0x17, 0x74, 0xe8, 0x38, 0x3b, 0xe7, 0xec, 0xfc, 0x2f, 0x1e, 0xc4, 0xd9, 0x39, 0x01, - 0x2b, 0x02, 0x56, 0x04, 0xac, 0x34, 0x3c, 0xd0, 0x84, 0x1f, 0x21, 0xe8, 0x57, 0x10, 0x68, 0x22, - 0xd0, 0x44, 0xa0, 0x89, 0x40, 0xd3, 0x2d, 0x8b, 0xef, 0x45, 0x49, 0xfe, 0xa2, 0x62, 0x30, 0xce, - 0xb4, 0x6d, 0xe0, 0xd1, 0x66, 0xeb, 0x3f, 0x0d, 0x56, 0xe1, 0x4a, 0xd4, 0x7b, 0x0a, 0x15, 0xf1, - 0x49, 0xd5, 0x77, 0x4a, 0x16, 0xec, 0x19, 0xac, 0xe7, 0x14, 0xa9, 0xe3, 0x94, 0x7e, 0xf5, 0x1b, - 0x95, 0x9d, 0x8d, 0x9d, 0xad, 0xed, 0xca, 0xce, 0x66, 0x81, 0x6c, 0xc0, 0x93, 0xa2, 0xc7, 0x63, - 0xc2, 0xf7, 0x0f, 0xf1, 0x21, 0x8a, 0x10, 0xbe, 0xbf, 0x43, 0x0c, 0x90, 0x59, 0xf4, 0x50, 0x07, - 0x87, 0xcc, 0x22, 0x02, 0x35, 0x04, 0x6a, 0x08, 0xd4, 0x10, 0xa8, 0x21, 0x50, 0x43, 0xa0, 0x86, - 0x40, 0x0d, 0x81, 0x1a, 0x02, 0x35, 0x04, 0x6a, 0x08, 0xd4, 0x10, 0xa8, 0x21, 0x50, 0x43, 0xa0, - 0x86, 0x40, 0x8d, 0xe9, 0x40, 0x0d, 0x79, 0x97, 0xa6, 0xde, 0xb1, 0xf5, 0x77, 0x6b, 0x29, 0x0f, - 0xf3, 0x70, 0x3c, 0x93, 0xd7, 0x93, 0x89, 0x78, 0x98, 0x96, 0x99, 0xa9, 0xd3, 0xbe, 0x66, 0x08, - 0xd2, 0x4e, 0x2f, 0x8f, 0x92, 0x53, 0x7d, 0x29, 0x99, 0xb7, 0x1f, 0x4c, 0x3a, 0xe6, 0x43, 0xd4, - 0xb4, 0x9e, 0xac, 0x62, 0x92, 0x31, 0x6f, 0x69, 0xe1, 0x79, 0x53, 0xa6, 0x97, 0x48, 0xc5, 0xfc, - 0x99, 0xf1, 0x92, 0x8a, 0xe9, 0x1a, 0x0c, 0x98, 0x0e, 0xa5, 0x15, 0x2f, 0xbe, 0xaf, 0x03, 0x26, - 0xdc, 0xf4, 0xeb, 0xa9, 0x1b, 0x36, 0xaa, 0xf8, 0xbd, 0x8f, 0xe2, 0x6b, 0x05, 0x1c, 0xd3, 0xc0, - 0x23, 0x06, 0x40, 0x62, 0x40, 0x24, 0x01, 0x48, 0x66, 0x42, 0x2b, 0xd4, 0xf4, 0xde, 0xe1, 0xb5, - 0xac, 0x2f, 0xc2, 0x45, 0xad, 0xe9, 0xe9, 0x89, 0xc1, 0x7b, 0x5a, 0xfb, 0x4f, 0x07, 0xfa, 0x81, - 0x7e, 0xa0, 0x1f, 0xe8, 0xd7, 0x66, 0xed, 0xb1, 0x0a, 0xdb, 0xa9, 0x6a, 0x9b, 0x84, 0x7e, 0x13, - 0xc7, 0xb7, 0x07, 0xa3, 0xd0, 0xea, 0xea, 0x6a, 0x79, 0xf6, 0x7f, 0xb7, 0xe2, 0x6c, 0xe5, 0x3e, - 0x72, 0x66, 0x83, 0x3f, 0x47, 0xc9, 0x89, 0xe5, 0xb8, 0xd3, 0x0c, 0xe3, 0x20, 0x6a, 0x2d, 0xc4, - 0xf5, 0xe1, 0x69, 0x6c, 0x94, 0x95, 0x62, 0x58, 0x09, 0x56, 0x82, 0x95, 0x60, 0x25, 0x58, 0xe9, - 0x91, 0xac, 0x14, 0x0f, 0x58, 0x29, 0xf6, 0x87, 0x95, 0x38, 0x97, 0xd7, 0x7d, 0x76, 0x7b, 0xdb, - 0x28, 0x28, 0x9e, 0x78, 0xa8, 0xdf, 0x41, 0xf1, 0x84, 0x9b, 0x8e, 0x05, 0x47, 0x2b, 0x36, 0x1c, - 0x07, 0x8e, 0x56, 0xe6, 0xdb, 0x05, 0x1c, 0xad, 0xa0, 0x64, 0x50, 0x32, 0x28, 0x19, 0xed, 0xd6, - 0xce, 0xd1, 0x8a, 0xa6, 0x20, 0x16, 0x47, 0x2b, 0x40, 0x3f, 0xd0, 0x0f, 0xf4, 0x13, 0xc4, 0xe2, - 0x68, 0xc5, 0x1d, 0x56, 0xe2, 0x68, 0x05, 0x56, 0x82, 0x95, 0x60, 0x25, 0x58, 0x89, 0xa3, 0x15, - 0xfb, 0x4f, 0xe2, 0x68, 0xe5, 0x2f, 0x8e, 0x56, 0x28, 0x77, 0x34, 0xf5, 0x7e, 0xad, 0xbe, 0x57, - 0x4b, 0xa5, 0x8e, 0x1f, 0x86, 0xb3, 0x38, 0x1c, 0x4d, 0xc2, 0xc7, 0x32, 0x47, 0x2d, 0x07, 0x73, - 0x5a, 0x0f, 0xe4, 0xb4, 0x97, 0x34, 0x56, 0xb8, 0x61, 0xc2, 0x05, 0x87, 0x92, 0x1b, 0x26, 0x1e, - 0xf1, 0x91, 0xb4, 0x95, 0x35, 0x86, 0xbd, 0xfc, 0x4c, 0x25, 0x79, 0xd4, 0x1c, 0x20, 0x7d, 0xd0, - 0x3c, 0x53, 0xcd, 0xaf, 0xfa, 0x0f, 0xe2, 0xef, 0x1c, 0x45, 0xd7, 0x39, 0xe2, 0xf5, 0x8d, 0x86, - 0x7d, 0x9b, 0xd1, 0x7c, 0xdc, 0xbf, 0xc6, 0xa5, 0x16, 0x2e, 0xcb, 0x5c, 0x7a, 0x25, 0xfa, 0x24, - 0x19, 0xb4, 0x0b, 0x57, 0x83, 0x27, 0x68, 0x9a, 0x4f, 0xce, 0xdc, 0xc8, 0xb3, 0x6a, 0x87, 0x59, - 0x1e, 0xb4, 0xe3, 0x4e, 0xa7, 0xa5, 0xa3, 0x67, 0xc5, 0xcc, 0x5b, 0x98, 0x7e, 0x3c, 0xf8, 0x0e, - 0xbe, 0x83, 0xef, 0xe0, 0x3b, 0xf8, 0x2e, 0x86, 0xef, 0x51, 0xd4, 0x0a, 0xf2, 0xf8, 0x42, 0x3f, - 0xb2, 0x8f, 0x1f, 0xac, 0x1f, 0xd3, 0x75, 0xde, 0x42, 0x0e, 0xa8, 0x03, 0xea, 0x80, 0x3a, 0xa0, - 0x5e, 0x30, 0x50, 0x1f, 0xc5, 0x98, 0x0d, 0xa0, 0xfa, 0xf8, 0xc9, 0xfa, 0x61, 0x7d, 0x0d, 0x48, - 0x07, 0xd2, 0x81, 0xf4, 0x45, 0x83, 0xf4, 0x2c, 0x4f, 0xf5, 0x49, 0xff, 0x29, 0x44, 0x7f, 0x59, - 0x20, 0x44, 0x8f, 0xd5, 0x85, 0x8a, 0x83, 0x66, 0xd8, 0x0d, 0x4f, 0xa2, 0x38, 0xca, 0x2f, 0xf5, - 0x23, 0xfb, 0xcc, 0x08, 0xfa, 0x11, 0x7e, 0xaf, 0xf6, 0xa9, 0xb6, 0xd7, 0x58, 0x6f, 0x54, 0x40, - 0x7a, 0x90, 0x1e, 0xa4, 0x5f, 0x34, 0xa4, 0x1f, 0x22, 0x4c, 0xde, 0x7f, 0xbe, 0x01, 0xb4, 0xdf, - 0xd0, 0xf8, 0xcc, 0x5a, 0xd2, 0x3b, 0xef, 0xaf, 0xc1, 0x55, 0x81, 0x18, 0xe4, 0x3c, 0xfc, 0x16, - 0xa8, 0xe6, 0x79, 0x37, 0xe8, 0x86, 0xf9, 0x59, 0xa6, 0x9f, 0x3f, 0x6e, 0x3d, 0x1f, 0x84, 0x07, - 0xe1, 0x41, 0xf8, 0x05, 0x43, 0xf8, 0x5e, 0x94, 0xe4, 0x2f, 0x0d, 0x80, 0xbb, 0xc6, 0x4b, 0x5c, - 0x0c, 0xdd, 0xd0, 0x64, 0x20, 0xb3, 0xda, 0xe4, 0x8d, 0x4c, 0x86, 0xaf, 0xe3, 0x31, 0x7d, 0x03, - 0x93, 0xc4, 0xad, 0x3b, 0x06, 0x6e, 0x5c, 0x32, 0x7a, 0xd3, 0x92, 0xd4, 0x2b, 0xad, 0x6c, 0x6e, - 0x7a, 0xfc, 0x52, 0x1d, 0xcd, 0xd3, 0x3f, 0x2e, 0x96, 0xa3, 0x19, 0x9d, 0xf7, 0xce, 0x83, 0x30, - 0x55, 0x61, 0x10, 0xb6, 0x5a, 0xa9, 0xca, 0x32, 0x65, 0xc6, 0xe1, 0xbc, 0x6b, 0x1c, 0xfd, 0x61, - 0x8b, 0x17, 0x38, 0xb3, 0x38, 0xb3, 0x38, 0xb3, 0x38, 0xb3, 0x38, 0xb3, 0x38, 0xb3, 0x38, 0xb3, - 0x38, 0xb3, 0x38, 0xb3, 0x0b, 0xe3, 0xcc, 0x26, 0x2a, 0xd7, 0xef, 0xb9, 0xf6, 0x1f, 0x8a, 0x4b, - 0x89, 0x4b, 0x89, 0x4b, 0xb9, 0x60, 0x2e, 0xa5, 0xbe, 0x8d, 0xbf, 0x34, 0x95, 0xe8, 0xa0, 0xf1, - 0x99, 0x07, 0x61, 0x9e, 0xab, 0x34, 0xd1, 0xee, 0x53, 0x96, 0xfe, 0xf8, 0x1c, 0x06, 0xed, 0x6a, - 0xf0, 0x76, 0x2d, 0xd8, 0x39, 0xfe, 0x5e, 0xb9, 0x5a, 0xfe, 0xf2, 0x65, 0xf5, 0xe6, 0x4f, 0x36, - 0xae, 0x56, 0xbe, 0xbf, 0x78, 0xbe, 0x73, 0x75, 0xeb, 0xc7, 0x95, 0xab, 0xbf, 0x95, 0x5c, 0x23, - 0x26, 0x4d, 0x66, 0xb6, 0x17, 0x65, 0x79, 0x35, 0xcf, 0x35, 0xb7, 0x34, 0xdd, 0x8f, 0x92, 0x5a, - 0xac, 0xfa, 0x3b, 0xb5, 0xef, 0x74, 0x24, 0xbd, 0x38, 0xd6, 0x68, 0x1c, 0xfb, 0xe1, 0x37, 0x73, - 0x0f, 0x7f, 0x9f, 0xb6, 0x54, 0xaa, 0x5a, 0xaf, 0x2f, 0x47, 0x8f, 0x2e, 0x90, 0x17, 0xd1, 0xed, - 0x44, 0x66, 0x92, 0xec, 0xc7, 0x0f, 0x26, 0xc9, 0x1e, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x45, 0x8b, - 0xc5, 0x2e, 0x42, 0x92, 0x3d, 0x7d, 0x72, 0x9e, 0xdc, 0x27, 0x67, 0xfe, 0x7e, 0x47, 0x76, 0x1a, - 0xd3, 0xe4, 0xd1, 0xb9, 0x4a, 0x33, 0x7d, 0x9d, 0x69, 0x46, 0xcf, 0xe3, 0xb6, 0x7d, 0x41, 0x0a, - 0xa4, 0x35, 0x0d, 0xad, 0x69, 0xfe, 0xe2, 0x41, 0xdc, 0xb8, 0x8f, 0x37, 0x8c, 0x37, 0xbc, 0x88, - 0xde, 0xb0, 0xf6, 0xab, 0x61, 0xe2, 0xac, 0x1b, 0xc4, 0x51, 0x5b, 0xf5, 0x59, 0x3e, 0x88, 0x92, - 0x5c, 0xa5, 0x17, 0x61, 0x6c, 0xae, 0x29, 0xf3, 0xdd, 0xc3, 0x69, 0xb6, 0x87, 0x1b, 0xf2, 0x7e, - 0xbd, 0xb2, 0xb6, 0x46, 0x13, 0x68, 0x91, 0x26, 0xd0, 0x9a, 0xf1, 0xce, 0x34, 0xee, 0x89, 0xe1, - 0x9f, 0x18, 0x0e, 0xca, 0xe0, 0xa1, 0x5e, 0x5c, 0xd4, 0x8c, 0x8f, 0xe6, 0xa2, 0x06, 0x33, 0x16, - 0xdf, 0x8b, 0x92, 0x7c, 0x7d, 0xcb, 0x60, 0x1f, 0xe8, 0x2d, 0x03, 0x8f, 0x36, 0x93, 0x47, 0x33, - 0xfe, 0x32, 0xb3, 0x41, 0x97, 0x4c, 0xe7, 0xd5, 0x18, 0x06, 0xf6, 0x99, 0x61, 0x0c, 0xe7, 0xd9, - 0x4c, 0xc6, 0x11, 0x48, 0xcd, 0x30, 0xb4, 0x7d, 0xa7, 0x5f, 0xbd, 0xc1, 0xfc, 0x1b, 0x5b, 0xaf, - 0x7e, 0x6b, 0x73, 0xf3, 0xc5, 0x66, 0x81, 0x5e, 0xff, 0x33, 0x3f, 0x9e, 0x7a, 0xbc, 0x00, 0x97, - 0xaa, 0xf4, 0x3d, 0xec, 0x54, 0xb5, 0x53, 0x95, 0x9d, 0x09, 0xf9, 0xf3, 0x33, 0xa3, 0xe1, 0x6f, - 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, 0xe3, 0x6f, - 0xe3, 0x6f, 0xbb, 0xe5, 0x6f, 0x73, 0x5d, 0x94, 0xee, 0x74, 0x89, 0x61, 0x96, 0xc0, 0xe8, 0xbe, - 0xb0, 0x52, 0x91, 0x3a, 0x92, 0x65, 0xdd, 0xe0, 0x54, 0x25, 0x2a, 0xd5, 0xfb, 0x86, 0xa6, 0x14, - 0xd4, 0x8d, 0xe7, 0x73, 0xf6, 0xea, 0xa0, 0x36, 0xe2, 0xec, 0xd5, 0x8e, 0xf6, 0x29, 0xf8, 0xd9, - 0xab, 0xe6, 0x34, 0x8e, 0x99, 0x8d, 0xa0, 0x35, 0x9d, 0xc3, 0x10, 0xb4, 0x10, 0x8e, 0x21, 0x1c, - 0x43, 0x38, 0x46, 0x77, 0x38, 0x46, 0x37, 0x54, 0x4d, 0x79, 0x43, 0xed, 0x28, 0xcd, 0xf2, 0xe0, - 0xcf, 0x30, 0xca, 0xcd, 0x05, 0x98, 0xef, 0x74, 0x93, 0xee, 0x1a, 0xf8, 0xb9, 0x97, 0x75, 0xd9, - 0xa6, 0xc0, 0x4e, 0x02, 0xf4, 0x04, 0xc1, 0x4f, 0x0a, 0x04, 0xc5, 0xc1, 0x50, 0x1c, 0x14, 0x65, - 0xc1, 0xd1, 0x70, 0x9c, 0xc2, 0xd0, 0x9e, 0x31, 0x16, 0xc3, 0x9e, 0xd9, 0x31, 0xbd, 0x28, 0xc9, - 0xb7, 0x36, 0x4c, 0x6e, 0x98, 0x11, 0x7e, 0xbd, 0x34, 0x38, 0x84, 0xd9, 0xd8, 0xf6, 0xf8, 0xcb, - 0xec, 0x86, 0x5f, 0x92, 0x8a, 0x75, 0x0b, 0x11, 0xcb, 0xcc, 0x70, 0x42, 0xb1, 0xef, 0xc9, 0x78, - 0x82, 0x41, 0x50, 0xc3, 0x70, 0x30, 0x6d, 0x22, 0x02, 0x31, 0x71, 0xdb, 0x26, 0xb2, 0xfe, 0x72, - 0x63, 0x63, 0x6b, 0x7b, 0x63, 0x63, 0x6d, 0xfb, 0xc5, 0xf6, 0xda, 0xce, 0xe6, 0xe6, 0xfa, 0xd6, - 0xfa, 0x66, 0x81, 0xad, 0xe6, 0x99, 0x9f, 0x4f, 0x3f, 0xf6, 0x24, 0xf4, 0x6f, 0xa2, 0x13, 0x53, - 0x5f, 0x03, 0x9c, 0x87, 0xdf, 0x6c, 0x48, 0x8f, 0xd9, 0x61, 0x11, 0x1e, 0x08, 0x0f, 0x84, 0x07, - 0xc2, 0x03, 0xe1, 0x81, 0xf0, 0x40, 0x78, 0x20, 0x3c, 0x10, 0x1e, 0x08, 0x0f, 0x84, 0x47, 0x71, - 0x85, 0x47, 0xa6, 0x9a, 0x9d, 0xa4, 0x65, 0x43, 0x7b, 0xdc, 0x39, 0x32, 0xf2, 0x03, 0xf9, 0x81, - 0xfc, 0x40, 0x7e, 0x20, 0x3f, 0x90, 0x1f, 0xc8, 0x0f, 0xe4, 0x07, 0xf2, 0x03, 0xf9, 0x81, 0xfc, - 0x70, 0x40, 0x7e, 0x38, 0x9d, 0x17, 0x66, 0xa8, 0xd4, 0x60, 0xf2, 0x7c, 0x1b, 0x25, 0x07, 0xd3, - 0x09, 0xf4, 0x5a, 0x2b, 0x10, 0xf4, 0xbf, 0x54, 0x9d, 0x95, 0xde, 0xc3, 0x0e, 0x95, 0xc6, 0xb2, - 0x87, 0x87, 0x8f, 0xf7, 0x2c, 0x79, 0xb8, 0x42, 0xf2, 0xb0, 0xa0, 0x7e, 0x24, 0x79, 0xb8, 0x88, - 0x24, 0x61, 0x2c, 0x79, 0x38, 0x6c, 0x85, 0xdd, 0x3c, 0xba, 0x50, 0xc1, 0x00, 0xb9, 0xcd, 0x07, - 0xcf, 0x6e, 0x8d, 0x47, 0xc8, 0x8c, 0x90, 0x19, 0x21, 0x33, 0x42, 0x66, 0x5e, 0x85, 0xcc, 0xa6, - 0x31, 0x2c, 0xc8, 0xfb, 0x03, 0x9b, 0x8f, 0x9f, 0xad, 0x6f, 0x18, 0x1c, 0xa3, 0x96, 0xf4, 0xce, - 0xfb, 0x8b, 0x77, 0xb5, 0xe0, 0x27, 0x4a, 0xd4, 0xd1, 0x40, 0x8e, 0x90, 0x23, 0xe4, 0x08, 0x39, - 0x3e, 0x75, 0xc7, 0x70, 0x9e, 0xf4, 0xe0, 0x2f, 0xce, 0x93, 0xe6, 0x1a, 0x8e, 0xf3, 0x24, 0x3d, - 0x26, 0xc2, 0x79, 0x52, 0xd1, 0xac, 0x86, 0xf3, 0x24, 0x2f, 0xc5, 0x07, 0x75, 0x34, 0x08, 0x0f, - 0x84, 0x07, 0xc2, 0x03, 0xe1, 0x81, 0xf0, 0x40, 0x78, 0x20, 0x3c, 0x10, 0x1e, 0x08, 0x0f, 0x84, - 0x07, 0xc2, 0xc3, 0xb8, 0xf0, 0xa0, 0x8e, 0x06, 0xf9, 0x81, 0xfc, 0x40, 0x7e, 0x20, 0x3f, 0x90, - 0x1f, 0xc8, 0x0f, 0xe4, 0x07, 0xf2, 0x03, 0xf9, 0x81, 0xfc, 0x40, 0x7e, 0x18, 0x7d, 0x22, 0x75, - 0x34, 0x8f, 0xae, 0xa3, 0x19, 0x96, 0x7f, 0x70, 0x81, 0x8b, 0x3d, 0x6b, 0x70, 0xc0, 0x0a, 0x4a, - 0x5a, 0xcb, 0x95, 0xd2, 0x5e, 0x33, 0x4f, 0x46, 0x2e, 0xec, 0xbb, 0xe1, 0xf4, 0xea, 0xa3, 0xd9, - 0x35, 0x0e, 0x46, 0x73, 0x6a, 0xd4, 0xb3, 0x28, 0x6b, 0xfc, 0x3a, 0x98, 0x53, 0xe3, 0x68, 0x30, - 0xa7, 0xc6, 0x5e, 0xd6, 0xfd, 0xf5, 0x7a, 0x4a, 0x05, 0xba, 0x5b, 0x26, 0xeb, 0xb6, 0xf5, 0x5f, - 0x28, 0xd3, 0x7f, 0x28, 0xb7, 0xc8, 0x38, 0x18, 0x95, 0xe0, 0x16, 0x19, 0x3b, 0x51, 0x05, 0x6e, - 0x91, 0x99, 0x6b, 0x23, 0x70, 0x8b, 0x0c, 0x85, 0xa0, 0xd6, 0x21, 0x48, 0x0c, 0x8a, 0x64, 0x20, - 0xc9, 0x0f, 0x95, 0x63, 0xac, 0x10, 0x34, 0xeb, 0xb6, 0x47, 0x45, 0x28, 0x72, 0x27, 0x40, 0x77, - 0x8c, 0xc9, 0xd9, 0x8f, 0x34, 0xd4, 0x09, 0x42, 0x9e, 0x14, 0xf4, 0x89, 0x43, 0xa0, 0x38, 0x14, - 0xca, 0x42, 0xa2, 0xd9, 0x10, 0x18, 0x67, 0x3f, 0x0f, 0xc6, 0x2f, 0xce, 0x7e, 0x1e, 0xf0, 0x41, - 0x38, 0xfb, 0xd1, 0x37, 0x1e, 0x67, 0x3f, 0xde, 0x9a, 0x08, 0x67, 0x3f, 0x3e, 0x3c, 0x7d, 0x91, - 0x53, 0xcf, 0xfa, 0xee, 0xff, 0x59, 0x27, 0x6e, 0x09, 0x2b, 0x8e, 0xe9, 0x21, 0x0d, 0x39, 0x1f, - 0xbb, 0xaa, 0x1d, 0xf6, 0xe2, 0x81, 0x5b, 0xb6, 0xb9, 0xb6, 0xb6, 0x86, 0xae, 0x41, 0xd7, 0xa0, - 0x6b, 0xd0, 0x35, 0xe8, 0x1a, 0x74, 0x0d, 0xba, 0x06, 0x5d, 0x83, 0xae, 0x41, 0xd7, 0xa0, 0x6b, - 0x0a, 0xac, 0x6b, 0x46, 0x85, 0x2d, 0xb2, 0xca, 0xe6, 0xf6, 0xa0, 0x88, 0x0e, 0x44, 0x07, 0xa2, - 0x03, 0xd1, 0x81, 0xe8, 0x40, 0x74, 0x20, 0x3a, 0x10, 0x1d, 0x88, 0x0e, 0x44, 0x07, 0xa2, 0xc3, - 0x01, 0xd1, 0x41, 0x21, 0x8d, 0x70, 0x09, 0x45, 0xd6, 0x6d, 0x73, 0x0b, 0x8d, 0x36, 0xa9, 0xc9, - 0x2d, 0x34, 0x24, 0x1f, 0x3b, 0x22, 0x16, 0x49, 0x3e, 0x16, 0x64, 0x06, 0x6e, 0xa1, 0x21, 0x4e, - 0x46, 0x9c, 0x8c, 0x38, 0x19, 0x71, 0x32, 0x07, 0xe2, 0x64, 0xdc, 0x42, 0x63, 0x5f, 0xc7, 0x3d, - 0xa7, 0x0e, 0x07, 0x4a, 0x84, 0x12, 0xa1, 0x44, 0x28, 0xd1, 0x05, 0x4a, 0xe4, 0xe8, 0xe8, 0xc1, - 0x5f, 0x1c, 0x1d, 0xcd, 0x35, 0x1c, 0x47, 0x47, 0x7a, 0x4c, 0x84, 0xa3, 0xa3, 0xa2, 0x59, 0x0d, - 0x47, 0x47, 0x5e, 0x4a, 0x0e, 0xea, 0x70, 0xd0, 0x35, 0xe8, 0x1a, 0x74, 0x0d, 0xba, 0x06, 0x5d, - 0x83, 0xae, 0x41, 0xd7, 0xa0, 0x6b, 0xd0, 0x35, 0xe8, 0x1a, 0x74, 0x8d, 0xef, 0xba, 0x86, 0x3a, - 0x1c, 0x44, 0x07, 0xa2, 0x03, 0xd1, 0x81, 0xe8, 0x40, 0x74, 0x20, 0x3a, 0x10, 0x1d, 0x88, 0x0e, - 0x44, 0x07, 0xa2, 0x03, 0xd1, 0x61, 0xe0, 0x89, 0xd4, 0xe1, 0x3c, 0xac, 0x0e, 0x87, 0x5b, 0x6c, - 0x6c, 0x9b, 0x80, 0xad, 0x57, 0xef, 0xc6, 0xd5, 0x35, 0x1f, 0xba, 0xed, 0x42, 0x5d, 0x58, 0xa3, - 0xb5, 0xd8, 0xcb, 0x48, 0x91, 0x97, 0xb1, 0x4b, 0x6b, 0x2a, 0x5c, 0x5a, 0xe3, 0x53, 0x64, 0x81, - 0x4b, 0x6b, 0x5c, 0xbe, 0xb4, 0x26, 0xce, 0xba, 0x41, 0x1c, 0xb5, 0x55, 0x1f, 0xaf, 0xcd, 0x05, - 0x4c, 0xa7, 0xae, 0xff, 0x9e, 0x1d, 0x4e, 0x77, 0xc5, 0xda, 0x75, 0xfa, 0xc7, 0x7a, 0x45, 0x7b, - 0xfa, 0x87, 0x21, 0x15, 0xc4, 0x8d, 0x39, 0xb2, 0xb8, 0x27, 0x86, 0x7f, 0x62, 0x38, 0x28, 0x83, - 0x87, 0x7e, 0xc8, 0x28, 0x63, 0x11, 0xd3, 0xa9, 0x48, 0xe9, 0xfa, 0x96, 0x09, 0x83, 0x1f, 0xe1, - 0xcb, 0x96, 0x81, 0x47, 0x9b, 0x8d, 0x8c, 0x1a, 0x8c, 0x4f, 0x4b, 0x44, 0x42, 0x85, 0xc2, 0x5b, - 0x52, 0x91, 0x4f, 0xc9, 0xd8, 0x95, 0xc1, 0x48, 0xa7, 0x48, 0x84, 0x53, 0xfa, 0xd5, 0x6f, 0x6d, - 0x6e, 0xbe, 0xd8, 0x2c, 0xd0, 0xeb, 0xf7, 0x24, 0xf4, 0x77, 0xbc, 0x00, 0x6d, 0x60, 0xfa, 0x1e, - 0x76, 0xaa, 0xda, 0xa9, 0xca, 0xce, 0x84, 0xfc, 0xf9, 0x99, 0xd1, 0xf0, 0xb7, 0xf1, 0xb7, 0xf1, - 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xdd, - 0xf2, 0xb7, 0x39, 0xef, 0x35, 0x75, 0xde, 0xab, 0xef, 0x98, 0x5f, 0xc3, 0x41, 0xeb, 0x33, 0x8b, - 0xaf, 0x57, 0xf7, 0x6b, 0xb5, 0xf1, 0x3a, 0x4b, 0x5a, 0x4e, 0xaa, 0x9f, 0x78, 0x64, 0x3f, 0x9f, - 0x15, 0x3d, 0xfd, 0xdd, 0xcf, 0xf1, 0xde, 0x4b, 0x79, 0x1a, 0x26, 0x59, 0xb7, 0x93, 0xe6, 0x73, - 0xbf, 0xf2, 0x89, 0xdf, 0x7b, 0xfd, 0xc8, 0x39, 0xed, 0x51, 0xcf, 0x71, 0xbc, 0x36, 0xd9, 0xac, - 0x53, 0x26, 0x1b, 0x90, 0xc5, 0xba, 0x65, 0xb0, 0x31, 0xd9, 0x6b, 0x4c, 0xe6, 0x9a, 0x91, 0xb5, - 0x76, 0x31, 0x59, 0xd7, 0xf1, 0x79, 0xa9, 0x39, 0xde, 0x05, 0x9a, 0x13, 0x70, 0x46, 0xcf, 0x75, - 0x3c, 0x03, 0x67, 0x8d, 0x0c, 0x1c, 0x9f, 0x22, 0x62, 0x64, 0xe0, 0xb8, 0x9e, 0x81, 0x73, 0x9e, - 0xf7, 0x82, 0x2c, 0xfa, 0x7f, 0xca, 0x6c, 0xa0, 0x7e, 0x32, 0x0a, 0x01, 0x7a, 0x02, 0xf4, 0xf6, - 0xe0, 0x48, 0x0c, 0x96, 0x64, 0xe0, 0xc9, 0x4c, 0xf8, 0x84, 0x00, 0xfd, 0x0c, 0xbe, 0x10, 0xa0, - 0xbf, 0x31, 0x71, 0x02, 0xf4, 0x8f, 0x1f, 0x87, 0x00, 0xbd, 0xb3, 0xaf, 0x9e, 0x00, 0xbd, 0x95, - 0xa7, 0x12, 0xa0, 0x7f, 0x90, 0xfb, 0x50, 0x88, 0x00, 0xfd, 0x38, 0x8e, 0xa8, 0xf5, 0x4a, 0x2c, - 0xaa, 0xa1, 0x6c, 0xc7, 0x62, 0xa8, 0x86, 0x22, 0x16, 0x43, 0x2c, 0x86, 0x58, 0x0c, 0xb1, 0x18, - 0x62, 0x31, 0xc4, 0x62, 0x88, 0xc5, 0x10, 0x8b, 0x21, 0x16, 0x43, 0x2c, 0x86, 0x58, 0x0c, 0xb1, - 0x18, 0x62, 0x31, 0xc4, 0x62, 0x5c, 0x8f, 0xc5, 0x90, 0x2f, 0x69, 0xea, 0xcd, 0x5a, 0x7a, 0xa3, - 0xb6, 0x52, 0x26, 0x27, 0xe3, 0xdb, 0xca, 0x9a, 0x7c, 0x26, 0x68, 0x33, 0xba, 0x6c, 0x45, 0xd4, - 0x46, 0xe6, 0xb0, 0x8c, 0x27, 0x58, 0xc4, 0xd3, 0xec, 0xe0, 0xf1, 0x6f, 0xf1, 0x09, 0x6f, 0xb0, - 0x34, 0x28, 0x14, 0x6d, 0x87, 0x4d, 0x95, 0x3d, 0xf9, 0xed, 0x4d, 0x94, 0xce, 0x8d, 0x67, 0x3d, - 0xd1, 0x96, 0xe6, 0x0b, 0xcc, 0xce, 0x1d, 0x19, 0xd1, 0x11, 0x01, 0xd1, 0x18, 0xe9, 0xd0, 0x15, - 0xd1, 0xd0, 0x1e, 0xb9, 0xd0, 0x1e, 0xa1, 0xd0, 0x1b, 0x89, 0x90, 0xc5, 0xbf, 0x79, 0x03, 0x9f, - 0xd7, 0xdb, 0x46, 0x5f, 0xa2, 0xfa, 0xf5, 0x23, 0x49, 0x54, 0x17, 0x0c, 0x49, 0x92, 0xa8, 0x4e, - 0xa2, 0xfa, 0x5f, 0x3c, 0x28, 0x6c, 0x47, 0x41, 0x16, 0xb6, 0x23, 0xfd, 0xa7, 0xa3, 0x93, 0x27, - 0x93, 0xac, 0xee, 0x10, 0x1c, 0x98, 0x82, 0x05, 0xe3, 0xf0, 0x60, 0x1c, 0x26, 0xcc, 0xc2, 0x85, - 0x9b, 0xd1, 0x12, 0xed, 0x07, 0xa4, 0x61, 0xdb, 0xdc, 0xb1, 0x68, 0xd8, 0x36, 0x74, 0x18, 0xba, - 0xce, 0x61, 0x28, 0x87, 0xa1, 0x2e, 0x41, 0x90, 0x0c, 0x14, 0xe9, 0x85, 0x24, 0xcd, 0xd0, 0x64, - 0x0c, 0xa2, 0xa6, 0x3c, 0x9f, 0x51, 0xc4, 0xc4, 0xf0, 0xed, 0x5f, 0x93, 0x91, 0xb8, 0xf2, 0x4b, - 0x1a, 0xd6, 0x04, 0xe1, 0x4d, 0x0a, 0xe6, 0xc4, 0xe1, 0x4e, 0x1c, 0xf6, 0x64, 0xe1, 0xcf, 0x0c, - 0x0c, 0x1a, 0x82, 0xc3, 0xc9, 0xd2, 0xc8, 0x5d, 0xf9, 0x15, 0xab, 0xb0, 0x9d, 0xaa, 0xb6, 0xc0, - 0x9d, 0x5f, 0xeb, 0xdb, 0x06, 0xc7, 0x38, 0x18, 0x05, 0xf1, 0x57, 0x57, 0x47, 0x09, 0xce, 0xe5, - 0x09, 0x2c, 0x2f, 0xf0, 0x6d, 0x98, 0x9a, 0xeb, 0xd4, 0xef, 0x35, 0x22, 0xad, 0x75, 0xeb, 0x42, - 0x7e, 0x3c, 0x04, 0x08, 0x01, 0x42, 0x80, 0xae, 0x12, 0xa0, 0x29, 0x5d, 0x20, 0xa7, 0x0f, 0xa4, - 0x75, 0x82, 0x90, 0x5e, 0x10, 0x83, 0x4d, 0x49, 0xf8, 0xb4, 0x00, 0xa3, 0xd2, 0x70, 0x6a, 0x0d, - 0x56, 0xad, 0xc1, 0xab, 0x1d, 0x98, 0x35, 0x0b, 0xb7, 0x86, 0x61, 0x57, 0x4e, 0x7f, 0xcc, 0xec, - 0xb8, 0xa8, 0xa5, 0x92, 0x3c, 0xca, 0x2f, 0xcd, 0x6a, 0x91, 0x19, 0x9f, 0x52, 0xe0, 0x26, 0xd1, - 0x52, 0x7d, 0xf4, 0xd1, 0x5e, 0x87, 0x99, 0xe0, 0x3e, 0x1f, 0x2f, 0x6c, 0xf5, 0x6d, 0xbd, 0x71, - 0xf4, 0x9f, 0x83, 0x5a, 0x49, 0xf2, 0xda, 0xd6, 0xcc, 0xf8, 0xfd, 0xcb, 0x37, 0xbf, 0xbe, 0x8b, - 0x8d, 0x34, 0xb5, 0xb2, 0xf5, 0x83, 0x4f, 0x1b, 0x25, 0xb1, 0xa1, 0xaf, 0x9e, 0x2f, 0xc0, 0x7a, - 0x6e, 0x09, 0xae, 0xa7, 0xc8, 0x48, 0xc7, 0x5c, 0x18, 0x2c, 0x6f, 0xcf, 0x25, 0x95, 0x84, 0x27, - 0xb1, 0x6a, 0xc9, 0xf9, 0xf6, 0xe3, 0x01, 0x71, 0xed, 0x71, 0xed, 0x71, 0xed, 0x71, 0xed, 0x71, - 0xed, 0x6f, 0xec, 0xb8, 0x93, 0x4e, 0x27, 0x56, 0x61, 0x22, 0xe9, 0xd6, 0xaf, 0x43, 0x8a, 0x33, - 0x6b, 0x93, 0xc9, 0x87, 0xbc, 0x32, 0x62, 0x5e, 0x10, 0x23, 0xc4, 0x08, 0x31, 0x42, 0x8c, 0x77, - 0xed, 0x38, 0x62, 0x5e, 0x86, 0x16, 0xf6, 0x03, 0x41, 0x2f, 0x53, 0x4b, 0xfb, 0xf1, 0x5d, 0xfd, - 0x4d, 0xf5, 0xc3, 0x11, 0x71, 0x2f, 0x7d, 0x4b, 0xba, 0xff, 0x71, 0xef, 0x48, 0x7a, 0x51, 0x09, - 0x7e, 0xd9, 0xf5, 0xf3, 0xbd, 0x3a, 0x8c, 0x37, 0xd4, 0x75, 0x61, 0x56, 0xa1, 0x88, 0xd4, 0x63, - 0x5f, 0xd7, 0x0c, 0x5f, 0x7f, 0x5b, 0x1e, 0x97, 0x33, 0x95, 0xc3, 0xb6, 0xd6, 0x0e, 0x99, 0xe6, - 0x5f, 0xbc, 0x89, 0xbc, 0xb1, 0x4c, 0x2e, 0x7b, 0x3a, 0x23, 0x7d, 0xda, 0xba, 0x14, 0x24, 0x7b, - 0xcc, 0x43, 0xa9, 0x47, 0xf6, 0x98, 0x45, 0x29, 0x57, 0xfc, 0xf4, 0xe9, 0x8c, 0xfc, 0x69, 0xdd, - 0x9d, 0xa5, 0xef, 0xe7, 0x40, 0x8d, 0x9d, 0xa6, 0xef, 0x35, 0x1f, 0xd3, 0xfc, 0x57, 0x81, 0xff, - 0xe0, 0x3f, 0xf8, 0xcf, 0x09, 0xfe, 0x23, 0x7b, 0xda, 0x51, 0xb9, 0x20, 0x26, 0x1b, 0x24, 0xe1, - 0xd3, 0x02, 0x8c, 0x4a, 0xc3, 0xa9, 0x35, 0x58, 0xb5, 0x06, 0xaf, 0x76, 0x60, 0xd6, 0x7c, 0xe4, - 0x6d, 0x89, 0x93, 0x24, 0x7d, 0x3e, 0x25, 0xd9, 0xd3, 0xba, 0xc7, 0x25, 0x7b, 0xda, 0xcb, 0x2d, - 0xef, 0xc6, 0x7a, 0x92, 0x3d, 0xed, 0x1a, 0xd1, 0x90, 0x3d, 0xfd, 0x10, 0xd3, 0x25, 0x7b, 0x1a, - 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0xfe, 0x8e, 0x1d, 0x47, 0xf6, 0xb4, 0x13, 0xa4, 0x48, - 0xf6, 0x34, 0xc4, 0x08, 0x31, 0x42, 0x8c, 0x10, 0xa3, 0x2b, 0xc4, 0x48, 0xcc, 0xcb, 0xd0, 0xc2, - 0x92, 0x3d, 0x6d, 0x6c, 0x69, 0xc9, 0x9e, 0xd6, 0xbe, 0xa4, 0x64, 0x4f, 0xbb, 0xca, 0x38, 0x1c, - 0xc6, 0x2f, 0x2d, 0x60, 0xf6, 0xb4, 0xc6, 0x3b, 0xed, 0xcc, 0xbf, 0x77, 0xb7, 0x9b, 0x63, 0xff, - 0xae, 0x2e, 0x6f, 0xa6, 0x3e, 0x2c, 0x99, 0x12, 0x84, 0xa5, 0xbd, 0x28, 0xcb, 0xab, 0x79, 0x6e, - 0xa8, 0x15, 0xf7, 0x7e, 0x94, 0xd4, 0x62, 0xd5, 0xf7, 0xa7, 0xfb, 0x1c, 0x9f, 0xf4, 0xe2, 0xd8, - 0x40, 0xaa, 0xde, 0x7e, 0xf8, 0xcd, 0xfc, 0x20, 0xef, 0xd3, 0x96, 0x4a, 0x55, 0xeb, 0xf5, 0xe5, - 0x68, 0x08, 0xa7, 0xad, 0xc7, 0x30, 0xee, 0x38, 0x82, 0x37, 0x25, 0x23, 0x69, 0x9f, 0x0f, 0xbf, - 0x6f, 0xaf, 0x3e, 0x9e, 0x54, 0xa3, 0xda, 0x2e, 0x71, 0x87, 0xab, 0x3d, 0xbb, 0x74, 0xc1, 0x1e, - 0x9d, 0xb9, 0xca, 0x55, 0xc3, 0xc5, 0x62, 0x61, 0x2f, 0x3f, 0xeb, 0xab, 0xd0, 0xa6, 0xde, 0x57, - 0x75, 0x9d, 0xd0, 0x37, 0xfd, 0x7c, 0xae, 0x91, 0x9a, 0x7b, 0x45, 0xb9, 0x46, 0x4a, 0x2e, 0x74, - 0xc8, 0x35, 0x52, 0x73, 0x3c, 0xd0, 0x50, 0x5b, 0x7a, 0xb3, 0xed, 0xe8, 0xb9, 0x4e, 0x4a, 0x04, - 0x72, 0x4c, 0x43, 0x8f, 0x18, 0x04, 0x89, 0x41, 0x91, 0x0c, 0x24, 0xf9, 0xa1, 0x98, 0x8d, 0x5d, - 0x27, 0x75, 0xa6, 0xe2, 0xb8, 0x13, 0x18, 0xf2, 0x89, 0xee, 0xdd, 0x5e, 0x77, 0x8e, 0x6a, 0xaa, - 0x66, 0x44, 0xb5, 0xc3, 0x5e, 0x3c, 0x30, 0x9e, 0x76, 0x18, 0x67, 0xd4, 0x63, 0xcb, 0xc3, 0xaa, - 0x20, 0xbc, 0x4a, 0xc1, 0xac, 0x38, 0xdc, 0x8a, 0xc3, 0xae, 0x2c, 0xfc, 0x9a, 0x81, 0x61, 0x43, - 0x70, 0x3c, 0x59, 0x1a, 0xb9, 0x7a, 0x6c, 0xf3, 0xd9, 0x52, 0x86, 0xb3, 0xa4, 0x16, 0x2d, 0xc6, - 0x5d, 0xe4, 0x28, 0xe5, 0x14, 0x6f, 0x1b, 0x69, 0x2b, 0xa3, 0x31, 0x46, 0xa8, 0x31, 0x6a, 0xf0, - 0x75, 0x70, 0x6e, 0x61, 0x48, 0xdc, 0xf5, 0x1f, 0x8e, 0xb2, 0x43, 0xd9, 0xa1, 0xec, 0x50, 0x76, - 0x0e, 0x07, 0xa3, 0x64, 0x82, 0x52, 0x86, 0x21, 0x0c, 0x55, 0x85, 0xaa, 0x42, 0x55, 0xb9, 0xaa, - 0xaa, 0xcc, 0x77, 0xf9, 0xe8, 0xe5, 0x67, 0x41, 0x37, 0xcc, 0xb2, 0x91, 0x8d, 0x49, 0xb5, 0xfa, - 0x98, 0x1a, 0x96, 0xda, 0x07, 0xd7, 0x80, 0xd4, 0x02, 0xa0, 0x4a, 0x03, 0xab, 0x35, 0x80, 0xb5, - 0x06, 0xb4, 0x76, 0x00, 0xd7, 0x2c, 0xf0, 0x1a, 0x06, 0x60, 0xb9, 0xf0, 0xd6, 0xcc, 0x8e, 0x4b, - 0x3b, 0xbd, 0x3c, 0x4a, 0x4e, 0xa5, 0x50, 0x72, 0xca, 0xc5, 0x7c, 0x49, 0xd6, 0xb0, 0x00, 0xb9, - 0x2f, 0x42, 0xd6, 0xf0, 0x74, 0x7c, 0xec, 0xab, 0xba, 0xa4, 0xf5, 0x32, 0x2d, 0x27, 0x1f, 0xe1, - 0x4b, 0xd1, 0x72, 0x12, 0x31, 0x8a, 0x18, 0x45, 0x8c, 0x22, 0x46, 0x11, 0xa3, 0x88, 0x51, 0xc4, - 0x28, 0x62, 0x14, 0x31, 0x8a, 0x18, 0x45, 0x8c, 0x6a, 0x12, 0xa3, 0x54, 0xb2, 0xfa, 0x62, 0x40, - 0x6e, 0x19, 0x8e, 0x43, 0x25, 0x89, 0x53, 0x73, 0x6b, 0xfc, 0xae, 0x2e, 0x17, 0x24, 0xfd, 0xa8, - 0x79, 0x16, 0x46, 0x89, 0xd1, 0x1c, 0xa4, 0xe1, 0x08, 0x24, 0x22, 0x91, 0x88, 0x64, 0xdf, 0x5f, - 0x27, 0x11, 0x09, 0x2a, 0x33, 0x43, 0x65, 0x26, 0x50, 0x4e, 0x2b, 0x9f, 0x0d, 0x27, 0xb8, 0x00, - 0xa4, 0x66, 0xe6, 0x5c, 0xc0, 0xe8, 0x79, 0x80, 0x71, 0x3a, 0xab, 0x40, 0x67, 0xd0, 0x19, 0x74, - 0x36, 0xd7, 0x12, 0x50, 0x31, 0xf9, 0xf4, 0xa5, 0xa3, 0x62, 0xd2, 0x36, 0xac, 0x0a, 0xc2, 0xab, - 0x14, 0xcc, 0x8a, 0xc3, 0xad, 0x38, 0xec, 0xca, 0xc2, 0xaf, 0xb9, 0x90, 0xdb, 0x12, 0x15, 0x93, - 0x8f, 0xf3, 0x03, 0xa9, 0x98, 0x44, 0x80, 0x3e, 0x46, 0x80, 0x1a, 0x08, 0xc0, 0xd3, 0x54, 0xcd, - 0x53, 0x63, 0x28, 0x69, 0xd5, 0xd2, 0xf3, 0x07, 0x1f, 0x8a, 0xd4, 0xea, 0xed, 0xa4, 0xdd, 0xd2, - 0xdf, 0xdf, 0xad, 0xff, 0x50, 0x9a, 0xba, 0x39, 0xe8, 0xd0, 0xd2, 0xd4, 0xcd, 0x8e, 0x43, 0x4a, - 0x53, 0xb7, 0xb9, 0x36, 0x02, 0x4d, 0xdd, 0x08, 0x51, 0x3a, 0xa3, 0x99, 0x09, 0x51, 0x0a, 0x0a, - 0x1e, 0x63, 0x21, 0xca, 0x93, 0x76, 0x2b, 0xc8, 0xe3, 0x0b, 0xf3, 0x51, 0xc9, 0xf1, 0x40, 0x04, - 0x08, 0x09, 0x10, 0x12, 0x20, 0x24, 0x40, 0x48, 0x80, 0x90, 0x00, 0x21, 0x01, 0xc2, 0x27, 0xc4, - 0x84, 0x4e, 0xda, 0xad, 0x05, 0xea, 0xa3, 0x46, 0xce, 0xc7, 0xac, 0x0f, 0x42, 0xce, 0x07, 0x82, - 0x0a, 0x41, 0x85, 0xa0, 0x42, 0x50, 0x21, 0xa8, 0x10, 0x54, 0x08, 0x2a, 0x04, 0x15, 0x82, 0x0a, - 0x41, 0x35, 0x97, 0xa0, 0x22, 0xcd, 0xc2, 0xb6, 0x25, 0x58, 0xb6, 0x00, 0xfb, 0xb9, 0x15, 0xaf, - 0xdb, 0xad, 0x22, 0x25, 0x54, 0x34, 0xa3, 0xb4, 0xd9, 0x8b, 0xf2, 0xa0, 0xd9, 0xe9, 0xf5, 0x3f, - 0x62, 0xa6, 0x3f, 0xbb, 0x62, 0x66, 0x04, 0x52, 0x2d, 0x1c, 0xf4, 0x64, 0x49, 0xb5, 0xb0, 0xe3, - 0x89, 0x16, 0x3c, 0xd5, 0x82, 0xb8, 0x20, 0x71, 0x41, 0xe2, 0x82, 0xc4, 0x05, 0xbd, 0x89, 0x0b, - 0x86, 0xad, 0xff, 0x06, 0xcd, 0xb3, 0x30, 0x39, 0x55, 0x99, 0xf9, 0xd8, 0xe0, 0xcd, 0xc1, 0x88, - 0x0f, 0x12, 0x1f, 0x24, 0x3e, 0x48, 0x7c, 0xd0, 0xab, 0xf8, 0xe0, 0x48, 0xd3, 0xbd, 0xa8, 0x08, - 0x44, 0x08, 0xb7, 0x0d, 0x0e, 0x71, 0xd8, 0xc7, 0xe0, 0xd2, 0xab, 0xa5, 0xcf, 0x46, 0x6d, 0x56, - 0xa0, 0xd1, 0xdd, 0x7e, 0x94, 0x08, 0x36, 0x79, 0x14, 0xe9, 0x01, 0x3a, 0x19, 0xee, 0x53, 0x18, - 0xf7, 0x94, 0xe0, 0x78, 0x6f, 0xd3, 0xb0, 0x99, 0x47, 0x9d, 0x64, 0x37, 0x3a, 0x8d, 0xf2, 0xbe, - 0x37, 0xb0, 0x66, 0xbe, 0x9f, 0xa3, 0x40, 0x3f, 0xc2, 0xfd, 0xf0, 0x5b, 0xe1, 0x4d, 0x64, 0xa3, - 0xb2, 0xb3, 0xb1, 0xb3, 0xb5, 0x5d, 0xd9, 0xd9, 0x2c, 0xb0, 0xad, 0x78, 0xda, 0x4f, 0xf2, 0x78, - 0x81, 0x5b, 0xe6, 0xf7, 0x1d, 0xfe, 0xa4, 0x77, 0x7e, 0xa2, 0x52, 0x19, 0x71, 0x31, 0x1a, 0x0b, - 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0xa0, 0x2d, 0xbc, 0xd2, 0x16, 0xbd, 0x28, 0xc9, 0x11, 0x16, 0x08, - 0x0b, 0x84, 0x05, 0xc2, 0x02, 0x61, 0x81, 0xb0, 0x40, 0x58, 0xfc, 0x95, 0xb0, 0xe8, 0xe5, 0x67, - 0x41, 0x3b, 0x8c, 0x62, 0x89, 0x53, 0x8b, 0xeb, 0xb1, 0x10, 0x16, 0x08, 0x0b, 0x84, 0x05, 0xc2, - 0xc2, 0x2b, 0x61, 0xc1, 0xa1, 0x05, 0xda, 0x02, 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0xa0, 0x2d, 0xd0, - 0x16, 0x0f, 0xd4, 0x16, 0xf9, 0x65, 0x57, 0x89, 0x0a, 0x8c, 0x1b, 0x03, 0xa2, 0x32, 0x50, 0x19, - 0xa8, 0x0c, 0x54, 0x06, 0x2a, 0x03, 0x95, 0x81, 0xca, 0x40, 0x65, 0xa0, 0x32, 0x50, 0x19, 0xa8, - 0x8c, 0x82, 0xa9, 0x8c, 0xa8, 0x15, 0xb4, 0x23, 0x15, 0xb7, 0x82, 0x58, 0x25, 0xc1, 0x79, 0x94, - 0x9d, 0x87, 0x79, 0xf3, 0x4c, 0xa2, 0x08, 0xe3, 0xbe, 0x81, 0x51, 0x1d, 0xa8, 0x0e, 0x54, 0x07, - 0xaa, 0x03, 0xd5, 0x81, 0xea, 0x40, 0x75, 0xa0, 0x3a, 0x50, 0x1d, 0xa8, 0x0e, 0x54, 0x47, 0xd1, - 0x54, 0x47, 0x12, 0xe5, 0x52, 0xc7, 0x1a, 0x37, 0xc6, 0x42, 0x5b, 0xa0, 0x2d, 0xd0, 0x16, 0x68, - 0x0b, 0xb4, 0x05, 0xda, 0x02, 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0xa0, 0x2d, 0xd0, 0x16, 0x05, 0xd3, - 0x16, 0x71, 0x98, 0x04, 0xad, 0x28, 0x93, 0x6b, 0x27, 0x75, 0x7b, 0x40, 0x54, 0x06, 0x2a, 0x03, - 0x95, 0x81, 0xca, 0x40, 0x65, 0xa0, 0x32, 0x50, 0x19, 0xa8, 0x0c, 0x54, 0x06, 0x2a, 0x03, 0x95, - 0x51, 0x30, 0x95, 0x71, 0x1e, 0x7e, 0x0b, 0xc2, 0x54, 0x85, 0x41, 0xd8, 0x6a, 0xa5, 0x2a, 0xcb, - 0x44, 0x73, 0xa7, 0xfe, 0x6a, 0x70, 0xd4, 0x07, 0xea, 0x03, 0xf5, 0x81, 0xfa, 0x40, 0x7d, 0xa0, - 0x3e, 0x50, 0x1f, 0xa8, 0x0f, 0xd4, 0x07, 0xea, 0x03, 0xf5, 0x51, 0x30, 0xf5, 0x91, 0xaa, 0xff, - 0xaa, 0x66, 0xae, 0x5a, 0x41, 0xd8, 0xfa, 0xaf, 0x79, 0xb9, 0x31, 0x35, 0x1a, 0xfa, 0x02, 0x7d, - 0x81, 0xbe, 0x40, 0x5f, 0xa0, 0x2f, 0xd0, 0x17, 0xe8, 0x0b, 0xf4, 0x05, 0xfa, 0x02, 0x7d, 0x81, - 0xbe, 0xb0, 0xa9, 0x2f, 0xb8, 0x19, 0xdd, 0xce, 0xbd, 0xd8, 0xb7, 0x6f, 0x58, 0xe6, 0x9a, 0x74, - 0xeb, 0x66, 0xe1, 0x92, 0x39, 0xd8, 0xbf, 0x33, 0xfd, 0xcd, 0x70, 0x46, 0x6f, 0xc6, 0x13, 0x2a, - 0xd2, 0xfd, 0xe9, 0x63, 0x3d, 0xaf, 0xfb, 0xd6, 0xf4, 0xe1, 0x73, 0xb9, 0x2b, 0xdd, 0xc1, 0x20, - 0x05, 0x77, 0xa5, 0xdb, 0x09, 0x32, 0x14, 0xfc, 0xae, 0xf4, 0x31, 0x6e, 0xe7, 0x26, 0xa2, 0x11, - 0xd7, 0xc0, 0x72, 0x73, 0x14, 0x33, 0x37, 0xa7, 0xaf, 0x99, 0xba, 0x39, 0x7d, 0x8d, 0x9b, 0xd3, - 0x05, 0x60, 0x48, 0x0c, 0x8e, 0xc4, 0x60, 0x49, 0x06, 0x9e, 0xfc, 0xd0, 0x41, 0xc6, 0x62, 0x9d, - 0x12, 0x08, 0x33, 0xe5, 0xcc, 0x6c, 0x18, 0x78, 0x76, 0x2d, 0xe9, 0x9d, 0xf7, 0x57, 0xe7, 0xca, - 0x55, 0xf1, 0xa4, 0xd1, 0x8b, 0x51, 0x49, 0x78, 0x12, 0xab, 0x96, 0x39, 0xaa, 0x19, 0x0f, 0xa0, - 0xfb, 0xee, 0x7f, 0xd5, 0x0e, 0x7b, 0xf1, 0x60, 0x0f, 0xb7, 0xc3, 0x38, 0x83, 0xc5, 0x60, 0x31, - 0x58, 0x0c, 0x16, 0xd3, 0x6c, 0xf1, 0x27, 0x9d, 0x4e, 0xac, 0xc2, 0xc4, 0x24, 0x81, 0xad, 0x2f, - 0x00, 0xc9, 0x9c, 0xa9, 0x38, 0xee, 0x04, 0xdd, 0xb0, 0xd5, 0x8a, 0x92, 0x53, 0x73, 0x54, 0x33, - 0x3d, 0x0c, 0x84, 0x00, 0x21, 0x40, 0x08, 0x10, 0x82, 0x39, 0x88, 0x41, 0xdc, 0x38, 0xce, 0x3b, - 0x93, 0xe3, 0x90, 0x20, 0x32, 0xa8, 0x70, 0xa6, 0x46, 0x81, 0x75, 0x60, 0x1d, 0x58, 0x07, 0xd6, - 0xf1, 0x05, 0x61, 0xa6, 0xf8, 0xe6, 0xe5, 0x02, 0x70, 0x42, 0x37, 0xcc, 0xb2, 0xe8, 0xc2, 0xe0, - 0xd9, 0xca, 0x78, 0x00, 0x02, 0x5e, 0x30, 0x0d, 0x4c, 0x03, 0xd3, 0x10, 0xf0, 0xf2, 0x24, 0xe0, - 0x45, 0x4a, 0x9a, 0xe1, 0x94, 0xb4, 0x21, 0x15, 0x14, 0x28, 0xef, 0xcb, 0x88, 0xbe, 0x34, 0xe9, - 0xf5, 0x69, 0x66, 0x79, 0x72, 0xc0, 0xc8, 0x01, 0xb3, 0xc1, 0xd6, 0x6e, 0x41, 0xb5, 0x76, 0x56, - 0xbe, 0xee, 0xe5, 0xa9, 0xc2, 0x76, 0xaa, 0xda, 0x3a, 0x2d, 0x76, 0xcc, 0xc2, 0x1a, 0xeb, 0xc2, - 0x4a, 0x07, 0x23, 0x36, 0x59, 0x5d, 0x1d, 0x61, 0x7c, 0x79, 0x0a, 0xba, 0x0a, 0x09, 0xf8, 0xfd, - 0xd7, 0x62, 0x10, 0xf1, 0xf5, 0xbd, 0xf5, 0x85, 0x4f, 0xfb, 0x6d, 0x03, 0xf8, 0x36, 0x00, 0xbf, - 0x4d, 0xca, 0xef, 0x03, 0x1f, 0xa8, 0xb9, 0x7a, 0x60, 0x66, 0x13, 0x68, 0xad, 0x22, 0x30, 0x04, - 0x2b, 0xc5, 0x89, 0x17, 0xb5, 0x89, 0x16, 0xb9, 0x18, 0x2d, 0x6a, 0x2f, 0x5a, 0xac, 0x48, 0x37, - 0x4c, 0xcd, 0xfa, 0x40, 0x12, 0x97, 0x65, 0x8d, 0x87, 0xa2, 0xcf, 0x8b, 0x34, 0xa8, 0x89, 0x81, - 0x9b, 0x14, 0xc8, 0x89, 0x83, 0x9d, 0x38, 0xe8, 0x49, 0x82, 0x9f, 0x19, 0x10, 0x34, 0x04, 0x86, - 0xe6, 0xa4, 0xba, 0xa0, 0x74, 0x97, 0x90, 0xf2, 0xf7, 0x4a, 0xfb, 0xf2, 0xc0, 0x8c, 0x5e, 0xdd, - 0x88, 0xeb, 0xde, 0xfa, 0xc1, 0xe8, 0xff, 0x0f, 0x8a, 0x82, 0x17, 0xb8, 0x15, 0x5a, 0xd6, 0x3b, - 0x11, 0xe4, 0xc7, 0xa9, 0xd1, 0xa0, 0x48, 0x28, 0x12, 0x8a, 0x84, 0x22, 0xa1, 0x48, 0x47, 0x29, - 0xf2, 0xf3, 0x35, 0x45, 0xfe, 0x9f, 0x66, 0x2f, 0x4d, 0x55, 0x92, 0x2f, 0xaf, 0x94, 0x57, 0x57, - 0xaf, 0xa3, 0xe5, 0xc7, 0xa3, 0x5f, 0xb9, 0x89, 0xeb, 0xd9, 0x1d, 0x3f, 0x9b, 0x3c, 0xb9, 0xa5, - 0xbe, 0x95, 0x68, 0x0c, 0xa4, 0xe1, 0x25, 0xd6, 0xbe, 0x0d, 0xfa, 0x4f, 0xe9, 0xef, 0x64, 0x67, - 0x3e, 0x60, 0xd3, 0x69, 0x06, 0xea, 0x5b, 0xfe, 0x2a, 0x57, 0xb1, 0x3a, 0x57, 0x79, 0x7a, 0x19, - 0x74, 0x92, 0xd1, 0xe5, 0x6f, 0x32, 0x41, 0x9c, 0x41, 0x36, 0x9a, 0x40, 0x14, 0xc7, 0xf5, 0x00, - 0xce, 0x31, 0xbd, 0xaa, 0x1e, 0x9a, 0x09, 0x32, 0x75, 0xce, 0xa5, 0x35, 0x2f, 0x44, 0xff, 0xab, - 0xbd, 0xd2, 0xda, 0x38, 0x29, 0xcc, 0x0d, 0x66, 0x9e, 0x0e, 0x1f, 0xef, 0x59, 0x9c, 0xbf, 0x42, - 0x9c, 0x5f, 0xcc, 0xbf, 0x27, 0xce, 0x5f, 0x3c, 0xcf, 0x85, 0x38, 0x3f, 0x41, 0x0c, 0x82, 0x18, - 0x04, 0x31, 0x08, 0x62, 0x10, 0xc4, 0x10, 0x08, 0x62, 0x10, 0xe7, 0x5f, 0x22, 0xce, 0x0f, 0x45, - 0x42, 0x91, 0x50, 0x24, 0x14, 0x09, 0x45, 0x12, 0xe7, 0xf7, 0x4b, 0x2d, 0x2f, 0x4c, 0x50, 0x95, - 0xee, 0xff, 0xb6, 0x6d, 0xc2, 0x19, 0x5b, 0xb0, 0xdf, 0xfa, 0x7f, 0xf2, 0xdd, 0xa1, 0x6a, 0x17, - 0xa9, 0x1c, 0x28, 0x56, 0x17, 0x2a, 0xce, 0xf4, 0xd7, 0x01, 0x8d, 0x9e, 0x4b, 0x01, 0x90, 0x16, - 0x4f, 0x9d, 0x9a, 0x4f, 0x19, 0xdf, 0x9b, 0xbe, 0xff, 0xf3, 0x42, 0x89, 0xb9, 0xa3, 0xc1, 0xe1, - 0xe3, 0x29, 0x01, 0xa2, 0x65, 0x8c, 0xfd, 0x60, 0x00, 0x2d, 0x63, 0x04, 0x05, 0x8f, 0xb1, 0xe3, - 0xc1, 0xb0, 0xf5, 0xdf, 0xb0, 0xa9, 0x92, 0x66, 0xa4, 0x32, 0xf3, 0x01, 0xd0, 0x9b, 0x83, 0x99, - 0x8d, 0x7f, 0xae, 0x9b, 0x8e, 0x7f, 0x56, 0xb8, 0xf2, 0xd9, 0x01, 0xb0, 0x13, 0x07, 0x3d, 0x71, - 0xf0, 0x93, 0x05, 0x41, 0x73, 0xf1, 0xa4, 0x25, 0x83, 0x31, 0x50, 0x53, 0xe0, 0x38, 0x03, 0x92, - 0x97, 0xe6, 0x0d, 0xf9, 0x36, 0x54, 0x5e, 0x9a, 0x36, 0x64, 0xb3, 0x80, 0x69, 0xdc, 0x1b, 0xb4, - 0x01, 0xa0, 0x16, 0x80, 0x54, 0x1a, 0x50, 0xad, 0x01, 0xab, 0x35, 0x80, 0xb5, 0x03, 0xb4, 0x66, - 0x01, 0xd7, 0x30, 0xf0, 0x8a, 0x01, 0xf0, 0x64, 0x20, 0x33, 0x99, 0xb7, 0x3f, 0xdd, 0xdf, 0x26, - 0x32, 0x72, 0x2d, 0x03, 0xb2, 0x38, 0x30, 0xdb, 0x00, 0x68, 0x8b, 0x40, 0x6d, 0x0b, 0xb0, 0xad, - 0x03, 0xb7, 0x75, 0x00, 0xb7, 0x0b, 0xe4, 0x32, 0x80, 0x2e, 0x04, 0xec, 0xe2, 0x00, 0x3f, 0xeb, - 0x71, 0x07, 0xb2, 0x90, 0x7f, 0xbf, 0x1f, 0x1e, 0x48, 0x92, 0xc0, 0x6d, 0x32, 0x58, 0x13, 0x1e, - 0x56, 0x9a, 0x14, 0x6c, 0x92, 0x83, 0x03, 0x24, 0x61, 0x9b, 0x2c, 0x9c, 0x21, 0x0d, 0x67, 0xc8, - 0xc3, 0x0d, 0x12, 0x91, 0x25, 0x13, 0x61, 0x52, 0x99, 0x2c, 0xb1, 0xf1, 0x14, 0xb6, 0x9f, 0xee, - 0xf8, 0xfe, 0x5b, 0x0d, 0xae, 0x93, 0x2d, 0xc2, 0xd6, 0x7f, 0xad, 0xa0, 0xfd, 0x92, 0xe1, 0x4b, - 0xa3, 0x7e, 0x3a, 0xb6, 0x99, 0x4b, 0xa5, 0xdc, 0xb1, 0x6e, 0x41, 0xcb, 0xbe, 0xe1, 0x38, 0xe4, - 0x36, 0xec, 0xfb, 0x0e, 0x07, 0xc6, 0xd0, 0x35, 0x67, 0xf8, 0x2f, 0xf8, 0x2f, 0xf8, 0x2f, 0xf8, - 0x2f, 0xf8, 0x2f, 0xd6, 0x76, 0xfc, 0x20, 0x2d, 0xc8, 0x06, 0xbe, 0xe3, 0xb1, 0x14, 0xc9, 0x63, - 0x49, 0x55, 0x18, 0x84, 0xad, 0x56, 0xaa, 0xb2, 0xcc, 0xa2, 0xbf, 0x72, 0x73, 0x16, 0x78, 0x2b, - 0x78, 0x2b, 0x78, 0x2b, 0x78, 0x2b, 0x78, 0x2b, 0x05, 0xf2, 0x56, 0x2c, 0x22, 0xfc, 0x94, 0xbf, - 0xf2, 0xd2, 0xc2, 0xd8, 0x07, 0x61, 0x9e, 0xab, 0x34, 0x31, 0xd2, 0xa3, 0xee, 0x41, 0x13, 0xf8, - 0xe3, 0xf3, 0x5a, 0xb0, 0x53, 0x0d, 0xde, 0x86, 0x41, 0xfb, 0xf8, 0x7b, 0xe5, 0xea, 0xcb, 0x97, - 0xd5, 0xe5, 0x9b, 0x3f, 0xd9, 0xe8, 0xff, 0x64, 0xe5, 0xfb, 0xda, 0xf3, 0x17, 0x57, 0x7f, 0x93, - 0xdf, 0x79, 0xc7, 0x85, 0xde, 0x79, 0x7b, 0x51, 0x96, 0x57, 0xf3, 0x3c, 0xb5, 0xb3, 0xfb, 0xf6, - 0xa3, 0xa4, 0x16, 0xab, 0x3e, 0xb8, 0xf6, 0x9d, 0xbb, 0xa4, 0x17, 0xc7, 0x16, 0xcc, 0x7f, 0x3f, - 0xfc, 0x66, 0x7f, 0x12, 0xef, 0xd3, 0x96, 0x4a, 0x55, 0xeb, 0xf5, 0xe5, 0x68, 0x0a, 0x48, 0x87, - 0xb9, 0x97, 0xb4, 0x15, 0x65, 0x41, 0x76, 0x99, 0xe5, 0xea, 0xdc, 0xc4, 0x15, 0xfd, 0x0f, 0x66, - 0x96, 0xe9, 0x69, 0x20, 0x1e, 0x10, 0x0f, 0x88, 0x07, 0xc4, 0x03, 0xe2, 0xa1, 0x40, 0xe2, 0xc1, - 0x16, 0xbc, 0xa3, 0x1c, 0xfe, 0x98, 0xd1, 0x09, 0x3f, 0xf9, 0x41, 0xf1, 0x05, 0x44, 0x21, 0x7d, - 0xb9, 0xb8, 0xd3, 0x0c, 0xe3, 0x40, 0x7d, 0xcb, 0x55, 0xd2, 0x52, 0xad, 0xa0, 0x19, 0xa5, 0xcd, - 0x5e, 0x94, 0x5b, 0xf5, 0xeb, 0xee, 0x9f, 0x12, 0x3e, 0x1e, 0x3e, 0x1e, 0x3e, 0x1e, 0x3e, 0x1e, - 0x3e, 0x5e, 0x81, 0x7c, 0x3c, 0xfb, 0x40, 0x7f, 0x13, 0xec, 0xb7, 0x2d, 0x0c, 0x7d, 0x38, 0xb8, - 0xf7, 0xc3, 0x96, 0xab, 0x67, 0x07, 0xed, 0x96, 0x46, 0x51, 0x4a, 0x6b, 0x70, 0x6b, 0x99, 0xe5, - 0x67, 0xa6, 0xf1, 0x29, 0x8c, 0x7b, 0xca, 0x81, 0x79, 0xbc, 0x4d, 0xc3, 0x66, 0x1e, 0x75, 0x92, - 0xdd, 0xe8, 0x34, 0x1a, 0xc4, 0x6d, 0xd7, 0xac, 0xcd, 0xe7, 0xea, 0xb9, 0x45, 0xd3, 0x0c, 0xbf, - 0x61, 0x9a, 0xb7, 0x4c, 0x73, 0xa3, 0xb2, 0xb3, 0xb1, 0xb3, 0xb5, 0x5d, 0xd9, 0xd9, 0xc4, 0x46, - 0xed, 0x78, 0x07, 0xf6, 0x46, 0x45, 0x6b, 0xcf, 0x6f, 0xb6, 0xe7, 0xbd, 0x38, 0x8f, 0x82, 0xbc, - 0xd3, 0xed, 0xc4, 0x9d, 0xd3, 0x4b, 0x7b, 0x02, 0xfb, 0xd6, 0x3c, 0x50, 0xd5, 0xa8, 0x6a, 0x54, - 0x35, 0xaa, 0x1a, 0x55, 0x5d, 0x20, 0x55, 0x7d, 0xd2, 0xe9, 0xc4, 0x2a, 0x4c, 0x6c, 0x9e, 0x9b, - 0xac, 0xe3, 0x32, 0xcc, 0xbd, 0x96, 0x89, 0x8a, 0x4e, 0xcf, 0x4e, 0x3a, 0xe9, 0x24, 0x38, 0x62, - 0xb7, 0xbc, 0xec, 0xee, 0xe9, 0xe0, 0x40, 0xe0, 0x40, 0xe0, 0x40, 0xe0, 0x40, 0xe0, 0x40, 0x14, - 0xc8, 0x81, 0xa0, 0xca, 0x8c, 0x2a, 0x33, 0x8d, 0xfe, 0x8b, 0x53, 0x19, 0x06, 0x7f, 0x39, 0x2b, - 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x99, 0x02, 0x79, 0x33, 0x24, 0x19, 0x90, - 0x64, 0x60, 0xf1, 0x8b, 0x24, 0x83, 0xe9, 0x79, 0x90, 0x64, 0xb0, 0x44, 0x92, 0xc1, 0xdd, 0xa6, - 0x49, 0x92, 0x81, 0x6d, 0xef, 0xc0, 0xde, 0xa8, 0x24, 0x19, 0x68, 0x54, 0xdc, 0x51, 0xf7, 0x62, - 0xc3, 0x7e, 0x83, 0x97, 0xbb, 0xa7, 0x83, 0xc6, 0x46, 0x63, 0xa3, 0xb1, 0xd1, 0xd8, 0x68, 0xec, - 0x02, 0x69, 0xec, 0x9b, 0x08, 0x1f, 0x24, 0x9d, 0xe0, 0xff, 0x75, 0x12, 0x45, 0xdd, 0xa6, 0xf0, - 0x04, 0x96, 0x07, 0x0d, 0x5e, 0x8e, 0x7f, 0x7c, 0x5e, 0x0f, 0x76, 0x8e, 0x87, 0xdf, 0xae, 0x0f, - 0xfe, 0x1a, 0x7e, 0x5f, 0xf9, 0xbc, 0x16, 0x6c, 0x8c, 0xbf, 0xdf, 0xfc, 0xbc, 0x16, 0x6c, 0x1e, - 0xaf, 0x0c, 0x7a, 0xc0, 0xbc, 0xb8, 0x7a, 0xfc, 0x2f, 0x2e, 0xff, 0xfd, 0xf3, 0x97, 0x2f, 0xdd, - 0xef, 0xef, 0xae, 0xfa, 0x7f, 0xee, 0x5d, 0x1d, 0xff, 0x73, 0xe5, 0x17, 0x5b, 0x48, 0xd7, 0x9f, - 0xd8, 0x97, 0x2f, 0xab, 0xc7, 0xff, 0xa0, 0x0a, 0xd5, 0x77, 0xa7, 0x75, 0xcb, 0x2d, 0xa7, 0x75, - 0x0b, 0xa7, 0x15, 0xa7, 0x15, 0xa7, 0x15, 0xa7, 0x15, 0xa7, 0xb5, 0xa0, 0x4e, 0xeb, 0x16, 0x4e, - 0xab, 0x75, 0xa7, 0xf5, 0xd5, 0x8f, 0xbe, 0x07, 0x17, 0x06, 0xed, 0x6a, 0xf0, 0xf6, 0xf8, 0xfb, - 0xda, 0xf3, 0x8d, 0xab, 0x95, 0x57, 0x2b, 0xcb, 0xb7, 0x7f, 0xf6, 0x6a, 0xe5, 0xfb, 0xda, 0xf3, - 0xcd, 0xab, 0xe5, 0xe5, 0x3b, 0xfe, 0xcb, 0x2f, 0x77, 0x3d, 0x63, 0xe5, 0xc7, 0xf2, 0xf2, 0xf2, - 0xc8, 0x5d, 0x9d, 0x72, 0x61, 0x3f, 0xaf, 0xad, 0x1f, 0xff, 0x32, 0xf8, 0x76, 0xf8, 0xe7, 0xc4, - 0x09, 0x7e, 0xd0, 0x3f, 0x5e, 0x71, 0xc9, 0xf5, 0x5d, 0x5e, 0xfe, 0xfc, 0xc7, 0xab, 0xe3, 0x7f, - 0xbe, 0x5a, 0xf9, 0xbe, 0x75, 0x35, 0xfe, 0x7e, 0xf0, 0xe7, 0xca, 0x8f, 0xe5, 0xd5, 0x7f, 0x7c, - 0xf9, 0xb2, 0xba, 0xfa, 0x8f, 0x95, 0xe1, 0x42, 0x8c, 0xfe, 0xdd, 0x3f, 0x86, 0xff, 0xf5, 0x97, - 0x57, 0xaf, 0x66, 0x7e, 0xb4, 0xb2, 0xfc, 0xf7, 0x55, 0xcb, 0x5e, 0xfc, 0xf0, 0xfd, 0xbd, 0xc2, - 0x99, 0xf7, 0xdf, 0x99, 0xcf, 0x92, 0x6e, 0xe8, 0x80, 0x13, 0x3f, 0x98, 0x06, 0xce, 0x3b, 0xce, - 0x3b, 0xce, 0x3b, 0xce, 0x3b, 0xce, 0x7b, 0x81, 0x9c, 0x77, 0x0b, 0xc8, 0x6e, 0xdd, 0x59, 0xdf, - 0x53, 0xc9, 0x69, 0x7e, 0x46, 0x22, 0x97, 0xa5, 0x49, 0x90, 0xc8, 0x35, 0x35, 0x0f, 0x12, 0xb9, - 0x96, 0x48, 0xe4, 0xba, 0xdb, 0x34, 0x2b, 0xd8, 0xa6, 0x25, 0x47, 0xc0, 0xde, 0xa8, 0xc8, 0x67, - 0x0d, 0xf2, 0x39, 0xee, 0x5a, 0xad, 0x8d, 0x1a, 0x0c, 0x8f, 0x5c, 0x46, 0x2e, 0x23, 0x97, 0x91, - 0xcb, 0xc8, 0xe5, 0x02, 0xc9, 0x65, 0x95, 0xf4, 0xce, 0x55, 0x1a, 0xf6, 0x7d, 0x22, 0x6a, 0xba, - 0x8b, 0x68, 0x62, 0xdc, 0x39, 0xc5, 0x9d, 0x53, 0x05, 0xf5, 0x8a, 0xbb, 0x69, 0xd4, 0x49, 0xa3, - 0xdc, 0x62, 0xd7, 0xc4, 0xc9, 0x0c, 0xf0, 0x8d, 0xf1, 0x8d, 0xf1, 0x8d, 0xf1, 0x8d, 0xf1, 0x8d, - 0x0b, 0xe4, 0x1b, 0xf7, 0xa2, 0x24, 0x7f, 0x69, 0xd1, 0x2b, 0xde, 0xa4, 0x25, 0x80, 0xa8, 0xa7, - 0x4a, 0xb8, 0x7e, 0x34, 0x0d, 0x4e, 0x92, 0x6c, 0xa3, 0xdf, 0x6d, 0xfd, 0x82, 0x69, 0xde, 0x32, - 0xcd, 0xf5, 0xca, 0x36, 0xc6, 0x69, 0xc7, 0x11, 0xb0, 0x37, 0x2a, 0x47, 0x49, 0xf3, 0x9b, 0x6d, - 0xaa, 0xce, 0xc3, 0x28, 0x89, 0x92, 0xd3, 0xe0, 0xac, 0x13, 0xb7, 0x82, 0x3c, 0x3a, 0xb7, 0xd8, - 0x3b, 0xf8, 0xae, 0xc9, 0x20, 0xa5, 0x91, 0xd2, 0x48, 0x69, 0xa4, 0x34, 0x52, 0xba, 0x60, 0x52, - 0x7a, 0x7d, 0xcb, 0xa2, 0x96, 0xde, 0x42, 0x4b, 0xa3, 0xa5, 0xd1, 0xd2, 0x68, 0x69, 0xb4, 0xf4, - 0x8c, 0x69, 0x6e, 0x6d, 0x6e, 0xbe, 0xa0, 0xb3, 0x1e, 0x6a, 0x1a, 0x35, 0xfd, 0x04, 0x35, 0x9d, - 0xe5, 0x61, 0x9a, 0x07, 0x59, 0x1e, 0xe6, 0xbd, 0xcc, 0xa6, 0x90, 0x9e, 0x9a, 0x07, 0x1a, 0x1a, - 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0x0b, 0xa4, 0xa1, 0xb9, 0xbe, 0xaf, 0x58, 0x2e, 0x43, - 0xaf, 0xdb, 0xed, 0xa4, 0xb9, 0x03, 0x3e, 0xc3, 0x68, 0x22, 0x38, 0x0d, 0x38, 0x0d, 0x38, 0x0d, - 0x38, 0x0d, 0x38, 0x0d, 0x38, 0x0d, 0x38, 0x0d, 0xee, 0x3a, 0x0d, 0x76, 0xfb, 0xa0, 0xce, 0xcc, - 0x04, 0xb7, 0x01, 0xb7, 0x01, 0xb7, 0x01, 0xb7, 0x01, 0xb7, 0x01, 0xb7, 0x01, 0xb7, 0xc1, 0x2d, - 0xb7, 0x21, 0xbb, 0xcc, 0x72, 0x75, 0x6e, 0xf5, 0x5e, 0xdd, 0xeb, 0x29, 0xe0, 0x28, 0xe0, 0x28, - 0xe0, 0x28, 0xe0, 0x28, 0xe0, 0x28, 0x14, 0xc8, 0x51, 0xb0, 0x05, 0xef, 0x4b, 0x0b, 0xdf, 0x20, - 0xfd, 0x8f, 0xcf, 0x6b, 0xc1, 0x4e, 0x35, 0x78, 0x1b, 0x06, 0xed, 0xe3, 0xef, 0x1b, 0x57, 0x5f, - 0xbe, 0xac, 0xfe, 0xe4, 0x07, 0x7f, 0xa3, 0x75, 0xb6, 0x8f, 0x3e, 0x5c, 0xde, 0xe9, 0x76, 0xe2, - 0xce, 0xa9, 0xc5, 0x2e, 0x07, 0x93, 0x19, 0xe0, 0xc1, 0xe1, 0xc1, 0xe1, 0xc1, 0xe1, 0xc1, 0xe1, - 0xc1, 0x15, 0xc8, 0x83, 0x8b, 0x5a, 0x2a, 0xc9, 0xa3, 0xfc, 0x32, 0x55, 0x6d, 0x9b, 0x3e, 0x9c, - 0x8d, 0x66, 0x07, 0xf5, 0xd1, 0x47, 0x7f, 0x1d, 0x66, 0x16, 0x71, 0x67, 0xfc, 0x22, 0xaa, 0x6f, - 0xeb, 0x8d, 0x0f, 0xfd, 0x3f, 0x8e, 0xfe, 0x73, 0x50, 0xb3, 0x85, 0x3d, 0x83, 0x9c, 0xf0, 0xcc, - 0x9a, 0x57, 0xbb, 0x64, 0xb5, 0x70, 0x65, 0xea, 0x75, 0xd4, 0x0f, 0x3e, 0x6d, 0x34, 0xf6, 0x3f, - 0xee, 0x1d, 0xd5, 0xdf, 0x54, 0x3f, 0x1c, 0x95, 0x16, 0xb1, 0x5a, 0xc2, 0x9d, 0x37, 0xb1, 0xd5, - 0xf8, 0xf8, 0x8e, 0xf7, 0xe0, 0xc2, 0x7b, 0x60, 0x47, 0xb8, 0x82, 0x4d, 0xf6, 0x77, 0x84, 0x95, - 0x91, 0x8f, 0xf1, 0x40, 0xb5, 0xda, 0x14, 0x0d, 0x42, 0x69, 0x10, 0x5a, 0xd0, 0xd0, 0x59, 0xaf, - 0x6b, 0xb9, 0xbf, 0xc9, 0x78, 0x02, 0x04, 0xce, 0x8c, 0x0e, 0x4c, 0xe0, 0x8c, 0xc0, 0x19, 0x81, - 0xb3, 0xc5, 0x72, 0x5b, 0xec, 0x07, 0xce, 0xfa, 0xc8, 0x9e, 0xe5, 0xe1, 0x79, 0xd7, 0x62, 0xd8, - 0x6c, 0x9b, 0xb6, 0x26, 0xa2, 0xbe, 0x2a, 0xbd, 0x23, 0x46, 0xd3, 0xa0, 0xad, 0x89, 0x4b, 0x61, - 0x09, 0xda, 0x9a, 0xdc, 0x61, 0x9a, 0x1b, 0x95, 0x9d, 0x8d, 0x9d, 0xad, 0xed, 0xca, 0x0e, 0xbd, - 0x4d, 0x2c, 0x87, 0x6c, 0xe8, 0x6d, 0xe2, 0xd7, 0x48, 0x42, 0x48, 0x56, 0xaa, 0x26, 0x49, 0x27, - 0x1f, 0xde, 0x3d, 0x24, 0x09, 0x5e, 0xa5, 0xac, 0x79, 0xa6, 0xce, 0xc3, 0x6e, 0x38, 0xb8, 0x33, - 0xb7, 0x54, 0xee, 0x74, 0x55, 0xd2, 0x1c, 0x68, 0xd7, 0x20, 0x51, 0xf9, 0x9f, 0x9d, 0xf4, 0x6b, - 0x10, 0x25, 0x59, 0x1e, 0x26, 0x4d, 0x55, 0xbe, 0xfd, 0x83, 0x6c, 0xe6, 0x27, 0xe5, 0x6e, 0xda, - 0xc9, 0x3b, 0xcd, 0x4e, 0x9c, 0x4d, 0xbe, 0x2b, 0xf7, 0x1d, 0xfe, 0x72, 0x94, 0xe4, 0x2a, 0x6d, - 0x87, 0xfd, 0xdf, 0x99, 0x7c, 0x5b, 0x8e, 0xd5, 0x85, 0x8a, 0xb3, 0xe1, 0x5f, 0xe5, 0xb0, 0xf5, - 0xdf, 0xb0, 0xa9, 0x92, 0x66, 0xa4, 0xb2, 0xc9, 0xf7, 0x97, 0xe5, 0x2c, 0x0f, 0x73, 0x25, 0x23, - 0x17, 0xcc, 0x9b, 0x93, 0x80, 0x29, 0x59, 0xc8, 0x72, 0xb7, 0x96, 0xfe, 0x28, 0xcc, 0xb1, 0xe2, - 0x21, 0x1d, 0x1b, 0xa1, 0x1c, 0x8b, 0x21, 0x1c, 0x5b, 0xa1, 0x1b, 0xeb, 0x21, 0x1b, 0xeb, 0xa1, - 0x1a, 0xbb, 0x21, 0x9a, 0x62, 0xd1, 0xb8, 0x78, 0x28, 0x66, 0xb2, 0x63, 0x63, 0x15, 0xb6, 0x65, - 0xf3, 0x96, 0x26, 0xf9, 0x4a, 0x82, 0x91, 0x97, 0xd2, 0xc1, 0xc8, 0x53, 0x59, 0x5d, 0x1d, 0x3a, - 0x07, 0xe5, 0x6b, 0xda, 0x29, 0x8a, 0x9b, 0xf0, 0xcc, 0xe3, 0x8d, 0xd0, 0x47, 0x53, 0x49, 0x67, - 0x40, 0xf6, 0xc8, 0xd6, 0xca, 0x11, 0xad, 0x95, 0x23, 0x59, 0xd9, 0x23, 0x58, 0xd3, 0x46, 0x29, - 0x2c, 0xae, 0xdc, 0x16, 0x55, 0x25, 0x09, 0x19, 0x92, 0xa7, 0xbd, 0x66, 0x9e, 0x8c, 0xa8, 0xe9, - 0xdd, 0xf0, 0x13, 0xd5, 0x47, 0x1f, 0xa8, 0x71, 0x30, 0xfa, 0x18, 0x8d, 0x7a, 0x16, 0x65, 0x8d, - 0xfa, 0x78, 0xee, 0x8d, 0xbd, 0xfe, 0xa4, 0x1b, 0xd5, 0xc9, 0x44, 0x9f, 0xf9, 0x09, 0xb3, 0x66, - 0x9e, 0x6c, 0x68, 0x8f, 0x48, 0xed, 0x0d, 0x17, 0xf7, 0x84, 0x19, 0x03, 0xd3, 0xff, 0xfa, 0x0d, - 0xbc, 0xfa, 0x52, 0xd8, 0x8e, 0x82, 0x2c, 0x6c, 0x47, 0xc6, 0x5e, 0xfa, 0xc4, 0x31, 0x9d, 0x8c, - 0x64, 0xc8, 0x80, 0xc7, 0x5e, 0xa8, 0xa1, 0xc7, 0x9b, 0x96, 0xfd, 0x12, 0x32, 0x5f, 0x50, 0xd6, - 0x4b, 0xc9, 0x78, 0x71, 0xd9, 0x2e, 0x2e, 0xd3, 0x65, 0x65, 0xb9, 0x5f, 0xa4, 0xb5, 0x1b, 0x99, - 0x75, 0xf8, 0x4b, 0x61, 0xdb, 0xbc, 0x05, 0x5f, 0x03, 0xa4, 0x69, 0xd3, 0x35, 0x0b, 0x91, 0x62, - 0x50, 0x29, 0x09, 0x99, 0x16, 0xa0, 0x53, 0x1a, 0x42, 0xad, 0x41, 0xa9, 0x35, 0x48, 0xb5, 0x03, - 0xad, 0xc5, 0x08, 0xec, 0x98, 0x86, 0xdc, 0x29, 0xcf, 0x74, 0xa4, 0x1c, 0x85, 0x4f, 0xb0, 0x26, - 0x23, 0x73, 0x80, 0xe5, 0x1b, 0x4c, 0x5b, 0x84, 0x6b, 0x5b, 0xb0, 0x6d, 0x1d, 0xbe, 0xad, 0xc3, - 0xb8, 0x5d, 0x38, 0x97, 0x81, 0x75, 0x21, 0x78, 0x9f, 0x2c, 0x25, 0x07, 0x58, 0xa6, 0x41, 0xf1, - 0xfa, 0x00, 0x6b, 0x18, 0xff, 0x2a, 0x4f, 0x68, 0x87, 0x3c, 0x97, 0x07, 0xaf, 0x62, 0x73, 0xcc, - 0x65, 0xc2, 0x2e, 0xc2, 0x68, 0x5c, 0x59, 0x07, 0x61, 0x1d, 0x07, 0x01, 0x07, 0x01, 0x07, 0x01, - 0x07, 0xc1, 0x05, 0x07, 0x41, 0x4a, 0x07, 0xda, 0xd3, 0x83, 0xb6, 0x75, 0xa1, 0x25, 0x7d, 0x68, - 0x8d, 0x06, 0x6c, 0xd2, 0x81, 0x03, 0xb4, 0x60, 0x9b, 0x1e, 0x9c, 0xa1, 0x09, 0x67, 0xe8, 0xc2, - 0x0d, 0xda, 0x90, 0xa5, 0x0f, 0x61, 0x1a, 0xb1, 0xa7, 0x37, 0x67, 0x76, 0x3c, 0x4d, 0xdf, 0x1c, - 0x6a, 0xfa, 0x46, 0xbf, 0x37, 0x8b, 0x5f, 0x53, 0x3d, 0x95, 0xe8, 0x69, 0x65, 0x75, 0xfd, 0xb7, - 0xe8, 0x65, 0x55, 0x30, 0x62, 0x2d, 0x64, 0x5b, 0x21, 0x95, 0x84, 0x27, 0xb1, 0xb2, 0x78, 0xa7, - 0xca, 0x78, 0x02, 0x48, 0x33, 0xa4, 0x19, 0xd2, 0x0c, 0x69, 0x86, 0x34, 0x2b, 0x90, 0x34, 0xe3, - 0xea, 0xb5, 0x42, 0x38, 0x09, 0xe7, 0x2a, 0x4f, 0xa3, 0xa6, 0x3d, 0x1f, 0x61, 0x34, 0xbe, 0xf0, - 0xf6, 0xd9, 0x55, 0xed, 0xb0, 0x17, 0x0f, 0x00, 0x6a, 0x7d, 0x0d, 0xff, 0x04, 0xff, 0x04, 0xff, - 0x04, 0xff, 0x04, 0xff, 0xa4, 0x48, 0xfe, 0x49, 0x2f, 0x4a, 0xf2, 0x17, 0x15, 0x7a, 0x1e, 0x0a, - 0x7e, 0xd1, 0xf3, 0x90, 0x9e, 0x87, 0x37, 0xe6, 0x41, 0xcf, 0xc3, 0x25, 0x7a, 0x1e, 0xde, 0x6d, - 0x9a, 0xf4, 0x3c, 0xb4, 0xed, 0x10, 0xd8, 0x1b, 0x95, 0xcb, 0x36, 0xe7, 0x37, 0xdb, 0xcc, 0x7e, - 0xe2, 0x55, 0x46, 0xe6, 0x15, 0xf2, 0x19, 0xf9, 0x8c, 0x7c, 0x46, 0x3e, 0x17, 0x51, 0x3e, 0x93, - 0x79, 0xe5, 0x48, 0xe6, 0x15, 0x57, 0x6d, 0x3a, 0x93, 0xfa, 0xc3, 0xdd, 0x8e, 0xd6, 0x5f, 0x81, - 0x0b, 0xd7, 0x3a, 0x92, 0x82, 0xe5, 0xb7, 0x4e, 0xa3, 0x37, 0xbd, 0x0e, 0x05, 0xea, 0x4a, 0xcb, - 0xb8, 0x51, 0x07, 0xb3, 0x72, 0xd8, 0x1e, 0xd5, 0xec, 0x52, 0xaa, 0xeb, 0x72, 0x1c, 0xc1, 0x5a, - 0xfc, 0x80, 0x8e, 0x1e, 0x85, 0x8a, 0x0f, 0x50, 0xb0, 0x4b, 0xc1, 0xae, 0xff, 0xec, 0x4d, 0x47, - 0x0f, 0xd3, 0xa0, 0x38, 0xd3, 0xd1, 0x23, 0xa3, 0xa5, 0xc7, 0x13, 0xfc, 0x04, 0x75, 0xda, 0xdf, - 0xf1, 0x41, 0xda, 0xe9, 0xe5, 0x51, 0x62, 0xa1, 0xb7, 0xc7, 0xed, 0x09, 0xd0, 0xe4, 0xa3, 0x08, - 0x3e, 0x43, 0x96, 0xe2, 0x31, 0x2c, 0xa0, 0xc7, 0x90, 0xa5, 0xf8, 0x0b, 0x4f, 0x5b, 0x48, 0xf9, - 0x06, 0x1f, 0xe3, 0x86, 0xff, 0x41, 0x16, 0xb5, 0x32, 0x8b, 0x6d, 0x3e, 0xa6, 0xe7, 0x61, 0xe7, - 0xc8, 0x79, 0x9d, 0x23, 0xe7, 0xe2, 0xd2, 0x83, 0x6d, 0x9a, 0x70, 0x86, 0x2e, 0x9c, 0xa1, 0x0d, - 0x17, 0xe8, 0x43, 0x96, 0x46, 0x84, 0xe9, 0xc4, 0x1a, 0xad, 0xdc, 0x4d, 0x2f, 0xf6, 0xcf, 0x5a, - 0xa7, 0xa7, 0x63, 0xc9, 0xda, 0xed, 0x90, 0x8d, 0x75, 0xd2, 0x71, 0x81, 0x7c, 0x9c, 0x21, 0x21, - 0x57, 0xc8, 0xc8, 0x39, 0x52, 0x72, 0x8e, 0x9c, 0x5c, 0x22, 0x29, 0x3b, 0x64, 0x65, 0x89, 0xb4, - 0xac, 0x93, 0xd7, 0x64, 0x02, 0xc2, 0xfd, 0x6e, 0x7f, 0x0a, 0x5a, 0xa2, 0x7d, 0x70, 0x1d, 0xa5, - 0x31, 0x67, 0xe8, 0xcc, 0x25, 0x5a, 0x73, 0x8e, 0xde, 0x5c, 0xa3, 0x39, 0x67, 0xe9, 0xce, 0x59, - 0xda, 0x73, 0x91, 0xfe, 0xec, 0xd2, 0xa0, 0x65, 0x3a, 0x74, 0x86, 0x16, 0x27, 0x13, 0x39, 0x4d, - 0x3b, 0xbd, 0xae, 0x3b, 0x5b, 0x7b, 0x8c, 0x7d, 0xc3, 0x69, 0x39, 0xb2, 0x7b, 0x6e, 0xf4, 0xa3, - 0x68, 0x87, 0x71, 0xa6, 0x5c, 0x99, 0x97, 0x1b, 0x65, 0x83, 0xce, 0x91, 0xb9, 0x8b, 0xa4, 0xee, - 0x2c, 0xb9, 0xbb, 0x4a, 0xf2, 0xce, 0x93, 0xbd, 0xf3, 0xa4, 0xef, 0x32, 0xf9, 0xbb, 0xe1, 0x04, - 0x38, 0xe2, 0x0c, 0x4c, 0x5e, 0x94, 0xb5, 0xba, 0xa2, 0x9f, 0xa2, 0x95, 0xbd, 0x76, 0x62, 0x3f, - 0x55, 0xb0, 0xeb, 0xcf, 0x30, 0x64, 0x47, 0x8c, 0xb8, 0x94, 0xa8, 0xe8, 0xf4, 0xec, 0xa4, 0x93, - 0xba, 0xe7, 0x4f, 0x4e, 0x66, 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0x86, - 0xeb, 0xb6, 0x10, 0xae, 0x5b, 0xd4, 0x0d, 0xc2, 0x56, 0x2b, 0x55, 0x59, 0xe6, 0xa2, 0xf7, 0xb6, - 0xe3, 0xd0, 0x9c, 0x46, 0xef, 0xf0, 0xb3, 0x53, 0x10, 0xe0, 0x16, 0xa4, 0xdf, 0xb2, 0xac, 0x8b, - 0x0d, 0x07, 0x6d, 0x6b, 0xc6, 0xc6, 0x5e, 0x3a, 0x38, 0xb7, 0x83, 0x30, 0xcf, 0x55, 0x9a, 0x38, - 0x67, 0x6e, 0x93, 0x09, 0x2e, 0x2f, 0x7f, 0x5e, 0x0b, 0x76, 0x8e, 0x7f, 0x7c, 0x5e, 0x0f, 0x76, - 0x8e, 0x87, 0xdf, 0xae, 0x0f, 0xfe, 0x1a, 0x7e, 0x5f, 0xf9, 0xbc, 0x16, 0x6c, 0x8c, 0xbf, 0xdf, - 0xfc, 0xbc, 0x16, 0x6c, 0x1e, 0xaf, 0x7c, 0xf9, 0xb2, 0xba, 0xf2, 0xfd, 0xc5, 0xd5, 0xe3, 0x7f, - 0x71, 0xf9, 0xef, 0x9f, 0xbf, 0x7c, 0xe9, 0x7e, 0x7f, 0x77, 0xd5, 0xff, 0x73, 0xef, 0xea, 0xf8, - 0x9f, 0x2b, 0xbf, 0x94, 0x9c, 0x5b, 0x95, 0x63, 0xa7, 0x66, 0x74, 0xf5, 0x1c, 0x94, 0x7a, 0x30, - 0x4a, 0x6d, 0x81, 0x52, 0x85, 0x45, 0xa9, 0x57, 0x3f, 0xfa, 0x58, 0x12, 0x06, 0xed, 0x6a, 0xf0, - 0xf6, 0xf8, 0xfb, 0xda, 0xf3, 0x8d, 0xab, 0x95, 0x57, 0x2b, 0xcb, 0xb7, 0x7f, 0xf6, 0x6a, 0xe5, - 0xfb, 0xda, 0xf3, 0xcd, 0xab, 0xe5, 0xe5, 0x3b, 0xfe, 0xcb, 0x2f, 0x77, 0x3d, 0x63, 0xe5, 0xc7, - 0xf2, 0xf2, 0xf2, 0x08, 0x9f, 0xa6, 0x30, 0xeb, 0xf3, 0xda, 0xfa, 0xf1, 0x2f, 0x83, 0x6f, 0x87, - 0x7f, 0x4e, 0x50, 0xef, 0x41, 0xff, 0x78, 0xe5, 0x4e, 0xac, 0x7b, 0xee, 0x2c, 0x05, 0xfc, 0xf1, - 0xea, 0xf8, 0x9f, 0xaf, 0x56, 0xbe, 0x6f, 0x5d, 0x8d, 0xbf, 0x1f, 0xfc, 0xb9, 0xf2, 0x63, 0x79, - 0xf5, 0x1f, 0x5f, 0xbe, 0xac, 0xae, 0xfe, 0x63, 0x65, 0xb8, 0x50, 0xa3, 0x7f, 0xf7, 0x8f, 0xe1, - 0x7f, 0xfd, 0xe5, 0xd5, 0xab, 0x99, 0x1f, 0xad, 0x2c, 0xff, 0x7d, 0x15, 0x58, 0xf7, 0x44, 0x54, - 0xb9, 0xb3, 0x2e, 0x84, 0x55, 0xfb, 0x1b, 0xb1, 0x9b, 0x76, 0x72, 0x35, 0x68, 0x84, 0x1a, 0xa8, - 0x38, 0x3a, 0x8d, 0x4e, 0x62, 0xe5, 0x5e, 0x84, 0xf5, 0xae, 0x49, 0xba, 0x77, 0x7e, 0x9f, 0xa7, - 0x3d, 0x8e, 0xef, 0xef, 0x9e, 0x0e, 0x31, 0xe0, 0x47, 0x58, 0x3b, 0x31, 0xe0, 0x87, 0x1a, 0x39, - 0x31, 0xe0, 0x39, 0x27, 0x48, 0x0c, 0xd8, 0x0f, 0x2d, 0xcc, 0xf1, 0xfd, 0x53, 0x64, 0x2f, 0xc7, - 0xf7, 0xee, 0xf8, 0x99, 0x59, 0xd4, 0x0a, 0x2c, 0x16, 0xfa, 0xdd, 0x6b, 0xbe, 0xa3, 0x79, 0xe1, - 0xb6, 0xe1, 0xb6, 0xe1, 0xb6, 0xe1, 0xb6, 0xe1, 0xb6, 0xe1, 0xb6, 0x2d, 0x84, 0xdb, 0xd6, 0x4b, - 0xa2, 0x4e, 0xc2, 0xa9, 0xfd, 0x83, 0x5e, 0x1f, 0xa7, 0xf6, 0x0f, 0x75, 0xa6, 0xd2, 0xa0, 0xef, - 0x4f, 0xe5, 0xfd, 0x65, 0x73, 0xf8, 0x38, 0x6c, 0xc7, 0xc1, 0xb9, 0x39, 0x69, 0x6a, 0xee, 0x9a, - 0xdc, 0x8c, 0xe9, 0x9d, 0x77, 0xe3, 0x2c, 0x88, 0xc3, 0x13, 0x15, 0x3b, 0x7a, 0xe4, 0xe5, 0xba, - 0x05, 0xfa, 0x61, 0x89, 0xee, 0x5b, 0xe4, 0x2c, 0xd3, 0xda, 0xba, 0x8e, 0xf4, 0xa9, 0xd6, 0xb9, - 0xed, 0xc1, 0x54, 0xed, 0x5e, 0x77, 0x5a, 0x3c, 0x6b, 0x9d, 0x2c, 0xac, 0x0b, 0xd7, 0xa9, 0x7a, - 0x1e, 0x36, 0x79, 0xf0, 0xb4, 0xc7, 0x77, 0x62, 0xae, 0x6f, 0x79, 0x36, 0x71, 0x87, 0xee, 0xce, - 0xf4, 0x54, 0x19, 0x3e, 0x6c, 0x2f, 0x86, 0xdf, 0xd8, 0x8b, 0xd2, 0x7b, 0x71, 0x6d, 0xe3, 0xe5, - 0xe6, 0xf6, 0x26, 0x1b, 0x52, 0x6c, 0x43, 0x3e, 0x63, 0x96, 0x3a, 0xbe, 0x8e, 0x9f, 0x01, 0xbb, - 0x8b, 0x20, 0x27, 0x54, 0xd2, 0x3b, 0x57, 0xe9, 0xf0, 0xde, 0x27, 0x7f, 0x34, 0xc5, 0xfa, 0x86, - 0x07, 0x73, 0xad, 0x25, 0xbd, 0xf3, 0x3e, 0xe1, 0xba, 0xbd, 0xd9, 0xdd, 0x9d, 0x9d, 0x9b, 0x10, - 0xe4, 0x28, 0xf4, 0x78, 0x10, 0x53, 0x73, 0xbc, 0xbc, 0x61, 0x06, 0x63, 0x5e, 0x3a, 0x3c, 0x47, - 0xd7, 0xcb, 0x1d, 0x26, 0x13, 0xfd, 0x63, 0xba, 0x8e, 0x61, 0x7d, 0x58, 0xe1, 0xb0, 0x7d, 0x75, - 0xfb, 0x87, 0x3f, 0xee, 0xfa, 0x67, 0xeb, 0xcf, 0xb7, 0xaf, 0x5e, 0xdd, 0xf3, 0x5f, 0xb6, 0xae, - 0x5e, 0x3d, 0xf0, 0x19, 0x9b, 0x57, 0xcb, 0x33, 0xff, 0xb4, 0xff, 0xf3, 0xca, 0x7d, 0xbf, 0xb0, - 0x71, 0xcf, 0x2f, 0xbc, 0xb8, 0xef, 0x17, 0x5e, 0xdc, 0xf3, 0x0b, 0xf7, 0x4e, 0xa9, 0x72, 0xcf, - 0x2f, 0x6c, 0x5e, 0xfd, 0x98, 0xf9, 0xf7, 0xcb, 0x77, 0xff, 0xd3, 0xad, 0xab, 0x95, 0x1f, 0xf7, - 0xfd, 0xb7, 0xed, 0xab, 0x1f, 0xaf, 0x56, 0x56, 0xfe, 0x56, 0x02, 0xda, 0x3d, 0xa7, 0x42, 0x2a, - 0xf9, 0xbc, 0xa2, 0x3c, 0x4f, 0xbc, 0x6a, 0x97, 0xbd, 0x68, 0x47, 0xbd, 0x66, 0xaa, 0x9d, 0x5c, - 0x5b, 0x8f, 0xc5, 0x6e, 0xca, 0x6a, 0xe9, 0xb6, 0xe6, 0x7b, 0xe7, 0xe3, 0xe2, 0x2d, 0xce, 0xb7, - 0xae, 0xfa, 0x2b, 0x4f, 0x5f, 0xfd, 0x34, 0xfd, 0x7f, 0x45, 0xaf, 0x7c, 0x76, 0xcf, 0xa4, 0x2d, - 0x9a, 0xb3, 0x3b, 0x9d, 0xd8, 0x5c, 0xeb, 0xc0, 0xe6, 0xc8, 0xd9, 0x07, 0x9d, 0xef, 0xff, 0xca, - 0x56, 0xe8, 0x7c, 0x7f, 0x9f, 0xf1, 0xd2, 0xf9, 0xfe, 0xb1, 0x9c, 0x4e, 0xe7, 0x7b, 0xb7, 0x9c, - 0x2c, 0x67, 0xd2, 0xad, 0x2d, 0x5e, 0xb6, 0xfd, 0x53, 0x0d, 0xe9, 0x40, 0x7a, 0xd7, 0x1d, 0x97, - 0x73, 0x4f, 0x28, 0x1c, 0x87, 0x4e, 0x5e, 0x0b, 0xb8, 0x51, 0x9b, 0xe7, 0x56, 0x4d, 0x1e, 0xce, - 0x1c, 0xce, 0x1c, 0xce, 0x1c, 0xce, 0x1c, 0xce, 0x1c, 0xce, 0x1c, 0xce, 0xdc, 0xe3, 0x9c, 0xb9, - 0x11, 0x81, 0xe3, 0xca, 0xc9, 0xbb, 0x72, 0x79, 0x98, 0x2b, 0x87, 0x3c, 0xb9, 0xc1, 0x74, 0xb8, - 0x8f, 0x72, 0xca, 0x91, 0xab, 0xe0, 0xc8, 0xe1, 0xc8, 0xe1, 0xc8, 0xe1, 0xc8, 0x2d, 0x88, 0x23, - 0xe7, 0xcc, 0x7d, 0x94, 0x61, 0x1c, 0x77, 0x9a, 0x61, 0xae, 0x5a, 0x41, 0xeb, 0x32, 0x09, 0xcf, - 0xa3, 0x66, 0xd0, 0xff, 0xff, 0xb1, 0x7b, 0x4d, 0x89, 0xee, 0x9b, 0x28, 0x5d, 0x8a, 0x5c, 0x8e, - 0x90, 0xb8, 0x48, 0xb0, 0xce, 0x12, 0xad, 0xab, 0x84, 0xeb, 0x3c, 0xf1, 0x3a, 0x4f, 0xc0, 0x2e, - 0x13, 0xb1, 0x1b, 0x84, 0xec, 0x08, 0x31, 0xbb, 0x17, 0x69, 0x99, 0xd5, 0x8f, 0x4e, 0x36, 0x94, - 0xa1, 0x57, 0xd1, 0x43, 0xbf, 0x1c, 0xce, 0xf8, 0x75, 0xba, 0x61, 0x0c, 0xad, 0x8a, 0x8a, 0x63, - 0x71, 0x33, 0x96, 0xe7, 0x7c, 0x43, 0x18, 0x0f, 0x1a, 0xc1, 0x78, 0xd2, 0x00, 0xc6, 0x83, 0xba, - 0x62, 0x9f, 0x1a, 0xbe, 0x78, 0xd6, 0x5c, 0xc2, 0xbb, 0x06, 0x2f, 0x3e, 0xf6, 0x91, 0xf0, 0xa0, - 0xa1, 0x8b, 0x57, 0x8d, 0x5c, 0xbc, 0xdd, 0x63, 0x3e, 0x35, 0x6e, 0xf1, 0x72, 0xa3, 0xd1, 0x15, - 0xe1, 0x49, 0x5f, 0x74, 0x45, 0x28, 0x96, 0xfb, 0xee, 0x47, 0x03, 0x16, 0x1f, 0x1a, 0xaf, 0x38, - 0xde, 0x70, 0x85, 0xea, 0x72, 0xaf, 0x20, 0x84, 0x7b, 0x62, 0xe7, 0xc6, 0x0a, 0xee, 0x89, 0x7d, - 0xc2, 0x04, 0x69, 0x98, 0x42, 0xc3, 0x14, 0x67, 0x21, 0x9a, 0x2e, 0x08, 0x8e, 0xad, 0x87, 0x0b, - 0x77, 0x71, 0x9d, 0xa6, 0x9d, 0x5e, 0xd7, 0xbd, 0xac, 0x97, 0xe1, 0xb4, 0xdc, 0xbb, 0xd7, 0xb5, - 0x1d, 0xc6, 0x19, 0x17, 0xbb, 0xde, 0x3d, 0x1d, 0x72, 0x6f, 0x1e, 0x61, 0xe0, 0xe4, 0xde, 0x3c, - 0xd4, 0xc8, 0xc9, 0xbd, 0x99, 0x73, 0x82, 0xe4, 0xde, 0xf8, 0x21, 0x5e, 0xb9, 0xd8, 0xf5, 0x29, - 0x3a, 0x95, 0x8b, 0x5d, 0xdd, 0x71, 0x26, 0x9d, 0xe9, 0x06, 0x34, 0x63, 0xc0, 0x8e, 0x74, 0x05, - 0xc2, 0x75, 0xc3, 0x75, 0xc3, 0x75, 0xc3, 0x75, 0xc3, 0x75, 0xc3, 0x75, 0x13, 0x42, 0xab, 0xa8, - 0xeb, 0xe0, 0x69, 0x03, 0x59, 0xd3, 0x0f, 0xfd, 0x72, 0xfb, 0x24, 0x6b, 0x83, 0x93, 0xac, 0x27, - 0xfa, 0x37, 0xae, 0x9f, 0x64, 0x0d, 0x0f, 0xb2, 0x8e, 0x7f, 0x7c, 0x5e, 0x0f, 0x76, 0x8e, 0x87, - 0xdf, 0xae, 0x0f, 0xfe, 0x1a, 0x7e, 0x5f, 0xf9, 0xbc, 0x16, 0x6c, 0x8c, 0xbf, 0xdf, 0xfc, 0xbc, - 0x16, 0x6c, 0x1e, 0xaf, 0x7c, 0xf9, 0xb2, 0xba, 0xf2, 0xfd, 0xc5, 0xd5, 0xe3, 0x7f, 0x71, 0xf9, - 0xef, 0x9f, 0xbf, 0x7c, 0xe9, 0x7e, 0x7f, 0x77, 0xd5, 0xff, 0x73, 0xef, 0xea, 0xf8, 0x9f, 0x2b, - 0xbf, 0x70, 0x98, 0xe3, 0x05, 0xef, 0xf9, 0x81, 0x52, 0x9c, 0xb7, 0x17, 0x17, 0xa5, 0x5e, 0x4d, - 0x1d, 0x21, 0xaf, 0x3d, 0xdf, 0xb8, 0x5a, 0x79, 0xb5, 0xb2, 0x7c, 0xfb, 0x67, 0xaf, 0x56, 0xbe, - 0xaf, 0x3d, 0xdf, 0xbc, 0x5a, 0x5e, 0xbe, 0xe3, 0xbf, 0xfc, 0x72, 0xd7, 0x33, 0x56, 0x7e, 0x2c, - 0x2f, 0x2f, 0x8f, 0xf0, 0x69, 0x0a, 0xb3, 0x3e, 0xaf, 0xad, 0x1f, 0xff, 0x32, 0xf8, 0x76, 0xf8, - 0xe7, 0x04, 0xf5, 0x1e, 0xf4, 0x8f, 0x57, 0xee, 0xc4, 0xba, 0xe7, 0xce, 0x52, 0xc0, 0x1f, 0xaf, - 0x8e, 0xff, 0xf9, 0x6a, 0xe5, 0xfb, 0xd6, 0xd5, 0xf8, 0xfb, 0xc1, 0x9f, 0x2b, 0x3f, 0x96, 0x57, - 0xff, 0xf1, 0xe5, 0xcb, 0xea, 0xea, 0x3f, 0x56, 0x86, 0x0b, 0x35, 0xfa, 0x77, 0xff, 0x18, 0xfe, - 0xd7, 0x5f, 0x5e, 0xbd, 0x9a, 0xf9, 0xd1, 0xca, 0xf2, 0xdf, 0x57, 0x81, 0x75, 0x4f, 0x44, 0xd5, - 0x12, 0x67, 0xf4, 0x2e, 0x11, 0x6d, 0xa9, 0x9b, 0x76, 0x72, 0x35, 0x48, 0x11, 0x0f, 0x54, 0x1c, - 0x9d, 0x46, 0x27, 0xb1, 0x72, 0x2f, 0xc2, 0x7a, 0xd7, 0x24, 0xdd, 0x3b, 0xbf, 0xcf, 0xd3, 0x1e, - 0xc7, 0xf7, 0x77, 0x4f, 0x87, 0x18, 0xf0, 0x23, 0xac, 0x9d, 0x18, 0xf0, 0x43, 0x8d, 0x9c, 0x18, - 0xf0, 0x9c, 0x13, 0x24, 0x06, 0xec, 0x87, 0x16, 0xe6, 0xf8, 0xfe, 0x29, 0xb2, 0x97, 0xe3, 0x7b, - 0x77, 0xfc, 0x4c, 0x47, 0x7a, 0xbf, 0xcf, 0x98, 0xaf, 0x13, 0x3d, 0xe0, 0x71, 0xdb, 0x70, 0xdb, - 0x70, 0xdb, 0x70, 0xdb, 0x70, 0xdb, 0x70, 0xdb, 0x84, 0xd0, 0xaa, 0x97, 0xb8, 0x55, 0x57, 0xcc, - 0xa9, 0xfd, 0x43, 0xbf, 0x1c, 0x3e, 0x0f, 0x73, 0xb3, 0x8d, 0x9e, 0xcb, 0x26, 0xe6, 0xb6, 0xa9, - 0xb9, 0x6b, 0x72, 0x33, 0xa6, 0xe7, 0x74, 0x9b, 0x3d, 0x1f, 0x2c, 0xd0, 0x0f, 0x4b, 0x74, 0xdf, - 0x22, 0x67, 0x99, 0xd6, 0xf5, 0x36, 0x7c, 0xb7, 0xad, 0x73, 0xdb, 0x83, 0xa9, 0xfa, 0xd1, 0x96, - 0xcf, 0x1f, 0x6b, 0x9d, 0x2c, 0xac, 0x4f, 0x6d, 0xfa, 0x1c, 0x0d, 0x9b, 0x3c, 0x78, 0xda, 0xbe, - 0xb5, 0xed, 0x9b, 0x4c, 0xdc, 0xc3, 0xae, 0x62, 0x8e, 0x29, 0xc3, 0x87, 0xed, 0x45, 0x8f, 0xda, - 0xf9, 0x15, 0x66, 0x2f, 0xfa, 0xd4, 0xde, 0xaf, 0x10, 0x1b, 0xf2, 0x19, 0xb3, 0xd4, 0xf1, 0x75, - 0xfc, 0x0c, 0xd8, 0x5d, 0x04, 0x39, 0xe1, 0x47, 0x5b, 0xc0, 0x19, 0xc5, 0xbb, 0xe1, 0xc1, 0x5c, - 0xdd, 0x6e, 0x13, 0xe8, 0x3e, 0x14, 0xd1, 0x81, 0xb4, 0x10, 0x90, 0xe3, 0x4b, 0x79, 0xc3, 0x0c, - 0xc6, 0xbc, 0x74, 0x78, 0x8e, 0xae, 0x97, 0x3b, 0x4c, 0x26, 0x4a, 0x9b, 0x41, 0xda, 0x0c, 0x7a, - 0x03, 0xed, 0x94, 0x7c, 0xf8, 0x44, 0x7d, 0x0e, 0x9f, 0x5c, 0xba, 0xed, 0x55, 0xbb, 0xec, 0x45, - 0x3b, 0xea, 0x35, 0x53, 0xed, 0xe4, 0xda, 0x7a, 0x2c, 0xf6, 0xe5, 0xc4, 0xd5, 0x24, 0xe9, 0xe4, - 0x43, 0x7c, 0x71, 0xe2, 0x8e, 0xe2, 0xac, 0x79, 0xa6, 0xce, 0xc3, 0x6e, 0x98, 0x9f, 0xf5, 0xe1, - 0xaf, 0xdc, 0xe9, 0xaa, 0xa4, 0x39, 0xc8, 0xf6, 0x0c, 0x12, 0x95, 0xff, 0xd9, 0x49, 0xbf, 0x06, - 0x51, 0x92, 0xe5, 0x61, 0xd2, 0x54, 0xe5, 0xdb, 0x3f, 0xc8, 0x66, 0x7e, 0x52, 0xee, 0xa6, 0x9d, - 0xbc, 0xd3, 0xec, 0xc4, 0xd9, 0xe4, 0xbb, 0x72, 0x94, 0x45, 0x59, 0x39, 0x4a, 0x72, 0x95, 0xb6, - 0xc3, 0xfe, 0xef, 0x4c, 0xbe, 0x2d, 0xc7, 0xea, 0x42, 0xc5, 0xd9, 0xf0, 0xaf, 0x72, 0xd8, 0x8e, - 0x82, 0x2c, 0x6c, 0x47, 0xe5, 0xb0, 0x5d, 0xce, 0xd4, 0xe9, 0xb9, 0x4a, 0xf2, 0x20, 0xed, 0xf4, - 0xf2, 0x28, 0x39, 0x2d, 0x87, 0xad, 0xff, 0x86, 0x4d, 0x95, 0x34, 0x2f, 0x83, 0x2c, 0x6a, 0x65, - 0xd3, 0xff, 0xb7, 0x3c, 0xbc, 0xf2, 0xff, 0xd9, 0x62, 0x5a, 0xb4, 0x9d, 0x91, 0x2d, 0xed, 0xa1, - 0xd2, 0xef, 0xea, 0xf2, 0x66, 0x9f, 0xb5, 0x25, 0xab, 0x39, 0xdb, 0xa5, 0xbd, 0x28, 0xcb, 0xab, - 0x79, 0x6e, 0xb7, 0x11, 0x5d, 0x69, 0x3f, 0x4a, 0x6a, 0xb1, 0xea, 0x6f, 0x97, 0xac, 0xf4, 0x6a, - 0x29, 0xe9, 0xc5, 0xf1, 0x73, 0x8b, 0x93, 0x09, 0xbf, 0xb9, 0x33, 0x99, 0xf7, 0x69, 0x4b, 0xa5, - 0xaa, 0xf5, 0xfa, 0x72, 0x34, 0x95, 0x85, 0xda, 0x2a, 0x8e, 0xd0, 0x8c, 0xf7, 0xf4, 0x62, 0x51, - 0x04, 0x94, 0xb2, 0x3c, 0xed, 0x35, 0xf3, 0x64, 0xa4, 0x4c, 0xde, 0x0d, 0x17, 0xa3, 0x3e, 0x5a, - 0x8b, 0xc6, 0xc1, 0x68, 0x05, 0x1a, 0xf5, 0x2c, 0xca, 0x1a, 0xf5, 0xf1, 0xc7, 0x6e, 0xec, 0xf5, - 0x3f, 0x6f, 0xa3, 0xda, 0x6e, 0x7c, 0x18, 0x7e, 0xcc, 0xc3, 0xe1, 0xa7, 0x6c, 0x54, 0xc7, 0x1f, - 0xeb, 0x43, 0xd4, 0xb2, 0x43, 0x97, 0xf2, 0x64, 0x25, 0x3b, 0xa2, 0xf0, 0x5e, 0xb7, 0xbd, 0xc7, - 0x3d, 0xdc, 0xdb, 0xb2, 0x76, 0x2f, 0x67, 0x7d, 0x82, 0x96, 0x37, 0x2a, 0xd5, 0x19, 0x2e, 0xa7, - 0xb4, 0xd9, 0xdd, 0x68, 0x04, 0x71, 0x3d, 0x09, 0xe1, 0x5d, 0x37, 0x0e, 0xc1, 0x08, 0x0f, 0x6b, - 0xab, 0x04, 0xcf, 0x66, 0xa9, 0x9d, 0xf5, 0x92, 0x3a, 0xdb, 0xa5, 0x73, 0xce, 0x94, 0xc8, 0x39, - 0x53, 0x0a, 0xe7, 0x42, 0xc9, 0x5b, 0xb1, 0xbd, 0x8a, 0xdd, 0xc8, 0x8e, 0xa2, 0xbd, 0x81, 0xe9, - 0xf6, 0xf6, 0xdb, 0x2c, 0xbf, 0xd8, 0xda, 0x70, 0x76, 0x68, 0xc6, 0x3a, 0xdd, 0xb8, 0x40, 0x3b, - 0xce, 0xd0, 0x8f, 0x2b, 0x34, 0xe4, 0x1c, 0x1d, 0x39, 0x47, 0x4b, 0x2e, 0xd1, 0x93, 0x3d, 0xb9, - 0x6d, 0x33, 0xe0, 0x65, 0x8b, 0xb6, 0x26, 0x13, 0x68, 0x8e, 0x11, 0xd3, 0xf2, 0x1e, 0x1d, 0x83, - 0xd6, 0x68, 0x3e, 0x96, 0xf7, 0x83, 0x5d, 0x1a, 0x73, 0x86, 0xce, 0x5c, 0xa2, 0x35, 0xe7, 0xe8, - 0xcd, 0x35, 0x9a, 0x73, 0x96, 0xee, 0x9c, 0xa5, 0x3d, 0x17, 0xe9, 0xcf, 0x2e, 0x0d, 0x5a, 0xa6, - 0x43, 0x67, 0x68, 0x71, 0x32, 0x91, 0x41, 0x49, 0x7e, 0xd0, 0xe9, 0xe6, 0x51, 0x27, 0xc9, 0xdc, - 0x6b, 0xff, 0x35, 0x3d, 0x3d, 0xba, 0x80, 0xb9, 0x4c, 0xa2, 0x2e, 0x92, 0xa9, 0xb3, 0xa4, 0xea, - 0x2a, 0xb9, 0x3a, 0x4f, 0xb2, 0xce, 0x93, 0xad, 0xcb, 0xa4, 0xeb, 0x06, 0xf9, 0x3a, 0x42, 0xc2, - 0x93, 0x17, 0xe5, 0x6e, 0x17, 0x30, 0x37, 0xd3, 0x9e, 0x5d, 0x4c, 0x77, 0x76, 0x2c, 0xcd, 0x99, - 0xa6, 0xb2, 0xd7, 0x47, 0x07, 0x2e, 0xde, 0x57, 0xe0, 0x92, 0x6a, 0xc4, 0x9d, 0xc4, 0x9d, 0xc4, - 0x9d, 0xc4, 0x9d, 0xc4, 0x9d, 0xc4, 0x9d, 0x34, 0x8b, 0x56, 0x51, 0x37, 0x70, 0x6e, 0xf3, 0xd1, - 0x58, 0xf6, 0xa1, 0x5f, 0xae, 0x5f, 0x07, 0xeb, 0x24, 0xae, 0x2f, 0x71, 0xcf, 0xe2, 0x9c, 0x13, - 0x94, 0xbc, 0x0d, 0xb6, 0x3c, 0x1a, 0x6c, 0xe5, 0xc7, 0xf2, 0xe7, 0xf5, 0xa0, 0x72, 0x3c, 0xfe, - 0x3f, 0x2f, 0x3e, 0xaf, 0x05, 0x95, 0xe3, 0x95, 0x15, 0xee, 0x10, 0xf4, 0x82, 0x02, 0xfd, 0x40, - 0xac, 0x2d, 0x10, 0xab, 0xa8, 0x88, 0xe5, 0xdd, 0xcd, 0xb0, 0x37, 0x81, 0xaf, 0xff, 0xf7, 0xf7, - 0xca, 0xd5, 0xca, 0x8f, 0xe5, 0x3e, 0x5c, 0xae, 0x4f, 0x40, 0x70, 0xbd, 0xff, 0x90, 0x97, 0xfd, - 0x7f, 0xbe, 0x18, 0xb7, 0xc6, 0x96, 0x57, 0xff, 0x09, 0xe0, 0x7b, 0xa1, 0xbc, 0x96, 0x68, 0xa3, - 0xe0, 0x12, 0x05, 0x73, 0x99, 0xd7, 0x63, 0x38, 0x96, 0xb8, 0xeb, 0x7d, 0x3c, 0x4f, 0xdc, 0xf5, - 0xe1, 0x13, 0x23, 0xee, 0xfa, 0xc4, 0x09, 0x12, 0x77, 0xf5, 0x9d, 0xfd, 0x89, 0xbb, 0xfe, 0x94, - 0xf7, 0x9c, 0xbc, 0x77, 0x89, 0xc8, 0x6b, 0x01, 0xe2, 0x18, 0x4e, 0xdf, 0xab, 0xc4, 0x8d, 0x5e, - 0xc5, 0xb1, 0xb8, 0x19, 0xcb, 0x73, 0xfe, 0xde, 0x24, 0x0f, 0xee, 0x4b, 0xf2, 0xe4, 0x9e, 0x24, - 0x0f, 0xda, 0xef, 0xfb, 0x74, 0x2f, 0x92, 0x67, 0x77, 0xb0, 0x78, 0x77, 0x0f, 0x92, 0x8f, 0xd7, - 0xad, 0x78, 0x70, 0xef, 0x91, 0x57, 0xf7, 0x1d, 0x79, 0xbb, 0xc7, 0x7c, 0xba, 0xdf, 0xc8, 0xcb, - 0x8d, 0xc6, 0xe5, 0x21, 0x4f, 0xfa, 0xe2, 0xf2, 0x90, 0x62, 0xb9, 0xef, 0x7e, 0xdc, 0x53, 0xe4, - 0xc3, 0xfd, 0x44, 0x8e, 0xdf, 0x4b, 0xc4, 0x25, 0x0c, 0x5e, 0x41, 0x88, 0xeb, 0x39, 0x33, 0xee, - 0xde, 0x37, 0x44, 0xd2, 0xcc, 0x3c, 0x13, 0xe4, 0x5e, 0x21, 0xee, 0x15, 0x72, 0x16, 0xa2, 0xc9, - 0x72, 0x71, 0x6c, 0x3d, 0xb8, 0x2c, 0x84, 0xcb, 0x42, 0x1e, 0xd7, 0xf1, 0xf9, 0x46, 0x6b, 0xe0, - 0x1b, 0xdf, 0x97, 0x47, 0xed, 0xb0, 0x16, 0xf5, 0x9e, 0x10, 0x8b, 0xcd, 0x0b, 0x1d, 0x29, 0xce, - 0x75, 0xab, 0x28, 0xd7, 0x91, 0xb0, 0x21, 0x8d, 0xd1, 0xfe, 0xca, 0x52, 0x68, 0x8c, 0x76, 0x9f, - 0xf1, 0xd2, 0x18, 0xed, 0xb1, 0x4c, 0x4e, 0x63, 0x34, 0xb7, 0x5c, 0x2b, 0x67, 0x92, 0xb8, 0xae, - 0x5b, 0x90, 0xa9, 0xb0, 0x9d, 0xaa, 0xb6, 0x0b, 0x78, 0x33, 0x0e, 0x70, 0x38, 0x90, 0xd1, 0x50, - 0x3a, 0x18, 0x79, 0x9b, 0xab, 0xab, 0x23, 0x1f, 0x6e, 0xe4, 0xd5, 0xe1, 0xca, 0x59, 0xf0, 0xff, - 0x07, 0x77, 0xed, 0x39, 0xe3, 0xc9, 0x0d, 0xa7, 0x43, 0x87, 0xdb, 0x29, 0x47, 0xae, 0x82, 0x23, - 0x87, 0x23, 0x87, 0x23, 0x87, 0x23, 0xb7, 0x20, 0x8e, 0x1c, 0x1d, 0x6e, 0x1f, 0xe8, 0x5e, 0xd2, - 0xe1, 0xd6, 0x9b, 0x68, 0x88, 0x8b, 0x64, 0xea, 0x2c, 0xa9, 0xba, 0x4a, 0xae, 0xce, 0x93, 0xac, - 0xf3, 0x64, 0xeb, 0x32, 0xe9, 0xba, 0x41, 0xbe, 0x8e, 0x90, 0xb0, 0x7b, 0x51, 0x95, 0x19, 0xb4, - 0xa2, 0xc3, 0xed, 0x83, 0xe7, 0x44, 0x87, 0x5b, 0xe7, 0x36, 0x17, 0x1d, 0x6e, 0x71, 0x27, 0x71, - 0x27, 0x71, 0x27, 0x71, 0x27, 0x71, 0x27, 0x71, 0x27, 0x1d, 0x40, 0x2b, 0x3a, 0xdc, 0x3e, 0xee, - 0x15, 0xd2, 0x67, 0xe1, 0xc1, 0x86, 0x45, 0x87, 0xdb, 0xa7, 0x7a, 0x37, 0x74, 0xb8, 0xa5, 0xc3, - 0x6d, 0xc1, 0x28, 0xd0, 0x0f, 0xc4, 0xa2, 0xc3, 0x6d, 0x61, 0x11, 0x8b, 0x0e, 0xb7, 0xb6, 0xa8, - 0x82, 0x0e, 0xb7, 0x0b, 0xa8, 0xbc, 0x96, 0xa8, 0xfd, 0x71, 0x89, 0x82, 0xe9, 0x70, 0xfb, 0x18, - 0x8e, 0x25, 0xee, 0x7a, 0x1f, 0xcf, 0x13, 0x77, 0x7d, 0xf8, 0xc4, 0x88, 0xbb, 0x3e, 0x71, 0x82, - 0xc4, 0x5d, 0x7d, 0x67, 0x7f, 0xe2, 0xae, 0x3f, 0xe5, 0x3d, 0x3a, 0xdc, 0x3e, 0xf2, 0x25, 0x12, - 0x79, 0x7d, 0xa0, 0x69, 0xd1, 0xe1, 0xb6, 0x50, 0x96, 0xe6, 0xae, 0xc5, 0xcd, 0x58, 0x1e, 0x1d, - 0x6e, 0x35, 0x4c, 0x91, 0x0e, 0xb7, 0x9a, 0x16, 0x92, 0x0e, 0xb7, 0xe6, 0xa6, 0x4b, 0x87, 0xdb, - 0x85, 0x71, 0xa2, 0xff, 0x7a, 0x8f, 0xd1, 0xe1, 0xd6, 0xfc, 0x1e, 0xa3, 0xc3, 0xed, 0x22, 0x68, - 0x66, 0xff, 0x66, 0x47, 0x87, 0xdb, 0x62, 0xb9, 0xef, 0x74, 0xb8, 0xd5, 0x36, 0x47, 0x3a, 0xdc, - 0xfa, 0x0c, 0x25, 0xe4, 0xcc, 0x3c, 0x14, 0x32, 0xe8, 0x70, 0xfb, 0xf4, 0xb9, 0xd1, 0xe1, 0x96, - 0x0e, 0xb7, 0x74, 0xb8, 0xf5, 0x9e, 0xc2, 0xc8, 0x72, 0x71, 0x61, 0x06, 0x74, 0xb8, 0x9d, 0x9e, - 0x8f, 0xc7, 0x1d, 0x6e, 0x87, 0xdd, 0xb0, 0x16, 0xb5, 0x2b, 0xda, 0xb3, 0x05, 0xda, 0x3d, 0xa5, - 0xdf, 0xd5, 0xa5, 0xf5, 0x34, 0x94, 0xd2, 0x5e, 0x94, 0xe5, 0xd5, 0x3c, 0xb7, 0xdb, 0x7d, 0xa7, - 0xb4, 0x1f, 0x25, 0xb5, 0x58, 0xf5, 0xf7, 0x47, 0x56, 0x7a, 0xb5, 0x94, 0xf4, 0xe2, 0xd8, 0x62, - 0x7f, 0xbc, 0xfd, 0xf0, 0x9b, 0x3b, 0x93, 0x79, 0x9f, 0xb6, 0x54, 0xaa, 0x5a, 0xaf, 0x2f, 0x47, - 0x53, 0x59, 0xa8, 0x1d, 0xe2, 0x08, 0xaf, 0x78, 0xcc, 0x27, 0x25, 0xab, 0x7d, 0x26, 0xd3, 0x5e, - 0x33, 0x4f, 0x46, 0x62, 0xf9, 0xdd, 0x70, 0x19, 0xea, 0xa3, 0x55, 0x68, 0x1c, 0x8c, 0x3e, 0x7b, - 0xa3, 0x9e, 0x45, 0x59, 0xa3, 0x3e, 0xfe, 0xc0, 0x8d, 0xbd, 0xfe, 0x27, 0x6d, 0x54, 0xdb, 0x8d, - 0x0f, 0xc3, 0x0f, 0x78, 0x38, 0xfc, 0x7c, 0x8d, 0x61, 0xf6, 0xe5, 0x87, 0xa8, 0x65, 0x87, 0x1c, - 0xe5, 0xa9, 0x49, 0x76, 0x44, 0xe1, 0x2d, 0x6e, 0x7b, 0x6b, 0xfb, 0xb6, 0xa5, 0x65, 0x8d, 0x5e, - 0xce, 0xf4, 0x64, 0x46, 0x12, 0x32, 0x6e, 0x5b, 0x46, 0xed, 0x83, 0x31, 0x0b, 0x12, 0x91, 0x5e, - 0xe2, 0x91, 0xd9, 0x79, 0xe6, 0xf7, 0x81, 0xc0, 0x1e, 0x10, 0xee, 0x2c, 0x6d, 0xa5, 0x83, 0xb4, - 0x70, 0xa7, 0x68, 0xf1, 0x8e, 0xd0, 0x36, 0xaa, 0x5c, 0x6e, 0x56, 0xb1, 0xf4, 0x91, 0x46, 0x12, - 0x2b, 0x2c, 0xd5, 0xa9, 0x58, 0xaf, 0x43, 0xb1, 0x5e, 0x67, 0x72, 0xbb, 0x8e, 0x64, 0xf0, 0xe2, - 0xf1, 0x3b, 0x9e, 0xb4, 0x94, 0xd2, 0xdd, 0x93, 0x4b, 0x7d, 0xa2, 0x1f, 0xf1, 0xab, 0xf0, 0xbe, - 0x19, 0x43, 0xc5, 0x64, 0x06, 0xc2, 0x56, 0x6b, 0x27, 0x8d, 0xce, 0x5a, 0x31, 0xa4, 0xcd, 0xa2, - 0x47, 0x8b, 0xb4, 0x60, 0x9b, 0x1e, 0x9c, 0xa1, 0x09, 0x67, 0xe8, 0xc2, 0x0d, 0xda, 0x58, 0x8c, - 0xd8, 0x8c, 0xb5, 0xc2, 0xc1, 0xeb, 0xcc, 0x9a, 0x96, 0x4a, 0xf2, 0x28, 0xbf, 0xb4, 0x73, 0x93, - 0xd2, 0xc4, 0xc7, 0xb7, 0x90, 0x76, 0x5c, 0xaa, 0x8f, 0x3e, 0xfa, 0xeb, 0x30, 0xb3, 0x88, 0x3b, - 0xe3, 0x17, 0x51, 0x7d, 0x5b, 0x6f, 0x1c, 0xfd, 0xe7, 0xa0, 0x66, 0x0b, 0x76, 0x06, 0x69, 0xe0, - 0x99, 0xd5, 0x2c, 0x21, 0x47, 0xae, 0x49, 0xaa, 0x1f, 0x7c, 0xda, 0x28, 0x2d, 0xe2, 0x7d, 0x55, - 0xee, 0xac, 0xff, 0x56, 0x69, 0xc1, 0x4e, 0xc6, 0x8f, 0x8b, 0x4e, 0xac, 0xcf, 0x0a, 0xb8, 0x7f, - 0x4a, 0x2a, 0x09, 0x4f, 0x62, 0xd5, 0xb2, 0xa7, 0xcd, 0xc6, 0x13, 0x40, 0x9a, 0x21, 0xcd, 0x90, - 0x66, 0x48, 0x33, 0xa4, 0x59, 0x81, 0xa4, 0xd9, 0x49, 0xa7, 0x13, 0xab, 0x30, 0xb1, 0x29, 0xcb, - 0xd6, 0x71, 0x12, 0xe6, 0x5e, 0xcb, 0x73, 0x95, 0xa7, 0x51, 0xd3, 0x9e, 0x8f, 0x30, 0x1a, 0x5f, - 0x78, 0xfb, 0xec, 0xaa, 0x76, 0xd8, 0x8b, 0x07, 0x00, 0xb5, 0xbe, 0x86, 0x7f, 0x82, 0x7f, 0x82, - 0x7f, 0x82, 0x7f, 0x82, 0x7f, 0x52, 0x24, 0xff, 0xc4, 0x5a, 0x1b, 0x26, 0x8b, 0xed, 0x95, 0x2c, - 0xb7, 0x4d, 0xb2, 0x5b, 0x38, 0x60, 0xff, 0x26, 0x7b, 0x37, 0x5a, 0xab, 0x4c, 0x5a, 0xa6, 0xd8, - 0x9e, 0x87, 0x43, 0x4d, 0x50, 0xae, 0xec, 0x96, 0x91, 0x60, 0x9a, 0xb7, 0x4c, 0x73, 0xa3, 0xb2, - 0xb3, 0xb1, 0xb3, 0xb5, 0x5d, 0xd9, 0xd9, 0xc4, 0x46, 0xed, 0x38, 0x04, 0xf6, 0x46, 0x3d, 0x46, - 0xb5, 0xcf, 0x6d, 0xb6, 0x99, 0xfd, 0xc4, 0xab, 0x8c, 0xcc, 0x2b, 0xe4, 0x33, 0xf2, 0x19, 0xf9, - 0x8c, 0x7c, 0x2e, 0xa2, 0x7c, 0x26, 0xf3, 0xca, 0x91, 0xcc, 0xab, 0x0f, 0xa4, 0x5e, 0xb9, 0x92, - 0xfa, 0xf3, 0xf1, 0x5d, 0xfd, 0x4d, 0xf5, 0xc3, 0x11, 0xd9, 0x57, 0xf6, 0x5e, 0xc1, 0xfe, 0xc7, - 0xbd, 0x23, 0xdb, 0x2f, 0x81, 0x14, 0x2c, 0xbf, 0x75, 0x1a, 0xa5, 0xc6, 0x3a, 0x14, 0xa8, 0x8b, - 0xa5, 0xc6, 0x72, 0x3d, 0x93, 0x04, 0xea, 0x74, 0x9f, 0x79, 0x6c, 0x9e, 0xe3, 0x9e, 0x46, 0xe3, - 0x18, 0xc1, 0x92, 0x54, 0xb4, 0x40, 0xb6, 0x8f, 0x91, 0x95, 0x7e, 0x45, 0x56, 0xfa, 0x12, 0xc9, - 0xf6, 0x1f, 0x32, 0x6d, 0x9d, 0xc2, 0xa0, 0xe9, 0x22, 0x58, 0x96, 0x44, 0xda, 0x00, 0xcc, 0xd3, - 0x7f, 0xc1, 0x2c, 0x90, 0x9b, 0x83, 0x57, 0x33, 0x4f, 0x36, 0xb4, 0x25, 0xa4, 0xb6, 0x82, 0x73, - 0x5b, 0xc0, 0x8c, 0x75, 0xe9, 0x7f, 0xf7, 0x06, 0xde, 0x7b, 0xa9, 0x39, 0x0e, 0x65, 0x9b, 0x79, - 0xdf, 0x13, 0xb1, 0x36, 0x1a, 0xc7, 0x90, 0xe5, 0x9a, 0x6d, 0xc0, 0x61, 0x3c, 0xde, 0x2f, 0x11, - 0xd7, 0x17, 0x8c, 0xdf, 0x4b, 0xc5, 0xe9, 0xc5, 0xe3, 0xf1, 0xe2, 0x71, 0x77, 0xd9, 0xf8, 0xba, - 0x5f, 0x6c, 0x65, 0xba, 0xc1, 0x85, 0x58, 0xcd, 0x94, 0x70, 0x8d, 0xd4, 0xcd, 0x84, 0xe7, 0x76, - 0x18, 0x67, 0xc6, 0x65, 0x98, 0xcc, 0x21, 0xad, 0xd8, 0xa1, 0xac, 0xe4, 0x21, 0xac, 0x85, 0x43, - 0x57, 0xe9, 0x43, 0x56, 0x6b, 0x87, 0xaa, 0xd6, 0x0e, 0x51, 0xed, 0x1c, 0x9a, 0xfa, 0x1d, 0x43, - 0x12, 0x3b, 0x04, 0xb5, 0x50, 0xd3, 0x24, 0x54, 0xc3, 0x64, 0x50, 0xe5, 0x1a, 0x74, 0x25, 0x07, - 0x4a, 0x2d, 0x48, 0x7a, 0xe7, 0x27, 0x2a, 0x95, 0x63, 0xe2, 0xa9, 0x51, 0xa1, 0x47, 0xe8, 0x11, - 0x7a, 0x84, 0x1e, 0xa1, 0x47, 0x3b, 0x08, 0x79, 0x13, 0x25, 0x05, 0x72, 0x80, 0x84, 0x0b, 0x67, - 0x04, 0xcf, 0x69, 0x6d, 0x14, 0xc6, 0xd8, 0x4a, 0xd1, 0x9d, 0xdc, 0x15, 0x2c, 0x3c, 0xae, 0xc5, - 0x22, 0x02, 0xc9, 0xa4, 0x73, 0x1b, 0x85, 0x2c, 0xb6, 0x4d, 0xa9, 0xb2, 0x40, 0xa6, 0x54, 0x90, - 0xc4, 0x89, 0x63, 0x14, 0xd5, 0x8c, 0x59, 0x75, 0xc3, 0x2c, 0x8b, 0x2e, 0x94, 0x9c, 0x98, 0x1a, - 0x0f, 0x48, 0x58, 0x13, 0xdd, 0x86, 0x6e, 0x43, 0xb7, 0xa1, 0xdb, 0x2c, 0xea, 0x36, 0xc2, 0x9a, - 0x6e, 0x90, 0x70, 0x1a, 0x75, 0xd2, 0x28, 0xbf, 0x14, 0x64, 0xe1, 0xf1, 0x88, 0xd0, 0x22, 0xb4, - 0x08, 0x2d, 0x42, 0x8b, 0xd0, 0xe2, 0xad, 0x0e, 0x41, 0x2f, 0x89, 0x63, 0xce, 0xf1, 0x45, 0x1c, - 0xd3, 0x68, 0xf0, 0x69, 0x8d, 0x38, 0xa6, 0x11, 0x53, 0x5a, 0xc0, 0x38, 0xe6, 0x7a, 0x65, 0x9b, - 0x48, 0xa6, 0x6f, 0xa3, 0x1c, 0x53, 0x01, 0x61, 0x1e, 0x22, 0x16, 0xae, 0x02, 0x62, 0x94, 0x95, - 0xbf, 0xc0, 0xf5, 0x0f, 0x67, 0x2a, 0x8e, 0x3b, 0x41, 0xd8, 0xcb, 0xcf, 0x54, 0x92, 0x47, 0x4d, - 0xb3, 0xef, 0x7e, 0xe2, 0x6e, 0xde, 0x39, 0x2a, 0xb5, 0x11, 0xb6, 0x04, 0x38, 0xb5, 0x11, 0x1e, - 0x0a, 0x6c, 0x6a, 0x23, 0xee, 0x5f, 0x1a, 0xe3, 0xb5, 0x11, 0x86, 0xcb, 0xc6, 0x66, 0x36, 0xa6, - 0xd1, 0xf2, 0x31, 0x21, 0xa8, 0x14, 0x83, 0x4c, 0x49, 0xe8, 0xb4, 0x00, 0xa1, 0xd2, 0x50, 0x6a, - 0x0d, 0x52, 0xad, 0x41, 0xab, 0x1d, 0x88, 0x95, 0x11, 0x53, 0xa6, 0x63, 0x97, 0x52, 0xf7, 0x2e, - 0xcb, 0x7a, 0xae, 0x2e, 0x78, 0xb2, 0xb3, 0x4b, 0x2d, 0x9b, 0xf1, 0x61, 0x29, 0x7e, 0x23, 0xde, - 0x6d, 0x94, 0xeb, 0xfe, 0x97, 0x0a, 0x4d, 0x27, 0xd6, 0x69, 0xc5, 0x2e, 0xbd, 0xc8, 0xd0, 0x8c, - 0x10, 0xdd, 0x4c, 0x96, 0x52, 0xbc, 0x4b, 0xa8, 0xc5, 0xcb, 0xbf, 0x84, 0x2f, 0xfd, 0xa2, 0xbf, - 0xd7, 0x4f, 0x76, 0xf1, 0x82, 0x76, 0x50, 0xba, 0xcb, 0xf5, 0x31, 0x1a, 0x51, 0x35, 0x6f, 0x2e, - 0x26, 0x53, 0x9e, 0xbe, 0x2a, 0xc1, 0x6c, 0xa7, 0xfe, 0x60, 0x04, 0x0b, 0x08, 0x16, 0x10, 0x2c, - 0x20, 0x58, 0x40, 0xb0, 0x40, 0x2c, 0x5e, 0x3b, 0xb3, 0xc1, 0x45, 0xe2, 0xb6, 0xc2, 0x90, 0x8c, - 0x30, 0x47, 0x98, 0x23, 0xcc, 0x11, 0xe6, 0x6e, 0x41, 0xfc, 0x64, 0xc0, 0xbe, 0x20, 0x09, 0xba, - 0x61, 0x96, 0x8d, 0x6c, 0xd8, 0xd2, 0x9d, 0x50, 0xd3, 0xd3, 0xe0, 0x5e, 0xa8, 0xa2, 0x11, 0x83, - 0x03, 0x04, 0x61, 0x9b, 0x28, 0x9c, 0x21, 0x0c, 0x67, 0x88, 0xc3, 0x0d, 0x02, 0x91, 0x25, 0x12, - 0x61, 0x42, 0x99, 0x2c, 0xb1, 0xfd, 0x7b, 0xa1, 0xd2, 0x4e, 0x2f, 0x8f, 0x92, 0x53, 0x5b, 0x28, - 0x3f, 0xe5, 0xf2, 0xbf, 0xe4, 0x86, 0x12, 0x0f, 0x9c, 0xa1, 0x45, 0xbf, 0xa1, 0xe4, 0xce, 0x90, - 0xf1, 0x57, 0x75, 0x29, 0x12, 0x36, 0x96, 0x33, 0xa9, 0x2b, 0x91, 0x0b, 0x05, 0xc2, 0x5c, 0xc9, - 0x07, 0x34, 0x86, 0xc3, 0x16, 0x3c, 0x9e, 0x51, 0x21, 0x9e, 0x41, 0x3c, 0x83, 0x78, 0x06, 0x14, - 0x4e, 0x3c, 0x83, 0x78, 0x06, 0xf1, 0x0c, 0xe2, 0x19, 0xc4, 0x33, 0x88, 0x67, 0x10, 0xcf, 0x20, - 0x9e, 0x81, 0x33, 0x44, 0x3c, 0xe3, 0x41, 0xf1, 0x0c, 0xae, 0x5f, 0x75, 0xc5, 0x56, 0x49, 0xcf, - 0xbc, 0x65, 0x9b, 0xae, 0xdf, 0x76, 0xf9, 0x5b, 0x7f, 0xde, 0xd5, 0xa9, 0x69, 0x37, 0x7e, 0x57, - 0x97, 0xa4, 0x94, 0xce, 0x2e, 0xf3, 0x57, 0x75, 0xd9, 0x3c, 0x0b, 0x05, 0xba, 0x01, 0xdd, 0xcc, - 0x2b, 0x1d, 0x8e, 0x48, 0x72, 0xa9, 0xab, 0x82, 0x8e, 0xe4, 0xd2, 0x02, 0x0a, 0x32, 0x92, 0x4b, - 0x21, 0xfe, 0x79, 0x89, 0x5f, 0x02, 0xb8, 0x4d, 0xb1, 0xff, 0x70, 0xee, 0xb8, 0x00, 0x77, 0xac, - 0xb5, 0xc4, 0x31, 0xa0, 0xe8, 0xf1, 0x9f, 0x38, 0xf9, 0x57, 0x20, 0x7f, 0xc8, 0x1f, 0xf2, 0x2f, - 0x14, 0xf9, 0xd3, 0x86, 0x82, 0x36, 0x14, 0x7e, 0x6a, 0x45, 0x1b, 0xb4, 0x61, 0x91, 0x3e, 0x6c, - 0xd1, 0x88, 0x75, 0x3a, 0xb1, 0x4e, 0x2b, 0x76, 0xe9, 0x45, 0x86, 0x66, 0x84, 0xe8, 0x66, 0xb2, - 0x94, 0xb4, 0xa1, 0xf0, 0xd8, 0x50, 0x08, 0x77, 0x14, 0x26, 0xdc, 0x21, 0x70, 0xfe, 0x46, 0xcf, - 0x68, 0x51, 0xbb, 0x73, 0xda, 0xde, 0x4a, 0x46, 0x23, 0x3c, 0x5a, 0xa3, 0x69, 0x8b, 0xdc, 0xec, - 0x5a, 0xe4, 0x32, 0x7d, 0xc9, 0x2b, 0xa2, 0x0d, 0x6b, 0x20, 0x9a, 0x5b, 0xbb, 0xa9, 0x61, 0x68, - 0x6e, 0xbd, 0xc8, 0x84, 0x6b, 0x5c, 0x63, 0xdc, 0x40, 0xb0, 0xb0, 0x9d, 0xaa, 0xb6, 0xc9, 0x1d, - 0x33, 0xd6, 0x10, 0x06, 0xaf, 0x64, 0x29, 0x1d, 0x8c, 0x7c, 0x86, 0xd5, 0xd5, 0x51, 0x9d, 0x59, - 0x79, 0x0a, 0x9a, 0x17, 0x98, 0x10, 0xbb, 0x61, 0xf3, 0xab, 0xca, 0x83, 0x66, 0xa7, 0xd7, 0x77, - 0x1c, 0x32, 0xf3, 0x9c, 0x78, 0x7b, 0x40, 0xee, 0x7c, 0x80, 0x16, 0xa1, 0x45, 0x68, 0x51, 0xc3, - 0xd2, 0x98, 0xbf, 0xf3, 0x21, 0x4b, 0xba, 0x82, 0x37, 0x3e, 0xf4, 0x47, 0x23, 0xcb, 0xce, 0x35, - 0xd8, 0xb4, 0x00, 0x9f, 0xd2, 0x30, 0x6a, 0x0d, 0x4e, 0xad, 0xc1, 0xaa, 0x1d, 0x78, 0x35, 0x0b, - 0xb3, 0x86, 0xe1, 0x56, 0x0c, 0x76, 0x6f, 0xc4, 0xc1, 0x68, 0x78, 0x60, 0x0a, 0x98, 0x69, 0x78, - 0x50, 0x04, 0xc0, 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, 0xcb, 0x00, 0xba, 0x10, 0xb0, - 0x8b, 0x03, 0xfc, 0x64, 0xc0, 0x56, 0xda, 0xe9, 0x76, 0x95, 0xc5, 0x56, 0x07, 0xe3, 0x09, 0xd0, - 0xe4, 0xa0, 0x68, 0x64, 0xe0, 0x00, 0x29, 0xd8, 0x26, 0x07, 0x67, 0x48, 0xc2, 0x19, 0xb2, 0x70, - 0x83, 0x34, 0x64, 0xc9, 0x43, 0x98, 0x44, 0x26, 0x4b, 0x6c, 0xbf, 0xc9, 0xc1, 0x28, 0xf4, 0xfc, - 0xa2, 0x62, 0xb1, 0xbb, 0xc1, 0xb6, 0x85, 0xa1, 0x0f, 0xc3, 0xe4, 0xb4, 0xbf, 0x00, 0x9f, 0xad, - 0xec, 0x2d, 0x3b, 0x18, 0x37, 0xf8, 0xe0, 0xfb, 0x51, 0x62, 0x0d, 0x64, 0x2d, 0x73, 0xfb, 0xcc, - 0x34, 0x3e, 0x85, 0x71, 0x4f, 0x39, 0x30, 0x8f, 0xb7, 0x69, 0xd8, 0xcc, 0xa3, 0x4e, 0xb2, 0x1b, - 0x9d, 0x46, 0x79, 0xd6, 0x9f, 0x90, 0xb5, 0xf9, 0x5c, 0x3d, 0xb7, 0x68, 0x9a, 0xe1, 0x37, 0x4c, - 0xf3, 0x96, 0x69, 0x6e, 0x54, 0x76, 0x36, 0x76, 0xb6, 0xb6, 0x2b, 0x3b, 0x9b, 0xd8, 0xa8, 0x1d, - 0x9f, 0xc0, 0xde, 0xa8, 0xc7, 0x45, 0x6d, 0xfa, 0x23, 0x18, 0x73, 0xea, 0xa6, 0x9d, 0xa6, 0xca, - 0x32, 0x9b, 0xfa, 0xf9, 0x7a, 0x0a, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, - 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, - 0x3b, 0xab, 0xa0, 0x53, 0xd5, 0x54, 0xd1, 0x85, 0x4d, 0x01, 0x3d, 0x99, 0x01, 0xfa, 0x19, 0xfd, + 0x94, 0x43, 0x10, 0xd6, 0xb5, 0x46, 0x5c, 0xc8, 0xa3, 0x3c, 0x41, 0x49, 0xab, 0x0c, 0xc9, 0xe8, + 0x0f, 0x5f, 0x90, 0x8c, 0xb6, 0x32, 0x3f, 0x86, 0x64, 0x64, 0x7a, 0xb8, 0x9f, 0x77, 0x09, 0x48, + 0x46, 0x1b, 0xbb, 0x44, 0x21, 0x5f, 0x29, 0x54, 0x4a, 0xe5, 0x7c, 0x05, 0x42, 0xd1, 0x16, 0x48, + 0x33, 0x7b, 0x10, 0x8a, 0x08, 0x3e, 0x0f, 0x12, 0x42, 0x11, 0xad, 0x04, 0x9f, 0xd6, 0x11, 0x51, + 0x44, 0x83, 0x36, 0x64, 0xa2, 0x75, 0x66, 0x12, 0x64, 0xa2, 0xb5, 0x66, 0x3a, 0x64, 0xa2, 0x0d, + 0x0d, 0x84, 0x4c, 0x64, 0x50, 0xde, 0x40, 0x79, 0x6b, 0xe4, 0xf0, 0xbe, 0x64, 0x93, 0xf3, 0xc1, + 0x78, 0x6b, 0xe4, 0x31, 0xad, 0x56, 0x1e, 0x92, 0xf9, 0x82, 0x9c, 0x5c, 0x64, 0xfd, 0xb7, 0xbf, + 0x7f, 0x7b, 0x68, 0x57, 0x5c, 0xbb, 0x57, 0xb5, 0x3f, 0x37, 0x7f, 0xe5, 0xde, 0x17, 0xc6, 0x27, + 0x07, 0xbf, 0xca, 0xe3, 0xc5, 0x17, 0x9f, 0x96, 0xbd, 0x2d, 0xf7, 0xbe, 0x3c, 0x3e, 0x59, 0xf1, + 0x93, 0xd2, 0xf8, 0xe4, 0x95, 0xbf, 0xa3, 0x38, 0xde, 0x4f, 0xbc, 0x75, 0xf2, 0x7a, 0x7e, 0xd5, + 0x07, 0x0a, 0x2b, 0x3e, 0x70, 0xb4, 0xea, 0x03, 0x47, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, + 0x0f, 0x14, 0xc7, 0x4f, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xb4, 0xea, 0x67, + 0xe5, 0xf1, 0xd3, 0xc9, 0xc1, 0x81, 0xb3, 0x9f, 0xcb, 0xdf, 0x1e, 0xda, 0xc7, 0xcd, 0xa7, 0xdc, + 0xed, 0xa1, 0x9d, 0x6b, 0x4e, 0xde, 0xd9, 0x7c, 0xba, 0xcd, 0xd9, 0x95, 0xd9, 0xe5, 0xe4, 0xff, + 0x07, 0x7f, 0x59, 0x48, 0x8b, 0x90, 0x16, 0x25, 0x1c, 0x37, 0xea, 0xcf, 0xe2, 0x8d, 0x24, 0xa3, + 0x97, 0x1b, 0xbd, 0x34, 0x0e, 0x09, 0x12, 0x12, 0x24, 0x24, 0x48, 0x48, 0x90, 0x90, 0x20, 0x21, + 0x41, 0xda, 0xb1, 0x04, 0xa9, 0xed, 0x79, 0x03, 0xe6, 0x0a, 0x8a, 0xc9, 0x51, 0x0e, 0x54, 0x8e, + 0x80, 0x05, 0xba, 0x0f, 0x41, 0xac, 0x0a, 0xe1, 0x49, 0x57, 0x72, 0x22, 0x2d, 0x08, 0xad, 0xa0, + 0xf3, 0x8d, 0xdd, 0xb9, 0xc3, 0xa8, 0xef, 0xa5, 0xe3, 0x0d, 0x99, 0xe8, 0x4c, 0x89, 0x92, 0x2d, + 0x98, 0xfc, 0xe9, 0xf9, 0x3f, 0x6c, 0x2e, 0x02, 0xe9, 0x8a, 0x0e, 0x73, 0x16, 0x5f, 0x08, 0x12, + 0xaf, 0x38, 0x43, 0xdf, 0x93, 0x5e, 0xc7, 0x1b, 0x04, 0xf1, 0x95, 0xd3, 0xee, 0x0f, 0x1d, 0x9f, + 0xb7, 0x1d, 0xb7, 0xc7, 0xed, 0xc0, 0xed, 0xf1, 0x20, 0xbe, 0x72, 0xa6, 0x6a, 0xc6, 0x48, 0xf0, + 0x8e, 0x1b, 0x48, 0x47, 0x30, 0xde, 0xff, 0xd6, 0xf6, 0xfc, 0x20, 0xbe, 0x72, 0xdc, 0xee, 0xf7, + 0x29, 0x12, 0x78, 0x23, 0x69, 0x0f, 0xbd, 0x40, 0x3a, 0x53, 0x7a, 0x1b, 0x84, 0xdf, 0xc2, 0x3e, + 0x9b, 0x38, 0x65, 0x5a, 0xfd, 0x94, 0x19, 0x89, 0x1f, 0xc2, 0xfb, 0x29, 0x6c, 0x57, 0x4a, 0x9f, + 0xb7, 0x27, 0x23, 0x42, 0xe7, 0xc8, 0xe9, 0x25, 0xb6, 0xe1, 0xfc, 0x69, 0x9c, 0x3f, 0x6d, 0x52, + 0xb6, 0x83, 0xf3, 0xa7, 0x4d, 0xcf, 0x6a, 0x70, 0xfe, 0x34, 0x49, 0xea, 0x45, 0xe6, 0xfc, 0xe9, + 0x04, 0x48, 0xd1, 0x93, 0x13, 0x93, 0x26, 0xd2, 0x12, 0x15, 0x73, 0x10, 0x15, 0xc9, 0xc3, 0x2b, + 0x6d, 0x98, 0xa5, 0x0a, 0xb7, 0xe4, 0x61, 0x97, 0x3c, 0xfc, 0x92, 0x87, 0x61, 0x3a, 0x5a, 0xcc, + 0x1e, 0x21, 0x51, 0x91, 0x0a, 0x3c, 0xc7, 0x06, 0x4d, 0x4f, 0x4b, 0x96, 0xd4, 0xa4, 0xce, 0xb9, + 0x88, 0xfa, 0x6c, 0x22, 0x31, 0xd7, 0xa3, 0x59, 0xd1, 0x4e, 0x0e, 0xae, 0x29, 0xc3, 0xb6, 0x19, + 0xf0, 0x4d, 0x1d, 0xc6, 0x8d, 0x81, 0x73, 0x63, 0x60, 0xdd, 0x18, 0x78, 0xa7, 0x05, 0xf3, 0xc4, + 0xe0, 0x3e, 0x1e, 0xc5, 0x6b, 0x8a, 0x00, 0xbb, 0x47, 0xfb, 0xec, 0xb4, 0x44, 0x36, 0x5c, 0x26, + 0x68, 0xdb, 0x8b, 0xb3, 0xd4, 0xc2, 0x23, 0xd1, 0x9e, 0xc9, 0x0a, 0xf6, 0x40, 0x51, 0x77, 0x4d, + 0x2b, 0x5c, 0x5d, 0x23, 0x4b, 0x7c, 0x43, 0xf3, 0x68, 0x92, 0xde, 0x1c, 0x48, 0x2f, 0x48, 0x2f, + 0x48, 0x2f, 0x48, 0x2f, 0x48, 0x2f, 0x90, 0x75, 0xf9, 0x28, 0x52, 0xd3, 0xba, 0x62, 0xc3, 0xa6, + 0x1c, 0x6d, 0xc0, 0x08, 0xb7, 0x0f, 0x99, 0x93, 0xbe, 0x26, 0x96, 0xbe, 0x47, 0x4f, 0x87, 0x2d, + 0x22, 0x05, 0x26, 0x90, 0x03, 0xb3, 0x48, 0x82, 0x29, 0x64, 0xc1, 0x38, 0xd2, 0x60, 0x1c, 0x79, + 0x30, 0x8e, 0x44, 0xd0, 0x24, 0x13, 0x44, 0x49, 0x45, 0x3c, 0xba, 0x64, 0x15, 0xb5, 0x44, 0xdc, + 0x1c, 0x71, 0x21, 0x73, 0x25, 0xca, 0x31, 0x33, 0x42, 0xf1, 0x12, 0x61, 0x13, 0x69, 0x76, 0xc5, + 0x5b, 0xfc, 0xa2, 0x8d, 0x39, 0x7b, 0xd4, 0xbb, 0xe6, 0x19, 0x46, 0x2f, 0x13, 0xe6, 0x12, 0xef, + 0xaa, 0x97, 0xb0, 0xd7, 0x80, 0x4e, 0x62, 0x86, 0xc0, 0xd1, 0xbc, 0x8b, 0xb9, 0x0f, 0x70, 0xb1, + 0x8c, 0x5d, 0xac, 0x54, 0x2c, 0x1e, 0x15, 0xe1, 0x66, 0xbb, 0xc5, 0x45, 0xe9, 0x5b, 0xd7, 0x7c, + 0x87, 0xe7, 0x65, 0x68, 0x18, 0x27, 0x5c, 0x09, 0x97, 0x48, 0x29, 0xa8, 0x56, 0xc4, 0x19, 0x82, + 0x2a, 0xd0, 0x05, 0xd3, 0x9c, 0x8c, 0xd0, 0x05, 0x53, 0xf5, 0x1c, 0xe8, 0x82, 0x19, 0x1b, 0x0c, + 0x5d, 0x70, 0x8b, 0x13, 0x31, 0xc3, 0x74, 0xc1, 0x63, 0x03, 0x64, 0xc1, 0x22, 0x64, 0xc1, 0x0d, + 0xbf, 0x20, 0x0b, 0x42, 0xb3, 0x80, 0x2c, 0xb8, 0x83, 0x68, 0x34, 0xef, 0x62, 0x90, 0x05, 0x33, + 0x77, 0xb1, 0x7c, 0x11, 0xa2, 0xe0, 0x8e, 0x11, 0x51, 0xfa, 0xd6, 0x41, 0x14, 0x34, 0x36, 0x88, + 0x87, 0x4a, 0xdb, 0x7d, 0x14, 0x5d, 0x4c, 0x50, 0x05, 0x43, 0x5b, 0x21, 0x0b, 0xbe, 0xc5, 0x3c, + 0xc8, 0x82, 0x29, 0xce, 0x46, 0xc8, 0x82, 0xa9, 0x7a, 0x0e, 0x64, 0xc1, 0x8c, 0x0d, 0x86, 0x2c, + 0xb8, 0xc5, 0x89, 0x98, 0x41, 0xb2, 0x60, 0x9b, 0x0b, 0xd7, 0x7f, 0x34, 0x40, 0x17, 0xac, 0x10, + 0x36, 0xf1, 0x9c, 0x89, 0xfe, 0x74, 0x63, 0x2e, 0x84, 0xc1, 0x4d, 0x55, 0x0b, 0x08, 0x83, 0x99, + 0xab, 0x16, 0x39, 0x68, 0x16, 0x3b, 0x86, 0x47, 0xf3, 0x2e, 0x06, 0x61, 0x30, 0x73, 0x17, 0x43, + 0xbd, 0xe0, 0x0e, 0x92, 0x51, 0xfa, 0xd6, 0x41, 0x1a, 0x34, 0x36, 0x8c, 0x5b, 0xec, 0x41, 0x32, + 0xd1, 0x65, 0x5d, 0xfa, 0xc2, 0x60, 0x6c, 0x29, 0x64, 0xc1, 0xb7, 0x98, 0x07, 0x59, 0x30, 0xc5, + 0xb9, 0x08, 0x59, 0x30, 0x55, 0xcf, 0x81, 0x2c, 0x98, 0xb1, 0xc1, 0x90, 0x05, 0xb7, 0x38, 0x0d, + 0x33, 0x49, 0x16, 0x24, 0x77, 0xe6, 0xd7, 0x2a, 0x18, 0x27, 0x72, 0x06, 0x18, 0x48, 0xed, 0x5b, + 0xc6, 0xd0, 0x1b, 0x4e, 0x32, 0x4f, 0x77, 0x40, 0x9f, 0xd4, 0xc6, 0x96, 0x82, 0xd4, 0x82, 0xd4, + 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0x82, 0xd4, 0xc2, 0x29, + 0xe6, 0xc7, 0x70, 0xe8, 0xfa, 0x92, 0x9b, 0xc0, 0x69, 0x67, 0x86, 0x82, 0xd2, 0x82, 0xd2, 0x82, + 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0x82, 0xd2, 0xc2, 0x29, 0xe6, + 0xc7, 0x50, 0xfa, 0xae, 0x08, 0xb8, 0xe4, 0xf7, 0x06, 0xec, 0x4b, 0x7a, 0x61, 0x2b, 0x88, 0x2d, + 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, 0x88, 0x2d, + 0x2c, 0x22, 0xea, 0xa2, 0x56, 0x55, 0x08, 0x4f, 0xba, 0x92, 0x7b, 0x34, 0x37, 0x40, 0x59, 0x41, + 0xe7, 0x1b, 0xbb, 0x73, 0x87, 0xd1, 0x01, 0x94, 0x8e, 0x37, 0x64, 0xa2, 0x33, 0x25, 0x8a, 0xb6, + 0x60, 0xf2, 0xa7, 0xe7, 0xff, 0xb0, 0xb9, 0x08, 0xa4, 0x2b, 0x3a, 0xcc, 0x59, 0x7c, 0x21, 0x48, + 0xbc, 0xe2, 0x0c, 0x7d, 0x4f, 0x7a, 0x1d, 0x6f, 0x10, 0xc4, 0x57, 0x4e, 0xbb, 0x3f, 0x74, 0x7c, + 0xde, 0x76, 0xdc, 0x1e, 0xb7, 0x03, 0xb7, 0xc7, 0x83, 0xf8, 0xca, 0xe1, 0xc3, 0xfb, 0x92, 0x3d, + 0x12, 0xbc, 0xe3, 0x06, 0xd2, 0x11, 0x8c, 0xf7, 0xbf, 0xb5, 0x3d, 0x3f, 0x88, 0xaf, 0x1c, 0xb7, + 0xfb, 0x7d, 0x8a, 0x54, 0xde, 0x48, 0xda, 0x43, 0x2f, 0x90, 0x8e, 0xef, 0x8d, 0x24, 0x0b, 0xc2, + 0x6f, 0xce, 0x48, 0xfc, 0x10, 0xde, 0x4f, 0x61, 0xbb, 0x52, 0xfa, 0xbc, 0x3d, 0xfd, 0x41, 0xe2, + 0xa5, 0xf0, 0x38, 0x4d, 0x1c, 0xa2, 0x49, 0xd9, 0x12, 0x2a, 0x87, 0xea, 0xff, 0xc3, 0x1e, 0x29, + 0x76, 0xc5, 0xb5, 0xce, 0x79, 0x20, 0xab, 0x52, 0x12, 0x3b, 0xf1, 0xff, 0x0b, 0x17, 0x67, 0x03, + 0x36, 0xa1, 0x94, 0x81, 0x75, 0xb2, 0x27, 0x46, 0x83, 0x01, 0xa1, 0x13, 0x59, 0xbf, 0xb8, 0x0f, + 0x74, 0x8d, 0xab, 0xfb, 0x5d, 0xe6, 0xb3, 0xee, 0xc7, 0xc7, 0xc8, 0x34, 0x38, 0x21, 0x7d, 0xb8, + 0xdc, 0x72, 0x98, 0xb4, 0x48, 0x9d, 0xa6, 0xec, 0x8f, 0x3a, 0x52, 0x44, 0xf9, 0xc2, 0x45, 0xf8, + 0xe8, 0x6a, 0xd1, 0x93, 0x6b, 0x5d, 0x46, 0xcf, 0xab, 0xf5, 0xb1, 0x3f, 0x6c, 0x35, 0x78, 0xbb, + 0x55, 0xed, 0xf1, 0x2b, 0xb7, 0xc7, 0x5b, 0xb5, 0xe1, 0x7d, 0xe9, 0x26, 0x7c, 0x46, 0xad, 0x8b, + 0xe8, 0xc9, 0xb4, 0xaa, 0xdd, 0xef, 0x0d, 0xde, 0xae, 0x8f, 0xe4, 0xa5, 0x17, 0xc8, 0x56, 0x63, + 0xf2, 0x3c, 0x5a, 0x37, 0xe1, 0x1f, 0x5f, 0x8d, 0xff, 0xf6, 0x77, 0x80, 0x62, 0xfd, 0x16, 0x68, + 0x8e, 0x3f, 0xd4, 0xe2, 0xce, 0x56, 0xc5, 0x1b, 0xbd, 0x1e, 0xa6, 0x6f, 0x5e, 0xeb, 0xb9, 0xb3, + 0x26, 0x4f, 0x9a, 0xd1, 0xe7, 0x50, 0xbf, 0xdd, 0x9b, 0xcc, 0x5c, 0x9b, 0xeb, 0xda, 0x2b, 0x4a, + 0x83, 0x33, 0x93, 0xe2, 0xc8, 0xa4, 0x38, 0x31, 0x0d, 0x0e, 0xac, 0xcb, 0x53, 0x88, 0x60, 0x8d, + 0xb9, 0x18, 0xa3, 0x91, 0xae, 0x66, 0x4d, 0x4f, 0xf5, 0x60, 0xa5, 0x7a, 0xa4, 0x52, 0x7b, 0x47, + 0xc5, 0x9e, 0xae, 0xdb, 0xc3, 0x4d, 0xf4, 0x6c, 0xb5, 0x13, 0x5f, 0xdd, 0xf4, 0x53, 0x73, 0x27, + 0x45, 0x13, 0x5c, 0xd7, 0xc4, 0x36, 0x6a, 0x42, 0x2b, 0x44, 0xa7, 0xec, 0xd0, 0x48, 0x8d, 0x3b, + 0x66, 0xef, 0x1c, 0x0a, 0x1c, 0xc3, 0x9a, 0x9b, 0x00, 0xbe, 0xba, 0x85, 0xf8, 0xe7, 0x96, 0xdd, + 0x0b, 0x06, 0x28, 0x0a, 0x06, 0xb3, 0x85, 0x72, 0x45, 0xb7, 0x53, 0x5d, 0xbf, 0xa6, 0xa3, 0x1e, + 0x4d, 0x6f, 0x7d, 0x99, 0xae, 0x7a, 0x31, 0xed, 0xf5, 0x5f, 0xda, 0xeb, 0xb9, 0xb4, 0xd7, 0x67, + 0x6d, 0x17, 0x4d, 0x39, 0xe5, 0x6a, 0x95, 0x1f, 0x2b, 0xe2, 0xb0, 0xca, 0x1d, 0x67, 0x16, 0x2e, + 0xa2, 0xfb, 0x2b, 0x9e, 0xb4, 0x6a, 0x01, 0x20, 0x09, 0x04, 0x79, 0xc5, 0x37, 0xd6, 0x58, 0xa0, + 0x4c, 0xa3, 0xf0, 0x58, 0x77, 0x41, 0x31, 0x99, 0x42, 0x61, 0x32, 0x05, 0xc0, 0x64, 0x0a, 0x7b, + 0xb7, 0x5b, 0xd0, 0x51, 0x0d, 0x28, 0xf3, 0xc0, 0xa2, 0xcf, 0xdf, 0xe6, 0xf0, 0x45, 0x97, 0xaf, + 0xe9, 0x81, 0x19, 0x6d, 0x79, 0x07, 0x25, 0xd8, 0xa1, 0x05, 0x3f, 0x54, 0x60, 0x88, 0x1c, 0x1c, + 0x91, 0x83, 0x25, 0x72, 0xf0, 0xa4, 0x07, 0xa6, 0x34, 0xc1, 0x95, 0x76, 0xd8, 0x8a, 0x0d, 0x98, + 0x95, 0x01, 0x68, 0xf7, 0xd4, 0xe7, 0xde, 0x28, 0x3a, 0xeb, 0x12, 0x16, 0x21, 0x4d, 0xf3, 0x4e, + 0x4c, 0x32, 0x5b, 0x42, 0x29, 0x6d, 0xfd, 0xa4, 0xb9, 0xc5, 0x93, 0xda, 0x56, 0x4e, 0xb2, 0x5b, + 0x36, 0xc9, 0x6e, 0xcd, 0x24, 0xbb, 0x05, 0x73, 0xb7, 0x0b, 0x3f, 0xc9, 0x6c, 0x9d, 0x8c, 0xe3, + 0xce, 0x80, 0xb9, 0x3d, 0x9f, 0xf5, 0x28, 0x04, 0x9d, 0x59, 0xe6, 0x55, 0x26, 0x60, 0xcb, 0x65, + 0xb4, 0xf8, 0xfb, 0xe1, 0x43, 0xb8, 0xa9, 0xcb, 0x99, 0x41, 0xf9, 0xae, 0x56, 0x97, 0x6a, 0xcc, + 0xbf, 0x86, 0x34, 0xe0, 0xfa, 0x99, 0xd5, 0x91, 0x48, 0xbe, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, + 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0x40, 0xea, 0xde, 0x48, 0xea, 0xc2, 0xb0, 0x03, 0x4e, 0xa7, + 0x7c, 0x28, 0xc2, 0x4e, 0x09, 0x64, 0x28, 0x5d, 0x68, 0x0e, 0x0d, 0x46, 0x97, 0x03, 0xa3, 0x03, + 0xa3, 0x03, 0xa3, 0x03, 0xa3, 0x03, 0xa3, 0xd3, 0x35, 0x2a, 0xba, 0x57, 0xb2, 0x62, 0x43, 0xa6, + 0xed, 0x61, 0xb8, 0xe8, 0x32, 0x3a, 0x8d, 0x2a, 0x9f, 0xeb, 0xc0, 0x9f, 0x6d, 0xa3, 0xd2, 0x53, + 0x87, 0x54, 0x4b, 0x54, 0x72, 0x2d, 0x50, 0x29, 0xb6, 0x3c, 0xa5, 0xdd, 0xe2, 0x94, 0x6a, 0x4b, + 0x53, 0xf2, 0x2d, 0x4c, 0xc9, 0xb7, 0x2c, 0x25, 0xdf, 0xa2, 0x14, 0xdd, 0xd2, 0x48, 0x4a, 0x2c, + 0x84, 0xa5, 0x16, 0x8a, 0x92, 0xcb, 0x32, 0xe9, 0xe5, 0x37, 0xff, 0x4d, 0x29, 0x45, 0xc0, 0x64, + 0x10, 0x5f, 0x45, 0x42, 0x4d, 0x48, 0x33, 0xd0, 0x3b, 0x89, 0x8a, 0x53, 0x5a, 0x1d, 0xef, 0xee, + 0x6e, 0x24, 0xb8, 0x7c, 0xa4, 0xca, 0x4e, 0x17, 0x0d, 0x04, 0x45, 0x05, 0x45, 0x05, 0x45, 0x05, + 0x45, 0x05, 0x45, 0x05, 0x45, 0x05, 0x45, 0x05, 0x45, 0x7d, 0x2b, 0x45, 0x9d, 0xf1, 0x0a, 0xce, + 0x82, 0xf8, 0xfa, 0x11, 0x2c, 0x95, 0x26, 0x4b, 0x65, 0x0f, 0xd2, 0x26, 0xcf, 0x54, 0x97, 0x19, + 0x09, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, 0x0a, 0xb6, + 0xfa, 0x56, 0xb6, 0xfa, 0x92, 0x5b, 0x4c, 0x18, 0xeb, 0x1c, 0xd7, 0x00, 0x6b, 0xa5, 0xc9, 0x5a, + 0xb9, 0xb8, 0x77, 0x07, 0xbc, 0x6b, 0xfb, 0xcc, 0x0d, 0x08, 0x9d, 0x4c, 0x11, 0x7b, 0xe8, 0x82, + 0x7d, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0xe0, 0xaa, 0x3b, 0xc6, 0x55, + 0x79, 0x97, 0x09, 0xc9, 0xe5, 0x23, 0x51, 0xbe, 0x5a, 0x24, 0x64, 0x53, 0x2d, 0x7a, 0x54, 0x1f, + 0xdd, 0x80, 0x60, 0x48, 0x9d, 0x0d, 0x68, 0xed, 0xe2, 0x6b, 0xf5, 0xbc, 0x76, 0xda, 0x6a, 0xd4, + 0x6f, 0xae, 0xcf, 0x5a, 0x8d, 0xb3, 0xea, 0x55, 0xfd, 0x82, 0x5a, 0x74, 0xfd, 0xea, 0x0e, 0x46, + 0xd3, 0xee, 0x8f, 0xb7, 0xe4, 0xce, 0xf7, 0x24, 0x7e, 0xa8, 0xff, 0x6c, 0x74, 0xab, 0x57, 0xad, + 0xf3, 0x7a, 0xfd, 0x92, 0xde, 0x79, 0xd4, 0x04, 0x4f, 0x7c, 0x36, 0x64, 0x48, 0x3f, 0xd5, 0x2f, + 0x3e, 0x9f, 0x9d, 0x62, 0x44, 0xb7, 0x67, 0x44, 0xeb, 0x8d, 0xda, 0xdf, 0xb5, 0x8b, 0xea, 0x75, + 0xbd, 0x81, 0x51, 0xdd, 0x22, 0x3f, 0x3d, 0xbf, 0xb9, 0xba, 0x3e, 0x6b, 0x50, 0x8d, 0xbf, 0xa4, + 0x2c, 0x6a, 0x22, 0x1f, 0x21, 0x66, 0x05, 0x05, 0x75, 0x70, 0xe0, 0x06, 0xd2, 0xbe, 0xf3, 0xba, + 0xbc, 0xc7, 0x59, 0x97, 0x9e, 0x38, 0x38, 0x6f, 0x1e, 0xb4, 0xc1, 0x65, 0xe6, 0x40, 0x1b, 0x5c, + 0x63, 0x42, 0x41, 0x1b, 0x5c, 0x6b, 0xa6, 0x43, 0x1b, 0xdc, 0xd0, 0x40, 0x68, 0x83, 0x06, 0x31, + 0x60, 0xc2, 0xda, 0xa0, 0xe4, 0x77, 0x4c, 0xf2, 0xce, 0x8f, 0xa0, 0x54, 0x20, 0xa8, 0x0d, 0x1e, + 0x13, 0x32, 0xe9, 0x46, 0xf0, 0xe9, 0x29, 0xb1, 0x96, 0x70, 0x85, 0x17, 0xb0, 0x8e, 0x27, 0xba, + 0x01, 0xa5, 0x47, 0xd6, 0x70, 0x45, 0x9f, 0x91, 0xd3, 0xdb, 0xe8, 0x25, 0x7c, 0xd6, 0x17, 0x2e, + 0xc8, 0x21, 0x22, 0x51, 0x0e, 0x98, 0x30, 0x6f, 0xaa, 0xea, 0x12, 0xb6, 0xef, 0xb3, 0xef, 0x76, + 0x24, 0xf7, 0xc4, 0x29, 0xef, 0x87, 0xde, 0x7a, 0x08, 0x55, 0xe6, 0x35, 0x2e, 0xe1, 0x3e, 0xc0, + 0x25, 0x36, 0x74, 0x89, 0xdc, 0x71, 0xa1, 0x50, 0x2a, 0x17, 0x0a, 0x87, 0xe5, 0xa3, 0xf2, 0x61, + 0xa5, 0x58, 0xcc, 0x95, 0x28, 0xad, 0x6c, 0x19, 0xe7, 0x25, 0xef, 0x60, 0xcd, 0xb2, 0xaf, 0x26, + 0x34, 0x2e, 0x2a, 0x51, 0x94, 0xcc, 0x41, 0x0e, 0x09, 0x52, 0x4f, 0xe3, 0x40, 0x07, 0xa2, 0x01, + 0x1c, 0xba, 0xd6, 0x3a, 0x53, 0x09, 0xba, 0xd6, 0x5a, 0x33, 0x1d, 0xba, 0xd6, 0x86, 0x06, 0x42, + 0xd7, 0x32, 0x28, 0x87, 0x20, 0xac, 0x6b, 0x8d, 0xb8, 0x90, 0x47, 0x79, 0x82, 0x92, 0x56, 0x19, + 0x92, 0xd1, 0x1f, 0xbe, 0x20, 0x19, 0x6d, 0x65, 0x7e, 0x0c, 0xc9, 0xc8, 0xf4, 0x70, 0x3f, 0xef, + 0x12, 0x90, 0x8c, 0x36, 0x76, 0x89, 0x42, 0xbe, 0x52, 0xa8, 0x94, 0xca, 0xf9, 0x0a, 0x84, 0xa2, + 0x2d, 0x90, 0x66, 0xf6, 0x20, 0x14, 0x11, 0x7c, 0x1e, 0x24, 0x84, 0x22, 0x5a, 0x09, 0x3e, 0xad, + 0x23, 0xa2, 0x88, 0x06, 0x6d, 0xc8, 0x44, 0xeb, 0xcc, 0x24, 0xc8, 0x44, 0x6b, 0xcd, 0x74, 0xc8, + 0x44, 0x1b, 0x1a, 0x08, 0x99, 0xc8, 0xa0, 0xbc, 0x81, 0xf2, 0xd6, 0xc8, 0xe1, 0x7d, 0xc9, 0x26, + 0xe7, 0x83, 0xf1, 0xd6, 0xc8, 0x63, 0x5a, 0xad, 0x3c, 0x24, 0xf3, 0x05, 0x39, 0xb9, 0xc8, 0xfa, + 0x6f, 0x7f, 0xff, 0xf6, 0xd0, 0xae, 0xb8, 0x76, 0xaf, 0x6a, 0x7f, 0x6e, 0xfe, 0xca, 0xbd, 0x2f, + 0x8c, 0x4f, 0x0e, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2d, 0x7b, 0x5b, 0xee, 0x7d, 0x79, 0x7c, + 0xb2, 0xe2, 0x27, 0xa5, 0xf1, 0xc9, 0x2b, 0x7f, 0x47, 0x71, 0xbc, 0x9f, 0x78, 0xeb, 0xe4, 0xf5, + 0xfc, 0xaa, 0x0f, 0x14, 0x56, 0x7c, 0xe0, 0x68, 0xd5, 0x07, 0x8e, 0x56, 0x7c, 0x60, 0xa5, 0x49, + 0xf9, 0x15, 0x1f, 0x28, 0x8e, 0x9f, 0x12, 0xef, 0xdf, 0x5f, 0xfe, 0xd6, 0xd2, 0xf8, 0xe0, 0x69, + 0xd5, 0xcf, 0xca, 0xe3, 0xa7, 0x93, 0x83, 0x03, 0x67, 0x3f, 0x97, 0xbf, 0x3d, 0xb4, 0x8f, 0x9b, + 0x4f, 0xb9, 0xdb, 0x43, 0x3b, 0xd7, 0x9c, 0xbc, 0xb3, 0xf9, 0x74, 0x9b, 0xb3, 0x2b, 0xb3, 0xcb, + 0xc9, 0xff, 0x0f, 0xfe, 0xb2, 0x90, 0x16, 0x21, 0x2d, 0x4a, 0x38, 0x6e, 0xd4, 0x9f, 0xc5, 0x1b, + 0x49, 0x46, 0x2f, 0x37, 0x7a, 0x69, 0x1c, 0x12, 0x24, 0x24, 0x48, 0x48, 0x90, 0x90, 0x20, 0x21, + 0x41, 0x42, 0x82, 0xb4, 0x63, 0x09, 0x52, 0xdb, 0xf3, 0x06, 0xcc, 0x15, 0x14, 0x93, 0xa3, 0x1c, + 0xa8, 0x1c, 0x01, 0x0b, 0x74, 0x1f, 0x82, 0x58, 0x15, 0xc2, 0x93, 0xae, 0xe4, 0x44, 0x5a, 0x10, + 0x5a, 0x41, 0xe7, 0x1b, 0xbb, 0x73, 0x87, 0x51, 0xdf, 0x4b, 0xc7, 0x1b, 0x32, 0xd1, 0x99, 0x12, + 0x25, 0x5b, 0x30, 0xf9, 0xd3, 0xf3, 0x7f, 0xd8, 0x5c, 0x04, 0xd2, 0x15, 0x1d, 0xe6, 0x2c, 0xbe, + 0x10, 0x24, 0x5e, 0x71, 0x86, 0xbe, 0x27, 0xbd, 0x8e, 0x37, 0x08, 0xe2, 0x2b, 0xa7, 0xdd, 0x1f, + 0x3a, 0x3e, 0x6f, 0x3b, 0x6e, 0x8f, 0xdb, 0x81, 0xdb, 0xe3, 0x41, 0x7c, 0xe5, 0x4c, 0xd5, 0x8c, + 0x91, 0xe0, 0x1d, 0x37, 0x90, 0x8e, 0x60, 0xbc, 0xff, 0xad, 0xed, 0xf9, 0x41, 0x7c, 0xe5, 0xb8, + 0xdd, 0xef, 0x53, 0x24, 0xf0, 0x46, 0xd2, 0x1e, 0xfa, 0xcc, 0x99, 0xb2, 0xdb, 0x20, 0xfc, 0x16, + 0xb6, 0xd9, 0xc4, 0x21, 0xd3, 0xea, 0x67, 0xcc, 0x48, 0xfc, 0x10, 0xde, 0x4f, 0x61, 0xbb, 0x52, + 0xfa, 0xbc, 0x3d, 0x19, 0x11, 0x3a, 0x27, 0x4e, 0x2f, 0xb1, 0x0d, 0xc7, 0x4f, 0xe3, 0xf8, 0x69, + 0x93, 0x92, 0x1d, 0x1c, 0x3f, 0x6d, 0x7a, 0x52, 0x83, 0xe3, 0xa7, 0x49, 0x32, 0x2f, 0x32, 0xc7, + 0x4f, 0x27, 0x40, 0x8a, 0x9e, 0x9a, 0x98, 0x34, 0x91, 0x96, 0xa6, 0x98, 0x83, 0xa6, 0x48, 0x1e, + 0x5e, 0x69, 0xc3, 0x2c, 0x55, 0xb8, 0x25, 0x0f, 0xbb, 0xe4, 0xe1, 0x97, 0x3c, 0x0c, 0xd3, 0x91, + 0x62, 0xf6, 0x08, 0x69, 0x8a, 0x54, 0xe0, 0x39, 0x36, 0x68, 0x7a, 0x58, 0xb2, 0xa4, 0xa6, 0x74, + 0xce, 0x45, 0xd4, 0x67, 0x13, 0x89, 0xb9, 0x1e, 0xcd, 0x82, 0x76, 0x72, 0x70, 0x4d, 0x19, 0xb6, + 0xcd, 0x80, 0x6f, 0xea, 0x30, 0x6e, 0x0c, 0x9c, 0x1b, 0x03, 0xeb, 0xc6, 0xc0, 0x3b, 0x2d, 0x98, + 0x27, 0x06, 0xf7, 0xf1, 0x28, 0x5e, 0x53, 0x04, 0xd8, 0x3d, 0xda, 0x47, 0xa7, 0x25, 0xb2, 0xe1, + 0x32, 0x41, 0xdb, 0x5e, 0x1c, 0xa5, 0x16, 0x9e, 0x88, 0xf6, 0x4c, 0x56, 0xb0, 0x05, 0x8a, 0xba, + 0x6b, 0x5a, 0xe1, 0xea, 0x1a, 0x59, 0xe2, 0x1b, 0x9a, 0x47, 0x93, 0xf4, 0xe6, 0x40, 0x7a, 0x41, + 0x7a, 0x41, 0x7a, 0x41, 0x7a, 0x41, 0x7a, 0x81, 0xac, 0xcb, 0x47, 0x91, 0x9a, 0xd6, 0x15, 0x1b, + 0x36, 0xe5, 0x68, 0x03, 0x46, 0xb8, 0x7b, 0xc8, 0x9c, 0xf4, 0x35, 0xb1, 0xf4, 0x3d, 0x5a, 0x3a, + 0x6c, 0x11, 0x29, 0x30, 0x81, 0x1c, 0x98, 0x45, 0x12, 0x4c, 0x21, 0x0b, 0xc6, 0x91, 0x06, 0xe3, + 0xc8, 0x83, 0x71, 0x24, 0x82, 0x26, 0x99, 0x20, 0x4a, 0x2a, 0xe2, 0xd1, 0x25, 0xab, 0xa8, 0x25, + 0xe2, 0xe6, 0x88, 0x0b, 0x99, 0x2b, 0x51, 0x8e, 0x99, 0x11, 0x8a, 0x97, 0x08, 0x9b, 0x48, 0xb3, + 0x29, 0xde, 0xe2, 0x17, 0x6d, 0xcc, 0xd9, 0xa3, 0xde, 0x34, 0xcf, 0x30, 0x7a, 0x99, 0x30, 0x97, + 0x78, 0x53, 0xbd, 0x84, 0xbd, 0x06, 0x34, 0x12, 0x33, 0x04, 0x8e, 0xe6, 0x5d, 0xcc, 0x7d, 0x80, + 0x8b, 0x65, 0xec, 0x62, 0xa5, 0x62, 0xf1, 0xa8, 0x08, 0x37, 0xdb, 0x2d, 0x2e, 0x4a, 0xdf, 0xba, + 0xe6, 0x3b, 0x3c, 0x2f, 0x43, 0xc3, 0x38, 0xe1, 0x4a, 0xb8, 0x44, 0x4a, 0x41, 0xb5, 0x22, 0xce, + 0x10, 0x54, 0x81, 0x2e, 0x98, 0xe6, 0x64, 0x84, 0x2e, 0x98, 0xaa, 0xe7, 0x40, 0x17, 0xcc, 0xd8, + 0x60, 0xe8, 0x82, 0x5b, 0x9c, 0x88, 0x19, 0xa6, 0x0b, 0x1e, 0x1b, 0x20, 0x0b, 0x16, 0x21, 0x0b, + 0x6e, 0xf8, 0x05, 0x59, 0x10, 0x9a, 0x05, 0x64, 0xc1, 0x1d, 0x44, 0xa3, 0x79, 0x17, 0x83, 0x2c, + 0x98, 0xb9, 0x8b, 0xe5, 0x8b, 0x10, 0x05, 0x77, 0x8c, 0x88, 0xd2, 0xb7, 0x0e, 0xa2, 0xa0, 0xb1, + 0x41, 0x3c, 0x54, 0xda, 0xee, 0xa3, 0xe8, 0x62, 0x82, 0x2a, 0x18, 0xda, 0x0a, 0x59, 0xf0, 0x2d, + 0xe6, 0x41, 0x16, 0x4c, 0x71, 0x36, 0x42, 0x16, 0x4c, 0xd5, 0x73, 0x20, 0x0b, 0x66, 0x6c, 0x30, + 0x64, 0xc1, 0x2d, 0x4e, 0xc4, 0x0c, 0x92, 0x05, 0xdb, 0x5c, 0xb8, 0xfe, 0xa3, 0x01, 0xba, 0x60, + 0x85, 0xb0, 0x89, 0xe7, 0x4c, 0xf4, 0xa7, 0x1b, 0x73, 0x21, 0x0c, 0x6e, 0xaa, 0x5a, 0x40, 0x18, + 0xcc, 0x5c, 0xb5, 0xc8, 0x41, 0xb3, 0xd8, 0x31, 0x3c, 0x9a, 0x77, 0x31, 0x08, 0x83, 0x99, 0xbb, + 0x18, 0xea, 0x05, 0x77, 0x90, 0x8c, 0xd2, 0xb7, 0x0e, 0xd2, 0xa0, 0xb1, 0x61, 0xdc, 0x62, 0x0f, + 0x92, 0x89, 0x2e, 0xeb, 0xd2, 0x17, 0x06, 0x63, 0x4b, 0x21, 0x0b, 0xbe, 0xc5, 0x3c, 0xc8, 0x82, + 0x29, 0xce, 0x45, 0xc8, 0x82, 0xa9, 0x7a, 0x0e, 0x64, 0xc1, 0x8c, 0x0d, 0x86, 0x2c, 0xb8, 0xc5, + 0x69, 0x98, 0x49, 0xb2, 0x20, 0xb9, 0x23, 0xbf, 0x56, 0xc1, 0x38, 0x91, 0x23, 0xc0, 0x40, 0x6a, + 0xdf, 0x32, 0x86, 0xde, 0x70, 0x92, 0x79, 0xba, 0x03, 0xfa, 0xa4, 0x36, 0xb6, 0x14, 0xa4, 0x16, + 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, 0xa4, 0x16, + 0x4e, 0x31, 0x3f, 0x86, 0x43, 0xd7, 0x97, 0xdc, 0x04, 0x4e, 0x3b, 0x33, 0x14, 0x94, 0x16, 0x94, + 0x16, 0x94, 0x16, 0x94, 0x16, 0x94, 0x16, 0x94, 0x16, 0x94, 0x16, 0x94, 0x16, 0x94, 0x16, 0x4e, + 0x31, 0x3f, 0x86, 0xd2, 0x77, 0x45, 0xc0, 0x25, 0xbf, 0x37, 0x60, 0x5f, 0xd2, 0x0b, 0x5b, 0x41, + 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, 0x6c, 0x41, + 0x6c, 0x61, 0x11, 0x51, 0x17, 0xb5, 0xaa, 0x42, 0x78, 0xd2, 0x95, 0xdc, 0xa3, 0xb9, 0x01, 0xca, + 0x0a, 0x3a, 0xdf, 0xd8, 0x9d, 0x3b, 0x8c, 0x0e, 0xa0, 0x74, 0xbc, 0x21, 0x13, 0x9d, 0x29, 0x51, + 0xb4, 0x05, 0x93, 0x3f, 0x3d, 0xff, 0x87, 0xcd, 0x45, 0x20, 0x5d, 0xd1, 0x61, 0xce, 0xe2, 0x0b, + 0x41, 0xe2, 0x15, 0x67, 0xe8, 0x7b, 0xd2, 0xeb, 0x78, 0x83, 0x20, 0xbe, 0x72, 0xda, 0xfd, 0xa1, + 0xe3, 0xf3, 0xb6, 0xe3, 0xf6, 0xb8, 0x1d, 0xb8, 0x3d, 0x1e, 0xc4, 0x57, 0x0e, 0x1f, 0xde, 0x97, + 0xec, 0x91, 0xe0, 0x1d, 0x37, 0x90, 0x8e, 0x60, 0xbc, 0xff, 0xad, 0xed, 0xf9, 0x41, 0x7c, 0xe5, + 0xb8, 0xdd, 0xef, 0x53, 0xa4, 0xf2, 0x46, 0xd2, 0x1e, 0xfa, 0xcc, 0xf1, 0xbd, 0x91, 0x64, 0x41, + 0xf8, 0xcd, 0x19, 0x89, 0x1f, 0xc2, 0xfb, 0x29, 0x6c, 0x57, 0x4a, 0x9f, 0xb7, 0xa7, 0x3f, 0x48, + 0xbc, 0x14, 0x9e, 0xa6, 0x89, 0x33, 0x34, 0x29, 0x5b, 0x42, 0xe5, 0x4c, 0xfd, 0x7f, 0xd8, 0x23, + 0xc5, 0xa6, 0xb8, 0xd6, 0x39, 0x0f, 0x64, 0x55, 0x4a, 0x62, 0x07, 0xfe, 0x7f, 0xe1, 0xe2, 0x6c, + 0xc0, 0x26, 0x8c, 0x32, 0xb0, 0x4e, 0xf6, 0xc4, 0x68, 0x30, 0x20, 0x74, 0x20, 0xeb, 0x17, 0xf7, + 0x81, 0xae, 0x71, 0x75, 0xbf, 0xcb, 0x7c, 0xd6, 0xfd, 0xf8, 0x18, 0x99, 0x06, 0x27, 0xa4, 0x8f, + 0x96, 0xdb, 0x8d, 0x92, 0x16, 0xa9, 0xb3, 0x94, 0xfd, 0x51, 0x47, 0x8a, 0x28, 0x5b, 0xb8, 0x08, + 0x9f, 0x5c, 0x2d, 0x7a, 0x70, 0xad, 0xcb, 0xe8, 0x71, 0xb5, 0x3e, 0xf6, 0x87, 0xad, 0x06, 0x6f, + 0xb7, 0xaa, 0x3d, 0x7e, 0xe5, 0xf6, 0x78, 0xab, 0x36, 0xbc, 0x2f, 0xdd, 0x84, 0x8f, 0xa8, 0x75, + 0x11, 0x3d, 0x98, 0x56, 0xb5, 0xfb, 0xbd, 0xc1, 0xdb, 0xf5, 0x91, 0xbc, 0xf4, 0x59, 0xab, 0x31, + 0x79, 0x1c, 0xad, 0x9b, 0xf0, 0x6f, 0xaf, 0xc6, 0x7f, 0xfa, 0x3b, 0x00, 0xb1, 0x7e, 0x0b, 0x34, + 0x47, 0x1f, 0x6a, 0x51, 0x67, 0x9b, 0xa2, 0x8d, 0x5e, 0x07, 0xd3, 0x37, 0xad, 0xf5, 0xdc, 0x59, + 0x93, 0x23, 0xcd, 0xb8, 0x73, 0xa8, 0xdd, 0xee, 0x4d, 0x26, 0xae, 0xcd, 0x75, 0xed, 0x13, 0xa5, + 0x41, 0x98, 0x49, 0x11, 0x64, 0x52, 0x84, 0x98, 0x06, 0x01, 0xd6, 0xe5, 0x29, 0x44, 0xa0, 0xc6, + 0x58, 0x88, 0xd1, 0xc8, 0x55, 0x33, 0xe6, 0xa6, 0x7a, 0x90, 0x52, 0x3d, 0x4e, 0xa9, 0xbd, 0xa3, + 0x62, 0x3f, 0xd7, 0xed, 0xdf, 0x06, 0xfa, 0xb5, 0xda, 0x79, 0xaf, 0x6e, 0xf6, 0xa9, 0xb9, 0x93, + 0xa2, 0xf9, 0xad, 0x6b, 0x5e, 0x9b, 0x34, 0x9f, 0x15, 0x42, 0x53, 0x66, 0x50, 0xa4, 0xc6, 0x19, + 0xb3, 0x77, 0x0d, 0x05, 0x6e, 0x61, 0xcd, 0xe6, 0x81, 0xed, 0x76, 0xbb, 0x3e, 0x0b, 0x02, 0x65, + 0x8e, 0x11, 0x2f, 0xa6, 0x27, 0x2c, 0x50, 0x14, 0x0c, 0xd4, 0x16, 0xba, 0x29, 0x2f, 0x5c, 0xd3, + 0x51, 0x88, 0xa6, 0xb7, 0xb0, 0x4c, 0x57, 0xa1, 0x98, 0xf6, 0xc2, 0x2f, 0xed, 0x85, 0x5c, 0xda, + 0x0b, 0xb3, 0xb6, 0x8b, 0xa6, 0x28, 0x2f, 0x84, 0x8a, 0xfd, 0x76, 0xc0, 0xdc, 0x9e, 0xcf, 0x7a, + 0x2a, 0x9d, 0x76, 0x56, 0xa8, 0x54, 0x56, 0x78, 0xcf, 0xcb, 0x88, 0x89, 0x7d, 0xf8, 0x10, 0xd6, + 0x56, 0x38, 0x09, 0x0c, 0x02, 0x83, 0x58, 0x83, 0xc5, 0xb9, 0x92, 0xa9, 0xa7, 0x0d, 0xe1, 0x6d, + 0xd5, 0x72, 0x85, 0x1c, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0xb8, 0x02, 0x1d, 0xae, 0x70, 0xca, + 0xd5, 0x2e, 0x11, 0xe9, 0x4b, 0x18, 0xa9, 0x24, 0x8e, 0x9a, 0x12, 0x48, 0x6d, 0xe0, 0xa0, 0x13, + 0x24, 0x68, 0x80, 0x85, 0x6e, 0xd0, 0x20, 0x03, 0x1e, 0x64, 0x40, 0x84, 0x0c, 0x98, 0xa8, 0x05, + 0x15, 0xc5, 0xe0, 0xa2, 0x2f, 0x21, 0x4d, 0xf8, 0x3d, 0x1f, 0x6a, 0x8a, 0xf2, 0x73, 0xf4, 0x5f, + 0xc3, 0x31, 0x3f, 0xb3, 0x67, 0xaf, 0xe7, 0xf0, 0x1e, 0x8d, 0x6b, 0xfb, 0xcf, 0x23, 0x7f, 0x5f, + 0xd0, 0x38, 0xf6, 0x89, 0x39, 0x70, 0xac, 0xd1, 0x86, 0x4b, 0x57, 0x4a, 0xe6, 0x0b, 0xed, 0x67, + 0x39, 0x59, 0xff, 0xed, 0xef, 0xdf, 0x1e, 0xda, 0x95, 0xe6, 0xd3, 0x6d, 0xce, 0xae, 0x34, 0xc3, + 0xcb, 0xdc, 0xf4, 0x5b, 0x78, 0x9d, 0xbf, 0x3d, 0xb4, 0x0b, 0xb3, 0xeb, 0xe2, 0xed, 0xa1, 0x5d, + 0x6c, 0x1e, 0xfc, 0xfb, 0xef, 0x87, 0x83, 0x5f, 0x47, 0xe3, 0xf5, 0x3f, 0xf8, 0x97, 0xbe, 0xf2, + 0xbb, 0xe6, 0x2e, 0x95, 0xf5, 0xd0, 0x70, 0xf6, 0x12, 0x9c, 0x9d, 0xa6, 0xb3, 0xbb, 0x76, 0xaf, + 0x6a, 0x7f, 0x6e, 0xfe, 0xca, 0xbd, 0x2f, 0x8c, 0x4f, 0x0e, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, + 0x2d, 0x7b, 0x5b, 0xee, 0x7d, 0x79, 0x7c, 0xb2, 0xe2, 0x27, 0xa5, 0xf1, 0xc9, 0x2b, 0x7f, 0x47, + 0x71, 0xbc, 0x9f, 0x78, 0xeb, 0xe4, 0xf5, 0xfc, 0xaa, 0x0f, 0x14, 0x56, 0x7c, 0xe0, 0x68, 0xd5, + 0x07, 0x8e, 0x56, 0x7c, 0x60, 0xa5, 0x49, 0xf9, 0x15, 0x1f, 0x28, 0x8e, 0x9f, 0x12, 0xef, 0xdf, + 0x5f, 0xfe, 0xd6, 0xd2, 0xf8, 0xe0, 0x69, 0xd5, 0xcf, 0xca, 0xe3, 0xa7, 0x93, 0x83, 0x1d, 0x0c, + 0x7d, 0xef, 0xb6, 0xfb, 0xef, 0x44, 0xe5, 0xce, 0x1b, 0xf3, 0x3c, 0x54, 0xee, 0x24, 0x2a, 0x77, + 0x14, 0x6e, 0x0b, 0x56, 0xb0, 0x52, 0xf5, 0xce, 0xe0, 0x69, 0x3a, 0xdb, 0x3a, 0xa0, 0x58, 0x91, + 0x54, 0xbb, 0x49, 0x40, 0xcb, 0x66, 0x00, 0x2d, 0x45, 0xff, 0x6a, 0x8b, 0xfb, 0xb3, 0x9e, 0x9b, + 0x8a, 0x43, 0x27, 0xe5, 0x90, 0x69, 0x29, 0x59, 0x0e, 0x4f, 0xad, 0xa8, 0x31, 0xdb, 0xd8, 0x9e, + 0x5d, 0xc4, 0xcd, 0xe6, 0x37, 0x67, 0xe4, 0x27, 0xaa, 0xfc, 0x83, 0xa0, 0x5f, 0x64, 0x33, 0xbf, + 0xd2, 0x1f, 0xfd, 0x74, 0x7f, 0x63, 0xca, 0xf3, 0x28, 0xeb, 0xf9, 0x43, 0x66, 0xde, 0x64, 0x10, + 0x3c, 0x53, 0x08, 0x96, 0xe9, 0xce, 0xe1, 0xf4, 0x66, 0x5a, 0x8a, 0xb3, 0x2c, 0xa3, 0x0a, 0xab, + 0x4c, 0x2b, 0xa9, 0x32, 0xaa, 0x98, 0x7a, 0x5e, 0xfc, 0xce, 0xa7, 0xfc, 0x8b, 0x33, 0x5c, 0xdc, + 0x56, 0xb3, 0x78, 0x9d, 0xf5, 0xe2, 0xb4, 0xb2, 0xc5, 0x67, 0x65, 0x8b, 0xcb, 0xca, 0x16, 0x8f, + 0x69, 0xe3, 0x57, 0x56, 0x15, 0x44, 0xd6, 0x0c, 0x45, 0xec, 0x28, 0xbe, 0x67, 0x34, 0x2f, 0x67, + 0xde, 0x35, 0x7f, 0xbb, 0x8c, 0xa6, 0x4c, 0xb6, 0x35, 0x3f, 0x99, 0xd7, 0xf6, 0xa8, 0xa8, 0xe1, + 0x51, 0x5b, 0xab, 0xa3, 0xaa, 0x26, 0x47, 0x79, 0xed, 0x8d, 0xf2, 0x1a, 0x1b, 0xe5, 0xb5, 0x34, + 0x66, 0xa5, 0x89, 0x99, 0xd7, 0xc0, 0x3c, 0x2f, 0x82, 0x76, 0x99, 0x90, 0x5c, 0x3e, 0x66, 0xbb, + 0x11, 0x23, 0x66, 0x68, 0xc5, 0x0c, 0xef, 0x51, 0x8b, 0xfe, 0x94, 0x8f, 0x6e, 0xa0, 0xc0, 0x45, + 0x67, 0x0f, 0xb0, 0xfa, 0xb9, 0xd6, 0xba, 0x9a, 0xfc, 0xef, 0xfa, 0x7f, 0x97, 0x67, 0x59, 0xbb, + 0xe9, 0x57, 0x77, 0x30, 0x62, 0x81, 0x92, 0x55, 0x5a, 0xc5, 0x3b, 0x2c, 0x6a, 0x97, 0x5f, 0x0b, + 0xad, 0x9b, 0x8b, 0xda, 0xa7, 0xea, 0xd5, 0xb5, 0xb5, 0x0d, 0x5b, 0x55, 0x14, 0x3f, 0xbf, 0xf3, + 0xda, 0xc5, 0x3f, 0x57, 0xd7, 0xd5, 0xeb, 0x33, 0x3c, 0xbc, 0xf5, 0x1f, 0xde, 0x55, 0xe3, 0xfa, + 0xac, 0x75, 0x59, 0x3f, 0xaf, 0x7d, 0xfa, 0x5f, 0xab, 0x76, 0xf9, 0xb5, 0x84, 0x67, 0xf8, 0x86, + 0x09, 0x78, 0xf4, 0xf5, 0xf2, 0x62, 0xfa, 0xf4, 0xe0, 0xc6, 0x1b, 0x3c, 0xc5, 0xfc, 0xe4, 0x29, + 0x7e, 0xbd, 0x3c, 0xbf, 0xc2, 0xd3, 0xdb, 0x20, 0x08, 0xb6, 0xae, 0x2e, 0x3f, 0xe3, 0x01, 0x6e, + 0xf2, 0x00, 0xbf, 0x5e, 0x5e, 0xe0, 0x01, 0xbe, 0x91, 0xc6, 0x7c, 0x3e, 0xaf, 0xff, 0xdf, 0xd5, + 0xe5, 0xd9, 0x27, 0x3c, 0xc0, 0x8d, 0x60, 0xe4, 0xcb, 0xcd, 0xf9, 0x35, 0x80, 0xe4, 0x8d, 0xcf, + 0xf1, 0xeb, 0xe5, 0x05, 0x66, 0x62, 0x3a, 0x33, 0xb1, 0x80, 0x99, 0xb8, 0x61, 0x48, 0x2c, 0xb5, + 0xce, 0xab, 0x1f, 0xcf, 0xce, 0xcf, 0x4e, 0x41, 0x0d, 0x53, 0x99, 0x8f, 0x78, 0x8a, 0x9b, 0x01, + 0x34, 0x66, 0x63, 0x3a, 0x5e, 0x8d, 0xe7, 0x97, 0x96, 0xe4, 0x50, 0xc0, 0x33, 0x7c, 0x6b, 0xb2, + 0x7c, 0xa6, 0x26, 0x55, 0xc9, 0xf4, 0x0e, 0x4d, 0xd3, 0xd6, 0x3d, 0x50, 0x76, 0x95, 0xea, 0xef, + 0xd7, 0x59, 0x76, 0x95, 0x41, 0x65, 0x7f, 0x8a, 0x95, 0x4d, 0xef, 0x08, 0x4d, 0x87, 0xf8, 0xc0, + 0xab, 0x0c, 0x16, 0xff, 0xb3, 0x29, 0xaf, 0xcf, 0xb4, 0x8c, 0x3e, 0xd3, 0x72, 0xf9, 0x6c, 0xca, + 0xe2, 0xd3, 0x9a, 0x08, 0x19, 0xc5, 0x03, 0x9d, 0x71, 0xc0, 0x4a, 0xb5, 0x86, 0xf0, 0x2d, 0x95, + 0x96, 0xe9, 0xc4, 0xa0, 0xcd, 0x23, 0xc6, 0x66, 0xbf, 0x61, 0xc3, 0x29, 0x96, 0xf6, 0xd4, 0xd2, + 0x30, 0xa5, 0x36, 0x1b, 0xc7, 0xb7, 0x3f, 0xfd, 0x0d, 0x9e, 0x7c, 0x78, 0x86, 0x61, 0xc0, 0xe4, + 0xe6, 0x1d, 0xa6, 0x9e, 0x4b, 0xc4, 0xe2, 0x5f, 0xb9, 0xe1, 0x8c, 0x48, 0xa7, 0xba, 0x35, 0xb5, + 0x72, 0xaf, 0x34, 0xcb, 0xba, 0xb2, 0x29, 0xdf, 0x4a, 0xbb, 0x4c, 0x2b, 0xb3, 0x72, 0xac, 0xcc, + 0xca, 0xae, 0x32, 0x2b, 0xaf, 0xd2, 0x1b, 0x1b, 0xd3, 0xaa, 0x1e, 0x8d, 0x7d, 0x33, 0xbd, 0x29, + 0xb2, 0xe8, 0xf5, 0x69, 0xcd, 0x90, 0x74, 0x4b, 0xdb, 0x53, 0xaf, 0xf9, 0xcc, 0xa2, 0xc6, 0x33, + 0xdb, 0x9a, 0xce, 0xac, 0x6a, 0x38, 0x33, 0xaf, 0xd9, 0xcc, 0xbc, 0x46, 0x33, 0xf3, 0x9a, 0x4c, + 0x5a, 0xc9, 0x5c, 0xda, 0xa5, 0xe8, 0x96, 0xdb, 0xef, 0xfb, 0xac, 0xef, 0x4a, 0xcf, 0xcf, 0x6e, + 0xfb, 0xcc, 0x8b, 0x7b, 0x18, 0xb6, 0x87, 0xe6, 0x10, 0x7b, 0x68, 0xd4, 0x04, 0x22, 0x65, 0x01, + 0x49, 0x59, 0x60, 0x52, 0x16, 0xa0, 0xcc, 0x10, 0x23, 0x33, 0xdb, 0x43, 0x93, 0x6d, 0x73, 0x75, + 0x25, 0xcd, 0xd4, 0x33, 0x6e, 0x9e, 0x9e, 0xd9, 0x96, 0x40, 0x15, 0x61, 0x4d, 0x6d, 0x78, 0x53, + 0x15, 0xe6, 0x94, 0x87, 0x3b, 0xe5, 0x61, 0x4f, 0x79, 0xf8, 0xcb, 0x26, 0x0c, 0x66, 0x14, 0x0e, + 0x33, 0x0f, 0x8b, 0xcf, 0xfc, 0x4e, 0x51, 0x0f, 0xf2, 0x67, 0xb2, 0xa7, 0xa6, 0xb1, 0x8f, 0x9a, + 0xd6, 0xe2, 0xca, 0x5a, 0x89, 0xab, 0x6c, 0x1d, 0xae, 0xa7, 0x55, 0xb8, 0xea, 0xd6, 0xe0, 0xda, + 0x5a, 0x81, 0x6b, 0x6b, 0xfd, 0xad, 0xad, 0xd5, 0xb7, 0xd9, 0x9d, 0xc9, 0x94, 0xb5, 0xee, 0xd6, + 0xd5, 0xb0, 0x59, 0x65, 0xaf, 0x56, 0xe5, 0x3d, 0x59, 0xb7, 0xae, 0xd1, 0x72, 0xd3, 0xd4, 0x96, + 0x56, 0x19, 0xb2, 0x71, 0x57, 0x25, 0x7f, 0x01, 0x75, 0x01, 0x75, 0x01, 0x75, 0x01, 0x75, 0x01, + 0x75, 0x59, 0x1a, 0x1d, 0x6d, 0x31, 0xba, 0x6b, 0x33, 0x5f, 0x21, 0x6f, 0x51, 0x70, 0xee, 0xa5, + 0xd5, 0x70, 0x45, 0x5f, 0xdd, 0x21, 0x22, 0x0a, 0xdb, 0x33, 0x7f, 0xe1, 0x42, 0xc3, 0x11, 0x7e, + 0x7a, 0xce, 0xfd, 0x9a, 0x36, 0x9a, 0xd0, 0x70, 0xdf, 0xcf, 0xbe, 0xdb, 0x91, 0xdc, 0x13, 0xa7, + 0xbc, 0xcf, 0xa7, 0xc5, 0x38, 0x87, 0xea, 0x7a, 0x98, 0x2b, 0x3c, 0x10, 0xf2, 0x8b, 0xfb, 0xb0, + 0x73, 0x53, 0xa9, 0x90, 0xaf, 0x14, 0x2a, 0xa5, 0x72, 0xbe, 0x52, 0xdc, 0xa1, 0x39, 0xb5, 0x25, + 0x0d, 0xd3, 0x91, 0x49, 0x2d, 0xcb, 0xa4, 0x0a, 0x2a, 0x53, 0xa9, 0x02, 0x72, 0x29, 0xe4, 0x52, + 0xc8, 0xa5, 0x90, 0x4b, 0x21, 0x97, 0x42, 0x2e, 0x85, 0x5c, 0x0a, 0xb9, 0x14, 0x72, 0x29, 0xe4, + 0x52, 0xc8, 0xa5, 0x90, 0x4b, 0x29, 0xcb, 0xa5, 0x70, 0xd0, 0xca, 0x92, 0xfb, 0xa8, 0xdb, 0x5e, + 0x37, 0xdb, 0x4e, 0x16, 0x5f, 0x39, 0xcf, 0xc5, 0xe0, 0x59, 0x1e, 0xcf, 0x86, 0xbd, 0xfe, 0xdb, + 0x38, 0x63, 0x28, 0x1c, 0xb0, 0x22, 0xa5, 0x7f, 0xc5, 0x64, 0xab, 0xfa, 0x6c, 0xd4, 0x0e, 0x9c, + 0xaf, 0xe2, 0x06, 0x76, 0x34, 0xf6, 0x59, 0x6d, 0x11, 0x89, 0x6e, 0x80, 0xfd, 0x21, 0xd8, 0x1f, + 0x42, 0x42, 0xce, 0xc1, 0xfe, 0x10, 0xb5, 0x00, 0x96, 0xdd, 0x19, 0x2b, 0x81, 0x1d, 0xb0, 0x7e, + 0xf4, 0x80, 0xb3, 0x3e, 0x60, 0xe5, 0xf9, 0x5e, 0x86, 0xef, 0x14, 0xc1, 0xe9, 0x2a, 0x44, 0x02, + 0x9e, 0xf2, 0xc0, 0xa7, 0x3c, 0x00, 0x2a, 0x0f, 0x84, 0x66, 0xe6, 0x86, 0x99, 0xef, 0x14, 0xc9, + 0x76, 0x23, 0x5d, 0xc2, 0x3b, 0xb3, 0xdc, 0x50, 0xa7, 0x28, 0x5c, 0x26, 0xc3, 0x66, 0x1e, 0xcb, + 0x83, 0x66, 0x84, 0x53, 0x6d, 0x61, 0x55, 0x5b, 0x78, 0xd5, 0x16, 0x66, 0xb3, 0x17, 0xf9, 0xf6, + 0x14, 0x2c, 0x0f, 0x66, 0x1d, 0x7e, 0xe3, 0x1b, 0xdd, 0xb1, 0xe9, 0x92, 0xe0, 0x89, 0xea, 0xbe, + 0xa4, 0xd1, 0x7d, 0x15, 0x4d, 0x42, 0xb5, 0x4b, 0x11, 0xca, 0xea, 0x37, 0x74, 0x04, 0x6a, 0xbd, + 0x01, 0x5b, 0x57, 0xe0, 0xd6, 0x1e, 0xc0, 0xb5, 0x07, 0x72, 0xed, 0x01, 0x5d, 0x4d, 0x60, 0x57, + 0x14, 0xe0, 0xe3, 0xa7, 0xa9, 0xac, 0x0e, 0x64, 0x99, 0x7a, 0xa0, 0xac, 0x1e, 0x64, 0x31, 0x10, + 0x97, 0x15, 0xde, 0x52, 0x6d, 0x7d, 0xc8, 0xec, 0x4b, 0x6d, 0x58, 0xda, 0xd3, 0x55, 0x2f, 0xa2, + 0x09, 0x61, 0x13, 0xb7, 0xd7, 0x54, 0x3f, 0x12, 0xdf, 0x5f, 0xe3, 0x9a, 0xbf, 0xe2, 0x88, 0x35, + 0x3f, 0xe5, 0x34, 0xd4, 0x95, 0x50, 0x9b, 0x72, 0xba, 0xea, 0x4c, 0x48, 0xcd, 0xbd, 0x77, 0xdb, + 0x79, 0xb7, 0xe6, 0x56, 0x71, 0x8d, 0x4c, 0xda, 0xa7, 0xbf, 0x06, 0x96, 0x32, 0xeb, 0x80, 0xfe, + 0x9a, 0x00, 0xa5, 0xef, 0xe6, 0x99, 0xb4, 0x67, 0xd7, 0xef, 0x1c, 0x0a, 0xa6, 0xab, 0x25, 0x55, + 0xd2, 0xe2, 0x98, 0x12, 0x4f, 0xef, 0x0a, 0x49, 0x02, 0x92, 0x04, 0x24, 0x09, 0x48, 0x12, 0x90, + 0x24, 0x74, 0x48, 0x12, 0x43, 0x57, 0x7e, 0x9b, 0x55, 0x35, 0xd8, 0x0a, 0xe3, 0xf1, 0xcb, 0x98, + 0x9c, 0x2b, 0x28, 0xbc, 0xe7, 0x99, 0x18, 0xdd, 0x4d, 0x9e, 0xf6, 0xb6, 0x94, 0x6e, 0x9b, 0xbd, + 0xee, 0xa2, 0xa8, 0x24, 0x3a, 0xbe, 0x9f, 0xd6, 0x42, 0xd7, 0xd0, 0xdb, 0x9c, 0xe7, 0x32, 0xa2, + 0x2c, 0x4b, 0xa4, 0xb3, 0x9f, 0x1f, 0x66, 0x15, 0x58, 0x28, 0x49, 0xc6, 0x94, 0x26, 0x5f, 0x4a, + 0x93, 0x2d, 0x35, 0xc9, 0x15, 0x76, 0x5e, 0xa4, 0x19, 0x5e, 0xb2, 0xac, 0x8b, 0x7b, 0x6b, 0x5d, + 0x7d, 0x70, 0x15, 0xd9, 0x86, 0x7d, 0x21, 0xf4, 0xe7, 0x35, 0x85, 0xf9, 0xbc, 0x1b, 0xfb, 0x2f, + 0x0a, 0x99, 0x6f, 0xc0, 0x28, 0x60, 0x07, 0x06, 0x76, 0x60, 0x10, 0x52, 0x37, 0xb0, 0x03, 0x43, + 0x2d, 0x54, 0x64, 0xb8, 0x03, 0xa3, 0xa0, 0x72, 0x0b, 0x46, 0x01, 0x7b, 0x30, 0xb4, 0x85, 0x38, + 0xb5, 0xa1, 0x4e, 0x55, 0xc8, 0x53, 0x1e, 0xfa, 0x94, 0x87, 0x40, 0xe5, 0xa1, 0xd0, 0x4c, 0x89, + 0x00, 0x7b, 0x30, 0xc8, 0x85, 0xcb, 0x64, 0xd8, 0xc4, 0x1e, 0x0c, 0x43, 0xc2, 0xa9, 0xb6, 0xb0, + 0xaa, 0x2d, 0xbc, 0x6a, 0x0b, 0xb3, 0xd9, 0x86, 0xdb, 0x8c, 0xc3, 0xae, 0xb2, 0xf0, 0x1b, 0xdf, + 0x08, 0x7b, 0x30, 0x0c, 0xe4, 0xb5, 0x3a, 0x03, 0xb5, 0xde, 0x80, 0xad, 0x2b, 0x70, 0x6b, 0x0f, + 0xe0, 0xda, 0x03, 0xb9, 0xf6, 0x80, 0xae, 0x26, 0xb0, 0x2b, 0x0a, 0xf0, 0xf1, 0xd3, 0xc4, 0x1e, + 0x8c, 0xac, 0x6f, 0x89, 0x3d, 0x18, 0xdb, 0x87, 0xb0, 0x89, 0xdb, 0x63, 0x0f, 0x06, 0xf6, 0x60, + 0x68, 0x9a, 0x72, 0xd8, 0x83, 0x81, 0x3d, 0x18, 0x66, 0x70, 0x0d, 0xec, 0xc1, 0xc0, 0x1e, 0x0c, + 0x33, 0xa6, 0x2b, 0xf6, 0x60, 0x40, 0x92, 0x80, 0x24, 0x01, 0x49, 0x02, 0x92, 0xc4, 0xae, 0x49, + 0x12, 0xd8, 0x83, 0x61, 0x3a, 0x3b, 0xc0, 0x1e, 0x8c, 0x35, 0xee, 0xa7, 0xb7, 0xa8, 0xb4, 0x30, + 0xab, 0x92, 0x2e, 0x60, 0x17, 0x86, 0xf2, 0x39, 0x87, 0x5d, 0x18, 0x26, 0xa4, 0x57, 0xd8, 0x85, + 0x91, 0x6e, 0x80, 0x21, 0xb9, 0x0f, 0xa3, 0x80, 0x8d, 0x18, 0xe6, 0x4c, 0x6d, 0x12, 0x53, 0x7a, + 0x17, 0x76, 0x62, 0x70, 0xd1, 0x65, 0x0f, 0xd9, 0x6d, 0xc3, 0x08, 0x7f, 0x7d, 0x36, 0x7b, 0x30, + 0x0e, 0xb1, 0x07, 0x03, 0x7b, 0x30, 0x88, 0xaa, 0x18, 0xd8, 0x83, 0x91, 0xad, 0xca, 0x10, 0xcf, + 0xfb, 0x01, 0x73, 0x7b, 0x3e, 0xeb, 0x65, 0x31, 0xe9, 0x67, 0x42, 0x41, 0x06, 0x75, 0x0c, 0xd6, + 0x65, 0x04, 0x6c, 0x1f, 0x3e, 0x84, 0xc9, 0x98, 0x13, 0x06, 0xca, 0x1d, 0x00, 0x9c, 0x6c, 0x4a, + 0xc2, 0x33, 0x2d, 0x01, 0xcf, 0x7c, 0xd3, 0x5f, 0x1e, 0x80, 0x03, 0xc0, 0x01, 0xe0, 0xa4, 0xf0, + 0x14, 0xb2, 0xdb, 0xf4, 0xc7, 0xfb, 0x43, 0x05, 0xbb, 0xfd, 0x78, 0x66, 0xab, 0x59, 0x19, 0xaf, + 0x45, 0x62, 0x9b, 0x1f, 0xb9, 0x20, 0xa7, 0x3c, 0xd8, 0x29, 0x0f, 0x7a, 0xca, 0x83, 0x5f, 0x76, + 0x6a, 0xcf, 0x5e, 0x86, 0x32, 0x64, 0xe6, 0x6b, 0x7d, 0xb1, 0xdf, 0x8c, 0xb8, 0x90, 0xa5, 0x42, + 0x96, 0x3e, 0x13, 0x45, 0xb1, 0xe3, 0x0c, 0x6f, 0xa1, 0xa6, 0x96, 0x58, 0xc1, 0xba, 0x93, 0xca, + 0x5a, 0x61, 0xd5, 0xa5, 0x2e, 0x8a, 0x6b, 0x81, 0x75, 0xd4, 0x5f, 0xaa, 0x28, 0xc1, 0x52, 0x59, + 0xdb, 0xab, 0x6b, 0x8a, 0xe4, 0x8e, 0x0b, 0x85, 0x52, 0xb9, 0x50, 0x38, 0x2c, 0x1f, 0x95, 0x0f, + 0x2b, 0xc5, 0x62, 0xae, 0x94, 0x2b, 0x6e, 0xf1, 0xac, 0x31, 0x74, 0x59, 0xb7, 0x69, 0xca, 0xb2, + 0x4c, 0x06, 0xd9, 0xae, 0x2b, 0xbd, 0x3b, 0xde, 0xb1, 0x67, 0x07, 0x83, 0x33, 0x05, 0x89, 0xc6, + 0xe2, 0x1d, 0x91, 0x74, 0x20, 0xe9, 0x40, 0xd2, 0x81, 0xa4, 0xc3, 0xc0, 0xa4, 0xa3, 0xed, 0x79, + 0x03, 0xe6, 0x0a, 0x05, 0x59, 0x47, 0x2e, 0xb7, 0xc3, 0x20, 0xd5, 0x19, 0x8c, 0x02, 0xc9, 0x7c, + 0x7b, 0xc0, 0x03, 0x05, 0x7d, 0xaf, 0xe6, 0xee, 0x06, 0x70, 0x02, 0x38, 0x01, 0x9c, 0x00, 0x4e, + 0x06, 0x82, 0x13, 0x1f, 0xde, 0x17, 0x6c, 0xb7, 0xdb, 0xf5, 0x59, 0x10, 0xa8, 0x40, 0xa8, 0x2c, + 0x85, 0xb1, 0x4b, 0x57, 0x4a, 0xe6, 0x8b, 0xcc, 0xa5, 0x31, 0xeb, 0xbf, 0xfd, 0xfd, 0xdb, 0x43, + 0xbb, 0xd2, 0x7c, 0xba, 0xcd, 0xd9, 0x95, 0x66, 0x78, 0x99, 0x9b, 0x7e, 0x0b, 0xaf, 0xf3, 0xb7, + 0x87, 0x76, 0x61, 0x76, 0x5d, 0xbc, 0x3d, 0xb4, 0x8b, 0xcd, 0x83, 0x7f, 0xff, 0xfd, 0x70, 0xf0, + 0xeb, 0x68, 0xbc, 0xfe, 0x07, 0xff, 0xb2, 0x4c, 0xcb, 0x69, 0x51, 0xaa, 0xbc, 0x86, 0xbc, 0xb5, + 0x6d, 0xa5, 0xca, 0x46, 0x70, 0xc5, 0x6c, 0xaa, 0x0a, 0x93, 0xc1, 0x35, 0x83, 0xea, 0x42, 0xb0, + 0x43, 0xb0, 0x43, 0xb0, 0x43, 0xb0, 0x43, 0xac, 0x97, 0xbe, 0xf6, 0x16, 0x58, 0x2f, 0xa5, 0x07, + 0x2f, 0x89, 0xdb, 0x61, 0xbd, 0x34, 0x2d, 0x42, 0x89, 0xf5, 0xd2, 0xed, 0x9a, 0x35, 0x58, 0x2f, + 0x35, 0x2e, 0xbd, 0x18, 0x78, 0x1d, 0x77, 0x60, 0x4f, 0xb8, 0x59, 0xf6, 0x39, 0xc6, 0x8b, 0x7b, + 0x21, 0xd1, 0x40, 0xa2, 0x81, 0x44, 0x03, 0x89, 0x86, 0xa1, 0x89, 0xc6, 0x51, 0x5e, 0x41, 0xa2, + 0x51, 0x46, 0xa2, 0x81, 0x44, 0x03, 0x89, 0x06, 0x12, 0x8d, 0x57, 0x4c, 0x11, 0xd5, 0x4d, 0x55, + 0x91, 0x5e, 0x20, 0xbd, 0x78, 0xcd, 0x34, 0xb9, 0x63, 0xdd, 0xec, 0xf3, 0x8a, 0xc9, 0x4d, 0x90, + 0x50, 0x20, 0xa1, 0x40, 0x42, 0x81, 0x84, 0x02, 0x09, 0x05, 0x12, 0x0a, 0x24, 0x14, 0x48, 0x28, + 0x90, 0x50, 0x20, 0xa1, 0x40, 0x42, 0xb1, 0x7d, 0x09, 0x85, 0x60, 0x0f, 0xd2, 0xfe, 0xe6, 0x29, + 0x68, 0x20, 0x11, 0xdf, 0x09, 0xa9, 0x05, 0x52, 0x0b, 0xa4, 0x16, 0x48, 0x2d, 0x0c, 0x4c, 0x2d, + 0xf8, 0x50, 0x65, 0xc1, 0x7c, 0x25, 0xc3, 0x7b, 0x44, 0xcf, 0xcc, 0xf8, 0xf4, 0x42, 0xf1, 0x66, + 0x86, 0xc4, 0x18, 0x1d, 0x2b, 0xb8, 0x97, 0xaa, 0xcd, 0x0d, 0xf1, 0x0d, 0xb7, 0x65, 0x93, 0x43, + 0xb6, 0x04, 0x4f, 0x51, 0x8a, 0xa4, 0xd6, 0x89, 0x4a, 0x70, 0xa2, 0x74, 0x9d, 0xc8, 0xb5, 0x7b, + 0x55, 0xfb, 0x73, 0xf3, 0x57, 0xee, 0x7d, 0x61, 0x7c, 0x72, 0xf0, 0xab, 0x3c, 0x5e, 0x7c, 0xf1, + 0x69, 0xd9, 0xdb, 0x72, 0xef, 0xcb, 0xe3, 0x93, 0x15, 0x3f, 0x29, 0x8d, 0x4f, 0x5e, 0xf9, 0x3b, + 0x8a, 0xe3, 0xfd, 0xc4, 0x5b, 0x27, 0xaf, 0xe7, 0x57, 0x7d, 0xa0, 0xb0, 0xe2, 0x03, 0x47, 0xab, + 0x3e, 0x70, 0xb4, 0xe2, 0x03, 0x2b, 0x4d, 0xca, 0xaf, 0xf8, 0x40, 0x71, 0xfc, 0x94, 0x78, 0xff, + 0xfe, 0xf2, 0xb7, 0x96, 0xc6, 0x07, 0x4f, 0xab, 0x7e, 0x56, 0x1e, 0x3f, 0x9d, 0x1c, 0x6c, 0x41, + 0x48, 0x41, 0xae, 0x9b, 0x41, 0xae, 0xeb, 0xf9, 0xbc, 0x9f, 0xa1, 0x1a, 0xf9, 0x9c, 0x5d, 0x85, + 0xf7, 0x41, 0x9e, 0x8b, 0x3c, 0x17, 0x79, 0x2e, 0xf2, 0x5c, 0x03, 0xf3, 0xdc, 0x76, 0x7f, 0x68, + 0x87, 0x51, 0xcc, 0x9e, 0x1e, 0x3d, 0x91, 0xf1, 0x41, 0x68, 0x2a, 0x0e, 0x3e, 0xcb, 0xf8, 0xa0, + 0x33, 0x93, 0x10, 0xd0, 0x95, 0x9e, 0x6f, 0xf3, 0xae, 0x2a, 0x20, 0x9c, 0xdd, 0x0e, 0x78, 0x08, + 0x3c, 0x04, 0x1e, 0x02, 0x0f, 0x0d, 0xc4, 0x43, 0xb4, 0x4a, 0xd9, 0x61, 0x15, 0xb1, 0x89, 0x53, + 0xd9, 0xd2, 0x08, 0x65, 0x5b, 0x7c, 0x2a, 0x5b, 0x06, 0x87, 0x96, 0xd2, 0x3c, 0x21, 0x47, 0x8e, + 0x84, 0x60, 0x03, 0x9b, 0x89, 0x8e, 0x3b, 0x0c, 0x46, 0x83, 0x6c, 0x86, 0xf3, 0xf9, 0x38, 0xfc, + 0x65, 0x77, 0xc3, 0xf9, 0x39, 0x38, 0x3f, 0x87, 0x04, 0x2b, 0xc4, 0xf9, 0x39, 0x6a, 0x01, 0x24, + 0xb3, 0xf3, 0x73, 0xc2, 0x30, 0x13, 0x64, 0x9f, 0x0e, 0xcf, 0x6e, 0x94, 0x6d, 0x22, 0x9c, 0x43, + 0x22, 0x8c, 0x44, 0x18, 0x89, 0xf0, 0x2e, 0x25, 0xc2, 0x59, 0x85, 0xc6, 0x85, 0x10, 0x99, 0xfd, + 0x44, 0x9e, 0x8f, 0x94, 0x59, 0xcf, 0xe2, 0x6c, 0x03, 0xa6, 0xb2, 0xc0, 0xa9, 0x32, 0x80, 0xea, + 0x09, 0xa4, 0xaa, 0x03, 0xaa, 0xb6, 0xc0, 0xaa, 0x2d, 0xc0, 0x6a, 0x0b, 0xb4, 0xd9, 0x06, 0xdc, + 0x8c, 0x03, 0xaf, 0xb2, 0x00, 0xfc, 0xac, 0x72, 0xc8, 0x2c, 0xcf, 0x60, 0x59, 0xe9, 0xe5, 0x59, + 0x1c, 0x5d, 0xab, 0x39, 0x2c, 0x67, 0x9e, 0xaa, 0x53, 0x08, 0xd3, 0x7a, 0xc3, 0xb5, 0xae, 0xb0, + 0xad, 0x3d, 0x7c, 0x6b, 0x0f, 0xe3, 0xda, 0xc3, 0xb9, 0x9a, 0xb0, 0xae, 0x28, 0xbc, 0x2b, 0x0f, + 0xf3, 0xcf, 0xbc, 0x3b, 0xeb, 0x15, 0xae, 0xdf, 0xb3, 0xf0, 0x6c, 0xab, 0x3e, 0x7e, 0x17, 0xfc, + 0x0f, 0x15, 0xdf, 0x56, 0x15, 0x47, 0xa7, 0x00, 0x06, 0x34, 0x40, 0x41, 0x37, 0x38, 0x90, 0x01, + 0x09, 0x32, 0x60, 0x41, 0x06, 0x34, 0xd4, 0x82, 0x87, 0x62, 0x10, 0x89, 0x9f, 0xf2, 0xb5, 0x8e, + 0xd8, 0x3e, 0xe7, 0xf7, 0xbc, 0xcb, 0x84, 0xe4, 0xf2, 0x31, 0xbb, 0x06, 0xa2, 0xaf, 0xe2, 0xf9, + 0x45, 0x0d, 0xf7, 0xae, 0x45, 0x7f, 0xfa, 0x47, 0x37, 0xd0, 0x18, 0x7a, 0x66, 0x03, 0x71, 0x7d, + 0x73, 0x71, 0x71, 0x76, 0xde, 0x3a, 0xbb, 0xf8, 0x54, 0xbd, 0xbc, 0xba, 0x39, 0xaf, 0x5e, 0xd7, + 0xea, 0x17, 0xad, 0xeb, 0xff, 0x5d, 0x9e, 0xe9, 0x0a, 0x45, 0xd3, 0xae, 0x05, 0x81, 0xb2, 0xbd, + 0x32, 0xcb, 0xbe, 0x7e, 0x69, 0xbb, 0xf3, 0xdc, 0xd0, 0x5c, 0x35, 0xae, 0xcf, 0x5a, 0x97, 0xf5, + 0xf3, 0xda, 0xa7, 0xff, 0xb5, 0xc2, 0x61, 0xb2, 0xb4, 0x19, 0x36, 0xd6, 0x72, 0xe7, 0xe6, 0xb6, + 0xc7, 0x7d, 0x24, 0x43, 0x6f, 0x63, 0x09, 0xd9, 0x16, 0xf4, 0xac, 0xbc, 0xaf, 0xce, 0x42, 0x9f, + 0x65, 0x15, 0x29, 0xd1, 0x8b, 0x41, 0xf4, 0x3d, 0x8b, 0x62, 0x20, 0x7d, 0x13, 0x4a, 0x45, 0xfb, + 0x9f, 0x60, 0xd4, 0x96, 0x83, 0xfb, 0x40, 0x83, 0xaa, 0x19, 0xdd, 0x78, 0xcb, 0x75, 0xcd, 0x43, + 0xe8, 0x9a, 0xdb, 0x95, 0xba, 0x42, 0xd7, 0x84, 0xae, 0x99, 0xea, 0xd3, 0x54, 0xae, 0x6b, 0x86, + 0x91, 0x57, 0x9f, 0xb2, 0x19, 0xdd, 0x5f, 0x8f, 0xb6, 0x99, 0x83, 0xb6, 0xb9, 0xe5, 0xc0, 0xa0, + 0x1b, 0x20, 0xc8, 0x00, 0x05, 0x19, 0xc0, 0x20, 0x03, 0x1c, 0x9a, 0x72, 0x5c, 0xc5, 0x9e, 0xaf, + 0x1a, 0x50, 0xe2, 0x1b, 0xfb, 0xec, 0xce, 0x93, 0xcc, 0x66, 0xa2, 0x3b, 0xf4, 0x78, 0x78, 0xb4, + 0xae, 0x66, 0x6d, 0x2f, 0x61, 0x91, 0xa6, 0x89, 0xaf, 0x07, 0x7c, 0xb4, 0x83, 0x10, 0x05, 0x30, + 0xa2, 0x05, 0x4a, 0x54, 0xc0, 0x89, 0x1c, 0x48, 0x91, 0x03, 0x2b, 0x72, 0xa0, 0xa5, 0x07, 0xbc, + 0x34, 0x81, 0x98, 0x76, 0x30, 0x5b, 0x05, 0x6a, 0xfa, 0x3d, 0x76, 0x05, 0xb6, 0xe9, 0xf6, 0x5b, + 0xbd, 0x10, 0x47, 0x06, 0xea, 0x28, 0x41, 0x1e, 0x4d, 0xe8, 0xa3, 0x06, 0x81, 0x64, 0xa1, 0x90, + 0x2c, 0x24, 0x92, 0x85, 0x46, 0xbd, 0x10, 0xa9, 0x19, 0x2a, 0xc9, 0x40, 0x66, 0x6c, 0x08, 0x19, + 0xcc, 0x4c, 0x04, 0x42, 0x22, 0xa0, 0xb9, 0x08, 0x9e, 0x87, 0x44, 0xcc, 0xa1, 0x02, 0xa2, 0x14, + 0xc1, 0x94, 0x36, 0xa8, 0x52, 0x05, 0x57, 0xf2, 0x20, 0x4b, 0x1e, 0x6c, 0xc9, 0x83, 0x2e, 0x0d, + 0xf0, 0x25, 0x02, 0xc2, 0xf1, 0x68, 0x69, 0x2b, 0x34, 0xfd, 0x63, 0xdc, 0x1a, 0x30, 0xb7, 0xa7, + 0xa7, 0xf8, 0xf4, 0x8f, 0x39, 0x64, 0x99, 0x90, 0x4d, 0x97, 0x51, 0xad, 0xd3, 0x87, 0x0f, 0x61, + 0x71, 0x91, 0x13, 0x73, 0x87, 0x77, 0xf0, 0x36, 0x22, 0x9e, 0xa6, 0x78, 0x67, 0xe6, 0xab, 0x5d, + 0x4c, 0xe5, 0xce, 0x4d, 0x43, 0x04, 0x9a, 0x24, 0xc7, 0xcc, 0x83, 0x63, 0x82, 0x63, 0x82, 0x63, + 0x82, 0x63, 0x82, 0x63, 0x1a, 0x2e, 0xf8, 0xc4, 0x06, 0xb9, 0x01, 0xbd, 0xa0, 0x30, 0x0b, 0xa5, + 0x6e, 0x40, 0x2d, 0x1a, 0xd0, 0x12, 0x7f, 0x92, 0x00, 0x4d, 0xcd, 0x30, 0x82, 0x40, 0x6d, 0x06, + 0x60, 0x53, 0x07, 0x6e, 0x63, 0x00, 0xdc, 0x18, 0x20, 0x37, 0x06, 0xd0, 0x69, 0x01, 0x3b, 0x31, + 0x80, 0x8f, 0x47, 0x91, 0x9c, 0x98, 0xb4, 0x04, 0x5d, 0x6d, 0x31, 0xba, 0x6b, 0x33, 0x9f, 0x62, + 0xd8, 0x8b, 0x80, 0xb6, 0x4c, 0xd0, 0xb4, 0x86, 0x2b, 0xfa, 0x4c, 0xeb, 0x96, 0xdf, 0xdf, 0x7d, + 0xd1, 0x84, 0x89, 0xe9, 0x83, 0xfb, 0xc2, 0x05, 0x59, 0x1c, 0x23, 0xce, 0xf0, 0x12, 0x66, 0xce, + 0x8e, 0xcb, 0xa7, 0x6e, 0xa7, 0x86, 0xd3, 0xf5, 0xb7, 0x04, 0x41, 0xe6, 0x5d, 0xc7, 0x7d, 0x80, + 0xeb, 0xa4, 0xec, 0x3a, 0x85, 0x7c, 0xa5, 0x50, 0x29, 0x95, 0xf3, 0x95, 0x22, 0x7c, 0x68, 0x3b, + 0x39, 0x21, 0x5d, 0xab, 0x9a, 0xef, 0xf0, 0x7c, 0x88, 0xc7, 0x60, 0x7a, 0x25, 0x51, 0x09, 0x06, + 0x4f, 0xac, 0x34, 0x8a, 0x38, 0x10, 0x40, 0x25, 0xdb, 0x64, 0xae, 0x41, 0x25, 0xdb, 0xc8, 0x23, + 0xa0, 0x92, 0xa5, 0x6c, 0x28, 0x54, 0xb2, 0x2d, 0xc8, 0x71, 0x0c, 0x50, 0xc9, 0xf8, 0x50, 0xc1, + 0x79, 0x86, 0x9b, 0x22, 0x6d, 0xae, 0x42, 0xd0, 0xb6, 0x68, 0x6c, 0x21, 0x93, 0xbd, 0x79, 0xe6, + 0x29, 0x39, 0x4b, 0x33, 0xb5, 0x39, 0x78, 0x4c, 0xd8, 0x46, 0x55, 0x67, 0x79, 0x6e, 0x6c, 0xe8, + 0xb6, 0x9c, 0x05, 0xba, 0x5d, 0x09, 0x32, 0x51, 0xf8, 0x34, 0x2b, 0x98, 0x95, 0x10, 0xcc, 0x76, + 0x33, 0x98, 0xb9, 0x76, 0xaf, 0x6a, 0x7f, 0x6e, 0xfe, 0xca, 0xbd, 0x2f, 0x8c, 0x4f, 0x0e, 0x7e, + 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2d, 0x7b, 0x5b, 0xee, 0x7d, 0x79, 0x7c, 0xb2, 0xe2, 0x27, 0xa5, + 0xf1, 0xc9, 0x2b, 0x7f, 0x47, 0x71, 0xbc, 0x9f, 0x78, 0xeb, 0xe4, 0xf5, 0xfc, 0xaa, 0x0f, 0x14, + 0x56, 0x7c, 0xe0, 0x68, 0xd5, 0x07, 0x8e, 0x56, 0x7c, 0x60, 0xa5, 0x49, 0xf9, 0x15, 0x1f, 0x28, + 0x8e, 0x9f, 0x12, 0xef, 0xdf, 0x5f, 0xfe, 0xd6, 0xd2, 0xf8, 0xe0, 0x69, 0xd5, 0xcf, 0xca, 0xe3, + 0xa7, 0x93, 0x03, 0x84, 0x76, 0xb3, 0xf3, 0xb4, 0x3d, 0x68, 0xc4, 0xc4, 0x2d, 0xa1, 0x52, 0x50, + 0xaa, 0xa9, 0xbb, 0xf0, 0x1f, 0xed, 0x22, 0xdf, 0x7d, 0x38, 0xec, 0x69, 0x1b, 0x7d, 0x77, 0x16, + 0xbb, 0x4f, 0x2d, 0xbe, 0xa0, 0xb2, 0x5b, 0x31, 0x7d, 0x07, 0xd8, 0xed, 0x4d, 0xfb, 0xff, 0xb0, + 0x47, 0x42, 0xab, 0x2f, 0xd6, 0x39, 0x0f, 0x64, 0x55, 0x4a, 0x22, 0x8d, 0x04, 0xbe, 0x70, 0x71, + 0x36, 0x60, 0x77, 0x2c, 0xec, 0x29, 0x27, 0x46, 0x83, 0x01, 0x81, 0x3d, 0x67, 0x5f, 0xdc, 0x07, + 0x7a, 0x46, 0xd5, 0xfd, 0x2e, 0xf3, 0x59, 0xf7, 0xe3, 0x63, 0x64, 0xd2, 0x4e, 0xfb, 0x14, 0x31, + 0x18, 0xdb, 0x36, 0xf8, 0xb2, 0x48, 0x6c, 0xfc, 0xf4, 0x47, 0x1d, 0x29, 0x22, 0x41, 0xe0, 0x22, + 0x7c, 0x46, 0xb5, 0xe8, 0x11, 0xb5, 0x2e, 0xa3, 0x07, 0xd3, 0xfa, 0xd8, 0x1f, 0xb6, 0x1a, 0xbc, + 0xdd, 0x9a, 0x84, 0xb4, 0x2b, 0x26, 0x5b, 0xd7, 0xd3, 0x3f, 0xf8, 0xec, 0xe5, 0xc3, 0x88, 0x5e, + 0x6b, 0x5d, 0x4d, 0xff, 0xf8, 0x56, 0x63, 0xfa, 0xb7, 0x9e, 0x91, 0xd8, 0xeb, 0x3b, 0x46, 0xaf, + 0xb9, 0x5d, 0x8a, 0x17, 0xa6, 0xc7, 0x09, 0x3d, 0xce, 0xa2, 0x7e, 0xaa, 0x6a, 0x98, 0xa6, 0x56, + 0xc0, 0xfa, 0x13, 0xc6, 0x61, 0x0f, 0x78, 0x40, 0xa1, 0xbf, 0xee, 0xbc, 0x39, 0x68, 0xae, 0xab, + 0xc5, 0x00, 0x34, 0xd7, 0x5d, 0xb4, 0x06, 0xcd, 0x75, 0x57, 0x18, 0x84, 0xe6, 0xba, 0x20, 0x3c, + 0x2f, 0x9e, 0xbe, 0xf6, 0xe6, 0xba, 0x2f, 0xf1, 0x83, 0x4e, 0x67, 0xdd, 0x39, 0xab, 0xd0, 0x56, + 0x17, 0x6d, 0x75, 0x4d, 0x00, 0x3d, 0x6a, 0xe0, 0x47, 0x16, 0x04, 0xc9, 0x82, 0x21, 0x59, 0x50, + 0xd4, 0xaf, 0x43, 0xec, 0xa1, 0xad, 0xee, 0xb3, 0x21, 0xb3, 0xcc, 0xde, 0xe6, 0x5d, 0x7a, 0x2d, + 0xcf, 0x5e, 0x1a, 0x87, 0xe6, 0xba, 0x94, 0xa1, 0x94, 0x22, 0xa4, 0xd2, 0x86, 0x56, 0xaa, 0x10, + 0x4b, 0x1e, 0x6a, 0xc9, 0x43, 0x2e, 0x79, 0xe8, 0xa5, 0x01, 0xc1, 0x44, 0xa0, 0x38, 0x1e, 0x2d, + 0x34, 0xd7, 0x7d, 0x43, 0x26, 0x49, 0xba, 0xb9, 0xee, 0x4b, 0xfa, 0x80, 0xba, 0x18, 0x2a, 0xce, + 0x36, 0x53, 0x44, 0x02, 0x82, 0x2d, 0x76, 0x67, 0x96, 0xa1, 0xcb, 0x2e, 0xc8, 0x26, 0xc8, 0x26, + 0xc8, 0x26, 0xc8, 0x26, 0xc8, 0xe6, 0x56, 0xeb, 0x3f, 0x8b, 0xa0, 0x4c, 0xb7, 0x95, 0xc8, 0xcc, + 0x40, 0x9a, 0x9d, 0x44, 0x72, 0xe8, 0x24, 0x62, 0x2c, 0x64, 0x9b, 0x01, 0xdd, 0xd4, 0x21, 0xdc, + 0x18, 0x28, 0x37, 0x06, 0xd2, 0x8d, 0x81, 0x76, 0x5a, 0x10, 0x4f, 0x0c, 0xea, 0xc9, 0x42, 0x7e, + 0x6c, 0x18, 0x17, 0x5d, 0x46, 0xb7, 0x79, 0xe3, 0x8b, 0xc5, 0xa0, 0x89, 0x99, 0x44, 0x5d, 0x94, + 0x76, 0x67, 0x49, 0xb2, 0x74, 0xc0, 0x04, 0x5a, 0x60, 0x16, 0x3d, 0x30, 0x85, 0x26, 0x18, 0x47, + 0x17, 0x8c, 0xa3, 0x0d, 0xc6, 0xd1, 0x07, 0x9a, 0x34, 0x82, 0x28, 0x9d, 0x88, 0x47, 0x97, 0x6c, + 0x83, 0xb2, 0x44, 0xdc, 0xa4, 0xb7, 0x8c, 0xb5, 0x32, 0x9b, 0x2f, 0xd3, 0x6e, 0xae, 0xb2, 0xb8, + 0xcc, 0x35, 0x21, 0x46, 0xe8, 0x59, 0x61, 0xaa, 0x1b, 0x13, 0x3b, 0x70, 0x72, 0xa5, 0xff, 0x52, + 0x3a, 0x80, 0x72, 0xa5, 0xe7, 0x52, 0x27, 0xe0, 0x79, 0x10, 0x70, 0x10, 0x70, 0x10, 0x70, 0x10, + 0x70, 0x10, 0xf0, 0x2d, 0x21, 0xe0, 0x54, 0x75, 0xbd, 0xd8, 0x40, 0xda, 0xfa, 0x5e, 0x22, 0xba, + 0x53, 0xd6, 0xf9, 0x16, 0xe9, 0x06, 0xf5, 0x93, 0x64, 0xa8, 0xeb, 0x7e, 0x26, 0xd1, 0x0f, 0x33, + 0x69, 0x88, 0x69, 0x74, 0xc4, 0x58, 0x5a, 0x62, 0x2c, 0x3d, 0x31, 0x96, 0xa6, 0xd0, 0xa6, 0x2b, + 0xc4, 0x69, 0x4b, 0x3c, 0xea, 0xe4, 0xf5, 0xc3, 0x44, 0xdc, 0x1d, 0x71, 0x21, 0x4b, 0x05, 0x13, + 0x62, 0x6e, 0xc4, 0x12, 0x8e, 0x0d, 0x30, 0x95, 0xf6, 0x99, 0xa1, 0x8b, 0x5f, 0x66, 0x60, 0xd8, + 0x9e, 0x29, 0x67, 0x8a, 0x1a, 0x4a, 0x6f, 0x13, 0x66, 0x1b, 0x72, 0xe6, 0x68, 0xc2, 0x6e, 0x83, + 0xce, 0x4f, 0x34, 0x0c, 0xde, 0xe6, 0x5d, 0xd1, 0x7d, 0x80, 0x2b, 0x2a, 0x76, 0xc5, 0xdc, 0x71, + 0xa1, 0x50, 0x2a, 0x17, 0x0a, 0x87, 0xe5, 0xa3, 0xf2, 0x61, 0xa5, 0x58, 0xcc, 0x95, 0x72, 0x45, + 0x78, 0x27, 0xa8, 0xb1, 0x59, 0x56, 0x36, 0xdf, 0xe1, 0xf9, 0x6d, 0x19, 0x3a, 0x58, 0x03, 0xaf, + 0xe3, 0x0e, 0x6c, 0x2e, 0x24, 0xf3, 0x7b, 0x2e, 0xad, 0x06, 0x18, 0x7f, 0x4c, 0x81, 0x96, 0xd8, + 0x0e, 0xc1, 0x34, 0x0d, 0x33, 0x21, 0x98, 0x66, 0x38, 0x6b, 0x21, 0x98, 0x66, 0xea, 0x61, 0x10, + 0x4c, 0x15, 0x1b, 0x0e, 0xc1, 0x74, 0x07, 0x33, 0x4a, 0x43, 0x05, 0xd3, 0xa3, 0xbc, 0x41, 0x82, + 0x69, 0x19, 0x82, 0x69, 0xca, 0x5f, 0x10, 0x4c, 0x41, 0x6f, 0x97, 0x98, 0x0d, 0xc1, 0x14, 0xf0, + 0xf6, 0x3b, 0x57, 0x84, 0x60, 0xaa, 0xdc, 0x15, 0x0b, 0xf9, 0x4a, 0xa1, 0x52, 0x2a, 0xe7, 0x2b, + 0x90, 0x49, 0x41, 0x88, 0x0d, 0xb3, 0x12, 0x32, 0xe9, 0xd6, 0x61, 0xc2, 0x4c, 0x6a, 0x7c, 0x79, + 0xd4, 0xbf, 0x69, 0x32, 0xe9, 0x4b, 0xdb, 0x21, 0x93, 0xa6, 0x61, 0x26, 0x64, 0xd2, 0x0c, 0x67, + 0x2d, 0x64, 0xd2, 0x4c, 0x3d, 0x0c, 0x32, 0xa9, 0x62, 0xc3, 0x21, 0x93, 0xee, 0x60, 0x1e, 0x69, + 0xa0, 0x4c, 0x6a, 0x10, 0x4f, 0x78, 0xc9, 0x15, 0x72, 0x26, 0x94, 0x97, 0x5e, 0xba, 0x52, 0x32, + 0x5f, 0x18, 0xa3, 0x97, 0x5a, 0xff, 0xed, 0xef, 0xdf, 0x1e, 0xda, 0x95, 0xe6, 0xd3, 0x6d, 0xce, + 0xae, 0x34, 0xc3, 0xcb, 0xdc, 0xf4, 0x5b, 0x78, 0x9d, 0xbf, 0x3d, 0xb4, 0x0b, 0xb3, 0xeb, 0xe2, + 0xed, 0xa1, 0x5d, 0x6c, 0x1e, 0xfc, 0xfb, 0xef, 0x87, 0x83, 0x5f, 0x47, 0xe3, 0xf5, 0x3f, 0xf8, + 0x97, 0x85, 0xd4, 0x0e, 0xa9, 0x9d, 0xbe, 0xd4, 0xae, 0x64, 0x70, 0x6a, 0x57, 0x42, 0x6a, 0x87, + 0xd4, 0x0e, 0xa9, 0x1d, 0x52, 0x3b, 0xa4, 0x76, 0x48, 0xed, 0x90, 0xda, 0x21, 0xb5, 0x5b, 0x91, + 0xda, 0x95, 0x90, 0xda, 0x21, 0xb5, 0x7b, 0x99, 0xda, 0xb9, 0x76, 0xaf, 0x6a, 0x7f, 0x6e, 0xfe, + 0xca, 0xbd, 0x2f, 0x8c, 0x4f, 0x0e, 0x7e, 0x95, 0xc7, 0x8b, 0x2f, 0x3e, 0x2d, 0x7b, 0x5b, 0xee, + 0x7d, 0x79, 0x7c, 0xb2, 0xe2, 0x27, 0xa5, 0xf1, 0xc9, 0x2b, 0x7f, 0x47, 0x71, 0xbc, 0x9f, 0x78, + 0xeb, 0xe4, 0xf5, 0xfc, 0xaa, 0x0f, 0x14, 0x56, 0x7c, 0xe0, 0x68, 0xd5, 0x07, 0x8e, 0x56, 0x7c, + 0x60, 0xa5, 0x49, 0xf9, 0x15, 0x1f, 0x28, 0x8e, 0x9f, 0x12, 0xef, 0xdf, 0x5f, 0xfe, 0xd6, 0xd2, + 0xf8, 0xe0, 0x69, 0xd5, 0xcf, 0xca, 0xe3, 0xa7, 0x93, 0x03, 0x24, 0xba, 0x48, 0x74, 0x75, 0x78, + 0xfc, 0xdd, 0x70, 0x10, 0xd8, 0x6d, 0xcf, 0xa0, 0xf4, 0x36, 0xb6, 0x18, 0x49, 0x2d, 0x92, 0x5a, + 0x24, 0xb5, 0x48, 0x6a, 0x91, 0xd4, 0x22, 0xa9, 0x45, 0x52, 0x8b, 0xa4, 0xf6, 0x45, 0xdc, 0x6d, + 0x7b, 0xde, 0x80, 0xb9, 0xc2, 0xa4, 0x7c, 0x36, 0x07, 0x72, 0xbd, 0x9d, 0xe4, 0x5a, 0x76, 0x0c, + 0xe3, 0xd6, 0xb2, 0x03, 0x6a, 0x0d, 0x6a, 0x0d, 0x6a, 0x0d, 0x6a, 0x0d, 0x6a, 0x0d, 0x6a, 0x0d, + 0x6a, 0x0d, 0x6a, 0xbd, 0xb8, 0x63, 0xfa, 0xd8, 0x20, 0x62, 0x5d, 0xc4, 0x86, 0xe9, 0x94, 0xbf, + 0xb0, 0x61, 0x1a, 0xec, 0x76, 0x89, 0xd9, 0xd8, 0x30, 0x0d, 0x74, 0xfb, 0x9d, 0x2b, 0x62, 0xc3, + 0xb4, 0x72, 0x57, 0x2c, 0xc3, 0x15, 0x41, 0x83, 0xcd, 0xb2, 0x12, 0x35, 0x06, 0x5b, 0x07, 0x05, + 0x91, 0xaa, 0x28, 0x07, 0xa6, 0xe9, 0xa0, 0x72, 0x00, 0x21, 0x34, 0x15, 0x33, 0x21, 0x84, 0x66, + 0x38, 0x57, 0x21, 0x84, 0x66, 0xea, 0x61, 0x10, 0x42, 0x15, 0x1b, 0x0e, 0x21, 0x74, 0x07, 0x53, + 0x45, 0x08, 0xa1, 0x99, 0x93, 0x04, 0x08, 0xa1, 0x69, 0x7f, 0x41, 0x08, 0x05, 0xbb, 0x5d, 0x62, + 0x36, 0x84, 0x50, 0xa0, 0xdb, 0xef, 0x5c, 0x11, 0x42, 0xa8, 0x72, 0x57, 0xcc, 0x17, 0xd1, 0x32, + 0x12, 0x44, 0xd8, 0x30, 0x2b, 0x21, 0x85, 0x6e, 0x1d, 0x18, 0x58, 0x3e, 0xbb, 0xf3, 0x24, 0x33, + 0xb4, 0x67, 0xe4, 0x32, 0xe3, 0x21, 0x90, 0xa6, 0x61, 0x26, 0x04, 0xd2, 0x0c, 0xa7, 0x2d, 0x04, + 0xd2, 0x4c, 0x3d, 0x0c, 0x02, 0xa9, 0x62, 0xc3, 0x21, 0x90, 0xee, 0x60, 0x0a, 0x89, 0xa6, 0x91, + 0xaa, 0xb8, 0x02, 0x3a, 0x8b, 0x64, 0x61, 0x30, 0x9a, 0x46, 0x22, 0xb9, 0xdb, 0x9d, 0xe4, 0xae, + 0x64, 0x72, 0x72, 0x87, 0xb6, 0x91, 0x48, 0xee, 0x90, 0xdc, 0x21, 0xb9, 0x43, 0x72, 0x87, 0xe4, + 0x0e, 0xc9, 0x1d, 0x92, 0xbb, 0x55, 0xc9, 0x1d, 0xda, 0x46, 0x22, 0xb9, 0x9b, 0x4b, 0xee, 0xd0, + 0x36, 0x12, 0x6d, 0x23, 0x91, 0xea, 0xee, 0x44, 0xaa, 0x1b, 0xf0, 0xae, 0x39, 0xa9, 0xed, 0xc4, + 0x58, 0xa4, 0xb2, 0x48, 0x65, 0x91, 0xca, 0x22, 0x95, 0x45, 0x2a, 0x8b, 0x54, 0x16, 0xa9, 0x2c, + 0x52, 0xd9, 0x97, 0xf4, 0xc0, 0xb7, 0x03, 0xde, 0xb5, 0xe5, 0xc4, 0x70, 0x83, 0x32, 0xd9, 0x8a, + 0x01, 0xb6, 0x46, 0x93, 0x01, 0xdb, 0x39, 0x32, 0x9a, 0xba, 0xd3, 0x7d, 0xca, 0x03, 0xb7, 0xcd, + 0x06, 0x96, 0x41, 0x15, 0xf0, 0x06, 0xcd, 0x60, 0x33, 0x67, 0xb2, 0x79, 0x33, 0x3a, 0x31, 0xb3, + 0x47, 0x5c, 0xc8, 0xa3, 0xbc, 0xf5, 0xde, 0xbc, 0xbf, 0x20, 0x9a, 0xdd, 0x65, 0x03, 0x4d, 0x37, + 0x6b, 0xfb, 0x9d, 0xf9, 0xb3, 0x3d, 0x7e, 0xf0, 0x26, 0x6e, 0xcf, 0x33, 0x54, 0xc3, 0xf8, 0xe3, + 0x9f, 0x31, 0xdb, 0x33, 0x94, 0x2b, 0x19, 0xfe, 0x87, 0x18, 0xbc, 0x85, 0xc8, 0xb0, 0xa4, 0xe7, + 0xf7, 0xbe, 0x6d, 0xe0, 0x7e, 0xbf, 0xad, 0xf7, 0xed, 0xc3, 0xc2, 0x71, 0xb1, 0x5c, 0x84, 0x83, + 0x93, 0x71, 0xf0, 0x77, 0xb0, 0x5a, 0xc5, 0x57, 0xf3, 0x1d, 0xc2, 0x3e, 0x08, 0x68, 0x32, 0xdd, + 0x62, 0x62, 0x74, 0xc7, 0x7c, 0x77, 0x12, 0x4d, 0x0c, 0xce, 0xb9, 0x72, 0x05, 0x03, 0x6d, 0x3f, + 0x13, 0xa3, 0xbb, 0x09, 0x41, 0x30, 0x2b, 0x98, 0x98, 0x63, 0xad, 0x19, 0x21, 0xcf, 0x90, 0x50, + 0x67, 0xa0, 0x46, 0x6a, 0x58, 0xa5, 0x5a, 0x22, 0xa6, 0x1d, 0x1b, 0x64, 0xb3, 0x69, 0x95, 0x6b, + 0xb1, 0xe1, 0xa8, 0x60, 0x43, 0x05, 0xdb, 0xd6, 0x40, 0x09, 0x2a, 0x02, 0xb7, 0xf4, 0xf9, 0x51, + 0xae, 0x08, 0x94, 0x26, 0xac, 0xfb, 0xc7, 0xa4, 0xc0, 0x80, 0xc5, 0x7e, 0xd4, 0x04, 0xa6, 0x4d, + 0x4e, 0x50, 0x13, 0x98, 0xb1, 0xd5, 0xa8, 0x09, 0x54, 0x64, 0x38, 0x6a, 0x02, 0xc1, 0x09, 0xcc, + 0x11, 0x0f, 0x0c, 0xac, 0x09, 0x34, 0x4b, 0x0f, 0x35, 0x49, 0xff, 0x34, 0x44, 0xef, 0x24, 0x9c, + 0x04, 0xbc, 0x43, 0x08, 0x5a, 0x03, 0x70, 0x84, 0xf0, 0x64, 0xe8, 0xc7, 0x94, 0x03, 0x90, 0x15, + 0x74, 0xbe, 0xb1, 0x3b, 0x77, 0xe8, 0xca, 0x6f, 0x93, 0xf0, 0xe3, 0x78, 0x43, 0x26, 0x3a, 0x53, + 0x62, 0x6d, 0x0b, 0x26, 0x7f, 0x7a, 0xfe, 0x0f, 0x9b, 0x8b, 0x40, 0xba, 0xa2, 0xc3, 0x9c, 0xc5, + 0x17, 0x82, 0xc4, 0x2b, 0xce, 0xd0, 0xf7, 0xa4, 0xd7, 0xf1, 0x06, 0x41, 0x7c, 0xe5, 0xb4, 0xfb, + 0x43, 0xc7, 0xe7, 0x6d, 0xc7, 0x95, 0xd2, 0xb7, 0x03, 0x26, 0x83, 0xf8, 0xca, 0x91, 0x23, 0x21, + 0xd8, 0xc0, 0x66, 0xa2, 0xe3, 0x0e, 0x83, 0xd1, 0x60, 0xfa, 0xb4, 0xa2, 0x17, 0x83, 0xe8, 0xbb, + 0x13, 0x8c, 0xda, 0x72, 0x70, 0x1f, 0x44, 0xdf, 0x9d, 0x80, 0xf5, 0x27, 0x30, 0x6e, 0x0f, 0x78, + 0x20, 0x83, 0xb9, 0x7f, 0xcd, 0xfe, 0x11, 0xbf, 0xea, 0x04, 0xd2, 0x95, 0x8c, 0x26, 0xc4, 0xd3, + 0xf3, 0x25, 0x5a, 0x16, 0x11, 0xf3, 0xea, 0x09, 0x61, 0x9f, 0x4a, 0xfa, 0xa2, 0xcb, 0xa8, 0x71, + 0x75, 0xeb, 0x9c, 0x07, 0xb2, 0x2a, 0xa5, 0x4f, 0x32, 0xce, 0x58, 0x5f, 0xb8, 0x38, 0x1b, 0xb0, + 0xa9, 0x63, 0x5a, 0x27, 0x7b, 0x62, 0x34, 0x18, 0xbc, 0x27, 0x68, 0xa4, 0xfb, 0x40, 0xdf, 0xc8, + 0xba, 0xdf, 0x65, 0x3e, 0xeb, 0x7e, 0x7c, 0x8c, 0x4c, 0x84, 0xc3, 0x9a, 0x0b, 0xbf, 0x5b, 0x0c, + 0xbb, 0x04, 0xd3, 0x16, 0x2b, 0x90, 0xfe, 0xa8, 0x23, 0x45, 0x94, 0x63, 0x5d, 0x84, 0x8f, 0xaf, + 0x16, 0x3d, 0xbd, 0xd6, 0x65, 0xf4, 0xcc, 0x5a, 0x1f, 0xfb, 0xc3, 0x56, 0x83, 0xb7, 0x5b, 0x93, + 0x68, 0x7a, 0xc5, 0x64, 0xeb, 0x7a, 0xfa, 0x2c, 0xce, 0x5e, 0x3e, 0xa7, 0xe8, 0xb5, 0xd6, 0xd5, + 0xf4, 0xb9, 0xb4, 0xae, 0xc2, 0xbf, 0x79, 0x12, 0x82, 0x67, 0xd7, 0xb4, 0x08, 0x07, 0x1d, 0x58, + 0xa7, 0x61, 0x09, 0x91, 0x38, 0x45, 0x35, 0x3e, 0x6d, 0x61, 0x5c, 0xa2, 0xe1, 0x8f, 0xfa, 0x67, + 0x3f, 0x81, 0x99, 0x6f, 0x85, 0x19, 0x19, 0x95, 0x09, 0xff, 0xbc, 0x11, 0x77, 0x6a, 0x16, 0x91, + 0xc8, 0x30, 0x93, 0xd4, 0x88, 0x98, 0x13, 0xaf, 0xb2, 0xe5, 0x89, 0x18, 0x44, 0x70, 0x35, 0x8d, + 0xf6, 0xaa, 0x19, 0xd5, 0xd5, 0x31, 0xf2, 0xab, 0x60, 0xe4, 0x57, 0xbb, 0xc8, 0xaf, 0x6a, 0x81, + 0xf3, 0xbd, 0x1c, 0xad, 0x53, 0x4e, 0x4b, 0xa3, 0xb1, 0x66, 0x3c, 0xcd, 0x26, 0xd8, 0x54, 0xeb, + 0xb9, 0x8c, 0xf6, 0x85, 0x91, 0xd4, 0x54, 0x41, 0x92, 0x85, 0x32, 0x64, 0x0b, 0x63, 0x28, 0x17, + 0xc2, 0x98, 0x51, 0xf8, 0x42, 0xbd, 0xd0, 0xc5, 0x98, 0xc2, 0x16, 0x63, 0x0a, 0x59, 0x8c, 0x29, + 0x5c, 0xc1, 0xfa, 0xd1, 0xef, 0x46, 0x91, 0x6c, 0x21, 0xca, 0x5c, 0xdf, 0x93, 0x52, 0x81, 0x62, + 0xcc, 0x8b, 0x50, 0x96, 0xe0, 0x76, 0x14, 0xe2, 0x7d, 0x4b, 0x08, 0x57, 0x1d, 0x98, 0xd0, 0x77, + 0xc4, 0x94, 0x3a, 0x68, 0x43, 0x8e, 0xfd, 0x36, 0xa9, 0x6b, 0x00, 0xe5, 0xfd, 0x0e, 0x26, 0xb4, + 0xf5, 0x30, 0xcd, 0x75, 0x72, 0xc7, 0x85, 0x42, 0xa9, 0x5c, 0x28, 0x1c, 0x96, 0x8f, 0xca, 0x87, + 0x95, 0x62, 0x31, 0x57, 0xca, 0x15, 0xe1, 0x4d, 0xdb, 0x49, 0x0d, 0xe9, 0x5a, 0xd5, 0xc4, 0xca, + 0x31, 0xf5, 0x68, 0x6c, 0xfd, 0x64, 0xbc, 0xff, 0x4d, 0xd2, 0x55, 0xcb, 0x22, 0xfb, 0x20, 0x94, + 0xbd, 0xc6, 0x2c, 0x08, 0x65, 0x1b, 0xcc, 0x34, 0x08, 0x65, 0x1b, 0x79, 0x04, 0x84, 0xb2, 0x94, + 0x0d, 0x85, 0x50, 0xb6, 0x05, 0x99, 0x8e, 0x21, 0x42, 0x19, 0xc9, 0x06, 0xc1, 0x84, 0x1b, 0x00, + 0x43, 0x28, 0x7b, 0x73, 0xb6, 0x0f, 0xa1, 0x2c, 0xf5, 0x6c, 0x1f, 0x42, 0xd9, 0xb6, 0xc2, 0xc7, + 0xbc, 0xeb, 0x40, 0x28, 0x4b, 0xdd, 0x75, 0x0a, 0xf9, 0x4a, 0xa1, 0x52, 0x2a, 0xe7, 0x2b, 0x90, + 0xc7, 0xb6, 0x94, 0x10, 0xd2, 0xb5, 0x0a, 0xf2, 0x18, 0x65, 0x4b, 0xb0, 0xb1, 0xe2, 0xf7, 0x76, + 0x6d, 0xd1, 0xc6, 0x0a, 0x3a, 0xdb, 0xaa, 0x09, 0xec, 0xaa, 0x78, 0xb7, 0xc3, 0x4e, 0xf7, 0xbc, + 0x2d, 0x9a, 0x4a, 0x89, 0x26, 0xad, 0xcd, 0xd0, 0x24, 0x37, 0x3f, 0x93, 0xdc, 0xec, 0x4c, 0x6b, + 0x73, 0xb3, 0x6e, 0xb7, 0x22, 0x86, 0x61, 0xdb, 0x83, 0x5d, 0x16, 0x89, 0x3d, 0x70, 0xd9, 0xef, + 0x45, 0xd6, 0x8b, 0xce, 0xfa, 0x30, 0x51, 0xcf, 0x9d, 0x35, 0x85, 0x0b, 0x2a, 0x61, 0xc2, 0xe8, + 0xf0, 0xa0, 0xc7, 0x53, 0xd4, 0xcf, 0x53, 0x0d, 0x73, 0x54, 0xf3, 0x6e, 0x5f, 0x12, 0xbb, 0x7b, + 0x35, 0xef, 0xe6, 0xd5, 0xbe, 0x7b, 0x97, 0x42, 0x25, 0x03, 0xad, 0x8a, 0x05, 0x2a, 0x95, 0x09, + 0xe4, 0x2a, 0x10, 0xc8, 0x55, 0x1a, 0x90, 0xab, 0x28, 0xd8, 0x2d, 0x76, 0xa3, 0x7b, 0xb7, 0xac, + 0xd5, 0xe6, 0xa2, 0xcb, 0x45, 0xdf, 0x0e, 0x08, 0xec, 0x8e, 0x8d, 0x63, 0xd8, 0x4b, 0xa3, 0x74, + 0x8b, 0x3f, 0x24, 0x96, 0xae, 0xc8, 0x14, 0xf1, 0x51, 0x2a, 0xda, 0xa3, 0x59, 0xa4, 0x47, 0xad, + 0x28, 0x8f, 0x6c, 0x11, 0x1e, 0xd9, 0xa2, 0x3b, 0xb2, 0x45, 0x76, 0xbb, 0x2d, 0xc3, 0x93, 0x29, + 0x9a, 0x7b, 0xce, 0xb9, 0xfc, 0x09, 0x42, 0xd9, 0x44, 0x4e, 0x3b, 0x89, 0xb3, 0xb0, 0x0a, 0x01, + 0x5b, 0xa2, 0xc1, 0xa2, 0x51, 0x09, 0x47, 0xb0, 0x87, 0xd2, 0xdd, 0x70, 0x10, 0xd8, 0x03, 0xb7, + 0xcd, 0x06, 0x94, 0x7a, 0x28, 0x11, 0x9a, 0x41, 0x34, 0x67, 0x12, 0xbd, 0x19, 0x95, 0x98, 0x59, + 0xa8, 0xdc, 0x7d, 0x83, 0x69, 0xa8, 0xdc, 0x7d, 0xe3, 0x83, 0x43, 0xe5, 0x6e, 0x7a, 0x66, 0xc6, + 0xfb, 0x74, 0x4b, 0x28, 0x3b, 0xdc, 0x12, 0xd2, 0xfa, 0x7b, 0xdf, 0x41, 0xe9, 0x6e, 0xfa, 0xbe, + 0x73, 0x58, 0x38, 0x2e, 0x96, 0x51, 0xb7, 0xbb, 0x25, 0x39, 0xa7, 0x39, 0x56, 0x35, 0xb1, 0xe1, + 0xcd, 0x48, 0xba, 0x4c, 0xfb, 0x28, 0x32, 0xca, 0x47, 0x8f, 0x11, 0x3d, 0x6a, 0x8c, 0x8e, 0x35, + 0x4d, 0x94, 0xac, 0x53, 0x0c, 0x01, 0xcf, 0x3d, 0x57, 0x87, 0xf7, 0x25, 0xdb, 0xed, 0x76, 0x7d, + 0x16, 0x04, 0x14, 0x55, 0x18, 0x42, 0xbd, 0xe0, 0xac, 0x4b, 0x57, 0x4a, 0xe6, 0x0b, 0x72, 0x29, + 0xb2, 0xf5, 0xdf, 0xfe, 0xb2, 0xc3, 0xf5, 0xcb, 0xe3, 0xc5, 0x17, 0x57, 0x9c, 0xc1, 0x5f, 0x1e, + 0x9f, 0xac, 0xf8, 0x49, 0x69, 0x7c, 0xf2, 0xca, 0xdf, 0x51, 0x5c, 0x71, 0x8e, 0x7f, 0x7e, 0xd5, + 0x07, 0x0a, 0x2b, 0x3e, 0x70, 0xb4, 0xea, 0x03, 0x47, 0x2b, 0x3e, 0xb0, 0xd2, 0xa4, 0xfc, 0x8a, + 0x0f, 0x14, 0xc7, 0x4f, 0x89, 0xf7, 0xef, 0x2f, 0x7f, 0x6b, 0x69, 0x7c, 0xf0, 0xb4, 0xea, 0x67, + 0xe5, 0xf1, 0xd3, 0xc9, 0xc1, 0xc1, 0x5f, 0x16, 0x42, 0x2d, 0x31, 0xe8, 0x69, 0xee, 0x6a, 0x49, + 0xac, 0xc6, 0x52, 0xa7, 0x8e, 0x37, 0xf0, 0xfc, 0x80, 0x4e, 0xf1, 0x44, 0x64, 0x0f, 0xea, 0x26, + 0x50, 0x37, 0xf1, 0x87, 0x99, 0x82, 0xba, 0x89, 0xdf, 0xce, 0x60, 0xd4, 0x4d, 0xac, 0x69, 0x18, + 0xea, 0x26, 0x08, 0x26, 0x60, 0x04, 0xeb, 0x26, 0xc8, 0x2c, 0x51, 0x12, 0x5a, 0x92, 0x24, 0xb6, + 0x04, 0x49, 0x28, 0x5d, 0xa7, 0xb8, 0xc4, 0x48, 0xb5, 0xd7, 0x23, 0xd1, 0xe6, 0x3f, 0x94, 0x17, + 0x3c, 0x28, 0xf5, 0x5d, 0xa5, 0xb8, 0x22, 0x48, 0x7d, 0xaa, 0x53, 0x6d, 0xd6, 0x43, 0x7a, 0xce, + 0x43, 0x2e, 0xa1, 0x20, 0x97, 0xa0, 0x8b, 0xc4, 0x3c, 0xcc, 0xa3, 0x8b, 0xc4, 0xab, 0x8c, 0xa2, + 0xd5, 0x45, 0x62, 0x27, 0x35, 0xbf, 0xa1, 0xcf, 0x7a, 0xcc, 0x67, 0x82, 0xc2, 0x16, 0xc7, 0x59, + 0x56, 0xf5, 0xc2, 0x26, 0xcd, 0x81, 0xe5, 0x94, 0xf5, 0xdc, 0xd1, 0x60, 0x2a, 0x03, 0xe4, 0x0e, + 0x0f, 0xa1, 0x44, 0xee, 0x41, 0x89, 0xfc, 0xc3, 0xdc, 0x85, 0x12, 0xf9, 0xdb, 0x19, 0x0c, 0x25, + 0x72, 0x4d, 0xc3, 0xa0, 0x44, 0x52, 0x24, 0x9c, 0x50, 0x22, 0xff, 0x88, 0x52, 0x50, 0x22, 0x17, + 0xbf, 0xa0, 0x44, 0x1a, 0x2d, 0xcf, 0x40, 0x89, 0x34, 0x25, 0x3c, 0x2f, 0x26, 0xbe, 0x98, 0xea, + 0x6b, 0x4e, 0x75, 0x28, 0x91, 0xa6, 0x11, 0x22, 0x3a, 0x56, 0xa0, 0x70, 0x4b, 0xbd, 0x5b, 0x48, + 0x0a, 0x74, 0x34, 0xa6, 0xa2, 0x04, 0xba, 0x08, 0x40, 0x2a, 0x81, 0x54, 0x02, 0xa9, 0x04, 0x52, + 0x09, 0xa4, 0x12, 0x48, 0x25, 0x89, 0xb8, 0xc3, 0xbb, 0x4c, 0x48, 0x2e, 0x1f, 0x7d, 0xd6, 0xa3, + 0xd4, 0xec, 0x86, 0x00, 0xd7, 0xb6, 0x6a, 0xd1, 0xa3, 0xf9, 0xe8, 0x06, 0x84, 0x42, 0xe1, 0x6c, + 0xe0, 0xae, 0x6f, 0x2e, 0x2e, 0xce, 0xce, 0x5b, 0x67, 0x17, 0x9f, 0xaa, 0x97, 0x57, 0x37, 0xe7, + 0xd5, 0xeb, 0x5a, 0xfd, 0xa2, 0x75, 0x75, 0xf3, 0xf1, 0xfa, 0xfc, 0x6b, 0xeb, 0xfa, 0x7f, 0x97, + 0x67, 0x54, 0x22, 0xe4, 0x34, 0x8d, 0x0a, 0x48, 0xed, 0x30, 0x22, 0x7a, 0xfc, 0x71, 0x34, 0xa2, + 0x9f, 0xea, 0xe7, 0xf5, 0x86, 0x05, 0xf9, 0xc2, 0x98, 0x71, 0xbb, 0x6a, 0x5c, 0x9f, 0xb5, 0x2e, + 0x1b, 0x67, 0x9f, 0xcf, 0x1a, 0x67, 0x17, 0x9f, 0xce, 0x30, 0x74, 0x86, 0x0d, 0xdd, 0xc7, 0xda, + 0xc5, 0x69, 0xed, 0xe2, 0xef, 0xd6, 0x55, 0xed, 0x14, 0x63, 0x67, 0x5c, 0xb8, 0x6c, 0x9c, 0x7d, + 0xa9, 0x5f, 0x9f, 0xb5, 0xce, 0x2e, 0x4e, 0x2f, 0xeb, 0xb5, 0x8b, 0x6b, 0x8c, 0xa0, 0x61, 0xde, + 0x77, 0x75, 0xf6, 0xf7, 0x97, 0xb3, 0x8b, 0xeb, 0xd6, 0x79, 0xed, 0x8a, 0xd2, 0xe0, 0x91, 0xb0, + 0xa4, 0xb9, 0xeb, 0xe9, 0x1a, 0xda, 0x95, 0xab, 0x11, 0x0b, 0x70, 0x18, 0xcb, 0x9b, 0x0e, 0x63, + 0xd1, 0x77, 0x98, 0xe0, 0x6e, 0x1c, 0xc2, 0xa2, 0x55, 0xca, 0xa7, 0x20, 0xe1, 0x6b, 0x96, 0xee, + 0xb5, 0x4b, 0xf6, 0x38, 0x82, 0x25, 0x61, 0x0d, 0x8e, 0x60, 0x59, 0x61, 0x10, 0x8e, 0x60, 0x01, + 0xa7, 0x79, 0xf1, 0xf4, 0xb5, 0x4b, 0xed, 0x71, 0xdc, 0x18, 0x30, 0xb7, 0xa7, 0x57, 0x5e, 0x8f, + 0x65, 0x75, 0x8d, 0x75, 0x88, 0xd6, 0x65, 0x44, 0xeb, 0x3e, 0x7c, 0x08, 0x89, 0x93, 0x33, 0xc5, + 0xd5, 0x5d, 0x61, 0x4f, 0xef, 0xb6, 0xd8, 0xe7, 0x66, 0x47, 0x29, 0x6b, 0x20, 0x4a, 0x7a, 0x77, + 0xbb, 0x91, 0xd8, 0xdd, 0x46, 0x62, 0x37, 0x9b, 0xde, 0xdd, 0x6b, 0xaa, 0xe7, 0xbb, 0xe6, 0x7c, + 0xd9, 0xb0, 0x3c, 0xd9, 0xd2, 0x72, 0x7c, 0x67, 0x36, 0x07, 0x15, 0xab, 0xc5, 0x2b, 0x75, 0xa8, + 0xa1, 0xe6, 0x4e, 0x8a, 0xfc, 0x54, 0x97, 0x7f, 0x9a, 0xe2, 0x97, 0x6a, 0x26, 0x71, 0xf6, 0x53, + 0x4a, 0xc1, 0x74, 0x52, 0x2b, 0x41, 0xe9, 0x90, 0x9c, 0x14, 0x4b, 0x4c, 0xca, 0x25, 0x25, 0x1d, + 0x12, 0x92, 0x5e, 0xc9, 0x48, 0x97, 0x44, 0xa4, 0x5d, 0x12, 0xd2, 0x2e, 0x01, 0x69, 0x97, 0x7c, + 0xb6, 0x0b, 0xc6, 0x95, 0x4b, 0x38, 0x1a, 0x25, 0x1b, 0x1d, 0x12, 0x8d, 0x4e, 0x49, 0x46, 0x01, + 0x3b, 0x78, 0x67, 0xb0, 0x0f, 0x28, 0x94, 0x54, 0xd4, 0x4a, 0x28, 0x5a, 0x24, 0x13, 0x2d, 0x12, + 0x89, 0x5a, 0x49, 0x24, 0xeb, 0xf9, 0xa8, 0x38, 0xa5, 0xa2, 0x9e, 0x4a, 0x29, 0x40, 0x86, 0xf4, + 0x35, 0x8c, 0x6c, 0x23, 0x7b, 0x76, 0xf1, 0x36, 0x9b, 0xdf, 0x9c, 0x91, 0xc7, 0xa8, 0xf2, 0x14, + 0xb2, 0x1e, 0x92, 0xcd, 0x2c, 0x4b, 0x7f, 0x0e, 0xa4, 0xfb, 0x1b, 0x53, 0x9e, 0x4d, 0x59, 0xcf, + 0x22, 0x72, 0xb3, 0x27, 0x83, 0x80, 0x9a, 0x62, 0x00, 0x4d, 0x77, 0x4e, 0xa7, 0x37, 0xf3, 0xd2, + 0xf9, 0x4d, 0x29, 0xcd, 0xdd, 0x19, 0x67, 0xe5, 0xa2, 0xcb, 0xd2, 0x4a, 0xfd, 0xb3, 0x21, 0xa7, + 0x99, 0x92, 0xd0, 0x4c, 0xc9, 0x66, 0x36, 0xa4, 0x32, 0xad, 0x09, 0x90, 0x51, 0xd0, 0xd2, 0x19, + 0xac, 0x52, 0x8c, 0x4b, 0x6f, 0x8c, 0x47, 0xe9, 0xc4, 0x9e, 0xcd, 0x23, 0xc5, 0x66, 0xbf, 0x61, + 0xc3, 0x29, 0x96, 0xf6, 0xd4, 0xd2, 0x30, 0xa5, 0x36, 0x1b, 0xc7, 0xb7, 0x3f, 0xfd, 0x0d, 0x9e, + 0xbc, 0xd5, 0xf1, 0xee, 0xee, 0x46, 0x82, 0x4b, 0xce, 0x36, 0x3f, 0x09, 0xe9, 0xc5, 0x49, 0x46, + 0xcf, 0xbf, 0x74, 0xc3, 0x59, 0x31, 0x13, 0xcd, 0x36, 0xfc, 0x35, 0x69, 0xad, 0x49, 0xa4, 0xb9, + 0xd6, 0x90, 0xcd, 0x1a, 0x42, 0xda, 0x6b, 0x03, 0x99, 0x69, 0xfe, 0x99, 0x69, 0xf9, 0x99, 0x69, + 0xf4, 0x7a, 0xe3, 0xe3, 0x29, 0x4f, 0x87, 0x22, 0xc5, 0xde, 0xf9, 0x98, 0xde, 0x1c, 0x59, 0x74, + 0xfc, 0xc7, 0xb4, 0xe6, 0x48, 0x3a, 0xee, 0x9f, 0x7a, 0x18, 0xc8, 0x22, 0x1c, 0x64, 0x1b, 0x16, + 0xb2, 0x0a, 0x0f, 0x99, 0x87, 0x89, 0xcc, 0xc3, 0x45, 0xe6, 0x61, 0x83, 0x66, 0x2a, 0x97, 0x56, + 0x38, 0x89, 0x7f, 0x61, 0x98, 0x14, 0xa6, 0x3e, 0xaf, 0xe2, 0x36, 0x26, 0x29, 0xe6, 0x9c, 0x8b, + 0xe1, 0x25, 0xe5, 0x42, 0x85, 0xcc, 0x2a, 0x20, 0xb2, 0xac, 0x74, 0x50, 0x53, 0xd1, 0x90, 0x75, + 0xe5, 0x82, 0xb2, 0x0a, 0x05, 0x65, 0x95, 0x08, 0xca, 0x2a, 0x0e, 0x68, 0xab, 0xa5, 0x99, 0x55, + 0x0a, 0x28, 0xa8, 0x08, 0xc8, 0x72, 0xe5, 0x3f, 0xb9, 0xc2, 0x1f, 0x06, 0x4a, 0xaa, 0x72, 0x66, + 0xaa, 0x62, 0x8b, 0x2b, 0x59, 0x76, 0x80, 0x13, 0xfe, 0xfa, 0x6c, 0x00, 0x27, 0x97, 0x15, 0xe0, + 0xe4, 0x01, 0x38, 0x00, 0x1c, 0x00, 0x0e, 0x41, 0x7e, 0x9c, 0x61, 0xfa, 0xad, 0x2c, 0x1d, 0x57, + 0xc4, 0x9f, 0x33, 0xe7, 0xd1, 0x2a, 0xc2, 0x9b, 0xda, 0x30, 0xa7, 0x2a, 0xdc, 0x29, 0x0f, 0x7b, + 0xca, 0xc3, 0x9f, 0xf2, 0x30, 0x98, 0x4d, 0x38, 0xcc, 0x28, 0x2c, 0x66, 0xcf, 0xc7, 0x13, 0x7e, + 0x33, 0x12, 0xd9, 0x14, 0x0f, 0x24, 0x38, 0x59, 0x25, 0xc3, 0x7b, 0x44, 0x8f, 0x2b, 0xdb, 0x0e, + 0x99, 0x0a, 0x8a, 0xf6, 0x66, 0x83, 0xd2, 0xee, 0x0f, 0xed, 0x9f, 0x6c, 0x30, 0xb0, 0x7f, 0x08, + 0xef, 0xa7, 0xb0, 0x63, 0xa0, 0xb1, 0x15, 0xed, 0x6b, 0x51, 0xd9, 0x46, 0x56, 0x4f, 0x9b, 0xd8, + 0xf8, 0x51, 0x7f, 0xfc, 0xfb, 0xb2, 0xf5, 0x7f, 0x67, 0xe7, 0xe7, 0xad, 0x7f, 0x2e, 0xea, 0xff, + 0x77, 0xd1, 0xba, 0xba, 0x3e, 0x6d, 0x7d, 0xaa, 0x7f, 0xf9, 0x72, 0x73, 0x51, 0xbb, 0xfe, 0x9f, + 0xaa, 0x1d, 0x44, 0x1a, 0x5a, 0xbc, 0x2a, 0xde, 0xd9, 0x32, 0x7b, 0xda, 0x17, 0xf5, 0xcb, 0xb3, + 0x33, 0x85, 0xcd, 0x59, 0x15, 0x6e, 0x6c, 0xd6, 0xf6, 0x44, 0x5b, 0x67, 0xff, 0xef, 0x65, 0xbd, + 0x71, 0xdd, 0xba, 0xba, 0xf9, 0xf8, 0xa9, 0x7e, 0xf1, 0xf9, 0xec, 0x14, 0x8f, 0x37, 0xd5, 0xc7, + 0x5b, 0x3d, 0xfd, 0x7a, 0xd6, 0xb8, 0xae, 0x5d, 0x9d, 0xe1, 0xb9, 0x66, 0x30, 0x6d, 0xb7, 0x6d, + 0x6f, 0x57, 0x13, 0xfb, 0x72, 0x08, 0x91, 0xa8, 0x40, 0x76, 0x35, 0xb2, 0xa7, 0x8a, 0x82, 0x7b, + 0x29, 0xa1, 0xbe, 0xea, 0x83, 0x85, 0xbe, 0xa3, 0x28, 0x35, 0x1c, 0x39, 0xa9, 0xe9, 0x68, 0x49, + 0x3d, 0xfd, 0x7e, 0xf4, 0xf5, 0xa3, 0xd4, 0xdc, 0x0b, 0x52, 0xf3, 0xd1, 0x8f, 0x14, 0x8e, 0xbb, + 0x1b, 0xeb, 0xe9, 0xee, 0xb4, 0xf3, 0x53, 0x4e, 0xf7, 0x11, 0x8c, 0x24, 0xe6, 0xde, 0x96, 0x76, + 0x1e, 0x6a, 0x6e, 0x53, 0xcb, 0x02, 0x0d, 0x04, 0x23, 0x90, 0x3e, 0x17, 0x7d, 0x1d, 0x9d, 0x0a, + 0x8e, 0xd5, 0x76, 0x2a, 0x90, 0xcc, 0x17, 0xca, 0x39, 0x86, 0xf5, 0xdf, 0x7e, 0xa9, 0x58, 0x3c, + 0xba, 0x3d, 0xb4, 0x8b, 0xcd, 0xa7, 0x52, 0xb1, 0x78, 0x7b, 0x68, 0xe7, 0x9b, 0xb7, 0x87, 0x76, + 0x65, 0xf2, 0xaf, 0xc2, 0xf4, 0xe2, 0x57, 0x7e, 0xfc, 0x54, 0x9a, 0xfc, 0xa0, 0xd0, 0x7c, 0xfe, + 0xf7, 0x8b, 0x7f, 0x1e, 0x8d, 0x9f, 0x6e, 0x73, 0x76, 0x31, 0xfa, 0x57, 0x61, 0xfa, 0xaf, 0x4a, + 0xf4, 0xaf, 0xdc, 0xfb, 0xc9, 0x4f, 0x27, 0x97, 0x07, 0x27, 0xaa, 0x6e, 0xf4, 0x97, 0xb5, 0x6d, + 0xbe, 0xfd, 0xce, 0xec, 0xbf, 0x23, 0x3b, 0xfb, 0x9b, 0x46, 0x2d, 0x1a, 0x29, 0xe9, 0x43, 0xa1, + 0xb4, 0xff, 0x84, 0xd2, 0xbe, 0x13, 0x6a, 0xfa, 0x4d, 0x64, 0xb0, 0x0f, 0x3b, 0x83, 0xb2, 0x9e, + 0x6c, 0xaa, 0x8d, 0x13, 0xd8, 0x9b, 0x45, 0xd5, 0xb1, 0x22, 0xee, 0x8d, 0xea, 0x89, 0xf5, 0xef, + 0x86, 0xea, 0x89, 0xb4, 0x6e, 0x88, 0xea, 0x89, 0xdf, 0x3d, 0x1d, 0x85, 0xd5, 0x13, 0x5c, 0xc8, + 0x52, 0x41, 0x41, 0xf9, 0x44, 0x86, 0xb9, 0x82, 0x22, 0xf5, 0x51, 0x4d, 0x6b, 0x2c, 0x75, 0x05, + 0x04, 0x8a, 0xdb, 0x7e, 0x2a, 0x56, 0x0f, 0x75, 0x28, 0x36, 0x63, 0x35, 0x8d, 0xcc, 0xb6, 0x7e, + 0x8a, 0xe4, 0x8e, 0x0b, 0x85, 0x52, 0xb9, 0x50, 0x38, 0x2c, 0x1f, 0x95, 0x0f, 0x2b, 0xc5, 0x62, + 0xae, 0xa4, 0xea, 0x38, 0x68, 0x2d, 0xb3, 0x06, 0xb9, 0x65, 0xb6, 0xe9, 0x05, 0xda, 0x3c, 0xa9, + 0x68, 0x73, 0xf1, 0xa2, 0xa9, 0x43, 0x7c, 0xfd, 0x98, 0xc5, 0x09, 0x79, 0x68, 0x9e, 0xa4, 0x59, + 0x51, 0x41, 0xf3, 0xa4, 0x6c, 0x26, 0x80, 0xf1, 0xcd, 0x93, 0x96, 0x86, 0x00, 0x8d, 0xfd, 0x93, + 0x3e, 0xc5, 0x36, 0xa0, 0x83, 0x92, 0xc9, 0x1d, 0x94, 0x5e, 0xf6, 0x0b, 0x32, 0xb0, 0x87, 0x12, + 0x7b, 0x90, 0x76, 0x26, 0x7d, 0x94, 0x16, 0x7f, 0x31, 0x7a, 0x29, 0xa9, 0xd5, 0x09, 0xd1, 0x4b, + 0x09, 0xbd, 0x94, 0x5e, 0xef, 0xfa, 0x19, 0xf4, 0x53, 0x9a, 0xff, 0xf5, 0xe8, 0xa9, 0x44, 0x2b, + 0x3c, 0x64, 0x15, 0x26, 0x32, 0x0f, 0x17, 0x99, 0x87, 0x8d, 0xcc, 0xc3, 0x07, 0xcd, 0x0c, 0x0f, + 0x3d, 0x95, 0xd0, 0x53, 0x49, 0x5d, 0xd8, 0xc9, 0x3a, 0xfc, 0x28, 0x0b, 0x43, 0xca, 0xc2, 0x91, + 0xb2, 0xb0, 0x64, 0x86, 0x34, 0x89, 0x9e, 0x4a, 0xab, 0x42, 0x02, 0x7a, 0x2a, 0xa1, 0xa7, 0x12, + 0x7a, 0x2a, 0x01, 0x70, 0x00, 0x38, 0xa9, 0x3e, 0x85, 0xcc, 0x7a, 0x2a, 0x65, 0x93, 0x86, 0x2b, + 0x4d, 0xcb, 0x15, 0xf1, 0xe8, 0xcc, 0xf9, 0xb4, 0x8a, 0x30, 0xa7, 0x36, 0xdc, 0xa9, 0x0a, 0x7b, + 0xca, 0xc3, 0x9f, 0xf2, 0x30, 0xa8, 0x3c, 0x1c, 0x66, 0x13, 0x16, 0x33, 0x0a, 0x8f, 0xd9, 0xf3, + 0xf2, 0x84, 0xdf, 0xb4, 0xfb, 0x43, 0x7b, 0x2e, 0x98, 0xd9, 0x3e, 0xeb, 0xdc, 0x67, 0xbd, 0x0d, + 0x1d, 0x1d, 0x97, 0x52, 0x19, 0x2a, 0x34, 0x0b, 0x20, 0x3f, 0x7a, 0x4b, 0x12, 0x20, 0xec, 0xe5, + 0xcb, 0xf0, 0xc6, 0x0a, 0xf7, 0xf2, 0xc5, 0x3b, 0x96, 0xc3, 0xbb, 0xcd, 0xfe, 0x79, 0x7b, 0x68, + 0x1f, 0x47, 0xb7, 0x8c, 0x5e, 0xba, 0x3d, 0xb4, 0x73, 0xcf, 0xf7, 0x0a, 0x5f, 0xbc, 0x3d, 0xb4, + 0x4b, 0xcf, 0x37, 0x9c, 0xbe, 0x36, 0xfd, 0x35, 0xf1, 0x5d, 0x27, 0x2f, 0x3d, 0xff, 0xaa, 0x5f, + 0xc5, 0xe9, 0x2b, 0xb7, 0x87, 0xf6, 0x51, 0xf4, 0x42, 0x69, 0xfc, 0x54, 0x78, 0xf1, 0x8b, 0xcb, + 0x53, 0x3b, 0x67, 0x3f, 0xac, 0x2c, 0x58, 0x7d, 0xbc, 0xbd, 0x1b, 0x03, 0xb1, 0xe9, 0x17, 0x81, + 0xe2, 0x6d, 0x81, 0x62, 0x3f, 0x74, 0xd2, 0x67, 0x47, 0x79, 0xca, 0x4d, 0xbf, 0x85, 0xd7, 0xf9, + 0xe7, 0x90, 0xf0, 0x94, 0x2f, 0x4e, 0x7d, 0xf3, 0xe0, 0xdf, 0x7f, 0x3f, 0x1c, 0xfc, 0x3a, 0x1a, + 0xaf, 0xff, 0x41, 0x6c, 0xfc, 0x85, 0x7f, 0xc3, 0xbf, 0x15, 0xfb, 0xb7, 0x89, 0xf8, 0x8c, 0x40, + 0x81, 0x40, 0x81, 0x40, 0xa1, 0x36, 0x50, 0xf8, 0xde, 0x48, 0xb2, 0x7f, 0xff, 0xb5, 0xa5, 0xeb, + 0xf7, 0x99, 0x3c, 0x41, 0x02, 0x81, 0x04, 0x02, 0x71, 0x03, 0x71, 0x63, 0xed, 0xb8, 0x81, 0x7c, + 0x02, 0xee, 0x0e, 0x77, 0xdf, 0x19, 0x77, 0x47, 0x7a, 0x81, 0xb8, 0x81, 0xb8, 0x81, 0xb8, 0xf1, + 0xda, 0xb8, 0xe1, 0xf9, 0xbc, 0xcf, 0x05, 0xd2, 0x0b, 0xa4, 0x17, 0x88, 0x1b, 0x88, 0x1b, 0xeb, + 0xc7, 0x0d, 0xa4, 0x17, 0x70, 0x77, 0xb8, 0xfb, 0xce, 0xb8, 0x3b, 0xd2, 0x0b, 0xc4, 0x0d, 0xc4, + 0x0d, 0xc4, 0x8d, 0x3f, 0xc5, 0x8d, 0x8e, 0x37, 0xf0, 0xfc, 0x93, 0xa9, 0xaf, 0xfe, 0xca, 0x8f, + 0xc1, 0xfa, 0x69, 0xb8, 0xb3, 0xe9, 0xed, 0xca, 0xb7, 0xe7, 0x84, 0x2d, 0x2e, 0x5c, 0xff, 0x51, + 0x61, 0x91, 0xac, 0x8a, 0x1a, 0xd9, 0x73, 0x26, 0xfa, 0xd3, 0xfd, 0x89, 0x5b, 0x57, 0x25, 0xab, + 0xe3, 0xf0, 0x25, 0x4d, 0x27, 0xe0, 0xc4, 0xbd, 0x30, 0x8f, 0x15, 0xdf, 0x57, 0xe3, 0x41, 0x37, + 0x0a, 0x0f, 0x57, 0xd2, 0x72, 0xa8, 0x12, 0xa6, 0xd2, 0x96, 0x1d, 0x95, 0x89, 0x73, 0x47, 0xd4, + 0xda, 0x8d, 0x73, 0x47, 0xd6, 0x89, 0x6f, 0x38, 0x77, 0x44, 0xfd, 0x74, 0xc2, 0xb9, 0x23, 0x7f, + 0xfe, 0xf5, 0xd8, 0x59, 0xbc, 0xf6, 0xdd, 0xb0, 0xb3, 0x38, 0xad, 0x1b, 0x62, 0x67, 0xf1, 0xef, + 0x9e, 0x0e, 0xce, 0x1d, 0x59, 0xeb, 0x16, 0x38, 0x77, 0x84, 0x7e, 0x16, 0x84, 0x73, 0x47, 0xcc, + 0x4b, 0x98, 0x71, 0xee, 0x08, 0xce, 0x1d, 0x51, 0x9e, 0x5b, 0xe2, 0xdc, 0x91, 0x54, 0x7f, 0xbf, + 0xb2, 0xe6, 0xf0, 0x0b, 0x4d, 0xd0, 0xe7, 0xfe, 0x8d, 0xf3, 0x47, 0xd6, 0x23, 0xff, 0x38, 0x7f, + 0x04, 0xe7, 0x8f, 0x18, 0x7c, 0xfe, 0xc8, 0x6f, 0x43, 0x81, 0xc6, 0x73, 0x48, 0xce, 0x1e, 0x24, + 0x8e, 0x22, 0xc9, 0x72, 0xaa, 0x69, 0x9b, 0x62, 0xda, 0x8e, 0x23, 0x79, 0xa7, 0x70, 0xd4, 0xd2, + 0x1a, 0x2d, 0x65, 0xa3, 0xb4, 0x81, 0xab, 0xaf, 0xe9, 0xda, 0x6f, 0x1b, 0xff, 0xf5, 0x47, 0x6f, + 0xbd, 0x4f, 0xac, 0x39, 0xce, 0x9b, 0x8e, 0xaf, 0x92, 0x71, 0x7d, 0xc3, 0x98, 0xae, 0x31, 0x96, + 0xeb, 0x8d, 0xe3, 0xeb, 0x47, 0x63, 0x8d, 0x91, 0xb0, 0x3a, 0x33, 0x5d, 0x7c, 0xbd, 0x11, 0x88, + 0x25, 0xb5, 0xe8, 0xf3, 0x6b, 0x8e, 0xfd, 0xdb, 0xba, 0x23, 0xbf, 0x59, 0xc4, 0xdf, 0x44, 0x9c, + 0x7f, 0x29, 0xba, 0x0b, 0x26, 0x27, 0x13, 0xe6, 0x2d, 0xb3, 0x62, 0x43, 0x31, 0x3d, 0x35, 0x91, + 0x3c, 0x35, 0xf1, 0x7b, 0x51, 0xd4, 0x9e, 0x3d, 0x1b, 0x62, 0x51, 0xe6, 0xad, 0xdd, 0x7d, 0xad, + 0x2e, 0xeb, 0xb9, 0xa3, 0x81, 0xb4, 0xef, 0x98, 0xf4, 0x79, 0xe7, 0xed, 0x03, 0x37, 0x9b, 0x3e, + 0x0b, 0xbf, 0xef, 0x8d, 0x0f, 0x7d, 0x33, 0x8d, 0x6a, 0xe3, 0x55, 0xb0, 0x34, 0x56, 0xb9, 0xd2, + 0x71, 0xa8, 0xb4, 0x1c, 0x2b, 0x75, 0x07, 0x4b, 0xdd, 0xd1, 0x52, 0x77, 0x38, 0x3d, 0x74, 0x6e, + 0xe3, 0x55, 0x9e, 0xb9, 0x55, 0x9c, 0xa3, 0xfc, 0x26, 0x73, 0x26, 0xf2, 0xa2, 0x0d, 0x4e, 0x69, + 0x48, 0x69, 0x15, 0x26, 0x85, 0x24, 0x24, 0xcd, 0x55, 0x94, 0x94, 0x25, 0xf0, 0xb4, 0x57, 0x41, + 0xb2, 0xd0, 0xab, 0x53, 0x90, 0x31, 0x52, 0x5d, 0xa5, 0xc8, 0x6a, 0x08, 0xe2, 0x1a, 0xfc, 0x22, + 0xe1, 0xb1, 0xd0, 0x94, 0xd7, 0x36, 0x55, 0xe5, 0x53, 0x6f, 0xe0, 0x8d, 0x4c, 0xb8, 0xed, 0x01, + 0xeb, 0x6e, 0xce, 0x3f, 0x66, 0xbf, 0x08, 0xc4, 0x03, 0xc4, 0x03, 0xc4, 0xe3, 0x4d, 0xf3, 0xa6, + 0xed, 0x79, 0x03, 0xe6, 0x8a, 0x14, 0x98, 0x47, 0x2e, 0x47, 0x38, 0xe4, 0xf0, 0x2e, 0x13, 0x92, + 0xf7, 0x38, 0xf3, 0x37, 0x8f, 0x3a, 0x2f, 0x7e, 0x17, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0xcf, 0x06, + 0x5e, 0x24, 0x1f, 0x37, 0x3b, 0xb5, 0x2e, 0x0e, 0x3e, 0x1b, 0x50, 0x40, 0xab, 0x16, 0x99, 0xf2, + 0xd1, 0x0d, 0x58, 0x7a, 0x67, 0x8a, 0xd7, 0x2e, 0xae, 0xae, 0xab, 0xe7, 0xe7, 0xad, 0xcb, 0x46, + 0xfd, 0xba, 0xfe, 0xa9, 0x7e, 0xde, 0xba, 0xfe, 0xdf, 0xe5, 0xd9, 0xa6, 0xd3, 0x71, 0x4a, 0x7d, + 0x83, 0x54, 0x2a, 0xe5, 0x52, 0x3e, 0x41, 0xb9, 0x7e, 0x75, 0xf9, 0xd9, 0xa2, 0x90, 0xba, 0xa4, + 0xfc, 0x77, 0xd5, 0xae, 0x6a, 0x57, 0xdb, 0xf8, 0x77, 0x4d, 0xc6, 0xeb, 0x68, 0x1b, 0xff, 0xb0, + 0xf3, 0xfa, 0xa7, 0xea, 0x79, 0xab, 0xfa, 0xf7, 0xdf, 0x8d, 0xb3, 0xbf, 0xab, 0xd7, 0x67, 0xdb, + 0xf8, 0x27, 0x9e, 0xd6, 0x1a, 0x67, 0x9f, 0xae, 0xcf, 0xff, 0xd7, 0xfa, 0x54, 0xbf, 0xb8, 0x38, + 0xfb, 0x74, 0x7d, 0x76, 0xba, 0x8d, 0x7f, 0xe5, 0xd5, 0x75, 0xf5, 0xba, 0xf6, 0x69, 0x1b, 0xff, + 0xb2, 0x8f, 0x7f, 0x5f, 0x6e, 0xe3, 0x9f, 0x75, 0x59, 0xfb, 0xb2, 0x95, 0x08, 0xf0, 0xf7, 0x97, + 0x34, 0x86, 0x6b, 0xa3, 0xdf, 0xd0, 0x54, 0xcd, 0x0f, 0x95, 0x64, 0x65, 0xd1, 0x82, 0xf2, 0x86, + 0xf9, 0xd8, 0xf4, 0xb7, 0x20, 0x13, 0x43, 0x26, 0x86, 0x4c, 0xec, 0x4d, 0xf3, 0x66, 0xe3, 0xd6, + 0x41, 0xcf, 0xad, 0x80, 0x50, 0xc4, 0xa3, 0xa2, 0x88, 0x27, 0xaa, 0x4f, 0x21, 0x50, 0x69, 0xb3, + 0x81, 0xac, 0xb6, 0xb9, 0x9c, 0xf6, 0xc6, 0xe0, 0x8d, 0x8a, 0x1b, 0x54, 0xdc, 0xac, 0x1b, 0x12, + 0xde, 0x1c, 0x6c, 0xe3, 0x71, 0x1f, 0x30, 0xb7, 0xf7, 0x36, 0xa9, 0x2b, 0x8e, 0xae, 0x6f, 0x58, + 0xda, 0xb7, 0x2e, 0xa3, 0x28, 0xf4, 0xe1, 0x43, 0x14, 0x35, 0x9c, 0x17, 0xee, 0x46, 0x21, 0x80, + 0xf4, 0xef, 0x86, 0x1b, 0x84, 0x8e, 0xc9, 0xa7, 0x77, 0xa3, 0x4c, 0xef, 0x0d, 0x7f, 0xea, 0x6e, + 0x44, 0x8c, 0xe9, 0x83, 0xd9, 0x96, 0x02, 0xbd, 0xfe, 0xc0, 0x6b, 0xbb, 0x83, 0xcd, 0x53, 0xa2, + 0xe8, 0xf7, 0x6c, 0x96, 0x14, 0xe5, 0xb6, 0x24, 0x29, 0x7a, 0xa3, 0xeb, 0x20, 0x23, 0x7a, 0x9b, + 0x6b, 0xe9, 0x49, 0x87, 0xde, 0xea, 0x72, 0xcf, 0xac, 0x3d, 0xb8, 0x4b, 0x6f, 0xed, 0x67, 0xf2, + 0xcb, 0x36, 0x1c, 0x8b, 0xcd, 0x9c, 0x30, 0x35, 0x67, 0x4c, 0xd3, 0x29, 0x33, 0x70, 0xce, 0xb4, + 0x9d, 0x34, 0x33, 0x67, 0xcd, 0xcc, 0x69, 0xb3, 0x71, 0xde, 0x74, 0x54, 0xcb, 0x4d, 0x37, 0xb7, + 0x6d, 0xea, 0xd4, 0xf1, 0x2f, 0xba, 0x73, 0x87, 0x43, 0x2e, 0xfa, 0x41, 0x7a, 0xf3, 0x63, 0x36, + 0x85, 0xe3, 0xdf, 0xfc, 0x3e, 0xd5, 0x52, 0xc9, 0x5c, 0x4a, 0xbf, 0x2e, 0xed, 0x16, 0x51, 0x59, + 0xb4, 0x84, 0xca, 0x20, 0x1c, 0x64, 0x15, 0x16, 0x32, 0x0f, 0x0f, 0x99, 0x87, 0x89, 0x6c, 0xc3, + 0x45, 0x3a, 0x61, 0x23, 0xa5, 0xf0, 0x91, 0x7a, 0x18, 0x59, 0x0c, 0x27, 0xe9, 0x4f, 0xab, 0x85, + 0xa8, 0x92, 0xf6, 0xa4, 0x4a, 0x37, 0xb8, 0x64, 0x16, 0x64, 0xb2, 0x0c, 0x36, 0x0a, 0x82, 0x4e, + 0xd6, 0xc1, 0x47, 0x59, 0x10, 0x52, 0x16, 0x8c, 0xd4, 0x04, 0xa5, 0x74, 0x83, 0x53, 0xca, 0x41, + 0x2a, 0xb3, 0x60, 0x15, 0xff, 0xe2, 0x37, 0xee, 0x8a, 0x5d, 0xdb, 0xa1, 0xde, 0xb4, 0x7b, 0x56, + 0x73, 0x08, 0xcb, 0x3c, 0x94, 0xa9, 0x08, 0x69, 0x0a, 0x43, 0x9b, 0xaa, 0x10, 0xa7, 0x3c, 0xd4, + 0x29, 0x0f, 0x79, 0x6a, 0x43, 0x5f, 0x36, 0x21, 0x30, 0xa3, 0x50, 0x98, 0x79, 0x48, 0x7c, 0xd6, + 0x7e, 0x14, 0xcd, 0xe2, 0x58, 0x1e, 0x0a, 0xef, 0x97, 0xf1, 0x8c, 0x52, 0xd3, 0xfb, 0x2f, 0xf3, + 0x90, 0xa9, 0x32, 0x74, 0x6a, 0x08, 0xa1, 0xaa, 0x43, 0xa9, 0xb6, 0x90, 0xaa, 0x2d, 0xb4, 0xea, + 0x09, 0xb1, 0xd9, 0x86, 0xda, 0x8c, 0x43, 0x6e, 0xfc, 0xc8, 0x32, 0xef, 0x63, 0x9c, 0xf0, 0x38, + 0x3e, 0xbc, 0x2f, 0xd8, 0x6e, 0xb7, 0xeb, 0xb3, 0x20, 0x50, 0x78, 0x9e, 0x90, 0x8a, 0x63, 0xcc, + 0x94, 0x1f, 0x5f, 0x66, 0xa9, 0x3c, 0xcd, 0x74, 0xff, 0xff, 0x77, 0xfb, 0xef, 0xbf, 0xc3, 0x5f, + 0x17, 0xe3, 0xc9, 0xff, 0xcf, 0xc7, 0xcd, 0xff, 0xff, 0xc1, 0xff, 0x63, 0xe1, 0x58, 0x0f, 0xf5, + 0x7e, 0x6b, 0x05, 0xc1, 0x9d, 0xed, 0xbb, 0xa2, 0xcf, 0x02, 0x85, 0x8c, 0xe6, 0xf9, 0x9e, 0x60, + 0x35, 0x60, 0x35, 0x60, 0x35, 0x60, 0x35, 0x60, 0x35, 0xa9, 0x94, 0xff, 0xbd, 0x99, 0xd0, 0x94, + 0xd5, 0x10, 0x9a, 0xff, 0x8f, 0xbd, 0xf7, 0x6f, 0x6a, 0x23, 0x49, 0xbe, 0xbd, 0xff, 0xf7, 0xab, + 0x20, 0x14, 0xbb, 0x11, 0xb0, 0xeb, 0x46, 0x20, 0x03, 0x36, 0x8e, 0xb8, 0xb1, 0x21, 0x1b, 0x79, + 0x56, 0x3b, 0x80, 0x79, 0x00, 0xfb, 0xee, 0x7e, 0x6d, 0x46, 0xd1, 0x48, 0x25, 0xe8, 0x9d, 0xa6, + 0xa5, 0x6f, 0x77, 0x8b, 0x31, 0xd7, 0xe6, 0xbd, 0x3f, 0xa1, 0x9f, 0x20, 0x04, 0x63, 0x40, 0x55, + 0x59, 0x55, 0xad, 0x0f, 0x31, 0x61, 0x33, 0xd8, 0xee, 0x2a, 0x55, 0x67, 0x9d, 0x93, 0x27, 0x2b, + 0x33, 0x6b, 0x94, 0xe4, 0xdc, 0x0c, 0xc2, 0x66, 0xfc, 0x36, 0x6c, 0xc6, 0xb7, 0xbe, 0x0d, 0x32, + 0x95, 0x67, 0x77, 0xfe, 0x7f, 0xfc, 0xbf, 0xa3, 0x6c, 0xc4, 0xd1, 0xff, 0x0d, 0x4a, 0x38, 0x7c, + 0xa5, 0x72, 0xaf, 0x62, 0x29, 0x86, 0xbb, 0x95, 0xdf, 0x38, 0x21, 0xa6, 0x93, 0xe0, 0xfb, 0x38, + 0x57, 0x1e, 0xe6, 0xb9, 0x95, 0xb3, 0xec, 0xa2, 0x3c, 0x3e, 0x88, 0x1f, 0x7f, 0xf3, 0xac, 0x2c, + 0x79, 0x7b, 0xef, 0xdc, 0xc4, 0x15, 0x5a, 0x86, 0xc3, 0x5a, 0x32, 0xe1, 0x2c, 0x2e, 0xd1, 0x72, + 0xca, 0xb1, 0x23, 0xe2, 0xef, 0xa7, 0xe3, 0xc6, 0xf5, 0x59, 0xb6, 0x1c, 0x33, 0x09, 0x87, 0xec, + 0x9e, 0x3a, 0x8f, 0x11, 0x28, 0x2f, 0x32, 0xfd, 0x0d, 0x6e, 0x2c, 0x31, 0xcf, 0x7e, 0x83, 0x61, + 0x3c, 0x3f, 0xee, 0xae, 0x40, 0x7e, 0x90, 0x1f, 0xe4, 0xe7, 0x04, 0xf9, 0x71, 0xdc, 0xed, 0xa0, + 0x4e, 0x10, 0xd3, 0x0b, 0x92, 0xd0, 0x69, 0x01, 0x42, 0xa5, 0xa1, 0xd4, 0x1a, 0xa4, 0x5a, 0x83, + 0x56, 0x3b, 0x10, 0x6b, 0x3e, 0xce, 0xb6, 0xc4, 0x71, 0xb7, 0x46, 0x87, 0x92, 0xe3, 0x6e, 0x8e, + 0xbb, 0xe5, 0xf6, 0x2e, 0xc7, 0xdd, 0x78, 0x35, 0x78, 0x35, 0x78, 0x35, 0x78, 0x35, 0x8b, 0xe1, + 0xd5, 0x70, 0xdc, 0xcd, 0x71, 0xb7, 0x13, 0xb1, 0x94, 0xc5, 0x39, 0xee, 0x36, 0x70, 0x3f, 0xb7, + 0xb9, 0x57, 0xee, 0x76, 0x09, 0xde, 0xe8, 0xfe, 0x6e, 0x23, 0x61, 0x2b, 0x33, 0x17, 0x79, 0x4f, + 0x9e, 0x6e, 0xf2, 0x42, 0xef, 0x9b, 0x41, 0x0c, 0x5e, 0xec, 0x3d, 0x19, 0xc4, 0xc8, 0x05, 0xdf, + 0xa6, 0x2c, 0xc6, 0x30, 0xcc, 0xd8, 0x87, 0x97, 0x92, 0x91, 0xf3, 0xb9, 0x47, 0x5d, 0x2a, 0x5b, + 0x3f, 0xbb, 0xe8, 0x36, 0x7e, 0x19, 0x4c, 0xad, 0x71, 0x94, 0x5d, 0x34, 0xf6, 0x46, 0x33, 0x7a, + 0xe1, 0x26, 0x20, 0x5d, 0x73, 0x13, 0xbd, 0x49, 0x83, 0xe4, 0xd6, 0x77, 0x2f, 0x6f, 0x7d, 0xbf, + 0xf3, 0x3a, 0x75, 0x74, 0x7c, 0x7a, 0x1e, 0x7c, 0x70, 0xcf, 0xbc, 0xab, 0x76, 0x21, 0x70, 0xd7, + 0xfc, 0x2d, 0x5b, 0x28, 0xb9, 0x7c, 0x59, 0x59, 0x92, 0xab, 0xb4, 0x1d, 0x36, 0xe7, 0x88, 0x68, + 0xde, 0x9c, 0x2f, 0xdc, 0x3c, 0x8b, 0x6e, 0x90, 0x74, 0x83, 0xb4, 0x16, 0x69, 0xf3, 0xac, 0x1b, + 0xe4, 0x64, 0xdb, 0xe8, 0xeb, 0x09, 0x79, 0xf3, 0x48, 0x3a, 0x43, 0x0a, 0x6c, 0x54, 0xdd, 0x1b, + 0xd6, 0xd8, 0xc6, 0x35, 0xb6, 0x81, 0xcd, 0x6c, 0x64, 0x37, 0x1c, 0x60, 0x6d, 0x9d, 0x21, 0x35, + 0x77, 0x45, 0x32, 0xd3, 0x05, 0x89, 0xae, 0x90, 0x74, 0x85, 0x5c, 0xa2, 0x2b, 0xa4, 0xde, 0xd0, + 0x88, 0xf6, 0xae, 0x90, 0xf3, 0x5e, 0x6b, 0xfe, 0xd3, 0x9d, 0x30, 0xdf, 0x75, 0xe7, 0x0f, 0x2f, + 0x84, 0x6a, 0x87, 0xbd, 0x78, 0xf0, 0xca, 0xdb, 0x61, 0x9c, 0x29, 0x43, 0x5d, 0x27, 0xd7, 0xe8, + 0x3a, 0x49, 0xd7, 0x49, 0x97, 0xc0, 0x4e, 0x06, 0xf4, 0xf4, 0x82, 0x9f, 0x66, 0x10, 0x9c, 0x2c, + 0x81, 0xb1, 0x14, 0x01, 0x8d, 0x17, 0xcd, 0xff, 0xd4, 0x3b, 0x5a, 0x77, 0xf5, 0x48, 0x40, 0xa3, + 0xeb, 0xd2, 0x8e, 0xe2, 0x5c, 0xa5, 0xc1, 0x70, 0xe7, 0x19, 0x48, 0x79, 0x9b, 0xbc, 0xaf, 0xbb, + 0x03, 0x41, 0x0a, 0x90, 0x02, 0xa4, 0x00, 0x29, 0x68, 0xb5, 0xf8, 0xb9, 0xaf, 0x9e, 0xfc, 0x29, + 0x27, 0xbc, 0x59, 0x00, 0x4e, 0x98, 0x44, 0x16, 0x83, 0xc8, 0xa0, 0xfa, 0x98, 0x1a, 0x05, 0x36, + 0x80, 0x0d, 0x60, 0x03, 0xd8, 0xc0, 0x17, 0x84, 0x59, 0x38, 0x4e, 0xf8, 0xdf, 0x9e, 0x4a, 0xaf, + 0x82, 0xc1, 0x8a, 0x5e, 0xce, 0x71, 0xa3, 0xe0, 0x4f, 0xdf, 0xd9, 0x9d, 0x71, 0xe0, 0x05, 0x78, + 0x01, 0x5e, 0x80, 0x17, 0xf4, 0xf2, 0xc2, 0xd9, 0x45, 0x77, 0x02, 0x31, 0x41, 0xde, 0x1f, 0xcf, + 0x1c, 0x3b, 0x6c, 0x19, 0x78, 0xf4, 0xa7, 0x24, 0x1a, 0xa4, 0x4a, 0x97, 0x32, 0xd5, 0xec, 0x24, + 0x2d, 0x13, 0x45, 0x83, 0xa5, 0xc3, 0x30, 0x39, 0x53, 0xc6, 0x4a, 0x6d, 0x0d, 0x96, 0x4e, 0xec, + 0x45, 0x89, 0x40, 0x43, 0x15, 0x99, 0x32, 0xca, 0xcf, 0x61, 0xdc, 0x53, 0xe6, 0xfa, 0xf5, 0x4c, + 0xc6, 0xf9, 0x90, 0x86, 0xcd, 0x3c, 0xea, 0x24, 0x3b, 0xd1, 0xd9, 0xd0, 0xb2, 0xd6, 0xbc, 0x2c, + 0xdd, 0xdd, 0x0b, 0xbf, 0x15, 0xef, 0xd5, 0xaf, 0x55, 0x36, 0x0a, 0xf4, 0xf6, 0x3d, 0x29, 0x28, + 0x3a, 0x59, 0x00, 0x97, 0xfe, 0x52, 0xa5, 0x99, 0x89, 0x0a, 0x93, 0x09, 0xcf, 0x8e, 0x07, 0xc0, + 0x89, 0xc7, 0x89, 0xc7, 0x89, 0xc7, 0x89, 0xd7, 0xef, 0xc4, 0x9b, 0x41, 0x98, 0xdb, 0x28, 0xb3, + 0x89, 0x6b, 0x8d, 0x6b, 0x8d, 0x6b, 0x5d, 0x48, 0xd7, 0xfa, 0x15, 0x7e, 0x35, 0x7e, 0xb5, 0xce, + 0x27, 0x51, 0x65, 0x7b, 0x76, 0xd1, 0x2d, 0xdf, 0x94, 0x88, 0xdd, 0x7c, 0xab, 0xf5, 0xf6, 0x04, + 0x0d, 0xd5, 0xb6, 0x2f, 0x75, 0x64, 0xfa, 0xf7, 0xfa, 0x9f, 0x2e, 0x33, 0x91, 0xeb, 0x3f, 0x7a, + 0x32, 0xd9, 0xfe, 0x0e, 0x0a, 0x23, 0xb2, 0xfd, 0xed, 0x08, 0x9f, 0x82, 0x67, 0xfb, 0xff, 0x6f, + 0x4f, 0xa5, 0x91, 0xc9, 0x04, 0xcc, 0xf1, 0x00, 0x66, 0xa2, 0x31, 0xeb, 0x44, 0x63, 0x88, 0xc6, + 0x10, 0x8d, 0x71, 0x33, 0x1a, 0x63, 0xaa, 0x03, 0x7c, 0x29, 0x55, 0x4d, 0x15, 0x5d, 0x1a, 0xa8, + 0x51, 0x9a, 0xd9, 0x52, 0x93, 0x91, 0x3c, 0xbf, 0x18, 0x83, 0x5b, 0xa1, 0x5c, 0x80, 0x39, 0x71, + 0xb8, 0x13, 0x87, 0x3d, 0x59, 0xf8, 0x33, 0x1c, 0x86, 0xf0, 0xf6, 0x62, 0x0c, 0xa3, 0x37, 0x06, + 0xcd, 0xec, 0x4b, 0x93, 0x37, 0x07, 0x09, 0x01, 0xe5, 0x2c, 0x60, 0x56, 0x68, 0x20, 0xed, 0x01, + 0x90, 0x5a, 0x03, 0x54, 0x6b, 0xc0, 0x6a, 0x07, 0x60, 0xcd, 0x02, 0xad, 0x61, 0xc0, 0x15, 0x03, + 0xde, 0xc9, 0x40, 0x97, 0xeb, 0x72, 0x96, 0x3f, 0xc9, 0x7a, 0x58, 0x97, 0x32, 0x79, 0x99, 0xe3, + 0x12, 0x31, 0x1f, 0xd6, 0x26, 0x34, 0x5b, 0x84, 0x68, 0x5b, 0x50, 0x6d, 0x1d, 0xb2, 0xad, 0x43, + 0xb7, 0x5d, 0x08, 0x97, 0x81, 0x72, 0x21, 0x48, 0x9f, 0x2c, 0xa5, 0xd8, 0xdd, 0x00, 0x33, 0x3b, + 0xb6, 0x17, 0x25, 0xf9, 0xab, 0x8a, 0xe4, 0x86, 0x1d, 0xe1, 0xef, 0x6b, 0xc1, 0x21, 0xcd, 0xa6, + 0x8e, 0x3c, 0xf4, 0x25, 0x0b, 0x48, 0x4b, 0x52, 0xa9, 0x26, 0x8e, 0x10, 0xeb, 0xcc, 0xf0, 0xe3, + 0xfc, 0x04, 0x5b, 0xe3, 0x0b, 0xe6, 0x2d, 0x58, 0x86, 0xab, 0x69, 0x93, 0x0b, 0xbf, 0x2d, 0xbc, + 0xc9, 0x6d, 0x54, 0xb6, 0x37, 0xb6, 0xb7, 0x5e, 0x57, 0xb6, 0x37, 0x17, 0xd8, 0xf6, 0x5e, 0x14, + 0x73, 0xb4, 0x93, 0x17, 0xc5, 0xf8, 0x3c, 0x02, 0xd8, 0x50, 0xba, 0xac, 0x58, 0x10, 0x8e, 0x15, + 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, 0x84, + 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0xfa, 0x23, 0x1c, 0x5f, 0x59, 0x10, 0x8e, 0xaf, + 0x10, 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, + 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0xe8, 0xc1, 0x08, 0xa6, 0xb3, 0x6d, 0x0d, 0x5f, + 0x26, 0x3f, 0x33, 0x9e, 0xd5, 0x2e, 0x03, 0xc3, 0xca, 0xf9, 0xf2, 0xa8, 0xd8, 0xb5, 0x3c, 0x2e, + 0x1b, 0x2b, 0x0f, 0x6b, 0x23, 0x5e, 0xf8, 0x69, 0x25, 0x7e, 0x95, 0xd5, 0x08, 0xd9, 0x9b, 0x93, + 0x76, 0x66, 0xb2, 0x26, 0xee, 0x29, 0x97, 0x52, 0xd7, 0xc7, 0x53, 0x6d, 0xbc, 0x1f, 0x4d, 0xb5, + 0xf1, 0xff, 0x0d, 0xa7, 0xda, 0x38, 0x1c, 0x4f, 0xd5, 0x93, 0x96, 0x31, 0x06, 0xcc, 0xb4, 0x94, + 0x0d, 0xa5, 0xb7, 0xe1, 0x9a, 0xd5, 0xc1, 0x28, 0xd4, 0xab, 0xda, 0x8a, 0xb4, 0x51, 0xaf, 0xea, + 0x61, 0xa4, 0x8c, 0x7a, 0xd5, 0x87, 0x97, 0x86, 0x7a, 0x55, 0xe7, 0x80, 0x72, 0x16, 0x30, 0xa9, + 0x57, 0xf5, 0x01, 0x48, 0xad, 0x01, 0xaa, 0x35, 0x60, 0xb5, 0x03, 0xb0, 0xc5, 0x50, 0xd0, 0xd4, + 0xab, 0xea, 0x84, 0x62, 0x4e, 0x8f, 0xbd, 0x86, 0x68, 0x5b, 0x50, 0x6d, 0x1d, 0xb2, 0xad, 0x43, + 0xb7, 0x5d, 0x08, 0x97, 0x81, 0x72, 0x21, 0x48, 0x9f, 0x2c, 0x25, 0xa7, 0xc7, 0x46, 0x87, 0xe4, + 0xf4, 0xb8, 0x78, 0xc4, 0x3a, 0x33, 0x3c, 0xa7, 0xc7, 0x9c, 0x1e, 0x5b, 0x32, 0x39, 0x4e, 0x8f, + 0x39, 0x3d, 0x76, 0xfd, 0xf3, 0x50, 0xaf, 0x8a, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, + 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, 0x11, 0x8e, 0x08, 0x47, + 0xfb, 0xc2, 0x91, 0x7a, 0x55, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0x44, 0x38, 0x22, 0x1c, + 0x11, 0x8e, 0x08, 0x47, 0x84, 0x23, 0xc2, 0x11, 0xe1, 0x88, 0x70, 0xf4, 0x58, 0x38, 0x52, 0xaf, + 0xfa, 0x84, 0xf1, 0x5c, 0xaa, 0x23, 0xcc, 0x54, 0x92, 0x53, 0xab, 0x2a, 0x66, 0x73, 0x0b, 0x59, + 0xab, 0x6a, 0xb0, 0x2c, 0x71, 0x49, 0x63, 0x9d, 0xea, 0x51, 0x7f, 0x9a, 0xbe, 0xd4, 0xa8, 0x3a, + 0x7d, 0xfd, 0xab, 0x61, 0x23, 0x77, 0xc9, 0xb8, 0x4d, 0x5c, 0xb9, 0xac, 0xc7, 0x9e, 0xf5, 0x9a, + 0xb2, 0x3e, 0x83, 0xd3, 0x68, 0x6c, 0xa5, 0x54, 0x75, 0x3b, 0x69, 0x6e, 0xf0, 0x0e, 0xf3, 0xf1, + 0x00, 0xdc, 0x61, 0xce, 0x1d, 0xe6, 0x7f, 0xf2, 0x3a, 0xb9, 0xc3, 0xbc, 0x78, 0x24, 0x66, 0xec, + 0x0e, 0x73, 0xb3, 0x45, 0xcf, 0x22, 0xc5, 0xce, 0x62, 0xdd, 0x20, 0x2a, 0x74, 0x83, 0x70, 0x00, + 0xe0, 0xc4, 0x81, 0x4e, 0x1c, 0xf0, 0x64, 0x81, 0xcf, 0x4f, 0xe9, 0x6a, 0xbc, 0x1b, 0x84, 0x40, + 0x31, 0xb2, 0x5c, 0x11, 0xb2, 0x50, 0xf8, 0x58, 0x2c, 0x05, 0x80, 0x3e, 0x10, 0x7e, 0x43, 0xa9, + 0x35, 0x48, 0xb5, 0x03, 0xad, 0xe6, 0xe3, 0x8e, 0x4b, 0x02, 0x91, 0x69, 0xb1, 0xa3, 0x7b, 0xf9, + 0x23, 0x7b, 0xc1, 0xa3, 0x7a, 0xe1, 0x23, 0x7a, 0xc1, 0x44, 0x0b, 0x1b, 0x47, 0xf2, 0x96, 0xce, + 0x45, 0x6d, 0x1d, 0xc1, 0xdb, 0x3c, 0xfe, 0x14, 0x3c, 0x72, 0xb7, 0x72, 0xd4, 0x6e, 0xdb, 0x94, + 0x6c, 0x1d, 0xad, 0x5b, 0xb5, 0xa9, 0x82, 0x1c, 0x39, 0x9f, 0xf8, 0x7a, 0x5c, 0x69, 0x30, 0x0c, + 0x20, 0x50, 0x94, 0x2b, 0x57, 0x8c, 0x8b, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x10, 0x50, 0x08, 0x28, + 0x04, 0x14, 0x02, 0x0a, 0x01, 0x85, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x10, 0x50, 0x46, 0x05, 0xd4, + 0x2b, 0x41, 0x01, 0xf5, 0x0a, 0x01, 0x85, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x10, 0x50, 0x08, 0x28, + 0x04, 0x14, 0x02, 0x0a, 0x01, 0x85, 0x80, 0x42, 0x40, 0x21, 0xa0, 0x4c, 0x0b, 0x28, 0x0a, 0xe6, + 0xee, 0x19, 0xc7, 0x85, 0x9a, 0xa2, 0x51, 0xb5, 0x89, 0xc9, 0x7a, 0x4c, 0x4a, 0xd1, 0x0a, 0x6b, + 0x36, 0x0e, 0x96, 0xa2, 0x1d, 0x8e, 0x66, 0xe6, 0x6a, 0x29, 0xda, 0x0b, 0x87, 0x4c, 0xd6, 0x94, + 0xa9, 0xba, 0x60, 0xa2, 0x1a, 0x4d, 0x73, 0x4e, 0x93, 0xd4, 0x63, 0x8a, 0xf3, 0x1b, 0x8e, 0x06, + 0xa3, 0x29, 0x4d, 0xd6, 0x39, 0x88, 0x5a, 0xda, 0x4c, 0x66, 0xa2, 0xc3, 0xa7, 0x9e, 0xae, 0xc9, + 0xc4, 0xf5, 0x7a, 0xdb, 0xda, 0x23, 0x8f, 0x26, 0x22, 0x8c, 0x06, 0x23, 0x89, 0xa6, 0x22, 0x86, + 0xc6, 0x23, 0x83, 0xc6, 0x23, 0x80, 0x66, 0x23, 0x7d, 0x6e, 0xd1, 0x86, 0xf6, 0x08, 0xdd, 0xc4, + 0x62, 0x63, 0x15, 0xb6, 0x53, 0xd5, 0xd6, 0x69, 0xb1, 0xe3, 0xba, 0x41, 0x8d, 0x31, 0xb7, 0xd2, + 0xc1, 0x88, 0xd9, 0x56, 0x57, 0xcb, 0x43, 0x5e, 0x2b, 0x4f, 0x41, 0x57, 0x21, 0x01, 0xbf, 0xff, + 0x5a, 0x0c, 0x22, 0xbe, 0xbe, 0xb7, 0xae, 0xb9, 0x52, 0xd4, 0x3f, 0xc8, 0x6f, 0x03, 0xf8, 0x36, + 0x00, 0xbf, 0x5d, 0x54, 0xb8, 0xd7, 0x5d, 0x85, 0x59, 0x6a, 0x8e, 0x77, 0x94, 0xa1, 0x16, 0x1a, + 0xa3, 0xe7, 0xd3, 0x41, 0x43, 0xa4, 0x83, 0x46, 0x9b, 0xfe, 0x19, 0x16, 0x61, 0x48, 0x02, 0x8e, + 0xfc, 0x88, 0xbb, 0x19, 0xeb, 0x9e, 0x31, 0x71, 0x52, 0xcc, 0x77, 0xd0, 0xb8, 0x19, 0xca, 0x6c, + 0x17, 0x8d, 0x35, 0xd3, 0x5d, 0x34, 0xd6, 0x0a, 0xd2, 0x45, 0xa3, 0x4d, 0x0f, 0x0d, 0x87, 0x41, + 0x4f, 0x12, 0xfc, 0xcc, 0x80, 0xa0, 0x21, 0x30, 0x34, 0x27, 0xd5, 0x05, 0xa5, 0xbb, 0x84, 0x94, + 0x7f, 0x50, 0xda, 0x97, 0x07, 0x66, 0xf4, 0xf6, 0x56, 0x8c, 0xf9, 0xce, 0x0f, 0x46, 0xff, 0x3f, + 0x88, 0x0a, 0xfb, 0x72, 0x6e, 0x66, 0xe2, 0xb8, 0xa6, 0x77, 0x2a, 0xc8, 0x8f, 0x53, 0xa3, 0x41, + 0x91, 0x50, 0x24, 0x14, 0x09, 0x45, 0x42, 0x91, 0x8e, 0x52, 0xe4, 0x97, 0x1b, 0x8a, 0xfc, 0x3f, + 0xcd, 0x5e, 0x9a, 0xaa, 0x24, 0x5f, 0x5e, 0x29, 0xaf, 0xae, 0xde, 0x44, 0xcb, 0x4f, 0x46, 0xff, + 0xe4, 0x36, 0xae, 0x67, 0xf7, 0xfc, 0x6c, 0xf2, 0xe4, 0x96, 0xfa, 0x46, 0x96, 0x8a, 0x8e, 0x97, + 0x58, 0xfb, 0x36, 0xc8, 0xc1, 0xd3, 0x9f, 0x1d, 0x6c, 0x3e, 0x60, 0xd3, 0x69, 0x06, 0xea, 0x5b, + 0xfe, 0x36, 0x57, 0xb1, 0xba, 0x50, 0x79, 0x7a, 0x15, 0x74, 0x92, 0xa0, 0x79, 0x3e, 0x48, 0x77, + 0x16, 0x09, 0xe2, 0xb4, 0xc3, 0x38, 0x93, 0x88, 0xe2, 0xb8, 0x1e, 0xc0, 0x39, 0x21, 0x71, 0xea, + 0xb1, 0x59, 0x29, 0x53, 0xe7, 0x5c, 0xa3, 0x33, 0xc3, 0x45, 0xe8, 0x96, 0x6d, 0xa6, 0xf1, 0xac, + 0xd1, 0x86, 0xb3, 0xc6, 0xe3, 0xfc, 0x15, 0xe2, 0xfc, 0x62, 0xfe, 0x3d, 0x71, 0xfe, 0xe2, 0x79, + 0x2e, 0xc4, 0xf9, 0x09, 0x62, 0x10, 0xc4, 0x20, 0x88, 0x41, 0x10, 0x83, 0x20, 0x86, 0x40, 0x10, + 0x83, 0x38, 0xff, 0x12, 0x71, 0x7e, 0x28, 0x12, 0x8a, 0x84, 0x22, 0xa1, 0x48, 0x28, 0x92, 0x38, + 0xbf, 0x5f, 0x6a, 0x79, 0x61, 0x82, 0xaa, 0x06, 0x2a, 0x98, 0x29, 0xfb, 0xf4, 0xd3, 0x16, 0xec, + 0xd7, 0x7e, 0x4e, 0xbe, 0x3b, 0x54, 0xed, 0x22, 0x95, 0x03, 0x5d, 0xa8, 0x8b, 0x53, 0x95, 0x66, + 0xe7, 0x51, 0x37, 0x38, 0x4b, 0x3b, 0xbd, 0x6e, 0xa6, 0xbf, 0x24, 0x68, 0x76, 0x08, 0xca, 0x82, + 0xb4, 0xf8, 0xef, 0x54, 0x82, 0xca, 0x78, 0xe4, 0x8b, 0x54, 0x09, 0xaa, 0xbd, 0x34, 0x68, 0xb0, + 0xe5, 0xcd, 0x1d, 0x18, 0x0e, 0x1f, 0xcf, 0x81, 0x21, 0x57, 0xeb, 0xda, 0x0f, 0x11, 0x70, 0xb5, + 0xae, 0xa0, 0x0c, 0x32, 0x76, 0x68, 0x68, 0x06, 0xb0, 0x44, 0x80, 0xeb, 0x2e, 0x80, 0x11, 0x09, + 0xb5, 0x0a, 0x6c, 0x52, 0x00, 0x27, 0x0e, 0x74, 0xe2, 0x80, 0x27, 0x0b, 0x7c, 0xe6, 0x22, 0x4b, + 0x4b, 0x44, 0x43, 0x9f, 0xe6, 0x81, 0x49, 0x44, 0x43, 0x57, 0x57, 0x87, 0xa1, 0xa6, 0xf2, 0x10, + 0x92, 0x17, 0xf9, 0x48, 0x90, 0x5b, 0xe5, 0x6d, 0xf9, 0xf0, 0x50, 0x1f, 0xd4, 0x07, 0xf5, 0x39, + 0xa6, 0x05, 0x84, 0x34, 0x81, 0xa8, 0x36, 0x10, 0xd2, 0x08, 0x62, 0x5a, 0x41, 0x12, 0x38, 0x2d, + 0x00, 0xa8, 0x34, 0x90, 0x5a, 0x03, 0x54, 0x6b, 0xc0, 0x6a, 0x07, 0x60, 0xcd, 0x02, 0xad, 0x61, + 0xc0, 0x95, 0xd3, 0x1c, 0x33, 0x3b, 0x2e, 0xea, 0x5e, 0x6e, 0x04, 0x61, 0xab, 0x95, 0xaa, 0x2c, + 0x13, 0xbc, 0xdf, 0x63, 0xfd, 0x8d, 0xc0, 0x58, 0x07, 0x61, 0x9e, 0xab, 0x34, 0x11, 0xbb, 0xe2, + 0xa3, 0xb4, 0xbc, 0xfc, 0x65, 0x2d, 0xd8, 0x3e, 0xf9, 0xf1, 0x65, 0x3d, 0xd8, 0x3e, 0x19, 0x7e, + 0xbb, 0x3e, 0xf8, 0x6d, 0xf8, 0x7d, 0xe5, 0xcb, 0x5a, 0xb0, 0x31, 0xfe, 0x7e, 0xf3, 0xcb, 0x5a, + 0xb0, 0x79, 0xb2, 0xf2, 0xf5, 0xeb, 0xea, 0xca, 0xf7, 0x57, 0xd7, 0x4f, 0xff, 0x87, 0xcb, 0x7f, + 0xfd, 0xf2, 0xf5, 0x6b, 0xf7, 0xfb, 0xfe, 0x75, 0xff, 0xd7, 0xdd, 0xeb, 0x93, 0xbf, 0xaf, 0xfc, + 0xa3, 0x44, 0x7b, 0x7d, 0xf9, 0x7d, 0x5b, 0x1a, 0x76, 0xfa, 0x56, 0xa9, 0x9c, 0x3b, 0x33, 0x19, + 0x11, 0x8f, 0x06, 0x8f, 0x06, 0x8f, 0x06, 0x8f, 0x06, 0x8f, 0x06, 0x8f, 0x06, 0x8f, 0x06, 0x8f, + 0x46, 0xd3, 0x4b, 0xcf, 0x84, 0x62, 0x8c, 0x93, 0xf8, 0xf5, 0x70, 0x3c, 0xbc, 0x19, 0xbc, 0x19, + 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x19, 0xbc, 0x99, 0xc5, 0xf2, 0x66, 0xb8, 0xfe, 0xf0, + 0x3e, 0x3f, 0xcc, 0x5e, 0xb5, 0xc8, 0x4c, 0x8d, 0xc1, 0x30, 0x99, 0x83, 0x5b, 0x10, 0xb5, 0x3a, + 0x1c, 0xc6, 0x12, 0xae, 0x77, 0xa3, 0x2c, 0xaf, 0xe6, 0xb9, 0xa1, 0x8c, 0xce, 0xbd, 0x28, 0xa9, + 0xc5, 0xaa, 0xef, 0x3a, 0x64, 0xa5, 0xb7, 0x4b, 0x49, 0x2f, 0x8e, 0x0d, 0xe4, 0xce, 0xec, 0x85, + 0xdf, 0xcc, 0x0f, 0xf2, 0x31, 0x6d, 0xa9, 0x54, 0xb5, 0xde, 0x5d, 0x8d, 0x86, 0xa0, 0x50, 0xd1, + 0x29, 0xb8, 0x71, 0xe7, 0xf6, 0xcc, 0x5f, 0xf4, 0xa7, 0xb2, 0x51, 0x3b, 0xe9, 0xaf, 0x79, 0x16, + 0xa9, 0x62, 0x51, 0x6f, 0x92, 0xa2, 0x91, 0xa4, 0x44, 0x63, 0x95, 0x89, 0x15, 0x2a, 0x13, 0x7d, + 0x8a, 0xa1, 0x50, 0x99, 0xe8, 0x72, 0x65, 0xa2, 0x4a, 0xc2, 0xd3, 0x58, 0xb5, 0xcc, 0xd5, 0x26, + 0x8e, 0x07, 0xd0, 0x5d, 0xf9, 0xa4, 0xda, 0x61, 0x2f, 0x1e, 0xbc, 0xf2, 0x41, 0xe3, 0x62, 0x43, + 0xd5, 0x8f, 0x6b, 0x5c, 0x8b, 0x46, 0xf5, 0xa3, 0x4b, 0x60, 0x27, 0x03, 0x7a, 0x7e, 0x88, 0x71, + 0x63, 0x81, 0xdd, 0x89, 0xc5, 0x9f, 0x76, 0x3a, 0xb1, 0x0a, 0x13, 0x13, 0x16, 0x3f, 0xf6, 0x8e, + 0xd6, 0x17, 0xa0, 0x5f, 0x76, 0x3b, 0x8a, 0x73, 0x95, 0x06, 0xc3, 0x9d, 0xa7, 0x32, 0x73, 0x64, + 0x73, 0x77, 0x20, 0x48, 0x01, 0x52, 0x80, 0x14, 0x20, 0x05, 0xcd, 0x22, 0x39, 0x8d, 0x92, 0x33, + 0x93, 0x9c, 0xf0, 0x66, 0x01, 0x38, 0x61, 0xea, 0x6a, 0x79, 0x63, 0x84, 0x30, 0x35, 0x0a, 0x6c, + 0x00, 0x1b, 0xc0, 0x06, 0xb0, 0x81, 0x2f, 0x08, 0xb3, 0x70, 0x9c, 0xf0, 0xbf, 0x3d, 0x95, 0x5e, + 0x05, 0xea, 0x5b, 0x37, 0x4a, 0x4d, 0xaa, 0x84, 0xe9, 0x61, 0x60, 0x05, 0x58, 0x01, 0x56, 0x80, + 0x15, 0xb4, 0x5a, 0x7c, 0x1e, 0x5d, 0xa8, 0x3c, 0x6a, 0xfe, 0x9e, 0x6d, 0x6d, 0x18, 0x24, 0x05, + 0x03, 0xf9, 0x7e, 0xa5, 0x4f, 0x49, 0x34, 0x48, 0xde, 0x28, 0x25, 0x61, 0xd2, 0xc9, 0x54, 0xb3, + 0x93, 0xb4, 0x4c, 0xe4, 0x30, 0x96, 0x0e, 0x07, 0x37, 0x1b, 0x9a, 0xca, 0x22, 0x34, 0x98, 0xe0, + 0xb5, 0x17, 0x25, 0x02, 0x9d, 0x3c, 0x64, 0xf2, 0xde, 0x3f, 0x87, 0x71, 0x4f, 0x09, 0x8c, 0xf3, + 0x21, 0x0d, 0x9b, 0x79, 0xd4, 0x49, 0x76, 0xa2, 0xb3, 0xa1, 0x75, 0xad, 0x79, 0x59, 0x63, 0xb1, + 0x17, 0x7e, 0x2b, 0xdc, 0xab, 0x5f, 0x7f, 0xb3, 0xb1, 0xb1, 0xf5, 0x7a, 0x63, 0x63, 0xed, 0xf5, + 0xab, 0xd7, 0x6b, 0xdb, 0x9b, 0x9b, 0xeb, 0x5b, 0xeb, 0x9b, 0x05, 0xb2, 0x06, 0x4f, 0xb2, 0x1e, + 0x4f, 0x16, 0xc6, 0xbb, 0x1f, 0xe8, 0xa5, 0xcb, 0x30, 0x36, 0xed, 0xde, 0x4f, 0xc6, 0xc1, 0xbf, + 0xc7, 0xbf, 0xc7, 0xbf, 0xc7, 0xbf, 0xd7, 0x1b, 0xf5, 0x39, 0xbb, 0xe8, 0x4e, 0x20, 0x26, 0xc8, + 0xfb, 0xe3, 0x99, 0x73, 0xf3, 0xb7, 0x4c, 0xba, 0xf9, 0xb8, 0xf8, 0x8b, 0xe1, 0xe2, 0xaf, 0xe3, + 0xe2, 0x2f, 0xac, 0x8b, 0xbf, 0x56, 0xd9, 0xc0, 0xa5, 0xc7, 0xa5, 0xd7, 0xef, 0xd2, 0x5f, 0xaa, + 0x34, 0x33, 0x51, 0xda, 0x32, 0xe1, 0xd9, 0xf1, 0x00, 0x38, 0xf1, 0x38, 0xf1, 0x38, 0xf1, 0x38, + 0xf1, 0xfa, 0x9d, 0x78, 0x33, 0x08, 0x73, 0x1b, 0x65, 0x36, 0x71, 0xad, 0x71, 0xad, 0x71, 0xad, + 0x0b, 0xe9, 0x5a, 0xbf, 0xc2, 0xaf, 0xc6, 0xaf, 0xd6, 0xf9, 0x24, 0x0a, 0x7a, 0x1f, 0x2c, 0xe8, + 0xd5, 0xd8, 0xc6, 0x42, 0x43, 0x11, 0xef, 0x0b, 0x8b, 0x6f, 0x79, 0xdc, 0x86, 0x42, 0x63, 0xee, + 0x99, 0xde, 0xee, 0x13, 0x46, 0xba, 0x4d, 0x18, 0xe9, 0x2e, 0xa1, 0xb7, 0x9b, 0xc4, 0xbc, 0xef, + 0x55, 0xf3, 0xae, 0xb5, 0xb8, 0x5b, 0x4b, 0x5a, 0x8a, 0xdc, 0x9f, 0xd1, 0xf5, 0x61, 0x3e, 0x80, + 0x78, 0xfe, 0xb6, 0x7e, 0xde, 0xbf, 0x7c, 0xa6, 0xc1, 0xe8, 0x32, 0x14, 0x71, 0x03, 0x79, 0xde, + 0xdb, 0x79, 0xfa, 0xda, 0x3e, 0xed, 0x5f, 0x3c, 0xf1, 0x2d, 0xcc, 0xbb, 0xfa, 0x32, 0xab, 0xfe, + 0x8c, 0x1d, 0xf8, 0x94, 0x1d, 0xf7, 0xb4, 0x37, 0xf9, 0xf8, 0xf7, 0xf1, 0x84, 0x77, 0x51, 0x8a, + 0xb2, 0xe8, 0xe9, 0x69, 0xc2, 0x37, 0xf2, 0xbf, 0xff, 0xaf, 0x9f, 0xf8, 0xe6, 0x9f, 0xd7, 0xd3, + 0xe2, 0xd9, 0x81, 0xc1, 0x79, 0x02, 0x7f, 0x53, 0x81, 0xbd, 0xa7, 0x7f, 0x54, 0x1d, 0x81, 0x3b, + 0x6d, 0x81, 0x39, 0x6d, 0x81, 0xb7, 0x99, 0xc0, 0x5a, 0x7f, 0x61, 0x1c, 0x43, 0x97, 0xe7, 0xf6, + 0x78, 0x28, 0x9d, 0xc5, 0x9d, 0xd3, 0x39, 0x12, 0x6b, 0x6e, 0x6e, 0x5e, 0x1a, 0x3e, 0xe7, 0x99, + 0x2b, 0x3c, 0x5f, 0xdb, 0x97, 0xb9, 0x63, 0xe8, 0x3a, 0x62, 0xe5, 0x1a, 0xb6, 0x8e, 0xae, 0x2d, + 0xa4, 0x7d, 0x2b, 0x69, 0xdf, 0x52, 0x7a, 0xb7, 0x96, 0x1d, 0x77, 0x6a, 0xde, 0xb6, 0x2a, 0xa5, + 0xb0, 0x1d, 0x05, 0x59, 0xd8, 0x8e, 0xe6, 0x7f, 0xcf, 0x63, 0xd3, 0x9b, 0x3c, 0x71, 0x5e, 0xa9, + 0xa8, 0xa5, 0x0b, 0x93, 0xb6, 0xa3, 0x2d, 0x9d, 0x47, 0x59, 0x1a, 0xb7, 0xa9, 0xee, 0xed, 0x6a, + 0x6c, 0xdb, 0x1a, 0xdb, 0xbe, 0x66, 0xb6, 0xb1, 0x1b, 0xe1, 0x12, 0x5d, 0x5d, 0x93, 0x4a, 0x61, + 0x5b, 0x7f, 0xcf, 0xb5, 0xb0, 0xed, 0x7a, 0xc3, 0xb5, 0x35, 0x4f, 0x1a, 0xae, 0xe9, 0x81, 0x00, + 0x53, 0x50, 0x60, 0x1c, 0x12, 0x8c, 0x43, 0x83, 0x59, 0x88, 0xd0, 0x17, 0x9b, 0x5d, 0x72, 0xb9, + 0xe1, 0x5a, 0x9f, 0xd7, 0x47, 0x02, 0xdb, 0x50, 0xce, 0xcc, 0x64, 0x04, 0x92, 0x66, 0x44, 0x92, + 0x66, 0xf4, 0xc2, 0x8e, 0x69, 0xf8, 0x11, 0x83, 0x21, 0x31, 0x38, 0x92, 0x81, 0x25, 0xbd, 0xf0, + 0xa4, 0x19, 0xa6, 0x26, 0x4b, 0x60, 0x3e, 0x69, 0x26, 0x56, 0x61, 0x3b, 0x55, 0x6d, 0x93, 0xad, + 0x0e, 0x5e, 0x1b, 0x78, 0xf6, 0xc1, 0x28, 0xd8, 0xba, 0xba, 0x5a, 0x1e, 0x86, 0x5a, 0xcb, 0x13, + 0x98, 0x5c, 0x80, 0x3c, 0xcd, 0xe6, 0x18, 0x63, 0x0d, 0x51, 0xce, 0xe8, 0xf9, 0x66, 0x08, 0x67, + 0x1d, 0xc2, 0x81, 0x70, 0x20, 0x1c, 0x37, 0x09, 0x47, 0xb7, 0x7f, 0x6c, 0xde, 0x4f, 0x96, 0xf2, + 0x97, 0x0d, 0xfb, 0xcd, 0xc6, 0xe1, 0x4c, 0x02, 0xd6, 0x04, 0xe1, 0x4d, 0x0a, 0xe6, 0xc4, 0xe1, + 0x4e, 0x1c, 0xf6, 0x64, 0xe1, 0xcf, 0x0c, 0x0c, 0x1a, 0x82, 0x43, 0xf3, 0x7e, 0xf8, 0xcc, 0x8e, + 0x89, 0x5a, 0x2a, 0xc9, 0xa3, 0xfc, 0xca, 0x8c, 0x4f, 0x3e, 0xe3, 0x8b, 0x19, 0xec, 0x0d, 0x51, + 0xaa, 0x8f, 0x3e, 0xca, 0xbb, 0x30, 0x13, 0xbc, 0xc8, 0xb4, 0xfa, 0xa1, 0xde, 0x38, 0xfe, 0xcf, + 0x41, 0xad, 0x24, 0x91, 0x32, 0x9c, 0x89, 0xdc, 0x9b, 0x27, 0x74, 0xfb, 0xe6, 0x78, 0x05, 0xeb, + 0x07, 0x9f, 0xb7, 0x04, 0x2e, 0xa1, 0x7c, 0x59, 0xc0, 0x75, 0xdb, 0xf0, 0xfd, 0xf2, 0xce, 0x93, + 0x85, 0xcf, 0x47, 0x37, 0x60, 0x97, 0xc6, 0x6e, 0xe5, 0x98, 0x31, 0x41, 0x33, 0xb7, 0x73, 0xe0, + 0xfa, 0xe2, 0xfa, 0xe2, 0xfa, 0xe2, 0xfa, 0x1a, 0xde, 0x31, 0xe6, 0x6e, 0xe7, 0x98, 0x71, 0x7b, + 0xd7, 0x17, 0x98, 0x8c, 0x2e, 0x54, 0x9e, 0x46, 0x4d, 0xf3, 0x5c, 0x34, 0x1a, 0xc7, 0x90, 0x59, + 0xde, 0xba, 0x30, 0x6a, 0x7d, 0x0d, 0xbe, 0x83, 0xef, 0xe0, 0x3b, 0xf8, 0xce, 0x2f, 0xbe, 0xeb, + 0x45, 0x49, 0xfe, 0xaa, 0x22, 0x40, 0x77, 0xaf, 0x0d, 0x0e, 0x61, 0xb6, 0x73, 0x81, 0x9c, 0x92, + 0x17, 0xe9, 0x64, 0x20, 0x44, 0x2c, 0x33, 0xc3, 0x09, 0xf5, 0x05, 0x9e, 0x8c, 0x27, 0x58, 0xe6, + 0x2e, 0x18, 0x4e, 0x12, 0xe9, 0x78, 0x60, 0xdb, 0x44, 0x36, 0x2a, 0xdb, 0x1b, 0xdb, 0x5b, 0xaf, + 0x2b, 0xdb, 0x9b, 0x05, 0xb6, 0x95, 0x17, 0x7e, 0x3e, 0xfd, 0x64, 0x81, 0x55, 0x4b, 0x26, 0x77, + 0x80, 0x9c, 0x71, 0x82, 0x8c, 0xac, 0x40, 0x56, 0x20, 0x2b, 0xfc, 0x94, 0x15, 0x9c, 0x20, 0xcf, + 0xb9, 0x80, 0x47, 0x1c, 0x21, 0xcf, 0xbb, 0x84, 0x9f, 0xf6, 0xeb, 0xef, 0xab, 0x47, 0xc7, 0x9c, + 0x22, 0x3f, 0x7d, 0xe9, 0xf6, 0x3e, 0xed, 0x1e, 0x4b, 0x2d, 0x1e, 0x47, 0xc9, 0x66, 0xfd, 0x60, + 0xa7, 0x53, 0x3d, 0x0d, 0xb5, 0x14, 0xbb, 0xf1, 0xd8, 0x8d, 0x77, 0x45, 0xc9, 0xa2, 0xac, 0x3c, + 0x6c, 0x6e, 0x50, 0x1e, 0x97, 0x57, 0x97, 0xc3, 0xf6, 0xa8, 0x20, 0x60, 0x11, 0xea, 0x00, 0x2e, + 0x7a, 0x71, 0x1e, 0x05, 0x79, 0xa7, 0xdb, 0x89, 0x3b, 0x67, 0x57, 0xe6, 0xea, 0x01, 0xee, 0x8c, + 0x43, 0x5d, 0x00, 0x75, 0x01, 0xf6, 0x65, 0x0e, 0x75, 0x01, 0x82, 0x64, 0x61, 0xac, 0x2e, 0xc0, + 0x50, 0x29, 0xd3, 0xcc, 0x86, 0x32, 0x52, 0xd2, 0x64, 0x18, 0xc2, 0x88, 0xe8, 0x10, 0xd1, 0x21, + 0xa2, 0xe3, 0x6a, 0x44, 0xc7, 0x14, 0x24, 0x4e, 0x06, 0x30, 0x1e, 0xf1, 0x9e, 0xd9, 0x9a, 0x86, + 0x03, 0xdf, 0x77, 0xe1, 0xd2, 0x74, 0x57, 0x6f, 0xd3, 0xb0, 0x29, 0x09, 0x9f, 0x16, 0x60, 0x54, + 0x1a, 0x4e, 0xad, 0xc1, 0xaa, 0x35, 0x78, 0xb5, 0x03, 0xb3, 0x32, 0xe1, 0x1f, 0xc3, 0x91, 0x39, + 0xf3, 0x01, 0xf5, 0x99, 0x1d, 0x27, 0x13, 0x58, 0x9f, 0xf1, 0x29, 0x05, 0x0e, 0xe2, 0x65, 0x03, + 0xed, 0x33, 0x0b, 0x2b, 0x14, 0x6f, 0x9f, 0x8c, 0x2b, 0x18, 0x77, 0x1f, 0x7f, 0x7d, 0x17, 0x1b, + 0x69, 0x49, 0xbe, 0x94, 0x4b, 0x68, 0xcb, 0xbb, 0xb1, 0x9e, 0x1b, 0x82, 0xeb, 0x29, 0x32, 0xd2, + 0x09, 0xf9, 0x36, 0xf2, 0xf6, 0x2c, 0x90, 0xcf, 0x32, 0x63, 0xbc, 0x19, 0xee, 0x3d, 0xee, 0x3d, + 0xee, 0x3d, 0xee, 0x3d, 0xee, 0x3d, 0xee, 0xbd, 0xa0, 0xd3, 0x74, 0x84, 0x7f, 0x6f, 0x6a, 0x69, + 0xc5, 0xf2, 0x6c, 0x16, 0xc7, 0xc5, 0x17, 0xcc, 0xbf, 0xc1, 0xcf, 0x77, 0xc4, 0xcf, 0xf7, 0xea, + 0xdc, 0xc1, 0x70, 0xde, 0xce, 0x8d, 0x42, 0xb1, 0x95, 0xbf, 0x33, 0x9d, 0x6d, 0x62, 0x24, 0x9d, + 0xc7, 0xdc, 0x9b, 0x37, 0x52, 0xfb, 0x30, 0xb8, 0x29, 0xd1, 0x7c, 0xdd, 0xc3, 0x60, 0x18, 0xcf, + 0x4f, 0xc8, 0x2b, 0x9c, 0x90, 0x3b, 0xa4, 0xf9, 0x38, 0x21, 0x5f, 0x64, 0xa6, 0xe2, 0x84, 0x7c, + 0x5e, 0xb8, 0x24, 0x84, 0xe6, 0x34, 0x8c, 0x4a, 0xc3, 0xa9, 0x35, 0x58, 0xb5, 0x06, 0xaf, 0x76, + 0x60, 0x56, 0x48, 0xd0, 0x10, 0x42, 0xd3, 0xe3, 0x53, 0x72, 0x42, 0xae, 0x7b, 0x5c, 0x4e, 0xc8, + 0xbd, 0xdc, 0xf2, 0x6e, 0xac, 0x27, 0x27, 0xe4, 0xae, 0x11, 0x8d, 0x97, 0x27, 0xe4, 0xa6, 0x9b, + 0xa6, 0xce, 0x98, 0xae, 0xd9, 0xe6, 0xa9, 0xb8, 0xf6, 0xb8, 0xf6, 0xb8, 0xf6, 0xb8, 0xf6, 0x9e, + 0xba, 0xf6, 0xe6, 0x9b, 0xb3, 0xce, 0xb8, 0xf5, 0xeb, 0x90, 0xe2, 0xcc, 0xda, 0x90, 0x36, 0x06, + 0x31, 0x42, 0x8c, 0x10, 0x23, 0xc4, 0xe8, 0x0a, 0x31, 0x12, 0xf3, 0x32, 0xb4, 0xb0, 0xa4, 0x8d, + 0x19, 0x5b, 0x5a, 0xd2, 0xc6, 0xb4, 0x2f, 0x29, 0x69, 0x63, 0xae, 0x32, 0x0e, 0x87, 0xf1, 0x4b, + 0x8b, 0x98, 0x36, 0x36, 0xcc, 0x66, 0xa2, 0x53, 0x98, 0xfb, 0xa6, 0xe3, 0x8a, 0xc9, 0x94, 0x8c, + 0xa4, 0xee, 0xa5, 0xbd, 0x66, 0x3e, 0x12, 0xec, 0xa5, 0xfd, 0xe1, 0x5c, 0xeb, 0xa3, 0xa9, 0x36, + 0x0e, 0x46, 0x13, 0x6c, 0xd4, 0xb3, 0x28, 0x6b, 0xfc, 0x32, 0x98, 0x60, 0xa3, 0xda, 0x6e, 0xec, + 0xf5, 0xe7, 0x75, 0x3c, 0x9e, 0xd6, 0x02, 0x34, 0x32, 0x33, 0x17, 0xd6, 0x30, 0x1e, 0xc6, 0x30, + 0x14, 0xb6, 0xa0, 0x7d, 0x99, 0x9d, 0xb0, 0x03, 0xed, 0xcb, 0x8a, 0xc8, 0x60, 0xc6, 0xc2, 0x02, + 0x13, 0x8b, 0x8f, 0x55, 0xd8, 0x36, 0x13, 0x02, 0x98, 0x48, 0x7e, 0x03, 0xd7, 0xb8, 0x94, 0x0e, + 0x46, 0xa4, 0xbb, 0xba, 0x3a, 0xca, 0xb3, 0x2f, 0xdf, 0xe0, 0xe4, 0x22, 0xf0, 0x8e, 0x91, 0xcc, + 0x7a, 0xa3, 0x19, 0xf5, 0xc6, 0xdb, 0x65, 0x56, 0xe0, 0x1b, 0xf8, 0x06, 0xbe, 0x99, 0x6b, 0x09, + 0x8c, 0xb5, 0xcb, 0x94, 0xbb, 0x05, 0x85, 0x4b, 0x50, 0xac, 0xc1, 0x9a, 0x20, 0xbc, 0x49, 0xc1, + 0x9c, 0x38, 0xdc, 0x89, 0xc3, 0x9e, 0x2c, 0xfc, 0x99, 0x0b, 0x45, 0x2d, 0x71, 0x09, 0xca, 0xd3, + 0x7d, 0xb1, 0xe2, 0x5d, 0x82, 0xc2, 0x1d, 0x28, 0xf3, 0xae, 0xa0, 0x4c, 0x66, 0x79, 0xf1, 0x2e, + 0x40, 0x91, 0xc9, 0x20, 0xe7, 0xee, 0x13, 0xb3, 0x4f, 0x35, 0x51, 0x07, 0x6f, 0x3a, 0x23, 0x5c, + 0x28, 0x13, 0x1c, 0xd7, 0x17, 0xd7, 0x17, 0xd7, 0x17, 0xd7, 0xd7, 0xd0, 0x8e, 0x31, 0x9f, 0xa9, + 0x6d, 0x38, 0x43, 0xdb, 0x0f, 0x32, 0xba, 0x50, 0x79, 0x1a, 0x35, 0xcd, 0x73, 0xd1, 0x68, 0x1c, + 0x53, 0x2d, 0x1a, 0x54, 0x3b, 0xec, 0xc5, 0x83, 0x0d, 0xbb, 0xbe, 0x06, 0xdf, 0xc1, 0x77, 0xf0, + 0x1d, 0x7c, 0xe7, 0x17, 0xdf, 0xf5, 0xa2, 0x24, 0x7f, 0x55, 0x11, 0xa0, 0xbb, 0xd7, 0x06, 0x87, + 0x38, 0x0c, 0x93, 0x33, 0x65, 0x3c, 0x0a, 0x22, 0x90, 0x16, 0xbf, 0x17, 0x25, 0x82, 0x25, 0x21, + 0x22, 0x15, 0x43, 0x93, 0xe1, 0x06, 0xb1, 0x2a, 0xc1, 0xf1, 0x3e, 0xa4, 0x61, 0x33, 0x8f, 0x3a, + 0xc9, 0x4e, 0x74, 0x16, 0xe5, 0x59, 0x7f, 0xe0, 0x22, 0x84, 0x93, 0x4a, 0x7b, 0xe1, 0xb7, 0xc2, + 0x9b, 0xc8, 0x46, 0x65, 0x7b, 0x63, 0x7b, 0xeb, 0x75, 0x65, 0x7b, 0xb3, 0xc0, 0xb6, 0xe2, 0x69, + 0xde, 0xf6, 0xc9, 0x22, 0xb7, 0x92, 0x94, 0x3b, 0x40, 0xce, 0x38, 0x41, 0x46, 0x56, 0x20, 0x2b, + 0x90, 0x15, 0x7e, 0xca, 0x0a, 0x4e, 0x90, 0xe7, 0x5c, 0xc0, 0x23, 0x8e, 0x90, 0xe7, 0x5d, 0x42, + 0xb1, 0x3a, 0xcd, 0xe2, 0x9d, 0x22, 0x0b, 0xd6, 0x63, 0x72, 0x94, 0x6c, 0xd8, 0x0f, 0xa6, 0x38, + 0xce, 0x46, 0x71, 0x9c, 0x81, 0x02, 0x4a, 0x8d, 0x45, 0x00, 0x2f, 0x1c, 0xb2, 0x85, 0xbe, 0x4b, + 0x7a, 0x3b, 0x65, 0x76, 0x49, 0xb7, 0xf4, 0x29, 0xed, 0x46, 0x59, 0x5e, 0xcd, 0x73, 0xbd, 0x49, + 0xc5, 0xa5, 0xbd, 0x28, 0xa9, 0xc5, 0xaa, 0xef, 0x69, 0xf6, 0xd9, 0x33, 0xe9, 0xc5, 0xb1, 0xc6, + 0xd2, 0x8a, 0xbd, 0xf0, 0x9b, 0xb9, 0x87, 0x7f, 0x4c, 0x5b, 0x2a, 0x55, 0xad, 0x77, 0x57, 0xa3, + 0x47, 0x3b, 0x65, 0x0d, 0x86, 0x10, 0xc1, 0x1a, 0x12, 0x94, 0xb4, 0x16, 0xdc, 0x3c, 0xa3, 0x1e, + 0x56, 0x0f, 0x08, 0xcd, 0x0f, 0x19, 0xf3, 0x3d, 0x61, 0x4e, 0xf3, 0xd2, 0x6d, 0x56, 0x76, 0xcc, + 0x69, 0xbe, 0x57, 0xf9, 0xfc, 0x17, 0x30, 0xc7, 0xe2, 0x97, 0x9a, 0xe3, 0x40, 0xd0, 0x7c, 0x8b, + 0x3e, 0x71, 0x4d, 0x47, 0xcf, 0x9b, 0xd3, 0x1c, 0xf4, 0x94, 0x81, 0x69, 0x8b, 0x72, 0xe9, 0x8c, + 0x66, 0x19, 0x88, 0x5a, 0xe9, 0x8e, 0x4e, 0x19, 0x8b, 0x42, 0x19, 0x8b, 0x36, 0x99, 0x89, 0x2a, + 0xd9, 0x85, 0x44, 0x5d, 0x65, 0x56, 0xa5, 0xb0, 0x97, 0x9f, 0xab, 0x24, 0x8f, 0x9a, 0x03, 0x7c, + 0x0d, 0x9a, 0xe7, 0xaa, 0xf9, 0xbb, 0x3e, 0x5b, 0x99, 0x94, 0x54, 0xdd, 0x37, 0x8a, 0xa6, 0xb7, + 0x7b, 0x2b, 0x91, 0xa7, 0x6f, 0x33, 0xba, 0x1e, 0xab, 0x37, 0xc6, 0xae, 0x3d, 0xa6, 0x6e, 0x22, + 0x86, 0x6e, 0x30, 0x66, 0x6e, 0x2a, 0x46, 0x6e, 0x3c, 0x26, 0x6e, 0x3c, 0x06, 0x6e, 0x36, 0xe6, + 0xed, 0x96, 0x5a, 0xd4, 0x1e, 0xc3, 0x36, 0x98, 0xfa, 0xa9, 0x39, 0xd5, 0x53, 0x83, 0x0f, 0xae, + 0xc1, 0x17, 0x68, 0x87, 0x59, 0x1e, 0xb4, 0xe3, 0x4e, 0xa7, 0x15, 0x25, 0x67, 0xfa, 0x61, 0x7e, + 0xfa, 0xf1, 0xe0, 0x3b, 0xf8, 0x0e, 0xbe, 0x83, 0xef, 0xe0, 0xbb, 0x18, 0xbe, 0x47, 0x51, 0x2b, + 0xc8, 0xe3, 0x4b, 0xfd, 0xc8, 0x3e, 0x7e, 0xb0, 0x7e, 0x4c, 0x6f, 0x87, 0x71, 0x06, 0xa8, 0x03, + 0xea, 0x80, 0x3a, 0xa0, 0x0e, 0xa8, 0xdf, 0x0b, 0xea, 0xa3, 0x48, 0xb3, 0x01, 0x54, 0x1f, 0x3f, + 0x59, 0x3f, 0xac, 0xaf, 0x01, 0xe9, 0x40, 0x3a, 0x90, 0xbe, 0x68, 0x90, 0x9e, 0xe5, 0xa9, 0x3e, + 0xe9, 0x3f, 0x85, 0xe8, 0x6f, 0x0a, 0x84, 0xe8, 0xb1, 0xba, 0x54, 0x71, 0xd0, 0x0c, 0xbb, 0xe1, + 0x69, 0x14, 0x47, 0xf9, 0x95, 0x7e, 0x64, 0x9f, 0x19, 0x41, 0x3f, 0xc2, 0xef, 0xd6, 0x3e, 0xd7, + 0x76, 0x1b, 0xeb, 0x8d, 0x0a, 0x48, 0x0f, 0xd2, 0x83, 0xf4, 0x8b, 0x86, 0xf4, 0x43, 0x84, 0xc9, + 0xfb, 0xcf, 0x37, 0x80, 0xf6, 0x1b, 0x1a, 0x9f, 0x59, 0x4b, 0x7a, 0x17, 0xfd, 0x35, 0xb8, 0x2e, + 0x10, 0x83, 0x5c, 0x84, 0xdf, 0x02, 0xd5, 0xbc, 0xe8, 0x06, 0xdd, 0x30, 0x3f, 0xcf, 0xf4, 0xf3, + 0xc7, 0x9d, 0xe7, 0x83, 0xf0, 0x20, 0x3c, 0x08, 0xbf, 0x60, 0x08, 0xdf, 0x8b, 0x92, 0xfc, 0x8d, + 0x01, 0x70, 0xd7, 0x58, 0xf0, 0x63, 0xa8, 0x7b, 0x80, 0x81, 0x64, 0x76, 0x93, 0xdd, 0x01, 0x4c, + 0xd7, 0x83, 0x1a, 0xae, 0xfe, 0x97, 0xa8, 0xe0, 0x36, 0x51, 0x51, 0x6c, 0xb2, 0x9a, 0x5f, 0xea, + 0x95, 0x56, 0x36, 0x37, 0x3d, 0x7e, 0xa9, 0x8e, 0x96, 0x68, 0x9c, 0x14, 0xcb, 0xd1, 0x8c, 0x2e, + 0x7a, 0x17, 0x41, 0x98, 0xaa, 0x30, 0x08, 0x5b, 0xad, 0x54, 0x65, 0x99, 0x32, 0xe3, 0x70, 0xde, + 0x37, 0x8e, 0xfe, 0xb0, 0xc5, 0x2b, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, + 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0xd9, 0x85, 0x71, 0x66, 0x13, 0x95, 0xeb, 0xf7, 0x5c, + 0xfb, 0x0f, 0xc5, 0xa5, 0xc4, 0xa5, 0xc4, 0xa5, 0x5c, 0x30, 0x97, 0x52, 0xdf, 0xc6, 0x5f, 0x9a, + 0x4a, 0x74, 0xd0, 0xf8, 0xcc, 0x83, 0x30, 0xcf, 0x55, 0x9a, 0x68, 0xf7, 0x29, 0x4b, 0xbf, 0x7d, + 0x09, 0x83, 0x76, 0x35, 0xf8, 0xb0, 0x16, 0x6c, 0x9f, 0x7c, 0xaf, 0x5c, 0x2f, 0x7f, 0xfd, 0xba, + 0x7a, 0xfb, 0x27, 0x1b, 0xd7, 0x2b, 0xdf, 0x5f, 0xbd, 0xdc, 0xbe, 0xbe, 0xf3, 0xe3, 0xca, 0xf5, + 0x5f, 0x4a, 0xae, 0x11, 0x13, 0x7d, 0x2a, 0x3c, 0xea, 0x53, 0xe1, 0x84, 0x17, 0xd1, 0xed, 0x44, + 0x66, 0x92, 0xec, 0xc7, 0x0f, 0x26, 0xc9, 0x1e, 0x2f, 0x05, 0x2f, 0x05, 0x2f, 0x45, 0x8b, 0xc5, + 0x2e, 0x42, 0x92, 0x3d, 0xdd, 0x69, 0x9e, 0xdb, 0x9d, 0x66, 0xd4, 0x91, 0xc5, 0xc3, 0xde, 0x34, + 0x67, 0x69, 0xd8, 0x54, 0xed, 0x5e, 0x1c, 0xa4, 0x2a, 0xcb, 0xc3, 0x34, 0xd7, 0xd7, 0xa5, 0x66, + 0xe6, 0xc9, 0xf4, 0xab, 0x11, 0xe4, 0x45, 0xfa, 0xd5, 0xd0, 0xaf, 0xe6, 0x4f, 0x1e, 0xa4, 0xa9, + 0x25, 0xd5, 0x8c, 0x01, 0x6b, 0x69, 0x4d, 0xa5, 0x79, 0xcb, 0xe3, 0x22, 0xe3, 0x22, 0xe3, 0x22, + 0xeb, 0x86, 0x90, 0xc9, 0x03, 0x4d, 0x5d, 0xaa, 0x6a, 0xf8, 0x32, 0x55, 0x53, 0xba, 0xde, 0x90, + 0xbe, 0x37, 0x06, 0x62, 0x26, 0xc1, 0x4c, 0x00, 0xd4, 0x4c, 0x83, 0x9b, 0x18, 0xc8, 0x89, 0x81, + 0x9d, 0x0c, 0xe8, 0xe9, 0x05, 0x3f, 0xcd, 0x20, 0x68, 0x2e, 0x5e, 0x20, 0x10, 0x37, 0x30, 0x14, + 0x3f, 0xd0, 0xff, 0xc2, 0x34, 0xbe, 0xac, 0xd2, 0xb9, 0x8a, 0xbb, 0x2a, 0x0d, 0x3a, 0x49, 0x7c, + 0x65, 0x8e, 0x68, 0x6e, 0x0f, 0x02, 0x19, 0x40, 0x06, 0x90, 0x01, 0x64, 0x00, 0x19, 0x14, 0x51, + 0x04, 0x15, 0xa2, 0xc3, 0xfe, 0xdd, 0x00, 0xab, 0x96, 0x28, 0xb4, 0xbe, 0xf7, 0xa5, 0xe3, 0x8c, + 0x78, 0x78, 0x85, 0x88, 0xf6, 0x28, 0xd5, 0xf0, 0xb1, 0x8e, 0x07, 0xa9, 0x2a, 0x04, 0xa9, 0x08, + 0x52, 0x11, 0xa4, 0x22, 0x48, 0x45, 0x90, 0x0a, 0x5d, 0x82, 0x2e, 0x41, 0x97, 0xa0, 0x4b, 0x08, + 0x52, 0x11, 0xa4, 0x82, 0x0c, 0x20, 0x03, 0xc8, 0x00, 0x32, 0x20, 0x48, 0xe5, 0x67, 0x90, 0x4a, + 0xe3, 0xad, 0xb0, 0xa4, 0xbc, 0x3a, 0xf4, 0x62, 0x4b, 0x5a, 0xc2, 0x7d, 0x4f, 0xbe, 0xdc, 0xf3, + 0x97, 0xd1, 0x34, 0x0e, 0x47, 0xb3, 0xf0, 0x30, 0x05, 0x37, 0x3a, 0xeb, 0x06, 0xd9, 0x79, 0x27, + 0xcd, 0x9b, 0xbd, 0x3c, 0xd3, 0x97, 0x7f, 0x3b, 0xfd, 0x58, 0x92, 0x6f, 0x05, 0x5d, 0x3d, 0x92, + 0x6f, 0x49, 0xbe, 0xfd, 0x93, 0x07, 0x85, 0xed, 0xc8, 0xc0, 0xdd, 0x90, 0xed, 0x88, 0xb4, 0x5b, + 0x17, 0xf5, 0x1e, 0x27, 0x1a, 0x76, 0xf4, 0x5c, 0xc1, 0x4f, 0x34, 0xc2, 0x76, 0x14, 0x8c, 0x3c, + 0x25, 0x43, 0x91, 0xa6, 0xc9, 0x08, 0x84, 0x99, 0x08, 0x33, 0x11, 0x66, 0x22, 0xcc, 0xa4, 0xd5, + 0xe2, 0x63, 0x15, 0xb6, 0x53, 0xd5, 0x36, 0x19, 0x66, 0x7a, 0x6d, 0xe0, 0xd9, 0x07, 0x23, 0x75, + 0xbd, 0xba, 0x3a, 0x4a, 0xb7, 0x29, 0x4f, 0x60, 0x72, 0x01, 0x4e, 0x38, 0x34, 0x97, 0x8d, 0xcd, + 0x18, 0x85, 0xd6, 0xf2, 0x31, 0x43, 0xfe, 0x2c, 0x84, 0x03, 0xe1, 0x40, 0x38, 0xba, 0x09, 0x47, + 0xb7, 0x7f, 0x6c, 0xde, 0x4f, 0x96, 0xf2, 0x97, 0x0d, 0xfb, 0xcd, 0xc6, 0xe1, 0x4c, 0x02, 0xd6, + 0x04, 0xe1, 0x4d, 0x0a, 0xe6, 0xc4, 0xe1, 0x4e, 0x1c, 0xf6, 0x64, 0xe1, 0xcf, 0x0c, 0x0c, 0x1a, + 0x82, 0x43, 0xf3, 0x7e, 0xf8, 0xcc, 0x8e, 0x89, 0x5a, 0x2a, 0xc9, 0xa3, 0xfc, 0xca, 0x8c, 0x4f, + 0x3e, 0xe3, 0x8b, 0x6d, 0x1a, 0x1c, 0xa3, 0x3e, 0xfa, 0x28, 0xef, 0xc2, 0x4c, 0x60, 0x7f, 0x8e, + 0x17, 0xb0, 0xfa, 0xa1, 0xde, 0x38, 0xfe, 0xcf, 0x41, 0xcd, 0xf4, 0xf6, 0x1c, 0xb4, 0xe9, 0xcd, + 0xb4, 0xf7, 0x22, 0xbc, 0xef, 0xeb, 0xbb, 0xf1, 0x11, 0xa6, 0x56, 0xb0, 0x7e, 0xf0, 0x79, 0xab, + 0x64, 0x7c, 0xc8, 0xeb, 0x97, 0x05, 0x5c, 0xb7, 0x0d, 0x81, 0x75, 0x33, 0x3a, 0xc2, 0x89, 0x6f, + 0x80, 0xef, 0x45, 0x3b, 0xf2, 0xe4, 0x7c, 0x78, 0xb5, 0xa0, 0x71, 0xdf, 0x77, 0x3c, 0x10, 0xae, + 0x2f, 0xae, 0x2f, 0xae, 0x2f, 0xae, 0x2f, 0xae, 0xef, 0x22, 0xb9, 0xbe, 0x07, 0xd5, 0xe3, 0x7f, + 0x36, 0x8e, 0x6a, 0xc7, 0x9f, 0x0e, 0x1a, 0x07, 0x87, 0x1f, 0x8f, 0x3f, 0xbe, 0xff, 0xb8, 0x8b, + 0x17, 0xac, 0x61, 0x31, 0x77, 0x77, 0x0e, 0xf0, 0x87, 0xe7, 0x5a, 0xc1, 0xa3, 0x43, 0x16, 0x70, + 0xae, 0x05, 0x3c, 0x3c, 0xfa, 0x7c, 0x80, 0xb6, 0x28, 0x06, 0xa3, 0x1a, 0x69, 0xae, 0x3f, 0x33, + 0x8a, 0xc9, 0x66, 0xfb, 0xb3, 0x83, 0x19, 0x6c, 0xbe, 0x3f, 0x33, 0x98, 0x91, 0x66, 0xfc, 0x02, + 0xc2, 0xd2, 0xe9, 0x83, 0x1f, 0x43, 0x55, 0x0e, 0x93, 0xe7, 0x8b, 0x26, 0xc5, 0x4f, 0xe5, 0x5c, + 0x97, 0xc3, 0x76, 0xa4, 0xb5, 0x27, 0x87, 0xfe, 0x17, 0xaa, 0x33, 0x37, 0x40, 0x6f, 0xaf, 0x8e, + 0x19, 0x4e, 0xd2, 0xd9, 0xb3, 0x63, 0xc6, 0x25, 0x37, 0x95, 0x19, 0x50, 0x21, 0x33, 0x40, 0x30, + 0x6e, 0x40, 0x66, 0x40, 0x11, 0x09, 0x82, 0xcc, 0x80, 0xc7, 0xc2, 0x18, 0xe1, 0x51, 0xab, 0xf0, + 0x26, 0x05, 0x73, 0xe2, 0x70, 0x27, 0x0e, 0x7b, 0xb2, 0xf0, 0xe7, 0xa7, 0x98, 0x23, 0x3c, 0xfa, + 0x8c, 0x31, 0xc8, 0x0c, 0xf0, 0x33, 0x20, 0x45, 0x66, 0xc0, 0xb3, 0xd7, 0x8d, 0xcc, 0x00, 0x69, + 0xc0, 0x27, 0x33, 0x80, 0xcc, 0x00, 0x5c, 0x5f, 0x5c, 0x5f, 0x5c, 0x5f, 0x5c, 0xdf, 0x45, 0x77, + 0x7d, 0xc9, 0x0c, 0x30, 0xb3, 0x98, 0x64, 0x06, 0xcc, 0xbb, 0x82, 0x64, 0x06, 0xcc, 0xb9, 0x80, + 0x64, 0x06, 0x14, 0x87, 0x51, 0xc9, 0x0c, 0x98, 0x6f, 0x30, 0x32, 0x03, 0xc8, 0x0c, 0x78, 0x6a, + 0x66, 0x80, 0xc6, 0x46, 0x88, 0xfa, 0xdf, 0xa7, 0x5b, 0xcd, 0x73, 0x7e, 0x55, 0x57, 0x06, 0x8e, + 0xd1, 0xcc, 0xa0, 0x9e, 0x51, 0x94, 0x33, 0x8a, 0x6a, 0x66, 0x50, 0x8c, 0x6e, 0xa8, 0x7f, 0x86, + 0x02, 0x25, 0xad, 0x09, 0x38, 0x4f, 0xee, 0x9e, 0x59, 0x6d, 0x47, 0xb4, 0x62, 0xf5, 0xbe, 0x15, + 0xeb, 0x74, 0xa7, 0x4f, 0x1f, 0x3b, 0xa0, 0x26, 0xb9, 0x4a, 0x83, 0x58, 0x5d, 0xaa, 0x38, 0xe8, + 0xa6, 0x9d, 0x6e, 0x78, 0x36, 0x78, 0x15, 0x41, 0xb7, 0x13, 0x47, 0xcd, 0x48, 0xe9, 0x6c, 0x8a, + 0xfa, 0xb3, 0x91, 0xe8, 0x93, 0xfa, 0xd3, 0x35, 0xa4, 0x4f, 0x2a, 0x7d, 0x52, 0xff, 0xec, 0x23, + 0x69, 0xeb, 0x93, 0x3a, 0xd8, 0xa6, 0xeb, 0x41, 0xde, 0x19, 0x6e, 0xd8, 0x8a, 0xfe, 0xa6, 0xa9, + 0x33, 0x23, 0xd0, 0x41, 0xd5, 0x21, 0x78, 0x30, 0x05, 0x13, 0xc6, 0xe1, 0xc2, 0x38, 0x6c, 0x98, + 0x85, 0x0f, 0x37, 0x45, 0xa0, 0xf6, 0x0e, 0xaa, 0x34, 0xb3, 0x33, 0x08, 0x31, 0x26, 0xa1, 0x46, + 0x00, 0x72, 0x4c, 0x43, 0x8f, 0x18, 0x04, 0x89, 0x41, 0x91, 0x0c, 0x24, 0xf9, 0x11, 0xb9, 0x34, + 0x96, 0xb2, 0xde, 0x1a, 0x5e, 0x07, 0x19, 0x44, 0x17, 0xdd, 0x4e, 0x9a, 0x0f, 0x55, 0xcb, 0x95, + 0xf9, 0x1c, 0x9e, 0xfb, 0x87, 0x35, 0x64, 0x3f, 0xb7, 0xae, 0xbc, 0x3c, 0xac, 0xfd, 0xab, 0xf6, + 0xfe, 0xb8, 0x71, 0xf8, 0xf1, 0xd3, 0x71, 0x8d, 0x04, 0x22, 0x71, 0x7c, 0xbd, 0x0f, 0x67, 0xd3, + 0x6e, 0x27, 0x26, 0x81, 0xc8, 0x61, 0xfc, 0x7d, 0x08, 0x87, 0x07, 0x2f, 0x8e, 0xe3, 0xce, 0x25, + 0xd9, 0x04, 0xa2, 0x31, 0x72, 0x0e, 0x21, 0xd3, 0x64, 0x26, 0xe4, 0x94, 0x73, 0xb8, 0x61, 0x70, + 0x8c, 0x5a, 0xd2, 0xbb, 0xe8, 0x2f, 0xde, 0x22, 0x67, 0xcf, 0x0a, 0xf3, 0xaf, 0x08, 0xef, 0x42, + 0x84, 0x10, 0x21, 0x44, 0x08, 0x11, 0x9a, 0xd9, 0x31, 0xe6, 0xae, 0x7b, 0x98, 0x21, 0xbf, 0xd7, + 0x06, 0xc7, 0x38, 0x98, 0x9c, 0xe8, 0x0d, 0x0d, 0xe9, 0x6d, 0xda, 0xe9, 0xe5, 0x51, 0x72, 0x36, + 0xc2, 0xe6, 0xc9, 0x8f, 0x47, 0x7c, 0xdf, 0x52, 0xed, 0x28, 0x89, 0xf2, 0xa8, 0x93, 0x64, 0x0f, + 0xff, 0xd1, 0xe4, 0x4f, 0xf4, 0xdf, 0x22, 0x61, 0xda, 0x7e, 0xc8, 0x1b, 0x9b, 0x6f, 0xb0, 0xdb, + 0x19, 0x17, 0x42, 0x19, 0xd9, 0xbd, 0x4c, 0xa5, 0xa6, 0x21, 0x5e, 0x88, 0xbb, 0xee, 0xf2, 0x57, + 0x67, 0xb8, 0x9a, 0xc1, 0xe9, 0x55, 0xc9, 0x7c, 0xe2, 0xad, 0x38, 0x8f, 0xcd, 0x70, 0xd9, 0xe0, + 0x4d, 0x1a, 0x1d, 0xf2, 0x9a, 0xd2, 0x3b, 0x32, 0x24, 0xc5, 0xb2, 0x58, 0x7e, 0x92, 0x9a, 0x51, + 0xbe, 0x7b, 0x58, 0x4b, 0x6f, 0x25, 0x5d, 0x9c, 0x40, 0x6f, 0x25, 0x0e, 0xaa, 0x5c, 0xd1, 0x89, + 0x1c, 0x54, 0x09, 0x12, 0x08, 0x07, 0x55, 0xf3, 0x2c, 0x1e, 0x07, 0x55, 0xc4, 0xe7, 0x88, 0xcf, + 0x11, 0x9f, 0xe3, 0xa0, 0xea, 0xd9, 0xce, 0x21, 0x07, 0x55, 0x46, 0x8d, 0x88, 0x83, 0x2a, 0x88, + 0x10, 0x22, 0x84, 0x08, 0x21, 0xc2, 0x47, 0xef, 0x18, 0x0e, 0xaa, 0x38, 0xa8, 0x7a, 0xee, 0x28, + 0x1c, 0x54, 0x69, 0xdc, 0x88, 0x1c, 0x54, 0x79, 0xca, 0x63, 0x4b, 0x1c, 0x54, 0x59, 0x10, 0x0f, + 0x1c, 0x54, 0xb9, 0x7b, 0x50, 0x45, 0xab, 0x0f, 0xdb, 0x96, 0xe2, 0xb8, 0x85, 0x58, 0x6e, 0x03, + 0x51, 0xef, 0xcf, 0x77, 0xb7, 0x3f, 0x93, 0x83, 0x9b, 0xd9, 0x1e, 0x8c, 0x26, 0xdb, 0x18, 0xfc, + 0xc1, 0xfa, 0x71, 0x67, 0x77, 0x38, 0x55, 0x57, 0xfa, 0x45, 0xbc, 0xd4, 0x54, 0x60, 0x5c, 0x99, + 0xbc, 0x86, 0x75, 0x43, 0x05, 0xc6, 0xb7, 0x47, 0xa0, 0xc0, 0x58, 0x47, 0x4c, 0x83, 0x02, 0x63, + 0x21, 0xdf, 0x8e, 0x02, 0xe3, 0x39, 0x1e, 0x48, 0x81, 0xb1, 0x41, 0x88, 0x31, 0x09, 0x35, 0x02, + 0x90, 0x23, 0x25, 0x41, 0xc9, 0xdb, 0x28, 0xa2, 0x9e, 0x22, 0x6f, 0x63, 0x9e, 0xc5, 0x23, 0x6f, + 0xc3, 0x11, 0x7c, 0xbd, 0x0f, 0x67, 0x39, 0xae, 0xf2, 0x24, 0xcc, 0xc7, 0x71, 0xd5, 0xc3, 0x4b, + 0x43, 0xde, 0xc6, 0x1c, 0x63, 0x90, 0xb7, 0x41, 0xde, 0x06, 0x44, 0x08, 0x11, 0x42, 0x84, 0x10, + 0xe1, 0xe3, 0x77, 0x0c, 0x79, 0x1b, 0xe4, 0x6d, 0x3c, 0x77, 0x14, 0xf2, 0x36, 0x34, 0x6e, 0x44, + 0xf2, 0x36, 0x3c, 0xe5, 0xb1, 0x25, 0xf2, 0x36, 0x2c, 0x88, 0x07, 0xf2, 0x36, 0xdc, 0x3a, 0x95, + 0xbf, 0x75, 0x58, 0x4b, 0x81, 0xb1, 0x2e, 0x4e, 0xa0, 0xc0, 0x98, 0x83, 0x2a, 0x57, 0x74, 0x22, + 0x07, 0x55, 0x82, 0x04, 0xc2, 0x41, 0xd5, 0x3c, 0x8b, 0xc7, 0x41, 0x15, 0xf1, 0x39, 0xe2, 0x73, + 0xc4, 0xe7, 0x38, 0xa8, 0x7a, 0xb6, 0x73, 0xc8, 0x41, 0x95, 0x51, 0x23, 0xe2, 0xa0, 0x0a, 0x22, + 0x84, 0x08, 0x21, 0x42, 0x88, 0xf0, 0xd1, 0x3b, 0x86, 0x83, 0x2a, 0x0e, 0xaa, 0x9e, 0x3b, 0x0a, + 0x07, 0x55, 0x1a, 0x37, 0x22, 0x07, 0x55, 0x9e, 0xf2, 0xd8, 0x12, 0x07, 0x55, 0x16, 0xc4, 0x03, + 0x07, 0x55, 0xee, 0x1e, 0x54, 0x51, 0x60, 0x6c, 0xdb, 0x52, 0x1c, 0xb7, 0x10, 0xf7, 0x0b, 0x8c, + 0x2b, 0xa3, 0x02, 0xe3, 0x75, 0x2e, 0xa4, 0xf7, 0xff, 0x42, 0x7a, 0xb3, 0xb7, 0xac, 0x1b, 0xb1, + 0x42, 0x1f, 0xef, 0xcd, 0x8f, 0xb3, 0x6e, 0x70, 0x1a, 0xe5, 0xfa, 0xae, 0xc7, 0x1f, 0x3f, 0x90, + 0x5b, 0xf0, 0x1f, 0x13, 0xf8, 0xe2, 0x16, 0x7c, 0x6e, 0xc1, 0x7f, 0xf0, 0x23, 0x69, 0xbb, 0x05, + 0x3f, 0xcc, 0xf3, 0xb0, 0x79, 0xde, 0x17, 0x73, 0x1a, 0x76, 0xfa, 0x8c, 0x19, 0x4f, 0x3d, 0x9d, + 0xe6, 0x14, 0x0e, 0xc1, 0x82, 0xe9, 0x18, 0x02, 0xcd, 0x29, 0x7c, 0x92, 0x2d, 0x34, 0xa7, 0x58, + 0xa2, 0x39, 0x85, 0x14, 0xe4, 0x48, 0x85, 0x2f, 0xc9, 0xf9, 0x2b, 0x62, 0x2c, 0xce, 0x58, 0xce, + 0x5f, 0x74, 0x96, 0x74, 0x52, 0xa5, 0xd5, 0x0f, 0x7a, 0x70, 0x53, 0xdd, 0x1a, 0xcb, 0x7c, 0x76, + 0x5f, 0x3b, 0x8c, 0x33, 0x45, 0x36, 0x83, 0x38, 0x84, 0x0a, 0x42, 0xa9, 0x14, 0xa4, 0x8a, 0x43, + 0xab, 0x38, 0xc4, 0xca, 0x42, 0xad, 0x19, 0xc8, 0x35, 0x04, 0xbd, 0x93, 0xa5, 0x91, 0xcb, 0x66, + 0x38, 0xed, 0x74, 0x62, 0x15, 0x26, 0x12, 0xd9, 0x0c, 0xeb, 0x0b, 0x9c, 0x66, 0x97, 0xf5, 0xba, + 0xdd, 0x54, 0x65, 0x99, 0x0c, 0xf9, 0x4d, 0x8d, 0x06, 0xfd, 0x41, 0x7f, 0xd0, 0x1f, 0xf4, 0x07, + 0xfd, 0x41, 0x7f, 0xfe, 0x8b, 0xd3, 0x42, 0x25, 0x8a, 0x8c, 0x8e, 0xeb, 0xca, 0xb7, 0x83, 0xf8, + 0x14, 0x2d, 0x6b, 0xf3, 0x82, 0x28, 0x5a, 0x26, 0x80, 0xe9, 0x88, 0x9b, 0x41, 0x00, 0x53, 0x90, + 0x23, 0x08, 0x60, 0xa2, 0xe0, 0x50, 0x70, 0x28, 0x38, 0x14, 0x1c, 0x0a, 0x6e, 0x21, 0x15, 0x1c, + 0x01, 0x4c, 0xe8, 0x0f, 0xfa, 0x83, 0xfe, 0xa0, 0x3f, 0xe8, 0x6f, 0x01, 0xe9, 0x8f, 0x00, 0xa6, + 0xd5, 0x00, 0x26, 0xc5, 0x6c, 0xb6, 0x8d, 0xc1, 0xbe, 0x11, 0x58, 0xae, 0x57, 0xdb, 0xcd, 0xba, + 0xef, 0xa2, 0xbc, 0x51, 0x1d, 0xcd, 0xe8, 0x5d, 0x94, 0x17, 0xe9, 0xda, 0xcb, 0xce, 0xa5, 0x4a, + 0xe3, 0x4e, 0x68, 0xa8, 0xa2, 0x60, 0xea, 0xe9, 0x54, 0x14, 0x38, 0xe8, 0xd3, 0x52, 0x51, 0x60, + 0xc7, 0x27, 0xa5, 0xa2, 0x60, 0xae, 0x8d, 0x40, 0x45, 0x01, 0x07, 0x72, 0xce, 0xc8, 0x66, 0x0e, + 0xe4, 0x04, 0x35, 0x8f, 0xb1, 0x03, 0xb9, 0xb0, 0x75, 0xa9, 0xd2, 0x3c, 0xca, 0x54, 0x70, 0x1e, + 0x9d, 0x9d, 0x07, 0x17, 0x2a, 0x4f, 0xa3, 0xa6, 0xf9, 0xf0, 0xe4, 0xfd, 0xc3, 0x12, 0xa7, 0xb4, + 0x01, 0xa8, 0x12, 0xc0, 0x2a, 0x08, 0xb0, 0x52, 0x40, 0x2b, 0x0e, 0xb8, 0xe2, 0xc0, 0x2b, 0x0b, + 0xc0, 0xe6, 0xc2, 0x59, 0x4b, 0xc4, 0x29, 0x9f, 0xe6, 0x09, 0x2e, 0xf4, 0x31, 0x9d, 0xca, 0x85, + 0x4e, 0xe8, 0x46, 0x03, 0x41, 0x7a, 0x90, 0x1e, 0xa4, 0x07, 0xe9, 0x41, 0x7a, 0x90, 0x9e, 0x65, + 0xd2, 0x0b, 0x3a, 0x49, 0x70, 0xda, 0xe9, 0xc8, 0x91, 0xdf, 0x64, 0x40, 0x48, 0x10, 0x12, 0x84, + 0x04, 0x21, 0x41, 0x48, 0x10, 0x12, 0x94, 0x7f, 0x22, 0x19, 0x2a, 0x8f, 0x48, 0x4e, 0xb8, 0x7d, + 0xaa, 0xbd, 0x40, 0x25, 0x76, 0xa9, 0xea, 0xfb, 0x2a, 0x79, 0x1a, 0x9d, 0x9d, 0xa9, 0x34, 0x33, + 0x77, 0xb6, 0x77, 0x67, 0x1c, 0xce, 0xf8, 0x38, 0xe3, 0xb3, 0xef, 0x78, 0x70, 0xc6, 0x27, 0xc8, + 0x1a, 0xc6, 0xce, 0xf8, 0xa6, 0xa0, 0xc5, 0xbc, 0xb6, 0x9b, 0x1e, 0xce, 0xac, 0xe2, 0x5a, 0x47, + 0x71, 0xa1, 0xb8, 0x50, 0x5c, 0x8b, 0xa1, 0xb8, 0x4c, 0x01, 0xe4, 0x64, 0x00, 0x43, 0xf9, 0x5b, + 0x0f, 0x6e, 0x4c, 0x23, 0xf9, 0x5c, 0xc2, 0x50, 0x29, 0x06, 0x99, 0x92, 0xd0, 0x69, 0x01, 0x42, + 0xa5, 0xa1, 0xd4, 0x1a, 0xa4, 0x5a, 0x83, 0x56, 0x3b, 0x10, 0x6b, 0x16, 0x6a, 0x0d, 0x43, 0xae, + 0x18, 0xf4, 0x4e, 0x06, 0x6a, 0xa9, 0x38, 0xbc, 0x92, 0x33, 0xfe, 0x9b, 0xbb, 0x99, 0xfb, 0xc3, + 0x0a, 0xd9, 0x9f, 0xd9, 0xd3, 0x02, 0x6b, 0xc0, 0x6c, 0x03, 0xa0, 0x2d, 0x02, 0xb5, 0x2d, 0xc0, + 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, 0xcb, 0x00, 0xba, 0x10, 0xb0, 0x4f, 0x96, 0xd2, + 0xf8, 0x69, 0xc6, 0x83, 0x3b, 0xb6, 0x17, 0x25, 0xf9, 0xfa, 0x96, 0xe4, 0x86, 0x1d, 0xe1, 0xef, + 0x96, 0xe0, 0x90, 0x87, 0x61, 0x72, 0xd6, 0xff, 0xb4, 0x5f, 0x44, 0x37, 0x88, 0x2c, 0x20, 0x2d, + 0x8d, 0xee, 0xe7, 0x15, 0x47, 0x42, 0x4b, 0xc4, 0x3a, 0x33, 0xfc, 0xe7, 0x30, 0xee, 0x29, 0x8b, + 0xe3, 0x7f, 0x48, 0xc3, 0x66, 0x1e, 0x75, 0x92, 0x9d, 0xe8, 0x2c, 0x1a, 0xdc, 0x58, 0xbc, 0x26, + 0x3e, 0x8f, 0xeb, 0x97, 0x16, 0x4c, 0x2e, 0xfc, 0xb6, 0xf0, 0x26, 0xb7, 0xb5, 0xb9, 0xf9, 0x6a, + 0x73, 0x81, 0xcd, 0xee, 0x45, 0x31, 0x47, 0x3b, 0x79, 0x51, 0x8c, 0xcf, 0x23, 0x00, 0x0b, 0x42, + 0xa7, 0x1c, 0x0f, 0xba, 0x31, 0x12, 0xa7, 0x1e, 0x28, 0x49, 0x94, 0x24, 0x4a, 0x12, 0x25, 0x89, + 0x92, 0xbc, 0x77, 0xc7, 0x46, 0x2d, 0x95, 0xe4, 0x51, 0x7e, 0x95, 0xaa, 0xb6, 0x05, 0x39, 0xb9, + 0x2e, 0xe8, 0x7f, 0x95, 0xea, 0xa3, 0x8f, 0xfa, 0x2e, 0xcc, 0x2c, 0xe0, 0xc5, 0x78, 0xc1, 0x3f, + 0x7e, 0xae, 0x1d, 0xee, 0x7e, 0xac, 0xee, 0x34, 0x0e, 0x6b, 0x47, 0xb5, 0xe3, 0xc6, 0xf1, 0x61, + 0xfd, 0x97, 0x5f, 0x6a, 0x87, 0x8d, 0xe3, 0xff, 0x1c, 0xd4, 0xa4, 0x11, 0x64, 0xe0, 0x08, 0x67, + 0xe2, 0x0a, 0xdb, 0x8e, 0xca, 0x9e, 0x7a, 0x09, 0xff, 0xb7, 0x5a, 0x3f, 0x6e, 0x7c, 0xf8, 0x78, + 0xd8, 0x38, 0xfa, 0xcf, 0xd1, 0x71, 0x6d, 0xaf, 0xb4, 0x08, 0x9a, 0xcf, 0x95, 0x25, 0x7f, 0xf7, + 0xcb, 0x41, 0xa9, 0xe0, 0x62, 0xe7, 0xa4, 0x68, 0x34, 0xc8, 0x49, 0xdf, 0x9f, 0x7b, 0x42, 0x66, + 0x73, 0x97, 0x67, 0xc6, 0xb3, 0x9f, 0xcb, 0x3c, 0x9d, 0x79, 0x3b, 0xfd, 0xbf, 0x46, 0x12, 0x9d, + 0xe5, 0x0c, 0xc6, 0xa0, 0xb1, 0x08, 0xeb, 0x6d, 0x2b, 0x3a, 0x5b, 0x48, 0x5f, 0x93, 0x3a, 0xe3, + 0xa7, 0x7e, 0x26, 0x75, 0x86, 0xd4, 0x19, 0x87, 0xf4, 0xf0, 0x64, 0xc7, 0xc5, 0x2a, 0x6c, 0xcb, + 0x68, 0xe0, 0x89, 0xf6, 0x7d, 0x2d, 0x30, 0xd6, 0xc1, 0xc8, 0x47, 0x58, 0x5d, 0x1d, 0xb1, 0xf2, + 0x34, 0x55, 0xc3, 0xd1, 0xf7, 0x38, 0x57, 0x46, 0xee, 0x07, 0x7b, 0xd0, 0xf0, 0x4c, 0xdc, 0x17, + 0xf6, 0xa0, 0xc9, 0x49, 0x71, 0x72, 0x05, 0x4e, 0x86, 0x93, 0xe1, 0xe4, 0x42, 0x71, 0x32, 0xe9, + 0xac, 0xde, 0x89, 0x24, 0x71, 0xb1, 0x64, 0x03, 0xa0, 0x2d, 0x02, 0xb5, 0x2d, 0xc0, 0xb6, 0x0e, + 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, 0xcb, 0x00, 0xba, 0x10, 0xb0, 0xcb, 0x8b, 0xae, 0x99, 0x1d, + 0x4b, 0x3a, 0xab, 0xb1, 0x2f, 0xd2, 0x59, 0x45, 0x87, 0x27, 0x9d, 0x95, 0x74, 0x56, 0x4b, 0x26, + 0x47, 0x3a, 0x6b, 0x21, 0x47, 0x23, 0x9d, 0xf5, 0xf1, 0x66, 0x48, 0x3a, 0x2b, 0x4a, 0x12, 0x25, + 0x89, 0x92, 0x44, 0x49, 0x2e, 0xaa, 0x92, 0x24, 0x9d, 0x55, 0x78, 0xc1, 0x49, 0x67, 0x5d, 0x22, + 0x9d, 0x95, 0x74, 0xd6, 0x42, 0x8b, 0x1d, 0xd2, 0x59, 0xdd, 0x1a, 0x81, 0x74, 0x56, 0xd1, 0x74, + 0x56, 0x03, 0x37, 0x4b, 0xcb, 0xd9, 0x8b, 0x5f, 0xdd, 0xea, 0x7e, 0x55, 0x57, 0x62, 0xdd, 0x30, + 0x77, 0xa3, 0x2c, 0xaf, 0xe6, 0xb9, 0xe1, 0xf6, 0x78, 0x7b, 0x51, 0x52, 0x8b, 0x55, 0x5f, 0x57, + 0xf4, 0x3d, 0x93, 0xa4, 0x17, 0xc7, 0x06, 0x53, 0x97, 0xf6, 0xc2, 0x6f, 0x72, 0x83, 0x7d, 0x4c, + 0x5b, 0x2a, 0x55, 0xad, 0x77, 0x57, 0xa3, 0xa1, 0xbc, 0x32, 0x34, 0x21, 0x88, 0x73, 0x1c, 0xda, + 0x4a, 0x46, 0xd3, 0xe8, 0x9e, 0x7b, 0x7f, 0xfa, 0xc7, 0xd1, 0xf4, 0xfb, 0xdf, 0x1f, 0xf6, 0xa7, + 0x7b, 0x6c, 0x32, 0x59, 0x91, 0x3e, 0xfb, 0xc5, 0xb6, 0xf8, 0x45, 0xe8, 0xb7, 0x6f, 0x26, 0x65, + 0xd5, 0x68, 0x8a, 0xaa, 0xf1, 0xee, 0xfa, 0x15, 0xba, 0xeb, 0xdf, 0x1e, 0x82, 0xee, 0xfa, 0x4f, + 0x06, 0x4a, 0xba, 0xeb, 0x73, 0x83, 0xf6, 0x3c, 0x8b, 0xc7, 0x3d, 0x6a, 0xb6, 0x81, 0x55, 0x10, + 0x60, 0xa5, 0x80, 0x56, 0x1c, 0x70, 0xc5, 0x81, 0x57, 0x16, 0x80, 0xfd, 0x8c, 0x93, 0x70, 0x8f, + 0x9a, 0x4d, 0x7d, 0xc7, 0x0d, 0xda, 0x90, 0x1e, 0xa4, 0x07, 0xe9, 0x41, 0x7a, 0x90, 0x1e, 0xa4, + 0x37, 0x37, 0xe9, 0x71, 0x83, 0x36, 0x24, 0x08, 0x09, 0x42, 0x82, 0x90, 0x20, 0x24, 0xe8, 0x38, + 0x09, 0x72, 0xb2, 0x67, 0xf5, 0x64, 0xcf, 0x40, 0x26, 0x8e, 0xc6, 0x03, 0xbd, 0x17, 0x0e, 0x19, + 0x85, 0x29, 0x63, 0xb0, 0x6f, 0x04, 0x25, 0xad, 0xe7, 0xa6, 0x1a, 0x72, 0x14, 0xf4, 0xd8, 0xe3, + 0xfc, 0xd6, 0x33, 0xdf, 0x13, 0xe6, 0xb4, 0x3b, 0xdd, 0xf6, 0x66, 0xc5, 0xce, 0x34, 0x98, 0xd6, + 0xf3, 0x4d, 0x6a, 0x3e, 0x33, 0x7a, 0xfe, 0xcb, 0x9f, 0xe3, 0xc5, 0x97, 0x2e, 0xba, 0xf1, 0xfc, + 0xb7, 0xfb, 0x4f, 0x1c, 0x8e, 0xc1, 0xd3, 0xe6, 0x34, 0x43, 0x3d, 0x59, 0x05, 0xda, 0xa4, 0x8f, + 0x4e, 0x89, 0x63, 0x40, 0xca, 0xe8, 0x96, 0x2c, 0xc6, 0xa4, 0x89, 0x31, 0x09, 0x62, 0x46, 0x6a, + 0xd8, 0x85, 0x62, 0x5d, 0xa7, 0xf6, 0xa5, 0xe8, 0xac, 0x1b, 0xc4, 0xad, 0x6e, 0x90, 0x5d, 0x25, + 0xfa, 0x0e, 0xe7, 0x6f, 0x4a, 0xb5, 0x6e, 0x3f, 0x5d, 0xd3, 0xdb, 0xd4, 0x9b, 0x54, 0xa4, 0x3d, + 0x02, 0x62, 0x22, 0xe2, 0x61, 0x30, 0xc2, 0x61, 0x2a, 0xa2, 0x61, 0x3c, 0x82, 0x61, 0x3c, 0x62, + 0x61, 0x36, 0x42, 0xe1, 0x96, 0x92, 0xd0, 0x9d, 0x04, 0x64, 0xea, 0xc6, 0x78, 0xb3, 0x37, 0xc4, + 0x1b, 0xcf, 0x57, 0x5c, 0x23, 0x5f, 0x51, 0x00, 0x7a, 0xc4, 0x20, 0x48, 0x3c, 0x78, 0x4a, 0xbe, + 0xa2, 0xc1, 0x7c, 0x45, 0x95, 0x84, 0xa7, 0xb1, 0x6a, 0x99, 0x3f, 0xa1, 0x1a, 0x0f, 0x64, 0xfe, + 0x64, 0xaa, 0x6f, 0x89, 0x1c, 0x4c, 0x89, 0x63, 0xa7, 0x20, 0x86, 0x4a, 0x61, 0xa9, 0x38, 0xa6, + 0x8a, 0x63, 0xab, 0x2c, 0xc6, 0x9a, 0xc1, 0x5a, 0x43, 0x98, 0x3b, 0x59, 0x1a, 0x0e, 0xa6, 0x2c, + 0xbe, 0x58, 0x13, 0xd9, 0x19, 0xdd, 0x4e, 0x96, 0x07, 0x99, 0xca, 0xb2, 0xa8, 0x93, 0x04, 0xbd, + 0x6e, 0x60, 0xb6, 0x2d, 0xf3, 0xe4, 0xed, 0xde, 0x3f, 0x2c, 0x44, 0x05, 0x51, 0x41, 0x54, 0x10, + 0x95, 0x57, 0x44, 0x65, 0xbc, 0xad, 0xb1, 0x40, 0x1b, 0x63, 0xa1, 0xb6, 0xc5, 0x02, 0x5d, 0x46, + 0x24, 0xdb, 0x12, 0x4b, 0x77, 0x65, 0x14, 0x6e, 0x3b, 0x6c, 0xa3, 0xdf, 0xab, 0x44, 0xff, 0x50, + 0xc9, 0x36, 0xc2, 0xb6, 0x4c, 0x44, 0xb0, 0x4d, 0xb0, 0x15, 0x33, 0xf1, 0xb4, 0x4f, 0xcf, 0x09, + 0x29, 0x70, 0x3a, 0xdc, 0x9e, 0x22, 0xa5, 0xc0, 0x5d, 0x74, 0xe3, 0xac, 0x7c, 0xfb, 0x94, 0xd4, + 0xc8, 0xc5, 0xaa, 0x74, 0xb4, 0xd0, 0x1d, 0x34, 0xa0, 0xa3, 0x05, 0x27, 0x44, 0x2e, 0x8a, 0x43, + 0x4e, 0x88, 0x38, 0x21, 0xfa, 0xf9, 0x02, 0x71, 0x42, 0x64, 0x19, 0x3b, 0x05, 0x31, 0x54, 0x0a, + 0x4b, 0xc5, 0x31, 0x55, 0x1c, 0x5b, 0x65, 0x31, 0xd6, 0xac, 0x1c, 0xe1, 0x84, 0xe8, 0x09, 0xce, + 0x1e, 0x27, 0x44, 0x9c, 0x10, 0x41, 0x54, 0x10, 0x15, 0x44, 0x05, 0x51, 0x3d, 0x7d, 0xc7, 0x70, + 0x42, 0xf4, 0xe8, 0x2f, 0x4e, 0x88, 0xe6, 0x1a, 0x8e, 0x13, 0x22, 0x3d, 0x26, 0xc2, 0x09, 0x91, + 0xf7, 0x66, 0xc2, 0x09, 0x91, 0x59, 0xa5, 0xc1, 0x09, 0x91, 0xbd, 0x13, 0x22, 0x3a, 0x24, 0xd8, + 0xb6, 0x04, 0xcb, 0x16, 0x60, 0xb9, 0x3d, 0xc2, 0x5e, 0x37, 0xce, 0x1a, 0xf5, 0xb3, 0xee, 0x6e, + 0xab, 0x7b, 0xd4, 0x9f, 0x0d, 0xbd, 0x11, 0x7c, 0xef, 0x8d, 0xa0, 0xa1, 0x2a, 0x7f, 0x1e, 0x63, + 0xf2, 0xb1, 0x2d, 0x42, 0x92, 0xa5, 0xfa, 0xba, 0x22, 0xf4, 0x1f, 0x46, 0x53, 0x04, 0xc1, 0xd8, + 0x13, 0x4d, 0x11, 0x68, 0x8a, 0xf0, 0x27, 0x0f, 0xd2, 0x5c, 0xbd, 0x6c, 0xa6, 0x6a, 0x99, 0x46, + 0x08, 0x34, 0x42, 0x58, 0xa2, 0x11, 0x82, 0x5e, 0xc1, 0xa0, 0xbd, 0x11, 0x82, 0xa9, 0x9c, 0x11, + 0xc3, 0xb9, 0x22, 0xa6, 0xfb, 0xdb, 0x1a, 0x8a, 0x7b, 0xd1, 0x6a, 0x41, 0x16, 0xdc, 0xc4, 0x40, + 0x4e, 0x0c, 0xec, 0x64, 0x40, 0xcf, 0x8f, 0x38, 0x9a, 0xb1, 0x33, 0x32, 0x81, 0x24, 0x0e, 0x43, + 0xc9, 0x1b, 0x04, 0xca, 0x1c, 0x0e, 0x63, 0x24, 0x59, 0xaa, 0x35, 0x7d, 0x5e, 0x43, 0x4c, 0x4a, + 0x4b, 0x50, 0x45, 0x67, 0x9a, 0xbc, 0x91, 0xf4, 0x78, 0x63, 0x52, 0xa4, 0x82, 0x14, 0x41, 0x8a, + 0x20, 0x45, 0x90, 0x22, 0x48, 0x11, 0xa4, 0x08, 0x52, 0x04, 0x29, 0x82, 0x14, 0x41, 0x8a, 0xf8, + 0x22, 0x45, 0x34, 0xe6, 0x69, 0x70, 0x3a, 0x6e, 0xf7, 0x5d, 0x5a, 0x3a, 0x1c, 0xdf, 0xcf, 0x52, + 0x1f, 0xcf, 0xc6, 0x53, 0xd5, 0x56, 0xa9, 0x4a, 0x9a, 0x2a, 0x38, 0x0d, 0x93, 0xd6, 0x1f, 0x51, + 0x6b, 0xf0, 0x9a, 0x34, 0x9d, 0x95, 0xdf, 0xf7, 0x70, 0xce, 0xce, 0x05, 0x1d, 0x3a, 0xce, 0xce, + 0x39, 0x3b, 0xff, 0x93, 0x07, 0x71, 0x76, 0x4e, 0xc0, 0x8a, 0x80, 0x15, 0x01, 0x2b, 0x0d, 0x0f, + 0x34, 0xe1, 0x47, 0x08, 0xfa, 0x15, 0x04, 0x9a, 0x08, 0x34, 0x11, 0x68, 0x22, 0xd0, 0x74, 0xc7, + 0xe2, 0x7b, 0x51, 0x92, 0xbf, 0xaa, 0x18, 0x8c, 0x33, 0xbd, 0x36, 0xf0, 0x68, 0xb3, 0xf5, 0x9f, + 0x06, 0xab, 0x70, 0x25, 0xea, 0x3d, 0x85, 0x8a, 0xf8, 0xa4, 0xea, 0x3b, 0x25, 0x0b, 0xf6, 0x0c, + 0xd6, 0x73, 0x8a, 0xd4, 0x71, 0x4a, 0xbf, 0xfa, 0x8d, 0xca, 0xf6, 0xc6, 0xf6, 0xd6, 0xeb, 0xca, + 0xf6, 0x66, 0x81, 0x6c, 0xc0, 0x93, 0xa2, 0xc7, 0x13, 0xc2, 0xf7, 0x8f, 0xf1, 0x21, 0x8a, 0x10, + 0xbe, 0xbf, 0x47, 0x0c, 0x90, 0x59, 0xf4, 0x58, 0x07, 0x87, 0xcc, 0x22, 0x02, 0x35, 0x04, 0x6a, + 0x08, 0xd4, 0x10, 0xa8, 0x21, 0x50, 0x43, 0xa0, 0x86, 0x40, 0x0d, 0x81, 0x1a, 0x02, 0x35, 0x04, + 0x6a, 0x08, 0xd4, 0x10, 0xa8, 0x21, 0x50, 0x43, 0xa0, 0x86, 0x40, 0x8d, 0xe9, 0x40, 0x0d, 0x79, + 0x97, 0xa6, 0xde, 0xb1, 0xf5, 0x77, 0x6b, 0x29, 0x0f, 0xf3, 0x70, 0x3c, 0x93, 0x77, 0x93, 0x89, + 0x78, 0x98, 0x96, 0x99, 0xa9, 0xb3, 0xbe, 0x66, 0x08, 0xd2, 0x4e, 0x2f, 0x8f, 0x92, 0x33, 0x7d, + 0x29, 0x99, 0x77, 0x1f, 0x4c, 0x3a, 0xe6, 0x63, 0xd4, 0xb4, 0x9e, 0xac, 0x62, 0x92, 0x31, 0xef, + 0x68, 0xe1, 0x79, 0x53, 0xa6, 0x97, 0x48, 0xc5, 0xfc, 0x99, 0xf1, 0x92, 0x8a, 0xe9, 0x1a, 0x0c, + 0x98, 0x0e, 0xa5, 0x15, 0x2f, 0xbe, 0xaf, 0x03, 0x26, 0xdc, 0xf4, 0xeb, 0xa9, 0x1b, 0x36, 0xaa, + 0xf8, 0xbd, 0x8f, 0xe2, 0x6b, 0x05, 0x1c, 0xd3, 0xc0, 0x23, 0x06, 0x40, 0x62, 0x40, 0x24, 0x01, + 0x48, 0x66, 0x42, 0x2b, 0xd4, 0xf4, 0xde, 0xe3, 0xb5, 0xac, 0x2f, 0xc2, 0x45, 0xad, 0xe9, 0xd9, + 0xa9, 0xc1, 0x7b, 0x5a, 0xfb, 0x4f, 0x07, 0xfa, 0x81, 0x7e, 0xa0, 0x1f, 0xe8, 0xd7, 0x66, 0xed, + 0xb1, 0x0a, 0xdb, 0xa9, 0x6a, 0x9b, 0x84, 0x7e, 0x13, 0xc7, 0xb7, 0x07, 0xa3, 0xd0, 0xea, 0xea, + 0x6a, 0x79, 0xf6, 0xbf, 0x3b, 0x71, 0xb6, 0x72, 0x1f, 0x39, 0xb3, 0xc1, 0xaf, 0xa3, 0xe4, 0xc4, + 0x72, 0xdc, 0x69, 0x86, 0x71, 0x10, 0xb5, 0x16, 0xe2, 0xfa, 0xf0, 0x34, 0x36, 0xca, 0x4a, 0x31, + 0xac, 0x04, 0x2b, 0xc1, 0x4a, 0xb0, 0x12, 0xac, 0xf4, 0x44, 0x56, 0x8a, 0x07, 0xac, 0x14, 0xfb, + 0xc3, 0x4a, 0x9c, 0xcb, 0xeb, 0x3e, 0xbb, 0xbd, 0x6b, 0x14, 0x14, 0x4f, 0x3c, 0xd6, 0xef, 0xa0, + 0x78, 0xc2, 0x4d, 0xc7, 0x82, 0xa3, 0x15, 0x1b, 0x8e, 0x03, 0x47, 0x2b, 0xf3, 0xed, 0x02, 0x8e, + 0x56, 0x50, 0x32, 0x28, 0x19, 0x94, 0x8c, 0x76, 0x6b, 0xe7, 0x68, 0x45, 0x53, 0x10, 0x8b, 0xa3, + 0x15, 0xa0, 0x1f, 0xe8, 0x07, 0xfa, 0x09, 0x62, 0x71, 0xb4, 0xe2, 0x0e, 0x2b, 0x71, 0xb4, 0x02, + 0x2b, 0xc1, 0x4a, 0xb0, 0x12, 0xac, 0xc4, 0xd1, 0x8a, 0xfd, 0x27, 0x71, 0xb4, 0xf2, 0x27, 0x47, + 0x2b, 0x94, 0x3b, 0x9a, 0x7a, 0xbf, 0x56, 0xdf, 0xab, 0xa5, 0x52, 0xc7, 0xa3, 0xe1, 0x2c, 0x0e, + 0x47, 0x93, 0xf0, 0xb1, 0xcc, 0x51, 0xcb, 0xc1, 0x9c, 0xd6, 0x03, 0x39, 0xed, 0x25, 0x8d, 0x15, + 0x6e, 0x98, 0x70, 0xc1, 0xa1, 0xe4, 0x86, 0x89, 0x27, 0x7c, 0x24, 0x6d, 0x65, 0x8d, 0x61, 0x2f, + 0x3f, 0x57, 0x49, 0x1e, 0x35, 0x07, 0x48, 0x1f, 0x34, 0xcf, 0x55, 0xf3, 0x77, 0xfd, 0x07, 0xf1, + 0xf7, 0x8e, 0xa2, 0xeb, 0x1c, 0xf1, 0xe6, 0x46, 0xc3, 0xbe, 0xcd, 0x68, 0x3e, 0xee, 0x5f, 0xe3, + 0x52, 0x0b, 0x97, 0x65, 0x2e, 0xbd, 0x12, 0x7d, 0x92, 0x0c, 0xda, 0x85, 0xab, 0xc1, 0x13, 0x34, + 0xcd, 0x27, 0x67, 0x6e, 0xe4, 0x59, 0xb5, 0xc3, 0x2c, 0x0f, 0xda, 0x71, 0xa7, 0xd3, 0xd2, 0xd1, + 0xb3, 0x62, 0xe6, 0x2d, 0x4c, 0x3f, 0x1e, 0x7c, 0x07, 0xdf, 0xc1, 0x77, 0xf0, 0x1d, 0x7c, 0x17, + 0xc3, 0xf7, 0x28, 0x6a, 0x05, 0x79, 0x7c, 0xa9, 0x1f, 0xd9, 0xc7, 0x0f, 0xd6, 0x8f, 0xe9, 0x3a, + 0x6f, 0x21, 0x07, 0xd4, 0x01, 0x75, 0x40, 0x1d, 0x50, 0x2f, 0x18, 0xa8, 0x8f, 0x62, 0xcc, 0x06, + 0x50, 0x7d, 0xfc, 0x64, 0xfd, 0xb0, 0xbe, 0x06, 0xa4, 0x03, 0xe9, 0x40, 0xfa, 0xa2, 0x41, 0x7a, + 0x96, 0xa7, 0xfa, 0xa4, 0xff, 0x14, 0xa2, 0xbf, 0x29, 0x10, 0xa2, 0xc7, 0xea, 0x52, 0xc5, 0x41, + 0x33, 0xec, 0x86, 0xa7, 0x51, 0x1c, 0xe5, 0x57, 0xfa, 0x91, 0x7d, 0x66, 0x04, 0xfd, 0x08, 0xbf, + 0x5b, 0xfb, 0x5c, 0xdb, 0x6d, 0xac, 0x37, 0x2a, 0x20, 0x3d, 0x48, 0x0f, 0xd2, 0x2f, 0x1a, 0xd2, + 0x0f, 0x11, 0x26, 0xef, 0x3f, 0xdf, 0x00, 0xda, 0x6f, 0x68, 0x7c, 0x66, 0x2d, 0xe9, 0x5d, 0xf4, + 0xd7, 0xe0, 0xba, 0x40, 0x0c, 0x72, 0x11, 0x7e, 0x0b, 0x54, 0xf3, 0xa2, 0x1b, 0x74, 0xc3, 0xfc, + 0x3c, 0xd3, 0xcf, 0x1f, 0x77, 0x9e, 0x0f, 0xc2, 0x83, 0xf0, 0x20, 0xfc, 0x82, 0x21, 0x7c, 0x2f, + 0x4a, 0xf2, 0x37, 0x06, 0xc0, 0x5d, 0xe3, 0x25, 0x2e, 0x86, 0x6e, 0x68, 0x32, 0x90, 0x59, 0x6d, + 0xf2, 0x46, 0x26, 0xc3, 0xd7, 0xf1, 0x98, 0xbe, 0x81, 0x49, 0xe2, 0xd6, 0x1d, 0x03, 0x37, 0x2e, + 0x19, 0xbd, 0x69, 0x49, 0xea, 0x95, 0x56, 0x36, 0x37, 0x3d, 0x7e, 0xa9, 0x8e, 0xe6, 0xe9, 0x9f, + 0x14, 0xcb, 0xd1, 0x8c, 0x2e, 0x7a, 0x17, 0x41, 0x98, 0xaa, 0x30, 0x08, 0x5b, 0xad, 0x54, 0x65, + 0x99, 0x32, 0xe3, 0x70, 0xde, 0x37, 0x8e, 0xfe, 0xb0, 0xc5, 0x2b, 0x9c, 0x59, 0x9c, 0x59, 0x9c, + 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0x59, 0x9c, 0xd9, 0x85, 0x71, 0x66, + 0x13, 0x95, 0xeb, 0xf7, 0x5c, 0xfb, 0x0f, 0xc5, 0xa5, 0xc4, 0xa5, 0xc4, 0xa5, 0x5c, 0x30, 0x97, + 0x52, 0xdf, 0xc6, 0x5f, 0x9a, 0x4a, 0x74, 0xd0, 0xf8, 0xcc, 0x83, 0x30, 0xcf, 0x55, 0x9a, 0x68, + 0xf7, 0x29, 0x4b, 0xbf, 0x7d, 0x09, 0x83, 0x76, 0x35, 0xf8, 0xb0, 0x16, 0x6c, 0x9f, 0x7c, 0xaf, + 0x5c, 0x2f, 0x7f, 0xfd, 0xba, 0x7a, 0xfb, 0x27, 0x1b, 0xd7, 0x2b, 0xdf, 0x5f, 0xbd, 0xdc, 0xbe, + 0xbe, 0xf3, 0xe3, 0xca, 0xf5, 0x5f, 0x4a, 0xae, 0x11, 0x93, 0x26, 0x33, 0xdb, 0x8d, 0xb2, 0xbc, + 0x9a, 0xe7, 0x9a, 0x5b, 0x9a, 0xee, 0x45, 0x49, 0x2d, 0x56, 0xfd, 0x9d, 0xda, 0x77, 0x3a, 0x92, + 0x5e, 0x1c, 0x6b, 0x34, 0x8e, 0xbd, 0xf0, 0x9b, 0xb9, 0x87, 0x7f, 0x4c, 0x5b, 0x2a, 0x55, 0xad, + 0x77, 0x57, 0xa3, 0x47, 0x17, 0xc8, 0x8b, 0xe8, 0x76, 0x22, 0x33, 0x49, 0xf6, 0xe3, 0x07, 0x93, + 0x64, 0x8f, 0x97, 0x82, 0x97, 0x82, 0x97, 0xa2, 0xc5, 0x62, 0x17, 0x21, 0xc9, 0x9e, 0x3e, 0x39, + 0xcf, 0xee, 0x93, 0x33, 0x7f, 0xbf, 0x23, 0x3b, 0x8d, 0x69, 0xf2, 0xe8, 0x42, 0xa5, 0x99, 0xbe, + 0xce, 0x34, 0xa3, 0xe7, 0x71, 0xdb, 0xbe, 0x20, 0x05, 0xd2, 0x9a, 0x86, 0xd6, 0x34, 0x7f, 0xf2, + 0x20, 0x6e, 0xdc, 0xc7, 0x1b, 0xc6, 0x1b, 0x5e, 0x44, 0x6f, 0x58, 0xfb, 0xd5, 0x30, 0x71, 0xd6, + 0x0d, 0xe2, 0xa8, 0xad, 0xfa, 0x2c, 0x1f, 0x44, 0x49, 0xae, 0xd2, 0xcb, 0x30, 0x36, 0xd7, 0x94, + 0xf9, 0xfe, 0xe1, 0x34, 0xdb, 0xc3, 0x2d, 0x79, 0xbf, 0x5e, 0x59, 0x5b, 0xa3, 0x09, 0xb4, 0x48, + 0x13, 0x68, 0xcd, 0x78, 0x67, 0x1a, 0xf7, 0xc4, 0xf0, 0x4f, 0x0c, 0x07, 0x65, 0xf0, 0x50, 0x2f, + 0x2e, 0x6a, 0xc6, 0x47, 0x73, 0x51, 0x83, 0x19, 0x8b, 0xef, 0x45, 0x49, 0xbe, 0xbe, 0x65, 0xb0, + 0x0f, 0xf4, 0x96, 0x81, 0x47, 0x9b, 0xc9, 0xa3, 0x19, 0x7f, 0x99, 0xd9, 0xa0, 0x4b, 0xa6, 0xf3, + 0x6a, 0x0c, 0x03, 0xfb, 0xcc, 0x30, 0x86, 0xf3, 0x6c, 0x26, 0xe3, 0x08, 0xa4, 0x66, 0x18, 0xda, + 0xbe, 0xd3, 0xaf, 0xde, 0x60, 0xfe, 0x8d, 0xad, 0x57, 0xbf, 0xb5, 0xb9, 0xf9, 0x6a, 0xb3, 0x40, + 0xaf, 0xff, 0x85, 0x1f, 0x4f, 0x3d, 0x59, 0x80, 0x4b, 0x55, 0xfa, 0x1e, 0x76, 0xaa, 0xda, 0xa9, + 0xca, 0xce, 0x85, 0xfc, 0xf9, 0x99, 0xd1, 0xf0, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, + 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xdd, 0xf2, 0xb7, 0xb9, 0x2e, + 0x4a, 0x77, 0xba, 0xc4, 0x30, 0x4b, 0x60, 0x74, 0x5f, 0x58, 0xa9, 0x48, 0x1d, 0xc9, 0xb2, 0x6e, + 0x70, 0xa6, 0x12, 0x95, 0xea, 0x7d, 0x43, 0x53, 0x0a, 0xea, 0xd6, 0xf3, 0x39, 0x7b, 0x75, 0x50, + 0x1b, 0x71, 0xf6, 0x6a, 0x47, 0xfb, 0x14, 0xfc, 0xec, 0x55, 0x73, 0x1a, 0xc7, 0xcc, 0x46, 0xd0, + 0x9a, 0xce, 0x61, 0x08, 0x5a, 0x08, 0xc7, 0x10, 0x8e, 0x21, 0x1c, 0xa3, 0x3b, 0x1c, 0xa3, 0x1b, + 0xaa, 0xa6, 0xbc, 0xa1, 0x76, 0x94, 0x66, 0x79, 0xf0, 0x47, 0x18, 0xe5, 0xe6, 0x02, 0xcc, 0xf7, + 0xba, 0x49, 0xf7, 0x0d, 0xfc, 0xd2, 0xcb, 0xba, 0x6c, 0x53, 0x60, 0x27, 0x01, 0x7a, 0x82, 0xe0, + 0x27, 0x05, 0x82, 0xe2, 0x60, 0x28, 0x0e, 0x8a, 0xb2, 0xe0, 0x68, 0x38, 0x4e, 0x61, 0x68, 0xcf, + 0x18, 0x8b, 0x61, 0xcf, 0xec, 0x98, 0x5e, 0x94, 0xe4, 0x5b, 0x1b, 0x26, 0x37, 0xcc, 0x08, 0xbf, + 0xde, 0x18, 0x1c, 0xc2, 0x6c, 0x6c, 0x7b, 0xfc, 0x65, 0x76, 0xc3, 0x2f, 0x49, 0xc5, 0xba, 0x85, + 0x88, 0x65, 0x66, 0x38, 0xa1, 0xd8, 0xf7, 0x64, 0x3c, 0xc1, 0x20, 0xa8, 0x61, 0x38, 0x98, 0x36, + 0x11, 0x81, 0x98, 0xb8, 0x6d, 0x13, 0x59, 0x7f, 0xb3, 0xb1, 0xb1, 0xf5, 0x7a, 0x63, 0x63, 0xed, + 0xf5, 0xab, 0xd7, 0x6b, 0xdb, 0x9b, 0x9b, 0xeb, 0x5b, 0xeb, 0x9b, 0x05, 0xb6, 0x9a, 0x17, 0x7e, + 0x3e, 0xfd, 0xc4, 0x93, 0xd0, 0xbf, 0x89, 0x4e, 0x4c, 0x7d, 0x0d, 0x70, 0x11, 0x7e, 0xb3, 0x21, + 0x3d, 0x66, 0x87, 0x45, 0x78, 0x20, 0x3c, 0x10, 0x1e, 0x08, 0x0f, 0x84, 0x07, 0xc2, 0x03, 0xe1, + 0x81, 0xf0, 0x40, 0x78, 0x20, 0x3c, 0x10, 0x1e, 0xc5, 0x15, 0x1e, 0x99, 0x6a, 0x76, 0x92, 0x96, + 0x0d, 0xed, 0x71, 0xef, 0xc8, 0xc8, 0x0f, 0xe4, 0x07, 0xf2, 0x03, 0xf9, 0x81, 0xfc, 0x40, 0x7e, + 0x20, 0x3f, 0x90, 0x1f, 0xc8, 0x0f, 0xe4, 0x07, 0xf2, 0xc3, 0x01, 0xf9, 0xe1, 0x74, 0x5e, 0x98, + 0xa1, 0x52, 0x83, 0xc9, 0xf3, 0x6d, 0x94, 0x1c, 0x4c, 0x27, 0xd0, 0x6b, 0xad, 0x40, 0xd0, 0xff, + 0x52, 0x75, 0x56, 0x7a, 0x0f, 0x3b, 0x54, 0x1a, 0xcb, 0x1e, 0x1e, 0x3e, 0xde, 0xb3, 0xe4, 0xe1, + 0x0a, 0xc9, 0xc3, 0x82, 0xfa, 0x91, 0xe4, 0xe1, 0x22, 0x92, 0x84, 0xb1, 0xe4, 0xe1, 0xb0, 0x15, + 0x76, 0xf3, 0xe8, 0x52, 0x05, 0x03, 0xe4, 0x36, 0x1f, 0x3c, 0xbb, 0x33, 0x1e, 0x21, 0x33, 0x42, + 0x66, 0x84, 0xcc, 0x08, 0x99, 0x79, 0x15, 0x32, 0x9b, 0xc6, 0xb0, 0x20, 0xef, 0x0f, 0x6c, 0x3e, + 0x7e, 0xb6, 0xbe, 0x61, 0x70, 0x8c, 0x5a, 0xd2, 0xbb, 0xe8, 0x2f, 0xde, 0xf5, 0x82, 0x9f, 0x28, + 0x51, 0x47, 0x03, 0x39, 0x42, 0x8e, 0x90, 0x23, 0xe4, 0xf8, 0xdc, 0x1d, 0xc3, 0x79, 0xd2, 0xa3, + 0xbf, 0x38, 0x4f, 0x9a, 0x6b, 0x38, 0xce, 0x93, 0xf4, 0x98, 0x08, 0xe7, 0x49, 0x45, 0xb3, 0x1a, + 0xce, 0x93, 0xbc, 0x14, 0x1f, 0xd4, 0xd1, 0x20, 0x3c, 0x10, 0x1e, 0x08, 0x0f, 0x84, 0x07, 0xc2, + 0x03, 0xe1, 0x81, 0xf0, 0x40, 0x78, 0x20, 0x3c, 0x10, 0x1e, 0x08, 0x0f, 0xe3, 0xc2, 0x83, 0x3a, + 0x1a, 0xe4, 0x07, 0xf2, 0x03, 0xf9, 0x81, 0xfc, 0x40, 0x7e, 0x20, 0x3f, 0x90, 0x1f, 0xc8, 0x0f, + 0xe4, 0x07, 0xf2, 0x03, 0xf9, 0x61, 0xf4, 0x89, 0xd4, 0xd1, 0x3c, 0xb9, 0x8e, 0x66, 0x58, 0xfe, + 0xc1, 0x05, 0x2e, 0xf6, 0xac, 0xc1, 0x01, 0x2b, 0x28, 0x69, 0x2d, 0x57, 0x4a, 0x7b, 0xcd, 0x3c, + 0x19, 0xb9, 0xb0, 0xfb, 0xc3, 0xe9, 0xd5, 0x47, 0xb3, 0x6b, 0x1c, 0x8c, 0xe6, 0xd4, 0xa8, 0x67, + 0x51, 0xd6, 0xf8, 0x65, 0x30, 0xa7, 0xc6, 0xf1, 0x60, 0x4e, 0x8d, 0xdd, 0xac, 0xfb, 0xcb, 0xcd, + 0x94, 0x0a, 0x74, 0xb7, 0x4c, 0xd6, 0x6d, 0xeb, 0xbf, 0x50, 0xa6, 0xff, 0x50, 0x6e, 0x91, 0x71, + 0x30, 0x2a, 0xc1, 0x2d, 0x32, 0x76, 0xa2, 0x0a, 0xdc, 0x22, 0x33, 0xd7, 0x46, 0xe0, 0x16, 0x19, + 0x0a, 0x41, 0xad, 0x43, 0x90, 0x18, 0x14, 0xc9, 0x40, 0x92, 0x1f, 0x2a, 0xc7, 0x58, 0x21, 0x68, + 0xd6, 0x6d, 0x8f, 0x8a, 0x50, 0xe4, 0x4e, 0x80, 0xee, 0x19, 0x93, 0xb3, 0x1f, 0x69, 0xa8, 0x13, + 0x84, 0x3c, 0x29, 0xe8, 0x13, 0x87, 0x40, 0x71, 0x28, 0x94, 0x85, 0x44, 0xb3, 0x21, 0x30, 0xce, + 0x7e, 0x1e, 0x8d, 0x5f, 0x9c, 0xfd, 0x3c, 0xe2, 0x83, 0x70, 0xf6, 0xa3, 0x6f, 0x3c, 0xce, 0x7e, + 0xbc, 0x35, 0x11, 0xce, 0x7e, 0x7c, 0x78, 0xfa, 0x22, 0xa7, 0x9e, 0xf5, 0xdd, 0xff, 0xf3, 0x4e, + 0xdc, 0x12, 0x56, 0x1c, 0xd3, 0x43, 0x1a, 0x72, 0x3e, 0x76, 0x54, 0x3b, 0xec, 0xc5, 0x03, 0xb7, + 0x6c, 0x73, 0x6d, 0x6d, 0x0d, 0x5d, 0x83, 0xae, 0x41, 0xd7, 0xa0, 0x6b, 0xd0, 0x35, 0xe8, 0x1a, + 0x74, 0x0d, 0xba, 0x06, 0x5d, 0x83, 0xae, 0x41, 0xd7, 0x14, 0x58, 0xd7, 0x8c, 0x0a, 0x5b, 0x64, + 0x95, 0xcd, 0xdd, 0x41, 0x11, 0x1d, 0x88, 0x0e, 0x44, 0x07, 0xa2, 0x03, 0xd1, 0x81, 0xe8, 0x40, + 0x74, 0x20, 0x3a, 0x10, 0x1d, 0x88, 0x0e, 0x44, 0x87, 0x03, 0xa2, 0x83, 0x42, 0x1a, 0xe1, 0x12, + 0x8a, 0xac, 0xdb, 0xe6, 0x16, 0x1a, 0x6d, 0x52, 0x93, 0x5b, 0x68, 0x48, 0x3e, 0x76, 0x44, 0x2c, + 0x92, 0x7c, 0x2c, 0xc8, 0x0c, 0xdc, 0x42, 0x43, 0x9c, 0x8c, 0x38, 0x19, 0x71, 0x32, 0xe2, 0x64, + 0x0e, 0xc4, 0xc9, 0xb8, 0x85, 0xc6, 0xbe, 0x8e, 0x7b, 0x49, 0x1d, 0x0e, 0x94, 0x08, 0x25, 0x42, + 0x89, 0x50, 0xa2, 0x0b, 0x94, 0xc8, 0xd1, 0xd1, 0xa3, 0xbf, 0x38, 0x3a, 0x9a, 0x6b, 0x38, 0x8e, + 0x8e, 0xf4, 0x98, 0x08, 0x47, 0x47, 0x45, 0xb3, 0x1a, 0x8e, 0x8e, 0xbc, 0x94, 0x1c, 0xd4, 0xe1, + 0xa0, 0x6b, 0xd0, 0x35, 0xe8, 0x1a, 0x74, 0x0d, 0xba, 0x06, 0x5d, 0x83, 0xae, 0x41, 0xd7, 0xa0, + 0x6b, 0xd0, 0x35, 0xe8, 0x1a, 0xdf, 0x75, 0x0d, 0x75, 0x38, 0x88, 0x0e, 0x44, 0x07, 0xa2, 0x03, + 0xd1, 0x81, 0xe8, 0x40, 0x74, 0x20, 0x3a, 0x10, 0x1d, 0x88, 0x0e, 0x44, 0x07, 0xa2, 0xc3, 0xc0, + 0x13, 0xa9, 0xc3, 0x79, 0x5c, 0x1d, 0x0e, 0xb7, 0xd8, 0xd8, 0x36, 0x01, 0x5b, 0xaf, 0xde, 0x8d, + 0xab, 0x6b, 0x8e, 0xba, 0xed, 0x42, 0x5d, 0x58, 0xa3, 0xb5, 0xd8, 0xcb, 0x48, 0x91, 0x97, 0xb1, + 0x4b, 0x6b, 0x2a, 0x5c, 0x5a, 0xe3, 0x53, 0x64, 0x81, 0x4b, 0x6b, 0x5c, 0xbe, 0xb4, 0x26, 0xce, + 0xba, 0x41, 0x1c, 0xb5, 0x55, 0x1f, 0xaf, 0xcd, 0x05, 0x4c, 0xa7, 0xae, 0xff, 0x9e, 0x1d, 0x4e, + 0x77, 0xc5, 0xda, 0x4d, 0xfa, 0xc7, 0x7a, 0x45, 0x7b, 0xfa, 0x87, 0x21, 0x15, 0xc4, 0x8d, 0x39, + 0xb2, 0xb8, 0x27, 0x86, 0x7f, 0x62, 0x38, 0x28, 0x83, 0x87, 0x7e, 0xc8, 0x28, 0x63, 0x11, 0xd3, + 0xa9, 0x48, 0xe9, 0xfa, 0x96, 0x09, 0x83, 0x1f, 0xe1, 0xcb, 0x96, 0x81, 0x47, 0x9b, 0x8d, 0x8c, + 0x1a, 0x8c, 0x4f, 0x4b, 0x44, 0x42, 0x85, 0xc2, 0x5b, 0x52, 0x91, 0x4f, 0xc9, 0xd8, 0x95, 0xc1, + 0x48, 0xa7, 0x48, 0x84, 0x53, 0xfa, 0xd5, 0x6f, 0x6d, 0x6e, 0xbe, 0xda, 0x2c, 0xd0, 0xeb, 0xf7, + 0x24, 0xf4, 0x77, 0xb2, 0x00, 0x6d, 0x60, 0xfa, 0x1e, 0x76, 0xaa, 0xda, 0xa9, 0xca, 0xce, 0x85, + 0xfc, 0xf9, 0x99, 0xd1, 0xf0, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, + 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xf1, 0xb7, 0xdd, 0xf2, 0xb7, 0x39, 0xef, 0x35, 0x75, 0xde, + 0xab, 0xef, 0x98, 0x5f, 0xc3, 0x41, 0xeb, 0x0b, 0x8b, 0xaf, 0x57, 0xf7, 0x6b, 0xb5, 0xf1, 0x3a, + 0x4b, 0x5a, 0x4e, 0xaa, 0x9f, 0x79, 0x64, 0x3f, 0x9f, 0x15, 0x3d, 0xff, 0xdd, 0xcf, 0xf1, 0xde, + 0x4b, 0x79, 0x1a, 0x26, 0x59, 0xb7, 0x93, 0xe6, 0x73, 0xbf, 0xf2, 0x89, 0xdf, 0x7b, 0xf3, 0xc8, + 0x39, 0xed, 0x51, 0xcf, 0x71, 0xbc, 0x36, 0xd9, 0xac, 0x53, 0x26, 0x1b, 0x90, 0xc5, 0xba, 0x65, + 0xb0, 0x31, 0xd9, 0x6b, 0x4c, 0xe6, 0x9a, 0x91, 0xb5, 0x76, 0x31, 0x59, 0xd7, 0xf1, 0x79, 0xa9, + 0x39, 0xde, 0x05, 0x9a, 0x13, 0x70, 0x46, 0xcf, 0x75, 0x3c, 0x03, 0x67, 0x8d, 0x0c, 0x1c, 0x9f, + 0x22, 0x62, 0x64, 0xe0, 0xb8, 0x9e, 0x81, 0x73, 0x91, 0xf7, 0x82, 0x2c, 0xfa, 0x7f, 0xca, 0x6c, + 0xa0, 0x7e, 0x32, 0x0a, 0x01, 0x7a, 0x02, 0xf4, 0xf6, 0xe0, 0x48, 0x0c, 0x96, 0x64, 0xe0, 0xc9, + 0x4c, 0xf8, 0x84, 0x00, 0xfd, 0x0c, 0xbe, 0x10, 0xa0, 0xbf, 0x35, 0x71, 0x02, 0xf4, 0x4f, 0x1f, + 0x87, 0x00, 0xbd, 0xb3, 0xaf, 0x9e, 0x00, 0xbd, 0x95, 0xa7, 0x12, 0xa0, 0x7f, 0x94, 0xfb, 0x50, + 0x88, 0x00, 0xfd, 0x38, 0x8e, 0xa8, 0xf5, 0x4a, 0x2c, 0xaa, 0xa1, 0x6c, 0xc7, 0x62, 0xa8, 0x86, + 0x22, 0x16, 0x43, 0x2c, 0x86, 0x58, 0x0c, 0xb1, 0x18, 0x62, 0x31, 0xc4, 0x62, 0x88, 0xc5, 0x10, + 0x8b, 0x21, 0x16, 0x43, 0x2c, 0x86, 0x58, 0x0c, 0xb1, 0x18, 0x62, 0x31, 0xc4, 0x62, 0x5c, 0x8f, + 0xc5, 0x90, 0x2f, 0x69, 0xea, 0xcd, 0x5a, 0x7a, 0xa3, 0xb6, 0x52, 0x26, 0x27, 0xe3, 0xdb, 0xca, + 0x9a, 0x7c, 0x21, 0x68, 0x33, 0xba, 0x6c, 0x45, 0xd4, 0x46, 0xe6, 0xb0, 0x8c, 0x67, 0x58, 0xc4, + 0xf3, 0xec, 0xe0, 0xe9, 0x6f, 0xf1, 0x19, 0x6f, 0xb0, 0x34, 0x28, 0x14, 0x6d, 0x87, 0x4d, 0x95, + 0x3d, 0xfb, 0xed, 0x4d, 0x94, 0xce, 0xad, 0x67, 0x3d, 0xd3, 0x96, 0xe6, 0x0b, 0xcc, 0xce, 0x1d, + 0x19, 0xd1, 0x11, 0x01, 0xd1, 0x18, 0xe9, 0xd0, 0x15, 0xd1, 0xd0, 0x1e, 0xb9, 0xd0, 0x1e, 0xa1, + 0xd0, 0x1b, 0x89, 0x90, 0xc5, 0xbf, 0x79, 0x03, 0x9f, 0x37, 0xdb, 0x46, 0x5f, 0xa2, 0xfa, 0xcd, + 0x23, 0x49, 0x54, 0x17, 0x0c, 0x49, 0x92, 0xa8, 0x4e, 0xa2, 0xfa, 0x9f, 0x3c, 0x28, 0x6c, 0x47, + 0x41, 0x16, 0xb6, 0x23, 0xfd, 0xa7, 0xa3, 0x93, 0x27, 0x93, 0xac, 0xee, 0x10, 0x1c, 0x98, 0x82, + 0x05, 0xe3, 0xf0, 0x60, 0x1c, 0x26, 0xcc, 0xc2, 0x85, 0x9b, 0xd1, 0x12, 0xed, 0x07, 0xa4, 0x61, + 0xdb, 0xdc, 0xb1, 0x68, 0xd8, 0x36, 0x74, 0x18, 0xba, 0xce, 0x61, 0x28, 0x87, 0xa1, 0x2e, 0x41, + 0x90, 0x0c, 0x14, 0xe9, 0x85, 0x24, 0xcd, 0xd0, 0x64, 0x0c, 0xa2, 0xa6, 0x3c, 0x9f, 0x51, 0xc4, + 0xc4, 0xf0, 0xed, 0x5f, 0x93, 0x91, 0xb8, 0xf2, 0x4b, 0x1a, 0xd6, 0x04, 0xe1, 0x4d, 0x0a, 0xe6, + 0xc4, 0xe1, 0x4e, 0x1c, 0xf6, 0x64, 0xe1, 0xcf, 0x0c, 0x0c, 0x1a, 0x82, 0xc3, 0xc9, 0xd2, 0xc8, + 0x5d, 0xf9, 0x15, 0xab, 0xb0, 0x9d, 0xaa, 0xb6, 0xc0, 0x9d, 0x5f, 0xeb, 0xaf, 0x0d, 0x8e, 0x71, + 0x30, 0x0a, 0xe2, 0xaf, 0xae, 0x8e, 0x12, 0x9c, 0xcb, 0x13, 0x58, 0x5e, 0xe0, 0xdb, 0x30, 0x35, + 0xd7, 0xa9, 0x3f, 0x68, 0x44, 0x5a, 0xeb, 0xd6, 0x85, 0xfc, 0x78, 0x08, 0x10, 0x02, 0x84, 0x00, + 0x5d, 0x25, 0x40, 0x53, 0xba, 0x40, 0x4e, 0x1f, 0x48, 0xeb, 0x04, 0x21, 0xbd, 0x20, 0x06, 0x9b, + 0x92, 0xf0, 0x69, 0x01, 0x46, 0xa5, 0xe1, 0xd4, 0x1a, 0xac, 0x5a, 0x83, 0x57, 0x3b, 0x30, 0x6b, + 0x16, 0x6e, 0x0d, 0xc3, 0xae, 0x9c, 0xfe, 0x98, 0xd9, 0x71, 0x51, 0x4b, 0x25, 0x79, 0x94, 0x5f, + 0x99, 0xd5, 0x22, 0x33, 0x3e, 0xa5, 0xc0, 0x4d, 0xa2, 0xa5, 0xfa, 0xe8, 0xa3, 0xbd, 0x0b, 0x33, + 0xc1, 0x7d, 0x3e, 0x5e, 0xd8, 0xea, 0x87, 0x7a, 0xe3, 0xf8, 0x3f, 0x07, 0xb5, 0x92, 0xe4, 0xb5, + 0xad, 0x99, 0xf1, 0xfb, 0x97, 0x6f, 0x7f, 0x7d, 0x17, 0x1b, 0x69, 0x6a, 0x65, 0xeb, 0x07, 0x9f, + 0xb7, 0x4a, 0x62, 0x43, 0x5f, 0xbf, 0x5c, 0x80, 0xf5, 0xdc, 0x10, 0x5c, 0x4f, 0x91, 0x91, 0x4e, + 0xb8, 0x30, 0x58, 0xde, 0x9e, 0x4b, 0x2a, 0x09, 0x4f, 0x63, 0xd5, 0x92, 0xf3, 0xed, 0xc7, 0x03, + 0xe2, 0xda, 0xe3, 0xda, 0xe3, 0xda, 0xe3, 0xda, 0xe3, 0xda, 0xdf, 0xda, 0x71, 0xa7, 0x9d, 0x4e, + 0xac, 0xc2, 0x44, 0xd2, 0xad, 0x5f, 0x87, 0x14, 0x67, 0xd6, 0x26, 0x93, 0x0f, 0x79, 0x65, 0xc4, + 0xbc, 0x20, 0x46, 0x88, 0x11, 0x62, 0x84, 0x18, 0xef, 0xdb, 0x71, 0xc4, 0xbc, 0x0c, 0x2d, 0xec, + 0x11, 0x41, 0x2f, 0x53, 0x4b, 0xfb, 0x69, 0xbf, 0xfe, 0xbe, 0x7a, 0x74, 0x4c, 0xdc, 0x4b, 0xdf, + 0x92, 0xee, 0x7d, 0xda, 0x3d, 0x96, 0x5e, 0x54, 0x82, 0x5f, 0x76, 0xfd, 0x7c, 0xaf, 0x0e, 0xe3, + 0x0d, 0x75, 0x5d, 0x98, 0x55, 0x28, 0x22, 0xf5, 0xd8, 0x37, 0x35, 0xc3, 0x37, 0xdf, 0x96, 0xc7, + 0xe5, 0x4c, 0xe5, 0xb0, 0xad, 0xb5, 0x43, 0xa6, 0xf9, 0x17, 0x6f, 0x22, 0x6f, 0x2c, 0x93, 0xcb, + 0x9e, 0xce, 0x48, 0x9f, 0xb6, 0x2e, 0x05, 0xc9, 0x1e, 0xf3, 0x50, 0xea, 0x91, 0x3d, 0x66, 0x51, + 0xca, 0x15, 0x3f, 0x7d, 0x3a, 0x23, 0x7f, 0x5a, 0x77, 0x67, 0xe9, 0x87, 0x39, 0x50, 0x63, 0xa7, + 0xe9, 0x07, 0xcd, 0xc7, 0x34, 0xff, 0x55, 0xe0, 0x3f, 0xf8, 0x0f, 0xfe, 0x73, 0x82, 0xff, 0xc8, + 0x9e, 0x76, 0x54, 0x2e, 0x88, 0xc9, 0x06, 0x49, 0xf8, 0xb4, 0x00, 0xa3, 0xd2, 0x70, 0x6a, 0x0d, + 0x56, 0xad, 0xc1, 0xab, 0x1d, 0x98, 0x35, 0x1f, 0x79, 0x5b, 0xe2, 0x24, 0x49, 0x9f, 0x4f, 0x49, + 0xf6, 0xb4, 0xee, 0x71, 0xc9, 0x9e, 0xf6, 0x72, 0xcb, 0xbb, 0xb1, 0x9e, 0x64, 0x4f, 0xbb, 0x46, + 0x34, 0x64, 0x4f, 0x3f, 0xc6, 0x74, 0xc9, 0x9e, 0xc6, 0xb5, 0xc7, 0xb5, 0xc7, 0xb5, 0xc7, 0xb5, + 0xbf, 0x67, 0xc7, 0x91, 0x3d, 0xed, 0x04, 0x29, 0x92, 0x3d, 0x0d, 0x31, 0x42, 0x8c, 0x10, 0x23, + 0xc4, 0xe8, 0x0a, 0x31, 0x12, 0xf3, 0x32, 0xb4, 0xb0, 0x64, 0x4f, 0x1b, 0x5b, 0x5a, 0xb2, 0xa7, + 0xb5, 0x2f, 0x29, 0xd9, 0xd3, 0xae, 0x32, 0x0e, 0x87, 0xf1, 0x4b, 0x0b, 0x98, 0x3d, 0xad, 0xf1, + 0x4e, 0x3b, 0xf3, 0xef, 0xdd, 0xed, 0xe6, 0xd8, 0xbf, 0xaa, 0xab, 0xdb, 0xa9, 0x0f, 0x4b, 0xa6, + 0x04, 0x61, 0x69, 0x37, 0xca, 0xf2, 0x6a, 0x9e, 0x1b, 0x6a, 0xc5, 0xbd, 0x17, 0x25, 0xb5, 0x58, + 0xf5, 0xfd, 0xe9, 0x3e, 0xc7, 0x27, 0xbd, 0x38, 0x36, 0x90, 0xaa, 0xb7, 0x17, 0x7e, 0x33, 0x3f, + 0xc8, 0xc7, 0xb4, 0xa5, 0x52, 0xd5, 0x7a, 0x77, 0x35, 0x1a, 0xc2, 0x69, 0xeb, 0x31, 0x8c, 0x3b, + 0x8e, 0xe0, 0x4d, 0xc9, 0x48, 0xda, 0xe7, 0xe3, 0xef, 0xdb, 0xab, 0x8f, 0x27, 0xd5, 0xa8, 0xb6, + 0x4b, 0xdc, 0xe1, 0x6a, 0xcf, 0x2e, 0x5d, 0xb0, 0x47, 0x67, 0xae, 0x72, 0xd5, 0x70, 0xb1, 0x58, + 0xd8, 0xcb, 0xcf, 0xfb, 0x2a, 0xb4, 0xa9, 0xf7, 0x55, 0xdd, 0x24, 0xf4, 0x4d, 0x3f, 0x9f, 0x6b, + 0xa4, 0xe6, 0x5e, 0x51, 0xae, 0x91, 0x92, 0x0b, 0x1d, 0x72, 0x8d, 0xd4, 0x1c, 0x0f, 0x34, 0xd4, + 0x96, 0xde, 0x6c, 0x3b, 0x7a, 0xae, 0x93, 0x12, 0x81, 0x1c, 0xd3, 0xd0, 0x23, 0x06, 0x41, 0x62, + 0x50, 0x24, 0x03, 0x49, 0x7e, 0x28, 0x66, 0x63, 0xd7, 0x49, 0x9d, 0xab, 0x38, 0xee, 0x04, 0x86, + 0x7c, 0xa2, 0x07, 0xb7, 0xd7, 0xbd, 0xa3, 0x9a, 0xaa, 0x19, 0x51, 0xed, 0xb0, 0x17, 0x0f, 0x8c, + 0xa7, 0x1d, 0xc6, 0x19, 0xf5, 0xd8, 0xf2, 0xb0, 0x2a, 0x08, 0xaf, 0x52, 0x30, 0x2b, 0x0e, 0xb7, + 0xe2, 0xb0, 0x2b, 0x0b, 0xbf, 0x66, 0x60, 0xd8, 0x10, 0x1c, 0x4f, 0x96, 0x46, 0xae, 0x1e, 0xdb, + 0x7c, 0xb6, 0x94, 0xe1, 0x2c, 0xa9, 0x45, 0x8b, 0x71, 0x17, 0x39, 0x4a, 0x39, 0xc5, 0xdb, 0x46, + 0xda, 0xca, 0x68, 0x8c, 0x11, 0x6a, 0x8c, 0x1a, 0xfc, 0x3e, 0x38, 0xb7, 0x30, 0x24, 0xee, 0xfa, + 0x0f, 0x47, 0xd9, 0xa1, 0xec, 0x50, 0x76, 0x28, 0x3b, 0x87, 0x83, 0x51, 0x32, 0x41, 0x29, 0xc3, + 0x10, 0x86, 0xaa, 0x42, 0x55, 0xa1, 0xaa, 0x5c, 0x55, 0x55, 0xe6, 0xbb, 0x7c, 0xf4, 0xf2, 0xf3, + 0xa0, 0x1b, 0x66, 0xd9, 0xc8, 0xc6, 0xa4, 0x5a, 0x7d, 0x4c, 0x0d, 0x4b, 0xed, 0x83, 0x6b, 0x40, + 0x6a, 0x01, 0x50, 0xa5, 0x81, 0xd5, 0x1a, 0xc0, 0x5a, 0x03, 0x5a, 0x3b, 0x80, 0x6b, 0x16, 0x78, + 0x0d, 0x03, 0xb0, 0x5c, 0x78, 0x6b, 0x66, 0xc7, 0xa5, 0x9d, 0x5e, 0x1e, 0x25, 0x67, 0x52, 0x28, + 0x39, 0xe5, 0x62, 0xbe, 0x21, 0x6b, 0x58, 0x80, 0xdc, 0x17, 0x21, 0x6b, 0x78, 0x3a, 0x3e, 0xf6, + 0xbb, 0xba, 0xa2, 0xf5, 0x32, 0x2d, 0x27, 0x9f, 0xe0, 0x4b, 0xd1, 0x72, 0x12, 0x31, 0x8a, 0x18, + 0x45, 0x8c, 0x22, 0x46, 0x11, 0xa3, 0x88, 0x51, 0xc4, 0x28, 0x62, 0x14, 0x31, 0x8a, 0x18, 0x45, + 0x8c, 0x6a, 0x12, 0xa3, 0x54, 0xb2, 0xfa, 0x62, 0x40, 0x6e, 0x19, 0x8e, 0x43, 0x25, 0x89, 0x53, + 0x73, 0x6b, 0xfc, 0xaa, 0xae, 0x16, 0x24, 0xfd, 0xa8, 0x79, 0x1e, 0x46, 0x89, 0xd1, 0x1c, 0xa4, + 0xe1, 0x08, 0x24, 0x22, 0x91, 0x88, 0x64, 0xdf, 0x5f, 0x27, 0x11, 0x09, 0x2a, 0x33, 0x43, 0x65, + 0x26, 0x50, 0x4e, 0x2b, 0x9f, 0x0d, 0x27, 0xb8, 0x00, 0xa4, 0x66, 0xe6, 0x5c, 0xc0, 0xe8, 0x79, + 0x80, 0x71, 0x3a, 0xab, 0x40, 0x67, 0xd0, 0x19, 0x74, 0x36, 0xd7, 0x12, 0x50, 0x31, 0xf9, 0xfc, + 0xa5, 0xa3, 0x62, 0xd2, 0x36, 0xac, 0x0a, 0xc2, 0xab, 0x14, 0xcc, 0x8a, 0xc3, 0xad, 0x38, 0xec, + 0xca, 0xc2, 0xaf, 0xb9, 0x90, 0xdb, 0x12, 0x15, 0x93, 0x4f, 0xf3, 0x03, 0xa9, 0x98, 0x44, 0x80, + 0x3e, 0x45, 0x80, 0x1a, 0x08, 0xc0, 0xd3, 0x54, 0xcd, 0x53, 0x63, 0x28, 0x69, 0xd5, 0xd2, 0xf3, + 0x07, 0x1f, 0x8a, 0xd4, 0xea, 0xed, 0xb4, 0xdd, 0xd2, 0xdf, 0xdf, 0xad, 0xff, 0x50, 0x9a, 0xba, + 0x39, 0xe8, 0xd0, 0xd2, 0xd4, 0xcd, 0x8e, 0x43, 0x4a, 0x53, 0xb7, 0xb9, 0x36, 0x02, 0x4d, 0xdd, + 0x08, 0x51, 0x3a, 0xa3, 0x99, 0x09, 0x51, 0x0a, 0x0a, 0x1e, 0x63, 0x21, 0xca, 0xd3, 0x76, 0x2b, + 0xc8, 0xe3, 0x4b, 0xf3, 0x51, 0xc9, 0xf1, 0x40, 0x04, 0x08, 0x09, 0x10, 0x12, 0x20, 0x24, 0x40, + 0x48, 0x80, 0x90, 0x00, 0x21, 0x01, 0xc2, 0x67, 0xc4, 0x84, 0x4e, 0xdb, 0xad, 0x05, 0xea, 0xa3, + 0x46, 0xce, 0xc7, 0xac, 0x0f, 0x42, 0xce, 0x07, 0x82, 0x0a, 0x41, 0x85, 0xa0, 0x42, 0x50, 0x21, + 0xa8, 0x10, 0x54, 0x08, 0x2a, 0x04, 0x15, 0x82, 0x0a, 0x41, 0x35, 0x97, 0xa0, 0x22, 0xcd, 0xc2, + 0xb6, 0x25, 0x58, 0xb6, 0x00, 0xfb, 0xb9, 0x15, 0xef, 0xda, 0xad, 0x22, 0x25, 0x54, 0x34, 0xa3, + 0xb4, 0xd9, 0x8b, 0xf2, 0xa0, 0xd9, 0xe9, 0xf5, 0x3f, 0x62, 0xa6, 0x3f, 0xbb, 0x62, 0x66, 0x04, + 0x52, 0x2d, 0x1c, 0xf4, 0x64, 0x49, 0xb5, 0xb0, 0xe3, 0x89, 0x16, 0x3c, 0xd5, 0x82, 0xb8, 0x20, + 0x71, 0x41, 0xe2, 0x82, 0xc4, 0x05, 0xbd, 0x89, 0x0b, 0x86, 0xad, 0xff, 0x06, 0xcd, 0xf3, 0x30, + 0x39, 0x53, 0x99, 0xf9, 0xd8, 0xe0, 0xed, 0xc1, 0x88, 0x0f, 0x12, 0x1f, 0x24, 0x3e, 0x48, 0x7c, + 0xd0, 0xab, 0xf8, 0xe0, 0x48, 0xd3, 0xbd, 0xaa, 0x08, 0x44, 0x08, 0x5f, 0x1b, 0x1c, 0xe2, 0xb0, + 0x8f, 0xc1, 0xa5, 0xb7, 0x4b, 0x5f, 0x8c, 0xda, 0xac, 0x40, 0xa3, 0xbb, 0xbd, 0x28, 0x11, 0x6c, + 0xf2, 0x28, 0xd2, 0x03, 0x74, 0x32, 0xdc, 0xe7, 0x30, 0xee, 0x29, 0xc1, 0xf1, 0x3e, 0xa4, 0x61, + 0x33, 0x8f, 0x3a, 0xc9, 0x4e, 0x74, 0x16, 0xe5, 0x7d, 0x6f, 0x60, 0xcd, 0x7c, 0x3f, 0x47, 0x81, + 0x7e, 0x84, 0x7b, 0xe1, 0xb7, 0xc2, 0x9b, 0xc8, 0x46, 0x65, 0x7b, 0x63, 0x7b, 0xeb, 0x75, 0x65, + 0x7b, 0xb3, 0xc0, 0xb6, 0xe2, 0x69, 0x3f, 0xc9, 0x93, 0x05, 0x6e, 0x99, 0xdf, 0x77, 0xf8, 0x93, + 0xde, 0xc5, 0xa9, 0x4a, 0x65, 0xc4, 0xc5, 0x68, 0x2c, 0xb4, 0x05, 0xda, 0x02, 0x6d, 0x81, 0xb6, + 0xf0, 0x4a, 0x5b, 0xf4, 0xa2, 0x24, 0x47, 0x58, 0x20, 0x2c, 0x10, 0x16, 0x08, 0x0b, 0x84, 0x05, + 0xc2, 0x02, 0x61, 0xf1, 0x67, 0xc2, 0xa2, 0x97, 0x9f, 0x07, 0xed, 0x30, 0x8a, 0x25, 0x4e, 0x2d, + 0x6e, 0xc6, 0x42, 0x58, 0x20, 0x2c, 0x10, 0x16, 0x08, 0x0b, 0xaf, 0x84, 0x05, 0x87, 0x16, 0x68, + 0x0b, 0xb4, 0x05, 0xda, 0x02, 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0x3c, 0x52, 0x5b, 0xe4, 0x57, 0x5d, + 0x25, 0x2a, 0x30, 0x6e, 0x0d, 0x88, 0xca, 0x40, 0x65, 0xa0, 0x32, 0x50, 0x19, 0xa8, 0x0c, 0x54, + 0x06, 0x2a, 0x03, 0x95, 0x81, 0xca, 0x40, 0x65, 0xa0, 0x32, 0x0a, 0xa6, 0x32, 0xa2, 0x56, 0xd0, + 0x8e, 0x54, 0xdc, 0x0a, 0x62, 0x95, 0x04, 0x17, 0x51, 0x76, 0x11, 0xe6, 0xcd, 0x73, 0x89, 0x22, + 0x8c, 0x87, 0x06, 0x46, 0x75, 0xa0, 0x3a, 0x50, 0x1d, 0xa8, 0x0e, 0x54, 0x07, 0xaa, 0x03, 0xd5, + 0x81, 0xea, 0x40, 0x75, 0xa0, 0x3a, 0x50, 0x1d, 0x45, 0x53, 0x1d, 0x49, 0x94, 0x4b, 0x1d, 0x6b, + 0xdc, 0x1a, 0x0b, 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0xa0, 0x2d, 0xd0, 0x16, 0x68, 0x0b, 0xb4, 0x05, + 0xda, 0x02, 0x6d, 0x81, 0xb6, 0x40, 0x5b, 0x14, 0x4c, 0x5b, 0xc4, 0x61, 0x12, 0xb4, 0xa2, 0x4c, + 0xae, 0x9d, 0xd4, 0xdd, 0x01, 0x51, 0x19, 0xa8, 0x0c, 0x54, 0x06, 0x2a, 0x03, 0x95, 0x81, 0xca, + 0x40, 0x65, 0xa0, 0x32, 0x50, 0x19, 0xa8, 0x0c, 0x54, 0x46, 0xc1, 0x54, 0xc6, 0x45, 0xf8, 0x2d, + 0x08, 0x53, 0x15, 0x06, 0x61, 0xab, 0x95, 0xaa, 0x2c, 0x13, 0xcd, 0x9d, 0xfa, 0xb3, 0xc1, 0x51, + 0x1f, 0xa8, 0x0f, 0xd4, 0x07, 0xea, 0x03, 0xf5, 0x81, 0xfa, 0x40, 0x7d, 0xa0, 0x3e, 0x50, 0x1f, + 0xa8, 0x0f, 0xd4, 0x47, 0xc1, 0xd4, 0x47, 0xaa, 0xfe, 0xab, 0x9a, 0xb9, 0x6a, 0x05, 0x61, 0xeb, + 0xbf, 0xe6, 0xe5, 0xc6, 0xd4, 0x68, 0xe8, 0x0b, 0xf4, 0x05, 0xfa, 0x02, 0x7d, 0x81, 0xbe, 0x40, + 0x5f, 0xa0, 0x2f, 0xd0, 0x17, 0xe8, 0x0b, 0xf4, 0x05, 0xfa, 0xc2, 0xa6, 0xbe, 0xe0, 0x66, 0x74, + 0x3b, 0xf7, 0x62, 0xdf, 0xbd, 0x61, 0x99, 0x6b, 0xd2, 0xad, 0x9b, 0x85, 0x4b, 0xe6, 0x60, 0xff, + 0xce, 0xf4, 0xf7, 0xc3, 0x19, 0xbd, 0x1f, 0x4f, 0xa8, 0x48, 0xf7, 0xa7, 0x8f, 0xf5, 0xbc, 0xee, + 0x5b, 0xd3, 0x87, 0xcf, 0xe5, 0xae, 0x74, 0x07, 0x83, 0x14, 0xdc, 0x95, 0x6e, 0x27, 0xc8, 0x50, + 0xf0, 0xbb, 0xd2, 0xc7, 0xb8, 0x9d, 0x9b, 0x88, 0x46, 0xdc, 0x00, 0xcb, 0xed, 0x51, 0xcc, 0xdc, + 0x9c, 0xbe, 0x66, 0xea, 0xe6, 0xf4, 0x35, 0x6e, 0x4e, 0x17, 0x80, 0x21, 0x31, 0x38, 0x12, 0x83, + 0x25, 0x19, 0x78, 0xf2, 0x43, 0x07, 0x19, 0x8b, 0x75, 0x4a, 0x20, 0xcc, 0x94, 0x33, 0xb3, 0x61, + 0xe0, 0xd9, 0xb5, 0xa4, 0x77, 0xd1, 0x5f, 0x9d, 0x6b, 0x57, 0xc5, 0x93, 0x46, 0x2f, 0x46, 0x25, + 0xe1, 0x69, 0xac, 0x5a, 0xe6, 0xa8, 0x66, 0x3c, 0x80, 0xee, 0xbb, 0xff, 0x55, 0x3b, 0xec, 0xc5, + 0x83, 0x3d, 0xdc, 0x0e, 0xe3, 0x0c, 0x16, 0x83, 0xc5, 0x60, 0x31, 0x58, 0x4c, 0xb3, 0xc5, 0x9f, + 0x76, 0x3a, 0xb1, 0x0a, 0x13, 0x93, 0x04, 0xb6, 0xbe, 0x00, 0x24, 0x73, 0xae, 0xe2, 0xb8, 0x13, + 0x74, 0xc3, 0x56, 0x2b, 0x4a, 0xce, 0xcc, 0x51, 0xcd, 0xf4, 0x30, 0x10, 0x02, 0x84, 0x00, 0x21, + 0x40, 0x08, 0xe6, 0x20, 0x06, 0x71, 0xe3, 0x38, 0xef, 0x4c, 0x8e, 0x43, 0x82, 0xc8, 0xa0, 0xc2, + 0x99, 0x1a, 0x05, 0xd6, 0x81, 0x75, 0x60, 0x1d, 0x58, 0xc7, 0x17, 0x84, 0x99, 0xe2, 0x9b, 0x37, + 0x0b, 0xc0, 0x09, 0xdd, 0x30, 0xcb, 0xa2, 0x4b, 0x83, 0x67, 0x2b, 0xe3, 0x01, 0x08, 0x78, 0xc1, + 0x34, 0x30, 0x0d, 0x4c, 0x43, 0xc0, 0xcb, 0x93, 0x80, 0x17, 0x29, 0x69, 0x86, 0x53, 0xd2, 0x86, + 0x54, 0x50, 0xa0, 0xbc, 0x2f, 0x23, 0xfa, 0xd2, 0xa4, 0xd7, 0xa7, 0x99, 0xe5, 0xc9, 0x01, 0x23, + 0x07, 0xcc, 0x06, 0x5b, 0xbb, 0x05, 0xd5, 0xda, 0x59, 0xf9, 0xa6, 0x97, 0xa7, 0x0a, 0xdb, 0xa9, + 0x6a, 0xeb, 0xb4, 0xd8, 0x31, 0x0b, 0x6b, 0xac, 0x0b, 0x2b, 0x1d, 0x8c, 0xd8, 0x64, 0x75, 0x75, + 0x84, 0xf1, 0xe5, 0x29, 0xe8, 0x2a, 0x24, 0xe0, 0xf7, 0x5f, 0x8b, 0x41, 0xc4, 0xd7, 0xf7, 0xd6, + 0x17, 0x3e, 0xed, 0xb7, 0x0d, 0xe0, 0xdb, 0x00, 0xfc, 0x36, 0x29, 0xbf, 0x8f, 0x7c, 0xa0, 0xe6, + 0xea, 0x81, 0x99, 0x4d, 0xa0, 0xb5, 0x8a, 0xc0, 0x10, 0xac, 0x14, 0x27, 0x5e, 0xd4, 0x26, 0x5a, + 0xe4, 0x62, 0xb4, 0xa8, 0xbd, 0x68, 0xb1, 0x22, 0xdd, 0x30, 0x35, 0xeb, 0x03, 0x49, 0x5c, 0x96, + 0x35, 0x1e, 0x8a, 0x3e, 0x2f, 0xd2, 0xa0, 0x26, 0x06, 0x6e, 0x52, 0x20, 0x27, 0x0e, 0x76, 0xe2, + 0xa0, 0x27, 0x09, 0x7e, 0x66, 0x40, 0xd0, 0x10, 0x18, 0x9a, 0x93, 0xea, 0x82, 0xd2, 0x5d, 0x42, + 0xca, 0x3f, 0x28, 0xed, 0xcb, 0x03, 0x33, 0x7a, 0x7b, 0x2b, 0xae, 0x7b, 0xe7, 0x07, 0xa3, 0xff, + 0x1f, 0x14, 0x05, 0x2f, 0x70, 0x2b, 0xb4, 0xac, 0x77, 0x2a, 0xc8, 0x8f, 0x53, 0xa3, 0x41, 0x91, + 0x50, 0x24, 0x14, 0x09, 0x45, 0x42, 0x91, 0x8e, 0x52, 0xe4, 0x97, 0x1b, 0x8a, 0xfc, 0x3f, 0xcd, + 0x5e, 0x9a, 0xaa, 0x24, 0x5f, 0x5e, 0x29, 0xaf, 0xae, 0xde, 0x44, 0xcb, 0x4f, 0x46, 0xff, 0xe4, + 0x36, 0xae, 0x67, 0xf7, 0xfc, 0x6c, 0xf2, 0xe4, 0x96, 0xfa, 0x56, 0xa2, 0x31, 0x90, 0x86, 0x97, + 0x58, 0xfb, 0x36, 0xe8, 0x3f, 0xa5, 0xbf, 0x93, 0x9d, 0xf9, 0x80, 0x4d, 0xa7, 0x19, 0xa8, 0x6f, + 0xf9, 0xdb, 0x5c, 0xc5, 0xea, 0x42, 0xe5, 0xe9, 0x55, 0xd0, 0x49, 0x46, 0x97, 0xbf, 0xc9, 0x04, + 0x71, 0x06, 0xd9, 0x68, 0x02, 0x51, 0x1c, 0xd7, 0x03, 0x38, 0x27, 0xf4, 0xaa, 0x7a, 0x6c, 0x26, + 0xc8, 0xd4, 0x39, 0x97, 0xd6, 0xbc, 0x10, 0xfd, 0xaf, 0xf6, 0x5a, 0x6b, 0xe3, 0xa4, 0x30, 0x37, + 0x98, 0x79, 0x3a, 0x7c, 0xbc, 0x67, 0x71, 0xfe, 0x0a, 0x71, 0x7e, 0x31, 0xff, 0x9e, 0x38, 0x7f, + 0xf1, 0x3c, 0x17, 0xe2, 0xfc, 0x04, 0x31, 0x08, 0x62, 0x10, 0xc4, 0x20, 0x88, 0x41, 0x10, 0x43, + 0x20, 0x88, 0x41, 0x9c, 0x7f, 0x89, 0x38, 0x3f, 0x14, 0x09, 0x45, 0x42, 0x91, 0x50, 0x24, 0x14, + 0x49, 0x9c, 0xdf, 0x2f, 0xb5, 0xbc, 0x30, 0x41, 0x55, 0xba, 0xff, 0xdb, 0xb6, 0x09, 0x67, 0x6c, + 0xc1, 0x7e, 0xeb, 0xff, 0xc9, 0x77, 0x87, 0xaa, 0x5d, 0xa4, 0x72, 0xa0, 0x58, 0x5d, 0xaa, 0x38, + 0xd3, 0x5f, 0x07, 0x34, 0x7a, 0x2e, 0x05, 0x40, 0x5a, 0x3c, 0x75, 0x6a, 0x3e, 0x65, 0x7c, 0x6f, + 0xfa, 0xfe, 0xcf, 0x0b, 0x25, 0xe6, 0x8e, 0x06, 0x87, 0x8f, 0xa7, 0x04, 0x88, 0x96, 0x31, 0xf6, + 0x83, 0x01, 0xb4, 0x8c, 0x11, 0x14, 0x3c, 0xc6, 0x8e, 0x07, 0xc3, 0xd6, 0x7f, 0xc3, 0xa6, 0x4a, + 0x9a, 0x91, 0xca, 0xcc, 0x07, 0x40, 0x6f, 0x0f, 0x66, 0x36, 0xfe, 0xb9, 0x6e, 0x3a, 0xfe, 0x59, + 0xe1, 0xca, 0x67, 0x07, 0xc0, 0x4e, 0x1c, 0xf4, 0xc4, 0xc1, 0x4f, 0x16, 0x04, 0xcd, 0xc5, 0x93, + 0x96, 0x0c, 0xc6, 0x40, 0x4d, 0x81, 0xe3, 0x0c, 0x48, 0x5e, 0x99, 0x37, 0xe4, 0xbb, 0x50, 0x79, + 0x65, 0xda, 0x90, 0xcd, 0x02, 0xa6, 0x71, 0x6f, 0xd0, 0x06, 0x80, 0x5a, 0x00, 0x52, 0x69, 0x40, + 0xb5, 0x06, 0xac, 0xd6, 0x00, 0xd6, 0x0e, 0xd0, 0x9a, 0x05, 0x5c, 0xc3, 0xc0, 0x2b, 0x06, 0xc0, + 0x93, 0x81, 0xcc, 0x64, 0xde, 0xfe, 0x74, 0x7f, 0x9b, 0xc8, 0xc8, 0xb5, 0x0c, 0xc8, 0xe2, 0xc0, + 0x6c, 0x03, 0xa0, 0x2d, 0x02, 0xb5, 0x2d, 0xc0, 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, + 0xcb, 0x00, 0xba, 0x10, 0xb0, 0x8b, 0x03, 0xfc, 0xac, 0xc7, 0x1d, 0xc8, 0x42, 0xfe, 0xc3, 0x7e, + 0x78, 0x20, 0x49, 0x02, 0x77, 0xc9, 0x60, 0x4d, 0x78, 0x58, 0x69, 0x52, 0xb0, 0x49, 0x0e, 0x0e, + 0x90, 0x84, 0x6d, 0xb2, 0x70, 0x86, 0x34, 0x9c, 0x21, 0x0f, 0x37, 0x48, 0x44, 0x96, 0x4c, 0x84, + 0x49, 0x65, 0xb2, 0xc4, 0xc6, 0x53, 0xd8, 0x7e, 0xba, 0xe3, 0xfb, 0x6f, 0x35, 0xb8, 0x49, 0xb6, + 0x08, 0x5b, 0xff, 0xb5, 0x82, 0xf6, 0x4b, 0x86, 0x2f, 0x8d, 0xfa, 0xe9, 0xd8, 0x66, 0x2e, 0x95, + 0x72, 0xc7, 0xba, 0x05, 0x2d, 0xfb, 0x96, 0xe3, 0x90, 0xdb, 0xb0, 0xef, 0x7b, 0x1c, 0x18, 0x43, + 0xd7, 0x9c, 0xe1, 0xbf, 0xe0, 0xbf, 0xe0, 0xbf, 0xe0, 0xbf, 0xe0, 0xbf, 0x58, 0xdb, 0xf1, 0x83, + 0xb4, 0x20, 0x1b, 0xf8, 0x8e, 0xc7, 0x52, 0x24, 0x8f, 0x25, 0x55, 0x61, 0x10, 0xb6, 0x5a, 0xa9, + 0xca, 0x32, 0x8b, 0xfe, 0xca, 0xed, 0x59, 0xe0, 0xad, 0xe0, 0xad, 0xe0, 0xad, 0xe0, 0xad, 0xe0, + 0xad, 0x14, 0xc8, 0x5b, 0xb1, 0x88, 0xf0, 0x53, 0xfe, 0xca, 0x1b, 0x0b, 0x63, 0x1f, 0x84, 0x79, + 0xae, 0xd2, 0xc4, 0x48, 0x8f, 0xba, 0x47, 0x4d, 0xe0, 0xb7, 0x2f, 0x6b, 0xc1, 0x76, 0x35, 0xf8, + 0x10, 0x06, 0xed, 0x93, 0xef, 0x95, 0xeb, 0xaf, 0x5f, 0x57, 0x97, 0x6f, 0xff, 0x64, 0xa3, 0xff, + 0x93, 0x95, 0xef, 0x6b, 0x2f, 0x5f, 0x5d, 0xff, 0x45, 0x7e, 0xe7, 0x9d, 0x14, 0x7a, 0xe7, 0xed, + 0x46, 0x59, 0x5e, 0xcd, 0xf3, 0xd4, 0xce, 0xee, 0xdb, 0x8b, 0x92, 0x5a, 0xac, 0xfa, 0xe0, 0xda, + 0x77, 0xee, 0x92, 0x5e, 0x1c, 0x5b, 0x30, 0xff, 0xbd, 0xf0, 0x9b, 0xfd, 0x49, 0x7c, 0x4c, 0x5b, + 0x2a, 0x55, 0xad, 0x77, 0x57, 0xa3, 0x29, 0x20, 0x1d, 0xe6, 0x5e, 0xd2, 0x56, 0x94, 0x05, 0xd9, + 0x55, 0x96, 0xab, 0x0b, 0x13, 0x57, 0xf4, 0x3f, 0x9a, 0x59, 0xa6, 0xa7, 0x81, 0x78, 0x40, 0x3c, + 0x20, 0x1e, 0x10, 0x0f, 0x88, 0x87, 0x02, 0x89, 0x07, 0x5b, 0xf0, 0x8e, 0x72, 0xf8, 0x6d, 0x46, + 0x27, 0xfc, 0xe4, 0x07, 0xc5, 0x17, 0x10, 0x85, 0xf4, 0xe5, 0xe2, 0x4e, 0x33, 0x8c, 0x03, 0xf5, + 0x2d, 0x57, 0x49, 0x4b, 0xb5, 0x82, 0x66, 0x94, 0x36, 0x7b, 0x51, 0x6e, 0xd5, 0xaf, 0x7b, 0x78, + 0x4a, 0xf8, 0x78, 0xf8, 0x78, 0xf8, 0x78, 0xf8, 0x78, 0xf8, 0x78, 0x05, 0xf2, 0xf1, 0xec, 0x03, + 0xfd, 0x6d, 0xb0, 0x7f, 0x6d, 0x61, 0xe8, 0xc3, 0xc1, 0xbd, 0x1f, 0xb6, 0x5c, 0x3d, 0x3b, 0x68, + 0xb7, 0x34, 0x8a, 0x52, 0x5a, 0x83, 0x5b, 0xcb, 0x2c, 0x3f, 0x33, 0x8d, 0xcf, 0x61, 0xdc, 0x53, + 0x0e, 0xcc, 0xe3, 0x43, 0x1a, 0x36, 0xf3, 0xa8, 0x93, 0xec, 0x44, 0x67, 0xd1, 0x20, 0x6e, 0xbb, + 0x66, 0x6d, 0x3e, 0xd7, 0x2f, 0x2d, 0x9a, 0x66, 0xf8, 0x0d, 0xd3, 0xbc, 0x63, 0x9a, 0x1b, 0x95, + 0xed, 0x8d, 0xed, 0xad, 0xd7, 0x95, 0xed, 0x4d, 0x6c, 0xd4, 0x8e, 0x77, 0x60, 0x6f, 0x54, 0xb4, + 0xf6, 0xfc, 0x66, 0x7b, 0xd1, 0x8b, 0xf3, 0x28, 0xc8, 0x3b, 0xdd, 0x4e, 0xdc, 0x39, 0xbb, 0xb2, + 0x27, 0xb0, 0xef, 0xcc, 0x03, 0x55, 0x8d, 0xaa, 0x46, 0x55, 0xa3, 0xaa, 0x51, 0xd5, 0x05, 0x52, + 0xd5, 0xa7, 0x9d, 0x4e, 0xac, 0xc2, 0xc4, 0xe6, 0xb9, 0xc9, 0x3a, 0x2e, 0xc3, 0xdc, 0x6b, 0x99, + 0xa8, 0xe8, 0xec, 0xfc, 0xb4, 0x93, 0x4e, 0x82, 0x23, 0x76, 0xcb, 0xcb, 0xee, 0x9f, 0x0e, 0x0e, + 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x04, 0x0e, 0x44, 0x81, 0x1c, 0x08, 0xaa, 0xcc, 0xa8, 0x32, + 0xd3, 0xe8, 0xbf, 0x38, 0x95, 0x61, 0xf0, 0xa7, 0xb3, 0xc2, 0x9b, 0xc1, 0x9b, 0xc1, 0x9b, 0xc1, + 0x9b, 0xc1, 0x9b, 0x29, 0x90, 0x37, 0x43, 0x92, 0x01, 0x49, 0x06, 0x16, 0xbf, 0x48, 0x32, 0x98, + 0x9e, 0x07, 0x49, 0x06, 0x4b, 0x24, 0x19, 0xdc, 0x6f, 0x9a, 0x24, 0x19, 0xd8, 0xf6, 0x0e, 0xec, + 0x8d, 0x4a, 0x92, 0x81, 0x46, 0xc5, 0x1d, 0x75, 0x2f, 0x37, 0xec, 0x37, 0x78, 0xb9, 0x7f, 0x3a, + 0x68, 0x6c, 0x34, 0x36, 0x1a, 0x1b, 0x8d, 0x8d, 0xc6, 0x2e, 0x90, 0xc6, 0xbe, 0x8d, 0xf0, 0x41, + 0xd2, 0x09, 0xfe, 0x5f, 0x27, 0x51, 0xd4, 0x6d, 0x0a, 0x4f, 0x60, 0x79, 0xd0, 0xe0, 0xe5, 0xe4, + 0xc7, 0x97, 0xf5, 0x60, 0xfb, 0x64, 0xf8, 0xed, 0xfa, 0xe0, 0xb7, 0xe1, 0xf7, 0x95, 0x2f, 0x6b, + 0xc1, 0xc6, 0xf8, 0xfb, 0xcd, 0x2f, 0x6b, 0xc1, 0xe6, 0xc9, 0xca, 0xa0, 0x07, 0xcc, 0xab, 0xeb, + 0xa7, 0xff, 0xc3, 0xe5, 0xbf, 0x7e, 0xf9, 0xfa, 0xb5, 0xfb, 0x7d, 0xff, 0xba, 0xff, 0xeb, 0xee, + 0xf5, 0xc9, 0xdf, 0x57, 0xfe, 0x61, 0x0b, 0xe9, 0xfa, 0x13, 0xfb, 0xfa, 0x75, 0xf5, 0xe4, 0x6f, + 0x54, 0xa1, 0xfa, 0xee, 0xb4, 0x6e, 0xb9, 0xe5, 0xb4, 0x6e, 0xe1, 0xb4, 0xe2, 0xb4, 0xe2, 0xb4, + 0xe2, 0xb4, 0xe2, 0xb4, 0x16, 0xd4, 0x69, 0xdd, 0xc2, 0x69, 0xb5, 0xee, 0xb4, 0xbe, 0xfd, 0xd1, + 0xf7, 0xe0, 0xc2, 0xa0, 0x5d, 0x0d, 0x3e, 0x9c, 0x7c, 0x5f, 0x7b, 0xb9, 0x71, 0xbd, 0xf2, 0x76, + 0x65, 0xf9, 0xee, 0xcf, 0xde, 0xae, 0x7c, 0x5f, 0x7b, 0xb9, 0x79, 0xbd, 0xbc, 0x7c, 0xcf, 0x9f, + 0xfc, 0xe3, 0xbe, 0x67, 0xac, 0xfc, 0x58, 0x5e, 0x5e, 0x1e, 0xb9, 0xab, 0x53, 0x2e, 0xec, 0x97, + 0xb5, 0xf5, 0x93, 0x7f, 0x0c, 0xbe, 0x1d, 0xfe, 0x3a, 0x71, 0x82, 0x1f, 0xf5, 0x97, 0x57, 0x5c, + 0x72, 0x7d, 0x97, 0x97, 0xbf, 0xfc, 0xf6, 0xf6, 0xe4, 0xef, 0x6f, 0x57, 0xbe, 0x6f, 0x5d, 0x8f, + 0xbf, 0x1f, 0xfc, 0xba, 0xf2, 0x63, 0x79, 0xf5, 0x6f, 0x5f, 0xbf, 0xae, 0xae, 0xfe, 0x6d, 0x65, + 0xb8, 0x10, 0xa3, 0xbf, 0xf7, 0xb7, 0xe1, 0x9f, 0xfe, 0xe3, 0xed, 0xdb, 0x99, 0x1f, 0xad, 0x2c, + 0xff, 0x75, 0xd5, 0xb2, 0x17, 0x3f, 0x7c, 0x7f, 0x6f, 0x71, 0xe6, 0xfd, 0x77, 0xe6, 0xb3, 0xa4, + 0x1b, 0x3a, 0xe0, 0xc4, 0x0f, 0xa6, 0x81, 0xf3, 0x8e, 0xf3, 0x8e, 0xf3, 0x8e, 0xf3, 0x8e, 0xf3, + 0x5e, 0x20, 0xe7, 0xdd, 0x02, 0xb2, 0x5b, 0x77, 0xd6, 0x77, 0x55, 0x72, 0x96, 0x9f, 0x93, 0xc8, + 0x65, 0x69, 0x12, 0x24, 0x72, 0x4d, 0xcd, 0x83, 0x44, 0xae, 0x25, 0x12, 0xb9, 0xee, 0x37, 0xcd, + 0x0a, 0xb6, 0x69, 0xc9, 0x11, 0xb0, 0x37, 0x2a, 0xf2, 0x59, 0x83, 0x7c, 0x8e, 0xbb, 0x56, 0x6b, + 0xa3, 0x06, 0xc3, 0x23, 0x97, 0x91, 0xcb, 0xc8, 0x65, 0xe4, 0x32, 0x72, 0xb9, 0x40, 0x72, 0x59, + 0x25, 0xbd, 0x0b, 0x95, 0x86, 0x7d, 0x9f, 0x88, 0x9a, 0xee, 0x22, 0x9a, 0x18, 0x77, 0x4e, 0x71, + 0xe7, 0x54, 0x41, 0xbd, 0xe2, 0x6e, 0x1a, 0x75, 0xd2, 0x28, 0xb7, 0xd8, 0x35, 0x71, 0x32, 0x03, + 0x7c, 0x63, 0x7c, 0x63, 0x7c, 0x63, 0x7c, 0x63, 0x7c, 0xe3, 0x02, 0xf9, 0xc6, 0xbd, 0x28, 0xc9, + 0xdf, 0x58, 0xf4, 0x8a, 0x37, 0x69, 0x09, 0x20, 0xea, 0xa9, 0x12, 0xae, 0x1f, 0x4d, 0x83, 0x93, + 0x24, 0xdb, 0xe8, 0x77, 0x57, 0xbf, 0x60, 0x9a, 0x77, 0x4c, 0x73, 0xbd, 0xf2, 0x1a, 0xe3, 0xb4, + 0xe3, 0x08, 0xd8, 0x1b, 0x95, 0xa3, 0xa4, 0xf9, 0xcd, 0x36, 0x55, 0x17, 0x61, 0x94, 0x44, 0xc9, + 0x59, 0x70, 0xde, 0x89, 0x5b, 0x41, 0x1e, 0x5d, 0x58, 0xec, 0x1d, 0x7c, 0xdf, 0x64, 0x90, 0xd2, + 0x48, 0x69, 0xa4, 0x34, 0x52, 0x1a, 0x29, 0x5d, 0x30, 0x29, 0xbd, 0xbe, 0x65, 0x51, 0x4b, 0x6f, + 0xa1, 0xa5, 0xd1, 0xd2, 0x68, 0x69, 0xb4, 0x34, 0x5a, 0x7a, 0xc6, 0x34, 0xb7, 0x36, 0x37, 0x5f, + 0xd1, 0x59, 0x0f, 0x35, 0x8d, 0x9a, 0x7e, 0x86, 0x9a, 0xce, 0xf2, 0x30, 0xcd, 0x83, 0x2c, 0x0f, + 0xf3, 0x5e, 0x66, 0x53, 0x48, 0x4f, 0xcd, 0x03, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, + 0xd0, 0x05, 0xd2, 0xd0, 0x5c, 0xdf, 0x57, 0x2c, 0x97, 0xa1, 0xd7, 0xed, 0x76, 0xd2, 0xdc, 0x01, + 0x9f, 0x61, 0x34, 0x11, 0x9c, 0x06, 0x9c, 0x06, 0x9c, 0x06, 0x9c, 0x06, 0x9c, 0x06, 0x9c, 0x06, + 0x9c, 0x06, 0x77, 0x9d, 0x06, 0xbb, 0x7d, 0x50, 0x67, 0x66, 0x82, 0xdb, 0x80, 0xdb, 0x80, 0xdb, + 0x80, 0xdb, 0x80, 0xdb, 0x80, 0xdb, 0x80, 0xdb, 0xe0, 0x96, 0xdb, 0x90, 0x5d, 0x65, 0xb9, 0xba, + 0xb0, 0x7a, 0xaf, 0xee, 0xcd, 0x14, 0x70, 0x14, 0x70, 0x14, 0x70, 0x14, 0x70, 0x14, 0x70, 0x14, + 0x0a, 0xe4, 0x28, 0xd8, 0x82, 0xf7, 0xa5, 0x85, 0x6f, 0x90, 0xfe, 0xdb, 0x97, 0xb5, 0x60, 0xbb, + 0x1a, 0x7c, 0x08, 0x83, 0xf6, 0xc9, 0xf7, 0x8d, 0xeb, 0xaf, 0x5f, 0x57, 0x7f, 0xf2, 0x83, 0xbf, + 0xd0, 0x3a, 0xdb, 0x47, 0x1f, 0x2e, 0xef, 0x74, 0x3b, 0x71, 0xe7, 0xcc, 0x62, 0x97, 0x83, 0xc9, + 0x0c, 0xf0, 0xe0, 0xf0, 0xe0, 0xf0, 0xe0, 0xf0, 0xe0, 0xf0, 0xe0, 0x0a, 0xe4, 0xc1, 0x45, 0x2d, + 0x95, 0xe4, 0x51, 0x7e, 0x95, 0xaa, 0xb6, 0x4d, 0x1f, 0xce, 0x46, 0xb3, 0x83, 0xfa, 0xe8, 0xa3, + 0xbf, 0x0b, 0x33, 0x8b, 0xb8, 0x33, 0x7e, 0x11, 0xd5, 0x0f, 0xf5, 0xc6, 0x51, 0xff, 0x97, 0xe3, + 0xff, 0x1c, 0xd4, 0x6c, 0x61, 0xcf, 0x20, 0x27, 0x3c, 0xb3, 0xe6, 0xd5, 0x2e, 0x59, 0x2d, 0x5c, + 0x99, 0x7a, 0x1d, 0xf5, 0x83, 0xcf, 0x1b, 0x8d, 0xbd, 0x4f, 0xbb, 0xc7, 0xf5, 0xf7, 0xd5, 0xa3, + 0xe3, 0xd2, 0x22, 0x56, 0x4b, 0xb8, 0xf4, 0x26, 0x3e, 0xed, 0xf3, 0x1e, 0xec, 0xbf, 0x87, 0x2d, + 0x76, 0x84, 0x33, 0x6f, 0xc2, 0xfe, 0x8e, 0xb0, 0x32, 0xf2, 0x09, 0x1e, 0xa8, 0x56, 0x9b, 0xa2, + 0x41, 0x28, 0x0d, 0x42, 0x0b, 0x1a, 0x3a, 0xeb, 0x75, 0x2d, 0xf7, 0x37, 0x19, 0x4f, 0x80, 0xc0, + 0x99, 0xd1, 0x81, 0x09, 0x9c, 0x11, 0x38, 0x23, 0x70, 0xb6, 0x58, 0x6e, 0x8b, 0xfd, 0xc0, 0x59, + 0x1f, 0xd9, 0xb3, 0x3c, 0xbc, 0xe8, 0x5a, 0x0c, 0x9b, 0xbd, 0xa6, 0xad, 0x89, 0xa8, 0xaf, 0x4a, + 0xef, 0x88, 0xd1, 0x34, 0x68, 0x6b, 0xe2, 0x52, 0x58, 0x82, 0xb6, 0x26, 0xf7, 0x98, 0xe6, 0x46, + 0x65, 0x7b, 0x63, 0x7b, 0xeb, 0x75, 0x65, 0x9b, 0xde, 0x26, 0x96, 0x43, 0x36, 0xf4, 0x36, 0xf1, + 0x6b, 0x24, 0x21, 0x24, 0x2b, 0x55, 0x93, 0xa4, 0x93, 0x0f, 0xef, 0x1e, 0x92, 0x04, 0xaf, 0x52, + 0xd6, 0x3c, 0x57, 0x17, 0x61, 0x37, 0x1c, 0xdc, 0x99, 0x5b, 0x2a, 0x77, 0xba, 0x2a, 0x69, 0x0e, + 0xb4, 0x6b, 0x90, 0xa8, 0xfc, 0x8f, 0x4e, 0xfa, 0x7b, 0x10, 0x25, 0x59, 0x1e, 0x26, 0x4d, 0x55, + 0xbe, 0xfb, 0x83, 0x6c, 0xe6, 0x27, 0xe5, 0x6e, 0xda, 0xc9, 0x3b, 0xcd, 0x4e, 0x9c, 0x4d, 0xbe, + 0x2b, 0xf7, 0x1d, 0xfe, 0x72, 0x94, 0xe4, 0x2a, 0x6d, 0x87, 0xfd, 0x7f, 0x33, 0xf9, 0xb6, 0x1c, + 0xab, 0x4b, 0x15, 0x67, 0xc3, 0xdf, 0xca, 0x61, 0xeb, 0xbf, 0x61, 0x53, 0x25, 0xcd, 0x48, 0x65, + 0x93, 0xef, 0xaf, 0xca, 0x59, 0x1e, 0xe6, 0x4a, 0x46, 0x2e, 0x98, 0x37, 0x27, 0x01, 0x53, 0xb2, + 0x90, 0xe5, 0x6e, 0x2d, 0xfd, 0x51, 0x98, 0x63, 0xc5, 0x43, 0x3a, 0x36, 0x42, 0x39, 0x16, 0x43, + 0x38, 0xb6, 0x42, 0x37, 0xd6, 0x43, 0x36, 0xd6, 0x43, 0x35, 0x76, 0x43, 0x34, 0xc5, 0xa2, 0x71, + 0xf1, 0x50, 0xcc, 0x64, 0xc7, 0xc6, 0x2a, 0x6c, 0xcb, 0xe6, 0x2d, 0x4d, 0xf2, 0x95, 0x04, 0x23, + 0x2f, 0xa5, 0x83, 0x91, 0xa7, 0xb2, 0xba, 0x3a, 0x74, 0x0e, 0xca, 0x37, 0xb4, 0x53, 0x14, 0x37, + 0xe1, 0x85, 0xc7, 0x1b, 0xa1, 0x8f, 0xa6, 0x92, 0xce, 0x80, 0xec, 0x91, 0xad, 0x95, 0x23, 0x5a, + 0x2b, 0x47, 0xb2, 0xb2, 0x47, 0xb0, 0xa6, 0x8d, 0x52, 0x58, 0x5c, 0xb9, 0x2d, 0xaa, 0x4a, 0x12, + 0x32, 0x24, 0x4f, 0x7b, 0xcd, 0x3c, 0x19, 0x51, 0xd3, 0xfe, 0xf0, 0x13, 0xd5, 0x47, 0x1f, 0xa8, + 0x71, 0x30, 0xfa, 0x18, 0x8d, 0x7a, 0x16, 0x65, 0x8d, 0xfa, 0x78, 0xee, 0x8d, 0xdd, 0xfe, 0xa4, + 0x1b, 0xd5, 0xc9, 0x44, 0x5f, 0xf8, 0x09, 0xb3, 0x66, 0x9e, 0x6c, 0x68, 0x8f, 0x48, 0xed, 0x0d, + 0x17, 0xf7, 0x84, 0x19, 0x03, 0xd3, 0xff, 0xfa, 0x0d, 0xbc, 0xfa, 0x52, 0xd8, 0x8e, 0x82, 0x2c, + 0x6c, 0x47, 0xc6, 0x5e, 0xfa, 0xc4, 0x31, 0x9d, 0x8c, 0x64, 0xc8, 0x80, 0xc7, 0x5e, 0xa8, 0xa1, + 0xc7, 0x9b, 0x96, 0xfd, 0x12, 0x32, 0x5f, 0x50, 0xd6, 0x4b, 0xc9, 0x78, 0x71, 0xd9, 0x2e, 0x2e, + 0xd3, 0x65, 0x65, 0xb9, 0x5f, 0xa4, 0xb5, 0x13, 0x99, 0x75, 0xf8, 0x4b, 0x61, 0xdb, 0xbc, 0x05, + 0xdf, 0x00, 0xa4, 0x69, 0xd3, 0x35, 0x0b, 0x91, 0x62, 0x50, 0x29, 0x09, 0x99, 0x16, 0xa0, 0x53, + 0x1a, 0x42, 0xad, 0x41, 0xa9, 0x35, 0x48, 0xb5, 0x03, 0xad, 0xc5, 0x08, 0xec, 0x98, 0x86, 0xdc, + 0x29, 0xcf, 0x74, 0xa4, 0x1c, 0x85, 0x4f, 0xb0, 0x26, 0x23, 0x73, 0x80, 0xe5, 0x1b, 0x4c, 0x5b, + 0x84, 0x6b, 0x5b, 0xb0, 0x6d, 0x1d, 0xbe, 0xad, 0xc3, 0xb8, 0x5d, 0x38, 0x97, 0x81, 0x75, 0x21, + 0x78, 0x9f, 0x2c, 0x25, 0x07, 0x58, 0xa6, 0x41, 0xf1, 0xe6, 0x00, 0x6b, 0x18, 0xff, 0x2a, 0x4f, + 0x68, 0x87, 0x3c, 0x97, 0x47, 0xaf, 0x62, 0x73, 0xcc, 0x65, 0xc2, 0x2e, 0xc2, 0x68, 0x5c, 0x59, + 0x07, 0x61, 0x1d, 0x07, 0x01, 0x07, 0x01, 0x07, 0x01, 0x07, 0xc1, 0x05, 0x07, 0x41, 0x4a, 0x07, + 0xda, 0xd3, 0x83, 0xb6, 0x75, 0xa1, 0x25, 0x7d, 0x68, 0x8d, 0x06, 0x6c, 0xd2, 0x81, 0x03, 0xb4, + 0x60, 0x9b, 0x1e, 0x9c, 0xa1, 0x09, 0x67, 0xe8, 0xc2, 0x0d, 0xda, 0x90, 0xa5, 0x0f, 0x61, 0x1a, + 0xb1, 0xa7, 0x37, 0x67, 0x76, 0x3c, 0x4d, 0xdf, 0x1c, 0x6a, 0xfa, 0x46, 0xbf, 0x37, 0x8b, 0x5f, + 0x53, 0x3d, 0x95, 0xe8, 0x69, 0x65, 0x75, 0xfd, 0x37, 0xe8, 0x65, 0x55, 0x30, 0x62, 0x2d, 0x64, + 0x5b, 0x21, 0x95, 0x84, 0xa7, 0xb1, 0xb2, 0x78, 0xa7, 0xca, 0x78, 0x02, 0x48, 0x33, 0xa4, 0x19, + 0xd2, 0x0c, 0x69, 0x86, 0x34, 0x2b, 0x90, 0x34, 0xe3, 0xea, 0xb5, 0x42, 0x38, 0x09, 0x17, 0x2a, + 0x4f, 0xa3, 0xa6, 0x3d, 0x1f, 0x61, 0x34, 0xbe, 0xf0, 0xf6, 0xd9, 0x51, 0xed, 0xb0, 0x17, 0x0f, + 0x00, 0x6a, 0x7d, 0x0d, 0xff, 0x04, 0xff, 0x04, 0xff, 0x04, 0xff, 0x04, 0xff, 0xa4, 0x48, 0xfe, + 0x49, 0x2f, 0x4a, 0xf2, 0x57, 0x15, 0x7a, 0x1e, 0x0a, 0x7e, 0xd1, 0xf3, 0x90, 0x9e, 0x87, 0xb7, + 0xe6, 0x41, 0xcf, 0xc3, 0x25, 0x7a, 0x1e, 0xde, 0x6f, 0x9a, 0xf4, 0x3c, 0xb4, 0xed, 0x10, 0xd8, + 0x1b, 0x95, 0xcb, 0x36, 0xe7, 0x37, 0xdb, 0xcc, 0x7e, 0xe2, 0x55, 0x46, 0xe6, 0x15, 0xf2, 0x19, + 0xf9, 0x8c, 0x7c, 0x46, 0x3e, 0x17, 0x51, 0x3e, 0x93, 0x79, 0xe5, 0x48, 0xe6, 0x15, 0x57, 0x6d, + 0x3a, 0x93, 0xfa, 0xc3, 0xdd, 0x8e, 0xd6, 0x5f, 0x81, 0x0b, 0xd7, 0x3a, 0x92, 0x82, 0xe5, 0xb7, + 0x4e, 0xa3, 0x37, 0xbd, 0x0e, 0x05, 0xea, 0x4a, 0xcb, 0xb8, 0x51, 0x07, 0xb3, 0x72, 0xd8, 0x1e, + 0xd5, 0xec, 0x52, 0xaa, 0xeb, 0x72, 0x1c, 0xc1, 0x5a, 0xfc, 0x80, 0x8e, 0x1e, 0x85, 0x8a, 0x0f, + 0x50, 0xb0, 0x4b, 0xc1, 0xae, 0xff, 0xec, 0x4d, 0x47, 0x0f, 0xd3, 0xa0, 0x38, 0xd3, 0xd1, 0x23, + 0xa3, 0xa5, 0xc7, 0x33, 0xfc, 0x04, 0x75, 0xd6, 0xdf, 0xf1, 0x41, 0xda, 0xe9, 0xe5, 0x51, 0x62, + 0xa1, 0xb7, 0xc7, 0xdd, 0x09, 0xd0, 0xe4, 0xa3, 0x08, 0x3e, 0x43, 0x96, 0xe2, 0x31, 0x2c, 0xa0, + 0xc7, 0x90, 0xa5, 0xf8, 0x0b, 0xcf, 0x5b, 0x48, 0xf9, 0x06, 0x1f, 0xe3, 0x86, 0xff, 0x41, 0x16, + 0xb5, 0x32, 0x8b, 0x6d, 0x3e, 0xa6, 0xe7, 0x61, 0xe7, 0xc8, 0x79, 0x9d, 0x23, 0xe7, 0xe2, 0xd2, + 0x83, 0x6d, 0x9a, 0x70, 0x86, 0x2e, 0x9c, 0xa1, 0x0d, 0x17, 0xe8, 0x43, 0x96, 0x46, 0x84, 0xe9, + 0xc4, 0x1a, 0xad, 0xdc, 0x4f, 0x2f, 0xf6, 0xcf, 0x5a, 0xa7, 0xa7, 0x63, 0xc9, 0xda, 0xed, 0x90, + 0x8d, 0x75, 0xd2, 0x71, 0x81, 0x7c, 0x9c, 0x21, 0x21, 0x57, 0xc8, 0xc8, 0x39, 0x52, 0x72, 0x8e, + 0x9c, 0x5c, 0x22, 0x29, 0x3b, 0x64, 0x65, 0x89, 0xb4, 0xac, 0x93, 0xd7, 0x64, 0x02, 0xc2, 0xfd, + 0x6e, 0x7f, 0x0a, 0x5a, 0xa2, 0x7d, 0x70, 0x1d, 0xa5, 0x31, 0x67, 0xe8, 0xcc, 0x25, 0x5a, 0x73, + 0x8e, 0xde, 0x5c, 0xa3, 0x39, 0x67, 0xe9, 0xce, 0x59, 0xda, 0x73, 0x91, 0xfe, 0xec, 0xd2, 0xa0, + 0x65, 0x3a, 0x74, 0x86, 0x16, 0x27, 0x13, 0x39, 0x4b, 0x3b, 0xbd, 0xae, 0x3b, 0x5b, 0x7b, 0x8c, + 0x7d, 0xc3, 0x69, 0x39, 0xb2, 0x7b, 0x6e, 0xf5, 0xa3, 0x68, 0x87, 0x71, 0xa6, 0x5c, 0x99, 0x97, + 0x1b, 0x65, 0x83, 0xce, 0x91, 0xb9, 0x8b, 0xa4, 0xee, 0x2c, 0xb9, 0xbb, 0x4a, 0xf2, 0xce, 0x93, + 0xbd, 0xf3, 0xa4, 0xef, 0x32, 0xf9, 0xbb, 0xe1, 0x04, 0x38, 0xe2, 0x0c, 0x4c, 0x5e, 0x94, 0xb5, + 0xba, 0xa2, 0x9f, 0xa2, 0x95, 0xbd, 0x76, 0x62, 0x3f, 0x55, 0xb0, 0xeb, 0x2f, 0x30, 0x64, 0x47, + 0x8c, 0xb8, 0x94, 0xa8, 0xe8, 0xec, 0xfc, 0xb4, 0x93, 0xba, 0xe7, 0x4f, 0x4e, 0x66, 0x86, 0xeb, + 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0x86, 0xeb, 0xb6, 0x10, 0xae, 0x5b, 0xd4, 0x0d, + 0xc2, 0x56, 0x2b, 0x55, 0x59, 0xe6, 0xa2, 0xf7, 0xb6, 0xed, 0xd0, 0x9c, 0x46, 0xef, 0xf0, 0x8b, + 0x53, 0x10, 0xe0, 0x16, 0xa4, 0xdf, 0xb1, 0xac, 0xcb, 0x0d, 0x07, 0x6d, 0x6b, 0xc6, 0xc6, 0xde, + 0x38, 0x38, 0xb7, 0x83, 0x30, 0xcf, 0x55, 0x9a, 0x38, 0x67, 0x6e, 0x93, 0x09, 0x2e, 0x2f, 0x7f, + 0x59, 0x0b, 0xb6, 0x4f, 0x7e, 0x7c, 0x59, 0x0f, 0xb6, 0x4f, 0x86, 0xdf, 0xae, 0x0f, 0x7e, 0x1b, + 0x7e, 0x5f, 0xf9, 0xb2, 0x16, 0x6c, 0x8c, 0xbf, 0xdf, 0xfc, 0xb2, 0x16, 0x6c, 0x9e, 0xac, 0x7c, + 0xfd, 0xba, 0xba, 0xf2, 0xfd, 0xd5, 0xf5, 0xd3, 0xff, 0xe1, 0xf2, 0x5f, 0xbf, 0x7c, 0xfd, 0xda, + 0xfd, 0xbe, 0x7f, 0xdd, 0xff, 0x75, 0xf7, 0xfa, 0xe4, 0xef, 0x2b, 0xff, 0x28, 0x39, 0xb7, 0x2a, + 0x27, 0x4e, 0xcd, 0xe8, 0xfa, 0x25, 0x28, 0xf5, 0x68, 0x94, 0xda, 0x02, 0xa5, 0x0a, 0x8b, 0x52, + 0x6f, 0x7f, 0xf4, 0xb1, 0x24, 0x0c, 0xda, 0xd5, 0xe0, 0xc3, 0xc9, 0xf7, 0xb5, 0x97, 0x1b, 0xd7, + 0x2b, 0x6f, 0x57, 0x96, 0xef, 0xfe, 0xec, 0xed, 0xca, 0xf7, 0xb5, 0x97, 0x9b, 0xd7, 0xcb, 0xcb, + 0xf7, 0xfc, 0xc9, 0x3f, 0xee, 0x7b, 0xc6, 0xca, 0x8f, 0xe5, 0xe5, 0xe5, 0x11, 0x3e, 0x4d, 0x61, + 0xd6, 0x97, 0xb5, 0xf5, 0x93, 0x7f, 0x0c, 0xbe, 0x1d, 0xfe, 0x3a, 0x41, 0xbd, 0x47, 0xfd, 0xe5, + 0x95, 0x7b, 0xb1, 0xee, 0xa5, 0xb3, 0x14, 0xf0, 0xdb, 0xdb, 0x93, 0xbf, 0xbf, 0x5d, 0xf9, 0xbe, + 0x75, 0x3d, 0xfe, 0x7e, 0xf0, 0xeb, 0xca, 0x8f, 0xe5, 0xd5, 0xbf, 0x7d, 0xfd, 0xba, 0xba, 0xfa, + 0xb7, 0x95, 0xe1, 0x42, 0x8d, 0xfe, 0xde, 0xdf, 0x86, 0x7f, 0xfa, 0x8f, 0xb7, 0x6f, 0x67, 0x7e, + 0xb4, 0xb2, 0xfc, 0xd7, 0x55, 0x60, 0xdd, 0x13, 0x51, 0xe5, 0xce, 0xba, 0x10, 0x56, 0xed, 0x6f, + 0xc4, 0x6e, 0xda, 0xc9, 0xd5, 0xa0, 0x11, 0x6a, 0xa0, 0xe2, 0xe8, 0x2c, 0x3a, 0x8d, 0x95, 0x7b, + 0x11, 0xd6, 0xfb, 0x26, 0xe9, 0xde, 0xf9, 0x7d, 0x9e, 0xf6, 0x38, 0xbe, 0xbf, 0x7f, 0x3a, 0xc4, + 0x80, 0x9f, 0x60, 0xed, 0xc4, 0x80, 0x1f, 0x6b, 0xe4, 0xc4, 0x80, 0xe7, 0x9c, 0x20, 0x31, 0x60, + 0x3f, 0xb4, 0x30, 0xc7, 0xf7, 0xcf, 0x91, 0xbd, 0x1c, 0xdf, 0xbb, 0xe3, 0x67, 0x66, 0x51, 0x2b, + 0xb0, 0x58, 0xe8, 0xf7, 0xa0, 0xf9, 0x8e, 0xe6, 0x85, 0xdb, 0x86, 0xdb, 0x86, 0xdb, 0x86, 0xdb, + 0x86, 0xdb, 0x86, 0xdb, 0xb6, 0x10, 0x6e, 0x5b, 0x2f, 0x89, 0x3a, 0x09, 0xa7, 0xf6, 0x8f, 0x7a, + 0x7d, 0x9c, 0xda, 0x3f, 0xd6, 0x99, 0x4a, 0x83, 0xbe, 0x3f, 0x95, 0xf7, 0x97, 0xcd, 0xe1, 0xe3, + 0xb0, 0x6d, 0x07, 0xe7, 0xe6, 0xa4, 0xa9, 0xb9, 0x6b, 0x72, 0x33, 0xa6, 0x77, 0xd1, 0x8d, 0xb3, + 0x20, 0x0e, 0x4f, 0x55, 0xec, 0xe8, 0x91, 0x97, 0xeb, 0x16, 0xe8, 0x87, 0x25, 0xba, 0x6f, 0x91, + 0xb3, 0x4c, 0x6b, 0xeb, 0x3a, 0xd2, 0xe7, 0x5a, 0xe7, 0x6b, 0x0f, 0xa6, 0x6a, 0xf7, 0xba, 0xd3, + 0xe2, 0x59, 0xeb, 0x64, 0x61, 0x5d, 0xb8, 0x4e, 0xd5, 0xf3, 0xb0, 0xc9, 0xa3, 0xa7, 0x3d, 0xbe, + 0x13, 0x73, 0x7d, 0xcb, 0xb3, 0x89, 0x3b, 0x74, 0x77, 0xa6, 0xa7, 0xca, 0xf0, 0x71, 0x7b, 0x31, + 0xfc, 0xc6, 0x5e, 0x94, 0xde, 0x8b, 0x6b, 0x1b, 0x6f, 0x36, 0x5f, 0x6f, 0xb2, 0x21, 0xc5, 0x36, + 0xe4, 0x0b, 0x66, 0xa9, 0xe3, 0xeb, 0xe4, 0x05, 0xb0, 0xbb, 0x08, 0x72, 0x42, 0x25, 0xbd, 0x0b, + 0x95, 0x0e, 0xef, 0x7d, 0xf2, 0x47, 0x53, 0xac, 0x6f, 0x78, 0x30, 0xd7, 0x5a, 0xd2, 0xbb, 0xe8, + 0x13, 0xae, 0xdb, 0x9b, 0xdd, 0xdd, 0xd9, 0xb9, 0x09, 0x41, 0x8e, 0x42, 0x8f, 0x07, 0x31, 0x35, + 0xc7, 0xcb, 0x1b, 0x66, 0x30, 0xe6, 0x8d, 0xc3, 0x73, 0x74, 0xbd, 0xdc, 0x61, 0x32, 0xd1, 0xdf, + 0xa6, 0xeb, 0x18, 0xd6, 0x87, 0x15, 0x0e, 0xaf, 0xaf, 0xef, 0xfe, 0xf0, 0xc7, 0x7d, 0x7f, 0x6d, + 0xfd, 0xe5, 0xeb, 0xeb, 0xb7, 0x0f, 0xfc, 0xc9, 0xd6, 0xf5, 0xdb, 0x47, 0x3e, 0x63, 0xf3, 0x7a, + 0x79, 0xe6, 0xaf, 0xf6, 0x7f, 0x5e, 0x79, 0xe8, 0x1f, 0x6c, 0x3c, 0xf0, 0x0f, 0x5e, 0x3d, 0xf4, + 0x0f, 0x5e, 0x3d, 0xf0, 0x0f, 0x1e, 0x9c, 0x52, 0xe5, 0x81, 0x7f, 0xb0, 0x79, 0xfd, 0x63, 0xe6, + 0xef, 0x2f, 0xdf, 0xff, 0x57, 0xb7, 0xae, 0x57, 0x7e, 0x3c, 0xf4, 0x67, 0xaf, 0xaf, 0x7f, 0xbc, + 0x5d, 0x59, 0xf9, 0x4b, 0x09, 0x68, 0xf7, 0x9c, 0x0a, 0xa9, 0xe4, 0xf3, 0x8a, 0xf2, 0x3c, 0xf1, + 0xaa, 0x5d, 0xf6, 0xa2, 0x1d, 0xf5, 0x9a, 0xa9, 0x76, 0x72, 0x6d, 0x3d, 0x16, 0xbb, 0x29, 0xab, + 0xa5, 0xdb, 0x9a, 0x1f, 0x9c, 0x8f, 0x8b, 0xb7, 0x38, 0xdf, 0xb9, 0xea, 0xaf, 0x3c, 0x7d, 0xf5, + 0xd3, 0xf4, 0xff, 0x8a, 0x5e, 0xf9, 0xec, 0x9e, 0x49, 0x5b, 0x34, 0x67, 0x77, 0x3a, 0xb1, 0xb9, + 0xd6, 0x81, 0xcd, 0x91, 0xb3, 0x0f, 0x3a, 0xdf, 0xff, 0x99, 0xad, 0xd0, 0xf9, 0xfe, 0x21, 0xe3, + 0xa5, 0xf3, 0xfd, 0x53, 0x39, 0x9d, 0xce, 0xf7, 0x6e, 0x39, 0x59, 0xce, 0xa4, 0x5b, 0x5b, 0xbc, + 0x6c, 0xfb, 0xa7, 0x1a, 0xd2, 0x81, 0xf4, 0xae, 0x7b, 0x2e, 0xe7, 0x9e, 0x50, 0x38, 0x0e, 0x9d, + 0xbc, 0x16, 0x70, 0xa3, 0x36, 0xcf, 0xad, 0x9a, 0x3c, 0x9c, 0x39, 0x9c, 0x39, 0x9c, 0x39, 0x9c, + 0x39, 0x9c, 0x39, 0x9c, 0x39, 0x9c, 0xb9, 0xa7, 0x39, 0x73, 0x23, 0x02, 0xc7, 0x95, 0x93, 0x77, + 0xe5, 0xf2, 0x30, 0x57, 0x0e, 0x79, 0x72, 0x83, 0xe9, 0x70, 0x1f, 0xe5, 0x94, 0x23, 0x57, 0xc1, + 0x91, 0xc3, 0x91, 0xc3, 0x91, 0xc3, 0x91, 0x5b, 0x10, 0x47, 0xce, 0x99, 0xfb, 0x28, 0xc3, 0x38, + 0xee, 0x34, 0xc3, 0x5c, 0xb5, 0x82, 0xd6, 0x55, 0x12, 0x5e, 0x44, 0xcd, 0xa0, 0xff, 0xff, 0xb1, + 0x7b, 0x4d, 0x89, 0x1e, 0x9a, 0x28, 0x5d, 0x8a, 0x5c, 0x8e, 0x90, 0xb8, 0x48, 0xb0, 0xce, 0x12, + 0xad, 0xab, 0x84, 0xeb, 0x3c, 0xf1, 0x3a, 0x4f, 0xc0, 0x2e, 0x13, 0xb1, 0x1b, 0x84, 0xec, 0x08, + 0x31, 0xbb, 0x17, 0x69, 0x99, 0xd5, 0x8f, 0x4e, 0x36, 0x94, 0xa1, 0x57, 0xd1, 0x63, 0xbf, 0x1c, + 0xce, 0xf8, 0x75, 0xba, 0x61, 0x0c, 0xad, 0x8a, 0x8a, 0x63, 0x71, 0x33, 0x96, 0xe7, 0x7c, 0x43, + 0x18, 0x0f, 0x1a, 0xc1, 0x78, 0xd2, 0x00, 0xc6, 0x83, 0xba, 0x62, 0x9f, 0x1a, 0xbe, 0x78, 0xd6, + 0x5c, 0xc2, 0xbb, 0x06, 0x2f, 0x3e, 0xf6, 0x91, 0xf0, 0xa0, 0xa1, 0x8b, 0x57, 0x8d, 0x5c, 0xbc, + 0xdd, 0x63, 0x3e, 0x35, 0x6e, 0xf1, 0x72, 0xa3, 0xd1, 0x15, 0xe1, 0x59, 0x5f, 0x74, 0x45, 0x28, + 0x96, 0xfb, 0xee, 0x47, 0x03, 0x16, 0x1f, 0x1a, 0xaf, 0x38, 0xde, 0x70, 0x85, 0xea, 0x72, 0xaf, + 0x20, 0x84, 0x7b, 0x62, 0xe7, 0xc6, 0x0a, 0xee, 0x89, 0x7d, 0xc6, 0x04, 0x69, 0x98, 0x42, 0xc3, + 0x14, 0x67, 0x21, 0x9a, 0x2e, 0x08, 0x8e, 0xad, 0x87, 0x0b, 0x77, 0x71, 0x9d, 0xa5, 0x9d, 0x5e, + 0xd7, 0xbd, 0xac, 0x97, 0xe1, 0xb4, 0xdc, 0xbb, 0xd7, 0xb5, 0x1d, 0xc6, 0x19, 0x17, 0xbb, 0xde, + 0x3f, 0x1d, 0x72, 0x6f, 0x9e, 0x60, 0xe0, 0xe4, 0xde, 0x3c, 0xd6, 0xc8, 0xc9, 0xbd, 0x99, 0x73, + 0x82, 0xe4, 0xde, 0xf8, 0x21, 0x5e, 0xb9, 0xd8, 0xf5, 0x39, 0x3a, 0x95, 0x8b, 0x5d, 0xdd, 0x71, + 0x26, 0x9d, 0xe9, 0x06, 0x34, 0x63, 0xc0, 0x8e, 0x74, 0x05, 0xc2, 0x75, 0xc3, 0x75, 0xc3, 0x75, + 0xc3, 0x75, 0xc3, 0x75, 0xc3, 0x75, 0x13, 0x42, 0xab, 0xa8, 0xeb, 0xe0, 0x69, 0x03, 0x59, 0xd3, + 0x8f, 0xfd, 0x72, 0xfb, 0x24, 0x6b, 0x83, 0x93, 0xac, 0x67, 0xfa, 0x37, 0xae, 0x9f, 0x64, 0x0d, + 0x0f, 0xb2, 0x4e, 0x7e, 0x7c, 0x59, 0x0f, 0xb6, 0x4f, 0x86, 0xdf, 0xae, 0x0f, 0x7e, 0x1b, 0x7e, + 0x5f, 0xf9, 0xb2, 0x16, 0x6c, 0x8c, 0xbf, 0xdf, 0xfc, 0xb2, 0x16, 0x6c, 0x9e, 0xac, 0x7c, 0xfd, + 0xba, 0xba, 0xf2, 0xfd, 0xd5, 0xf5, 0xd3, 0xff, 0xe1, 0xf2, 0x5f, 0xbf, 0x7c, 0xfd, 0xda, 0xfd, + 0xbe, 0x7f, 0xdd, 0xff, 0x75, 0xf7, 0xfa, 0xe4, 0xef, 0x2b, 0xff, 0xe0, 0x30, 0xc7, 0x0b, 0xde, + 0xf3, 0x03, 0xa5, 0x38, 0x6f, 0x2f, 0x2e, 0x4a, 0xbd, 0x9d, 0x3a, 0x42, 0x5e, 0x7b, 0xb9, 0x71, + 0xbd, 0xf2, 0x76, 0x65, 0xf9, 0xee, 0xcf, 0xde, 0xae, 0x7c, 0x5f, 0x7b, 0xb9, 0x79, 0xbd, 0xbc, + 0x7c, 0xcf, 0x9f, 0xfc, 0xe3, 0xbe, 0x67, 0xac, 0xfc, 0x58, 0x5e, 0x5e, 0x1e, 0xe1, 0xd3, 0x14, + 0x66, 0x7d, 0x59, 0x5b, 0x3f, 0xf9, 0xc7, 0xe0, 0xdb, 0xe1, 0xaf, 0x13, 0xd4, 0x7b, 0xd4, 0x5f, + 0x5e, 0xb9, 0x17, 0xeb, 0x5e, 0x3a, 0x4b, 0x01, 0xbf, 0xbd, 0x3d, 0xf9, 0xfb, 0xdb, 0x95, 0xef, + 0x5b, 0xd7, 0xe3, 0xef, 0x07, 0xbf, 0xae, 0xfc, 0x58, 0x5e, 0xfd, 0xdb, 0xd7, 0xaf, 0xab, 0xab, + 0x7f, 0x5b, 0x19, 0x2e, 0xd4, 0xe8, 0xef, 0xfd, 0x6d, 0xf8, 0xa7, 0xff, 0x78, 0xfb, 0x76, 0xe6, + 0x47, 0x2b, 0xcb, 0x7f, 0x5d, 0x05, 0xd6, 0x3d, 0x11, 0x55, 0x4b, 0x9c, 0xd1, 0xbb, 0x44, 0xb4, + 0xa5, 0x6e, 0xda, 0xc9, 0xd5, 0x20, 0x45, 0x3c, 0x50, 0x71, 0x74, 0x16, 0x9d, 0xc6, 0xca, 0xbd, + 0x08, 0xeb, 0x7d, 0x93, 0x74, 0xef, 0xfc, 0x3e, 0x4f, 0x7b, 0x1c, 0xdf, 0xdf, 0x3f, 0x1d, 0x62, + 0xc0, 0x4f, 0xb0, 0x76, 0x62, 0xc0, 0x8f, 0x35, 0x72, 0x62, 0xc0, 0x73, 0x4e, 0x90, 0x18, 0xb0, + 0x1f, 0x5a, 0x98, 0xe3, 0xfb, 0xe7, 0xc8, 0x5e, 0x8e, 0xef, 0xdd, 0xf1, 0x33, 0x1d, 0xe9, 0xfd, + 0x3e, 0x63, 0xbe, 0x4e, 0xf4, 0x80, 0xc7, 0x6d, 0xc3, 0x6d, 0xc3, 0x6d, 0xc3, 0x6d, 0xc3, 0x6d, + 0xc3, 0x6d, 0x13, 0x42, 0xab, 0x5e, 0xe2, 0x56, 0x5d, 0x31, 0xa7, 0xf6, 0x8f, 0xfd, 0x72, 0xf8, + 0x3c, 0xcc, 0xcd, 0x36, 0x7a, 0x2e, 0x9b, 0x98, 0xdb, 0xa6, 0xe6, 0xae, 0xc9, 0xcd, 0x98, 0x9e, + 0xd3, 0x6d, 0xf6, 0x7c, 0xb0, 0x40, 0x3f, 0x2c, 0xd1, 0x7d, 0x8b, 0x9c, 0x65, 0x5a, 0xd7, 0xdb, + 0xf0, 0xdd, 0xb5, 0xce, 0xd7, 0x1e, 0x4c, 0xd5, 0x8f, 0xb6, 0x7c, 0xfe, 0x58, 0xeb, 0x64, 0x61, + 0x7d, 0x6a, 0xd3, 0xe7, 0x68, 0xd8, 0xe4, 0xd1, 0xd3, 0xf6, 0xad, 0x6d, 0xdf, 0x64, 0xe2, 0x1e, + 0x76, 0x15, 0x73, 0x4c, 0x19, 0x3e, 0x6e, 0x2f, 0x7a, 0xd4, 0xce, 0xaf, 0x30, 0x7b, 0xd1, 0xa7, + 0xf6, 0x7e, 0x85, 0xd8, 0x90, 0x2f, 0x98, 0xa5, 0x8e, 0xaf, 0x93, 0x17, 0xc0, 0xee, 0x22, 0xc8, + 0x09, 0x3f, 0xda, 0x02, 0xce, 0x28, 0xde, 0x0d, 0x0f, 0xe6, 0xea, 0x76, 0x9b, 0x40, 0xf7, 0xa1, + 0x88, 0x0e, 0xa4, 0x85, 0x80, 0x1c, 0x5f, 0xca, 0x1b, 0x66, 0x30, 0xe6, 0x8d, 0xc3, 0x73, 0x74, + 0xbd, 0xdc, 0x61, 0x32, 0x51, 0xda, 0x0c, 0xd2, 0x66, 0xd0, 0x1b, 0x68, 0xa7, 0xe4, 0xc3, 0x27, + 0xea, 0x73, 0xf8, 0xe4, 0xd2, 0x6d, 0xaf, 0xda, 0x65, 0x2f, 0xda, 0x51, 0xaf, 0x99, 0x6a, 0x27, + 0xd7, 0xd6, 0x63, 0xb1, 0x2f, 0x27, 0xae, 0x26, 0x49, 0x27, 0x1f, 0xe2, 0x8b, 0x13, 0x77, 0x14, + 0x67, 0xcd, 0x73, 0x75, 0x11, 0x76, 0xc3, 0xfc, 0xbc, 0x0f, 0x7f, 0xe5, 0x4e, 0x57, 0x25, 0xcd, + 0x41, 0xb6, 0x67, 0x90, 0xa8, 0xfc, 0x8f, 0x4e, 0xfa, 0x7b, 0x10, 0x25, 0x59, 0x1e, 0x26, 0x4d, + 0x55, 0xbe, 0xfb, 0x83, 0x6c, 0xe6, 0x27, 0xe5, 0x6e, 0xda, 0xc9, 0x3b, 0xcd, 0x4e, 0x9c, 0x4d, + 0xbe, 0x2b, 0x47, 0x59, 0x94, 0x95, 0xa3, 0x24, 0x57, 0x69, 0x3b, 0xec, 0xff, 0x9b, 0xc9, 0xb7, + 0xe5, 0x58, 0x5d, 0xaa, 0x38, 0x1b, 0xfe, 0x56, 0x0e, 0xdb, 0x51, 0x90, 0x85, 0xed, 0xa8, 0x1c, + 0xb6, 0xcb, 0x99, 0x3a, 0xbb, 0x50, 0x49, 0x1e, 0xa4, 0x9d, 0x5e, 0x1e, 0x25, 0x67, 0xe5, 0xb0, + 0xf5, 0xdf, 0xb0, 0xa9, 0x92, 0xe6, 0x55, 0x90, 0x45, 0xad, 0x6c, 0xfa, 0x7f, 0xcb, 0xc3, 0x2b, + 0xff, 0x5f, 0x2c, 0xa6, 0x45, 0xdb, 0x19, 0xd9, 0xd2, 0x1e, 0x2a, 0xfd, 0xaa, 0xae, 0x6e, 0xf7, + 0x59, 0x5b, 0xb2, 0x9a, 0xb3, 0x5d, 0xda, 0x8d, 0xb2, 0xbc, 0x9a, 0xe7, 0x76, 0x1b, 0xd1, 0x95, + 0xf6, 0xa2, 0xa4, 0x16, 0xab, 0xfe, 0x76, 0xc9, 0x4a, 0x6f, 0x97, 0x92, 0x5e, 0x1c, 0xbf, 0xb4, + 0x38, 0x99, 0xf0, 0x9b, 0x3b, 0x93, 0xf9, 0x98, 0xb6, 0x54, 0xaa, 0x5a, 0xef, 0xae, 0x46, 0x53, + 0x59, 0xa8, 0xad, 0xe2, 0x08, 0xcd, 0x78, 0x4f, 0x2f, 0x16, 0x45, 0x40, 0x29, 0xcb, 0xd3, 0x5e, + 0x33, 0x4f, 0x46, 0xca, 0x64, 0x7f, 0xb8, 0x18, 0xf5, 0xd1, 0x5a, 0x34, 0x0e, 0x46, 0x2b, 0xd0, + 0xa8, 0x67, 0x51, 0xd6, 0xa8, 0x8f, 0x3f, 0x76, 0x63, 0xb7, 0xff, 0x79, 0x1b, 0xd5, 0x76, 0xe3, + 0x68, 0xf8, 0x31, 0x0f, 0x87, 0x9f, 0xb2, 0x51, 0x1d, 0x7f, 0xac, 0xa3, 0xa8, 0x65, 0x87, 0x2e, + 0xe5, 0xc9, 0x4a, 0x76, 0x44, 0xe1, 0xbd, 0x6e, 0x7b, 0x8f, 0x7b, 0xb8, 0xb7, 0x65, 0xed, 0x5e, + 0xce, 0xfa, 0x04, 0x2d, 0x6f, 0x54, 0xaa, 0x33, 0x5c, 0x4e, 0x69, 0xb3, 0xbb, 0xd5, 0x08, 0xe2, + 0x66, 0x12, 0xc2, 0xbb, 0x6e, 0x1c, 0x82, 0x11, 0x1e, 0xd6, 0x56, 0x09, 0x9e, 0xcd, 0x52, 0x3b, + 0xeb, 0x25, 0x75, 0xb6, 0x4b, 0xe7, 0x9c, 0x29, 0x91, 0x73, 0xa6, 0x14, 0xce, 0x85, 0x92, 0xb7, + 0x62, 0x7b, 0x15, 0x3b, 0x91, 0x1d, 0x45, 0x7b, 0x0b, 0xd3, 0xed, 0xed, 0xb7, 0x59, 0x7e, 0xb1, + 0xb5, 0xe1, 0xec, 0xd0, 0x8c, 0x75, 0xba, 0x71, 0x81, 0x76, 0x9c, 0xa1, 0x1f, 0x57, 0x68, 0xc8, + 0x39, 0x3a, 0x72, 0x8e, 0x96, 0x5c, 0xa2, 0x27, 0x7b, 0x72, 0xdb, 0x66, 0xc0, 0xcb, 0x16, 0x6d, + 0x4d, 0x26, 0xd0, 0x1c, 0x23, 0xa6, 0xe5, 0x3d, 0x3a, 0x06, 0xad, 0xd1, 0x7c, 0x2c, 0xef, 0x07, + 0xbb, 0x34, 0xe6, 0x0c, 0x9d, 0xb9, 0x44, 0x6b, 0xce, 0xd1, 0x9b, 0x6b, 0x34, 0xe7, 0x2c, 0xdd, + 0x39, 0x4b, 0x7b, 0x2e, 0xd2, 0x9f, 0x5d, 0x1a, 0xb4, 0x4c, 0x87, 0xce, 0xd0, 0xe2, 0x64, 0x22, + 0x83, 0x92, 0xfc, 0xa0, 0xd3, 0xcd, 0xa3, 0x4e, 0x92, 0xb9, 0xd7, 0xfe, 0x6b, 0x7a, 0x7a, 0x74, + 0x01, 0x73, 0x99, 0x44, 0x5d, 0x24, 0x53, 0x67, 0x49, 0xd5, 0x55, 0x72, 0x75, 0x9e, 0x64, 0x9d, + 0x27, 0x5b, 0x97, 0x49, 0xd7, 0x0d, 0xf2, 0x75, 0x84, 0x84, 0x27, 0x2f, 0xca, 0xdd, 0x2e, 0x60, + 0x6e, 0xa6, 0x3d, 0xbb, 0x98, 0xee, 0xec, 0x58, 0x9a, 0x33, 0x4d, 0x65, 0x6f, 0x8e, 0x0e, 0x5c, + 0xbc, 0xaf, 0xc0, 0x25, 0xd5, 0x88, 0x3b, 0x89, 0x3b, 0x89, 0x3b, 0x89, 0x3b, 0x89, 0x3b, 0x89, + 0x3b, 0x69, 0x16, 0xad, 0xa2, 0x6e, 0xe0, 0xdc, 0xe6, 0xa3, 0xb1, 0xec, 0x63, 0xbf, 0x5c, 0xbf, + 0x0e, 0xd6, 0x49, 0x5c, 0x5f, 0xe2, 0x9e, 0xc5, 0x39, 0x27, 0x28, 0x79, 0x1b, 0x6c, 0x79, 0x34, + 0xd8, 0xca, 0x8f, 0xe5, 0x2f, 0xeb, 0x41, 0xe5, 0x64, 0xfc, 0x3f, 0xaf, 0xbe, 0xac, 0x05, 0x95, + 0x93, 0x95, 0x15, 0xee, 0x10, 0xf4, 0x82, 0x02, 0xfd, 0x40, 0xac, 0x2d, 0x10, 0xab, 0xa8, 0x88, + 0xe5, 0xdd, 0xcd, 0xb0, 0xb7, 0x81, 0xaf, 0xff, 0xfb, 0xf7, 0xca, 0xf5, 0xca, 0x8f, 0xe5, 0x3e, + 0x5c, 0xae, 0x4f, 0x40, 0x70, 0xbd, 0xff, 0x90, 0x37, 0xfd, 0xbf, 0xbe, 0x18, 0xb7, 0xc6, 0x96, + 0x57, 0xff, 0x0e, 0xe0, 0x7b, 0xa1, 0xbc, 0x96, 0x68, 0xa3, 0xe0, 0x12, 0x05, 0x73, 0x99, 0xd7, + 0x53, 0x38, 0x96, 0xb8, 0xeb, 0x43, 0x3c, 0x4f, 0xdc, 0xf5, 0xf1, 0x13, 0x23, 0xee, 0xfa, 0xcc, + 0x09, 0x12, 0x77, 0xf5, 0x9d, 0xfd, 0x89, 0xbb, 0xfe, 0x94, 0xf7, 0x9c, 0xbc, 0x77, 0x89, 0xc8, + 0x6b, 0x01, 0xe2, 0x18, 0x4e, 0xdf, 0xab, 0xc4, 0x8d, 0x5e, 0xc5, 0xb1, 0xb8, 0x19, 0xcb, 0x73, + 0xfe, 0xde, 0x24, 0x0f, 0xee, 0x4b, 0xf2, 0xe4, 0x9e, 0x24, 0x0f, 0xda, 0xef, 0xfb, 0x74, 0x2f, + 0x92, 0x67, 0x77, 0xb0, 0x78, 0x77, 0x0f, 0x92, 0x8f, 0xd7, 0xad, 0x78, 0x70, 0xef, 0x91, 0x57, + 0xf7, 0x1d, 0x79, 0xbb, 0xc7, 0x7c, 0xba, 0xdf, 0xc8, 0xcb, 0x8d, 0xc6, 0xe5, 0x21, 0xcf, 0xfa, + 0xe2, 0xf2, 0x90, 0x62, 0xb9, 0xef, 0x7e, 0xdc, 0x53, 0xe4, 0xc3, 0xfd, 0x44, 0x8e, 0xdf, 0x4b, + 0xc4, 0x25, 0x0c, 0x5e, 0x41, 0x88, 0xeb, 0x39, 0x33, 0xee, 0xde, 0x37, 0x44, 0xd2, 0xcc, 0x3c, + 0x13, 0xe4, 0x5e, 0x21, 0xee, 0x15, 0x72, 0x16, 0xa2, 0xc9, 0x72, 0x71, 0x6c, 0x3d, 0xb8, 0x2c, + 0x84, 0xcb, 0x42, 0x9e, 0xd6, 0xf1, 0xf9, 0x56, 0x6b, 0xe0, 0x5b, 0xdf, 0x97, 0x47, 0xed, 0xb0, + 0x16, 0xf5, 0x9e, 0x10, 0x8b, 0xcd, 0x0b, 0x1d, 0x29, 0xce, 0x75, 0xab, 0x28, 0xd7, 0x91, 0xb0, + 0x21, 0x8d, 0xd1, 0xfe, 0xcc, 0x52, 0x68, 0x8c, 0xf6, 0x90, 0xf1, 0xd2, 0x18, 0xed, 0xa9, 0x4c, + 0x4e, 0x63, 0x34, 0xb7, 0x5c, 0x2b, 0x67, 0x92, 0xb8, 0x6e, 0x5a, 0x90, 0xa9, 0xb0, 0x9d, 0xaa, + 0xb6, 0x0b, 0x78, 0x33, 0x0e, 0x70, 0x38, 0x90, 0xd1, 0x50, 0x3a, 0x18, 0x79, 0x9b, 0xab, 0xab, + 0x23, 0x1f, 0x6e, 0xe4, 0xd5, 0xe1, 0xca, 0x59, 0xf0, 0xff, 0x07, 0x77, 0xed, 0x39, 0xe3, 0xc9, + 0x0d, 0xa7, 0x43, 0x87, 0xdb, 0x29, 0x47, 0xae, 0x82, 0x23, 0x87, 0x23, 0x87, 0x23, 0x87, 0x23, + 0xb7, 0x20, 0x8e, 0x1c, 0x1d, 0x6e, 0x1f, 0xe9, 0x5e, 0xd2, 0xe1, 0xd6, 0x9b, 0x68, 0x88, 0x8b, + 0x64, 0xea, 0x2c, 0xa9, 0xba, 0x4a, 0xae, 0xce, 0x93, 0xac, 0xf3, 0x64, 0xeb, 0x32, 0xe9, 0xba, + 0x41, 0xbe, 0x8e, 0x90, 0xb0, 0x7b, 0x51, 0x95, 0x19, 0xb4, 0xa2, 0xc3, 0xed, 0xa3, 0xe7, 0x44, + 0x87, 0x5b, 0xe7, 0x36, 0x17, 0x1d, 0x6e, 0x71, 0x27, 0x71, 0x27, 0x71, 0x27, 0x71, 0x27, 0x71, + 0x27, 0x71, 0x27, 0x1d, 0x40, 0x2b, 0x3a, 0xdc, 0x3e, 0xed, 0x15, 0xd2, 0x67, 0xe1, 0xd1, 0x86, + 0x45, 0x87, 0xdb, 0xe7, 0x7a, 0x37, 0x74, 0xb8, 0xa5, 0xc3, 0x6d, 0xc1, 0x28, 0xd0, 0x0f, 0xc4, + 0xa2, 0xc3, 0x6d, 0x61, 0x11, 0x8b, 0x0e, 0xb7, 0xb6, 0xa8, 0x82, 0x0e, 0xb7, 0x0b, 0xa8, 0xbc, + 0x96, 0xa8, 0xfd, 0x71, 0x89, 0x82, 0xe9, 0x70, 0xfb, 0x14, 0x8e, 0x25, 0xee, 0xfa, 0x10, 0xcf, + 0x13, 0x77, 0x7d, 0xfc, 0xc4, 0x88, 0xbb, 0x3e, 0x73, 0x82, 0xc4, 0x5d, 0x7d, 0x67, 0x7f, 0xe2, + 0xae, 0x3f, 0xe5, 0x3d, 0x3a, 0xdc, 0x3e, 0xf1, 0x25, 0x12, 0x79, 0x7d, 0xa4, 0x69, 0xd1, 0xe1, + 0xb6, 0x50, 0x96, 0xe6, 0xae, 0xc5, 0xcd, 0x58, 0x1e, 0x1d, 0x6e, 0x35, 0x4c, 0x91, 0x0e, 0xb7, + 0x9a, 0x16, 0x92, 0x0e, 0xb7, 0xe6, 0xa6, 0x4b, 0x87, 0xdb, 0x85, 0x71, 0xa2, 0xff, 0x7c, 0x8f, + 0xd1, 0xe1, 0xd6, 0xfc, 0x1e, 0xa3, 0xc3, 0xed, 0x22, 0x68, 0x66, 0xff, 0x66, 0x47, 0x87, 0xdb, + 0x62, 0xb9, 0xef, 0x74, 0xb8, 0xd5, 0x36, 0x47, 0x3a, 0xdc, 0xfa, 0x0c, 0x25, 0xe4, 0xcc, 0x3c, + 0x16, 0x32, 0xe8, 0x70, 0xfb, 0xfc, 0xb9, 0xd1, 0xe1, 0x96, 0x0e, 0xb7, 0x74, 0xb8, 0xf5, 0x9e, + 0xc2, 0xc8, 0x72, 0x71, 0x61, 0x06, 0x74, 0xb8, 0x9d, 0x9e, 0x8f, 0xc7, 0x1d, 0x6e, 0x87, 0xdd, + 0xb0, 0x16, 0xb5, 0x2b, 0xda, 0x8b, 0x05, 0xda, 0x3d, 0xa5, 0x5f, 0xd5, 0x95, 0xf5, 0x34, 0x94, + 0xd2, 0x6e, 0x94, 0xe5, 0xd5, 0x3c, 0xb7, 0xdb, 0x7d, 0xa7, 0xb4, 0x17, 0x25, 0xb5, 0x58, 0xf5, + 0xf7, 0x47, 0x56, 0x7a, 0xbb, 0x94, 0xf4, 0xe2, 0xd8, 0x62, 0x7f, 0xbc, 0xbd, 0xf0, 0x9b, 0x3b, + 0x93, 0xf9, 0x98, 0xb6, 0x54, 0xaa, 0x5a, 0xef, 0xae, 0x46, 0x53, 0x59, 0xa8, 0x1d, 0xe2, 0x08, + 0xaf, 0x78, 0xcc, 0x27, 0x25, 0xab, 0x7d, 0x26, 0xd3, 0x5e, 0x33, 0x4f, 0x46, 0x62, 0x79, 0x7f, + 0xb8, 0x0c, 0xf5, 0xd1, 0x2a, 0x34, 0x0e, 0x46, 0x9f, 0xbd, 0x51, 0xcf, 0xa2, 0xac, 0x51, 0x1f, + 0x7f, 0xe0, 0xc6, 0x6e, 0xff, 0x93, 0x36, 0xaa, 0xed, 0xc6, 0xd1, 0xf0, 0x03, 0x1e, 0x0e, 0x3f, + 0x5f, 0x63, 0x98, 0x7d, 0x79, 0x14, 0xb5, 0xec, 0x90, 0xa3, 0x3c, 0x35, 0xc9, 0x8e, 0x28, 0xbc, + 0xc5, 0x6d, 0x6f, 0x6d, 0xdf, 0xb6, 0xb4, 0xac, 0xd1, 0xcb, 0x99, 0x9e, 0xcc, 0x48, 0x42, 0xc6, + 0x6d, 0xcb, 0xa8, 0x7d, 0x30, 0x66, 0x41, 0x22, 0xd2, 0x4b, 0x3c, 0x32, 0x3b, 0xcf, 0xfc, 0x3e, + 0x10, 0xd8, 0x03, 0xc2, 0x9d, 0xa5, 0xad, 0x74, 0x90, 0x16, 0xee, 0x14, 0x2d, 0xde, 0x11, 0xda, + 0x46, 0x95, 0xcb, 0xed, 0x2a, 0x96, 0x3e, 0xd2, 0x48, 0x62, 0x85, 0xa5, 0x3a, 0x15, 0xeb, 0x75, + 0x28, 0xd6, 0xeb, 0x4c, 0xee, 0xd6, 0x91, 0x0c, 0x5e, 0x3c, 0x7e, 0xc7, 0xb3, 0x96, 0x52, 0xba, + 0x7b, 0x72, 0xa9, 0x4f, 0xf4, 0x23, 0x7e, 0x15, 0xde, 0x37, 0x63, 0xa8, 0x98, 0xcc, 0x40, 0xd8, + 0x6a, 0xed, 0xa4, 0xd1, 0x59, 0x2b, 0x86, 0xb4, 0x59, 0xf4, 0x68, 0x91, 0x16, 0x6c, 0xd3, 0x83, + 0x33, 0x34, 0xe1, 0x0c, 0x5d, 0xb8, 0x41, 0x1b, 0x8b, 0x11, 0x9b, 0xb1, 0x56, 0x38, 0x78, 0x93, + 0x59, 0xd3, 0x52, 0x49, 0x1e, 0xe5, 0x57, 0x76, 0x6e, 0x52, 0x9a, 0xf8, 0xf8, 0x16, 0xd2, 0x8e, + 0x4b, 0xf5, 0xd1, 0x47, 0x7f, 0x17, 0x66, 0x16, 0x71, 0x67, 0xfc, 0x22, 0xaa, 0x1f, 0xea, 0x8d, + 0xe3, 0xff, 0x1c, 0xd4, 0x6c, 0xc1, 0xce, 0x20, 0x0d, 0x3c, 0xb3, 0x9a, 0x25, 0xe4, 0xc8, 0x35, + 0x49, 0xf5, 0x83, 0xcf, 0x5b, 0xa5, 0x45, 0xbc, 0xaf, 0xca, 0x9d, 0xf5, 0xdf, 0x28, 0x2d, 0xd8, + 0xc9, 0xf8, 0x49, 0xd1, 0x89, 0xf5, 0x45, 0x01, 0xf7, 0x4f, 0x49, 0x25, 0xe1, 0x69, 0xac, 0x5a, + 0xf6, 0xb4, 0xd9, 0x78, 0x02, 0x48, 0x33, 0xa4, 0x19, 0xd2, 0x0c, 0x69, 0x86, 0x34, 0x2b, 0x90, + 0x34, 0x3b, 0xed, 0x74, 0x62, 0x15, 0x26, 0x36, 0x65, 0xd9, 0x3a, 0x4e, 0xc2, 0xdc, 0x6b, 0x79, + 0xa1, 0xf2, 0x34, 0x6a, 0xda, 0xf3, 0x11, 0x46, 0xe3, 0x0b, 0x6f, 0x9f, 0x1d, 0xd5, 0x0e, 0x7b, + 0xf1, 0x00, 0xa0, 0xd6, 0xd7, 0xf0, 0x4f, 0xf0, 0x4f, 0xf0, 0x4f, 0xf0, 0x4f, 0xf0, 0x4f, 0x8a, + 0xe4, 0x9f, 0x58, 0x6b, 0xc3, 0x64, 0xb1, 0xbd, 0x92, 0xe5, 0xb6, 0x49, 0x76, 0x0b, 0x07, 0xec, + 0xdf, 0x64, 0xef, 0x46, 0x6b, 0x95, 0x49, 0xcb, 0x14, 0xdb, 0xf3, 0x70, 0xa8, 0x09, 0xca, 0xb5, + 0xdd, 0x32, 0x12, 0x4c, 0xf3, 0x8e, 0x69, 0x6e, 0x54, 0xb6, 0x37, 0xb6, 0xb7, 0x5e, 0x57, 0xb6, + 0x37, 0xb1, 0x51, 0x3b, 0x0e, 0x81, 0xbd, 0x51, 0x4f, 0x50, 0xed, 0x73, 0x9b, 0x6d, 0x66, 0x3f, + 0xf1, 0x2a, 0x23, 0xf3, 0x0a, 0xf9, 0x8c, 0x7c, 0x46, 0x3e, 0x23, 0x9f, 0x8b, 0x28, 0x9f, 0xc9, + 0xbc, 0x72, 0x24, 0xf3, 0xea, 0x88, 0xd4, 0x2b, 0x57, 0x52, 0x7f, 0x3e, 0xed, 0xd7, 0xdf, 0x57, + 0x8f, 0x8e, 0xc9, 0xbe, 0xb2, 0xf7, 0x0a, 0xf6, 0x3e, 0xed, 0x1e, 0xdb, 0x7e, 0x09, 0xa4, 0x60, + 0xf9, 0xad, 0xd3, 0x28, 0x35, 0xd6, 0xa1, 0x40, 0x5d, 0x2c, 0x35, 0x96, 0xeb, 0x99, 0x24, 0x50, + 0xa7, 0xfb, 0xc2, 0x63, 0xf3, 0x1c, 0xf7, 0x34, 0x1a, 0xc7, 0x08, 0x96, 0xa4, 0xa2, 0x05, 0xb2, + 0x7d, 0x8c, 0xac, 0xf4, 0x2b, 0xb2, 0xd2, 0x97, 0x48, 0xb6, 0xff, 0x90, 0x69, 0xeb, 0x14, 0x06, + 0x4d, 0x17, 0xc1, 0xb2, 0x24, 0xd2, 0x06, 0x60, 0x9e, 0xfe, 0x0b, 0x66, 0x81, 0xdc, 0x1c, 0xbc, + 0x9a, 0x79, 0xb2, 0xa1, 0x2d, 0x21, 0xb5, 0x15, 0x9c, 0xdb, 0x02, 0x66, 0xac, 0x4b, 0xff, 0xbb, + 0x37, 0xf0, 0xde, 0x4b, 0xcd, 0x71, 0x28, 0xdb, 0xcc, 0xfb, 0x9e, 0x88, 0xb5, 0xd1, 0x38, 0x86, + 0x2c, 0xd7, 0x6c, 0x03, 0x0e, 0xe3, 0xf1, 0x7e, 0x89, 0xb8, 0xbe, 0x60, 0xfc, 0x5e, 0x2a, 0x4e, + 0x2f, 0x1e, 0x8f, 0x17, 0x8f, 0xbb, 0xcb, 0xc6, 0xd7, 0xfd, 0x62, 0x2b, 0xd3, 0x0d, 0x2e, 0xc4, + 0x6a, 0xa6, 0x84, 0x6b, 0xa4, 0x6e, 0x27, 0x3c, 0xb7, 0xc3, 0x38, 0x33, 0x2e, 0xc3, 0x64, 0x0e, + 0x69, 0xc5, 0x0e, 0x65, 0x25, 0x0f, 0x61, 0x2d, 0x1c, 0xba, 0x4a, 0x1f, 0xb2, 0x5a, 0x3b, 0x54, + 0xb5, 0x76, 0x88, 0x6a, 0xe7, 0xd0, 0xd4, 0xef, 0x18, 0x92, 0xd8, 0x21, 0xa8, 0x85, 0x9a, 0x26, + 0xa1, 0x1a, 0x26, 0x83, 0x2a, 0xd7, 0xa0, 0x2b, 0x39, 0x50, 0x6a, 0x41, 0xd2, 0xbb, 0x38, 0x55, + 0xa9, 0x1c, 0x13, 0x4f, 0x8d, 0x0a, 0x3d, 0x42, 0x8f, 0xd0, 0x23, 0xf4, 0x08, 0x3d, 0xda, 0x41, + 0xc8, 0xdb, 0x28, 0x29, 0x90, 0x03, 0x24, 0x5c, 0x38, 0x23, 0x78, 0x4e, 0x6b, 0xa3, 0x30, 0xc6, + 0x56, 0x8a, 0xee, 0xe4, 0xae, 0x60, 0xe1, 0x71, 0x2d, 0x16, 0x11, 0x48, 0x26, 0x9d, 0xdb, 0x28, + 0x64, 0xb1, 0x6d, 0x4a, 0x95, 0x05, 0x32, 0xa5, 0x82, 0x24, 0x4e, 0x9c, 0xa0, 0xa8, 0x66, 0xcc, + 0xaa, 0x1b, 0x66, 0x59, 0x74, 0xa9, 0xe4, 0xc4, 0xd4, 0x78, 0x40, 0xc2, 0x9a, 0xe8, 0x36, 0x74, + 0x1b, 0xba, 0x0d, 0xdd, 0x66, 0x51, 0xb7, 0x11, 0xd6, 0x74, 0x83, 0x84, 0xd3, 0xa8, 0x93, 0x46, + 0xf9, 0x95, 0x20, 0x0b, 0x8f, 0x47, 0x84, 0x16, 0xa1, 0x45, 0x68, 0x11, 0x5a, 0x84, 0x16, 0xef, + 0x74, 0x08, 0x7a, 0x43, 0x1c, 0x73, 0x8e, 0x2f, 0xe2, 0x98, 0x46, 0x83, 0x4f, 0x6b, 0xc4, 0x31, + 0x8d, 0x98, 0xd2, 0x02, 0xc6, 0x31, 0xd7, 0x2b, 0xaf, 0x89, 0x64, 0xfa, 0x36, 0xca, 0x09, 0x15, + 0x10, 0xe6, 0x21, 0x62, 0xe1, 0x2a, 0x20, 0x46, 0x59, 0xf9, 0x0b, 0x5c, 0xff, 0x70, 0xae, 0xe2, + 0xb8, 0x13, 0x84, 0xbd, 0xfc, 0x5c, 0x25, 0x79, 0xd4, 0x34, 0xfb, 0xee, 0x27, 0xee, 0xe6, 0xbd, + 0xa3, 0x52, 0x1b, 0x61, 0x4b, 0x80, 0x53, 0x1b, 0xe1, 0xa1, 0xc0, 0xa6, 0x36, 0xe2, 0xe1, 0xa5, + 0x31, 0x5e, 0x1b, 0x61, 0xb8, 0x6c, 0x6c, 0x66, 0x63, 0x1a, 0x2d, 0x1f, 0x13, 0x82, 0x4a, 0x31, + 0xc8, 0x94, 0x84, 0x4e, 0x0b, 0x10, 0x2a, 0x0d, 0xa5, 0xd6, 0x20, 0xd5, 0x1a, 0xb4, 0xda, 0x81, + 0x58, 0x19, 0x31, 0x65, 0x3a, 0x76, 0x29, 0x75, 0xef, 0xb2, 0xac, 0xe7, 0xea, 0x82, 0x27, 0x3b, + 0xbb, 0xd4, 0xb2, 0x19, 0x1f, 0x96, 0xe2, 0x37, 0xe2, 0xdd, 0x46, 0xb9, 0xee, 0x7f, 0xa9, 0xd0, + 0x74, 0x62, 0x9d, 0x56, 0xec, 0xd2, 0x8b, 0x0c, 0xcd, 0x08, 0xd1, 0xcd, 0x64, 0x29, 0xc5, 0xbb, + 0x84, 0x5a, 0xbc, 0xfc, 0x4b, 0xf8, 0xd2, 0x2f, 0xfa, 0x7b, 0xfd, 0x64, 0x17, 0x2f, 0x68, 0x07, + 0xa5, 0xfb, 0x5c, 0x1f, 0xa3, 0x11, 0x55, 0xf3, 0xe6, 0x62, 0x32, 0xe5, 0xe9, 0x77, 0x25, 0x98, + 0xed, 0xd4, 0x1f, 0x8c, 0x60, 0x01, 0xc1, 0x02, 0x82, 0x05, 0x04, 0x0b, 0x08, 0x16, 0x88, 0xc5, + 0x6b, 0x67, 0x36, 0xb8, 0x48, 0xdc, 0x56, 0x18, 0x92, 0x11, 0xe6, 0x08, 0x73, 0x84, 0x39, 0xc2, + 0xdc, 0x2d, 0x88, 0x9f, 0x0c, 0xd8, 0x17, 0x24, 0x41, 0x37, 0xcc, 0xb2, 0x91, 0x0d, 0x5b, 0xba, + 0x13, 0x6a, 0x7a, 0x1a, 0xdc, 0x0b, 0x55, 0x34, 0x62, 0x70, 0x80, 0x20, 0x6c, 0x13, 0x85, 0x33, + 0x84, 0xe1, 0x0c, 0x71, 0xb8, 0x41, 0x20, 0xb2, 0x44, 0x22, 0x4c, 0x28, 0x93, 0x25, 0xb6, 0x7f, + 0x2f, 0x54, 0xda, 0xe9, 0xe5, 0x51, 0x72, 0x66, 0x0b, 0xe5, 0xa7, 0x5c, 0xfe, 0x37, 0xdc, 0x50, + 0xe2, 0x81, 0x33, 0xb4, 0xe8, 0x37, 0x94, 0xdc, 0x1b, 0x32, 0xfe, 0x5d, 0x5d, 0x89, 0x84, 0x8d, + 0xe5, 0x4c, 0xea, 0x5a, 0xe4, 0x42, 0x81, 0x30, 0x57, 0xf2, 0x01, 0x8d, 0xe1, 0xb0, 0x05, 0x8f, + 0x67, 0x54, 0x88, 0x67, 0x10, 0xcf, 0x20, 0x9e, 0x01, 0x85, 0x13, 0xcf, 0x20, 0x9e, 0x41, 0x3c, + 0x83, 0x78, 0x06, 0xf1, 0x0c, 0xe2, 0x19, 0xc4, 0x33, 0x88, 0x67, 0xe0, 0x0c, 0x11, 0xcf, 0x78, + 0x54, 0x3c, 0x83, 0xeb, 0x57, 0x5d, 0xb1, 0x55, 0xd2, 0x33, 0xef, 0xd8, 0xa6, 0xeb, 0xb7, 0x5d, + 0xfe, 0xb3, 0x3f, 0xef, 0xea, 0xd4, 0xb4, 0x1b, 0xbf, 0xaa, 0x2b, 0x52, 0x4a, 0x67, 0x97, 0xf9, + 0x77, 0x75, 0xd5, 0x3c, 0x0f, 0x05, 0xba, 0x01, 0xdd, 0xce, 0x2b, 0x1d, 0x8e, 0x48, 0x72, 0xa9, + 0xab, 0x82, 0x8e, 0xe4, 0xd2, 0x02, 0x0a, 0x32, 0x92, 0x4b, 0x21, 0xfe, 0x79, 0x89, 0x5f, 0x02, + 0xb8, 0x4d, 0xb1, 0xff, 0x70, 0xee, 0xb8, 0x00, 0xf7, 0xac, 0xb5, 0xc4, 0x31, 0xa0, 0xe8, 0xf1, + 0x9f, 0x38, 0xf9, 0x57, 0x20, 0x7f, 0xc8, 0x1f, 0xf2, 0x2f, 0x14, 0xf9, 0xd3, 0x86, 0x82, 0x36, + 0x14, 0x7e, 0x6a, 0x45, 0x1b, 0xb4, 0x61, 0x91, 0x3e, 0x6c, 0xd1, 0x88, 0x75, 0x3a, 0xb1, 0x4e, + 0x2b, 0x76, 0xe9, 0x45, 0x86, 0x66, 0x84, 0xe8, 0x66, 0xb2, 0x94, 0xb4, 0xa1, 0xf0, 0xd8, 0x50, + 0x08, 0x77, 0x14, 0x26, 0xdc, 0x21, 0x70, 0xfe, 0x46, 0xcf, 0x68, 0x51, 0xbb, 0x73, 0xda, 0xde, + 0x4a, 0x46, 0x23, 0x3c, 0x5a, 0xa3, 0x69, 0x8b, 0xdc, 0xec, 0x5a, 0xe4, 0x32, 0x7d, 0xc9, 0x2b, + 0xa2, 0x0d, 0x6b, 0x20, 0x9a, 0x5b, 0xbb, 0xa9, 0x61, 0x68, 0x6e, 0xbd, 0xc8, 0x84, 0x6b, 0x5c, + 0x63, 0xdc, 0x42, 0xb0, 0xb0, 0x9d, 0xaa, 0xb6, 0xc9, 0x1d, 0x33, 0xd6, 0x10, 0x06, 0xaf, 0x64, + 0x29, 0x1d, 0x8c, 0x7c, 0x86, 0xd5, 0xd5, 0x51, 0x9d, 0x59, 0x79, 0x0a, 0x9a, 0x17, 0x98, 0x10, + 0xbb, 0x61, 0xf3, 0x77, 0x95, 0x07, 0xcd, 0x4e, 0xaf, 0xef, 0x38, 0x64, 0xe6, 0x39, 0xf1, 0xee, + 0x80, 0xdc, 0xf9, 0x00, 0x2d, 0x42, 0x8b, 0xd0, 0xa2, 0x86, 0xa5, 0x31, 0x7f, 0xe7, 0x43, 0x96, + 0x74, 0x05, 0x6f, 0x7c, 0xe8, 0x8f, 0x46, 0x96, 0x9d, 0x6b, 0xb0, 0x69, 0x01, 0x3e, 0xa5, 0x61, + 0xd4, 0x1a, 0x9c, 0x5a, 0x83, 0x55, 0x3b, 0xf0, 0x6a, 0x16, 0x66, 0x0d, 0xc3, 0xad, 0x18, 0xec, + 0xde, 0x8a, 0x83, 0xd1, 0xf0, 0xc0, 0x14, 0x30, 0xd3, 0xf0, 0xa0, 0x08, 0x80, 0x6d, 0x1d, 0xb8, + 0xad, 0x03, 0xb8, 0x5d, 0x20, 0x97, 0x01, 0x74, 0x21, 0x60, 0x17, 0x07, 0xf8, 0xc9, 0x80, 0xad, + 0xb4, 0xd3, 0xed, 0x2a, 0x8b, 0xad, 0x0e, 0xc6, 0x13, 0xa0, 0xc9, 0x41, 0xd1, 0xc8, 0xc0, 0x01, + 0x52, 0xb0, 0x4d, 0x0e, 0xce, 0x90, 0x84, 0x33, 0x64, 0xe1, 0x06, 0x69, 0xc8, 0x92, 0x87, 0x30, + 0x89, 0x4c, 0x96, 0xd8, 0x7e, 0x93, 0x83, 0x51, 0xe8, 0xf9, 0x55, 0xc5, 0x62, 0x77, 0x83, 0xd7, + 0x16, 0x86, 0x3e, 0x0c, 0x93, 0xb3, 0xfe, 0x02, 0x7c, 0xb1, 0xb2, 0xb7, 0xec, 0x60, 0xdc, 0xe0, + 0x83, 0xef, 0x45, 0x89, 0x35, 0x90, 0xb5, 0xcc, 0xed, 0x33, 0xd3, 0xf8, 0x1c, 0xc6, 0x3d, 0xe5, + 0xc0, 0x3c, 0x3e, 0xa4, 0x61, 0x33, 0x8f, 0x3a, 0xc9, 0x4e, 0x74, 0x16, 0xe5, 0x59, 0x7f, 0x42, + 0xd6, 0xe6, 0x73, 0xfd, 0xd2, 0xa2, 0x69, 0x86, 0xdf, 0x30, 0xcd, 0x3b, 0xa6, 0xb9, 0x51, 0xd9, + 0xde, 0xd8, 0xde, 0x7a, 0x5d, 0xd9, 0xde, 0xc4, 0x46, 0xed, 0xf8, 0x04, 0xf6, 0x46, 0x3d, 0x29, + 0x6a, 0xd3, 0x1f, 0xc1, 0x98, 0x53, 0x37, 0xed, 0x34, 0x55, 0x96, 0xd9, 0xd4, 0xcf, 0x37, 0x53, + 0x40, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, + 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0xda, 0x59, 0x05, 0x9d, 0xaa, 0xa6, + 0x8a, 0x2e, 0x6d, 0x0a, 0xe8, 0xc9, 0x0c, 0xd0, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, - 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0x0e, 0xeb, 0xe7, 0x3c, 0x0d, 0x93, 0xec, 0x3c, 0xca, - 0x6d, 0x2a, 0xe8, 0xc9, 0x1c, 0xd0, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, - 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x76, - 0x56, 0x43, 0x67, 0x43, 0x07, 0xd6, 0x92, 0x7a, 0x1e, 0x8c, 0x8e, 0x6e, 0x46, 0x37, 0xa3, 0x9b, - 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, - 0xcd, 0xe8, 0x66, 0x74, 0xb3, 0x83, 0x23, 0x49, 0xb5, 0x43, 0x13, 0xbe, 0x66, 0xe9, 0x3a, 0x22, - 0xe0, 0xc8, 0xf5, 0x37, 0xb7, 0x3a, 0xb8, 0x97, 0x9b, 0x59, 0xd2, 0x95, 0xb8, 0x6e, 0x49, 0xce, - 0x9a, 0xb8, 0x06, 0xac, 0x28, 0x76, 0xe9, 0xfa, 0x65, 0xe7, 0x07, 0x83, 0x39, 0xbf, 0x19, 0x4d, - 0xb9, 0xf1, 0xa6, 0x3f, 0x65, 0xee, 0x38, 0x9f, 0x59, 0x62, 0x95, 0x9d, 0xc9, 0xf5, 0x5d, 0xef, - 0x0f, 0x46, 0xdb, 0xf5, 0x47, 0x0d, 0x44, 0xdb, 0x75, 0xbd, 0xe6, 0x41, 0xdb, 0x75, 0xda, 0xae, - 0xff, 0x6c, 0xc9, 0x68, 0xbb, 0xee, 0x1d, 0x20, 0xcf, 0x02, 0x33, 0x6d, 0xd7, 0x8b, 0x00, 0xd8, - 0xd6, 0x81, 0xdb, 0x3a, 0x80, 0xdb, 0x05, 0xf2, 0x62, 0xc6, 0x19, 0x68, 0xbb, 0x2e, 0xb5, 0x6b, - 0x49, 0x3c, 0x58, 0x00, 0x52, 0xb0, 0x4d, 0x0e, 0xce, 0x90, 0x84, 0x33, 0x64, 0xe1, 0x06, 0x69, - 0xc8, 0x92, 0x87, 0x30, 0x89, 0x4c, 0x96, 0x98, 0xc4, 0x03, 0x12, 0x0f, 0x84, 0x3f, 0x38, 0x89, - 0x07, 0xd7, 0xd3, 0x20, 0xf1, 0xc0, 0x36, 0x02, 0x4e, 0x9b, 0x26, 0x89, 0x07, 0x33, 0xa6, 0x49, - 0xe2, 0x81, 0x6d, 0x9f, 0xc0, 0xde, 0xa8, 0x24, 0xec, 0xcf, 0x6f, 0xb6, 0xb4, 0x5d, 0x47, 0x41, + 0x7e, 0x76, 0x58, 0x3f, 0xe7, 0x69, 0x98, 0x64, 0x17, 0x51, 0x6e, 0x53, 0x41, 0x4f, 0xe6, 0x80, + 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, + 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0xb4, 0xb3, 0x1a, 0x3a, 0x1b, 0x3a, 0xb0, + 0x96, 0xd4, 0xf3, 0x60, 0x74, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, + 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0x1d, + 0x1c, 0x49, 0xaa, 0x1d, 0x9a, 0xf0, 0x35, 0x4b, 0x37, 0x11, 0x01, 0x47, 0xae, 0xbf, 0xb9, 0xd3, + 0xc1, 0xbd, 0xdc, 0xcc, 0x92, 0xae, 0xc4, 0x75, 0x4b, 0x72, 0xd6, 0xc4, 0x35, 0x60, 0x45, 0xb1, + 0x4b, 0xd7, 0x2f, 0x3b, 0x3f, 0x18, 0xcc, 0xf9, 0xfd, 0x68, 0xca, 0x8d, 0xf7, 0xfd, 0x29, 0x73, + 0xc7, 0xf9, 0xcc, 0x12, 0xab, 0xec, 0x5c, 0xae, 0xef, 0x7a, 0x7f, 0x30, 0xda, 0xae, 0x3f, 0x69, + 0x20, 0xda, 0xae, 0xeb, 0x35, 0x0f, 0xda, 0xae, 0xd3, 0x76, 0xfd, 0x67, 0x4b, 0x46, 0xdb, 0x75, + 0xef, 0x00, 0x79, 0x16, 0x98, 0x69, 0xbb, 0x5e, 0x04, 0xc0, 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, + 0x2e, 0x90, 0x17, 0x33, 0xce, 0x40, 0xdb, 0x75, 0xa9, 0x5d, 0x4b, 0xe2, 0xc1, 0x02, 0x90, 0x82, + 0x6d, 0x72, 0x70, 0x86, 0x24, 0x9c, 0x21, 0x0b, 0x37, 0x48, 0x43, 0x96, 0x3c, 0x84, 0x49, 0x64, + 0xb2, 0xc4, 0x24, 0x1e, 0x90, 0x78, 0x20, 0xfc, 0xc1, 0x49, 0x3c, 0xb8, 0x99, 0x06, 0x89, 0x07, + 0xb6, 0x11, 0x70, 0xda, 0x34, 0x49, 0x3c, 0x98, 0x31, 0x4d, 0x12, 0x0f, 0x6c, 0xfb, 0x04, 0xf6, + 0x46, 0x25, 0x61, 0x7f, 0x7e, 0xb3, 0xa5, 0xed, 0x3a, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, - 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0xfa, 0x21, 0x66, 0x4b, 0xdb, 0x75, 0xf4, 0x33, + 0xa0, 0x51, 0xd0, 0x8f, 0x31, 0x5b, 0xda, 0xae, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, - 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0x1f, 0xa2, 0x9f, 0x69, 0xbb, 0x8e, 0x86, 0x46, + 0x19, 0xfd, 0xfc, 0x18, 0xfd, 0x4c, 0xdb, 0x75, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, - 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0xf4, 0x43, 0xcc, 0x96, 0xb6, 0xeb, 0xe8, 0x66, 0x74, - 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, - 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0xf6, 0x4e, 0x37, 0xd3, 0x76, 0x5d, 0x47, 0x44, 0xc0, 0xd1, 0xf6, - 0xd6, 0x2a, 0x3b, 0xa3, 0xeb, 0xba, 0x33, 0x66, 0x4a, 0xd7, 0xf5, 0x6b, 0xb3, 0xf4, 0xac, 0xe9, - 0x7a, 0x2d, 0x3b, 0xa3, 0xe7, 0xfa, 0xec, 0x0a, 0x47, 0x91, 0x60, 0xcf, 0xf5, 0xfe, 0x60, 0xf4, - 0x5c, 0x7f, 0xd4, 0x40, 0xf4, 0x5c, 0xd7, 0x6b, 0x1e, 0xf4, 0x5c, 0xa7, 0xe7, 0xfa, 0xcf, 0x96, + 0xa3, 0xa1, 0x1f, 0x63, 0xb6, 0xb4, 0x5d, 0x47, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, + 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0xb3, + 0x77, 0xba, 0x99, 0xb6, 0xeb, 0x3a, 0x22, 0x02, 0x8e, 0xb6, 0xb7, 0x56, 0xd9, 0x39, 0x5d, 0xd7, + 0x9d, 0x31, 0x53, 0xba, 0xae, 0xdf, 0x98, 0xa5, 0x67, 0x4d, 0xd7, 0x6b, 0xd9, 0x39, 0x3d, 0xd7, + 0x67, 0x57, 0x38, 0x8a, 0x04, 0x7b, 0xae, 0xf7, 0x07, 0xa3, 0xe7, 0xfa, 0x93, 0x06, 0xa2, 0xe7, + 0xba, 0x5e, 0xf3, 0xa0, 0xe7, 0x3a, 0x3d, 0xd7, 0x7f, 0xb6, 0x64, 0xf4, 0x5c, 0xf7, 0x0e, 0x90, + 0x67, 0x81, 0x99, 0x9e, 0xeb, 0x45, 0x00, 0x6c, 0xeb, 0xc0, 0x6d, 0x1d, 0xc0, 0xed, 0x02, 0x79, + 0x31, 0x83, 0x0c, 0xf4, 0x5c, 0x97, 0xda, 0xb5, 0x64, 0x1d, 0x2c, 0x00, 0x29, 0xd8, 0x26, 0x07, + 0x67, 0x48, 0xc2, 0x19, 0xb2, 0x70, 0x83, 0x34, 0x64, 0xc9, 0x43, 0x98, 0x44, 0x26, 0x4b, 0x4c, + 0xd6, 0x01, 0x59, 0x07, 0xc2, 0x1f, 0x9c, 0xac, 0x83, 0x9b, 0x69, 0x90, 0x75, 0x60, 0x1b, 0x01, + 0xa7, 0x4d, 0x93, 0xac, 0x83, 0x19, 0xd3, 0x24, 0xeb, 0xc0, 0xb6, 0x4f, 0x60, 0x6f, 0x54, 0xb2, + 0xf5, 0xe7, 0x37, 0x5b, 0x7a, 0xae, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, + 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, + 0xfd, 0x18, 0xb3, 0xa5, 0xe7, 0x3a, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, + 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, + 0x8f, 0xd1, 0xcf, 0xf4, 0x5c, 0x47, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, + 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0xfa, + 0x31, 0x66, 0x4b, 0xcf, 0x75, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, + 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0x7b, 0xa7, 0x9b, + 0xe9, 0xb9, 0xae, 0x23, 0x22, 0xe0, 0x68, 0x73, 0xeb, 0x28, 0xa2, 0xe7, 0xba, 0x3b, 0x66, 0x4a, + 0xcf, 0xf5, 0x1b, 0xb3, 0xf4, 0xac, 0xe7, 0x7a, 0x3d, 0xa2, 0xe7, 0xfa, 0x3d, 0x2b, 0x1c, 0x65, + 0x92, 0x3d, 0xd7, 0x33, 0x7a, 0xae, 0x3f, 0x71, 0x20, 0x7a, 0xae, 0xeb, 0x35, 0x0f, 0x7a, 0xae, + 0xd3, 0x73, 0xfd, 0x67, 0x4b, 0x46, 0xcf, 0x75, 0xef, 0x00, 0x79, 0x16, 0x98, 0xe9, 0xb9, 0x5e, + 0x04, 0xc0, 0xb6, 0x0e, 0xdc, 0xd6, 0x01, 0xdc, 0x2e, 0x90, 0x17, 0x33, 0xc8, 0x40, 0xcf, 0x75, + 0xa9, 0x5d, 0x4b, 0xd6, 0xc1, 0x02, 0x90, 0x82, 0x6d, 0x72, 0x70, 0x86, 0x24, 0x9c, 0x21, 0x0b, + 0x37, 0x48, 0x43, 0x96, 0x3c, 0x84, 0x49, 0x64, 0xb2, 0xc4, 0x64, 0x1d, 0x90, 0x75, 0x20, 0xfc, + 0xc1, 0xc9, 0x3a, 0xb8, 0x99, 0x06, 0x59, 0x07, 0xb6, 0x11, 0x70, 0xda, 0x34, 0xc9, 0x3a, 0x98, + 0x31, 0x4d, 0xb2, 0x0e, 0x6c, 0xfb, 0x04, 0xf6, 0x46, 0x25, 0x5b, 0x7f, 0x7e, 0xb3, 0xa5, 0xe7, + 0x3a, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, + 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x8f, 0x31, 0x5b, 0x7a, 0xae, + 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, + 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0xfc, 0x18, 0xfd, 0x4c, 0xcf, 0x75, + 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, + 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0x1f, 0x63, 0xb6, 0xf4, 0x5c, 0x47, + 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, + 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0xb3, 0x77, 0xba, 0x99, 0x9e, 0xeb, 0x3a, 0x22, 0x02, + 0xae, 0x36, 0xb7, 0xce, 0xe8, 0xb9, 0xee, 0x8e, 0x99, 0xd2, 0x73, 0xfd, 0xc6, 0x2c, 0x7d, 0xeb, + 0xb9, 0x9e, 0xd1, 0x73, 0xfd, 0x9e, 0x15, 0x8e, 0xb3, 0xae, 0x5c, 0xcf, 0xf5, 0xfe, 0x60, 0xf4, + 0x5c, 0x7f, 0xd2, 0x40, 0xf4, 0x5c, 0xd7, 0x6b, 0x1e, 0xf4, 0x5c, 0xa7, 0xe7, 0xfa, 0xcf, 0x96, 0x8c, 0x9e, 0xeb, 0xde, 0x01, 0xf2, 0x2c, 0x30, 0xd3, 0x73, 0xbd, 0x08, 0x80, 0x6d, 0x1d, 0xb8, 0xad, 0x03, 0xb8, 0x5d, 0x20, 0x2f, 0x66, 0x90, 0x81, 0x9e, 0xeb, 0x52, 0xbb, 0x96, 0xac, 0x83, 0x05, 0x20, 0x05, 0xdb, 0xe4, 0xe0, 0x0c, 0x49, 0x38, 0x43, 0x16, 0x6e, 0x90, 0x86, 0x2c, 0x79, - 0x08, 0x93, 0xc8, 0x64, 0x89, 0xc9, 0x3a, 0x20, 0xeb, 0x40, 0xf8, 0x83, 0x93, 0x75, 0x70, 0x3d, + 0x08, 0x93, 0xc8, 0x64, 0x89, 0xc9, 0x3a, 0x20, 0xeb, 0x40, 0xf8, 0x83, 0x93, 0x75, 0x70, 0x33, 0x0d, 0xb2, 0x0e, 0x6c, 0x23, 0xe0, 0xb4, 0x69, 0x92, 0x75, 0x30, 0x63, 0x9a, 0x64, 0x1d, 0xd8, 0xf6, 0x09, 0xec, 0x8d, 0x4a, 0xb6, 0xfe, 0xfc, 0x66, 0x4b, 0xcf, 0x75, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, - 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x1f, 0x62, 0xb6, 0xf4, 0x5c, 0x47, 0x3f, 0xa3, 0x9f, 0xd1, + 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x1f, 0x63, 0xb6, 0xf4, 0x5c, 0x47, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, - 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0xf9, 0x21, 0xfa, 0x99, 0x9e, 0xeb, 0x68, 0x68, 0x34, 0x34, 0x1a, + 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0xf9, 0x31, 0xfa, 0x99, 0x9e, 0xeb, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, - 0x0d, 0x8d, 0x86, 0x46, 0x43, 0x3f, 0xc4, 0x6c, 0xe9, 0xb9, 0x8e, 0x6e, 0x46, 0x37, 0xa3, 0x9b, - 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, - 0xcd, 0xe8, 0x66, 0xef, 0x74, 0x33, 0x3d, 0xd7, 0x75, 0x44, 0x04, 0x1c, 0x6d, 0x6e, 0x1d, 0x45, - 0xf4, 0x5c, 0x77, 0xc7, 0x4c, 0xe9, 0xb9, 0x7e, 0x6d, 0x96, 0x9e, 0xf5, 0x5c, 0xaf, 0x47, 0xf4, - 0x5c, 0xbf, 0x63, 0x85, 0xa3, 0x4c, 0xb2, 0xe7, 0x7a, 0x46, 0xcf, 0xf5, 0x47, 0x0e, 0x44, 0xcf, - 0x75, 0xbd, 0xe6, 0x41, 0xcf, 0x75, 0x7a, 0xae, 0xff, 0x6c, 0xc9, 0xe8, 0xb9, 0xee, 0x1d, 0x20, - 0xcf, 0x02, 0x33, 0x3d, 0xd7, 0x8b, 0x00, 0xd8, 0xd6, 0x81, 0xdb, 0x3a, 0x80, 0xdb, 0x05, 0xf2, - 0x62, 0x06, 0x19, 0xe8, 0xb9, 0x2e, 0xb5, 0x6b, 0xc9, 0x3a, 0x58, 0x00, 0x52, 0xb0, 0x4d, 0x0e, - 0xce, 0x90, 0x84, 0x33, 0x64, 0xe1, 0x06, 0x69, 0xc8, 0x92, 0x87, 0x30, 0x89, 0x4c, 0x96, 0x98, - 0xac, 0x03, 0xb2, 0x0e, 0x84, 0x3f, 0x38, 0x59, 0x07, 0xd7, 0xd3, 0x20, 0xeb, 0xc0, 0x36, 0x02, - 0x4e, 0x9b, 0x26, 0x59, 0x07, 0x33, 0xa6, 0x49, 0xd6, 0x81, 0x6d, 0x9f, 0xc0, 0xde, 0xa8, 0x64, - 0xeb, 0xcf, 0x6f, 0xb6, 0xf4, 0x5c, 0x47, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, - 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, - 0xfa, 0x21, 0x66, 0x4b, 0xcf, 0x75, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, - 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, - 0x1f, 0xa2, 0x9f, 0xe9, 0xb9, 0x8e, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, - 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0xf4, - 0x43, 0xcc, 0x96, 0x9e, 0xeb, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, - 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0xf6, 0x4e, 0x37, - 0xd3, 0x73, 0x5d, 0x47, 0x44, 0xc0, 0xd5, 0xe6, 0xd6, 0x19, 0x3d, 0xd7, 0xdd, 0x31, 0x53, 0x7a, - 0xae, 0x5f, 0x9b, 0xa5, 0x6f, 0x3d, 0xd7, 0x33, 0x7a, 0xae, 0xdf, 0xb1, 0xc2, 0x71, 0xd6, 0x95, - 0xeb, 0xb9, 0xde, 0x1f, 0x8c, 0x9e, 0xeb, 0x8f, 0x1a, 0x88, 0x9e, 0xeb, 0x7a, 0xcd, 0x83, 0x9e, - 0xeb, 0xf4, 0x5c, 0xff, 0xd9, 0x92, 0xd1, 0x73, 0xdd, 0x3b, 0x40, 0x9e, 0x05, 0x66, 0x7a, 0xae, - 0x17, 0x01, 0xb0, 0xad, 0x03, 0xb7, 0x75, 0x00, 0xb7, 0x0b, 0xe4, 0xc5, 0x0c, 0x32, 0xd0, 0x73, - 0x5d, 0x6a, 0xd7, 0x92, 0x75, 0xb0, 0x00, 0xa4, 0x60, 0x9b, 0x1c, 0x9c, 0x21, 0x09, 0x67, 0xc8, - 0xc2, 0x0d, 0xd2, 0x90, 0x25, 0x0f, 0x61, 0x12, 0x99, 0x2c, 0x31, 0x59, 0x07, 0x64, 0x1d, 0x08, - 0x7f, 0x70, 0xb2, 0x0e, 0xae, 0xa7, 0x41, 0xd6, 0x81, 0x6d, 0x04, 0x9c, 0x36, 0x4d, 0xb2, 0x0e, - 0x66, 0x4c, 0x93, 0xac, 0x03, 0xdb, 0x3e, 0x81, 0xbd, 0x51, 0xc9, 0xd6, 0x9f, 0xdf, 0x6c, 0xe9, - 0xb9, 0x8e, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, - 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0xf4, 0x43, 0xcc, 0x96, 0x9e, - 0xeb, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, - 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0x3f, 0x44, 0x3f, 0xd3, 0x73, - 0x1d, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, - 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0xe8, 0x87, 0x98, 0x2d, 0x3d, 0xd7, + 0x0d, 0x8d, 0x86, 0x46, 0x43, 0x3f, 0xc6, 0x6c, 0xe9, 0xb9, 0x8e, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, - 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0xec, 0x9d, 0x6e, 0xa6, 0xe7, 0xba, 0x8e, 0x88, - 0x80, 0xa3, 0xcd, 0xad, 0xe3, 0xac, 0x4b, 0xcf, 0x75, 0x67, 0xcc, 0x94, 0x9e, 0xeb, 0xd7, 0x66, - 0xe9, 0x59, 0xcf, 0xf5, 0xbd, 0xac, 0x4b, 0xcf, 0xf5, 0xd9, 0x15, 0xee, 0x66, 0x89, 0x60, 0xd3, - 0xf5, 0xc1, 0x68, 0x74, 0x5d, 0x7f, 0xd4, 0x40, 0x74, 0x5d, 0xd7, 0x6b, 0x1e, 0x74, 0x5d, 0xa7, - 0xeb, 0xfa, 0xcf, 0x96, 0x8c, 0xae, 0xeb, 0xde, 0x01, 0xf2, 0x2c, 0x30, 0xd3, 0x75, 0xbd, 0x08, - 0x80, 0x6d, 0x1d, 0xb8, 0xad, 0x03, 0xb8, 0x5d, 0x20, 0x2f, 0x66, 0x98, 0x81, 0xae, 0xeb, 0x52, - 0xbb, 0x96, 0xbc, 0x83, 0x05, 0x20, 0x05, 0xdb, 0xe4, 0xe0, 0x0c, 0x49, 0x38, 0x43, 0x16, 0x6e, - 0x90, 0x86, 0x2c, 0x79, 0x08, 0x93, 0xc8, 0x64, 0x89, 0xc9, 0x3b, 0x20, 0xef, 0x40, 0xf8, 0x83, - 0x93, 0x77, 0x70, 0x3d, 0x0d, 0xf2, 0x0e, 0x6c, 0x23, 0xe0, 0xb4, 0x69, 0x92, 0x77, 0x30, 0x63, - 0x9a, 0xe4, 0x1d, 0xd8, 0xf6, 0x09, 0xec, 0x8d, 0x4a, 0xbe, 0xfe, 0xfc, 0x66, 0x4b, 0xd7, 0x75, + 0xcd, 0xe8, 0x66, 0xef, 0x74, 0x33, 0x3d, 0xd7, 0x75, 0x44, 0x04, 0x1c, 0x6d, 0x6e, 0x1d, 0x67, + 0x5d, 0x7a, 0xae, 0x3b, 0x63, 0xa6, 0xf4, 0x5c, 0xbf, 0x31, 0x4b, 0xcf, 0x7a, 0xae, 0xef, 0x66, + 0x5d, 0x7a, 0xae, 0xcf, 0xae, 0x70, 0x37, 0x4b, 0x04, 0x9b, 0xae, 0x0f, 0x46, 0xa3, 0xeb, 0xfa, + 0x93, 0x06, 0xa2, 0xeb, 0xba, 0x5e, 0xf3, 0xa0, 0xeb, 0x3a, 0x5d, 0xd7, 0x7f, 0xb6, 0x64, 0x74, + 0x5d, 0xf7, 0x0e, 0x90, 0x67, 0x81, 0x99, 0xae, 0xeb, 0x45, 0x00, 0x6c, 0xeb, 0xc0, 0x6d, 0x1d, + 0xc0, 0xed, 0x02, 0x79, 0x31, 0xc3, 0x0c, 0x74, 0x5d, 0x97, 0xda, 0xb5, 0xe4, 0x1d, 0x2c, 0x00, + 0x29, 0xd8, 0x26, 0x07, 0x67, 0x48, 0xc2, 0x19, 0xb2, 0x70, 0x83, 0x34, 0x64, 0xc9, 0x43, 0x98, + 0x44, 0x26, 0x4b, 0x4c, 0xde, 0x01, 0x79, 0x07, 0xc2, 0x1f, 0x9c, 0xbc, 0x83, 0x9b, 0x69, 0x90, + 0x77, 0x60, 0x1b, 0x01, 0xa7, 0x4d, 0x93, 0xbc, 0x83, 0x19, 0xd3, 0x24, 0xef, 0xc0, 0xb6, 0x4f, + 0x60, 0x6f, 0x54, 0xf2, 0xf5, 0xe7, 0x37, 0x5b, 0xba, 0xae, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, - 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, 0x1f, 0x62, 0xb6, 0x74, 0x5d, 0x47, + 0x34, 0x0a, 0x1a, 0x05, 0xfd, 0x18, 0xb3, 0xa5, 0xeb, 0x3a, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, - 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0xf9, 0x21, 0xfa, 0x99, 0xae, 0xeb, 0x68, + 0xa3, 0x9f, 0xd1, 0xcf, 0x8f, 0xd1, 0xcf, 0x74, 0x5d, 0x47, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, - 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0x3f, 0xc4, 0x6c, 0xe9, 0xba, 0x8e, 0x6e, + 0x34, 0x34, 0x1a, 0xfa, 0x31, 0x66, 0x4b, 0xd7, 0x75, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, - 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0xef, 0x74, 0x33, 0x5d, 0xd7, 0x75, 0x44, 0x04, 0x1c, - 0x6d, 0x6f, 0xdd, 0xcd, 0x12, 0xda, 0xae, 0xbb, 0x63, 0xa7, 0xb4, 0x5d, 0xbf, 0x61, 0x97, 0x9e, - 0xf5, 0x5d, 0x3f, 0xe8, 0x4f, 0x99, 0xc6, 0xeb, 0x33, 0x4b, 0xdc, 0x4b, 0xbe, 0x26, 0x9d, 0x3f, - 0x13, 0xb9, 0xde, 0xeb, 0xe3, 0x01, 0x69, 0xbf, 0xfe, 0xa8, 0x81, 0x68, 0xbf, 0xae, 0xd7, 0x3c, - 0x68, 0xbf, 0x4e, 0xfb, 0xf5, 0x9f, 0x2d, 0x19, 0xed, 0xd7, 0xbd, 0x03, 0xe4, 0x59, 0x60, 0xa6, - 0xfd, 0x7a, 0x11, 0x00, 0xdb, 0x3a, 0x70, 0x5b, 0x07, 0x70, 0xbb, 0x40, 0x5e, 0xcc, 0x78, 0x03, - 0xed, 0xd7, 0xa5, 0x76, 0x2d, 0x09, 0x08, 0x0b, 0x40, 0x0a, 0xb6, 0xc9, 0xc1, 0x19, 0x92, 0x70, - 0x86, 0x2c, 0xdc, 0x20, 0x0d, 0x59, 0xf2, 0x10, 0x26, 0x91, 0xc9, 0x12, 0x93, 0x80, 0x40, 0x02, - 0x82, 0xf0, 0x07, 0x27, 0x01, 0xe1, 0x7a, 0x1a, 0x24, 0x20, 0xd8, 0x46, 0xc0, 0x69, 0xd3, 0x24, - 0x01, 0x61, 0xc6, 0x34, 0x49, 0x40, 0xb0, 0xed, 0x13, 0xd8, 0x1b, 0x95, 0xc4, 0xfd, 0xf9, 0xcd, - 0x96, 0xf6, 0xeb, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0xa3, 0xa0, - 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, 0x3f, 0xc4, 0x6c, - 0x69, 0xbf, 0x8e, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, 0xfa, 0x19, - 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0xf3, 0x43, 0xf4, 0x33, - 0xed, 0xd7, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, 0x43, 0xa3, - 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x7e, 0x88, 0xd9, 0xd2, - 0x7e, 0x1d, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, 0x33, 0xba, - 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xde, 0xe9, 0x66, 0xda, 0xaf, 0xeb, - 0x88, 0x08, 0x38, 0xda, 0xe6, 0x7a, 0xd4, 0xaa, 0x98, 0x0e, 0xec, 0xce, 0x98, 0x2a, 0x1d, 0xd8, - 0xa7, 0x4d, 0xd3, 0xb3, 0x26, 0xec, 0x1f, 0x47, 0xb3, 0xf6, 0xb5, 0x0f, 0xfb, 0x33, 0x8f, 0xb6, - 0x8c, 0xd4, 0x56, 0x71, 0x75, 0x8b, 0x18, 0xdc, 0x1a, 0x1a, 0xb7, 0x84, 0x99, 0xad, 0xa0, 0xdf, - 0x50, 0x0d, 0x18, 0xa9, 0xe1, 0xae, 0xd7, 0x22, 0x5d, 0xae, 0x0d, 0x77, 0xb5, 0x36, 0xde, 0xc5, - 0x5a, 0x22, 0x54, 0x2f, 0x18, 0x92, 0x97, 0x0a, 0xbd, 0x8b, 0x87, 0xd8, 0xc5, 0x43, 0xe9, 0xb2, - 0x21, 0x73, 0xbf, 0x88, 0xd5, 0x74, 0xd7, 0xe8, 0x92, 0x4a, 0xc2, 0x93, 0x58, 0xa0, 0x48, 0x77, - 0xb2, 0x33, 0xc7, 0x03, 0x9a, 0xbe, 0x4f, 0x41, 0xb5, 0xc3, 0x5e, 0x3c, 0x30, 0xa9, 0x76, 0x18, - 0x67, 0x4a, 0xe8, 0x0e, 0x98, 0x35, 0xee, 0x80, 0x71, 0x19, 0xb4, 0xa5, 0xc1, 0xdb, 0x1a, 0x88, - 0x5b, 0x03, 0x73, 0x3b, 0xa0, 0x5e, 0x8c, 0x80, 0x83, 0xd8, 0xb9, 0xe6, 0x64, 0xc7, 0x9d, 0x74, - 0x3a, 0xb1, 0x0a, 0x45, 0xa4, 0xfd, 0xd8, 0x7b, 0x5d, 0xe7, 0x62, 0xb4, 0x99, 0xb5, 0x19, 0x88, - 0xca, 0x20, 0xe9, 0x9d, 0x9f, 0xa8, 0x54, 0x8e, 0x89, 0xa7, 0x46, 0x85, 0x1e, 0xa1, 0x47, 0xe8, - 0x11, 0x7a, 0x84, 0x1e, 0xed, 0x20, 0xe4, 0x4d, 0x94, 0x14, 0x38, 0xb4, 0x16, 0xce, 0xe4, 0x11, - 0x3c, 0xe0, 0xb3, 0x91, 0xa9, 0x63, 0x2b, 0xeb, 0x76, 0x9c, 0xee, 0xb0, 0x2e, 0x3c, 0xae, 0xc5, - 0xac, 0x06, 0xc9, 0xec, 0x71, 0x1b, 0x99, 0x35, 0xb6, 0x4d, 0xa9, 0xb2, 0x40, 0xa6, 0x54, 0x90, - 0x53, 0xf6, 0x63, 0x14, 0xd5, 0x8c, 0x59, 0x75, 0xc3, 0x2c, 0x8b, 0x2e, 0x94, 0x9c, 0x98, 0x1a, - 0x0f, 0x48, 0x58, 0x13, 0xdd, 0x86, 0x6e, 0x43, 0xb7, 0xa1, 0xdb, 0x2c, 0xea, 0x36, 0xc2, 0x9a, - 0x6e, 0x90, 0x70, 0x1a, 0x75, 0xd2, 0x28, 0xbf, 0x14, 0x64, 0xe1, 0xf1, 0x88, 0xd0, 0x22, 0xb4, - 0x08, 0x2d, 0x42, 0x8b, 0xd0, 0xe2, 0x8d, 0x1d, 0xd7, 0x8b, 0x92, 0xfc, 0x25, 0x71, 0xcc, 0x39, - 0xbe, 0x88, 0x63, 0x1a, 0x0d, 0x3e, 0xad, 0x11, 0xc7, 0x34, 0x62, 0x4a, 0x0b, 0x18, 0xc7, 0x5c, - 0xaf, 0x6c, 0x13, 0xc9, 0xf4, 0x6d, 0x94, 0x63, 0x8a, 0x35, 0xcc, 0x43, 0xc4, 0xc2, 0x15, 0x6b, - 0x18, 0x2c, 0xa9, 0xf3, 0xa3, 0xf8, 0x21, 0x8f, 0xce, 0x55, 0x9a, 0x99, 0xaf, 0x7e, 0x18, 0x8d, - 0xe3, 0x79, 0xf9, 0xc3, 0x1a, 0xe5, 0x0f, 0x0e, 0x69, 0x6a, 0xca, 0x1f, 0x16, 0x99, 0xaa, 0x8c, - 0x97, 0x3f, 0x34, 0xc7, 0xbb, 0x5e, 0x28, 0x40, 0x39, 0x1a, 0x4f, 0x26, 0x3c, 0xb9, 0x4e, 0x78, - 0xd2, 0x65, 0x08, 0x95, 0x86, 0x52, 0x6b, 0x90, 0x6a, 0x0d, 0x5a, 0xed, 0x40, 0xac, 0x8c, 0x5e, - 0x32, 0x1d, 0x9e, 0x34, 0x0d, 0xbd, 0x93, 0x81, 0xce, 0x54, 0x1c, 0x77, 0x82, 0x81, 0xef, 0x7e, - 0x11, 0xc6, 0x72, 0xbb, 0x60, 0xbc, 0xd1, 0x6f, 0x8d, 0x2f, 0x64, 0x91, 0xb2, 0xe1, 0x11, 0xf1, - 0xfe, 0x9c, 0x36, 0xfa, 0x72, 0x5a, 0xec, 0xc7, 0x69, 0xab, 0x0f, 0xa7, 0xf5, 0xfe, 0x9b, 0xd6, - 0xfb, 0x6e, 0xda, 0xed, 0xb7, 0x59, 0xac, 0x9e, 0x4c, 0xe2, 0x7d, 0x35, 0xa7, 0x4e, 0xa6, 0x44, - 0x9b, 0x69, 0x5a, 0x68, 0xa2, 0x69, 0xa9, 0x79, 0xa6, 0x85, 0x2e, 0xa9, 0x36, 0x9b, 0x65, 0x5a, - 0xee, 0x44, 0x68, 0xbb, 0x39, 0xa6, 0x0b, 0x0d, 0x07, 0x2d, 0x34, 0xc3, 0xb4, 0xda, 0x04, 0xd3, - 0x15, 0x93, 0xb3, 0xdd, 0xf4, 0xd2, 0x09, 0xdb, 0x2b, 0x68, 0xf3, 0xc7, 0xe3, 0xa2, 0x74, 0x04, - 0x7c, 0x2e, 0x25, 0x28, 0xcf, 0x7b, 0x71, 0x1e, 0x75, 0xe3, 0x48, 0xa5, 0xb6, 0x24, 0xe5, 0x8d, - 0x19, 0x20, 0x2a, 0x11, 0x95, 0x88, 0x4a, 0x44, 0x25, 0xa2, 0x52, 0x58, 0x54, 0xbe, 0xb4, 0xa0, - 0x29, 0x37, 0xd1, 0x94, 0x68, 0x4a, 0x34, 0x25, 0x9a, 0xb2, 0x00, 0x26, 0x57, 0xd9, 0x44, 0x4c, - 0x22, 0x26, 0x5d, 0x15, 0x93, 0xb4, 0x97, 0x7f, 0xc4, 0x78, 0xae, 0xa4, 0x63, 0x0e, 0xb3, 0x04, - 0xcb, 0xa3, 0x4c, 0x18, 0xca, 0x26, 0x67, 0x5f, 0x94, 0xd1, 0x5e, 0xd5, 0x33, 0x6e, 0xb2, 0xc9, - 0x9e, 0xd5, 0xb7, 0xe9, 0x4c, 0x2c, 0x23, 0xa9, 0x42, 0x46, 0x92, 0x47, 0x91, 0x07, 0x32, 0x92, - 0xc8, 0x48, 0xfa, 0xf9, 0x92, 0x91, 0x91, 0x54, 0x20, 0xc5, 0x41, 0xf0, 0xb8, 0x58, 0x10, 0x6e, - 0x1d, 0xca, 0xad, 0x43, 0xba, 0x5d, 0x68, 0x97, 0x55, 0x91, 0x64, 0x24, 0x19, 0xc3, 0x5f, 0x32, - 0x92, 0x0c, 0x7c, 0x50, 0xa2, 0xc7, 0x44, 0x8f, 0xa5, 0x4d, 0x8e, 0xe8, 0x31, 0x19, 0x49, 0x04, - 0x91, 0x9d, 0xff, 0x3c, 0x64, 0x24, 0x21, 0x2a, 0x11, 0x95, 0x88, 0x4a, 0x44, 0x25, 0xa2, 0x52, - 0x42, 0x54, 0x92, 0x91, 0x84, 0xa6, 0x44, 0x53, 0xa2, 0x29, 0xd1, 0x94, 0x4f, 0x33, 0x39, 0x32, - 0x92, 0x10, 0x93, 0xee, 0x8a, 0x49, 0x32, 0x92, 0x1e, 0x31, 0x9e, 0x63, 0x19, 0x49, 0x06, 0xfb, - 0xc4, 0x99, 0xb7, 0x0f, 0x5a, 0x10, 0xba, 0x6f, 0x61, 0x25, 0xa3, 0x49, 0x63, 0x69, 0xaf, 0x99, - 0x27, 0x23, 0xa1, 0xf1, 0x6e, 0x38, 0xf5, 0xfa, 0x68, 0xe6, 0x8d, 0x83, 0xd1, 0x7c, 0x1b, 0xf5, - 0x2c, 0xca, 0x1a, 0xf5, 0xf1, 0x24, 0x1b, 0x7b, 0xfd, 0xd9, 0x35, 0x8e, 0x86, 0xb3, 0xf3, 0xa5, - 0x43, 0xe2, 0x33, 0x87, 0x2d, 0xbc, 0xf4, 0xbb, 0xba, 0x34, 0x7c, 0x73, 0x60, 0x69, 0x2f, 0xca, - 0xf2, 0x6a, 0x9e, 0x9b, 0x89, 0x22, 0xf6, 0x65, 0x4d, 0x2d, 0x56, 0xe7, 0x2a, 0x19, 0xb8, 0x38, - 0x49, 0x2f, 0x8e, 0x0d, 0x74, 0xa4, 0xdc, 0x0f, 0xbf, 0x99, 0x1f, 0xe4, 0x7d, 0xda, 0x52, 0xa9, - 0x6a, 0xbd, 0xbe, 0x1c, 0x0d, 0xe1, 0xb4, 0xdd, 0x18, 0x46, 0x44, 0x57, 0x90, 0xd0, 0x00, 0x04, - 0xce, 0x03, 0x7d, 0x7a, 0x31, 0x4f, 0x1f, 0x32, 0xe9, 0x79, 0x92, 0x26, 0x1b, 0x35, 0x65, 0x9b, - 0xf6, 0x6d, 0x52, 0xcf, 0xeb, 0x9f, 0xff, 0x65, 0x69, 0x78, 0x51, 0xa5, 0xf3, 0x6e, 0xac, 0xaf, - 0xc5, 0xef, 0x24, 0x62, 0x39, 0x78, 0xaa, 0x26, 0x33, 0xd2, 0x9b, 0x03, 0xae, 0xfd, 0xac, 0xc7, - 0xc4, 0x59, 0x8e, 0xc1, 0xb3, 0x1a, 0x53, 0x67, 0x31, 0xc6, 0xcf, 0x5a, 0x8c, 0x9f, 0xa5, 0x98, - 0x3d, 0x2b, 0x71, 0x0b, 0x9a, 0x75, 0xe7, 0x44, 0x97, 0xa2, 0xd3, 0x6e, 0x10, 0xb7, 0xba, 0x41, - 0x76, 0x99, 0x34, 0xf5, 0xdb, 0xd6, 0x78, 0x3b, 0x4c, 0x8d, 0xa2, 0xdb, 0x03, 0x37, 0x52, 0x6a, - 0x62, 0xec, 0x68, 0xd9, 0xe4, 0x11, 0xb2, 0xc0, 0x51, 0xb1, 0xe9, 0x23, 0x61, 0xb1, 0xa3, 0x5f, - 0xb1, 0x23, 0x5e, 0x99, 0xa3, 0x5c, 0xb7, 0x55, 0xb2, 0xa9, 0x52, 0x0e, 0xd3, 0xfd, 0xbc, 0x65, - 0xfa, 0x78, 0x73, 0xd5, 0x81, 0x13, 0xd0, 0x26, 0x05, 0x71, 0xe2, 0x50, 0x27, 0x0e, 0x79, 0xb2, - 0xd0, 0x67, 0x2e, 0xf4, 0xb8, 0xe4, 0xf3, 0x55, 0x07, 0x2a, 0x09, 0x4f, 0x62, 0xd5, 0x92, 0x2b, - 0x2c, 0x1e, 0x0f, 0x28, 0x77, 0x25, 0x7a, 0xdf, 0x82, 0xb9, 0xfa, 0xd5, 0x39, 0xac, 0xb6, 0x80, - 0xd9, 0xd2, 0xd8, 0x6d, 0x0d, 0xc3, 0xad, 0x61, 0xb9, 0x1d, 0x4c, 0x37, 0x8b, 0xed, 0x86, 0x31, - 0x7e, 0xb2, 0x64, 0xdc, 0x88, 0xee, 0xb0, 0x01, 0x18, 0xbd, 0x11, 0xbd, 0x93, 0xe5, 0x41, 0xa6, - 0xb2, 0x2c, 0xea, 0x24, 0x41, 0xaf, 0x1b, 0xb4, 0x54, 0x1c, 0x4a, 0x5e, 0x8f, 0x7e, 0xe7, 0xf0, - 0x10, 0x26, 0x84, 0x09, 0x61, 0x42, 0x98, 0x10, 0xe6, 0xad, 0x54, 0xfd, 0xf5, 0x2d, 0x41, 0xbe, - 0xdc, 0xe2, 0xb2, 0xf4, 0xa7, 0x7f, 0x30, 0x2e, 0x4b, 0x37, 0x3f, 0x2e, 0x97, 0xa5, 0x17, 0xd6, - 0x94, 0xb6, 0x36, 0x37, 0x5f, 0x6c, 0x72, 0x5d, 0xba, 0x6f, 0xa3, 0x70, 0x5d, 0xba, 0x00, 0x48, - 0x2c, 0x42, 0xae, 0xf2, 0x79, 0x37, 0xce, 0xca, 0x37, 0xcf, 0xe4, 0x8d, 0x76, 0xe7, 0xf4, 0xe3, - 0xd2, 0x74, 0xb3, 0x5d, 0x38, 0x45, 0xba, 0x6f, 0x8a, 0x9d, 0x23, 0x56, 0x38, 0x47, 0x74, 0x48, - 0x5a, 0x73, 0x8e, 0xb8, 0xc8, 0x74, 0xc5, 0x39, 0xe2, 0x53, 0x17, 0x8e, 0x73, 0x44, 0xc7, 0xb1, - 0xda, 0x02, 0x66, 0x4b, 0x63, 0xb7, 0x35, 0x0c, 0xb7, 0x86, 0xe5, 0x76, 0x30, 0x5d, 0x46, 0xa4, - 0x71, 0x8e, 0xa8, 0xc1, 0x79, 0xe5, 0x1c, 0x71, 0x76, 0x6d, 0x38, 0x47, 0x84, 0x30, 0x21, 0x4c, - 0x08, 0x13, 0xc2, 0x74, 0x9d, 0x30, 0x39, 0x47, 0x9c, 0xfb, 0x8b, 0x73, 0x44, 0x23, 0xc3, 0x72, - 0x8e, 0x68, 0xd6, 0x94, 0x38, 0x47, 0x2c, 0xbc, 0x39, 0x71, 0x8e, 0x68, 0x57, 0x61, 0x71, 0x8e, - 0x78, 0xc7, 0x38, 0x4e, 0x9d, 0x23, 0x1a, 0xec, 0xa9, 0xb5, 0x68, 0x9d, 0x85, 0x0a, 0xdc, 0x21, - 0x66, 0xc6, 0x6e, 0xdc, 0x69, 0x13, 0xb3, 0xdf, 0x8d, 0xb3, 0x46, 0xfd, 0xb4, 0xbb, 0xd7, 0xea, - 0x7e, 0xe8, 0x4f, 0x8c, 0x86, 0x31, 0xf6, 0x4c, 0xd5, 0xb6, 0x89, 0xea, 0xec, 0xde, 0xf1, 0x74, - 0x6b, 0x2c, 0x52, 0xd3, 0x1a, 0xbd, 0x49, 0x16, 0x46, 0x92, 0x2a, 0x8c, 0xb5, 0xad, 0xa9, 0xd0, - 0xb6, 0xc6, 0xa7, 0xf8, 0x1f, 0x6d, 0x6b, 0x5c, 0x6e, 0x5b, 0xd3, 0x8c, 0xd2, 0x66, 0x2f, 0xca, - 0x83, 0xdc, 0x44, 0x80, 0xef, 0xba, 0xeb, 0xc3, 0xcd, 0x51, 0xcc, 0xb4, 0xad, 0x59, 0xa3, 0x6d, - 0x0d, 0x6d, 0x6b, 0x5c, 0x82, 0x25, 0x19, 0x78, 0xf2, 0x43, 0x82, 0x19, 0x3b, 0x3e, 0x90, 0x40, - 0x98, 0x29, 0x67, 0x66, 0xc3, 0xc0, 0xb3, 0x6b, 0x49, 0xef, 0xbc, 0xbf, 0x3a, 0x57, 0xae, 0x6a, - 0x24, 0x8d, 0x5e, 0x8c, 0xa9, 0x24, 0x38, 0xc3, 0x49, 0x6f, 0x37, 0x93, 0xdc, 0xda, 0x61, 0x9c, - 0xc1, 0x62, 0xb0, 0x18, 0x2c, 0x06, 0x8b, 0x69, 0xb6, 0x78, 0x73, 0x59, 0x62, 0x86, 0xb2, 0xc2, - 0xdc, 0x24, 0x99, 0xe1, 0xa5, 0x8d, 0xdd, 0xb0, 0xd5, 0x8a, 0x92, 0x53, 0x73, 0x54, 0x33, 0x3d, - 0x0c, 0x84, 0x00, 0x21, 0x40, 0x08, 0x10, 0x82, 0x39, 0x88, 0x41, 0xdc, 0x38, 0xce, 0x3b, 0x93, - 0x53, 0x8f, 0x20, 0x32, 0xa8, 0x70, 0xa6, 0x46, 0x81, 0x75, 0x60, 0x1d, 0x58, 0x07, 0xd6, 0xf1, - 0x05, 0x61, 0xa6, 0xf8, 0xe6, 0xe5, 0x02, 0x70, 0x42, 0x37, 0xcc, 0xb2, 0xe8, 0xc2, 0xe0, 0xd9, - 0xca, 0x78, 0x00, 0x02, 0x5e, 0x30, 0x0d, 0x4c, 0x03, 0xd3, 0x10, 0xf0, 0xf2, 0x24, 0xe0, 0x45, - 0xe6, 0x99, 0xd9, 0xcc, 0x33, 0x8d, 0x29, 0xb4, 0x6e, 0x24, 0x7d, 0x8d, 0x2e, 0x43, 0xd5, 0x9e, - 0xf5, 0xa5, 0xf5, 0x92, 0x55, 0x6e, 0x2b, 0x23, 0xed, 0x6b, 0x89, 0xb4, 0x2f, 0xbd, 0xe8, 0xac, - 0x3f, 0xed, 0xcb, 0xcc, 0x75, 0x3f, 0x66, 0xaf, 0xf9, 0xe1, 0x86, 0x32, 0x34, 0x03, 0x9a, 0x61, - 0x61, 0x6f, 0x28, 0xcb, 0x92, 0x6e, 0x30, 0xf0, 0xee, 0x2e, 0xc2, 0x58, 0xe0, 0xa2, 0xb2, 0xa9, - 0xe1, 0xcc, 0xf6, 0x19, 0x5c, 0xe3, 0xbe, 0x32, 0x9b, 0x40, 0x27, 0x05, 0x78, 0xe2, 0xc0, 0x27, - 0x0e, 0x80, 0xb2, 0x40, 0x68, 0x06, 0x10, 0x0d, 0x01, 0xa3, 0xf9, 0xa0, 0xca, 0xcc, 0x8e, 0x31, - 0xde, 0x42, 0x43, 0xa0, 0x75, 0x86, 0x50, 0xcb, 0x0c, 0x81, 0xc6, 0x26, 0x92, 0x2d, 0x32, 0x84, - 0xfb, 0x19, 0x48, 0xb7, 0xc4, 0xb0, 0xd1, 0xbb, 0x40, 0xa0, 0x05, 0x86, 0x68, 0xeb, 0x0b, 0x5b, - 0x26, 0x22, 0xd8, 0xea, 0xc2, 0x8a, 0x99, 0x78, 0xda, 0x12, 0xe2, 0x78, 0x81, 0x3b, 0x96, 0xc7, - 0x59, 0x37, 0xe8, 0x86, 0xcd, 0x28, 0x39, 0x15, 0xd4, 0x17, 0x77, 0x0d, 0x8a, 0xca, 0x40, 0x65, - 0xa0, 0x32, 0x50, 0x19, 0xde, 0xa9, 0x8c, 0xad, 0x0d, 0x01, 0x95, 0xf1, 0x12, 0x95, 0x81, 0xca, - 0x40, 0x65, 0xa0, 0x32, 0x1e, 0x60, 0x22, 0xeb, 0x2f, 0x37, 0x36, 0xb6, 0xb6, 0x37, 0x36, 0xd6, - 0xb6, 0x5f, 0x6c, 0xaf, 0xed, 0x6c, 0x6e, 0xae, 0x6f, 0xad, 0x23, 0x3a, 0x10, 0x1d, 0x4e, 0x3c, - 0x91, 0xfe, 0x66, 0x0f, 0x4e, 0xe1, 0x19, 0x66, 0xa6, 0x18, 0xb9, 0x54, 0xcb, 0xcd, 0x6c, 0x61, - 0x33, 0x97, 0x67, 0x19, 0xbd, 0x34, 0xcb, 0xf8, 0xa9, 0x7c, 0x85, 0x53, 0x79, 0x41, 0xf9, 0xc8, - 0xa9, 0x7c, 0x11, 0x39, 0x82, 0x53, 0x79, 0xe2, 0x65, 0xc4, 0xcb, 0x88, 0x97, 0x11, 0x2f, 0x73, - 0x22, 0x5e, 0xc6, 0xa9, 0x3c, 0xf1, 0x32, 0xe2, 0x65, 0xc4, 0xcb, 0x9c, 0x31, 0x11, 0x4e, 0xe5, - 0x09, 0x90, 0xb9, 0xb5, 0x0d, 0x39, 0x95, 0x47, 0x65, 0xa0, 0x32, 0x50, 0x19, 0xa8, 0x8c, 0x27, - 0xab, 0x0c, 0x4e, 0xe5, 0x51, 0x19, 0xa8, 0x0c, 0x54, 0x86, 0x33, 0x26, 0xc2, 0xa9, 0x3c, 0xa2, - 0xc3, 0xd5, 0x27, 0x72, 0x2a, 0xff, 0xd8, 0x53, 0x79, 0x03, 0x57, 0xd4, 0xd1, 0x5d, 0xc5, 0x33, - 0x23, 0xb0, 0x7f, 0xb3, 0xd7, 0xd1, 0x70, 0x1e, 0xae, 0xb4, 0x79, 0x79, 0x66, 0xd1, 0xdc, 0xfa, - 0xda, 0x52, 0x73, 0xfb, 0xbe, 0xd2, 0x5e, 0x94, 0xe5, 0xd5, 0x3c, 0xd7, 0x73, 0x7a, 0xdc, 0xf7, - 0x83, 0x6b, 0xb1, 0xea, 0x8b, 0xc3, 0x3e, 0x05, 0x27, 0xbd, 0x38, 0xd6, 0xd0, 0x16, 0x67, 0x3f, - 0xfc, 0xa6, 0xff, 0xa1, 0xef, 0xd3, 0x96, 0x4a, 0x55, 0xeb, 0xf5, 0xe5, 0xe8, 0x91, 0x56, 0xdf, - 0xab, 0x66, 0xf8, 0xb0, 0x08, 0x1b, 0x25, 0x2d, 0x77, 0xdf, 0x3d, 0x01, 0x27, 0xe6, 0x03, 0x88, - 0xa7, 0x6f, 0xeb, 0xa7, 0xfd, 0xe6, 0x13, 0x0d, 0x46, 0x97, 0xa1, 0x88, 0x1b, 0xc8, 0xd3, 0xde, - 0xce, 0xe3, 0xd7, 0xf6, 0x09, 0xeb, 0x5a, 0x8a, 0xd5, 0x85, 0x8a, 0x9f, 0xde, 0x75, 0xeb, 0x3a, - 0xb4, 0x3c, 0x7c, 0xce, 0x13, 0xdf, 0xec, 0x7c, 0x49, 0x76, 0x73, 0x47, 0x83, 0x75, 0x44, 0x7b, - 0x35, 0x46, 0x73, 0x75, 0x45, 0x6b, 0xb5, 0x47, 0x63, 0xb5, 0x47, 0x5b, 0xf5, 0x46, 0x53, 0x65, - 0xd1, 0x68, 0xde, 0xa4, 0xb3, 0xe1, 0x96, 0x99, 0xff, 0x25, 0x4f, 0xed, 0xc0, 0x79, 0x5f, 0xb0, - 0x9e, 0x6c, 0x57, 0x6d, 0xc7, 0x33, 0x3a, 0x8f, 0x61, 0x0c, 0x1c, 0xb7, 0xe8, 0x3e, 0x56, 0x31, - 0x76, 0x7c, 0x62, 0xec, 0x98, 0xc4, 0xcc, 0x71, 0x88, 0x5d, 0x9d, 0xa1, 0x2b, 0x9b, 0xb4, 0x14, - 0xf6, 0xf2, 0x33, 0x95, 0xe4, 0x51, 0x53, 0xaf, 0x36, 0x9e, 0x18, 0xf2, 0xad, 0xe7, 0xd3, 0xe1, - 0xd2, 0x21, 0x68, 0x30, 0x05, 0x11, 0xc6, 0xa1, 0xc2, 0x38, 0x64, 0x98, 0x85, 0x0e, 0x37, 0x23, - 0x64, 0x74, 0xb8, 0x5c, 0xa2, 0xc3, 0xa5, 0x14, 0xe4, 0x98, 0x86, 0x1e, 0x31, 0x08, 0x12, 0x83, - 0x22, 0x19, 0x48, 0xd2, 0x0b, 0x4d, 0x9a, 0x21, 0xca, 0x18, 0x54, 0x5d, 0x43, 0x56, 0x96, 0x74, - 0x03, 0x43, 0x2e, 0xd1, 0xfd, 0x38, 0x76, 0xc7, 0xa0, 0x86, 0x6c, 0xc7, 0xf0, 0x95, 0x22, 0xb7, - 0x41, 0x94, 0xcc, 0x3a, 0xab, 0xe0, 0x2a, 0x05, 0xb2, 0xe2, 0x60, 0x2b, 0x0e, 0xba, 0xb2, 0xe0, - 0x6b, 0x06, 0x84, 0x0d, 0x81, 0xf1, 0x64, 0x69, 0xe4, 0x32, 0xeb, 0xcc, 0x5d, 0x59, 0x32, 0xe3, - 0x05, 0xae, 0x2f, 0x78, 0xfa, 0xb7, 0x34, 0x17, 0xde, 0x31, 0x26, 0x54, 0x08, 0x15, 0x42, 0x85, - 0x50, 0x21, 0x54, 0x08, 0x15, 0xda, 0xa2, 0xc2, 0xae, 0x0d, 0x5d, 0xd8, 0x45, 0x17, 0x42, 0x86, - 0x90, 0x21, 0x64, 0x08, 0x19, 0x42, 0x86, 0x4e, 0x3c, 0x91, 0x0c, 0xfd, 0xbb, 0x92, 0xe8, 0x86, - 0x69, 0x65, 0xc3, 0xbf, 0xca, 0xd3, 0x7c, 0xbd, 0x40, 0x7d, 0xf3, 0xbe, 0x0e, 0x32, 0x9f, 0x0d, - 0x1d, 0xf5, 0xf5, 0x1f, 0xce, 0x39, 0x1f, 0xe7, 0x7c, 0xf6, 0x5d, 0x0c, 0xce, 0xf9, 0x04, 0xf9, - 0xc1, 0xdc, 0x39, 0x9f, 0x99, 0xd4, 0x84, 0x99, 0x0d, 0x65, 0x24, 0x45, 0xc1, 0x30, 0x84, 0xa1, - 0xa6, 0x50, 0x53, 0xa8, 0x29, 0x57, 0xd5, 0x94, 0x29, 0x48, 0x9c, 0x0c, 0xd0, 0x77, 0x60, 0x83, - 0x6e, 0x98, 0x65, 0x23, 0x1b, 0x33, 0x6c, 0xcc, 0x37, 0xf3, 0x44, 0xaf, 0x87, 0x35, 0x6c, 0x5f, - 0x32, 0xc5, 0xf7, 0xc6, 0x01, 0x54, 0x12, 0x48, 0x2d, 0x00, 0xaa, 0x34, 0xb0, 0x5a, 0x03, 0x58, - 0x6b, 0x40, 0x6b, 0x07, 0x70, 0xcd, 0x02, 0xaf, 0x61, 0x00, 0x96, 0x0b, 0x6b, 0xcd, 0xec, 0xb8, - 0xb4, 0xd3, 0xcb, 0xa3, 0xe4, 0x54, 0x0a, 0x25, 0xa7, 0x5c, 0xcc, 0x97, 0x9e, 0x76, 0xd2, 0xf0, - 0x8b, 0xdc, 0x0d, 0xc7, 0xc3, 0x1c, 0x8a, 0x8b, 0x7d, 0x55, 0x97, 0x46, 0x62, 0x63, 0xe6, 0xde, - 0xbb, 0x89, 0x63, 0x45, 0x33, 0x77, 0x4d, 0xcc, 0x00, 0x87, 0x89, 0x3b, 0x27, 0xc4, 0x45, 0x68, - 0x05, 0x11, 0x8a, 0x08, 0x45, 0x84, 0x22, 0x42, 0x11, 0xa1, 0x88, 0x50, 0x44, 0x28, 0x22, 0x14, - 0x11, 0x8a, 0x08, 0x45, 0x84, 0x22, 0x42, 0xe7, 0x13, 0xa1, 0x06, 0x5a, 0x28, 0x1a, 0xd4, 0xa0, - 0x64, 0xf3, 0xd8, 0x36, 0x98, 0x92, 0x91, 0x30, 0xc0, 0xc3, 0xdb, 0xa9, 0xed, 0xf5, 0xe7, 0xd5, - 0xa8, 0x4e, 0xcd, 0xab, 0xf1, 0xbb, 0xba, 0x5c, 0x90, 0x14, 0xa3, 0xe6, 0x59, 0x68, 0xa0, 0x91, - 0xf7, 0xcd, 0x3c, 0xa3, 0xe1, 0x08, 0x24, 0x1b, 0x91, 0x6c, 0x64, 0xdf, 0x37, 0x27, 0xd9, 0x08, - 0xfa, 0xd2, 0x4b, 0x5f, 0x26, 0xd0, 0x4d, 0x1b, 0x87, 0x0d, 0x27, 0xc7, 0x1d, 0xd3, 0xf3, 0x22, - 0x2b, 0x77, 0x4c, 0x43, 0x61, 0x50, 0x18, 0xf9, 0xb2, 0xfa, 0x1e, 0x4c, 0x5f, 0x1c, 0xad, 0x20, - 0x4a, 0xfd, 0xa3, 0x55, 0x70, 0x95, 0x02, 0x59, 0x71, 0xb0, 0x15, 0x07, 0x5d, 0x59, 0xf0, 0x35, - 0x17, 0x58, 0x5b, 0xa2, 0xfe, 0xf1, 0x71, 0x5e, 0x20, 0x7d, 0x71, 0xe8, 0x8b, 0x03, 0x15, 0x42, - 0x85, 0x50, 0x21, 0x54, 0x08, 0x15, 0x2e, 0x2c, 0x15, 0xd2, 0x17, 0x07, 0x32, 0x84, 0x0c, 0x21, - 0x43, 0xc8, 0x10, 0x32, 0xa4, 0x2f, 0x8e, 0xbe, 0x5d, 0x53, 0xf8, 0xa3, 0x48, 0x6e, 0xae, 0xb5, - 0x6d, 0x0c, 0xf6, 0x8d, 0xc0, 0xd6, 0xcd, 0xb5, 0x77, 0x1d, 0x3f, 0x3b, 0x73, 0x7b, 0xad, 0x86, - 0x0b, 0xbf, 0x34, 0x37, 0x37, 0x31, 0xd3, 0xcc, 0x84, 0x2b, 0x9c, 0xb8, 0xc2, 0x69, 0x89, 0x2b, - 0x9c, 0xf4, 0x52, 0x85, 0xf6, 0x2b, 0x9c, 0xa6, 0x01, 0x3b, 0x68, 0x9e, 0xa9, 0xe6, 0x57, 0x73, - 0x79, 0x2b, 0x77, 0x8e, 0xa6, 0xfb, 0x88, 0xfc, 0x5a, 0xd1, 0xf7, 0x6d, 0xcd, 0x50, 0x96, 0xcc, - 0x1a, 0x89, 0x9e, 0x64, 0xc9, 0xb8, 0x28, 0xcc, 0xc9, 0x92, 0x31, 0x28, 0xbc, 0x05, 0x04, 0xb7, - 0x21, 0xa1, 0xed, 0x66, 0x9a, 0xa4, 0x4a, 0xc2, 0x93, 0x58, 0xb5, 0xcc, 0x11, 0xce, 0x78, 0x00, - 0x73, 0x1c, 0x63, 0x22, 0x6a, 0x0c, 0xc9, 0x40, 0x32, 0x90, 0x0c, 0x24, 0x03, 0xc9, 0xe8, 0xf8, - 0xac, 0x83, 0xc8, 0x54, 0x90, 0xf4, 0xce, 0x4f, 0x54, 0x6a, 0x8e, 0x69, 0xa6, 0x46, 0x81, 0x0e, - 0xa0, 0x03, 0xe8, 0x00, 0x3a, 0xf0, 0x05, 0x61, 0x6e, 0xa2, 0xcc, 0xa6, 0x81, 0x47, 0x1f, 0x86, - 0xc9, 0x69, 0xff, 0x33, 0x7c, 0x36, 0x62, 0x7e, 0x06, 0x0f, 0x58, 0xf7, 0xa3, 0x44, 0x20, 0x49, - 0x40, 0xa6, 0x4f, 0xd0, 0xa7, 0x30, 0xee, 0x29, 0x73, 0x8d, 0xdc, 0x26, 0xe3, 0xbc, 0x4d, 0xc3, - 0x66, 0x1e, 0x75, 0x92, 0xdd, 0xe8, 0x34, 0xca, 0xb3, 0xfe, 0x07, 0x33, 0x97, 0x0f, 0x60, 0xf0, - 0xc0, 0x7b, 0x3f, 0xfc, 0x56, 0xb8, 0x57, 0x5f, 0x29, 0xd0, 0xab, 0xf7, 0x24, 0x0f, 0xe1, 0x78, - 0x01, 0x3c, 0xec, 0x73, 0x95, 0xa7, 0x51, 0x33, 0xc8, 0xf2, 0xcb, 0xd8, 0x60, 0xd1, 0xeb, 0xd4, - 0x28, 0x78, 0xd8, 0x78, 0xd8, 0x78, 0xd8, 0x78, 0xd8, 0xbe, 0x20, 0xcc, 0x54, 0xd4, 0x65, 0xc3, - 0xc0, 0xb3, 0x6b, 0x49, 0xef, 0xbc, 0xbf, 0x3a, 0x57, 0xa4, 0x5c, 0x3d, 0x64, 0x3b, 0x15, 0x27, - 0xe5, 0x4a, 0x67, 0x93, 0x6d, 0x37, 0xd2, 0x9b, 0x8c, 0x04, 0xec, 0x4c, 0xca, 0x68, 0xcd, 0xee, - 0x03, 0xa9, 0x4e, 0xa4, 0x3a, 0xd9, 0x70, 0x03, 0xdc, 0x82, 0x68, 0xed, 0x74, 0x7f, 0x03, 0x01, - 0xc2, 0x76, 0xaa, 0xda, 0x3a, 0x2d, 0x76, 0xcc, 0xec, 0xdb, 0x1a, 0x9f, 0x79, 0x30, 0x62, 0x91, - 0xd5, 0xd5, 0x11, 0xc6, 0x97, 0xa7, 0xa0, 0xab, 0x48, 0x80, 0x1f, 0x25, 0x5f, 0x83, 0x41, 0xc2, - 0x78, 0xd0, 0x0a, 0xf3, 0xf0, 0x24, 0xcc, 0x94, 0x01, 0xdc, 0xbf, 0x63, 0x10, 0xc7, 0x33, 0x5d, - 0x2b, 0xc0, 0x3f, 0xf0, 0xbf, 0xa0, 0xf0, 0xaf, 0x3d, 0xd3, 0x35, 0xce, 0xba, 0x06, 0x4f, 0x7f, - 0xb3, 0x2e, 0x1d, 0x45, 0x09, 0x49, 0x11, 0x92, 0x5a, 0xac, 0x90, 0x94, 0xb1, 0x76, 0x6c, 0x71, - 0xd6, 0x0d, 0xa2, 0x96, 0x4c, 0xd7, 0x99, 0xa8, 0x45, 0xd1, 0xbb, 0x38, 0xa4, 0x09, 0x42, 0x9b, - 0x14, 0xc4, 0x89, 0x43, 0x9d, 0x38, 0xe4, 0xc9, 0x42, 0x9f, 0x19, 0x08, 0x34, 0x04, 0x85, 0xe6, - 0x64, 0xbb, 0xa0, 0x8c, 0x97, 0x90, 0xf5, 0x7f, 0x25, 0xf3, 0x07, 0xea, 0xb4, 0x3c, 0xc2, 0x64, - 0x6e, 0x4d, 0xe4, 0xd6, 0x44, 0xb8, 0x0f, 0xee, 0x83, 0xfb, 0xbc, 0xe1, 0x3e, 0xe3, 0xb7, 0x26, - 0x0e, 0x0a, 0x66, 0xb3, 0xe1, 0x41, 0xaf, 0xcc, 0x85, 0x89, 0x93, 0x11, 0xb9, 0x2b, 0xd1, 0x35, - 0xf8, 0xb4, 0x00, 0xa3, 0xd2, 0x70, 0x6a, 0x0d, 0x56, 0xad, 0xc1, 0xab, 0x1d, 0x98, 0x35, 0x0b, - 0xb7, 0x86, 0x61, 0x57, 0x4e, 0x7a, 0xcc, 0xec, 0xb8, 0x5e, 0x94, 0xe4, 0xeb, 0x5b, 0x82, 0x37, - 0x24, 0x6e, 0x09, 0x0c, 0x65, 0x36, 0x59, 0xff, 0xf6, 0x97, 0x0c, 0x80, 0x2c, 0x49, 0x25, 0xf3, - 0x5b, 0x22, 0xb6, 0x99, 0x61, 0xc7, 0x19, 0xdf, 0xd2, 0xe3, 0x0a, 0x66, 0x80, 0x0b, 0xc3, 0xcb, - 0xb4, 0x29, 0x85, 0xdf, 0x16, 0xce, 0x94, 0xb6, 0x36, 0x37, 0x5f, 0x6c, 0x2e, 0x90, 0x39, 0x3d, - 0x2b, 0xc6, 0x28, 0xc7, 0xbe, 0xde, 0xa9, 0x6b, 0x30, 0x1a, 0xd0, 0x8e, 0xc3, 0xd3, 0x4c, 0x4e, - 0x44, 0x0d, 0x87, 0x43, 0x41, 0xa1, 0xa0, 0x50, 0x50, 0x28, 0x28, 0x14, 0xd4, 0x54, 0x83, 0x9e, - 0xde, 0xb9, 0x4a, 0x4d, 0xb6, 0x78, 0xbf, 0x0b, 0x24, 0x4d, 0x54, 0x60, 0xcc, 0x8c, 0x65, 0xa6, - 0x22, 0x43, 0xda, 0x24, 0xf6, 0xa2, 0x2c, 0xaf, 0xe6, 0x79, 0x2a, 0x63, 0x16, 0xfb, 0x51, 0x52, - 0x8b, 0x55, 0x7f, 0xd7, 0xf6, 0xe9, 0x39, 0xe9, 0xc5, 0xb1, 0xc0, 0x8b, 0xda, 0x0f, 0xbf, 0xc9, - 0x0f, 0xfa, 0x3e, 0x6d, 0xa9, 0x54, 0xb5, 0x5e, 0x5f, 0x8e, 0x86, 0xc4, 0x4b, 0x9b, 0x59, 0xa2, - 0xa8, 0x15, 0xc4, 0x2a, 0x39, 0x1d, 0x1c, 0x8f, 0x0a, 0x79, 0x6a, 0xd7, 0x43, 0xe2, 0xad, 0xe1, - 0xad, 0xe1, 0xad, 0xe1, 0xad, 0xe1, 0xad, 0xdd, 0x8a, 0x77, 0xbf, 0x14, 0xf4, 0xd3, 0x36, 0x09, - 0x77, 0xcf, 0xe5, 0x4b, 0x11, 0xee, 0x36, 0x3c, 0x2e, 0xe1, 0xee, 0xc2, 0x9a, 0x52, 0x65, 0x93, - 0x60, 0xb7, 0x77, 0xa3, 0x10, 0xec, 0xbe, 0x43, 0x46, 0x65, 0x41, 0x2e, 0xe1, 0x29, 0x5c, 0x8b, - 0xa8, 0xd1, 0x80, 0x48, 0x28, 0x24, 0x14, 0x12, 0x0a, 0x09, 0x85, 0x84, 0x92, 0xeb, 0xe2, 0x89, - 0x92, 0x42, 0x49, 0x69, 0x71, 0x7f, 0xd7, 0x51, 0x52, 0x28, 0x29, 0x4d, 0x4a, 0x0a, 0x1d, 0x85, - 0x8e, 0xf2, 0x5f, 0x47, 0x19, 0xae, 0xc9, 0x9e, 0xf5, 0x14, 0x4c, 0xd6, 0x66, 0xa3, 0xa2, 0x50, - 0x51, 0xa8, 0x28, 0x54, 0x94, 0xaf, 0x2a, 0x4a, 0x02, 0x1b, 0x6f, 0xe2, 0xe3, 0xfa, 0x4b, 0x81, - 0xb1, 0x0e, 0xc2, 0x3c, 0x57, 0x69, 0x22, 0x26, 0xa1, 0x4a, 0x7f, 0x7c, 0x5e, 0x0b, 0x76, 0xaa, - 0xc1, 0xdb, 0x30, 0x68, 0x1f, 0x7f, 0xdf, 0xb8, 0xfa, 0xf2, 0x65, 0xf5, 0x61, 0x3f, 0x38, 0x1e, - 0xfc, 0x11, 0x5c, 0x7f, 0xfb, 0xb7, 0x12, 0x2e, 0x89, 0x05, 0x97, 0xe4, 0x3c, 0xfc, 0x16, 0x9d, - 0xf7, 0xce, 0x83, 0x30, 0x55, 0x61, 0x10, 0xb6, 0x5a, 0xa9, 0xca, 0x32, 0x25, 0x98, 0xd8, 0x7c, - 0xcf, 0xf8, 0xb8, 0x2c, 0xb8, 0x2c, 0xb8, 0x2c, 0xb8, 0x2c, 0xb8, 0x2c, 0xe4, 0xce, 0x68, 0xfc, - 0x22, 0xe2, 0x6b, 0x64, 0x58, 0x72, 0x67, 0xcc, 0x9a, 0x12, 0xb9, 0x33, 0x05, 0x37, 0x26, 0x62, - 0xbe, 0x85, 0x15, 0x58, 0xdd, 0x56, 0x4f, 0xbc, 0x06, 0xe1, 0xc6, 0x98, 0x08, 0x29, 0x84, 0x14, - 0x42, 0x0a, 0x21, 0x85, 0x90, 0xa2, 0xe9, 0x0e, 0x4a, 0x0a, 0x25, 0x85, 0x92, 0xa2, 0xe9, 0x0e, - 0x5a, 0x0a, 0x2d, 0xe5, 0xad, 0x96, 0x92, 0x2d, 0x44, 0x98, 0x8c, 0x88, 0x8e, 0x42, 0x47, 0xa1, - 0xa3, 0xd0, 0x51, 0xe8, 0x28, 0x5a, 0xef, 0x2c, 0x3a, 0x0d, 0xa7, 0xea, 0x3c, 0x8c, 0x92, 0x28, - 0x39, 0x0d, 0xe2, 0xa8, 0xad, 0xf2, 0xe8, 0x5c, 0x90, 0x90, 0xef, 0x18, 0x1b, 0x6a, 0x86, 0x9a, - 0xa1, 0x66, 0xa8, 0x19, 0x6a, 0x26, 0xc4, 0xa9, 0xf3, 0x8b, 0x10, 0xa7, 0xd1, 0xb8, 0x14, 0x21, - 0x4e, 0x33, 0xa6, 0x44, 0x88, 0xb3, 0xf0, 0xe6, 0x44, 0x88, 0xb3, 0xb0, 0xda, 0x2a, 0x53, 0xff, - 0xdb, 0x53, 0x49, 0x53, 0x8d, 0xeb, 0xfb, 0xc5, 0x84, 0xd5, 0xed, 0x81, 0x51, 0x55, 0xa8, 0x2a, - 0x54, 0x15, 0xaa, 0x0a, 0x55, 0x75, 0x4b, 0x55, 0xbd, 0xa8, 0x08, 0xaa, 0xaa, 0x6d, 0x54, 0x15, - 0xaa, 0x0a, 0x55, 0x85, 0xaa, 0xb2, 0x60, 0x4a, 0x1b, 0x95, 0x9d, 0x8d, 0x9d, 0xad, 0xed, 0xca, - 0x0e, 0xd2, 0x0a, 0x69, 0x55, 0x00, 0x69, 0x75, 0xa1, 0xd2, 0x2c, 0xea, 0x24, 0x72, 0x92, 0x6a, - 0x3c, 0xa0, 0x61, 0x37, 0x68, 0x57, 0xb5, 0xc3, 0x5e, 0x3c, 0x70, 0x1c, 0xd7, 0x91, 0x6d, 0xc8, - 0x36, 0x64, 0x1b, 0xb2, 0x0d, 0xd9, 0x46, 0xe1, 0x34, 0xaa, 0x0d, 0xd5, 0x86, 0x6a, 0xa3, 0x70, - 0x1a, 0xb9, 0x86, 0x5c, 0xf3, 0x57, 0xae, 0x55, 0xc4, 0xf5, 0x5a, 0x05, 0xc1, 0x86, 0x60, 0x43, - 0xb0, 0x21, 0xd8, 0x10, 0x6c, 0x08, 0x36, 0x04, 0x1b, 0x82, 0x0d, 0xc1, 0x86, 0x60, 0x43, 0xb0, - 0x21, 0xd8, 0x8a, 0x20, 0xd8, 0x9e, 0x79, 0x04, 0x11, 0xa5, 0x6a, 0x92, 0x74, 0xf2, 0x61, 0x79, - 0xa1, 0x49, 0x54, 0x28, 0x65, 0xcd, 0x33, 0x75, 0x1e, 0x76, 0xc3, 0x41, 0x8f, 0xae, 0x52, 0xb9, - 0xd3, 0x55, 0x49, 0x73, 0x20, 0x68, 0x82, 0x44, 0xe5, 0x7f, 0x76, 0xd2, 0xaf, 0x41, 0x94, 0x64, - 0x79, 0x98, 0x34, 0x55, 0xf9, 0xf6, 0x0f, 0xb2, 0x99, 0x9f, 0x94, 0xbb, 0x69, 0x27, 0xef, 0x34, - 0x3b, 0x71, 0x36, 0xf9, 0xae, 0xdc, 0xf7, 0x32, 0xcb, 0x83, 0x7b, 0x9b, 0x46, 0x7f, 0x95, 0xe3, - 0x28, 0xf9, 0x1a, 0x64, 0x79, 0x98, 0xab, 0xa0, 0x15, 0xe6, 0xe1, 0x49, 0x98, 0xa9, 0x72, 0x9c, - 0x75, 0xcb, 0x83, 0x1f, 0x99, 0x71, 0x48, 0xf5, 0xbf, 0x7b, 0x03, 0xef, 0xbd, 0x94, 0xc7, 0x17, - 0xe6, 0xda, 0x4f, 0x4f, 0x1c, 0xcc, 0xc1, 0x28, 0x86, 0xac, 0x76, 0x5c, 0xa6, 0x6a, 0xe8, 0xf1, - 0xa6, 0xa5, 0xb6, 0x84, 0xc4, 0x16, 0x94, 0xd6, 0x52, 0x92, 0x5a, 0x5c, 0x4a, 0x8b, 0x4b, 0x68, - 0x59, 0xe9, 0xec, 0x17, 0x53, 0xed, 0x46, 0x66, 0x53, 0xf5, 0xfb, 0x80, 0x25, 0x17, 0x08, 0xed, - 0x0f, 0x26, 0x13, 0x97, 0x5c, 0x27, 0x2e, 0xe9, 0x32, 0x78, 0x4a, 0x83, 0xa8, 0x35, 0x30, 0xb5, - 0x06, 0xaa, 0x76, 0xc0, 0x55, 0x46, 0x28, 0x99, 0x8e, 0x4b, 0x9a, 0x06, 0xdd, 0xc9, 0x40, 0x37, - 0x2f, 0x27, 0x91, 0xdb, 0x03, 0xe3, 0x6d, 0x3e, 0x35, 0xba, 0x90, 0x35, 0xca, 0xc0, 0xb3, 0x38, - 0x4c, 0xdb, 0x80, 0x6b, 0x8b, 0xb0, 0x6d, 0x0b, 0xbe, 0xad, 0xc3, 0xb8, 0x75, 0x38, 0xb7, 0x0b, - 0xeb, 0x72, 0x71, 0xb0, 0x25, 0xb9, 0x00, 0xb1, 0x18, 0xdc, 0x5f, 0x87, 0x85, 0x06, 0xb1, 0x18, - 0xf1, 0x4d, 0x33, 0xa9, 0xc8, 0x1d, 0x0c, 0xff, 0xdc, 0x4a, 0x30, 0x5c, 0xfa, 0xee, 0x66, 0x69, - 0x02, 0xb0, 0x49, 0x04, 0x0e, 0x10, 0x82, 0x6d, 0x62, 0x70, 0x86, 0x20, 0x9c, 0x21, 0x0a, 0x37, - 0x08, 0x43, 0x96, 0x38, 0x84, 0x09, 0xc4, 0x1a, 0x91, 0x5c, 0xeb, 0x08, 0x61, 0x09, 0x71, 0xbf, - 0xa4, 0x10, 0x55, 0x13, 0xf7, 0x91, 0xcc, 0x9a, 0xa5, 0xe1, 0x6d, 0x91, 0x8d, 0x0b, 0xa4, 0xe3, - 0x10, 0xf9, 0xb8, 0x42, 0x42, 0xce, 0x91, 0x91, 0x73, 0xa4, 0xe4, 0x16, 0x39, 0xd9, 0x21, 0x29, - 0x4b, 0x64, 0x35, 0x59, 0x7a, 0xb1, 0x24, 0xbc, 0x9f, 0x93, 0x87, 0x7c, 0x3c, 0xea, 0x2f, 0xa5, - 0xca, 0x4b, 0x8b, 0x73, 0x90, 0xbe, 0x6f, 0xfb, 0xde, 0x89, 0x4c, 0xdd, 0xc3, 0x5d, 0xb9, 0xfa, - 0xf2, 0x65, 0x75, 0x79, 0xe6, 0xde, 0xed, 0x95, 0xef, 0x6b, 0xcf, 0x5f, 0x5c, 0xfd, 0xcd, 0xde, - 0x8e, 0x3d, 0x5e, 0xa8, 0x1d, 0xbb, 0x17, 0x65, 0x79, 0x35, 0xcf, 0x53, 0xbb, 0xbb, 0x76, 0x3f, - 0x4a, 0x6a, 0xb1, 0xea, 0x83, 0x76, 0xdf, 0xef, 0x4c, 0x7a, 0x71, 0x6c, 0x71, 0xbb, 0xec, 0x87, - 0xdf, 0xdc, 0x99, 0xcc, 0xfb, 0xb4, 0xa5, 0x52, 0xd5, 0x7a, 0x7d, 0x39, 0x9a, 0xca, 0xb3, 0xc5, - 0x20, 0xb1, 0x62, 0x6b, 0x3b, 0xa1, 0x94, 0xb1, 0x7b, 0xc7, 0x77, 0x28, 0x95, 0x2c, 0x8f, 0x2f, - 0xb2, 0xfe, 0x1f, 0xe5, 0x9b, 0x84, 0x6d, 0x32, 0xc1, 0xcc, 0xbe, 0xc5, 0x15, 0x2b, 0xe0, 0x6d, - 0xc9, 0x96, 0x9d, 0xb7, 0x61, 0xc9, 0x93, 0xb3, 0x2c, 0x4f, 0x7b, 0xcd, 0x3c, 0x19, 0xb9, 0xbe, - 0xef, 0x86, 0x1f, 0xae, 0x3e, 0xfa, 0x6c, 0x8d, 0x83, 0xd1, 0x27, 0x6a, 0xd4, 0xb3, 0x28, 0x6b, - 0xec, 0xf5, 0x3f, 0x4a, 0x63, 0x2f, 0xeb, 0x36, 0x8e, 0xe2, 0x8b, 0x46, 0x35, 0x55, 0x61, 0x75, - 0x34, 0xe1, 0x82, 0x64, 0x3d, 0x0b, 0x18, 0x7e, 0x29, 0xec, 0xe5, 0x67, 0x2a, 0xc9, 0xa3, 0xa6, - 0xac, 0xe1, 0x5f, 0xab, 0x9b, 0xe9, 0xf1, 0x39, 0x6f, 0xf7, 0x35, 0xe2, 0xc5, 0x79, 0x3b, 0xe7, - 0xed, 0x9c, 0xb7, 0xcf, 0xb1, 0x94, 0x9c, 0xb7, 0x17, 0x0e, 0xf8, 0xad, 0x11, 0x80, 0x4d, 0x22, - 0x70, 0x80, 0x10, 0x6c, 0x13, 0x83, 0x33, 0x04, 0xe1, 0x0c, 0x51, 0xb8, 0x41, 0x18, 0x8b, 0x11, - 0x93, 0xb1, 0x77, 0xde, 0x3e, 0xe5, 0xcb, 0x07, 0x5f, 0xd5, 0xa5, 0x03, 0x47, 0xef, 0xb3, 0x73, - 0xe2, 0x14, 0xde, 0xca, 0x04, 0x38, 0x85, 0x77, 0x89, 0x9a, 0x9c, 0xa3, 0x28, 0xe7, 0xa8, 0xca, - 0x2d, 0xca, 0xb2, 0x43, 0x5d, 0x96, 0x28, 0x6c, 0xb2, 0xf4, 0xee, 0x9c, 0xc2, 0x67, 0x79, 0x1a, - 0x25, 0xa7, 0x4e, 0x9c, 0xbf, 0x2f, 0xca, 0xc1, 0x99, 0x05, 0xbd, 0xd0, 0x4c, 0x2f, 0xbb, 0x79, - 0x47, 0xe6, 0xd2, 0xfb, 0x9f, 0x9a, 0xdc, 0xcd, 0xc9, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, - 0xb3, 0xe0, 0xb3, 0xe0, 0xb3, 0x3c, 0x18, 0x31, 0x54, 0xd2, 0x3b, 0x57, 0xa9, 0xe4, 0xc1, 0xda, - 0x5f, 0x3a, 0x2e, 0x1b, 0x16, 0xe7, 0x50, 0x4b, 0x7a, 0xe7, 0xfd, 0x97, 0x72, 0x45, 0xd6, 0x91, - 0xff, 0x5b, 0x8d, 0xac, 0xa3, 0xbb, 0x32, 0x36, 0xa6, 0x02, 0x5d, 0xe4, 0x1d, 0x79, 0x63, 0xd5, - 0xe4, 0x1d, 0xdd, 0x6b, 0xc5, 0x9e, 0x64, 0x1e, 0x4d, 0xcf, 0x99, 0xe4, 0xa3, 0x07, 0xaf, 0xb9, - 0xfa, 0x96, 0xab, 0xa4, 0xa5, 0x5a, 0x41, 0xd4, 0xbd, 0xd8, 0x08, 0x52, 0x15, 0x36, 0xcf, 0xc2, - 0x93, 0x28, 0x8e, 0xf2, 0x4b, 0xf9, 0x44, 0xa4, 0xbf, 0x98, 0x0b, 0x49, 0x49, 0xbe, 0x8a, 0x69, - 0x92, 0x92, 0x48, 0x4a, 0x22, 0x29, 0x69, 0x8e, 0xa5, 0x14, 0x4f, 0x4a, 0x1a, 0x9a, 0xac, 0xca, - 0xec, 0xe5, 0x25, 0x4d, 0x66, 0x40, 0x6a, 0x52, 0xd1, 0xe8, 0xc0, 0x01, 0x5a, 0xb0, 0x4d, 0x0f, - 0xce, 0xd0, 0x84, 0x33, 0x74, 0xe1, 0x06, 0x6d, 0x2c, 0x46, 0xe0, 0xc6, 0x5a, 0x6a, 0x52, 0xd7, - 0xee, 0x41, 0xce, 0x2d, 0x72, 0xb1, 0x7c, 0x9c, 0xb7, 0xce, 0x71, 0x1e, 0xc7, 0x79, 0x1c, 0xe7, - 0xb9, 0x4f, 0x49, 0x6e, 0x51, 0x93, 0x1d, 0x8a, 0xb2, 0x44, 0x55, 0xd6, 0x29, 0xcb, 0x15, 0xea, - 0x72, 0x8b, 0xc2, 0x6e, 0x53, 0xd9, 0x9a, 0xe5, 0x69, 0xd8, 0xa6, 0x34, 0x97, 0xa8, 0xcd, 0x41, - 0x8a, 0x73, 0x8d, 0xea, 0x9c, 0xa5, 0x3c, 0x67, 0xa9, 0xcf, 0x4d, 0x0a, 0xb4, 0x4b, 0x85, 0x96, - 0x29, 0x71, 0xf2, 0x4a, 0xac, 0x67, 0xba, 0xcc, 0x20, 0x4e, 0xac, 0xc2, 0x76, 0xaa, 0xda, 0x2e, - 0x20, 0xce, 0x58, 0x6b, 0x6d, 0x3b, 0x30, 0x97, 0x83, 0xd1, 0x19, 0xef, 0xea, 0xea, 0x30, 0x2f, - 0xa0, 0x3c, 0xc2, 0x9c, 0x67, 0x8b, 0xb9, 0x77, 0x2c, 0xee, 0x1b, 0x4b, 0x45, 0xb7, 0xf7, 0x6e, - 0x18, 0x1b, 0x45, 0xb8, 0x8e, 0x85, 0x25, 0xf0, 0xe5, 0xf0, 0xe5, 0xf0, 0xe5, 0xf0, 0xe5, 0x16, - 0xdb, 0x97, 0xb3, 0x1d, 0xe6, 0x98, 0x4c, 0xe4, 0x5c, 0xe5, 0x69, 0xd4, 0x74, 0x67, 0x77, 0x8f, - 0x01, 0x70, 0x34, 0x2f, 0x47, 0x76, 0x90, 0x1b, 0xe1, 0x0f, 0xe7, 0xa8, 0xd3, 0x45, 0x0a, 0x75, - 0x98, 0x4a, 0x5d, 0xa5, 0x54, 0xe7, 0xa9, 0xd5, 0x79, 0x8a, 0x75, 0x9b, 0x6a, 0xdd, 0xa0, 0x5c, - 0x47, 0xa8, 0xd7, 0xbd, 0x70, 0xca, 0x0c, 0x62, 0xfd, 0x19, 0xb5, 0x54, 0xe0, 0x14, 0x01, 0xde, - 0x24, 0xc1, 0x6d, 0x87, 0xa6, 0x74, 0x18, 0x26, 0xa7, 0xca, 0x7a, 0x7b, 0xf2, 0xdb, 0x5f, 0x6e, - 0xa1, 0xfa, 0xd2, 0xa8, 0x4f, 0xb6, 0x73, 0x74, 0xe3, 0xa8, 0x77, 0x35, 0x33, 0xbd, 0x4f, 0x61, - 0xdc, 0x53, 0xf6, 0x03, 0x26, 0xf7, 0xce, 0xef, 0x6d, 0x1a, 0x36, 0xf3, 0xa8, 0x93, 0xec, 0x46, - 0xa7, 0xd1, 0xa0, 0xf3, 0xf8, 0x9a, 0x73, 0xf3, 0xbc, 0x7a, 0xee, 0xe0, 0x96, 0x08, 0xbf, 0xb1, - 0x25, 0xe6, 0xdd, 0x12, 0x5b, 0xdb, 0xdb, 0xdb, 0x95, 0xf5, 0x4d, 0x76, 0x86, 0xdf, 0x3e, 0x99, - 0x7b, 0xb3, 0x39, 0x7e, 0xc6, 0x7a, 0x38, 0x82, 0x9c, 0xae, 0xa4, 0xc4, 0xcc, 0xf8, 0xc9, 0x6e, - 0x85, 0x7f, 0x89, 0x11, 0xfd, 0xf5, 0x84, 0x88, 0x11, 0x3d, 0x6a, 0x6a, 0xc4, 0x88, 0x9e, 0x38, - 0x41, 0x62, 0x44, 0xfe, 0x7b, 0x00, 0xc4, 0x88, 0x7e, 0x86, 0x58, 0x83, 0xb2, 0x69, 0xe7, 0x36, - 0xa0, 0x0b, 0xb7, 0xd6, 0xcd, 0x12, 0x8f, 0x23, 0xb7, 0xd8, 0xcd, 0x4c, 0xec, 0x8f, 0xe5, 0xc1, - 0x2d, 0x76, 0xc7, 0x3f, 0x3e, 0xaf, 0x07, 0x3b, 0xc7, 0xc3, 0x6f, 0xd7, 0x07, 0x7f, 0x0d, 0xbf, - 0xaf, 0x7c, 0x5e, 0x0b, 0x36, 0xc6, 0xdf, 0x6f, 0x7e, 0x5e, 0x0b, 0x36, 0x8f, 0x57, 0x06, 0x17, - 0xdd, 0xbd, 0xb8, 0x7a, 0xfc, 0x2f, 0x96, 0x47, 0x83, 0xad, 0xfc, 0x58, 0xfe, 0xbc, 0x1e, 0x54, - 0x8e, 0xc7, 0xff, 0xe7, 0xc5, 0xe7, 0xb5, 0xa0, 0x72, 0xbc, 0xb2, 0xf2, 0xb7, 0x12, 0xbe, 0x3f, - 0xbe, 0xff, 0x8c, 0x8d, 0x66, 0xc1, 0x49, 0x94, 0xbb, 0xe7, 0xfa, 0x0f, 0xa7, 0x85, 0xe7, 0x8f, - 0xe7, 0x8f, 0xe7, 0x8f, 0xe7, 0x8f, 0xe7, 0x8f, 0xe7, 0xbf, 0x30, 0x9e, 0xff, 0x49, 0xa7, 0x13, - 0xab, 0x30, 0x71, 0xd1, 0xeb, 0x5f, 0xc7, 0x71, 0x73, 0xc6, 0x71, 0xeb, 0x75, 0x83, 0x56, 0xe7, - 0xcf, 0xc4, 0x3d, 0xd7, 0x6d, 0x3c, 0x31, 0x9c, 0x37, 0x9c, 0x37, 0x9c, 0x37, 0x9c, 0x37, 0x9c, - 0x37, 0x9c, 0x37, 0x9c, 0x37, 0x9c, 0x37, 0x67, 0x9c, 0xb7, 0x85, 0x2e, 0x4c, 0xb1, 0xdc, 0xeb, - 0x7b, 0x66, 0x3e, 0x2e, 0x76, 0x4d, 0xbe, 0xbf, 0x77, 0x6d, 0x79, 0xdc, 0xcd, 0x70, 0xf4, 0x8d, - 0x8d, 0xbe, 0xe0, 0xee, 0xd8, 0xb3, 0xd5, 0xc2, 0xdf, 0xde, 0x49, 0xff, 0x7d, 0x39, 0x54, 0xfa, - 0x3b, 0x9a, 0x10, 0xc5, 0xbf, 0x14, 0xff, 0x7a, 0x23, 0x6b, 0x28, 0xfe, 0xf5, 0x5d, 0xbe, 0x50, - 0xfc, 0xeb, 0x9e, 0x8f, 0xe5, 0x4c, 0xf1, 0xef, 0x90, 0x93, 0x1c, 0x3c, 0xdd, 0x1d, 0xce, 0xcb, - 0xad, 0x08, 0xe1, 0x3a, 0x11, 0x42, 0xe7, 0x29, 0xd4, 0x61, 0x2a, 0x75, 0x95, 0x52, 0x9d, 0xa7, - 0x56, 0xe7, 0x29, 0xd6, 0x6d, 0xaa, 0x75, 0x27, 0xb0, 0xb2, 0xe4, 0x50, 0x84, 0xd0, 0x15, 0x0a, - 0x9e, 0x4c, 0xa8, 0x1d, 0x87, 0xa7, 0x99, 0x7b, 0xa0, 0x30, 0xc6, 0xd1, 0xe1, 0xf4, 0x1c, 0xdb, - 0x6f, 0x6e, 0x11, 0xb3, 0xb3, 0x04, 0xed, 0x32, 0x51, 0x7b, 0x40, 0xd8, 0xae, 0x13, 0xb7, 0x37, - 0x04, 0xee, 0x0d, 0x91, 0xfb, 0x41, 0xe8, 0x6e, 0x11, 0xbb, 0x63, 0x04, 0xef, 0x2c, 0xd1, 0x5f, - 0x6b, 0x6f, 0x27, 0x3a, 0x53, 0xfe, 0x5c, 0x8a, 0x3b, 0xd0, 0xb1, 0xd2, 0x33, 0x07, 0xc0, 0x79, - 0x47, 0xc0, 0x07, 0x87, 0xc0, 0x23, 0xc7, 0xc0, 0x17, 0x07, 0xc1, 0x3b, 0x47, 0xc1, 0x3b, 0x87, - 0xc1, 0x2f, 0xc7, 0xc1, 0x4d, 0x07, 0xc2, 0x51, 0x47, 0xc2, 0x79, 0x87, 0xc2, 0xf1, 0x48, 0x82, - 0x57, 0x91, 0x85, 0xfb, 0x1c, 0x8d, 0x35, 0xc7, 0xa7, 0xe9, 0xba, 0xc3, 0xe1, 0x93, 0xe3, 0xe1, - 0xa1, 0x03, 0xe2, 0x9b, 0x23, 0xe2, 0xad, 0x43, 0xe2, 0xad, 0x63, 0xe2, 0xa7, 0x83, 0xe2, 0xb6, - 0xa3, 0xe2, 0xb8, 0xc3, 0x32, 0x79, 0xe5, 0xce, 0x25, 0x45, 0xff, 0x14, 0x71, 0x55, 0xd2, 0x3b, - 0x57, 0xe9, 0x30, 0x19, 0xd5, 0x03, 0xd4, 0x1d, 0x47, 0x23, 0x36, 0x3c, 0x98, 0x6b, 0x2d, 0xe9, - 0x9d, 0xf7, 0x8d, 0x81, 0x2d, 0x35, 0xcf, 0x2a, 0xee, 0x45, 0x59, 0x5e, 0xcd, 0xf3, 0xd4, 0x8f, - 0x6d, 0xb5, 0x1f, 0x25, 0xb5, 0x58, 0xf5, 0x51, 0xbf, 0x2f, 0x0f, 0x92, 0x5e, 0x1c, 0x7b, 0x60, - 0xa8, 0xfb, 0xe1, 0x37, 0xff, 0x26, 0xfd, 0x3e, 0x6d, 0xa9, 0x54, 0xb5, 0x5e, 0x5f, 0x8e, 0xa6, - 0xfc, 0x0c, 0x56, 0x2d, 0xd8, 0xf6, 0x2f, 0xe5, 0x3e, 0xb0, 0xe9, 0x84, 0x49, 0x07, 0xb3, 0x45, - 0x63, 0xa3, 0xb1, 0xd1, 0xd8, 0x68, 0x6c, 0x34, 0x36, 0x1a, 0x1b, 0x8d, 0x8d, 0xc6, 0x1e, 0xf6, - 0x91, 0x6c, 0xa9, 0x24, 0x8f, 0xf2, 0x4b, 0x37, 0xae, 0x71, 0x7d, 0xb0, 0xc6, 0xde, 0xf4, 0x60, - 0xae, 0xf5, 0xd1, 0xd2, 0xbe, 0x0e, 0x33, 0x8f, 0x78, 0x62, 0x6c, 0x18, 0xf5, 0x0f, 0xf5, 0x0f, - 0x8d, 0x0f, 0x1f, 0x5f, 0x1f, 0xed, 0x7d, 0x6a, 0x1c, 0xfd, 0xe7, 0xa0, 0xe6, 0x0b, 0x5d, 0x0c, - 0xae, 0x26, 0xc8, 0x9c, 0x6b, 0xf6, 0xf9, 0x57, 0x5f, 0xdf, 0xbd, 0x99, 0xe9, 0x2d, 0x0b, 0x69, - 0x1c, 0xd6, 0xaa, 0x6f, 0x7e, 0xab, 0xbe, 0xae, 0xef, 0xd5, 0x8f, 0xfe, 0x33, 0x32, 0x96, 0x0f, - 0x3e, 0x59, 0x8b, 0xcf, 0x56, 0xe3, 0xa7, 0xf5, 0xfc, 0xd4, 0x8a, 0xaa, 0x9f, 0xaa, 0xf5, 0xbd, - 0xea, 0xeb, 0xbd, 0x5a, 0xe3, 0x75, 0xf5, 0xdd, 0xee, 0xff, 0xad, 0xef, 0x1e, 0xfd, 0x56, 0xf2, - 0xee, 0x13, 0x5e, 0x3d, 0xc7, 0x8c, 0xec, 0x9a, 0xd1, 0x61, 0xed, 0x43, 0x7d, 0xf7, 0x63, 0x75, - 0x0f, 0x2b, 0xc2, 0x8a, 0xe6, 0x00, 0xa3, 0xdd, 0x7f, 0x35, 0x3e, 0xd4, 0x77, 0x31, 0x1d, 0x4c, - 0xe7, 0xb1, 0xa6, 0xb3, 0x57, 0x7f, 0xf7, 0x7b, 0xe3, 0xe0, 0xf0, 0xfd, 0x51, 0xed, 0xcd, 0x51, - 0xfd, 0xfd, 0xbb, 0xa1, 0x57, 0x84, 0x1d, 0x61, 0x47, 0x4f, 0xb1, 0xa3, 0xdd, 0xda, 0x5e, 0xf5, - 0x3f, 0x58, 0x0f, 0xd6, 0xf3, 0x74, 0xeb, 0x69, 0x7c, 0xaa, 0x1e, 0xd6, 0xab, 0x7d, 0x28, 0xc2, - 0x8e, 0xb0, 0xa3, 0xc7, 0xda, 0x51, 0xfd, 0xe0, 0xd3, 0x56, 0xa3, 0xfe, 0xee, 0xa8, 0x76, 0xf8, - 0xb6, 0xfa, 0xa6, 0xd6, 0xa8, 0xee, 0xee, 0x1e, 0xd6, 0x3e, 0x7c, 0xc0, 0x92, 0xb0, 0xa4, 0xc7, - 0x5a, 0xd2, 0x44, 0x8f, 0x35, 0xde, 0xbc, 0x7f, 0xf7, 0xe1, 0xe8, 0xb0, 0x5a, 0x7f, 0x77, 0x84, - 0x21, 0x61, 0x48, 0x8f, 0x36, 0xa4, 0xfd, 0xea, 0xbf, 0xfb, 0x2a, 0xbf, 0x76, 0xf8, 0x89, 0x68, - 0x11, 0xb6, 0xa4, 0xc1, 0x4d, 0xaa, 0x1e, 0x1d, 0x1d, 0xd6, 0x5f, 0x7f, 0x3c, 0xaa, 0x01, 0x47, - 0x98, 0xd0, 0xa3, 0x4d, 0xe8, 0xe3, 0x51, 0x7d, 0xaf, 0xfe, 0x3f, 0xb5, 0x5d, 0x80, 0x08, 0x2b, - 0x7a, 0xba, 0x15, 0xd5, 0xfe, 0x7d, 0x54, 0x7b, 0xb7, 0x5b, 0xdb, 0x6d, 0x54, 0x77, 0xf7, 0xeb, - 0xef, 0x1a, 0xbf, 0x1e, 0xbe, 0xff, 0x78, 0x80, 0x1d, 0x61, 0x47, 0x8f, 0xb5, 0xa3, 0xea, 0xee, - 0xbf, 0x1a, 0x7b, 0xd5, 0x77, 0x04, 0xaf, 0x31, 0x9f, 0x27, 0x91, 0xd9, 0xbb, 0x89, 0x38, 0xab, - 0xed, 0x36, 0xf6, 0x3e, 0x80, 0x41, 0x18, 0xd1, 0xa3, 0x8d, 0xa8, 0x7e, 0xf0, 0x69, 0x83, 0x98, - 0x11, 0x96, 0x34, 0xbf, 0x25, 0x1d, 0xd5, 0x1a, 0xbb, 0xb5, 0xb7, 0xd5, 0x8f, 0x7b, 0x47, 0x8d, - 0xfd, 0xda, 0xd1, 0x61, 0xfd, 0x0d, 0x46, 0x84, 0x11, 0x3d, 0xd6, 0x88, 0xfa, 0xfe, 0xf4, 0x7e, - 0xf5, 0xdf, 0x1c, 0xa8, 0x61, 0x45, 0x73, 0x58, 0xd1, 0xc0, 0x7a, 0xf6, 0xde, 0xc3, 0x63, 0x18, - 0xcf, 0x13, 0x20, 0x68, 0x0c, 0x3f, 0xc4, 0x88, 0xb0, 0xa2, 0x39, 0xc4, 0xd9, 0xf0, 0xd8, 0x83, - 0x58, 0x23, 0x76, 0x34, 0xa7, 0x3e, 0xdb, 0x6a, 0xbc, 0xab, 0xd5, 0x7f, 0xfd, 0xed, 0xf5, 0xfb, - 0x43, 0xe4, 0x19, 0x86, 0x34, 0x97, 0x4f, 0x44, 0xa0, 0x11, 0xd3, 0x79, 0x12, 0x06, 0x6d, 0x80, - 0x41, 0x18, 0xd2, 0xdc, 0x86, 0xe4, 0xf7, 0x79, 0x99, 0x57, 0x33, 0x3e, 0x7e, 0xc6, 0xb6, 0x5c, - 0xf0, 0xed, 0x58, 0xcc, 0xea, 0x3d, 0xcc, 0x45, 0xda, 0x5c, 0x7c, 0xae, 0xd2, 0xc3, 0x5a, 0xe4, - 0x39, 0xde, 0xb3, 0x6a, 0x3c, 0x4c, 0xc4, 0x8a, 0x14, 0xf5, 0xb6, 0xea, 0x0e, 0x7b, 0xb1, 0x62, - 0x2f, 0x9e, 0x1d, 0x06, 0x62, 0x25, 0xf6, 0xac, 0xc4, 0xc7, 0x2a, 0x3a, 0xec, 0x45, 0xda, 0x5e, - 0x7c, 0xaf, 0x96, 0xc3, 0x62, 0xa4, 0x2d, 0xc6, 0xf3, 0xaa, 0x38, 0x0c, 0x46, 0xda, 0x60, 0xfc, - 0xaf, 0x7e, 0xc3, 0x66, 0xac, 0xb8, 0x31, 0x3e, 0x56, 0xb9, 0x61, 0x2a, 0xd2, 0xa6, 0xe2, 0x73, - 0x35, 0x1b, 0xd6, 0x22, 0x6d, 0x2d, 0x7e, 0x57, 0xad, 0x61, 0x2f, 0xd2, 0xf6, 0xe2, 0x65, 0x75, - 0x1a, 0x66, 0x22, 0x4e, 0x42, 0xfe, 0x56, 0xa1, 0x61, 0x2c, 0x16, 0x62, 0x2e, 0x1b, 0xc4, 0x5c, - 0xb0, 0x98, 0x87, 0x5b, 0x8c, 0xc7, 0x55, 0x65, 0x18, 0x8b, 0x78, 0xbc, 0xc5, 0xe3, 0xea, 0x31, - 0xac, 0xc5, 0x4a, 0xa4, 0xc5, 0xaf, 0x2a, 0x31, 0x8c, 0x44, 0x1c, 0x52, 0x3c, 0xae, 0x06, 0xc3, - 0x5a, 0xe4, 0xc5, 0x90, 0xcf, 0x55, 0x5f, 0xd8, 0x8b, 0x05, 0x3d, 0xe4, 0x73, 0x75, 0x17, 0x06, - 0x63, 0xc5, 0x67, 0x21, 0x20, 0x87, 0x89, 0x14, 0xb6, 0x5a, 0x0b, 0x83, 0x91, 0x36, 0x18, 0xce, - 0x83, 0x30, 0x93, 0x3b, 0xcc, 0xe4, 0xf0, 0xfd, 0xc7, 0xa3, 0xda, 0x61, 0xe3, 0x4d, 0xf5, 0x80, - 0xbb, 0xe3, 0xb0, 0x1f, 0xad, 0x76, 0x74, 0xf3, 0xff, 0x51, 0x47, 0x8c, 0x09, 0x3d, 0xc9, 0x84, - 0xaa, 0x7b, 0xbf, 0xbe, 0x3f, 0xac, 0x1f, 0xfd, 0xb6, 0x4f, 0x29, 0xb1, 0xd9, 0x2f, 0x4a, 0x89, - 0x71, 0x0a, 0x0a, 0x07, 0xe6, 0x98, 0x0a, 0xa0, 0x8d, 0xa5, 0x38, 0x22, 0x48, 0x0f, 0xb8, 0xa3, - 0x1a, 0xeb, 0xd1, 0x6d, 0x45, 0x07, 0x87, 0xb5, 0xb7, 0xf5, 0x7f, 0x37, 0xde, 0xee, 0x55, 0x7f, - 0xa5, 0x59, 0x11, 0xf6, 0xf3, 0x54, 0xfb, 0xe1, 0x72, 0x06, 0xac, 0xe7, 0x09, 0xd6, 0x33, 0x38, - 0xd9, 0x1b, 0xb9, 0x40, 0x58, 0x10, 0x16, 0xf4, 0x78, 0x0b, 0x3a, 0xaa, 0xfe, 0xba, 0xb5, 0x81, - 0xe1, 0x60, 0x38, 0x4f, 0x80, 0x9e, 0x0d, 0xa0, 0x07, 0x0b, 0x9a, 0x0b, 0x7a, 0x08, 0xaa, 0x9a, - 0xfd, 0x22, 0xa8, 0x4a, 0xfc, 0xa3, 0x58, 0xca, 0x15, 0x3b, 0x41, 0xa1, 0x62, 0x25, 0x28, 0x51, - 0x2c, 0x05, 0xc5, 0x89, 0x81, 0x14, 0x15, 0x4a, 0x36, 0x80, 0x12, 0x2c, 0xa5, 0x60, 0x0a, 0xd2, - 0x0f, 0xe5, 0xe8, 0xbe, 0x62, 0x74, 0x7b, 0x1d, 0xdd, 0x9d, 0x9d, 0x9b, 0x33, 0x73, 0x14, 0x34, - 0x4b, 0xd5, 0x24, 0xe9, 0xe4, 0x61, 0x1e, 0x75, 0x92, 0xd2, 0x2b, 0x87, 0xe1, 0xb2, 0x94, 0x35, - 0xcf, 0xd4, 0x79, 0xd8, 0x0d, 0xf3, 0xb3, 0x3e, 0x40, 0x96, 0x3b, 0x5d, 0x95, 0x34, 0x3b, 0x49, - 0x3b, 0x3a, 0x0d, 0x12, 0x95, 0xff, 0xd9, 0x49, 0xbf, 0x06, 0x51, 0x92, 0xe5, 0x61, 0xd2, 0x54, - 0xe5, 0xdb, 0x3f, 0xc8, 0x66, 0x7e, 0x52, 0xee, 0xa6, 0x9d, 0xbc, 0xd3, 0xec, 0xc4, 0xd9, 0xe4, - 0xbb, 0x72, 0x94, 0x45, 0x59, 0x39, 0x56, 0x17, 0x2a, 0x1e, 0xfd, 0x55, 0x8e, 0xa3, 0xe4, 0x6b, - 0x90, 0xe5, 0x61, 0xae, 0x82, 0x56, 0x98, 0x87, 0x27, 0x61, 0xa6, 0xca, 0x71, 0xd6, 0x2d, 0xe7, - 0xf1, 0x45, 0xd6, 0xff, 0xa3, 0xac, 0xbe, 0xe5, 0x2a, 0x69, 0xa9, 0x56, 0x10, 0x75, 0x2f, 0x36, - 0x82, 0x54, 0x85, 0xcd, 0xb3, 0xf0, 0x24, 0x8a, 0xa3, 0xfc, 0xb2, 0xdc, 0x4d, 0x55, 0x3b, 0xfa, - 0xa6, 0xb2, 0xd1, 0x37, 0xe5, 0xac, 0x77, 0x32, 0xf8, 0xb5, 0xe1, 0xdf, 0xe5, 0x76, 0x1c, 0x9e, - 0x66, 0xe5, 0xc1, 0xb3, 0xdd, 0x04, 0x76, 0xf7, 0x36, 0x91, 0x5b, 0x33, 0x72, 0x6c, 0x3b, 0xbb, - 0xbe, 0x8d, 0x8b, 0xb8, 0x7d, 0x1d, 0xcc, 0xa5, 0x2a, 0x65, 0x79, 0xda, 0x6b, 0xe6, 0xc9, 0xc8, - 0x8d, 0x7c, 0x37, 0x5c, 0xb7, 0xfa, 0x68, 0xd9, 0x1a, 0x07, 0xa3, 0xc5, 0x6a, 0xd4, 0xb3, 0x28, - 0x6b, 0xec, 0xf5, 0x57, 0xa9, 0xb1, 0x97, 0x75, 0x1b, 0x47, 0xf1, 0x45, 0xa3, 0x36, 0x5a, 0x8c, - 0x7a, 0xf7, 0x62, 0xe3, 0xf0, 0xc6, 0x52, 0x34, 0x0e, 0x06, 0x2b, 0xd0, 0xf8, 0x30, 0xf8, 0xe4, - 0x8d, 0xb7, 0x83, 0x4f, 0xfe, 0x0c, 0x60, 0x70, 0x1c, 0x14, 0x4a, 0x03, 0x9b, 0xce, 0x3a, 0xbd, - 0xb4, 0xa9, 0x82, 0xb4, 0xd3, 0xcb, 0x55, 0x1a, 0x44, 0x2d, 0xe7, 0xb0, 0x61, 0xa2, 0x78, 0xee, - 0x9e, 0xae, 0x63, 0x20, 0xfb, 0x7b, 0x94, 0xf4, 0x97, 0x70, 0xdd, 0xb1, 0x69, 0xbd, 0x19, 0x00, - 0x69, 0xe9, 0xd5, 0xd2, 0x9a, 0x63, 0x13, 0x1b, 0x42, 0x87, 0x9b, 0x84, 0x34, 0x36, 0xbc, 0x4e, - 0x33, 0xe8, 0x53, 0x87, 0x8b, 0x60, 0xfe, 0x61, 0xb0, 0x1d, 0x9c, 0x75, 0xcb, 0x4b, 0xbf, 0xab, - 0xcb, 0x3f, 0x3b, 0x69, 0x7f, 0x47, 0x94, 0x86, 0x34, 0xe9, 0x68, 0x76, 0x71, 0xe9, 0xb7, 0x30, - 0xab, 0xa6, 0xa7, 0xbd, 0x73, 0x95, 0xe4, 0xa5, 0x57, 0x4b, 0x79, 0xda, 0x53, 0xae, 0x8a, 0xb1, - 0xeb, 0x59, 0x4e, 0x0c, 0x13, 0x47, 0xdc, 0x2b, 0x47, 0x7c, 0x37, 0x4a, 0x1d, 0xf5, 0xc0, 0x07, - 0x62, 0xd3, 0x59, 0x30, 0x19, 0xe3, 0xf1, 0x70, 0x9a, 0x8e, 0xee, 0x4f, 0x37, 0x1d, 0x00, 0xe7, - 0x1d, 0x01, 0x1f, 0x1c, 0x02, 0x8f, 0x1c, 0x03, 0x5f, 0x1c, 0x04, 0xef, 0x1c, 0x05, 0xef, 0x1c, - 0x06, 0xbf, 0x1c, 0x07, 0x37, 0x1d, 0x08, 0x47, 0x1d, 0x09, 0xe7, 0x1d, 0x8a, 0xc9, 0x04, 0xdd, - 0x8d, 0x2e, 0xdc, 0x8b, 0xed, 0xae, 0x46, 0x18, 0xee, 0x73, 0x38, 0xd6, 0x1c, 0x9f, 0xa6, 0xeb, - 0x8e, 0x87, 0x4f, 0x0e, 0x88, 0x87, 0x8e, 0x88, 0x6f, 0x0e, 0x89, 0xb7, 0x8e, 0x89, 0xb7, 0x0e, - 0x8a, 0x9f, 0x8e, 0x8a, 0xdb, 0x0e, 0x8b, 0xe3, 0x8e, 0xcb, 0xe4, 0x95, 0x1f, 0x5d, 0x76, 0x95, - 0x5f, 0x88, 0x3b, 0x38, 0x8c, 0x08, 0x5b, 0xad, 0x54, 0x65, 0x5e, 0xc0, 0xee, 0x38, 0x2c, 0xf1, - 0xd2, 0x83, 0xb9, 0x1e, 0x84, 0x79, 0xae, 0xd2, 0xc4, 0x9b, 0x96, 0x0e, 0xa5, 0x3f, 0x96, 0x97, - 0x3f, 0xaf, 0x05, 0x3b, 0xc7, 0x3f, 0x3e, 0xaf, 0x07, 0x3b, 0xc7, 0xc3, 0x6f, 0xd7, 0x07, 0x7f, - 0x0d, 0xbf, 0xaf, 0x7c, 0x5e, 0x0b, 0x36, 0xc6, 0xdf, 0x6f, 0x7e, 0x5e, 0x0b, 0x36, 0x8f, 0x57, - 0xbe, 0x7c, 0x59, 0x5d, 0xf9, 0xfe, 0xe2, 0xea, 0xf1, 0xbf, 0xf8, 0x37, 0xf7, 0xc1, 0xf0, 0x98, - 0xb4, 0xb4, 0xa2, 0xc1, 0x74, 0x29, 0xf7, 0x01, 0xa2, 0x27, 0xf0, 0x3c, 0x98, 0x2d, 0xc2, 0x0d, - 0xe1, 0x86, 0x70, 0x43, 0xb8, 0x21, 0xdc, 0x10, 0x6e, 0x08, 0x37, 0x84, 0xdb, 0x50, 0xb8, 0xb5, - 0x54, 0x92, 0x47, 0xf9, 0x65, 0xaa, 0xda, 0x3e, 0xe9, 0xb6, 0x4d, 0x0f, 0xe6, 0x5a, 0x1f, 0x2d, - 0xed, 0xeb, 0x30, 0xf3, 0x88, 0x27, 0xae, 0x9b, 0xf4, 0xd7, 0x3f, 0x8c, 0x1a, 0x21, 0xfa, 0xd4, - 0x07, 0xd1, 0xc7, 0xfe, 0x87, 0x05, 0xb9, 0xc6, 0x81, 0xae, 0x99, 0x58, 0xcf, 0xfc, 0x56, 0x54, - 0xfd, 0x54, 0xad, 0xef, 0x55, 0x5f, 0xef, 0xd5, 0x7c, 0xbc, 0xc0, 0xcc, 0x13, 0x3f, 0x65, 0x01, - 0xcc, 0xe8, 0xb0, 0xf6, 0xa1, 0xbe, 0xfb, 0xb1, 0xba, 0x87, 0x15, 0x61, 0x45, 0x73, 0x80, 0xd1, - 0xee, 0xbf, 0xe8, 0xbf, 0x8a, 0xe9, 0x3c, 0xc5, 0x74, 0x06, 0x17, 0xe5, 0x1d, 0x1c, 0xbe, 0x3f, - 0xaa, 0xbd, 0x39, 0xaa, 0xbf, 0x7f, 0x37, 0xf4, 0x8a, 0xb0, 0x23, 0xec, 0xe8, 0x29, 0x76, 0xe4, - 0xd9, 0x55, 0xe2, 0x58, 0x8f, 0x7b, 0xd6, 0xd3, 0xf8, 0x54, 0x3d, 0xac, 0x57, 0xfb, 0x50, 0x84, - 0x1d, 0x61, 0x47, 0x8f, 0xb5, 0xa3, 0x41, 0x0f, 0xb7, 0xfa, 0xbb, 0xa3, 0xda, 0xe1, 0xdb, 0xea, - 0x9b, 0x9a, 0x7f, 0x97, 0x7a, 0x62, 0x49, 0xae, 0x58, 0xd2, 0x44, 0x8f, 0x35, 0xde, 0xbc, 0x7f, - 0xf7, 0xe1, 0xe8, 0xb0, 0x5a, 0x7f, 0x77, 0x84, 0x21, 0x61, 0x48, 0x8f, 0x36, 0xa4, 0xfd, 0xea, - 0xbf, 0x1b, 0xc3, 0xcb, 0xee, 0x89, 0x16, 0x61, 0x4b, 0x1a, 0xdc, 0xa4, 0xea, 0xd1, 0xd1, 0x61, - 0xfd, 0xf5, 0xc7, 0xa3, 0x1a, 0x70, 0x84, 0x09, 0x3d, 0xda, 0x84, 0x3e, 0x1e, 0xd5, 0xf7, 0xea, - 0xff, 0x53, 0xdb, 0x05, 0x88, 0xb0, 0xa2, 0xa7, 0x5b, 0x51, 0xed, 0xdf, 0x47, 0xb5, 0x77, 0xbb, - 0xb5, 0x5d, 0x3f, 0xef, 0x44, 0xc7, 0x8e, 0x5c, 0xb1, 0xa3, 0xea, 0xee, 0xbf, 0x1a, 0x7b, 0xd5, - 0x77, 0x04, 0xaf, 0x31, 0x9f, 0x27, 0x91, 0xd9, 0xbb, 0x89, 0x38, 0xab, 0xed, 0x36, 0xf6, 0x3e, - 0x80, 0x41, 0x18, 0xd1, 0xa3, 0x8d, 0x68, 0xd0, 0xac, 0x9b, 0x98, 0x11, 0x96, 0x34, 0xb7, 0x25, - 0x1d, 0xd5, 0x1a, 0xbb, 0xb5, 0xb7, 0xd5, 0x8f, 0x7b, 0x47, 0x8d, 0xfd, 0xda, 0xd1, 0x61, 0xfd, - 0x0d, 0x46, 0x84, 0x11, 0x3d, 0xd6, 0x88, 0xfa, 0xfe, 0xf4, 0x7e, 0xf5, 0xdf, 0x1c, 0xa8, 0x61, - 0x45, 0x73, 0x58, 0xd1, 0xc0, 0x7a, 0xf6, 0xde, 0xc3, 0x63, 0x18, 0xcf, 0x13, 0x20, 0x68, 0x0c, - 0x3f, 0xc4, 0x88, 0xb0, 0xa2, 0x39, 0xc4, 0xd9, 0xf0, 0xd8, 0x83, 0x58, 0x23, 0x76, 0x34, 0xa7, - 0x3e, 0xdb, 0x6a, 0xbc, 0xab, 0xd5, 0x7f, 0xfd, 0xed, 0xf5, 0xfb, 0x43, 0xe4, 0x19, 0x86, 0x34, - 0x97, 0x4f, 0x44, 0xa0, 0x11, 0xd3, 0x79, 0x12, 0x06, 0x6d, 0x80, 0x41, 0x18, 0xd2, 0xdc, 0x86, - 0xe4, 0xf7, 0x79, 0x19, 0x37, 0x87, 0x2f, 0xfa, 0xb6, 0x2c, 0x48, 0x0d, 0xa8, 0xd7, 0xd5, 0x7b, - 0x98, 0x8b, 0xb4, 0xb9, 0xf8, 0x5c, 0xa5, 0x87, 0xb5, 0xc8, 0x73, 0xfc, 0xbf, 0xb8, 0x6b, 0x1e, - 0x13, 0x29, 0x6e, 0xd5, 0x1d, 0xf6, 0x62, 0xc5, 0x5e, 0x3c, 0x3b, 0x0c, 0xc4, 0x4a, 0xec, 0x59, - 0x89, 0x8f, 0x55, 0x74, 0xd8, 0x8b, 0xb4, 0xbd, 0xf8, 0x5e, 0x2d, 0x87, 0xc5, 0x48, 0x5b, 0x8c, - 0xe7, 0x55, 0x71, 0x18, 0x8c, 0xb4, 0xc1, 0xf8, 0x5f, 0xfd, 0x86, 0xcd, 0x58, 0x71, 0x63, 0x7c, - 0xac, 0x72, 0xc3, 0x54, 0xa4, 0x4d, 0xc5, 0xe7, 0x6a, 0x36, 0xac, 0x45, 0xda, 0x5a, 0xfc, 0xae, - 0x5a, 0xc3, 0x5e, 0xa4, 0xed, 0xc5, 0xcb, 0xea, 0x34, 0xcc, 0x44, 0x9c, 0x84, 0xfc, 0xad, 0x42, - 0xc3, 0x58, 0x2c, 0xc4, 0x5c, 0x36, 0x88, 0xb9, 0x60, 0x31, 0x0f, 0xb7, 0x18, 0x8f, 0xab, 0xca, - 0x30, 0x16, 0xf1, 0x78, 0x8b, 0xc7, 0xd5, 0x63, 0x58, 0x8b, 0x95, 0x48, 0x8b, 0x5f, 0x55, 0x62, - 0x18, 0x89, 0x38, 0xa4, 0x78, 0x5c, 0x0d, 0x86, 0xb5, 0xc8, 0x8b, 0x21, 0x9f, 0xab, 0xbe, 0xb0, - 0x17, 0x0b, 0x7a, 0xc8, 0xe7, 0xea, 0x2e, 0x0c, 0xc6, 0x8a, 0xcf, 0x42, 0x40, 0x0e, 0x13, 0x29, - 0x6c, 0xb5, 0x16, 0x06, 0x23, 0x6d, 0x30, 0x9c, 0x07, 0x61, 0x26, 0x77, 0x98, 0xc9, 0xe1, 0xfb, - 0x8f, 0x47, 0xb5, 0xc3, 0xc6, 0x9b, 0xea, 0x01, 0x77, 0xc7, 0x61, 0x3f, 0x5a, 0xed, 0xe8, 0xe6, - 0xff, 0xa3, 0x8e, 0x18, 0x13, 0x7a, 0x92, 0x09, 0x55, 0xf7, 0x7e, 0x7d, 0x7f, 0x58, 0x3f, 0xfa, - 0x6d, 0x9f, 0x52, 0x62, 0xb3, 0x5f, 0x94, 0x12, 0xe3, 0x14, 0x14, 0x0e, 0xcc, 0x31, 0x15, 0x40, - 0x1b, 0x4b, 0x71, 0x44, 0x90, 0x1e, 0x70, 0x47, 0x35, 0xd6, 0xa3, 0xdb, 0x8a, 0x0e, 0x0e, 0x6b, - 0x6f, 0xeb, 0xff, 0x6e, 0xbc, 0xdd, 0xab, 0xfe, 0x4a, 0xb3, 0x22, 0xec, 0xe7, 0xa9, 0xf6, 0xc3, - 0xe5, 0x0c, 0x58, 0xcf, 0x13, 0xac, 0x67, 0x70, 0xb2, 0x37, 0x72, 0x81, 0xb0, 0x20, 0x2c, 0xe8, - 0xf1, 0x16, 0x74, 0x54, 0xfd, 0x75, 0x6b, 0x03, 0xc3, 0xc1, 0x70, 0x9e, 0x00, 0x3d, 0x1b, 0x40, - 0x0f, 0x16, 0x34, 0x17, 0xf4, 0x10, 0x54, 0x35, 0xfb, 0x45, 0x50, 0x95, 0xf8, 0x47, 0xb1, 0x94, - 0x2b, 0x76, 0x82, 0x42, 0xc5, 0x4a, 0x50, 0xa2, 0x58, 0x0a, 0x8a, 0x13, 0x03, 0x29, 0x2a, 0x94, - 0x6c, 0x00, 0x25, 0x58, 0x4a, 0xc1, 0x14, 0xa4, 0x1f, 0xca, 0xd1, 0x7d, 0xc5, 0xe8, 0xf6, 0x3a, - 0xba, 0x3b, 0x3b, 0x37, 0x67, 0xe6, 0x28, 0x68, 0x96, 0xaa, 0x49, 0xd2, 0xc9, 0xc3, 0x3c, 0xea, - 0x24, 0xa5, 0x57, 0x0e, 0xc3, 0x65, 0x29, 0x6b, 0x9e, 0xa9, 0xf3, 0xb0, 0x1b, 0xe6, 0x67, 0x7d, - 0x80, 0x2c, 0x77, 0xba, 0x2a, 0x69, 0x76, 0x92, 0x76, 0x74, 0x1a, 0x24, 0x2a, 0xff, 0xb3, 0x93, - 0x7e, 0x0d, 0xa2, 0x24, 0xcb, 0xc3, 0xa4, 0xa9, 0xca, 0xb7, 0x7f, 0x90, 0xcd, 0xfc, 0xa4, 0xdc, - 0x4d, 0x3b, 0x79, 0xa7, 0xd9, 0x89, 0xb3, 0xc9, 0x77, 0xe5, 0x28, 0x8b, 0xb2, 0x72, 0xac, 0x2e, - 0x54, 0x3c, 0xfa, 0xab, 0x1c, 0x47, 0xc9, 0xd7, 0x20, 0xcb, 0xc3, 0x5c, 0x05, 0xad, 0x30, 0x0f, - 0x4f, 0xc2, 0x4c, 0x95, 0xe3, 0xac, 0x5b, 0xce, 0xe3, 0x8b, 0xac, 0xff, 0x47, 0x59, 0x7d, 0xcb, - 0x55, 0xd2, 0x52, 0xad, 0x20, 0xea, 0x5e, 0x6c, 0x04, 0xa9, 0x0a, 0x9b, 0x67, 0xe1, 0x49, 0x14, - 0x47, 0xf9, 0x65, 0xb9, 0x9b, 0xaa, 0x76, 0xf4, 0x4d, 0x65, 0xa3, 0x6f, 0xca, 0x59, 0xef, 0x64, - 0xf0, 0x6b, 0xc3, 0xbf, 0xcb, 0x83, 0x5f, 0xc8, 0x3a, 0xbd, 0xb4, 0xa9, 0x82, 0xb4, 0xd3, 0xcb, - 0x55, 0x1a, 0x44, 0xad, 0xf2, 0x60, 0x2c, 0x37, 0x81, 0xde, 0xbd, 0x4d, 0xe5, 0xd6, 0x8c, 0x1c, - 0xdb, 0xde, 0xae, 0x6f, 0xeb, 0x45, 0xd8, 0xce, 0x0e, 0xe6, 0x5a, 0x95, 0xb2, 0x3c, 0xed, 0x35, - 0xf3, 0x64, 0xe4, 0x66, 0xbe, 0x1b, 0xae, 0x63, 0x7d, 0xb4, 0x8c, 0x8d, 0x83, 0xd1, 0xe2, 0x35, - 0xea, 0x59, 0x94, 0x35, 0xf6, 0xfa, 0xab, 0xd6, 0xd8, 0xcb, 0xba, 0x8d, 0xa3, 0xf8, 0xa2, 0x51, - 0x1b, 0x2d, 0x4e, 0xbd, 0x7b, 0xb1, 0x71, 0x78, 0x63, 0x69, 0x1a, 0x07, 0x83, 0x15, 0x69, 0x7c, - 0x18, 0xac, 0x44, 0xa3, 0xff, 0x9f, 0x3f, 0x0c, 0x16, 0xe2, 0x70, 0xb0, 0x0e, 0xf5, 0x96, 0x5b, - 0x78, 0xe6, 0x0e, 0x6a, 0x38, 0x84, 0x18, 0xa5, 0xa8, 0x7b, 0xb1, 0x35, 0x6b, 0xbf, 0xae, 0x01, - 0xc7, 0x44, 0x1e, 0xdd, 0x3d, 0x5d, 0xc7, 0x10, 0xf8, 0xf7, 0x28, 0xe9, 0x2f, 0xe1, 0xba, 0x63, - 0xd3, 0x7a, 0x33, 0x40, 0xd9, 0xd2, 0xab, 0xa5, 0x35, 0xc7, 0x26, 0x36, 0xc4, 0x11, 0x37, 0xd9, + 0x37, 0x7b, 0xa7, 0x9b, 0xe9, 0xba, 0xae, 0x23, 0x22, 0xe0, 0x68, 0x7b, 0xeb, 0x6e, 0x96, 0xd0, + 0x76, 0xdd, 0x1d, 0x3b, 0xa5, 0xed, 0xfa, 0x2d, 0xbb, 0xf4, 0xac, 0xef, 0xfa, 0x41, 0x7f, 0xca, + 0x34, 0x5e, 0x9f, 0x59, 0xe2, 0x5e, 0xf2, 0x7b, 0xd2, 0xf9, 0x23, 0x91, 0xeb, 0xbd, 0x3e, 0x1e, + 0x90, 0xf6, 0xeb, 0x4f, 0x1a, 0x88, 0xf6, 0xeb, 0x7a, 0xcd, 0x83, 0xf6, 0xeb, 0xb4, 0x5f, 0xff, + 0xd9, 0x92, 0xd1, 0x7e, 0xdd, 0x3b, 0x40, 0x9e, 0x05, 0x66, 0xda, 0xaf, 0x17, 0x01, 0xb0, 0xad, + 0x03, 0xb7, 0x75, 0x00, 0xb7, 0x0b, 0xe4, 0xc5, 0x8c, 0x37, 0xd0, 0x7e, 0x5d, 0x6a, 0xd7, 0x92, + 0x80, 0xb0, 0x00, 0xa4, 0x60, 0x9b, 0x1c, 0x9c, 0x21, 0x09, 0x67, 0xc8, 0xc2, 0x0d, 0xd2, 0x90, + 0x25, 0x0f, 0x61, 0x12, 0x99, 0x2c, 0x31, 0x09, 0x08, 0x24, 0x20, 0x08, 0x7f, 0x70, 0x12, 0x10, + 0x6e, 0xa6, 0x41, 0x02, 0x82, 0x6d, 0x04, 0x9c, 0x36, 0x4d, 0x12, 0x10, 0x66, 0x4c, 0x93, 0x04, + 0x04, 0xdb, 0x3e, 0x81, 0xbd, 0x51, 0x49, 0xdc, 0x9f, 0xdf, 0x6c, 0x69, 0xbf, 0x8e, 0x82, 0x46, + 0x41, 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0x34, 0x0a, 0x1a, 0x05, 0x8d, 0x82, 0x46, 0x41, + 0xa3, 0xa0, 0x51, 0xd0, 0x28, 0x68, 0x14, 0xf4, 0x63, 0xcc, 0x96, 0xf6, 0xeb, 0xe8, 0x67, 0xf4, + 0x33, 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0xa3, 0x9f, 0xd1, 0xcf, 0xe8, 0x67, 0xf4, 0x33, + 0xfa, 0x19, 0xfd, 0x8c, 0x7e, 0x46, 0x3f, 0x3f, 0x46, 0x3f, 0xd3, 0x7e, 0x1d, 0x0d, 0x8d, 0x86, + 0x46, 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0x68, 0x34, 0x34, 0x1a, 0x1a, 0x0d, 0x8d, 0x86, 0x46, + 0x43, 0xa3, 0xa1, 0xd1, 0xd0, 0x68, 0xe8, 0xc7, 0x98, 0x2d, 0xed, 0xd7, 0xd1, 0xcd, 0xe8, 0x66, + 0x74, 0x33, 0xba, 0x19, 0xdd, 0x8c, 0x6e, 0x46, 0x37, 0xa3, 0x9b, 0xd1, 0xcd, 0xe8, 0x66, 0x74, + 0x33, 0xba, 0x19, 0xdd, 0xec, 0x9d, 0x6e, 0xa6, 0xfd, 0xba, 0x8e, 0x88, 0x80, 0xa3, 0x6d, 0xae, + 0x47, 0xad, 0x8a, 0xe9, 0xc0, 0xee, 0x8c, 0xa9, 0xd2, 0x81, 0x7d, 0xda, 0x34, 0x3d, 0x6b, 0xc2, + 0xfe, 0x69, 0x34, 0x6b, 0x5f, 0xfb, 0xb0, 0xbf, 0xf0, 0x68, 0xcb, 0x48, 0x6d, 0x15, 0x57, 0xb7, + 0x88, 0xc1, 0xad, 0xa1, 0x71, 0x4b, 0x98, 0xd9, 0x0a, 0xfa, 0x0d, 0xd5, 0x80, 0x91, 0x1a, 0xee, + 0x7a, 0x2d, 0xd2, 0xe5, 0xda, 0x70, 0x57, 0x6b, 0xe3, 0x5d, 0xac, 0x25, 0x42, 0xf5, 0x82, 0x21, + 0x79, 0xa9, 0xd0, 0xbb, 0x78, 0x88, 0x5d, 0x3c, 0x94, 0x2e, 0x1b, 0x32, 0xf7, 0x8b, 0x58, 0x4d, + 0x77, 0x8d, 0x2e, 0xa9, 0x24, 0x3c, 0x8d, 0x05, 0x8a, 0x74, 0x27, 0x3b, 0x73, 0x3c, 0xa0, 0xe9, + 0xfb, 0x14, 0x54, 0x3b, 0xec, 0xc5, 0x03, 0x93, 0x6a, 0x87, 0x71, 0xa6, 0x84, 0xee, 0x80, 0x59, + 0xe3, 0x0e, 0x18, 0x97, 0x41, 0x5b, 0x1a, 0xbc, 0xad, 0x81, 0xb8, 0x35, 0x30, 0xb7, 0x03, 0xea, + 0xc5, 0x08, 0x38, 0x88, 0x9d, 0x6b, 0x4e, 0x76, 0xdc, 0x69, 0xa7, 0x13, 0xab, 0x50, 0x44, 0xda, + 0x8f, 0xbd, 0xd7, 0x75, 0x2e, 0x46, 0x9b, 0x59, 0x9b, 0x81, 0xa8, 0x0c, 0x92, 0xde, 0xc5, 0xa9, + 0x4a, 0xe5, 0x98, 0x78, 0x6a, 0x54, 0xe8, 0x11, 0x7a, 0x84, 0x1e, 0xa1, 0x47, 0xe8, 0xd1, 0x0e, + 0x42, 0xde, 0x46, 0x49, 0x81, 0x43, 0x6b, 0xe1, 0x4c, 0x1e, 0xc1, 0x03, 0x3e, 0x1b, 0x99, 0x3a, + 0xb6, 0xb2, 0x6e, 0xc7, 0xe9, 0x0e, 0xeb, 0xc2, 0xe3, 0x5a, 0xcc, 0x6a, 0x90, 0xcc, 0x1e, 0xb7, + 0x91, 0x59, 0x63, 0xdb, 0x94, 0x2a, 0x0b, 0x64, 0x4a, 0x05, 0x39, 0x65, 0x3f, 0x41, 0x51, 0xcd, + 0x98, 0x55, 0x37, 0xcc, 0xb2, 0xe8, 0x52, 0xc9, 0x89, 0xa9, 0xf1, 0x80, 0x84, 0x35, 0xd1, 0x6d, + 0xe8, 0x36, 0x74, 0x1b, 0xba, 0xcd, 0xa2, 0x6e, 0x23, 0xac, 0xe9, 0x06, 0x09, 0xa7, 0x51, 0x27, + 0x8d, 0xf2, 0x2b, 0x41, 0x16, 0x1e, 0x8f, 0x08, 0x2d, 0x42, 0x8b, 0xd0, 0x22, 0xb4, 0x08, 0x2d, + 0xde, 0xda, 0x71, 0xbd, 0x28, 0xc9, 0xdf, 0x10, 0xc7, 0x9c, 0xe3, 0x8b, 0x38, 0xa6, 0xd1, 0xe0, + 0xd3, 0x1a, 0x71, 0x4c, 0x23, 0xa6, 0xb4, 0x80, 0x71, 0xcc, 0xf5, 0xca, 0x6b, 0x22, 0x99, 0xbe, + 0x8d, 0x72, 0x42, 0xb1, 0x86, 0x79, 0x88, 0x58, 0xb8, 0x62, 0x0d, 0x83, 0x25, 0x75, 0x7e, 0x14, + 0x3f, 0xe4, 0xd1, 0x85, 0x4a, 0x33, 0xf3, 0xd5, 0x0f, 0xa3, 0x71, 0x3c, 0x2f, 0x7f, 0x58, 0xa3, + 0xfc, 0xc1, 0x21, 0x4d, 0x4d, 0xf9, 0xc3, 0x22, 0x53, 0x95, 0xf1, 0xf2, 0x87, 0xe6, 0x78, 0xd7, + 0x0b, 0x05, 0x28, 0x47, 0xe3, 0xc9, 0x84, 0x27, 0xd7, 0x09, 0x4f, 0xba, 0x0c, 0xa1, 0xd2, 0x50, + 0x6a, 0x0d, 0x52, 0xad, 0x41, 0xab, 0x1d, 0x88, 0x95, 0xd1, 0x4b, 0xa6, 0xc3, 0x93, 0xa6, 0xa1, + 0x77, 0x32, 0xd0, 0xb9, 0x8a, 0xe3, 0x4e, 0x30, 0xf0, 0xdd, 0x2f, 0xc3, 0x58, 0x6e, 0x17, 0x8c, + 0x37, 0xfa, 0x9d, 0xf1, 0x85, 0x2c, 0x52, 0x36, 0x3c, 0x22, 0xde, 0x9f, 0xd3, 0x46, 0x5f, 0x4e, + 0x8b, 0xfd, 0x38, 0x6d, 0xf5, 0xe1, 0xb4, 0xde, 0x7f, 0xd3, 0x7a, 0xdf, 0x4d, 0xbb, 0xfd, 0x36, + 0x8b, 0xd5, 0x93, 0x49, 0xbc, 0xaf, 0xe6, 0xd4, 0xc9, 0x94, 0x68, 0x33, 0x4d, 0x0b, 0x4d, 0x34, + 0x2d, 0x35, 0xcf, 0xb4, 0xd0, 0x25, 0xd5, 0x66, 0xb3, 0x4c, 0xcb, 0x9d, 0x08, 0x6d, 0x37, 0xc7, + 0x74, 0xa1, 0xe1, 0xa0, 0x85, 0x66, 0x98, 0x56, 0x9b, 0x60, 0xba, 0x62, 0x72, 0xb6, 0x9b, 0x5e, + 0x3a, 0x61, 0x7b, 0x05, 0x6d, 0xfe, 0x78, 0x52, 0x94, 0x8e, 0x80, 0x2f, 0xa5, 0x04, 0xe5, 0x45, + 0x2f, 0xce, 0xa3, 0x6e, 0x1c, 0xa9, 0xd4, 0x96, 0xa4, 0xbc, 0x35, 0x03, 0x44, 0x25, 0xa2, 0x12, + 0x51, 0x89, 0xa8, 0x44, 0x54, 0x0a, 0x8b, 0xca, 0x37, 0x16, 0x34, 0xe5, 0x26, 0x9a, 0x12, 0x4d, + 0x89, 0xa6, 0x44, 0x53, 0x16, 0xc0, 0xe4, 0x2a, 0x9b, 0x88, 0x49, 0xc4, 0xa4, 0xab, 0x62, 0x92, + 0xf6, 0xf2, 0x4f, 0x18, 0xcf, 0x95, 0x74, 0xcc, 0x61, 0x96, 0x60, 0x79, 0x94, 0x09, 0x43, 0xd9, + 0xe4, 0xec, 0x8b, 0x32, 0xda, 0xab, 0x7a, 0xc6, 0x4d, 0x36, 0xd9, 0xb3, 0xfa, 0x2e, 0x9d, 0x89, + 0x65, 0x24, 0x55, 0xc8, 0x48, 0xf2, 0x28, 0xf2, 0x40, 0x46, 0x12, 0x19, 0x49, 0x3f, 0x5f, 0x32, + 0x32, 0x92, 0x0a, 0xa4, 0x38, 0x08, 0x1e, 0x17, 0x0b, 0xc2, 0xad, 0x43, 0xb9, 0x75, 0x48, 0xb7, + 0x0b, 0xed, 0xb2, 0x2a, 0x92, 0x8c, 0x24, 0x63, 0xf8, 0x4b, 0x46, 0x92, 0x81, 0x0f, 0x4a, 0xf4, + 0x98, 0xe8, 0xb1, 0xb4, 0xc9, 0x11, 0x3d, 0x26, 0x23, 0x89, 0x20, 0xb2, 0xf3, 0x9f, 0x87, 0x8c, + 0x24, 0x44, 0x25, 0xa2, 0x12, 0x51, 0x89, 0xa8, 0x44, 0x54, 0x4a, 0x88, 0x4a, 0x32, 0x92, 0xd0, + 0x94, 0x68, 0x4a, 0x34, 0x25, 0x9a, 0xf2, 0x79, 0x26, 0x47, 0x46, 0x12, 0x62, 0xd2, 0x5d, 0x31, + 0x49, 0x46, 0xd2, 0x13, 0xc6, 0x73, 0x2c, 0x23, 0xc9, 0x60, 0x9f, 0x38, 0xf3, 0xf6, 0x41, 0x0b, + 0x42, 0xf7, 0x2d, 0xac, 0x64, 0x34, 0x69, 0x2c, 0xed, 0x35, 0xf3, 0x64, 0x24, 0x34, 0xf6, 0x87, + 0x53, 0xaf, 0x8f, 0x66, 0xde, 0x38, 0x18, 0xcd, 0xb7, 0x51, 0xcf, 0xa2, 0xac, 0x51, 0x1f, 0x4f, + 0xb2, 0xb1, 0xdb, 0x9f, 0x5d, 0xe3, 0x78, 0x38, 0x3b, 0x5f, 0x3a, 0x24, 0xbe, 0x70, 0xd8, 0xc2, + 0x4b, 0xbf, 0xaa, 0x2b, 0xc3, 0x37, 0x07, 0x96, 0x76, 0xa3, 0x2c, 0xaf, 0xe6, 0xb9, 0x99, 0x28, + 0x62, 0x5f, 0xd6, 0xd4, 0x62, 0x75, 0xa1, 0x92, 0x81, 0x8b, 0x93, 0xf4, 0xe2, 0xd8, 0x40, 0x47, + 0xca, 0xbd, 0xf0, 0x9b, 0xf9, 0x41, 0x3e, 0xa6, 0x2d, 0x95, 0xaa, 0xd6, 0xbb, 0xab, 0xd1, 0x10, + 0x4e, 0xdb, 0x8d, 0x61, 0x44, 0x74, 0x05, 0x09, 0x0d, 0x40, 0xe0, 0x3c, 0xd0, 0xa7, 0x17, 0xf3, + 0xf4, 0x21, 0x93, 0x9e, 0x27, 0x69, 0xb2, 0x51, 0x53, 0xb6, 0x69, 0xdf, 0x26, 0xf5, 0xbc, 0xfe, + 0xf9, 0x5f, 0x96, 0x86, 0x17, 0x55, 0xba, 0xe8, 0xc6, 0xfa, 0x5a, 0xfc, 0x4e, 0x22, 0x96, 0x83, + 0xa7, 0x6a, 0x32, 0x23, 0xbd, 0x39, 0xe0, 0xda, 0xcf, 0x7a, 0x4c, 0x9c, 0xe5, 0x18, 0x3c, 0xab, + 0x31, 0x75, 0x16, 0x63, 0xfc, 0xac, 0xc5, 0xf8, 0x59, 0x8a, 0xd9, 0xb3, 0x12, 0xb7, 0xa0, 0x59, + 0x77, 0x4e, 0x74, 0x29, 0x3a, 0xeb, 0x06, 0x71, 0xab, 0x1b, 0x64, 0x57, 0x49, 0x53, 0xbf, 0x6d, + 0x8d, 0xb7, 0xc3, 0xd4, 0x28, 0xba, 0x3d, 0x70, 0x23, 0xa5, 0x26, 0xc6, 0x8e, 0x96, 0x4d, 0x1e, + 0x21, 0x0b, 0x1c, 0x15, 0x9b, 0x3e, 0x12, 0x16, 0x3b, 0xfa, 0x15, 0x3b, 0xe2, 0x95, 0x39, 0xca, + 0x75, 0x5b, 0x25, 0x9b, 0x2a, 0xe5, 0x30, 0xdd, 0xcf, 0x5b, 0xa6, 0x8f, 0x37, 0x57, 0x1d, 0x38, + 0x01, 0x6d, 0x52, 0x10, 0x27, 0x0e, 0x75, 0xe2, 0x90, 0x27, 0x0b, 0x7d, 0xe6, 0x42, 0x8f, 0x4b, + 0x3e, 0x5f, 0x75, 0xa0, 0x92, 0xf0, 0x34, 0x56, 0x2d, 0xb9, 0xc2, 0xe2, 0xf1, 0x80, 0x72, 0x57, + 0xa2, 0xf7, 0x2d, 0x98, 0xab, 0x5f, 0x9d, 0xc3, 0x6a, 0x0b, 0x98, 0x2d, 0x8d, 0xdd, 0xd6, 0x30, + 0xdc, 0x1a, 0x96, 0xdb, 0xc1, 0x74, 0xb3, 0xd8, 0x6e, 0x18, 0xe3, 0x27, 0x4b, 0xc6, 0x8d, 0xe8, + 0x0e, 0x1b, 0x80, 0xd1, 0x1b, 0xd1, 0x3b, 0x59, 0x1e, 0x64, 0x2a, 0xcb, 0xa2, 0x4e, 0x12, 0xf4, + 0xba, 0x41, 0x4b, 0xc5, 0xa1, 0xe4, 0xf5, 0xe8, 0xf7, 0x0e, 0x0f, 0x61, 0x42, 0x98, 0x10, 0x26, + 0x84, 0x09, 0x61, 0xde, 0x49, 0xd5, 0x5f, 0xdf, 0x12, 0xe4, 0xcb, 0x2d, 0x2e, 0x4b, 0x7f, 0xfe, + 0x07, 0xe3, 0xb2, 0x74, 0xf3, 0xe3, 0x72, 0x59, 0x7a, 0x61, 0x4d, 0x69, 0x6b, 0x73, 0xf3, 0xd5, + 0x26, 0xd7, 0xa5, 0xfb, 0x36, 0x0a, 0xd7, 0xa5, 0x0b, 0x80, 0xc4, 0x22, 0xe4, 0x2a, 0x5f, 0x74, + 0xe3, 0xac, 0x7c, 0xfb, 0x4c, 0xde, 0x68, 0x77, 0x4e, 0x3f, 0x2e, 0x4d, 0x37, 0xdb, 0x85, 0x53, + 0xa4, 0xfb, 0xa6, 0xd8, 0x39, 0x62, 0x85, 0x73, 0x44, 0x87, 0xa4, 0x35, 0xe7, 0x88, 0x8b, 0x4c, + 0x57, 0x9c, 0x23, 0x3e, 0x77, 0xe1, 0x38, 0x47, 0x74, 0x1c, 0xab, 0x2d, 0x60, 0xb6, 0x34, 0x76, + 0x5b, 0xc3, 0x70, 0x6b, 0x58, 0x6e, 0x07, 0xd3, 0x65, 0x44, 0x1a, 0xe7, 0x88, 0x1a, 0x9c, 0x57, + 0xce, 0x11, 0x67, 0xd7, 0x86, 0x73, 0x44, 0x08, 0x13, 0xc2, 0x84, 0x30, 0x21, 0x4c, 0xd7, 0x09, + 0x93, 0x73, 0xc4, 0xb9, 0xbf, 0x38, 0x47, 0x34, 0x32, 0x2c, 0xe7, 0x88, 0x66, 0x4d, 0x89, 0x73, + 0xc4, 0xc2, 0x9b, 0x13, 0xe7, 0x88, 0x76, 0x15, 0x16, 0xe7, 0x88, 0xf7, 0x8c, 0xe3, 0xd4, 0x39, + 0xa2, 0xc1, 0x9e, 0x5a, 0x8b, 0xd6, 0x59, 0xa8, 0xc0, 0x1d, 0x62, 0x66, 0xec, 0xc6, 0x9d, 0x36, + 0x31, 0x7b, 0xdd, 0x38, 0x6b, 0xd4, 0xcf, 0xba, 0xbb, 0xad, 0xee, 0x51, 0x7f, 0x62, 0x34, 0x8c, + 0xb1, 0x67, 0xaa, 0xb6, 0x4d, 0x54, 0x67, 0xf7, 0x8e, 0xe7, 0x5b, 0x63, 0x91, 0x9a, 0xd6, 0xe8, + 0x4d, 0xb2, 0x30, 0x92, 0x54, 0x61, 0xac, 0x6d, 0x4d, 0x85, 0xb6, 0x35, 0x3e, 0xc5, 0xff, 0x68, + 0x5b, 0xe3, 0x72, 0xdb, 0x9a, 0x66, 0x94, 0x36, 0x7b, 0x51, 0x1e, 0xe4, 0x26, 0x02, 0x7c, 0x37, + 0x5d, 0x1f, 0x6e, 0x8f, 0x62, 0xa6, 0x6d, 0xcd, 0x1a, 0x6d, 0x6b, 0x68, 0x5b, 0xe3, 0x12, 0x2c, + 0xc9, 0xc0, 0x93, 0x1f, 0x12, 0xcc, 0xd8, 0xf1, 0x81, 0x04, 0xc2, 0x4c, 0x39, 0x33, 0x1b, 0x06, + 0x9e, 0x5d, 0x4b, 0x7a, 0x17, 0xfd, 0xd5, 0xb9, 0x76, 0x55, 0x23, 0x69, 0xf4, 0x62, 0x4c, 0x25, + 0xc1, 0x19, 0x4e, 0x7a, 0xbb, 0x9d, 0xe4, 0xd6, 0x0e, 0xe3, 0x0c, 0x16, 0x83, 0xc5, 0x60, 0x31, + 0x58, 0x4c, 0xb3, 0xc5, 0x9b, 0xcb, 0x12, 0x33, 0x94, 0x15, 0xe6, 0x26, 0xc9, 0x0c, 0x2f, 0x6d, + 0xec, 0x86, 0xad, 0x56, 0x94, 0x9c, 0x99, 0xa3, 0x9a, 0xe9, 0x61, 0x20, 0x04, 0x08, 0x01, 0x42, + 0x80, 0x10, 0xcc, 0x41, 0x0c, 0xe2, 0xc6, 0x71, 0xde, 0x99, 0x9c, 0x7a, 0x04, 0x91, 0x41, 0x85, + 0x33, 0x35, 0x0a, 0xac, 0x03, 0xeb, 0xc0, 0x3a, 0xb0, 0x8e, 0x2f, 0x08, 0x33, 0xc5, 0x37, 0x6f, + 0x16, 0x80, 0x13, 0xba, 0x61, 0x96, 0x45, 0x97, 0x06, 0xcf, 0x56, 0xc6, 0x03, 0x10, 0xf0, 0x82, + 0x69, 0x60, 0x1a, 0x98, 0x86, 0x80, 0x97, 0x27, 0x01, 0x2f, 0x32, 0xcf, 0xcc, 0x66, 0x9e, 0x69, + 0x4c, 0xa1, 0x75, 0x23, 0xe9, 0x6b, 0x74, 0x19, 0xaa, 0xf6, 0xac, 0x2f, 0xad, 0x97, 0xac, 0x72, + 0x5b, 0x19, 0x69, 0x5f, 0x4b, 0xa4, 0x7d, 0xe9, 0x45, 0x67, 0xfd, 0x69, 0x5f, 0x66, 0xae, 0xfb, + 0x31, 0x7b, 0xcd, 0x0f, 0x37, 0x94, 0xa1, 0x19, 0xd0, 0x0c, 0x0b, 0x7b, 0x43, 0x59, 0x96, 0x74, + 0x83, 0x81, 0x77, 0x77, 0x19, 0xc6, 0x02, 0x17, 0x95, 0x4d, 0x0d, 0x67, 0xb6, 0xcf, 0xe0, 0x1a, + 0xf7, 0x95, 0xd9, 0x04, 0x3a, 0x29, 0xc0, 0x13, 0x07, 0x3e, 0x71, 0x00, 0x94, 0x05, 0x42, 0x33, + 0x80, 0x68, 0x08, 0x18, 0xcd, 0x07, 0x55, 0x66, 0x76, 0x8c, 0xf1, 0x16, 0x1a, 0x02, 0xad, 0x33, + 0x84, 0x5a, 0x66, 0x08, 0x34, 0x36, 0x91, 0x6c, 0x91, 0x21, 0xdc, 0xcf, 0x40, 0xba, 0x25, 0x86, + 0x8d, 0xde, 0x05, 0x02, 0x2d, 0x30, 0x44, 0x5b, 0x5f, 0xd8, 0x32, 0x11, 0xc1, 0x56, 0x17, 0x56, + 0xcc, 0xc4, 0xd3, 0x96, 0x10, 0x27, 0x0b, 0xdc, 0xb1, 0x3c, 0xce, 0xba, 0x41, 0x37, 0x6c, 0x46, + 0xc9, 0x99, 0xa0, 0xbe, 0xb8, 0x6f, 0x50, 0x54, 0x06, 0x2a, 0x03, 0x95, 0x81, 0xca, 0xf0, 0x4e, + 0x65, 0x6c, 0x6d, 0x08, 0xa8, 0x8c, 0x37, 0xa8, 0x0c, 0x54, 0x06, 0x2a, 0x03, 0x95, 0xf1, 0x08, + 0x13, 0x59, 0x7f, 0xb3, 0xb1, 0xb1, 0xf5, 0x7a, 0x63, 0x63, 0xed, 0xf5, 0xab, 0xd7, 0x6b, 0xdb, + 0x9b, 0x9b, 0xeb, 0x5b, 0xeb, 0x88, 0x0e, 0x44, 0x87, 0x13, 0x4f, 0xa4, 0xbf, 0xd9, 0xa3, 0x53, + 0x78, 0x86, 0x99, 0x29, 0x46, 0x2e, 0xd5, 0x72, 0x33, 0x5b, 0xd8, 0xcc, 0xe5, 0x59, 0x46, 0x2f, + 0xcd, 0x32, 0x7e, 0x2a, 0x5f, 0xe1, 0x54, 0x5e, 0x50, 0x3e, 0x72, 0x2a, 0x5f, 0x44, 0x8e, 0xe0, + 0x54, 0x9e, 0x78, 0x19, 0xf1, 0x32, 0xe2, 0x65, 0xc4, 0xcb, 0x9c, 0x88, 0x97, 0x71, 0x2a, 0x4f, + 0xbc, 0x8c, 0x78, 0x19, 0xf1, 0x32, 0x67, 0x4c, 0x84, 0x53, 0x79, 0x02, 0x64, 0x6e, 0x6d, 0x43, + 0x4e, 0xe5, 0x51, 0x19, 0xa8, 0x0c, 0x54, 0x06, 0x2a, 0xe3, 0xd9, 0x2a, 0x83, 0x53, 0x79, 0x54, + 0x06, 0x2a, 0x03, 0x95, 0xe1, 0x8c, 0x89, 0x70, 0x2a, 0x8f, 0xe8, 0x70, 0xf5, 0x89, 0x9c, 0xca, + 0x3f, 0xf5, 0x54, 0xde, 0xc0, 0x15, 0x75, 0x74, 0x57, 0xf1, 0xcc, 0x08, 0xec, 0xdf, 0xec, 0x75, + 0x3c, 0x9c, 0x87, 0x2b, 0x6d, 0x5e, 0x5e, 0x58, 0x34, 0xb7, 0xbe, 0xb6, 0xd4, 0xdc, 0xbe, 0xaf, + 0xb4, 0x1b, 0x65, 0x79, 0x35, 0xcf, 0xf5, 0x9c, 0x1e, 0xf7, 0xfd, 0xe0, 0x5a, 0xac, 0xfa, 0xe2, + 0xb0, 0x4f, 0xc1, 0x49, 0x2f, 0x8e, 0x35, 0xb4, 0xc5, 0xd9, 0x0b, 0xbf, 0xe9, 0x7f, 0xe8, 0xc7, + 0xb4, 0xa5, 0x52, 0xd5, 0x7a, 0x77, 0x35, 0x7a, 0xa4, 0xd5, 0xf7, 0xaa, 0x19, 0x3e, 0x2c, 0xc2, + 0x46, 0x49, 0xcb, 0xdd, 0x77, 0xcf, 0xc0, 0x89, 0xf9, 0x00, 0xe2, 0xf9, 0xdb, 0xfa, 0x79, 0xff, + 0xf2, 0x99, 0x06, 0xa3, 0xcb, 0x50, 0xc4, 0x0d, 0xe4, 0x79, 0x6f, 0xe7, 0xe9, 0x6b, 0xfb, 0x8c, + 0x75, 0x2d, 0xc5, 0xea, 0x52, 0xc5, 0xcf, 0xef, 0xba, 0x75, 0x13, 0x5a, 0x1e, 0x3e, 0xe7, 0x99, + 0x6f, 0x76, 0xbe, 0x24, 0xbb, 0xb9, 0xa3, 0xc1, 0x3a, 0xa2, 0xbd, 0x1a, 0xa3, 0xb9, 0xba, 0xa2, + 0xb5, 0xda, 0xa3, 0xb1, 0xda, 0xa3, 0xad, 0x7a, 0xa3, 0xa9, 0xb2, 0x68, 0x34, 0x6f, 0xd2, 0xd9, + 0x70, 0xcb, 0xcc, 0xff, 0x92, 0xa7, 0x76, 0xe0, 0xbc, 0x2f, 0x58, 0x4f, 0xb6, 0xab, 0xb6, 0xe3, + 0x19, 0x9d, 0xc7, 0x30, 0x06, 0x8e, 0x5b, 0x74, 0x1f, 0xab, 0x18, 0x3b, 0x3e, 0x31, 0x76, 0x4c, + 0x62, 0xe6, 0x38, 0xc4, 0xae, 0xce, 0xd0, 0x95, 0x4d, 0x5a, 0x0a, 0x7b, 0xf9, 0xb9, 0x4a, 0xf2, + 0xa8, 0xa9, 0x57, 0x1b, 0x4f, 0x0c, 0xf9, 0xce, 0xf3, 0xe9, 0x70, 0xe9, 0x10, 0x34, 0x98, 0x82, + 0x08, 0xe3, 0x50, 0x61, 0x1c, 0x32, 0xcc, 0x42, 0x87, 0x9b, 0x11, 0x32, 0x3a, 0x5c, 0x2e, 0xd1, + 0xe1, 0x52, 0x0a, 0x72, 0x4c, 0x43, 0x8f, 0x18, 0x04, 0x89, 0x41, 0x91, 0x0c, 0x24, 0xe9, 0x85, + 0x26, 0xcd, 0x10, 0x65, 0x0c, 0xaa, 0x6e, 0x20, 0x2b, 0x4b, 0xba, 0x81, 0x21, 0x97, 0xe8, 0x61, + 0x1c, 0xbb, 0x67, 0x50, 0x43, 0xb6, 0x63, 0xf8, 0x4a, 0x91, 0xbb, 0x20, 0x4a, 0x66, 0x9d, 0x55, + 0x70, 0x95, 0x02, 0x59, 0x71, 0xb0, 0x15, 0x07, 0x5d, 0x59, 0xf0, 0x35, 0x03, 0xc2, 0x86, 0xc0, + 0x78, 0xb2, 0x34, 0x72, 0x99, 0x75, 0xe6, 0xae, 0x2c, 0x99, 0xf1, 0x02, 0xd7, 0x17, 0x3c, 0xfd, + 0x5b, 0x9a, 0x0b, 0xef, 0x19, 0x13, 0x2a, 0x84, 0x0a, 0xa1, 0x42, 0xa8, 0x10, 0x2a, 0x84, 0x0a, + 0x6d, 0x51, 0x61, 0xd7, 0x86, 0x2e, 0xec, 0xa2, 0x0b, 0x21, 0x43, 0xc8, 0x10, 0x32, 0x84, 0x0c, + 0x21, 0x43, 0x27, 0x9e, 0x48, 0x86, 0xfe, 0x7d, 0x49, 0x74, 0xc3, 0xb4, 0xb2, 0xe1, 0x6f, 0xe5, + 0x69, 0xbe, 0x5e, 0xa0, 0xbe, 0x79, 0xbf, 0x0f, 0x32, 0x9f, 0x0d, 0x1d, 0xf5, 0xf5, 0x1f, 0xce, + 0x39, 0x1f, 0xe7, 0x7c, 0xf6, 0x5d, 0x0c, 0xce, 0xf9, 0x04, 0xf9, 0xc1, 0xdc, 0x39, 0x9f, 0x99, + 0xd4, 0x84, 0x99, 0x0d, 0x65, 0x24, 0x45, 0xc1, 0x30, 0x84, 0xa1, 0xa6, 0x50, 0x53, 0xa8, 0x29, + 0x57, 0xd5, 0x94, 0x29, 0x48, 0x9c, 0x0c, 0xd0, 0x77, 0x60, 0x83, 0x6e, 0x98, 0x65, 0x23, 0x1b, + 0x33, 0x6c, 0xcc, 0xb7, 0xf3, 0x44, 0x6f, 0x86, 0x35, 0x6c, 0x5f, 0x32, 0xc5, 0xf7, 0xc6, 0x01, + 0x54, 0x12, 0x48, 0x2d, 0x00, 0xaa, 0x34, 0xb0, 0x5a, 0x03, 0x58, 0x6b, 0x40, 0x6b, 0x07, 0x70, + 0xcd, 0x02, 0xaf, 0x61, 0x00, 0x96, 0x0b, 0x6b, 0xcd, 0xec, 0xb8, 0xb4, 0xd3, 0xcb, 0xa3, 0xe4, + 0x4c, 0x0a, 0x25, 0xa7, 0x5c, 0xcc, 0x37, 0x9e, 0x76, 0xd2, 0xf0, 0x8b, 0xdc, 0x0d, 0xc7, 0xc3, + 0x1c, 0x8a, 0x8b, 0xfd, 0xae, 0xae, 0x8c, 0xc4, 0xc6, 0xcc, 0xbd, 0x77, 0x13, 0xc7, 0x8a, 0x66, + 0xee, 0x9a, 0x98, 0x01, 0x0e, 0x13, 0x77, 0x4e, 0x88, 0x8b, 0xd0, 0x0a, 0x22, 0x14, 0x11, 0x8a, + 0x08, 0x45, 0x84, 0x22, 0x42, 0x11, 0xa1, 0x88, 0x50, 0x44, 0x28, 0x22, 0x14, 0x11, 0x8a, 0x08, + 0x45, 0x84, 0xce, 0x27, 0x42, 0x0d, 0xb4, 0x50, 0x34, 0xa8, 0x41, 0xc9, 0xe6, 0xb1, 0x6d, 0x30, + 0x25, 0x23, 0x61, 0x80, 0xc7, 0xb7, 0x53, 0xdb, 0xed, 0xcf, 0xab, 0x51, 0x9d, 0x9a, 0x57, 0xe3, + 0x57, 0x75, 0xb5, 0x20, 0x29, 0x46, 0xcd, 0xf3, 0xd0, 0x40, 0x23, 0xef, 0xdb, 0x79, 0x46, 0xc3, + 0x11, 0x48, 0x36, 0x22, 0xd9, 0xc8, 0xbe, 0x6f, 0x4e, 0xb2, 0x11, 0xf4, 0xa5, 0x97, 0xbe, 0x4c, + 0xa0, 0x9b, 0x36, 0x0e, 0x1b, 0x4e, 0x8e, 0x3b, 0xa6, 0xe7, 0x45, 0x56, 0xee, 0x98, 0x86, 0xc2, + 0xa0, 0x30, 0xf2, 0x65, 0xf5, 0x3d, 0x98, 0xbe, 0x38, 0x5a, 0x41, 0x94, 0xfa, 0x47, 0xab, 0xe0, + 0x2a, 0x05, 0xb2, 0xe2, 0x60, 0x2b, 0x0e, 0xba, 0xb2, 0xe0, 0x6b, 0x2e, 0xb0, 0xb6, 0x44, 0xfd, + 0xe3, 0xd3, 0xbc, 0x40, 0xfa, 0xe2, 0xd0, 0x17, 0x07, 0x2a, 0x84, 0x0a, 0xa1, 0x42, 0xa8, 0x10, + 0x2a, 0x5c, 0x58, 0x2a, 0xa4, 0x2f, 0x0e, 0x64, 0x08, 0x19, 0x42, 0x86, 0x90, 0x21, 0x64, 0x48, + 0x5f, 0x1c, 0x7d, 0xbb, 0xa6, 0xf0, 0x47, 0x91, 0xdc, 0x5c, 0x6b, 0xdb, 0x18, 0xec, 0x1b, 0x81, + 0xad, 0x9b, 0x6b, 0xef, 0x3b, 0x7e, 0x76, 0xe6, 0xf6, 0x5a, 0x0d, 0x17, 0x7e, 0x69, 0x6e, 0x6e, + 0x62, 0xa6, 0x99, 0x09, 0x57, 0x38, 0x71, 0x85, 0xd3, 0x12, 0x57, 0x38, 0xe9, 0xa5, 0x0a, 0xed, + 0x57, 0x38, 0x4d, 0x03, 0x76, 0xd0, 0x3c, 0x57, 0xcd, 0xdf, 0xcd, 0xe5, 0xad, 0xdc, 0x3b, 0x9a, + 0xee, 0x23, 0xf2, 0x1b, 0x45, 0xdf, 0xb7, 0x35, 0x43, 0x59, 0x32, 0x6b, 0x24, 0x7a, 0x92, 0x25, + 0xe3, 0xa2, 0x30, 0x27, 0x4b, 0xc6, 0xa0, 0xf0, 0x16, 0x10, 0xdc, 0x86, 0x84, 0xb6, 0x9b, 0x69, + 0x92, 0x2a, 0x09, 0x4f, 0x63, 0xd5, 0x32, 0x47, 0x38, 0xe3, 0x01, 0xcc, 0x71, 0x8c, 0x89, 0xa8, + 0x31, 0x24, 0x03, 0xc9, 0x40, 0x32, 0x90, 0x0c, 0x24, 0xa3, 0xe3, 0xb3, 0x0e, 0x22, 0x53, 0x41, + 0xd2, 0xbb, 0x38, 0x55, 0xa9, 0x39, 0xa6, 0x99, 0x1a, 0x05, 0x3a, 0x80, 0x0e, 0xa0, 0x03, 0xe8, + 0xc0, 0x17, 0x84, 0xb9, 0x8d, 0x32, 0x9b, 0x06, 0x1e, 0x7d, 0x18, 0x26, 0x67, 0xfd, 0xcf, 0xf0, + 0xc5, 0x88, 0xf9, 0x19, 0x3c, 0x60, 0xdd, 0x8b, 0x12, 0x81, 0x24, 0x01, 0x99, 0x3e, 0x41, 0x9f, + 0xc3, 0xb8, 0xa7, 0xcc, 0x35, 0x72, 0x9b, 0x8c, 0xf3, 0x21, 0x0d, 0x9b, 0x79, 0xd4, 0x49, 0x76, + 0xa2, 0xb3, 0x28, 0xcf, 0xfa, 0x1f, 0xcc, 0x5c, 0x3e, 0x80, 0xc1, 0x03, 0xef, 0xbd, 0xf0, 0x5b, + 0xe1, 0x5e, 0x7d, 0xa5, 0x40, 0xaf, 0xde, 0x93, 0x3c, 0x84, 0x93, 0x05, 0xf0, 0xb0, 0x2f, 0x54, + 0x9e, 0x46, 0xcd, 0x20, 0xcb, 0xaf, 0x62, 0x83, 0x45, 0xaf, 0x53, 0xa3, 0xe0, 0x61, 0xe3, 0x61, + 0xe3, 0x61, 0xe3, 0x61, 0xfb, 0x82, 0x30, 0x53, 0x51, 0x97, 0x0d, 0x03, 0xcf, 0xae, 0x25, 0xbd, + 0x8b, 0xfe, 0xea, 0x5c, 0x93, 0x72, 0xf5, 0x98, 0xed, 0x54, 0x9c, 0x94, 0x2b, 0x9d, 0x4d, 0xb6, + 0xdd, 0x48, 0x6f, 0x32, 0x12, 0xb0, 0x33, 0x29, 0xa3, 0x35, 0xbb, 0x0f, 0xa4, 0x3a, 0x91, 0xea, + 0x64, 0xc3, 0x0d, 0x70, 0x0b, 0xa2, 0xb5, 0xd3, 0xfd, 0x2d, 0x04, 0x08, 0xdb, 0xa9, 0x6a, 0xeb, + 0xb4, 0xd8, 0x31, 0xb3, 0xbf, 0xd6, 0xf8, 0xcc, 0x83, 0x11, 0x8b, 0xac, 0xae, 0x8e, 0x30, 0xbe, + 0x3c, 0x05, 0x5d, 0x45, 0x02, 0xfc, 0x28, 0xf9, 0x3d, 0x18, 0x24, 0x8c, 0x07, 0xad, 0x30, 0x0f, + 0x4f, 0xc3, 0x4c, 0x19, 0xc0, 0xfd, 0x7b, 0x06, 0x71, 0x3c, 0xd3, 0xb5, 0x02, 0xfc, 0x03, 0xff, + 0x0b, 0x0a, 0xff, 0xda, 0x33, 0x5d, 0xe3, 0xac, 0x6b, 0xf0, 0xf4, 0x37, 0xeb, 0xd2, 0x51, 0x94, + 0x90, 0x14, 0x21, 0xa9, 0xc5, 0x0a, 0x49, 0x19, 0x6b, 0xc7, 0x16, 0x67, 0xdd, 0x20, 0x6a, 0xc9, + 0x74, 0x9d, 0x89, 0x5a, 0x14, 0xbd, 0x8b, 0x43, 0x9a, 0x20, 0xb4, 0x49, 0x41, 0x9c, 0x38, 0xd4, + 0x89, 0x43, 0x9e, 0x2c, 0xf4, 0x99, 0x81, 0x40, 0x43, 0x50, 0x68, 0x4e, 0xb6, 0x0b, 0xca, 0x78, + 0x09, 0x59, 0xff, 0x67, 0x32, 0x7f, 0xa0, 0x4e, 0xcb, 0x23, 0x4c, 0xe6, 0xd6, 0x44, 0x6e, 0x4d, + 0x84, 0xfb, 0xe0, 0x3e, 0xb8, 0xcf, 0x1b, 0xee, 0x33, 0x7e, 0x6b, 0xe2, 0xa0, 0x60, 0x36, 0x1b, + 0x1e, 0xf4, 0xca, 0x5c, 0x98, 0x38, 0x19, 0x91, 0xbb, 0x12, 0x5d, 0x83, 0x4f, 0x0b, 0x30, 0x2a, + 0x0d, 0xa7, 0xd6, 0x60, 0xd5, 0x1a, 0xbc, 0xda, 0x81, 0x59, 0xb3, 0x70, 0x6b, 0x18, 0x76, 0xe5, + 0xa4, 0xc7, 0xcc, 0x8e, 0xeb, 0x45, 0x49, 0xbe, 0xbe, 0x25, 0x78, 0x43, 0xe2, 0x96, 0xc0, 0x50, + 0x66, 0x93, 0xf5, 0xef, 0x7e, 0xc9, 0x00, 0xc8, 0x92, 0x54, 0x32, 0xbf, 0x25, 0x62, 0x9b, 0x19, + 0x76, 0x9c, 0xf1, 0x2d, 0x3d, 0xae, 0x60, 0x06, 0xb8, 0x30, 0xbc, 0x4c, 0x9b, 0x52, 0xf8, 0x6d, + 0xe1, 0x4c, 0x69, 0x6b, 0x73, 0xf3, 0xd5, 0xe6, 0x02, 0x99, 0xd3, 0x8b, 0x62, 0x8c, 0x72, 0xe2, + 0xeb, 0x9d, 0xba, 0x06, 0xa3, 0x01, 0xed, 0x38, 0x3c, 0xcb, 0xe4, 0x44, 0xd4, 0x70, 0x38, 0x14, + 0x14, 0x0a, 0x0a, 0x05, 0x85, 0x82, 0x42, 0x41, 0x4d, 0x35, 0xe8, 0xe9, 0x5d, 0xa8, 0xd4, 0x64, + 0x8b, 0xf7, 0xfb, 0x40, 0xd2, 0x44, 0x05, 0xc6, 0xcc, 0x58, 0x66, 0x2a, 0x32, 0xa4, 0x4d, 0x62, + 0x37, 0xca, 0xf2, 0x6a, 0x9e, 0xa7, 0x32, 0x66, 0xb1, 0x17, 0x25, 0xb5, 0x58, 0xf5, 0x77, 0x6d, + 0x9f, 0x9e, 0x93, 0x5e, 0x1c, 0x0b, 0xbc, 0xa8, 0xbd, 0xf0, 0x9b, 0xfc, 0xa0, 0x1f, 0xd3, 0x96, + 0x4a, 0x55, 0xeb, 0xdd, 0xd5, 0x68, 0x48, 0xbc, 0xb4, 0x99, 0x25, 0x8a, 0x5a, 0x41, 0xac, 0x92, + 0xb3, 0xc1, 0xf1, 0xa8, 0x90, 0xa7, 0x76, 0x33, 0x24, 0xde, 0x1a, 0xde, 0x1a, 0xde, 0x1a, 0xde, + 0x1a, 0xde, 0xda, 0x9d, 0x78, 0xf7, 0x1b, 0x41, 0x3f, 0x6d, 0x93, 0x70, 0xf7, 0x5c, 0xbe, 0x14, + 0xe1, 0x6e, 0xc3, 0xe3, 0x12, 0xee, 0x2e, 0xac, 0x29, 0x55, 0x36, 0x09, 0x76, 0x7b, 0x37, 0x0a, + 0xc1, 0xee, 0x7b, 0x64, 0x54, 0x16, 0xe4, 0x12, 0x9e, 0xc2, 0x8d, 0x88, 0x1a, 0x0d, 0x88, 0x84, + 0x42, 0x42, 0x21, 0xa1, 0x90, 0x50, 0x48, 0x28, 0xb9, 0x2e, 0x9e, 0x28, 0x29, 0x94, 0x94, 0x16, + 0xf7, 0x77, 0x1d, 0x25, 0x85, 0x92, 0xd2, 0xa4, 0xa4, 0xd0, 0x51, 0xe8, 0x28, 0xff, 0x75, 0x94, + 0xe1, 0x9a, 0xec, 0x59, 0x4f, 0xc1, 0x64, 0x6d, 0x36, 0x2a, 0x0a, 0x15, 0x85, 0x8a, 0x42, 0x45, + 0xf9, 0xaa, 0xa2, 0x24, 0xb0, 0xf1, 0x36, 0x3e, 0xae, 0xbf, 0x11, 0x18, 0xeb, 0x20, 0xcc, 0x73, + 0x95, 0x26, 0x62, 0x12, 0xaa, 0xf4, 0xdb, 0x97, 0xb5, 0x60, 0xbb, 0x1a, 0x7c, 0x08, 0x83, 0xf6, + 0xc9, 0xf7, 0x8d, 0xeb, 0xaf, 0x5f, 0x57, 0x1f, 0xf7, 0x83, 0x93, 0xc1, 0x2f, 0xc1, 0xcd, 0xb7, + 0x7f, 0x29, 0xe1, 0x92, 0x58, 0x70, 0x49, 0x2e, 0xc2, 0x6f, 0xd1, 0x45, 0xef, 0x22, 0x08, 0x53, + 0x15, 0x06, 0x61, 0xab, 0x95, 0xaa, 0x2c, 0x53, 0x82, 0x89, 0xcd, 0x0f, 0x8c, 0x8f, 0xcb, 0x82, + 0xcb, 0x82, 0xcb, 0x82, 0xcb, 0x82, 0xcb, 0x42, 0xee, 0x8c, 0xc6, 0x2f, 0x22, 0xbe, 0x46, 0x86, + 0x25, 0x77, 0xc6, 0xac, 0x29, 0x91, 0x3b, 0x53, 0x70, 0x63, 0x22, 0xe6, 0x5b, 0x58, 0x81, 0xd5, + 0x6d, 0xf5, 0xc4, 0x6b, 0x10, 0x6e, 0x8d, 0x89, 0x90, 0x42, 0x48, 0x21, 0xa4, 0x10, 0x52, 0x08, + 0x29, 0x9a, 0xee, 0xa0, 0xa4, 0x50, 0x52, 0x28, 0x29, 0x9a, 0xee, 0xa0, 0xa5, 0xd0, 0x52, 0xde, + 0x6a, 0x29, 0xd9, 0x42, 0x84, 0xc9, 0x88, 0xe8, 0x28, 0x74, 0x14, 0x3a, 0x0a, 0x1d, 0x85, 0x8e, + 0xa2, 0xf5, 0xce, 0xa2, 0xd3, 0x70, 0xaa, 0x2e, 0xc2, 0x28, 0x89, 0x92, 0xb3, 0x20, 0x8e, 0xda, + 0x2a, 0x8f, 0x2e, 0x04, 0x09, 0xf9, 0x9e, 0xb1, 0xa1, 0x66, 0xa8, 0x19, 0x6a, 0x86, 0x9a, 0xa1, + 0x66, 0x42, 0x9c, 0x3a, 0xbf, 0x08, 0x71, 0x1a, 0x8d, 0x4b, 0x11, 0xe2, 0x34, 0x63, 0x4a, 0x84, + 0x38, 0x0b, 0x6f, 0x4e, 0x84, 0x38, 0x0b, 0xab, 0xad, 0x32, 0xf5, 0xbf, 0x3d, 0x95, 0x34, 0xd5, + 0xb8, 0xbe, 0x5f, 0x4c, 0x58, 0xdd, 0x1d, 0x18, 0x55, 0x85, 0xaa, 0x42, 0x55, 0xa1, 0xaa, 0x50, + 0x55, 0x77, 0x54, 0xd5, 0xab, 0x8a, 0xa0, 0xaa, 0x7a, 0x8d, 0xaa, 0x42, 0x55, 0xa1, 0xaa, 0x50, + 0x55, 0x16, 0x4c, 0x69, 0xa3, 0xb2, 0xbd, 0xb1, 0xbd, 0xf5, 0xba, 0xb2, 0x8d, 0xb4, 0x42, 0x5a, + 0x15, 0x40, 0x5a, 0x5d, 0xaa, 0x34, 0x8b, 0x3a, 0x89, 0x9c, 0xa4, 0x1a, 0x0f, 0x68, 0xd8, 0x0d, + 0xda, 0x51, 0xed, 0xb0, 0x17, 0x0f, 0x1c, 0xc7, 0x75, 0x64, 0x1b, 0xb2, 0x0d, 0xd9, 0x86, 0x6c, + 0x43, 0xb6, 0x51, 0x38, 0x8d, 0x6a, 0x43, 0xb5, 0xa1, 0xda, 0x28, 0x9c, 0x46, 0xae, 0x21, 0xd7, + 0xfc, 0x95, 0x6b, 0x15, 0x71, 0xbd, 0x56, 0x41, 0xb0, 0x21, 0xd8, 0x10, 0x6c, 0x08, 0x36, 0x04, + 0x1b, 0x82, 0x0d, 0xc1, 0x86, 0x60, 0x43, 0xb0, 0x21, 0xd8, 0x10, 0x6c, 0x08, 0xb6, 0x22, 0x08, + 0xb6, 0x17, 0x1e, 0x41, 0x44, 0xa9, 0x9a, 0x24, 0x9d, 0x7c, 0x58, 0x5e, 0x68, 0x12, 0x15, 0x4a, + 0x59, 0xf3, 0x5c, 0x5d, 0x84, 0xdd, 0x70, 0xd0, 0xa3, 0xab, 0x54, 0xee, 0x74, 0x55, 0xd2, 0x1c, + 0x08, 0x9a, 0x20, 0x51, 0xf9, 0x1f, 0x9d, 0xf4, 0xf7, 0x20, 0x4a, 0xb2, 0x3c, 0x4c, 0x9a, 0xaa, + 0x7c, 0xf7, 0x07, 0xd9, 0xcc, 0x4f, 0xca, 0xdd, 0xb4, 0x93, 0x77, 0x9a, 0x9d, 0x38, 0x9b, 0x7c, + 0x57, 0xee, 0x7b, 0x99, 0xe5, 0xc1, 0xbd, 0x4d, 0xa3, 0xdf, 0xca, 0x71, 0x94, 0xfc, 0x1e, 0x64, + 0x79, 0x98, 0xab, 0xa0, 0x15, 0xe6, 0xe1, 0x69, 0x98, 0xa9, 0x72, 0x9c, 0x75, 0xcb, 0x83, 0x1f, + 0x99, 0x71, 0x48, 0xf5, 0xbf, 0x7b, 0x03, 0xef, 0xbd, 0x94, 0xc7, 0x97, 0xe6, 0xda, 0x4f, 0x4f, + 0x1c, 0xcc, 0xc1, 0x28, 0x86, 0xac, 0x76, 0x5c, 0xa6, 0x6a, 0xe8, 0xf1, 0xa6, 0xa5, 0xb6, 0x84, + 0xc4, 0x16, 0x94, 0xd6, 0x52, 0x92, 0x5a, 0x5c, 0x4a, 0x8b, 0x4b, 0x68, 0x59, 0xe9, 0xec, 0x17, + 0x53, 0xed, 0x44, 0x66, 0x53, 0xf5, 0xfb, 0x80, 0x25, 0x17, 0x08, 0xed, 0x0f, 0x26, 0x13, 0x97, + 0x5c, 0x27, 0x2e, 0xe9, 0x32, 0x78, 0x4a, 0x83, 0xa8, 0x35, 0x30, 0xb5, 0x06, 0xaa, 0x76, 0xc0, + 0x55, 0x46, 0x28, 0x99, 0x8e, 0x4b, 0x9a, 0x06, 0xdd, 0xc9, 0x40, 0xb7, 0x2f, 0x27, 0x91, 0xdb, + 0x03, 0xe3, 0x6d, 0x3e, 0x35, 0xba, 0x90, 0x35, 0xca, 0xc0, 0xb3, 0x38, 0x4c, 0xdb, 0x80, 0x6b, + 0x8b, 0xb0, 0x6d, 0x0b, 0xbe, 0xad, 0xc3, 0xb8, 0x75, 0x38, 0xb7, 0x0b, 0xeb, 0x72, 0x71, 0xb0, + 0x25, 0xb9, 0x00, 0xb1, 0x18, 0xdc, 0xdf, 0x84, 0x85, 0x06, 0xb1, 0x18, 0xf1, 0x4d, 0x33, 0xa9, + 0xc8, 0x1d, 0x0c, 0xff, 0xd2, 0x4a, 0x30, 0x5c, 0xfa, 0xee, 0x66, 0x69, 0x02, 0xb0, 0x49, 0x04, + 0x0e, 0x10, 0x82, 0x6d, 0x62, 0x70, 0x86, 0x20, 0x9c, 0x21, 0x0a, 0x37, 0x08, 0x43, 0x96, 0x38, + 0x84, 0x09, 0xc4, 0x1a, 0x91, 0xdc, 0xe8, 0x08, 0x61, 0x09, 0xf1, 0xb0, 0xa4, 0x10, 0x55, 0x13, + 0x0f, 0x91, 0xcc, 0x9a, 0xa5, 0xe1, 0x6d, 0x91, 0x8d, 0x0b, 0xa4, 0xe3, 0x10, 0xf9, 0xb8, 0x42, + 0x42, 0xce, 0x91, 0x91, 0x73, 0xa4, 0xe4, 0x16, 0x39, 0xd9, 0x21, 0x29, 0x4b, 0x64, 0x35, 0x59, + 0x7a, 0xb1, 0x24, 0xbc, 0x9f, 0x93, 0x87, 0x7c, 0x3c, 0xea, 0x4f, 0xa5, 0xca, 0x1b, 0x8b, 0x73, + 0x90, 0xbe, 0x6f, 0xfb, 0xc1, 0x89, 0x4c, 0xdd, 0xc3, 0x5d, 0xb9, 0xfe, 0xfa, 0x75, 0x75, 0x79, + 0xe6, 0xde, 0xed, 0x95, 0xef, 0x6b, 0x2f, 0x5f, 0x5d, 0xff, 0xc5, 0xde, 0x8e, 0x3d, 0x59, 0xa8, + 0x1d, 0xbb, 0x1b, 0x65, 0x79, 0x35, 0xcf, 0x53, 0xbb, 0xbb, 0x76, 0x2f, 0x4a, 0x6a, 0xb1, 0xea, + 0x83, 0x76, 0xdf, 0xef, 0x4c, 0x7a, 0x71, 0x6c, 0x71, 0xbb, 0xec, 0x85, 0xdf, 0xdc, 0x99, 0xcc, + 0xc7, 0xb4, 0xa5, 0x52, 0xd5, 0x7a, 0x77, 0x35, 0x9a, 0xca, 0x8b, 0xc5, 0x20, 0xb1, 0x62, 0x6b, + 0x3b, 0xa1, 0x94, 0xb1, 0x07, 0xc7, 0x77, 0x28, 0x95, 0x2c, 0x8f, 0x2f, 0xb3, 0xfe, 0x2f, 0xe5, + 0xdb, 0x84, 0x6d, 0x32, 0xc1, 0xcc, 0xbe, 0xc5, 0x15, 0x2b, 0xe0, 0x6d, 0xc9, 0x96, 0x9d, 0xb7, + 0x61, 0xc9, 0x93, 0xb3, 0x2c, 0x4f, 0x7b, 0xcd, 0x3c, 0x19, 0xb9, 0xbe, 0xfb, 0xc3, 0x0f, 0x57, + 0x1f, 0x7d, 0xb6, 0xc6, 0xc1, 0xe8, 0x13, 0x35, 0xea, 0x59, 0x94, 0x35, 0x76, 0xfb, 0x1f, 0xa5, + 0xb1, 0x9b, 0x75, 0x1b, 0xc7, 0xf1, 0x65, 0xa3, 0x9a, 0xaa, 0xb0, 0x3a, 0x9a, 0x70, 0x41, 0xb2, + 0x9e, 0x05, 0x0c, 0xbf, 0x14, 0xf6, 0xf2, 0x73, 0x95, 0xe4, 0x51, 0x53, 0xd6, 0xf0, 0x6f, 0xd4, + 0xcd, 0xf4, 0xf8, 0x9c, 0xb7, 0xfb, 0x1a, 0xf1, 0xe2, 0xbc, 0x9d, 0xf3, 0x76, 0xce, 0xdb, 0xe7, + 0x58, 0x4a, 0xce, 0xdb, 0x0b, 0x07, 0xfc, 0xd6, 0x08, 0xc0, 0x26, 0x11, 0x38, 0x40, 0x08, 0xb6, + 0x89, 0xc1, 0x19, 0x82, 0x70, 0x86, 0x28, 0xdc, 0x20, 0x8c, 0xc5, 0x88, 0xc9, 0xd8, 0x3b, 0x6f, + 0x9f, 0xf2, 0xe5, 0x83, 0xdf, 0xd5, 0x95, 0x03, 0x47, 0xef, 0xb3, 0x73, 0xe2, 0x14, 0xde, 0xca, + 0x04, 0x38, 0x85, 0x77, 0x89, 0x9a, 0x9c, 0xa3, 0x28, 0xe7, 0xa8, 0xca, 0x2d, 0xca, 0xb2, 0x43, + 0x5d, 0x96, 0x28, 0x6c, 0xb2, 0xf4, 0xee, 0x9c, 0xc2, 0x67, 0x79, 0x1a, 0x25, 0x67, 0x4e, 0x9c, + 0xbf, 0x2f, 0xca, 0xc1, 0x99, 0x05, 0xbd, 0xd0, 0x4c, 0xaf, 0xba, 0x79, 0x47, 0xe6, 0xd2, 0xfb, + 0x9f, 0x9a, 0xdc, 0xed, 0xc9, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, 0xb3, 0xe0, + 0xb3, 0x3c, 0x1a, 0x31, 0x54, 0xd2, 0xbb, 0x50, 0xa9, 0xe4, 0xc1, 0xda, 0x9f, 0x3a, 0x2e, 0x1b, + 0x16, 0xe7, 0x50, 0x4b, 0x7a, 0x17, 0xfd, 0x97, 0x72, 0x4d, 0xd6, 0x91, 0xff, 0x5b, 0x8d, 0xac, + 0xa3, 0xfb, 0x32, 0x36, 0xa6, 0x02, 0x5d, 0xe4, 0x1d, 0x79, 0x63, 0xd5, 0xe4, 0x1d, 0x3d, 0x68, + 0xc5, 0x9e, 0x64, 0x1e, 0x4d, 0xcf, 0x99, 0xe4, 0xa3, 0x47, 0xaf, 0xb9, 0xfa, 0x96, 0xab, 0xa4, + 0xa5, 0x5a, 0x41, 0xd4, 0xbd, 0xdc, 0x08, 0x52, 0x15, 0x36, 0xcf, 0xc3, 0xd3, 0x28, 0x8e, 0xf2, + 0x2b, 0xf9, 0x44, 0xa4, 0x3f, 0x99, 0x0b, 0x49, 0x49, 0xbe, 0x8a, 0x69, 0x92, 0x92, 0x48, 0x4a, + 0x22, 0x29, 0x69, 0x8e, 0xa5, 0x14, 0x4f, 0x4a, 0x1a, 0x9a, 0xac, 0xca, 0xec, 0xe5, 0x25, 0x4d, + 0x66, 0x40, 0x6a, 0x52, 0xd1, 0xe8, 0xc0, 0x01, 0x5a, 0xb0, 0x4d, 0x0f, 0xce, 0xd0, 0x84, 0x33, + 0x74, 0xe1, 0x06, 0x6d, 0x2c, 0x46, 0xe0, 0xc6, 0x5a, 0x6a, 0x52, 0xd7, 0xee, 0x41, 0xce, 0x1d, + 0x72, 0xb1, 0x7c, 0x9c, 0xb7, 0xce, 0x71, 0x1e, 0xc7, 0x79, 0x1c, 0xe7, 0xb9, 0x4f, 0x49, 0x6e, + 0x51, 0x93, 0x1d, 0x8a, 0xb2, 0x44, 0x55, 0xd6, 0x29, 0xcb, 0x15, 0xea, 0x72, 0x8b, 0xc2, 0xee, + 0x52, 0xd9, 0x9a, 0xe5, 0x69, 0xd8, 0xa6, 0x34, 0x97, 0xa8, 0xcd, 0x41, 0x8a, 0x73, 0x8d, 0xea, + 0x9c, 0xa5, 0x3c, 0x67, 0xa9, 0xcf, 0x4d, 0x0a, 0xb4, 0x4b, 0x85, 0x96, 0x29, 0x71, 0xf2, 0x4a, + 0xac, 0x67, 0xba, 0xcc, 0x20, 0x4e, 0xac, 0xc2, 0x76, 0xaa, 0xda, 0x2e, 0x20, 0xce, 0x58, 0x6b, + 0xbd, 0x76, 0x60, 0x2e, 0x07, 0xa3, 0x33, 0xde, 0xd5, 0xd5, 0x61, 0x5e, 0x40, 0x79, 0x84, 0x39, + 0x2f, 0x16, 0x73, 0xef, 0x58, 0xdc, 0x37, 0x96, 0x8a, 0x6e, 0x1f, 0xdc, 0x30, 0x36, 0x8a, 0x70, + 0x1d, 0x0b, 0x4b, 0xe0, 0xcb, 0xe1, 0xcb, 0xe1, 0xcb, 0xe1, 0xcb, 0x2d, 0xb6, 0x2f, 0x67, 0x3b, + 0xcc, 0x31, 0x99, 0xc8, 0x85, 0xca, 0xd3, 0xa8, 0xe9, 0xce, 0xee, 0x1e, 0x03, 0xe0, 0x68, 0x5e, + 0x8e, 0xec, 0x20, 0x37, 0xc2, 0x1f, 0xce, 0x51, 0xa7, 0x8b, 0x14, 0xea, 0x30, 0x95, 0xba, 0x4a, + 0xa9, 0xce, 0x53, 0xab, 0xf3, 0x14, 0xeb, 0x36, 0xd5, 0xba, 0x41, 0xb9, 0x8e, 0x50, 0xaf, 0x7b, + 0xe1, 0x94, 0x19, 0xc4, 0xfa, 0x23, 0x6a, 0xa9, 0xc0, 0x29, 0x02, 0xbc, 0x4d, 0x82, 0xaf, 0x1d, + 0x9a, 0xd2, 0x61, 0x98, 0x9c, 0x29, 0xeb, 0xed, 0xc9, 0xef, 0x7e, 0xb9, 0x85, 0xea, 0x4b, 0xa3, + 0x3e, 0xd9, 0xce, 0xd1, 0x8d, 0xa3, 0xde, 0xd5, 0xcc, 0xf4, 0x3e, 0x87, 0x71, 0x4f, 0xd9, 0x0f, + 0x98, 0x3c, 0x38, 0xbf, 0x0f, 0x69, 0xd8, 0xcc, 0xa3, 0x4e, 0xb2, 0x13, 0x9d, 0x45, 0x83, 0xce, + 0xe3, 0x6b, 0xce, 0xcd, 0xf3, 0xfa, 0xa5, 0x83, 0x5b, 0x22, 0xfc, 0xc6, 0x96, 0x98, 0x77, 0x4b, + 0x6c, 0xbd, 0x7e, 0xfd, 0xba, 0xb2, 0xbe, 0xc9, 0xce, 0xf0, 0xdb, 0x27, 0x73, 0x6f, 0x36, 0x27, + 0x2f, 0x58, 0x0f, 0x47, 0x90, 0xd3, 0x95, 0x94, 0x98, 0x19, 0x3f, 0xd9, 0xad, 0xf0, 0x2f, 0x31, + 0xa2, 0x3f, 0x9f, 0x10, 0x31, 0xa2, 0x27, 0x4d, 0x8d, 0x18, 0xd1, 0x33, 0x27, 0x48, 0x8c, 0xc8, + 0x7f, 0x0f, 0x80, 0x18, 0xd1, 0xcf, 0x10, 0x6b, 0x50, 0x36, 0xed, 0xdc, 0x06, 0x74, 0xe1, 0xd6, + 0xba, 0x59, 0xe2, 0x71, 0xe4, 0x16, 0xbb, 0x99, 0x89, 0xfd, 0xb6, 0x3c, 0xb8, 0xc5, 0xee, 0xe4, + 0xc7, 0x97, 0xf5, 0x60, 0xfb, 0x64, 0xf8, 0xed, 0xfa, 0xe0, 0xb7, 0xe1, 0xf7, 0x95, 0x2f, 0x6b, + 0xc1, 0xc6, 0xf8, 0xfb, 0xcd, 0x2f, 0x6b, 0xc1, 0xe6, 0xc9, 0xca, 0xe0, 0xa2, 0xbb, 0x57, 0xd7, + 0x4f, 0xff, 0x87, 0xe5, 0xd1, 0x60, 0x2b, 0x3f, 0x96, 0xbf, 0xac, 0x07, 0x95, 0x93, 0xf1, 0xff, + 0xbc, 0xfa, 0xb2, 0x16, 0x54, 0x4e, 0x56, 0x56, 0xfe, 0x52, 0xc2, 0xf7, 0xc7, 0xf7, 0x9f, 0xb1, + 0xd1, 0x2c, 0x38, 0x8d, 0x72, 0xf7, 0x5c, 0xff, 0xe1, 0xb4, 0xf0, 0xfc, 0xf1, 0xfc, 0xf1, 0xfc, + 0xf1, 0xfc, 0xf1, 0xfc, 0xf1, 0xfc, 0x17, 0xc6, 0xf3, 0x3f, 0xed, 0x74, 0x62, 0x15, 0x26, 0x2e, + 0x7a, 0xfd, 0xeb, 0x38, 0x6e, 0xce, 0x38, 0x6e, 0xbd, 0x6e, 0xd0, 0xea, 0xfc, 0x91, 0xb8, 0xe7, + 0xba, 0x8d, 0x27, 0x86, 0xf3, 0x86, 0xf3, 0x86, 0xf3, 0x86, 0xf3, 0x86, 0xf3, 0x86, 0xf3, 0x86, + 0xf3, 0x86, 0xf3, 0xe6, 0x8c, 0xf3, 0xb6, 0xd0, 0x85, 0x29, 0x96, 0x7b, 0x7d, 0xcf, 0xcc, 0xc7, + 0xc5, 0xae, 0xc9, 0x0f, 0xf7, 0xae, 0x2d, 0x8f, 0xbb, 0x19, 0x8e, 0xbe, 0xb1, 0xd1, 0x17, 0xdc, + 0x1d, 0x7b, 0xb6, 0x5a, 0xf8, 0xdb, 0x3b, 0xed, 0xbf, 0x2f, 0x87, 0x4a, 0x7f, 0x47, 0x13, 0xa2, + 0xf8, 0x97, 0xe2, 0x5f, 0x6f, 0x64, 0x0d, 0xc5, 0xbf, 0xbe, 0xcb, 0x17, 0x8a, 0x7f, 0xdd, 0xf3, + 0xb1, 0x9c, 0x29, 0xfe, 0x1d, 0x72, 0x92, 0x83, 0xa7, 0xbb, 0xc3, 0x79, 0xb9, 0x15, 0x21, 0x5c, + 0x27, 0x42, 0xe8, 0x3c, 0x85, 0x3a, 0x4c, 0xa5, 0xae, 0x52, 0xaa, 0xf3, 0xd4, 0xea, 0x3c, 0xc5, + 0xba, 0x4d, 0xb5, 0xee, 0x04, 0x56, 0x96, 0x1c, 0x8a, 0x10, 0xba, 0x42, 0xc1, 0x93, 0x09, 0xb5, + 0xe3, 0xf0, 0x2c, 0x73, 0x0f, 0x14, 0xc6, 0x38, 0x3a, 0x9c, 0x9e, 0x63, 0xfb, 0xcd, 0x2d, 0x62, + 0x76, 0x96, 0xa0, 0x5d, 0x26, 0x6a, 0x0f, 0x08, 0xdb, 0x75, 0xe2, 0xf6, 0x86, 0xc0, 0xbd, 0x21, + 0x72, 0x3f, 0x08, 0xdd, 0x2d, 0x62, 0x77, 0x8c, 0xe0, 0x9d, 0x25, 0xfa, 0x1b, 0xed, 0xed, 0x44, + 0x67, 0xca, 0x9f, 0x4b, 0x71, 0x07, 0x3a, 0x56, 0x7a, 0xe6, 0x00, 0x38, 0xef, 0x08, 0xf8, 0xe0, + 0x10, 0x78, 0xe4, 0x18, 0xf8, 0xe2, 0x20, 0x78, 0xe7, 0x28, 0x78, 0xe7, 0x30, 0xf8, 0xe5, 0x38, + 0xb8, 0xe9, 0x40, 0x38, 0xea, 0x48, 0x38, 0xef, 0x50, 0x38, 0x1e, 0x49, 0xf0, 0x2a, 0xb2, 0xf0, + 0x90, 0xa3, 0xb1, 0xe6, 0xf8, 0x34, 0x5d, 0x77, 0x38, 0x7c, 0x72, 0x3c, 0x3c, 0x74, 0x40, 0x7c, + 0x73, 0x44, 0xbc, 0x75, 0x48, 0xbc, 0x75, 0x4c, 0xfc, 0x74, 0x50, 0xdc, 0x76, 0x54, 0x1c, 0x77, + 0x58, 0x26, 0xaf, 0xdc, 0xb9, 0xa4, 0xe8, 0x9f, 0x22, 0xae, 0x4a, 0x7a, 0x17, 0x2a, 0x1d, 0x26, + 0xa3, 0x7a, 0x80, 0xba, 0xe3, 0x68, 0xc4, 0x86, 0x07, 0x73, 0xad, 0x25, 0xbd, 0x8b, 0xbe, 0x31, + 0xb0, 0xa5, 0xe6, 0x59, 0xc5, 0xdd, 0x28, 0xcb, 0xab, 0x79, 0x9e, 0xfa, 0xb1, 0xad, 0xf6, 0xa2, + 0xa4, 0x16, 0xab, 0x3e, 0xea, 0xf7, 0xe5, 0x41, 0xd2, 0x8b, 0x63, 0x0f, 0x0c, 0x75, 0x2f, 0xfc, + 0xe6, 0xdf, 0xa4, 0x3f, 0xa6, 0x2d, 0x95, 0xaa, 0xd6, 0xbb, 0xab, 0xd1, 0x94, 0x5f, 0xc0, 0xaa, + 0x05, 0xdb, 0xfe, 0xa5, 0xdc, 0x07, 0x36, 0x9d, 0x30, 0xe9, 0x60, 0xb6, 0x68, 0x6c, 0x34, 0x36, + 0x1a, 0x1b, 0x8d, 0x8d, 0xc6, 0x46, 0x63, 0xa3, 0xb1, 0xd1, 0xd8, 0xc3, 0x3e, 0x92, 0x2d, 0x95, + 0xe4, 0x51, 0x7e, 0xe5, 0xc6, 0x35, 0xae, 0x8f, 0xd6, 0xd8, 0x9b, 0x1e, 0xcc, 0xb5, 0x3e, 0x5a, + 0xda, 0x77, 0x61, 0xe6, 0x11, 0x4f, 0x8c, 0x0d, 0xa3, 0x7e, 0x54, 0x3f, 0x6a, 0x1c, 0x7d, 0x7a, + 0x77, 0xbc, 0xfb, 0xb9, 0x71, 0xfc, 0x9f, 0x83, 0x9a, 0x2f, 0x74, 0x31, 0xb8, 0x9a, 0x20, 0x73, + 0xae, 0xd9, 0xe7, 0x9f, 0x7d, 0x7d, 0xf7, 0x66, 0xa6, 0x53, 0x16, 0x72, 0xf8, 0xf1, 0xd3, 0x71, + 0xed, 0xb0, 0xf1, 0xbe, 0x7a, 0x50, 0x7d, 0x57, 0xdf, 0xad, 0x1f, 0xff, 0x67, 0x64, 0x2e, 0x47, + 0x3e, 0xd9, 0x8b, 0xcf, 0x76, 0xe3, 0xa7, 0xfd, 0x3c, 0xc6, 0x8e, 0x6e, 0xff, 0x5f, 0xc9, 0xbb, + 0x4f, 0x77, 0xfd, 0x12, 0x13, 0x72, 0xc0, 0x84, 0xaa, 0xbb, 0xbf, 0x7c, 0x3c, 0xac, 0x1f, 0xff, + 0x73, 0xcf, 0x43, 0x0b, 0xf2, 0x6a, 0xc6, 0x27, 0x2f, 0xd8, 0x99, 0x38, 0x05, 0x05, 0x03, 0x73, + 0x4c, 0x05, 0xd0, 0xc6, 0x52, 0x5c, 0xd1, 0xa2, 0x8d, 0xc3, 0x5a, 0xf5, 0xfd, 0x3f, 0xd1, 0x19, + 0x58, 0x8f, 0x3e, 0x2b, 0x3a, 0xae, 0x35, 0x76, 0x6a, 0x1f, 0xaa, 0x9f, 0x76, 0x8f, 0x1b, 0x7b, + 0xb5, 0xe3, 0xc3, 0xfa, 0x7b, 0x94, 0x06, 0x46, 0xf4, 0x54, 0x23, 0xfa, 0xb4, 0xff, 0xfe, 0xe3, + 0xfe, 0xd1, 0xf1, 0x61, 0xb5, 0xbe, 0x5f, 0xdb, 0x69, 0xec, 0x1e, 0x1d, 0x60, 0x44, 0x18, 0xd1, + 0x53, 0x8d, 0x68, 0xb7, 0xbe, 0xff, 0x6b, 0x63, 0xa7, 0xb6, 0x5b, 0x25, 0xd8, 0x81, 0xf5, 0xcc, + 0x61, 0x3d, 0x8d, 0xcf, 0xd5, 0xc3, 0x7a, 0xf5, 0xb8, 0xfe, 0x71, 0x1f, 0x3b, 0xc2, 0x8e, 0x9e, + 0x6a, 0x47, 0xf5, 0x83, 0xcf, 0x5b, 0x8d, 0xfd, 0x5a, 0xfd, 0x97, 0x7f, 0xbe, 0xfb, 0x78, 0xd8, + 0xa8, 0xee, 0xec, 0x1c, 0xd6, 0x8e, 0x8e, 0x30, 0x24, 0x0c, 0xe9, 0xa9, 0x86, 0x54, 0xdd, 0xd9, + 0xab, 0xef, 0x37, 0x7e, 0x39, 0xfc, 0xf8, 0x09, 0x6f, 0x08, 0xf3, 0x79, 0x86, 0xf9, 0xfc, 0xab, + 0x71, 0x54, 0xdf, 0xc1, 0x74, 0x30, 0x9d, 0xa7, 0x9a, 0xce, 0x5e, 0xf5, 0xdf, 0x43, 0x77, 0xe8, + 0x5d, 0x75, 0x7f, 0xe7, 0xff, 0xd6, 0x77, 0x8e, 0xff, 0x89, 0x15, 0x61, 0x45, 0xcf, 0x70, 0x84, + 0x36, 0x70, 0x84, 0x30, 0x24, 0x3d, 0x1e, 0x75, 0x7d, 0xff, 0xb8, 0x76, 0xf8, 0xa1, 0xfa, 0xbe, + 0x86, 0x25, 0x61, 0x49, 0x73, 0x69, 0xfc, 0xdd, 0x8f, 0x18, 0x0f, 0xc6, 0xf3, 0x74, 0xe3, 0x99, + 0x38, 0x43, 0x8d, 0x49, 0xac, 0xfa, 0x18, 0x43, 0xc2, 0x90, 0x9e, 0x6c, 0x48, 0xb5, 0x7f, 0x1f, + 0xd7, 0xf6, 0x77, 0x6a, 0x3b, 0x28, 0x7c, 0xec, 0x68, 0x6e, 0x07, 0x1b, 0xbf, 0x08, 0x4b, 0x9a, + 0xdb, 0x92, 0x3e, 0x1d, 0xd7, 0x77, 0xeb, 0xff, 0x53, 0xdb, 0x41, 0xf0, 0x63, 0x45, 0xcf, 0xb7, + 0xa2, 0xea, 0xce, 0xbf, 0x1a, 0xbb, 0xd5, 0x7d, 0xa2, 0x8e, 0x98, 0xcf, 0x73, 0xcc, 0xa7, 0xef, + 0x0b, 0x4d, 0x22, 0x8f, 0x1c, 0xe3, 0x63, 0x45, 0xcf, 0x97, 0xf8, 0x07, 0x87, 0x1f, 0x8f, 0x6b, + 0xef, 0x8f, 0xeb, 0x1f, 0xf7, 0x87, 0xc9, 0x8d, 0xd8, 0x11, 0x76, 0xf4, 0x54, 0x32, 0xfb, 0x5c, + 0xad, 0xef, 0x56, 0xdf, 0xed, 0xd6, 0xf0, 0x89, 0x30, 0xa3, 0x39, 0xe1, 0xa8, 0x7a, 0x7c, 0x7c, + 0x58, 0x7f, 0xf7, 0xe9, 0xb8, 0x86, 0x38, 0xc3, 0x84, 0x9e, 0x2e, 0xce, 0xf6, 0x0f, 0x6b, 0x47, + 0xb5, 0xc3, 0xcf, 0xc8, 0x33, 0xec, 0x68, 0x1e, 0x3b, 0x3a, 0xac, 0x1d, 0xd5, 0x77, 0x3e, 0x55, + 0x77, 0xb1, 0x22, 0xac, 0x68, 0x0e, 0x95, 0x56, 0xfd, 0x77, 0x63, 0x88, 0x47, 0x38, 0x47, 0xd8, + 0x92, 0x06, 0xe7, 0xc8, 0xcb, 0x60, 0x11, 0x85, 0xe5, 0x8b, 0xbe, 0x25, 0x0b, 0x52, 0x03, 0xea, + 0x71, 0xf5, 0x1e, 0xc6, 0x22, 0xaf, 0x44, 0xbc, 0xad, 0xd2, 0xc3, 0x58, 0xac, 0x90, 0xbb, 0x67, + 0x61, 0x7c, 0xac, 0xc4, 0x9e, 0x95, 0xf8, 0x58, 0x75, 0x87, 0xbd, 0x48, 0xdb, 0x8b, 0xe7, 0xd5, + 0x75, 0x18, 0x8c, 0xb4, 0xc1, 0x78, 0x99, 0x63, 0x87, 0x99, 0xc8, 0x9b, 0x89, 0x67, 0xd5, 0x72, + 0x98, 0x88, 0xb4, 0x89, 0xf8, 0x5c, 0x15, 0x87, 0xb5, 0x58, 0x70, 0x54, 0x36, 0x70, 0x54, 0x30, + 0x98, 0xa7, 0x79, 0xb6, 0x1e, 0x67, 0x73, 0x63, 0x31, 0x56, 0xb4, 0xb3, 0x5f, 0xd5, 0x6c, 0x18, + 0x89, 0xb4, 0x91, 0x78, 0x5e, 0xb5, 0x86, 0xc1, 0x48, 0x1b, 0x8c, 0xdf, 0xd5, 0x69, 0xd8, 0x8b, + 0x15, 0x47, 0x17, 0xbf, 0x05, 0x8b, 0x79, 0xb4, 0xc5, 0xf8, 0x5c, 0x6d, 0x86, 0xb5, 0x48, 0x5b, + 0x8b, 0x97, 0x55, 0x65, 0x98, 0x89, 0xb4, 0x99, 0xf8, 0x5c, 0x3d, 0x86, 0xb5, 0x58, 0x91, 0xce, + 0xde, 0x56, 0x89, 0x61, 0x2f, 0xe2, 0x24, 0xe4, 0x73, 0x35, 0x18, 0xe6, 0x62, 0x05, 0x5e, 0x7c, + 0xac, 0xfa, 0xc2, 0x54, 0xc4, 0xc5, 0x90, 0xd7, 0xd5, 0x5d, 0xd8, 0x8b, 0xb4, 0xbd, 0xf8, 0x5c, + 0xc5, 0x85, 0xb5, 0x88, 0xab, 0x22, 0xef, 0xab, 0xb5, 0xb0, 0x19, 0x2b, 0xce, 0x0b, 0xc1, 0x16, + 0x4c, 0xe4, 0x96, 0x89, 0x1c, 0x70, 0x73, 0x1c, 0xd6, 0xa3, 0xdb, 0x8a, 0x06, 0x27, 0x47, 0xa3, + 0xeb, 0x2b, 0x69, 0x19, 0x86, 0x05, 0x3d, 0xdd, 0x82, 0x8e, 0xab, 0xbf, 0x6c, 0x6d, 0x60, 0x38, + 0x18, 0xce, 0x33, 0xa0, 0x67, 0x0b, 0xe8, 0xc1, 0x82, 0xe6, 0x82, 0x1e, 0xcc, 0x06, 0xb3, 0x79, + 0xaa, 0xd9, 0x1c, 0x1c, 0xd6, 0x3e, 0xd4, 0xff, 0x4d, 0x8b, 0x54, 0xac, 0x67, 0x0e, 0xeb, 0xf9, + 0xb0, 0x5b, 0xfd, 0xe5, 0x88, 0xae, 0x29, 0x66, 0xbf, 0xe8, 0x9a, 0x42, 0xfc, 0xa3, 0x68, 0xca, + 0x15, 0x4b, 0x41, 0xa1, 0x62, 0x20, 0x28, 0x51, 0x2c, 0x05, 0xc5, 0x89, 0x79, 0x14, 0xcb, 0x3c, + 0x7c, 0x54, 0x96, 0x58, 0x09, 0x0a, 0xb2, 0x38, 0xca, 0xd1, 0x7d, 0xc5, 0xe8, 0xf6, 0x3a, 0xba, + 0x3b, 0x3b, 0x37, 0x67, 0xe6, 0x28, 0x7a, 0x96, 0xaa, 0x49, 0xd2, 0xc9, 0xc3, 0x3c, 0xea, 0x24, + 0xa5, 0xb7, 0x0e, 0xe3, 0x66, 0x29, 0x6b, 0x9e, 0xab, 0x8b, 0xb0, 0x1b, 0xe6, 0xe7, 0x7d, 0xa4, + 0x2c, 0x77, 0xba, 0x2a, 0x69, 0x76, 0x92, 0x76, 0x74, 0x16, 0x24, 0x2a, 0xff, 0xa3, 0x93, 0xfe, + 0x1e, 0x44, 0x49, 0x96, 0x87, 0x49, 0x53, 0x95, 0xef, 0xfe, 0x20, 0x9b, 0xf9, 0x49, 0xb9, 0x9b, + 0x76, 0xf2, 0x4e, 0xb3, 0x13, 0x67, 0x93, 0xef, 0xca, 0x51, 0x16, 0x65, 0xe5, 0x58, 0x5d, 0xaa, + 0x78, 0xf4, 0x5b, 0x39, 0x8e, 0x92, 0xdf, 0x83, 0x2c, 0x0f, 0x73, 0x15, 0xb4, 0xc2, 0x3c, 0x3c, + 0x0d, 0x33, 0x55, 0x8e, 0xb3, 0x6e, 0x39, 0x8f, 0x2f, 0xb3, 0xfe, 0x2f, 0x65, 0xf5, 0x2d, 0x57, + 0x49, 0x4b, 0xb5, 0x82, 0xa8, 0x7b, 0xb9, 0x11, 0xa4, 0x2a, 0x6c, 0x9e, 0x87, 0xa7, 0x51, 0x1c, + 0xe5, 0x57, 0xe5, 0x6e, 0xaa, 0xda, 0xd1, 0x37, 0x95, 0x8d, 0xbe, 0x29, 0x67, 0xbd, 0xd3, 0xc1, + 0x3f, 0x1b, 0xfe, 0x5e, 0x6e, 0xc7, 0xe1, 0x59, 0x56, 0x1e, 0x3c, 0xdb, 0x4d, 0x60, 0x77, 0x6f, + 0x13, 0xb9, 0x35, 0x23, 0xc7, 0xb6, 0xb3, 0xeb, 0xdb, 0xb8, 0x88, 0xdb, 0xd7, 0xc1, 0x5c, 0xaa, + 0x52, 0x96, 0xa7, 0xbd, 0x66, 0x9e, 0x8c, 0xfc, 0xc9, 0xfd, 0xe1, 0xba, 0xd5, 0x47, 0xcb, 0xd6, + 0x38, 0x18, 0x2d, 0x56, 0xa3, 0x9e, 0x45, 0x59, 0x63, 0xb7, 0xbf, 0x4a, 0x8d, 0xdd, 0xac, 0xdb, + 0x38, 0x8e, 0x2f, 0x1b, 0xb5, 0xd1, 0x62, 0xd4, 0xbb, 0x97, 0x1b, 0x87, 0xb7, 0x96, 0xa2, 0x71, + 0x30, 0x58, 0x81, 0xc6, 0xd1, 0xe0, 0x93, 0x37, 0x3e, 0x0c, 0x3e, 0xf9, 0x0b, 0x80, 0xc1, 0x71, + 0x50, 0x28, 0x0d, 0x6c, 0x3a, 0xeb, 0xf4, 0xd2, 0xa6, 0x0a, 0xd2, 0x4e, 0x2f, 0x57, 0x69, 0x10, + 0xb5, 0x9c, 0xc3, 0x86, 0x89, 0xf4, 0xb9, 0x7f, 0xba, 0x8e, 0x81, 0xec, 0xaf, 0x51, 0xd2, 0x5f, + 0xc2, 0x75, 0xc7, 0xa6, 0xf5, 0x7e, 0x00, 0xa4, 0xa5, 0xb7, 0x4b, 0x6b, 0x8e, 0x4d, 0x6c, 0x08, + 0x1d, 0x6e, 0x12, 0xd2, 0xd8, 0xf0, 0x3a, 0xcd, 0xa0, 0x4f, 0x1d, 0x2e, 0x82, 0xf9, 0xd1, 0x60, + 0x3b, 0x38, 0xeb, 0x96, 0x97, 0x7e, 0x55, 0x57, 0x7f, 0x74, 0xd2, 0xfe, 0x8e, 0x28, 0x0d, 0x69, + 0xd2, 0xd1, 0xec, 0xe2, 0xd2, 0x3f, 0xc3, 0xac, 0x9a, 0x9e, 0xf5, 0x2e, 0x54, 0x92, 0x97, 0xde, + 0x2e, 0xe5, 0x69, 0x4f, 0xb9, 0x2a, 0xc6, 0x6e, 0x66, 0x39, 0x31, 0x4c, 0x1c, 0x71, 0xaf, 0x1c, + 0xf1, 0x9d, 0x28, 0x75, 0xd4, 0x03, 0x1f, 0x88, 0x4d, 0x67, 0xc1, 0x64, 0x8c, 0xc7, 0xc3, 0x69, + 0x3a, 0xba, 0x3f, 0xdd, 0x74, 0x00, 0x9c, 0x77, 0x04, 0x7c, 0x70, 0x08, 0x3c, 0x72, 0x0c, 0x7c, + 0x71, 0x10, 0xbc, 0x73, 0x14, 0xbc, 0x73, 0x18, 0xfc, 0x72, 0x1c, 0xdc, 0x74, 0x20, 0x1c, 0x75, + 0x24, 0x9c, 0x77, 0x28, 0x26, 0x13, 0x74, 0x37, 0xba, 0xf0, 0x20, 0xb6, 0xbb, 0x1a, 0x61, 0x78, + 0xc8, 0xe1, 0x58, 0x73, 0x7c, 0x9a, 0xae, 0x3b, 0x1e, 0x3e, 0x39, 0x20, 0x1e, 0x3a, 0x22, 0xbe, + 0x39, 0x24, 0xde, 0x3a, 0x26, 0xde, 0x3a, 0x28, 0x7e, 0x3a, 0x2a, 0x6e, 0x3b, 0x2c, 0x8e, 0x3b, + 0x2e, 0x93, 0x57, 0x7e, 0x7c, 0xd5, 0x55, 0x7e, 0x21, 0xee, 0xe0, 0x30, 0x22, 0x6c, 0xb5, 0x52, + 0x95, 0x79, 0x01, 0xbb, 0xe3, 0xb0, 0xc4, 0x1b, 0x0f, 0xe6, 0x7a, 0x10, 0xe6, 0xb9, 0x4a, 0x13, + 0x6f, 0x5a, 0x3a, 0x94, 0x7e, 0x5b, 0x5e, 0xfe, 0xb2, 0x16, 0x6c, 0x9f, 0xfc, 0xf8, 0xb2, 0x1e, + 0x6c, 0x9f, 0x0c, 0xbf, 0x5d, 0x1f, 0xfc, 0x36, 0xfc, 0xbe, 0xf2, 0x65, 0x2d, 0xd8, 0x18, 0x7f, + 0xbf, 0xf9, 0x65, 0x2d, 0xd8, 0x3c, 0x59, 0xf9, 0xfa, 0x75, 0x75, 0xe5, 0xfb, 0xab, 0xeb, 0xa7, + 0xff, 0xc3, 0xbf, 0xb8, 0x0f, 0x86, 0x27, 0xa4, 0xa5, 0x15, 0x0d, 0xa6, 0x4b, 0xb9, 0x0f, 0x10, + 0x3d, 0x81, 0xe7, 0xc1, 0x6c, 0x11, 0x6e, 0x08, 0x37, 0x84, 0x1b, 0xc2, 0x0d, 0xe1, 0x86, 0x70, + 0x43, 0xb8, 0x21, 0xdc, 0x86, 0xc2, 0xad, 0xa5, 0x92, 0x3c, 0xca, 0xaf, 0x52, 0xd5, 0xf6, 0x49, + 0xb7, 0x6d, 0x7a, 0x30, 0xd7, 0xfa, 0x68, 0x69, 0xdf, 0x85, 0x99, 0x47, 0x3c, 0x71, 0xd3, 0x36, + 0xb3, 0x7e, 0x34, 0x6a, 0x84, 0xe8, 0x53, 0x1f, 0x44, 0x1f, 0xfb, 0x1f, 0x7a, 0x5a, 0x7b, 0x37, + 0xaa, 0xea, 0x7e, 0x5f, 0x3d, 0xa0, 0x6f, 0x26, 0xf6, 0xa3, 0xd5, 0x8e, 0x6e, 0xff, 0x1f, 0x8d, + 0xa4, 0x30, 0xa1, 0x67, 0x99, 0x50, 0x75, 0xf7, 0x97, 0x8f, 0x87, 0xf5, 0xe3, 0x7f, 0xee, 0xd1, + 0x4a, 0xca, 0xec, 0x17, 0xad, 0xa4, 0x70, 0x0a, 0x0a, 0x07, 0xe6, 0x98, 0x0a, 0xa0, 0x8d, 0xa5, + 0xb8, 0xa2, 0x45, 0xe9, 0xcf, 0x8f, 0xf5, 0xe8, 0xb6, 0xa2, 0xe3, 0x5a, 0x63, 0xa7, 0xf6, 0xa1, + 0xfa, 0x69, 0xf7, 0xb8, 0xb1, 0x57, 0x3b, 0x3e, 0xac, 0xbf, 0x47, 0x69, 0x60, 0x44, 0x4f, 0x35, + 0xa2, 0x4f, 0xfb, 0xef, 0x3f, 0xee, 0x1f, 0x1d, 0x1f, 0x56, 0xeb, 0xfb, 0xb5, 0x9d, 0xc6, 0xee, + 0xd1, 0x01, 0x46, 0x84, 0x11, 0x3d, 0xd5, 0x88, 0x7c, 0xbc, 0xd4, 0x17, 0xeb, 0x71, 0xcf, 0x7a, + 0x1a, 0x9f, 0xab, 0x87, 0xf5, 0xea, 0x71, 0xfd, 0xe3, 0x3e, 0x76, 0x84, 0x1d, 0x3d, 0xd5, 0x8e, + 0x06, 0xad, 0x5a, 0xf7, 0x6b, 0xf5, 0x5f, 0xfe, 0xf9, 0xee, 0xe3, 0x61, 0xa3, 0xba, 0xb3, 0x73, + 0x58, 0x3b, 0x3a, 0xc2, 0x90, 0x30, 0xa4, 0xa7, 0x1a, 0x52, 0x75, 0x67, 0xaf, 0xbe, 0xdf, 0xf8, + 0xe5, 0xf0, 0xe3, 0x27, 0xbc, 0x21, 0xcc, 0xe7, 0x19, 0xe6, 0xf3, 0x2f, 0x2e, 0x10, 0xc1, 0x74, + 0x9e, 0x63, 0x3a, 0x7b, 0xd5, 0x7f, 0x0f, 0xdd, 0x21, 0x0f, 0x6f, 0x82, 0xc5, 0x8a, 0x1c, 0x72, + 0x84, 0x36, 0x70, 0x84, 0x30, 0x24, 0x3d, 0x1e, 0x75, 0x7d, 0xff, 0xb8, 0x76, 0xf8, 0xa1, 0xfa, + 0xbe, 0x86, 0x25, 0x61, 0x49, 0x73, 0x69, 0xfc, 0xdd, 0x8f, 0x18, 0x0f, 0xc6, 0xf3, 0x74, 0xe3, + 0x99, 0x38, 0x43, 0x8d, 0x49, 0xac, 0xfa, 0x18, 0x43, 0xc2, 0x90, 0x9e, 0x6c, 0x48, 0xb5, 0x7f, + 0x1f, 0xd7, 0xf6, 0x77, 0x6a, 0x3b, 0x28, 0x7c, 0xec, 0x68, 0x6e, 0x07, 0x1b, 0xbf, 0x08, 0x4b, + 0x9a, 0xdb, 0x92, 0x3e, 0x1d, 0xd7, 0x77, 0xeb, 0xff, 0x53, 0xdb, 0x41, 0xf0, 0x63, 0x45, 0xcf, + 0xb7, 0xa2, 0xea, 0xce, 0xbf, 0x1a, 0xbb, 0xd5, 0x7d, 0xa2, 0x8e, 0x98, 0xcf, 0x73, 0xcc, 0xa7, + 0xef, 0x0b, 0x4d, 0x22, 0x8f, 0x1c, 0xe3, 0x63, 0x45, 0xcf, 0x97, 0xf8, 0x07, 0x87, 0x1f, 0x8f, + 0x6b, 0xef, 0x8f, 0xeb, 0x1f, 0xf7, 0x87, 0xc9, 0x8d, 0xd8, 0x11, 0x76, 0xf4, 0x54, 0x32, 0xfb, + 0x5c, 0xad, 0xef, 0x56, 0xdf, 0xed, 0xd6, 0xf0, 0x89, 0x30, 0xa3, 0x39, 0xe1, 0xa8, 0x7a, 0x7c, + 0x7c, 0x58, 0x7f, 0xf7, 0xe9, 0xb8, 0x86, 0x38, 0xc3, 0x84, 0x9e, 0x2e, 0xce, 0xf6, 0x0f, 0x6b, + 0x47, 0xb5, 0xc3, 0xcf, 0xc8, 0x33, 0xec, 0x68, 0x1e, 0x3b, 0x3a, 0xac, 0x1d, 0xd5, 0x77, 0x3e, + 0x55, 0x77, 0xb1, 0x22, 0xac, 0x68, 0x0e, 0x95, 0x56, 0xfd, 0x77, 0x63, 0x88, 0x47, 0x38, 0x47, + 0xd8, 0x92, 0x06, 0xe7, 0xc8, 0xcb, 0x60, 0x11, 0x85, 0xe5, 0x8b, 0xbe, 0x25, 0x0b, 0x52, 0x03, + 0xea, 0x71, 0xf5, 0x1e, 0xc6, 0x22, 0xaf, 0x44, 0xbc, 0xad, 0xd2, 0xc3, 0x58, 0xac, 0x90, 0xbb, + 0x67, 0x61, 0x7c, 0xac, 0xc4, 0x9e, 0x95, 0xf8, 0x58, 0x75, 0x87, 0xbd, 0x48, 0xdb, 0x8b, 0xe7, + 0xd5, 0x75, 0x18, 0x8c, 0xb4, 0xc1, 0x78, 0x99, 0x63, 0x87, 0x99, 0xc8, 0x9b, 0x89, 0x67, 0xd5, + 0x72, 0x98, 0x88, 0xb4, 0x89, 0xf8, 0x5c, 0x15, 0x87, 0xb5, 0x58, 0x70, 0x54, 0x36, 0x70, 0x54, + 0x30, 0x98, 0xa7, 0x79, 0xb6, 0x1e, 0x67, 0x73, 0x63, 0x31, 0x56, 0xb4, 0xb3, 0x5f, 0xd5, 0x6c, + 0x18, 0x89, 0xb4, 0x91, 0x78, 0x5e, 0xb5, 0x86, 0xc1, 0x48, 0x1b, 0x8c, 0xdf, 0xd5, 0x69, 0xd8, + 0x8b, 0x15, 0x47, 0x17, 0xbf, 0x05, 0x8b, 0x79, 0xb4, 0xc5, 0xf8, 0x5c, 0x6d, 0x86, 0xb5, 0x48, + 0x5b, 0x8b, 0x97, 0x55, 0x65, 0x98, 0x89, 0xb4, 0x99, 0xf8, 0x5c, 0x3d, 0x86, 0xb5, 0x58, 0x91, + 0xce, 0xde, 0x56, 0x89, 0x61, 0x2f, 0xe2, 0x24, 0xe4, 0x73, 0x35, 0x18, 0xe6, 0x62, 0x05, 0x5e, + 0x7c, 0xac, 0xfa, 0xc2, 0x54, 0xc4, 0xc5, 0x90, 0xd7, 0xd5, 0x5d, 0xd8, 0x8b, 0xb4, 0xbd, 0xf8, + 0x5c, 0xc5, 0x85, 0xb5, 0x88, 0xab, 0x22, 0xef, 0xab, 0xb5, 0xb0, 0x19, 0x2b, 0xce, 0x0b, 0xc1, + 0x16, 0x4c, 0xe4, 0x96, 0x89, 0x1c, 0x70, 0x73, 0x1c, 0xd6, 0xa3, 0xdb, 0x8a, 0x06, 0x27, 0x47, + 0xa3, 0xeb, 0x2b, 0x69, 0x19, 0x86, 0x05, 0x3d, 0xdd, 0x82, 0x8e, 0xab, 0xbf, 0x6c, 0x6d, 0x60, + 0x38, 0x18, 0xce, 0x33, 0xa0, 0x67, 0x0b, 0xe8, 0xc1, 0x82, 0xe6, 0x82, 0x1e, 0xcc, 0x06, 0xb3, + 0x79, 0xaa, 0xd9, 0x1c, 0x1c, 0xd6, 0x3e, 0xd4, 0xff, 0x4d, 0x8b, 0x54, 0xac, 0x67, 0x0e, 0xeb, + 0xf9, 0xb0, 0x5b, 0xfd, 0xe5, 0x88, 0xae, 0x29, 0x66, 0xbf, 0xe8, 0x9a, 0x42, 0xfc, 0xa3, 0x68, + 0xca, 0x15, 0x4b, 0x41, 0xa1, 0x62, 0x20, 0x28, 0x51, 0x2c, 0x05, 0xc5, 0x89, 0x79, 0x14, 0xcb, + 0x3c, 0x7c, 0x54, 0x96, 0x58, 0x09, 0x0a, 0xb2, 0x38, 0xca, 0xd1, 0x7d, 0xc5, 0xe8, 0xf6, 0x3a, + 0xba, 0x3b, 0x3b, 0x37, 0x67, 0xe6, 0x28, 0x7a, 0x96, 0xaa, 0x49, 0xd2, 0xc9, 0xc3, 0x3c, 0xea, + 0x24, 0xa5, 0xb7, 0x0e, 0xe3, 0x66, 0x29, 0x6b, 0x9e, 0xab, 0x8b, 0xb0, 0x1b, 0xe6, 0xe7, 0x7d, + 0xa4, 0x2c, 0x77, 0xba, 0x2a, 0x69, 0x76, 0x92, 0x76, 0x74, 0x16, 0x24, 0x2a, 0xff, 0xa3, 0x93, + 0xfe, 0x1e, 0x44, 0x49, 0x96, 0x87, 0x49, 0x53, 0x95, 0xef, 0xfe, 0x20, 0x9b, 0xf9, 0x49, 0xb9, + 0x9b, 0x76, 0xf2, 0x4e, 0xb3, 0x13, 0x67, 0x93, 0xef, 0xca, 0x51, 0x16, 0x65, 0xe5, 0x58, 0x5d, + 0xaa, 0x78, 0xf4, 0x5b, 0x39, 0x8e, 0x92, 0xdf, 0x83, 0x2c, 0x0f, 0x73, 0x15, 0xb4, 0xc2, 0x3c, + 0x3c, 0x0d, 0x33, 0x55, 0x8e, 0xb3, 0x6e, 0x39, 0x8f, 0x2f, 0xb3, 0xfe, 0x2f, 0x65, 0xf5, 0x2d, + 0x57, 0x49, 0x4b, 0xb5, 0x82, 0xa8, 0x7b, 0xb9, 0x11, 0xa4, 0x2a, 0x6c, 0x9e, 0x87, 0xa7, 0x51, + 0x1c, 0xe5, 0x57, 0xe5, 0x6e, 0xaa, 0xda, 0xd1, 0x37, 0x95, 0x8d, 0xbe, 0x29, 0x67, 0xbd, 0xd3, + 0xc1, 0x3f, 0x1b, 0xfe, 0x5e, 0x1e, 0xfc, 0x83, 0xac, 0xd3, 0x4b, 0x9b, 0x2a, 0x48, 0x3b, 0xbd, + 0x5c, 0xa5, 0x41, 0xd4, 0x2a, 0x0f, 0xc6, 0x72, 0x13, 0xe8, 0xdd, 0xdb, 0x54, 0x6e, 0xcd, 0xc8, + 0xb1, 0xed, 0xed, 0xfa, 0xb6, 0x5e, 0x84, 0xed, 0xec, 0x60, 0xae, 0x55, 0x29, 0xcb, 0xd3, 0x5e, + 0x33, 0x4f, 0x46, 0xfe, 0xe6, 0xfe, 0x70, 0x1d, 0xeb, 0xa3, 0x65, 0x6c, 0x1c, 0x8c, 0x16, 0xaf, + 0x51, 0xcf, 0xa2, 0xac, 0xb1, 0xdb, 0x5f, 0xb5, 0xc6, 0x6e, 0xd6, 0x6d, 0x1c, 0xc7, 0x97, 0x8d, + 0xda, 0x68, 0x71, 0xea, 0xdd, 0xcb, 0x8d, 0xc3, 0x5b, 0x4b, 0xd3, 0x38, 0x18, 0xac, 0x48, 0xe3, + 0x68, 0xb0, 0x12, 0x8d, 0xfe, 0x1f, 0x1f, 0x0d, 0x16, 0xe2, 0x70, 0xb0, 0x0e, 0xf5, 0x96, 0x5b, + 0x78, 0xe6, 0x0e, 0x6a, 0x38, 0x84, 0x18, 0xa5, 0xa8, 0x7b, 0xb9, 0x35, 0x6b, 0xbf, 0xae, 0x01, + 0xc7, 0x44, 0x27, 0xdd, 0x3f, 0x5d, 0xc7, 0x10, 0xf8, 0xd7, 0x28, 0xe9, 0x2f, 0xe1, 0xba, 0x63, + 0xd3, 0x7a, 0x3f, 0x40, 0xd9, 0xd2, 0xdb, 0xa5, 0x35, 0xc7, 0x26, 0x36, 0xc4, 0x11, 0x37, 0xd9, 0x6a, 0x6c, 0x78, 0x9d, 0x66, 0xd0, 0xe7, 0x15, 0x17, 0x91, 0x7d, 0x08, 0xba, 0xce, 0xfa, 0xf0, - 0xa5, 0xdf, 0xd5, 0xe5, 0x9f, 0x9d, 0xb4, 0xbf, 0x23, 0x4a, 0x43, 0x0e, 0x75, 0x34, 0x15, 0xb9, - 0xf4, 0x5b, 0x98, 0x55, 0xd3, 0xd3, 0xde, 0xb9, 0x4a, 0xf2, 0xd2, 0xab, 0xa5, 0x3c, 0xed, 0x29, - 0x57, 0x95, 0xdb, 0xf5, 0x2c, 0x27, 0x86, 0x89, 0x97, 0xee, 0x95, 0x97, 0xbe, 0x1b, 0xa5, 0x8e, - 0xba, 0xe7, 0x03, 0x25, 0xea, 0x2c, 0x98, 0x8c, 0xf1, 0x78, 0x38, 0x4d, 0x47, 0xf7, 0xa7, 0x9b, - 0x0e, 0x80, 0xf3, 0x8e, 0x80, 0x0f, 0x0e, 0x81, 0x47, 0x8e, 0x81, 0x2f, 0x0e, 0x82, 0x77, 0x8e, - 0x82, 0x77, 0x0e, 0x83, 0x5f, 0x8e, 0x83, 0x9b, 0x0e, 0x84, 0xa3, 0x8e, 0x84, 0xf3, 0x0e, 0xc5, - 0x64, 0x82, 0xee, 0x46, 0x17, 0xee, 0xc5, 0x76, 0x97, 0x03, 0x7a, 0x77, 0x39, 0x1c, 0x6b, 0x8e, - 0x4f, 0xd3, 0x75, 0xc7, 0xc3, 0x27, 0x07, 0xc4, 0x43, 0x47, 0xc4, 0x37, 0x87, 0xc4, 0x5b, 0xc7, - 0xc4, 0x5b, 0x07, 0xc5, 0x4f, 0x47, 0xc5, 0x6d, 0x87, 0xc5, 0x71, 0xc7, 0x65, 0xf2, 0xca, 0x8f, - 0x2e, 0xbb, 0xca, 0x2f, 0xc4, 0x1d, 0x1c, 0x46, 0x84, 0xad, 0x56, 0xaa, 0x32, 0x2f, 0x60, 0x77, - 0x1c, 0x96, 0x78, 0xe9, 0xc1, 0x5c, 0x0f, 0xc2, 0x3c, 0x57, 0x69, 0xe2, 0x4d, 0xff, 0x87, 0xd2, - 0x1f, 0xcb, 0xcb, 0x9f, 0xd7, 0x82, 0x9d, 0x30, 0x68, 0x57, 0x83, 0xb7, 0xc7, 0xdf, 0xd7, 0x9f, - 0x6f, 0x5c, 0xbd, 0x5a, 0xf9, 0xbe, 0x7d, 0x75, 0xfb, 0x87, 0x3f, 0xee, 0xfa, 0x67, 0xeb, 0xcf, - 0xb7, 0xaf, 0x5e, 0xdd, 0xf3, 0x5f, 0xb6, 0xae, 0x5e, 0x3d, 0xf0, 0x19, 0x9b, 0x57, 0xcb, 0x33, - 0xff, 0xb4, 0xff, 0xf3, 0xca, 0x7d, 0xbf, 0xb0, 0x71, 0xcf, 0x2f, 0xbc, 0xb8, 0xef, 0x17, 0x5e, - 0xdc, 0xf3, 0x0b, 0xf7, 0x4e, 0xa9, 0x72, 0xcf, 0x2f, 0x6c, 0x5e, 0xfd, 0x98, 0xf9, 0xf7, 0xcb, - 0x77, 0xff, 0xd3, 0xad, 0xab, 0x95, 0x1f, 0xf7, 0xfd, 0xb7, 0xed, 0xab, 0x1f, 0xaf, 0x56, 0x56, - 0xfe, 0xe6, 0x3e, 0x35, 0x1c, 0x93, 0xd1, 0x57, 0x34, 0xd2, 0x2a, 0xe5, 0x3e, 0x10, 0xd6, 0x84, - 0xac, 0x06, 0xb3, 0x45, 0xc6, 0x22, 0x63, 0x91, 0xb1, 0xc8, 0x58, 0x64, 0x2c, 0x32, 0x16, 0x19, - 0x8b, 0x8c, 0x1d, 0xca, 0xd8, 0x96, 0x4a, 0xf2, 0x28, 0xbf, 0x4c, 0x55, 0xdb, 0x27, 0x15, 0xbb, - 0xe9, 0xc1, 0x5c, 0xeb, 0xa3, 0xa5, 0x7d, 0x1d, 0x66, 0x1e, 0xf1, 0xc4, 0xf5, 0xfd, 0x06, 0xf5, - 0x0f, 0xa3, 0x1e, 0x92, 0x3e, 0xb5, 0x90, 0xf4, 0xb1, 0x75, 0x64, 0x41, 0x6e, 0xc0, 0xa0, 0xe1, - 0x28, 0xd6, 0x33, 0xbf, 0x15, 0x55, 0x3f, 0x55, 0xeb, 0x7b, 0xd5, 0xd7, 0x7b, 0x35, 0x1f, 0xef, - 0x7e, 0xf3, 0xc4, 0x4f, 0x59, 0x00, 0x33, 0x3a, 0xac, 0x7d, 0xa8, 0xef, 0x7e, 0xac, 0xee, 0x61, - 0x45, 0x58, 0xd1, 0x1c, 0x60, 0xb4, 0xfb, 0x2f, 0x5a, 0xd7, 0x62, 0x3a, 0x4f, 0x31, 0x9d, 0xc1, - 0x1d, 0x83, 0x07, 0x87, 0xef, 0x8f, 0x6a, 0x6f, 0x8e, 0xea, 0xef, 0xdf, 0x0d, 0xbd, 0x22, 0xec, - 0x08, 0x3b, 0x7a, 0x8a, 0x1d, 0x79, 0x76, 0x0b, 0x3b, 0xd6, 0xe3, 0x9e, 0xf5, 0x34, 0x3e, 0x55, - 0x0f, 0xeb, 0xd5, 0x3e, 0x14, 0x61, 0x47, 0xd8, 0xd1, 0x63, 0xed, 0x68, 0xd0, 0xfe, 0xae, 0xfe, - 0xee, 0xa8, 0x76, 0xf8, 0xb6, 0xfa, 0xa6, 0xe6, 0xdf, 0x7d, 0xa8, 0x58, 0x92, 0x2b, 0x96, 0x34, - 0xd1, 0x63, 0x8d, 0x37, 0xef, 0xdf, 0x7d, 0x38, 0x3a, 0xac, 0xd6, 0xdf, 0x1d, 0x61, 0x48, 0x18, - 0xd2, 0xa3, 0x0d, 0x69, 0xbf, 0xfa, 0xef, 0xbe, 0xca, 0xaf, 0x1d, 0x7e, 0x22, 0x5a, 0x84, 0x2d, - 0x69, 0x70, 0x93, 0xaa, 0x47, 0x47, 0x87, 0xf5, 0xd7, 0x1f, 0x8f, 0x6a, 0xc0, 0x11, 0x26, 0xf4, - 0x68, 0x13, 0xfa, 0x78, 0x54, 0xdf, 0xab, 0xff, 0x4f, 0x6d, 0x17, 0x20, 0xc2, 0x8a, 0x9e, 0x6e, - 0x45, 0xb5, 0x7f, 0x1f, 0xd5, 0xde, 0xed, 0xd6, 0x76, 0xfd, 0xbc, 0x4e, 0x1e, 0x3b, 0x72, 0xc5, - 0x8e, 0xaa, 0xbb, 0xff, 0x6a, 0xec, 0x55, 0xdf, 0x11, 0xbc, 0xc6, 0x7c, 0x9e, 0x44, 0x66, 0xef, - 0x26, 0xe2, 0xac, 0xb6, 0xdb, 0xd8, 0xfb, 0x00, 0x06, 0x61, 0x44, 0x8f, 0x36, 0xa2, 0x41, 0x9f, - 0x73, 0x62, 0x46, 0x58, 0xd2, 0xdc, 0x96, 0x74, 0x54, 0x6b, 0xec, 0xd6, 0xde, 0x56, 0x3f, 0xee, - 0x1d, 0x35, 0xf6, 0x6b, 0x47, 0x87, 0xf5, 0x37, 0x18, 0x11, 0x46, 0xf4, 0x58, 0x23, 0xea, 0xfb, - 0xd3, 0xfb, 0xd5, 0x7f, 0x73, 0xa0, 0x86, 0x15, 0xcd, 0x61, 0x45, 0x03, 0xeb, 0xd9, 0x7b, 0x0f, - 0x8f, 0x61, 0x3c, 0x4f, 0x80, 0xa0, 0x31, 0xfc, 0x10, 0x23, 0xc2, 0x8a, 0xe6, 0x10, 0x67, 0xc3, - 0x63, 0x0f, 0x62, 0x8d, 0xd8, 0xd1, 0x9c, 0xfa, 0x6c, 0xab, 0xf1, 0xae, 0x56, 0xff, 0xf5, 0xb7, - 0xd7, 0xef, 0x0f, 0x91, 0x67, 0x18, 0xd2, 0x5c, 0x3e, 0x11, 0x81, 0x46, 0x4c, 0xe7, 0x49, 0x18, - 0xb4, 0x01, 0x06, 0x61, 0x48, 0x73, 0x1b, 0x92, 0xdf, 0xe7, 0x65, 0x5c, 0xba, 0xbe, 0xe8, 0xdb, - 0xb2, 0x20, 0x35, 0xa0, 0x5e, 0x57, 0xef, 0x61, 0x2e, 0xd2, 0xe6, 0xe2, 0x73, 0x95, 0x1e, 0xd6, - 0x22, 0xcf, 0xf1, 0xff, 0xe2, 0x9a, 0x7e, 0x4c, 0xa4, 0xb8, 0x55, 0x77, 0xd8, 0x8b, 0x15, 0x7b, - 0xf1, 0xec, 0x30, 0x10, 0x2b, 0xb1, 0x67, 0x25, 0x3e, 0x56, 0xd1, 0x61, 0x2f, 0xd2, 0xf6, 0xe2, - 0x7b, 0xb5, 0x1c, 0x16, 0x23, 0x6d, 0x31, 0x9e, 0x57, 0xc5, 0x61, 0x30, 0xd2, 0x06, 0xe3, 0x7f, - 0xf5, 0x1b, 0x36, 0x63, 0xc5, 0x8d, 0xf1, 0xb1, 0xca, 0x0d, 0x53, 0x91, 0x36, 0x15, 0x9f, 0xab, - 0xd9, 0xb0, 0x16, 0x69, 0x6b, 0xf1, 0xbb, 0x6a, 0x0d, 0x7b, 0x91, 0xb6, 0x17, 0x2f, 0xab, 0xd3, - 0x30, 0x13, 0x71, 0x12, 0xf2, 0xb7, 0x0a, 0x0d, 0x63, 0xb1, 0x10, 0x73, 0xd9, 0x20, 0xe6, 0x82, - 0xc5, 0x3c, 0xdc, 0x62, 0x3c, 0xae, 0x2a, 0xc3, 0x58, 0xc4, 0xe3, 0x2d, 0x1e, 0x57, 0x8f, 0x61, - 0x2d, 0x56, 0x22, 0x2d, 0x7e, 0x55, 0x89, 0x61, 0x24, 0xe2, 0x90, 0xe2, 0x71, 0x35, 0x18, 0xd6, - 0x22, 0x2f, 0x86, 0x7c, 0xae, 0xfa, 0xc2, 0x5e, 0x2c, 0xe8, 0x21, 0x9f, 0xab, 0xbb, 0x30, 0x18, - 0x2b, 0x3e, 0x0b, 0x01, 0x39, 0x4c, 0xa4, 0xb0, 0xd5, 0x5a, 0x18, 0x8c, 0xb4, 0xc1, 0x70, 0x1e, - 0x84, 0x99, 0xdc, 0x61, 0x26, 0x87, 0xef, 0x3f, 0x1e, 0xd5, 0x0e, 0x1b, 0x6f, 0xaa, 0x07, 0xdc, - 0x1d, 0x87, 0xfd, 0x68, 0xb5, 0xa3, 0x9b, 0xff, 0x8f, 0x3a, 0x62, 0x4c, 0xe8, 0x49, 0x26, 0x54, - 0xdd, 0xfb, 0xf5, 0xfd, 0x61, 0xfd, 0xe8, 0xb7, 0x7d, 0x4a, 0x89, 0xcd, 0x7e, 0x51, 0x4a, 0x8c, - 0x53, 0x50, 0x38, 0x30, 0xc7, 0x54, 0x00, 0x6d, 0x2c, 0xc5, 0x11, 0x41, 0x7a, 0xc0, 0x1d, 0xd5, - 0x58, 0x8f, 0x6e, 0x2b, 0x3a, 0x38, 0xac, 0xbd, 0xad, 0xff, 0xbb, 0xf1, 0x76, 0xaf, 0xfa, 0x2b, - 0xcd, 0x8a, 0xb0, 0x9f, 0xa7, 0xda, 0x0f, 0x97, 0x33, 0x60, 0x3d, 0x4f, 0xb0, 0x9e, 0xc1, 0xc9, - 0xde, 0xc8, 0x05, 0xc2, 0x82, 0xb0, 0xa0, 0xc7, 0x5b, 0xd0, 0x51, 0xf5, 0xd7, 0xad, 0x0d, 0x0c, - 0x07, 0xc3, 0x79, 0x02, 0xf4, 0x6c, 0x00, 0x3d, 0x58, 0xd0, 0x5c, 0xd0, 0x43, 0x50, 0xd5, 0xec, - 0x17, 0x41, 0x55, 0xe2, 0x1f, 0xc5, 0x52, 0xae, 0xd8, 0x09, 0x0a, 0x15, 0x2b, 0x41, 0x89, 0x62, - 0x29, 0x28, 0x4e, 0x0c, 0xa4, 0xa8, 0x50, 0xb2, 0x01, 0x94, 0x60, 0x29, 0x05, 0x53, 0x90, 0x7e, - 0x28, 0x47, 0xf7, 0x15, 0xa3, 0xdb, 0xeb, 0xe8, 0xee, 0xec, 0xdc, 0x9c, 0x99, 0xa3, 0xa0, 0x59, - 0xaa, 0x26, 0x49, 0x27, 0x0f, 0xf3, 0xa8, 0x93, 0x94, 0x5e, 0x39, 0x0c, 0x97, 0xa5, 0xac, 0x79, - 0xa6, 0xce, 0xc3, 0x6e, 0x98, 0x9f, 0xf5, 0x01, 0xb2, 0xdc, 0xe9, 0xaa, 0xa4, 0xd9, 0x49, 0xda, - 0xd1, 0x69, 0x90, 0xa8, 0xfc, 0xcf, 0x4e, 0xfa, 0x35, 0x88, 0x92, 0x2c, 0x0f, 0x93, 0xa6, 0x2a, - 0xdf, 0xfe, 0x41, 0x36, 0xf3, 0x93, 0x72, 0x37, 0xed, 0xe4, 0x9d, 0x66, 0x27, 0xce, 0x26, 0xdf, - 0x95, 0xa3, 0x2c, 0xca, 0xca, 0xb1, 0xba, 0x50, 0xf1, 0xe8, 0xaf, 0x72, 0x1c, 0x25, 0x5f, 0x83, - 0x2c, 0x0f, 0x73, 0x15, 0xb4, 0xc2, 0x3c, 0x3c, 0x09, 0x33, 0x55, 0x8e, 0xb3, 0x6e, 0x39, 0x8f, - 0x2f, 0xb2, 0xfe, 0x1f, 0x65, 0xf5, 0x2d, 0x57, 0x49, 0x4b, 0xb5, 0x82, 0xa8, 0x7b, 0xb1, 0x11, - 0xa4, 0x2a, 0x6c, 0x9e, 0x85, 0x27, 0x51, 0x1c, 0xe5, 0x97, 0xe5, 0x6e, 0xaa, 0xda, 0xd1, 0x37, - 0x95, 0x8d, 0xbe, 0x29, 0x67, 0xbd, 0x93, 0xc1, 0xaf, 0x0d, 0xff, 0x2e, 0x47, 0xdd, 0x8b, 0xad, - 0x20, 0xeb, 0xf4, 0xd2, 0xa6, 0x0a, 0xd2, 0x4e, 0x2f, 0x57, 0x69, 0x10, 0xb5, 0xca, 0x83, 0xb1, - 0xdc, 0x04, 0x7a, 0xf7, 0x36, 0x95, 0x5b, 0x33, 0x72, 0x6c, 0x7b, 0xbb, 0xbe, 0xad, 0x17, 0x61, - 0x3b, 0x3b, 0x98, 0x6b, 0x55, 0xca, 0xf2, 0xb4, 0xd7, 0xcc, 0x93, 0x91, 0x9b, 0xf9, 0x6e, 0xb8, - 0x8e, 0xf5, 0xd1, 0x32, 0x36, 0x0e, 0x46, 0x8b, 0xd7, 0xa8, 0x67, 0x51, 0xd6, 0xd8, 0xeb, 0xaf, - 0x5a, 0x63, 0x2f, 0xeb, 0x36, 0x8e, 0xe2, 0x8b, 0x46, 0x6d, 0xb4, 0x38, 0xf5, 0xee, 0xc5, 0xc6, - 0xe1, 0x8d, 0xa5, 0x69, 0x1c, 0x0c, 0x56, 0xa4, 0xf1, 0x61, 0xb0, 0x12, 0x8d, 0x7a, 0xf7, 0x62, - 0xeb, 0xc3, 0x60, 0x21, 0x0e, 0x07, 0xeb, 0x50, 0x6f, 0xb9, 0x85, 0x67, 0xee, 0xa0, 0x86, 0x43, - 0x88, 0x51, 0x1a, 0x5a, 0x75, 0x90, 0x45, 0xad, 0xcc, 0x39, 0xb8, 0x98, 0x88, 0xa2, 0x9b, 0x93, - 0x74, 0x0c, 0x6d, 0x7f, 0x8f, 0x92, 0x56, 0xe9, 0xd5, 0xd2, 0xba, 0x63, 0xd3, 0x7a, 0x33, 0x40, - 0xd4, 0xd2, 0xab, 0xa5, 0x35, 0xc7, 0x26, 0x36, 0xc4, 0x0c, 0x37, 0x99, 0x69, 0x6c, 0x6e, 0x9d, - 0x66, 0xd0, 0xe7, 0x10, 0x17, 0x51, 0x7c, 0x08, 0xb0, 0xce, 0xfa, 0xeb, 0xa5, 0xdf, 0xd5, 0xe5, - 0x9f, 0x9d, 0xb4, 0x75, 0xbd, 0x69, 0x1d, 0x4d, 0x3b, 0x2e, 0xfd, 0x16, 0x66, 0xd5, 0xf4, 0xb4, - 0x77, 0xae, 0x92, 0xbc, 0xf4, 0x6a, 0x29, 0x4f, 0x7b, 0xca, 0x55, 0x95, 0x76, 0x3d, 0xcb, 0x89, - 0x61, 0xe2, 0x91, 0x7b, 0xe5, 0x91, 0xef, 0x46, 0xa9, 0x9b, 0x80, 0x77, 0xcd, 0xab, 0xee, 0x22, - 0xca, 0xac, 0x0f, 0xe0, 0x2a, 0xa4, 0xb8, 0xe9, 0x0a, 0x38, 0xef, 0x12, 0xf8, 0xe0, 0x1a, 0x78, - 0xe4, 0x22, 0xf8, 0xe2, 0x2a, 0x78, 0xe7, 0x32, 0x78, 0xe7, 0x3a, 0xf8, 0xe5, 0x42, 0xb8, 0xe9, - 0x4a, 0x38, 0xea, 0x52, 0x38, 0xef, 0x5a, 0x4c, 0x26, 0x38, 0x0c, 0x6c, 0x3b, 0x0f, 0x42, 0x63, - 0x5c, 0x1f, 0x4e, 0xd7, 0xf1, 0xfd, 0xec, 0xb6, 0xa3, 0xe1, 0x8d, 0xc3, 0xe1, 0x93, 0xe3, 0xe1, - 0xa1, 0x03, 0xe2, 0x9b, 0x23, 0xe2, 0xad, 0x43, 0xe2, 0xad, 0x63, 0xe2, 0xa7, 0x83, 0xe2, 0xb6, - 0xa3, 0xe2, 0xb8, 0xc3, 0xe2, 0x8d, 0xe3, 0x32, 0x99, 0x68, 0x18, 0x9f, 0x76, 0xd2, 0x28, 0x3f, - 0x3b, 0xf7, 0x07, 0xc0, 0xc6, 0x1c, 0x71, 0x3d, 0x75, 0x4f, 0x70, 0x60, 0xe4, 0xd8, 0xac, 0x79, - 0x32, 0x5d, 0x5f, 0x1c, 0x1c, 0x1f, 0x1d, 0x1d, 0x8f, 0x1d, 0x1e, 0x5f, 0x1d, 0x1f, 0xef, 0x1d, - 0x20, 0xef, 0x1d, 0x21, 0xbf, 0x1d, 0x22, 0x3f, 0x1c, 0x23, 0x4f, 0x1c, 0xa4, 0x89, 0x29, 0x1c, - 0x5d, 0x76, 0x95, 0x9f, 0x88, 0xdd, 0x8b, 0x92, 0xfc, 0xa5, 0x4f, 0x78, 0x3d, 0x72, 0x3f, 0x36, - 0x3d, 0x9a, 0xf2, 0x61, 0x98, 0x9c, 0x2a, 0xef, 0x9a, 0x64, 0xf9, 0x57, 0xe5, 0x5f, 0xda, 0x8f, - 0x12, 0xef, 0x88, 0xdc, 0x53, 0xbf, 0x7a, 0x66, 0xfa, 0x83, 0x56, 0x70, 0x1e, 0xcf, 0xff, 0x6d, - 0x1a, 0x36, 0xf3, 0xa8, 0x93, 0xec, 0x46, 0xa7, 0x51, 0x9e, 0xf5, 0x3f, 0x08, 0xad, 0x44, 0x24, - 0xb6, 0x6c, 0xf8, 0x8d, 0x2d, 0x6b, 0x79, 0xcb, 0x56, 0x36, 0x37, 0xd9, 0xb4, 0x38, 0xe2, 0xc5, - 0x9a, 0xed, 0xff, 0xcf, 0xde, 0xdb, 0x35, 0xb5, 0x8d, 0x2d, 0xdf, 0xc3, 0xf7, 0xf3, 0x29, 0x28, - 0xd5, 0xef, 0x62, 0x52, 0x35, 0x8e, 0x81, 0x18, 0x18, 0xb8, 0x13, 0x58, 0x24, 0x9a, 0x18, 0xe3, - 0xb2, 0x05, 0x27, 0x73, 0x32, 0x1c, 0x95, 0xb0, 0x37, 0x44, 0xcf, 0x18, 0xd9, 0x25, 0xc9, 0x24, - 0xfc, 0x67, 0xf8, 0xee, 0x4f, 0xf9, 0x4d, 0x10, 0x8c, 0x13, 0x5e, 0x2c, 0xed, 0x5e, 0x5b, 0x8b, - 0x8b, 0x09, 0xc3, 0x24, 0x93, 0x96, 0xbc, 0xba, 0x7b, 0x75, 0xef, 0x5e, 0xbd, 0x31, 0x56, 0xce, - 0xc8, 0x7f, 0x9f, 0x00, 0x49, 0xc5, 0xba, 0xe8, 0x07, 0x97, 0x09, 0x5e, 0xeb, 0x77, 0x6a, 0x36, - 0xdb, 0xbe, 0x79, 0x98, 0xcb, 0xb6, 0x6f, 0x81, 0x40, 0x66, 0xdb, 0xb7, 0x38, 0x37, 0x64, 0xdb, - 0x57, 0xf3, 0x03, 0xb0, 0xed, 0x4b, 0xce, 0x31, 0x83, 0x02, 0x6e, 0xdb, 0x57, 0x45, 0xa3, 0x2b, - 0x15, 0x4f, 0x05, 0xc8, 0x78, 0xcd, 0xdf, 0x8d, 0x1a, 0x90, 0xcd, 0x4e, 0x34, 0x9a, 0x8c, 0x25, - 0xd0, 0xf5, 0x56, 0xf9, 0x56, 0x1b, 0x61, 0x92, 0xda, 0x69, 0x1a, 0x63, 0xb9, 0xdf, 0x51, 0x18, - 0x39, 0x7d, 0x35, 0xce, 0x1e, 0xe3, 0x72, 0x25, 0x1a, 0xf5, 0xfb, 0x40, 0x40, 0x3e, 0x0a, 0xbe, - 0xe1, 0x1a, 0x7f, 0x1c, 0xf7, 0x54, 0xac, 0x7a, 0xfb, 0x37, 0x33, 0xd3, 0xd9, 0x1d, 0x28, 0x4d, - 0x77, 0xe0, 0x7a, 0xd6, 0xe6, 0x04, 0xeb, 0x0e, 0x4c, 0xcd, 0x66, 0x77, 0x80, 0xdd, 0x01, 0x76, - 0x07, 0xd8, 0x1d, 0x60, 0x77, 0x80, 0xdd, 0x01, 0xf2, 0x0d, 0x76, 0x07, 0x0a, 0x89, 0xd8, 0xa3, - 0x30, 0x4a, 0xdf, 0x6d, 0x02, 0x36, 0x06, 0x76, 0x38, 0x15, 0x96, 0xf3, 0x17, 0xa7, 0xc2, 0x48, - 0xac, 0x9f, 0x61, 0x3e, 0xa7, 0xc2, 0x98, 0x2e, 0x5f, 0xe2, 0xb2, 0x9c, 0x0a, 0xd3, 0xee, 0xb2, - 0xb5, 0xcd, 0xdd, 0xda, 0xee, 0xf6, 0xce, 0xe6, 0x2e, 0x87, 0xc3, 0x48, 0xc8, 0x0d, 0xb3, 0x96, - 0xc3, 0x61, 0x65, 0xb0, 0x50, 0xba, 0xbc, 0x1a, 0x64, 0xb7, 0x7b, 0x66, 0xaf, 0x59, 0x4b, 0xa1, - 0xef, 0xed, 0xab, 0xbd, 0xf7, 0xbd, 0xe4, 0x25, 0xef, 0xf2, 0xbd, 0x4e, 0xb0, 0xc7, 0x81, 0x1c, - 0x03, 0x41, 0x1d, 0xff, 0x80, 0x50, 0x5d, 0x2e, 0x39, 0xca, 0x13, 0xa8, 0x5c, 0x72, 0x94, 0x9f, - 0x7b, 0x71, 0xc9, 0x51, 0xd1, 0x94, 0x8c, 0x4b, 0x8e, 0xca, 0xc6, 0xc2, 0x61, 0x8e, 0x69, 0xb2, - 0x88, 0xdb, 0x57, 0xc1, 0x45, 0xac, 0x2e, 0x10, 0x22, 0xee, 0x7c, 0x60, 0x13, 0xe0, 0x60, 0xc6, - 0x6a, 0xcd, 0x0a, 0x9b, 0xb7, 0x6f, 0xa7, 0x45, 0x40, 0x75, 0x4a, 0xc1, 0x58, 0x0a, 0x18, 0x64, - 0x99, 0xd4, 0x15, 0xb1, 0x1f, 0xd5, 0x8d, 0x74, 0xd2, 0x8f, 0x31, 0x72, 0x0b, 0x35, 0x62, 0x0b, - 0x35, 0x52, 0x8b, 0x31, 0x42, 0xcb, 0x7b, 0x1c, 0x5f, 0x67, 0x67, 0x19, 0x7a, 0x7c, 0x92, 0x2f, - 0x04, 0xc8, 0xfd, 0x06, 0xb8, 0xe9, 0xbf, 0x75, 0xc2, 0x1e, 0x2f, 0xb2, 0x44, 0xb4, 0x88, 0x17, - 0x59, 0x32, 0x9e, 0x4d, 0xef, 0xd8, 0xe3, 0xbd, 0x8d, 0xd2, 0x1d, 0x44, 0xe8, 0xbd, 0x0a, 0xa2, - 0xef, 0x51, 0xe0, 0x5d, 0x8d, 0xcf, 0xed, 0x5a, 0xf0, 0xae, 0xc6, 0xd7, 0x98, 0xc8, 0xbb, 0x1a, - 0x57, 0x64, 0x28, 0xef, 0x6a, 0x24, 0xe9, 0x2c, 0xea, 0x23, 0x14, 0x7b, 0x57, 0x63, 0x2a, 0xf9, - 0x2c, 0x21, 0x0b, 0xc7, 0x13, 0x2b, 0x65, 0xdf, 0xcf, 0xb8, 0xce, 0xfb, 0x19, 0x8d, 0xa3, 0x03, - 0x40, 0xb4, 0x00, 0x85, 0x1e, 0xc0, 0xd1, 0x04, 0x38, 0xba, 0x80, 0x45, 0x1b, 0x64, 0xd2, 0x07, - 0xa1, 0x34, 0x22, 0xfb, 0x68, 0xc5, 0x4f, 0x00, 0x64, 0x11, 0x33, 0xec, 0xa9, 0x28, 0x0d, 0xd3, - 0x1b, 0xd9, 0xa7, 0xff, 0x59, 0x0d, 0x2f, 0x58, 0x39, 0x62, 0xb9, 0xb3, 0x57, 0xb9, 0x1f, 0x24, - 0x40, 0x53, 0xa1, 0x6e, 0xc7, 0xed, 0xf8, 0x9d, 0x93, 0x7d, 0xaf, 0x71, 0xea, 0x7b, 0x7f, 0xb6, - 0x1c, 0xe9, 0x61, 0x7e, 0x22, 0x26, 0x4a, 0x20, 0x54, 0xae, 0x60, 0xeb, 0x61, 0xdc, 0x8e, 0xdf, - 0x76, 0xec, 0x83, 0x0f, 0xf6, 0xbe, 0xdb, 0x70, 0xbd, 0x3f, 0x67, 0xa0, 0xe8, 0x20, 0xa0, 0x02, - 0x11, 0x1d, 0x58, 0x28, 0xf9, 0x29, 0x5a, 0xec, 0x53, 0xdb, 0x6d, 0xd8, 0xfb, 0x0d, 0xc7, 0xdf, - 0xb7, 0x9b, 0xf5, 0xff, 0xb8, 0x75, 0xef, 0x03, 0xd0, 0x9a, 0x8a, 0xdf, 0x08, 0x97, 0x62, 0xe1, - 0xd2, 0x76, 0x3a, 0x6e, 0xfd, 0xc4, 0x6e, 0x10, 0x2d, 0x44, 0xcb, 0x13, 0x82, 0x4b, 0xfd, 0x0f, - 0xbf, 0xe3, 0xd6, 0x09, 0x11, 0x42, 0x64, 0x19, 0x44, 0x1a, 0x6e, 0xf3, 0xa3, 0xdf, 0x6a, 0x1f, - 0x7b, 0xce, 0x81, 0xe7, 0x1e, 0x37, 0xa7, 0xac, 0x85, 0x78, 0x21, 0x5e, 0x7e, 0x84, 0x97, 0xba, - 0xd3, 0xb0, 0xff, 0x24, 0x4a, 0x88, 0x92, 0x9f, 0xa3, 0xc4, 0x3f, 0xb5, 0xdb, 0xae, 0x3d, 0x0e, - 0x2d, 0xc4, 0x0b, 0xf1, 0xb2, 0x0c, 0x2f, 0x6e, 0xeb, 0x74, 0xdb, 0x77, 0x9b, 0x9e, 0xd3, 0x3e, - 0xb4, 0x0f, 0x1c, 0xdf, 0xae, 0xd7, 0xdb, 0x4e, 0xa7, 0x43, 0xc4, 0x10, 0x31, 0xcb, 0x10, 0x93, - 0xd5, 0x3f, 0xfe, 0xc1, 0x71, 0xb3, 0xe3, 0xb5, 0x6d, 0xb7, 0xe9, 0x11, 0x30, 0x04, 0xcc, 0x52, - 0xc0, 0x1c, 0xd9, 0x9f, 0xc6, 0xd5, 0xb3, 0xd3, 0x3e, 0x65, 0xb7, 0x85, 0x98, 0x79, 0x06, 0x8d, - 0xb1, 0x3d, 0xaf, 0xed, 0xee, 0x9f, 0x78, 0x0e, 0xc3, 0x0b, 0xa1, 0xb2, 0x14, 0x2a, 0x27, 0x9e, - 0xdb, 0x70, 0xff, 0xeb, 0xd4, 0x19, 0x58, 0x88, 0x96, 0x9f, 0xa3, 0xc5, 0xf9, 0xe4, 0x39, 0xcd, - 0xba, 0x53, 0xf7, 0xed, 0xfa, 0x91, 0xdb, 0xf4, 0xdf, 0xb7, 0x8f, 0x4f, 0x5a, 0xc4, 0x0b, 0xf1, - 0xf2, 0xa3, 0x46, 0x6e, 0xc3, 0x6e, 0xb2, 0x99, 0x4b, 0x98, 0xfc, 0x30, 0x09, 0x35, 0xb3, 0x62, - 0xc8, 0xa9, 0xfb, 0x8d, 0x0e, 0x63, 0x0a, 0xc1, 0xf2, 0xa3, 0x9e, 0x4b, 0x8d, 0x3d, 0x17, 0x22, - 0xe6, 0xe9, 0x88, 0xf1, 0x1c, 0xbf, 0xee, 0x1c, 0xda, 0x27, 0x0d, 0xcf, 0x3f, 0x72, 0xbc, 0xb6, - 0x7b, 0x40, 0xb0, 0x10, 0x2c, 0x4b, 0xfb, 0x2d, 0x6e, 0x73, 0xd2, 0x73, 0xe1, 0x81, 0x11, 0xd1, - 0xf2, 0xc4, 0x4e, 0x4b, 0xe3, 0x98, 0xf9, 0x87, 0x20, 0xf9, 0x71, 0x0b, 0x77, 0x02, 0x14, 0xf6, - 0x58, 0x88, 0x96, 0x27, 0x14, 0x43, 0xd3, 0x76, 0x3f, 0x7b, 0x72, 0xc4, 0xcb, 0x13, 0xeb, 0xa1, - 0x6d, 0xbf, 0xe9, 0xb8, 0xef, 0x3f, 0xec, 0x1f, 0xb7, 0x59, 0x0e, 0x11, 0x30, 0x4f, 0xe2, 0x2c, - 0x6c, 0xc8, 0x11, 0x22, 0x3f, 0xe9, 0xb1, 0x30, 0xa6, 0x10, 0x30, 0x4f, 0x05, 0x0c, 0xe6, 0x79, - 0x10, 0x84, 0xa5, 0x67, 0xbc, 0xc3, 0xbd, 0x2c, 0x6e, 0x66, 0x96, 0xda, 0x8a, 0xb0, 0xc8, 0x1b, - 0x16, 0x88, 0xaa, 0x2a, 0xa2, 0x22, 0xff, 0x5c, 0x0c, 0xa2, 0x9e, 0x22, 0x14, 0x0a, 0x29, 0xf5, - 0xe0, 0x54, 0x52, 0xc4, 0x45, 0x21, 0xb8, 0x00, 0x39, 0xdc, 0x22, 0x1a, 0x8a, 0x43, 0x03, 0x92, - 0xea, 0x89, 0xb8, 0xc8, 0x1b, 0x17, 0xa8, 0xea, 0x26, 0x22, 0x23, 0x6f, 0x64, 0x80, 0xaa, 0x98, - 0x08, 0x8c, 0xbc, 0x81, 0x81, 0xab, 0x56, 0x22, 0x36, 0x0a, 0xa1, 0x19, 0x48, 0xaa, 0x24, 0x42, - 0x22, 0x6f, 0x48, 0x20, 0xaa, 0x8f, 0x88, 0x8a, 0xbc, 0x51, 0x81, 0xa9, 0x32, 0x22, 0x2e, 0xf2, - 0xc6, 0x05, 0x94, 0x9a, 0x88, 0x70, 0xc8, 0x3d, 0x79, 0xe0, 0xa9, 0x86, 0x08, 0x8a, 0x02, 0x7a, - 0x16, 0x35, 0xf6, 0x2c, 0x88, 0x0c, 0x23, 0x54, 0x40, 0x04, 0x45, 0xee, 0xfd, 0x0a, 0x40, 0xb5, - 0x0f, 0x51, 0x51, 0x48, 0xa7, 0x02, 0x43, 0xd5, 0x43, 0x30, 0xe4, 0x1e, 0x22, 0x00, 0xd5, 0x3b, - 0x44, 0x45, 0xfe, 0xc5, 0x07, 0xa2, 0x4a, 0x87, 0xb8, 0x28, 0xa0, 0xfe, 0x40, 0x54, 0xe3, 0x10, - 0x18, 0x85, 0x70, 0x0a, 0x36, 0xae, 0x08, 0x05, 0x58, 0x75, 0x0d, 0x81, 0x91, 0x37, 0x30, 0x78, - 0xde, 0x51, 0x6a, 0x38, 0xb4, 0x8f, 0x4f, 0x3c, 0xa7, 0xed, 0x1f, 0xd8, 0x2d, 0xde, 0xc9, 0x44, - 0x9c, 0xbc, 0x08, 0x2f, 0xf7, 0xff, 0x8d, 0x7a, 0x4d, 0x42, 0xe5, 0x87, 0x50, 0xb1, 0x1b, 0xef, - 0x8f, 0xdb, 0xae, 0xf7, 0xe1, 0x88, 0x92, 0xcd, 0xd5, 0x7e, 0x51, 0xb2, 0xc9, 0xe4, 0x0d, 0x17, - 0x8c, 0x09, 0x09, 0x06, 0x5d, 0x22, 0x22, 0xe7, 0x82, 0xaf, 0xc5, 0x3b, 0x57, 0x89, 0x92, 0x97, - 0xa2, 0xa5, 0xd5, 0x76, 0x0e, 0xdd, 0x4f, 0xfe, 0x61, 0xc3, 0x7e, 0xcf, 0x65, 0x2c, 0xc4, 0xc9, - 0xcf, 0x70, 0xc2, 0xa5, 0xeb, 0x44, 0xc9, 0x0f, 0x50, 0x32, 0x39, 0xa9, 0x9a, 0x51, 0x14, 0x22, - 0x85, 0x48, 0x59, 0x8e, 0x14, 0xcf, 0x7e, 0xbf, 0x5d, 0x23, 0x40, 0x08, 0x90, 0x1f, 0x84, 0x92, - 0x1a, 0x43, 0x09, 0x91, 0xf2, 0xa4, 0x50, 0xc2, 0x66, 0xe3, 0x6a, 0xbf, 0xd8, 0x6c, 0x64, 0x1f, - 0x01, 0xab, 0x32, 0x24, 0x1e, 0x58, 0x01, 0x12, 0x0d, 0xac, 0xf4, 0x88, 0x08, 0x56, 0x74, 0x04, - 0x02, 0x2b, 0x37, 0x22, 0x82, 0x15, 0x9a, 0x49, 0x95, 0x99, 0xdc, 0x8a, 0x4c, 0xe6, 0x7b, 0x93, - 0x67, 0x95, 0x2c, 0x8b, 0x84, 0x05, 0x3d, 0xcb, 0x8e, 0xa2, 0x41, 0x1a, 0xa4, 0xe1, 0x20, 0xb2, - 0xf6, 0x04, 0x86, 0x3b, 0x2b, 0xe9, 0x7e, 0x51, 0x57, 0xc1, 0x30, 0x48, 0xbf, 0x8c, 0x03, 0x5c, - 0x75, 0x30, 0x54, 0x51, 0x77, 0x10, 0x5d, 0x84, 0x97, 0x95, 0x48, 0xa5, 0x5f, 0x07, 0xf1, 0xdf, - 0x95, 0x30, 0x4a, 0xd2, 0x20, 0xea, 0xaa, 0xea, 0xc3, 0x1f, 0x24, 0x0b, 0x3f, 0xa9, 0x0e, 0xe3, - 0x41, 0x3a, 0xe8, 0x0e, 0xfa, 0x49, 0xf6, 0x5d, 0x35, 0x4c, 0xc2, 0xa4, 0xda, 0x57, 0xd7, 0xaa, - 0x3f, 0xfb, 0xa5, 0xda, 0x0f, 0xa3, 0xbf, 0x2b, 0x49, 0x1a, 0xa4, 0xaa, 0xd2, 0x0b, 0xd2, 0xe0, - 0x3c, 0x48, 0x54, 0xb5, 0x9f, 0x0c, 0xab, 0x69, 0xff, 0x3a, 0x19, 0xff, 0xa3, 0xaa, 0xbe, 0xa5, - 0x2a, 0xea, 0xa9, 0x5e, 0x25, 0x1c, 0x5e, 0xd7, 0x2a, 0xb1, 0x0a, 0xba, 0x5f, 0x82, 0xf3, 0xb0, - 0x1f, 0xa6, 0x37, 0xd5, 0x61, 0xac, 0x2e, 0xc2, 0x6f, 0x2a, 0x99, 0x7d, 0x53, 0x4d, 0x46, 0xe7, - 0x93, 0x3f, 0x36, 0xfd, 0xb5, 0x3a, 0xf9, 0xbf, 0xca, 0x0a, 0xc9, 0x72, 0xdc, 0x43, 0x90, 0x6b, - 0x58, 0x69, 0x70, 0x29, 0xce, 0x1f, 0xb2, 0x34, 0x3f, 0x36, 0x4e, 0x58, 0x18, 0xf9, 0x18, 0x46, - 0x3d, 0x6b, 0x6f, 0x6d, 0x43, 0x98, 0x59, 0x07, 0x93, 0x50, 0x61, 0xed, 0xad, 0xad, 0x0b, 0x33, - 0xac, 0x35, 0x09, 0x0f, 0x32, 0x43, 0xee, 0x1c, 0x66, 0x83, 0x6e, 0x65, 0x1c, 0x1c, 0x05, 0xce, - 0x32, 0x59, 0x9d, 0xc1, 0x28, 0xee, 0x2a, 0x91, 0xaf, 0x6f, 0xea, 0x0e, 0xea, 0xe6, 0xeb, 0x20, - 0x1e, 0x7b, 0x84, 0x35, 0x4d, 0x04, 0x42, 0x07, 0xc2, 0xac, 0x0f, 0x41, 0x62, 0xc7, 0x97, 0xa3, - 0x2b, 0x15, 0xa5, 0xd6, 0xde, 0x5a, 0x1a, 0x8f, 0x94, 0x50, 0x43, 0xef, 0x59, 0x99, 0x01, 0x93, - 0x54, 0x13, 0x8a, 0x6a, 0xd6, 0xc3, 0x58, 0x28, 0xc7, 0x9c, 0xb0, 0x32, 0xb1, 0xc1, 0x64, 0x1e, - 0x8f, 0xa7, 0x66, 0x0a, 0xf5, 0x4f, 0x99, 0x04, 0x40, 0x3c, 0x11, 0x40, 0x20, 0x04, 0x40, 0xc4, - 0x00, 0x85, 0x20, 0xc0, 0x11, 0x05, 0x38, 0xc2, 0x80, 0x45, 0x1c, 0x64, 0x12, 0x08, 0xa1, 0x44, - 0x42, 0x3c, 0xa1, 0xb8, 0xdf, 0x45, 0x78, 0xb7, 0x29, 0x3f, 0x08, 0xdd, 0xeb, 0x2b, 0xbc, 0xdb, - 0x94, 0x1e, 0x80, 0x66, 0x44, 0x63, 0x5d, 0xb8, 0x99, 0xd2, 0x09, 0x07, 0x12, 0xf1, 0x00, 0x24, - 0x20, 0x68, 0x44, 0x04, 0x96, 0x90, 0xc0, 0x12, 0x13, 0x4c, 0x82, 0x22, 0x9b, 0xa8, 0x08, 0x27, - 0x2c, 0xd9, 0x47, 0xee, 0xdd, 0x0c, 0x15, 0x56, 0xc4, 0x1d, 0x85, 0x51, 0x2a, 0x9e, 0x1b, 0xdc, - 0xe7, 0x07, 0x3b, 0x00, 0xa6, 0xb6, 0x83, 0xe8, 0x52, 0xc1, 0x88, 0x6f, 0x71, 0x54, 0x0b, 0xd6, - 0x51, 0x18, 0xc1, 0x64, 0x5c, 0x30, 0x62, 0xbb, 0x60, 0xf6, 0x44, 0x42, 0x0e, 0x68, 0xf7, 0x61, - 0x1c, 0x74, 0xd3, 0x70, 0x10, 0xd5, 0xc3, 0xcb, 0x30, 0x4d, 0xc6, 0x0f, 0x40, 0xa9, 0x53, 0x1e, - 0xae, 0x18, 0x7c, 0xa3, 0x2b, 0x16, 0xec, 0x8a, 0xb5, 0xcd, 0xdd, 0xda, 0xee, 0xf6, 0xce, 0xe6, - 0xee, 0x16, 0x7d, 0x92, 0x84, 0x18, 0xcb, 0xca, 0x33, 0x16, 0x16, 0xaf, 0x70, 0xa0, 0x46, 0x98, - 0xa4, 0x76, 0x9a, 0xc6, 0x18, 0xc5, 0xc5, 0x51, 0x18, 0x39, 0x7d, 0x35, 0xae, 0x7d, 0xc7, 0xbe, - 0x1e, 0x8d, 0xfa, 0x7d, 0x00, 0xd2, 0x7e, 0x14, 0x7c, 0xc3, 0x33, 0xfa, 0x38, 0xee, 0xa9, 0x58, - 0xf5, 0xf6, 0x6f, 0x66, 0x26, 0xff, 0xc2, 0x20, 0x65, 0x8e, 0x65, 0x52, 0x8f, 0x67, 0x84, 0x8f, - 0x16, 0x67, 0x76, 0x9a, 0x35, 0x62, 0x9c, 0x06, 0x97, 0x12, 0xc7, 0x8c, 0xe5, 0xba, 0x10, 0x87, - 0xb6, 0x80, 0x9d, 0xd8, 0x3c, 0xe7, 0x95, 0x38, 0x6e, 0x9b, 0xa4, 0xf1, 0xa8, 0x9b, 0x46, 0xb3, - 0x5e, 0x70, 0x73, 0xfa, 0xd6, 0xdc, 0xd9, 0x4b, 0xf3, 0x5b, 0xb3, 0x57, 0xe5, 0xbb, 0x49, 0x98, - 0xf8, 0x8d, 0xf1, 0x3b, 0xf2, 0x1b, 0xc9, 0xd0, 0xf7, 0xfa, 0xd7, 0xbe, 0x33, 0x7b, 0x15, 0xee, - 0xf0, 0xba, 0xd6, 0xbe, 0xf7, 0x22, 0xfc, 0xe9, 0xb1, 0xa3, 0xdf, 0x99, 0x3c, 0xb7, 0xef, 0x05, - 0x97, 0x54, 0x45, 0x88, 0x0f, 0x08, 0x56, 0x1a, 0x5c, 0x6e, 0xd7, 0x44, 0xeb, 0x22, 0xb6, 0x6b, - 0x54, 0x46, 0x3c, 0xc9, 0x2c, 0x2a, 0x23, 0x5e, 0x01, 0x34, 0x2a, 0x23, 0x5e, 0xee, 0x0e, 0x54, - 0x46, 0xac, 0x9a, 0xa1, 0x51, 0x19, 0x81, 0x4e, 0xb2, 0xa9, 0x8c, 0x78, 0x5d, 0x3c, 0xa6, 0x32, - 0xc2, 0x3c, 0x22, 0x80, 0x40, 0x08, 0x80, 0x88, 0x01, 0x0a, 0x41, 0x80, 0x23, 0x0a, 0x70, 0x84, - 0x01, 0x8b, 0x38, 0xc8, 0x24, 0x10, 0x42, 0x89, 0x84, 0x78, 0x42, 0x21, 0xbc, 0x93, 0x00, 0xd5, - 0x59, 0x58, 0x46, 0x34, 0xa8, 0x8c, 0x28, 0x0f, 0xf1, 0x00, 0x24, 0x20, 0x68, 0x44, 0x04, 0x96, - 0x90, 0xc0, 0x12, 0x13, 0x4c, 0x82, 0x22, 0x9b, 0xa8, 0x08, 0x27, 0x2c, 0xd9, 0x47, 0x8e, 0xa9, - 0x8c, 0x10, 0xcf, 0x0d, 0xee, 0xf3, 0x83, 0xdf, 0xa9, 0x8c, 0x58, 0xf1, 0x17, 0x95, 0x11, 0x24, - 0xb6, 0x8f, 0x98, 0x4d, 0x65, 0x04, 0xd3, 0xdb, 0x8f, 0x5c, 0x91, 0xca, 0x88, 0xc2, 0x5d, 0x71, - 0xe3, 0xf7, 0x5a, 0x6d, 0x7b, 0xa7, 0x56, 0x5b, 0xdf, 0x79, 0xb7, 0xb3, 0xbe, 0xbb, 0xb5, 0xb5, - 0xb1, 0xbd, 0x41, 0x8d, 0x04, 0xa9, 0x31, 0x98, 0x95, 0xd4, 0x48, 0xbc, 0xc6, 0x81, 0xa8, 0x91, - 0x28, 0x22, 0xb5, 0x51, 0x23, 0x51, 0xd2, 0x20, 0xc5, 0x83, 0x9a, 0xe7, 0x80, 0x8e, 0x1a, 0x09, - 0x4d, 0x63, 0xd6, 0xdb, 0x35, 0xaa, 0x24, 0x70, 0x2d, 0xa2, 0x4a, 0xa2, 0xf4, 0xee, 0x5b, 0x56, - 0x9d, 0x84, 0xb4, 0xbb, 0xbe, 0xa8, 0x94, 0x78, 0x0c, 0x09, 0xa9, 0xc4, 0x73, 0x8c, 0xbb, 0x71, - 0x86, 0xb1, 0x75, 0x32, 0x75, 0x12, 0xeb, 0xd4, 0x49, 0x3c, 0xcd, 0x30, 0xea, 0x24, 0x5e, 0x65, - 0x22, 0x75, 0x12, 0x2b, 0x32, 0x94, 0x3a, 0x09, 0xd2, 0xec, 0xa2, 0x3e, 0x42, 0xb1, 0xd3, 0x01, - 0x59, 0xc4, 0xeb, 0xab, 0xe0, 0x22, 0x56, 0x17, 0x12, 0x23, 0xde, 0x5c, 0x87, 0x20, 0x70, 0x33, - 0xa2, 0xd5, 0x9a, 0x55, 0x26, 0x6f, 0xdf, 0x4e, 0xab, 0xf2, 0xea, 0x84, 0xa1, 0x90, 0xe7, 0x0a, - 0xb6, 0x44, 0x48, 0x6c, 0x18, 0x27, 0x4a, 0x61, 0x94, 0x56, 0xe6, 0x09, 0x83, 0xe8, 0x93, 0x04, - 0xd1, 0x27, 0x06, 0x32, 0x4f, 0x06, 0xa4, 0xf8, 0x9f, 0xd0, 0xd6, 0x97, 0x59, 0x2d, 0x2f, 0x41, - 0x7c, 0x22, 0xf7, 0x26, 0x97, 0x8c, 0xb4, 0xaf, 0x3f, 0xc9, 0xea, 0xb5, 0x40, 0x73, 0x78, 0x91, - 0x16, 0x56, 0x0c, 0x09, 0x27, 0x7a, 0x7d, 0x4b, 0x1f, 0xa2, 0x35, 0xa2, 0xd9, 0x1a, 0x45, 0x3d, - 0x75, 0x11, 0x46, 0xaa, 0x57, 0x99, 0x7f, 0x08, 0xba, 0x01, 0x7d, 0x37, 0xbb, 0xbe, 0x60, 0x9a, - 0x66, 0xaf, 0x97, 0xa1, 0x95, 0x17, 0xd3, 0xf4, 0x95, 0xd4, 0xe4, 0x15, 0xd8, 0xd4, 0x95, 0xd6, - 0xc4, 0x15, 0xdb, 0xb4, 0x15, 0xdb, 0xa4, 0x95, 0xd9, 0x94, 0x2d, 0x37, 0xf3, 0x92, 0xa2, 0x1d, - 0x5f, 0xc8, 0x4e, 0x72, 0xfc, 0x7c, 0x59, 0xfe, 0x94, 0xe2, 0xee, 0xb2, 0x56, 0xce, 0x88, 0x3b, - 0x43, 0x95, 0x78, 0x76, 0x2a, 0xf8, 0xcc, 0x54, 0xea, 0x59, 0xa9, 0xf8, 0x33, 0x52, 0xf1, 0x67, - 0xa3, 0xb2, 0xcf, 0x44, 0x79, 0xce, 0x21, 0x31, 0x2d, 0xdf, 0x75, 0x44, 0x44, 0xee, 0x86, 0x13, - 0xbd, 0x13, 0x8e, 0xcb, 0x60, 0xf1, 0x13, 0x35, 0x40, 0xc2, 0x96, 0x9e, 0xb8, 0x61, 0x12, 0x38, - 0x4c, 0x22, 0xc7, 0x48, 0xe8, 0xb2, 0x12, 0xbb, 0xb0, 0x04, 0x2f, 0x36, 0xd1, 0x67, 0x86, 0xf5, - 0x55, 0x74, 0x39, 0x39, 0xfe, 0x10, 0xbe, 0x0d, 0x76, 0x66, 0xa7, 0xec, 0x75, 0xb0, 0xeb, 0x5c, - 0x07, 0x6b, 0x1c, 0x25, 0x00, 0xa2, 0x06, 0x28, 0x14, 0x01, 0x8e, 0x2a, 0xc0, 0x51, 0x06, 0x2c, - 0xea, 0x20, 0x93, 0x42, 0x08, 0xa5, 0x12, 0xd9, 0x47, 0x2b, 0x7e, 0xab, 0xda, 0x77, 0xdb, 0xd4, - 0x7e, 0x97, 0x1c, 0x2f, 0x67, 0xe9, 0x5b, 0xf0, 0xd6, 0x18, 0x90, 0xe5, 0x69, 0x18, 0xbb, 0x37, - 0x80, 0xd6, 0x93, 0x42, 0x6d, 0x66, 0x42, 0x5b, 0x8e, 0x86, 0xb8, 0x76, 0xe9, 0x16, 0x63, 0x53, - 0x0c, 0x5d, 0x2c, 0x67, 0x17, 0xdb, 0xdc, 0xda, 0xa2, 0x93, 0x95, 0x8b, 0x88, 0xca, 0xb7, 0xee, - 0x8c, 0x7b, 0x57, 0x50, 0x83, 0xb8, 0xcc, 0xe5, 0x06, 0x0b, 0xa5, 0x84, 0xc0, 0x25, 0x07, 0x20, - 0x99, 0x84, 0x4d, 0xc0, 0x55, 0xe2, 0x90, 0x4d, 0xc0, 0xd5, 0xb9, 0x0d, 0x9b, 0x80, 0x39, 0x1b, - 0xcc, 0x26, 0xa0, 0xa9, 0x65, 0x17, 0x9b, 0x80, 0x2b, 0x4f, 0xdf, 0x6c, 0x02, 0xbe, 0xf6, 0x8b, - 0x4d, 0x40, 0x76, 0x28, 0xd8, 0x04, 0x2c, 0x61, 0x36, 0xfa, 0xde, 0xc5, 0xd8, 0x04, 0xcc, 0xdd, - 0xc5, 0xd8, 0x04, 0x2c, 0x1d, 0x11, 0x95, 0x6f, 0x1d, 0x9b, 0x80, 0xb0, 0x41, 0xdc, 0xba, 0x9e, - 0x05, 0x16, 0xe1, 0x5d, 0xc0, 0xa9, 0x99, 0x6c, 0x03, 0xbe, 0xc4, 0x3c, 0xb6, 0x01, 0x57, 0x08, - 0x44, 0xb6, 0x01, 0x57, 0xe7, 0x36, 0x6c, 0x03, 0xe6, 0x6c, 0x30, 0xdb, 0x80, 0xa6, 0x16, 0x5e, - 0x40, 0x6d, 0xc0, 0xf3, 0x30, 0x0a, 0xe2, 0x1b, 0x80, 0x3e, 0xe0, 0x2e, 0x69, 0x2c, 0xa0, 0x45, - 0xbc, 0x43, 0xe4, 0x79, 0xf6, 0x81, 0x6f, 0x40, 0x5b, 0xd8, 0x75, 0xb5, 0xf0, 0x13, 0x89, 0x17, - 0x02, 0xf1, 0x76, 0x8d, 0xc7, 0xa0, 0xc8, 0xdb, 0x35, 0xcc, 0xa8, 0x34, 0x29, 0x3c, 0x37, 0xb3, - 0xa2, 0xa4, 0xf0, 0xbc, 0x6c, 0x95, 0x23, 0x85, 0xe7, 0xf8, 0x04, 0x94, 0xb7, 0x6b, 0xbc, 0x3e, - 0xc1, 0xf2, 0x76, 0x0d, 0x78, 0x9e, 0xcb, 0xad, 0x53, 0xdf, 0x27, 0x4a, 0xde, 0xae, 0xf1, 0x14, - 0xab, 0x78, 0xbb, 0xc6, 0x4b, 0x8d, 0xe3, 0xed, 0x1a, 0x78, 0x4d, 0x21, 0xf3, 0x9b, 0x41, 0xe5, - 0xb8, 0x71, 0xe3, 0x64, 0xfe, 0xd4, 0xbc, 0x7a, 0x43, 0x8e, 0x05, 0xbc, 0x7a, 0xc3, 0xec, 0x58, - 0x53, 0xda, 0x4b, 0x38, 0x7e, 0x29, 0x91, 0x37, 0xcd, 0x99, 0xb3, 0xd6, 0xf6, 0x92, 0x0c, 0xae, - 0x2c, 0x8a, 0x1b, 0x8b, 0xe2, 0xc2, 0x32, 0xb8, 0xaf, 0x2e, 0x0f, 0x11, 0x92, 0x67, 0xc0, 0xf3, - 0x8b, 0x46, 0xa2, 0x9a, 0x1f, 0x31, 0xd5, 0x93, 0x22, 0x8b, 0x4f, 0x50, 0xc5, 0xfe, 0x8d, 0x05, - 0x3b, 0xba, 0x6e, 0x07, 0x47, 0x75, 0xec, 0x62, 0xc1, 0x5f, 0x1c, 0x04, 0x8b, 0xf9, 0x9b, 0x0a, - 0x02, 0xb9, 0x2e, 0x70, 0x83, 0x81, 0xba, 0xc0, 0xec, 0x94, 0x43, 0x36, 0x2a, 0xc6, 0x13, 0xf3, - 0xf7, 0x8b, 0x02, 0x7c, 0xc2, 0xba, 0xc3, 0x40, 0xf2, 0x3d, 0x02, 0x8a, 0xf2, 0x8e, 0xec, 0x94, - 0x70, 0xa9, 0x25, 0x05, 0x45, 0x86, 0x62, 0x2f, 0x79, 0x28, 0x7c, 0x86, 0x46, 0xc7, 0x6c, 0x8c, - 0xc6, 0x99, 0x17, 0x5d, 0xb3, 0x2c, 0xda, 0x67, 0x54, 0xb4, 0xcf, 0x9e, 0xe8, 0x9d, 0x29, 0x31, - 0x8b, 0xad, 0x14, 0x7d, 0xa9, 0x80, 0x15, 0xa9, 0xf0, 0xf2, 0xcb, 0xf9, 0x20, 0x2e, 0xfe, 0xb6, - 0xdb, 0x2c, 0x56, 0xdc, 0x99, 0x50, 0x30, 0x6e, 0xf5, 0xdc, 0xf2, 0xa3, 0x6d, 0x98, 0x52, 0xe7, - 0xb0, 0xa4, 0x80, 0x61, 0x48, 0xdd, 0xc3, 0x8e, 0x62, 0x86, 0x19, 0xc5, 0x0c, 0x2b, 0xca, 0x18, - 0x46, 0x34, 0xbb, 0xb7, 0xa3, 0xeb, 0x96, 0x9a, 0x2c, 0xaa, 0xeb, 0xf3, 0xb7, 0x87, 0xf9, 0x45, - 0x97, 0xbb, 0xe9, 0xbd, 0x4c, 0x4e, 0xfb, 0xec, 0xbe, 0x84, 0x19, 0x7d, 0x41, 0xb3, 0xf8, 0x52, - 0x66, 0xee, 0xc5, 0xcd, 0xd6, 0x8b, 0x9b, 0xa1, 0x97, 0x35, 0x2b, 0x5f, 0xae, 0x53, 0x79, 0xdd, - 0x97, 0xab, 0x59, 0x59, 0x2f, 0x56, 0xbf, 0xa3, 0xce, 0x63, 0xd7, 0x9d, 0x49, 0x9a, 0xfd, 0x42, - 0xc6, 0xed, 0xa8, 0x62, 0x44, 0x69, 0x92, 0x44, 0x68, 0x02, 0x45, 0x67, 0xd2, 0x44, 0x66, 0x62, - 0x45, 0x65, 0x62, 0x45, 0x64, 0x32, 0x45, 0x63, 0xe5, 0x1e, 0xfe, 0x94, 0x72, 0xfb, 0x68, 0x96, - 0x95, 0xe4, 0xf8, 0xf7, 0xc3, 0x7c, 0x29, 0xc5, 0xbd, 0x65, 0x5d, 0x2a, 0x2e, 0x4e, 0xd3, 0x2d, - 0x51, 0xcb, 0x2d, 0x58, 0xc3, 0x2d, 0x55, 0xbb, 0x2d, 0x5e, 0xb3, 0x2d, 0x5e, 0xab, 0x2d, 0x5b, - 0xa3, 0x4d, 0xdd, 0xa5, 0xc4, 0x34, 0x7c, 0x97, 0x8e, 0x7b, 0x72, 0x17, 0xae, 0x84, 0x3d, 0xae, - 0x5b, 0x81, 0x4c, 0xcd, 0x92, 0x53, 0x34, 0x40, 0xaa, 0x96, 0x9e, 0xb2, 0x61, 0x52, 0x37, 0x4c, - 0x0a, 0xc7, 0x48, 0xe5, 0xb2, 0x52, 0xba, 0xb0, 0xd4, 0x9e, 0x7d, 0x84, 0x5c, 0xb7, 0xb2, 0x82, - 0x9a, 0x17, 0x62, 0xdd, 0x4a, 0xd8, 0xe3, 0xb2, 0x15, 0xf1, 0x3e, 0x69, 0x4d, 0xb7, 0x3f, 0x8a, - 0x25, 0xb9, 0x53, 0xf3, 0x64, 0xf2, 0xdc, 0x0d, 0xf2, 0x5c, 0xf2, 0x5c, 0xf2, 0x5c, 0xf2, 0x5c, - 0xf2, 0x5c, 0xe6, 0xd4, 0x87, 0x1f, 0xa1, 0xb4, 0x56, 0x56, 0x66, 0x98, 0xc0, 0x96, 0xd6, 0x42, - 0x30, 0x16, 0xd7, 0xda, 0x7a, 0x98, 0xfa, 0x79, 0x77, 0x8d, 0x79, 0x54, 0x00, 0x88, 0x12, 0xa0, - 0x50, 0x03, 0x38, 0x8a, 0x00, 0x47, 0x15, 0xb0, 0x28, 0x83, 0x4c, 0xea, 0x20, 0x94, 0x42, 0x64, - 0x1f, 0x2d, 0xd6, 0x15, 0xd6, 0xdb, 0x35, 0x80, 0xbb, 0x6b, 0x7e, 0xe7, 0x1d, 0xd6, 0xaf, 0xfc, - 0xe2, 0x1d, 0xd6, 0x65, 0x22, 0x96, 0x0b, 0xe6, 0xf2, 0x0e, 0xeb, 0xb2, 0xa6, 0xa3, 0xef, 0x5d, - 0x8c, 0x77, 0x58, 0xe7, 0xee, 0x62, 0x1b, 0xbf, 0xd7, 0x6a, 0xdb, 0x3b, 0xb5, 0xda, 0xfa, 0xce, - 0xbb, 0x9d, 0xf5, 0xdd, 0xad, 0xad, 0x8d, 0xed, 0x0d, 0x5e, 0x6a, 0x5d, 0x32, 0x6a, 0x2a, 0xdf, - 0x3a, 0x5e, 0x6a, 0x0d, 0x1b, 0xd5, 0xad, 0x2b, 0x95, 0xc6, 0x61, 0x57, 0x7e, 0x5b, 0x70, 0x66, - 0x27, 0x5b, 0x83, 0x2f, 0x31, 0x8f, 0xad, 0xc1, 0x15, 0x22, 0x91, 0xad, 0xc1, 0xd5, 0xb9, 0x0d, - 0x5b, 0x83, 0x39, 0x1b, 0xcc, 0xd6, 0xa0, 0xa9, 0xb5, 0x18, 0x50, 0x6b, 0xf0, 0x6b, 0xd8, 0x53, - 0x15, 0xd1, 0x09, 0xfc, 0x7e, 0x12, 0xdf, 0x61, 0x7f, 0xf0, 0x95, 0x5f, 0xec, 0x0f, 0xb2, 0x79, - 0x21, 0x6f, 0x46, 0xce, 0xa8, 0x4e, 0x05, 0xfb, 0x83, 0x74, 0xb1, 0xb1, 0x8b, 0x6d, 0xef, 0xec, - 0xec, 0x6c, 0xb2, 0x27, 0x58, 0x36, 0x4e, 0x2a, 0xdf, 0x3a, 0xf6, 0x04, 0x11, 0x2d, 0x92, 0x36, - 0x49, 0x29, 0xf4, 0x32, 0xc8, 0xcc, 0x3e, 0xd9, 0x57, 0x13, 0x7c, 0xbf, 0x0c, 0xbe, 0x9a, 0x6d, - 0x07, 0xce, 0xbe, 0xab, 0xde, 0x19, 0x93, 0x19, 0x31, 0x55, 0x5d, 0x50, 0xbd, 0x23, 0xdd, 0x3f, - 0xac, 0xf9, 0xdd, 0x7a, 0x72, 0xf5, 0x3b, 0x33, 0x03, 0xa9, 0xe0, 0x79, 0x8a, 0x59, 0x54, 0xf0, - 0xbc, 0x02, 0x6a, 0x54, 0xf0, 0xbc, 0xdc, 0x1d, 0xa8, 0xe0, 0x59, 0x35, 0x69, 0xa1, 0x82, 0x07, - 0x9d, 0x77, 0x8a, 0x55, 0xf0, 0xcc, 0xae, 0xea, 0x16, 0x7f, 0x5c, 0x2f, 0xee, 0x4a, 0x71, 0x00, - 0x0a, 0x20, 0x9e, 0x0a, 0x20, 0x50, 0x02, 0x20, 0x6a, 0x80, 0x42, 0x11, 0xe0, 0xa8, 0x02, 0x1c, - 0x65, 0xc0, 0xa2, 0x0e, 0x32, 0x29, 0x84, 0x50, 0x2a, 0x21, 0x9e, 0x52, 0x64, 0x06, 0x06, 0xbd, - 0xff, 0x2f, 0xe8, 0xaa, 0xa8, 0x7b, 0x53, 0x49, 0xc2, 0x5e, 0x22, 0x3f, 0x1a, 0xcd, 0x03, 0xfc, - 0x03, 0xbb, 0x85, 0x7b, 0xb8, 0x6c, 0xea, 0x01, 0x43, 0x41, 0x90, 0xa8, 0x08, 0x20, 0x25, 0x41, - 0xa3, 0x26, 0xb0, 0x14, 0x05, 0x96, 0xaa, 0x60, 0x52, 0x16, 0xd9, 0xd4, 0x45, 0x38, 0x85, 0x81, - 0xa1, 0x32, 0x8f, 0x53, 0x1a, 0x9c, 0x20, 0xf6, 0x28, 0xb3, 0x41, 0x09, 0x64, 0x18, 0x04, 0x07, - 0x8e, 0xe8, 0x20, 0x12, 0x1e, 0x60, 0xe2, 0x83, 0x4a, 0x80, 0xe0, 0x89, 0x10, 0x3c, 0x21, 0xc2, - 0x26, 0x46, 0x18, 0x04, 0x09, 0x84, 0x28, 0xc1, 0x11, 0xa6, 0xcc, 0x60, 0x99, 0x9b, 0x61, 0x9f, - 0x9c, 0x67, 0x24, 0x6e, 0x8e, 0x35, 0x8c, 0x38, 0xc1, 0x12, 0x28, 0x64, 0x22, 0x65, 0x00, 0xa1, - 0x42, 0x27, 0x56, 0xc6, 0x10, 0x2c, 0x63, 0x88, 0x96, 0x19, 0x84, 0x0b, 0x8b, 0x78, 0x81, 0x11, - 0x30, 0x58, 0x22, 0x96, 0x19, 0x7e, 0xd1, 0x0f, 0x2e, 0x13, 0xdc, 0x60, 0x39, 0xcf, 0x57, 0xd3, - 0xc7, 0x00, 0x8d, 0x2f, 0x58, 0x1a, 0x31, 0x63, 0x88, 0x9a, 0x09, 0x84, 0xcd, 0x20, 0xe2, 0x66, - 0x0a, 0x81, 0x33, 0x8e, 0xc8, 0x19, 0x47, 0xe8, 0xcc, 0x22, 0x76, 0x98, 0x04, 0x0f, 0x94, 0xe8, - 0x65, 0xd0, 0x11, 0xbf, 0x24, 0xe5, 0xc9, 0x19, 0x43, 0x45, 0xa3, 0x2b, 0x15, 0x4f, 0xb5, 0x90, - 0xc0, 0x59, 0x63, 0xde, 0xe5, 0xaa, 0x01, 0x3f, 0x83, 0x13, 0x8d, 0xae, 0xc6, 0xa0, 0xa2, 0x2b, - 0x17, 0xf9, 0xd6, 0x1b, 0x61, 0x92, 0xda, 0x69, 0x1a, 0x63, 0xbb, 0xf3, 0x51, 0x18, 0x39, 0x7d, - 0x35, 0xce, 0x66, 0xe3, 0x72, 0x2e, 0x1a, 0xf5, 0xfb, 0xc0, 0x8e, 0x70, 0x14, 0x7c, 0x33, 0xe7, - 0x61, 0x8e, 0xe3, 0x9e, 0x8a, 0x55, 0x6f, 0xff, 0x66, 0xf6, 0x28, 0xbf, 0x90, 0x5d, 0x30, 0x1c, - 0x3d, 0x0e, 0x95, 0xeb, 0xd9, 0xfa, 0x15, 0xf0, 0x6e, 0xcc, 0xf4, 0x31, 0xd8, 0x8d, 0xd1, 0x61, - 0x3e, 0xbb, 0x31, 0x82, 0x1c, 0x81, 0xdd, 0x18, 0x39, 0x6e, 0xcd, 0x6e, 0x8c, 0xf0, 0x07, 0x62, - 0x37, 0x86, 0x9c, 0xe9, 0x85, 0xd0, 0x31, 0xa7, 0x1b, 0x33, 0x0a, 0xa3, 0xf4, 0xdd, 0xa6, 0x01, - 0x8d, 0x98, 0x1d, 0xe0, 0x47, 0xc0, 0xd8, 0x86, 0xfb, 0xb3, 0x2f, 0xec, 0x84, 0xbd, 0x86, 0xb6, - 0x4d, 0xd7, 0xf0, 0xc2, 0x62, 0xe1, 0x71, 0xc0, 0x6e, 0xeb, 0xfa, 0xe9, 0xf3, 0x00, 0xee, 0x10, - 0x35, 0x34, 0x9d, 0x7f, 0x1f, 0x02, 0x82, 0x6f, 0x0c, 0x01, 0xc2, 0x43, 0x40, 0x6d, 0x73, 0xb7, - 0xb6, 0xbb, 0xbd, 0xb3, 0xb9, 0xbb, 0xc5, 0x58, 0xc0, 0x82, 0x84, 0xd6, 0xdf, 0xff, 0x3a, 0x63, - 0xbb, 0x9f, 0xb9, 0x6e, 0x49, 0x98, 0xf9, 0xaa, 0xc2, 0xcb, 0x2f, 0x29, 0x7e, 0xbf, 0x7f, 0xf6, - 0x1c, 0x6c, 0xf8, 0xeb, 0x30, 0x9f, 0x0d, 0x7f, 0x41, 0x9e, 0xc0, 0x86, 0xbf, 0x1c, 0xb7, 0x66, - 0xc3, 0x5f, 0xf8, 0x03, 0xb1, 0xe1, 0x4f, 0xd6, 0xf4, 0x42, 0xe8, 0x98, 0xd5, 0xf0, 0xff, 0xdd, - 0x80, 0x7e, 0xff, 0x16, 0xfb, 0xfd, 0x9a, 0xbf, 0xd8, 0xef, 0x67, 0x5d, 0x91, 0xe3, 0xe3, 0xb0, - 0xdf, 0xcf, 0x6c, 0x5e, 0x44, 0x08, 0x60, 0xbf, 0x5f, 0x7c, 0x08, 0xd8, 0xdc, 0x62, 0xa3, 0x9f, - 0x85, 0x08, 0xad, 0xff, 0xee, 0x8b, 0x8d, 0x7e, 0x5a, 0x0c, 0x9f, 0x92, 0xa5, 0x5f, 0x8c, 0xf8, - 0x53, 0xfb, 0x4d, 0xbc, 0x38, 0x71, 0x7a, 0xdd, 0xdd, 0xec, 0xd7, 0xea, 0xf7, 0x6b, 0xe9, 0xbf, - 0xff, 0x57, 0x89, 0x97, 0x2c, 0x9a, 0xe3, 0xcf, 0x40, 0xbe, 0x0c, 0xaa, 0x24, 0x82, 0x56, 0x10, - 0x81, 0xb2, 0x7d, 0x2e, 0xda, 0xd3, 0x09, 0x74, 0x2e, 0xda, 0xd3, 0xe7, 0xae, 0x5c, 0xb4, 0x27, - 0x8d, 0x7c, 0x72, 0xd1, 0x1e, 0x39, 0xcd, 0x8f, 0x21, 0x02, 0x7b, 0xf0, 0x97, 0x45, 0xfc, 0xbe, - 0x0a, 0x2e, 0x62, 0x75, 0x81, 0x18, 0xf1, 0xe7, 0x3b, 0x56, 0x00, 0xb5, 0x3d, 0x56, 0x6b, 0x56, - 0x12, 0xbe, 0x7d, 0x3b, 0x2d, 0x92, 0xaa, 0x53, 0x8a, 0xc9, 0x52, 0xa9, 0xc4, 0x96, 0xa2, 0xac, - 0x79, 0xff, 0xa8, 0x6e, 0xd0, 0x8a, 0x22, 0xcc, 0xad, 0x3a, 0xd0, 0x5b, 0x74, 0xa0, 0xb7, 0xe6, - 0x60, 0x6e, 0xc9, 0x41, 0x09, 0x20, 0xa0, 0x5d, 0xdd, 0x92, 0x77, 0x73, 0x91, 0xae, 0x33, 0x4a, - 0xd2, 0x78, 0xd4, 0x4d, 0xa3, 0x19, 0xc7, 0x6d, 0x4e, 0x5f, 0xbd, 0x3b, 0x7b, 0x68, 0xbf, 0x35, - 0x7b, 0xdf, 0xbe, 0x9b, 0x84, 0x89, 0xdf, 0x18, 0xbf, 0x68, 0xbf, 0x91, 0x0c, 0x7d, 0xaf, 0x7f, - 0xed, 0x3b, 0xb3, 0xf7, 0xe9, 0x26, 0xed, 0x7b, 0x6f, 0xd3, 0x6f, 0xce, 0xde, 0xa1, 0x9f, 0xfd, - 0x4f, 0x3a, 0x93, 0x37, 0xe6, 0xdb, 0xf3, 0x57, 0xd4, 0x09, 0x7b, 0x18, 0xf4, 0xed, 0x96, 0xd7, - 0x16, 0x9a, 0x1c, 0x65, 0xd1, 0xa2, 0x6b, 0xe9, 0xa2, 0xaa, 0xec, 0x28, 0x21, 0xd7, 0xf7, 0x04, - 0xfb, 0x9d, 0x15, 0xf4, 0xae, 0xc2, 0xa8, 0x72, 0x19, 0x0f, 0x46, 0x43, 0xa4, 0x1b, 0xc5, 0xef, - 0x8c, 0xe6, 0x75, 0xe2, 0xab, 0x30, 0x93, 0xd7, 0x89, 0xe7, 0x08, 0x57, 0x5e, 0x27, 0x9e, 0x67, - 0x47, 0x87, 0xd7, 0x89, 0x17, 0x4b, 0xd2, 0x78, 0x9d, 0x78, 0xd9, 0x78, 0x39, 0xcc, 0x75, 0xe2, - 0x58, 0xb7, 0x62, 0x42, 0xde, 0x86, 0xc9, 0xeb, 0xc3, 0x49, 0x70, 0x0c, 0x20, 0x3a, 0xa8, 0x84, - 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, - 0xca, 0x0c, 0x46, 0xea, 0xfa, 0x2c, 0xcd, 0x36, 0x38, 0x5d, 0xa0, 0x65, 0x24, 0x8a, 0x13, 0xce, - 0x24, 0x55, 0x06, 0x93, 0x2b, 0x74, 0x92, 0x65, 0x0c, 0xd9, 0x32, 0x86, 0x74, 0x99, 0x41, 0xbe, - 0xb0, 0x48, 0x18, 0x18, 0x19, 0xcb, 0x20, 0x82, 0x3f, 0xe1, 0x0c, 0x7b, 0x87, 0x01, 0xf0, 0xdd, - 0x05, 0xe0, 0x3b, 0x8c, 0xb0, 0x2f, 0x5e, 0x34, 0x60, 0x59, 0xa2, 0x11, 0x8b, 0x4a, 0x4c, 0xd9, - 0x51, 0x64, 0xd2, 0x5a, 0x92, 0x5b, 0xec, 0x6b, 0x48, 0xe9, 0xda, 0xc2, 0x5c, 0xdb, 0x94, 0xbb, - 0x06, 0x8c, 0xf2, 0x71, 0xae, 0xbe, 0x29, 0xe4, 0xeb, 0x8c, 0x85, 0x57, 0x8e, 0x0e, 0x09, 0x7d, - 0x0f, 0xb8, 0x11, 0xf7, 0x7f, 0x1b, 0x71, 0xef, 0x37, 0xf6, 0x7d, 0xdf, 0x94, 0x98, 0x96, 0x32, - 0x08, 0x52, 0x21, 0x26, 0x58, 0xcb, 0x90, 0x1d, 0x17, 0x22, 0xad, 0xf7, 0xa2, 0xe8, 0xc9, 0xe8, - 0xc0, 0x41, 0xd1, 0x93, 0xe4, 0x40, 0x81, 0x30, 0xb2, 0x5f, 0xa4, 0x62, 0xf4, 0x2a, 0x8c, 0xde, - 0x4f, 0xde, 0x0b, 0x95, 0x60, 0xa6, 0x05, 0x23, 0x2b, 0xb8, 0x0e, 0xc2, 0x7e, 0x70, 0xde, 0x57, - 0x95, 0xf3, 0x20, 0xea, 0x7d, 0x0d, 0x7b, 0x13, 0x0f, 0x47, 0x51, 0x84, 0x3d, 0x62, 0x3c, 0x95, - 0x61, 0xab, 0x30, 0x93, 0xca, 0xb0, 0x1c, 0x61, 0x4b, 0x65, 0x58, 0x7e, 0xee, 0x45, 0x65, 0x58, - 0xd1, 0x4c, 0x96, 0xca, 0xb0, 0xb2, 0x15, 0x2f, 0x54, 0x86, 0xe5, 0x9b, 0x1f, 0xa8, 0x0c, 0x23, - 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, - 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, 0x99, 0xc1, 0x38, 0xbd, 0x9f, 0xa5, 0xb9, - 0x06, 0xa5, 0x03, 0xb4, 0x8c, 0x40, 0x51, 0x15, 0x46, 0x42, 0x65, 0x30, 0xb1, 0x42, 0x27, 0x58, - 0xc6, 0x10, 0x2d, 0x63, 0x08, 0x97, 0x19, 0xc4, 0x0b, 0x8b, 0x80, 0x81, 0x11, 0xb1, 0x0c, 0x22, - 0xf8, 0xaa, 0xb0, 0x50, 0x29, 0x75, 0xd1, 0x1f, 0x04, 0xd8, 0xd2, 0xb0, 0x5d, 0x40, 0xd3, 0x1b, - 0x2a, 0xba, 0x9c, 0x10, 0x63, 0x6a, 0xc3, 0x0a, 0x7e, 0xf3, 0xd4, 0x86, 0xc9, 0x79, 0x8c, 0x4c, - 0x40, 0x42, 0xdd, 0x08, 0x93, 0xf0, 0x0a, 0x5c, 0x9b, 0xda, 0x30, 0xba, 0x36, 0x5d, 0xdb, 0x8c, - 0x6a, 0x00, 0xd7, 0xea, 0x33, 0xaa, 0x4b, 0xca, 0x9e, 0x9a, 0xac, 0x14, 0xb1, 0x36, 0xcc, 0xea, - 0xc2, 0x89, 0xf5, 0xec, 0x78, 0x17, 0x61, 0x36, 0x3b, 0xde, 0x1a, 0x71, 0xce, 0x8e, 0xb7, 0x3e, - 0x77, 0x65, 0xc7, 0x5b, 0xd8, 0x83, 0xb0, 0xe3, 0x4d, 0x46, 0xf3, 0x13, 0x88, 0x18, 0xd0, 0xf1, - 0xee, 0xa9, 0x28, 0x0d, 0xd3, 0x1b, 0xf0, 0xdb, 0x9e, 0x01, 0x17, 0xad, 0x58, 0xee, 0xec, 0xd5, - 0xef, 0x07, 0x09, 0x70, 0xde, 0x9a, 0x03, 0xc9, 0xed, 0xb8, 0x1d, 0xbf, 0x73, 0xb2, 0xef, 0x35, - 0x4e, 0x7d, 0xef, 0xcf, 0x96, 0x83, 0x9a, 0xbe, 0x26, 0x7d, 0x9a, 0x04, 0xf6, 0x20, 0x62, 0x0d, - 0xfa, 0x30, 0xe2, 0x01, 0xa2, 0xfc, 0xb6, 0x63, 0x1f, 0x7c, 0xb0, 0xf7, 0xdd, 0x86, 0xeb, 0xfd, - 0x39, 0x03, 0x57, 0x07, 0x19, 0x5d, 0x26, 0xa1, 0xcc, 0x0c, 0xb4, 0xfd, 0x14, 0x75, 0xf6, 0xa9, - 0xed, 0x36, 0xec, 0xfd, 0x86, 0xe3, 0xef, 0xdb, 0xcd, 0xfa, 0x7f, 0xdc, 0xba, 0xf7, 0xc1, 0x82, - 0x7f, 0xe2, 0xdb, 0xdf, 0x08, 0x3b, 0xd9, 0xb0, 0x6b, 0x3b, 0x1d, 0xb7, 0x7e, 0x62, 0x37, 0x88, - 0x3a, 0xa2, 0xae, 0xc0, 0x60, 0x57, 0xff, 0xc3, 0xef, 0xb8, 0x75, 0x42, 0x8d, 0x50, 0xcb, 0x1b, - 0x6a, 0x0d, 0xb7, 0xf9, 0xd1, 0x6f, 0xb5, 0x8f, 0x3d, 0xe7, 0xc0, 0x73, 0x8f, 0x9b, 0x53, 0x56, - 0x47, 0xdc, 0x11, 0x77, 0x45, 0xe0, 0xae, 0xee, 0x34, 0xec, 0x3f, 0x89, 0x36, 0xa2, 0xad, 0x38, - 0xb4, 0xf9, 0xa7, 0x76, 0xdb, 0xb5, 0xc7, 0xa1, 0x8e, 0xb8, 0x23, 0xee, 0xf2, 0xc6, 0x9d, 0xdb, - 0x3a, 0xdd, 0xf6, 0xdd, 0xa6, 0xe7, 0xb4, 0x0f, 0xed, 0x03, 0xc7, 0xb7, 0xeb, 0xf5, 0xb6, 0xd3, - 0xe9, 0x10, 0x79, 0x44, 0x5e, 0xde, 0xc8, 0xcb, 0xea, 0x55, 0xff, 0xe0, 0xb8, 0xd9, 0xf1, 0xda, - 0xb6, 0xdb, 0xf4, 0x08, 0x3c, 0x02, 0x2f, 0x77, 0xe0, 0x1d, 0xd9, 0x9f, 0xfc, 0xb6, 0xd3, 0x71, - 0xda, 0xa7, 0xec, 0xd6, 0x11, 0x7b, 0x1a, 0x68, 0x9e, 0xed, 0x79, 0x6d, 0x77, 0xff, 0xc4, 0x73, - 0x18, 0xee, 0x08, 0xb9, 0xdc, 0x21, 0x77, 0xe2, 0xb9, 0x0d, 0xf7, 0xbf, 0x4e, 0x9d, 0x81, 0x8e, - 0xa8, 0x2b, 0x0e, 0x75, 0xce, 0x27, 0xcf, 0x69, 0xd6, 0x9d, 0xba, 0x6f, 0xd7, 0x8f, 0xdc, 0xa6, - 0xff, 0xbe, 0x7d, 0x7c, 0xd2, 0x22, 0xee, 0x88, 0xbb, 0xbc, 0x71, 0x67, 0xd7, 0xff, 0xf0, 0x1b, - 0x76, 0x93, 0x87, 0x13, 0x84, 0x5b, 0x21, 0xc9, 0xb5, 0x99, 0x15, 0xaf, 0x4e, 0xdd, 0x6f, 0x74, - 0x18, 0xe3, 0x08, 0xba, 0xdc, 0x41, 0xe7, 0xb6, 0x4e, 0x6b, 0xec, 0xd9, 0x11, 0x79, 0xc5, 0x23, - 0xcf, 0x73, 0xfc, 0xba, 0x73, 0x68, 0x9f, 0x34, 0x3c, 0xff, 0xc8, 0xf1, 0xda, 0xee, 0x01, 0x41, - 0x47, 0xd0, 0xe5, 0x0d, 0xba, 0x71, 0xfd, 0x70, 0x64, 0x7f, 0xe2, 0x81, 0x2c, 0x51, 0x57, 0x20, - 0xea, 0x26, 0x68, 0x6b, 0x1c, 0x33, 0xaf, 0x12, 0x6c, 0x05, 0x84, 0xb8, 0x79, 0x78, 0x63, 0x8f, - 0x8e, 0xa8, 0x2b, 0xb0, 0x78, 0x9d, 0x1e, 0x83, 0xb1, 0x37, 0x4c, 0xdc, 0x15, 0x5c, 0xbf, 0x6e, - 0xfb, 0x4d, 0xc7, 0x7d, 0xff, 0x61, 0xff, 0xb8, 0xcd, 0xf2, 0x95, 0xc0, 0x2b, 0x94, 0xd3, 0xb1, - 0x31, 0x4c, 0xa8, 0x15, 0x12, 0xe3, 0x6a, 0x8c, 0x71, 0x04, 0x5e, 0xe1, 0xc0, 0x33, 0xeb, 0xbc, - 0x15, 0xfa, 0x09, 0xce, 0xb8, 0xcb, 0x92, 0xee, 0xbd, 0x2a, 0xb7, 0x36, 0x49, 0x5d, 0x4c, 0x78, - 0x49, 0x83, 0x97, 0x49, 0x2a, 0x62, 0xa2, 0x4b, 0x1e, 0x27, 0x01, 0x57, 0x0b, 0x13, 0x52, 0x22, - 0x4b, 0x79, 0x63, 0x54, 0xc1, 0xc4, 0x97, 0x48, 0x7c, 0x81, 0x1f, 0x36, 0x13, 0x55, 0x72, 0x51, - 0x65, 0x82, 0xca, 0x97, 0xf8, 0x92, 0x86, 0x2f, 0xd3, 0xd4, 0xbc, 0x44, 0x98, 0x34, 0x84, 0x19, - 0xa6, 0xda, 0x25, 0xc0, 0xa4, 0x01, 0xcc, 0x3c, 0x75, 0x2e, 0x31, 0x26, 0x92, 0x86, 0x99, 0xa0, - 0xc2, 0x25, 0xb4, 0xa4, 0x41, 0xcb, 0x24, 0xb5, 0x2d, 0xd1, 0x25, 0x0d, 0x5d, 0x66, 0xa9, 0x6a, - 0x89, 0x2f, 0x69, 0xf8, 0x32, 0x42, 0x3d, 0x4b, 0x58, 0x89, 0x4b, 0x8a, 0xe6, 0xa8, 0x64, 0x09, - 0x2e, 0x69, 0xe0, 0x32, 0x4d, 0x0d, 0x4b, 0x84, 0x49, 0x43, 0x98, 0x41, 0xaa, 0x57, 0x82, 0x4b, - 0x1a, 0xb8, 0x4c, 0x52, 0xb7, 0x12, 0x5d, 0xd2, 0xd0, 0x65, 0x80, 0x8a, 0x95, 0xa0, 0x12, 0x17, - 0xb2, 0x0c, 0x52, 0xab, 0x12, 0x5d, 0xf2, 0x8a, 0x45, 0x93, 0x54, 0xa9, 0xc4, 0x97, 0xc0, 0x7a, - 0xd1, 0x24, 0xf5, 0x29, 0x01, 0x26, 0x92, 0x73, 0xb1, 0x81, 0x4a, 0x48, 0xad, 0x34, 0x66, 0xd5, - 0x18, 0xb3, 0x08, 0xb0, 0xdc, 0x00, 0xc6, 0xf3, 0x44, 0xc2, 0x6a, 0x05, 0xb0, 0x6a, 0x1f, 0x9f, - 0x78, 0x4e, 0xdb, 0x3f, 0xb0, 0x5b, 0xbc, 0x8b, 0x97, 0x78, 0xd3, 0x8a, 0xbb, 0xfb, 0xff, 0xc6, - 0xbd, 0x0b, 0x84, 0x5c, 0x21, 0x90, 0xb3, 0x1b, 0xef, 0x8f, 0xdb, 0xae, 0xf7, 0xe1, 0x88, 0xab, - 0x17, 0xf4, 0x7e, 0x71, 0xf5, 0x02, 0x3d, 0x9c, 0xc9, 0x84, 0xd0, 0x62, 0xd2, 0x20, 0xb2, 0xca, - 0x51, 0xd0, 0xb7, 0xbe, 0x2f, 0xe8, 0x59, 0x77, 0x11, 0x6d, 0xc5, 0xa3, 0xae, 0xd5, 0x76, 0x0e, - 0xdd, 0x4f, 0xfe, 0x61, 0xc3, 0x7e, 0xcf, 0x65, 0x77, 0xc4, 0x5b, 0x51, 0x78, 0xe3, 0x65, 0x4f, - 0x44, 0x5b, 0x01, 0x68, 0x9b, 0x9c, 0x1c, 0xcf, 0x28, 0x1c, 0x11, 0x47, 0xc4, 0xe5, 0x8f, 0x38, - 0xcf, 0x7e, 0xbf, 0x5d, 0x23, 0xd0, 0x08, 0xb4, 0x02, 0x42, 0x5b, 0x8d, 0xa1, 0x8d, 0x88, 0x2b, - 0x34, 0xb4, 0xb1, 0x49, 0xae, 0xf7, 0x8b, 0x4d, 0x72, 0xba, 0x35, 0x2b, 0x7f, 0xe2, 0x8a, 0x15, - 0x3e, 0x51, 0x55, 0x2e, 0x54, 0x99, 0x52, 0xc9, 0x13, 0x59, 0xac, 0xd8, 0x09, 0x28, 0xd3, 0x43, - 0x55, 0x8d, 0xa1, 0x8a, 0xc8, 0x62, 0x05, 0x6e, 0x40, 0xe5, 0x8d, 0x57, 0x71, 0x63, 0xbd, 0x67, - 0x1c, 0x6b, 0x31, 0x2c, 0x05, 0x09, 0xda, 0x96, 0x1d, 0x45, 0x83, 0x34, 0x48, 0xc3, 0x41, 0x64, - 0xed, 0x01, 0x85, 0x6b, 0x2b, 0xe9, 0x7e, 0x51, 0x57, 0xc1, 0x30, 0x48, 0xbf, 0x8c, 0x03, 0x74, - 0x75, 0x30, 0x54, 0x51, 0x77, 0x10, 0x5d, 0x84, 0x97, 0x95, 0x48, 0xa5, 0x5f, 0x07, 0xf1, 0xdf, - 0x95, 0x30, 0x4a, 0xd2, 0x20, 0xea, 0xaa, 0xea, 0xc3, 0x1f, 0x24, 0x0b, 0x3f, 0xa9, 0x0e, 0xe3, - 0x41, 0x3a, 0xe8, 0x0e, 0xfa, 0x49, 0xf6, 0x5d, 0x35, 0x4c, 0xc2, 0xa4, 0xda, 0x57, 0xd7, 0xaa, - 0x3f, 0xfb, 0xa5, 0xda, 0x0f, 0xa3, 0xbf, 0x2b, 0x49, 0x1a, 0xa4, 0xaa, 0xd2, 0x0b, 0xd2, 0xe0, - 0x3c, 0x48, 0x54, 0xb5, 0x9f, 0x0c, 0xab, 0x69, 0xff, 0x3a, 0x19, 0xff, 0xa3, 0xaa, 0xbe, 0xa5, - 0x2a, 0xea, 0xa9, 0x5e, 0x25, 0x4c, 0x2a, 0xb1, 0x0a, 0xba, 0x5f, 0x82, 0xf3, 0xb0, 0x1f, 0xa6, - 0x37, 0xd5, 0x48, 0x85, 0x97, 0x5f, 0xce, 0x07, 0x71, 0x92, 0x7d, 0x57, 0xbd, 0x33, 0x26, 0x33, - 0x22, 0x19, 0x9d, 0x4f, 0xfe, 0x57, 0xd3, 0x5f, 0xab, 0xc1, 0x75, 0x10, 0xf6, 0x83, 0xf3, 0xbe, - 0xaa, 0x9c, 0x07, 0x51, 0xef, 0x6b, 0xd8, 0x4b, 0xbf, 0x54, 0x27, 0x7f, 0x3b, 0x46, 0xea, 0x91, - 0xef, 0xa6, 0xb2, 0x2d, 0x14, 0x1e, 0x40, 0xd0, 0x02, 0x47, 0x39, 0x03, 0x06, 0xc0, 0xfc, 0xa2, - 0x95, 0xa4, 0xf1, 0xa8, 0x9b, 0x46, 0x33, 0xaa, 0xdd, 0x9c, 0xbe, 0x69, 0x77, 0xf6, 0x8c, 0x7e, - 0x6b, 0xf6, 0x7a, 0x7d, 0x37, 0x09, 0x13, 0xbf, 0x31, 0x7e, 0xaf, 0x7e, 0x23, 0x19, 0xfa, 0x5e, - 0xff, 0xda, 0x77, 0x66, 0xaf, 0xcf, 0x4d, 0xda, 0xf7, 0x5e, 0x9e, 0xdf, 0x9c, 0xbd, 0x32, 0x3f, - 0xfb, 0x9f, 0x74, 0x26, 0x2f, 0xc8, 0xb7, 0xe7, 0x2f, 0x68, 0x3f, 0x7b, 0x3f, 0xbf, 0x30, 0x40, - 0x19, 0x16, 0x9c, 0xac, 0x0c, 0xfc, 0x95, 0xee, 0x20, 0x4a, 0xd2, 0x38, 0x08, 0xa3, 0x34, 0x11, - 0x1f, 0xa3, 0xb2, 0x5a, 0xf3, 0x71, 0xf3, 0x85, 0x27, 0x83, 0x8f, 0x61, 0xd4, 0xb3, 0xf6, 0xd6, - 0x36, 0x84, 0x9b, 0x79, 0x30, 0x09, 0xf8, 0xd6, 0xde, 0xda, 0xba, 0x70, 0x43, 0x5b, 0xb1, 0xba, - 0x08, 0xbf, 0x61, 0x24, 0xd6, 0x39, 0x70, 0x07, 0xdd, 0xca, 0x38, 0x05, 0x22, 0xa4, 0x9c, 0xce, - 0x60, 0x14, 0x77, 0x15, 0x4c, 0xc1, 0x63, 0x7d, 0x54, 0x37, 0x5f, 0x07, 0xf1, 0xd8, 0xc3, 0xac, - 0xe1, 0x14, 0x19, 0x20, 0xd5, 0xe5, 0x87, 0x20, 0xb1, 0xe3, 0xcb, 0xd1, 0x95, 0x8a, 0x52, 0x6b, - 0x6f, 0x2d, 0x8d, 0x47, 0x0a, 0xa5, 0x2c, 0xbe, 0xb3, 0x3a, 0x03, 0x36, 0x0b, 0x1a, 0xa3, 0x0b, - 0x9a, 0x7a, 0x18, 0x63, 0x04, 0xdc, 0xc7, 0x18, 0x02, 0x4e, 0x2c, 0xfb, 0x11, 0xcf, 0x41, 0x09, - 0x6b, 0x18, 0x74, 0x07, 0x8e, 0xf6, 0x20, 0xd2, 0x1f, 0x60, 0x1a, 0x84, 0x4a, 0x87, 0xe0, 0x69, - 0x11, 0x3c, 0x3d, 0xc2, 0xa6, 0x49, 0x18, 0x74, 0x09, 0x84, 0x36, 0xc1, 0xd1, 0xa7, 0xcc, 0x60, - 0xa4, 0xee, 0xd0, 0xd2, 0x6c, 0x83, 0xd3, 0x23, 0x02, 0x27, 0x51, 0xb0, 0x64, 0x0a, 0x99, 0x54, - 0x19, 0x40, 0xae, 0xd0, 0x49, 0x96, 0x31, 0x64, 0xcb, 0x18, 0xd2, 0x65, 0x06, 0xf9, 0xc2, 0x22, - 0x61, 0x60, 0x64, 0x0c, 0x96, 0x94, 0x3d, 0x42, 0xce, 0x70, 0x23, 0xe6, 0x22, 0x47, 0x43, 0x0d, - 0x99, 0x98, 0x54, 0x0d, 0x9e, 0xb2, 0x99, 0x40, 0xdd, 0x0c, 0xa2, 0x70, 0xa6, 0x50, 0x39, 0xe3, - 0x28, 0x9d, 0x71, 0xd4, 0xce, 0x2c, 0x8a, 0x87, 0x49, 0xf5, 0x40, 0x29, 0x1f, 0x3c, 0xf5, 0x7b, - 0x84, 0x02, 0x56, 0xc2, 0x1e, 0x7e, 0xb0, 0x5d, 0x64, 0x83, 0xe3, 0xc7, 0x02, 0x8f, 0x4f, 0x33, - 0x62, 0xb8, 0x0e, 0xfe, 0x18, 0xe8, 0x04, 0xd1, 0x24, 0xa2, 0x68, 0x20, 0x61, 0x34, 0x8d, 0x38, - 0x1a, 0x4b, 0x20, 0x8d, 0x25, 0x92, 0x66, 0x12, 0x4a, 0x6c, 0x62, 0x09, 0x4e, 0x30, 0x33, 0x48, - 0x79, 0x37, 0x43, 0x65, 0x56, 0xc6, 0xe9, 0xab, 0xe0, 0x22, 0x56, 0x17, 0x26, 0x64, 0x9c, 0x79, - 0xe7, 0x6e, 0xc7, 0x80, 0x67, 0x69, 0xcd, 0xb4, 0x5b, 0x6f, 0xdf, 0x4e, 0x75, 0x90, 0xd5, 0xef, - 0xa9, 0xf4, 0x2f, 0x0c, 0x61, 0x0c, 0x5f, 0xcf, 0x43, 0xd4, 0x54, 0x4e, 0x6b, 0x4c, 0x69, 0x39, - 0x7d, 0x1c, 0x33, 0x4a, 0xca, 0x0d, 0x96, 0x94, 0x2c, 0x29, 0x59, 0x52, 0xb2, 0xa4, 0x64, 0x49, - 0xc9, 0x92, 0x92, 0x7c, 0xac, 0x5c, 0x25, 0x25, 0xfa, 0xd9, 0x45, 0xf6, 0x20, 0x77, 0x8b, 0x18, - 0xf6, 0x4c, 0xdb, 0x4a, 0x8e, 0xb4, 0x63, 0xe2, 0x39, 0xc4, 0x73, 0xdd, 0x90, 0xc7, 0x31, 0x85, - 0x80, 0x9a, 0x48, 0x44, 0x0d, 0x26, 0xa4, 0xa6, 0x12, 0x53, 0xe3, 0x09, 0xaa, 0xf1, 0x44, 0xd5, - 0x6c, 0xc2, 0x6a, 0x06, 0x71, 0x35, 0x84, 0xc0, 0x66, 0x50, 0x33, 0xe6, 0x6c, 0x64, 0x21, 0x63, - 0x85, 0x4a, 0xa9, 0x8b, 0xfe, 0x20, 0x48, 0xdf, 0x6d, 0x9a, 0x94, 0xb5, 0x66, 0x24, 0x70, 0xd7, - 0xa0, 0x47, 0x6a, 0xa8, 0xe8, 0x72, 0x52, 0x80, 0x7c, 0x36, 0x2a, 0x8c, 0x9b, 0x45, 0x2b, 0x26, - 0x9f, 0xd4, 0x51, 0x18, 0x19, 0xc7, 0x97, 0x0c, 0x2d, 0xaf, 0x16, 0x1e, 0x6f, 0x72, 0xd3, 0xb2, - 0xb5, 0xb7, 0x56, 0x33, 0xf4, 0xf9, 0x0e, 0xe3, 0xa0, 0x9b, 0x86, 0x83, 0xa8, 0x1e, 0x5e, 0x86, - 0x13, 0xc1, 0xf4, 0xba, 0x71, 0xcf, 0x79, 0xfb, 0x9b, 0x81, 0x21, 0x25, 0xf8, 0xc6, 0x90, 0xc2, - 0x90, 0xc2, 0x90, 0xc2, 0x6a, 0x8c, 0x4f, 0x73, 0xf7, 0x75, 0xf6, 0x0b, 0x3f, 0x0f, 0xa6, 0xdc, - 0xd5, 0x84, 0x31, 0xb3, 0x74, 0x2a, 0x0b, 0x85, 0xbe, 0x49, 0x7a, 0x15, 0x43, 0x99, 0x03, 0xcf, - 0x7a, 0x90, 0x1c, 0x8a, 0x67, 0x3d, 0x38, 0x61, 0x82, 0x67, 0x3d, 0xe0, 0x0f, 0xc8, 0xb3, 0x1e, - 0x72, 0xc0, 0x82, 0xa0, 0x66, 0xee, 0x59, 0xcf, 0x28, 0x8c, 0xcc, 0x3c, 0xe6, 0xd9, 0x31, 0xe8, - 0x91, 0xda, 0x41, 0x74, 0xa9, 0x78, 0xca, 0x23, 0xff, 0x83, 0xe2, 0x29, 0x0f, 0xee, 0xe3, 0xcd, - 0x5b, 0xb2, 0xeb, 0x6c, 0xc9, 0x92, 0x6e, 0x08, 0x0a, 0x29, 0x3c, 0xe5, 0x81, 0x0f, 0x29, 0xb5, - 0xcd, 0xdd, 0xda, 0xee, 0xf6, 0xce, 0xe6, 0xee, 0x16, 0x63, 0x0b, 0x0b, 0x32, 0x3e, 0xcd, 0x2a, - 0xbf, 0x78, 0xdc, 0xc3, 0x27, 0x28, 0x3d, 0x73, 0x40, 0xbd, 0xea, 0x7b, 0xe9, 0xf3, 0x98, 0x7f, - 0xa3, 0xef, 0xa3, 0x77, 0x81, 0x3e, 0xfa, 0xd3, 0xea, 0xfd, 0xdf, 0x70, 0xef, 0xc7, 0x40, 0x17, - 0x86, 0x9b, 0x17, 0x34, 0xb8, 0xf0, 0xb2, 0xd0, 0x3a, 0x41, 0xdd, 0x98, 0x72, 0x5e, 0x6d, 0x35, - 0xc2, 0x24, 0xb5, 0xd3, 0x14, 0x7c, 0x83, 0xe7, 0x51, 0x18, 0x39, 0x7d, 0x75, 0xa5, 0xa6, 0x37, - 0xec, 0x44, 0xa3, 0x7e, 0x1f, 0x78, 0x57, 0xcc, 0x51, 0xf0, 0xcd, 0x9c, 0x87, 0x39, 0x8e, 0x7b, - 0x2a, 0x56, 0xbd, 0xfd, 0x9b, 0xd9, 0xa3, 0x30, 0x50, 0x91, 0x87, 0x91, 0x7f, 0xad, 0x9e, 0x7f, - 0x59, 0xd0, 0xcb, 0xb1, 0xe2, 0x51, 0x37, 0x8d, 0x66, 0x67, 0x80, 0xcd, 0xe9, 0xe7, 0xe5, 0xce, - 0xde, 0x94, 0xdf, 0x9a, 0x7d, 0x48, 0xbe, 0x9b, 0x84, 0x89, 0xdf, 0x18, 0x7f, 0x3a, 0x7e, 0x23, - 0x19, 0xfa, 0x5e, 0xff, 0xda, 0x77, 0x66, 0x1f, 0x82, 0x9b, 0xb4, 0xef, 0x7d, 0x04, 0x7e, 0x73, - 0xf6, 0xe2, 0xfd, 0xec, 0x7f, 0xd2, 0x99, 0xbc, 0x66, 0x7f, 0x7f, 0xfe, 0x42, 0x0f, 0xb2, 0x17, - 0xe7, 0xdf, 0x7d, 0x8b, 0xc9, 0x5e, 0x6f, 0x79, 0x13, 0x0f, 0x83, 0xbf, 0x39, 0x41, 0x9f, 0xc1, - 0x7e, 0x49, 0xb0, 0xc7, 0x8a, 0x4e, 0x38, 0x3e, 0x0e, 0xe4, 0xdf, 0xd6, 0xd5, 0xa0, 0xa7, 0xfa, - 0x88, 0xc3, 0xdf, 0xd9, 0x84, 0x4f, 0xf6, 0x04, 0x98, 0x77, 0x88, 0xae, 0xf3, 0x0e, 0xd1, 0x62, - 0x0c, 0xe7, 0x1d, 0xa2, 0x5a, 0x1f, 0x81, 0x77, 0x88, 0x0a, 0x79, 0x10, 0xde, 0x21, 0x4a, 0x56, - 0x53, 0x96, 0xca, 0x05, 0x76, 0xae, 0xd9, 0x80, 0x7d, 0xfe, 0xc8, 0xfb, 0xfb, 0x17, 0xf7, 0xf5, - 0x67, 0x2c, 0x93, 0x35, 0x53, 0xe9, 0x6b, 0x26, 0xcc, 0xd5, 0xfb, 0xd0, 0xab, 0xf6, 0x41, 0x57, - 0xeb, 0xb3, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, 0x25, 0x56, 0x4b, 0xf2, 0x21, - 0x82, 0xba, 0xba, 0x1e, 0xb7, 0x89, 0xbd, 0x90, 0xb2, 0x40, 0x9b, 0xd9, 0x0f, 0x69, 0x1a, 0xa8, - 0xe0, 0x05, 0x7e, 0x19, 0x89, 0x09, 0xcb, 0x47, 0x0c, 0x5a, 0x36, 0x62, 0xca, 0x72, 0x11, 0xe3, - 0x96, 0x89, 0x18, 0xb7, 0x3c, 0xc4, 0xac, 0x65, 0x21, 0x1c, 0x3e, 0x2f, 0x12, 0x3a, 0xf0, 0xcb, - 0x3f, 0xbe, 0x5b, 0xf6, 0xf1, 0x3b, 0x72, 0xbe, 0x98, 0xd1, 0x27, 0x60, 0x19, 0xad, 0x21, 0xbb, - 0x3c, 0x0c, 0x90, 0x98, 0x99, 0xb4, 0xab, 0xc3, 0xb4, 0xa5, 0x87, 0x86, 0xed, 0xe2, 0x30, 0x51, - 0x1f, 0x6f, 0xc2, 0x7a, 0x57, 0x93, 0x76, 0x6b, 0x98, 0x1a, 0x02, 0x36, 0xb7, 0xb6, 0x18, 0x04, - 0x58, 0x88, 0xd0, 0xfa, 0xfb, 0x5f, 0x67, 0xd4, 0xcd, 0xd0, 0x62, 0xf4, 0x94, 0x4c, 0xdd, 0x8c, - 0x49, 0xba, 0x19, 0xc0, 0x6d, 0x14, 0x40, 0xd3, 0x5f, 0xbf, 0x30, 0xfe, 0xac, 0x90, 0x29, 0x4f, - 0xb7, 0x49, 0x80, 0x9d, 0x25, 0x62, 0x2e, 0x8e, 0x80, 0x5e, 0x14, 0x01, 0xbd, 0x18, 0x02, 0x73, - 0x11, 0x04, 0x4a, 0x0c, 0x01, 0xe5, 0x2e, 0xe4, 0x2c, 0x15, 0xc8, 0x0d, 0x0e, 0x7a, 0x37, 0x36, - 0x60, 0xd0, 0x3a, 0xf9, 0x24, 0x49, 0xb6, 0x85, 0xc2, 0x43, 0x2f, 0x5a, 0xc8, 0x2d, 0x6b, 0xa8, - 0x95, 0x1d, 0x2c, 0xe4, 0xba, 0xa0, 0x60, 0xf7, 0xb3, 0x32, 0xd8, 0x04, 0xbd, 0xab, 0x30, 0xaa, - 0x5c, 0xc6, 0x83, 0xd1, 0x50, 0xbc, 0x13, 0x66, 0x63, 0x0f, 0x8f, 0x5a, 0x2f, 0x3c, 0xd8, 0x61, - 0xe8, 0x79, 0x60, 0x06, 0x42, 0x91, 0x06, 0x3f, 0x01, 0x07, 0x3c, 0xd1, 0x06, 0x39, 0x61, 0x07, - 0x36, 0x61, 0x07, 0x33, 0x31, 0x07, 0x30, 0x49, 0xd8, 0x5f, 0xf3, 0x91, 0xa3, 0xe8, 0x65, 0xc0, - 0x04, 0xcb, 0x90, 0x42, 0x65, 0x30, 0x81, 0x32, 0x9c, 0xd2, 0x05, 0x51, 0xd9, 0x02, 0xac, 0x64, - 0x41, 0x55, 0xae, 0xc0, 0x2b, 0x55, 0xe0, 0x95, 0x29, 0xd8, 0x4a, 0x14, 0x1e, 0x44, 0x97, 0x91, - 0x20, 0x65, 0x06, 0x43, 0xf6, 0x81, 0x96, 0xa6, 0x1d, 0xc0, 0xbe, 0xd0, 0x32, 0x5a, 0xc5, 0x2d, - 0x99, 0xa4, 0x59, 0x06, 0xd3, 0x2d, 0x74, 0xda, 0x65, 0x0c, 0xfd, 0x32, 0x86, 0x86, 0x99, 0x41, - 0xc7, 0xb0, 0x68, 0x19, 0x18, 0x3d, 0xcb, 0x20, 0x82, 0xbf, 0x25, 0x13, 0xf6, 0x96, 0x7f, 0xe0, - 0xdb, 0xfc, 0xc1, 0x95, 0xbe, 0xd8, 0x77, 0x93, 0x19, 0xb0, 0x52, 0xc4, 0x08, 0x39, 0x9f, 0x29, - 0x4a, 0x5e, 0x93, 0xc4, 0x7b, 0xb7, 0xd8, 0x37, 0xf5, 0xd1, 0xb5, 0x85, 0xb9, 0xb6, 0x29, 0xb7, - 0xdb, 0x1b, 0xe5, 0xe3, 0x14, 0x88, 0x16, 0xf2, 0x75, 0xc6, 0xc2, 0x2b, 0x47, 0x87, 0x84, 0xbe, - 0x2a, 0xd7, 0x88, 0x2b, 0x72, 0x8d, 0xb8, 0x1a, 0x17, 0xfb, 0x4a, 0x5c, 0xaa, 0x54, 0x4b, 0x19, - 0x04, 0xa9, 0x30, 0x13, 0x2b, 0x7b, 0x78, 0xec, 0xdc, 0x10, 0x49, 0xff, 0x4e, 0xa1, 0x94, 0xd1, - 0x11, 0x84, 0x42, 0x29, 0x88, 0x88, 0x81, 0x30, 0xd6, 0x5f, 0x9c, 0xea, 0x74, 0xfe, 0xfb, 0xed, - 0xf1, 0x0b, 0x7a, 0x3f, 0x79, 0x3f, 0xd4, 0x91, 0x99, 0x16, 0x9d, 0xac, 0x70, 0x78, 0x5d, 0xab, - 0x84, 0x51, 0xaa, 0xe2, 0x8b, 0xa0, 0xab, 0x2a, 0x41, 0xaf, 0x17, 0xab, 0x24, 0xc1, 0x51, 0x92, - 0x2d, 0xb1, 0x9f, 0x5a, 0xb2, 0x55, 0x98, 0x49, 0x2d, 0x59, 0x8e, 0xc8, 0xa5, 0x96, 0x2c, 0x3f, - 0xf7, 0xa2, 0x96, 0xac, 0x68, 0x82, 0x4b, 0x2d, 0x59, 0xd9, 0x6a, 0x1a, 0x6a, 0xc9, 0xf2, 0xcd, - 0x0f, 0xd4, 0x92, 0x91, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, - 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xcc, 0x60, 0x94, - 0xe6, 0xcf, 0xd2, 0x4c, 0x83, 0xd1, 0xfd, 0x59, 0x46, 0x9e, 0xa8, 0x18, 0x23, 0x99, 0x32, 0x98, - 0x54, 0xa1, 0x93, 0x2b, 0x63, 0x48, 0x96, 0x31, 0x64, 0xcb, 0x0c, 0xd2, 0x85, 0x45, 0xbe, 0xc0, - 0x48, 0x58, 0x06, 0x11, 0x7c, 0xc5, 0xd8, 0xe4, 0xa4, 0x0b, 0x93, 0xe1, 0xdc, 0x67, 0x39, 0x1b, - 0xbf, 0x03, 0xda, 0xde, 0x0a, 0xd2, 0x54, 0xc5, 0x11, 0xac, 0x74, 0xcc, 0xfa, 0xdf, 0xaf, 0xbf, - 0x7e, 0x5e, 0xaf, 0xec, 0x9e, 0xfd, 0xfb, 0x79, 0xa3, 0xb2, 0x7b, 0x36, 0xfd, 0x76, 0x63, 0xf2, - 0xcb, 0xf4, 0xfb, 0xcd, 0xcf, 0xeb, 0x95, 0xda, 0xfc, 0xfb, 0xad, 0xcf, 0xeb, 0x95, 0xad, 0xb3, - 0x37, 0x7f, 0xfd, 0xf5, 0xf6, 0xcd, 0x3f, 0xef, 0x6e, 0x9f, 0xff, 0x07, 0xff, 0xcf, 0xe2, 0xd4, - 0x38, 0x83, 0xef, 0x3d, 0xf4, 0x71, 0x6a, 0x5c, 0xff, 0x43, 0x70, 0x6a, 0x9c, 0xfc, 0xce, 0x28, - 0x4b, 0x39, 0x35, 0x9e, 0xaf, 0xdd, 0xe6, 0xcf, 0x80, 0x3e, 0x3e, 0x3b, 0xc6, 0xb9, 0xf1, 0xf2, - 0x58, 0xc8, 0xb9, 0x71, 0xc6, 0x8c, 0x55, 0xc4, 0x0c, 0x4e, 0x8e, 0xdf, 0x9f, 0x1c, 0x77, 0x87, - 0xd7, 0x35, 0x77, 0xfe, 0x8a, 0xec, 0xd9, 0x1b, 0xe2, 0xec, 0xb8, 0x69, 0x11, 0x6a, 0xda, 0x91, - 0x9a, 0xfb, 0x0e, 0xe8, 0xe8, 0xf8, 0x82, 0xf9, 0x9c, 0x1c, 0x5f, 0x85, 0x99, 0x9c, 0x1c, 0xcf, - 0x11, 0xb8, 0x9c, 0x1c, 0xcf, 0xcf, 0xbd, 0x38, 0x39, 0x5e, 0x34, 0xc5, 0xe5, 0xe4, 0x78, 0xd9, - 0xaa, 0x1a, 0x4e, 0x8e, 0xe7, 0x9b, 0x1f, 0x38, 0x39, 0x4e, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, - 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, - 0x04, 0x47, 0x90, 0x32, 0x83, 0x39, 0x39, 0xae, 0x95, 0x3c, 0x71, 0x72, 0x9c, 0x64, 0xca, 0x60, - 0x52, 0x85, 0x4e, 0xae, 0x8c, 0x21, 0x59, 0xc6, 0x90, 0x2d, 0x33, 0x48, 0x17, 0x16, 0xf9, 0x02, - 0x23, 0x61, 0x19, 0x44, 0x38, 0x39, 0x2e, 0x84, 0xe5, 0x70, 0x72, 0x5c, 0xc7, 0x03, 0x70, 0x72, - 0xfc, 0xc7, 0x5f, 0x9c, 0x1c, 0xcf, 0x13, 0x7d, 0x9c, 0x1c, 0xd7, 0xff, 0x10, 0x9c, 0x1c, 0x27, - 0xbf, 0x33, 0xca, 0x52, 0x4e, 0x8e, 0xe7, 0x6b, 0x77, 0x49, 0xa6, 0x40, 0x1f, 0x8e, 0x8e, 0x71, - 0x70, 0xbc, 0x3c, 0x16, 0x72, 0x70, 0x9c, 0x21, 0x63, 0x05, 0x21, 0x83, 0x73, 0xe3, 0x0f, 0xe7, - 0xc6, 0xe7, 0xff, 0x91, 0x63, 0xe3, 0xa6, 0xc6, 0x27, 0x2b, 0x1c, 0x5e, 0x6f, 0x83, 0xaf, 0x1c, - 0xdf, 0xe6, 0xca, 0xf1, 0x9c, 0xcc, 0xe4, 0xe0, 0x78, 0x8e, 0xc8, 0xe5, 0xe0, 0x78, 0x7e, 0xee, - 0xc5, 0xc1, 0xf1, 0xa2, 0x29, 0x2e, 0x07, 0xc7, 0xcb, 0x56, 0xd5, 0x70, 0x70, 0x3c, 0xdf, 0xfc, - 0xc0, 0xc1, 0x71, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, - 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x19, 0xcc, 0xc1, - 0x71, 0xad, 0xe4, 0x89, 0x83, 0xe3, 0x24, 0x53, 0x06, 0x93, 0x2a, 0x74, 0x72, 0x65, 0x0c, 0xc9, - 0x32, 0x86, 0x6c, 0x99, 0x41, 0xba, 0xb0, 0xc8, 0x17, 0x18, 0x09, 0xcb, 0x20, 0x62, 0xc4, 0xe0, - 0xf8, 0x36, 0x07, 0xc7, 0x35, 0x31, 0x06, 0x43, 0x06, 0xc7, 0x83, 0xca, 0x85, 0x5d, 0x39, 0x3c, - 0xfb, 0x67, 0xe3, 0xb7, 0xda, 0xed, 0xde, 0x9b, 0x7f, 0x76, 0x6e, 0x1f, 0xfe, 0xf0, 0xdf, 0xc7, - 0x7e, 0xdb, 0xc6, 0x6f, 0x3b, 0xb7, 0x7b, 0x4b, 0xfe, 0xcb, 0xf6, 0xed, 0xde, 0x13, 0xff, 0x1f, - 0x5b, 0xb7, 0xbf, 0x2e, 0xfc, 0xd6, 0xf1, 0xcf, 0x37, 0x97, 0xfd, 0x81, 0xda, 0x92, 0x3f, 0xf0, - 0x6e, 0xd9, 0x1f, 0x78, 0xb7, 0xe4, 0x0f, 0x2c, 0x35, 0x69, 0x73, 0xc9, 0x1f, 0xd8, 0xba, 0xfd, - 0x77, 0xe1, 0xf7, 0xff, 0xfa, 0xf8, 0x6f, 0xdd, 0xbe, 0x7d, 0xf3, 0xef, 0xb2, 0xff, 0xb6, 0x73, - 0xfb, 0xef, 0xde, 0x1b, 0x8e, 0xd1, 0x33, 0x15, 0x7d, 0xef, 0x8b, 0x1c, 0xa3, 0xd7, 0xff, 0x10, - 0x1c, 0xa3, 0x27, 0xdb, 0x35, 0xca, 0x52, 0x8e, 0xd1, 0xe7, 0x6b, 0x77, 0x29, 0x66, 0x62, 0xb7, - 0xb9, 0x80, 0xbd, 0xcc, 0x16, 0x72, 0x8e, 0x9e, 0x31, 0x63, 0x15, 0x31, 0x83, 0x83, 0xf4, 0x0f, - 0x06, 0xe9, 0xb7, 0xb9, 0x80, 0xdd, 0xf8, 0x08, 0x35, 0xed, 0xcf, 0x41, 0x2f, 0x60, 0xdf, 0xe6, - 0x02, 0xf6, 0x7c, 0xcc, 0xe4, 0x1c, 0x7d, 0x8e, 0xc0, 0xe5, 0x1c, 0x7d, 0x7e, 0xee, 0xc5, 0x39, - 0xfa, 0xa2, 0x29, 0x2e, 0xe7, 0xe8, 0xcb, 0x56, 0xd5, 0x70, 0x8e, 0x3e, 0xdf, 0xfc, 0xc0, 0x39, - 0x7a, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, - 0xd8, 0x44, 0x08, 0x83, 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x19, 0xcc, 0x39, 0x7a, 0xad, - 0xe4, 0x89, 0x73, 0xf4, 0x24, 0x53, 0x06, 0x93, 0x2a, 0x74, 0x72, 0x65, 0x0c, 0xc9, 0x32, 0x86, - 0x6c, 0x99, 0x41, 0xba, 0xb0, 0xc8, 0x17, 0x18, 0x09, 0xcb, 0x20, 0xc2, 0x39, 0x7a, 0x21, 0x2c, - 0x87, 0x73, 0xf4, 0x3a, 0x1e, 0x80, 0x73, 0xf4, 0x9c, 0xa3, 0x7f, 0xfa, 0x17, 0xe7, 0xe8, 0xf3, - 0xf4, 0x45, 0xce, 0xd1, 0xeb, 0x7f, 0x08, 0xce, 0xd1, 0x93, 0xed, 0x1a, 0x65, 0x29, 0xe7, 0xe8, - 0xf3, 0xb5, 0xbb, 0x24, 0x33, 0xb1, 0x5c, 0x47, 0x5f, 0x5e, 0x0b, 0x39, 0x46, 0xcf, 0x90, 0xb1, - 0x82, 0x90, 0xc1, 0x29, 0xfa, 0x87, 0x53, 0xf4, 0x5c, 0x47, 0x6f, 0x7a, 0x7c, 0xb2, 0xfa, 0x41, - 0x54, 0x09, 0x7a, 0xff, 0x5f, 0xd0, 0x55, 0x51, 0xf7, 0xa6, 0x92, 0x84, 0x3d, 0xa0, 0x09, 0xfa, - 0x47, 0x6c, 0xe7, 0xf8, 0xfc, 0x2a, 0xcc, 0xe4, 0xf8, 0x7c, 0x8e, 0xa8, 0xe5, 0xf8, 0x7c, 0x7e, - 0xee, 0xc5, 0xf1, 0xf9, 0xa2, 0xa9, 0x2d, 0xc7, 0xe7, 0xcb, 0x56, 0xcd, 0xc0, 0x8c, 0xcf, 0x2f, - 0xd0, 0x03, 0xbc, 0x51, 0xfa, 0xc5, 0x47, 0xe0, 0x58, 0x7d, 0x99, 0x09, 0x0f, 0x22, 0xf1, 0x01, - 0x26, 0x40, 0xa8, 0x44, 0x08, 0x9e, 0x10, 0xc1, 0x13, 0x23, 0x6c, 0x82, 0x84, 0x41, 0x94, 0x40, - 0x08, 0x13, 0x1c, 0x71, 0xca, 0x0c, 0xc6, 0xd2, 0x1f, 0x2e, 0xe4, 0x19, 0x24, 0x1d, 0x22, 0x28, - 0x71, 0x82, 0x25, 0x50, 0xc8, 0x44, 0xca, 0x00, 0x42, 0x85, 0x4e, 0xac, 0x8c, 0x21, 0x58, 0xc6, - 0x10, 0x2d, 0x33, 0x08, 0x17, 0x16, 0xf1, 0x02, 0x23, 0x60, 0xb0, 0x44, 0x2c, 0x33, 0xfc, 0xa2, - 0x1f, 0x5c, 0x26, 0xb8, 0xc1, 0x72, 0x9e, 0xaf, 0xa6, 0x8f, 0x01, 0x1a, 0x5f, 0x30, 0x35, 0x8f, - 0xf0, 0x44, 0xcd, 0x04, 0xc2, 0x66, 0x10, 0x71, 0x33, 0x85, 0xc0, 0x19, 0x47, 0xe4, 0x8c, 0x23, - 0x74, 0x66, 0x11, 0x3b, 0x4c, 0x82, 0x07, 0x4a, 0xf4, 0x32, 0xe8, 0xc0, 0x6a, 0x28, 0x17, 0x32, - 0x86, 0x8a, 0x46, 0x57, 0x2a, 0x9e, 0xce, 0x92, 0x02, 0x67, 0x8d, 0x79, 0x97, 0xab, 0x06, 0xfc, - 0x0c, 0x4e, 0x34, 0xba, 0x1a, 0x83, 0x8a, 0xae, 0x5c, 0xe4, 0x5b, 0x87, 0xd6, 0xa0, 0x65, 0x4f, - 0x61, 0x82, 0x16, 0xed, 0xee, 0x61, 0x0c, 0xd0, 0xa4, 0x65, 0x0f, 0x03, 0xad, 0x4d, 0xc3, 0x65, - 0x17, 0x80, 0xe1, 0xc8, 0xca, 0xf4, 0x03, 0x40, 0x93, 0x45, 0x4b, 0x89, 0xc5, 0xfd, 0x87, 0x61, - 0x67, 0x46, 0x87, 0xf9, 0xec, 0xcc, 0x08, 0x72, 0x07, 0x76, 0x66, 0xe4, 0xb8, 0x35, 0x3b, 0x33, - 0xc2, 0x1f, 0x88, 0x9d, 0x19, 0xf2, 0xa7, 0x17, 0x42, 0xc7, 0x9c, 0xce, 0x4c, 0x72, 0x93, 0xa4, - 0xea, 0x0a, 0x97, 0x3e, 0xad, 0x81, 0xaf, 0xba, 0xba, 0xa3, 0x21, 0xe0, 0x2b, 0xaf, 0xb2, 0x07, - 0xf9, 0xdf, 0xe7, 0xf5, 0xca, 0xae, 0x5d, 0x39, 0x0c, 0x2a, 0x17, 0x67, 0xff, 0xd4, 0x6e, 0xff, - 0xfa, 0xeb, 0xed, 0x4f, 0x7e, 0xf0, 0x7f, 0xb8, 0x51, 0xf7, 0x8c, 0x75, 0x36, 0xf3, 0xc4, 0x12, - 0x3f, 0xb8, 0x0e, 0xfa, 0x23, 0x85, 0x5f, 0x61, 0x4f, 0x1f, 0x83, 0xb5, 0x35, 0x6b, 0x6b, 0xd6, - 0xd6, 0xac, 0xad, 0x59, 0x5b, 0xb3, 0xb6, 0x66, 0x6d, 0x4d, 0xce, 0xc4, 0xda, 0xfa, 0x09, 0x19, - 0x63, 0x14, 0x46, 0xe9, 0xbb, 0x4d, 0x03, 0x0a, 0xeb, 0x1d, 0xe0, 0x47, 0x68, 0x07, 0xd1, 0xa5, - 0x82, 0xaf, 0xaa, 0xb1, 0x13, 0xf6, 0xda, 0x6c, 0x78, 0x00, 0x9e, 0x79, 0x18, 0x52, 0x58, 0x2c, - 0x3c, 0xce, 0xe9, 0xac, 0x56, 0x35, 0xe5, 0x79, 0x0e, 0xe3, 0xa0, 0x9b, 0x86, 0x83, 0xa8, 0x1e, - 0x5e, 0x86, 0x93, 0xf1, 0x8e, 0x75, 0xf8, 0xe7, 0xba, 0xfd, 0xcd, 0x80, 0x10, 0x10, 0x7c, 0x63, - 0x08, 0x10, 0x1e, 0x02, 0x6a, 0x9b, 0xbb, 0xb5, 0xdd, 0xed, 0x9d, 0xcd, 0xdd, 0x2d, 0xc6, 0x02, - 0x16, 0x24, 0xb4, 0xfe, 0xfe, 0x17, 0xdb, 0xfd, 0xcc, 0x75, 0xcb, 0xc2, 0xcc, 0x57, 0x15, 0x5e, - 0x7e, 0x49, 0xf1, 0xfb, 0xfd, 0xb3, 0xe7, 0x60, 0xc3, 0x5f, 0x87, 0xf9, 0x6c, 0xf8, 0x0b, 0xf2, - 0x04, 0x36, 0xfc, 0xe5, 0xb8, 0x35, 0x1b, 0xfe, 0xc2, 0x1f, 0x88, 0x0d, 0x7f, 0xb2, 0xa6, 0x17, - 0x42, 0xc7, 0xac, 0x86, 0xff, 0xef, 0x06, 0xf4, 0xfb, 0xb7, 0xd8, 0xef, 0xd7, 0xfc, 0xc5, 0x7e, - 0x3f, 0xeb, 0x8a, 0x1c, 0x1f, 0x87, 0xfd, 0x7e, 0x66, 0xf3, 0x22, 0x42, 0x00, 0xfb, 0xfd, 0xe2, - 0x43, 0xc0, 0xe6, 0x16, 0x1b, 0xfd, 0x2c, 0x44, 0x68, 0xfd, 0x77, 0x5f, 0x6c, 0xf4, 0xd3, 0x62, - 0xf8, 0x94, 0x8c, 0x7a, 0xf7, 0x6b, 0x66, 0xbf, 0xf9, 0x17, 0x3a, 0x2e, 0x5e, 0x05, 0xb7, 0xf8, - 0x23, 0xa4, 0x2b, 0x61, 0xf1, 0xfc, 0x1a, 0xc8, 0xa7, 0x41, 0x15, 0x45, 0xd0, 0x4a, 0x22, 0x50, - 0xd6, 0xcf, 0xc5, 0xf6, 0x3a, 0x81, 0xce, 0xc5, 0xf6, 0xfa, 0xdc, 0x95, 0x8b, 0xed, 0xa5, 0x91, - 0x50, 0x2e, 0xb6, 0x27, 0xa7, 0xf9, 0x31, 0x44, 0x60, 0x0f, 0x00, 0xef, 0x2e, 0x3c, 0x54, 0xc1, - 0x45, 0xac, 0x2e, 0x10, 0x23, 0xfe, 0x7c, 0x77, 0x06, 0xa0, 0xc6, 0xc7, 0x6a, 0xcd, 0x4a, 0xc3, - 0xb7, 0x6f, 0xa7, 0x45, 0x52, 0x75, 0x4a, 0x31, 0x59, 0x2a, 0x95, 0xd8, 0x52, 0x94, 0x6b, 0xd5, - 0x3e, 0xaa, 0x1b, 0xb4, 0xa2, 0x08, 0x73, 0x8b, 0x2d, 0xf4, 0xd6, 0x5a, 0xe8, 0x2d, 0xb5, 0x98, - 0x5b, 0x69, 0x51, 0x02, 0x08, 0x68, 0x77, 0x97, 0x5d, 0x5d, 0xa4, 0x1b, 0xb1, 0xa7, 0x9f, 0x58, - 0x1a, 0x8f, 0xba, 0x69, 0x34, 0xe3, 0xba, 0xcd, 0xe9, 0x47, 0xe0, 0xce, 0x1e, 0xde, 0x6f, 0xcd, - 0xde, 0xbb, 0xef, 0x26, 0x61, 0xe2, 0x37, 0xc6, 0x2f, 0xdc, 0x6f, 0x24, 0x43, 0xdf, 0xeb, 0x5f, - 0xfb, 0xce, 0xec, 0xbd, 0xba, 0x49, 0xfb, 0xde, 0x5b, 0xf5, 0x9b, 0xb3, 0x77, 0xe9, 0x67, 0xff, - 0x93, 0xce, 0xe4, 0xcd, 0xf9, 0x8d, 0x20, 0xb2, 0xe7, 0x6f, 0xa9, 0x13, 0xf6, 0x30, 0x98, 0x9c, - 0x7c, 0x5e, 0x24, 0xdb, 0x42, 0xe1, 0x01, 0x17, 0x2d, 0xd0, 0x96, 0x32, 0xc0, 0xca, 0x8e, 0x14, - 0x72, 0xfd, 0x4f, 0xb0, 0xef, 0x59, 0x13, 0x50, 0x05, 0x69, 0x1a, 0x87, 0xe7, 0xa3, 0x54, 0xc9, - 0xbf, 0x40, 0xf0, 0xae, 0x1b, 0xf4, 0xc0, 0x70, 0xe1, 0xf1, 0x0d, 0xe3, 0xee, 0x66, 0x98, 0x23, - 0x2d, 0xa4, 0x23, 0x2c, 0xc0, 0x23, 0x2b, 0xb4, 0x23, 0x2a, 0xd8, 0x23, 0x29, 0xd8, 0x23, 0x28, - 0xcc, 0x23, 0x27, 0x72, 0xf4, 0xd7, 0x7c, 0xe4, 0x28, 0x77, 0x23, 0x5b, 0xd3, 0x61, 0x2e, 0x98, - 0xe0, 0x95, 0xad, 0x89, 0x9f, 0x98, 0x8d, 0xd2, 0x5a, 0x87, 0x20, 0x34, 0x70, 0xc4, 0x06, 0x91, - 0xe0, 0x00, 0x13, 0x1d, 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, - 0x44, 0x20, 0xc4, 0x08, 0x8e, 0x20, 0x65, 0x06, 0xf7, 0x07, 0xdd, 0xa0, 0x5f, 0x19, 0xc6, 0x83, - 0x54, 0x75, 0x21, 0x25, 0x0c, 0x77, 0xed, 0xa0, 0x87, 0x4f, 0xc2, 0x11, 0x68, 0xd2, 0x2a, 0xb3, - 0xe8, 0x95, 0x01, 0x34, 0x0b, 0x9d, 0x6e, 0x19, 0x43, 0xbb, 0x8c, 0xa1, 0x5f, 0x66, 0xd0, 0x30, - 0x2c, 0x3a, 0x06, 0x46, 0xcb, 0x32, 0x88, 0xe0, 0x8f, 0x40, 0xab, 0x68, 0x74, 0xa5, 0xe2, 0x00, - 0x90, 0xe0, 0xdc, 0x27, 0x39, 0x1b, 0x35, 0x40, 0xdb, 0x9d, 0x68, 0x74, 0x35, 0x06, 0x0f, 0x5d, - 0x34, 0xcf, 0xb7, 0x0c, 0x39, 0xfc, 0x9a, 0x59, 0x8f, 0x3c, 0x04, 0x7b, 0xf7, 0x10, 0xc0, 0xc3, - 0xb0, 0xd9, 0x43, 0x40, 0x0e, 0xc5, 0xe2, 0xb1, 0x00, 0xb6, 0x8f, 0x56, 0x4a, 0x61, 0x39, 0x6c, - 0x2c, 0x75, 0x16, 0xee, 0xfb, 0x61, 0x23, 0xa4, 0x6d, 0x11, 0x1c, 0x9c, 0x35, 0x3a, 0x78, 0x70, - 0x70, 0x56, 0x7a, 0xb0, 0x40, 0x18, 0xf7, 0x2a, 0x50, 0x7c, 0x10, 0x46, 0x7f, 0xdb, 0x77, 0xef, - 0x86, 0x13, 0xc5, 0xa6, 0x05, 0xa5, 0xe9, 0x60, 0x6e, 0x4f, 0xf5, 0x83, 0x1b, 0xb0, 0x61, 0xe2, - 0xa9, 0xcd, 0x9c, 0x23, 0x5e, 0x85, 0x99, 0x9c, 0x23, 0xce, 0x11, 0xad, 0x9c, 0x23, 0xce, 0xcf, - 0xbd, 0x38, 0x47, 0x5c, 0x34, 0x7f, 0xe5, 0x1c, 0x71, 0xd9, 0x4a, 0x16, 0xce, 0x11, 0xe7, 0x9b, - 0x1f, 0x38, 0x47, 0x4c, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, - 0xf0, 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x32, 0x83, 0x83, - 0xca, 0x79, 0x98, 0xe2, 0x0e, 0x0f, 0x4f, 0xcd, 0xe7, 0xc4, 0x30, 0x09, 0x94, 0x59, 0x44, 0xca, - 0x00, 0x42, 0x85, 0x4e, 0xac, 0x8c, 0x21, 0x58, 0xc6, 0x10, 0x2d, 0x33, 0x08, 0x17, 0x16, 0xf1, - 0x02, 0x23, 0x60, 0x19, 0x44, 0xf0, 0x27, 0x86, 0xcf, 0x07, 0x83, 0xbe, 0x0a, 0xa0, 0xa7, 0x85, - 0x37, 0x38, 0xbc, 0x57, 0x76, 0x67, 0xb4, 0x30, 0xce, 0x93, 0x97, 0x7a, 0x21, 0xc2, 0xd1, 0x32, - 0x0b, 0x0c, 0x16, 0x18, 0x2c, 0x30, 0x58, 0x60, 0xb0, 0xc0, 0x60, 0x81, 0xc1, 0x02, 0x83, 0x05, - 0xc6, 0x13, 0x23, 0xfe, 0x28, 0x8c, 0xd2, 0x77, 0x9b, 0xc0, 0xf5, 0x05, 0xe2, 0x9d, 0x2c, 0xed, - 0x20, 0xba, 0x1c, 0xbf, 0xfd, 0xcf, 0x90, 0x81, 0x11, 0xf7, 0xae, 0x72, 0xeb, 0x28, 0x8c, 0xe0, - 0x2f, 0x5b, 0x37, 0xe4, 0x92, 0xf5, 0xec, 0x72, 0x75, 0xf4, 0xe7, 0x30, 0xe8, 0x4a, 0xf5, 0xdb, - 0xdf, 0x80, 0x5d, 0x3b, 0xf8, 0x46, 0xd7, 0x16, 0xe6, 0xda, 0xb5, 0xcd, 0xdd, 0xda, 0xee, 0xf6, - 0xce, 0xe6, 0xee, 0x16, 0x7d, 0x9c, 0x05, 0x41, 0xb9, 0xac, 0x3e, 0x63, 0xdb, 0xbb, 0xc4, 0x96, - 0x52, 0xb3, 0x9e, 0xaf, 0xdd, 0x25, 0x91, 0xa1, 0x4e, 0x0e, 0x1e, 0x28, 0x57, 0x2f, 0x8f, 0x85, - 0x94, 0xab, 0x33, 0x4e, 0xbc, 0x34, 0x4e, 0x50, 0xa9, 0xfe, 0x50, 0xa9, 0x5e, 0x9f, 0xbc, 0x16, - 0x8a, 0xd4, 0x4d, 0x0b, 0x45, 0xf7, 0x04, 0xdf, 0x95, 0xeb, 0x20, 0x0e, 0x31, 0x02, 0xd2, 0x23, - 0x72, 0xf5, 0x7b, 0xd6, 0x53, 0xb8, 0xbe, 0x0a, 0x33, 0x29, 0x5c, 0xcf, 0x11, 0xb7, 0x14, 0xae, - 0xe7, 0xe7, 0x5e, 0x14, 0xae, 0x17, 0xcd, 0x64, 0x29, 0x5c, 0x2f, 0x5b, 0xf1, 0x42, 0xe1, 0x7a, - 0xbe, 0xf9, 0x81, 0xc2, 0x75, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, - 0xf1, 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x19, - 0x4c, 0x5d, 0x89, 0x36, 0xe2, 0x44, 0x5d, 0x09, 0x89, 0x94, 0xc1, 0x84, 0x0a, 0x9d, 0x58, 0x19, - 0x43, 0xb0, 0x8c, 0x21, 0x5a, 0x66, 0x10, 0x2e, 0x2c, 0xe2, 0x05, 0x46, 0xc0, 0x32, 0x88, 0x50, - 0x57, 0xa2, 0x9d, 0xdf, 0x50, 0x57, 0x52, 0xf4, 0x17, 0x75, 0x25, 0x24, 0xf6, 0x2b, 0x78, 0x0c, - 0xea, 0x4a, 0x98, 0x7e, 0x57, 0xe9, 0xda, 0xd4, 0x95, 0x88, 0x73, 0x6d, 0xea, 0x4a, 0x58, 0x10, - 0x94, 0xd5, 0x6a, 0xea, 0x4a, 0xca, 0x6c, 0x29, 0x75, 0x25, 0xf9, 0xda, 0x5d, 0xa6, 0x79, 0xf1, - 0xbb, 0xe1, 0x53, 0x2a, 0x4c, 0xca, 0x63, 0x21, 0x15, 0x26, 0x8c, 0x18, 0xaf, 0x8f, 0x18, 0xd4, - 0x9a, 0x3c, 0xaa, 0x35, 0x39, 0xcd, 0xde, 0x0f, 0x45, 0x27, 0xa6, 0x45, 0xa7, 0xa9, 0x6c, 0x23, - 0xec, 0x81, 0xe9, 0x4c, 0xc2, 0x1e, 0xa5, 0x25, 0x2b, 0x31, 0x93, 0xd2, 0x92, 0x1c, 0xa1, 0x4a, - 0x69, 0x49, 0x7e, 0xee, 0x45, 0x69, 0x49, 0xd1, 0x14, 0x96, 0xd2, 0x92, 0xb2, 0x55, 0x2d, 0x94, - 0x96, 0xe4, 0x9b, 0x1f, 0x28, 0x2d, 0x21, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, - 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, - 0x99, 0xc1, 0xfd, 0x41, 0x37, 0xe8, 0xe3, 0x4a, 0x4b, 0xa6, 0xe6, 0x53, 0x5a, 0x42, 0x02, 0x65, - 0x16, 0x91, 0x32, 0x80, 0x50, 0xa1, 0x13, 0x2b, 0x63, 0x08, 0x96, 0x31, 0x44, 0xcb, 0x0c, 0xc2, - 0x85, 0x45, 0xbc, 0xc0, 0x08, 0x58, 0x06, 0x11, 0x4a, 0x4b, 0xb4, 0xf3, 0x1b, 0x4a, 0x4b, 0x8a, - 0xfe, 0xa2, 0xb4, 0x84, 0xc4, 0x7e, 0x05, 0x8f, 0x41, 0x69, 0x09, 0xd3, 0xef, 0x2a, 0x5d, 0x9b, - 0xd2, 0x12, 0x71, 0xae, 0x4d, 0x69, 0x09, 0x0b, 0x82, 0xb2, 0x5a, 0x4d, 0x69, 0x49, 0xe9, 0x73, - 0x94, 0x15, 0xab, 0xab, 0x41, 0xaa, 0x70, 0xfb, 0xde, 0x33, 0xfb, 0xd9, 0xf8, 0x2e, 0xc2, 0x6c, - 0x36, 0xbe, 0x35, 0x22, 0x9d, 0x8d, 0x6f, 0x7d, 0xee, 0xca, 0xc6, 0xb7, 0xb0, 0x07, 0x61, 0xe3, - 0x9b, 0xac, 0xe6, 0x27, 0x10, 0x61, 0xe3, 0x5b, 0x3b, 0xbf, 0x61, 0xe3, 0xbb, 0xe8, 0x2f, 0x36, - 0xbe, 0x49, 0xec, 0x57, 0xf0, 0x18, 0x6c, 0x7c, 0x33, 0xfd, 0xae, 0xd2, 0xb5, 0xd9, 0xf8, 0x16, - 0xe7, 0xda, 0x6c, 0x7c, 0xb3, 0x20, 0x28, 0xab, 0xd5, 0x6c, 0x7c, 0x97, 0xd9, 0x52, 0xee, 0x54, - 0xca, 0xd7, 0xee, 0x92, 0x6c, 0x48, 0x09, 0x7b, 0x5c, 0xa3, 0x54, 0x1e, 0x0b, 0xb9, 0x46, 0x89, - 0x41, 0xe2, 0x45, 0x41, 0x82, 0x9b, 0x93, 0x1e, 0x6e, 0x4e, 0x72, 0x7b, 0xdc, 0x96, 0x64, 0x5c, - 0x10, 0x9a, 0x2e, 0x1f, 0xea, 0x0f, 0x92, 0x04, 0x6c, 0x5f, 0xd2, 0xc4, 0x64, 0x6e, 0x4c, 0x5a, - 0x85, 0x99, 0xdc, 0x98, 0x94, 0x23, 0x58, 0xb9, 0x31, 0x29, 0x3f, 0xf7, 0xe2, 0xc6, 0xa4, 0xa2, - 0xd9, 0x2a, 0x37, 0x26, 0x95, 0xad, 0x40, 0xe1, 0xc6, 0xa4, 0x7c, 0xf3, 0x03, 0x37, 0x26, 0x91, - 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, - 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xcc, 0xe0, 0xa0, 0x72, 0x1e, 0xa6, 0xb8, - 0xca, 0x91, 0xa9, 0xf9, 0x14, 0x8e, 0x90, 0x40, 0x99, 0x45, 0xa4, 0x0c, 0x20, 0x54, 0xe8, 0xc4, - 0xca, 0x18, 0x82, 0x65, 0x0c, 0xd1, 0x32, 0x83, 0x70, 0x61, 0x11, 0x2f, 0x30, 0x02, 0x96, 0x41, - 0x04, 0x5f, 0x38, 0x72, 0x3e, 0x18, 0xf4, 0x55, 0x10, 0x01, 0x2b, 0x47, 0x36, 0x36, 0x38, 0xa2, - 0x57, 0x76, 0x67, 0x04, 0x3a, 0x52, 0x5e, 0xea, 0x89, 0x28, 0x47, 0xcc, 0x2c, 0x34, 0x58, 0x68, - 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, 0x83, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0x4f, 0x8c, 0xf8, - 0x54, 0xa8, 0x6b, 0x30, 0x9d, 0x0a, 0x75, 0x4d, 0x2f, 0x9e, 0x0a, 0x75, 0x39, 0x8f, 0x41, 0x85, - 0x3a, 0xd3, 0xef, 0x2a, 0x5d, 0x9b, 0x0a, 0x75, 0x71, 0xae, 0x4d, 0x85, 0x3a, 0x0b, 0x82, 0xb2, - 0x5a, 0x4d, 0x85, 0x7a, 0x99, 0x2d, 0xa5, 0x42, 0x3d, 0x5f, 0xbb, 0x4b, 0x22, 0x3e, 0xed, 0x0f, - 0x92, 0x84, 0x1a, 0xf5, 0xf2, 0x58, 0x48, 0x8d, 0x3a, 0xc3, 0xc4, 0x0b, 0xc3, 0x04, 0x55, 0xea, - 0x0f, 0x55, 0xea, 0x8d, 0xf1, 0x5b, 0xa1, 0x4e, 0xdd, 0xb4, 0x40, 0x34, 0x3d, 0x91, 0x1f, 0x7b, - 0xa0, 0x9a, 0xd4, 0x64, 0x95, 0x14, 0xa1, 0x09, 0xff, 0xfd, 0x3c, 0xc1, 0x43, 0xeb, 0xa9, 0x5e, - 0x5f, 0x85, 0x99, 0x54, 0xaf, 0xe7, 0x88, 0x5b, 0xaa, 0xd7, 0xf3, 0x73, 0x2f, 0xaa, 0xd7, 0x8b, - 0xe6, 0xb1, 0x54, 0xaf, 0x97, 0xad, 0x74, 0xa1, 0x7a, 0x3d, 0xdf, 0xfc, 0x40, 0xf5, 0x3a, 0x89, - 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, - 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0c, 0x4e, 0x11, 0x87, 0x2f, 0xb3, 0x34, - 0x03, 0xd0, 0xf7, 0x59, 0x46, 0x9b, 0x28, 0x29, 0x21, 0x8d, 0x32, 0x98, 0x4e, 0xa1, 0xd3, 0x2a, - 0x63, 0xe8, 0x95, 0x31, 0x34, 0xcb, 0x0c, 0xba, 0x85, 0x45, 0xbb, 0xc0, 0xe8, 0x57, 0x06, 0x11, - 0x7c, 0x49, 0x89, 0x8a, 0x46, 0x57, 0x2a, 0x9e, 0x4e, 0x09, 0x00, 0xeb, 0xd7, 0x6b, 0x80, 0xb6, - 0x3b, 0xd1, 0xe8, 0x6a, 0x0c, 0x1e, 0xba, 0x68, 0x9e, 0x6f, 0xb9, 0x11, 0x26, 0xa9, 0x9d, 0xa6, - 0x31, 0xa6, 0x9b, 0x1e, 0x85, 0x91, 0xd3, 0x57, 0xe3, 0x2c, 0x94, 0x58, 0x7b, 0x6b, 0xd1, 0xa8, - 0xdf, 0x07, 0x04, 0xfa, 0x51, 0xf0, 0x0d, 0xff, 0x21, 0x8e, 0xe3, 0x9e, 0x8a, 0x55, 0x6f, 0xff, - 0x66, 0xf6, 0x08, 0x9c, 0x18, 0x2e, 0xb1, 0xa5, 0x9c, 0x18, 0xce, 0xd7, 0xee, 0x92, 0x8c, 0x02, - 0x3e, 0x98, 0x2c, 0xe2, 0xf0, 0x70, 0x79, 0x2c, 0xe4, 0xf0, 0x30, 0x23, 0xc6, 0xeb, 0x23, 0x06, - 0xe7, 0x88, 0x1f, 0xce, 0x11, 0xb7, 0xb2, 0x17, 0x34, 0xa9, 0xcd, 0x39, 0x51, 0x6c, 0x5a, 0x74, - 0xb2, 0xae, 0x82, 0x6f, 0x95, 0x89, 0x2f, 0x9c, 0x07, 0x51, 0xef, 0x6b, 0xd8, 0x9b, 0x78, 0x3c, - 0xc8, 0x3c, 0xf1, 0x23, 0xb6, 0x73, 0x9a, 0x78, 0x15, 0x66, 0x72, 0x9a, 0x38, 0x47, 0xd4, 0x72, - 0x9a, 0x38, 0x3f, 0xf7, 0xe2, 0x34, 0x71, 0xd1, 0xc4, 0x96, 0xd3, 0xc4, 0x65, 0xab, 0x65, 0x38, - 0x4d, 0x9c, 0x6f, 0x7e, 0xe0, 0x34, 0x31, 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, - 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, - 0xca, 0x0c, 0xc6, 0x69, 0xfd, 0x2c, 0xcd, 0x35, 0x28, 0x1d, 0xa0, 0x65, 0x04, 0x8a, 0x73, 0xc5, - 0x24, 0x54, 0x06, 0x13, 0x2b, 0x74, 0x82, 0x65, 0x0c, 0xd1, 0x32, 0x86, 0x70, 0x99, 0x41, 0xbc, - 0xb0, 0x08, 0x18, 0x18, 0x11, 0xcb, 0x20, 0x82, 0x3f, 0x57, 0x1c, 0x2a, 0xa5, 0x2e, 0xfa, 0x83, - 0x00, 0x7b, 0x5f, 0xfd, 0x2e, 0xa0, 0xe9, 0x0d, 0x15, 0x5d, 0x4e, 0x88, 0x31, 0x17, 0xd6, 0x17, - 0xfc, 0xe6, 0xb9, 0xb0, 0x5e, 0xce, 0x63, 0x64, 0x5b, 0xad, 0xb9, 0xcc, 0x9a, 0x49, 0x78, 0x05, - 0xae, 0xcd, 0x85, 0xf5, 0x74, 0x6d, 0xba, 0xb6, 0x19, 0xd5, 0x00, 0xae, 0xd5, 0xdc, 0x53, 0x5f, - 0x66, 0x4b, 0xa9, 0x3a, 0xc9, 0xd7, 0x6e, 0xf3, 0x67, 0xc8, 0x17, 0xe7, 0x4f, 0xa9, 0x39, 0x29, - 0x8f, 0x85, 0xd4, 0x9c, 0x30, 0x5e, 0xbc, 0x36, 0x5e, 0x50, 0x71, 0x72, 0x5f, 0x71, 0x72, 0x14, - 0x7c, 0x6b, 0x84, 0xd1, 0xdf, 0xfb, 0xd9, 0xdb, 0xa1, 0xde, 0xc4, 0xb4, 0xc8, 0x34, 0xd1, 0x6c, - 0xc4, 0x2a, 0x51, 0xf1, 0x75, 0x70, 0xde, 0x57, 0xd0, 0xd2, 0x93, 0xe5, 0x8f, 0x41, 0x15, 0xca, - 0x2a, 0xcc, 0xa4, 0x0a, 0x25, 0x47, 0x00, 0x53, 0x85, 0x92, 0x9f, 0x7b, 0x51, 0x85, 0x52, 0x34, - 0xd5, 0xa5, 0x0a, 0xa5, 0x6c, 0xd5, 0x0d, 0x55, 0x28, 0xf9, 0xe6, 0x07, 0xaa, 0x50, 0x48, 0x6c, - 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, 0xf0, 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, - 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, 0x66, 0x30, 0x55, 0x28, 0xda, 0x09, 0x14, 0x55, - 0x28, 0x24, 0x54, 0x06, 0x13, 0x2b, 0x74, 0x82, 0x65, 0x0c, 0xd1, 0x32, 0x86, 0x70, 0x99, 0x41, - 0xbc, 0xb0, 0x08, 0x18, 0x18, 0x11, 0xcb, 0x20, 0x42, 0x15, 0x8a, 0x0c, 0x92, 0x43, 0x15, 0x4a, - 0xe1, 0x5f, 0x54, 0xa1, 0x90, 0xde, 0xaf, 0xe0, 0x31, 0x38, 0xaa, 0xce, 0x24, 0xbc, 0x4a, 0xd7, - 0xa6, 0x0a, 0x85, 0xae, 0x4d, 0xd7, 0x36, 0xa3, 0x1a, 0xc0, 0xb5, 0x9a, 0x2a, 0x94, 0x32, 0x5b, - 0x4a, 0x15, 0x4a, 0xbe, 0x76, 0x97, 0x63, 0xaa, 0x7c, 0xe9, 0x28, 0x2a, 0x05, 0x29, 0xe5, 0xb1, - 0x90, 0x82, 0x14, 0x86, 0x8e, 0x15, 0x86, 0x0e, 0x6a, 0x53, 0x1e, 0x68, 0x53, 0xda, 0xd9, 0x9b, - 0xa2, 0x4a, 0xc5, 0xec, 0x70, 0x65, 0x5d, 0x85, 0x51, 0x25, 0x53, 0x6b, 0xf5, 0x54, 0x3f, 0xb8, - 0x01, 0x92, 0xa6, 0x2c, 0xda, 0x4e, 0x3d, 0xca, 0x2a, 0xcc, 0xa4, 0x1e, 0x25, 0x47, 0xd4, 0x52, - 0x8f, 0x92, 0x9f, 0x7b, 0x51, 0x8f, 0x52, 0x34, 0xd3, 0xa5, 0x1e, 0xa5, 0x6c, 0xc5, 0x0d, 0xf5, - 0x28, 0xf9, 0xe6, 0x07, 0xea, 0x51, 0x48, 0x6c, 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, - 0xf0, 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, - 0x66, 0x70, 0x50, 0x39, 0x0f, 0x53, 0x5c, 0x2d, 0xca, 0xd4, 0x7c, 0xea, 0x50, 0x48, 0xa0, 0xcc, - 0x22, 0x52, 0x06, 0x10, 0x2a, 0x74, 0x62, 0x65, 0x0c, 0xc1, 0x32, 0x86, 0x68, 0x99, 0x41, 0xb8, - 0xb0, 0x88, 0x17, 0x18, 0x01, 0xcb, 0x20, 0x82, 0xaf, 0x43, 0x39, 0x1f, 0x0c, 0xfa, 0x2a, 0x88, - 0x80, 0x35, 0x28, 0x1b, 0x1b, 0x1c, 0xfa, 0x2b, 0xbb, 0x33, 0x4e, 0x76, 0x08, 0x62, 0x9c, 0x2d, - 0x2f, 0xf5, 0xc4, 0xbb, 0x47, 0x60, 0xa1, 0xc1, 0x42, 0x83, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, - 0x2c, 0x34, 0xc8, 0x6b, 0x58, 0x68, 0x18, 0x51, 0x68, 0x8c, 0xc2, 0x08, 0x5b, 0xeb, 0xbe, 0x03, - 0x68, 0x7a, 0x3b, 0x88, 0x2e, 0x15, 0xa5, 0xee, 0xc5, 0xbf, 0x78, 0x4a, 0xdd, 0xe5, 0x3c, 0xc6, - 0x5c, 0x0f, 0xbb, 0x4e, 0x3d, 0x2c, 0xd3, 0xef, 0x0a, 0x5c, 0x9b, 0x52, 0x77, 0x71, 0xae, 0x5d, - 0xdb, 0xdc, 0xad, 0xed, 0x6e, 0xef, 0x6c, 0xee, 0x6e, 0xd1, 0xc7, 0x59, 0x10, 0x94, 0xcb, 0x6a, - 0x6a, 0xde, 0x4b, 0x9f, 0xa3, 0x26, 0x3a, 0x25, 0xf4, 0xf6, 0x77, 0xf6, 0x08, 0x6c, 0x7f, 0x17, - 0x61, 0x36, 0xdb, 0xdf, 0x1a, 0xc1, 0xce, 0xf6, 0xb7, 0x3e, 0x77, 0x65, 0xfb, 0x5b, 0xd8, 0x83, - 0xb0, 0xfd, 0x4d, 0x6e, 0xf3, 0x13, 0x88, 0xb0, 0xfd, 0xad, 0x9d, 0xdf, 0xb0, 0xfd, 0x5d, 0xf4, - 0x17, 0xdb, 0xdf, 0x24, 0xf6, 0x2b, 0x78, 0x0c, 0xb6, 0xbf, 0x99, 0x7e, 0x57, 0xe9, 0xda, 0x6c, - 0x7f, 0x8b, 0x73, 0x6d, 0xb6, 0xbf, 0x59, 0x10, 0x94, 0xd5, 0x6a, 0xb6, 0xbf, 0xcb, 0x6c, 0x29, - 0x57, 0xbe, 0xe6, 0x6b, 0x77, 0x09, 0xf6, 0x36, 0x2e, 0xac, 0x78, 0xe3, 0x9e, 0xd7, 0xf2, 0x58, - 0xc8, 0x3d, 0xaf, 0x8c, 0x17, 0xaf, 0x8d, 0x17, 0x5c, 0xee, 0xfa, 0xdd, 0x72, 0xd7, 0x30, 0x3a, - 0x0a, 0xbe, 0x35, 0xc2, 0xe8, 0xef, 0xfa, 0xe4, 0xe5, 0x70, 0xa3, 0xab, 0x69, 0x81, 0xc9, 0x8a, - 0x55, 0x12, 0xf6, 0x46, 0x41, 0xbf, 0x82, 0x73, 0xcd, 0x6c, 0xd6, 0x87, 0x7f, 0xc4, 0x76, 0x6e, - 0x74, 0x5d, 0x85, 0x99, 0xdc, 0xe8, 0x9a, 0x23, 0x6a, 0xb9, 0xd1, 0x35, 0x3f, 0xf7, 0xe2, 0x46, - 0xd7, 0xa2, 0x39, 0x2d, 0x37, 0xba, 0x96, 0xad, 0x8c, 0xe1, 0x46, 0xd7, 0x7c, 0xf3, 0x03, 0x37, - 0xba, 0x92, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, - 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xcc, 0x60, 0x9c, 0xd6, 0xcf, - 0xd2, 0x5c, 0x83, 0x74, 0x3b, 0xd7, 0x63, 0x04, 0x8a, 0x8a, 0x13, 0x12, 0x2a, 0x83, 0x89, 0x15, - 0x3a, 0xc1, 0x32, 0x86, 0x68, 0x19, 0x43, 0xb8, 0xcc, 0x20, 0x5e, 0x58, 0x04, 0x0c, 0x8c, 0x88, - 0x65, 0x10, 0xc1, 0x57, 0x9c, 0x84, 0x4a, 0xa9, 0x8b, 0xfe, 0x20, 0xc0, 0x96, 0x9d, 0xec, 0x02, - 0x9a, 0xde, 0x50, 0xd1, 0xe5, 0x84, 0x18, 0x53, 0x77, 0x52, 0xf0, 0x9b, 0xa7, 0xee, 0x44, 0xce, - 0x63, 0x64, 0xc3, 0xe9, 0x9c, 0x49, 0x67, 0x12, 0x5e, 0x81, 0x6b, 0x53, 0x77, 0x42, 0xd7, 0xa6, - 0x6b, 0x9b, 0x51, 0x0d, 0xe0, 0x5a, 0x4d, 0xb9, 0x49, 0x99, 0x2d, 0xa5, 0xdc, 0x24, 0x5f, 0xbb, - 0xcd, 0x1f, 0x1f, 0x5f, 0x9c, 0x3f, 0xa5, 0xdc, 0xa4, 0x3c, 0x16, 0x52, 0x6e, 0xc2, 0x78, 0xf1, - 0xda, 0x78, 0x41, 0xb9, 0xc9, 0x7d, 0xb9, 0x49, 0x7b, 0xf6, 0x7e, 0xf6, 0xb3, 0xd7, 0x43, 0xc1, - 0x89, 0x69, 0xa1, 0x09, 0x64, 0x2a, 0x13, 0x6a, 0x1a, 0x93, 0xb2, 0x92, 0x15, 0x1b, 0x4a, 0x59, - 0x49, 0xae, 0x26, 0x53, 0x56, 0x52, 0x90, 0xe1, 0x94, 0x95, 0x90, 0x0f, 0xa0, 0x94, 0x2b, 0x30, - 0xb2, 0x92, 0x14, 0x69, 0x9a, 0x20, 0x4b, 0x0f, 0x13, 0xab, 0xb1, 0x44, 0x25, 0xeb, 0x14, 0x95, - 0x94, 0x9e, 0xde, 0x00, 0xd3, 0x1c, 0x54, 0xba, 0x03, 0x4f, 0x7b, 0xe0, 0xe9, 0x0f, 0x36, 0x0d, - 0xc2, 0xa0, 0x43, 0x20, 0xb4, 0x28, 0x83, 0x02, 0xdc, 0x0c, 0xe3, 0xdd, 0xec, 0x62, 0x4f, 0x45, - 0x69, 0x98, 0xde, 0xc4, 0xea, 0x02, 0x29, 0x6a, 0xcf, 0x7b, 0x2a, 0x40, 0x6b, 0x38, 0x2d, 0x77, - 0xf6, 0xaa, 0xf7, 0x83, 0x44, 0xe1, 0x6a, 0x79, 0xdc, 0x8e, 0xdb, 0xf1, 0x3b, 0x27, 0xfb, 0x5e, - 0xe3, 0xd4, 0xf7, 0xfe, 0x6c, 0x39, 0x68, 0x69, 0x67, 0x32, 0x51, 0x93, 0x40, 0x8e, 0x8c, 0x82, - 0xaa, 0x32, 0xee, 0x90, 0xe3, 0xb7, 0x1d, 0xfb, 0xe0, 0x83, 0xbd, 0xef, 0x36, 0x5c, 0xef, 0xcf, - 0x19, 0x88, 0x3a, 0x88, 0x28, 0x32, 0x01, 0x4d, 0xd8, 0xa8, 0xfa, 0x29, 0xba, 0xec, 0x53, 0xdb, - 0x6d, 0xd8, 0xfb, 0x0d, 0xc7, 0xdf, 0xb7, 0x9b, 0xf5, 0xff, 0xb8, 0x75, 0xef, 0x83, 0xc5, 0x71, - 0x52, 0xc2, 0x6b, 0x45, 0xf0, 0x6a, 0x3b, 0x1d, 0xb7, 0x7e, 0x62, 0x37, 0x88, 0x2e, 0xa2, 0x2b, - 0x87, 0xe0, 0x55, 0xff, 0xc3, 0xef, 0xb8, 0x75, 0x42, 0x8a, 0x90, 0x5a, 0x15, 0xa4, 0x1a, 0x6e, - 0xf3, 0xa3, 0xdf, 0x6a, 0x1f, 0x7b, 0xce, 0x81, 0xe7, 0x1e, 0x37, 0xa7, 0xac, 0x8b, 0xf8, 0x22, - 0xbe, 0x56, 0x89, 0xaf, 0xba, 0xd3, 0xb0, 0xff, 0x24, 0xaa, 0x88, 0xaa, 0xd5, 0xa3, 0xca, 0x3f, - 0xb5, 0xdb, 0xae, 0x3d, 0x0e, 0x5d, 0xc4, 0x17, 0xf1, 0xb5, 0x2a, 0x7c, 0xb9, 0xad, 0xd3, 0x6d, - 0xdf, 0x6d, 0x7a, 0x4e, 0xfb, 0xd0, 0x3e, 0x70, 0x7c, 0xbb, 0x5e, 0x6f, 0x3b, 0x9d, 0x0e, 0x11, - 0x46, 0x84, 0xad, 0x0a, 0x61, 0x59, 0x7d, 0xe8, 0x1f, 0x1c, 0x37, 0x3b, 0x5e, 0xdb, 0x76, 0x9b, - 0x1e, 0x01, 0x46, 0x80, 0xad, 0x0c, 0x60, 0x47, 0xf6, 0x27, 0xbf, 0xed, 0x74, 0x9c, 0xf6, 0x29, - 0xbb, 0x5d, 0xc4, 0x58, 0x8e, 0x34, 0xcc, 0xf6, 0xbc, 0xb6, 0xbb, 0x7f, 0xe2, 0x39, 0x0c, 0x5f, - 0x84, 0xd6, 0xca, 0xa0, 0x75, 0xe2, 0xb9, 0x0d, 0xf7, 0xbf, 0x4e, 0x9d, 0x81, 0x8b, 0xe8, 0x5a, - 0x3d, 0xba, 0x9c, 0x4f, 0x9e, 0xd3, 0xac, 0x3b, 0x75, 0xdf, 0xae, 0x1f, 0xb9, 0x4d, 0xff, 0x7d, - 0xfb, 0xf8, 0xa4, 0x45, 0x7c, 0x11, 0x5f, 0xab, 0xc2, 0x97, 0x5d, 0xff, 0xc3, 0x6f, 0xd8, 0x4d, - 0x36, 0xeb, 0x09, 0xab, 0x95, 0x26, 0xc5, 0x66, 0x56, 0x2c, 0x3a, 0x75, 0xbf, 0xd1, 0x61, 0xcc, - 0x22, 0xb8, 0x56, 0x06, 0x2e, 0xb7, 0x75, 0x5a, 0x63, 0xcf, 0x8b, 0x08, 0xcb, 0x0f, 0x61, 0x9e, - 0xe3, 0xd7, 0x9d, 0x43, 0xfb, 0xa4, 0xe1, 0xf9, 0x47, 0x8e, 0xd7, 0x76, 0x0f, 0x08, 0x2e, 0x82, - 0x6b, 0x55, 0xe0, 0x1a, 0xf3, 0xf8, 0x23, 0xfb, 0x13, 0x0f, 0x1c, 0x89, 0xae, 0x1c, 0xd0, 0x35, - 0x41, 0x55, 0xe3, 0x98, 0xf9, 0x90, 0xa0, 0x5a, 0x61, 0xc8, 0x9a, 0x87, 0x2b, 0xf6, 0xb8, 0x88, - 0xae, 0x1c, 0x8a, 0xc5, 0xe9, 0xf1, 0x0f, 0x7b, 0xa8, 0xc4, 0x57, 0x4e, 0xf5, 0xe2, 0xb6, 0xdf, - 0x74, 0xdc, 0xf7, 0x1f, 0xf6, 0x8f, 0xdb, 0x2c, 0x17, 0x09, 0xb0, 0x5c, 0x38, 0x17, 0x1b, 0xa8, - 0x84, 0xd4, 0x4a, 0x63, 0x56, 0x8d, 0x31, 0x8b, 0x00, 0xcb, 0x0d, 0x60, 0x66, 0x9c, 0x27, 0x42, - 0x5a, 0x7e, 0xf6, 0x0b, 0xdd, 0x97, 0x6e, 0xfb, 0x4c, 0x77, 0x35, 0x41, 0x0d, 0x4a, 0x18, 0xe9, - 0x86, 0x91, 0x09, 0xaa, 0x4f, 0xa2, 0x48, 0x3f, 0x77, 0x00, 0x55, 0x77, 0x12, 0x3a, 0x22, 0x4a, - 0x65, 0x78, 0x15, 0x27, 0x71, 0x24, 0x02, 0x47, 0xa0, 0x87, 0xa7, 0x44, 0x8f, 0x1c, 0xf4, 0x20, - 0xab, 0x32, 0x89, 0x23, 0xdd, 0x38, 0x32, 0x45, 0x7d, 0x49, 0x24, 0xe9, 0x46, 0x92, 0x21, 0x2a, - 0x4b, 0x02, 0x49, 0x37, 0x90, 0xcc, 0x51, 0x53, 0x12, 0x4b, 0x22, 0x68, 0x12, 0xb2, 0x6a, 0x92, - 0x10, 0xd2, 0x0d, 0x21, 0x13, 0xd4, 0x91, 0x44, 0x91, 0x6e, 0x14, 0x99, 0xa1, 0x82, 0x24, 0x8e, - 0x74, 0xe3, 0x08, 0x5a, 0xed, 0x48, 0xf8, 0x68, 0x4f, 0x66, 0xf8, 0xaa, 0x46, 0x82, 0x48, 0x37, - 0x88, 0x4c, 0x51, 0x2f, 0x12, 0x49, 0xba, 0x91, 0x64, 0x80, 0x4a, 0x91, 0x20, 0xd2, 0x0d, 0x22, - 0x13, 0xd4, 0x88, 0x44, 0x91, 0x6e, 0x14, 0x01, 0xab, 0x0e, 0x09, 0x1e, 0xed, 0x21, 0xc8, 0x00, - 0x75, 0x21, 0x51, 0xa4, 0xbf, 0x38, 0x33, 0x41, 0x45, 0x48, 0x1c, 0x09, 0xa8, 0xcf, 0x4c, 0x50, - 0x0b, 0x12, 0x48, 0x22, 0x38, 0x11, 0x1b, 0x8d, 0x84, 0xce, 0x8b, 0x62, 0x50, 0x8d, 0x31, 0x88, - 0x40, 0x7a, 0x35, 0x90, 0x78, 0x5e, 0x46, 0xf8, 0x3c, 0x03, 0x3e, 0xed, 0xe3, 0x13, 0xcf, 0x69, - 0xfb, 0x07, 0x76, 0x8b, 0x77, 0x5c, 0x12, 0x57, 0x85, 0xe0, 0xeb, 0xfe, 0xbf, 0x51, 0xdf, 0x4e, - 0x68, 0xad, 0x14, 0x5a, 0x76, 0xe3, 0xfd, 0x71, 0xdb, 0xf5, 0x3e, 0x1c, 0x51, 0xe2, 0x5e, 0xec, - 0x17, 0x25, 0xee, 0xf4, 0xdc, 0xd2, 0x25, 0x03, 0x42, 0x88, 0x41, 0x9f, 0x08, 0x02, 0x2b, 0x98, - 0x5b, 0xbc, 0xd3, 0x9f, 0xa8, 0x2a, 0x0a, 0x5d, 0xad, 0xb6, 0x73, 0xe8, 0x7e, 0xf2, 0x0f, 0x1b, - 0xf6, 0x7b, 0x2e, 0xf3, 0x22, 0xae, 0x56, 0x8d, 0x2b, 0x5e, 0xe2, 0x42, 0x54, 0xad, 0x10, 0x55, - 0x93, 0x93, 0xd0, 0x19, 0xc5, 0x22, 0xb2, 0x88, 0xac, 0xd5, 0x21, 0xcb, 0xb3, 0xdf, 0x6f, 0xd7, - 0x08, 0x28, 0x02, 0x6a, 0x85, 0xa1, 0xaa, 0xc6, 0x50, 0x45, 0x64, 0xe5, 0x12, 0xaa, 0xd8, 0x3c, - 0x2e, 0xf6, 0x8b, 0xcd, 0x63, 0xba, 0x6b, 0xb9, 0x2a, 0x6b, 0xe2, 0x87, 0x15, 0x34, 0xd1, 0xc3, - 0x4a, 0x99, 0x08, 0x2a, 0x2b, 0x82, 0x40, 0x2b, 0x62, 0x02, 0x87, 0x95, 0x2f, 0x11, 0xc4, 0x0a, - 0x97, 0x95, 0xad, 0x21, 0x15, 0x2d, 0xc6, 0x7b, 0x95, 0x6f, 0xa5, 0x6c, 0x0b, 0x85, 0x07, 0x5d, - 0xcb, 0x8e, 0xa2, 0x41, 0x1a, 0xa4, 0xe1, 0x20, 0xb2, 0xf6, 0x00, 0xc2, 0xad, 0x95, 0x74, 0xbf, - 0xa8, 0xab, 0x60, 0x18, 0xa4, 0x5f, 0xc6, 0x01, 0xb6, 0x3a, 0x18, 0xaa, 0xa8, 0x3b, 0x88, 0x2e, - 0xc2, 0xcb, 0x4a, 0xa4, 0xd2, 0xaf, 0x83, 0xf8, 0xef, 0x4a, 0x18, 0x25, 0x69, 0x10, 0x75, 0x55, - 0xf5, 0xe1, 0x0f, 0x92, 0x85, 0x9f, 0x54, 0x87, 0xf1, 0x20, 0x1d, 0x74, 0x07, 0xfd, 0x24, 0xfb, - 0xae, 0x1a, 0x26, 0x61, 0x52, 0xed, 0xab, 0x6b, 0xd5, 0x9f, 0xfd, 0x52, 0xed, 0x87, 0xd1, 0xdf, - 0x95, 0x24, 0x0d, 0x52, 0x55, 0xe9, 0x05, 0x69, 0x70, 0x1e, 0x24, 0xaa, 0xda, 0x4f, 0x86, 0xd5, - 0xb4, 0x7f, 0x9d, 0x8c, 0xff, 0x51, 0x55, 0xdf, 0x52, 0x15, 0xf5, 0x54, 0xaf, 0x12, 0x26, 0x95, - 0x58, 0x05, 0xdd, 0x2f, 0xc1, 0x79, 0xd8, 0x0f, 0xd3, 0x9b, 0x6a, 0xa4, 0xc2, 0xcb, 0x2f, 0xe7, - 0x83, 0x38, 0xc9, 0xbe, 0xab, 0xde, 0x19, 0x93, 0x19, 0x91, 0x8c, 0xce, 0x27, 0xff, 0xab, 0xe9, - 0xaf, 0xd5, 0xc9, 0xdf, 0x24, 0x3b, 0x4d, 0xc8, 0x75, 0x39, 0xc1, 0xee, 0x66, 0x8d, 0xf1, 0xa3, - 0x2e, 0x82, 0x51, 0x3f, 0xad, 0x5c, 0xa9, 0x34, 0x0e, 0xbb, 0xe2, 0x3d, 0x2e, 0x23, 0x32, 0x8b, - 0xa6, 0x0b, 0x0f, 0x6b, 0x1f, 0xc3, 0xa8, 0x67, 0xed, 0xad, 0x6d, 0x08, 0x37, 0xf3, 0x60, 0x12, - 0xba, 0xac, 0xbd, 0xb5, 0x75, 0xe1, 0x86, 0xb6, 0x62, 0x75, 0x11, 0x7e, 0xc3, 0x48, 0x11, 0x73, - 0xd0, 0x0e, 0xba, 0x95, 0x71, 0x30, 0x07, 0x98, 0x2d, 0xb4, 0x3a, 0x83, 0x51, 0xdc, 0x55, 0x10, - 0xaf, 0x77, 0xea, 0x5e, 0xea, 0xe6, 0xeb, 0x20, 0x1e, 0x7b, 0x98, 0x35, 0x9c, 0x22, 0x03, 0xa3, - 0xb6, 0xb4, 0x3e, 0x04, 0x89, 0x1d, 0x5f, 0x8e, 0xae, 0x54, 0x94, 0x5a, 0x7b, 0x6b, 0x69, 0x3c, - 0x52, 0x20, 0x86, 0xdf, 0xb3, 0x3a, 0x03, 0x36, 0xa9, 0xb9, 0xd1, 0xd4, 0xbc, 0x1e, 0xc6, 0x20, - 0x9c, 0x7c, 0xc2, 0x58, 0x61, 0x82, 0xd7, 0x3c, 0x3f, 0x4c, 0xcd, 0x06, 0xf1, 0x7f, 0x0c, 0x42, - 0x03, 0x47, 0x6c, 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, 0xf0, 0xc4, 0x07, 0x9e, 0x00, - 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, 0x66, 0x30, 0x48, 0xdb, 0x67, - 0x69, 0xa2, 0x81, 0xe8, 0xfd, 0x2c, 0xa3, 0x4e, 0xeb, 0x60, 0x66, 0xa3, 0x51, 0x28, 0x64, 0x2a, - 0x65, 0x00, 0xa5, 0x42, 0xa7, 0x56, 0xc6, 0x50, 0x2c, 0x63, 0xa8, 0x96, 0x19, 0x94, 0x0b, 0x8b, - 0x7a, 0x81, 0x51, 0xb0, 0x0c, 0x22, 0xde, 0xcd, 0x50, 0x61, 0x47, 0xfc, 0x51, 0x18, 0xa5, 0xef, - 0x36, 0x11, 0x03, 0xfe, 0x8c, 0xdf, 0xec, 0x00, 0x9a, 0xde, 0x0e, 0xa2, 0x4b, 0x05, 0xbb, 0x3e, - 0x01, 0x57, 0x87, 0x65, 0x1d, 0x85, 0x11, 0x2c, 0x43, 0x00, 0x27, 0xf6, 0x0b, 0x8f, 0x31, 0x59, - 0x22, 0x62, 0xc0, 0x73, 0x1c, 0xc6, 0x41, 0x37, 0x0d, 0x07, 0x51, 0x3d, 0xbc, 0x0c, 0xd3, 0x64, - 0xfc, 0x40, 0x14, 0x87, 0xea, 0x70, 0xed, 0xe0, 0x1b, 0x5d, 0x5b, 0x98, 0x6b, 0xd7, 0x36, 0x77, - 0x6b, 0xbb, 0xdb, 0x3b, 0x9b, 0xbb, 0x5b, 0xf4, 0x71, 0x16, 0x04, 0xe5, 0xb2, 0x1a, 0x4b, 0x63, - 0x7c, 0xcb, 0xb3, 0x84, 0x32, 0x66, 0x52, 0xb4, 0x39, 0xe8, 0xcc, 0x6e, 0xf3, 0xe7, 0xa1, 0x17, - 0x66, 0x4f, 0x11, 0x26, 0xa4, 0x71, 0x9c, 0x94, 0x33, 0x5a, 0x25, 0x0a, 0x1b, 0x65, 0x0c, 0x17, - 0x08, 0xf3, 0xbf, 0x49, 0x1a, 0x8f, 0xba, 0x69, 0x34, 0x6b, 0x45, 0x36, 0xa7, 0xef, 0xd9, 0x9d, - 0x3d, 0xa1, 0xdf, 0x9a, 0xbd, 0x5c, 0xdf, 0x4d, 0xc2, 0xc4, 0x6f, 0x8c, 0xdf, 0xaa, 0xdf, 0x48, - 0x86, 0xbe, 0xd7, 0xbf, 0xf6, 0x9d, 0xd9, 0xcb, 0x73, 0x93, 0xf6, 0xbd, 0x57, 0xe7, 0x37, 0x67, - 0x2f, 0xcc, 0xcf, 0xfe, 0x27, 0x9d, 0xc9, 0xeb, 0xf1, 0x3d, 0x55, 0x9f, 0xbe, 0x9d, 0xa3, 0xe9, - 0xcb, 0xa1, 0xce, 0xc4, 0xb4, 0xb8, 0x64, 0xa5, 0x08, 0xbd, 0xf8, 0x3b, 0x69, 0xc9, 0xd8, 0x5a, - 0x0c, 0x35, 0xc9, 0x3a, 0xd5, 0x24, 0xab, 0x31, 0x94, 0x6a, 0x92, 0x5c, 0x4d, 0xa6, 0x9a, 0xa4, - 0x20, 0xc3, 0xa9, 0x26, 0x21, 0x1b, 0x40, 0xa9, 0x54, 0x60, 0x4e, 0xe8, 0xb3, 0x88, 0xdb, 0x57, - 0xc1, 0x45, 0xac, 0x2e, 0x10, 0x22, 0xee, 0x5c, 0x9d, 0x01, 0x70, 0x06, 0x6f, 0xb5, 0x66, 0xc5, - 0xdf, 0xdb, 0xb7, 0xd3, 0x46, 0x4a, 0x75, 0xc2, 0xc0, 0x58, 0x07, 0x18, 0x57, 0x07, 0x8c, 0xc6, - 0xa5, 0x7d, 0x92, 0xc6, 0x41, 0x18, 0xa9, 0x5e, 0xa5, 0x9f, 0x0c, 0x71, 0x8a, 0x82, 0x45, 0xd3, - 0xa9, 0x37, 0x67, 0x85, 0xc0, 0x0a, 0x81, 0x15, 0x02, 0x2b, 0x04, 0x56, 0x08, 0xac, 0x10, 0x72, - 0xf9, 0xc8, 0xa9, 0x37, 0xcf, 0x37, 0x3f, 0x50, 0x6f, 0x4e, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, - 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, - 0x04, 0x47, 0x90, 0x32, 0x83, 0xbb, 0x83, 0xd1, 0x04, 0xb8, 0xa0, 0x72, 0xf3, 0xa9, 0xf9, 0x54, - 0x9b, 0x93, 0x40, 0x99, 0x45, 0xa4, 0x0c, 0x20, 0x54, 0xe8, 0xc4, 0xca, 0x18, 0x82, 0x65, 0x0c, - 0xd1, 0x32, 0x83, 0x70, 0x61, 0x11, 0x2f, 0x30, 0x02, 0x96, 0x41, 0xc4, 0x0c, 0xb5, 0xf9, 0xc6, - 0x36, 0xb0, 0xda, 0x7c, 0x9b, 0x6a, 0xf3, 0x82, 0xbf, 0xa8, 0x36, 0x27, 0xb1, 0x5f, 0xc1, 0x63, - 0x50, 0x6d, 0xce, 0xf4, 0xbb, 0x4a, 0xd7, 0xa6, 0xda, 0x5c, 0x9c, 0x6b, 0x6f, 0x6f, 0x6d, 0xbd, - 0xa3, 0xd0, 0x9c, 0xb5, 0x40, 0xc9, 0xac, 0xa6, 0xd0, 0xbc, 0xf4, 0xe9, 0x09, 0x43, 0xfb, 0xb4, - 0xb4, 0x2a, 0x04, 0xd0, 0x42, 0x19, 0x92, 0x3b, 0xd9, 0xef, 0xd6, 0x89, 0x73, 0xf6, 0xbb, 0xf5, - 0xb9, 0x2b, 0xfb, 0xdd, 0xc2, 0x1e, 0x84, 0xfd, 0x6e, 0x32, 0x9a, 0x9f, 0x40, 0x04, 0xbf, 0xdf, - 0x1d, 0xf6, 0x54, 0x94, 0x86, 0xe9, 0x0d, 0x86, 0x9e, 0x6b, 0x19, 0xc9, 0xd9, 0x00, 0xac, 0xaa, - 0x2d, 0x77, 0xf6, 0xea, 0xf7, 0x83, 0x04, 0x38, 0x6f, 0x65, 0x57, 0x6a, 0x77, 0xdc, 0x8e, 0xdf, - 0x39, 0xd9, 0xf7, 0x1a, 0xa7, 0xbe, 0xf7, 0x67, 0xcb, 0x41, 0x4d, 0x5f, 0x93, 0x5e, 0x4d, 0x02, - 0x7b, 0x18, 0xb1, 0x06, 0x7d, 0x20, 0xf1, 0x00, 0x51, 0xdf, 0x5f, 0xd2, 0x3e, 0x05, 0x57, 0x07, - 0x19, 0x5d, 0x26, 0xa1, 0xcc, 0x0c, 0xb4, 0xfd, 0x14, 0x75, 0xf6, 0xa9, 0xed, 0x36, 0xec, 0xfd, - 0x86, 0xe3, 0xef, 0xdb, 0xcd, 0xfa, 0x7f, 0xdc, 0xba, 0xf7, 0xc1, 0x82, 0x7f, 0xe2, 0xdb, 0xdf, - 0x08, 0x3b, 0xd9, 0xb0, 0x6b, 0x3b, 0x1d, 0xb7, 0x7e, 0x62, 0x37, 0x88, 0x3a, 0xa2, 0xae, 0xc0, - 0x60, 0x57, 0xff, 0xc3, 0xef, 0xb8, 0x75, 0x42, 0x8d, 0x50, 0xcb, 0x1b, 0x6a, 0x0d, 0xb7, 0xf9, - 0xd1, 0x6f, 0xb5, 0x8f, 0x3d, 0xe7, 0xc0, 0x73, 0x8f, 0x9b, 0x53, 0x56, 0x47, 0xdc, 0x11, 0x77, - 0x45, 0xe0, 0xae, 0xee, 0x34, 0xec, 0x3f, 0x89, 0x36, 0xa2, 0xad, 0x38, 0xb4, 0xf9, 0xa7, 0x76, - 0xdb, 0xb5, 0xc7, 0xa1, 0x8e, 0xb8, 0x23, 0xee, 0xf2, 0xc6, 0x9d, 0xdb, 0x3a, 0xdd, 0xf6, 0xdd, - 0xa6, 0xe7, 0xb4, 0x0f, 0xed, 0x03, 0xc7, 0xb7, 0xeb, 0xf5, 0xb6, 0xd3, 0xe9, 0x10, 0x79, 0x44, - 0x5e, 0xde, 0xc8, 0xcb, 0xea, 0x55, 0xff, 0xe0, 0xb8, 0xd9, 0xf1, 0xda, 0xb6, 0xdb, 0xf4, 0x08, - 0x3c, 0x02, 0x2f, 0x77, 0xe0, 0x1d, 0xd9, 0x9f, 0xfc, 0xb6, 0xd3, 0x71, 0xda, 0xa7, 0xec, 0xd6, - 0x11, 0x7b, 0x1a, 0x68, 0x9e, 0xed, 0x79, 0x6d, 0x77, 0xff, 0xc4, 0x73, 0x18, 0xee, 0x08, 0xb9, - 0xdc, 0x21, 0x77, 0xe2, 0xb9, 0x0d, 0xf7, 0xbf, 0x4e, 0x9d, 0x81, 0x8e, 0xa8, 0x2b, 0x0e, 0x75, - 0xce, 0x27, 0xcf, 0x69, 0xd6, 0x9d, 0xba, 0x6f, 0xd7, 0x8f, 0xdc, 0xa6, 0xff, 0xbe, 0x7d, 0x7c, - 0xd2, 0x22, 0xee, 0x88, 0xbb, 0xbc, 0x71, 0x67, 0xd7, 0xff, 0xf0, 0x1b, 0x76, 0x93, 0x87, 0x13, - 0x84, 0x5b, 0x21, 0xc9, 0xb5, 0x99, 0x15, 0xaf, 0x4e, 0xdd, 0x6f, 0x74, 0x18, 0xe3, 0x08, 0xba, - 0xdc, 0x41, 0xe7, 0xb6, 0x4e, 0x6b, 0xec, 0xd9, 0x11, 0x79, 0xc5, 0x23, 0xcf, 0x73, 0xfc, 0xba, - 0x73, 0x68, 0x9f, 0x34, 0x3c, 0xff, 0xc8, 0xf1, 0xda, 0xee, 0x01, 0x41, 0x47, 0xd0, 0xe5, 0x0d, - 0xba, 0x71, 0xfd, 0x70, 0x64, 0x7f, 0xe2, 0x81, 0x2c, 0x51, 0x57, 0x20, 0xea, 0x26, 0x68, 0x6b, - 0x1c, 0x33, 0xaf, 0x12, 0x6c, 0x05, 0x84, 0xb8, 0x79, 0x78, 0x63, 0x8f, 0x8e, 0xa8, 0x2b, 0xb0, - 0x78, 0x9d, 0x1e, 0x83, 0xb1, 0x37, 0x4c, 0xdc, 0x15, 0x5c, 0xbf, 0x6e, 0xfb, 0x4d, 0xc7, 0x7d, - 0xff, 0x61, 0xff, 0xb8, 0xcd, 0xf2, 0x95, 0xc0, 0x2b, 0x94, 0xd3, 0xb1, 0x31, 0x4c, 0xa8, 0x15, - 0x12, 0xe3, 0x6a, 0x8c, 0x71, 0x04, 0x5e, 0xe1, 0xc0, 0x33, 0xeb, 0xbc, 0x15, 0xfa, 0x09, 0xce, - 0xb8, 0xcf, 0x92, 0xee, 0xbd, 0x2a, 0xb7, 0x36, 0x49, 0x5d, 0x4c, 0x78, 0x49, 0x83, 0x97, 0x49, - 0x2a, 0x62, 0xa2, 0x4b, 0x1e, 0x27, 0x01, 0x57, 0x0b, 0x13, 0x52, 0x22, 0x4b, 0x79, 0x63, 0x54, - 0xc1, 0xc4, 0x97, 0x48, 0x7c, 0x81, 0x1f, 0x36, 0x13, 0x55, 0x72, 0x51, 0x65, 0x82, 0xca, 0x97, - 0xf8, 0x92, 0x86, 0x2f, 0xd3, 0xd4, 0xbc, 0x44, 0x98, 0x34, 0x84, 0x19, 0xa6, 0xda, 0x25, 0xc0, - 0xa4, 0x01, 0xcc, 0x3c, 0x75, 0x2e, 0x31, 0x26, 0x92, 0x86, 0x99, 0xa0, 0xc2, 0x25, 0xb4, 0xa4, - 0x41, 0xcb, 0x24, 0xb5, 0x2d, 0xd1, 0x25, 0x0d, 0x5d, 0x66, 0xa9, 0x6a, 0x89, 0x2f, 0x69, 0xf8, - 0x32, 0x42, 0x3d, 0x4b, 0x58, 0x89, 0x4b, 0x8a, 0xe6, 0xa8, 0x64, 0x09, 0x2e, 0x69, 0xe0, 0x32, - 0x4d, 0x0d, 0x4b, 0x84, 0x49, 0x43, 0x98, 0x41, 0xaa, 0x57, 0x82, 0x4b, 0x1a, 0xb8, 0x4c, 0x52, - 0xb7, 0x12, 0x5d, 0xd2, 0xd0, 0x65, 0x80, 0x8a, 0x95, 0xa0, 0x12, 0x17, 0xb2, 0x0c, 0x52, 0xab, - 0x12, 0x5d, 0xf2, 0x8a, 0x45, 0x93, 0x54, 0xa9, 0xc4, 0x97, 0xc0, 0x7a, 0xd1, 0x24, 0xf5, 0x29, - 0x01, 0x26, 0x92, 0x73, 0xb1, 0x81, 0x4a, 0x48, 0xad, 0x34, 0x66, 0xd5, 0x18, 0xb3, 0x08, 0xb0, - 0xdc, 0x00, 0xc6, 0xf3, 0x44, 0xc2, 0x6a, 0x05, 0xb0, 0x6a, 0x1f, 0x9f, 0x78, 0x4e, 0xdb, 0x3f, - 0xb0, 0x5b, 0xbc, 0x8b, 0x97, 0x78, 0xd3, 0x8a, 0xbb, 0xfb, 0xff, 0xc6, 0xbd, 0x0b, 0x84, 0x5c, - 0x21, 0x90, 0xb3, 0x1b, 0xef, 0x8f, 0xdb, 0xae, 0xf7, 0xe1, 0x88, 0xab, 0x17, 0xf4, 0x7e, 0x71, - 0xf5, 0x02, 0x3d, 0x9c, 0xc9, 0x84, 0xd0, 0x62, 0xd2, 0x20, 0xb2, 0xca, 0x51, 0xd0, 0xb7, 0xbe, - 0x2f, 0xe8, 0x59, 0x77, 0x11, 0x6d, 0xc5, 0xa3, 0xae, 0xd5, 0x76, 0x0e, 0xdd, 0x4f, 0xfe, 0x61, - 0xc3, 0x7e, 0xcf, 0x65, 0x77, 0xc4, 0x5b, 0x51, 0x78, 0xe3, 0x65, 0x4f, 0x44, 0x5b, 0x01, 0x68, - 0x9b, 0x9c, 0x1c, 0xcf, 0x28, 0x1c, 0x11, 0x47, 0xc4, 0xe5, 0x8f, 0x38, 0xcf, 0x7e, 0xbf, 0x5d, - 0x23, 0xd0, 0x08, 0xb4, 0x02, 0x42, 0x5b, 0x8d, 0xa1, 0x8d, 0x88, 0x2b, 0x34, 0xb4, 0xb1, 0x49, - 0xae, 0xf7, 0x8b, 0x4d, 0x72, 0xba, 0x35, 0x2b, 0x7f, 0xe2, 0x8a, 0x15, 0x3e, 0x51, 0x55, 0x2e, - 0x54, 0x99, 0x52, 0xc9, 0x13, 0x59, 0xac, 0xd8, 0x09, 0x28, 0xd3, 0x43, 0x55, 0x8d, 0xa1, 0x8a, - 0xc8, 0x62, 0x05, 0x6e, 0x40, 0xe5, 0x8d, 0x57, 0x71, 0x63, 0xbd, 0x67, 0x1c, 0x6b, 0x31, 0x2c, - 0x05, 0x09, 0xda, 0x96, 0x1d, 0x45, 0x83, 0x34, 0x48, 0xc3, 0x41, 0x64, 0xed, 0x01, 0x85, 0x6b, - 0x2b, 0xe9, 0x7e, 0x51, 0x57, 0xc1, 0x30, 0x48, 0xbf, 0x8c, 0x03, 0x74, 0x75, 0x30, 0x54, 0x51, - 0x77, 0x10, 0x5d, 0x84, 0x97, 0x95, 0x48, 0xa5, 0x5f, 0x07, 0xf1, 0xdf, 0x95, 0x30, 0x4a, 0xd2, - 0x20, 0xea, 0xaa, 0xea, 0xc3, 0x1f, 0x24, 0x0b, 0x3f, 0xa9, 0x0e, 0xe3, 0x41, 0x3a, 0xe8, 0x0e, - 0xfa, 0x49, 0xf6, 0x5d, 0x35, 0x4c, 0xc2, 0xa4, 0xda, 0x57, 0xd7, 0xaa, 0x3f, 0xfb, 0xa5, 0xda, - 0x0f, 0xa3, 0xbf, 0x2b, 0x49, 0x1a, 0xa4, 0xaa, 0xd2, 0x0b, 0xd2, 0xe0, 0x3c, 0x48, 0x54, 0xb5, - 0x9f, 0x0c, 0xab, 0x69, 0xff, 0x3a, 0x19, 0xff, 0xa3, 0xaa, 0xbe, 0xa5, 0x2a, 0xea, 0xa9, 0x5e, - 0x25, 0x4c, 0x2a, 0xb1, 0x0a, 0xba, 0x5f, 0x82, 0xf3, 0xb0, 0x1f, 0xa6, 0x37, 0xd5, 0x48, 0x85, - 0x97, 0x5f, 0xce, 0x07, 0x71, 0x92, 0x7d, 0x57, 0xbd, 0x33, 0x26, 0x33, 0x22, 0x19, 0x9d, 0x4f, - 0xfe, 0x57, 0xd3, 0x5f, 0xab, 0xa3, 0xf1, 0x03, 0x25, 0x69, 0x1c, 0x84, 0x91, 0xea, 0x55, 0xc6, - 0x7f, 0xd1, 0xe4, 0xef, 0xc6, 0x48, 0x3c, 0xf2, 0x9d, 0x54, 0xb6, 0x85, 0xc2, 0xc3, 0x07, 0x5a, - 0xd8, 0x28, 0x63, 0xb8, 0x00, 0x98, 0x5d, 0xb4, 0x92, 0x34, 0x1e, 0x75, 0xd3, 0x68, 0x46, 0xb3, - 0x9b, 0xd3, 0xf7, 0xec, 0xce, 0x9e, 0xd0, 0x6f, 0xcd, 0x5e, 0xae, 0xef, 0x26, 0x61, 0xe2, 0x37, - 0xc6, 0x6f, 0xd5, 0x6f, 0x24, 0x43, 0xdf, 0xeb, 0x5f, 0xfb, 0xce, 0xec, 0xe5, 0xb9, 0x49, 0xfb, - 0xde, 0xab, 0xf3, 0x9b, 0xb3, 0x17, 0xe6, 0x67, 0xff, 0x93, 0xce, 0xe4, 0xf5, 0xf8, 0x27, 0xf7, - 0x5f, 0x4f, 0x23, 0x19, 0xca, 0x0e, 0xa3, 0x72, 0x83, 0x93, 0xe0, 0xc0, 0x64, 0x8d, 0xa2, 0x58, - 0x25, 0x2a, 0xbe, 0x56, 0xbd, 0xca, 0x79, 0x10, 0xf5, 0xbe, 0x86, 0xbd, 0x89, 0xbb, 0xcb, 0x0e, - 0x4f, 0x59, 0x91, 0xf9, 0xa8, 0xf5, 0xc2, 0xd3, 0xc0, 0xc7, 0x30, 0xea, 0x59, 0x7b, 0x6b, 0x1b, - 0xc2, 0xcd, 0x3c, 0x98, 0x84, 0x7a, 0x6b, 0x6f, 0x6d, 0x5d, 0xb8, 0xa1, 0xad, 0x58, 0x5d, 0x84, - 0xdf, 0x30, 0x52, 0xea, 0x1c, 0xb7, 0x83, 0x6e, 0x65, 0x9c, 0xfc, 0x10, 0xd2, 0x4d, 0x67, 0x30, - 0x8a, 0xbb, 0x0a, 0xa6, 0xd0, 0xb1, 0x3e, 0xaa, 0x9b, 0xaf, 0x83, 0x78, 0xec, 0x61, 0xd6, 0x70, - 0x8a, 0x0c, 0x90, 0xaa, 0xf2, 0x43, 0x90, 0xd8, 0xf1, 0xe5, 0xe8, 0x4a, 0x45, 0xa9, 0xb5, 0xb7, - 0x96, 0xc6, 0x23, 0x85, 0x52, 0x0e, 0xdf, 0x59, 0x9d, 0x01, 0x9b, 0xa5, 0x8c, 0xd1, 0xa5, 0x4c, - 0x3d, 0x8c, 0x41, 0x6a, 0x18, 0x95, 0x8e, 0x86, 0x95, 0x61, 0x1c, 0x0e, 0xe2, 0x30, 0xbd, 0xc1, - 0x89, 0x62, 0xf3, 0x44, 0xf1, 0xc0, 0x7e, 0x90, 0x88, 0x80, 0x41, 0x71, 0xe0, 0xa8, 0x0e, 0x22, - 0xe5, 0x01, 0xa6, 0x3e, 0xa8, 0x14, 0x08, 0x9e, 0x0a, 0xc1, 0x53, 0x22, 0x6c, 0x6a, 0x84, 0x41, - 0x91, 0x40, 0xa8, 0x12, 0x1c, 0x65, 0xca, 0x0c, 0x86, 0x23, 0x4d, 0x0b, 0xa9, 0x06, 0x8c, 0x36, - 0x3d, 0xa4, 0x4f, 0xeb, 0x60, 0x66, 0xa3, 0xd1, 0x28, 0x64, 0x3a, 0x65, 0x00, 0xad, 0x42, 0xa7, - 0x57, 0xc6, 0xd0, 0x2c, 0x63, 0xe8, 0x96, 0x19, 0xb4, 0x0b, 0x8b, 0x7e, 0x81, 0xd1, 0xb0, 0x0c, - 0x22, 0xde, 0xcd, 0x50, 0x61, 0x47, 0xfc, 0xbe, 0x0a, 0x2e, 0x62, 0x75, 0x81, 0x18, 0xf1, 0xe7, - 0xfd, 0xa1, 0x1d, 0x40, 0xdb, 0x5b, 0xb3, 0x79, 0x88, 0xb7, 0x6f, 0xa7, 0xb3, 0x45, 0xd5, 0x8c, - 0x65, 0x72, 0x76, 0xb1, 0xec, 0x91, 0xc5, 0x9a, 0x4e, 0x9b, 0xc1, 0x16, 0x4c, 0x53, 0xf3, 0x31, - 0xab, 0xa5, 0x0d, 0x56, 0x4b, 0xac, 0x96, 0x58, 0x2d, 0xb1, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, 0x89, - 0x9c, 0x66, 0xb5, 0x10, 0x41, 0x6b, 0x5e, 0x67, 0x86, 0xe3, 0xcc, 0x34, 0xfe, 0x34, 0x67, 0xa1, - 0x0c, 0x38, 0xfe, 0x8c, 0xa8, 0xad, 0x83, 0x9a, 0x8f, 0x4a, 0xd8, 0x4c, 0x20, 0x6e, 0x06, 0x11, - 0x38, 0x53, 0x88, 0x9c, 0x71, 0x84, 0xce, 0x38, 0x62, 0x67, 0x16, 0xc1, 0xc3, 0x24, 0x7a, 0xa0, - 0x84, 0x2f, 0x83, 0x0e, 0x6c, 0x9b, 0x7c, 0x21, 0x63, 0x84, 0x4a, 0xa9, 0x8b, 0xfe, 0x20, 0x48, - 0xdf, 0x6d, 0x22, 0x67, 0x8d, 0x19, 0x89, 0xda, 0x05, 0x7e, 0x84, 0x86, 0x8a, 0x2e, 0x27, 0x84, - 0x1c, 0x7b, 0xc1, 0x3e, 0xfe, 0xc6, 0x4c, 0xeb, 0x28, 0x8c, 0xe0, 0xf9, 0x87, 0x21, 0xe5, 0xc5, - 0xc2, 0xe3, 0x4c, 0xae, 0xa1, 0xb0, 0xf6, 0xd6, 0x6a, 0x86, 0x3c, 0xcf, 0x61, 0x1c, 0x74, 0xd3, - 0x70, 0x10, 0xd5, 0xc3, 0xcb, 0x30, 0x4d, 0xc6, 0x1f, 0x14, 0xd7, 0xfe, 0x4a, 0x08, 0x01, 0xc1, - 0x37, 0x86, 0x00, 0x86, 0x00, 0x86, 0x80, 0x32, 0x55, 0x23, 0xf8, 0xd6, 0x63, 0x2e, 0x93, 0xc6, - 0x7b, 0xdf, 0x80, 0x29, 0x0e, 0x77, 0x70, 0x7d, 0xa1, 0x66, 0x05, 0x1d, 0x60, 0x37, 0x24, 0x1f, - 0xb3, 0xe3, 0x2f, 0xc9, 0x17, 0xd8, 0xf1, 0x97, 0xe3, 0xd6, 0xec, 0xf8, 0x0b, 0x7f, 0x20, 0x76, - 0xfc, 0xc9, 0x9c, 0x5e, 0x08, 0x1d, 0x73, 0x3a, 0xfe, 0xa3, 0x30, 0x4a, 0x7f, 0x37, 0xa0, 0xd7, - 0xbf, 0x05, 0xfc, 0x08, 0xed, 0x20, 0xba, 0x54, 0x6c, 0xf5, 0xeb, 0xff, 0x20, 0xd8, 0xea, 0x97, - 0xfb, 0x38, 0xf3, 0x3e, 0xdf, 0x3a, 0xfb, 0x7c, 0xcc, 0xe6, 0x39, 0x86, 0x00, 0xb6, 0xfa, 0xc5, - 0x87, 0x80, 0x1d, 0x86, 0x00, 0x96, 0x21, 0xb4, 0xfe, 0xfe, 0x17, 0x5b, 0xfd, 0xb4, 0x18, 0x3e, - 0x21, 0xa3, 0xde, 0x19, 0x91, 0xd9, 0x5f, 0x86, 0x65, 0xf0, 0x8b, 0xbb, 0xa4, 0xab, 0xdf, 0xef, - 0x5f, 0x44, 0xba, 0x4d, 0x02, 0xcf, 0xad, 0xb9, 0x6f, 0x6c, 0xa5, 0x04, 0x59, 0xdd, 0x00, 0x1e, - 0x21, 0x5a, 0x8d, 0x30, 0x49, 0xed, 0x34, 0x05, 0xdb, 0x95, 0x76, 0x14, 0x46, 0x4e, 0x5f, 0x5d, - 0xa9, 0x68, 0xc2, 0x75, 0xa3, 0x51, 0xbf, 0x0f, 0xb4, 0xb4, 0xe0, 0x28, 0xf8, 0x86, 0x6b, 0xfc, - 0x71, 0xdc, 0x53, 0xb1, 0xea, 0xed, 0xdf, 0xcc, 0x4c, 0x67, 0x0c, 0x21, 0x69, 0x21, 0x59, 0x01, - 0x1b, 0x1a, 0x29, 0xf0, 0x4e, 0x9b, 0xce, 0xf8, 0x1d, 0xb5, 0xa0, 0x56, 0xf6, 0xf0, 0x5e, 0x30, - 0xa3, 0xa3, 0x2d, 0xef, 0x05, 0x83, 0x88, 0xae, 0xbc, 0xfc, 0xca, 0x38, 0xef, 0xb3, 0x46, 0x69, - 0xd8, 0x0f, 0xff, 0x1f, 0xe8, 0xd5, 0x57, 0x8b, 0xb6, 0xf3, 0xe2, 0xab, 0x55, 0x98, 0xc9, 0x8b, - 0xaf, 0x72, 0x44, 0x2d, 0x2f, 0xbe, 0xca, 0xb3, 0xe1, 0xc3, 0x8b, 0xaf, 0x8a, 0x25, 0x6e, 0xbc, - 0xf8, 0xaa, 0x6c, 0x5c, 0x1d, 0xe7, 0xe2, 0x2b, 0xa8, 0x4d, 0xa4, 0x90, 0x1b, 0x48, 0x79, 0xcd, - 0x15, 0x09, 0x8e, 0x01, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, - 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, 0x99, 0xc1, 0xb8, 0x1b, 0x42, 0xe1, 0x37, 0x83, - 0xf2, 0xa2, 0x2b, 0x12, 0xaa, 0x12, 0x10, 0x2b, 0x74, 0x82, 0x65, 0x0c, 0xd1, 0x32, 0x86, 0x70, - 0x99, 0x41, 0xbc, 0xb0, 0x08, 0x18, 0x18, 0x11, 0xcb, 0x20, 0x82, 0x7f, 0xd1, 0x15, 0xf6, 0xe6, - 0x4e, 0xe0, 0x8d, 0x9d, 0xe8, 0x9b, 0x3a, 0x81, 0x35, 0xec, 0x26, 0xc8, 0x75, 0x0d, 0xd1, 0xe8, - 0x99, 0xb2, 0x86, 0xcf, 0x24, 0x4d, 0x1e, 0xb0, 0x1c, 0xd7, 0x08, 0x19, 0x2e, 0x5d, 0x9b, 0xae, - 0xcd, 0x6a, 0x00, 0xda, 0xea, 0x33, 0xaa, 0xd8, 0xca, 0x9e, 0x9a, 0xac, 0x14, 0xb1, 0x36, 0xcc, - 0xea, 0xc2, 0x89, 0xf5, 0xec, 0x78, 0x17, 0x61, 0x36, 0x3b, 0xde, 0x1a, 0x71, 0xce, 0x8e, 0xb7, - 0x3e, 0x77, 0x65, 0xc7, 0x5b, 0xd8, 0x83, 0xb0, 0xe3, 0x4d, 0x46, 0xf3, 0x13, 0x88, 0x18, 0xd0, - 0xf1, 0xee, 0xa9, 0x28, 0x0d, 0xd3, 0x9b, 0x58, 0x5d, 0x00, 0x77, 0xbc, 0x37, 0x00, 0x17, 0x57, - 0x5a, 0xee, 0xec, 0xd5, 0xef, 0x07, 0x89, 0xc2, 0x5f, 0x20, 0xef, 0x76, 0xdc, 0x8e, 0xdf, 0x39, - 0xd9, 0xf7, 0x1a, 0xa7, 0xbe, 0xf7, 0x67, 0xcb, 0x41, 0x4d, 0x5f, 0x93, 0x3e, 0x4d, 0x02, 0xbd, - 0x47, 0x14, 0xbc, 0xe1, 0x77, 0x87, 0x28, 0xbf, 0xed, 0xd8, 0x07, 0x1f, 0xec, 0x7d, 0xb7, 0xe1, - 0x7a, 0x7f, 0xce, 0xc0, 0xd5, 0x41, 0x46, 0x97, 0x49, 0x28, 0x33, 0x03, 0x6d, 0x3f, 0x45, 0x9d, - 0x7d, 0x6a, 0xbb, 0x0d, 0x7b, 0xbf, 0xe1, 0xf8, 0xfb, 0x76, 0xb3, 0xfe, 0x1f, 0xb7, 0xee, 0x7d, - 0xb0, 0xb8, 0x63, 0x94, 0xb0, 0xcb, 0x19, 0x76, 0x6d, 0xa7, 0xe3, 0xd6, 0x4f, 0xec, 0x06, 0x51, - 0x47, 0xd4, 0x15, 0x18, 0xec, 0xea, 0x7f, 0xf8, 0x1d, 0xb7, 0x4e, 0xa8, 0x11, 0x6a, 0x79, 0x43, - 0xad, 0xe1, 0x36, 0x3f, 0xfa, 0xad, 0xf6, 0xb1, 0xe7, 0x1c, 0x78, 0xee, 0x71, 0x73, 0xca, 0xea, - 0x88, 0x3b, 0xe2, 0xae, 0x08, 0xdc, 0xd5, 0x9d, 0x86, 0xfd, 0x27, 0xd1, 0x46, 0xb4, 0x15, 0x87, - 0x36, 0xff, 0xd4, 0x6e, 0xbb, 0xf6, 0x38, 0xd4, 0x11, 0x77, 0xc4, 0x5d, 0xde, 0xb8, 0x73, 0x5b, - 0xa7, 0xdb, 0xbe, 0xdb, 0xf4, 0x9c, 0xf6, 0xa1, 0x7d, 0xe0, 0xf8, 0x76, 0xbd, 0xde, 0x76, 0x3a, - 0x1d, 0x22, 0x8f, 0xc8, 0xcb, 0x1b, 0x79, 0x59, 0xbd, 0xea, 0x1f, 0x1c, 0x37, 0x3b, 0x5e, 0xdb, - 0x76, 0x9b, 0x1e, 0x81, 0x47, 0xe0, 0xe5, 0x0e, 0xbc, 0x23, 0xfb, 0x93, 0xdf, 0x76, 0x3a, 0x4e, - 0xfb, 0x94, 0xdd, 0x3a, 0x62, 0x4f, 0x03, 0xcd, 0xb3, 0x3d, 0xaf, 0xed, 0xee, 0x9f, 0x78, 0x0e, - 0xc3, 0x1d, 0x21, 0x97, 0x3b, 0xe4, 0x4e, 0x3c, 0xb7, 0xe1, 0xfe, 0xd7, 0xa9, 0x33, 0xd0, 0x11, - 0x75, 0xc5, 0xa1, 0xce, 0xf9, 0xe4, 0x39, 0xcd, 0xba, 0x53, 0xf7, 0xed, 0xfa, 0x91, 0xdb, 0xf4, - 0xdf, 0xb7, 0x8f, 0x4f, 0x5a, 0xc4, 0x1d, 0x71, 0x97, 0x37, 0xee, 0xec, 0xfa, 0x1f, 0x7e, 0xc3, - 0x6e, 0xf2, 0x70, 0x82, 0x70, 0x2b, 0x24, 0xb9, 0x36, 0xb3, 0xe2, 0xd5, 0xa9, 0xfb, 0x8d, 0x0e, - 0x63, 0x1c, 0x41, 0x97, 0x3b, 0xe8, 0xdc, 0xd6, 0x69, 0x8d, 0x3d, 0x3b, 0x22, 0xaf, 0x78, 0xe4, - 0x79, 0x8e, 0x5f, 0x77, 0x0e, 0xed, 0x93, 0x86, 0xe7, 0x1f, 0x39, 0x5e, 0xdb, 0x3d, 0x20, 0xe8, - 0x08, 0xba, 0xbc, 0x41, 0x37, 0xae, 0x1f, 0x8e, 0xec, 0x4f, 0x3c, 0x90, 0x25, 0xea, 0x0a, 0x44, - 0xdd, 0x04, 0x6d, 0x8d, 0x63, 0xe6, 0x55, 0x82, 0xad, 0x80, 0x10, 0x37, 0x0f, 0x6f, 0xec, 0xd1, - 0x11, 0x75, 0x05, 0x16, 0xaf, 0xd3, 0x63, 0x30, 0xf6, 0x86, 0x89, 0xbb, 0x82, 0xeb, 0xd7, 0x6d, - 0xbf, 0xe9, 0xb8, 0xef, 0x3f, 0xec, 0x1f, 0xb7, 0x59, 0xbe, 0x12, 0x78, 0x85, 0x72, 0x3a, 0x36, - 0x86, 0x09, 0xb5, 0x42, 0x62, 0x5c, 0x8d, 0x31, 0x8e, 0xc0, 0x2b, 0x1c, 0x78, 0x66, 0x9d, 0xb7, - 0x42, 0x3f, 0xc1, 0x19, 0x77, 0x59, 0xd2, 0xbd, 0x57, 0xe5, 0xd6, 0x26, 0xa9, 0x8b, 0x09, 0x2f, - 0x69, 0xf0, 0x32, 0x49, 0x45, 0x4c, 0x74, 0xc9, 0xe3, 0x24, 0xe0, 0x6a, 0x61, 0x42, 0x4a, 0x64, - 0x29, 0x6f, 0x8c, 0x2a, 0x98, 0xf8, 0x12, 0x89, 0x2f, 0xf0, 0xc3, 0x66, 0xa2, 0x4a, 0x2e, 0xaa, - 0x4c, 0x50, 0xf9, 0x12, 0x5f, 0xd2, 0xf0, 0x65, 0x9a, 0x9a, 0x97, 0x08, 0x93, 0x86, 0x30, 0xc3, - 0x54, 0xbb, 0x04, 0x98, 0x34, 0x80, 0x99, 0xa7, 0xce, 0x25, 0xc6, 0x44, 0xd2, 0x30, 0x13, 0x54, - 0xb8, 0x84, 0x96, 0x34, 0x68, 0x99, 0xa4, 0xb6, 0x25, 0xba, 0xa4, 0xa1, 0xcb, 0x2c, 0x55, 0x2d, - 0xf1, 0x25, 0x0d, 0x5f, 0x46, 0xa8, 0x67, 0x09, 0x2b, 0x71, 0x49, 0xd1, 0x1c, 0x95, 0x2c, 0xc1, - 0x25, 0x0d, 0x5c, 0xa6, 0xa9, 0x61, 0x89, 0x30, 0x69, 0x08, 0x33, 0x48, 0xf5, 0x4a, 0x70, 0x49, - 0x03, 0x97, 0x49, 0xea, 0x56, 0xa2, 0x4b, 0x1a, 0xba, 0x0c, 0x50, 0xb1, 0x12, 0x54, 0xe2, 0x42, - 0x96, 0x41, 0x6a, 0x55, 0xa2, 0x4b, 0x5e, 0xb1, 0x68, 0x92, 0x2a, 0x95, 0xf8, 0x12, 0x58, 0x2f, - 0x9a, 0xa4, 0x3e, 0x25, 0xc0, 0x44, 0x72, 0x2e, 0x36, 0x50, 0x09, 0xa9, 0x95, 0xc6, 0xac, 0x1a, - 0x63, 0x16, 0x01, 0x96, 0x1b, 0xc0, 0x78, 0x9e, 0x48, 0x58, 0xad, 0x00, 0x56, 0xed, 0xe3, 0x13, - 0xcf, 0x69, 0xfb, 0x07, 0x76, 0x8b, 0x77, 0xf1, 0x12, 0x6f, 0x5a, 0x71, 0x77, 0xff, 0xdf, 0xb8, - 0x77, 0x81, 0x90, 0x2b, 0x04, 0x72, 0x76, 0xe3, 0xfd, 0x71, 0xdb, 0xf5, 0x3e, 0x1c, 0x71, 0xf5, - 0x82, 0xde, 0x2f, 0xae, 0x5e, 0xa0, 0x87, 0x33, 0x99, 0x10, 0x5a, 0x4c, 0x1a, 0x44, 0x56, 0x39, - 0x0a, 0xfa, 0xd6, 0xf7, 0x05, 0x3d, 0xeb, 0x2e, 0xa2, 0xad, 0x78, 0xd4, 0xb5, 0xda, 0xce, 0xa1, - 0xfb, 0xc9, 0x3f, 0x6c, 0xd8, 0xef, 0xb9, 0xec, 0x8e, 0x78, 0x2b, 0x0a, 0x6f, 0xbc, 0xec, 0x89, - 0x68, 0x2b, 0x00, 0x6d, 0x93, 0x93, 0xe3, 0x19, 0x85, 0x23, 0xe2, 0x88, 0xb8, 0xfc, 0x11, 0xe7, - 0xd9, 0xef, 0xb7, 0x6b, 0x04, 0x1a, 0x81, 0x56, 0x40, 0x68, 0xab, 0x31, 0xb4, 0x11, 0x71, 0x85, - 0x86, 0x36, 0x36, 0xc9, 0xf5, 0x7e, 0xb1, 0x49, 0x4e, 0xb7, 0x66, 0xe5, 0x4f, 0x5c, 0xb1, 0xc2, - 0x27, 0xaa, 0xca, 0x85, 0x2a, 0x53, 0x2a, 0x79, 0x22, 0x8b, 0x15, 0x3b, 0x01, 0x65, 0x7a, 0xa8, - 0xaa, 0x31, 0x54, 0x11, 0x59, 0xac, 0xc0, 0x0d, 0xa8, 0xbc, 0xf1, 0x2a, 0x6e, 0xac, 0xf7, 0x8c, - 0x63, 0x2d, 0x86, 0xa5, 0x20, 0x41, 0xdb, 0xb2, 0xa3, 0x68, 0x90, 0x06, 0x69, 0x38, 0x88, 0xac, - 0x3d, 0xa0, 0x70, 0x6d, 0x25, 0xdd, 0x2f, 0xea, 0x2a, 0x18, 0x06, 0xe9, 0x97, 0x71, 0x80, 0xae, - 0x0e, 0x86, 0x2a, 0xea, 0x0e, 0xa2, 0x8b, 0xf0, 0xb2, 0x12, 0xa9, 0xf4, 0xeb, 0x20, 0xfe, 0xbb, - 0x12, 0x46, 0x49, 0x1a, 0x44, 0x5d, 0x55, 0x7d, 0xf8, 0x83, 0x64, 0xe1, 0x27, 0xd5, 0x61, 0x3c, - 0x48, 0x07, 0xdd, 0x41, 0x3f, 0xc9, 0xbe, 0xab, 0x86, 0x49, 0x98, 0x54, 0xfb, 0xea, 0x5a, 0xf5, - 0x67, 0xbf, 0x54, 0xfb, 0x61, 0xf4, 0x77, 0x25, 0x49, 0x83, 0x54, 0x55, 0x7a, 0x41, 0x1a, 0x9c, - 0x07, 0x89, 0xaa, 0xf6, 0x93, 0x61, 0x35, 0xed, 0x5f, 0x27, 0xe3, 0x7f, 0x54, 0xd5, 0xb7, 0x54, - 0x45, 0x3d, 0xd5, 0xab, 0x84, 0x49, 0x25, 0x56, 0x41, 0xf7, 0x4b, 0x70, 0x1e, 0xf6, 0xc3, 0xf4, - 0xa6, 0x1a, 0xa9, 0xf0, 0xf2, 0xcb, 0xf9, 0x20, 0x4e, 0xb2, 0xef, 0xaa, 0x77, 0xc6, 0x64, 0x46, - 0x24, 0xa3, 0xf3, 0xc9, 0xff, 0x6a, 0xfa, 0x6b, 0x75, 0x94, 0x86, 0xfd, 0xf0, 0xff, 0xa9, 0x5e, - 0xe5, 0x3c, 0x88, 0x7a, 0x5f, 0xc3, 0x5e, 0xfa, 0xa5, 0x3a, 0xf9, 0xcb, 0x31, 0x32, 0x8f, 0x7c, - 0x2f, 0x95, 0x6d, 0xa1, 0xf0, 0xf8, 0x81, 0x16, 0x37, 0x4a, 0x19, 0x2f, 0x00, 0xa6, 0x17, 0xad, - 0x24, 0x8d, 0x47, 0xdd, 0x34, 0x9a, 0x11, 0xed, 0xe6, 0xf4, 0x45, 0xbb, 0xb3, 0x47, 0xf4, 0x5b, - 0xb3, 0xb7, 0xeb, 0xbb, 0x49, 0x98, 0xf8, 0x8d, 0xf1, 0x6b, 0xf5, 0x1b, 0xc9, 0xd0, 0xf7, 0xfa, - 0xd7, 0xbe, 0x33, 0x7b, 0x7b, 0x6e, 0xd2, 0xbe, 0xf7, 0xee, 0xfc, 0xe6, 0xec, 0x8d, 0xf9, 0xd9, - 0xff, 0xa4, 0x33, 0x79, 0x3f, 0xfe, 0xc9, 0xec, 0xfd, 0xec, 0x67, 0xaf, 0xe7, 0x17, 0x86, 0x27, - 0x73, 0x2c, 0x13, 0x1a, 0x30, 0xad, 0x8f, 0xea, 0x66, 0x8c, 0xec, 0xf4, 0x66, 0xa8, 0x84, 0xfa, - 0xa3, 0xd5, 0x08, 0x93, 0xd4, 0x4e, 0xd3, 0x58, 0x74, 0x24, 0xb7, 0x8e, 0xc2, 0xc8, 0xe9, 0xab, - 0x2b, 0x15, 0xa5, 0x89, 0xb5, 0xb7, 0x16, 0x8d, 0xfa, 0xfd, 0xdf, 0x04, 0x1b, 0x1b, 0x7c, 0xc3, - 0x31, 0xf6, 0x38, 0xee, 0xa9, 0x58, 0xf5, 0xf6, 0x6f, 0x66, 0xa6, 0xd2, 0xbf, 0xcd, 0x23, 0x42, - 0xe6, 0x13, 0x20, 0xc1, 0x6c, 0xa7, 0x38, 0x96, 0x23, 0x93, 0xd3, 0xc8, 0x63, 0x0c, 0xb2, 0x2c, - 0x12, 0x16, 0xdb, 0xa4, 0xc7, 0x34, 0x83, 0x63, 0x99, 0x2c, 0xff, 0x95, 0xe3, 0x25, 0x82, 0x3c, - 0xc4, 0x1a, 0x45, 0x3d, 0x75, 0x11, 0x46, 0xaa, 0x57, 0x99, 0x7f, 0x68, 0xd2, 0x9c, 0x24, 0x3b, - 0xb8, 0x5a, 0x34, 0x55, 0x58, 0xa4, 0xf9, 0x18, 0x46, 0x3d, 0x6b, 0x6f, 0x6d, 0x43, 0x98, 0x59, - 0x07, 0x93, 0x68, 0x62, 0xed, 0xad, 0xad, 0x0b, 0x33, 0xac, 0x15, 0xab, 0x8b, 0xf0, 0x9b, 0xcc, - 0xa8, 0x3c, 0x07, 0xdd, 0xa0, 0x5b, 0x19, 0xc7, 0x4f, 0x81, 0x7c, 0xcc, 0xea, 0x0c, 0x46, 0x71, - 0x57, 0x89, 0x25, 0xea, 0xd6, 0x47, 0x75, 0xf3, 0x75, 0x10, 0x8f, 0x3d, 0xc2, 0x1a, 0x4e, 0x3f, - 0x69, 0xa1, 0x55, 0xcf, 0x87, 0x20, 0xb1, 0xe3, 0xcb, 0xd1, 0xb8, 0xc0, 0xb5, 0xf6, 0xd6, 0xd2, - 0x78, 0xa4, 0xa4, 0x96, 0x67, 0x77, 0x56, 0x66, 0xc0, 0x24, 0x1b, 0x85, 0x62, 0xa3, 0xf5, 0x50, - 0x66, 0x67, 0x6a, 0x21, 0xbb, 0xca, 0x8d, 0x2b, 0xcb, 0xf8, 0x80, 0xd4, 0xf0, 0x22, 0x93, 0x16, - 0x88, 0xa7, 0x07, 0x08, 0x34, 0x01, 0x88, 0x2e, 0xa0, 0xd0, 0x06, 0x38, 0xfa, 0x00, 0x47, 0x23, - 0xb0, 0xe8, 0x84, 0x4c, 0x5a, 0x21, 0x94, 0x5e, 0x88, 0xa7, 0x19, 0x99, 0x81, 0xd3, 0xe9, 0x1f, - 0xf1, 0x41, 0x68, 0x1e, 0xd7, 0xa7, 0xe6, 0x0a, 0xf7, 0x67, 0xd9, 0x44, 0x03, 0x86, 0x70, 0x20, - 0x11, 0x0f, 0x40, 0x02, 0x82, 0x46, 0x44, 0x60, 0x09, 0x09, 0x2c, 0x31, 0xc1, 0x24, 0x28, 0xb2, - 0x89, 0x8a, 0x70, 0xc2, 0x02, 0x43, 0x5c, 0x32, 0x43, 0xfb, 0x2a, 0xba, 0x9c, 0x1c, 0xd9, 0x81, - 0x44, 0xaf, 0x79, 0x82, 0x98, 0xd9, 0x0d, 0x12, 0x01, 0x66, 0x94, 0x66, 0x1d, 0xc4, 0x5c, 0x14, - 0x6a, 0x83, 0x48, 0x71, 0x80, 0xa9, 0x0e, 0x2a, 0xe5, 0x81, 0xa7, 0x3e, 0xf0, 0x14, 0x08, 0x9b, - 0x0a, 0x61, 0x50, 0x22, 0x10, 0x6a, 0x94, 0x41, 0xc1, 0xbb, 0x19, 0x2a, 0xcc, 0x88, 0x3d, 0x0a, - 0xa3, 0xf4, 0x77, 0xa4, 0x78, 0x3d, 0xa3, 0x1f, 0x5b, 0x40, 0x26, 0xb7, 0x83, 0xe8, 0x52, 0xc1, - 0x2d, 0xc9, 0xc6, 0xd3, 0xd6, 0x5b, 0x47, 0x61, 0x04, 0x97, 0xc8, 0x41, 0x79, 0xf5, 0x82, 0xf9, - 0x93, 0x55, 0xf0, 0xc0, 0xf6, 0x1f, 0xc6, 0x41, 0x37, 0x0d, 0x07, 0x51, 0x3d, 0xbc, 0x0c, 0x27, - 0xa2, 0x8a, 0x75, 0xbc, 0x8d, 0x00, 0xbf, 0x01, 0xba, 0x6c, 0xf0, 0x8d, 0x2e, 0xab, 0xd9, 0x65, - 0x37, 0xb7, 0xb6, 0xe8, 0xb4, 0x24, 0xe2, 0x66, 0x59, 0x7b, 0xc6, 0x35, 0x06, 0x65, 0x49, 0x2a, - 0x53, 0xf1, 0x2b, 0x5c, 0xdb, 0x57, 0xb0, 0x64, 0x17, 0x3c, 0xd3, 0xb1, 0xe9, 0x5b, 0x24, 0x8e, - 0xd9, 0xf4, 0x2d, 0xce, 0x0d, 0xd9, 0xf4, 0xd5, 0xfc, 0x00, 0x6c, 0xfa, 0x92, 0x71, 0xcc, 0xa0, - 0xc0, 0xa6, 0x6f, 0xd1, 0xf4, 0x83, 0x4d, 0xdf, 0xbc, 0xbf, 0xd8, 0xf4, 0x25, 0xaf, 0x7e, 0x86, - 0xf9, 0x6c, 0xfa, 0x32, 0x5b, 0xbe, 0xc4, 0x65, 0xd9, 0xf4, 0xd5, 0xee, 0xb2, 0x6c, 0xfa, 0x92, - 0x88, 0x1b, 0x67, 0x2d, 0x9b, 0xbe, 0xa5, 0x49, 0x2a, 0xd6, 0xf5, 0x2c, 0x90, 0x81, 0x75, 0x7d, - 0xa7, 0x66, 0xb3, 0xed, 0x9b, 0x87, 0xb9, 0x6c, 0xfb, 0x16, 0x08, 0x64, 0xb6, 0x7d, 0x8b, 0x73, - 0x43, 0xb6, 0x7d, 0x35, 0x3f, 0x00, 0xdb, 0xbe, 0xe4, 0x1c, 0x33, 0x28, 0xe0, 0xb6, 0x7d, 0xcf, - 0xc3, 0x28, 0x88, 0x6f, 0x00, 0xfb, 0xbe, 0xbb, 0xa4, 0xf5, 0x25, 0xb0, 0x90, 0x57, 0x52, 0xac, - 0xd6, 0x5e, 0x03, 0xb7, 0x98, 0x2e, 0xec, 0x9b, 0x5c, 0xf8, 0x09, 0xc2, 0x1d, 0x36, 0x82, 0xaf, - 0x5e, 0x10, 0xbc, 0x24, 0x09, 0x62, 0xc8, 0x0b, 0x69, 0xb8, 0x0b, 0xa4, 0xba, 0xe7, 0x72, 0x12, - 0x56, 0xf1, 0x6b, 0x5c, 0x4e, 0xc2, 0x6a, 0xdd, 0xd0, 0x2a, 0x9d, 0xa4, 0xbc, 0x14, 0xd5, 0xf8, - 0xbd, 0x6d, 0x1f, 0xc1, 0x45, 0xac, 0x2e, 0x10, 0x22, 0xee, 0x7c, 0x7b, 0xd9, 0x0e, 0x80, 0xad, - 0xad, 0x59, 0x9d, 0xf3, 0xf6, 0xed, 0xb4, 0x04, 0xa8, 0x4e, 0x18, 0x18, 0xeb, 0x00, 0x83, 0x2c, - 0xe3, 0x15, 0x6c, 0x2f, 0x36, 0x91, 0x57, 0xb0, 0xad, 0xde, 0x58, 0x5e, 0xc1, 0x56, 0x12, 0xff, - 0xe6, 0x15, 0x6c, 0x82, 0x1b, 0x7e, 0x25, 0xbf, 0x96, 0xed, 0x64, 0xfe, 0x3a, 0x78, 0x3f, 0x1b, - 0xae, 0x45, 0xbc, 0x9f, 0x8d, 0x81, 0x6e, 0xe1, 0x26, 0x2d, 0xde, 0xd4, 0x26, 0xd8, 0x12, 0x21, - 0x1e, 0x3b, 0x2f, 0x3d, 0xc2, 0x9e, 0x90, 0x34, 0x28, 0xb3, 0xd0, 0x10, 0x5d, 0x58, 0x88, 0x2e, - 0x24, 0x64, 0x16, 0x0e, 0x52, 0xbc, 0x4f, 0x68, 0x9e, 0x34, 0x30, 0x3f, 0x0a, 0x62, 0xf9, 0x05, - 0xb0, 0x7a, 0x19, 0xb9, 0x5f, 0x7f, 0xa6, 0xd5, 0x6b, 0x81, 0xe6, 0x28, 0x23, 0x2d, 0xba, 0x98, - 0x13, 0x55, 0xf4, 0xba, 0x97, 0x3e, 0x50, 0x6b, 0x04, 0xb4, 0x90, 0xcb, 0x85, 0x44, 0x5d, 0x1e, - 0x24, 0xe4, 0x72, 0x20, 0x31, 0xf3, 0x35, 0x92, 0xe6, 0x67, 0x04, 0xce, 0xc7, 0x48, 0x9b, 0x7f, - 0x11, 0x3b, 0xdf, 0x22, 0x76, 0x7e, 0x45, 0xe6, 0x7c, 0x4a, 0xb9, 0x49, 0x96, 0x94, 0xcb, 0x6d, - 0xac, 0xe4, 0x26, 0x49, 0xd5, 0x55, 0x25, 0xec, 0xc9, 0x71, 0xf0, 0x2c, 0x59, 0x66, 0xa6, 0x49, - 0xe9, 0x7a, 0x89, 0x1a, 0x5c, 0x15, 0x37, 0xa0, 0x2a, 0x71, 0x10, 0x55, 0xf0, 0xc0, 0xa9, 0xd4, - 0xc1, 0x52, 0xf1, 0x03, 0xa4, 0xe2, 0x07, 0x45, 0x65, 0x0f, 0x84, 0xf2, 0x24, 0xe3, 0xfe, 0x47, - 0x25, 0x6e, 0x90, 0x53, 0x6c, 0xfa, 0xfb, 0xae, 0x76, 0xfc, 0x5d, 0x90, 0x4d, 0xad, 0x20, 0x4d, - 0x55, 0x1c, 0x89, 0x5b, 0x7a, 0x67, 0xfd, 0xef, 0xf3, 0x7a, 0x65, 0xd7, 0xae, 0x1c, 0x06, 0x95, - 0x8b, 0xb3, 0x7f, 0x6a, 0xb7, 0x7f, 0xfd, 0xf5, 0xf6, 0x27, 0x3f, 0xf8, 0x3f, 0x39, 0x51, 0xe2, - 0x8c, 0xbd, 0x60, 0x96, 0x29, 0xec, 0x05, 0xaf, 0xb8, 0x17, 0x2c, 0x40, 0x25, 0x5a, 0xd2, 0x3e, - 0xb0, 0x98, 0x32, 0x57, 0x5c, 0x7e, 0x17, 0x52, 0xd6, 0xb2, 0x1f, 0x8c, 0x51, 0xbe, 0xb2, 0x1f, - 0x8c, 0x5e, 0xa6, 0xb2, 0x1f, 0x2c, 0x8f, 0x68, 0x89, 0x29, 0x43, 0x05, 0xea, 0x05, 0x25, 0xe9, - 0x01, 0x17, 0xf5, 0x7e, 0x77, 0x69, 0xbc, 0xac, 0xb4, 0xee, 0x97, 0x12, 0x39, 0xec, 0x7c, 0xf2, - 0x55, 0x37, 0x79, 0x93, 0x31, 0xf0, 0x2a, 0x6a, 0xc0, 0x55, 0xd4, 0x40, 0xab, 0x8c, 0x01, 0x56, - 0x5d, 0x4e, 0x22, 0xa4, 0x6d, 0x80, 0xde, 0x2e, 0xb0, 0xb4, 0x0e, 0x4e, 0xe5, 0x34, 0x6d, 0xaa, - 0x27, 0x4d, 0x16, 0x9f, 0xa4, 0x8a, 0xfd, 0x1b, 0x0b, 0xf6, 0x74, 0xdd, 0x1e, 0x0e, 0xea, 0xd9, - 0xc5, 0x62, 0xbf, 0x38, 0x04, 0x16, 0xf3, 0x37, 0x15, 0x84, 0x71, 0x5d, 0xd8, 0x86, 0xc2, 0x74, - 0x81, 0xa9, 0x69, 0xe5, 0xa9, 0xa8, 0x18, 0x2f, 0xcc, 0xdf, 0x27, 0x0a, 0xf0, 0x07, 0xeb, 0xcb, - 0x20, 0x99, 0xbf, 0xf9, 0x62, 0x3c, 0x21, 0xeb, 0x3f, 0x64, 0x7f, 0x73, 0x41, 0x5e, 0x5f, 0xec, - 0x54, 0x74, 0xe1, 0xdd, 0x6e, 0x1d, 0x5d, 0x6d, 0x8d, 0xdd, 0x6b, 0x5d, 0x5d, 0x6a, 0xed, 0xdd, - 0x68, 0xed, 0x5d, 0x67, 0xbd, 0xdd, 0x65, 0xb3, 0x98, 0x48, 0xd1, 0x53, 0xc2, 0x9a, 0xe4, 0x32, - 0x5a, 0xe5, 0x31, 0x9a, 0xe4, 0x30, 0xda, 0x8e, 0x3b, 0x75, 0x1e, 0x6f, 0x0a, 0x38, 0xce, 0xd4, - 0x7d, 0x7c, 0x29, 0xe6, 0xb8, 0x52, 0xcc, 0xf1, 0xa4, 0x8c, 0xe3, 0x48, 0xb3, 0xdb, 0x35, 0xba, - 0xe4, 0x26, 0xc5, 0xd7, 0x0f, 0x52, 0xea, 0x89, 0x65, 0x69, 0x46, 0xd3, 0x70, 0x8b, 0xf6, 0xe9, - 0x1a, 0x09, 0x53, 0x35, 0x82, 0xa6, 0x69, 0xa4, 0x4c, 0xd1, 0x88, 0x9b, 0x9e, 0x11, 0x37, 0x35, - 0x23, 0x6b, 0x5a, 0xa6, 0x5c, 0x87, 0xed, 0xda, 0xa7, 0x62, 0xee, 0x55, 0x26, 0x71, 0x18, 0x5d, - 0xea, 0x0c, 0x18, 0x99, 0xf2, 0xa2, 0x54, 0x08, 0xe0, 0x98, 0xc3, 0xa2, 0x31, 0x1c, 0x73, 0xd0, - 0x1e, 0x14, 0x79, 0xb8, 0x9b, 0xe7, 0xdf, 0x2f, 0xf1, 0x20, 0x6c, 0x5e, 0x3e, 0xe8, 0x90, 0x70, - 0xf0, 0x20, 0x17, 0x0a, 0xc7, 0xa2, 0xf1, 0x8b, 0x71, 0x70, 0xfb, 0x61, 0x6e, 0x2d, 0x8f, 0x6a, - 0x9f, 0xfc, 0xb6, 0xe7, 0x80, 0xa9, 0x84, 0xbd, 0xa4, 0xf8, 0xe3, 0xda, 0xef, 0xfe, 0x76, 0x1e, - 0xd9, 0xa2, 0xb6, 0x4c, 0x78, 0x64, 0xcb, 0x23, 0x5b, 0x1e, 0xd9, 0xbe, 0xe2, 0x55, 0x16, 0x7e, - 0x64, 0x7b, 0x2f, 0xf0, 0xea, 0x3b, 0xb8, 0xbd, 0x6f, 0x04, 0x8f, 0x6f, 0x4d, 0x4b, 0x0a, 0x02, - 0x92, 0x83, 0xee, 0x24, 0x21, 0x26, 0x59, 0x88, 0x49, 0x1a, 0x32, 0x92, 0x47, 0x39, 0x1a, 0x32, - 0xda, 0x8e, 0x6f, 0x75, 0x26, 0x17, 0x41, 0x49, 0xe6, 0x61, 0xb2, 0xe1, 0x21, 0x2e, 0x0f, 0x71, - 0x79, 0x88, 0x0b, 0x90, 0x9c, 0x64, 0x25, 0x29, 0x3d, 0xc9, 0x4a, 0x53, 0xd2, 0xca, 0x5e, 0xbd, - 0x9c, 0x43, 0x5c, 0xfd, 0x2b, 0x0d, 0x24, 0xac, 0x32, 0x58, 0x5c, 0x61, 0x70, 0x3f, 0xb1, 0x96, - 0xe5, 0x00, 0x4f, 0x43, 0xe9, 0xa2, 0xf7, 0x2e, 0x02, 0x11, 0x77, 0x10, 0x68, 0xbe, 0x7b, 0x80, - 0x04, 0x8a, 0x04, 0x8a, 0x04, 0x8a, 0x04, 0x0a, 0x8b, 0x40, 0xe9, 0xbe, 0x2b, 0x40, 0x44, 0x17, - 0x40, 0x60, 0x37, 0x40, 0x48, 0x57, 0x40, 0x4c, 0x72, 0x93, 0x94, 0xe4, 0x04, 0x26, 0x3b, 0x69, - 0x49, 0x4f, 0x6c, 0xf2, 0x13, 0x9b, 0x04, 0x65, 0x26, 0x43, 0xbd, 0x49, 0x51, 0x73, 0x72, 0x94, - 0xd3, 0x65, 0x58, 0x88, 0x38, 0xa3, 0x30, 0x4a, 0x37, 0xb6, 0x05, 0xed, 0x4f, 0xdc, 0x16, 0x60, - 0x4a, 0x3b, 0x88, 0x2e, 0x95, 0x98, 0x4d, 0xfd, 0xb2, 0xae, 0x8a, 0x16, 0x78, 0x13, 0x8c, 0xa8, - 0x0b, 0x8f, 0x32, 0xb3, 0x4e, 0x83, 0xfe, 0x48, 0x09, 0xb4, 0xeb, 0x30, 0x0e, 0xba, 0x69, 0x38, - 0x88, 0xea, 0xe1, 0x65, 0x38, 0x19, 0xce, 0x5f, 0x97, 0x73, 0xe9, 0x8b, 0xac, 0x8b, 0xc7, 0x09, - 0xf5, 0x67, 0x42, 0x7d, 0x7b, 0x6b, 0xeb, 0xdd, 0x16, 0xe1, 0x8e, 0xc1, 0x85, 0xe4, 0x58, 0x71, - 0xc6, 0xab, 0x26, 0x0a, 0x77, 0x8b, 0x74, 0x30, 0x1c, 0xf4, 0x07, 0x97, 0x37, 0xa2, 0xba, 0x25, - 0xf7, 0x8d, 0x62, 0xb7, 0x84, 0xdd, 0x12, 0x76, 0x4b, 0xd8, 0x2d, 0x61, 0xb7, 0x84, 0xdd, 0x12, - 0x76, 0x4b, 0xd8, 0x2d, 0x61, 0xb7, 0x84, 0xdd, 0x12, 0x96, 0x8f, 0xec, 0x96, 0xb0, 0x5b, 0xc2, - 0x6e, 0x09, 0xbb, 0x25, 0xa5, 0xe5, 0x84, 0x22, 0x56, 0xed, 0xdc, 0xcf, 0xf0, 0x62, 0xb6, 0xdc, - 0xdc, 0x8f, 0xc5, 0xf2, 0x8c, 0x12, 0xb1, 0x82, 0x47, 0xbf, 0x13, 0xdf, 0xf2, 0x86, 0x25, 0x0d, - 0x76, 0x48, 0x5c, 0x75, 0x72, 0x7f, 0x15, 0xc5, 0xfd, 0x7f, 0xd1, 0x79, 0xfb, 0x32, 0x57, 0x54, - 0xad, 0x98, 0x80, 0x4e, 0xaf, 0xe1, 0xd3, 0xa8, 0x3b, 0xd7, 0x9a, 0x2e, 0x45, 0xa4, 0x47, 0x11, - 0xe9, 0x50, 0x6f, 0xfa, 0xe3, 0x66, 0x36, 0xb9, 0xe1, 0xde, 0xd2, 0x22, 0xf1, 0x79, 0xe9, 0xc6, - 0xab, 0xf9, 0x6f, 0x72, 0x7b, 0xdc, 0x2d, 0x07, 0xe0, 0x91, 0xdc, 0x2d, 0xb7, 0xc4, 0x03, 0xb9, - 0xb1, 0xed, 0xe9, 0x9f, 0x65, 0x38, 0xbc, 0xae, 0x55, 0xd4, 0xb7, 0x54, 0xc5, 0x51, 0xd0, 0xff, - 0xfe, 0x7a, 0xb5, 0xe2, 0xf7, 0xb7, 0x2d, 0xb7, 0x85, 0xdb, 0xdc, 0x56, 0xf2, 0x17, 0x72, 0x9b, - 0x5b, 0x51, 0x95, 0x01, 0xb7, 0xb9, 0x71, 0x9b, 0xdb, 0x6a, 0x5e, 0x65, 0xe1, 0xdb, 0xdc, 0xa6, - 0x90, 0x55, 0x89, 0xbe, 0x55, 0x6e, 0x99, 0x05, 0xdc, 0xe3, 0x66, 0x5a, 0x3a, 0x10, 0x90, 0x16, - 0x74, 0xa7, 0x07, 0x31, 0x69, 0x42, 0x4c, 0xba, 0x90, 0x91, 0x36, 0x8a, 0x2f, 0x47, 0xd7, 0xca, - 0xb4, 0xc7, 0x6d, 0xa8, 0x77, 0xc6, 0xf4, 0x41, 0x72, 0xe1, 0xf2, 0x11, 0x2e, 0x1f, 0xe1, 0xf2, - 0x11, 0x71, 0xa9, 0x48, 0x5c, 0x4a, 0x92, 0x95, 0x9a, 0xf4, 0xa4, 0x28, 0x4d, 0xa9, 0x4a, 0x7b, - 0xca, 0xca, 0x0c, 0xe8, 0xa9, 0x8b, 0x60, 0xd4, 0x4f, 0x2b, 0x57, 0x2a, 0x8d, 0xc3, 0xae, 0x1c, - 0x45, 0xcd, 0x03, 0xbb, 0x64, 0x88, 0x6a, 0x36, 0x28, 0xaa, 0x11, 0x93, 0xea, 0x04, 0xa6, 0x3c, - 0x69, 0xa9, 0x4f, 0x6c, 0x0a, 0x14, 0x9b, 0x0a, 0x65, 0xa6, 0x44, 0xbd, 0xa9, 0x51, 0x73, 0x8a, - 0x14, 0x93, 0x2a, 0x33, 0x43, 0xf4, 0x2e, 0x9a, 0x5c, 0x1a, 0xff, 0x74, 0x2e, 0x9e, 0x14, 0x9a, - 0x30, 0xc5, 0x25, 0x4e, 0x89, 0x09, 0x54, 0x70, 0x22, 0x95, 0x9a, 0x50, 0xc5, 0x27, 0x56, 0xf1, - 0x09, 0x56, 0x76, 0xa2, 0x95, 0x91, 0x70, 0x85, 0x24, 0x5e, 0x71, 0x09, 0x38, 0x33, 0xe8, 0xa2, - 0x1f, 0x5c, 0x26, 0xf2, 0x82, 0xc2, 0x3c, 0x8e, 0x4e, 0xcd, 0xfb, 0x8d, 0xd2, 0x32, 0xc0, 0x04, - 0x2d, 0x39, 0x51, 0x03, 0x24, 0x6c, 0xe9, 0x89, 0x1b, 0x26, 0x81, 0xc3, 0x24, 0x72, 0x8c, 0x84, - 0x2e, 0x2b, 0xb1, 0x0b, 0x4b, 0xf0, 0xd9, 0x47, 0x28, 0x66, 0x7d, 0xc5, 0xd2, 0x88, 0xa7, 0xa2, - 0xd1, 0x95, 0x8a, 0xa7, 0xf3, 0xc1, 0x02, 0xa3, 0xde, 0xbc, 0xfa, 0xad, 0x09, 0xb4, 0xcd, 0x89, - 0x46, 0x57, 0xe3, 0x0f, 0x57, 0x98, 0x0b, 0x70, 0x39, 0xc1, 0x23, 0x9f, 0x95, 0x90, 0x43, 0x99, - 0xa5, 0x6e, 0x28, 0xe2, 0x70, 0x86, 0x14, 0x97, 0x14, 0x97, 0x14, 0x97, 0x14, 0x97, 0x14, 0x97, - 0x14, 0xd7, 0x20, 0x8a, 0x1b, 0x05, 0x71, 0x3c, 0xf8, 0x5a, 0x11, 0x99, 0x62, 0xef, 0xa7, 0xd9, - 0x2d, 0x81, 0xa6, 0xc9, 0x5a, 0xec, 0xf6, 0xf0, 0x4b, 0x66, 0x9e, 0x58, 0x93, 0xba, 0xf8, 0x0d, - 0x84, 0xdf, 0x2d, 0x98, 0x39, 0xdf, 0x96, 0xb5, 0x21, 0xdc, 0x4e, 0xc1, 0x9b, 0xb3, 0x84, 0x67, - 0x91, 0xef, 0x5d, 0x27, 0xf8, 0x46, 0xd7, 0x59, 0xb1, 0xeb, 0x6c, 0xbf, 0xa3, 0xef, 0x98, 0xc9, - 0x07, 0xe5, 0x5a, 0x75, 0xc6, 0xbe, 0x98, 0x60, 0x4b, 0xa4, 0x9c, 0x85, 0x0b, 0x59, 0x10, 0xb6, - 0x60, 0x97, 0xc8, 0xfd, 0x15, 0x4b, 0x77, 0x1f, 0x54, 0xe7, 0x6a, 0xd8, 0xd9, 0x37, 0xd5, 0xef, - 0xa7, 0xbe, 0x75, 0x6e, 0x14, 0x93, 0x07, 0xff, 0x72, 0x4f, 0x7f, 0x0a, 0x73, 0x38, 0xb3, 0x1c, - 0x4d, 0xc2, 0xcc, 0xfc, 0x2b, 0x76, 0x3b, 0x0d, 0xaf, 0x6b, 0xce, 0xec, 0xa9, 0xdb, 0xf7, 0x1e, - 0xda, 0x9f, 0x36, 0xb6, 0xfd, 0xfa, 0xf4, 0x59, 0x8f, 0xa6, 0x8f, 0xca, 0x2b, 0x7b, 0x0a, 0xff, - 0x68, 0x7b, 0xaa, 0x1f, 0xdc, 0x08, 0x54, 0x18, 0xdd, 0xb3, 0x8a, 0xfa, 0x22, 0xea, 0x8b, 0x7e, - 0x82, 0x17, 0xea, 0x8b, 0x96, 0xc3, 0x97, 0xfa, 0xa2, 0xe7, 0xd2, 0x19, 0xea, 0x8b, 0xa4, 0x31, - 0x4c, 0xea, 0x8b, 0x7e, 0x1c, 0xff, 0xa8, 0x2f, 0x92, 0x9f, 0x38, 0x25, 0x26, 0x50, 0xc1, 0x89, - 0x54, 0x6a, 0x42, 0x15, 0x9f, 0x58, 0xc5, 0x27, 0x58, 0xd9, 0x89, 0x56, 0x4e, 0x53, 0x69, 0x8d, - 0xfa, 0xa2, 0xe5, 0x06, 0x51, 0x5f, 0xf4, 0xe2, 0xc4, 0xcc, 0xe1, 0x4b, 0xdc, 0x44, 0x0d, 0x90, - 0xb0, 0xa5, 0x27, 0x6e, 0x98, 0x04, 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, - 0xc1, 0x67, 0x1f, 0xa1, 0xfc, 0xe1, 0xcb, 0x31, 0xaa, 0x66, 0xad, 0xe1, 0x8a, 0xc4, 0x34, 0xbb, - 0x46, 0x95, 0x91, 0x09, 0x8e, 0x20, 0xea, 0x4e, 0xc0, 0x05, 0xeb, 0x24, 0xde, 0x11, 0xb8, 0x68, - 0xa4, 0xc0, 0x3b, 0x03, 0x17, 0x8c, 0x14, 0x75, 0x87, 0xa0, 0xdc, 0x5c, 0x45, 0xe9, 0xdd, 0xd3, - 0x33, 0x14, 0xa5, 0x77, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, - 0xdf, 0x6a, 0x23, 0x1e, 0xa5, 0x77, 0x2f, 0x37, 0x8d, 0xd2, 0xbb, 0x97, 0x57, 0x5b, 0xd4, 0x0f, - 0xad, 0xc8, 0x4c, 0x4a, 0xef, 0x4c, 0xcf, 0x22, 0x0f, 0x7b, 0x00, 0x74, 0x9d, 0x15, 0xbb, 0x0e, - 0xa5, 0x77, 0xa6, 0xf2, 0x41, 0xb9, 0x56, 0x51, 0x7a, 0x27, 0xd9, 0x12, 0x4a, 0xef, 0x7e, 0x6c, - 0x17, 0xbc, 0x22, 0xe8, 0x4e, 0x0e, 0x41, 0xe1, 0x9d, 0x1c, 0x0b, 0x28, 0xbc, 0x33, 0xd6, 0xcd, - 0x4c, 0x97, 0xdd, 0xf5, 0x83, 0x1b, 0x8a, 0xee, 0x74, 0x7d, 0xb0, 0x2a, 0x8e, 0x07, 0xb1, 0x38, - 0xd1, 0xdd, 0x77, 0x56, 0x51, 0x74, 0x47, 0xd1, 0xdd, 0x4f, 0xf0, 0x42, 0xd1, 0xdd, 0x72, 0xf8, - 0x52, 0x74, 0xf7, 0x5c, 0x2a, 0x43, 0xd1, 0x9d, 0x34, 0x76, 0x49, 0xd1, 0xdd, 0x8f, 0xe3, 0x1f, - 0x45, 0x77, 0xf2, 0x13, 0xa7, 0xc4, 0x04, 0x2a, 0x38, 0x91, 0x4a, 0x4d, 0xa8, 0xe2, 0x13, 0xab, - 0xf8, 0x04, 0x2b, 0x3b, 0xd1, 0xca, 0x69, 0x28, 0xad, 0x51, 0x74, 0xb7, 0xdc, 0x20, 0x8a, 0xee, - 0x5e, 0x9c, 0x98, 0x39, 0x76, 0x89, 0x9b, 0xa8, 0x01, 0x12, 0xb6, 0xf4, 0xc4, 0x0d, 0x93, 0xc0, - 0x61, 0x12, 0x39, 0x46, 0x42, 0x97, 0x95, 0xd8, 0x85, 0x25, 0xf8, 0xec, 0x23, 0xa4, 0xe8, 0x6e, - 0xa5, 0x35, 0x30, 0x45, 0x77, 0xa8, 0x8e, 0x40, 0xd1, 0xdd, 0xeb, 0x8d, 0xa4, 0xe8, 0xce, 0x98, - 0x5c, 0x45, 0xd1, 0xdd, 0xd3, 0x33, 0x14, 0x45, 0x77, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x63, - 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0xdf, 0x6a, 0x23, 0x1e, 0x45, 0x77, 0x2f, 0x37, 0x8d, 0xa2, 0xbb, - 0x97, 0x57, 0x5b, 0x54, 0x0e, 0xad, 0xc8, 0x4c, 0x8a, 0xee, 0x4c, 0xcf, 0x22, 0x0f, 0x7b, 0x00, - 0x74, 0x9d, 0x15, 0xbb, 0x0e, 0x45, 0x77, 0xa6, 0xf2, 0x41, 0xb9, 0x56, 0x51, 0x74, 0x27, 0xd9, - 0x12, 0x8a, 0xee, 0x7e, 0x6c, 0x17, 0xb8, 0x1a, 0xe8, 0xbe, 0x1c, 0x82, 0xa2, 0x3b, 0x39, 0x16, - 0x50, 0x74, 0x67, 0xac, 0x9b, 0x99, 0x2d, 0xba, 0x73, 0xc6, 0x4f, 0x4a, 0xd1, 0x9d, 0xae, 0x0f, - 0x56, 0x7d, 0x1b, 0xaa, 0x28, 0x51, 0xf2, 0x64, 0x77, 0xdf, 0xdb, 0x45, 0xe1, 0x1d, 0x85, 0x77, - 0x3f, 0x41, 0x0c, 0x85, 0x77, 0xcb, 0xe1, 0x4b, 0xe1, 0xdd, 0x73, 0xe9, 0x0c, 0x85, 0x77, 0xd2, - 0x18, 0x26, 0x85, 0x77, 0x3f, 0x8e, 0x7f, 0x14, 0xde, 0xc9, 0x4f, 0x9c, 0x12, 0x13, 0xa8, 0xe0, - 0x44, 0x2a, 0x35, 0xa1, 0x8a, 0x4f, 0xac, 0xe2, 0x13, 0xac, 0xec, 0x44, 0x2b, 0xa7, 0xa9, 0xb4, - 0x46, 0xe1, 0xdd, 0x72, 0x83, 0x28, 0xbc, 0x7b, 0x71, 0x62, 0xe6, 0xe8, 0x25, 0x6e, 0xa2, 0x06, - 0x48, 0xd8, 0xd2, 0x13, 0x37, 0x4c, 0x02, 0x87, 0x49, 0xe4, 0x18, 0x09, 0x5d, 0x56, 0x62, 0x17, - 0x96, 0xe0, 0xb3, 0x8f, 0x90, 0xc2, 0xbb, 0x95, 0xd6, 0xc0, 0x14, 0xde, 0xa1, 0x3a, 0x02, 0x85, - 0x77, 0xaf, 0x37, 0x92, 0xc2, 0x3b, 0x63, 0x72, 0x15, 0x85, 0x77, 0x4f, 0xcf, 0x50, 0x14, 0xde, - 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xab, 0x8d, 0x78, - 0x14, 0xde, 0xbd, 0xdc, 0x34, 0x0a, 0xef, 0x5e, 0x5e, 0x6d, 0x51, 0x3d, 0xb4, 0x22, 0x33, 0x29, - 0xbc, 0x33, 0x3d, 0x8b, 0x3c, 0xec, 0x01, 0xd0, 0x75, 0x56, 0xec, 0x3a, 0x14, 0xde, 0x99, 0xca, - 0x07, 0xe5, 0x5a, 0x45, 0xe1, 0x9d, 0x64, 0x4b, 0x28, 0xbc, 0xfb, 0xb1, 0x5d, 0xe8, 0x8a, 0xa0, - 0xef, 0x04, 0x11, 0x94, 0xde, 0xc9, 0xb1, 0x80, 0xd2, 0x3b, 0x83, 0x1d, 0xcd, 0x70, 0xf1, 0xdd, - 0xf4, 0x59, 0x29, 0xbf, 0xd3, 0xf5, 0xd1, 0x0e, 0x65, 0x1c, 0x30, 0x64, 0xad, 0x35, 0x11, 0x6d, - 0x70, 0x21, 0xb5, 0x18, 0xe5, 0x76, 0x3f, 0x42, 0x0a, 0xe5, 0x76, 0xcb, 0xe1, 0x4b, 0xb9, 0xdd, - 0x73, 0x29, 0x0c, 0xe5, 0x76, 0xd2, 0x58, 0xa5, 0x98, 0x63, 0xa0, 0x2c, 0xe2, 0xf4, 0x55, 0x70, - 0x11, 0xab, 0x0b, 0x09, 0x11, 0x67, 0x3e, 0xda, 0xb7, 0x23, 0xc0, 0x96, 0xd6, 0x8c, 0x68, 0xbf, - 0x7d, 0x3b, 0x2d, 0x0a, 0x67, 0x3c, 0x96, 0x6c, 0x4e, 0x07, 0x51, 0x97, 0xa0, 0x0c, 0x15, 0xa5, - 0x08, 0xe5, 0xea, 0x04, 0x72, 0x39, 0x72, 0x39, 0x72, 0x39, 0x72, 0x39, 0x8d, 0x1f, 0x89, 0x98, - 0xd5, 0x09, 0x43, 0x59, 0xf3, 0x94, 0xb2, 0xda, 0x1e, 0xc2, 0xda, 0x1f, 0xe2, 0x52, 0xa7, 0xc4, - 0x14, 0x2a, 0x38, 0x95, 0x4a, 0x4d, 0xa9, 0xe2, 0x53, 0xab, 0xf8, 0x14, 0x2b, 0x3b, 0xd5, 0xca, - 0x48, 0xb9, 0x42, 0x52, 0xaf, 0xbc, 0x76, 0xca, 0x42, 0xc4, 0x9a, 0x1c, 0x8d, 0x89, 0x73, 0xc0, - 0xac, 0x6e, 0xfc, 0x5d, 0x90, 0x4d, 0xad, 0x20, 0x4d, 0x55, 0x1c, 0x89, 0x1b, 0x9f, 0xb5, 0xfe, - 0xf7, 0xeb, 0xaf, 0x9f, 0xd7, 0x2b, 0xbb, 0x67, 0xff, 0x7e, 0xde, 0xa8, 0xec, 0x9e, 0x4d, 0xbf, - 0xdd, 0x98, 0xfc, 0x32, 0xfd, 0x7e, 0xf3, 0xf3, 0x7a, 0xa5, 0x36, 0xff, 0x7e, 0xeb, 0xf3, 0x7a, - 0x65, 0xeb, 0xec, 0xcd, 0x5f, 0x7f, 0xbd, 0x7d, 0xf3, 0xcf, 0xbb, 0xdb, 0xe7, 0xff, 0xc1, 0xea, - 0xec, 0x2f, 0x7b, 0xf3, 0xef, 0xaf, 0x9f, 0x37, 0x2a, 0x9b, 0x67, 0xf3, 0x7f, 0x79, 0xf7, 0x79, - 0xbd, 0xb2, 0x79, 0xf6, 0xe6, 0xcd, 0xff, 0xc9, 0x89, 0x41, 0x67, 0x1c, 0x90, 0x90, 0x12, 0x05, - 0xad, 0xd1, 0xb0, 0xd2, 0x1b, 0x7c, 0x8d, 0xe4, 0x91, 0xff, 0xb9, 0x61, 0x64, 0xff, 0x64, 0xff, - 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0xa5, 0x61, 0xff, 0xe7, 0x83, 0x41, 0x5f, 0x05, - 0x91, 0x44, 0xe6, 0xbf, 0x41, 0xf2, 0x26, 0xc0, 0x02, 0x4e, 0xb7, 0x7e, 0x6f, 0x0f, 0xf8, 0x74, - 0xab, 0x80, 0xb9, 0x71, 0x8d, 0xb3, 0x01, 0xbf, 0x94, 0xc8, 0x83, 0xc6, 0x0c, 0x4b, 0x3b, 0xbb, - 0x92, 0xb1, 0x42, 0x49, 0xd4, 0xaa, 0x24, 0x51, 0x2b, 0x91, 0x64, 0xac, 0x3e, 0xd2, 0xe5, 0x21, - 0x42, 0x72, 0x0b, 0x78, 0x4e, 0xb1, 0xb4, 0x4e, 0x5c, 0xe5, 0x24, 0x8d, 0xd0, 0x93, 0x22, 0x8b, - 0x4f, 0x50, 0xc5, 0xfe, 0x8d, 0x05, 0x3b, 0xba, 0x6e, 0x07, 0x47, 0x75, 0xec, 0x62, 0xc1, 0x5f, - 0x1c, 0x04, 0x8b, 0xf9, 0x9b, 0x0a, 0x02, 0xb9, 0x2e, 0x70, 0x83, 0x81, 0xba, 0xc0, 0xec, 0x94, - 0x43, 0x36, 0x2a, 0xc6, 0x13, 0xf3, 0xf7, 0x8b, 0x02, 0x7c, 0x62, 0x7a, 0x90, 0x1d, 0x46, 0xa9, - 0x8a, 0x2f, 0x82, 0xae, 0xaa, 0x04, 0xbd, 0x5e, 0xac, 0x92, 0x44, 0x15, 0x77, 0x43, 0xc0, 0xf7, - 0x47, 0xea, 0x8f, 0x59, 0x52, 0x50, 0x64, 0x28, 0x76, 0xe6, 0xba, 0xf0, 0x23, 0x22, 0x1d, 0x47, - 0x40, 0x1a, 0x8f, 0x78, 0x74, 0x1d, 0xe1, 0x68, 0x3f, 0xa2, 0xd1, 0x7e, 0x04, 0xa3, 0xf7, 0x88, - 0xc5, 0x2c, 0xb6, 0x52, 0xf4, 0x0c, 0xb2, 0x26, 0x31, 0x8e, 0x56, 0xf1, 0x8d, 0x26, 0xb1, 0x8d, - 0xb6, 0x19, 0x01, 0x9d, 0xb3, 0x00, 0x02, 0xce, 0xfc, 0x75, 0x9f, 0xed, 0x8b, 0x39, 0xc3, 0x17, - 0x73, 0x56, 0x2f, 0xe3, 0x4c, 0xde, 0xec, 0x9e, 0x8e, 0x2e, 0x31, 0x8b, 0x35, 0xa3, 0xf1, 0xfa, - 0xdc, 0x6d, 0x1e, 0x71, 0xe6, 0x86, 0xe8, 0x3a, 0x57, 0xd2, 0x3a, 0xa0, 0xa6, 0x7d, 0x20, 0x4d, - 0xc2, 0x00, 0x9a, 0xa0, 0x81, 0x33, 0x29, 0x03, 0x66, 0xe2, 0x06, 0xca, 0xc4, 0x0d, 0x90, 0xc9, - 0x1a, 0x18, 0x2b, 0xd7, 0x59, 0xbc, 0xf6, 0x01, 0xb0, 0xef, 0x7b, 0x53, 0x7a, 0x33, 0xc8, 0x9a, - 0x10, 0x7d, 0x87, 0x18, 0x3d, 0x47, 0xb1, 0xfa, 0x0d, 0x8d, 0xfa, 0x8c, 0xb3, 0x52, 0x39, 0x3d, - 0x67, 0x5f, 0x16, 0x8d, 0xe1, 0xec, 0x8b, 0xf6, 0x3c, 0xc8, 0x23, 0xff, 0x3c, 0xff, 0x7e, 0xb1, - 0xa7, 0xa3, 0x8f, 0x9c, 0x47, 0xe9, 0x98, 0x06, 0xe5, 0x69, 0x3f, 0x14, 0xae, 0xa1, 0xf0, 0x8c, - 0x73, 0xd6, 0xef, 0xce, 0x8d, 0xb7, 0x33, 0xdb, 0x79, 0xd2, 0xff, 0xe4, 0x77, 0x7f, 0xf7, 0xf9, - 0x2f, 0x4c, 0x7b, 0x68, 0x3c, 0xeb, 0xd7, 0x34, 0x79, 0xc2, 0xd3, 0x7e, 0xa3, 0xfa, 0x6b, 0x3c, - 0xed, 0xe7, 0x69, 0x3f, 0x3e, 0x5b, 0x29, 0xfc, 0xb4, 0x3f, 0x1b, 0x5d, 0xd5, 0x76, 0xe0, 0x9f, - 0x59, 0xc0, 0x33, 0x7f, 0xd3, 0xd2, 0x81, 0x80, 0xb4, 0xa0, 0x3b, 0x3d, 0x88, 0x49, 0x13, 0x62, - 0xd2, 0x85, 0x8c, 0xb4, 0x51, 0x8e, 0xa6, 0x8e, 0xb6, 0x33, 0x7f, 0xcd, 0x0b, 0x2b, 0x65, 0x2c, - 0xa8, 0xd4, 0xbc, 0xc3, 0x99, 0x27, 0xfe, 0x3c, 0xf1, 0x17, 0x9d, 0x8a, 0xc4, 0xa5, 0x24, 0x59, - 0xa9, 0x49, 0x4f, 0x8a, 0xd2, 0x94, 0xaa, 0xb4, 0xa7, 0xac, 0xcc, 0x80, 0x9e, 0xba, 0x08, 0x46, - 0xfd, 0x74, 0x7e, 0x8f, 0x99, 0x98, 0x5b, 0x09, 0x1e, 0xd8, 0xc5, 0xeb, 0x09, 0x78, 0x3d, 0x81, - 0xf8, 0x94, 0x27, 0x2d, 0xf5, 0x89, 0x4d, 0x81, 0x62, 0x53, 0xa1, 0xcc, 0x94, 0xa8, 0x37, 0x35, - 0x6a, 0x4e, 0x91, 0x62, 0x52, 0x65, 0x66, 0x88, 0x8c, 0xfb, 0x7b, 0x16, 0xe2, 0x9f, 0x84, 0x7b, - 0x7c, 0x84, 0x25, 0x4c, 0x71, 0x89, 0x53, 0x62, 0x02, 0x15, 0x9c, 0x48, 0xa5, 0x26, 0x54, 0xf1, - 0x89, 0x55, 0x7c, 0x82, 0x95, 0x9d, 0x68, 0x65, 0x24, 0x5c, 0x21, 0x89, 0x57, 0x5c, 0x02, 0xce, - 0x0c, 0xba, 0xe8, 0x07, 0x97, 0x89, 0xbc, 0xa0, 0x30, 0x8f, 0xa3, 0x53, 0xf3, 0x84, 0xf9, 0x9b, - 0xac, 0xbd, 0xe1, 0x62, 0x13, 0xb4, 0xe4, 0x44, 0x0d, 0x90, 0xb0, 0xa5, 0x27, 0x6e, 0x98, 0x04, - 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, 0xc1, 0x67, 0x1f, 0xa1, 0xb8, 0x3d, - 0xe4, 0x0b, 0x11, 0x4f, 0x45, 0xa3, 0x2b, 0x15, 0x4f, 0xe7, 0x9c, 0x05, 0x46, 0xbd, 0x79, 0xf5, - 0x5b, 0x13, 0x68, 0x9b, 0x13, 0x8d, 0xae, 0xc6, 0x1f, 0xae, 0x30, 0x17, 0xf8, 0x85, 0xce, 0xb8, - 0xf8, 0x59, 0x09, 0x39, 0x94, 0x59, 0xea, 0x86, 0x22, 0x0e, 0x67, 0x48, 0x71, 0x49, 0x71, 0x49, - 0x71, 0x49, 0x71, 0x49, 0x71, 0x49, 0x71, 0x0d, 0xa2, 0xb8, 0x51, 0x10, 0xc7, 0x83, 0xaf, 0x15, - 0x91, 0x29, 0xf6, 0x7e, 0x9a, 0xdd, 0x12, 0x68, 0x5a, 0x3b, 0x88, 0x2e, 0x95, 0xb8, 0xfb, 0x37, - 0xe7, 0x5f, 0x32, 0xf3, 0xc4, 0xda, 0x6c, 0x0b, 0x80, 0xd8, 0x44, 0x26, 0x9c, 0xdf, 0x2d, 0x98, - 0x79, 0x1a, 0xf4, 0x47, 0x4a, 0xce, 0x19, 0xe8, 0x52, 0x3b, 0x0f, 0xe3, 0xa0, 0x3b, 0x2e, 0xa4, - 0xeb, 0xe1, 0x65, 0x38, 0xd9, 0xb7, 0xb0, 0x2e, 0xd6, 0xde, 0xdb, 0xdf, 0x04, 0xbb, 0x4e, 0xf0, - 0x8d, 0xae, 0xb3, 0x62, 0xd7, 0xd9, 0x7e, 0x47, 0xdf, 0x31, 0x93, 0x0f, 0xca, 0xb5, 0xea, 0x8c, - 0x7d, 0x31, 0xc1, 0x96, 0x48, 0x39, 0x0b, 0x17, 0x76, 0xdf, 0x60, 0x66, 0x97, 0xec, 0x3d, 0x1c, - 0x3f, 0xbd, 0x77, 0xf0, 0xfb, 0xa9, 0x6f, 0x09, 0xd7, 0x10, 0xca, 0x81, 0x3f, 0x2f, 0xf8, 0xe4, - 0x05, 0x9f, 0x39, 0x39, 0x9a, 0x84, 0x99, 0xf9, 0x15, 0x6c, 0xca, 0x79, 0xfc, 0x8e, 0x36, 0xbf, - 0x3e, 0x7d, 0xd6, 0xa3, 0xe9, 0xa3, 0x96, 0xf5, 0x52, 0xd3, 0xdf, 0x74, 0x6a, 0x8c, 0xfa, 0xc1, - 0x8d, 0x40, 0x85, 0xd1, 0x3d, 0xab, 0xa8, 0x2f, 0xa2, 0xbe, 0xe8, 0x27, 0x78, 0xa1, 0xbe, 0x68, - 0x39, 0x7c, 0xa9, 0x2f, 0x7a, 0x2e, 0x9d, 0xa1, 0xbe, 0x48, 0x1a, 0xc3, 0xa4, 0xbe, 0xe8, 0xc7, - 0xf1, 0x8f, 0xfa, 0x22, 0xf9, 0x89, 0x53, 0x62, 0x02, 0x15, 0x9c, 0x48, 0xa5, 0x26, 0x54, 0xf1, - 0x89, 0x55, 0x7c, 0x82, 0x95, 0x9d, 0x68, 0xe5, 0x34, 0x95, 0xd6, 0xa8, 0x2f, 0x5a, 0x6e, 0x10, - 0xf5, 0x45, 0x2f, 0x4e, 0xcc, 0x1c, 0xbe, 0xc4, 0x4d, 0xd4, 0x00, 0x09, 0x5b, 0x7a, 0xe2, 0x86, - 0x49, 0xe0, 0x30, 0x89, 0x1c, 0x23, 0xa1, 0xcb, 0x4a, 0xec, 0xc2, 0x12, 0x7c, 0xf6, 0x11, 0xca, - 0x1f, 0xbe, 0x1c, 0xa3, 0x6a, 0xd6, 0x1a, 0xae, 0x48, 0x4c, 0xb3, 0x6b, 0x54, 0x19, 0x99, 0xe0, - 0x08, 0x22, 0xae, 0x7e, 0x5a, 0x6a, 0x9d, 0xa4, 0x2b, 0xa1, 0x96, 0x1b, 0x29, 0xe8, 0xaa, 0xa8, - 0xa5, 0x46, 0x8a, 0xb8, 0x42, 0x4a, 0x7e, 0xae, 0xa2, 0xf4, 0xee, 0xe9, 0x19, 0x8a, 0xd2, 0x3b, - 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x6f, 0xb5, 0x11, 0x8f, - 0xd2, 0xbb, 0x97, 0x9b, 0x46, 0xe9, 0xdd, 0xcb, 0xab, 0x2d, 0xea, 0x87, 0x56, 0x64, 0x26, 0xa5, - 0x77, 0xa6, 0x67, 0x91, 0x87, 0x3d, 0x00, 0xba, 0xce, 0x8a, 0x5d, 0x87, 0xd2, 0x3b, 0x53, 0xf9, - 0xa0, 0x5c, 0xab, 0x28, 0xbd, 0x93, 0x6c, 0x09, 0xa5, 0x77, 0x3f, 0xb6, 0x0b, 0x5e, 0x11, 0x74, - 0x27, 0x87, 0xa0, 0xf0, 0x4e, 0x8e, 0x05, 0x14, 0xde, 0x19, 0xeb, 0x66, 0xa6, 0xcb, 0xee, 0xfa, - 0xc1, 0x0d, 0x45, 0x77, 0xba, 0x3e, 0x58, 0x15, 0xc7, 0x83, 0x58, 0x9c, 0xe8, 0xee, 0x3b, 0xab, - 0x28, 0xba, 0xa3, 0xe8, 0xee, 0x27, 0x78, 0xa1, 0xe8, 0x6e, 0x39, 0x7c, 0x29, 0xba, 0x7b, 0x2e, - 0x95, 0xa1, 0xe8, 0x4e, 0x1a, 0xbb, 0xa4, 0xe8, 0xee, 0xc7, 0xf1, 0x8f, 0xa2, 0x3b, 0xf9, 0x89, - 0x53, 0x62, 0x02, 0x15, 0x9c, 0x48, 0xa5, 0x26, 0x54, 0xf1, 0x89, 0x55, 0x7c, 0x82, 0x95, 0x9d, - 0x68, 0xe5, 0x34, 0x94, 0xd6, 0x28, 0xba, 0x5b, 0x6e, 0x10, 0x45, 0x77, 0x2f, 0x4e, 0xcc, 0x1c, - 0xbb, 0xc4, 0x4d, 0xd4, 0x00, 0x09, 0x5b, 0x7a, 0xe2, 0x86, 0x49, 0xe0, 0x30, 0x89, 0x1c, 0x23, - 0xa1, 0xcb, 0x4a, 0xec, 0xc2, 0x12, 0x7c, 0xf6, 0x11, 0x52, 0x74, 0xb7, 0xd2, 0x1a, 0x98, 0xa2, - 0x3b, 0x54, 0x47, 0xa0, 0xe8, 0xee, 0xf5, 0x46, 0x52, 0x74, 0x67, 0x4c, 0xae, 0xa2, 0xe8, 0xee, - 0xe9, 0x19, 0x8a, 0xa2, 0x3b, 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, - 0xea, 0x6f, 0xb5, 0x11, 0x8f, 0xa2, 0xbb, 0x97, 0x9b, 0x46, 0xd1, 0xdd, 0xcb, 0xab, 0x2d, 0x2a, - 0x87, 0x56, 0x64, 0x26, 0x45, 0x77, 0xa6, 0x67, 0x91, 0x87, 0x3d, 0x00, 0xba, 0xce, 0x8a, 0x5d, - 0x87, 0xa2, 0x3b, 0x53, 0xf9, 0xa0, 0x5c, 0xab, 0x28, 0xba, 0x93, 0x6c, 0x09, 0x45, 0x77, 0x3f, - 0xb6, 0x0b, 0x5c, 0x0d, 0x74, 0x5f, 0x0e, 0x41, 0xd1, 0x9d, 0x1c, 0x0b, 0x28, 0xba, 0x33, 0xd6, - 0xcd, 0xcc, 0x16, 0xdd, 0x39, 0xe3, 0x27, 0xa5, 0xe8, 0x4e, 0xd7, 0x07, 0xab, 0xbe, 0x0d, 0x55, - 0x94, 0x28, 0x79, 0xb2, 0xbb, 0xef, 0xed, 0xa2, 0xf0, 0x8e, 0xc2, 0xbb, 0x9f, 0x20, 0x86, 0xc2, - 0xbb, 0xe5, 0xf0, 0xa5, 0xf0, 0xee, 0xb9, 0x74, 0x86, 0xc2, 0x3b, 0x69, 0x0c, 0x93, 0xc2, 0xbb, - 0x1f, 0xc7, 0x3f, 0x0a, 0xef, 0xe4, 0x27, 0x4e, 0x89, 0x09, 0x54, 0x70, 0x22, 0x95, 0x9a, 0x50, - 0xc5, 0x27, 0x56, 0xf1, 0x09, 0x56, 0x76, 0xa2, 0x95, 0xd3, 0x54, 0x5a, 0xa3, 0xf0, 0x6e, 0xb9, - 0x41, 0x14, 0xde, 0xbd, 0x38, 0x31, 0x73, 0xf4, 0x12, 0x37, 0x51, 0x03, 0x24, 0x6c, 0xe9, 0x89, - 0x1b, 0x26, 0x81, 0xc3, 0x24, 0x72, 0x8c, 0x84, 0x2e, 0x2b, 0xb1, 0x0b, 0x4b, 0xf0, 0xd9, 0x47, - 0x48, 0xe1, 0xdd, 0x4a, 0x6b, 0x60, 0x0a, 0xef, 0x50, 0x1d, 0x81, 0xc2, 0xbb, 0xd7, 0x1b, 0x49, - 0xe1, 0x9d, 0x31, 0xb9, 0x8a, 0xc2, 0xbb, 0xa7, 0x67, 0x28, 0x0a, 0xef, 0x58, 0xfd, 0xb1, 0xfa, - 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, 0xab, 0xbf, 0xd5, 0x46, 0x3c, 0x0a, 0xef, 0x5e, 0x6e, - 0x1a, 0x85, 0x77, 0x2f, 0xaf, 0xb6, 0xa8, 0x1e, 0x5a, 0x91, 0x99, 0x14, 0xde, 0x99, 0x9e, 0x45, - 0x1e, 0xf6, 0x00, 0xe8, 0x3a, 0x2b, 0x76, 0x1d, 0x0a, 0xef, 0x4c, 0xe5, 0x83, 0x72, 0xad, 0xa2, - 0xf0, 0x4e, 0xb2, 0x25, 0x14, 0xde, 0xfd, 0xd8, 0x2e, 0x74, 0x45, 0xd0, 0x77, 0x82, 0x08, 0x4a, - 0xef, 0xe4, 0x58, 0x40, 0xe9, 0x9d, 0xc1, 0x8e, 0x66, 0xb8, 0xf8, 0x6e, 0xfa, 0xac, 0x94, 0xdf, - 0xe9, 0xfa, 0x68, 0x87, 0x32, 0x0e, 0x18, 0xb2, 0xd6, 0x9a, 0x88, 0x36, 0xb8, 0x90, 0x5a, 0x8c, - 0x72, 0xbb, 0x1f, 0x21, 0x85, 0x72, 0xbb, 0xe5, 0xf0, 0xa5, 0xdc, 0xee, 0xb9, 0x14, 0x86, 0x72, - 0x3b, 0x69, 0xac, 0x52, 0xcc, 0x31, 0x50, 0x16, 0x71, 0xfa, 0x2a, 0xb8, 0x88, 0xd5, 0x85, 0x84, - 0x88, 0x33, 0x1f, 0xed, 0xdb, 0x11, 0x60, 0x4b, 0x6b, 0x46, 0xb4, 0xdf, 0xbe, 0x9d, 0x16, 0x85, - 0x33, 0x1e, 0x4b, 0x36, 0xa7, 0x83, 0xa8, 0x4b, 0x50, 0x86, 0x8a, 0x52, 0x84, 0x72, 0x75, 0x02, - 0xb9, 0x1c, 0xb9, 0x1c, 0xb9, 0x1c, 0xb9, 0x9c, 0xc6, 0x8f, 0x44, 0xcc, 0xea, 0x84, 0xa1, 0xac, - 0x79, 0x4a, 0x59, 0x6d, 0x0f, 0x61, 0xed, 0x0f, 0x71, 0xa9, 0x53, 0x62, 0x0a, 0x15, 0x9c, 0x4a, - 0xa5, 0xa6, 0x54, 0xf1, 0xa9, 0x55, 0x7c, 0x8a, 0x95, 0x9d, 0x6a, 0x65, 0xa4, 0x5c, 0x21, 0xa9, - 0x57, 0x5e, 0x3b, 0x65, 0x21, 0x62, 0x4d, 0x8e, 0xc6, 0xc4, 0x39, 0x60, 0x56, 0x37, 0xfe, 0x2e, - 0xc8, 0xa6, 0x56, 0x90, 0xa6, 0x2a, 0x8e, 0xc4, 0x8d, 0xcf, 0x5a, 0xff, 0xfb, 0xf5, 0xd7, 0xcf, - 0xeb, 0x95, 0xdd, 0xb3, 0x7f, 0x3f, 0x6f, 0x54, 0x76, 0xcf, 0xa6, 0xdf, 0x6e, 0x4c, 0x7e, 0x99, - 0x7e, 0xbf, 0xf9, 0x79, 0xbd, 0x52, 0x9b, 0x7f, 0xbf, 0xf5, 0x79, 0xbd, 0xb2, 0x75, 0xf6, 0xe6, - 0xaf, 0xbf, 0xde, 0xbe, 0xf9, 0xe7, 0xdd, 0xed, 0xf3, 0xff, 0x60, 0x75, 0xf6, 0x97, 0xbd, 0xf9, - 0xf7, 0xd7, 0xcf, 0x1b, 0x95, 0xcd, 0xb3, 0xf9, 0xbf, 0xbc, 0xfb, 0xbc, 0x5e, 0xd9, 0x3c, 0x7b, - 0xf3, 0xe6, 0xff, 0xe4, 0xc4, 0xa0, 0x33, 0x0e, 0x48, 0x48, 0x89, 0x82, 0xd6, 0x68, 0x58, 0xe9, - 0x0d, 0xbe, 0x46, 0xf2, 0xc8, 0xff, 0xdc, 0x30, 0xb2, 0x7f, 0xb2, 0x7f, 0xb2, 0x7f, 0xb2, 0x7f, - 0xb2, 0x7f, 0xb2, 0xff, 0xd2, 0xb0, 0xff, 0xf3, 0xc1, 0xa0, 0xaf, 0x82, 0x48, 0x22, 0xf3, 0xdf, - 0x20, 0x79, 0x13, 0x60, 0x01, 0xa7, 0x5b, 0xbf, 0xb7, 0x07, 0x7c, 0xba, 0x55, 0xc0, 0xdc, 0xb8, - 0xc6, 0xd9, 0x80, 0x5f, 0x4a, 0xe4, 0x41, 0x63, 0x86, 0xa5, 0x9d, 0x5d, 0xc9, 0x58, 0xa1, 0x24, - 0x6a, 0x55, 0x92, 0xa8, 0x95, 0x48, 0x32, 0x56, 0x1f, 0xe9, 0xf2, 0x10, 0x21, 0xb9, 0x05, 0x3c, - 0xa7, 0x58, 0x5a, 0x27, 0xae, 0x72, 0x92, 0x46, 0xe8, 0x49, 0x91, 0xc5, 0x27, 0xa8, 0x62, 0xff, - 0xc6, 0x82, 0x1d, 0x5d, 0xb7, 0x83, 0xa3, 0x3a, 0x76, 0xb1, 0xe0, 0x2f, 0x0e, 0x82, 0xc5, 0xfc, - 0x4d, 0x05, 0x81, 0x5c, 0x17, 0xb8, 0xc1, 0x40, 0x5d, 0x60, 0x76, 0xca, 0x21, 0x1b, 0x15, 0xe3, - 0x89, 0xf9, 0xfb, 0x45, 0x01, 0x3e, 0x31, 0x3d, 0xc8, 0x4e, 0xe2, 0x7e, 0x81, 0x77, 0x02, 0x7c, - 0x7f, 0x88, 0x3e, 0xfd, 0xbb, 0x0b, 0xf2, 0xfe, 0x62, 0xe7, 0xaa, 0x0b, 0x3f, 0x06, 0xd2, 0x71, - 0xcc, 0xa3, 0xf1, 0x18, 0x47, 0xd7, 0x31, 0x8d, 0xf6, 0x63, 0x18, 0xed, 0xc7, 0x2c, 0x7a, 0x8f, - 0x51, 0xcc, 0x62, 0x24, 0x45, 0xcf, 0x19, 0xdf, 0x85, 0xdd, 0xe2, 0x1d, 0x67, 0x21, 0xf2, 0x17, - 0xed, 0x38, 0x7a, 0x84, 0x35, 0xda, 0xe6, 0x01, 0x74, 0x9e, 0xfb, 0x0b, 0x38, 0xdf, 0xd7, 0x7d, - 0x8e, 0x2f, 0xe6, 0xbc, 0x5e, 0xcc, 0xb9, 0xbc, 0x8c, 0xf3, 0x77, 0xb3, 0xfb, 0x37, 0xba, 0x84, - 0x2b, 0xd6, 0xbc, 0x3c, 0xad, 0x44, 0xa3, 0xab, 0x73, 0xa5, 0xef, 0xf4, 0xe2, 0x2e, 0xcd, 0x3c, - 0x30, 0x48, 0xd7, 0x99, 0x92, 0xd6, 0xe1, 0x34, 0xed, 0xc3, 0x68, 0x12, 0x86, 0xcf, 0x04, 0x0d, - 0x9b, 0x49, 0x19, 0x2e, 0x13, 0x37, 0x4c, 0x26, 0x6e, 0x78, 0x4c, 0xd6, 0xb0, 0x58, 0xb9, 0xce, - 0xe1, 0xb5, 0x0f, 0x7f, 0x09, 0xda, 0xa0, 0x21, 0x61, 0x73, 0xc6, 0xe2, 0xc6, 0x8c, 0x87, 0xc9, - 0xb5, 0x2c, 0x67, 0x7f, 0x1a, 0xca, 0x18, 0xbd, 0x2b, 0x32, 0x44, 0xac, 0xc6, 0xd0, 0xbc, 0x12, - 0x83, 0x24, 0x8a, 0x24, 0x8a, 0x24, 0x8a, 0x24, 0x0a, 0x8b, 0x44, 0xe9, 0x5e, 0x61, 0x21, 0xe4, - 0xb2, 0x71, 0x51, 0x97, 0x8b, 0x73, 0x4f, 0xa7, 0xbc, 0xc4, 0x26, 0x30, 0xc1, 0x49, 0x4b, 0x74, - 0x62, 0x13, 0x9e, 0xd8, 0xc4, 0x27, 0x33, 0x01, 0xea, 0x4d, 0x84, 0x9a, 0x13, 0xa2, 0x9c, 0xee, - 0xc2, 0x42, 0xc4, 0x51, 0xd1, 0xe8, 0x4a, 0xc5, 0xd3, 0xc1, 0x34, 0x41, 0xbb, 0x3a, 0x05, 0x5c, - 0xc3, 0x2d, 0xe4, 0xda, 0x6d, 0xdd, 0x90, 0x15, 0x75, 0xad, 0xb6, 0xc8, 0x6b, 0xb4, 0x45, 0x5e, - 0x9b, 0x2d, 0xeb, 0x9a, 0xec, 0x72, 0x6e, 0x98, 0x95, 0x72, 0x2e, 0xb9, 0x10, 0xf4, 0x65, 0x9c, - 0x4f, 0xb2, 0x32, 0x61, 0x65, 0xc2, 0xca, 0x84, 0x95, 0x09, 0x2b, 0x13, 0x56, 0x26, 0x8f, 0x44, - 0x9c, 0x51, 0x18, 0xa5, 0xef, 0x36, 0x05, 0x15, 0x25, 0x12, 0xee, 0x0f, 0x90, 0x75, 0x23, 0xb4, - 0xa0, 0x15, 0x29, 0x12, 0x6f, 0x7c, 0x16, 0x7a, 0x4d, 0x6d, 0x76, 0x2d, 0xad, 0x34, 0xbb, 0x04, - 0xdf, 0x42, 0x2b, 0xe8, 0xc6, 0x66, 0x91, 0x37, 0x34, 0x4b, 0x87, 0x7a, 0x6d, 0x73, 0xb7, 0xb6, - 0xbb, 0xbd, 0xb3, 0xb9, 0xbb, 0x45, 0xcc, 0x63, 0x10, 0x22, 0x39, 0x56, 0x9c, 0xb1, 0x75, 0x52, - 0x7c, 0xeb, 0x24, 0x93, 0x08, 0x5f, 0x04, 0x5d, 0x55, 0x09, 0x7a, 0xbd, 0x58, 0x25, 0x82, 0x4e, - 0x74, 0x97, 0xd8, 0xc7, 0x46, 0x0a, 0x1b, 0x29, 0x6c, 0xa4, 0xb0, 0x91, 0xc2, 0x46, 0x0a, 0x1b, - 0x29, 0x62, 0x22, 0xce, 0x24, 0x57, 0xc9, 0xc8, 0x50, 0x6b, 0xc2, 0x2e, 0x0b, 0x10, 0x77, 0x49, - 0x40, 0xb1, 0x97, 0x03, 0x08, 0x58, 0xfe, 0x4f, 0x72, 0xad, 0x89, 0x5c, 0x47, 0x2a, 0xbc, 0xfc, - 0x72, 0x3e, 0x88, 0x85, 0x72, 0xeb, 0x05, 0xf3, 0x48, 0xad, 0x49, 0xad, 0x49, 0xad, 0x49, 0xad, - 0x49, 0xad, 0x49, 0xad, 0x49, 0xad, 0x49, 0xad, 0x49, 0xad, 0x49, 0xad, 0xe5, 0x51, 0xeb, 0x61, - 0x12, 0x89, 0x9b, 0xf6, 0xbb, 0x67, 0x13, 0x49, 0x34, 0x49, 0x34, 0x49, 0x34, 0x49, 0x34, 0x49, - 0x34, 0x49, 0xb4, 0x98, 0x88, 0x33, 0x0a, 0xa3, 0xf4, 0x77, 0x41, 0xec, 0x79, 0x8b, 0x73, 0x7e, - 0x0f, 0xbe, 0x38, 0xe7, 0x87, 0xc0, 0x6b, 0x16, 0xcc, 0xe2, 0x9c, 0x1f, 0x5a, 0x74, 0xfe, 0x1e, - 0xea, 0x9c, 0xf3, 0x7b, 0x36, 0xd4, 0x37, 0xb7, 0x38, 0xe0, 0x07, 0x42, 0x84, 0xe4, 0x58, 0xc1, - 0x46, 0x49, 0xf1, 0x6e, 0x91, 0xc4, 0xfd, 0xcb, 0xca, 0xf5, 0xcc, 0x6b, 0x85, 0x34, 0x4a, 0xee, - 0xd9, 0xc4, 0x46, 0x09, 0x1b, 0x25, 0x6c, 0x94, 0xb0, 0x51, 0xc2, 0x46, 0x09, 0x1b, 0x25, 0xa2, - 0x1a, 0x25, 0x54, 0x44, 0xb2, 0x53, 0xc2, 0x4e, 0x09, 0x3b, 0x25, 0xec, 0x94, 0xb0, 0x53, 0xf2, - 0x2a, 0xa8, 0x53, 0x11, 0xc9, 0x86, 0x09, 0x68, 0xc3, 0x84, 0x1b, 0xd1, 0xbe, 0x4f, 0xf3, 0xdc, - 0x88, 0xf6, 0x24, 0xa3, 0xb8, 0x11, 0x4d, 0xb7, 0xfb, 0x58, 0xc9, 0x4d, 0x92, 0xaa, 0xab, 0x4a, - 0xd8, 0x13, 0xd4, 0xf4, 0xcb, 0x4c, 0x62, 0xcf, 0x8f, 0x3d, 0xbf, 0x9f, 0x80, 0x85, 0x3d, 0xbf, - 0xe5, 0xf0, 0x65, 0xcf, 0xef, 0x99, 0x86, 0xb1, 0xe7, 0x27, 0x8e, 0xda, 0xc9, 0xeb, 0xf9, 0x49, - 0x49, 0x4f, 0x6b, 0x94, 0x17, 0xfc, 0xc4, 0xa0, 0xff, 0x7d, 0x5e, 0xaf, 0xec, 0xda, 0x95, 0xc3, - 0xa0, 0x72, 0x71, 0xf6, 0x4f, 0xed, 0xf6, 0xaf, 0xbf, 0xde, 0xfe, 0xe4, 0x07, 0x94, 0x08, 0xf0, - 0x3a, 0x96, 0x62, 0x12, 0x4d, 0x14, 0x0d, 0xd2, 0xe9, 0x8a, 0x77, 0xad, 0xb7, 0xb2, 0x24, 0xdd, - 0x2f, 0xea, 0x2a, 0x18, 0xce, 0x2e, 0x74, 0xab, 0x0e, 0x86, 0x2a, 0xea, 0x4e, 0xd8, 0x66, 0x25, - 0x52, 0xe9, 0xd7, 0x41, 0xfc, 0x77, 0x65, 0xbe, 0x98, 0xb8, 0xfa, 0xf0, 0x07, 0xc9, 0xc2, 0x4f, - 0xaa, 0xc3, 0x78, 0x90, 0x0e, 0xba, 0x83, 0x7e, 0x92, 0x7d, 0x57, 0x1d, 0xa7, 0xd0, 0x6a, 0x5f, - 0x5d, 0xab, 0xfe, 0xec, 0x97, 0x6a, 0x3f, 0x8c, 0xfe, 0xae, 0x4c, 0xee, 0x0f, 0xab, 0xf4, 0x82, - 0x34, 0x38, 0x0f, 0x12, 0x55, 0xed, 0x27, 0xc3, 0x6a, 0xda, 0xbf, 0x4e, 0xc6, 0xff, 0xa8, 0x66, - 0x37, 0x82, 0x27, 0x77, 0xdf, 0x4e, 0x2f, 0x9a, 0x2b, 0xcd, 0xc5, 0x72, 0x46, 0x5f, 0x4a, 0xfc, - 0x51, 0xdd, 0xe8, 0xdf, 0x78, 0xad, 0xb7, 0x65, 0x24, 0xa2, 0x45, 0x24, 0xa2, 0x25, 0xa4, 0xb7, - 0x05, 0x54, 0x34, 0xf4, 0x35, 0x87, 0x7d, 0x98, 0x70, 0x6f, 0x69, 0xb9, 0x59, 0x33, 0x1e, 0x75, - 0xd3, 0x68, 0x46, 0xf2, 0x9b, 0xd3, 0x87, 0x75, 0x67, 0xcf, 0xea, 0xb7, 0x66, 0x4f, 0xe8, 0xbb, - 0x49, 0x98, 0xf8, 0x8d, 0xf1, 0xa3, 0xf9, 0x8d, 0x64, 0xe8, 0x7b, 0xfd, 0x6b, 0xdf, 0x1d, 0x5e, - 0xd7, 0x3a, 0x63, 0xab, 0x7f, 0x31, 0x33, 0x49, 0x14, 0xf3, 0x37, 0x15, 0xe4, 0x8b, 0xba, 0x7c, - 0x50, 0xb8, 0xef, 0x15, 0x83, 0xdd, 0xfc, 0x91, 0x54, 0x00, 0x8a, 0xa6, 0x2b, 0x06, 0x52, 0x55, - 0x89, 0x07, 0xa3, 0x54, 0xc5, 0x45, 0xb6, 0xce, 0xbf, 0xdf, 0x72, 0xf0, 0x9d, 0x09, 0x05, 0x79, - 0x4f, 0xb1, 0x77, 0xef, 0x16, 0xde, 0xfa, 0xd6, 0xd1, 0xe2, 0xd6, 0xd8, 0xca, 0xd6, 0xd5, 0xb2, - 0xd6, 0xde, 0x9a, 0xd6, 0xde, 0x82, 0xd6, 0xdb, 0x6a, 0x36, 0x2b, 0xa3, 0x17, 0x7d, 0xb7, 0xad, - 0xa6, 0x4b, 0xd8, 0xb5, 0x5e, 0xbe, 0xae, 0xe9, 0xd2, 0x75, 0x6d, 0x67, 0x9f, 0x3a, 0xcf, 0x3a, - 0x05, 0x9c, 0x6d, 0xea, 0x3e, 0xcb, 0x14, 0x73, 0x76, 0x29, 0xe6, 0xac, 0x52, 0xc6, 0xd9, 0xa4, - 0xd9, 0x9d, 0x49, 0x5d, 0x97, 0xa4, 0x5b, 0xc5, 0x57, 0x12, 0x4b, 0x63, 0x4e, 0xd1, 0x15, 0xc5, - 0xb2, 0x44, 0xa3, 0x69, 0xd6, 0x45, 0xfb, 0xb0, 0x8d, 0x84, 0x21, 0x1b, 0x41, 0xc3, 0x35, 0x52, - 0x86, 0x6a, 0xc4, 0x0d, 0xd3, 0x88, 0x1b, 0xa2, 0x91, 0x35, 0x3c, 0x53, 0xae, 0xe3, 0x64, 0xed, - 0x43, 0x32, 0xd2, 0xd6, 0x6f, 0x4a, 0x98, 0x8b, 0x11, 0x33, 0x0f, 0x53, 0x9a, 0x35, 0x9b, 0x67, - 0xa5, 0x72, 0x7a, 0x11, 0xa2, 0x07, 0x51, 0x62, 0x07, 0x51, 0x22, 0x07, 0x19, 0xe2, 0x06, 0x0e, - 0xaf, 0xac, 0x98, 0xe4, 0xf0, 0x04, 0xff, 0xf1, 0x53, 0xc4, 0xfb, 0x87, 0x51, 0x3a, 0xa6, 0xb5, - 0x78, 0x1c, 0x0e, 0x05, 0x68, 0x0c, 0x20, 0x17, 0x79, 0x14, 0xf7, 0xba, 0xf9, 0x13, 0x4f, 0xb5, - 0x27, 0x46, 0xbb, 0x3d, 0x9e, 0xe4, 0x3f, 0xfd, 0x9d, 0x87, 0xc3, 0xeb, 0xed, 0xc5, 0x3b, 0x23, - 0x55, 0xa2, 0xe5, 0x40, 0xff, 0x71, 0x4b, 0x78, 0xae, 0x8f, 0xda, 0x55, 0xe3, 0xb9, 0x3e, 0xcf, - 0xf5, 0x79, 0xae, 0xff, 0x8a, 0x57, 0xc9, 0x73, 0x7d, 0xe3, 0x02, 0xbf, 0xb6, 0x04, 0xa0, 0x33, - 0x11, 0x08, 0x48, 0x08, 0xba, 0x13, 0x83, 0x98, 0x04, 0x21, 0x26, 0x51, 0xc8, 0x48, 0x18, 0xe5, - 0x68, 0xda, 0x68, 0x3b, 0xd7, 0xd7, 0x7d, 0x91, 0x67, 0x16, 0x71, 0xf4, 0x9e, 0xc8, 0xf0, 0x4c, - 0x9f, 0x67, 0xfa, 0x82, 0x92, 0x90, 0xb8, 0x64, 0x24, 0x2e, 0x29, 0xc9, 0x4a, 0x4e, 0x7a, 0x92, - 0x94, 0xa6, 0x64, 0x95, 0xbd, 0x7a, 0x51, 0x67, 0xfa, 0xdb, 0x3c, 0xd3, 0x9f, 0x45, 0x72, 0x61, - 0x67, 0xfa, 0x41, 0xe5, 0xc2, 0xae, 0x1c, 0x9e, 0xfd, 0xb3, 0xf1, 0x5b, 0xed, 0x76, 0xef, 0xcd, - 0x3f, 0x3b, 0xb7, 0x0f, 0x7f, 0xf8, 0xef, 0x63, 0xbf, 0x6d, 0xe3, 0xb7, 0x9d, 0xdb, 0xbd, 0x25, - 0xff, 0x65, 0xfb, 0x76, 0xef, 0x89, 0xff, 0x8f, 0xad, 0xdb, 0x5f, 0x17, 0x7e, 0xeb, 0xf8, 0xe7, - 0x9b, 0xcb, 0xfe, 0x40, 0x6d, 0xc9, 0x1f, 0x78, 0xb7, 0xec, 0x0f, 0xbc, 0x5b, 0xf2, 0x07, 0x96, - 0x9a, 0xb4, 0xb9, 0xe4, 0x0f, 0x6c, 0xdd, 0xfe, 0xbb, 0xf0, 0xfb, 0x7f, 0x7d, 0xfc, 0xb7, 0x6e, - 0xdf, 0xbe, 0xf9, 0x77, 0xd9, 0x7f, 0xdb, 0xb9, 0xfd, 0x77, 0xef, 0x0d, 0x27, 0x1c, 0x8a, 0xc2, - 0x38, 0x27, 0x1c, 0x16, 0x8d, 0xe1, 0x84, 0x83, 0x76, 0x56, 0xc0, 0x09, 0x87, 0x3c, 0xff, 0x7e, - 0xa1, 0x07, 0xc3, 0x8f, 0x9e, 0xce, 0x71, 0xd0, 0x01, 0x06, 0xdf, 0x1c, 0x74, 0x78, 0x02, 0x9e, - 0x61, 0xe6, 0x1d, 0xb6, 0xdd, 0xb9, 0xf1, 0x76, 0x66, 0x3b, 0xe7, 0x1e, 0x9e, 0xfc, 0xee, 0x27, - 0x9f, 0x7f, 0xac, 0x82, 0xee, 0x97, 0xe0, 0x3c, 0xec, 0x87, 0xe9, 0x8d, 0xa6, 0x81, 0x87, 0xef, - 0x4c, 0xe0, 0xa4, 0x03, 0x6a, 0xaf, 0x91, 0x93, 0x0e, 0x9c, 0x74, 0xe0, 0xa4, 0xc3, 0x2b, 0x5e, - 0x65, 0xe1, 0x93, 0x0e, 0x53, 0xc8, 0xaa, 0x44, 0xdf, 0xb0, 0x43, 0x66, 0x01, 0xe7, 0x1d, 0x4c, - 0x4b, 0x07, 0x02, 0xd2, 0x82, 0xee, 0xf4, 0x20, 0x26, 0x4d, 0x88, 0x49, 0x17, 0x32, 0xd2, 0x46, - 0x39, 0x5a, 0x38, 0xda, 0xe6, 0x1d, 0x86, 0x7a, 0xcf, 0xb9, 0x1f, 0x24, 0x17, 0xcd, 0xd3, 0x0e, - 0x1b, 0x9c, 0x76, 0xe0, 0xb4, 0x03, 0xa7, 0x1d, 0xe4, 0xa7, 0x24, 0x59, 0xa9, 0x49, 0x4f, 0x8a, - 0xd2, 0x94, 0xaa, 0xb4, 0xa7, 0x2c, 0x29, 0xa9, 0x4b, 0x56, 0x0a, 0x7b, 0x98, 0xca, 0x78, 0x03, - 0x96, 0x9c, 0xd4, 0x26, 0x30, 0xc5, 0x49, 0x4b, 0x75, 0x62, 0x53, 0x9e, 0xd8, 0xd4, 0x27, 0x33, - 0x05, 0xea, 0x4d, 0x85, 0x9a, 0x53, 0x62, 0xf6, 0x91, 0xc8, 0xbb, 0x01, 0xab, 0xaf, 0x82, 0x8b, - 0x58, 0x5d, 0x48, 0xba, 0xff, 0x6a, 0x47, 0xc6, 0xfd, 0x57, 0x93, 0x33, 0xde, 0xb7, 0x6f, 0xa7, - 0x73, 0x01, 0xd5, 0x59, 0xcc, 0xe1, 0xad, 0xa6, 0x85, 0x7f, 0x14, 0x7a, 0x94, 0x7c, 0x4b, 0x1d, - 0x46, 0x87, 0xb2, 0x4f, 0x58, 0x5b, 0x82, 0x5c, 0x8e, 0x5c, 0x8e, 0x5c, 0x8e, 0x5c, 0xae, 0xdc, - 0x5c, 0x4e, 0x77, 0x9b, 0x23, 0x33, 0xe4, 0x4a, 0xa5, 0x71, 0xd8, 0x95, 0xe3, 0xdd, 0xf3, 0x00, - 0x38, 0xb3, 0x4b, 0x88, 0x07, 0xc9, 0x68, 0x7f, 0x88, 0x4b, 0x9d, 0x12, 0x53, 0xa8, 0xe0, 0x54, - 0x2a, 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, 0x53, 0xac, 0xec, 0x54, 0x2b, 0x23, 0xe5, 0x0a, 0x49, - 0xbd, 0xf2, 0xda, 0x29, 0x0b, 0x11, 0xeb, 0x6b, 0xd8, 0x53, 0x15, 0x51, 0x09, 0xf0, 0x7e, 0x12, - 0xdc, 0x11, 0x64, 0x52, 0x3b, 0x88, 0x2e, 0x95, 0x98, 0x7b, 0xc6, 0xe7, 0x5f, 0xb2, 0xa2, 0xfa, - 0xda, 0x4c, 0xbb, 0x26, 0x2e, 0xdd, 0x08, 0x65, 0x57, 0x0b, 0xe6, 0x9d, 0x06, 0xfd, 0x91, 0xd2, - 0xdf, 0x30, 0x59, 0x6a, 0xdf, 0x61, 0x1c, 0x74, 0xd3, 0x70, 0x10, 0xd5, 0xc3, 0xcb, 0x70, 0xa2, - 0x06, 0x5c, 0x17, 0x67, 0xe7, 0xed, 0x6f, 0x02, 0x5d, 0x22, 0xf8, 0x46, 0x97, 0x78, 0xad, 0x4b, - 0x6c, 0xef, 0xec, 0xec, 0x6c, 0x6e, 0x6c, 0xd1, 0x33, 0xb0, 0x39, 0x99, 0x3c, 0x6b, 0xce, 0x7e, - 0xe1, 0xfb, 0x10, 0x12, 0x39, 0xa5, 0x8c, 0xc4, 0x2c, 0xf0, 0x64, 0x59, 0xed, 0x5f, 0xf6, 0x88, - 0x7e, 0x6c, 0x10, 0x7b, 0x44, 0xcf, 0x32, 0x8d, 0x3d, 0xa2, 0x17, 0x1a, 0xc8, 0x1e, 0x11, 0x3e, - 0x03, 0x60, 0x8f, 0xe8, 0x67, 0x11, 0x6b, 0x22, 0x9b, 0x16, 0xe7, 0x80, 0x12, 0x56, 0x73, 0x2d, - 0x26, 0x1e, 0x21, 0xab, 0xba, 0x16, 0x0c, 0xe3, 0xea, 0x2e, 0x6d, 0xab, 0xbb, 0xaa, 0xbf, 0x6e, - 0x6c, 0x7e, 0x5e, 0xaf, 0xfc, 0x3e, 0xbd, 0xc6, 0x6c, 0xe3, 0x6c, 0xe1, 0x76, 0xb3, 0xc9, 0x3f, - 0x75, 0x6e, 0xf8, 0x62, 0x41, 0x24, 0xb7, 0x20, 0x4a, 0x2a, 0xe7, 0x61, 0x2a, 0xaf, 0x1e, 0x9a, - 0x9a, 0xc5, 0x72, 0x88, 0xe5, 0x10, 0xcb, 0x21, 0x96, 0x43, 0x2c, 0x87, 0x58, 0x0e, 0x95, 0xa6, - 0x1c, 0x3a, 0x1f, 0x0c, 0xfa, 0x2a, 0x88, 0x24, 0x96, 0x42, 0x1b, 0x24, 0x6e, 0x62, 0x88, 0xdb, - 0x68, 0x58, 0xe9, 0x0d, 0xbe, 0x46, 0xf2, 0xa8, 0xdb, 0xdc, 0x30, 0x92, 0x37, 0x92, 0x37, 0x92, - 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0xb7, 0xbb, 0xcf, 0xe4, - 0x9b, 0xcc, 0xae, 0xdb, 0x37, 0x76, 0xdd, 0x48, 0xdc, 0x48, 0xdc, 0x48, 0xdc, 0x48, 0xdc, 0x48, - 0xdc, 0x48, 0xdc, 0x48, 0xdc, 0x64, 0x11, 0xb7, 0x52, 0xcb, 0xac, 0x35, 0xdf, 0x61, 0xb3, 0x60, - 0x8f, 0xd8, 0x3b, 0x40, 0xee, 0x5f, 0xc0, 0x50, 0x9d, 0xaf, 0xe4, 0x9e, 0x7d, 0xa3, 0xe3, 0x72, - 0x1b, 0x39, 0x30, 0xd6, 0xba, 0xbd, 0x66, 0x74, 0x3e, 0xfe, 0x98, 0x04, 0xed, 0xaf, 0x99, 0x19, - 0xc4, 0x0d, 0x36, 0xdc, 0x60, 0x03, 0x53, 0xcd, 0x70, 0x83, 0x0d, 0x7a, 0xd5, 0xc2, 0x0d, 0x36, - 0xf2, 0xa8, 0x95, 0x98, 0x0d, 0x36, 0xd3, 0x9c, 0x24, 0x70, 0x1a, 0x6f, 0x6a, 0x97, 0xac, 0xc6, - 0xe0, 0x06, 0x1b, 0x83, 0xe2, 0x53, 0xa8, 0xe0, 0x54, 0x2a, 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, - 0x53, 0xac, 0xec, 0x54, 0x2b, 0xa7, 0x9f, 0xb2, 0x26, 0xa8, 0x31, 0x28, 0x25, 0x05, 0x67, 0x06, - 0x5d, 0xf4, 0x83, 0xcb, 0x44, 0x5e, 0x50, 0x98, 0xc7, 0xd1, 0xa9, 0x79, 0xc2, 0xfc, 0x4d, 0x56, - 0x62, 0x16, 0x9b, 0xa0, 0x25, 0x27, 0x6a, 0x80, 0x84, 0x2d, 0x3d, 0x71, 0xc3, 0x24, 0x70, 0x98, - 0x44, 0x8e, 0x91, 0xd0, 0x65, 0x25, 0x76, 0x61, 0x09, 0x5e, 0x6c, 0xa2, 0xbf, 0xab, 0xbd, 0x45, - 0xac, 0x57, 0xff, 0x79, 0x29, 0x2e, 0x60, 0xed, 0x3a, 0x18, 0x01, 0x10, 0x4f, 0x04, 0x10, 0x08, - 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, - 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x84, 0x77, 0x12, 0xa0, 0x3a, 0x0b, 0xcb, 0x88, 0xc6, 0xba, - 0x70, 0x33, 0xa5, 0x13, 0x0e, 0x24, 0xe2, 0x01, 0x48, 0x40, 0xd0, 0x88, 0x08, 0x2c, 0x21, 0x81, - 0x25, 0x26, 0x98, 0x04, 0x45, 0x36, 0x51, 0x11, 0x4e, 0x58, 0xb2, 0x8f, 0x5c, 0xdc, 0x2c, 0xf4, - 0x4f, 0x23, 0xae, 0x8a, 0x46, 0x57, 0x2a, 0x9e, 0xce, 0xa0, 0x02, 0x44, 0xdd, 0x79, 0x37, 0xa2, - 0x06, 0x60, 0xab, 0x13, 0x8d, 0xae, 0xc6, 0x60, 0xa0, 0x4b, 0xbd, 0xe6, 0x2d, 0x36, 0xc2, 0x24, - 0xb5, 0xd3, 0x34, 0xc6, 0x70, 0xab, 0xa3, 0x30, 0x72, 0xfa, 0x6a, 0x1c, 0xf5, 0xc7, 0xe5, 0x41, - 0x34, 0xea, 0xf7, 0x01, 0x80, 0x7a, 0x14, 0x7c, 0xc3, 0x33, 0xfa, 0x38, 0xee, 0xa9, 0x58, 0xf5, - 0xf6, 0x6f, 0x66, 0x26, 0xff, 0xc2, 0xac, 0x6a, 0x98, 0xfb, 0x5b, 0x29, 0x42, 0x36, 0xcd, 0x32, - 0xe9, 0xc4, 0x5a, 0xd6, 0xd8, 0xac, 0xb1, 0x59, 0x63, 0xb3, 0xc6, 0x66, 0x8d, 0xcd, 0x1a, 0x9b, - 0x35, 0x36, 0x6b, 0xec, 0xe9, 0x32, 0xf4, 0x9e, 0x8a, 0xd2, 0x30, 0xbd, 0x89, 0xd5, 0x05, 0x52, - 0x8d, 0xbd, 0x05, 0x60, 0xab, 0x3b, 0x7b, 0xb5, 0xfb, 0x41, 0x02, 0x94, 0x27, 0xe6, 0xc0, 0x70, - 0x3b, 0x6e, 0xc7, 0xef, 0x9c, 0xec, 0x7b, 0x8d, 0x53, 0xdf, 0xfb, 0xb3, 0xe5, 0xa0, 0xa4, 0x8b, - 0xc9, 0xfd, 0x5a, 0x89, 0xb8, 0x8d, 0xf5, 0x3f, 0xfa, 0xfa, 0x07, 0xc6, 0xd2, 0x07, 0x08, 0xf1, - 0xdb, 0x8e, 0x7d, 0xf0, 0xc1, 0xde, 0x77, 0x1b, 0xae, 0xf7, 0xe7, 0x0c, 0x2c, 0x1d, 0x24, 0xb4, - 0x20, 0xa3, 0x06, 0x13, 0x3d, 0x3f, 0x45, 0x91, 0x7d, 0x6a, 0xbb, 0x0d, 0x7b, 0xbf, 0xe1, 0xf8, - 0xfb, 0x76, 0xb3, 0xfe, 0x1f, 0xb7, 0xee, 0x7d, 0xb0, 0xe0, 0x9e, 0xf0, 0xf6, 0x37, 0xc2, 0x48, - 0x2f, 0x8c, 0xda, 0x4e, 0xc7, 0xad, 0x9f, 0xd8, 0x0d, 0xa2, 0x88, 0x28, 0x7a, 0x45, 0x30, 0xaa, - 0xff, 0xe1, 0x77, 0xdc, 0x3a, 0xa1, 0x43, 0xe8, 0x3c, 0x17, 0x3a, 0x0d, 0xb7, 0xf9, 0xd1, 0x6f, - 0xb5, 0x8f, 0x3d, 0xe7, 0xc0, 0x73, 0x8f, 0x9b, 0x53, 0x56, 0x44, 0x1c, 0x11, 0x47, 0x2f, 0xc1, - 0x51, 0xdd, 0x69, 0xd8, 0x7f, 0x12, 0x3d, 0x44, 0xcf, 0xcb, 0xd1, 0xe3, 0x9f, 0xda, 0x6d, 0xd7, - 0x1e, 0x87, 0x22, 0xe2, 0x88, 0x38, 0x7a, 0x2e, 0x8e, 0xdc, 0xd6, 0xe9, 0xb6, 0xef, 0x36, 0x3d, - 0xa7, 0x7d, 0x68, 0x1f, 0x38, 0xbe, 0x5d, 0xaf, 0xb7, 0x9d, 0x4e, 0x87, 0x48, 0x22, 0x92, 0x9e, - 0x8b, 0xa4, 0xac, 0x1e, 0xf3, 0x0f, 0x8e, 0x9b, 0x1d, 0xaf, 0x6d, 0xbb, 0x4d, 0x8f, 0x40, 0x22, - 0x90, 0x9e, 0x0d, 0xa4, 0x23, 0xfb, 0xd3, 0xb8, 0xca, 0x77, 0xda, 0xa7, 0xec, 0x16, 0x11, 0x4b, - 0x2b, 0xa0, 0x49, 0xb6, 0xe7, 0xb5, 0xdd, 0xfd, 0x13, 0xcf, 0x61, 0x38, 0x22, 0x84, 0x9e, 0x0d, - 0xa1, 0x13, 0xcf, 0x6d, 0xb8, 0xff, 0x75, 0xea, 0x0c, 0x44, 0x44, 0xd1, 0xcb, 0x51, 0xe4, 0x7c, - 0xf2, 0x9c, 0x66, 0xdd, 0xa9, 0xfb, 0x76, 0xfd, 0xc8, 0x6d, 0xfa, 0xef, 0xdb, 0xc7, 0x27, 0x2d, - 0xe2, 0x88, 0x38, 0x7a, 0x2e, 0x8e, 0xec, 0xfa, 0x1f, 0x7e, 0xc3, 0x6e, 0xb2, 0x79, 0x4d, 0xf8, - 0xbc, 0x28, 0x99, 0x35, 0xb3, 0xe2, 0xcc, 0xa9, 0xfb, 0x8d, 0x0e, 0x63, 0x10, 0x41, 0xf4, 0x6c, - 0x10, 0xb9, 0xad, 0xd3, 0x1a, 0x7b, 0x46, 0x44, 0xd2, 0xeb, 0x91, 0xe4, 0x39, 0x7e, 0xdd, 0x39, - 0xb4, 0x4f, 0x1a, 0x9e, 0x7f, 0xe4, 0x78, 0x6d, 0xf7, 0x80, 0x20, 0x22, 0x88, 0x9e, 0x0b, 0xa2, - 0x31, 0x9f, 0x3e, 0xb2, 0x3f, 0xf1, 0x40, 0x8d, 0x28, 0x7a, 0x05, 0x8a, 0x26, 0xe8, 0x69, 0x1c, - 0x33, 0x8f, 0x11, 0x3c, 0x2f, 0x08, 0x41, 0xf3, 0xf0, 0xc3, 0x1e, 0x11, 0x51, 0xf4, 0x8a, 0xe2, - 0x6c, 0x7a, 0xec, 0xc1, 0x5e, 0x23, 0x71, 0xf4, 0xca, 0xfa, 0x6c, 0xdb, 0x6f, 0x3a, 0xee, 0xfb, - 0x0f, 0xfb, 0xc7, 0x6d, 0x96, 0x67, 0x04, 0xd2, 0xab, 0x38, 0x11, 0x1b, 0x8d, 0x84, 0xce, 0x8b, - 0x62, 0x50, 0x8d, 0x31, 0x88, 0x40, 0x7a, 0x35, 0x90, 0xb0, 0xcf, 0xcb, 0xa0, 0x2c, 0x3e, 0xfb, - 0x85, 0x6e, 0x59, 0x72, 0x77, 0x34, 0x53, 0xbd, 0x47, 0xb8, 0x14, 0x0d, 0x17, 0x64, 0x95, 0x1e, - 0xd1, 0x52, 0x7c, 0x8e, 0x07, 0x53, 0xe3, 0x11, 0x22, 0x5a, 0x4a, 0x51, 0x58, 0xd5, 0x1d, 0xf1, - 0xa2, 0x05, 0x2f, 0x60, 0x87, 0x81, 0x44, 0x89, 0x3e, 0x94, 0x20, 0xaa, 0xe8, 0x88, 0x97, 0xa2, - 0xf1, 0x82, 0xae, 0x96, 0x23, 0x62, 0x8a, 0x46, 0x0c, 0xb8, 0x2a, 0x8e, 0x80, 0x29, 0x1a, 0x30, - 0xf8, 0xea, 0x37, 0x62, 0x46, 0x0b, 0x8d, 0x41, 0x54, 0xb9, 0x11, 0x2a, 0x45, 0x43, 0x05, 0x59, - 0xcd, 0x46, 0xb4, 0x14, 0x8d, 0x16, 0x6c, 0xd5, 0x1a, 0xf1, 0x52, 0x34, 0x5e, 0x20, 0xd5, 0x69, - 0x84, 0x49, 0xe1, 0x49, 0x08, 0x57, 0x85, 0x46, 0xb0, 0x68, 0xe8, 0xb9, 0xd4, 0xd8, 0x73, 0x21, - 0x62, 0x9e, 0x8e, 0x18, 0x60, 0x55, 0x19, 0xc1, 0x52, 0x78, 0xbf, 0x05, 0x58, 0x3d, 0x46, 0xb4, - 0x68, 0xe9, 0xb4, 0x60, 0xa9, 0xc4, 0x08, 0x92, 0xc2, 0x43, 0x0a, 0xb0, 0x1a, 0x8c, 0x68, 0x29, - 0xbe, 0x18, 0x42, 0x56, 0x7d, 0x11, 0x2f, 0x1a, 0xea, 0x21, 0x64, 0x75, 0x17, 0x01, 0xa3, 0x85, - 0xb3, 0xb0, 0x21, 0x47, 0x88, 0x18, 0xab, 0xd6, 0x22, 0x60, 0x8a, 0x06, 0x0c, 0xcf, 0x83, 0x08, - 0x93, 0x47, 0x60, 0xd2, 0x3e, 0x3e, 0xf1, 0x9c, 0xb6, 0x7f, 0x60, 0xb7, 0x78, 0x77, 0x1c, 0xf1, - 0xb3, 0x52, 0x1c, 0xdd, 0xff, 0x37, 0xea, 0x88, 0x09, 0xa1, 0x17, 0x41, 0xc8, 0x6e, 0xbc, 0x3f, - 0x6e, 0xbb, 0xde, 0x87, 0x23, 0x4a, 0x89, 0xf3, 0xfd, 0xa2, 0x94, 0x98, 0xa4, 0xc0, 0xb8, 0x60, - 0x4e, 0xa8, 0x30, 0x68, 0x13, 0x29, 0x42, 0x0a, 0xd2, 0x16, 0xef, 0xa8, 0x26, 0x7a, 0x56, 0x8d, - 0xa2, 0x56, 0xdb, 0x39, 0x74, 0x3f, 0xf9, 0x87, 0x0d, 0xfb, 0x3d, 0x97, 0x15, 0x11, 0x3f, 0x2f, - 0xc5, 0x0f, 0x2f, 0x67, 0x20, 0x7a, 0x5e, 0x80, 0x9e, 0xc9, 0xc9, 0xde, 0x8c, 0x02, 0x11, 0x41, - 0x44, 0xd0, 0xf3, 0x11, 0xe4, 0xd9, 0xef, 0xb7, 0x6b, 0x04, 0x0e, 0x81, 0xf3, 0x82, 0xd0, 0x53, - 0x63, 0xe8, 0x21, 0x82, 0x5e, 0x15, 0x7a, 0xd8, 0x54, 0xcd, 0xf7, 0x8b, 0x4d, 0x55, 0xf6, 0x3f, - 0xcc, 0xaa, 0x5c, 0x89, 0x13, 0x56, 0xa8, 0x44, 0x09, 0x2b, 0x51, 0x22, 0x85, 0x15, 0x27, 0x01, - 0x62, 0x6a, 0x28, 0xa9, 0x31, 0x94, 0x10, 0x29, 0x86, 0x55, 0x90, 0x18, 0x95, 0xa3, 0xfc, 0x8a, - 0x51, 0xf6, 0x7b, 0x94, 0x6b, 0x9d, 0x4c, 0xcb, 0x84, 0x06, 0x4d, 0xcb, 0x8e, 0xa2, 0x41, 0x1a, - 0xa4, 0xe1, 0x20, 0xb2, 0xf6, 0x04, 0x87, 0x4b, 0x2b, 0xe9, 0x7e, 0x51, 0x57, 0xc1, 0x30, 0x48, - 0xbf, 0x8c, 0x03, 0x64, 0x75, 0x30, 0x54, 0x51, 0x77, 0x10, 0x5d, 0x84, 0x97, 0x95, 0x48, 0xa5, - 0x5f, 0x07, 0xf1, 0xdf, 0x95, 0x30, 0x4a, 0xd2, 0x20, 0xea, 0xaa, 0xea, 0xc3, 0x1f, 0x24, 0x0b, - 0x3f, 0xa9, 0x0e, 0xe3, 0x41, 0x3a, 0xe8, 0x0e, 0xfa, 0x49, 0xf6, 0x5d, 0x35, 0x4c, 0xc2, 0xa4, - 0xda, 0x57, 0xd7, 0xaa, 0x3f, 0xfb, 0xa5, 0xda, 0x0f, 0xa3, 0xbf, 0x2b, 0x49, 0x1a, 0xa4, 0xaa, - 0xd2, 0x0b, 0xd2, 0xe0, 0x3c, 0x48, 0x54, 0xb5, 0x9f, 0x0c, 0xab, 0x69, 0xff, 0x3a, 0x19, 0xff, - 0xa3, 0x1a, 0x0e, 0xaf, 0xb7, 0x2b, 0xb1, 0x0a, 0xba, 0x5f, 0x82, 0xf3, 0xb0, 0x1f, 0xa6, 0x37, - 0xd5, 0x61, 0xac, 0x2e, 0xc2, 0x6f, 0x2a, 0x99, 0x7d, 0x53, 0x4d, 0x46, 0xe7, 0x93, 0xdf, 0x3d, - 0xfd, 0xb5, 0x7a, 0xd1, 0x0f, 0x2e, 0x93, 0xea, 0xe4, 0x7f, 0x29, 0x33, 0x9e, 0xcb, 0xf3, 0x1d, - 0x59, 0x16, 0x09, 0xf3, 0x62, 0xe9, 0xde, 0x6b, 0x90, 0xd7, 0x0a, 0x9c, 0x9c, 0xb2, 0x92, 0x34, - 0x1e, 0x75, 0xd3, 0x68, 0x46, 0x1a, 0x9b, 0xd3, 0xd7, 0xe5, 0xce, 0xde, 0x96, 0xdf, 0x9a, 0xbd, - 0x23, 0xdf, 0x4d, 0xc2, 0xc4, 0x6f, 0x8c, 0x5f, 0x8e, 0xdf, 0x48, 0x86, 0xbe, 0xd7, 0xbf, 0xf6, - 0xdd, 0xe1, 0xf5, 0x76, 0xfb, 0xde, 0x2b, 0xf0, 0x5b, 0x93, 0x27, 0xf7, 0x3b, 0x93, 0x27, 0xf6, - 0x0f, 0x27, 0x4f, 0xfc, 0x0b, 0xe3, 0x80, 0xf0, 0x18, 0x60, 0x85, 0xc3, 0xeb, 0x5a, 0x25, 0x19, - 0x8c, 0xe2, 0xae, 0xaa, 0xc4, 0x83, 0x51, 0xaa, 0xe2, 0x4a, 0xd8, 0x13, 0x17, 0x0a, 0xb2, 0xba, - 0xe6, 0x71, 0x73, 0x85, 0xc5, 0xd4, 0x8f, 0x61, 0x34, 0x7e, 0x85, 0x1b, 0xc2, 0xcc, 0x3a, 0x98, - 0xc4, 0x4d, 0x6b, 0x6f, 0x6d, 0x5d, 0x98, 0x61, 0xd3, 0xd0, 0x21, 0x33, 0xff, 0xcc, 0x81, 0x37, - 0xe8, 0x56, 0xc6, 0x99, 0x42, 0x62, 0x10, 0xef, 0x4c, 0xdc, 0x41, 0x2c, 0xf9, 0xb6, 0x3e, 0xaa, - 0x9b, 0xaf, 0x83, 0x78, 0xec, 0x11, 0xd6, 0x34, 0x3d, 0x0a, 0x9d, 0x21, 0xb6, 0x3e, 0x04, 0x89, - 0x1d, 0x5f, 0x8e, 0xae, 0x54, 0x94, 0x5a, 0x7b, 0x6b, 0x69, 0x3c, 0x52, 0x52, 0x4b, 0xae, 0x3b, - 0x2b, 0x33, 0x60, 0x92, 0x77, 0x43, 0xf1, 0xee, 0x7a, 0x18, 0x0b, 0x25, 0xdc, 0x93, 0xda, 0x52, - 0x6c, 0x30, 0x99, 0xc7, 0xe3, 0xa9, 0x99, 0x42, 0xfd, 0x53, 0x26, 0x01, 0x10, 0x4f, 0x04, 0x10, - 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, - 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x32, 0x03, 0xe5, 0x76, 0x17, 0x96, 0xc6, 0x76, 0xa9, - 0x1d, 0x86, 0x65, 0x84, 0x63, 0x5d, 0xb8, 0x99, 0xd2, 0x89, 0x07, 0x12, 0x01, 0x01, 0x24, 0x22, - 0x68, 0x84, 0x04, 0x96, 0x98, 0xc0, 0x12, 0x14, 0x4c, 0xa2, 0x22, 0x9b, 0xb0, 0x08, 0x27, 0x2e, - 0xd9, 0x47, 0xee, 0xdd, 0x0c, 0x15, 0x56, 0xc4, 0x9d, 0x1c, 0x46, 0x04, 0xbd, 0x5e, 0xac, 0x12, - 0x88, 0xb0, 0x3b, 0x6f, 0x4b, 0xfc, 0x0e, 0x60, 0x6b, 0x2b, 0x48, 0x53, 0x15, 0x47, 0x30, 0x8b, - 0x1b, 0xac, 0xff, 0xfd, 0xfa, 0xeb, 0xe7, 0xf5, 0xca, 0xee, 0xd9, 0xbf, 0x9f, 0x37, 0x2a, 0xbb, - 0x67, 0xd3, 0x6f, 0x37, 0x26, 0xbf, 0x4c, 0xbf, 0xdf, 0xfc, 0xbc, 0x5e, 0xa9, 0xcd, 0xbf, 0xdf, - 0xfa, 0xbc, 0x5e, 0xd9, 0x3a, 0x7b, 0xf3, 0xd7, 0x5f, 0x6f, 0xdf, 0xfc, 0xf3, 0xee, 0xf6, 0xf9, - 0x7f, 0xf0, 0xff, 0xe4, 0x07, 0xc3, 0x33, 0x0e, 0x9f, 0x99, 0x16, 0xa6, 0xad, 0x14, 0x21, 0x44, - 0x67, 0xe1, 0x79, 0x62, 0x2d, 0x0b, 0x37, 0x16, 0x6e, 0x2c, 0xdc, 0x58, 0xb8, 0xb1, 0x70, 0x63, - 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0xdb, 0xb4, 0x70, 0xeb, 0xa9, 0x28, 0x0d, 0xd3, 0x9b, 0x58, 0x5d, - 0x20, 0xd5, 0x6d, 0x5b, 0x00, 0xb6, 0xba, 0xb3, 0x57, 0xbb, 0x1f, 0x24, 0x40, 0x79, 0xe2, 0x6e, - 0x15, 0xbf, 0xdb, 0x99, 0xad, 0x3b, 0x44, 0xda, 0x76, 0x88, 0xb8, 0xe5, 0xd0, 0x90, 0xcb, 0x1a, - 0xb8, 0x1b, 0x93, 0xe8, 0x79, 0x3d, 0x8a, 0xec, 0x53, 0xdb, 0x6d, 0xd8, 0xfb, 0x0d, 0x07, 0xf1, - 0x9a, 0x32, 0x10, 0x9e, 0x52, 0x02, 0x18, 0xb5, 0x9d, 0x8e, 0x5b, 0x3f, 0xb1, 0x1b, 0x44, 0x11, - 0x51, 0xf4, 0x8a, 0x60, 0x54, 0xff, 0x83, 0x5b, 0x56, 0x09, 0x9d, 0x97, 0x40, 0x67, 0x72, 0x1d, - 0x5e, 0xab, 0x7d, 0xec, 0x39, 0x07, 0x9e, 0x7b, 0xdc, 0x9c, 0xb2, 0x22, 0xe2, 0x88, 0x38, 0x7a, - 0x09, 0x8e, 0xc0, 0x2e, 0x0c, 0x27, 0x7a, 0xe4, 0xa1, 0xc7, 0x3f, 0xb5, 0xdb, 0xae, 0x3d, 0x0e, - 0x45, 0xc4, 0x11, 0x71, 0xf4, 0x5c, 0x1c, 0x4d, 0x36, 0xb5, 0xb9, 0x4d, 0xcf, 0x69, 0x1f, 0xda, - 0x07, 0x0e, 0xde, 0xd5, 0x9d, 0x44, 0x92, 0x14, 0x24, 0x65, 0xf5, 0x98, 0x7f, 0x70, 0xdc, 0xec, - 0x78, 0x6d, 0xdb, 0x6d, 0x7a, 0x04, 0x12, 0x81, 0xf4, 0x6c, 0x20, 0x1d, 0xd9, 0x9f, 0xfc, 0xe9, - 0x95, 0xf6, 0xec, 0x16, 0x11, 0x4b, 0x2b, 0xa0, 0x49, 0xb6, 0xe7, 0xb5, 0xdd, 0xfd, 0x13, 0xcf, - 0x61, 0x38, 0x22, 0x84, 0x9e, 0x0d, 0xa1, 0x13, 0xcf, 0x6d, 0xb8, 0xff, 0x75, 0xea, 0x0c, 0x44, - 0x44, 0xd1, 0xcb, 0x51, 0xe4, 0x7c, 0xf2, 0x9c, 0x66, 0xdd, 0xa9, 0x63, 0xde, 0x7c, 0x4e, 0x1c, - 0x49, 0xc1, 0x91, 0x5d, 0xff, 0xc3, 0x6f, 0xd8, 0x4d, 0x36, 0xaf, 0x09, 0x9f, 0x17, 0x25, 0xb3, - 0x66, 0x56, 0x9c, 0x39, 0x75, 0xbf, 0xd1, 0x61, 0x0c, 0x22, 0x88, 0x9e, 0x0d, 0xa2, 0xc9, 0x4a, - 0x6e, 0xf6, 0x8c, 0x88, 0xa4, 0x57, 0x23, 0xc9, 0x73, 0xfc, 0xba, 0x73, 0x68, 0x9f, 0x34, 0x3c, - 0xff, 0xc8, 0xf1, 0xda, 0xee, 0x01, 0x41, 0x44, 0x10, 0x3d, 0x17, 0x44, 0x63, 0x3e, 0x7d, 0x64, - 0x7f, 0xe2, 0x81, 0x1a, 0x51, 0xf4, 0x0a, 0x14, 0x4d, 0xd0, 0xd3, 0x38, 0x66, 0x1e, 0x23, 0x78, - 0x5e, 0x10, 0x82, 0xe6, 0xe1, 0x87, 0x3d, 0x22, 0xa2, 0xe8, 0x15, 0xc5, 0xd9, 0xf4, 0xd8, 0x83, - 0xbd, 0x46, 0xe2, 0xe8, 0x95, 0xf5, 0xd9, 0xb6, 0xdf, 0x74, 0xdc, 0xf7, 0x1f, 0xf6, 0x8f, 0xdb, - 0x2c, 0xcf, 0x08, 0xa4, 0x57, 0x71, 0x22, 0x36, 0x1a, 0x09, 0x9d, 0x17, 0xc5, 0xa0, 0x1a, 0x63, - 0x10, 0x81, 0xf4, 0x6a, 0x20, 0x61, 0x9f, 0x97, 0xf1, 0x7e, 0xf0, 0xb2, 0xbb, 0xa5, 0x21, 0x1a, - 0x50, 0x68, 0xf5, 0x1e, 0xe1, 0x52, 0x34, 0x5c, 0x90, 0x55, 0x7a, 0x44, 0x4b, 0xf1, 0x39, 0xfe, - 0x0f, 0xde, 0x28, 0x4f, 0x88, 0x98, 0xab, 0xba, 0x23, 0x5e, 0xb4, 0xe0, 0x05, 0xec, 0x30, 0x90, - 0x28, 0xd1, 0x87, 0x12, 0x44, 0x15, 0x1d, 0xf1, 0x52, 0x34, 0x5e, 0xd0, 0xd5, 0x72, 0x44, 0x4c, - 0xd1, 0x88, 0x01, 0x57, 0xc5, 0x11, 0x30, 0x45, 0x03, 0x06, 0x5f, 0xfd, 0x46, 0xcc, 0x68, 0xa1, - 0x31, 0x88, 0x2a, 0x37, 0x42, 0xa5, 0x68, 0xa8, 0x20, 0xab, 0xd9, 0x88, 0x96, 0xa2, 0xd1, 0x82, - 0xad, 0x5a, 0x23, 0x5e, 0x8a, 0xc6, 0x0b, 0xa4, 0x3a, 0x8d, 0x30, 0x29, 0x3c, 0x09, 0xe1, 0xaa, - 0xd0, 0x08, 0x16, 0x0d, 0x3d, 0x97, 0x1a, 0x7b, 0x2e, 0x44, 0xcc, 0xd3, 0x11, 0x03, 0xac, 0x2a, - 0x23, 0x58, 0x0a, 0xef, 0xb7, 0x00, 0xab, 0xc7, 0x88, 0x16, 0x2d, 0x9d, 0x16, 0x2c, 0x95, 0x18, - 0x41, 0x52, 0x78, 0x48, 0x01, 0x56, 0x83, 0x11, 0x2d, 0xc5, 0x17, 0x43, 0xc8, 0xaa, 0x2f, 0xe2, - 0x45, 0x43, 0x3d, 0x84, 0xac, 0xee, 0x22, 0x60, 0xb4, 0x70, 0x16, 0x36, 0xe4, 0x08, 0x11, 0x63, - 0xd5, 0x5a, 0x04, 0x4c, 0xd1, 0x80, 0xe1, 0x79, 0x10, 0x61, 0xf2, 0x08, 0x4c, 0xda, 0xc7, 0x27, - 0x9e, 0xd3, 0xf6, 0x0f, 0xec, 0x16, 0xef, 0x8e, 0x23, 0x7e, 0x56, 0x8a, 0xa3, 0xfb, 0xff, 0x46, - 0x1d, 0x31, 0x21, 0xf4, 0x22, 0x08, 0xd9, 0x8d, 0xf7, 0xc7, 0x6d, 0xd7, 0xfb, 0x70, 0x44, 0x29, - 0x71, 0xbe, 0x5f, 0x94, 0x12, 0x93, 0x14, 0x18, 0x17, 0xcc, 0x09, 0x15, 0x06, 0x6d, 0x22, 0x45, - 0x48, 0x41, 0xda, 0xe2, 0x1d, 0xd5, 0x44, 0xcf, 0xaa, 0x51, 0xd4, 0x6a, 0x3b, 0x87, 0xee, 0x27, - 0xff, 0xb0, 0x61, 0xbf, 0xe7, 0xb2, 0x22, 0xe2, 0xe7, 0xa5, 0xf8, 0xe1, 0xe5, 0x0c, 0x44, 0xcf, - 0x0b, 0xd0, 0x33, 0x39, 0xd9, 0x9b, 0x51, 0x20, 0x22, 0x88, 0x08, 0x7a, 0x3e, 0x82, 0x3c, 0xfb, - 0xfd, 0x76, 0x8d, 0xc0, 0x21, 0x70, 0x5e, 0x10, 0x7a, 0x6a, 0x0c, 0x3d, 0x44, 0xd0, 0xab, 0x42, - 0x0f, 0x9b, 0xaa, 0xf9, 0x7e, 0xb1, 0xa9, 0xca, 0xfe, 0x87, 0x59, 0x95, 0x2b, 0x71, 0xc2, 0x0a, - 0x95, 0x28, 0x61, 0x25, 0x4a, 0xa4, 0xb0, 0xe2, 0x24, 0x40, 0x4c, 0x0d, 0x25, 0x35, 0x86, 0x12, - 0x22, 0xc5, 0xb0, 0x0a, 0x12, 0xa3, 0x72, 0x94, 0x5f, 0x31, 0xca, 0x7e, 0x8f, 0x72, 0xad, 0x93, - 0x69, 0x99, 0xd0, 0xa0, 0x69, 0xd9, 0x51, 0x34, 0x48, 0x83, 0x34, 0x1c, 0x44, 0xd6, 0x9e, 0xe0, - 0x70, 0x69, 0x25, 0xdd, 0x2f, 0xea, 0x2a, 0x18, 0x06, 0xe9, 0x97, 0x71, 0x80, 0xac, 0x0e, 0x86, - 0x2a, 0xea, 0x0e, 0xa2, 0x8b, 0xf0, 0xb2, 0x12, 0xa9, 0xf4, 0xeb, 0x20, 0xfe, 0xbb, 0x12, 0x46, - 0x49, 0x1a, 0x44, 0x5d, 0x55, 0x7d, 0xf8, 0x83, 0x64, 0xe1, 0x27, 0xd5, 0x61, 0x3c, 0x48, 0x07, - 0xdd, 0x41, 0x3f, 0xc9, 0xbe, 0xab, 0x86, 0x49, 0x98, 0x54, 0xfb, 0xea, 0x5a, 0xf5, 0x67, 0xbf, - 0x54, 0xfb, 0x61, 0xf4, 0x77, 0x25, 0x49, 0x83, 0x54, 0x55, 0x7a, 0x41, 0x1a, 0x9c, 0x07, 0x89, - 0xaa, 0xf6, 0x93, 0x61, 0x35, 0xed, 0x5f, 0x27, 0xe3, 0x7f, 0x54, 0xc3, 0xe1, 0xf5, 0x76, 0x25, - 0x56, 0x41, 0xf7, 0x4b, 0x70, 0x1e, 0xf6, 0xc3, 0xf4, 0xa6, 0x3a, 0x8c, 0xd5, 0x45, 0xf8, 0x4d, - 0x25, 0xb3, 0x6f, 0xaa, 0xc9, 0xe8, 0x7c, 0xf2, 0xbb, 0xa7, 0xbf, 0x8e, 0xff, 0x40, 0xad, 0x92, - 0x0c, 0x46, 0x71, 0x57, 0x55, 0xe2, 0xc1, 0x28, 0x55, 0x71, 0x25, 0xec, 0x55, 0x27, 0x7f, 0x85, - 0xcc, 0xf8, 0x2e, 0xcf, 0x97, 0x64, 0x59, 0x24, 0xcc, 0xab, 0xa5, 0x7b, 0xb3, 0xc1, 0x5e, 0x2c, - 0x70, 0xb2, 0xca, 0x4a, 0xd2, 0x78, 0xd4, 0x4d, 0xa3, 0x19, 0xa9, 0x6c, 0x4e, 0x5f, 0x9f, 0x3b, - 0x7b, 0x7b, 0x7e, 0x6b, 0xf6, 0xce, 0x7c, 0x37, 0x09, 0x13, 0xbf, 0x31, 0x7e, 0x59, 0x7e, 0x23, - 0x19, 0xfa, 0x5e, 0xff, 0xda, 0x77, 0x87, 0xd7, 0xdb, 0xed, 0x7b, 0xaf, 0xc4, 0x6f, 0x4d, 0xde, - 0x84, 0xdf, 0x99, 0xbc, 0x81, 0xf1, 0x7f, 0xae, 0x75, 0x26, 0x2f, 0xa0, 0x3d, 0x79, 0x7e, 0xb7, - 0x27, 0x2b, 0x7c, 0xc9, 0x09, 0x12, 0x82, 0x02, 0x84, 0x35, 0x01, 0xfa, 0x02, 0x6e, 0xa5, 0xc5, - 0x89, 0xac, 0x08, 0x7a, 0xdc, 0x5c, 0x61, 0x01, 0xf7, 0x63, 0x18, 0x8d, 0x5f, 0xe1, 0x86, 0x30, - 0xb3, 0x0e, 0x26, 0x41, 0xd5, 0xda, 0x5b, 0x5b, 0x17, 0x66, 0xd8, 0x34, 0x8e, 0xc8, 0x4c, 0x4e, - 0x73, 0xe0, 0x0d, 0xba, 0x95, 0x71, 0x1a, 0x91, 0x18, 0xd1, 0xa7, 0x41, 0x57, 0x2c, 0x53, 0xb7, - 0x3e, 0xaa, 0x9b, 0xaf, 0x83, 0x78, 0xec, 0x11, 0xd6, 0x34, 0x77, 0x0a, 0x1d, 0x38, 0xb6, 0x3e, - 0x04, 0x89, 0x1d, 0x5f, 0x8e, 0xae, 0x54, 0x94, 0x5a, 0x7b, 0x6b, 0x69, 0x3c, 0x52, 0x52, 0xeb, - 0xb3, 0x3b, 0x2b, 0x33, 0x60, 0x92, 0x94, 0x43, 0x91, 0xf2, 0x7a, 0x18, 0x0b, 0x65, 0xe3, 0x93, - 0xc2, 0x53, 0x6c, 0x30, 0x99, 0xc7, 0xe3, 0xa9, 0x99, 0x42, 0xfd, 0x53, 0x26, 0x01, 0x10, 0x4f, - 0x04, 0x10, 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, - 0x07, 0x99, 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x32, 0x03, 0xe5, 0x76, 0x17, 0x96, 0xc6, - 0x76, 0xc9, 0x8d, 0xbc, 0xc7, 0x08, 0xc7, 0xba, 0x70, 0x33, 0xa5, 0x13, 0x0f, 0x24, 0x02, 0x02, - 0x48, 0x44, 0xd0, 0x08, 0x09, 0x2c, 0x31, 0x81, 0x25, 0x28, 0x98, 0x44, 0x45, 0x36, 0x61, 0x11, - 0x4e, 0x5c, 0xb2, 0x8f, 0xdc, 0xbb, 0x19, 0x2a, 0xac, 0x88, 0x3b, 0x39, 0x8c, 0x08, 0x7a, 0xbd, - 0x58, 0x25, 0x10, 0x61, 0x77, 0xde, 0x96, 0xf8, 0x1d, 0xc0, 0xd6, 0x56, 0x90, 0xa6, 0x2a, 0x8e, - 0x60, 0xb6, 0x3c, 0x58, 0xff, 0xfb, 0xf5, 0xd7, 0xcf, 0xeb, 0x95, 0xdd, 0xa0, 0x72, 0x61, 0x57, - 0x0e, 0xcf, 0xfe, 0xd9, 0xf8, 0xad, 0x76, 0xbb, 0xf7, 0xe6, 0x9f, 0x9d, 0xdb, 0x87, 0x3f, 0xfc, - 0xf7, 0xb1, 0xdf, 0xb6, 0xf1, 0xdb, 0xce, 0xed, 0xde, 0x92, 0xff, 0xb2, 0x7d, 0xbb, 0xf7, 0xc4, - 0xff, 0xc7, 0xd6, 0xed, 0xaf, 0x0b, 0xbf, 0x75, 0xfc, 0xf3, 0xcd, 0x65, 0x7f, 0xa0, 0xb6, 0xe4, - 0x0f, 0xbc, 0x5b, 0xf6, 0x07, 0xde, 0x2d, 0xf9, 0x03, 0x4b, 0x4d, 0xda, 0x5c, 0xf2, 0x07, 0xb6, - 0x6e, 0xff, 0x5d, 0xf8, 0xfd, 0xbf, 0x3e, 0xfe, 0x5b, 0xb7, 0x6f, 0xdf, 0xfc, 0xbb, 0xec, 0xbf, - 0xed, 0xdc, 0xfe, 0xbb, 0xf7, 0xe6, 0xcd, 0xff, 0xc9, 0x4f, 0x0d, 0x67, 0x9c, 0xdb, 0x33, 0x2d, - 0x69, 0x59, 0x29, 0x42, 0xc2, 0xca, 0x92, 0xd5, 0xc4, 0x5a, 0x96, 0xb1, 0x2c, 0x63, 0x59, 0xc6, - 0xb2, 0x8c, 0x65, 0x19, 0xcb, 0x32, 0x96, 0x65, 0x2c, 0xcb, 0xd8, 0x69, 0x19, 0xdb, 0x53, 0x51, - 0x1a, 0xa6, 0x37, 0xb1, 0xba, 0x40, 0xaa, 0x62, 0xb7, 0x00, 0x6c, 0x75, 0x67, 0xaf, 0x76, 0x3f, - 0x48, 0x80, 0xf2, 0xc4, 0xdd, 0x2d, 0x06, 0x6e, 0x67, 0xb6, 0x29, 0x12, 0x69, 0x51, 0x24, 0xe2, - 0x82, 0x48, 0x43, 0xee, 0xb9, 0xe0, 0x5a, 0x51, 0xa2, 0xe7, 0xf5, 0x28, 0xb2, 0x4f, 0x6d, 0xb7, - 0x61, 0xef, 0x37, 0x1c, 0xc4, 0x1b, 0xde, 0x40, 0x78, 0x4a, 0x09, 0x60, 0xd4, 0x76, 0x3a, 0x6e, - 0xfd, 0xc4, 0x6e, 0x10, 0x45, 0x44, 0xd1, 0x2b, 0x82, 0x51, 0xfd, 0x0f, 0x2e, 0xa8, 0x25, 0x74, - 0x5e, 0x02, 0x9d, 0xc9, 0x4d, 0x82, 0xad, 0xf6, 0xb1, 0xe7, 0x1c, 0x78, 0xee, 0x71, 0x73, 0xca, - 0x8a, 0x88, 0x23, 0xe2, 0xe8, 0x25, 0x38, 0x02, 0xbb, 0x6b, 0x9d, 0xe8, 0x91, 0x87, 0x1e, 0xff, - 0xd4, 0x6e, 0xbb, 0xf6, 0x38, 0x14, 0x11, 0x47, 0xc4, 0xd1, 0x73, 0x71, 0x34, 0x59, 0x72, 0xe7, - 0x36, 0x3d, 0xa7, 0x7d, 0x68, 0x1f, 0x38, 0x78, 0xb7, 0x9e, 0x12, 0x49, 0x52, 0x90, 0x94, 0xd5, - 0x63, 0xfe, 0xc1, 0x71, 0xb3, 0xe3, 0xb5, 0x6d, 0xb7, 0xe9, 0x11, 0x48, 0x04, 0xd2, 0xb3, 0x81, - 0x74, 0x64, 0x7f, 0x1a, 0x57, 0xf9, 0x4e, 0xfb, 0x94, 0xdd, 0x22, 0x62, 0x69, 0x05, 0x34, 0xc9, - 0xf6, 0xbc, 0xb6, 0xbb, 0x7f, 0xe2, 0x39, 0x0c, 0x47, 0x84, 0xd0, 0xb3, 0x21, 0x74, 0xe2, 0xb9, - 0x0d, 0xf7, 0xbf, 0x4e, 0x9d, 0x81, 0x88, 0x28, 0x7a, 0x39, 0x8a, 0x9c, 0x4f, 0x9e, 0xd3, 0xac, - 0x3b, 0x75, 0xcc, 0x4b, 0xe3, 0x89, 0x23, 0x29, 0x38, 0xb2, 0xeb, 0x7f, 0xf8, 0x0d, 0xbb, 0xc9, - 0xe6, 0x35, 0xe1, 0xf3, 0xa2, 0x64, 0xd6, 0xcc, 0x8a, 0x33, 0xa7, 0xee, 0x37, 0x3a, 0x8c, 0x41, - 0x04, 0xd1, 0xb3, 0x41, 0x34, 0xd9, 0x66, 0xce, 0x9e, 0x11, 0x91, 0xf4, 0x6a, 0x24, 0x79, 0x8e, - 0x5f, 0x77, 0x0e, 0xed, 0x93, 0x86, 0xe7, 0x1f, 0x39, 0x5e, 0xdb, 0x3d, 0x20, 0x88, 0x08, 0xa2, - 0xe7, 0x82, 0x68, 0xcc, 0xa7, 0x8f, 0xec, 0x4f, 0x3c, 0x50, 0x23, 0x8a, 0x5e, 0x81, 0xa2, 0x09, - 0x7a, 0x1a, 0xc7, 0xcc, 0x63, 0x04, 0xcf, 0x0b, 0x42, 0xd0, 0x3c, 0xfc, 0xb0, 0x47, 0x44, 0x14, - 0xbd, 0xa2, 0x38, 0x9b, 0x1e, 0x7b, 0xb0, 0xd7, 0x48, 0x1c, 0xbd, 0xb2, 0x3e, 0xdb, 0xf6, 0x9b, - 0x8e, 0xfb, 0xfe, 0xc3, 0xfe, 0x71, 0x9b, 0xe5, 0x19, 0x81, 0xf4, 0x2a, 0x4e, 0xc4, 0x46, 0x23, - 0xa1, 0xf3, 0xa2, 0x18, 0x54, 0x63, 0x0c, 0x22, 0x90, 0x5e, 0x0d, 0x24, 0xec, 0xf3, 0x32, 0x5e, - 0xad, 0x5e, 0x76, 0xb7, 0x34, 0x44, 0x03, 0x0a, 0xad, 0xde, 0x23, 0x5c, 0x8a, 0x86, 0x0b, 0xb2, - 0x4a, 0x8f, 0x68, 0x29, 0x3e, 0xc7, 0xff, 0xc1, 0xcb, 0xf8, 0x09, 0x11, 0x73, 0x55, 0x77, 0xc4, - 0x8b, 0x16, 0xbc, 0x80, 0x1d, 0x06, 0x12, 0x25, 0xfa, 0x50, 0x82, 0xa8, 0xa2, 0x23, 0x5e, 0x8a, - 0xc6, 0x0b, 0xba, 0x5a, 0x8e, 0x88, 0x29, 0x1a, 0x31, 0xe0, 0xaa, 0x38, 0x02, 0xa6, 0x68, 0xc0, - 0xe0, 0xab, 0xdf, 0x88, 0x19, 0x2d, 0x34, 0x06, 0x51, 0xe5, 0x46, 0xa8, 0x14, 0x0d, 0x15, 0x64, - 0x35, 0x1b, 0xd1, 0x52, 0x34, 0x5a, 0xb0, 0x55, 0x6b, 0xc4, 0x4b, 0xd1, 0x78, 0x81, 0x54, 0xa7, - 0x11, 0x26, 0x85, 0x27, 0x21, 0x5c, 0x15, 0x1a, 0xc1, 0xa2, 0xa1, 0xe7, 0x52, 0x63, 0xcf, 0x85, - 0x88, 0x79, 0x3a, 0x62, 0x80, 0x55, 0x65, 0x04, 0x4b, 0xe1, 0xfd, 0x16, 0x60, 0xf5, 0x18, 0xd1, - 0xa2, 0xa5, 0xd3, 0x82, 0xa5, 0x12, 0x23, 0x48, 0x0a, 0x0f, 0x29, 0xc0, 0x6a, 0x30, 0xa2, 0xa5, - 0xf8, 0x62, 0x08, 0x59, 0xf5, 0x45, 0xbc, 0x68, 0xa8, 0x87, 0x90, 0xd5, 0x5d, 0x04, 0x8c, 0x16, - 0xce, 0xc2, 0x86, 0x1c, 0x21, 0x62, 0xac, 0x5a, 0x8b, 0x80, 0x29, 0x1a, 0x30, 0x3c, 0x0f, 0x22, - 0x4c, 0x1e, 0x81, 0x49, 0xfb, 0xf8, 0xc4, 0x73, 0xda, 0xfe, 0x81, 0xdd, 0xe2, 0xdd, 0x71, 0xc4, - 0xcf, 0x4a, 0x71, 0x74, 0xff, 0xdf, 0xa8, 0x23, 0x26, 0x84, 0x5e, 0x04, 0x21, 0xbb, 0xf1, 0xfe, - 0xb8, 0xed, 0x7a, 0x1f, 0x8e, 0x28, 0x25, 0xce, 0xf7, 0x8b, 0x52, 0x62, 0x92, 0x02, 0xe3, 0x82, - 0x39, 0xa1, 0xc2, 0xa0, 0x4d, 0xa4, 0x08, 0x29, 0x48, 0x5b, 0xbc, 0xa3, 0x9a, 0xe8, 0x59, 0x35, - 0x8a, 0x5a, 0x6d, 0xe7, 0xd0, 0xfd, 0xe4, 0x1f, 0x36, 0xec, 0xf7, 0x5c, 0x56, 0x44, 0xfc, 0xbc, - 0x14, 0x3f, 0xbc, 0x9c, 0x81, 0xe8, 0x79, 0x01, 0x7a, 0x26, 0x27, 0x7b, 0x33, 0x0a, 0x44, 0x04, - 0x11, 0x41, 0xcf, 0x47, 0x90, 0x67, 0xbf, 0xdf, 0xae, 0x11, 0x38, 0x04, 0xce, 0x0b, 0x42, 0x4f, - 0x8d, 0xa1, 0x87, 0x08, 0x7a, 0x55, 0xe8, 0x61, 0x53, 0x35, 0xdf, 0x2f, 0x36, 0x55, 0xd9, 0xff, - 0x30, 0xab, 0x72, 0x25, 0x4e, 0x58, 0xa1, 0x12, 0x25, 0xac, 0x44, 0x89, 0x14, 0x56, 0x9c, 0x04, - 0x88, 0xa9, 0xa1, 0xa4, 0xc6, 0x50, 0x42, 0xa4, 0x18, 0x56, 0x41, 0x62, 0x54, 0x8e, 0xf2, 0x2b, - 0x46, 0xd9, 0xef, 0x51, 0xae, 0x75, 0x32, 0x2d, 0x13, 0x1a, 0x34, 0x2d, 0x3b, 0x8a, 0x06, 0x69, - 0x90, 0x86, 0x83, 0xc8, 0xda, 0x13, 0x1c, 0x2e, 0xad, 0xa4, 0xfb, 0x45, 0x5d, 0x05, 0xc3, 0x20, - 0xfd, 0x32, 0x0e, 0x90, 0xd5, 0xc1, 0x50, 0x45, 0xdd, 0x41, 0x74, 0x11, 0x5e, 0x56, 0x22, 0x95, - 0x7e, 0x1d, 0xc4, 0x7f, 0x57, 0xc2, 0x28, 0x49, 0x83, 0xa8, 0xab, 0xaa, 0x0f, 0x7f, 0x90, 0x2c, - 0xfc, 0xa4, 0x3a, 0x8c, 0x07, 0xe9, 0xa0, 0x3b, 0xe8, 0x27, 0xd9, 0x77, 0xd5, 0x30, 0x09, 0x93, - 0x6a, 0x5f, 0x5d, 0xab, 0xfe, 0xec, 0x97, 0x6a, 0x3f, 0x8c, 0xfe, 0xae, 0x24, 0x69, 0x90, 0xaa, - 0x4a, 0x2f, 0x48, 0x83, 0xf3, 0x20, 0x51, 0xd5, 0x7e, 0x32, 0xac, 0xa6, 0xfd, 0xeb, 0x64, 0xfc, - 0x8f, 0x6a, 0x38, 0xbc, 0xde, 0xae, 0xc4, 0x2a, 0xe8, 0x7e, 0x09, 0xce, 0xc3, 0x7e, 0x98, 0xde, - 0x54, 0x87, 0xb1, 0xba, 0x08, 0xbf, 0xa9, 0x64, 0xf6, 0x4d, 0x35, 0x19, 0x9d, 0x4f, 0x7e, 0xf7, - 0xf4, 0xd7, 0xe9, 0x1f, 0x48, 0x06, 0xa3, 0xb8, 0xab, 0x2a, 0xf1, 0x60, 0x94, 0xaa, 0xb8, 0x12, - 0xf6, 0xaa, 0x93, 0xbf, 0x42, 0x66, 0x7c, 0x97, 0xe7, 0x4b, 0xb2, 0x2c, 0x12, 0xe6, 0xd5, 0xd2, - 0xbd, 0xd9, 0x60, 0x2f, 0x16, 0x38, 0x59, 0x65, 0x25, 0x69, 0x3c, 0xea, 0xa6, 0xd1, 0x8c, 0x54, - 0x36, 0xa7, 0xaf, 0xcf, 0x9d, 0xbd, 0x3d, 0xbf, 0x35, 0x7b, 0x67, 0xbe, 0x9b, 0x84, 0x89, 0xdf, - 0x18, 0xbf, 0x2c, 0xbf, 0x91, 0x0c, 0x7d, 0xaf, 0x7f, 0xed, 0xbb, 0xc3, 0xeb, 0xed, 0xf6, 0xbd, - 0x57, 0xe2, 0xb7, 0x26, 0x6f, 0xc2, 0xef, 0x4c, 0xde, 0xc0, 0xe4, 0x3f, 0x77, 0x26, 0x2f, 0xa0, - 0x3d, 0x79, 0x7e, 0xb7, 0x27, 0x2b, 0x7c, 0xc9, 0x09, 0x12, 0x82, 0x02, 0x84, 0x35, 0x45, 0x73, - 0x25, 0x09, 0x7b, 0x89, 0xb8, 0xe8, 0x90, 0x95, 0x3e, 0xf7, 0x8d, 0x14, 0x16, 0x5c, 0x3f, 0x86, - 0x51, 0xcf, 0xda, 0x5b, 0xdb, 0x10, 0x66, 0xd6, 0xc1, 0x24, 0x80, 0x5a, 0x7b, 0x6b, 0xeb, 0xc2, - 0x0c, 0x9b, 0xc6, 0x0c, 0x99, 0x89, 0x68, 0x0e, 0xb7, 0x41, 0xb7, 0x32, 0x4e, 0x19, 0x12, 0xa3, - 0xf7, 0x34, 0xc0, 0x8a, 0x65, 0xe5, 0xd6, 0x47, 0x75, 0xf3, 0x75, 0x10, 0xf7, 0xee, 0x9c, 0x56, - 0xe8, 0x70, 0xb1, 0xf5, 0x21, 0x48, 0xec, 0xf8, 0x72, 0x74, 0xa5, 0xa2, 0xd4, 0xda, 0x5b, 0x4b, - 0xe3, 0x91, 0x92, 0x5a, 0x8b, 0xdd, 0x59, 0x99, 0x01, 0x93, 0x04, 0x1c, 0x8a, 0x80, 0xd7, 0xc3, - 0x58, 0x66, 0xc0, 0xbb, 0xcb, 0xab, 0x72, 0x23, 0xca, 0x22, 0x07, 0x90, 0x1a, 0x52, 0x64, 0x52, - 0x01, 0xf1, 0x94, 0x00, 0x81, 0x1a, 0x00, 0x51, 0x04, 0x14, 0xaa, 0x00, 0x47, 0x19, 0xe0, 0xa8, - 0x03, 0x16, 0x85, 0x90, 0x49, 0x25, 0x84, 0x52, 0x0a, 0xf1, 0xd4, 0x22, 0x33, 0x70, 0xda, 0xc7, - 0x16, 0x1f, 0x84, 0xe6, 0x71, 0x7d, 0x6a, 0xae, 0x70, 0x7f, 0x96, 0x4d, 0x34, 0x60, 0x08, 0x07, - 0x12, 0xf1, 0x00, 0x24, 0x20, 0x68, 0x44, 0x04, 0x96, 0x90, 0xc0, 0x12, 0x13, 0x4c, 0x82, 0x22, - 0x9b, 0xa8, 0x08, 0x27, 0x2c, 0x30, 0xc4, 0x25, 0x33, 0x34, 0xe8, 0x5f, 0x0e, 0xe2, 0x30, 0xfd, - 0x72, 0x85, 0x13, 0xc0, 0xe6, 0x39, 0xe2, 0xce, 0x74, 0x90, 0x38, 0x30, 0x23, 0x36, 0xeb, 0x20, - 0xe6, 0xa2, 0x10, 0x1c, 0x44, 0xa2, 0x03, 0x4c, 0x78, 0x50, 0x89, 0x0f, 0x3c, 0x01, 0x82, 0x27, - 0x42, 0xd8, 0x84, 0x08, 0x83, 0x18, 0x81, 0x10, 0xa4, 0x0c, 0x0a, 0xde, 0xcd, 0x50, 0x61, 0x46, - 0xec, 0x51, 0x18, 0xa5, 0xbf, 0x23, 0xc5, 0xeb, 0x19, 0xfd, 0xd8, 0x02, 0x32, 0xb9, 0x1d, 0x44, - 0x97, 0x0a, 0x6e, 0x15, 0x16, 0x9e, 0x96, 0xdf, 0x3a, 0x0a, 0x23, 0xb8, 0x44, 0x0e, 0xca, 0xab, - 0x17, 0xcc, 0x9f, 0x2c, 0x7c, 0x03, 0xb6, 0xff, 0x30, 0x0e, 0xba, 0x69, 0x38, 0x88, 0xea, 0xe1, - 0x65, 0x98, 0x26, 0xe3, 0x07, 0xe1, 0xc2, 0x90, 0x22, 0x5c, 0x36, 0xf8, 0x46, 0x97, 0xd5, 0xec, - 0xb2, 0x9b, 0x5b, 0x5b, 0x74, 0x5a, 0x12, 0x71, 0xb3, 0xac, 0xc5, 0x58, 0x2c, 0x23, 0xff, 0x7d, - 0x02, 0x24, 0x15, 0xeb, 0xa2, 0x1f, 0x5c, 0x26, 0x78, 0xad, 0xdf, 0xa9, 0xd9, 0x6c, 0xfb, 0xe6, - 0x61, 0x2e, 0xdb, 0xbe, 0x05, 0x02, 0x99, 0x6d, 0xdf, 0xe2, 0xdc, 0x90, 0x6d, 0x5f, 0xcd, 0x0f, - 0xc0, 0xb6, 0x2f, 0x39, 0xc7, 0x0c, 0x0a, 0xb8, 0x6d, 0x5f, 0x15, 0x8d, 0xae, 0x54, 0x3c, 0xd5, - 0x1b, 0xe3, 0x35, 0x7f, 0x37, 0x6a, 0x40, 0x36, 0x3b, 0xd1, 0x68, 0x32, 0x96, 0x40, 0xd7, 0x5b, - 0xe5, 0x5b, 0x6d, 0x84, 0x49, 0x6a, 0xa7, 0x69, 0x8c, 0xe5, 0x7e, 0x47, 0x61, 0xe4, 0xf4, 0xd5, - 0x38, 0x7b, 0x8c, 0xcb, 0x95, 0x68, 0xd4, 0xef, 0x03, 0x01, 0xf9, 0x28, 0xf8, 0x86, 0x6b, 0xfc, - 0x71, 0xdc, 0x53, 0xb1, 0xea, 0xed, 0xdf, 0xcc, 0x4c, 0x67, 0x77, 0xa0, 0x34, 0xdd, 0x81, 0xeb, - 0x59, 0x9b, 0x13, 0xac, 0x3b, 0x30, 0x35, 0x9b, 0xdd, 0x01, 0x76, 0x07, 0xd8, 0x1d, 0x60, 0x77, - 0x80, 0xdd, 0x01, 0x76, 0x07, 0xc8, 0x37, 0xd8, 0x1d, 0x28, 0x24, 0x62, 0x8f, 0xc2, 0x28, 0x7d, - 0xb7, 0x09, 0xd8, 0x18, 0xd8, 0xe1, 0x54, 0x58, 0xce, 0x5f, 0x9c, 0x0a, 0x23, 0xb1, 0x7e, 0x86, - 0xf9, 0x9c, 0x0a, 0x63, 0xba, 0x7c, 0x89, 0xcb, 0x72, 0x2a, 0x4c, 0xbb, 0xcb, 0xd6, 0x36, 0x77, - 0x6b, 0xbb, 0xdb, 0x3b, 0x9b, 0xbb, 0x1c, 0x0e, 0x23, 0x21, 0x37, 0xcc, 0x5a, 0x0e, 0x87, 0x95, - 0xc1, 0x42, 0xe9, 0xf2, 0x6a, 0x90, 0x0d, 0xee, 0x99, 0xbd, 0x46, 0xec, 0x80, 0xbe, 0xb7, 0xa6, - 0xf6, 0xde, 0xf7, 0x92, 0x57, 0xb9, 0xcb, 0x77, 0x36, 0xc1, 0x8e, 0x06, 0x72, 0xfa, 0x03, 0x75, - 0xea, 0x03, 0xc2, 0x70, 0xb9, 0xdb, 0x28, 0x4f, 0xa0, 0x72, 0xb7, 0x51, 0x7e, 0xee, 0xc5, 0xdd, - 0x46, 0x45, 0x33, 0x31, 0xee, 0x36, 0x2a, 0x1b, 0xf9, 0x86, 0x39, 0x9d, 0xc9, 0x22, 0x6e, 0x5f, - 0x05, 0x17, 0xb1, 0xba, 0x40, 0x88, 0xb8, 0xf3, 0x39, 0x4d, 0x80, 0xf3, 0x18, 0xab, 0x35, 0xab, - 0x67, 0xde, 0xbe, 0x9d, 0x16, 0x01, 0xd5, 0x29, 0x05, 0x63, 0x29, 0x60, 0x90, 0x65, 0x52, 0x37, - 0xc3, 0x7e, 0x54, 0x37, 0xd2, 0x49, 0x3f, 0xc6, 0xa4, 0x2d, 0xd4, 0x64, 0x2d, 0xd4, 0x24, 0x2d, - 0xc6, 0xe4, 0x2c, 0x2f, 0x69, 0x7c, 0x9d, 0x9d, 0x06, 0xb7, 0xf6, 0x24, 0xaf, 0xff, 0xcf, 0xed, - 0x9e, 0xb7, 0xe9, 0xbf, 0x75, 0xc2, 0x1e, 0x6f, 0xa7, 0x44, 0xb4, 0x88, 0xb7, 0x53, 0x96, 0x3b, - 0x7c, 0xf1, 0x52, 0x46, 0xf1, 0x7e, 0x21, 0xf4, 0xd2, 0x04, 0xd1, 0x97, 0x24, 0xf0, 0x22, 0xc6, - 0xe7, 0xf6, 0x26, 0x78, 0x11, 0xe3, 0x6b, 0x4c, 0xe4, 0x45, 0x8c, 0x2b, 0x32, 0x94, 0x17, 0x31, - 0x92, 0x6b, 0x16, 0xf5, 0x11, 0x8a, 0xbd, 0x88, 0x31, 0x95, 0x7c, 0x62, 0x90, 0x85, 0xe3, 0x89, - 0x95, 0xb2, 0x2f, 0x5f, 0x5c, 0xe7, 0xe5, 0x8b, 0xc6, 0xd1, 0x01, 0x20, 0x5a, 0x80, 0x42, 0x0f, - 0xe0, 0x68, 0x02, 0x1c, 0x5d, 0xc0, 0xa2, 0x0d, 0x32, 0xe9, 0x83, 0x50, 0x1a, 0x91, 0x7d, 0xb4, - 0xe2, 0xcf, 0xf9, 0xb3, 0x88, 0x19, 0xf6, 0x54, 0x94, 0x86, 0xe9, 0x8d, 0xec, 0x33, 0xfe, 0xac, - 0x86, 0x17, 0x2c, 0x0b, 0xb1, 0xdc, 0xd9, 0xab, 0xdc, 0x0f, 0x12, 0xa0, 0xd9, 0x4f, 0xb7, 0xe3, - 0x76, 0xfc, 0xce, 0xc9, 0xbe, 0xd7, 0x38, 0xf5, 0xbd, 0x3f, 0x5b, 0x8e, 0xf4, 0x30, 0x3f, 0x51, - 0x0a, 0x25, 0x10, 0x12, 0x56, 0xb0, 0xdd, 0x2f, 0x6e, 0xc7, 0x6f, 0x3b, 0xf6, 0xc1, 0x07, 0x7b, - 0xdf, 0x6d, 0xb8, 0xde, 0x9f, 0x33, 0x50, 0x74, 0x10, 0x50, 0x81, 0x88, 0x0e, 0x2c, 0x94, 0xfc, - 0x14, 0x2d, 0xf6, 0xa9, 0xed, 0x36, 0xec, 0xfd, 0x86, 0xe3, 0xef, 0xdb, 0xcd, 0xfa, 0x7f, 0xdc, - 0xba, 0xf7, 0x01, 0x68, 0x07, 0xc5, 0x6f, 0x84, 0x4b, 0xb1, 0x70, 0x69, 0x3b, 0x1d, 0xb7, 0x7e, - 0x62, 0x37, 0x88, 0x16, 0xa2, 0xe5, 0x09, 0xc1, 0xa5, 0xfe, 0x87, 0xdf, 0x71, 0xeb, 0x84, 0x08, - 0x21, 0xb2, 0x0c, 0x22, 0x0d, 0xb7, 0xf9, 0xd1, 0x6f, 0xb5, 0x8f, 0x3d, 0xe7, 0xc0, 0x73, 0x8f, - 0x9b, 0x53, 0xd6, 0x42, 0xbc, 0x10, 0x2f, 0x3f, 0xc2, 0x4b, 0xdd, 0x69, 0xd8, 0x7f, 0x12, 0x25, - 0x44, 0xc9, 0xcf, 0x51, 0xe2, 0x9f, 0xda, 0x6d, 0xd7, 0x1e, 0x87, 0x16, 0xe2, 0x85, 0x78, 0x59, - 0x86, 0x17, 0xb7, 0x75, 0xba, 0xed, 0xbb, 0x4d, 0xcf, 0x69, 0x1f, 0xda, 0x07, 0x8e, 0x6f, 0xd7, - 0xeb, 0x6d, 0xa7, 0xd3, 0x21, 0x62, 0x88, 0x98, 0x65, 0x88, 0xc9, 0xea, 0x1f, 0xff, 0xe0, 0xb8, - 0xd9, 0xf1, 0xda, 0xb6, 0xdb, 0xf4, 0x08, 0x18, 0x02, 0x66, 0x29, 0x60, 0x8e, 0xec, 0x4f, 0xe3, - 0xea, 0xd9, 0x69, 0x9f, 0xb2, 0xdb, 0x42, 0xcc, 0x3c, 0x83, 0xc6, 0xd8, 0x9e, 0xd7, 0x76, 0xf7, - 0x4f, 0x3c, 0x87, 0xe1, 0x85, 0x50, 0x59, 0x0a, 0x95, 0x13, 0xcf, 0x6d, 0xb8, 0xff, 0x75, 0xea, - 0x0c, 0x2c, 0x44, 0xcb, 0xcf, 0xd1, 0xe2, 0x7c, 0xf2, 0x9c, 0x66, 0xdd, 0xa9, 0xfb, 0x76, 0xfd, - 0xc8, 0x6d, 0xfa, 0xef, 0xdb, 0xc7, 0x27, 0x2d, 0xe2, 0x85, 0x78, 0xf9, 0x51, 0x23, 0xb7, 0x61, - 0x37, 0xd9, 0xcc, 0x25, 0x4c, 0x7e, 0x98, 0x84, 0x9a, 0x59, 0x31, 0xe4, 0xd4, 0xfd, 0x46, 0x87, - 0x31, 0x85, 0x60, 0xf9, 0x51, 0xcf, 0xa5, 0xc6, 0x9e, 0x0b, 0x11, 0xf3, 0x74, 0xc4, 0x78, 0x8e, - 0x5f, 0x77, 0x0e, 0xed, 0x93, 0x86, 0xe7, 0x1f, 0x39, 0x5e, 0xdb, 0x3d, 0x20, 0x58, 0x08, 0x96, - 0xa5, 0xfd, 0x16, 0xb7, 0x39, 0xe9, 0xb9, 0xf0, 0xc0, 0x88, 0x68, 0x79, 0x62, 0xa7, 0xa5, 0x71, - 0xcc, 0xfc, 0x43, 0x90, 0xfc, 0xb8, 0x85, 0x3b, 0x01, 0x0a, 0x7b, 0x2c, 0x44, 0xcb, 0x13, 0x8a, - 0xa1, 0x69, 0xbb, 0x9f, 0x3d, 0x39, 0xe2, 0xe5, 0x89, 0xf5, 0xd0, 0xb6, 0xdf, 0x74, 0xdc, 0xf7, - 0x1f, 0xf6, 0x8f, 0xdb, 0x2c, 0x87, 0x08, 0x98, 0x27, 0x71, 0x16, 0x36, 0xe4, 0x08, 0x91, 0x9f, - 0xf4, 0x58, 0x18, 0x53, 0x08, 0x98, 0xa7, 0x02, 0x06, 0xf3, 0x3c, 0x08, 0xc2, 0xd2, 0x33, 0x5e, - 0xd0, 0x5e, 0x16, 0x37, 0x33, 0x4b, 0x6d, 0x45, 0x58, 0xe4, 0x0d, 0x0b, 0x44, 0x55, 0x15, 0x51, - 0x91, 0x7f, 0x2e, 0x06, 0x51, 0x4f, 0x11, 0x0a, 0x85, 0x94, 0x7a, 0x70, 0x2a, 0x29, 0xe2, 0xa2, - 0x10, 0x5c, 0x80, 0x1c, 0x6e, 0x11, 0x0d, 0xc5, 0xa1, 0x01, 0x49, 0xf5, 0x44, 0x5c, 0xe4, 0x8d, - 0x0b, 0x54, 0x75, 0x13, 0x91, 0x91, 0x37, 0x32, 0x40, 0x55, 0x4c, 0x04, 0x46, 0xde, 0xc0, 0xc0, - 0x55, 0x2b, 0x11, 0x1b, 0x85, 0xd0, 0x0c, 0x24, 0x55, 0x12, 0x21, 0x91, 0x37, 0x24, 0x10, 0xd5, - 0x47, 0x44, 0x45, 0xde, 0xa8, 0xc0, 0x54, 0x19, 0x11, 0x17, 0x79, 0xe3, 0x02, 0x4a, 0x4d, 0x44, - 0x38, 0xe4, 0x9e, 0x3c, 0xf0, 0x54, 0x43, 0x04, 0x45, 0x01, 0x3d, 0x8b, 0x1a, 0x7b, 0x16, 0x44, - 0x86, 0x11, 0x2a, 0x20, 0x82, 0x22, 0xf7, 0x7e, 0x05, 0xa0, 0xda, 0x87, 0xa8, 0x28, 0xa4, 0x53, - 0x81, 0xa1, 0xea, 0x21, 0x18, 0x72, 0x0f, 0x11, 0x80, 0xea, 0x1d, 0xa2, 0x22, 0xff, 0xe2, 0x03, - 0x51, 0xa5, 0x43, 0x5c, 0x14, 0x50, 0x7f, 0x20, 0xaa, 0x71, 0x08, 0x8c, 0x42, 0x38, 0x05, 0x1b, - 0x57, 0x84, 0x02, 0xac, 0xba, 0x86, 0xc0, 0xc8, 0x1b, 0x18, 0x3c, 0xef, 0x28, 0x35, 0x1c, 0xda, - 0xc7, 0x27, 0x9e, 0xd3, 0xf6, 0x0f, 0xec, 0x16, 0xef, 0x64, 0x22, 0x4e, 0x5e, 0x84, 0x97, 0xfb, - 0xff, 0x46, 0xbd, 0x26, 0xa1, 0xf2, 0x43, 0xa8, 0xd8, 0x8d, 0xf7, 0xc7, 0x6d, 0xd7, 0xfb, 0x70, - 0x44, 0xc9, 0xe6, 0x6a, 0xbf, 0x28, 0xd9, 0x64, 0xf2, 0x86, 0x0b, 0xc6, 0x84, 0x04, 0x83, 0x2e, - 0x11, 0x91, 0x73, 0xc1, 0xd7, 0xe2, 0x9d, 0xab, 0x44, 0xc9, 0x4b, 0xd1, 0xd2, 0x6a, 0x3b, 0x87, - 0xee, 0x27, 0xff, 0xb0, 0x61, 0xbf, 0xe7, 0x32, 0x16, 0xe2, 0xe4, 0x67, 0x38, 0xe1, 0xd2, 0x75, - 0xa2, 0xe4, 0x07, 0x28, 0x99, 0x9c, 0x54, 0xcd, 0x28, 0x0a, 0x91, 0x42, 0xa4, 0x2c, 0x47, 0x8a, - 0x67, 0xbf, 0xdf, 0xae, 0x11, 0x20, 0x04, 0xc8, 0x0f, 0x42, 0x49, 0x8d, 0xa1, 0x84, 0x48, 0x79, - 0x52, 0x28, 0x61, 0xb3, 0x71, 0xb5, 0x5f, 0x6c, 0x36, 0xb2, 0x8f, 0x80, 0x55, 0x19, 0x12, 0x0f, - 0xac, 0x00, 0x89, 0x06, 0x56, 0x7a, 0x44, 0x04, 0x2b, 0x3a, 0x02, 0x81, 0x95, 0x1b, 0x11, 0xc1, - 0x0a, 0xcd, 0xa4, 0xca, 0x4c, 0x6e, 0x45, 0x26, 0xf3, 0xbd, 0xc9, 0xb3, 0x4a, 0x96, 0x45, 0xc2, - 0x82, 0x9e, 0x65, 0x47, 0xd1, 0x20, 0x0d, 0xd2, 0x70, 0x10, 0x59, 0x7b, 0x02, 0xc3, 0x9d, 0x95, - 0x74, 0xbf, 0xa8, 0xab, 0x60, 0x18, 0xa4, 0x5f, 0xc6, 0x01, 0xae, 0x3a, 0x18, 0xaa, 0xa8, 0x3b, - 0x88, 0x2e, 0xc2, 0xcb, 0x4a, 0xa4, 0xd2, 0xaf, 0x83, 0xf8, 0xef, 0x4a, 0x18, 0x25, 0x69, 0x10, - 0x75, 0x55, 0xf5, 0xe1, 0x0f, 0x92, 0x85, 0x9f, 0x54, 0x87, 0xf1, 0x20, 0x1d, 0x74, 0x07, 0xfd, - 0x24, 0xfb, 0xae, 0x1a, 0x26, 0x61, 0x52, 0xed, 0xab, 0x6b, 0xd5, 0x9f, 0xfd, 0x52, 0xed, 0x87, - 0xd1, 0xdf, 0x95, 0x24, 0x0d, 0x52, 0x55, 0xe9, 0x05, 0x69, 0x70, 0x1e, 0x24, 0xaa, 0xda, 0x4f, - 0x86, 0xd5, 0xb4, 0x7f, 0x9d, 0x8c, 0xff, 0x51, 0x0d, 0x87, 0xd7, 0xdb, 0x95, 0x58, 0x05, 0xdd, - 0x2f, 0xc1, 0x79, 0xd8, 0x0f, 0xd3, 0x9b, 0xea, 0x30, 0x56, 0x17, 0xe1, 0x37, 0x95, 0xcc, 0xbe, - 0xa9, 0x26, 0xa3, 0xf3, 0xc9, 0xef, 0x9e, 0xfe, 0x5a, 0x9d, 0xfc, 0xcf, 0x64, 0x45, 0x62, 0x39, - 0x5e, 0x21, 0xc8, 0x23, 0xac, 0x34, 0xb8, 0x14, 0xe7, 0x06, 0x59, 0x76, 0x1f, 0x1b, 0x27, 0x2c, - 0x7a, 0x7c, 0x0c, 0xa3, 0x9e, 0xb5, 0xb7, 0xb6, 0x21, 0xcc, 0xac, 0x83, 0x49, 0x84, 0xb0, 0xf6, - 0xd6, 0xd6, 0x85, 0x19, 0xd6, 0x9a, 0x84, 0x07, 0x99, 0x91, 0x76, 0x0e, 0xb3, 0x41, 0xb7, 0x32, - 0x8e, 0x89, 0x02, 0x47, 0x98, 0xac, 0xce, 0x60, 0x14, 0x77, 0x95, 0xc8, 0xd7, 0x37, 0x75, 0x07, - 0x75, 0xf3, 0x75, 0x10, 0x8f, 0x3d, 0xc2, 0x9a, 0x26, 0x02, 0xa1, 0x73, 0x60, 0xd6, 0x87, 0x20, - 0xb1, 0xe3, 0xcb, 0xd1, 0x95, 0x8a, 0x52, 0x6b, 0x6f, 0x2d, 0x8d, 0x47, 0x4a, 0xa8, 0xa1, 0xf7, - 0xac, 0xcc, 0x80, 0x49, 0x86, 0x09, 0xc5, 0x30, 0xeb, 0x61, 0x2c, 0x94, 0x5a, 0x4e, 0x58, 0x99, - 0xd8, 0x60, 0x32, 0x8f, 0xc7, 0x53, 0x33, 0x85, 0xfa, 0xa7, 0x4c, 0x02, 0x20, 0x9e, 0x08, 0x20, - 0x10, 0x02, 0x20, 0x62, 0x80, 0x42, 0x10, 0xe0, 0x88, 0x02, 0x1c, 0x61, 0xc0, 0x22, 0x0e, 0x32, - 0x09, 0x84, 0x50, 0x22, 0x21, 0x9e, 0x50, 0xdc, 0xef, 0x22, 0xbc, 0xdb, 0x94, 0x1f, 0x84, 0xee, - 0xf5, 0x15, 0xde, 0x6d, 0x4a, 0x0f, 0x40, 0x33, 0xa2, 0xb1, 0x2e, 0xdc, 0x4c, 0xe9, 0x84, 0x03, - 0x89, 0x78, 0x00, 0x12, 0x10, 0x34, 0x22, 0x02, 0x4b, 0x48, 0x60, 0x89, 0x09, 0x26, 0x41, 0x91, - 0x4d, 0x54, 0x84, 0x13, 0x96, 0xec, 0x23, 0xf7, 0x6e, 0x86, 0x0a, 0x2b, 0xe2, 0x8e, 0xc2, 0x28, - 0x15, 0xcf, 0x0d, 0xee, 0xf3, 0x83, 0x1d, 0x00, 0x53, 0xdb, 0x41, 0x74, 0xa9, 0x60, 0x34, 0xb7, - 0x38, 0x62, 0x05, 0xeb, 0x28, 0x8c, 0x60, 0x32, 0x2e, 0x18, 0xb1, 0x5d, 0x30, 0x7b, 0xa2, 0x1c, - 0x07, 0xb4, 0xfb, 0x30, 0x0e, 0xba, 0x69, 0x38, 0x88, 0xea, 0xe1, 0x65, 0x98, 0x26, 0xe3, 0x07, - 0xa0, 0xc2, 0x29, 0x0f, 0x57, 0x0c, 0xbe, 0xd1, 0x15, 0x0b, 0x76, 0xc5, 0xda, 0xe6, 0x6e, 0x6d, - 0x77, 0x7b, 0x67, 0x73, 0x77, 0x8b, 0x3e, 0x49, 0x42, 0x8c, 0x65, 0xe5, 0x19, 0x0b, 0x8b, 0x57, - 0x38, 0x50, 0x23, 0x4c, 0x52, 0x3b, 0x4d, 0x63, 0x8c, 0xe2, 0xe2, 0x28, 0x8c, 0x9c, 0xbe, 0x1a, - 0xd7, 0xbe, 0x63, 0x5f, 0x8f, 0x46, 0xfd, 0x3e, 0x00, 0x69, 0x3f, 0x0a, 0xbe, 0xe1, 0x19, 0x7d, - 0x1c, 0xf7, 0x54, 0xac, 0x7a, 0xfb, 0x37, 0x33, 0x93, 0x7f, 0x61, 0x90, 0x32, 0xc7, 0x32, 0xa9, - 0xc7, 0x33, 0xc2, 0x27, 0x8a, 0x33, 0x3b, 0x8d, 0x98, 0x2c, 0x4e, 0x83, 0x4b, 0x89, 0xd3, 0xc5, - 0x72, 0x3d, 0x87, 0xb3, 0x5a, 0xc0, 0xbe, 0x6b, 0x8c, 0xcf, 0x4a, 0x1c, 0xae, 0x4d, 0xd2, 0x78, - 0xd4, 0x4d, 0xa3, 0x59, 0xe7, 0xb7, 0x39, 0x7d, 0x59, 0xee, 0xec, 0x5d, 0xf9, 0xad, 0xd9, 0x1b, - 0xf2, 0xdd, 0x24, 0x4c, 0xfc, 0xc6, 0xf8, 0xd5, 0xf8, 0x8d, 0x64, 0xe8, 0x7b, 0xfd, 0x6b, 0xdf, - 0x1d, 0x5e, 0x6f, 0xb7, 0xef, 0xbd, 0x00, 0x7f, 0x7a, 0xb8, 0xe8, 0x77, 0x26, 0xcf, 0xeb, 0x7b, - 0xc1, 0x25, 0xb5, 0x0f, 0xe2, 0xfd, 0xdf, 0x4a, 0x83, 0xcb, 0xed, 0x9a, 0x68, 0xf5, 0xc3, 0x76, - 0x8d, 0xfa, 0x87, 0x27, 0x99, 0x45, 0xfd, 0xc3, 0x2b, 0x80, 0x46, 0xfd, 0xc3, 0xcb, 0xdd, 0x81, - 0xfa, 0x87, 0x55, 0x13, 0x32, 0xea, 0x1f, 0xd0, 0x39, 0x35, 0xf5, 0x0f, 0xaf, 0x8b, 0xc7, 0xd4, - 0x3f, 0x98, 0x47, 0x04, 0x10, 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, - 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x84, 0x77, 0x12, 0xa0, - 0x3a, 0x0b, 0xcb, 0x88, 0x06, 0xf5, 0x0f, 0xe5, 0x21, 0x1e, 0x80, 0x04, 0x04, 0x8d, 0x88, 0xc0, - 0x12, 0x12, 0x58, 0x62, 0x82, 0x49, 0x50, 0x64, 0x13, 0x15, 0xe1, 0x84, 0x25, 0xfb, 0xc8, 0x31, - 0xf5, 0x0f, 0xe2, 0xb9, 0xc1, 0x7d, 0x7e, 0xf0, 0x3b, 0xf5, 0x0f, 0x2b, 0xfe, 0xa2, 0xfe, 0x81, - 0xc4, 0xf6, 0x11, 0xb3, 0xa9, 0x7f, 0x60, 0x7a, 0xfb, 0x91, 0x2b, 0x52, 0xff, 0x50, 0xb8, 0x2b, - 0x6e, 0xfc, 0x5e, 0xab, 0x6d, 0xef, 0xd4, 0x6a, 0xeb, 0x3b, 0xef, 0x76, 0xd6, 0x77, 0xb7, 0xb6, - 0x36, 0xb6, 0x37, 0xa8, 0x84, 0x20, 0x35, 0x06, 0xb3, 0x92, 0x4a, 0x88, 0xd7, 0x38, 0x10, 0x95, - 0x10, 0x45, 0xa4, 0x36, 0x2a, 0x21, 0x4a, 0x1a, 0xa4, 0x78, 0x50, 0xf3, 0x1c, 0xd0, 0x51, 0x09, - 0x51, 0xec, 0x54, 0xf5, 0x76, 0x8d, 0x5a, 0x08, 0x5c, 0x8b, 0xa8, 0x85, 0x28, 0xab, 0xd7, 0x96, - 0x4d, 0x0d, 0x21, 0xed, 0xba, 0x2e, 0xea, 0x21, 0x1e, 0x43, 0x40, 0x2a, 0xf1, 0xb4, 0xe2, 0x6e, - 0x68, 0x61, 0x6c, 0x9d, 0x4c, 0x35, 0xc4, 0x3a, 0xd5, 0x10, 0x4f, 0x33, 0x8c, 0x6a, 0x88, 0x57, - 0x99, 0x48, 0x35, 0xc4, 0x8a, 0x0c, 0xa5, 0x1a, 0x82, 0xac, 0xba, 0xa8, 0x8f, 0x50, 0xec, 0x0c, - 0x40, 0x16, 0xf1, 0xfa, 0x2a, 0xb8, 0x88, 0xd5, 0x85, 0xc4, 0x88, 0x37, 0x57, 0x1b, 0x08, 0xdc, - 0x72, 0x68, 0xb5, 0x66, 0x85, 0xc8, 0xdb, 0xb7, 0xd3, 0x22, 0xbc, 0x3a, 0x61, 0x28, 0xe4, 0xb9, - 0x82, 0x2d, 0x11, 0x12, 0x1b, 0xc6, 0x89, 0x52, 0x18, 0xa5, 0x95, 0x79, 0x8e, 0x20, 0xfa, 0xbc, - 0x40, 0xf4, 0xb9, 0x80, 0xcc, 0xfe, 0xbf, 0x14, 0xff, 0x13, 0xda, 0xe9, 0x32, 0xa2, 0xc3, 0x25, - 0x88, 0x46, 0xe4, 0xd6, 0xd3, 0x92, 0x91, 0xe5, 0xf5, 0xe7, 0x54, 0xbd, 0x16, 0x68, 0x8e, 0x26, - 0xd2, 0xa2, 0x08, 0x76, 0xf4, 0xd0, 0xeb, 0x52, 0xfa, 0x80, 0xac, 0x11, 0xc4, 0xd6, 0x28, 0xea, - 0xa9, 0x8b, 0x30, 0x52, 0xbd, 0xca, 0xfc, 0x43, 0xd0, 0x8d, 0xe3, 0xbb, 0x39, 0xf4, 0x05, 0xd3, - 0x34, 0x3b, 0xbb, 0x0c, 0xdd, 0xbb, 0x98, 0xd6, 0xae, 0xa4, 0x56, 0xae, 0xc0, 0xd6, 0xad, 0xb4, - 0x56, 0xad, 0xd8, 0xd6, 0xac, 0xd8, 0x56, 0xac, 0xcc, 0xd6, 0x6b, 0xb9, 0x09, 0x97, 0x14, 0x1d, - 0xf8, 0x42, 0x76, 0x92, 0xe3, 0xe7, 0xcb, 0xf2, 0xa7, 0x14, 0x77, 0x97, 0xb5, 0x3e, 0x46, 0xdc, - 0x49, 0xa9, 0xc4, 0x13, 0x52, 0xc1, 0x27, 0xa3, 0x52, 0x4f, 0x44, 0xc5, 0x9f, 0x84, 0x8a, 0x3f, - 0x01, 0x95, 0x7d, 0xf2, 0xc9, 0xd3, 0x0c, 0x89, 0x69, 0xf9, 0xae, 0x11, 0x22, 0x72, 0xcf, 0x9b, - 0xe8, 0xfd, 0x6e, 0x5c, 0xec, 0x8a, 0x9f, 0xa8, 0x01, 0x12, 0xb6, 0xf4, 0xc4, 0x0d, 0x93, 0xc0, - 0x61, 0x12, 0x39, 0x46, 0x42, 0x97, 0x95, 0xd8, 0x85, 0x25, 0x78, 0xb1, 0x89, 0x3e, 0x33, 0xac, - 0xaf, 0xa2, 0xcb, 0xc9, 0xa9, 0x87, 0xf0, 0xcd, 0xae, 0x33, 0x3b, 0x65, 0xaf, 0x76, 0x5d, 0xe7, - 0x6a, 0x57, 0xe3, 0x28, 0x01, 0x10, 0x35, 0x40, 0xa1, 0x08, 0x70, 0x54, 0x01, 0x8e, 0x32, 0x60, - 0x51, 0x07, 0x99, 0x14, 0x42, 0x28, 0x95, 0xc8, 0x3e, 0x5a, 0xf1, 0x1b, 0xd2, 0xbe, 0xdb, 0x8c, - 0xf6, 0xbb, 0xe4, 0x78, 0x39, 0x4b, 0xdf, 0x82, 0x37, 0xc0, 0x80, 0x2c, 0x42, 0xc3, 0xd8, 0xa3, - 0x01, 0xb4, 0x6a, 0x14, 0x6a, 0xcb, 0x12, 0xda, 0xa2, 0x33, 0xc4, 0x15, 0x4a, 0xb7, 0x18, 0x5b, - 0x5f, 0xe8, 0x62, 0x39, 0xbb, 0xd8, 0xe6, 0xd6, 0x16, 0x9d, 0xac, 0x5c, 0x44, 0x54, 0xbe, 0x75, - 0x67, 0x5c, 0xa6, 0x82, 0x1a, 0xc4, 0x65, 0xae, 0x30, 0x58, 0x28, 0x25, 0x04, 0xae, 0x32, 0x00, - 0xc9, 0x24, 0x6c, 0x02, 0xae, 0x12, 0x87, 0x6c, 0x02, 0xae, 0xce, 0x6d, 0xd8, 0x04, 0xcc, 0xd9, - 0x60, 0x36, 0x01, 0x4d, 0x2d, 0xbb, 0xd8, 0x04, 0x5c, 0x79, 0xfa, 0x66, 0x13, 0xf0, 0xb5, 0x5f, - 0x6c, 0x02, 0xb2, 0x43, 0xc1, 0x26, 0x60, 0x09, 0xb3, 0xd1, 0xf7, 0x2e, 0xc6, 0x26, 0x60, 0xee, - 0x2e, 0xc6, 0x26, 0x60, 0xe9, 0x88, 0xa8, 0x7c, 0xeb, 0xd8, 0x04, 0x84, 0x0d, 0xe2, 0xd6, 0xf5, - 0x2c, 0xb0, 0x08, 0xef, 0x02, 0x4e, 0xcd, 0x64, 0x1b, 0xf0, 0x25, 0xe6, 0xb1, 0x0d, 0xb8, 0x42, - 0x20, 0xb2, 0x0d, 0xb8, 0x3a, 0xb7, 0x61, 0x1b, 0x30, 0x67, 0x83, 0xd9, 0x06, 0x34, 0xb5, 0xf0, - 0x02, 0x6a, 0x03, 0x9e, 0x87, 0x51, 0x10, 0xdf, 0x00, 0xf4, 0x01, 0x77, 0x49, 0x63, 0x01, 0x2d, - 0xe2, 0xc5, 0x20, 0xcf, 0xb3, 0x0f, 0x73, 0xf1, 0xd9, 0xc2, 0x8a, 0xab, 0x85, 0x9f, 0x48, 0xbc, - 0xdc, 0x87, 0x57, 0x67, 0x3c, 0x86, 0x40, 0x5e, 0x9d, 0x61, 0x46, 0x81, 0x49, 0xbd, 0xb9, 0x99, - 0x85, 0x24, 0xf5, 0xe6, 0x65, 0x2b, 0x18, 0xa9, 0x37, 0xc7, 0xe7, 0x9d, 0xbc, 0x3a, 0xe3, 0xf5, - 0x09, 0x96, 0x57, 0x67, 0xc0, 0xf3, 0x5c, 0x2e, 0x9b, 0xfa, 0x3e, 0x51, 0xf2, 0xea, 0x8c, 0xa7, - 0x58, 0xc5, 0xab, 0x33, 0x5e, 0x6a, 0x1c, 0xaf, 0xce, 0xc0, 0xeb, 0x05, 0x19, 0xdb, 0x03, 0x32, - 0xfb, 0x3a, 0x8d, 0x93, 0xf9, 0xd3, 0xf2, 0x5e, 0x0d, 0x39, 0x16, 0xf0, 0x5e, 0x0d, 0x23, 0x43, - 0x4b, 0x69, 0x6f, 0xd8, 0xf8, 0xa5, 0x44, 0x4e, 0x34, 0xe7, 0xc7, 0x5a, 0x9b, 0x48, 0x32, 0x18, - 0xb1, 0x28, 0x06, 0x2c, 0x8a, 0xf1, 0xca, 0x60, 0xb8, 0xba, 0x3c, 0x44, 0x48, 0x7a, 0xc1, 0x4c, - 0x2b, 0x1a, 0xe9, 0xe8, 0xea, 0xe9, 0xa7, 0x9e, 0x8c, 0x58, 0x7c, 0x3e, 0x2a, 0xf6, 0x6f, 0x2c, - 0xd8, 0xaf, 0x75, 0xfb, 0x33, 0x98, 0x1f, 0x17, 0x8b, 0xf9, 0xe2, 0x90, 0x57, 0xcc, 0xdf, 0x54, - 0x10, 0xb6, 0x75, 0x61, 0x1a, 0x03, 0xcb, 0x05, 0xe6, 0xa0, 0x15, 0xe6, 0x9c, 0x62, 0x1c, 0x2f, - 0x7f, 0x37, 0x28, 0xc0, 0x05, 0xac, 0xc9, 0x47, 0x9e, 0xc4, 0xfd, 0xcb, 0xe2, 0x6e, 0x24, 0xcc, - 0x8e, 0xf4, 0xee, 0xfd, 0xdd, 0x05, 0x39, 0x7b, 0xb1, 0x57, 0x2f, 0x14, 0x3e, 0xe2, 0xa2, 0x63, - 0x74, 0x45, 0xe3, 0x48, 0x8a, 0xae, 0x51, 0x13, 0xed, 0x23, 0x24, 0xda, 0x47, 0x43, 0xf4, 0x8e, - 0x7c, 0x98, 0x45, 0x40, 0x8a, 0x5e, 0xf5, 0x7f, 0x17, 0x76, 0x8b, 0x77, 0x9c, 0x85, 0xc8, 0x5f, - 0xb4, 0xe3, 0xe8, 0xb9, 0x7b, 0x47, 0xdb, 0xac, 0xa3, 0xce, 0x59, 0x46, 0x01, 0xb3, 0x8a, 0xba, - 0x67, 0x11, 0xc5, 0xcc, 0x1a, 0x8a, 0x99, 0x25, 0x94, 0x31, 0x2b, 0x68, 0x76, 0x97, 0x46, 0xd7, - 0xdd, 0x31, 0xd6, 0xbc, 0x1a, 0xad, 0x44, 0xa3, 0xab, 0x73, 0xa5, 0xef, 0x48, 0xe2, 0x2e, 0xcd, - 0x3c, 0x30, 0x48, 0xd7, 0x41, 0x91, 0xd6, 0x01, 0x7c, 0xed, 0x83, 0xf6, 0x12, 0x06, 0xea, 0x05, - 0x0d, 0xce, 0x4b, 0x19, 0x90, 0x17, 0x37, 0x08, 0x2f, 0x6e, 0xe0, 0x5d, 0xd6, 0x60, 0x7b, 0xb9, - 0x0e, 0xd7, 0xb5, 0x0f, 0xa4, 0x0b, 0x1a, 0x3c, 0x97, 0x30, 0x60, 0xbe, 0x38, 0x48, 0xfe, 0x30, - 0xb9, 0x96, 0xe5, 0x84, 0x4f, 0x43, 0x19, 0xa3, 0xf7, 0x96, 0x5d, 0x11, 0xb7, 0xe9, 0x6a, 0xbe, - 0x35, 0x97, 0x24, 0x8a, 0x24, 0x8a, 0x24, 0x8a, 0x24, 0x0a, 0x8b, 0x44, 0xe9, 0xbe, 0x45, 0xd6, - 0xba, 0xe8, 0x07, 0x05, 0x1e, 0x2c, 0xfe, 0x34, 0x6e, 0x4d, 0xcd, 0xd1, 0xec, 0x0f, 0x32, 0xe4, - 0xf8, 0x62, 0xe4, 0xf7, 0x92, 0xe4, 0xf6, 0x02, 0xe5, 0xf5, 0xd2, 0xe4, 0xf4, 0x62, 0xe5, 0xf3, - 0x62, 0xe5, 0xf2, 0x32, 0xe5, 0xf1, 0xe5, 0xd6, 0xbd, 0x88, 0x91, 0xbb, 0x67, 0x11, 0x47, 0x45, - 0xa3, 0x2b, 0x15, 0x4f, 0xe7, 0xd0, 0x04, 0x44, 0x9d, 0x79, 0xb5, 0x55, 0x13, 0x60, 0x8b, 0x13, - 0x8d, 0xae, 0xc6, 0x1f, 0x56, 0xb9, 0x21, 0x2b, 0x4a, 0xfa, 0x2c, 0x52, 0xf2, 0x2c, 0x52, 0xea, - 0x2c, 0x4b, 0xe2, 0xac, 0x51, 0x1a, 0xa6, 0xb1, 0x57, 0x20, 0xe5, 0x5c, 0x72, 0x21, 0xe8, 0xcb, - 0x38, 0x9f, 0x64, 0x65, 0xc2, 0xca, 0x84, 0x95, 0x09, 0x2b, 0x13, 0x56, 0x26, 0xac, 0x4c, 0x1e, - 0x89, 0x38, 0xa3, 0x30, 0x4a, 0xdf, 0x6d, 0x0a, 0x2a, 0x4a, 0x04, 0xac, 0xd9, 0x12, 0x76, 0xb3, - 0x9a, 0xac, 0x5d, 0x48, 0xf2, 0xb6, 0xb3, 0x0a, 0xdd, 0x80, 0x2a, 0xf4, 0xe6, 0x33, 0xc9, 0x97, - 0x2f, 0xdd, 0xca, 0xda, 0xac, 0x45, 0xa8, 0x3f, 0x13, 0xea, 0xb5, 0xcd, 0xdd, 0xda, 0xee, 0xf6, - 0xce, 0xe6, 0xee, 0x16, 0x31, 0x8f, 0x41, 0x88, 0xe4, 0x58, 0x71, 0xc6, 0xd6, 0x49, 0xf1, 0xad, - 0x93, 0xe1, 0xf5, 0x76, 0x25, 0x8c, 0x52, 0x15, 0x5f, 0x04, 0x5d, 0x55, 0x09, 0x7a, 0xbd, 0x58, - 0x25, 0x82, 0x4e, 0x74, 0x97, 0xd8, 0xc7, 0x46, 0x0a, 0x1b, 0x29, 0x6c, 0xa4, 0xb0, 0x91, 0xc2, - 0x46, 0x0a, 0x1b, 0x29, 0x62, 0x22, 0xce, 0x24, 0x57, 0xc9, 0xc8, 0x50, 0xf7, 0xb3, 0xd4, 0xc6, - 0xef, 0x02, 0x6c, 0x69, 0x05, 0xe9, 0xff, 0xcf, 0xde, 0x17, 0x35, 0xb5, 0x8d, 0x2c, 0xdf, 0xbf, - 0xef, 0xa7, 0xa0, 0x54, 0xf7, 0x21, 0xa9, 0x5a, 0xc5, 0x40, 0x0c, 0x2c, 0xbc, 0x09, 0x2c, 0x88, - 0x12, 0x61, 0x5c, 0xb2, 0xe0, 0x66, 0x6f, 0x96, 0x55, 0x09, 0x7b, 0x20, 0xfa, 0xc7, 0xc8, 0x2e, - 0x49, 0x26, 0xe1, 0xb7, 0xe1, 0xbb, 0xff, 0xcb, 0xb2, 0x2d, 0x08, 0xe0, 0x4d, 0x00, 0x5b, 0xea, - 0x33, 0x3e, 0x7e, 0x58, 0x88, 0x17, 0x92, 0xd6, 0xf8, 0x74, 0xf7, 0xe9, 0x9e, 0x3e, 0x33, 0x99, - 0x4a, 0x62, 0x31, 0x1d, 0x15, 0xe3, 0xef, 0x57, 0xaf, 0x3e, 0xad, 0x9a, 0xdb, 0xa1, 0x79, 0x6e, - 0x99, 0xfb, 0xa7, 0xff, 0xac, 0xfd, 0x5e, 0xbf, 0xd9, 0x79, 0xfd, 0xcf, 0xd6, 0xcd, 0xfd, 0x37, - 0xbf, 0x3f, 0xf6, 0x63, 0x6b, 0xbf, 0x6f, 0xdd, 0xec, 0xcc, 0xf8, 0x3f, 0x9b, 0x37, 0x3b, 0xbf, - 0xf8, 0x77, 0x6c, 0xdc, 0xbc, 0x7a, 0xf0, 0xa3, 0xa3, 0xf7, 0xd7, 0x67, 0xfd, 0x42, 0x7d, 0xc6, - 0x2f, 0xbc, 0x9d, 0xf5, 0x0b, 0x6f, 0x67, 0xfc, 0xc2, 0x4c, 0x93, 0xd6, 0x67, 0xfc, 0xc2, 0xc6, - 0xcd, 0xf7, 0x07, 0x3f, 0xff, 0xea, 0xf1, 0x1f, 0xdd, 0xbc, 0x79, 0xfd, 0x7d, 0xd6, 0xff, 0xdb, - 0xba, 0xf9, 0xbe, 0xf3, 0xfa, 0xf5, 0x7f, 0x0c, 0x96, 0x1a, 0xcb, 0x5a, 0x6a, 0xc4, 0x2a, 0xba, - 0xf8, 0x7c, 0xd6, 0x4f, 0x84, 0x56, 0x1a, 0x0f, 0xcc, 0x63, 0xa1, 0xc1, 0x42, 0x83, 0x85, 0x06, - 0x0b, 0x0d, 0x16, 0x1a, 0x2c, 0x34, 0x58, 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, 0x83, 0x85, - 0x86, 0xec, 0x42, 0x63, 0x90, 0xc6, 0xe2, 0x26, 0x41, 0xef, 0xd8, 0xc4, 0x92, 0x82, 0x25, 0x05, - 0x4b, 0x0a, 0x96, 0x14, 0x2c, 0x29, 0x58, 0x52, 0x88, 0x89, 0x38, 0xc3, 0x28, 0xce, 0xfe, 0x10, - 0x54, 0x4b, 0x6c, 0x70, 0x06, 0xf4, 0xde, 0x8b, 0x33, 0xa0, 0x08, 0xbc, 0xe6, 0x81, 0x59, 0x9c, - 0x01, 0x45, 0x8b, 0xce, 0x3f, 0x42, 0x9d, 0x33, 0xa0, 0x4f, 0x86, 0xfa, 0xfa, 0x06, 0x87, 0x3f, - 0x41, 0x88, 0x90, 0x1c, 0x2b, 0xd8, 0x28, 0x29, 0xdf, 0x2d, 0xd2, 0xa4, 0x77, 0x61, 0x5e, 0x4d, - 0xbc, 0x56, 0x48, 0xa3, 0xe4, 0x8e, 0x4d, 0x6c, 0x94, 0xb0, 0x51, 0xc2, 0x46, 0x09, 0x1b, 0x25, - 0x6c, 0x94, 0xb0, 0x51, 0x22, 0xaa, 0x51, 0x42, 0xb5, 0x2c, 0x3b, 0x25, 0xec, 0x94, 0xb0, 0x53, - 0xc2, 0x4e, 0x09, 0x3b, 0x25, 0x2f, 0x82, 0x3a, 0xd5, 0xb2, 0x6c, 0x98, 0x80, 0x36, 0x4c, 0x78, - 0x5a, 0xde, 0x8f, 0x69, 0x9e, 0xa7, 0xe5, 0xfd, 0x92, 0x51, 0x3c, 0x2d, 0xaf, 0x6a, 0xf7, 0x31, - 0xd2, 0xeb, 0x34, 0x53, 0x97, 0x66, 0xd4, 0x15, 0xd4, 0xf4, 0x2b, 0x4c, 0x62, 0xcf, 0x8f, 0x3d, - 0xbf, 0x9f, 0x80, 0x85, 0x3d, 0xbf, 0xd9, 0xf0, 0x65, 0xcf, 0xef, 0x89, 0x86, 0xb1, 0xe7, 0x27, - 0x8e, 0xda, 0xc9, 0xeb, 0xf9, 0x49, 0x49, 0x4f, 0x2b, 0x14, 0x5b, 0xfc, 0xc4, 0xa0, 0xbf, 0x3f, - 0xad, 0x9a, 0xdb, 0x96, 0xb9, 0x1f, 0x9a, 0xe7, 0xa7, 0xff, 0xd4, 0x6f, 0xfe, 0xfa, 0xeb, 0xcd, - 0x4f, 0xde, 0xa0, 0x44, 0x80, 0x57, 0xf5, 0x94, 0x93, 0x68, 0xe2, 0xb8, 0x9f, 0x8d, 0x8f, 0xff, - 0xaf, 0xf4, 0xc6, 0x9e, 0xb4, 0xf3, 0x59, 0x5d, 0x86, 0x83, 0xc9, 0x65, 0x7f, 0xb5, 0xfe, 0x40, - 0xc5, 0x9d, 0x9c, 0x6d, 0x9a, 0xb1, 0xca, 0xbe, 0xf6, 0x93, 0x2f, 0xe6, 0xf4, 0xd0, 0xea, 0xda, - 0xfd, 0x37, 0xd2, 0x07, 0xef, 0xd4, 0x06, 0x49, 0x3f, 0xeb, 0x77, 0xfa, 0xbd, 0xb4, 0xf8, 0xae, - 0x36, 0x4a, 0xa1, 0xb5, 0x9e, 0xba, 0x52, 0xbd, 0xc9, 0x97, 0x5a, 0x2f, 0x8a, 0xbf, 0x98, 0xf9, - 0xdd, 0x72, 0x66, 0x37, 0xcc, 0xc2, 0xb3, 0x30, 0x55, 0xb5, 0x5e, 0x3a, 0xa8, 0x65, 0xbd, 0xab, - 0x74, 0xf4, 0x9f, 0x5a, 0x71, 0x5b, 0x7c, 0x7a, 0xfb, 0xed, 0xf8, 0x12, 0xc2, 0xa5, 0xb9, 0x74, - 0x50, 0xeb, 0x0b, 0xab, 0x3f, 0xa8, 0xeb, 0xea, 0x4f, 0x43, 0xaf, 0xb6, 0x65, 0x24, 0xa2, 0x45, - 0x24, 0xa2, 0x25, 0x54, 0x6d, 0x0b, 0xa8, 0x6c, 0xe8, 0x57, 0x1c, 0xf6, 0x61, 0xc2, 0xbd, 0x51, - 0xc9, 0xad, 0xab, 0xc9, 0xb0, 0x93, 0xc5, 0x13, 0x92, 0xdf, 0x1c, 0x3f, 0xac, 0x33, 0x79, 0xd6, - 0xa0, 0x35, 0x79, 0xc2, 0xc0, 0x49, 0xa3, 0x34, 0x70, 0x47, 0x8f, 0x16, 0xb8, 0xe9, 0x20, 0xf0, - 0x7b, 0x57, 0x81, 0x33, 0xb8, 0xda, 0x6c, 0x8f, 0xac, 0xfe, 0x4d, 0xcf, 0x24, 0x51, 0xce, 0xbf, - 0x54, 0x92, 0x2f, 0x56, 0xe5, 0x83, 0xc2, 0x7d, 0xaf, 0x1c, 0xec, 0x2e, 0x1e, 0x49, 0x25, 0xa0, - 0x68, 0x7c, 0xe0, 0x42, 0xa6, 0xcc, 0xa4, 0x3f, 0xcc, 0x54, 0x52, 0x66, 0xeb, 0xfc, 0xc7, 0x33, - 0x1f, 0x7e, 0x30, 0xa1, 0x24, 0xef, 0x29, 0xf7, 0x5e, 0xe6, 0xd2, 0x5b, 0xdf, 0x55, 0xb4, 0xb8, - 0x2b, 0x6c, 0x65, 0x57, 0xd5, 0xb2, 0xae, 0xbc, 0x35, 0x5d, 0x79, 0x0b, 0xba, 0xda, 0x56, 0xb3, - 0x5e, 0x19, 0xbd, 0xec, 0x7b, 0x8f, 0x2b, 0xba, 0xa0, 0xbf, 0xd2, 0x8b, 0xf9, 0x2b, 0xba, 0x90, - 0xbf, 0xb2, 0xbd, 0xcf, 0x2a, 0xf7, 0x3a, 0x05, 0xec, 0x6d, 0x56, 0xbd, 0x97, 0x29, 0x66, 0xef, - 0x52, 0xcc, 0x5e, 0xa5, 0x8c, 0xbd, 0x49, 0xbd, 0x3b, 0x93, 0x55, 0x5d, 0xa0, 0x6f, 0x94, 0x5f, - 0x49, 0xcc, 0x8c, 0x39, 0x65, 0x57, 0x14, 0xb3, 0x12, 0x4d, 0x45, 0xb3, 0x2e, 0x95, 0x0f, 0xdb, - 0x48, 0x18, 0xb2, 0x11, 0x34, 0x5c, 0x23, 0x65, 0xa8, 0x46, 0xdc, 0x30, 0x8d, 0xb8, 0x21, 0x1a, - 0x59, 0xc3, 0x33, 0xcb, 0xb5, 0x9d, 0x5c, 0xf9, 0x90, 0x8c, 0xb4, 0xc3, 0x48, 0x25, 0xcc, 0xc5, - 0x88, 0x99, 0x87, 0xe1, 0xa1, 0xa3, 0x4b, 0x79, 0xe8, 0xe8, 0xe9, 0x52, 0x85, 0x40, 0x11, 0x12, - 0x10, 0x51, 0xd2, 0x0f, 0x51, 0x92, 0x0f, 0x19, 0x52, 0x0f, 0x8e, 0xf2, 0xcc, 0x99, 0xf2, 0x71, - 0x9e, 0xe1, 0xf1, 0x3d, 0xd5, 0xbb, 0x5b, 0x73, 0x55, 0xcc, 0xae, 0x71, 0x38, 0x00, 0x0a, 0xd0, - 0x18, 0x40, 0x2e, 0x73, 0x63, 0xf2, 0x65, 0xd3, 0x38, 0xbe, 0xf2, 0x72, 0xa3, 0x9d, 0x2e, 0xe7, - 0x1a, 0x7e, 0x7d, 0xcd, 0xa3, 0xd4, 0x0c, 0x7b, 0x51, 0x98, 0x56, 0x33, 0xd1, 0x70, 0xe7, 0x1f, - 0xe7, 0x2c, 0x03, 0x6a, 0x27, 0x91, 0xb3, 0x0c, 0x9c, 0x65, 0xe0, 0x2c, 0xc3, 0x0b, 0x96, 0x92, - 0xb3, 0x0c, 0xda, 0x05, 0xfe, 0x87, 0x09, 0x60, 0x9d, 0xb3, 0x0c, 0x65, 0x9a, 0xc0, 0x59, 0x06, - 0x21, 0x89, 0x42, 0x46, 0xc2, 0x58, 0x8e, 0xd6, 0x4c, 0x65, 0xb3, 0x0c, 0xa5, 0x97, 0x10, 0x33, - 0x43, 0x4e, 0xc9, 0xf5, 0xc4, 0xac, 0x34, 0xc3, 0x49, 0x06, 0x4e, 0x32, 0x70, 0x92, 0x01, 0x20, - 0x2d, 0xc9, 0x4a, 0x4f, 0xd5, 0xa4, 0xa9, 0x8a, 0xd2, 0x55, 0xb1, 0xf4, 0x72, 0x26, 0x19, 0x24, - 0x1c, 0xf3, 0xc1, 0x31, 0x86, 0xbb, 0x86, 0x20, 0x1d, 0xe7, 0x71, 0xca, 0xfd, 0x4d, 0x0d, 0x48, - 0x34, 0xf7, 0x37, 0x1f, 0xd9, 0x16, 0xba, 0x6d, 0xd4, 0x73, 0x67, 0x13, 0x06, 0xd2, 0xdc, 0xd9, - 0x7c, 0x1c, 0xc2, 0x20, 0x7b, 0x9a, 0xa9, 0x35, 0xb2, 0x97, 0xdb, 0x99, 0x4f, 0x59, 0xee, 0x28, - 0x35, 0x13, 0x15, 0x76, 0x3e, 0x87, 0x67, 0x51, 0x2f, 0xca, 0xae, 0x2b, 0xd9, 0xd2, 0xfc, 0xc1, - 0x00, 0x6e, 0x6b, 0xa2, 0xb6, 0x15, 0xb8, 0xad, 0xc9, 0x6d, 0x4d, 0x6e, 0x6b, 0xbe, 0x60, 0x29, - 0x4b, 0xdf, 0xd6, 0x8c, 0x55, 0x74, 0xf1, 0xf9, 0xac, 0x9f, 0xa4, 0xd5, 0x6d, 0x6d, 0xde, 0x9a, - 0x40, 0xa9, 0xb6, 0x6e, 0x09, 0x41, 0x40, 0x62, 0xa8, 0x3a, 0x41, 0x88, 0x49, 0x14, 0x62, 0x12, - 0x86, 0x8c, 0xc4, 0xb1, 0x1c, 0x9d, 0x99, 0xca, 0xb6, 0x37, 0xa7, 0x51, 0xbd, 0xfa, 0xed, 0xcd, - 0xc2, 0x92, 0x6a, 0xb7, 0x37, 0xd7, 0xb8, 0xbd, 0xc9, 0xed, 0x4d, 0x6e, 0x6f, 0xca, 0x4f, 0x4b, - 0xb2, 0xd2, 0x53, 0x35, 0x69, 0xaa, 0xa2, 0x74, 0x55, 0x79, 0xda, 0x2a, 0x0c, 0xe8, 0xaa, 0xf3, - 0x70, 0xd8, 0xcb, 0xcc, 0x4b, 0x95, 0x25, 0x51, 0x47, 0xce, 0x9d, 0x3f, 0xf7, 0xec, 0x92, 0x71, - 0xf1, 0xcf, 0x1a, 0x2f, 0xfe, 0x11, 0x93, 0xea, 0x04, 0xa6, 0x3c, 0x69, 0xa9, 0x4f, 0x6c, 0x0a, - 0x14, 0x9b, 0x0a, 0x65, 0xa6, 0xc4, 0x6a, 0x53, 0x63, 0xc5, 0x29, 0x52, 0x4c, 0xaa, 0x2c, 0x0c, - 0xa9, 0x46, 0x21, 0xf1, 0xd3, 0xf8, 0x57, 0x85, 0x72, 0x42, 0x78, 0xc2, 0x14, 0x97, 0x38, 0x25, - 0x26, 0x50, 0xc1, 0x89, 0x54, 0x6a, 0x42, 0x15, 0x9f, 0x58, 0xc5, 0x27, 0x58, 0xd9, 0x89, 0x56, - 0x46, 0xc2, 0x15, 0x92, 0x78, 0xc5, 0x25, 0xe0, 0xc2, 0xa0, 0xf3, 0x5e, 0x78, 0x91, 0xca, 0x0b, - 0x0a, 0xd3, 0x38, 0x3a, 0x36, 0xef, 0x77, 0x5e, 0x79, 0x0f, 0x98, 0xa0, 0x25, 0x27, 0x6a, 0x80, - 0x84, 0x2d, 0x3d, 0x71, 0xc3, 0x24, 0x70, 0x98, 0x44, 0x8e, 0x91, 0xd0, 0x65, 0x25, 0x76, 0x61, - 0x09, 0xbe, 0xf8, 0x08, 0xc5, 0x5c, 0xb1, 0x3b, 0x33, 0xe2, 0xa9, 0x78, 0x78, 0xa9, 0x92, 0xf1, - 0xf4, 0xb2, 0xc0, 0xa8, 0x37, 0xad, 0x7e, 0xeb, 0x02, 0x6d, 0xb3, 0xe3, 0xe1, 0xe5, 0xe8, 0xc3, - 0x15, 0xe6, 0x02, 0xbf, 0xd1, 0x19, 0x1f, 0x7e, 0x56, 0x42, 0x36, 0x65, 0x66, 0xba, 0xa1, 0x88, - 0xcd, 0x19, 0x52, 0x5c, 0x52, 0x5c, 0x52, 0x5c, 0x52, 0x5c, 0x52, 0x5c, 0x52, 0x5c, 0x8d, 0x28, - 0x6e, 0x1c, 0x26, 0x49, 0xff, 0xab, 0x29, 0x32, 0xc5, 0xde, 0x4d, 0xb3, 0x1b, 0x02, 0x4d, 0xf3, - 0xc2, 0xf8, 0x42, 0x55, 0xae, 0x4f, 0x9f, 0xf5, 0x92, 0x99, 0x27, 0x56, 0x26, 0xc7, 0x95, 0x8b, - 0x4d, 0x64, 0xc2, 0xf9, 0xdd, 0x03, 0x33, 0x4f, 0xc2, 0xde, 0x50, 0xc9, 0xd9, 0x03, 0x9d, 0x69, - 0xe7, 0x7e, 0x12, 0x76, 0x46, 0x85, 0x74, 0x23, 0xba, 0x88, 0xf2, 0x83, 0xe1, 0x57, 0xc5, 0xda, - 0x7b, 0xf3, 0xbb, 0x60, 0xd7, 0x09, 0xbf, 0xd1, 0x75, 0xe6, 0xec, 0x3a, 0x9b, 0x6f, 0xe9, 0x3b, - 0x7a, 0xf2, 0x41, 0xb9, 0x56, 0x9d, 0xb2, 0x2f, 0x26, 0xd8, 0x12, 0x29, 0x7b, 0xe1, 0x15, 0x1f, - 0x04, 0x33, 0xd3, 0x2e, 0xa1, 0xa7, 0x6b, 0xdc, 0x3d, 0xf6, 0xa0, 0x56, 0xe8, 0x60, 0x8b, 0xef, - 0x6a, 0x3f, 0x4e, 0x7b, 0x57, 0x71, 0x8c, 0x8c, 0x5c, 0xd8, 0x2f, 0xf7, 0xd4, 0xa7, 0x30, 0x47, - 0xd3, 0xc3, 0xc1, 0x24, 0xcc, 0xc8, 0xbf, 0xe4, 0xf0, 0x1b, 0xef, 0xce, 0xd3, 0x06, 0xcd, 0xc9, - 0x33, 0x06, 0x8d, 0xf1, 0x33, 0x1e, 0x8e, 0x1f, 0xf1, 0xb7, 0xe5, 0xf4, 0xd9, 0x0a, 0xfd, 0xd5, - 0xe8, 0xaa, 0x5e, 0x78, 0x2d, 0x50, 0x49, 0x74, 0xc7, 0x2a, 0xea, 0x88, 0xa8, 0x23, 0xfa, 0x09, - 0x5e, 0xa8, 0x23, 0x9a, 0x0d, 0x5f, 0xea, 0x88, 0x9e, 0x4a, 0x5f, 0xa8, 0x23, 0x92, 0xc6, 0x28, - 0xa9, 0x23, 0xfa, 0xf7, 0xf8, 0x47, 0x1d, 0x91, 0xfc, 0xc4, 0x29, 0x31, 0x81, 0x0a, 0x4e, 0xa4, - 0x52, 0x13, 0xaa, 0xf8, 0xc4, 0x2a, 0x3e, 0xc1, 0xca, 0x4e, 0xb4, 0x72, 0x9a, 0x48, 0x2b, 0xd4, - 0x11, 0xcd, 0x36, 0x88, 0x3a, 0xa2, 0x67, 0x27, 0x66, 0x0e, 0x59, 0xe2, 0x26, 0x6a, 0x80, 0x84, - 0x2d, 0x3d, 0x71, 0xc3, 0x24, 0x70, 0x98, 0x44, 0x8e, 0x91, 0xd0, 0x65, 0x25, 0x76, 0x61, 0x09, - 0xbe, 0xf8, 0x08, 0xe5, 0x0f, 0x59, 0x8e, 0x50, 0x35, 0x69, 0x0d, 0x9b, 0x12, 0xd3, 0xec, 0x0a, - 0xd5, 0x44, 0x3a, 0x38, 0x82, 0x1b, 0xa5, 0x99, 0x95, 0x65, 0x89, 0x4c, 0x67, 0x38, 0x8c, 0x62, - 0xbb, 0xa7, 0x46, 0xb1, 0x76, 0x44, 0x82, 0xe3, 0x61, 0xaf, 0x27, 0x10, 0x68, 0x87, 0xe1, 0x37, - 0xf9, 0x46, 0x1e, 0x25, 0x5d, 0x95, 0xa8, 0xee, 0xee, 0xf5, 0xc4, 0x44, 0x8e, 0x12, 0x49, 0x77, - 0x4f, 0x4a, 0xec, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, 0xab, 0xbf, - 0x25, 0xab, 0xfe, 0x28, 0xb1, 0x7b, 0xbe, 0x69, 0x94, 0xd8, 0x3d, 0xbf, 0xda, 0xa2, 0x4e, 0x68, - 0x4e, 0x66, 0x52, 0x62, 0xa7, 0x7b, 0x16, 0xb9, 0xdf, 0x03, 0xa0, 0xeb, 0xcc, 0xd9, 0x75, 0x28, - 0xb1, 0xd3, 0x95, 0x0f, 0xca, 0xb5, 0x8a, 0x12, 0x3b, 0xc9, 0x96, 0x50, 0x62, 0xf7, 0xef, 0x76, - 0xc1, 0x2a, 0x80, 0x6e, 0x65, 0x10, 0x14, 0xd8, 0xc9, 0xb1, 0x80, 0x02, 0x3b, 0xed, 0xdc, 0x4b, - 0x57, 0x79, 0x5d, 0x2f, 0xbc, 0xa6, 0xb8, 0xae, 0xaa, 0x0f, 0x54, 0x25, 0x49, 0x3f, 0x11, 0x27, - 0xae, 0xfb, 0xc1, 0x2a, 0x8a, 0xeb, 0x28, 0xae, 0xfb, 0x09, 0x5e, 0x28, 0xae, 0x9b, 0x0d, 0x5f, - 0x8a, 0xeb, 0x9e, 0x4a, 0x5d, 0x28, 0xae, 0x93, 0xc6, 0x26, 0x29, 0xae, 0xfb, 0xf7, 0xf8, 0x47, - 0x71, 0x9d, 0xfc, 0xc4, 0x29, 0x31, 0x81, 0x0a, 0x4e, 0xa4, 0x52, 0x13, 0xaa, 0xf8, 0xc4, 0x2a, - 0x3e, 0xc1, 0xca, 0x4e, 0xb4, 0x72, 0x1a, 0x48, 0x2b, 0x14, 0xd7, 0xcd, 0x36, 0x88, 0xe2, 0xba, - 0x67, 0x27, 0x66, 0x8e, 0x57, 0xe2, 0x26, 0x6a, 0x80, 0x84, 0x2d, 0x3d, 0x71, 0xc3, 0x24, 0x70, - 0x98, 0x44, 0x8e, 0x91, 0xd0, 0x65, 0x25, 0x76, 0x61, 0x09, 0xbe, 0xf8, 0x08, 0x29, 0xae, 0x9b, - 0x6b, 0x0d, 0x4c, 0x71, 0x1d, 0xaa, 0x23, 0x50, 0x5c, 0xf7, 0x72, 0x23, 0x29, 0xae, 0xd3, 0x26, - 0x57, 0x51, 0x5c, 0xf7, 0xeb, 0x19, 0x8a, 0xe2, 0x3a, 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, - 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x6f, 0xbe, 0x11, 0x8f, 0xe2, 0xba, 0xe7, 0x9b, 0x46, 0x71, 0xdd, - 0xf3, 0xab, 0x2d, 0x2a, 0x84, 0xe6, 0x64, 0x26, 0xc5, 0x75, 0xba, 0x67, 0x91, 0xfb, 0x3d, 0x00, - 0xba, 0xce, 0x9c, 0x5d, 0x87, 0xe2, 0x3a, 0x5d, 0xf9, 0xa0, 0x5c, 0xab, 0x28, 0xae, 0x93, 0x6c, - 0x09, 0xc5, 0x75, 0xff, 0x6e, 0x17, 0xa8, 0xfa, 0xe7, 0xae, 0x0c, 0x82, 0xe2, 0x3a, 0x39, 0x16, - 0x50, 0x5c, 0xa7, 0x9d, 0x7b, 0xe9, 0x29, 0xae, 0xb3, 0x47, 0x4f, 0x48, 0x71, 0x5d, 0x55, 0x1f, - 0xa8, 0xfa, 0x36, 0x50, 0x71, 0xaa, 0xe4, 0xc9, 0xeb, 0x7e, 0xb4, 0x8b, 0x02, 0x3b, 0x0a, 0xec, - 0x7e, 0x82, 0x18, 0x0a, 0xec, 0x66, 0xc3, 0x97, 0x02, 0xbb, 0xa7, 0xd2, 0x17, 0x0a, 0xec, 0xa4, - 0x31, 0x4a, 0x0a, 0xec, 0xfe, 0x3d, 0xfe, 0x51, 0x60, 0x27, 0x3f, 0x71, 0x4a, 0x4c, 0xa0, 0x82, - 0x13, 0xa9, 0xd4, 0x84, 0x2a, 0x3e, 0xb1, 0x8a, 0x4f, 0xb0, 0xb2, 0x13, 0xad, 0x9c, 0x26, 0xd2, - 0x0a, 0x05, 0x76, 0xb3, 0x0d, 0xa2, 0xc0, 0xee, 0xd9, 0x89, 0x99, 0x23, 0x96, 0xb8, 0x89, 0x1a, - 0x20, 0x61, 0x4b, 0x4f, 0xdc, 0x30, 0x09, 0x1c, 0x26, 0x91, 0x63, 0x24, 0x74, 0x59, 0x89, 0x5d, - 0x58, 0x82, 0x2f, 0x3e, 0x42, 0x0a, 0xec, 0xe6, 0x5a, 0x03, 0x53, 0x60, 0x87, 0xea, 0x08, 0x14, - 0xd8, 0xbd, 0xdc, 0x48, 0x0a, 0xec, 0xb4, 0xc9, 0x55, 0x14, 0xd8, 0xfd, 0x7a, 0x86, 0xa2, 0xc0, - 0x8e, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x9b, 0x6f, 0xc4, - 0xa3, 0xc0, 0xee, 0xf9, 0xa6, 0x51, 0x60, 0xf7, 0xfc, 0x6a, 0x8b, 0x2a, 0xa1, 0x39, 0x99, 0x49, - 0x81, 0x9d, 0xee, 0x59, 0xe4, 0x7e, 0x0f, 0x80, 0xae, 0x33, 0x67, 0xd7, 0xa1, 0xc0, 0x4e, 0x57, - 0x3e, 0x28, 0xd7, 0x2a, 0x0a, 0xec, 0x24, 0x5b, 0x42, 0x81, 0xdd, 0xbf, 0xdb, 0x85, 0xaa, 0x00, - 0xfa, 0x41, 0x08, 0x41, 0x89, 0x9d, 0x1c, 0x0b, 0x28, 0xb1, 0xd3, 0xd0, 0xc1, 0x34, 0x15, 0xd9, - 0x8d, 0x9f, 0x91, 0x32, 0xbb, 0xea, 0x3e, 0x52, 0x09, 0x9a, 0x01, 0x51, 0x5a, 0x01, 0x8a, 0xea, - 0xee, 0x19, 0x42, 0x51, 0xdd, 0xbf, 0x9a, 0x44, 0x51, 0xdd, 0x2f, 0x1a, 0x46, 0x51, 0x1d, 0x39, - 0xe4, 0xaf, 0x7e, 0x24, 0x72, 0x44, 0x75, 0xd7, 0x69, 0xa6, 0x2e, 0xcd, 0xa8, 0x2b, 0x50, 0x58, - 0x57, 0x98, 0x26, 0x4b, 0x5c, 0xb7, 0x4a, 0x71, 0x9d, 0xf8, 0x44, 0x2a, 0x38, 0xa1, 0x4a, 0x4d, - 0xac, 0xe2, 0x13, 0xac, 0xf8, 0x44, 0x2b, 0x3b, 0xe1, 0xca, 0x69, 0x1f, 0xad, 0x08, 0xea, 0x9a, - 0x8a, 0x9b, 0xba, 0x10, 0x9b, 0xfe, 0x7e, 0xa8, 0x1d, 0xff, 0x10, 0x64, 0x53, 0x2b, 0xcc, 0x32, - 0x95, 0xc4, 0xe2, 0x86, 0x2b, 0x8c, 0xbf, 0x3f, 0xad, 0x9a, 0xdb, 0x96, 0xb9, 0x1f, 0x9a, 0xe7, - 0xa7, 0xff, 0xd4, 0x6f, 0xfe, 0xfa, 0xeb, 0xcd, 0x4f, 0xde, 0xf8, 0x8f, 0x9c, 0x28, 0x71, 0xca, - 0x56, 0x37, 0xcb, 0x14, 0xb6, 0xba, 0xe7, 0xd3, 0xea, 0x16, 0xb0, 0x79, 0xb4, 0xa4, 0xed, 0x5f, - 0x31, 0xd5, 0xad, 0xb8, 0xb4, 0x2e, 0xa4, 0x9a, 0x65, 0x1b, 0x18, 0xa3, 0x6a, 0x65, 0x1b, 0x18, - 0xbd, 0x3a, 0x65, 0x1b, 0x58, 0x1e, 0xbf, 0x12, 0x53, 0x7d, 0x16, 0x11, 0xa7, 0xa7, 0xc2, 0xf3, - 0x44, 0x9d, 0x4b, 0x88, 0x38, 0xd3, 0x5a, 0x73, 0x4b, 0x80, 0x2d, 0xad, 0x09, 0xe5, 0x7c, 0xf3, - 0x66, 0x4c, 0xe6, 0x6a, 0xb7, 0x69, 0x7c, 0x59, 0x69, 0xdd, 0x6f, 0x4b, 0xe4, 0xb0, 0xa3, 0x6c, - 0x23, 0x81, 0xbc, 0xc9, 0x50, 0xc6, 0x8b, 0x52, 0xc0, 0x8b, 0x52, 0xba, 0xcb, 0x50, 0xb4, 0x57, - 0xe5, 0x24, 0x42, 0xba, 0x05, 0xa0, 0x5d, 0x02, 0xa3, 0xd2, 0x31, 0xa9, 0x39, 0x4f, 0xbe, 0x55, - 0x93, 0x15, 0xcb, 0xcf, 0x49, 0xe5, 0xfe, 0x8b, 0x25, 0x3b, 0x76, 0xd5, 0x0e, 0x8d, 0xe5, 0xc8, - 0xe5, 0x42, 0xbe, 0x3c, 0xe0, 0x95, 0xf3, 0x2f, 0x95, 0x04, 0xed, 0xaa, 0x20, 0x8d, 0x00, 0xe5, - 0x12, 0x13, 0xd0, 0xdc, 0x12, 0x4e, 0x39, 0x4e, 0xb7, 0x78, 0x17, 0x28, 0x01, 0xfe, 0xe3, 0xc3, - 0xdb, 0xa6, 0xe1, 0xca, 0x0c, 0xb3, 0x2c, 0x89, 0xce, 0x86, 0x25, 0x4e, 0x47, 0xff, 0x78, 0x8a, - 0xdc, 0x23, 0x86, 0x94, 0x14, 0x02, 0xca, 0x9d, 0x7f, 0x2e, 0xbd, 0xc1, 0x5d, 0x45, 0x23, 0xbb, - 0xc2, 0x86, 0x75, 0x55, 0x8d, 0xe9, 0xca, 0x1b, 0xd0, 0x95, 0x37, 0x9a, 0xab, 0x6d, 0x28, 0xeb, - 0x45, 0x4b, 0xca, 0x9e, 0x07, 0x36, 0x6e, 0x69, 0x6b, 0xe9, 0x8e, 0x53, 0x1c, 0x27, 0x53, 0x98, - 0x50, 0x32, 0x6e, 0xab, 0x11, 0xc0, 0x54, 0xb6, 0xd3, 0x59, 0xe5, 0xce, 0xa6, 0x80, 0x9d, 0xcc, - 0xaa, 0x77, 0x2e, 0xc5, 0xec, 0x54, 0x8a, 0xd9, 0x99, 0x94, 0xb1, 0x13, 0xa9, 0x77, 0xeb, 0xa6, - 0x2a, 0x81, 0x49, 0x11, 0xd5, 0xab, 0xf3, 0xb7, 0xfb, 0xf9, 0xa5, 0x2a, 0x77, 0xab, 0x56, 0x67, - 0x59, 0xf9, 0x60, 0x8d, 0x84, 0x81, 0x1a, 0x41, 0x83, 0x34, 0x52, 0x06, 0x68, 0xc4, 0x0d, 0xce, - 0x88, 0x1b, 0x98, 0x91, 0x35, 0x28, 0xb3, 0x5c, 0xfb, 0xec, 0x55, 0xeb, 0x22, 0x8d, 0xa2, 0xe9, - 0x2a, 0x67, 0x62, 0xf4, 0xd6, 0x24, 0x1e, 0x1c, 0xc0, 0x89, 0x51, 0xf1, 0x89, 0x4e, 0x5a, 0xc2, - 0x13, 0x9b, 0xf8, 0xc4, 0x26, 0x40, 0x99, 0x89, 0xb0, 0xda, 0x84, 0x58, 0x71, 0x62, 0x14, 0x93, - 0x20, 0x1f, 0x24, 0x4a, 0x79, 0xe7, 0x06, 0x14, 0x96, 0xf1, 0x4e, 0x5e, 0xc9, 0xe9, 0x53, 0x62, - 0x1a, 0x15, 0x9c, 0x4e, 0xa5, 0xa6, 0x55, 0xf1, 0xe9, 0x55, 0x7c, 0x9a, 0x95, 0x9d, 0x6e, 0x65, - 0xa4, 0x5d, 0x21, 0xe9, 0x57, 0x5c, 0x1a, 0xbe, 0x4d, 0xc7, 0x5d, 0xb9, 0x77, 0x32, 0x89, 0x3a, - 0xc2, 0x60, 0x85, 0xf7, 0x31, 0x69, 0x91, 0xa2, 0x01, 0x52, 0xb5, 0xf4, 0x94, 0x0d, 0x93, 0xba, - 0x61, 0x52, 0x38, 0x46, 0x2a, 0x97, 0x95, 0xd2, 0x85, 0xa5, 0xf6, 0xe2, 0x23, 0x94, 0x7f, 0x1f, - 0x93, 0x1c, 0xad, 0xe6, 0xcc, 0x9a, 0x77, 0x4b, 0xa0, 0x6d, 0x0f, 0xb4, 0x9c, 0x55, 0x8b, 0x38, - 0xe5, 0xfa, 0xa5, 0xa4, 0x9b, 0x47, 0x65, 0x1c, 0xe5, 0x3c, 0xd3, 0x19, 0x25, 0x1c, 0xed, 0x3c, - 0xd3, 0x0d, 0xc9, 0x73, 0xc9, 0x73, 0xc9, 0x73, 0xc9, 0x73, 0xc9, 0x73, 0x99, 0x53, 0xef, 0x7f, - 0x84, 0xd2, 0x5a, 0x59, 0x85, 0x61, 0x02, 0x5b, 0x5a, 0x0f, 0x82, 0xb1, 0xb8, 0xd6, 0xd6, 0xfd, - 0xd4, 0x2f, 0xf4, 0x5e, 0x3d, 0xb1, 0x14, 0x00, 0x81, 0x0a, 0x00, 0x51, 0x02, 0x14, 0x6a, 0x00, - 0x47, 0x11, 0xe0, 0xa8, 0x02, 0x16, 0x65, 0x90, 0x49, 0x1d, 0x84, 0x52, 0x88, 0xe2, 0xa3, 0x15, - 0xdb, 0x32, 0x7b, 0x10, 0x31, 0x87, 0x51, 0x9c, 0x6d, 0xd6, 0x25, 0x07, 0xcc, 0x49, 0xfe, 0xfe, - 0x43, 0xb0, 0x89, 0xb2, 0xef, 0x34, 0x9f, 0xbe, 0x64, 0x27, 0x9c, 0x15, 0x94, 0x3b, 0xce, 0x41, - 0x88, 0xe5, 0x03, 0x73, 0xa7, 0x17, 0x37, 0xa3, 0xd8, 0x0b, 0x74, 0x7f, 0xb3, 0xf0, 0x74, 0xf4, - 0xa3, 0x8b, 0x01, 0xdc, 0x85, 0x8e, 0xee, 0x62, 0x6b, 0x7f, 0xd4, 0xeb, 0x9b, 0x5b, 0xf5, 0xfa, - 0xea, 0xd6, 0xdb, 0xad, 0xd5, 0xed, 0x8d, 0x8d, 0xb5, 0xcd, 0xb5, 0x0d, 0x7a, 0xdd, 0x72, 0x51, - 0x53, 0xf9, 0xd6, 0x9d, 0xf2, 0xd6, 0x79, 0xd4, 0xa8, 0x6e, 0x4c, 0xee, 0x0a, 0x16, 0xdf, 0x16, - 0x14, 0x73, 0xa7, 0x31, 0x60, 0x7a, 0x61, 0x6b, 0x70, 0x9e, 0x48, 0x64, 0x6b, 0x70, 0x7e, 0x6e, - 0xc3, 0xd6, 0xe0, 0x82, 0x0d, 0x66, 0x6b, 0x50, 0xd7, 0x5a, 0x0c, 0xa8, 0x35, 0xf8, 0x35, 0xea, - 0x2a, 0x53, 0x74, 0x02, 0xbf, 0x9b, 0xc4, 0xb7, 0xd8, 0x1f, 0x7c, 0xe1, 0x8b, 0xfd, 0x41, 0x36, - 0x2f, 0xe4, 0xcd, 0xc8, 0x69, 0xd5, 0xa9, 0x60, 0x7f, 0x90, 0x2e, 0x36, 0x72, 0xb1, 0xcd, 0xad, - 0xad, 0xad, 0x75, 0xf6, 0x04, 0x97, 0x8d, 0x93, 0xca, 0xb7, 0x8e, 0x3d, 0x41, 0x44, 0x8b, 0xa4, - 0x4d, 0x52, 0x0a, 0xbb, 0x2d, 0xf7, 0x81, 0x7d, 0x32, 0xef, 0x20, 0x78, 0xf4, 0x2c, 0xf8, 0xc7, - 0x6e, 0xd1, 0xbd, 0xb5, 0xa5, 0xb0, 0x41, 0xc0, 0xc5, 0xba, 0x72, 0x5d, 0x44, 0x94, 0x78, 0x67, - 0x78, 0x36, 0xfa, 0xc8, 0x05, 0xcb, 0x77, 0x26, 0x06, 0x52, 0xc0, 0xf3, 0x2b, 0x66, 0x51, 0xc0, - 0xf3, 0x02, 0xa8, 0x51, 0xc0, 0xf3, 0x7c, 0x77, 0xa0, 0x80, 0x67, 0xde, 0x9c, 0x85, 0x02, 0x1e, - 0x74, 0xda, 0x29, 0x56, 0xc0, 0x33, 0xce, 0xa9, 0xf2, 0x77, 0xeb, 0x27, 0x76, 0xca, 0xde, 0xad, - 0x5f, 0xe3, 0x6e, 0xbd, 0x76, 0x94, 0x00, 0x88, 0x1a, 0xa0, 0x50, 0x04, 0x38, 0xaa, 0x00, 0x47, - 0x19, 0xb0, 0xa8, 0x83, 0x4c, 0x0a, 0x21, 0x94, 0x4a, 0x88, 0xa7, 0x14, 0x85, 0x81, 0x61, 0xf7, - 0xff, 0x85, 0x1d, 0x15, 0x77, 0xae, 0xcd, 0x34, 0xea, 0xa6, 0xf2, 0xa3, 0xd1, 0x34, 0xc0, 0xdf, - 0xb3, 0x5b, 0xb8, 0x87, 0xcb, 0xa6, 0x1e, 0x30, 0x14, 0x04, 0x89, 0x8a, 0x00, 0x52, 0x12, 0x34, - 0x6a, 0x02, 0x4b, 0x51, 0x60, 0xa9, 0x0a, 0x26, 0x65, 0x91, 0x4d, 0x5d, 0x84, 0x53, 0x18, 0x18, - 0x2a, 0xf3, 0x38, 0xa5, 0xc1, 0x09, 0x62, 0x8f, 0x32, 0x1b, 0x94, 0x40, 0x86, 0x41, 0x70, 0xe0, - 0x88, 0x0e, 0x22, 0xe1, 0x01, 0x26, 0x3e, 0xa8, 0x04, 0x08, 0x9e, 0x08, 0xc1, 0x13, 0x22, 0x6c, - 0x62, 0x84, 0x41, 0x90, 0x40, 0x88, 0x12, 0x1c, 0x61, 0x2a, 0x0c, 0x96, 0x79, 0x30, 0xec, 0x2f, - 0xe7, 0x19, 0x89, 0x07, 0xc7, 0x6a, 0x46, 0x9c, 0x60, 0x09, 0x14, 0x32, 0x91, 0xd2, 0x80, 0x50, - 0xa1, 0x13, 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, 0x4b, 0x0f, 0xc2, 0x85, 0x45, 0xbc, 0xc0, 0x08, - 0x18, 0x2c, 0x11, 0x2b, 0x0c, 0x3f, 0xef, 0x85, 0x17, 0x29, 0x6e, 0xb0, 0x9c, 0xe6, 0xab, 0xf1, - 0x63, 0x80, 0xc6, 0x17, 0x2c, 0x89, 0x98, 0x36, 0x44, 0x4d, 0x07, 0xc2, 0xa6, 0x11, 0x71, 0xd3, - 0x85, 0xc0, 0x69, 0x47, 0xe4, 0xb4, 0x23, 0x74, 0x7a, 0x11, 0x3b, 0x4c, 0x82, 0x07, 0x4a, 0xf4, - 0x0a, 0xe8, 0x88, 0x3f, 0x23, 0xe5, 0x97, 0x33, 0x86, 0x8a, 0x87, 0x97, 0x2a, 0x19, 0x4b, 0x21, - 0x81, 0xb3, 0xc6, 0xb4, 0xcb, 0x55, 0x07, 0x7e, 0x06, 0x3b, 0x1e, 0x5e, 0x8e, 0x40, 0x45, 0x57, - 0x2e, 0x73, 0xd5, 0xdd, 0x28, 0xcd, 0xac, 0x2c, 0x4b, 0xb0, 0xdd, 0xf9, 0x30, 0x8a, 0xed, 0x9e, - 0x1a, 0x65, 0xb3, 0x51, 0x39, 0x17, 0x0f, 0x7b, 0x3d, 0x60, 0x47, 0x38, 0x0c, 0xbf, 0xe9, 0xf3, - 0x30, 0x47, 0x49, 0x57, 0x25, 0xaa, 0xbb, 0x7b, 0x3d, 0x79, 0x94, 0xdf, 0xc8, 0x2e, 0x18, 0x8e, - 0x1e, 0x87, 0xca, 0xd5, 0xe4, 0xf4, 0x15, 0xf0, 0x6e, 0xcc, 0xf8, 0x31, 0xd8, 0x8d, 0xa9, 0xc2, - 0x7c, 0x76, 0x63, 0x04, 0x39, 0x02, 0xbb, 0x31, 0x72, 0xdc, 0x9a, 0xdd, 0x18, 0xe1, 0x0f, 0xc4, - 0x6e, 0x0c, 0x39, 0xd3, 0x33, 0xa1, 0xa3, 0x4f, 0x37, 0x66, 0x18, 0xc5, 0xd9, 0xdb, 0x75, 0x0d, - 0x1a, 0x31, 0x5b, 0xc0, 0x8f, 0x80, 0x71, 0x18, 0xee, 0xcf, 0x5e, 0xd8, 0x09, 0x7b, 0x05, 0xed, - 0x30, 0x5d, 0xcd, 0x0b, 0x8b, 0x07, 0x8f, 0x03, 0x76, 0x59, 0xd7, 0x4f, 0x9f, 0x07, 0xf0, 0x08, - 0x51, 0x4d, 0xd3, 0xf9, 0x8f, 0x21, 0x20, 0xfc, 0xc6, 0x10, 0x20, 0x3c, 0x04, 0xd4, 0xd7, 0xb7, - 0xeb, 0xdb, 0x9b, 0x5b, 0xeb, 0xdb, 0x1b, 0x8c, 0x05, 0x2c, 0x48, 0x68, 0xfd, 0xdd, 0xd7, 0x29, - 0xdb, 0xfd, 0xcc, 0x75, 0x33, 0xc2, 0xcc, 0x57, 0x15, 0x5d, 0x7c, 0xce, 0xf0, 0xfb, 0xfd, 0x93, - 0xe7, 0x60, 0xc3, 0xbf, 0x0a, 0xf3, 0xd9, 0xf0, 0x17, 0xe4, 0x09, 0x6c, 0xf8, 0xcb, 0x71, 0x6b, - 0x36, 0xfc, 0x85, 0x3f, 0x10, 0x1b, 0xfe, 0x64, 0x4d, 0xcf, 0x84, 0x8e, 0x5e, 0x0d, 0xff, 0x3f, - 0x34, 0xe8, 0xf7, 0x6f, 0xb0, 0xdf, 0x5f, 0xf1, 0x8b, 0xfd, 0x7e, 0xd6, 0x15, 0x0b, 0x7c, 0x1c, - 0xf6, 0xfb, 0x99, 0xcd, 0xcb, 0x08, 0x01, 0xec, 0xf7, 0x8b, 0x0f, 0x01, 0xeb, 0x1b, 0x6c, 0xf4, - 0xb3, 0x10, 0xa1, 0xf5, 0x3f, 0xbc, 0xd8, 0xe8, 0xa7, 0xc5, 0xf0, 0x29, 0x59, 0xfa, 0xbd, 0x88, - 0x3f, 0xb5, 0x5f, 0xc3, 0x7b, 0x13, 0xc7, 0xb7, 0xdd, 0x4d, 0xbe, 0xd6, 0x7e, 0x3c, 0x95, 0xfe, - 0xc7, 0x3f, 0x4a, 0xbc, 0x63, 0x51, 0x1f, 0x77, 0x06, 0x72, 0x65, 0x50, 0x21, 0x11, 0xb4, 0x80, - 0x08, 0x94, 0xec, 0xf3, 0x9c, 0xbd, 0x2a, 0x81, 0xce, 0x73, 0xf6, 0xaa, 0x73, 0x57, 0x9e, 0xb3, - 0x27, 0x8d, 0x7b, 0xf2, 0x9c, 0x3d, 0x72, 0x9a, 0x7f, 0x87, 0x08, 0xec, 0xbe, 0x5f, 0x11, 0xf1, - 0x7b, 0x2a, 0x3c, 0x4f, 0xd4, 0x39, 0x62, 0xc4, 0x9f, 0x1e, 0xb1, 0x02, 0x28, 0xed, 0x31, 0x5a, - 0x93, 0x8a, 0xf0, 0xcd, 0x9b, 0x71, 0x91, 0x54, 0x1b, 0x53, 0x4c, 0x96, 0x4a, 0x4b, 0x6c, 0x29, - 0xca, 0x29, 0xef, 0x1f, 0xd4, 0x35, 0x5a, 0x51, 0x84, 0x79, 0xa8, 0x0e, 0xf4, 0x21, 0x3a, 0xd0, - 0x87, 0xe6, 0x60, 0x1e, 0x92, 0x83, 0x12, 0x40, 0x40, 0x9b, 0xba, 0xcb, 0xdd, 0xcc, 0x45, 0xba, - 0xcc, 0x28, 0xcd, 0x92, 0x61, 0x27, 0x8b, 0x27, 0x14, 0xb7, 0x39, 0x5e, 0x79, 0x67, 0xf2, 0xd0, - 0x41, 0x6b, 0xb2, 0xdc, 0x81, 0x93, 0x46, 0x69, 0xe0, 0x8e, 0xd6, 0x39, 0x70, 0xd3, 0x41, 0xe0, - 0xf7, 0xae, 0xf2, 0xb7, 0x9a, 0x93, 0x05, 0xb3, 0xa6, 0x8b, 0x19, 0x4c, 0xdf, 0x09, 0x8a, 0xbf, - 0xa3, 0x9d, 0x2f, 0x58, 0x60, 0x4d, 0x57, 0xa8, 0x1d, 0x75, 0x31, 0xc8, 0xdb, 0x0d, 0xef, 0x2c, - 0xd4, 0x39, 0xc6, 0xa2, 0xc5, 0xd6, 0x65, 0x8b, 0xa9, 0xb2, 0x83, 0x84, 0x5c, 0xd7, 0x13, 0xec, - 0x76, 0x46, 0xd8, 0xbd, 0x8c, 0x62, 0xf3, 0x22, 0xe9, 0x0f, 0x07, 0x48, 0xb7, 0x89, 0xdf, 0x1a, - 0xcd, 0xab, 0xc4, 0xe7, 0x61, 0x26, 0xaf, 0x12, 0x5f, 0x20, 0x5c, 0x79, 0x95, 0xf8, 0x22, 0xdb, - 0x39, 0xbc, 0x4a, 0xbc, 0x5c, 0x8e, 0xc6, 0xab, 0xc4, 0x97, 0x8d, 0x96, 0xc3, 0x5c, 0x25, 0x8e, - 0x75, 0x23, 0x26, 0xe4, 0x4d, 0x98, 0xbc, 0x3a, 0x9c, 0x04, 0x47, 0x03, 0xa2, 0x83, 0x4a, 0x78, - 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, - 0xc2, 0x60, 0xa4, 0xae, 0xcf, 0xcc, 0x6c, 0x83, 0xd3, 0x05, 0x9a, 0x45, 0xa2, 0x38, 0xde, 0x4c, - 0x52, 0xa5, 0x31, 0xb9, 0x42, 0x27, 0x59, 0xda, 0x90, 0x2d, 0x6d, 0x48, 0x97, 0x1e, 0xe4, 0x0b, - 0x8b, 0x84, 0x81, 0x91, 0xb1, 0x02, 0x22, 0xf8, 0xe3, 0xcd, 0xb0, 0xf7, 0x17, 0x00, 0xdf, 0x5b, - 0x00, 0x7e, 0x7e, 0x11, 0xf6, 0xa5, 0x8b, 0x1a, 0x1c, 0x94, 0xa8, 0xc5, 0x21, 0x25, 0xba, 0x9c, - 0x4f, 0xa4, 0xd3, 0x91, 0x24, 0x37, 0xd8, 0x57, 0x90, 0xd2, 0xb5, 0x85, 0xb9, 0xb6, 0x2e, 0xf7, - 0x0c, 0x68, 0xe5, 0xe3, 0x3c, 0xf6, 0xa6, 0x94, 0xd7, 0x29, 0x0b, 0xaf, 0x05, 0x3a, 0x24, 0xf4, - 0x1d, 0xe0, 0x5a, 0xdc, 0xfd, 0xad, 0xc5, 0x9d, 0xdf, 0xd8, 0x77, 0x7d, 0x53, 0x5f, 0xba, 0x94, - 0x41, 0x90, 0xf2, 0x30, 0xb9, 0x52, 0x86, 0x62, 0xb7, 0x10, 0xe9, 0x68, 0x2f, 0x4a, 0x9e, 0xb4, - 0x8e, 0x1b, 0x94, 0x3c, 0x09, 0x8e, 0x13, 0x08, 0x03, 0xfb, 0x25, 0xaa, 0x45, 0x2f, 0xa3, 0xf8, - 0x20, 0x5f, 0x16, 0xca, 0xc0, 0x74, 0x0b, 0x45, 0x46, 0x78, 0x15, 0x46, 0xbd, 0xf0, 0xac, 0xa7, - 0xcc, 0xb3, 0x30, 0xee, 0x7e, 0x8d, 0xba, 0xb9, 0x7f, 0xa3, 0xc8, 0xc1, 0x1e, 0x31, 0x9e, 0xb2, - 0xb0, 0x79, 0x98, 0x49, 0x59, 0xd8, 0x02, 0x61, 0x4b, 0x59, 0xd8, 0xe2, 0xdc, 0x8b, 0xb2, 0xb0, - 0xb2, 0x79, 0x2c, 0x65, 0x61, 0xcb, 0x56, 0xba, 0x50, 0x16, 0xb6, 0xd8, 0xfc, 0x40, 0x59, 0x18, - 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, - 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0x2a, 0x0c, 0xc6, 0xe9, 0xfd, 0xcc, 0xcc, - 0x35, 0x28, 0x1d, 0xa0, 0x59, 0x04, 0x8a, 0x92, 0x30, 0x12, 0x2a, 0x8d, 0x89, 0x15, 0x3a, 0xc1, - 0xd2, 0x86, 0x68, 0x69, 0x43, 0xb8, 0xf4, 0x20, 0x5e, 0x58, 0x04, 0x0c, 0x8c, 0x88, 0x15, 0x10, - 0xc1, 0x97, 0x84, 0x45, 0x4a, 0xa9, 0xf3, 0x5e, 0x3f, 0xc4, 0xd6, 0x85, 0x6d, 0x03, 0x9a, 0xee, - 0xaa, 0xf8, 0x22, 0x27, 0xc6, 0x14, 0x86, 0x95, 0xbc, 0xf2, 0x14, 0x86, 0xc9, 0x79, 0x8c, 0x42, - 0x3d, 0x42, 0xd1, 0x08, 0x93, 0xf0, 0x1c, 0x5c, 0x9b, 0xc2, 0x30, 0xba, 0x36, 0x5d, 0x5b, 0x8f, - 0x6a, 0x00, 0xd7, 0xea, 0x53, 0x4a, 0x4b, 0x96, 0x3d, 0x35, 0x19, 0x19, 0x62, 0x6d, 0x58, 0xd4, - 0x85, 0xb9, 0xf5, 0xec, 0x78, 0x97, 0x61, 0x36, 0x3b, 0xde, 0x15, 0xe2, 0x9c, 0x1d, 0xef, 0xea, - 0xdc, 0x95, 0x1d, 0x6f, 0x61, 0x0f, 0xc2, 0x8e, 0x37, 0x19, 0xcd, 0x4f, 0x20, 0xa2, 0x41, 0xc7, - 0xbb, 0xab, 0xe2, 0x2c, 0xca, 0xae, 0xc1, 0xef, 0x79, 0x06, 0x3c, 0x65, 0xc5, 0x70, 0x26, 0x4b, - 0xbf, 0x1b, 0xa6, 0xc0, 0x79, 0x6b, 0x0a, 0x24, 0xa7, 0xed, 0xb4, 0x83, 0xf6, 0xf1, 0xae, 0xef, - 0x9e, 0x04, 0xfe, 0x9f, 0x2d, 0x1b, 0x35, 0x7d, 0xe5, 0x7d, 0x9a, 0x14, 0x76, 0x23, 0x62, 0x05, - 0x7a, 0x33, 0xe2, 0x1e, 0xa2, 0x02, 0xcf, 0xb6, 0xf6, 0xde, 0x59, 0xbb, 0x8e, 0xeb, 0xf8, 0x7f, - 0x4e, 0xc0, 0xd5, 0x46, 0x46, 0x97, 0x4e, 0x28, 0xd3, 0x03, 0x6d, 0x3f, 0x45, 0x9d, 0x75, 0x62, - 0x39, 0xae, 0xb5, 0xeb, 0xda, 0xc1, 0xae, 0xd5, 0x6c, 0xfc, 0xd7, 0x69, 0xf8, 0xef, 0x0c, 0xf8, - 0x27, 0xbe, 0xf9, 0x9d, 0xb0, 0x93, 0x0d, 0x3b, 0xcf, 0x6e, 0x3b, 0x8d, 0x63, 0xcb, 0x25, 0xea, - 0x88, 0xba, 0x12, 0x83, 0x5d, 0xe3, 0x7d, 0xd0, 0x76, 0x1a, 0x84, 0x1a, 0xa1, 0xb6, 0x68, 0xa8, - 0xb9, 0x4e, 0xf3, 0x43, 0xd0, 0xf2, 0x8e, 0x7c, 0x7b, 0xcf, 0x77, 0x8e, 0x9a, 0x63, 0x56, 0x47, - 0xdc, 0x11, 0x77, 0x65, 0xe0, 0xae, 0x61, 0xbb, 0xd6, 0x9f, 0x44, 0x1b, 0xd1, 0x56, 0x1e, 0xda, - 0x82, 0x13, 0xcb, 0x73, 0xac, 0x51, 0xa8, 0x23, 0xee, 0x88, 0xbb, 0x45, 0xe3, 0xce, 0x69, 0x9d, - 0x6c, 0x06, 0x4e, 0xd3, 0xb7, 0xbd, 0x7d, 0x6b, 0xcf, 0x0e, 0xac, 0x46, 0xc3, 0xb3, 0xdb, 0x6d, - 0x22, 0x8f, 0xc8, 0x5b, 0x34, 0xf2, 0x8a, 0x7a, 0x35, 0xd8, 0x3b, 0x6a, 0xb6, 0x7d, 0xcf, 0x72, - 0x9a, 0x3e, 0x81, 0x47, 0xe0, 0x2d, 0x1c, 0x78, 0x87, 0xd6, 0xc7, 0xc0, 0xb3, 0xdb, 0xb6, 0x77, - 0xc2, 0x6e, 0x1d, 0xb1, 0x57, 0x01, 0xcd, 0xb3, 0x7c, 0xdf, 0x73, 0x76, 0x8f, 0x7d, 0x9b, 0xe1, - 0x8e, 0x90, 0x5b, 0x38, 0xe4, 0x8e, 0x7d, 0xc7, 0x75, 0xfe, 0x67, 0x37, 0x18, 0xe8, 0x88, 0xba, - 0xf2, 0x50, 0x67, 0x7f, 0xf4, 0xed, 0x66, 0xc3, 0x6e, 0x04, 0x56, 0xe3, 0xd0, 0x69, 0x06, 0x07, - 0xde, 0xd1, 0x71, 0x8b, 0xb8, 0x23, 0xee, 0x16, 0x8d, 0x3b, 0xab, 0xf1, 0x3e, 0x70, 0xad, 0x26, - 0x37, 0x27, 0x08, 0xb7, 0x52, 0x92, 0x6b, 0xb3, 0x28, 0x5e, 0xed, 0x46, 0xe0, 0xb6, 0x19, 0xe3, - 0x08, 0xba, 0x85, 0x83, 0xce, 0x69, 0x9d, 0xd4, 0xd9, 0xb3, 0x23, 0xf2, 0xca, 0x47, 0x9e, 0x6f, - 0x07, 0x0d, 0x7b, 0xdf, 0x3a, 0x76, 0xfd, 0xe0, 0xd0, 0xf6, 0x3d, 0x67, 0x8f, 0xa0, 0x23, 0xe8, - 0x16, 0x0d, 0xba, 0x51, 0xfd, 0x70, 0x68, 0x7d, 0xe4, 0x86, 0x2c, 0x51, 0x57, 0x22, 0xea, 0x72, - 0xb4, 0xb9, 0x47, 0xcc, 0xab, 0x04, 0x5b, 0x09, 0x21, 0x6e, 0x1a, 0xde, 0xd8, 0xa3, 0x23, 0xea, - 0x4a, 0x2c, 0x5e, 0xc7, 0xdb, 0x60, 0xec, 0x0d, 0x13, 0x77, 0x25, 0xd7, 0xaf, 0x9b, 0x41, 0xd3, - 0x76, 0x0e, 0xde, 0xed, 0x1e, 0x79, 0x2c, 0x5f, 0x09, 0xbc, 0x52, 0x39, 0x1d, 0x1b, 0xc3, 0x84, - 0x5a, 0x29, 0x31, 0xae, 0xce, 0x18, 0x47, 0xe0, 0x95, 0x0e, 0x3c, 0xbd, 0xf6, 0x5b, 0xa1, 0x9f, - 0xe0, 0x94, 0x67, 0x59, 0xd2, 0xbd, 0xe7, 0xe5, 0xd6, 0x3a, 0xa9, 0x8b, 0x09, 0x2f, 0x69, 0xf0, - 0xd2, 0x49, 0x45, 0x4c, 0x74, 0xc9, 0xe3, 0x24, 0xe0, 0x6a, 0x61, 0x42, 0x4a, 0x64, 0x29, 0xaf, - 0x8d, 0x2a, 0x98, 0xf8, 0x12, 0x89, 0x2f, 0xf0, 0xcd, 0x66, 0xa2, 0x4a, 0x2e, 0xaa, 0x74, 0x50, - 0xf9, 0x12, 0x5f, 0xd2, 0xf0, 0xa5, 0x9b, 0x9a, 0x97, 0x08, 0x93, 0x86, 0x30, 0xcd, 0x54, 0xbb, - 0x04, 0x98, 0x34, 0x80, 0xe9, 0xa7, 0xce, 0x25, 0xc6, 0x44, 0xd2, 0x30, 0x1d, 0x54, 0xb8, 0x84, - 0x96, 0x34, 0x68, 0xe9, 0xa4, 0xb6, 0x25, 0xba, 0xa4, 0xa1, 0x4b, 0x2f, 0x55, 0x2d, 0xf1, 0x25, - 0x0d, 0x5f, 0x5a, 0xa8, 0x67, 0x09, 0x2b, 0x71, 0x49, 0x51, 0x1f, 0x95, 0x2c, 0xc1, 0x25, 0x0d, - 0x5c, 0xba, 0xa9, 0x61, 0x89, 0x30, 0x69, 0x08, 0xd3, 0x48, 0xf5, 0x4a, 0x70, 0x49, 0x03, 0x97, - 0x4e, 0xea, 0x56, 0xa2, 0x4b, 0x1a, 0xba, 0x34, 0x50, 0xb1, 0x12, 0x54, 0xe2, 0x42, 0x96, 0x46, - 0x6a, 0x55, 0xa2, 0x4b, 0x5e, 0xb1, 0xa8, 0x93, 0x2a, 0x95, 0xf8, 0x12, 0x58, 0x2f, 0xea, 0xa4, - 0x3e, 0x25, 0xc0, 0x44, 0x72, 0x2e, 0x36, 0x50, 0x09, 0xa9, 0xb9, 0xc6, 0xac, 0x3a, 0x63, 0x16, - 0x01, 0xb6, 0x30, 0x80, 0x71, 0x3f, 0x91, 0xb0, 0x9a, 0x03, 0xac, 0xbc, 0xa3, 0x63, 0xdf, 0xf6, - 0x82, 0x3d, 0xab, 0xc5, 0xbb, 0x78, 0x89, 0xb7, 0x4a, 0x71, 0x77, 0xf7, 0x4f, 0x3c, 0x77, 0x81, - 0x90, 0x2b, 0x05, 0x72, 0x96, 0x7b, 0x70, 0xe4, 0x39, 0xfe, 0xbb, 0x43, 0x1e, 0xbd, 0x50, 0xed, - 0x8b, 0x47, 0x2f, 0xd0, 0xc3, 0x99, 0x4c, 0x08, 0x2d, 0x26, 0x0d, 0x22, 0x6b, 0x39, 0x0a, 0xfa, - 0xd6, 0x8f, 0x05, 0x3d, 0xeb, 0x2e, 0xa2, 0xad, 0x7c, 0xd4, 0xb5, 0x3c, 0x7b, 0xdf, 0xf9, 0x18, - 0xec, 0xbb, 0xd6, 0x01, 0x0f, 0xbb, 0x23, 0xde, 0xca, 0xc2, 0x1b, 0x2f, 0x7b, 0x22, 0xda, 0x4a, - 0x40, 0x5b, 0xbe, 0x73, 0x3c, 0xa1, 0x70, 0x44, 0x1c, 0x11, 0xb7, 0x78, 0xc4, 0xf9, 0xd6, 0xc1, - 0x66, 0x9d, 0x40, 0x23, 0xd0, 0x4a, 0x08, 0x6d, 0x75, 0x86, 0x36, 0x22, 0xae, 0xd4, 0xd0, 0xc6, - 0x26, 0x79, 0xb5, 0x2f, 0x36, 0xc9, 0xe9, 0xd6, 0xac, 0xfc, 0x89, 0x2b, 0x56, 0xf8, 0x44, 0xd5, - 0x72, 0xa1, 0x4a, 0x97, 0x4a, 0x9e, 0xc8, 0x62, 0xc5, 0x4e, 0x40, 0xe9, 0x1e, 0xaa, 0xea, 0x0c, - 0x55, 0x44, 0x16, 0x2b, 0x70, 0x0d, 0x2a, 0x6f, 0xbc, 0x8a, 0x1b, 0x6b, 0x9d, 0x71, 0xac, 0xc5, - 0xb0, 0x14, 0x24, 0x68, 0x1b, 0x56, 0x1c, 0xf7, 0xb3, 0x30, 0x8b, 0xfa, 0xb1, 0xb1, 0x03, 0x14, - 0xae, 0x8d, 0xb4, 0xf3, 0x59, 0x5d, 0x86, 0x83, 0x30, 0xfb, 0x3c, 0x0a, 0xd0, 0xb5, 0xfe, 0x40, - 0xc5, 0x9d, 0x7e, 0x7c, 0x1e, 0x5d, 0x98, 0xb1, 0xca, 0xbe, 0xf6, 0x93, 0x2f, 0x66, 0x14, 0xa7, - 0x59, 0x18, 0x77, 0x54, 0xed, 0xfe, 0x1b, 0xe9, 0x83, 0x77, 0x6a, 0x83, 0xa4, 0x9f, 0xf5, 0x3b, - 0xfd, 0x5e, 0x5a, 0x7c, 0x57, 0x8b, 0xd2, 0x28, 0xad, 0xf5, 0xd4, 0x95, 0xea, 0x4d, 0xbe, 0xd4, - 0x7a, 0x51, 0xfc, 0xc5, 0x4c, 0xb3, 0x30, 0x53, 0x66, 0x37, 0xcc, 0xc2, 0xb3, 0x30, 0x55, 0xb5, - 0x5e, 0x3a, 0xa8, 0x65, 0xbd, 0xab, 0x74, 0xf4, 0x9f, 0xfc, 0x57, 0xcc, 0x58, 0x45, 0x17, 0x9f, - 0xcf, 0xfa, 0x89, 0x19, 0x66, 0x59, 0x12, 0x9d, 0x0d, 0xb3, 0x91, 0x01, 0xe3, 0xb7, 0xd2, 0xe2, - 0xbb, 0xda, 0xad, 0x2d, 0x85, 0x0d, 0xe9, 0xf0, 0x2c, 0xff, 0x9b, 0xc6, 0x5f, 0x6b, 0xe1, 0x55, - 0x18, 0xf5, 0xc2, 0xb3, 0x9e, 0x32, 0xcf, 0xc2, 0xb8, 0xfb, 0x35, 0xea, 0x66, 0x9f, 0x6b, 0xf9, - 0x3f, 0x8e, 0x91, 0x79, 0xe4, 0x7b, 0xa9, 0x6c, 0x0b, 0x85, 0xc7, 0x0f, 0xb4, 0xb8, 0xb1, 0x94, - 0xf1, 0x02, 0x60, 0x7a, 0xd1, 0x48, 0xb3, 0x64, 0xd8, 0xc9, 0xe2, 0x09, 0xd1, 0x6e, 0x8e, 0x17, - 0xda, 0x99, 0x3c, 0x63, 0xd0, 0x9a, 0xac, 0x6e, 0xe0, 0xa4, 0x51, 0x1a, 0xb8, 0xa3, 0x65, 0x0d, - 0xdc, 0x74, 0x10, 0xf8, 0xbd, 0xab, 0xfc, 0xad, 0xe6, 0x64, 0x7d, 0xac, 0xe9, 0xda, 0x05, 0xd3, - 0x77, 0x82, 0xe2, 0xef, 0x68, 0xe7, 0xeb, 0x13, 0x58, 0xd3, 0xf5, 0xd9, 0x2d, 0x96, 0xe7, 0x37, - 0x86, 0x27, 0xcd, 0x42, 0x93, 0x51, 0x60, 0xdf, 0xec, 0xf4, 0xe3, 0x34, 0x4b, 0xc2, 0x28, 0xce, - 0x52, 0xf1, 0x11, 0xaa, 0x28, 0x34, 0x1f, 0x37, 0x5f, 0x78, 0x2a, 0xf8, 0x10, 0xc5, 0x5d, 0x63, - 0x67, 0x65, 0x4d, 0xb8, 0x99, 0x7b, 0x79, 0xb8, 0x37, 0x76, 0x56, 0x56, 0x85, 0x1b, 0xda, 0x4a, - 0xd4, 0x79, 0xf4, 0x0d, 0x23, 0xad, 0x4e, 0x81, 0xdb, 0xef, 0x98, 0xa3, 0x6c, 0x86, 0x90, 0x71, - 0xda, 0xfd, 0x61, 0xd2, 0x51, 0x30, 0xd5, 0x8e, 0xf1, 0x41, 0x5d, 0x7f, 0xed, 0x27, 0x23, 0x0f, - 0x33, 0x06, 0x63, 0x64, 0x80, 0x94, 0x96, 0xef, 0xc2, 0xd4, 0x4a, 0x2e, 0x86, 0x97, 0x2a, 0xce, - 0x8c, 0x9d, 0x95, 0x2c, 0x19, 0x2a, 0x94, 0x9a, 0xf8, 0xd6, 0xea, 0x02, 0xd8, 0x2c, 0x67, 0xb4, - 0x2e, 0x67, 0x1a, 0x51, 0x82, 0x11, 0x70, 0x1f, 0x63, 0x08, 0x38, 0xb1, 0xec, 0xdf, 0x78, 0x0e, - 0x4a, 0x58, 0xc3, 0xa0, 0x3b, 0x70, 0xb4, 0x07, 0x91, 0xfe, 0x00, 0xd3, 0x20, 0x54, 0x3a, 0x04, - 0x4f, 0x8b, 0xe0, 0xe9, 0x11, 0x36, 0x4d, 0xc2, 0xa0, 0x4b, 0x20, 0xb4, 0x09, 0x8e, 0x3e, 0x15, - 0x06, 0x23, 0x75, 0x87, 0x66, 0x66, 0x1b, 0x9c, 0x1e, 0x11, 0x38, 0x89, 0x82, 0x25, 0x53, 0xc8, - 0xa4, 0x4a, 0x03, 0x72, 0x85, 0x4e, 0xb2, 0xb4, 0x21, 0x5b, 0xda, 0x90, 0x2e, 0x3d, 0xc8, 0x17, - 0x16, 0x09, 0x03, 0x23, 0x63, 0xb0, 0xa4, 0xec, 0x11, 0x72, 0x86, 0x1b, 0x31, 0x1f, 0x72, 0x34, - 0xd4, 0x90, 0x89, 0x49, 0xd5, 0xe0, 0x29, 0x9b, 0x0e, 0xd4, 0x4d, 0x23, 0x0a, 0xa7, 0x0b, 0x95, - 0xd3, 0x8e, 0xd2, 0x69, 0x47, 0xed, 0xf4, 0xa2, 0x78, 0x98, 0x54, 0x0f, 0x94, 0xf2, 0xc1, 0x53, - 0xbf, 0x47, 0x28, 0xa0, 0x19, 0x75, 0xf1, 0x83, 0xed, 0x43, 0x36, 0x38, 0x7a, 0x2c, 0xf0, 0xf8, - 0x34, 0x21, 0x86, 0xab, 0xe0, 0x8f, 0x81, 0x4e, 0x10, 0x75, 0x22, 0x8a, 0x1a, 0x12, 0x46, 0xdd, - 0x88, 0xa3, 0xb6, 0x04, 0x52, 0x5b, 0x22, 0xa9, 0x27, 0xa1, 0xc4, 0x26, 0x96, 0xe0, 0x04, 0xb3, - 0x80, 0x94, 0x7f, 0x3d, 0x50, 0x7a, 0x65, 0x9c, 0x9e, 0x0a, 0xcf, 0x13, 0x75, 0xae, 0x43, 0xc6, - 0x99, 0x76, 0xee, 0xb6, 0x34, 0x78, 0x96, 0xd6, 0x44, 0xb9, 0xf5, 0xe6, 0xcd, 0x58, 0x05, 0x59, - 0xfb, 0x91, 0x4a, 0xff, 0xc6, 0x10, 0xc6, 0xf0, 0xf5, 0x34, 0x44, 0x8d, 0xc5, 0xb4, 0xda, 0x94, - 0x96, 0xe3, 0xc7, 0xd1, 0xa3, 0xa4, 0x5c, 0x63, 0x49, 0xc9, 0x92, 0x92, 0x25, 0x25, 0x4b, 0x4a, - 0x96, 0x94, 0x2c, 0x29, 0xc9, 0xc7, 0x96, 0xab, 0xa4, 0x44, 0xdf, 0xbb, 0x28, 0x1e, 0xe4, 0xf6, - 0x1c, 0x86, 0x1d, 0xdd, 0x8e, 0x24, 0x47, 0x3a, 0x62, 0xe2, 0x29, 0xc4, 0x73, 0x55, 0x93, 0xc7, - 0xd1, 0x85, 0x80, 0xea, 0x48, 0x44, 0x35, 0x26, 0xa4, 0xba, 0x12, 0x53, 0xed, 0x09, 0xaa, 0xf6, - 0x44, 0x55, 0x6f, 0xc2, 0xaa, 0x07, 0x71, 0xd5, 0x84, 0xc0, 0x16, 0x50, 0xd3, 0x66, 0x6f, 0xe4, - 0x41, 0xc6, 0x8a, 0x94, 0x52, 0xe7, 0xbd, 0x7e, 0x98, 0xbd, 0x5d, 0xd7, 0x29, 0x6b, 0x4d, 0x48, - 0xe0, 0xb6, 0x46, 0x8f, 0xe4, 0xaa, 0xf8, 0x22, 0x2f, 0x40, 0x3e, 0x69, 0x15, 0xc6, 0xf5, 0xa2, - 0x15, 0xf9, 0x27, 0x75, 0x18, 0xc5, 0xda, 0xf1, 0x25, 0x4d, 0xcb, 0xab, 0x07, 0x8f, 0x97, 0x5f, - 0xb3, 0x6c, 0xec, 0xac, 0xd4, 0x35, 0x7d, 0xbe, 0xfd, 0x24, 0xec, 0x64, 0x51, 0x3f, 0x6e, 0x44, - 0x17, 0x51, 0x2e, 0x98, 0x5e, 0xd5, 0xee, 0x39, 0x6f, 0x7e, 0xd7, 0x30, 0xa4, 0x84, 0xdf, 0x18, - 0x52, 0x18, 0x52, 0x18, 0x52, 0x58, 0x8d, 0xf1, 0x69, 0x6e, 0x5f, 0xa7, 0xbf, 0xf1, 0xf3, 0x60, - 0xca, 0x9d, 0x4f, 0x18, 0xd3, 0x4b, 0xa7, 0xf2, 0xa0, 0xd0, 0xd7, 0x49, 0xaf, 0xa2, 0x29, 0x73, - 0xe0, 0x5e, 0x0f, 0x92, 0x43, 0x71, 0xaf, 0x07, 0x27, 0x4c, 0x70, 0xaf, 0x07, 0xfc, 0x01, 0xb9, - 0xd7, 0x43, 0x0e, 0x58, 0x12, 0xd4, 0xf4, 0xdd, 0xeb, 0x19, 0x46, 0xb1, 0x9e, 0xdb, 0x3c, 0x5b, - 0x1a, 0x3d, 0x92, 0x17, 0xc6, 0x17, 0x8a, 0xbb, 0x3c, 0xf2, 0x3f, 0x28, 0xee, 0xf2, 0xe0, 0x3e, - 0xde, 0xb4, 0x25, 0xbb, 0xca, 0x96, 0x2c, 0xe9, 0x86, 0xa0, 0x90, 0xc2, 0x5d, 0x1e, 0xf8, 0x90, - 0x52, 0x5f, 0xdf, 0xae, 0x6f, 0x6f, 0x6e, 0xad, 0x6f, 0x6f, 0x30, 0xb6, 0xb0, 0x20, 0xe3, 0xd3, - 0xcc, 0xf3, 0xc5, 0xed, 0x1e, 0x3e, 0xc1, 0xd2, 0x33, 0x07, 0xd4, 0x7b, 0xbe, 0x67, 0x3e, 0x8f, - 0xf6, 0xf7, 0xf9, 0x3e, 0x7a, 0x15, 0xe8, 0xa3, 0xef, 0xd6, 0xee, 0xfe, 0xc0, 0x9d, 0xb7, 0x81, - 0x6e, 0x0b, 0xd7, 0x2f, 0x66, 0xf0, 0xbc, 0xcb, 0x52, 0xcb, 0x04, 0x75, 0xad, 0xcb, 0x76, 0xb5, - 0xe1, 0x46, 0x69, 0x66, 0x65, 0x19, 0xf8, 0x01, 0x9e, 0x87, 0x51, 0x6c, 0xf7, 0xd4, 0xa5, 0x1a, - 0x5f, 0xb0, 0x13, 0x0f, 0x7b, 0x3d, 0xe0, 0xa3, 0x62, 0x0e, 0xc3, 0x6f, 0xfa, 0x3c, 0xcc, 0x51, - 0xd2, 0x55, 0x89, 0xea, 0xee, 0x5e, 0x4f, 0x1e, 0x85, 0x81, 0x8a, 0x34, 0x8c, 0xf4, 0x6b, 0xee, - 0xf4, 0xcb, 0x80, 0x3e, 0x1a, 0x2b, 0x19, 0x76, 0xb2, 0x78, 0xb2, 0x03, 0xd8, 0x1c, 0x7f, 0x5c, - 0xce, 0x64, 0xa5, 0x82, 0xd6, 0xe4, 0x33, 0x0a, 0x9c, 0x34, 0x4a, 0x03, 0x77, 0xf4, 0xe1, 0x04, - 0x6e, 0x3a, 0x08, 0xfc, 0xde, 0x55, 0xfe, 0x56, 0x73, 0xb2, 0xca, 0xd6, 0xf4, 0x13, 0x08, 0xa6, - 0xef, 0x04, 0xc5, 0xdf, 0xd1, 0xce, 0x57, 0x39, 0xd8, 0x9d, 0xae, 0xe7, 0x5e, 0xb1, 0x6e, 0xc1, - 0xed, 0xb7, 0x98, 0xdc, 0xf5, 0x86, 0xd7, 0xf0, 0x30, 0xf4, 0xeb, 0x13, 0xf2, 0x19, 0xea, 0x1f, - 0x0f, 0xf5, 0x58, 0xc1, 0x09, 0xc7, 0xc5, 0x81, 0xdc, 0xdb, 0xb8, 0xec, 0x77, 0x55, 0x0f, 0x71, - 0xf0, 0xbb, 0x98, 0xee, 0x29, 0x9e, 0x00, 0xf3, 0xfe, 0xd0, 0x55, 0xde, 0x1f, 0x5a, 0x8e, 0xe1, - 0xbc, 0x3f, 0xb4, 0xd2, 0x47, 0xe0, 0xfd, 0xa1, 0x42, 0x1e, 0x84, 0xf7, 0x87, 0x92, 0xd5, 0x2c, - 0x4b, 0xe1, 0x02, 0x3b, 0xd3, 0xac, 0xc1, 0x59, 0xfe, 0xc8, 0x67, 0xf7, 0x3f, 0x3c, 0xab, 0xbf, - 0x60, 0x99, 0xac, 0x99, 0x96, 0xbe, 0x66, 0xc2, 0x3c, 0x76, 0x1f, 0xfa, 0x98, 0x7d, 0xd0, 0x63, - 0xf5, 0x59, 0x2d, 0xb1, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, 0x25, 0xf9, 0x10, - 0x41, 0x3d, 0xb6, 0x1e, 0xb7, 0x89, 0xfd, 0x20, 0x65, 0x81, 0x36, 0xb3, 0xef, 0xd3, 0x34, 0x50, - 0xb1, 0x0b, 0xfc, 0x41, 0x24, 0x3a, 0x1c, 0x3c, 0xa2, 0xd1, 0x41, 0x23, 0xba, 0x1c, 0x2c, 0xa2, - 0xdd, 0x41, 0x22, 0xda, 0x1d, 0x1c, 0xa2, 0xd7, 0x41, 0x21, 0x9c, 0x3c, 0x2f, 0x13, 0x3a, 0xf0, - 0x07, 0x7f, 0xfc, 0x70, 0xd0, 0xc7, 0x1f, 0xc8, 0xf9, 0x62, 0x42, 0x9f, 0x80, 0x25, 0xb4, 0x9a, - 0x9c, 0xe3, 0xa1, 0x81, 0xbc, 0x4c, 0xa7, 0x73, 0x3a, 0x74, 0x3b, 0xf0, 0x50, 0xb3, 0x73, 0x38, - 0x74, 0xd4, 0xc6, 0xeb, 0x70, 0xb4, 0xab, 0x4e, 0xe7, 0x6a, 0xe8, 0x1a, 0x02, 0xd6, 0x37, 0x36, - 0x18, 0x04, 0x58, 0x88, 0xd0, 0xfa, 0xbb, 0xaf, 0x53, 0xca, 0x66, 0x68, 0x31, 0x7a, 0x4a, 0xa6, - 0x6c, 0x46, 0x23, 0xd9, 0x0c, 0xe0, 0x49, 0x14, 0x40, 0xc3, 0x5f, 0xbf, 0x31, 0xfc, 0xcc, 0x91, - 0x28, 0x8f, 0x4f, 0x92, 0x00, 0xdb, 0x4a, 0xc4, 0x3c, 0x34, 0x02, 0xfa, 0x90, 0x08, 0xe8, 0x43, - 0x21, 0x30, 0x0f, 0x81, 0x40, 0x89, 0x21, 0xa0, 0xd4, 0x85, 0x94, 0x05, 0xf2, 0xf4, 0x86, 0x4a, - 0x4f, 0x6b, 0xc0, 0x20, 0x75, 0xf2, 0x29, 0x92, 0x6c, 0x0b, 0x85, 0x07, 0x5e, 0xb4, 0x80, 0xbb, - 0xa4, 0x81, 0x56, 0x76, 0xac, 0x90, 0xeb, 0x81, 0x82, 0xbd, 0xcf, 0x50, 0xdf, 0x32, 0x15, 0x77, - 0x55, 0xd7, 0x0c, 0xbb, 0x97, 0x51, 0x6c, 0x5e, 0x24, 0xfd, 0xe1, 0x40, 0xbc, 0x0f, 0x16, 0x23, - 0x0f, 0x8f, 0x5a, 0x2f, 0x3c, 0xd6, 0x61, 0x68, 0x79, 0x60, 0x86, 0x41, 0x91, 0x86, 0x3e, 0x01, - 0x87, 0x3b, 0xd1, 0x86, 0x38, 0x61, 0x87, 0x35, 0x61, 0x87, 0x32, 0x31, 0x87, 0x2f, 0xc9, 0xd7, - 0x5f, 0xf2, 0x91, 0xa3, 0x68, 0x65, 0xc0, 0xc4, 0xca, 0x90, 0x22, 0x65, 0x30, 0x71, 0x32, 0x9c, - 0xca, 0x05, 0x51, 0xd5, 0x02, 0xac, 0x62, 0x41, 0x55, 0xad, 0xc0, 0xab, 0x54, 0xe0, 0x55, 0x29, - 0xd8, 0x2a, 0x14, 0xee, 0x42, 0x2f, 0x23, 0x41, 0x2a, 0x0c, 0x86, 0xec, 0x03, 0xcd, 0x4c, 0x3b, - 0x80, 0x7d, 0xa1, 0x59, 0xb4, 0x8a, 0x27, 0x64, 0x92, 0x66, 0x69, 0x4c, 0xb7, 0xd0, 0x69, 0x97, - 0x36, 0xf4, 0x4b, 0x1b, 0x1a, 0xa6, 0x07, 0x1d, 0xc3, 0xa2, 0x65, 0x60, 0xf4, 0xac, 0x80, 0x08, - 0xfe, 0x09, 0x99, 0xb0, 0xb7, 0xfb, 0x03, 0xdf, 0xe2, 0x0f, 0xae, 0xf2, 0xc5, 0xbe, 0x94, 0x4c, - 0x83, 0xe3, 0x44, 0xb4, 0x90, 0xf2, 0xe9, 0xa2, 0xe2, 0xd5, 0x49, 0xb8, 0x77, 0x83, 0x7d, 0x45, - 0x1f, 0x5d, 0x5b, 0x98, 0x6b, 0xeb, 0x72, 0xab, 0xbd, 0x56, 0x3e, 0x4e, 0x71, 0x68, 0x29, 0xaf, - 0x53, 0x16, 0x5e, 0x0b, 0x74, 0x48, 0xe8, 0x3b, 0x72, 0xb5, 0xb8, 0x1b, 0x57, 0x8b, 0x3b, 0x71, - 0xb1, 0xef, 0xc2, 0xa5, 0x44, 0x75, 0x29, 0x83, 0x20, 0xe5, 0x65, 0x52, 0x55, 0x0f, 0x8f, 0x6d, - 0x1b, 0x22, 0x69, 0xdf, 0x29, 0x93, 0xd2, 0x3a, 0x80, 0x50, 0x26, 0x85, 0x10, 0x30, 0x10, 0x86, - 0xfa, 0x4b, 0x53, 0x9c, 0xda, 0x93, 0x05, 0xb2, 0x46, 0xeb, 0x73, 0x90, 0x2f, 0x0f, 0x45, 0x64, - 0xba, 0xc5, 0x26, 0x23, 0x1a, 0x5c, 0xd5, 0xcd, 0x28, 0xce, 0x54, 0x72, 0x1e, 0x76, 0x94, 0x19, - 0x76, 0xbb, 0x89, 0x4a, 0x53, 0x1c, 0x19, 0xd9, 0x0c, 0xfb, 0x29, 0x24, 0x9b, 0x87, 0x99, 0x14, - 0x92, 0x2d, 0x10, 0xb9, 0x14, 0x92, 0x2d, 0xce, 0xbd, 0x28, 0x24, 0x2b, 0x9b, 0xde, 0x52, 0x48, - 0xb6, 0x6c, 0x15, 0x0d, 0x85, 0x64, 0x8b, 0xcd, 0x0f, 0x14, 0x92, 0x91, 0xd8, 0x20, 0x12, 0x1c, - 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, - 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xc2, 0x60, 0x94, 0xe6, 0xcf, 0xcc, 0x4c, 0x83, 0xd1, 0xfd, 0x99, - 0x45, 0x9e, 0x28, 0x17, 0x23, 0x99, 0xd2, 0x98, 0x54, 0xa1, 0x93, 0x2b, 0x6d, 0x48, 0x96, 0x36, - 0x64, 0x4b, 0x0f, 0xd2, 0x85, 0x45, 0xbe, 0xc0, 0x48, 0x58, 0x01, 0x11, 0x7c, 0xb9, 0x58, 0xbe, - 0xd3, 0x85, 0xc9, 0x70, 0xee, 0xb2, 0x9c, 0xb5, 0x3f, 0x00, 0x6d, 0x6f, 0x85, 0x59, 0xa6, 0x92, - 0x18, 0x56, 0x37, 0x66, 0xfc, 0xfd, 0xea, 0xd5, 0xa7, 0x55, 0x73, 0xfb, 0xf4, 0xfb, 0xa7, 0x35, - 0x73, 0xfb, 0x74, 0xfc, 0xed, 0x5a, 0xfe, 0x65, 0xfc, 0xfd, 0xfa, 0xa7, 0x55, 0xb3, 0x3e, 0xfd, - 0x7e, 0xe3, 0xd3, 0xaa, 0xb9, 0x71, 0xfa, 0xfa, 0xaf, 0xbf, 0xde, 0xbc, 0xfe, 0xe7, 0xed, 0xcd, - 0xd3, 0x7f, 0xf1, 0x3f, 0x06, 0x47, 0xc6, 0x19, 0x7c, 0xef, 0xa0, 0x8f, 0x23, 0xe3, 0xd5, 0x3f, - 0x04, 0x47, 0xc6, 0xc9, 0xef, 0xb4, 0xb2, 0x94, 0x23, 0xe3, 0x8b, 0xb5, 0x5b, 0xfb, 0x09, 0xd0, - 0xc7, 0x47, 0xc7, 0x38, 0x34, 0xbe, 0x3c, 0x16, 0x72, 0x68, 0x9c, 0x21, 0x63, 0x0e, 0x21, 0x83, - 0x63, 0xe3, 0x77, 0xc6, 0xc6, 0x9d, 0xc1, 0x55, 0xdd, 0x99, 0xae, 0x90, 0x35, 0x59, 0x20, 0x0e, - 0x8e, 0xeb, 0x16, 0x9f, 0xc6, 0xed, 0xa8, 0x5b, 0xbf, 0x82, 0x9c, 0x1b, 0x7f, 0x60, 0x3e, 0xc7, - 0xc6, 0xe7, 0x61, 0x26, 0xc7, 0xc6, 0x17, 0x08, 0x5c, 0x8e, 0x8d, 0x2f, 0xce, 0xbd, 0x38, 0x36, - 0x5e, 0x36, 0xc1, 0xe5, 0xd8, 0xf8, 0xb2, 0xd5, 0x34, 0x1c, 0x1b, 0x5f, 0x6c, 0x7e, 0xe0, 0xd8, - 0x38, 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, - 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0x2a, 0x0c, 0xe6, 0xd8, 0x78, 0xa5, - 0xe4, 0x89, 0x63, 0xe3, 0x24, 0x53, 0x1a, 0x93, 0x2a, 0x74, 0x72, 0xa5, 0x0d, 0xc9, 0xd2, 0x86, - 0x6c, 0xe9, 0x41, 0xba, 0xb0, 0xc8, 0x17, 0x18, 0x09, 0x2b, 0x20, 0xc2, 0xb1, 0x71, 0x21, 0x2c, - 0x87, 0x63, 0xe3, 0x55, 0x3c, 0x00, 0xc7, 0xc6, 0xff, 0xfd, 0xc5, 0xb1, 0xf1, 0x45, 0xa2, 0x8f, - 0x63, 0xe3, 0xd5, 0x3f, 0x04, 0xc7, 0xc6, 0xc9, 0xef, 0xb4, 0xb2, 0x94, 0x63, 0xe3, 0x8b, 0xb5, - 0x7b, 0x39, 0x66, 0x40, 0xef, 0x4f, 0x8e, 0x71, 0x6a, 0x7c, 0x79, 0x2c, 0xe4, 0xd4, 0x38, 0x23, - 0xc6, 0xcb, 0x23, 0x06, 0x87, 0xc6, 0xef, 0x0d, 0x8d, 0x17, 0x3f, 0xce, 0x99, 0x71, 0x4d, 0xa3, - 0x93, 0x11, 0x0d, 0xae, 0x36, 0xc1, 0x0f, 0x1b, 0xdf, 0xe4, 0x61, 0xe3, 0x0b, 0x32, 0x93, 0x53, - 0xe3, 0x0b, 0x44, 0x2e, 0xa7, 0xc6, 0x17, 0xe7, 0x5e, 0x9c, 0x1a, 0x2f, 0x9b, 0xe0, 0x72, 0x6a, - 0x7c, 0xd9, 0x6a, 0x1a, 0x4e, 0x8d, 0x2f, 0x36, 0x3f, 0x70, 0x6a, 0x9c, 0xc4, 0x06, 0x91, 0xe0, - 0x00, 0x13, 0x1d, 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, - 0x20, 0xc4, 0x08, 0x8e, 0x20, 0x15, 0x06, 0x73, 0x6a, 0xbc, 0x52, 0xf2, 0xc4, 0xa9, 0x71, 0x92, - 0x29, 0x8d, 0x49, 0x15, 0x3a, 0xb9, 0xd2, 0x86, 0x64, 0x69, 0x43, 0xb6, 0xf4, 0x20, 0x5d, 0x58, - 0xe4, 0x0b, 0x8c, 0x84, 0x15, 0x10, 0xd1, 0x62, 0x6a, 0x7c, 0x93, 0x53, 0xe3, 0x15, 0x31, 0x06, - 0x4d, 0xa6, 0xc6, 0x43, 0xf3, 0xdc, 0x32, 0xf7, 0x4f, 0xff, 0x59, 0xfb, 0xbd, 0x7e, 0xb3, 0xf3, - 0xfa, 0x9f, 0xad, 0x9b, 0xfb, 0x6f, 0x7e, 0x7f, 0xec, 0xc7, 0xd6, 0x7e, 0xdf, 0xba, 0xd9, 0x99, - 0xf1, 0x7f, 0x36, 0x6f, 0x76, 0x7e, 0xf1, 0xef, 0xd8, 0xb8, 0x79, 0xf5, 0xe0, 0x47, 0x47, 0xef, - 0xaf, 0xcf, 0xfa, 0x85, 0xfa, 0x8c, 0x5f, 0x78, 0x3b, 0xeb, 0x17, 0xde, 0xce, 0xf8, 0x85, 0x99, - 0x26, 0xad, 0xcf, 0xf8, 0x85, 0x8d, 0x9b, 0xef, 0x0f, 0x7e, 0xfe, 0xd5, 0xe3, 0x3f, 0xba, 0x79, - 0xf3, 0xfa, 0xfb, 0xac, 0xff, 0xb7, 0x75, 0xf3, 0x7d, 0xe7, 0x35, 0x67, 0xe8, 0x99, 0x8a, 0x7e, - 0xf4, 0x45, 0xce, 0xd0, 0x57, 0xff, 0x10, 0x9c, 0xa1, 0x27, 0xdb, 0xd5, 0xca, 0x52, 0xce, 0xd0, - 0x2f, 0xd6, 0xee, 0x65, 0x98, 0x88, 0xdd, 0xe4, 0xd1, 0xeb, 0xcb, 0x6c, 0x21, 0x87, 0xe8, 0x19, - 0x32, 0xe6, 0x10, 0x32, 0x38, 0x45, 0xff, 0xe3, 0x14, 0xfd, 0x26, 0x8f, 0x5e, 0xd7, 0x3e, 0x3e, - 0x8d, 0x9b, 0x73, 0xd0, 0x47, 0xaf, 0x6f, 0xf2, 0xe8, 0xf5, 0xc5, 0x98, 0xc9, 0x21, 0xfa, 0x05, - 0x02, 0x97, 0x43, 0xf4, 0x8b, 0x73, 0x2f, 0x0e, 0xd1, 0x97, 0x4d, 0x70, 0x39, 0x44, 0xbf, 0x6c, - 0x35, 0x0d, 0x87, 0xe8, 0x17, 0x9b, 0x1f, 0x38, 0x44, 0x4f, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, - 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, - 0x04, 0x47, 0x90, 0x0a, 0x83, 0x39, 0x44, 0x5f, 0x29, 0x79, 0xe2, 0x10, 0x3d, 0xc9, 0x94, 0xc6, - 0xa4, 0x0a, 0x9d, 0x5c, 0x69, 0x43, 0xb2, 0xb4, 0x21, 0x5b, 0x7a, 0x90, 0x2e, 0x2c, 0xf2, 0x05, - 0x46, 0xc2, 0x0a, 0x88, 0x70, 0x88, 0x5e, 0x08, 0xcb, 0xe1, 0x10, 0x7d, 0x15, 0x0f, 0xc0, 0x21, - 0x7a, 0x0e, 0xd1, 0xff, 0xfa, 0x8b, 0x43, 0xf4, 0x8b, 0xf4, 0x45, 0x0e, 0xd1, 0x57, 0xff, 0x10, - 0x1c, 0xa2, 0x27, 0xdb, 0xd5, 0xca, 0x52, 0x0e, 0xd1, 0x2f, 0xd6, 0xee, 0xe5, 0x98, 0x88, 0xe5, - 0x41, 0xf4, 0xcb, 0x6b, 0x21, 0x67, 0xe8, 0x19, 0x31, 0x5e, 0x1e, 0x31, 0x38, 0x42, 0x7f, 0x6f, - 0x84, 0x9e, 0x07, 0xd1, 0xeb, 0x1e, 0x9d, 0x8c, 0x5e, 0x18, 0x9b, 0x61, 0xf7, 0xff, 0x85, 0x1d, - 0x15, 0x77, 0xae, 0xcd, 0x34, 0xea, 0x02, 0x8d, 0xcf, 0x3f, 0x62, 0x3b, 0x67, 0xe7, 0xe7, 0x61, - 0x26, 0x67, 0xe7, 0x17, 0x88, 0x5a, 0xce, 0xce, 0x2f, 0xce, 0xbd, 0x38, 0x3b, 0x5f, 0x36, 0xb1, - 0xe5, 0xec, 0xfc, 0xb2, 0xd5, 0x32, 0x30, 0xb3, 0xf3, 0x0f, 0xe8, 0x01, 0xde, 0x1c, 0xfd, 0xc3, - 0x47, 0xe0, 0x4c, 0xfd, 0x32, 0x13, 0x1e, 0x44, 0xe2, 0x03, 0x4c, 0x80, 0x50, 0x89, 0x10, 0x3c, - 0x21, 0x82, 0x27, 0x46, 0xd8, 0x04, 0x09, 0x83, 0x28, 0x81, 0x10, 0x26, 0x38, 0xe2, 0x54, 0x18, - 0x8c, 0x25, 0x3e, 0x7c, 0x90, 0x67, 0x90, 0x44, 0x88, 0xa0, 0xc4, 0x09, 0x96, 0x40, 0x21, 0x13, - 0x29, 0x0d, 0x08, 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, 0x69, 0x43, 0xb4, 0xf4, 0x20, 0x5c, 0x58, - 0xc4, 0x0b, 0x8c, 0x80, 0xc1, 0x12, 0xb1, 0xc2, 0xf0, 0xf3, 0x5e, 0x78, 0x91, 0xe2, 0x06, 0xcb, - 0x69, 0xbe, 0x1a, 0x3f, 0x06, 0x68, 0x7c, 0xc1, 0x14, 0x3c, 0xc2, 0x13, 0x35, 0x1d, 0x08, 0x9b, - 0x46, 0xc4, 0x4d, 0x17, 0x02, 0xa7, 0x1d, 0x91, 0xd3, 0x8e, 0xd0, 0xe9, 0x45, 0xec, 0x30, 0x09, - 0x1e, 0x28, 0xd1, 0x2b, 0xa0, 0x03, 0x2b, 0xa0, 0x7c, 0x90, 0x31, 0x54, 0x3c, 0xbc, 0x54, 0xc9, - 0x78, 0x92, 0x14, 0x38, 0x6b, 0x4c, 0xbb, 0x5c, 0x75, 0xe0, 0x67, 0xb0, 0xe3, 0xe1, 0xe5, 0x08, - 0x54, 0x74, 0xe5, 0x32, 0x57, 0x1d, 0x5a, 0x80, 0x56, 0x3c, 0x85, 0x0e, 0x42, 0xb4, 0xdb, 0x87, - 0xd1, 0x40, 0x90, 0x56, 0x3c, 0x0c, 0xb4, 0x30, 0x0d, 0x97, 0x5d, 0x00, 0x86, 0x23, 0xa3, 0x90, - 0x0f, 0x00, 0x4d, 0x16, 0xcd, 0x24, 0x16, 0x77, 0x1f, 0x86, 0x9d, 0x99, 0x2a, 0xcc, 0x67, 0x67, - 0x46, 0x90, 0x3b, 0xb0, 0x33, 0x23, 0xc7, 0xad, 0xd9, 0x99, 0x11, 0xfe, 0x40, 0xec, 0xcc, 0x90, - 0x3f, 0x3d, 0x13, 0x3a, 0xfa, 0x74, 0x66, 0xd2, 0xeb, 0x34, 0x53, 0x97, 0xb8, 0xf4, 0x69, 0x05, - 0xfc, 0x9c, 0xab, 0x5b, 0x1a, 0x02, 0x7e, 0xde, 0x55, 0xf1, 0x20, 0x7f, 0x7f, 0x5a, 0x35, 0xb7, - 0x2d, 0x73, 0x3f, 0x34, 0xcf, 0x4f, 0xff, 0xa9, 0xdf, 0xfc, 0xf5, 0xd7, 0x9b, 0x9f, 0xbc, 0xf1, - 0x1f, 0xdc, 0xa8, 0x7b, 0xca, 0x3a, 0x9b, 0x79, 0x62, 0x86, 0x1f, 0x5c, 0x85, 0xbd, 0xa1, 0xc2, - 0xaf, 0xb0, 0xc7, 0x8f, 0xc1, 0xda, 0x9a, 0xb5, 0x35, 0x6b, 0x6b, 0xd6, 0xd6, 0xac, 0xad, 0x59, - 0x5b, 0xb3, 0xb6, 0x26, 0x67, 0x62, 0x6d, 0xfd, 0x0b, 0x19, 0x63, 0x18, 0xc5, 0xd9, 0xdb, 0x75, - 0x0d, 0x0a, 0xeb, 0x2d, 0xe0, 0x47, 0xf0, 0xc2, 0xf8, 0x42, 0xc1, 0x57, 0xd5, 0xd8, 0x09, 0x7b, - 0x65, 0x32, 0x3c, 0x00, 0xcf, 0x3c, 0x34, 0x29, 0x2c, 0x1e, 0x3c, 0xce, 0xc9, 0xa4, 0x56, 0xd5, - 0xe5, 0x79, 0xf6, 0x93, 0xb0, 0x93, 0x45, 0xfd, 0xb8, 0x11, 0x5d, 0x44, 0xf9, 0x78, 0xc7, 0x2a, - 0xfc, 0x73, 0xdd, 0xfc, 0xae, 0x41, 0x08, 0x08, 0xbf, 0x31, 0x04, 0x08, 0x0f, 0x01, 0xf5, 0xf5, - 0xed, 0xfa, 0xf6, 0xe6, 0xd6, 0xfa, 0xf6, 0x06, 0x63, 0x01, 0x0b, 0x12, 0x5a, 0x7f, 0xf7, 0xc5, - 0x76, 0x3f, 0x73, 0xdd, 0xac, 0x30, 0xf3, 0x55, 0x45, 0x17, 0x9f, 0x33, 0xfc, 0x7e, 0xff, 0xe4, - 0x39, 0xd8, 0xf0, 0xaf, 0xc2, 0x7c, 0x36, 0xfc, 0x05, 0x79, 0x02, 0x1b, 0xfe, 0x72, 0xdc, 0x9a, - 0x0d, 0x7f, 0xe1, 0x0f, 0xc4, 0x86, 0x3f, 0x59, 0xd3, 0x33, 0xa1, 0xa3, 0x57, 0xc3, 0xff, 0x0f, - 0x0d, 0xfa, 0xfd, 0x1b, 0xec, 0xf7, 0x57, 0xfc, 0x62, 0xbf, 0x9f, 0x75, 0xc5, 0x02, 0x1f, 0x87, - 0xfd, 0x7e, 0x66, 0xf3, 0x32, 0x42, 0x00, 0xfb, 0xfd, 0xe2, 0x43, 0xc0, 0xfa, 0x06, 0x1b, 0xfd, - 0x2c, 0x44, 0x68, 0xfd, 0x0f, 0x2f, 0x36, 0xfa, 0x69, 0x31, 0x7c, 0x4a, 0x46, 0xbd, 0xf8, 0xb5, - 0xb0, 0x5f, 0xfb, 0xeb, 0x1c, 0x1f, 0xde, 0x04, 0xf7, 0xf0, 0x2d, 0xa4, 0xfb, 0x60, 0xf1, 0xdc, - 0x1a, 0xc8, 0xa5, 0x41, 0x05, 0x45, 0xd0, 0x42, 0x22, 0x50, 0xd2, 0xcf, 0x73, 0xed, 0xab, 0x04, - 0x3a, 0xcf, 0xb5, 0xaf, 0xce, 0x5d, 0x79, 0xae, 0xbd, 0x34, 0x0e, 0xca, 0x73, 0xed, 0xc9, 0x69, - 0xfe, 0x1d, 0x22, 0xb0, 0xfb, 0x7f, 0xb7, 0xf7, 0x1d, 0xaa, 0xf0, 0x3c, 0x51, 0xe7, 0x88, 0x11, - 0x7f, 0x7a, 0x74, 0x06, 0xa0, 0xc4, 0xc7, 0x68, 0x4d, 0x2a, 0xc3, 0x37, 0x6f, 0xc6, 0x45, 0x52, - 0x6d, 0x4c, 0x31, 0x59, 0x2a, 0x2d, 0xb1, 0xa5, 0x28, 0xb7, 0xaa, 0x7d, 0x50, 0xd7, 0x68, 0x45, - 0x11, 0xe6, 0x21, 0xb6, 0xd0, 0x87, 0xd6, 0x42, 0x1f, 0x52, 0x8b, 0x79, 0x28, 0x2d, 0x4a, 0x00, - 0x01, 0x6d, 0xee, 0xb2, 0xa9, 0x0b, 0x74, 0x1f, 0xf6, 0xf8, 0x03, 0xcb, 0x92, 0x61, 0x27, 0x8b, - 0x27, 0x54, 0xb7, 0x39, 0xfe, 0x04, 0x9c, 0xc9, 0xc3, 0x07, 0xad, 0xc9, 0xb2, 0x07, 0x4e, 0x1a, - 0xa5, 0x81, 0x3b, 0x5a, 0xef, 0xc0, 0x4d, 0x07, 0x81, 0xdf, 0xbb, 0xca, 0xdf, 0x6a, 0x4e, 0x16, - 0xce, 0x9a, 0x2e, 0x6a, 0x30, 0x7d, 0x27, 0x28, 0xfe, 0x8e, 0x76, 0xbe, 0x70, 0x81, 0x1b, 0xc6, - 0xd6, 0x74, 0x91, 0xda, 0x51, 0x17, 0x83, 0xc7, 0xc9, 0x67, 0x45, 0xb2, 0x2d, 0x14, 0x1e, 0x6e, - 0xd1, 0xc2, 0xec, 0x32, 0x86, 0x57, 0xd9, 0x81, 0x42, 0xae, 0xfb, 0x09, 0x76, 0x3d, 0x23, 0xc7, - 0x54, 0x81, 0x14, 0xf9, 0x97, 0x07, 0xde, 0xb6, 0x82, 0xee, 0x19, 0x2e, 0x3c, 0xbc, 0x61, 0xdc, - 0xdb, 0x0c, 0xb3, 0x9f, 0x85, 0xb4, 0x7f, 0x05, 0xb8, 0x5f, 0x85, 0xb6, 0x3f, 0x05, 0xbb, 0x1f, - 0x05, 0xbb, 0xff, 0x84, 0xb9, 0xdf, 0x44, 0x8a, 0xfe, 0x92, 0x8f, 0x1c, 0xe5, 0x5e, 0x64, 0x63, - 0x3c, 0xc9, 0x05, 0x13, 0xbc, 0x8a, 0x23, 0xe2, 0x73, 0xb3, 0x51, 0xfa, 0xea, 0x10, 0x84, 0x06, - 0x8e, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, - 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xc2, 0xe0, 0x5e, 0xbf, 0x13, 0xf6, - 0xcc, 0x41, 0xd2, 0xcf, 0x54, 0x07, 0x52, 0xbe, 0x70, 0xdb, 0x0e, 0xba, 0xff, 0x24, 0x9c, 0x7f, - 0x26, 0xad, 0xd2, 0x8b, 0x5e, 0x69, 0x40, 0xb3, 0xd0, 0xe9, 0x96, 0x36, 0xb4, 0x4b, 0x1b, 0xfa, - 0xa5, 0x07, 0x0d, 0xc3, 0xa2, 0x63, 0x60, 0xb4, 0xac, 0x80, 0x08, 0xfe, 0xfc, 0xb3, 0x8a, 0x87, - 0x97, 0x2a, 0x09, 0x01, 0x09, 0xce, 0x5d, 0x92, 0xb3, 0x56, 0x07, 0xb4, 0xdd, 0x8e, 0x87, 0x97, - 0x23, 0xf0, 0xd0, 0x45, 0x17, 0xb9, 0xca, 0x90, 0x93, 0xaf, 0x85, 0xf5, 0xc8, 0x13, 0xb0, 0xb7, - 0x0f, 0x01, 0x3c, 0x09, 0x5b, 0x3c, 0x04, 0xe4, 0x44, 0x2c, 0x1e, 0x0b, 0x60, 0xfb, 0x68, 0xae, - 0x14, 0x96, 0x93, 0xc6, 0x42, 0x47, 0xe1, 0x7e, 0x9c, 0x35, 0x42, 0x3a, 0x29, 0x82, 0x63, 0xb3, - 0x5a, 0xc7, 0x0e, 0x8e, 0xcd, 0x0a, 0x8f, 0x15, 0x08, 0xc3, 0x5e, 0xe5, 0x09, 0x0f, 0xa2, 0xf8, - 0x8b, 0x75, 0xbb, 0x34, 0x1c, 0x27, 0xd6, 0x2d, 0x24, 0x8d, 0xa7, 0x72, 0xbb, 0xaa, 0x17, 0x5e, - 0x83, 0x4d, 0x12, 0x8f, 0x6d, 0xe6, 0x10, 0xf1, 0x3c, 0xcc, 0xe4, 0x10, 0xf1, 0x02, 0xd1, 0xca, - 0x21, 0xe2, 0xc5, 0xb9, 0x17, 0x87, 0x88, 0xcb, 0x66, 0xaf, 0x1c, 0x22, 0x5e, 0xb6, 0x82, 0x85, - 0x43, 0xc4, 0x8b, 0xcd, 0x0f, 0x1c, 0x22, 0x26, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, + 0xa5, 0x5f, 0xd5, 0xd5, 0x1f, 0x9d, 0xb4, 0xbf, 0x23, 0x4a, 0x43, 0x0e, 0x75, 0x34, 0x15, 0xb9, + 0xf4, 0xcf, 0x30, 0xab, 0xa6, 0x67, 0xbd, 0x0b, 0x95, 0xe4, 0xa5, 0xb7, 0x4b, 0x79, 0xda, 0x53, + 0xae, 0x2a, 0xb7, 0x9b, 0x59, 0x4e, 0x0c, 0x13, 0x2f, 0xdd, 0x2b, 0x2f, 0x7d, 0x27, 0x4a, 0x1d, + 0x75, 0xcf, 0x07, 0x4a, 0xd4, 0x59, 0x30, 0x19, 0xe3, 0xf1, 0x70, 0x9a, 0x8e, 0xee, 0x4f, 0x37, + 0x1d, 0x00, 0xe7, 0x1d, 0x01, 0x1f, 0x1c, 0x02, 0x8f, 0x1c, 0x03, 0x5f, 0x1c, 0x04, 0xef, 0x1c, + 0x05, 0xef, 0x1c, 0x06, 0xbf, 0x1c, 0x07, 0x37, 0x1d, 0x08, 0x47, 0x1d, 0x09, 0xe7, 0x1d, 0x8a, + 0xc9, 0x04, 0xdd, 0x8d, 0x2e, 0x3c, 0x88, 0xed, 0x2e, 0x07, 0xf4, 0xee, 0x73, 0x38, 0xd6, 0x1c, + 0x9f, 0xa6, 0xeb, 0x8e, 0x87, 0x4f, 0x0e, 0x88, 0x87, 0x8e, 0x88, 0x6f, 0x0e, 0x89, 0xb7, 0x8e, + 0x89, 0xb7, 0x0e, 0x8a, 0x9f, 0x8e, 0x8a, 0xdb, 0x0e, 0x8b, 0xe3, 0x8e, 0xcb, 0xe4, 0x95, 0x1f, + 0x5f, 0x75, 0x95, 0x5f, 0x88, 0x3b, 0x38, 0x8c, 0x08, 0x5b, 0xad, 0x54, 0x65, 0x5e, 0xc0, 0xee, + 0x38, 0x2c, 0xf1, 0xc6, 0x83, 0xb9, 0x1e, 0x84, 0x79, 0xae, 0xd2, 0xc4, 0x9b, 0xfe, 0x0f, 0xa5, + 0xdf, 0x96, 0x97, 0xbf, 0xac, 0x05, 0xdb, 0x61, 0xd0, 0xae, 0x06, 0x1f, 0x4e, 0xbe, 0xaf, 0xbf, + 0xdc, 0xb8, 0x7e, 0xbb, 0xf2, 0xfd, 0xf5, 0xf5, 0xdd, 0x1f, 0xfe, 0xb8, 0xef, 0xaf, 0xad, 0xbf, + 0x7c, 0x7d, 0xfd, 0xf6, 0x81, 0x3f, 0xd9, 0xba, 0x7e, 0xfb, 0xc8, 0x67, 0x6c, 0x5e, 0x2f, 0xcf, + 0xfc, 0xd5, 0xfe, 0xcf, 0x2b, 0x0f, 0xfd, 0x83, 0x8d, 0x07, 0xfe, 0xc1, 0xab, 0x87, 0xfe, 0xc1, + 0xab, 0x07, 0xfe, 0xc1, 0x83, 0x53, 0xaa, 0x3c, 0xf0, 0x0f, 0x36, 0xaf, 0x7f, 0xcc, 0xfc, 0xfd, + 0xe5, 0xfb, 0xff, 0xea, 0xd6, 0xf5, 0xca, 0x8f, 0x87, 0xfe, 0xec, 0xf5, 0xf5, 0x8f, 0xb7, 0x2b, + 0x2b, 0x7f, 0x71, 0x9f, 0x1a, 0x4e, 0xc8, 0xe8, 0x2b, 0x1a, 0x69, 0x95, 0x72, 0x1f, 0x08, 0x6b, + 0x42, 0x56, 0x83, 0xd9, 0x22, 0x63, 0x91, 0xb1, 0xc8, 0x58, 0x64, 0x2c, 0x32, 0x16, 0x19, 0x8b, + 0x8c, 0x45, 0xc6, 0x0e, 0x65, 0x6c, 0x4b, 0x25, 0x79, 0x94, 0x5f, 0xa5, 0xaa, 0xed, 0x93, 0x8a, + 0xdd, 0xf4, 0x60, 0xae, 0xf5, 0xd1, 0xd2, 0xbe, 0x0b, 0x33, 0x8f, 0x78, 0xe2, 0xa6, 0xe3, 0x68, + 0xfd, 0x68, 0xd4, 0x43, 0xd2, 0xa7, 0x16, 0x92, 0x3e, 0xb6, 0x8e, 0xf4, 0xb4, 0x6c, 0x71, 0x54, + 0x10, 0xff, 0xbe, 0x7a, 0x40, 0xcb, 0x51, 0xec, 0x47, 0xab, 0x1d, 0xdd, 0xfe, 0x3f, 0x7a, 0x70, + 0x61, 0x42, 0xcf, 0x32, 0xa1, 0xea, 0xee, 0x2f, 0x1f, 0x0f, 0xeb, 0xc7, 0xff, 0xdc, 0xa3, 0x0b, + 0x97, 0xd9, 0x2f, 0xba, 0x70, 0xe1, 0x14, 0x14, 0x0e, 0xcc, 0x31, 0x15, 0x40, 0x1b, 0x4b, 0x71, + 0x45, 0x8b, 0x72, 0xb5, 0x01, 0xd6, 0xa3, 0xdb, 0x8a, 0x8e, 0x6b, 0x8d, 0x9d, 0xda, 0x87, 0xea, + 0xa7, 0xdd, 0xe3, 0xc6, 0x5e, 0xed, 0xf8, 0xb0, 0xfe, 0x1e, 0xa5, 0x81, 0x11, 0x3d, 0xd5, 0x88, + 0x3e, 0xed, 0xbf, 0xff, 0xb8, 0x7f, 0x74, 0x7c, 0x58, 0xad, 0xef, 0xd7, 0x76, 0x1a, 0xbb, 0x47, + 0x07, 0x18, 0x11, 0x46, 0xf4, 0x54, 0x23, 0xf2, 0xf1, 0x3e, 0x64, 0xac, 0xc7, 0x3d, 0xeb, 0x69, + 0x7c, 0xae, 0x1e, 0xd6, 0xab, 0xc7, 0xf5, 0x8f, 0xfb, 0xd8, 0x11, 0x76, 0xf4, 0x54, 0x3b, 0x1a, + 0x74, 0xb9, 0xdd, 0xaf, 0xd5, 0x7f, 0xf9, 0xe7, 0xbb, 0x8f, 0x87, 0x8d, 0xea, 0xce, 0xce, 0x61, + 0xed, 0xe8, 0x08, 0x43, 0xc2, 0x90, 0x9e, 0x6a, 0x48, 0xd5, 0x9d, 0xbd, 0xfa, 0x7e, 0xe3, 0x97, + 0xc3, 0x8f, 0x9f, 0xf0, 0x86, 0x30, 0x9f, 0x67, 0x98, 0xcf, 0xbf, 0xb8, 0x7b, 0x05, 0xd3, 0x79, + 0x8e, 0xe9, 0xec, 0x55, 0xff, 0x3d, 0x74, 0x87, 0x3c, 0xbc, 0x44, 0x17, 0x2b, 0x72, 0xc8, 0x11, + 0xda, 0xc0, 0x11, 0xc2, 0x90, 0xf4, 0x78, 0xd4, 0xf5, 0xfd, 0xe3, 0xda, 0xe1, 0x87, 0xea, 0xfb, + 0x1a, 0x96, 0x84, 0x25, 0xcd, 0xa5, 0xf1, 0x77, 0x3f, 0x62, 0x3c, 0x18, 0xcf, 0xd3, 0x8d, 0x67, + 0xe2, 0x0c, 0x35, 0x26, 0xb1, 0xea, 0x63, 0x0c, 0x09, 0x43, 0x7a, 0xb2, 0x21, 0xd5, 0xfe, 0x7d, + 0x5c, 0xdb, 0xdf, 0xa9, 0xed, 0xa0, 0xf0, 0xb1, 0xa3, 0xb9, 0x1d, 0x6c, 0xfc, 0x22, 0x2c, 0x69, + 0x6e, 0x4b, 0xfa, 0x74, 0x5c, 0xdf, 0xad, 0xff, 0x4f, 0x6d, 0x07, 0xc1, 0x8f, 0x15, 0x3d, 0xdf, + 0x8a, 0xaa, 0x3b, 0xff, 0x6a, 0xec, 0x56, 0xf7, 0x89, 0x3a, 0x62, 0x3e, 0xcf, 0x31, 0x9f, 0xbe, + 0x2f, 0x34, 0x89, 0x3c, 0x72, 0x8c, 0x8f, 0x15, 0x3d, 0x5f, 0xe2, 0x1f, 0x1c, 0x7e, 0x3c, 0xae, + 0xbd, 0x3f, 0xae, 0x7f, 0xdc, 0x1f, 0x26, 0x37, 0x62, 0x47, 0xd8, 0xd1, 0x53, 0xc9, 0xec, 0x73, + 0xb5, 0xbe, 0x5b, 0x7d, 0xb7, 0x5b, 0xc3, 0x27, 0xc2, 0x8c, 0xe6, 0x84, 0xa3, 0xea, 0xf1, 0xf1, + 0x61, 0xfd, 0xdd, 0xa7, 0xe3, 0x1a, 0xe2, 0x0c, 0x13, 0x7a, 0xba, 0x38, 0xdb, 0x3f, 0xac, 0x1d, + 0xd5, 0x0e, 0x3f, 0x23, 0xcf, 0xb0, 0xa3, 0x79, 0xec, 0xe8, 0xb0, 0x76, 0x54, 0xdf, 0xf9, 0x54, + 0xdd, 0xc5, 0x8a, 0xb0, 0xa2, 0x39, 0x54, 0x5a, 0xf5, 0xdf, 0x8d, 0x21, 0x1e, 0xe1, 0x1c, 0x61, + 0x4b, 0x1a, 0x9c, 0x23, 0x2f, 0x83, 0x45, 0x14, 0x96, 0x2f, 0xfa, 0x96, 0x2c, 0x48, 0x0d, 0xa8, + 0xc7, 0xd5, 0x7b, 0x18, 0x8b, 0xbc, 0x12, 0xf1, 0xb6, 0x4a, 0x0f, 0x63, 0xb1, 0x42, 0xee, 0x9e, + 0x85, 0xf1, 0xb1, 0x12, 0x7b, 0x56, 0xe2, 0x63, 0xd5, 0x1d, 0xf6, 0x22, 0x6d, 0x2f, 0x9e, 0x57, + 0xd7, 0x61, 0x30, 0xd2, 0x06, 0xe3, 0x65, 0x8e, 0x1d, 0x66, 0x22, 0x6f, 0x26, 0x9e, 0x55, 0xcb, + 0x61, 0x22, 0xd2, 0x26, 0xe2, 0x73, 0x55, 0x1c, 0xd6, 0x62, 0xc1, 0x51, 0xd9, 0xc0, 0x51, 0xc1, + 0x60, 0x9e, 0xe6, 0xd9, 0x7a, 0x9c, 0xcd, 0x8d, 0xc5, 0x58, 0xd1, 0xce, 0x7e, 0x55, 0xb3, 0x61, + 0x24, 0xd2, 0x46, 0xe2, 0x79, 0xd5, 0x1a, 0x06, 0x23, 0x6d, 0x30, 0x7e, 0x57, 0xa7, 0x61, 0x2f, + 0x56, 0x1c, 0x5d, 0xfc, 0x16, 0x2c, 0xe6, 0xd1, 0x16, 0xe3, 0x73, 0xb5, 0x19, 0xd6, 0x22, 0x6d, + 0x2d, 0x5e, 0x56, 0x95, 0x61, 0x26, 0xd2, 0x66, 0xe2, 0x73, 0xf5, 0x18, 0xd6, 0x62, 0x45, 0x3a, + 0x7b, 0x5b, 0x25, 0x86, 0xbd, 0x88, 0x93, 0x90, 0xcf, 0xd5, 0x60, 0x98, 0x8b, 0x15, 0x78, 0xf1, + 0xb1, 0xea, 0x0b, 0x53, 0x11, 0x17, 0x43, 0x5e, 0x57, 0x77, 0x61, 0x2f, 0xd2, 0xf6, 0xe2, 0x73, + 0x15, 0x17, 0xd6, 0x22, 0xae, 0x8a, 0xbc, 0xaf, 0xd6, 0xc2, 0x66, 0xac, 0x38, 0x2f, 0x04, 0x5b, + 0x30, 0x91, 0x5b, 0x26, 0x72, 0xc0, 0xcd, 0x71, 0x58, 0x8f, 0x6e, 0x2b, 0x1a, 0x9c, 0x1c, 0x8d, + 0xae, 0xaf, 0xa4, 0x65, 0x18, 0x16, 0xf4, 0x74, 0x0b, 0x3a, 0xae, 0xfe, 0xb2, 0xb5, 0x81, 0xe1, + 0x60, 0x38, 0xcf, 0x80, 0x9e, 0x2d, 0xa0, 0x07, 0x0b, 0x9a, 0x0b, 0x7a, 0x30, 0x1b, 0xcc, 0xe6, + 0xa9, 0x66, 0x73, 0x70, 0x58, 0xfb, 0x50, 0xff, 0x37, 0x2d, 0x52, 0xb1, 0x9e, 0x39, 0xac, 0xe7, + 0xc3, 0x6e, 0xf5, 0x97, 0x23, 0xba, 0xa6, 0x98, 0xfd, 0xa2, 0x6b, 0x0a, 0xf1, 0x8f, 0xa2, 0x29, + 0x57, 0x2c, 0x05, 0x85, 0x8a, 0x81, 0xa0, 0x44, 0xb1, 0x14, 0x14, 0x27, 0xe6, 0x51, 0x2c, 0xf3, + 0xf0, 0x51, 0x59, 0x62, 0x25, 0x28, 0xc8, 0xe2, 0x28, 0x47, 0xf7, 0x15, 0xa3, 0xdb, 0xeb, 0xe8, + 0xee, 0xec, 0xdc, 0x9c, 0x99, 0xa3, 0xe8, 0x59, 0xaa, 0x26, 0x49, 0x27, 0x0f, 0xf3, 0xa8, 0x93, + 0x94, 0xde, 0x3a, 0x8c, 0x9b, 0xa5, 0xac, 0x79, 0xae, 0x2e, 0xc2, 0x6e, 0x98, 0x9f, 0xf7, 0x91, + 0xb2, 0xdc, 0xe9, 0xaa, 0xa4, 0xd9, 0x49, 0xda, 0xd1, 0x59, 0x90, 0xa8, 0xfc, 0x8f, 0x4e, 0xfa, + 0x7b, 0x10, 0x25, 0x59, 0x1e, 0x26, 0x4d, 0x55, 0xbe, 0xfb, 0x83, 0x6c, 0xe6, 0x27, 0xe5, 0x6e, + 0xda, 0xc9, 0x3b, 0xcd, 0x4e, 0x9c, 0x4d, 0xbe, 0x2b, 0x47, 0x59, 0x94, 0x95, 0x63, 0x75, 0xa9, + 0xe2, 0xd1, 0x6f, 0xe5, 0x38, 0x4a, 0x7e, 0x0f, 0xb2, 0x3c, 0xcc, 0x55, 0xd0, 0x0a, 0xf3, 0xf0, + 0x34, 0xcc, 0x54, 0x39, 0xce, 0xba, 0xe5, 0x3c, 0xbe, 0xcc, 0xfa, 0xbf, 0x94, 0xd5, 0xb7, 0x5c, + 0x25, 0x2d, 0xd5, 0x0a, 0xa2, 0xee, 0xe5, 0x46, 0x90, 0xaa, 0xb0, 0x79, 0x1e, 0x9e, 0x46, 0x71, + 0x94, 0x5f, 0x95, 0xbb, 0xa9, 0x6a, 0x47, 0xdf, 0x54, 0x36, 0xfa, 0xa6, 0x9c, 0xf5, 0x4e, 0x07, + 0xff, 0x6c, 0xf8, 0x7b, 0x39, 0xea, 0x5e, 0x6e, 0x05, 0x59, 0xa7, 0x97, 0x36, 0x55, 0x90, 0x76, + 0x7a, 0xb9, 0x4a, 0x83, 0xa8, 0x55, 0x1e, 0x8c, 0xe5, 0x26, 0xd0, 0xbb, 0xb7, 0xa9, 0xdc, 0x9a, + 0x91, 0x63, 0xdb, 0xdb, 0xf5, 0x6d, 0xbd, 0x08, 0xdb, 0xd9, 0xc1, 0x5c, 0xab, 0x52, 0x96, 0xa7, + 0xbd, 0x66, 0x9e, 0x8c, 0xfc, 0xcd, 0xfd, 0xe1, 0x3a, 0xd6, 0x47, 0xcb, 0xd8, 0x38, 0x18, 0x2d, + 0x5e, 0xa3, 0x9e, 0x45, 0x59, 0x63, 0xb7, 0xbf, 0x6a, 0x8d, 0xdd, 0xac, 0xdb, 0x38, 0x8e, 0x2f, + 0x1b, 0xb5, 0xd1, 0xe2, 0xd4, 0xbb, 0x97, 0x1b, 0x87, 0xb7, 0x96, 0xa6, 0x71, 0x30, 0x58, 0x91, + 0xc6, 0xd1, 0x60, 0x25, 0x1a, 0xf5, 0xee, 0xe5, 0xd6, 0xd1, 0x60, 0x21, 0x0e, 0x07, 0xeb, 0x50, + 0x6f, 0xb9, 0x85, 0x67, 0xee, 0xa0, 0x86, 0x43, 0x88, 0x51, 0x1a, 0x5a, 0x75, 0x90, 0x45, 0xad, + 0xcc, 0x39, 0xb8, 0x98, 0xa8, 0xa3, 0xdb, 0x93, 0x74, 0x0c, 0x6d, 0x7f, 0x8d, 0x92, 0x56, 0xe9, + 0xed, 0xd2, 0xba, 0x63, 0xd3, 0x7a, 0x3f, 0x40, 0xd4, 0xd2, 0xdb, 0xa5, 0x35, 0xc7, 0x26, 0x36, + 0xc4, 0x0c, 0x37, 0x99, 0x69, 0x6c, 0x6e, 0x9d, 0x66, 0xd0, 0xe7, 0x10, 0x17, 0x51, 0x7c, 0x08, + 0xb0, 0xce, 0xfa, 0xeb, 0xa5, 0x5f, 0xd5, 0xd5, 0x1f, 0xff, 0x3f, 0x7b, 0x6f, 0xd7, 0xd4, 0x36, + 0xb6, 0x7c, 0x0f, 0xdf, 0xcf, 0xa7, 0xa0, 0x54, 0xbf, 0x8b, 0x49, 0xd5, 0x38, 0x06, 0x62, 0x60, + 0xe0, 0x4e, 0x60, 0x41, 0x34, 0x31, 0xc6, 0x65, 0x8b, 0x9c, 0xcc, 0xc9, 0x70, 0x54, 0xc2, 0xde, + 0x10, 0x3d, 0x23, 0x64, 0x97, 0x24, 0x93, 0xf0, 0x9f, 0xe1, 0xbb, 0x3f, 0x65, 0xcb, 0x16, 0x2f, + 0x8e, 0x13, 0x5e, 0x2c, 0xa9, 0xd7, 0xd6, 0xe2, 0x62, 0xc2, 0x30, 0xc9, 0xa4, 0x25, 0xaf, 0xee, + 0x5e, 0xdd, 0xbb, 0x57, 0xef, 0x61, 0x34, 0xb8, 0x73, 0x5a, 0xa1, 0x63, 0xc7, 0xc6, 0x7b, 0x2f, + 0x36, 0xa3, 0xcb, 0xf1, 0x95, 0x0a, 0x13, 0x63, 0x6f, 0x2d, 0x89, 0xc6, 0x4a, 0x6a, 0x95, 0x76, + 0x67, 0x65, 0x06, 0x4c, 0x32, 0x72, 0x28, 0x46, 0xde, 0xf4, 0x23, 0x99, 0x01, 0xef, 0x2e, 0xaf, + 0xca, 0x8d, 0x28, 0x8b, 0x1c, 0x40, 0x6a, 0x48, 0x91, 0x49, 0x05, 0xc4, 0x53, 0x02, 0x04, 0x6a, + 0x00, 0x44, 0x11, 0x50, 0xa8, 0x02, 0x1c, 0x65, 0x80, 0xa3, 0x0e, 0x58, 0x14, 0x42, 0x26, 0x95, + 0x10, 0x4a, 0x29, 0xc4, 0x53, 0x8b, 0xcc, 0xc0, 0xb4, 0xb1, 0x2d, 0x3e, 0x08, 0xcd, 0xe3, 0x7a, + 0x6a, 0xae, 0x70, 0x7f, 0x96, 0x4d, 0x34, 0x60, 0x08, 0x07, 0x12, 0xf1, 0x00, 0x24, 0x20, 0x68, + 0x44, 0x04, 0x96, 0x90, 0xc0, 0x12, 0x13, 0x4c, 0x82, 0x22, 0x9b, 0xa8, 0x08, 0x27, 0x2c, 0x30, + 0xc4, 0x25, 0x33, 0xd4, 0x0b, 0x2e, 0x87, 0x91, 0x9f, 0x7c, 0xb9, 0xc2, 0x09, 0x60, 0xf3, 0x1c, + 0x71, 0x67, 0x3a, 0x48, 0x1c, 0x98, 0x11, 0x9b, 0x75, 0x10, 0x73, 0x51, 0x08, 0x0e, 0x22, 0xd1, + 0x01, 0x26, 0x3c, 0xa8, 0xc4, 0x07, 0x9e, 0x00, 0xc1, 0x13, 0x21, 0x6c, 0x42, 0x84, 0x41, 0x8c, + 0x40, 0x08, 0x52, 0x06, 0x05, 0xe7, 0x66, 0xa4, 0x30, 0x23, 0xf6, 0xd8, 0x0f, 0x93, 0xdf, 0x91, + 0xe2, 0xf5, 0x8c, 0x7e, 0x6c, 0x01, 0x99, 0xdc, 0xf5, 0xc2, 0x4b, 0x05, 0xb7, 0x24, 0x0b, 0x4f, + 0xee, 0x6f, 0x1c, 0xfb, 0x21, 0x5c, 0x22, 0x07, 0xe5, 0xd5, 0x0b, 0xe6, 0x4f, 0x57, 0xc1, 0x01, + 0xdb, 0x7f, 0x18, 0x79, 0xfd, 0xc4, 0x1f, 0x86, 0x4d, 0xff, 0xd2, 0x4f, 0xe2, 0xc9, 0x83, 0x70, + 0xa7, 0x48, 0x11, 0x2e, 0xeb, 0x7d, 0xa3, 0xcb, 0x96, 0xec, 0xb2, 0x9b, 0x5b, 0x5b, 0x74, 0x5a, + 0x12, 0x71, 0xbd, 0xac, 0xc5, 0x58, 0x39, 0x23, 0xff, 0x7d, 0x02, 0x24, 0x15, 0xe3, 0x22, 0xf0, + 0x2e, 0x63, 0xbc, 0xd6, 0x6f, 0x6a, 0x36, 0xdb, 0xbe, 0x79, 0x98, 0xcb, 0xb6, 0x6f, 0x81, 0x40, + 0x66, 0xdb, 0xb7, 0x38, 0x37, 0x64, 0xdb, 0xb7, 0xe4, 0x07, 0x60, 0xdb, 0x97, 0x9c, 0x63, 0x06, + 0x05, 0xdc, 0xb6, 0xaf, 0x0a, 0xc7, 0x57, 0x2a, 0x4a, 0x05, 0xc8, 0x78, 0xcd, 0xdf, 0x8d, 0x06, + 0x90, 0xcd, 0x56, 0x38, 0x9e, 0x8e, 0x25, 0xd0, 0xf5, 0x56, 0xf9, 0x56, 0x5b, 0x7e, 0x9c, 0x98, + 0x49, 0x12, 0x61, 0xb9, 0xdf, 0xb1, 0x1f, 0x5a, 0x81, 0x9a, 0x64, 0x8f, 0x49, 0xb9, 0x12, 0x8e, + 0x83, 0x00, 0x08, 0xc8, 0xc7, 0xde, 0x37, 0x5c, 0xe3, 0x4f, 0xa2, 0x81, 0x8a, 0xd4, 0x60, 0xff, + 0x66, 0x66, 0x3a, 0xbb, 0x03, 0x95, 0xe9, 0x0e, 0x5c, 0xcf, 0xda, 0x9c, 0x60, 0xdd, 0x81, 0xd4, + 0x6c, 0x76, 0x07, 0xd8, 0x1d, 0x60, 0x77, 0x80, 0xdd, 0x01, 0x76, 0x07, 0xd8, 0x1d, 0x20, 0xdf, + 0x60, 0x77, 0xa0, 0x90, 0x88, 0x3d, 0xf6, 0xc3, 0xe4, 0xdd, 0x26, 0x60, 0x63, 0x60, 0x87, 0x53, + 0x61, 0x39, 0x7f, 0x71, 0x2a, 0x8c, 0xc4, 0xfa, 0x19, 0xe6, 0x73, 0x2a, 0x8c, 0xe9, 0xf2, 0x25, + 0x2e, 0xcb, 0xa9, 0xb0, 0xd2, 0x5d, 0xb6, 0xb1, 0xb9, 0xdb, 0xd8, 0xdd, 0xde, 0xd9, 0xdc, 0xe5, + 0x70, 0x18, 0x09, 0xb9, 0x66, 0xd6, 0x72, 0x38, 0xac, 0x0a, 0x16, 0x4a, 0x97, 0x57, 0x83, 0xec, + 0x76, 0xcf, 0xec, 0xd5, 0x6b, 0x29, 0xf4, 0xbd, 0x7d, 0xb5, 0xf7, 0xbe, 0x97, 0xbc, 0xe4, 0x5d, + 0xbe, 0xd7, 0x09, 0xf6, 0x38, 0x90, 0x63, 0x20, 0xa8, 0xe3, 0x1f, 0x10, 0xaa, 0xcb, 0x25, 0x47, + 0x79, 0x02, 0x95, 0x4b, 0x8e, 0xf2, 0x73, 0x2f, 0x2e, 0x39, 0x2a, 0x9a, 0x92, 0x71, 0xc9, 0x51, + 0xd5, 0x58, 0x38, 0xcc, 0x31, 0x4d, 0x16, 0x71, 0x03, 0xe5, 0x5d, 0x44, 0xea, 0x02, 0x21, 0xe2, + 0xce, 0x07, 0x36, 0x01, 0x0e, 0x66, 0x8c, 0xce, 0xac, 0xb0, 0x79, 0xfb, 0x36, 0x2d, 0x02, 0xea, + 0x29, 0x05, 0x63, 0x29, 0xa0, 0x91, 0x65, 0x52, 0x57, 0xc4, 0x7e, 0x50, 0x37, 0xd2, 0x49, 0x3f, + 0xc6, 0xc8, 0x2d, 0xd4, 0x88, 0x2d, 0xd4, 0x48, 0x2d, 0xc6, 0x08, 0x2d, 0xef, 0x71, 0x7c, 0x9d, + 0x9d, 0x55, 0xe8, 0xf1, 0x49, 0xbe, 0x10, 0x20, 0xf7, 0x1b, 0xe0, 0xd2, 0x7f, 0xeb, 0xf9, 0x03, + 0x5e, 0x64, 0x89, 0x68, 0x11, 0x2f, 0xb2, 0x64, 0x3c, 0x4b, 0xef, 0xd8, 0xe3, 0xbd, 0x8d, 0xd2, + 0x1d, 0x44, 0xe8, 0xbd, 0x0a, 0xa2, 0xef, 0x51, 0xe0, 0x5d, 0x8d, 0xcf, 0xed, 0x5a, 0xf0, 0xae, + 0xc6, 0xd7, 0x98, 0xc8, 0xbb, 0x1a, 0x57, 0x64, 0x28, 0xef, 0x6a, 0x24, 0xe9, 0x2c, 0xea, 0x23, + 0x14, 0x7b, 0x57, 0x63, 0x22, 0xf9, 0x2c, 0x21, 0x0b, 0xc7, 0x53, 0x2b, 0x65, 0xdf, 0xcf, 0xb8, + 0xce, 0xfb, 0x19, 0xb5, 0xa3, 0x03, 0x40, 0xb4, 0x00, 0x85, 0x1e, 0xc0, 0xd1, 0x04, 0x38, 0xba, + 0x80, 0x45, 0x1b, 0x64, 0xd2, 0x07, 0xa1, 0x34, 0x22, 0xfb, 0x68, 0xc5, 0x4f, 0x00, 0x64, 0x11, + 0xd3, 0x1f, 0xa8, 0x30, 0xf1, 0x93, 0x1b, 0xd9, 0xa7, 0xff, 0x59, 0x0d, 0x2f, 0x58, 0x39, 0x62, + 0xd8, 0xb3, 0x57, 0xb9, 0xef, 0xc5, 0x40, 0x53, 0xa1, 0x76, 0xcf, 0xee, 0xb9, 0xbd, 0xd3, 0x7d, + 0xa7, 0xf5, 0xd1, 0x75, 0xfe, 0xec, 0x58, 0xd2, 0xc3, 0xfc, 0x54, 0x4c, 0x14, 0x43, 0xa8, 0x5c, + 0xc1, 0xd6, 0xc3, 0x74, 0x4f, 0x4e, 0x1d, 0xab, 0xeb, 0x1e, 0x98, 0x1d, 0x73, 0xdf, 0x6e, 0xd9, + 0xce, 0x9f, 0x33, 0x58, 0xf4, 0x10, 0x70, 0x81, 0x88, 0x0f, 0x2c, 0x9c, 0x3c, 0x05, 0x2f, 0xf7, + 0xff, 0x0d, 0x68, 0x49, 0xc5, 0x6f, 0x84, 0x4a, 0x09, 0x50, 0x31, 0x5b, 0x47, 0x27, 0x5d, 0xdb, + 0x79, 0x7f, 0xcc, 0x75, 0x26, 0xab, 0xfd, 0x3a, 0xe3, 0x92, 0x37, 0x26, 0x6f, 0xb4, 0x60, 0x4c, + 0x48, 0x30, 0xe8, 0x12, 0x11, 0x79, 0xd7, 0x7a, 0x6e, 0xd7, 0x32, 0x0f, 0xde, 0x93, 0xdf, 0x13, + 0x25, 0xcf, 0x47, 0x8b, 0x63, 0xb9, 0x4d, 0xeb, 0xd0, 0x3c, 0x6d, 0x39, 0xee, 0xb1, 0xe5, 0x74, + 0xed, 0x03, 0x32, 0x7c, 0x82, 0x65, 0x19, 0x58, 0x4e, 0xdb, 0x07, 0x27, 0xed, 0x9e, 0xd3, 0x35, + 0xed, 0xb6, 0xd5, 0x74, 0x5b, 0xbd, 0x0e, 0xc1, 0x42, 0xb0, 0x2c, 0x03, 0x4b, 0xcb, 0x6e, 0x7f, + 0x70, 0x9b, 0x56, 0xcb, 0x64, 0xd3, 0x80, 0x28, 0x79, 0x02, 0x4a, 0xdc, 0x8f, 0x66, 0xd7, 0x36, + 0x1d, 0xfb, 0xa4, 0x4d, 0xbc, 0x10, 0x2f, 0xcb, 0xf0, 0x62, 0x77, 0x3e, 0x6e, 0xbb, 0x6d, 0xcb, + 0x3e, 0x7a, 0xbf, 0x7f, 0xd2, 0x75, 0xcd, 0x66, 0xb3, 0x6b, 0xf5, 0x7a, 0x04, 0x0c, 0x01, 0xb3, + 0x0c, 0x30, 0x66, 0xf3, 0xd8, 0x6e, 0xbb, 0x47, 0xdd, 0x93, 0x53, 0xb2, 0x15, 0xc2, 0xe4, 0x07, + 0x30, 0xf9, 0xc3, 0xed, 0xd9, 0x4d, 0x42, 0x84, 0x10, 0x59, 0x06, 0x91, 0x63, 0xf3, 0x53, 0x4a, + 0x57, 0xf6, 0xcd, 0x76, 0xf3, 0x3f, 0x76, 0xd3, 0x79, 0x4f, 0xb4, 0x10, 0x2d, 0x3f, 0x20, 0x2a, + 0x0d, 0x12, 0x15, 0x02, 0xe6, 0x79, 0xcc, 0xd6, 0x6e, 0x3b, 0x56, 0xf7, 0xd0, 0x3c, 0xb0, 0x88, + 0x18, 0x22, 0xe6, 0x49, 0xb5, 0x73, 0xeb, 0x84, 0x20, 0x21, 0x48, 0x96, 0x83, 0x24, 0x23, 0x2b, + 0x6e, 0xd6, 0xbb, 0x75, 0x08, 0x18, 0x02, 0x66, 0x29, 0x60, 0xac, 0x4f, 0x8e, 0xd5, 0x6e, 0x5a, + 0x4d, 0x56, 0xce, 0xc4, 0xcb, 0x93, 0x89, 0x2e, 0x79, 0x0b, 0x11, 0xf3, 0x64, 0xc4, 0x9c, 0x3a, + 0x76, 0xcb, 0xfe, 0xaf, 0xd5, 0x64, 0x21, 0x4d, 0xb4, 0xfc, 0x1c, 0x2d, 0x66, 0xf3, 0x0f, 0xb7, + 0x65, 0xb6, 0xd9, 0x9d, 0x23, 0x4c, 0x7e, 0xd8, 0x9d, 0xb3, 0xdb, 0x77, 0x1d, 0x3a, 0x1e, 0x3b, + 0x13, 0x2d, 0x3f, 0x2f, 0x9d, 0x3b, 0xdd, 0x13, 0xc7, 0x3a, 0x70, 0xec, 0x93, 0x76, 0x3a, 0x2c, + 0x47, 0xbc, 0x10, 0x2f, 0xcb, 0x92, 0xd0, 0x47, 0xd3, 0x6e, 0x99, 0xfb, 0x2d, 0x8b, 0x9c, 0x85, + 0x70, 0x79, 0x62, 0x78, 0x31, 0x1d, 0xa7, 0x6b, 0xef, 0x9f, 0x3a, 0x16, 0x8b, 0x21, 0x42, 0xe5, + 0x07, 0x33, 0x95, 0x5d, 0xab, 0x67, 0x75, 0x3f, 0xb2, 0x1c, 0x22, 0x5e, 0x9e, 0x82, 0x97, 0xae, + 0xd5, 0xb3, 0x9b, 0xa7, 0x66, 0x8b, 0x68, 0x21, 0x5a, 0x9e, 0x50, 0x15, 0x99, 0x9f, 0xdc, 0x34, + 0xbe, 0x90, 0xbc, 0x10, 0x33, 0xcf, 0x20, 0x2f, 0x50, 0xcd, 0x16, 0x0a, 0x78, 0xab, 0xe2, 0x6a, + 0xe0, 0xda, 0x3c, 0x40, 0xb5, 0x15, 0x41, 0x91, 0x7f, 0x05, 0x00, 0xa7, 0xaa, 0x22, 0x28, 0x0a, + 0x49, 0xc2, 0x20, 0x6d, 0x6c, 0xa2, 0xa1, 0x38, 0x34, 0x20, 0xa9, 0xa4, 0x88, 0x8b, 0xbc, 0x71, + 0x01, 0xaa, 0x86, 0x22, 0x30, 0xf2, 0x06, 0x06, 0xd4, 0xec, 0x16, 0xe1, 0x90, 0x3f, 0x1c, 0x40, + 0xd4, 0x4d, 0x84, 0x42, 0xde, 0x50, 0x40, 0x54, 0x31, 0x11, 0x15, 0x05, 0x10, 0x89, 0x06, 0x89, + 0x04, 0x81, 0xa1, 0x8d, 0x2a, 0x89, 0xc8, 0x28, 0xa4, 0x26, 0xc5, 0x50, 0x1f, 0x11, 0x0c, 0x79, + 0x83, 0x01, 0x54, 0x65, 0x44, 0x60, 0xe4, 0x0d, 0x0c, 0x4c, 0x35, 0x11, 0x71, 0x51, 0x08, 0xe1, + 0x24, 0xaf, 0x20, 0x32, 0xb4, 0x50, 0x07, 0x11, 0x15, 0x79, 0xa3, 0x02, 0x4a, 0x05, 0x44, 0x38, + 0xe4, 0x0d, 0x07, 0x44, 0xb5, 0x0f, 0x51, 0x51, 0x48, 0x49, 0x0a, 0xa7, 0xea, 0x21, 0x2e, 0x72, + 0x4f, 0x1e, 0x88, 0xea, 0x1d, 0xc2, 0xa2, 0x90, 0x70, 0x81, 0xa4, 0xd2, 0x21, 0x24, 0x72, 0x2f, + 0x3e, 0x20, 0xd5, 0x38, 0xc4, 0x45, 0xde, 0xb8, 0x40, 0x54, 0xdd, 0x10, 0x15, 0xb9, 0x57, 0x21, + 0xb0, 0xea, 0x1a, 0x62, 0xa3, 0x10, 0x72, 0xc1, 0x66, 0x45, 0x25, 0xa1, 0xd0, 0xe1, 0x8d, 0x4c, + 0x44, 0xc9, 0x4b, 0xd1, 0x32, 0x3d, 0x19, 0x99, 0x5d, 0xf3, 0xc6, 0x95, 0x47, 0x44, 0xca, 0x72, + 0xa4, 0x38, 0xe6, 0xd1, 0x76, 0x83, 0x00, 0x21, 0x40, 0x7e, 0x10, 0x4a, 0xb6, 0x19, 0x4a, 0x88, + 0x94, 0x27, 0x85, 0x12, 0xc2, 0x83, 0xf0, 0x58, 0x06, 0x8f, 0x4e, 0xd7, 0x3a, 0xb4, 0x3f, 0x71, + 0x05, 0x23, 0x51, 0xf2, 0x04, 0x94, 0x1c, 0xb6, 0xcc, 0xa3, 0x1e, 0xb7, 0x47, 0xac, 0xf6, 0x8b, + 0xdb, 0x23, 0xd8, 0x47, 0x40, 0xab, 0x0c, 0x89, 0x08, 0x56, 0x80, 0x04, 0x02, 0x2b, 0x3d, 0x22, + 0x82, 0x15, 0x1d, 0x61, 0xc0, 0xca, 0x8d, 0x68, 0x60, 0x85, 0xa6, 0x4f, 0x65, 0x26, 0xb7, 0x22, + 0x93, 0xf9, 0xde, 0xe4, 0x59, 0x25, 0xcb, 0x22, 0x61, 0xd1, 0xcf, 0x30, 0xc3, 0x70, 0x98, 0x78, + 0x89, 0x3f, 0x0c, 0x8d, 0x3d, 0x81, 0x71, 0xcf, 0x88, 0xfb, 0x5f, 0xd4, 0x95, 0x37, 0xf2, 0x92, + 0x2f, 0x93, 0x48, 0x57, 0x1f, 0x8e, 0x54, 0xd8, 0x1f, 0x86, 0x17, 0xfe, 0x65, 0x2d, 0x54, 0xc9, + 0xd7, 0x61, 0xf4, 0x77, 0xcd, 0x0f, 0xe3, 0xc4, 0x0b, 0xfb, 0xaa, 0xfe, 0xf8, 0x07, 0xf1, 0xc2, + 0x4f, 0xea, 0xa3, 0x68, 0x98, 0x0c, 0xfb, 0xc3, 0x20, 0xce, 0xbe, 0xab, 0xfb, 0xb1, 0x1f, 0xd7, + 0x03, 0x75, 0xad, 0x82, 0xd9, 0x2f, 0xf5, 0xc0, 0x0f, 0xff, 0xae, 0xc5, 0x89, 0x97, 0xa8, 0xda, + 0xc0, 0x4b, 0xbc, 0x73, 0x2f, 0x56, 0xf5, 0x20, 0x1e, 0xd5, 0x93, 0xe0, 0x3a, 0x9e, 0xfc, 0xa3, + 0xae, 0xbe, 0x25, 0x2a, 0x1c, 0xa8, 0x41, 0xcd, 0x1f, 0x5d, 0x37, 0x6a, 0x91, 0xf2, 0xfa, 0x5f, + 0xbc, 0x73, 0x3f, 0xf0, 0x93, 0x9b, 0xfa, 0x28, 0x52, 0x17, 0xfe, 0x37, 0x15, 0xcf, 0xbe, 0xa9, + 0xc7, 0xe3, 0xf3, 0xe9, 0x1f, 0x4b, 0x7f, 0xad, 0x4f, 0xff, 0xaf, 0xb2, 0x42, 0xb2, 0x1c, 0xf7, + 0x10, 0xe4, 0x1a, 0x46, 0xe2, 0x5d, 0x8a, 0xf3, 0x87, 0x2c, 0xdf, 0x4f, 0x8c, 0x13, 0x16, 0x46, + 0x3e, 0xf8, 0xe1, 0xc0, 0xd8, 0x5b, 0xdb, 0x10, 0x66, 0xd6, 0xc1, 0x34, 0x54, 0x18, 0x7b, 0x6b, + 0xeb, 0xc2, 0x0c, 0xeb, 0x4c, 0xc3, 0x83, 0xcc, 0x90, 0x3b, 0x87, 0xd9, 0xb0, 0x5f, 0x9b, 0x04, + 0x47, 0x81, 0xb3, 0x4c, 0x46, 0x6f, 0x38, 0x8e, 0xfa, 0x4a, 0xe4, 0xeb, 0x4b, 0xdd, 0x41, 0xdd, + 0x7c, 0x1d, 0x46, 0x13, 0x8f, 0x30, 0xd2, 0x44, 0x20, 0x74, 0x20, 0xcc, 0x78, 0xef, 0xc5, 0x66, + 0x74, 0x39, 0xbe, 0x52, 0x61, 0x62, 0xec, 0xad, 0x25, 0xd1, 0x58, 0x09, 0x35, 0xf4, 0x9e, 0x95, + 0x19, 0x30, 0x49, 0x35, 0xa1, 0xa8, 0x66, 0xd3, 0x8f, 0x84, 0x72, 0xcc, 0x29, 0x2b, 0x13, 0x1b, + 0x4c, 0xe6, 0xf1, 0x38, 0x35, 0x53, 0xa8, 0x7f, 0xca, 0x24, 0x00, 0xe2, 0x89, 0x00, 0x02, 0x21, + 0x00, 0x22, 0x06, 0x28, 0x04, 0x01, 0x8e, 0x28, 0xc0, 0x11, 0x06, 0x2c, 0xe2, 0x20, 0x93, 0x40, + 0x08, 0x25, 0x12, 0xe2, 0x09, 0xc5, 0xfd, 0x2e, 0xc2, 0xbb, 0x4d, 0xf9, 0x41, 0xe8, 0x5e, 0x5f, + 0xe1, 0xdd, 0xa6, 0xf4, 0x00, 0x34, 0x23, 0x1a, 0xeb, 0xc2, 0xcd, 0x94, 0x4e, 0x38, 0x90, 0x88, + 0x07, 0x20, 0x01, 0x41, 0x23, 0x22, 0xb0, 0x84, 0x04, 0x96, 0x98, 0x60, 0x12, 0x14, 0xd9, 0x44, + 0x45, 0x38, 0x61, 0xc9, 0x3e, 0x72, 0xe7, 0x66, 0xa4, 0xb0, 0x22, 0xee, 0xd8, 0x0f, 0x13, 0xf1, + 0xdc, 0xe0, 0x3e, 0x3f, 0xd8, 0x01, 0x30, 0xb5, 0xeb, 0x85, 0x97, 0x0a, 0x46, 0x7c, 0x8b, 0x23, + 0x5f, 0x30, 0x8e, 0xfd, 0x10, 0x26, 0xe3, 0x82, 0x11, 0xdb, 0x05, 0xb3, 0xa7, 0x12, 0x72, 0x40, + 0xbb, 0x0f, 0x23, 0xaf, 0x9f, 0xf8, 0xc3, 0xb0, 0xe9, 0x5f, 0xfa, 0x49, 0x3c, 0x79, 0x00, 0x6a, + 0x9e, 0xf2, 0x70, 0x45, 0xef, 0x1b, 0x5d, 0xb1, 0x60, 0x57, 0x6c, 0x6c, 0xee, 0x36, 0x76, 0xb7, + 0x77, 0x36, 0x77, 0xb7, 0xe8, 0x93, 0x24, 0xc4, 0x58, 0x56, 0x9e, 0xb1, 0xb0, 0x78, 0x85, 0x03, + 0xb5, 0xfc, 0x38, 0x31, 0x93, 0x24, 0xc2, 0x28, 0x2e, 0x8e, 0xfd, 0xd0, 0x0a, 0xd4, 0xa4, 0xf6, + 0x9d, 0xf8, 0x7a, 0x38, 0x0e, 0x02, 0x00, 0xd2, 0x7e, 0xec, 0x7d, 0xc3, 0x33, 0xfa, 0x24, 0x1a, + 0xa8, 0x48, 0x0d, 0xf6, 0x6f, 0x66, 0x26, 0xff, 0xc2, 0x20, 0xa5, 0x8f, 0x65, 0x52, 0x8f, 0x67, + 0x84, 0x8f, 0x16, 0x67, 0x76, 0xea, 0x35, 0x62, 0x9c, 0x78, 0x97, 0x12, 0xc7, 0x8c, 0xe5, 0xba, + 0x10, 0x87, 0xb6, 0x80, 0x9d, 0x58, 0x3f, 0xe7, 0x95, 0x38, 0x6e, 0x1b, 0x27, 0xd1, 0xb8, 0x9f, + 0x84, 0xb3, 0x5e, 0x70, 0x3b, 0x7d, 0x6b, 0xf6, 0xec, 0xa5, 0xb9, 0x9d, 0xd9, 0xab, 0x72, 0xed, + 0xd8, 0x8f, 0xdd, 0xd6, 0xe4, 0x1d, 0xb9, 0xad, 0x78, 0xe4, 0x3a, 0xc1, 0xb5, 0x6b, 0xcd, 0x5e, + 0x85, 0x3d, 0xba, 0x6e, 0x74, 0xef, 0xbd, 0x08, 0x37, 0x3d, 0x76, 0x74, 0x7b, 0xd3, 0xe7, 0x76, + 0x1d, 0xef, 0x92, 0xaa, 0x08, 0xf1, 0x01, 0xc1, 0x48, 0xbc, 0xcb, 0xed, 0x86, 0x68, 0x5d, 0xc4, + 0x76, 0x83, 0xca, 0x88, 0x27, 0x99, 0x45, 0x65, 0xc4, 0x2b, 0x80, 0x46, 0x65, 0xc4, 0xcb, 0xdd, + 0x81, 0xca, 0x88, 0x55, 0x33, 0x34, 0x2a, 0x23, 0xd0, 0x49, 0x36, 0x95, 0x11, 0xaf, 0x8b, 0xc7, + 0x54, 0x46, 0xe8, 0x47, 0x04, 0x10, 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, + 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x84, 0x77, 0x12, + 0xa0, 0x3a, 0x0b, 0xcb, 0x88, 0x06, 0x95, 0x11, 0xd5, 0x21, 0x1e, 0x80, 0x04, 0x04, 0x8d, 0x88, + 0xc0, 0x12, 0x12, 0x58, 0x62, 0x82, 0x49, 0x50, 0x64, 0x13, 0x15, 0xe1, 0x84, 0x25, 0xfb, 0xc8, + 0x31, 0x95, 0x11, 0xe2, 0xb9, 0xc1, 0x7d, 0x7e, 0xf0, 0x3b, 0x95, 0x11, 0x2b, 0xfe, 0xa2, 0x32, + 0x82, 0xc4, 0xf6, 0x3b, 0x66, 0x53, 0x19, 0xc1, 0xf4, 0xf6, 0x23, 0x57, 0xa4, 0x32, 0xa2, 0x70, + 0x57, 0xdc, 0xf8, 0xbd, 0xd1, 0xd8, 0xde, 0x69, 0x34, 0xd6, 0x77, 0xde, 0xed, 0xac, 0xef, 0x6e, + 0x6d, 0x6d, 0x6c, 0x6f, 0x50, 0x23, 0x41, 0x6a, 0x0c, 0x66, 0x25, 0x35, 0x12, 0xaf, 0x71, 0x20, + 0x6a, 0x24, 0x8a, 0x48, 0x6d, 0xd4, 0x48, 0x54, 0x34, 0x48, 0xf1, 0xa0, 0xe6, 0x39, 0xa0, 0xa3, + 0x46, 0xa2, 0xa4, 0x31, 0xeb, 0xed, 0x06, 0x55, 0x12, 0xb8, 0x16, 0x51, 0x25, 0x51, 0x79, 0xf7, + 0xad, 0xaa, 0x4e, 0x42, 0xda, 0x4d, 0x80, 0x54, 0x4a, 0x7c, 0x0f, 0x09, 0x89, 0xc4, 0x73, 0x8c, + 0xbb, 0x71, 0x86, 0x89, 0x75, 0x32, 0x75, 0x12, 0xeb, 0xd4, 0x49, 0x3c, 0xcd, 0x30, 0xea, 0x24, + 0x5e, 0x65, 0x22, 0x75, 0x12, 0x2b, 0x32, 0x94, 0x3a, 0x09, 0xd2, 0xec, 0xa2, 0x3e, 0x42, 0xb1, + 0xd3, 0x01, 0x59, 0xc4, 0x0b, 0x94, 0x77, 0x11, 0xa9, 0x0b, 0x89, 0x11, 0x6f, 0xae, 0x43, 0x10, + 0xb8, 0x19, 0xd1, 0xe8, 0xcc, 0x2a, 0x93, 0xb7, 0x6f, 0xd3, 0xaa, 0xbc, 0x3e, 0x65, 0x28, 0xe4, + 0xb9, 0x82, 0x2d, 0x11, 0x12, 0x1b, 0x26, 0x89, 0x52, 0x18, 0xa5, 0x95, 0x79, 0xc2, 0x20, 0xfa, + 0x24, 0x41, 0xf4, 0x89, 0x81, 0xcc, 0x93, 0x01, 0x29, 0xfe, 0x27, 0xb4, 0xf5, 0xa5, 0x57, 0xcb, + 0x4b, 0x10, 0x9f, 0xc8, 0xbd, 0xc9, 0x25, 0x23, 0xed, 0x97, 0x9f, 0x64, 0xcb, 0xb5, 0xa0, 0xe4, + 0xf0, 0x22, 0x2d, 0xac, 0x68, 0x12, 0x4e, 0xca, 0xf5, 0xad, 0xf2, 0x10, 0x5d, 0x22, 0x9a, 0x8d, + 0x71, 0x38, 0x50, 0x17, 0x7e, 0xa8, 0x06, 0xb5, 0xf9, 0x87, 0x50, 0x36, 0xa0, 0xef, 0x66, 0xd7, + 0x17, 0x4c, 0x2b, 0xd9, 0xeb, 0x65, 0x68, 0xe5, 0xc5, 0x34, 0x7d, 0x25, 0x35, 0x79, 0x05, 0x36, + 0x75, 0xa5, 0x35, 0x71, 0xc5, 0x36, 0x6d, 0xc5, 0x36, 0x69, 0x65, 0x36, 0x65, 0xab, 0xcd, 0xbc, + 0xa4, 0x68, 0xc7, 0x17, 0xb2, 0x93, 0x1c, 0x3f, 0x5f, 0x96, 0x3f, 0xa5, 0xb8, 0xbb, 0xac, 0x95, + 0x33, 0xe2, 0xce, 0x50, 0x25, 0x9e, 0x9d, 0x0a, 0x3e, 0x33, 0x95, 0x7a, 0x56, 0x2a, 0xfe, 0x8c, + 0x54, 0xfc, 0xd9, 0xa8, 0xec, 0x33, 0x51, 0x9e, 0x73, 0x48, 0x4c, 0xcb, 0x77, 0x1d, 0x11, 0x91, + 0xbb, 0xe1, 0x44, 0xef, 0x84, 0xe3, 0x32, 0x58, 0xfc, 0x44, 0x0d, 0x90, 0xb0, 0xa5, 0x27, 0x6e, + 0x98, 0x04, 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, 0xc1, 0x8b, 0x4d, 0xf4, + 0x99, 0x61, 0x81, 0x0a, 0x2f, 0xa7, 0xc7, 0x1f, 0xc2, 0xb7, 0xc1, 0xce, 0xec, 0x94, 0xbd, 0x0e, + 0x76, 0x9d, 0xeb, 0x60, 0xb5, 0xa3, 0x04, 0x40, 0xd4, 0x00, 0x85, 0x22, 0xc0, 0x51, 0x05, 0x38, + 0xca, 0x80, 0x45, 0x1d, 0x64, 0x52, 0x08, 0xa1, 0x54, 0x22, 0xfb, 0x68, 0xc5, 0x6f, 0x55, 0x7b, + 0xb0, 0x4d, 0xed, 0x77, 0xc9, 0xf1, 0x72, 0x96, 0xbe, 0x05, 0x6f, 0x8d, 0x01, 0x59, 0x9e, 0x86, + 0xb1, 0x7b, 0x03, 0x68, 0x3d, 0x29, 0xd4, 0x66, 0x26, 0xb4, 0xe5, 0x68, 0x88, 0x6b, 0x97, 0x6e, + 0x31, 0x36, 0xc5, 0xd0, 0xc5, 0x72, 0x76, 0xb1, 0xcd, 0xad, 0x2d, 0x3a, 0x59, 0xb5, 0x88, 0xa8, + 0x7c, 0xeb, 0xce, 0xb8, 0x77, 0x05, 0x35, 0x88, 0xcb, 0x5c, 0x6e, 0xb0, 0x50, 0x4a, 0x08, 0x5c, + 0x72, 0x00, 0x92, 0x49, 0xd8, 0x04, 0x5c, 0x25, 0x0e, 0xd9, 0x04, 0x5c, 0x9d, 0xdb, 0xb0, 0x09, + 0x98, 0xb3, 0xc1, 0x6c, 0x02, 0xea, 0x5a, 0x76, 0xb1, 0x09, 0xb8, 0xf2, 0xf4, 0xcd, 0x26, 0xe0, + 0x6b, 0xbf, 0xd8, 0x04, 0x64, 0x87, 0x82, 0x4d, 0xc0, 0x0a, 0x66, 0xa3, 0x87, 0x2e, 0xc6, 0x26, + 0x60, 0xee, 0x2e, 0xc6, 0x26, 0x60, 0xe5, 0x88, 0xa8, 0x7c, 0xeb, 0xd8, 0x04, 0x84, 0x0d, 0xe2, + 0xc6, 0xf5, 0x2c, 0xb0, 0x08, 0xef, 0x02, 0xa6, 0x66, 0xb2, 0x0d, 0xf8, 0x12, 0xf3, 0xd8, 0x06, + 0x5c, 0x21, 0x10, 0xd9, 0x06, 0x5c, 0x9d, 0xdb, 0xb0, 0x0d, 0x98, 0xb3, 0xc1, 0x6c, 0x03, 0xea, + 0x5a, 0x78, 0x01, 0xb5, 0x01, 0xcf, 0xfd, 0xd0, 0x8b, 0x6e, 0x00, 0xfa, 0x80, 0xbb, 0xa4, 0xb1, + 0x80, 0x16, 0xf1, 0x0e, 0x91, 0xe7, 0xd9, 0x07, 0xbe, 0x01, 0x6d, 0x61, 0xd7, 0xd5, 0xc2, 0x4f, + 0x24, 0x5e, 0x08, 0xc4, 0xdb, 0x35, 0xbe, 0x07, 0x45, 0xde, 0xae, 0xa1, 0x47, 0xa5, 0x49, 0xe1, + 0xb9, 0x9e, 0x15, 0x25, 0x85, 0xe7, 0x55, 0xab, 0x1c, 0x29, 0x3c, 0xc7, 0x27, 0xa0, 0xbc, 0x5d, + 0xe3, 0xf5, 0x09, 0x96, 0xb7, 0x6b, 0xc0, 0xf3, 0x5c, 0x6e, 0x9d, 0x7a, 0x98, 0x28, 0x79, 0xbb, + 0xc6, 0x53, 0xac, 0xe2, 0xed, 0x1a, 0x2f, 0x35, 0x8e, 0xb7, 0x6b, 0xe0, 0x35, 0x85, 0xf4, 0x6f, + 0x06, 0x55, 0xe3, 0xc6, 0x8d, 0xd3, 0xf9, 0x53, 0xf3, 0xea, 0x0d, 0x39, 0x16, 0xf0, 0xea, 0x0d, + 0xbd, 0x63, 0x4d, 0x65, 0x2f, 0xe1, 0xf8, 0xa5, 0x42, 0xde, 0x34, 0x67, 0xce, 0xa5, 0xb6, 0x97, + 0x64, 0x70, 0x65, 0x51, 0xdc, 0x58, 0x14, 0x17, 0x96, 0xc1, 0x7d, 0xcb, 0xf2, 0x10, 0x21, 0x79, + 0x06, 0x3c, 0xbf, 0x94, 0x48, 0x54, 0xf3, 0x23, 0xa6, 0xe5, 0xa4, 0xc8, 0xe2, 0x13, 0x54, 0xb1, + 0x7f, 0x63, 0xc1, 0x8e, 0x5e, 0xb6, 0x83, 0xa3, 0x3a, 0x76, 0xb1, 0xe0, 0x2f, 0x0e, 0x82, 0xc5, + 0xfc, 0x4d, 0x05, 0x81, 0xbc, 0x2c, 0x70, 0x83, 0x81, 0xba, 0xc0, 0xec, 0x94, 0x43, 0x36, 0x2a, + 0xc6, 0x13, 0xf3, 0xf7, 0x8b, 0x02, 0x7c, 0xc2, 0xb8, 0xc3, 0x40, 0xfc, 0x10, 0x01, 0x45, 0x79, + 0x47, 0x76, 0x4a, 0xb8, 0xd4, 0x92, 0x82, 0x22, 0x43, 0xb1, 0x97, 0x3c, 0x14, 0x3e, 0x43, 0x53, + 0xc6, 0x6c, 0x4c, 0x89, 0x33, 0x2f, 0x65, 0xcd, 0xb2, 0x94, 0x3e, 0xa3, 0x52, 0xfa, 0xec, 0x49, + 0xb9, 0x33, 0x25, 0x7a, 0xb1, 0x95, 0xa2, 0x2f, 0x15, 0x30, 0x42, 0xe5, 0x5f, 0x7e, 0x39, 0x1f, + 0x46, 0xc5, 0xdf, 0x76, 0x9b, 0xc5, 0x8a, 0x3b, 0x13, 0x0a, 0xc6, 0x6d, 0x39, 0xb7, 0xfc, 0x94, + 0x36, 0x4c, 0x59, 0xe6, 0xb0, 0xa4, 0x80, 0x61, 0xc8, 0xb2, 0x87, 0x1d, 0xc5, 0x0c, 0x33, 0x8a, + 0x19, 0x56, 0x94, 0x31, 0x8c, 0xa8, 0x77, 0x6f, 0xa7, 0xac, 0x5b, 0x6a, 0xb2, 0xa8, 0x5e, 0x9e, + 0xbf, 0x3d, 0xce, 0x2f, 0x65, 0xb9, 0x5b, 0xb9, 0x97, 0xc9, 0x95, 0x3e, 0xbb, 0x2f, 0x61, 0x46, + 0x5f, 0xd0, 0x2c, 0xbe, 0x94, 0x99, 0x7b, 0x71, 0xb3, 0xf5, 0xe2, 0x66, 0xe8, 0x65, 0xcd, 0xca, + 0x57, 0xeb, 0x54, 0xbe, 0xec, 0xcb, 0xd5, 0x8c, 0xac, 0x17, 0x5b, 0xbe, 0xa3, 0xce, 0x63, 0xd7, + 0x9d, 0x49, 0x25, 0xfb, 0x85, 0x8c, 0xdb, 0x51, 0xc5, 0x88, 0xd2, 0x24, 0x89, 0xd0, 0x04, 0x8a, + 0xce, 0xa4, 0x89, 0xcc, 0xc4, 0x8a, 0xca, 0xc4, 0x8a, 0xc8, 0x64, 0x8a, 0xc6, 0xaa, 0x3d, 0xfc, + 0x29, 0xe5, 0xf6, 0xd1, 0x2c, 0x2b, 0xc9, 0xf1, 0xef, 0xc7, 0xf9, 0x52, 0x8a, 0x7b, 0xcb, 0xba, + 0x54, 0x5c, 0x9c, 0xa6, 0x5b, 0xa2, 0x96, 0x5b, 0xb0, 0x86, 0x5b, 0xaa, 0x76, 0x5b, 0xbc, 0x66, + 0x5b, 0xbc, 0x56, 0x5b, 0xb6, 0x46, 0x9b, 0xba, 0x4b, 0x89, 0x69, 0xf8, 0x2e, 0x1d, 0x0f, 0xe4, + 0x2e, 0x5c, 0xf1, 0x07, 0x5c, 0xb7, 0x02, 0x99, 0x9a, 0x25, 0xa7, 0x68, 0x80, 0x54, 0x2d, 0x3d, + 0x65, 0xc3, 0xa4, 0x6e, 0x98, 0x14, 0x8e, 0x91, 0xca, 0x65, 0xa5, 0x74, 0x61, 0xa9, 0x3d, 0xfb, + 0x08, 0xb9, 0x6e, 0x65, 0x05, 0x35, 0x2f, 0xc4, 0xba, 0x15, 0x7f, 0xc0, 0x65, 0x2b, 0xe2, 0x7d, + 0xd2, 0x48, 0xb7, 0x3f, 0x8a, 0x25, 0xb9, 0xa9, 0x79, 0x32, 0x79, 0xee, 0x06, 0x79, 0x2e, 0x79, + 0x2e, 0x79, 0x2e, 0x79, 0x2e, 0x79, 0x2e, 0x73, 0xea, 0xe3, 0x8f, 0x50, 0x5a, 0x2b, 0x2b, 0x33, + 0x4c, 0x60, 0x4b, 0x6b, 0x21, 0x18, 0x8b, 0x6b, 0x6d, 0x3d, 0x4e, 0xfd, 0xbc, 0xbb, 0x46, 0x3f, + 0x2a, 0x00, 0x44, 0x09, 0x50, 0xa8, 0x01, 0x1c, 0x45, 0x80, 0xa3, 0x0a, 0x58, 0x94, 0x41, 0x26, + 0x75, 0x10, 0x4a, 0x21, 0xb2, 0x8f, 0x16, 0xeb, 0x0a, 0xeb, 0xed, 0x06, 0xc0, 0xdd, 0x35, 0xbf, + 0xf3, 0x0e, 0xeb, 0x57, 0x7e, 0xf1, 0x0e, 0xeb, 0x2a, 0x11, 0xcb, 0x05, 0x73, 0x79, 0x87, 0x75, + 0x55, 0xd3, 0xd1, 0x43, 0x17, 0xe3, 0x1d, 0xd6, 0xb9, 0xbb, 0xd8, 0xc6, 0xef, 0x8d, 0xc6, 0xf6, + 0x4e, 0xa3, 0xb1, 0xbe, 0xf3, 0x6e, 0x67, 0x7d, 0x77, 0x6b, 0x6b, 0x63, 0x7b, 0x83, 0x97, 0x5a, + 0x57, 0x8c, 0x9a, 0xca, 0xb7, 0x8e, 0x97, 0x5a, 0xc3, 0x46, 0x75, 0xe3, 0x4a, 0x25, 0x91, 0xdf, + 0x97, 0xdf, 0x16, 0x9c, 0xd9, 0xc9, 0xd6, 0xe0, 0x4b, 0xcc, 0x63, 0x6b, 0x70, 0x85, 0x48, 0x64, + 0x6b, 0x70, 0x75, 0x6e, 0xc3, 0xd6, 0x60, 0xce, 0x06, 0xb3, 0x35, 0xa8, 0x6b, 0x2d, 0x06, 0xd4, + 0x1a, 0xfc, 0xea, 0x0f, 0x54, 0x4d, 0x74, 0x02, 0xbf, 0x9f, 0xc4, 0x77, 0xd8, 0x1f, 0x7c, 0xe5, + 0x17, 0xfb, 0x83, 0x6c, 0x5e, 0xc8, 0x9b, 0x91, 0xd3, 0xaa, 0x53, 0xc1, 0xfe, 0x20, 0x5d, 0x6c, + 0xe2, 0x62, 0xdb, 0x3b, 0x3b, 0x3b, 0x9b, 0xec, 0x09, 0x56, 0x8d, 0x93, 0xca, 0xb7, 0x8e, 0x3d, + 0x41, 0x44, 0x8b, 0xa4, 0x4d, 0x52, 0x0a, 0xbd, 0x0c, 0x32, 0xb3, 0x4f, 0xf6, 0xd5, 0x04, 0x0f, + 0x97, 0xc1, 0xd7, 0xb3, 0xed, 0xc0, 0xd9, 0x77, 0xf5, 0x3b, 0x63, 0x32, 0x23, 0x52, 0xd5, 0x05, + 0xd5, 0x3b, 0xd2, 0xfd, 0xc3, 0x98, 0xdf, 0xad, 0x27, 0x57, 0xbf, 0x33, 0x33, 0x90, 0x0a, 0x9e, + 0xa7, 0x98, 0x45, 0x05, 0xcf, 0x2b, 0xa0, 0x46, 0x05, 0xcf, 0xcb, 0xdd, 0x81, 0x0a, 0x9e, 0x55, + 0x93, 0x16, 0x2a, 0x78, 0xd0, 0x79, 0xa7, 0x58, 0x05, 0xcf, 0xec, 0xaa, 0x6e, 0xf1, 0xc7, 0xf5, + 0xe2, 0xae, 0x14, 0x07, 0xa0, 0x00, 0xe2, 0xa9, 0x00, 0x02, 0x25, 0x00, 0xa2, 0x06, 0x28, 0x14, + 0x01, 0x8e, 0x2a, 0xc0, 0x51, 0x06, 0x2c, 0xea, 0x20, 0x93, 0x42, 0x08, 0xa5, 0x12, 0xe2, 0x29, + 0x45, 0x66, 0xa0, 0x37, 0xf8, 0xff, 0xbc, 0xbe, 0x0a, 0xfb, 0x37, 0xb5, 0xd8, 0x1f, 0xc4, 0xf2, + 0xa3, 0xd1, 0x3c, 0xc0, 0x3f, 0xb2, 0x5b, 0xb8, 0x87, 0xcb, 0xa6, 0x1e, 0x30, 0x14, 0x04, 0x89, + 0x8a, 0x00, 0x52, 0x12, 0x34, 0x6a, 0x02, 0x4b, 0x51, 0x60, 0xa9, 0x0a, 0x26, 0x65, 0x91, 0x4d, + 0x5d, 0x84, 0x53, 0x18, 0x18, 0x2a, 0xf3, 0x7d, 0x4a, 0x83, 0x13, 0xc4, 0xbe, 0xcb, 0x6c, 0x50, + 0x02, 0x19, 0x06, 0xc1, 0x81, 0x23, 0x3a, 0x88, 0x84, 0x07, 0x98, 0xf8, 0xa0, 0x12, 0x20, 0x78, + 0x22, 0x04, 0x4f, 0x88, 0xb0, 0x89, 0x11, 0x06, 0x41, 0x02, 0x21, 0x4a, 0x70, 0x84, 0x29, 0x33, + 0x58, 0xe6, 0x66, 0xd8, 0x27, 0xe7, 0x19, 0x89, 0x9b, 0x63, 0x35, 0x23, 0x4e, 0xb0, 0x04, 0x0a, + 0x99, 0x48, 0x69, 0x40, 0xa8, 0xd0, 0x89, 0x95, 0x36, 0x04, 0x4b, 0x1b, 0xa2, 0xa5, 0x07, 0xe1, + 0xc2, 0x22, 0x5e, 0x60, 0x04, 0x0c, 0x96, 0x88, 0x65, 0x86, 0x5f, 0x04, 0xde, 0x65, 0x8c, 0x1b, + 0x2c, 0xe7, 0xf9, 0x2a, 0x7d, 0x0c, 0xd0, 0xf8, 0x82, 0xa5, 0x11, 0xd3, 0x86, 0xa8, 0xe9, 0x40, + 0xd8, 0x34, 0x22, 0x6e, 0xba, 0x10, 0x38, 0xed, 0x88, 0x9c, 0x76, 0x84, 0x4e, 0x2f, 0x62, 0x87, + 0x49, 0xf0, 0x40, 0x89, 0x5e, 0x06, 0x1d, 0xf1, 0x4b, 0x52, 0x9e, 0x9c, 0x31, 0x54, 0x38, 0xbe, + 0x52, 0x51, 0xaa, 0x85, 0x04, 0xce, 0x1a, 0xf3, 0x2e, 0x57, 0x03, 0xf8, 0x19, 0xac, 0x70, 0x7c, + 0x35, 0x01, 0x15, 0x5d, 0xb9, 0xc8, 0xb7, 0xde, 0xf2, 0xe3, 0xc4, 0x4c, 0x92, 0x08, 0xdb, 0x9d, + 0x8f, 0xfd, 0xd0, 0x0a, 0xd4, 0x24, 0x9b, 0x4d, 0xca, 0xb9, 0x70, 0x1c, 0x04, 0xc0, 0x8e, 0x70, + 0xec, 0x7d, 0xd3, 0xe7, 0x61, 0x4e, 0xa2, 0x81, 0x8a, 0xd4, 0x60, 0xff, 0x66, 0xf6, 0x28, 0xbf, + 0x90, 0x5d, 0x30, 0x1c, 0x7d, 0x1f, 0x2a, 0xd7, 0xb3, 0xf5, 0x2b, 0xe0, 0xdd, 0x98, 0xf4, 0x31, + 0xd8, 0x8d, 0x29, 0xc3, 0x7c, 0x76, 0x63, 0x04, 0x39, 0x02, 0xbb, 0x31, 0x72, 0xdc, 0x9a, 0xdd, + 0x18, 0xe1, 0x0f, 0xc4, 0x6e, 0x0c, 0x39, 0xd3, 0x0b, 0xa1, 0xa3, 0x4f, 0x37, 0x66, 0xec, 0x87, + 0xc9, 0xbb, 0x4d, 0x0d, 0x1a, 0x31, 0x3b, 0xc0, 0x8f, 0x80, 0xb1, 0x0d, 0xf7, 0x67, 0x5f, 0xd8, + 0x09, 0x7b, 0x0d, 0x6d, 0x9b, 0xae, 0xe6, 0x85, 0xc5, 0xc2, 0xe3, 0x80, 0xdd, 0xd6, 0xf5, 0xd3, + 0xe7, 0x01, 0xdc, 0x21, 0xaa, 0x69, 0x3a, 0x7f, 0x18, 0x02, 0xbc, 0x6f, 0x0c, 0x01, 0xc2, 0x43, + 0x40, 0x63, 0x73, 0xb7, 0xb1, 0xbb, 0xbd, 0xb3, 0xb9, 0xbb, 0xc5, 0x58, 0xc0, 0x82, 0x84, 0xd6, + 0xdf, 0xff, 0x3a, 0x63, 0xbb, 0x9f, 0xb9, 0x6e, 0x49, 0x98, 0xf9, 0xaa, 0xfc, 0xcb, 0x2f, 0x09, + 0x7e, 0xbf, 0x7f, 0xf6, 0x1c, 0x6c, 0xf8, 0x97, 0x61, 0x3e, 0x1b, 0xfe, 0x82, 0x3c, 0x81, 0x0d, + 0x7f, 0x39, 0x6e, 0xcd, 0x86, 0xbf, 0xf0, 0x07, 0x62, 0xc3, 0x9f, 0xac, 0xe9, 0x85, 0xd0, 0xd1, + 0xab, 0xe1, 0xff, 0xbb, 0x06, 0xfd, 0xfe, 0x2d, 0xf6, 0xfb, 0x4b, 0xfe, 0x62, 0xbf, 0x9f, 0x75, + 0x45, 0x8e, 0x8f, 0xc3, 0x7e, 0x3f, 0xb3, 0x79, 0x11, 0x21, 0x80, 0xfd, 0x7e, 0xf1, 0x21, 0x60, + 0x73, 0x8b, 0x8d, 0x7e, 0x16, 0x22, 0xb4, 0xfe, 0xc1, 0x17, 0x1b, 0xfd, 0xb4, 0x18, 0x3e, 0x25, + 0x4b, 0xbf, 0x18, 0xf1, 0xa7, 0xf6, 0xeb, 0x78, 0x71, 0x62, 0x7a, 0xdd, 0xdd, 0xec, 0xd7, 0xfa, + 0xc3, 0xb5, 0xf4, 0x0f, 0xff, 0x55, 0xe2, 0x25, 0x8b, 0xfa, 0xf8, 0x33, 0x90, 0x2f, 0x83, 0x2a, + 0x89, 0xa0, 0x15, 0x44, 0xa0, 0x6c, 0x9f, 0x8b, 0xf6, 0xca, 0x04, 0x3a, 0x17, 0xed, 0x95, 0xe7, + 0xae, 0x5c, 0xb4, 0x27, 0x8d, 0x7c, 0x72, 0xd1, 0x1e, 0x39, 0xcd, 0x8f, 0x21, 0x02, 0x7b, 0xf0, + 0x97, 0x45, 0xfc, 0x40, 0x79, 0x17, 0x91, 0xba, 0x40, 0x8c, 0xf8, 0xf3, 0x1d, 0x2b, 0x80, 0xda, + 0x1e, 0xa3, 0x33, 0x2b, 0x09, 0xdf, 0xbe, 0x4d, 0x8b, 0xa4, 0x7a, 0x4a, 0x31, 0x59, 0x2a, 0x55, + 0xd8, 0x52, 0x94, 0x35, 0xef, 0x1f, 0xd4, 0x0d, 0x5a, 0x51, 0x84, 0xb9, 0x55, 0x07, 0x7a, 0x8b, + 0x0e, 0xf4, 0xd6, 0x1c, 0xcc, 0x2d, 0x39, 0x28, 0x01, 0x04, 0xb4, 0xab, 0x5b, 0xf1, 0x6e, 0x2e, + 0xd2, 0x75, 0x46, 0x71, 0x12, 0x8d, 0xfb, 0x49, 0x38, 0xe3, 0xb8, 0xed, 0xf4, 0xd5, 0xdb, 0xb3, + 0x87, 0x76, 0x3b, 0xb3, 0xf7, 0xed, 0xda, 0xb1, 0x1f, 0xbb, 0xad, 0xc9, 0x8b, 0x76, 0x5b, 0xf1, + 0xc8, 0x75, 0x82, 0x6b, 0xd7, 0x9a, 0xbd, 0x4f, 0x3b, 0xee, 0xde, 0x7b, 0x9b, 0x6e, 0x7b, 0xf6, + 0x0e, 0xdd, 0xec, 0x7f, 0xd2, 0x9b, 0xbe, 0x31, 0xd7, 0x9c, 0xbf, 0xa2, 0x9e, 0x3f, 0xc0, 0xa0, + 0x6f, 0xb7, 0xbc, 0xb6, 0x50, 0xe7, 0x28, 0x8b, 0x16, 0x5d, 0x2b, 0x17, 0x55, 0x65, 0x47, 0x09, + 0xb9, 0xbe, 0x27, 0xd8, 0xef, 0x0c, 0x6f, 0x70, 0xe5, 0x87, 0xb5, 0xcb, 0x68, 0x38, 0x1e, 0x21, + 0xdd, 0x28, 0x7e, 0x67, 0x34, 0xaf, 0x13, 0x5f, 0x85, 0x99, 0xbc, 0x4e, 0x3c, 0x47, 0xb8, 0xf2, + 0x3a, 0xf1, 0x3c, 0x3b, 0x3a, 0xbc, 0x4e, 0xbc, 0x58, 0x92, 0xc6, 0xeb, 0xc4, 0xab, 0xc6, 0xcb, + 0x61, 0xae, 0x13, 0xc7, 0xba, 0x15, 0x13, 0xf2, 0x36, 0x4c, 0x5e, 0x1f, 0x4e, 0x82, 0xa3, 0x01, + 0xd1, 0x41, 0x25, 0x3c, 0xf0, 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, + 0x8c, 0xe0, 0x08, 0x52, 0x66, 0x30, 0x52, 0xd7, 0x67, 0x69, 0xb6, 0xc1, 0xe9, 0x02, 0x2d, 0x23, + 0x51, 0x9c, 0x70, 0x26, 0xa9, 0xd2, 0x98, 0x5c, 0xa1, 0x93, 0x2c, 0x6d, 0xc8, 0x96, 0x36, 0xa4, + 0x4b, 0x0f, 0xf2, 0x85, 0x45, 0xc2, 0xc0, 0xc8, 0x58, 0x06, 0x11, 0xfc, 0x09, 0x67, 0xd8, 0x3b, + 0x0c, 0x80, 0xef, 0x2e, 0x00, 0xdf, 0x61, 0x84, 0x7d, 0xf1, 0xa2, 0x06, 0xcb, 0x12, 0xb5, 0x58, + 0x54, 0xa2, 0xcb, 0x8e, 0x22, 0x9d, 0xd6, 0x92, 0xdc, 0x62, 0x5f, 0x43, 0x4a, 0xd7, 0x16, 0xe6, + 0xda, 0xba, 0xdc, 0x35, 0xa0, 0x95, 0x8f, 0x73, 0xf5, 0x4d, 0x21, 0x5f, 0x67, 0x2c, 0xbc, 0x72, + 0x74, 0x48, 0xe8, 0x7b, 0xc0, 0xb5, 0xb8, 0xff, 0x5b, 0x8b, 0x7b, 0xbf, 0xb1, 0xef, 0xfb, 0xa6, + 0xc4, 0xb4, 0x92, 0x41, 0x90, 0x0a, 0x31, 0xc1, 0x5a, 0x86, 0xec, 0xb8, 0x10, 0x69, 0xbd, 0x17, + 0x45, 0x4f, 0x5a, 0x07, 0x0e, 0x8a, 0x9e, 0x24, 0x07, 0x0a, 0x84, 0x91, 0xfd, 0x22, 0x15, 0xa3, + 0x57, 0x7e, 0x78, 0x34, 0x7d, 0x2f, 0x54, 0x82, 0xe9, 0x16, 0x8c, 0x0c, 0xef, 0xda, 0xf3, 0x03, + 0xef, 0x3c, 0x50, 0xb5, 0x73, 0x2f, 0x1c, 0x7c, 0xf5, 0x07, 0x53, 0x0f, 0x47, 0x51, 0x84, 0x7d, + 0xc7, 0x78, 0x2a, 0xc3, 0x56, 0x61, 0x26, 0x95, 0x61, 0x39, 0xc2, 0x96, 0xca, 0xb0, 0xfc, 0xdc, + 0x8b, 0xca, 0xb0, 0xa2, 0x99, 0x2c, 0x95, 0x61, 0x55, 0x2b, 0x5e, 0xa8, 0x0c, 0xcb, 0x37, 0x3f, + 0x50, 0x19, 0x46, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, + 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x32, 0x83, 0x71, 0x7a, + 0x3f, 0x4b, 0x73, 0x0d, 0x4a, 0x07, 0x68, 0x19, 0x81, 0xa2, 0x2a, 0x8c, 0x84, 0x4a, 0x63, 0x62, + 0x85, 0x4e, 0xb0, 0xb4, 0x21, 0x5a, 0xda, 0x10, 0x2e, 0x3d, 0x88, 0x17, 0x16, 0x01, 0x03, 0x23, + 0x62, 0x19, 0x44, 0xf0, 0x55, 0x61, 0xbe, 0x52, 0xea, 0x22, 0x18, 0x7a, 0xd8, 0xd2, 0xb0, 0x5d, + 0x40, 0xd3, 0x5b, 0x2a, 0xbc, 0x9c, 0x12, 0x63, 0x6a, 0xc3, 0x0a, 0x7e, 0xf3, 0xd4, 0x86, 0xc9, + 0x79, 0x8c, 0x4c, 0x40, 0x42, 0xdd, 0x08, 0x93, 0xf0, 0x0a, 0x5c, 0x9b, 0xda, 0x30, 0xba, 0x36, + 0x5d, 0x5b, 0x8f, 0x6a, 0x00, 0xd7, 0xea, 0x33, 0xaa, 0x4b, 0xaa, 0x9e, 0x9a, 0x8c, 0x04, 0xb1, + 0x36, 0xcc, 0xea, 0xc2, 0xa9, 0xf5, 0xec, 0x78, 0x17, 0x61, 0x36, 0x3b, 0xde, 0x25, 0xe2, 0x9c, + 0x1d, 0xef, 0xf2, 0xdc, 0x95, 0x1d, 0x6f, 0x61, 0x0f, 0xc2, 0x8e, 0x37, 0x19, 0xcd, 0x4f, 0x20, + 0xa2, 0x41, 0xc7, 0x7b, 0xa0, 0xc2, 0xc4, 0x4f, 0x6e, 0xc0, 0x6f, 0x7b, 0x06, 0x5c, 0xb4, 0x62, + 0xd8, 0xb3, 0x57, 0xbf, 0xef, 0xc5, 0xc0, 0x79, 0x6b, 0x0e, 0x24, 0xbb, 0x67, 0xf7, 0xdc, 0xde, + 0xe9, 0xbe, 0xd3, 0xfa, 0xe8, 0x3a, 0x7f, 0x76, 0x2c, 0xd4, 0xf4, 0x35, 0xed, 0xd3, 0xc4, 0xb0, + 0x07, 0x11, 0x6b, 0xd0, 0x87, 0x11, 0x0f, 0x10, 0xd5, 0x3d, 0x39, 0x75, 0xac, 0xae, 0x7b, 0x60, + 0x76, 0xcc, 0x7d, 0xbb, 0x65, 0x3b, 0x7f, 0xce, 0xe0, 0xd5, 0x43, 0xc6, 0x97, 0x4e, 0x38, 0xd3, + 0x03, 0x6f, 0x4f, 0xc1, 0xdd, 0xfd, 0x7f, 0x33, 0xe0, 0x9f, 0xf6, 0xf6, 0x37, 0x42, 0x0e, 0x00, + 0x72, 0x66, 0xeb, 0xe8, 0xa4, 0x6b, 0x3b, 0xef, 0x8f, 0x35, 0x40, 0x1c, 0xf4, 0x13, 0x9c, 0xf1, + 0xf0, 0x92, 0x1e, 0xce, 0x64, 0x42, 0x68, 0x31, 0x69, 0x10, 0x59, 0x55, 0x40, 0x96, 0xdd, 0x73, + 0xbb, 0x96, 0x79, 0xf0, 0x9e, 0x75, 0x17, 0xd1, 0x56, 0x1e, 0xea, 0x1c, 0xcb, 0x6d, 0x5a, 0x87, + 0xe6, 0x69, 0xcb, 0x71, 0x8f, 0x2d, 0xa7, 0x6b, 0x1f, 0xb0, 0xf2, 0x22, 0xe8, 0xf2, 0x06, 0xdd, + 0x69, 0xfb, 0xe0, 0xa4, 0xdd, 0x73, 0xba, 0xa6, 0xdd, 0xb6, 0x9a, 0x6e, 0xab, 0xd7, 0x21, 0xe8, + 0x08, 0xba, 0xbc, 0x41, 0xd7, 0xb2, 0xdb, 0x1f, 0xdc, 0xa6, 0xd5, 0x32, 0xd9, 0x5c, 0x22, 0xda, + 0x0a, 0x44, 0x9b, 0xfb, 0xd1, 0xec, 0xda, 0xa6, 0x63, 0x9f, 0xb4, 0x89, 0x3b, 0xe2, 0x2e, 0x6f, + 0xdc, 0xd9, 0x9d, 0x8f, 0xdb, 0x6e, 0xdb, 0xb2, 0x8f, 0xde, 0xef, 0x9f, 0x74, 0x5d, 0xb3, 0xd9, + 0xec, 0x5a, 0xbd, 0x1e, 0x81, 0x47, 0xe0, 0xe5, 0x0d, 0x3c, 0xb3, 0x79, 0x6c, 0xb7, 0xdd, 0xa3, + 0xee, 0xc9, 0x29, 0xd9, 0x1c, 0xe1, 0x56, 0x00, 0xdc, 0xfe, 0x70, 0x7b, 0x76, 0x93, 0x50, 0x23, + 0xd4, 0xf2, 0x86, 0xda, 0xb1, 0xf9, 0x29, 0xa5, 0x73, 0xfb, 0x66, 0xbb, 0xf9, 0x1f, 0xbb, 0xe9, + 0xbc, 0x27, 0xea, 0x88, 0xba, 0x02, 0x88, 0x5c, 0x83, 0x44, 0x8e, 0xc0, 0x2b, 0xa7, 0x82, 0xb0, + 0xdb, 0x8e, 0xd5, 0x3d, 0x34, 0x0f, 0x2c, 0x22, 0x8f, 0xc8, 0x2b, 0xb4, 0x67, 0xd2, 0x3a, 0x21, + 0xd8, 0x08, 0xb6, 0xfc, 0xc1, 0x96, 0x91, 0x39, 0x37, 0x3b, 0x8b, 0x70, 0x08, 0x3c, 0x02, 0x2f, + 0x77, 0xe0, 0x59, 0x9f, 0x1c, 0xab, 0xdd, 0xb4, 0x9a, 0xec, 0x98, 0x10, 0x77, 0x85, 0x17, 0x14, + 0xe4, 0x75, 0x44, 0x5e, 0xe1, 0xc8, 0x3b, 0x75, 0xec, 0x96, 0xfd, 0x5f, 0xab, 0xc9, 0x06, 0x0a, + 0x51, 0x57, 0x1c, 0xea, 0xcc, 0xe6, 0x1f, 0x6e, 0xcb, 0x6c, 0xb3, 0x4b, 0x4c, 0xb8, 0x15, 0x01, + 0xb7, 0x09, 0x97, 0xcb, 0x3a, 0xc5, 0x1c, 0x33, 0x21, 0xea, 0x8a, 0x6b, 0x99, 0x74, 0xba, 0x27, + 0x8e, 0x75, 0xe0, 0xd8, 0x27, 0xed, 0x74, 0x78, 0x98, 0xb8, 0x23, 0xee, 0xf2, 0x4e, 0xae, 0x1f, + 0x4d, 0xbb, 0x65, 0xee, 0xb7, 0x2c, 0x72, 0x3a, 0xc2, 0xae, 0xe0, 0x70, 0x67, 0x3a, 0x4e, 0xd7, + 0xde, 0x3f, 0x75, 0x2c, 0x16, 0xaf, 0x84, 0x5c, 0xfe, 0xc5, 0x6b, 0xbb, 0x6b, 0xf5, 0xac, 0xee, + 0x47, 0x96, 0xaf, 0xc4, 0x5d, 0x91, 0xb8, 0xeb, 0x5a, 0x3d, 0xbb, 0x79, 0x6a, 0xb6, 0x88, 0x3a, + 0xa2, 0xae, 0xc0, 0x2a, 0xd6, 0xfc, 0xe4, 0xa6, 0xf1, 0x8e, 0xe4, 0x8e, 0xd8, 0x2b, 0x81, 0xdc, + 0x69, 0xd1, 0xac, 0xe3, 0x22, 0x0e, 0xba, 0x78, 0x95, 0x5c, 0xbb, 0x0a, 0xea, 0x62, 0x82, 0x4b, + 0x5e, 0x65, 0xa6, 0x8d, 0x8a, 0x98, 0xe0, 0x12, 0x49, 0x46, 0xc0, 0x8f, 0x71, 0x88, 0x2a, 0xb9, + 0xa8, 0xd2, 0x41, 0x15, 0x4c, 0x7c, 0x49, 0xc3, 0x97, 0x66, 0xea, 0x5f, 0x02, 0x4c, 0x1a, 0xc0, + 0xb4, 0x98, 0x59, 0x25, 0xac, 0xe4, 0xc1, 0x0a, 0x5c, 0xcd, 0x4b, 0x48, 0x49, 0x83, 0x94, 0x4e, + 0xaa, 0x5d, 0xa2, 0x4b, 0x20, 0xd1, 0x6a, 0x90, 0x68, 0x11, 0x60, 0xf9, 0x32, 0x79, 0x8d, 0xd4, + 0x1a, 0x44, 0x98, 0xc8, 0x5e, 0x04, 0xb6, 0xda, 0x96, 0xa0, 0x92, 0x06, 0x2a, 0xcd, 0x54, 0xb5, + 0x04, 0x98, 0x34, 0x80, 0xe9, 0xa5, 0x9e, 0x25, 0xbe, 0x44, 0x12, 0x7b, 0xf2, 0x2e, 0x22, 0x2c, + 0x37, 0x84, 0xe9, 0xa4, 0x86, 0x25, 0xba, 0xa4, 0xa1, 0x4b, 0x0b, 0xd5, 0x2b, 0x61, 0x25, 0x0d, + 0x56, 0x3a, 0xa9, 0x5b, 0x89, 0x2e, 0x91, 0xad, 0x08, 0x6d, 0x54, 0xac, 0xc4, 0x97, 0xb8, 0xa4, + 0xa8, 0x93, 0x5a, 0x95, 0xf0, 0x12, 0x19, 0xbe, 0x74, 0x50, 0xa5, 0x12, 0x5a, 0xe2, 0x8a, 0x45, + 0xad, 0xd4, 0xa7, 0xc4, 0x97, 0x34, 0x7c, 0xe9, 0xa4, 0x32, 0x25, 0xba, 0xc4, 0x55, 0x8d, 0xda, + 0xa9, 0x49, 0x89, 0x31, 0x91, 0xe4, 0x8b, 0xcd, 0x2e, 0x42, 0xea, 0x15, 0x90, 0xea, 0xf0, 0x26, + 0x5e, 0xa2, 0xad, 0x6c, 0xd4, 0x4d, 0x4f, 0x1e, 0x67, 0xd7, 0x8d, 0x73, 0x65, 0x25, 0x11, 0x97, + 0x3f, 0xe2, 0x1c, 0xf3, 0x68, 0xbb, 0x41, 0xa0, 0x11, 0x68, 0x05, 0x84, 0xb6, 0x6d, 0x86, 0x36, + 0x22, 0xae, 0xd0, 0xd0, 0x46, 0x98, 0x11, 0x66, 0x79, 0xc3, 0xac, 0xd3, 0xb5, 0x0e, 0xed, 0x4f, + 0x5c, 0x31, 0x4e, 0xb4, 0x15, 0x88, 0xb6, 0xc3, 0x96, 0x79, 0xd4, 0xe3, 0x96, 0xac, 0x72, 0xbf, + 0xb8, 0x25, 0x8b, 0xfe, 0xcd, 0xca, 0x9f, 0xc8, 0x62, 0x85, 0x4f, 0x40, 0x55, 0x2b, 0x54, 0x6d, + 0x33, 0x54, 0x11, 0x59, 0xac, 0xd8, 0x09, 0x27, 0x56, 0xe6, 0x44, 0x55, 0x35, 0x51, 0x05, 0x5e, + 0x81, 0x63, 0x56, 0xde, 0x78, 0x15, 0x37, 0xd6, 0x7b, 0xc6, 0xb1, 0x16, 0xc3, 0x52, 0x90, 0xe8, + 0x6d, 0x98, 0x61, 0x38, 0x4c, 0xbc, 0xc4, 0x1f, 0x86, 0xc6, 0x1e, 0x50, 0xdc, 0x36, 0xe2, 0xfe, + 0x17, 0x75, 0xe5, 0x8d, 0xbc, 0xe4, 0xcb, 0x24, 0x52, 0xd7, 0x87, 0x23, 0x15, 0xf6, 0x87, 0xe1, + 0x85, 0x7f, 0x59, 0x0b, 0x55, 0xf2, 0x75, 0x18, 0xfd, 0x5d, 0xf3, 0xc3, 0x38, 0xf1, 0xc2, 0xbe, + 0xaa, 0x3f, 0xfe, 0x41, 0xbc, 0xf0, 0x93, 0xfa, 0x28, 0x1a, 0x26, 0xc3, 0xfe, 0x30, 0x88, 0xb3, + 0xef, 0xea, 0x7e, 0xec, 0xc7, 0xf5, 0x40, 0x5d, 0xab, 0x60, 0xf6, 0x4b, 0x3d, 0xf0, 0xc3, 0xbf, + 0x6b, 0x71, 0xe2, 0x25, 0xaa, 0x36, 0xf0, 0x12, 0xef, 0xdc, 0x8b, 0x55, 0x3d, 0x88, 0x47, 0xf5, + 0x24, 0xb8, 0x8e, 0x27, 0xff, 0xa8, 0xab, 0x6f, 0x89, 0x0a, 0x07, 0x6a, 0x50, 0xf3, 0xe3, 0x5a, + 0xa4, 0xbc, 0xfe, 0x17, 0xef, 0xdc, 0x0f, 0xfc, 0xe4, 0xa6, 0x1e, 0x2a, 0xff, 0xf2, 0xcb, 0xf9, + 0x30, 0x8a, 0xb3, 0xef, 0xea, 0x77, 0xc6, 0x64, 0x46, 0xc4, 0xe3, 0xf3, 0xe9, 0xff, 0x2a, 0xfd, + 0xb5, 0xee, 0x5d, 0x7b, 0x7e, 0xe0, 0x9d, 0x07, 0xaa, 0x76, 0xee, 0x85, 0x83, 0xaf, 0xfe, 0x20, + 0xf9, 0x52, 0x9f, 0xfe, 0xed, 0x18, 0xa9, 0x47, 0xbe, 0x9b, 0xca, 0xb6, 0x50, 0x78, 0x00, 0x41, + 0x0b, 0x1c, 0xd5, 0x0c, 0x18, 0x00, 0xf3, 0x8b, 0x46, 0x9c, 0x44, 0xe3, 0x7e, 0x12, 0xce, 0x38, + 0x77, 0x3b, 0x7d, 0xd3, 0xf6, 0xec, 0x19, 0xdd, 0xce, 0xec, 0xf5, 0xba, 0x76, 0xec, 0xc7, 0x6e, + 0x6b, 0xf2, 0x5e, 0xdd, 0x56, 0x3c, 0x72, 0x9d, 0xe0, 0xda, 0xb5, 0x66, 0xaf, 0xcf, 0x8e, 0xbb, + 0xf7, 0x5e, 0x9e, 0xdb, 0x9e, 0xbd, 0x32, 0x37, 0xfb, 0x9f, 0xf4, 0xa6, 0x2f, 0xc8, 0x35, 0xe7, + 0x2f, 0x68, 0x3f, 0x7b, 0x3f, 0xbf, 0x30, 0x40, 0x69, 0x16, 0x9c, 0x8c, 0x0c, 0xfc, 0xb5, 0xfe, + 0x30, 0x8c, 0x93, 0xc8, 0xf3, 0xc3, 0x24, 0x16, 0x1f, 0xa3, 0xb2, 0xa2, 0xf3, 0xfb, 0xe6, 0x0b, + 0x4f, 0x06, 0x1f, 0xfc, 0x70, 0x60, 0xec, 0xad, 0x6d, 0x08, 0x37, 0xf3, 0x60, 0x1a, 0xf0, 0x8d, + 0xbd, 0xb5, 0x75, 0xe1, 0x86, 0x76, 0x22, 0x75, 0xe1, 0x7f, 0xc3, 0x48, 0xac, 0x73, 0xe0, 0x0e, + 0xfb, 0xb5, 0x49, 0x0a, 0x44, 0x48, 0x39, 0xbd, 0xe1, 0x38, 0xea, 0x2b, 0x98, 0x82, 0xc7, 0xf8, + 0xa0, 0x6e, 0xbe, 0x0e, 0xa3, 0x89, 0x87, 0x19, 0xa3, 0x14, 0x19, 0x20, 0xd5, 0xe5, 0x7b, 0x2f, + 0x36, 0xa3, 0xcb, 0xf1, 0x95, 0x0a, 0x13, 0x63, 0x6f, 0x2d, 0x89, 0xc6, 0x0a, 0xa5, 0x2c, 0xbe, + 0xb3, 0x3a, 0x03, 0x36, 0x0b, 0x1a, 0xad, 0x0b, 0x9a, 0xa6, 0x1f, 0x61, 0x04, 0xdc, 0xef, 0x31, + 0x04, 0x9c, 0x58, 0xf6, 0x23, 0x9e, 0x83, 0x12, 0xd6, 0x30, 0xe8, 0x0e, 0x1c, 0xed, 0x41, 0xa4, + 0x3f, 0xc0, 0x34, 0x08, 0x95, 0x0e, 0xc1, 0xd3, 0x22, 0x78, 0x7a, 0x84, 0x4d, 0x93, 0x30, 0xe8, + 0x12, 0x08, 0x6d, 0x82, 0xa3, 0x4f, 0x99, 0xc1, 0x48, 0xdd, 0xa1, 0xa5, 0xd9, 0x06, 0xa7, 0x47, + 0x04, 0x4e, 0xa2, 0x60, 0xc9, 0x14, 0x32, 0xa9, 0xd2, 0x80, 0x5c, 0xa1, 0x93, 0x2c, 0x6d, 0xc8, + 0x96, 0x36, 0xa4, 0x4b, 0x0f, 0xf2, 0x85, 0x45, 0xc2, 0xc0, 0xc8, 0x18, 0x2c, 0x29, 0xfb, 0x0e, + 0x39, 0xc3, 0x8d, 0x98, 0x8b, 0x1c, 0x0d, 0x35, 0x64, 0x62, 0x52, 0x35, 0x78, 0xca, 0xa6, 0x03, + 0x75, 0xd3, 0x88, 0xc2, 0xe9, 0x42, 0xe5, 0xb4, 0xa3, 0x74, 0xda, 0x51, 0x3b, 0xbd, 0x28, 0x1e, + 0x26, 0xd5, 0x03, 0xa5, 0x7c, 0xf0, 0xd4, 0xef, 0x3b, 0x14, 0xb0, 0xe6, 0x0f, 0xf0, 0x83, 0xed, + 0x22, 0x1b, 0x9c, 0x3c, 0x16, 0x78, 0x7c, 0x9a, 0x11, 0xc3, 0x75, 0xf0, 0xc7, 0x40, 0x27, 0x88, + 0x3a, 0x11, 0x45, 0x0d, 0x09, 0xa3, 0x6e, 0xc4, 0x51, 0x5b, 0x02, 0xa9, 0x2d, 0x91, 0xd4, 0x93, + 0x50, 0x62, 0x13, 0x4b, 0x70, 0x82, 0x99, 0x41, 0xca, 0xb9, 0x19, 0x29, 0xbd, 0x32, 0x4e, 0xa0, + 0xbc, 0x8b, 0x48, 0x5d, 0xe8, 0x90, 0x71, 0xe6, 0x9d, 0xbb, 0x1d, 0x0d, 0x9e, 0xa5, 0x33, 0xd3, + 0x6e, 0xbd, 0x7d, 0x9b, 0xea, 0x20, 0xeb, 0x0f, 0xa9, 0xf4, 0x2f, 0x0c, 0x61, 0x0c, 0x5f, 0xcf, + 0x43, 0x54, 0x2a, 0xa7, 0xd5, 0xa6, 0xb4, 0x4c, 0x1f, 0x47, 0x8f, 0x92, 0x72, 0x83, 0x25, 0x25, + 0x4b, 0x4a, 0x96, 0x94, 0x2c, 0x29, 0x59, 0x52, 0xb2, 0xa4, 0x24, 0x1f, 0xab, 0x56, 0x49, 0x89, + 0x7e, 0x76, 0x91, 0x3d, 0xc8, 0xdd, 0x22, 0x86, 0x3d, 0xdd, 0xd6, 0x93, 0x23, 0xed, 0x98, 0x78, + 0x0e, 0xf1, 0x5c, 0xd7, 0xe4, 0x71, 0x74, 0x21, 0xa0, 0x3a, 0x12, 0x51, 0x8d, 0x09, 0xa9, 0xae, + 0xc4, 0x54, 0x7b, 0x82, 0xaa, 0x3d, 0x51, 0xd5, 0x9b, 0xb0, 0xea, 0x41, 0x5c, 0x35, 0x21, 0xb0, + 0x19, 0xd4, 0xb4, 0x39, 0x1b, 0x59, 0xc8, 0x58, 0xbe, 0x52, 0xea, 0x22, 0x18, 0x7a, 0xc9, 0xbb, + 0x4d, 0x9d, 0xb2, 0xd6, 0x8c, 0x04, 0xee, 0x6a, 0xf4, 0x48, 0x2d, 0x15, 0x5e, 0x4e, 0x0b, 0x90, + 0xcf, 0x5a, 0x85, 0x71, 0xbd, 0x68, 0xc5, 0xf4, 0x93, 0x3a, 0xf6, 0x43, 0xed, 0xf8, 0x92, 0xa6, + 0xe5, 0xd5, 0xc2, 0xe3, 0x4d, 0x6f, 0x5a, 0x36, 0xf6, 0xd6, 0x1a, 0x9a, 0x3e, 0xdf, 0x61, 0xe4, + 0xf5, 0x13, 0x7f, 0x18, 0x36, 0xfd, 0x4b, 0x7f, 0x2a, 0x98, 0x5e, 0xd7, 0xee, 0x39, 0x6f, 0x7f, + 0xd3, 0x30, 0xa4, 0x78, 0xdf, 0x18, 0x52, 0x18, 0x52, 0x18, 0x52, 0x58, 0x8d, 0xf1, 0x69, 0xee, + 0xbe, 0xce, 0x7e, 0xe1, 0xe7, 0xc1, 0x94, 0xbb, 0x9a, 0x30, 0xa6, 0x97, 0x4e, 0x65, 0xa1, 0xd0, + 0xd7, 0x49, 0xaf, 0xa2, 0x29, 0x73, 0xe0, 0x59, 0x0f, 0x92, 0x43, 0xf1, 0xac, 0x07, 0x27, 0x4c, + 0xf0, 0xac, 0x07, 0xfc, 0x01, 0x79, 0xd6, 0x43, 0x0e, 0x58, 0x10, 0xd4, 0xf4, 0x3d, 0xeb, 0x19, + 0xfb, 0xa1, 0x9e, 0xc7, 0x3c, 0x3b, 0x1a, 0x3d, 0x52, 0xd7, 0x0b, 0x2f, 0x15, 0x4f, 0x79, 0xe4, + 0x7f, 0x50, 0x3c, 0xe5, 0xc1, 0x7d, 0xbc, 0x79, 0x4b, 0x76, 0x9d, 0x2d, 0x59, 0xd2, 0x0d, 0x41, + 0x21, 0x85, 0xa7, 0x3c, 0xf0, 0x21, 0xa5, 0xb1, 0xb9, 0xdb, 0xd8, 0xdd, 0xde, 0xd9, 0xdc, 0xdd, + 0x62, 0x6c, 0x61, 0x41, 0xc6, 0xa7, 0x59, 0xe5, 0x17, 0x8f, 0x7b, 0xf8, 0x04, 0x95, 0x67, 0x0e, + 0xa8, 0x57, 0x7d, 0x2f, 0x7d, 0x1e, 0xfd, 0x6f, 0xf4, 0xfd, 0xee, 0x5d, 0xa0, 0xdf, 0xfd, 0x69, + 0xfd, 0xfe, 0x6f, 0xb8, 0xf7, 0x63, 0xa0, 0x0b, 0xc3, 0xf5, 0x0b, 0x1a, 0x5c, 0x78, 0x59, 0x68, + 0x9d, 0xa0, 0x6e, 0x74, 0x39, 0xaf, 0x36, 0x5a, 0x7e, 0x9c, 0x98, 0x49, 0x02, 0xbe, 0xc1, 0xf3, + 0xd8, 0x0f, 0xad, 0x40, 0x5d, 0xa9, 0xf4, 0x86, 0x9d, 0x70, 0x1c, 0x04, 0xc0, 0xbb, 0x62, 0x8e, + 0xbd, 0x6f, 0xfa, 0x3c, 0xcc, 0x49, 0x34, 0x50, 0x91, 0x1a, 0xec, 0xdf, 0xcc, 0x1e, 0x85, 0x81, + 0x8a, 0x3c, 0x8c, 0xfc, 0x6b, 0xf5, 0xfc, 0xcb, 0x80, 0x5e, 0x8e, 0x15, 0x8d, 0xfb, 0x49, 0x38, + 0x3b, 0x03, 0x6c, 0xa7, 0x9f, 0x97, 0x3d, 0x7b, 0x53, 0x6e, 0x67, 0xf6, 0x21, 0xb9, 0x76, 0xec, + 0xc7, 0x6e, 0x6b, 0xf2, 0xe9, 0xb8, 0xad, 0x78, 0xe4, 0x3a, 0xc1, 0xb5, 0x6b, 0xcd, 0x3e, 0x04, + 0x3b, 0xee, 0xde, 0xfb, 0x08, 0xdc, 0xf6, 0xec, 0xc5, 0xbb, 0xd9, 0xff, 0xa4, 0x37, 0x7d, 0xcd, + 0xee, 0xfe, 0xfc, 0x85, 0x1e, 0x64, 0x2f, 0xce, 0xbd, 0xfb, 0x16, 0x93, 0xbd, 0xde, 0xf2, 0x26, + 0x1e, 0x06, 0x7f, 0x7d, 0x82, 0x3e, 0x83, 0xfd, 0x92, 0x60, 0x8f, 0x15, 0x9d, 0x70, 0x7c, 0x1c, + 0xc8, 0xbf, 0x8d, 0xab, 0xe1, 0x40, 0x05, 0x88, 0xc3, 0xdf, 0xd9, 0x84, 0x4f, 0xf6, 0x04, 0x98, + 0x77, 0x88, 0xae, 0xf3, 0x0e, 0xd1, 0x62, 0x0c, 0xe7, 0x1d, 0xa2, 0xa5, 0x3e, 0x02, 0xef, 0x10, + 0x15, 0xf2, 0x20, 0xbc, 0x43, 0x94, 0xac, 0xa6, 0x2a, 0x95, 0x0b, 0xec, 0x5c, 0xb3, 0x06, 0xfb, + 0xfc, 0x91, 0xf7, 0xf7, 0x2f, 0xee, 0xeb, 0xcf, 0x58, 0x26, 0x6b, 0xa6, 0xca, 0xd7, 0x4c, 0x98, + 0xab, 0xf7, 0xa1, 0x57, 0xed, 0x83, 0xae, 0xd6, 0x67, 0xb5, 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, + 0x25, 0x56, 0x4b, 0xac, 0x96, 0xe4, 0x43, 0x04, 0x75, 0x75, 0x3d, 0x6e, 0x13, 0x7b, 0x21, 0x65, + 0x81, 0x36, 0xb3, 0x1f, 0xd3, 0x34, 0x50, 0xc1, 0x0b, 0xfc, 0x32, 0x12, 0x1d, 0x96, 0x8f, 0x68, + 0xb4, 0x6c, 0x44, 0x97, 0xe5, 0x22, 0xda, 0x2d, 0x13, 0xd1, 0x6e, 0x79, 0x88, 0x5e, 0xcb, 0x42, + 0x38, 0x7c, 0x5e, 0x24, 0x74, 0xe0, 0x97, 0x7f, 0x3c, 0x58, 0xf6, 0xf1, 0x3b, 0x72, 0xbe, 0x98, + 0xd1, 0x27, 0x60, 0x19, 0xad, 0x26, 0xbb, 0x3c, 0x34, 0x90, 0x98, 0xe9, 0xb4, 0xab, 0x43, 0xb7, + 0xa5, 0x87, 0x9a, 0xed, 0xe2, 0xd0, 0x51, 0x1f, 0xaf, 0xc3, 0x7a, 0x57, 0x9d, 0x76, 0x6b, 0xe8, + 0x1a, 0x02, 0x36, 0xb7, 0xb6, 0x18, 0x04, 0x58, 0x88, 0xd0, 0xfa, 0xfb, 0x5f, 0x67, 0xd4, 0xcd, + 0xd0, 0x62, 0xf4, 0x94, 0x4c, 0xdd, 0x8c, 0x4e, 0xba, 0x19, 0xc0, 0x6d, 0x14, 0x40, 0xd3, 0x5f, + 0xbf, 0x30, 0xfe, 0xac, 0x90, 0x29, 0xa7, 0xdb, 0x24, 0xc0, 0xce, 0x12, 0x31, 0x17, 0x47, 0x40, + 0x2f, 0x8a, 0x80, 0x5e, 0x0c, 0x81, 0xb9, 0x08, 0x02, 0x25, 0x86, 0x80, 0x72, 0x17, 0x72, 0x96, + 0x1a, 0xe4, 0x06, 0x87, 0x72, 0x37, 0x36, 0x60, 0xd0, 0x3a, 0xf9, 0x24, 0x49, 0xb6, 0x85, 0xc2, + 0x43, 0x2f, 0x5a, 0xc8, 0xad, 0x6a, 0xa8, 0x95, 0x1d, 0x2c, 0xe4, 0xba, 0xa0, 0x60, 0xf7, 0x33, + 0x32, 0xd8, 0x78, 0x83, 0x2b, 0x3f, 0xac, 0x5d, 0x46, 0xc3, 0xf1, 0x48, 0xbc, 0x13, 0x66, 0x63, + 0x0f, 0xdf, 0xb5, 0x5e, 0x78, 0xb0, 0xc3, 0xd0, 0xf3, 0xc0, 0x0c, 0x84, 0x22, 0x0d, 0x7e, 0x02, + 0x0e, 0x78, 0xa2, 0x0d, 0x72, 0xc2, 0x0e, 0x6c, 0xc2, 0x0e, 0x66, 0x62, 0x0e, 0x60, 0x92, 0xb0, + 0xbf, 0xe6, 0x23, 0x47, 0xd1, 0xcb, 0x80, 0x09, 0x96, 0x21, 0x85, 0xca, 0x60, 0x02, 0x65, 0x38, + 0xa5, 0x0b, 0xa2, 0xb2, 0x05, 0x58, 0xc9, 0x82, 0xaa, 0x5c, 0x81, 0x57, 0xaa, 0xc0, 0x2b, 0x53, + 0xb0, 0x95, 0x28, 0x3c, 0x88, 0xae, 0x22, 0x41, 0xca, 0x0c, 0x86, 0xec, 0x03, 0x2d, 0x4d, 0x3b, + 0x80, 0x7d, 0xa1, 0x65, 0xb4, 0x8a, 0x5b, 0x32, 0x49, 0xb3, 0x34, 0xa6, 0x5b, 0xe8, 0xb4, 0x4b, + 0x1b, 0xfa, 0xa5, 0x0d, 0x0d, 0xd3, 0x83, 0x8e, 0x61, 0xd1, 0x32, 0x30, 0x7a, 0x96, 0x41, 0x04, + 0x7f, 0x4b, 0x26, 0xec, 0x2d, 0xff, 0xc0, 0xb7, 0xf9, 0x83, 0x2b, 0x7d, 0xb1, 0xef, 0x26, 0xd3, + 0x60, 0xa5, 0x88, 0x16, 0x72, 0x3e, 0x5d, 0x94, 0xbc, 0x3a, 0x89, 0xf7, 0x6e, 0xb1, 0x6f, 0xea, + 0xa3, 0x6b, 0x0b, 0x73, 0x6d, 0x5d, 0x6e, 0xb7, 0xd7, 0xca, 0xc7, 0x29, 0x10, 0x2d, 0xe4, 0xeb, + 0x8c, 0x85, 0x57, 0x8e, 0x0e, 0x09, 0x7d, 0x55, 0xae, 0x16, 0x57, 0xe4, 0x6a, 0x71, 0x35, 0x2e, + 0xf6, 0x95, 0xb8, 0x54, 0xa9, 0x56, 0x32, 0x08, 0x52, 0x61, 0x26, 0x56, 0xf6, 0xf0, 0xbd, 0x73, + 0x43, 0x24, 0xfd, 0x3b, 0x85, 0x52, 0x5a, 0x47, 0x10, 0x0a, 0xa5, 0x20, 0x22, 0x06, 0xc2, 0x58, + 0x7f, 0x71, 0xaa, 0xd3, 0xf9, 0xef, 0x37, 0x27, 0x2f, 0xe8, 0x68, 0xfa, 0x7e, 0xa8, 0x23, 0xd3, + 0x2d, 0x3a, 0x19, 0xfe, 0xe8, 0xba, 0x51, 0xf3, 0xc3, 0x44, 0x45, 0x17, 0x5e, 0x5f, 0xd5, 0xbc, + 0xc1, 0x20, 0x52, 0x71, 0x8c, 0xa3, 0x24, 0x5b, 0x62, 0x3f, 0xb5, 0x64, 0xab, 0x30, 0x93, 0x5a, + 0xb2, 0x1c, 0x91, 0x4b, 0x2d, 0x59, 0x7e, 0xee, 0x45, 0x2d, 0x59, 0xd1, 0x04, 0x97, 0x5a, 0xb2, + 0xaa, 0xd5, 0x34, 0xd4, 0x92, 0xe5, 0x9b, 0x1f, 0xa8, 0x25, 0x23, 0xb1, 0x41, 0x24, 0x38, 0xc0, + 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, + 0x31, 0x82, 0x23, 0x48, 0x99, 0xc1, 0x28, 0xcd, 0x9f, 0xa5, 0x99, 0x06, 0xa3, 0xfb, 0xb3, 0x8c, + 0x3c, 0x51, 0x31, 0x46, 0x32, 0xa5, 0x31, 0xa9, 0x42, 0x27, 0x57, 0xda, 0x90, 0x2c, 0x6d, 0xc8, + 0x96, 0x1e, 0xa4, 0x0b, 0x8b, 0x7c, 0x81, 0x91, 0xb0, 0x0c, 0x22, 0xf8, 0x8a, 0xb1, 0xe9, 0x49, + 0x17, 0x26, 0xc3, 0xb9, 0xcf, 0x72, 0x36, 0x7e, 0x07, 0xb4, 0xbd, 0xe3, 0x25, 0x89, 0x8a, 0x42, + 0x58, 0xe9, 0x98, 0xf1, 0xbf, 0x5f, 0x7f, 0xfd, 0xbc, 0x5e, 0xdb, 0x3d, 0xfb, 0xf7, 0xf3, 0x46, + 0x6d, 0xf7, 0x2c, 0xfd, 0x76, 0x63, 0xfa, 0x4b, 0xfa, 0xfd, 0xe6, 0xe7, 0xf5, 0x5a, 0x63, 0xfe, + 0xfd, 0xd6, 0xe7, 0xf5, 0xda, 0xd6, 0xd9, 0x9b, 0xbf, 0xfe, 0x7a, 0xfb, 0xe6, 0x9f, 0x77, 0xb7, + 0xcf, 0xff, 0x83, 0xff, 0x67, 0x70, 0x6a, 0x9c, 0xc1, 0xf7, 0x1e, 0xfa, 0x38, 0x35, 0x5e, 0xfe, + 0x43, 0x70, 0x6a, 0x9c, 0xfc, 0x4e, 0x2b, 0x4b, 0x39, 0x35, 0x9e, 0xaf, 0xdd, 0xfa, 0xcf, 0x80, + 0x7e, 0x7f, 0x76, 0x8c, 0x73, 0xe3, 0xd5, 0xb1, 0x90, 0x73, 0xe3, 0x8c, 0x19, 0xab, 0x88, 0x19, + 0x9c, 0x1c, 0xbf, 0x3f, 0x39, 0x6e, 0x8f, 0xae, 0x1b, 0xf6, 0xfc, 0x15, 0x99, 0xb3, 0x37, 0xc4, + 0xd9, 0x71, 0xdd, 0x22, 0x54, 0xda, 0x91, 0x9a, 0xfb, 0x0e, 0xe8, 0xe8, 0xf8, 0x82, 0xf9, 0x9c, + 0x1c, 0x5f, 0x85, 0x99, 0x9c, 0x1c, 0xcf, 0x11, 0xb8, 0x9c, 0x1c, 0xcf, 0xcf, 0xbd, 0x38, 0x39, + 0x5e, 0x34, 0xc5, 0xe5, 0xe4, 0x78, 0xd5, 0xaa, 0x1a, 0x4e, 0x8e, 0xe7, 0x9b, 0x1f, 0x38, 0x39, + 0x4e, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, + 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x32, 0x83, 0x39, 0x39, 0x5e, 0x2a, + 0x79, 0xe2, 0xe4, 0x38, 0xc9, 0x94, 0xc6, 0xa4, 0x0a, 0x9d, 0x5c, 0x69, 0x43, 0xb2, 0xb4, 0x21, + 0x5b, 0x7a, 0x90, 0x2e, 0x2c, 0xf2, 0x05, 0x46, 0xc2, 0x32, 0x88, 0x70, 0x72, 0x5c, 0x08, 0xcb, + 0xe1, 0xe4, 0x78, 0x19, 0x0f, 0xc0, 0xc9, 0xf1, 0x1f, 0x7f, 0x71, 0x72, 0x3c, 0x4f, 0xf4, 0x71, + 0x72, 0xbc, 0xfc, 0x87, 0xe0, 0xe4, 0x38, 0xf9, 0x9d, 0x56, 0x96, 0x72, 0x72, 0x3c, 0x5f, 0xbb, + 0x2b, 0x32, 0x05, 0xfa, 0x78, 0x74, 0x8c, 0x83, 0xe3, 0xd5, 0xb1, 0x90, 0x83, 0xe3, 0x0c, 0x19, + 0x2b, 0x08, 0x19, 0x9c, 0x1b, 0x7f, 0x3c, 0x37, 0x3e, 0xff, 0x8f, 0x1c, 0x1b, 0xd7, 0x35, 0x3e, + 0x19, 0xfe, 0xe8, 0x7a, 0x1b, 0x7c, 0xe5, 0xf8, 0x36, 0x57, 0x8e, 0xe7, 0x64, 0x26, 0x07, 0xc7, + 0x73, 0x44, 0x2e, 0x07, 0xc7, 0xf3, 0x73, 0x2f, 0x0e, 0x8e, 0x17, 0x4d, 0x71, 0x39, 0x38, 0x5e, + 0xb5, 0xaa, 0x86, 0x83, 0xe3, 0xf9, 0xe6, 0x07, 0x0e, 0x8e, 0x93, 0xd8, 0x20, 0x12, 0x1c, 0x60, + 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, + 0x18, 0xc1, 0x11, 0xa4, 0xcc, 0x60, 0x0e, 0x8e, 0x97, 0x4a, 0x9e, 0x38, 0x38, 0x4e, 0x32, 0xa5, + 0x31, 0xa9, 0x42, 0x27, 0x57, 0xda, 0x90, 0x2c, 0x6d, 0xc8, 0x96, 0x1e, 0xa4, 0x0b, 0x8b, 0x7c, + 0x81, 0x91, 0xb0, 0x0c, 0x22, 0x5a, 0x0c, 0x8e, 0x6f, 0x73, 0x70, 0xbc, 0x24, 0xc6, 0xa0, 0xc9, + 0xe0, 0xb8, 0x57, 0xbb, 0x30, 0x6b, 0x87, 0x67, 0xff, 0x6c, 0xfc, 0xd6, 0xb8, 0xdd, 0x7b, 0xf3, + 0xcf, 0xce, 0xed, 0xe3, 0x1f, 0xfe, 0xfb, 0xbd, 0xdf, 0xb6, 0xf1, 0xdb, 0xce, 0xed, 0xde, 0x92, + 0xff, 0xb2, 0x7d, 0xbb, 0xf7, 0xc4, 0xff, 0xc7, 0xd6, 0xed, 0xaf, 0x0b, 0xbf, 0x75, 0xf2, 0xf3, + 0xcd, 0x65, 0x7f, 0xa0, 0xb1, 0xe4, 0x0f, 0xbc, 0x5b, 0xf6, 0x07, 0xde, 0x2d, 0xf9, 0x03, 0x4b, + 0x4d, 0xda, 0x5c, 0xf2, 0x07, 0xb6, 0x6e, 0xff, 0x5d, 0xf8, 0xfd, 0xbf, 0x7e, 0xff, 0xb7, 0x6e, + 0xdf, 0xbe, 0xf9, 0x77, 0xd9, 0x7f, 0xdb, 0xb9, 0xfd, 0x77, 0xef, 0x0d, 0xc7, 0xe8, 0x99, 0x8a, + 0x1e, 0xfa, 0x22, 0xc7, 0xe8, 0xcb, 0x7f, 0x08, 0x8e, 0xd1, 0x93, 0xed, 0x6a, 0x65, 0x29, 0xc7, + 0xe8, 0xf3, 0xb5, 0xbb, 0x12, 0x33, 0xb1, 0xdb, 0x5c, 0xc0, 0x5e, 0x65, 0x0b, 0x39, 0x47, 0xcf, + 0x98, 0xb1, 0x8a, 0x98, 0xc1, 0x41, 0xfa, 0x47, 0x83, 0xf4, 0xdb, 0x5c, 0xc0, 0xae, 0x7d, 0x84, + 0x4a, 0xfb, 0x73, 0xd0, 0x0b, 0xd8, 0xb7, 0xb9, 0x80, 0x3d, 0x1f, 0x33, 0x39, 0x47, 0x9f, 0x23, + 0x70, 0x39, 0x47, 0x9f, 0x9f, 0x7b, 0x71, 0x8e, 0xbe, 0x68, 0x8a, 0xcb, 0x39, 0xfa, 0xaa, 0x55, + 0x35, 0x9c, 0xa3, 0xcf, 0x37, 0x3f, 0x70, 0x8e, 0x9e, 0xc4, 0x06, 0x91, 0xe0, 0x00, 0x13, 0x1d, + 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, 0x20, 0xc4, 0x08, + 0x8e, 0x20, 0x65, 0x06, 0x73, 0x8e, 0xbe, 0x54, 0xf2, 0xc4, 0x39, 0x7a, 0x92, 0x29, 0x8d, 0x49, + 0x15, 0x3a, 0xb9, 0xd2, 0x86, 0x64, 0x69, 0x43, 0xb6, 0xf4, 0x20, 0x5d, 0x58, 0xe4, 0x0b, 0x8c, + 0x84, 0x65, 0x10, 0xe1, 0x1c, 0xbd, 0x10, 0x96, 0xc3, 0x39, 0xfa, 0x32, 0x1e, 0x80, 0x73, 0xf4, + 0x9c, 0xa3, 0x7f, 0xfa, 0x17, 0xe7, 0xe8, 0xf3, 0xf4, 0x45, 0xce, 0xd1, 0x97, 0xff, 0x10, 0x9c, + 0xa3, 0x27, 0xdb, 0xd5, 0xca, 0x52, 0xce, 0xd1, 0xe7, 0x6b, 0x77, 0x45, 0x66, 0x62, 0xb9, 0x8e, + 0xbe, 0xba, 0x16, 0x72, 0x8c, 0x9e, 0x21, 0x63, 0x05, 0x21, 0x83, 0x53, 0xf4, 0x8f, 0xa7, 0xe8, + 0xb9, 0x8e, 0x5e, 0xf7, 0xf8, 0x64, 0x04, 0x5e, 0x58, 0xf3, 0x06, 0xff, 0x9f, 0xd7, 0x57, 0x61, + 0xff, 0xa6, 0x16, 0xfb, 0x03, 0xa0, 0x09, 0xfa, 0xef, 0xd8, 0xce, 0xf1, 0xf9, 0x55, 0x98, 0xc9, + 0xf1, 0xf9, 0x1c, 0x51, 0xcb, 0xf1, 0xf9, 0xfc, 0xdc, 0x8b, 0xe3, 0xf3, 0x45, 0x53, 0x5b, 0x8e, + 0xcf, 0x57, 0xad, 0x9a, 0x81, 0x19, 0x9f, 0x5f, 0xa0, 0x07, 0x78, 0xa3, 0xf4, 0x8b, 0x8f, 0xc0, + 0xb1, 0xfa, 0x2a, 0x13, 0x1e, 0x44, 0xe2, 0x03, 0x4c, 0x80, 0x50, 0x89, 0x10, 0x3c, 0x21, 0x82, + 0x27, 0x46, 0xd8, 0x04, 0x09, 0x83, 0x28, 0x81, 0x10, 0x26, 0x38, 0xe2, 0x94, 0x19, 0x8c, 0xa5, + 0x3f, 0x5c, 0xc8, 0x33, 0x48, 0x3a, 0x44, 0x50, 0xe2, 0x04, 0x4b, 0xa0, 0x90, 0x89, 0x94, 0x06, + 0x84, 0x0a, 0x9d, 0x58, 0x69, 0x43, 0xb0, 0xb4, 0x21, 0x5a, 0x7a, 0x10, 0x2e, 0x2c, 0xe2, 0x05, + 0x46, 0xc0, 0x60, 0x89, 0x58, 0x66, 0xf8, 0x45, 0xe0, 0x5d, 0xc6, 0xb8, 0xc1, 0x72, 0x9e, 0xaf, + 0xd2, 0xc7, 0x00, 0x8d, 0x2f, 0x98, 0x9a, 0x47, 0x78, 0xa2, 0xa6, 0x03, 0x61, 0xd3, 0x88, 0xb8, + 0xe9, 0x42, 0xe0, 0xb4, 0x23, 0x72, 0xda, 0x11, 0x3a, 0xbd, 0x88, 0x1d, 0x26, 0xc1, 0x03, 0x25, + 0x7a, 0x19, 0x74, 0x60, 0x35, 0x94, 0x0b, 0x19, 0x43, 0x85, 0xe3, 0x2b, 0x15, 0xa5, 0xb3, 0xa4, + 0xc0, 0x59, 0x63, 0xde, 0xe5, 0x6a, 0x00, 0x3f, 0x83, 0x15, 0x8e, 0xaf, 0x26, 0xa0, 0xa2, 0x2b, + 0x17, 0xf9, 0xd6, 0xa1, 0x35, 0x68, 0xd9, 0x53, 0xe8, 0xa0, 0x45, 0xbb, 0x7b, 0x18, 0x0d, 0x34, + 0x69, 0xd9, 0xc3, 0x40, 0x6b, 0xd3, 0x70, 0xd9, 0x05, 0x60, 0x38, 0x32, 0x32, 0xfd, 0x00, 0xd0, + 0x64, 0xd1, 0x52, 0x62, 0x71, 0xff, 0x61, 0xd8, 0x99, 0x29, 0xc3, 0x7c, 0x76, 0x66, 0x04, 0xb9, + 0x03, 0x3b, 0x33, 0x72, 0xdc, 0x9a, 0x9d, 0x19, 0xe1, 0x0f, 0xc4, 0xce, 0x0c, 0xf9, 0xd3, 0x0b, + 0xa1, 0xa3, 0x4f, 0x67, 0x26, 0xbe, 0x89, 0x13, 0x75, 0x85, 0x4b, 0x9f, 0xd6, 0xc0, 0x57, 0x5d, + 0xdd, 0xd1, 0x10, 0xf0, 0x95, 0x57, 0xd9, 0x83, 0xfc, 0xef, 0xf3, 0x7a, 0x6d, 0xd7, 0xac, 0x1d, + 0x7a, 0xb5, 0x8b, 0xb3, 0x7f, 0x1a, 0xb7, 0x7f, 0xfd, 0xf5, 0xf6, 0x27, 0x3f, 0xf8, 0x3f, 0xdc, + 0xa8, 0x7b, 0xc6, 0x3a, 0x9b, 0x79, 0x62, 0x89, 0x1f, 0x5c, 0x7b, 0xc1, 0x58, 0xe1, 0x57, 0xd8, + 0xe9, 0x63, 0xb0, 0xb6, 0x66, 0x6d, 0xcd, 0xda, 0x9a, 0xb5, 0x35, 0x6b, 0x6b, 0xd6, 0xd6, 0xac, + 0xad, 0xc9, 0x99, 0x58, 0x5b, 0x3f, 0x21, 0x63, 0x8c, 0xfd, 0x30, 0x79, 0xb7, 0xa9, 0x41, 0x61, + 0xbd, 0x03, 0xfc, 0x08, 0x5d, 0x2f, 0xbc, 0x54, 0xf0, 0x55, 0x35, 0x76, 0xc2, 0x5e, 0x9b, 0x0d, + 0x0f, 0xc0, 0x33, 0x0f, 0x4d, 0x0a, 0x8b, 0x85, 0xc7, 0xf9, 0x38, 0xab, 0x55, 0x75, 0x79, 0x9e, + 0xc3, 0xc8, 0xeb, 0x27, 0xfe, 0x30, 0x6c, 0xfa, 0x97, 0xfe, 0x74, 0xbc, 0x63, 0x1d, 0xfe, 0xb9, + 0x6e, 0x7f, 0xd3, 0x20, 0x04, 0x78, 0xdf, 0x18, 0x02, 0x84, 0x87, 0x80, 0xc6, 0xe6, 0x6e, 0x63, + 0x77, 0x7b, 0x67, 0x73, 0x77, 0x8b, 0xb1, 0x80, 0x05, 0x09, 0xad, 0xbf, 0xff, 0xc5, 0x76, 0x3f, + 0x73, 0xdd, 0xb2, 0x30, 0xf3, 0x55, 0xf9, 0x97, 0x5f, 0x12, 0xfc, 0x7e, 0xff, 0xec, 0x39, 0xd8, + 0xf0, 0x2f, 0xc3, 0x7c, 0x36, 0xfc, 0x05, 0x79, 0x02, 0x1b, 0xfe, 0x72, 0xdc, 0x9a, 0x0d, 0x7f, + 0xe1, 0x0f, 0xc4, 0x86, 0x3f, 0x59, 0xd3, 0x0b, 0xa1, 0xa3, 0x57, 0xc3, 0xff, 0x77, 0x0d, 0xfa, + 0xfd, 0x5b, 0xec, 0xf7, 0x97, 0xfc, 0xc5, 0x7e, 0x3f, 0xeb, 0x8a, 0x1c, 0x1f, 0x87, 0xfd, 0x7e, + 0x66, 0xf3, 0x22, 0x42, 0x00, 0xfb, 0xfd, 0xe2, 0x43, 0xc0, 0xe6, 0x16, 0x1b, 0xfd, 0x2c, 0x44, + 0x68, 0xfd, 0x83, 0x2f, 0x36, 0xfa, 0x69, 0x31, 0x7c, 0x4a, 0x46, 0xbd, 0xfb, 0x35, 0xb3, 0x5f, + 0xff, 0x0b, 0x1d, 0x17, 0xaf, 0x82, 0x5b, 0xfc, 0x11, 0xd2, 0x95, 0xb0, 0x78, 0x7e, 0x0d, 0xe4, + 0xd3, 0xa0, 0x8a, 0x22, 0x68, 0x25, 0x11, 0x28, 0xeb, 0xe7, 0x62, 0xfb, 0x32, 0x81, 0xce, 0xc5, + 0xf6, 0xe5, 0xb9, 0x2b, 0x17, 0xdb, 0x4b, 0x23, 0xa1, 0x5c, 0x6c, 0x4f, 0x4e, 0xf3, 0x63, 0x88, + 0xc0, 0x1e, 0x00, 0xde, 0x5d, 0x78, 0xa8, 0xbc, 0x8b, 0x48, 0x5d, 0x20, 0x46, 0xfc, 0xf9, 0xee, + 0x0c, 0x40, 0x8d, 0x8f, 0xd1, 0x99, 0x95, 0x86, 0x6f, 0xdf, 0xa6, 0x45, 0x52, 0x3d, 0xa5, 0x98, + 0x2c, 0x95, 0x2a, 0x6c, 0x29, 0xca, 0xb5, 0x6a, 0x1f, 0xd4, 0x0d, 0x5a, 0x51, 0x84, 0xb9, 0xc5, + 0x16, 0x7a, 0x6b, 0x2d, 0xf4, 0x96, 0x5a, 0xcc, 0xad, 0xb4, 0x28, 0x01, 0x04, 0xb4, 0xbb, 0xcb, + 0xae, 0x2e, 0xd2, 0x8d, 0xd8, 0xe9, 0x27, 0x96, 0x44, 0xe3, 0x7e, 0x12, 0xce, 0xb8, 0x6e, 0x3b, + 0xfd, 0x08, 0xec, 0xd9, 0xc3, 0xbb, 0x9d, 0xd9, 0x7b, 0x77, 0xed, 0xd8, 0x8f, 0xdd, 0xd6, 0xe4, + 0x85, 0xbb, 0xad, 0x78, 0xe4, 0x3a, 0xc1, 0xb5, 0x6b, 0xcd, 0xde, 0xab, 0x1d, 0x77, 0xef, 0xbd, + 0x55, 0xb7, 0x3d, 0x7b, 0x97, 0x6e, 0xf6, 0x3f, 0xe9, 0x4d, 0xdf, 0x9c, 0xdb, 0xf2, 0x42, 0x73, + 0xfe, 0x96, 0x7a, 0xfe, 0x00, 0x83, 0xc9, 0xc9, 0xe7, 0x45, 0xb2, 0x2d, 0x14, 0x1e, 0x70, 0xd1, + 0x02, 0x6d, 0x25, 0x03, 0xac, 0xec, 0x48, 0x21, 0xd7, 0xff, 0x04, 0xfb, 0x9e, 0x31, 0x05, 0x95, + 0x97, 0x24, 0x91, 0x7f, 0x3e, 0x4e, 0x94, 0xfc, 0x0b, 0x04, 0xef, 0xba, 0x41, 0x8f, 0x0c, 0x17, + 0x1e, 0xdf, 0x30, 0xee, 0x6e, 0x86, 0x39, 0xd2, 0x42, 0x3a, 0xc2, 0x02, 0x3c, 0xb2, 0x42, 0x3b, + 0xa2, 0x82, 0x3d, 0x92, 0x82, 0x3d, 0x82, 0xc2, 0x3c, 0x72, 0x22, 0x47, 0x7f, 0xcd, 0x47, 0x8e, + 0x72, 0x37, 0xb2, 0x91, 0x0e, 0x73, 0xc1, 0x04, 0xaf, 0x6c, 0x4d, 0xfc, 0xd4, 0x6c, 0x94, 0xd6, + 0x3a, 0x04, 0xa1, 0x81, 0x23, 0x36, 0x88, 0x04, 0x07, 0x98, 0xe8, 0xa0, 0x12, 0x1e, 0x78, 0xe2, + 0x03, 0x4f, 0x80, 0xb0, 0x89, 0x10, 0x06, 0x21, 0x02, 0x21, 0x46, 0x70, 0x04, 0x29, 0x33, 0x38, + 0x18, 0xf6, 0xbd, 0xa0, 0x36, 0x8a, 0x86, 0x89, 0xea, 0x43, 0x4a, 0x18, 0xee, 0xda, 0x41, 0x8f, + 0x9f, 0x84, 0x23, 0xd0, 0xa4, 0x55, 0x7a, 0xd1, 0x2b, 0x0d, 0x68, 0x16, 0x3a, 0xdd, 0xd2, 0x86, + 0x76, 0x69, 0x43, 0xbf, 0xf4, 0xa0, 0x61, 0x58, 0x74, 0x0c, 0x8c, 0x96, 0x65, 0x10, 0xc1, 0x1f, + 0x81, 0x56, 0xe1, 0xf8, 0x4a, 0x45, 0x1e, 0x20, 0xc1, 0xb9, 0x4f, 0x72, 0x36, 0x1a, 0x80, 0xb6, + 0x5b, 0xe1, 0xf8, 0x6a, 0x02, 0x1e, 0xba, 0x68, 0x9e, 0x6f, 0x19, 0x72, 0xf8, 0x35, 0xb3, 0x1e, + 0x79, 0x08, 0xf6, 0xee, 0x21, 0x80, 0x87, 0x61, 0xb3, 0x87, 0x80, 0x1c, 0x8a, 0xc5, 0x63, 0x01, + 0x6c, 0x1f, 0xad, 0x94, 0xc2, 0x72, 0xd8, 0x58, 0xea, 0x2c, 0xdc, 0xc3, 0x61, 0x23, 0xa4, 0x6d, + 0x11, 0x1c, 0x9c, 0xd5, 0x3a, 0x78, 0x70, 0x70, 0x56, 0x7a, 0xb0, 0x40, 0x18, 0xf7, 0x2a, 0x50, + 0x7c, 0xe0, 0x87, 0x7f, 0x9b, 0x77, 0xef, 0x86, 0x13, 0xc5, 0xba, 0x05, 0xa5, 0x74, 0x30, 0x77, + 0xa0, 0x02, 0xef, 0x06, 0x6c, 0x98, 0x38, 0xb5, 0x99, 0x73, 0xc4, 0xab, 0x30, 0x93, 0x73, 0xc4, + 0x39, 0xa2, 0x95, 0x73, 0xc4, 0xf9, 0xb9, 0x17, 0xe7, 0x88, 0x8b, 0xe6, 0xaf, 0x9c, 0x23, 0xae, + 0x5a, 0xc9, 0xc2, 0x39, 0xe2, 0x7c, 0xf3, 0x03, 0xe7, 0x88, 0x49, 0x6c, 0x10, 0x09, 0x0e, 0x30, + 0xd1, 0x41, 0x25, 0x3c, 0xf0, 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, + 0x8c, 0xe0, 0x08, 0x52, 0x66, 0xb0, 0x57, 0x3b, 0xf7, 0x13, 0xdc, 0xe1, 0xe1, 0xd4, 0x7c, 0x4e, + 0x0c, 0x93, 0x40, 0xe9, 0x45, 0xa4, 0x34, 0x20, 0x54, 0xe8, 0xc4, 0x4a, 0x1b, 0x82, 0xa5, 0x0d, + 0xd1, 0xd2, 0x83, 0x70, 0x61, 0x11, 0x2f, 0x30, 0x02, 0x96, 0x41, 0x04, 0x7f, 0x62, 0xf8, 0x7c, + 0x38, 0x0c, 0x94, 0x07, 0x3d, 0x2d, 0xbc, 0xc1, 0xe1, 0xbd, 0xaa, 0x3b, 0xa3, 0x81, 0x71, 0x9e, + 0xbc, 0xd4, 0x0b, 0x11, 0x8e, 0x96, 0x59, 0x60, 0xb0, 0xc0, 0x60, 0x81, 0xc1, 0x02, 0x83, 0x05, + 0x06, 0x0b, 0x0c, 0x16, 0x18, 0x2c, 0x30, 0x9e, 0x18, 0xf1, 0xc7, 0x7e, 0x98, 0xbc, 0xdb, 0x04, + 0xae, 0x2f, 0x10, 0xef, 0x64, 0xe9, 0x7a, 0xe1, 0xe5, 0xe4, 0xed, 0x7f, 0x86, 0x0c, 0x8c, 0xb8, + 0x77, 0x95, 0x1b, 0xc7, 0x7e, 0x08, 0x7f, 0xd9, 0xba, 0x26, 0x97, 0xac, 0x67, 0x97, 0xab, 0xa3, + 0x3f, 0x87, 0x46, 0x57, 0xaa, 0xdf, 0xfe, 0x06, 0xec, 0xda, 0xde, 0x37, 0xba, 0xb6, 0x30, 0xd7, + 0x6e, 0x6c, 0xee, 0x36, 0x76, 0xb7, 0x77, 0x36, 0x77, 0xb7, 0xe8, 0xe3, 0x2c, 0x08, 0xaa, 0x65, + 0xf5, 0x19, 0xdb, 0xde, 0x15, 0xb6, 0x94, 0x9a, 0xf5, 0x7c, 0xed, 0xae, 0x88, 0x0c, 0x75, 0x7a, + 0xf0, 0x40, 0xb9, 0x7a, 0x75, 0x2c, 0xa4, 0x5c, 0x9d, 0x71, 0xe2, 0xa5, 0x71, 0x82, 0x4a, 0xf5, + 0xc7, 0x4a, 0xf5, 0xe6, 0xf4, 0xb5, 0x50, 0xa4, 0xae, 0x5b, 0x28, 0xba, 0x27, 0xf8, 0xae, 0x5d, + 0x7b, 0x91, 0x8f, 0x11, 0x90, 0xbe, 0x23, 0x57, 0xbf, 0x67, 0x3d, 0x85, 0xeb, 0xab, 0x30, 0x93, + 0xc2, 0xf5, 0x1c, 0x71, 0x4b, 0xe1, 0x7a, 0x7e, 0xee, 0x45, 0xe1, 0x7a, 0xd1, 0x4c, 0x96, 0xc2, + 0xf5, 0xaa, 0x15, 0x2f, 0x14, 0xae, 0xe7, 0x9b, 0x1f, 0x28, 0x5c, 0x27, 0xb1, 0x41, 0x24, 0x38, + 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, + 0x08, 0x31, 0x82, 0x23, 0x48, 0x99, 0xc1, 0xd4, 0x95, 0x94, 0x46, 0x9c, 0xa8, 0x2b, 0x21, 0x91, + 0xd2, 0x98, 0x50, 0xa1, 0x13, 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, 0x4b, 0x0f, 0xc2, 0x85, 0x45, + 0xbc, 0xc0, 0x08, 0x58, 0x06, 0x11, 0xea, 0x4a, 0x4a, 0xe7, 0x37, 0xd4, 0x95, 0x14, 0xfd, 0x45, + 0x5d, 0x09, 0x89, 0xfd, 0x0a, 0x1e, 0x83, 0xba, 0x12, 0xa6, 0xdf, 0x55, 0xba, 0x36, 0x75, 0x25, + 0xe2, 0x5c, 0x9b, 0xba, 0x12, 0x16, 0x04, 0x55, 0xb5, 0x9a, 0xba, 0x92, 0x2a, 0x5b, 0x4a, 0x5d, + 0x49, 0xbe, 0x76, 0x57, 0x69, 0x5e, 0xfc, 0x6e, 0xf8, 0x94, 0x0a, 0x93, 0xea, 0x58, 0x48, 0x85, + 0x09, 0x23, 0xc6, 0xeb, 0x23, 0x06, 0xb5, 0x26, 0xdf, 0xd5, 0x9a, 0x7c, 0xcc, 0xde, 0x0f, 0x45, + 0x27, 0xba, 0x45, 0xa7, 0x54, 0xb6, 0xe1, 0x0f, 0xc0, 0x74, 0x26, 0xfe, 0x80, 0xd2, 0x92, 0x95, + 0x98, 0x49, 0x69, 0x49, 0x8e, 0x50, 0xa5, 0xb4, 0x24, 0x3f, 0xf7, 0xa2, 0xb4, 0xa4, 0x68, 0x0a, + 0x4b, 0x69, 0x49, 0xd5, 0xaa, 0x16, 0x4a, 0x4b, 0xf2, 0xcd, 0x0f, 0x94, 0x96, 0x90, 0xd8, 0x20, + 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, + 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xcc, 0xe0, 0x60, 0xd8, 0xf7, 0x02, 0x5c, 0x69, 0x49, + 0x6a, 0x3e, 0xa5, 0x25, 0x24, 0x50, 0x7a, 0x11, 0x29, 0x0d, 0x08, 0x15, 0x3a, 0xb1, 0xd2, 0x86, + 0x60, 0x69, 0x43, 0xb4, 0xf4, 0x20, 0x5c, 0x58, 0xc4, 0x0b, 0x8c, 0x80, 0x65, 0x10, 0xa1, 0xb4, + 0xa4, 0x74, 0x7e, 0x43, 0x69, 0x49, 0xd1, 0x5f, 0x94, 0x96, 0x90, 0xd8, 0xaf, 0xe0, 0x31, 0x28, + 0x2d, 0x61, 0xfa, 0x5d, 0xa5, 0x6b, 0x53, 0x5a, 0x22, 0xce, 0xb5, 0x29, 0x2d, 0x61, 0x41, 0x50, + 0x55, 0xab, 0x29, 0x2d, 0xa9, 0x7c, 0x8e, 0x32, 0x22, 0x75, 0x35, 0x4c, 0x14, 0x6e, 0xdf, 0x7b, + 0x66, 0x3f, 0x1b, 0xdf, 0x45, 0x98, 0xcd, 0xc6, 0x77, 0x89, 0x48, 0x67, 0xe3, 0xbb, 0x3c, 0x77, + 0x65, 0xe3, 0x5b, 0xd8, 0x83, 0xb0, 0xf1, 0x4d, 0x56, 0xf3, 0x13, 0x88, 0xb0, 0xf1, 0x5d, 0x3a, + 0xbf, 0x61, 0xe3, 0xbb, 0xe8, 0x2f, 0x36, 0xbe, 0x49, 0xec, 0x57, 0xf0, 0x18, 0x6c, 0x7c, 0x33, + 0xfd, 0xae, 0xd2, 0xb5, 0xd9, 0xf8, 0x16, 0xe7, 0xda, 0x6c, 0x7c, 0xb3, 0x20, 0xa8, 0xaa, 0xd5, + 0x6c, 0x7c, 0x57, 0xd9, 0x52, 0xee, 0x54, 0xca, 0xd7, 0xee, 0x8a, 0x6c, 0x48, 0xf1, 0x07, 0x5c, + 0xa3, 0x54, 0x1d, 0x0b, 0xb9, 0x46, 0x89, 0x41, 0xe2, 0x45, 0x41, 0x82, 0x9b, 0x93, 0x1e, 0x6f, + 0x4e, 0xb2, 0x07, 0xdc, 0x96, 0xa4, 0x5d, 0x10, 0x4a, 0x97, 0x0f, 0x05, 0xc3, 0x38, 0x06, 0xdb, + 0x97, 0x34, 0x35, 0x99, 0x1b, 0x93, 0x56, 0x61, 0x26, 0x37, 0x26, 0xe5, 0x08, 0x56, 0x6e, 0x4c, + 0xca, 0xcf, 0xbd, 0xb8, 0x31, 0xa9, 0x68, 0xb6, 0xca, 0x8d, 0x49, 0x55, 0x2b, 0x50, 0xb8, 0x31, + 0x29, 0xdf, 0xfc, 0xc0, 0x8d, 0x49, 0x24, 0x36, 0x88, 0x04, 0x07, 0x98, 0xe8, 0xa0, 0x12, 0x1e, + 0x78, 0xe2, 0x03, 0x4f, 0x80, 0xb0, 0x89, 0x10, 0x06, 0x21, 0x02, 0x21, 0x46, 0x70, 0x04, 0x29, + 0x33, 0xd8, 0xab, 0x9d, 0xfb, 0x09, 0xae, 0x72, 0x24, 0x35, 0x9f, 0xc2, 0x11, 0x12, 0x28, 0xbd, + 0x88, 0x94, 0x06, 0x84, 0x0a, 0x9d, 0x58, 0x69, 0x43, 0xb0, 0xb4, 0x21, 0x5a, 0x7a, 0x10, 0x2e, + 0x2c, 0xe2, 0x05, 0x46, 0xc0, 0x32, 0x88, 0xe0, 0x0b, 0x47, 0xce, 0x87, 0xc3, 0x40, 0x79, 0x21, + 0xb0, 0x72, 0x64, 0x63, 0x83, 0x23, 0x7a, 0x55, 0x77, 0x46, 0xa0, 0x23, 0xe5, 0xa5, 0x9e, 0x88, + 0x72, 0xc4, 0xcc, 0x42, 0x83, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0x2c, 0x34, 0x58, 0x68, 0xb0, + 0xd0, 0x60, 0xa1, 0xf1, 0xc4, 0x88, 0x4f, 0x85, 0x7a, 0x09, 0xa6, 0x53, 0xa1, 0x5e, 0xd2, 0x8b, + 0xa7, 0x42, 0x5d, 0xce, 0x63, 0x50, 0xa1, 0xce, 0xf4, 0xbb, 0x4a, 0xd7, 0xa6, 0x42, 0x5d, 0x9c, + 0x6b, 0x53, 0xa1, 0xce, 0x82, 0xa0, 0xaa, 0x56, 0x53, 0xa1, 0x5e, 0x65, 0x4b, 0xa9, 0x50, 0xcf, + 0xd7, 0xee, 0x8a, 0x88, 0x4f, 0x83, 0x61, 0x1c, 0x53, 0xa3, 0x5e, 0x1d, 0x0b, 0xa9, 0x51, 0x67, + 0x98, 0x78, 0x61, 0x98, 0xa0, 0x4a, 0xfd, 0xb1, 0x4a, 0xbd, 0x35, 0x79, 0x2b, 0xd4, 0xa9, 0xeb, + 0x16, 0x88, 0xd2, 0x13, 0xf9, 0x89, 0x07, 0xaa, 0x69, 0x4d, 0x56, 0x4b, 0x10, 0x9a, 0xf0, 0x0f, + 0xe7, 0x09, 0x1e, 0x5b, 0x4f, 0xf5, 0xfa, 0x2a, 0xcc, 0xa4, 0x7a, 0x3d, 0x47, 0xdc, 0x52, 0xbd, + 0x9e, 0x9f, 0x7b, 0x51, 0xbd, 0x5e, 0x34, 0x8f, 0xa5, 0x7a, 0xbd, 0x6a, 0xa5, 0x0b, 0xd5, 0xeb, + 0xf9, 0xe6, 0x07, 0xaa, 0xd7, 0x49, 0x6c, 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, 0xf0, + 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, 0x66, + 0x70, 0x82, 0x38, 0x7c, 0x99, 0xa5, 0x19, 0x80, 0xbe, 0xcf, 0x32, 0xda, 0x44, 0x49, 0x09, 0x69, + 0x94, 0xc6, 0x74, 0x0a, 0x9d, 0x56, 0x69, 0x43, 0xaf, 0xb4, 0xa1, 0x59, 0x7a, 0xd0, 0x2d, 0x2c, + 0xda, 0x05, 0x46, 0xbf, 0x32, 0x88, 0xe0, 0x4b, 0x4a, 0x54, 0x38, 0xbe, 0x52, 0x51, 0x3a, 0x25, + 0x00, 0xac, 0x5f, 0x6f, 0x00, 0xda, 0x6e, 0x85, 0xe3, 0xab, 0x09, 0x78, 0xe8, 0xa2, 0x79, 0xbe, + 0xe5, 0x96, 0x1f, 0x27, 0x66, 0x92, 0x44, 0x98, 0x6e, 0x7a, 0xec, 0x87, 0x56, 0xa0, 0x26, 0x59, + 0x28, 0x36, 0xf6, 0xd6, 0xc2, 0x71, 0x10, 0x00, 0x02, 0xfd, 0xd8, 0xfb, 0x86, 0xff, 0x10, 0x27, + 0xd1, 0x40, 0x45, 0x6a, 0xb0, 0x7f, 0x33, 0x7b, 0x04, 0x4e, 0x0c, 0x57, 0xd8, 0x52, 0x4e, 0x0c, + 0xe7, 0x6b, 0x77, 0x45, 0x46, 0x01, 0x1f, 0x4d, 0x16, 0x71, 0x78, 0xb8, 0x3a, 0x16, 0x72, 0x78, + 0x98, 0x11, 0xe3, 0xf5, 0x11, 0x83, 0x73, 0xc4, 0x8f, 0xe7, 0x88, 0x3b, 0xd9, 0x0b, 0x9a, 0xd6, + 0xe6, 0x9c, 0x28, 0xd6, 0x2d, 0x3a, 0x19, 0x57, 0xde, 0xb7, 0xda, 0xd4, 0x17, 0xce, 0xbd, 0x70, + 0xf0, 0xd5, 0x1f, 0x4c, 0x3d, 0x1e, 0x64, 0x9e, 0xf8, 0x3b, 0xb6, 0x73, 0x9a, 0x78, 0x15, 0x66, + 0x72, 0x9a, 0x38, 0x47, 0xd4, 0x72, 0x9a, 0x38, 0x3f, 0xf7, 0xe2, 0x34, 0x71, 0xd1, 0xc4, 0x96, + 0xd3, 0xc4, 0x55, 0xab, 0x65, 0x38, 0x4d, 0x9c, 0x6f, 0x7e, 0xe0, 0x34, 0x31, 0x89, 0x0d, 0x22, + 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, + 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0c, 0xc6, 0x69, 0xfd, 0x2c, 0xcd, 0x35, 0x28, 0x1d, + 0xa0, 0x65, 0x04, 0x8a, 0x73, 0xc5, 0x24, 0x54, 0x1a, 0x13, 0x2b, 0x74, 0x82, 0xa5, 0x0d, 0xd1, + 0xd2, 0x86, 0x70, 0xe9, 0x41, 0xbc, 0xb0, 0x08, 0x18, 0x18, 0x11, 0xcb, 0x20, 0x82, 0x3f, 0x57, + 0xec, 0x2b, 0xa5, 0x2e, 0x82, 0xa1, 0x87, 0xbd, 0xaf, 0x7e, 0x17, 0xd0, 0xf4, 0x96, 0x0a, 0x2f, + 0xa7, 0xc4, 0x98, 0x0b, 0xeb, 0x0b, 0x7e, 0xf3, 0x5c, 0x58, 0x2f, 0xe7, 0x31, 0xb2, 0xad, 0xd6, + 0x5c, 0x66, 0xcd, 0x24, 0xbc, 0x02, 0xd7, 0xe6, 0xc2, 0x7a, 0xba, 0x36, 0x5d, 0x5b, 0x8f, 0x6a, + 0x00, 0xd7, 0x6a, 0xee, 0xa9, 0xaf, 0xb2, 0xa5, 0x54, 0x9d, 0xe4, 0x6b, 0xb7, 0xfe, 0x33, 0xe4, + 0x8b, 0xf3, 0xa7, 0xd4, 0x9c, 0x54, 0xc7, 0x42, 0x6a, 0x4e, 0x18, 0x2f, 0x5e, 0x1b, 0x2f, 0xa8, + 0x38, 0xb9, 0xaf, 0x38, 0x39, 0xf6, 0xbe, 0xb5, 0xfc, 0xf0, 0xef, 0xfd, 0xec, 0xed, 0x50, 0x6f, + 0xa2, 0x5b, 0x64, 0x9a, 0x6a, 0x36, 0x22, 0x15, 0xab, 0xe8, 0xda, 0x3b, 0x0f, 0x14, 0xb4, 0xf4, + 0x64, 0xf9, 0x63, 0x50, 0x85, 0xb2, 0x0a, 0x33, 0xa9, 0x42, 0xc9, 0x11, 0xc0, 0x54, 0xa1, 0xe4, + 0xe7, 0x5e, 0x54, 0xa1, 0x14, 0x4d, 0x75, 0xa9, 0x42, 0xa9, 0x5a, 0x75, 0x43, 0x15, 0x4a, 0xbe, + 0xf9, 0x81, 0x2a, 0x14, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, + 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x19, 0x4c, + 0x15, 0x4a, 0xe9, 0x04, 0x8a, 0x2a, 0x14, 0x12, 0x2a, 0x8d, 0x89, 0x15, 0x3a, 0xc1, 0xd2, 0x86, + 0x68, 0x69, 0x43, 0xb8, 0xf4, 0x20, 0x5e, 0x58, 0x04, 0x0c, 0x8c, 0x88, 0x65, 0x10, 0xa1, 0x0a, + 0x45, 0x06, 0xc9, 0xa1, 0x0a, 0xa5, 0xf0, 0x2f, 0xaa, 0x50, 0x48, 0xef, 0x57, 0xf0, 0x18, 0x1c, + 0x55, 0x67, 0x12, 0x5e, 0xa5, 0x6b, 0x53, 0x85, 0x42, 0xd7, 0xa6, 0x6b, 0xeb, 0x51, 0x0d, 0xe0, + 0x5a, 0x4d, 0x15, 0x4a, 0x95, 0x2d, 0xa5, 0x0a, 0x25, 0x5f, 0xbb, 0xab, 0x31, 0x55, 0xbe, 0x74, + 0x14, 0x95, 0x82, 0x94, 0xea, 0x58, 0x48, 0x41, 0x0a, 0x43, 0xc7, 0x0a, 0x43, 0x07, 0xb5, 0x29, + 0x8f, 0xb4, 0x29, 0xdd, 0xec, 0x4d, 0x51, 0xa5, 0xa2, 0x77, 0xb8, 0x32, 0xae, 0xfc, 0xb0, 0x96, + 0xa9, 0xb5, 0x06, 0x2a, 0xf0, 0x6e, 0x80, 0xa4, 0x29, 0x8b, 0xb6, 0x53, 0x8f, 0xb2, 0x0a, 0x33, + 0xa9, 0x47, 0xc9, 0x11, 0xb5, 0xd4, 0xa3, 0xe4, 0xe7, 0x5e, 0xd4, 0xa3, 0x14, 0xcd, 0x74, 0xa9, + 0x47, 0xa9, 0x5a, 0x71, 0x43, 0x3d, 0x4a, 0xbe, 0xf9, 0x81, 0x7a, 0x14, 0x12, 0x1b, 0x44, 0x82, + 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, 0x10, + 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x19, 0xec, 0xd5, 0xce, 0xfd, 0x04, 0x57, 0x8b, 0x92, 0x9a, + 0x4f, 0x1d, 0x0a, 0x09, 0x94, 0x5e, 0x44, 0x4a, 0x03, 0x42, 0x85, 0x4e, 0xac, 0xb4, 0x21, 0x58, + 0xda, 0x10, 0x2d, 0x3d, 0x08, 0x17, 0x16, 0xf1, 0x02, 0x23, 0x60, 0x19, 0x44, 0xf0, 0x75, 0x28, + 0xe7, 0xc3, 0x61, 0xa0, 0xbc, 0x10, 0x58, 0x83, 0xb2, 0xb1, 0xc1, 0xa1, 0xbf, 0xaa, 0x3b, 0xe3, + 0x74, 0x87, 0x20, 0xc6, 0xd9, 0xf2, 0x52, 0x4f, 0xbc, 0x7b, 0x04, 0x16, 0x1a, 0x2c, 0x34, 0x58, + 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, 0x83, 0xbc, 0x86, 0x85, 0x86, 0x16, 0x85, 0xc6, 0xd8, + 0x0f, 0xb1, 0xb5, 0xee, 0x3b, 0x80, 0xa6, 0x77, 0xbd, 0xf0, 0x52, 0x51, 0xea, 0x5e, 0xfc, 0x8b, + 0xa7, 0xd4, 0x5d, 0xce, 0x63, 0xcc, 0xf5, 0xb0, 0xeb, 0xd4, 0xc3, 0x32, 0xfd, 0xae, 0xc0, 0xb5, + 0x29, 0x75, 0x17, 0xe7, 0xda, 0x8d, 0xcd, 0xdd, 0xc6, 0xee, 0xf6, 0xce, 0xe6, 0xee, 0x16, 0x7d, + 0x9c, 0x05, 0x41, 0xb5, 0xac, 0xa6, 0xe6, 0xbd, 0xf2, 0x39, 0x6a, 0xaa, 0x53, 0x42, 0x6f, 0x7f, + 0x67, 0x8f, 0xc0, 0xf6, 0x77, 0x11, 0x66, 0xb3, 0xfd, 0x5d, 0x22, 0xd8, 0xd9, 0xfe, 0x2e, 0xcf, + 0x5d, 0xd9, 0xfe, 0x16, 0xf6, 0x20, 0x6c, 0x7f, 0x93, 0xdb, 0xfc, 0x04, 0x22, 0x6c, 0x7f, 0x97, + 0xce, 0x6f, 0xd8, 0xfe, 0x2e, 0xfa, 0x8b, 0xed, 0x6f, 0x12, 0xfb, 0x15, 0x3c, 0x06, 0xdb, 0xdf, + 0x4c, 0xbf, 0xab, 0x74, 0x6d, 0xb6, 0xbf, 0xc5, 0xb9, 0x36, 0xdb, 0xdf, 0x2c, 0x08, 0xaa, 0x6a, + 0x35, 0xdb, 0xdf, 0x55, 0xb6, 0x94, 0x2b, 0x5f, 0xf3, 0xb5, 0xbb, 0x02, 0x7b, 0x1b, 0x17, 0x56, + 0xbc, 0x71, 0xcf, 0x6b, 0x75, 0x2c, 0xe4, 0x9e, 0x57, 0xc6, 0x8b, 0xd7, 0xc6, 0x0b, 0x2e, 0x77, + 0x7d, 0xb0, 0xdc, 0xd5, 0x0f, 0x8f, 0xbd, 0x6f, 0x2d, 0x3f, 0xfc, 0xbb, 0x39, 0x7d, 0x39, 0xdc, + 0xe8, 0xaa, 0x5b, 0x60, 0x32, 0x22, 0x15, 0xfb, 0x83, 0xb1, 0x17, 0xd4, 0x70, 0xae, 0x99, 0xcd, + 0xfa, 0xf0, 0xdf, 0xb1, 0x9d, 0x1b, 0x5d, 0x57, 0x61, 0x26, 0x37, 0xba, 0xe6, 0x88, 0x5a, 0x6e, + 0x74, 0xcd, 0xcf, 0xbd, 0xb8, 0xd1, 0xb5, 0x68, 0x4e, 0xcb, 0x8d, 0xae, 0x55, 0x2b, 0x63, 0xb8, + 0xd1, 0x35, 0xdf, 0xfc, 0xc0, 0x8d, 0xae, 0x24, 0x36, 0x88, 0x04, 0x07, 0x98, 0xe8, 0xa0, 0x12, + 0x1e, 0x78, 0xe2, 0x03, 0x4f, 0x80, 0xb0, 0x89, 0x10, 0x06, 0x21, 0x02, 0x21, 0x46, 0x70, 0x04, + 0x29, 0x33, 0x18, 0xa7, 0xf5, 0xb3, 0x34, 0xd7, 0x20, 0xdd, 0xce, 0xf5, 0x3d, 0x02, 0x45, 0xc5, + 0x09, 0x09, 0x95, 0xc6, 0xc4, 0x0a, 0x9d, 0x60, 0x69, 0x43, 0xb4, 0xb4, 0x21, 0x5c, 0x7a, 0x10, + 0x2f, 0x2c, 0x02, 0x06, 0x46, 0xc4, 0x32, 0x88, 0xe0, 0x2b, 0x4e, 0x7c, 0xa5, 0xd4, 0x45, 0x30, + 0xf4, 0xb0, 0x65, 0x27, 0xbb, 0x80, 0xa6, 0xb7, 0x54, 0x78, 0x39, 0x25, 0xc6, 0xd4, 0x9d, 0x14, + 0xfc, 0xe6, 0xa9, 0x3b, 0x91, 0xf3, 0x18, 0xd9, 0x70, 0x3a, 0x67, 0xd2, 0x99, 0x84, 0x57, 0xe0, + 0xda, 0xd4, 0x9d, 0xd0, 0xb5, 0xe9, 0xda, 0x7a, 0x54, 0x03, 0xb8, 0x56, 0x53, 0x6e, 0x52, 0x65, + 0x4b, 0x29, 0x37, 0xc9, 0xd7, 0x6e, 0xfd, 0xc7, 0xc7, 0x17, 0xe7, 0x4f, 0x29, 0x37, 0xa9, 0x8e, + 0x85, 0x94, 0x9b, 0x30, 0x5e, 0xbc, 0x36, 0x5e, 0x50, 0x6e, 0x72, 0x5f, 0x6e, 0xd2, 0x9d, 0xbd, + 0x9f, 0xfd, 0xec, 0xf5, 0x50, 0x70, 0xa2, 0x5b, 0x68, 0x02, 0x99, 0xca, 0x84, 0x9a, 0xc6, 0xa4, + 0xac, 0x64, 0xc5, 0x86, 0x52, 0x56, 0x92, 0xab, 0xc9, 0x94, 0x95, 0x14, 0x64, 0x38, 0x65, 0x25, + 0xe4, 0x03, 0x28, 0xe5, 0x0a, 0x8c, 0xac, 0x24, 0x41, 0x9a, 0x26, 0xc8, 0xd2, 0xc3, 0xd4, 0x6a, + 0x2c, 0x51, 0xc9, 0x3a, 0x45, 0x25, 0x95, 0xa7, 0x37, 0xc0, 0x34, 0x07, 0x95, 0xee, 0xc0, 0xd3, + 0x1e, 0x78, 0xfa, 0x83, 0x4d, 0x83, 0x30, 0xe8, 0x10, 0x08, 0x2d, 0xca, 0xa0, 0x00, 0x37, 0xc3, + 0x78, 0x37, 0xbb, 0x38, 0x50, 0x61, 0xe2, 0x27, 0x37, 0x91, 0xba, 0x40, 0x8a, 0xda, 0xf3, 0x9e, + 0x0a, 0xd0, 0x1a, 0x4e, 0xc3, 0x9e, 0xbd, 0xea, 0x7d, 0x2f, 0x56, 0xb8, 0x5a, 0x1e, 0xbb, 0x67, + 0xf7, 0xdc, 0xde, 0xe9, 0xbe, 0xd3, 0xfa, 0xe8, 0x3a, 0x7f, 0x76, 0x2c, 0xb4, 0xb4, 0x33, 0x9d, + 0xa8, 0x89, 0x21, 0x47, 0x46, 0x41, 0x55, 0x19, 0x73, 0xe4, 0x74, 0x4f, 0x4e, 0x1d, 0xab, 0xeb, + 0x1e, 0x98, 0x1d, 0x73, 0xdf, 0x6e, 0xd9, 0xce, 0x9f, 0x33, 0x18, 0xf5, 0x10, 0x71, 0xa4, 0x03, + 0x9e, 0xb0, 0x71, 0xf5, 0x14, 0x7c, 0xdd, 0xff, 0x37, 0x83, 0xc3, 0xa4, 0x84, 0xd6, 0x2a, 0xa1, + 0x65, 0xb6, 0x8e, 0x4e, 0xba, 0xb6, 0xf3, 0xfe, 0xd8, 0xe0, 0x2c, 0x63, 0xa1, 0x5f, 0x67, 0xbf, + 0xd0, 0x83, 0xe9, 0xb9, 0x15, 0x4b, 0x06, 0x84, 0x10, 0x83, 0x3e, 0x11, 0x84, 0x56, 0x2b, 0xbb, + 0x5d, 0xcb, 0x3c, 0x78, 0xcf, 0x7a, 0x87, 0xa8, 0xca, 0x1f, 0x5d, 0x8e, 0xe5, 0x36, 0xad, 0x43, + 0xf3, 0xb4, 0xe5, 0xb8, 0xc7, 0x96, 0xd3, 0xb5, 0x0f, 0x58, 0xf1, 0x10, 0x5c, 0xab, 0x02, 0xd7, + 0x69, 0xfb, 0xe0, 0xa4, 0xdd, 0x73, 0xba, 0xa6, 0xdd, 0xb6, 0x9a, 0x6e, 0xab, 0xd7, 0x21, 0xb8, + 0x08, 0xae, 0x55, 0x81, 0xab, 0x65, 0xb7, 0x3f, 0xb8, 0x4d, 0xab, 0x65, 0xb2, 0x49, 0x43, 0x54, + 0xe5, 0x80, 0x2a, 0xf7, 0xa3, 0xd9, 0xb5, 0x4d, 0xc7, 0x3e, 0x69, 0x13, 0x5f, 0xc4, 0xd7, 0xaa, + 0xf0, 0x65, 0x77, 0x3e, 0x6e, 0xbb, 0x6d, 0xcb, 0x3e, 0x7a, 0xbf, 0x7f, 0xd2, 0x75, 0xcd, 0x66, + 0xb3, 0x6b, 0xf5, 0x7a, 0x04, 0x18, 0x01, 0xb6, 0x2a, 0x80, 0x99, 0xcd, 0x63, 0xbb, 0xed, 0x1e, + 0x75, 0x4f, 0x4e, 0xc9, 0xb6, 0x08, 0xab, 0x15, 0xc2, 0xea, 0x0f, 0xb7, 0x67, 0x37, 0x09, 0x29, + 0x42, 0x6a, 0x55, 0x90, 0x3a, 0x36, 0x3f, 0xa5, 0x74, 0x6b, 0xdf, 0x6c, 0x37, 0xff, 0x63, 0x37, + 0x9d, 0xf7, 0x44, 0x17, 0xd1, 0xb5, 0x42, 0xa2, 0xd5, 0x20, 0xd1, 0x22, 0xc0, 0xf2, 0x65, 0xf2, + 0x76, 0xdb, 0xb1, 0xba, 0x87, 0xe6, 0x81, 0x45, 0x84, 0x11, 0x61, 0xb9, 0xf4, 0x22, 0x5a, 0x27, + 0x04, 0x15, 0x41, 0xb5, 0x3a, 0x50, 0x65, 0x64, 0xcb, 0xcd, 0x7a, 0xf3, 0x0e, 0x01, 0x46, 0x80, + 0xad, 0x0c, 0x60, 0xd6, 0x27, 0xc7, 0x6a, 0x37, 0xad, 0x26, 0x3b, 0x11, 0xc4, 0x57, 0x6e, 0xc4, + 0x9e, 0xbc, 0x8b, 0x08, 0xcb, 0x0d, 0x61, 0xa7, 0x8e, 0xdd, 0xb2, 0xff, 0x6b, 0x35, 0xd9, 0x98, + 0x20, 0xba, 0x56, 0x8f, 0x2e, 0xb3, 0xf9, 0x87, 0xdb, 0x32, 0xdb, 0xec, 0xa6, 0x12, 0x56, 0xab, + 0x84, 0xd5, 0x84, 0x6b, 0x65, 0x1d, 0x55, 0x8e, 0x45, 0x10, 0x5d, 0xab, 0x6f, 0x45, 0x74, 0xba, + 0x27, 0x8e, 0x75, 0xe0, 0xd8, 0x27, 0xed, 0x74, 0x18, 0x95, 0xf8, 0x22, 0xbe, 0x56, 0x95, 0x14, + 0x3f, 0x9a, 0x76, 0xcb, 0xdc, 0x6f, 0x59, 0xe4, 0x5c, 0x84, 0x57, 0x4e, 0xe1, 0xcb, 0x74, 0x9c, + 0xae, 0xbd, 0x7f, 0xea, 0x58, 0x2c, 0x16, 0x09, 0xad, 0xd5, 0x15, 0x8b, 0xed, 0xae, 0xd5, 0xb3, + 0xba, 0x1f, 0x59, 0x2e, 0x12, 0x5f, 0x79, 0xe0, 0xab, 0x6b, 0xf5, 0xec, 0xe6, 0xa9, 0xd9, 0x22, + 0xba, 0x88, 0xae, 0x1c, 0xaa, 0x46, 0xf3, 0x93, 0x9b, 0xc6, 0x2f, 0x92, 0x2f, 0x62, 0x2c, 0x47, + 0xf2, 0x05, 0xdd, 0xec, 0xe2, 0xc2, 0x03, 0xba, 0xae, 0x4e, 0x2e, 0xab, 0xb3, 0x1a, 0x94, 0x20, + 0x2a, 0xbf, 0x22, 0x82, 0x57, 0x7d, 0x12, 0x44, 0x22, 0x48, 0x03, 0xe8, 0x31, 0x06, 0xd1, 0x23, + 0x07, 0x3d, 0xc8, 0x2a, 0x4e, 0xe2, 0xa8, 0x6c, 0x1c, 0x69, 0xa2, 0xd6, 0x24, 0x90, 0xca, 0x06, + 0x12, 0xf4, 0x2c, 0x24, 0xe1, 0x53, 0x3e, 0x7c, 0x40, 0xd5, 0x97, 0x84, 0x4e, 0xd9, 0xd0, 0xd1, + 0x41, 0x65, 0x49, 0x14, 0x09, 0x20, 0x42, 0x0d, 0x12, 0x21, 0x02, 0x69, 0x35, 0x8c, 0x5a, 0x83, + 0xe9, 0x7d, 0x22, 0x49, 0x44, 0x8d, 0x8f, 0xa9, 0x8e, 0x24, 0x78, 0xca, 0x06, 0x8f, 0x26, 0x2a, + 0x48, 0x02, 0xa9, 0x6c, 0x20, 0xe9, 0xa1, 0x76, 0x24, 0x8e, 0x44, 0x10, 0x6c, 0xf2, 0x22, 0x22, + 0xe9, 0xd5, 0x48, 0xd2, 0x41, 0xbd, 0x48, 0x14, 0x95, 0x8d, 0x22, 0x68, 0x95, 0x22, 0xe1, 0x53, + 0x36, 0x7c, 0x74, 0x50, 0x23, 0x12, 0x45, 0x22, 0x4a, 0x7c, 0x78, 0xd5, 0x21, 0x71, 0x54, 0x7a, + 0x32, 0xd3, 0x41, 0x5d, 0x48, 0x18, 0x89, 0x08, 0x47, 0xc8, 0x2a, 0x42, 0x42, 0xa8, 0xf4, 0xe2, + 0x4c, 0x0b, 0xb5, 0x20, 0x71, 0x54, 0x36, 0x8e, 0x74, 0x50, 0x05, 0x12, 0x45, 0xa5, 0x57, 0x69, + 0xda, 0xa8, 0xff, 0x88, 0x25, 0x11, 0xe4, 0x88, 0xcd, 0x22, 0x42, 0xe7, 0x09, 0xd0, 0xe9, 0xf0, + 0x86, 0x4b, 0xa2, 0xaa, 0x28, 0x74, 0x4d, 0x4f, 0xd6, 0x66, 0xd7, 0xf2, 0x72, 0xe5, 0x1e, 0x91, + 0xb5, 0x3a, 0x64, 0x39, 0xe6, 0xd1, 0x76, 0x83, 0x80, 0x22, 0xa0, 0x56, 0x18, 0xaa, 0xb6, 0x19, + 0xaa, 0x88, 0xac, 0x5c, 0x42, 0x15, 0xe1, 0x44, 0x38, 0xad, 0x0a, 0x4e, 0x9d, 0xae, 0x75, 0x68, + 0x7f, 0xe2, 0x0a, 0x63, 0xa2, 0x2a, 0x07, 0x54, 0x1d, 0xb6, 0xcc, 0xa3, 0x1e, 0xb7, 0x05, 0x15, + 0xfb, 0xc5, 0x6d, 0x41, 0xf4, 0xdb, 0xaa, 0x55, 0xd6, 0x44, 0x10, 0x2b, 0x68, 0x02, 0x87, 0x95, + 0x32, 0x11, 0x54, 0xcd, 0xd0, 0x43, 0xd8, 0x10, 0x36, 0x55, 0xaa, 0x7c, 0x89, 0x1e, 0x56, 0xb8, + 0xd5, 0xa9, 0x6c, 0x71, 0x2a, 0x5a, 0x8c, 0xf7, 0x2a, 0xdf, 0x4a, 0xd9, 0x16, 0x0a, 0x8f, 0xbe, + 0x86, 0x19, 0x86, 0xc3, 0xc4, 0x4b, 0xfc, 0x61, 0x68, 0xec, 0x01, 0xc4, 0x5d, 0x23, 0xee, 0x7f, + 0x51, 0x57, 0xde, 0xc8, 0x4b, 0xbe, 0x4c, 0x22, 0x6d, 0x7d, 0x38, 0x52, 0x61, 0x7f, 0x18, 0x5e, + 0xf8, 0x97, 0xb5, 0x50, 0x25, 0x5f, 0x87, 0xd1, 0xdf, 0x35, 0x3f, 0x8c, 0x13, 0x2f, 0xec, 0xab, + 0xfa, 0xe3, 0x1f, 0xc4, 0x0b, 0x3f, 0xa9, 0x8f, 0xa2, 0x61, 0x32, 0xec, 0x0f, 0x83, 0x38, 0xfb, + 0xae, 0xee, 0xc7, 0x7e, 0x5c, 0x0f, 0xd4, 0xb5, 0x0a, 0x66, 0xbf, 0xd4, 0x03, 0x3f, 0xfc, 0xbb, + 0x16, 0x27, 0x5e, 0xa2, 0x6a, 0x03, 0x2f, 0xf1, 0xce, 0xbd, 0x58, 0xd5, 0x83, 0x78, 0x54, 0x4f, + 0x82, 0xeb, 0x78, 0xf2, 0x8f, 0xba, 0xfa, 0x96, 0xa8, 0x70, 0xa0, 0x06, 0x35, 0x3f, 0xae, 0x45, + 0xca, 0xeb, 0x7f, 0xf1, 0xce, 0xfd, 0xc0, 0x4f, 0x6e, 0xea, 0xa1, 0xf2, 0x2f, 0xbf, 0x9c, 0x0f, + 0xa3, 0x38, 0xfb, 0xae, 0x7e, 0x67, 0x4c, 0x66, 0x44, 0x3c, 0x3e, 0x9f, 0xfe, 0xaf, 0xd2, 0x5f, + 0xeb, 0xd3, 0xbf, 0x49, 0x76, 0x9a, 0x90, 0xeb, 0x72, 0x82, 0xdd, 0xcd, 0x98, 0xe0, 0x47, 0x5d, + 0x78, 0xe3, 0x20, 0xa9, 0x5d, 0xa9, 0x24, 0xf2, 0xfb, 0xe2, 0x3d, 0x2e, 0x63, 0x34, 0x8b, 0xa6, + 0x0b, 0x0f, 0x6b, 0x1f, 0xfc, 0x70, 0x60, 0xec, 0xad, 0x6d, 0x08, 0x37, 0xf3, 0x60, 0x1a, 0xba, + 0x8c, 0xbd, 0xb5, 0x75, 0xe1, 0x86, 0x76, 0x22, 0x75, 0xe1, 0x7f, 0xc3, 0x48, 0x11, 0x73, 0xd0, + 0x0e, 0xfb, 0xb5, 0x49, 0x30, 0x07, 0x98, 0x2d, 0x34, 0x7a, 0xc3, 0x71, 0xd4, 0x57, 0x10, 0xaf, + 0x37, 0x75, 0x2f, 0x75, 0xf3, 0x75, 0x18, 0x4d, 0x3c, 0xcc, 0x18, 0xa5, 0xc8, 0xc0, 0x28, 0x32, + 0x8d, 0xf7, 0x5e, 0x6c, 0x46, 0x97, 0xe3, 0x2b, 0x15, 0x26, 0xc6, 0xde, 0x5a, 0x12, 0x8d, 0x15, + 0x88, 0xe1, 0xf7, 0xac, 0xce, 0x80, 0x4d, 0x6a, 0xae, 0x35, 0x35, 0x6f, 0xfa, 0x11, 0x08, 0x27, + 0x9f, 0x32, 0x56, 0x98, 0xe0, 0x35, 0xcf, 0x0f, 0xa9, 0xd9, 0x20, 0xfe, 0x8f, 0x41, 0x68, 0xe0, + 0x88, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, + 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0c, 0x06, 0x69, 0xfb, 0x2c, 0x4d, + 0x34, 0x10, 0xbd, 0x9f, 0x65, 0xd4, 0x69, 0x1d, 0xcc, 0x6c, 0x34, 0x0a, 0x85, 0x4c, 0xa5, 0x34, + 0xa0, 0x54, 0xe8, 0xd4, 0x4a, 0x1b, 0x8a, 0xa5, 0x0d, 0xd5, 0xd2, 0x83, 0x72, 0x61, 0x51, 0x2f, + 0x30, 0x0a, 0x96, 0x41, 0xc4, 0xb9, 0x19, 0x29, 0xec, 0x88, 0x3f, 0xf6, 0xc3, 0xe4, 0xdd, 0x26, + 0x62, 0xc0, 0x9f, 0xf1, 0x9b, 0x1d, 0x40, 0xd3, 0xbb, 0x5e, 0x78, 0xa9, 0x60, 0xd7, 0x27, 0xe0, + 0x0a, 0xb2, 0x8c, 0x63, 0x3f, 0x84, 0x65, 0x08, 0xe0, 0xc4, 0x7e, 0xe1, 0x31, 0xa6, 0x4b, 0x44, + 0x34, 0x78, 0x8e, 0xc3, 0xc8, 0xeb, 0x27, 0xfe, 0x30, 0x6c, 0xfa, 0x97, 0x7e, 0x12, 0x4f, 0x1e, + 0x88, 0x2a, 0xd1, 0x32, 0x5c, 0xdb, 0xfb, 0x46, 0xd7, 0x16, 0xe6, 0xda, 0x8d, 0xcd, 0xdd, 0xc6, + 0xee, 0xf6, 0xce, 0xe6, 0xee, 0x16, 0x7d, 0x9c, 0x05, 0x41, 0xb5, 0xac, 0xc6, 0xd2, 0x18, 0xdf, + 0xf2, 0x2c, 0xa1, 0x8a, 0x99, 0x14, 0x6d, 0x0e, 0x3a, 0xb3, 0x5b, 0xff, 0x79, 0xe8, 0x85, 0xd9, + 0x53, 0x84, 0x09, 0x69, 0x1c, 0x27, 0xe5, 0x8c, 0x56, 0x85, 0xc2, 0x46, 0x15, 0xc3, 0x05, 0xc2, + 0xfc, 0x6f, 0x9c, 0x44, 0xe3, 0x7e, 0x12, 0xce, 0x5a, 0x91, 0xed, 0xf4, 0x3d, 0xdb, 0xb3, 0x27, + 0x74, 0x3b, 0xb3, 0x97, 0xeb, 0xda, 0xb1, 0x1f, 0xbb, 0xad, 0xc9, 0x5b, 0x75, 0x5b, 0xf1, 0xc8, + 0x75, 0x82, 0x6b, 0xd7, 0x9a, 0xbd, 0x3c, 0x3b, 0xee, 0xde, 0x7b, 0x75, 0x6e, 0x7b, 0xf6, 0xc2, + 0xdc, 0xec, 0x7f, 0xd2, 0x9b, 0xbe, 0x1e, 0xd7, 0x51, 0xcd, 0xf4, 0xed, 0x1c, 0xa7, 0x2f, 0x87, + 0x3a, 0x13, 0xdd, 0xe2, 0x92, 0x91, 0x20, 0xf4, 0xe2, 0xef, 0xa4, 0x25, 0x13, 0x6b, 0x31, 0xd4, + 0x24, 0xeb, 0x54, 0x93, 0xac, 0xc6, 0x50, 0xaa, 0x49, 0x72, 0x35, 0x99, 0x6a, 0x92, 0x82, 0x0c, + 0xa7, 0x9a, 0x84, 0x6c, 0x00, 0xa5, 0x52, 0x81, 0x39, 0xa1, 0xcf, 0x22, 0x6e, 0xa0, 0xbc, 0x8b, + 0x48, 0x5d, 0x20, 0x44, 0xdc, 0xb9, 0x3a, 0x03, 0xe0, 0x0c, 0xde, 0xe8, 0xcc, 0x8a, 0xbf, 0xb7, + 0x6f, 0xd3, 0x46, 0x4a, 0x7d, 0xca, 0xc0, 0x58, 0x07, 0x68, 0x57, 0x07, 0x8c, 0x27, 0xa5, 0x7d, + 0x9c, 0x44, 0x9e, 0x1f, 0xaa, 0x41, 0x2d, 0x88, 0x47, 0x38, 0x45, 0xc1, 0xa2, 0xe9, 0xd4, 0x9b, + 0xb3, 0x42, 0x60, 0x85, 0xc0, 0x0a, 0x81, 0x15, 0x02, 0x2b, 0x04, 0x56, 0x08, 0xb9, 0x7c, 0xe4, + 0xd4, 0x9b, 0xe7, 0x9b, 0x1f, 0xa8, 0x37, 0x27, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, - 0x48, 0x85, 0xc1, 0xa1, 0x79, 0x16, 0x65, 0xb8, 0x93, 0xc3, 0x63, 0xf3, 0x39, 0x2e, 0x4c, 0x02, - 0xa5, 0x17, 0x91, 0xd2, 0x80, 0x50, 0xa1, 0x13, 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, 0x4b, 0x0f, - 0xc2, 0x85, 0x45, 0xbc, 0xc0, 0x08, 0x58, 0x01, 0x11, 0xfc, 0x71, 0xe1, 0xb3, 0x7e, 0xbf, 0xa7, - 0x42, 0xe8, 0x51, 0xe1, 0x35, 0x4e, 0xee, 0x2d, 0xbb, 0x33, 0x1a, 0x18, 0xfb, 0xc9, 0x33, 0xbd, - 0x10, 0x61, 0x6b, 0x99, 0x05, 0x06, 0x0b, 0x0c, 0x16, 0x18, 0x2c, 0x30, 0x58, 0x60, 0xb0, 0xc0, - 0x60, 0x81, 0xc1, 0x02, 0xe3, 0x17, 0x23, 0xfe, 0x30, 0x8a, 0xb3, 0xb7, 0xeb, 0xc0, 0xf5, 0x05, - 0xe2, 0x6d, 0x2c, 0x5e, 0x18, 0x5f, 0x8c, 0x56, 0xff, 0x13, 0x64, 0x60, 0xc4, 0xbd, 0xa4, 0xdc, - 0x38, 0x8c, 0x62, 0xf8, 0x5b, 0xd6, 0x35, 0xb9, 0x5d, 0xbd, 0xb8, 0x55, 0x1d, 0xfd, 0x39, 0x34, - 0xba, 0x4b, 0xfd, 0xe6, 0x77, 0x60, 0xd7, 0x0e, 0xbf, 0xd1, 0xb5, 0x85, 0xb9, 0x76, 0x7d, 0x7d, - 0xbb, 0xbe, 0xbd, 0xb9, 0xb5, 0xbe, 0xbd, 0x41, 0x1f, 0x67, 0x41, 0xb0, 0x5c, 0x56, 0x9f, 0xb2, - 0xed, 0xbd, 0xc4, 0x96, 0x52, 0xb0, 0xbe, 0x58, 0xbb, 0x97, 0x43, 0x84, 0x9a, 0xef, 0x3b, 0x50, - 0xab, 0xbe, 0x3c, 0x16, 0x52, 0xab, 0xce, 0x30, 0xf1, 0xcc, 0x30, 0x41, 0x99, 0xfa, 0x3d, 0x99, - 0x7a, 0x23, 0x5f, 0x15, 0x2a, 0xd4, 0x75, 0x0b, 0x44, 0x77, 0xd4, 0xde, 0xe6, 0x55, 0x98, 0x44, - 0x18, 0xe1, 0xe8, 0x11, 0xad, 0xfa, 0x1d, 0xeb, 0xa9, 0x5a, 0x9f, 0x87, 0x99, 0x54, 0xad, 0x2f, - 0x10, 0xb7, 0x54, 0xad, 0x2f, 0xce, 0xbd, 0xa8, 0x5a, 0x2f, 0x9b, 0xc7, 0x52, 0xb5, 0xbe, 0x6c, - 0xa5, 0x0b, 0x55, 0xeb, 0x8b, 0xcd, 0x0f, 0x54, 0xad, 0x93, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, - 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, - 0xc1, 0x11, 0xa4, 0xc2, 0x60, 0x8a, 0x4a, 0x2a, 0x23, 0x4e, 0x14, 0x95, 0x90, 0x48, 0x69, 0x4c, - 0xa8, 0xd0, 0x89, 0x95, 0x36, 0x04, 0x4b, 0x1b, 0xa2, 0xa5, 0x07, 0xe1, 0xc2, 0x22, 0x5e, 0x60, - 0x04, 0xac, 0x80, 0x08, 0x45, 0x25, 0x95, 0xf3, 0x1b, 0x8a, 0x4a, 0xca, 0x7e, 0x51, 0x54, 0x42, - 0x62, 0x3f, 0x87, 0xc7, 0xa0, 0xa8, 0x84, 0xe9, 0x77, 0x9e, 0xae, 0x4d, 0x51, 0x89, 0x38, 0xd7, - 0xa6, 0xa8, 0x84, 0x05, 0xc1, 0xb2, 0x5a, 0x4d, 0x51, 0xc9, 0x32, 0x5b, 0x4a, 0x51, 0xc9, 0x62, - 0xed, 0x5e, 0xa2, 0x69, 0xf1, 0xdb, 0xd9, 0x53, 0xca, 0x4b, 0x96, 0xc7, 0x42, 0xca, 0x4b, 0x18, - 0x30, 0x5e, 0x1c, 0x30, 0x28, 0x34, 0x79, 0x4c, 0x68, 0x72, 0x52, 0x2c, 0x0f, 0x15, 0x27, 0xba, - 0xc5, 0xa6, 0xb1, 0x66, 0x23, 0xea, 0x82, 0x89, 0x4c, 0xa2, 0x2e, 0x75, 0x25, 0x73, 0x31, 0x93, - 0xba, 0x92, 0x05, 0x42, 0x95, 0xba, 0x92, 0xc5, 0xb9, 0x17, 0x75, 0x25, 0x65, 0x13, 0x58, 0xea, - 0x4a, 0x96, 0xad, 0x66, 0xa1, 0xae, 0x64, 0xb1, 0xf9, 0x81, 0xba, 0x12, 0x12, 0x1b, 0x44, 0x82, + 0x48, 0x99, 0xc1, 0xfd, 0xe1, 0x78, 0x0a, 0x5c, 0x50, 0xb9, 0x79, 0x6a, 0x3e, 0xd5, 0xe6, 0x24, + 0x50, 0x7a, 0x11, 0x29, 0x0d, 0x08, 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, 0x69, 0x43, 0xb4, 0xf4, + 0x20, 0x5c, 0x58, 0xc4, 0x0b, 0x8c, 0x80, 0x65, 0x10, 0xd1, 0x43, 0x6d, 0xbe, 0xb1, 0x0d, 0xac, + 0x36, 0xdf, 0xa6, 0xda, 0xbc, 0xe0, 0x2f, 0xaa, 0xcd, 0x49, 0xec, 0x57, 0xf0, 0x18, 0x54, 0x9b, + 0x33, 0xfd, 0xae, 0xd2, 0xb5, 0xa9, 0x36, 0x17, 0xe7, 0xda, 0xdb, 0x5b, 0x5b, 0xef, 0x28, 0x34, + 0x67, 0x2d, 0x50, 0x31, 0xab, 0x29, 0x34, 0xaf, 0x7c, 0x7a, 0xc2, 0xd0, 0x3e, 0x2d, 0xad, 0x0a, + 0x01, 0xb4, 0x50, 0x9a, 0xe4, 0x4e, 0xf6, 0xbb, 0xcb, 0xc4, 0x39, 0xfb, 0xdd, 0xe5, 0xb9, 0x2b, + 0xfb, 0xdd, 0xc2, 0x1e, 0x84, 0xfd, 0x6e, 0x32, 0x9a, 0x9f, 0x40, 0x04, 0xbf, 0xdf, 0xed, 0x0f, + 0x54, 0x98, 0xf8, 0xc9, 0x0d, 0x86, 0x9e, 0x6b, 0x19, 0xc9, 0xd9, 0x00, 0xac, 0xaa, 0x0d, 0x7b, + 0xf6, 0xea, 0xf7, 0xbd, 0x18, 0x38, 0x6f, 0x65, 0x77, 0x6b, 0xf7, 0xec, 0x9e, 0xdb, 0x3b, 0xdd, + 0x77, 0x5a, 0x1f, 0x5d, 0xe7, 0xcf, 0x8e, 0x85, 0x9a, 0xbe, 0xa6, 0xbd, 0x9a, 0x18, 0xf6, 0x30, + 0x62, 0x0d, 0xfa, 0x40, 0xe2, 0x01, 0xa2, 0xba, 0x27, 0xa7, 0x8e, 0xd5, 0x75, 0x0f, 0xcc, 0xce, + 0xfc, 0xbe, 0xf6, 0x14, 0x5e, 0x3d, 0x64, 0x7c, 0xe9, 0x84, 0x33, 0x3d, 0xf0, 0xf6, 0x14, 0xdc, + 0xdd, 0xff, 0x37, 0x03, 0xfe, 0x69, 0x6f, 0x7f, 0x23, 0xe4, 0x00, 0x20, 0x67, 0xb6, 0x8e, 0x4e, + 0xba, 0xb6, 0xf3, 0xfe, 0x58, 0x03, 0xc4, 0x41, 0x3f, 0xc1, 0x19, 0x0f, 0x30, 0xe9, 0xe1, 0x4c, + 0x26, 0x84, 0x16, 0x93, 0x06, 0x91, 0x55, 0x05, 0x64, 0xd9, 0x3d, 0xb7, 0x6b, 0x99, 0x07, 0xef, + 0x59, 0x77, 0x11, 0x6d, 0xe5, 0xa1, 0xce, 0xb1, 0xdc, 0xa6, 0x75, 0x68, 0x9e, 0xb6, 0x1c, 0xf7, + 0xd8, 0x72, 0xba, 0xf6, 0x01, 0x2b, 0x2f, 0x82, 0x2e, 0x6f, 0xd0, 0x9d, 0xb6, 0x0f, 0x4e, 0xda, + 0x3d, 0xa7, 0x6b, 0xda, 0x6d, 0xab, 0xe9, 0xb6, 0x7a, 0x1d, 0x82, 0x8e, 0xa0, 0xcb, 0x1b, 0x74, + 0x2d, 0xbb, 0xfd, 0xc1, 0x6d, 0x5a, 0x2d, 0x93, 0xcd, 0x25, 0xa2, 0xad, 0x40, 0xb4, 0xb9, 0x1f, + 0xcd, 0xae, 0x6d, 0x3a, 0xf6, 0x49, 0x9b, 0xb8, 0x23, 0xee, 0xf2, 0xc6, 0x9d, 0xdd, 0xf9, 0xb8, + 0xed, 0xb6, 0x2d, 0xfb, 0xe8, 0xfd, 0xfe, 0x49, 0xd7, 0x35, 0x9b, 0xcd, 0xae, 0xd5, 0xeb, 0x11, + 0x78, 0x04, 0x5e, 0xde, 0xc0, 0x33, 0x9b, 0xc7, 0x76, 0xdb, 0x3d, 0xea, 0x9e, 0x9c, 0x92, 0xcd, + 0x11, 0x6e, 0x05, 0xc0, 0xed, 0x0f, 0xb7, 0x67, 0x37, 0x09, 0x35, 0x42, 0x2d, 0x6f, 0xa8, 0x1d, + 0x9b, 0x9f, 0x52, 0x3a, 0xb7, 0x6f, 0xb6, 0x9b, 0xff, 0xb1, 0x9b, 0xce, 0x7b, 0xa2, 0x8e, 0xa8, + 0x2b, 0x80, 0xc8, 0x35, 0x48, 0xe4, 0x08, 0xbc, 0x72, 0x2a, 0x08, 0xbb, 0xed, 0x58, 0xdd, 0x43, + 0xf3, 0xc0, 0x22, 0xf2, 0x88, 0xbc, 0x42, 0x7b, 0x26, 0xad, 0x13, 0x82, 0x8d, 0x60, 0xcb, 0x1f, + 0x6c, 0x19, 0x99, 0x73, 0xb3, 0xb3, 0x08, 0x87, 0xc0, 0x23, 0xf0, 0x72, 0x07, 0x9e, 0xf5, 0xc9, + 0xb1, 0xda, 0x4d, 0xab, 0xc9, 0x8e, 0x09, 0x71, 0x57, 0x78, 0x41, 0x41, 0x5e, 0x47, 0xe4, 0x15, + 0x8e, 0xbc, 0x53, 0xc7, 0x6e, 0xd9, 0xff, 0xb5, 0x9a, 0x6c, 0xa0, 0x10, 0x75, 0xc5, 0xa1, 0xce, + 0x6c, 0xfe, 0xe1, 0xb6, 0xcc, 0x36, 0xbb, 0xc4, 0x84, 0x5b, 0x11, 0x70, 0x9b, 0x70, 0xb9, 0xac, + 0x53, 0xcc, 0x31, 0x13, 0xa2, 0xae, 0xb8, 0x96, 0x49, 0xa7, 0x7b, 0xe2, 0x58, 0x07, 0x8e, 0x7d, + 0xd2, 0x4e, 0x87, 0x87, 0x89, 0x3b, 0xe2, 0x2e, 0xef, 0xe4, 0xfa, 0xd1, 0xb4, 0x5b, 0xe6, 0x7e, + 0xcb, 0x22, 0xa7, 0x23, 0xec, 0x0a, 0x0e, 0x77, 0xa6, 0xe3, 0x74, 0xed, 0xfd, 0x53, 0xc7, 0x62, + 0xf1, 0x4a, 0xc8, 0xe5, 0x5f, 0xbc, 0xb6, 0xbb, 0x56, 0xcf, 0xea, 0x7e, 0x64, 0xf9, 0x4a, 0xdc, + 0x15, 0x89, 0xbb, 0xae, 0xd5, 0xb3, 0x9b, 0xa7, 0x66, 0x8b, 0xa8, 0x23, 0xea, 0x0a, 0xac, 0x62, + 0xcd, 0x4f, 0x6e, 0x1a, 0xef, 0x48, 0xee, 0x88, 0xbd, 0x12, 0xc8, 0x9d, 0x16, 0xcd, 0x3a, 0x2e, + 0xe2, 0xa0, 0x8b, 0x57, 0xc9, 0xb5, 0xab, 0xa0, 0x2e, 0x26, 0xb8, 0xe4, 0x55, 0x66, 0xda, 0xa8, + 0x88, 0x09, 0x2e, 0x91, 0x64, 0x04, 0xfc, 0x18, 0x87, 0xa8, 0x92, 0x8b, 0x2a, 0x1d, 0x54, 0xc1, + 0xc4, 0x97, 0x34, 0x7c, 0x69, 0xa6, 0xfe, 0x25, 0xc0, 0xa4, 0x01, 0x4c, 0x8b, 0x99, 0x55, 0xc2, + 0x4a, 0x1e, 0xac, 0xc0, 0xd5, 0xbc, 0x84, 0x94, 0x34, 0x48, 0xe9, 0xa4, 0xda, 0x25, 0xba, 0x04, + 0x12, 0xad, 0x06, 0x89, 0x16, 0x01, 0x96, 0x2f, 0x93, 0xd7, 0x48, 0xad, 0x41, 0x84, 0x89, 0xec, + 0x45, 0x60, 0xab, 0x6d, 0x09, 0x2a, 0x69, 0xa0, 0xd2, 0x4c, 0x55, 0x4b, 0x80, 0x49, 0x03, 0x98, + 0x5e, 0xea, 0x59, 0xe2, 0x4b, 0x24, 0xb1, 0x27, 0xef, 0x22, 0xc2, 0x72, 0x43, 0x98, 0x4e, 0x6a, + 0x58, 0xa2, 0x4b, 0x1a, 0xba, 0xb4, 0x50, 0xbd, 0x12, 0x56, 0xd2, 0x60, 0xa5, 0x93, 0xba, 0x95, + 0xe8, 0x12, 0xd9, 0x8a, 0xd0, 0x46, 0xc5, 0x4a, 0x7c, 0x89, 0x4b, 0x8a, 0x3a, 0xa9, 0x55, 0x09, + 0x2f, 0x91, 0xe1, 0x4b, 0x07, 0x55, 0x2a, 0xa1, 0x25, 0xae, 0x58, 0xd4, 0x4a, 0x7d, 0x4a, 0x7c, + 0x49, 0xc3, 0x97, 0x4e, 0x2a, 0x53, 0xa2, 0x4b, 0x5c, 0xd5, 0xa8, 0x9d, 0x9a, 0x94, 0x18, 0x13, + 0x49, 0xbe, 0xd8, 0xec, 0x22, 0xa4, 0x5e, 0x01, 0xa9, 0x0e, 0x6f, 0xe2, 0x25, 0xda, 0xca, 0x46, + 0xdd, 0xf4, 0xe4, 0x71, 0x76, 0xdd, 0x38, 0x57, 0x56, 0x12, 0x71, 0xf9, 0x23, 0xce, 0x31, 0x8f, + 0xb6, 0x1b, 0x04, 0x1a, 0x81, 0x56, 0x40, 0x68, 0xdb, 0x66, 0x68, 0x23, 0xe2, 0x0a, 0x0d, 0x6d, + 0x84, 0x19, 0x61, 0x96, 0x37, 0xcc, 0x3a, 0x5d, 0xeb, 0xd0, 0xfe, 0xc4, 0x15, 0xe3, 0x44, 0x5b, + 0x81, 0x68, 0x3b, 0x6c, 0x99, 0x47, 0x3d, 0x6e, 0xc9, 0x2a, 0xf7, 0x8b, 0x5b, 0xb2, 0xe8, 0xdf, + 0xac, 0xfc, 0x89, 0x2c, 0x56, 0xf8, 0x04, 0x54, 0xb5, 0x42, 0xd5, 0x36, 0x43, 0x15, 0x91, 0xc5, + 0x8a, 0x9d, 0x70, 0x62, 0x65, 0x4e, 0x54, 0x55, 0x13, 0x55, 0xe0, 0x15, 0x38, 0x66, 0xe5, 0x8d, + 0x57, 0x71, 0x63, 0xbd, 0x67, 0x1c, 0x6b, 0x31, 0x2c, 0x05, 0x89, 0xde, 0x86, 0x19, 0x86, 0xc3, + 0xc4, 0x4b, 0xfc, 0x61, 0x68, 0xec, 0x01, 0xc5, 0x6d, 0x23, 0xee, 0x7f, 0x51, 0x57, 0xde, 0xc8, + 0x4b, 0xbe, 0x4c, 0x22, 0x75, 0x7d, 0x38, 0x52, 0x61, 0x7f, 0x18, 0x5e, 0xf8, 0x97, 0xb5, 0x50, + 0x25, 0x5f, 0x87, 0xd1, 0xdf, 0x35, 0x3f, 0x8c, 0x13, 0x2f, 0xec, 0xab, 0xfa, 0xe3, 0x1f, 0xc4, + 0x0b, 0x3f, 0xa9, 0x8f, 0xa2, 0x61, 0x32, 0xec, 0x0f, 0x83, 0x38, 0xfb, 0xae, 0xee, 0xc7, 0x7e, + 0x5c, 0x0f, 0xd4, 0xb5, 0x0a, 0x66, 0xbf, 0xd4, 0x03, 0x3f, 0xfc, 0xbb, 0x16, 0x27, 0x5e, 0xa2, + 0x6a, 0x03, 0x2f, 0xf1, 0xce, 0xbd, 0x58, 0xd5, 0x83, 0x78, 0x54, 0x4f, 0x82, 0xeb, 0x78, 0xf2, + 0x8f, 0xba, 0xfa, 0x96, 0xa8, 0x70, 0xa0, 0x06, 0x35, 0x3f, 0xae, 0x45, 0xca, 0xeb, 0x7f, 0xf1, + 0xce, 0xfd, 0xc0, 0x4f, 0x6e, 0xea, 0xa1, 0xf2, 0x2f, 0xbf, 0x9c, 0x0f, 0xa3, 0x38, 0xfb, 0xae, + 0x7e, 0x67, 0x4c, 0x66, 0x44, 0x3c, 0x3e, 0x9f, 0xfe, 0xaf, 0xd2, 0x5f, 0xeb, 0xe3, 0xc9, 0x03, + 0xc5, 0x49, 0xe4, 0xf9, 0xa1, 0x1a, 0xd4, 0x26, 0x7f, 0xd1, 0xf4, 0xef, 0xc6, 0x48, 0x3c, 0xf2, + 0x9d, 0x54, 0xb6, 0x85, 0xc2, 0xc3, 0x07, 0x5a, 0xd8, 0xa8, 0x62, 0xb8, 0x00, 0x98, 0x5d, 0x34, + 0xe2, 0x24, 0x1a, 0xf7, 0x93, 0x70, 0xc6, 0xb7, 0xdb, 0xe9, 0x7b, 0xb6, 0x67, 0x4f, 0xe8, 0x76, + 0x66, 0x2f, 0xd7, 0xb5, 0x63, 0x3f, 0x76, 0x5b, 0x93, 0xb7, 0xea, 0xb6, 0xe2, 0x91, 0xeb, 0x04, + 0xd7, 0xae, 0x35, 0x7b, 0x79, 0x76, 0xdc, 0xbd, 0xf7, 0xea, 0xdc, 0xf6, 0xec, 0x85, 0xb9, 0xd9, + 0xff, 0xa4, 0x37, 0x7d, 0x3d, 0xee, 0xe9, 0xfd, 0xd7, 0xd3, 0x8a, 0x47, 0xb2, 0xc3, 0xa8, 0xdc, + 0xe0, 0x24, 0x38, 0x30, 0x19, 0xe3, 0x30, 0x52, 0xb1, 0x8a, 0xae, 0xd5, 0xa0, 0x76, 0xee, 0x85, + 0x83, 0xaf, 0xfe, 0x60, 0xea, 0xee, 0xb2, 0xc3, 0x53, 0x56, 0x6d, 0x7e, 0xd7, 0x7a, 0xe1, 0x69, + 0xe0, 0x83, 0x1f, 0x0e, 0x8c, 0xbd, 0xb5, 0x0d, 0xe1, 0x66, 0x1e, 0x4c, 0x43, 0xbd, 0xb1, 0xb7, + 0xb6, 0x2e, 0xdc, 0xd0, 0x4e, 0xa4, 0x2e, 0xfc, 0x6f, 0x18, 0x29, 0x75, 0x8e, 0xdb, 0x61, 0xbf, + 0x36, 0x49, 0x7e, 0x08, 0xe9, 0xa6, 0x37, 0x1c, 0x47, 0x7d, 0x05, 0x53, 0xe8, 0x18, 0x1f, 0xd4, + 0xcd, 0xd7, 0x61, 0x34, 0xf1, 0x30, 0x63, 0x94, 0x22, 0x03, 0xa4, 0xaa, 0x7c, 0xef, 0xc5, 0x66, + 0x74, 0x39, 0xbe, 0x52, 0x61, 0x62, 0xec, 0xad, 0x25, 0xd1, 0x58, 0xa1, 0x94, 0xc3, 0x77, 0x56, + 0x67, 0xc0, 0x66, 0x29, 0xa3, 0x75, 0x29, 0xd3, 0xf4, 0x23, 0x90, 0x1a, 0x46, 0x25, 0xe3, 0x51, + 0x6d, 0x14, 0xf9, 0xc3, 0xc8, 0x4f, 0x6e, 0x70, 0xa2, 0xd8, 0x3c, 0x51, 0x3c, 0xb2, 0x1f, 0x24, + 0x22, 0x60, 0x50, 0x1c, 0x38, 0xaa, 0x83, 0x48, 0x79, 0x80, 0xa9, 0x0f, 0x2a, 0x05, 0x82, 0xa7, + 0x42, 0xf0, 0x94, 0x08, 0x9b, 0x1a, 0x61, 0x50, 0x24, 0x10, 0xaa, 0x04, 0x47, 0x99, 0x32, 0x83, + 0xe1, 0x48, 0xd3, 0x42, 0xaa, 0x01, 0xa3, 0x4d, 0x8f, 0xe9, 0xd3, 0x3a, 0x98, 0xd9, 0x68, 0x34, + 0x0a, 0x99, 0x4e, 0x69, 0x40, 0xab, 0xd0, 0xe9, 0x95, 0x36, 0x34, 0x4b, 0x1b, 0xba, 0xa5, 0x07, + 0xed, 0xc2, 0xa2, 0x5f, 0x60, 0x34, 0x2c, 0x83, 0x88, 0x73, 0x33, 0x52, 0xd8, 0x11, 0x3f, 0x50, + 0xde, 0x45, 0xa4, 0x2e, 0x10, 0x23, 0xfe, 0xbc, 0x3f, 0xb4, 0x03, 0x68, 0x7b, 0x67, 0x36, 0x0f, + 0xf1, 0xf6, 0x6d, 0x3a, 0x5b, 0x54, 0xcf, 0x58, 0x26, 0x67, 0x17, 0xab, 0x1e, 0x59, 0x8c, 0x74, + 0xda, 0x0c, 0xb6, 0x60, 0x4a, 0xcd, 0xc7, 0xac, 0x96, 0x36, 0x58, 0x2d, 0xb1, 0x5a, 0x62, 0xb5, + 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, 0x25, 0x72, 0x9a, 0xd5, 0x42, 0x04, 0xad, 0x79, 0x9d, 0x19, + 0x8e, 0x33, 0xd3, 0xf8, 0xd3, 0x9c, 0x85, 0x32, 0xe0, 0xf8, 0x33, 0xa2, 0xb6, 0x0e, 0x6a, 0x3e, + 0x2a, 0x61, 0xd3, 0x81, 0xb8, 0x69, 0x44, 0xe0, 0x74, 0x21, 0x72, 0xda, 0x11, 0x3a, 0xed, 0x88, + 0x9d, 0x5e, 0x04, 0x0f, 0x93, 0xe8, 0x81, 0x12, 0xbe, 0x0c, 0x3a, 0xb0, 0x6d, 0xf2, 0x85, 0x8c, + 0xe1, 0x2b, 0xa5, 0x2e, 0x82, 0xa1, 0x97, 0xbc, 0xdb, 0x44, 0xce, 0x1a, 0x33, 0x12, 0xb5, 0x0b, + 0xfc, 0x08, 0x2d, 0x15, 0x5e, 0x4e, 0x09, 0x39, 0xf6, 0x82, 0x7d, 0xfc, 0xd5, 0x99, 0xc6, 0xb1, + 0x1f, 0xc2, 0xf3, 0x0f, 0x4d, 0xca, 0x8b, 0x85, 0xc7, 0x99, 0x5e, 0x43, 0x61, 0xec, 0xad, 0x35, + 0x34, 0x79, 0x9e, 0xc3, 0xc8, 0xeb, 0x27, 0xfe, 0x30, 0x6c, 0xfa, 0x97, 0x7e, 0x12, 0x4f, 0x3e, + 0x28, 0xee, 0xff, 0x95, 0x10, 0x02, 0xbc, 0x6f, 0x0c, 0x01, 0x0c, 0x01, 0x0c, 0x01, 0x55, 0xaa, + 0x46, 0xf0, 0xad, 0xc7, 0x5c, 0x26, 0x8d, 0xf7, 0xbe, 0x01, 0x53, 0x1c, 0xee, 0xe0, 0xfa, 0x42, + 0xcd, 0x0a, 0x3a, 0xc0, 0xae, 0x49, 0x3e, 0x66, 0xc7, 0x5f, 0x92, 0x2f, 0xb0, 0xe3, 0x2f, 0xc7, + 0xad, 0xd9, 0xf1, 0x17, 0xfe, 0x40, 0xec, 0xf8, 0x93, 0x39, 0xbd, 0x10, 0x3a, 0xfa, 0x74, 0xfc, + 0xc7, 0x7e, 0x98, 0xfc, 0xae, 0x41, 0xaf, 0x7f, 0x0b, 0xf8, 0x11, 0xba, 0x5e, 0x78, 0xa9, 0xd8, + 0xea, 0x2f, 0xff, 0x83, 0x60, 0xab, 0x5f, 0xee, 0xe3, 0xcc, 0xfb, 0x7c, 0xeb, 0xec, 0xf3, 0x31, + 0x9b, 0xe7, 0x18, 0x02, 0xd8, 0xea, 0x17, 0x1f, 0x02, 0x76, 0x18, 0x02, 0x58, 0x86, 0xd0, 0xfa, + 0xfb, 0x5f, 0x6c, 0xf5, 0xd3, 0x62, 0xf8, 0x84, 0x8c, 0x7a, 0x67, 0x44, 0x66, 0x7f, 0x15, 0x96, + 0xc1, 0x2f, 0xee, 0x92, 0xae, 0x3f, 0xdc, 0xbf, 0x88, 0x74, 0x9b, 0x04, 0x9e, 0x5b, 0x73, 0xdf, + 0xd8, 0x4a, 0x09, 0xb2, 0xba, 0x01, 0x3c, 0x42, 0x34, 0x5a, 0x7e, 0x9c, 0x98, 0x49, 0x02, 0xb6, + 0x2b, 0xed, 0xd8, 0x0f, 0xad, 0x40, 0x5d, 0xa9, 0x70, 0xca, 0x75, 0xc3, 0x71, 0x10, 0x00, 0x2d, + 0x2d, 0x38, 0xf6, 0xbe, 0xe1, 0x1a, 0x7f, 0x12, 0x0d, 0x54, 0xa4, 0x06, 0xfb, 0x37, 0x33, 0xd3, + 0x19, 0x43, 0x48, 0x5a, 0x48, 0x56, 0xc0, 0x86, 0x46, 0x0a, 0xbc, 0xd3, 0xa6, 0x37, 0x79, 0x47, + 0x1d, 0xa8, 0x95, 0x3d, 0xbc, 0x17, 0x4c, 0xeb, 0x68, 0xcb, 0x7b, 0xc1, 0x20, 0xa2, 0x2b, 0x2f, + 0xbf, 0xd2, 0xce, 0xfb, 0x8c, 0x71, 0xe2, 0x07, 0xfe, 0xff, 0x03, 0xbd, 0xfa, 0x6a, 0xd1, 0x76, + 0x5e, 0x7c, 0xb5, 0x0a, 0x33, 0x79, 0xf1, 0x55, 0x8e, 0xa8, 0xe5, 0xc5, 0x57, 0x79, 0x36, 0x7c, + 0x78, 0xf1, 0x55, 0xb1, 0xc4, 0x8d, 0x17, 0x5f, 0x55, 0x8d, 0xab, 0xe3, 0x5c, 0x7c, 0x05, 0xb5, + 0x89, 0x14, 0x72, 0x03, 0x29, 0xaf, 0xb9, 0x22, 0xc1, 0xd1, 0x80, 0xe8, 0xa0, 0x12, 0x1e, 0x78, + 0xe2, 0x03, 0x4f, 0x80, 0xb0, 0x89, 0x10, 0x06, 0x21, 0x02, 0x21, 0x46, 0x70, 0x04, 0x29, 0x33, + 0x18, 0x77, 0x43, 0x28, 0xfc, 0x66, 0x50, 0x5e, 0x74, 0x45, 0x42, 0x55, 0x01, 0x62, 0x85, 0x4e, + 0xb0, 0xb4, 0x21, 0x5a, 0xda, 0x10, 0x2e, 0x3d, 0x88, 0x17, 0x16, 0x01, 0x03, 0x23, 0x62, 0x19, + 0x44, 0xf0, 0x2f, 0xba, 0xc2, 0xde, 0xdc, 0x09, 0xbc, 0xb1, 0x13, 0x7d, 0x53, 0x27, 0xb0, 0x86, + 0x5d, 0x07, 0xb9, 0xae, 0x26, 0x1a, 0x3d, 0x5d, 0xd6, 0xf0, 0xe9, 0xa4, 0xc9, 0x03, 0x96, 0xe3, + 0x6a, 0x21, 0xc3, 0xa5, 0x6b, 0xd3, 0xb5, 0x59, 0x0d, 0x40, 0x5b, 0x7d, 0x46, 0x15, 0x5b, 0xd5, + 0x53, 0x93, 0x91, 0x20, 0xd6, 0x86, 0x59, 0x5d, 0x38, 0xb5, 0x9e, 0x1d, 0xef, 0x22, 0xcc, 0x66, + 0xc7, 0xbb, 0x44, 0x9c, 0xb3, 0xe3, 0x5d, 0x9e, 0xbb, 0xb2, 0xe3, 0x2d, 0xec, 0x41, 0xd8, 0xf1, + 0x26, 0xa3, 0xf9, 0x09, 0x44, 0x34, 0xe8, 0x78, 0x0f, 0x54, 0x98, 0xf8, 0xc9, 0x4d, 0xa4, 0x2e, + 0x80, 0x3b, 0xde, 0x1b, 0x80, 0x8b, 0x2b, 0x0d, 0x7b, 0xf6, 0xea, 0xf7, 0xbd, 0x58, 0xe1, 0x2f, + 0x90, 0xb7, 0x7b, 0x76, 0xcf, 0xed, 0x9d, 0xee, 0x3b, 0xad, 0x8f, 0xae, 0xf3, 0x67, 0xc7, 0x42, + 0x4d, 0x5f, 0xd3, 0x3e, 0x4d, 0x0c, 0xbd, 0x47, 0x14, 0xbc, 0xe1, 0x37, 0x47, 0x54, 0xf7, 0xe4, + 0xd4, 0xb1, 0xba, 0xee, 0x81, 0xd9, 0x31, 0xf7, 0xed, 0x96, 0xed, 0xfc, 0x39, 0x83, 0x57, 0x0f, + 0x19, 0x5f, 0x3a, 0xe1, 0x4c, 0x0f, 0xbc, 0x3d, 0x05, 0x77, 0xf7, 0xff, 0xcd, 0xe0, 0x86, 0x51, + 0x42, 0xae, 0x08, 0xc8, 0x99, 0xad, 0xa3, 0x93, 0xae, 0xed, 0xbc, 0x3f, 0x36, 0xb8, 0xd0, 0xb2, + 0xd4, 0xaf, 0x33, 0x1e, 0x5e, 0xd2, 0xc3, 0x99, 0x4c, 0x08, 0x2d, 0x26, 0x0d, 0x22, 0xab, 0x0a, + 0xc8, 0xb2, 0x7b, 0x6e, 0xd7, 0x32, 0x0f, 0xde, 0xb3, 0xee, 0x22, 0xda, 0xca, 0x43, 0x9d, 0x63, + 0xb9, 0x4d, 0xeb, 0xd0, 0x3c, 0x6d, 0x39, 0xee, 0xb1, 0xe5, 0x74, 0xed, 0x03, 0x56, 0x5e, 0x04, + 0x5d, 0xde, 0xa0, 0x3b, 0x6d, 0x1f, 0x9c, 0xb4, 0x7b, 0x4e, 0xd7, 0xb4, 0xdb, 0x56, 0xd3, 0x6d, + 0xf5, 0x3a, 0x04, 0x1d, 0x41, 0x97, 0x37, 0xe8, 0x5a, 0x76, 0xfb, 0x83, 0xdb, 0xb4, 0x5a, 0x26, + 0x9b, 0x4b, 0x44, 0x5b, 0x81, 0x68, 0x73, 0x3f, 0x9a, 0x5d, 0xdb, 0x74, 0xec, 0x93, 0x36, 0x71, + 0x47, 0xdc, 0xe5, 0x8d, 0x3b, 0xbb, 0xf3, 0x71, 0xdb, 0x6d, 0x5b, 0xf6, 0xd1, 0xfb, 0xfd, 0x93, + 0xae, 0x6b, 0x36, 0x9b, 0x5d, 0xab, 0xd7, 0x23, 0xf0, 0x08, 0xbc, 0xbc, 0x81, 0x67, 0x36, 0x8f, + 0xed, 0xb6, 0x7b, 0xd4, 0x3d, 0x39, 0x25, 0x9b, 0x23, 0xdc, 0x0a, 0x80, 0xdb, 0x1f, 0x6e, 0xcf, + 0x6e, 0x12, 0x6a, 0x84, 0x5a, 0xde, 0x50, 0x3b, 0x36, 0x3f, 0xa5, 0x74, 0x6e, 0xdf, 0x6c, 0x37, + 0xff, 0x63, 0x37, 0x9d, 0xf7, 0x44, 0x1d, 0x51, 0x57, 0x00, 0x91, 0x6b, 0x90, 0xc8, 0x11, 0x78, + 0xe5, 0x54, 0x10, 0x76, 0xdb, 0xb1, 0xba, 0x87, 0xe6, 0x81, 0x45, 0xe4, 0x11, 0x79, 0x85, 0xf6, + 0x4c, 0x5a, 0x27, 0x04, 0x1b, 0xc1, 0x96, 0x3f, 0xd8, 0x32, 0x32, 0xe7, 0x66, 0x67, 0x11, 0x0e, + 0x81, 0x47, 0xe0, 0xe5, 0x0e, 0x3c, 0xeb, 0x93, 0x63, 0xb5, 0x9b, 0x56, 0x93, 0x1d, 0x13, 0xe2, + 0xae, 0xf0, 0x82, 0x82, 0xbc, 0x8e, 0xc8, 0x2b, 0x1c, 0x79, 0xa7, 0x8e, 0xdd, 0xb2, 0xff, 0x6b, + 0x35, 0xd9, 0x40, 0x21, 0xea, 0x8a, 0x43, 0x9d, 0xd9, 0xfc, 0xc3, 0x6d, 0x99, 0x6d, 0x76, 0x89, + 0x09, 0xb7, 0x22, 0xe0, 0x36, 0xe1, 0x72, 0x59, 0xa7, 0x98, 0x63, 0x26, 0x44, 0x5d, 0x71, 0x2d, + 0x93, 0x4e, 0xf7, 0xc4, 0xb1, 0x0e, 0x1c, 0xfb, 0xa4, 0x9d, 0x0e, 0x0f, 0x13, 0x77, 0xc4, 0x5d, + 0xde, 0xc9, 0xf5, 0xa3, 0x69, 0xb7, 0xcc, 0xfd, 0x96, 0x45, 0x4e, 0x47, 0xd8, 0x15, 0x1c, 0xee, + 0x4c, 0xc7, 0xe9, 0xda, 0xfb, 0xa7, 0x8e, 0xc5, 0xe2, 0x95, 0x90, 0xcb, 0xbf, 0x78, 0x6d, 0x77, + 0xad, 0x9e, 0xd5, 0xfd, 0xc8, 0xf2, 0x95, 0xb8, 0x2b, 0x12, 0x77, 0x5d, 0xab, 0x67, 0x37, 0x4f, + 0xcd, 0x16, 0x51, 0x47, 0xd4, 0x15, 0x58, 0xc5, 0x9a, 0x9f, 0xdc, 0x34, 0xde, 0x91, 0xdc, 0x11, + 0x7b, 0x25, 0x90, 0x3b, 0x2d, 0x9a, 0x75, 0x5c, 0xc4, 0x41, 0x17, 0xaf, 0x92, 0x6b, 0x57, 0x41, + 0x5d, 0x4c, 0x70, 0xc9, 0xab, 0xcc, 0xb4, 0x51, 0x11, 0x13, 0x5c, 0x22, 0xc9, 0x08, 0xf8, 0x31, + 0x0e, 0x51, 0x25, 0x17, 0x55, 0x3a, 0xa8, 0x82, 0x89, 0x2f, 0x69, 0xf8, 0xd2, 0x4c, 0xfd, 0x4b, + 0x80, 0x49, 0x03, 0x98, 0x16, 0x33, 0xab, 0x84, 0x95, 0x3c, 0x58, 0x81, 0xab, 0x79, 0x09, 0x29, + 0x69, 0x90, 0xd2, 0x49, 0xb5, 0x4b, 0x74, 0x09, 0x24, 0x5a, 0x0d, 0x12, 0x2d, 0x02, 0x2c, 0x5f, + 0x26, 0xaf, 0x91, 0x5a, 0x83, 0x08, 0x13, 0xd9, 0x8b, 0xc0, 0x56, 0xdb, 0x12, 0x54, 0xd2, 0x40, + 0xa5, 0x99, 0xaa, 0x96, 0x00, 0x93, 0x06, 0x30, 0xbd, 0xd4, 0xb3, 0xc4, 0x97, 0x48, 0x62, 0x4f, + 0xde, 0x45, 0x84, 0xe5, 0x86, 0x30, 0x9d, 0xd4, 0xb0, 0x44, 0x97, 0x34, 0x74, 0x69, 0xa1, 0x7a, + 0x25, 0xac, 0xa4, 0xc1, 0x4a, 0x27, 0x75, 0x2b, 0xd1, 0x25, 0xb2, 0x15, 0xa1, 0x8d, 0x8a, 0x95, + 0xf8, 0x12, 0x97, 0x14, 0x75, 0x52, 0xab, 0x12, 0x5e, 0x22, 0xc3, 0x97, 0x0e, 0xaa, 0x54, 0x42, + 0x4b, 0x5c, 0xb1, 0xa8, 0x95, 0xfa, 0x94, 0xf8, 0x92, 0x86, 0x2f, 0x9d, 0x54, 0xa6, 0x44, 0x97, + 0xb8, 0xaa, 0x51, 0x3b, 0x35, 0x29, 0x31, 0x26, 0x92, 0x7c, 0xb1, 0xd9, 0x45, 0x48, 0xbd, 0x02, + 0x52, 0x1d, 0xde, 0xc4, 0x4b, 0xb4, 0x95, 0x8d, 0xba, 0xe9, 0xc9, 0xe3, 0xec, 0xba, 0x71, 0xae, + 0xac, 0x24, 0xe2, 0xf2, 0x47, 0x9c, 0x63, 0x1e, 0x6d, 0x37, 0x08, 0x34, 0x02, 0xad, 0x80, 0xd0, + 0xb6, 0xcd, 0xd0, 0x46, 0xc4, 0x15, 0x1a, 0xda, 0x08, 0x33, 0xc2, 0x2c, 0x6f, 0x98, 0x75, 0xba, + 0xd6, 0xa1, 0xfd, 0x89, 0x2b, 0xc6, 0x89, 0xb6, 0x02, 0xd1, 0x76, 0xd8, 0x32, 0x8f, 0x7a, 0xdc, + 0x92, 0x55, 0xee, 0x17, 0xb7, 0x64, 0xd1, 0xbf, 0x59, 0xf9, 0x13, 0x59, 0xac, 0xf0, 0x09, 0xa8, + 0x6a, 0x85, 0xaa, 0x6d, 0x86, 0x2a, 0x22, 0x8b, 0x15, 0x3b, 0xe1, 0xc4, 0xca, 0x9c, 0xa8, 0xaa, + 0x26, 0xaa, 0xc0, 0x2b, 0x70, 0xcc, 0xca, 0x1b, 0xaf, 0xe2, 0xc6, 0x7a, 0xcf, 0x38, 0xd6, 0x62, + 0x58, 0x0a, 0x12, 0xbd, 0x0d, 0x33, 0x0c, 0x87, 0x89, 0x97, 0xf8, 0xc3, 0xd0, 0xd8, 0x03, 0x8a, + 0xdb, 0x46, 0xdc, 0xff, 0xa2, 0xae, 0xbc, 0x91, 0x97, 0x7c, 0x99, 0x44, 0xea, 0xfa, 0x70, 0xa4, + 0xc2, 0xfe, 0x30, 0xbc, 0xf0, 0x2f, 0x6b, 0xa1, 0x4a, 0xbe, 0x0e, 0xa3, 0xbf, 0x6b, 0x7e, 0x18, + 0x27, 0x5e, 0xd8, 0x57, 0xf5, 0xc7, 0x3f, 0x88, 0x17, 0x7e, 0x52, 0x1f, 0x45, 0xc3, 0x64, 0xd8, + 0x1f, 0x06, 0x71, 0xf6, 0x5d, 0xdd, 0x8f, 0xfd, 0xb8, 0x1e, 0xa8, 0x6b, 0x15, 0xcc, 0x7e, 0xa9, + 0x07, 0x7e, 0xf8, 0x77, 0x2d, 0x4e, 0xbc, 0x44, 0xd5, 0x06, 0x5e, 0xe2, 0x9d, 0x7b, 0xb1, 0xaa, + 0x07, 0xf1, 0xa8, 0x9e, 0x04, 0xd7, 0xf1, 0xe4, 0x1f, 0x75, 0xf5, 0x2d, 0x51, 0xe1, 0x40, 0x0d, + 0x6a, 0x7e, 0x5c, 0x8b, 0x94, 0xd7, 0xff, 0xe2, 0x9d, 0xfb, 0x81, 0x9f, 0xdc, 0xd4, 0x43, 0xe5, + 0x5f, 0x7e, 0x39, 0x1f, 0x46, 0x71, 0xf6, 0x5d, 0xfd, 0xce, 0x98, 0xcc, 0x88, 0x78, 0x7c, 0x3e, + 0xfd, 0x5f, 0xa5, 0xbf, 0xd6, 0xc7, 0x89, 0x1f, 0xf8, 0xff, 0x4f, 0x0d, 0x6a, 0xe7, 0x5e, 0x38, + 0xf8, 0xea, 0x0f, 0x92, 0x2f, 0xf5, 0xe9, 0x5f, 0x8e, 0x91, 0x79, 0xe4, 0x7b, 0xa9, 0x6c, 0x0b, + 0x85, 0xc7, 0x0f, 0xb4, 0xb8, 0x51, 0xc9, 0x78, 0x01, 0x30, 0xbd, 0x68, 0xc4, 0x49, 0x34, 0xee, + 0x27, 0xe1, 0x8c, 0x71, 0xb7, 0xd3, 0x17, 0x6d, 0xcf, 0x1e, 0xd1, 0xed, 0xcc, 0xde, 0xae, 0x6b, + 0xc7, 0x7e, 0xec, 0xb6, 0x26, 0xaf, 0xd5, 0x6d, 0xc5, 0x23, 0xd7, 0x09, 0xae, 0x5d, 0x6b, 0xf6, + 0xf6, 0xec, 0xb8, 0x7b, 0xef, 0xdd, 0xb9, 0xed, 0xd9, 0x1b, 0x73, 0xb3, 0xff, 0x49, 0x6f, 0xfa, + 0x7e, 0xdc, 0xd3, 0xd9, 0xfb, 0xd9, 0xcf, 0x5e, 0xcf, 0x2f, 0x0c, 0x4f, 0xfa, 0x58, 0x26, 0x34, + 0x60, 0x1a, 0x1f, 0xd4, 0xcd, 0x04, 0xd9, 0xc9, 0xcd, 0x48, 0x09, 0xf5, 0x47, 0xa3, 0xe5, 0xc7, + 0x89, 0x99, 0x24, 0x91, 0xe8, 0x48, 0x6e, 0x1c, 0xfb, 0xa1, 0x15, 0xa8, 0x2b, 0x15, 0x26, 0xb1, + 0xb1, 0xb7, 0x16, 0x8e, 0x83, 0xe0, 0x37, 0xc1, 0xc6, 0x7a, 0xdf, 0x70, 0x8c, 0x3d, 0x89, 0x06, + 0x2a, 0x52, 0x83, 0xfd, 0x9b, 0x99, 0xa9, 0xf4, 0x6f, 0xfd, 0x88, 0x90, 0xfe, 0x04, 0x48, 0x30, + 0xdb, 0x29, 0x8e, 0xe5, 0xc8, 0xe4, 0x34, 0xf2, 0x18, 0x83, 0x2c, 0x8b, 0x84, 0xc5, 0x36, 0xe9, + 0x31, 0x4d, 0xe3, 0x58, 0x26, 0xcb, 0x7f, 0xe5, 0x78, 0x89, 0x20, 0x0f, 0x31, 0xc6, 0xe1, 0x40, + 0x5d, 0xf8, 0xa1, 0x1a, 0xd4, 0xe6, 0x1f, 0x9a, 0x34, 0x27, 0xc9, 0x4e, 0xb0, 0x16, 0x4d, 0x15, + 0x16, 0x69, 0x3e, 0xf8, 0xe1, 0xc0, 0xd8, 0x5b, 0xdb, 0x10, 0x66, 0xd6, 0xc1, 0x34, 0x9a, 0x18, + 0x7b, 0x6b, 0xeb, 0xc2, 0x0c, 0xeb, 0x44, 0xea, 0xc2, 0xff, 0x26, 0x33, 0x2a, 0xcf, 0x41, 0x37, + 0xec, 0xd7, 0x26, 0xf1, 0x53, 0x20, 0x1f, 0x33, 0x7a, 0xc3, 0x71, 0xd4, 0x57, 0x62, 0x89, 0xba, + 0xf1, 0x41, 0xdd, 0x7c, 0x1d, 0x46, 0x13, 0x8f, 0x30, 0x46, 0xe9, 0x27, 0x2d, 0xb4, 0xea, 0x79, + 0xef, 0xc5, 0x66, 0x74, 0x39, 0x9e, 0x14, 0xb8, 0xc6, 0xde, 0x5a, 0x12, 0x8d, 0x95, 0xd4, 0xf2, + 0xec, 0xce, 0xca, 0x0c, 0x98, 0x64, 0xa3, 0x50, 0x6c, 0xb4, 0xe9, 0xcb, 0xec, 0x4c, 0x2d, 0x64, + 0x57, 0xb9, 0x71, 0x65, 0x19, 0x1f, 0x90, 0x1a, 0x5e, 0x64, 0xd2, 0x02, 0xf1, 0xf4, 0x00, 0x81, + 0x26, 0x00, 0xd1, 0x05, 0x14, 0xda, 0x00, 0x47, 0x1f, 0xe0, 0x68, 0x04, 0x16, 0x9d, 0x90, 0x49, + 0x2b, 0x84, 0xd2, 0x0b, 0xf1, 0x34, 0x23, 0x33, 0x30, 0x9d, 0xfe, 0x11, 0x1f, 0x84, 0xe6, 0x71, + 0x3d, 0x35, 0x57, 0xb8, 0x3f, 0xcb, 0x26, 0x1a, 0x30, 0x84, 0x03, 0x89, 0x78, 0x00, 0x12, 0x10, + 0x34, 0x22, 0x02, 0x4b, 0x48, 0x60, 0x89, 0x09, 0x26, 0x41, 0x91, 0x4d, 0x54, 0x84, 0x13, 0x16, + 0x18, 0xe2, 0x92, 0x19, 0x1a, 0xa8, 0xf0, 0x72, 0x7a, 0x64, 0x07, 0x12, 0xbd, 0xe6, 0x09, 0x62, + 0x66, 0x37, 0x48, 0x04, 0x98, 0x51, 0x9a, 0x75, 0x10, 0x73, 0x51, 0xa8, 0x0d, 0x22, 0xc5, 0x01, + 0xa6, 0x3a, 0xa8, 0x94, 0x07, 0x9e, 0xfa, 0xc0, 0x53, 0x20, 0x6c, 0x2a, 0x84, 0x41, 0x89, 0x40, + 0xa8, 0x51, 0x06, 0x05, 0xe7, 0x66, 0xa4, 0x30, 0x23, 0xf6, 0xd8, 0x0f, 0x93, 0xdf, 0x91, 0xe2, + 0xf5, 0x8c, 0x7e, 0x6c, 0x01, 0x99, 0xdc, 0xf5, 0xc2, 0x4b, 0x05, 0xb7, 0x24, 0x1b, 0x4f, 0x64, + 0x6f, 0x1c, 0xfb, 0x21, 0x5c, 0x22, 0x07, 0xe5, 0xd5, 0x0b, 0xe6, 0x4f, 0x57, 0xc1, 0x03, 0xdb, + 0x7f, 0x18, 0x79, 0xfd, 0xc4, 0x1f, 0x86, 0x4d, 0xff, 0xd2, 0x9f, 0x8a, 0x2a, 0xd6, 0xf1, 0x36, + 0x02, 0xfc, 0x06, 0xe8, 0xb2, 0xde, 0x37, 0xba, 0x6c, 0xc9, 0x2e, 0xbb, 0xb9, 0xb5, 0x45, 0xa7, + 0x25, 0x11, 0xd7, 0xcb, 0xda, 0x33, 0xae, 0x31, 0xa8, 0x4a, 0x52, 0x49, 0xc5, 0xaf, 0x70, 0x6d, + 0x5f, 0xc1, 0x92, 0x5d, 0xf0, 0x4c, 0xc7, 0xa6, 0x6f, 0x91, 0x38, 0x66, 0xd3, 0xb7, 0x38, 0x37, + 0x64, 0xd3, 0xb7, 0xe4, 0x07, 0x60, 0xd3, 0x97, 0x8c, 0x63, 0x06, 0x05, 0x36, 0x7d, 0x8b, 0xa6, + 0x1f, 0x6c, 0xfa, 0xe6, 0xfd, 0xc5, 0xa6, 0x2f, 0x79, 0xf5, 0x33, 0xcc, 0x67, 0xd3, 0x97, 0xd9, + 0xf2, 0x25, 0x2e, 0xcb, 0xa6, 0x6f, 0xe9, 0x2e, 0xcb, 0xa6, 0x2f, 0x89, 0xb8, 0x76, 0xd6, 0xb2, + 0xe9, 0x5b, 0x99, 0xa4, 0x62, 0x5c, 0xcf, 0x02, 0x19, 0x58, 0xd7, 0x37, 0x35, 0x9b, 0x6d, 0xdf, + 0x3c, 0xcc, 0x65, 0xdb, 0xb7, 0x40, 0x20, 0xb3, 0xed, 0x5b, 0x9c, 0x1b, 0xb2, 0xed, 0x5b, 0xf2, + 0x03, 0xb0, 0xed, 0x4b, 0xce, 0x31, 0x83, 0x02, 0x6e, 0xdb, 0xf7, 0xdc, 0x0f, 0xbd, 0xe8, 0x06, + 0xb0, 0xef, 0xbb, 0x4b, 0x5a, 0x5f, 0x01, 0x0b, 0x79, 0x25, 0xc5, 0x6a, 0xed, 0xd5, 0x70, 0x8b, + 0xe9, 0xc2, 0xbe, 0xc9, 0x85, 0x9f, 0x20, 0xdc, 0x61, 0x23, 0xf8, 0xea, 0x05, 0xc1, 0x4b, 0x92, + 0x20, 0x86, 0xbc, 0x90, 0x86, 0xbb, 0x40, 0xaa, 0x7b, 0x2e, 0x27, 0x61, 0x15, 0xbf, 0xc6, 0xe5, + 0x24, 0xac, 0xd6, 0x35, 0xad, 0xd2, 0x49, 0xca, 0x2b, 0x51, 0x8d, 0xdf, 0xdb, 0xf6, 0xe1, 0x5d, + 0x44, 0xea, 0x02, 0x21, 0xe2, 0xce, 0xb7, 0x97, 0xed, 0x00, 0xd8, 0xda, 0x99, 0xd5, 0x39, 0x6f, + 0xdf, 0xa6, 0x25, 0x40, 0x7d, 0xca, 0xc0, 0x58, 0x07, 0x68, 0x64, 0x19, 0xaf, 0x60, 0x7b, 0xb1, + 0x89, 0xbc, 0x82, 0x6d, 0xf5, 0xc6, 0xf2, 0x0a, 0xb6, 0x8a, 0xf8, 0x37, 0xaf, 0x60, 0x13, 0xdc, + 0xf0, 0xab, 0xf8, 0xb5, 0x6c, 0xa7, 0xf3, 0xd7, 0xc1, 0xfb, 0xd9, 0x70, 0x2d, 0xe2, 0xfd, 0x6c, + 0x0c, 0x74, 0x0b, 0x37, 0x69, 0xf1, 0xa6, 0x36, 0xc1, 0x96, 0x08, 0xf1, 0xd8, 0x79, 0xe9, 0xe1, + 0x0f, 0x84, 0xa4, 0x41, 0x99, 0x85, 0x86, 0xe8, 0xc2, 0x42, 0x74, 0x21, 0x21, 0xb3, 0x70, 0x90, + 0xe2, 0x7d, 0x42, 0xf3, 0xa4, 0x86, 0xf9, 0x51, 0x10, 0xcb, 0x2f, 0x80, 0xd5, 0xcb, 0xc8, 0xfd, + 0xe5, 0x67, 0xda, 0x72, 0x2d, 0x28, 0x39, 0xca, 0x48, 0x8b, 0x2e, 0xfa, 0x44, 0x95, 0x72, 0xdd, + 0xab, 0x3c, 0x50, 0x97, 0x08, 0x68, 0x21, 0x97, 0x0b, 0x89, 0xba, 0x3c, 0x48, 0xc8, 0xe5, 0x40, + 0x62, 0xe6, 0x6b, 0x24, 0xcd, 0xcf, 0x08, 0x9c, 0x8f, 0x91, 0x36, 0xff, 0x22, 0x76, 0xbe, 0x45, + 0xec, 0xfc, 0x8a, 0xcc, 0xf9, 0x94, 0x6a, 0x93, 0x2c, 0x29, 0x97, 0xdb, 0x18, 0xf1, 0x4d, 0x9c, + 0xa8, 0xab, 0x9a, 0x3f, 0x90, 0xe3, 0xe0, 0x59, 0xb2, 0xcc, 0x4c, 0x93, 0xd2, 0xf5, 0x12, 0x35, + 0xb8, 0x2a, 0x6e, 0x40, 0x55, 0xe2, 0x20, 0xaa, 0xe0, 0x81, 0x53, 0xa9, 0x83, 0xa5, 0xe2, 0x07, + 0x48, 0xc5, 0x0f, 0x8a, 0xca, 0x1e, 0x08, 0xe5, 0x49, 0xc6, 0xfd, 0x8f, 0x4a, 0xdc, 0x20, 0xa7, + 0xd8, 0xf4, 0xf7, 0xa0, 0x76, 0xfc, 0x5d, 0x90, 0x4d, 0x1d, 0x2f, 0x49, 0x54, 0x14, 0x8a, 0x5b, + 0x7a, 0x67, 0xfc, 0xef, 0xf3, 0x7a, 0x6d, 0xd7, 0xac, 0x1d, 0x7a, 0xb5, 0x8b, 0xb3, 0x7f, 0x1a, + 0xb7, 0x7f, 0xfd, 0xf5, 0xf6, 0x27, 0x3f, 0xf8, 0x3f, 0x39, 0x51, 0xe2, 0x8c, 0xbd, 0x60, 0x96, + 0x29, 0xec, 0x05, 0xaf, 0xb8, 0x17, 0x2c, 0x40, 0x25, 0x5a, 0xd1, 0x3e, 0xb0, 0x98, 0x32, 0x57, + 0x5c, 0x7e, 0x17, 0x52, 0xd6, 0xb2, 0x1f, 0x8c, 0x51, 0xbe, 0xb2, 0x1f, 0x8c, 0x5e, 0xa6, 0xb2, + 0x1f, 0x2c, 0x8f, 0x68, 0x89, 0x29, 0x43, 0x05, 0xea, 0x05, 0x25, 0xe9, 0x01, 0x17, 0xf5, 0x7e, + 0x77, 0x69, 0xbc, 0xaa, 0xb4, 0xee, 0x97, 0x0a, 0x39, 0xec, 0x7c, 0xf2, 0xb5, 0x6c, 0xf2, 0x26, + 0x63, 0xe0, 0x55, 0xd4, 0x80, 0xab, 0xa8, 0x81, 0x56, 0x19, 0x03, 0xac, 0x65, 0x39, 0x89, 0x90, + 0xb6, 0x01, 0x7a, 0xbb, 0xc0, 0x28, 0x75, 0x70, 0x2a, 0xa7, 0x69, 0xd3, 0x72, 0xd2, 0x64, 0xf1, + 0x49, 0xaa, 0xd8, 0xbf, 0xb1, 0x60, 0x4f, 0x2f, 0xdb, 0xc3, 0x41, 0x3d, 0xbb, 0x58, 0xec, 0x17, + 0x87, 0xc0, 0x62, 0xfe, 0xa6, 0x82, 0x30, 0x5e, 0x16, 0xb6, 0xa1, 0x30, 0x5d, 0x60, 0x6a, 0x5a, + 0x79, 0x2a, 0x2a, 0xc6, 0x0b, 0xf3, 0xf7, 0x89, 0x02, 0xfc, 0xc1, 0xf8, 0x32, 0x8c, 0xe7, 0x6f, + 0xbe, 0x18, 0x4f, 0xc8, 0xfa, 0x0f, 0xd9, 0xdf, 0x5c, 0x90, 0xd7, 0x17, 0x3b, 0x15, 0x5d, 0x78, + 0xb7, 0xbb, 0x8c, 0xae, 0x76, 0x89, 0xdd, 0xeb, 0xb2, 0xba, 0xd4, 0xa5, 0x77, 0xa3, 0x4b, 0xef, + 0x3a, 0x97, 0xdb, 0x5d, 0xd6, 0x8b, 0x89, 0x14, 0x3d, 0x25, 0x5c, 0x92, 0x5c, 0xa6, 0x54, 0x79, + 0x4c, 0x49, 0x72, 0x98, 0xd2, 0x8e, 0x3b, 0xcb, 0x3c, 0xde, 0x14, 0x70, 0x9c, 0x59, 0xf6, 0xf1, + 0xa5, 0x98, 0xe3, 0x4a, 0x31, 0xc7, 0x93, 0x32, 0x8e, 0x23, 0xf5, 0x6e, 0xd7, 0x94, 0x25, 0x37, + 0x29, 0xbe, 0x7e, 0x90, 0x52, 0x4f, 0x2c, 0x4b, 0x33, 0x25, 0x0d, 0xb7, 0x94, 0x3e, 0x5d, 0x23, + 0x61, 0xaa, 0x46, 0xd0, 0x34, 0x8d, 0x94, 0x29, 0x1a, 0x71, 0xd3, 0x33, 0xe2, 0xa6, 0x66, 0x64, + 0x4d, 0xcb, 0x54, 0xeb, 0xb0, 0xbd, 0xf4, 0xa9, 0x98, 0x7b, 0x95, 0x49, 0xe4, 0x87, 0x97, 0x65, + 0x06, 0x8c, 0x4c, 0x79, 0x51, 0x29, 0x04, 0x70, 0xcc, 0x61, 0xd1, 0x18, 0x8e, 0x39, 0x94, 0x1e, + 0x14, 0x79, 0xb8, 0x9b, 0xe7, 0xdf, 0x2f, 0xf1, 0x20, 0x6c, 0x5e, 0x3e, 0x94, 0x21, 0xe1, 0xe0, + 0x41, 0x2e, 0x14, 0x8e, 0x45, 0xe3, 0x17, 0xe3, 0xe0, 0xf6, 0xfd, 0xdc, 0x5a, 0x1e, 0xd5, 0x3e, + 0xf9, 0x6d, 0xcf, 0x01, 0x53, 0xf3, 0x07, 0x71, 0xf1, 0xc7, 0xb5, 0x0f, 0xfe, 0x76, 0x1e, 0xd9, + 0xa2, 0xb6, 0x4c, 0x78, 0x64, 0xcb, 0x23, 0x5b, 0x1e, 0xd9, 0xbe, 0xe2, 0x55, 0x16, 0x7e, 0x64, + 0x7b, 0x2f, 0xf0, 0x96, 0x77, 0x70, 0x7b, 0xdf, 0x08, 0x1e, 0xdf, 0xea, 0x96, 0x14, 0x04, 0x24, + 0x87, 0xb2, 0x93, 0x84, 0x98, 0x64, 0x21, 0x26, 0x69, 0xc8, 0x48, 0x1e, 0xd5, 0x68, 0xc8, 0x94, + 0x76, 0x7c, 0x5b, 0x66, 0x72, 0x11, 0x94, 0x64, 0x1e, 0x27, 0x1b, 0x1e, 0xe2, 0xf2, 0x10, 0x97, + 0x87, 0xb8, 0x00, 0xc9, 0x49, 0x56, 0x92, 0x2a, 0x27, 0x59, 0x95, 0x94, 0xb4, 0xb2, 0x57, 0x2f, + 0xe7, 0x10, 0xb7, 0xfc, 0x95, 0x06, 0x12, 0x56, 0x19, 0x2c, 0xae, 0x30, 0xb8, 0x9f, 0x58, 0xab, + 0x72, 0x80, 0x57, 0x42, 0xe9, 0x52, 0xee, 0x5d, 0x04, 0x22, 0xee, 0x20, 0x28, 0xf9, 0xee, 0x01, + 0x12, 0x28, 0x12, 0x28, 0x12, 0x28, 0x12, 0x28, 0x2c, 0x02, 0x55, 0xf6, 0x5d, 0x01, 0x22, 0xba, + 0x00, 0x02, 0xbb, 0x01, 0x42, 0xba, 0x02, 0x62, 0x92, 0x9b, 0xa4, 0x24, 0x27, 0x30, 0xd9, 0x49, + 0x4b, 0x7a, 0x62, 0x93, 0x9f, 0xd8, 0x24, 0x28, 0x33, 0x19, 0x96, 0x9b, 0x14, 0x4b, 0x4e, 0x8e, + 0x72, 0xba, 0x0c, 0x0b, 0x11, 0x67, 0xec, 0x87, 0xc9, 0xc6, 0xb6, 0xa0, 0xfd, 0x89, 0xdb, 0x02, + 0x4c, 0xe9, 0x7a, 0xe1, 0xa5, 0x12, 0xb3, 0xa9, 0x5f, 0xd6, 0x55, 0xd1, 0x02, 0x6f, 0x82, 0x11, + 0x75, 0xe1, 0x51, 0x66, 0xd6, 0x47, 0x2f, 0x18, 0x2b, 0x81, 0x76, 0x1d, 0x46, 0x5e, 0x3f, 0xf1, + 0x87, 0x61, 0xd3, 0xbf, 0xf4, 0xa7, 0xc3, 0xf9, 0xeb, 0x72, 0x2e, 0x7d, 0x91, 0x75, 0xf1, 0x38, + 0xa1, 0xfe, 0x4c, 0xa8, 0x6f, 0x6f, 0x6d, 0xbd, 0xdb, 0x22, 0xdc, 0x31, 0xb8, 0x90, 0x1c, 0x2b, + 0xce, 0x78, 0xd5, 0x44, 0xe1, 0x6e, 0x91, 0x0c, 0x47, 0xc3, 0x60, 0x78, 0x79, 0x23, 0xaa, 0x5b, + 0x72, 0xdf, 0x28, 0x76, 0x4b, 0xd8, 0x2d, 0x61, 0xb7, 0x84, 0xdd, 0x12, 0x76, 0x4b, 0xd8, 0x2d, + 0x61, 0xb7, 0x84, 0xdd, 0x12, 0x76, 0x4b, 0xd8, 0x2d, 0x61, 0xf9, 0xc8, 0x6e, 0x09, 0xbb, 0x25, + 0xec, 0x96, 0xb0, 0x5b, 0x52, 0x59, 0x4e, 0x28, 0x62, 0xd5, 0xce, 0xfd, 0x0c, 0x2f, 0x66, 0xcb, + 0xcd, 0xfd, 0x58, 0x2c, 0xcf, 0x28, 0x11, 0x2b, 0x78, 0xca, 0x77, 0xe2, 0x5b, 0xde, 0xb0, 0x54, + 0x82, 0x1d, 0x12, 0x57, 0x9d, 0xdc, 0x5f, 0x45, 0x71, 0xff, 0x5f, 0xca, 0xbc, 0x7d, 0x99, 0x2b, + 0xaa, 0x56, 0x4c, 0x40, 0xd3, 0x6b, 0xf8, 0x4a, 0xd4, 0x9d, 0x97, 0x9a, 0x2e, 0x45, 0xa4, 0x47, + 0x11, 0xe9, 0xb0, 0xdc, 0xf4, 0xc7, 0xcd, 0x6c, 0x72, 0xc3, 0xbd, 0x51, 0x8a, 0xc4, 0xe7, 0xa5, + 0x1b, 0xaf, 0xe6, 0xbf, 0xc9, 0x1e, 0x70, 0xb7, 0x1c, 0x80, 0x47, 0x72, 0xb7, 0xdc, 0x12, 0x0f, + 0xe4, 0xc6, 0xb6, 0xa7, 0x7f, 0x96, 0xfe, 0xe8, 0xba, 0x51, 0x53, 0xdf, 0x12, 0x15, 0x85, 0x5e, + 0xf0, 0xf0, 0x7a, 0xb5, 0xe2, 0xf7, 0xb7, 0x2d, 0xb7, 0x85, 0xdb, 0xdc, 0x56, 0xf2, 0x17, 0x72, + 0x9b, 0x5b, 0x51, 0x95, 0x01, 0xb7, 0xb9, 0x71, 0x9b, 0xdb, 0x6a, 0x5e, 0x65, 0xe1, 0xdb, 0xdc, + 0x52, 0xc8, 0xaa, 0xb8, 0xbc, 0x55, 0x6e, 0x99, 0x05, 0xdc, 0xe3, 0xa6, 0x5b, 0x3a, 0x10, 0x90, + 0x16, 0xca, 0x4e, 0x0f, 0x62, 0xd2, 0x84, 0x98, 0x74, 0x21, 0x23, 0x6d, 0x14, 0x5f, 0x8e, 0xae, + 0x55, 0x69, 0x8f, 0xdb, 0xa8, 0xdc, 0x19, 0xd3, 0x47, 0xc9, 0x85, 0xcb, 0x47, 0xb8, 0x7c, 0x84, + 0xcb, 0x47, 0xc4, 0xa5, 0x22, 0x71, 0x29, 0x49, 0x56, 0x6a, 0x2a, 0x27, 0x45, 0x95, 0x94, 0xaa, + 0x4a, 0x4f, 0x59, 0x99, 0x01, 0x03, 0x75, 0xe1, 0x8d, 0x83, 0xa4, 0x76, 0xa5, 0x92, 0xc8, 0xef, + 0xcb, 0x51, 0xd4, 0x3c, 0xb2, 0x4b, 0x86, 0xa8, 0x66, 0x83, 0xa2, 0x1a, 0x31, 0xa9, 0x4e, 0x60, + 0xca, 0x93, 0x96, 0xfa, 0xc4, 0xa6, 0x40, 0xb1, 0xa9, 0x50, 0x66, 0x4a, 0x2c, 0x37, 0x35, 0x96, + 0x9c, 0x22, 0xc5, 0xa4, 0xca, 0xcc, 0x90, 0x72, 0x17, 0x4d, 0x2e, 0x8d, 0x7f, 0x65, 0x2e, 0x9e, + 0x14, 0x9a, 0x30, 0xc5, 0x25, 0x4e, 0x89, 0x09, 0x54, 0x70, 0x22, 0x95, 0x9a, 0x50, 0xc5, 0x27, + 0x56, 0xf1, 0x09, 0x56, 0x76, 0xa2, 0x95, 0x91, 0x70, 0x85, 0x24, 0x5e, 0x71, 0x09, 0x38, 0x33, + 0xe8, 0x22, 0xf0, 0x2e, 0x63, 0x79, 0x41, 0x61, 0x1e, 0x47, 0x53, 0xf3, 0x7e, 0xa3, 0xb4, 0x0c, + 0x30, 0x41, 0x4b, 0x4e, 0xd4, 0x00, 0x09, 0x5b, 0x7a, 0xe2, 0x86, 0x49, 0xe0, 0x30, 0x89, 0x1c, + 0x23, 0xa1, 0xcb, 0x4a, 0xec, 0xc2, 0x12, 0x7c, 0xf6, 0x11, 0x8a, 0x59, 0x5f, 0xb1, 0x34, 0xe2, + 0xa9, 0x70, 0x7c, 0xa5, 0xa2, 0x74, 0x3e, 0x58, 0x60, 0xd4, 0x9b, 0x57, 0xbf, 0x0d, 0x81, 0xb6, + 0x59, 0xe1, 0xf8, 0x6a, 0xf2, 0xe1, 0x0a, 0x73, 0x01, 0x2e, 0x27, 0xf8, 0xce, 0x67, 0x25, 0xe4, + 0x50, 0x66, 0xa9, 0x1b, 0x8a, 0x38, 0x9c, 0x21, 0xc5, 0x25, 0xc5, 0x25, 0xc5, 0x25, 0xc5, 0x25, + 0xc5, 0x25, 0xc5, 0xd5, 0x88, 0xe2, 0x86, 0x5e, 0x14, 0x0d, 0xbf, 0xd6, 0x44, 0xa6, 0xd8, 0xfb, + 0x69, 0x76, 0x4b, 0xa0, 0x69, 0xb2, 0x16, 0xbb, 0x3d, 0xfe, 0x92, 0x99, 0x27, 0xd6, 0xa4, 0x2e, + 0x7e, 0x03, 0xe1, 0x77, 0x0b, 0x66, 0xce, 0xb7, 0x65, 0x6d, 0x08, 0xb7, 0x53, 0xf0, 0xe6, 0x2c, + 0xe1, 0x59, 0xe4, 0xa1, 0xeb, 0x78, 0xdf, 0xe8, 0x3a, 0x2b, 0x76, 0x9d, 0xed, 0x77, 0xf4, 0x1d, + 0x3d, 0xf9, 0xa0, 0x5c, 0xab, 0xce, 0xd8, 0x17, 0x13, 0x6c, 0x89, 0x94, 0xb3, 0x70, 0x21, 0x0b, + 0xc2, 0x16, 0xec, 0x12, 0xb9, 0xbf, 0x62, 0xe9, 0xee, 0x83, 0xfa, 0x5c, 0x0d, 0x3b, 0xfb, 0xa6, + 0xfe, 0x70, 0xea, 0xbb, 0xcc, 0x8d, 0x62, 0xf2, 0xe0, 0x5f, 0xed, 0xe9, 0x4f, 0x61, 0x0e, 0xa7, + 0x97, 0xa3, 0x49, 0x98, 0x99, 0x7f, 0xc5, 0x6e, 0xa7, 0xd1, 0x75, 0xc3, 0x9a, 0x3d, 0x75, 0xf7, + 0xde, 0x43, 0xbb, 0x69, 0x63, 0xdb, 0x6d, 0xa6, 0xcf, 0x7a, 0x9c, 0x3e, 0x2a, 0xaf, 0xec, 0x29, + 0xfc, 0xa3, 0x1d, 0xa8, 0xc0, 0xbb, 0x11, 0xa8, 0x30, 0xba, 0x67, 0x15, 0xf5, 0x45, 0xd4, 0x17, + 0xfd, 0x04, 0x2f, 0xd4, 0x17, 0x2d, 0x87, 0x2f, 0xf5, 0x45, 0xcf, 0xa5, 0x33, 0xd4, 0x17, 0x49, + 0x63, 0x98, 0xd4, 0x17, 0xfd, 0x38, 0xfe, 0x51, 0x5f, 0x24, 0x3f, 0x71, 0x4a, 0x4c, 0xa0, 0x82, + 0x13, 0xa9, 0xd4, 0x84, 0x2a, 0x3e, 0xb1, 0x8a, 0x4f, 0xb0, 0xb2, 0x13, 0xad, 0x9c, 0xa6, 0xd2, + 0x1a, 0xf5, 0x45, 0xcb, 0x0d, 0xa2, 0xbe, 0xe8, 0xc5, 0x89, 0x99, 0xc3, 0x97, 0xb8, 0x89, 0x1a, + 0x20, 0x61, 0x4b, 0x4f, 0xdc, 0x30, 0x09, 0x1c, 0x26, 0x91, 0x63, 0x24, 0x74, 0x59, 0x89, 0x5d, + 0x58, 0x82, 0xcf, 0x3e, 0x42, 0xf9, 0xc3, 0x97, 0x13, 0x54, 0xcd, 0x5a, 0xc3, 0x35, 0x89, 0x69, + 0x76, 0x8d, 0x2a, 0x23, 0x1d, 0x1c, 0x41, 0xd4, 0x9d, 0x80, 0x0b, 0xd6, 0x49, 0xbc, 0x23, 0x70, + 0xd1, 0x48, 0x81, 0x77, 0x06, 0x2e, 0x18, 0x29, 0xea, 0x0e, 0x41, 0xb9, 0xb9, 0x8a, 0xd2, 0xbb, + 0xa7, 0x67, 0x28, 0x4a, 0xef, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, + 0xab, 0xbf, 0xd5, 0x46, 0x3c, 0x4a, 0xef, 0x5e, 0x6e, 0x1a, 0xa5, 0x77, 0x2f, 0xaf, 0xb6, 0xa8, + 0x1f, 0x5a, 0x91, 0x99, 0x94, 0xde, 0xe9, 0x9e, 0x45, 0x1e, 0xf7, 0x00, 0xe8, 0x3a, 0x2b, 0x76, + 0x1d, 0x4a, 0xef, 0x74, 0xe5, 0x83, 0x72, 0xad, 0xa2, 0xf4, 0x4e, 0xb2, 0x25, 0x94, 0xde, 0xfd, + 0xd8, 0x2e, 0x78, 0x45, 0xd0, 0x9d, 0x1c, 0x82, 0xc2, 0x3b, 0x39, 0x16, 0x50, 0x78, 0xa7, 0xad, + 0x9b, 0xe9, 0x2e, 0xbb, 0x0b, 0xbc, 0x1b, 0x8a, 0xee, 0xca, 0xfa, 0x60, 0x55, 0x14, 0x0d, 0x23, + 0x71, 0xa2, 0xbb, 0x07, 0x56, 0x51, 0x74, 0x47, 0xd1, 0xdd, 0x4f, 0xf0, 0x42, 0xd1, 0xdd, 0x72, + 0xf8, 0x52, 0x74, 0xf7, 0x5c, 0x2a, 0x43, 0xd1, 0x9d, 0x34, 0x76, 0x49, 0xd1, 0xdd, 0x8f, 0xe3, + 0x1f, 0x45, 0x77, 0xf2, 0x13, 0xa7, 0xc4, 0x04, 0x2a, 0x38, 0x91, 0x4a, 0x4d, 0xa8, 0xe2, 0x13, + 0xab, 0xf8, 0x04, 0x2b, 0x3b, 0xd1, 0xca, 0x69, 0x28, 0xad, 0x51, 0x74, 0xb7, 0xdc, 0x20, 0x8a, + 0xee, 0x5e, 0x9c, 0x98, 0x39, 0x76, 0x89, 0x9b, 0xa8, 0x01, 0x12, 0xb6, 0xf4, 0xc4, 0x0d, 0x93, + 0xc0, 0x61, 0x12, 0x39, 0x46, 0x42, 0x97, 0x95, 0xd8, 0x85, 0x25, 0xf8, 0xec, 0x23, 0xa4, 0xe8, + 0x6e, 0xa5, 0x35, 0x30, 0x45, 0x77, 0xa8, 0x8e, 0x40, 0xd1, 0xdd, 0xeb, 0x8d, 0xa4, 0xe8, 0x4e, + 0x9b, 0x5c, 0x45, 0xd1, 0xdd, 0xd3, 0x33, 0x14, 0x45, 0x77, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, + 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0xdf, 0x6a, 0x23, 0x1e, 0x45, 0x77, 0x2f, 0x37, 0x8d, 0xa2, + 0xbb, 0x97, 0x57, 0x5b, 0x54, 0x0e, 0xad, 0xc8, 0x4c, 0x8a, 0xee, 0x74, 0xcf, 0x22, 0x8f, 0x7b, + 0x00, 0x74, 0x9d, 0x15, 0xbb, 0x0e, 0x45, 0x77, 0xba, 0xf2, 0x41, 0xb9, 0x56, 0x51, 0x74, 0x27, + 0xd9, 0x12, 0x8a, 0xee, 0x7e, 0x6c, 0x17, 0xb8, 0x1a, 0xe8, 0xbe, 0x1c, 0x82, 0xa2, 0x3b, 0x39, + 0x16, 0x50, 0x74, 0xa7, 0xad, 0x9b, 0xe9, 0x2d, 0xba, 0xb3, 0x26, 0x4f, 0x4a, 0xd1, 0x5d, 0x59, + 0x1f, 0xac, 0xfa, 0x36, 0x52, 0x61, 0xac, 0xe4, 0xc9, 0xee, 0x1e, 0xda, 0x45, 0xe1, 0x1d, 0x85, + 0x77, 0x3f, 0x41, 0x0c, 0x85, 0x77, 0xcb, 0xe1, 0x4b, 0xe1, 0xdd, 0x73, 0xe9, 0x0c, 0x85, 0x77, + 0xd2, 0x18, 0x26, 0x85, 0x77, 0x3f, 0x8e, 0x7f, 0x14, 0xde, 0xc9, 0x4f, 0x9c, 0x12, 0x13, 0xa8, + 0xe0, 0x44, 0x2a, 0x35, 0xa1, 0x8a, 0x4f, 0xac, 0xe2, 0x13, 0xac, 0xec, 0x44, 0x2b, 0xa7, 0xa9, + 0xb4, 0x46, 0xe1, 0xdd, 0x72, 0x83, 0x28, 0xbc, 0x7b, 0x71, 0x62, 0xe6, 0xe8, 0x25, 0x6e, 0xa2, + 0x06, 0x48, 0xd8, 0xd2, 0x13, 0x37, 0x4c, 0x02, 0x87, 0x49, 0xe4, 0x18, 0x09, 0x5d, 0x56, 0x62, + 0x17, 0x96, 0xe0, 0xb3, 0x8f, 0x90, 0xc2, 0xbb, 0x95, 0xd6, 0xc0, 0x14, 0xde, 0xa1, 0x3a, 0x02, + 0x85, 0x77, 0xaf, 0x37, 0x92, 0xc2, 0x3b, 0x6d, 0x72, 0x15, 0x85, 0x77, 0x4f, 0xcf, 0x50, 0x14, + 0xde, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xab, 0x8d, + 0x78, 0x14, 0xde, 0xbd, 0xdc, 0x34, 0x0a, 0xef, 0x5e, 0x5e, 0x6d, 0x51, 0x3d, 0xb4, 0x22, 0x33, + 0x29, 0xbc, 0xd3, 0x3d, 0x8b, 0x3c, 0xee, 0x01, 0xd0, 0x75, 0x56, 0xec, 0x3a, 0x14, 0xde, 0xe9, + 0xca, 0x07, 0xe5, 0x5a, 0x45, 0xe1, 0x9d, 0x64, 0x4b, 0x28, 0xbc, 0xfb, 0xb1, 0x5d, 0xe8, 0x8a, + 0xa0, 0x07, 0x82, 0x08, 0x4a, 0xef, 0xe4, 0x58, 0x40, 0xe9, 0x9d, 0xc6, 0x8e, 0xa6, 0xb9, 0xf8, + 0x2e, 0x7d, 0x56, 0xca, 0xef, 0xca, 0xfa, 0x68, 0x47, 0x32, 0x0e, 0x18, 0xb2, 0xd6, 0x9a, 0x88, + 0x36, 0xb8, 0x90, 0x5a, 0x8c, 0x72, 0xbb, 0x1f, 0x21, 0x85, 0x72, 0xbb, 0xe5, 0xf0, 0xa5, 0xdc, + 0xee, 0xb9, 0x14, 0x86, 0x72, 0x3b, 0x69, 0xac, 0x52, 0xcc, 0x31, 0x50, 0x16, 0x71, 0x02, 0xe5, + 0x5d, 0x44, 0xea, 0x42, 0x42, 0xc4, 0x99, 0x8f, 0xf6, 0xed, 0x08, 0xb0, 0xa5, 0x33, 0x23, 0xda, + 0x6f, 0xdf, 0xa6, 0x45, 0xe1, 0x8c, 0xc7, 0x92, 0xcd, 0x95, 0x41, 0xd4, 0x25, 0x28, 0x43, 0x45, + 0x29, 0x42, 0xb9, 0x3a, 0x81, 0x5c, 0x8e, 0x5c, 0x8e, 0x5c, 0x8e, 0x5c, 0xae, 0xc4, 0x8f, 0x44, + 0xcc, 0xea, 0x84, 0x91, 0xac, 0x79, 0x4a, 0x59, 0x6d, 0x0f, 0x61, 0xed, 0x0f, 0x71, 0xa9, 0x53, + 0x62, 0x0a, 0x15, 0x9c, 0x4a, 0xa5, 0xa6, 0x54, 0xf1, 0xa9, 0x55, 0x7c, 0x8a, 0x95, 0x9d, 0x6a, + 0x65, 0xa4, 0x5c, 0x21, 0xa9, 0x57, 0x5e, 0x3b, 0x65, 0x21, 0x62, 0x4d, 0x8f, 0xc6, 0xc4, 0x39, + 0x60, 0x56, 0x37, 0xfe, 0x2e, 0xc8, 0xa6, 0x8e, 0x97, 0x24, 0x2a, 0x0a, 0xc5, 0x8d, 0xcf, 0x1a, + 0xff, 0xfb, 0xf5, 0xd7, 0xcf, 0xeb, 0xb5, 0xdd, 0xb3, 0x7f, 0x3f, 0x6f, 0xd4, 0x76, 0xcf, 0xd2, + 0x6f, 0x37, 0xa6, 0xbf, 0xa4, 0xdf, 0x6f, 0x7e, 0x5e, 0xaf, 0x35, 0xe6, 0xdf, 0x6f, 0x7d, 0x5e, + 0xaf, 0x6d, 0x9d, 0xbd, 0xf9, 0xeb, 0xaf, 0xb7, 0x6f, 0xfe, 0x79, 0x77, 0xfb, 0xfc, 0x3f, 0x58, + 0x9f, 0xfd, 0x65, 0x6f, 0xfe, 0xfd, 0xf5, 0xf3, 0x46, 0x6d, 0xf3, 0x6c, 0xfe, 0x2f, 0xef, 0x3e, + 0xaf, 0xd7, 0x36, 0xcf, 0xde, 0xbc, 0xf9, 0x3f, 0x39, 0x31, 0xe8, 0x8c, 0x03, 0x12, 0x52, 0xa2, + 0xa0, 0x31, 0x1e, 0xd5, 0x06, 0xc3, 0xaf, 0xa1, 0x3c, 0xf2, 0x3f, 0x37, 0x8c, 0xec, 0x9f, 0xec, + 0x9f, 0xec, 0x9f, 0xec, 0x9f, 0xec, 0x9f, 0xec, 0xbf, 0x32, 0xec, 0xff, 0x7c, 0x38, 0x0c, 0x94, + 0x17, 0x4a, 0x64, 0xfe, 0x1b, 0x24, 0x6f, 0x02, 0x2c, 0xe0, 0x74, 0xeb, 0x43, 0x7b, 0xc0, 0xa7, + 0x5b, 0x05, 0xcc, 0x8d, 0x97, 0x38, 0x1b, 0xf0, 0x4b, 0x85, 0x3c, 0x68, 0xc2, 0xb0, 0x4a, 0x67, + 0x57, 0x32, 0x56, 0x28, 0x89, 0x5a, 0x95, 0x24, 0x6a, 0x25, 0x92, 0x8c, 0xd5, 0x47, 0x65, 0x79, + 0x88, 0x90, 0xdc, 0x02, 0x9e, 0x53, 0x8c, 0x52, 0x27, 0xae, 0x72, 0x92, 0x46, 0x94, 0x93, 0x22, + 0x8b, 0x4f, 0x50, 0xc5, 0xfe, 0x8d, 0x05, 0x3b, 0x7a, 0xd9, 0x0e, 0x8e, 0xea, 0xd8, 0xc5, 0x82, + 0xbf, 0x38, 0x08, 0x16, 0xf3, 0x37, 0x15, 0x04, 0xf2, 0xb2, 0xc0, 0x0d, 0x06, 0xea, 0x02, 0xb3, + 0x53, 0x0e, 0xd9, 0xa8, 0x18, 0x4f, 0xcc, 0xdf, 0x2f, 0x0a, 0xf0, 0x89, 0xf4, 0x20, 0xdb, 0x0f, + 0x13, 0x15, 0x5d, 0x78, 0x7d, 0x55, 0xf3, 0x06, 0x83, 0x48, 0xc5, 0xb1, 0x2a, 0xee, 0x86, 0x80, + 0x87, 0x47, 0xea, 0xdf, 0xb3, 0xa4, 0xa0, 0xc8, 0x50, 0xec, 0xcc, 0x75, 0xe1, 0x47, 0x44, 0x65, + 0x1c, 0x01, 0x95, 0x78, 0xc4, 0x53, 0xd6, 0x11, 0x4e, 0xe9, 0x47, 0x34, 0xa5, 0x1f, 0xc1, 0x94, + 0x7b, 0xc4, 0xa2, 0x17, 0x5b, 0x29, 0x7a, 0x06, 0xb9, 0x24, 0x31, 0x4e, 0xa9, 0xe2, 0x9b, 0x92, + 0xc4, 0x36, 0xa5, 0xcd, 0x08, 0x94, 0x39, 0x0b, 0x20, 0xe0, 0xcc, 0xbf, 0xec, 0xb3, 0x7d, 0x31, + 0x67, 0xf8, 0x62, 0xce, 0xea, 0x65, 0x9c, 0xc9, 0xeb, 0xdd, 0xd3, 0x29, 0x4b, 0xcc, 0x62, 0xcc, + 0x68, 0x7c, 0x79, 0xee, 0x36, 0x8f, 0x38, 0x73, 0x43, 0xca, 0x3a, 0x57, 0x2a, 0x75, 0x40, 0xad, + 0xf4, 0x81, 0x34, 0x09, 0x03, 0x68, 0x82, 0x06, 0xce, 0xa4, 0x0c, 0x98, 0x89, 0x1b, 0x28, 0x13, + 0x37, 0x40, 0x26, 0x6b, 0x60, 0xac, 0x5a, 0x67, 0xf1, 0xa5, 0x0f, 0x80, 0x3d, 0xec, 0x4d, 0x95, + 0x9b, 0x41, 0xd6, 0x84, 0xe8, 0x3b, 0xc4, 0xe8, 0x39, 0x8a, 0xd5, 0x6f, 0x94, 0xa8, 0xcf, 0x38, + 0xab, 0x94, 0xd3, 0x73, 0xf6, 0x65, 0xd1, 0x18, 0xce, 0xbe, 0x94, 0x9e, 0x07, 0x79, 0xe4, 0x9f, + 0xe7, 0xdf, 0x2f, 0xf6, 0x74, 0xf4, 0x3b, 0xe7, 0x51, 0x65, 0x4c, 0x83, 0xf2, 0xb4, 0x1f, 0x0a, + 0xd7, 0x50, 0x78, 0xc6, 0x39, 0xeb, 0xb7, 0xe7, 0xc6, 0x9b, 0x99, 0xed, 0x3c, 0xe9, 0x7f, 0xf2, + 0xbb, 0xbf, 0xfb, 0xfc, 0x17, 0xa6, 0x3d, 0x4a, 0x3c, 0xeb, 0x2f, 0x69, 0xf2, 0x84, 0xa7, 0xfd, + 0x5a, 0xf5, 0xd7, 0x78, 0xda, 0xcf, 0xd3, 0x7e, 0x7c, 0xb6, 0x52, 0xf8, 0x69, 0x7f, 0x36, 0xba, + 0x5a, 0xda, 0x81, 0x7f, 0x66, 0x01, 0xcf, 0xfc, 0x75, 0x4b, 0x07, 0x02, 0xd2, 0x42, 0xd9, 0xe9, + 0x41, 0x4c, 0x9a, 0x10, 0x93, 0x2e, 0x64, 0xa4, 0x8d, 0x6a, 0x34, 0x75, 0x4a, 0x3b, 0xf3, 0x2f, + 0x79, 0x61, 0xa5, 0x8c, 0x05, 0x95, 0x25, 0xef, 0x70, 0xe6, 0x89, 0x3f, 0x4f, 0xfc, 0x45, 0xa7, + 0x22, 0x71, 0x29, 0x49, 0x56, 0x6a, 0x2a, 0x27, 0x45, 0x95, 0x94, 0xaa, 0x4a, 0x4f, 0x59, 0x99, + 0x01, 0x03, 0x75, 0xe1, 0x8d, 0x83, 0x64, 0x7e, 0x8f, 0x99, 0x98, 0x5b, 0x09, 0x1e, 0xd9, 0xc5, + 0xeb, 0x09, 0x78, 0x3d, 0x81, 0xf8, 0x94, 0x27, 0x2d, 0xf5, 0x89, 0x4d, 0x81, 0x62, 0x53, 0xa1, + 0xcc, 0x94, 0x58, 0x6e, 0x6a, 0x2c, 0x39, 0x45, 0x8a, 0x49, 0x95, 0x99, 0x21, 0x32, 0xee, 0xef, + 0x59, 0x88, 0x7f, 0x12, 0xee, 0xf1, 0x11, 0x96, 0x30, 0xc5, 0x25, 0x4e, 0x89, 0x09, 0x54, 0x70, + 0x22, 0x95, 0x9a, 0x50, 0xc5, 0x27, 0x56, 0xf1, 0x09, 0x56, 0x76, 0xa2, 0x95, 0x91, 0x70, 0x85, + 0x24, 0x5e, 0x71, 0x09, 0x38, 0x33, 0xe8, 0x22, 0xf0, 0x2e, 0x63, 0x79, 0x41, 0x61, 0x1e, 0x47, + 0x53, 0xf3, 0x84, 0xf9, 0x9b, 0xac, 0xbd, 0xe1, 0x62, 0x13, 0xb4, 0xe4, 0x44, 0x0d, 0x90, 0xb0, + 0xa5, 0x27, 0x6e, 0x98, 0x04, 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, 0xc1, + 0x67, 0x1f, 0xa1, 0xb8, 0x3d, 0xe4, 0x0b, 0x11, 0x4f, 0x85, 0xe3, 0x2b, 0x15, 0xa5, 0x73, 0xce, + 0x02, 0xa3, 0xde, 0xbc, 0xfa, 0x6d, 0x08, 0xb4, 0xcd, 0x0a, 0xc7, 0x57, 0x93, 0x0f, 0x57, 0x98, + 0x0b, 0xfc, 0x42, 0x67, 0x5c, 0xfc, 0xac, 0x84, 0x1c, 0xca, 0x2c, 0x75, 0x43, 0x11, 0x87, 0x33, + 0xa4, 0xb8, 0xa4, 0xb8, 0xa4, 0xb8, 0xa4, 0xb8, 0xa4, 0xb8, 0xa4, 0xb8, 0x1a, 0x51, 0xdc, 0xd0, + 0x8b, 0xa2, 0xe1, 0xd7, 0x9a, 0xc8, 0x14, 0x7b, 0x3f, 0xcd, 0x6e, 0x09, 0x34, 0xad, 0xeb, 0x85, + 0x97, 0x4a, 0xdc, 0xfd, 0x9b, 0xf3, 0x2f, 0x99, 0x79, 0x62, 0x6d, 0xb6, 0x05, 0x40, 0x6c, 0x22, + 0x13, 0xce, 0xef, 0x16, 0xcc, 0xfc, 0xe8, 0x05, 0x63, 0x25, 0xe7, 0x0c, 0x74, 0xa9, 0x9d, 0x87, + 0x91, 0xd7, 0x9f, 0x14, 0xd2, 0x4d, 0xff, 0xd2, 0x9f, 0xee, 0x5b, 0x58, 0x17, 0x6b, 0xef, 0xed, + 0x6f, 0x82, 0x5d, 0xc7, 0xfb, 0x46, 0xd7, 0x59, 0xb1, 0xeb, 0x6c, 0xbf, 0xa3, 0xef, 0xe8, 0xc9, + 0x07, 0xe5, 0x5a, 0x75, 0xc6, 0xbe, 0x98, 0x60, 0x4b, 0xa4, 0x9c, 0x85, 0x0b, 0xbb, 0x6f, 0x30, + 0xb3, 0x4b, 0xf6, 0x1e, 0x8e, 0x9f, 0xde, 0x3b, 0xf8, 0x70, 0xea, 0x5b, 0xc2, 0x35, 0x84, 0x72, + 0xe0, 0xcf, 0x0b, 0x3e, 0x79, 0xc1, 0x67, 0x4e, 0x8e, 0x26, 0x61, 0x66, 0x7e, 0x05, 0x9b, 0x72, + 0xbe, 0x7f, 0x47, 0x9b, 0xdb, 0x4c, 0x9f, 0xf5, 0x38, 0x7d, 0xd4, 0xaa, 0x5e, 0x6a, 0xfa, 0x5b, + 0x99, 0x1a, 0xa3, 0xc0, 0xbb, 0x11, 0xa8, 0x30, 0xba, 0x67, 0x15, 0xf5, 0x45, 0xd4, 0x17, 0xfd, + 0x04, 0x2f, 0xd4, 0x17, 0x2d, 0x87, 0x2f, 0xf5, 0x45, 0xcf, 0xa5, 0x33, 0xd4, 0x17, 0x49, 0x63, + 0x98, 0xd4, 0x17, 0xfd, 0x38, 0xfe, 0x51, 0x5f, 0x24, 0x3f, 0x71, 0x4a, 0x4c, 0xa0, 0x82, 0x13, + 0xa9, 0xd4, 0x84, 0x2a, 0x3e, 0xb1, 0x8a, 0x4f, 0xb0, 0xb2, 0x13, 0xad, 0x9c, 0xa6, 0xd2, 0x1a, + 0xf5, 0x45, 0xcb, 0x0d, 0xa2, 0xbe, 0xe8, 0xc5, 0x89, 0x99, 0xc3, 0x97, 0xb8, 0x89, 0x1a, 0x20, + 0x61, 0x4b, 0x4f, 0xdc, 0x30, 0x09, 0x1c, 0x26, 0x91, 0x63, 0x24, 0x74, 0x59, 0x89, 0x5d, 0x58, + 0x82, 0xcf, 0x3e, 0x42, 0xf9, 0xc3, 0x97, 0x13, 0x54, 0xcd, 0x5a, 0xc3, 0x35, 0x89, 0x69, 0x76, + 0x8d, 0x2a, 0x23, 0x1d, 0x1c, 0x41, 0xc4, 0xd5, 0x4f, 0x4b, 0xad, 0x93, 0x74, 0x25, 0xd4, 0x72, + 0x23, 0x05, 0x5d, 0x15, 0xb5, 0xd4, 0x48, 0x11, 0x57, 0x48, 0xc9, 0xcf, 0x55, 0x94, 0xde, 0x3d, + 0x3d, 0x43, 0x51, 0x7a, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xac, 0xfe, 0x58, + 0xfd, 0xad, 0x36, 0xe2, 0x51, 0x7a, 0xf7, 0x72, 0xd3, 0x28, 0xbd, 0x7b, 0x79, 0xb5, 0x45, 0xfd, + 0xd0, 0x8a, 0xcc, 0xa4, 0xf4, 0x4e, 0xf7, 0x2c, 0xf2, 0xb8, 0x07, 0x40, 0xd7, 0x59, 0xb1, 0xeb, + 0x50, 0x7a, 0xa7, 0x2b, 0x1f, 0x94, 0x6b, 0x15, 0xa5, 0x77, 0x92, 0x2d, 0xa1, 0xf4, 0xee, 0xc7, + 0x76, 0xc1, 0x2b, 0x82, 0xee, 0xe4, 0x10, 0x14, 0xde, 0xc9, 0xb1, 0x80, 0xc2, 0x3b, 0x6d, 0xdd, + 0x4c, 0x77, 0xd9, 0x5d, 0xe0, 0xdd, 0x50, 0x74, 0x57, 0xd6, 0x07, 0xab, 0xa2, 0x68, 0x18, 0x89, + 0x13, 0xdd, 0x3d, 0xb0, 0x8a, 0xa2, 0x3b, 0x8a, 0xee, 0x7e, 0x82, 0x17, 0x8a, 0xee, 0x96, 0xc3, + 0x97, 0xa2, 0xbb, 0xe7, 0x52, 0x19, 0x8a, 0xee, 0xa4, 0xb1, 0x4b, 0x8a, 0xee, 0x7e, 0x1c, 0xff, + 0x28, 0xba, 0x93, 0x9f, 0x38, 0x25, 0x26, 0x50, 0xc1, 0x89, 0x54, 0x6a, 0x42, 0x15, 0x9f, 0x58, + 0xc5, 0x27, 0x58, 0xd9, 0x89, 0x56, 0x4e, 0x43, 0x69, 0x8d, 0xa2, 0xbb, 0xe5, 0x06, 0x51, 0x74, + 0xf7, 0xe2, 0xc4, 0xcc, 0xb1, 0x4b, 0xdc, 0x44, 0x0d, 0x90, 0xb0, 0xa5, 0x27, 0x6e, 0x98, 0x04, + 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, 0xc1, 0x67, 0x1f, 0x21, 0x45, 0x77, + 0x2b, 0xad, 0x81, 0x29, 0xba, 0x43, 0x75, 0x04, 0x8a, 0xee, 0x5e, 0x6f, 0x24, 0x45, 0x77, 0xda, + 0xe4, 0x2a, 0x8a, 0xee, 0x9e, 0x9e, 0xa1, 0x28, 0xba, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, 0x1f, + 0xab, 0x3f, 0x56, 0x7f, 0xac, 0xfe, 0x56, 0x1b, 0xf1, 0x28, 0xba, 0x7b, 0xb9, 0x69, 0x14, 0xdd, + 0xbd, 0xbc, 0xda, 0xa2, 0x72, 0x68, 0x45, 0x66, 0x52, 0x74, 0xa7, 0x7b, 0x16, 0x79, 0xdc, 0x03, + 0xa0, 0xeb, 0xac, 0xd8, 0x75, 0x28, 0xba, 0xd3, 0x95, 0x0f, 0xca, 0xb5, 0x8a, 0xa2, 0x3b, 0xc9, + 0x96, 0x50, 0x74, 0xf7, 0x63, 0xbb, 0xc0, 0xd5, 0x40, 0xf7, 0xe5, 0x10, 0x14, 0xdd, 0xc9, 0xb1, + 0x80, 0xa2, 0x3b, 0x6d, 0xdd, 0x4c, 0x6f, 0xd1, 0x9d, 0x35, 0x79, 0x52, 0x8a, 0xee, 0xca, 0xfa, + 0x60, 0xd5, 0xb7, 0x91, 0x0a, 0x63, 0x25, 0x4f, 0x76, 0xf7, 0xd0, 0x2e, 0x0a, 0xef, 0x28, 0xbc, + 0xfb, 0x09, 0x62, 0x28, 0xbc, 0x5b, 0x0e, 0x5f, 0x0a, 0xef, 0x9e, 0x4b, 0x67, 0x28, 0xbc, 0x93, + 0xc6, 0x30, 0x29, 0xbc, 0xfb, 0x71, 0xfc, 0xa3, 0xf0, 0x4e, 0x7e, 0xe2, 0x94, 0x98, 0x40, 0x05, + 0x27, 0x52, 0xa9, 0x09, 0x55, 0x7c, 0x62, 0x15, 0x9f, 0x60, 0x65, 0x27, 0x5a, 0x39, 0x4d, 0xa5, + 0x35, 0x0a, 0xef, 0x96, 0x1b, 0x44, 0xe1, 0xdd, 0x8b, 0x13, 0x33, 0x47, 0x2f, 0x71, 0x13, 0x35, + 0x40, 0xc2, 0x96, 0x9e, 0xb8, 0x61, 0x12, 0x38, 0x4c, 0x22, 0xc7, 0x48, 0xe8, 0xb2, 0x12, 0xbb, + 0xb0, 0x04, 0x9f, 0x7d, 0x84, 0x14, 0xde, 0xad, 0xb4, 0x06, 0xa6, 0xf0, 0x0e, 0xd5, 0x11, 0x28, + 0xbc, 0x7b, 0xbd, 0x91, 0x14, 0xde, 0x69, 0x93, 0xab, 0x28, 0xbc, 0x7b, 0x7a, 0x86, 0xa2, 0xf0, + 0x8e, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x5b, 0x6d, 0xc4, + 0xa3, 0xf0, 0xee, 0xe5, 0xa6, 0x51, 0x78, 0xf7, 0xf2, 0x6a, 0x8b, 0xea, 0xa1, 0x15, 0x99, 0x49, + 0xe1, 0x9d, 0xee, 0x59, 0xe4, 0x71, 0x0f, 0x80, 0xae, 0xb3, 0x62, 0xd7, 0xa1, 0xf0, 0x4e, 0x57, + 0x3e, 0x28, 0xd7, 0x2a, 0x0a, 0xef, 0x24, 0x5b, 0x42, 0xe1, 0xdd, 0x8f, 0xed, 0x42, 0x57, 0x04, + 0x3d, 0x10, 0x44, 0x50, 0x7a, 0x27, 0xc7, 0x02, 0x4a, 0xef, 0x34, 0x76, 0x34, 0xcd, 0xc5, 0x77, + 0xe9, 0xb3, 0x52, 0x7e, 0x57, 0xd6, 0x47, 0x3b, 0x92, 0x71, 0xc0, 0x90, 0xb5, 0xd6, 0x44, 0xb4, + 0xc1, 0x85, 0xd4, 0x62, 0x94, 0xdb, 0xfd, 0x08, 0x29, 0x94, 0xdb, 0x2d, 0x87, 0x2f, 0xe5, 0x76, + 0xcf, 0xa5, 0x30, 0x94, 0xdb, 0x49, 0x63, 0x95, 0x62, 0x8e, 0x81, 0xb2, 0x88, 0x13, 0x28, 0xef, + 0x22, 0x52, 0x17, 0x12, 0x22, 0xce, 0x7c, 0xb4, 0x6f, 0x47, 0x80, 0x2d, 0x9d, 0x19, 0xd1, 0x7e, + 0xfb, 0x36, 0x2d, 0x0a, 0x67, 0x3c, 0x96, 0x6c, 0xae, 0x0c, 0xa2, 0x2e, 0x41, 0x19, 0x2a, 0x4a, + 0x11, 0xca, 0xd5, 0x09, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0x25, 0x7e, 0x24, 0x62, + 0x56, 0x27, 0x8c, 0x64, 0xcd, 0x53, 0xca, 0x6a, 0x7b, 0x08, 0x6b, 0x7f, 0x88, 0x4b, 0x9d, 0x12, + 0x53, 0xa8, 0xe0, 0x54, 0x2a, 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, 0x53, 0xac, 0xec, 0x54, 0x2b, + 0x23, 0xe5, 0x0a, 0x49, 0xbd, 0xf2, 0xda, 0x29, 0x0b, 0x11, 0x6b, 0x7a, 0x34, 0x26, 0xce, 0x01, + 0xb3, 0xba, 0xf1, 0x77, 0x41, 0x36, 0x75, 0xbc, 0x24, 0x51, 0x51, 0x28, 0x6e, 0x7c, 0xd6, 0xf8, + 0xdf, 0xaf, 0xbf, 0x7e, 0x5e, 0xaf, 0xed, 0x9e, 0xfd, 0xfb, 0x79, 0xa3, 0xb6, 0x7b, 0x96, 0x7e, + 0xbb, 0x31, 0xfd, 0x25, 0xfd, 0x7e, 0xf3, 0xf3, 0x7a, 0xad, 0x31, 0xff, 0x7e, 0xeb, 0xf3, 0x7a, + 0x6d, 0xeb, 0xec, 0xcd, 0x5f, 0x7f, 0xbd, 0x7d, 0xf3, 0xcf, 0xbb, 0xdb, 0xe7, 0xff, 0xc1, 0xfa, + 0xec, 0x2f, 0x7b, 0xf3, 0xef, 0xaf, 0x9f, 0x37, 0x6a, 0x9b, 0x67, 0xf3, 0x7f, 0x79, 0xf7, 0x79, + 0xbd, 0xb6, 0x79, 0xf6, 0xe6, 0xcd, 0xff, 0xc9, 0x89, 0x41, 0x67, 0x1c, 0x90, 0x90, 0x12, 0x05, + 0x8d, 0xf1, 0xa8, 0x36, 0x18, 0x7e, 0x0d, 0xe5, 0x91, 0xff, 0xb9, 0x61, 0x64, 0xff, 0x64, 0xff, + 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x95, 0x61, 0xff, 0xe7, 0xc3, 0x61, 0xa0, 0xbc, + 0x50, 0x22, 0xf3, 0xdf, 0x20, 0x79, 0x13, 0x60, 0x01, 0xa7, 0x5b, 0x1f, 0xda, 0x03, 0x3e, 0xdd, + 0x2a, 0x60, 0x6e, 0xbc, 0xc4, 0xd9, 0x80, 0x5f, 0x2a, 0xe4, 0x41, 0x13, 0x86, 0x55, 0x3a, 0xbb, + 0x92, 0xb1, 0x42, 0x49, 0xd4, 0xaa, 0x24, 0x51, 0x2b, 0x91, 0x64, 0xac, 0x3e, 0x2a, 0xcb, 0x43, + 0x84, 0xe4, 0x16, 0xf0, 0x9c, 0x62, 0x94, 0x3a, 0x71, 0x95, 0x93, 0x34, 0xa2, 0x9c, 0x14, 0x59, + 0x7c, 0x82, 0x2a, 0xf6, 0x6f, 0x2c, 0xd8, 0xd1, 0xcb, 0x76, 0x70, 0x54, 0xc7, 0x2e, 0x16, 0xfc, + 0xc5, 0x41, 0xb0, 0x98, 0xbf, 0xa9, 0x20, 0x90, 0x97, 0x05, 0x6e, 0x30, 0x50, 0x17, 0x98, 0x9d, + 0x72, 0xc8, 0x46, 0xc5, 0x78, 0x62, 0xfe, 0x7e, 0x51, 0x80, 0x4f, 0xa4, 0x07, 0xd9, 0x71, 0x14, + 0x14, 0x78, 0x27, 0xc0, 0xc3, 0x43, 0xf4, 0xf4, 0xef, 0x2e, 0xc8, 0xfb, 0x8b, 0x9d, 0xab, 0x2e, + 0xfc, 0x18, 0xa8, 0x8c, 0x63, 0x9e, 0x12, 0x8f, 0x71, 0xca, 0x3a, 0xa6, 0x29, 0xfd, 0x18, 0xa6, + 0xf4, 0x63, 0x96, 0x72, 0x8f, 0x51, 0xf4, 0x62, 0x24, 0x45, 0xcf, 0x19, 0xdf, 0x85, 0xdd, 0xe2, + 0x1d, 0x67, 0x21, 0xf2, 0x17, 0xed, 0x38, 0xe5, 0x08, 0x6b, 0x4a, 0x9b, 0x07, 0x28, 0xf3, 0xdc, + 0x5f, 0xc0, 0xf9, 0x7e, 0xd9, 0xe7, 0xf8, 0x62, 0xce, 0xeb, 0xc5, 0x9c, 0xcb, 0xcb, 0x38, 0x7f, + 0xd7, 0xbb, 0x7f, 0x53, 0x96, 0x70, 0xc5, 0x98, 0x97, 0xa7, 0xb5, 0x70, 0x7c, 0x75, 0xae, 0xca, + 0x3b, 0xbd, 0xb8, 0x4b, 0x33, 0x8f, 0x0c, 0x2a, 0xeb, 0x4c, 0xa9, 0xd4, 0xe1, 0xb4, 0xd2, 0x87, + 0xd1, 0x24, 0x0c, 0x9f, 0x09, 0x1a, 0x36, 0x93, 0x32, 0x5c, 0x26, 0x6e, 0x98, 0x4c, 0xdc, 0xf0, + 0x98, 0xac, 0x61, 0xb1, 0x6a, 0x9d, 0xc3, 0x97, 0x3e, 0xfc, 0x25, 0x68, 0x83, 0x86, 0x84, 0xcd, + 0x19, 0x8b, 0x1b, 0x33, 0x1e, 0x27, 0xd7, 0xaa, 0x9c, 0xfd, 0x95, 0x50, 0xc6, 0x94, 0xbb, 0x22, + 0x43, 0xc4, 0x6a, 0x8c, 0x92, 0x57, 0x62, 0x90, 0x44, 0x91, 0x44, 0x91, 0x44, 0x91, 0x44, 0x61, + 0x91, 0xa8, 0xb2, 0x57, 0x58, 0x08, 0xb9, 0x6c, 0x5c, 0xd4, 0xe5, 0xe2, 0xdc, 0xd3, 0x29, 0x2f, + 0xb1, 0x09, 0x4c, 0x70, 0xd2, 0x12, 0x9d, 0xd8, 0x84, 0x27, 0x36, 0xf1, 0xc9, 0x4c, 0x80, 0xe5, + 0x26, 0xc2, 0x92, 0x13, 0xa2, 0x9c, 0xee, 0xc2, 0x42, 0xc4, 0x51, 0xe1, 0xf8, 0x4a, 0x45, 0xe9, + 0x60, 0x9a, 0xa0, 0x5d, 0x9d, 0x02, 0xae, 0xe1, 0x16, 0x72, 0xed, 0x76, 0xd9, 0x90, 0x15, 0x75, + 0xad, 0xb6, 0xc8, 0x6b, 0xb4, 0x45, 0x5e, 0x9b, 0x2d, 0xeb, 0x9a, 0xec, 0x6a, 0x6e, 0x98, 0x95, + 0x72, 0x2e, 0xb9, 0x10, 0xf4, 0x65, 0x9c, 0x4f, 0xb2, 0x32, 0x61, 0x65, 0xc2, 0xca, 0x84, 0x95, + 0x09, 0x2b, 0x13, 0x56, 0x26, 0xdf, 0x89, 0x38, 0x63, 0x3f, 0x4c, 0xde, 0x6d, 0x0a, 0x2a, 0x4a, + 0x24, 0xdc, 0x1f, 0x20, 0xeb, 0x46, 0x68, 0x41, 0x2b, 0x52, 0x24, 0xde, 0xf8, 0x2c, 0xf4, 0x9a, + 0xda, 0xec, 0x5a, 0x5a, 0x69, 0x76, 0x09, 0xbe, 0x85, 0x56, 0xd0, 0x8d, 0xcd, 0x22, 0x6f, 0x68, + 0x96, 0x0e, 0xf5, 0xc6, 0xe6, 0x6e, 0x63, 0x77, 0x7b, 0x67, 0x73, 0x77, 0x8b, 0x98, 0xc7, 0x20, + 0x44, 0x72, 0xac, 0x38, 0x63, 0xeb, 0xa4, 0xf8, 0xd6, 0x49, 0x26, 0x11, 0xbe, 0xf0, 0xfa, 0xaa, + 0xe6, 0x0d, 0x06, 0x91, 0x8a, 0x05, 0x9d, 0xe8, 0x2e, 0xb1, 0x8f, 0x8d, 0x14, 0x36, 0x52, 0xd8, + 0x48, 0x61, 0x23, 0x85, 0x8d, 0x14, 0x36, 0x52, 0xc4, 0x44, 0x9c, 0x69, 0xae, 0x92, 0x91, 0xa1, + 0xd6, 0x84, 0x5d, 0x16, 0x20, 0xee, 0x92, 0x80, 0x62, 0x2f, 0x07, 0x10, 0xb0, 0xfc, 0x9f, 0xe4, + 0xba, 0x24, 0x72, 0x1d, 0x2a, 0xff, 0xf2, 0xcb, 0xf9, 0x30, 0x12, 0xca, 0xad, 0x17, 0xcc, 0x23, + 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, + 0xb5, 0x26, 0xb5, 0x96, 0x47, 0xad, 0x47, 0x71, 0x28, 0x6e, 0xda, 0xef, 0x9e, 0x4d, 0x24, 0xd1, + 0x24, 0xd1, 0x24, 0xd1, 0x24, 0xd1, 0x24, 0xd1, 0x24, 0xd1, 0x62, 0x22, 0xce, 0xd8, 0x0f, 0x93, + 0xdf, 0x05, 0xb1, 0xe7, 0x2d, 0xce, 0xf9, 0x3d, 0xfa, 0xe2, 0x9c, 0x1f, 0x02, 0xaf, 0x59, 0x30, + 0x8b, 0x73, 0x7e, 0x68, 0xd1, 0xf9, 0x21, 0xd4, 0x39, 0xe7, 0xf7, 0x6c, 0xa8, 0x6f, 0x6e, 0x71, + 0xc0, 0x0f, 0x84, 0x08, 0xc9, 0xb1, 0x82, 0x8d, 0x92, 0xe2, 0xdd, 0x22, 0x8e, 0x82, 0xcb, 0xda, + 0xf5, 0xcc, 0x6b, 0x85, 0x34, 0x4a, 0xee, 0xd9, 0xc4, 0x46, 0x09, 0x1b, 0x25, 0x6c, 0x94, 0xb0, + 0x51, 0xc2, 0x46, 0x09, 0x1b, 0x25, 0xa2, 0x1a, 0x25, 0x54, 0x44, 0xb2, 0x53, 0xc2, 0x4e, 0x09, + 0x3b, 0x25, 0xec, 0x94, 0xb0, 0x53, 0xf2, 0x2a, 0xa8, 0x53, 0x11, 0xc9, 0x86, 0x09, 0x68, 0xc3, + 0x84, 0x1b, 0xd1, 0x1e, 0xa6, 0x79, 0x6e, 0x44, 0x7b, 0x92, 0x51, 0xdc, 0x88, 0x56, 0xb6, 0xfb, + 0x18, 0xf1, 0x4d, 0x9c, 0xa8, 0xab, 0x9a, 0x3f, 0x10, 0xd4, 0xf4, 0xcb, 0x4c, 0x62, 0xcf, 0x8f, + 0x3d, 0xbf, 0x9f, 0x80, 0x85, 0x3d, 0xbf, 0xe5, 0xf0, 0x65, 0xcf, 0xef, 0x99, 0x86, 0xb1, 0xe7, + 0x27, 0x8e, 0xda, 0xc9, 0xeb, 0xf9, 0x49, 0x49, 0x4f, 0x6b, 0x94, 0x17, 0xfc, 0xc4, 0xa0, 0xff, + 0x7d, 0x5e, 0xaf, 0xed, 0x9a, 0xb5, 0x43, 0xaf, 0x76, 0x71, 0xf6, 0x4f, 0xe3, 0xf6, 0xaf, 0xbf, + 0xde, 0xfe, 0xe4, 0x07, 0x94, 0x08, 0xf0, 0x3a, 0x96, 0x62, 0x12, 0x4d, 0x18, 0x0e, 0x93, 0x74, + 0xc5, 0x7b, 0xa9, 0xb7, 0xb2, 0xc4, 0xfd, 0x2f, 0xea, 0xca, 0x1b, 0xcd, 0x2e, 0x74, 0xab, 0x0f, + 0x47, 0x2a, 0xec, 0x4f, 0xd9, 0x66, 0x2d, 0x54, 0xc9, 0xd7, 0x61, 0xf4, 0x77, 0x6d, 0xbe, 0x98, + 0xb8, 0xfe, 0xf8, 0x07, 0xf1, 0xc2, 0x4f, 0xea, 0xa3, 0x68, 0x98, 0x0c, 0xfb, 0xc3, 0x20, 0xce, + 0xbe, 0xab, 0x4f, 0x52, 0x68, 0x3d, 0x50, 0xd7, 0x2a, 0x98, 0xfd, 0x52, 0x0f, 0xfc, 0xf0, 0xef, + 0xda, 0xf4, 0xfe, 0xb0, 0xda, 0xc0, 0x4b, 0xbc, 0x73, 0x2f, 0x56, 0xf5, 0x20, 0x1e, 0xd5, 0x93, + 0xe0, 0x3a, 0x9e, 0xfc, 0xa3, 0x9e, 0xdd, 0x08, 0x1e, 0xdf, 0x7d, 0x9b, 0x5e, 0x34, 0x57, 0x99, + 0x8b, 0xe5, 0xb4, 0xbe, 0x94, 0xf8, 0x83, 0xba, 0x29, 0x7f, 0xe3, 0x75, 0xb9, 0x2d, 0x23, 0x11, + 0x2d, 0x22, 0x11, 0x2d, 0xa1, 0x72, 0x5b, 0x40, 0x45, 0x43, 0xbf, 0xe4, 0xb0, 0x0f, 0x13, 0xee, + 0x8d, 0x52, 0x6e, 0xd6, 0x8c, 0xc6, 0xfd, 0x24, 0x9c, 0x91, 0xfc, 0x76, 0xfa, 0xb0, 0xf6, 0xec, + 0x59, 0xdd, 0xce, 0xec, 0x09, 0x5d, 0x3b, 0xf6, 0x63, 0xb7, 0x35, 0x79, 0x34, 0xb7, 0x15, 0x8f, + 0x5c, 0x27, 0xb8, 0x76, 0xed, 0xd1, 0x75, 0xa3, 0x37, 0xb1, 0xfa, 0x17, 0x3d, 0x93, 0x44, 0x31, + 0x7f, 0x53, 0x41, 0xbe, 0x58, 0x96, 0x0f, 0x0a, 0xf7, 0xbd, 0x62, 0xb0, 0x9b, 0x3f, 0x92, 0x0a, + 0x40, 0x51, 0xba, 0x62, 0x20, 0x51, 0xb5, 0x68, 0x38, 0x4e, 0x54, 0x54, 0x64, 0xeb, 0xfc, 0xe1, + 0x96, 0x83, 0x07, 0x26, 0x14, 0xe4, 0x3d, 0xc5, 0xde, 0xbd, 0x5b, 0x78, 0xeb, 0xbb, 0x8c, 0x16, + 0x77, 0x89, 0xad, 0xec, 0xb2, 0x5a, 0xd6, 0xa5, 0xb7, 0xa6, 0x4b, 0x6f, 0x41, 0x97, 0xdb, 0x6a, + 0xd6, 0x2b, 0xa3, 0x17, 0x7d, 0xb7, 0x6d, 0x49, 0x97, 0xb0, 0x97, 0x7a, 0xf9, 0x7a, 0x49, 0x97, + 0xae, 0x97, 0x76, 0xf6, 0x59, 0xe6, 0x59, 0xa7, 0x80, 0xb3, 0xcd, 0xb2, 0xcf, 0x32, 0xc5, 0x9c, + 0x5d, 0x8a, 0x39, 0xab, 0x94, 0x71, 0x36, 0xa9, 0x77, 0x67, 0xb2, 0xac, 0x4b, 0xd2, 0x8d, 0xe2, + 0x2b, 0x89, 0xa5, 0x31, 0xa7, 0xe8, 0x8a, 0x62, 0x59, 0xa2, 0x29, 0x69, 0xd6, 0xa5, 0xf4, 0x61, + 0x1b, 0x09, 0x43, 0x36, 0x82, 0x86, 0x6b, 0xa4, 0x0c, 0xd5, 0x88, 0x1b, 0xa6, 0x11, 0x37, 0x44, + 0x23, 0x6b, 0x78, 0xa6, 0x5a, 0xc7, 0xc9, 0xa5, 0x0f, 0xc9, 0x48, 0x5b, 0xbf, 0x29, 0x61, 0x2e, + 0x46, 0xcc, 0x3c, 0x4c, 0x65, 0xd6, 0x6c, 0x9e, 0x55, 0xca, 0xe9, 0x45, 0x88, 0x1e, 0x44, 0x89, + 0x1d, 0x44, 0x89, 0x1c, 0x64, 0x88, 0x1b, 0x38, 0xbc, 0xb2, 0x62, 0x92, 0xc3, 0x13, 0xfc, 0xef, + 0x9f, 0x22, 0xde, 0x3f, 0x8c, 0x2a, 0x63, 0x5a, 0x8b, 0xc7, 0xe1, 0x50, 0x80, 0xc6, 0x00, 0x72, + 0x91, 0x47, 0x71, 0xaf, 0x9b, 0x3f, 0x71, 0x54, 0x77, 0x6a, 0xb4, 0x3d, 0xe0, 0x49, 0xfe, 0xd3, + 0xdf, 0xb9, 0x3f, 0xba, 0xde, 0x5e, 0xbc, 0x33, 0x52, 0xc5, 0xa5, 0x1c, 0xe8, 0x7f, 0xdf, 0x12, + 0x9e, 0xeb, 0xa3, 0x76, 0xd5, 0x78, 0xae, 0xcf, 0x73, 0x7d, 0x9e, 0xeb, 0xbf, 0xe2, 0x55, 0xf2, + 0x5c, 0x5f, 0xbb, 0xc0, 0x5f, 0x5a, 0x02, 0x28, 0x33, 0x11, 0x08, 0x48, 0x08, 0x65, 0x27, 0x06, + 0x31, 0x09, 0x42, 0x4c, 0xa2, 0x90, 0x91, 0x30, 0xaa, 0xd1, 0xb4, 0x29, 0xed, 0x5c, 0xbf, 0xec, + 0x8b, 0x3c, 0xb3, 0x88, 0x53, 0xee, 0x89, 0x0c, 0xcf, 0xf4, 0x79, 0xa6, 0x2f, 0x28, 0x09, 0x89, + 0x4b, 0x46, 0xe2, 0x92, 0x92, 0xac, 0xe4, 0x54, 0x4e, 0x92, 0x2a, 0x29, 0x59, 0x65, 0xaf, 0x5e, + 0xd4, 0x99, 0xfe, 0x36, 0xcf, 0xf4, 0x67, 0x91, 0x5c, 0xd8, 0x99, 0xbe, 0x57, 0xbb, 0x30, 0x6b, + 0x87, 0x67, 0xff, 0x6c, 0xfc, 0xd6, 0xb8, 0xdd, 0x7b, 0xf3, 0xcf, 0xce, 0xed, 0xe3, 0x1f, 0xfe, + 0xfb, 0xbd, 0xdf, 0xb6, 0xf1, 0xdb, 0xce, 0xed, 0xde, 0x92, 0xff, 0xb2, 0x7d, 0xbb, 0xf7, 0xc4, + 0xff, 0xc7, 0xd6, 0xed, 0xaf, 0x0b, 0xbf, 0x75, 0xf2, 0xf3, 0xcd, 0x65, 0x7f, 0xa0, 0xb1, 0xe4, + 0x0f, 0xbc, 0x5b, 0xf6, 0x07, 0xde, 0x2d, 0xf9, 0x03, 0x4b, 0x4d, 0xda, 0x5c, 0xf2, 0x07, 0xb6, + 0x6e, 0xff, 0x5d, 0xf8, 0xfd, 0xbf, 0x7e, 0xff, 0xb7, 0x6e, 0xdf, 0xbe, 0xf9, 0x77, 0xd9, 0x7f, + 0xdb, 0xb9, 0xfd, 0x77, 0xef, 0x0d, 0x27, 0x1c, 0x8a, 0xc2, 0x38, 0x27, 0x1c, 0x16, 0x8d, 0xe1, + 0x84, 0x43, 0xe9, 0xac, 0x80, 0x13, 0x0e, 0x79, 0xfe, 0xfd, 0x42, 0x0f, 0x86, 0xbf, 0x7b, 0x3a, + 0xc7, 0x41, 0x07, 0x18, 0x7c, 0x73, 0xd0, 0xe1, 0x09, 0x78, 0x86, 0x99, 0x77, 0xd8, 0xb6, 0xe7, + 0xc6, 0x9b, 0x99, 0xed, 0x9c, 0x7b, 0x78, 0xf2, 0xbb, 0x9f, 0x7e, 0xfe, 0x91, 0xf2, 0xfa, 0x5f, + 0xbc, 0x73, 0x3f, 0xf0, 0x93, 0x9b, 0x92, 0x06, 0x1e, 0x1e, 0x98, 0xc0, 0x49, 0x07, 0xd4, 0x5e, + 0x23, 0x27, 0x1d, 0x38, 0xe9, 0xc0, 0x49, 0x87, 0x57, 0xbc, 0xca, 0xc2, 0x27, 0x1d, 0x52, 0xc8, + 0xaa, 0xb8, 0xbc, 0x61, 0x87, 0xcc, 0x02, 0xce, 0x3b, 0xe8, 0x96, 0x0e, 0x04, 0xa4, 0x85, 0xb2, + 0xd3, 0x83, 0x98, 0x34, 0x21, 0x26, 0x5d, 0xc8, 0x48, 0x1b, 0xd5, 0x68, 0xe1, 0x94, 0x36, 0xef, + 0x30, 0x2a, 0xf7, 0x9c, 0xfb, 0x51, 0x72, 0x29, 0x79, 0xda, 0x61, 0x83, 0xd3, 0x0e, 0x9c, 0x76, + 0xe0, 0xb4, 0x83, 0xfc, 0x94, 0x24, 0x2b, 0x35, 0x95, 0x93, 0xa2, 0x4a, 0x4a, 0x55, 0xa5, 0xa7, + 0x2c, 0x29, 0xa9, 0x4b, 0x56, 0x0a, 0x7b, 0x9c, 0xca, 0x78, 0x03, 0x96, 0x9c, 0xd4, 0x26, 0x30, + 0xc5, 0x49, 0x4b, 0x75, 0x62, 0x53, 0x9e, 0xd8, 0xd4, 0x27, 0x33, 0x05, 0x96, 0x9b, 0x0a, 0x4b, + 0x4e, 0x89, 0xd9, 0x47, 0x22, 0xef, 0x06, 0xac, 0x40, 0x79, 0x17, 0x91, 0xba, 0x90, 0x74, 0xff, + 0xd5, 0x8e, 0x8c, 0xfb, 0xaf, 0xa6, 0x67, 0xbc, 0x6f, 0xdf, 0xa6, 0x73, 0x01, 0xf5, 0x59, 0xcc, + 0xe1, 0xad, 0xa6, 0x85, 0x7f, 0x14, 0xe5, 0x28, 0xf9, 0x96, 0x3a, 0x4c, 0x19, 0xca, 0x3e, 0x61, + 0x6d, 0x09, 0x72, 0x39, 0x72, 0x39, 0x72, 0x39, 0x72, 0xb9, 0x6a, 0x73, 0xb9, 0xb2, 0xdb, 0x1c, + 0x99, 0x21, 0x57, 0x2a, 0x89, 0xfc, 0xbe, 0x1c, 0xef, 0x9e, 0x07, 0xc0, 0x99, 0x5d, 0x42, 0x3c, + 0x48, 0x46, 0xfb, 0x43, 0x5c, 0xea, 0x94, 0x98, 0x42, 0x05, 0xa7, 0x52, 0xa9, 0x29, 0x55, 0x7c, + 0x6a, 0x15, 0x9f, 0x62, 0x65, 0xa7, 0x5a, 0x19, 0x29, 0x57, 0x48, 0xea, 0x95, 0xd7, 0x4e, 0x59, + 0x88, 0x58, 0x5f, 0xfd, 0x81, 0xaa, 0x89, 0x4a, 0x80, 0xf7, 0x93, 0xe0, 0x8e, 0x20, 0x93, 0xba, + 0x5e, 0x78, 0xa9, 0xc4, 0xdc, 0x33, 0x3e, 0xff, 0x92, 0x15, 0xd5, 0xd7, 0x66, 0xda, 0x35, 0x71, + 0xe9, 0x46, 0x28, 0xbb, 0x5a, 0x30, 0xef, 0xa3, 0x17, 0x8c, 0x55, 0xf9, 0x0d, 0x93, 0xa5, 0xf6, + 0x1d, 0x46, 0x5e, 0x3f, 0xf1, 0x87, 0x61, 0xd3, 0xbf, 0xf4, 0xa7, 0x6a, 0xc0, 0x75, 0x71, 0x76, + 0xde, 0xfe, 0x26, 0xd0, 0x25, 0xbc, 0x6f, 0x74, 0x89, 0xd7, 0xba, 0xc4, 0xf6, 0xce, 0xce, 0xce, + 0xe6, 0xc6, 0x16, 0x3d, 0x03, 0x9b, 0x93, 0xc9, 0xb3, 0xe6, 0xec, 0x17, 0xbe, 0x0f, 0x21, 0x91, + 0x53, 0xca, 0x48, 0xcc, 0x02, 0x4f, 0x96, 0xd5, 0xfe, 0x65, 0x8f, 0xe8, 0xc7, 0x06, 0xb1, 0x47, + 0xf4, 0x2c, 0xd3, 0xd8, 0x23, 0x7a, 0xa1, 0x81, 0xec, 0x11, 0xe1, 0x33, 0x00, 0xf6, 0x88, 0x7e, + 0x16, 0xb1, 0xa6, 0xb2, 0x69, 0x71, 0x0e, 0x28, 0x61, 0x35, 0xd7, 0x62, 0xe2, 0x11, 0xb2, 0xaa, + 0x6b, 0xc1, 0x30, 0xae, 0xee, 0x2a, 0x6d, 0x75, 0x57, 0xfd, 0xd7, 0x8d, 0xcd, 0xcf, 0xeb, 0xb5, + 0xdf, 0xd3, 0x6b, 0xcc, 0x36, 0xce, 0x16, 0x6e, 0x37, 0x9b, 0xfe, 0xb3, 0xcc, 0x0d, 0x5f, 0x2c, + 0x88, 0xe4, 0x16, 0x44, 0x71, 0xed, 0xdc, 0x4f, 0xe4, 0xd5, 0x43, 0xa9, 0x59, 0x2c, 0x87, 0x58, + 0x0e, 0xb1, 0x1c, 0x62, 0x39, 0xc4, 0x72, 0x88, 0xe5, 0x50, 0x65, 0xca, 0xa1, 0xf3, 0xe1, 0x30, + 0x50, 0x5e, 0x28, 0xb1, 0x14, 0xda, 0x20, 0x71, 0x13, 0x43, 0xdc, 0xc6, 0xa3, 0xda, 0x60, 0xf8, + 0x35, 0x94, 0x47, 0xdd, 0xe6, 0x86, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, + 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0xdd, 0x7d, 0x26, 0xdf, 0x64, 0x76, 0xdd, 0xbe, + 0xb1, 0xeb, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, + 0x26, 0x8b, 0xb8, 0x55, 0x5a, 0x66, 0x5d, 0xf2, 0x1d, 0x36, 0x0b, 0xf6, 0x88, 0xbd, 0x03, 0xe4, + 0xfe, 0x05, 0x0c, 0xf5, 0xf9, 0x4a, 0xee, 0xd9, 0x37, 0x65, 0x5c, 0x6e, 0x23, 0x07, 0xc6, 0xa5, + 0x6e, 0xaf, 0x19, 0x9f, 0x4f, 0x3e, 0x26, 0x41, 0xfb, 0x6b, 0x66, 0x06, 0x71, 0x83, 0x0d, 0x37, + 0xd8, 0xc0, 0x54, 0x33, 0xdc, 0x60, 0x83, 0x5e, 0xb5, 0x70, 0x83, 0x8d, 0x3c, 0x6a, 0x25, 0x66, + 0x83, 0x4d, 0x9a, 0x93, 0x04, 0x4e, 0xe3, 0xa5, 0x76, 0xc9, 0x6a, 0x0c, 0x6e, 0xb0, 0x31, 0x28, + 0x3e, 0x85, 0x0a, 0x4e, 0xa5, 0x52, 0x53, 0xaa, 0xf8, 0xd4, 0x2a, 0x3e, 0xc5, 0xca, 0x4e, 0xb5, + 0x72, 0xfa, 0x29, 0x6b, 0x82, 0x1a, 0x83, 0x52, 0x52, 0x70, 0x66, 0xd0, 0x45, 0xe0, 0x5d, 0xc6, + 0xf2, 0x82, 0xc2, 0x3c, 0x8e, 0xa6, 0xe6, 0x09, 0xf3, 0x37, 0x59, 0x89, 0x59, 0x6c, 0x82, 0x96, + 0x9c, 0xa8, 0x01, 0x12, 0xb6, 0xf4, 0xc4, 0x0d, 0x93, 0xc0, 0x61, 0x12, 0x39, 0x46, 0x42, 0x97, + 0x95, 0xd8, 0x85, 0x25, 0x78, 0xb1, 0x89, 0xfe, 0xae, 0xf6, 0x16, 0xb1, 0x5e, 0xfd, 0xe7, 0xa5, + 0xb8, 0x80, 0xb5, 0xeb, 0x60, 0x04, 0x40, 0x3c, 0x11, 0x40, 0x20, 0x04, 0x40, 0xc4, 0x00, 0x85, + 0x20, 0xc0, 0x11, 0x05, 0x38, 0xc2, 0x80, 0x45, 0x1c, 0x64, 0x12, 0x08, 0xa1, 0x44, 0x42, 0x3c, + 0xa1, 0x10, 0xde, 0x49, 0x80, 0xea, 0x2c, 0x2c, 0x23, 0x1a, 0xeb, 0xc2, 0xcd, 0x94, 0x4e, 0x38, + 0x90, 0x88, 0x07, 0x20, 0x01, 0x41, 0x23, 0x22, 0xb0, 0x84, 0x04, 0x96, 0x98, 0x60, 0x12, 0x14, + 0xd9, 0x44, 0x45, 0x38, 0x61, 0xc9, 0x3e, 0x72, 0x71, 0xb3, 0xd0, 0x3f, 0x8d, 0xb8, 0x2a, 0x1c, + 0x5f, 0xa9, 0x28, 0x9d, 0x41, 0x05, 0x88, 0xba, 0xf3, 0x6e, 0x44, 0x03, 0xc0, 0x56, 0x2b, 0x1c, + 0x5f, 0x4d, 0xc0, 0x40, 0x97, 0x7a, 0xcd, 0x5b, 0x6c, 0xf9, 0x71, 0x62, 0x26, 0x49, 0x84, 0xe1, + 0x56, 0xc7, 0x7e, 0x68, 0x05, 0x6a, 0x12, 0xf5, 0x27, 0xe5, 0x41, 0x38, 0x0e, 0x02, 0x00, 0xa0, + 0x1e, 0x7b, 0xdf, 0xf0, 0x8c, 0x3e, 0x89, 0x06, 0x2a, 0x52, 0x83, 0xfd, 0x9b, 0x99, 0xc9, 0xbf, + 0x30, 0xab, 0x6a, 0xe6, 0xfe, 0x46, 0x82, 0x90, 0x4d, 0xb3, 0x4c, 0x3a, 0xb5, 0x96, 0x35, 0x36, + 0x6b, 0x6c, 0xd6, 0xd8, 0xac, 0xb1, 0x59, 0x63, 0xb3, 0xc6, 0x66, 0x8d, 0xcd, 0x1a, 0x3b, 0x5d, + 0x86, 0x3e, 0x50, 0x61, 0xe2, 0x27, 0x37, 0x91, 0xba, 0x40, 0xaa, 0xb1, 0xb7, 0x00, 0x6c, 0xb5, + 0x67, 0xaf, 0x76, 0xdf, 0x8b, 0x81, 0xf2, 0xc4, 0x1c, 0x18, 0x76, 0xcf, 0xee, 0xb9, 0xbd, 0xd3, + 0x7d, 0xa7, 0xf5, 0xd1, 0x75, 0xfe, 0xec, 0x58, 0x28, 0xe9, 0x62, 0x7a, 0xbf, 0x56, 0x2c, 0x6e, + 0x63, 0xfd, 0x8f, 0xbe, 0xfe, 0x81, 0xb1, 0xf4, 0x01, 0x42, 0xba, 0x27, 0xa7, 0x8e, 0xd5, 0x75, + 0x0f, 0xcc, 0x8e, 0xb9, 0x6f, 0xb7, 0x6c, 0xe7, 0xcf, 0x19, 0x5c, 0x7a, 0x48, 0x78, 0x41, 0xc6, + 0x0d, 0x26, 0x7e, 0x9e, 0x82, 0xa3, 0xfb, 0xff, 0x66, 0xc0, 0x3d, 0xdd, 0xed, 0x6f, 0x84, 0x90, + 0x00, 0x08, 0x99, 0xad, 0xa3, 0x93, 0xae, 0xed, 0xbc, 0x3f, 0x06, 0x44, 0x10, 0x94, 0xc5, 0x67, + 0xbf, 0xd0, 0x33, 0x49, 0x0a, 0x34, 0x0b, 0xe6, 0x84, 0x0a, 0x83, 0x36, 0x91, 0x22, 0xa5, 0x16, + 0x75, 0xbb, 0x96, 0x79, 0xf0, 0x9e, 0x75, 0x06, 0xd1, 0xb3, 0x3a, 0x14, 0x39, 0x96, 0xdb, 0xb4, + 0x0e, 0xcd, 0xd3, 0x96, 0xe3, 0x1e, 0x5b, 0x4e, 0xd7, 0x3e, 0x60, 0xa5, 0x41, 0x10, 0x3d, 0x17, + 0x44, 0xa7, 0xed, 0x83, 0x93, 0x76, 0xcf, 0xe9, 0x9a, 0x76, 0xdb, 0x6a, 0xba, 0xad, 0x5e, 0x87, + 0x20, 0x22, 0x88, 0x9e, 0x0b, 0xa2, 0x96, 0xdd, 0xfe, 0xe0, 0x36, 0xad, 0x96, 0xc9, 0x66, 0x07, + 0xd1, 0xf3, 0x0a, 0xf4, 0xb8, 0x1f, 0xcd, 0xae, 0x6d, 0x3a, 0xf6, 0x49, 0x9b, 0x38, 0x22, 0x8e, + 0x9e, 0x8b, 0x23, 0xbb, 0xf3, 0x71, 0xdb, 0x6d, 0x5b, 0xf6, 0xd1, 0xfb, 0xfd, 0x93, 0xae, 0x6b, + 0x36, 0x9b, 0x5d, 0xab, 0xd7, 0x23, 0x90, 0x08, 0xa4, 0xe7, 0x02, 0xc9, 0x6c, 0x1e, 0xdb, 0x6d, + 0xf7, 0xa8, 0x7b, 0x72, 0x4a, 0x36, 0x44, 0xf8, 0xbc, 0x00, 0x3e, 0x7f, 0xb8, 0x3d, 0xbb, 0x49, + 0xe8, 0x10, 0x3a, 0xcf, 0x85, 0xce, 0xb1, 0xf9, 0x29, 0xa5, 0x43, 0xfb, 0x66, 0xbb, 0xf9, 0x1f, + 0xbb, 0xe9, 0xbc, 0x27, 0x8a, 0x88, 0xa2, 0x17, 0x10, 0xa1, 0x06, 0x89, 0x10, 0x81, 0xb4, 0x1a, + 0x46, 0x6d, 0xb7, 0x1d, 0xab, 0x7b, 0x68, 0x1e, 0x58, 0x44, 0x12, 0x91, 0xf4, 0xaa, 0x1a, 0xbf, + 0x75, 0x42, 0xf0, 0x10, 0x3c, 0xcf, 0x07, 0x4f, 0x46, 0x86, 0xdc, 0xac, 0x57, 0xed, 0x10, 0x48, + 0x04, 0xd2, 0xb3, 0x81, 0x64, 0x7d, 0x72, 0xac, 0x76, 0xd3, 0x6a, 0xb2, 0xc2, 0x27, 0x8e, 0x5e, + 0x4d, 0xb0, 0xc9, 0x8b, 0x88, 0xa4, 0x57, 0x23, 0xe9, 0xd4, 0xb1, 0x5b, 0xf6, 0x7f, 0xad, 0x26, + 0x0b, 0x7e, 0xa2, 0xe8, 0xe5, 0x28, 0x32, 0x9b, 0x7f, 0xb8, 0x2d, 0xb3, 0xcd, 0xae, 0x23, 0xe1, + 0xf3, 0x12, 0xf8, 0x4c, 0xb8, 0x50, 0xd6, 0x79, 0xe4, 0x31, 0x3e, 0x51, 0xf4, 0xf2, 0x12, 0xbf, + 0xd3, 0x3d, 0x71, 0xac, 0x03, 0xc7, 0x3e, 0x69, 0xa7, 0xc3, 0x8d, 0xc4, 0x11, 0x71, 0xf4, 0xdc, + 0x64, 0xf6, 0xd1, 0xb4, 0x5b, 0xe6, 0x7e, 0xcb, 0x22, 0x27, 0x22, 0x8c, 0x5e, 0x19, 0x8e, 0x4c, + 0xc7, 0xe9, 0xda, 0xfb, 0xa7, 0x8e, 0xc5, 0xe2, 0x8c, 0x10, 0x7a, 0x7e, 0x71, 0xd6, 0xee, 0x5a, + 0x3d, 0xab, 0xfb, 0x91, 0xe5, 0x19, 0x71, 0xf4, 0x1a, 0x1c, 0x75, 0xad, 0x9e, 0xdd, 0x3c, 0x35, + 0x5b, 0x44, 0x11, 0x51, 0xf4, 0x8a, 0x2a, 0xcd, 0xfc, 0xe4, 0xa6, 0xf1, 0x88, 0xe4, 0x88, 0x58, + 0x5a, 0x01, 0x39, 0x82, 0x6c, 0x16, 0x51, 0x58, 0x5e, 0x75, 0x97, 0xd4, 0x44, 0x03, 0x0a, 0xac, + 0xde, 0x23, 0x58, 0x8a, 0xaf, 0x44, 0x60, 0x55, 0x7a, 0x04, 0x4b, 0x29, 0xc9, 0x1d, 0xac, 0x8d, + 0x4f, 0x94, 0x94, 0x87, 0x12, 0x44, 0xd5, 0x1d, 0xf1, 0x52, 0x34, 0x5e, 0xc0, 0xd5, 0x75, 0x04, + 0x4c, 0xd1, 0x80, 0x81, 0x9c, 0xb1, 0x23, 0x4c, 0x8a, 0x87, 0x09, 0x98, 0x5a, 0x8e, 0x10, 0x29, + 0x1a, 0x22, 0xc8, 0xaa, 0x38, 0xa2, 0xa5, 0x04, 0xa2, 0xd2, 0x20, 0x51, 0x21, 0x60, 0x9e, 0xc7, + 0x6c, 0x81, 0xa7, 0xb9, 0x89, 0x98, 0x52, 0x6a, 0x67, 0x2c, 0x35, 0x1b, 0x41, 0x52, 0x34, 0x48, + 0xc0, 0x55, 0x6b, 0x04, 0x4c, 0xd1, 0x80, 0xc1, 0x56, 0xa7, 0x11, 0x2f, 0xa5, 0x10, 0x5d, 0xf2, + 0x16, 0x22, 0xe6, 0xc9, 0x88, 0x41, 0x56, 0x9b, 0x11, 0x2d, 0x45, 0xa3, 0x05, 0x52, 0x55, 0x46, + 0x98, 0x14, 0x0d, 0x13, 0x64, 0xf5, 0x18, 0xd1, 0x52, 0x4a, 0xe9, 0x0c, 0xab, 0x12, 0x23, 0x5e, + 0x0a, 0x4f, 0x42, 0xc8, 0x6a, 0x30, 0xc2, 0xa5, 0x94, 0xf0, 0x82, 0xa8, 0xfa, 0x22, 0x54, 0x0a, + 0x2f, 0x86, 0xa0, 0xd5, 0x5d, 0xc4, 0x4b, 0xd1, 0x78, 0x41, 0x56, 0x71, 0x11, 0x2d, 0x85, 0x57, + 0x45, 0xf0, 0x6a, 0x2d, 0x62, 0xa6, 0x14, 0xf2, 0xc2, 0x66, 0x0b, 0x21, 0x72, 0x0f, 0x22, 0x1d, + 0xde, 0x1c, 0x47, 0xf4, 0xac, 0x1a, 0x45, 0xd3, 0x93, 0xa3, 0xd9, 0xf5, 0x95, 0x5c, 0x19, 0x46, + 0x04, 0x3d, 0x1f, 0x41, 0x8e, 0x79, 0xb4, 0xdd, 0x20, 0x70, 0x08, 0x9c, 0x17, 0x84, 0x9e, 0x6d, + 0x86, 0x1e, 0x22, 0xe8, 0x55, 0xa1, 0x87, 0xb0, 0x21, 0x6c, 0x9e, 0x0b, 0x9b, 0x4e, 0xd7, 0x3a, + 0xb4, 0x3f, 0x71, 0x45, 0x2a, 0xd1, 0xf3, 0x0a, 0xf4, 0x1c, 0xb6, 0xcc, 0xa3, 0x1e, 0xb7, 0xa6, + 0xe4, 0xfb, 0xc5, 0xad, 0x29, 0xec, 0x7f, 0xe8, 0x56, 0xb9, 0x12, 0x29, 0xac, 0x50, 0x09, 0x10, + 0x56, 0xa2, 0x44, 0x0a, 0x2b, 0x4e, 0xc2, 0x43, 0x2f, 0x78, 0x20, 0x56, 0x96, 0x44, 0x09, 0x2b, + 0x48, 0x7d, 0x2a, 0x47, 0xf9, 0x15, 0xa3, 0xec, 0xf7, 0x28, 0xd7, 0x3a, 0x99, 0x96, 0x09, 0x8d, + 0x9e, 0x86, 0x19, 0x86, 0xc3, 0xc4, 0x4b, 0xfc, 0x61, 0x68, 0xec, 0x09, 0x8e, 0x9b, 0x46, 0xdc, + 0xff, 0xa2, 0xae, 0xbc, 0x91, 0x97, 0x7c, 0x99, 0x44, 0xca, 0xfa, 0x70, 0xa4, 0xc2, 0xfe, 0x30, + 0xbc, 0xf0, 0x2f, 0x6b, 0xa1, 0x4a, 0xbe, 0x0e, 0xa3, 0xbf, 0x6b, 0x7e, 0x18, 0x27, 0x5e, 0xd8, + 0x57, 0xf5, 0xc7, 0x3f, 0x88, 0x17, 0x7e, 0x52, 0x1f, 0x45, 0xc3, 0x64, 0xd8, 0x1f, 0x06, 0x71, + 0xf6, 0x5d, 0xdd, 0x8f, 0xfd, 0xb8, 0x1e, 0xa8, 0x6b, 0x15, 0xcc, 0x7e, 0xa9, 0x07, 0x7e, 0xf8, + 0x77, 0x2d, 0x4e, 0xbc, 0x44, 0xd5, 0x06, 0x5e, 0xe2, 0x9d, 0x7b, 0xb1, 0xaa, 0x07, 0xf1, 0xa8, + 0x9e, 0x04, 0xd7, 0xf1, 0xe4, 0x1f, 0x75, 0x7f, 0x74, 0xbd, 0x5d, 0x8b, 0x94, 0xd7, 0xff, 0xe2, + 0x9d, 0xfb, 0x81, 0x9f, 0xdc, 0xd4, 0x47, 0x91, 0xba, 0xf0, 0xbf, 0xa9, 0x78, 0xf6, 0x4d, 0x3d, + 0x1e, 0x9f, 0x4f, 0x7f, 0x77, 0xfa, 0x6b, 0xfd, 0x22, 0xf0, 0x2e, 0xe3, 0xfa, 0xf4, 0x7f, 0x29, + 0x33, 0x9e, 0xcb, 0xf3, 0x1d, 0x59, 0x16, 0x09, 0xf3, 0x62, 0xe9, 0xde, 0xab, 0x91, 0xd7, 0x0a, + 0x9c, 0x9c, 0x32, 0xe2, 0x24, 0x1a, 0xf7, 0x93, 0x70, 0xc6, 0x1e, 0xdb, 0xe9, 0xeb, 0xb2, 0x67, + 0x6f, 0xcb, 0xed, 0xcc, 0xde, 0x91, 0x6b, 0xc7, 0x7e, 0xec, 0xb6, 0x26, 0x2f, 0xc7, 0x6d, 0xc5, + 0x23, 0xd7, 0x09, 0xae, 0x5d, 0x7b, 0x74, 0xbd, 0xdd, 0xbd, 0xf7, 0x0a, 0xdc, 0xce, 0xf4, 0xc9, + 0xdd, 0xde, 0xf4, 0x89, 0xdd, 0xc3, 0xe9, 0x13, 0xff, 0xc2, 0x38, 0x20, 0x3c, 0x06, 0x18, 0xfe, + 0xe8, 0xba, 0x51, 0x8b, 0x87, 0xe3, 0xa8, 0xaf, 0x6a, 0xd1, 0x70, 0x9c, 0xa8, 0xa8, 0xe6, 0x0f, + 0xc4, 0x85, 0x82, 0xac, 0xc0, 0xf9, 0xbe, 0xb9, 0xc2, 0x62, 0xea, 0x07, 0x3f, 0x9c, 0xbc, 0xc2, + 0x0d, 0x61, 0x66, 0x1d, 0x4c, 0xe3, 0xa6, 0xb1, 0xb7, 0xb6, 0x2e, 0xcc, 0xb0, 0x34, 0x74, 0xc8, + 0xcc, 0x3f, 0x73, 0xe0, 0x0d, 0xfb, 0xb5, 0x49, 0xa6, 0x90, 0x18, 0xc4, 0x7b, 0x53, 0x77, 0x10, + 0x4b, 0xbe, 0x8d, 0x0f, 0xea, 0xe6, 0xeb, 0x30, 0x9a, 0x78, 0x84, 0x91, 0xa6, 0x47, 0xa1, 0x33, + 0xc4, 0xc6, 0x7b, 0x2f, 0x36, 0xa3, 0xcb, 0xf1, 0x95, 0x0a, 0x13, 0x63, 0x6f, 0x2d, 0x89, 0xc6, + 0x4a, 0x6a, 0xc9, 0x75, 0x67, 0x65, 0x06, 0x4c, 0xf2, 0x6e, 0x28, 0xde, 0xdd, 0xf4, 0x23, 0xa1, + 0x84, 0x7b, 0x5a, 0x5b, 0x8a, 0x0d, 0x26, 0xf3, 0x78, 0x9c, 0x9a, 0x29, 0xd4, 0x3f, 0x65, 0x12, + 0x00, 0xf1, 0x44, 0x00, 0x81, 0x10, 0x00, 0x11, 0x03, 0x14, 0x82, 0x00, 0x47, 0x14, 0xe0, 0x08, + 0x03, 0x16, 0x71, 0x90, 0x49, 0x20, 0x84, 0x12, 0x09, 0xf1, 0x84, 0x22, 0x33, 0x50, 0x6e, 0x77, + 0x61, 0x69, 0x6c, 0x97, 0xda, 0x61, 0x58, 0x46, 0x38, 0xd6, 0x85, 0x9b, 0x29, 0x9d, 0x78, 0x20, + 0x11, 0x10, 0x40, 0x22, 0x82, 0x46, 0x48, 0x60, 0x89, 0x09, 0x2c, 0x41, 0xc1, 0x24, 0x2a, 0xb2, + 0x09, 0x8b, 0x70, 0xe2, 0x92, 0x7d, 0xe4, 0xce, 0xcd, 0x48, 0x61, 0x45, 0xdc, 0xe9, 0x61, 0x84, + 0x37, 0x18, 0x44, 0x2a, 0x86, 0x08, 0xbb, 0xf3, 0xb6, 0xc4, 0xef, 0x00, 0xb6, 0x76, 0xbc, 0x24, + 0x51, 0x51, 0x08, 0xb3, 0xb8, 0xc1, 0xf8, 0xdf, 0xaf, 0xbf, 0x7e, 0x5e, 0xaf, 0xed, 0x9e, 0xfd, + 0xfb, 0x79, 0xa3, 0xb6, 0x7b, 0x96, 0x7e, 0xbb, 0x31, 0xfd, 0x25, 0xfd, 0x7e, 0xf3, 0xf3, 0x7a, + 0xad, 0x31, 0xff, 0x7e, 0xeb, 0xf3, 0x7a, 0x6d, 0xeb, 0xec, 0xcd, 0x5f, 0x7f, 0xbd, 0x7d, 0xf3, + 0xcf, 0xbb, 0xdb, 0xe7, 0xff, 0xc1, 0xff, 0x93, 0x1f, 0x0c, 0xcf, 0x38, 0x7c, 0xa6, 0x5b, 0x98, + 0x36, 0x12, 0x84, 0x10, 0x9d, 0x85, 0xe7, 0xa9, 0xb5, 0x2c, 0xdc, 0x58, 0xb8, 0xb1, 0x70, 0x63, + 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x0b, 0x37, 0x16, 0x6e, 0x69, 0xe1, 0x36, 0x50, 0x61, 0xe2, + 0x27, 0x37, 0x91, 0xba, 0x40, 0xaa, 0xdb, 0xb6, 0x00, 0x6c, 0xb5, 0x67, 0xaf, 0x76, 0xdf, 0x8b, + 0x81, 0xf2, 0xc4, 0xdd, 0x72, 0x4c, 0xbb, 0x37, 0x5b, 0x77, 0x88, 0xb4, 0xed, 0x10, 0x71, 0xcb, + 0x21, 0xa8, 0xc2, 0x6e, 0xa6, 0xdd, 0x3e, 0x30, 0x3b, 0xdc, 0x8e, 0x49, 0xfc, 0xac, 0x14, 0x47, + 0xf7, 0xff, 0x8d, 0xeb, 0xa2, 0x08, 0xa1, 0x17, 0x41, 0xc8, 0x6c, 0x1d, 0x9d, 0x74, 0x6d, 0xe7, + 0xfd, 0x31, 0x17, 0x46, 0xe5, 0xfb, 0xc5, 0x85, 0x51, 0x24, 0x05, 0xda, 0x05, 0x73, 0x42, 0x85, + 0x41, 0x9b, 0x48, 0x91, 0x52, 0x8b, 0x72, 0x0b, 0x3f, 0xd1, 0xb3, 0x6a, 0x14, 0x39, 0x96, 0xdb, + 0xb4, 0x0e, 0xcd, 0xd3, 0x96, 0xe3, 0x1e, 0x5b, 0x4e, 0xd7, 0x3e, 0x60, 0xa5, 0x41, 0x10, 0x3d, + 0x17, 0x44, 0xa7, 0xed, 0x83, 0x93, 0x76, 0xcf, 0xe9, 0x9a, 0x76, 0xdb, 0x6a, 0xba, 0xad, 0x5e, + 0x87, 0x20, 0x22, 0x88, 0x9e, 0x0b, 0x22, 0xc4, 0xab, 0x7b, 0x89, 0x1e, 0x79, 0xe8, 0x71, 0x3f, + 0x9a, 0x5d, 0xdb, 0x74, 0xec, 0x93, 0x36, 0x71, 0x44, 0x1c, 0x3d, 0x17, 0x47, 0xd3, 0x85, 0xac, + 0x6d, 0xcb, 0x3e, 0x7a, 0xbf, 0x7f, 0xd2, 0x75, 0xcd, 0x66, 0xb3, 0x6b, 0xf5, 0x7a, 0x04, 0x12, + 0x81, 0xf4, 0x5c, 0x20, 0x99, 0xcd, 0x63, 0xbb, 0xed, 0x1e, 0x75, 0x4f, 0x4e, 0xc9, 0x86, 0x08, + 0x9f, 0x17, 0xc0, 0xe7, 0x0f, 0x5e, 0x13, 0x42, 0xe8, 0xbc, 0x04, 0x3a, 0xc7, 0xe6, 0xa7, 0x94, + 0x0e, 0x01, 0xde, 0xf7, 0x4a, 0x14, 0x09, 0x22, 0x42, 0x0d, 0x12, 0x21, 0x02, 0x69, 0x35, 0x8c, + 0xda, 0x6e, 0x3b, 0x56, 0xf7, 0xd0, 0x3c, 0xb0, 0x88, 0x24, 0x22, 0xe9, 0x55, 0x35, 0x7e, 0xeb, + 0x84, 0xe0, 0x21, 0x78, 0x9e, 0x0f, 0x9e, 0x8c, 0x0c, 0xb9, 0x59, 0xaf, 0xda, 0x21, 0x90, 0x08, + 0xa4, 0x67, 0x03, 0xc9, 0xfa, 0xe4, 0x58, 0xed, 0xa6, 0xd5, 0x64, 0x85, 0x4f, 0x1c, 0xbd, 0x9a, + 0x60, 0x93, 0x17, 0x11, 0x49, 0xaf, 0x46, 0xd2, 0xa9, 0x63, 0xb7, 0xec, 0xff, 0x5a, 0x4d, 0x16, + 0xfc, 0x44, 0xd1, 0xcb, 0x51, 0x64, 0x36, 0xff, 0x70, 0x5b, 0x66, 0x9b, 0x5d, 0x47, 0xc2, 0xe7, + 0x25, 0xf0, 0x99, 0x70, 0xa1, 0xac, 0xf3, 0xc8, 0x63, 0x7c, 0xa2, 0xe8, 0xe5, 0x25, 0x7e, 0xa7, + 0x7b, 0xe2, 0x58, 0x07, 0x8e, 0x7d, 0xd2, 0x4e, 0x87, 0x1b, 0x89, 0x23, 0xe2, 0xe8, 0xb9, 0xc9, + 0xec, 0xa3, 0x69, 0xb7, 0xcc, 0xfd, 0x96, 0x45, 0x4e, 0x44, 0x18, 0xbd, 0x32, 0x1c, 0x99, 0x8e, + 0xd3, 0xb5, 0xf7, 0x4f, 0x1d, 0x8b, 0xc5, 0x19, 0x21, 0xf4, 0xfc, 0xe2, 0xac, 0xdd, 0xb5, 0x7a, + 0x56, 0xf7, 0x23, 0xcb, 0x33, 0xe2, 0xe8, 0x35, 0x38, 0xea, 0x5a, 0x3d, 0xbb, 0x79, 0x6a, 0xb6, + 0x88, 0x22, 0xa2, 0xe8, 0x15, 0x55, 0x9a, 0xf9, 0xc9, 0x4d, 0xe3, 0x11, 0xc9, 0x11, 0xb1, 0xb4, + 0x02, 0x72, 0x04, 0xd9, 0x2c, 0xa2, 0xb0, 0xbc, 0xea, 0x2e, 0xa9, 0x89, 0x06, 0x14, 0x58, 0xbd, + 0x47, 0xb0, 0x14, 0x5f, 0x89, 0xc0, 0xaa, 0xf4, 0x08, 0x96, 0x52, 0x92, 0x3b, 0x58, 0x1b, 0x9f, + 0x28, 0x29, 0x0f, 0x25, 0x88, 0xaa, 0x3b, 0xe2, 0xa5, 0x68, 0xbc, 0x80, 0xab, 0xeb, 0x08, 0x98, + 0xa2, 0x01, 0x03, 0x39, 0x63, 0x47, 0x98, 0x14, 0x0f, 0x13, 0x30, 0xb5, 0x1c, 0x21, 0x52, 0x34, + 0x44, 0x90, 0x55, 0x71, 0x44, 0x4b, 0x09, 0x44, 0xa5, 0x41, 0xa2, 0x42, 0xc0, 0x3c, 0x8f, 0xd9, + 0x02, 0x4f, 0x73, 0x13, 0x31, 0xa5, 0xd4, 0xce, 0x58, 0x6a, 0x36, 0x82, 0xa4, 0x68, 0x90, 0x80, + 0xab, 0xd6, 0x08, 0x98, 0xa2, 0x01, 0x83, 0xad, 0x4e, 0x23, 0x5e, 0x4a, 0x21, 0xba, 0xe4, 0x2d, + 0x44, 0xcc, 0x93, 0x11, 0x83, 0xac, 0x36, 0x23, 0x5a, 0x8a, 0x46, 0x0b, 0xa4, 0xaa, 0x8c, 0x30, + 0x29, 0x1a, 0x26, 0xc8, 0xea, 0x31, 0xa2, 0xa5, 0x94, 0xd2, 0x19, 0x56, 0x25, 0x46, 0xbc, 0x14, + 0x9e, 0x84, 0x90, 0xd5, 0x60, 0x84, 0x4b, 0x29, 0xe1, 0x05, 0x51, 0xf5, 0x45, 0xa8, 0x14, 0x5e, + 0x0c, 0x41, 0xab, 0xbb, 0x88, 0x97, 0xa2, 0xf1, 0x82, 0xac, 0xe2, 0x22, 0x5a, 0x0a, 0xaf, 0x8a, + 0xe0, 0xd5, 0x5a, 0xc4, 0x4c, 0x29, 0xe4, 0x85, 0xcd, 0x16, 0x42, 0xe4, 0x1e, 0x44, 0x3a, 0xbc, + 0x39, 0x8e, 0xe8, 0x59, 0x35, 0x8a, 0xa6, 0x27, 0x47, 0xb3, 0xeb, 0x2b, 0xb9, 0x32, 0x8c, 0x08, + 0x7a, 0x3e, 0x82, 0x1c, 0xf3, 0x68, 0xbb, 0x41, 0xe0, 0x10, 0x38, 0x2f, 0x08, 0x3d, 0xdb, 0x0c, + 0x3d, 0x44, 0xd0, 0xab, 0x42, 0x0f, 0x61, 0x43, 0xd8, 0x3c, 0x17, 0x36, 0x9d, 0xae, 0x75, 0x68, + 0x7f, 0xe2, 0x8a, 0x54, 0xa2, 0xe7, 0x15, 0xe8, 0x39, 0x6c, 0x99, 0x47, 0x3d, 0x6e, 0x4d, 0xc9, + 0xf7, 0x8b, 0x5b, 0x53, 0xd8, 0xff, 0xd0, 0xad, 0x72, 0x25, 0x52, 0x58, 0xa1, 0x12, 0x20, 0xac, + 0x44, 0x89, 0x14, 0x56, 0x9c, 0x84, 0x87, 0x5e, 0xf0, 0x40, 0xac, 0x2c, 0x89, 0x12, 0x56, 0x90, + 0xfa, 0x54, 0x8e, 0xf2, 0x2b, 0x46, 0xd9, 0xef, 0x51, 0xae, 0x75, 0x32, 0x2d, 0x13, 0x1a, 0x3d, + 0x0d, 0x33, 0x0c, 0x87, 0x89, 0x97, 0xf8, 0xc3, 0xd0, 0xd8, 0x13, 0x1c, 0x37, 0x8d, 0xb8, 0xff, + 0x45, 0x5d, 0x79, 0x23, 0x2f, 0xf9, 0x32, 0x89, 0x94, 0xf5, 0xe1, 0x48, 0x85, 0xfd, 0x61, 0x78, + 0xe1, 0x5f, 0xd6, 0x42, 0x95, 0x7c, 0x1d, 0x46, 0x7f, 0xd7, 0xfc, 0x30, 0x4e, 0xbc, 0xb0, 0xaf, + 0xea, 0x8f, 0x7f, 0x10, 0x2f, 0xfc, 0xa4, 0x3e, 0x8a, 0x86, 0xc9, 0xb0, 0x3f, 0x0c, 0xe2, 0xec, + 0xbb, 0xba, 0x1f, 0xfb, 0x71, 0x3d, 0x50, 0xd7, 0x2a, 0x98, 0xfd, 0x52, 0x0f, 0xfc, 0xf0, 0xef, + 0x5a, 0x9c, 0x78, 0x89, 0xaa, 0x0d, 0xbc, 0xc4, 0x3b, 0xf7, 0x62, 0x55, 0x0f, 0xe2, 0x51, 0x3d, + 0x09, 0xae, 0xe3, 0xc9, 0x3f, 0xea, 0xfe, 0xe8, 0x7a, 0xbb, 0x16, 0x29, 0xaf, 0xff, 0xc5, 0x3b, + 0xf7, 0x03, 0x3f, 0xb9, 0xa9, 0x8f, 0x22, 0x75, 0xe1, 0x7f, 0x53, 0xf1, 0xec, 0x9b, 0x7a, 0x3c, + 0x3e, 0x9f, 0xfe, 0xee, 0xf4, 0xd7, 0xc9, 0x1f, 0x68, 0xd4, 0xe2, 0xe1, 0x38, 0xea, 0xab, 0x5a, + 0x34, 0x1c, 0x27, 0x2a, 0xaa, 0xf9, 0x83, 0xfa, 0xf4, 0xaf, 0x90, 0x19, 0xdf, 0xe5, 0xf9, 0x92, + 0x2c, 0x8b, 0x84, 0x79, 0xb5, 0x74, 0x6f, 0xd6, 0xd8, 0x8b, 0x05, 0x4e, 0x56, 0x19, 0x71, 0x12, + 0x8d, 0xfb, 0x49, 0x38, 0x63, 0x97, 0xed, 0xf4, 0xf5, 0xd9, 0xb3, 0xb7, 0xe7, 0x76, 0x66, 0xef, + 0xcc, 0xb5, 0x63, 0x3f, 0x76, 0x5b, 0x93, 0x97, 0xe5, 0xb6, 0xe2, 0x91, 0xeb, 0x04, 0xd7, 0xae, + 0x3d, 0xba, 0xde, 0xee, 0xde, 0x7b, 0x25, 0x6e, 0x67, 0xfa, 0x26, 0xdc, 0xde, 0xf4, 0x0d, 0x4c, + 0xfe, 0x73, 0xa3, 0x37, 0x7d, 0x01, 0xdd, 0xe9, 0xf3, 0xdb, 0x03, 0x59, 0xe1, 0x4b, 0x4e, 0x90, + 0x10, 0x14, 0x20, 0x8c, 0x29, 0xd0, 0x17, 0x70, 0x2b, 0x2d, 0x4e, 0x64, 0xd5, 0xd0, 0xf7, 0xcd, + 0x15, 0x16, 0x70, 0x3f, 0xf8, 0xe1, 0xe4, 0x15, 0x6e, 0x08, 0x33, 0xeb, 0x60, 0x1a, 0x54, 0x8d, + 0xbd, 0xb5, 0x75, 0x61, 0x86, 0xa5, 0x71, 0x44, 0x66, 0x72, 0x9a, 0x03, 0x6f, 0xd8, 0xaf, 0x4d, + 0xd2, 0x88, 0xc4, 0x88, 0x9e, 0x06, 0x5d, 0xb1, 0x4c, 0xdd, 0xf8, 0xa0, 0x6e, 0xbe, 0x0e, 0xa3, + 0x89, 0x47, 0x18, 0x69, 0xee, 0x14, 0x3a, 0x70, 0x6c, 0xbc, 0xf7, 0x62, 0x33, 0xba, 0x1c, 0x5f, + 0xa9, 0x30, 0x31, 0xf6, 0xd6, 0x92, 0x68, 0xac, 0xa4, 0xd6, 0x67, 0x77, 0x56, 0x66, 0xc0, 0x24, + 0x29, 0x87, 0x22, 0xe5, 0x4d, 0x3f, 0x12, 0xca, 0xc6, 0xa7, 0x85, 0xa7, 0xd8, 0x60, 0x32, 0x8f, + 0xc7, 0xa9, 0x99, 0x42, 0xfd, 0x53, 0x26, 0x01, 0x10, 0x4f, 0x04, 0x10, 0x08, 0x01, 0x10, 0x31, + 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, 0x42, 0x28, 0x91, + 0x10, 0x4f, 0x28, 0x32, 0x03, 0xe5, 0x76, 0x17, 0x96, 0xc6, 0x76, 0xc9, 0x8d, 0xbc, 0xef, 0x11, + 0x8e, 0x75, 0xe1, 0x66, 0x4a, 0x27, 0x1e, 0x48, 0x04, 0x04, 0x90, 0x88, 0xa0, 0x11, 0x12, 0x58, + 0x62, 0x02, 0x4b, 0x50, 0x30, 0x89, 0x8a, 0x6c, 0xc2, 0x22, 0x9c, 0xb8, 0x64, 0x1f, 0xb9, 0x73, + 0x33, 0x52, 0x58, 0x11, 0x77, 0x7a, 0x18, 0xe1, 0x0d, 0x06, 0x91, 0x8a, 0x21, 0xc2, 0xee, 0xbc, + 0x2d, 0xf1, 0x3b, 0x80, 0xad, 0x1d, 0x2f, 0x49, 0x54, 0x14, 0xc2, 0x6c, 0x79, 0x30, 0xfe, 0xf7, + 0xeb, 0xaf, 0x9f, 0xd7, 0x6b, 0xbb, 0x5e, 0xed, 0xc2, 0xac, 0x1d, 0x9e, 0xfd, 0xb3, 0xf1, 0x5b, + 0xe3, 0x76, 0xef, 0xcd, 0x3f, 0x3b, 0xb7, 0x8f, 0x7f, 0xf8, 0xef, 0xf7, 0x7e, 0xdb, 0xc6, 0x6f, + 0x3b, 0xb7, 0x7b, 0x4b, 0xfe, 0xcb, 0xf6, 0xed, 0xde, 0x13, 0xff, 0x1f, 0x5b, 0xb7, 0xbf, 0x2e, + 0xfc, 0xd6, 0xc9, 0xcf, 0x37, 0x97, 0xfd, 0x81, 0xc6, 0x92, 0x3f, 0xf0, 0x6e, 0xd9, 0x1f, 0x78, + 0xb7, 0xe4, 0x0f, 0x2c, 0x35, 0x69, 0x73, 0xc9, 0x1f, 0xd8, 0xba, 0xfd, 0x77, 0xe1, 0xf7, 0xff, + 0xfa, 0xfd, 0xdf, 0xba, 0x7d, 0xfb, 0xe6, 0xdf, 0x65, 0xff, 0x6d, 0xe7, 0xf6, 0xdf, 0xbd, 0x37, + 0x6f, 0xfe, 0x4f, 0x7e, 0x6a, 0x38, 0xe3, 0xdc, 0x9e, 0x6e, 0x49, 0xcb, 0x48, 0x10, 0x12, 0x56, + 0x96, 0xac, 0xa6, 0xd6, 0xb2, 0x8c, 0x65, 0x19, 0xcb, 0x32, 0x96, 0x65, 0x2c, 0xcb, 0x58, 0x96, + 0xb1, 0x2c, 0x63, 0x59, 0xc6, 0xa6, 0x65, 0xec, 0x40, 0x85, 0x89, 0x9f, 0xdc, 0x44, 0xea, 0x02, + 0xa9, 0x8a, 0xdd, 0x02, 0xb0, 0xd5, 0x9e, 0xbd, 0xda, 0x7d, 0x2f, 0x06, 0xca, 0x13, 0x77, 0x7b, + 0x45, 0xed, 0xde, 0x6c, 0x53, 0x24, 0xd2, 0xa2, 0x48, 0xc4, 0x05, 0x91, 0xa0, 0xe2, 0xc4, 0x99, + 0xec, 0xfd, 0xc0, 0xec, 0x70, 0xb1, 0x28, 0xf1, 0xb3, 0x52, 0x1c, 0xdd, 0xff, 0x37, 0x6e, 0xda, + 0x22, 0x84, 0x5e, 0x04, 0x21, 0xb3, 0x75, 0x74, 0xd2, 0xb5, 0x9d, 0xf7, 0xc7, 0xdc, 0xb5, 0x95, + 0xef, 0x17, 0x77, 0x6d, 0x91, 0x14, 0x68, 0x17, 0xcc, 0x09, 0x15, 0x06, 0x6d, 0x22, 0x45, 0x4a, + 0x2d, 0xca, 0x0b, 0x0c, 0x88, 0x9e, 0x55, 0xa3, 0xc8, 0xb1, 0xdc, 0xa6, 0x75, 0x68, 0x9e, 0xb6, + 0x1c, 0xf7, 0xd8, 0x72, 0xba, 0xf6, 0x01, 0x2b, 0x0d, 0x82, 0xe8, 0xb9, 0x20, 0x3a, 0x6d, 0x1f, + 0x9c, 0xb4, 0x7b, 0x4e, 0xd7, 0xb4, 0xdb, 0x56, 0xd3, 0x6d, 0xf5, 0x3a, 0x04, 0x11, 0x41, 0xf4, + 0x5c, 0x10, 0x21, 0xde, 0x7a, 0x4c, 0xf4, 0xc8, 0x43, 0x8f, 0xfb, 0xd1, 0xec, 0xda, 0xa6, 0x63, + 0x9f, 0xb4, 0x89, 0x23, 0xe2, 0xe8, 0xb9, 0x38, 0x9a, 0xee, 0xb2, 0x6d, 0x5b, 0xf6, 0xd1, 0xfb, + 0xfd, 0x93, 0xae, 0x6b, 0x36, 0x9b, 0x5d, 0xab, 0xd7, 0x23, 0x90, 0x08, 0xa4, 0xe7, 0x02, 0xc9, + 0x6c, 0x1e, 0xdb, 0x6d, 0xf7, 0xa8, 0x7b, 0x72, 0x4a, 0x36, 0x44, 0xf8, 0xbc, 0x00, 0x3e, 0x7f, + 0xf0, 0x86, 0x15, 0x42, 0xe7, 0x25, 0xd0, 0x39, 0x36, 0x3f, 0xa5, 0x74, 0x08, 0xf0, 0xaa, 0x5c, + 0xa2, 0x48, 0x10, 0x11, 0x6a, 0x90, 0x08, 0x11, 0x48, 0xab, 0x61, 0xd4, 0x76, 0xdb, 0xb1, 0xba, + 0x87, 0xe6, 0x81, 0x45, 0x24, 0x11, 0x49, 0xaf, 0xaa, 0xf1, 0x5b, 0x27, 0x04, 0x0f, 0xc1, 0xf3, + 0x7c, 0xf0, 0x64, 0x64, 0xc8, 0xcd, 0x7a, 0xd5, 0x0e, 0x81, 0x44, 0x20, 0x3d, 0x1b, 0x48, 0xd6, + 0x27, 0xc7, 0x6a, 0x37, 0xad, 0x26, 0x2b, 0x7c, 0xe2, 0xe8, 0xd5, 0x04, 0x9b, 0xbc, 0x88, 0x48, + 0x7a, 0x35, 0x92, 0x4e, 0x1d, 0xbb, 0x65, 0xff, 0xd7, 0x6a, 0xb2, 0xe0, 0x27, 0x8a, 0x5e, 0x8e, + 0x22, 0xb3, 0xf9, 0x87, 0xdb, 0x32, 0xdb, 0xec, 0x3a, 0x12, 0x3e, 0x2f, 0x81, 0xcf, 0x84, 0x0b, + 0x65, 0x9d, 0x47, 0x1e, 0xe3, 0x13, 0x45, 0x2f, 0x2f, 0xf1, 0x3b, 0xdd, 0x13, 0xc7, 0x3a, 0x70, + 0xec, 0x93, 0x76, 0x3a, 0xdc, 0x48, 0x1c, 0x11, 0x47, 0xcf, 0x4d, 0x66, 0x1f, 0x4d, 0xbb, 0x65, + 0xee, 0xb7, 0x2c, 0x72, 0x22, 0xc2, 0xe8, 0x95, 0xe1, 0xc8, 0x74, 0x9c, 0xae, 0xbd, 0x7f, 0xea, + 0x58, 0x2c, 0xce, 0x08, 0xa1, 0xe7, 0x17, 0x67, 0xed, 0xae, 0xd5, 0xb3, 0xba, 0x1f, 0x59, 0x9e, + 0x11, 0x47, 0xaf, 0xc1, 0x51, 0xd7, 0xea, 0xd9, 0xcd, 0x53, 0xb3, 0x45, 0x14, 0x11, 0x45, 0xaf, + 0xa8, 0xd2, 0xcc, 0x4f, 0x6e, 0x1a, 0x8f, 0x48, 0x8e, 0x88, 0xa5, 0x15, 0x90, 0x23, 0xc8, 0x66, + 0x11, 0x85, 0xe5, 0x55, 0x77, 0x49, 0x4d, 0x34, 0xa0, 0xc0, 0xea, 0x3d, 0x82, 0xa5, 0xf8, 0x4a, + 0x04, 0x56, 0xa5, 0x47, 0xb0, 0x94, 0x92, 0xdc, 0xc1, 0xda, 0xf8, 0x44, 0x49, 0x79, 0x28, 0x41, + 0x54, 0xdd, 0x11, 0x2f, 0x45, 0xe3, 0x05, 0x5c, 0x5d, 0x47, 0xc0, 0x14, 0x0d, 0x18, 0xc8, 0x19, + 0x3b, 0xc2, 0xa4, 0x78, 0x98, 0x80, 0xa9, 0xe5, 0x08, 0x91, 0xa2, 0x21, 0x82, 0xac, 0x8a, 0x23, + 0x5a, 0x4a, 0x20, 0x2a, 0x0d, 0x12, 0x15, 0x02, 0xe6, 0x79, 0xcc, 0x16, 0x78, 0x9a, 0x9b, 0x88, + 0x29, 0xa5, 0x76, 0xc6, 0x52, 0xb3, 0x11, 0x24, 0x45, 0x83, 0x04, 0x5c, 0xb5, 0x46, 0xc0, 0x14, + 0x0d, 0x18, 0x6c, 0x75, 0x1a, 0xf1, 0x52, 0x0a, 0xd1, 0x25, 0x6f, 0x21, 0x62, 0x9e, 0x8c, 0x18, + 0x64, 0xb5, 0x19, 0xd1, 0x52, 0x34, 0x5a, 0x20, 0x55, 0x65, 0x84, 0x49, 0xd1, 0x30, 0x41, 0x56, + 0x8f, 0x11, 0x2d, 0xa5, 0x94, 0xce, 0xb0, 0x2a, 0x31, 0xe2, 0xa5, 0xf0, 0x24, 0x84, 0xac, 0x06, + 0x23, 0x5c, 0x4a, 0x09, 0x2f, 0x88, 0xaa, 0x2f, 0x42, 0xa5, 0xf0, 0x62, 0x08, 0x5a, 0xdd, 0x45, + 0xbc, 0x14, 0x8d, 0x17, 0x64, 0x15, 0x17, 0xd1, 0x52, 0x78, 0x55, 0x04, 0xaf, 0xd6, 0x22, 0x66, + 0x4a, 0x21, 0x2f, 0x6c, 0xb6, 0x10, 0x22, 0xf7, 0x20, 0xd2, 0xe1, 0xcd, 0x71, 0x44, 0xcf, 0xaa, + 0x51, 0x34, 0x3d, 0x39, 0x9a, 0x5d, 0x5f, 0xc9, 0x95, 0x61, 0x44, 0xd0, 0xf3, 0x11, 0xe4, 0x98, + 0x47, 0xdb, 0x0d, 0x02, 0x87, 0xc0, 0x79, 0x41, 0xe8, 0xd9, 0x66, 0xe8, 0x21, 0x82, 0x5e, 0x15, + 0x7a, 0x08, 0x1b, 0xc2, 0xe6, 0xb9, 0xb0, 0xe9, 0x74, 0xad, 0x43, 0xfb, 0x13, 0x57, 0xa4, 0x12, + 0x3d, 0xaf, 0x40, 0xcf, 0x61, 0xcb, 0x3c, 0xea, 0x71, 0x6b, 0x4a, 0xbe, 0x5f, 0xdc, 0x9a, 0xc2, + 0xfe, 0x87, 0x6e, 0x95, 0x2b, 0x91, 0xc2, 0x0a, 0x95, 0x00, 0x61, 0x25, 0x4a, 0xa4, 0xb0, 0xe2, + 0x24, 0x3c, 0xf4, 0x82, 0x07, 0x62, 0x65, 0x49, 0x94, 0xb0, 0x82, 0xd4, 0xa7, 0x72, 0x94, 0x5f, + 0x31, 0xca, 0x7e, 0x8f, 0x72, 0xad, 0x93, 0x69, 0x99, 0xd0, 0xe8, 0x69, 0x98, 0x61, 0x38, 0x4c, + 0xbc, 0xc4, 0x1f, 0x86, 0xc6, 0x9e, 0xe0, 0xb8, 0x69, 0xc4, 0xfd, 0x2f, 0xea, 0xca, 0x1b, 0x79, + 0xc9, 0x97, 0x49, 0xa4, 0xac, 0x0f, 0x47, 0x2a, 0xec, 0x0f, 0xc3, 0x0b, 0xff, 0xb2, 0x16, 0xaa, + 0xe4, 0xeb, 0x30, 0xfa, 0xbb, 0xe6, 0x87, 0x71, 0xe2, 0x85, 0x7d, 0x55, 0x7f, 0xfc, 0x83, 0x78, + 0xe1, 0x27, 0xf5, 0x51, 0x34, 0x4c, 0x86, 0xfd, 0x61, 0x10, 0x67, 0xdf, 0xd5, 0xfd, 0xd8, 0x8f, + 0xeb, 0x81, 0xba, 0x56, 0xc1, 0xec, 0x97, 0x7a, 0xe0, 0x87, 0x7f, 0xd7, 0xe2, 0xc4, 0x4b, 0x54, + 0x6d, 0xe0, 0x25, 0xde, 0xb9, 0x17, 0xab, 0x7a, 0x10, 0x8f, 0xea, 0x49, 0x70, 0x1d, 0x4f, 0xfe, + 0x51, 0xf7, 0x47, 0xd7, 0xdb, 0xb5, 0x48, 0x79, 0xfd, 0x2f, 0xde, 0xb9, 0x1f, 0xf8, 0xc9, 0x4d, + 0x7d, 0x14, 0xa9, 0x0b, 0xff, 0x9b, 0x8a, 0x67, 0xdf, 0xd4, 0xe3, 0xf1, 0xf9, 0xf4, 0x77, 0xa7, + 0xbf, 0xa6, 0x7f, 0x20, 0x1e, 0x8e, 0xa3, 0xbe, 0xaa, 0x45, 0xc3, 0x71, 0xa2, 0xa2, 0x9a, 0x3f, + 0xa8, 0x4f, 0xff, 0x0a, 0x99, 0xf1, 0x5d, 0x9e, 0x2f, 0xc9, 0xb2, 0x48, 0x98, 0x57, 0x4b, 0xf7, + 0x66, 0x8d, 0xbd, 0x58, 0xe0, 0x64, 0x95, 0x11, 0x27, 0xd1, 0xb8, 0x9f, 0x84, 0x33, 0x76, 0xd9, + 0x4e, 0x5f, 0x9f, 0x3d, 0x7b, 0x7b, 0x6e, 0x67, 0xf6, 0xce, 0x5c, 0x3b, 0xf6, 0x63, 0xb7, 0x35, + 0x79, 0x59, 0x6e, 0x2b, 0x1e, 0xb9, 0x4e, 0x70, 0xed, 0xda, 0xa3, 0xeb, 0xed, 0xee, 0xbd, 0x57, + 0xe2, 0x76, 0xa6, 0x6f, 0xc2, 0xed, 0x4d, 0xdf, 0xc0, 0xf4, 0x3f, 0xf7, 0xa6, 0x2f, 0xa0, 0x3b, + 0x7d, 0x7e, 0x7b, 0x20, 0x2b, 0x7c, 0xc9, 0x09, 0x12, 0x82, 0x02, 0x84, 0x91, 0xa2, 0xb9, 0x16, + 0xfb, 0x83, 0x58, 0x5c, 0x74, 0xc8, 0x6a, 0xa0, 0xfb, 0x46, 0x0a, 0x0b, 0xae, 0x1f, 0xfc, 0x70, + 0x60, 0xec, 0xad, 0x6d, 0x08, 0x33, 0xeb, 0x60, 0x1a, 0x40, 0x8d, 0xbd, 0xb5, 0x75, 0x61, 0x86, + 0xa5, 0x31, 0x43, 0x66, 0x22, 0x9a, 0xc3, 0x6d, 0xd8, 0xaf, 0x4d, 0x52, 0x86, 0xc4, 0xe8, 0x9d, + 0x06, 0x58, 0xb1, 0xac, 0xdc, 0xf8, 0xa0, 0x6e, 0xbe, 0x0e, 0xa3, 0xc1, 0x9d, 0xd3, 0x0a, 0x1d, + 0x2e, 0x36, 0xde, 0x7b, 0xb1, 0x19, 0x5d, 0x8e, 0xaf, 0x54, 0x98, 0x18, 0x7b, 0x6b, 0x49, 0x34, + 0x56, 0x52, 0x6b, 0xb1, 0x3b, 0x2b, 0x33, 0x60, 0x92, 0x80, 0x43, 0x11, 0xf0, 0xa6, 0x1f, 0xc9, + 0x0c, 0x78, 0x77, 0x79, 0x55, 0x6e, 0x44, 0x59, 0xe4, 0x00, 0x52, 0x43, 0x8a, 0x4c, 0x2a, 0x20, + 0x9e, 0x12, 0x20, 0x50, 0x03, 0x20, 0x8a, 0x80, 0x42, 0x15, 0xe0, 0x28, 0x03, 0x1c, 0x75, 0xc0, + 0xa2, 0x10, 0x32, 0xa9, 0x84, 0x50, 0x4a, 0x21, 0x9e, 0x5a, 0x64, 0x06, 0xa6, 0x7d, 0x6c, 0xf1, + 0x41, 0x68, 0x1e, 0xd7, 0x53, 0x73, 0x85, 0xfb, 0xb3, 0x6c, 0xa2, 0x01, 0x43, 0x38, 0x90, 0x88, + 0x07, 0x20, 0x01, 0x41, 0x23, 0x22, 0xb0, 0x84, 0x04, 0x96, 0x98, 0x60, 0x12, 0x14, 0xd9, 0x44, + 0x45, 0x38, 0x61, 0x81, 0x21, 0x2e, 0x99, 0xa1, 0x5e, 0x70, 0x39, 0x8c, 0xfc, 0xe4, 0xcb, 0x15, + 0x4e, 0x00, 0x9b, 0xe7, 0x88, 0x3b, 0xd3, 0x41, 0xe2, 0xc0, 0x8c, 0xd8, 0xac, 0x83, 0x98, 0x8b, + 0x42, 0x70, 0x10, 0x89, 0x0e, 0x30, 0xe1, 0x41, 0x25, 0x3e, 0xf0, 0x04, 0x08, 0x9e, 0x08, 0x61, + 0x13, 0x22, 0x0c, 0x62, 0x04, 0x42, 0x90, 0x32, 0x28, 0x38, 0x37, 0x23, 0x85, 0x19, 0xb1, 0xc7, + 0x7e, 0x98, 0xfc, 0x8e, 0x14, 0xaf, 0x67, 0xf4, 0x63, 0x0b, 0xc8, 0xe4, 0xae, 0x17, 0x5e, 0x2a, + 0xb8, 0x55, 0x58, 0x78, 0xa2, 0x7e, 0xe3, 0xd8, 0x0f, 0xe1, 0x12, 0x39, 0x28, 0xaf, 0x5e, 0x30, + 0x7f, 0xba, 0xf0, 0x0d, 0xd8, 0xfe, 0xc3, 0xc8, 0xeb, 0x27, 0xfe, 0x30, 0x6c, 0xfa, 0x97, 0x7e, + 0x12, 0x4f, 0x1e, 0x84, 0x9b, 0x43, 0x8a, 0x70, 0x59, 0xef, 0x1b, 0x5d, 0xb6, 0x64, 0x97, 0xdd, + 0xdc, 0xda, 0xa2, 0xd3, 0x92, 0x88, 0xeb, 0x65, 0x2d, 0xc6, 0x62, 0x19, 0xf9, 0xef, 0x13, 0x20, + 0xa9, 0x18, 0x17, 0x81, 0x77, 0x19, 0xe3, 0xb5, 0x7e, 0x53, 0xb3, 0xd9, 0xf6, 0xcd, 0xc3, 0x5c, + 0xb6, 0x7d, 0x0b, 0x04, 0x32, 0xdb, 0xbe, 0xc5, 0xb9, 0x21, 0xdb, 0xbe, 0x25, 0x3f, 0x00, 0xdb, + 0xbe, 0xe4, 0x1c, 0x33, 0x28, 0xe0, 0xb6, 0x7d, 0x55, 0x38, 0xbe, 0x52, 0x51, 0xaa, 0x37, 0xc6, + 0x6b, 0xfe, 0x6e, 0x34, 0x80, 0x6c, 0xb6, 0xc2, 0xf1, 0x74, 0x2c, 0x81, 0xae, 0xb7, 0xca, 0xb7, + 0xda, 0xf2, 0xe3, 0xc4, 0x4c, 0x92, 0x08, 0xcb, 0xfd, 0x8e, 0xfd, 0xd0, 0x0a, 0xd4, 0x24, 0x7b, + 0x4c, 0xca, 0x95, 0x70, 0x1c, 0x04, 0x40, 0x40, 0x3e, 0xf6, 0xbe, 0xe1, 0x1a, 0x7f, 0x12, 0x0d, + 0x54, 0xa4, 0x06, 0xfb, 0x37, 0x33, 0xd3, 0xd9, 0x1d, 0xa8, 0x4c, 0x77, 0xe0, 0x7a, 0xd6, 0xe6, + 0x04, 0xeb, 0x0e, 0xa4, 0x66, 0xb3, 0x3b, 0xc0, 0xee, 0x00, 0xbb, 0x03, 0xec, 0x0e, 0xb0, 0x3b, + 0xc0, 0xee, 0x00, 0xf9, 0x06, 0xbb, 0x03, 0x85, 0x44, 0xec, 0xb1, 0x1f, 0x26, 0xef, 0x36, 0x01, + 0x1b, 0x03, 0x3b, 0x9c, 0x0a, 0xcb, 0xf9, 0x8b, 0x53, 0x61, 0x24, 0xd6, 0xcf, 0x30, 0x9f, 0x53, + 0x61, 0x4c, 0x97, 0x2f, 0x71, 0x59, 0x4e, 0x85, 0x95, 0xee, 0xb2, 0x8d, 0xcd, 0xdd, 0xc6, 0xee, + 0xf6, 0xce, 0xe6, 0x2e, 0x87, 0xc3, 0x48, 0xc8, 0x35, 0xb3, 0x96, 0xc3, 0x61, 0x55, 0xb0, 0x50, + 0xba, 0xbc, 0x1a, 0x64, 0x83, 0x7b, 0x66, 0xaf, 0x16, 0x3b, 0xa0, 0xef, 0xad, 0xa9, 0xbd, 0xf7, + 0xbd, 0xe4, 0x55, 0xee, 0xf2, 0x9d, 0x4d, 0xb0, 0xa3, 0x81, 0x9c, 0xfe, 0x40, 0x9d, 0xfa, 0x80, + 0x30, 0x5c, 0xee, 0x36, 0xca, 0x13, 0xa8, 0xdc, 0x6d, 0x94, 0x9f, 0x7b, 0x71, 0xb7, 0x51, 0xd1, + 0x4c, 0x8c, 0xbb, 0x8d, 0xaa, 0x46, 0xbe, 0x61, 0x4e, 0x67, 0xb2, 0x88, 0x1b, 0x28, 0xef, 0x22, + 0x52, 0x17, 0x08, 0x11, 0x77, 0x3e, 0xa7, 0x09, 0x70, 0x1e, 0x63, 0x74, 0x66, 0xf5, 0xcc, 0xdb, + 0xb7, 0x69, 0x11, 0x50, 0x4f, 0x29, 0x18, 0x4b, 0x01, 0x8d, 0x2c, 0x93, 0xba, 0x19, 0xf6, 0x83, + 0xba, 0x91, 0x4e, 0xfa, 0x31, 0x26, 0x6d, 0xa1, 0x26, 0x6b, 0xa1, 0x26, 0x69, 0x31, 0x26, 0x67, + 0x79, 0x49, 0xe3, 0xeb, 0xec, 0xd4, 0xb8, 0xb5, 0x27, 0x79, 0xfd, 0x7f, 0x6e, 0xf7, 0xbc, 0xa5, + 0xff, 0xd6, 0xf3, 0x07, 0xbc, 0x9d, 0x12, 0xd1, 0x22, 0xde, 0x4e, 0x59, 0xed, 0xf0, 0xc5, 0x4b, + 0x19, 0xc5, 0xfb, 0x85, 0xd0, 0x4b, 0x13, 0x44, 0x5f, 0x92, 0xc0, 0x8b, 0x18, 0x9f, 0xdb, 0x9b, + 0xe0, 0x45, 0x8c, 0xaf, 0x31, 0x91, 0x17, 0x31, 0xae, 0xc8, 0x50, 0x5e, 0xc4, 0x48, 0xae, 0x59, + 0xd4, 0x47, 0x28, 0xf6, 0x22, 0xc6, 0x44, 0xf2, 0x89, 0x41, 0x16, 0x8e, 0xa7, 0x56, 0xca, 0xbe, + 0x7c, 0x71, 0x9d, 0x97, 0x2f, 0x6a, 0x47, 0x07, 0x80, 0x68, 0x01, 0x0a, 0x3d, 0x80, 0xa3, 0x09, + 0x70, 0x74, 0x01, 0x8b, 0x36, 0xc8, 0xa4, 0x0f, 0x42, 0x69, 0x44, 0xf6, 0xd1, 0x8a, 0x3f, 0xe7, + 0xcf, 0x22, 0xa6, 0x3f, 0x50, 0x61, 0xe2, 0x27, 0x37, 0xb2, 0xcf, 0xf8, 0xb3, 0x1a, 0x5e, 0xb0, + 0x2c, 0xc4, 0xb0, 0x67, 0xaf, 0x72, 0xdf, 0x8b, 0x81, 0x66, 0x3f, 0xed, 0x9e, 0xdd, 0x73, 0x7b, + 0xa7, 0xfb, 0x4e, 0xeb, 0xa3, 0xeb, 0xfc, 0xd9, 0xb1, 0xa4, 0x87, 0xf9, 0xa9, 0x52, 0x28, 0x86, + 0x90, 0xb0, 0x82, 0xed, 0x7e, 0xe9, 0x9e, 0x9c, 0x3a, 0x56, 0xd7, 0x3d, 0x30, 0x3b, 0xe6, 0xbe, + 0xdd, 0xb2, 0x9d, 0x3f, 0x67, 0xb0, 0xe8, 0x21, 0xe0, 0x02, 0x11, 0x1f, 0x58, 0x38, 0x79, 0x0a, + 0x5e, 0xee, 0xff, 0x1b, 0xd0, 0x06, 0x8a, 0xdf, 0x08, 0x95, 0x12, 0xa0, 0x62, 0xb6, 0x8e, 0x4e, + 0xba, 0xb6, 0xf3, 0xfe, 0x98, 0xbb, 0x4a, 0x56, 0xfb, 0x75, 0xc6, 0x0d, 0x6e, 0x4c, 0xde, 0x68, + 0xc1, 0x98, 0x90, 0x60, 0xd0, 0x25, 0x22, 0xf2, 0xae, 0xf5, 0xdc, 0xae, 0x65, 0x1e, 0xbc, 0x27, + 0xbf, 0x27, 0x4a, 0x9e, 0x8f, 0x16, 0xc7, 0x72, 0x9b, 0xd6, 0xa1, 0x79, 0xda, 0x72, 0xdc, 0x63, + 0xcb, 0xe9, 0xda, 0x07, 0x64, 0xf8, 0x04, 0xcb, 0x32, 0xb0, 0x9c, 0xb6, 0x0f, 0x4e, 0xda, 0x3d, + 0xa7, 0x6b, 0xda, 0x6d, 0xab, 0xe9, 0xb6, 0x7a, 0x1d, 0x82, 0x85, 0x60, 0x59, 0x06, 0x96, 0x96, + 0xdd, 0xfe, 0xe0, 0x36, 0xad, 0x96, 0xc9, 0xa6, 0x01, 0x51, 0xf2, 0x04, 0x94, 0xb8, 0x1f, 0xcd, + 0xae, 0x6d, 0x3a, 0xf6, 0x49, 0x9b, 0x78, 0x21, 0x5e, 0x96, 0xe1, 0xc5, 0xee, 0x7c, 0xdc, 0x76, + 0xdb, 0x96, 0x7d, 0xf4, 0x7e, 0xff, 0xa4, 0xeb, 0x9a, 0xcd, 0x66, 0xd7, 0xea, 0xf5, 0x08, 0x18, + 0x02, 0x66, 0x19, 0x60, 0xcc, 0xe6, 0xb1, 0xdd, 0x76, 0x8f, 0xba, 0x27, 0xa7, 0x64, 0x2b, 0x84, + 0xc9, 0x0f, 0x60, 0xf2, 0x87, 0xdb, 0xb3, 0x9b, 0x84, 0x08, 0x21, 0xb2, 0x0c, 0x22, 0xc7, 0xe6, + 0xa7, 0x94, 0xae, 0xec, 0x9b, 0xed, 0xe6, 0x7f, 0xec, 0xa6, 0xf3, 0x9e, 0x68, 0x21, 0x5a, 0x7e, + 0x40, 0x54, 0x1a, 0x24, 0x2a, 0x04, 0xcc, 0xf3, 0x98, 0xad, 0xdd, 0x76, 0xac, 0xee, 0xa1, 0x79, + 0x60, 0x11, 0x31, 0x44, 0xcc, 0x93, 0x6a, 0xe7, 0xd6, 0x09, 0x41, 0x42, 0x90, 0x2c, 0x07, 0x49, + 0x46, 0x56, 0xdc, 0xac, 0x77, 0xeb, 0x10, 0x30, 0x04, 0xcc, 0x52, 0xc0, 0x58, 0x9f, 0x1c, 0xab, + 0xdd, 0xb4, 0x9a, 0xac, 0x9c, 0x89, 0x97, 0x27, 0x13, 0x5d, 0xf2, 0x16, 0x22, 0xe6, 0xc9, 0x88, + 0x39, 0x75, 0xec, 0x96, 0xfd, 0x5f, 0xab, 0xc9, 0x42, 0x9a, 0x68, 0xf9, 0x39, 0x5a, 0xcc, 0xe6, + 0x1f, 0x6e, 0xcb, 0x6c, 0xb3, 0x3b, 0x47, 0x98, 0xfc, 0xb0, 0x3b, 0x67, 0xb7, 0xef, 0x3a, 0x74, + 0x3c, 0x76, 0x26, 0x5a, 0x7e, 0x5e, 0x3a, 0x77, 0xba, 0x27, 0x8e, 0x75, 0xe0, 0xd8, 0x27, 0xed, + 0x74, 0x58, 0x8e, 0x78, 0x21, 0x5e, 0x96, 0x25, 0xa1, 0x8f, 0xa6, 0xdd, 0x32, 0xf7, 0x5b, 0x16, + 0x39, 0x0b, 0xe1, 0xf2, 0xc4, 0xf0, 0x62, 0x3a, 0x4e, 0xd7, 0xde, 0x3f, 0x75, 0x2c, 0x16, 0x43, + 0x84, 0xca, 0x0f, 0x66, 0x2a, 0xbb, 0x56, 0xcf, 0xea, 0x7e, 0x64, 0x39, 0x44, 0xbc, 0x3c, 0x05, + 0x2f, 0x5d, 0xab, 0x67, 0x37, 0x4f, 0xcd, 0x16, 0xd1, 0x42, 0xb4, 0x3c, 0xa1, 0x2a, 0x32, 0x3f, + 0xb9, 0x69, 0x7c, 0x21, 0x79, 0x21, 0x66, 0x9e, 0x41, 0x5e, 0xa0, 0x9a, 0x2d, 0x14, 0xf0, 0x56, + 0xc5, 0xd5, 0xc0, 0xb5, 0x79, 0x80, 0x6a, 0x2b, 0x82, 0x22, 0xff, 0x0a, 0x00, 0x4e, 0x55, 0x45, + 0x50, 0x14, 0x92, 0x84, 0x41, 0xda, 0xd8, 0x44, 0x43, 0x71, 0x68, 0x40, 0x52, 0x49, 0x11, 0x17, + 0x79, 0xe3, 0x02, 0x54, 0x0d, 0x45, 0x60, 0xe4, 0x0d, 0x0c, 0xa8, 0xd9, 0x2d, 0xc2, 0x21, 0x7f, + 0x38, 0x80, 0xa8, 0x9b, 0x08, 0x85, 0xbc, 0xa1, 0x80, 0xa8, 0x62, 0x22, 0x2a, 0x0a, 0x20, 0x12, + 0x0d, 0x12, 0x09, 0x02, 0x43, 0x1b, 0x55, 0x12, 0x91, 0x51, 0x48, 0x4d, 0x8a, 0xa1, 0x3e, 0x22, + 0x18, 0xf2, 0x06, 0x03, 0xa8, 0xca, 0x88, 0xc0, 0xc8, 0x1b, 0x18, 0x98, 0x6a, 0x22, 0xe2, 0xa2, + 0x10, 0xc2, 0x49, 0x5e, 0x41, 0x64, 0x68, 0xa1, 0x0e, 0x22, 0x2a, 0xf2, 0x46, 0x05, 0x94, 0x0a, + 0x88, 0x70, 0xc8, 0x1b, 0x0e, 0x88, 0x6a, 0x1f, 0xa2, 0xa2, 0x90, 0x92, 0x14, 0x4e, 0xd5, 0x43, + 0x5c, 0xe4, 0x9e, 0x3c, 0x10, 0xd5, 0x3b, 0x84, 0x45, 0x21, 0xe1, 0x02, 0x49, 0xa5, 0x43, 0x48, + 0xe4, 0x5e, 0x7c, 0x40, 0xaa, 0x71, 0x88, 0x8b, 0xbc, 0x71, 0x81, 0xa8, 0xba, 0x21, 0x2a, 0x72, + 0xaf, 0x42, 0x60, 0xd5, 0x35, 0xc4, 0x46, 0x21, 0xe4, 0x82, 0xcd, 0x8a, 0x4a, 0x42, 0xa1, 0xc3, + 0x1b, 0x99, 0x88, 0x92, 0x97, 0xa2, 0x65, 0x7a, 0x32, 0x32, 0xbb, 0xe6, 0x8d, 0x2b, 0x8f, 0x88, + 0x94, 0xe5, 0x48, 0x71, 0xcc, 0xa3, 0xed, 0x06, 0x01, 0x42, 0x80, 0xfc, 0x20, 0x94, 0x6c, 0x33, + 0x94, 0x10, 0x29, 0x4f, 0x0a, 0x25, 0x84, 0x07, 0xe1, 0xb1, 0x0c, 0x1e, 0x9d, 0xae, 0x75, 0x68, + 0x7f, 0xe2, 0x0a, 0x46, 0xa2, 0xe4, 0x09, 0x28, 0x39, 0x6c, 0x99, 0x47, 0x3d, 0x6e, 0x8f, 0x58, + 0xed, 0x17, 0xb7, 0x47, 0xb0, 0x8f, 0x80, 0x56, 0x19, 0x12, 0x11, 0xac, 0x00, 0x09, 0x04, 0x56, + 0x7a, 0x44, 0x04, 0x2b, 0x3a, 0xc2, 0x80, 0x95, 0x1b, 0xd1, 0xc0, 0x0a, 0x4d, 0x9f, 0xca, 0x4c, + 0x6e, 0x45, 0x26, 0xf3, 0xbd, 0xc9, 0xb3, 0x4a, 0x96, 0x45, 0xc2, 0xa2, 0x9f, 0x61, 0x86, 0xe1, + 0x30, 0xf1, 0x12, 0x7f, 0x18, 0x1a, 0x7b, 0x02, 0xe3, 0x9e, 0x11, 0xf7, 0xbf, 0xa8, 0x2b, 0x6f, + 0xe4, 0x25, 0x5f, 0x26, 0x91, 0xae, 0x3e, 0x1c, 0xa9, 0xb0, 0x3f, 0x0c, 0x2f, 0xfc, 0xcb, 0x5a, + 0xa8, 0x92, 0xaf, 0xc3, 0xe8, 0xef, 0x9a, 0x1f, 0xc6, 0x89, 0x17, 0xf6, 0x55, 0xfd, 0xf1, 0x0f, + 0xe2, 0x85, 0x9f, 0xd4, 0x47, 0xd1, 0x30, 0x19, 0xf6, 0x87, 0x41, 0x9c, 0x7d, 0x57, 0xf7, 0x63, + 0x3f, 0xae, 0x07, 0xea, 0x5a, 0x05, 0xb3, 0x5f, 0xea, 0x81, 0x1f, 0xfe, 0x5d, 0x8b, 0x13, 0x2f, + 0x51, 0xb5, 0x81, 0x97, 0x78, 0xe7, 0x5e, 0xac, 0xea, 0x41, 0x3c, 0xaa, 0x27, 0xc1, 0x75, 0x3c, + 0xf9, 0x47, 0xdd, 0x1f, 0x5d, 0x6f, 0xd7, 0x22, 0xe5, 0xf5, 0xbf, 0x78, 0xe7, 0x7e, 0xe0, 0x27, + 0x37, 0xf5, 0x51, 0xa4, 0x2e, 0xfc, 0x6f, 0x2a, 0x9e, 0x7d, 0x53, 0x8f, 0xc7, 0xe7, 0xd3, 0xdf, + 0x9d, 0xfe, 0x5a, 0x9f, 0xfe, 0xcf, 0x64, 0x45, 0x62, 0x39, 0x5e, 0x21, 0xc8, 0x23, 0x8c, 0xc4, + 0xbb, 0x14, 0xe7, 0x06, 0x59, 0x9a, 0x9f, 0x18, 0x27, 0x2c, 0x7a, 0x7c, 0xf0, 0xc3, 0x81, 0xb1, + 0xb7, 0xb6, 0x21, 0xcc, 0xac, 0x83, 0x69, 0x84, 0x30, 0xf6, 0xd6, 0xd6, 0x85, 0x19, 0xd6, 0x99, + 0x86, 0x07, 0x99, 0x91, 0x76, 0x0e, 0xb3, 0x61, 0xbf, 0x36, 0x89, 0x89, 0x02, 0x47, 0x98, 0x8c, + 0xde, 0x70, 0x1c, 0xf5, 0x95, 0xc8, 0xd7, 0x97, 0xba, 0x83, 0xba, 0xf9, 0x3a, 0x8c, 0x26, 0x1e, + 0x61, 0xa4, 0x89, 0x40, 0xe8, 0x1c, 0x98, 0xf1, 0xde, 0x8b, 0xcd, 0xe8, 0x72, 0x7c, 0xa5, 0xc2, + 0xc4, 0xd8, 0x5b, 0x4b, 0xa2, 0xb1, 0x12, 0x6a, 0xe8, 0x3d, 0x2b, 0x33, 0x60, 0x92, 0x61, 0x42, + 0x31, 0xcc, 0xa6, 0x1f, 0x09, 0xa5, 0x96, 0x53, 0x56, 0x26, 0x36, 0x98, 0xcc, 0xe3, 0x71, 0x6a, + 0xa6, 0x50, 0xff, 0x94, 0x49, 0x00, 0xc4, 0x13, 0x01, 0x04, 0x42, 0x00, 0x44, 0x0c, 0x50, 0x08, + 0x02, 0x1c, 0x51, 0x80, 0x23, 0x0c, 0x58, 0xc4, 0x41, 0x26, 0x81, 0x10, 0x4a, 0x24, 0xc4, 0x13, + 0x8a, 0xfb, 0x5d, 0x84, 0x77, 0x9b, 0xf2, 0x83, 0xd0, 0xbd, 0xbe, 0xc2, 0xbb, 0x4d, 0xe9, 0x01, + 0x68, 0x46, 0x34, 0xd6, 0x85, 0x9b, 0x29, 0x9d, 0x70, 0x20, 0x11, 0x0f, 0x40, 0x02, 0x82, 0x46, + 0x44, 0x60, 0x09, 0x09, 0x2c, 0x31, 0xc1, 0x24, 0x28, 0xb2, 0x89, 0x8a, 0x70, 0xc2, 0x92, 0x7d, + 0xe4, 0xce, 0xcd, 0x48, 0x61, 0x45, 0xdc, 0xb1, 0x1f, 0x26, 0xe2, 0xb9, 0xc1, 0x7d, 0x7e, 0xb0, + 0x03, 0x60, 0x6a, 0xd7, 0x0b, 0x2f, 0x15, 0x8c, 0xe6, 0x16, 0x47, 0xb5, 0x60, 0x1c, 0xfb, 0x21, + 0x4c, 0xc6, 0x05, 0x23, 0xb6, 0x0b, 0x66, 0x4f, 0x95, 0xe3, 0x80, 0x76, 0x1f, 0x46, 0x5e, 0x3f, + 0xf1, 0x87, 0x61, 0xd3, 0xbf, 0xf4, 0x93, 0x78, 0xf2, 0x00, 0x94, 0x3a, 0xe5, 0xe1, 0x8a, 0xde, + 0x37, 0xba, 0x62, 0xc1, 0xae, 0xd8, 0xd8, 0xdc, 0x6d, 0xec, 0x6e, 0xef, 0x6c, 0xee, 0x6e, 0xd1, + 0x27, 0x49, 0x88, 0xb1, 0xac, 0x3c, 0x63, 0x61, 0xf1, 0x0a, 0x07, 0x6a, 0xf9, 0x71, 0x62, 0x26, + 0x49, 0x84, 0x51, 0x5c, 0x1c, 0xfb, 0xa1, 0x15, 0xa8, 0x49, 0xed, 0x3b, 0xf1, 0xf5, 0x70, 0x1c, + 0x04, 0x00, 0xa4, 0xfd, 0xd8, 0xfb, 0x86, 0x67, 0xf4, 0x49, 0x34, 0x50, 0x91, 0x1a, 0xec, 0xdf, + 0xcc, 0x4c, 0xfe, 0x85, 0x41, 0x4a, 0x1f, 0xcb, 0xa4, 0x1e, 0xcf, 0x08, 0x9f, 0x28, 0xce, 0xec, + 0xd4, 0x62, 0xb2, 0x38, 0xf1, 0x2e, 0x25, 0x4e, 0x17, 0xcb, 0xf5, 0x1c, 0xce, 0x6a, 0x01, 0xfb, + 0xae, 0x36, 0x3e, 0x2b, 0x71, 0xb8, 0x36, 0x4e, 0xa2, 0x71, 0x3f, 0x09, 0x67, 0x9d, 0xdf, 0x76, + 0xfa, 0xb2, 0xec, 0xd9, 0xbb, 0x72, 0x3b, 0xb3, 0x37, 0xe4, 0xda, 0xb1, 0x1f, 0xbb, 0xad, 0xc9, + 0xab, 0x71, 0x5b, 0xf1, 0xc8, 0x75, 0x82, 0x6b, 0xd7, 0x1e, 0x5d, 0x6f, 0x77, 0xef, 0xbd, 0x00, + 0x37, 0x3d, 0x5c, 0x74, 0x7b, 0xd3, 0xe7, 0x75, 0x1d, 0xef, 0x92, 0xda, 0x07, 0xf1, 0xfe, 0x6f, + 0x24, 0xde, 0xe5, 0x76, 0x43, 0xb4, 0xfa, 0x61, 0xbb, 0x41, 0xfd, 0xc3, 0x93, 0xcc, 0xa2, 0xfe, + 0xe1, 0x15, 0x40, 0xa3, 0xfe, 0xe1, 0xe5, 0xee, 0x40, 0xfd, 0xc3, 0xaa, 0x09, 0x19, 0xf5, 0x0f, + 0xe8, 0x9c, 0x9a, 0xfa, 0x87, 0xd7, 0xc5, 0x63, 0xea, 0x1f, 0xf4, 0x23, 0x02, 0x08, 0x84, 0x00, + 0x88, 0x18, 0xa0, 0x10, 0x04, 0x38, 0xa2, 0x00, 0x47, 0x18, 0xb0, 0x88, 0x83, 0x4c, 0x02, 0x21, + 0x94, 0x48, 0x88, 0x27, 0x14, 0xc2, 0x3b, 0x09, 0x50, 0x9d, 0x85, 0x65, 0x44, 0x83, 0xfa, 0x87, + 0xea, 0x10, 0x0f, 0x40, 0x02, 0x82, 0x46, 0x44, 0x60, 0x09, 0x09, 0x2c, 0x31, 0xc1, 0x24, 0x28, + 0xb2, 0x89, 0x8a, 0x70, 0xc2, 0x92, 0x7d, 0xe4, 0x98, 0xfa, 0x07, 0xf1, 0xdc, 0xe0, 0x3e, 0x3f, + 0xf8, 0x9d, 0xfa, 0x87, 0x15, 0x7f, 0x51, 0xff, 0x40, 0x62, 0xfb, 0x1d, 0xb3, 0xa9, 0x7f, 0x60, + 0x7a, 0xfb, 0x91, 0x2b, 0x52, 0xff, 0x50, 0xb8, 0x2b, 0x6e, 0xfc, 0xde, 0x68, 0x6c, 0xef, 0x34, + 0x1a, 0xeb, 0x3b, 0xef, 0x76, 0xd6, 0x77, 0xb7, 0xb6, 0x36, 0xb6, 0x37, 0xa8, 0x84, 0x20, 0x35, + 0x06, 0xb3, 0x92, 0x4a, 0x88, 0xd7, 0x38, 0x10, 0x95, 0x10, 0x45, 0xa4, 0x36, 0x2a, 0x21, 0x2a, + 0x1a, 0xa4, 0x78, 0x50, 0xf3, 0x1c, 0xd0, 0x51, 0x09, 0x51, 0xec, 0x54, 0xf5, 0x76, 0x83, 0x5a, + 0x08, 0x5c, 0x8b, 0xa8, 0x85, 0xa8, 0xaa, 0xd7, 0x56, 0x4d, 0x0d, 0x21, 0xed, 0x32, 0x3f, 0xea, + 0x21, 0xbe, 0x87, 0x80, 0x44, 0xe2, 0x69, 0xc5, 0xdd, 0xd0, 0xc2, 0xc4, 0x3a, 0x99, 0x6a, 0x88, + 0x75, 0xaa, 0x21, 0x9e, 0x66, 0x18, 0xd5, 0x10, 0xaf, 0x32, 0x91, 0x6a, 0x88, 0x15, 0x19, 0x4a, + 0x35, 0x04, 0x59, 0x75, 0x51, 0x1f, 0xa1, 0xd8, 0x19, 0x80, 0x2c, 0xe2, 0x05, 0xca, 0xbb, 0x88, + 0xd4, 0x85, 0xc4, 0x88, 0x37, 0x57, 0x1b, 0x08, 0xdc, 0x72, 0x68, 0x74, 0x66, 0x85, 0xc8, 0xdb, + 0xb7, 0x69, 0x11, 0x5e, 0x9f, 0x32, 0x14, 0xf2, 0x5c, 0xc1, 0x96, 0x08, 0x89, 0x0d, 0x93, 0x44, + 0x29, 0x8c, 0xd2, 0xca, 0x3c, 0x47, 0x10, 0x7d, 0x5e, 0x20, 0xfa, 0x5c, 0x40, 0x66, 0xff, 0x5f, + 0x8a, 0xff, 0x09, 0xed, 0x74, 0x69, 0xd1, 0xe1, 0x12, 0x44, 0x23, 0x72, 0xeb, 0x69, 0xc9, 0xc8, + 0xf2, 0xe5, 0xe7, 0xd4, 0x72, 0x2d, 0x28, 0x39, 0x9a, 0x48, 0x8b, 0x22, 0xd8, 0xd1, 0xa3, 0x5c, + 0x97, 0x2a, 0x0f, 0xc8, 0x25, 0x82, 0xd8, 0x18, 0x87, 0x03, 0x75, 0xe1, 0x87, 0x6a, 0x50, 0x9b, + 0x7f, 0x08, 0x65, 0xe3, 0xf8, 0x6e, 0x0e, 0x7d, 0xc1, 0xb4, 0x92, 0x9d, 0x5d, 0x86, 0xee, 0x5d, + 0x4c, 0x6b, 0x57, 0x52, 0x2b, 0x57, 0x60, 0xeb, 0x56, 0x5a, 0xab, 0x56, 0x6c, 0x6b, 0x56, 0x6c, + 0x2b, 0x56, 0x66, 0xeb, 0xb5, 0xda, 0x84, 0x4b, 0x8a, 0x0e, 0x7c, 0x21, 0x3b, 0xc9, 0xf1, 0xf3, + 0x65, 0xf9, 0x53, 0x8a, 0xbb, 0xcb, 0x5a, 0x1f, 0x23, 0xee, 0xa4, 0x54, 0xe2, 0x09, 0xa9, 0xe0, + 0x93, 0x51, 0xa9, 0x27, 0xa2, 0xe2, 0x4f, 0x42, 0xc5, 0x9f, 0x80, 0xca, 0x3e, 0xf9, 0xe4, 0x69, + 0x86, 0xc4, 0xb4, 0x7c, 0xd7, 0x08, 0x11, 0xb9, 0xe7, 0x4d, 0xf4, 0x7e, 0x37, 0x2e, 0x76, 0xc5, + 0x4f, 0xd4, 0x00, 0x09, 0x5b, 0x7a, 0xe2, 0x86, 0x49, 0xe0, 0x30, 0x89, 0x1c, 0x23, 0xa1, 0xcb, + 0x4a, 0xec, 0xc2, 0x12, 0xbc, 0xd8, 0x44, 0x9f, 0x19, 0x16, 0xa8, 0xf0, 0x72, 0x7a, 0xea, 0x21, + 0x7c, 0xb3, 0xeb, 0xcc, 0x4e, 0xd9, 0xab, 0x5d, 0xd7, 0xb9, 0xda, 0x55, 0x3b, 0x4a, 0x00, 0x44, + 0x0d, 0x50, 0x28, 0x02, 0x1c, 0x55, 0x80, 0xa3, 0x0c, 0x58, 0xd4, 0x41, 0x26, 0x85, 0x10, 0x4a, + 0x25, 0xb2, 0x8f, 0x56, 0xfc, 0x86, 0xb4, 0x07, 0x9b, 0xd1, 0x7e, 0x97, 0x1c, 0x2f, 0x67, 0xe9, + 0x5b, 0xf0, 0x06, 0x18, 0x90, 0x45, 0x68, 0x18, 0x7b, 0x34, 0x80, 0x56, 0x8d, 0x42, 0x6d, 0x59, + 0x42, 0x5b, 0x74, 0x86, 0xb8, 0x42, 0xe9, 0x16, 0x63, 0xeb, 0x0b, 0x5d, 0x2c, 0x67, 0x17, 0xdb, + 0xdc, 0xda, 0xa2, 0x93, 0x55, 0x8b, 0x88, 0xca, 0xb7, 0xee, 0x8c, 0xcb, 0x54, 0x50, 0x83, 0xb8, + 0xcc, 0x15, 0x06, 0x0b, 0xa5, 0x84, 0xc0, 0x55, 0x06, 0x20, 0x99, 0x84, 0x4d, 0xc0, 0x55, 0xe2, + 0x90, 0x4d, 0xc0, 0xd5, 0xb9, 0x0d, 0x9b, 0x80, 0x39, 0x1b, 0xcc, 0x26, 0xa0, 0xae, 0x65, 0x17, + 0x9b, 0x80, 0x2b, 0x4f, 0xdf, 0x6c, 0x02, 0xbe, 0xf6, 0x8b, 0x4d, 0x40, 0x76, 0x28, 0xd8, 0x04, + 0xac, 0x60, 0x36, 0x7a, 0xe8, 0x62, 0x6c, 0x02, 0xe6, 0xee, 0x62, 0x6c, 0x02, 0x56, 0x8e, 0x88, + 0xca, 0xb7, 0x8e, 0x4d, 0x40, 0xd8, 0x20, 0x6e, 0x5c, 0xcf, 0x02, 0x8b, 0xf0, 0x2e, 0x60, 0x6a, + 0x26, 0xdb, 0x80, 0x2f, 0x31, 0x8f, 0x6d, 0xc0, 0x15, 0x02, 0x91, 0x6d, 0xc0, 0xd5, 0xb9, 0x0d, + 0xdb, 0x80, 0x39, 0x1b, 0xcc, 0x36, 0xa0, 0xae, 0x85, 0x17, 0x50, 0x1b, 0xf0, 0xdc, 0x0f, 0xbd, + 0xe8, 0x06, 0xa0, 0x0f, 0xb8, 0x4b, 0x1a, 0x0b, 0x68, 0x11, 0x2f, 0x06, 0x79, 0x9e, 0x7d, 0x98, + 0x8b, 0xcf, 0x16, 0x56, 0x5c, 0x2d, 0xfc, 0x44, 0xe2, 0xe5, 0x3e, 0xbc, 0x3a, 0xe3, 0x7b, 0x08, + 0xe4, 0xd5, 0x19, 0x7a, 0x14, 0x98, 0xd4, 0x9b, 0xeb, 0x59, 0x48, 0x52, 0x6f, 0x5e, 0xb5, 0x82, + 0x91, 0x7a, 0x73, 0x7c, 0xde, 0xc9, 0xab, 0x33, 0x5e, 0x9f, 0x60, 0x79, 0x75, 0x06, 0x3c, 0xcf, + 0xe5, 0xb2, 0xa9, 0x87, 0x89, 0x92, 0x57, 0x67, 0x3c, 0xc5, 0x2a, 0x5e, 0x9d, 0xf1, 0x52, 0xe3, + 0x78, 0x75, 0x06, 0x5e, 0x2f, 0x48, 0xdb, 0x1e, 0x90, 0xde, 0xd7, 0x69, 0x9c, 0xce, 0x9f, 0x96, + 0xf7, 0x6a, 0xc8, 0xb1, 0x80, 0xf7, 0x6a, 0x68, 0x19, 0x5a, 0x2a, 0x7b, 0xc3, 0xc6, 0x2f, 0x15, + 0x72, 0xa2, 0x39, 0x3f, 0x2e, 0xb5, 0x89, 0x24, 0x83, 0x11, 0x8b, 0x62, 0xc0, 0xa2, 0x18, 0xaf, + 0x0c, 0x86, 0x5b, 0x96, 0x87, 0x08, 0x49, 0x2f, 0x98, 0x69, 0xa5, 0x44, 0x3a, 0xba, 0x7a, 0xfa, + 0x59, 0x4e, 0x46, 0x2c, 0x3e, 0x1f, 0x15, 0xfb, 0x37, 0x16, 0xec, 0xd7, 0x65, 0xfb, 0x33, 0x98, + 0x1f, 0x17, 0x8b, 0xf9, 0xe2, 0x90, 0x57, 0xcc, 0xdf, 0x54, 0x10, 0xb6, 0xcb, 0xc2, 0x34, 0x06, + 0x96, 0x0b, 0xcc, 0x41, 0x2b, 0xcc, 0x39, 0xc5, 0x38, 0x5e, 0xfe, 0x6e, 0x50, 0x80, 0x0b, 0x18, + 0xd3, 0x8f, 0x3c, 0x8e, 0x82, 0xcb, 0xe2, 0x6e, 0x24, 0xcc, 0x8e, 0xf4, 0xee, 0xfd, 0xdd, 0x05, + 0x39, 0x7b, 0xb1, 0x57, 0x2f, 0x14, 0x3e, 0xe2, 0x52, 0xc6, 0xe8, 0x4a, 0x89, 0x23, 0x29, 0x65, + 0x8d, 0x9a, 0x94, 0x3e, 0x42, 0x52, 0xfa, 0x68, 0x48, 0xb9, 0x23, 0x1f, 0x7a, 0x11, 0x90, 0xa2, + 0x57, 0xfd, 0xdf, 0x85, 0xdd, 0xe2, 0x1d, 0x67, 0x21, 0xf2, 0x17, 0xed, 0x38, 0xe5, 0xdc, 0xbd, + 0x53, 0xda, 0xac, 0x63, 0x99, 0xb3, 0x8c, 0x02, 0x66, 0x15, 0xcb, 0x9e, 0x45, 0x14, 0x33, 0x6b, + 0x28, 0x66, 0x96, 0x50, 0xc6, 0xac, 0xa0, 0xde, 0x5d, 0x9a, 0xff, 0x9f, 0xbd, 0xef, 0x6b, 0x6a, + 0x1b, 0x5d, 0x9e, 0xbe, 0xdf, 0x4f, 0x41, 0xa9, 0xce, 0x45, 0x52, 0xb5, 0x8a, 0x81, 0x18, 0x08, + 0xdc, 0x09, 0x2c, 0x40, 0x1b, 0x63, 0xbb, 0x64, 0xc1, 0xc9, 0x9e, 0x2c, 0xab, 0x12, 0xf6, 0x03, + 0xd1, 0x1b, 0x23, 0xbb, 0x24, 0x99, 0x84, 0xdf, 0x86, 0xef, 0xfe, 0x96, 0x2d, 0x5b, 0x10, 0xc0, + 0x1b, 0xfe, 0xd8, 0xd2, 0xf4, 0xe3, 0xf6, 0xc5, 0x42, 0xbc, 0x90, 0x8c, 0xe4, 0x9e, 0x99, 0x9e, + 0xd1, 0xf4, 0x3c, 0x65, 0x9d, 0x1d, 0x63, 0x4c, 0xab, 0x51, 0x33, 0x1a, 0x5e, 0x9e, 0xa9, 0xf2, + 0x1e, 0x49, 0xdc, 0xa6, 0x99, 0x7b, 0x06, 0x95, 0xf5, 0xa0, 0xa8, 0xd4, 0x01, 0xfc, 0xd2, 0x07, + 0xed, 0x25, 0x0c, 0xd4, 0x0b, 0x1a, 0x9c, 0x97, 0x32, 0x20, 0x2f, 0x6e, 0x10, 0x5e, 0xdc, 0xc0, + 0xbb, 0xac, 0xc1, 0xf6, 0xe5, 0x7a, 0xb8, 0x5e, 0xfa, 0x40, 0xba, 0xa0, 0xc1, 0x73, 0x09, 0x03, + 0xe6, 0x0f, 0x07, 0xc9, 0xef, 0x27, 0xd7, 0x65, 0x79, 0xc2, 0x57, 0x42, 0x19, 0x53, 0xee, 0x29, + 0xbb, 0x22, 0x4e, 0xd3, 0x2d, 0xf9, 0xd4, 0x5c, 0x92, 0x28, 0x92, 0x28, 0x92, 0x28, 0x92, 0x28, + 0x2c, 0x12, 0x55, 0xf6, 0x29, 0xb2, 0xc6, 0x79, 0x2f, 0x28, 0xf0, 0xc1, 0xe2, 0x2f, 0xe3, 0x56, + 0x66, 0x4e, 0xc9, 0xfe, 0x20, 0x43, 0x8e, 0x2f, 0x46, 0x7e, 0x2f, 0x49, 0x6e, 0x2f, 0x50, 0x5e, + 0x2f, 0x4d, 0x4e, 0x2f, 0x56, 0x3e, 0x2f, 0x56, 0x2e, 0x2f, 0x53, 0x1e, 0xbf, 0xdc, 0xba, 0x17, + 0x31, 0x72, 0xf7, 0x3c, 0xe2, 0xa8, 0x68, 0x78, 0xa9, 0xe2, 0x6c, 0x0e, 0x4d, 0x40, 0xd4, 0x99, + 0x56, 0x5b, 0x55, 0x01, 0xb6, 0xd8, 0xd1, 0xf0, 0x72, 0xf4, 0x61, 0x2d, 0x37, 0x64, 0x45, 0x49, + 0x9f, 0x45, 0x4a, 0x9e, 0x45, 0x4a, 0x9d, 0x65, 0x49, 0x9c, 0x4b, 0x94, 0x86, 0x95, 0xd8, 0x2b, + 0x90, 0xf2, 0x5c, 0xf2, 0x41, 0xd0, 0x97, 0xf1, 0x7c, 0x92, 0x95, 0x09, 0x2b, 0x13, 0x56, 0x26, + 0xac, 0x4c, 0x58, 0x99, 0xb0, 0x32, 0x79, 0x24, 0xe2, 0x0c, 0xc3, 0x28, 0x7d, 0xbf, 0x2e, 0xa8, + 0x28, 0x11, 0xb0, 0x66, 0x4b, 0xd8, 0xc9, 0x6a, 0xb2, 0x76, 0x21, 0xc9, 0xdb, 0xce, 0x2a, 0x74, + 0x03, 0xaa, 0xd0, 0x93, 0xcf, 0x24, 0x1f, 0xbe, 0x74, 0x23, 0x6b, 0xb3, 0x16, 0xa1, 0xfe, 0x4c, + 0xa8, 0x57, 0xd7, 0xb7, 0xab, 0xdb, 0x9b, 0x5b, 0xeb, 0xdb, 0x1b, 0xc4, 0x3c, 0x06, 0x21, 0x92, + 0x63, 0xc5, 0x29, 0x5b, 0x27, 0xc5, 0xb7, 0x4e, 0x06, 0x57, 0x9b, 0x66, 0x18, 0xa5, 0x2a, 0x3e, + 0x0f, 0x3a, 0xca, 0x0c, 0xba, 0xdd, 0x58, 0x25, 0x82, 0x9e, 0xe8, 0xce, 0xb0, 0x8f, 0x8d, 0x14, + 0x36, 0x52, 0xd8, 0x48, 0x61, 0x23, 0x85, 0x8d, 0x14, 0x36, 0x52, 0xc4, 0x44, 0x9c, 0x71, 0xae, + 0x92, 0x91, 0xa1, 0xee, 0x66, 0xa9, 0xb5, 0x0f, 0x02, 0x6c, 0x69, 0x05, 0x69, 0xaa, 0xe2, 0x48, + 0x4c, 0x47, 0xc5, 0xf8, 0xfb, 0xcd, 0x9b, 0xcf, 0xab, 0xe6, 0x76, 0x60, 0x9e, 0x5b, 0xe6, 0xfe, + 0xe9, 0x3f, 0x6b, 0xbf, 0x57, 0x6f, 0x76, 0xde, 0xfe, 0xb3, 0x75, 0x73, 0xff, 0xcd, 0x1f, 0x8f, + 0xfd, 0xd8, 0xda, 0xef, 0x5b, 0x37, 0x3b, 0x33, 0xfe, 0xcf, 0xe6, 0xcd, 0xce, 0x13, 0xff, 0x8e, + 0x8d, 0x9b, 0x37, 0x0f, 0x7e, 0x74, 0xf4, 0xfe, 0xfa, 0xac, 0x5f, 0xa8, 0xce, 0xf8, 0x85, 0xf7, + 0xb3, 0x7e, 0xe1, 0xfd, 0x8c, 0x5f, 0x98, 0x69, 0xd2, 0xfa, 0x8c, 0x5f, 0xd8, 0xb8, 0xf9, 0xf1, + 0xe0, 0xe7, 0xdf, 0x3c, 0xfe, 0xa3, 0x9b, 0x37, 0x6f, 0x7f, 0xcc, 0xfa, 0x7f, 0x5b, 0x37, 0x3f, + 0x76, 0xde, 0xbe, 0xfd, 0x8f, 0xc1, 0x52, 0x63, 0x59, 0x4b, 0x8d, 0x48, 0x85, 0x17, 0x5f, 0xce, + 0xfa, 0xb1, 0xd0, 0x4a, 0xe3, 0x81, 0x79, 0x2c, 0x34, 0x58, 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, + 0x42, 0x83, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0x2c, 0x34, 0x58, 0x68, 0xb0, 0xd0, 0x90, 0x5d, + 0x68, 0x0c, 0x92, 0x48, 0xdc, 0x24, 0xe8, 0x1d, 0x9b, 0x58, 0x52, 0xb0, 0xa4, 0x60, 0x49, 0xc1, + 0x92, 0x82, 0x25, 0x05, 0x4b, 0x0a, 0x31, 0x11, 0x67, 0x18, 0x46, 0xe9, 0x07, 0x41, 0xb5, 0xc4, + 0x06, 0x67, 0x40, 0xef, 0xbd, 0x38, 0x03, 0x8a, 0xc0, 0x6b, 0x1e, 0x98, 0xc5, 0x19, 0x50, 0xb4, + 0xe8, 0xfc, 0x33, 0xd4, 0x39, 0x03, 0xfa, 0x6c, 0xa8, 0xaf, 0x6f, 0x70, 0xf8, 0x13, 0x84, 0x08, + 0xc9, 0xb1, 0x82, 0x8d, 0x92, 0xe2, 0xdd, 0x22, 0x89, 0x7b, 0x17, 0xe6, 0xd5, 0xc4, 0x6b, 0x85, + 0x34, 0x4a, 0xee, 0xd8, 0xc4, 0x46, 0x09, 0x1b, 0x25, 0x6c, 0x94, 0xb0, 0x51, 0xc2, 0x46, 0x09, + 0x1b, 0x25, 0xa2, 0x1a, 0x25, 0x54, 0xcb, 0xb2, 0x53, 0xc2, 0x4e, 0x09, 0x3b, 0x25, 0xec, 0x94, + 0xb0, 0x53, 0xf2, 0x2a, 0xa8, 0x53, 0x2d, 0xcb, 0x86, 0x09, 0x68, 0xc3, 0x84, 0xdb, 0xf2, 0x7e, + 0x4e, 0xf3, 0xdc, 0x96, 0xf7, 0x24, 0xa3, 0xb8, 0x2d, 0xaf, 0x6c, 0xf7, 0x31, 0x92, 0xeb, 0x24, + 0x55, 0x97, 0x66, 0xd8, 0x15, 0xd4, 0xf4, 0xcb, 0x4d, 0x62, 0xcf, 0x8f, 0x3d, 0xbf, 0x5f, 0x80, + 0x85, 0x3d, 0xbf, 0xd9, 0xf0, 0x65, 0xcf, 0xef, 0x99, 0x86, 0xb1, 0xe7, 0x27, 0x8e, 0xda, 0xc9, + 0xeb, 0xf9, 0x49, 0x49, 0x4f, 0x2b, 0x14, 0x5b, 0xfc, 0xc2, 0xa0, 0xbf, 0x3f, 0xaf, 0x9a, 0xdb, + 0x96, 0xb9, 0x1f, 0x98, 0xe7, 0xa7, 0xff, 0x54, 0x6f, 0xfe, 0xfa, 0xeb, 0xdd, 0x2f, 0xde, 0xa0, + 0x44, 0x80, 0x47, 0xf5, 0x14, 0x93, 0x68, 0xa2, 0xa8, 0x9f, 0x66, 0xeb, 0xff, 0x4b, 0x3d, 0xb1, + 0x27, 0xe9, 0x7c, 0x51, 0x97, 0xc1, 0x60, 0x72, 0xd8, 0x5f, 0xa5, 0x3f, 0x50, 0x51, 0x67, 0xcc, + 0x36, 0xcd, 0x48, 0xa5, 0xdf, 0xfa, 0xf1, 0x57, 0x73, 0xba, 0xb4, 0xba, 0x72, 0xff, 0x8d, 0xe4, + 0xc1, 0x3b, 0x95, 0x41, 0xdc, 0x4f, 0xfb, 0x9d, 0x7e, 0x2f, 0xc9, 0xbf, 0xab, 0x8c, 0x52, 0x68, + 0xa5, 0xa7, 0xae, 0x54, 0x6f, 0xf2, 0xa5, 0xd2, 0x0b, 0xa3, 0xaf, 0xe6, 0xf8, 0x6c, 0x39, 0xb3, + 0x1b, 0xa4, 0xc1, 0x59, 0x90, 0xa8, 0x4a, 0x2f, 0x19, 0x54, 0xd2, 0xde, 0x55, 0x32, 0xfa, 0x4f, + 0x25, 0x3f, 0x2d, 0x3e, 0xb9, 0xfd, 0x36, 0x3b, 0x84, 0x70, 0x69, 0x0e, 0x1d, 0xd4, 0xfa, 0xc0, + 0xea, 0x8f, 0xea, 0xba, 0xfc, 0x6d, 0xe8, 0xe5, 0xb6, 0x8c, 0x44, 0xb4, 0x88, 0x44, 0xb4, 0x84, + 0xca, 0x6d, 0x01, 0x15, 0x0d, 0xfd, 0x92, 0xc3, 0x3e, 0x4c, 0xb8, 0x37, 0x4a, 0x39, 0x75, 0x35, + 0x1e, 0x76, 0xd2, 0x68, 0x42, 0xf2, 0x1b, 0xd9, 0xc5, 0x3a, 0x93, 0x6b, 0xf5, 0x5b, 0x93, 0x2b, + 0xf4, 0x9d, 0x24, 0x4c, 0xfc, 0xfa, 0xe8, 0xd2, 0xfc, 0x7a, 0x32, 0xf0, 0xbd, 0xde, 0x95, 0xef, + 0x0c, 0xae, 0x36, 0xdb, 0x23, 0xab, 0x7f, 0xd3, 0x33, 0x49, 0x14, 0xf3, 0x2f, 0x15, 0xe4, 0x8b, + 0x65, 0xf9, 0xa0, 0x70, 0xdf, 0x2b, 0x06, 0xbb, 0x8b, 0x47, 0x52, 0x01, 0x28, 0xca, 0x16, 0x2e, + 0xa4, 0xca, 0x8c, 0xfb, 0xc3, 0x54, 0xc5, 0x45, 0xb6, 0xce, 0x7f, 0xde, 0xf9, 0xf0, 0x93, 0x09, + 0x05, 0x79, 0x4f, 0xb1, 0xe7, 0x32, 0x17, 0xde, 0xfa, 0x2e, 0xa3, 0xc5, 0x5d, 0x62, 0x2b, 0xbb, + 0xac, 0x96, 0x75, 0xe9, 0xad, 0xe9, 0xd2, 0x5b, 0xd0, 0xe5, 0xb6, 0x9a, 0xf5, 0xca, 0xe8, 0x45, + 0x9f, 0x7b, 0x5c, 0xd2, 0x01, 0xfd, 0xa5, 0x1e, 0xcc, 0x5f, 0xd2, 0x81, 0xfc, 0xa5, 0x3d, 0xfb, + 0x2c, 0xf3, 0x59, 0xa7, 0x80, 0x67, 0x9b, 0x65, 0x3f, 0xcb, 0x14, 0xf3, 0xec, 0x52, 0xcc, 0xb3, + 0x4a, 0x19, 0xcf, 0x26, 0xf5, 0xee, 0x4c, 0x96, 0x75, 0x80, 0xbe, 0x51, 0x7c, 0x25, 0x31, 0x33, + 0xe6, 0x14, 0x5d, 0x51, 0xcc, 0x4a, 0x34, 0x25, 0xcd, 0xba, 0x94, 0x3e, 0x6c, 0x23, 0x61, 0xc8, + 0x46, 0xd0, 0x70, 0x8d, 0x94, 0xa1, 0x1a, 0x71, 0xc3, 0x34, 0xe2, 0x86, 0x68, 0x64, 0x0d, 0xcf, + 0x2c, 0xd7, 0xe3, 0xe4, 0xd2, 0x87, 0x64, 0xa4, 0x2d, 0x23, 0x95, 0x30, 0x17, 0x23, 0x66, 0x1e, + 0x86, 0x4b, 0x47, 0x97, 0x72, 0xe9, 0xe8, 0xe9, 0x52, 0x85, 0x40, 0x11, 0x12, 0x10, 0x51, 0xd2, + 0x0f, 0x51, 0x92, 0x0f, 0x19, 0x52, 0x0f, 0x8e, 0xf2, 0xcc, 0x99, 0xf2, 0x71, 0x9e, 0xe1, 0xf1, + 0x67, 0xaa, 0x77, 0x1f, 0xcd, 0x95, 0x31, 0xbb, 0xc6, 0xe1, 0x00, 0x28, 0x40, 0x63, 0x00, 0xb9, + 0xc8, 0x07, 0x93, 0xaf, 0x9b, 0xc6, 0xf1, 0x94, 0x3b, 0x36, 0xda, 0xe9, 0x72, 0xae, 0xe1, 0xe9, + 0xf7, 0x3c, 0x4c, 0xcc, 0xa0, 0x17, 0x06, 0x49, 0x39, 0x13, 0x0d, 0x77, 0xfe, 0x71, 0xce, 0x32, + 0xa0, 0x76, 0x12, 0x39, 0xcb, 0xc0, 0x59, 0x06, 0xce, 0x32, 0xbc, 0xe2, 0x56, 0x72, 0x96, 0x41, + 0xbb, 0xc0, 0xff, 0x30, 0x01, 0xac, 0x73, 0x96, 0xa1, 0x48, 0x13, 0x38, 0xcb, 0x20, 0x24, 0x51, + 0xc8, 0x48, 0x18, 0xcb, 0xd1, 0x9a, 0x29, 0x6d, 0x96, 0xa1, 0xf0, 0x12, 0x62, 0x66, 0xc8, 0x29, + 0xb8, 0x9e, 0x98, 0x95, 0x66, 0x38, 0xc9, 0xc0, 0x49, 0x06, 0x4e, 0x32, 0x00, 0xa4, 0x25, 0x59, + 0xe9, 0xa9, 0x9c, 0x34, 0x55, 0x52, 0xba, 0xca, 0x6f, 0xbd, 0x9c, 0x49, 0x06, 0x09, 0x6b, 0x3e, + 0x38, 0xc6, 0x70, 0xd7, 0x10, 0xa4, 0x75, 0x1e, 0xa7, 0x7c, 0xbe, 0xa9, 0x01, 0x89, 0xe6, 0xf3, + 0xcd, 0x47, 0x1e, 0x0b, 0xdd, 0x36, 0xea, 0xf9, 0x64, 0x13, 0x06, 0xd2, 0x7c, 0xb2, 0xf9, 0x38, + 0x84, 0x41, 0x9e, 0x69, 0x26, 0xd6, 0xc8, 0x5e, 0x3e, 0xce, 0x7c, 0xce, 0xed, 0x0e, 0x13, 0x33, + 0x56, 0x41, 0xe7, 0x4b, 0x70, 0x16, 0xf6, 0xc2, 0xf4, 0xba, 0x94, 0x47, 0x9a, 0x3f, 0x19, 0xc0, + 0xc7, 0x9a, 0xa8, 0x6d, 0x05, 0x3e, 0xd6, 0xe4, 0x63, 0x4d, 0x3e, 0xd6, 0x7c, 0xc5, 0xad, 0x2c, + 0xfc, 0xb1, 0x66, 0xa4, 0xc2, 0x8b, 0x2f, 0x67, 0xfd, 0x38, 0x29, 0xef, 0xd1, 0xe6, 0xad, 0x09, + 0x94, 0x6a, 0xeb, 0x96, 0x10, 0x04, 0x24, 0x86, 0xb2, 0x13, 0x84, 0x98, 0x44, 0x21, 0x26, 0x61, + 0xc8, 0x48, 0x1c, 0xcb, 0xd1, 0x99, 0x29, 0xed, 0xf1, 0xe6, 0x34, 0xaa, 0x97, 0xff, 0x78, 0x33, + 0xb7, 0xa4, 0xdc, 0xc7, 0x9b, 0x6b, 0x7c, 0xbc, 0xc9, 0xc7, 0x9b, 0x7c, 0xbc, 0x29, 0x3f, 0x2d, + 0xc9, 0x4a, 0x4f, 0xe5, 0xa4, 0xa9, 0x92, 0xd2, 0x55, 0xe9, 0x69, 0x2b, 0x37, 0xa0, 0xab, 0xce, + 0x83, 0x61, 0x2f, 0x35, 0x2f, 0x55, 0x1a, 0x87, 0x1d, 0x39, 0x67, 0xfe, 0xdc, 0xb3, 0x4b, 0xc6, + 0xc1, 0x3f, 0x6b, 0x3c, 0xf8, 0x47, 0x4c, 0xaa, 0x13, 0x98, 0xf2, 0xa4, 0xa5, 0x3e, 0xb1, 0x29, + 0x50, 0x6c, 0x2a, 0x94, 0x99, 0x12, 0xcb, 0x4d, 0x8d, 0x25, 0xa7, 0x48, 0x31, 0xa9, 0x32, 0x37, + 0xa4, 0x1c, 0x85, 0xc4, 0x2f, 0xe3, 0x5f, 0x19, 0xca, 0x09, 0xe1, 0x09, 0x53, 0x5c, 0xe2, 0x94, + 0x98, 0x40, 0x05, 0x27, 0x52, 0xa9, 0x09, 0x55, 0x7c, 0x62, 0x15, 0x9f, 0x60, 0x65, 0x27, 0x5a, + 0x19, 0x09, 0x57, 0x48, 0xe2, 0x15, 0x97, 0x80, 0x73, 0x83, 0xce, 0x7b, 0xc1, 0x45, 0x22, 0x2f, + 0x28, 0x4c, 0xe3, 0x68, 0x66, 0xde, 0xef, 0x3c, 0xf2, 0x1e, 0x30, 0x41, 0x4b, 0x4e, 0xd4, 0x00, + 0x09, 0x5b, 0x7a, 0xe2, 0x86, 0x49, 0xe0, 0x30, 0x89, 0x1c, 0x23, 0xa1, 0xcb, 0x4a, 0xec, 0xc2, + 0x12, 0x7c, 0xfe, 0x11, 0x8a, 0x39, 0x62, 0x77, 0x66, 0xc4, 0x53, 0xd1, 0xf0, 0x52, 0xc5, 0xd9, + 0xf4, 0xb2, 0xc0, 0xa8, 0x37, 0xad, 0x7e, 0xab, 0x02, 0x6d, 0xb3, 0xa3, 0xe1, 0xe5, 0xe8, 0xc3, + 0x15, 0xe6, 0x02, 0xbf, 0xd1, 0x19, 0x1f, 0x7e, 0x56, 0x42, 0x1e, 0xca, 0xcc, 0x74, 0x43, 0x11, + 0x0f, 0x67, 0x48, 0x71, 0x49, 0x71, 0x49, 0x71, 0x49, 0x71, 0x49, 0x71, 0x49, 0x71, 0x35, 0xa2, + 0xb8, 0x51, 0x10, 0xc7, 0xfd, 0x6f, 0xa6, 0xc8, 0x14, 0x7b, 0x37, 0xcd, 0x6e, 0x08, 0x34, 0xcd, + 0x0d, 0xa2, 0x0b, 0x55, 0xba, 0x3e, 0x7d, 0xd6, 0x4b, 0x66, 0x9e, 0x58, 0x99, 0xac, 0x2b, 0x17, + 0x9b, 0xc8, 0x84, 0xf3, 0xbb, 0x07, 0x66, 0x9e, 0x04, 0xbd, 0xa1, 0x92, 0xf3, 0x0c, 0x74, 0xa6, + 0x9d, 0xfb, 0x71, 0xd0, 0x19, 0x15, 0xd2, 0xb5, 0xf0, 0x22, 0x1c, 0x2f, 0x86, 0x5f, 0x15, 0x6b, + 0xef, 0xcd, 0xef, 0x82, 0x5d, 0x27, 0xf8, 0x4e, 0xd7, 0x99, 0xb3, 0xeb, 0x6c, 0xbe, 0xa7, 0xef, + 0xe8, 0xc9, 0x07, 0xe5, 0x5a, 0x75, 0xca, 0xbe, 0x98, 0x60, 0x4b, 0xa4, 0x3c, 0x0b, 0x2f, 0x79, + 0x11, 0xcc, 0x4c, 0xbb, 0x84, 0x6e, 0xd7, 0xb8, 0xbb, 0xf6, 0xa0, 0x92, 0xeb, 0x60, 0xf3, 0xef, + 0x2a, 0x3f, 0x4f, 0x7b, 0x97, 0xb1, 0x46, 0x46, 0x2e, 0xec, 0x97, 0x7b, 0xea, 0x53, 0x98, 0xa3, + 0xe9, 0xe1, 0x60, 0x12, 0x66, 0xe4, 0x5f, 0xb3, 0xfc, 0xc6, 0xbd, 0x73, 0xb5, 0x7e, 0x63, 0x72, + 0x8d, 0x7e, 0x2d, 0xbb, 0xc6, 0xa3, 0xec, 0x12, 0x7f, 0x5b, 0x4e, 0x9f, 0x2d, 0xd1, 0x5f, 0x8d, + 0xae, 0xea, 0x05, 0xd7, 0x02, 0x95, 0x44, 0x77, 0xac, 0xa2, 0x8e, 0x88, 0x3a, 0xa2, 0x5f, 0xe0, + 0x85, 0x3a, 0xa2, 0xd9, 0xf0, 0xa5, 0x8e, 0xe8, 0xb9, 0xf4, 0x85, 0x3a, 0x22, 0x69, 0x8c, 0x92, + 0x3a, 0xa2, 0x7f, 0x8f, 0x7f, 0xd4, 0x11, 0xc9, 0x4f, 0x9c, 0x12, 0x13, 0xa8, 0xe0, 0x44, 0x2a, + 0x35, 0xa1, 0x8a, 0x4f, 0xac, 0xe2, 0x13, 0xac, 0xec, 0x44, 0x2b, 0xa7, 0x89, 0xb4, 0x42, 0x1d, + 0xd1, 0x6c, 0x83, 0xa8, 0x23, 0x7a, 0x71, 0x62, 0xe6, 0x90, 0x25, 0x6e, 0xa2, 0x06, 0x48, 0xd8, + 0xd2, 0x13, 0x37, 0x4c, 0x02, 0x87, 0x49, 0xe4, 0x18, 0x09, 0x5d, 0x56, 0x62, 0x17, 0x96, 0xe0, + 0xf3, 0x8f, 0x50, 0xfe, 0x90, 0xe5, 0x08, 0x55, 0x93, 0xd6, 0xb0, 0x29, 0x31, 0xcd, 0xae, 0x50, + 0x4d, 0xa4, 0x83, 0x23, 0xd4, 0xc3, 0x24, 0xb5, 0xd2, 0x34, 0x96, 0xe9, 0x0c, 0x47, 0x61, 0x64, + 0xf7, 0xd4, 0x28, 0xd6, 0x8e, 0x48, 0x70, 0x34, 0xec, 0xf5, 0x04, 0x02, 0xed, 0x28, 0xf8, 0x2e, + 0xdf, 0xc8, 0x66, 0xdc, 0x55, 0xb1, 0xea, 0xee, 0x5e, 0x4f, 0x4c, 0xe4, 0x28, 0x91, 0x74, 0xf7, + 0xa4, 0xc4, 0x8e, 0xd5, 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x5b, + 0xb2, 0xea, 0x8f, 0x12, 0xbb, 0x97, 0x9b, 0x46, 0x89, 0xdd, 0xcb, 0xab, 0x2d, 0xea, 0x84, 0xe6, + 0x64, 0x26, 0x25, 0x76, 0xba, 0x67, 0x91, 0xfb, 0x3d, 0x00, 0xba, 0xce, 0x9c, 0x5d, 0x87, 0x12, + 0x3b, 0x5d, 0xf9, 0xa0, 0x5c, 0xab, 0x28, 0xb1, 0x93, 0x6c, 0x09, 0x25, 0x76, 0xff, 0x6e, 0x17, + 0xac, 0x02, 0xe8, 0x56, 0x06, 0x41, 0x81, 0x9d, 0x1c, 0x0b, 0x28, 0xb0, 0xd3, 0xce, 0xbd, 0x74, + 0x95, 0xd7, 0xf5, 0x82, 0x6b, 0x8a, 0xeb, 0xca, 0xfa, 0x40, 0x55, 0x1c, 0xf7, 0x63, 0x71, 0xe2, + 0xba, 0x9f, 0xac, 0xa2, 0xb8, 0x8e, 0xe2, 0xba, 0x5f, 0xe0, 0x85, 0xe2, 0xba, 0xd9, 0xf0, 0xa5, + 0xb8, 0xee, 0xb9, 0xd4, 0x85, 0xe2, 0x3a, 0x69, 0x6c, 0x92, 0xe2, 0xba, 0x7f, 0x8f, 0x7f, 0x14, + 0xd7, 0xc9, 0x4f, 0x9c, 0x12, 0x13, 0xa8, 0xe0, 0x44, 0x2a, 0x35, 0xa1, 0x8a, 0x4f, 0xac, 0xe2, + 0x13, 0xac, 0xec, 0x44, 0x2b, 0xa7, 0x81, 0xb4, 0x42, 0x71, 0xdd, 0x6c, 0x83, 0x28, 0xae, 0x7b, + 0x71, 0x62, 0xe6, 0x78, 0x25, 0x6e, 0xa2, 0x06, 0x48, 0xd8, 0xd2, 0x13, 0x37, 0x4c, 0x02, 0x87, + 0x49, 0xe4, 0x18, 0x09, 0x5d, 0x56, 0x62, 0x17, 0x96, 0xe0, 0xf3, 0x8f, 0x90, 0xe2, 0xba, 0xb9, + 0xd6, 0xc0, 0x14, 0xd7, 0xa1, 0x3a, 0x02, 0xc5, 0x75, 0xaf, 0x37, 0x92, 0xe2, 0x3a, 0x6d, 0x72, + 0x15, 0xc5, 0x75, 0x4f, 0xcf, 0x50, 0x14, 0xd7, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x8f, 0xd5, + 0x1f, 0xab, 0x3f, 0x56, 0x7f, 0xf3, 0x8d, 0x78, 0x14, 0xd7, 0xbd, 0xdc, 0x34, 0x8a, 0xeb, 0x5e, + 0x5e, 0x6d, 0x51, 0x21, 0x34, 0x27, 0x33, 0x29, 0xae, 0xd3, 0x3d, 0x8b, 0xdc, 0xef, 0x01, 0xd0, + 0x75, 0xe6, 0xec, 0x3a, 0x14, 0xd7, 0xe9, 0xca, 0x07, 0xe5, 0x5a, 0x45, 0x71, 0x9d, 0x64, 0x4b, + 0x28, 0xae, 0xfb, 0x77, 0xbb, 0x40, 0xd5, 0x3f, 0x77, 0x65, 0x10, 0x14, 0xd7, 0xc9, 0xb1, 0x80, + 0xe2, 0x3a, 0xed, 0xdc, 0x4b, 0x4f, 0x71, 0x9d, 0x3d, 0xba, 0x42, 0x8a, 0xeb, 0xca, 0xfa, 0x40, + 0xd5, 0xf7, 0x81, 0x8a, 0x12, 0x25, 0x4f, 0x5e, 0xf7, 0xb3, 0x5d, 0x14, 0xd8, 0x51, 0x60, 0xf7, + 0x0b, 0xc4, 0x50, 0x60, 0x37, 0x1b, 0xbe, 0x14, 0xd8, 0x3d, 0x97, 0xbe, 0x50, 0x60, 0x27, 0x8d, + 0x51, 0x52, 0x60, 0xf7, 0xef, 0xf1, 0x8f, 0x02, 0x3b, 0xf9, 0x89, 0x53, 0x62, 0x02, 0x15, 0x9c, + 0x48, 0xa5, 0x26, 0x54, 0xf1, 0x89, 0x55, 0x7c, 0x82, 0x95, 0x9d, 0x68, 0xe5, 0x34, 0x91, 0x56, + 0x28, 0xb0, 0x9b, 0x6d, 0x10, 0x05, 0x76, 0x2f, 0x4e, 0xcc, 0x1c, 0xb1, 0xc4, 0x4d, 0xd4, 0x00, + 0x09, 0x5b, 0x7a, 0xe2, 0x86, 0x49, 0xe0, 0x30, 0x89, 0x1c, 0x23, 0xa1, 0xcb, 0x4a, 0xec, 0xc2, + 0x12, 0x7c, 0xfe, 0x11, 0x52, 0x60, 0x37, 0xd7, 0x1a, 0x98, 0x02, 0x3b, 0x54, 0x47, 0xa0, 0xc0, + 0xee, 0xf5, 0x46, 0x52, 0x60, 0xa7, 0x4d, 0xae, 0xa2, 0xc0, 0xee, 0xe9, 0x19, 0x8a, 0x02, 0x3b, + 0x56, 0x7f, 0xac, 0xfe, 0x58, 0xfd, 0xb1, 0xfa, 0x63, 0xf5, 0xc7, 0xea, 0x6f, 0xbe, 0x11, 0x8f, + 0x02, 0xbb, 0x97, 0x9b, 0x46, 0x81, 0xdd, 0xcb, 0xab, 0x2d, 0xaa, 0x84, 0xe6, 0x64, 0x26, 0x05, + 0x76, 0xba, 0x67, 0x91, 0xfb, 0x3d, 0x00, 0xba, 0xce, 0x9c, 0x5d, 0x87, 0x02, 0x3b, 0x5d, 0xf9, + 0xa0, 0x5c, 0xab, 0x28, 0xb0, 0x93, 0x6c, 0x09, 0x05, 0x76, 0xff, 0x6e, 0x17, 0xaa, 0x02, 0xe8, + 0x27, 0x21, 0x04, 0x25, 0x76, 0x72, 0x2c, 0xa0, 0xc4, 0x4e, 0x43, 0x07, 0xd3, 0x54, 0x64, 0x97, + 0x5d, 0x23, 0x65, 0x76, 0xe5, 0x7d, 0xa4, 0x12, 0x34, 0x03, 0xa2, 0xb4, 0x02, 0x14, 0xd5, 0xdd, + 0x33, 0x84, 0xa2, 0xba, 0x7f, 0x35, 0x89, 0xa2, 0xba, 0x27, 0x1a, 0x46, 0x51, 0x1d, 0x39, 0xe4, + 0x53, 0x3f, 0x12, 0x39, 0xa2, 0xba, 0xeb, 0x24, 0x55, 0x97, 0x66, 0xd8, 0x15, 0x28, 0xac, 0xcb, + 0x4d, 0x93, 0x25, 0xae, 0x5b, 0xa5, 0xb8, 0x4e, 0x7c, 0x22, 0x15, 0x9c, 0x50, 0xa5, 0x26, 0x56, + 0xf1, 0x09, 0x56, 0x7c, 0xa2, 0x95, 0x9d, 0x70, 0xe5, 0xb4, 0x8f, 0x56, 0x04, 0x75, 0x4d, 0xc5, + 0x4d, 0x5d, 0x88, 0x4d, 0x7f, 0x3f, 0xd5, 0x8e, 0x1f, 0x04, 0xd9, 0xd4, 0x0a, 0xd2, 0x54, 0xc5, + 0x91, 0xb8, 0xe1, 0x0a, 0xe3, 0xef, 0xcf, 0xab, 0xe6, 0xb6, 0x65, 0xee, 0x07, 0xe6, 0xf9, 0xe9, + 0x3f, 0xd5, 0x9b, 0xbf, 0xfe, 0x7a, 0xf7, 0x8b, 0x37, 0xfe, 0x23, 0x27, 0x4a, 0x9c, 0xb2, 0xd5, + 0xcd, 0x32, 0x85, 0xad, 0xee, 0xf9, 0xb4, 0xba, 0x05, 0x3c, 0x3c, 0x5a, 0xd2, 0xf6, 0xaf, 0x98, + 0xea, 0x56, 0x5c, 0x5a, 0x17, 0x52, 0xcd, 0xb2, 0x0d, 0x8c, 0x51, 0xb5, 0xb2, 0x0d, 0x8c, 0x5e, + 0x9d, 0xb2, 0x0d, 0x2c, 0x8f, 0x5f, 0x89, 0xa9, 0x3e, 0xf3, 0x88, 0xd3, 0x53, 0xc1, 0x79, 0xac, + 0xce, 0x25, 0x44, 0x9c, 0x69, 0xad, 0xb9, 0x25, 0xc0, 0x96, 0xd6, 0x84, 0x72, 0xbe, 0x7b, 0x97, + 0x91, 0xb9, 0xca, 0x6d, 0x1a, 0x5f, 0x56, 0x5a, 0xf7, 0xdb, 0x12, 0x39, 0xec, 0x28, 0xdb, 0x48, + 0x20, 0x6f, 0x32, 0x94, 0xf1, 0xa2, 0x14, 0xf0, 0xa2, 0x94, 0xee, 0x32, 0x14, 0xed, 0x65, 0x39, + 0x89, 0x90, 0x6e, 0x01, 0x68, 0x97, 0xc0, 0x28, 0x75, 0x4c, 0x6a, 0xce, 0x93, 0x6f, 0xe5, 0x64, + 0xc5, 0xe2, 0x73, 0x52, 0xb1, 0xff, 0x62, 0xc1, 0x8e, 0x5d, 0xb6, 0x43, 0x63, 0x39, 0x72, 0xb1, + 0x90, 0x2f, 0x0e, 0x78, 0xc5, 0xfc, 0x4b, 0x05, 0x41, 0xbb, 0x2c, 0x48, 0x23, 0x40, 0xb9, 0xc0, + 0x04, 0x34, 0xb7, 0x84, 0x53, 0x8c, 0xd3, 0x2d, 0xde, 0x05, 0x0a, 0x80, 0x7f, 0xb6, 0xbc, 0x6d, + 0x1a, 0xae, 0xcc, 0x20, 0x4d, 0xe3, 0xf0, 0x6c, 0x58, 0xe0, 0x74, 0xf4, 0xcf, 0x5b, 0xe4, 0x1e, + 0x31, 0xa4, 0xa0, 0x10, 0x50, 0xec, 0xfc, 0x73, 0xe1, 0x0d, 0xee, 0x32, 0x1a, 0xd9, 0x25, 0x36, + 0xac, 0xcb, 0x6a, 0x4c, 0x97, 0xde, 0x80, 0x2e, 0xbd, 0xd1, 0x5c, 0x6e, 0x43, 0x59, 0x2f, 0x5a, + 0x52, 0xf4, 0x3c, 0xb0, 0x71, 0x4b, 0x5b, 0x0b, 0x77, 0x9c, 0x7c, 0x9d, 0x4c, 0x6e, 0x42, 0xc1, + 0xb8, 0x2d, 0x47, 0x00, 0x53, 0xda, 0x93, 0xce, 0x32, 0x9f, 0x6c, 0x0a, 0x78, 0x92, 0x59, 0xf6, + 0x93, 0x4b, 0x31, 0x4f, 0x2a, 0xc5, 0x3c, 0x99, 0x94, 0xf1, 0x24, 0x52, 0xef, 0xd6, 0x4d, 0x59, + 0x02, 0x93, 0x3c, 0xaa, 0x97, 0xe7, 0x6f, 0xf7, 0xf3, 0x4b, 0x59, 0xee, 0x56, 0xae, 0xce, 0xb2, + 0xf4, 0xc1, 0x1a, 0x09, 0x03, 0x35, 0x82, 0x06, 0x69, 0xa4, 0x0c, 0xd0, 0x88, 0x1b, 0x9c, 0x11, + 0x37, 0x30, 0x23, 0x6b, 0x50, 0x66, 0xb9, 0x9e, 0xb3, 0x97, 0xad, 0x8b, 0x34, 0xf2, 0xa6, 0xab, + 0x9c, 0x89, 0xd1, 0x5b, 0x93, 0xb8, 0x38, 0x80, 0x13, 0xa3, 0xe2, 0x13, 0x9d, 0xb4, 0x84, 0x27, + 0x36, 0xf1, 0x89, 0x4d, 0x80, 0x32, 0x13, 0x61, 0xb9, 0x09, 0xb1, 0xe4, 0xc4, 0x28, 0x26, 0x41, + 0x3e, 0x48, 0x94, 0xf2, 0xf6, 0x06, 0xe4, 0x96, 0xf1, 0x4c, 0x5e, 0xc9, 0xe9, 0x53, 0x62, 0x1a, + 0x15, 0x9c, 0x4e, 0xa5, 0xa6, 0x55, 0xf1, 0xe9, 0x55, 0x7c, 0x9a, 0x95, 0x9d, 0x6e, 0x65, 0xa4, + 0x5d, 0x21, 0xe9, 0x57, 0x5c, 0x1a, 0xbe, 0x4d, 0xc7, 0x5d, 0xb9, 0x67, 0x32, 0x89, 0x5a, 0x61, + 0xb0, 0xc2, 0xf3, 0x98, 0xb4, 0x48, 0xd1, 0x00, 0xa9, 0x5a, 0x7a, 0xca, 0x86, 0x49, 0xdd, 0x30, + 0x29, 0x1c, 0x23, 0x95, 0xcb, 0x4a, 0xe9, 0xc2, 0x52, 0x7b, 0xfe, 0x11, 0xca, 0x3f, 0x8f, 0x49, + 0x8e, 0x56, 0x73, 0x66, 0xcd, 0xbb, 0x25, 0xd0, 0xb6, 0x07, 0x5a, 0xce, 0xb2, 0x45, 0x9c, 0x72, + 0xfd, 0x52, 0xd2, 0xc9, 0xa3, 0x32, 0x56, 0x39, 0xcf, 0x74, 0x46, 0x09, 0xab, 0x9d, 0x67, 0xba, + 0x21, 0x79, 0x2e, 0x79, 0x2e, 0x79, 0x2e, 0x79, 0x2e, 0x79, 0x2e, 0x73, 0xea, 0xfd, 0x8f, 0x50, + 0x5a, 0x2b, 0x2b, 0x37, 0x4c, 0x60, 0x4b, 0xeb, 0x41, 0x30, 0x16, 0xd7, 0xda, 0xba, 0x9f, 0xfa, + 0x85, 0x9e, 0xab, 0x27, 0x96, 0x02, 0x20, 0x50, 0x01, 0x20, 0x4a, 0x80, 0x42, 0x0d, 0xe0, 0x28, + 0x02, 0x1c, 0x55, 0xc0, 0xa2, 0x0c, 0x32, 0xa9, 0x83, 0x50, 0x0a, 0x91, 0x7f, 0xb4, 0x62, 0x5b, + 0x66, 0x0f, 0x22, 0xe6, 0x30, 0x8c, 0xd2, 0xcd, 0xaa, 0xe4, 0x80, 0x39, 0xc9, 0xdf, 0x1f, 0x04, + 0x9b, 0x28, 0xfb, 0x4c, 0xf3, 0xe9, 0x4b, 0x76, 0xc2, 0x59, 0x41, 0x39, 0xe3, 0x1c, 0x84, 0x58, + 0x3e, 0x30, 0x77, 0x7a, 0x70, 0x33, 0x8a, 0xbd, 0x40, 0xe7, 0x37, 0x0b, 0x4f, 0x47, 0x3f, 0xbb, + 0x18, 0xc0, 0x59, 0xe8, 0xe8, 0x2e, 0xb6, 0xf6, 0xa1, 0x5a, 0xdd, 0xdc, 0xaa, 0x56, 0x57, 0xb7, + 0xde, 0x6f, 0xad, 0x6e, 0x6f, 0x6c, 0xac, 0x6d, 0xae, 0x6d, 0xd0, 0xeb, 0x96, 0x8b, 0x9a, 0xca, + 0xb7, 0xee, 0x94, 0xa7, 0xce, 0xa3, 0x46, 0x75, 0x63, 0x72, 0x56, 0xb0, 0xf8, 0xb6, 0xa0, 0x98, + 0x33, 0x8d, 0x01, 0xd3, 0x0b, 0x5b, 0x83, 0xf3, 0x44, 0x22, 0x5b, 0x83, 0xf3, 0x73, 0x1b, 0xb6, + 0x06, 0x17, 0x6c, 0x30, 0x5b, 0x83, 0xba, 0xd6, 0x62, 0x40, 0xad, 0xc1, 0x6f, 0x61, 0x57, 0x99, + 0xa2, 0x13, 0xf8, 0xdd, 0x24, 0xbe, 0xc5, 0xfe, 0xe0, 0x2b, 0x5f, 0xec, 0x0f, 0xb2, 0x79, 0x21, + 0x6f, 0x46, 0x4e, 0xab, 0x4e, 0x05, 0xfb, 0x83, 0x74, 0xb1, 0x91, 0x8b, 0x6d, 0x6e, 0x6d, 0x6d, + 0xad, 0xb3, 0x27, 0xb8, 0x6c, 0x9c, 0x54, 0xbe, 0x75, 0xec, 0x09, 0x22, 0x5a, 0x24, 0x6d, 0x92, + 0x52, 0xd8, 0x69, 0xb9, 0x0f, 0xec, 0x93, 0x79, 0x06, 0xc1, 0xa3, 0xbb, 0xe0, 0x1f, 0x3b, 0x45, + 0xf7, 0xd6, 0x96, 0xdc, 0x06, 0x01, 0x07, 0xeb, 0xca, 0x75, 0x11, 0x51, 0xe2, 0x9d, 0xe1, 0xd9, + 0xe8, 0x23, 0x17, 0x2c, 0xdf, 0x99, 0x18, 0x48, 0x01, 0xcf, 0x53, 0xcc, 0xa2, 0x80, 0xe7, 0x15, + 0x50, 0xa3, 0x80, 0xe7, 0xe5, 0xee, 0x40, 0x01, 0xcf, 0xbc, 0x39, 0x0b, 0x05, 0x3c, 0xe8, 0xb4, + 0x53, 0xac, 0x80, 0x27, 0xcb, 0xa9, 0xf2, 0x9f, 0xd6, 0x4f, 0xec, 0x94, 0xfd, 0xb4, 0x7e, 0x8d, + 0x4f, 0xeb, 0xb5, 0xa3, 0x04, 0x40, 0xd4, 0x00, 0x85, 0x22, 0xc0, 0x51, 0x05, 0x38, 0xca, 0x80, + 0x45, 0x1d, 0x64, 0x52, 0x08, 0xa1, 0x54, 0x42, 0x3c, 0xa5, 0xc8, 0x0d, 0x0c, 0xba, 0xff, 0x2f, + 0xe8, 0xa8, 0xa8, 0x73, 0x6d, 0x26, 0x61, 0x37, 0x91, 0x1f, 0x8d, 0xa6, 0x01, 0xfe, 0x9e, 0xdd, + 0xc2, 0x3d, 0x5c, 0x36, 0xf5, 0x80, 0xa1, 0x20, 0x48, 0x54, 0x04, 0x90, 0x92, 0xa0, 0x51, 0x13, + 0x58, 0x8a, 0x02, 0x4b, 0x55, 0x30, 0x29, 0x8b, 0x6c, 0xea, 0x22, 0x9c, 0xc2, 0xc0, 0x50, 0x99, + 0xc7, 0x29, 0x0d, 0x4e, 0x10, 0x7b, 0x94, 0xd9, 0xa0, 0x04, 0x32, 0x0c, 0x82, 0x03, 0x47, 0x74, + 0x10, 0x09, 0x0f, 0x30, 0xf1, 0x41, 0x25, 0x40, 0xf0, 0x44, 0x08, 0x9e, 0x10, 0x61, 0x13, 0x23, + 0x0c, 0x82, 0x04, 0x42, 0x94, 0xe0, 0x08, 0x53, 0x6e, 0xb0, 0xcc, 0xc5, 0xb0, 0x4f, 0xce, 0x33, + 0x12, 0x17, 0xc7, 0x6a, 0x46, 0x9c, 0x60, 0x09, 0x14, 0x32, 0x91, 0xd2, 0x80, 0x50, 0xa1, 0x13, + 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, 0x4b, 0x0f, 0xc2, 0x85, 0x45, 0xbc, 0xc0, 0x08, 0x18, 0x2c, + 0x11, 0xcb, 0x0d, 0x3f, 0xef, 0x05, 0x17, 0x09, 0x6e, 0xb0, 0x9c, 0xe6, 0xab, 0xec, 0x32, 0x40, + 0xe3, 0x0b, 0x96, 0x44, 0x4c, 0x1b, 0xa2, 0xa6, 0x03, 0x61, 0xd3, 0x88, 0xb8, 0xe9, 0x42, 0xe0, + 0xb4, 0x23, 0x72, 0xda, 0x11, 0x3a, 0xbd, 0x88, 0x1d, 0x26, 0xc1, 0x03, 0x25, 0x7a, 0x39, 0x74, + 0xc4, 0xef, 0x48, 0x79, 0x72, 0xc6, 0x50, 0xd1, 0xf0, 0x52, 0xc5, 0x99, 0x14, 0x12, 0x38, 0x6b, + 0x4c, 0xbb, 0x5c, 0x55, 0xe0, 0x6b, 0xb0, 0xa3, 0xe1, 0xe5, 0x08, 0x54, 0x74, 0xe5, 0x22, 0xef, + 0x7a, 0x3d, 0x4c, 0x52, 0x2b, 0x4d, 0x63, 0x6c, 0x77, 0x3e, 0x0a, 0x23, 0xbb, 0xa7, 0x46, 0xd9, + 0x6c, 0x54, 0xce, 0x45, 0xc3, 0x5e, 0x0f, 0xd8, 0x11, 0x8e, 0x82, 0xef, 0xfa, 0x5c, 0x4c, 0x33, + 0xee, 0xaa, 0x58, 0x75, 0x77, 0xaf, 0x27, 0x97, 0xf2, 0x1b, 0xd9, 0x05, 0xc3, 0xd1, 0xe3, 0x50, + 0xb9, 0x9a, 0x6c, 0x5f, 0x01, 0xef, 0xc6, 0x64, 0x97, 0xc1, 0x6e, 0x4c, 0x19, 0xe6, 0xb3, 0x1b, + 0x23, 0xc8, 0x11, 0xd8, 0x8d, 0x91, 0xe3, 0xd6, 0xec, 0xc6, 0x08, 0xbf, 0x20, 0x76, 0x63, 0xc8, + 0x99, 0x5e, 0x08, 0x1d, 0x7d, 0xba, 0x31, 0xc3, 0x30, 0x4a, 0xdf, 0xaf, 0x6b, 0xd0, 0x88, 0xd9, + 0x02, 0xbe, 0x04, 0x8c, 0x65, 0xb8, 0xbf, 0x7a, 0x61, 0x27, 0xec, 0x15, 0xb4, 0x65, 0xba, 0x9a, + 0x17, 0x16, 0x0f, 0x2e, 0x07, 0xec, 0xb0, 0xae, 0x5f, 0x5e, 0x0f, 0xe0, 0x0a, 0x51, 0x4d, 0xd3, + 0xf9, 0xcf, 0x21, 0x20, 0xf8, 0xce, 0x10, 0x20, 0x3c, 0x04, 0x54, 0xd7, 0xb7, 0xab, 0xdb, 0x9b, + 0x5b, 0xeb, 0xdb, 0x1b, 0x8c, 0x05, 0x2c, 0x48, 0x68, 0xfd, 0xdd, 0xd7, 0x29, 0xdb, 0xfd, 0xcc, + 0x75, 0x33, 0xc2, 0xcc, 0x37, 0x15, 0x5e, 0x7c, 0x49, 0xf1, 0xfb, 0xfd, 0x93, 0xeb, 0x60, 0xc3, + 0xbf, 0x0c, 0xf3, 0xd9, 0xf0, 0x17, 0xe4, 0x09, 0x6c, 0xf8, 0xcb, 0x71, 0x6b, 0x36, 0xfc, 0x85, + 0x5f, 0x10, 0x1b, 0xfe, 0x64, 0x4d, 0x2f, 0x84, 0x8e, 0x5e, 0x0d, 0xff, 0x0f, 0x1a, 0xf4, 0xfb, + 0x37, 0xd8, 0xef, 0x2f, 0xf9, 0xc5, 0x7e, 0x3f, 0xeb, 0x8a, 0x05, 0x5e, 0x0e, 0xfb, 0xfd, 0xcc, + 0xe6, 0x45, 0x84, 0x00, 0xf6, 0xfb, 0xc5, 0x87, 0x80, 0xf5, 0x0d, 0x36, 0xfa, 0x59, 0x88, 0xd0, + 0xfa, 0x9f, 0x5e, 0x6c, 0xf4, 0xd3, 0x62, 0xf8, 0x94, 0x2c, 0xfd, 0x5c, 0xc4, 0x5f, 0xda, 0xaf, + 0xe1, 0xb9, 0x89, 0xd9, 0x69, 0x77, 0x93, 0xaf, 0x95, 0x9f, 0xb7, 0xd2, 0xff, 0xfc, 0x47, 0x89, + 0x67, 0x2c, 0xea, 0xe3, 0xce, 0x40, 0xae, 0x0c, 0x2a, 0x24, 0x82, 0x16, 0x10, 0x81, 0x92, 0x7d, + 0xee, 0xd9, 0x2b, 0x13, 0xe8, 0xdc, 0xb3, 0x57, 0x9e, 0xbb, 0x72, 0xcf, 0x9e, 0x34, 0xee, 0xc9, + 0x3d, 0x7b, 0xe4, 0x34, 0xff, 0x0e, 0x11, 0xd8, 0xe7, 0x7e, 0x79, 0xc4, 0xef, 0xa9, 0xe0, 0x3c, + 0x56, 0xe7, 0x88, 0x11, 0x7f, 0xba, 0x62, 0x05, 0x50, 0xda, 0x63, 0xb4, 0x26, 0x15, 0xe1, 0xbb, + 0x77, 0x59, 0x91, 0x54, 0xc9, 0x28, 0x26, 0x4b, 0xa5, 0x25, 0xb6, 0x14, 0x65, 0xcb, 0xfb, 0x47, + 0x75, 0x8d, 0x56, 0x14, 0x61, 0x2e, 0xd5, 0x81, 0x5e, 0xa2, 0x03, 0xbd, 0x34, 0x07, 0x73, 0x49, + 0x0e, 0x4a, 0x00, 0x01, 0x6d, 0xea, 0x2e, 0x77, 0x33, 0x17, 0xe9, 0x30, 0xa3, 0x24, 0x8d, 0x87, + 0x9d, 0x34, 0x9a, 0x50, 0xdc, 0x46, 0x76, 0xe7, 0x9d, 0xc9, 0x45, 0xfb, 0xad, 0xc9, 0xed, 0xf6, + 0x9d, 0x24, 0x4c, 0xfc, 0xfa, 0xe8, 0x3e, 0xfb, 0xf5, 0x64, 0xe0, 0x7b, 0xbd, 0xab, 0xf1, 0x5b, + 0x8d, 0xc9, 0x0d, 0xb3, 0xa6, 0x37, 0xd3, 0x9f, 0xbe, 0xe3, 0xe7, 0x7f, 0x47, 0x7b, 0x7c, 0xc3, + 0x7c, 0x6b, 0x7a, 0x87, 0xda, 0x61, 0x17, 0x83, 0xbc, 0xdd, 0xf0, 0xcc, 0x42, 0x9d, 0x63, 0x2c, + 0x5a, 0x6c, 0x5d, 0xb6, 0x98, 0x2a, 0x3b, 0x48, 0xc8, 0x75, 0x3d, 0xc1, 0x6e, 0x67, 0x04, 0xdd, + 0xcb, 0x30, 0x32, 0x2f, 0xe2, 0xfe, 0x70, 0x80, 0x74, 0x9a, 0xf8, 0xad, 0xd1, 0x3c, 0x4a, 0x7c, + 0x1e, 0x66, 0xf2, 0x28, 0xf1, 0x05, 0xc2, 0x95, 0x47, 0x89, 0x2f, 0xb2, 0x9d, 0xc3, 0xa3, 0xc4, + 0x8b, 0xe5, 0x68, 0x3c, 0x4a, 0x7c, 0xd9, 0x68, 0x39, 0xcc, 0x51, 0xe2, 0x58, 0x27, 0x62, 0x42, + 0x9e, 0x84, 0xc9, 0xa3, 0xc3, 0x49, 0x70, 0x34, 0x20, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, + 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0d, 0x46, 0xea, + 0xfa, 0xcc, 0xcc, 0x36, 0x38, 0x5d, 0xa0, 0x59, 0x24, 0x8a, 0xe3, 0xcd, 0x24, 0x55, 0x1a, 0x93, + 0x2b, 0x74, 0x92, 0xa5, 0x0d, 0xd9, 0xd2, 0x86, 0x74, 0xe9, 0x41, 0xbe, 0xb0, 0x48, 0x18, 0x18, + 0x19, 0xcb, 0x21, 0x82, 0x3f, 0xde, 0x0c, 0x7b, 0x7e, 0x01, 0xf0, 0xb9, 0x05, 0xe0, 0xfb, 0x8b, + 0xb0, 0x0f, 0x5d, 0xd4, 0x60, 0x51, 0xa2, 0x16, 0x4b, 0x4a, 0x74, 0xd9, 0x4f, 0xa4, 0xd3, 0x4a, + 0x92, 0x1b, 0xec, 0x23, 0x48, 0xe9, 0xda, 0xc2, 0x5c, 0x5b, 0x97, 0x73, 0x06, 0xb4, 0xf2, 0x71, + 0xae, 0xbd, 0x29, 0xe4, 0x75, 0xca, 0xc2, 0x6b, 0x81, 0x0e, 0x09, 0x7d, 0x06, 0xb8, 0x16, 0x67, + 0x7f, 0x6b, 0x71, 0xe6, 0x37, 0xf6, 0x59, 0xdf, 0xd4, 0x97, 0x2e, 0x65, 0x10, 0xa4, 0x3c, 0x4c, + 0xae, 0x94, 0x21, 0x7f, 0x5a, 0x88, 0xb4, 0xda, 0x8b, 0x92, 0x27, 0xad, 0xe3, 0x06, 0x25, 0x4f, + 0x82, 0xe3, 0x04, 0xc2, 0xc0, 0x7e, 0x81, 0x6a, 0xd1, 0xcb, 0x30, 0x3a, 0x18, 0xdf, 0x16, 0xca, + 0xc0, 0x74, 0x0b, 0x45, 0x46, 0x70, 0x15, 0x84, 0xbd, 0xe0, 0xac, 0xa7, 0xcc, 0xb3, 0x20, 0xea, + 0x7e, 0x0b, 0xbb, 0x63, 0xff, 0x46, 0x91, 0x83, 0x3d, 0x62, 0x3c, 0x65, 0x61, 0xf3, 0x30, 0x93, + 0xb2, 0xb0, 0x05, 0xc2, 0x96, 0xb2, 0xb0, 0xc5, 0xb9, 0x17, 0x65, 0x61, 0x45, 0xf3, 0x58, 0xca, + 0xc2, 0x96, 0xad, 0x74, 0xa1, 0x2c, 0x6c, 0xb1, 0xf9, 0x81, 0xb2, 0x30, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, 0x10, - 0x81, 0x10, 0x23, 0x38, 0x82, 0x54, 0x18, 0xdc, 0xeb, 0x77, 0xc2, 0x1e, 0xae, 0xae, 0x64, 0x6c, - 0x3e, 0x75, 0x25, 0x24, 0x50, 0x7a, 0x11, 0x29, 0x0d, 0x08, 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, - 0x69, 0x43, 0xb4, 0xf4, 0x20, 0x5c, 0x58, 0xc4, 0x0b, 0x8c, 0x80, 0x15, 0x10, 0xa1, 0xae, 0xa4, - 0x72, 0x7e, 0x43, 0x5d, 0x49, 0xd9, 0x2f, 0xea, 0x4a, 0x48, 0xec, 0xe7, 0xf0, 0x18, 0xd4, 0x95, - 0x30, 0xfd, 0xce, 0xd3, 0xb5, 0xa9, 0x2b, 0x11, 0xe7, 0xda, 0xd4, 0x95, 0xb0, 0x20, 0x58, 0x56, - 0xab, 0xa9, 0x2b, 0x59, 0xfa, 0x1c, 0x65, 0x24, 0xea, 0xb2, 0x9f, 0x29, 0xdc, 0xbe, 0xf7, 0xc4, - 0x7e, 0x36, 0xbe, 0xcb, 0x30, 0x9b, 0x8d, 0xef, 0x0a, 0x91, 0xce, 0xc6, 0x77, 0x75, 0xee, 0xca, - 0xc6, 0xb7, 0xb0, 0x07, 0x61, 0xe3, 0x9b, 0xac, 0xe6, 0x27, 0x10, 0x61, 0xe3, 0xbb, 0x72, 0x7e, - 0xc3, 0xc6, 0x77, 0xd9, 0x2f, 0x36, 0xbe, 0x49, 0xec, 0xe7, 0xf0, 0x18, 0x6c, 0x7c, 0x33, 0xfd, - 0xce, 0xd3, 0xb5, 0xd9, 0xf8, 0x16, 0xe7, 0xda, 0x6c, 0x7c, 0xb3, 0x20, 0x58, 0x56, 0xab, 0xd9, - 0xf8, 0x5e, 0x66, 0x4b, 0x79, 0xa0, 0xd2, 0x62, 0xed, 0x5e, 0x8e, 0xf3, 0x51, 0xa2, 0x2e, 0xcf, - 0x50, 0x5a, 0x1e, 0x0b, 0x79, 0x86, 0x12, 0x63, 0xc4, 0x73, 0x62, 0x04, 0x8f, 0x4d, 0xba, 0x77, - 0x6c, 0x92, 0xd3, 0xe5, 0x51, 0x49, 0xda, 0x85, 0xa0, 0xf1, 0xc9, 0x43, 0xbd, 0x7e, 0x9a, 0x82, - 0x1d, 0x96, 0x94, 0x9b, 0xcc, 0xe3, 0x92, 0xe6, 0x61, 0x26, 0x8f, 0x4b, 0x5a, 0x20, 0x58, 0x79, - 0x5c, 0xd2, 0xe2, 0xdc, 0x8b, 0xc7, 0x25, 0x95, 0xcd, 0x55, 0x79, 0x5c, 0xd2, 0xb2, 0x95, 0x27, - 0x3c, 0x2e, 0x69, 0xb1, 0xf9, 0x81, 0xc7, 0x25, 0x91, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, - 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, - 0x11, 0xa4, 0xc2, 0xe0, 0xd0, 0x3c, 0x8b, 0x32, 0x5c, 0xd9, 0xc8, 0xd8, 0x7c, 0xaa, 0x46, 0x48, - 0xa0, 0xf4, 0x22, 0x52, 0x1a, 0x10, 0x2a, 0x74, 0x62, 0xa5, 0x0d, 0xc1, 0xd2, 0x86, 0x68, 0xe9, - 0x41, 0xb8, 0xb0, 0x88, 0x17, 0x18, 0x01, 0x2b, 0x20, 0x82, 0xaf, 0x1a, 0x39, 0xeb, 0xf7, 0x7b, - 0x2a, 0x8c, 0x81, 0x65, 0x23, 0x6b, 0x6b, 0x9c, 0xcf, 0x5b, 0x76, 0x67, 0x04, 0xda, 0x52, 0x9e, - 0xe9, 0x89, 0x28, 0x5b, 0xcc, 0x2c, 0x34, 0x58, 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, 0x83, - 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0xbf, 0x18, 0xf1, 0x29, 0x4f, 0xaf, 0xc0, 0x74, 0xca, 0xd3, - 0x2b, 0x5a, 0x78, 0xca, 0xd3, 0xe5, 0x3c, 0x06, 0xe5, 0xe9, 0x4c, 0xbf, 0xf3, 0x74, 0x6d, 0xca, - 0xd3, 0xc5, 0xb9, 0x36, 0xe5, 0xe9, 0x2c, 0x08, 0x96, 0xd5, 0x6a, 0xca, 0xd3, 0x97, 0xd9, 0x52, - 0xca, 0xd3, 0x17, 0x6b, 0xf7, 0x72, 0x48, 0x4f, 0x7b, 0xfd, 0x34, 0xa5, 0x40, 0x7d, 0x79, 0x2c, - 0xa4, 0x40, 0x9d, 0x51, 0xe2, 0x79, 0x51, 0x82, 0x12, 0xf5, 0x7b, 0x12, 0x75, 0x77, 0xb4, 0x28, - 0x14, 0xa9, 0xeb, 0x16, 0x86, 0xc6, 0xdb, 0xf1, 0x23, 0xff, 0x53, 0x79, 0x41, 0x66, 0x66, 0x08, - 0x1d, 0xf8, 0x1f, 0x87, 0x09, 0xee, 0x5b, 0x4f, 0xe9, 0xfa, 0x3c, 0xcc, 0xa4, 0x74, 0x7d, 0x81, - 0xb8, 0xa5, 0x74, 0x7d, 0x71, 0xee, 0x45, 0xe9, 0x7a, 0xd9, 0x2c, 0x96, 0xd2, 0xf5, 0x65, 0x2b, - 0x5c, 0x28, 0x5d, 0x5f, 0x6c, 0x7e, 0xa0, 0x74, 0x9d, 0xc4, 0x06, 0x91, 0xe0, 0x00, 0x13, 0x1d, - 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, 0x20, 0xc4, 0x08, - 0x8e, 0x20, 0x15, 0x06, 0x67, 0x88, 0x93, 0x97, 0x45, 0x9a, 0x01, 0xe8, 0xfb, 0xcc, 0xa2, 0x4d, - 0xd4, 0x93, 0x90, 0x46, 0x69, 0x4c, 0xa7, 0xd0, 0x69, 0x95, 0x36, 0xf4, 0x4a, 0x1b, 0x9a, 0xa5, - 0x07, 0xdd, 0xc2, 0xa2, 0x5d, 0x60, 0xf4, 0xab, 0x80, 0x08, 0xbe, 0x9e, 0x44, 0xc5, 0xc3, 0x4b, - 0x95, 0x8c, 0x67, 0x04, 0x80, 0xc5, 0xeb, 0x75, 0x40, 0xdb, 0xed, 0x78, 0x78, 0x39, 0x02, 0x0f, - 0x5d, 0x74, 0x91, 0xab, 0xec, 0x46, 0x69, 0x66, 0x65, 0x59, 0x82, 0xe9, 0xa6, 0x87, 0x51, 0x6c, - 0xf7, 0xd4, 0x28, 0x0b, 0xa5, 0xc6, 0xce, 0x4a, 0x3c, 0xec, 0xf5, 0x00, 0x81, 0x7e, 0x18, 0x7e, - 0xc3, 0x7f, 0x88, 0xa3, 0xa4, 0xab, 0x12, 0xd5, 0xdd, 0xbd, 0x9e, 0x3c, 0x02, 0xc7, 0x85, 0x97, - 0xd8, 0x52, 0x8e, 0x0b, 0x2f, 0xd6, 0xee, 0xe5, 0x18, 0x04, 0xbc, 0x37, 0x58, 0xc4, 0xc9, 0xe1, - 0xe5, 0xb1, 0x90, 0x93, 0xc3, 0x0c, 0x18, 0x2f, 0x0e, 0x18, 0x1c, 0x22, 0xbe, 0x37, 0x44, 0xdc, - 0x2a, 0xd6, 0x27, 0x2f, 0xcc, 0x39, 0x4e, 0xac, 0x5b, 0x6c, 0x32, 0x2e, 0xc3, 0x6f, 0x66, 0xee, - 0x0a, 0x67, 0x61, 0xdc, 0xfd, 0x1a, 0x75, 0x73, 0x7f, 0x07, 0x19, 0x26, 0x7e, 0xc4, 0x76, 0x8e, - 0x12, 0xcf, 0xc3, 0x4c, 0x8e, 0x12, 0x2f, 0x10, 0xb5, 0x1c, 0x25, 0x5e, 0x9c, 0x7b, 0x71, 0x94, - 0xb8, 0x6c, 0x5a, 0xcb, 0x51, 0xe2, 0x65, 0xab, 0x64, 0x38, 0x4a, 0xbc, 0xd8, 0xfc, 0xc0, 0x51, - 0x62, 0x12, 0x1b, 0x44, 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, - 0xd8, 0x44, 0x08, 0x83, 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x54, 0x18, 0x8c, 0xd3, 0xfa, 0x99, - 0x99, 0x6b, 0x50, 0x3a, 0x40, 0xb3, 0x08, 0x14, 0x87, 0x8a, 0x49, 0xa8, 0x34, 0x26, 0x56, 0xe8, - 0x04, 0x4b, 0x1b, 0xa2, 0xa5, 0x0d, 0xe1, 0xd2, 0x83, 0x78, 0x61, 0x11, 0x30, 0x30, 0x22, 0x56, - 0x40, 0x04, 0x7f, 0xa8, 0x38, 0x52, 0x4a, 0x9d, 0xf7, 0xfa, 0x21, 0xf6, 0x49, 0xf5, 0xdb, 0x80, - 0xa6, 0xbb, 0x2a, 0xbe, 0xc8, 0x89, 0x31, 0x8f, 0xaa, 0x2f, 0x79, 0xe5, 0x79, 0x54, 0xbd, 0x9c, - 0xc7, 0x28, 0xce, 0xb3, 0xe6, 0x31, 0xd6, 0x4c, 0xc2, 0x73, 0x70, 0x6d, 0x1e, 0x55, 0x4f, 0xd7, - 0xa6, 0x6b, 0xeb, 0x51, 0x0d, 0xe0, 0x5a, 0xcd, 0x13, 0xea, 0x97, 0xd9, 0x52, 0x4a, 0x4e, 0x16, - 0x6b, 0xb7, 0xf6, 0x13, 0xe4, 0x0f, 0xc7, 0x4f, 0x29, 0x38, 0x59, 0x1e, 0x0b, 0x29, 0x38, 0x61, - 0xb8, 0x78, 0x61, 0xb8, 0xa0, 0xdc, 0xe4, 0x8e, 0xdc, 0xe4, 0x30, 0xfc, 0xe6, 0x46, 0xf1, 0x97, - 0xdd, 0x62, 0x71, 0x28, 0x36, 0xd1, 0x2d, 0x2e, 0xe5, 0x82, 0x8d, 0x44, 0xa5, 0x2a, 0xb9, 0x0a, - 0xcf, 0x7a, 0x0a, 0x5a, 0x77, 0x32, 0xfb, 0x31, 0x28, 0x41, 0x99, 0x87, 0x99, 0x94, 0xa0, 0x2c, - 0x10, 0xc0, 0x94, 0xa0, 0x2c, 0xce, 0xbd, 0x28, 0x41, 0x29, 0x9b, 0xe8, 0x52, 0x82, 0xb2, 0x6c, - 0xb5, 0x0d, 0x25, 0x28, 0x8b, 0xcd, 0x0f, 0x94, 0xa0, 0x90, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, - 0x83, 0x4a, 0x78, 0xe0, 0x89, 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, - 0xc1, 0x11, 0xa4, 0xc2, 0x60, 0x4a, 0x50, 0x2a, 0x27, 0x50, 0x94, 0xa0, 0x90, 0x50, 0x69, 0x4c, - 0xac, 0xd0, 0x09, 0x96, 0x36, 0x44, 0x4b, 0x1b, 0xc2, 0xa5, 0x07, 0xf1, 0xc2, 0x22, 0x60, 0x60, - 0x44, 0xac, 0x80, 0x08, 0x25, 0x28, 0x32, 0x48, 0x0e, 0x25, 0x28, 0xa5, 0xbf, 0x28, 0x41, 0x21, - 0xbd, 0x9f, 0xc3, 0x63, 0x70, 0x4e, 0x9d, 0x49, 0x78, 0x9e, 0xae, 0x4d, 0x09, 0x0a, 0x5d, 0x9b, - 0xae, 0xad, 0x47, 0x35, 0x80, 0x6b, 0x35, 0x25, 0x28, 0xcb, 0x6c, 0x29, 0x25, 0x28, 0x8b, 0xb5, - 0x7b, 0x29, 0x66, 0xca, 0x67, 0x4e, 0xa2, 0x52, 0x8d, 0xb2, 0x3c, 0x16, 0x52, 0x8d, 0xc2, 0xc8, - 0x31, 0xbf, 0xc8, 0x41, 0x61, 0xca, 0x8f, 0xc2, 0x14, 0xaf, 0x58, 0x28, 0x4a, 0x54, 0xf4, 0x0e, - 0x56, 0xc6, 0x65, 0x14, 0x9b, 0x85, 0x52, 0xab, 0xab, 0x7a, 0xe1, 0x35, 0x90, 0x2e, 0xe5, 0xa1, - 0xed, 0x14, 0xa3, 0xcc, 0xc3, 0x4c, 0x8a, 0x51, 0x16, 0x88, 0x5a, 0x8a, 0x51, 0x16, 0xe7, 0x5e, - 0x14, 0xa3, 0x94, 0xcd, 0x73, 0x29, 0x46, 0x59, 0xb6, 0xd2, 0x86, 0x62, 0x94, 0xc5, 0xe6, 0x07, - 0x8a, 0x51, 0x48, 0x6c, 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, 0xf0, 0xc4, 0x07, 0x9e, - 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, 0x61, 0x70, 0x68, 0x9e, - 0x45, 0x19, 0xae, 0x10, 0x65, 0x6c, 0x3e, 0x45, 0x28, 0x24, 0x50, 0x7a, 0x11, 0x29, 0x0d, 0x08, - 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, 0x69, 0x43, 0xb4, 0xf4, 0x20, 0x5c, 0x58, 0xc4, 0x0b, 0x8c, - 0x80, 0x15, 0x10, 0xc1, 0x17, 0xa1, 0x9c, 0xf5, 0xfb, 0x3d, 0x15, 0xc6, 0xc0, 0x02, 0x94, 0xb5, - 0x35, 0x4e, 0xfc, 0x2d, 0xbb, 0x33, 0xe6, 0x07, 0x08, 0x62, 0xec, 0x2d, 0xcf, 0xf4, 0xc4, 0xdb, - 0x47, 0x60, 0xa1, 0xc1, 0x42, 0x83, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0x2c, 0x34, 0xc8, 0x6b, - 0x58, 0x68, 0x68, 0x51, 0x68, 0x0c, 0xa3, 0x18, 0x5b, 0xe8, 0xbe, 0x05, 0x68, 0xba, 0x17, 0xc6, - 0x17, 0x8a, 0x3a, 0xf7, 0xf2, 0x17, 0x9e, 0x3a, 0x77, 0x39, 0x8f, 0x31, 0x15, 0xc3, 0xae, 0x52, - 0x0c, 0xcb, 0xf4, 0x3b, 0x07, 0xd7, 0xa6, 0xce, 0x5d, 0x9c, 0x6b, 0xd7, 0xd7, 0xb7, 0xeb, 0xdb, - 0x9b, 0x5b, 0xeb, 0xdb, 0x1b, 0xf4, 0x71, 0x16, 0x04, 0xcb, 0x65, 0x35, 0x05, 0xef, 0x4b, 0x9f, - 0xa3, 0x72, 0x9d, 0x12, 0x7a, 0xfb, 0xbb, 0x78, 0x04, 0xb6, 0xbf, 0xcb, 0x30, 0x9b, 0xed, 0xef, - 0x0a, 0xc1, 0xce, 0xf6, 0x77, 0x75, 0xee, 0xca, 0xf6, 0xb7, 0xb0, 0x07, 0x61, 0xfb, 0x9b, 0xdc, - 0xe6, 0x27, 0x10, 0x61, 0xfb, 0xbb, 0x72, 0x7e, 0xc3, 0xf6, 0x77, 0xd9, 0x2f, 0xb6, 0xbf, 0x49, - 0xec, 0xe7, 0xf0, 0x18, 0x6c, 0x7f, 0x33, 0xfd, 0xce, 0xd3, 0xb5, 0xd9, 0xfe, 0x16, 0xe7, 0xda, - 0x6c, 0x7f, 0xb3, 0x20, 0x58, 0x56, 0xab, 0xd9, 0xfe, 0x5e, 0x66, 0x4b, 0x79, 0xde, 0xeb, 0x62, - 0xed, 0xd6, 0xff, 0xd4, 0xc6, 0x07, 0x27, 0xbc, 0xf1, 0x90, 0xd7, 0xe5, 0xb1, 0x90, 0x87, 0xbc, - 0x32, 0x5c, 0xbc, 0x30, 0x5c, 0xf0, 0x64, 0xd7, 0xbb, 0x27, 0xbb, 0x46, 0xf1, 0x61, 0xf8, 0xcd, - 0x8d, 0xe2, 0x2f, 0x8d, 0x7c, 0x6d, 0x78, 0x9c, 0xab, 0x6e, 0x61, 0xc9, 0x48, 0x54, 0x1a, 0x75, - 0x87, 0x61, 0xcf, 0xc4, 0xb9, 0x60, 0xb6, 0x68, 0xc2, 0x3f, 0x62, 0x3b, 0x8f, 0x73, 0x9d, 0x87, - 0x99, 0x3c, 0xce, 0x75, 0x81, 0xa8, 0xe5, 0x71, 0xae, 0x8b, 0x73, 0x2f, 0x1e, 0xe7, 0x5a, 0x36, - 0xa3, 0xe5, 0x71, 0xae, 0xcb, 0x56, 0xc4, 0xf0, 0x38, 0xd7, 0xc5, 0xe6, 0x07, 0x1e, 0xe7, 0x4a, + 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x1b, 0x8c, 0xd3, 0xfb, 0x99, 0x99, 0x6b, 0x50, 0x3a, 0x40, + 0xb3, 0x08, 0x14, 0x25, 0x61, 0x24, 0x54, 0x1a, 0x13, 0x2b, 0x74, 0x82, 0xa5, 0x0d, 0xd1, 0xd2, + 0x86, 0x70, 0xe9, 0x41, 0xbc, 0xb0, 0x08, 0x18, 0x18, 0x11, 0xcb, 0x21, 0x82, 0x2f, 0x09, 0x0b, + 0x95, 0x52, 0xe7, 0xbd, 0x7e, 0x80, 0xad, 0x0b, 0xdb, 0x06, 0x34, 0xbd, 0xae, 0xa2, 0x8b, 0x31, + 0x31, 0xa6, 0x30, 0xac, 0xe0, 0x3b, 0x4f, 0x61, 0x98, 0x9c, 0xcb, 0xc8, 0xd5, 0x23, 0x14, 0x8d, + 0x30, 0x09, 0xcf, 0xc1, 0xb5, 0x29, 0x0c, 0xa3, 0x6b, 0xd3, 0xb5, 0xf5, 0xa8, 0x06, 0x70, 0xad, + 0x3e, 0xa5, 0xb4, 0x64, 0xd9, 0x53, 0x93, 0x91, 0x22, 0xd6, 0x86, 0x79, 0x5d, 0x38, 0xb6, 0x9e, + 0x1d, 0xef, 0x22, 0xcc, 0x66, 0xc7, 0xbb, 0x44, 0x9c, 0xb3, 0xe3, 0x5d, 0x9e, 0xbb, 0xb2, 0xe3, + 0x2d, 0xec, 0x42, 0xd8, 0xf1, 0x26, 0xa3, 0xf9, 0x05, 0x44, 0x34, 0xe8, 0x78, 0x77, 0x55, 0x94, + 0x86, 0xe9, 0x35, 0xf8, 0x39, 0xcf, 0x80, 0x5b, 0x56, 0x0c, 0x67, 0x72, 0xeb, 0x77, 0x83, 0x04, + 0x38, 0x6f, 0x4d, 0x81, 0xe4, 0xb4, 0x9d, 0xb6, 0xdf, 0x3e, 0xde, 0xf5, 0xea, 0x27, 0xbe, 0xf7, + 0x67, 0xcb, 0x46, 0x4d, 0x5f, 0xe3, 0x3e, 0x4d, 0x02, 0xfb, 0x20, 0x62, 0x05, 0xfa, 0x61, 0xc4, + 0x4f, 0x88, 0x72, 0x9b, 0xc7, 0x9e, 0xed, 0xfa, 0x7b, 0x56, 0xcb, 0xda, 0x75, 0xea, 0x8e, 0xf7, + 0xe7, 0x04, 0x5e, 0x6d, 0x64, 0x7c, 0xe9, 0x84, 0x33, 0x3d, 0xf0, 0xf6, 0x14, 0xdc, 0xdd, 0xfd, + 0x93, 0x01, 0x7f, 0xb5, 0x37, 0xbf, 0x13, 0x72, 0x00, 0x90, 0xb3, 0xea, 0x07, 0x4d, 0xd7, 0xf1, + 0x0e, 0x8f, 0x34, 0x40, 0x1c, 0xf4, 0x15, 0x9c, 0xf2, 0xe1, 0x25, 0x3d, 0x9c, 0xc9, 0x84, 0xd0, + 0x62, 0xd2, 0x20, 0xb2, 0x96, 0x01, 0x59, 0x4e, 0xdb, 0x77, 0x6d, 0x6b, 0xef, 0x90, 0x75, 0x17, + 0xd1, 0x56, 0x1e, 0xea, 0x3c, 0xdb, 0xaf, 0xd9, 0xfb, 0xd6, 0x71, 0xdd, 0xf3, 0x8f, 0x6c, 0xcf, + 0x75, 0xf6, 0x58, 0x79, 0x11, 0x74, 0x8b, 0x06, 0xdd, 0x71, 0x63, 0xaf, 0xd9, 0x68, 0x7b, 0xae, + 0xe5, 0x34, 0xec, 0x9a, 0x5f, 0x6f, 0xb7, 0x08, 0x3a, 0x82, 0x6e, 0xd1, 0xa0, 0xab, 0x3b, 0x8d, + 0x8f, 0x7e, 0xcd, 0xae, 0x5b, 0x6c, 0x2e, 0x11, 0x6d, 0x05, 0xa2, 0xcd, 0x3f, 0xb1, 0x5c, 0xc7, + 0xf2, 0x9c, 0x66, 0x83, 0xb8, 0x23, 0xee, 0x16, 0x8d, 0x3b, 0xa7, 0x75, 0xb2, 0xe9, 0x37, 0x6c, + 0xe7, 0xe0, 0x70, 0xb7, 0xe9, 0xfa, 0x56, 0xad, 0xe6, 0xda, 0xed, 0x36, 0x81, 0x47, 0xe0, 0x2d, + 0x1a, 0x78, 0x56, 0xed, 0xc8, 0x69, 0xf8, 0x07, 0x6e, 0xf3, 0x98, 0x6c, 0x8e, 0x70, 0x2b, 0x00, + 0x6e, 0x7f, 0xf8, 0x6d, 0xa7, 0x46, 0xa8, 0x11, 0x6a, 0x8b, 0x86, 0xda, 0x91, 0xf5, 0x29, 0xa3, + 0x73, 0xbb, 0x56, 0xa3, 0xf6, 0x5f, 0xa7, 0xe6, 0x1d, 0x12, 0x75, 0x44, 0x5d, 0x01, 0x44, 0xae, + 0x4a, 0x22, 0x47, 0xe0, 0x95, 0x53, 0x41, 0x38, 0x0d, 0xcf, 0x76, 0xf7, 0xad, 0x3d, 0x9b, 0xc8, + 0x23, 0xf2, 0x0a, 0xed, 0x99, 0xd4, 0x9b, 0x04, 0x1b, 0xc1, 0xb6, 0x78, 0xb0, 0xe5, 0x64, 0xce, + 0xcf, 0x9f, 0x45, 0x78, 0x04, 0x1e, 0x81, 0xb7, 0x70, 0xe0, 0xd9, 0x9f, 0x3c, 0xbb, 0x51, 0xb3, + 0x6b, 0xec, 0x98, 0x10, 0x77, 0x85, 0x17, 0x14, 0xe4, 0x75, 0x44, 0x5e, 0xe1, 0xc8, 0x3b, 0xf6, + 0x9c, 0xba, 0xf3, 0x3f, 0xbb, 0xc6, 0x06, 0x0a, 0x51, 0x57, 0x1c, 0xea, 0xac, 0xda, 0x1f, 0x7e, + 0xdd, 0x6a, 0xb0, 0x4b, 0x4c, 0xb8, 0x15, 0x01, 0xb7, 0x11, 0x97, 0xcb, 0x3b, 0xc5, 0x1c, 0x33, + 0x21, 0xea, 0x8a, 0x6b, 0x99, 0xb4, 0xdc, 0xa6, 0x67, 0xef, 0x79, 0x4e, 0xb3, 0x91, 0x0d, 0x0f, + 0x13, 0x77, 0xc4, 0xdd, 0xa2, 0x93, 0xeb, 0x89, 0xe5, 0xd4, 0xad, 0xdd, 0xba, 0x4d, 0x4e, 0x47, + 0xd8, 0x15, 0x1c, 0xee, 0x2c, 0xcf, 0x73, 0x9d, 0xdd, 0x63, 0xcf, 0x66, 0xf1, 0x4a, 0xc8, 0x2d, + 0xbe, 0x78, 0x6d, 0xb8, 0x76, 0xdb, 0x76, 0x4f, 0x58, 0xbe, 0x12, 0x77, 0x45, 0xe2, 0xce, 0xb5, + 0xdb, 0x4e, 0xed, 0xd8, 0xaa, 0x13, 0x75, 0x44, 0x5d, 0x81, 0x55, 0xac, 0xf5, 0xc9, 0xcf, 0xe2, + 0x1d, 0xc9, 0x1d, 0xb1, 0x57, 0x02, 0xb9, 0xd3, 0xa2, 0x59, 0xc7, 0x45, 0x1c, 0x74, 0xf1, 0x65, + 0x72, 0xed, 0x65, 0x50, 0x17, 0x13, 0x5c, 0xf2, 0x2a, 0x33, 0x6d, 0x54, 0xc4, 0x04, 0x97, 0x48, + 0x32, 0x02, 0xfe, 0x18, 0x87, 0xa8, 0x92, 0x8b, 0x2a, 0x1d, 0x54, 0xc1, 0xc4, 0x97, 0x34, 0x7c, + 0x69, 0xa6, 0xfe, 0x25, 0xc0, 0xa4, 0x01, 0x4c, 0x8b, 0x99, 0x55, 0xc2, 0x4a, 0x1e, 0xac, 0xc0, + 0xd5, 0xbc, 0x84, 0x94, 0x34, 0x48, 0xe9, 0xa4, 0xda, 0x25, 0xba, 0x04, 0x12, 0xad, 0x2a, 0x89, + 0x16, 0x01, 0xb6, 0x58, 0x26, 0xaf, 0x91, 0x5a, 0x83, 0x08, 0x13, 0xd9, 0x8b, 0xc0, 0x56, 0xdb, + 0x12, 0x54, 0xd2, 0x40, 0xa5, 0x99, 0xaa, 0x96, 0x00, 0x93, 0x06, 0x30, 0xbd, 0xd4, 0xb3, 0xc4, + 0x97, 0x48, 0x62, 0x4f, 0xde, 0x45, 0x84, 0x2d, 0x0c, 0x61, 0x3a, 0xa9, 0x61, 0x89, 0x2e, 0x69, + 0xe8, 0xd2, 0x42, 0xf5, 0x4a, 0x58, 0x49, 0x83, 0x95, 0x4e, 0xea, 0x56, 0xa2, 0x4b, 0x64, 0x2b, + 0x42, 0x1b, 0x15, 0x2b, 0xf1, 0x25, 0x2e, 0x29, 0xea, 0xa4, 0x56, 0x25, 0xbc, 0x44, 0x86, 0x2f, + 0x1d, 0x54, 0xa9, 0x84, 0x96, 0xb8, 0x62, 0x51, 0x2b, 0xf5, 0x29, 0xf1, 0x25, 0x0d, 0x5f, 0x3a, + 0xa9, 0x4c, 0x89, 0x2e, 0x71, 0x55, 0xa3, 0x76, 0x6a, 0x52, 0x62, 0x4c, 0x24, 0xf9, 0x62, 0xb3, + 0x8b, 0x90, 0x7a, 0x05, 0xa4, 0x5a, 0x3c, 0x89, 0x97, 0x68, 0x2b, 0x1b, 0x75, 0xe3, 0x27, 0x8f, + 0x93, 0xe3, 0xc6, 0xb9, 0xb2, 0x92, 0x88, 0x5b, 0x3c, 0xe2, 0x3c, 0xeb, 0x60, 0xb3, 0x4a, 0xa0, + 0x11, 0x68, 0x05, 0x84, 0xb6, 0x4d, 0x86, 0x36, 0x22, 0xae, 0xd0, 0xd0, 0x46, 0x98, 0x11, 0x66, + 0x8b, 0x86, 0x59, 0xcb, 0xb5, 0xf7, 0x9d, 0x4f, 0x5c, 0x31, 0x4e, 0xb4, 0x15, 0x88, 0xb6, 0xfd, + 0xba, 0x75, 0xd0, 0xe6, 0x96, 0xac, 0x72, 0x5f, 0xdc, 0x92, 0x45, 0xff, 0x66, 0xe5, 0x4f, 0x64, + 0xb1, 0xc2, 0x27, 0xa0, 0x96, 0x2b, 0x54, 0x6d, 0x32, 0x54, 0x11, 0x59, 0xac, 0xd8, 0x09, 0x27, + 0x56, 0xe6, 0x44, 0xd5, 0x72, 0xa2, 0x0a, 0xbc, 0x02, 0xc7, 0xac, 0xbc, 0xf1, 0x2a, 0x6e, 0xac, + 0xfb, 0x8c, 0x63, 0x2d, 0x86, 0xa5, 0x20, 0xd1, 0xdb, 0xb0, 0xa2, 0xa8, 0x9f, 0x06, 0x69, 0xd8, + 0x8f, 0x8c, 0x1d, 0xa0, 0xb8, 0x6d, 0x24, 0x9d, 0x2f, 0xea, 0x32, 0x18, 0x04, 0xe9, 0x97, 0x51, + 0xa4, 0xae, 0xf4, 0x07, 0x2a, 0xea, 0xf4, 0xa3, 0xf3, 0xf0, 0xc2, 0x8c, 0x54, 0xfa, 0xad, 0x1f, + 0x7f, 0x35, 0xc3, 0x28, 0x49, 0x83, 0xa8, 0xa3, 0x2a, 0xf7, 0xdf, 0x48, 0x1e, 0xbc, 0x53, 0x19, + 0xc4, 0xfd, 0xb4, 0xdf, 0xe9, 0xf7, 0x92, 0xfc, 0xbb, 0x4a, 0x98, 0x84, 0x49, 0xa5, 0xa7, 0xae, + 0x54, 0x6f, 0xf2, 0xa5, 0xd2, 0x0b, 0xa3, 0xaf, 0x66, 0x92, 0x06, 0xa9, 0x32, 0xbb, 0x41, 0x1a, + 0x9c, 0x05, 0x89, 0xaa, 0xf4, 0x92, 0x41, 0x25, 0xed, 0x5d, 0x25, 0xa3, 0xff, 0x8c, 0x7f, 0xc5, + 0x8c, 0x54, 0x78, 0xf1, 0xe5, 0xac, 0x1f, 0x9b, 0x41, 0x9a, 0xc6, 0xe1, 0xd9, 0x30, 0x1d, 0x19, + 0x90, 0xbd, 0x95, 0xe4, 0xdf, 0x55, 0x6e, 0x6d, 0xc9, 0x6d, 0x48, 0x86, 0x67, 0xe3, 0xbf, 0x29, + 0xfb, 0x5a, 0x09, 0xae, 0x82, 0xb0, 0x17, 0x9c, 0xf5, 0x94, 0x79, 0x16, 0x44, 0xdd, 0x6f, 0x61, + 0x37, 0xfd, 0x52, 0x19, 0xff, 0xe3, 0x18, 0x99, 0x47, 0xbe, 0x97, 0xca, 0xb6, 0x50, 0x78, 0xfc, + 0x40, 0x8b, 0x1b, 0x4b, 0x19, 0x2f, 0x00, 0xa6, 0x17, 0x8d, 0x24, 0x8d, 0x87, 0x9d, 0x34, 0x9a, + 0x30, 0xee, 0x46, 0x76, 0xa3, 0x9d, 0xc9, 0x35, 0xfa, 0xad, 0xc9, 0xdd, 0xf5, 0x9d, 0x24, 0x4c, + 0xfc, 0xfa, 0xe8, 0xb6, 0xfa, 0xf5, 0x64, 0xe0, 0x7b, 0xbd, 0xab, 0xf1, 0x5b, 0x8d, 0xc9, 0xfd, + 0xb1, 0xa6, 0xf7, 0xce, 0x9f, 0xbe, 0xe3, 0xe7, 0x7f, 0x47, 0x7b, 0x7c, 0x7f, 0x7c, 0x6b, 0x7a, + 0x7f, 0x76, 0xf3, 0xdb, 0xf3, 0x1b, 0xc3, 0x93, 0x66, 0xa1, 0xc9, 0xc8, 0xb1, 0x6f, 0x76, 0xfa, + 0x51, 0x92, 0xc6, 0x41, 0x18, 0xa5, 0x89, 0xf8, 0x08, 0x95, 0x57, 0x9c, 0x8f, 0x9b, 0x2f, 0x3c, + 0x15, 0x7c, 0x0c, 0xa3, 0xae, 0xb1, 0xb3, 0xb2, 0x26, 0xdc, 0xcc, 0xbd, 0x71, 0xb8, 0x37, 0x76, + 0x56, 0x56, 0x85, 0x1b, 0xda, 0x8a, 0xd5, 0x79, 0xf8, 0x1d, 0x23, 0xad, 0x4e, 0x81, 0xdb, 0xef, + 0x98, 0xa3, 0x6c, 0x86, 0x90, 0x71, 0xda, 0xfd, 0x61, 0xdc, 0x51, 0x30, 0xd5, 0x8e, 0xf1, 0x51, + 0x5d, 0x7f, 0xeb, 0xc7, 0x23, 0x0f, 0x33, 0x06, 0x19, 0x32, 0x40, 0x4a, 0xcb, 0xc3, 0x20, 0xb1, + 0xe2, 0x8b, 0xe1, 0xa5, 0x8a, 0x52, 0x63, 0x67, 0x25, 0x8d, 0x87, 0x0a, 0xa5, 0x26, 0xbe, 0xb5, + 0x3a, 0x07, 0x36, 0xcb, 0x19, 0xad, 0xcb, 0x99, 0x5a, 0x18, 0x63, 0x04, 0xdc, 0xc7, 0x18, 0x02, + 0x4e, 0x2c, 0xfb, 0x37, 0x9e, 0x83, 0x12, 0xd6, 0x30, 0xe8, 0x0e, 0x1c, 0xed, 0x41, 0xa4, 0x3f, + 0xc0, 0x34, 0x08, 0x95, 0x0e, 0xc1, 0xd3, 0x22, 0x78, 0x7a, 0x84, 0x4d, 0x93, 0x30, 0xe8, 0x12, + 0x08, 0x6d, 0x82, 0xa3, 0x4f, 0xb9, 0xc1, 0x48, 0xdd, 0xa1, 0x99, 0xd9, 0x06, 0xa7, 0x47, 0x04, + 0x4e, 0xa2, 0x60, 0xc9, 0x14, 0x32, 0xa9, 0xd2, 0x80, 0x5c, 0xa1, 0x93, 0x2c, 0x6d, 0xc8, 0x96, + 0x36, 0xa4, 0x4b, 0x0f, 0xf2, 0x85, 0x45, 0xc2, 0xc0, 0xc8, 0x18, 0x2c, 0x29, 0x7b, 0x84, 0x9c, + 0xe1, 0x46, 0xcc, 0x87, 0x1c, 0x0d, 0x35, 0x64, 0x62, 0x52, 0x35, 0x78, 0xca, 0xa6, 0x03, 0x75, + 0xd3, 0x88, 0xc2, 0xe9, 0x42, 0xe5, 0xb4, 0xa3, 0x74, 0xda, 0x51, 0x3b, 0xbd, 0x28, 0x1e, 0x26, + 0xd5, 0x03, 0xa5, 0x7c, 0xf0, 0xd4, 0xef, 0x11, 0x0a, 0x68, 0x86, 0x5d, 0xfc, 0x60, 0xfb, 0x90, + 0x0d, 0x8e, 0x2e, 0x0b, 0x3c, 0x3e, 0x4d, 0x88, 0xe1, 0x2a, 0xf8, 0x65, 0xa0, 0x13, 0x44, 0x9d, + 0x88, 0xa2, 0x86, 0x84, 0x51, 0x37, 0xe2, 0xa8, 0x2d, 0x81, 0xd4, 0x96, 0x48, 0xea, 0x49, 0x28, + 0xb1, 0x89, 0x25, 0x38, 0xc1, 0xcc, 0x21, 0xe5, 0x5d, 0x0f, 0x94, 0x5e, 0x19, 0xa7, 0xa7, 0x82, + 0xf3, 0x58, 0x9d, 0xeb, 0x90, 0x71, 0xa6, 0x9d, 0xbb, 0x2d, 0x0d, 0xae, 0xa5, 0x35, 0x51, 0x6e, + 0xbd, 0x7b, 0x97, 0xa9, 0x20, 0x2b, 0x3f, 0x53, 0xe9, 0xdf, 0x18, 0xc2, 0x18, 0xbe, 0x9e, 0x87, + 0xa8, 0x4c, 0x4c, 0xab, 0x4d, 0x69, 0x99, 0x5d, 0x8e, 0x1e, 0x25, 0xe5, 0x1a, 0x4b, 0x4a, 0x96, + 0x94, 0x2c, 0x29, 0x59, 0x52, 0xb2, 0xa4, 0x64, 0x49, 0x49, 0x3e, 0xb6, 0x5c, 0x25, 0x25, 0xfa, + 0xb3, 0x8b, 0xfc, 0x42, 0x6e, 0xf7, 0x30, 0xec, 0xe8, 0xb6, 0x9b, 0x1c, 0x69, 0xc5, 0xc4, 0x73, + 0x88, 0xe7, 0xaa, 0x26, 0x97, 0xa3, 0x0b, 0x01, 0xd5, 0x91, 0x88, 0x6a, 0x4c, 0x48, 0x75, 0x25, + 0xa6, 0xda, 0x13, 0x54, 0xed, 0x89, 0xaa, 0xde, 0x84, 0x55, 0x0f, 0xe2, 0xaa, 0x09, 0x81, 0xcd, + 0xa1, 0xa6, 0xcd, 0xb3, 0x91, 0x07, 0x19, 0x2b, 0x54, 0x4a, 0x9d, 0xf7, 0xfa, 0x41, 0xfa, 0x7e, + 0x5d, 0xa7, 0xac, 0x35, 0x21, 0x81, 0xdb, 0x1a, 0x5d, 0x52, 0x5d, 0x45, 0x17, 0xe3, 0x02, 0xe4, + 0xb3, 0x56, 0x61, 0x5c, 0x2f, 0x5a, 0x31, 0xfe, 0xa4, 0x8e, 0xc2, 0x48, 0x3b, 0xbe, 0xa4, 0x69, + 0x79, 0xf5, 0xe0, 0xf2, 0xc6, 0xc7, 0x2c, 0x1b, 0x3b, 0x2b, 0x55, 0x4d, 0xaf, 0x6f, 0x3f, 0x0e, + 0x3a, 0x69, 0xd8, 0x8f, 0x6a, 0xe1, 0x45, 0x38, 0x16, 0x4c, 0xaf, 0x6a, 0x77, 0x9d, 0x37, 0xbf, + 0x6b, 0x18, 0x52, 0x82, 0xef, 0x0c, 0x29, 0x0c, 0x29, 0x0c, 0x29, 0xac, 0xc6, 0x78, 0x35, 0xb7, + 0xaf, 0xd3, 0xdf, 0xf8, 0x79, 0x30, 0xe5, 0xce, 0x27, 0x8c, 0xe9, 0xa5, 0x53, 0x79, 0x50, 0xe8, + 0xeb, 0xa4, 0x57, 0xd1, 0x94, 0x39, 0xf0, 0x59, 0x0f, 0x92, 0x43, 0xf1, 0x59, 0x0f, 0x4e, 0x98, + 0xe0, 0xb3, 0x1e, 0xf0, 0x0b, 0xe4, 0xb3, 0x1e, 0x72, 0xc0, 0x82, 0xa0, 0xa6, 0xef, 0xb3, 0x9e, + 0x61, 0x18, 0xe9, 0xf9, 0x98, 0x67, 0x4b, 0xa3, 0x4b, 0x72, 0x83, 0xe8, 0x42, 0xf1, 0x29, 0x8f, + 0xfc, 0x0f, 0x8a, 0x4f, 0x79, 0x70, 0x2f, 0x6f, 0xda, 0x92, 0x5d, 0x65, 0x4b, 0x96, 0x74, 0x43, + 0x50, 0x48, 0xe1, 0x53, 0x1e, 0xf8, 0x90, 0x52, 0x5d, 0xdf, 0xae, 0x6e, 0x6f, 0x6e, 0xad, 0x6f, + 0x6f, 0x30, 0xb6, 0xb0, 0x20, 0xe3, 0xd5, 0xcc, 0xf3, 0xc5, 0xc7, 0x3d, 0xbc, 0x82, 0xa5, 0x67, + 0x0e, 0xa8, 0xe7, 0x7c, 0xcf, 0xbc, 0x1e, 0xed, 0xcf, 0xf3, 0x7d, 0xf4, 0x28, 0xd0, 0x47, 0xdf, + 0xad, 0xdc, 0xfd, 0x81, 0x3b, 0x6f, 0x03, 0x9d, 0x16, 0xae, 0x5f, 0xcc, 0xe0, 0xbe, 0xcb, 0x42, + 0xcb, 0x04, 0x75, 0xad, 0xcb, 0xe3, 0x6a, 0xa3, 0x1e, 0x26, 0xa9, 0x95, 0xa6, 0xe0, 0x0b, 0x3c, + 0x8f, 0xc2, 0xc8, 0xee, 0xa9, 0x4b, 0x95, 0x1d, 0xb0, 0x13, 0x0d, 0x7b, 0x3d, 0xe0, 0x55, 0x31, + 0x47, 0xc1, 0x77, 0x7d, 0x2e, 0xa6, 0x19, 0x77, 0x55, 0xac, 0xba, 0xbb, 0xd7, 0x93, 0x4b, 0x61, + 0xa0, 0x22, 0x0d, 0x23, 0xfd, 0x9a, 0x3b, 0xfd, 0x32, 0xa0, 0x57, 0x63, 0xc5, 0xc3, 0x4e, 0x1a, + 0x4d, 0x9e, 0x00, 0x36, 0xb2, 0x8f, 0xcb, 0x99, 0xdc, 0x29, 0xbf, 0x35, 0xf9, 0x8c, 0x7c, 0x27, + 0x09, 0x13, 0xbf, 0x3e, 0xfa, 0x70, 0xfc, 0x7a, 0x32, 0xf0, 0xbd, 0xde, 0xd5, 0xf8, 0xad, 0xc6, + 0xe4, 0x2e, 0x5b, 0xd3, 0x4f, 0xc0, 0x9f, 0xbe, 0xe3, 0xe7, 0x7f, 0x47, 0x7b, 0x7c, 0x97, 0xfd, + 0xdd, 0xe9, 0xfd, 0xdc, 0xcb, 0xef, 0x9b, 0x7f, 0xfb, 0x2d, 0x26, 0x77, 0xbd, 0xe1, 0x31, 0x3c, + 0x0c, 0xfd, 0xfa, 0x84, 0x7c, 0x86, 0xfa, 0xc7, 0x43, 0x3d, 0x56, 0x70, 0xc2, 0x71, 0x71, 0x20, + 0xf7, 0x36, 0x2e, 0xfb, 0x5d, 0xd5, 0x43, 0x1c, 0xfc, 0xce, 0xa7, 0x7b, 0xf2, 0x2b, 0xc0, 0x3c, + 0x3f, 0x74, 0x95, 0xe7, 0x87, 0x16, 0x63, 0x38, 0xcf, 0x0f, 0x2d, 0xf5, 0x12, 0x78, 0x7e, 0xa8, + 0x90, 0x0b, 0xe1, 0xf9, 0xa1, 0x64, 0x35, 0xcb, 0x52, 0xb8, 0xc0, 0xce, 0x34, 0x6b, 0xb0, 0xcb, + 0x1f, 0x79, 0x77, 0xff, 0xc3, 0x5d, 0xfd, 0x39, 0xcb, 0x64, 0xcd, 0xb4, 0xf4, 0x35, 0x13, 0xe6, + 0xda, 0x7d, 0xe8, 0x35, 0xfb, 0xa0, 0x6b, 0xf5, 0x59, 0x2d, 0xb1, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, + 0x89, 0xd5, 0x12, 0xab, 0x25, 0xf9, 0x10, 0x41, 0x5d, 0x5b, 0x8f, 0xdb, 0xc4, 0x7e, 0x90, 0xb2, + 0x40, 0x9b, 0xd9, 0xf7, 0x69, 0x1a, 0xa8, 0xd8, 0x05, 0x7e, 0x11, 0x89, 0x0e, 0x8b, 0x47, 0x34, + 0x5a, 0x34, 0xa2, 0xcb, 0x62, 0x11, 0xed, 0x16, 0x89, 0x68, 0xb7, 0x38, 0x44, 0xaf, 0x45, 0x21, + 0x9c, 0x3c, 0x2f, 0x12, 0x3a, 0xf0, 0x8b, 0x3f, 0x7e, 0x5a, 0xf4, 0xf1, 0x01, 0x39, 0x5f, 0x4c, + 0xe8, 0x13, 0xb0, 0x84, 0x56, 0x93, 0x3d, 0x1e, 0x1a, 0xc8, 0xcb, 0x74, 0xda, 0xd3, 0xa1, 0xdb, + 0xc2, 0x43, 0xcd, 0xf6, 0x70, 0xe8, 0xa8, 0x8d, 0xd7, 0x61, 0xb5, 0xab, 0x4e, 0x7b, 0x35, 0x74, + 0x0d, 0x01, 0xeb, 0x1b, 0x1b, 0x0c, 0x02, 0x2c, 0x44, 0x68, 0xfd, 0xdd, 0xd7, 0x29, 0x65, 0x33, + 0xb4, 0x18, 0x3d, 0x25, 0x53, 0x36, 0xa3, 0x91, 0x6c, 0x06, 0x70, 0x13, 0x05, 0xd0, 0xf0, 0xd7, + 0x6f, 0x0c, 0x3f, 0x73, 0x24, 0xca, 0xd9, 0x26, 0x09, 0xb0, 0x47, 0x89, 0x98, 0x4b, 0x23, 0xa0, + 0x97, 0x44, 0x40, 0x2f, 0x85, 0xc0, 0x5c, 0x02, 0x81, 0x12, 0x43, 0x40, 0xa9, 0x0b, 0x29, 0x0b, + 0xe4, 0xf6, 0x86, 0x52, 0xb7, 0x35, 0x60, 0x90, 0x3a, 0xf9, 0x14, 0x49, 0xb6, 0x85, 0xc2, 0x03, + 0x2f, 0x5a, 0xc0, 0x5d, 0xd2, 0x40, 0x2b, 0x3b, 0x56, 0xc8, 0xf5, 0x40, 0xc1, 0xde, 0x67, 0xa8, + 0xef, 0xa9, 0x8a, 0xba, 0xaa, 0x6b, 0x06, 0xdd, 0xcb, 0x30, 0x32, 0x2f, 0xe2, 0xfe, 0x70, 0x20, + 0xde, 0x07, 0xf3, 0x91, 0x87, 0x47, 0xad, 0x17, 0x1e, 0xeb, 0x30, 0xb4, 0x3c, 0x30, 0xc3, 0xa0, + 0x48, 0x43, 0x9f, 0x80, 0xc3, 0x9d, 0x68, 0x43, 0x9c, 0xb0, 0xc3, 0x9a, 0xb0, 0x43, 0x99, 0x98, + 0xc3, 0x97, 0xe4, 0xeb, 0xaf, 0xf9, 0xc8, 0x51, 0xb4, 0x32, 0x60, 0x62, 0x65, 0x48, 0x91, 0x32, + 0x98, 0x38, 0x19, 0x4e, 0xe5, 0x82, 0xa8, 0x6a, 0x01, 0x56, 0xb1, 0xa0, 0xaa, 0x56, 0xe0, 0x55, + 0x2a, 0xf0, 0xaa, 0x14, 0x6c, 0x15, 0x0a, 0x9f, 0x42, 0x2f, 0x23, 0x41, 0xca, 0x0d, 0x86, 0xec, + 0x03, 0xcd, 0x4c, 0x3b, 0x80, 0x7d, 0xa1, 0x59, 0xb4, 0x8a, 0x1b, 0x32, 0x49, 0xb3, 0x34, 0xa6, + 0x5b, 0xe8, 0xb4, 0x4b, 0x1b, 0xfa, 0xa5, 0x0d, 0x0d, 0xd3, 0x83, 0x8e, 0x61, 0xd1, 0x32, 0x30, + 0x7a, 0x96, 0x43, 0x04, 0x7f, 0x43, 0x26, 0xec, 0xe9, 0xfe, 0xc0, 0xa7, 0xf8, 0x83, 0xab, 0x7c, + 0xb1, 0x0f, 0x25, 0xd3, 0x60, 0x9d, 0x88, 0x16, 0x52, 0x3e, 0x5d, 0x54, 0xbc, 0x3a, 0x09, 0xf7, + 0x6e, 0xb0, 0x8f, 0xe8, 0xa3, 0x6b, 0x0b, 0x73, 0x6d, 0x5d, 0x4e, 0xb5, 0xd7, 0xca, 0xc7, 0x29, + 0x0e, 0x2d, 0xe4, 0x75, 0xca, 0xc2, 0x6b, 0x81, 0x0e, 0x09, 0x7d, 0x46, 0xae, 0x16, 0x67, 0xe3, + 0x6a, 0x71, 0x26, 0x2e, 0xf6, 0x59, 0xb8, 0x94, 0xa8, 0x2e, 0x65, 0x10, 0xa4, 0xbc, 0x4c, 0xaa, + 0xea, 0xe1, 0xb1, 0xc7, 0x86, 0x48, 0xda, 0x77, 0xca, 0xa4, 0xb4, 0x0e, 0x20, 0x94, 0x49, 0x21, + 0x04, 0x0c, 0x84, 0xa1, 0xfe, 0xc2, 0x14, 0xa7, 0xf6, 0xe4, 0x06, 0x59, 0xa3, 0xfb, 0x73, 0x30, + 0xbe, 0x3d, 0x14, 0x91, 0xe9, 0x16, 0x9b, 0x8c, 0x70, 0x70, 0x55, 0x35, 0xc3, 0x28, 0x55, 0xf1, + 0x79, 0xd0, 0x51, 0x66, 0xd0, 0xed, 0xc6, 0x2a, 0x49, 0x70, 0x64, 0x64, 0x33, 0xec, 0xa7, 0x90, + 0x6c, 0x1e, 0x66, 0x52, 0x48, 0xb6, 0x40, 0xe4, 0x52, 0x48, 0xb6, 0x38, 0xf7, 0xa2, 0x90, 0xac, + 0x68, 0x7a, 0x4b, 0x21, 0xd9, 0xb2, 0x55, 0x34, 0x14, 0x92, 0x2d, 0x36, 0x3f, 0x50, 0x48, 0x46, 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, - 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x0a, 0x83, 0x71, 0x5a, 0x3f, 0x33, 0x73, - 0x0d, 0xd2, 0xcd, 0x5c, 0x8f, 0x11, 0x28, 0xca, 0x4d, 0x48, 0xa8, 0x34, 0x26, 0x56, 0xe8, 0x04, - 0x4b, 0x1b, 0xa2, 0xa5, 0x0d, 0xe1, 0xd2, 0x83, 0x78, 0x61, 0x11, 0x30, 0x30, 0x22, 0x56, 0x40, - 0x04, 0x5f, 0x6e, 0x12, 0x29, 0xa5, 0xce, 0x7b, 0xfd, 0x10, 0x5b, 0x73, 0xb2, 0x0d, 0x68, 0xba, - 0xab, 0xe2, 0x8b, 0x9c, 0x18, 0x53, 0x74, 0x52, 0xf2, 0xca, 0x53, 0x74, 0x22, 0xe7, 0x31, 0x8a, - 0xc9, 0x74, 0x0e, 0xa4, 0x33, 0x09, 0xcf, 0xc1, 0xb5, 0x29, 0x3a, 0xa1, 0x6b, 0xd3, 0xb5, 0xf5, - 0xa8, 0x06, 0x70, 0xad, 0xa6, 0xd6, 0x64, 0x99, 0x2d, 0xa5, 0xd6, 0x64, 0xb1, 0x76, 0x6b, 0x3f, - 0x3c, 0xfe, 0x70, 0xfc, 0x94, 0x5a, 0x93, 0xe5, 0xb1, 0x90, 0x5a, 0x13, 0x86, 0x8b, 0x17, 0x86, - 0x0b, 0x6a, 0x4d, 0xee, 0x68, 0x4d, 0xbc, 0xc9, 0xf2, 0xec, 0x16, 0xab, 0x43, 0xb5, 0x89, 0x6e, - 0x81, 0x09, 0x64, 0x24, 0x13, 0x6a, 0x14, 0x93, 0x9a, 0x92, 0x39, 0x1b, 0x4a, 0x4d, 0xc9, 0x42, - 0x4d, 0xa6, 0xa6, 0xa4, 0x24, 0xc3, 0xa9, 0x29, 0x21, 0x1f, 0x40, 0x29, 0x56, 0x60, 0x34, 0x25, - 0x19, 0xd2, 0x28, 0x41, 0x91, 0x1e, 0x72, 0xab, 0xb1, 0x14, 0x25, 0xab, 0x54, 0x94, 0x2c, 0x3d, - 0xbd, 0x01, 0xa6, 0x39, 0xa8, 0x74, 0x07, 0x9e, 0xf6, 0xc0, 0xd3, 0x1f, 0x6c, 0x1a, 0x84, 0x41, - 0x87, 0x40, 0x68, 0x51, 0x01, 0x05, 0xb8, 0x01, 0xc6, 0xdb, 0xc1, 0xc5, 0xae, 0x8a, 0xb3, 0x28, - 0xbb, 0x4e, 0xd4, 0x39, 0x52, 0xd4, 0x9e, 0xf6, 0x54, 0x80, 0x0e, 0xe0, 0x34, 0x9c, 0xc9, 0x52, - 0xef, 0x86, 0xa9, 0xc2, 0x15, 0xf2, 0x38, 0x6d, 0xa7, 0x1d, 0xb4, 0x8f, 0x77, 0x7d, 0xf7, 0x24, - 0xf0, 0xff, 0x6c, 0xd9, 0x68, 0x69, 0x27, 0x1f, 0xa7, 0x49, 0x21, 0xe7, 0x45, 0x41, 0x25, 0x19, - 0xb7, 0xc8, 0x09, 0x3c, 0xdb, 0xda, 0x7b, 0x67, 0xed, 0x3a, 0xae, 0xe3, 0xff, 0x39, 0x01, 0x51, - 0x1b, 0x11, 0x45, 0x3a, 0xa0, 0x09, 0x1b, 0x55, 0x3f, 0x45, 0x97, 0x75, 0x62, 0x39, 0xae, 0xb5, - 0xeb, 0xda, 0xc1, 0xae, 0xd5, 0x6c, 0xfc, 0xd7, 0x69, 0xf8, 0xef, 0x0c, 0xce, 0x92, 0x12, 0x5e, - 0x73, 0x82, 0x97, 0x67, 0xb7, 0x9d, 0xc6, 0xb1, 0xe5, 0x12, 0x5d, 0x44, 0xd7, 0x02, 0x82, 0x57, - 0xe3, 0x7d, 0xd0, 0x76, 0x1a, 0x84, 0x14, 0x21, 0x35, 0x2f, 0x48, 0xb9, 0x4e, 0xf3, 0x43, 0xd0, - 0xf2, 0x8e, 0x7c, 0x7b, 0xcf, 0x77, 0x8e, 0x9a, 0x63, 0xd6, 0x45, 0x7c, 0x11, 0x5f, 0xf3, 0xc4, - 0x57, 0xc3, 0x76, 0xad, 0x3f, 0x89, 0x2a, 0xa2, 0x6a, 0xfe, 0xa8, 0x0a, 0x4e, 0x2c, 0xcf, 0xb1, - 0x46, 0xa1, 0x8b, 0xf8, 0x22, 0xbe, 0xe6, 0x85, 0x2f, 0xa7, 0x75, 0xb2, 0x19, 0x38, 0x4d, 0xdf, - 0xf6, 0xf6, 0xad, 0x3d, 0x3b, 0xb0, 0x1a, 0x0d, 0xcf, 0x6e, 0xb7, 0x89, 0x30, 0x22, 0x6c, 0x5e, - 0x08, 0x2b, 0xea, 0xc3, 0x60, 0xef, 0xa8, 0xd9, 0xf6, 0x3d, 0xcb, 0x69, 0xfa, 0x04, 0x18, 0x01, - 0x36, 0x37, 0x80, 0x1d, 0x5a, 0x1f, 0x03, 0xcf, 0x6e, 0xdb, 0xde, 0x09, 0xbb, 0x5d, 0xc4, 0xd8, - 0x02, 0x69, 0x98, 0xe5, 0xfb, 0x9e, 0xb3, 0x7b, 0xec, 0xdb, 0x0c, 0x5f, 0x84, 0xd6, 0xdc, 0xa0, - 0x75, 0xec, 0x3b, 0xae, 0xf3, 0x3f, 0xbb, 0xc1, 0xc0, 0x45, 0x74, 0xcd, 0x1f, 0x5d, 0xf6, 0x47, - 0xdf, 0x6e, 0x36, 0xec, 0x46, 0x60, 0x35, 0x0e, 0x9d, 0x66, 0x70, 0xe0, 0x1d, 0x1d, 0xb7, 0x88, - 0x2f, 0xe2, 0x6b, 0x5e, 0xf8, 0xb2, 0x1a, 0xef, 0x03, 0xd7, 0x6a, 0xb2, 0x59, 0x4f, 0x58, 0xcd, - 0x35, 0x29, 0x36, 0x8b, 0x62, 0xd1, 0x6e, 0x04, 0x6e, 0x9b, 0x31, 0x8b, 0xe0, 0x9a, 0x1b, 0xb8, - 0x9c, 0xd6, 0x49, 0x9d, 0x3d, 0x2f, 0x22, 0x6c, 0x71, 0x08, 0xf3, 0xed, 0xa0, 0x61, 0xef, 0x5b, - 0xc7, 0xae, 0x1f, 0x1c, 0xda, 0xbe, 0xe7, 0xec, 0x11, 0x5c, 0x04, 0xd7, 0xbc, 0xc0, 0x35, 0xe2, - 0xf1, 0x87, 0xd6, 0x47, 0x6e, 0x38, 0x12, 0x5d, 0x0b, 0x40, 0x57, 0x8e, 0x2a, 0xf7, 0x88, 0xf9, - 0x90, 0xa0, 0x9a, 0x63, 0xc8, 0x9a, 0x86, 0x2b, 0xf6, 0xb8, 0x88, 0xae, 0x05, 0x14, 0x8b, 0xe3, - 0xed, 0x1f, 0xf6, 0x50, 0x89, 0xaf, 0x05, 0xd5, 0x8b, 0x9b, 0x41, 0xd3, 0x76, 0x0e, 0xde, 0xed, - 0x1e, 0x79, 0x2c, 0x17, 0x09, 0xb0, 0x85, 0x70, 0x2e, 0x36, 0x50, 0x09, 0xa9, 0xb9, 0xc6, 0xac, - 0x3a, 0x63, 0x16, 0x01, 0xb6, 0x30, 0x80, 0xe9, 0xb1, 0x9f, 0x08, 0x69, 0xf9, 0xe9, 0x6f, 0x74, - 0x5f, 0xba, 0xed, 0x13, 0xdd, 0x55, 0x07, 0x35, 0x28, 0x61, 0x54, 0x35, 0x8c, 0x74, 0x50, 0x7d, - 0x12, 0x45, 0xd5, 0x73, 0x07, 0x50, 0x75, 0x27, 0xa1, 0x23, 0xa2, 0x54, 0x86, 0x57, 0x71, 0x12, - 0x47, 0x22, 0x70, 0x04, 0xba, 0x79, 0x4a, 0xf4, 0xc8, 0x41, 0x0f, 0xb2, 0x2a, 0x93, 0x38, 0xaa, - 0x1a, 0x47, 0xba, 0xa8, 0x2f, 0x89, 0xa4, 0xaa, 0x91, 0xa4, 0x89, 0xca, 0x92, 0x40, 0xaa, 0x1a, - 0x48, 0xfa, 0xa8, 0x29, 0x89, 0x25, 0x11, 0x34, 0x09, 0x59, 0x35, 0x49, 0x08, 0x55, 0x0d, 0x21, - 0x1d, 0xd4, 0x91, 0x44, 0x51, 0xd5, 0x28, 0xd2, 0x43, 0x05, 0x49, 0x1c, 0x55, 0x8d, 0x23, 0x68, - 0xb5, 0x23, 0xe1, 0x53, 0x79, 0x32, 0xc3, 0x57, 0x35, 0x12, 0x44, 0x55, 0x83, 0x48, 0x17, 0xf5, - 0x22, 0x91, 0x54, 0x35, 0x92, 0x34, 0x50, 0x29, 0x12, 0x44, 0x55, 0x83, 0x48, 0x07, 0x35, 0x22, - 0x51, 0x54, 0x35, 0x8a, 0x80, 0x55, 0x87, 0x04, 0x4f, 0xe5, 0x21, 0x48, 0x03, 0x75, 0x21, 0x51, - 0x54, 0x7d, 0x71, 0xa6, 0x83, 0x8a, 0x90, 0x38, 0x12, 0x50, 0x9f, 0xe9, 0xa0, 0x16, 0x24, 0x90, - 0x44, 0x70, 0x22, 0x36, 0x1a, 0x09, 0x9d, 0x67, 0xc5, 0xa0, 0x3a, 0x63, 0x10, 0x81, 0xf4, 0x62, - 0x20, 0x71, 0xbf, 0x8c, 0xf0, 0x79, 0x02, 0x7c, 0xbc, 0xa3, 0x63, 0xdf, 0xf6, 0x82, 0x3d, 0xab, - 0xc5, 0x3b, 0x2e, 0x89, 0xab, 0x52, 0xf0, 0x75, 0xf7, 0x4f, 0xd4, 0xb7, 0x13, 0x5a, 0x73, 0x85, - 0x96, 0xe5, 0x1e, 0x1c, 0x79, 0x8e, 0xff, 0xee, 0x90, 0x12, 0xf7, 0x72, 0x5f, 0x94, 0xb8, 0xd3, - 0x73, 0x97, 0x2e, 0x19, 0x10, 0x42, 0x0c, 0xfa, 0x44, 0x10, 0x58, 0xc1, 0xdc, 0xe2, 0x9d, 0xfe, - 0x44, 0x55, 0x59, 0xe8, 0x6a, 0x79, 0xf6, 0xbe, 0xf3, 0x31, 0xd8, 0x77, 0xad, 0x03, 0x1e, 0xe6, - 0x45, 0x5c, 0xcd, 0x1b, 0x57, 0xbc, 0xc4, 0x85, 0xa8, 0x9a, 0x23, 0xaa, 0xf2, 0x9d, 0xd0, 0x09, - 0xc5, 0x22, 0xb2, 0x88, 0xac, 0xf9, 0x21, 0xcb, 0xb7, 0x0e, 0x36, 0xeb, 0x04, 0x14, 0x01, 0x35, - 0xc7, 0x50, 0x55, 0x67, 0xa8, 0x22, 0xb2, 0x16, 0x12, 0xaa, 0xd8, 0x3c, 0x2e, 0xf7, 0xc5, 0xe6, - 0x31, 0xdd, 0x75, 0xb9, 0x2a, 0x6b, 0xe2, 0x87, 0x15, 0x34, 0xd1, 0xc3, 0x4a, 0x99, 0x08, 0x5a, - 0x56, 0x04, 0x81, 0x56, 0xc4, 0x04, 0x0e, 0x2b, 0x5f, 0x22, 0x88, 0x15, 0x2e, 0x2b, 0x5b, 0x4d, - 0x2a, 0x5a, 0x8c, 0x75, 0x95, 0x6f, 0xa5, 0x6c, 0x0b, 0x85, 0x07, 0x5d, 0xc3, 0x8a, 0xe3, 0x7e, - 0x16, 0x66, 0x51, 0x3f, 0x36, 0x76, 0x00, 0xc2, 0xad, 0x91, 0x76, 0x3e, 0xab, 0xcb, 0x70, 0x10, - 0x66, 0x9f, 0x47, 0x01, 0xb6, 0xd6, 0x1f, 0xa8, 0xb8, 0xd3, 0x8f, 0xcf, 0xa3, 0x0b, 0x33, 0x56, - 0xd9, 0xd7, 0x7e, 0xf2, 0xc5, 0x8c, 0xe2, 0x34, 0x0b, 0xe3, 0x8e, 0xaa, 0xdd, 0x7f, 0x23, 0x7d, - 0xf0, 0x4e, 0x6d, 0x90, 0xf4, 0xb3, 0x7e, 0xa7, 0xdf, 0x4b, 0x8b, 0xef, 0x6a, 0x51, 0x1a, 0xa5, - 0xb5, 0x9e, 0xba, 0x52, 0xbd, 0xc9, 0x97, 0x5a, 0x2f, 0x8a, 0xbf, 0x98, 0x69, 0x16, 0x66, 0xca, - 0xec, 0x86, 0x59, 0x78, 0x16, 0xa6, 0xaa, 0xd6, 0x4b, 0x07, 0xb5, 0xac, 0x77, 0x95, 0x8e, 0xfe, - 0x93, 0xff, 0x8a, 0x19, 0xab, 0xe8, 0xe2, 0xf3, 0x59, 0x3f, 0x31, 0xc3, 0x2c, 0x4b, 0xa2, 0xb3, - 0x61, 0x36, 0x32, 0x60, 0xfc, 0x56, 0x5a, 0x7c, 0x57, 0xbb, 0xb5, 0xa5, 0xb0, 0x21, 0x1d, 0x9e, - 0xe5, 0x7f, 0xd3, 0xf8, 0x6b, 0x2d, 0xff, 0x87, 0x64, 0x67, 0x09, 0xb9, 0x1e, 0x27, 0xd8, 0xdb, - 0x8c, 0x11, 0x7c, 0xd4, 0x79, 0x38, 0xec, 0x65, 0xe6, 0xa5, 0xca, 0x92, 0xa8, 0x23, 0xde, 0xe1, - 0x0a, 0x1e, 0xf3, 0xd0, 0x74, 0xe1, 0x51, 0xed, 0x43, 0x14, 0x77, 0x8d, 0x9d, 0x95, 0x35, 0xe1, - 0x66, 0xee, 0xe5, 0x91, 0xcb, 0xd8, 0x59, 0x59, 0x15, 0x6e, 0x68, 0x2b, 0x51, 0xe7, 0xd1, 0x37, - 0x8c, 0x0c, 0x31, 0x05, 0x6d, 0xbf, 0x63, 0x8e, 0x02, 0x33, 0xc0, 0x68, 0xa1, 0xd1, 0xee, 0x0f, - 0x93, 0x8e, 0x82, 0x58, 0xde, 0xb1, 0x7b, 0xa9, 0xeb, 0xaf, 0xfd, 0x64, 0xe4, 0x61, 0xc6, 0x60, - 0x8c, 0x0c, 0x8c, 0xd2, 0xd2, 0x78, 0x17, 0xa6, 0x56, 0x72, 0x31, 0xbc, 0x54, 0x71, 0x66, 0xec, - 0xac, 0x64, 0xc9, 0x50, 0x81, 0x18, 0x7e, 0xc7, 0xea, 0x02, 0xd8, 0x64, 0xe6, 0x5a, 0x33, 0xf3, - 0x46, 0x94, 0x80, 0x50, 0xf2, 0x9c, 0xb1, 0xc2, 0x04, 0xaf, 0x69, 0x7e, 0x18, 0x9b, 0x0d, 0xe2, - 0xff, 0x18, 0x84, 0x06, 0x8e, 0xd8, 0x20, 0x12, 0x1c, 0x60, 0xa2, 0x83, 0x4a, 0x78, 0xe0, 0x89, - 0x0f, 0x3c, 0x01, 0xc2, 0x26, 0x42, 0x18, 0x84, 0x08, 0x84, 0x18, 0xc1, 0x11, 0xa4, 0xc2, 0x60, - 0x90, 0xb6, 0xcf, 0xcc, 0x44, 0x03, 0xd1, 0xfb, 0x99, 0x45, 0x9d, 0x56, 0xc1, 0xcc, 0x46, 0xa3, - 0x50, 0xc8, 0x54, 0x4a, 0x03, 0x4a, 0x85, 0x4e, 0xad, 0xb4, 0xa1, 0x58, 0xda, 0x50, 0x2d, 0x3d, - 0x28, 0x17, 0x16, 0xf5, 0x02, 0xa3, 0x60, 0x05, 0x44, 0xfc, 0xeb, 0x81, 0xc2, 0x8e, 0xf8, 0xc3, - 0x28, 0xce, 0xde, 0xae, 0x23, 0x06, 0xfc, 0x09, 0xbf, 0xd9, 0x02, 0x34, 0xdd, 0x0b, 0xe3, 0x0b, - 0x05, 0x7b, 0x7a, 0x02, 0xae, 0x0c, 0xcb, 0x38, 0x8c, 0x62, 0x58, 0x86, 0x00, 0x4e, 0xec, 0x1f, - 0x3c, 0x46, 0x7e, 0x86, 0x88, 0x06, 0xcf, 0xb1, 0x9f, 0x84, 0x9d, 0x2c, 0xea, 0xc7, 0x8d, 0xe8, - 0x22, 0xca, 0xd2, 0xd1, 0x03, 0x51, 0x1b, 0x5a, 0x85, 0x6b, 0x87, 0xdf, 0xe8, 0xda, 0xc2, 0x5c, - 0xbb, 0xbe, 0xbe, 0x5d, 0xdf, 0xde, 0xdc, 0x5a, 0xdf, 0xde, 0xa0, 0x8f, 0xb3, 0x20, 0x58, 0x2e, - 0xab, 0xb1, 0x24, 0xc6, 0x37, 0xdc, 0x4b, 0x58, 0xc6, 0x4c, 0x8a, 0x36, 0x06, 0x5d, 0xd8, 0xad, - 0xfd, 0x38, 0xf4, 0x83, 0xd1, 0x53, 0x84, 0x01, 0x69, 0x1c, 0x1f, 0xe5, 0x88, 0xd6, 0x12, 0x45, - 0x8d, 0x25, 0x8c, 0x16, 0x08, 0xd3, 0xbf, 0x69, 0x96, 0x0c, 0x3b, 0x59, 0x3c, 0x69, 0x44, 0x36, - 0xc7, 0xcb, 0xec, 0x4c, 0x9e, 0x30, 0x68, 0x4d, 0xd6, 0x36, 0x70, 0xd2, 0x28, 0x0d, 0xdc, 0xd1, - 0xa2, 0x06, 0x6e, 0x3a, 0x08, 0xfc, 0xde, 0x55, 0xfe, 0x56, 0x73, 0xb2, 0x3a, 0xd6, 0x74, 0xe5, - 0x82, 0xe9, 0x3b, 0x41, 0xf1, 0x77, 0xb4, 0xf3, 0xd5, 0x09, 0x7c, 0xd5, 0x18, 0x2f, 0xce, 0xe1, - 0x78, 0x6d, 0x28, 0x32, 0xd1, 0x2d, 0x2a, 0x19, 0x19, 0x42, 0x23, 0xfe, 0x56, 0x57, 0x32, 0xb2, - 0x16, 0x43, 0x4a, 0xb2, 0x4a, 0x29, 0xc9, 0x7c, 0x0c, 0xa5, 0x94, 0x64, 0xa1, 0x26, 0x53, 0x4a, - 0x52, 0x92, 0xe1, 0x94, 0x92, 0x90, 0x0d, 0xa0, 0xd4, 0x29, 0x30, 0xdb, 0xf3, 0x45, 0xc4, 0xed, - 0xa9, 0xf0, 0x3c, 0x51, 0xe7, 0x08, 0x11, 0x77, 0x2a, 0xcd, 0x00, 0xd8, 0x80, 0x37, 0x5a, 0x93, - 0xd2, 0xef, 0xcd, 0x9b, 0x71, 0x1b, 0xa5, 0x96, 0x33, 0x30, 0xd6, 0x01, 0xda, 0xd5, 0x01, 0xc3, - 0x51, 0x61, 0x9f, 0x66, 0x49, 0x18, 0xc5, 0xaa, 0x6b, 0xf6, 0xd2, 0x01, 0x4e, 0x51, 0xf0, 0xd0, - 0x74, 0x8a, 0xcd, 0x59, 0x21, 0xb0, 0x42, 0x60, 0x85, 0xc0, 0x0a, 0x81, 0x15, 0x02, 0x2b, 0x84, - 0x85, 0x7c, 0xe4, 0x14, 0x9b, 0x2f, 0x36, 0x3f, 0x50, 0x6c, 0x4e, 0x62, 0x83, 0x48, 0x70, 0x80, - 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, 0x08, 0x61, 0x10, 0x22, 0x10, - 0x62, 0x04, 0x47, 0x90, 0x0a, 0x83, 0x3b, 0xfd, 0x61, 0x0e, 0x5c, 0x50, 0xad, 0xf9, 0xd8, 0x7c, - 0x4a, 0xcd, 0x49, 0xa0, 0xf4, 0x22, 0x52, 0x1a, 0x10, 0x2a, 0x74, 0x62, 0xa5, 0x0d, 0xc1, 0xd2, - 0x86, 0x68, 0xe9, 0x41, 0xb8, 0xb0, 0x88, 0x17, 0x18, 0x01, 0x2b, 0x20, 0xa2, 0x87, 0xd4, 0x7c, - 0x6d, 0x13, 0x58, 0x6a, 0xbe, 0x49, 0xa9, 0x79, 0xc9, 0x2f, 0x4a, 0xcd, 0x49, 0xec, 0xe7, 0xf0, - 0x18, 0x94, 0x9a, 0x33, 0xfd, 0xce, 0xd3, 0xb5, 0x29, 0x35, 0x17, 0xe7, 0xda, 0x9b, 0x1b, 0x1b, - 0x6f, 0xa9, 0x32, 0x67, 0x2d, 0xb0, 0x64, 0x56, 0x53, 0x65, 0xbe, 0xf4, 0xe9, 0x09, 0x43, 0xfb, - 0x34, 0xb3, 0x2a, 0x04, 0xd0, 0x42, 0x69, 0x92, 0x3b, 0xd9, 0xef, 0xae, 0x12, 0xe7, 0xec, 0x77, - 0x57, 0xe7, 0xae, 0xec, 0x77, 0x0b, 0x7b, 0x10, 0xf6, 0xbb, 0xc9, 0x68, 0x7e, 0x02, 0x11, 0xfc, - 0x7e, 0x77, 0xd4, 0x55, 0x71, 0x16, 0x65, 0xd7, 0x18, 0x7a, 0xae, 0x59, 0x24, 0x67, 0x0d, 0xb0, - 0xaa, 0x36, 0x9c, 0xc9, 0xd2, 0xef, 0x86, 0x29, 0x70, 0xde, 0x2a, 0xae, 0xd3, 0x6e, 0x3b, 0xed, - 0xa0, 0x7d, 0xbc, 0xeb, 0xbb, 0x27, 0x81, 0xff, 0x67, 0xcb, 0x46, 0x4d, 0x5f, 0x79, 0xaf, 0x26, - 0x85, 0xdd, 0x8c, 0x58, 0x81, 0xde, 0x90, 0xb8, 0x87, 0xa8, 0x1f, 0x2f, 0x68, 0x1f, 0x83, 0xab, - 0x8d, 0x8c, 0x2e, 0x9d, 0x50, 0xa6, 0x07, 0xda, 0x7e, 0x8a, 0x3a, 0xeb, 0xc4, 0x72, 0x5c, 0x6b, - 0xd7, 0xb5, 0x83, 0x5d, 0xab, 0xd9, 0xf8, 0xaf, 0xd3, 0xf0, 0xdf, 0x19, 0xf0, 0x4f, 0x7c, 0xf3, - 0x3b, 0x61, 0x27, 0x1b, 0x76, 0x9e, 0xdd, 0x76, 0x1a, 0xc7, 0x96, 0x4b, 0xd4, 0x11, 0x75, 0x25, - 0x06, 0xbb, 0xc6, 0xfb, 0xa0, 0xed, 0x34, 0x08, 0x35, 0x42, 0x6d, 0xd1, 0x50, 0x73, 0x9d, 0xe6, - 0x87, 0xa0, 0xe5, 0x1d, 0xf9, 0xf6, 0x9e, 0xef, 0x1c, 0x35, 0xc7, 0xac, 0x8e, 0xb8, 0x23, 0xee, - 0xca, 0xc0, 0x5d, 0xc3, 0x76, 0xad, 0x3f, 0x89, 0x36, 0xa2, 0xad, 0x3c, 0xb4, 0x05, 0x27, 0x96, - 0xe7, 0x58, 0xa3, 0x50, 0x47, 0xdc, 0x11, 0x77, 0x8b, 0xc6, 0x9d, 0xd3, 0x3a, 0xd9, 0x0c, 0x9c, - 0xa6, 0x6f, 0x7b, 0xfb, 0xd6, 0x9e, 0x1d, 0x58, 0x8d, 0x86, 0x67, 0xb7, 0xdb, 0x44, 0x1e, 0x91, - 0xb7, 0x68, 0xe4, 0x15, 0xf5, 0x6a, 0xb0, 0x77, 0xd4, 0x6c, 0xfb, 0x9e, 0xe5, 0x34, 0x7d, 0x02, - 0x8f, 0xc0, 0x5b, 0x38, 0xf0, 0x0e, 0xad, 0x8f, 0x81, 0x67, 0xb7, 0x6d, 0xef, 0x84, 0xdd, 0x3a, - 0x62, 0xaf, 0x02, 0x9a, 0x67, 0xf9, 0xbe, 0xe7, 0xec, 0x1e, 0xfb, 0x36, 0xc3, 0x1d, 0x21, 0xb7, - 0x70, 0xc8, 0x1d, 0xfb, 0x8e, 0xeb, 0xfc, 0xcf, 0x6e, 0x30, 0xd0, 0x11, 0x75, 0xe5, 0xa1, 0xce, - 0xfe, 0xe8, 0xdb, 0xcd, 0x86, 0xdd, 0x08, 0xac, 0xc6, 0xa1, 0xd3, 0x0c, 0x0e, 0xbc, 0xa3, 0xe3, - 0x16, 0x71, 0x47, 0xdc, 0x2d, 0x1a, 0x77, 0x56, 0xe3, 0x7d, 0xe0, 0x5a, 0x4d, 0x6e, 0x4e, 0x10, - 0x6e, 0xa5, 0x24, 0xd7, 0x66, 0x51, 0xbc, 0xda, 0x8d, 0xc0, 0x6d, 0x33, 0xc6, 0x11, 0x74, 0x0b, - 0x07, 0x9d, 0xd3, 0x3a, 0xa9, 0xb3, 0x67, 0x47, 0xe4, 0x95, 0x8f, 0x3c, 0xdf, 0x0e, 0x1a, 0xf6, - 0xbe, 0x75, 0xec, 0xfa, 0xc1, 0xa1, 0xed, 0x7b, 0xce, 0x1e, 0x41, 0x47, 0xd0, 0x2d, 0x1a, 0x74, - 0xa3, 0xfa, 0xe1, 0xd0, 0xfa, 0xc8, 0x0d, 0x59, 0xa2, 0xae, 0x44, 0xd4, 0xe5, 0x68, 0x73, 0x8f, - 0x98, 0x57, 0x09, 0xb6, 0x12, 0x42, 0xdc, 0x34, 0xbc, 0xb1, 0x47, 0x47, 0xd4, 0x95, 0x58, 0xbc, - 0x8e, 0xb7, 0xc1, 0xd8, 0x1b, 0x26, 0xee, 0x4a, 0xae, 0x5f, 0x37, 0x83, 0xa6, 0xed, 0x1c, 0xbc, - 0xdb, 0x3d, 0xf2, 0x58, 0xbe, 0x12, 0x78, 0xa5, 0x72, 0x3a, 0x36, 0x86, 0x09, 0xb5, 0x52, 0x62, - 0x5c, 0x9d, 0x31, 0x8e, 0xc0, 0x2b, 0x1d, 0x78, 0x7a, 0xed, 0xb7, 0x42, 0x3f, 0xc1, 0x29, 0xcf, - 0xb3, 0xa4, 0x7b, 0xcf, 0xcb, 0xad, 0x75, 0x52, 0x17, 0x13, 0x5e, 0xd2, 0xe0, 0xa5, 0x93, 0x8a, - 0x98, 0xe8, 0x92, 0xc7, 0x49, 0xc0, 0xd5, 0xc2, 0x84, 0x94, 0xc8, 0x52, 0x5e, 0x1b, 0x55, 0x30, - 0xf1, 0x25, 0x12, 0x5f, 0xe0, 0x9b, 0xcd, 0x44, 0x95, 0x5c, 0x54, 0xe9, 0xa0, 0xf2, 0x25, 0xbe, - 0xa4, 0xe1, 0x4b, 0x37, 0x35, 0x2f, 0x11, 0x26, 0x0d, 0x61, 0x9a, 0xa9, 0x76, 0x09, 0x30, 0x69, - 0x00, 0xd3, 0x4f, 0x9d, 0x4b, 0x8c, 0x89, 0xa4, 0x61, 0x3a, 0xa8, 0x70, 0x09, 0x2d, 0x69, 0xd0, - 0xd2, 0x49, 0x6d, 0x4b, 0x74, 0x49, 0x43, 0x97, 0x5e, 0xaa, 0x5a, 0xe2, 0x4b, 0x1a, 0xbe, 0xb4, - 0x50, 0xcf, 0x12, 0x56, 0xe2, 0x92, 0xa2, 0x3e, 0x2a, 0x59, 0x82, 0x4b, 0x1a, 0xb8, 0x74, 0x53, - 0xc3, 0x12, 0x61, 0xd2, 0x10, 0xa6, 0x91, 0xea, 0x95, 0xe0, 0x92, 0x06, 0x2e, 0x9d, 0xd4, 0xad, - 0x44, 0x97, 0x34, 0x74, 0x69, 0xa0, 0x62, 0x25, 0xa8, 0xc4, 0x85, 0x2c, 0x8d, 0xd4, 0xaa, 0x44, - 0x97, 0xbc, 0x62, 0x51, 0x27, 0x55, 0x2a, 0xf1, 0x25, 0xb0, 0x5e, 0xd4, 0x49, 0x7d, 0x4a, 0x80, - 0x89, 0xe4, 0x5c, 0x6c, 0xa0, 0x12, 0x52, 0x73, 0x8d, 0x59, 0x75, 0xc6, 0x2c, 0x02, 0x6c, 0x61, - 0x00, 0xe3, 0x7e, 0x22, 0x61, 0x35, 0x07, 0x58, 0x79, 0x47, 0xc7, 0xbe, 0xed, 0x05, 0x7b, 0x56, - 0x8b, 0x77, 0xf1, 0x12, 0x6f, 0x95, 0xe2, 0xee, 0xee, 0x9f, 0x78, 0xee, 0x02, 0x21, 0x57, 0x0a, - 0xe4, 0x2c, 0xf7, 0xe0, 0xc8, 0x73, 0xfc, 0x77, 0x87, 0x3c, 0x7a, 0xa1, 0xda, 0x17, 0x8f, 0x5e, - 0xa0, 0x87, 0x33, 0x99, 0x10, 0x5a, 0x4c, 0x1a, 0x44, 0xd6, 0x72, 0x14, 0xf4, 0xad, 0x1f, 0x0b, - 0x7a, 0xd6, 0x5d, 0x44, 0x5b, 0xf9, 0xa8, 0x6b, 0x79, 0xf6, 0xbe, 0xf3, 0x31, 0xd8, 0x77, 0xad, - 0x03, 0x1e, 0x76, 0x47, 0xbc, 0x95, 0x85, 0x37, 0x5e, 0xf6, 0x44, 0xb4, 0x95, 0x80, 0xb6, 0x7c, - 0xe7, 0x78, 0x42, 0xe1, 0x88, 0x38, 0x22, 0x6e, 0xf1, 0x88, 0xf3, 0xad, 0x83, 0xcd, 0x3a, 0x81, - 0x46, 0xa0, 0x95, 0x10, 0xda, 0xea, 0x0c, 0x6d, 0x44, 0x5c, 0xa9, 0xa1, 0x8d, 0x4d, 0xf2, 0x6a, - 0x5f, 0x6c, 0x92, 0xd3, 0xad, 0x59, 0xf9, 0x13, 0x57, 0xac, 0xf0, 0x89, 0xaa, 0xe5, 0x42, 0x95, - 0x2e, 0x95, 0x3c, 0x91, 0xc5, 0x8a, 0x9d, 0x80, 0xd2, 0x3d, 0x54, 0xd5, 0x19, 0xaa, 0x88, 0x2c, - 0x56, 0xe0, 0x1a, 0x54, 0xde, 0x78, 0x15, 0x37, 0xd6, 0x3a, 0xe3, 0x58, 0x8b, 0x61, 0x29, 0x48, - 0xd0, 0x36, 0xac, 0x38, 0xee, 0x67, 0x61, 0x16, 0xf5, 0x63, 0x63, 0x07, 0x28, 0x5c, 0x1b, 0x69, - 0xe7, 0xb3, 0xba, 0x0c, 0x07, 0x61, 0xf6, 0x79, 0x14, 0xa0, 0x6b, 0xfd, 0x81, 0x8a, 0x3b, 0xfd, - 0xf8, 0x3c, 0xba, 0x30, 0x63, 0x95, 0x7d, 0xed, 0x27, 0x5f, 0xcc, 0x28, 0x4e, 0xb3, 0x30, 0xee, - 0xa8, 0xda, 0xfd, 0x37, 0xd2, 0x07, 0xef, 0xd4, 0x06, 0x49, 0x3f, 0xeb, 0x77, 0xfa, 0xbd, 0xb4, - 0xf8, 0xae, 0x16, 0xa5, 0x51, 0x5a, 0xeb, 0xa9, 0x2b, 0xd5, 0x9b, 0x7c, 0xa9, 0xf5, 0xa2, 0xf8, - 0x8b, 0x99, 0x66, 0x61, 0xa6, 0xcc, 0x6e, 0x98, 0x85, 0x67, 0x61, 0xaa, 0x6a, 0xbd, 0x74, 0x50, - 0xcb, 0x7a, 0x57, 0xe9, 0xe8, 0x3f, 0xf9, 0xaf, 0x98, 0xb1, 0x8a, 0x2e, 0x3e, 0x9f, 0xf5, 0x13, - 0x33, 0xcc, 0xb2, 0x24, 0x3a, 0x1b, 0x66, 0x23, 0x03, 0xc6, 0x6f, 0xa5, 0xc5, 0x77, 0xb5, 0x5b, - 0x5b, 0x0a, 0x1b, 0xd2, 0xe1, 0x59, 0xfe, 0x37, 0x8d, 0xbf, 0xd6, 0x86, 0xa3, 0xe7, 0x49, 0xb3, - 0x24, 0x8c, 0x62, 0xd5, 0x35, 0x47, 0xff, 0x4e, 0xfe, 0x4f, 0x63, 0xe4, 0x1d, 0xf9, 0x3e, 0x2a, - 0xdb, 0x42, 0xe1, 0xd1, 0x03, 0x2d, 0x6a, 0x2c, 0x61, 0xb4, 0x00, 0x98, 0x5c, 0x34, 0xd2, 0x2c, - 0x19, 0x76, 0xb2, 0x78, 0x42, 0xb2, 0x9b, 0xe3, 0x65, 0x76, 0x26, 0x4f, 0x18, 0xb4, 0x26, 0x6b, - 0x1b, 0x38, 0x69, 0x94, 0x06, 0xee, 0x68, 0x51, 0x03, 0x37, 0x1d, 0x04, 0x7e, 0xef, 0x2a, 0x7f, - 0xab, 0x39, 0x59, 0x1d, 0x6b, 0xba, 0x72, 0xc1, 0xf4, 0x9d, 0xa0, 0xf8, 0x3b, 0xda, 0xf9, 0xea, - 0x04, 0xc7, 0x77, 0x57, 0xc7, 0x4d, 0x07, 0xb2, 0x83, 0xa8, 0xdc, 0xd0, 0x24, 0x38, 0x2c, 0x19, - 0xc3, 0x38, 0x51, 0xa9, 0x4a, 0xae, 0x54, 0xd7, 0x3c, 0x0b, 0xe3, 0xee, 0xd7, 0xa8, 0x9b, 0x3b, - 0xbb, 0xec, 0xe0, 0x54, 0x54, 0x98, 0x8f, 0x5a, 0x2f, 0x3c, 0x09, 0x7c, 0x88, 0xe2, 0xae, 0xb1, - 0xb3, 0xb2, 0x26, 0xdc, 0xcc, 0xbd, 0x3c, 0xd0, 0x1b, 0x3b, 0x2b, 0xab, 0xc2, 0x0d, 0x6d, 0x25, - 0xea, 0x3c, 0xfa, 0x86, 0x91, 0x50, 0xa7, 0xb8, 0xed, 0x77, 0xcc, 0x51, 0x1e, 0x43, 0xc8, 0x36, - 0xed, 0xfe, 0x30, 0xe9, 0x28, 0x98, 0x2a, 0xc7, 0xf8, 0xa0, 0xae, 0xbf, 0xf6, 0x93, 0x91, 0x87, - 0x19, 0x83, 0x31, 0x32, 0x40, 0x4a, 0xca, 0x77, 0x61, 0x6a, 0x25, 0x17, 0xc3, 0x4b, 0x15, 0x67, - 0xc6, 0xce, 0x4a, 0x96, 0x0c, 0x15, 0x4a, 0x2d, 0x7c, 0x6b, 0x75, 0x01, 0x6c, 0x16, 0x32, 0x5a, - 0x17, 0x32, 0x8d, 0x28, 0x01, 0xa9, 0x60, 0x54, 0x36, 0x1c, 0x98, 0x83, 0x24, 0xea, 0x27, 0x51, - 0x76, 0x8d, 0x13, 0xc5, 0xa6, 0x89, 0xe2, 0x9e, 0xfd, 0x20, 0x11, 0x01, 0x83, 0xe2, 0xc0, 0x51, - 0x1d, 0x44, 0xca, 0x03, 0x4c, 0x7d, 0x50, 0x29, 0x10, 0x3c, 0x15, 0x82, 0xa7, 0x44, 0xd8, 0xd4, - 0x08, 0x83, 0x22, 0x81, 0x50, 0x25, 0x38, 0xca, 0x54, 0x18, 0x0c, 0x47, 0x9a, 0x1e, 0xa4, 0x1a, - 0x30, 0xda, 0x74, 0x9f, 0x3e, 0xad, 0x82, 0x99, 0x8d, 0x46, 0xa3, 0x90, 0xe9, 0x94, 0x06, 0xb4, - 0x0a, 0x9d, 0x5e, 0x69, 0x43, 0xb3, 0xb4, 0xa1, 0x5b, 0x7a, 0xd0, 0x2e, 0x2c, 0xfa, 0x05, 0x46, - 0xc3, 0x0a, 0x88, 0xf8, 0xd7, 0x03, 0x85, 0x1d, 0xf1, 0x7b, 0x2a, 0x3c, 0x4f, 0xd4, 0x39, 0x62, - 0xc4, 0x9f, 0xf6, 0x87, 0xb6, 0x00, 0x6d, 0x6f, 0x4d, 0xa6, 0x21, 0xde, 0xbc, 0x19, 0x4f, 0x16, - 0xd5, 0x0a, 0x96, 0xc9, 0xc1, 0xc5, 0x65, 0x8f, 0x2c, 0xc6, 0x78, 0xd6, 0x0c, 0xb6, 0x60, 0x1a, - 0x9b, 0x8f, 0x59, 0x2d, 0xad, 0xb1, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, 0x25, - 0x56, 0x4b, 0xe4, 0x34, 0xf3, 0x85, 0x08, 0x5a, 0xf3, 0xba, 0x30, 0x1c, 0x67, 0xa6, 0xf1, 0xa7, - 0x39, 0x0b, 0x65, 0xc0, 0xf1, 0x67, 0x44, 0x6d, 0x15, 0xd4, 0x7c, 0x54, 0xc2, 0xa6, 0x03, 0x71, - 0xd3, 0x88, 0xc0, 0xe9, 0x42, 0xe4, 0xb4, 0x23, 0x74, 0xda, 0x11, 0x3b, 0xbd, 0x08, 0x1e, 0x26, - 0xd1, 0x03, 0x25, 0x7c, 0x05, 0x74, 0x60, 0xdb, 0xe4, 0x0f, 0x32, 0x46, 0xa4, 0x94, 0x3a, 0xef, - 0xf5, 0xc3, 0xec, 0xed, 0x3a, 0x72, 0xd6, 0x98, 0x90, 0xa8, 0x6d, 0xe0, 0x47, 0x70, 0x55, 0x7c, - 0x91, 0x13, 0x72, 0xec, 0xd3, 0xf5, 0xf1, 0x8f, 0xcb, 0x34, 0x0e, 0xa3, 0x18, 0x9e, 0x7f, 0x68, - 0x52, 0x5e, 0x3c, 0x78, 0x9c, 0xfc, 0x0e, 0x0a, 0x63, 0x67, 0xa5, 0xae, 0xc9, 0xf3, 0xec, 0x27, - 0x61, 0x27, 0x8b, 0xfa, 0x71, 0x23, 0xba, 0x88, 0xb2, 0x74, 0xf4, 0x41, 0xf1, 0xcc, 0x5f, 0x09, - 0x21, 0x20, 0xfc, 0xc6, 0x10, 0xc0, 0x10, 0xc0, 0x10, 0xb0, 0x4c, 0xd5, 0x08, 0xbe, 0xf5, 0x98, - 0x27, 0x49, 0xe3, 0xad, 0x37, 0x60, 0x8a, 0xc3, 0x1d, 0x5c, 0x7f, 0x50, 0xb3, 0x82, 0x0e, 0xb0, - 0x6b, 0x92, 0x8f, 0xd9, 0xf1, 0x97, 0xe4, 0x0b, 0xec, 0xf8, 0xcb, 0x71, 0x6b, 0x76, 0xfc, 0x85, - 0x3f, 0x10, 0x3b, 0xfe, 0x64, 0x4e, 0xcf, 0x84, 0x8e, 0x3e, 0x1d, 0xff, 0x61, 0x14, 0x67, 0x7f, - 0x68, 0xd0, 0xeb, 0xdf, 0x00, 0x7e, 0x04, 0x2f, 0x8c, 0x2f, 0x14, 0x5b, 0xfd, 0xd5, 0x7f, 0x10, - 0x6c, 0xf5, 0xcb, 0x7d, 0x9c, 0x69, 0x9f, 0x6f, 0x95, 0x7d, 0x3e, 0x66, 0xf3, 0x05, 0x86, 0x00, - 0xb6, 0xfa, 0xc5, 0x87, 0x80, 0x2d, 0x86, 0x00, 0x96, 0x21, 0xb4, 0xfe, 0xee, 0x8b, 0xad, 0x7e, - 0x5a, 0x0c, 0x9f, 0x90, 0x51, 0x2f, 0x8c, 0x28, 0xec, 0x5f, 0x82, 0xa3, 0xe0, 0x1f, 0x1e, 0x25, - 0x5d, 0xfb, 0xf1, 0xf8, 0x45, 0xa4, 0xab, 0x24, 0xf0, 0xbc, 0x9a, 0xc7, 0x8d, 0xcd, 0x95, 0x1f, - 0xab, 0x6b, 0xc0, 0x1d, 0x44, 0xc3, 0x8d, 0xd2, 0xcc, 0xca, 0x32, 0xb0, 0xa3, 0xd2, 0x0e, 0xa3, - 0xd8, 0xee, 0xa9, 0x4b, 0x15, 0xe7, 0x54, 0x37, 0x1e, 0xf6, 0x7a, 0x40, 0x67, 0x16, 0x1c, 0x86, - 0xdf, 0x70, 0x8d, 0x3f, 0x4a, 0xba, 0x2a, 0x51, 0xdd, 0xdd, 0xeb, 0x89, 0xe9, 0x8c, 0x21, 0xe4, - 0x2c, 0xe4, 0x2a, 0x58, 0x23, 0x23, 0xe5, 0x5d, 0x68, 0xd3, 0x1e, 0x2d, 0x51, 0x0b, 0xea, 0xbc, - 0x1e, 0x5e, 0x09, 0xa6, 0x75, 0xac, 0xe5, 0x95, 0x60, 0x08, 0xb1, 0x95, 0x17, 0x5f, 0x69, 0xe7, - 0x7c, 0xc6, 0x30, 0x8b, 0x7a, 0xd1, 0xff, 0x81, 0x5e, 0x7b, 0xf5, 0xd0, 0x76, 0x5e, 0x7a, 0x35, - 0x0f, 0x33, 0x79, 0xe9, 0xd5, 0x02, 0x51, 0xcb, 0x4b, 0xaf, 0x16, 0xd9, 0xed, 0xe1, 0xa5, 0x57, - 0xe5, 0xf2, 0x36, 0x5e, 0x7a, 0xb5, 0x6c, 0x54, 0x1d, 0xe7, 0xd2, 0x2b, 0xa8, 0x53, 0x48, 0x21, - 0x4f, 0x1f, 0xe5, 0x15, 0x57, 0x24, 0x38, 0x1a, 0x10, 0x1d, 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, - 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, 0x20, 0xc4, 0x08, 0x8e, 0x20, 0x15, 0x06, 0xe3, 0x9e, - 0x0e, 0x0a, 0x7f, 0x2a, 0x28, 0x2f, 0xb9, 0x22, 0xa1, 0x5a, 0x02, 0x62, 0x85, 0x4e, 0xb0, 0xb4, - 0x21, 0x5a, 0xda, 0x10, 0x2e, 0x3d, 0x88, 0x17, 0x16, 0x01, 0x03, 0x23, 0x62, 0x05, 0x44, 0xf0, - 0x2f, 0xb9, 0xc2, 0x3e, 0xb5, 0x13, 0xf8, 0xb4, 0x4e, 0xf4, 0x53, 0x3a, 0x81, 0xf5, 0xeb, 0x3a, - 0x48, 0x75, 0x35, 0xd1, 0xe7, 0xe9, 0x72, 0x04, 0x9f, 0x4e, 0x7a, 0x3c, 0x60, 0x29, 0xae, 0x16, - 0x12, 0x5c, 0xba, 0x36, 0x5d, 0x9b, 0xd5, 0x00, 0xb4, 0xd5, 0xa7, 0x94, 0xb0, 0x2d, 0x7b, 0x6a, - 0x32, 0x32, 0xc4, 0xda, 0xb0, 0xa8, 0x0b, 0x73, 0xeb, 0xd9, 0xf1, 0x2e, 0xc3, 0x6c, 0x76, 0xbc, - 0x2b, 0xc4, 0x39, 0x3b, 0xde, 0xd5, 0xb9, 0x2b, 0x3b, 0xde, 0xc2, 0x1e, 0x84, 0x1d, 0x6f, 0x32, - 0x9a, 0x9f, 0x40, 0x44, 0x83, 0x8e, 0x77, 0x57, 0xc5, 0x59, 0x94, 0x5d, 0x27, 0xea, 0x1c, 0xb8, - 0xe3, 0xbd, 0x06, 0x78, 0x68, 0xa5, 0xe1, 0x4c, 0x96, 0x7e, 0x37, 0x4c, 0x15, 0xfe, 0xe1, 0xf1, - 0x4e, 0xdb, 0x69, 0x07, 0xed, 0xe3, 0x5d, 0xdf, 0x3d, 0x09, 0xfc, 0x3f, 0x5b, 0x36, 0x6a, 0xfa, - 0xca, 0xfb, 0x34, 0x29, 0xf4, 0x19, 0xa2, 0xe0, 0x0d, 0xbf, 0x5b, 0x44, 0x05, 0x9e, 0x6d, 0xed, - 0xbd, 0xb3, 0x76, 0x1d, 0xd7, 0xf1, 0xff, 0x9c, 0x80, 0xab, 0x8d, 0x8c, 0x2e, 0x9d, 0x50, 0xa6, - 0x07, 0xda, 0x7e, 0x8a, 0x3a, 0xeb, 0xc4, 0x72, 0x5c, 0x6b, 0xd7, 0xb5, 0x83, 0x5d, 0xab, 0xd9, - 0xf8, 0xaf, 0xd3, 0xf0, 0xdf, 0x19, 0x3c, 0x5f, 0x94, 0xb0, 0x5b, 0x30, 0xec, 0x3c, 0xbb, 0xed, - 0x34, 0x8e, 0x2d, 0x97, 0xa8, 0x23, 0xea, 0x4a, 0x0c, 0x76, 0x8d, 0xf7, 0x41, 0xdb, 0x69, 0x10, - 0x6a, 0x84, 0xda, 0xa2, 0xa1, 0xe6, 0x3a, 0xcd, 0x0f, 0x41, 0xcb, 0x3b, 0xf2, 0xed, 0x3d, 0xdf, - 0x39, 0x6a, 0x8e, 0x59, 0x1d, 0x71, 0x47, 0xdc, 0x95, 0x81, 0xbb, 0x86, 0xed, 0x5a, 0x7f, 0x12, - 0x6d, 0x44, 0x5b, 0x79, 0x68, 0x0b, 0x4e, 0x2c, 0xcf, 0xb1, 0x46, 0xa1, 0x8e, 0xb8, 0x23, 0xee, - 0x16, 0x8d, 0x3b, 0xa7, 0x75, 0xb2, 0x19, 0x38, 0x4d, 0xdf, 0xf6, 0xf6, 0xad, 0x3d, 0x3b, 0xb0, - 0x1a, 0x0d, 0xcf, 0x6e, 0xb7, 0x89, 0x3c, 0x22, 0x6f, 0xd1, 0xc8, 0x2b, 0xea, 0xd5, 0x60, 0xef, - 0xa8, 0xd9, 0xf6, 0x3d, 0xcb, 0x69, 0xfa, 0x04, 0x1e, 0x81, 0xb7, 0x70, 0xe0, 0x1d, 0x5a, 0x1f, - 0x03, 0xcf, 0x6e, 0xdb, 0xde, 0x09, 0xbb, 0x75, 0xc4, 0x5e, 0x05, 0x34, 0xcf, 0xf2, 0x7d, 0xcf, - 0xd9, 0x3d, 0xf6, 0x6d, 0x86, 0x3b, 0x42, 0x6e, 0xe1, 0x90, 0x3b, 0xf6, 0x1d, 0xd7, 0xf9, 0x9f, - 0xdd, 0x60, 0xa0, 0x23, 0xea, 0xca, 0x43, 0x9d, 0xfd, 0xd1, 0xb7, 0x9b, 0x0d, 0xbb, 0x11, 0x58, - 0x8d, 0x43, 0xa7, 0x19, 0x1c, 0x78, 0x47, 0xc7, 0x2d, 0xe2, 0x8e, 0xb8, 0x5b, 0x34, 0xee, 0xac, - 0xc6, 0xfb, 0xc0, 0xb5, 0x9a, 0xdc, 0x9c, 0x20, 0xdc, 0x4a, 0x49, 0xae, 0xcd, 0xa2, 0x78, 0xb5, - 0x1b, 0x81, 0xdb, 0x66, 0x8c, 0x23, 0xe8, 0x16, 0x0e, 0x3a, 0xa7, 0x75, 0x52, 0x67, 0xcf, 0x8e, - 0xc8, 0x2b, 0x1f, 0x79, 0xbe, 0x1d, 0x34, 0xec, 0x7d, 0xeb, 0xd8, 0xf5, 0x83, 0x43, 0xdb, 0xf7, - 0x9c, 0x3d, 0x82, 0x8e, 0xa0, 0x5b, 0x34, 0xe8, 0x46, 0xf5, 0xc3, 0xa1, 0xf5, 0x91, 0x1b, 0xb2, - 0x44, 0x5d, 0x89, 0xa8, 0xcb, 0xd1, 0xe6, 0x1e, 0x31, 0xaf, 0x12, 0x6c, 0x25, 0x84, 0xb8, 0x69, - 0x78, 0x63, 0x8f, 0x8e, 0xa8, 0x2b, 0xb1, 0x78, 0x1d, 0x6f, 0x83, 0xb1, 0x37, 0x4c, 0xdc, 0x95, - 0x5c, 0xbf, 0x6e, 0x06, 0x4d, 0xdb, 0x39, 0x78, 0xb7, 0x7b, 0xe4, 0xb1, 0x7c, 0x25, 0xf0, 0x4a, - 0xe5, 0x74, 0x6c, 0x0c, 0x13, 0x6a, 0xa5, 0xc4, 0xb8, 0x3a, 0x63, 0x1c, 0x81, 0x57, 0x3a, 0xf0, - 0xf4, 0xda, 0x6f, 0x85, 0x7e, 0x82, 0x53, 0x9e, 0x65, 0x49, 0xf7, 0x9e, 0x97, 0x5b, 0xeb, 0xa4, - 0x2e, 0x26, 0xbc, 0xa4, 0xc1, 0x4b, 0x27, 0x15, 0x31, 0xd1, 0x25, 0x8f, 0x93, 0x80, 0xab, 0x85, - 0x09, 0x29, 0x91, 0xa5, 0xbc, 0x36, 0xaa, 0x60, 0xe2, 0x4b, 0x24, 0xbe, 0xc0, 0x37, 0x9b, 0x89, - 0x2a, 0xb9, 0xa8, 0xd2, 0x41, 0xe5, 0x4b, 0x7c, 0x49, 0xc3, 0x97, 0x6e, 0x6a, 0x5e, 0x22, 0x4c, - 0x1a, 0xc2, 0x34, 0x53, 0xed, 0x12, 0x60, 0xd2, 0x00, 0xa6, 0x9f, 0x3a, 0x97, 0x18, 0x13, 0x49, - 0xc3, 0x74, 0x50, 0xe1, 0x12, 0x5a, 0xd2, 0xa0, 0xa5, 0x93, 0xda, 0x96, 0xe8, 0x92, 0x86, 0x2e, - 0xbd, 0x54, 0xb5, 0xc4, 0x97, 0x34, 0x7c, 0x69, 0xa1, 0x9e, 0x25, 0xac, 0xc4, 0x25, 0x45, 0x7d, - 0x54, 0xb2, 0x04, 0x97, 0x34, 0x70, 0xe9, 0xa6, 0x86, 0x25, 0xc2, 0xa4, 0x21, 0x4c, 0x23, 0xd5, - 0x2b, 0xc1, 0x25, 0x0d, 0x5c, 0x3a, 0xa9, 0x5b, 0x89, 0x2e, 0x69, 0xe8, 0xd2, 0x40, 0xc5, 0x4a, - 0x50, 0x89, 0x0b, 0x59, 0x1a, 0xa9, 0x55, 0x89, 0x2e, 0x79, 0xc5, 0xa2, 0x4e, 0xaa, 0x54, 0xe2, - 0x4b, 0x60, 0xbd, 0xa8, 0x93, 0xfa, 0x94, 0x00, 0x13, 0xc9, 0xb9, 0xd8, 0x40, 0x25, 0xa4, 0xe6, - 0x1a, 0xb3, 0xea, 0x8c, 0x59, 0x04, 0xd8, 0xc2, 0x00, 0xc6, 0xfd, 0x44, 0xc2, 0x6a, 0x0e, 0xb0, - 0xf2, 0x8e, 0x8e, 0x7d, 0xdb, 0x0b, 0xf6, 0xac, 0x16, 0xef, 0xe2, 0x25, 0xde, 0x2a, 0xc5, 0xdd, - 0xdd, 0x3f, 0xf1, 0xdc, 0x05, 0x42, 0xae, 0x14, 0xc8, 0x59, 0xee, 0xc1, 0x91, 0xe7, 0xf8, 0xef, - 0x0e, 0x79, 0xf4, 0x42, 0xb5, 0x2f, 0x1e, 0xbd, 0x40, 0x0f, 0x67, 0x32, 0x21, 0xb4, 0x98, 0x34, - 0x88, 0xac, 0xe5, 0x28, 0xe8, 0x5b, 0x3f, 0x16, 0xf4, 0xac, 0xbb, 0x88, 0xb6, 0xf2, 0x51, 0xd7, - 0xf2, 0xec, 0x7d, 0xe7, 0x63, 0xb0, 0xef, 0x5a, 0x07, 0x3c, 0xec, 0x8e, 0x78, 0x2b, 0x0b, 0x6f, - 0xbc, 0xec, 0x89, 0x68, 0x2b, 0x01, 0x6d, 0xf9, 0xce, 0xf1, 0x84, 0xc2, 0x11, 0x71, 0x44, 0xdc, - 0xe2, 0x11, 0xe7, 0x5b, 0x07, 0x9b, 0x75, 0x02, 0x8d, 0x40, 0x2b, 0x21, 0xb4, 0xd5, 0x19, 0xda, - 0x88, 0xb8, 0x52, 0x43, 0x1b, 0x9b, 0xe4, 0xd5, 0xbe, 0xd8, 0x24, 0xa7, 0x5b, 0xb3, 0xf2, 0x27, - 0xae, 0x58, 0xe1, 0x13, 0x55, 0xcb, 0x85, 0x2a, 0x5d, 0x2a, 0x79, 0x22, 0x8b, 0x15, 0x3b, 0x01, - 0xa5, 0x7b, 0xa8, 0xaa, 0x33, 0x54, 0x11, 0x59, 0xac, 0xc0, 0x35, 0xa8, 0xbc, 0xf1, 0x2a, 0x6e, - 0xac, 0x75, 0xc6, 0xb1, 0x16, 0xc3, 0x52, 0x90, 0xa0, 0x6d, 0x58, 0x71, 0xdc, 0xcf, 0xc2, 0x2c, - 0xea, 0xc7, 0xc6, 0x0e, 0x50, 0xb8, 0x36, 0xd2, 0xce, 0x67, 0x75, 0x19, 0x0e, 0xc2, 0xec, 0xf3, - 0x28, 0x40, 0xd7, 0xfa, 0x03, 0x15, 0x77, 0xfa, 0xf1, 0x79, 0x74, 0x61, 0xc6, 0x2a, 0xfb, 0xda, - 0x4f, 0xbe, 0x98, 0x51, 0x9c, 0x66, 0x61, 0xdc, 0x51, 0xb5, 0xfb, 0x6f, 0xa4, 0x0f, 0xde, 0xa9, - 0x0d, 0x92, 0x7e, 0xd6, 0xef, 0xf4, 0x7b, 0x69, 0xf1, 0x5d, 0x2d, 0x4a, 0xa3, 0xb4, 0xd6, 0x53, - 0x57, 0xaa, 0x37, 0xf9, 0x52, 0xeb, 0x45, 0xf1, 0x17, 0x33, 0xcd, 0xc2, 0x4c, 0x99, 0xdd, 0x30, - 0x0b, 0xcf, 0xc2, 0x54, 0xd5, 0x7a, 0xe9, 0xa0, 0x96, 0xf5, 0xae, 0xd2, 0xd1, 0x7f, 0xf2, 0x5f, - 0x31, 0x63, 0x15, 0x5d, 0x7c, 0x3e, 0xeb, 0x27, 0x66, 0x98, 0x65, 0x49, 0x74, 0x36, 0xcc, 0x46, - 0x06, 0x8c, 0xdf, 0x4a, 0x8b, 0xef, 0x6a, 0xb7, 0xb6, 0x14, 0x36, 0xa4, 0xc3, 0xb3, 0xfc, 0x6f, - 0x1a, 0x7f, 0xad, 0x0d, 0xb3, 0xa8, 0x17, 0xfd, 0x9f, 0xea, 0x9a, 0x67, 0x61, 0xdc, 0xfd, 0x1a, - 0x75, 0xb3, 0xcf, 0xb5, 0xfc, 0xdf, 0xc6, 0x48, 0x3c, 0xf2, 0x9d, 0x54, 0xb6, 0x85, 0xc2, 0xc3, - 0x07, 0x5a, 0xd8, 0x58, 0xc6, 0x70, 0x01, 0x30, 0xbb, 0x68, 0xa4, 0x59, 0x32, 0xec, 0x64, 0xf1, - 0x84, 0x66, 0x37, 0xc7, 0xeb, 0xec, 0x4c, 0x1e, 0x31, 0x68, 0x4d, 0x16, 0x37, 0x70, 0xd2, 0x28, - 0x0d, 0xdc, 0xd1, 0xaa, 0x06, 0x6e, 0x3a, 0x08, 0xfc, 0xde, 0x55, 0xfe, 0x56, 0x73, 0xb2, 0x3c, - 0xd6, 0x74, 0xe9, 0x82, 0xe9, 0x3b, 0x41, 0xf1, 0x77, 0xb4, 0xf3, 0xe5, 0x09, 0x8e, 0x27, 0xcb, - 0xb3, 0x5b, 0xac, 0xce, 0x6f, 0x0c, 0x4e, 0xfa, 0x58, 0x26, 0x34, 0x5c, 0x1a, 0x1f, 0xd4, 0xf5, - 0x08, 0xd8, 0xd9, 0xf5, 0x40, 0x09, 0x75, 0x47, 0xc3, 0x8d, 0xd2, 0x6c, 0xe4, 0x40, 0xa2, 0xe3, - 0xb8, 0x71, 0x18, 0xc5, 0x76, 0x4f, 0x5d, 0xaa, 0x38, 0x4b, 0x8d, 0x9d, 0x95, 0x78, 0xd8, 0xeb, - 0xfd, 0x2e, 0xd8, 0xd8, 0xf0, 0x1b, 0x8e, 0xb1, 0x47, 0x49, 0x57, 0x25, 0xaa, 0xbb, 0x7b, 0x3d, - 0x31, 0x95, 0xfe, 0xad, 0x1f, 0x0d, 0xd2, 0x9e, 0xfe, 0x08, 0xe6, 0x3a, 0xa5, 0x71, 0x1c, 0x99, - 0x8c, 0x46, 0x1e, 0x5f, 0x90, 0x65, 0x91, 0xb0, 0xc8, 0x26, 0x3d, 0xa2, 0xe9, 0x1b, 0xc9, 0x64, - 0xb9, 0xaf, 0x1c, 0x27, 0x11, 0xe4, 0x20, 0xc6, 0x30, 0xee, 0xaa, 0xf3, 0x28, 0x56, 0x5d, 0x73, - 0xfa, 0xa1, 0x49, 0xf3, 0x91, 0x62, 0xcb, 0xea, 0xa1, 0xa9, 0xc2, 0x02, 0xcd, 0x87, 0x28, 0xee, - 0x1a, 0x3b, 0x2b, 0x6b, 0xc2, 0xcc, 0xda, 0xcb, 0x83, 0x89, 0xb1, 0xb3, 0xb2, 0x2a, 0xcc, 0xb0, - 0x56, 0xa2, 0xce, 0xa3, 0x6f, 0x32, 0x83, 0xf2, 0x14, 0x74, 0xfd, 0x8e, 0x39, 0x8a, 0x85, 0x02, - 0xd9, 0x98, 0xd1, 0xee, 0x0f, 0x93, 0x8e, 0x12, 0xcb, 0xd2, 0x8d, 0x0f, 0xea, 0xfa, 0x6b, 0x3f, - 0x19, 0x79, 0x84, 0x31, 0x18, 0x7f, 0xd2, 0x42, 0x4b, 0x9e, 0x77, 0x61, 0x6a, 0x25, 0x17, 0xc3, - 0x51, 0x75, 0x6b, 0xec, 0xac, 0x64, 0xc9, 0x50, 0x49, 0xad, 0xcd, 0x6e, 0xad, 0x2c, 0x80, 0x49, - 0x32, 0x0a, 0x45, 0x46, 0x1b, 0x91, 0xcc, 0xb6, 0xd4, 0x83, 0xec, 0x2a, 0x37, 0xae, 0xcc, 0xe2, - 0x03, 0x52, 0xc3, 0x8b, 0x4c, 0x5a, 0x20, 0x9e, 0x1e, 0x20, 0xd0, 0x04, 0x20, 0xba, 0x80, 0x42, - 0x1b, 0xe0, 0xe8, 0x03, 0x1c, 0x8d, 0xc0, 0xa2, 0x13, 0x32, 0x69, 0x85, 0x50, 0x7a, 0x21, 0x9e, - 0x66, 0x14, 0x06, 0x8e, 0x07, 0x7f, 0xc4, 0x07, 0xa1, 0x69, 0x5c, 0x1f, 0x9b, 0x2b, 0xdc, 0x9f, - 0x65, 0x13, 0x0d, 0x18, 0xc2, 0x81, 0x44, 0x3c, 0x00, 0x09, 0x08, 0x1a, 0x11, 0x81, 0x25, 0x24, - 0xb0, 0xc4, 0x04, 0x93, 0xa0, 0xc8, 0x26, 0x2a, 0xc2, 0x09, 0x0b, 0x0c, 0x71, 0x29, 0x0c, 0xed, - 0xa9, 0xf8, 0x22, 0xdf, 0xb1, 0x03, 0x89, 0x5e, 0xd3, 0x04, 0x31, 0xb1, 0x1b, 0x24, 0x02, 0x4c, - 0x28, 0xcd, 0x2a, 0x88, 0xb9, 0x28, 0xd4, 0x06, 0x91, 0xe2, 0x00, 0x53, 0x1d, 0x54, 0xca, 0x03, - 0x4f, 0x7d, 0xe0, 0x29, 0x10, 0x36, 0x15, 0xc2, 0xa0, 0x44, 0x20, 0xd4, 0xa8, 0x80, 0x82, 0x7f, - 0x3d, 0x50, 0x98, 0x11, 0x7b, 0x18, 0xc5, 0xd9, 0x1f, 0x48, 0xf1, 0x7a, 0x42, 0x3f, 0x36, 0x80, - 0x4c, 0xf6, 0xc2, 0xf8, 0x42, 0xc1, 0x1d, 0x8f, 0x8d, 0xa7, 0xaa, 0x37, 0x0e, 0xa3, 0x18, 0x2e, - 0x91, 0x83, 0xf2, 0xea, 0x07, 0xe6, 0xe7, 0x87, 0xc0, 0x03, 0xdb, 0xbf, 0x9f, 0x84, 0x9d, 0x2c, - 0xea, 0xc7, 0x8d, 0xe8, 0x22, 0xca, 0x15, 0x15, 0xab, 0x78, 0x67, 0x01, 0xfc, 0x0e, 0xe8, 0xb2, - 0xe1, 0x37, 0xba, 0x6c, 0xc5, 0x2e, 0xbb, 0xbe, 0xb1, 0x41, 0xa7, 0x25, 0x11, 0xd7, 0xcb, 0xda, - 0x53, 0x9e, 0x60, 0xb0, 0x2c, 0x49, 0x65, 0xac, 0x7c, 0x85, 0x6b, 0xfb, 0x0a, 0xd6, 0xeb, 0x82, - 0x67, 0x3a, 0x36, 0x7d, 0xcb, 0xc4, 0x31, 0x9b, 0xbe, 0xe5, 0xb9, 0x21, 0x9b, 0xbe, 0x15, 0x3f, - 0x00, 0x9b, 0xbe, 0x64, 0x1c, 0x13, 0x28, 0xb0, 0xe9, 0x5b, 0x36, 0xfd, 0x60, 0xd3, 0x77, 0xd1, - 0x2f, 0x36, 0x7d, 0xc9, 0xab, 0x9f, 0x60, 0x3e, 0x9b, 0xbe, 0xcc, 0x96, 0xcf, 0x71, 0x59, 0x36, - 0x7d, 0x2b, 0x77, 0x59, 0x36, 0x7d, 0x49, 0xc4, 0xb5, 0xb3, 0x96, 0x4d, 0xdf, 0xa5, 0x49, 0x2a, - 0xc6, 0xd5, 0x24, 0x90, 0x81, 0x75, 0x7d, 0xc7, 0x66, 0xb3, 0xed, 0xbb, 0x08, 0x73, 0xd9, 0xf6, - 0x2d, 0x11, 0xc8, 0x6c, 0xfb, 0x96, 0xe7, 0x86, 0x6c, 0xfb, 0x56, 0xfc, 0x00, 0x6c, 0xfb, 0x92, - 0x73, 0x4c, 0xa0, 0x80, 0xdb, 0xf6, 0x3d, 0x8b, 0xe2, 0x30, 0xb9, 0x06, 0xec, 0xfb, 0x6e, 0x93, - 0xd6, 0x2f, 0x81, 0x85, 0xbc, 0x8d, 0x62, 0xbe, 0xf6, 0xea, 0x77, 0x88, 0xe9, 0x83, 0xe3, 0x26, - 0x1f, 0xbc, 0x83, 0x70, 0x7b, 0x8d, 0xe0, 0x6b, 0x17, 0x04, 0x9f, 0x91, 0x04, 0x31, 0xe3, 0x85, - 0x34, 0xdb, 0x05, 0x52, 0xdc, 0xf3, 0x6c, 0x12, 0x16, 0xf1, 0x2b, 0x3c, 0x9b, 0x84, 0xc5, 0xba, - 0xa6, 0x45, 0x3a, 0x39, 0xf9, 0x52, 0x14, 0xe3, 0x77, 0x0e, 0xfb, 0x08, 0xcf, 0x13, 0x75, 0x8e, - 0x10, 0x71, 0xa7, 0x87, 0x97, 0x6d, 0x01, 0xd8, 0xda, 0x9a, 0x94, 0x39, 0x6f, 0xde, 0x8c, 0x4b, - 0x80, 0x5a, 0xce, 0xc0, 0x58, 0x07, 0x68, 0x64, 0x19, 0xaf, 0x5f, 0x7b, 0xb6, 0x89, 0xbc, 0x7e, - 0x6d, 0xfe, 0xc6, 0xf2, 0xfa, 0xb5, 0x25, 0xf1, 0x6f, 0x5e, 0xbf, 0x26, 0xb7, 0xdf, 0xb7, 0xdc, - 0x57, 0xb2, 0x1d, 0x4f, 0x57, 0x83, 0x77, 0xb3, 0xe1, 0x5a, 0xc4, 0xbb, 0xd9, 0x18, 0xe6, 0xee, - 0xdf, 0xa2, 0xc5, 0x5b, 0xda, 0x04, 0x5b, 0x22, 0xc4, 0x61, 0xa7, 0x75, 0x47, 0xd4, 0x15, 0x92, - 0x04, 0x65, 0x56, 0x19, 0xa2, 0xab, 0x0a, 0xd1, 0x55, 0x84, 0xcc, 0xaa, 0x41, 0x8a, 0xf7, 0x09, - 0x4d, 0x93, 0xfa, 0xa5, 0x47, 0x41, 0x14, 0x7f, 0xf1, 0x94, 0x5e, 0x46, 0xe6, 0xaf, 0x3e, 0xcf, - 0x56, 0x6b, 0x41, 0xc5, 0x31, 0x46, 0x5a, 0x6c, 0xd1, 0x26, 0xa6, 0x54, 0xeb, 0x5d, 0xd5, 0x61, - 0xba, 0x42, 0x3c, 0x0b, 0xb9, 0x55, 0x48, 0xd4, 0xad, 0x41, 0x42, 0x6e, 0x05, 0x12, 0x33, 0x59, - 0x23, 0x69, 0x72, 0x46, 0xe0, 0x64, 0x8c, 0xb4, 0xc9, 0x17, 0xb1, 0x93, 0x2d, 0x62, 0x27, 0x57, - 0x64, 0x4e, 0xa6, 0x2c, 0x37, 0xc7, 0x92, 0x72, 0xab, 0x8d, 0x91, 0x5e, 0xa7, 0x99, 0xba, 0x34, - 0xa3, 0xae, 0x1c, 0x07, 0x2f, 0x92, 0x65, 0x61, 0x9a, 0x94, 0x96, 0x97, 0xa8, 0x91, 0x55, 0x71, - 0xa3, 0xa9, 0x12, 0x47, 0x50, 0x05, 0x8f, 0x9a, 0x4a, 0x1d, 0x29, 0x15, 0x3f, 0x3a, 0x2a, 0x7e, - 0x44, 0x54, 0xf6, 0x28, 0x28, 0xb7, 0x31, 0xee, 0x7e, 0x54, 0xe2, 0x46, 0x38, 0xc5, 0xa6, 0xbf, - 0x1f, 0x6a, 0xc7, 0x3f, 0x04, 0xd9, 0xd4, 0x0a, 0xb3, 0x4c, 0x25, 0xb1, 0xb8, 0xd3, 0xee, 0x8c, - 0xbf, 0x3f, 0xad, 0x9a, 0xdb, 0x96, 0xb9, 0x1f, 0x9a, 0xe7, 0xa7, 0xff, 0xd4, 0x6f, 0xfe, 0xfa, - 0xeb, 0xcd, 0x4f, 0xde, 0xf8, 0x8f, 0x9c, 0x28, 0x71, 0xca, 0x56, 0x30, 0xcb, 0x14, 0xb6, 0x82, - 0xe7, 0xdb, 0x0a, 0x16, 0x20, 0x0f, 0x5d, 0xd2, 0x36, 0xb0, 0x98, 0x2a, 0x57, 0x5c, 0x7a, 0x17, - 0x52, 0xd5, 0xb2, 0x1d, 0x8c, 0x51, 0xbd, 0xb2, 0x1d, 0x8c, 0x5e, 0xa5, 0xb2, 0x1d, 0x2c, 0x8f, - 0x67, 0x89, 0xa9, 0x42, 0x05, 0x0a, 0x05, 0x25, 0x09, 0x01, 0x1f, 0x0a, 0xfd, 0x6e, 0xd3, 0xf8, - 0xb2, 0xd2, 0xba, 0xdf, 0x96, 0xc8, 0x61, 0xa7, 0x53, 0xaf, 0x55, 0x93, 0x37, 0x19, 0xc3, 0xae, - 0xa2, 0x86, 0x5b, 0x45, 0x0d, 0xb3, 0xca, 0x18, 0x5e, 0xad, 0xca, 0x49, 0x84, 0x74, 0x0d, 0xc0, - 0xbb, 0x05, 0x46, 0xa5, 0x63, 0x53, 0x8b, 0x99, 0x34, 0xad, 0x26, 0x49, 0x96, 0x9f, 0xa2, 0xca, - 0xfd, 0x17, 0x4b, 0xf6, 0xf3, 0xaa, 0xfd, 0x1b, 0xd3, 0xaf, 0xcb, 0x85, 0x7e, 0x79, 0x00, 0x2c, - 0xe7, 0x5f, 0x2a, 0x09, 0xe2, 0x55, 0x41, 0x1b, 0x09, 0xd2, 0x25, 0xe6, 0xa5, 0x79, 0xe7, 0xa1, - 0x72, 0x7c, 0x70, 0xf1, 0x1e, 0x51, 0x82, 0x37, 0x18, 0xbd, 0x74, 0x60, 0x9e, 0x0d, 0xcf, 0xcf, - 0x55, 0x62, 0xa6, 0xd1, 0xff, 0x95, 0xd7, 0x9d, 0xb8, 0xed, 0x40, 0xdc, 0x33, 0xa0, 0xa4, 0x08, - 0x50, 0xee, 0x74, 0x74, 0xe9, 0x6d, 0xef, 0x2a, 0xda, 0xdb, 0x15, 0xb6, 0xb1, 0xab, 0x6a, 0x57, - 0x57, 0xde, 0x96, 0xae, 0xbc, 0xfd, 0x5c, 0x6d, 0x9b, 0x59, 0x2f, 0x56, 0x52, 0xf6, 0xb4, 0x70, - 0x45, 0xb2, 0x99, 0x4a, 0x65, 0x32, 0x15, 0xc9, 0x62, 0x2a, 0xdb, 0xf7, 0xac, 0x72, 0x9f, 0x53, - 0xc0, 0xbe, 0x66, 0xd5, 0xfb, 0x98, 0x62, 0xf6, 0x2d, 0xc5, 0xec, 0x53, 0xca, 0xd8, 0x97, 0xd4, - 0xbb, 0x73, 0x53, 0x95, 0xec, 0xc4, 0x28, 0xb5, 0x84, 0x98, 0x9d, 0x57, 0xca, 0xab, 0x23, 0x66, - 0xa5, 0x97, 0x8a, 0xa6, 0x5b, 0x2a, 0x1f, 0xaf, 0x91, 0x30, 0x56, 0x23, 0x68, 0x9c, 0x46, 0xca, - 0x18, 0x8d, 0xb8, 0xf1, 0x19, 0x71, 0x63, 0x33, 0xb2, 0xc6, 0x65, 0x96, 0x6b, 0xb7, 0xbd, 0xf2, - 0xb1, 0x98, 0x22, 0x62, 0x0c, 0xa3, 0x38, 0x5b, 0xdb, 0xac, 0x32, 0x60, 0x4c, 0xf2, 0xc7, 0x66, - 0x85, 0x26, 0x78, 0x61, 0x7c, 0xa1, 0x2a, 0x97, 0x59, 0x08, 0x18, 0x92, 0x92, 0x74, 0xe9, 0xbf, - 0x34, 0x55, 0xaa, 0xb0, 0x4b, 0xf9, 0x25, 0xde, 0xd7, 0x2d, 0x40, 0xfb, 0x26, 0xea, 0x12, 0x7c, - 0xa9, 0x10, 0xde, 0xdc, 0xd8, 0x78, 0xbb, 0x41, 0x18, 0xcb, 0xe2, 0x22, 0xd5, 0xff, 0xeb, 0xa7, - 0x1c, 0x62, 0xd1, 0xa0, 0x15, 0xc2, 0x21, 0x96, 0x87, 0x3b, 0xfe, 0xf7, 0xb6, 0x5c, 0xab, 0xd0, - 0xab, 0x71, 0x70, 0x05, 0x0a, 0xce, 0x08, 0x30, 0xc6, 0x18, 0x58, 0x71, 0xd3, 0xc1, 0x6e, 0x6e, - 0x73, 0x7b, 0x64, 0x32, 0x07, 0x55, 0x7e, 0x79, 0xc9, 0x2f, 0x33, 0x33, 0x1a, 0x5c, 0xd5, 0xcd, - 0x44, 0x85, 0x9d, 0xcf, 0xe1, 0x59, 0xd4, 0x8b, 0xb2, 0xeb, 0xf2, 0xa7, 0x55, 0x1e, 0xb5, 0x82, - 0x23, 0x2b, 0x73, 0xf9, 0x07, 0x39, 0xb2, 0x52, 0x0e, 0x8c, 0x38, 0xb2, 0xc2, 0x91, 0x95, 0x79, - 0x2d, 0x65, 0xe9, 0x23, 0x2b, 0x63, 0xc8, 0xaa, 0xb4, 0xba, 0xa9, 0x95, 0xc2, 0x02, 0x0e, 0xae, - 0xe8, 0x96, 0x0e, 0x04, 0xa4, 0x85, 0xaa, 0xd3, 0x83, 0x98, 0x34, 0x21, 0x26, 0x5d, 0xc8, 0x48, - 0x1b, 0xcb, 0xd1, 0xad, 0xa9, 0x6c, 0x70, 0x65, 0x50, 0xed, 0xd8, 0xc2, 0xbd, 0xe4, 0x52, 0xf1, - 0xf0, 0xca, 0x1a, 0x87, 0x57, 0x38, 0xbc, 0xc2, 0xe1, 0x15, 0xf9, 0x29, 0x49, 0x56, 0x6a, 0xaa, - 0x26, 0x45, 0x55, 0x94, 0xaa, 0x2a, 0x4f, 0x59, 0x85, 0x01, 0x97, 0x99, 0xa8, 0x03, 0xcf, 0xc6, - 0xe6, 0xf0, 0xb0, 0x33, 0x1e, 0x76, 0x26, 0x3e, 0xc1, 0x49, 0x4b, 0x74, 0x62, 0x13, 0x9e, 0xd8, - 0xc4, 0x27, 0x33, 0x01, 0x56, 0x9b, 0x08, 0x2b, 0x4e, 0x88, 0xc5, 0x47, 0xc2, 0xc3, 0xce, 0x7e, - 0xa1, 0xd2, 0x12, 0x79, 0xd8, 0xd9, 0x38, 0x85, 0xf3, 0xfc, 0xda, 0x65, 0xeb, 0x42, 0xc8, 0xea, - 0x46, 0x90, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x3d, - 0x9b, 0xcc, 0x4d, 0x62, 0x0e, 0xd9, 0x5c, 0xe9, 0x1f, 0x05, 0x2f, 0xa5, 0x9d, 0xed, 0x2a, 0xe4, - 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe5, 0x7f, 0x24, 0x62, 0x2e, 0xa5, 0xbd, - 0x54, 0x59, 0x12, 0x75, 0xe4, 0xdd, 0x48, 0x3b, 0xb1, 0x8b, 0xd7, 0xd1, 0x4a, 0x4e, 0x9d, 0x12, - 0x53, 0xa8, 0xe0, 0x54, 0x2a, 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, 0x53, 0xac, 0xec, 0x54, 0x2b, - 0x23, 0xe5, 0x0a, 0x49, 0xbd, 0xf2, 0xda, 0x29, 0x0f, 0x22, 0xd6, 0xd7, 0xa8, 0xab, 0x4c, 0x51, - 0x09, 0xf0, 0x6e, 0x12, 0xdc, 0x12, 0x64, 0x92, 0x8c, 0x63, 0x52, 0xee, 0xbf, 0x64, 0x45, 0xf5, - 0x15, 0x69, 0xc7, 0xa8, 0x08, 0x67, 0x57, 0x0f, 0xcc, 0x9b, 0x9e, 0x51, 0xb1, 0x26, 0xd4, 0x3e, - 0x81, 0xe7, 0x55, 0x08, 0x8d, 0xf9, 0x3f, 0xba, 0x44, 0xf8, 0x8d, 0x2e, 0xf1, 0x52, 0x97, 0xd8, - 0xdc, 0xda, 0xda, 0x5a, 0x5f, 0xdb, 0xa0, 0x67, 0x60, 0x73, 0x32, 0x79, 0xd6, 0xf0, 0x52, 0x74, - 0x31, 0x91, 0x53, 0xc8, 0x74, 0xf3, 0x03, 0x9a, 0x2c, 0x61, 0xca, 0x59, 0x68, 0xc0, 0x66, 0x87, - 0xe8, 0x29, 0x40, 0x62, 0x87, 0xe8, 0xd7, 0x61, 0xce, 0x0e, 0xd1, 0x0b, 0x0d, 0x64, 0x87, 0x08, - 0xa5, 0x5a, 0x10, 0xdc, 0x21, 0xaa, 0xfc, 0x8c, 0xdc, 0x59, 0xf9, 0x6f, 0x93, 0xcd, 0xa1, 0x9f, - 0xbc, 0xd8, 0x1c, 0xd2, 0xb2, 0x12, 0x5e, 0x65, 0x09, 0x0c, 0x1e, 0xee, 0x7f, 0x74, 0x09, 0x36, - 0x87, 0x5e, 0xec, 0x12, 0xf5, 0xd5, 0x6d, 0x36, 0x86, 0x34, 0x68, 0xc5, 0xac, 0xb0, 0x31, 0x24, - 0x70, 0x3d, 0x24, 0x34, 0x86, 0x06, 0xb2, 0x8a, 0x7a, 0x59, 0x9a, 0x29, 0xa1, 0xe1, 0x9a, 0xad, - 0xa1, 0xa7, 0x20, 0x89, 0xad, 0xa1, 0x5f, 0x87, 0x39, 0x5b, 0x43, 0x2f, 0x34, 0x90, 0xad, 0x21, - 0x94, 0x5a, 0x41, 0x70, 0x6b, 0x28, 0x3f, 0x1a, 0x59, 0x9c, 0x03, 0x16, 0xa2, 0x93, 0x3f, 0x04, - 0xd9, 0xd4, 0x0a, 0xb3, 0x4c, 0x25, 0xb1, 0xb8, 0x16, 0x91, 0xf1, 0xf7, 0xab, 0x57, 0x9f, 0x56, - 0xcd, 0xed, 0xd3, 0xef, 0x9f, 0xd6, 0xcc, 0xed, 0xd3, 0xf1, 0xb7, 0x6b, 0xf9, 0x97, 0xf1, 0xf7, - 0xeb, 0x9f, 0x56, 0xcd, 0xfa, 0xf4, 0xfb, 0x8d, 0x4f, 0xab, 0xe6, 0xc6, 0xe9, 0xeb, 0xbf, 0xfe, - 0x7a, 0xf3, 0xfa, 0x9f, 0xb7, 0x37, 0x4f, 0xff, 0xc5, 0xda, 0xe4, 0x1f, 0x7b, 0xfd, 0xfd, 0xd5, - 0xa7, 0x35, 0x73, 0xfd, 0x74, 0xfa, 0x87, 0xb7, 0x9f, 0x56, 0xcd, 0xf5, 0xd3, 0xd7, 0xaf, 0xff, - 0x63, 0x90, 0xfb, 0x93, 0xfb, 0x3f, 0xc0, 0x68, 0x6a, 0x9e, 0x45, 0x99, 0x3c, 0xea, 0x3f, 0x36, - 0x8b, 0xcc, 0x9f, 0xcc, 0x9f, 0xcc, 0x9f, 0xcc, 0x9f, 0xcc, 0x9f, 0xcc, 0x7f, 0x69, 0x98, 0xff, - 0x59, 0xbf, 0xdf, 0x53, 0x61, 0x2c, 0x91, 0xf5, 0xaf, 0x91, 0xb8, 0x89, 0x21, 0x6e, 0xc3, 0x81, - 0xd9, 0xed, 0x7f, 0x8d, 0xe5, 0x51, 0xb7, 0xa9, 0x61, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, - 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x62, 0xc8, 0xdb, 0x52, 0x9f, 0x58, 0x52, - 0xf1, 0x25, 0xbe, 0x0f, 0xec, 0x91, 0x78, 0x1b, 0xea, 0x63, 0x37, 0x53, 0xd6, 0xa6, 0x77, 0x95, - 0x4d, 0xbe, 0xa9, 0xe2, 0xa6, 0x5f, 0x39, 0x48, 0xae, 0xf4, 0x2c, 0xb8, 0xe1, 0xd9, 0xe8, 0x93, - 0x12, 0x74, 0x1a, 0xdc, 0xc4, 0x20, 0x9e, 0x07, 0xc7, 0xf3, 0xe0, 0x60, 0x0a, 0x1a, 0x9e, 0x07, - 0x87, 0x5e, 0xb8, 0xf0, 0x3c, 0x38, 0x79, 0xec, 0x4a, 0xcc, 0x79, 0x70, 0xe3, 0x9c, 0x24, 0x70, - 0x5f, 0x77, 0x6c, 0x97, 0xac, 0xde, 0xe0, 0x1a, 0x7b, 0x83, 0xe2, 0x53, 0xa8, 0xe0, 0x54, 0x2a, - 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, 0x53, 0xac, 0xec, 0x54, 0x2b, 0xa7, 0xa5, 0xb2, 0x22, 0xa8, - 0x37, 0x28, 0x25, 0x05, 0x17, 0x06, 0x9d, 0xf7, 0xc2, 0x8b, 0x54, 0x5e, 0x50, 0x98, 0xc6, 0xd1, - 0xb1, 0x79, 0xc2, 0xfc, 0x4d, 0x56, 0x62, 0x16, 0x9b, 0xa0, 0x25, 0x27, 0x6a, 0x80, 0x84, 0x2d, - 0x3d, 0x71, 0xc3, 0x24, 0x70, 0x98, 0x44, 0x8e, 0x91, 0xd0, 0x65, 0x25, 0x76, 0x61, 0x09, 0x5e, - 0x6c, 0xa2, 0xbf, 0xad, 0xbd, 0x45, 0x5c, 0x56, 0xf2, 0xf3, 0x52, 0x5c, 0xc0, 0x25, 0x26, 0x60, - 0x04, 0x40, 0x3c, 0x11, 0x40, 0x20, 0x04, 0x40, 0xc4, 0x00, 0x85, 0x20, 0xc0, 0x11, 0x05, 0x38, - 0xc2, 0x80, 0x45, 0x1c, 0x64, 0x12, 0x08, 0xa1, 0x44, 0x42, 0x3c, 0xa1, 0x10, 0xde, 0x49, 0x80, - 0xea, 0x2c, 0xcc, 0x22, 0x1a, 0xab, 0xc2, 0xcd, 0x94, 0x4e, 0x38, 0x90, 0x88, 0x07, 0x20, 0x01, - 0x41, 0x23, 0x22, 0xb0, 0x84, 0x04, 0x96, 0x98, 0x60, 0x12, 0x14, 0xd9, 0x44, 0x45, 0x38, 0x61, - 0x29, 0x3e, 0x72, 0x71, 0xe3, 0xd0, 0x3f, 0x8d, 0xb8, 0x2a, 0x1e, 0x5e, 0xaa, 0x64, 0x3c, 0x86, - 0x0a, 0x10, 0x75, 0xa7, 0xdd, 0x88, 0x3a, 0x80, 0xad, 0x76, 0x3c, 0xbc, 0x1c, 0x81, 0x81, 0x2e, - 0xf5, 0x92, 0x55, 0x74, 0xa3, 0x34, 0xb3, 0xb2, 0x2c, 0xc1, 0x70, 0xab, 0xc3, 0x28, 0xb6, 0x7b, - 0x6a, 0x14, 0xf5, 0x47, 0xe5, 0x41, 0x3c, 0xec, 0xf5, 0x00, 0x80, 0x7a, 0x18, 0x7e, 0xc3, 0x33, - 0xfa, 0x28, 0xe9, 0xaa, 0x44, 0x75, 0x77, 0xaf, 0x27, 0x26, 0xff, 0xc6, 0xac, 0xaa, 0x99, 0xfb, - 0x1b, 0x19, 0x42, 0x36, 0x2d, 0x32, 0x69, 0x6e, 0x2d, 0x6b, 0x6c, 0xd6, 0xd8, 0xac, 0xb1, 0x59, - 0x63, 0xb3, 0xc6, 0x66, 0x8d, 0xcd, 0x1a, 0x9b, 0x35, 0xf6, 0xf8, 0x04, 0xc9, 0xae, 0x8a, 0xb3, - 0x28, 0xbb, 0x4e, 0xd4, 0x39, 0x52, 0x8d, 0xbd, 0x01, 0x60, 0xab, 0x33, 0x59, 0xda, 0xdd, 0x30, - 0x05, 0xca, 0x13, 0x53, 0x60, 0x38, 0x6d, 0xa7, 0x1d, 0xb4, 0x8f, 0x77, 0x7d, 0xf7, 0x24, 0xf0, - 0xff, 0x6c, 0xd9, 0x28, 0xe9, 0x22, 0xbf, 0x90, 0x20, 0x15, 0x77, 0xcc, 0xe7, 0xbf, 0xbd, 0xfe, - 0x81, 0xb1, 0xf4, 0x1e, 0x42, 0x02, 0xcf, 0xb6, 0xf6, 0xde, 0x59, 0xbb, 0x8e, 0xeb, 0xf8, 0x7f, - 0x4e, 0xc0, 0xd2, 0x46, 0x42, 0x0b, 0x32, 0x6a, 0x30, 0xd1, 0xf3, 0x53, 0x14, 0x59, 0x27, 0x96, - 0xe3, 0x5a, 0xbb, 0xae, 0x1d, 0xec, 0x5a, 0xcd, 0xc6, 0x7f, 0x9d, 0x86, 0xff, 0xce, 0x80, 0x7b, - 0xc2, 0x9b, 0xdf, 0x09, 0xa3, 0x6a, 0x61, 0xe4, 0xd9, 0x6d, 0xa7, 0x71, 0x6c, 0xb9, 0x44, 0x11, - 0x51, 0xf4, 0x82, 0x60, 0xd4, 0x78, 0x1f, 0xb4, 0x9d, 0x06, 0xa1, 0x43, 0xe8, 0x3c, 0x15, 0x3a, - 0xae, 0xd3, 0xfc, 0x10, 0xb4, 0xbc, 0x23, 0xdf, 0xde, 0xf3, 0x9d, 0xa3, 0xe6, 0x98, 0x15, 0x11, - 0x47, 0xc4, 0xd1, 0x73, 0x70, 0xd4, 0xb0, 0x5d, 0xeb, 0x4f, 0xa2, 0x87, 0xe8, 0x79, 0x3e, 0x7a, - 0x82, 0x13, 0xcb, 0x73, 0xac, 0x51, 0x28, 0x22, 0x8e, 0x88, 0xa3, 0xa7, 0xe2, 0xc8, 0x69, 0x9d, - 0x6c, 0x06, 0x4e, 0xd3, 0xb7, 0xbd, 0x7d, 0x6b, 0xcf, 0x0e, 0xac, 0x46, 0xc3, 0xb3, 0xdb, 0x6d, - 0x22, 0x89, 0x48, 0x7a, 0x2a, 0x92, 0x8a, 0x7a, 0x2c, 0xd8, 0x3b, 0x6a, 0xb6, 0x7d, 0xcf, 0x72, - 0x9a, 0x3e, 0x81, 0x44, 0x20, 0x3d, 0x19, 0x48, 0x87, 0xd6, 0xc7, 0x51, 0x95, 0x6f, 0x7b, 0x27, - 0xec, 0x16, 0x11, 0x4b, 0x73, 0xa0, 0x49, 0x96, 0xef, 0x7b, 0xce, 0xee, 0xb1, 0x6f, 0x33, 0x1c, - 0x11, 0x42, 0x4f, 0x86, 0xd0, 0xb1, 0xef, 0xb8, 0xce, 0xff, 0xec, 0x06, 0x03, 0x11, 0x51, 0xf4, - 0x7c, 0x14, 0xd9, 0x1f, 0x7d, 0xbb, 0xd9, 0xb0, 0x1b, 0x81, 0xd5, 0x38, 0x74, 0x9a, 0xc1, 0x81, - 0x77, 0x74, 0xdc, 0x22, 0x8e, 0x88, 0xa3, 0xa7, 0xe2, 0xc8, 0x6a, 0xbc, 0x0f, 0x5c, 0xab, 0xc9, - 0xe6, 0x35, 0xe1, 0xf3, 0xac, 0x64, 0xd6, 0x2c, 0x8a, 0x33, 0xbb, 0x11, 0xb8, 0x6d, 0xc6, 0x20, - 0x82, 0xe8, 0xc9, 0x20, 0x72, 0x5a, 0x27, 0x75, 0xf6, 0x8c, 0x88, 0xa4, 0x97, 0x23, 0xc9, 0xb7, - 0x83, 0x86, 0xbd, 0x6f, 0x1d, 0xbb, 0x7e, 0x70, 0x68, 0xfb, 0x9e, 0xb3, 0x47, 0x10, 0x11, 0x44, - 0x4f, 0x05, 0xd1, 0x88, 0x4f, 0x1f, 0x5a, 0x1f, 0xb9, 0xa1, 0x46, 0x14, 0xbd, 0x00, 0x45, 0x39, - 0x7a, 0xdc, 0x23, 0xe6, 0x31, 0x82, 0xe7, 0x19, 0x21, 0x68, 0x1a, 0x7e, 0xd8, 0x23, 0x22, 0x8a, - 0x5e, 0x50, 0x9c, 0x8d, 0xb7, 0x3d, 0xd8, 0x6b, 0x24, 0x8e, 0x5e, 0x58, 0x9f, 0x6d, 0x06, 0x4d, - 0xdb, 0x39, 0x78, 0xb7, 0x7b, 0xe4, 0xb1, 0x3c, 0x23, 0x90, 0x5e, 0xc4, 0x89, 0xd8, 0x68, 0x24, - 0x74, 0x9e, 0x15, 0x83, 0xea, 0x8c, 0x41, 0x04, 0xd2, 0x8b, 0x81, 0x84, 0xbd, 0x5f, 0x06, 0x65, - 0xf1, 0xe9, 0x6f, 0x74, 0xcb, 0x25, 0x77, 0x47, 0x3d, 0xd5, 0x7b, 0x84, 0x4b, 0xd9, 0x70, 0x41, - 0x56, 0xe9, 0x11, 0x2d, 0xe5, 0xe7, 0x78, 0x30, 0x35, 0x1e, 0x21, 0x52, 0x49, 0x29, 0x0a, 0xab, - 0xba, 0x23, 0x5e, 0x2a, 0xc1, 0x0b, 0xd8, 0x66, 0x20, 0x51, 0x52, 0x1d, 0x4a, 0x10, 0x55, 0x74, - 0xc4, 0x4b, 0xd9, 0x78, 0x41, 0x57, 0xcb, 0x11, 0x31, 0x65, 0x23, 0x06, 0x5c, 0x15, 0x47, 0xc0, - 0x94, 0x0d, 0x18, 0x7c, 0xf5, 0x1b, 0x31, 0x53, 0x09, 0x8d, 0x41, 0x54, 0xb9, 0x11, 0x2a, 0x65, - 0x43, 0x05, 0x59, 0xcd, 0x46, 0xb4, 0x94, 0x8d, 0x16, 0x6c, 0xd5, 0x1a, 0xf1, 0x52, 0x36, 0x5e, - 0x20, 0xd5, 0x69, 0x84, 0x49, 0xe9, 0x49, 0x08, 0x57, 0x85, 0x46, 0xb0, 0x54, 0xd0, 0x73, 0xa9, - 0xb3, 0xe7, 0x42, 0xc4, 0xfc, 0x3a, 0x62, 0x80, 0x55, 0x65, 0x04, 0x4b, 0xe9, 0xfd, 0x16, 0x60, - 0xf5, 0x18, 0xd1, 0x52, 0x49, 0xa7, 0x05, 0x4b, 0x25, 0x46, 0x90, 0x94, 0x1e, 0x52, 0x80, 0xd5, - 0x60, 0x44, 0x4b, 0xf9, 0xc5, 0x10, 0xb2, 0xea, 0x8b, 0x78, 0xa9, 0xa0, 0x1e, 0x42, 0x56, 0x77, - 0x11, 0x30, 0x95, 0x70, 0x16, 0x36, 0xe4, 0x08, 0x11, 0x6d, 0xd5, 0x5a, 0x04, 0x4c, 0xd9, 0x80, - 0xe1, 0x7e, 0x10, 0x61, 0xf2, 0x08, 0x4c, 0xbc, 0xa3, 0x63, 0xdf, 0xf6, 0x82, 0x3d, 0xab, 0xc5, - 0xbb, 0xe3, 0x88, 0x9f, 0xb9, 0xe2, 0xe8, 0xee, 0x9f, 0xa8, 0x23, 0x26, 0x84, 0x9e, 0x05, 0x21, - 0xcb, 0x3d, 0x38, 0xf2, 0x1c, 0xff, 0xdd, 0x21, 0xa5, 0xc4, 0x8b, 0x7d, 0x51, 0x4a, 0x4c, 0x52, - 0xa0, 0x5d, 0x30, 0x27, 0x54, 0x18, 0xb4, 0x89, 0x14, 0x21, 0x05, 0x69, 0x8b, 0x77, 0x54, 0x13, - 0x3d, 0xf3, 0x46, 0x51, 0xcb, 0xb3, 0xf7, 0x9d, 0x8f, 0xc1, 0xbe, 0x6b, 0x1d, 0xf0, 0xb0, 0x22, - 0xe2, 0xe7, 0xb9, 0xf8, 0xe1, 0xe5, 0x0c, 0x44, 0xcf, 0x33, 0xd0, 0x93, 0xef, 0xec, 0x4d, 0x28, - 0x10, 0x11, 0x44, 0x04, 0x3d, 0x1d, 0x41, 0xbe, 0x75, 0xb0, 0x59, 0x27, 0x70, 0x08, 0x9c, 0x67, - 0x84, 0x9e, 0x3a, 0x43, 0x0f, 0x11, 0xf4, 0xa2, 0xd0, 0xc3, 0xa6, 0xea, 0x62, 0x5f, 0x6c, 0xaa, - 0xb2, 0xff, 0xa1, 0x57, 0xe5, 0x4a, 0x9c, 0xb0, 0x42, 0x25, 0x4a, 0x58, 0x89, 0x12, 0x29, 0xac, - 0x38, 0x09, 0x10, 0x5d, 0x43, 0x49, 0x9d, 0xa1, 0x84, 0x48, 0xd1, 0xac, 0x82, 0xc4, 0xa8, 0x1c, - 0xe5, 0x57, 0x8c, 0xb2, 0xd7, 0x51, 0xae, 0x75, 0x32, 0x2d, 0x13, 0x1a, 0x34, 0x0d, 0x2b, 0x8e, - 0xfb, 0x59, 0x98, 0x45, 0xfd, 0xd8, 0xd8, 0x11, 0x1c, 0x2e, 0x8d, 0xb4, 0xf3, 0x59, 0x5d, 0x86, - 0x83, 0x30, 0xfb, 0x3c, 0x0a, 0x90, 0xb5, 0xfe, 0x40, 0xc5, 0x9d, 0x7e, 0x7c, 0x1e, 0x5d, 0x98, - 0xb1, 0xca, 0xbe, 0xf6, 0x93, 0x2f, 0x66, 0x14, 0xa7, 0x59, 0x18, 0x77, 0x54, 0xed, 0xfe, 0x1b, - 0xe9, 0x83, 0x77, 0x6a, 0x83, 0xa4, 0x9f, 0xf5, 0x3b, 0xfd, 0x5e, 0x5a, 0x7c, 0x57, 0x8b, 0xd2, - 0x28, 0xad, 0xf5, 0xd4, 0x95, 0xea, 0x4d, 0xbe, 0xd4, 0x7a, 0x51, 0xfc, 0xc5, 0x4c, 0xb3, 0x30, - 0x53, 0x66, 0x37, 0xcc, 0xc2, 0xb3, 0x30, 0x55, 0xb5, 0x5e, 0x3a, 0xa8, 0x65, 0xbd, 0xab, 0x74, - 0xf4, 0x9f, 0xda, 0x65, 0x66, 0x46, 0x83, 0xab, 0xba, 0x99, 0xa8, 0xb0, 0xf3, 0x39, 0x3c, 0x8b, - 0x7a, 0x51, 0x76, 0x5d, 0x1b, 0x24, 0xea, 0x3c, 0xfa, 0xa6, 0xd2, 0xc9, 0x37, 0xb5, 0x74, 0x78, - 0x96, 0xff, 0xc2, 0xf8, 0x6b, 0xed, 0xbc, 0x17, 0x5e, 0xa4, 0xb5, 0xfc, 0x6f, 0x95, 0x19, 0xd2, - 0xe5, 0xb9, 0x8f, 0x2c, 0x8b, 0x84, 0x39, 0xb2, 0x74, 0x07, 0xd6, 0xcb, 0x71, 0x05, 0xce, 0x4f, - 0x19, 0x69, 0x96, 0x0c, 0x3b, 0x59, 0x3c, 0xa1, 0x8e, 0xcd, 0xf1, 0x8a, 0x39, 0x93, 0x05, 0x0b, - 0x5a, 0x93, 0x65, 0x0a, 0x9c, 0x34, 0x4a, 0x03, 0x77, 0xb4, 0x3e, 0x81, 0x9b, 0x0e, 0x02, 0xbf, - 0x77, 0x15, 0x1c, 0x66, 0xce, 0xe0, 0xaa, 0xee, 0xdd, 0x59, 0x84, 0xa0, 0x95, 0x3f, 0x7b, 0xd0, - 0xce, 0x9f, 0x39, 0xd8, 0xcf, 0x9f, 0xf9, 0x37, 0x06, 0x03, 0xe1, 0x81, 0xc0, 0xc8, 0xd1, 0x9c, - 0xf6, 0x87, 0x49, 0x47, 0x99, 0x49, 0x7f, 0x98, 0xa9, 0xc4, 0x8c, 0xba, 0xe2, 0xe2, 0x41, 0x51, - 0xdf, 0x3c, 0x6e, 0xae, 0xb0, 0xc0, 0xfa, 0x21, 0x8a, 0x47, 0x4b, 0xb8, 0x26, 0xcc, 0xac, 0xbd, - 0x3c, 0x78, 0x1a, 0x3b, 0x2b, 0xab, 0xc2, 0x0c, 0x1b, 0x87, 0x0e, 0x99, 0x49, 0x68, 0x0a, 0xbc, - 0x7e, 0xc7, 0x1c, 0xa5, 0x0b, 0x89, 0x61, 0xbc, 0x9d, 0xbb, 0x83, 0x58, 0x12, 0x6e, 0x7c, 0x50, - 0xd7, 0x5f, 0xfb, 0xc9, 0xc8, 0x23, 0x8c, 0x71, 0x82, 0x14, 0x3a, 0x4b, 0x6c, 0xbc, 0x0b, 0x53, - 0x2b, 0xb9, 0x18, 0x5e, 0xaa, 0x38, 0x33, 0x76, 0x56, 0xb2, 0x64, 0xa8, 0xa4, 0x96, 0x5e, 0xb7, - 0x56, 0x16, 0xc0, 0x24, 0xf9, 0x86, 0x22, 0xdf, 0x8d, 0x28, 0x11, 0xca, 0xba, 0xf3, 0x02, 0x53, - 0x6c, 0x30, 0x99, 0xc6, 0xe3, 0xb1, 0x99, 0x42, 0xfd, 0x53, 0x26, 0x01, 0x10, 0x4f, 0x04, 0x10, - 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, - 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x0a, 0x03, 0xe5, 0x76, 0x17, 0x66, 0xc6, 0x76, 0xa9, - 0x1d, 0x86, 0x59, 0x84, 0x63, 0x55, 0xb8, 0x99, 0xd2, 0x89, 0x07, 0x12, 0x01, 0x01, 0x24, 0x22, - 0x68, 0x84, 0x04, 0x96, 0x98, 0xc0, 0x12, 0x14, 0x4c, 0xa2, 0x22, 0x9b, 0xb0, 0x08, 0x27, 0x2e, - 0xc5, 0x47, 0xee, 0x5f, 0x0f, 0x14, 0x56, 0xc4, 0xcd, 0x37, 0x23, 0xc2, 0x6e, 0x37, 0x51, 0x29, - 0x44, 0xd8, 0x9d, 0xb6, 0x25, 0xfe, 0x00, 0xb0, 0xb5, 0x15, 0x66, 0x99, 0x4a, 0x62, 0x98, 0x03, - 0x1c, 0x8c, 0xbf, 0x5f, 0xbd, 0xfa, 0xb4, 0x6a, 0x6e, 0x9f, 0x7e, 0xff, 0xb4, 0x66, 0x6e, 0x9f, - 0x8e, 0xbf, 0x5d, 0xcb, 0xbf, 0x8c, 0xbf, 0x5f, 0xff, 0xb4, 0x6a, 0xd6, 0xa7, 0xdf, 0x6f, 0x7c, - 0x5a, 0x35, 0x37, 0x4e, 0x5f, 0xff, 0xf5, 0xd7, 0x9b, 0xd7, 0xff, 0xbc, 0xbd, 0x79, 0xfa, 0x2f, - 0xfe, 0x47, 0x7e, 0x30, 0x3c, 0xe5, 0x10, 0x9a, 0x6e, 0x61, 0xda, 0xc8, 0x10, 0x42, 0x74, 0x11, - 0x9e, 0x73, 0x6b, 0x59, 0xb8, 0xb1, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x0b, 0x37, - 0x16, 0x6e, 0x2c, 0xdc, 0xc6, 0x85, 0x5b, 0x57, 0xc5, 0x59, 0x94, 0x5d, 0x27, 0xea, 0x1c, 0xa9, - 0x6e, 0xdb, 0x00, 0xb0, 0xd5, 0x99, 0x2c, 0xed, 0x6e, 0x98, 0x02, 0xe5, 0x89, 0xdb, 0x23, 0xf9, - 0x9d, 0xf6, 0xe4, 0xd8, 0x43, 0xa4, 0x53, 0x0f, 0x11, 0x4f, 0x3b, 0xd4, 0xe4, 0xd2, 0x06, 0x9e, - 0x91, 0x49, 0xf4, 0xbc, 0x1c, 0x45, 0xd6, 0x89, 0xe5, 0xb8, 0xd6, 0xae, 0x6b, 0x23, 0x5e, 0x57, - 0x06, 0xc2, 0x53, 0x96, 0x00, 0x46, 0x9e, 0xdd, 0x76, 0x1a, 0xc7, 0x96, 0x4b, 0x14, 0x11, 0x45, - 0x2f, 0x08, 0x46, 0x8d, 0xf7, 0x3c, 0x6d, 0x95, 0xd0, 0x79, 0x0e, 0x74, 0xf2, 0x6b, 0xf1, 0x5a, - 0xde, 0x91, 0x6f, 0xef, 0xf9, 0xce, 0x51, 0x73, 0xcc, 0x8a, 0x88, 0x23, 0xe2, 0xe8, 0x39, 0x38, - 0x02, 0xbb, 0x38, 0x9c, 0xe8, 0x91, 0x87, 0x9e, 0xe0, 0xc4, 0xf2, 0x1c, 0x6b, 0x14, 0x8a, 0x88, - 0x23, 0xe2, 0xe8, 0xa9, 0x38, 0xca, 0x4f, 0x6c, 0x73, 0x9a, 0xbe, 0xed, 0xed, 0x5b, 0x7b, 0x36, - 0xde, 0x15, 0x9e, 0x44, 0x92, 0x14, 0x24, 0x15, 0xf5, 0x58, 0xb0, 0x77, 0xd4, 0x6c, 0xfb, 0x9e, - 0xe5, 0x34, 0x7d, 0x02, 0x89, 0x40, 0x7a, 0x32, 0x90, 0x0e, 0xad, 0x8f, 0xc1, 0xf8, 0x6a, 0x7b, - 0x76, 0x8b, 0x88, 0xa5, 0x39, 0xd0, 0x24, 0xcb, 0xf7, 0x3d, 0x67, 0xf7, 0xd8, 0xb7, 0x19, 0x8e, - 0x08, 0xa1, 0x27, 0x43, 0xe8, 0xd8, 0x77, 0x5c, 0xe7, 0x7f, 0x76, 0x83, 0x81, 0x88, 0x28, 0x7a, - 0x3e, 0x8a, 0xec, 0x8f, 0xbe, 0xdd, 0x6c, 0xd8, 0x0d, 0xcc, 0x1b, 0xd0, 0x89, 0x23, 0x29, 0x38, - 0xb2, 0x1a, 0xef, 0x03, 0xd7, 0x6a, 0xb2, 0x79, 0x4d, 0xf8, 0x3c, 0x2b, 0x99, 0x35, 0x8b, 0xe2, - 0xcc, 0x6e, 0x04, 0x6e, 0x9b, 0x31, 0x88, 0x20, 0x7a, 0x32, 0x88, 0xf2, 0xa3, 0xb9, 0xd9, 0x33, - 0x22, 0x92, 0x5e, 0x8c, 0x24, 0xdf, 0x0e, 0x1a, 0xf6, 0xbe, 0x75, 0xec, 0xfa, 0xc1, 0xa1, 0xed, - 0x7b, 0xce, 0x1e, 0x41, 0x44, 0x10, 0x3d, 0x15, 0x44, 0x23, 0x3e, 0x7d, 0x68, 0x7d, 0xe4, 0x86, - 0x1a, 0x51, 0xf4, 0x02, 0x14, 0xe5, 0xe8, 0x71, 0x8f, 0x98, 0xc7, 0x08, 0x9e, 0x67, 0x84, 0xa0, - 0x69, 0xf8, 0x61, 0x8f, 0x88, 0x28, 0x7a, 0x41, 0x71, 0x36, 0xde, 0xf6, 0x60, 0xaf, 0x91, 0x38, - 0x7a, 0x61, 0x7d, 0xb6, 0x19, 0x34, 0x6d, 0xe7, 0xe0, 0xdd, 0xee, 0x91, 0xc7, 0xf2, 0x8c, 0x40, - 0x7a, 0x11, 0x27, 0x62, 0xa3, 0x91, 0xd0, 0x79, 0x56, 0x0c, 0xaa, 0x33, 0x06, 0x11, 0x48, 0x2f, - 0x06, 0x12, 0xf6, 0x7e, 0x19, 0xef, 0x09, 0x5f, 0x76, 0xb7, 0xd4, 0x44, 0x03, 0x0a, 0xad, 0xde, - 0x23, 0x5c, 0xca, 0x86, 0x0b, 0xb2, 0x4a, 0x8f, 0x68, 0x29, 0x3f, 0xc7, 0xbf, 0xe7, 0xcd, 0xf2, - 0x84, 0x88, 0xbe, 0xaa, 0x3b, 0xe2, 0xa5, 0x12, 0xbc, 0x80, 0x6d, 0x06, 0x12, 0x25, 0xd5, 0xa1, - 0x04, 0x51, 0x45, 0x47, 0xbc, 0x94, 0x8d, 0x17, 0x74, 0xb5, 0x1c, 0x11, 0x53, 0x36, 0x62, 0xc0, - 0x55, 0x71, 0x04, 0x4c, 0xd9, 0x80, 0xc1, 0x57, 0xbf, 0x11, 0x33, 0x95, 0xd0, 0x18, 0x44, 0x95, - 0x1b, 0xa1, 0x52, 0x36, 0x54, 0x90, 0xd5, 0x6c, 0x44, 0x4b, 0xd9, 0x68, 0xc1, 0x56, 0xad, 0x11, - 0x2f, 0x65, 0xe3, 0x05, 0x52, 0x9d, 0x46, 0x98, 0x94, 0x9e, 0x84, 0x70, 0x55, 0x68, 0x04, 0x4b, - 0x05, 0x3d, 0x97, 0x3a, 0x7b, 0x2e, 0x44, 0xcc, 0xaf, 0x23, 0x06, 0x58, 0x55, 0x46, 0xb0, 0x94, - 0xde, 0x6f, 0x01, 0x56, 0x8f, 0x11, 0x2d, 0x95, 0x74, 0x5a, 0xb0, 0x54, 0x62, 0x04, 0x49, 0xe9, - 0x21, 0x05, 0x58, 0x0d, 0x46, 0xb4, 0x94, 0x5f, 0x0c, 0x21, 0xab, 0xbe, 0x88, 0x97, 0x0a, 0xea, - 0x21, 0x64, 0x75, 0x17, 0x01, 0x53, 0x09, 0x67, 0x61, 0x43, 0x8e, 0x10, 0xd1, 0x56, 0xad, 0x45, - 0xc0, 0x94, 0x0d, 0x18, 0xee, 0x07, 0x11, 0x26, 0x8f, 0xc0, 0xc4, 0x3b, 0x3a, 0xf6, 0x6d, 0x2f, - 0xd8, 0xb3, 0x5a, 0xbc, 0x3b, 0x8e, 0xf8, 0x99, 0x2b, 0x8e, 0xee, 0xfe, 0x89, 0x3a, 0x62, 0x42, - 0xe8, 0x59, 0x10, 0xb2, 0xdc, 0x83, 0x23, 0xcf, 0xf1, 0xdf, 0x1d, 0x52, 0x4a, 0xbc, 0xd8, 0x17, - 0xa5, 0xc4, 0x24, 0x05, 0xda, 0x05, 0x73, 0x42, 0x85, 0x41, 0x9b, 0x48, 0x11, 0x52, 0x90, 0xb6, - 0x78, 0x47, 0x35, 0xd1, 0x33, 0x6f, 0x14, 0xb5, 0x3c, 0x7b, 0xdf, 0xf9, 0x18, 0xec, 0xbb, 0xd6, - 0x01, 0x0f, 0x2b, 0x22, 0x7e, 0x9e, 0x8b, 0x1f, 0x5e, 0xce, 0x40, 0xf4, 0x3c, 0x03, 0x3d, 0xf9, - 0xce, 0xde, 0x84, 0x02, 0x11, 0x41, 0x44, 0xd0, 0xd3, 0x11, 0xe4, 0x5b, 0x07, 0x9b, 0x75, 0x02, - 0x87, 0xc0, 0x79, 0x46, 0xe8, 0xa9, 0x33, 0xf4, 0x10, 0x41, 0x2f, 0x0a, 0x3d, 0x6c, 0xaa, 0x2e, - 0xf6, 0xc5, 0xa6, 0x2a, 0xfb, 0x1f, 0x7a, 0x55, 0xae, 0xc4, 0x09, 0x2b, 0x54, 0xa2, 0x84, 0x95, - 0x28, 0x91, 0xc2, 0x8a, 0x93, 0x00, 0xd1, 0x35, 0x94, 0xd4, 0x19, 0x4a, 0x88, 0x14, 0xcd, 0x2a, - 0x48, 0x8c, 0xca, 0x51, 0x7e, 0xc5, 0x28, 0x7b, 0x1d, 0xe5, 0x5a, 0x27, 0xd3, 0x32, 0xa1, 0x41, - 0xd3, 0xb0, 0xe2, 0xb8, 0x9f, 0x85, 0x59, 0xd4, 0x8f, 0x8d, 0x1d, 0xc1, 0xe1, 0xd2, 0x48, 0x3b, - 0x9f, 0xd5, 0x65, 0x38, 0x08, 0xb3, 0xcf, 0xa3, 0x00, 0x59, 0xeb, 0x0f, 0x54, 0xdc, 0xe9, 0xc7, - 0xe7, 0xd1, 0x85, 0x19, 0xab, 0xec, 0x6b, 0x3f, 0xf9, 0x62, 0x46, 0x71, 0x9a, 0x85, 0x71, 0x47, - 0xd5, 0xee, 0xbf, 0x91, 0x3e, 0x78, 0xa7, 0x36, 0x48, 0xfa, 0x59, 0xbf, 0xd3, 0xef, 0xa5, 0xc5, - 0x77, 0xb5, 0x28, 0x8d, 0xd2, 0x5a, 0x4f, 0x5d, 0xa9, 0xde, 0xe4, 0x4b, 0xad, 0x17, 0xc5, 0x5f, - 0xcc, 0x34, 0x0b, 0x33, 0x65, 0x76, 0xc3, 0x2c, 0x3c, 0x0b, 0x53, 0x55, 0xeb, 0xa5, 0x83, 0x5a, - 0xd6, 0xbb, 0x4a, 0x47, 0xff, 0xa9, 0x5d, 0x66, 0x66, 0x34, 0xb8, 0xaa, 0x9b, 0x89, 0x0a, 0x3b, - 0x9f, 0xc3, 0xb3, 0xa8, 0x17, 0x65, 0xd7, 0xb5, 0x41, 0xa2, 0xce, 0xa3, 0x6f, 0x2a, 0x9d, 0x7c, - 0x53, 0x4b, 0x87, 0x67, 0xf9, 0x2f, 0x8c, 0xbf, 0xd6, 0xf2, 0x5f, 0x48, 0xfb, 0xc3, 0xa4, 0xa3, - 0xcc, 0xa4, 0x3f, 0xcc, 0x54, 0x62, 0x46, 0xdd, 0x5a, 0xfe, 0xaf, 0xc8, 0x0c, 0xf1, 0xf2, 0xdc, - 0x49, 0x96, 0x45, 0xc2, 0x1c, 0x5b, 0xba, 0x43, 0xeb, 0xed, 0xc8, 0x02, 0xe7, 0xab, 0x8c, 0x34, - 0x4b, 0x86, 0x9d, 0x2c, 0x9e, 0x50, 0xcb, 0xe6, 0x78, 0x05, 0x9d, 0xc9, 0x02, 0x06, 0xad, 0xc9, - 0xb2, 0x05, 0x4e, 0x1a, 0xa5, 0x81, 0x3b, 0x5a, 0xaf, 0xc0, 0x4d, 0x07, 0x81, 0xdf, 0xbb, 0x0a, - 0x0e, 0x33, 0x67, 0x70, 0x55, 0xf7, 0xee, 0x2c, 0x4a, 0xd0, 0xca, 0xd7, 0x22, 0x68, 0xe7, 0x6b, - 0x10, 0x8c, 0xfe, 0x77, 0x3b, 0x5f, 0x02, 0x2f, 0x5f, 0x01, 0xa7, 0x2b, 0x2b, 0x86, 0xc9, 0x89, - 0x14, 0x82, 0xa2, 0x84, 0x11, 0x0d, 0xae, 0x36, 0x1f, 0x22, 0x57, 0x5a, 0xb0, 0x28, 0x8a, 0xa1, - 0xc7, 0xcd, 0x15, 0x16, 0x75, 0x3f, 0x44, 0xf1, 0x68, 0x09, 0xd7, 0x84, 0x99, 0xb5, 0x97, 0x47, - 0x56, 0x63, 0x67, 0x65, 0x55, 0x98, 0x61, 0xe3, 0x38, 0x22, 0x33, 0x43, 0x4d, 0x81, 0xd7, 0xef, - 0x98, 0xa3, 0x5c, 0x22, 0x31, 0xa6, 0x8f, 0x83, 0xae, 0x58, 0xc6, 0x6e, 0x7c, 0x50, 0xd7, 0x5f, - 0xfb, 0xc9, 0xc8, 0x23, 0x8c, 0x71, 0xf6, 0x14, 0x3a, 0x78, 0x6c, 0xbc, 0x0b, 0x53, 0x2b, 0xb9, - 0x18, 0x5e, 0xaa, 0x38, 0x33, 0x76, 0x56, 0xb2, 0x64, 0xa8, 0xa4, 0xd6, 0x69, 0xb7, 0x56, 0x16, - 0xc0, 0x24, 0x33, 0x87, 0x62, 0xe6, 0x8d, 0x28, 0x11, 0x4a, 0xc9, 0xf3, 0xea, 0x53, 0x6c, 0x30, - 0x99, 0xc6, 0xe3, 0xb1, 0x99, 0x42, 0xfd, 0x53, 0x26, 0x01, 0x10, 0x4f, 0x04, 0x10, 0x08, 0x01, - 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, 0x42, - 0x28, 0x91, 0x10, 0x4f, 0x28, 0x0a, 0x03, 0xe5, 0x76, 0x17, 0x66, 0xc6, 0x76, 0xc9, 0xad, 0xbc, - 0xc7, 0x08, 0xc7, 0xaa, 0x70, 0x33, 0xa5, 0x13, 0x0f, 0x24, 0x02, 0x02, 0x48, 0x44, 0xd0, 0x08, - 0x09, 0x2c, 0x31, 0x81, 0x25, 0x28, 0x98, 0x44, 0x45, 0x36, 0x61, 0x11, 0x4e, 0x5c, 0x8a, 0x8f, - 0xdc, 0xbf, 0x1e, 0x28, 0xac, 0x88, 0x9b, 0x6f, 0x46, 0x84, 0xdd, 0x6e, 0xa2, 0x52, 0x88, 0xb0, - 0x3b, 0x6d, 0x4b, 0xfc, 0x01, 0x60, 0x6b, 0x2b, 0xcc, 0x32, 0x95, 0xc4, 0x30, 0xa7, 0x3d, 0x18, - 0x7f, 0xbf, 0x7a, 0xf5, 0x69, 0xd5, 0xdc, 0x0e, 0xcd, 0x73, 0xcb, 0xdc, 0x3f, 0xfd, 0x67, 0xed, - 0xf7, 0xfa, 0xcd, 0xce, 0xeb, 0x7f, 0xb6, 0x6e, 0xee, 0xbf, 0xf9, 0xfd, 0xb1, 0x1f, 0x5b, 0xfb, - 0x7d, 0xeb, 0x66, 0x67, 0xc6, 0xff, 0xd9, 0xbc, 0xd9, 0xf9, 0xc5, 0xbf, 0x63, 0xe3, 0xe6, 0xd5, - 0x83, 0x1f, 0x1d, 0xbd, 0xbf, 0x3e, 0xeb, 0x17, 0xea, 0x33, 0x7e, 0xe1, 0xed, 0xac, 0x5f, 0x78, - 0x3b, 0xe3, 0x17, 0x66, 0x9a, 0xb4, 0x3e, 0xe3, 0x17, 0x36, 0x6e, 0xbe, 0x3f, 0xf8, 0xf9, 0x57, - 0x8f, 0xff, 0xe8, 0xe6, 0xcd, 0xeb, 0xef, 0xb3, 0xfe, 0xdf, 0xd6, 0xcd, 0xf7, 0x9d, 0xd7, 0xaf, - 0xff, 0x23, 0x3f, 0x35, 0x9c, 0x72, 0x7e, 0x4f, 0xb7, 0xa4, 0x65, 0x64, 0x08, 0x09, 0xab, 0x48, - 0x56, 0xb9, 0xb5, 0x2c, 0x63, 0x59, 0xc6, 0xb2, 0x8c, 0x65, 0x19, 0xcb, 0x32, 0x96, 0x65, 0x2c, - 0xcb, 0x58, 0x96, 0xb1, 0xe3, 0x32, 0xb6, 0xab, 0xe2, 0x2c, 0xca, 0xae, 0x13, 0x75, 0x8e, 0x54, - 0xc5, 0x6e, 0x00, 0xd8, 0xea, 0x4c, 0x96, 0x76, 0x37, 0x4c, 0x81, 0xf2, 0xc4, 0xed, 0x6d, 0x06, - 0x4e, 0x7b, 0x72, 0x62, 0x24, 0xd2, 0x81, 0x91, 0x88, 0x07, 0x45, 0x6a, 0x72, 0xdf, 0x05, 0x8f, - 0x17, 0x25, 0x7a, 0x5e, 0x8e, 0x22, 0xeb, 0xc4, 0x72, 0x5c, 0x6b, 0xd7, 0xb5, 0x11, 0x6f, 0x7a, - 0x03, 0xe1, 0x29, 0x4b, 0x00, 0x23, 0xcf, 0x6e, 0x3b, 0x8d, 0x63, 0xcb, 0x25, 0x8a, 0x88, 0xa2, - 0x17, 0x04, 0xa3, 0xc6, 0x7b, 0x1e, 0x54, 0x4b, 0xe8, 0x3c, 0x07, 0x3a, 0xf9, 0x8d, 0x82, 0x2d, - 0xef, 0xc8, 0xb7, 0xf7, 0x7c, 0xe7, 0xa8, 0x39, 0x66, 0x45, 0xc4, 0x11, 0x71, 0xf4, 0x1c, 0x1c, - 0x81, 0xdd, 0xb9, 0x4e, 0xf4, 0xc8, 0x43, 0x4f, 0x70, 0x62, 0x79, 0x8e, 0x35, 0x0a, 0x45, 0xc4, - 0x11, 0x71, 0xf4, 0x54, 0x1c, 0xe5, 0x87, 0xdd, 0x39, 0x4d, 0xdf, 0xf6, 0xf6, 0xad, 0x3d, 0x1b, - 0xef, 0xf6, 0x53, 0x22, 0x49, 0x0a, 0x92, 0x8a, 0x7a, 0x2c, 0xd8, 0x3b, 0x6a, 0xb6, 0x7d, 0xcf, - 0x72, 0x9a, 0x3e, 0x81, 0x44, 0x20, 0x3d, 0x19, 0x48, 0x87, 0xd6, 0xc7, 0x51, 0x95, 0x6f, 0x7b, - 0x27, 0xec, 0x16, 0x11, 0x4b, 0x73, 0xa0, 0x49, 0x96, 0xef, 0x7b, 0xce, 0xee, 0xb1, 0x6f, 0x33, - 0x1c, 0x11, 0x42, 0x4f, 0x86, 0xd0, 0xb1, 0xef, 0xb8, 0xce, 0xff, 0xec, 0x06, 0x03, 0x11, 0x51, - 0xf4, 0x7c, 0x14, 0xd9, 0x1f, 0x7d, 0xbb, 0xd9, 0xb0, 0x1b, 0x98, 0x97, 0xc7, 0x13, 0x47, 0x52, - 0x70, 0x64, 0x35, 0xde, 0x07, 0xae, 0xd5, 0x64, 0xf3, 0x9a, 0xf0, 0x79, 0x56, 0x32, 0x6b, 0x16, - 0xc5, 0x99, 0xdd, 0x08, 0xdc, 0x36, 0x63, 0x10, 0x41, 0xf4, 0x64, 0x10, 0xe5, 0xa7, 0x9a, 0xb3, - 0x67, 0x44, 0x24, 0xbd, 0x18, 0x49, 0xbe, 0x1d, 0x34, 0xec, 0x7d, 0xeb, 0xd8, 0xf5, 0x83, 0x43, - 0xdb, 0xf7, 0x9c, 0x3d, 0x82, 0x88, 0x20, 0x7a, 0x2a, 0x88, 0x46, 0x7c, 0xfa, 0xd0, 0xfa, 0xc8, - 0x0d, 0x35, 0xa2, 0xe8, 0x05, 0x28, 0xca, 0xd1, 0xe3, 0x1e, 0x31, 0x8f, 0x11, 0x3c, 0xcf, 0x08, - 0x41, 0xd3, 0xf0, 0xc3, 0x1e, 0x11, 0x51, 0xf4, 0x82, 0xe2, 0x6c, 0xbc, 0xed, 0xc1, 0x5e, 0x23, - 0x71, 0xf4, 0xc2, 0xfa, 0x6c, 0x33, 0x68, 0xda, 0xce, 0xc1, 0xbb, 0xdd, 0x23, 0x8f, 0xe5, 0x19, - 0x81, 0xf4, 0x22, 0x4e, 0xc4, 0x46, 0x23, 0xa1, 0xf3, 0xac, 0x18, 0x54, 0x67, 0x0c, 0x22, 0x90, - 0x5e, 0x0c, 0x24, 0xec, 0xfd, 0x32, 0x5e, 0xb1, 0xbe, 0xec, 0x6e, 0xa9, 0x89, 0x06, 0x14, 0x5a, - 0xbd, 0x47, 0xb8, 0x94, 0x0d, 0x17, 0x64, 0x95, 0x1e, 0xd1, 0x52, 0x7e, 0x8e, 0x7f, 0xcf, 0x4b, - 0xf9, 0x09, 0x11, 0x7d, 0x55, 0x77, 0xc4, 0x4b, 0x25, 0x78, 0x01, 0xdb, 0x0c, 0x24, 0x4a, 0xaa, - 0x43, 0x09, 0xa2, 0x8a, 0x8e, 0x78, 0x29, 0x1b, 0x2f, 0xe8, 0x6a, 0x39, 0x22, 0xa6, 0x6c, 0xc4, - 0x80, 0xab, 0xe2, 0x08, 0x98, 0xb2, 0x01, 0x83, 0xaf, 0x7e, 0x23, 0x66, 0x2a, 0xa1, 0x31, 0x88, - 0x2a, 0x37, 0x42, 0xa5, 0x6c, 0xa8, 0x20, 0xab, 0xd9, 0x88, 0x96, 0xb2, 0xd1, 0x82, 0xad, 0x5a, - 0x23, 0x5e, 0xca, 0xc6, 0x0b, 0xa4, 0x3a, 0x8d, 0x30, 0x29, 0x3d, 0x09, 0xe1, 0xaa, 0xd0, 0x08, - 0x96, 0x0a, 0x7a, 0x2e, 0x75, 0xf6, 0x5c, 0x88, 0x98, 0x5f, 0x47, 0x0c, 0xb0, 0xaa, 0x8c, 0x60, - 0x29, 0xbd, 0xdf, 0x02, 0xac, 0x1e, 0x23, 0x5a, 0x2a, 0xe9, 0xb4, 0x60, 0xa9, 0xc4, 0x08, 0x92, - 0xd2, 0x43, 0x0a, 0xb0, 0x1a, 0x8c, 0x68, 0x29, 0xbf, 0x18, 0x42, 0x56, 0x7d, 0x11, 0x2f, 0x15, - 0xd4, 0x43, 0xc8, 0xea, 0x2e, 0x02, 0xa6, 0x12, 0xce, 0xc2, 0x86, 0x1c, 0x21, 0xa2, 0xad, 0x5a, - 0x8b, 0x80, 0x29, 0x1b, 0x30, 0xdc, 0x0f, 0x22, 0x4c, 0x1e, 0x81, 0x89, 0x77, 0x74, 0xec, 0xdb, - 0x5e, 0xb0, 0x67, 0xb5, 0x78, 0x77, 0x1c, 0xf1, 0x33, 0x57, 0x1c, 0xdd, 0xfd, 0x13, 0x75, 0xc4, - 0x84, 0xd0, 0xb3, 0x20, 0x64, 0xb9, 0x07, 0x47, 0x9e, 0xe3, 0xbf, 0x3b, 0xa4, 0x94, 0x78, 0xb1, - 0x2f, 0x4a, 0x89, 0x49, 0x0a, 0xb4, 0x0b, 0xe6, 0x84, 0x0a, 0x83, 0x36, 0x91, 0x22, 0xa4, 0x20, - 0x6d, 0xf1, 0x8e, 0x6a, 0xa2, 0x67, 0xde, 0x28, 0x6a, 0x79, 0xf6, 0xbe, 0xf3, 0x31, 0xd8, 0x77, - 0xad, 0x03, 0x1e, 0x56, 0x44, 0xfc, 0x3c, 0x17, 0x3f, 0xbc, 0x9c, 0x81, 0xe8, 0x79, 0x06, 0x7a, - 0xf2, 0x9d, 0xbd, 0x09, 0x05, 0x22, 0x82, 0x88, 0xa0, 0xa7, 0x23, 0xc8, 0xb7, 0x0e, 0x36, 0xeb, - 0x04, 0x0e, 0x81, 0xf3, 0x8c, 0xd0, 0x53, 0x67, 0xe8, 0x21, 0x82, 0x5e, 0x14, 0x7a, 0xd8, 0x54, - 0x5d, 0xec, 0x8b, 0x4d, 0x55, 0xf6, 0x3f, 0xf4, 0xaa, 0x5c, 0x89, 0x13, 0x56, 0xa8, 0x44, 0x09, - 0x2b, 0x51, 0x22, 0x85, 0x15, 0x27, 0x01, 0xa2, 0x6b, 0x28, 0xa9, 0x33, 0x94, 0x10, 0x29, 0x9a, - 0x55, 0x90, 0x18, 0x95, 0xa3, 0xfc, 0x8a, 0x51, 0xf6, 0x3a, 0xca, 0xb5, 0x4e, 0xa6, 0x65, 0x42, - 0x83, 0xa6, 0x61, 0xc5, 0x71, 0x3f, 0x0b, 0xb3, 0xa8, 0x1f, 0x1b, 0x3b, 0x82, 0xc3, 0xa5, 0x91, - 0x76, 0x3e, 0xab, 0xcb, 0x70, 0x10, 0x66, 0x9f, 0x47, 0x01, 0xb2, 0xd6, 0x1f, 0xa8, 0xb8, 0xd3, - 0x8f, 0xcf, 0xa3, 0x0b, 0x33, 0x56, 0xd9, 0xd7, 0x7e, 0xf2, 0xc5, 0x8c, 0xe2, 0x34, 0x0b, 0xe3, - 0x8e, 0xaa, 0xdd, 0x7f, 0x23, 0x7d, 0xf0, 0x4e, 0x6d, 0x90, 0xf4, 0xb3, 0x7e, 0xa7, 0xdf, 0x4b, - 0x8b, 0xef, 0x6a, 0x51, 0x1a, 0xa5, 0xb5, 0x9e, 0xba, 0x52, 0xbd, 0xc9, 0x97, 0x5a, 0x2f, 0x8a, - 0xbf, 0x98, 0x69, 0x16, 0x66, 0xca, 0xec, 0x86, 0x59, 0x78, 0x16, 0xa6, 0xaa, 0xd6, 0x4b, 0x07, - 0xb5, 0xac, 0x77, 0x95, 0x8e, 0xfe, 0x53, 0xbb, 0xcc, 0xcc, 0x68, 0x70, 0x55, 0x37, 0x13, 0x15, - 0x76, 0x3e, 0x87, 0x67, 0x51, 0x2f, 0xca, 0xae, 0x6b, 0x83, 0x44, 0x9d, 0x47, 0xdf, 0x54, 0x3a, - 0xf9, 0xa6, 0x96, 0x0e, 0xcf, 0xf2, 0x5f, 0x18, 0x7f, 0xad, 0x45, 0x83, 0xab, 0x4d, 0x33, 0xed, - 0x0f, 0x93, 0x8e, 0x32, 0x93, 0xfe, 0x30, 0x53, 0x89, 0x19, 0x75, 0x6b, 0xf9, 0xbf, 0x22, 0x33, + 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x72, 0x83, 0x51, 0x9a, 0x3f, 0x33, 0x33, + 0x0d, 0x46, 0xf7, 0x67, 0x16, 0x79, 0xa2, 0x5c, 0x8c, 0x64, 0x4a, 0x63, 0x52, 0x85, 0x4e, 0xae, + 0xb4, 0x21, 0x59, 0xda, 0x90, 0x2d, 0x3d, 0x48, 0x17, 0x16, 0xf9, 0x02, 0x23, 0x61, 0x39, 0x44, + 0xf0, 0xe5, 0x62, 0xe3, 0x27, 0x5d, 0x98, 0x0c, 0xe7, 0x2e, 0xcb, 0x59, 0xfb, 0x00, 0x68, 0x7b, + 0x2b, 0x48, 0x53, 0x15, 0x47, 0xb0, 0xba, 0x31, 0xe3, 0xef, 0x37, 0x6f, 0x3e, 0xaf, 0x9a, 0xdb, + 0xa7, 0x3f, 0x3e, 0xaf, 0x99, 0xdb, 0xa7, 0xd9, 0xb7, 0x6b, 0xe3, 0x2f, 0xd9, 0xf7, 0xeb, 0x9f, + 0x57, 0xcd, 0xea, 0xf4, 0xfb, 0x8d, 0xcf, 0xab, 0xe6, 0xc6, 0xe9, 0xdb, 0xbf, 0xfe, 0x7a, 0xf7, + 0xf6, 0x9f, 0xf7, 0x37, 0xcf, 0xff, 0xc5, 0xff, 0x18, 0x1c, 0x19, 0x67, 0xf0, 0xbd, 0x83, 0x3e, + 0x8e, 0x8c, 0x97, 0x7f, 0x11, 0x1c, 0x19, 0x27, 0xbf, 0xd3, 0xca, 0x52, 0x8e, 0x8c, 0x2f, 0xd6, + 0x6e, 0xed, 0x27, 0x40, 0x1f, 0x1f, 0x1d, 0xe3, 0xd0, 0xf8, 0xf2, 0x58, 0xc8, 0xa1, 0x71, 0x86, + 0x8c, 0x39, 0x84, 0x0c, 0x8e, 0x8d, 0xdf, 0x19, 0x1b, 0x77, 0x06, 0x57, 0x55, 0x67, 0x7a, 0x87, + 0xac, 0xc9, 0x0d, 0xe2, 0xe0, 0xb8, 0x6e, 0xf1, 0x29, 0x6b, 0x47, 0xdd, 0xfa, 0x15, 0xe4, 0xdc, + 0xf8, 0x03, 0xf3, 0x39, 0x36, 0x3e, 0x0f, 0x33, 0x39, 0x36, 0xbe, 0x40, 0xe0, 0x72, 0x6c, 0x7c, + 0x71, 0xee, 0xc5, 0xb1, 0xf1, 0xa2, 0x09, 0x2e, 0xc7, 0xc6, 0x97, 0xad, 0xa6, 0xe1, 0xd8, 0xf8, + 0x62, 0xf3, 0x03, 0xc7, 0xc6, 0x49, 0x6c, 0x10, 0x09, 0x0e, 0x30, 0xd1, 0x41, 0x25, 0x3c, 0xf0, + 0xc4, 0x07, 0x9e, 0x00, 0x61, 0x13, 0x21, 0x0c, 0x42, 0x04, 0x42, 0x8c, 0xe0, 0x08, 0x52, 0x6e, + 0x30, 0xc7, 0xc6, 0x4b, 0x25, 0x4f, 0x1c, 0x1b, 0x27, 0x99, 0xd2, 0x98, 0x54, 0xa1, 0x93, 0x2b, + 0x6d, 0x48, 0x96, 0x36, 0x64, 0x4b, 0x0f, 0xd2, 0x85, 0x45, 0xbe, 0xc0, 0x48, 0x58, 0x0e, 0x11, + 0x8e, 0x8d, 0x0b, 0x61, 0x39, 0x1c, 0x1b, 0x2f, 0xe3, 0x02, 0x38, 0x36, 0xfe, 0xef, 0x2f, 0x8e, + 0x8d, 0x2f, 0x12, 0x7d, 0x1c, 0x1b, 0x2f, 0xff, 0x22, 0x38, 0x36, 0x4e, 0x7e, 0xa7, 0x95, 0xa5, + 0x1c, 0x1b, 0x5f, 0xac, 0xdd, 0xcb, 0x31, 0x03, 0x7a, 0x7f, 0x72, 0x8c, 0x53, 0xe3, 0xcb, 0x63, + 0x21, 0xa7, 0xc6, 0x19, 0x31, 0x5e, 0x1f, 0x31, 0x38, 0x34, 0x7e, 0x6f, 0x68, 0x3c, 0xff, 0x71, + 0xce, 0x8c, 0x6b, 0x1a, 0x9d, 0x8c, 0x70, 0x70, 0xb5, 0x09, 0xbe, 0x6c, 0x7c, 0x93, 0xcb, 0xc6, + 0x17, 0x64, 0x26, 0xa7, 0xc6, 0x17, 0x88, 0x5c, 0x4e, 0x8d, 0x2f, 0xce, 0xbd, 0x38, 0x35, 0x5e, + 0x34, 0xc1, 0xe5, 0xd4, 0xf8, 0xb2, 0xd5, 0x34, 0x9c, 0x1a, 0x5f, 0x6c, 0x7e, 0xe0, 0xd4, 0x38, + 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, + 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0d, 0xe6, 0xd4, 0x78, 0xa9, 0xe4, + 0x89, 0x53, 0xe3, 0x24, 0x53, 0x1a, 0x93, 0x2a, 0x74, 0x72, 0xa5, 0x0d, 0xc9, 0xd2, 0x86, 0x6c, + 0xe9, 0x41, 0xba, 0xb0, 0xc8, 0x17, 0x18, 0x09, 0xcb, 0x21, 0xa2, 0xc5, 0xd4, 0xf8, 0x26, 0xa7, + 0xc6, 0x4b, 0x62, 0x0c, 0x9a, 0x4c, 0x8d, 0x07, 0xe6, 0xb9, 0x65, 0xee, 0x9f, 0xfe, 0xb3, 0xf6, + 0x7b, 0xf5, 0x66, 0xe7, 0xed, 0x3f, 0x5b, 0x37, 0xf7, 0xdf, 0xfc, 0xf1, 0xd8, 0x8f, 0xad, 0xfd, + 0xbe, 0x75, 0xb3, 0x33, 0xe3, 0xff, 0x6c, 0xde, 0xec, 0x3c, 0xf1, 0xef, 0xd8, 0xb8, 0x79, 0xf3, + 0xe0, 0x47, 0x47, 0xef, 0xaf, 0xcf, 0xfa, 0x85, 0xea, 0x8c, 0x5f, 0x78, 0x3f, 0xeb, 0x17, 0xde, + 0xcf, 0xf8, 0x85, 0x99, 0x26, 0xad, 0xcf, 0xf8, 0x85, 0x8d, 0x9b, 0x1f, 0x0f, 0x7e, 0xfe, 0xcd, + 0xe3, 0x3f, 0xba, 0x79, 0xf3, 0xf6, 0xc7, 0xac, 0xff, 0xb7, 0x75, 0xf3, 0x63, 0xe7, 0x2d, 0x67, + 0xe8, 0x99, 0x8a, 0x7e, 0xf6, 0x45, 0xce, 0xd0, 0x97, 0x7f, 0x11, 0x9c, 0xa1, 0x27, 0xdb, 0xd5, + 0xca, 0x52, 0xce, 0xd0, 0x2f, 0xd6, 0xee, 0x65, 0x98, 0x88, 0xdd, 0xe4, 0xea, 0xf5, 0x65, 0xb6, + 0x90, 0x43, 0xf4, 0x0c, 0x19, 0x73, 0x08, 0x19, 0x9c, 0xa2, 0xff, 0x79, 0x8a, 0x7e, 0x93, 0xab, + 0xd7, 0xb5, 0x8f, 0x4f, 0x59, 0x73, 0x0e, 0x7a, 0xf5, 0xfa, 0x26, 0x57, 0xaf, 0x2f, 0xc6, 0x4c, + 0x0e, 0xd1, 0x2f, 0x10, 0xb8, 0x1c, 0xa2, 0x5f, 0x9c, 0x7b, 0x71, 0x88, 0xbe, 0x68, 0x82, 0xcb, + 0x21, 0xfa, 0x65, 0xab, 0x69, 0x38, 0x44, 0xbf, 0xd8, 0xfc, 0xc0, 0x21, 0x7a, 0x12, 0x1b, 0x44, + 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, + 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x1b, 0xcc, 0x21, 0xfa, 0x52, 0xc9, 0x13, 0x87, 0xe8, + 0x49, 0xa6, 0x34, 0x26, 0x55, 0xe8, 0xe4, 0x4a, 0x1b, 0x92, 0xa5, 0x0d, 0xd9, 0xd2, 0x83, 0x74, + 0x61, 0x91, 0x2f, 0x30, 0x12, 0x96, 0x43, 0x84, 0x43, 0xf4, 0x42, 0x58, 0x0e, 0x87, 0xe8, 0xcb, + 0xb8, 0x00, 0x0e, 0xd1, 0x73, 0x88, 0xfe, 0xe9, 0x2f, 0x0e, 0xd1, 0x2f, 0xd2, 0x17, 0x39, 0x44, + 0x5f, 0xfe, 0x45, 0x70, 0x88, 0x9e, 0x6c, 0x57, 0x2b, 0x4b, 0x39, 0x44, 0xbf, 0x58, 0xbb, 0x97, + 0x63, 0x22, 0x96, 0x8b, 0xe8, 0x97, 0xd7, 0x42, 0xce, 0xd0, 0x33, 0x62, 0xbc, 0x3e, 0x62, 0x70, + 0x84, 0xfe, 0xde, 0x08, 0x3d, 0x17, 0xd1, 0xeb, 0x1e, 0x9d, 0x8c, 0x5e, 0x10, 0x99, 0x41, 0xf7, + 0xff, 0x05, 0x1d, 0x15, 0x75, 0xae, 0xcd, 0x24, 0xec, 0x02, 0x8d, 0xcf, 0x3f, 0x62, 0x3b, 0x67, + 0xe7, 0xe7, 0x61, 0x26, 0x67, 0xe7, 0x17, 0x88, 0x5a, 0xce, 0xce, 0x2f, 0xce, 0xbd, 0x38, 0x3b, + 0x5f, 0x34, 0xb1, 0xe5, 0xec, 0xfc, 0xb2, 0xd5, 0x32, 0x30, 0xb3, 0xf3, 0x0f, 0xe8, 0x01, 0xde, + 0x1c, 0xfd, 0xc3, 0x4b, 0xe0, 0x4c, 0xfd, 0x32, 0x13, 0x1e, 0x44, 0xe2, 0x03, 0x4c, 0x80, 0x50, + 0x89, 0x10, 0x3c, 0x21, 0x82, 0x27, 0x46, 0xd8, 0x04, 0x09, 0x83, 0x28, 0x81, 0x10, 0x26, 0x38, + 0xe2, 0x94, 0x1b, 0x8c, 0x25, 0x3e, 0x7c, 0x90, 0x67, 0x90, 0x44, 0x88, 0xa0, 0xc4, 0x09, 0x96, + 0x40, 0x21, 0x13, 0x29, 0x0d, 0x08, 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, 0x69, 0x43, 0xb4, 0xf4, + 0x20, 0x5c, 0x58, 0xc4, 0x0b, 0x8c, 0x80, 0xc1, 0x12, 0xb1, 0xdc, 0xf0, 0xf3, 0x5e, 0x70, 0x91, + 0xe0, 0x06, 0xcb, 0x69, 0xbe, 0xca, 0x2e, 0x03, 0x34, 0xbe, 0x60, 0x0a, 0x1e, 0xe1, 0x89, 0x9a, + 0x0e, 0x84, 0x4d, 0x23, 0xe2, 0xa6, 0x0b, 0x81, 0xd3, 0x8e, 0xc8, 0x69, 0x47, 0xe8, 0xf4, 0x22, + 0x76, 0x98, 0x04, 0x0f, 0x94, 0xe8, 0xe5, 0xd0, 0x81, 0x15, 0x50, 0x3e, 0xc8, 0x18, 0x2a, 0x1a, + 0x5e, 0xaa, 0x38, 0x9b, 0x24, 0x05, 0xce, 0x1a, 0xd3, 0x2e, 0x57, 0x15, 0xf8, 0x1a, 0xec, 0x68, + 0x78, 0x39, 0x02, 0x15, 0x5d, 0xb9, 0xc8, 0xbb, 0x0e, 0x2d, 0x40, 0xcb, 0xaf, 0x42, 0x07, 0x21, + 0xda, 0xed, 0xc5, 0x68, 0x20, 0x48, 0xcb, 0x2f, 0x06, 0x5a, 0x98, 0x86, 0xcb, 0x2e, 0x00, 0xc3, + 0x91, 0x91, 0xcb, 0x07, 0x80, 0x26, 0x8b, 0x66, 0x12, 0x8b, 0xbb, 0x17, 0xc3, 0xce, 0x4c, 0x19, + 0xe6, 0xb3, 0x33, 0x23, 0xc8, 0x1d, 0xd8, 0x99, 0x91, 0xe3, 0xd6, 0xec, 0xcc, 0x08, 0xbf, 0x20, + 0x76, 0x66, 0xc8, 0x9f, 0x5e, 0x08, 0x1d, 0x7d, 0x3a, 0x33, 0xc9, 0x75, 0x92, 0xaa, 0x4b, 0x5c, + 0xfa, 0xb4, 0x02, 0xbe, 0xe7, 0xea, 0x96, 0x86, 0x80, 0xef, 0xbb, 0xca, 0x2f, 0xe4, 0xef, 0xcf, + 0xab, 0xe6, 0xb6, 0x65, 0xee, 0x07, 0xe6, 0xf9, 0xe9, 0x3f, 0xd5, 0x9b, 0xbf, 0xfe, 0x7a, 0xf7, + 0x8b, 0x37, 0xfe, 0x83, 0x1b, 0x75, 0x4f, 0x59, 0x67, 0x33, 0x4f, 0xcc, 0xf0, 0x83, 0xab, 0xa0, + 0x37, 0x54, 0xf8, 0x15, 0x76, 0x76, 0x19, 0xac, 0xad, 0x59, 0x5b, 0xb3, 0xb6, 0x66, 0x6d, 0xcd, + 0xda, 0x9a, 0xb5, 0x35, 0x6b, 0x6b, 0x72, 0x26, 0xd6, 0xd6, 0x4f, 0xc8, 0x18, 0xc3, 0x30, 0x4a, + 0xdf, 0xaf, 0x6b, 0x50, 0x58, 0x6f, 0x01, 0x5f, 0x82, 0x1b, 0x44, 0x17, 0x0a, 0xbe, 0xaa, 0xc6, + 0x4e, 0xd8, 0x2b, 0x93, 0xe1, 0x01, 0x78, 0xe6, 0xa1, 0x49, 0x61, 0xf1, 0xe0, 0x72, 0x4e, 0x26, + 0xb5, 0xaa, 0x2e, 0xd7, 0xb3, 0x1f, 0x07, 0x9d, 0x34, 0xec, 0x47, 0xb5, 0xf0, 0x22, 0x1c, 0x8f, + 0x77, 0xac, 0xc2, 0x5f, 0xd7, 0xcd, 0xef, 0x1a, 0x84, 0x80, 0xe0, 0x3b, 0x43, 0x80, 0xf0, 0x10, + 0x50, 0x5d, 0xdf, 0xae, 0x6e, 0x6f, 0x6e, 0xad, 0x6f, 0x6f, 0x30, 0x16, 0xb0, 0x20, 0xa1, 0xf5, + 0x77, 0x5f, 0x6c, 0xf7, 0x33, 0xd7, 0xcd, 0x0a, 0x33, 0xdf, 0x54, 0x78, 0xf1, 0x25, 0xc5, 0xef, + 0xf7, 0x4f, 0xae, 0x83, 0x0d, 0xff, 0x32, 0xcc, 0x67, 0xc3, 0x5f, 0x90, 0x27, 0xb0, 0xe1, 0x2f, + 0xc7, 0xad, 0xd9, 0xf0, 0x17, 0x7e, 0x41, 0x6c, 0xf8, 0x93, 0x35, 0xbd, 0x10, 0x3a, 0x7a, 0x35, + 0xfc, 0x3f, 0x68, 0xd0, 0xef, 0xdf, 0x60, 0xbf, 0xbf, 0xe4, 0x17, 0xfb, 0xfd, 0xac, 0x2b, 0x16, + 0x78, 0x39, 0xec, 0xf7, 0x33, 0x9b, 0x17, 0x11, 0x02, 0xd8, 0xef, 0x17, 0x1f, 0x02, 0xd6, 0x37, + 0xd8, 0xe8, 0x67, 0x21, 0x42, 0xeb, 0x7f, 0x7a, 0xb1, 0xd1, 0x4f, 0x8b, 0xe1, 0x53, 0x32, 0xea, + 0xc1, 0xaf, 0xb9, 0xfd, 0xda, 0x1f, 0xe7, 0xf8, 0xf0, 0x24, 0xb8, 0x87, 0x6f, 0x21, 0x9d, 0x07, + 0x8b, 0xe7, 0xd6, 0x40, 0x2e, 0x0d, 0x2a, 0x28, 0x82, 0x16, 0x12, 0x81, 0x92, 0x7e, 0xee, 0xb5, + 0x2f, 0x13, 0xe8, 0xdc, 0x6b, 0x5f, 0x9e, 0xbb, 0x72, 0xaf, 0xbd, 0x34, 0x0e, 0xca, 0xbd, 0xf6, + 0xe4, 0x34, 0xff, 0x0e, 0x11, 0xd8, 0xe7, 0x7f, 0xb7, 0xe7, 0x1d, 0xaa, 0xe0, 0x3c, 0x56, 0xe7, + 0x88, 0x11, 0x7f, 0xba, 0x3a, 0x03, 0x50, 0xe2, 0x63, 0xb4, 0x26, 0x95, 0xe1, 0xbb, 0x77, 0x59, + 0x91, 0x54, 0xc9, 0x28, 0x26, 0x4b, 0xa5, 0x25, 0xb6, 0x14, 0xe5, 0x54, 0xb5, 0x8f, 0xea, 0x1a, + 0xad, 0x28, 0xc2, 0x5c, 0x62, 0x0b, 0xbd, 0xb4, 0x16, 0x7a, 0x49, 0x2d, 0xe6, 0x52, 0x5a, 0x94, + 0x00, 0x02, 0xda, 0xdc, 0x65, 0x53, 0x17, 0xe8, 0x3c, 0xec, 0xec, 0x03, 0x4b, 0xe3, 0x61, 0x27, + 0x8d, 0x26, 0x54, 0xb7, 0x91, 0x7d, 0x02, 0xce, 0xe4, 0xe2, 0xfd, 0xd6, 0xe4, 0xb6, 0xfb, 0x4e, + 0x12, 0x26, 0x7e, 0x7d, 0x74, 0xbf, 0xfd, 0x7a, 0x32, 0xf0, 0xbd, 0xde, 0xd5, 0xf8, 0xad, 0xc6, + 0xe4, 0xc6, 0x59, 0xd3, 0x9b, 0xea, 0x4f, 0xdf, 0xf1, 0xf3, 0xbf, 0xa3, 0x3d, 0xbe, 0x71, 0x7e, + 0x3d, 0x88, 0xac, 0xe9, 0x4d, 0x6a, 0x87, 0x5d, 0x0c, 0x1e, 0x27, 0x9f, 0x15, 0xc9, 0xb6, 0x50, + 0x78, 0xb8, 0x45, 0x0b, 0xb3, 0xcb, 0x18, 0x5e, 0x65, 0x07, 0x0a, 0xb9, 0xee, 0x27, 0xd8, 0xf5, + 0x8c, 0x31, 0xa6, 0x72, 0xa4, 0xc8, 0x3f, 0x3c, 0xf0, 0xb6, 0x15, 0x74, 0xcf, 0x70, 0xe1, 0xe1, + 0x0d, 0xe3, 0xdc, 0x66, 0x98, 0xe7, 0x59, 0x48, 0xcf, 0xaf, 0x00, 0x9f, 0x57, 0xa1, 0x3d, 0x9f, + 0x82, 0x7d, 0x1e, 0x05, 0xfb, 0xfc, 0x09, 0xf3, 0x79, 0x13, 0x29, 0xfa, 0x6b, 0x3e, 0x72, 0x94, + 0x73, 0x91, 0x8d, 0x6c, 0x92, 0x0b, 0x26, 0x78, 0xe5, 0x2b, 0xe2, 0xc7, 0x66, 0xa3, 0xf4, 0xd5, + 0x21, 0x08, 0x0d, 0x1c, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, + 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, 0xb9, 0xc1, 0xbd, + 0x7e, 0x27, 0xe8, 0x99, 0x83, 0xb8, 0x9f, 0xaa, 0x0e, 0xa4, 0x7c, 0xe1, 0xb6, 0x1d, 0x74, 0xff, + 0x4a, 0x38, 0xff, 0x4c, 0x5a, 0xa5, 0x17, 0xbd, 0xd2, 0x80, 0x66, 0xa1, 0xd3, 0x2d, 0x6d, 0x68, + 0x97, 0x36, 0xf4, 0x4b, 0x0f, 0x1a, 0x86, 0x45, 0xc7, 0xc0, 0x68, 0x59, 0x0e, 0x11, 0xfc, 0xf9, + 0x67, 0x15, 0x0d, 0x2f, 0x55, 0x1c, 0x00, 0x12, 0x9c, 0xbb, 0x24, 0x67, 0xad, 0x0a, 0x68, 0xbb, + 0x1d, 0x0d, 0x2f, 0x47, 0xe0, 0xa1, 0x8b, 0x2e, 0xf2, 0x2e, 0x43, 0x4e, 0xbe, 0xe6, 0xd6, 0x23, + 0x4f, 0xc0, 0xde, 0x5e, 0x04, 0xf0, 0x24, 0x6c, 0x7e, 0x11, 0x90, 0x13, 0xb1, 0x78, 0x2c, 0x80, + 0xed, 0xa3, 0xb9, 0x52, 0x58, 0x4e, 0x1a, 0x0b, 0x1d, 0x85, 0xfb, 0x79, 0xd6, 0x08, 0x69, 0x53, + 0x04, 0xc7, 0x66, 0xb5, 0x8e, 0x1d, 0x1c, 0x9b, 0x15, 0x1e, 0x2b, 0x10, 0x86, 0xbd, 0x8a, 0x13, + 0x1e, 0x84, 0xd1, 0x57, 0xeb, 0xf6, 0xd6, 0x70, 0x9c, 0x58, 0xb7, 0x90, 0x94, 0x4d, 0xe5, 0x76, + 0x55, 0x2f, 0xb8, 0x06, 0x9b, 0x24, 0xce, 0x6c, 0xe6, 0x10, 0xf1, 0x3c, 0xcc, 0xe4, 0x10, 0xf1, + 0x02, 0xd1, 0xca, 0x21, 0xe2, 0xc5, 0xb9, 0x17, 0x87, 0x88, 0x8b, 0x66, 0xaf, 0x1c, 0x22, 0x5e, + 0xb6, 0x82, 0x85, 0x43, 0xc4, 0x8b, 0xcd, 0x0f, 0x1c, 0x22, 0x26, 0xb1, 0x41, 0x24, 0x38, 0xc0, + 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, + 0x31, 0x82, 0x23, 0x48, 0xb9, 0xc1, 0x81, 0x79, 0x16, 0xa6, 0xb8, 0x93, 0xc3, 0x99, 0xf9, 0x1c, + 0x17, 0x26, 0x81, 0xd2, 0x8b, 0x48, 0x69, 0x40, 0xa8, 0xd0, 0x89, 0x95, 0x36, 0x04, 0x4b, 0x1b, + 0xa2, 0xa5, 0x07, 0xe1, 0xc2, 0x22, 0x5e, 0x60, 0x04, 0x2c, 0x87, 0x08, 0xfe, 0xb8, 0xf0, 0x59, + 0xbf, 0xdf, 0x53, 0x01, 0xf4, 0xa8, 0xf0, 0x1a, 0x27, 0xf7, 0x96, 0xdd, 0x19, 0x0d, 0x8c, 0xe7, + 0xc9, 0x33, 0xbd, 0x10, 0xe1, 0xd1, 0x32, 0x0b, 0x0c, 0x16, 0x18, 0x2c, 0x30, 0x58, 0x60, 0xb0, + 0xc0, 0x60, 0x81, 0xc1, 0x02, 0x83, 0x05, 0xc6, 0x13, 0x23, 0xfe, 0x30, 0x8c, 0xd2, 0xf7, 0xeb, + 0xc0, 0xf5, 0x05, 0xe2, 0x69, 0x2c, 0x6e, 0x10, 0x5d, 0x8c, 0xee, 0xfe, 0x67, 0xc8, 0xc0, 0x88, + 0x7b, 0x48, 0xb9, 0x71, 0x14, 0x46, 0xf0, 0xa7, 0xac, 0x6b, 0x72, 0xba, 0x7a, 0x7e, 0xaa, 0x3a, + 0xfa, 0x75, 0x68, 0x74, 0x96, 0xfa, 0xcd, 0xef, 0xc0, 0xae, 0x1d, 0x7c, 0xa7, 0x6b, 0x0b, 0x73, + 0xed, 0xea, 0xfa, 0x76, 0x75, 0x7b, 0x73, 0x6b, 0x7d, 0x7b, 0x83, 0x3e, 0xce, 0x82, 0x60, 0xb9, + 0xac, 0x3e, 0x65, 0xdb, 0x7b, 0x89, 0x2d, 0xa5, 0x60, 0x7d, 0xb1, 0x76, 0x2f, 0x87, 0x08, 0x75, + 0xfc, 0xdc, 0x81, 0x5a, 0xf5, 0xe5, 0xb1, 0x90, 0x5a, 0x75, 0x86, 0x89, 0x17, 0x86, 0x09, 0xca, + 0xd4, 0xef, 0xc9, 0xd4, 0x6b, 0xe3, 0xbb, 0x42, 0x85, 0xba, 0x6e, 0x81, 0xe8, 0x8e, 0xda, 0xdb, + 0xbc, 0x0a, 0xe2, 0x10, 0x23, 0x1c, 0x3d, 0xa2, 0x55, 0xbf, 0x63, 0x3d, 0x55, 0xeb, 0xf3, 0x30, + 0x93, 0xaa, 0xf5, 0x05, 0xe2, 0x96, 0xaa, 0xf5, 0xc5, 0xb9, 0x17, 0x55, 0xeb, 0x45, 0xf3, 0x58, + 0xaa, 0xd6, 0x97, 0xad, 0x74, 0xa1, 0x6a, 0x7d, 0xb1, 0xf9, 0x81, 0xaa, 0x75, 0x12, 0x1b, 0x44, + 0x82, 0x03, 0x4c, 0x74, 0x50, 0x09, 0x0f, 0x3c, 0xf1, 0x81, 0x27, 0x40, 0xd8, 0x44, 0x08, 0x83, + 0x10, 0x81, 0x10, 0x23, 0x38, 0x82, 0x94, 0x1b, 0x4c, 0x51, 0x49, 0x69, 0xc4, 0x89, 0xa2, 0x12, + 0x12, 0x29, 0x8d, 0x09, 0x15, 0x3a, 0xb1, 0xd2, 0x86, 0x60, 0x69, 0x43, 0xb4, 0xf4, 0x20, 0x5c, + 0x58, 0xc4, 0x0b, 0x8c, 0x80, 0xe5, 0x10, 0xa1, 0xa8, 0xa4, 0x74, 0x7e, 0x43, 0x51, 0x49, 0xd1, + 0x2f, 0x8a, 0x4a, 0x48, 0xec, 0xe7, 0x70, 0x19, 0x14, 0x95, 0x30, 0xfd, 0xce, 0xd3, 0xb5, 0x29, + 0x2a, 0x11, 0xe7, 0xda, 0x14, 0x95, 0xb0, 0x20, 0x58, 0x56, 0xab, 0x29, 0x2a, 0x59, 0x66, 0x4b, + 0x29, 0x2a, 0x59, 0xac, 0xdd, 0x4b, 0x34, 0x2d, 0x7e, 0x3b, 0x7b, 0x4a, 0x79, 0xc9, 0xf2, 0x58, + 0x48, 0x79, 0x09, 0x03, 0xc6, 0xab, 0x03, 0x06, 0x85, 0x26, 0x8f, 0x09, 0x4d, 0x4e, 0xf2, 0xdb, + 0x43, 0xc5, 0x89, 0x6e, 0xb1, 0x29, 0xd3, 0x6c, 0x84, 0x5d, 0x30, 0x91, 0x49, 0xd8, 0xa5, 0xae, + 0x64, 0x2e, 0x66, 0x52, 0x57, 0xb2, 0x40, 0xa8, 0x52, 0x57, 0xb2, 0x38, 0xf7, 0xa2, 0xae, 0xa4, + 0x68, 0x02, 0x4b, 0x5d, 0xc9, 0xb2, 0xd5, 0x2c, 0xd4, 0x95, 0x2c, 0x36, 0x3f, 0x50, 0x57, 0x42, + 0x62, 0x83, 0x48, 0x70, 0x80, 0x89, 0x0e, 0x2a, 0xe1, 0x81, 0x27, 0x3e, 0xf0, 0x04, 0x08, 0x9b, + 0x08, 0x61, 0x10, 0x22, 0x10, 0x62, 0x04, 0x47, 0x90, 0x72, 0x83, 0x7b, 0xfd, 0x4e, 0xd0, 0xc3, + 0xd5, 0x95, 0x64, 0xe6, 0x53, 0x57, 0x42, 0x02, 0xa5, 0x17, 0x91, 0xd2, 0x80, 0x50, 0xa1, 0x13, + 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, 0x4b, 0x0f, 0xc2, 0x85, 0x45, 0xbc, 0xc0, 0x08, 0x58, 0x0e, + 0x11, 0xea, 0x4a, 0x4a, 0xe7, 0x37, 0xd4, 0x95, 0x14, 0xfd, 0xa2, 0xae, 0x84, 0xc4, 0x7e, 0x0e, + 0x97, 0x41, 0x5d, 0x09, 0xd3, 0xef, 0x3c, 0x5d, 0x9b, 0xba, 0x12, 0x71, 0xae, 0x4d, 0x5d, 0x09, + 0x0b, 0x82, 0x65, 0xb5, 0x9a, 0xba, 0x92, 0xa5, 0xcf, 0x51, 0x46, 0xac, 0x2e, 0xfb, 0xa9, 0xc2, + 0xed, 0x7b, 0x4f, 0xec, 0x67, 0xe3, 0xbb, 0x08, 0xb3, 0xd9, 0xf8, 0x2e, 0x11, 0xe9, 0x6c, 0x7c, + 0x97, 0xe7, 0xae, 0x6c, 0x7c, 0x0b, 0xbb, 0x10, 0x36, 0xbe, 0xc9, 0x6a, 0x7e, 0x01, 0x11, 0x36, + 0xbe, 0x4b, 0xe7, 0x37, 0x6c, 0x7c, 0x17, 0xfd, 0x62, 0xe3, 0x9b, 0xc4, 0x7e, 0x0e, 0x97, 0xc1, + 0xc6, 0x37, 0xd3, 0xef, 0x3c, 0x5d, 0x9b, 0x8d, 0x6f, 0x71, 0xae, 0xcd, 0xc6, 0x37, 0x0b, 0x82, + 0x65, 0xb5, 0x9a, 0x8d, 0xef, 0x65, 0xb6, 0x94, 0x0b, 0x95, 0x16, 0x6b, 0xf7, 0x72, 0xec, 0x47, + 0x09, 0xbb, 0xdc, 0xa1, 0xb4, 0x3c, 0x16, 0x72, 0x87, 0x12, 0x63, 0xc4, 0x4b, 0x62, 0x04, 0xd7, + 0x26, 0xdd, 0x5b, 0x9b, 0xe4, 0x74, 0xb9, 0x2a, 0x49, 0xbb, 0x10, 0x94, 0x6d, 0x1e, 0xea, 0xf5, + 0x93, 0x04, 0x6c, 0x59, 0xd2, 0xd8, 0x64, 0xae, 0x4b, 0x9a, 0x87, 0x99, 0x5c, 0x97, 0xb4, 0x40, + 0xb0, 0x72, 0x5d, 0xd2, 0xe2, 0xdc, 0x8b, 0xeb, 0x92, 0x8a, 0xe6, 0xaa, 0x5c, 0x97, 0xb4, 0x6c, + 0xe5, 0x09, 0xd7, 0x25, 0x2d, 0x36, 0x3f, 0x70, 0x5d, 0x12, 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, + 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, + 0x11, 0x1c, 0x41, 0xca, 0x0d, 0x0e, 0xcc, 0xb3, 0x30, 0xc5, 0x95, 0x8d, 0x64, 0xe6, 0x53, 0x35, + 0x42, 0x02, 0xa5, 0x17, 0x91, 0xd2, 0x80, 0x50, 0xa1, 0x13, 0x2b, 0x6d, 0x08, 0x96, 0x36, 0x44, + 0x4b, 0x0f, 0xc2, 0x85, 0x45, 0xbc, 0xc0, 0x08, 0x58, 0x0e, 0x11, 0x7c, 0xd5, 0xc8, 0x59, 0xbf, + 0xdf, 0x53, 0x41, 0x04, 0x2c, 0x1b, 0x59, 0x5b, 0xe3, 0x7c, 0xde, 0xb2, 0x3b, 0x23, 0xd0, 0x23, + 0xe5, 0x99, 0x9e, 0x88, 0xf2, 0x88, 0x99, 0x85, 0x06, 0x0b, 0x0d, 0x16, 0x1a, 0x2c, 0x34, 0x58, + 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, 0xe3, 0x89, 0x11, 0x9f, 0xf2, 0xf4, 0x12, 0x4c, 0xa7, + 0x3c, 0xbd, 0xa4, 0x1b, 0x4f, 0x79, 0xba, 0x9c, 0xcb, 0xa0, 0x3c, 0x9d, 0xe9, 0x77, 0x9e, 0xae, + 0x4d, 0x79, 0xba, 0x38, 0xd7, 0xa6, 0x3c, 0x9d, 0x05, 0xc1, 0xb2, 0x5a, 0x4d, 0x79, 0xfa, 0x32, + 0x5b, 0x4a, 0x79, 0xfa, 0x62, 0xed, 0x5e, 0x0e, 0xe9, 0x69, 0xaf, 0x9f, 0x24, 0x14, 0xa8, 0x2f, + 0x8f, 0x85, 0x14, 0xa8, 0x33, 0x4a, 0xbc, 0x2c, 0x4a, 0x50, 0xa2, 0x7e, 0x4f, 0xa2, 0x5e, 0x1f, + 0xdd, 0x14, 0x8a, 0xd4, 0x75, 0x0b, 0x43, 0xd9, 0xe3, 0xf8, 0x91, 0xff, 0xa9, 0x71, 0x41, 0x66, + 0xa6, 0x08, 0x1d, 0xf8, 0x9f, 0x87, 0x09, 0xee, 0x5b, 0x4f, 0xe9, 0xfa, 0x3c, 0xcc, 0xa4, 0x74, + 0x7d, 0x81, 0xb8, 0xa5, 0x74, 0x7d, 0x71, 0xee, 0x45, 0xe9, 0x7a, 0xd1, 0x2c, 0x96, 0xd2, 0xf5, + 0x65, 0x2b, 0x5c, 0x28, 0x5d, 0x5f, 0x6c, 0x7e, 0xa0, 0x74, 0x9d, 0xc4, 0x06, 0x91, 0xe0, 0x00, + 0x13, 0x1d, 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, 0x20, + 0xc4, 0x08, 0x8e, 0x20, 0xe5, 0x06, 0xa7, 0x88, 0x93, 0x97, 0x79, 0x9a, 0x01, 0xe8, 0xfb, 0xcc, + 0xa2, 0x4d, 0xd4, 0x93, 0x90, 0x46, 0x69, 0x4c, 0xa7, 0xd0, 0x69, 0x95, 0x36, 0xf4, 0x4a, 0x1b, + 0x9a, 0xa5, 0x07, 0xdd, 0xc2, 0xa2, 0x5d, 0x60, 0xf4, 0x2b, 0x87, 0x08, 0xbe, 0x9e, 0x44, 0x45, + 0xc3, 0x4b, 0x15, 0x67, 0x33, 0x02, 0xc0, 0xe2, 0xf5, 0x2a, 0xa0, 0xed, 0x76, 0x34, 0xbc, 0x1c, + 0x81, 0x87, 0x2e, 0xba, 0xc8, 0xbb, 0x5c, 0x0f, 0x93, 0xd4, 0x4a, 0xd3, 0x18, 0xd3, 0x4d, 0x8f, + 0xc2, 0xc8, 0xee, 0xa9, 0x51, 0x16, 0x4a, 0x8c, 0x9d, 0x95, 0x68, 0xd8, 0xeb, 0x01, 0x02, 0xfd, + 0x28, 0xf8, 0x8e, 0x7f, 0x11, 0xcd, 0xb8, 0xab, 0x62, 0xd5, 0xdd, 0xbd, 0x9e, 0x5c, 0x02, 0xc7, + 0x85, 0x97, 0xd8, 0x52, 0x8e, 0x0b, 0x2f, 0xd6, 0xee, 0xe5, 0x18, 0x04, 0xbc, 0x37, 0x58, 0xc4, + 0xc9, 0xe1, 0xe5, 0xb1, 0x90, 0x93, 0xc3, 0x0c, 0x18, 0xaf, 0x0e, 0x18, 0x1c, 0x22, 0xbe, 0x37, + 0x44, 0xdc, 0xca, 0xef, 0xcf, 0xb8, 0x30, 0xe7, 0x38, 0xb1, 0x6e, 0xb1, 0xc9, 0xb8, 0x0c, 0xbe, + 0x9b, 0x63, 0x57, 0x38, 0x0b, 0xa2, 0xee, 0xb7, 0xb0, 0x3b, 0xf6, 0x77, 0x90, 0x61, 0xe2, 0x47, + 0x6c, 0xe7, 0x28, 0xf1, 0x3c, 0xcc, 0xe4, 0x28, 0xf1, 0x02, 0x51, 0xcb, 0x51, 0xe2, 0xc5, 0xb9, + 0x17, 0x47, 0x89, 0x8b, 0xa6, 0xb5, 0x1c, 0x25, 0x5e, 0xb6, 0x4a, 0x86, 0xa3, 0xc4, 0x8b, 0xcd, + 0x0f, 0x1c, 0x25, 0x26, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, + 0x78, 0x02, 0x84, 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, 0xb9, 0xc1, 0x38, + 0xad, 0x9f, 0x99, 0xb9, 0x06, 0xa5, 0x03, 0x34, 0x8b, 0x40, 0x71, 0xa8, 0x98, 0x84, 0x4a, 0x63, + 0x62, 0x85, 0x4e, 0xb0, 0xb4, 0x21, 0x5a, 0xda, 0x10, 0x2e, 0x3d, 0x88, 0x17, 0x16, 0x01, 0x03, + 0x23, 0x62, 0x39, 0x44, 0xf0, 0x87, 0x8a, 0x43, 0xa5, 0xd4, 0x79, 0xaf, 0x1f, 0x60, 0x6f, 0xaa, + 0xdf, 0x06, 0x34, 0xbd, 0xae, 0xa2, 0x8b, 0x31, 0x31, 0xe6, 0xaa, 0xfa, 0x82, 0xef, 0x3c, 0x57, + 0xd5, 0xcb, 0xb9, 0x8c, 0x7c, 0x9f, 0x35, 0xd7, 0x58, 0x33, 0x09, 0xcf, 0xc1, 0xb5, 0xb9, 0xaa, + 0x9e, 0xae, 0x4d, 0xd7, 0xd6, 0xa3, 0x1a, 0xc0, 0xb5, 0x9a, 0x1b, 0xea, 0x97, 0xd9, 0x52, 0x4a, + 0x4e, 0x16, 0x6b, 0xb7, 0xf6, 0x13, 0xe4, 0x0f, 0xc7, 0x4f, 0x29, 0x38, 0x59, 0x1e, 0x0b, 0x29, + 0x38, 0x61, 0xb8, 0x78, 0x65, 0xb8, 0xa0, 0xdc, 0xe4, 0x8e, 0xdc, 0xe4, 0x28, 0xf8, 0x5e, 0x0f, + 0xa3, 0xaf, 0xbb, 0xf9, 0xcd, 0xa1, 0xd8, 0x44, 0xb7, 0xb8, 0x34, 0x16, 0x6c, 0xc4, 0x2a, 0x51, + 0xf1, 0x55, 0x70, 0xd6, 0x53, 0xd0, 0xba, 0x93, 0xd9, 0x97, 0x41, 0x09, 0xca, 0x3c, 0xcc, 0xa4, + 0x04, 0x65, 0x81, 0x00, 0xa6, 0x04, 0x65, 0x71, 0xee, 0x45, 0x09, 0x4a, 0xd1, 0x44, 0x97, 0x12, + 0x94, 0x65, 0xab, 0x6d, 0x28, 0x41, 0x59, 0x6c, 0x7e, 0xa0, 0x04, 0x85, 0xc4, 0x06, 0x91, 0xe0, + 0x00, 0x13, 0x1d, 0x54, 0xc2, 0x03, 0x4f, 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, + 0x20, 0xc4, 0x08, 0x8e, 0x20, 0xe5, 0x06, 0x53, 0x82, 0x52, 0x3a, 0x81, 0xa2, 0x04, 0x85, 0x84, + 0x4a, 0x63, 0x62, 0x85, 0x4e, 0xb0, 0xb4, 0x21, 0x5a, 0xda, 0x10, 0x2e, 0x3d, 0x88, 0x17, 0x16, + 0x01, 0x03, 0x23, 0x62, 0x39, 0x44, 0x28, 0x41, 0x91, 0x41, 0x72, 0x28, 0x41, 0x29, 0xfc, 0x45, + 0x09, 0x0a, 0xe9, 0xfd, 0x1c, 0x2e, 0x83, 0x73, 0xea, 0x4c, 0xc2, 0xf3, 0x74, 0x6d, 0x4a, 0x50, + 0xe8, 0xda, 0x74, 0x6d, 0x3d, 0xaa, 0x01, 0x5c, 0xab, 0x29, 0x41, 0x59, 0x66, 0x4b, 0x29, 0x41, + 0x59, 0xac, 0xdd, 0x4b, 0x31, 0x53, 0x3e, 0x73, 0x12, 0x95, 0x6a, 0x94, 0xe5, 0xb1, 0x90, 0x6a, + 0x14, 0x46, 0x8e, 0xf9, 0x45, 0x0e, 0x0a, 0x53, 0x7e, 0x16, 0xa6, 0xb8, 0xf9, 0x8d, 0xa2, 0x44, + 0x45, 0xef, 0x60, 0x65, 0x5c, 0x86, 0x91, 0x99, 0x2b, 0xb5, 0xba, 0xaa, 0x17, 0x5c, 0x03, 0xe9, + 0x52, 0x1e, 0xda, 0x4e, 0x31, 0xca, 0x3c, 0xcc, 0xa4, 0x18, 0x65, 0x81, 0xa8, 0xa5, 0x18, 0x65, + 0x71, 0xee, 0x45, 0x31, 0x4a, 0xd1, 0x3c, 0x97, 0x62, 0x94, 0x65, 0x2b, 0x6d, 0x28, 0x46, 0x59, + 0x6c, 0x7e, 0xa0, 0x18, 0x85, 0xc4, 0x06, 0x91, 0xe0, 0x00, 0x13, 0x1d, 0x54, 0xc2, 0x03, 0x4f, + 0x7c, 0xe0, 0x09, 0x10, 0x36, 0x11, 0xc2, 0x20, 0x44, 0x20, 0xc4, 0x08, 0x8e, 0x20, 0xe5, 0x06, + 0x07, 0xe6, 0x59, 0x98, 0xe2, 0x0a, 0x51, 0x32, 0xf3, 0x29, 0x42, 0x21, 0x81, 0xd2, 0x8b, 0x48, + 0x69, 0x40, 0xa8, 0xd0, 0x89, 0x95, 0x36, 0x04, 0x4b, 0x1b, 0xa2, 0xa5, 0x07, 0xe1, 0xc2, 0x22, + 0x5e, 0x60, 0x04, 0x2c, 0x87, 0x08, 0xbe, 0x08, 0xe5, 0xac, 0xdf, 0xef, 0xa9, 0x20, 0x02, 0x16, + 0xa0, 0xac, 0xad, 0x71, 0xe2, 0x6f, 0xd9, 0x9d, 0x71, 0xbc, 0x40, 0x10, 0xe3, 0xd9, 0xf2, 0x4c, + 0x4f, 0xbc, 0xbd, 0x04, 0x16, 0x1a, 0x2c, 0x34, 0x58, 0x68, 0xb0, 0xd0, 0x60, 0xa1, 0xc1, 0x42, + 0x83, 0xbc, 0x86, 0x85, 0x86, 0x16, 0x85, 0xc6, 0x30, 0x8c, 0xb0, 0x85, 0xee, 0x5b, 0x80, 0xa6, + 0xbb, 0x41, 0x74, 0xa1, 0xa8, 0x73, 0x2f, 0xfe, 0xc6, 0x53, 0xe7, 0x2e, 0xe7, 0x32, 0xa6, 0x62, + 0xd8, 0x55, 0x8a, 0x61, 0x99, 0x7e, 0xe7, 0xe0, 0xda, 0xd4, 0xb9, 0x8b, 0x73, 0xed, 0xea, 0xfa, + 0x76, 0x75, 0x7b, 0x73, 0x6b, 0x7d, 0x7b, 0x83, 0x3e, 0xce, 0x82, 0x60, 0xb9, 0xac, 0xa6, 0xe0, + 0x7d, 0xe9, 0x73, 0xd4, 0x58, 0xa7, 0x84, 0xde, 0xfe, 0xce, 0x2f, 0x81, 0xed, 0xef, 0x22, 0xcc, + 0x66, 0xfb, 0xbb, 0x44, 0xb0, 0xb3, 0xfd, 0x5d, 0x9e, 0xbb, 0xb2, 0xfd, 0x2d, 0xec, 0x42, 0xd8, + 0xfe, 0x26, 0xb7, 0xf9, 0x05, 0x44, 0xd8, 0xfe, 0x2e, 0x9d, 0xdf, 0xb0, 0xfd, 0x5d, 0xf4, 0x8b, + 0xed, 0x6f, 0x12, 0xfb, 0x39, 0x5c, 0x06, 0xdb, 0xdf, 0x4c, 0xbf, 0xf3, 0x74, 0x6d, 0xb6, 0xbf, + 0xc5, 0xb9, 0x36, 0xdb, 0xdf, 0x2c, 0x08, 0x96, 0xd5, 0x6a, 0xb6, 0xbf, 0x97, 0xd9, 0x52, 0xee, + 0x7b, 0x5d, 0xac, 0xdd, 0xfa, 0x6f, 0x6d, 0x7c, 0xb0, 0xe1, 0x8d, 0x4b, 0x5e, 0x97, 0xc7, 0x42, + 0x2e, 0x79, 0x65, 0xb8, 0x78, 0x65, 0xb8, 0xe0, 0x66, 0xd7, 0xbb, 0x9b, 0x5d, 0xc3, 0xe8, 0x28, + 0xf8, 0x5e, 0x0f, 0xa3, 0xaf, 0xb5, 0xf1, 0xbd, 0xe1, 0x3a, 0x57, 0xdd, 0xc2, 0x92, 0x11, 0xab, + 0x24, 0xec, 0x0e, 0x83, 0x9e, 0x89, 0x73, 0xc0, 0x6c, 0xde, 0x84, 0x7f, 0xc4, 0x76, 0xae, 0x73, + 0x9d, 0x87, 0x99, 0x5c, 0xe7, 0xba, 0x40, 0xd4, 0x72, 0x9d, 0xeb, 0xe2, 0xdc, 0x8b, 0xeb, 0x5c, + 0x8b, 0x66, 0xb4, 0x5c, 0xe7, 0xba, 0x6c, 0x45, 0x0c, 0xd7, 0xb9, 0x2e, 0x36, 0x3f, 0x70, 0x9d, + 0x2b, 0x89, 0x0d, 0x22, 0xc1, 0x01, 0x26, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, + 0x6c, 0x22, 0x84, 0x41, 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0d, 0xc6, 0x69, 0xfd, 0xcc, + 0xcc, 0x35, 0x48, 0x27, 0x73, 0x3d, 0x46, 0xa0, 0x28, 0x37, 0x21, 0xa1, 0xd2, 0x98, 0x58, 0xa1, + 0x13, 0x2c, 0x6d, 0x88, 0x96, 0x36, 0x84, 0x4b, 0x0f, 0xe2, 0x85, 0x45, 0xc0, 0xc0, 0x88, 0x58, + 0x0e, 0x11, 0x7c, 0xb9, 0x49, 0xa8, 0x94, 0x3a, 0xef, 0xf5, 0x03, 0x6c, 0xcd, 0xc9, 0x36, 0xa0, + 0xe9, 0x75, 0x15, 0x5d, 0x8c, 0x89, 0x31, 0x45, 0x27, 0x05, 0xdf, 0x79, 0x8a, 0x4e, 0xe4, 0x5c, + 0x46, 0x3e, 0x99, 0xce, 0x81, 0x74, 0x26, 0xe1, 0x39, 0xb8, 0x36, 0x45, 0x27, 0x74, 0x6d, 0xba, + 0xb6, 0x1e, 0xd5, 0x00, 0xae, 0xd5, 0xd4, 0x9a, 0x2c, 0xb3, 0xa5, 0xd4, 0x9a, 0x2c, 0xd6, 0x6e, + 0xed, 0x87, 0xc7, 0x1f, 0x8e, 0x9f, 0x52, 0x6b, 0xb2, 0x3c, 0x16, 0x52, 0x6b, 0xc2, 0x70, 0xf1, + 0xca, 0x70, 0x41, 0xad, 0xc9, 0x1d, 0xad, 0x89, 0x3b, 0xb9, 0x3d, 0xbb, 0xf9, 0xdd, 0xa1, 0xda, + 0x44, 0xb7, 0xc0, 0x04, 0x32, 0x92, 0x09, 0x35, 0x8a, 0x49, 0x4d, 0xc9, 0x9c, 0x0d, 0xa5, 0xa6, + 0x64, 0xa1, 0x26, 0x53, 0x53, 0x52, 0x90, 0xe1, 0xd4, 0x94, 0x90, 0x0f, 0xa0, 0x14, 0x2b, 0x30, + 0x9a, 0x92, 0x14, 0x69, 0x94, 0x20, 0x4f, 0x0f, 0x63, 0xab, 0xb1, 0x14, 0x25, 0xab, 0x54, 0x94, + 0x2c, 0x3d, 0xbd, 0x01, 0xa6, 0x39, 0xa8, 0x74, 0x07, 0x9e, 0xf6, 0xc0, 0xd3, 0x1f, 0x6c, 0x1a, + 0x84, 0x41, 0x87, 0x40, 0x68, 0x51, 0x0e, 0x05, 0xb8, 0x01, 0xc6, 0xdb, 0xc1, 0xc5, 0xae, 0x8a, + 0xd2, 0x30, 0xbd, 0x8e, 0xd5, 0x39, 0x52, 0xd4, 0x9e, 0xf6, 0x54, 0x80, 0x16, 0x70, 0x1a, 0xce, + 0xe4, 0x56, 0xef, 0x06, 0x89, 0xc2, 0x15, 0xf2, 0x38, 0x6d, 0xa7, 0xed, 0xb7, 0x8f, 0x77, 0xbd, + 0xfa, 0x89, 0xef, 0xfd, 0xd9, 0xb2, 0xd1, 0xd2, 0xce, 0x78, 0x9c, 0x26, 0x81, 0x9c, 0x17, 0x05, + 0x95, 0x64, 0x4c, 0x91, 0xe3, 0x36, 0x8f, 0x3d, 0xdb, 0xf5, 0xf7, 0xac, 0x96, 0xb5, 0xeb, 0xd4, + 0x1d, 0xef, 0xcf, 0x09, 0x8c, 0xda, 0x88, 0x38, 0xd2, 0x01, 0x4f, 0xd8, 0xb8, 0x7a, 0x0a, 0xbe, + 0xee, 0xfe, 0xc9, 0xe0, 0x24, 0x29, 0xa1, 0x35, 0x4f, 0x68, 0x59, 0xf5, 0x83, 0xa6, 0xeb, 0x78, + 0x87, 0x47, 0x06, 0x07, 0x19, 0x0b, 0x7d, 0x9d, 0xfe, 0x46, 0x0f, 0xa6, 0xe7, 0x2e, 0x59, 0x32, + 0x20, 0x84, 0x18, 0xf4, 0x89, 0x20, 0xb4, 0x5a, 0xd9, 0x77, 0x6d, 0x6b, 0xef, 0x90, 0xf5, 0x0e, + 0x51, 0xb5, 0x78, 0x74, 0x79, 0xb6, 0x5f, 0xb3, 0xf7, 0xad, 0xe3, 0xba, 0xe7, 0x1f, 0xd9, 0x9e, + 0xeb, 0xec, 0xb1, 0xe2, 0x21, 0xb8, 0xe6, 0x05, 0xae, 0xe3, 0xc6, 0x5e, 0xb3, 0xd1, 0xf6, 0x5c, + 0xcb, 0x69, 0xd8, 0x35, 0xbf, 0xde, 0x6e, 0x11, 0x5c, 0x04, 0xd7, 0xbc, 0xc0, 0x55, 0x77, 0x1a, + 0x1f, 0xfd, 0x9a, 0x5d, 0xb7, 0xd8, 0xa4, 0x21, 0xaa, 0x16, 0x80, 0x2a, 0xff, 0xc4, 0x72, 0x1d, + 0xcb, 0x73, 0x9a, 0x0d, 0xe2, 0x8b, 0xf8, 0x9a, 0x17, 0xbe, 0x9c, 0xd6, 0xc9, 0xa6, 0xdf, 0xb0, + 0x9d, 0x83, 0xc3, 0xdd, 0xa6, 0xeb, 0x5b, 0xb5, 0x9a, 0x6b, 0xb7, 0xdb, 0x04, 0x18, 0x01, 0x36, + 0x2f, 0x80, 0x59, 0xb5, 0x23, 0xa7, 0xe1, 0x1f, 0xb8, 0xcd, 0x63, 0xb2, 0x2d, 0xc2, 0x6a, 0x8e, + 0xb0, 0xfa, 0xc3, 0x6f, 0x3b, 0x35, 0x42, 0x8a, 0x90, 0x9a, 0x17, 0xa4, 0x8e, 0xac, 0x4f, 0x19, + 0xdd, 0xda, 0xb5, 0x1a, 0xb5, 0xff, 0x3a, 0x35, 0xef, 0x90, 0xe8, 0x22, 0xba, 0xe6, 0x48, 0xb4, + 0xaa, 0x24, 0x5a, 0x04, 0xd8, 0x62, 0x99, 0xbc, 0xd3, 0xf0, 0x6c, 0x77, 0xdf, 0xda, 0xb3, 0x89, + 0x30, 0x22, 0x6c, 0x21, 0xbd, 0x88, 0x7a, 0x93, 0xa0, 0x22, 0xa8, 0xe6, 0x07, 0xaa, 0x9c, 0x6c, + 0xf9, 0x79, 0x6f, 0xde, 0x23, 0xc0, 0x08, 0xb0, 0xb9, 0x01, 0xcc, 0xfe, 0xe4, 0xd9, 0x8d, 0x9a, + 0x5d, 0x63, 0x27, 0x82, 0xf8, 0x5a, 0x18, 0xb1, 0x27, 0xef, 0x22, 0xc2, 0x16, 0x86, 0xb0, 0x63, + 0xcf, 0xa9, 0x3b, 0xff, 0xb3, 0x6b, 0x6c, 0x4c, 0x10, 0x5d, 0xf3, 0x47, 0x97, 0x55, 0xfb, 0xc3, + 0xaf, 0x5b, 0x0d, 0x76, 0x53, 0x09, 0xab, 0x79, 0xc2, 0x6a, 0xc4, 0xb5, 0xf2, 0x8e, 0x2a, 0xc7, + 0x22, 0x88, 0xae, 0xf9, 0xb7, 0x22, 0x5a, 0x6e, 0xd3, 0xb3, 0xf7, 0x3c, 0xa7, 0xd9, 0xc8, 0x86, + 0x51, 0x89, 0x2f, 0xe2, 0x6b, 0x5e, 0x49, 0xf1, 0xc4, 0x72, 0xea, 0xd6, 0x6e, 0xdd, 0x26, 0xe7, + 0x22, 0xbc, 0x16, 0x14, 0xbe, 0x2c, 0xcf, 0x73, 0x9d, 0xdd, 0x63, 0xcf, 0x66, 0xb1, 0x48, 0x68, + 0xcd, 0xaf, 0x58, 0x6c, 0xb8, 0x76, 0xdb, 0x76, 0x4f, 0x58, 0x2e, 0x12, 0x5f, 0x8b, 0xc0, 0x97, + 0x6b, 0xb7, 0x9d, 0xda, 0xb1, 0x55, 0x27, 0xba, 0x88, 0xae, 0x05, 0x54, 0x8d, 0xd6, 0x27, 0x3f, + 0x8b, 0x5f, 0x24, 0x5f, 0xc4, 0xd8, 0x02, 0xc9, 0x17, 0x74, 0xb3, 0x8b, 0x0b, 0x0f, 0xe8, 0xba, + 0x3a, 0xb9, 0xac, 0xce, 0x6a, 0x50, 0x82, 0xa8, 0xfc, 0x8a, 0x08, 0x5e, 0xf5, 0x49, 0x10, 0x89, + 0x20, 0x0d, 0xa0, 0x8f, 0x31, 0x88, 0x1e, 0x39, 0xe8, 0x41, 0x56, 0x71, 0x12, 0x47, 0x65, 0xe3, + 0x48, 0x13, 0xb5, 0x26, 0x81, 0x54, 0x36, 0x90, 0xa0, 0x67, 0x21, 0x09, 0x9f, 0xf2, 0xe1, 0x03, + 0xaa, 0xbe, 0x24, 0x74, 0xca, 0x86, 0x8e, 0x0e, 0x2a, 0x4b, 0xa2, 0x48, 0x00, 0x11, 0xaa, 0x92, + 0x08, 0x11, 0x48, 0xf3, 0x61, 0xd4, 0x1a, 0x4c, 0xef, 0x13, 0x49, 0x22, 0x6a, 0x7c, 0x4c, 0x75, + 0x24, 0xc1, 0x53, 0x36, 0x78, 0x34, 0x51, 0x41, 0x12, 0x48, 0x65, 0x03, 0x49, 0x0f, 0xb5, 0x23, + 0x71, 0x24, 0x82, 0x60, 0x93, 0x17, 0x11, 0x49, 0xaf, 0x46, 0x92, 0x0e, 0xea, 0x45, 0xa2, 0xa8, + 0x6c, 0x14, 0x41, 0xab, 0x14, 0x09, 0x9f, 0xb2, 0xe1, 0xa3, 0x83, 0x1a, 0x91, 0x28, 0x12, 0x51, + 0xe2, 0xc3, 0xab, 0x0e, 0x89, 0xa3, 0xd2, 0x93, 0x99, 0x0e, 0xea, 0x42, 0xc2, 0x48, 0x44, 0x38, + 0x42, 0x56, 0x11, 0x12, 0x42, 0xa5, 0x17, 0x67, 0x5a, 0xa8, 0x05, 0x89, 0xa3, 0xb2, 0x71, 0xa4, + 0x83, 0x2a, 0x90, 0x28, 0x2a, 0xbd, 0x4a, 0xd3, 0x46, 0xfd, 0x47, 0x2c, 0x89, 0x20, 0x47, 0x6c, + 0x16, 0x11, 0x3a, 0x4f, 0x80, 0x4e, 0x8b, 0x27, 0x5c, 0x12, 0x55, 0x45, 0xa1, 0x6b, 0xfc, 0x64, + 0x6d, 0x72, 0x2c, 0x2f, 0x57, 0xee, 0x11, 0x59, 0xf3, 0x43, 0x96, 0x67, 0x1d, 0x6c, 0x56, 0x09, + 0x28, 0x02, 0x6a, 0x8e, 0xa1, 0x6a, 0x93, 0xa1, 0x8a, 0xc8, 0x5a, 0x48, 0xa8, 0x22, 0x9c, 0x08, + 0xa7, 0x79, 0xc1, 0xa9, 0xe5, 0xda, 0xfb, 0xce, 0x27, 0xae, 0x30, 0x26, 0xaa, 0x16, 0x80, 0xaa, + 0xfd, 0xba, 0x75, 0xd0, 0xe6, 0xb6, 0xa0, 0x62, 0x5f, 0xdc, 0x16, 0x44, 0xbf, 0x5d, 0xb6, 0xca, + 0x9a, 0x08, 0x62, 0x05, 0x4d, 0xe0, 0xb0, 0x52, 0x26, 0x82, 0x96, 0x33, 0xf4, 0x10, 0x36, 0x84, + 0xcd, 0x32, 0x55, 0xbe, 0x44, 0x0f, 0x2b, 0xdc, 0xe5, 0xa9, 0x6c, 0x71, 0x2a, 0x5a, 0x8c, 0xfb, + 0x2a, 0xdf, 0x4a, 0xd9, 0x16, 0x0a, 0x8f, 0xbe, 0x86, 0x15, 0x45, 0xfd, 0x34, 0x48, 0xc3, 0x7e, + 0x64, 0xec, 0x00, 0xc4, 0x5d, 0x23, 0xe9, 0x7c, 0x51, 0x97, 0xc1, 0x20, 0x48, 0xbf, 0x8c, 0x22, + 0x6d, 0xa5, 0x3f, 0x50, 0x51, 0xa7, 0x1f, 0x9d, 0x87, 0x17, 0x66, 0xa4, 0xd2, 0x6f, 0xfd, 0xf8, + 0xab, 0x19, 0x46, 0x49, 0x1a, 0x44, 0x1d, 0x55, 0xb9, 0xff, 0x46, 0xf2, 0xe0, 0x9d, 0xca, 0x20, + 0xee, 0xa7, 0xfd, 0x4e, 0xbf, 0x97, 0xe4, 0xdf, 0x55, 0xc2, 0x24, 0x4c, 0x2a, 0x3d, 0x75, 0xa5, + 0x7a, 0x93, 0x2f, 0x95, 0x5e, 0x18, 0x7d, 0x35, 0x93, 0x34, 0x48, 0x95, 0xd9, 0x0d, 0xd2, 0xe0, + 0x2c, 0x48, 0x54, 0xa5, 0x97, 0x0c, 0x2a, 0x69, 0xef, 0x2a, 0x19, 0xfd, 0x67, 0xfc, 0x2b, 0x66, + 0xa4, 0xc2, 0x8b, 0x2f, 0x67, 0xfd, 0xd8, 0x0c, 0xd2, 0x34, 0x0e, 0xcf, 0x86, 0xe9, 0xc8, 0x80, + 0xec, 0xad, 0x24, 0xff, 0xae, 0x72, 0x6b, 0x4b, 0x6e, 0x43, 0x32, 0x3c, 0x1b, 0xff, 0x4d, 0xd9, + 0xd7, 0xca, 0xf8, 0x1f, 0x92, 0x9d, 0x25, 0xe4, 0x7a, 0x9c, 0x60, 0x6f, 0x33, 0x46, 0xf0, 0x51, + 0xe7, 0xc1, 0xb0, 0x97, 0x9a, 0x97, 0x2a, 0x8d, 0xc3, 0x8e, 0x78, 0x87, 0xcb, 0x09, 0xcd, 0x43, + 0xd3, 0x85, 0x47, 0xb5, 0x8f, 0x61, 0xd4, 0x35, 0x76, 0x56, 0xd6, 0x84, 0x9b, 0xb9, 0x37, 0x8e, + 0x5c, 0xc6, 0xce, 0xca, 0xaa, 0x70, 0x43, 0x5b, 0xb1, 0x3a, 0x0f, 0xbf, 0x63, 0x64, 0x88, 0x29, + 0x68, 0xfb, 0x1d, 0x73, 0x14, 0x98, 0x01, 0x46, 0x0b, 0x8d, 0x76, 0x7f, 0x18, 0x77, 0x14, 0xc4, + 0xed, 0xcd, 0xdc, 0x4b, 0x5d, 0x7f, 0xeb, 0xc7, 0x23, 0x0f, 0x33, 0x06, 0x19, 0x32, 0x30, 0x6a, + 0x4c, 0xe3, 0x30, 0x48, 0xac, 0xf8, 0x62, 0x78, 0xa9, 0xa2, 0xd4, 0xd8, 0x59, 0x49, 0xe3, 0xa1, + 0x02, 0x31, 0xfc, 0x8e, 0xd5, 0x39, 0xb0, 0xc9, 0xcc, 0xb5, 0x66, 0xe6, 0xb5, 0x30, 0x06, 0xa1, + 0xe4, 0x63, 0xc6, 0x0a, 0x13, 0xbc, 0xa6, 0xf9, 0x21, 0x33, 0x1b, 0xc4, 0xff, 0x31, 0x08, 0x0d, + 0x1c, 0xb1, 0x41, 0x24, 0x38, 0xc0, 0x44, 0x07, 0x95, 0xf0, 0xc0, 0x13, 0x1f, 0x78, 0x02, 0x84, + 0x4d, 0x84, 0x30, 0x08, 0x11, 0x08, 0x31, 0x82, 0x23, 0x48, 0xb9, 0xc1, 0x20, 0x6d, 0x9f, 0x99, + 0x89, 0x06, 0xa2, 0xf7, 0x33, 0x8b, 0x3a, 0xad, 0x82, 0x99, 0x8d, 0x46, 0xa1, 0x90, 0xa9, 0x94, + 0x06, 0x94, 0x0a, 0x9d, 0x5a, 0x69, 0x43, 0xb1, 0xb4, 0xa1, 0x5a, 0x7a, 0x50, 0x2e, 0x2c, 0xea, + 0x05, 0x46, 0xc1, 0x72, 0x88, 0x78, 0xd7, 0x03, 0x85, 0x1d, 0xf1, 0x87, 0x61, 0x94, 0xbe, 0x5f, + 0x47, 0x0c, 0xf8, 0x13, 0x7e, 0xb3, 0x05, 0x68, 0xba, 0x1b, 0x44, 0x17, 0x0a, 0x76, 0x7b, 0x02, + 0xae, 0x1e, 0xcb, 0x38, 0x0a, 0x23, 0x58, 0x86, 0x00, 0x4e, 0xec, 0x1f, 0x5c, 0xc6, 0x78, 0x87, + 0x88, 0x06, 0xd7, 0xb1, 0x1f, 0x07, 0x9d, 0x34, 0xec, 0x47, 0xb5, 0xf0, 0x22, 0x4c, 0x93, 0xd1, + 0x05, 0x51, 0x24, 0x5a, 0x86, 0x6b, 0x07, 0xdf, 0xe9, 0xda, 0xc2, 0x5c, 0xbb, 0xba, 0xbe, 0x5d, + 0xdd, 0xde, 0xdc, 0x5a, 0xdf, 0xde, 0xa0, 0x8f, 0xb3, 0x20, 0x58, 0x2e, 0xab, 0xb1, 0x24, 0xc6, + 0x37, 0x7c, 0x96, 0xb0, 0x8c, 0x99, 0x14, 0x6d, 0x0c, 0x3a, 0xb7, 0x5b, 0xfb, 0x71, 0xe8, 0x07, + 0xa3, 0xa7, 0x08, 0x03, 0xd2, 0x38, 0x3e, 0xca, 0x11, 0xad, 0x25, 0x8a, 0x1a, 0x4b, 0x18, 0x2d, + 0x10, 0xa6, 0x7f, 0x93, 0x34, 0x1e, 0x76, 0xd2, 0x68, 0xd2, 0x88, 0x6c, 0x64, 0xb7, 0xd9, 0x99, + 0x5c, 0xa1, 0xdf, 0x9a, 0xdc, 0x5b, 0xdf, 0x49, 0xc2, 0xc4, 0xaf, 0x8f, 0x6e, 0xaa, 0x5f, 0x4f, + 0x06, 0xbe, 0xd7, 0xbb, 0x1a, 0xbf, 0xd5, 0x98, 0xdc, 0x1d, 0x6b, 0x7a, 0xe7, 0xfc, 0xe9, 0x3b, + 0x7e, 0xfe, 0x77, 0xb4, 0xc7, 0x77, 0xc7, 0xf7, 0x54, 0x2d, 0xbb, 0x39, 0x47, 0xd9, 0xbd, 0xa1, + 0xc8, 0x44, 0xb7, 0xa8, 0x64, 0xa4, 0x08, 0x8d, 0xf8, 0x5b, 0x5d, 0xc9, 0xc8, 0x5a, 0x0c, 0x29, + 0xc9, 0x2a, 0xa5, 0x24, 0xf3, 0x31, 0x94, 0x52, 0x92, 0x85, 0x9a, 0x4c, 0x29, 0x49, 0x41, 0x86, + 0x53, 0x4a, 0x42, 0x36, 0x80, 0x52, 0xa7, 0xc0, 0x3c, 0x9e, 0xcf, 0x23, 0x6e, 0x4f, 0x05, 0xe7, + 0xb1, 0x3a, 0x47, 0x88, 0xb8, 0x53, 0x69, 0x06, 0xc0, 0x03, 0x78, 0xa3, 0x35, 0x29, 0xfd, 0xde, + 0xbd, 0xcb, 0xda, 0x28, 0x95, 0x31, 0x03, 0x63, 0x1d, 0xa0, 0x5d, 0x1d, 0x30, 0x1c, 0x15, 0xf6, + 0x49, 0x1a, 0x07, 0x61, 0xa4, 0xba, 0x66, 0x2f, 0x19, 0xe0, 0x14, 0x05, 0x0f, 0x4d, 0xa7, 0xd8, + 0x9c, 0x15, 0x02, 0x2b, 0x04, 0x56, 0x08, 0xac, 0x10, 0x58, 0x21, 0xb0, 0x42, 0x58, 0xc8, 0x47, + 0x4e, 0xb1, 0xf9, 0x62, 0xf3, 0x03, 0xc5, 0xe6, 0x24, 0x36, 0x88, 0x04, 0x07, 0x98, 0xe8, 0xa0, + 0x12, 0x1e, 0x78, 0xe2, 0x03, 0x4f, 0x80, 0xb0, 0x89, 0x10, 0x06, 0x21, 0x02, 0x21, 0x46, 0x70, + 0x04, 0x29, 0x37, 0xb8, 0xd3, 0x1f, 0x8e, 0x81, 0x0b, 0xaa, 0x35, 0xcf, 0xcc, 0xa7, 0xd4, 0x9c, + 0x04, 0x4a, 0x2f, 0x22, 0xa5, 0x01, 0xa1, 0x42, 0x27, 0x56, 0xda, 0x10, 0x2c, 0x6d, 0x88, 0x96, + 0x1e, 0x84, 0x0b, 0x8b, 0x78, 0x81, 0x11, 0xb0, 0x1c, 0x22, 0x7a, 0x48, 0xcd, 0xd7, 0x36, 0x81, + 0xa5, 0xe6, 0x9b, 0x94, 0x9a, 0x17, 0xfc, 0xa2, 0xd4, 0x9c, 0xc4, 0x7e, 0x0e, 0x97, 0x41, 0xa9, + 0x39, 0xd3, 0xef, 0x3c, 0x5d, 0x9b, 0x52, 0x73, 0x71, 0xae, 0xbd, 0xb9, 0xb1, 0xf1, 0x9e, 0x2a, + 0x73, 0xd6, 0x02, 0x4b, 0x66, 0x35, 0x55, 0xe6, 0x4b, 0x9f, 0x9e, 0x30, 0xb4, 0x4f, 0x33, 0xab, + 0x42, 0x00, 0x2d, 0x94, 0x26, 0xb9, 0x93, 0xfd, 0xee, 0x32, 0x71, 0xce, 0x7e, 0x77, 0x79, 0xee, + 0xca, 0x7e, 0xb7, 0xb0, 0x0b, 0x61, 0xbf, 0x9b, 0x8c, 0xe6, 0x17, 0x10, 0xc1, 0xef, 0x77, 0x87, + 0x5d, 0x15, 0xa5, 0x61, 0x7a, 0x8d, 0xa1, 0xe7, 0x9a, 0x45, 0x72, 0xd6, 0x00, 0xab, 0x6a, 0xc3, + 0x99, 0xdc, 0xfa, 0xdd, 0x20, 0x01, 0xce, 0x5b, 0xf9, 0xb9, 0xda, 0x6d, 0xa7, 0xed, 0xb7, 0x8f, + 0x77, 0xbd, 0xfa, 0x89, 0xef, 0xfd, 0xd9, 0xb2, 0x51, 0xd3, 0xd7, 0xb8, 0x57, 0x93, 0xc0, 0x3e, + 0x8c, 0x58, 0x81, 0x7e, 0x20, 0xf1, 0x13, 0xa2, 0xdc, 0xe6, 0xb1, 0x67, 0xbb, 0xfe, 0x9e, 0xd5, + 0x9a, 0x9e, 0xd5, 0x9e, 0xc1, 0xab, 0x8d, 0x8c, 0x2f, 0x9d, 0x70, 0xa6, 0x07, 0xde, 0x9e, 0x82, + 0xbb, 0xbb, 0x7f, 0x32, 0xe0, 0xaf, 0xf6, 0xe6, 0x77, 0x42, 0x0e, 0x00, 0x72, 0x56, 0xfd, 0xa0, + 0xe9, 0x3a, 0xde, 0xe1, 0x91, 0x06, 0x88, 0x83, 0xbe, 0x82, 0x53, 0x3e, 0xc0, 0xa4, 0x87, 0x33, + 0x99, 0x10, 0x5a, 0x4c, 0x1a, 0x44, 0xd6, 0x32, 0x20, 0xcb, 0x69, 0xfb, 0xae, 0x6d, 0xed, 0x1d, + 0xb2, 0xee, 0x22, 0xda, 0xca, 0x43, 0x9d, 0x67, 0xfb, 0x35, 0x7b, 0xdf, 0x3a, 0xae, 0x7b, 0xfe, + 0x91, 0xed, 0xb9, 0xce, 0x1e, 0x2b, 0x2f, 0x82, 0x6e, 0xd1, 0xa0, 0x3b, 0x6e, 0xec, 0x35, 0x1b, + 0x6d, 0xcf, 0xb5, 0x9c, 0x86, 0x5d, 0xf3, 0xeb, 0xed, 0x16, 0x41, 0x47, 0xd0, 0x2d, 0x1a, 0x74, + 0x75, 0xa7, 0xf1, 0xd1, 0xaf, 0xd9, 0x75, 0x8b, 0xcd, 0x25, 0xa2, 0xad, 0x40, 0xb4, 0xf9, 0x27, + 0x96, 0xeb, 0x58, 0x9e, 0xd3, 0x6c, 0x10, 0x77, 0xc4, 0xdd, 0xa2, 0x71, 0xe7, 0xb4, 0x4e, 0x36, + 0xfd, 0x86, 0xed, 0x1c, 0x1c, 0xee, 0x36, 0x5d, 0xdf, 0xaa, 0xd5, 0x5c, 0xbb, 0xdd, 0x26, 0xf0, + 0x08, 0xbc, 0x45, 0x03, 0xcf, 0xaa, 0x1d, 0x39, 0x0d, 0xff, 0xc0, 0x6d, 0x1e, 0x93, 0xcd, 0x11, + 0x6e, 0x05, 0xc0, 0xed, 0x0f, 0xbf, 0xed, 0xd4, 0x08, 0x35, 0x42, 0x6d, 0xd1, 0x50, 0x3b, 0xb2, + 0x3e, 0x65, 0x74, 0x6e, 0xd7, 0x6a, 0xd4, 0xfe, 0xeb, 0xd4, 0xbc, 0x43, 0xa2, 0x8e, 0xa8, 0x2b, + 0x80, 0xc8, 0x55, 0x49, 0xe4, 0x08, 0xbc, 0x72, 0x2a, 0x08, 0xa7, 0xe1, 0xd9, 0xee, 0xbe, 0xb5, + 0x67, 0x13, 0x79, 0x44, 0x5e, 0xa1, 0x3d, 0x93, 0x7a, 0x93, 0x60, 0x23, 0xd8, 0x16, 0x0f, 0xb6, + 0x9c, 0xcc, 0xf9, 0xf9, 0xb3, 0x08, 0x8f, 0xc0, 0x23, 0xf0, 0x16, 0x0e, 0x3c, 0xfb, 0x93, 0x67, + 0x37, 0x6a, 0x76, 0x8d, 0x1d, 0x13, 0xe2, 0xae, 0xf0, 0x82, 0x82, 0xbc, 0x8e, 0xc8, 0x2b, 0x1c, + 0x79, 0xc7, 0x9e, 0x53, 0x77, 0xfe, 0x67, 0xd7, 0xd8, 0x40, 0x21, 0xea, 0x8a, 0x43, 0x9d, 0x55, + 0xfb, 0xc3, 0xaf, 0x5b, 0x0d, 0x76, 0x89, 0x09, 0xb7, 0x22, 0xe0, 0x36, 0xe2, 0x72, 0x79, 0xa7, + 0x98, 0x63, 0x26, 0x44, 0x5d, 0x71, 0x2d, 0x93, 0x96, 0xdb, 0xf4, 0xec, 0x3d, 0xcf, 0x69, 0x36, + 0xb2, 0xe1, 0x61, 0xe2, 0x8e, 0xb8, 0x5b, 0x74, 0x72, 0x3d, 0xb1, 0x9c, 0xba, 0xb5, 0x5b, 0xb7, + 0xc9, 0xe9, 0x08, 0xbb, 0x82, 0xc3, 0x9d, 0xe5, 0x79, 0xae, 0xb3, 0x7b, 0xec, 0xd9, 0x2c, 0x5e, + 0x09, 0xb9, 0xc5, 0x17, 0xaf, 0x0d, 0xd7, 0x6e, 0xdb, 0xee, 0x09, 0xcb, 0x57, 0xe2, 0xae, 0x48, + 0xdc, 0xb9, 0x76, 0xdb, 0xa9, 0x1d, 0x5b, 0x75, 0xa2, 0x8e, 0xa8, 0x2b, 0xb0, 0x8a, 0xb5, 0x3e, + 0xf9, 0x59, 0xbc, 0x23, 0xb9, 0x23, 0xf6, 0x4a, 0x20, 0x77, 0x5a, 0x34, 0xeb, 0xb8, 0x88, 0x83, + 0x2e, 0xbe, 0x4c, 0xae, 0xbd, 0x0c, 0xea, 0x62, 0x82, 0x4b, 0x5e, 0x65, 0xa6, 0x8d, 0x8a, 0x98, + 0xe0, 0x12, 0x49, 0x46, 0xc0, 0x1f, 0xe3, 0x10, 0x55, 0x72, 0x51, 0xa5, 0x83, 0x2a, 0x98, 0xf8, + 0x92, 0x86, 0x2f, 0xcd, 0xd4, 0xbf, 0x04, 0x98, 0x34, 0x80, 0x69, 0x31, 0xb3, 0x4a, 0x58, 0xc9, + 0x83, 0x15, 0xb8, 0x9a, 0x97, 0x90, 0x92, 0x06, 0x29, 0x9d, 0x54, 0xbb, 0x44, 0x97, 0x40, 0xa2, + 0x55, 0x25, 0xd1, 0x22, 0xc0, 0x16, 0xcb, 0xe4, 0x35, 0x52, 0x6b, 0x10, 0x61, 0x22, 0x7b, 0x11, + 0xd8, 0x6a, 0x5b, 0x82, 0x4a, 0x1a, 0xa8, 0x34, 0x53, 0xd5, 0x12, 0x60, 0xd2, 0x00, 0xa6, 0x97, + 0x7a, 0x96, 0xf8, 0x12, 0x49, 0xec, 0xc9, 0xbb, 0x88, 0xb0, 0x85, 0x21, 0x4c, 0x27, 0x35, 0x2c, + 0xd1, 0x25, 0x0d, 0x5d, 0x5a, 0xa8, 0x5e, 0x09, 0x2b, 0x69, 0xb0, 0xd2, 0x49, 0xdd, 0x4a, 0x74, + 0x89, 0x6c, 0x45, 0x68, 0xa3, 0x62, 0x25, 0xbe, 0xc4, 0x25, 0x45, 0x9d, 0xd4, 0xaa, 0x84, 0x97, + 0xc8, 0xf0, 0xa5, 0x83, 0x2a, 0x95, 0xd0, 0x12, 0x57, 0x2c, 0x6a, 0xa5, 0x3e, 0x25, 0xbe, 0xa4, + 0xe1, 0x4b, 0x27, 0x95, 0x29, 0xd1, 0x25, 0xae, 0x6a, 0xd4, 0x4e, 0x4d, 0x4a, 0x8c, 0x89, 0x24, + 0x5f, 0x6c, 0x76, 0x11, 0x52, 0xaf, 0x80, 0x54, 0x8b, 0x27, 0xf1, 0x12, 0x6d, 0x65, 0xa3, 0x6e, + 0xfc, 0xe4, 0x71, 0x72, 0xdc, 0x38, 0x57, 0x56, 0x12, 0x71, 0x8b, 0x47, 0x9c, 0x67, 0x1d, 0x6c, + 0x56, 0x09, 0x34, 0x02, 0xad, 0x80, 0xd0, 0xb6, 0xc9, 0xd0, 0x46, 0xc4, 0x15, 0x1a, 0xda, 0x08, + 0x33, 0xc2, 0x6c, 0xd1, 0x30, 0x6b, 0xb9, 0xf6, 0xbe, 0xf3, 0x89, 0x2b, 0xc6, 0x89, 0xb6, 0x02, + 0xd1, 0xb6, 0x5f, 0xb7, 0x0e, 0xda, 0xdc, 0x92, 0x55, 0xee, 0x8b, 0x5b, 0xb2, 0xe8, 0xdf, 0xac, + 0xfc, 0x89, 0x2c, 0x56, 0xf8, 0x04, 0xd4, 0x72, 0x85, 0xaa, 0x4d, 0x86, 0x2a, 0x22, 0x8b, 0x15, + 0x3b, 0xe1, 0xc4, 0xca, 0x9c, 0xa8, 0x5a, 0x4e, 0x54, 0x81, 0x57, 0xe0, 0x98, 0x95, 0x37, 0x5e, + 0xc5, 0x8d, 0x75, 0x9f, 0x71, 0xac, 0xc5, 0xb0, 0x14, 0x24, 0x7a, 0x1b, 0x56, 0x14, 0xf5, 0xd3, + 0x20, 0x0d, 0xfb, 0x91, 0xb1, 0x03, 0x14, 0xb7, 0x8d, 0xa4, 0xf3, 0x45, 0x5d, 0x06, 0x83, 0x20, + 0xfd, 0x32, 0x8a, 0xd4, 0x95, 0xfe, 0x40, 0x45, 0x9d, 0x7e, 0x74, 0x1e, 0x5e, 0x98, 0x91, 0x4a, + 0xbf, 0xf5, 0xe3, 0xaf, 0x66, 0x18, 0x25, 0x69, 0x10, 0x75, 0x54, 0xe5, 0xfe, 0x1b, 0xc9, 0x83, + 0x77, 0x2a, 0x83, 0xb8, 0x9f, 0xf6, 0x3b, 0xfd, 0x5e, 0x92, 0x7f, 0x57, 0x09, 0x93, 0x30, 0xa9, + 0xf4, 0xd4, 0x95, 0xea, 0x4d, 0xbe, 0x54, 0x7a, 0x61, 0xf4, 0xd5, 0x4c, 0xd2, 0x20, 0x55, 0x66, + 0x37, 0x48, 0x83, 0xb3, 0x20, 0x51, 0x95, 0x5e, 0x32, 0xa8, 0xa4, 0xbd, 0xab, 0x64, 0xf4, 0x9f, + 0xf1, 0xaf, 0x98, 0x91, 0x0a, 0x2f, 0xbe, 0x9c, 0xf5, 0x63, 0x33, 0x48, 0xd3, 0x38, 0x3c, 0x1b, + 0xa6, 0x23, 0x03, 0xb2, 0xb7, 0x92, 0xfc, 0xbb, 0xca, 0xad, 0x2d, 0xb9, 0x0d, 0xc9, 0xf0, 0x6c, + 0xfc, 0x37, 0x65, 0x5f, 0x2b, 0xc3, 0xd1, 0xf5, 0x24, 0x69, 0x1c, 0x84, 0x91, 0xea, 0x9a, 0xa3, + 0x7f, 0x67, 0xfc, 0x4f, 0x63, 0xe4, 0x1d, 0xf9, 0x3e, 0x2a, 0xdb, 0x42, 0xe1, 0xd1, 0x03, 0x2d, + 0x6a, 0x2c, 0x61, 0xb4, 0x00, 0x98, 0x5c, 0x34, 0x92, 0x34, 0x1e, 0x76, 0xd2, 0x68, 0xc2, 0xb6, + 0x1b, 0xd9, 0x6d, 0x76, 0x26, 0x57, 0xe8, 0xb7, 0x26, 0xf7, 0xd6, 0x77, 0x92, 0x30, 0xf1, 0xeb, + 0xa3, 0x9b, 0xea, 0xd7, 0x93, 0x81, 0xef, 0xf5, 0xae, 0xc6, 0x6f, 0x35, 0x26, 0x77, 0xc7, 0x9a, + 0xde, 0x39, 0x7f, 0xfa, 0x8e, 0x9f, 0xff, 0x1d, 0xed, 0xf1, 0xdd, 0xf1, 0x8f, 0xef, 0xde, 0x9d, + 0x7a, 0x32, 0x90, 0x1d, 0x44, 0xe5, 0x86, 0x26, 0xc1, 0x61, 0xc9, 0x18, 0x46, 0xb1, 0x4a, 0x54, + 0x7c, 0xa5, 0xba, 0xe6, 0x59, 0x10, 0x75, 0xbf, 0x85, 0xdd, 0xb1, 0xb3, 0xcb, 0x0e, 0x4e, 0x79, + 0xa9, 0xf9, 0xa8, 0xf5, 0xc2, 0x93, 0xc0, 0xc7, 0x30, 0xea, 0x1a, 0x3b, 0x2b, 0x6b, 0xc2, 0xcd, + 0xdc, 0x1b, 0x07, 0x7a, 0x63, 0x67, 0x65, 0x55, 0xb8, 0xa1, 0xad, 0x58, 0x9d, 0x87, 0xdf, 0x31, + 0x12, 0xea, 0x14, 0xb7, 0xfd, 0x8e, 0x39, 0xca, 0x63, 0x08, 0xd9, 0xa6, 0xdd, 0x1f, 0xc6, 0x1d, + 0x05, 0x53, 0xe5, 0x18, 0x1f, 0xd5, 0xf5, 0xb7, 0x7e, 0x3c, 0xf2, 0x30, 0x63, 0x90, 0x21, 0x03, + 0xa4, 0xa4, 0x3c, 0x0c, 0x12, 0x2b, 0xbe, 0x18, 0x5e, 0xaa, 0x28, 0x35, 0x76, 0x56, 0xd2, 0x78, + 0xa8, 0x50, 0x6a, 0xe1, 0x5b, 0xab, 0x73, 0x60, 0xb3, 0x90, 0xd1, 0xba, 0x90, 0xa9, 0x85, 0x31, + 0x48, 0x05, 0xa3, 0xd2, 0xe1, 0xc0, 0x1c, 0xc4, 0x61, 0x3f, 0x0e, 0xd3, 0x6b, 0x9c, 0x28, 0x36, + 0x4d, 0x14, 0xf7, 0xec, 0x07, 0x89, 0x08, 0x18, 0x14, 0x07, 0x8e, 0xea, 0x20, 0x52, 0x1e, 0x60, + 0xea, 0x83, 0x4a, 0x81, 0xe0, 0xa9, 0x10, 0x3c, 0x25, 0xc2, 0xa6, 0x46, 0x18, 0x14, 0x09, 0x84, + 0x2a, 0xc1, 0x51, 0xa6, 0xdc, 0x60, 0x38, 0xd2, 0xf4, 0x20, 0xd5, 0x80, 0xd1, 0xa6, 0xfb, 0xf4, + 0x69, 0x15, 0xcc, 0x6c, 0x34, 0x1a, 0x85, 0x4c, 0xa7, 0x34, 0xa0, 0x55, 0xe8, 0xf4, 0x4a, 0x1b, + 0x9a, 0xa5, 0x0d, 0xdd, 0xd2, 0x83, 0x76, 0x61, 0xd1, 0x2f, 0x30, 0x1a, 0x96, 0x43, 0xc4, 0xbb, + 0x1e, 0x28, 0xec, 0x88, 0xdf, 0x53, 0xc1, 0x79, 0xac, 0xce, 0x11, 0x23, 0xfe, 0xb4, 0x3f, 0xb4, + 0x05, 0x68, 0x7b, 0x6b, 0x32, 0x0d, 0xf1, 0xee, 0x5d, 0x36, 0x59, 0x54, 0xc9, 0x59, 0x26, 0x07, + 0x17, 0x97, 0x3d, 0xb2, 0x18, 0xd9, 0xac, 0x19, 0x6c, 0xc1, 0x94, 0x99, 0x8f, 0x59, 0x2d, 0xad, + 0xb1, 0x5a, 0x62, 0xb5, 0xc4, 0x6a, 0x89, 0xd5, 0x12, 0xab, 0x25, 0x56, 0x4b, 0xe4, 0x34, 0xf3, + 0x85, 0x08, 0x5a, 0xf3, 0x3a, 0x37, 0x1c, 0x67, 0xa6, 0xf1, 0x97, 0x39, 0x0b, 0x65, 0xc0, 0xf1, + 0x57, 0x44, 0x6d, 0x15, 0xd4, 0x7c, 0x54, 0xc2, 0xa6, 0x03, 0x71, 0xd3, 0x88, 0xc0, 0xe9, 0x42, + 0xe4, 0xb4, 0x23, 0x74, 0xda, 0x11, 0x3b, 0xbd, 0x08, 0x1e, 0x26, 0xd1, 0x03, 0x25, 0x7c, 0x39, + 0x74, 0x60, 0xdb, 0xe4, 0x0f, 0x32, 0x46, 0xa8, 0x94, 0x3a, 0xef, 0xf5, 0x83, 0xf4, 0xfd, 0x3a, + 0x72, 0xd6, 0x98, 0x90, 0xa8, 0x6d, 0xe0, 0x4b, 0xa8, 0xab, 0xe8, 0x62, 0x4c, 0xc8, 0xb1, 0xb7, + 0xeb, 0xe3, 0xef, 0xcd, 0x34, 0x8e, 0xc2, 0x08, 0x9e, 0x7f, 0x68, 0x52, 0x5e, 0x3c, 0xb8, 0x9c, + 0xf1, 0x19, 0x14, 0xc6, 0xce, 0x4a, 0x55, 0x93, 0xeb, 0xd9, 0x8f, 0x83, 0x4e, 0x1a, 0xf6, 0xa3, + 0x5a, 0x78, 0x11, 0xa6, 0xc9, 0xe8, 0x83, 0xe2, 0xf2, 0x5f, 0x09, 0x21, 0x20, 0xf8, 0xce, 0x10, + 0xc0, 0x10, 0xc0, 0x10, 0xb0, 0x4c, 0xd5, 0x08, 0xbe, 0xf5, 0x98, 0x9b, 0xa4, 0xf1, 0xee, 0x37, + 0x60, 0x8a, 0xc3, 0x1d, 0x5c, 0x7f, 0x50, 0xb3, 0x82, 0x0e, 0xb0, 0x6b, 0x92, 0x8f, 0xd9, 0xf1, + 0x97, 0xe4, 0x0b, 0xec, 0xf8, 0xcb, 0x71, 0x6b, 0x76, 0xfc, 0x85, 0x5f, 0x10, 0x3b, 0xfe, 0x64, + 0x4e, 0x2f, 0x84, 0x8e, 0x3e, 0x1d, 0xff, 0x61, 0x18, 0xa5, 0x1f, 0x34, 0xe8, 0xf5, 0x6f, 0x00, + 0x5f, 0x82, 0x1b, 0x44, 0x17, 0x8a, 0xad, 0xfe, 0xf2, 0x3f, 0x08, 0xb6, 0xfa, 0xe5, 0x5e, 0xce, + 0xb4, 0xcf, 0xb7, 0xca, 0x3e, 0x1f, 0xb3, 0xf9, 0x02, 0x43, 0x00, 0x5b, 0xfd, 0xe2, 0x43, 0xc0, + 0x16, 0x43, 0x00, 0xcb, 0x10, 0x5a, 0x7f, 0xf7, 0xc5, 0x56, 0x3f, 0x2d, 0x86, 0x4f, 0xc8, 0xa8, + 0x07, 0x46, 0xe4, 0xf6, 0x2f, 0xc1, 0x2a, 0xf8, 0x87, 0xab, 0xa4, 0x2b, 0x3f, 0xaf, 0x5f, 0x44, + 0x3a, 0x4a, 0x02, 0xcf, 0xab, 0xb9, 0x6e, 0x6c, 0xae, 0xfc, 0x58, 0x5d, 0x03, 0x3e, 0x41, 0x34, + 0xea, 0x61, 0x92, 0x5a, 0x69, 0x0a, 0xb6, 0x2a, 0xed, 0x28, 0x8c, 0xec, 0x9e, 0xba, 0x54, 0xd1, + 0x98, 0xea, 0x46, 0xc3, 0x5e, 0x0f, 0x68, 0x67, 0xc1, 0x51, 0xf0, 0x1d, 0xd7, 0xf8, 0x66, 0xdc, + 0x55, 0xb1, 0xea, 0xee, 0x5e, 0x4f, 0x4c, 0x67, 0x0c, 0x21, 0x67, 0x21, 0x57, 0xc1, 0x1a, 0x19, + 0x29, 0xee, 0x40, 0x9b, 0xf6, 0xe8, 0x16, 0xb5, 0xa0, 0xf6, 0xf5, 0xf0, 0x48, 0x30, 0xad, 0x63, + 0x2d, 0x8f, 0x04, 0x43, 0x88, 0xad, 0x3c, 0xf8, 0x4a, 0x3b, 0xe7, 0x33, 0x86, 0x69, 0xd8, 0x0b, + 0xff, 0x0f, 0xf4, 0xd8, 0xab, 0x87, 0xb6, 0xf3, 0xd0, 0xab, 0x79, 0x98, 0xc9, 0x43, 0xaf, 0x16, + 0x88, 0x5a, 0x1e, 0x7a, 0xb5, 0xc8, 0x6e, 0x0f, 0x0f, 0xbd, 0x2a, 0x96, 0xb7, 0xf1, 0xd0, 0xab, + 0x65, 0xa3, 0xea, 0x38, 0x87, 0x5e, 0x41, 0x6d, 0x21, 0x85, 0xdc, 0x3e, 0xca, 0x23, 0xae, 0x48, + 0x70, 0x34, 0x20, 0x3a, 0xa8, 0x84, 0x07, 0x9e, 0xf8, 0xc0, 0x13, 0x20, 0x6c, 0x22, 0x84, 0x41, + 0x88, 0x40, 0x88, 0x11, 0x1c, 0x41, 0xca, 0x0d, 0xc6, 0xdd, 0x0e, 0x0a, 0xbf, 0x15, 0x94, 0x87, + 0x5c, 0x91, 0x50, 0x2d, 0x01, 0xb1, 0x42, 0x27, 0x58, 0xda, 0x10, 0x2d, 0x6d, 0x08, 0x97, 0x1e, + 0xc4, 0x0b, 0x8b, 0x80, 0x81, 0x11, 0xb1, 0x1c, 0x22, 0xf8, 0x87, 0x5c, 0x61, 0x6f, 0xed, 0x04, + 0xde, 0xd6, 0x89, 0xbe, 0xa5, 0x13, 0x58, 0xbf, 0xae, 0x83, 0x54, 0x57, 0x13, 0x7d, 0x9e, 0x2e, + 0x2b, 0xf8, 0x74, 0xd2, 0xe3, 0x01, 0x4b, 0x71, 0xb5, 0x90, 0xe0, 0xd2, 0xb5, 0xe9, 0xda, 0xac, + 0x06, 0xa0, 0xad, 0x3e, 0xa5, 0x84, 0x6d, 0xd9, 0x53, 0x93, 0x91, 0x22, 0xd6, 0x86, 0x79, 0x5d, + 0x38, 0xb6, 0x9e, 0x1d, 0xef, 0x22, 0xcc, 0x66, 0xc7, 0xbb, 0x44, 0x9c, 0xb3, 0xe3, 0x5d, 0x9e, + 0xbb, 0xb2, 0xe3, 0x2d, 0xec, 0x42, 0xd8, 0xf1, 0x26, 0xa3, 0xf9, 0x05, 0x44, 0x34, 0xe8, 0x78, + 0x77, 0x55, 0x94, 0x86, 0xe9, 0x75, 0xac, 0xce, 0x81, 0x3b, 0xde, 0x6b, 0x80, 0x4b, 0x2b, 0x0d, + 0x67, 0x72, 0xeb, 0x77, 0x83, 0x44, 0xe1, 0x2f, 0x8f, 0x77, 0xda, 0x4e, 0xdb, 0x6f, 0x1f, 0xef, + 0x7a, 0xf5, 0x13, 0xdf, 0xfb, 0xb3, 0x65, 0xa3, 0xa6, 0xaf, 0x71, 0x9f, 0x26, 0x81, 0xde, 0x21, + 0x0a, 0xde, 0xf0, 0x9b, 0x22, 0xca, 0x6d, 0x1e, 0x7b, 0xb6, 0xeb, 0xef, 0x59, 0x2d, 0x6b, 0xd7, + 0xa9, 0x3b, 0xde, 0x9f, 0x13, 0x78, 0xb5, 0x91, 0xf1, 0xa5, 0x13, 0xce, 0xf4, 0xc0, 0xdb, 0x53, + 0x70, 0x77, 0xf7, 0x4f, 0x06, 0xb7, 0x8b, 0x12, 0x72, 0x45, 0x40, 0xce, 0xaa, 0x1f, 0x34, 0x5d, + 0xc7, 0x3b, 0x3c, 0x32, 0xb8, 0xcc, 0xb2, 0xd4, 0xd7, 0x29, 0x1f, 0x5e, 0xd2, 0xc3, 0x99, 0x4c, + 0x08, 0x2d, 0x26, 0x0d, 0x22, 0x6b, 0x19, 0x90, 0xe5, 0xb4, 0x7d, 0xd7, 0xb6, 0xf6, 0x0e, 0x59, + 0x77, 0x11, 0x6d, 0xe5, 0xa1, 0xce, 0xb3, 0xfd, 0x9a, 0xbd, 0x6f, 0x1d, 0xd7, 0x3d, 0xff, 0xc8, + 0xf6, 0x5c, 0x67, 0x8f, 0x95, 0x17, 0x41, 0xb7, 0x68, 0xd0, 0x1d, 0x37, 0xf6, 0x9a, 0x8d, 0xb6, + 0xe7, 0x5a, 0x4e, 0xc3, 0xae, 0xf9, 0xf5, 0x76, 0x8b, 0xa0, 0x23, 0xe8, 0x16, 0x0d, 0xba, 0xba, + 0xd3, 0xf8, 0xe8, 0xd7, 0xec, 0xba, 0xc5, 0xe6, 0x12, 0xd1, 0x56, 0x20, 0xda, 0xfc, 0x13, 0xcb, + 0x75, 0x2c, 0xcf, 0x69, 0x36, 0x88, 0x3b, 0xe2, 0x6e, 0xd1, 0xb8, 0x73, 0x5a, 0x27, 0x9b, 0x7e, + 0xc3, 0x76, 0x0e, 0x0e, 0x77, 0x9b, 0xae, 0x6f, 0xd5, 0x6a, 0xae, 0xdd, 0x6e, 0x13, 0x78, 0x04, + 0xde, 0xa2, 0x81, 0x67, 0xd5, 0x8e, 0x9c, 0x86, 0x7f, 0xe0, 0x36, 0x8f, 0xc9, 0xe6, 0x08, 0xb7, + 0x02, 0xe0, 0xf6, 0x87, 0xdf, 0x76, 0x6a, 0x84, 0x1a, 0xa1, 0xb6, 0x68, 0xa8, 0x1d, 0x59, 0x9f, + 0x32, 0x3a, 0xb7, 0x6b, 0x35, 0x6a, 0xff, 0x75, 0x6a, 0xde, 0x21, 0x51, 0x47, 0xd4, 0x15, 0x40, + 0xe4, 0xaa, 0x24, 0x72, 0x04, 0x5e, 0x39, 0x15, 0x84, 0xd3, 0xf0, 0x6c, 0x77, 0xdf, 0xda, 0xb3, + 0x89, 0x3c, 0x22, 0xaf, 0xd0, 0x9e, 0x49, 0xbd, 0x49, 0xb0, 0x11, 0x6c, 0x8b, 0x07, 0x5b, 0x4e, + 0xe6, 0xfc, 0xfc, 0x59, 0x84, 0x47, 0xe0, 0x11, 0x78, 0x0b, 0x07, 0x9e, 0xfd, 0xc9, 0xb3, 0x1b, + 0x35, 0xbb, 0xc6, 0x8e, 0x09, 0x71, 0x57, 0x78, 0x41, 0x41, 0x5e, 0x47, 0xe4, 0x15, 0x8e, 0xbc, + 0x63, 0xcf, 0xa9, 0x3b, 0xff, 0xb3, 0x6b, 0x6c, 0xa0, 0x10, 0x75, 0xc5, 0xa1, 0xce, 0xaa, 0xfd, + 0xe1, 0xd7, 0xad, 0x06, 0xbb, 0xc4, 0x84, 0x5b, 0x11, 0x70, 0x1b, 0x71, 0xb9, 0xbc, 0x53, 0xcc, + 0x31, 0x13, 0xa2, 0xae, 0xb8, 0x96, 0x49, 0xcb, 0x6d, 0x7a, 0xf6, 0x9e, 0xe7, 0x34, 0x1b, 0xd9, + 0xf0, 0x30, 0x71, 0x47, 0xdc, 0x2d, 0x3a, 0xb9, 0x9e, 0x58, 0x4e, 0xdd, 0xda, 0xad, 0xdb, 0xe4, + 0x74, 0x84, 0x5d, 0xc1, 0xe1, 0xce, 0xf2, 0x3c, 0xd7, 0xd9, 0x3d, 0xf6, 0x6c, 0x16, 0xaf, 0x84, + 0xdc, 0xe2, 0x8b, 0xd7, 0x86, 0x6b, 0xb7, 0x6d, 0xf7, 0x84, 0xe5, 0x2b, 0x71, 0x57, 0x24, 0xee, + 0x5c, 0xbb, 0xed, 0xd4, 0x8e, 0xad, 0x3a, 0x51, 0x47, 0xd4, 0x15, 0x58, 0xc5, 0x5a, 0x9f, 0xfc, + 0x2c, 0xde, 0x91, 0xdc, 0x11, 0x7b, 0x25, 0x90, 0x3b, 0x2d, 0x9a, 0x75, 0x5c, 0xc4, 0x41, 0x17, + 0x5f, 0x26, 0xd7, 0x5e, 0x06, 0x75, 0x31, 0xc1, 0x25, 0xaf, 0x32, 0xd3, 0x46, 0x45, 0x4c, 0x70, + 0x89, 0x24, 0x23, 0xe0, 0x8f, 0x71, 0x88, 0x2a, 0xb9, 0xa8, 0xd2, 0x41, 0x15, 0x4c, 0x7c, 0x49, + 0xc3, 0x97, 0x66, 0xea, 0x5f, 0x02, 0x4c, 0x1a, 0xc0, 0xb4, 0x98, 0x59, 0x25, 0xac, 0xe4, 0xc1, + 0x0a, 0x5c, 0xcd, 0x4b, 0x48, 0x49, 0x83, 0x94, 0x4e, 0xaa, 0x5d, 0xa2, 0x4b, 0x20, 0xd1, 0xaa, + 0x92, 0x68, 0x11, 0x60, 0x8b, 0x65, 0xf2, 0x1a, 0xa9, 0x35, 0x88, 0x30, 0x91, 0xbd, 0x08, 0x6c, + 0xb5, 0x2d, 0x41, 0x25, 0x0d, 0x54, 0x9a, 0xa9, 0x6a, 0x09, 0x30, 0x69, 0x00, 0xd3, 0x4b, 0x3d, + 0x4b, 0x7c, 0x89, 0x24, 0xf6, 0xe4, 0x5d, 0x44, 0xd8, 0xc2, 0x10, 0xa6, 0x93, 0x1a, 0x96, 0xe8, + 0x92, 0x86, 0x2e, 0x2d, 0x54, 0xaf, 0x84, 0x95, 0x34, 0x58, 0xe9, 0xa4, 0x6e, 0x25, 0xba, 0x44, + 0xb6, 0x22, 0xb4, 0x51, 0xb1, 0x12, 0x5f, 0xe2, 0x92, 0xa2, 0x4e, 0x6a, 0x55, 0xc2, 0x4b, 0x64, + 0xf8, 0xd2, 0x41, 0x95, 0x4a, 0x68, 0x89, 0x2b, 0x16, 0xb5, 0x52, 0x9f, 0x12, 0x5f, 0xd2, 0xf0, + 0xa5, 0x93, 0xca, 0x94, 0xe8, 0x12, 0x57, 0x35, 0x6a, 0xa7, 0x26, 0x25, 0xc6, 0x44, 0x92, 0x2f, + 0x36, 0xbb, 0x08, 0xa9, 0x57, 0x40, 0xaa, 0xc5, 0x93, 0x78, 0x89, 0xb6, 0xb2, 0x51, 0x37, 0x7e, + 0xf2, 0x38, 0x39, 0x6e, 0x9c, 0x2b, 0x2b, 0x89, 0xb8, 0xc5, 0x23, 0xce, 0xb3, 0x0e, 0x36, 0xab, + 0x04, 0x1a, 0x81, 0x56, 0x40, 0x68, 0xdb, 0x64, 0x68, 0x23, 0xe2, 0x0a, 0x0d, 0x6d, 0x84, 0x19, + 0x61, 0xb6, 0x68, 0x98, 0xb5, 0x5c, 0x7b, 0xdf, 0xf9, 0xc4, 0x15, 0xe3, 0x44, 0x5b, 0x81, 0x68, + 0xdb, 0xaf, 0x5b, 0x07, 0x6d, 0x6e, 0xc9, 0x2a, 0xf7, 0xc5, 0x2d, 0x59, 0xf4, 0x6f, 0x56, 0xfe, + 0x44, 0x16, 0x2b, 0x7c, 0x02, 0x6a, 0xb9, 0x42, 0xd5, 0x26, 0x43, 0x15, 0x91, 0xc5, 0x8a, 0x9d, + 0x70, 0x62, 0x65, 0x4e, 0x54, 0x2d, 0x27, 0xaa, 0xc0, 0x2b, 0x70, 0xcc, 0xca, 0x1b, 0xaf, 0xe2, + 0xc6, 0xba, 0xcf, 0x38, 0xd6, 0x62, 0x58, 0x0a, 0x12, 0xbd, 0x0d, 0x2b, 0x8a, 0xfa, 0x69, 0x90, + 0x86, 0xfd, 0xc8, 0xd8, 0x01, 0x8a, 0xdb, 0x46, 0xd2, 0xf9, 0xa2, 0x2e, 0x83, 0x41, 0x90, 0x7e, + 0x19, 0x45, 0xea, 0x4a, 0x7f, 0xa0, 0xa2, 0x4e, 0x3f, 0x3a, 0x0f, 0x2f, 0xcc, 0x48, 0xa5, 0xdf, + 0xfa, 0xf1, 0x57, 0x33, 0x8c, 0x92, 0x34, 0x88, 0x3a, 0xaa, 0x72, 0xff, 0x8d, 0xe4, 0xc1, 0x3b, + 0x95, 0x41, 0xdc, 0x4f, 0xfb, 0x9d, 0x7e, 0x2f, 0xc9, 0xbf, 0xab, 0x84, 0x49, 0x98, 0x54, 0x7a, + 0xea, 0x4a, 0xf5, 0x26, 0x5f, 0x2a, 0xbd, 0x30, 0xfa, 0x6a, 0x26, 0x69, 0x90, 0x2a, 0xb3, 0x1b, + 0xa4, 0xc1, 0x59, 0x90, 0xa8, 0x4a, 0x2f, 0x19, 0x54, 0xd2, 0xde, 0x55, 0x32, 0xfa, 0xcf, 0xf8, + 0x57, 0xcc, 0x48, 0x85, 0x17, 0x5f, 0xce, 0xfa, 0xb1, 0x19, 0xa4, 0x69, 0x1c, 0x9e, 0x0d, 0xd3, + 0x91, 0x01, 0xd9, 0x5b, 0x49, 0xfe, 0x5d, 0xe5, 0xd6, 0x96, 0xdc, 0x86, 0x64, 0x78, 0x36, 0xfe, + 0x9b, 0xb2, 0xaf, 0x95, 0x61, 0x1a, 0xf6, 0xc2, 0xff, 0x53, 0x5d, 0xf3, 0x2c, 0x88, 0xba, 0xdf, + 0xc2, 0x6e, 0xfa, 0xa5, 0x32, 0xfe, 0xb7, 0x31, 0x12, 0x8f, 0x7c, 0x27, 0x95, 0x6d, 0xa1, 0xf0, + 0xf0, 0x81, 0x16, 0x36, 0x96, 0x31, 0x5c, 0x00, 0xcc, 0x2e, 0x1a, 0x49, 0x1a, 0x0f, 0x3b, 0x69, + 0x34, 0xe1, 0xdb, 0x8d, 0xec, 0x3e, 0x3b, 0x93, 0x4b, 0xf4, 0x5b, 0x93, 0x9b, 0xeb, 0x3b, 0x49, + 0x98, 0xf8, 0xf5, 0xd1, 0x5d, 0xf5, 0xeb, 0xc9, 0xc0, 0xf7, 0x7a, 0x57, 0xe3, 0xb7, 0x1a, 0x93, + 0xdb, 0x63, 0x4d, 0x6f, 0x9d, 0x3f, 0x7d, 0xc7, 0xcf, 0xff, 0x8e, 0xf6, 0xf8, 0xf6, 0xf8, 0xc7, + 0x93, 0xdb, 0xb3, 0x9b, 0xdf, 0x9d, 0xdf, 0x18, 0x9c, 0xf4, 0xb1, 0x4c, 0x68, 0xb8, 0x34, 0x3e, + 0xaa, 0xeb, 0x11, 0xb0, 0xd3, 0xeb, 0x81, 0x12, 0xea, 0x8e, 0x46, 0x3d, 0x4c, 0xd2, 0x91, 0x03, + 0x89, 0x8e, 0xe3, 0xc6, 0x51, 0x18, 0xd9, 0x3d, 0x75, 0xa9, 0xa2, 0x34, 0x31, 0x76, 0x56, 0xa2, + 0x61, 0xaf, 0xf7, 0xbb, 0x60, 0x63, 0x83, 0xef, 0x38, 0xc6, 0x36, 0xe3, 0xae, 0x8a, 0x55, 0x77, + 0xf7, 0x7a, 0x62, 0x2a, 0xfd, 0x5b, 0x3f, 0x1a, 0xa4, 0x3d, 0xfd, 0x11, 0xcc, 0x75, 0x0a, 0xe3, + 0x38, 0x32, 0x19, 0x8d, 0x3c, 0xbe, 0x20, 0xcb, 0x22, 0x61, 0x91, 0x4d, 0x7a, 0x44, 0xd3, 0x37, + 0x92, 0xc9, 0x72, 0x5f, 0x39, 0x4e, 0x22, 0xc8, 0x41, 0x8c, 0x61, 0xd4, 0x55, 0xe7, 0x61, 0xa4, + 0xba, 0xe6, 0xf4, 0x43, 0x93, 0xe6, 0x23, 0xf9, 0xb3, 0xab, 0x87, 0xa6, 0x0a, 0x0b, 0x34, 0x1f, + 0xc3, 0xa8, 0x6b, 0xec, 0xac, 0xac, 0x09, 0x33, 0x6b, 0x6f, 0x1c, 0x4c, 0x8c, 0x9d, 0x95, 0x55, + 0x61, 0x86, 0xb5, 0x62, 0x75, 0x1e, 0x7e, 0x97, 0x19, 0x94, 0xa7, 0xa0, 0xeb, 0x77, 0xcc, 0x51, + 0x2c, 0x14, 0xc8, 0xc6, 0x8c, 0x76, 0x7f, 0x18, 0x77, 0x94, 0x58, 0x96, 0x6e, 0x7c, 0x54, 0xd7, + 0xdf, 0xfa, 0xf1, 0xc8, 0x23, 0x8c, 0x41, 0xf6, 0x49, 0x0b, 0x2d, 0x79, 0x0e, 0x83, 0xc4, 0x8a, + 0x2f, 0x86, 0xa3, 0xea, 0xd6, 0xd8, 0x59, 0x49, 0xe3, 0xa1, 0x92, 0x5a, 0x9b, 0xdd, 0x5a, 0x99, + 0x03, 0x93, 0x64, 0x14, 0x8a, 0x8c, 0xd6, 0x42, 0x99, 0x6d, 0xa9, 0x07, 0xd9, 0x55, 0x6e, 0x5c, + 0x99, 0xc5, 0x07, 0xa4, 0x86, 0x17, 0x99, 0xb4, 0x40, 0x3c, 0x3d, 0x40, 0xa0, 0x09, 0x40, 0x74, + 0x01, 0x85, 0x36, 0xc0, 0xd1, 0x07, 0x38, 0x1a, 0x81, 0x45, 0x27, 0x64, 0xd2, 0x0a, 0xa1, 0xf4, + 0x42, 0x3c, 0xcd, 0xc8, 0x0d, 0xcc, 0x06, 0x7f, 0xc4, 0x07, 0xa1, 0x69, 0x5c, 0xcf, 0xcc, 0x15, + 0xee, 0xcf, 0xb2, 0x89, 0x06, 0x0c, 0xe1, 0x40, 0x22, 0x1e, 0x80, 0x04, 0x04, 0x8d, 0x88, 0xc0, + 0x12, 0x12, 0x58, 0x62, 0x82, 0x49, 0x50, 0x64, 0x13, 0x15, 0xe1, 0x84, 0x05, 0x86, 0xb8, 0xe4, + 0x86, 0xf6, 0x54, 0x74, 0x31, 0x7e, 0x62, 0x07, 0x12, 0xbd, 0xa6, 0x09, 0x62, 0x62, 0x37, 0x48, + 0x04, 0x98, 0x50, 0x9a, 0x55, 0x10, 0x73, 0x51, 0xa8, 0x0d, 0x22, 0xc5, 0x01, 0xa6, 0x3a, 0xa8, + 0x94, 0x07, 0x9e, 0xfa, 0xc0, 0x53, 0x20, 0x6c, 0x2a, 0x84, 0x41, 0x89, 0x40, 0xa8, 0x51, 0x0e, + 0x05, 0xef, 0x7a, 0xa0, 0x30, 0x23, 0xf6, 0x30, 0x8c, 0xd2, 0x0f, 0x48, 0xf1, 0x7a, 0x42, 0x3f, + 0x36, 0x80, 0x4c, 0x76, 0x83, 0xe8, 0x42, 0xc1, 0xad, 0xc7, 0xc6, 0x93, 0xd7, 0x1b, 0x47, 0x61, + 0x04, 0x97, 0xc8, 0x41, 0x79, 0xf5, 0x03, 0xf3, 0xc7, 0x4b, 0xe0, 0x81, 0xed, 0xdf, 0x8f, 0x83, + 0x4e, 0x1a, 0xf6, 0xa3, 0x5a, 0x78, 0x11, 0x8e, 0x15, 0x15, 0xab, 0x78, 0xbb, 0x00, 0x7e, 0x07, + 0x74, 0xd9, 0xe0, 0x3b, 0x5d, 0xb6, 0x64, 0x97, 0x5d, 0xdf, 0xd8, 0xa0, 0xd3, 0x92, 0x88, 0xeb, + 0x65, 0xed, 0x29, 0x37, 0x18, 0x2c, 0x4b, 0x52, 0xc9, 0x94, 0xaf, 0x70, 0x6d, 0x5f, 0xc1, 0x7a, + 0x5d, 0xf0, 0x4c, 0xc7, 0xa6, 0x6f, 0x91, 0x38, 0x66, 0xd3, 0xb7, 0x38, 0x37, 0x64, 0xd3, 0xb7, + 0xe4, 0x0b, 0x60, 0xd3, 0x97, 0x8c, 0x63, 0x02, 0x05, 0x36, 0x7d, 0x8b, 0xa6, 0x1f, 0x6c, 0xfa, + 0x2e, 0xfa, 0xc5, 0xa6, 0x2f, 0x79, 0xf5, 0x33, 0xcc, 0x67, 0xd3, 0x97, 0xd9, 0xf2, 0x25, 0x2e, + 0xcb, 0xa6, 0x6f, 0xe9, 0x2e, 0xcb, 0xa6, 0x2f, 0x89, 0xb8, 0x76, 0xd6, 0xb2, 0xe9, 0xbb, 0x34, + 0x49, 0xc5, 0xb8, 0x9a, 0x04, 0x32, 0xb0, 0xae, 0x6f, 0x66, 0x36, 0xdb, 0xbe, 0x8b, 0x30, 0x97, + 0x6d, 0xdf, 0x02, 0x81, 0xcc, 0xb6, 0x6f, 0x71, 0x6e, 0xc8, 0xb6, 0x6f, 0xc9, 0x17, 0xc0, 0xb6, + 0x2f, 0x39, 0xc7, 0x04, 0x0a, 0xb8, 0x6d, 0xdf, 0xb3, 0x30, 0x0a, 0xe2, 0x6b, 0xc0, 0xbe, 0xef, + 0x36, 0x69, 0xfd, 0x12, 0x58, 0xc8, 0xd3, 0x28, 0xe6, 0x6b, 0xaf, 0x7e, 0x4b, 0x4c, 0x1f, 0xac, + 0x9b, 0x7c, 0xf0, 0x0e, 0xc2, 0xe9, 0x35, 0x82, 0x8f, 0x5d, 0x10, 0xbc, 0x23, 0x09, 0x62, 0xc6, + 0x0b, 0x69, 0xb6, 0x0b, 0xa4, 0xb8, 0xe7, 0x6e, 0x12, 0x16, 0xf1, 0x2b, 0xdc, 0x4d, 0xc2, 0x62, + 0x5d, 0xd3, 0x22, 0x9d, 0x9c, 0x7c, 0x29, 0x8a, 0xf1, 0x3b, 0xcb, 0x3e, 0x82, 0xf3, 0x58, 0x9d, + 0x23, 0x44, 0xdc, 0xe9, 0xf2, 0xb2, 0x2d, 0x00, 0x5b, 0x5b, 0x93, 0x32, 0xe7, 0xdd, 0xbb, 0xac, + 0x04, 0xa8, 0x8c, 0x19, 0x18, 0xeb, 0x00, 0x8d, 0x2c, 0xe3, 0xf1, 0x6b, 0x2f, 0x36, 0x91, 0xc7, + 0xaf, 0xcd, 0xdf, 0x58, 0x1e, 0xbf, 0xb6, 0x24, 0xfe, 0xcd, 0xe3, 0xd7, 0xe4, 0xf6, 0xfb, 0x96, + 0xfb, 0x48, 0xb6, 0xe3, 0xe9, 0xdd, 0xe0, 0xd9, 0x6c, 0xb8, 0x16, 0xf1, 0x6c, 0x36, 0x86, 0xb9, + 0xfb, 0xa7, 0x68, 0xf1, 0x94, 0x36, 0xc1, 0x96, 0x08, 0x71, 0xd8, 0x69, 0xdd, 0x11, 0x76, 0x85, + 0x24, 0x41, 0x99, 0x55, 0x86, 0xe8, 0xaa, 0x42, 0x74, 0x15, 0x21, 0xb3, 0x6a, 0x90, 0xe2, 0x7d, + 0x42, 0xd3, 0xa4, 0x7e, 0xe9, 0x51, 0x10, 0xc5, 0x5f, 0x3c, 0xa5, 0x97, 0x91, 0xf9, 0xcb, 0xcf, + 0xb3, 0xe5, 0x5a, 0x50, 0x72, 0x8c, 0x91, 0x16, 0x5b, 0xb4, 0x89, 0x29, 0xe5, 0x7a, 0x57, 0x79, + 0x98, 0x2e, 0x11, 0xcf, 0x42, 0x4e, 0x15, 0x12, 0x75, 0x6a, 0x90, 0x90, 0x53, 0x81, 0xc4, 0x4c, + 0xd6, 0x48, 0x9a, 0x9c, 0x11, 0x38, 0x19, 0x23, 0x6d, 0xf2, 0x45, 0xec, 0x64, 0x8b, 0xd8, 0xc9, + 0x15, 0x99, 0x93, 0x29, 0xcb, 0xcd, 0xb1, 0xa4, 0x9c, 0x6a, 0x63, 0x24, 0xd7, 0x49, 0xaa, 0x2e, + 0xcd, 0xb0, 0x2b, 0xc7, 0xc1, 0xf3, 0x64, 0x99, 0x9b, 0x26, 0xa5, 0xe5, 0x25, 0x6a, 0x64, 0x55, + 0xdc, 0x68, 0xaa, 0xc4, 0x11, 0x54, 0xc1, 0xa3, 0xa6, 0x52, 0x47, 0x4a, 0xc5, 0x8f, 0x8e, 0x8a, + 0x1f, 0x11, 0x95, 0x3d, 0x0a, 0xca, 0xc7, 0x18, 0x77, 0x3f, 0x2a, 0x71, 0x23, 0x9c, 0x62, 0xd3, + 0xdf, 0x4f, 0xb5, 0xe3, 0x07, 0x41, 0x36, 0xb5, 0x82, 0x34, 0x55, 0x71, 0x24, 0x6e, 0xdb, 0x9d, + 0xf1, 0xf7, 0xe7, 0x55, 0x73, 0xdb, 0x32, 0xf7, 0x03, 0xf3, 0xfc, 0xf4, 0x9f, 0xea, 0xcd, 0x5f, + 0x7f, 0xbd, 0xfb, 0xc5, 0x1b, 0xff, 0x91, 0x13, 0x25, 0x4e, 0xd9, 0x0a, 0x66, 0x99, 0xc2, 0x56, + 0xf0, 0x7c, 0x5b, 0xc1, 0x02, 0xe4, 0xa1, 0x4b, 0xda, 0x06, 0x16, 0x53, 0xe5, 0x8a, 0x4b, 0xef, + 0x42, 0xaa, 0x5a, 0xb6, 0x83, 0x31, 0xaa, 0x57, 0xb6, 0x83, 0xd1, 0xab, 0x54, 0xb6, 0x83, 0xe5, + 0xf1, 0x2c, 0x31, 0x55, 0xa8, 0x40, 0xa1, 0xa0, 0x24, 0x21, 0xe0, 0x43, 0xa1, 0xdf, 0x6d, 0x1a, + 0x5f, 0x56, 0x5a, 0xf7, 0xdb, 0x12, 0x39, 0xec, 0x74, 0xea, 0xb5, 0x6c, 0xf2, 0x26, 0x63, 0xd8, + 0x55, 0xd4, 0x70, 0xab, 0xa8, 0x61, 0x56, 0x19, 0xc3, 0xab, 0x65, 0x39, 0x89, 0x90, 0xae, 0x01, + 0x78, 0xb7, 0xc0, 0x28, 0x75, 0x6c, 0x6a, 0x31, 0x93, 0xa6, 0xe5, 0x24, 0xc9, 0xe2, 0x53, 0x54, + 0xb1, 0xff, 0x62, 0xc1, 0x7e, 0x5e, 0xb6, 0x7f, 0x63, 0xfa, 0x75, 0xb1, 0xd0, 0x2f, 0x0e, 0x80, + 0xc5, 0xfc, 0x4b, 0x05, 0x41, 0xbc, 0x2c, 0x68, 0x23, 0x41, 0xba, 0xc0, 0xbc, 0x34, 0xef, 0x3c, + 0x54, 0x8c, 0x0f, 0x2e, 0xde, 0x23, 0x0a, 0xf0, 0x06, 0xa3, 0x97, 0x0c, 0xcc, 0xb3, 0xe1, 0xf9, + 0xb9, 0x8a, 0xcd, 0x24, 0xfc, 0xbf, 0xe2, 0xba, 0x13, 0xb7, 0x1d, 0x88, 0x7b, 0x06, 0x14, 0x14, + 0x01, 0x8a, 0x9d, 0x8e, 0x2e, 0xbc, 0xed, 0x5d, 0x46, 0x7b, 0xbb, 0xc4, 0x36, 0x76, 0x59, 0xed, + 0xea, 0xd2, 0xdb, 0xd2, 0xa5, 0xb7, 0x9f, 0xcb, 0x6d, 0x33, 0xeb, 0xc5, 0x4a, 0x8a, 0x9e, 0x16, + 0x2e, 0x49, 0x36, 0x53, 0xaa, 0x4c, 0xa6, 0x24, 0x59, 0x4c, 0x69, 0xcf, 0x3d, 0xcb, 0x7c, 0xce, + 0x29, 0xe0, 0xb9, 0x66, 0xd9, 0xcf, 0x31, 0xc5, 0x3c, 0xb7, 0x14, 0xf3, 0x9c, 0x52, 0xc6, 0x73, + 0x49, 0xbd, 0x3b, 0x37, 0x65, 0xc9, 0x4e, 0x8c, 0x42, 0x4b, 0x88, 0xd9, 0x79, 0xa5, 0xb8, 0x3a, + 0x62, 0x56, 0x7a, 0x29, 0x69, 0xba, 0xa5, 0xf4, 0xf1, 0x1a, 0x09, 0x63, 0x35, 0x82, 0xc6, 0x69, + 0xa4, 0x8c, 0xd1, 0x88, 0x1b, 0x9f, 0x11, 0x37, 0x36, 0x23, 0x6b, 0x5c, 0x66, 0xb9, 0x9e, 0xb6, + 0x97, 0x3e, 0x16, 0x93, 0x47, 0x8c, 0x61, 0x18, 0xa5, 0x6b, 0x9b, 0x65, 0x06, 0x8c, 0x49, 0xfe, + 0xd8, 0x2c, 0xd1, 0x04, 0x37, 0x88, 0x2e, 0x54, 0xe9, 0x32, 0x0b, 0x01, 0x43, 0x52, 0x92, 0x0e, + 0xfd, 0x97, 0xa6, 0x4a, 0x15, 0x76, 0x28, 0xbf, 0xc4, 0xf3, 0xba, 0x05, 0x68, 0xdf, 0x44, 0x1d, + 0x82, 0x2f, 0x15, 0xc2, 0x9b, 0x1b, 0x1b, 0xef, 0x37, 0x08, 0x63, 0x59, 0x5c, 0xa4, 0xfc, 0x7f, + 0xfd, 0x94, 0x43, 0x2c, 0x1a, 0xb4, 0x42, 0x38, 0xc4, 0xf2, 0xf0, 0x89, 0xff, 0xbd, 0x47, 0xae, + 0x65, 0xe8, 0xd5, 0x38, 0xb8, 0x02, 0x05, 0x67, 0x04, 0x18, 0x63, 0x0c, 0xac, 0xd4, 0x93, 0xc1, + 0xee, 0xd8, 0xe6, 0xf6, 0xc8, 0x64, 0x0e, 0xaa, 0x3c, 0xf9, 0x96, 0x5f, 0xa6, 0x66, 0x38, 0xb8, + 0xaa, 0x9a, 0xb1, 0x0a, 0x3a, 0x5f, 0x82, 0xb3, 0xb0, 0x17, 0xa6, 0xd7, 0xc5, 0x4f, 0xab, 0x3c, + 0x6a, 0x05, 0x47, 0x56, 0xe6, 0xf2, 0x0f, 0x72, 0x64, 0xa5, 0x18, 0x18, 0x71, 0x64, 0x85, 0x23, + 0x2b, 0xf3, 0xba, 0x95, 0x85, 0x8f, 0xac, 0x64, 0x90, 0x55, 0x49, 0x79, 0x53, 0x2b, 0xb9, 0x05, + 0x1c, 0x5c, 0xd1, 0x2d, 0x1d, 0x08, 0x48, 0x0b, 0x65, 0xa7, 0x07, 0x31, 0x69, 0x42, 0x4c, 0xba, + 0x90, 0x91, 0x36, 0x96, 0xa3, 0x5b, 0x53, 0xda, 0xe0, 0xca, 0xa0, 0xdc, 0xb1, 0x85, 0x7b, 0xc9, + 0xa5, 0xe4, 0xe1, 0x95, 0x35, 0x0e, 0xaf, 0x70, 0x78, 0x85, 0xc3, 0x2b, 0xf2, 0x53, 0x92, 0xac, + 0xd4, 0x54, 0x4e, 0x8a, 0x2a, 0x29, 0x55, 0x95, 0x9e, 0xb2, 0x72, 0x03, 0x2e, 0x53, 0x51, 0x0b, + 0xcf, 0x32, 0x73, 0xb8, 0xec, 0x8c, 0xcb, 0xce, 0xc4, 0x27, 0x38, 0x69, 0x89, 0x4e, 0x6c, 0xc2, + 0x13, 0x9b, 0xf8, 0x64, 0x26, 0xc0, 0x72, 0x13, 0x61, 0xc9, 0x09, 0x31, 0xff, 0x48, 0xb8, 0xec, + 0xec, 0x09, 0x95, 0x96, 0xc8, 0x65, 0x67, 0x59, 0x0a, 0xe7, 0xfe, 0xda, 0x65, 0xeb, 0x42, 0xc8, + 0xea, 0x46, 0x90, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, 0x91, 0xcc, + 0xbd, 0x98, 0xcc, 0x4d, 0x62, 0x0e, 0xd9, 0x5c, 0xe1, 0x1f, 0x05, 0x0f, 0xa5, 0x9d, 0xed, 0x2a, + 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xe4, 0x72, 0xc5, 0x7f, 0x24, 0x62, 0x0e, 0xa5, + 0xbd, 0x54, 0x69, 0x1c, 0x76, 0xe4, 0x9d, 0x48, 0x3b, 0xb1, 0x8b, 0xc7, 0xd1, 0x4a, 0x4e, 0x9d, + 0x12, 0x53, 0xa8, 0xe0, 0x54, 0x2a, 0x35, 0xa5, 0x8a, 0x4f, 0xad, 0xe2, 0x53, 0xac, 0xec, 0x54, + 0x2b, 0x23, 0xe5, 0x0a, 0x49, 0xbd, 0xf2, 0xda, 0x29, 0x0f, 0x22, 0xd6, 0xb7, 0xb0, 0xab, 0x4c, + 0x51, 0x09, 0xf0, 0x6e, 0x12, 0xdc, 0x12, 0x64, 0x92, 0x8c, 0x35, 0x29, 0xf7, 0x5f, 0xb2, 0xa2, + 0xfa, 0x8a, 0xb4, 0x35, 0x2a, 0xc2, 0xd9, 0xd5, 0x03, 0xf3, 0xa6, 0x3b, 0x2a, 0xd6, 0x84, 0xda, + 0x27, 0x70, 0x5f, 0x85, 0xd0, 0x98, 0xff, 0xb3, 0x4b, 0x04, 0xdf, 0xe9, 0x12, 0xaf, 0x75, 0x89, + 0xcd, 0xad, 0xad, 0xad, 0xf5, 0xb5, 0x0d, 0x7a, 0x06, 0x36, 0x27, 0x93, 0x67, 0x0d, 0x0f, 0x45, + 0x17, 0x13, 0x39, 0x85, 0x4c, 0x37, 0x3f, 0xa0, 0xc9, 0x12, 0xa6, 0x9c, 0x85, 0x06, 0x6c, 0x76, + 0x88, 0x9e, 0x03, 0x24, 0x76, 0x88, 0x9e, 0x0e, 0x73, 0x76, 0x88, 0x5e, 0x69, 0x20, 0x3b, 0x44, + 0x28, 0xd5, 0x82, 0xe0, 0x0e, 0x51, 0xe9, 0x3b, 0x72, 0x67, 0xe5, 0xbf, 0x4d, 0x36, 0x87, 0x7e, + 0xf1, 0x62, 0x73, 0x48, 0xcb, 0x4a, 0x78, 0x95, 0x25, 0x30, 0x78, 0xb8, 0xff, 0xd9, 0x25, 0xd8, + 0x1c, 0x7a, 0xb5, 0x4b, 0x54, 0x57, 0xb7, 0xd9, 0x18, 0xd2, 0xa0, 0x15, 0xb3, 0xc2, 0xc6, 0x90, + 0xc0, 0xfb, 0x21, 0xa1, 0x31, 0x34, 0x90, 0x55, 0xd4, 0xcb, 0xd2, 0x4c, 0x09, 0x0d, 0xd7, 0x6c, + 0x0d, 0x3d, 0x07, 0x49, 0x6c, 0x0d, 0x3d, 0x1d, 0xe6, 0x6c, 0x0d, 0xbd, 0xd2, 0x40, 0xb6, 0x86, + 0x50, 0x6a, 0x05, 0xc1, 0xad, 0xa1, 0xf1, 0x6a, 0x64, 0x71, 0x0e, 0x98, 0x8b, 0x4e, 0x3e, 0x08, + 0xb2, 0xa9, 0x15, 0xa4, 0xa9, 0x8a, 0x23, 0x71, 0x2d, 0x22, 0xe3, 0xef, 0x37, 0x6f, 0x3e, 0xaf, + 0x9a, 0xdb, 0xa7, 0x3f, 0x3e, 0xaf, 0x99, 0xdb, 0xa7, 0xd9, 0xb7, 0x6b, 0xe3, 0x2f, 0xd9, 0xf7, + 0xeb, 0x9f, 0x57, 0xcd, 0xea, 0xf4, 0xfb, 0x8d, 0xcf, 0xab, 0xe6, 0xc6, 0xe9, 0xdb, 0xbf, 0xfe, + 0x7a, 0xf7, 0xf6, 0x9f, 0xf7, 0x37, 0xcf, 0xff, 0xc5, 0xca, 0xe4, 0x1f, 0x7b, 0xfb, 0xe3, 0xcd, + 0xe7, 0x35, 0x73, 0xfd, 0x74, 0xfa, 0x87, 0xf7, 0x9f, 0x57, 0xcd, 0xf5, 0xd3, 0xb7, 0x6f, 0xff, + 0x63, 0x90, 0xfb, 0x93, 0xfb, 0x3f, 0xc0, 0x68, 0x62, 0x9e, 0x85, 0xa9, 0x3c, 0xea, 0x9f, 0x99, + 0x45, 0xe6, 0x4f, 0xe6, 0x4f, 0xe6, 0x4f, 0xe6, 0x4f, 0xe6, 0x4f, 0xe6, 0xbf, 0x34, 0xcc, 0xff, + 0xac, 0xdf, 0xef, 0xa9, 0x20, 0x92, 0xc8, 0xfa, 0xd7, 0x48, 0xdc, 0xc4, 0x10, 0xb7, 0xe1, 0xc0, + 0xec, 0xf6, 0xbf, 0x45, 0xf2, 0xa8, 0xdb, 0xd4, 0x30, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, + 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x92, 0x37, 0x31, 0xe4, 0x6d, 0xa9, 0x37, 0x96, 0x94, + 0x7c, 0x88, 0xef, 0x03, 0x7b, 0x24, 0x9e, 0x86, 0xfa, 0xd8, 0xc9, 0x94, 0x95, 0xe9, 0x59, 0x65, + 0x93, 0x6f, 0xca, 0x38, 0xe9, 0x57, 0x0e, 0x92, 0x4b, 0xdd, 0x05, 0x37, 0x3c, 0x1b, 0x7d, 0x52, + 0x82, 0xb6, 0xc1, 0x4d, 0x0c, 0xe2, 0x3e, 0x38, 0xee, 0x83, 0x83, 0x29, 0x68, 0xb8, 0x0f, 0x0e, + 0xbd, 0x70, 0xe1, 0x3e, 0x38, 0x79, 0xec, 0x4a, 0xcc, 0x3e, 0xb8, 0x2c, 0x27, 0x09, 0x7c, 0xae, + 0x9b, 0xd9, 0x25, 0xab, 0x37, 0xb8, 0xc6, 0xde, 0xa0, 0xf8, 0x14, 0x2a, 0x38, 0x95, 0x4a, 0x4d, + 0xa9, 0xe2, 0x53, 0xab, 0xf8, 0x14, 0x2b, 0x3b, 0xd5, 0xca, 0x69, 0xa9, 0xac, 0x08, 0xea, 0x0d, + 0x4a, 0x49, 0xc1, 0xb9, 0x41, 0xe7, 0xbd, 0xe0, 0x22, 0x91, 0x17, 0x14, 0xa6, 0x71, 0x34, 0x33, + 0x4f, 0x98, 0xbf, 0xc9, 0x4a, 0xcc, 0x62, 0x13, 0xb4, 0xe4, 0x44, 0x0d, 0x90, 0xb0, 0xa5, 0x27, + 0x6e, 0x98, 0x04, 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, 0x2c, 0xc1, 0x8b, 0x4d, + 0xf4, 0xb7, 0xb5, 0xb7, 0x88, 0xc3, 0x4a, 0x7e, 0x5d, 0x8a, 0x0b, 0x38, 0xc4, 0x04, 0x8c, 0x00, + 0x88, 0x27, 0x02, 0x08, 0x84, 0x00, 0x88, 0x18, 0xa0, 0x10, 0x04, 0x38, 0xa2, 0x00, 0x47, 0x18, + 0xb0, 0x88, 0x83, 0x4c, 0x02, 0x21, 0x94, 0x48, 0x88, 0x27, 0x14, 0xc2, 0x3b, 0x09, 0x50, 0x9d, + 0x85, 0x59, 0x44, 0x63, 0x55, 0xb8, 0x99, 0xd2, 0x09, 0x07, 0x12, 0xf1, 0x00, 0x24, 0x20, 0x68, + 0x44, 0x04, 0x96, 0x90, 0xc0, 0x12, 0x13, 0x4c, 0x82, 0x22, 0x9b, 0xa8, 0x08, 0x27, 0x2c, 0xf9, + 0x47, 0x2e, 0x6e, 0x1c, 0xfa, 0x97, 0x11, 0x57, 0x45, 0xc3, 0x4b, 0x15, 0x67, 0x63, 0xa8, 0x00, + 0x51, 0x77, 0xda, 0x8d, 0xa8, 0x02, 0xd8, 0x6a, 0x47, 0xc3, 0xcb, 0x11, 0x18, 0xe8, 0x52, 0xaf, + 0xb9, 0x8b, 0xf5, 0x30, 0x49, 0xad, 0x34, 0x8d, 0x31, 0xdc, 0xea, 0x28, 0x8c, 0xec, 0x9e, 0x1a, + 0x45, 0xfd, 0x51, 0x79, 0x10, 0x0d, 0x7b, 0x3d, 0x00, 0xa0, 0x1e, 0x05, 0xdf, 0xf1, 0x8c, 0x6e, + 0xc6, 0x5d, 0x15, 0xab, 0xee, 0xee, 0xf5, 0xc4, 0xe4, 0xdf, 0x98, 0x55, 0x35, 0x73, 0x7f, 0x23, + 0x45, 0xc8, 0xa6, 0x79, 0x26, 0x1d, 0x5b, 0xcb, 0x1a, 0x9b, 0x35, 0x36, 0x6b, 0x6c, 0xd6, 0xd8, + 0xac, 0xb1, 0x59, 0x63, 0xb3, 0xc6, 0x66, 0x8d, 0x9d, 0x6d, 0x90, 0xec, 0xaa, 0x28, 0x0d, 0xd3, + 0xeb, 0x58, 0x9d, 0x23, 0xd5, 0xd8, 0x1b, 0x00, 0xb6, 0x3a, 0x93, 0x5b, 0xbb, 0x1b, 0x24, 0x40, + 0x79, 0x62, 0x0a, 0x0c, 0xa7, 0xed, 0xb4, 0xfd, 0xf6, 0xf1, 0xae, 0x57, 0x3f, 0xf1, 0xbd, 0x3f, + 0x5b, 0x36, 0x4a, 0xba, 0x18, 0x1f, 0x48, 0x90, 0x88, 0x5b, 0xf3, 0xf9, 0x6f, 0xaf, 0x7f, 0x60, + 0x2c, 0xfd, 0x09, 0x21, 0x6e, 0xf3, 0xd8, 0xb3, 0x5d, 0x7f, 0xcf, 0x6a, 0x59, 0xbb, 0x4e, 0xdd, + 0xf1, 0xfe, 0x9c, 0xc0, 0xa5, 0x8d, 0x84, 0x17, 0x64, 0xdc, 0x60, 0xe2, 0xe7, 0x29, 0x38, 0xba, + 0xfb, 0x27, 0x03, 0xee, 0xea, 0x6e, 0x7e, 0x27, 0x84, 0x04, 0x40, 0xc8, 0xaa, 0x1f, 0x34, 0x5d, + 0xc7, 0x3b, 0x3c, 0x02, 0x44, 0x10, 0x94, 0xc5, 0xa7, 0xbf, 0xd1, 0x33, 0x49, 0x0a, 0x34, 0x0b, + 0xe6, 0x84, 0x0a, 0x83, 0x36, 0x91, 0x22, 0xa5, 0x16, 0xf5, 0x5d, 0xdb, 0xda, 0x3b, 0x64, 0x9d, + 0x41, 0xf4, 0xcc, 0x0f, 0x45, 0x9e, 0xed, 0xd7, 0xec, 0x7d, 0xeb, 0xb8, 0xee, 0xf9, 0x47, 0xb6, + 0xe7, 0x3a, 0x7b, 0xac, 0x34, 0x08, 0xa2, 0xe7, 0x82, 0xe8, 0xb8, 0xb1, 0xd7, 0x6c, 0xb4, 0x3d, + 0xd7, 0x72, 0x1a, 0x76, 0xcd, 0xaf, 0xb7, 0x5b, 0x04, 0x11, 0x41, 0xf4, 0x5c, 0x10, 0xd5, 0x9d, + 0xc6, 0x47, 0xbf, 0x66, 0xd7, 0x2d, 0x36, 0x3b, 0x88, 0x9e, 0x57, 0xa0, 0xc7, 0x3f, 0xb1, 0x5c, + 0xc7, 0xf2, 0x9c, 0x66, 0x83, 0x38, 0x22, 0x8e, 0x9e, 0x8b, 0x23, 0xa7, 0x75, 0xb2, 0xe9, 0x37, + 0x6c, 0xe7, 0xe0, 0x70, 0xb7, 0xe9, 0xfa, 0x56, 0xad, 0xe6, 0xda, 0xed, 0x36, 0x81, 0x44, 0x20, + 0x3d, 0x17, 0x48, 0x56, 0xed, 0xc8, 0x69, 0xf8, 0x07, 0x6e, 0xf3, 0x98, 0x6c, 0x88, 0xf0, 0x79, + 0x01, 0x7c, 0xfe, 0xf0, 0xdb, 0x4e, 0x8d, 0xd0, 0x21, 0x74, 0x9e, 0x0b, 0x9d, 0x23, 0xeb, 0x53, + 0x46, 0x87, 0x76, 0xad, 0x46, 0xed, 0xbf, 0x4e, 0xcd, 0x3b, 0x24, 0x8a, 0x88, 0xa2, 0x17, 0x10, + 0xa1, 0x2a, 0x89, 0x10, 0x81, 0x34, 0x1f, 0x46, 0xed, 0x34, 0x3c, 0xdb, 0xdd, 0xb7, 0xf6, 0x6c, + 0x22, 0x89, 0x48, 0x7a, 0x55, 0x8d, 0x5f, 0x6f, 0x12, 0x3c, 0x04, 0xcf, 0xf3, 0xc1, 0x93, 0x93, + 0x21, 0x3f, 0xef, 0x55, 0x7b, 0x04, 0x12, 0x81, 0xf4, 0x6c, 0x20, 0xd9, 0x9f, 0x3c, 0xbb, 0x51, + 0xb3, 0x6b, 0xac, 0xf0, 0x89, 0xa3, 0x57, 0x13, 0x6c, 0xf2, 0x22, 0x22, 0xe9, 0xd5, 0x48, 0x3a, + 0xf6, 0x9c, 0xba, 0xf3, 0x3f, 0xbb, 0xc6, 0x82, 0x9f, 0x28, 0x7a, 0x39, 0x8a, 0xac, 0xda, 0x1f, + 0x7e, 0xdd, 0x6a, 0xb0, 0xeb, 0x48, 0xf8, 0xbc, 0x04, 0x3e, 0x23, 0x2e, 0x94, 0x77, 0x1e, 0xf9, + 0x18, 0x9f, 0x28, 0x7a, 0x79, 0x89, 0xdf, 0x72, 0x9b, 0x9e, 0xbd, 0xe7, 0x39, 0xcd, 0x46, 0x36, + 0xdc, 0x48, 0x1c, 0x11, 0x47, 0xcf, 0x4d, 0x66, 0x27, 0x96, 0x53, 0xb7, 0x76, 0xeb, 0x36, 0x39, + 0x11, 0x61, 0xf4, 0xca, 0x70, 0x64, 0x79, 0x9e, 0xeb, 0xec, 0x1e, 0x7b, 0x36, 0x8b, 0x33, 0x42, + 0xe8, 0xf9, 0xc5, 0x59, 0xc3, 0xb5, 0xdb, 0xb6, 0x7b, 0xc2, 0xf2, 0x8c, 0x38, 0x7a, 0x0d, 0x8e, + 0x5c, 0xbb, 0xed, 0xd4, 0x8e, 0xad, 0x3a, 0x51, 0x44, 0x14, 0xbd, 0xa2, 0x4a, 0xb3, 0x3e, 0xf9, + 0x59, 0x3c, 0x22, 0x39, 0x22, 0x96, 0xe6, 0x40, 0x8e, 0x20, 0x9b, 0x45, 0x14, 0x96, 0x2f, 0xbb, + 0x4b, 0x6a, 0xa2, 0x01, 0x05, 0x56, 0xef, 0x11, 0x2c, 0xc5, 0x57, 0x22, 0xb0, 0x2a, 0x3d, 0x82, + 0xa5, 0x94, 0xe4, 0x0e, 0xd6, 0xc6, 0x27, 0x4a, 0xca, 0x43, 0x09, 0xa2, 0xea, 0x8e, 0x78, 0x29, + 0x1a, 0x2f, 0xe0, 0xea, 0x3a, 0x02, 0xa6, 0x68, 0xc0, 0x40, 0xce, 0xd8, 0x11, 0x26, 0xc5, 0xc3, + 0x04, 0x4c, 0x2d, 0x47, 0x88, 0x14, 0x0d, 0x11, 0x64, 0x55, 0x1c, 0xd1, 0x52, 0x02, 0x51, 0xa9, + 0x92, 0xa8, 0x10, 0x30, 0xcf, 0x63, 0xb6, 0xc0, 0xd3, 0xdc, 0x44, 0x4c, 0x29, 0xb5, 0x33, 0x96, + 0x9a, 0x8d, 0x20, 0x29, 0x1a, 0x24, 0xe0, 0xaa, 0x35, 0x02, 0xa6, 0x68, 0xc0, 0x60, 0xab, 0xd3, + 0x88, 0x97, 0x52, 0x88, 0x2e, 0x79, 0x0b, 0x11, 0xf3, 0x64, 0xc4, 0x20, 0xab, 0xcd, 0x88, 0x96, + 0xa2, 0xd1, 0x02, 0xa9, 0x2a, 0x23, 0x4c, 0x8a, 0x86, 0x09, 0xb2, 0x7a, 0x8c, 0x68, 0x29, 0xa5, + 0x74, 0x86, 0x55, 0x89, 0x11, 0x2f, 0x85, 0x27, 0x21, 0x64, 0x35, 0x18, 0xe1, 0x52, 0x4a, 0x78, + 0x41, 0x54, 0x7d, 0x11, 0x2a, 0x85, 0x17, 0x43, 0xd0, 0xea, 0x2e, 0xe2, 0xa5, 0x68, 0xbc, 0x20, + 0xab, 0xb8, 0x88, 0x96, 0xc2, 0xab, 0x22, 0x78, 0xb5, 0x16, 0x31, 0x53, 0x0a, 0x79, 0x61, 0xb3, + 0x85, 0x10, 0xb9, 0x03, 0x91, 0x16, 0x4f, 0x8e, 0x23, 0x7a, 0xe6, 0x8d, 0xa2, 0xf1, 0x93, 0xa3, + 0xc9, 0xf1, 0x95, 0x5c, 0x19, 0x46, 0x04, 0x3d, 0x1f, 0x41, 0x9e, 0x75, 0xb0, 0x59, 0x25, 0x70, + 0x08, 0x9c, 0x17, 0x84, 0x9e, 0x4d, 0x86, 0x1e, 0x22, 0xe8, 0x55, 0xa1, 0x87, 0xb0, 0x21, 0x6c, + 0x9e, 0x0b, 0x9b, 0x96, 0x6b, 0xef, 0x3b, 0x9f, 0xb8, 0x22, 0x95, 0xe8, 0x79, 0x05, 0x7a, 0xf6, + 0xeb, 0xd6, 0x41, 0x9b, 0x5b, 0x53, 0x16, 0xfb, 0xe2, 0xd6, 0x14, 0xf6, 0x3f, 0x74, 0xab, 0x5c, + 0x89, 0x14, 0x56, 0xa8, 0x04, 0x08, 0x2b, 0x51, 0x22, 0x85, 0x15, 0x27, 0xe1, 0xa1, 0x17, 0x3c, + 0x10, 0x2b, 0x4b, 0xa2, 0x84, 0x15, 0xa4, 0x3e, 0x95, 0xa3, 0xfc, 0x8a, 0x51, 0xf6, 0x7d, 0x94, + 0x6b, 0x9d, 0x4c, 0xcb, 0x84, 0x46, 0x4f, 0xc3, 0x8a, 0xa2, 0x7e, 0x1a, 0xa4, 0x61, 0x3f, 0x32, + 0x76, 0x04, 0xc7, 0x4d, 0x23, 0xe9, 0x7c, 0x51, 0x97, 0xc1, 0x20, 0x48, 0xbf, 0x8c, 0x22, 0x65, + 0xa5, 0x3f, 0x50, 0x51, 0xa7, 0x1f, 0x9d, 0x87, 0x17, 0x66, 0xa4, 0xd2, 0x6f, 0xfd, 0xf8, 0xab, + 0x19, 0x46, 0x49, 0x1a, 0x44, 0x1d, 0x55, 0xb9, 0xff, 0x46, 0xf2, 0xe0, 0x9d, 0xca, 0x20, 0xee, + 0xa7, 0xfd, 0x4e, 0xbf, 0x97, 0xe4, 0xdf, 0x55, 0xc2, 0x24, 0x4c, 0x2a, 0x3d, 0x75, 0xa5, 0x7a, + 0x93, 0x2f, 0x95, 0x5e, 0x18, 0x7d, 0x35, 0x93, 0x34, 0x48, 0x95, 0xd9, 0x0d, 0xd2, 0xe0, 0x2c, + 0x48, 0x54, 0xa5, 0x97, 0x0c, 0x2a, 0x69, 0xef, 0x2a, 0x19, 0xfd, 0xa7, 0x72, 0x99, 0x9a, 0xe1, + 0xe0, 0xaa, 0x6a, 0xc6, 0x2a, 0xe8, 0x7c, 0x09, 0xce, 0xc2, 0x5e, 0x98, 0x5e, 0x57, 0x06, 0xb1, + 0x3a, 0x0f, 0xbf, 0xab, 0x64, 0xf2, 0x4d, 0x25, 0x19, 0x9e, 0x8d, 0x7f, 0x21, 0xfb, 0x5a, 0x39, + 0xef, 0x05, 0x17, 0x49, 0x65, 0xfc, 0xb7, 0xca, 0x0c, 0xe9, 0xf2, 0xdc, 0x47, 0x96, 0x45, 0xc2, + 0x1c, 0x59, 0xba, 0x03, 0xeb, 0xe5, 0xb8, 0x02, 0xe7, 0xa7, 0x8c, 0x24, 0x8d, 0x87, 0x9d, 0x34, + 0x9a, 0x70, 0xc8, 0x46, 0x76, 0xc7, 0x9c, 0xc9, 0x0d, 0xf3, 0x5b, 0x93, 0xdb, 0xe4, 0x3b, 0x49, + 0x98, 0xf8, 0xf5, 0xd1, 0xfd, 0xf1, 0xeb, 0xc9, 0xc0, 0xf7, 0x7a, 0x57, 0xfe, 0x51, 0xea, 0x0c, + 0xae, 0xaa, 0xee, 0x9d, 0x9b, 0xe0, 0xb7, 0xc6, 0xd7, 0xee, 0xb7, 0xc7, 0xd7, 0xec, 0xef, 0x8f, + 0xaf, 0xf9, 0x37, 0x06, 0x03, 0xe1, 0x81, 0xc0, 0x18, 0xa3, 0x39, 0xe9, 0x0f, 0xe3, 0x8e, 0x32, + 0xe3, 0xfe, 0x30, 0x55, 0xb1, 0x19, 0x76, 0xc5, 0xc5, 0x83, 0xbc, 0xd0, 0x79, 0xdc, 0x5c, 0x61, + 0x81, 0xf5, 0x63, 0x18, 0x8d, 0x6e, 0xe1, 0x9a, 0x30, 0xb3, 0xf6, 0xc6, 0xc1, 0xd3, 0xd8, 0x59, + 0x59, 0x15, 0x66, 0x58, 0x16, 0x3a, 0x64, 0x26, 0xa1, 0x29, 0xf0, 0xfa, 0x1d, 0x73, 0x94, 0x2e, + 0x24, 0x86, 0xf1, 0xf6, 0xd8, 0x1d, 0xc4, 0x92, 0x70, 0xe3, 0xa3, 0xba, 0xfe, 0xd6, 0x8f, 0x47, + 0x1e, 0x61, 0x64, 0x09, 0x52, 0xe8, 0x2c, 0xb1, 0x71, 0x18, 0x24, 0x56, 0x7c, 0x31, 0xbc, 0x54, + 0x51, 0x6a, 0xec, 0xac, 0xa4, 0xf1, 0x50, 0x49, 0x2d, 0xbd, 0x6e, 0xad, 0xcc, 0x81, 0x49, 0xf2, + 0x0d, 0x45, 0xbe, 0x6b, 0x61, 0x2c, 0x94, 0x75, 0x8f, 0x0b, 0x4c, 0xb1, 0xc1, 0x64, 0x1a, 0x8f, + 0x33, 0x33, 0x85, 0xfa, 0xa7, 0x4c, 0x02, 0x20, 0x9e, 0x08, 0x20, 0x10, 0x02, 0x20, 0x62, 0x80, + 0x42, 0x10, 0xe0, 0x88, 0x02, 0x1c, 0x61, 0xc0, 0x22, 0x0e, 0x32, 0x09, 0x84, 0x50, 0x22, 0x21, + 0x9e, 0x50, 0xe4, 0x06, 0xca, 0xed, 0x2e, 0xcc, 0x8c, 0xed, 0x52, 0x3b, 0x0c, 0xb3, 0x08, 0xc7, + 0xaa, 0x70, 0x33, 0xa5, 0x13, 0x0f, 0x24, 0x02, 0x02, 0x48, 0x44, 0xd0, 0x08, 0x09, 0x2c, 0x31, + 0x81, 0x25, 0x28, 0x98, 0x44, 0x45, 0x36, 0x61, 0x11, 0x4e, 0x5c, 0xf2, 0x8f, 0xdc, 0xbb, 0x1e, + 0x28, 0xac, 0x88, 0x3b, 0x7e, 0x18, 0x11, 0x74, 0xbb, 0xb1, 0x4a, 0x20, 0xc2, 0xee, 0xb4, 0x2d, + 0xf1, 0x01, 0xc0, 0xd6, 0x56, 0x90, 0xa6, 0x2a, 0x8e, 0x60, 0x16, 0x38, 0x18, 0x7f, 0xbf, 0x79, + 0xf3, 0x79, 0xd5, 0xdc, 0x3e, 0xfd, 0xf1, 0x79, 0xcd, 0xdc, 0x3e, 0xcd, 0xbe, 0x5d, 0x1b, 0x7f, + 0xc9, 0xbe, 0x5f, 0xff, 0xbc, 0x6a, 0x56, 0xa7, 0xdf, 0x6f, 0x7c, 0x5e, 0x35, 0x37, 0x4e, 0xdf, + 0xfe, 0xf5, 0xd7, 0xbb, 0xb7, 0xff, 0xbc, 0xbf, 0x79, 0xfe, 0x2f, 0xfe, 0x47, 0x7e, 0x30, 0x3c, + 0xe5, 0x10, 0x9a, 0x6e, 0x61, 0xda, 0x48, 0x11, 0x42, 0x74, 0x1e, 0x9e, 0xc7, 0xd6, 0xb2, 0x70, + 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x0b, 0x37, 0x16, 0x6e, 0x2c, 0xdc, 0x58, 0xb8, 0x65, + 0x85, 0x5b, 0x57, 0x45, 0x69, 0x98, 0x5e, 0xc7, 0xea, 0x1c, 0xa9, 0x6e, 0xdb, 0x00, 0xb0, 0xd5, + 0x99, 0xdc, 0xda, 0xdd, 0x20, 0x01, 0xca, 0x13, 0xb7, 0x4b, 0x32, 0x9d, 0xf6, 0x64, 0xed, 0x21, + 0xd2, 0xd6, 0x43, 0xc4, 0x6d, 0x87, 0xa0, 0x4a, 0xbb, 0x89, 0x86, 0x7b, 0xcf, 0x6a, 0x71, 0x4b, + 0x26, 0xf1, 0x33, 0x57, 0x1c, 0xdd, 0xfd, 0x13, 0xd7, 0x46, 0x11, 0x42, 0x2f, 0x82, 0x90, 0x55, + 0x3f, 0x68, 0xba, 0x8e, 0x77, 0x78, 0xc4, 0xc5, 0x51, 0x8b, 0x7d, 0x71, 0x71, 0x14, 0x49, 0x81, + 0x76, 0xc1, 0x9c, 0x50, 0x61, 0xd0, 0x26, 0x52, 0xa4, 0xd4, 0xa2, 0xdc, 0xc6, 0x4f, 0xf4, 0xcc, + 0x1b, 0x45, 0x9e, 0xed, 0xd7, 0xec, 0x7d, 0xeb, 0xb8, 0xee, 0xf9, 0x47, 0xb6, 0xe7, 0x3a, 0x7b, + 0xac, 0x34, 0x08, 0xa2, 0xe7, 0x82, 0xe8, 0xb8, 0xb1, 0xd7, 0x6c, 0xb4, 0x3d, 0xd7, 0x72, 0x1a, + 0x76, 0xcd, 0xaf, 0xb7, 0x5b, 0x04, 0x11, 0x41, 0xf4, 0x5c, 0x10, 0x21, 0x1e, 0xe1, 0x4b, 0xf4, + 0xc8, 0x43, 0x8f, 0x7f, 0x62, 0xb9, 0x8e, 0xe5, 0x39, 0xcd, 0x06, 0x71, 0x44, 0x1c, 0x3d, 0x17, + 0x47, 0xe3, 0xc5, 0xac, 0x0d, 0xdb, 0x39, 0x38, 0xdc, 0x6d, 0xba, 0xbe, 0x55, 0xab, 0xb9, 0x76, + 0xbb, 0x4d, 0x20, 0x11, 0x48, 0xcf, 0x05, 0x92, 0x55, 0x3b, 0x72, 0x1a, 0xfe, 0x81, 0xdb, 0x3c, + 0x26, 0x1b, 0x22, 0x7c, 0x5e, 0x00, 0x9f, 0x3f, 0x78, 0x5c, 0x08, 0xa1, 0xf3, 0x12, 0xe8, 0x1c, + 0x59, 0x9f, 0x32, 0x3a, 0x04, 0x78, 0xee, 0x2b, 0x51, 0x24, 0x88, 0x08, 0x55, 0x49, 0x84, 0x08, + 0xa4, 0xf9, 0x30, 0x6a, 0xa7, 0xe1, 0xd9, 0xee, 0xbe, 0xb5, 0x67, 0x13, 0x49, 0x44, 0xd2, 0xab, + 0x6a, 0xfc, 0x7a, 0x93, 0xe0, 0x21, 0x78, 0x9e, 0x0f, 0x9e, 0x9c, 0x0c, 0xf9, 0x79, 0xaf, 0xda, + 0x23, 0x90, 0x08, 0xa4, 0x67, 0x03, 0xc9, 0xfe, 0xe4, 0xd9, 0x8d, 0x9a, 0x5d, 0x63, 0x85, 0x4f, + 0x1c, 0xbd, 0x9a, 0x60, 0x93, 0x17, 0x11, 0x49, 0xaf, 0x46, 0xd2, 0xb1, 0xe7, 0xd4, 0x9d, 0xff, + 0xd9, 0x35, 0x16, 0xfc, 0x44, 0xd1, 0xcb, 0x51, 0x64, 0xd5, 0xfe, 0xf0, 0xeb, 0x56, 0x83, 0x5d, + 0x47, 0xc2, 0xe7, 0x25, 0xf0, 0x19, 0x71, 0xa1, 0xbc, 0xf3, 0xc8, 0xc7, 0xf8, 0x44, 0xd1, 0xcb, + 0x4b, 0xfc, 0x96, 0xdb, 0xf4, 0xec, 0x3d, 0xcf, 0x69, 0x36, 0xb2, 0xe1, 0x46, 0xe2, 0x88, 0x38, + 0x7a, 0x6e, 0x32, 0x3b, 0xb1, 0x9c, 0xba, 0xb5, 0x5b, 0xb7, 0xc9, 0x89, 0x08, 0xa3, 0x57, 0x86, + 0x23, 0xcb, 0xf3, 0x5c, 0x67, 0xf7, 0xd8, 0xb3, 0x59, 0x9c, 0x11, 0x42, 0xcf, 0x2f, 0xce, 0x1a, + 0xae, 0xdd, 0xb6, 0xdd, 0x13, 0x96, 0x67, 0xc4, 0xd1, 0x6b, 0x70, 0xe4, 0xda, 0x6d, 0xa7, 0x76, + 0x6c, 0xd5, 0x89, 0x22, 0xa2, 0xe8, 0x15, 0x55, 0x9a, 0xf5, 0xc9, 0xcf, 0xe2, 0x11, 0xc9, 0x11, + 0xb1, 0x34, 0x07, 0x72, 0x04, 0xd9, 0x2c, 0xa2, 0xb0, 0x7c, 0xd9, 0x5d, 0x52, 0x13, 0x0d, 0x28, + 0xb0, 0x7a, 0x8f, 0x60, 0x29, 0xbe, 0x12, 0x81, 0x55, 0xe9, 0x11, 0x2c, 0xa5, 0x24, 0x77, 0xb0, + 0x36, 0x3e, 0x51, 0x52, 0x1e, 0x4a, 0x10, 0x55, 0x77, 0xc4, 0x4b, 0xd1, 0x78, 0x01, 0x57, 0xd7, + 0x11, 0x30, 0x45, 0x03, 0x06, 0x72, 0xc6, 0x8e, 0x30, 0x29, 0x1e, 0x26, 0x60, 0x6a, 0x39, 0x42, + 0xa4, 0x68, 0x88, 0x20, 0xab, 0xe2, 0x88, 0x96, 0x12, 0x88, 0x4a, 0x95, 0x44, 0x85, 0x80, 0x79, + 0x1e, 0xb3, 0x05, 0x9e, 0xe6, 0x26, 0x62, 0x4a, 0xa9, 0x9d, 0xb1, 0xd4, 0x6c, 0x04, 0x49, 0xd1, + 0x20, 0x01, 0x57, 0xad, 0x11, 0x30, 0x45, 0x03, 0x06, 0x5b, 0x9d, 0x46, 0xbc, 0x94, 0x42, 0x74, + 0xc9, 0x5b, 0x88, 0x98, 0x27, 0x23, 0x06, 0x59, 0x6d, 0x46, 0xb4, 0x14, 0x8d, 0x16, 0x48, 0x55, + 0x19, 0x61, 0x52, 0x34, 0x4c, 0x90, 0xd5, 0x63, 0x44, 0x4b, 0x29, 0xa5, 0x33, 0xac, 0x4a, 0x8c, + 0x78, 0x29, 0x3c, 0x09, 0x21, 0xab, 0xc1, 0x08, 0x97, 0x52, 0xc2, 0x0b, 0xa2, 0xea, 0x8b, 0x50, + 0x29, 0xbc, 0x18, 0x82, 0x56, 0x77, 0x11, 0x2f, 0x45, 0xe3, 0x05, 0x59, 0xc5, 0x45, 0xb4, 0x14, + 0x5e, 0x15, 0xc1, 0xab, 0xb5, 0x88, 0x99, 0x52, 0xc8, 0x0b, 0x9b, 0x2d, 0x84, 0xc8, 0x1d, 0x88, + 0xb4, 0x78, 0x72, 0x1c, 0xd1, 0x33, 0x6f, 0x14, 0x8d, 0x9f, 0x1c, 0x4d, 0x8e, 0xaf, 0xe4, 0xca, + 0x30, 0x22, 0xe8, 0xf9, 0x08, 0xf2, 0xac, 0x83, 0xcd, 0x2a, 0x81, 0x43, 0xe0, 0xbc, 0x20, 0xf4, + 0x6c, 0x32, 0xf4, 0x10, 0x41, 0xaf, 0x0a, 0x3d, 0x84, 0x0d, 0x61, 0xf3, 0x5c, 0xd8, 0xb4, 0x5c, + 0x7b, 0xdf, 0xf9, 0xc4, 0x15, 0xa9, 0x44, 0xcf, 0x2b, 0xd0, 0xb3, 0x5f, 0xb7, 0x0e, 0xda, 0xdc, + 0x9a, 0xb2, 0xd8, 0x17, 0xb7, 0xa6, 0xb0, 0xff, 0xa1, 0x5b, 0xe5, 0x4a, 0xa4, 0xb0, 0x42, 0x25, + 0x40, 0x58, 0x89, 0x12, 0x29, 0xac, 0x38, 0x09, 0x0f, 0xbd, 0xe0, 0x81, 0x58, 0x59, 0x12, 0x25, + 0xac, 0x20, 0xf5, 0xa9, 0x1c, 0xe5, 0x57, 0x8c, 0xb2, 0xef, 0xa3, 0x5c, 0xeb, 0x64, 0x5a, 0x26, + 0x34, 0x7a, 0x1a, 0x56, 0x14, 0xf5, 0xd3, 0x20, 0x0d, 0xfb, 0x91, 0xb1, 0x23, 0x38, 0x6e, 0x1a, + 0x49, 0xe7, 0x8b, 0xba, 0x0c, 0x06, 0x41, 0xfa, 0x65, 0x14, 0x29, 0x2b, 0xfd, 0x81, 0x8a, 0x3a, + 0xfd, 0xe8, 0x3c, 0xbc, 0x30, 0x23, 0x95, 0x7e, 0xeb, 0xc7, 0x5f, 0xcd, 0x30, 0x4a, 0xd2, 0x20, + 0xea, 0xa8, 0xca, 0xfd, 0x37, 0x92, 0x07, 0xef, 0x54, 0x06, 0x71, 0x3f, 0xed, 0x77, 0xfa, 0xbd, + 0x24, 0xff, 0xae, 0x12, 0x26, 0x61, 0x52, 0xe9, 0xa9, 0x2b, 0xd5, 0x9b, 0x7c, 0xa9, 0xf4, 0xc2, + 0xe8, 0xab, 0x99, 0xa4, 0x41, 0xaa, 0xcc, 0x6e, 0x90, 0x06, 0x67, 0x41, 0xa2, 0x2a, 0xbd, 0x64, + 0x50, 0x49, 0x7b, 0x57, 0xc9, 0xe8, 0x3f, 0x95, 0xcb, 0xd4, 0x0c, 0x07, 0x57, 0x55, 0x33, 0x56, + 0x41, 0xe7, 0x4b, 0x70, 0x16, 0xf6, 0xc2, 0xf4, 0xba, 0x32, 0x88, 0xd5, 0x79, 0xf8, 0x5d, 0x25, + 0x93, 0x6f, 0x2a, 0xc9, 0xf0, 0x6c, 0xfc, 0x0b, 0xd9, 0xd7, 0xca, 0xf8, 0x17, 0x92, 0xfe, 0x30, + 0xee, 0x28, 0x33, 0xee, 0x0f, 0x53, 0x15, 0x9b, 0x61, 0xb7, 0x32, 0xfe, 0x57, 0x64, 0x86, 0x78, + 0x79, 0xee, 0x24, 0xcb, 0x22, 0x61, 0x8e, 0x2d, 0xdd, 0xa1, 0xf5, 0x76, 0x64, 0x81, 0xf3, 0x55, + 0x46, 0x92, 0xc6, 0xc3, 0x4e, 0x1a, 0x4d, 0x38, 0x66, 0x23, 0xbb, 0x83, 0xce, 0xe4, 0x06, 0xfa, + 0xad, 0xc9, 0x6d, 0xf3, 0x9d, 0x24, 0x4c, 0xfc, 0xfa, 0xe8, 0x7e, 0xf9, 0xf5, 0x64, 0xe0, 0x7b, + 0xbd, 0x2b, 0xff, 0x28, 0x75, 0x06, 0x57, 0x55, 0xf7, 0xce, 0x4d, 0xf1, 0x5b, 0xe3, 0x7b, 0xe1, + 0xb7, 0xc7, 0xf7, 0xc0, 0x1f, 0xfd, 0xef, 0xf6, 0xf8, 0x16, 0xb8, 0xe3, 0x3b, 0xe0, 0x74, 0x65, + 0xc5, 0x30, 0x39, 0x91, 0x42, 0x50, 0x94, 0x30, 0xc2, 0xc1, 0xd5, 0xe6, 0x43, 0xe4, 0x4a, 0x0b, + 0x16, 0x79, 0x55, 0xf4, 0xb8, 0xb9, 0xc2, 0xa2, 0xee, 0xc7, 0x30, 0x1a, 0xdd, 0xc2, 0x35, 0x61, + 0x66, 0xed, 0x8d, 0x23, 0xab, 0xb1, 0xb3, 0xb2, 0x2a, 0xcc, 0xb0, 0x2c, 0x8e, 0xc8, 0xcc, 0x50, + 0x53, 0xe0, 0xf5, 0x3b, 0xe6, 0x28, 0x97, 0x48, 0x8c, 0xe9, 0x59, 0xd0, 0x15, 0xcb, 0xd8, 0x8d, + 0x8f, 0xea, 0xfa, 0x5b, 0x3f, 0x1e, 0x79, 0x84, 0x91, 0x65, 0x4f, 0xa1, 0x83, 0xc7, 0xc6, 0x61, + 0x90, 0x58, 0xf1, 0xc5, 0xf0, 0x52, 0x45, 0xa9, 0xb1, 0xb3, 0x92, 0xc6, 0x43, 0x25, 0xb5, 0x4e, + 0xbb, 0xb5, 0x32, 0x07, 0x26, 0x99, 0x39, 0x14, 0x33, 0xaf, 0x85, 0xb1, 0x50, 0x4a, 0x3e, 0xae, + 0x3e, 0xc5, 0x06, 0x93, 0x69, 0x3c, 0xce, 0xcc, 0x14, 0xea, 0x9f, 0x32, 0x09, 0x80, 0x78, 0x22, + 0x80, 0x40, 0x08, 0x80, 0x88, 0x01, 0x0a, 0x41, 0x80, 0x23, 0x0a, 0x70, 0x84, 0x01, 0x8b, 0x38, + 0xc8, 0x24, 0x10, 0x42, 0x89, 0x84, 0x78, 0x42, 0x91, 0x1b, 0x28, 0xb7, 0xbb, 0x30, 0x33, 0xb6, + 0x4b, 0x6e, 0xe5, 0x3d, 0x46, 0x38, 0x56, 0x85, 0x9b, 0x29, 0x9d, 0x78, 0x20, 0x11, 0x10, 0x40, + 0x22, 0x82, 0x46, 0x48, 0x60, 0x89, 0x09, 0x2c, 0x41, 0xc1, 0x24, 0x2a, 0xb2, 0x09, 0x8b, 0x70, + 0xe2, 0x92, 0x7f, 0xe4, 0xde, 0xf5, 0x40, 0x61, 0x45, 0xdc, 0xf1, 0xc3, 0x88, 0xa0, 0xdb, 0x8d, + 0x55, 0x02, 0x11, 0x76, 0xa7, 0x6d, 0x89, 0x0f, 0x00, 0xb6, 0xb6, 0x82, 0x34, 0x55, 0x71, 0x04, + 0xb3, 0xed, 0xc1, 0xf8, 0xfb, 0xcd, 0x9b, 0xcf, 0xab, 0xe6, 0x76, 0x60, 0x9e, 0x5b, 0xe6, 0xfe, + 0xe9, 0x3f, 0x6b, 0xbf, 0x57, 0x6f, 0x76, 0xde, 0xfe, 0xb3, 0x75, 0x73, 0xff, 0xcd, 0x1f, 0x8f, + 0xfd, 0xd8, 0xda, 0xef, 0x5b, 0x37, 0x3b, 0x33, 0xfe, 0xcf, 0xe6, 0xcd, 0xce, 0x13, 0xff, 0x8e, + 0x8d, 0x9b, 0x37, 0x0f, 0x7e, 0x74, 0xf4, 0xfe, 0xfa, 0xac, 0x5f, 0xa8, 0xce, 0xf8, 0x85, 0xf7, + 0xb3, 0x7e, 0xe1, 0xfd, 0x8c, 0x5f, 0x98, 0x69, 0xd2, 0xfa, 0x8c, 0x5f, 0xd8, 0xb8, 0xf9, 0xf1, + 0xe0, 0xe7, 0xdf, 0x3c, 0xfe, 0xa3, 0x9b, 0x37, 0x6f, 0x7f, 0xcc, 0xfa, 0x7f, 0x5b, 0x37, 0x3f, + 0x76, 0xde, 0xbe, 0xfd, 0x8f, 0xfc, 0xd4, 0x70, 0xca, 0xf9, 0x3d, 0xdd, 0x92, 0x96, 0x91, 0x22, + 0x24, 0xac, 0x3c, 0x59, 0x8d, 0xad, 0x65, 0x19, 0xcb, 0x32, 0x96, 0x65, 0x2c, 0xcb, 0x58, 0x96, + 0xb1, 0x2c, 0x63, 0x59, 0xc6, 0xb2, 0x8c, 0xcd, 0xca, 0xd8, 0xae, 0x8a, 0xd2, 0x30, 0xbd, 0x8e, + 0xd5, 0x39, 0x52, 0x15, 0xbb, 0x01, 0x60, 0xab, 0x33, 0xb9, 0xb5, 0xbb, 0x41, 0x02, 0x94, 0x27, + 0x6e, 0xf7, 0x8b, 0x3a, 0xed, 0xc9, 0xc6, 0x48, 0xa4, 0x85, 0x91, 0x88, 0x8b, 0x22, 0x41, 0x45, + 0x8a, 0x13, 0xf9, 0xfb, 0x9e, 0xd5, 0xe2, 0x82, 0x51, 0xe2, 0x67, 0xae, 0x38, 0xba, 0xfb, 0x27, + 0x6e, 0xdc, 0x22, 0x84, 0x5e, 0x04, 0x21, 0xab, 0x7e, 0xd0, 0x74, 0x1d, 0xef, 0xf0, 0x88, 0x3b, + 0xb7, 0x16, 0xfb, 0xe2, 0xce, 0x2d, 0x92, 0x02, 0xed, 0x82, 0x39, 0xa1, 0xc2, 0xa0, 0x4d, 0xa4, + 0x48, 0xa9, 0x45, 0x79, 0x90, 0x01, 0xd1, 0x33, 0x6f, 0x14, 0x79, 0xb6, 0x5f, 0xb3, 0xf7, 0xad, + 0xe3, 0xba, 0xe7, 0x1f, 0xd9, 0x9e, 0xeb, 0xec, 0xb1, 0xd2, 0x20, 0x88, 0x9e, 0x0b, 0xa2, 0xe3, + 0xc6, 0x5e, 0xb3, 0xd1, 0xf6, 0x5c, 0xcb, 0x69, 0xd8, 0x35, 0xbf, 0xde, 0x6e, 0x11, 0x44, 0x04, + 0xd1, 0x73, 0x41, 0x84, 0x78, 0xfa, 0x31, 0xd1, 0x23, 0x0f, 0x3d, 0xfe, 0x89, 0xe5, 0x3a, 0x96, + 0xe7, 0x34, 0x1b, 0xc4, 0x11, 0x71, 0xf4, 0x5c, 0x1c, 0x8d, 0x77, 0xda, 0x36, 0x6c, 0xe7, 0xe0, + 0x70, 0xb7, 0xe9, 0xfa, 0x56, 0xad, 0xe6, 0xda, 0xed, 0x36, 0x81, 0x44, 0x20, 0x3d, 0x17, 0x48, + 0x56, 0xed, 0xc8, 0x69, 0xf8, 0x07, 0x6e, 0xf3, 0x98, 0x6c, 0x88, 0xf0, 0x79, 0x01, 0x7c, 0xfe, + 0xe0, 0x49, 0x2b, 0x84, 0xce, 0x4b, 0xa0, 0x73, 0x64, 0x7d, 0xca, 0xe8, 0x10, 0xe0, 0x91, 0xb9, + 0x44, 0x91, 0x20, 0x22, 0x54, 0x25, 0x11, 0x22, 0x90, 0xe6, 0xc3, 0xa8, 0x9d, 0x86, 0x67, 0xbb, + 0xfb, 0xd6, 0x9e, 0x4d, 0x24, 0x11, 0x49, 0xaf, 0xaa, 0xf1, 0xeb, 0x4d, 0x82, 0x87, 0xe0, 0x79, + 0x3e, 0x78, 0x72, 0x32, 0xe4, 0xe7, 0xbd, 0x6a, 0x8f, 0x40, 0x22, 0x90, 0x9e, 0x0d, 0x24, 0xfb, + 0x93, 0x67, 0x37, 0x6a, 0x76, 0x8d, 0x15, 0x3e, 0x71, 0xf4, 0x6a, 0x82, 0x4d, 0x5e, 0x44, 0x24, + 0xbd, 0x1a, 0x49, 0xc7, 0x9e, 0x53, 0x77, 0xfe, 0x67, 0xd7, 0x58, 0xf0, 0x13, 0x45, 0x2f, 0x47, + 0x91, 0x55, 0xfb, 0xc3, 0xaf, 0x5b, 0x0d, 0x76, 0x1d, 0x09, 0x9f, 0x97, 0xc0, 0x67, 0xc4, 0x85, + 0xf2, 0xce, 0x23, 0x1f, 0xe3, 0x13, 0x45, 0x2f, 0x2f, 0xf1, 0x5b, 0x6e, 0xd3, 0xb3, 0xf7, 0x3c, + 0xa7, 0xd9, 0xc8, 0x86, 0x1b, 0x89, 0x23, 0xe2, 0xe8, 0xb9, 0xc9, 0xec, 0xc4, 0x72, 0xea, 0xd6, + 0x6e, 0xdd, 0x26, 0x27, 0x22, 0x8c, 0x5e, 0x19, 0x8e, 0x2c, 0xcf, 0x73, 0x9d, 0xdd, 0x63, 0xcf, + 0x66, 0x71, 0x46, 0x08, 0x3d, 0xbf, 0x38, 0x6b, 0xb8, 0x76, 0xdb, 0x76, 0x4f, 0x58, 0x9e, 0x11, + 0x47, 0xaf, 0xc1, 0x91, 0x6b, 0xb7, 0x9d, 0xda, 0xb1, 0x55, 0x27, 0x8a, 0x88, 0xa2, 0x57, 0x54, + 0x69, 0xd6, 0x27, 0x3f, 0x8b, 0x47, 0x24, 0x47, 0xc4, 0xd2, 0x1c, 0xc8, 0x11, 0x64, 0xb3, 0x88, + 0xc2, 0xf2, 0x65, 0x77, 0x49, 0x4d, 0x34, 0xa0, 0xc0, 0xea, 0x3d, 0x82, 0xa5, 0xf8, 0x4a, 0x04, + 0x56, 0xa5, 0x47, 0xb0, 0x94, 0x92, 0xdc, 0xc1, 0xda, 0xf8, 0x44, 0x49, 0x79, 0x28, 0x41, 0x54, + 0xdd, 0x11, 0x2f, 0x45, 0xe3, 0x05, 0x5c, 0x5d, 0x47, 0xc0, 0x14, 0x0d, 0x18, 0xc8, 0x19, 0x3b, + 0xc2, 0xa4, 0x78, 0x98, 0x80, 0xa9, 0xe5, 0x08, 0x91, 0xa2, 0x21, 0x82, 0xac, 0x8a, 0x23, 0x5a, + 0x4a, 0x20, 0x2a, 0x55, 0x12, 0x15, 0x02, 0xe6, 0x79, 0xcc, 0x16, 0x78, 0x9a, 0x9b, 0x88, 0x29, + 0xa5, 0x76, 0xc6, 0x52, 0xb3, 0x11, 0x24, 0x45, 0x83, 0x04, 0x5c, 0xb5, 0x46, 0xc0, 0x14, 0x0d, + 0x18, 0x6c, 0x75, 0x1a, 0xf1, 0x52, 0x0a, 0xd1, 0x25, 0x6f, 0x21, 0x62, 0x9e, 0x8c, 0x18, 0x64, + 0xb5, 0x19, 0xd1, 0x52, 0x34, 0x5a, 0x20, 0x55, 0x65, 0x84, 0x49, 0xd1, 0x30, 0x41, 0x56, 0x8f, + 0x11, 0x2d, 0xa5, 0x94, 0xce, 0xb0, 0x2a, 0x31, 0xe2, 0xa5, 0xf0, 0x24, 0x84, 0xac, 0x06, 0x23, + 0x5c, 0x4a, 0x09, 0x2f, 0x88, 0xaa, 0x2f, 0x42, 0xa5, 0xf0, 0x62, 0x08, 0x5a, 0xdd, 0x45, 0xbc, + 0x14, 0x8d, 0x17, 0x64, 0x15, 0x17, 0xd1, 0x52, 0x78, 0x55, 0x04, 0xaf, 0xd6, 0x22, 0x66, 0x4a, + 0x21, 0x2f, 0x6c, 0xb6, 0x10, 0x22, 0x77, 0x20, 0xd2, 0xe2, 0xc9, 0x71, 0x44, 0xcf, 0xbc, 0x51, + 0x34, 0x7e, 0x72, 0x34, 0x39, 0xbe, 0x92, 0x2b, 0xc3, 0x88, 0xa0, 0xe7, 0x23, 0xc8, 0xb3, 0x0e, + 0x36, 0xab, 0x04, 0x0e, 0x81, 0xf3, 0x82, 0xd0, 0xb3, 0xc9, 0xd0, 0x43, 0x04, 0xbd, 0x2a, 0xf4, + 0x10, 0x36, 0x84, 0xcd, 0x73, 0x61, 0xd3, 0x72, 0xed, 0x7d, 0xe7, 0x13, 0x57, 0xa4, 0x12, 0x3d, + 0xaf, 0x40, 0xcf, 0x7e, 0xdd, 0x3a, 0x68, 0x73, 0x6b, 0xca, 0x62, 0x5f, 0xdc, 0x9a, 0xc2, 0xfe, + 0x87, 0x6e, 0x95, 0x2b, 0x91, 0xc2, 0x0a, 0x95, 0x00, 0x61, 0x25, 0x4a, 0xa4, 0xb0, 0xe2, 0x24, + 0x3c, 0xf4, 0x82, 0x07, 0x62, 0x65, 0x49, 0x94, 0xb0, 0x82, 0xd4, 0xa7, 0x72, 0x94, 0x5f, 0x31, + 0xca, 0xbe, 0x8f, 0x72, 0xad, 0x93, 0x69, 0x99, 0xd0, 0xe8, 0x69, 0x58, 0x51, 0xd4, 0x4f, 0x83, + 0x34, 0xec, 0x47, 0xc6, 0x8e, 0xe0, 0xb8, 0x69, 0x24, 0x9d, 0x2f, 0xea, 0x32, 0x18, 0x04, 0xe9, + 0x97, 0x51, 0xa4, 0xac, 0xf4, 0x07, 0x2a, 0xea, 0xf4, 0xa3, 0xf3, 0xf0, 0xc2, 0x8c, 0x54, 0xfa, + 0xad, 0x1f, 0x7f, 0x35, 0xc3, 0x28, 0x49, 0x83, 0xa8, 0xa3, 0x2a, 0xf7, 0xdf, 0x48, 0x1e, 0xbc, + 0x53, 0x19, 0xc4, 0xfd, 0xb4, 0xdf, 0xe9, 0xf7, 0x92, 0xfc, 0xbb, 0x4a, 0x98, 0x84, 0x49, 0xa5, + 0xa7, 0xae, 0x54, 0x6f, 0xf2, 0xa5, 0xd2, 0x0b, 0xa3, 0xaf, 0x66, 0x92, 0x06, 0xa9, 0x32, 0xbb, + 0x41, 0x1a, 0x9c, 0x05, 0x89, 0xaa, 0xf4, 0x92, 0x41, 0x25, 0xed, 0x5d, 0x25, 0xa3, 0xff, 0x54, + 0x2e, 0x53, 0x33, 0x1c, 0x5c, 0x55, 0xcd, 0x58, 0x05, 0x9d, 0x2f, 0xc1, 0x59, 0xd8, 0x0b, 0xd3, + 0xeb, 0xca, 0x20, 0x56, 0xe7, 0xe1, 0x77, 0x95, 0x4c, 0xbe, 0xa9, 0x24, 0xc3, 0xb3, 0xf1, 0x2f, + 0x64, 0x5f, 0x2b, 0xe1, 0xe0, 0x6a, 0xd3, 0x4c, 0xfa, 0xc3, 0xb8, 0xa3, 0xcc, 0xb8, 0x3f, 0x4c, + 0x55, 0x6c, 0x86, 0xdd, 0xca, 0xf8, 0x5f, 0x91, 0x19, 0xe2, 0xe5, 0xb9, 0x93, 0x2c, 0x8b, 0x84, + 0x39, 0xb6, 0x74, 0x87, 0xd6, 0xdb, 0x91, 0x05, 0xce, 0x57, 0x19, 0x49, 0x1a, 0x0f, 0x3b, 0x69, + 0x34, 0xe1, 0x98, 0x8d, 0xec, 0x0e, 0x3a, 0x93, 0x1b, 0xe8, 0xb7, 0x26, 0xb7, 0xcd, 0x77, 0x92, + 0x30, 0xf1, 0xeb, 0xa3, 0xfb, 0xe5, 0xd7, 0x93, 0x81, 0xef, 0xf5, 0xae, 0xfc, 0xa3, 0xd4, 0x19, + 0x5c, 0x55, 0xdd, 0x3b, 0x37, 0xc5, 0x6f, 0x8d, 0xef, 0x85, 0xdf, 0x1e, 0xdf, 0x03, 0xdf, 0x19, + 0x5c, 0x6d, 0xb6, 0xc7, 0xb7, 0xc0, 0x1d, 0xdf, 0x01, 0xa7, 0x2b, 0x2b, 0x86, 0xc9, 0x89, 0x14, + 0x82, 0xa2, 0x84, 0x91, 0xe1, 0xd9, 0x4c, 0xc2, 0x6e, 0x22, 0x2e, 0x44, 0xe4, 0xb5, 0xd0, 0x5d, + 0x23, 0x85, 0x45, 0xd8, 0x8f, 0x61, 0xd4, 0x35, 0x76, 0x56, 0xd6, 0x84, 0x99, 0xb5, 0x37, 0x8e, + 0xa2, 0xc6, 0xce, 0xca, 0xaa, 0x30, 0xc3, 0xb2, 0x98, 0x21, 0x33, 0x1b, 0x4d, 0xe1, 0xd6, 0xef, + 0x98, 0xa3, 0xbc, 0x21, 0x31, 0x7e, 0x67, 0x01, 0x56, 0x2c, 0x3b, 0x37, 0x3e, 0xaa, 0xeb, 0x6f, + 0xfd, 0xb8, 0x7b, 0xeb, 0xb4, 0x42, 0x87, 0x8c, 0x8d, 0xc3, 0x20, 0xb1, 0xe2, 0x8b, 0xe1, 0xa5, + 0x8a, 0x52, 0x63, 0x67, 0x25, 0x8d, 0x87, 0x4a, 0x6a, 0x4d, 0x76, 0x6b, 0x65, 0x0e, 0x4c, 0xb2, + 0x70, 0x28, 0x16, 0x5e, 0x0b, 0x63, 0x99, 0x01, 0xef, 0x36, 0xaf, 0xca, 0x8d, 0x28, 0x0f, 0x39, + 0x80, 0xd4, 0x90, 0x22, 0x93, 0x0a, 0x88, 0xa7, 0x04, 0x08, 0xd4, 0x00, 0x88, 0x22, 0xa0, 0x50, + 0x05, 0x38, 0xca, 0x00, 0x47, 0x1d, 0xb0, 0x28, 0x84, 0x4c, 0x2a, 0x21, 0x94, 0x52, 0x88, 0xa7, + 0x16, 0xb9, 0x81, 0x59, 0x33, 0x5b, 0x7c, 0x10, 0x9a, 0xc6, 0xf5, 0xcc, 0x5c, 0xe1, 0xfe, 0x2c, + 0x9b, 0x68, 0xc0, 0x10, 0x0e, 0x24, 0xe2, 0x01, 0x48, 0x40, 0xd0, 0x88, 0x08, 0x2c, 0x21, 0x81, + 0x25, 0x26, 0x98, 0x04, 0x45, 0x36, 0x51, 0x11, 0x4e, 0x58, 0x60, 0x88, 0x4b, 0x6e, 0x68, 0xd0, + 0xbb, 0xe8, 0xc7, 0x61, 0xfa, 0xe5, 0x12, 0x27, 0x80, 0x4d, 0x73, 0xc4, 0xad, 0xe9, 0x20, 0x71, + 0x60, 0x42, 0x6c, 0x56, 0x41, 0xcc, 0x45, 0x21, 0x38, 0x88, 0x44, 0x07, 0x98, 0xf0, 0xa0, 0x12, + 0x1f, 0x78, 0x02, 0x04, 0x4f, 0x84, 0xb0, 0x09, 0x11, 0x06, 0x31, 0x02, 0x21, 0x48, 0x39, 0x14, + 0xbc, 0xeb, 0x81, 0xc2, 0x8c, 0xd8, 0xc3, 0x30, 0x4a, 0x3f, 0x20, 0xc5, 0xeb, 0x09, 0xfd, 0xd8, + 0x00, 0x32, 0xd9, 0x0d, 0xa2, 0x0b, 0x05, 0xb7, 0x12, 0x0b, 0x4f, 0xdc, 0x6f, 0x1c, 0x85, 0x11, + 0x5c, 0x22, 0x07, 0xe5, 0xd5, 0x0f, 0xcc, 0x1f, 0x2f, 0x7e, 0x03, 0xb6, 0x7f, 0x3f, 0x0e, 0x3a, + 0x69, 0xd8, 0x8f, 0x6a, 0xe1, 0x45, 0x98, 0x26, 0xa3, 0x0b, 0xe1, 0x06, 0x91, 0x22, 0x5c, 0x36, + 0xf8, 0x4e, 0x97, 0x2d, 0xd9, 0x65, 0xd7, 0x37, 0x36, 0xe8, 0xb4, 0x24, 0xe2, 0x7a, 0x59, 0x8b, + 0xb1, 0x60, 0x46, 0xfe, 0xfd, 0x04, 0x48, 0x2a, 0xc6, 0x79, 0x2f, 0xb8, 0x48, 0xf0, 0x5a, 0xbf, + 0x99, 0xd9, 0x6c, 0xfb, 0x2e, 0xc2, 0x5c, 0xb6, 0x7d, 0x0b, 0x04, 0x32, 0xdb, 0xbe, 0xc5, 0xb9, + 0x21, 0xdb, 0xbe, 0x25, 0x5f, 0x00, 0xdb, 0xbe, 0xe4, 0x1c, 0x13, 0x28, 0xe0, 0xb6, 0x7d, 0x55, + 0x34, 0xbc, 0x54, 0x71, 0x26, 0x3a, 0xc6, 0x6b, 0xfe, 0xae, 0x55, 0x81, 0x6c, 0xb6, 0xa3, 0xe1, + 0x78, 0x2c, 0x81, 0xae, 0x37, 0xcf, 0xbb, 0x5a, 0x0f, 0x93, 0xd4, 0x4a, 0xd3, 0x18, 0xcb, 0xfd, + 0x8e, 0xc2, 0xc8, 0xee, 0xa9, 0x51, 0xf6, 0x18, 0x95, 0x2b, 0xd1, 0xb0, 0xd7, 0x03, 0x02, 0xf2, + 0x51, 0xf0, 0x1d, 0xd7, 0xf8, 0x66, 0xdc, 0x55, 0xb1, 0xea, 0xee, 0x5e, 0x4f, 0x4c, 0x67, 0x77, + 0x60, 0x69, 0xba, 0x03, 0x57, 0x93, 0x36, 0x27, 0x58, 0x77, 0x20, 0x33, 0x9b, 0xdd, 0x01, 0x76, + 0x07, 0xd8, 0x1d, 0x60, 0x77, 0x80, 0xdd, 0x01, 0x76, 0x07, 0xc8, 0x37, 0xd8, 0x1d, 0x28, 0x24, + 0x62, 0x0f, 0xc3, 0x28, 0x7d, 0xbf, 0x0e, 0xd8, 0x18, 0xd8, 0xe2, 0x54, 0xd8, 0x82, 0x5f, 0x9c, + 0x0a, 0x23, 0xb1, 0x7e, 0x86, 0xf9, 0x9c, 0x0a, 0x63, 0xba, 0x7c, 0x89, 0xcb, 0x72, 0x2a, 0xac, + 0x74, 0x97, 0xad, 0xae, 0x6f, 0x57, 0xb7, 0x37, 0xb7, 0xd6, 0xb7, 0x39, 0x1c, 0x46, 0x42, 0xae, + 0x99, 0xb5, 0x1c, 0x0e, 0x5b, 0x06, 0x0b, 0xa5, 0xcb, 0xab, 0x41, 0x36, 0xb9, 0xe7, 0xf6, 0xea, + 0xb2, 0x08, 0xfa, 0xce, 0xa6, 0xda, 0x3b, 0xdf, 0x4b, 0x5e, 0xe9, 0x2e, 0xdf, 0xdf, 0x04, 0xfb, + 0x1a, 0xc8, 0x03, 0x20, 0xa8, 0x07, 0x3f, 0x20, 0x24, 0x97, 0xeb, 0x8d, 0x16, 0x09, 0x54, 0xae, + 0x37, 0x5a, 0x9c, 0x7b, 0x71, 0xbd, 0x51, 0xd1, 0x64, 0x8c, 0xeb, 0x8d, 0x96, 0x8d, 0x7f, 0xc3, + 0x3c, 0xa0, 0xc9, 0x23, 0x6e, 0x4f, 0x05, 0xe7, 0xb1, 0x3a, 0x47, 0x88, 0xb8, 0xd3, 0x51, 0x4d, + 0x80, 0x47, 0x32, 0x46, 0x6b, 0x52, 0xd2, 0xbc, 0x7b, 0x97, 0x15, 0x01, 0x95, 0x8c, 0x82, 0xb1, + 0x14, 0xd0, 0xc8, 0x32, 0xa9, 0xcb, 0x61, 0x3f, 0xaa, 0x6b, 0xe9, 0xa4, 0x1f, 0x63, 0xd8, 0x16, + 0x6a, 0xb8, 0x16, 0x6a, 0x98, 0x16, 0x63, 0x78, 0x96, 0xe7, 0x35, 0xbe, 0xce, 0x4e, 0xbd, 0xbb, + 0x7b, 0x92, 0x0f, 0x01, 0x58, 0xe0, 0x79, 0x6f, 0xd9, 0x9f, 0xda, 0x61, 0x97, 0x47, 0x55, 0x22, + 0x5a, 0xc4, 0xa3, 0x2a, 0x97, 0x3e, 0x86, 0xf1, 0x7c, 0x46, 0xf1, 0xae, 0x21, 0xf4, 0xfc, 0x04, + 0xd1, 0xe7, 0x25, 0xf0, 0x4c, 0xc6, 0xe7, 0xf6, 0x28, 0x78, 0x26, 0xe3, 0x6b, 0x4c, 0xe4, 0x99, + 0x8c, 0x73, 0x32, 0x94, 0x67, 0x32, 0x92, 0x6e, 0x16, 0xf5, 0x11, 0x8a, 0x3d, 0x93, 0x31, 0x95, + 0xfc, 0xe4, 0x20, 0x0f, 0xc7, 0x63, 0x2b, 0x65, 0x9f, 0xc3, 0xb8, 0xca, 0x73, 0x18, 0xb5, 0xa3, + 0x03, 0x40, 0xb4, 0x00, 0x85, 0x1e, 0xc0, 0xd1, 0x04, 0x38, 0xba, 0x80, 0x45, 0x1b, 0x64, 0xd2, + 0x07, 0xa1, 0x34, 0x22, 0xff, 0x68, 0xc5, 0x3f, 0xef, 0xcf, 0x23, 0x66, 0xd8, 0x55, 0x51, 0x1a, + 0xa6, 0xd7, 0xb2, 0x9f, 0xf5, 0xe7, 0x35, 0xbc, 0x60, 0x85, 0x88, 0xe1, 0x4c, 0x6e, 0xe5, 0x6e, + 0x90, 0x00, 0xcd, 0x80, 0x3a, 0x6d, 0xa7, 0xed, 0xb7, 0x8f, 0x77, 0xbd, 0xfa, 0x89, 0xef, 0xfd, + 0xd9, 0xb2, 0xa5, 0x87, 0xf9, 0xb1, 0x68, 0x28, 0x81, 0x50, 0xb3, 0x82, 0xad, 0x81, 0x71, 0x9b, + 0xc7, 0x9e, 0xed, 0xfa, 0x7b, 0x56, 0xcb, 0xda, 0x75, 0xea, 0x8e, 0xf7, 0xe7, 0x04, 0x16, 0x6d, + 0x04, 0x5c, 0x20, 0xe2, 0x03, 0x0b, 0x27, 0x4f, 0xc1, 0xcb, 0xdd, 0x3f, 0x01, 0x2d, 0xa3, 0xf8, + 0x9d, 0x50, 0x29, 0x01, 0x2a, 0x56, 0xfd, 0xa0, 0xe9, 0x3a, 0xde, 0xe1, 0x11, 0xd7, 0x96, 0xcc, + 0xf7, 0x75, 0xca, 0x65, 0x6e, 0x4c, 0xde, 0x68, 0xc1, 0x98, 0x90, 0x60, 0xd0, 0x25, 0x22, 0x16, + 0x5d, 0xeb, 0xf9, 0xae, 0x6d, 0xed, 0x1d, 0x92, 0xdf, 0x13, 0x25, 0xcf, 0x47, 0x8b, 0x67, 0xfb, + 0x35, 0x7b, 0xdf, 0x3a, 0xae, 0x7b, 0xfe, 0x91, 0xed, 0xb9, 0xce, 0x1e, 0x19, 0x3e, 0xc1, 0x32, + 0x0b, 0x2c, 0xc7, 0x8d, 0xbd, 0x66, 0xa3, 0xed, 0xb9, 0x96, 0xd3, 0xb0, 0x6b, 0x7e, 0xbd, 0xdd, + 0x22, 0x58, 0x08, 0x96, 0x59, 0x60, 0xa9, 0x3b, 0x8d, 0x8f, 0x7e, 0xcd, 0xae, 0x5b, 0x6c, 0x1a, + 0x10, 0x25, 0x4f, 0x40, 0x89, 0x7f, 0x62, 0xb9, 0x8e, 0xe5, 0x39, 0xcd, 0x06, 0xf1, 0x42, 0xbc, + 0xcc, 0xc2, 0x8b, 0xd3, 0x3a, 0xd9, 0xf4, 0x1b, 0xb6, 0x73, 0x70, 0xb8, 0xdb, 0x74, 0x7d, 0xab, + 0x56, 0x73, 0xed, 0x76, 0x9b, 0x80, 0x21, 0x60, 0x66, 0x01, 0xc6, 0xaa, 0x1d, 0x39, 0x0d, 0xff, + 0xc0, 0x6d, 0x1e, 0x93, 0xad, 0x10, 0x26, 0xff, 0x02, 0x93, 0x3f, 0xfc, 0xb6, 0x53, 0x23, 0x44, + 0x08, 0x91, 0x59, 0x10, 0x39, 0xb2, 0x3e, 0x65, 0x74, 0x65, 0xd7, 0x6a, 0xd4, 0xfe, 0xeb, 0xd4, + 0xbc, 0x43, 0xa2, 0x85, 0x68, 0xf9, 0x17, 0xa2, 0x52, 0x25, 0x51, 0x21, 0x60, 0x9e, 0xc7, 0x6c, + 0x9d, 0x86, 0x67, 0xbb, 0xfb, 0xd6, 0x9e, 0x4d, 0xc4, 0x10, 0x31, 0x4f, 0xaa, 0x9d, 0xeb, 0x4d, + 0x82, 0x84, 0x20, 0x99, 0x0d, 0x92, 0x9c, 0xac, 0xf8, 0x79, 0xef, 0xd6, 0x23, 0x60, 0x08, 0x98, + 0x99, 0x80, 0xb1, 0x3f, 0x79, 0x76, 0xa3, 0x66, 0xd7, 0x58, 0x39, 0x13, 0x2f, 0x4f, 0x26, 0xba, + 0xe4, 0x2d, 0x44, 0xcc, 0x93, 0x11, 0x73, 0xec, 0x39, 0x75, 0xe7, 0x7f, 0x76, 0x8d, 0x85, 0x34, + 0xd1, 0xf2, 0x6b, 0xb4, 0x58, 0xb5, 0x3f, 0xfc, 0xba, 0xd5, 0x60, 0x77, 0x8e, 0x30, 0xf9, 0xd7, + 0xee, 0x9c, 0xd3, 0xb8, 0xed, 0xd0, 0xf1, 0xb1, 0x33, 0xd1, 0xf2, 0xeb, 0xd2, 0xb9, 0xe5, 0x36, + 0x3d, 0x7b, 0xcf, 0x73, 0x9a, 0x8d, 0x6c, 0x58, 0x8e, 0x78, 0x21, 0x5e, 0x66, 0x25, 0xa1, 0x13, + 0xcb, 0xa9, 0x5b, 0xbb, 0x75, 0x9b, 0x9c, 0x85, 0x70, 0x79, 0x62, 0x78, 0xb1, 0x3c, 0xcf, 0x75, + 0x76, 0x8f, 0x3d, 0x9b, 0xc5, 0x10, 0xa1, 0xf2, 0x2f, 0x33, 0x95, 0xae, 0xdd, 0xb6, 0xdd, 0x13, + 0x96, 0x43, 0xc4, 0xcb, 0x53, 0xf0, 0xe2, 0xda, 0x6d, 0xa7, 0x76, 0x6c, 0xd5, 0x89, 0x16, 0xa2, + 0xe5, 0x09, 0x55, 0x91, 0xf5, 0xc9, 0xcf, 0xe2, 0x0b, 0xc9, 0x0b, 0x31, 0xf3, 0x0c, 0xf2, 0x02, + 0xd5, 0x6c, 0xa1, 0x80, 0x77, 0x59, 0x5c, 0x0d, 0x5c, 0x9b, 0x07, 0xa8, 0xb6, 0x22, 0x28, 0x16, + 0x5f, 0x01, 0xc0, 0xa9, 0xaa, 0x08, 0x8a, 0x42, 0x92, 0x30, 0x48, 0x1b, 0x9b, 0x68, 0x28, 0x0e, + 0x0d, 0x48, 0x2a, 0x29, 0xe2, 0x62, 0xd1, 0xb8, 0x00, 0x55, 0x43, 0x11, 0x18, 0x8b, 0x06, 0x06, + 0xd4, 0xec, 0x16, 0xe1, 0xb0, 0x78, 0x38, 0x80, 0xa8, 0x9b, 0x08, 0x85, 0x45, 0x43, 0x01, 0x51, + 0xc5, 0x44, 0x54, 0x14, 0x40, 0x24, 0xaa, 0x24, 0x12, 0x04, 0x86, 0x36, 0xaa, 0x24, 0x22, 0xa3, + 0x90, 0x9a, 0x14, 0x43, 0x7d, 0x44, 0x30, 0x2c, 0x1a, 0x0c, 0xa0, 0x2a, 0x23, 0x02, 0x63, 0xd1, + 0xc0, 0xc0, 0x54, 0x13, 0x11, 0x17, 0x85, 0x10, 0x4e, 0xf2, 0x0a, 0x22, 0x43, 0x0b, 0x75, 0x10, + 0x51, 0xb1, 0x68, 0x54, 0x40, 0xa9, 0x80, 0x08, 0x87, 0x45, 0xc3, 0x01, 0x51, 0xed, 0x43, 0x54, + 0x14, 0x52, 0x92, 0xc2, 0xa9, 0x7a, 0x88, 0x8b, 0x85, 0x27, 0x0f, 0x44, 0xf5, 0x0e, 0x61, 0x51, + 0x48, 0xb8, 0x40, 0x52, 0xe9, 0x10, 0x12, 0x0b, 0x2f, 0x3e, 0x20, 0xd5, 0x38, 0xc4, 0xc5, 0xa2, + 0x71, 0x81, 0xa8, 0xba, 0x21, 0x2a, 0x16, 0x5e, 0x85, 0xc0, 0xaa, 0x6b, 0x88, 0x8d, 0x42, 0xc8, + 0x05, 0x9b, 0x15, 0x4b, 0x09, 0x85, 0x16, 0x4f, 0x64, 0x22, 0x4a, 0x5e, 0x8a, 0x96, 0xf1, 0x93, + 0x91, 0xc9, 0x31, 0x6f, 0x5c, 0x79, 0x44, 0xa4, 0xcc, 0x46, 0x8a, 0x67, 0x1d, 0x6c, 0x56, 0x09, + 0x10, 0x02, 0xe4, 0x5f, 0x42, 0xc9, 0x26, 0x43, 0x09, 0x91, 0xf2, 0xa4, 0x50, 0x42, 0x78, 0x10, + 0x1e, 0xb3, 0xe0, 0xd1, 0x72, 0xed, 0x7d, 0xe7, 0x13, 0x57, 0x30, 0x12, 0x25, 0x4f, 0x40, 0xc9, + 0x7e, 0xdd, 0x3a, 0x68, 0x73, 0x7b, 0xc4, 0x7c, 0x5f, 0xdc, 0x1e, 0xc1, 0x3e, 0x02, 0x5a, 0x65, + 0x48, 0x44, 0xb0, 0x02, 0x24, 0x10, 0x58, 0xe9, 0x11, 0x11, 0xac, 0xe8, 0x08, 0x03, 0x56, 0x6e, + 0x44, 0x03, 0x2b, 0x34, 0x7d, 0x2a, 0x33, 0xb9, 0x15, 0x99, 0xcc, 0xfb, 0x26, 0xcf, 0x2a, 0x59, + 0x16, 0x09, 0x8b, 0x7e, 0x86, 0x15, 0x45, 0xfd, 0x34, 0x48, 0xc3, 0x7e, 0x64, 0xec, 0x08, 0x8c, + 0x7b, 0x46, 0xd2, 0xf9, 0xa2, 0x2e, 0x83, 0x41, 0x90, 0x7e, 0x19, 0x45, 0xba, 0x4a, 0x7f, 0xa0, + 0xa2, 0x4e, 0x3f, 0x3a, 0x0f, 0x2f, 0xcc, 0x48, 0xa5, 0xdf, 0xfa, 0xf1, 0x57, 0x33, 0x8c, 0x92, + 0x34, 0x88, 0x3a, 0xaa, 0x72, 0xff, 0x8d, 0xe4, 0xc1, 0x3b, 0x95, 0x41, 0xdc, 0x4f, 0xfb, 0x9d, + 0x7e, 0x2f, 0xc9, 0xbf, 0xab, 0x84, 0x49, 0x98, 0x54, 0x7a, 0xea, 0x4a, 0xf5, 0x26, 0x5f, 0x2a, + 0xbd, 0x30, 0xfa, 0x6a, 0x26, 0x69, 0x90, 0x2a, 0xb3, 0x1b, 0xa4, 0xc1, 0x59, 0x90, 0xa8, 0x4a, + 0x2f, 0x19, 0x54, 0xd2, 0xde, 0x55, 0x32, 0xfa, 0x4f, 0xe5, 0x32, 0x35, 0xc3, 0xc1, 0x55, 0xd5, + 0x8c, 0x55, 0xd0, 0xf9, 0x12, 0x9c, 0x85, 0xbd, 0x30, 0xbd, 0xae, 0x0c, 0x62, 0x75, 0x1e, 0x7e, + 0x57, 0xc9, 0xe4, 0x9b, 0x4a, 0x32, 0x3c, 0x1b, 0xff, 0x42, 0xf6, 0xb5, 0x32, 0xfe, 0xfb, 0x64, + 0x05, 0x63, 0x39, 0x8e, 0x21, 0xc8, 0x29, 0x8c, 0x34, 0xb8, 0x10, 0xe7, 0x09, 0x79, 0xa6, 0x1f, + 0x19, 0x27, 0x2c, 0x80, 0x7c, 0x0c, 0xa3, 0xae, 0xb1, 0xb3, 0xb2, 0x26, 0xcc, 0xac, 0xbd, 0x71, + 0x90, 0x30, 0x76, 0x56, 0x56, 0x85, 0x19, 0xd6, 0x1a, 0x87, 0x07, 0x99, 0xc1, 0x76, 0x0a, 0xb3, + 0x7e, 0xc7, 0x1c, 0x85, 0x45, 0x81, 0x53, 0x4c, 0x46, 0xbb, 0x3f, 0x8c, 0x3b, 0x4a, 0xe4, 0xed, + 0xcb, 0xdc, 0x41, 0x5d, 0x7f, 0xeb, 0xc7, 0x23, 0x8f, 0x30, 0xb2, 0x44, 0x20, 0x74, 0x14, 0xcc, + 0x38, 0x0c, 0x12, 0x2b, 0xbe, 0x18, 0x5e, 0xaa, 0x28, 0x35, 0x76, 0x56, 0xd2, 0x78, 0xa8, 0x84, + 0x1a, 0x7a, 0xc7, 0xca, 0x1c, 0x98, 0x24, 0x99, 0x50, 0x24, 0xb3, 0x16, 0xc6, 0x42, 0xd9, 0xe5, + 0x98, 0x95, 0x89, 0x0d, 0x26, 0xd3, 0x78, 0x9c, 0x99, 0x29, 0xd4, 0x3f, 0x65, 0x12, 0x00, 0xf1, + 0x44, 0x00, 0x81, 0x10, 0x00, 0x11, 0x03, 0x14, 0x82, 0x00, 0x47, 0x14, 0xe0, 0x08, 0x03, 0x16, + 0x71, 0x90, 0x49, 0x20, 0x84, 0x12, 0x09, 0xf1, 0x84, 0xe2, 0x6e, 0x17, 0xe1, 0xfd, 0xba, 0xfc, + 0x20, 0x74, 0xa7, 0xaf, 0xf0, 0x7e, 0x5d, 0x7a, 0x00, 0x9a, 0x10, 0x8d, 0x55, 0xe1, 0x66, 0x4a, + 0x27, 0x1c, 0x48, 0xc4, 0x03, 0x90, 0x80, 0xa0, 0x11, 0x11, 0x58, 0x42, 0x02, 0x4b, 0x4c, 0x30, + 0x09, 0x8a, 0x6c, 0xa2, 0x22, 0x9c, 0xb0, 0xe4, 0x1f, 0xb9, 0x77, 0x3d, 0x50, 0x58, 0x11, 0x77, + 0x18, 0x46, 0xa9, 0x78, 0x6e, 0x70, 0x97, 0x1f, 0x6c, 0x01, 0x98, 0xea, 0x06, 0xd1, 0x85, 0x82, + 0x91, 0xdd, 0xe2, 0x08, 0x17, 0x8c, 0xa3, 0x30, 0x82, 0xc9, 0xb8, 0x60, 0xc4, 0xf6, 0x81, 0xd9, + 0x63, 0xf1, 0x38, 0xa0, 0xdd, 0xfb, 0x71, 0xd0, 0x49, 0xc3, 0x7e, 0x54, 0x0b, 0x2f, 0xc2, 0x34, + 0x19, 0x5d, 0x00, 0xd5, 0x4e, 0x8b, 0x70, 0xc5, 0xe0, 0x3b, 0x5d, 0xb1, 0x60, 0x57, 0xac, 0xae, + 0x6f, 0x57, 0xb7, 0x37, 0xb7, 0xd6, 0xb7, 0x37, 0xe8, 0x93, 0x24, 0xc4, 0x58, 0x56, 0x9e, 0xb2, + 0xb0, 0x78, 0x85, 0x03, 0xd5, 0xc3, 0x24, 0xb5, 0xd2, 0x34, 0xc6, 0x28, 0x2e, 0x8e, 0xc2, 0xc8, + 0xee, 0xa9, 0x51, 0xed, 0x3b, 0xf2, 0xf5, 0x68, 0xd8, 0xeb, 0x01, 0x90, 0xf6, 0xa3, 0xe0, 0x3b, + 0x9e, 0xd1, 0xcd, 0xb8, 0xab, 0x62, 0xd5, 0xdd, 0xbd, 0x9e, 0x98, 0xfc, 0x1b, 0x83, 0x94, 0x3e, + 0x96, 0x49, 0x7d, 0x3c, 0x23, 0x7c, 0xa8, 0x38, 0xb7, 0x53, 0x97, 0xe1, 0xe2, 0x34, 0xb8, 0x90, + 0x38, 0x60, 0x2c, 0xd7, 0x79, 0x38, 0xae, 0x05, 0xec, 0xbe, 0x3a, 0xb9, 0xad, 0xc4, 0x11, 0xdb, + 0x24, 0x8d, 0x87, 0x9d, 0x34, 0x9a, 0xf4, 0x7f, 0x1b, 0xd9, 0xfd, 0x72, 0x26, 0xb7, 0xcb, 0x6f, + 0x4d, 0x6e, 0x92, 0xef, 0x24, 0x61, 0xe2, 0xd7, 0x47, 0x77, 0xc7, 0xaf, 0x27, 0x03, 0xdf, 0xeb, + 0x5d, 0xf9, 0x47, 0xa9, 0x33, 0xb8, 0xaa, 0xba, 0x77, 0x6e, 0x81, 0x9f, 0x3d, 0x64, 0xf4, 0xdb, + 0xe3, 0x2b, 0xf6, 0xbd, 0xe0, 0x82, 0x1a, 0x08, 0xf1, 0x41, 0xc0, 0x48, 0x83, 0x8b, 0xcd, 0xaa, + 0x68, 0x15, 0xc4, 0x66, 0x95, 0x3a, 0x88, 0x27, 0x99, 0x45, 0x1d, 0xc4, 0x2b, 0x80, 0x46, 0x1d, + 0xc4, 0xcb, 0xdd, 0x81, 0x3a, 0x88, 0x79, 0xb3, 0x32, 0xea, 0x20, 0xd0, 0x89, 0x35, 0x75, 0x10, + 0xaf, 0x8b, 0xc7, 0xd4, 0x41, 0xe8, 0x47, 0x04, 0x10, 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, + 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, 0x99, 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, + 0x84, 0x77, 0x12, 0xa0, 0x3a, 0x0b, 0xb3, 0x88, 0x06, 0x75, 0x10, 0xcb, 0x43, 0x3c, 0x00, 0x09, + 0x08, 0x1a, 0x11, 0x81, 0x25, 0x24, 0xb0, 0xc4, 0x04, 0x93, 0xa0, 0xc8, 0x26, 0x2a, 0xc2, 0x09, + 0x4b, 0xfe, 0x91, 0x63, 0xea, 0x20, 0xc4, 0x73, 0x83, 0xbb, 0xfc, 0xe0, 0x03, 0x75, 0x10, 0x73, + 0x7e, 0x51, 0x07, 0x41, 0x62, 0xfb, 0x88, 0xd9, 0xd4, 0x41, 0x30, 0xbd, 0xfd, 0x9b, 0x2b, 0x52, + 0x07, 0x51, 0xb8, 0x2b, 0xae, 0x7d, 0xa8, 0x56, 0x37, 0xb7, 0xaa, 0xd5, 0xd5, 0xad, 0xf7, 0x5b, + 0xab, 0xdb, 0x1b, 0x1b, 0x6b, 0x9b, 0x6b, 0x54, 0x44, 0x90, 0x1a, 0x83, 0x59, 0x49, 0x45, 0xc4, + 0x6b, 0x1c, 0x88, 0x8a, 0x88, 0x22, 0x52, 0x1b, 0x15, 0x11, 0x4b, 0x1a, 0xa4, 0xf8, 0xa0, 0xe6, + 0x39, 0xa0, 0xa3, 0x22, 0xa2, 0xf0, 0xd1, 0xea, 0xcd, 0x2a, 0x35, 0x11, 0xb8, 0x16, 0x51, 0x13, + 0xb1, 0xc4, 0x8e, 0xbb, 0x7c, 0xaa, 0x08, 0x69, 0xe7, 0xfb, 0x51, 0x17, 0xf1, 0x18, 0x06, 0x52, + 0x89, 0x4f, 0x2d, 0x6e, 0x87, 0x17, 0x46, 0xd6, 0xc9, 0x54, 0x45, 0xac, 0x52, 0x15, 0xf1, 0x34, + 0xc3, 0xa8, 0x8a, 0x78, 0x95, 0x89, 0x54, 0x45, 0xcc, 0xc9, 0x50, 0xaa, 0x22, 0x48, 0xad, 0x8b, + 0xfa, 0x08, 0xc5, 0xce, 0x02, 0xe4, 0x11, 0xaf, 0xa7, 0x82, 0xf3, 0x58, 0x9d, 0x4b, 0x8c, 0x78, + 0x53, 0xd5, 0x81, 0xc0, 0xad, 0x87, 0x46, 0x6b, 0x52, 0x8d, 0xbc, 0x7b, 0x97, 0x55, 0xe2, 0x95, + 0x31, 0x43, 0x21, 0xcf, 0x15, 0x6c, 0x89, 0x90, 0xd8, 0x30, 0x4a, 0x94, 0xc2, 0x28, 0xad, 0xcc, + 0xe7, 0x09, 0xa2, 0x9f, 0x1b, 0x88, 0x7e, 0x3e, 0x20, 0xf3, 0x39, 0x80, 0x14, 0xff, 0x13, 0xda, + 0xee, 0xd2, 0xa5, 0xcd, 0x25, 0x88, 0x49, 0x2c, 0xb0, 0xb1, 0x25, 0x23, 0xd5, 0x97, 0x9f, 0x58, + 0xcb, 0xb5, 0xa0, 0xe4, 0x90, 0x22, 0x2d, 0x94, 0xc0, 0x87, 0x90, 0x72, 0xbd, 0xaa, 0x3c, 0x2c, + 0x97, 0x88, 0x63, 0x63, 0x18, 0x75, 0xd5, 0x79, 0x18, 0xa9, 0xae, 0x39, 0xfd, 0x10, 0xca, 0x86, + 0xf2, 0xed, 0x5c, 0xfa, 0x03, 0xd3, 0x4a, 0xf6, 0x77, 0x19, 0x3a, 0x78, 0x31, 0x2d, 0x5e, 0x49, + 0x2d, 0x5d, 0x81, 0x2d, 0x5c, 0x69, 0x2d, 0x5b, 0xb1, 0x2d, 0x5a, 0xb1, 0x2d, 0x59, 0x99, 0x2d, + 0xd8, 0xe5, 0xe6, 0x5c, 0x52, 0x74, 0xe1, 0x0f, 0xb2, 0x93, 0x1c, 0x3f, 0x9f, 0x95, 0x3f, 0xa5, + 0xb8, 0xbb, 0xac, 0x75, 0x32, 0xe2, 0x9e, 0x98, 0x4a, 0x7c, 0x52, 0x2a, 0xf8, 0x09, 0xa9, 0xd4, + 0x27, 0xa3, 0xe2, 0x9f, 0x88, 0x8a, 0x7f, 0x12, 0x2a, 0xfb, 0x09, 0x28, 0x9f, 0x6a, 0x48, 0x4c, + 0xcb, 0xb7, 0xbd, 0x10, 0x91, 0x7b, 0xdf, 0x44, 0xef, 0x7b, 0xe3, 0xa2, 0x57, 0xfc, 0x44, 0x0d, + 0x90, 0xb0, 0xa5, 0x27, 0x6e, 0x98, 0x04, 0x0e, 0x93, 0xc8, 0x31, 0x12, 0xba, 0xac, 0xc4, 0x2e, + 0x2c, 0xc1, 0x8b, 0x4d, 0xf4, 0xb9, 0x61, 0x3d, 0x15, 0x5d, 0x8c, 0x1f, 0x7c, 0x08, 0xdf, 0xf4, + 0x3a, 0xb1, 0x53, 0xf6, 0xaa, 0xd7, 0x55, 0xae, 0x7a, 0xd5, 0x8e, 0x12, 0x00, 0x51, 0x03, 0x14, + 0x8a, 0x00, 0x47, 0x15, 0xe0, 0x28, 0x03, 0x16, 0x75, 0x90, 0x49, 0x21, 0x84, 0x52, 0x89, 0xfc, + 0xa3, 0x15, 0xbf, 0x31, 0xed, 0xa7, 0x4d, 0x69, 0x1f, 0x24, 0xc7, 0xcb, 0x49, 0xfa, 0x16, 0xbc, + 0x11, 0x06, 0x64, 0x31, 0x1a, 0xc6, 0x5e, 0x0d, 0xa0, 0xd5, 0xa3, 0x50, 0x5b, 0x97, 0xd0, 0x16, + 0x9f, 0x21, 0xae, 0x54, 0xba, 0xc1, 0xd8, 0x02, 0x43, 0x17, 0x5b, 0xb0, 0x8b, 0xad, 0x6f, 0x6c, + 0xd0, 0xc9, 0x96, 0x8b, 0x88, 0xca, 0xb7, 0xee, 0x94, 0x9b, 0x55, 0x50, 0x83, 0xb8, 0xcc, 0x55, + 0x06, 0x0f, 0x4a, 0x09, 0x81, 0x2b, 0x0d, 0x40, 0x32, 0x09, 0x9b, 0x80, 0xf3, 0xc4, 0x21, 0x9b, + 0x80, 0xf3, 0x73, 0x1b, 0x36, 0x01, 0x17, 0x6c, 0x30, 0x9b, 0x80, 0xba, 0x96, 0x5d, 0x6c, 0x02, + 0xce, 0x3d, 0x7d, 0xb3, 0x09, 0xf8, 0xda, 0x17, 0x9b, 0x80, 0xec, 0x50, 0xb0, 0x09, 0xb8, 0x84, + 0xd9, 0xe8, 0x67, 0x17, 0x63, 0x13, 0x70, 0xe1, 0x2e, 0xc6, 0x26, 0xe0, 0xd2, 0x11, 0x51, 0xf9, + 0xd6, 0xb1, 0x09, 0x08, 0x1b, 0xc4, 0x8d, 0xab, 0x49, 0x60, 0x11, 0xde, 0x05, 0xcc, 0xcc, 0x64, + 0x1b, 0xf0, 0x25, 0xe6, 0xb1, 0x0d, 0x38, 0x47, 0x20, 0xb2, 0x0d, 0x38, 0x3f, 0xb7, 0x61, 0x1b, + 0x70, 0xc1, 0x06, 0xb3, 0x0d, 0xa8, 0x6b, 0xe1, 0x05, 0xd4, 0x06, 0x3c, 0x0b, 0xa3, 0x20, 0xbe, + 0x06, 0xe8, 0x03, 0x6e, 0x93, 0xc6, 0x02, 0x5a, 0xc4, 0x53, 0x42, 0x9e, 0x67, 0x1f, 0xec, 0xee, + 0xb3, 0x07, 0x5b, 0xae, 0x1e, 0xbc, 0x23, 0xf1, 0xb0, 0x1f, 0x9e, 0xa2, 0xf1, 0x18, 0x08, 0x79, + 0x8a, 0x86, 0x1e, 0x35, 0x26, 0x25, 0xe7, 0x7a, 0xd6, 0x92, 0x94, 0x9c, 0x2f, 0x5b, 0xcd, 0x48, + 0xc9, 0x39, 0x3e, 0xf5, 0xe4, 0x29, 0x1a, 0xaf, 0x4f, 0xb0, 0x3c, 0x45, 0x03, 0x9e, 0xe7, 0x72, + 0xdf, 0xd4, 0xcf, 0x89, 0x92, 0xa7, 0x68, 0x3c, 0xc5, 0x2a, 0x9e, 0xa2, 0xf1, 0x52, 0xe3, 0x78, + 0x8a, 0x06, 0x5e, 0x3b, 0x48, 0xe7, 0x36, 0x90, 0xee, 0x27, 0x6b, 0x1c, 0x4f, 0xaf, 0x97, 0x47, + 0x6c, 0xc8, 0xb1, 0x80, 0x47, 0x6c, 0xe8, 0x1a, 0x5f, 0x96, 0xf6, 0xb0, 0x8d, 0xdf, 0x96, 0xc8, + 0x8f, 0xa6, 0x3c, 0x79, 0x04, 0x91, 0xee, 0x4a, 0xa9, 0x2d, 0x25, 0x19, 0xfc, 0x58, 0x14, 0x1f, + 0x16, 0xc5, 0x7f, 0x65, 0xf0, 0xdd, 0xb2, 0xfc, 0x44, 0x48, 0x9e, 0x81, 0xcd, 0x2f, 0x25, 0x92, + 0xd3, 0x45, 0x90, 0xd1, 0x72, 0x92, 0x63, 0xf1, 0xa9, 0xa9, 0xd8, 0x7f, 0xb1, 0x60, 0xe7, 0x2e, + 0xdb, 0xa9, 0xf1, 0x9c, 0xb9, 0x58, 0xd8, 0x17, 0x07, 0xbe, 0x62, 0xfe, 0xa5, 0x82, 0xe0, 0x5d, + 0x16, 0xac, 0x61, 0xe0, 0x5c, 0x60, 0x2e, 0x9a, 0x6b, 0xee, 0x29, 0xc6, 0xfb, 0x16, 0xef, 0x0b, + 0x05, 0xf8, 0x81, 0x91, 0x7d, 0xee, 0x9b, 0x3f, 0x7f, 0xee, 0x45, 0x79, 0x43, 0xfe, 0xdc, 0xef, + 0x51, 0x2b, 0x0a, 0x8a, 0x02, 0xc5, 0x1e, 0xd6, 0x50, 0xf8, 0x44, 0x4c, 0x19, 0x93, 0x2e, 0x25, + 0x4e, 0xb0, 0x94, 0x35, 0x99, 0x52, 0xfa, 0xc4, 0x49, 0xe9, 0x93, 0x24, 0xe5, 0x4e, 0x88, 0xe8, + 0xc5, 0x4c, 0x8a, 0x3e, 0x1c, 0xc0, 0xc8, 0x89, 0x6b, 0xe1, 0x7e, 0x33, 0x0d, 0x15, 0xb9, 0x05, + 0x05, 0xa3, 0xb6, 0x9c, 0xb3, 0x7a, 0x4a, 0x1b, 0x8c, 0x2c, 0x73, 0xf0, 0x51, 0xc0, 0x60, 0x63, + 0xd9, 0x83, 0x8b, 0x62, 0x06, 0x13, 0xc5, 0x0c, 0x1e, 0xca, 0x18, 0x2c, 0xd4, 0xbb, 0x7f, 0x53, + 0xd6, 0x59, 0x33, 0x53, 0x88, 0x97, 0xe6, 0x6d, 0x3f, 0x27, 0x97, 0xb2, 0x5c, 0xad, 0xdc, 0xe3, + 0xe0, 0x4a, 0x9f, 0xc1, 0x97, 0x30, 0x6b, 0x2f, 0x68, 0xa6, 0x5e, 0xca, 0xec, 0xbc, 0xb8, 0x19, + 0x79, 0x71, 0xb3, 0xf0, 0xb2, 0x66, 0xde, 0x97, 0xeb, 0x79, 0x7b, 0xd9, 0xc7, 0xa3, 0x65, 0x4f, + 0xfa, 0xcb, 0x77, 0xd2, 0xbb, 0x1d, 0xb2, 0x6e, 0xd9, 0x0e, 0x2a, 0x43, 0x64, 0x26, 0x46, 0x54, + 0x26, 0x49, 0x44, 0x26, 0x50, 0x34, 0x26, 0x4d, 0x24, 0x26, 0x56, 0x14, 0x26, 0x56, 0x04, 0x26, + 0x53, 0xf4, 0xb5, 0xdc, 0x83, 0x9c, 0x62, 0x44, 0x5c, 0x02, 0x45, 0x5b, 0x92, 0x44, 0x5a, 0x0f, + 0x45, 0x59, 0x59, 0x0a, 0x5f, 0xd6, 0x69, 0xd1, 0x12, 0x0b, 0xae, 0x81, 0x8c, 0x34, 0x2d, 0xa3, + 0x1b, 0x41, 0x32, 0x47, 0x32, 0x47, 0x32, 0x47, 0x32, 0x47, 0x32, 0x47, 0x32, 0x47, 0x32, 0xf7, + 0x62, 0x32, 0x37, 0x28, 0x71, 0xbc, 0x79, 0xb9, 0xd9, 0x5c, 0xb6, 0xc4, 0x4b, 0x0c, 0x99, 0xcb, + 0xcc, 0x91, 0xc1, 0xe5, 0xd6, 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0x8a, + 0xff, 0x48, 0xca, 0x7e, 0x62, 0x95, 0x1b, 0x72, 0xa9, 0xd2, 0x38, 0xec, 0xc8, 0xf1, 0xee, 0xfc, + 0x11, 0x56, 0x66, 0x97, 0x94, 0xc5, 0x37, 0xa2, 0x16, 0x26, 0x8a, 0x5b, 0x94, 0x28, 0x71, 0x41, + 0xa2, 0xe0, 0xc5, 0x88, 0x52, 0x17, 0x22, 0x8a, 0x5f, 0x84, 0x28, 0x7e, 0x01, 0xa2, 0xec, 0xc5, + 0x87, 0x5c, 0x66, 0x26, 0xb2, 0x9d, 0xf2, 0x20, 0x62, 0x7d, 0x0b, 0xbb, 0xca, 0x14, 0x95, 0x00, + 0xef, 0x26, 0x41, 0x41, 0x3b, 0x0d, 0x85, 0x9e, 0x68, 0x29, 0x70, 0x67, 0xa6, 0xe4, 0x13, 0x2b, + 0xa5, 0x1f, 0x79, 0x34, 0x3d, 0x2e, 0x6f, 0x4d, 0xa8, 0x7d, 0x00, 0x87, 0xe3, 0x49, 0x3c, 0xac, + 0x4c, 0xf2, 0x09, 0x93, 0x30, 0x2e, 0xb1, 0xb9, 0xb5, 0xb5, 0xb5, 0xbe, 0xb6, 0x41, 0xcf, 0xc0, + 0xe6, 0x64, 0xf2, 0xac, 0x39, 0xe5, 0x22, 0x42, 0x29, 0x91, 0x53, 0xc8, 0x74, 0xf3, 0x03, 0x9a, + 0x2c, 0x61, 0xca, 0x59, 0x68, 0xc0, 0x66, 0x87, 0xe8, 0x39, 0x40, 0x62, 0x87, 0xe8, 0xe9, 0x30, + 0x67, 0x87, 0xe8, 0x95, 0x06, 0xb2, 0x43, 0x84, 0x52, 0x2d, 0x08, 0xee, 0x10, 0x0d, 0xc3, 0x28, + 0x5d, 0xdb, 0x14, 0xd8, 0x1c, 0xda, 0x64, 0x73, 0xe8, 0x17, 0x2f, 0x36, 0x87, 0xb4, 0xac, 0x84, + 0x57, 0x59, 0x02, 0x83, 0x87, 0xfb, 0x9f, 0x5d, 0x82, 0xcd, 0xa1, 0x57, 0xbb, 0x44, 0x75, 0x75, + 0x9b, 0x8d, 0x21, 0x0d, 0x5a, 0x31, 0x2b, 0x6c, 0x0c, 0x09, 0xbc, 0x1f, 0x12, 0x1a, 0x43, 0x03, + 0x59, 0x45, 0xbd, 0x2c, 0xcd, 0x94, 0xd0, 0x70, 0xcd, 0xd6, 0xd0, 0x73, 0x90, 0xc4, 0xd6, 0xd0, + 0xd3, 0x61, 0xce, 0xd6, 0xd0, 0x2b, 0x0d, 0x64, 0x6b, 0x08, 0xa5, 0x56, 0x10, 0xdc, 0x1a, 0x1a, + 0xaf, 0x46, 0x16, 0xe7, 0x80, 0xb9, 0xe8, 0xe4, 0x83, 0x20, 0x9b, 0x5a, 0x41, 0x9a, 0xaa, 0x38, + 0x12, 0xd7, 0x22, 0x32, 0xfe, 0x7e, 0xf3, 0xe6, 0xf3, 0xaa, 0xb9, 0x1d, 0x98, 0xe7, 0x96, 0xb9, + 0x7f, 0xfa, 0xcf, 0xda, 0xef, 0xd5, 0x9b, 0x9d, 0xb7, 0xff, 0x6c, 0xdd, 0xdc, 0x7f, 0xf3, 0xc7, + 0x63, 0x3f, 0xb6, 0xf6, 0xfb, 0xd6, 0xcd, 0xce, 0x8c, 0xff, 0xb3, 0x79, 0xb3, 0xf3, 0xc4, 0xbf, + 0x63, 0xe3, 0xe6, 0xcd, 0x83, 0x1f, 0x1d, 0xbd, 0xbf, 0x3e, 0xeb, 0x17, 0xaa, 0x33, 0x7e, 0xe1, + 0xfd, 0xac, 0x5f, 0x78, 0x3f, 0xe3, 0x17, 0x66, 0x9a, 0xb4, 0x3e, 0xe3, 0x17, 0x36, 0x6e, 0x7e, + 0x3c, 0xf8, 0xf9, 0x37, 0x8f, 0xff, 0xe8, 0xe6, 0xcd, 0xdb, 0x1f, 0xb3, 0xfe, 0xdf, 0xd6, 0xcd, + 0x8f, 0x9d, 0xb7, 0x6f, 0x2b, 0x6f, 0xd6, 0xd6, 0x3f, 0xaf, 0x9a, 0x1f, 0x4e, 0x7f, 0xac, 0x7d, + 0x5e, 0x35, 0xd7, 0x4e, 0x47, 0x3f, 0x79, 0xfa, 0xe3, 0xf3, 0x9a, 0xb9, 0x3d, 0xfd, 0x76, 0xf4, + 0xdf, 0xb7, 0xff, 0x31, 0x58, 0x10, 0xb1, 0x20, 0x7a, 0xe0, 0xb8, 0x89, 0x79, 0x16, 0xa6, 0xf2, + 0xea, 0xa1, 0xcc, 0x2c, 0x96, 0x43, 0x2c, 0x87, 0x58, 0x0e, 0xb1, 0x1c, 0x62, 0x39, 0xc4, 0x72, + 0x68, 0x69, 0xca, 0xa1, 0xb3, 0x7e, 0xbf, 0xa7, 0x82, 0x48, 0x62, 0x29, 0xb4, 0x46, 0xe2, 0x26, + 0x86, 0xb8, 0x0d, 0x07, 0x66, 0xb7, 0xff, 0x2d, 0x92, 0x47, 0xdd, 0xa6, 0x86, 0x91, 0xbc, 0x91, + 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0x91, 0xbc, 0xdd, + 0x7e, 0x26, 0xdf, 0x65, 0x76, 0xdd, 0xbe, 0xb3, 0xeb, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, + 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x46, 0xe2, 0x26, 0x8b, 0xb8, 0x2d, 0xf5, 0xfe, 0xbd, 0x92, 0x4e, + 0xf3, 0x9f, 0x69, 0x8f, 0xdc, 0x53, 0xfe, 0x7f, 0x3e, 0x67, 0xbd, 0x32, 0x3d, 0x79, 0x77, 0xf2, + 0x4d, 0xb6, 0xe0, 0x98, 0x9b, 0x8d, 0x4b, 0x40, 0xcc, 0xf0, 0x6c, 0xf4, 0x49, 0x09, 0xda, 0x6d, + 0x3c, 0x31, 0x88, 0xdb, 0x8d, 0xb9, 0xdd, 0x18, 0xa6, 0xa0, 0xe1, 0x76, 0x63, 0xf4, 0xc2, 0x85, + 0xdb, 0x8d, 0xe5, 0xb1, 0x2b, 0x31, 0xdb, 0x8d, 0xb3, 0x9c, 0x24, 0x70, 0x20, 0x2f, 0xb3, 0x4b, + 0x56, 0x6f, 0x70, 0x8d, 0xbd, 0x41, 0xf1, 0x29, 0x54, 0x70, 0x2a, 0x95, 0x9a, 0x52, 0xc5, 0xa7, + 0x56, 0xf1, 0x29, 0x56, 0x76, 0xaa, 0x95, 0xd3, 0x52, 0x59, 0x11, 0xd4, 0x1b, 0x94, 0x92, 0x82, + 0x73, 0x83, 0xce, 0x7b, 0xc1, 0x45, 0x22, 0x2f, 0x28, 0x4c, 0xe3, 0x68, 0x66, 0x9e, 0x30, 0x7f, + 0x93, 0x95, 0x98, 0xc5, 0x26, 0x68, 0xc9, 0x89, 0x1a, 0x20, 0x61, 0x4b, 0x4f, 0xdc, 0x30, 0x09, + 0x1c, 0x26, 0x91, 0x63, 0x24, 0x74, 0x59, 0x89, 0x5d, 0x58, 0x82, 0x17, 0x9b, 0xe8, 0x6f, 0x6b, + 0x6f, 0x11, 0x47, 0xef, 0xfd, 0xba, 0x14, 0x17, 0x70, 0x24, 0x1f, 0x18, 0x01, 0x10, 0x4f, 0x04, + 0x10, 0x08, 0x01, 0x10, 0x31, 0x40, 0x21, 0x08, 0x70, 0x44, 0x01, 0x8e, 0x30, 0x60, 0x11, 0x07, + 0x99, 0x04, 0x42, 0x28, 0x91, 0x10, 0x4f, 0x28, 0x84, 0x77, 0x12, 0xa0, 0x3a, 0x0b, 0xb3, 0x88, + 0xc6, 0xaa, 0x70, 0x33, 0xa5, 0x13, 0x0e, 0x24, 0xe2, 0x01, 0x48, 0x40, 0xd0, 0x88, 0x08, 0x2c, + 0x21, 0x81, 0x25, 0x26, 0x98, 0x04, 0x45, 0x36, 0x51, 0x11, 0x4e, 0x58, 0xf2, 0x8f, 0x5c, 0xdc, + 0x38, 0xf4, 0x2f, 0x23, 0xae, 0x8a, 0x86, 0x97, 0x2a, 0xce, 0xc6, 0x50, 0x01, 0xa2, 0xee, 0xb4, + 0x1b, 0x51, 0x05, 0xb0, 0xd5, 0x8e, 0x86, 0x97, 0x23, 0x30, 0xd0, 0xa5, 0x5e, 0x73, 0x17, 0xeb, + 0x61, 0x92, 0x5a, 0x69, 0x1a, 0x63, 0xb8, 0xd5, 0x51, 0x18, 0xd9, 0x3d, 0x35, 0x8a, 0xfa, 0xa3, + 0xf2, 0x20, 0x1a, 0xf6, 0x7a, 0x00, 0x40, 0x3d, 0x0a, 0xbe, 0xe3, 0x19, 0xdd, 0x8c, 0xbb, 0x2a, + 0x56, 0xdd, 0xdd, 0xeb, 0x89, 0xc9, 0xbf, 0x31, 0xab, 0x6a, 0xe6, 0xfe, 0x46, 0x8a, 0x90, 0x4d, + 0xf3, 0x4c, 0x3a, 0xb6, 0x96, 0x35, 0x36, 0x6b, 0x6c, 0xd6, 0xd8, 0xac, 0xb1, 0x59, 0x63, 0xb3, + 0xc6, 0x66, 0x8d, 0xcd, 0x1a, 0x3b, 0xdb, 0x87, 0xde, 0x55, 0x51, 0x1a, 0xa6, 0xd7, 0xb1, 0x3a, + 0x47, 0xaa, 0xb1, 0x37, 0x00, 0x6c, 0x75, 0x26, 0xb7, 0x76, 0x37, 0x48, 0x80, 0xf2, 0xc4, 0x14, + 0x18, 0x4e, 0xdb, 0x69, 0xfb, 0xed, 0xe3, 0x5d, 0xaf, 0x7e, 0xe2, 0x7b, 0x7f, 0xb6, 0x6c, 0x94, + 0x74, 0x31, 0x3e, 0x5e, 0x2b, 0x11, 0xb7, 0xb4, 0xfe, 0xdf, 0x5e, 0xff, 0xc0, 0x58, 0xfa, 0x13, + 0x42, 0xdc, 0xe6, 0xb1, 0x67, 0xbb, 0xfe, 0x9e, 0xd5, 0xb2, 0x76, 0x9d, 0xba, 0xe3, 0xfd, 0x39, + 0x81, 0x4b, 0x1b, 0x09, 0x2f, 0xc8, 0xb8, 0xc1, 0xc4, 0xcf, 0x53, 0x70, 0x74, 0xf7, 0x4f, 0x06, + 0xdc, 0xd5, 0xdd, 0xfc, 0x4e, 0x08, 0x09, 0x80, 0x90, 0x55, 0x3f, 0x68, 0xba, 0x8e, 0x77, 0x78, + 0x04, 0x88, 0x20, 0x28, 0x8b, 0x4f, 0x7f, 0xa3, 0x67, 0x92, 0x14, 0x68, 0x16, 0xcc, 0x09, 0x15, + 0x06, 0x6d, 0x22, 0x45, 0x4a, 0x2d, 0xea, 0xbb, 0xb6, 0xb5, 0x77, 0xc8, 0x3a, 0x83, 0xe8, 0x99, + 0x1f, 0x8a, 0x3c, 0xdb, 0xaf, 0xd9, 0xfb, 0xd6, 0x71, 0xdd, 0xf3, 0x8f, 0x6c, 0xcf, 0x75, 0xf6, + 0x58, 0x69, 0x10, 0x44, 0xcf, 0x05, 0xd1, 0x71, 0x63, 0xaf, 0xd9, 0x68, 0x7b, 0xae, 0xe5, 0x34, + 0xec, 0x9a, 0x5f, 0x6f, 0xb7, 0x08, 0x22, 0x82, 0xe8, 0xb9, 0x20, 0xaa, 0x3b, 0x8d, 0x8f, 0x7e, + 0xcd, 0xae, 0x5b, 0x6c, 0x76, 0x10, 0x3d, 0xaf, 0x40, 0x8f, 0x7f, 0x62, 0xb9, 0x8e, 0xe5, 0x39, + 0xcd, 0x06, 0x71, 0x44, 0x1c, 0x3d, 0x17, 0x47, 0x4e, 0xeb, 0x64, 0xd3, 0x6f, 0xd8, 0xce, 0xc1, + 0xe1, 0x6e, 0xd3, 0xf5, 0xad, 0x5a, 0xcd, 0xb5, 0xdb, 0x6d, 0x02, 0x89, 0x40, 0x7a, 0x2e, 0x90, + 0xac, 0xda, 0x91, 0xd3, 0xf0, 0x0f, 0xdc, 0xe6, 0x31, 0xd9, 0x10, 0xe1, 0xf3, 0x02, 0xf8, 0xfc, + 0xe1, 0xb7, 0x9d, 0x1a, 0xa1, 0x43, 0xe8, 0x3c, 0x17, 0x3a, 0x47, 0xd6, 0xa7, 0x8c, 0x0e, 0xed, + 0x5a, 0x8d, 0xda, 0x7f, 0x9d, 0x9a, 0x77, 0x48, 0x14, 0x11, 0x45, 0x2f, 0x20, 0x42, 0x55, 0x12, + 0x21, 0x02, 0x69, 0x3e, 0x8c, 0xda, 0x69, 0x78, 0xb6, 0xbb, 0x6f, 0xed, 0xd9, 0x44, 0x12, 0x91, + 0xf4, 0xaa, 0x1a, 0xbf, 0xde, 0x24, 0x78, 0x08, 0x9e, 0xe7, 0x83, 0x27, 0x27, 0x43, 0x7e, 0xde, + 0xab, 0xf6, 0x08, 0x24, 0x02, 0xe9, 0xd9, 0x40, 0xb2, 0x3f, 0x79, 0x76, 0xa3, 0x66, 0xd7, 0x58, + 0xe1, 0x13, 0x47, 0xaf, 0x26, 0xd8, 0xe4, 0x45, 0x44, 0xd2, 0xab, 0x91, 0x74, 0xec, 0x39, 0x75, + 0xe7, 0x7f, 0x76, 0x8d, 0x05, 0x3f, 0x51, 0xf4, 0x72, 0x14, 0x59, 0xb5, 0x3f, 0xfc, 0xba, 0xd5, + 0x60, 0xd7, 0x91, 0xf0, 0x79, 0x09, 0x7c, 0x46, 0x5c, 0x28, 0xef, 0x3c, 0xf2, 0x31, 0x3e, 0x51, + 0xf4, 0xf2, 0x12, 0xbf, 0xe5, 0x36, 0x3d, 0x7b, 0xcf, 0x73, 0x9a, 0x8d, 0x6c, 0xb8, 0x91, 0x38, + 0x22, 0x8e, 0x9e, 0x9b, 0xcc, 0x4e, 0x2c, 0xa7, 0x6e, 0xed, 0xd6, 0x6d, 0x72, 0x22, 0xc2, 0xe8, + 0x95, 0xe1, 0xc8, 0xf2, 0x3c, 0xd7, 0xd9, 0x3d, 0xf6, 0x6c, 0x16, 0x67, 0x84, 0xd0, 0xf3, 0x8b, + 0xb3, 0x86, 0x6b, 0xb7, 0x6d, 0xf7, 0x84, 0xe5, 0x19, 0x71, 0xf4, 0x1a, 0x1c, 0xb9, 0x76, 0xdb, + 0xa9, 0x1d, 0x5b, 0x75, 0xa2, 0x88, 0x28, 0x7a, 0x45, 0x95, 0x66, 0x7d, 0xf2, 0xb3, 0x78, 0x44, + 0x72, 0x44, 0x2c, 0xcd, 0x81, 0x1c, 0x41, 0x36, 0x8b, 0x28, 0x2c, 0x5f, 0x76, 0x97, 0xd4, 0x44, + 0x03, 0x0a, 0xac, 0xde, 0x23, 0x58, 0x8a, 0xaf, 0x44, 0x60, 0x55, 0x7a, 0x04, 0x4b, 0x29, 0xc9, + 0x1d, 0xac, 0x8d, 0x4f, 0x94, 0x94, 0x87, 0x12, 0x44, 0xd5, 0x1d, 0xf1, 0x52, 0x34, 0x5e, 0xc0, + 0xd5, 0x75, 0x04, 0x4c, 0xd1, 0x80, 0x81, 0x9c, 0xb1, 0x23, 0x4c, 0x8a, 0x87, 0x09, 0x98, 0x5a, + 0x8e, 0x10, 0x29, 0x1a, 0x22, 0xc8, 0xaa, 0x38, 0xa2, 0xa5, 0x04, 0xa2, 0x52, 0x25, 0x51, 0x21, + 0x60, 0x9e, 0xc7, 0x6c, 0x81, 0xa7, 0xb9, 0x89, 0x98, 0x52, 0x6a, 0x67, 0x2c, 0x35, 0x1b, 0x41, + 0x52, 0x34, 0x48, 0xc0, 0x55, 0x6b, 0x04, 0x4c, 0xd1, 0x80, 0xc1, 0x56, 0xa7, 0x11, 0x2f, 0xa5, + 0x10, 0x5d, 0xf2, 0x16, 0x22, 0xe6, 0xc9, 0x88, 0x41, 0x56, 0x9b, 0x11, 0x2d, 0x45, 0xa3, 0x05, + 0x52, 0x55, 0x46, 0x98, 0x14, 0x0d, 0x13, 0x64, 0xf5, 0x18, 0xd1, 0x52, 0x4a, 0xe9, 0x0c, 0xab, + 0x12, 0x23, 0x5e, 0x0a, 0x4f, 0x42, 0xc8, 0x6a, 0x30, 0xc2, 0xa5, 0x94, 0xf0, 0x82, 0xa8, 0xfa, + 0x22, 0x54, 0x0a, 0x2f, 0x86, 0xa0, 0xd5, 0x5d, 0xc4, 0x4b, 0xd1, 0x78, 0x41, 0x56, 0x71, 0x11, + 0x2d, 0x85, 0x57, 0x45, 0xf0, 0x6a, 0x2d, 0x62, 0xa6, 0x14, 0xf2, 0xc2, 0x66, 0x0b, 0x21, 0x72, + 0x07, 0x22, 0x2d, 0x9e, 0x1c, 0x47, 0xf4, 0xcc, 0x1b, 0x45, 0xe3, 0x27, 0x47, 0x93, 0xe3, 0x2b, + 0xb9, 0x32, 0x8c, 0x08, 0x7a, 0x3e, 0x82, 0x3c, 0xeb, 0x60, 0xb3, 0x4a, 0xe0, 0x10, 0x38, 0x2f, + 0x08, 0x3d, 0x9b, 0x0c, 0x3d, 0x44, 0xd0, 0xab, 0x42, 0x0f, 0x61, 0x43, 0xd8, 0x3c, 0x17, 0x36, + 0x2d, 0xd7, 0xde, 0x77, 0x3e, 0x71, 0x45, 0x2a, 0xd1, 0xf3, 0x0a, 0xf4, 0xec, 0xd7, 0xad, 0x83, + 0x36, 0xb7, 0xa6, 0x2c, 0xf6, 0xc5, 0xad, 0x29, 0xec, 0x7f, 0xe8, 0x56, 0xb9, 0x12, 0x29, 0xac, + 0x50, 0x09, 0x10, 0x56, 0xa2, 0x44, 0x0a, 0x2b, 0x4e, 0xc2, 0x43, 0x2f, 0x78, 0x20, 0x56, 0x96, + 0x44, 0x09, 0x2b, 0x48, 0x7d, 0x2a, 0x47, 0xf9, 0x15, 0xa3, 0xec, 0xfb, 0x28, 0xd7, 0x3a, 0x99, + 0x96, 0x09, 0x8d, 0x9e, 0x86, 0x15, 0x45, 0xfd, 0x34, 0x48, 0xc3, 0x7e, 0x64, 0xec, 0x08, 0x8e, + 0x9b, 0x46, 0xd2, 0xf9, 0xa2, 0x2e, 0x83, 0x41, 0x90, 0x7e, 0x19, 0x45, 0xca, 0x4a, 0x7f, 0xa0, + 0xa2, 0x4e, 0x3f, 0x3a, 0x0f, 0x2f, 0xcc, 0x48, 0xa5, 0xdf, 0xfa, 0xf1, 0x57, 0x33, 0x8c, 0x92, + 0x34, 0x88, 0x3a, 0xaa, 0x72, 0xff, 0x8d, 0xe4, 0xc1, 0x3b, 0x95, 0x41, 0xdc, 0x4f, 0xfb, 0x9d, + 0x7e, 0x2f, 0xc9, 0xbf, 0xab, 0x84, 0x49, 0x98, 0x54, 0x7a, 0xea, 0x4a, 0xf5, 0x26, 0x5f, 0x2a, + 0xbd, 0x30, 0xfa, 0x6a, 0x26, 0x69, 0x90, 0x2a, 0xb3, 0x1b, 0xa4, 0xc1, 0x59, 0x90, 0xa8, 0x4a, + 0x2f, 0x19, 0x54, 0xd2, 0xde, 0x55, 0x32, 0xfa, 0x4f, 0xe5, 0x32, 0x35, 0xc3, 0xc1, 0xd5, 0xa6, + 0x19, 0xab, 0xa0, 0xf3, 0x25, 0x38, 0x0b, 0x7b, 0x61, 0x7a, 0x5d, 0x19, 0xc4, 0xea, 0x3c, 0xfc, + 0xae, 0x92, 0xc9, 0x37, 0x95, 0x64, 0x78, 0x36, 0xfe, 0x85, 0xec, 0x6b, 0xe5, 0xbc, 0x17, 0x5c, + 0x24, 0x95, 0xf1, 0xdf, 0x2a, 0x33, 0xa4, 0xcb, 0x73, 0x1f, 0x59, 0x16, 0x09, 0x73, 0x64, 0xe9, + 0x0e, 0xac, 0x97, 0xe3, 0x0a, 0x9c, 0x9f, 0x32, 0x92, 0x34, 0x1e, 0x76, 0xd2, 0x68, 0xc2, 0x21, + 0x1b, 0xd9, 0x1d, 0x73, 0x26, 0x37, 0xcc, 0x6f, 0x4d, 0x6e, 0x93, 0xef, 0x24, 0x61, 0xe2, 0xd7, + 0x47, 0xf7, 0xc7, 0xaf, 0x27, 0x03, 0xdf, 0xeb, 0x5d, 0xf9, 0x47, 0xa9, 0x33, 0xb8, 0xda, 0x74, + 0xef, 0xdc, 0x04, 0xbf, 0x35, 0xbe, 0x76, 0xbf, 0x3d, 0xbe, 0x66, 0x7f, 0x7f, 0x7c, 0xcd, 0xbf, + 0x31, 0x18, 0x08, 0x0f, 0x04, 0x46, 0x38, 0xb8, 0xaa, 0x9a, 0x49, 0x7f, 0x18, 0x77, 0x94, 0x19, + 0xf7, 0x87, 0xa9, 0x8a, 0xcd, 0xb0, 0x2b, 0x2e, 0x1e, 0xe4, 0x85, 0xce, 0xe3, 0xe6, 0x0a, 0x0b, + 0xac, 0x1f, 0xc3, 0x68, 0x74, 0x0b, 0xd7, 0x84, 0x99, 0xb5, 0x37, 0x0e, 0x9e, 0xc6, 0xce, 0xca, + 0xaa, 0x30, 0xc3, 0xb2, 0xd0, 0x21, 0x33, 0x09, 0x4d, 0x81, 0xd7, 0xef, 0x98, 0xa3, 0x74, 0x21, + 0x31, 0x8c, 0xb7, 0xc7, 0xee, 0x20, 0x96, 0x84, 0x1b, 0x1f, 0xd5, 0xf5, 0xb7, 0x7e, 0x3c, 0xf2, + 0x08, 0x23, 0x4b, 0x90, 0x42, 0x67, 0x89, 0x8d, 0xc3, 0x20, 0xb1, 0xe2, 0x8b, 0xe1, 0xa5, 0x8a, + 0x52, 0x63, 0x67, 0x25, 0x8d, 0x87, 0x4a, 0x6a, 0xe9, 0x75, 0x6b, 0x65, 0x0e, 0x4c, 0x92, 0x6f, + 0x28, 0xf2, 0x5d, 0x0b, 0x63, 0xa1, 0xac, 0x7b, 0x5c, 0x60, 0x8a, 0x0d, 0x26, 0xd3, 0x78, 0x9c, + 0x99, 0x29, 0xd4, 0x3f, 0x65, 0x12, 0x00, 0xf1, 0x44, 0x00, 0x81, 0x10, 0x00, 0x11, 0x03, 0x14, + 0x82, 0x00, 0x47, 0x14, 0xe0, 0x08, 0x03, 0x16, 0x71, 0x90, 0x49, 0x20, 0x84, 0x12, 0x09, 0xf1, + 0x84, 0x22, 0x37, 0x50, 0x6e, 0x77, 0x61, 0x66, 0x6c, 0x97, 0xda, 0x61, 0x98, 0x45, 0x38, 0x56, + 0x85, 0x9b, 0x29, 0x9d, 0x78, 0x20, 0x11, 0x10, 0x40, 0x22, 0x82, 0x46, 0x48, 0x60, 0x89, 0x09, + 0x2c, 0x41, 0xc1, 0x24, 0x2a, 0xb2, 0x09, 0x8b, 0x70, 0xe2, 0x92, 0x7f, 0xe4, 0xde, 0xf5, 0x40, + 0x61, 0x45, 0xdc, 0xf1, 0xc3, 0x88, 0xa0, 0xdb, 0x8d, 0x55, 0x02, 0x11, 0x76, 0xa7, 0x6d, 0x89, + 0x0f, 0x00, 0xb6, 0xb6, 0x82, 0x34, 0x55, 0x71, 0x04, 0xb3, 0xc0, 0xc1, 0xf8, 0xfb, 0xcd, 0x9b, + 0xcf, 0xab, 0xe6, 0xf6, 0xe9, 0x8f, 0xcf, 0x6b, 0xe6, 0xf6, 0x69, 0xf6, 0xed, 0xda, 0xf8, 0x4b, + 0xf6, 0xfd, 0xfa, 0xe7, 0x55, 0xb3, 0x3a, 0xfd, 0x7e, 0xe3, 0xf3, 0xaa, 0xb9, 0x71, 0xfa, 0xf6, + 0xaf, 0xbf, 0xde, 0xbd, 0xfd, 0xe7, 0xfd, 0xcd, 0xf3, 0x7f, 0xf1, 0x3f, 0xf2, 0x83, 0xe1, 0x29, + 0x87, 0xd0, 0x74, 0x0b, 0xd3, 0x46, 0x8a, 0x10, 0xa2, 0xf3, 0xf0, 0x3c, 0xb6, 0x96, 0x85, 0x1b, + 0x0b, 0x37, 0x16, 0x6e, 0x2c, 0xdc, 0x58, 0xb8, 0xb1, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x2d, 0x2b, + 0xdc, 0xba, 0x2a, 0x4a, 0xc3, 0xf4, 0x3a, 0x56, 0xe7, 0x48, 0x75, 0xdb, 0x06, 0x80, 0xad, 0xce, + 0xe4, 0xd6, 0xee, 0x06, 0x09, 0x50, 0x9e, 0xb8, 0x5d, 0x92, 0xe9, 0xb4, 0x27, 0x6b, 0x0f, 0x91, + 0xb6, 0x1e, 0x22, 0x6e, 0x3b, 0x04, 0x55, 0xda, 0x4d, 0x34, 0xdc, 0x7b, 0x56, 0x8b, 0x5b, 0x32, + 0x89, 0x9f, 0xb9, 0xe2, 0xe8, 0xee, 0x9f, 0xb8, 0x36, 0x8a, 0x10, 0x7a, 0x11, 0x84, 0xac, 0xfa, + 0x41, 0xd3, 0x75, 0xbc, 0xc3, 0x23, 0x2e, 0x8e, 0x5a, 0xec, 0x8b, 0x8b, 0xa3, 0x48, 0x0a, 0xb4, + 0x0b, 0xe6, 0x84, 0x0a, 0x83, 0x36, 0x91, 0x22, 0xa5, 0x16, 0xe5, 0x36, 0x7e, 0xa2, 0x67, 0xde, + 0x28, 0xf2, 0x6c, 0xbf, 0x66, 0xef, 0x5b, 0xc7, 0x75, 0xcf, 0x3f, 0xb2, 0x3d, 0xd7, 0xd9, 0x63, + 0xa5, 0x41, 0x10, 0x3d, 0x17, 0x44, 0xc7, 0x8d, 0xbd, 0x66, 0xa3, 0xed, 0xb9, 0x96, 0xd3, 0xb0, + 0x6b, 0x7e, 0xbd, 0xdd, 0x22, 0x88, 0x08, 0xa2, 0xe7, 0x82, 0x08, 0xf1, 0x08, 0x5f, 0xa2, 0x47, + 0x1e, 0x7a, 0xfc, 0x13, 0xcb, 0x75, 0x2c, 0xcf, 0x69, 0x36, 0x88, 0x23, 0xe2, 0xe8, 0xb9, 0x38, + 0x1a, 0x2f, 0x66, 0x6d, 0xd8, 0xce, 0xc1, 0xe1, 0x6e, 0xd3, 0xf5, 0xad, 0x5a, 0xcd, 0xb5, 0xdb, + 0x6d, 0x02, 0x89, 0x40, 0x7a, 0x2e, 0x90, 0xac, 0xda, 0x91, 0xd3, 0xf0, 0x0f, 0xdc, 0xe6, 0x31, + 0xd9, 0x10, 0xe1, 0xf3, 0x02, 0xf8, 0xfc, 0xc1, 0xe3, 0x42, 0x08, 0x9d, 0x97, 0x40, 0xe7, 0xc8, + 0xfa, 0x94, 0xd1, 0x21, 0xc0, 0x73, 0x5f, 0x89, 0x22, 0x41, 0x44, 0xa8, 0x4a, 0x22, 0x44, 0x20, + 0xcd, 0x87, 0x51, 0x3b, 0x0d, 0xcf, 0x76, 0xf7, 0xad, 0x3d, 0x9b, 0x48, 0x22, 0x92, 0x5e, 0x55, + 0xe3, 0xd7, 0x9b, 0x04, 0x0f, 0xc1, 0xf3, 0x7c, 0xf0, 0xe4, 0x64, 0xc8, 0xcf, 0x7b, 0xd5, 0x1e, + 0x81, 0x44, 0x20, 0x3d, 0x1b, 0x48, 0xf6, 0x27, 0xcf, 0x6e, 0xd4, 0xec, 0x1a, 0x2b, 0x7c, 0xe2, + 0xe8, 0xd5, 0x04, 0x9b, 0xbc, 0x88, 0x48, 0x7a, 0x35, 0x92, 0x8e, 0x3d, 0xa7, 0xee, 0xfc, 0xcf, + 0xae, 0xb1, 0xe0, 0x27, 0x8a, 0x5e, 0x8e, 0x22, 0xab, 0xf6, 0x87, 0x5f, 0xb7, 0x1a, 0xec, 0x3a, + 0x12, 0x3e, 0x2f, 0x81, 0xcf, 0x88, 0x0b, 0xe5, 0x9d, 0x47, 0x3e, 0xc6, 0x27, 0x8a, 0x5e, 0x5e, + 0xe2, 0xb7, 0xdc, 0xa6, 0x67, 0xef, 0x79, 0x4e, 0xb3, 0x91, 0x0d, 0x37, 0x12, 0x47, 0xc4, 0xd1, + 0x73, 0x93, 0xd9, 0x89, 0xe5, 0xd4, 0xad, 0xdd, 0xba, 0x4d, 0x4e, 0x44, 0x18, 0xbd, 0x32, 0x1c, + 0x59, 0x9e, 0xe7, 0x3a, 0xbb, 0xc7, 0x9e, 0xcd, 0xe2, 0x8c, 0x10, 0x7a, 0x7e, 0x71, 0xd6, 0x70, + 0xed, 0xb6, 0xed, 0x9e, 0xb0, 0x3c, 0x23, 0x8e, 0x5e, 0x83, 0x23, 0xd7, 0x6e, 0x3b, 0xb5, 0x63, + 0xab, 0x4e, 0x14, 0x11, 0x45, 0xaf, 0xa8, 0xd2, 0xac, 0x4f, 0x7e, 0x16, 0x8f, 0x48, 0x8e, 0x88, + 0xa5, 0x39, 0x90, 0x23, 0xc8, 0x66, 0x11, 0x85, 0xe5, 0xcb, 0xee, 0x92, 0x9a, 0x68, 0x40, 0x81, + 0xd5, 0x7b, 0x04, 0x4b, 0xf1, 0x95, 0x08, 0xac, 0x4a, 0x8f, 0x60, 0x29, 0x25, 0xb9, 0x83, 0xb5, + 0xf1, 0x89, 0x92, 0xf2, 0x50, 0x82, 0xa8, 0xba, 0x23, 0x5e, 0x8a, 0xc6, 0x0b, 0xb8, 0xba, 0x8e, + 0x80, 0x29, 0x1a, 0x30, 0x90, 0x33, 0x76, 0x84, 0x49, 0xf1, 0x30, 0x01, 0x53, 0xcb, 0x11, 0x22, + 0x45, 0x43, 0x04, 0x59, 0x15, 0x47, 0xb4, 0x94, 0x40, 0x54, 0xaa, 0x24, 0x2a, 0x04, 0xcc, 0xf3, + 0x98, 0x2d, 0xf0, 0x34, 0x37, 0x11, 0x53, 0x4a, 0xed, 0x8c, 0xa5, 0x66, 0x23, 0x48, 0x8a, 0x06, + 0x09, 0xb8, 0x6a, 0x8d, 0x80, 0x29, 0x1a, 0x30, 0xd8, 0xea, 0x34, 0xe2, 0xa5, 0x14, 0xa2, 0x4b, + 0xde, 0x42, 0xc4, 0x3c, 0x19, 0x31, 0xc8, 0x6a, 0x33, 0xa2, 0xa5, 0x68, 0xb4, 0x40, 0xaa, 0xca, + 0x08, 0x93, 0xa2, 0x61, 0x82, 0xac, 0x1e, 0x23, 0x5a, 0x4a, 0x29, 0x9d, 0x61, 0x55, 0x62, 0xc4, + 0x4b, 0xe1, 0x49, 0x08, 0x59, 0x0d, 0x46, 0xb8, 0x94, 0x12, 0x5e, 0x10, 0x55, 0x5f, 0x84, 0x4a, + 0xe1, 0xc5, 0x10, 0xb4, 0xba, 0x8b, 0x78, 0x29, 0x1a, 0x2f, 0xc8, 0x2a, 0x2e, 0xa2, 0xa5, 0xf0, + 0xaa, 0x08, 0x5e, 0xad, 0x45, 0xcc, 0x94, 0x42, 0x5e, 0xd8, 0x6c, 0x21, 0x44, 0xee, 0x40, 0xa4, + 0xc5, 0x93, 0xe3, 0x88, 0x9e, 0x79, 0xa3, 0x68, 0xfc, 0xe4, 0x68, 0x72, 0x7c, 0x25, 0x57, 0x86, + 0x11, 0x41, 0xcf, 0x47, 0x90, 0x67, 0x1d, 0x6c, 0x56, 0x09, 0x1c, 0x02, 0xe7, 0x05, 0xa1, 0x67, + 0x93, 0xa1, 0x87, 0x08, 0x7a, 0x55, 0xe8, 0x21, 0x6c, 0x08, 0x9b, 0xe7, 0xc2, 0xa6, 0xe5, 0xda, + 0xfb, 0xce, 0x27, 0xae, 0x48, 0x25, 0x7a, 0x5e, 0x81, 0x9e, 0xfd, 0xba, 0x75, 0xd0, 0xe6, 0xd6, + 0x94, 0xc5, 0xbe, 0xb8, 0x35, 0x85, 0xfd, 0x0f, 0xdd, 0x2a, 0x57, 0x22, 0x85, 0x15, 0x2a, 0x01, + 0xc2, 0x4a, 0x94, 0x48, 0x61, 0xc5, 0x49, 0x78, 0xe8, 0x05, 0x0f, 0xc4, 0xca, 0x92, 0x28, 0x61, + 0x05, 0xa9, 0x4f, 0xe5, 0x28, 0xbf, 0x62, 0x94, 0x7d, 0x1f, 0xe5, 0x5a, 0x27, 0xd3, 0x32, 0xa1, + 0xd1, 0xd3, 0xb0, 0xa2, 0xa8, 0x9f, 0x06, 0x69, 0xd8, 0x8f, 0x8c, 0x1d, 0xc1, 0x71, 0xd3, 0x48, + 0x3a, 0x5f, 0xd4, 0x65, 0x30, 0x08, 0xd2, 0x2f, 0xa3, 0x48, 0x59, 0xe9, 0x0f, 0x54, 0xd4, 0xe9, + 0x47, 0xe7, 0xe1, 0x85, 0x19, 0xa9, 0xf4, 0x5b, 0x3f, 0xfe, 0x6a, 0x86, 0x51, 0x92, 0x06, 0x51, + 0x47, 0x55, 0xee, 0xbf, 0x91, 0x3c, 0x78, 0xa7, 0x32, 0x88, 0xfb, 0x69, 0xbf, 0xd3, 0xef, 0x25, + 0xf9, 0x77, 0x95, 0x30, 0x09, 0x93, 0x4a, 0x4f, 0x5d, 0xa9, 0xde, 0xe4, 0x4b, 0xa5, 0x17, 0x46, + 0x5f, 0xcd, 0x24, 0x0d, 0x52, 0x65, 0x76, 0x83, 0x34, 0x38, 0x0b, 0x12, 0x55, 0xe9, 0x25, 0x83, + 0x4a, 0xda, 0xbb, 0x4a, 0x46, 0xff, 0xa9, 0x5c, 0xa6, 0x66, 0x38, 0xb8, 0xda, 0x34, 0x63, 0x15, + 0x74, 0xbe, 0x04, 0x67, 0x61, 0x2f, 0x4c, 0xaf, 0x2b, 0x83, 0x58, 0x9d, 0x87, 0xdf, 0x55, 0x32, + 0xf9, 0xa6, 0x92, 0x0c, 0xcf, 0xc6, 0xbf, 0x90, 0x7d, 0xad, 0x84, 0x83, 0xab, 0xaa, 0x99, 0xf4, + 0x87, 0x71, 0x47, 0x99, 0x71, 0x7f, 0x98, 0xaa, 0xd8, 0x0c, 0xbb, 0x95, 0xf1, 0xbf, 0x22, 0x33, 0xc4, 0xcb, 0x73, 0x27, 0x59, 0x16, 0x09, 0x73, 0x6c, 0xe9, 0x0e, 0xad, 0xb7, 0x23, 0x0b, 0x9c, - 0xaf, 0x32, 0xd2, 0x2c, 0x19, 0x76, 0xb2, 0x78, 0x42, 0x2d, 0x9b, 0xe3, 0x15, 0x74, 0x26, 0x0b, - 0x18, 0xb4, 0x26, 0xcb, 0x16, 0x38, 0x69, 0x94, 0x06, 0xee, 0x68, 0xbd, 0x02, 0x37, 0x1d, 0x04, - 0x7e, 0xef, 0x2a, 0x38, 0xcc, 0x9c, 0xc1, 0x55, 0xdd, 0xbb, 0xb3, 0x28, 0x41, 0x2b, 0x5f, 0x8b, - 0xa0, 0x9d, 0xaf, 0x41, 0xe0, 0x0c, 0xae, 0x36, 0xdb, 0xf9, 0x12, 0x78, 0xf9, 0x0a, 0x38, 0x5d, - 0x59, 0x31, 0x4c, 0x4e, 0xa4, 0x10, 0x14, 0x25, 0x8c, 0x31, 0x9e, 0xcd, 0x34, 0xea, 0xa6, 0xe2, - 0x42, 0x44, 0x51, 0x02, 0xdd, 0x35, 0x52, 0x58, 0x84, 0xfd, 0x10, 0xc5, 0x5d, 0x63, 0x67, 0x65, - 0x4d, 0x98, 0x59, 0x7b, 0x79, 0x14, 0x35, 0x76, 0x56, 0x56, 0x85, 0x19, 0x36, 0x8e, 0x19, 0x32, - 0xb3, 0xd1, 0x14, 0x6e, 0xfd, 0x8e, 0x39, 0xca, 0x1b, 0x12, 0xe3, 0xf7, 0x38, 0xc0, 0x8a, 0x65, - 0xe7, 0xc6, 0x07, 0x75, 0xfd, 0xb5, 0x9f, 0x74, 0x6f, 0x9d, 0x56, 0xe8, 0x90, 0xb1, 0xf1, 0x2e, - 0x4c, 0xad, 0xe4, 0x62, 0x78, 0xa9, 0xe2, 0xcc, 0xd8, 0x59, 0xc9, 0x92, 0xa1, 0x92, 0x5a, 0x93, - 0xdd, 0x5a, 0x59, 0x00, 0x93, 0x2c, 0x1c, 0x8a, 0x85, 0x37, 0xa2, 0x44, 0x66, 0xc0, 0xbb, 0xcd, - 0xab, 0x72, 0x23, 0xca, 0x43, 0x0e, 0x20, 0x35, 0xa4, 0xc8, 0xa4, 0x02, 0xe2, 0x29, 0x01, 0x02, - 0x35, 0x00, 0xa2, 0x08, 0x28, 0x54, 0x01, 0x8e, 0x32, 0xc0, 0x51, 0x07, 0x2c, 0x0a, 0x21, 0x93, - 0x4a, 0x08, 0xa5, 0x14, 0xe2, 0xa9, 0x45, 0x61, 0xe0, 0xb8, 0x99, 0x2d, 0x3e, 0x08, 0x4d, 0xe3, - 0xfa, 0xd8, 0x5c, 0xe1, 0xfe, 0x2c, 0x9b, 0x68, 0xc0, 0x10, 0x0e, 0x24, 0xe2, 0x01, 0x48, 0x40, - 0xd0, 0x88, 0x08, 0x2c, 0x21, 0x81, 0x25, 0x26, 0x98, 0x04, 0x45, 0x36, 0x51, 0x11, 0x4e, 0x58, - 0x60, 0x88, 0x4b, 0x61, 0x68, 0xd8, 0xbb, 0xe8, 0x27, 0x51, 0xf6, 0xf9, 0x12, 0x27, 0x80, 0x4d, - 0x73, 0xc4, 0xad, 0xe9, 0x20, 0x71, 0x60, 0x42, 0x6c, 0x56, 0x41, 0xcc, 0x45, 0x21, 0x38, 0x88, - 0x44, 0x07, 0x98, 0xf0, 0xa0, 0x12, 0x1f, 0x78, 0x02, 0x04, 0x4f, 0x84, 0xb0, 0x09, 0x11, 0x06, - 0x31, 0x02, 0x21, 0x48, 0x05, 0x14, 0xfc, 0xeb, 0x81, 0xc2, 0x8c, 0xd8, 0xc3, 0x28, 0xce, 0xfe, - 0x40, 0x8a, 0xd7, 0x13, 0xfa, 0xb1, 0x01, 0x64, 0xb2, 0x17, 0xc6, 0x17, 0x0a, 0xee, 0x48, 0x2c, - 0x3c, 0x4d, 0xbf, 0x71, 0x18, 0xc5, 0x70, 0x89, 0x1c, 0x94, 0x57, 0x3f, 0x30, 0x3f, 0x3f, 0xf8, - 0x0d, 0xd8, 0xfe, 0xfd, 0x24, 0xec, 0x64, 0x51, 0x3f, 0x6e, 0x44, 0x17, 0x51, 0x96, 0x8e, 0x1e, - 0x84, 0x07, 0x87, 0x94, 0xe1, 0xb2, 0xe1, 0x37, 0xba, 0x6c, 0xc5, 0x2e, 0xbb, 0xbe, 0xb1, 0x41, - 0xa7, 0x25, 0x11, 0xd7, 0xcb, 0x5a, 0x8c, 0x03, 0x66, 0xe4, 0xaf, 0x27, 0x40, 0x52, 0x31, 0xce, - 0x7b, 0xe1, 0x45, 0x8a, 0xd7, 0xfa, 0x1d, 0x9b, 0xcd, 0xb6, 0xef, 0x22, 0xcc, 0x65, 0xdb, 0xb7, - 0x44, 0x20, 0xb3, 0xed, 0x5b, 0x9e, 0x1b, 0xb2, 0xed, 0x5b, 0xf1, 0x03, 0xb0, 0xed, 0x4b, 0xce, - 0x31, 0x81, 0x02, 0x6e, 0xdb, 0x57, 0xc5, 0xc3, 0x4b, 0x95, 0x8c, 0x45, 0xc7, 0x78, 0xcd, 0xdf, - 0xb5, 0x3a, 0x90, 0xcd, 0x76, 0x3c, 0xcc, 0xc7, 0x12, 0xe8, 0x7a, 0xf3, 0x5c, 0x55, 0x37, 0x4a, - 0x33, 0x2b, 0xcb, 0x12, 0x2c, 0xf7, 0x3b, 0x8c, 0x62, 0xbb, 0xa7, 0x46, 0xd9, 0x63, 0x54, 0xae, - 0xc4, 0xc3, 0x5e, 0x0f, 0x08, 0xc8, 0x87, 0xe1, 0x37, 0x5c, 0xe3, 0x8f, 0x92, 0xae, 0x4a, 0x54, - 0x77, 0xf7, 0x7a, 0x62, 0x3a, 0xbb, 0x03, 0x4b, 0xd3, 0x1d, 0xb8, 0x9a, 0xb4, 0x39, 0xc1, 0xba, - 0x03, 0x63, 0xb3, 0xd9, 0x1d, 0x60, 0x77, 0x80, 0xdd, 0x01, 0x76, 0x07, 0xd8, 0x1d, 0x60, 0x77, - 0x80, 0x7c, 0x83, 0xdd, 0x81, 0x52, 0x22, 0xf6, 0x30, 0x8a, 0xb3, 0xb7, 0xeb, 0x80, 0x8d, 0x81, - 0x2d, 0x4e, 0x85, 0x2d, 0xf8, 0xc5, 0xa9, 0x30, 0x12, 0xeb, 0x27, 0x98, 0xcf, 0xa9, 0x30, 0xa6, - 0xcb, 0xe7, 0xb8, 0x2c, 0xa7, 0xc2, 0x2a, 0x77, 0xd9, 0xfa, 0xfa, 0x76, 0x7d, 0x7b, 0x73, 0x6b, - 0x7d, 0x9b, 0xc3, 0x61, 0x24, 0xe4, 0x9a, 0x59, 0xcb, 0xe1, 0xb0, 0x65, 0xb0, 0x50, 0xba, 0xbc, - 0x1a, 0xe4, 0x24, 0xf7, 0xc2, 0x5e, 0x5d, 0x0e, 0x82, 0xbe, 0x73, 0x52, 0xed, 0x9d, 0xef, 0x25, - 0x1f, 0xe9, 0x2e, 0xdf, 0xdf, 0x04, 0xfb, 0x1a, 0xc8, 0x06, 0x10, 0xd4, 0xc6, 0x0f, 0x08, 0xc9, - 0xe5, 0xf1, 0x46, 0x8b, 0x04, 0x2a, 0x8f, 0x37, 0x5a, 0x9c, 0x7b, 0xf1, 0x78, 0xa3, 0xb2, 0xc9, - 0x18, 0x8f, 0x37, 0x5a, 0x36, 0xfe, 0x0d, 0xb3, 0x41, 0x53, 0x44, 0xdc, 0x9e, 0x0a, 0xcf, 0x13, - 0x75, 0x8e, 0x10, 0x71, 0xa7, 0xa3, 0x9a, 0x00, 0x5b, 0x32, 0x46, 0x6b, 0x52, 0xd2, 0xbc, 0x79, - 0x33, 0x2e, 0x02, 0x6a, 0x63, 0x0a, 0xc6, 0x52, 0x40, 0x23, 0xcb, 0xa4, 0x1e, 0x0e, 0xfb, 0x41, - 0x5d, 0x4b, 0x27, 0xfd, 0x18, 0xc3, 0xb6, 0x50, 0xc3, 0xb5, 0x50, 0xc3, 0xb4, 0x18, 0xc3, 0xb3, - 0xbc, 0xaf, 0xf1, 0x65, 0x76, 0xea, 0xdd, 0xdd, 0x93, 0x7c, 0x09, 0xc0, 0x02, 0xef, 0x7b, 0x1b, - 0xff, 0xa9, 0x1d, 0x75, 0x79, 0x55, 0x25, 0xa2, 0x45, 0xbc, 0xaa, 0x72, 0xe9, 0x63, 0x18, 0xef, - 0x67, 0x14, 0xef, 0x1a, 0x42, 0xef, 0x4f, 0x10, 0x7d, 0x5f, 0x02, 0xef, 0x64, 0x7c, 0x6a, 0x8f, - 0x82, 0x77, 0x32, 0xbe, 0xc4, 0x44, 0xde, 0xc9, 0x38, 0x27, 0x43, 0x79, 0x27, 0x23, 0xe9, 0x66, - 0x59, 0x1f, 0xa1, 0xd8, 0x3b, 0x19, 0x33, 0xc9, 0x3b, 0x07, 0x45, 0x38, 0xce, 0xad, 0x94, 0x7d, - 0x0f, 0xe3, 0x2a, 0xef, 0x61, 0xd4, 0x8e, 0x0e, 0x00, 0xd1, 0x02, 0x14, 0x7a, 0x00, 0x47, 0x13, - 0xe0, 0xe8, 0x02, 0x16, 0x6d, 0x90, 0x49, 0x1f, 0x84, 0xd2, 0x88, 0xe2, 0xa3, 0x15, 0xbf, 0xdf, - 0x5f, 0x44, 0xcc, 0xa8, 0xab, 0xe2, 0x2c, 0xca, 0xae, 0x65, 0xef, 0xf5, 0x17, 0x35, 0xbc, 0x60, - 0x85, 0x88, 0xe1, 0x4c, 0x96, 0x72, 0x37, 0x4c, 0x81, 0x66, 0x40, 0x9d, 0xb6, 0xd3, 0x0e, 0xda, - 0xc7, 0xbb, 0xbe, 0x7b, 0x12, 0xf8, 0x7f, 0xb6, 0x6c, 0xe9, 0x61, 0x3e, 0x17, 0x0d, 0xa5, 0x10, - 0x6a, 0x56, 0xb0, 0x63, 0x60, 0x9c, 0x76, 0xe0, 0xd9, 0xd6, 0xde, 0x3b, 0x6b, 0xd7, 0x71, 0x1d, - 0xff, 0xcf, 0x09, 0x28, 0xda, 0x08, 0xa8, 0x40, 0x44, 0x07, 0x16, 0x4a, 0x7e, 0x8a, 0x16, 0xeb, - 0xc4, 0x72, 0x5c, 0x6b, 0xd7, 0xb5, 0x83, 0x5d, 0xab, 0xd9, 0xf8, 0xaf, 0xd3, 0xf0, 0xdf, 0x01, - 0x1d, 0x47, 0xf1, 0x3b, 0xe1, 0x52, 0x2e, 0x5c, 0x3c, 0xbb, 0xed, 0x34, 0x8e, 0x2d, 0x97, 0x68, - 0x21, 0x5a, 0x7e, 0x21, 0xb8, 0x34, 0xde, 0x07, 0x6d, 0xa7, 0x41, 0x88, 0x10, 0x22, 0xb3, 0x20, - 0xe2, 0x3a, 0xcd, 0x0f, 0x41, 0xcb, 0x3b, 0xf2, 0xed, 0x3d, 0xdf, 0x39, 0x6a, 0x8e, 0x59, 0x0b, - 0xf1, 0x42, 0xbc, 0xfc, 0x1b, 0x5e, 0x1a, 0xb6, 0x6b, 0xfd, 0x49, 0x94, 0x10, 0x25, 0x3f, 0x47, - 0x49, 0x70, 0x62, 0x79, 0x8e, 0x35, 0x0a, 0x2d, 0xc4, 0x0b, 0xf1, 0x32, 0x0b, 0x2f, 0x4e, 0xeb, - 0x64, 0x33, 0x70, 0x9a, 0xbe, 0xed, 0xed, 0x5b, 0x7b, 0x76, 0x60, 0x35, 0x1a, 0x9e, 0xdd, 0x6e, - 0x13, 0x31, 0x44, 0xcc, 0x2c, 0xc4, 0x14, 0xf5, 0x4f, 0xb0, 0x77, 0xd4, 0x6c, 0xfb, 0x9e, 0xe5, - 0x34, 0x7d, 0x02, 0x86, 0x80, 0x99, 0x09, 0x98, 0x43, 0xeb, 0xe3, 0xa8, 0x7a, 0xb6, 0xbd, 0x13, - 0x76, 0x5b, 0x88, 0x99, 0x27, 0xd0, 0x18, 0xcb, 0xf7, 0x3d, 0x67, 0xf7, 0xd8, 0xb7, 0x19, 0x5e, - 0x08, 0x95, 0x99, 0x50, 0x39, 0xf6, 0x1d, 0xd7, 0xf9, 0x9f, 0xdd, 0x60, 0x60, 0x21, 0x5a, 0x7e, - 0x8e, 0x16, 0xfb, 0xa3, 0x6f, 0x37, 0x1b, 0x76, 0x23, 0xb0, 0x1a, 0x87, 0x4e, 0x33, 0x38, 0xf0, - 0x8e, 0x8e, 0x5b, 0xc4, 0x0b, 0xf1, 0xf2, 0x6f, 0x8d, 0x5c, 0xd7, 0x6a, 0xb2, 0x99, 0x4b, 0x98, - 0xfc, 0x6b, 0x12, 0x6a, 0x16, 0xc5, 0x90, 0xdd, 0x08, 0xdc, 0x36, 0x63, 0x0a, 0xc1, 0xf2, 0x6f, - 0x3d, 0x97, 0x3a, 0x7b, 0x2e, 0x44, 0xcc, 0xaf, 0x23, 0xc6, 0xb7, 0x83, 0x86, 0xbd, 0x6f, 0x1d, - 0xbb, 0x7e, 0x70, 0x68, 0xfb, 0x9e, 0xb3, 0x47, 0xb0, 0x10, 0x2c, 0x33, 0xfb, 0x2d, 0x4e, 0x33, - 0xef, 0xb9, 0x70, 0xc3, 0x88, 0x68, 0xf9, 0xc5, 0x4e, 0x8b, 0x7b, 0xc4, 0xfc, 0x43, 0x90, 0xfc, - 0x7b, 0x0b, 0x37, 0x07, 0x0a, 0x7b, 0x2c, 0x44, 0xcb, 0x2f, 0x14, 0x43, 0xe3, 0x76, 0x3f, 0x7b, - 0x72, 0xc4, 0xcb, 0x2f, 0xd6, 0x43, 0x9b, 0x41, 0xd3, 0x76, 0x0e, 0xde, 0xed, 0x1e, 0x79, 0x2c, - 0x87, 0x08, 0x98, 0x5f, 0xe2, 0x2c, 0x6c, 0xc8, 0x11, 0x22, 0x3f, 0xe9, 0xb1, 0x30, 0xa6, 0x10, - 0x30, 0xbf, 0x0a, 0x18, 0xcc, 0xfd, 0x20, 0x08, 0x4b, 0x4f, 0x79, 0x57, 0xfb, 0xb2, 0xb8, 0x99, - 0x5e, 0x6a, 0x2b, 0xc2, 0x62, 0xd1, 0xb0, 0x40, 0x54, 0x55, 0x11, 0x15, 0x8b, 0xcf, 0xc5, 0x20, - 0xea, 0x29, 0x42, 0xa1, 0x94, 0x52, 0x0f, 0x4e, 0x25, 0x45, 0x5c, 0x94, 0x82, 0x0b, 0x90, 0xcd, - 0x2d, 0xa2, 0xa1, 0x3c, 0x34, 0x20, 0xa9, 0x9e, 0x88, 0x8b, 0x45, 0xe3, 0x02, 0x55, 0xdd, 0x44, - 0x64, 0x2c, 0x1a, 0x19, 0xa0, 0x2a, 0x26, 0x02, 0x63, 0xd1, 0xc0, 0xc0, 0x55, 0x2b, 0x11, 0x1b, - 0xa5, 0xd0, 0x0c, 0x24, 0x55, 0x12, 0x21, 0xb1, 0x68, 0x48, 0x20, 0xaa, 0x8f, 0x88, 0x8a, 0x45, - 0xa3, 0x02, 0x53, 0x65, 0x44, 0x5c, 0x2c, 0x1a, 0x17, 0x50, 0x6a, 0x22, 0xc2, 0x61, 0xe1, 0xc9, - 0x03, 0x4f, 0x35, 0x44, 0x50, 0x94, 0xd0, 0xb3, 0xa8, 0xb3, 0x67, 0x41, 0x64, 0x68, 0xa1, 0x02, - 0x22, 0x28, 0x16, 0xde, 0xaf, 0x00, 0x54, 0xfb, 0x10, 0x15, 0xa5, 0x74, 0x2a, 0x30, 0x54, 0x3d, - 0x04, 0xc3, 0xc2, 0x43, 0x04, 0xa0, 0x7a, 0x87, 0xa8, 0x58, 0x7c, 0xf1, 0x81, 0xa8, 0xd2, 0x21, - 0x2e, 0x4a, 0xa8, 0x3f, 0x10, 0xd5, 0x38, 0x04, 0x46, 0x29, 0x9c, 0x82, 0x8d, 0x2b, 0x42, 0x01, - 0x56, 0x5d, 0x43, 0x60, 0x2c, 0x1a, 0x18, 0xdc, 0xef, 0x58, 0x6a, 0x38, 0x78, 0x47, 0xc7, 0xbe, - 0xed, 0x05, 0x7b, 0x56, 0x8b, 0x77, 0x32, 0x11, 0x27, 0xcf, 0xc2, 0xcb, 0xdd, 0x3f, 0x51, 0xaf, - 0x49, 0xa8, 0xfc, 0x2b, 0x54, 0x2c, 0xf7, 0xe0, 0xc8, 0x73, 0xfc, 0x77, 0x87, 0x94, 0x6c, 0xce, - 0xf7, 0x45, 0xc9, 0x26, 0x93, 0x37, 0x5c, 0x30, 0x26, 0x24, 0x18, 0x74, 0x89, 0x88, 0x05, 0x17, - 0x7c, 0x2d, 0xde, 0xb9, 0x4a, 0x94, 0x3c, 0x17, 0x2d, 0x2d, 0xcf, 0xde, 0x77, 0x3e, 0x06, 0xfb, - 0xae, 0x75, 0xc0, 0xc3, 0x58, 0x88, 0x93, 0x9f, 0xe1, 0x84, 0x87, 0xae, 0x13, 0x25, 0xff, 0x82, - 0x92, 0x7c, 0xa7, 0x6a, 0x42, 0x51, 0x88, 0x14, 0x22, 0x65, 0x36, 0x52, 0x7c, 0xeb, 0x60, 0xb3, - 0x4e, 0x80, 0x10, 0x20, 0xff, 0x12, 0x4a, 0xea, 0x0c, 0x25, 0x44, 0xca, 0x2f, 0x85, 0x12, 0x36, - 0x1b, 0xe7, 0xfb, 0x62, 0xb3, 0x91, 0x7d, 0x04, 0xac, 0xca, 0x90, 0x78, 0x60, 0x05, 0x48, 0x34, - 0xb0, 0xd2, 0x23, 0x22, 0x58, 0xd1, 0x11, 0x08, 0xac, 0xdc, 0x88, 0x08, 0x56, 0x68, 0x3a, 0x55, - 0x66, 0x72, 0x2b, 0x32, 0x99, 0xeb, 0x26, 0xcf, 0x2a, 0x59, 0x16, 0x09, 0x0b, 0x7a, 0x86, 0x15, - 0xc7, 0xfd, 0x2c, 0xcc, 0xa2, 0x7e, 0x6c, 0xec, 0x08, 0x0c, 0x77, 0x46, 0xda, 0xf9, 0xac, 0x2e, - 0xc3, 0x41, 0x98, 0x7d, 0x1e, 0x05, 0xb8, 0x5a, 0x7f, 0xa0, 0xe2, 0x4e, 0x3f, 0x3e, 0x8f, 0x2e, - 0xcc, 0x58, 0x65, 0x5f, 0xfb, 0xc9, 0x17, 0x33, 0x8a, 0xd3, 0x2c, 0x8c, 0x3b, 0xaa, 0x76, 0xff, - 0x8d, 0xf4, 0xc1, 0x3b, 0xb5, 0x41, 0xd2, 0xcf, 0xfa, 0x9d, 0x7e, 0x2f, 0x2d, 0xbe, 0xab, 0x45, - 0x69, 0x94, 0xd6, 0x7a, 0xea, 0x4a, 0xf5, 0x26, 0x5f, 0x6a, 0xbd, 0x28, 0xfe, 0x62, 0xa6, 0x59, - 0x98, 0x29, 0xb3, 0x1b, 0x66, 0xe1, 0x59, 0x98, 0xaa, 0x5a, 0x2f, 0x1d, 0xd4, 0xb2, 0xde, 0x55, - 0x3a, 0xfa, 0x4f, 0xed, 0x32, 0x33, 0xa3, 0xc1, 0x55, 0xdd, 0x4c, 0x54, 0xd8, 0xf9, 0x1c, 0x9e, - 0x45, 0xbd, 0x28, 0xbb, 0xae, 0x0d, 0x12, 0x75, 0x1e, 0x7d, 0x53, 0xe9, 0xe4, 0x9b, 0x5a, 0x3a, - 0x3c, 0xcb, 0x7f, 0x61, 0xfc, 0xb5, 0x96, 0xff, 0x7d, 0xb2, 0x82, 0xb1, 0x1c, 0xc7, 0x10, 0xe4, - 0x14, 0x46, 0x16, 0x5e, 0x88, 0xf3, 0x84, 0x22, 0xc1, 0x8f, 0x8c, 0x13, 0x16, 0x40, 0x3e, 0x44, - 0x71, 0xd7, 0xd8, 0x59, 0x59, 0x13, 0x66, 0xd6, 0x5e, 0x1e, 0x24, 0x8c, 0x9d, 0x95, 0x55, 0x61, - 0x86, 0xb5, 0xf2, 0xf0, 0x20, 0x33, 0xd8, 0x4e, 0x61, 0xd6, 0xef, 0x98, 0xa3, 0xb0, 0x28, 0x70, - 0x8a, 0xc9, 0x68, 0xf7, 0x87, 0x49, 0x47, 0x89, 0x5c, 0xbe, 0xb1, 0x3b, 0xa8, 0xeb, 0xaf, 0xfd, - 0x64, 0xe4, 0x11, 0xc6, 0x38, 0x11, 0x08, 0x1d, 0x05, 0x33, 0xde, 0x85, 0xa9, 0x95, 0x5c, 0x0c, - 0x2f, 0x55, 0x9c, 0x19, 0x3b, 0x2b, 0x59, 0x32, 0x54, 0x42, 0x0d, 0xbd, 0x63, 0x65, 0x01, 0x4c, - 0x92, 0x4c, 0x28, 0x92, 0xd9, 0x88, 0x12, 0xa1, 0xec, 0x32, 0x67, 0x65, 0x62, 0x83, 0xc9, 0x34, - 0x1e, 0x8f, 0xcd, 0x14, 0xea, 0x9f, 0x32, 0x09, 0x80, 0x78, 0x22, 0x80, 0x40, 0x08, 0x80, 0x88, - 0x01, 0x0a, 0x41, 0x80, 0x23, 0x0a, 0x70, 0x84, 0x01, 0x8b, 0x38, 0xc8, 0x24, 0x10, 0x42, 0x89, - 0x84, 0x78, 0x42, 0x71, 0xb7, 0x8b, 0xf0, 0x76, 0x5d, 0x7e, 0x10, 0xba, 0xd3, 0x57, 0x78, 0xbb, - 0x2e, 0x3d, 0x00, 0x4d, 0x88, 0xc6, 0xaa, 0x70, 0x33, 0xa5, 0x13, 0x0e, 0x24, 0xe2, 0x01, 0x48, - 0x40, 0xd0, 0x88, 0x08, 0x2c, 0x21, 0x81, 0x25, 0x26, 0x98, 0x04, 0x45, 0x36, 0x51, 0x11, 0x4e, - 0x58, 0x8a, 0x8f, 0xdc, 0xbf, 0x1e, 0x28, 0xac, 0x88, 0x3b, 0x8c, 0xe2, 0x4c, 0x3c, 0x37, 0xb8, - 0xcb, 0x0f, 0xb6, 0x00, 0x4c, 0xf5, 0xc2, 0xf8, 0x42, 0xc1, 0xc8, 0x6e, 0x71, 0xf4, 0x0a, 0xc6, - 0x61, 0x14, 0xc3, 0x64, 0x5c, 0x30, 0x62, 0xfb, 0xc0, 0xec, 0x5c, 0x3c, 0x0e, 0x68, 0xf7, 0x7e, - 0x12, 0x76, 0xb2, 0xa8, 0x1f, 0x37, 0xa2, 0x8b, 0x28, 0x4b, 0x47, 0x0f, 0x40, 0x91, 0xd3, 0x22, - 0x5c, 0x31, 0xfc, 0x46, 0x57, 0x2c, 0xd9, 0x15, 0xeb, 0xeb, 0xdb, 0xf5, 0xed, 0xcd, 0xad, 0xf5, - 0xed, 0x0d, 0xfa, 0x24, 0x09, 0x31, 0x96, 0x95, 0xa7, 0x2c, 0x2c, 0x5e, 0xe0, 0x40, 0x6e, 0x94, - 0x66, 0x56, 0x96, 0x25, 0x18, 0xc5, 0xc5, 0x61, 0x14, 0xdb, 0x3d, 0x35, 0xaa, 0x7d, 0x47, 0xbe, - 0x1e, 0x0f, 0x7b, 0x3d, 0x00, 0xd2, 0x7e, 0x18, 0x7e, 0xc3, 0x33, 0xfa, 0x28, 0xe9, 0xaa, 0x44, - 0x75, 0x77, 0xaf, 0x27, 0x26, 0xff, 0xc6, 0x20, 0xa5, 0x8f, 0x65, 0x52, 0xb7, 0x67, 0x84, 0x0f, - 0x15, 0x17, 0x76, 0xea, 0x32, 0x5c, 0x9c, 0x85, 0x17, 0x12, 0x07, 0x8c, 0xe5, 0x3a, 0x0f, 0xc7, - 0xb5, 0x80, 0xdd, 0x57, 0x27, 0xb7, 0x95, 0x38, 0x62, 0x9b, 0x66, 0xc9, 0xb0, 0x93, 0xc5, 0x93, - 0xfe, 0x6f, 0x73, 0xbc, 0x5e, 0xce, 0x64, 0xb9, 0x82, 0xd6, 0x64, 0x91, 0x02, 0x27, 0x8d, 0xd2, - 0xc0, 0x1d, 0xad, 0x4e, 0xe0, 0xa6, 0x83, 0xc0, 0xef, 0x5d, 0x05, 0x87, 0x99, 0x33, 0xb8, 0xaa, - 0x7b, 0x77, 0x96, 0x20, 0x18, 0x6f, 0x32, 0x06, 0xed, 0xfc, 0x89, 0x03, 0x3f, 0xbc, 0xa0, 0x06, - 0x42, 0x7c, 0x10, 0x30, 0xb2, 0xf0, 0x62, 0xb3, 0x2e, 0x5a, 0x05, 0xb1, 0x59, 0xa7, 0x0e, 0xe2, - 0x97, 0xcc, 0xa2, 0x0e, 0xe2, 0x05, 0x40, 0xa3, 0x0e, 0xe2, 0xf9, 0xee, 0x40, 0x1d, 0xc4, 0xbc, - 0x59, 0x19, 0x75, 0x10, 0xe8, 0xc4, 0x9a, 0x3a, 0x88, 0x97, 0xc5, 0x63, 0xea, 0x20, 0xf4, 0x23, - 0x02, 0x08, 0x84, 0x00, 0x88, 0x18, 0xa0, 0x10, 0x04, 0x38, 0xa2, 0x00, 0x47, 0x18, 0xb0, 0x88, - 0x83, 0x4c, 0x02, 0x21, 0x94, 0x48, 0x88, 0x27, 0x14, 0xc2, 0x3b, 0x09, 0x50, 0x9d, 0x85, 0x59, - 0x44, 0x83, 0x3a, 0x88, 0xe5, 0x21, 0x1e, 0x80, 0x04, 0x04, 0x8d, 0x88, 0xc0, 0x12, 0x12, 0x58, - 0x62, 0x82, 0x49, 0x50, 0x64, 0x13, 0x15, 0xe1, 0x84, 0xa5, 0xf8, 0xc8, 0x31, 0x75, 0x10, 0xe2, - 0xb9, 0xc1, 0x5d, 0x7e, 0xf0, 0x07, 0x75, 0x10, 0x73, 0x7e, 0x51, 0x07, 0x41, 0x62, 0xfb, 0x88, - 0xd9, 0xd4, 0x41, 0x30, 0xbd, 0xfd, 0x9b, 0x2b, 0x52, 0x07, 0x51, 0xba, 0x2b, 0xae, 0xfd, 0x51, - 0xaf, 0x6f, 0x6e, 0xd5, 0xeb, 0xab, 0x5b, 0x6f, 0xb7, 0x56, 0xb7, 0x37, 0x36, 0xd6, 0x36, 0xd7, - 0xa8, 0x88, 0x20, 0x35, 0x06, 0xb3, 0x92, 0x8a, 0x88, 0x97, 0x38, 0x10, 0x15, 0x11, 0x65, 0xa4, - 0x36, 0x2a, 0x22, 0x96, 0x34, 0x48, 0x71, 0xa3, 0xe6, 0x29, 0xa0, 0xa3, 0x22, 0xa2, 0xf4, 0xd1, - 0xea, 0xcd, 0x3a, 0x35, 0x11, 0xb8, 0x16, 0x51, 0x13, 0xb1, 0xc4, 0x8e, 0xbb, 0x7c, 0xaa, 0x08, - 0x69, 0x37, 0x78, 0x51, 0x17, 0xf1, 0x18, 0x06, 0x32, 0x89, 0xbb, 0x16, 0xb7, 0xc3, 0x0b, 0x23, - 0xeb, 0x64, 0xaa, 0x22, 0x56, 0xa9, 0x8a, 0xf8, 0x35, 0xc3, 0xa8, 0x8a, 0x78, 0x91, 0x89, 0x54, - 0x45, 0xcc, 0xc9, 0x50, 0xaa, 0x22, 0x48, 0xad, 0xcb, 0xfa, 0x08, 0xc5, 0xce, 0x02, 0x14, 0x11, - 0xaf, 0xa7, 0xc2, 0xf3, 0x44, 0x9d, 0x4b, 0x8c, 0x78, 0x53, 0xd5, 0x81, 0xc0, 0x53, 0x0f, 0x8d, - 0xd6, 0xa4, 0x1a, 0x79, 0xf3, 0x66, 0x5c, 0x89, 0xd7, 0x72, 0x86, 0x42, 0x9e, 0x2b, 0xd8, 0x12, - 0x21, 0xb1, 0x61, 0x94, 0x28, 0x85, 0x51, 0x5a, 0x99, 0xfb, 0x09, 0xa2, 0xf7, 0x0d, 0x44, 0xef, - 0x0f, 0xc8, 0xdc, 0x07, 0x90, 0xe2, 0x7f, 0x42, 0xdb, 0x5d, 0xba, 0xb4, 0xb9, 0x04, 0x31, 0x89, - 0x05, 0x36, 0xb6, 0x64, 0xa4, 0xfa, 0xea, 0x13, 0x6b, 0xb5, 0x16, 0x54, 0x1c, 0x52, 0xa4, 0x85, - 0x12, 0xf8, 0x10, 0x52, 0xad, 0x57, 0x55, 0x87, 0xe5, 0x0a, 0x71, 0x6c, 0x0c, 0xe3, 0xae, 0x3a, - 0x8f, 0x62, 0xd5, 0x35, 0xa7, 0x1f, 0x42, 0xd5, 0x50, 0xbe, 0x9d, 0x4b, 0x7f, 0x60, 0x5a, 0xc5, - 0xfe, 0x2e, 0x43, 0x07, 0x2f, 0xa6, 0xc5, 0x2b, 0xa9, 0xa5, 0x2b, 0xb0, 0x85, 0x2b, 0xad, 0x65, - 0x2b, 0xb6, 0x45, 0x2b, 0xb6, 0x25, 0x2b, 0xb3, 0x05, 0xbb, 0xdc, 0x9c, 0x4b, 0x8a, 0x2e, 0xfc, - 0x41, 0x76, 0x92, 0xe3, 0xe7, 0xb3, 0xf2, 0xa7, 0x14, 0x77, 0x97, 0x75, 0x9c, 0x8c, 0xb8, 0x1d, - 0x53, 0x89, 0x3b, 0xa5, 0x82, 0x77, 0x48, 0xa5, 0xee, 0x8c, 0x8a, 0xdf, 0x11, 0x15, 0xbf, 0x13, - 0x2a, 0x7b, 0x07, 0x94, 0xbb, 0x1a, 0x12, 0xd3, 0xf2, 0x6d, 0x2f, 0x44, 0xe4, 0xb9, 0x6f, 0xa2, - 0xcf, 0x7b, 0xe3, 0x41, 0xaf, 0xf8, 0x89, 0x1a, 0x20, 0x61, 0x4b, 0x4f, 0xdc, 0x30, 0x09, 0x1c, - 0x26, 0x91, 0x63, 0x24, 0x74, 0x59, 0x89, 0x5d, 0x58, 0x82, 0x17, 0x9b, 0xe8, 0x0b, 0xc3, 0x7a, - 0x2a, 0xbe, 0xc8, 0x37, 0x3e, 0x84, 0x9f, 0xf4, 0x3a, 0xb1, 0x53, 0xf6, 0x51, 0xaf, 0xab, 0x3c, - 0xea, 0x55, 0x3b, 0x4a, 0x00, 0x44, 0x0d, 0x50, 0x28, 0x02, 0x1c, 0x55, 0x80, 0xa3, 0x0c, 0x58, - 0xd4, 0x41, 0x26, 0x85, 0x10, 0x4a, 0x25, 0x8a, 0x8f, 0x56, 0xfc, 0x89, 0x69, 0x3f, 0x9c, 0x94, - 0xf6, 0x87, 0xe4, 0x78, 0x39, 0x49, 0xdf, 0x82, 0x4f, 0x84, 0x01, 0x39, 0x18, 0x0d, 0xe3, 0x5c, - 0x0d, 0xa0, 0xa3, 0x47, 0xa1, 0x4e, 0x5d, 0x42, 0x3b, 0xf8, 0x0c, 0xf1, 0x48, 0xa5, 0x1b, 0x8c, - 0x53, 0x60, 0xe8, 0x62, 0x0b, 0x76, 0xb1, 0xf5, 0x8d, 0x0d, 0x3a, 0xd9, 0x72, 0x11, 0x51, 0xf9, - 0xd6, 0x9d, 0xf2, 0x64, 0x15, 0xd4, 0x20, 0x2e, 0xf3, 0x28, 0x83, 0x07, 0xa5, 0x84, 0xc0, 0x23, - 0x0d, 0x40, 0x32, 0x09, 0x9b, 0x80, 0xf3, 0xc4, 0x21, 0x9b, 0x80, 0xf3, 0x73, 0x1b, 0x36, 0x01, - 0x17, 0x6c, 0x30, 0x9b, 0x80, 0xba, 0x96, 0x5d, 0x6c, 0x02, 0xce, 0x3d, 0x7d, 0xb3, 0x09, 0xf8, - 0xd2, 0x17, 0x9b, 0x80, 0xec, 0x50, 0xb0, 0x09, 0xb8, 0x84, 0xd9, 0xe8, 0x47, 0x17, 0x63, 0x13, - 0x70, 0xe1, 0x2e, 0xc6, 0x26, 0xe0, 0xd2, 0x11, 0x51, 0xf9, 0xd6, 0xb1, 0x09, 0x08, 0x1b, 0xc4, - 0x8d, 0xab, 0x49, 0x60, 0x11, 0xde, 0x05, 0x1c, 0x9b, 0xc9, 0x36, 0xe0, 0x73, 0xcc, 0x63, 0x1b, - 0x70, 0x8e, 0x40, 0x64, 0x1b, 0x70, 0x7e, 0x6e, 0xc3, 0x36, 0xe0, 0x82, 0x0d, 0x66, 0x1b, 0x50, - 0xd7, 0xc2, 0x0b, 0xa8, 0x0d, 0x78, 0x16, 0xc5, 0x61, 0x72, 0x0d, 0xd0, 0x07, 0xdc, 0x26, 0x8d, - 0x05, 0xb4, 0x88, 0xb7, 0x84, 0x3c, 0xcd, 0x3e, 0xd8, 0xb3, 0xcf, 0x1e, 0x9c, 0x72, 0xf5, 0xe0, - 0x1d, 0x89, 0x97, 0xfd, 0xf0, 0x16, 0x8d, 0xc7, 0x40, 0xc8, 0x5b, 0x34, 0xf4, 0xa8, 0x31, 0x29, - 0x39, 0xd7, 0xb3, 0x96, 0xa4, 0xe4, 0x7c, 0xd9, 0x6a, 0x46, 0x4a, 0xce, 0xf1, 0xa9, 0x27, 0x6f, - 0xd1, 0x78, 0x79, 0x82, 0xe5, 0x2d, 0x1a, 0xf0, 0x3c, 0x97, 0xe7, 0x4d, 0xfd, 0x98, 0x28, 0x79, - 0x8b, 0xc6, 0xaf, 0x58, 0xc5, 0x5b, 0x34, 0x9e, 0x6b, 0x1c, 0x6f, 0xd1, 0xc0, 0x6b, 0x07, 0xe9, - 0xdc, 0x06, 0xd2, 0xfd, 0x66, 0x8d, 0xe3, 0xe9, 0xf3, 0xf2, 0x8a, 0x0d, 0x39, 0x16, 0xf0, 0x8a, - 0x0d, 0x5d, 0xe3, 0xcb, 0xd2, 0x5e, 0xb6, 0xf1, 0xdb, 0x12, 0xf9, 0xd1, 0x94, 0x27, 0x8f, 0x20, - 0xd2, 0x5d, 0xa9, 0xb4, 0xa5, 0x24, 0x83, 0x1f, 0x8b, 0xe2, 0xc3, 0xa2, 0xf8, 0xaf, 0x0c, 0xbe, - 0x5b, 0x95, 0x9f, 0x08, 0xc9, 0x33, 0xb0, 0xf9, 0xa5, 0x42, 0x72, 0xba, 0x08, 0x32, 0x5a, 0x4d, - 0x72, 0x2c, 0x3f, 0x35, 0x95, 0xfb, 0x2f, 0x96, 0xec, 0xdc, 0x55, 0x3b, 0x35, 0x9e, 0x33, 0x97, - 0x0b, 0xfb, 0xf2, 0xc0, 0x57, 0xce, 0xbf, 0x54, 0x12, 0xbc, 0xab, 0x82, 0x35, 0x0c, 0x9c, 0x4b, - 0xcc, 0x45, 0x73, 0xcd, 0x3d, 0xe5, 0x78, 0xdf, 0xe2, 0x7d, 0xa1, 0x04, 0x3f, 0x30, 0xc6, 0x9f, - 0xfb, 0xe6, 0x8f, 0x9f, 0x7b, 0x59, 0xde, 0x50, 0xec, 0xfb, 0x3d, 0x6a, 0x45, 0x49, 0x51, 0xa0, - 0xdc, 0xcb, 0x1a, 0x4a, 0x9f, 0x88, 0xa9, 0x62, 0xd2, 0xa5, 0xc2, 0x09, 0x96, 0xaa, 0x26, 0x53, - 0x2a, 0x9f, 0x38, 0xa9, 0x7c, 0x92, 0xa4, 0xda, 0x09, 0x11, 0xbd, 0x98, 0x49, 0xd9, 0x97, 0x03, - 0x18, 0x05, 0x71, 0x2d, 0xdd, 0x6f, 0xa6, 0xa1, 0xa2, 0xb0, 0xa0, 0x64, 0xd4, 0x56, 0x73, 0x57, - 0x4f, 0x65, 0x83, 0x91, 0x55, 0x0e, 0x3e, 0x0a, 0x18, 0x6c, 0xac, 0x7a, 0x70, 0x51, 0xcc, 0x60, - 0xa2, 0x98, 0xc1, 0x43, 0x19, 0x83, 0x85, 0x7a, 0xf7, 0x6f, 0xaa, 0xba, 0x6b, 0x66, 0x0a, 0xf1, - 0xca, 0xbc, 0xed, 0xc7, 0xe4, 0x52, 0x95, 0xab, 0x55, 0x7b, 0x1d, 0x5c, 0xe5, 0x33, 0xf8, 0x12, - 0x66, 0xed, 0x05, 0xcd, 0xd4, 0x4b, 0x99, 0x9d, 0x17, 0x37, 0x23, 0x2f, 0x6e, 0x16, 0x5e, 0xd6, - 0xcc, 0xfb, 0x72, 0xed, 0xb7, 0x57, 0x7d, 0x3d, 0xda, 0x78, 0xa7, 0xbf, 0x7a, 0x27, 0xbd, 0xdb, - 0x21, 0xeb, 0x56, 0xed, 0xa0, 0x32, 0x44, 0x66, 0x62, 0x44, 0x65, 0x92, 0x44, 0x64, 0x02, 0x45, - 0x63, 0xd2, 0x44, 0x62, 0x62, 0x45, 0x61, 0x62, 0x45, 0x60, 0x32, 0x45, 0x5f, 0xcb, 0x3d, 0xc8, - 0x29, 0x46, 0xc4, 0x25, 0x50, 0xb4, 0x25, 0x49, 0xa4, 0xf5, 0x50, 0x94, 0x35, 0x4e, 0xe1, 0xcb, - 0x3a, 0x2d, 0x5a, 0x61, 0xc1, 0x35, 0x90, 0x91, 0xa6, 0x65, 0x74, 0x23, 0x48, 0xe6, 0x48, 0xe6, - 0x48, 0xe6, 0x48, 0xe6, 0x48, 0xe6, 0x48, 0xe6, 0x48, 0xe6, 0x9e, 0x4d, 0xe6, 0x06, 0x15, 0x8e, - 0x37, 0x2f, 0x37, 0x9b, 0x1b, 0x1f, 0xe2, 0x25, 0x86, 0xcc, 0x8d, 0xcd, 0x91, 0xc1, 0xe5, 0xd6, - 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0xc8, 0xe5, 0xca, 0xff, 0x48, 0xaa, 0xde, 0xb1, - 0x2a, 0x0c, 0xb9, 0x54, 0x59, 0x12, 0x75, 0xe4, 0x78, 0x77, 0xb1, 0x85, 0x35, 0xb6, 0x4b, 0xca, - 0xc1, 0x37, 0xa2, 0x0e, 0x4c, 0x14, 0x77, 0x50, 0xa2, 0xc4, 0x03, 0x12, 0x05, 0x1f, 0x8c, 0x28, - 0xf5, 0x40, 0x44, 0xf1, 0x07, 0x21, 0x8a, 0x3f, 0x00, 0x51, 0xf6, 0xc1, 0x87, 0x3c, 0xcc, 0x4c, - 0x64, 0x3b, 0xe5, 0x41, 0xc4, 0xfa, 0x1a, 0x75, 0x95, 0x29, 0x2a, 0x01, 0xde, 0x4d, 0x82, 0x82, - 0xce, 0x34, 0x14, 0x7a, 0xa3, 0xa5, 0xc0, 0x33, 0x33, 0x25, 0xdf, 0x58, 0x29, 0xfd, 0xca, 0xa3, - 0xe9, 0x75, 0x79, 0x6b, 0x42, 0xed, 0x03, 0xb8, 0x1c, 0x4f, 0xe2, 0x65, 0x65, 0x92, 0x6f, 0x98, - 0x84, 0x71, 0x89, 0xcd, 0xad, 0xad, 0xad, 0xf5, 0xb5, 0x0d, 0x7a, 0x06, 0x36, 0x27, 0x93, 0x67, - 0xcd, 0x29, 0x0f, 0x22, 0x94, 0x12, 0x39, 0x85, 0x4c, 0x37, 0x3f, 0xa0, 0xc9, 0x12, 0xa6, 0x9c, - 0x85, 0x06, 0x6c, 0x76, 0x88, 0x9e, 0x02, 0x24, 0x76, 0x88, 0x7e, 0x1d, 0xe6, 0xec, 0x10, 0xbd, - 0xd0, 0x40, 0x76, 0x88, 0x50, 0xaa, 0x05, 0xc1, 0x1d, 0xa2, 0x61, 0x14, 0x67, 0x6b, 0x9b, 0x02, - 0x9b, 0x43, 0x9b, 0x6c, 0x0e, 0xfd, 0xe4, 0xc5, 0xe6, 0x90, 0x96, 0x95, 0xf0, 0x2a, 0x4b, 0x60, - 0xf0, 0x70, 0xff, 0xa3, 0x4b, 0xb0, 0x39, 0xf4, 0x62, 0x97, 0xa8, 0xaf, 0x6e, 0xb3, 0x31, 0xa4, - 0x41, 0x2b, 0x66, 0x85, 0x8d, 0x21, 0x81, 0xeb, 0x21, 0xa1, 0x31, 0x34, 0x90, 0x55, 0xd4, 0xcb, - 0xd2, 0x4c, 0x09, 0x0d, 0xd7, 0x6c, 0x0d, 0x3d, 0x05, 0x49, 0x6c, 0x0d, 0xfd, 0x3a, 0xcc, 0xd9, - 0x1a, 0x7a, 0xa1, 0x81, 0x6c, 0x0d, 0xa1, 0xd4, 0x0a, 0x82, 0x5b, 0x43, 0xf9, 0xd1, 0xc8, 0xe2, - 0x1c, 0xb0, 0x10, 0x9d, 0xfc, 0x21, 0xc8, 0xa6, 0x56, 0x98, 0x65, 0x2a, 0x89, 0xc5, 0xb5, 0x88, - 0x8c, 0xbf, 0x5f, 0xbd, 0xfa, 0xb4, 0x6a, 0x6e, 0x87, 0xe6, 0xb9, 0x65, 0xee, 0x9f, 0xfe, 0xb3, - 0xf6, 0x7b, 0xfd, 0x66, 0xe7, 0xf5, 0x3f, 0x5b, 0x37, 0xf7, 0xdf, 0xfc, 0xfe, 0xd8, 0x8f, 0xad, - 0xfd, 0xbe, 0x75, 0xb3, 0x33, 0xe3, 0xff, 0x6c, 0xde, 0xec, 0xfc, 0xe2, 0xdf, 0xb1, 0x71, 0xf3, - 0xea, 0xc1, 0x8f, 0x8e, 0xde, 0x5f, 0x9f, 0xf5, 0x0b, 0xf5, 0x19, 0xbf, 0xf0, 0x76, 0xd6, 0x2f, - 0xbc, 0x9d, 0xf1, 0x0b, 0x33, 0x4d, 0x5a, 0x9f, 0xf1, 0x0b, 0x1b, 0x37, 0xdf, 0x1f, 0xfc, 0xfc, - 0xab, 0xc7, 0x7f, 0x74, 0xf3, 0xe6, 0xf5, 0xf7, 0x59, 0xff, 0x6f, 0xeb, 0xe6, 0xfb, 0xce, 0xeb, - 0xd7, 0xb5, 0x57, 0x6b, 0xeb, 0x9f, 0x56, 0xcd, 0x3f, 0x4e, 0xbf, 0xaf, 0x7d, 0x5a, 0x35, 0xd7, - 0x4e, 0x47, 0x3f, 0x79, 0xfa, 0xfd, 0xd3, 0x9a, 0xb9, 0x3d, 0xfd, 0x76, 0xf4, 0xdf, 0xd7, 0xff, - 0x31, 0x58, 0x10, 0xb1, 0x20, 0x7a, 0xe0, 0xb8, 0xa9, 0x79, 0x16, 0x65, 0xf2, 0xea, 0xa1, 0xb1, - 0x59, 0x2c, 0x87, 0x58, 0x0e, 0xb1, 0x1c, 0x62, 0x39, 0xc4, 0x72, 0x88, 0xe5, 0xd0, 0xd2, 0x94, - 0x43, 0x67, 0xfd, 0x7e, 0x4f, 0x85, 0xb1, 0xc4, 0x52, 0x68, 0x8d, 0xc4, 0x4d, 0x0c, 0x71, 0x1b, - 0x0e, 0xcc, 0x6e, 0xff, 0x6b, 0x2c, 0x8f, 0xba, 0x4d, 0x0d, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, - 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0xbb, 0xfd, 0x4c, 0xbe, - 0xc9, 0xec, 0xba, 0x7d, 0x63, 0xd7, 0x8d, 0xc4, 0x8d, 0xc4, 0x8d, 0xc4, 0x8d, 0xc4, 0x8d, 0xc4, - 0x8d, 0xc4, 0x8d, 0xc4, 0x4d, 0x16, 0x71, 0x5b, 0xea, 0xf3, 0xf7, 0x2a, 0xba, 0xcd, 0x7f, 0xa6, - 0x3d, 0x72, 0x6f, 0xf9, 0xff, 0xf1, 0x9e, 0xf5, 0xda, 0xf4, 0xe6, 0xdd, 0xc9, 0x37, 0xe3, 0x03, - 0x8e, 0x79, 0xb2, 0x71, 0x05, 0x88, 0x19, 0x9e, 0x8d, 0x3e, 0x29, 0x41, 0x67, 0x1b, 0x4f, 0x0c, - 0xe2, 0xe9, 0xc6, 0x3c, 0xdd, 0x18, 0xa6, 0xa0, 0xe1, 0xe9, 0xc6, 0xe8, 0x85, 0x0b, 0x4f, 0x37, - 0x96, 0xc7, 0xae, 0xc4, 0x9c, 0x6e, 0x3c, 0xce, 0x49, 0x02, 0x07, 0xf2, 0xc6, 0x76, 0xc9, 0xea, - 0x0d, 0xae, 0xb1, 0x37, 0x28, 0x3e, 0x85, 0x0a, 0x4e, 0xa5, 0x52, 0x53, 0xaa, 0xf8, 0xd4, 0x2a, - 0x3e, 0xc5, 0xca, 0x4e, 0xb5, 0x72, 0x5a, 0x2a, 0x2b, 0x82, 0x7a, 0x83, 0x52, 0x52, 0x70, 0x61, - 0xd0, 0x79, 0x2f, 0xbc, 0x48, 0xe5, 0x05, 0x85, 0x69, 0x1c, 0x1d, 0x9b, 0x27, 0xcc, 0xdf, 0x64, - 0x25, 0x66, 0xb1, 0x09, 0x5a, 0x72, 0xa2, 0x06, 0x48, 0xd8, 0xd2, 0x13, 0x37, 0x4c, 0x02, 0x87, - 0x49, 0xe4, 0x18, 0x09, 0x5d, 0x56, 0x62, 0x17, 0x96, 0xe0, 0xc5, 0x26, 0xfa, 0xdb, 0xda, 0x5b, - 0xc4, 0xd5, 0x7b, 0x3f, 0x2f, 0xc5, 0x05, 0x5c, 0xc9, 0x07, 0x46, 0x00, 0xc4, 0x13, 0x01, 0x04, - 0x42, 0x00, 0x44, 0x0c, 0x50, 0x08, 0x02, 0x1c, 0x51, 0x80, 0x23, 0x0c, 0x58, 0xc4, 0x41, 0x26, - 0x81, 0x10, 0x4a, 0x24, 0xc4, 0x13, 0x0a, 0xe1, 0x9d, 0x04, 0xa8, 0xce, 0xc2, 0x2c, 0xa2, 0xb1, - 0x2a, 0xdc, 0x4c, 0xe9, 0x84, 0x03, 0x89, 0x78, 0x00, 0x12, 0x10, 0x34, 0x22, 0x02, 0x4b, 0x48, - 0x60, 0x89, 0x09, 0x26, 0x41, 0x91, 0x4d, 0x54, 0x84, 0x13, 0x96, 0xe2, 0x23, 0x17, 0x37, 0x0e, - 0xfd, 0xd3, 0x88, 0xab, 0xe2, 0xe1, 0xa5, 0x4a, 0xc6, 0x63, 0xa8, 0x00, 0x51, 0x77, 0xda, 0x8d, - 0xa8, 0x03, 0xd8, 0x6a, 0xc7, 0xc3, 0xcb, 0x11, 0x18, 0xe8, 0x52, 0x2f, 0x59, 0x45, 0x37, 0x4a, - 0x33, 0x2b, 0xcb, 0x12, 0x0c, 0xb7, 0x3a, 0x8c, 0x62, 0xbb, 0xa7, 0x46, 0x51, 0x7f, 0x54, 0x1e, - 0xc4, 0xc3, 0x5e, 0x0f, 0x00, 0xa8, 0x87, 0xe1, 0x37, 0x3c, 0xa3, 0x8f, 0x92, 0xae, 0x4a, 0x54, - 0x77, 0xf7, 0x7a, 0x62, 0xf2, 0x6f, 0xcc, 0xaa, 0x9a, 0xb9, 0xbf, 0x91, 0x21, 0x64, 0xd3, 0x22, - 0x93, 0xe6, 0xd6, 0xb2, 0xc6, 0x66, 0x8d, 0xcd, 0x1a, 0x9b, 0x35, 0x36, 0x6b, 0x6c, 0xd6, 0xd8, - 0xac, 0xb1, 0x59, 0x63, 0x8f, 0xcf, 0x43, 0xef, 0xaa, 0x38, 0x8b, 0xb2, 0xeb, 0x44, 0x9d, 0x23, - 0xd5, 0xd8, 0x1b, 0x00, 0xb6, 0x3a, 0x93, 0xa5, 0xdd, 0x0d, 0x53, 0xa0, 0x3c, 0x31, 0x05, 0x86, - 0xd3, 0x76, 0xda, 0x41, 0xfb, 0x78, 0xd7, 0x77, 0x4f, 0x02, 0xff, 0xcf, 0x96, 0x8d, 0x92, 0x2e, - 0xf2, 0xeb, 0xb5, 0x52, 0x71, 0x87, 0xd6, 0xff, 0xdb, 0xeb, 0x1f, 0x18, 0x4b, 0xef, 0x21, 0x24, - 0xf0, 0x6c, 0x6b, 0xef, 0x9d, 0xb5, 0xeb, 0xb8, 0x8e, 0xff, 0xe7, 0x04, 0x2c, 0x6d, 0x24, 0xb4, - 0x20, 0xa3, 0x06, 0x13, 0x3d, 0x3f, 0x45, 0x91, 0x75, 0x62, 0x39, 0xae, 0xb5, 0xeb, 0xda, 0xc1, - 0xae, 0xd5, 0x6c, 0xfc, 0xd7, 0x69, 0xf8, 0xef, 0x0c, 0xb8, 0x27, 0xbc, 0xf9, 0x9d, 0x30, 0xaa, - 0x16, 0x46, 0x9e, 0xdd, 0x76, 0x1a, 0xc7, 0x96, 0x4b, 0x14, 0x11, 0x45, 0x2f, 0x08, 0x46, 0x8d, - 0xf7, 0x41, 0xdb, 0x69, 0x10, 0x3a, 0x84, 0xce, 0x53, 0xa1, 0xe3, 0x3a, 0xcd, 0x0f, 0x41, 0xcb, - 0x3b, 0xf2, 0xed, 0x3d, 0xdf, 0x39, 0x6a, 0x8e, 0x59, 0x11, 0x71, 0x44, 0x1c, 0x3d, 0x07, 0x47, - 0x0d, 0xdb, 0xb5, 0xfe, 0x24, 0x7a, 0x88, 0x9e, 0xe7, 0xa3, 0x27, 0x38, 0xb1, 0x3c, 0xc7, 0x1a, - 0x85, 0x22, 0xe2, 0x88, 0x38, 0x7a, 0x2a, 0x8e, 0x9c, 0xd6, 0xc9, 0x66, 0xe0, 0x34, 0x7d, 0xdb, - 0xdb, 0xb7, 0xf6, 0xec, 0xc0, 0x6a, 0x34, 0x3c, 0xbb, 0xdd, 0x26, 0x92, 0x88, 0xa4, 0xa7, 0x22, - 0xa9, 0xa8, 0xc7, 0x82, 0xbd, 0xa3, 0x66, 0xdb, 0xf7, 0x2c, 0xa7, 0xe9, 0x13, 0x48, 0x04, 0xd2, - 0x93, 0x81, 0x74, 0x68, 0x7d, 0x1c, 0x55, 0xf9, 0xb6, 0x77, 0xc2, 0x6e, 0x11, 0xb1, 0x34, 0x07, - 0x9a, 0x64, 0xf9, 0xbe, 0xe7, 0xec, 0x1e, 0xfb, 0x36, 0xc3, 0x11, 0x21, 0xf4, 0x64, 0x08, 0x1d, - 0xfb, 0x8e, 0xeb, 0xfc, 0xcf, 0x6e, 0x30, 0x10, 0x11, 0x45, 0xcf, 0x47, 0x91, 0xfd, 0xd1, 0xb7, - 0x9b, 0x0d, 0xbb, 0x11, 0x58, 0x8d, 0x43, 0xa7, 0x19, 0x1c, 0x78, 0x47, 0xc7, 0x2d, 0xe2, 0x88, - 0x38, 0x7a, 0x2a, 0x8e, 0xac, 0xc6, 0xfb, 0xc0, 0xb5, 0x9a, 0x6c, 0x5e, 0x13, 0x3e, 0xcf, 0x4a, - 0x66, 0xcd, 0xa2, 0x38, 0xb3, 0x1b, 0x81, 0xdb, 0x66, 0x0c, 0x22, 0x88, 0x9e, 0x0c, 0x22, 0xa7, - 0x75, 0x52, 0x67, 0xcf, 0x88, 0x48, 0x7a, 0x39, 0x92, 0x7c, 0x3b, 0x68, 0xd8, 0xfb, 0xd6, 0xb1, - 0xeb, 0x07, 0x87, 0xb6, 0xef, 0x39, 0x7b, 0x04, 0x11, 0x41, 0xf4, 0x54, 0x10, 0x8d, 0xf8, 0xf4, - 0xa1, 0xf5, 0x91, 0x1b, 0x6a, 0x44, 0xd1, 0x0b, 0x50, 0x94, 0xa3, 0xc7, 0x3d, 0x62, 0x1e, 0x23, - 0x78, 0x9e, 0x11, 0x82, 0xa6, 0xe1, 0x87, 0x3d, 0x22, 0xa2, 0xe8, 0x05, 0xc5, 0xd9, 0x78, 0xdb, - 0x83, 0xbd, 0x46, 0xe2, 0xe8, 0x85, 0xf5, 0xd9, 0x66, 0xd0, 0xb4, 0x9d, 0x83, 0x77, 0xbb, 0x47, - 0x1e, 0xcb, 0x33, 0x02, 0xe9, 0x45, 0x9c, 0x88, 0x8d, 0x46, 0x42, 0xe7, 0x59, 0x31, 0xa8, 0xce, - 0x18, 0x44, 0x20, 0xbd, 0x18, 0x48, 0xd8, 0xfb, 0x65, 0x50, 0x16, 0x9f, 0xfe, 0x46, 0xb7, 0x5c, - 0x72, 0x77, 0xd4, 0x53, 0xbd, 0x47, 0xb8, 0x94, 0x0d, 0x17, 0x64, 0x95, 0x1e, 0xd1, 0x52, 0x7e, - 0x8e, 0x07, 0x53, 0xe3, 0x11, 0x22, 0x95, 0x94, 0xa2, 0xb0, 0xaa, 0x3b, 0xe2, 0xa5, 0x12, 0xbc, - 0x80, 0x6d, 0x06, 0x12, 0x25, 0xd5, 0xa1, 0x04, 0x51, 0x45, 0x47, 0xbc, 0x94, 0x8d, 0x17, 0x74, - 0xb5, 0x1c, 0x11, 0x53, 0x36, 0x62, 0xc0, 0x55, 0x71, 0x04, 0x4c, 0xd9, 0x80, 0xc1, 0x57, 0xbf, - 0x11, 0x33, 0x95, 0xd0, 0x18, 0x44, 0x95, 0x1b, 0xa1, 0x52, 0x36, 0x54, 0x90, 0xd5, 0x6c, 0x44, - 0x4b, 0xd9, 0x68, 0xc1, 0x56, 0xad, 0x11, 0x2f, 0x65, 0xe3, 0x05, 0x52, 0x9d, 0x46, 0x98, 0x94, - 0x9e, 0x84, 0x70, 0x55, 0x68, 0x04, 0x4b, 0x05, 0x3d, 0x97, 0x3a, 0x7b, 0x2e, 0x44, 0xcc, 0xaf, - 0x23, 0x06, 0x58, 0x55, 0x46, 0xb0, 0x94, 0xde, 0x6f, 0x01, 0x56, 0x8f, 0x11, 0x2d, 0x95, 0x74, - 0x5a, 0xb0, 0x54, 0x62, 0x04, 0x49, 0xe9, 0x21, 0x05, 0x58, 0x0d, 0x46, 0xb4, 0x94, 0x5f, 0x0c, - 0x21, 0xab, 0xbe, 0x88, 0x97, 0x0a, 0xea, 0x21, 0x64, 0x75, 0x17, 0x01, 0x53, 0x09, 0x67, 0x61, - 0x43, 0x8e, 0x10, 0xd1, 0x56, 0xad, 0x45, 0xc0, 0x94, 0x0d, 0x18, 0xee, 0x07, 0x11, 0x26, 0x8f, - 0xc0, 0xc4, 0x3b, 0x3a, 0xf6, 0x6d, 0x2f, 0xd8, 0xb3, 0x5a, 0xbc, 0x3b, 0x8e, 0xf8, 0x99, 0x2b, - 0x8e, 0xee, 0xfe, 0x89, 0x3a, 0x62, 0x42, 0xe8, 0x59, 0x10, 0xb2, 0xdc, 0x83, 0x23, 0xcf, 0xf1, - 0xdf, 0x1d, 0x52, 0x4a, 0xbc, 0xd8, 0x17, 0xa5, 0xc4, 0x24, 0x05, 0xda, 0x05, 0x73, 0x42, 0x85, - 0x41, 0x9b, 0x48, 0x11, 0x52, 0x90, 0xb6, 0x78, 0x47, 0x35, 0xd1, 0x33, 0x6f, 0x14, 0xb5, 0x3c, - 0x7b, 0xdf, 0xf9, 0x18, 0xec, 0xbb, 0xd6, 0x01, 0x0f, 0x2b, 0x22, 0x7e, 0x9e, 0x8b, 0x1f, 0x5e, - 0xce, 0x40, 0xf4, 0x3c, 0x03, 0x3d, 0xf9, 0xce, 0xde, 0x84, 0x02, 0x11, 0x41, 0x44, 0xd0, 0xd3, - 0x11, 0xe4, 0x5b, 0x07, 0x9b, 0x75, 0x02, 0x87, 0xc0, 0x79, 0x46, 0xe8, 0xa9, 0x33, 0xf4, 0x10, - 0x41, 0x2f, 0x0a, 0x3d, 0x6c, 0xaa, 0x2e, 0xf6, 0xc5, 0xa6, 0x2a, 0xfb, 0x1f, 0x7a, 0x55, 0xae, - 0xc4, 0x09, 0x2b, 0x54, 0xa2, 0x84, 0x95, 0x28, 0x91, 0xc2, 0x8a, 0x93, 0x00, 0xd1, 0x35, 0x94, - 0xd4, 0x19, 0x4a, 0x88, 0x14, 0xcd, 0x2a, 0x48, 0x8c, 0xca, 0x51, 0x7e, 0xc5, 0x28, 0x7b, 0x1d, - 0xe5, 0x5a, 0x27, 0xd3, 0x32, 0xa1, 0x41, 0xd3, 0xb0, 0xe2, 0xb8, 0x9f, 0x85, 0x59, 0xd4, 0x8f, - 0x8d, 0x1d, 0xc1, 0xe1, 0xd2, 0x48, 0x3b, 0x9f, 0xd5, 0x65, 0x38, 0x08, 0xb3, 0xcf, 0xa3, 0x00, - 0x59, 0xeb, 0x0f, 0x54, 0xdc, 0xe9, 0xc7, 0xe7, 0xd1, 0x85, 0x19, 0xab, 0xec, 0x6b, 0x3f, 0xf9, - 0x62, 0x46, 0x71, 0x9a, 0x85, 0x71, 0x47, 0xd5, 0xee, 0xbf, 0x91, 0x3e, 0x78, 0xa7, 0x36, 0x48, - 0xfa, 0x59, 0xbf, 0xd3, 0xef, 0xa5, 0xc5, 0x77, 0xb5, 0x28, 0x8d, 0xd2, 0x5a, 0x4f, 0x5d, 0xa9, - 0xde, 0xe4, 0x4b, 0xad, 0x17, 0xc5, 0x5f, 0xcc, 0x34, 0x0b, 0x33, 0x65, 0x76, 0xc3, 0x2c, 0x3c, - 0x0b, 0x53, 0x55, 0xeb, 0xa5, 0x83, 0x5a, 0xd6, 0xbb, 0x4a, 0x47, 0xff, 0xa9, 0x5d, 0x66, 0x66, - 0x34, 0xb8, 0xda, 0x34, 0x13, 0x15, 0x76, 0x3e, 0x87, 0x67, 0x51, 0x2f, 0xca, 0xae, 0x6b, 0x83, - 0x44, 0x9d, 0x47, 0xdf, 0x54, 0x3a, 0xf9, 0xa6, 0x96, 0x0e, 0xcf, 0xf2, 0x5f, 0x18, 0x7f, 0xad, - 0x9d, 0xf7, 0xc2, 0x8b, 0xb4, 0x96, 0xff, 0xad, 0x32, 0x43, 0xba, 0x3c, 0xf7, 0x91, 0x65, 0x91, - 0x30, 0x47, 0x96, 0xee, 0xc0, 0x7a, 0x39, 0xae, 0xc0, 0xf9, 0x29, 0x23, 0xcd, 0x92, 0x61, 0x27, - 0x8b, 0x27, 0xd4, 0xb1, 0x39, 0x5e, 0x31, 0x67, 0xb2, 0x60, 0x41, 0x6b, 0xb2, 0x4c, 0x81, 0x93, - 0x46, 0x69, 0xe0, 0x8e, 0xd6, 0x27, 0x70, 0xd3, 0x41, 0xe0, 0xf7, 0xae, 0x82, 0xc3, 0xcc, 0x19, - 0x5c, 0x6d, 0x7a, 0x77, 0x16, 0x21, 0x68, 0xe5, 0xcf, 0x1e, 0xb4, 0xf3, 0x67, 0x0e, 0xf6, 0xf3, - 0x67, 0xfe, 0x8d, 0xc1, 0x40, 0x78, 0x20, 0x30, 0xa2, 0xc1, 0x55, 0xdd, 0x4c, 0xfb, 0xc3, 0xa4, - 0xa3, 0xcc, 0xa4, 0x3f, 0xcc, 0x54, 0x62, 0x46, 0x5d, 0x71, 0xf1, 0xa0, 0xa8, 0x6f, 0x1e, 0x37, - 0x57, 0x58, 0x60, 0xfd, 0x10, 0xc5, 0xa3, 0x25, 0x5c, 0x13, 0x66, 0xd6, 0x5e, 0x1e, 0x3c, 0x8d, - 0x9d, 0x95, 0x55, 0x61, 0x86, 0x8d, 0x43, 0x87, 0xcc, 0x24, 0x34, 0x05, 0x5e, 0xbf, 0x63, 0x8e, - 0xd2, 0x85, 0xc4, 0x30, 0xde, 0xce, 0xdd, 0x41, 0x2c, 0x09, 0x37, 0x3e, 0xa8, 0xeb, 0xaf, 0xfd, - 0x64, 0xe4, 0x11, 0xc6, 0x38, 0x41, 0x0a, 0x9d, 0x25, 0x36, 0xde, 0x85, 0xa9, 0x95, 0x5c, 0x0c, - 0x2f, 0x55, 0x9c, 0x19, 0x3b, 0x2b, 0x59, 0x32, 0x54, 0x52, 0x4b, 0xaf, 0x5b, 0x2b, 0x0b, 0x60, - 0x92, 0x7c, 0x43, 0x91, 0xef, 0x46, 0x94, 0x08, 0x65, 0xdd, 0x79, 0x81, 0x29, 0x36, 0x98, 0x4c, - 0xe3, 0xf1, 0xd8, 0x4c, 0xa1, 0xfe, 0x29, 0x93, 0x00, 0x88, 0x27, 0x02, 0x08, 0x84, 0x00, 0x88, - 0x18, 0xa0, 0x10, 0x04, 0x38, 0xa2, 0x00, 0x47, 0x18, 0xb0, 0x88, 0x83, 0x4c, 0x02, 0x21, 0x94, - 0x48, 0x88, 0x27, 0x14, 0x85, 0x81, 0x72, 0xbb, 0x0b, 0x33, 0x63, 0xbb, 0xd4, 0x0e, 0xc3, 0x2c, - 0xc2, 0xb1, 0x2a, 0xdc, 0x4c, 0xe9, 0xc4, 0x03, 0x89, 0x80, 0x00, 0x12, 0x11, 0x34, 0x42, 0x02, - 0x4b, 0x4c, 0x60, 0x09, 0x0a, 0x26, 0x51, 0x91, 0x4d, 0x58, 0x84, 0x13, 0x97, 0xe2, 0x23, 0xf7, - 0xaf, 0x07, 0x0a, 0x2b, 0xe2, 0xe6, 0x9b, 0x11, 0x61, 0xb7, 0x9b, 0xa8, 0x14, 0x22, 0xec, 0x4e, - 0xdb, 0x12, 0x7f, 0x00, 0xd8, 0xda, 0x0a, 0xb3, 0x4c, 0x25, 0x31, 0xcc, 0x01, 0x0e, 0xc6, 0xdf, - 0xaf, 0x5e, 0x7d, 0x5a, 0x35, 0xb7, 0x4f, 0xbf, 0x7f, 0x5a, 0x33, 0xb7, 0x4f, 0xc7, 0xdf, 0xae, - 0xe5, 0x5f, 0xc6, 0xdf, 0xaf, 0x7f, 0x5a, 0x35, 0xeb, 0xd3, 0xef, 0x37, 0x3e, 0xad, 0x9a, 0x1b, - 0xa7, 0xaf, 0xff, 0xfa, 0xeb, 0xcd, 0xeb, 0x7f, 0xde, 0xde, 0x3c, 0xfd, 0x17, 0xff, 0x23, 0x3f, - 0x18, 0x9e, 0x72, 0x08, 0x4d, 0xb7, 0x30, 0x6d, 0x64, 0x08, 0x21, 0xba, 0x08, 0xcf, 0xb9, 0xb5, - 0x2c, 0xdc, 0x58, 0xb8, 0xb1, 0x70, 0x63, 0xe1, 0xc6, 0xc2, 0x8d, 0x85, 0x1b, 0x0b, 0x37, 0x16, - 0x6e, 0xe3, 0xc2, 0xad, 0xab, 0xe2, 0x2c, 0xca, 0xae, 0x13, 0x75, 0x8e, 0x54, 0xb7, 0x6d, 0x00, - 0xd8, 0xea, 0x4c, 0x96, 0x76, 0x37, 0x4c, 0x81, 0xf2, 0xc4, 0xed, 0x91, 0xfc, 0x4e, 0x7b, 0x72, - 0xec, 0x21, 0xd2, 0xa9, 0x87, 0x88, 0xa7, 0x1d, 0x6a, 0x72, 0x69, 0x03, 0xcf, 0xc8, 0x24, 0x7a, - 0x5e, 0x8e, 0x22, 0xeb, 0xc4, 0x72, 0x5c, 0x6b, 0xd7, 0xb5, 0x11, 0xaf, 0x2b, 0x03, 0xe1, 0x29, - 0x4b, 0x00, 0x23, 0xcf, 0x6e, 0x3b, 0x8d, 0x63, 0xcb, 0x25, 0x8a, 0x88, 0xa2, 0x17, 0x04, 0xa3, - 0xc6, 0x7b, 0x9e, 0xb6, 0x4a, 0xe8, 0x3c, 0x07, 0x3a, 0xf9, 0xb5, 0x78, 0x2d, 0xef, 0xc8, 0xb7, - 0xf7, 0x7c, 0xe7, 0xa8, 0x39, 0x66, 0x45, 0xc4, 0x11, 0x71, 0xf4, 0x1c, 0x1c, 0x81, 0x5d, 0x1c, - 0x4e, 0xf4, 0xc8, 0x43, 0x4f, 0x70, 0x62, 0x79, 0x8e, 0x35, 0x0a, 0x45, 0xc4, 0x11, 0x71, 0xf4, - 0x54, 0x1c, 0xe5, 0x27, 0xb6, 0x39, 0x4d, 0xdf, 0xf6, 0xf6, 0xad, 0x3d, 0x1b, 0xef, 0x0a, 0x4f, - 0x22, 0x49, 0x0a, 0x92, 0x8a, 0x7a, 0x2c, 0xd8, 0x3b, 0x6a, 0xb6, 0x7d, 0xcf, 0x72, 0x9a, 0x3e, - 0x81, 0x44, 0x20, 0x3d, 0x19, 0x48, 0x87, 0xd6, 0xc7, 0x60, 0x7c, 0xb5, 0x3d, 0xbb, 0x45, 0xc4, - 0xd2, 0x1c, 0x68, 0x92, 0xe5, 0xfb, 0x9e, 0xb3, 0x7b, 0xec, 0xdb, 0x0c, 0x47, 0x84, 0xd0, 0x93, - 0x21, 0x74, 0xec, 0x3b, 0xae, 0xf3, 0x3f, 0xbb, 0xc1, 0x40, 0x44, 0x14, 0x3d, 0x1f, 0x45, 0xf6, - 0x47, 0xdf, 0x6e, 0x36, 0xec, 0x06, 0xe6, 0x0d, 0xe8, 0xc4, 0x91, 0x14, 0x1c, 0x59, 0x8d, 0xf7, - 0x81, 0x6b, 0x35, 0xd9, 0xbc, 0x26, 0x7c, 0x9e, 0x95, 0xcc, 0x9a, 0x45, 0x71, 0x66, 0x37, 0x02, - 0xb7, 0xcd, 0x18, 0x44, 0x10, 0x3d, 0x19, 0x44, 0xf9, 0xd1, 0xdc, 0xec, 0x19, 0x11, 0x49, 0x2f, - 0x46, 0x92, 0x6f, 0x07, 0x0d, 0x7b, 0xdf, 0x3a, 0x76, 0xfd, 0xe0, 0xd0, 0xf6, 0x3d, 0x67, 0x8f, - 0x20, 0x22, 0x88, 0x9e, 0x0a, 0xa2, 0x11, 0x9f, 0x3e, 0xb4, 0x3e, 0x72, 0x43, 0x8d, 0x28, 0x7a, - 0x01, 0x8a, 0x72, 0xf4, 0xb8, 0x47, 0xcc, 0x63, 0x04, 0xcf, 0x33, 0x42, 0xd0, 0x34, 0xfc, 0xb0, - 0x47, 0x44, 0x14, 0xbd, 0xa0, 0x38, 0x1b, 0x6f, 0x7b, 0xb0, 0xd7, 0x48, 0x1c, 0xbd, 0xb0, 0x3e, - 0xdb, 0x0c, 0x9a, 0xb6, 0x73, 0xf0, 0x6e, 0xf7, 0xc8, 0x63, 0x79, 0x46, 0x20, 0xbd, 0x88, 0x13, - 0xb1, 0xd1, 0x48, 0xe8, 0x3c, 0x2b, 0x06, 0xd5, 0x19, 0x83, 0x08, 0xa4, 0x17, 0x03, 0x09, 0x7b, - 0xbf, 0x8c, 0xf7, 0x84, 0x2f, 0xbb, 0x5b, 0x6a, 0xa2, 0x01, 0x85, 0x56, 0xef, 0x11, 0x2e, 0x65, - 0xc3, 0x05, 0x59, 0xa5, 0x47, 0xb4, 0x94, 0x9f, 0xe3, 0xdf, 0xf3, 0x66, 0x79, 0x42, 0x44, 0x5f, - 0xd5, 0x1d, 0xf1, 0x52, 0x09, 0x5e, 0xc0, 0x36, 0x03, 0x89, 0x92, 0xea, 0x50, 0x82, 0xa8, 0xa2, - 0x23, 0x5e, 0xca, 0xc6, 0x0b, 0xba, 0x5a, 0x8e, 0x88, 0x29, 0x1b, 0x31, 0xe0, 0xaa, 0x38, 0x02, - 0xa6, 0x6c, 0xc0, 0xe0, 0xab, 0xdf, 0x88, 0x99, 0x4a, 0x68, 0x0c, 0xa2, 0xca, 0x8d, 0x50, 0x29, - 0x1b, 0x2a, 0xc8, 0x6a, 0x36, 0xa2, 0xa5, 0x6c, 0xb4, 0x60, 0xab, 0xd6, 0x88, 0x97, 0xb2, 0xf1, - 0x02, 0xa9, 0x4e, 0x23, 0x4c, 0x4a, 0x4f, 0x42, 0xb8, 0x2a, 0x34, 0x82, 0xa5, 0x82, 0x9e, 0x4b, - 0x9d, 0x3d, 0x17, 0x22, 0xe6, 0xd7, 0x11, 0x03, 0xac, 0x2a, 0x23, 0x58, 0x4a, 0xef, 0xb7, 0x00, - 0xab, 0xc7, 0x88, 0x96, 0x4a, 0x3a, 0x2d, 0x58, 0x2a, 0x31, 0x82, 0xa4, 0xf4, 0x90, 0x02, 0xac, - 0x06, 0x23, 0x5a, 0xca, 0x2f, 0x86, 0x90, 0x55, 0x5f, 0xc4, 0x4b, 0x05, 0xf5, 0x10, 0xb2, 0xba, - 0x8b, 0x80, 0xa9, 0x84, 0xb3, 0xb0, 0x21, 0x47, 0x88, 0x68, 0xab, 0xd6, 0x22, 0x60, 0xca, 0x06, - 0x0c, 0xf7, 0x83, 0x08, 0x93, 0x47, 0x60, 0xe2, 0x1d, 0x1d, 0xfb, 0xb6, 0x17, 0xec, 0x59, 0x2d, - 0xde, 0x1d, 0x47, 0xfc, 0xcc, 0x15, 0x47, 0x77, 0xff, 0x44, 0x1d, 0x31, 0x21, 0xf4, 0x2c, 0x08, - 0x59, 0xee, 0xc1, 0x91, 0xe7, 0xf8, 0xef, 0x0e, 0x29, 0x25, 0x5e, 0xec, 0x8b, 0x52, 0x62, 0x92, - 0x02, 0xed, 0x82, 0x39, 0xa1, 0xc2, 0xa0, 0x4d, 0xa4, 0x08, 0x29, 0x48, 0x5b, 0xbc, 0xa3, 0x9a, - 0xe8, 0x99, 0x37, 0x8a, 0x5a, 0x9e, 0xbd, 0xef, 0x7c, 0x0c, 0xf6, 0x5d, 0xeb, 0x80, 0x87, 0x15, - 0x11, 0x3f, 0xcf, 0xc5, 0x0f, 0x2f, 0x67, 0x20, 0x7a, 0x9e, 0x81, 0x9e, 0x7c, 0x67, 0x6f, 0x42, - 0x81, 0x88, 0x20, 0x22, 0xe8, 0xe9, 0x08, 0xf2, 0xad, 0x83, 0xcd, 0x3a, 0x81, 0x43, 0xe0, 0x3c, - 0x23, 0xf4, 0xd4, 0x19, 0x7a, 0x88, 0xa0, 0x17, 0x85, 0x1e, 0x36, 0x55, 0x17, 0xfb, 0x62, 0x53, - 0x95, 0xfd, 0x0f, 0xbd, 0x2a, 0x57, 0xe2, 0x84, 0x15, 0x2a, 0x51, 0xc2, 0x4a, 0x94, 0x48, 0x61, - 0xc5, 0x49, 0x80, 0xe8, 0x1a, 0x4a, 0xea, 0x0c, 0x25, 0x44, 0x8a, 0x66, 0x15, 0x24, 0x46, 0xe5, - 0x28, 0xbf, 0x62, 0x94, 0xbd, 0x8e, 0x72, 0xad, 0x93, 0x69, 0x99, 0xd0, 0xa0, 0x69, 0x58, 0x71, - 0xdc, 0xcf, 0xc2, 0x2c, 0xea, 0xc7, 0xc6, 0x8e, 0xe0, 0x70, 0x69, 0xa4, 0x9d, 0xcf, 0xea, 0x32, - 0x1c, 0x84, 0xd9, 0xe7, 0x51, 0x80, 0xac, 0xf5, 0x07, 0x2a, 0xee, 0xf4, 0xe3, 0xf3, 0xe8, 0xc2, - 0x8c, 0x55, 0xf6, 0xb5, 0x9f, 0x7c, 0x31, 0xa3, 0x38, 0xcd, 0xc2, 0xb8, 0xa3, 0x6a, 0xf7, 0xdf, - 0x48, 0x1f, 0xbc, 0x53, 0x1b, 0x24, 0xfd, 0xac, 0xdf, 0xe9, 0xf7, 0xd2, 0xe2, 0xbb, 0x5a, 0x94, - 0x46, 0x69, 0xad, 0xa7, 0xae, 0x54, 0x6f, 0xf2, 0xa5, 0xd6, 0x8b, 0xe2, 0x2f, 0x66, 0x9a, 0x85, - 0x99, 0x32, 0xbb, 0x61, 0x16, 0x9e, 0x85, 0xa9, 0xaa, 0xf5, 0xd2, 0x41, 0x2d, 0xeb, 0x5d, 0xa5, - 0xa3, 0xff, 0xd4, 0x2e, 0x33, 0x33, 0x1a, 0x5c, 0x6d, 0x9a, 0x89, 0x0a, 0x3b, 0x9f, 0xc3, 0xb3, - 0xa8, 0x17, 0x65, 0xd7, 0xb5, 0x41, 0xa2, 0xce, 0xa3, 0x6f, 0x2a, 0x9d, 0x7c, 0x53, 0x4b, 0x87, - 0x67, 0xf9, 0x2f, 0x8c, 0xbf, 0xd6, 0xa2, 0xc1, 0x55, 0xdd, 0x4c, 0xfb, 0xc3, 0xa4, 0xa3, 0xcc, - 0xa4, 0x3f, 0xcc, 0x54, 0x62, 0x46, 0xdd, 0x5a, 0xfe, 0xaf, 0xc8, 0x0c, 0xf1, 0xf2, 0xdc, 0x49, - 0x96, 0x45, 0xc2, 0x1c, 0x5b, 0xba, 0x43, 0xeb, 0xed, 0xc8, 0x02, 0xe7, 0xab, 0x8c, 0x34, 0x4b, - 0x86, 0x9d, 0x2c, 0x9e, 0x50, 0xcb, 0xe6, 0x78, 0x05, 0x9d, 0xc9, 0x02, 0x06, 0xad, 0xc9, 0xb2, - 0x05, 0x4e, 0x1a, 0xa5, 0x81, 0x3b, 0x5a, 0xaf, 0xc0, 0x4d, 0x07, 0x81, 0xdf, 0xbb, 0x0a, 0x0e, - 0x33, 0x67, 0x70, 0xb5, 0xe9, 0xdd, 0x59, 0x94, 0xa0, 0x95, 0xaf, 0x45, 0xd0, 0xce, 0xd7, 0x20, - 0x70, 0x06, 0x57, 0xf5, 0x76, 0xbe, 0x04, 0x5e, 0xbe, 0x02, 0x4e, 0x57, 0x56, 0x0c, 0x93, 0x13, - 0x29, 0x04, 0x45, 0x09, 0x23, 0x87, 0xfa, 0x03, 0xe4, 0x4a, 0x0b, 0x16, 0x45, 0x31, 0xf4, 0xb8, - 0xb9, 0xc2, 0xa2, 0xee, 0x87, 0x28, 0x1e, 0x2d, 0xe1, 0x9a, 0x30, 0xb3, 0xf6, 0xf2, 0xc8, 0x6a, - 0xec, 0xac, 0xac, 0x0a, 0x33, 0x6c, 0x1c, 0x47, 0x64, 0x66, 0xa8, 0x29, 0xf0, 0xfa, 0x1d, 0x73, - 0x94, 0x4b, 0x24, 0xc6, 0xf4, 0x71, 0xd0, 0x15, 0xcb, 0xd8, 0x8d, 0x0f, 0xea, 0xfa, 0x6b, 0x3f, - 0x19, 0x79, 0x84, 0x31, 0xce, 0x9e, 0x42, 0x07, 0x8f, 0x8d, 0x77, 0x61, 0x6a, 0x25, 0x17, 0xc3, - 0x4b, 0x15, 0x67, 0xc6, 0xce, 0x4a, 0x96, 0x0c, 0x95, 0xd4, 0x3a, 0xed, 0xd6, 0xca, 0x02, 0x98, - 0x64, 0xe6, 0x50, 0xcc, 0xbc, 0x11, 0x25, 0x42, 0x29, 0x79, 0x5e, 0x7d, 0x8a, 0x0d, 0x26, 0xd3, - 0x78, 0x3c, 0x36, 0x53, 0xa8, 0x7f, 0xca, 0x24, 0x00, 0xe2, 0x89, 0x00, 0x02, 0x21, 0x00, 0x22, - 0x06, 0x28, 0x04, 0x01, 0x8e, 0x28, 0xc0, 0x11, 0x06, 0x2c, 0xe2, 0x20, 0x93, 0x40, 0x08, 0x25, - 0x12, 0xe2, 0x09, 0x45, 0x61, 0xa0, 0xdc, 0xee, 0xc2, 0xcc, 0xd8, 0x2e, 0xb9, 0x95, 0xf7, 0x18, - 0xe1, 0x58, 0x15, 0x6e, 0xa6, 0x74, 0xe2, 0x81, 0x44, 0x40, 0x00, 0x89, 0x08, 0x1a, 0x21, 0x81, - 0x25, 0x26, 0xb0, 0x04, 0x05, 0x93, 0xa8, 0xc8, 0x26, 0x2c, 0xc2, 0x89, 0x4b, 0xf1, 0x91, 0xfb, - 0xd7, 0x03, 0x85, 0x15, 0x71, 0xf3, 0xcd, 0x88, 0xb0, 0xdb, 0x4d, 0x54, 0x0a, 0x11, 0x76, 0xa7, - 0x6d, 0x89, 0x3f, 0x00, 0x6c, 0x6d, 0x85, 0x59, 0xa6, 0x92, 0x18, 0xe6, 0xb4, 0x07, 0xe3, 0xef, - 0x57, 0xaf, 0x3e, 0xad, 0x9a, 0xdb, 0xa1, 0x79, 0x6e, 0x99, 0xfb, 0xa7, 0xff, 0xac, 0xfd, 0x5e, - 0xbf, 0xd9, 0x79, 0xfd, 0xcf, 0xd6, 0xcd, 0xfd, 0x37, 0xbf, 0x3f, 0xf6, 0x63, 0x6b, 0xbf, 0x6f, - 0xdd, 0xec, 0xcc, 0xf8, 0x3f, 0x9b, 0x37, 0x3b, 0xbf, 0xf8, 0x77, 0x6c, 0xdc, 0xbc, 0x7a, 0xf0, - 0xa3, 0xa3, 0xf7, 0xd7, 0x67, 0xfd, 0x42, 0x7d, 0xc6, 0x2f, 0xbc, 0x9d, 0xf5, 0x0b, 0x6f, 0x67, - 0xfc, 0xc2, 0x4c, 0x93, 0xd6, 0x67, 0xfc, 0xc2, 0xc6, 0xcd, 0xf7, 0x07, 0x3f, 0xff, 0xea, 0xf1, - 0x1f, 0xdd, 0xbc, 0x79, 0xfd, 0x7d, 0xd6, 0xff, 0xdb, 0xba, 0xf9, 0xbe, 0xf3, 0xfa, 0xf5, 0x7f, - 0xe4, 0xa7, 0x86, 0x53, 0xce, 0xef, 0xe9, 0x96, 0xb4, 0x8c, 0x0c, 0x21, 0x61, 0x15, 0xc9, 0x2a, - 0xb7, 0x96, 0x65, 0x2c, 0xcb, 0x58, 0x96, 0xb1, 0x2c, 0x63, 0x59, 0xc6, 0xb2, 0x8c, 0x65, 0x19, - 0xcb, 0x32, 0x76, 0x5c, 0xc6, 0x76, 0x55, 0x9c, 0x45, 0xd9, 0x75, 0xa2, 0xce, 0x91, 0xaa, 0xd8, - 0x0d, 0x00, 0x5b, 0x9d, 0xc9, 0xd2, 0xee, 0x86, 0x29, 0x50, 0x9e, 0xb8, 0xbd, 0xcd, 0xc0, 0x69, - 0x4f, 0x4e, 0x8c, 0x44, 0x3a, 0x30, 0x12, 0xf1, 0xa0, 0x48, 0x4d, 0xee, 0xbb, 0xe0, 0xf1, 0xa2, - 0x44, 0xcf, 0xcb, 0x51, 0x64, 0x9d, 0x58, 0x8e, 0x6b, 0xed, 0xba, 0x36, 0xe2, 0x4d, 0x6f, 0x20, - 0x3c, 0x65, 0x09, 0x60, 0xe4, 0xd9, 0x6d, 0xa7, 0x71, 0x6c, 0xb9, 0x44, 0x11, 0x51, 0xf4, 0x82, - 0x60, 0xd4, 0x78, 0xcf, 0x83, 0x6a, 0x09, 0x9d, 0xe7, 0x40, 0x27, 0xbf, 0x51, 0xb0, 0xe5, 0x1d, - 0xf9, 0xf6, 0x9e, 0xef, 0x1c, 0x35, 0xc7, 0xac, 0x88, 0x38, 0x22, 0x8e, 0x9e, 0x83, 0x23, 0xb0, - 0x3b, 0xd7, 0x89, 0x1e, 0x79, 0xe8, 0x09, 0x4e, 0x2c, 0xcf, 0xb1, 0x46, 0xa1, 0x88, 0x38, 0x22, - 0x8e, 0x9e, 0x8a, 0xa3, 0xfc, 0xb0, 0x3b, 0xa7, 0xe9, 0xdb, 0xde, 0xbe, 0xb5, 0x67, 0xe3, 0xdd, - 0x7e, 0x4a, 0x24, 0x49, 0x41, 0x52, 0x51, 0x8f, 0x05, 0x7b, 0x47, 0xcd, 0xb6, 0xef, 0x59, 0x4e, - 0xd3, 0x27, 0x90, 0x08, 0xa4, 0x27, 0x03, 0xe9, 0xd0, 0xfa, 0x38, 0xaa, 0xf2, 0x6d, 0xef, 0x84, - 0xdd, 0x22, 0x62, 0x69, 0x0e, 0x34, 0xc9, 0xf2, 0x7d, 0xcf, 0xd9, 0x3d, 0xf6, 0x6d, 0x86, 0x23, - 0x42, 0xe8, 0xc9, 0x10, 0x3a, 0xf6, 0x1d, 0xd7, 0xf9, 0x9f, 0xdd, 0x60, 0x20, 0x22, 0x8a, 0x9e, - 0x8f, 0x22, 0xfb, 0xa3, 0x6f, 0x37, 0x1b, 0x76, 0x03, 0xf3, 0xf2, 0x78, 0xe2, 0x48, 0x0a, 0x8e, - 0xac, 0xc6, 0xfb, 0xc0, 0xb5, 0x9a, 0x6c, 0x5e, 0x13, 0x3e, 0xcf, 0x4a, 0x66, 0xcd, 0xa2, 0x38, - 0xb3, 0x1b, 0x81, 0xdb, 0x66, 0x0c, 0x22, 0x88, 0x9e, 0x0c, 0xa2, 0xfc, 0x54, 0x73, 0xf6, 0x8c, - 0x88, 0xa4, 0x17, 0x23, 0xc9, 0xb7, 0x83, 0x86, 0xbd, 0x6f, 0x1d, 0xbb, 0x7e, 0x70, 0x68, 0xfb, - 0x9e, 0xb3, 0x47, 0x10, 0x11, 0x44, 0x4f, 0x05, 0xd1, 0x88, 0x4f, 0x1f, 0x5a, 0x1f, 0xb9, 0xa1, - 0x46, 0x14, 0xbd, 0x00, 0x45, 0x39, 0x7a, 0xdc, 0x23, 0xe6, 0x31, 0x82, 0xe7, 0x19, 0x21, 0x68, - 0x1a, 0x7e, 0xd8, 0x23, 0x22, 0x8a, 0x5e, 0x50, 0x9c, 0x8d, 0xb7, 0x3d, 0xd8, 0x6b, 0x24, 0x8e, - 0x5e, 0x58, 0x9f, 0x6d, 0x06, 0x4d, 0xdb, 0x39, 0x78, 0xb7, 0x7b, 0xe4, 0xb1, 0x3c, 0x23, 0x90, - 0x5e, 0xc4, 0x89, 0xd8, 0x68, 0x24, 0x74, 0x9e, 0x15, 0x83, 0xea, 0x8c, 0x41, 0x04, 0xd2, 0x8b, - 0x81, 0x84, 0xbd, 0x5f, 0xc6, 0x2b, 0xd6, 0x97, 0xdd, 0x2d, 0x35, 0xd1, 0x80, 0x42, 0xab, 0xf7, - 0x08, 0x97, 0xb2, 0xe1, 0x82, 0xac, 0xd2, 0x23, 0x5a, 0xca, 0xcf, 0xf1, 0xef, 0x79, 0x29, 0x3f, - 0x21, 0xa2, 0xaf, 0xea, 0x8e, 0x78, 0xa9, 0x04, 0x2f, 0x60, 0x9b, 0x81, 0x44, 0x49, 0x75, 0x28, - 0x41, 0x54, 0xd1, 0x11, 0x2f, 0x65, 0xe3, 0x05, 0x5d, 0x2d, 0x47, 0xc4, 0x94, 0x8d, 0x18, 0x70, - 0x55, 0x1c, 0x01, 0x53, 0x36, 0x60, 0xf0, 0xd5, 0x6f, 0xc4, 0x4c, 0x25, 0x34, 0x06, 0x51, 0xe5, - 0x46, 0xa8, 0x94, 0x0d, 0x15, 0x64, 0x35, 0x1b, 0xd1, 0x52, 0x36, 0x5a, 0xb0, 0x55, 0x6b, 0xc4, - 0x4b, 0xd9, 0x78, 0x81, 0x54, 0xa7, 0x11, 0x26, 0xa5, 0x27, 0x21, 0x5c, 0x15, 0x1a, 0xc1, 0x52, - 0x41, 0xcf, 0xa5, 0xce, 0x9e, 0x0b, 0x11, 0xf3, 0xeb, 0x88, 0x01, 0x56, 0x95, 0x11, 0x2c, 0xa5, - 0xf7, 0x5b, 0x80, 0xd5, 0x63, 0x44, 0x4b, 0x25, 0x9d, 0x16, 0x2c, 0x95, 0x18, 0x41, 0x52, 0x7a, - 0x48, 0x01, 0x56, 0x83, 0x11, 0x2d, 0xe5, 0x17, 0x43, 0xc8, 0xaa, 0x2f, 0xe2, 0xa5, 0x82, 0x7a, - 0x08, 0x59, 0xdd, 0x45, 0xc0, 0x54, 0xc2, 0x59, 0xd8, 0x90, 0x23, 0x44, 0xb4, 0x55, 0x6b, 0x11, - 0x30, 0x65, 0x03, 0x86, 0xfb, 0x41, 0x84, 0xc9, 0x23, 0x30, 0xf1, 0x8e, 0x8e, 0x7d, 0xdb, 0x0b, - 0xf6, 0xac, 0x16, 0xef, 0x8e, 0x23, 0x7e, 0xe6, 0x8a, 0xa3, 0xbb, 0x7f, 0xa2, 0x8e, 0x98, 0x10, - 0x7a, 0x16, 0x84, 0x2c, 0xf7, 0xe0, 0xc8, 0x73, 0xfc, 0x77, 0x87, 0x94, 0x12, 0x2f, 0xf6, 0x45, - 0x29, 0x31, 0x49, 0x81, 0x76, 0xc1, 0x9c, 0x50, 0x61, 0xd0, 0x26, 0x52, 0x84, 0x14, 0xa4, 0x2d, - 0xde, 0x51, 0x4d, 0xf4, 0xcc, 0x1b, 0x45, 0x2d, 0xcf, 0xde, 0x77, 0x3e, 0x06, 0xfb, 0xae, 0x75, - 0xc0, 0xc3, 0x8a, 0x88, 0x9f, 0xe7, 0xe2, 0x87, 0x97, 0x33, 0x10, 0x3d, 0xcf, 0x40, 0x4f, 0xbe, - 0xb3, 0x37, 0xa1, 0x40, 0x44, 0x10, 0x11, 0xf4, 0x74, 0x04, 0xf9, 0xd6, 0xc1, 0x66, 0x9d, 0xc0, - 0x21, 0x70, 0x9e, 0x11, 0x7a, 0xea, 0x0c, 0x3d, 0x44, 0xd0, 0x8b, 0x42, 0x0f, 0x9b, 0xaa, 0x8b, - 0x7d, 0xb1, 0xa9, 0xca, 0xfe, 0x87, 0x5e, 0x95, 0x2b, 0x71, 0xc2, 0x0a, 0x95, 0x28, 0x61, 0x25, - 0x4a, 0xa4, 0xb0, 0xe2, 0x24, 0x40, 0x74, 0x0d, 0x25, 0x75, 0x86, 0x12, 0x22, 0x45, 0xb3, 0x0a, - 0x12, 0xa3, 0x72, 0x94, 0x5f, 0x31, 0xca, 0x5e, 0x47, 0xb9, 0xd6, 0xc9, 0xb4, 0x4c, 0x68, 0xd0, - 0x34, 0xac, 0x38, 0xee, 0x67, 0x61, 0x16, 0xf5, 0x63, 0x63, 0x47, 0x70, 0xb8, 0x34, 0xd2, 0xce, - 0x67, 0x75, 0x19, 0x0e, 0xc2, 0xec, 0xf3, 0x28, 0x40, 0xd6, 0xfa, 0x03, 0x15, 0x77, 0xfa, 0xf1, - 0x79, 0x74, 0x61, 0xc6, 0xff, 0x9f, 0xbd, 0xb3, 0x6b, 0x6a, 0x1b, 0x5b, 0xd6, 0xff, 0xfd, 0x7c, - 0x0a, 0x4a, 0x75, 0x2e, 0xf6, 0xae, 0x1a, 0xc7, 0x40, 0x0c, 0x0c, 0xdc, 0x09, 0x2c, 0x88, 0x26, - 0xb6, 0x71, 0xd9, 0x82, 0x9d, 0xec, 0xd9, 0x39, 0x2a, 0x61, 0x2f, 0x88, 0xce, 0x18, 0xd9, 0x25, - 0xc9, 0x24, 0xfc, 0xf7, 0xe4, 0xbb, 0xff, 0xcb, 0x6f, 0x82, 0xc4, 0x30, 0x79, 0xb3, 0xa4, 0x7e, - 0x5a, 0x8f, 0x2f, 0x26, 0x19, 0x66, 0x48, 0x7a, 0x89, 0x67, 0xf5, 0xfa, 0x75, 0xab, 0xbb, 0x97, - 0x49, 0x3f, 0x8c, 0xe3, 0x3f, 0x6b, 0x61, 0x94, 0xa4, 0x41, 0x34, 0x30, 0xf5, 0x2f, 0xbf, 0x90, - 0xac, 0x7d, 0xa5, 0x3e, 0x89, 0xc7, 0xe9, 0x78, 0x30, 0x1e, 0x25, 0xd9, 0xef, 0xea, 0x61, 0x12, - 0x26, 0xf5, 0x91, 0xb9, 0x33, 0xa3, 0xe5, 0x2f, 0xf5, 0x51, 0x18, 0xfd, 0x59, 0x4b, 0xd2, 0x20, - 0x35, 0xb5, 0x61, 0x90, 0x06, 0x57, 0x41, 0x62, 0xea, 0xa3, 0x64, 0x52, 0x4f, 0x47, 0x77, 0xc9, - 0xec, 0x1f, 0xf5, 0xdb, 0xb4, 0x16, 0x4e, 0xee, 0xf6, 0x6b, 0xb1, 0x09, 0x06, 0xef, 0x83, 0xab, - 0x70, 0x14, 0xa6, 0xf7, 0xf5, 0x49, 0x6c, 0xae, 0xc3, 0x8f, 0x26, 0x59, 0xfe, 0xa6, 0x9e, 0x4c, - 0xaf, 0xe6, 0xdf, 0xb0, 0xf8, 0xb5, 0x3e, 0xff, 0x86, 0x64, 0x3c, 0x8d, 0x07, 0xa6, 0x16, 0x8f, - 0xa7, 0xa9, 0x89, 0x6b, 0xe1, 0xb0, 0x3e, 0xff, 0x5b, 0x64, 0xba, 0x78, 0x79, 0xdb, 0x49, 0x96, - 0x45, 0xc2, 0x36, 0xb6, 0xf4, 0x0d, 0xad, 0x7b, 0x23, 0x0b, 0xac, 0xaf, 0xb2, 0x92, 0x34, 0x9e, - 0x0e, 0xd2, 0x68, 0x89, 0x96, 0x9d, 0xc5, 0x13, 0x74, 0x97, 0x0f, 0xd0, 0xef, 0x2e, 0x1f, 0x9b, - 0xef, 0x26, 0x61, 0xe2, 0xb7, 0x66, 0xcf, 0xcb, 0x6f, 0x25, 0x13, 0xdf, 0x1b, 0xdd, 0xf9, 0xed, - 0xd4, 0x9d, 0xdc, 0xed, 0xf7, 0x1e, 0x3d, 0x14, 0xbf, 0x3b, 0x7f, 0x16, 0x7e, 0x7f, 0xfe, 0x0c, - 0xfc, 0xd9, 0x7f, 0xee, 0xcf, 0x1f, 0x41, 0x6f, 0xfe, 0x04, 0xdc, 0xa1, 0x2c, 0x1f, 0x26, 0xc7, - 0x53, 0x08, 0xf2, 0x12, 0xd6, 0x42, 0xcf, 0xb5, 0x24, 0x1c, 0x26, 0xe2, 0x5c, 0x44, 0x16, 0x02, - 0x3d, 0x36, 0x52, 0x98, 0x87, 0x7d, 0x1d, 0x46, 0x43, 0xeb, 0x68, 0x6b, 0x47, 0x98, 0x59, 0x27, - 0x73, 0x2f, 0x6a, 0x1d, 0x6d, 0x6d, 0x0b, 0x33, 0x6c, 0xe1, 0x33, 0x64, 0x9e, 0x46, 0x2b, 0xb9, - 0x8d, 0x07, 0xb5, 0xd9, 0xb9, 0x21, 0xd1, 0x7f, 0x2f, 0x1c, 0xac, 0x58, 0x3a, 0xb7, 0x5e, 0x9b, - 0xfb, 0x0f, 0xe3, 0x78, 0xf8, 0xb0, 0x69, 0x85, 0x16, 0x19, 0x5b, 0xaf, 0x82, 0xc4, 0x8e, 0x6f, - 0xa6, 0xb7, 0x26, 0x4a, 0xad, 0xa3, 0xad, 0x34, 0x9e, 0x1a, 0xa9, 0x31, 0xd9, 0x83, 0x95, 0x99, - 0x30, 0x49, 0xe1, 0x50, 0x14, 0xde, 0x0c, 0x63, 0x99, 0x0e, 0xef, 0xe1, 0x5c, 0x95, 0xeb, 0x51, - 0xd6, 0x19, 0x40, 0xaa, 0x4b, 0x91, 0x89, 0x02, 0xe2, 0x91, 0x00, 0x01, 0x0d, 0x80, 0x10, 0x01, - 0x05, 0x15, 0xe0, 0x90, 0x01, 0x0e, 0x1d, 0xb0, 0x10, 0x42, 0x26, 0x4a, 0x08, 0x45, 0x0a, 0xf1, - 0x68, 0x91, 0x19, 0xb8, 0x48, 0x66, 0x8b, 0x77, 0x42, 0x2b, 0xbf, 0xbe, 0x30, 0x57, 0xf8, 0x7e, - 0x96, 0x0d, 0x1a, 0x30, 0xc0, 0x81, 0x04, 0x1e, 0x80, 0x00, 0x82, 0x06, 0x22, 0xb0, 0x40, 0x02, - 0x0b, 0x26, 0x98, 0x80, 0x22, 0x1b, 0x54, 0x84, 0x03, 0x0b, 0x0c, 0xb8, 0x64, 0x86, 0x06, 0xa3, - 0x9b, 0x71, 0x1c, 0xa6, 0xef, 0x6f, 0x71, 0x1c, 0xd8, 0xea, 0x8c, 0x78, 0x30, 0x1d, 0xc4, 0x0f, - 0x2c, 0xc1, 0x66, 0x1b, 0xc4, 0x5c, 0x14, 0xc0, 0x41, 0x04, 0x1d, 0x60, 0xe0, 0x41, 0x05, 0x1f, - 0x78, 0x00, 0x82, 0x07, 0x21, 0x6c, 0x20, 0xc2, 0x00, 0x23, 0x10, 0x40, 0xca, 0xa4, 0xe0, 0xdd, - 0x4f, 0x0c, 0xa6, 0xc7, 0x9e, 0x86, 0x51, 0xfa, 0x1b, 0x92, 0xbf, 0x5e, 0xe2, 0xc7, 0x1e, 0x90, - 0xc9, 0xbd, 0x20, 0xba, 0x31, 0x70, 0x23, 0xb1, 0xf0, 0x7a, 0xfa, 0xad, 0x76, 0x18, 0xc1, 0x1d, - 0xe4, 0xa0, 0x5c, 0xbd, 0x66, 0xfe, 0x7c, 0xf0, 0x1b, 0xb0, 0xfd, 0xa7, 0x71, 0x30, 0x48, 0xc3, - 0x71, 0xd4, 0x0c, 0x6f, 0xc2, 0x34, 0x99, 0x2d, 0x84, 0x83, 0x43, 0x8a, 0xd8, 0xb2, 0xc1, 0x47, - 0x6e, 0xd9, 0x92, 0xb7, 0xec, 0xee, 0xde, 0x1e, 0x37, 0x2d, 0x41, 0x5c, 0x97, 0xb5, 0x18, 0x03, - 0x66, 0xe4, 0x3f, 0x4f, 0x80, 0x43, 0xc5, 0xba, 0x1e, 0x05, 0x37, 0x09, 0x5e, 0xea, 0x77, 0x61, - 0x36, 0xd3, 0xbe, 0x79, 0x98, 0xcb, 0xb4, 0x6f, 0x81, 0x42, 0x66, 0xda, 0xb7, 0xb8, 0x6d, 0xc8, - 0xb4, 0x6f, 0xc9, 0x0b, 0x60, 0xda, 0x97, 0xcc, 0xb1, 0x94, 0x02, 0x6e, 0xda, 0xd7, 0x44, 0xd3, - 0x5b, 0x13, 0x2f, 0x9a, 0x8e, 0xf1, 0x92, 0xbf, 0x3b, 0x0d, 0x20, 0x9b, 0x9d, 0x68, 0x3a, 0x2f, - 0x4b, 0xe0, 0xd6, 0xdb, 0xe4, 0x53, 0x6d, 0x85, 0x49, 0x6a, 0xa7, 0x69, 0x8c, 0xb5, 0xfd, 0xda, - 0x61, 0xe4, 0x8c, 0xcc, 0xec, 0xf4, 0x98, 0x85, 0x2b, 0xd1, 0x74, 0x34, 0x02, 0x12, 0x72, 0x3b, - 0xf8, 0x88, 0x6b, 0xfc, 0x79, 0x3c, 0x34, 0xb1, 0x19, 0x1e, 0xdf, 0x2f, 0x4d, 0x67, 0x76, 0xa0, - 0x32, 0xd9, 0x81, 0xbb, 0x65, 0x9a, 0x13, 0x2c, 0x3b, 0xb0, 0x30, 0x9b, 0xd9, 0x01, 0x66, 0x07, - 0x98, 0x1d, 0x60, 0x76, 0x80, 0xd9, 0x01, 0x66, 0x07, 0xc8, 0x1b, 0xcc, 0x0e, 0x14, 0xe2, 0xb1, - 0xa7, 0x61, 0x94, 0xbe, 0xdc, 0x05, 0x4c, 0x0c, 0x1c, 0xb0, 0x2a, 0x2c, 0xe7, 0x0f, 0xab, 0xc2, - 0x08, 0xd6, 0xdf, 0x61, 0x3e, 0xab, 0xc2, 0x78, 0x5c, 0xfe, 0xc8, 0x96, 0x65, 0x55, 0x58, 0xe9, - 0x5b, 0xb6, 0xb1, 0x7b, 0xd8, 0x38, 0xdc, 0x3f, 0xd8, 0x3d, 0x64, 0x71, 0x18, 0x81, 0x5c, 0x99, - 0xb5, 0x2c, 0x0e, 0xab, 0x82, 0x85, 0xd2, 0xdb, 0xab, 0x41, 0x26, 0xb9, 0x67, 0xf6, 0x6a, 0x19, - 0x04, 0xfd, 0x68, 0x52, 0xed, 0xa3, 0xdf, 0x4b, 0x1e, 0xe9, 0x2e, 0x7f, 0xbf, 0x09, 0xde, 0x6b, - 0x20, 0x2f, 0x80, 0xa0, 0x5e, 0xfc, 0x80, 0x40, 0x2e, 0xc7, 0x1b, 0xe5, 0x29, 0x54, 0x8e, 0x37, - 0xca, 0x6f, 0x7b, 0x71, 0xbc, 0x51, 0xd1, 0x30, 0xc6, 0xf1, 0x46, 0x55, 0xe3, 0x6f, 0x98, 0x17, - 0x34, 0x99, 0xc7, 0x1d, 0x99, 0xe0, 0x3a, 0x36, 0xd7, 0x08, 0x1e, 0x77, 0x55, 0xaa, 0x09, 0xf0, - 0x4a, 0xc6, 0xea, 0x2e, 0x43, 0x9a, 0x17, 0x2f, 0x16, 0x41, 0x40, 0x7d, 0x81, 0x60, 0x0c, 0x05, - 0x14, 0x59, 0x26, 0x75, 0x38, 0xec, 0x6b, 0x73, 0x2f, 0x1d, 0xfa, 0x31, 0x8a, 0x6d, 0xa1, 0x8a, - 0x6b, 0xa1, 0x8a, 0x69, 0x31, 0x8a, 0x67, 0x79, 0x5f, 0xe3, 0xcf, 0xd9, 0xa9, 0x3b, 0xbb, 0x27, - 0xf9, 0x12, 0x80, 0x1c, 0xef, 0x7b, 0x5b, 0xfc, 0x5b, 0x3f, 0x1c, 0xf2, 0xaa, 0x4a, 0x44, 0x8b, - 0x78, 0x55, 0x65, 0xe5, 0x7d, 0x18, 0xef, 0x67, 0x14, 0xbf, 0x35, 0x84, 0xde, 0x9f, 0x20, 0xfa, - 0xbe, 0x04, 0xde, 0xc9, 0xf8, 0xbd, 0x39, 0x0a, 0xde, 0xc9, 0xf8, 0x33, 0x26, 0xf2, 0x4e, 0xc6, - 0x0d, 0x19, 0xca, 0x3b, 0x19, 0x89, 0x9b, 0x45, 0xfd, 0x08, 0xc5, 0xde, 0xc9, 0x98, 0x4a, 0x7e, - 0x73, 0x90, 0xb9, 0xe3, 0xb9, 0x95, 0xb2, 0xef, 0x61, 0xdc, 0xe6, 0x3d, 0x8c, 0xea, 0x70, 0x00, - 0x08, 0x0b, 0x50, 0xf0, 0x00, 0x0e, 0x13, 0xe0, 0x70, 0x01, 0x0b, 0x1b, 0x64, 0xe2, 0x83, 0x50, - 0x8c, 0xc8, 0x7e, 0xb4, 0xe2, 0xdf, 0xf7, 0x67, 0x1e, 0x33, 0x1c, 0x9a, 0x28, 0x0d, 0xd3, 0x7b, - 0xd9, 0xef, 0xfa, 0xb3, 0x18, 0x5e, 0x70, 0x87, 0x88, 0xe5, 0x2e, 0x1f, 0xe5, 0x71, 0x90, 0x00, - 0xd5, 0x80, 0xba, 0x7d, 0xb7, 0xef, 0xf7, 0x2f, 0x8e, 0xbd, 0xd6, 0xa5, 0xef, 0xbd, 0xed, 0x3a, - 0xd2, 0xdd, 0xfc, 0xbc, 0x69, 0x28, 0x81, 0xe8, 0x66, 0x05, 0x1b, 0x03, 0xe3, 0xf6, 0xfd, 0x9e, - 0x63, 0x9f, 0xbc, 0xb2, 0x8f, 0xdd, 0x96, 0xeb, 0xbd, 0x5d, 0x8a, 0xa2, 0x8f, 0xa0, 0x0a, 0x44, - 0x75, 0x60, 0xa9, 0xe4, 0xab, 0x6a, 0xb1, 0x2f, 0x6d, 0xb7, 0x65, 0x1f, 0xb7, 0x1c, 0xff, 0xd8, - 0xee, 0x34, 0xff, 0xe5, 0x36, 0xbd, 0x57, 0x40, 0xe3, 0x28, 0x7e, 0xa5, 0x5c, 0x8a, 0x95, 0x4b, - 0xcf, 0xe9, 0xbb, 0xcd, 0x0b, 0xbb, 0x45, 0xb5, 0x50, 0x2d, 0xdf, 0xe0, 0x5c, 0x9a, 0xbf, 0xfb, - 0x7d, 0xb7, 0x49, 0x89, 0x50, 0x22, 0xcf, 0x49, 0xa4, 0xe5, 0x76, 0x5e, 0xfb, 0xdd, 0xde, 0xb9, - 0xe7, 0x9c, 0x78, 0xee, 0x79, 0x67, 0x41, 0x2d, 0xd4, 0x0b, 0xf5, 0xf2, 0x77, 0x7a, 0x69, 0x3a, - 0x2d, 0xfb, 0x2d, 0x55, 0x42, 0x95, 0x7c, 0x5d, 0x25, 0xfe, 0xa5, 0xdd, 0x73, 0xed, 0x99, 0x6b, - 0xa1, 0x5e, 0xa8, 0x97, 0xe7, 0xf4, 0xe2, 0x76, 0x2f, 0xf7, 0x7d, 0xb7, 0xe3, 0x39, 0xbd, 0x53, - 0xfb, 0xc4, 0xf1, 0xed, 0x66, 0xb3, 0xe7, 0xf4, 0xfb, 0x54, 0x0c, 0x15, 0xf3, 0x9c, 0x62, 0xb2, - 0xf8, 0xc7, 0x3f, 0x39, 0xef, 0xf4, 0xbd, 0x9e, 0xed, 0x76, 0x3c, 0x0a, 0x86, 0x82, 0x79, 0x56, - 0x30, 0x6d, 0xfb, 0xcd, 0x2c, 0x7a, 0x76, 0x7a, 0x97, 0xcc, 0xb6, 0x50, 0x33, 0xdf, 0x81, 0x31, - 0xb6, 0xe7, 0xf5, 0xdc, 0xe3, 0x0b, 0xcf, 0xa1, 0x7b, 0xa1, 0x54, 0x9e, 0x95, 0xca, 0x85, 0xe7, - 0xb6, 0xdc, 0x7f, 0x3b, 0x4d, 0x3a, 0x16, 0xaa, 0xe5, 0xeb, 0x6a, 0x71, 0xde, 0x78, 0x4e, 0xa7, - 0xe9, 0x34, 0x7d, 0xbb, 0xd9, 0x76, 0x3b, 0xfe, 0x59, 0xef, 0xfc, 0xa2, 0x4b, 0xbd, 0x50, 0x2f, - 0x7f, 0x97, 0xc8, 0x6d, 0xd9, 0x1d, 0x26, 0x73, 0x29, 0x93, 0xbf, 0x3d, 0x84, 0x3a, 0x59, 0x30, - 0xe4, 0x34, 0xfd, 0x56, 0x9f, 0x3e, 0x85, 0x62, 0xf9, 0xbb, 0x9c, 0x4b, 0x83, 0x39, 0x17, 0x2a, - 0xe6, 0xdb, 0x15, 0xe3, 0x39, 0x7e, 0xd3, 0x39, 0xb5, 0x2f, 0x5a, 0x9e, 0xdf, 0x76, 0xbc, 0x9e, - 0x7b, 0x42, 0xb1, 0x50, 0x2c, 0xcf, 0xe6, 0x5b, 0xdc, 0xce, 0x3c, 0xe7, 0xc2, 0x17, 0x46, 0x54, - 0xcb, 0x37, 0x66, 0x5a, 0x5a, 0xe7, 0x3c, 0x7f, 0x28, 0x92, 0xbf, 0x4f, 0xe1, 0xce, 0x85, 0xc2, - 0x1c, 0x0b, 0xd5, 0xf2, 0x0d, 0xc1, 0xd0, 0x22, 0xdd, 0xcf, 0x9c, 0x1c, 0xf5, 0xf2, 0x8d, 0xf1, - 0xd0, 0xbe, 0xdf, 0x71, 0xdc, 0xb3, 0x57, 0xc7, 0xe7, 0x3d, 0x86, 0x43, 0x14, 0xcc, 0x37, 0x31, - 0x0b, 0x13, 0x72, 0x94, 0xc8, 0x57, 0x72, 0x2c, 0xf4, 0x29, 0x14, 0xcc, 0xb7, 0x0a, 0x06, 0xf3, - 0x7d, 0x10, 0x84, 0xa5, 0xef, 0x78, 0x57, 0x7b, 0x55, 0xb6, 0x99, 0xae, 0x6e, 0x2b, 0xca, 0x22, - 0x6f, 0x59, 0x20, 0x76, 0x55, 0x51, 0x15, 0xf9, 0x9f, 0xc5, 0x20, 0xdd, 0x53, 0x94, 0x42, 0x21, - 0xa1, 0x1e, 0x5c, 0x97, 0x14, 0x75, 0x51, 0x88, 0x2e, 0x40, 0x5e, 0x6e, 0x51, 0x0d, 0xc5, 0xa9, - 0x01, 0xa9, 0xeb, 0x89, 0xba, 0xc8, 0x5b, 0x17, 0xa8, 0xdd, 0x4d, 0x54, 0x46, 0xde, 0xca, 0x00, - 0xed, 0x62, 0xa2, 0x30, 0xf2, 0x16, 0x06, 0x6e, 0xb7, 0x12, 0xb5, 0x51, 0x08, 0x66, 0x20, 0x75, - 0x25, 0x51, 0x12, 0x79, 0x4b, 0x02, 0xb1, 0xfb, 0x88, 0xaa, 0xc8, 0x5b, 0x15, 0x98, 0x5d, 0x46, - 0xd4, 0x45, 0xde, 0xba, 0x80, 0xea, 0x26, 0xa2, 0x1c, 0x72, 0x3f, 0x3c, 0xf0, 0xba, 0x86, 0x28, - 0x8a, 0x02, 0x72, 0x16, 0x0d, 0xe6, 0x2c, 0xa8, 0x0c, 0x15, 0x5d, 0x40, 0x14, 0x45, 0xee, 0xf9, - 0x0a, 0xc0, 0x6e, 0x1f, 0xaa, 0xa2, 0x90, 0x4c, 0x05, 0x46, 0x57, 0x0f, 0xc5, 0x90, 0xbb, 0x8b, - 0x00, 0xec, 0xde, 0xa1, 0x2a, 0xf2, 0x0f, 0x3e, 0x10, 0xbb, 0x74, 0xa8, 0x8b, 0x02, 0xe2, 0x0f, - 0xc4, 0x6e, 0x1c, 0x0a, 0xa3, 0x10, 0xa6, 0x60, 0xe2, 0x8a, 0x52, 0x80, 0xed, 0xae, 0xa1, 0x30, - 0xf2, 0x16, 0x06, 0xdf, 0x77, 0x54, 0x5a, 0x0e, 0xbd, 0xf3, 0x0b, 0xcf, 0xe9, 0xf9, 0x27, 0x76, - 0x97, 0x77, 0x32, 0x51, 0x27, 0x3f, 0xa4, 0x97, 0xc7, 0xff, 0xc6, 0x7e, 0x4d, 0x4a, 0xe5, 0x6f, - 0xa5, 0x62, 0xb7, 0xce, 0xce, 0x7b, 0xae, 0xf7, 0xaa, 0xcd, 0x96, 0xcd, 0xcd, 0x7e, 0xd8, 0xb2, - 0xc9, 0xc3, 0x1b, 0xce, 0x19, 0x53, 0x12, 0x74, 0xba, 0x54, 0x44, 0xce, 0x01, 0x5f, 0x97, 0x77, - 0xae, 0x52, 0x25, 0x3f, 0xaa, 0x96, 0x6e, 0xcf, 0x39, 0x75, 0xdf, 0xf8, 0xa7, 0x2d, 0xfb, 0x8c, - 0xc3, 0x58, 0xa8, 0x93, 0xaf, 0xe9, 0x84, 0x43, 0xd7, 0xa9, 0x92, 0xbf, 0x51, 0xc9, 0xfc, 0x4d, - 0xd5, 0x12, 0x51, 0xa8, 0x14, 0x2a, 0xe5, 0x79, 0xa5, 0x78, 0xf6, 0xd9, 0x7e, 0x83, 0x02, 0xa1, - 0x40, 0xfe, 0xc6, 0x95, 0x34, 0xe8, 0x4a, 0xa8, 0x94, 0x6f, 0x72, 0x25, 0x4c, 0x36, 0x6e, 0xf6, - 0xc3, 0x64, 0x23, 0xf3, 0x08, 0x58, 0x91, 0x21, 0xf5, 0xc0, 0x08, 0x90, 0x6a, 0x60, 0xa4, 0x47, - 0x45, 0x30, 0xa2, 0xa3, 0x10, 0x18, 0xb9, 0x51, 0x11, 0x8c, 0xd0, 0x34, 0x45, 0x66, 0x72, 0x23, - 0x32, 0x99, 0xcf, 0x4d, 0x9e, 0x55, 0xb2, 0x2c, 0x12, 0xe6, 0xf4, 0x2c, 0x3b, 0x8a, 0xc6, 0x69, - 0x90, 0x86, 0xe3, 0xc8, 0x3a, 0x12, 0xe8, 0xee, 0xac, 0x64, 0xf0, 0xde, 0xdc, 0x06, 0x93, 0x20, - 0x7d, 0x3f, 0x73, 0x70, 0xf5, 0xf1, 0xc4, 0x44, 0x83, 0x71, 0x74, 0x1d, 0xde, 0xd4, 0x22, 0x93, - 0x7e, 0x18, 0xc7, 0x7f, 0xd6, 0xc2, 0x28, 0x49, 0x83, 0x68, 0x60, 0xea, 0x5f, 0x7e, 0x21, 0x59, - 0xfb, 0x4a, 0x7d, 0x12, 0x8f, 0xd3, 0xf1, 0x60, 0x3c, 0x4a, 0xb2, 0xdf, 0xd5, 0xc3, 0x24, 0x4c, - 0xea, 0x23, 0x73, 0x67, 0x46, 0xcb, 0x5f, 0xea, 0xa3, 0x30, 0xfa, 0xb3, 0x96, 0xa4, 0x41, 0x6a, - 0x6a, 0xc3, 0x20, 0x0d, 0xae, 0x82, 0xc4, 0xd4, 0x47, 0xc9, 0xa4, 0x9e, 0x8e, 0xee, 0x92, 0xd9, - 0x3f, 0xea, 0xb7, 0x69, 0x2d, 0x9c, 0xdc, 0xed, 0xd7, 0x62, 0x13, 0x0c, 0xde, 0x07, 0x57, 0xe1, - 0x28, 0x4c, 0xef, 0xeb, 0x93, 0xd8, 0x5c, 0x87, 0x1f, 0x4d, 0xb2, 0xfc, 0x4d, 0x3d, 0x99, 0x5e, - 0xcd, 0xbf, 0x61, 0xf1, 0x6b, 0x7d, 0xfe, 0xe7, 0xc9, 0x72, 0xc6, 0x72, 0x36, 0x86, 0xa0, 0x4d, - 0x61, 0xa5, 0xc1, 0x8d, 0xb8, 0x9d, 0x90, 0x1d, 0xf0, 0x33, 0xe3, 0x84, 0x39, 0x90, 0xd7, 0x61, - 0x34, 0xb4, 0x8e, 0xb6, 0x76, 0x84, 0x99, 0x75, 0x32, 0x77, 0x12, 0xd6, 0xd1, 0xd6, 0xb6, 0x30, - 0xc3, 0xba, 0x73, 0xf7, 0x20, 0xd3, 0xd9, 0xae, 0x64, 0x36, 0x1e, 0xd4, 0x66, 0x6e, 0x51, 0x60, - 0x15, 0x93, 0xd5, 0x1f, 0x4f, 0xe3, 0x81, 0x11, 0xf9, 0xf8, 0x16, 0xdb, 0xc1, 0xdc, 0x7f, 0x18, - 0xc7, 0xb3, 0x1d, 0x61, 0x2d, 0x0e, 0x02, 0xa1, 0xa5, 0x60, 0xd6, 0xab, 0x20, 0xb1, 0xe3, 0x9b, - 0xe9, 0xad, 0x89, 0x52, 0xeb, 0x68, 0x2b, 0x8d, 0xa7, 0x46, 0xa8, 0xa1, 0x8f, 0xac, 0xcc, 0x84, - 0x49, 0xc8, 0x84, 0x82, 0xcc, 0x66, 0x18, 0x0b, 0xa5, 0xcb, 0x39, 0x95, 0x89, 0x75, 0x26, 0x2b, - 0x7f, 0xbc, 0x30, 0x53, 0xe8, 0xfe, 0x94, 0x09, 0x00, 0xe2, 0x41, 0x00, 0x01, 0x08, 0x80, 0xc0, - 0x00, 0x05, 0x10, 0xe0, 0x40, 0x01, 0x0e, 0x18, 0xb0, 0xc0, 0x41, 0x26, 0x40, 0x08, 0x05, 0x09, - 0xf1, 0x40, 0xf1, 0x38, 0x8b, 0xf0, 0x72, 0x57, 0xbe, 0x13, 0x7a, 0x94, 0x57, 0x78, 0xb9, 0x2b, - 0xdd, 0x01, 0x2d, 0x41, 0x63, 0x5b, 0xb8, 0x99, 0xd2, 0x81, 0x03, 0x09, 0x3c, 0x00, 0x01, 0x04, - 0x0d, 0x44, 0x60, 0x81, 0x04, 0x16, 0x4c, 0x30, 0x01, 0x45, 0x36, 0xa8, 0x08, 0x07, 0x96, 0xec, - 0x47, 0xee, 0xdd, 0x4f, 0x0c, 0x96, 0xc7, 0x9d, 0x86, 0x51, 0x2a, 0x9e, 0x0d, 0x1e, 0xf3, 0xc1, - 0x01, 0x80, 0xa9, 0xbd, 0x20, 0xba, 0x31, 0x30, 0x6d, 0xb7, 0x38, 0xfd, 0x0a, 0x56, 0x3b, 0x8c, - 0x60, 0x4e, 0x5c, 0x30, 0xb0, 0x5d, 0x33, 0x7b, 0xde, 0x3c, 0x0e, 0x68, 0xf7, 0x69, 0x1c, 0x0c, - 0xd2, 0x70, 0x1c, 0x35, 0xc3, 0x9b, 0x30, 0x4d, 0x66, 0x0b, 0x60, 0x93, 0x53, 0x1e, 0x5b, 0x31, - 0xf8, 0xc8, 0xad, 0x58, 0xf0, 0x56, 0x6c, 0xec, 0x1e, 0x36, 0x0e, 0xf7, 0x0f, 0x76, 0x0f, 0xf7, - 0xb8, 0x27, 0x09, 0xc4, 0x58, 0x56, 0xbe, 0x63, 0x60, 0xf1, 0x13, 0x1b, 0xa8, 0x15, 0x26, 0xa9, - 0x9d, 0xa6, 0x31, 0x46, 0x70, 0xd1, 0x0e, 0x23, 0x67, 0x64, 0x66, 0xb1, 0xef, 0x6c, 0xaf, 0x47, - 0xd3, 0xd1, 0x08, 0x00, 0xda, 0xdb, 0xc1, 0x47, 0x3c, 0xa3, 0xcf, 0xe3, 0xa1, 0x89, 0xcd, 0xf0, - 0xf8, 0x7e, 0x69, 0xf2, 0x2f, 0x74, 0x52, 0x7a, 0x2c, 0x93, 0xfa, 0x7a, 0x46, 0x78, 0x51, 0x71, - 0x66, 0xa7, 0x96, 0xe2, 0xe2, 0x34, 0xb8, 0x91, 0x58, 0x60, 0x2c, 0x77, 0xf3, 0xb0, 0x5c, 0x0b, - 0x78, 0xfb, 0x6a, 0xda, 0xb6, 0x12, 0x4b, 0x6c, 0x93, 0x34, 0x9e, 0x0e, 0xd2, 0x68, 0x99, 0xff, - 0xed, 0x2c, 0x9e, 0x97, 0xbb, 0x7c, 0x5c, 0x7e, 0x77, 0xf9, 0x90, 0x7c, 0x37, 0x09, 0x13, 0xbf, - 0x35, 0x7b, 0x3a, 0x7e, 0x2b, 0x99, 0xf8, 0xde, 0xe8, 0xce, 0x6f, 0xa7, 0xee, 0xe4, 0x6e, 0xbf, - 0xf7, 0xe8, 0x11, 0xf8, 0x8b, 0x97, 0x8c, 0x7e, 0x7f, 0xbe, 0x62, 0xdf, 0x0b, 0x6e, 0xd8, 0x03, - 0x21, 0xde, 0x09, 0x58, 0x69, 0x70, 0xb3, 0xdf, 0x10, 0xdd, 0x05, 0xb1, 0xdf, 0x60, 0x1f, 0xc4, - 0x37, 0x99, 0xc5, 0x3e, 0x88, 0x9f, 0x10, 0x1a, 0xfb, 0x20, 0x7e, 0x7c, 0x3b, 0xb0, 0x0f, 0x62, - 0xd3, 0x54, 0xc6, 0x3e, 0x08, 0x74, 0xb0, 0x66, 0x1f, 0xc4, 0xcf, 0xf9, 0x63, 0xf6, 0x41, 0xe8, - 0x03, 0x01, 0x04, 0x20, 0x00, 0x02, 0x03, 0x14, 0x40, 0x80, 0x03, 0x05, 0x38, 0x60, 0xc0, 0x02, - 0x07, 0x99, 0x00, 0x21, 0x14, 0x24, 0xc4, 0x03, 0x85, 0xf0, 0x4c, 0x02, 0x54, 0x66, 0xe1, 0x39, - 0xd0, 0x60, 0x1f, 0x44, 0x75, 0xc0, 0x03, 0x10, 0x40, 0xd0, 0x40, 0x04, 0x16, 0x48, 0x60, 0xc1, - 0x04, 0x13, 0x50, 0x64, 0x83, 0x8a, 0x70, 0x60, 0xc9, 0x7e, 0xe4, 0x98, 0x7d, 0x10, 0xe2, 0xd9, - 0xe0, 0x31, 0x1f, 0xfc, 0xc6, 0x3e, 0x88, 0x0d, 0x7f, 0xd8, 0x07, 0x41, 0xb0, 0x7d, 0xc2, 0x6c, - 0xf6, 0x41, 0xf0, 0x78, 0xfb, 0xbb, 0xad, 0xc8, 0x3e, 0x88, 0xc2, 0xb7, 0xe2, 0xce, 0x6f, 0x8d, - 0xc6, 0xfe, 0x41, 0xa3, 0xb1, 0x7d, 0xf0, 0xf2, 0x60, 0xfb, 0x70, 0x6f, 0x6f, 0x67, 0x7f, 0x87, - 0x1d, 0x11, 0x44, 0x63, 0x30, 0x2b, 0xd9, 0x11, 0xf1, 0x33, 0x1b, 0x88, 0x1d, 0x11, 0x45, 0x1c, - 0x6d, 0xec, 0x88, 0xa8, 0xa8, 0x93, 0xe2, 0x8b, 0x9a, 0xef, 0x11, 0x1d, 0x3b, 0x22, 0x0a, 0x2f, - 0xad, 0xde, 0x6f, 0xb0, 0x27, 0x02, 0xd7, 0x22, 0xf6, 0x44, 0x54, 0x78, 0xe3, 0x56, 0xaf, 0x2b, - 0x42, 0xda, 0x0d, 0x5e, 0xec, 0x8b, 0x78, 0x4a, 0x03, 0xa9, 0xc4, 0xb7, 0x16, 0x0f, 0xc5, 0x0b, - 0x33, 0xeb, 0x64, 0x76, 0x45, 0x6c, 0xb3, 0x2b, 0xe2, 0xdb, 0x0c, 0x63, 0x57, 0xc4, 0x4f, 0x99, - 0xc8, 0xae, 0x88, 0x0d, 0x19, 0xca, 0xae, 0x08, 0xa2, 0x75, 0x51, 0x3f, 0x42, 0xb1, 0xb5, 0x00, - 0x99, 0xc7, 0x1b, 0x99, 0xe0, 0x3a, 0x36, 0xd7, 0x12, 0x3d, 0xde, 0xaa, 0xeb, 0x40, 0xe0, 0xd4, - 0x43, 0xab, 0xbb, 0x8c, 0x46, 0x5e, 0xbc, 0x58, 0x44, 0xe2, 0xf5, 0x39, 0xa1, 0x90, 0x73, 0x05, - 0x5b, 0x22, 0xc4, 0x37, 0xcc, 0x0e, 0x4a, 0x61, 0x48, 0x2b, 0xf3, 0x7d, 0x82, 0xe8, 0xf7, 0x06, - 0xa2, 0xdf, 0x0f, 0xc8, 0x7c, 0x0f, 0x20, 0x65, 0xff, 0x09, 0x4d, 0x77, 0x69, 0x49, 0x73, 0x09, - 0x22, 0x89, 0x1c, 0x13, 0x5b, 0x32, 0x8e, 0xfa, 0xf2, 0x0f, 0xd6, 0x72, 0x2d, 0x28, 0xd9, 0xa5, - 0x48, 0x73, 0x25, 0xf0, 0x2e, 0xa4, 0xdc, 0x5d, 0x55, 0x9e, 0x96, 0x4b, 0xd4, 0xb1, 0x35, 0x8d, - 0x86, 0xe6, 0x3a, 0x8c, 0xcc, 0xb0, 0xb6, 0xfa, 0x21, 0x94, 0x2d, 0xe5, 0x87, 0xba, 0xf4, 0x35, - 0xd3, 0x4a, 0xde, 0xef, 0x32, 0xfa, 0xe0, 0xc5, 0xa4, 0x78, 0x25, 0xa5, 0x74, 0x05, 0xa6, 0x70, - 0xa5, 0xa5, 0x6c, 0xc5, 0xa6, 0x68, 0xc5, 0xa6, 0x64, 0x65, 0xa6, 0x60, 0xab, 0xcd, 0x5c, 0x52, - 0xfa, 0xc2, 0xd7, 0x4e, 0x27, 0x39, 0xfb, 0xfc, 0xb9, 0xf3, 0x53, 0xca, 0x76, 0x97, 0x35, 0x4e, - 0x46, 0xdc, 0x1b, 0x53, 0x89, 0x6f, 0x4a, 0x05, 0xbf, 0x21, 0x95, 0xfa, 0x66, 0x54, 0xfc, 0x1b, - 0x51, 0xf1, 0x6f, 0x42, 0x65, 0xbf, 0x01, 0xe5, 0x5b, 0x0d, 0x89, 0xc7, 0xf2, 0x43, 0x2e, 0x44, - 0xe4, 0xdc, 0x37, 0xd1, 0xf3, 0xde, 0x38, 0xe8, 0x15, 0xff, 0xa0, 0x06, 0x38, 0xb0, 0xa5, 0x1f, - 0xdc, 0x30, 0x07, 0x38, 0xcc, 0x41, 0x8e, 0x71, 0xa0, 0xcb, 0x3a, 0xd8, 0x85, 0x1d, 0xf0, 0x62, - 0x0f, 0xfa, 0xcc, 0xb0, 0x91, 0x89, 0x6e, 0xe6, 0x2f, 0x3e, 0x84, 0x4f, 0x7a, 0x5d, 0xda, 0x29, - 0x7b, 0xd4, 0xeb, 0x36, 0x47, 0xbd, 0xaa, 0x43, 0x02, 0x20, 0x34, 0x40, 0x41, 0x04, 0x38, 0x54, - 0x80, 0x43, 0x06, 0x2c, 0x74, 0x90, 0x89, 0x10, 0x42, 0x51, 0x22, 0xfb, 0xd1, 0x8a, 0x9f, 0x98, - 0xf6, 0xd9, 0xa4, 0xb4, 0xdf, 0x24, 0xfb, 0xcb, 0xe5, 0xf1, 0x2d, 0x78, 0x22, 0x0c, 0xc8, 0x60, - 0x34, 0x8c, 0xb9, 0x1a, 0x40, 0xa3, 0x47, 0xa1, 0xa6, 0x2e, 0xa1, 0x0d, 0x3e, 0x43, 0x1c, 0xa9, - 0xf4, 0x09, 0x63, 0x0a, 0x0c, 0xb7, 0x58, 0xce, 0x5b, 0x6c, 0x77, 0x6f, 0x8f, 0x9b, 0xac, 0x5a, - 0x20, 0x2a, 0xdf, 0xba, 0x77, 0x9c, 0xac, 0x82, 0xea, 0xc4, 0x65, 0x8e, 0x32, 0x58, 0x0b, 0x25, - 0x04, 0x8e, 0x34, 0x00, 0x39, 0x49, 0x98, 0x04, 0xdc, 0xa4, 0x0e, 0x99, 0x04, 0xdc, 0xdc, 0xb6, - 0x61, 0x12, 0x30, 0x67, 0x83, 0x99, 0x04, 0xd4, 0x1a, 0x76, 0x31, 0x09, 0xb8, 0xf1, 0xe3, 0x9b, - 0x49, 0xc0, 0x9f, 0xfd, 0x30, 0x09, 0xc8, 0x0c, 0x05, 0x93, 0x80, 0x15, 0x3c, 0x8d, 0x3e, 0xdf, - 0x62, 0x4c, 0x02, 0xe6, 0xbe, 0xc5, 0x98, 0x04, 0xac, 0x1c, 0x88, 0xca, 0xb7, 0x8e, 0x49, 0x40, - 0x58, 0x27, 0x6e, 0xdd, 0x2d, 0x1d, 0x8b, 0xf0, 0x2c, 0xe0, 0xc2, 0x4c, 0xa6, 0x01, 0x7f, 0xc4, - 0x3c, 0xa6, 0x01, 0x37, 0x28, 0x44, 0xa6, 0x01, 0x37, 0xb7, 0x6d, 0x98, 0x06, 0xcc, 0xd9, 0x60, - 0xa6, 0x01, 0xb5, 0x06, 0x5e, 0x40, 0x69, 0xc0, 0xab, 0x30, 0x0a, 0xe2, 0x7b, 0x80, 0x3c, 0xe0, - 0x21, 0x31, 0x16, 0xd0, 0x22, 0xde, 0x12, 0xf2, 0x7d, 0xf6, 0xc1, 0xce, 0x3e, 0x5b, 0x9b, 0x72, - 0xb5, 0xf6, 0x15, 0x89, 0x97, 0xfd, 0xf0, 0x16, 0x8d, 0xa7, 0x44, 0xc8, 0x5b, 0x34, 0x74, 0xc4, - 0x98, 0x6c, 0x39, 0xd7, 0x19, 0x4b, 0xb2, 0xe5, 0xbc, 0x6a, 0x31, 0x23, 0x5b, 0xce, 0xf1, 0xd1, - 0x93, 0xb7, 0x68, 0xfc, 0xfc, 0x01, 0xcb, 0x5b, 0x34, 0xe0, 0x39, 0x97, 0xf3, 0xa6, 0x3e, 0x3f, - 0x28, 0x79, 0x8b, 0xc6, 0xb7, 0x58, 0xc5, 0x5b, 0x34, 0x7e, 0xd4, 0x38, 0xde, 0xa2, 0x81, 0x97, - 0x0e, 0xd2, 0x9c, 0x06, 0xd2, 0x7e, 0xb3, 0xc6, 0xc5, 0x6a, 0xbd, 0xbc, 0x62, 0x43, 0x8e, 0x05, - 0xbc, 0x62, 0x43, 0xab, 0x7f, 0xa9, 0xec, 0x65, 0x1b, 0xbf, 0x54, 0x68, 0x1f, 0xad, 0x38, 0x79, - 0x21, 0x82, 0xad, 0x99, 0x52, 0x86, 0x25, 0x9d, 0x23, 0x32, 0xf8, 0x58, 0x14, 0x0f, 0x8b, 0xe2, - 0x5f, 0x19, 0xbc, 0x5b, 0xd6, 0x3e, 0x11, 0x72, 0xce, 0xc0, 0x9e, 0x2f, 0x25, 0xc2, 0x69, 0x1e, - 0x30, 0x5a, 0xce, 0xe1, 0x58, 0xfc, 0xd1, 0x54, 0xec, 0xdf, 0x58, 0xf0, 0xe6, 0x2e, 0x7b, 0x53, - 0xe3, 0x6d, 0xe6, 0x62, 0x65, 0x5f, 0x9c, 0xf8, 0x8a, 0xf9, 0x9b, 0x0a, 0x92, 0x77, 0x59, 0xb2, - 0x86, 0x91, 0x73, 0x81, 0x67, 0xd1, 0x46, 0xcf, 0x9e, 0x62, 0x76, 0x5f, 0xfe, 0x7b, 0xa1, 0x80, - 0x7d, 0x60, 0xcd, 0x7e, 0xee, 0x49, 0x98, 0xd4, 0x22, 0x13, 0xde, 0xbc, 0xbf, 0x1a, 0xc7, 0xb5, - 0x20, 0x4d, 0xe3, 0xf0, 0x6a, 0x5a, 0xe0, 0x9d, 0x0f, 0xd9, 0xdb, 0xbf, 0xbf, 0xb1, 0xa5, 0x20, - 0x8f, 0x50, 0xec, 0xc5, 0x0d, 0x85, 0x57, 0xc7, 0x94, 0x51, 0xf5, 0x52, 0x62, 0x35, 0x4b, 0x59, - 0x55, 0x2a, 0xa5, 0x57, 0x9f, 0x94, 0x5e, 0x55, 0x52, 0x6e, 0xb5, 0x88, 0x2e, 0x4a, 0x29, 0xfa, - 0xa2, 0x00, 0x6b, 0xe5, 0x7e, 0x8b, 0xbf, 0xc1, 0x36, 0xf3, 0x15, 0x0f, 0x26, 0x14, 0xac, 0xdb, - 0x72, 0x6e, 0xee, 0x29, 0xad, 0x4c, 0xb2, 0xcc, 0x32, 0x48, 0x01, 0x65, 0x8e, 0x65, 0x97, 0x31, - 0x8a, 0x29, 0x53, 0x14, 0x53, 0x86, 0x28, 0xa3, 0xcc, 0x50, 0x77, 0x36, 0xa7, 0xac, 0x9b, 0x67, - 0x32, 0xaf, 0x5e, 0xde, 0x7e, 0xfb, 0xf2, 0x7c, 0x29, 0x6b, 0xbb, 0x95, 0x7b, 0x41, 0x5c, 0xe9, - 0x55, 0xf9, 0x12, 0xaa, 0xef, 0x05, 0x55, 0xd9, 0x4b, 0xa9, 0xa6, 0x17, 0x57, 0x35, 0x2f, 0xae, - 0x3a, 0x5e, 0x56, 0x15, 0x7c, 0xb5, 0xde, 0xc0, 0x97, 0x7d, 0x61, 0x9a, 0x95, 0xe5, 0x60, 0xcb, - 0xdf, 0xa8, 0x2b, 0xdf, 0xf5, 0x60, 0x52, 0xc9, 0xfb, 0x42, 0xc6, 0x8d, 0xa7, 0x62, 0xda, 0xcd, - 0x24, 0xb5, 0x97, 0x09, 0x6c, 0x27, 0x93, 0xd6, 0x3e, 0x26, 0xb6, 0x5d, 0x4c, 0x6c, 0x7b, 0x98, - 0xcc, 0x76, 0xb0, 0x6a, 0x97, 0x78, 0x4a, 0xb9, 0x51, 0x34, 0x3b, 0x95, 0xe4, 0xec, 0xef, 0x2f, - 0xcf, 0x4b, 0x29, 0xdb, 0x5b, 0xd6, 0x45, 0xe1, 0xe2, 0xba, 0xb5, 0x25, 0x76, 0x69, 0x0b, 0xee, - 0xce, 0x96, 0xda, 0x95, 0x2d, 0xbe, 0x1b, 0x5b, 0x7c, 0x17, 0xb6, 0xec, 0xee, 0x6b, 0x76, 0x54, - 0x4a, 0x3c, 0x86, 0x1f, 0x8e, 0xe3, 0xa1, 0xdc, 0x51, 0x2a, 0xa5, 0x55, 0xd1, 0x7f, 0xed, 0x48, - 0xe6, 0x20, 0x15, 0xdc, 0x23, 0x1a, 0xe0, 0xa8, 0x96, 0x7e, 0x64, 0xc3, 0x1c, 0xdd, 0x30, 0x47, - 0x38, 0xc6, 0x51, 0x2e, 0xeb, 0x48, 0x17, 0x76, 0xb4, 0x67, 0x3f, 0x42, 0x0e, 0x52, 0xd9, 0x40, - 0xcc, 0x0b, 0x31, 0x48, 0x25, 0x1c, 0x72, 0x8c, 0x8a, 0xf8, 0x3d, 0x69, 0x2d, 0xe6, 0x3a, 0x8a, - 0x85, 0xdc, 0x85, 0x79, 0x32, 0x39, 0x77, 0x87, 0x9c, 0x4b, 0xce, 0x25, 0xe7, 0x92, 0x73, 0xc9, - 0xb9, 0x3c, 0x53, 0xbf, 0xfc, 0x11, 0x4a, 0x4b, 0x65, 0x65, 0x86, 0x09, 0x4c, 0x69, 0xad, 0x39, - 0x63, 0x71, 0xa9, 0xad, 0x2f, 0x8f, 0x7e, 0xde, 0x47, 0xa3, 0x0f, 0x05, 0x80, 0x90, 0x00, 0x05, - 0x0d, 0xe0, 0x10, 0x01, 0x0e, 0x15, 0xb0, 0x90, 0x41, 0x26, 0x3a, 0x08, 0x45, 0x88, 0xec, 0x47, - 0x8b, 0x75, 0x2d, 0xf5, 0x7e, 0x03, 0xe0, 0x3e, 0x9a, 0xdf, 0x78, 0x2f, 0xf5, 0x4f, 0x7e, 0x78, - 0x2f, 0x75, 0x95, 0xc0, 0x72, 0xcd, 0x5c, 0xde, 0x4b, 0x5d, 0xd5, 0xe3, 0xe8, 0xf3, 0x2d, 0xc6, - 0x7b, 0xa9, 0x73, 0xdf, 0x62, 0x3b, 0xbf, 0x35, 0x1a, 0xfb, 0x07, 0x8d, 0xc6, 0xf6, 0xc1, 0xcb, - 0x83, 0xed, 0xc3, 0xbd, 0xbd, 0x9d, 0xfd, 0x1d, 0x5e, 0x54, 0x5d, 0x31, 0x34, 0x95, 0x6f, 0x1d, - 0x2f, 0xaa, 0x86, 0xf5, 0xea, 0xd6, 0xad, 0x49, 0xe3, 0x70, 0x20, 0x3f, 0x2d, 0xb8, 0xb4, 0x93, - 0xa9, 0xc1, 0x1f, 0x31, 0x8f, 0xa9, 0xc1, 0x0d, 0x2a, 0x91, 0xa9, 0xc1, 0xcd, 0x6d, 0x1b, 0xa6, - 0x06, 0x73, 0x36, 0x98, 0xa9, 0x41, 0xad, 0xb1, 0x18, 0x50, 0x6a, 0xf0, 0x43, 0x38, 0x34, 0x35, - 0xd1, 0x07, 0xf8, 0xe3, 0x43, 0xfc, 0x80, 0xf9, 0xc1, 0x9f, 0xfc, 0x30, 0x3f, 0xc8, 0xe4, 0x85, - 0xbc, 0x1a, 0x39, 0x55, 0x99, 0x0a, 0xe6, 0x07, 0xb9, 0xc5, 0x66, 0x5b, 0x6c, 0xff, 0xe0, 0xe0, - 0x60, 0x97, 0x39, 0xc1, 0xaa, 0x31, 0xa9, 0x7c, 0xeb, 0x98, 0x13, 0x44, 0xb4, 0x48, 0x5a, 0x25, - 0xa5, 0xd0, 0x6b, 0x1e, 0x33, 0xfb, 0xa4, 0x5e, 0x49, 0xf0, 0xf4, 0x38, 0xf8, 0x7a, 0x36, 0x1f, - 0x38, 0xfb, 0x5d, 0xfd, 0xc1, 0x9c, 0xcc, 0x8c, 0x45, 0xdf, 0x05, 0xfb, 0x77, 0xa4, 0xef, 0x10, - 0x6b, 0x75, 0x93, 0x9e, 0xdc, 0x0e, 0x9e, 0xa5, 0x81, 0xec, 0xe1, 0xf9, 0x16, 0xb3, 0xd8, 0xc3, - 0xf3, 0x13, 0x52, 0x63, 0x0f, 0xcf, 0x8f, 0x6f, 0x07, 0xf6, 0xf0, 0x6c, 0x1a, 0x5b, 0xd8, 0xc3, - 0x83, 0x4e, 0x9e, 0x62, 0x7b, 0x78, 0x96, 0x97, 0x71, 0x8b, 0x7f, 0x61, 0x2f, 0xee, 0xd2, 0x70, - 0x00, 0x04, 0x10, 0x8f, 0x02, 0x08, 0x48, 0x00, 0x84, 0x06, 0x28, 0x88, 0x00, 0x87, 0x0a, 0x70, - 0xc8, 0x80, 0x85, 0x0e, 0x32, 0x11, 0x42, 0x28, 0x4a, 0x88, 0x47, 0x8a, 0xcc, 0xc0, 0x60, 0xf8, - 0x7f, 0xc1, 0xc0, 0x44, 0x83, 0xfb, 0x5a, 0x12, 0x0e, 0x13, 0xf9, 0xde, 0x68, 0xe5, 0xe0, 0xbf, - 0xb0, 0x5b, 0xf8, 0x0e, 0x97, 0x8d, 0x1e, 0x30, 0x08, 0x82, 0x84, 0x22, 0x80, 0x48, 0x82, 0x86, - 0x26, 0xb0, 0x88, 0x02, 0x8b, 0x2a, 0x98, 0xc8, 0x22, 0x1b, 0x5d, 0x84, 0x23, 0x0c, 0x0c, 0xca, - 0x3c, 0x8d, 0x34, 0x38, 0x4e, 0xec, 0x49, 0xb2, 0x41, 0x71, 0x64, 0x18, 0x80, 0x03, 0x07, 0x3a, - 0x88, 0xc0, 0x03, 0x0c, 0x3e, 0xa8, 0x00, 0x04, 0x0f, 0x42, 0xf0, 0x40, 0x84, 0x0d, 0x46, 0x18, - 0x80, 0x04, 0x02, 0x4a, 0x70, 0xc0, 0x94, 0x19, 0x2c, 0x73, 0x36, 0xec, 0x37, 0x9f, 0x33, 0x12, - 0x67, 0xc7, 0x2a, 0x03, 0x27, 0x58, 0x80, 0x42, 0x06, 0x29, 0x05, 0x40, 0x85, 0x0e, 0x56, 0x6a, - 0x00, 0x4b, 0x0d, 0x68, 0xe9, 0x00, 0x2e, 0x2c, 0xf0, 0x02, 0x03, 0x30, 0x58, 0x10, 0xcb, 0x0c, - 0xbf, 0x1e, 0x05, 0x37, 0x09, 0xae, 0xb3, 0x5c, 0x9d, 0x57, 0x8b, 0x65, 0x80, 0xfa, 0x17, 0xac, - 0x2e, 0x31, 0x35, 0xa0, 0xa6, 0x01, 0xd8, 0x14, 0x81, 0x9b, 0x16, 0x80, 0x53, 0x07, 0x72, 0xea, - 0x80, 0x4e, 0x17, 0xd8, 0x61, 0x02, 0x1e, 0x28, 0xe8, 0x65, 0xd2, 0x11, 0x3f, 0x26, 0xe5, 0x9b, - 0x4f, 0x0c, 0x13, 0x4d, 0x6f, 0x4d, 0xbc, 0xe8, 0x86, 0x04, 0x3e, 0x35, 0x56, 0x59, 0xae, 0x06, - 0xf0, 0x1a, 0x9c, 0x68, 0x7a, 0x3b, 0x13, 0x15, 0xb7, 0x72, 0x91, 0x4f, 0xbd, 0x15, 0x26, 0xa9, - 0x9d, 0xa6, 0x31, 0xf6, 0x76, 0x6e, 0x87, 0x91, 0x33, 0x32, 0xb3, 0xd3, 0x6c, 0x16, 0xce, 0x45, - 0xd3, 0xd1, 0x08, 0x78, 0x23, 0xb4, 0x83, 0x8f, 0x7a, 0x16, 0x73, 0x1e, 0x0f, 0x4d, 0x6c, 0x86, - 0xc7, 0xf7, 0xcb, 0xa5, 0xfc, 0x42, 0xba, 0xa0, 0x3b, 0x7a, 0x5a, 0x2a, 0x77, 0xcb, 0x01, 0x2c, - 0xe0, 0xd9, 0x98, 0xc5, 0x32, 0x98, 0x8d, 0x29, 0xc3, 0x7c, 0x66, 0x63, 0x04, 0x6d, 0x04, 0x66, - 0x63, 0xe4, 0x6c, 0x6b, 0x66, 0x63, 0x84, 0x2f, 0x88, 0xd9, 0x18, 0x32, 0xd3, 0x0f, 0x4a, 0x47, - 0x4f, 0x36, 0x66, 0x1a, 0x46, 0xe9, 0xcb, 0x5d, 0x05, 0x89, 0x98, 0x03, 0xe0, 0x25, 0x60, 0xcc, - 0xc3, 0xfd, 0xda, 0x07, 0xfb, 0xc0, 0xde, 0x42, 0x9b, 0xa7, 0xab, 0x3c, 0xb0, 0x58, 0x5b, 0x0e, - 0xd8, 0x7d, 0x5d, 0x5f, 0x5d, 0x0f, 0xe0, 0x14, 0x51, 0xa5, 0xc7, 0xf9, 0xe7, 0x2e, 0x20, 0xf8, - 0x48, 0x17, 0x20, 0xdc, 0x05, 0x34, 0x76, 0x0f, 0x1b, 0x87, 0xfb, 0x07, 0xbb, 0x87, 0x7b, 0xf4, - 0x05, 0x0c, 0x48, 0x68, 0xfd, 0xe3, 0xcf, 0x3b, 0xa6, 0xfb, 0x79, 0xd6, 0x3d, 0xe3, 0x66, 0x3e, - 0x98, 0xf0, 0xe6, 0x7d, 0x8a, 0x9f, 0xef, 0x5f, 0xae, 0x83, 0x09, 0xff, 0x32, 0xcc, 0x67, 0xc2, - 0x5f, 0xd0, 0x4e, 0x60, 0xc2, 0x5f, 0xce, 0xb6, 0x66, 0xc2, 0x5f, 0xf8, 0x82, 0x98, 0xf0, 0x27, - 0x35, 0xfd, 0xa0, 0x74, 0x74, 0x25, 0xfc, 0x7f, 0x53, 0x90, 0xef, 0xdf, 0x63, 0xbe, 0xbf, 0xe4, - 0x0f, 0xf3, 0xfd, 0x8c, 0x2b, 0x72, 0x5c, 0x0e, 0xf3, 0xfd, 0x3c, 0xcd, 0x8b, 0x70, 0x01, 0xcc, - 0xf7, 0x8b, 0x77, 0x01, 0xbb, 0x7b, 0x4c, 0xf4, 0x33, 0x10, 0xa1, 0xf5, 0x9f, 0x7d, 0x98, 0xe8, - 0xa7, 0xc5, 0xf0, 0x47, 0xb2, 0xf4, 0xab, 0x11, 0xbf, 0x6a, 0xbf, 0xce, 0xab, 0x13, 0x17, 0x17, - 0xde, 0x2d, 0x7f, 0xad, 0x7f, 0x3e, 0x98, 0xfe, 0xf3, 0x7f, 0x95, 0x78, 0xcd, 0xa2, 0x9e, 0x1d, - 0x0d, 0xb4, 0x9b, 0x41, 0x7b, 0x89, 0xa0, 0x7b, 0x88, 0x40, 0x79, 0x9f, 0xa3, 0xf6, 0xca, 0x14, - 0x3a, 0x47, 0xed, 0x95, 0xb7, 0x5d, 0x39, 0x6a, 0x4f, 0x1a, 0x7e, 0x72, 0xd4, 0x1e, 0x99, 0xe6, - 0xef, 0x25, 0x02, 0xfb, 0xea, 0x2f, 0xf3, 0xf8, 0x23, 0x13, 0x5c, 0xc7, 0xe6, 0x1a, 0xd1, 0xe3, - 0xaf, 0xa6, 0xac, 0x00, 0x76, 0xf7, 0x58, 0xdd, 0x65, 0x50, 0xf8, 0xe2, 0xc5, 0x22, 0x48, 0xaa, - 0x2f, 0x10, 0x93, 0xa1, 0x52, 0x85, 0x2d, 0x45, 0x19, 0xf4, 0xfe, 0xda, 0xdc, 0xa3, 0x05, 0x45, - 0x98, 0x73, 0x75, 0xa0, 0xe7, 0xe8, 0x40, 0xcf, 0xcd, 0xc1, 0x9c, 0x93, 0x83, 0xe2, 0x40, 0x40, - 0xf3, 0xba, 0x95, 0xcf, 0xe7, 0x22, 0x5d, 0x69, 0x94, 0xa4, 0xf1, 0x74, 0x90, 0x46, 0x4b, 0xca, - 0xed, 0x2c, 0x1e, 0xbe, 0xbb, 0x5c, 0xb4, 0xdf, 0x5d, 0x3e, 0x71, 0xdf, 0x4d, 0xc2, 0xc4, 0x6f, - 0xcd, 0x1e, 0xb5, 0xdf, 0x4a, 0x26, 0xbe, 0x37, 0xba, 0xf3, 0xdb, 0xe9, 0xec, 0x8b, 0x9d, 0xe5, - 0x23, 0xb3, 0x57, 0x8f, 0xd3, 0x5f, 0x7d, 0xc5, 0xcf, 0xfe, 0x94, 0xfe, 0xfc, 0x91, 0xf9, 0xf6, - 0xea, 0x19, 0xf5, 0xc3, 0x21, 0x06, 0xc1, 0x7d, 0xe2, 0xdd, 0x85, 0x9a, 0x1d, 0x2d, 0x9a, 0x83, - 0xad, 0xa0, 0x63, 0x95, 0xed, 0x27, 0xe4, 0xee, 0x3e, 0xc1, 0x3b, 0xcf, 0x0a, 0x86, 0xb7, 0x61, - 0x54, 0xbb, 0x89, 0xc7, 0xd3, 0x09, 0xd2, 0xc5, 0xe2, 0x0f, 0x46, 0xf3, 0x56, 0xf1, 0x4d, 0x98, - 0xc9, 0x5b, 0xc5, 0x73, 0x94, 0x2b, 0x6f, 0x15, 0xcf, 0x33, 0xad, 0xc3, 0x5b, 0xc5, 0x8b, 0xc5, - 0x34, 0xde, 0x2a, 0x5e, 0x35, 0x32, 0x87, 0xb9, 0x55, 0x1c, 0xeb, 0x72, 0x4c, 0xc8, 0x4b, 0x31, - 0x79, 0x8b, 0x38, 0x01, 0x47, 0x01, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, - 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0x52, 0xd6, 0xe7, 0xd9, 0xd3, - 0x06, 0x27, 0x0b, 0xf4, 0x1c, 0x44, 0xb1, 0xcc, 0x99, 0x50, 0xa5, 0x18, 0xae, 0xd0, 0x21, 0x4b, - 0x0d, 0x6c, 0xa9, 0x81, 0x2e, 0x1d, 0xf0, 0x85, 0x05, 0x61, 0x60, 0x30, 0x96, 0x49, 0x04, 0xbf, - 0xcc, 0x19, 0xf6, 0x2a, 0x03, 0xe0, 0x2b, 0x0c, 0xc0, 0x47, 0x19, 0x61, 0xdf, 0xbf, 0xa8, 0x60, - 0x66, 0xa2, 0x8a, 0x79, 0x25, 0x5a, 0x46, 0x15, 0x69, 0x9a, 0x4e, 0xf2, 0x09, 0xfb, 0x36, 0x52, - 0x6e, 0x6d, 0x61, 0x5b, 0x5b, 0xcb, 0x95, 0x03, 0xaa, 0xf6, 0x38, 0x27, 0xe0, 0x14, 0xf2, 0x79, - 0xc7, 0xc0, 0x2b, 0xc7, 0x0d, 0x09, 0x7d, 0x1d, 0xb8, 0x8a, 0x6b, 0xc0, 0x55, 0x5c, 0xff, 0x8d, - 0x7d, 0xed, 0x37, 0xfb, 0x4c, 0x2b, 0xe9, 0x04, 0xd9, 0x26, 0x26, 0xba, 0x9b, 0x21, 0x7b, 0x61, - 0x88, 0x34, 0xe5, 0x8b, 0x8d, 0x4f, 0xaa, 0x5d, 0x07, 0x1b, 0x9f, 0x64, 0xbb, 0x0a, 0x84, 0xb2, - 0xfd, 0x42, 0x1b, 0x47, 0x6f, 0xc3, 0xe8, 0x6c, 0xfe, 0x60, 0xd8, 0x0e, 0xa6, 0xcd, 0x1f, 0x59, - 0xc1, 0x5d, 0x10, 0x8e, 0x82, 0xab, 0x91, 0xa9, 0x5d, 0x05, 0xd1, 0xf0, 0x43, 0x38, 0x9c, 0x6f, - 0x72, 0x94, 0xb6, 0xb0, 0x27, 0x8c, 0x67, 0x7b, 0xd8, 0x26, 0xcc, 0x64, 0x7b, 0x58, 0x8e, 0xb2, - 0x65, 0x7b, 0x58, 0x7e, 0xdb, 0x8b, 0xed, 0x61, 0x45, 0xc3, 0x2c, 0xdb, 0xc3, 0xaa, 0x16, 0xbf, - 0xb0, 0x3d, 0x2c, 0xdf, 0xf3, 0x81, 0xed, 0x61, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, 0x1d, 0x54, - 0xe0, 0x81, 0x07, 0x1f, 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, 0x38, 0x40, - 0xca, 0x0c, 0xc6, 0xc9, 0xfd, 0x3c, 0x7b, 0xd6, 0xa0, 0x64, 0x80, 0x9e, 0x03, 0x28, 0xb6, 0x86, - 0x11, 0xa8, 0x14, 0x83, 0x15, 0x3a, 0x60, 0xa9, 0x01, 0x2d, 0x35, 0xc0, 0xa5, 0x03, 0xbc, 0xb0, - 0x00, 0x0c, 0x0c, 0xc4, 0x32, 0x89, 0xe0, 0xb7, 0x86, 0x85, 0xc6, 0x98, 0xeb, 0xd1, 0x38, 0xc0, - 0xee, 0x0f, 0x3b, 0x04, 0x34, 0xbd, 0x65, 0xa2, 0x9b, 0x39, 0x18, 0xb3, 0x41, 0xac, 0xe0, 0x27, - 0xcf, 0x06, 0x31, 0x39, 0xcb, 0xc8, 0xba, 0x48, 0xd8, 0x3c, 0xc2, 0x43, 0x78, 0x03, 0x5b, 0x9b, - 0x0d, 0x62, 0xdc, 0xda, 0xdc, 0xda, 0x3a, 0xa2, 0x01, 0x5c, 0xab, 0xdf, 0xb1, 0xc5, 0xa4, 0xea, - 0x47, 0x93, 0x95, 0x22, 0xc6, 0x86, 0x59, 0x5c, 0x38, 0xb7, 0x9e, 0x19, 0xef, 0x22, 0xcc, 0x66, - 0xc6, 0xbb, 0x44, 0x9d, 0x33, 0xe3, 0x5d, 0xde, 0x76, 0x65, 0xc6, 0x5b, 0xd8, 0x42, 0x98, 0xf1, - 0x26, 0xd1, 0x7c, 0x45, 0x22, 0x0a, 0x32, 0xde, 0x43, 0x13, 0xa5, 0x61, 0x7a, 0x0f, 0x7e, 0xef, - 0x33, 0xe0, 0xb4, 0x15, 0xcb, 0x5d, 0x3e, 0xfa, 0xe3, 0x20, 0x01, 0x3e, 0xb7, 0x56, 0x42, 0x72, - 0xfb, 0x6e, 0xdf, 0xef, 0x5f, 0x1c, 0x7b, 0xad, 0x4b, 0xdf, 0x7b, 0xdb, 0x75, 0x50, 0x8f, 0xaf, - 0x79, 0x9e, 0x26, 0x81, 0x7d, 0x11, 0xb1, 0x05, 0xfd, 0x32, 0xe2, 0x0b, 0x45, 0xf9, 0x3d, 0xc7, - 0x3e, 0x79, 0x65, 0x1f, 0xbb, 0x2d, 0xd7, 0x7b, 0xbb, 0x14, 0x57, 0x1f, 0x59, 0x5d, 0x9a, 0x54, - 0xa6, 0x43, 0x6d, 0x5f, 0x55, 0x9d, 0x7d, 0x69, 0xbb, 0x2d, 0xfb, 0xb8, 0xe5, 0xf8, 0xc7, 0x76, - 0xa7, 0xf9, 0x2f, 0xb7, 0xe9, 0xbd, 0xb2, 0xe0, 0x57, 0xfc, 0xe9, 0x57, 0xca, 0x4e, 0xb6, 0xec, - 0x7a, 0x4e, 0xdf, 0x6d, 0x5e, 0xd8, 0x2d, 0xaa, 0x8e, 0xaa, 0x2b, 0xd0, 0xd9, 0x35, 0x7f, 0xf7, - 0xfb, 0x6e, 0x93, 0x52, 0xa3, 0xd4, 0xf2, 0x96, 0x5a, 0xcb, 0xed, 0xbc, 0xf6, 0xbb, 0xbd, 0x73, - 0xcf, 0x39, 0xf1, 0xdc, 0xf3, 0xce, 0x82, 0xea, 0xa8, 0x3b, 0xea, 0xae, 0x08, 0xdd, 0x35, 0x9d, - 0x96, 0xfd, 0x96, 0x6a, 0xa3, 0xda, 0x8a, 0x53, 0x9b, 0x7f, 0x69, 0xf7, 0x5c, 0x7b, 0xe6, 0xea, - 0xa8, 0x3b, 0xea, 0x2e, 0x6f, 0xdd, 0xb9, 0xdd, 0xcb, 0x7d, 0xdf, 0xed, 0x78, 0x4e, 0xef, 0xd4, - 0x3e, 0x71, 0x7c, 0xbb, 0xd9, 0xec, 0x39, 0xfd, 0x3e, 0x95, 0x47, 0xe5, 0xe5, 0xad, 0xbc, 0x2c, - 0x5e, 0xf5, 0x4f, 0xce, 0x3b, 0x7d, 0xaf, 0x67, 0xbb, 0x1d, 0x8f, 0xc2, 0xa3, 0xf0, 0x72, 0x17, - 0x5e, 0xdb, 0x7e, 0xe3, 0xf7, 0x9c, 0xbe, 0xd3, 0xbb, 0x64, 0xb6, 0x8e, 0xda, 0x2b, 0x01, 0xf3, - 0x6c, 0xcf, 0xeb, 0xb9, 0xc7, 0x17, 0x9e, 0x43, 0x77, 0x47, 0xc9, 0xe5, 0x2e, 0xb9, 0x0b, 0xcf, - 0x6d, 0xb9, 0xff, 0x76, 0x9a, 0x74, 0x74, 0x54, 0x5d, 0x71, 0xaa, 0x73, 0xde, 0x78, 0x4e, 0xa7, - 0xe9, 0x34, 0x7d, 0xbb, 0xd9, 0x76, 0x3b, 0xfe, 0x59, 0xef, 0xfc, 0xa2, 0x4b, 0xdd, 0x51, 0x77, - 0x79, 0xeb, 0xce, 0x6e, 0xfe, 0xee, 0xb7, 0xec, 0x0e, 0x5f, 0x4e, 0x50, 0x6e, 0x85, 0x1c, 0xae, - 0x9d, 0x2c, 0x78, 0x75, 0x9a, 0x7e, 0xab, 0x4f, 0x1f, 0x47, 0xd1, 0xe5, 0x2e, 0x3a, 0xb7, 0x7b, - 0xd9, 0x60, 0xce, 0x8e, 0xca, 0x2b, 0x5e, 0x79, 0x9e, 0xe3, 0x37, 0x9d, 0x53, 0xfb, 0xa2, 0xe5, - 0xf9, 0x6d, 0xc7, 0xeb, 0xb9, 0x27, 0x14, 0x1d, 0x45, 0x97, 0xb7, 0xe8, 0x66, 0xf1, 0x43, 0xdb, - 0x7e, 0xc3, 0x17, 0xb2, 0x54, 0x5d, 0x81, 0xaa, 0x9b, 0xab, 0xad, 0x75, 0xce, 0x73, 0x95, 0x62, - 0x2b, 0xc0, 0xc5, 0xad, 0xdc, 0x1b, 0x73, 0x74, 0x54, 0x5d, 0x81, 0xc1, 0xeb, 0xe2, 0x35, 0x18, - 0x73, 0xc3, 0xd4, 0x5d, 0xc1, 0xf1, 0xeb, 0xbe, 0xdf, 0x71, 0xdc, 0xb3, 0x57, 0xc7, 0xe7, 0x3d, - 0x86, 0xaf, 0x14, 0x5e, 0xa1, 0x4c, 0xc7, 0xc4, 0x30, 0xa5, 0x56, 0x88, 0x8f, 0x6b, 0xd0, 0xc7, - 0x51, 0x78, 0x85, 0x0b, 0x4f, 0xd7, 0xfb, 0x56, 0xe8, 0x15, 0xbc, 0xe3, 0x2c, 0x4b, 0x6e, 0xef, - 0x4d, 0x6d, 0x6b, 0x4d, 0xdd, 0xc5, 0x94, 0x97, 0x34, 0x79, 0x69, 0xea, 0x22, 0xa6, 0xba, 0xe4, - 0x31, 0x09, 0x78, 0xb7, 0x30, 0x25, 0x25, 0x32, 0x94, 0x57, 0xd3, 0x15, 0x4c, 0x7d, 0x89, 0xd4, - 0x17, 0xf8, 0xcb, 0x66, 0xaa, 0x4a, 0xae, 0xaa, 0x34, 0x74, 0xf9, 0x52, 0x5f, 0xd2, 0xf4, 0xa5, - 0xad, 0x9b, 0x97, 0x0a, 0x93, 0xa6, 0x30, 0x65, 0x5d, 0xbb, 0x14, 0x98, 0x34, 0x81, 0xe9, 0xeb, - 0xce, 0xa5, 0xc6, 0x44, 0x62, 0x98, 0x86, 0x2e, 0x5c, 0x4a, 0x4b, 0x9a, 0xb4, 0x34, 0x75, 0xdb, - 0x52, 0x5d, 0xd2, 0xd4, 0xa5, 0xab, 0xab, 0x96, 0xfa, 0x92, 0xa6, 0x2f, 0x15, 0xdd, 0xb3, 0x94, - 0x95, 0xb8, 0x43, 0x51, 0x4f, 0x97, 0x2c, 0xc5, 0x25, 0x4d, 0x5c, 0xda, 0xba, 0x61, 0xa9, 0x30, - 0x69, 0x0a, 0x53, 0xd4, 0xf5, 0x4a, 0x71, 0x49, 0x13, 0x97, 0xa6, 0xee, 0x56, 0xaa, 0x4b, 0x9a, - 0xba, 0x14, 0x74, 0xb1, 0x52, 0x54, 0xe2, 0x5c, 0x96, 0xa2, 0x6e, 0x55, 0xaa, 0x4b, 0x5e, 0xb0, - 0xa8, 0xa9, 0x2b, 0x95, 0xfa, 0x12, 0x18, 0x2f, 0x6a, 0xea, 0x3e, 0xa5, 0xc0, 0x44, 0x32, 0x17, - 0x13, 0xa8, 0x94, 0xd4, 0x46, 0x7d, 0x56, 0x83, 0x3e, 0x8b, 0x02, 0xcb, 0x4d, 0x60, 0x7c, 0x9f, - 0x48, 0x59, 0x6d, 0x40, 0x56, 0xbd, 0xf3, 0x0b, 0xcf, 0xe9, 0xf9, 0x27, 0x76, 0x97, 0x77, 0xf1, - 0x52, 0x6f, 0xa5, 0xea, 0xee, 0xf1, 0xbf, 0x71, 0xee, 0x02, 0x25, 0x57, 0x88, 0xe4, 0xec, 0xd6, - 0xd9, 0x79, 0xcf, 0xf5, 0x5e, 0xb5, 0x39, 0x7a, 0xa1, 0xdc, 0x0f, 0x47, 0x2f, 0x70, 0x87, 0xf3, - 0x30, 0xa1, 0xb4, 0x78, 0x68, 0x50, 0x59, 0xd5, 0x08, 0xe8, 0xbb, 0x9f, 0x07, 0xf4, 0x8c, 0xbb, - 0xa8, 0xb6, 0xe2, 0x55, 0xd7, 0xed, 0x39, 0xa7, 0xee, 0x1b, 0xff, 0xb4, 0x65, 0x9f, 0x71, 0xd8, - 0x1d, 0xf5, 0x56, 0x94, 0xde, 0x78, 0xd9, 0x13, 0xd5, 0x56, 0x80, 0xda, 0xe6, 0x6f, 0x8e, 0x97, - 0x08, 0x47, 0xc5, 0x51, 0x71, 0xf9, 0x2b, 0xce, 0xb3, 0xcf, 0xf6, 0x1b, 0x14, 0x1a, 0x85, 0x56, - 0x80, 0x6b, 0x6b, 0xd0, 0xb5, 0x51, 0x71, 0x85, 0xba, 0x36, 0x26, 0xc9, 0xcb, 0xfd, 0x30, 0x49, - 0xce, 0x6d, 0xcd, 0xc8, 0x9f, 0xba, 0x62, 0x84, 0x4f, 0x55, 0x55, 0x4b, 0x55, 0x5a, 0x22, 0x79, - 0x2a, 0x8b, 0x11, 0x3b, 0x05, 0xa5, 0xdd, 0x55, 0x35, 0xe8, 0xaa, 0xa8, 0x2c, 0x46, 0xe0, 0x0a, - 0x22, 0x6f, 0xbc, 0x88, 0x1b, 0xeb, 0x39, 0xe3, 0x58, 0x8b, 0x61, 0x29, 0x88, 0xd3, 0xb6, 0xec, - 0x28, 0x1a, 0xa7, 0x41, 0x1a, 0x8e, 0x23, 0xeb, 0x08, 0xc8, 0x5d, 0x5b, 0xc9, 0xe0, 0xbd, 0xb9, - 0x0d, 0x26, 0x41, 0xfa, 0x7e, 0xe6, 0xa0, 0xeb, 0xe3, 0x89, 0x89, 0x06, 0xe3, 0xe8, 0x3a, 0xbc, - 0xa9, 0x45, 0x26, 0xfd, 0x30, 0x8e, 0xff, 0xac, 0x85, 0x51, 0x92, 0x06, 0xd1, 0xc0, 0xd4, 0xbf, - 0xfc, 0x42, 0xb2, 0xf6, 0x95, 0xfa, 0x24, 0x1e, 0xa7, 0xe3, 0xc1, 0x78, 0x94, 0x64, 0xbf, 0xab, - 0x87, 0x49, 0x98, 0xd4, 0x47, 0xe6, 0xce, 0x8c, 0x96, 0xbf, 0xd4, 0x47, 0x61, 0xf4, 0x67, 0x2d, - 0x49, 0x83, 0xd4, 0xd4, 0x86, 0x41, 0x1a, 0x5c, 0x05, 0x89, 0xa9, 0x8f, 0x92, 0x49, 0x3d, 0x1d, - 0xdd, 0x25, 0xb3, 0x7f, 0xd4, 0x6f, 0xd3, 0xda, 0xec, 0xbb, 0x6a, 0x91, 0x09, 0x6f, 0xde, 0x5f, - 0x8d, 0xe3, 0x5a, 0x90, 0xa6, 0x71, 0x78, 0x35, 0x4d, 0x67, 0x36, 0x2c, 0xbe, 0x94, 0x64, 0xbf, - 0xab, 0x3f, 0x98, 0x93, 0x99, 0x91, 0x4c, 0xaf, 0xe6, 0x7f, 0xd8, 0xe2, 0xd7, 0x7a, 0x70, 0x17, - 0x84, 0xa3, 0xe0, 0x6a, 0x64, 0x6a, 0x57, 0x41, 0x34, 0xfc, 0x10, 0x0e, 0xd3, 0xf7, 0xf5, 0xf9, - 0xdf, 0x8f, 0x71, 0xf8, 0xc8, 0xdf, 0xa8, 0xb2, 0x2d, 0x14, 0xee, 0x42, 0xd0, 0x5c, 0x47, 0x55, - 0x5d, 0x06, 0x40, 0x0d, 0xa3, 0x95, 0xa4, 0xf1, 0x74, 0x90, 0x46, 0x4b, 0xdc, 0xee, 0x2c, 0x9e, - 0xb5, 0xbb, 0x5c, 0xa3, 0xdf, 0x5d, 0x3e, 0x60, 0xdf, 0x4d, 0xc2, 0xc4, 0x6f, 0xcd, 0x9e, 0xac, - 0xdf, 0x4a, 0x26, 0xbe, 0x37, 0xba, 0xf3, 0xdb, 0xe9, 0xec, 0x8b, 0x9d, 0xe5, 0x13, 0xb2, 0x57, - 0x4f, 0xcf, 0x5f, 0x7d, 0xc5, 0xcf, 0xfe, 0x94, 0xfe, 0xfc, 0x09, 0xf9, 0xf6, 0xea, 0x09, 0x1d, - 0x67, 0x0f, 0xe8, 0x17, 0xfa, 0x28, 0x65, 0xfe, 0xc9, 0xca, 0xd4, 0x5f, 0x1b, 0x8c, 0xa3, 0x24, - 0x8d, 0x83, 0x30, 0x4a, 0x13, 0xf1, 0x6e, 0x2a, 0x0b, 0x38, 0x9f, 0x36, 0x5f, 0xf8, 0x79, 0xf0, - 0x3a, 0x8c, 0x86, 0xd6, 0xd1, 0xd6, 0x8e, 0x70, 0x33, 0x4f, 0xe6, 0x3e, 0xdf, 0x3a, 0xda, 0xda, - 0x16, 0x6e, 0x68, 0x37, 0x36, 0xd7, 0xe1, 0x47, 0x8c, 0xb3, 0x75, 0x25, 0xdc, 0xf1, 0x60, 0x7e, - 0x9e, 0x21, 0x9c, 0x39, 0xfd, 0xf1, 0x34, 0x1e, 0x18, 0x98, 0xa8, 0xc7, 0x7a, 0x6d, 0xee, 0x3f, - 0x8c, 0xe3, 0xd9, 0x0e, 0xb3, 0x26, 0x0b, 0x65, 0x80, 0x84, 0x98, 0xaf, 0x82, 0xc4, 0x8e, 0x6f, - 0xa6, 0xb7, 0x26, 0x4a, 0xad, 0xa3, 0xad, 0x34, 0x9e, 0x1a, 0x94, 0xd8, 0xf8, 0xc1, 0xea, 0x4c, - 0xd8, 0x8c, 0x69, 0x54, 0xc7, 0x34, 0xcd, 0x30, 0xc6, 0x70, 0xb8, 0x4f, 0x11, 0x02, 0x8e, 0x2f, - 0xfb, 0x3b, 0xce, 0x41, 0x71, 0x6b, 0x18, 0xb8, 0x03, 0x87, 0x3d, 0x88, 0xf8, 0x03, 0x8c, 0x41, - 0xa8, 0x38, 0x04, 0x8f, 0x45, 0xf0, 0x78, 0x84, 0x8d, 0x49, 0x18, 0xb8, 0x04, 0x82, 0x4d, 0x70, - 0xf8, 0x94, 0x19, 0x8c, 0x94, 0x1d, 0x7a, 0xf6, 0xb4, 0xc1, 0xc9, 0x11, 0x81, 0x43, 0x14, 0x2c, - 0x4c, 0x21, 0x43, 0x95, 0x02, 0xb8, 0x42, 0x87, 0x2c, 0x35, 0xb0, 0xa5, 0x06, 0xba, 0x74, 0xc0, - 0x17, 0x16, 0x84, 0x81, 0xc1, 0x18, 0x2c, 0x94, 0x3d, 0x01, 0x67, 0xb8, 0x1e, 0x73, 0x9d, 0xd1, - 0x50, 0x5d, 0x26, 0x26, 0xaa, 0xc1, 0x23, 0x9b, 0x06, 0x74, 0x53, 0x84, 0x70, 0x5a, 0x50, 0x4e, - 0x1d, 0xd2, 0xa9, 0x43, 0x3b, 0x5d, 0x88, 0x87, 0x89, 0x7a, 0xa0, 0xc8, 0x07, 0x8f, 0x7e, 0x4f, - 0x20, 0x60, 0x2d, 0x1c, 0xe2, 0x3b, 0xdb, 0x75, 0x1a, 0x9c, 0x2d, 0x0b, 0xdc, 0x3f, 0x2d, 0xc1, - 0x70, 0x1b, 0x7c, 0x19, 0xe8, 0x80, 0xa8, 0x09, 0x14, 0x15, 0x02, 0xa3, 0x36, 0x70, 0x54, 0x0b, - 0x90, 0x6a, 0x41, 0x52, 0x27, 0x50, 0x62, 0x83, 0x25, 0x38, 0x60, 0x66, 0x92, 0xf2, 0xee, 0x27, - 0x46, 0xd7, 0x89, 0x33, 0x32, 0xc1, 0x75, 0x6c, 0xae, 0x35, 0x9c, 0x38, 0xab, 0xcc, 0xdd, 0x81, - 0x82, 0xb5, 0x74, 0x97, 0xed, 0x5b, 0x2f, 0x5e, 0x2c, 0x5a, 0x21, 0xeb, 0x9f, 0xa3, 0xf4, 0x2f, - 0x74, 0x61, 0x74, 0x5f, 0xdf, 0xa7, 0xa8, 0x45, 0x47, 0xad, 0x9a, 0xd0, 0x72, 0xb1, 0x1c, 0x1d, - 0x21, 0xe5, 0x0e, 0x43, 0x4a, 0x86, 0x94, 0x0c, 0x29, 0x19, 0x52, 0x32, 0xa4, 0x64, 0x48, 0x49, - 0x1e, 0xab, 0x56, 0x48, 0x89, 0xfe, 0xee, 0x22, 0x5b, 0xc8, 0xc3, 0x24, 0x86, 0x23, 0x6d, 0xa3, - 0xc9, 0x91, 0x86, 0x4c, 0x7c, 0x0f, 0x78, 0x6e, 0x2b, 0x59, 0x8e, 0x16, 0x00, 0xd5, 0x08, 0xa2, - 0x8a, 0x81, 0x54, 0x2b, 0x98, 0xaa, 0x07, 0x54, 0xf5, 0xa0, 0xaa, 0x1b, 0x58, 0x75, 0x80, 0xab, - 0x12, 0x80, 0xcd, 0xa4, 0xa6, 0xe6, 0xdd, 0xc8, 0xda, 0x89, 0x15, 0x1a, 0x63, 0xae, 0x47, 0xe3, - 0x20, 0x7d, 0xb9, 0xab, 0xe9, 0xd4, 0x5a, 0x42, 0xe0, 0xa1, 0xa2, 0x25, 0xb5, 0x4c, 0x74, 0x33, - 0x0f, 0x40, 0xfe, 0x50, 0xe5, 0xc6, 0x75, 0x61, 0xc5, 0xfc, 0x27, 0xd5, 0x0e, 0x23, 0x75, 0xbc, - 0xa4, 0x34, 0xbc, 0x5a, 0x5b, 0xde, 0xfc, 0xba, 0x65, 0xeb, 0x68, 0xab, 0xa1, 0x74, 0x7d, 0xa7, - 0x71, 0x30, 0x48, 0xc3, 0x71, 0xd4, 0x0c, 0x6f, 0xc2, 0x79, 0xc3, 0xf4, 0xb6, 0xba, 0x75, 0x7e, - 0xfa, 0x55, 0xa1, 0x4b, 0x09, 0x3e, 0xd2, 0xa5, 0xd0, 0xa5, 0xd0, 0xa5, 0x30, 0x1a, 0xe3, 0x6a, - 0x1e, 0x3e, 0xef, 0x7e, 0xe1, 0xcf, 0x83, 0x47, 0xee, 0x66, 0xdc, 0x98, 0xae, 0x3e, 0x95, 0xb5, - 0x40, 0x5f, 0x53, 0xbf, 0x8a, 0x52, 0x72, 0xe0, 0xbb, 0x1e, 0xa4, 0x0d, 0xc5, 0x77, 0x3d, 0x38, - 0x6e, 0x82, 0xef, 0x7a, 0xc0, 0x17, 0xc8, 0x77, 0x3d, 0x64, 0xc0, 0x82, 0xa4, 0xa6, 0xf7, 0x5d, - 0xcf, 0x34, 0x8c, 0x74, 0xbe, 0xe6, 0x39, 0x50, 0xb4, 0xa4, 0x5e, 0x10, 0xdd, 0x18, 0xbe, 0xe5, - 0x91, 0xff, 0x83, 0xe2, 0x5b, 0x1e, 0xdc, 0xe5, 0xad, 0x52, 0xb2, 0xdb, 0x4c, 0xc9, 0x12, 0x37, - 0x04, 0xb9, 0x14, 0xbe, 0xe5, 0x81, 0x77, 0x29, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, 0xfe, 0xc1, 0xee, - 0xe1, 0x1e, 0x7d, 0x0b, 0x03, 0x32, 0xae, 0x66, 0x93, 0x1f, 0xbe, 0xee, 0xe1, 0x0a, 0x2a, 0x4f, - 0x0e, 0xa8, 0xf7, 0x7d, 0x3f, 0xbb, 0x9e, 0x2a, 0x5c, 0xea, 0xfb, 0xe4, 0x6d, 0xa0, 0x4f, 0x7e, - 0xb5, 0xfe, 0xf8, 0x7f, 0x78, 0xf4, 0x65, 0xa0, 0x5b, 0xc3, 0xf5, 0xb9, 0x0d, 0x8e, 0xbc, 0x2c, - 0x34, 0x52, 0x30, 0xf7, 0x5a, 0xde, 0x58, 0x5b, 0xad, 0x30, 0x49, 0xed, 0x34, 0x05, 0x9f, 0xe1, - 0xd9, 0x0e, 0x23, 0x67, 0x64, 0x6e, 0xcd, 0xe2, 0x8e, 0x9d, 0x68, 0x3a, 0x1a, 0x01, 0x4f, 0x8b, - 0x69, 0x07, 0x1f, 0xf5, 0x2c, 0xe6, 0x3c, 0x1e, 0x9a, 0xd8, 0x0c, 0x8f, 0xef, 0x97, 0x4b, 0xa1, - 0xa3, 0x22, 0x89, 0x91, 0xc0, 0xf2, 0x20, 0x30, 0x0b, 0x7a, 0x40, 0x56, 0x3c, 0x1d, 0xa4, 0xd1, - 0xf2, 0x3d, 0x60, 0x67, 0xf1, 0x13, 0x73, 0x97, 0x4f, 0xca, 0xef, 0x2e, 0x7f, 0x4c, 0xbe, 0x9b, - 0x84, 0x89, 0xdf, 0x9a, 0xfd, 0x7c, 0xfc, 0x56, 0x32, 0xf1, 0xbd, 0xd1, 0x9d, 0xdf, 0x4e, 0x67, - 0x5f, 0xec, 0x2c, 0x9f, 0xb3, 0xbd, 0xfa, 0x19, 0xf8, 0xab, 0xaf, 0xf8, 0xd9, 0x9f, 0xd2, 0x9f, - 0x3f, 0x67, 0xff, 0x78, 0xf5, 0x44, 0x4f, 0xb2, 0x27, 0xe7, 0x3f, 0xfc, 0x16, 0x13, 0x60, 0x3f, - 0xf1, 0x3a, 0x1e, 0xfa, 0x7f, 0x3d, 0x7e, 0x9f, 0xfe, 0xfe, 0x59, 0x7f, 0x8f, 0xe5, 0x9f, 0x70, - 0x76, 0x39, 0xd0, 0x0e, 0xb7, 0x6e, 0xc7, 0x43, 0x33, 0x42, 0xac, 0x01, 0xcf, 0x0a, 0x7d, 0xb2, + 0xaf, 0x32, 0x92, 0x34, 0x1e, 0x76, 0xd2, 0x68, 0xc2, 0x31, 0x1b, 0xd9, 0x1d, 0x74, 0x26, 0x37, + 0xd0, 0x6f, 0x4d, 0x6e, 0x9b, 0xef, 0x24, 0x61, 0xe2, 0xd7, 0x47, 0xf7, 0xcb, 0xaf, 0x27, 0x03, + 0xdf, 0xeb, 0x5d, 0xf9, 0x47, 0xa9, 0x33, 0xb8, 0xda, 0x74, 0xef, 0xdc, 0x14, 0xbf, 0x35, 0xbe, + 0x17, 0x7e, 0x7b, 0x7c, 0x0f, 0x7c, 0x67, 0x70, 0x55, 0x6d, 0x8f, 0x6f, 0x81, 0x3b, 0xbe, 0x03, + 0x4e, 0x57, 0x56, 0x0c, 0x93, 0x13, 0x29, 0x04, 0x45, 0x09, 0x63, 0x0c, 0xf5, 0x07, 0xc8, 0x95, + 0x16, 0x2c, 0xf2, 0xaa, 0xe8, 0x71, 0x73, 0x85, 0x45, 0xdd, 0x8f, 0x61, 0x34, 0xba, 0x85, 0x6b, + 0xc2, 0xcc, 0xda, 0x1b, 0x47, 0x56, 0x63, 0x67, 0x65, 0x55, 0x98, 0x61, 0x59, 0x1c, 0x91, 0x99, + 0xa1, 0xa6, 0xc0, 0xeb, 0x77, 0xcc, 0x51, 0x2e, 0x91, 0x18, 0xd3, 0xb3, 0xa0, 0x2b, 0x96, 0xb1, + 0x1b, 0x1f, 0xd5, 0xf5, 0xb7, 0x7e, 0x3c, 0xf2, 0x08, 0x23, 0xcb, 0x9e, 0x42, 0x07, 0x8f, 0x8d, + 0xc3, 0x20, 0xb1, 0xe2, 0x8b, 0xe1, 0xa5, 0x8a, 0x52, 0x63, 0x67, 0x25, 0x8d, 0x87, 0x4a, 0x6a, + 0x9d, 0x76, 0x6b, 0x65, 0x0e, 0x4c, 0x32, 0x73, 0x28, 0x66, 0x5e, 0x0b, 0x63, 0xa1, 0x94, 0x7c, + 0x5c, 0x7d, 0x8a, 0x0d, 0x26, 0xd3, 0x78, 0x9c, 0x99, 0x29, 0xd4, 0x3f, 0x65, 0x12, 0x00, 0xf1, + 0x44, 0x00, 0x81, 0x10, 0x00, 0x11, 0x03, 0x14, 0x82, 0x00, 0x47, 0x14, 0xe0, 0x08, 0x03, 0x16, + 0x71, 0x90, 0x49, 0x20, 0x84, 0x12, 0x09, 0xf1, 0x84, 0x22, 0x37, 0x50, 0x6e, 0x77, 0x61, 0x66, + 0x6c, 0x97, 0xdc, 0xca, 0x7b, 0x8c, 0x70, 0xac, 0x0a, 0x37, 0x53, 0x3a, 0xf1, 0x40, 0x22, 0x20, + 0x80, 0x44, 0x04, 0x8d, 0x90, 0xc0, 0x12, 0x13, 0x58, 0x82, 0x82, 0x49, 0x54, 0x64, 0x13, 0x16, + 0xe1, 0xc4, 0x25, 0xff, 0xc8, 0xbd, 0xeb, 0x81, 0xc2, 0x8a, 0xb8, 0xe3, 0x87, 0x11, 0x41, 0xb7, + 0x1b, 0xab, 0x04, 0x22, 0xec, 0x4e, 0xdb, 0x12, 0x1f, 0x00, 0x6c, 0x6d, 0x05, 0x69, 0xaa, 0xe2, + 0x08, 0x66, 0xdb, 0x83, 0xf1, 0xf7, 0x9b, 0x37, 0x9f, 0x57, 0xcd, 0xed, 0xc0, 0x3c, 0xb7, 0xcc, + 0xfd, 0xd3, 0x7f, 0xd6, 0x7e, 0xaf, 0xde, 0xec, 0xbc, 0xfd, 0x67, 0xeb, 0xe6, 0xfe, 0x9b, 0x3f, + 0x1e, 0xfb, 0xb1, 0xb5, 0xdf, 0xb7, 0x6e, 0x76, 0x66, 0xfc, 0x9f, 0xcd, 0x9b, 0x9d, 0x27, 0xfe, + 0x1d, 0x1b, 0x37, 0x6f, 0x1e, 0xfc, 0xe8, 0xe8, 0xfd, 0xf5, 0x59, 0xbf, 0x50, 0x9d, 0xf1, 0x0b, + 0xef, 0x67, 0xfd, 0xc2, 0xfb, 0x19, 0xbf, 0x30, 0xd3, 0xa4, 0xf5, 0x19, 0xbf, 0xb0, 0x71, 0xf3, + 0xe3, 0xc1, 0xcf, 0xbf, 0x79, 0xfc, 0x47, 0x37, 0x6f, 0xde, 0xfe, 0x98, 0xf5, 0xff, 0xb6, 0x6e, + 0x7e, 0xec, 0xbc, 0x7d, 0xfb, 0x1f, 0xf9, 0xa9, 0xe1, 0x94, 0xf3, 0x7b, 0xba, 0x25, 0x2d, 0x23, + 0x45, 0x48, 0x58, 0x79, 0xb2, 0x1a, 0x5b, 0xcb, 0x32, 0x96, 0x65, 0x2c, 0xcb, 0x58, 0x96, 0xb1, + 0x2c, 0x63, 0x59, 0xc6, 0xb2, 0x8c, 0x65, 0x19, 0x9b, 0x95, 0xb1, 0x5d, 0x15, 0xa5, 0x61, 0x7a, + 0x1d, 0xab, 0x73, 0xa4, 0x2a, 0x76, 0x03, 0xc0, 0x56, 0x67, 0x72, 0x6b, 0x77, 0x83, 0x04, 0x28, + 0x4f, 0xdc, 0xee, 0x17, 0x75, 0xda, 0x93, 0x8d, 0x91, 0x48, 0x0b, 0x23, 0x11, 0x17, 0x45, 0x82, + 0x8a, 0x14, 0x27, 0xf2, 0xf7, 0x3d, 0xab, 0xc5, 0x05, 0xa3, 0xc4, 0xcf, 0x5c, 0x71, 0x74, 0xf7, + 0x4f, 0xdc, 0xb8, 0x45, 0x08, 0xbd, 0x08, 0x42, 0x56, 0xfd, 0xa0, 0xe9, 0x3a, 0xde, 0xe1, 0x11, + 0x77, 0x6e, 0x2d, 0xf6, 0xc5, 0x9d, 0x5b, 0x24, 0x05, 0xda, 0x05, 0x73, 0x42, 0x85, 0x41, 0x9b, + 0x48, 0x91, 0x52, 0x8b, 0xf2, 0x20, 0x03, 0xa2, 0x67, 0xde, 0x28, 0xf2, 0x6c, 0xbf, 0x66, 0xef, + 0x5b, 0xc7, 0x75, 0xcf, 0x3f, 0xb2, 0x3d, 0xd7, 0xd9, 0x63, 0xa5, 0x41, 0x10, 0x3d, 0x17, 0x44, + 0xc7, 0x8d, 0xbd, 0x66, 0xa3, 0xed, 0xb9, 0x96, 0xd3, 0xb0, 0x6b, 0x7e, 0xbd, 0xdd, 0x22, 0x88, + 0x08, 0xa2, 0xe7, 0x82, 0x08, 0xf1, 0xf4, 0x63, 0xa2, 0x47, 0x1e, 0x7a, 0xfc, 0x13, 0xcb, 0x75, + 0x2c, 0xcf, 0x69, 0x36, 0x88, 0x23, 0xe2, 0xe8, 0xb9, 0x38, 0x1a, 0xef, 0xb4, 0x6d, 0xd8, 0xce, + 0xc1, 0xe1, 0x6e, 0xd3, 0xf5, 0xad, 0x5a, 0xcd, 0xb5, 0xdb, 0x6d, 0x02, 0x89, 0x40, 0x7a, 0x2e, + 0x90, 0xac, 0xda, 0x91, 0xd3, 0xf0, 0x0f, 0xdc, 0xe6, 0x31, 0xd9, 0x10, 0xe1, 0xf3, 0x02, 0xf8, + 0xfc, 0xc1, 0x93, 0x56, 0x08, 0x9d, 0x97, 0x40, 0xe7, 0xc8, 0xfa, 0x94, 0xd1, 0x21, 0xc0, 0x23, + 0x73, 0x89, 0x22, 0x41, 0x44, 0xa8, 0x4a, 0x22, 0x44, 0x20, 0xcd, 0x87, 0x51, 0x3b, 0x0d, 0xcf, + 0x76, 0xf7, 0xad, 0x3d, 0x9b, 0x48, 0x22, 0x92, 0x5e, 0x55, 0xe3, 0xd7, 0x9b, 0x04, 0x0f, 0xc1, + 0xf3, 0x7c, 0xf0, 0xe4, 0x64, 0xc8, 0xcf, 0x7b, 0xd5, 0x1e, 0x81, 0x44, 0x20, 0x3d, 0x1b, 0x48, + 0xf6, 0x27, 0xcf, 0x6e, 0xd4, 0xec, 0x1a, 0x2b, 0x7c, 0xe2, 0xe8, 0xd5, 0x04, 0x9b, 0xbc, 0x88, + 0x48, 0x7a, 0x35, 0x92, 0x8e, 0x3d, 0xa7, 0xee, 0xfc, 0xcf, 0xae, 0xb1, 0xe0, 0x27, 0x8a, 0x5e, + 0x8e, 0x22, 0xab, 0xf6, 0x87, 0x5f, 0xb7, 0x1a, 0xec, 0x3a, 0x12, 0x3e, 0x2f, 0x81, 0xcf, 0x88, + 0x0b, 0xe5, 0x9d, 0x47, 0x3e, 0xc6, 0x27, 0x8a, 0x5e, 0x5e, 0xe2, 0xb7, 0xdc, 0xa6, 0x67, 0xef, + 0x79, 0x4e, 0xb3, 0x91, 0x0d, 0x37, 0x12, 0x47, 0xc4, 0xd1, 0x73, 0x93, 0xd9, 0x89, 0xe5, 0xd4, + 0xad, 0xdd, 0xba, 0x4d, 0x4e, 0x44, 0x18, 0xbd, 0x32, 0x1c, 0x59, 0x9e, 0xe7, 0x3a, 0xbb, 0xc7, + 0x9e, 0xcd, 0xe2, 0x8c, 0x10, 0x7a, 0x7e, 0x71, 0xd6, 0x70, 0xed, 0xb6, 0xed, 0x9e, 0xfc, 0x7f, + 0xf6, 0xce, 0xae, 0xa9, 0x6d, 0x6c, 0x59, 0xff, 0xf7, 0xf3, 0x29, 0x28, 0xd5, 0xb9, 0xd8, 0xbb, + 0x6a, 0x1c, 0x03, 0x31, 0x30, 0x70, 0x27, 0xb0, 0x20, 0x9a, 0x18, 0xe3, 0xb2, 0x05, 0x3b, 0xb3, + 0x67, 0xe7, 0xa8, 0x84, 0xbd, 0x20, 0x3a, 0x31, 0xb2, 0x4b, 0x92, 0x49, 0xf8, 0xef, 0xc9, 0x77, + 0xff, 0x97, 0xdf, 0x04, 0x89, 0xf1, 0xe4, 0xcd, 0x92, 0xfa, 0x69, 0x3d, 0xbe, 0x98, 0x64, 0x98, + 0x21, 0xe9, 0x25, 0x9e, 0xd5, 0xeb, 0xd7, 0xad, 0xee, 0x5e, 0x0c, 0xcf, 0xa8, 0xa3, 0x9f, 0xd1, + 0x51, 0xd7, 0xe9, 0xb9, 0xcd, 0x4b, 0xbb, 0x45, 0x15, 0x51, 0x45, 0x3f, 0x11, 0xa5, 0xd9, 0x6f, + 0xfc, 0xb9, 0x3f, 0x22, 0x1c, 0x51, 0x4b, 0x1b, 0x80, 0x23, 0xc8, 0x64, 0x11, 0x1b, 0xcb, 0xab, + 0xbe, 0x25, 0x95, 0xf4, 0x80, 0x02, 0x77, 0xef, 0x51, 0x2c, 0xc5, 0x47, 0x22, 0xb0, 0x5d, 0x7a, + 0x14, 0x4b, 0x29, 0x87, 0x3b, 0x58, 0x1a, 0x9f, 0x2a, 0x29, 0x4f, 0x25, 0x88, 0x5d, 0x77, 0xd4, + 0x4b, 0xd1, 0x7a, 0x01, 0xef, 0xae, 0xa3, 0x60, 0x8a, 0x16, 0x0c, 0x64, 0x8d, 0x1d, 0x65, 0x52, + 0xbc, 0x4c, 0xc0, 0xba, 0xe5, 0x28, 0x91, 0xa2, 0x25, 0x82, 0xdc, 0x15, 0x47, 0xb5, 0x94, 0x00, + 0x2a, 0x0d, 0x82, 0x0a, 0x05, 0xf3, 0x7d, 0x64, 0x0b, 0x5c, 0xcd, 0x4d, 0xc5, 0x94, 0x12, 0x3b, + 0x63, 0x75, 0xb3, 0x51, 0x24, 0x45, 0x8b, 0x04, 0xbc, 0x6b, 0x8d, 0x82, 0x29, 0x5a, 0x30, 0xd8, + 0xdd, 0x69, 0xd4, 0x4b, 0x29, 0xa0, 0x4b, 0x6e, 0xa1, 0x62, 0xbe, 0x59, 0x31, 0xc8, 0xdd, 0x66, + 0x54, 0x4b, 0xd1, 0x6a, 0x81, 0xec, 0x2a, 0xa3, 0x4c, 0x8a, 0x96, 0x09, 0x72, 0xf7, 0x18, 0xd5, + 0x52, 0x4a, 0xe8, 0x0c, 0xdb, 0x25, 0x46, 0xbd, 0x14, 0x7e, 0x08, 0x21, 0x77, 0x83, 0x51, 0x2e, + 0xa5, 0xb8, 0x17, 0xc4, 0xae, 0x2f, 0x4a, 0xa5, 0xf0, 0x60, 0x08, 0xba, 0xbb, 0x8b, 0x7a, 0x29, + 0x5a, 0x2f, 0xc8, 0x5d, 0x5c, 0x54, 0x4b, 0xe1, 0x51, 0x11, 0x7c, 0xb7, 0x16, 0x35, 0x53, 0x0a, + 0xbc, 0x30, 0xd9, 0x42, 0x89, 0x3c, 0x91, 0x48, 0x87, 0x37, 0xc7, 0x51, 0x3d, 0x9b, 0x56, 0xd1, + 0xec, 0xcd, 0xd1, 0xe2, 0xfa, 0x4a, 0x8e, 0x0c, 0xa3, 0x82, 0xbe, 0x5f, 0x41, 0x9e, 0x7d, 0xb6, + 0xdf, 0xa0, 0x70, 0x28, 0x9c, 0x1f, 0x70, 0x3d, 0xfb, 0x74, 0x3d, 0x54, 0xd0, 0x4f, 0xb9, 0x1e, + 0xca, 0x86, 0xb2, 0xf9, 0x5e, 0xd9, 0x74, 0xba, 0xce, 0xa9, 0xfb, 0x86, 0x23, 0x52, 0xa9, 0x9e, + 0x9f, 0x50, 0xcf, 0x69, 0xcb, 0x3e, 0xeb, 0x71, 0x6a, 0x4a, 0xbe, 0x1f, 0x4e, 0x4d, 0x61, 0xfe, + 0x43, 0x5b, 0xe4, 0x4a, 0xa5, 0x30, 0x42, 0xa5, 0x40, 0x18, 0x89, 0x52, 0x29, 0x8c, 0x38, 0x29, + 0x0f, 0x5d, 0xf2, 0x40, 0x8c, 0x2c, 0xa9, 0x12, 0x46, 0x90, 0x7a, 0x22, 0x47, 0xf9, 0x11, 0xa3, + 0xec, 0xe7, 0x28, 0xd7, 0x3a, 0x99, 0x96, 0x09, 0xf5, 0x9e, 0x96, 0x1d, 0x45, 0xa3, 0x34, 0x48, + 0xc3, 0x51, 0x64, 0x1d, 0x09, 0xf6, 0x9b, 0x56, 0xd2, 0x7f, 0x67, 0xee, 0x82, 0x71, 0x90, 0xbe, + 0x9b, 0x7a, 0xca, 0xfa, 0x68, 0x6c, 0xa2, 0xfe, 0x28, 0xba, 0x09, 0x6f, 0x6b, 0x91, 0x49, 0x3f, + 0x8c, 0xe2, 0xf7, 0xb5, 0x30, 0x4a, 0xd2, 0x20, 0xea, 0x9b, 0xfa, 0x97, 0x5f, 0x48, 0x56, 0xbe, + 0x52, 0x1f, 0xc7, 0xa3, 0x74, 0xd4, 0x1f, 0x0d, 0x93, 0xec, 0x77, 0xf5, 0x30, 0x09, 0x93, 0xfa, + 0xd0, 0xdc, 0x9b, 0xe1, 0xe2, 0x97, 0xfa, 0x30, 0x8c, 0xde, 0xd7, 0x92, 0x34, 0x48, 0x4d, 0x6d, + 0x10, 0xa4, 0xc1, 0x75, 0x90, 0x98, 0xfa, 0x30, 0x19, 0xd7, 0xd3, 0xe1, 0x7d, 0x32, 0xfd, 0x47, + 0xfd, 0x2e, 0xad, 0x85, 0xe3, 0xfb, 0xfd, 0x5a, 0x6c, 0x82, 0xfe, 0xbb, 0xe0, 0x3a, 0x1c, 0x86, + 0xe9, 0x43, 0x7d, 0x1c, 0x9b, 0x9b, 0xf0, 0xa3, 0x49, 0x16, 0xbf, 0xa9, 0x27, 0x93, 0xeb, 0xd9, + 0x37, 0xcc, 0x7f, 0xad, 0xcf, 0xbe, 0x21, 0x19, 0x4d, 0xe2, 0xbe, 0xa9, 0xc5, 0xa3, 0x49, 0x6a, + 0xe2, 0x5a, 0x38, 0xa8, 0xcf, 0xfe, 0x16, 0x99, 0x2e, 0x5e, 0xde, 0x76, 0x92, 0x65, 0x91, 0xb0, + 0x8d, 0x2d, 0x7d, 0x43, 0xeb, 0xde, 0xc8, 0x02, 0xeb, 0xab, 0xac, 0x24, 0x8d, 0x27, 0xfd, 0x34, + 0x5a, 0x30, 0x66, 0x7b, 0xfe, 0x04, 0xdd, 0xc5, 0x03, 0xf4, 0x3b, 0x8b, 0xc7, 0xe6, 0xbb, 0x49, + 0x98, 0xf8, 0xad, 0xe9, 0xf3, 0xf2, 0x5b, 0xc9, 0xd8, 0xf7, 0x86, 0xf7, 0xfe, 0x79, 0xea, 0x8e, + 0xef, 0xf7, 0xbb, 0x4f, 0x1e, 0x8a, 0xdf, 0x99, 0x3d, 0x0b, 0xbf, 0x37, 0x7b, 0x06, 0xfe, 0xf4, + 0x3f, 0xf7, 0x66, 0x8f, 0xa0, 0x3b, 0x7b, 0x02, 0xee, 0x40, 0x96, 0x0f, 0x93, 0xe3, 0x29, 0x04, + 0x79, 0x09, 0x6b, 0xae, 0xe7, 0x5a, 0x12, 0x0e, 0x12, 0x71, 0x2e, 0x22, 0x8b, 0x85, 0x9e, 0x1a, + 0x29, 0xcc, 0xc3, 0xbe, 0x0e, 0xa3, 0x81, 0x75, 0xb4, 0xb5, 0x23, 0xcc, 0xac, 0x93, 0x99, 0x17, + 0xb5, 0x8e, 0xb6, 0xb6, 0x85, 0x19, 0x36, 0xf7, 0x19, 0x32, 0x4f, 0xa3, 0xa5, 0xdc, 0x46, 0xfd, + 0xda, 0xf4, 0xdc, 0x90, 0xe8, 0xbf, 0xe7, 0x0e, 0x56, 0x2c, 0x9d, 0x5b, 0xaf, 0xcd, 0xc3, 0x87, + 0x51, 0x3c, 0x78, 0xdc, 0xb4, 0x42, 0x8b, 0x8c, 0xad, 0x57, 0x41, 0x62, 0xc7, 0xb7, 0x93, 0x3b, + 0x13, 0xa5, 0xd6, 0xd1, 0x56, 0x1a, 0x4f, 0x8c, 0xd4, 0x98, 0xec, 0xd1, 0xca, 0x4c, 0x98, 0xa4, + 0x70, 0x28, 0x0a, 0x6f, 0x86, 0xb1, 0x4c, 0x87, 0xf7, 0x78, 0xae, 0xca, 0xf5, 0x28, 0xab, 0x0c, + 0x20, 0xd5, 0xa5, 0xc8, 0x44, 0x01, 0xf1, 0x48, 0x80, 0x80, 0x06, 0x40, 0x88, 0x80, 0x82, 0x0a, + 0x70, 0xc8, 0x00, 0x87, 0x0e, 0x58, 0x08, 0x21, 0x13, 0x25, 0x84, 0x22, 0x85, 0x78, 0xb4, 0xc8, + 0x0c, 0x9c, 0x27, 0xb3, 0xc5, 0x3b, 0xa1, 0xa5, 0x5f, 0x9f, 0x9b, 0x2b, 0x7c, 0x3f, 0xcb, 0x06, + 0x0d, 0x18, 0xe0, 0x40, 0x02, 0x0f, 0x40, 0x00, 0x41, 0x03, 0x11, 0x58, 0x20, 0x81, 0x05, 0x13, + 0x4c, 0x40, 0x91, 0x0d, 0x2a, 0xc2, 0x81, 0x05, 0x06, 0x5c, 0x32, 0x43, 0x83, 0xe1, 0xed, 0x28, + 0x0e, 0xd3, 0x77, 0x77, 0x38, 0x0e, 0x6c, 0x79, 0x46, 0x3c, 0x9a, 0x0e, 0xe2, 0x07, 0x16, 0x60, + 0xb3, 0x0d, 0x62, 0x2e, 0x0a, 0xe0, 0x20, 0x82, 0x0e, 0x30, 0xf0, 0xa0, 0x82, 0x0f, 0x3c, 0x00, + 0xc1, 0x83, 0x10, 0x36, 0x10, 0x61, 0x80, 0x11, 0x08, 0x20, 0x65, 0x52, 0xf0, 0x1e, 0xc6, 0x06, + 0xd3, 0x63, 0x4f, 0xc2, 0x28, 0xfd, 0x0d, 0xc9, 0x5f, 0x2f, 0xf0, 0x63, 0x0f, 0xc8, 0xe4, 0x6e, + 0x10, 0xdd, 0x1a, 0xb8, 0x91, 0x58, 0x78, 0xcd, 0xfd, 0xd6, 0x79, 0x18, 0xc1, 0x1d, 0xe4, 0xa0, + 0x5c, 0xbd, 0x62, 0xfe, 0x6c, 0xf0, 0x1b, 0xb0, 0xfd, 0xa7, 0x71, 0xd0, 0x4f, 0xc3, 0x51, 0xd4, + 0x0c, 0x6f, 0xc3, 0x34, 0x99, 0x2e, 0x84, 0x13, 0x44, 0x8a, 0xd8, 0xb2, 0xc1, 0x47, 0x6e, 0xd9, + 0x92, 0xb7, 0xec, 0xee, 0xde, 0x1e, 0x37, 0x2d, 0x41, 0x5c, 0x97, 0xb5, 0x18, 0x03, 0x66, 0xe4, + 0x3f, 0x4f, 0x80, 0x43, 0xc5, 0xba, 0x19, 0x06, 0xb7, 0x09, 0x5e, 0xea, 0x77, 0x6e, 0x36, 0xd3, + 0xbe, 0x79, 0x98, 0xcb, 0xb4, 0x6f, 0x81, 0x42, 0x66, 0xda, 0xb7, 0xb8, 0x6d, 0xc8, 0xb4, 0x6f, + 0xc9, 0x0b, 0x60, 0xda, 0x97, 0xcc, 0xb1, 0x90, 0x02, 0x6e, 0xda, 0xd7, 0x44, 0x93, 0x3b, 0x13, + 0xcf, 0x9b, 0x8e, 0xf1, 0x92, 0xbf, 0x3b, 0x0d, 0x20, 0x9b, 0x9d, 0x68, 0x32, 0x2b, 0x4b, 0xe0, + 0xd6, 0xdb, 0xe4, 0x53, 0x6d, 0x85, 0x49, 0x6a, 0xa7, 0x69, 0x8c, 0xb5, 0xfd, 0xce, 0xc3, 0xc8, + 0x19, 0x9a, 0xe9, 0xe9, 0x31, 0x0d, 0x57, 0xa2, 0xc9, 0x70, 0x08, 0x24, 0xe4, 0xf3, 0xe0, 0x23, + 0xae, 0xf1, 0x17, 0xf1, 0xc0, 0xc4, 0x66, 0x70, 0xfc, 0xb0, 0x30, 0x9d, 0xd9, 0x81, 0xca, 0x64, + 0x07, 0xee, 0x17, 0x69, 0x4e, 0xb0, 0xec, 0xc0, 0xdc, 0x6c, 0x66, 0x07, 0x98, 0x1d, 0x60, 0x76, + 0x80, 0xd9, 0x01, 0x66, 0x07, 0x98, 0x1d, 0x20, 0x6f, 0x30, 0x3b, 0x50, 0x88, 0xc7, 0x9e, 0x84, + 0x51, 0xfa, 0x72, 0x17, 0x30, 0x31, 0x70, 0xc0, 0xaa, 0xb0, 0x9c, 0x3f, 0xac, 0x0a, 0x23, 0x58, + 0x7f, 0x87, 0xf9, 0xac, 0x0a, 0xe3, 0x71, 0xf9, 0x23, 0x5b, 0x96, 0x55, 0x61, 0xa5, 0x6f, 0xd9, + 0xc6, 0xee, 0x61, 0xe3, 0x70, 0xff, 0x60, 0xf7, 0x90, 0xc5, 0x61, 0x04, 0x72, 0x65, 0xd6, 0xb2, + 0x38, 0xac, 0x0a, 0x16, 0x4a, 0x6f, 0xaf, 0x06, 0x99, 0xe4, 0x9e, 0xd9, 0xab, 0x65, 0x10, 0xf4, + 0x93, 0x49, 0xb5, 0x4f, 0x7e, 0x2f, 0x79, 0xa4, 0xbb, 0xfc, 0xfd, 0x26, 0x78, 0xaf, 0x81, 0xbc, + 0x00, 0x82, 0x7a, 0xf1, 0x03, 0x02, 0xb9, 0x1c, 0x6f, 0x94, 0xa7, 0x50, 0x39, 0xde, 0x28, 0xbf, + 0xed, 0xc5, 0xf1, 0x46, 0x45, 0xc3, 0x18, 0xc7, 0x1b, 0x55, 0x8d, 0xbf, 0x61, 0x5e, 0xd0, 0x64, + 0x1e, 0x77, 0x68, 0x82, 0x9b, 0xd8, 0xdc, 0x20, 0x78, 0xdc, 0x65, 0xa9, 0x26, 0xc0, 0x2b, 0x19, + 0xab, 0xb3, 0x08, 0x69, 0x5e, 0xbc, 0x98, 0x07, 0x01, 0xf5, 0x39, 0x82, 0x31, 0x14, 0x50, 0x64, + 0x99, 0xd4, 0xe1, 0xb0, 0xaf, 0xcd, 0x83, 0x74, 0xe8, 0xc7, 0x28, 0xb6, 0x85, 0x2a, 0xae, 0x85, + 0x2a, 0xa6, 0xc5, 0x28, 0x9e, 0xe5, 0x7d, 0x8d, 0x3f, 0x67, 0xa7, 0xee, 0xec, 0x9e, 0xe4, 0x4b, + 0x00, 0x72, 0xbc, 0xef, 0x6d, 0xfe, 0x6f, 0xbd, 0x70, 0xc0, 0xab, 0x2a, 0x11, 0x2d, 0xe2, 0x55, + 0x95, 0x95, 0xf7, 0x61, 0xbc, 0x9f, 0x51, 0xfc, 0xd6, 0x10, 0x7a, 0x7f, 0x82, 0xe8, 0xfb, 0x12, + 0x78, 0x27, 0xe3, 0xf7, 0xe6, 0x28, 0x78, 0x27, 0xe3, 0xcf, 0x98, 0xc8, 0x3b, 0x19, 0x37, 0x64, + 0x28, 0xef, 0x64, 0x24, 0x6e, 0x16, 0xf5, 0x23, 0x14, 0x7b, 0x27, 0x63, 0x2a, 0xf9, 0xcd, 0x41, + 0xe6, 0x8e, 0x67, 0x56, 0xca, 0xbe, 0x87, 0x71, 0x9b, 0xf7, 0x30, 0xaa, 0xc3, 0x01, 0x20, 0x2c, + 0x40, 0xc1, 0x03, 0x38, 0x4c, 0x80, 0xc3, 0x05, 0x2c, 0x6c, 0x90, 0x89, 0x0f, 0x42, 0x31, 0x22, + 0xfb, 0xd1, 0x8a, 0x7f, 0xdf, 0x9f, 0x79, 0xcc, 0x70, 0x60, 0xa2, 0x34, 0x4c, 0x1f, 0x64, 0xbf, + 0xeb, 0xcf, 0x62, 0x78, 0xc1, 0x1d, 0x22, 0x96, 0xbb, 0x78, 0x94, 0xc7, 0x41, 0x02, 0x54, 0x03, + 0xea, 0xf6, 0xdc, 0x9e, 0xdf, 0xbb, 0x3c, 0xf6, 0x5a, 0x57, 0xbe, 0xf7, 0x47, 0xc7, 0x91, 0xee, + 0xe6, 0x67, 0x4d, 0x43, 0x09, 0x44, 0x37, 0x2b, 0xd8, 0x18, 0x98, 0xee, 0xc5, 0xa5, 0xe7, 0x74, + 0xfd, 0x13, 0xbb, 0x63, 0x1f, 0xbb, 0x2d, 0xd7, 0xfb, 0x63, 0x21, 0x8b, 0x1e, 0x82, 0x2e, 0x10, + 0xf5, 0x81, 0xa5, 0x93, 0x6f, 0xd1, 0xcb, 0xd3, 0x7f, 0x03, 0x1a, 0x46, 0xf1, 0x2b, 0xa5, 0x52, + 0x82, 0x54, 0xec, 0xd6, 0xd9, 0x45, 0xd7, 0xf5, 0x5e, 0x9d, 0x73, 0x6c, 0xc9, 0x66, 0x3f, 0x6f, + 0x39, 0xcc, 0x8d, 0x87, 0x37, 0x9a, 0x33, 0xa6, 0x24, 0xe8, 0x74, 0xa9, 0x88, 0xbc, 0x63, 0x3d, + 0xbf, 0xeb, 0xd8, 0x27, 0xaf, 0xc8, 0xf7, 0x54, 0xc9, 0xf7, 0xab, 0xc5, 0x73, 0xfc, 0xa6, 0x73, + 0x6a, 0x5f, 0xb6, 0x3c, 0xff, 0xdc, 0xf1, 0xba, 0xee, 0x09, 0x09, 0x9f, 0x62, 0x59, 0x27, 0x96, + 0xcb, 0xf6, 0xc9, 0x45, 0xbb, 0xe7, 0x75, 0x6d, 0xb7, 0xed, 0x34, 0xfd, 0x56, 0xaf, 0x43, 0xb1, + 0x50, 0x2c, 0xeb, 0xc4, 0xd2, 0x72, 0xdb, 0xaf, 0xfd, 0xa6, 0xd3, 0xb2, 0x99, 0x34, 0xa0, 0x4a, + 0xbe, 0x41, 0x25, 0xfe, 0x95, 0xdd, 0x75, 0x6d, 0xcf, 0xbd, 0x68, 0x53, 0x2f, 0xd4, 0xcb, 0x3a, + 0xbd, 0xb8, 0x9d, 0xab, 0x7d, 0xbf, 0xed, 0xb8, 0x67, 0xaf, 0x8e, 0x2f, 0xba, 0xbe, 0xdd, 0x6c, + 0x76, 0x9d, 0x5e, 0x8f, 0x82, 0xa1, 0x60, 0xd6, 0x09, 0xc6, 0x6e, 0x9e, 0xbb, 0x6d, 0xff, 0xac, + 0x7b, 0x71, 0x49, 0x5a, 0xa1, 0x4c, 0xfe, 0x46, 0x26, 0xbf, 0xfb, 0x3d, 0xb7, 0x49, 0x89, 0x50, + 0x22, 0xeb, 0x24, 0x72, 0x6e, 0xbf, 0x99, 0xe3, 0xca, 0xb1, 0xdd, 0x6e, 0xfe, 0xcb, 0x6d, 0x7a, + 0xaf, 0xa8, 0x16, 0xaa, 0xe5, 0x6f, 0x40, 0xa5, 0x41, 0x50, 0xa1, 0x60, 0xbe, 0x8f, 0x6c, 0xdd, + 0xb6, 0xe7, 0x74, 0x4f, 0xed, 0x13, 0x87, 0x8a, 0xa1, 0x62, 0xbe, 0x29, 0x76, 0x6e, 0x5d, 0x50, + 0x24, 0x14, 0xc9, 0x7a, 0x91, 0x64, 0xb0, 0xe2, 0x67, 0xb9, 0x5b, 0x8f, 0x82, 0xa1, 0x60, 0xd6, + 0x0a, 0xc6, 0x79, 0xe3, 0x39, 0xed, 0xa6, 0xd3, 0x64, 0xe4, 0x4c, 0xbd, 0x7c, 0x33, 0xe8, 0x92, + 0x5b, 0xa8, 0x98, 0x6f, 0x56, 0xcc, 0xa5, 0xe7, 0xb6, 0xdc, 0x7f, 0x3b, 0x4d, 0x06, 0xd2, 0x54, + 0xcb, 0xd7, 0xd5, 0x62, 0x37, 0x7f, 0xf7, 0x5b, 0x76, 0x9b, 0xd9, 0x39, 0xca, 0xe4, 0x6f, 0xb3, + 0x73, 0x6e, 0xfb, 0x31, 0x43, 0xc7, 0xd7, 0xce, 0x54, 0xcb, 0xd7, 0x43, 0xe7, 0x4e, 0xf7, 0xc2, + 0x73, 0x4e, 0x3c, 0xf7, 0xa2, 0x3d, 0x2f, 0x96, 0xa3, 0x5e, 0xa8, 0x97, 0x75, 0x87, 0xd0, 0x95, + 0xed, 0xb6, 0xec, 0xe3, 0x96, 0x43, 0x66, 0xa1, 0x5c, 0xbe, 0xd1, 0xbd, 0xd8, 0x9e, 0xd7, 0x75, + 0x8f, 0x2f, 0x3d, 0x87, 0xc1, 0x10, 0xa5, 0xf2, 0x37, 0x35, 0x95, 0x5d, 0xa7, 0xe7, 0x74, 0xaf, + 0x18, 0x0e, 0x51, 0x2f, 0xdf, 0xa2, 0x97, 0xae, 0xd3, 0x73, 0x9b, 0x97, 0x76, 0x8b, 0x6a, 0xa1, + 0x5a, 0xbe, 0x21, 0x2a, 0xb2, 0xdf, 0xf8, 0x73, 0xff, 0x42, 0x78, 0xa1, 0x66, 0xbe, 0x03, 0x5e, + 0xa0, 0x92, 0x2d, 0x6c, 0xe0, 0xad, 0xca, 0x56, 0x03, 0xef, 0xcd, 0x03, 0xec, 0xb6, 0xa2, 0x28, + 0xf2, 0x8f, 0x00, 0xe0, 0xba, 0xaa, 0x28, 0x8a, 0x42, 0x0e, 0x61, 0x90, 0x34, 0x36, 0xd5, 0x50, + 0x9c, 0x1a, 0x90, 0xba, 0xa4, 0xa8, 0x8b, 0xbc, 0x75, 0x01, 0xda, 0x0d, 0x45, 0x61, 0xe4, 0x2d, + 0x0c, 0xa8, 0xda, 0x2d, 0xca, 0x21, 0x7f, 0x39, 0x80, 0x74, 0x37, 0x51, 0x0a, 0x79, 0x4b, 0x01, + 0xb1, 0x8b, 0x89, 0xaa, 0x28, 0x00, 0x24, 0x1a, 0x04, 0x09, 0x0a, 0x43, 0x4d, 0x57, 0x12, 0x95, + 0x51, 0x48, 0x4c, 0x8a, 0xd1, 0x7d, 0x44, 0x31, 0xe4, 0x2d, 0x06, 0xd0, 0x2e, 0x23, 0x0a, 0x23, + 0x6f, 0x61, 0x60, 0x76, 0x13, 0x51, 0x17, 0x85, 0x00, 0x27, 0xb9, 0x82, 0xca, 0x50, 0xd1, 0x1d, + 0x44, 0x55, 0xe4, 0xad, 0x0a, 0xa8, 0x2e, 0x20, 0xca, 0x21, 0x6f, 0x39, 0x20, 0x76, 0xfb, 0x50, + 0x15, 0x85, 0x84, 0xa4, 0x70, 0x5d, 0x3d, 0xd4, 0x45, 0xee, 0x87, 0x07, 0x62, 0xf7, 0x0e, 0x65, + 0x51, 0x88, 0xbb, 0x40, 0xea, 0xd2, 0xa1, 0x24, 0x72, 0x0f, 0x3e, 0x20, 0xbb, 0x71, 0xa8, 0x8b, + 0xbc, 0x75, 0x81, 0xd8, 0x75, 0x43, 0x55, 0xe4, 0x1e, 0x85, 0xc0, 0x76, 0xd7, 0x50, 0x1b, 0x85, + 0xc0, 0x05, 0x93, 0x15, 0x95, 0x94, 0x42, 0x87, 0x37, 0x32, 0x51, 0x25, 0x3f, 0xaa, 0x96, 0xd9, + 0x9b, 0x91, 0xc5, 0x35, 0x6f, 0x1c, 0x79, 0x44, 0xa5, 0xac, 0x57, 0x8a, 0x67, 0x9f, 0xed, 0x37, + 0x28, 0x10, 0x0a, 0xe4, 0x6f, 0x5c, 0xc9, 0x3e, 0x5d, 0x09, 0x95, 0xf2, 0x4d, 0xae, 0x84, 0xf2, + 0xa0, 0x3c, 0xd6, 0xc9, 0xa3, 0xd3, 0x75, 0x4e, 0xdd, 0x37, 0x1c, 0xc1, 0x48, 0x95, 0x7c, 0x83, + 0x4a, 0x4e, 0x5b, 0xf6, 0x59, 0x8f, 0xd3, 0x23, 0x36, 0xfb, 0xe1, 0xf4, 0x08, 0xe6, 0x11, 0xd0, + 0x22, 0x43, 0x2a, 0x82, 0x11, 0x20, 0x85, 0xc0, 0x48, 0x8f, 0x8a, 0x60, 0x44, 0x47, 0x19, 0x30, + 0x72, 0xa3, 0x1a, 0x18, 0xa1, 0xe9, 0x89, 0xcc, 0xe4, 0x46, 0x64, 0x32, 0x9f, 0x9b, 0x3c, 0xab, + 0x64, 0x59, 0x24, 0xcc, 0xfb, 0x59, 0x76, 0x14, 0x8d, 0xd2, 0x20, 0x0d, 0x47, 0x91, 0x75, 0x24, + 0xd0, 0xef, 0x59, 0x49, 0xff, 0x9d, 0xb9, 0x0b, 0xc6, 0x41, 0xfa, 0x6e, 0xea, 0xe9, 0xea, 0xa3, + 0xb1, 0x89, 0xfa, 0xa3, 0xe8, 0x26, 0xbc, 0xad, 0x45, 0x26, 0xfd, 0x30, 0x8a, 0xdf, 0xd7, 0xc2, + 0x28, 0x49, 0x83, 0xa8, 0x6f, 0xea, 0x5f, 0x7e, 0x21, 0x59, 0xf9, 0x4a, 0x7d, 0x1c, 0x8f, 0xd2, + 0x51, 0x7f, 0x34, 0x4c, 0xb2, 0xdf, 0xd5, 0xc3, 0x24, 0x4c, 0xea, 0x43, 0x73, 0x6f, 0x86, 0x8b, + 0x5f, 0xea, 0xc3, 0x30, 0x7a, 0x5f, 0x4b, 0xd2, 0x20, 0x35, 0xb5, 0x41, 0x90, 0x06, 0xd7, 0x41, + 0x62, 0xea, 0xc3, 0x64, 0x5c, 0x4f, 0x87, 0xf7, 0xc9, 0xf4, 0x1f, 0xf5, 0xbb, 0xb4, 0x16, 0x8e, + 0xef, 0xf7, 0x6b, 0xb1, 0x09, 0xfa, 0xef, 0x82, 0xeb, 0x70, 0x18, 0xa6, 0x0f, 0xf5, 0x71, 0x6c, + 0x6e, 0xc2, 0x8f, 0x26, 0x59, 0xfc, 0xa6, 0x9e, 0x4c, 0xae, 0x67, 0xdf, 0x30, 0xff, 0xb5, 0x3e, + 0xfb, 0xf3, 0x64, 0x39, 0x63, 0x39, 0x1b, 0x43, 0xd0, 0xa6, 0xb0, 0xd2, 0xe0, 0x56, 0xdc, 0x4e, + 0xc8, 0x4e, 0xfa, 0xa9, 0x71, 0xc2, 0x1c, 0xc8, 0xeb, 0x30, 0x1a, 0x58, 0x47, 0x5b, 0x3b, 0xc2, + 0xcc, 0x3a, 0x99, 0x39, 0x09, 0xeb, 0x68, 0x6b, 0x5b, 0x98, 0x61, 0x9d, 0x99, 0x7b, 0x90, 0xe9, + 0x6c, 0x97, 0x32, 0x1b, 0xf5, 0x6b, 0x53, 0xb7, 0x28, 0xb0, 0x8a, 0xc9, 0xea, 0x8d, 0x26, 0x71, + 0xdf, 0x88, 0x7c, 0x7c, 0xf3, 0xed, 0x60, 0x1e, 0x3e, 0x8c, 0xe2, 0xe9, 0x8e, 0xb0, 0xe6, 0x07, + 0x81, 0xd0, 0x52, 0x30, 0xeb, 0x55, 0x90, 0xd8, 0xf1, 0xed, 0xe4, 0xce, 0x44, 0xa9, 0x75, 0xb4, + 0x95, 0xc6, 0x13, 0x23, 0xd4, 0xd0, 0x27, 0x56, 0x66, 0xc2, 0x24, 0x64, 0x42, 0x41, 0x66, 0x33, + 0x8c, 0x85, 0xd2, 0xe5, 0x8c, 0xca, 0xc4, 0x3a, 0x93, 0xa5, 0x3f, 0x9e, 0x9b, 0x29, 0x74, 0x7f, + 0xca, 0x04, 0x00, 0xf1, 0x20, 0x80, 0x00, 0x04, 0x40, 0x60, 0x80, 0x02, 0x08, 0x70, 0xa0, 0x00, + 0x07, 0x0c, 0x58, 0xe0, 0x20, 0x13, 0x20, 0x84, 0x82, 0x84, 0x78, 0xa0, 0x78, 0x9a, 0x45, 0x78, + 0xb9, 0x2b, 0xdf, 0x09, 0x3d, 0xc9, 0x2b, 0xbc, 0xdc, 0x95, 0xee, 0x80, 0x16, 0xa0, 0xb1, 0x2d, + 0xdc, 0x4c, 0xe9, 0xc0, 0x81, 0x04, 0x1e, 0x80, 0x00, 0x82, 0x06, 0x22, 0xb0, 0x40, 0x02, 0x0b, + 0x26, 0x98, 0x80, 0x22, 0x1b, 0x54, 0x84, 0x03, 0x4b, 0xf6, 0x23, 0xf7, 0x1e, 0xc6, 0x06, 0xcb, + 0xe3, 0x4e, 0xc2, 0x28, 0x15, 0xcf, 0x06, 0x4f, 0xf9, 0xe0, 0x00, 0xc0, 0xd4, 0x6e, 0x10, 0xdd, + 0x1a, 0x98, 0xb6, 0x5b, 0x9c, 0xc6, 0x05, 0xeb, 0x3c, 0x8c, 0x60, 0x4e, 0x5c, 0x30, 0xb0, 0x5d, + 0x31, 0x7b, 0xd6, 0x3c, 0x0e, 0x68, 0xf7, 0x69, 0x1c, 0xf4, 0xd3, 0x70, 0x14, 0x35, 0xc3, 0xdb, + 0x30, 0x4d, 0xa6, 0x0b, 0x60, 0xb7, 0x53, 0x1e, 0x5b, 0x31, 0xf8, 0xc8, 0xad, 0x58, 0xf0, 0x56, + 0x6c, 0xec, 0x1e, 0x36, 0x0e, 0xf7, 0x0f, 0x76, 0x0f, 0xf7, 0xb8, 0x27, 0x09, 0xc4, 0x58, 0x56, + 0xbe, 0x65, 0x60, 0xf1, 0x13, 0x1b, 0xa8, 0x15, 0x26, 0xa9, 0x9d, 0xa6, 0x31, 0x46, 0x70, 0x71, + 0x1e, 0x46, 0xce, 0xd0, 0x4c, 0x63, 0xdf, 0xe9, 0x5e, 0x8f, 0x26, 0xc3, 0x21, 0x00, 0xb4, 0x9f, + 0x07, 0x1f, 0xf1, 0x8c, 0xbe, 0x88, 0x07, 0x26, 0x36, 0x83, 0xe3, 0x87, 0x85, 0xc9, 0xbf, 0xd0, + 0x49, 0xe9, 0xb1, 0x4c, 0xea, 0xeb, 0x19, 0xe1, 0x45, 0xc5, 0x99, 0x9d, 0x5a, 0x8a, 0x8b, 0xd3, + 0xe0, 0x56, 0x62, 0x81, 0xb1, 0xdc, 0xcd, 0xc3, 0x72, 0x2d, 0xe0, 0xed, 0xab, 0x69, 0xdb, 0x4a, + 0x2c, 0xb1, 0x4d, 0xd2, 0x78, 0xd2, 0x4f, 0xa3, 0x45, 0xfe, 0xb7, 0x3d, 0x7f, 0x5e, 0xee, 0xe2, + 0x71, 0xf9, 0x9d, 0xc5, 0x43, 0xf2, 0xdd, 0x24, 0x4c, 0xfc, 0xd6, 0xf4, 0xe9, 0xf8, 0xad, 0x64, + 0xec, 0x7b, 0xc3, 0x7b, 0xff, 0x3c, 0x75, 0xc7, 0xf7, 0xfb, 0xdd, 0x27, 0x8f, 0xc0, 0x9f, 0xbf, + 0x64, 0xf4, 0x7b, 0xb3, 0x15, 0xfb, 0x5e, 0x70, 0xcb, 0x1e, 0x08, 0xf1, 0x4e, 0xc0, 0x4a, 0x83, + 0xdb, 0xfd, 0x86, 0xe8, 0x2e, 0x88, 0xfd, 0x06, 0xfb, 0x20, 0xbe, 0xc9, 0x2c, 0xf6, 0x41, 0xfc, + 0x84, 0xd0, 0xd8, 0x07, 0xf1, 0xe3, 0xdb, 0x81, 0x7d, 0x10, 0x9b, 0xa6, 0x32, 0xf6, 0x41, 0xa0, + 0x83, 0x35, 0xfb, 0x20, 0x7e, 0xce, 0x1f, 0xb3, 0x0f, 0x42, 0x1f, 0x08, 0x20, 0x00, 0x01, 0x10, + 0x18, 0xa0, 0x00, 0x02, 0x1c, 0x28, 0xc0, 0x01, 0x03, 0x16, 0x38, 0xc8, 0x04, 0x08, 0xa1, 0x20, + 0x21, 0x1e, 0x28, 0x84, 0x67, 0x12, 0xa0, 0x32, 0x0b, 0xeb, 0x40, 0x83, 0x7d, 0x10, 0xd5, 0x01, + 0x0f, 0x40, 0x00, 0x41, 0x03, 0x11, 0x58, 0x20, 0x81, 0x05, 0x13, 0x4c, 0x40, 0x91, 0x0d, 0x2a, + 0xc2, 0x81, 0x25, 0xfb, 0x91, 0x63, 0xf6, 0x41, 0x88, 0x67, 0x83, 0xa7, 0x7c, 0xf0, 0x1b, 0xfb, + 0x20, 0x36, 0xfc, 0x61, 0x1f, 0x04, 0xc1, 0xf6, 0x19, 0xb3, 0xd9, 0x07, 0xc1, 0xe3, 0xed, 0xef, + 0xb6, 0x22, 0xfb, 0x20, 0x0a, 0xdf, 0x8a, 0x3b, 0xbf, 0x35, 0x1a, 0xfb, 0x07, 0x8d, 0xc6, 0xf6, + 0xc1, 0xcb, 0x83, 0xed, 0xc3, 0xbd, 0xbd, 0x9d, 0xfd, 0x1d, 0x76, 0x44, 0x10, 0x8d, 0xc1, 0xac, + 0x64, 0x47, 0xc4, 0xcf, 0x6c, 0x20, 0x76, 0x44, 0x14, 0x71, 0xb4, 0xb1, 0x23, 0xa2, 0xa2, 0x4e, + 0x8a, 0x2f, 0x6a, 0xbe, 0x47, 0x74, 0xec, 0x88, 0x28, 0xbc, 0xb4, 0x7a, 0xbf, 0xc1, 0x9e, 0x08, + 0x5c, 0x8b, 0xd8, 0x13, 0x51, 0xe1, 0x8d, 0x5b, 0xbd, 0xae, 0x08, 0x69, 0xf7, 0xfb, 0xb1, 0x2f, + 0xe2, 0x39, 0x0d, 0xa4, 0x12, 0xdf, 0x5a, 0x3c, 0x16, 0x2f, 0x4c, 0xad, 0x93, 0xd9, 0x15, 0xb1, + 0xcd, 0xae, 0x88, 0x6f, 0x33, 0x8c, 0x5d, 0x11, 0x3f, 0x65, 0x22, 0xbb, 0x22, 0x36, 0x64, 0x28, + 0xbb, 0x22, 0x88, 0xd6, 0x45, 0xfd, 0x08, 0xc5, 0xd6, 0x02, 0x64, 0x1e, 0x6f, 0x68, 0x82, 0x9b, + 0xd8, 0xdc, 0x48, 0xf4, 0x78, 0xcb, 0xae, 0x03, 0x81, 0x53, 0x0f, 0xad, 0xce, 0x22, 0x1a, 0x79, + 0xf1, 0x62, 0x1e, 0x89, 0xd7, 0x67, 0x84, 0x42, 0xce, 0x15, 0x6c, 0x89, 0x10, 0xdf, 0x30, 0x3d, + 0x28, 0x85, 0x21, 0xad, 0xcc, 0xf7, 0x09, 0xa2, 0xdf, 0x1b, 0x88, 0x7e, 0x3f, 0x20, 0xf3, 0x3d, + 0x80, 0x94, 0xfd, 0x27, 0x34, 0xdd, 0xa5, 0x25, 0xcd, 0x25, 0x88, 0x24, 0x72, 0x4c, 0x6c, 0xc9, + 0x38, 0xea, 0xcb, 0x3f, 0x58, 0xcb, 0xb5, 0xa0, 0x64, 0x97, 0x22, 0xcd, 0x95, 0xc0, 0xbb, 0x90, + 0x72, 0x77, 0x55, 0x79, 0x5a, 0x2e, 0x51, 0xc7, 0xd6, 0x24, 0x1a, 0x98, 0x9b, 0x30, 0x32, 0x83, + 0xda, 0xf2, 0x87, 0x50, 0xb6, 0x94, 0x1f, 0xeb, 0xd2, 0x57, 0x4c, 0x2b, 0x79, 0xbf, 0xcb, 0xe8, + 0x83, 0x17, 0x93, 0xe2, 0x95, 0x94, 0xd2, 0x15, 0x98, 0xc2, 0x95, 0x96, 0xb2, 0x15, 0x9b, 0xa2, + 0x15, 0x9b, 0x92, 0x95, 0x99, 0x82, 0xad, 0x36, 0x73, 0x49, 0xe9, 0x0b, 0x5f, 0x39, 0x9d, 0xe4, + 0xec, 0xf3, 0x75, 0xe7, 0xa7, 0x94, 0xed, 0x2e, 0x6b, 0x9c, 0x8c, 0xb8, 0x37, 0xa6, 0x12, 0xdf, + 0x94, 0x0a, 0x7e, 0x43, 0x2a, 0xf5, 0xcd, 0xa8, 0xf8, 0x37, 0xa2, 0xe2, 0xdf, 0x84, 0xca, 0x7e, + 0x03, 0xca, 0xb7, 0x1a, 0x12, 0x8f, 0xe5, 0xc7, 0x5c, 0x88, 0xc8, 0xb9, 0x6f, 0xa2, 0xe7, 0xbd, + 0x71, 0xd0, 0x2b, 0xfe, 0x41, 0x0d, 0x70, 0x60, 0x4b, 0x3f, 0xb8, 0x61, 0x0e, 0x70, 0x98, 0x83, + 0x1c, 0xe3, 0x40, 0x97, 0x75, 0xb0, 0x0b, 0x3b, 0xe0, 0xc5, 0x1e, 0xf4, 0x99, 0x61, 0x43, 0x13, + 0xdd, 0xce, 0x5e, 0x7c, 0x08, 0x9f, 0xf4, 0xba, 0xb0, 0x53, 0xf6, 0xa8, 0xd7, 0x6d, 0x8e, 0x7a, + 0x55, 0x87, 0x04, 0x40, 0x68, 0x80, 0x82, 0x08, 0x70, 0xa8, 0x00, 0x87, 0x0c, 0x58, 0xe8, 0x20, + 0x13, 0x21, 0x84, 0xa2, 0x44, 0xf6, 0xa3, 0x15, 0x3f, 0x31, 0xed, 0xb3, 0x49, 0x69, 0xbf, 0x49, + 0xf6, 0x97, 0x8b, 0xe3, 0x5b, 0xf0, 0x44, 0x18, 0x90, 0xc1, 0x68, 0x18, 0x73, 0x35, 0x80, 0x46, + 0x8f, 0x42, 0x4d, 0x5d, 0x42, 0x1b, 0x7c, 0x86, 0x38, 0x52, 0xe9, 0x13, 0xc6, 0x14, 0x18, 0x6e, + 0xb1, 0x9c, 0xb7, 0xd8, 0xee, 0xde, 0x1e, 0x37, 0x59, 0xb5, 0x40, 0x54, 0xbe, 0x75, 0x6f, 0x39, + 0x59, 0x05, 0xd5, 0x89, 0xcb, 0x1c, 0x65, 0xb0, 0x12, 0x4a, 0x08, 0x1c, 0x69, 0x00, 0x72, 0x92, + 0x30, 0x09, 0xb8, 0x49, 0x1d, 0x32, 0x09, 0xb8, 0xb9, 0x6d, 0xc3, 0x24, 0x60, 0xce, 0x06, 0x33, + 0x09, 0xa8, 0x35, 0xec, 0x62, 0x12, 0x70, 0xe3, 0xc7, 0x37, 0x93, 0x80, 0x3f, 0xfb, 0x61, 0x12, + 0x90, 0x19, 0x0a, 0x26, 0x01, 0x2b, 0x78, 0x1a, 0x7d, 0xbe, 0xc5, 0x98, 0x04, 0xcc, 0x7d, 0x8b, + 0x31, 0x09, 0x58, 0x39, 0x10, 0x95, 0x6f, 0x1d, 0x93, 0x80, 0xb0, 0x4e, 0xdc, 0xba, 0x5f, 0x38, + 0x16, 0xe1, 0x59, 0xc0, 0xb9, 0x99, 0x4c, 0x03, 0xfe, 0x88, 0x79, 0x4c, 0x03, 0x6e, 0x50, 0x88, + 0x4c, 0x03, 0x6e, 0x6e, 0xdb, 0x30, 0x0d, 0x98, 0xb3, 0xc1, 0x4c, 0x03, 0x6a, 0x0d, 0xbc, 0x80, + 0xd2, 0x80, 0xd7, 0x61, 0x14, 0xc4, 0x0f, 0x00, 0x79, 0xc0, 0x43, 0x62, 0x2c, 0xa0, 0x45, 0xbc, + 0x25, 0xe4, 0xfb, 0xec, 0x83, 0x9d, 0x7d, 0xb6, 0x32, 0xe5, 0x6a, 0xe5, 0x2b, 0x12, 0x2f, 0xfb, + 0xe1, 0x2d, 0x1a, 0xcf, 0x89, 0x90, 0xb7, 0x68, 0xe8, 0x88, 0x31, 0xd9, 0x72, 0xae, 0x33, 0x96, + 0x64, 0xcb, 0x79, 0xd5, 0x62, 0x46, 0xb6, 0x9c, 0xe3, 0xa3, 0x27, 0x6f, 0xd1, 0xf8, 0xf9, 0x03, + 0x96, 0xb7, 0x68, 0xc0, 0x73, 0x2e, 0xe7, 0x4d, 0x7d, 0x7e, 0x50, 0xf2, 0x16, 0x8d, 0x6f, 0xb1, + 0x8a, 0xb7, 0x68, 0xfc, 0xa8, 0x71, 0xbc, 0x45, 0x03, 0x2f, 0x1d, 0xa4, 0x39, 0x0d, 0xa4, 0xfd, + 0x66, 0x8d, 0xcb, 0xe5, 0x7a, 0x79, 0xc5, 0x86, 0x1c, 0x0b, 0x78, 0xc5, 0x86, 0x56, 0xff, 0x52, + 0xd9, 0xcb, 0x36, 0x7e, 0xa9, 0xd0, 0x3e, 0x5a, 0x72, 0xf2, 0x5c, 0x04, 0x5b, 0x53, 0xa5, 0x0c, + 0x4a, 0x3a, 0x47, 0x64, 0xf0, 0xb1, 0x28, 0x1e, 0x16, 0xc5, 0xbf, 0x32, 0x78, 0xb7, 0xac, 0x7d, + 0x22, 0xe4, 0x9c, 0x81, 0x3d, 0x5f, 0x4a, 0x84, 0xd3, 0x3c, 0x60, 0xb4, 0x9c, 0xc3, 0xb1, 0xf8, + 0xa3, 0xa9, 0xd8, 0xbf, 0xb1, 0xe0, 0xcd, 0x5d, 0xf6, 0xa6, 0xc6, 0xdb, 0xcc, 0xc5, 0xca, 0xbe, + 0x38, 0xf1, 0x15, 0xf3, 0x37, 0x15, 0x24, 0xef, 0xb2, 0x64, 0x0d, 0x23, 0xe7, 0x02, 0xcf, 0xa2, + 0x8d, 0x9e, 0x3d, 0xc5, 0xec, 0xbe, 0xfc, 0xf7, 0x42, 0x01, 0xfb, 0xc0, 0x9a, 0xfe, 0xdc, 0x93, + 0x30, 0xa9, 0x45, 0x26, 0xbc, 0x7d, 0x77, 0x3d, 0x8a, 0x6b, 0x41, 0x9a, 0xc6, 0xe1, 0xf5, 0xa4, + 0xc0, 0x3b, 0x1f, 0xb2, 0xb7, 0x7f, 0x7f, 0x63, 0x4b, 0x41, 0x1e, 0xa1, 0xd8, 0x8b, 0x1b, 0x0a, + 0xaf, 0x8e, 0x29, 0xa3, 0xea, 0xa5, 0xc4, 0x6a, 0x96, 0xb2, 0xaa, 0x54, 0x4a, 0xaf, 0x3e, 0x29, + 0xbd, 0xaa, 0xa4, 0xdc, 0x6a, 0x11, 0x5d, 0x94, 0x52, 0xf4, 0x45, 0x01, 0xd6, 0xd2, 0xfd, 0x16, + 0x7f, 0x83, 0x6d, 0xe6, 0x2b, 0x1e, 0x4d, 0x28, 0x58, 0xb7, 0xe5, 0xdc, 0xdc, 0x53, 0x5a, 0x99, + 0x64, 0x99, 0x65, 0x90, 0x02, 0xca, 0x1c, 0xcb, 0x2e, 0x63, 0x14, 0x53, 0xa6, 0x28, 0xa6, 0x0c, + 0x51, 0x46, 0x99, 0xa1, 0xee, 0x6c, 0x4e, 0x59, 0x37, 0xcf, 0x64, 0x5e, 0xbd, 0xbc, 0xfd, 0xf6, + 0xe5, 0xf9, 0x52, 0xd6, 0x76, 0x2b, 0xf7, 0x82, 0xb8, 0xd2, 0xab, 0xf2, 0x25, 0x54, 0xdf, 0x0b, + 0xaa, 0xb2, 0x97, 0x52, 0x4d, 0x2f, 0xae, 0x6a, 0x5e, 0x5c, 0x75, 0xbc, 0xac, 0x2a, 0xf8, 0x6a, + 0xbd, 0x81, 0x2f, 0xfb, 0xc2, 0x34, 0x2b, 0xcb, 0xc1, 0x96, 0xbf, 0x51, 0x97, 0xbe, 0xeb, 0xd1, + 0xa4, 0x92, 0xf7, 0x85, 0x8c, 0x1b, 0x4f, 0xc5, 0xb4, 0x9b, 0x49, 0x6a, 0x2f, 0x13, 0xd8, 0x4e, + 0x26, 0xad, 0x7d, 0x4c, 0x6c, 0xbb, 0x98, 0xd8, 0xf6, 0x30, 0x99, 0xed, 0x60, 0xd5, 0x2e, 0xf1, + 0x94, 0x72, 0xa3, 0x68, 0x76, 0x2a, 0xc9, 0xd9, 0xdf, 0x5f, 0x9e, 0x97, 0x52, 0xb6, 0xb7, 0xac, + 0x8b, 0xc2, 0xc5, 0x75, 0x6b, 0x4b, 0xec, 0xd2, 0x16, 0xdc, 0x9d, 0x2d, 0xb5, 0x2b, 0x5b, 0x7c, + 0x37, 0xb6, 0xf8, 0x2e, 0x6c, 0xd9, 0xdd, 0xd7, 0xec, 0xa8, 0x94, 0x78, 0x0c, 0x3f, 0x1e, 0xc7, + 0x03, 0xb9, 0xa3, 0x54, 0x4a, 0xab, 0xa2, 0xff, 0xda, 0x91, 0xcc, 0x41, 0x2a, 0xb8, 0x47, 0x34, + 0xc0, 0x51, 0x2d, 0xfd, 0xc8, 0x86, 0x39, 0xba, 0x61, 0x8e, 0x70, 0x8c, 0xa3, 0x5c, 0xd6, 0x91, + 0x2e, 0xec, 0x68, 0xcf, 0x7e, 0x84, 0x1c, 0xa4, 0xb2, 0x81, 0x98, 0x17, 0x62, 0x90, 0x4a, 0x38, + 0xe0, 0x18, 0x15, 0xf1, 0x7b, 0xd2, 0x9a, 0xcf, 0x75, 0x14, 0x0b, 0xb9, 0x73, 0xf3, 0x64, 0x72, + 0xee, 0x0e, 0x39, 0x97, 0x9c, 0x4b, 0xce, 0x25, 0xe7, 0x92, 0x73, 0x79, 0xa6, 0x7e, 0xf9, 0x23, + 0x94, 0x96, 0xca, 0xca, 0x0c, 0x13, 0x98, 0xd2, 0x5a, 0x71, 0xc6, 0xe2, 0x52, 0x5b, 0x5f, 0x1e, + 0xfd, 0xbc, 0x8f, 0x46, 0x1f, 0x0a, 0x00, 0x21, 0x01, 0x0a, 0x1a, 0xc0, 0x21, 0x02, 0x1c, 0x2a, + 0x60, 0x21, 0x83, 0x4c, 0x74, 0x10, 0x8a, 0x10, 0xd9, 0x8f, 0x16, 0xeb, 0x5a, 0xea, 0xfd, 0x06, + 0xc0, 0x7d, 0x34, 0xbf, 0xf1, 0x5e, 0xea, 0x9f, 0xfc, 0xf0, 0x5e, 0xea, 0x2a, 0x81, 0xe5, 0x8a, + 0xb9, 0xbc, 0x97, 0xba, 0xaa, 0xc7, 0xd1, 0xe7, 0x5b, 0x8c, 0xf7, 0x52, 0xe7, 0xbe, 0xc5, 0x76, + 0x7e, 0x6b, 0x34, 0xf6, 0x0f, 0x1a, 0x8d, 0xed, 0x83, 0x97, 0x07, 0xdb, 0x87, 0x7b, 0x7b, 0x3b, + 0xfb, 0x3b, 0xbc, 0xa8, 0xba, 0x62, 0x68, 0x2a, 0xdf, 0x3a, 0x5e, 0x54, 0x0d, 0xeb, 0xd5, 0xad, + 0x3b, 0x93, 0xc6, 0x61, 0x5f, 0x7e, 0x5a, 0x70, 0x61, 0x27, 0x53, 0x83, 0x3f, 0x62, 0x1e, 0x53, + 0x83, 0x1b, 0x54, 0x22, 0x53, 0x83, 0x9b, 0xdb, 0x36, 0x4c, 0x0d, 0xe6, 0x6c, 0x30, 0x53, 0x83, + 0x5a, 0x63, 0x31, 0xa0, 0xd4, 0xe0, 0x87, 0x70, 0x60, 0x6a, 0xa2, 0x0f, 0xf0, 0xa7, 0x87, 0xf8, + 0x01, 0xf3, 0x83, 0x3f, 0xf9, 0x61, 0x7e, 0x90, 0xc9, 0x0b, 0x79, 0x35, 0x72, 0xaa, 0x32, 0x15, + 0xcc, 0x0f, 0x72, 0x8b, 0x4d, 0xb7, 0xd8, 0xfe, 0xc1, 0xc1, 0xc1, 0x2e, 0x73, 0x82, 0x55, 0x63, + 0x52, 0xf9, 0xd6, 0x31, 0x27, 0x88, 0x68, 0x91, 0xb4, 0x4a, 0x4a, 0xa1, 0xd7, 0x3c, 0x66, 0xf6, + 0x49, 0xbd, 0x92, 0xe0, 0xf9, 0x71, 0xf0, 0xf5, 0x6c, 0x3e, 0x70, 0xf6, 0xbb, 0xfa, 0xa3, 0x39, + 0x99, 0x19, 0xf3, 0xbe, 0x0b, 0xf6, 0xef, 0x48, 0xdf, 0x21, 0xd6, 0xf2, 0x26, 0x3d, 0xb9, 0x1d, + 0x3c, 0x0b, 0x03, 0xd9, 0xc3, 0xf3, 0x2d, 0x66, 0xb1, 0x87, 0xe7, 0x27, 0xa4, 0xc6, 0x1e, 0x9e, + 0x1f, 0xdf, 0x0e, 0xec, 0xe1, 0xd9, 0x34, 0xb6, 0xb0, 0x87, 0x07, 0x9d, 0x3c, 0xc5, 0xf6, 0xf0, + 0x2c, 0x2e, 0xe3, 0x16, 0xff, 0xc2, 0x5e, 0xdc, 0xa5, 0xe1, 0x00, 0x08, 0x20, 0x1e, 0x05, 0x10, + 0x90, 0x00, 0x08, 0x0d, 0x50, 0x10, 0x01, 0x0e, 0x15, 0xe0, 0x90, 0x01, 0x0b, 0x1d, 0x64, 0x22, + 0x84, 0x50, 0x94, 0x10, 0x8f, 0x14, 0x99, 0x81, 0xc1, 0xe0, 0xff, 0x82, 0xbe, 0x89, 0xfa, 0x0f, + 0xb5, 0x24, 0x1c, 0x24, 0xf2, 0xbd, 0xd1, 0xd2, 0xc1, 0x7f, 0x61, 0xb7, 0xf0, 0x1d, 0x2e, 0x1b, + 0x3d, 0x60, 0x10, 0x04, 0x09, 0x45, 0x00, 0x91, 0x04, 0x0d, 0x4d, 0x60, 0x11, 0x05, 0x16, 0x55, + 0x30, 0x91, 0x45, 0x36, 0xba, 0x08, 0x47, 0x18, 0x18, 0x94, 0x79, 0x1e, 0x69, 0x70, 0x9c, 0xd8, + 0xb3, 0x64, 0x83, 0xe2, 0xc8, 0x30, 0x00, 0x07, 0x0e, 0x74, 0x10, 0x81, 0x07, 0x18, 0x7c, 0x50, + 0x01, 0x08, 0x1e, 0x84, 0xe0, 0x81, 0x08, 0x1b, 0x8c, 0x30, 0x00, 0x09, 0x04, 0x94, 0xe0, 0x80, + 0x29, 0x33, 0x58, 0xe6, 0x6c, 0xd8, 0x6f, 0x3e, 0x67, 0x24, 0xce, 0x8e, 0x55, 0x06, 0x4e, 0xb0, + 0x00, 0x85, 0x0c, 0x52, 0x0a, 0x80, 0x0a, 0x1d, 0xac, 0xd4, 0x00, 0x96, 0x1a, 0xd0, 0xd2, 0x01, + 0x5c, 0x58, 0xe0, 0x05, 0x06, 0x60, 0xb0, 0x20, 0x96, 0x19, 0x7e, 0x33, 0x0c, 0x6e, 0x13, 0x5c, + 0x67, 0xb9, 0x3c, 0xaf, 0xe6, 0xcb, 0x00, 0xf5, 0x2f, 0x58, 0x5d, 0x62, 0x6a, 0x40, 0x4d, 0x03, + 0xb0, 0x29, 0x02, 0x37, 0x2d, 0x00, 0xa7, 0x0e, 0xe4, 0xd4, 0x01, 0x9d, 0x2e, 0xb0, 0xc3, 0x04, + 0x3c, 0x50, 0xd0, 0xcb, 0xa4, 0x23, 0x7e, 0x4c, 0xca, 0x37, 0x9f, 0x18, 0x26, 0x9a, 0xdc, 0x99, + 0x78, 0xde, 0x0d, 0x09, 0x7c, 0x6a, 0x2c, 0xb3, 0x5c, 0x0d, 0xe0, 0x35, 0x38, 0xd1, 0xe4, 0x6e, + 0x2a, 0x2a, 0x6e, 0xe5, 0x22, 0x9f, 0x7a, 0x2b, 0x4c, 0x52, 0x3b, 0x4d, 0x63, 0xec, 0xed, 0x7c, + 0x1e, 0x46, 0xce, 0xd0, 0x4c, 0x4f, 0xb3, 0x69, 0x38, 0x17, 0x4d, 0x86, 0x43, 0xe0, 0x8d, 0x70, + 0x1e, 0x7c, 0xd4, 0xb3, 0x98, 0x8b, 0x78, 0x60, 0x62, 0x33, 0x38, 0x7e, 0x58, 0x2c, 0xe5, 0x17, + 0xd2, 0x05, 0xdd, 0xd1, 0xf3, 0x52, 0xb9, 0x5f, 0x0c, 0x60, 0x01, 0xcf, 0xc6, 0xcc, 0x97, 0xc1, + 0x6c, 0x4c, 0x19, 0xe6, 0x33, 0x1b, 0x23, 0x68, 0x23, 0x30, 0x1b, 0x23, 0x67, 0x5b, 0x33, 0x1b, + 0x23, 0x7c, 0x41, 0xcc, 0xc6, 0x90, 0x99, 0x7e, 0x50, 0x3a, 0x7a, 0xb2, 0x31, 0x93, 0x30, 0x4a, + 0x5f, 0xee, 0x2a, 0x48, 0xc4, 0x1c, 0x00, 0x2f, 0x01, 0x63, 0x1e, 0xee, 0xd7, 0x3e, 0xd8, 0x07, + 0xf6, 0x16, 0xda, 0x3c, 0x5d, 0xe5, 0x81, 0xc5, 0xca, 0x72, 0xc0, 0xee, 0xeb, 0xfa, 0xea, 0x7a, + 0x00, 0xa7, 0x88, 0x2a, 0x3d, 0xce, 0x3f, 0x77, 0x01, 0xc1, 0x47, 0xba, 0x00, 0xe1, 0x2e, 0xa0, + 0xb1, 0x7b, 0xd8, 0x38, 0xdc, 0x3f, 0xd8, 0x3d, 0xdc, 0xa3, 0x2f, 0x60, 0x40, 0x42, 0xeb, 0x9f, + 0x7e, 0xde, 0x32, 0xdd, 0xcf, 0xb3, 0x6e, 0x8d, 0x9b, 0xf9, 0x60, 0xc2, 0xdb, 0x77, 0x29, 0x7e, + 0xbe, 0x7f, 0xb1, 0x0e, 0x26, 0xfc, 0xcb, 0x30, 0x9f, 0x09, 0x7f, 0x41, 0x3b, 0x81, 0x09, 0x7f, + 0x39, 0xdb, 0x9a, 0x09, 0x7f, 0xe1, 0x0b, 0x62, 0xc2, 0x9f, 0xd4, 0xf4, 0x83, 0xd2, 0xd1, 0x95, + 0xf0, 0xff, 0x4d, 0x41, 0xbe, 0x7f, 0x8f, 0xf9, 0xfe, 0x92, 0x3f, 0xcc, 0xf7, 0x33, 0xae, 0xc8, + 0x71, 0x39, 0xcc, 0xf7, 0xf3, 0x34, 0x2f, 0xc2, 0x05, 0x30, 0xdf, 0x2f, 0xde, 0x05, 0xec, 0xee, + 0x31, 0xd1, 0xcf, 0x40, 0x84, 0xd6, 0x7f, 0xf6, 0x61, 0xa2, 0x9f, 0x16, 0xc3, 0x1f, 0xc9, 0xd2, + 0xaf, 0x46, 0xfc, 0xaa, 0xfd, 0x3a, 0xaf, 0x4e, 0x9c, 0x5f, 0x78, 0xb7, 0xf8, 0xb5, 0xfe, 0xf9, + 0x60, 0xfa, 0xcf, 0xff, 0x55, 0xe2, 0x35, 0x8b, 0x7a, 0x76, 0x34, 0xd0, 0x6e, 0x06, 0xed, 0x25, + 0x82, 0xee, 0x21, 0x02, 0xe5, 0x7d, 0x8e, 0xda, 0x2b, 0x53, 0xe8, 0x1c, 0xb5, 0x57, 0xde, 0x76, + 0xe5, 0xa8, 0x3d, 0x69, 0xf8, 0xc9, 0x51, 0x7b, 0x64, 0x9a, 0xbf, 0x97, 0x08, 0xec, 0xab, 0xbf, + 0xcc, 0xe3, 0x0f, 0x4d, 0x70, 0x13, 0x9b, 0x1b, 0x44, 0x8f, 0xbf, 0x9c, 0xb2, 0x02, 0xd8, 0xdd, + 0x63, 0x75, 0x16, 0x41, 0xe1, 0x8b, 0x17, 0xf3, 0x20, 0xa9, 0x3e, 0x47, 0x4c, 0x86, 0x4a, 0x15, + 0xb6, 0x14, 0x65, 0xd0, 0xfb, 0x6b, 0xf3, 0x80, 0x16, 0x14, 0x61, 0xce, 0xd5, 0x81, 0x9e, 0xa3, + 0x03, 0x3d, 0x37, 0x07, 0x73, 0x4e, 0x0e, 0x8a, 0x03, 0x01, 0xcd, 0xeb, 0x56, 0x3e, 0x9f, 0x8b, + 0x74, 0xa5, 0x51, 0x92, 0xc6, 0x93, 0x7e, 0x1a, 0x2d, 0x28, 0xb7, 0x3d, 0x7f, 0xf8, 0xee, 0x62, + 0xd1, 0x7e, 0x67, 0xf1, 0xc4, 0x7d, 0x37, 0x09, 0x13, 0xbf, 0x35, 0x7d, 0xd4, 0x7e, 0x2b, 0x19, + 0xfb, 0xde, 0xf0, 0xde, 0x3f, 0x4f, 0xa7, 0x5f, 0x6c, 0x2f, 0x1e, 0x99, 0xbd, 0x7c, 0x9c, 0xfe, + 0xf2, 0x2b, 0x7e, 0xf6, 0xa7, 0xf4, 0x66, 0x8f, 0xcc, 0xb7, 0x97, 0xcf, 0xa8, 0x17, 0x0e, 0x30, + 0x08, 0xee, 0x13, 0xef, 0x2e, 0xd4, 0xec, 0x68, 0xd1, 0x1c, 0x6c, 0x05, 0x1d, 0xab, 0x6c, 0x3f, + 0x21, 0x77, 0xf7, 0x09, 0xde, 0x79, 0x56, 0x30, 0xb8, 0x0b, 0xa3, 0xda, 0x6d, 0x3c, 0x9a, 0x8c, + 0x91, 0x2e, 0x16, 0x7f, 0x34, 0x9a, 0xb7, 0x8a, 0x6f, 0xc2, 0x4c, 0xde, 0x2a, 0x9e, 0xa3, 0x5c, + 0x79, 0xab, 0x78, 0x9e, 0x69, 0x1d, 0xde, 0x2a, 0x5e, 0x2c, 0xa6, 0xf1, 0x56, 0xf1, 0xaa, 0x91, + 0x39, 0xcc, 0xad, 0xe2, 0x58, 0x97, 0x63, 0x42, 0x5e, 0x8a, 0xc9, 0x5b, 0xc4, 0x09, 0x38, 0x0a, + 0x40, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, + 0x08, 0x0e, 0x90, 0x32, 0x83, 0x91, 0xb2, 0x3e, 0x6b, 0x4f, 0x1b, 0x9c, 0x2c, 0xd0, 0x3a, 0x88, + 0x62, 0x99, 0x33, 0xa1, 0x4a, 0x31, 0x5c, 0xa1, 0x43, 0x96, 0x1a, 0xd8, 0x52, 0x03, 0x5d, 0x3a, + 0xe0, 0x0b, 0x0b, 0xc2, 0xc0, 0x60, 0x2c, 0x93, 0x08, 0x7e, 0x99, 0x33, 0xec, 0x55, 0x06, 0xc0, + 0x57, 0x18, 0x80, 0x8f, 0x32, 0xc2, 0xbe, 0x7f, 0x51, 0xc1, 0xcc, 0x44, 0x15, 0xf3, 0x4a, 0xb4, + 0x8c, 0x2a, 0xd2, 0x34, 0x9d, 0xe4, 0x13, 0xf6, 0x6d, 0xa4, 0xdc, 0xda, 0xc2, 0xb6, 0xb6, 0x96, + 0x2b, 0x07, 0x54, 0xed, 0x71, 0x4e, 0xc0, 0x29, 0xe4, 0xf3, 0x96, 0x81, 0x57, 0x8e, 0x1b, 0x12, + 0xfa, 0x3a, 0x70, 0x15, 0xd7, 0x80, 0xab, 0xb8, 0xfe, 0x1b, 0xfb, 0xda, 0x6f, 0xf6, 0x99, 0x56, + 0xd2, 0x09, 0xb2, 0x4d, 0x4c, 0x74, 0x37, 0x43, 0xf6, 0xc2, 0x10, 0x69, 0xca, 0x17, 0x1b, 0x9f, + 0x54, 0xbb, 0x0e, 0x36, 0x3e, 0xc9, 0x76, 0x15, 0x08, 0x65, 0xfb, 0x85, 0x36, 0x8e, 0xde, 0x85, + 0xd1, 0xd9, 0xec, 0xc1, 0xb0, 0x1d, 0x4c, 0x9b, 0x3f, 0xb2, 0x82, 0xfb, 0x20, 0x1c, 0x06, 0xd7, + 0x43, 0x53, 0xbb, 0x0e, 0xa2, 0xc1, 0x87, 0x70, 0x30, 0xdb, 0xe4, 0x28, 0x6d, 0x61, 0xcf, 0x18, + 0xcf, 0xf6, 0xb0, 0x4d, 0x98, 0xc9, 0xf6, 0xb0, 0x1c, 0x65, 0xcb, 0xf6, 0xb0, 0xfc, 0xb6, 0x17, + 0xdb, 0xc3, 0x8a, 0x86, 0x59, 0xb6, 0x87, 0x55, 0x2d, 0x7e, 0x61, 0x7b, 0x58, 0xbe, 0xe7, 0x03, + 0xdb, 0xc3, 0x08, 0x36, 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, 0xf0, 0x00, + 0x84, 0x0d, 0x42, 0x18, 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0x8c, 0x93, 0xfb, 0x59, + 0x7b, 0xd6, 0xa0, 0x64, 0x80, 0xd6, 0x01, 0x14, 0x5b, 0xc3, 0x08, 0x54, 0x8a, 0xc1, 0x0a, 0x1d, + 0xb0, 0xd4, 0x80, 0x96, 0x1a, 0xe0, 0xd2, 0x01, 0x5e, 0x58, 0x00, 0x06, 0x06, 0x62, 0x99, 0x44, + 0xf0, 0x5b, 0xc3, 0x42, 0x63, 0xcc, 0xcd, 0x70, 0x14, 0x60, 0xf7, 0x87, 0x1d, 0x02, 0x9a, 0xde, + 0x32, 0xd1, 0xed, 0x0c, 0x8c, 0xd9, 0x20, 0x56, 0xf0, 0x93, 0x67, 0x83, 0x98, 0x9c, 0x65, 0x64, + 0x5d, 0x24, 0x6c, 0x1e, 0xe1, 0x21, 0xbc, 0x81, 0xad, 0xcd, 0x06, 0x31, 0x6e, 0x6d, 0x6e, 0x6d, + 0x1d, 0xd1, 0x00, 0xae, 0xd5, 0x6f, 0xd9, 0x62, 0x52, 0xf5, 0xa3, 0xc9, 0x4a, 0x11, 0x63, 0xc3, + 0x2c, 0x2e, 0x9c, 0x59, 0xcf, 0x8c, 0x77, 0x11, 0x66, 0x33, 0xe3, 0x5d, 0xa2, 0xce, 0x99, 0xf1, + 0x2e, 0x6f, 0xbb, 0x32, 0xe3, 0x2d, 0x6c, 0x21, 0xcc, 0x78, 0x93, 0x68, 0xbe, 0x22, 0x11, 0x05, + 0x19, 0xef, 0x81, 0x89, 0xd2, 0x30, 0x7d, 0x00, 0xbf, 0xf7, 0x19, 0x70, 0xda, 0x8a, 0xe5, 0x2e, + 0x1e, 0xfd, 0x71, 0x90, 0x00, 0x9f, 0x5b, 0x4b, 0x21, 0xb9, 0x3d, 0xb7, 0xe7, 0xf7, 0x2e, 0x8f, + 0xbd, 0xd6, 0x95, 0xef, 0xfd, 0xd1, 0x71, 0x50, 0x8f, 0xaf, 0x59, 0x9e, 0x26, 0x81, 0x7d, 0x11, + 0xb1, 0x05, 0xfd, 0x32, 0xe2, 0x33, 0x45, 0x75, 0x2f, 0x2e, 0x3d, 0xa7, 0xeb, 0x9f, 0xd8, 0x1d, + 0xfb, 0xd8, 0x6d, 0xb9, 0xde, 0x1f, 0x0b, 0x79, 0xf5, 0x90, 0xf5, 0xa5, 0x49, 0x67, 0x3a, 0xf4, + 0xf6, 0x2d, 0xba, 0x7b, 0xfa, 0x6f, 0x16, 0xfc, 0x6a, 0x3f, 0xfd, 0x4a, 0xc9, 0x01, 0x48, 0xce, + 0x6e, 0x9d, 0x5d, 0x74, 0x5d, 0xef, 0xd5, 0xb9, 0x02, 0xc5, 0x41, 0xaf, 0xe0, 0x2d, 0x5f, 0x5e, + 0x72, 0x87, 0xf3, 0x30, 0xa1, 0xb4, 0x78, 0x68, 0x50, 0x59, 0x55, 0x50, 0x96, 0xdb, 0xf3, 0xbb, + 0x8e, 0x7d, 0xf2, 0x8a, 0x71, 0x17, 0xd5, 0x56, 0x9e, 0xea, 0x3c, 0xc7, 0x6f, 0x3a, 0xa7, 0xf6, + 0x65, 0xcb, 0xf3, 0xcf, 0x1d, 0xaf, 0xeb, 0x9e, 0x30, 0xf2, 0xa2, 0xe8, 0xf2, 0x16, 0xdd, 0x65, + 0xfb, 0xe4, 0xa2, 0xdd, 0xf3, 0xba, 0xb6, 0xdb, 0x76, 0x9a, 0x7e, 0xab, 0xd7, 0xa1, 0xe8, 0x28, + 0xba, 0xbc, 0x45, 0xd7, 0x72, 0xdb, 0xaf, 0xfd, 0xa6, 0xd3, 0xb2, 0x99, 0x5c, 0xa2, 0xda, 0x0a, + 0x54, 0x9b, 0x7f, 0x65, 0x77, 0x5d, 0xdb, 0x73, 0x2f, 0xda, 0xd4, 0x1d, 0x75, 0x97, 0xb7, 0xee, + 0xdc, 0xce, 0xd5, 0xbe, 0xdf, 0x76, 0xdc, 0xb3, 0x57, 0xc7, 0x17, 0x5d, 0xdf, 0x6e, 0x36, 0xbb, + 0x4e, 0xaf, 0x47, 0xe1, 0x51, 0x78, 0x79, 0x0b, 0xcf, 0x6e, 0x9e, 0xbb, 0x6d, 0xff, 0xac, 0x7b, + 0x71, 0x49, 0x9a, 0xa3, 0xdc, 0x0a, 0x90, 0xdb, 0xef, 0x7e, 0xcf, 0x6d, 0x52, 0x6a, 0x94, 0x5a, + 0xde, 0x52, 0x3b, 0xb7, 0xdf, 0xcc, 0x71, 0xee, 0xd8, 0x6e, 0x37, 0xff, 0xe5, 0x36, 0xbd, 0x57, + 0x54, 0x1d, 0x55, 0x57, 0x00, 0xc8, 0x35, 0x08, 0x72, 0x14, 0x5e, 0x39, 0x11, 0x84, 0xdb, 0xf6, + 0x9c, 0xee, 0xa9, 0x7d, 0xe2, 0x50, 0x79, 0x54, 0x5e, 0xa1, 0x39, 0x93, 0xd6, 0x05, 0xc5, 0x46, + 0xb1, 0xe5, 0x2f, 0xb6, 0x0c, 0xe6, 0xfc, 0xec, 0x5d, 0x84, 0x47, 0xe1, 0x51, 0x78, 0xb9, 0x0b, + 0xcf, 0x79, 0xe3, 0x39, 0xed, 0xa6, 0xd3, 0x64, 0xc6, 0x84, 0xba, 0x2b, 0x3c, 0xa0, 0x20, 0xd7, + 0x51, 0x79, 0x85, 0x2b, 0xef, 0xd2, 0x73, 0x5b, 0xee, 0xbf, 0x9d, 0x26, 0x13, 0x28, 0x54, 0x5d, + 0x71, 0xaa, 0xb3, 0x9b, 0xbf, 0xfb, 0x2d, 0xbb, 0xcd, 0x2c, 0x31, 0xe5, 0x56, 0x84, 0xdc, 0xa6, + 0x2c, 0x97, 0x65, 0x8a, 0x59, 0x66, 0x42, 0xd5, 0x15, 0x97, 0x32, 0xe9, 0x74, 0x2f, 0x3c, 0xe7, + 0xc4, 0x73, 0x2f, 0xda, 0xf3, 0xe2, 0x61, 0xea, 0x8e, 0xba, 0xcb, 0xfb, 0x70, 0xbd, 0xb2, 0xdd, + 0x96, 0x7d, 0xdc, 0x72, 0xc8, 0x74, 0x94, 0x5d, 0xc1, 0xee, 0xce, 0xf6, 0xbc, 0xae, 0x7b, 0x7c, + 0xe9, 0x39, 0x0c, 0x5e, 0x29, 0xb9, 0xfc, 0x83, 0xd7, 0x76, 0xd7, 0xe9, 0x39, 0xdd, 0x2b, 0x86, + 0xaf, 0xd4, 0x5d, 0x91, 0xba, 0xeb, 0x3a, 0x3d, 0xb7, 0x79, 0x69, 0xb7, 0xa8, 0x3a, 0xaa, 0xae, + 0xc0, 0x28, 0xd6, 0x7e, 0xe3, 0xcf, 0xfd, 0x1d, 0xe1, 0x8e, 0xda, 0x2b, 0x01, 0xee, 0x54, 0x24, + 0xeb, 0x38, 0x88, 0x83, 0x5b, 0xbc, 0x4a, 0x5b, 0xbb, 0x0a, 0xdd, 0xc5, 0x14, 0x97, 0xbc, 0xc8, + 0x4c, 0x4d, 0x17, 0x31, 0xc5, 0x25, 0x12, 0x46, 0xc0, 0x5f, 0xe3, 0x50, 0x55, 0x72, 0x55, 0xa5, + 0xa1, 0x2b, 0x98, 0xfa, 0x92, 0xa6, 0x2f, 0x65, 0xdd, 0xbf, 0x14, 0x98, 0x34, 0x81, 0xa9, 0xa8, + 0x59, 0xa5, 0xac, 0xe4, 0xc9, 0x0a, 0xbc, 0x9b, 0x97, 0x92, 0x92, 0x26, 0x29, 0x4d, 0x5d, 0xbb, + 0x54, 0x97, 0x40, 0xd0, 0x6a, 0x10, 0xb4, 0x28, 0xb0, 0x7c, 0x49, 0x5e, 0x51, 0xb7, 0x06, 0x15, + 0x26, 0x32, 0x17, 0x81, 0xdd, 0x6d, 0x4b, 0x51, 0x49, 0x13, 0x95, 0xb2, 0xae, 0x5a, 0x0a, 0x4c, + 0x9a, 0xc0, 0x74, 0x75, 0xcf, 0x52, 0x5f, 0x22, 0xc1, 0x9e, 0xdc, 0x45, 0x85, 0xe5, 0xa6, 0x30, + 0x4d, 0xdd, 0xb0, 0x54, 0x97, 0x34, 0x75, 0xa9, 0xe8, 0x7a, 0xa5, 0xac, 0xa4, 0xc9, 0x4a, 0x53, + 0x77, 0x2b, 0xd5, 0x25, 0x32, 0x15, 0xa1, 0xa6, 0x8b, 0x95, 0xfa, 0x12, 0x77, 0x28, 0x6a, 0xea, + 0x56, 0xa5, 0xbc, 0x44, 0xba, 0x2f, 0x0d, 0x5d, 0xa9, 0x94, 0x96, 0xb8, 0x60, 0x51, 0x55, 0xf7, + 0x29, 0xf5, 0x25, 0x4d, 0x5f, 0x9a, 0xba, 0x4c, 0xa9, 0x2e, 0x71, 0x51, 0xa3, 0xba, 0x6e, 0x52, + 0x6a, 0x4c, 0x24, 0x7c, 0x31, 0xd9, 0x45, 0x49, 0xfd, 0x84, 0xa4, 0x3a, 0xbc, 0x89, 0x97, 0x6a, + 0x2b, 0x5b, 0x75, 0xb3, 0x37, 0x8f, 0x8b, 0xeb, 0xc6, 0x39, 0xb2, 0x92, 0x8a, 0xcb, 0x5f, 0x71, + 0x9e, 0x7d, 0xb6, 0xdf, 0xa0, 0xd0, 0x28, 0xb4, 0x02, 0x5c, 0xdb, 0x3e, 0x5d, 0x1b, 0x15, 0x57, + 0xa8, 0x6b, 0xa3, 0xcc, 0x28, 0xb3, 0xbc, 0x65, 0xd6, 0xe9, 0x3a, 0xa7, 0xee, 0x1b, 0x8e, 0x18, + 0xa7, 0xda, 0x0a, 0x54, 0xdb, 0x69, 0xcb, 0x3e, 0xeb, 0x71, 0x4a, 0x56, 0xb9, 0x1f, 0x4e, 0xc9, + 0xe2, 0xfe, 0x66, 0xe4, 0x4f, 0x65, 0x31, 0xc2, 0xa7, 0xa0, 0xaa, 0xe5, 0xaa, 0xf6, 0xe9, 0xaa, + 0xa8, 0x2c, 0x46, 0xec, 0x94, 0x13, 0x23, 0x73, 0xaa, 0xaa, 0x9a, 0xaa, 0x02, 0x8f, 0xc0, 0x31, + 0x23, 0x6f, 0xbc, 0x88, 0x1b, 0xeb, 0x39, 0xe3, 0x58, 0x8b, 0x61, 0x29, 0x88, 0xf7, 0xb6, 0xec, + 0x28, 0x1a, 0xa5, 0x41, 0x1a, 0x8e, 0x22, 0xeb, 0x08, 0xc8, 0x6f, 0x5b, 0x49, 0xff, 0x9d, 0xb9, + 0x0b, 0xc6, 0x41, 0xfa, 0x6e, 0xea, 0xa9, 0xeb, 0xa3, 0xb1, 0x89, 0xfa, 0xa3, 0xe8, 0x26, 0xbc, + 0xad, 0x45, 0x26, 0xfd, 0x30, 0x8a, 0xdf, 0xd7, 0xc2, 0x28, 0x49, 0x83, 0xa8, 0x6f, 0xea, 0x5f, + 0x7e, 0x21, 0x59, 0xf9, 0x4a, 0x7d, 0x1c, 0x8f, 0xd2, 0x51, 0x7f, 0x34, 0x4c, 0xb2, 0xdf, 0xd5, + 0xc3, 0x24, 0x4c, 0xea, 0x43, 0x73, 0x6f, 0x86, 0x8b, 0x5f, 0xea, 0xc3, 0x30, 0x7a, 0x5f, 0x4b, + 0xd2, 0x20, 0x35, 0xb5, 0x41, 0x90, 0x06, 0xd7, 0x41, 0x62, 0xea, 0xc3, 0x64, 0x5c, 0x4f, 0x87, + 0xf7, 0xc9, 0xf4, 0x1f, 0xf5, 0xbb, 0xb4, 0x36, 0xfd, 0xae, 0x5a, 0x64, 0xc2, 0xdb, 0x77, 0xd7, + 0xa3, 0xb8, 0x16, 0xa4, 0x69, 0x1c, 0x5e, 0x4f, 0xd2, 0xa9, 0x0d, 0xf3, 0x2f, 0x25, 0xd9, 0xef, + 0xea, 0x8f, 0xe6, 0x64, 0x66, 0x24, 0x93, 0xeb, 0xd9, 0x1f, 0x36, 0xff, 0xb5, 0x1e, 0xdc, 0x07, + 0xe1, 0x30, 0xb8, 0x1e, 0x9a, 0xda, 0x75, 0x10, 0x0d, 0x3e, 0x84, 0x83, 0xf4, 0x5d, 0x7d, 0xf6, + 0xf7, 0x63, 0x1c, 0x3e, 0xf2, 0x37, 0xaa, 0x6c, 0x0b, 0x85, 0xbb, 0x10, 0x34, 0xd7, 0x51, 0x55, + 0x97, 0x01, 0x50, 0xc3, 0x68, 0x25, 0x69, 0x3c, 0xe9, 0xa7, 0xd1, 0x82, 0xbb, 0xdb, 0xf3, 0x67, + 0xed, 0x2e, 0xd6, 0xe8, 0x77, 0x16, 0x0f, 0xd8, 0x77, 0x93, 0x30, 0xf1, 0x5b, 0xd3, 0x27, 0xeb, + 0xb7, 0x92, 0xb1, 0xef, 0x0d, 0xef, 0xfd, 0xf3, 0x74, 0xfa, 0xc5, 0xf6, 0xe2, 0x09, 0xd9, 0xcb, + 0xa7, 0xe7, 0x2f, 0xbf, 0xe2, 0x67, 0x7f, 0x4a, 0x6f, 0xf6, 0x84, 0x7c, 0x7b, 0xf9, 0x84, 0x8e, + 0xb3, 0x07, 0xf4, 0x0b, 0x7d, 0x94, 0x32, 0xff, 0x64, 0x65, 0xea, 0xaf, 0xf5, 0x47, 0x51, 0x92, + 0xc6, 0x41, 0x18, 0xa5, 0x89, 0x78, 0x37, 0x95, 0x45, 0x9e, 0xcf, 0x9b, 0x2f, 0xfc, 0x3c, 0x78, + 0x1d, 0x46, 0x03, 0xeb, 0x68, 0x6b, 0x47, 0xb8, 0x99, 0x27, 0x33, 0x9f, 0x6f, 0x1d, 0x6d, 0x6d, + 0x0b, 0x37, 0xb4, 0x13, 0x9b, 0x9b, 0xf0, 0x23, 0xc6, 0xd9, 0xba, 0x14, 0xee, 0xa8, 0x3f, 0x3b, + 0xcf, 0x10, 0xce, 0x9c, 0xde, 0x68, 0x12, 0xf7, 0x0d, 0x4c, 0xd4, 0x63, 0xbd, 0x36, 0x0f, 0x1f, + 0x46, 0xf1, 0x74, 0x87, 0x59, 0xe3, 0xb9, 0x32, 0x40, 0x42, 0xcc, 0x57, 0x41, 0x62, 0xc7, 0xb7, + 0x93, 0x3b, 0x13, 0xa5, 0xd6, 0xd1, 0x56, 0x1a, 0x4f, 0x0c, 0x4a, 0x6c, 0xfc, 0x68, 0x75, 0x26, + 0x6c, 0xc6, 0x34, 0xaa, 0x63, 0x9a, 0x66, 0x18, 0x63, 0x38, 0xdc, 0xe7, 0x08, 0x01, 0xc7, 0x97, + 0xfd, 0x1d, 0xe7, 0xa0, 0xb8, 0x35, 0x0c, 0xdc, 0x81, 0xc3, 0x1e, 0x44, 0xfc, 0x01, 0xc6, 0x20, + 0x54, 0x1c, 0x82, 0xc7, 0x22, 0x78, 0x3c, 0xc2, 0xc6, 0x24, 0x0c, 0x5c, 0x02, 0xc1, 0x26, 0x38, + 0x7c, 0xca, 0x0c, 0x46, 0xca, 0x0e, 0xad, 0x3d, 0x6d, 0x70, 0x72, 0x44, 0xe0, 0x10, 0x05, 0x0b, + 0x53, 0xc8, 0x50, 0xa5, 0x00, 0xae, 0xd0, 0x21, 0x4b, 0x0d, 0x6c, 0xa9, 0x81, 0x2e, 0x1d, 0xf0, + 0x85, 0x05, 0x61, 0x60, 0x30, 0x06, 0x0b, 0x65, 0xcf, 0xc0, 0x19, 0xae, 0xc7, 0x5c, 0x65, 0x34, + 0x54, 0x97, 0x89, 0x89, 0x6a, 0xf0, 0xc8, 0xa6, 0x01, 0xdd, 0x14, 0x21, 0x9c, 0x16, 0x94, 0x53, + 0x87, 0x74, 0xea, 0xd0, 0x4e, 0x17, 0xe2, 0x61, 0xa2, 0x1e, 0x28, 0xf2, 0xc1, 0xa3, 0xdf, 0x33, + 0x08, 0x58, 0x0b, 0x07, 0xf8, 0xce, 0x76, 0x95, 0x06, 0xa7, 0xcb, 0x02, 0xf7, 0x4f, 0x0b, 0x30, + 0xdc, 0x06, 0x5f, 0x06, 0x3a, 0x20, 0x6a, 0x02, 0x45, 0x85, 0xc0, 0xa8, 0x0d, 0x1c, 0xd5, 0x02, + 0xa4, 0x5a, 0x90, 0xd4, 0x09, 0x94, 0xd8, 0x60, 0x09, 0x0e, 0x98, 0x99, 0xa4, 0xbc, 0x87, 0xb1, + 0xd1, 0x75, 0xe2, 0x0c, 0x4d, 0x70, 0x13, 0x9b, 0x1b, 0x0d, 0x27, 0xce, 0x32, 0x73, 0x77, 0xa0, + 0x60, 0x2d, 0x9d, 0x45, 0xfb, 0xd6, 0x8b, 0x17, 0xf3, 0x56, 0xc8, 0xfa, 0xe7, 0x28, 0xfd, 0x0b, + 0x5d, 0x18, 0xdd, 0xd7, 0xf7, 0x29, 0x6a, 0xde, 0x51, 0xab, 0x26, 0xb4, 0x9c, 0x2f, 0x47, 0x47, + 0x48, 0xb9, 0xc3, 0x90, 0x92, 0x21, 0x25, 0x43, 0x4a, 0x86, 0x94, 0x0c, 0x29, 0x19, 0x52, 0x92, + 0xc7, 0xaa, 0x15, 0x52, 0xa2, 0xbf, 0xbb, 0xc8, 0x16, 0xf2, 0x38, 0x89, 0xe1, 0x48, 0xdb, 0x8c, + 0x72, 0xa4, 0x21, 0x13, 0xdf, 0x03, 0x9e, 0xdb, 0x4a, 0x96, 0xa3, 0x05, 0x40, 0x35, 0x82, 0xa8, + 0x62, 0x20, 0xd5, 0x0a, 0xa6, 0xea, 0x01, 0x55, 0x3d, 0xa8, 0xea, 0x06, 0x56, 0x1d, 0xe0, 0xaa, + 0x04, 0x60, 0x33, 0xa9, 0xa9, 0x79, 0x37, 0xb2, 0x72, 0x62, 0x85, 0xc6, 0x98, 0x9b, 0xe1, 0x28, + 0x48, 0x5f, 0xee, 0x6a, 0x3a, 0xb5, 0x16, 0x10, 0x78, 0xa8, 0x68, 0x49, 0x2d, 0x13, 0xdd, 0xce, + 0x02, 0x90, 0x3f, 0x55, 0xb9, 0x71, 0x5d, 0x58, 0x31, 0xfb, 0x49, 0x9d, 0x87, 0x91, 0x3a, 0x5e, + 0x52, 0x1a, 0x5e, 0xad, 0x2c, 0x6f, 0x76, 0xdd, 0xb2, 0x75, 0xb4, 0xd5, 0x50, 0xba, 0xbe, 0xd3, + 0x38, 0xe8, 0xa7, 0xe1, 0x28, 0x6a, 0x86, 0xb7, 0xe1, 0xac, 0x61, 0x7a, 0x5b, 0xdd, 0x3a, 0x3f, + 0xfd, 0xaa, 0xd0, 0xa5, 0x04, 0x1f, 0xe9, 0x52, 0xe8, 0x52, 0xe8, 0x52, 0x18, 0x8d, 0x71, 0x35, + 0x8f, 0x9f, 0xb7, 0xbf, 0xf0, 0xe7, 0xc1, 0x23, 0x77, 0x33, 0x6e, 0x4c, 0x57, 0x9f, 0xca, 0x4a, + 0xa0, 0xaf, 0xa9, 0x5f, 0x45, 0x29, 0x39, 0xf0, 0x5d, 0x0f, 0xd2, 0x86, 0xe2, 0xbb, 0x1e, 0x1c, + 0x37, 0xc1, 0x77, 0x3d, 0xe0, 0x0b, 0xe4, 0xbb, 0x1e, 0x32, 0x60, 0x41, 0x52, 0xd3, 0xfb, 0xae, + 0x67, 0x12, 0x46, 0x3a, 0x5f, 0xf3, 0x1c, 0x28, 0x5a, 0x52, 0x37, 0x88, 0x6e, 0x0d, 0xdf, 0xf2, + 0xc8, 0xff, 0x41, 0xf1, 0x2d, 0x0f, 0xee, 0xf2, 0x96, 0x29, 0xd9, 0x6d, 0xa6, 0x64, 0x89, 0x1b, + 0x82, 0x5c, 0x0a, 0xdf, 0xf2, 0xc0, 0xbb, 0x94, 0xc6, 0xee, 0x61, 0xe3, 0x70, 0xff, 0x60, 0xf7, + 0x70, 0x8f, 0xbe, 0x85, 0x01, 0x19, 0x57, 0xb3, 0xc9, 0x0f, 0x5f, 0xf7, 0x70, 0x05, 0x95, 0x27, + 0x07, 0xd4, 0xfb, 0xbe, 0xd7, 0xae, 0xa7, 0x0a, 0x97, 0xfa, 0x3e, 0x7b, 0x1b, 0xe8, 0xb3, 0x5f, + 0xad, 0x3f, 0xfd, 0x1f, 0x9e, 0x7c, 0x19, 0xe8, 0xd6, 0x70, 0x7d, 0x6e, 0x83, 0x23, 0x2f, 0x0b, + 0x8d, 0x14, 0xcc, 0x83, 0x96, 0x37, 0xd6, 0x56, 0x2b, 0x4c, 0x52, 0x3b, 0x4d, 0xc1, 0x67, 0x78, + 0x9e, 0x87, 0x91, 0x33, 0x34, 0x77, 0x66, 0x7e, 0xc7, 0x4e, 0x34, 0x19, 0x0e, 0x81, 0xa7, 0xc5, + 0x9c, 0x07, 0x1f, 0xf5, 0x2c, 0xe6, 0x22, 0x1e, 0x98, 0xd8, 0x0c, 0x8e, 0x1f, 0x16, 0x4b, 0xa1, + 0xa3, 0x22, 0x89, 0x91, 0xc0, 0xf2, 0x20, 0x30, 0x0b, 0x7a, 0x40, 0x56, 0x3c, 0xe9, 0xa7, 0xd1, + 0xe2, 0x3d, 0x60, 0x7b, 0xfe, 0x13, 0x73, 0x17, 0x4f, 0xca, 0xef, 0x2c, 0x7e, 0x4c, 0xbe, 0x9b, + 0x84, 0x89, 0xdf, 0x9a, 0xfe, 0x7c, 0xfc, 0x56, 0x32, 0xf6, 0xbd, 0xe1, 0xbd, 0x7f, 0x9e, 0x4e, + 0xbf, 0xd8, 0x5e, 0x3c, 0x67, 0x7b, 0xf9, 0x33, 0xf0, 0x97, 0x5f, 0xf1, 0xb3, 0x3f, 0xa5, 0x37, + 0x7b, 0xce, 0xfe, 0xf1, 0xf2, 0x89, 0x9e, 0x64, 0x4f, 0xce, 0x7f, 0xfc, 0x2d, 0x26, 0xc0, 0x7e, + 0xe2, 0x75, 0x3c, 0xf4, 0xff, 0x7a, 0xfc, 0x3e, 0xfd, 0xfd, 0x5a, 0x7f, 0x8f, 0xe5, 0x9f, 0x70, + 0x76, 0x39, 0xd0, 0x0e, 0xb7, 0xee, 0x46, 0x03, 0x33, 0x44, 0xac, 0x01, 0xcf, 0x0a, 0x7d, 0xb2, 0x15, 0x60, 0x5e, 0x25, 0xba, 0xcd, 0xab, 0x44, 0x8b, 0x31, 0x9c, 0x57, 0x89, 0x96, 0xba, 0x04, 0x5e, 0x25, 0x2a, 0x64, 0x21, 0xbc, 0x4a, 0x94, 0x54, 0x53, 0x95, 0xd8, 0x05, 0xb6, 0xbc, 0x59, - 0xc1, 0x58, 0x7f, 0xe4, 0x31, 0xfe, 0xeb, 0x63, 0xfb, 0x33, 0xca, 0x64, 0xcc, 0x54, 0xf9, 0x98, + 0xc1, 0x58, 0x7f, 0xe4, 0x31, 0xfe, 0xab, 0x63, 0xfb, 0x33, 0xca, 0x64, 0xcc, 0x54, 0xf9, 0x98, 0x09, 0x73, 0x02, 0x3f, 0xf4, 0xc4, 0x7d, 0xd0, 0x09, 0xfb, 0x8c, 0x96, 0x18, 0x2d, 0x31, 0x5a, 0x62, 0xb4, 0xc4, 0x68, 0x89, 0xd1, 0x92, 0x7c, 0x89, 0xa0, 0x4e, 0xb0, 0xc7, 0x4d, 0x62, 0xaf, - 0x1d, 0x59, 0xa0, 0xc9, 0xec, 0x2f, 0x31, 0x0d, 0xb4, 0xef, 0x05, 0x7e, 0x26, 0x89, 0x86, 0x19, + 0x1c, 0x59, 0xa0, 0xc9, 0xec, 0x2f, 0x31, 0x0d, 0xb4, 0xef, 0x05, 0x7e, 0x26, 0x89, 0x86, 0x19, 0x24, 0x8a, 0x66, 0x8e, 0x68, 0x99, 0x31, 0xa2, 0x6e, 0xa6, 0x88, 0xba, 0x19, 0x22, 0xba, 0x66, 0x86, 0xb0, 0x02, 0xbd, 0x48, 0xe9, 0xc0, 0xcf, 0x00, 0xf9, 0x6c, 0xe6, 0xc7, 0x6f, 0xc8, 0xe7, - 0xc5, 0x12, 0x9f, 0x80, 0xbb, 0x69, 0x95, 0x8c, 0xf4, 0x50, 0xd0, 0x69, 0xa6, 0x69, 0x64, 0x87, + 0xc5, 0x02, 0x9f, 0x80, 0xbb, 0x69, 0x95, 0x8c, 0xf4, 0x50, 0xd0, 0x69, 0xa6, 0x69, 0x64, 0x87, 0xb6, 0xd9, 0x87, 0xca, 0x46, 0x72, 0x68, 0x6c, 0x93, 0xd7, 0x30, 0xe5, 0x55, 0xd3, 0x88, 0x0d, - 0xad, 0x2e, 0x60, 0x77, 0x6f, 0x8f, 0x4e, 0x80, 0x81, 0x08, 0xad, 0x7f, 0xfc, 0x79, 0xc7, 0xce, + 0xad, 0x2e, 0x60, 0x77, 0x6f, 0x8f, 0x4e, 0x80, 0x81, 0x08, 0xad, 0x7f, 0xfa, 0x79, 0xcb, 0xce, 0x19, 0x5a, 0x8c, 0x7e, 0x24, 0xb3, 0x73, 0x46, 0x57, 0xe7, 0x0c, 0xe0, 0x50, 0x0a, 0xa0, 0xfa, - 0xaf, 0x5f, 0xe8, 0x81, 0x36, 0xc8, 0xca, 0x8b, 0xa1, 0x12, 0x60, 0x6f, 0x13, 0x31, 0xe7, 0x47, + 0xaf, 0x5f, 0xe8, 0x81, 0x36, 0xc8, 0xca, 0xf3, 0xa1, 0x12, 0x60, 0x6f, 0x13, 0x31, 0xe7, 0x47, 0x40, 0xcf, 0x8b, 0x80, 0x9e, 0x0f, 0x81, 0x39, 0x0f, 0x02, 0xc5, 0x87, 0x80, 0xd2, 0x0b, 0xa9, 0xe5, 0xb3, 0xaf, 0x5a, 0x50, 0x75, 0xd5, 0x65, 0x0e, 0x6e, 0xc0, 0x20, 0x3b, 0xf9, 0x9c, 0x24, 0xdb, 0x42, 0xe1, 0xde, 0x17, 0xcd, 0xeb, 0x56, 0xd7, 0xdb, 0xca, 0x76, 0x17, 0x72, 0x37, 0xa1, - 0xe0, 0x0d, 0x68, 0x99, 0x8f, 0xa9, 0x89, 0x86, 0x66, 0x58, 0x0b, 0x86, 0xb7, 0x61, 0x54, 0xbb, - 0x89, 0xc7, 0xd3, 0x89, 0xf8, 0x6d, 0x98, 0x55, 0x3f, 0x3c, 0x69, 0xbd, 0x70, 0x77, 0x87, 0xd1, + 0xe0, 0x0d, 0x68, 0x99, 0x8f, 0xa9, 0x89, 0x06, 0x66, 0x50, 0x0b, 0x06, 0x77, 0x61, 0x54, 0xbb, + 0x8d, 0x47, 0x93, 0xb1, 0xf8, 0x6d, 0x98, 0x55, 0x3f, 0x3c, 0x6b, 0xbd, 0x70, 0x77, 0x87, 0xd1, 0xd6, 0x03, 0x53, 0x17, 0x8a, 0x54, 0xff, 0x09, 0x58, 0xe7, 0x89, 0x56, 0xcf, 0x09, 0x5b, 0xb7, 0x09, 0x5b, 0x9f, 0x89, 0x59, 0x87, 0x49, 0x64, 0xff, 0x99, 0x1f, 0x39, 0x4a, 0xdb, 0x0c, 0x58, 0xdf, 0x32, 0x64, 0xbf, 0x32, 0x58, 0x9f, 0x32, 0x5c, 0xc3, 0x0b, 0x62, 0x83, 0x0b, 0x70, 0x43, 0x0b, 0x6a, 0x03, 0x0b, 0x7c, 0xc3, 0x0a, 0x7c, 0x83, 0x0a, 0x76, 0x43, 0x0a, 0xdf, 0x46, 0x57, - 0x11, 0x90, 0x32, 0x83, 0x21, 0xf3, 0x40, 0xcf, 0x1e, 0x3b, 0x80, 0x79, 0xa1, 0xe7, 0xb0, 0x8a, - 0xc3, 0x32, 0x89, 0x59, 0x8a, 0x71, 0x0b, 0x1d, 0xbb, 0xd4, 0xe0, 0x97, 0x1a, 0x0c, 0xd3, 0x81, - 0x63, 0x58, 0x58, 0x06, 0x86, 0x67, 0x99, 0x44, 0xf0, 0x87, 0x65, 0xc2, 0xde, 0xf9, 0x0f, 0x7c, - 0xb7, 0x3f, 0x78, 0xc3, 0x2f, 0xf6, 0x3d, 0x65, 0x0a, 0x26, 0x8b, 0xa8, 0xe8, 0xea, 0xd3, 0xd2, - 0xd0, 0xab, 0xa9, 0x87, 0xef, 0x13, 0xf6, 0xad, 0x7d, 0xdc, 0xda, 0xc2, 0xb6, 0xb6, 0x96, 0xbb, - 0xee, 0x55, 0xed, 0x71, 0xf6, 0x89, 0x16, 0xf2, 0x79, 0xc7, 0xc0, 0x2b, 0xc7, 0x0d, 0x09, 0x7d, - 0x6d, 0xae, 0x8a, 0xeb, 0x72, 0x55, 0x5c, 0x93, 0x8b, 0x7d, 0x3d, 0x2e, 0x5b, 0x55, 0x2b, 0xe9, - 0x04, 0xd9, 0x66, 0x26, 0xb8, 0xf1, 0xe1, 0xa9, 0x37, 0x87, 0x48, 0x6d, 0xf0, 0x6c, 0x96, 0x52, - 0xed, 0x43, 0xd8, 0x2c, 0x05, 0xe2, 0x33, 0x10, 0x4a, 0xfb, 0x0b, 0x6c, 0x3e, 0x75, 0x96, 0x8f, - 0xc8, 0x9e, 0x3d, 0xa1, 0xb3, 0xf9, 0x03, 0x62, 0x33, 0x99, 0x36, 0x07, 0x65, 0x85, 0x93, 0xbb, - 0x46, 0x2d, 0x8c, 0x52, 0x13, 0x5f, 0x07, 0x03, 0x53, 0x0b, 0x86, 0xc3, 0xd8, 0x24, 0x09, 0x4e, - 0x3b, 0xd9, 0x33, 0xf6, 0xb3, 0xa1, 0x6c, 0x13, 0x66, 0xb2, 0xa1, 0x2c, 0x47, 0xe5, 0xb2, 0xa1, - 0x2c, 0xbf, 0xed, 0xc5, 0x86, 0xb2, 0xa2, 0x19, 0x97, 0x0d, 0x65, 0x55, 0x0b, 0x6b, 0xd8, 0x50, - 0x96, 0xef, 0xf9, 0xc0, 0x86, 0x32, 0x82, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, - 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, - 0xa3, 0x24, 0x7f, 0x9e, 0x3d, 0x69, 0x30, 0xb2, 0x3f, 0xcf, 0xc1, 0x13, 0xdb, 0xc6, 0x08, 0x53, - 0x8a, 0xa1, 0x0a, 0x1d, 0xae, 0xd4, 0x40, 0x96, 0x1a, 0xd8, 0xd2, 0x01, 0x5d, 0x58, 0xf0, 0x05, - 0x06, 0x61, 0x99, 0x44, 0xf0, 0xdb, 0xc6, 0xe6, 0x6f, 0xba, 0x30, 0x09, 0xe7, 0x31, 0xe5, 0xec, - 0xfc, 0x06, 0x68, 0x7b, 0x37, 0x48, 0x53, 0x13, 0x47, 0xb0, 0xfd, 0x63, 0xd6, 0xff, 0xfe, 0xe3, - 0x1f, 0x7f, 0x6c, 0xd7, 0x0e, 0xdf, 0xfd, 0xf5, 0xc7, 0x4e, 0xed, 0xf0, 0xdd, 0xe2, 0xb7, 0x3b, - 0xf3, 0x5f, 0x16, 0xbf, 0xdf, 0xfd, 0x63, 0xbb, 0xd6, 0x58, 0xfd, 0x7e, 0xef, 0x8f, 0xed, 0xda, - 0xde, 0xbb, 0x7f, 0xfe, 0xe7, 0x3f, 0x2f, 0xfe, 0xf9, 0xdf, 0x97, 0x9f, 0xbe, 0xff, 0x1b, 0xff, - 0xc7, 0x62, 0xe9, 0x38, 0x9d, 0xef, 0x23, 0xf5, 0xb1, 0x74, 0xbc, 0xfc, 0x45, 0xb0, 0x74, 0x9c, - 0x7c, 0xa7, 0xca, 0x52, 0x96, 0x8e, 0xe7, 0x6b, 0x77, 0x15, 0xca, 0x40, 0x9f, 0xae, 0x1e, 0x63, - 0xf1, 0x78, 0x75, 0x2c, 0x64, 0xf1, 0x38, 0xbd, 0xc6, 0x66, 0xbc, 0x06, 0xcb, 0xc7, 0x3f, 0x2b, - 0x1f, 0x77, 0x27, 0x77, 0x0d, 0x77, 0xf5, 0x8c, 0xec, 0xe5, 0x23, 0x62, 0x01, 0xb9, 0x36, 0x27, - 0xb5, 0x48, 0x4b, 0x3d, 0xec, 0x2c, 0xc8, 0xfa, 0xf1, 0x35, 0xf3, 0x59, 0x3e, 0xbe, 0x09, 0x33, - 0x59, 0x3e, 0x9e, 0xa3, 0x70, 0x59, 0x3e, 0x9e, 0xdf, 0xf6, 0x62, 0xf9, 0x78, 0xd1, 0x94, 0xcb, - 0xf2, 0xf1, 0xaa, 0x05, 0x36, 0x2c, 0x1f, 0xcf, 0xf7, 0x7c, 0x60, 0xf9, 0x38, 0xc1, 0x06, 0x11, - 0x70, 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, - 0x40, 0xc0, 0x08, 0x0e, 0x90, 0x32, 0x83, 0x59, 0x3e, 0x5e, 0x2a, 0x3c, 0xb1, 0x7c, 0x9c, 0x30, - 0xa5, 0x18, 0xaa, 0xd0, 0xe1, 0x4a, 0x0d, 0x64, 0xa9, 0x81, 0x2d, 0x1d, 0xd0, 0x85, 0x05, 0x5f, - 0x60, 0x10, 0x96, 0x49, 0x84, 0xe5, 0xe3, 0x42, 0x28, 0x87, 0xe5, 0xe3, 0x65, 0x2c, 0x80, 0xe5, - 0xe3, 0x7f, 0xff, 0x61, 0xf9, 0x78, 0x9e, 0xea, 0x63, 0xf9, 0x78, 0xf9, 0x8b, 0x60, 0xf9, 0x38, - 0xf9, 0x4e, 0x95, 0xa5, 0x2c, 0x1f, 0xcf, 0xd7, 0xee, 0xca, 0x14, 0x82, 0x7e, 0x59, 0x3c, 0xc6, - 0xea, 0xf1, 0xea, 0x58, 0xc8, 0xea, 0x71, 0x3a, 0x8d, 0x8d, 0x38, 0x0d, 0x16, 0x8f, 0xaf, 0x15, - 0x8f, 0x67, 0xff, 0x3b, 0x6b, 0xc7, 0x95, 0xba, 0x28, 0x2b, 0x9c, 0xdc, 0xed, 0x83, 0x0f, 0x1f, - 0xdf, 0xe7, 0xf0, 0xf1, 0x9c, 0xcc, 0x64, 0xf5, 0x78, 0x8e, 0xca, 0x65, 0xf5, 0x78, 0x7e, 0xdb, - 0x8b, 0xd5, 0xe3, 0x45, 0x53, 0x2e, 0xab, 0xc7, 0xab, 0x16, 0xd8, 0xb0, 0x7a, 0x3c, 0xdf, 0xf3, - 0x81, 0xd5, 0xe3, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, 0x1d, 0x54, 0xe0, 0x81, 0x07, 0x1f, 0x78, - 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, 0x38, 0x40, 0xca, 0x0c, 0x66, 0xf5, 0x78, - 0xa9, 0xf0, 0xc4, 0xea, 0x71, 0xc2, 0x94, 0x62, 0xa8, 0x42, 0x87, 0x2b, 0x35, 0x90, 0xa5, 0x06, - 0xb6, 0x74, 0x40, 0x17, 0x16, 0x7c, 0x81, 0x41, 0x58, 0x26, 0x11, 0x15, 0xd5, 0xe3, 0xfb, 0xac, - 0x1e, 0x2f, 0x89, 0x18, 0x94, 0x54, 0x8f, 0x07, 0xb5, 0x6b, 0xbb, 0x76, 0xfa, 0xee, 0xbf, 0x3b, - 0xbf, 0x36, 0x3e, 0x1d, 0xfd, 0xf3, 0xbf, 0x07, 0x9f, 0xbe, 0xfc, 0xe2, 0x5f, 0x4f, 0xfd, 0x6f, - 0x3b, 0xbf, 0x1e, 0x7c, 0x3a, 0x7a, 0xe6, 0xbf, 0xec, 0x7f, 0x3a, 0xfa, 0xc6, 0x3f, 0x63, 0xef, - 0xd3, 0x3f, 0xd6, 0xfe, 0xd7, 0xd9, 0xd7, 0x77, 0x9f, 0xfb, 0x86, 0xc6, 0x33, 0xdf, 0xf0, 0xf2, - 0xb9, 0x6f, 0x78, 0xf9, 0xcc, 0x37, 0x3c, 0x6b, 0xd2, 0xee, 0x33, 0xdf, 0xb0, 0xf7, 0xe9, 0xaf, - 0xb5, 0xff, 0xff, 0x1f, 0x4f, 0xff, 0xaf, 0xfb, 0x9f, 0xfe, 0xf9, 0xd7, 0x73, 0xff, 0xed, 0xe0, - 0xd3, 0x5f, 0x47, 0xff, 0x64, 0x2d, 0x3d, 0x8f, 0xa2, 0xcf, 0xf7, 0x22, 0x6b, 0xe9, 0xcb, 0x5f, - 0x04, 0x6b, 0xe9, 0x49, 0xbb, 0xaa, 0x2c, 0x65, 0x2d, 0x7d, 0xbe, 0x76, 0x57, 0xa4, 0x2c, 0x76, - 0x9f, 0xa3, 0xd8, 0xab, 0x6c, 0x21, 0x8b, 0xe9, 0xe9, 0x35, 0x36, 0xe3, 0x35, 0x58, 0x4d, 0xff, - 0x65, 0x35, 0xfd, 0x3e, 0x47, 0xb1, 0xab, 0x77, 0x52, 0x8b, 0x24, 0x1d, 0xf4, 0x28, 0xf6, 0x7d, - 0x8e, 0x62, 0xcf, 0xc7, 0x4c, 0x16, 0xd3, 0xe7, 0x28, 0x5c, 0x16, 0xd3, 0xe7, 0xb7, 0xbd, 0x58, - 0x4c, 0x5f, 0x34, 0xe5, 0xb2, 0x98, 0xbe, 0x6a, 0x81, 0x0d, 0x8b, 0xe9, 0xf3, 0x3d, 0x1f, 0x58, - 0x4c, 0x4f, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, - 0x6c, 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, 0x16, 0xd3, 0x97, 0x0a, - 0x4f, 0x2c, 0xa6, 0x27, 0x4c, 0x29, 0x86, 0x2a, 0x74, 0xb8, 0x52, 0x03, 0x59, 0x6a, 0x60, 0x4b, - 0x07, 0x74, 0x61, 0xc1, 0x17, 0x18, 0x84, 0x65, 0x12, 0x61, 0x31, 0xbd, 0x10, 0xca, 0x61, 0x31, - 0x7d, 0x19, 0x0b, 0x60, 0x31, 0x3d, 0x8b, 0xe9, 0xbf, 0xfd, 0xc3, 0x62, 0xfa, 0x3c, 0xf7, 0x22, - 0x8b, 0xe9, 0xcb, 0x5f, 0x04, 0x8b, 0xe9, 0x49, 0xbb, 0xaa, 0x2c, 0x65, 0x31, 0x7d, 0xbe, 0x76, - 0x57, 0xa6, 0x2c, 0x96, 0x83, 0xe9, 0xab, 0x6b, 0x21, 0x6b, 0xe9, 0xe9, 0x34, 0x36, 0xe2, 0x34, - 0x58, 0x4a, 0xbf, 0x56, 0x4a, 0xcf, 0xc1, 0xf4, 0xda, 0x5d, 0x94, 0x35, 0x0a, 0xa2, 0x5a, 0x30, - 0xfc, 0xbf, 0x60, 0x60, 0xa2, 0xc1, 0x7d, 0x2d, 0x09, 0x87, 0x40, 0x65, 0xf4, 0x4f, 0xd8, 0xce, - 0x1a, 0xfa, 0x4d, 0x98, 0xc9, 0x1a, 0xfa, 0x1c, 0x55, 0xcb, 0x1a, 0xfa, 0xfc, 0xb6, 0x17, 0x6b, - 0xe8, 0x8b, 0xa6, 0x5b, 0xd6, 0xd0, 0x57, 0x2d, 0xa0, 0x81, 0xa9, 0xa1, 0x5f, 0xc3, 0x03, 0xbc, - 0x7a, 0xfa, 0xf5, 0x25, 0xb0, 0xb6, 0xbe, 0xca, 0xc0, 0x83, 0x08, 0x3e, 0xc0, 0x00, 0x84, 0x0a, - 0x42, 0xf0, 0x40, 0x04, 0x0f, 0x46, 0xd8, 0x80, 0x84, 0x01, 0x4a, 0x20, 0xc0, 0x04, 0x07, 0x4e, - 0x99, 0xc1, 0x58, 0x4d, 0x88, 0x6b, 0xe7, 0x0c, 0x52, 0x33, 0x22, 0x28, 0x38, 0xc1, 0x02, 0x14, - 0x32, 0x48, 0x29, 0x00, 0x2a, 0x74, 0xb0, 0x52, 0x03, 0x58, 0x6a, 0x40, 0x4b, 0x07, 0x70, 0x61, - 0x81, 0x17, 0x18, 0x80, 0xc1, 0x82, 0x58, 0x66, 0xf8, 0xf5, 0x28, 0xb8, 0x49, 0x70, 0x9d, 0xe5, - 0xea, 0xbc, 0x5a, 0x2c, 0x03, 0xd4, 0xbf, 0x60, 0x36, 0x3e, 0xc2, 0x83, 0x9a, 0x06, 0x60, 0x53, - 0x04, 0x6e, 0x5a, 0x00, 0x4e, 0x1d, 0xc8, 0xa9, 0x03, 0x3a, 0x5d, 0x60, 0x87, 0x09, 0x78, 0xa0, - 0xa0, 0x97, 0x49, 0x07, 0xb6, 0x91, 0x72, 0xed, 0xc4, 0x30, 0xd1, 0xf4, 0xd6, 0xc4, 0x8b, 0x72, - 0x52, 0xe0, 0x53, 0x63, 0x95, 0xe5, 0x6a, 0x00, 0xaf, 0xc1, 0x89, 0xa6, 0xb7, 0x33, 0x51, 0x71, - 0x2b, 0x17, 0xf9, 0xd4, 0xa1, 0x1b, 0xd1, 0xb2, 0x55, 0x68, 0x68, 0x48, 0x7b, 0x58, 0x8c, 0x82, - 0xc6, 0xb4, 0x6c, 0x31, 0xd0, 0x0d, 0x6a, 0xb8, 0x74, 0x01, 0xe8, 0x8e, 0xac, 0xac, 0x81, 0x00, - 0xa8, 0xb2, 0xe8, 0x59, 0xb0, 0x78, 0xbc, 0x18, 0x66, 0x66, 0xca, 0x30, 0x9f, 0x99, 0x19, 0x41, - 0xdb, 0x81, 0x99, 0x19, 0x39, 0xdb, 0x9a, 0x99, 0x19, 0xe1, 0x0b, 0x62, 0x66, 0x86, 0xfc, 0xf4, - 0x83, 0xd2, 0xd1, 0x93, 0x99, 0x49, 0xee, 0x93, 0xd4, 0xdc, 0xe2, 0xe2, 0xd3, 0x16, 0xf8, 0xbc, - 0xab, 0x07, 0x0c, 0x01, 0x9f, 0x7b, 0x95, 0x2d, 0xe4, 0x7f, 0xff, 0xd8, 0xae, 0x1d, 0xda, 0xb5, - 0xd3, 0xa0, 0x76, 0xfd, 0xee, 0xbf, 0x8d, 0x4f, 0xff, 0xf9, 0xcf, 0x8b, 0xaf, 0x7c, 0xe1, 0x7f, - 0x70, 0xbd, 0xee, 0x3b, 0xc6, 0xd9, 0x3c, 0x27, 0x9e, 0xd9, 0x07, 0x77, 0xc1, 0x68, 0x6a, 0xf0, - 0x23, 0xec, 0xc5, 0x32, 0x18, 0x5b, 0x33, 0xb6, 0x66, 0x6c, 0xcd, 0xd8, 0x9a, 0xb1, 0x35, 0x63, - 0x6b, 0xc6, 0xd6, 0x64, 0x26, 0xc6, 0xd6, 0xdf, 0x70, 0x62, 0x4c, 0xc3, 0x28, 0x7d, 0xb9, 0xab, - 0x20, 0xb0, 0x3e, 0x00, 0x5e, 0x42, 0x2f, 0x88, 0x6e, 0x0c, 0x7c, 0x54, 0x8d, 0x7d, 0x60, 0x6f, - 0x2d, 0x8b, 0x07, 0xe0, 0xc9, 0x43, 0x49, 0x60, 0xb1, 0xb6, 0x9c, 0xcb, 0x65, 0xac, 0xaa, 0x65, - 0x3d, 0xa7, 0x71, 0x30, 0x48, 0xc3, 0x71, 0xd4, 0x0c, 0x6f, 0xc2, 0x79, 0x79, 0xc7, 0x36, 0xfc, - 0xba, 0x3e, 0xfd, 0xaa, 0xc0, 0x05, 0x04, 0x1f, 0xe9, 0x02, 0x84, 0xbb, 0x80, 0xc6, 0xee, 0x61, - 0xe3, 0x70, 0xff, 0x60, 0xf7, 0x70, 0x8f, 0xbe, 0x80, 0x01, 0x09, 0xad, 0x7f, 0xfc, 0x61, 0xba, - 0x9f, 0x67, 0xdd, 0x73, 0x6e, 0xe6, 0x83, 0x09, 0x6f, 0xde, 0xa7, 0xf8, 0xf9, 0xfe, 0xe5, 0x3a, - 0x98, 0xf0, 0x2f, 0xc3, 0x7c, 0x26, 0xfc, 0x05, 0xed, 0x04, 0x26, 0xfc, 0xe5, 0x6c, 0x6b, 0x26, - 0xfc, 0x85, 0x2f, 0x88, 0x09, 0x7f, 0x52, 0xd3, 0x0f, 0x4a, 0x47, 0x57, 0xc2, 0xff, 0x37, 0x05, - 0xf9, 0xfe, 0x3d, 0xe6, 0xfb, 0x4b, 0xfe, 0x30, 0xdf, 0xcf, 0xb8, 0x22, 0xc7, 0xe5, 0x30, 0xdf, - 0xcf, 0xd3, 0xbc, 0x08, 0x17, 0xc0, 0x7c, 0xbf, 0x78, 0x17, 0xb0, 0xbb, 0xc7, 0x44, 0x3f, 0x03, - 0x11, 0x5a, 0xff, 0xd9, 0x87, 0x89, 0x7e, 0x5a, 0x0c, 0x7f, 0x24, 0xa3, 0x5e, 0x00, 0x9b, 0xd9, - 0x5f, 0x85, 0x3b, 0x1d, 0xd7, 0x2f, 0x83, 0x5b, 0xff, 0x12, 0xd2, 0xbd, 0xb0, 0x78, 0x3b, 0x1b, - 0x68, 0x57, 0x83, 0xf6, 0x14, 0x41, 0xf7, 0x12, 0x81, 0x72, 0x3f, 0x47, 0xdb, 0x97, 0x29, 0x74, - 0x8e, 0xb6, 0x2f, 0x6f, 0xbb, 0x72, 0xb4, 0xbd, 0x34, 0x0c, 0xe5, 0x68, 0x7b, 0x32, 0xcd, 0xdf, - 0x4b, 0x04, 0xf6, 0x15, 0xe0, 0xc3, 0x95, 0x87, 0x26, 0xb8, 0x8e, 0xcd, 0x35, 0xa2, 0xc7, 0x5f, - 0x4d, 0xcf, 0x00, 0xec, 0xf2, 0xb1, 0xba, 0xcb, 0xe0, 0xf0, 0xc5, 0x8b, 0x45, 0x90, 0x54, 0x5f, - 0x20, 0x26, 0x43, 0xa5, 0x0a, 0x5b, 0x8a, 0x72, 0xb1, 0xda, 0x6b, 0x73, 0x8f, 0x16, 0x14, 0x61, - 0xce, 0xb1, 0x85, 0x9e, 0x5b, 0x0b, 0x3d, 0xa7, 0x16, 0x73, 0x2e, 0x2d, 0x8a, 0x03, 0x01, 0xcd, - 0xef, 0x32, 0xaf, 0x8b, 0x75, 0x2b, 0xf6, 0xe2, 0x67, 0x96, 0xc6, 0xd3, 0x41, 0x1a, 0x2d, 0x69, - 0xb7, 0xb3, 0xf8, 0x21, 0xb8, 0xcb, 0xc5, 0xfb, 0xdd, 0xe5, 0x93, 0xf7, 0xdd, 0x24, 0x4c, 0xfc, - 0xd6, 0xec, 0x91, 0xfb, 0xad, 0x64, 0xe2, 0x7b, 0xa3, 0x3b, 0xbf, 0x9d, 0xce, 0xbe, 0xd8, 0x59, - 0x3e, 0x3a, 0x7b, 0xf5, 0x58, 0xfd, 0xd5, 0x57, 0xfc, 0xec, 0x4f, 0xe9, 0xcf, 0x1f, 0x9d, 0xdf, - 0x0a, 0x22, 0x7b, 0xf5, 0x98, 0xfa, 0xe1, 0x10, 0x03, 0xe6, 0xe4, 0xa3, 0x91, 0x6c, 0x0b, 0x85, - 0xfb, 0x5c, 0x34, 0x5f, 0x5b, 0x51, 0x1f, 0x2b, 0xdb, 0x57, 0xc8, 0xdd, 0x81, 0x82, 0x77, 0x9f, - 0x35, 0x97, 0x55, 0xa6, 0x14, 0xf9, 0xf7, 0x08, 0x3e, 0xa4, 0x84, 0xbe, 0x30, 0x5c, 0xb8, 0x87, - 0xc3, 0xb8, 0xc2, 0x19, 0xe6, 0xbd, 0x16, 0xd2, 0x7b, 0x2c, 0xc0, 0xf7, 0x56, 0x68, 0xef, 0xa9, - 0x60, 0xdf, 0x4b, 0xc1, 0xbe, 0x87, 0xc2, 0x7c, 0xef, 0x44, 0x4a, 0xff, 0x99, 0x1f, 0x39, 0xca, - 0x15, 0xc9, 0xd6, 0xa2, 0xa2, 0x0b, 0xc6, 0x79, 0x65, 0xd3, 0xe2, 0xe7, 0x66, 0xa3, 0xe4, 0xd7, - 0x21, 0x80, 0x06, 0x0e, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, - 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x78, 0x34, 0x1e, - 0x04, 0xa3, 0xda, 0x24, 0x1e, 0xa7, 0x66, 0x00, 0xd9, 0xc9, 0xf0, 0x90, 0x0e, 0xfa, 0x72, 0x25, - 0xac, 0x83, 0x26, 0x56, 0xe9, 0xc2, 0x2b, 0x05, 0x98, 0x85, 0x8e, 0x5b, 0x6a, 0xb0, 0x4b, 0x0d, - 0x7e, 0xe9, 0xc0, 0x30, 0x2c, 0x1c, 0x03, 0xc3, 0xb2, 0x4c, 0x22, 0xf8, 0x75, 0xd0, 0x26, 0x9a, - 0xde, 0x9a, 0x38, 0x00, 0x04, 0x9c, 0xc7, 0x90, 0xb3, 0xd3, 0x00, 0xb4, 0xdd, 0x89, 0xa6, 0xb7, - 0x33, 0xf1, 0x70, 0x8b, 0xe6, 0xf9, 0x94, 0x21, 0x2b, 0x60, 0x33, 0xeb, 0x91, 0x2b, 0x61, 0x1f, - 0x16, 0x01, 0x5c, 0x11, 0x9b, 0x2d, 0x02, 0xb2, 0x32, 0x16, 0x8f, 0x02, 0x98, 0x3e, 0xda, 0x28, - 0xc2, 0xb2, 0xe2, 0x58, 0x6e, 0x35, 0xdc, 0xe7, 0xe5, 0x46, 0x48, 0x43, 0x23, 0x58, 0x3c, 0xab, - 0xda, 0x7d, 0xb0, 0x78, 0x56, 0xbe, 0xbb, 0x40, 0x28, 0xf9, 0x2a, 0xb2, 0x07, 0x21, 0x8c, 0xfe, - 0xb4, 0x1f, 0x1e, 0x0e, 0xcb, 0x8a, 0xb5, 0xf9, 0xa5, 0x45, 0x75, 0xee, 0xd0, 0x8c, 0x82, 0x7b, - 0xb0, 0x8a, 0xe2, 0x85, 0xcd, 0x2c, 0x26, 0xde, 0x84, 0x99, 0x2c, 0x26, 0xce, 0x51, 0xad, 0x2c, - 0x26, 0xce, 0x6f, 0x7b, 0xb1, 0x98, 0xb8, 0x68, 0x84, 0x65, 0x31, 0x71, 0xd5, 0xa2, 0x16, 0x16, - 0x13, 0xe7, 0x7b, 0x3e, 0xb0, 0x98, 0x98, 0x60, 0x83, 0x08, 0x38, 0xc0, 0xa0, 0x83, 0x0a, 0x3c, - 0xf0, 0xe0, 0x03, 0x0f, 0x40, 0xd8, 0x20, 0x84, 0x01, 0x44, 0x20, 0x60, 0x04, 0x07, 0x48, 0x99, - 0xc1, 0x41, 0xed, 0x2a, 0x4c, 0x71, 0x2b, 0x88, 0x17, 0xe6, 0xb3, 0x6c, 0x98, 0x00, 0xa5, 0x0b, - 0xa4, 0x14, 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, 0xa5, 0x03, 0xb8, 0xb0, 0xc0, - 0x0b, 0x0c, 0xc0, 0x32, 0x89, 0xe0, 0x97, 0x0d, 0x5f, 0x8d, 0xc7, 0x23, 0x13, 0x40, 0x97, 0x0c, - 0xef, 0xb0, 0x82, 0xaf, 0xea, 0x9b, 0xd1, 0xc2, 0x78, 0x9f, 0xfc, 0xec, 0x2e, 0x44, 0x78, 0xb5, - 0xcc, 0x00, 0x83, 0x01, 0x06, 0x03, 0x0c, 0x06, 0x18, 0x0c, 0x30, 0x18, 0x60, 0x30, 0xc0, 0x60, - 0x80, 0xf1, 0x8d, 0x1e, 0x7f, 0x1a, 0x46, 0xe9, 0xcb, 0x5d, 0xe0, 0xf8, 0x02, 0xf1, 0x76, 0x96, - 0x5e, 0x10, 0xdd, 0xcc, 0x9e, 0xfe, 0x1f, 0x90, 0x8e, 0x11, 0xf7, 0xde, 0x72, 0xab, 0x1d, 0x46, - 0xf0, 0x17, 0xaf, 0x2b, 0xb9, 0x70, 0x3d, 0xbb, 0x68, 0x1d, 0x7d, 0x1d, 0x8a, 0xae, 0x57, 0xff, - 0xf4, 0x2b, 0xf0, 0xd6, 0x0e, 0x3e, 0x72, 0x6b, 0x0b, 0xdb, 0xda, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, - 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0xf7, 0x38, 0x03, 0x82, 0x6a, 0x59, 0xfd, 0x8e, 0x69, 0xef, 0x0a, - 0x5b, 0xca, 0xc6, 0xf5, 0x7c, 0xed, 0xae, 0x4c, 0x27, 0xea, 0xfc, 0xd5, 0x03, 0x7b, 0xd6, 0xab, - 0x63, 0x21, 0x7b, 0xd6, 0xe9, 0x29, 0x7e, 0xdc, 0x53, 0xb0, 0x5d, 0x7d, 0xad, 0x5d, 0xbd, 0x39, - 0x7f, 0x2e, 0xec, 0x54, 0xd7, 0xe6, 0x8d, 0x1e, 0x75, 0x7d, 0xd7, 0xee, 0x82, 0x38, 0xc4, 0xf0, - 0x49, 0x4f, 0xf4, 0xac, 0x3f, 0xb2, 0x9e, 0xdd, 0xeb, 0x9b, 0x30, 0x93, 0xdd, 0xeb, 0x39, 0xea, - 0x96, 0xdd, 0xeb, 0xf9, 0x6d, 0x2f, 0x76, 0xaf, 0x17, 0x0d, 0xb3, 0xec, 0x5e, 0xaf, 0x5a, 0xfc, - 0xc2, 0xee, 0xf5, 0x7c, 0xcf, 0x07, 0x76, 0xaf, 0x13, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, + 0x11, 0x90, 0x32, 0x83, 0x21, 0xf3, 0x40, 0x6b, 0x8f, 0x1d, 0xc0, 0xbc, 0xd0, 0x3a, 0xac, 0xe2, + 0xb0, 0x4c, 0x62, 0x96, 0x62, 0xdc, 0x42, 0xc7, 0x2e, 0x35, 0xf8, 0xa5, 0x06, 0xc3, 0x74, 0xe0, + 0x18, 0x16, 0x96, 0x81, 0xe1, 0x59, 0x26, 0x11, 0xfc, 0x61, 0x99, 0xb0, 0x77, 0xfe, 0x03, 0xdf, + 0xed, 0x0f, 0xde, 0xf0, 0x8b, 0x7d, 0x4f, 0x99, 0x82, 0xc9, 0x22, 0x2a, 0xba, 0xfa, 0xb4, 0x34, + 0xf4, 0x6a, 0xea, 0xe1, 0xfb, 0x84, 0x7d, 0x6b, 0x1f, 0xb7, 0xb6, 0xb0, 0xad, 0xad, 0xe5, 0xae, + 0x7b, 0x55, 0x7b, 0x9c, 0x7d, 0xa2, 0x85, 0x7c, 0xde, 0x32, 0xf0, 0xca, 0x71, 0x43, 0x42, 0x5f, + 0x9b, 0xab, 0xe2, 0xba, 0x5c, 0x15, 0xd7, 0xe4, 0x62, 0x5f, 0x8f, 0xcb, 0x56, 0xd5, 0x4a, 0x3a, + 0x41, 0xb6, 0x99, 0x09, 0x6e, 0x7c, 0x78, 0xee, 0xcd, 0x21, 0x52, 0x1b, 0x3c, 0x9b, 0xa5, 0x54, + 0xfb, 0x10, 0x36, 0x4b, 0x81, 0xf8, 0x0c, 0x84, 0xd2, 0xfe, 0x02, 0x9b, 0x4f, 0x9d, 0xc5, 0x23, + 0xb2, 0xa7, 0x4f, 0xe8, 0x6c, 0xf6, 0x80, 0xd8, 0x4c, 0xa6, 0xcd, 0x41, 0x59, 0xe1, 0xf8, 0xbe, + 0x51, 0x0b, 0xa3, 0xd4, 0xc4, 0x37, 0x41, 0xdf, 0xd4, 0x82, 0xc1, 0x20, 0x36, 0x49, 0x82, 0xd3, + 0x4e, 0xb6, 0xc6, 0x7e, 0x36, 0x94, 0x6d, 0xc2, 0x4c, 0x36, 0x94, 0xe5, 0xa8, 0x5c, 0x36, 0x94, + 0xe5, 0xb7, 0xbd, 0xd8, 0x50, 0x56, 0x34, 0xe3, 0xb2, 0xa1, 0xac, 0x6a, 0x61, 0x0d, 0x1b, 0xca, + 0xf2, 0x3d, 0x1f, 0xd8, 0x50, 0x46, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, + 0xf0, 0x81, 0x07, 0x20, 0x6c, 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, + 0x94, 0xe4, 0xcf, 0xda, 0x93, 0x06, 0x23, 0xfb, 0xb3, 0x0e, 0x9e, 0xd8, 0x36, 0x46, 0x98, 0x52, + 0x0c, 0x55, 0xe8, 0x70, 0xa5, 0x06, 0xb2, 0xd4, 0xc0, 0x96, 0x0e, 0xe8, 0xc2, 0x82, 0x2f, 0x30, + 0x08, 0xcb, 0x24, 0x82, 0xdf, 0x36, 0x36, 0x7b, 0xd3, 0x85, 0x49, 0x38, 0x4f, 0x29, 0x67, 0xe7, + 0x37, 0x40, 0xdb, 0x3b, 0x41, 0x9a, 0x9a, 0x38, 0x82, 0xed, 0x1f, 0xb3, 0xfe, 0xf7, 0x1f, 0xff, + 0xf8, 0x73, 0xbb, 0x76, 0xf8, 0xf6, 0xaf, 0x3f, 0x77, 0x6a, 0x87, 0x6f, 0xe7, 0xbf, 0xdd, 0x99, + 0xfd, 0x32, 0xff, 0xfd, 0xee, 0x9f, 0xdb, 0xb5, 0xc6, 0xf2, 0xf7, 0x7b, 0x7f, 0x6e, 0xd7, 0xf6, + 0xde, 0xfe, 0xf3, 0x3f, 0xff, 0x79, 0xf1, 0xcf, 0xff, 0xbe, 0xfc, 0xf4, 0xfd, 0xdf, 0xf8, 0x3f, + 0x16, 0x4b, 0xc7, 0xe9, 0x7c, 0x9f, 0xa8, 0x8f, 0xa5, 0xe3, 0xe5, 0x2f, 0x82, 0xa5, 0xe3, 0xe4, + 0x3b, 0x55, 0x96, 0xb2, 0x74, 0x3c, 0x5f, 0xbb, 0xab, 0x50, 0x06, 0xfa, 0x7c, 0xf5, 0x18, 0x8b, + 0xc7, 0xab, 0x63, 0x21, 0x8b, 0xc7, 0xe9, 0x35, 0x36, 0xe3, 0x35, 0x58, 0x3e, 0xfe, 0x59, 0xf9, + 0xb8, 0x3b, 0xbe, 0x6f, 0xb8, 0xcb, 0x67, 0x64, 0x2f, 0x1e, 0x11, 0x0b, 0xc8, 0xb5, 0x39, 0xa9, + 0x79, 0x5a, 0xea, 0x71, 0x67, 0x41, 0xd6, 0x8f, 0xaf, 0x98, 0xcf, 0xf2, 0xf1, 0x4d, 0x98, 0xc9, + 0xf2, 0xf1, 0x1c, 0x85, 0xcb, 0xf2, 0xf1, 0xfc, 0xb6, 0x17, 0xcb, 0xc7, 0x8b, 0xa6, 0x5c, 0x96, + 0x8f, 0x57, 0x2d, 0xb0, 0x61, 0xf9, 0x78, 0xbe, 0xe7, 0x03, 0xcb, 0xc7, 0x09, 0x36, 0x88, 0x80, + 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, 0x40, 0x04, + 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0xcc, 0xf2, 0xf1, 0x52, 0xe1, 0x89, 0xe5, 0xe3, 0x84, 0x29, + 0xc5, 0x50, 0x85, 0x0e, 0x57, 0x6a, 0x20, 0x4b, 0x0d, 0x6c, 0xe9, 0x80, 0x2e, 0x2c, 0xf8, 0x02, + 0x83, 0xb0, 0x4c, 0x22, 0x2c, 0x1f, 0x17, 0x42, 0x39, 0x2c, 0x1f, 0x2f, 0x63, 0x01, 0x2c, 0x1f, + 0xff, 0xfb, 0x0f, 0xcb, 0xc7, 0xf3, 0x54, 0x1f, 0xcb, 0xc7, 0xcb, 0x5f, 0x04, 0xcb, 0xc7, 0xc9, + 0x77, 0xaa, 0x2c, 0x65, 0xf9, 0x78, 0xbe, 0x76, 0x57, 0xa6, 0x10, 0xf4, 0xcb, 0xe2, 0x31, 0x56, + 0x8f, 0x57, 0xc7, 0x42, 0x56, 0x8f, 0xd3, 0x69, 0x6c, 0xc4, 0x69, 0xb0, 0x78, 0x7c, 0xa5, 0x78, + 0x3c, 0xfb, 0xdf, 0x59, 0x3b, 0xae, 0xd4, 0x45, 0x59, 0xe1, 0xf8, 0x7e, 0x1f, 0x7c, 0xf8, 0xf8, + 0x3e, 0x87, 0x8f, 0xe7, 0x64, 0x26, 0xab, 0xc7, 0x73, 0x54, 0x2e, 0xab, 0xc7, 0xf3, 0xdb, 0x5e, + 0xac, 0x1e, 0x2f, 0x9a, 0x72, 0x59, 0x3d, 0x5e, 0xb5, 0xc0, 0x86, 0xd5, 0xe3, 0xf9, 0x9e, 0x0f, + 0xac, 0x1e, 0x27, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, + 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0xab, 0xc7, 0x4b, + 0x85, 0x27, 0x56, 0x8f, 0x13, 0xa6, 0x14, 0x43, 0x15, 0x3a, 0x5c, 0xa9, 0x81, 0x2c, 0x35, 0xb0, + 0xa5, 0x03, 0xba, 0xb0, 0xe0, 0x0b, 0x0c, 0xc2, 0x32, 0x89, 0xa8, 0xa8, 0x1e, 0xdf, 0x67, 0xf5, + 0x78, 0x49, 0xc4, 0xa0, 0xa4, 0x7a, 0x3c, 0xa8, 0xdd, 0xd8, 0xb5, 0xd3, 0xb7, 0xff, 0xdd, 0xf9, + 0xb5, 0xf1, 0xe9, 0xe8, 0x9f, 0xff, 0x3d, 0xf8, 0xf4, 0xe5, 0x17, 0xff, 0x7a, 0xee, 0x7f, 0xdb, + 0xf9, 0xf5, 0xe0, 0xd3, 0xd1, 0x9a, 0xff, 0xb2, 0xff, 0xe9, 0xe8, 0x1b, 0xff, 0x8c, 0xbd, 0x4f, + 0xff, 0x58, 0xf9, 0x5f, 0xa7, 0x5f, 0xdf, 0x5d, 0xf7, 0x0d, 0x8d, 0x35, 0xdf, 0xf0, 0x72, 0xdd, + 0x37, 0xbc, 0x5c, 0xf3, 0x0d, 0x6b, 0x4d, 0xda, 0x5d, 0xf3, 0x0d, 0x7b, 0x9f, 0xfe, 0x5a, 0xf9, + 0xff, 0xff, 0xf1, 0xfc, 0xff, 0xba, 0xff, 0xe9, 0x9f, 0x7f, 0xad, 0xfb, 0x6f, 0x07, 0x9f, 0xfe, + 0x3a, 0xfa, 0x27, 0x6b, 0xe9, 0x79, 0x14, 0x7d, 0xbe, 0x17, 0x59, 0x4b, 0x5f, 0xfe, 0x22, 0x58, + 0x4b, 0x4f, 0xda, 0x55, 0x65, 0x29, 0x6b, 0xe9, 0xf3, 0xb5, 0xbb, 0x22, 0x65, 0xb1, 0xfb, 0x1c, + 0xc5, 0x5e, 0x65, 0x0b, 0x59, 0x4c, 0x4f, 0xaf, 0xb1, 0x19, 0xaf, 0xc1, 0x6a, 0xfa, 0x2f, 0xab, + 0xe9, 0xf7, 0x39, 0x8a, 0x5d, 0xbd, 0x93, 0x9a, 0x27, 0xe9, 0xa0, 0x47, 0xb1, 0xef, 0x73, 0x14, + 0x7b, 0x3e, 0x66, 0xb2, 0x98, 0x3e, 0x47, 0xe1, 0xb2, 0x98, 0x3e, 0xbf, 0xed, 0xc5, 0x62, 0xfa, + 0xa2, 0x29, 0x97, 0xc5, 0xf4, 0x55, 0x0b, 0x6c, 0x58, 0x4c, 0x9f, 0xef, 0xf9, 0xc0, 0x62, 0x7a, + 0x82, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, + 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0xb3, 0x98, 0xbe, 0x54, 0x78, 0x62, + 0x31, 0x3d, 0x61, 0x4a, 0x31, 0x54, 0xa1, 0xc3, 0x95, 0x1a, 0xc8, 0x52, 0x03, 0x5b, 0x3a, 0xa0, + 0x0b, 0x0b, 0xbe, 0xc0, 0x20, 0x2c, 0x93, 0x08, 0x8b, 0xe9, 0x85, 0x50, 0x0e, 0x8b, 0xe9, 0xcb, + 0x58, 0x00, 0x8b, 0xe9, 0x59, 0x4c, 0xff, 0xed, 0x1f, 0x16, 0xd3, 0xe7, 0xb9, 0x17, 0x59, 0x4c, + 0x5f, 0xfe, 0x22, 0x58, 0x4c, 0x4f, 0xda, 0x55, 0x65, 0x29, 0x8b, 0xe9, 0xf3, 0xb5, 0xbb, 0x32, + 0x65, 0xb1, 0x1c, 0x4c, 0x5f, 0x5d, 0x0b, 0x59, 0x4b, 0x4f, 0xa7, 0xb1, 0x11, 0xa7, 0xc1, 0x52, + 0xfa, 0x95, 0x52, 0x7a, 0x0e, 0xa6, 0xd7, 0xee, 0xa2, 0xac, 0x61, 0x10, 0xd5, 0x82, 0xc1, 0xff, + 0x05, 0x7d, 0x13, 0xf5, 0x1f, 0x6a, 0x49, 0x38, 0x00, 0x2a, 0xa3, 0x7f, 0xc6, 0x76, 0xd6, 0xd0, + 0x6f, 0xc2, 0x4c, 0xd6, 0xd0, 0xe7, 0xa8, 0x5a, 0xd6, 0xd0, 0xe7, 0xb7, 0xbd, 0x58, 0x43, 0x5f, + 0x34, 0xdd, 0xb2, 0x86, 0xbe, 0x6a, 0x01, 0x0d, 0x4c, 0x0d, 0xfd, 0x0a, 0x1e, 0xe0, 0xd5, 0xd3, + 0xaf, 0x2e, 0x81, 0xb5, 0xf5, 0x55, 0x06, 0x1e, 0x44, 0xf0, 0x01, 0x06, 0x20, 0x54, 0x10, 0x82, + 0x07, 0x22, 0x78, 0x30, 0xc2, 0x06, 0x24, 0x0c, 0x50, 0x02, 0x01, 0x26, 0x38, 0x70, 0xca, 0x0c, + 0xc6, 0x6a, 0x42, 0x5c, 0x39, 0x67, 0x90, 0x9a, 0x11, 0x41, 0xc1, 0x09, 0x16, 0xa0, 0x90, 0x41, + 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, 0xbc, + 0xc0, 0x00, 0x0c, 0x16, 0xc4, 0x32, 0xc3, 0x6f, 0x86, 0xc1, 0x6d, 0x82, 0xeb, 0x2c, 0x97, 0xe7, + 0xd5, 0x7c, 0x19, 0xa0, 0xfe, 0x05, 0xb3, 0xf1, 0x11, 0x1e, 0xd4, 0x34, 0x00, 0x9b, 0x22, 0x70, + 0xd3, 0x02, 0x70, 0xea, 0x40, 0x4e, 0x1d, 0xd0, 0xe9, 0x02, 0x3b, 0x4c, 0xc0, 0x03, 0x05, 0xbd, + 0x4c, 0x3a, 0xb0, 0x8d, 0x94, 0x2b, 0x27, 0x86, 0x89, 0x26, 0x77, 0x26, 0x9e, 0x97, 0x93, 0x02, + 0x9f, 0x1a, 0xcb, 0x2c, 0x57, 0x03, 0x78, 0x0d, 0x4e, 0x34, 0xb9, 0x9b, 0x8a, 0x8a, 0x5b, 0xb9, + 0xc8, 0xa7, 0x0e, 0xdd, 0x88, 0x96, 0xad, 0x42, 0x43, 0x43, 0xda, 0xe3, 0x62, 0x14, 0x34, 0xa6, + 0x65, 0x8b, 0x81, 0x6e, 0x50, 0xc3, 0xa5, 0x0b, 0x40, 0x77, 0x64, 0x65, 0x0d, 0x04, 0x40, 0x95, + 0x45, 0x6b, 0xc1, 0xe2, 0xe9, 0x62, 0x98, 0x99, 0x29, 0xc3, 0x7c, 0x66, 0x66, 0x04, 0x6d, 0x07, + 0x66, 0x66, 0xe4, 0x6c, 0x6b, 0x66, 0x66, 0x84, 0x2f, 0x88, 0x99, 0x19, 0xf2, 0xd3, 0x0f, 0x4a, + 0x47, 0x4f, 0x66, 0x26, 0x79, 0x48, 0x52, 0x73, 0x87, 0x8b, 0x4f, 0x5b, 0xe0, 0xf3, 0xae, 0x1e, + 0x31, 0x04, 0x7c, 0xee, 0x55, 0xb6, 0x90, 0xff, 0xfd, 0x73, 0xbb, 0x76, 0x68, 0xd7, 0x4e, 0x83, + 0xda, 0xcd, 0xdb, 0xff, 0x36, 0x3e, 0xfd, 0xe7, 0x3f, 0x2f, 0xbe, 0xf2, 0x85, 0xff, 0xc1, 0xf5, + 0xba, 0x6f, 0x19, 0x67, 0xf3, 0x9c, 0x58, 0xb3, 0x0f, 0xee, 0x83, 0xe1, 0xc4, 0xe0, 0x47, 0xd8, + 0xf3, 0x65, 0x30, 0xb6, 0x66, 0x6c, 0xcd, 0xd8, 0x9a, 0xb1, 0x35, 0x63, 0x6b, 0xc6, 0xd6, 0x8c, + 0xad, 0xc9, 0x4c, 0x8c, 0xad, 0xbf, 0xe1, 0xc4, 0x98, 0x84, 0x51, 0xfa, 0x72, 0x57, 0x41, 0x60, + 0x7d, 0x00, 0xbc, 0x84, 0x6e, 0x10, 0xdd, 0x1a, 0xf8, 0xa8, 0x1a, 0xfb, 0xc0, 0xde, 0x5a, 0x14, + 0x0f, 0xc0, 0x93, 0x87, 0x92, 0xc0, 0x62, 0x65, 0x39, 0x57, 0x8b, 0x58, 0x55, 0xcb, 0x7a, 0x4e, + 0xe3, 0xa0, 0x9f, 0x86, 0xa3, 0xa8, 0x19, 0xde, 0x86, 0xb3, 0xf2, 0x8e, 0x6d, 0xf8, 0x75, 0x7d, + 0xfa, 0x55, 0x81, 0x0b, 0x08, 0x3e, 0xd2, 0x05, 0x08, 0x77, 0x01, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, + 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0x7d, 0x01, 0x03, 0x12, 0x5a, 0xff, 0xf4, 0xc3, 0x74, 0x3f, 0xcf, + 0xba, 0x75, 0x6e, 0xe6, 0x83, 0x09, 0x6f, 0xdf, 0xa5, 0xf8, 0xf9, 0xfe, 0xc5, 0x3a, 0x98, 0xf0, + 0x2f, 0xc3, 0x7c, 0x26, 0xfc, 0x05, 0xed, 0x04, 0x26, 0xfc, 0xe5, 0x6c, 0x6b, 0x26, 0xfc, 0x85, + 0x2f, 0x88, 0x09, 0x7f, 0x52, 0xd3, 0x0f, 0x4a, 0x47, 0x57, 0xc2, 0xff, 0x37, 0x05, 0xf9, 0xfe, + 0x3d, 0xe6, 0xfb, 0x4b, 0xfe, 0x30, 0xdf, 0xcf, 0xb8, 0x22, 0xc7, 0xe5, 0x30, 0xdf, 0xcf, 0xd3, + 0xbc, 0x08, 0x17, 0xc0, 0x7c, 0xbf, 0x78, 0x17, 0xb0, 0xbb, 0xc7, 0x44, 0x3f, 0x03, 0x11, 0x5a, + 0xff, 0xd9, 0x87, 0x89, 0x7e, 0x5a, 0x0c, 0x7f, 0x24, 0xa3, 0x5e, 0x00, 0x9b, 0xd9, 0x5f, 0x85, + 0x3b, 0x1d, 0x57, 0x2f, 0x83, 0x5b, 0xfd, 0x12, 0xd2, 0xbd, 0xb0, 0x78, 0x3b, 0x1b, 0x68, 0x57, + 0x83, 0xf6, 0x14, 0x41, 0xf7, 0x12, 0x81, 0x72, 0x3f, 0x47, 0xdb, 0x97, 0x29, 0x74, 0x8e, 0xb6, + 0x2f, 0x6f, 0xbb, 0x72, 0xb4, 0xbd, 0x34, 0x0c, 0xe5, 0x68, 0x7b, 0x32, 0xcd, 0xdf, 0x4b, 0x04, + 0xf6, 0x15, 0xe0, 0xe3, 0x95, 0x87, 0x26, 0xb8, 0x89, 0xcd, 0x0d, 0xa2, 0xc7, 0x5f, 0x4e, 0xcf, + 0x00, 0xec, 0xf2, 0xb1, 0x3a, 0x8b, 0xe0, 0xf0, 0xc5, 0x8b, 0x79, 0x90, 0x54, 0x9f, 0x23, 0x26, + 0x43, 0xa5, 0x0a, 0x5b, 0x8a, 0x72, 0xb1, 0xda, 0x6b, 0xf3, 0x80, 0x16, 0x14, 0x61, 0xce, 0xb1, + 0x85, 0x9e, 0x5b, 0x0b, 0x3d, 0xa7, 0x16, 0x73, 0x2e, 0x2d, 0x8a, 0x03, 0x01, 0xcd, 0xef, 0x32, + 0xaf, 0x8b, 0x75, 0x2b, 0xf6, 0xfc, 0x67, 0x96, 0xc6, 0x93, 0x7e, 0x1a, 0x2d, 0x68, 0xb7, 0x3d, + 0xff, 0x21, 0xb8, 0x8b, 0xc5, 0xfb, 0x9d, 0xc5, 0x93, 0xf7, 0xdd, 0x24, 0x4c, 0xfc, 0xd6, 0xf4, + 0x91, 0xfb, 0xad, 0x64, 0xec, 0x7b, 0xc3, 0x7b, 0xff, 0x3c, 0x9d, 0x7e, 0xb1, 0xbd, 0x78, 0x74, + 0xf6, 0xf2, 0xb1, 0xfa, 0xcb, 0xaf, 0xf8, 0xd9, 0x9f, 0xd2, 0x9b, 0x3d, 0x3a, 0xbf, 0x15, 0x44, + 0xf6, 0xf2, 0x31, 0xf5, 0xc2, 0x01, 0x06, 0xcc, 0xc9, 0x47, 0x23, 0xd9, 0x16, 0x0a, 0xf7, 0xb9, + 0x68, 0xbe, 0xb6, 0xa2, 0x3e, 0x56, 0xb6, 0xaf, 0x90, 0xbb, 0x03, 0x05, 0xef, 0x3e, 0x6b, 0x26, + 0xab, 0x4c, 0x29, 0xf2, 0xef, 0x11, 0x7c, 0x4c, 0x09, 0x7d, 0x61, 0xb8, 0x70, 0x0f, 0x87, 0x71, + 0x85, 0x33, 0xcc, 0x7b, 0x2d, 0xa4, 0xf7, 0x58, 0x80, 0xef, 0xad, 0xd0, 0xde, 0x53, 0xc1, 0xbe, + 0x97, 0x82, 0x7d, 0x0f, 0x85, 0xf9, 0xde, 0x89, 0x94, 0xfe, 0x33, 0x3f, 0x72, 0x94, 0x2b, 0x92, + 0xad, 0x79, 0x45, 0x17, 0x8c, 0xf3, 0xca, 0xa6, 0xc5, 0xcf, 0xcc, 0x46, 0xc9, 0xaf, 0x43, 0x00, + 0x0d, 0x1c, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, + 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0xf0, 0x70, 0xd4, 0x0f, 0x86, + 0xb5, 0x71, 0x3c, 0x4a, 0x4d, 0x1f, 0xb2, 0x93, 0xe1, 0x31, 0x1d, 0xf4, 0xe5, 0x4a, 0x58, 0x07, + 0x4d, 0xac, 0xd2, 0x85, 0x57, 0x0a, 0x30, 0x0b, 0x1d, 0xb7, 0xd4, 0x60, 0x97, 0x1a, 0xfc, 0xd2, + 0x81, 0x61, 0x58, 0x38, 0x06, 0x86, 0x65, 0x99, 0x44, 0xf0, 0xeb, 0xa0, 0x4d, 0x34, 0xb9, 0x33, + 0x71, 0x00, 0x08, 0x38, 0x4f, 0x21, 0x67, 0xa7, 0x01, 0x68, 0xbb, 0x13, 0x4d, 0xee, 0xa6, 0xe2, + 0xe1, 0x16, 0xcd, 0xf3, 0x29, 0x43, 0x56, 0xc0, 0x66, 0xd6, 0x23, 0x57, 0xc2, 0x3e, 0x2e, 0x02, + 0xb8, 0x22, 0x36, 0x5b, 0x04, 0x64, 0x65, 0x2c, 0x1e, 0x05, 0x30, 0x7d, 0xb4, 0x51, 0x84, 0x65, + 0xc5, 0xb1, 0xdc, 0x6a, 0xb8, 0xcf, 0xcb, 0x8d, 0x90, 0x86, 0x46, 0xb0, 0x78, 0x56, 0xb5, 0xfb, + 0x60, 0xf1, 0xac, 0x7c, 0x77, 0x81, 0x50, 0xf2, 0x55, 0x64, 0x0f, 0x42, 0x18, 0xbd, 0xb7, 0x1f, + 0x1f, 0x0e, 0xcb, 0x8a, 0xb5, 0xf9, 0xa5, 0x79, 0x75, 0xee, 0xc0, 0x0c, 0x83, 0x07, 0xb0, 0x8a, + 0xe2, 0xb9, 0xcd, 0x2c, 0x26, 0xde, 0x84, 0x99, 0x2c, 0x26, 0xce, 0x51, 0xad, 0x2c, 0x26, 0xce, + 0x6f, 0x7b, 0xb1, 0x98, 0xb8, 0x68, 0x84, 0x65, 0x31, 0x71, 0xd5, 0xa2, 0x16, 0x16, 0x13, 0xe7, + 0x7b, 0x3e, 0xb0, 0x98, 0x98, 0x60, 0x83, 0x08, 0x38, 0xc0, 0xa0, 0x83, 0x0a, 0x3c, 0xf0, 0xe0, + 0x03, 0x0f, 0x40, 0xd8, 0x20, 0x84, 0x01, 0x44, 0x20, 0x60, 0x04, 0x07, 0x48, 0x99, 0xc1, 0x41, + 0xed, 0x3a, 0x4c, 0x71, 0x2b, 0x88, 0xe7, 0xe6, 0xb3, 0x6c, 0x98, 0x00, 0xa5, 0x0b, 0xa4, 0x14, + 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, 0xa5, 0x03, 0xb8, 0xb0, 0xc0, 0x0b, 0x0c, + 0xc0, 0x32, 0x89, 0xe0, 0x97, 0x0d, 0x5f, 0x8f, 0x46, 0x43, 0x13, 0x40, 0x97, 0x0c, 0xef, 0xb0, + 0x82, 0xaf, 0xea, 0x9b, 0xd1, 0xc2, 0x78, 0x9f, 0xbc, 0x76, 0x17, 0x22, 0xbc, 0x5a, 0x66, 0x80, + 0xc1, 0x00, 0x83, 0x01, 0x06, 0x03, 0x0c, 0x06, 0x18, 0x0c, 0x30, 0x18, 0x60, 0x30, 0xc0, 0xf8, + 0x46, 0x8f, 0x3f, 0x09, 0xa3, 0xf4, 0xe5, 0x2e, 0x70, 0x7c, 0x81, 0x78, 0x3b, 0x4b, 0x37, 0x88, + 0x6e, 0xa7, 0x4f, 0xff, 0x4f, 0x48, 0xc7, 0x88, 0x7b, 0x6f, 0xb9, 0x75, 0x1e, 0x46, 0xf0, 0x17, + 0xaf, 0x2b, 0xb9, 0x70, 0x3d, 0xbb, 0x68, 0x1d, 0x7d, 0x1d, 0x8a, 0xae, 0x57, 0xff, 0xf4, 0x2b, + 0xf0, 0xd6, 0x0e, 0x3e, 0x72, 0x6b, 0x0b, 0xdb, 0xda, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, 0xfe, 0xc1, + 0xee, 0xe1, 0x1e, 0xf7, 0x38, 0x03, 0x82, 0x6a, 0x59, 0xfd, 0x96, 0x69, 0xef, 0x0a, 0x5b, 0xca, + 0xc6, 0xf5, 0x7c, 0xed, 0xae, 0x4c, 0x27, 0xea, 0xec, 0xd5, 0x03, 0x7b, 0xd6, 0xab, 0x63, 0x21, + 0x7b, 0xd6, 0xe9, 0x29, 0x7e, 0xdc, 0x53, 0xb0, 0x5d, 0x7d, 0xa5, 0x5d, 0xbd, 0x39, 0x7b, 0x2e, + 0xec, 0x54, 0xd7, 0xe6, 0x8d, 0x9e, 0x74, 0x7d, 0xd7, 0xee, 0x83, 0x38, 0xc4, 0xf0, 0x49, 0xcf, + 0xf4, 0xac, 0x3f, 0xb1, 0x9e, 0xdd, 0xeb, 0x9b, 0x30, 0x93, 0xdd, 0xeb, 0x39, 0xea, 0x96, 0xdd, + 0xeb, 0xf9, 0x6d, 0x2f, 0x76, 0xaf, 0x17, 0x0d, 0xb3, 0xec, 0x5e, 0xaf, 0x5a, 0xfc, 0xc2, 0xee, + 0xf5, 0x7c, 0xcf, 0x07, 0x76, 0xaf, 0x13, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, + 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, + 0x98, 0xcd, 0x25, 0xa5, 0x81, 0x13, 0x9b, 0x4b, 0x08, 0x52, 0x8a, 0x81, 0x0a, 0x1d, 0xac, 0xd4, + 0x00, 0x96, 0x1a, 0xd0, 0xd2, 0x01, 0x5c, 0x58, 0xe0, 0x05, 0x06, 0x60, 0x99, 0x44, 0xd8, 0x5c, + 0x52, 0x3a, 0xdf, 0xb0, 0xb9, 0xa4, 0xe8, 0x0f, 0x9b, 0x4b, 0x08, 0xf6, 0x1b, 0x58, 0x06, 0x9b, + 0x4b, 0x78, 0xfc, 0x6e, 0x72, 0x6b, 0xb3, 0xb9, 0x44, 0xdc, 0xd6, 0x66, 0x73, 0x09, 0x03, 0x82, + 0xaa, 0x5a, 0xcd, 0xe6, 0x92, 0x2a, 0x5b, 0xca, 0xe6, 0x92, 0x7c, 0xed, 0xae, 0x56, 0xc9, 0xf8, + 0x63, 0xf9, 0x29, 0xdb, 0x4c, 0xaa, 0x63, 0x21, 0xdb, 0x4c, 0xe8, 0x33, 0x36, 0xe1, 0x33, 0xd8, + 0x70, 0xf2, 0x7c, 0xc3, 0xc9, 0x55, 0xf6, 0x80, 0xd8, 0x79, 0xa2, 0xcd, 0x41, 0xcd, 0x7b, 0x37, + 0xc2, 0x01, 0x58, 0xb3, 0x49, 0x38, 0x60, 0x7f, 0xc9, 0x46, 0xcc, 0x64, 0x7f, 0x49, 0x8e, 0x52, + 0x65, 0x7f, 0x49, 0x7e, 0xdb, 0x8b, 0xfd, 0x25, 0x45, 0x53, 0x2c, 0xfb, 0x4b, 0xaa, 0x16, 0xb8, + 0xb0, 0xbf, 0x24, 0xdf, 0xf3, 0x81, 0xfd, 0x25, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, 0x1d, 0x54, + 0xe0, 0x81, 0x07, 0x1f, 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, 0x38, 0x40, + 0xca, 0x0c, 0x1e, 0x8e, 0xfa, 0xc1, 0x10, 0xb7, 0xbf, 0x64, 0x6e, 0x3e, 0xfb, 0x4b, 0x08, 0x50, + 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, + 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x08, 0xfb, 0x4b, 0x4a, 0xe7, 0x1b, 0xf6, 0x97, 0x14, 0xfd, + 0x61, 0x7f, 0x09, 0xc1, 0x7e, 0x03, 0xcb, 0x60, 0x7f, 0x09, 0x8f, 0xdf, 0x4d, 0x6e, 0x6d, 0xf6, + 0x97, 0x88, 0xdb, 0xda, 0xec, 0x2f, 0x61, 0x40, 0x50, 0x55, 0xab, 0xd9, 0x5f, 0x52, 0xf9, 0x33, + 0xca, 0x8a, 0xcd, 0xdd, 0x28, 0x35, 0xb8, 0x79, 0xef, 0x85, 0xfd, 0x4c, 0x7c, 0x17, 0x61, 0x36, + 0x13, 0xdf, 0x25, 0x2a, 0x9d, 0x89, 0xef, 0xf2, 0xb6, 0x2b, 0x13, 0xdf, 0xc2, 0x16, 0xc2, 0xc4, + 0x37, 0xa9, 0xe6, 0x2b, 0x12, 0x61, 0xe2, 0xbb, 0x74, 0xbe, 0x61, 0xe2, 0xbb, 0xe8, 0x0f, 0x13, + 0xdf, 0x04, 0xfb, 0x0d, 0x2c, 0x83, 0x89, 0x6f, 0x1e, 0xbf, 0x9b, 0xdc, 0xda, 0x4c, 0x7c, 0x8b, + 0xdb, 0xda, 0x4c, 0x7c, 0x33, 0x20, 0xa8, 0xaa, 0xd5, 0x4c, 0x7c, 0x57, 0xd9, 0x52, 0x0e, 0x56, + 0xca, 0xd7, 0xee, 0xca, 0x0c, 0x49, 0x09, 0x07, 0x9c, 0xa5, 0x54, 0x1d, 0x0b, 0x39, 0x4b, 0x89, + 0x6e, 0xe2, 0x07, 0xdd, 0x04, 0xc7, 0x27, 0xad, 0x8c, 0x4f, 0x72, 0x07, 0x1c, 0x99, 0xa4, 0xce, + 0x0f, 0xcd, 0x27, 0x10, 0x0d, 0x47, 0x49, 0x02, 0x36, 0x34, 0x69, 0x66, 0x32, 0xc7, 0x26, 0x6d, + 0xc2, 0x4c, 0x8e, 0x4d, 0xca, 0x51, 0xac, 0x1c, 0x9b, 0x94, 0xdf, 0xf6, 0xe2, 0xd8, 0xa4, 0xa2, + 0x81, 0x95, 0x63, 0x93, 0xaa, 0x16, 0xa3, 0x70, 0x6c, 0x52, 0xbe, 0xe7, 0x03, 0xc7, 0x26, 0x11, + 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, + 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x38, 0xa8, 0x5d, 0x87, 0x29, 0x6e, 0xfb, + 0xc8, 0xdc, 0x7c, 0x76, 0x8f, 0x10, 0xa0, 0x74, 0x81, 0x94, 0x02, 0xa0, 0x42, 0x07, 0x2b, 0x35, + 0x80, 0xa5, 0x06, 0xb4, 0x74, 0x00, 0x17, 0x16, 0x78, 0x81, 0x01, 0x58, 0x26, 0x11, 0xfc, 0xee, + 0x91, 0xeb, 0xd1, 0x68, 0x68, 0x82, 0x08, 0xb8, 0x7d, 0x64, 0x67, 0x87, 0x75, 0x7a, 0x55, 0xdf, + 0x8c, 0x40, 0xaf, 0x94, 0xd7, 0xee, 0x44, 0x94, 0x57, 0xcc, 0x0c, 0x34, 0x18, 0x68, 0x30, 0xd0, + 0x60, 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, 0x0d, 0x06, 0x1a, 0xdf, 0xe8, 0xf1, 0xd9, 0xa6, + 0x5e, 0x82, 0xe9, 0x6c, 0x53, 0x2f, 0xe9, 0xc1, 0xb3, 0x4d, 0x5d, 0xce, 0x32, 0xd8, 0xa6, 0xce, + 0xe3, 0x77, 0x93, 0x5b, 0x9b, 0x6d, 0xea, 0xe2, 0xb6, 0x36, 0xdb, 0xd4, 0x19, 0x10, 0x54, 0xd5, + 0x6a, 0xb6, 0xa9, 0x57, 0xd9, 0x52, 0xb6, 0xa9, 0xe7, 0x6b, 0x77, 0x65, 0xfa, 0x4f, 0x87, 0xa3, + 0x24, 0x61, 0xa3, 0x7a, 0x75, 0x2c, 0x64, 0xa3, 0x3a, 0x1d, 0xc5, 0x0f, 0x3b, 0x0a, 0xb6, 0xaa, + 0xaf, 0xb4, 0xaa, 0xb7, 0xa6, 0x8f, 0x85, 0xcd, 0xea, 0xda, 0x7c, 0xd1, 0xfc, 0xb5, 0xfc, 0x74, + 0x13, 0x9a, 0x59, 0x60, 0x56, 0x4b, 0x11, 0x32, 0xf1, 0x9f, 0x17, 0x15, 0x7c, 0x69, 0x3d, 0x5b, + 0xd8, 0x37, 0x61, 0x26, 0x5b, 0xd8, 0x73, 0xd4, 0x2d, 0x5b, 0xd8, 0xf3, 0xdb, 0x5e, 0x6c, 0x61, + 0x2f, 0x1a, 0x65, 0xd9, 0xc2, 0x5e, 0xb5, 0xe8, 0x85, 0x2d, 0xec, 0xf9, 0x9e, 0x0f, 0x6c, 0x61, + 0x27, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, + 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x70, 0x8a, 0x58, 0x81, 0x99, 0x1d, + 0x33, 0x00, 0x79, 0x9f, 0x75, 0xd8, 0xc4, 0xbe, 0x12, 0x62, 0x94, 0x62, 0x9c, 0x42, 0xc7, 0x2a, + 0x35, 0x78, 0xa5, 0x06, 0xb3, 0x74, 0xe0, 0x16, 0x16, 0x76, 0x81, 0xe1, 0x57, 0x26, 0x11, 0xfc, + 0xbe, 0x12, 0x13, 0x4d, 0xee, 0x4c, 0x3c, 0x2f, 0x14, 0x00, 0x6e, 0x62, 0x6f, 0x00, 0xda, 0xee, + 0x44, 0x93, 0xbb, 0xa9, 0x78, 0xb8, 0x45, 0xf3, 0x7c, 0xca, 0xad, 0x30, 0x49, 0xed, 0x34, 0x8d, + 0x31, 0xb7, 0xe9, 0x79, 0x18, 0x39, 0x43, 0x33, 0x3d, 0x85, 0x12, 0xeb, 0x68, 0x2b, 0x9a, 0x0c, + 0x87, 0x80, 0x42, 0x3f, 0x0f, 0x3e, 0xe2, 0x2f, 0xe2, 0x22, 0x1e, 0x98, 0xd8, 0x0c, 0x8e, 0x1f, + 0x16, 0x4b, 0x60, 0xd9, 0x70, 0x85, 0x2d, 0x65, 0xd9, 0x70, 0xbe, 0x76, 0x57, 0xa6, 0x1a, 0xf0, + 0x8b, 0xda, 0x22, 0x56, 0x10, 0x57, 0xc7, 0x42, 0x56, 0x10, 0xd3, 0x67, 0x6c, 0xc2, 0x67, 0xb0, + 0x98, 0x78, 0xa5, 0x98, 0xb8, 0x93, 0x3d, 0xa1, 0x59, 0x80, 0xce, 0xb2, 0x62, 0x6d, 0x0e, 0xca, + 0xba, 0x0b, 0x3e, 0xd6, 0x66, 0x9b, 0xe1, 0x3a, 0x88, 0x06, 0x1f, 0xc2, 0xc1, 0x6c, 0xd3, 0x83, + 0x14, 0x15, 0x3f, 0x63, 0x3b, 0x4b, 0x8a, 0x37, 0x61, 0x26, 0x4b, 0x8a, 0x73, 0x54, 0x2d, 0x4b, + 0x8a, 0xf3, 0xdb, 0x5e, 0x2c, 0x29, 0x2e, 0x9a, 0x6d, 0x59, 0x52, 0x5c, 0xb5, 0x70, 0x86, 0x25, + 0xc5, 0xf9, 0x9e, 0x0f, 0x2c, 0x29, 0x26, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, + 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, + 0x30, 0x4e, 0xea, 0x67, 0xed, 0x59, 0x83, 0x92, 0x01, 0x5a, 0x07, 0x50, 0x2c, 0x2e, 0x26, 0x50, + 0x29, 0x06, 0x2b, 0x74, 0xc0, 0x52, 0x03, 0x5a, 0x6a, 0x80, 0x4b, 0x07, 0x78, 0x61, 0x01, 0x18, + 0x18, 0x88, 0x65, 0x12, 0xc1, 0x2f, 0x2e, 0x0e, 0x8d, 0x31, 0x37, 0xc3, 0x51, 0x80, 0x3d, 0xb9, + 0xfe, 0x10, 0xd0, 0xf4, 0x96, 0x89, 0x6e, 0x67, 0x60, 0xcc, 0xd1, 0xf5, 0x05, 0x3f, 0x79, 0x8e, + 0xae, 0x97, 0xb3, 0x8c, 0x6c, 0xbe, 0x35, 0xc7, 0x5a, 0xf3, 0x10, 0xde, 0xc0, 0xd6, 0xe6, 0xe8, + 0x7a, 0x6e, 0x6d, 0x6e, 0x6d, 0x1d, 0xd1, 0x00, 0xae, 0xd5, 0x9c, 0x58, 0x5f, 0x65, 0x4b, 0xd9, + 0x7a, 0x92, 0xaf, 0xdd, 0x55, 0x28, 0x23, 0x5f, 0xad, 0x40, 0x65, 0xe3, 0x49, 0x75, 0x2c, 0x64, + 0xe3, 0x09, 0x3d, 0xc6, 0xcf, 0x7b, 0x0c, 0xb6, 0x9d, 0x7c, 0xd6, 0x76, 0x72, 0x1e, 0x7c, 0x6c, + 0x85, 0xd1, 0xfb, 0xe3, 0xec, 0xf1, 0xb0, 0xe9, 0x44, 0x9b, 0x73, 0x9a, 0x35, 0x6e, 0xc4, 0x26, + 0x31, 0xf1, 0x7d, 0x70, 0x3d, 0x34, 0xd0, 0xfd, 0x27, 0xeb, 0x97, 0xc1, 0x56, 0x94, 0x4d, 0x98, + 0xc9, 0x56, 0x94, 0x1c, 0x05, 0xcc, 0x56, 0x94, 0xfc, 0xb6, 0x17, 0x5b, 0x51, 0x8a, 0xa6, 0x5d, + 0xb6, 0xa2, 0x54, 0x2d, 0xc0, 0x61, 0x2b, 0x4a, 0xbe, 0xe7, 0x03, 0x5b, 0x51, 0x08, 0x36, 0x88, + 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, 0x40, + 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0xcc, 0x56, 0x94, 0xd2, 0x01, 0x8a, 0xad, 0x28, 0x04, + 0x2a, 0xc5, 0x60, 0x85, 0x0e, 0x58, 0x6a, 0x40, 0x4b, 0x0d, 0x70, 0xe9, 0x00, 0x2f, 0x2c, 0x00, + 0x03, 0x03, 0xb1, 0x4c, 0x22, 0x6c, 0x45, 0x91, 0x01, 0x39, 0x6c, 0x45, 0x29, 0xfc, 0xc3, 0x56, + 0x14, 0xe2, 0xfd, 0x06, 0x96, 0xc1, 0x7a, 0x75, 0x1e, 0xc2, 0x9b, 0xdc, 0xda, 0x6c, 0x45, 0xe1, + 0xd6, 0xe6, 0xd6, 0xd6, 0x11, 0x0d, 0xe0, 0x5a, 0xcd, 0x56, 0x94, 0x2a, 0x5b, 0xca, 0x56, 0x94, + 0x7c, 0xed, 0xae, 0x4a, 0x61, 0xf9, 0xda, 0x62, 0x54, 0x76, 0xa5, 0x54, 0xc7, 0x42, 0x76, 0xa5, + 0xd0, 0x79, 0x6c, 0xd4, 0x79, 0xb0, 0x41, 0xe5, 0xcb, 0x06, 0x95, 0x6e, 0xf6, 0xa8, 0xd8, 0xaa, + 0xa2, 0xdb, 0x63, 0x59, 0x77, 0x61, 0x54, 0xcb, 0x7a, 0xb6, 0x06, 0x66, 0x18, 0x3c, 0x00, 0xf5, + 0xa7, 0xac, 0xda, 0xce, 0xa6, 0x94, 0x4d, 0x98, 0xc9, 0xa6, 0x94, 0x1c, 0x55, 0xcb, 0xa6, 0x94, + 0xfc, 0xb6, 0x17, 0x9b, 0x52, 0x8a, 0x86, 0x5d, 0x36, 0xa5, 0x54, 0x2d, 0xbe, 0x61, 0x53, 0x4a, + 0xbe, 0xe7, 0x03, 0x9b, 0x52, 0x08, 0x36, 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, + 0x3e, 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0x1c, + 0xd4, 0xae, 0xc3, 0x14, 0xb7, 0x21, 0x65, 0x6e, 0x3e, 0x9b, 0x51, 0x08, 0x50, 0xba, 0x40, 0x4a, + 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, 0xbc, 0xc0, + 0x00, 0x2c, 0x93, 0x08, 0x7e, 0x33, 0xca, 0xf5, 0x68, 0x34, 0x34, 0x41, 0x04, 0xdc, 0x88, 0xb2, + 0xb3, 0xc3, 0xca, 0xbf, 0xaa, 0x6f, 0xc6, 0xd9, 0x20, 0x41, 0x8c, 0x77, 0xcb, 0x6b, 0x77, 0xe2, + 0xe3, 0x12, 0x18, 0x68, 0x30, 0xd0, 0x60, 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, 0x0d, 0x72, + 0x0d, 0x03, 0x0d, 0x15, 0x81, 0xc6, 0x24, 0x8c, 0xb0, 0x1b, 0xde, 0x0f, 0x00, 0x4d, 0xef, 0x06, + 0xd1, 0xad, 0x61, 0xbf, 0x7b, 0xf1, 0x0f, 0x9e, 0xfd, 0xee, 0x72, 0x96, 0xb1, 0x6c, 0x8a, 0xdd, + 0x66, 0x53, 0x2c, 0x8f, 0xdf, 0x0d, 0x6c, 0x6d, 0xf6, 0xbb, 0x8b, 0xdb, 0xda, 0x8d, 0xdd, 0xc3, + 0xc6, 0xe1, 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0xf7, 0x38, 0x03, 0x82, 0x6a, 0x59, 0xcd, 0xc6, 0xf7, + 0xca, 0x9f, 0x51, 0xb3, 0x3e, 0x25, 0xf4, 0xf4, 0x77, 0xb6, 0x04, 0xa6, 0xbf, 0x8b, 0x30, 0x9b, + 0xe9, 0xef, 0x12, 0xc5, 0xce, 0xf4, 0x77, 0x79, 0xdb, 0x95, 0xe9, 0x6f, 0x61, 0x0b, 0x61, 0xfa, + 0x9b, 0x6c, 0xf3, 0x15, 0x89, 0x30, 0xfd, 0x5d, 0x3a, 0xdf, 0x30, 0xfd, 0x5d, 0xf4, 0x87, 0xe9, + 0x6f, 0x82, 0xfd, 0x06, 0x96, 0xc1, 0xf4, 0x37, 0x8f, 0xdf, 0x4d, 0x6e, 0x6d, 0xa6, 0xbf, 0xc5, + 0x6d, 0x6d, 0xa6, 0xbf, 0x19, 0x10, 0x54, 0xd5, 0x6a, 0xa6, 0xbf, 0xab, 0x6c, 0x29, 0xe7, 0xbe, + 0xe6, 0x6b, 0x77, 0x25, 0x46, 0x37, 0xae, 0x0c, 0x79, 0xe3, 0xb0, 0xd7, 0xea, 0x58, 0xc8, 0x61, + 0xaf, 0xf4, 0x18, 0x3f, 0xef, 0x31, 0x38, 0xe1, 0xf5, 0xf3, 0x09, 0xaf, 0x61, 0x74, 0x1e, 0x7c, + 0x6c, 0x85, 0xd1, 0xfb, 0xe6, 0xec, 0xe9, 0x70, 0xac, 0xab, 0x36, 0xdf, 0x64, 0xc5, 0x26, 0x09, + 0x07, 0x93, 0x60, 0x58, 0xc3, 0xb9, 0x70, 0x36, 0x4b, 0xc6, 0x3f, 0x63, 0x3b, 0xc7, 0xba, 0x6e, + 0xc2, 0x4c, 0x8e, 0x75, 0xcd, 0x51, 0xb5, 0x1c, 0xeb, 0x9a, 0xdf, 0xf6, 0xe2, 0x58, 0xd7, 0xa2, + 0xb1, 0x96, 0x63, 0x5d, 0xab, 0x16, 0xc9, 0x70, 0xac, 0x6b, 0xbe, 0xe7, 0x03, 0xc7, 0xba, 0x12, + 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, + 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x18, 0x27, 0xf5, 0xb3, 0xf6, 0xac, 0x41, + 0xba, 0xa3, 0xeb, 0x39, 0x80, 0x62, 0xdb, 0x09, 0x81, 0x4a, 0x31, 0x58, 0xa1, 0x03, 0x96, 0x1a, + 0xd0, 0x52, 0x03, 0x5c, 0x3a, 0xc0, 0x0b, 0x0b, 0xc0, 0xc0, 0x40, 0x2c, 0x93, 0x08, 0x7e, 0xdb, + 0x49, 0x68, 0x8c, 0xb9, 0x19, 0x8e, 0x02, 0xec, 0xde, 0x93, 0x43, 0x40, 0xd3, 0x5b, 0x26, 0xba, + 0x9d, 0x81, 0x31, 0x9b, 0x4f, 0x0a, 0x7e, 0xf2, 0x6c, 0x3e, 0x91, 0xb3, 0x8c, 0xac, 0x42, 0x9d, + 0x85, 0xe9, 0x3c, 0x84, 0x37, 0xb0, 0xb5, 0xd9, 0x7c, 0xc2, 0xad, 0xcd, 0xad, 0xad, 0x23, 0x1a, + 0xc0, 0xb5, 0x9a, 0x3d, 0x27, 0x55, 0xb6, 0x94, 0x3d, 0x27, 0xf9, 0xda, 0x5d, 0x85, 0x0a, 0xf2, + 0xd5, 0x0a, 0x54, 0xf6, 0x9c, 0x54, 0xc7, 0x42, 0xf6, 0x9c, 0xd0, 0x63, 0xfc, 0xbc, 0xc7, 0x60, + 0xcf, 0xc9, 0x67, 0x3d, 0x27, 0xdd, 0xc5, 0x03, 0x3a, 0xce, 0x9e, 0x0f, 0xbb, 0x4e, 0xb4, 0x79, + 0x27, 0x90, 0xd2, 0x4c, 0xa8, 0x92, 0x4c, 0xf6, 0x96, 0x6c, 0xd8, 0x50, 0xf6, 0x96, 0xe4, 0x6a, + 0x32, 0x7b, 0x4b, 0x0a, 0x32, 0x9c, 0xbd, 0x25, 0xe4, 0x01, 0x94, 0x88, 0x05, 0xa6, 0xb7, 0x24, + 0x45, 0x2a, 0x29, 0xc8, 0x8e, 0x87, 0x99, 0xd5, 0x58, 0x9d, 0x25, 0xdb, 0xec, 0x2c, 0xa9, 0x3c, + 0xde, 0x00, 0x63, 0x0e, 0x2a, 0xee, 0xc0, 0x63, 0x0f, 0x3c, 0xfe, 0x60, 0x63, 0x10, 0x06, 0x0e, + 0x81, 0x60, 0x51, 0x26, 0x05, 0xb8, 0x42, 0xc6, 0xc7, 0x02, 0xc6, 0x81, 0x89, 0xd2, 0x30, 0x7d, + 0x88, 0xcd, 0x0d, 0x92, 0xd7, 0x5e, 0xe6, 0x54, 0x80, 0x06, 0x72, 0x5a, 0xee, 0xe2, 0x51, 0x1f, + 0x07, 0x89, 0xc1, 0x6d, 0xe8, 0x71, 0x7b, 0x6e, 0xcf, 0xef, 0x5d, 0x1e, 0x7b, 0xad, 0x2b, 0xdf, + 0xfb, 0xa3, 0xe3, 0xa0, 0x1d, 0x3b, 0xb3, 0xb2, 0x9a, 0x04, 0xb2, 0x6e, 0x14, 0xb4, 0x35, 0x63, + 0xa9, 0x9c, 0xee, 0xc5, 0xa5, 0xe7, 0x74, 0xfd, 0x13, 0xbb, 0x63, 0x1f, 0xbb, 0x2d, 0xd7, 0xfb, + 0x63, 0x21, 0xa3, 0x1e, 0xa2, 0x8e, 0x34, 0xe8, 0x09, 0x5b, 0x57, 0xdf, 0xa2, 0xaf, 0xa7, 0xff, + 0x66, 0xb1, 0xa2, 0x94, 0xd2, 0xda, 0xa4, 0xb4, 0xec, 0xd6, 0xd9, 0x45, 0xd7, 0xf5, 0x5e, 0x9d, + 0x5b, 0x2c, 0x68, 0x2c, 0xf4, 0xf3, 0xf6, 0x17, 0xee, 0x60, 0xee, 0xdc, 0x8a, 0x1d, 0x06, 0x94, + 0x10, 0x9d, 0x3e, 0x15, 0x84, 0x16, 0x2b, 0xfb, 0x5d, 0xc7, 0x3e, 0x79, 0xc5, 0x78, 0x87, 0xaa, + 0xca, 0x5f, 0x5d, 0x9e, 0xe3, 0x37, 0x9d, 0x53, 0xfb, 0xb2, 0xe5, 0xf9, 0xe7, 0x8e, 0xd7, 0x75, + 0x4f, 0x18, 0xf1, 0x50, 0x5c, 0x9b, 0x12, 0xd7, 0x65, 0xfb, 0xe4, 0xa2, 0xdd, 0xf3, 0xba, 0xb6, + 0xdb, 0x76, 0x9a, 0x7e, 0xab, 0xd7, 0xa1, 0xb8, 0x28, 0xae, 0x4d, 0x89, 0xab, 0xe5, 0xb6, 0x5f, + 0xfb, 0x4d, 0xa7, 0x65, 0x33, 0x49, 0x43, 0x55, 0xe5, 0xa0, 0x2a, 0xff, 0xca, 0xee, 0xba, 0xb6, + 0xe7, 0x5e, 0xb4, 0xa9, 0x2f, 0xea, 0x6b, 0x53, 0xfa, 0x72, 0x3b, 0x57, 0xfb, 0x7e, 0xdb, 0x71, + 0xcf, 0x5e, 0x1d, 0x5f, 0x74, 0x7d, 0xbb, 0xd9, 0xec, 0x3a, 0xbd, 0x1e, 0x05, 0x46, 0x81, 0x6d, + 0x4a, 0x60, 0x76, 0xf3, 0xdc, 0x6d, 0xfb, 0x67, 0xdd, 0x8b, 0x4b, 0xd2, 0x16, 0x65, 0xb5, 0x41, + 0x59, 0xfd, 0xee, 0xf7, 0xdc, 0x26, 0x25, 0x45, 0x49, 0x6d, 0x4a, 0x52, 0xe7, 0xf6, 0x9b, 0x39, + 0x6e, 0x1d, 0xdb, 0xed, 0xe6, 0xbf, 0xdc, 0xa6, 0xf7, 0x8a, 0xea, 0xa2, 0xba, 0x36, 0x08, 0x5a, + 0x0d, 0x82, 0x16, 0x05, 0x96, 0x2f, 0xc9, 0xbb, 0x6d, 0xcf, 0xe9, 0x9e, 0xda, 0x27, 0x0e, 0x15, + 0x46, 0x85, 0xe5, 0x92, 0x8b, 0x68, 0x5d, 0x50, 0x54, 0x14, 0xd5, 0xe6, 0x44, 0x95, 0xc1, 0x96, + 0x9f, 0xe5, 0xe6, 0x3d, 0x0a, 0x8c, 0x02, 0xdb, 0x98, 0xc0, 0x9c, 0x37, 0x9e, 0xd3, 0x6e, 0x3a, + 0x4d, 0x66, 0x22, 0xa8, 0xaf, 0xdc, 0xc0, 0x9e, 0xdc, 0x45, 0x85, 0xe5, 0xa6, 0xb0, 0x4b, 0xcf, + 0x6d, 0xb9, 0xff, 0x76, 0x9a, 0x4c, 0x4c, 0x50, 0x5d, 0x9b, 0x57, 0x97, 0xdd, 0xfc, 0xdd, 0x6f, + 0xd9, 0x6d, 0x66, 0x53, 0x29, 0xab, 0x4d, 0xca, 0x6a, 0xca, 0x5a, 0x59, 0x46, 0x95, 0x65, 0x11, + 0x54, 0xd7, 0xe6, 0x53, 0x11, 0x9d, 0xee, 0x85, 0xe7, 0x9c, 0x78, 0xee, 0x45, 0x7b, 0x5e, 0x8c, + 0x4a, 0x7d, 0x51, 0x5f, 0x9b, 0x3a, 0x14, 0xaf, 0x6c, 0xb7, 0x65, 0x1f, 0xb7, 0x1c, 0x32, 0x17, + 0xe5, 0x95, 0x93, 0xfb, 0xb2, 0x3d, 0xaf, 0xeb, 0x1e, 0x5f, 0x7a, 0x0e, 0x83, 0x45, 0x4a, 0x6b, + 0x73, 0xc1, 0x62, 0xbb, 0xeb, 0xf4, 0x9c, 0xee, 0x15, 0xc3, 0x45, 0xea, 0x2b, 0x0f, 0x7d, 0x75, + 0x9d, 0x9e, 0xdb, 0xbc, 0xb4, 0x5b, 0x54, 0x17, 0xd5, 0x95, 0x43, 0xd4, 0x68, 0xbf, 0xf1, 0xe7, + 0xfe, 0x8b, 0xf0, 0x45, 0x8d, 0xe5, 0x08, 0x5f, 0xd0, 0xc9, 0x2e, 0x0e, 0x3c, 0xe0, 0xd6, 0xd5, + 0xb4, 0x65, 0x35, 0x77, 0x83, 0x52, 0x44, 0xe5, 0x47, 0x44, 0xf0, 0x5d, 0x9f, 0x14, 0x91, 0x08, + 0x68, 0x00, 0x7d, 0x8d, 0x41, 0xf5, 0xc8, 0x51, 0x0f, 0x72, 0x17, 0x27, 0x75, 0x54, 0xb6, 0x8e, + 0x94, 0x74, 0x6b, 0x52, 0x48, 0x65, 0x0b, 0x09, 0xba, 0x16, 0x92, 0xf2, 0x29, 0x5f, 0x3e, 0xa0, + 0xdd, 0x97, 0x94, 0x4e, 0xd9, 0xd2, 0xd1, 0xd0, 0x65, 0x49, 0x15, 0x09, 0x00, 0xa1, 0x06, 0x41, + 0x88, 0x42, 0xda, 0x0c, 0x51, 0x2b, 0xa8, 0xde, 0xa7, 0x92, 0x44, 0xc4, 0xf8, 0x98, 0xdd, 0x91, + 0x14, 0x4f, 0xd9, 0xe2, 0x51, 0xd2, 0x05, 0x49, 0x21, 0x95, 0x2d, 0x24, 0x1d, 0xdd, 0x8e, 0xd4, + 0x91, 0x08, 0xc0, 0x26, 0x17, 0x51, 0x49, 0x3f, 0xad, 0x24, 0x0d, 0xdd, 0x8b, 0x54, 0x51, 0xd9, + 0x2a, 0x82, 0xee, 0x52, 0xa4, 0x7c, 0xca, 0x96, 0x8f, 0x86, 0x6e, 0x44, 0xaa, 0x48, 0x44, 0x88, + 0x0f, 0xdf, 0x75, 0x48, 0x1d, 0x95, 0x7e, 0x98, 0x69, 0xe8, 0x2e, 0xa4, 0x8c, 0x44, 0xb8, 0x23, + 0xe4, 0x2e, 0x42, 0x4a, 0xa8, 0xf4, 0xe0, 0x4c, 0x45, 0xb7, 0x20, 0x75, 0x54, 0xb6, 0x8e, 0x34, + 0x74, 0x05, 0x52, 0x45, 0xa5, 0x47, 0x69, 0x6a, 0xba, 0xff, 0xa8, 0x25, 0x11, 0x70, 0xc4, 0x64, + 0x11, 0xa5, 0xf3, 0x0d, 0xd2, 0xe9, 0xf0, 0x86, 0x4b, 0xaa, 0xaa, 0x28, 0x75, 0xcd, 0xde, 0xac, + 0x2d, 0xae, 0xe5, 0xe5, 0xc8, 0x3d, 0x2a, 0x6b, 0x73, 0xca, 0xf2, 0xec, 0xb3, 0xfd, 0x06, 0x05, + 0x45, 0x41, 0x6d, 0xd0, 0x55, 0xed, 0xd3, 0x55, 0x51, 0x59, 0xb9, 0xb8, 0x2a, 0xca, 0x89, 0x72, + 0xda, 0x94, 0x9c, 0x3a, 0x5d, 0xe7, 0xd4, 0x7d, 0xc3, 0x11, 0xc6, 0x54, 0x55, 0x0e, 0xaa, 0x3a, + 0x6d, 0xd9, 0x67, 0x3d, 0x4e, 0x0b, 0x2a, 0xf6, 0xc3, 0x69, 0x41, 0xdc, 0xb7, 0x55, 0x8b, 0xac, + 0xa9, 0x20, 0x46, 0xd0, 0x14, 0x0e, 0x23, 0x65, 0x2a, 0xa8, 0x9a, 0xae, 0x87, 0xb2, 0xa1, 0x6c, + 0xaa, 0x14, 0xf9, 0x52, 0x3d, 0x8c, 0x70, 0xab, 0x13, 0xd9, 0xe2, 0x44, 0xb4, 0x18, 0xcf, 0x55, + 0xbe, 0x95, 0xb2, 0x2d, 0x14, 0xee, 0x7d, 0x2d, 0x3b, 0x8a, 0x46, 0x69, 0x90, 0x86, 0xa3, 0xc8, + 0x3a, 0x02, 0xf0, 0xbb, 0x56, 0xd2, 0x7f, 0x67, 0xee, 0x82, 0x71, 0x90, 0xbe, 0x9b, 0x7a, 0xda, + 0xfa, 0x68, 0x6c, 0xa2, 0xfe, 0x28, 0xba, 0x09, 0x6f, 0x6b, 0x91, 0x49, 0x3f, 0x8c, 0xe2, 0xf7, + 0xb5, 0x30, 0x4a, 0xd2, 0x20, 0xea, 0x9b, 0xfa, 0x97, 0x5f, 0x48, 0x56, 0xbe, 0x52, 0x1f, 0xc7, + 0xa3, 0x74, 0xd4, 0x1f, 0x0d, 0x93, 0xec, 0x77, 0xf5, 0x30, 0x09, 0x93, 0xfa, 0xd0, 0xdc, 0x9b, + 0xe1, 0xe2, 0x97, 0xfa, 0x30, 0x8c, 0xde, 0xd7, 0x92, 0x34, 0x48, 0x4d, 0x6d, 0x10, 0xa4, 0xc1, + 0x75, 0x90, 0x98, 0xfa, 0x30, 0x19, 0xd7, 0xd3, 0xe1, 0x7d, 0x32, 0xfd, 0x47, 0xfd, 0x2e, 0xad, + 0x4d, 0xbf, 0xab, 0x16, 0x99, 0xf0, 0xf6, 0xdd, 0xf5, 0x28, 0xae, 0x05, 0x69, 0x1a, 0x87, 0xd7, + 0x93, 0x74, 0x6a, 0xc3, 0xfc, 0x4b, 0x49, 0xf6, 0xbb, 0xfa, 0xa3, 0x39, 0x99, 0x19, 0xc9, 0xe4, + 0x7a, 0xf6, 0x87, 0xcd, 0x7f, 0xad, 0xcf, 0xfe, 0x2e, 0xd9, 0x07, 0x85, 0xdc, 0x4d, 0x27, 0x78, + 0xc3, 0x59, 0x53, 0x05, 0x99, 0x9b, 0x60, 0x32, 0x4c, 0x6b, 0x77, 0x26, 0x8d, 0xc3, 0xbe, 0xf8, + 0x3d, 0x97, 0x31, 0xcd, 0xaa, 0xe9, 0xc2, 0x1d, 0xdb, 0xeb, 0x30, 0x1a, 0x58, 0x47, 0x5b, 0x3b, + 0xc2, 0xcd, 0x3c, 0x99, 0x39, 0x2f, 0xeb, 0x68, 0x6b, 0x5b, 0xb8, 0xa1, 0x9d, 0xd8, 0xdc, 0x84, + 0x1f, 0x31, 0x0e, 0x89, 0xa5, 0x68, 0x47, 0xfd, 0x99, 0x63, 0x06, 0xa8, 0x2e, 0xb4, 0x7a, 0xa3, + 0x49, 0xdc, 0x37, 0x10, 0x8f, 0x77, 0xbe, 0xbd, 0xcc, 0xc3, 0x87, 0x51, 0x3c, 0xdd, 0x61, 0xd6, + 0x78, 0xae, 0x0c, 0x8c, 0x30, 0xd3, 0x7a, 0x15, 0x24, 0x76, 0x7c, 0x3b, 0xb9, 0x33, 0x51, 0x6a, + 0x1d, 0x6d, 0xa5, 0xf1, 0xc4, 0x80, 0x18, 0xfe, 0xc4, 0xea, 0x4c, 0xd8, 0x84, 0x73, 0xd5, 0x70, + 0xde, 0x0c, 0x63, 0x10, 0x2a, 0x9f, 0x11, 0x2b, 0x8c, 0xf3, 0x5a, 0x9e, 0x0f, 0x73, 0xb3, 0x41, + 0xf6, 0x3f, 0x06, 0xd0, 0xc0, 0x81, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, + 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0x83, + 0xa4, 0x7d, 0xd6, 0x1e, 0x34, 0x10, 0xb9, 0x9f, 0x75, 0xe8, 0xb4, 0x0d, 0x66, 0x36, 0x1a, 0x42, + 0x21, 0xa3, 0x94, 0x02, 0xa4, 0x42, 0x47, 0x2b, 0x35, 0x88, 0xa5, 0x06, 0xb5, 0x74, 0x20, 0x17, + 0x16, 0x7a, 0x81, 0x21, 0x58, 0x26, 0x11, 0xef, 0x61, 0x6c, 0xb0, 0x3d, 0xfe, 0x24, 0x8c, 0xd2, + 0x97, 0xbb, 0x88, 0x0e, 0x7f, 0xc1, 0x37, 0x07, 0x80, 0xa6, 0x77, 0x83, 0xe8, 0xd6, 0xc0, 0x0e, + 0x50, 0xc0, 0x6d, 0xc9, 0xb2, 0xce, 0xc3, 0x08, 0x96, 0x10, 0xc0, 0xc1, 0x7e, 0x65, 0x19, 0xb3, + 0x31, 0x22, 0x0a, 0xd6, 0x71, 0x1a, 0x07, 0xfd, 0x34, 0x1c, 0x45, 0xcd, 0xf0, 0x36, 0x4c, 0x93, + 0xe9, 0x82, 0xd8, 0x27, 0x5a, 0xc6, 0xd6, 0x0e, 0x3e, 0x72, 0x6b, 0x0b, 0xdb, 0xda, 0x8d, 0xdd, + 0xc3, 0xc6, 0xe1, 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0xf7, 0x38, 0x03, 0x82, 0x6a, 0x59, 0x8d, 0xd5, + 0x65, 0xfc, 0x89, 0xef, 0x12, 0xaa, 0x78, 0x92, 0xa2, 0x55, 0x42, 0x67, 0x76, 0x57, 0xa1, 0x22, + 0x7a, 0xa5, 0xfa, 0x14, 0xa1, 0x46, 0x1a, 0x67, 0x9b, 0xb2, 0x4a, 0xab, 0x42, 0x8e, 0xa3, 0x9a, + 0x0e, 0x03, 0xa1, 0x06, 0x38, 0x49, 0xe3, 0x49, 0x3f, 0x8d, 0x16, 0xe9, 0xc8, 0xf6, 0xfc, 0x49, + 0xbb, 0x8b, 0x15, 0xfa, 0x9d, 0xc5, 0xe3, 0xf5, 0xdd, 0x24, 0x4c, 0xfc, 0xd6, 0xf4, 0xb9, 0xfa, + 0xad, 0x64, 0xec, 0x7b, 0xc3, 0x7b, 0xff, 0x3c, 0x9d, 0x7e, 0xb1, 0xbd, 0x78, 0x3e, 0xf6, 0xf2, + 0xd9, 0xf9, 0xcb, 0xaf, 0xf8, 0xd9, 0x9f, 0xd2, 0x9b, 0x3d, 0x1f, 0xdf, 0x33, 0xcd, 0xf9, 0xe3, + 0x39, 0x9f, 0x3f, 0x1d, 0x36, 0x9b, 0x68, 0x73, 0x4d, 0x56, 0x8a, 0x90, 0x90, 0x7f, 0xec, 0x2f, + 0x99, 0x5a, 0x8b, 0xd1, 0x52, 0xb2, 0xcd, 0x96, 0x92, 0xcd, 0x18, 0xca, 0x96, 0x92, 0x5c, 0x4d, + 0x66, 0x4b, 0x49, 0x41, 0x86, 0xb3, 0xa5, 0x84, 0x34, 0x80, 0x12, 0xac, 0xc0, 0xbc, 0xa6, 0xcf, + 0x3c, 0xee, 0xd0, 0x04, 0x37, 0xb1, 0xb9, 0x41, 0xf0, 0xb8, 0xcb, 0x16, 0x0d, 0x80, 0x17, 0xf1, + 0x56, 0x67, 0x11, 0xff, 0xbd, 0x78, 0x31, 0xcf, 0xa5, 0xd4, 0x67, 0x04, 0xc6, 0x38, 0x40, 0x5d, + 0x1c, 0x30, 0x99, 0x46, 0xf7, 0x49, 0x1a, 0x07, 0x61, 0x64, 0x06, 0xb5, 0x61, 0x32, 0xc6, 0x09, + 0x0a, 0x56, 0x4d, 0x67, 0xd3, 0x39, 0x23, 0x04, 0x46, 0x08, 0x8c, 0x10, 0x18, 0x21, 0x30, 0x42, + 0x60, 0x84, 0x90, 0xcb, 0x8f, 0x9c, 0x4d, 0xe7, 0xf9, 0x9e, 0x0f, 0x6c, 0x3a, 0x27, 0xd8, 0x20, + 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, + 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x70, 0x7f, 0x34, 0x99, 0x09, 0x17, 0xb4, 0xe7, 0x7c, + 0x6e, 0x3e, 0x5b, 0xce, 0x09, 0x50, 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, + 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x88, 0x8e, 0x96, 0xf3, + 0x9d, 0x7d, 0xe0, 0x96, 0xf3, 0x7d, 0xb6, 0x9c, 0x17, 0xfc, 0x61, 0xcb, 0x39, 0xc1, 0x7e, 0x03, + 0xcb, 0x60, 0xcb, 0x39, 0x8f, 0xdf, 0x4d, 0x6e, 0x6d, 0xb6, 0x9c, 0x8b, 0xdb, 0xda, 0xfb, 0x7b, + 0x7b, 0x2f, 0xd9, 0x6d, 0xce, 0x58, 0xa0, 0x62, 0x56, 0xb3, 0xdb, 0xbc, 0xf2, 0xc7, 0x13, 0x46, + 0xef, 0xd3, 0xda, 0xa8, 0x10, 0xa0, 0x17, 0x4a, 0xc9, 0xd9, 0xc9, 0x7c, 0x77, 0x99, 0x3a, 0x67, + 0xbe, 0xbb, 0xbc, 0xed, 0xca, 0x7c, 0xb7, 0xb0, 0x85, 0x30, 0xdf, 0x4d, 0xa2, 0xf9, 0x8a, 0x44, + 0xf0, 0xf3, 0xdd, 0xe1, 0xc0, 0x44, 0x69, 0x98, 0x3e, 0x60, 0xf4, 0x73, 0xad, 0x83, 0x9c, 0x1d, + 0xc0, 0xa8, 0xda, 0x72, 0x17, 0x8f, 0xfe, 0x38, 0x48, 0x80, 0xcf, 0xad, 0xec, 0x8a, 0xed, 0x9e, + 0xdb, 0xf3, 0x7b, 0x97, 0xc7, 0x5e, 0xeb, 0xca, 0xf7, 0xfe, 0xe8, 0x38, 0xa8, 0xc7, 0xd7, 0x2c, + 0x57, 0x93, 0xc0, 0xbe, 0x8c, 0xd8, 0x82, 0x7e, 0x21, 0xf1, 0x99, 0xa2, 0xba, 0x17, 0x97, 0x9e, + 0xd3, 0xf5, 0x4f, 0xec, 0xce, 0xf2, 0xda, 0xf6, 0xb9, 0xbc, 0x7a, 0xc8, 0xfa, 0xd2, 0xa4, 0x33, + 0x1d, 0x7a, 0xfb, 0x16, 0xdd, 0x3d, 0xfd, 0x37, 0x0b, 0x7e, 0xb5, 0x9f, 0x7e, 0xa5, 0xe4, 0x00, + 0x24, 0x67, 0xb7, 0xce, 0x2e, 0xba, 0xae, 0xf7, 0xea, 0x5c, 0x81, 0xe2, 0xa0, 0x57, 0xf0, 0x96, + 0x2f, 0x30, 0xb9, 0xc3, 0x79, 0x98, 0x50, 0x5a, 0x3c, 0x34, 0xa8, 0xac, 0x2a, 0x28, 0xcb, 0xed, + 0xf9, 0x5d, 0xc7, 0x3e, 0x79, 0xc5, 0xb8, 0x8b, 0x6a, 0x2b, 0x4f, 0x75, 0x9e, 0xe3, 0x37, 0x9d, + 0x53, 0xfb, 0xb2, 0xe5, 0xf9, 0xe7, 0x8e, 0xd7, 0x75, 0x4f, 0x18, 0x79, 0x51, 0x74, 0x79, 0x8b, + 0xee, 0xb2, 0x7d, 0x72, 0xd1, 0xee, 0x79, 0x5d, 0xdb, 0x6d, 0x3b, 0x4d, 0xbf, 0xd5, 0xeb, 0x50, + 0x74, 0x14, 0x5d, 0xde, 0xa2, 0x6b, 0xb9, 0xed, 0xd7, 0x7e, 0xd3, 0x69, 0xd9, 0x4c, 0x2e, 0x51, + 0x6d, 0x05, 0xaa, 0xcd, 0xbf, 0xb2, 0xbb, 0xae, 0xed, 0xb9, 0x17, 0x6d, 0xea, 0x8e, 0xba, 0xcb, + 0x5b, 0x77, 0x6e, 0xe7, 0x6a, 0xdf, 0x6f, 0x3b, 0xee, 0xd9, 0xab, 0xe3, 0x8b, 0xae, 0x6f, 0x37, + 0x9b, 0x5d, 0xa7, 0xd7, 0xa3, 0xf0, 0x28, 0xbc, 0xbc, 0x85, 0x67, 0x37, 0xcf, 0xdd, 0xb6, 0x7f, + 0xd6, 0xbd, 0xb8, 0x24, 0xcd, 0x51, 0x6e, 0x05, 0xc8, 0xed, 0x77, 0xbf, 0xe7, 0x36, 0x29, 0x35, + 0x4a, 0x2d, 0x6f, 0xa9, 0x9d, 0xdb, 0x6f, 0xe6, 0x38, 0x77, 0x6c, 0xb7, 0x9b, 0xff, 0x72, 0x9b, + 0xde, 0x2b, 0xaa, 0x8e, 0xaa, 0x2b, 0x00, 0xe4, 0x1a, 0x04, 0x39, 0x0a, 0xaf, 0x9c, 0x08, 0xc2, + 0x6d, 0x7b, 0x4e, 0xf7, 0xd4, 0x3e, 0x71, 0xa8, 0x3c, 0x2a, 0xaf, 0xd0, 0x9c, 0x49, 0xeb, 0x82, + 0x62, 0xa3, 0xd8, 0xf2, 0x17, 0x5b, 0x06, 0x73, 0x7e, 0xf6, 0x2e, 0xc2, 0xa3, 0xf0, 0x28, 0xbc, + 0xdc, 0x85, 0xe7, 0xbc, 0xf1, 0x9c, 0x76, 0xd3, 0x69, 0x32, 0x63, 0x42, 0xdd, 0x15, 0x1e, 0x50, + 0x90, 0xeb, 0xa8, 0xbc, 0xc2, 0x95, 0x77, 0xe9, 0xb9, 0x2d, 0xf7, 0xdf, 0x4e, 0x93, 0x09, 0x14, + 0xaa, 0xae, 0x38, 0xd5, 0xd9, 0xcd, 0xdf, 0xfd, 0x96, 0xdd, 0x66, 0x96, 0x98, 0x72, 0x2b, 0x42, + 0x6e, 0x53, 0x96, 0xcb, 0x32, 0xc5, 0x2c, 0x33, 0xa1, 0xea, 0x8a, 0x4b, 0x99, 0x74, 0xba, 0x17, + 0x9e, 0x73, 0xe2, 0xb9, 0x17, 0xed, 0x79, 0xf1, 0x30, 0x75, 0x47, 0xdd, 0xe5, 0x7d, 0xb8, 0x5e, + 0xd9, 0x6e, 0xcb, 0x3e, 0x6e, 0x39, 0x64, 0x3a, 0xca, 0xae, 0x60, 0x77, 0x67, 0x7b, 0x5e, 0xd7, + 0x3d, 0xbe, 0xf4, 0x1c, 0x06, 0xaf, 0x94, 0x5c, 0xfe, 0xc1, 0x6b, 0xbb, 0xeb, 0xf4, 0x9c, 0xee, + 0x15, 0xc3, 0x57, 0xea, 0xae, 0x48, 0xdd, 0x75, 0x9d, 0x9e, 0xdb, 0xbc, 0xb4, 0x5b, 0x54, 0x1d, + 0x55, 0x57, 0x60, 0x14, 0x6b, 0xbf, 0xf1, 0xe7, 0xfe, 0x8e, 0x70, 0x47, 0xed, 0x95, 0x00, 0x77, + 0x2a, 0x92, 0x75, 0x1c, 0xc4, 0xc1, 0x2d, 0x5e, 0xa5, 0xad, 0x5d, 0x85, 0xee, 0x62, 0x8a, 0x4b, + 0x5e, 0x64, 0xa6, 0xa6, 0x8b, 0x98, 0xe2, 0x12, 0x09, 0x23, 0xe0, 0xaf, 0x71, 0xa8, 0x2a, 0xb9, + 0xaa, 0xd2, 0xd0, 0x15, 0x4c, 0x7d, 0x49, 0xd3, 0x97, 0xb2, 0xee, 0x5f, 0x0a, 0x4c, 0x9a, 0xc0, + 0x54, 0xd4, 0xac, 0x52, 0x56, 0xf2, 0x64, 0x05, 0xde, 0xcd, 0x4b, 0x49, 0x49, 0x93, 0x94, 0xa6, + 0xae, 0x5d, 0xaa, 0x4b, 0x20, 0x68, 0x35, 0x08, 0x5a, 0x14, 0x58, 0xbe, 0x24, 0xaf, 0xa8, 0x5b, + 0x83, 0x0a, 0x13, 0x99, 0x8b, 0xc0, 0xee, 0xb6, 0xa5, 0xa8, 0xa4, 0x89, 0x4a, 0x59, 0x57, 0x2d, + 0x05, 0x26, 0x4d, 0x60, 0xba, 0xba, 0x67, 0xa9, 0x2f, 0x91, 0x60, 0x4f, 0xee, 0xa2, 0xc2, 0x72, + 0x53, 0x98, 0xa6, 0x6e, 0x58, 0xaa, 0x4b, 0x9a, 0xba, 0x54, 0x74, 0xbd, 0x52, 0x56, 0xd2, 0x64, + 0xa5, 0xa9, 0xbb, 0x95, 0xea, 0x12, 0x99, 0x8a, 0x50, 0xd3, 0xc5, 0x4a, 0x7d, 0x89, 0x3b, 0x14, + 0x35, 0x75, 0xab, 0x52, 0x5e, 0x22, 0xdd, 0x97, 0x86, 0xae, 0x54, 0x4a, 0x4b, 0x5c, 0xb0, 0xa8, + 0xaa, 0xfb, 0x94, 0xfa, 0x92, 0xa6, 0x2f, 0x4d, 0x5d, 0xa6, 0x54, 0x97, 0xb8, 0xa8, 0x51, 0x5d, + 0x37, 0x29, 0x35, 0x26, 0x12, 0xbe, 0x98, 0xec, 0xa2, 0xa4, 0x7e, 0x42, 0x52, 0x1d, 0xde, 0xc4, + 0x4b, 0xb5, 0x95, 0xad, 0xba, 0xd9, 0x9b, 0xc7, 0xc5, 0x75, 0xe3, 0x1c, 0x59, 0x49, 0xc5, 0xe5, + 0xaf, 0x38, 0xcf, 0x3e, 0xdb, 0x6f, 0x50, 0x68, 0x14, 0x5a, 0x01, 0xae, 0x6d, 0x9f, 0xae, 0x8d, + 0x8a, 0x2b, 0xd4, 0xb5, 0x51, 0x66, 0x94, 0x59, 0xde, 0x32, 0xeb, 0x74, 0x9d, 0x53, 0xf7, 0x0d, + 0x47, 0x8c, 0x53, 0x6d, 0x05, 0xaa, 0xed, 0xb4, 0x65, 0x9f, 0xf5, 0x38, 0x25, 0xab, 0xdc, 0x0f, + 0xa7, 0x64, 0x71, 0x7f, 0x33, 0xf2, 0xa7, 0xb2, 0x18, 0xe1, 0x53, 0x50, 0xd5, 0x72, 0x55, 0xfb, + 0x74, 0x55, 0x54, 0x16, 0x23, 0x76, 0xca, 0x89, 0x91, 0x39, 0x55, 0x55, 0x4d, 0x55, 0x81, 0x47, + 0xe0, 0x98, 0x91, 0x37, 0x5e, 0xc4, 0x8d, 0xf5, 0x9c, 0x71, 0xac, 0xc5, 0xb0, 0x14, 0xc4, 0x7b, + 0x5b, 0x76, 0x14, 0x8d, 0xd2, 0x20, 0x0d, 0x47, 0x91, 0x75, 0x04, 0xe4, 0xb7, 0xad, 0xa4, 0xff, + 0xce, 0xdc, 0x05, 0xe3, 0x20, 0x7d, 0x37, 0xf5, 0xd4, 0xf5, 0xd1, 0xd8, 0x44, 0xfd, 0x51, 0x74, + 0x13, 0xde, 0xd6, 0x22, 0x93, 0x7e, 0x18, 0xc5, 0xef, 0x6b, 0x61, 0x94, 0xa4, 0x41, 0xd4, 0x37, + 0xf5, 0x2f, 0xbf, 0x90, 0xac, 0x7c, 0xa5, 0x3e, 0x8e, 0x47, 0xe9, 0xa8, 0x3f, 0x1a, 0x26, 0xd9, + 0xef, 0xea, 0x61, 0x12, 0x26, 0xf5, 0xa1, 0xb9, 0x37, 0xc3, 0xc5, 0x2f, 0xf5, 0x61, 0x18, 0xbd, + 0xaf, 0x25, 0x69, 0x90, 0x9a, 0xda, 0x20, 0x48, 0x83, 0xeb, 0x20, 0x31, 0xf5, 0x61, 0x32, 0xae, + 0xa7, 0xc3, 0xfb, 0x64, 0xfa, 0x8f, 0xfa, 0x5d, 0x5a, 0x9b, 0x7e, 0x57, 0x2d, 0x32, 0xe1, 0xed, + 0xbb, 0xeb, 0x51, 0x5c, 0x0b, 0xd2, 0x34, 0x0e, 0xaf, 0x27, 0xe9, 0xd4, 0x86, 0xf9, 0x97, 0x92, + 0xec, 0x77, 0xf5, 0x47, 0x73, 0x32, 0x33, 0x92, 0xc9, 0xf5, 0xec, 0x0f, 0x9b, 0xff, 0x5a, 0x9f, + 0x4c, 0x97, 0x94, 0xa4, 0x71, 0x10, 0x46, 0x66, 0x50, 0x9b, 0xfe, 0x55, 0xb3, 0xbf, 0x1d, 0xe3, + 0xe8, 0x91, 0xbf, 0x4d, 0x65, 0x5b, 0x28, 0xdc, 0x81, 0xa0, 0x39, 0x8e, 0x6a, 0x3a, 0x0c, 0x80, + 0xfa, 0x45, 0x2b, 0x49, 0xe3, 0x49, 0x3f, 0x8d, 0x16, 0xcc, 0xdd, 0x9e, 0x3f, 0x69, 0x77, 0xb1, + 0x42, 0xbf, 0xb3, 0x78, 0xbc, 0xbe, 0x9b, 0x84, 0x89, 0xdf, 0x9a, 0x3e, 0x57, 0xbf, 0x95, 0x8c, + 0x7d, 0x6f, 0x78, 0xef, 0x9f, 0xa7, 0xd3, 0x2f, 0xb6, 0x17, 0xcf, 0xc7, 0x5e, 0x3e, 0x3b, 0x7f, + 0xf9, 0x15, 0x3f, 0xfb, 0x53, 0x7a, 0xb3, 0xe7, 0xe3, 0x5f, 0x3e, 0x7d, 0x3e, 0xad, 0x64, 0x2c, + 0xdb, 0x93, 0xca, 0xf5, 0x4f, 0x82, 0x7d, 0x93, 0x35, 0x89, 0x62, 0x93, 0x98, 0xf8, 0xde, 0x0c, + 0x6a, 0xd7, 0x41, 0x34, 0xf8, 0x10, 0x0e, 0x66, 0x3b, 0x5e, 0xb6, 0x87, 0xca, 0x42, 0xce, 0x67, + 0xad, 0x17, 0x7e, 0x12, 0xbc, 0x0e, 0xa3, 0x81, 0x75, 0xb4, 0xb5, 0x23, 0xdc, 0xcc, 0x93, 0x99, + 0xb7, 0xb7, 0x8e, 0xb6, 0xb6, 0x85, 0x1b, 0xda, 0x89, 0xcd, 0x4d, 0xf8, 0x11, 0xe3, 0x54, 0x5d, + 0xea, 0x76, 0xd4, 0x9f, 0x9d, 0x64, 0x08, 0xe7, 0x4d, 0x6f, 0x34, 0x89, 0xfb, 0x06, 0x26, 0xda, + 0xb1, 0x5e, 0x9b, 0x87, 0x0f, 0xa3, 0x78, 0xba, 0xc3, 0xac, 0xf1, 0x5c, 0x19, 0x20, 0xa1, 0xe5, + 0xab, 0x20, 0xb1, 0xe3, 0xdb, 0xc9, 0x9d, 0x89, 0x52, 0xeb, 0x68, 0x2b, 0x8d, 0x27, 0x06, 0x25, + 0x26, 0x7e, 0xb4, 0x3a, 0x13, 0x36, 0xa3, 0x19, 0xd5, 0xd1, 0x4c, 0x33, 0x8c, 0x41, 0xc2, 0x18, + 0x93, 0x4e, 0xc6, 0xb5, 0x71, 0x1c, 0x8e, 0xe2, 0x30, 0x7d, 0xc0, 0xf1, 0x62, 0xcb, 0x83, 0xe2, + 0x0b, 0xfb, 0x41, 0x3c, 0x02, 0x06, 0xe2, 0xc0, 0xa1, 0x0e, 0x22, 0xf2, 0x00, 0xa3, 0x0f, 0x2a, + 0x02, 0xc1, 0xa3, 0x10, 0x3c, 0x12, 0x61, 0xa3, 0x11, 0x06, 0x22, 0x81, 0xa0, 0x12, 0x1c, 0x32, + 0x65, 0x06, 0xc3, 0x41, 0xd3, 0xca, 0x51, 0x03, 0x86, 0x4d, 0x5f, 0xe2, 0xd3, 0x36, 0x98, 0xd9, + 0x68, 0x18, 0x85, 0x8c, 0x53, 0x0a, 0xb0, 0x0a, 0x1d, 0xaf, 0xd4, 0x60, 0x96, 0x1a, 0xdc, 0xd2, + 0x81, 0x5d, 0x58, 0xf8, 0x05, 0x86, 0x61, 0x99, 0x44, 0xbc, 0x87, 0xb1, 0xc1, 0xf6, 0xf8, 0x43, + 0x13, 0xdc, 0xc4, 0xe6, 0x06, 0xd1, 0xe3, 0x2f, 0xf3, 0x43, 0x07, 0x80, 0xb6, 0x77, 0x16, 0x25, + 0x11, 0x2f, 0x5e, 0xcc, 0xcb, 0x8b, 0xea, 0x19, 0x65, 0xb2, 0x80, 0xb1, 0xea, 0x9e, 0xc5, 0x9a, + 0x17, 0x9c, 0xc1, 0x06, 0x4c, 0x73, 0xf3, 0x31, 0xa3, 0xa5, 0x1d, 0x46, 0x4b, 0x8c, 0x96, 0x18, + 0x2d, 0x31, 0x5a, 0x62, 0xb4, 0xc4, 0x68, 0x89, 0x4c, 0xb3, 0x59, 0x89, 0xa0, 0x25, 0xaf, 0x33, + 0xc3, 0x71, 0x6a, 0x1a, 0xbf, 0x7a, 0x66, 0xa1, 0x14, 0x38, 0x7e, 0x0d, 0xd4, 0xb6, 0x41, 0xcd, + 0x47, 0x05, 0x36, 0x0d, 0xe0, 0xa6, 0x08, 0xe0, 0xb4, 0x80, 0x9c, 0x3a, 0xa0, 0x53, 0x07, 0x76, + 0xba, 0x00, 0x0f, 0x13, 0xf4, 0x40, 0x81, 0x2f, 0x93, 0x0e, 0x6c, 0x9a, 0x7c, 0xe5, 0xc4, 0x08, + 0x8d, 0x31, 0x37, 0xc3, 0x51, 0x90, 0xbe, 0xdc, 0x45, 0x3e, 0x35, 0x16, 0x10, 0x75, 0x08, 0xbc, + 0x84, 0x96, 0x89, 0x6e, 0x67, 0x40, 0x8e, 0x3d, 0x65, 0x1f, 0x7f, 0x7e, 0xa6, 0x75, 0x1e, 0x46, + 0xf0, 0xfc, 0xa1, 0x24, 0xbc, 0x58, 0x59, 0xce, 0xec, 0x2e, 0x0a, 0xeb, 0x68, 0xab, 0xa1, 0x64, + 0x3d, 0xa7, 0x71, 0xd0, 0x4f, 0xc3, 0x51, 0xd4, 0x0c, 0x6f, 0xc3, 0x34, 0x99, 0xfe, 0xa0, 0x38, + 0x04, 0x58, 0x82, 0x0b, 0x08, 0x3e, 0xd2, 0x05, 0xd0, 0x05, 0xd0, 0x05, 0x54, 0x29, 0x1a, 0xc1, + 0xb7, 0x1e, 0x73, 0xa2, 0x34, 0xde, 0xf3, 0x06, 0x3c, 0xe2, 0x70, 0x0b, 0xd7, 0x57, 0x62, 0x56, + 0xd0, 0x02, 0x76, 0x25, 0xe7, 0x31, 0x33, 0xfe, 0x92, 0xf6, 0x02, 0x33, 0xfe, 0x72, 0xb6, 0x35, + 0x33, 0xfe, 0xc2, 0x17, 0xc4, 0x8c, 0x3f, 0xc9, 0xe9, 0x07, 0xa5, 0xa3, 0x27, 0xe3, 0x3f, 0x09, + 0xa3, 0xf4, 0x37, 0x05, 0xb9, 0xfe, 0x3d, 0xe0, 0x25, 0x74, 0x83, 0xe8, 0xd6, 0x30, 0xd5, 0x5f, + 0xfe, 0x0f, 0x82, 0xa9, 0x7e, 0xb9, 0xcb, 0x59, 0xe6, 0xf9, 0xb6, 0x99, 0xe7, 0xe3, 0x69, 0x9e, + 0xa3, 0x0b, 0x60, 0xaa, 0x5f, 0xbc, 0x0b, 0x38, 0xa0, 0x0b, 0x60, 0x18, 0x42, 0xeb, 0x9f, 0x7e, + 0x98, 0xea, 0xa7, 0xc5, 0xf0, 0x07, 0x32, 0xea, 0xc5, 0x11, 0x99, 0xfd, 0xd5, 0x98, 0x07, 0xbf, + 0x3a, 0x4d, 0xba, 0xfe, 0xf9, 0x04, 0x46, 0xa4, 0x2b, 0x25, 0xf0, 0x36, 0x36, 0x27, 0x8e, 0x6d, + 0x14, 0x91, 0xcd, 0x03, 0xe0, 0x4b, 0x44, 0xab, 0x15, 0x26, 0xa9, 0x9d, 0xa6, 0x60, 0xd3, 0xd2, + 0xce, 0xc3, 0xc8, 0x19, 0x9a, 0x3b, 0x13, 0xcd, 0x68, 0x37, 0x9a, 0x0c, 0x87, 0x40, 0x63, 0x0b, + 0xce, 0x83, 0x8f, 0xb8, 0xc6, 0x5f, 0xc4, 0x03, 0x13, 0x9b, 0xc1, 0xf1, 0xc3, 0xc2, 0x74, 0xfa, + 0x10, 0x62, 0x0b, 0x71, 0x05, 0xae, 0x70, 0xa4, 0xc8, 0x8b, 0x6d, 0x7a, 0xd3, 0x87, 0xd4, 0x81, + 0x9a, 0xdb, 0xc3, 0xfb, 0xc1, 0x54, 0x3b, 0x5c, 0xde, 0x0f, 0x06, 0xe2, 0x60, 0x79, 0x07, 0x96, + 0xba, 0xfd, 0x67, 0x4d, 0xd2, 0x70, 0x18, 0xfe, 0x3f, 0xd0, 0x1b, 0xb0, 0x56, 0x6d, 0xe7, 0xfd, + 0x57, 0x9b, 0x30, 0x93, 0xf7, 0x5f, 0xe5, 0xa8, 0x5a, 0xde, 0x7f, 0x95, 0x67, 0xd6, 0x87, 0xf7, + 0x5f, 0x15, 0x8b, 0x6e, 0xbc, 0xff, 0xaa, 0x6a, 0xb4, 0x8e, 0x73, 0xff, 0x15, 0xd4, 0x40, 0x52, + 0xc8, 0x41, 0xa4, 0xbc, 0xed, 0x8a, 0x80, 0xa3, 0x00, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, + 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x18, 0x77, 0x50, + 0x28, 0xfc, 0x80, 0x50, 0xde, 0x77, 0x45, 0xa0, 0xaa, 0x00, 0x58, 0xa1, 0x03, 0x96, 0x1a, 0xd0, + 0x52, 0x03, 0x5c, 0x3a, 0xc0, 0x0b, 0x0b, 0xc0, 0xc0, 0x40, 0x2c, 0x93, 0x08, 0xfe, 0x7d, 0x57, + 0xd8, 0x03, 0x3c, 0x81, 0x07, 0x77, 0xa2, 0x0f, 0xec, 0x04, 0x6e, 0x65, 0xd7, 0xd0, 0xb5, 0xab, + 0xa4, 0x55, 0x4f, 0xcb, 0x34, 0x3e, 0x4d, 0xad, 0x79, 0xc0, 0x5d, 0xb9, 0x2a, 0xba, 0x71, 0xb9, + 0xb5, 0xb9, 0xb5, 0x19, 0x0d, 0x40, 0x5b, 0xfd, 0x96, 0xad, 0x6c, 0x55, 0x3f, 0x9a, 0xac, 0x14, + 0x31, 0x36, 0xcc, 0xe2, 0xc2, 0x99, 0xf5, 0xcc, 0x78, 0x17, 0x61, 0x36, 0x33, 0xde, 0x25, 0xea, + 0x9c, 0x19, 0xef, 0xf2, 0xb6, 0x2b, 0x33, 0xde, 0xc2, 0x16, 0xc2, 0x8c, 0x37, 0x89, 0xe6, 0x2b, + 0x12, 0x51, 0x90, 0xf1, 0x1e, 0x98, 0x28, 0x0d, 0xd3, 0x87, 0xd8, 0xdc, 0x00, 0x67, 0xbc, 0x77, + 0x00, 0xe7, 0x57, 0x5a, 0xee, 0xe2, 0xd1, 0x1f, 0x07, 0x89, 0xc1, 0x9f, 0x23, 0xef, 0xf6, 0xdc, + 0x9e, 0xdf, 0xbb, 0x3c, 0xf6, 0x5a, 0x57, 0xbe, 0xf7, 0x47, 0xc7, 0x41, 0x3d, 0xbe, 0x66, 0x79, + 0x9a, 0x04, 0x7a, 0x9c, 0x28, 0x78, 0xc2, 0x6f, 0xa9, 0xa8, 0xee, 0xc5, 0xa5, 0xe7, 0x74, 0xfd, + 0x13, 0xbb, 0x63, 0x1f, 0xbb, 0x2d, 0xd7, 0xfb, 0x63, 0x21, 0xaf, 0x1e, 0xb2, 0xbe, 0x34, 0xe9, + 0x4c, 0x87, 0xde, 0xbe, 0x45, 0x77, 0x4f, 0xff, 0xcd, 0xe2, 0xa0, 0x51, 0x4a, 0xae, 0x08, 0xc9, + 0xd9, 0xad, 0xb3, 0x8b, 0xae, 0xeb, 0xbd, 0x3a, 0xb7, 0x38, 0xd7, 0xb2, 0xd4, 0xcf, 0x5b, 0xbe, + 0xbc, 0xe4, 0x0e, 0xe7, 0x61, 0x42, 0x69, 0xf1, 0xd0, 0xa0, 0xb2, 0xaa, 0xa0, 0x2c, 0xb7, 0xe7, + 0x77, 0x1d, 0xfb, 0xe4, 0x15, 0xe3, 0x2e, 0xaa, 0xad, 0x3c, 0xd5, 0x79, 0x8e, 0xdf, 0x74, 0x4e, + 0xed, 0xcb, 0x96, 0xe7, 0x9f, 0x3b, 0x5e, 0xd7, 0x3d, 0x61, 0xe4, 0x45, 0xd1, 0xe5, 0x2d, 0xba, + 0xcb, 0xf6, 0xc9, 0x45, 0xbb, 0xe7, 0x75, 0x6d, 0xb7, 0xed, 0x34, 0xfd, 0x56, 0xaf, 0x43, 0xd1, + 0x51, 0x74, 0x79, 0x8b, 0xae, 0xe5, 0xb6, 0x5f, 0xfb, 0x4d, 0xa7, 0x65, 0x33, 0xb9, 0x44, 0xb5, + 0x15, 0xa8, 0x36, 0xff, 0xca, 0xee, 0xba, 0xb6, 0xe7, 0x5e, 0xb4, 0xa9, 0x3b, 0xea, 0x2e, 0x6f, + 0xdd, 0xb9, 0x9d, 0xab, 0x7d, 0xbf, 0xed, 0xb8, 0x67, 0xaf, 0x8e, 0x2f, 0xba, 0xbe, 0xdd, 0x6c, + 0x76, 0x9d, 0x5e, 0x8f, 0xc2, 0xa3, 0xf0, 0xf2, 0x16, 0x9e, 0xdd, 0x3c, 0x77, 0xdb, 0xfe, 0x59, + 0xf7, 0xe2, 0x92, 0x34, 0x47, 0xb9, 0x15, 0x20, 0xb7, 0xdf, 0xfd, 0x9e, 0xdb, 0xa4, 0xd4, 0x28, + 0xb5, 0xbc, 0xa5, 0x76, 0x6e, 0xbf, 0x99, 0xe3, 0xdc, 0xb1, 0xdd, 0x6e, 0xfe, 0xcb, 0x6d, 0x7a, + 0xaf, 0xa8, 0x3a, 0xaa, 0xae, 0x00, 0x90, 0x6b, 0x10, 0xe4, 0x28, 0xbc, 0x72, 0x22, 0x08, 0xb7, + 0xed, 0x39, 0xdd, 0x53, 0xfb, 0xc4, 0xa1, 0xf2, 0xa8, 0xbc, 0x42, 0x73, 0x26, 0xad, 0x0b, 0x8a, + 0x8d, 0x62, 0xcb, 0x5f, 0x6c, 0x19, 0xcc, 0xf9, 0xd9, 0xbb, 0x08, 0x8f, 0xc2, 0xa3, 0xf0, 0x72, + 0x17, 0x9e, 0xf3, 0xc6, 0x73, 0xda, 0x4d, 0xa7, 0xc9, 0x8c, 0x09, 0x75, 0x57, 0x78, 0x40, 0x41, + 0xae, 0xa3, 0xf2, 0x0a, 0x57, 0xde, 0xa5, 0xe7, 0xb6, 0xdc, 0x7f, 0x3b, 0x4d, 0x26, 0x50, 0xa8, + 0xba, 0xe2, 0x54, 0x67, 0x37, 0x7f, 0xf7, 0x5b, 0x76, 0x9b, 0x59, 0x62, 0xca, 0xad, 0x08, 0xb9, + 0x4d, 0x59, 0x2e, 0xcb, 0x14, 0xb3, 0xcc, 0x84, 0xaa, 0x2b, 0x2e, 0x65, 0xd2, 0xe9, 0x5e, 0x78, + 0xce, 0x89, 0xe7, 0x5e, 0xb4, 0xe7, 0xc5, 0xc3, 0xd4, 0x1d, 0x75, 0x97, 0xf7, 0xe1, 0x7a, 0x65, + 0xbb, 0x2d, 0xfb, 0xb8, 0xe5, 0x90, 0xe9, 0x28, 0xbb, 0x82, 0xdd, 0x9d, 0xed, 0x79, 0x5d, 0xf7, + 0xf8, 0xd2, 0x73, 0x18, 0xbc, 0x52, 0x72, 0xf9, 0x07, 0xaf, 0xed, 0xae, 0xd3, 0x73, 0xba, 0x57, + 0x0c, 0x5f, 0xa9, 0xbb, 0x22, 0x75, 0xd7, 0x75, 0x7a, 0x6e, 0xf3, 0xd2, 0x6e, 0x51, 0x75, 0x54, + 0x5d, 0x81, 0x51, 0xac, 0xfd, 0xc6, 0x9f, 0xfb, 0x3b, 0xc2, 0x1d, 0xb5, 0x57, 0x02, 0xdc, 0xa9, + 0x48, 0xd6, 0x71, 0x10, 0x07, 0xb7, 0x78, 0x95, 0xb6, 0x76, 0x15, 0xba, 0x8b, 0x29, 0x2e, 0x79, + 0x91, 0x99, 0x9a, 0x2e, 0x62, 0x8a, 0x4b, 0x24, 0x8c, 0x80, 0xbf, 0xc6, 0xa1, 0xaa, 0xe4, 0xaa, + 0x4a, 0x43, 0x57, 0x30, 0xf5, 0x25, 0x4d, 0x5f, 0xca, 0xba, 0x7f, 0x29, 0x30, 0x69, 0x02, 0x53, + 0x51, 0xb3, 0x4a, 0x59, 0xc9, 0x93, 0x15, 0x78, 0x37, 0x2f, 0x25, 0x25, 0x4d, 0x52, 0x9a, 0xba, + 0x76, 0xa9, 0x2e, 0x81, 0xa0, 0xd5, 0x20, 0x68, 0x51, 0x60, 0xf9, 0x92, 0xbc, 0xa2, 0x6e, 0x0d, + 0x2a, 0x4c, 0x64, 0x2e, 0x02, 0xbb, 0xdb, 0x96, 0xa2, 0x92, 0x26, 0x2a, 0x65, 0x5d, 0xb5, 0x14, + 0x98, 0x34, 0x81, 0xe9, 0xea, 0x9e, 0xa5, 0xbe, 0x44, 0x82, 0x3d, 0xb9, 0x8b, 0x0a, 0xcb, 0x4d, + 0x61, 0x9a, 0xba, 0x61, 0xa9, 0x2e, 0x69, 0xea, 0x52, 0xd1, 0xf5, 0x4a, 0x59, 0x49, 0x93, 0x95, + 0xa6, 0xee, 0x56, 0xaa, 0x4b, 0x64, 0x2a, 0x42, 0x4d, 0x17, 0x2b, 0xf5, 0x25, 0xee, 0x50, 0xd4, + 0xd4, 0xad, 0x4a, 0x79, 0x89, 0x74, 0x5f, 0x1a, 0xba, 0x52, 0x29, 0x2d, 0x71, 0xc1, 0xa2, 0xaa, + 0xee, 0x53, 0xea, 0x4b, 0x9a, 0xbe, 0x34, 0x75, 0x99, 0x52, 0x5d, 0xe2, 0xa2, 0x46, 0x75, 0xdd, + 0xa4, 0xd4, 0x98, 0x48, 0xf8, 0x62, 0xb2, 0x8b, 0x92, 0xfa, 0x09, 0x49, 0x75, 0x78, 0x13, 0x2f, + 0xd5, 0x56, 0xb6, 0xea, 0x66, 0x6f, 0x1e, 0x17, 0xd7, 0x8d, 0x73, 0x64, 0x25, 0x15, 0x97, 0xbf, + 0xe2, 0x3c, 0xfb, 0x6c, 0xbf, 0x41, 0xa1, 0x51, 0x68, 0x05, 0xb8, 0xb6, 0x7d, 0xba, 0x36, 0x2a, + 0xae, 0x50, 0xd7, 0x46, 0x99, 0x51, 0x66, 0x79, 0xcb, 0xac, 0xd3, 0x75, 0x4e, 0xdd, 0x37, 0x1c, + 0x31, 0x4e, 0xb5, 0x15, 0xa8, 0xb6, 0xd3, 0x96, 0x7d, 0xd6, 0xe3, 0x94, 0xac, 0x72, 0x3f, 0x9c, + 0x92, 0xc5, 0xfd, 0xcd, 0xc8, 0x9f, 0xca, 0x62, 0x84, 0x4f, 0x41, 0x55, 0xcb, 0x55, 0xed, 0xd3, + 0x55, 0x51, 0x59, 0x8c, 0xd8, 0x29, 0x27, 0x46, 0xe6, 0x54, 0x55, 0x35, 0x55, 0x05, 0x1e, 0x81, + 0x63, 0x46, 0xde, 0x78, 0x11, 0x37, 0xd6, 0x73, 0xc6, 0xb1, 0x16, 0xc3, 0x52, 0x10, 0xef, 0x6d, + 0xd9, 0x51, 0x34, 0x4a, 0x83, 0x34, 0x1c, 0x45, 0xd6, 0x11, 0x90, 0xdf, 0xb6, 0x92, 0xfe, 0x3b, + 0x73, 0x17, 0x8c, 0x83, 0xf4, 0xdd, 0xd4, 0x53, 0xd7, 0x47, 0x63, 0x13, 0xf5, 0x47, 0xd1, 0x4d, + 0x78, 0x5b, 0x8b, 0x4c, 0xfa, 0x61, 0x14, 0xbf, 0xaf, 0x85, 0x51, 0x92, 0x06, 0x51, 0xdf, 0xd4, + 0xbf, 0xfc, 0x42, 0xb2, 0xf2, 0x95, 0xfa, 0x38, 0x1e, 0xa5, 0xa3, 0xfe, 0x68, 0x98, 0x64, 0xbf, + 0xab, 0x87, 0x49, 0x98, 0xd4, 0x87, 0xe6, 0xde, 0x0c, 0x17, 0xbf, 0xd4, 0x87, 0x61, 0xf4, 0xbe, + 0x96, 0xa4, 0x41, 0x6a, 0x6a, 0x83, 0x20, 0x0d, 0xae, 0x83, 0xc4, 0xd4, 0x87, 0xc9, 0xb8, 0x9e, + 0x0e, 0xef, 0x93, 0xe9, 0x3f, 0xea, 0x77, 0x69, 0x6d, 0xfa, 0x5d, 0xb5, 0xc8, 0x84, 0xb7, 0xef, + 0xae, 0x47, 0x71, 0x2d, 0x48, 0xd3, 0x38, 0xbc, 0x9e, 0xa4, 0x53, 0x1b, 0xe6, 0x5f, 0x4a, 0xb2, + 0xdf, 0xd5, 0x1f, 0xcd, 0xc9, 0xcc, 0x48, 0x26, 0xd7, 0xb3, 0x3f, 0x6c, 0xfe, 0x6b, 0x7d, 0x92, + 0x86, 0xc3, 0xf0, 0xff, 0x99, 0x41, 0xed, 0x3a, 0x88, 0x06, 0x1f, 0xc2, 0x41, 0xfa, 0xae, 0x3e, + 0xfb, 0xeb, 0x31, 0xce, 0x1e, 0xf9, 0xfb, 0x54, 0xb6, 0x85, 0xc2, 0x3d, 0x08, 0x9a, 0xe7, 0xa8, + 0xa8, 0xc7, 0x00, 0xa8, 0x60, 0xb4, 0x92, 0x34, 0x9e, 0xf4, 0xd3, 0x68, 0x41, 0xdd, 0xed, 0xf9, + 0xa3, 0x76, 0x17, 0x4b, 0xf4, 0x3b, 0x8b, 0xe7, 0xeb, 0xbb, 0x49, 0x98, 0xf8, 0xad, 0xe9, 0x83, + 0xf5, 0x5b, 0xc9, 0xd8, 0xf7, 0x86, 0xf7, 0xfe, 0x79, 0x3a, 0xfd, 0x62, 0x7b, 0xf1, 0x80, 0xec, + 0xe5, 0xc3, 0xf3, 0x97, 0x5f, 0xf1, 0xb3, 0x3f, 0xa5, 0x37, 0x7b, 0x40, 0xfe, 0xe5, 0xe2, 0x01, + 0x1d, 0x67, 0xcf, 0xe7, 0x17, 0x7a, 0x28, 0x3d, 0x96, 0x09, 0xf5, 0x99, 0xd6, 0x6b, 0xf3, 0x30, + 0x95, 0x76, 0xfa, 0x30, 0x36, 0x42, 0x37, 0xa4, 0xd5, 0x0a, 0x93, 0x74, 0xba, 0x81, 0x44, 0x3b, + 0x73, 0xeb, 0x3c, 0x8c, 0x9c, 0xa1, 0xb9, 0x33, 0x51, 0x9a, 0x58, 0x47, 0x5b, 0xd1, 0x64, 0x38, + 0xfc, 0x55, 0xb0, 0xb1, 0xc1, 0x47, 0x1c, 0x63, 0x2f, 0xe2, 0x81, 0x89, 0xcd, 0xe0, 0xf8, 0x61, + 0x61, 0x2a, 0xf7, 0xb7, 0x3e, 0x16, 0xaa, 0x02, 0x03, 0x09, 0x06, 0x9e, 0x02, 0x41, 0x47, 0x26, + 0xd6, 0xc8, 0x83, 0x06, 0x59, 0x16, 0x09, 0x73, 0x6f, 0xd2, 0xdd, 0x9a, 0x6a, 0x77, 0x26, 0x6b, + 0x07, 0xcb, 0xd9, 0x27, 0x82, 0xf6, 0x88, 0x35, 0x89, 0x06, 0xe6, 0x26, 0x8c, 0xcc, 0xa0, 0xb6, + 0xfc, 0xa1, 0x49, 0xdb, 0x26, 0xd9, 0xbb, 0xac, 0x55, 0x53, 0x85, 0xf9, 0x9a, 0xd7, 0x61, 0x34, + 0xb0, 0x8e, 0xb6, 0x76, 0x84, 0x99, 0x75, 0x32, 0xf3, 0x27, 0xd6, 0xd1, 0xd6, 0xb6, 0x30, 0xc3, + 0x3a, 0xb1, 0xb9, 0x09, 0x3f, 0xca, 0xf4, 0xcb, 0x4b, 0xd1, 0x8d, 0xfa, 0x33, 0x5f, 0x28, 0x10, + 0xc9, 0xac, 0xde, 0x68, 0x12, 0xf7, 0x8d, 0x58, 0x5a, 0xb7, 0x5e, 0x9b, 0x87, 0x0f, 0xa3, 0x78, + 0xba, 0x23, 0xac, 0xf1, 0xfc, 0x27, 0x2d, 0x34, 0xf4, 0x79, 0x15, 0x24, 0x76, 0x7c, 0x3b, 0x99, + 0x46, 0xb9, 0xd6, 0xd1, 0x56, 0x1a, 0x4f, 0x8c, 0xd4, 0x18, 0xed, 0xd1, 0xca, 0x4c, 0x98, 0xe4, + 0x51, 0x28, 0x1e, 0x6d, 0x86, 0x32, 0xd3, 0x53, 0x2b, 0xa7, 0xab, 0x5c, 0xbf, 0xb2, 0x8e, 0x07, + 0xa4, 0xba, 0x17, 0x99, 0x58, 0x20, 0x1e, 0x0f, 0x10, 0x30, 0x01, 0x08, 0x17, 0x50, 0xb0, 0x01, + 0x0e, 0x1f, 0xe0, 0x30, 0x02, 0x0b, 0x27, 0x64, 0x62, 0x85, 0x50, 0xbc, 0x10, 0x8f, 0x19, 0x99, + 0x81, 0xf3, 0x2a, 0x20, 0xf1, 0x4e, 0x68, 0xe9, 0xd7, 0xe7, 0xe6, 0x0a, 0xdf, 0xcf, 0xb2, 0x41, + 0x03, 0x06, 0x38, 0x90, 0xc0, 0x03, 0x10, 0x40, 0xd0, 0x40, 0x04, 0x16, 0x48, 0x60, 0xc1, 0x04, + 0x13, 0x50, 0x64, 0x83, 0x8a, 0x70, 0x60, 0x81, 0x01, 0x97, 0xcc, 0xd0, 0xa1, 0x89, 0x6e, 0x67, + 0x2f, 0xed, 0x40, 0xbc, 0xd7, 0xf2, 0x80, 0x58, 0xd8, 0x0d, 0xe2, 0x01, 0x16, 0x48, 0xb3, 0x0d, + 0x62, 0x2e, 0x0a, 0xda, 0x20, 0x22, 0x0e, 0x30, 0xea, 0xa0, 0x22, 0x0f, 0x3c, 0xfa, 0xc0, 0x23, + 0x10, 0x36, 0x0a, 0x61, 0x20, 0x11, 0x08, 0x1a, 0x65, 0x52, 0xf0, 0x1e, 0xc6, 0x06, 0xd3, 0x63, + 0x4f, 0xc2, 0x28, 0xfd, 0x0d, 0xc9, 0x5f, 0x2f, 0xf0, 0x63, 0x0f, 0xc8, 0xe4, 0x6e, 0x10, 0xdd, + 0x1a, 0xb8, 0x71, 0xd9, 0x78, 0xed, 0xf6, 0xd6, 0x79, 0x18, 0xc1, 0x1d, 0xe4, 0xa0, 0x5c, 0xbd, + 0x62, 0xfe, 0x6c, 0x28, 0x3c, 0xb0, 0xfd, 0xa7, 0x71, 0xd0, 0x4f, 0xc3, 0x51, 0xd4, 0x0c, 0x6f, + 0xc3, 0x59, 0x67, 0xc5, 0x36, 0xde, 0x6c, 0x80, 0x5f, 0x01, 0xb7, 0x6c, 0xf0, 0x91, 0x5b, 0xb6, + 0xe4, 0x2d, 0xbb, 0xbb, 0xb7, 0xc7, 0x4d, 0x4b, 0x10, 0xd7, 0x65, 0xed, 0x5b, 0x8e, 0x33, 0xa8, + 0xca, 0xa1, 0x32, 0xef, 0x80, 0x85, 0x4b, 0xfb, 0x0a, 0xee, 0xdb, 0x05, 0x3f, 0xe9, 0x98, 0xf4, + 0x2d, 0x52, 0xc7, 0x4c, 0xfa, 0x16, 0xb7, 0x0d, 0x99, 0xf4, 0x2d, 0x79, 0x01, 0x4c, 0xfa, 0x92, + 0x38, 0x16, 0x52, 0x60, 0xd2, 0xb7, 0x68, 0xfc, 0x60, 0xd2, 0x37, 0xef, 0x0f, 0x93, 0xbe, 0xe4, + 0xea, 0xef, 0x30, 0x9f, 0x49, 0x5f, 0x9e, 0x96, 0x3f, 0xb2, 0x65, 0x99, 0xf4, 0x2d, 0x7d, 0xcb, + 0x32, 0xe9, 0x4b, 0x10, 0x57, 0x67, 0x2d, 0x93, 0xbe, 0x95, 0x39, 0x54, 0xac, 0xfb, 0x85, 0x23, + 0x03, 0xcb, 0xfa, 0xce, 0xcd, 0x66, 0xda, 0x37, 0x0f, 0x73, 0x99, 0xf6, 0x2d, 0x50, 0xc8, 0x4c, + 0xfb, 0x16, 0xb7, 0x0d, 0x99, 0xf6, 0x2d, 0x79, 0x01, 0x4c, 0xfb, 0x92, 0x39, 0x16, 0x52, 0xc0, + 0x4d, 0xfb, 0x5e, 0x87, 0x51, 0x10, 0x3f, 0x00, 0xe6, 0x7d, 0x0f, 0x89, 0xf5, 0x15, 0xb0, 0x90, + 0x57, 0x53, 0x6c, 0xd6, 0x5e, 0x95, 0x73, 0x4c, 0x57, 0x26, 0x4e, 0xae, 0x7c, 0x05, 0xe1, 0x36, + 0x1b, 0xc1, 0x37, 0x30, 0x08, 0x1e, 0x93, 0x04, 0x51, 0xe6, 0x85, 0x54, 0xde, 0x05, 0x12, 0xdf, + 0x73, 0x3c, 0x09, 0xe3, 0xf8, 0x2d, 0x8e, 0x27, 0x61, 0xbc, 0xae, 0x34, 0x4e, 0x27, 0x96, 0x57, + 0x22, 0x1e, 0x7f, 0x32, 0xef, 0x23, 0xb8, 0x89, 0xcd, 0x0d, 0x82, 0xc7, 0x5d, 0xce, 0x2f, 0x3b, + 0x00, 0xb0, 0xb5, 0xb3, 0x88, 0x74, 0x5e, 0xbc, 0x98, 0x87, 0x00, 0xf5, 0x19, 0x81, 0x31, 0x0e, + 0x50, 0x64, 0x19, 0x6f, 0x62, 0xfb, 0x61, 0x13, 0x79, 0x13, 0xdb, 0xe6, 0x8d, 0xe5, 0x4d, 0x6c, + 0x15, 0xd9, 0xdf, 0xbc, 0x89, 0x4d, 0x74, 0xca, 0xaf, 0xea, 0xb7, 0xb3, 0x5d, 0x2e, 0x9f, 0x07, + 0xaf, 0x69, 0xc3, 0xb5, 0x88, 0xd7, 0xb4, 0xd1, 0xd7, 0xad, 0xfa, 0x3a, 0x5e, 0xd8, 0x26, 0xd9, + 0x12, 0x21, 0x7b, 0x76, 0x19, 0x7f, 0x84, 0x03, 0x21, 0x27, 0xa1, 0xcc, 0x68, 0x43, 0x74, 0x74, + 0x21, 0x3a, 0x9a, 0x90, 0x19, 0x3d, 0x48, 0xd9, 0x7d, 0x42, 0x4f, 0x4a, 0x95, 0x27, 0xa4, 0x20, + 0xd4, 0x2f, 0x02, 0xed, 0x65, 0x1c, 0xff, 0xe5, 0x1f, 0xb6, 0xe5, 0x5a, 0x50, 0xb2, 0xa3, 0x91, + 0xe6, 0x60, 0x34, 0x39, 0x96, 0x72, 0x37, 0x58, 0x79, 0xb2, 0x2e, 0x51, 0xd2, 0xd6, 0xf4, 0x47, + 0x35, 0x28, 0x5d, 0xc9, 0xd9, 0xeb, 0xb8, 0xb9, 0x39, 0x25, 0x6f, 0x71, 0x19, 0x95, 0x38, 0x62, + 0x2a, 0x6d, 0x24, 0x55, 0xd2, 0x08, 0xac, 0x94, 0x91, 0x56, 0x09, 0x23, 0xb6, 0xd2, 0x45, 0x6c, + 0x25, 0x8b, 0xcc, 0x4a, 0x95, 0x6a, 0x63, 0x96, 0x98, 0x4a, 0x12, 0x81, 0x95, 0x22, 0x92, 0x2a, + 0x41, 0x56, 0x2b, 0x3d, 0xe6, 0x47, 0x38, 0x51, 0xae, 0x84, 0x10, 0x58, 0xc2, 0x9d, 0x91, 0xa2, + 0xee, 0x84, 0x14, 0x72, 0xe7, 0x23, 0x51, 0x8e, 0x28, 0x47, 0x94, 0x23, 0xca, 0x55, 0x13, 0xe5, + 0xa4, 0xdc, 0x59, 0x28, 0x24, 0xd7, 0x21, 0x32, 0xe7, 0x21, 0x2c, 0xf7, 0x21, 0xee, 0xe0, 0x94, + 0x78, 0x80, 0x0a, 0x3e, 0x48, 0xa5, 0x1e, 0xa8, 0xe2, 0x0f, 0x56, 0xf1, 0x07, 0xac, 0xec, 0x83, + 0x56, 0xc6, 0x81, 0x2b, 0xe4, 0xe0, 0x95, 0x97, 0x4b, 0x59, 0xf1, 0x58, 0x93, 0x30, 0x4a, 0x77, + 0xf6, 0x25, 0x39, 0xac, 0xc5, 0xf9, 0xb7, 0x2f, 0xc8, 0x24, 0x99, 0xd3, 0x8b, 0x05, 0x56, 0x21, + 0x4a, 0x9e, 0x3e, 0x2c, 0xbc, 0xbd, 0x5b, 0xfa, 0xf4, 0x60, 0x84, 0x41, 0xa3, 0x02, 0x1b, 0x26, + 0x44, 0x4f, 0xf7, 0x45, 0xd9, 0x12, 0x8d, 0xed, 0xc3, 0x3d, 0xee, 0x0a, 0x6c, 0x14, 0x93, 0x67, + 0xcd, 0x5b, 0x56, 0x93, 0x49, 0xf1, 0x9a, 0x56, 0xf2, 0x90, 0xa4, 0xe6, 0x4e, 0x64, 0x72, 0xe8, + 0xd1, 0x34, 0x26, 0x88, 0x9e, 0x33, 0x87, 0x09, 0xa2, 0xef, 0x10, 0x13, 0x13, 0x44, 0xdf, 0x2e, + 0x73, 0x26, 0x88, 0x7e, 0xd2, 0x40, 0x26, 0x88, 0x50, 0x22, 0x06, 0xc1, 0x09, 0x22, 0x69, 0xc7, + 0xdf, 0xd3, 0x23, 0x70, 0xe7, 0x37, 0x41, 0x36, 0x75, 0x82, 0x34, 0x35, 0x71, 0x24, 0x2e, 0x4d, + 0x64, 0xfd, 0xef, 0x9f, 0xdb, 0xb5, 0x43, 0xbb, 0x76, 0x1a, 0xd4, 0x6e, 0xde, 0xfe, 0xb7, 0xf1, + 0xe9, 0x3f, 0xff, 0x79, 0xf1, 0x95, 0x2f, 0xfc, 0x8f, 0x45, 0x46, 0x97, 0xc6, 0xe8, 0xec, 0xf8, + 0x60, 0xc7, 0xc7, 0x06, 0x3b, 0x3e, 0x04, 0x4c, 0x85, 0xad, 0x68, 0x89, 0xa0, 0x98, 0x40, 0x57, + 0xdc, 0x09, 0xcf, 0xae, 0x0f, 0xb9, 0x81, 0x2c, 0x4b, 0x05, 0x71, 0x03, 0x56, 0x96, 0x0a, 0x12, + 0xb5, 0xf0, 0x02, 0x51, 0x76, 0x7d, 0x7c, 0x35, 0xdc, 0xfc, 0xbc, 0xeb, 0xe3, 0xf1, 0x18, 0xaf, + 0x2a, 0xd6, 0xfd, 0x52, 0xa1, 0x0d, 0xbb, 0x1c, 0x72, 0x33, 0x2b, 0x5d, 0xdd, 0x2a, 0x1b, 0xe1, + 0x64, 0x4c, 0xb8, 0x11, 0x35, 0xd1, 0x46, 0xd4, 0x04, 0x1b, 0x19, 0x13, 0x6b, 0xca, 0xda, 0x2a, + 0x42, 0xd2, 0x07, 0xf8, 0x69, 0x03, 0xab, 0xd4, 0xde, 0xba, 0xbc, 0xc6, 0xcb, 0x94, 0x73, 0x5e, + 0x16, 0x7f, 0x5a, 0x15, 0xfb, 0x37, 0x16, 0xbc, 0xd9, 0xcb, 0xde, 0xe4, 0xb0, 0x9b, 0xbb, 0x58, + 0xf5, 0x17, 0xa7, 0xc1, 0x62, 0xfe, 0xa6, 0x82, 0x54, 0x5e, 0x96, 0xba, 0xc1, 0x54, 0x5d, 0xe0, + 0xf9, 0xb4, 0xf9, 0xf3, 0xa8, 0x98, 0x8d, 0x98, 0xff, 0xb6, 0x28, 0x60, 0x4b, 0xcc, 0xa2, 0x9e, + 0xa4, 0xb8, 0xad, 0xf0, 0x59, 0xa3, 0x60, 0x12, 0x15, 0x24, 0xb3, 0x82, 0x5b, 0xe7, 0x0b, 0xcf, + 0x7b, 0x97, 0x91, 0xdf, 0x2e, 0x31, 0x8f, 0x5d, 0x56, 0xbe, 0xba, 0xf4, 0xbc, 0x74, 0xe9, 0xf9, + 0xe7, 0x72, 0xf3, 0xcc, 0xba, 0x40, 0xa4, 0xe8, 0x56, 0x72, 0xeb, 0x11, 0x54, 0x0b, 0xdf, 0x38, + 0x4b, 0x5f, 0xf1, 0x68, 0x42, 0xc1, 0xba, 0x2d, 0x67, 0x76, 0x4a, 0x69, 0x2f, 0x40, 0xcb, 0x7c, + 0xe1, 0x29, 0xe0, 0x05, 0x67, 0xd9, 0x2f, 0x34, 0xc5, 0xbc, 0xc0, 0x14, 0xf3, 0xc2, 0x52, 0xc6, + 0x0b, 0x4a, 0xdd, 0x79, 0x9b, 0xb2, 0x66, 0x93, 0x64, 0x5e, 0xbd, 0xbc, 0xfd, 0xf6, 0xe5, 0xf9, + 0x52, 0xd6, 0x76, 0x2b, 0x77, 0x44, 0x57, 0xe9, 0xf5, 0x36, 0x12, 0xea, 0x6c, 0x04, 0xd5, 0xd7, + 0x48, 0xa9, 0xab, 0x11, 0x57, 0x4f, 0x23, 0xae, 0x8e, 0x46, 0x56, 0xfd, 0x4c, 0xb5, 0x5e, 0xbf, + 0x97, 0x3d, 0x52, 0xcb, 0x7a, 0x9c, 0xd9, 0x2e, 0xa6, 0x90, 0xf4, 0xd1, 0x24, 0xce, 0x9c, 0x64, + 0x21, 0xa9, 0xf8, 0x83, 0x4e, 0xda, 0x81, 0x27, 0xf6, 0xe0, 0x13, 0x7b, 0x00, 0xca, 0x3c, 0x08, + 0xcb, 0x3d, 0x10, 0x4b, 0x3e, 0x18, 0xc5, 0x1c, 0x90, 0x2b, 0x07, 0xa5, 0xbc, 0xc9, 0x02, 0xc2, + 0x6e, 0x71, 0x12, 0x72, 0x6c, 0x8a, 0x3b, 0x3e, 0x25, 0x1e, 0xa3, 0x82, 0x8f, 0x53, 0xa9, 0xc7, + 0xaa, 0xf8, 0xe3, 0x55, 0xfc, 0x31, 0x2b, 0xfb, 0xb8, 0x95, 0x71, 0xec, 0x0a, 0x39, 0x7e, 0xc5, + 0x1d, 0xc3, 0x8f, 0xc7, 0xf1, 0x40, 0x9e, 0x47, 0xc8, 0x0e, 0xe4, 0x81, 0x34, 0x57, 0x20, 0x73, + 0x40, 0x9b, 0xb8, 0xa3, 0x59, 0xf2, 0x11, 0x0d, 0x70, 0x54, 0x4b, 0x3f, 0xb2, 0x61, 0x8e, 0x6e, + 0x98, 0x23, 0x1c, 0xe3, 0x28, 0x97, 0x75, 0xa4, 0x0b, 0x3b, 0xda, 0xb3, 0x1f, 0xa1, 0xb8, 0xd9, + 0x41, 0x2b, 0x1e, 0x4f, 0x4e, 0x0b, 0xe7, 0xda, 0x98, 0xf7, 0x40, 0xa0, 0x6d, 0x2b, 0x2d, 0x9e, + 0x65, 0xf7, 0x76, 0xca, 0xdd, 0x97, 0x9f, 0x44, 0x5d, 0x84, 0x2d, 0xe1, 0x16, 0xb0, 0xb5, 0x9b, + 0x51, 0xc2, 0xad, 0x60, 0x6b, 0xb7, 0x21, 0x39, 0x97, 0x9c, 0x4b, 0xce, 0x25, 0xe7, 0x92, 0x73, + 0x79, 0xa6, 0x7e, 0xf9, 0x23, 0x94, 0x96, 0xca, 0xca, 0x0c, 0x13, 0x98, 0xd2, 0x5a, 0x71, 0xc6, + 0xe2, 0x52, 0x5b, 0x5f, 0x1e, 0xfd, 0x52, 0xef, 0x20, 0x90, 0x8a, 0x00, 0x08, 0x28, 0x00, 0x84, + 0x04, 0x28, 0x68, 0x00, 0x87, 0x08, 0x70, 0xa8, 0x80, 0x85, 0x0c, 0x32, 0xd1, 0x41, 0x28, 0x42, + 0x64, 0x3f, 0x5a, 0xb1, 0x29, 0xb3, 0x15, 0x8f, 0x39, 0x09, 0xa3, 0x74, 0xbf, 0x21, 0xd9, 0x61, + 0x2e, 0xce, 0xef, 0xdf, 0x04, 0x9b, 0x28, 0xf3, 0xfe, 0xb6, 0x2f, 0x3f, 0xb2, 0x0f, 0x9c, 0x2d, + 0xe9, 0xf7, 0xbb, 0x81, 0x81, 0xe5, 0x8a, 0xb9, 0xc2, 0xef, 0x7f, 0x5b, 0xb1, 0x17, 0xe0, 0xe6, + 0x2b, 0x90, 0xe3, 0xe8, 0xf3, 0x2d, 0x16, 0x7c, 0xe4, 0x16, 0xcb, 0x79, 0x8b, 0xed, 0xfc, 0xd6, + 0x68, 0xec, 0x1f, 0x34, 0x1a, 0xdb, 0x07, 0x2f, 0x0f, 0xb6, 0x0f, 0xf7, 0xf6, 0x76, 0xf6, 0x77, + 0xf6, 0xb8, 0xeb, 0xaa, 0x85, 0xa6, 0xf2, 0xad, 0x7b, 0xfb, 0x0b, 0x9f, 0x17, 0xa8, 0x57, 0xb7, + 0xee, 0x4c, 0x1a, 0x87, 0x7d, 0xf9, 0x69, 0xc1, 0x85, 0x9d, 0x4c, 0x0d, 0xfe, 0x88, 0x79, 0x4c, + 0x0d, 0x6e, 0x50, 0x89, 0x4c, 0x0d, 0x6e, 0x6e, 0xdb, 0x30, 0x35, 0x98, 0xb3, 0xc1, 0x4c, 0x0d, + 0x6a, 0x8d, 0xc5, 0x80, 0x52, 0x83, 0x1f, 0xc2, 0x81, 0xa9, 0x89, 0x3e, 0xc0, 0x9f, 0x1e, 0xe2, + 0x07, 0xcc, 0x0f, 0xfe, 0xe4, 0x87, 0xf9, 0x41, 0x26, 0x2f, 0xe4, 0xd5, 0xc8, 0xa9, 0xca, 0x54, + 0x30, 0x3f, 0xc8, 0x2d, 0x36, 0xdd, 0x62, 0xfb, 0x07, 0x07, 0x07, 0xbb, 0xcc, 0x09, 0x56, 0x8d, + 0x49, 0xe5, 0x5b, 0xc7, 0x9c, 0x20, 0xa2, 0x45, 0xd2, 0x2a, 0x29, 0x85, 0xdd, 0xa7, 0xbb, 0x62, + 0x9f, 0xd8, 0x5b, 0x07, 0xa2, 0xe7, 0xee, 0xd2, 0x7d, 0xfc, 0xab, 0xb3, 0xbf, 0x52, 0xc0, 0xf5, + 0xba, 0x72, 0x77, 0x84, 0xa8, 0x5e, 0x9d, 0xc9, 0xf5, 0xf4, 0x27, 0x2c, 0xb8, 0x5b, 0x67, 0x61, + 0x20, 0xfb, 0x75, 0xbe, 0xc5, 0x2c, 0xf6, 0xeb, 0xfc, 0x84, 0xd4, 0xd8, 0xaf, 0xf3, 0xe3, 0xdb, + 0x81, 0xfd, 0x3a, 0x9b, 0x46, 0x14, 0xf6, 0xeb, 0xa0, 0x53, 0xa6, 0xd8, 0x7e, 0x9d, 0xf9, 0x99, + 0x2a, 0xff, 0xe5, 0xfc, 0xc2, 0x4e, 0xd9, 0x2f, 0xe7, 0x77, 0xf8, 0x72, 0x5e, 0x1d, 0x12, 0x00, + 0xa1, 0x01, 0x0a, 0x22, 0xc0, 0xa1, 0x02, 0x1c, 0x32, 0x60, 0xa1, 0x83, 0x4c, 0x84, 0x10, 0x8a, + 0x12, 0xe2, 0x91, 0x22, 0x33, 0x30, 0x18, 0xfc, 0x5f, 0xd0, 0x37, 0x51, 0xff, 0xa1, 0x96, 0x84, + 0x83, 0x44, 0xbe, 0x37, 0x5a, 0x3a, 0xf8, 0x2f, 0xec, 0x16, 0xbe, 0xc3, 0x65, 0xa3, 0x07, 0x0c, + 0x82, 0x20, 0xa1, 0x08, 0x20, 0x92, 0xa0, 0xa1, 0x09, 0x2c, 0xa2, 0xc0, 0xa2, 0x0a, 0x26, 0xb2, + 0xc8, 0x46, 0x17, 0xe1, 0x08, 0x03, 0x83, 0x32, 0xcf, 0x23, 0x0d, 0x8e, 0x13, 0x7b, 0x96, 0x6c, + 0x50, 0x1c, 0x19, 0x06, 0xe0, 0xc0, 0x81, 0x0e, 0x22, 0xf0, 0x00, 0x83, 0x0f, 0x2a, 0x00, 0xc1, + 0x83, 0x10, 0x3c, 0x10, 0x61, 0x83, 0x11, 0x06, 0x20, 0x81, 0x80, 0x12, 0x1c, 0x30, 0x65, 0x06, + 0xcb, 0x9c, 0x03, 0xfb, 0xcd, 0xe7, 0x8c, 0xc4, 0x39, 0xb1, 0xca, 0xc0, 0x09, 0x16, 0xa0, 0x90, + 0x41, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, + 0xbc, 0xc0, 0x00, 0x0c, 0x16, 0xc4, 0x32, 0xc3, 0x6f, 0x86, 0xc1, 0x6d, 0x82, 0xeb, 0x2c, 0x97, + 0xe7, 0xd5, 0x7c, 0x19, 0xa0, 0xfe, 0x05, 0xab, 0x23, 0x4c, 0x0d, 0xa8, 0x69, 0x00, 0x36, 0x45, + 0xe0, 0xa6, 0x05, 0xe0, 0xd4, 0x81, 0x9c, 0x3a, 0xa0, 0xd3, 0x05, 0x76, 0x98, 0x80, 0x07, 0x0a, + 0x7a, 0x99, 0x74, 0xc4, 0x8f, 0x44, 0xf9, 0xe6, 0x13, 0xc3, 0x44, 0x93, 0x3b, 0x13, 0xcf, 0x3b, + 0x1f, 0x81, 0x4f, 0x8d, 0x65, 0x96, 0xab, 0x01, 0xbc, 0x06, 0x27, 0x9a, 0xdc, 0x4d, 0x45, 0xc5, + 0xad, 0x5c, 0xe4, 0x53, 0x6f, 0x85, 0x49, 0x6a, 0xa7, 0x69, 0x8c, 0xbd, 0x9d, 0xcf, 0xc3, 0xc8, + 0x19, 0x9a, 0xe9, 0x69, 0x36, 0x0d, 0xe7, 0xa2, 0xc9, 0x70, 0x08, 0xbc, 0x11, 0xce, 0x83, 0x8f, + 0x7a, 0x16, 0x73, 0x11, 0x0f, 0x4c, 0x6c, 0x06, 0xc7, 0x0f, 0x8b, 0xa5, 0xfc, 0x42, 0xba, 0xa0, + 0x3b, 0x7a, 0x5e, 0x2a, 0xf7, 0x8b, 0x61, 0x2b, 0xe0, 0xd9, 0x98, 0xf9, 0x32, 0x98, 0x8d, 0x29, + 0xc3, 0x7c, 0x66, 0x63, 0x04, 0x6d, 0x04, 0x66, 0x63, 0xe4, 0x6c, 0x6b, 0x66, 0x63, 0x84, 0x2f, + 0x88, 0xd9, 0x18, 0x32, 0xd3, 0x0f, 0x4a, 0x47, 0x4f, 0x36, 0x66, 0x12, 0x46, 0xe9, 0xcb, 0x5d, + 0x05, 0x89, 0x98, 0x03, 0xe0, 0x25, 0x60, 0xcc, 0xbe, 0xfd, 0xda, 0x07, 0xfb, 0xc0, 0xde, 0x42, + 0x9b, 0x9d, 0xab, 0x3c, 0xb0, 0x58, 0x59, 0x0e, 0xd8, 0xdd, 0x5c, 0x5f, 0x5d, 0x0f, 0xe0, 0xc4, + 0x50, 0xa5, 0xc7, 0xf9, 0xe7, 0x2e, 0x20, 0xf8, 0x48, 0x17, 0x20, 0xdc, 0x05, 0x34, 0x76, 0x0f, + 0x1b, 0x87, 0xfb, 0x07, 0xbb, 0x87, 0x7b, 0xf4, 0x05, 0x0c, 0x48, 0x68, 0xfd, 0xd3, 0xcf, 0x5b, + 0xa6, 0xfb, 0x79, 0xd6, 0xad, 0x71, 0x33, 0x1f, 0x4c, 0x78, 0xfb, 0x2e, 0xc5, 0xcf, 0xf7, 0x2f, + 0xd6, 0xc1, 0x84, 0x7f, 0x19, 0xe6, 0x33, 0xe1, 0x2f, 0x68, 0x27, 0x30, 0xe1, 0x2f, 0x67, 0x5b, + 0x33, 0xe1, 0x2f, 0x7c, 0x41, 0x4c, 0xf8, 0x93, 0x9a, 0x7e, 0x50, 0x3a, 0xba, 0x12, 0xfe, 0xbf, + 0x29, 0xc8, 0xf7, 0xef, 0x31, 0xdf, 0x5f, 0xf2, 0x87, 0xf9, 0x7e, 0xc6, 0x15, 0x39, 0x2e, 0x87, + 0xf9, 0x7e, 0x9e, 0xe6, 0x45, 0xb8, 0x00, 0xe6, 0xfb, 0xc5, 0xbb, 0x80, 0xdd, 0x3d, 0x26, 0xfa, + 0x19, 0x88, 0xd0, 0xfa, 0xcf, 0x3e, 0x4c, 0xf4, 0xd3, 0x62, 0xf8, 0x23, 0x59, 0xfa, 0x35, 0x88, + 0x5f, 0xb5, 0x1f, 0xff, 0x9a, 0xc4, 0xf9, 0xe5, 0x76, 0x8b, 0x5f, 0xeb, 0x9f, 0x0f, 0xa1, 0xff, + 0xfc, 0x5f, 0x25, 0x5e, 0xa9, 0xa8, 0x67, 0xf7, 0x02, 0xed, 0x5c, 0xd0, 0xbe, 0x21, 0xe8, 0x7e, + 0x21, 0x50, 0xb6, 0xe7, 0x58, 0xbd, 0x32, 0x85, 0xce, 0xb1, 0x7a, 0xe5, 0x6d, 0x57, 0x8e, 0xd5, + 0x93, 0x86, 0x9a, 0x1c, 0xab, 0x47, 0xa6, 0xf9, 0x7b, 0x89, 0xc0, 0xbe, 0xe6, 0xcb, 0x3c, 0xfe, + 0xd0, 0x04, 0x37, 0xb1, 0xb9, 0x41, 0xf4, 0xf8, 0xcb, 0x89, 0x2a, 0x80, 0x9d, 0x3c, 0x56, 0x67, + 0x11, 0x00, 0xbe, 0x78, 0x31, 0x0f, 0x92, 0xea, 0x73, 0xc4, 0x64, 0xa8, 0x54, 0x61, 0x4b, 0x51, + 0x86, 0xba, 0xbf, 0x36, 0x0f, 0x68, 0x41, 0x11, 0xe6, 0x0c, 0x1d, 0xe8, 0x99, 0x39, 0xd0, 0x33, + 0x72, 0x30, 0x67, 0xe2, 0xa0, 0x38, 0x10, 0xd0, 0x1c, 0x6e, 0xa5, 0x72, 0xb7, 0x48, 0x57, 0x15, + 0x25, 0x69, 0x3c, 0xe9, 0xa7, 0xd1, 0x82, 0x68, 0xdb, 0xf3, 0x07, 0xed, 0x2e, 0x16, 0xed, 0x77, + 0x16, 0x4f, 0xd7, 0x77, 0x93, 0x30, 0xf1, 0x5b, 0xd3, 0xc7, 0xea, 0xb7, 0x92, 0xb1, 0xef, 0x0d, + 0xef, 0xfd, 0xf3, 0xd4, 0x4d, 0x22, 0xbf, 0xbd, 0x78, 0x64, 0x7e, 0xf6, 0x3d, 0xbd, 0xd9, 0x03, + 0xf2, 0xed, 0xe5, 0x13, 0xe9, 0x85, 0x03, 0x0c, 0x36, 0xfb, 0xc4, 0x1b, 0x08, 0x35, 0xbb, 0x50, + 0x34, 0xd7, 0xa9, 0xdc, 0x65, 0xca, 0xf6, 0x09, 0x72, 0x77, 0x9a, 0xe0, 0x5d, 0x66, 0x05, 0x83, + 0xbb, 0x30, 0xaa, 0xdd, 0xc6, 0xa3, 0xc9, 0x18, 0xe9, 0x2a, 0xf0, 0x47, 0xa3, 0x79, 0x0f, 0xf8, + 0x26, 0xcc, 0xe4, 0x3d, 0xe0, 0x39, 0xca, 0x95, 0xf7, 0x80, 0xe7, 0x99, 0x9c, 0xe1, 0x3d, 0xe0, + 0xc5, 0x22, 0x19, 0xef, 0x01, 0xaf, 0x1a, 0x85, 0xc3, 0xdc, 0x03, 0x8e, 0x75, 0x9d, 0x25, 0xe4, + 0x35, 0x96, 0xbc, 0xf7, 0x9b, 0x80, 0xa3, 0x00, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, + 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x18, 0x29, 0xeb, 0xb3, + 0xf6, 0xb4, 0xc1, 0xc9, 0x02, 0xad, 0x83, 0x28, 0x16, 0x2b, 0x13, 0xaa, 0x14, 0xc3, 0x15, 0x3a, + 0x64, 0xa9, 0x81, 0x2d, 0x35, 0xd0, 0xa5, 0x03, 0xbe, 0xb0, 0x20, 0x0c, 0x0c, 0xc6, 0x32, 0x89, + 0xe0, 0x17, 0x2b, 0xc3, 0x5e, 0x3e, 0x00, 0x7c, 0xe9, 0x00, 0xf8, 0xf0, 0x21, 0xec, 0x1b, 0x13, + 0x15, 0x4c, 0x39, 0x54, 0x31, 0x61, 0x44, 0xcb, 0x70, 0x21, 0x4d, 0xf3, 0x44, 0x3e, 0x61, 0xdf, + 0x1f, 0xca, 0xad, 0x2d, 0x6c, 0x6b, 0x6b, 0xb9, 0x24, 0x40, 0xd5, 0x1e, 0xe7, 0xcc, 0x9a, 0x42, + 0x3e, 0x6f, 0x19, 0x78, 0xe5, 0xb8, 0x21, 0xa1, 0x2f, 0xf0, 0x56, 0x71, 0x71, 0xb7, 0x8a, 0x0b, + 0xbb, 0xb1, 0x2f, 0xea, 0x66, 0xb7, 0x68, 0x25, 0x9d, 0x20, 0x9b, 0xbd, 0xc4, 0x74, 0x2e, 0x64, + 0x2f, 0x07, 0x91, 0xe6, 0x72, 0xb1, 0xa1, 0x49, 0xb5, 0x9b, 0x60, 0x43, 0x93, 0x1c, 0xb7, 0x80, + 0x50, 0x8e, 0x9f, 0x63, 0xab, 0xe7, 0x5d, 0x18, 0x9d, 0xcd, 0x1e, 0x03, 0x9b, 0xba, 0xb4, 0x79, + 0x1a, 0x2b, 0xb8, 0x0f, 0xc2, 0x61, 0x70, 0x3d, 0x34, 0xb5, 0xeb, 0x20, 0x1a, 0x7c, 0x08, 0x07, + 0xb3, 0xed, 0x8b, 0xd2, 0xdc, 0xf5, 0x8c, 0xf1, 0x6c, 0xf2, 0xda, 0x84, 0x99, 0x6c, 0xf2, 0xca, + 0x51, 0xb6, 0x6c, 0xf2, 0xca, 0x6f, 0x7b, 0xb1, 0xc9, 0xab, 0x68, 0x4c, 0x65, 0x93, 0x57, 0xd5, + 0x22, 0x13, 0x36, 0x79, 0xe5, 0x7b, 0x3e, 0xb0, 0xc9, 0x8b, 0x60, 0x83, 0x08, 0x38, 0xc0, 0xa0, + 0x83, 0x0a, 0x3c, 0xf0, 0xe0, 0x03, 0x0f, 0x40, 0xd8, 0x20, 0x84, 0x01, 0x44, 0x20, 0x60, 0x04, + 0x07, 0x48, 0x99, 0xc1, 0x38, 0xb9, 0x9f, 0xb5, 0x67, 0x0d, 0x4a, 0x06, 0x68, 0x1d, 0x40, 0xb1, + 0xc1, 0x8b, 0x40, 0xa5, 0x18, 0xac, 0xd0, 0x01, 0x4b, 0x0d, 0x68, 0xa9, 0x01, 0x2e, 0x1d, 0xe0, + 0x85, 0x05, 0x60, 0x60, 0x20, 0x96, 0x49, 0x04, 0xbf, 0xc1, 0x2b, 0x34, 0xc6, 0xdc, 0x0c, 0x47, + 0x01, 0x76, 0x97, 0xd7, 0x21, 0xa0, 0xe9, 0x2d, 0x13, 0xdd, 0xce, 0xc0, 0x98, 0x6d, 0x5e, 0x05, + 0x3f, 0x79, 0xb6, 0x79, 0xc9, 0x59, 0x46, 0xd6, 0x0b, 0xc2, 0x16, 0x10, 0x1e, 0xc2, 0x1b, 0xd8, + 0xda, 0x6c, 0xf3, 0xe2, 0xd6, 0xe6, 0xd6, 0xd6, 0x11, 0x0d, 0xe0, 0x5a, 0xfd, 0x96, 0x8d, 0x22, + 0x55, 0x3f, 0x9a, 0xac, 0x14, 0x31, 0x36, 0xcc, 0xe2, 0xc2, 0x99, 0xf5, 0xcc, 0x78, 0x17, 0x61, + 0x36, 0x33, 0xde, 0x25, 0xea, 0x9c, 0x19, 0xef, 0xf2, 0xb6, 0x2b, 0x33, 0xde, 0xc2, 0x16, 0xc2, + 0x8c, 0x37, 0x89, 0xe6, 0x2b, 0x12, 0x51, 0x90, 0xf1, 0x1e, 0x98, 0x28, 0x0d, 0xd3, 0x07, 0xf0, + 0x3b, 0x98, 0x01, 0x67, 0xa6, 0x58, 0xee, 0xe2, 0xd1, 0x1f, 0x07, 0x09, 0xf0, 0xb9, 0xb5, 0x14, + 0x92, 0xdb, 0x73, 0x7b, 0x7e, 0xef, 0xf2, 0xd8, 0x6b, 0x5d, 0xf9, 0xde, 0x1f, 0x1d, 0x07, 0xf5, + 0xf8, 0x9a, 0xe5, 0x69, 0x12, 0xd8, 0x17, 0x11, 0x5b, 0xd0, 0x2f, 0x23, 0x3e, 0x53, 0x54, 0xf7, + 0xe2, 0xd2, 0x73, 0xba, 0xfe, 0x89, 0xdd, 0xb1, 0x8f, 0xdd, 0x96, 0xeb, 0xfd, 0xb1, 0x90, 0x57, + 0x0f, 0x59, 0x5f, 0x9a, 0x74, 0xa6, 0x43, 0x6f, 0xdf, 0xa2, 0xbb, 0xa7, 0xff, 0x66, 0xc1, 0xaf, + 0xf6, 0xd3, 0xaf, 0x94, 0x1c, 0x80, 0xe4, 0xec, 0xd6, 0xd9, 0x45, 0xd7, 0xf5, 0x5e, 0x9d, 0x2b, + 0x50, 0x1c, 0xf4, 0x0a, 0xde, 0xf2, 0xe5, 0x25, 0x77, 0x38, 0x0f, 0x13, 0x4a, 0x8b, 0x87, 0x06, + 0x95, 0x55, 0x05, 0x65, 0xb9, 0x3d, 0xbf, 0xeb, 0xd8, 0x27, 0xaf, 0x18, 0x77, 0x51, 0x6d, 0xe5, + 0xa9, 0xce, 0x73, 0xfc, 0xa6, 0x73, 0x6a, 0x5f, 0xb6, 0x3c, 0xff, 0xdc, 0xf1, 0xba, 0xee, 0x09, + 0x23, 0x2f, 0x8a, 0x2e, 0x6f, 0xd1, 0x5d, 0xb6, 0x4f, 0x2e, 0xda, 0x3d, 0xaf, 0x6b, 0xbb, 0x6d, + 0xa7, 0xe9, 0xb7, 0x7a, 0x1d, 0x8a, 0x8e, 0xa2, 0xcb, 0x5b, 0x74, 0x2d, 0xb7, 0xfd, 0xda, 0x6f, + 0x3a, 0x2d, 0x9b, 0xc9, 0x25, 0xaa, 0xad, 0x40, 0xb5, 0xf9, 0x57, 0x76, 0xd7, 0xb5, 0x3d, 0xf7, + 0xa2, 0x4d, 0xdd, 0x51, 0x77, 0x79, 0xeb, 0xce, 0xed, 0x5c, 0xed, 0xfb, 0x6d, 0xc7, 0x3d, 0x7b, + 0x75, 0x7c, 0xd1, 0xf5, 0xed, 0x66, 0xb3, 0xeb, 0xf4, 0x7a, 0x14, 0x1e, 0x85, 0x97, 0xb7, 0xf0, + 0xec, 0xe6, 0xb9, 0xdb, 0xf6, 0xcf, 0xba, 0x17, 0x97, 0xa4, 0x39, 0xca, 0xad, 0x00, 0xb9, 0xfd, + 0xee, 0xf7, 0xdc, 0x26, 0xa5, 0x46, 0xa9, 0xe5, 0x2d, 0xb5, 0x73, 0xfb, 0xcd, 0x1c, 0xe7, 0x8e, + 0xed, 0x76, 0xf3, 0x5f, 0x6e, 0xd3, 0x7b, 0x45, 0xd5, 0x51, 0x75, 0x05, 0x80, 0x5c, 0x83, 0x20, + 0x47, 0xe1, 0x95, 0x13, 0x41, 0xb8, 0x6d, 0xcf, 0xe9, 0x9e, 0xda, 0x27, 0x0e, 0x95, 0x47, 0xe5, + 0x15, 0x9a, 0x33, 0x69, 0x5d, 0x50, 0x6c, 0x14, 0x5b, 0xfe, 0x62, 0xcb, 0x60, 0xce, 0xcf, 0xde, + 0x45, 0x78, 0x14, 0x1e, 0x85, 0x97, 0xbb, 0xf0, 0x9c, 0x37, 0x9e, 0xd3, 0x6e, 0x3a, 0x4d, 0x66, + 0x4c, 0xa8, 0xbb, 0xc2, 0x03, 0x0a, 0x72, 0x1d, 0x95, 0x57, 0xb8, 0xf2, 0x2e, 0x3d, 0xb7, 0xe5, + 0xfe, 0xdb, 0x69, 0x32, 0x81, 0x42, 0xd5, 0x15, 0xa7, 0x3a, 0xbb, 0xf9, 0xbb, 0xdf, 0xb2, 0xdb, + 0xcc, 0x12, 0x53, 0x6e, 0x45, 0xc8, 0x6d, 0xca, 0x72, 0x59, 0xa6, 0x98, 0x65, 0x26, 0x54, 0x5d, + 0x71, 0x29, 0x93, 0x4e, 0xf7, 0xc2, 0x73, 0x4e, 0x3c, 0xf7, 0xa2, 0x3d, 0x2f, 0x1e, 0xa6, 0xee, + 0xa8, 0xbb, 0xbc, 0x0f, 0xd7, 0x2b, 0xdb, 0x6d, 0xd9, 0xc7, 0x2d, 0x87, 0x4c, 0x47, 0xd9, 0x15, + 0xec, 0xee, 0x6c, 0xcf, 0xeb, 0xba, 0xc7, 0x97, 0x9e, 0xc3, 0xe0, 0x95, 0x92, 0xcb, 0x3f, 0x78, + 0x6d, 0x77, 0x9d, 0x9e, 0xd3, 0xbd, 0x62, 0xf8, 0x4a, 0xdd, 0x15, 0xa9, 0xbb, 0xae, 0xd3, 0x73, + 0x9b, 0x97, 0x76, 0x8b, 0xaa, 0xa3, 0xea, 0x0a, 0x8c, 0x62, 0xed, 0x37, 0xfe, 0xdc, 0xdf, 0x11, + 0xee, 0xa8, 0xbd, 0x12, 0xe0, 0x4e, 0x45, 0xb2, 0x8e, 0x83, 0x38, 0xb8, 0xc5, 0xab, 0xb4, 0xb5, + 0xab, 0xd0, 0x5d, 0x4c, 0x71, 0xc9, 0x8b, 0xcc, 0xd4, 0x74, 0x11, 0x53, 0x5c, 0x22, 0x61, 0x04, + 0xfc, 0x35, 0x0e, 0x55, 0x25, 0x57, 0x55, 0x1a, 0xba, 0x82, 0xa9, 0x2f, 0x69, 0xfa, 0x52, 0xd6, + 0xfd, 0x4b, 0x81, 0x49, 0x13, 0x98, 0x8a, 0x9a, 0x55, 0xca, 0x4a, 0x9e, 0xac, 0xc0, 0xbb, 0x79, + 0x29, 0x29, 0x69, 0x92, 0xd2, 0xd4, 0xb5, 0x4b, 0x75, 0x09, 0x04, 0xad, 0x06, 0x41, 0x8b, 0x02, + 0xcb, 0x97, 0xe4, 0x15, 0x75, 0x6b, 0x50, 0x61, 0x22, 0x73, 0x11, 0xd8, 0xdd, 0xb6, 0x14, 0x95, + 0x34, 0x51, 0x29, 0xeb, 0xaa, 0xa5, 0xc0, 0xa4, 0x09, 0x4c, 0x57, 0xf7, 0x2c, 0xf5, 0x25, 0x12, + 0xec, 0xc9, 0x5d, 0x54, 0x58, 0x6e, 0x0a, 0xd3, 0xd4, 0x0d, 0x4b, 0x75, 0x49, 0x53, 0x97, 0x8a, + 0xae, 0x57, 0xca, 0x4a, 0x9a, 0xac, 0x34, 0x75, 0xb7, 0x52, 0x5d, 0x22, 0x53, 0x11, 0x6a, 0xba, + 0x58, 0xa9, 0x2f, 0x71, 0x87, 0xa2, 0xa6, 0x6e, 0x55, 0xca, 0x4b, 0xa4, 0xfb, 0xd2, 0xd0, 0x95, + 0x4a, 0x69, 0x89, 0x0b, 0x16, 0x55, 0x75, 0x9f, 0x52, 0x5f, 0xd2, 0xf4, 0xa5, 0xa9, 0xcb, 0x94, + 0xea, 0x12, 0x17, 0x35, 0xaa, 0xeb, 0x26, 0xa5, 0xc6, 0x44, 0xc2, 0x17, 0x93, 0x5d, 0x94, 0xd4, + 0x4f, 0x48, 0xaa, 0xc3, 0x9b, 0x78, 0xa9, 0xb6, 0xb2, 0x55, 0x37, 0x7b, 0xf3, 0xb8, 0xb8, 0x6e, + 0x9c, 0x23, 0x2b, 0xa9, 0xb8, 0xfc, 0x15, 0xe7, 0xd9, 0x67, 0xfb, 0x0d, 0x0a, 0x8d, 0x42, 0x2b, + 0xc0, 0xb5, 0xed, 0xd3, 0xb5, 0x51, 0x71, 0x85, 0xba, 0x36, 0xca, 0x8c, 0x32, 0xcb, 0x5b, 0x66, + 0x9d, 0xae, 0x73, 0xea, 0xbe, 0xe1, 0x88, 0x71, 0xaa, 0xad, 0x40, 0xb5, 0x9d, 0xb6, 0xec, 0xb3, + 0x1e, 0xa7, 0x64, 0x95, 0xfb, 0xe1, 0x94, 0x2c, 0xee, 0x6f, 0x46, 0xfe, 0x54, 0x16, 0x23, 0x7c, + 0x0a, 0xaa, 0x5a, 0xae, 0x6a, 0x9f, 0xae, 0x8a, 0xca, 0x62, 0xc4, 0x4e, 0x39, 0x31, 0x32, 0xa7, + 0xaa, 0xaa, 0xa9, 0x2a, 0xf0, 0x08, 0x1c, 0x33, 0xf2, 0xc6, 0x8b, 0xb8, 0xb1, 0x9e, 0x33, 0x8e, + 0xb5, 0x18, 0x96, 0x82, 0x78, 0x6f, 0xcb, 0x8e, 0xa2, 0x51, 0x1a, 0xa4, 0xe1, 0x28, 0xb2, 0x8e, + 0x80, 0xfc, 0xb6, 0x95, 0xf4, 0xdf, 0x99, 0xbb, 0x60, 0x1c, 0xa4, 0xef, 0xa6, 0x9e, 0xba, 0x3e, + 0x1a, 0x9b, 0xa8, 0x3f, 0x8a, 0x6e, 0xc2, 0xdb, 0x5a, 0x64, 0xd2, 0x0f, 0xa3, 0xf8, 0x7d, 0x2d, + 0x8c, 0x92, 0x34, 0x88, 0xfa, 0xa6, 0xfe, 0xe5, 0x17, 0x92, 0x95, 0xaf, 0xd4, 0xc7, 0xf1, 0x28, + 0x1d, 0xf5, 0x47, 0xc3, 0x24, 0xfb, 0x5d, 0x3d, 0x4c, 0xc2, 0xa4, 0x3e, 0x34, 0xf7, 0x66, 0xb8, + 0xf8, 0xa5, 0x3e, 0x0c, 0xa3, 0xf7, 0xb5, 0x24, 0x0d, 0x52, 0x53, 0x1b, 0x04, 0x69, 0x70, 0x1d, + 0x24, 0xa6, 0x3e, 0x4c, 0xc6, 0xf5, 0x74, 0x78, 0x9f, 0x4c, 0xff, 0x51, 0xbf, 0x4b, 0x6b, 0x61, + 0x12, 0xd5, 0x23, 0x13, 0xde, 0xbe, 0xbb, 0x1e, 0xc5, 0x49, 0xf6, 0xbb, 0xfa, 0xe3, 0x5f, 0x9d, + 0xfd, 0x95, 0xc9, 0xe4, 0x7a, 0xf6, 0x8d, 0xf3, 0x5f, 0xeb, 0xc1, 0x7d, 0x10, 0x0e, 0x83, 0xeb, + 0xa1, 0xa9, 0x5d, 0x07, 0xd1, 0xe0, 0x43, 0x38, 0x48, 0xdf, 0xd5, 0x67, 0x7f, 0x17, 0xc6, 0x41, + 0x23, 0x7f, 0x53, 0xca, 0xb6, 0x50, 0xb8, 0xbb, 0x40, 0x73, 0x13, 0x55, 0x70, 0x0f, 0x00, 0xb5, + 0x89, 0x56, 0x92, 0xc6, 0x93, 0x7e, 0x1a, 0x2d, 0x78, 0xba, 0x3d, 0x7f, 0xae, 0xee, 0x62, 0x8d, + 0x7e, 0x67, 0xf1, 0x30, 0x7d, 0x37, 0x09, 0x13, 0xbf, 0x35, 0x7d, 0x8a, 0x7e, 0x2b, 0x19, 0xfb, + 0xde, 0xf0, 0xde, 0x3f, 0x4f, 0xdd, 0x24, 0xf2, 0xdb, 0x8b, 0x27, 0xe4, 0x67, 0xdf, 0xd3, 0x9b, + 0x3d, 0x0f, 0xdf, 0x5e, 0x3e, 0x8f, 0xe3, 0xec, 0x71, 0xfc, 0x42, 0xef, 0xa3, 0xcc, 0xf3, 0x58, + 0x99, 0xd6, 0x6b, 0xfd, 0x51, 0x94, 0xa4, 0x71, 0x10, 0x46, 0x69, 0x22, 0xde, 0x01, 0x65, 0xf1, + 0xe3, 0xf3, 0xe6, 0x0b, 0xf7, 0xf4, 0xaf, 0xc3, 0x68, 0x60, 0x1d, 0x6d, 0xed, 0x08, 0x37, 0xf3, + 0x64, 0xe6, 0xcd, 0xad, 0xa3, 0xad, 0x6d, 0xe1, 0x86, 0x76, 0x62, 0x73, 0x13, 0x7e, 0xc4, 0x38, + 0x35, 0x97, 0xc2, 0x1d, 0xf5, 0x6b, 0xd3, 0xf3, 0x0d, 0xe1, 0x84, 0xe9, 0x8d, 0x26, 0x71, 0xdf, + 0xc0, 0xc4, 0x2e, 0xd6, 0x6b, 0xf3, 0xf0, 0x61, 0x14, 0x4f, 0x77, 0x98, 0x35, 0x9e, 0x2b, 0x03, + 0x24, 0x50, 0x7c, 0x15, 0x24, 0x76, 0x7c, 0x3b, 0xb9, 0x33, 0x51, 0x6a, 0x1d, 0x6d, 0xa5, 0xf1, + 0xc4, 0xa0, 0x44, 0xb8, 0x8f, 0x56, 0x67, 0xc2, 0x66, 0xb4, 0xa2, 0x3a, 0x5a, 0x69, 0x86, 0x31, + 0x86, 0xc3, 0x7d, 0x8e, 0x10, 0x70, 0x7c, 0xd9, 0xdf, 0x71, 0x0e, 0x8a, 0x5b, 0xc3, 0xc0, 0x1d, + 0x38, 0xec, 0x41, 0xc4, 0x1f, 0x60, 0x0c, 0x42, 0xc5, 0x21, 0x78, 0x2c, 0x82, 0xc7, 0x23, 0x6c, + 0x4c, 0xc2, 0xc0, 0x25, 0x10, 0x6c, 0x82, 0xc3, 0xa7, 0xcc, 0x60, 0xa4, 0xec, 0xd0, 0xda, 0xd3, + 0x06, 0x27, 0x47, 0x04, 0x0e, 0x51, 0xb0, 0x30, 0x85, 0x0c, 0x55, 0x0a, 0xe0, 0x0a, 0x1d, 0xb2, + 0xd4, 0xc0, 0x96, 0x1a, 0xe8, 0xd2, 0x01, 0x5f, 0x58, 0x10, 0x06, 0x06, 0x63, 0xb0, 0x50, 0xf6, + 0x0c, 0x9c, 0xe1, 0x7a, 0xcc, 0x55, 0x46, 0x43, 0x75, 0x99, 0x98, 0xa8, 0x06, 0x8f, 0x6c, 0x1a, + 0xd0, 0x4d, 0x11, 0xc2, 0x69, 0x41, 0x39, 0x75, 0x48, 0xa7, 0x0e, 0xed, 0x74, 0x21, 0x1e, 0x26, + 0xea, 0x81, 0x22, 0x1f, 0x3c, 0xfa, 0x3d, 0x83, 0x80, 0xb5, 0x70, 0x80, 0xef, 0x6c, 0x57, 0x69, + 0x70, 0xba, 0x2c, 0x70, 0xff, 0xb4, 0x00, 0xc3, 0x6d, 0xf0, 0x65, 0xa0, 0x03, 0xa2, 0x26, 0x50, + 0x54, 0x08, 0x8c, 0xda, 0xc0, 0x51, 0x2d, 0x40, 0xaa, 0x05, 0x49, 0x9d, 0x40, 0x89, 0x0d, 0x96, + 0xe0, 0x80, 0x99, 0x49, 0xca, 0x7b, 0x18, 0x1b, 0x5d, 0x27, 0xce, 0xd0, 0x04, 0x37, 0xb1, 0xb9, + 0xd1, 0x70, 0xe2, 0x2c, 0x33, 0x77, 0x07, 0x0a, 0xd6, 0xd2, 0x59, 0x34, 0x66, 0xbd, 0x78, 0x31, + 0x6f, 0x72, 0xac, 0x7f, 0x8e, 0xd2, 0xbf, 0xd0, 0x85, 0xd1, 0x7d, 0x7d, 0x9f, 0xa2, 0xe6, 0xbd, + 0xb2, 0x6a, 0x42, 0xcb, 0xf9, 0x72, 0x74, 0x84, 0x94, 0x3b, 0x0c, 0x29, 0x19, 0x52, 0x32, 0xa4, + 0x64, 0x48, 0xc9, 0x90, 0x92, 0x21, 0x25, 0x79, 0xac, 0x5a, 0x21, 0x25, 0xfa, 0xbb, 0x8b, 0x6c, + 0x21, 0x8f, 0x73, 0x17, 0x8e, 0xb4, 0x4d, 0x1a, 0x47, 0x1a, 0x29, 0xf1, 0x3d, 0xe0, 0xb9, 0xad, + 0x64, 0x39, 0x5a, 0x00, 0x54, 0x23, 0x88, 0x2a, 0x06, 0x52, 0xad, 0x60, 0xaa, 0x1e, 0x50, 0xd5, + 0x83, 0xaa, 0x6e, 0x60, 0xd5, 0x01, 0xae, 0x4a, 0x00, 0x36, 0x93, 0x9a, 0x9a, 0x77, 0x23, 0x2b, + 0x27, 0x56, 0x68, 0x8c, 0xb9, 0x19, 0x8e, 0x82, 0xf4, 0xe5, 0xae, 0xa6, 0x53, 0x6b, 0x01, 0x81, + 0x87, 0x8a, 0x96, 0xd4, 0x32, 0xd1, 0xed, 0x2c, 0x00, 0xf9, 0x53, 0x95, 0x1b, 0xd7, 0x85, 0x15, + 0xb3, 0x9f, 0xd4, 0x79, 0x18, 0xa9, 0xe3, 0x25, 0xa5, 0xe1, 0xd5, 0xca, 0xf2, 0x66, 0x97, 0x26, + 0x5b, 0x47, 0x5b, 0x0d, 0xa5, 0xeb, 0x3b, 0x8d, 0x83, 0x7e, 0x1a, 0x8e, 0xa2, 0x66, 0x78, 0x1b, + 0xce, 0x1a, 0xa6, 0xb7, 0xd5, 0xad, 0xf3, 0xd3, 0xaf, 0x0a, 0x5d, 0x4a, 0xf0, 0x91, 0x2e, 0x85, + 0x2e, 0x85, 0x2e, 0x85, 0xd1, 0x18, 0x57, 0xf3, 0xf8, 0x79, 0xfb, 0x0b, 0x7f, 0x1e, 0x3c, 0x72, + 0x37, 0xe3, 0xc6, 0x74, 0xf5, 0xa9, 0xac, 0x04, 0xfa, 0x9a, 0xfa, 0x55, 0x94, 0x92, 0x03, 0xdf, + 0xf5, 0x20, 0x6d, 0x28, 0xbe, 0xeb, 0xc1, 0x71, 0x13, 0x7c, 0xd7, 0x03, 0xbe, 0x40, 0xbe, 0xeb, + 0x21, 0x03, 0x16, 0x24, 0x35, 0xbd, 0xef, 0x7a, 0x26, 0x61, 0xa4, 0xf3, 0x35, 0xcf, 0x81, 0xa2, + 0x25, 0x75, 0x83, 0xe8, 0xd6, 0xf0, 0x2d, 0x8f, 0xfc, 0x1f, 0x14, 0xdf, 0xf2, 0xe0, 0x2e, 0x6f, + 0x99, 0x92, 0xdd, 0x66, 0x4a, 0x96, 0xb8, 0x21, 0xc8, 0xa5, 0xf0, 0x2d, 0x0f, 0xbc, 0x4b, 0x69, + 0xec, 0x1e, 0x36, 0x0e, 0xf7, 0x0f, 0x76, 0x0f, 0xf7, 0xe8, 0x5b, 0x18, 0x90, 0x71, 0x35, 0x9b, + 0xfc, 0xf0, 0x75, 0x0f, 0x57, 0x50, 0x79, 0x72, 0x40, 0xbd, 0xb5, 0x7b, 0xed, 0x7a, 0xb4, 0x5d, + 0xd7, 0xfb, 0xec, 0xcd, 0x9f, 0xcf, 0x7e, 0xb5, 0xfe, 0xf4, 0x7f, 0x78, 0xf2, 0x65, 0xa0, 0xbb, + 0xbf, 0xf5, 0xb9, 0x08, 0x8e, 0xb7, 0x2c, 0x34, 0x2a, 0x30, 0x0f, 0x5a, 0xde, 0x4e, 0x5b, 0xad, + 0x30, 0x49, 0xed, 0x34, 0x05, 0x9f, 0xd7, 0x79, 0x1e, 0x46, 0xce, 0xd0, 0xdc, 0x99, 0xf9, 0x7d, + 0x3a, 0xd1, 0x64, 0x38, 0x04, 0x9e, 0x0c, 0x73, 0x1e, 0x7c, 0xd4, 0xb3, 0x98, 0x8b, 0x78, 0x60, + 0x62, 0x33, 0x38, 0x7e, 0x58, 0x2c, 0x85, 0x8e, 0x8a, 0xd4, 0x45, 0xda, 0xfa, 0x59, 0xda, 0xb2, + 0xa0, 0x07, 0x5f, 0xc5, 0x93, 0x7e, 0x1a, 0x2d, 0xde, 0xef, 0xb5, 0xe7, 0x3f, 0x1d, 0x77, 0xf1, + 0xa4, 0xfc, 0xce, 0xe2, 0x47, 0xe2, 0xbb, 0x49, 0x98, 0xf8, 0xad, 0xe9, 0xcf, 0xc2, 0x6f, 0x25, + 0x63, 0xdf, 0x1b, 0xde, 0xfb, 0xe7, 0xa9, 0x9b, 0x44, 0x7e, 0x7b, 0xf1, 0x9c, 0xfd, 0xec, 0x7b, + 0x7a, 0xb3, 0xa7, 0xea, 0x1f, 0x2f, 0x9f, 0xdf, 0x49, 0xf6, 0x9c, 0xfc, 0xc7, 0xdf, 0x62, 0xa2, + 0xe9, 0x27, 0x5e, 0xaa, 0x43, 0xcf, 0xae, 0xc7, 0xa3, 0xd3, 0x93, 0xcf, 0xaf, 0x4b, 0xfc, 0x85, + 0x3b, 0xba, 0xe2, 0xbb, 0xd9, 0xba, 0x1b, 0x0d, 0xcc, 0x10, 0xb1, 0x6a, 0x3b, 0x2b, 0xcd, 0xc9, + 0x56, 0x80, 0x79, 0xf9, 0xe7, 0x36, 0x2f, 0xff, 0x2c, 0xc6, 0x70, 0x5e, 0xfe, 0x59, 0xea, 0x12, + 0x78, 0xf9, 0xa7, 0x90, 0x85, 0xf0, 0xf2, 0x4f, 0x52, 0x4d, 0x55, 0xe2, 0x14, 0xd8, 0x82, 0x64, + 0x05, 0x83, 0xf8, 0x91, 0x07, 0xef, 0xaf, 0x0e, 0xda, 0xcf, 0x28, 0x93, 0x31, 0x53, 0xe5, 0x63, + 0x26, 0xcc, 0x99, 0xf9, 0xd0, 0x33, 0xf2, 0x41, 0x67, 0xe2, 0x33, 0x5a, 0x62, 0xb4, 0xc4, 0x68, + 0x89, 0xd1, 0x12, 0xa3, 0x25, 0x46, 0x4b, 0xf2, 0x25, 0x82, 0x3a, 0x73, 0x1e, 0x37, 0x89, 0xbd, + 0x72, 0x64, 0x81, 0x26, 0xb3, 0xbf, 0xc4, 0x34, 0xd0, 0x4e, 0x15, 0xf8, 0x29, 0x22, 0x1a, 0xa6, + 0x86, 0x28, 0x9a, 0x12, 0xa2, 0x65, 0x2a, 0x88, 0xba, 0x29, 0x20, 0xea, 0xa6, 0x7e, 0xe8, 0x9a, + 0xf2, 0xc1, 0x3a, 0xf2, 0x22, 0xa5, 0x03, 0x3f, 0xb5, 0xe3, 0xb3, 0x29, 0x1d, 0xbf, 0x21, 0x9f, + 0x17, 0x0b, 0x7c, 0x02, 0xee, 0x7f, 0x55, 0x32, 0x84, 0x43, 0x41, 0x6f, 0x98, 0xa6, 0x21, 0x1b, + 0xda, 0xa6, 0x15, 0x2a, 0x1b, 0xa2, 0xa1, 0xb1, 0xb1, 0x5d, 0xc3, 0x5c, 0x56, 0x4d, 0x43, 0x31, + 0xb4, 0xba, 0x80, 0xdd, 0xbd, 0x3d, 0x3a, 0x01, 0x06, 0x22, 0xb4, 0xfe, 0xe9, 0xe7, 0x2d, 0xbb, + 0x64, 0x68, 0x31, 0xfa, 0x91, 0xcc, 0x2e, 0x19, 0xdc, 0x2e, 0x19, 0xc0, 0x31, 0x12, 0x40, 0xb5, + 0x5e, 0xbf, 0xd0, 0xdb, 0x6c, 0x90, 0x8b, 0xe7, 0x63, 0x20, 0xc0, 0xde, 0x1c, 0x62, 0x4e, 0x7c, + 0x80, 0x9e, 0xf0, 0x00, 0x3d, 0xd1, 0x01, 0x73, 0x82, 0x03, 0x8a, 0x0f, 0x01, 0x25, 0x95, 0x0a, + 0x13, 0x8a, 0x05, 0x55, 0x2f, 0x5d, 0xdc, 0xa8, 0x05, 0x0c, 0x66, 0x93, 0x4f, 0x40, 0xb2, 0x2d, + 0x14, 0xee, 0x57, 0xd1, 0xfc, 0x69, 0x35, 0xfc, 0xa8, 0x6c, 0xd7, 0x20, 0x77, 0xc3, 0x09, 0xde, + 0x6c, 0x96, 0xf9, 0x98, 0x9a, 0x68, 0x60, 0x06, 0xb5, 0x60, 0x70, 0x17, 0x46, 0xb5, 0xdb, 0x78, + 0x34, 0x19, 0x8b, 0xdf, 0x72, 0x59, 0xbd, 0xc2, 0xb3, 0xd6, 0x0b, 0x77, 0x6d, 0x18, 0x8d, 0x38, + 0x30, 0x95, 0x9c, 0x48, 0x15, 0x9b, 0x80, 0x95, 0x99, 0x68, 0x15, 0x98, 0xb0, 0x95, 0x96, 0xb0, + 0x15, 0x95, 0x98, 0x95, 0x93, 0xc4, 0xf3, 0x9f, 0xf9, 0x91, 0xa3, 0x34, 0xba, 0x80, 0x75, 0x1a, + 0x43, 0x76, 0x18, 0x83, 0x75, 0x16, 0xc3, 0xb5, 0xa8, 0x20, 0xb6, 0xa4, 0x00, 0xb7, 0xa0, 0xa0, + 0xb6, 0x9c, 0xc0, 0xb7, 0x98, 0xc0, 0xb7, 0x94, 0x60, 0xb7, 0x90, 0xf0, 0x9d, 0x72, 0x15, 0x01, + 0x29, 0x33, 0x18, 0x32, 0x0f, 0xb4, 0xf6, 0xd8, 0x01, 0xcc, 0x0b, 0xad, 0xc3, 0x2a, 0x8e, 0xb7, + 0x24, 0x66, 0x29, 0xc6, 0x2d, 0x74, 0xec, 0x52, 0x83, 0x5f, 0x6a, 0x30, 0x4c, 0x07, 0x8e, 0x61, + 0x61, 0x19, 0x18, 0x9e, 0x65, 0x12, 0xc1, 0x1f, 0x6f, 0x09, 0x7b, 0xaf, 0x3e, 0xf0, 0xfd, 0xf9, + 0xe0, 0x2d, 0xba, 0xd8, 0xf7, 0x83, 0x29, 0x98, 0x05, 0xa2, 0xa2, 0x0f, 0x4f, 0x4b, 0x0b, 0xae, + 0xa6, 0xae, 0xbb, 0x4f, 0xd8, 0xb7, 0xe5, 0x71, 0x6b, 0x0b, 0xdb, 0xda, 0x5a, 0xee, 0x93, 0x57, + 0xb5, 0xc7, 0xd9, 0xd9, 0x59, 0xc8, 0xe7, 0x2d, 0x03, 0xaf, 0x1c, 0x37, 0x24, 0xf4, 0x75, 0xb5, + 0x2a, 0xae, 0xa9, 0x55, 0x71, 0x3d, 0x2d, 0xf6, 0xb5, 0xb4, 0x6c, 0x38, 0xad, 0xa4, 0x13, 0x64, + 0xb3, 0x98, 0x90, 0x26, 0x87, 0xe7, 0xde, 0x12, 0x22, 0x35, 0xae, 0xb3, 0x09, 0x4a, 0xb5, 0xbf, + 0x60, 0x13, 0x94, 0x40, 0xff, 0x80, 0x50, 0xb2, 0x9f, 0x5b, 0xbb, 0xa8, 0xb3, 0x78, 0x20, 0xf6, + 0xf4, 0x79, 0x9c, 0xcd, 0x1e, 0x07, 0x5b, 0xc2, 0xb4, 0xb9, 0x1e, 0x2b, 0x1c, 0xdf, 0x37, 0x6a, + 0x61, 0x94, 0x9a, 0xf8, 0x26, 0xe8, 0x9b, 0x5a, 0x30, 0x18, 0xc4, 0x26, 0x49, 0x70, 0x9a, 0xc2, + 0xd6, 0xd8, 0xcf, 0xb6, 0xb0, 0x4d, 0x98, 0xc9, 0xb6, 0xb0, 0x1c, 0x95, 0xcb, 0xb6, 0xb0, 0xfc, + 0xb6, 0x17, 0xdb, 0xc2, 0x8a, 0xa6, 0x57, 0xb6, 0x85, 0x55, 0x2d, 0x60, 0x61, 0x5b, 0x58, 0xbe, + 0xe7, 0x03, 0xdb, 0xc2, 0x08, 0x36, 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, + 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0x8c, 0x92, + 0xfc, 0x59, 0x7b, 0xd2, 0x60, 0x64, 0x7f, 0xd6, 0xc1, 0x13, 0x9b, 0xbf, 0x08, 0x53, 0x8a, 0xa1, + 0x0a, 0x1d, 0xae, 0xd4, 0x40, 0x96, 0x1a, 0xd8, 0xd2, 0x01, 0x5d, 0x58, 0xf0, 0x05, 0x06, 0x61, + 0x99, 0x44, 0xf0, 0x9b, 0xbf, 0x66, 0x6f, 0xba, 0x30, 0x09, 0xe7, 0x29, 0xe5, 0xec, 0xfc, 0x06, + 0x68, 0x7b, 0x27, 0x48, 0x53, 0x13, 0x47, 0xb0, 0x5d, 0x60, 0xd6, 0xff, 0xfe, 0xe3, 0x1f, 0x7f, + 0x6e, 0xd7, 0x0e, 0xdf, 0xfe, 0xf5, 0xe7, 0x4e, 0xed, 0xf0, 0xed, 0xfc, 0xb7, 0x3b, 0xb3, 0x5f, + 0xe6, 0xbf, 0xdf, 0xfd, 0x73, 0xbb, 0xd6, 0x58, 0xfe, 0x7e, 0xef, 0xcf, 0xed, 0xda, 0xde, 0xdb, + 0x7f, 0xfe, 0xe7, 0x3f, 0x2f, 0xfe, 0xf9, 0xdf, 0x97, 0x9f, 0xbe, 0xff, 0x1b, 0xff, 0xc7, 0x62, + 0x01, 0x38, 0x9d, 0xef, 0x13, 0xf5, 0xb1, 0x00, 0xbc, 0xfc, 0x45, 0xb0, 0x00, 0x9c, 0x7c, 0xa7, + 0xca, 0x52, 0x16, 0x80, 0xe7, 0x6b, 0xb7, 0xb6, 0x02, 0xcf, 0xe7, 0x2b, 0xc5, 0x58, 0x02, 0x5e, + 0x1d, 0x0b, 0x59, 0x02, 0x4e, 0x0f, 0xf1, 0xfd, 0x1e, 0xa2, 0xd2, 0x45, 0xe0, 0xee, 0xf8, 0xbe, + 0xe1, 0x2e, 0x9f, 0x88, 0xbd, 0x78, 0x20, 0x2c, 0x03, 0xd7, 0xe6, 0x7e, 0xe6, 0xc9, 0xa5, 0xe5, + 0x56, 0x01, 0xad, 0x02, 0x5f, 0x31, 0x9f, 0x45, 0xe0, 0x9b, 0x30, 0x93, 0x45, 0xe0, 0x39, 0x0a, + 0x97, 0x45, 0xe0, 0xf9, 0x6d, 0x2f, 0x16, 0x81, 0x17, 0xcd, 0xaf, 0x2c, 0x02, 0xaf, 0x5a, 0xc8, + 0xc2, 0x22, 0xf0, 0x7c, 0xcf, 0x07, 0x16, 0x81, 0x13, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, - 0x29, 0x33, 0x98, 0xcd, 0x25, 0xa5, 0x81, 0x13, 0x9b, 0x4b, 0x08, 0x52, 0x8a, 0x81, 0x0a, 0x1d, - 0xac, 0xd4, 0x00, 0x96, 0x1a, 0xd0, 0xd2, 0x01, 0x5c, 0x58, 0xe0, 0x05, 0x06, 0x60, 0x99, 0x44, - 0xd8, 0x5c, 0x52, 0x3a, 0xdf, 0xb0, 0xb9, 0xa4, 0xe8, 0x0f, 0x9b, 0x4b, 0x08, 0xf6, 0x1b, 0x58, - 0x06, 0x9b, 0x4b, 0x78, 0xfc, 0x6e, 0x72, 0x6b, 0xb3, 0xb9, 0x44, 0xdc, 0xd6, 0x66, 0x73, 0x09, - 0x03, 0x82, 0xaa, 0x5a, 0xcd, 0xe6, 0x92, 0x2a, 0x5b, 0xca, 0xe6, 0x92, 0x7c, 0xed, 0xae, 0x56, - 0xc9, 0xf8, 0x43, 0xf9, 0x29, 0xdb, 0x4c, 0xaa, 0x63, 0x21, 0xdb, 0x4c, 0xe8, 0x33, 0x36, 0xe1, - 0x33, 0xd8, 0x70, 0xf2, 0x74, 0xc3, 0xc9, 0x65, 0xf6, 0x80, 0xd8, 0x79, 0xa2, 0xcd, 0x41, 0x2d, - 0x7a, 0x37, 0xc2, 0x21, 0x58, 0xb3, 0x49, 0x38, 0x64, 0x7f, 0xc9, 0x46, 0xcc, 0x64, 0x7f, 0x49, - 0x8e, 0x52, 0x65, 0x7f, 0x49, 0x7e, 0xdb, 0x8b, 0xfd, 0x25, 0x45, 0x53, 0x2c, 0xfb, 0x4b, 0xaa, - 0x16, 0xb8, 0xb0, 0xbf, 0x24, 0xdf, 0xf3, 0x81, 0xfd, 0x25, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, - 0x1d, 0x54, 0xe0, 0x81, 0x07, 0x1f, 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, - 0x38, 0x40, 0xca, 0x0c, 0x1e, 0x8d, 0x07, 0xc1, 0x08, 0xb7, 0xbf, 0x64, 0x61, 0x3e, 0xfb, 0x4b, - 0x08, 0x50, 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, - 0x80, 0x0b, 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x08, 0xfb, 0x4b, 0x4a, 0xe7, 0x1b, 0xf6, 0x97, - 0x14, 0xfd, 0x61, 0x7f, 0x09, 0xc1, 0x7e, 0x03, 0xcb, 0x60, 0x7f, 0x09, 0x8f, 0xdf, 0x4d, 0x6e, - 0x6d, 0xf6, 0x97, 0x88, 0xdb, 0xda, 0xec, 0x2f, 0x61, 0x40, 0x50, 0x55, 0xab, 0xd9, 0x5f, 0x52, - 0xf9, 0x33, 0xca, 0x8a, 0xcd, 0xed, 0x38, 0x35, 0xb8, 0x79, 0xef, 0xa5, 0xfd, 0x4c, 0x7c, 0x17, - 0x61, 0x36, 0x13, 0xdf, 0x25, 0x2a, 0x9d, 0x89, 0xef, 0xf2, 0xb6, 0x2b, 0x13, 0xdf, 0xc2, 0x16, - 0xc2, 0xc4, 0x37, 0xa9, 0xe6, 0x2b, 0x12, 0x61, 0xe2, 0xbb, 0x74, 0xbe, 0x61, 0xe2, 0xbb, 0xe8, - 0x0f, 0x13, 0xdf, 0x04, 0xfb, 0x0d, 0x2c, 0x83, 0x89, 0x6f, 0x1e, 0xbf, 0x9b, 0xdc, 0xda, 0x4c, - 0x7c, 0x8b, 0xdb, 0xda, 0x4c, 0x7c, 0x33, 0x20, 0xa8, 0xaa, 0xd5, 0x4c, 0x7c, 0x57, 0xd9, 0x52, - 0x0e, 0x56, 0xca, 0xd7, 0xee, 0xca, 0x0c, 0x49, 0x09, 0x87, 0x9c, 0xa5, 0x54, 0x1d, 0x0b, 0x39, - 0x4b, 0x89, 0x6e, 0xe2, 0x07, 0xdd, 0x04, 0xc7, 0x27, 0xad, 0x8d, 0x4f, 0x72, 0x87, 0x1c, 0x99, - 0xa4, 0xce, 0x0f, 0x2d, 0x26, 0x10, 0x8d, 0xc6, 0x49, 0x02, 0x36, 0x34, 0x69, 0x6e, 0x32, 0xc7, - 0x26, 0x6d, 0xc2, 0x4c, 0x8e, 0x4d, 0xca, 0x51, 0xac, 0x1c, 0x9b, 0x94, 0xdf, 0xf6, 0xe2, 0xd8, - 0xa4, 0xa2, 0x81, 0x95, 0x63, 0x93, 0xaa, 0x16, 0xa3, 0x70, 0x6c, 0x52, 0xbe, 0xe7, 0x03, 0xc7, - 0x26, 0x11, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, - 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x38, 0xa8, 0x5d, 0x85, 0x29, - 0x6e, 0xfb, 0xc8, 0xc2, 0x7c, 0x76, 0x8f, 0x10, 0xa0, 0x74, 0x81, 0x94, 0x02, 0xa0, 0x42, 0x07, - 0x2b, 0x35, 0x80, 0xa5, 0x06, 0xb4, 0x74, 0x00, 0x17, 0x16, 0x78, 0x81, 0x01, 0x58, 0x26, 0x11, - 0xfc, 0xee, 0x91, 0xab, 0xf1, 0x78, 0x64, 0x82, 0x08, 0xb8, 0x7d, 0x64, 0x67, 0x87, 0x75, 0x7a, - 0x55, 0xdf, 0x8c, 0x40, 0xaf, 0x94, 0x9f, 0xdd, 0x89, 0x28, 0xaf, 0x98, 0x19, 0x68, 0x30, 0xd0, - 0x60, 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, 0x0d, 0x06, 0x1a, 0x0c, 0x34, 0xbe, 0xd1, 0xe3, - 0xb3, 0x4d, 0xbd, 0x04, 0xd3, 0xd9, 0xa6, 0x5e, 0xd2, 0x83, 0x67, 0x9b, 0xba, 0x9c, 0x65, 0xb0, - 0x4d, 0x9d, 0xc7, 0xef, 0x26, 0xb7, 0x36, 0xdb, 0xd4, 0xc5, 0x6d, 0x6d, 0xb6, 0xa9, 0x33, 0x20, - 0xa8, 0xaa, 0xd5, 0x6c, 0x53, 0xaf, 0xb2, 0xa5, 0x6c, 0x53, 0xcf, 0xd7, 0xee, 0xca, 0xf4, 0x9f, - 0x8e, 0xc6, 0x49, 0xc2, 0x46, 0xf5, 0xea, 0x58, 0xc8, 0x46, 0x75, 0x3a, 0x8a, 0x1f, 0x76, 0x14, - 0x6c, 0x55, 0x5f, 0x6b, 0x55, 0x6f, 0xcd, 0x1e, 0x0b, 0x9b, 0xd5, 0xb5, 0xf9, 0xa2, 0xc5, 0x6b, - 0xf9, 0xd9, 0x26, 0x34, 0xf3, 0xc0, 0xac, 0x96, 0x22, 0x64, 0xe2, 0x3f, 0x2f, 0x2a, 0xf8, 0xd2, - 0x7a, 0xb6, 0xb0, 0x6f, 0xc2, 0x4c, 0xb6, 0xb0, 0xe7, 0xa8, 0x5b, 0xb6, 0xb0, 0xe7, 0xb7, 0xbd, - 0xd8, 0xc2, 0x5e, 0x34, 0xca, 0xb2, 0x85, 0xbd, 0x6a, 0xd1, 0x0b, 0x5b, 0xd8, 0xf3, 0x3d, 0x1f, - 0xd8, 0xc2, 0x4e, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, - 0x20, 0x6c, 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0xe0, 0x14, 0xb1, 0x02, - 0x33, 0x3b, 0x66, 0x00, 0xf2, 0x3e, 0xcf, 0x61, 0x13, 0xfb, 0x4a, 0x88, 0x51, 0x8a, 0x71, 0x0a, - 0x1d, 0xab, 0xd4, 0xe0, 0x95, 0x1a, 0xcc, 0xd2, 0x81, 0x5b, 0x58, 0xd8, 0x05, 0x86, 0x5f, 0x99, - 0x44, 0xf0, 0xfb, 0x4a, 0x4c, 0x34, 0xbd, 0x35, 0xf1, 0xa2, 0x50, 0x00, 0xb8, 0x89, 0xbd, 0x01, - 0x68, 0xbb, 0x13, 0x4d, 0x6f, 0x67, 0xe2, 0xe1, 0x16, 0xcd, 0xf3, 0x29, 0xb7, 0xc2, 0x24, 0xb5, - 0xd3, 0x34, 0xc6, 0xdc, 0xa6, 0xed, 0x30, 0x72, 0x46, 0x66, 0x76, 0x0a, 0x25, 0xd6, 0xd1, 0x56, - 0x34, 0x1d, 0x8d, 0x00, 0x85, 0xde, 0x0e, 0x3e, 0xe2, 0x2f, 0xe2, 0x3c, 0x1e, 0x9a, 0xd8, 0x0c, - 0x8f, 0xef, 0x97, 0x4b, 0x60, 0xd9, 0x70, 0x85, 0x2d, 0x65, 0xd9, 0x70, 0xbe, 0x76, 0x57, 0xa6, - 0x1a, 0xf0, 0x8b, 0xda, 0x22, 0x56, 0x10, 0x57, 0xc7, 0x42, 0x56, 0x10, 0xd3, 0x67, 0x6c, 0xc2, - 0x67, 0xb0, 0x98, 0x78, 0xad, 0x98, 0xb8, 0x9b, 0x3d, 0xa1, 0x79, 0x80, 0xce, 0xb2, 0x62, 0x6d, - 0x0e, 0xca, 0xba, 0x0d, 0x3e, 0xd6, 0xe6, 0x9b, 0xe1, 0x2a, 0x88, 0x86, 0x1f, 0xc2, 0xe1, 0x7c, - 0xd3, 0x83, 0x14, 0x15, 0x3f, 0x61, 0x3b, 0x4b, 0x8a, 0x37, 0x61, 0x26, 0x4b, 0x8a, 0x73, 0x54, - 0x2d, 0x4b, 0x8a, 0xf3, 0xdb, 0x5e, 0x2c, 0x29, 0x2e, 0x9a, 0x6d, 0x59, 0x52, 0x5c, 0xb5, 0x70, - 0x86, 0x25, 0xc5, 0xf9, 0x9e, 0x0f, 0x2c, 0x29, 0x26, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, - 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, - 0x52, 0x66, 0x30, 0x4e, 0xea, 0xe7, 0xd9, 0xb3, 0x06, 0x25, 0x03, 0xf4, 0x1c, 0x40, 0xb1, 0xb8, - 0x98, 0x40, 0xa5, 0x18, 0xac, 0xd0, 0x01, 0x4b, 0x0d, 0x68, 0xa9, 0x01, 0x2e, 0x1d, 0xe0, 0x85, - 0x05, 0x60, 0x60, 0x20, 0x96, 0x49, 0x04, 0xbf, 0xb8, 0x38, 0x34, 0xc6, 0x5c, 0x8f, 0xc6, 0x01, - 0xf6, 0xe4, 0xfa, 0x43, 0x40, 0xd3, 0x5b, 0x26, 0xba, 0x99, 0x83, 0x31, 0x47, 0xd7, 0x17, 0xfc, - 0xe4, 0x39, 0xba, 0x5e, 0xce, 0x32, 0xb2, 0xf9, 0xd6, 0x1c, 0x6b, 0xcd, 0x43, 0x78, 0x03, 0x5b, - 0x9b, 0xa3, 0xeb, 0xb9, 0xb5, 0xb9, 0xb5, 0x75, 0x44, 0x03, 0xb8, 0x56, 0x73, 0x62, 0x7d, 0x95, - 0x2d, 0x65, 0xeb, 0x49, 0xbe, 0x76, 0x57, 0xa1, 0x8c, 0x7c, 0xbd, 0x02, 0x95, 0x8d, 0x27, 0xd5, - 0xb1, 0x90, 0x8d, 0x27, 0xf4, 0x18, 0x3f, 0xef, 0x31, 0xd8, 0x76, 0xf2, 0x59, 0xdb, 0x49, 0x3b, - 0xf8, 0xd8, 0x0a, 0xa3, 0x3f, 0x8f, 0xb3, 0xc7, 0xc3, 0xa6, 0x13, 0x6d, 0xce, 0x69, 0xde, 0xb8, - 0x11, 0x9b, 0xc4, 0xc4, 0x77, 0xc1, 0xd5, 0xc8, 0x40, 0xf7, 0x9f, 0x3c, 0xbf, 0x0c, 0xb6, 0xa2, - 0x6c, 0xc2, 0x4c, 0xb6, 0xa2, 0xe4, 0x28, 0x60, 0xb6, 0xa2, 0xe4, 0xb7, 0xbd, 0xd8, 0x8a, 0x52, - 0x34, 0xed, 0xb2, 0x15, 0xa5, 0x6a, 0x01, 0x0e, 0x5b, 0x51, 0xf2, 0x3d, 0x1f, 0xd8, 0x8a, 0x42, - 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, 0x6c, 0x10, - 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, 0xb6, 0xa2, 0x94, 0x0e, 0x50, 0x6c, - 0x45, 0x21, 0x50, 0x29, 0x06, 0x2b, 0x74, 0xc0, 0x52, 0x03, 0x5a, 0x6a, 0x80, 0x4b, 0x07, 0x78, - 0x61, 0x01, 0x18, 0x18, 0x88, 0x65, 0x12, 0x61, 0x2b, 0x8a, 0x0c, 0xc8, 0x61, 0x2b, 0x4a, 0xe1, - 0x1f, 0xb6, 0xa2, 0x10, 0xef, 0x37, 0xb0, 0x0c, 0xd6, 0xab, 0xf3, 0x10, 0xde, 0xe4, 0xd6, 0x66, - 0x2b, 0x0a, 0xb7, 0x36, 0xb7, 0xb6, 0x8e, 0x68, 0x00, 0xd7, 0x6a, 0xb6, 0xa2, 0x54, 0xd9, 0x52, - 0xb6, 0xa2, 0xe4, 0x6b, 0x77, 0x55, 0x0a, 0xcb, 0x9f, 0x2d, 0x46, 0x65, 0x57, 0x4a, 0x75, 0x2c, - 0x64, 0x57, 0x0a, 0x9d, 0xc7, 0x46, 0x9d, 0x07, 0x1b, 0x54, 0xbe, 0x6c, 0x50, 0xe9, 0x65, 0x8f, - 0x8a, 0xad, 0x2a, 0xba, 0x3d, 0x96, 0x75, 0x1b, 0x46, 0xb5, 0xac, 0x67, 0x6b, 0x68, 0x46, 0xc1, - 0x3d, 0x50, 0x7f, 0xca, 0xba, 0xed, 0x6c, 0x4a, 0xd9, 0x84, 0x99, 0x6c, 0x4a, 0xc9, 0x51, 0xb5, - 0x6c, 0x4a, 0xc9, 0x6f, 0x7b, 0xb1, 0x29, 0xa5, 0x68, 0xd8, 0x65, 0x53, 0x4a, 0xd5, 0xe2, 0x1b, - 0x36, 0xa5, 0xe4, 0x7b, 0x3e, 0xb0, 0x29, 0x85, 0x60, 0x83, 0x08, 0x38, 0xc0, 0xa0, 0x83, 0x0a, - 0x3c, 0xf0, 0xe0, 0x03, 0x0f, 0x40, 0xd8, 0x20, 0x84, 0x01, 0x44, 0x20, 0x60, 0x04, 0x07, 0x48, - 0x99, 0xc1, 0x41, 0xed, 0x2a, 0x4c, 0x71, 0x1b, 0x52, 0x16, 0xe6, 0xb3, 0x19, 0x85, 0x00, 0xa5, - 0x0b, 0xa4, 0x14, 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, 0xa5, 0x03, 0xb8, 0xb0, - 0xc0, 0x0b, 0x0c, 0xc0, 0x32, 0x89, 0xe0, 0x37, 0xa3, 0x5c, 0x8d, 0xc7, 0x23, 0x13, 0x44, 0xc0, - 0x8d, 0x28, 0x3b, 0x3b, 0xac, 0xfc, 0xab, 0xfa, 0x66, 0x9c, 0x0f, 0x12, 0xc4, 0x78, 0xb7, 0xfc, - 0xec, 0x4e, 0x7c, 0x58, 0x02, 0x03, 0x0d, 0x06, 0x1a, 0x0c, 0x34, 0x18, 0x68, 0x30, 0xd0, 0x60, - 0xa0, 0x41, 0xae, 0x61, 0xa0, 0xa1, 0x22, 0xd0, 0x98, 0x86, 0x11, 0x76, 0xc3, 0xfb, 0x01, 0xa0, - 0xe9, 0xbd, 0x20, 0xba, 0x31, 0xec, 0x77, 0x2f, 0xfe, 0xc1, 0xb3, 0xdf, 0x5d, 0xce, 0x32, 0x56, - 0x4d, 0xb1, 0xdb, 0x6c, 0x8a, 0xe5, 0xf1, 0xbb, 0x81, 0xad, 0xcd, 0x7e, 0x77, 0x71, 0x5b, 0xbb, - 0xb1, 0x7b, 0xd8, 0x38, 0xdc, 0x3f, 0xd8, 0x3d, 0xdc, 0xe3, 0x1e, 0x67, 0x40, 0x50, 0x2d, 0xab, - 0xd9, 0xf8, 0x5e, 0xf9, 0x33, 0x6a, 0xde, 0xa7, 0x84, 0x9e, 0xfe, 0xce, 0x96, 0xc0, 0xf4, 0x77, - 0x11, 0x66, 0x33, 0xfd, 0x5d, 0xa2, 0xd8, 0x99, 0xfe, 0x2e, 0x6f, 0xbb, 0x32, 0xfd, 0x2d, 0x6c, - 0x21, 0x4c, 0x7f, 0x93, 0x6d, 0xbe, 0x22, 0x11, 0xa6, 0xbf, 0x4b, 0xe7, 0x1b, 0xa6, 0xbf, 0x8b, - 0xfe, 0x30, 0xfd, 0x4d, 0xb0, 0xdf, 0xc0, 0x32, 0x98, 0xfe, 0xe6, 0xf1, 0xbb, 0xc9, 0xad, 0xcd, - 0xf4, 0xb7, 0xb8, 0xad, 0xcd, 0xf4, 0x37, 0x03, 0x82, 0xaa, 0x5a, 0xcd, 0xf4, 0x77, 0x95, 0x2d, - 0xe5, 0xdc, 0xd7, 0x7c, 0xed, 0xae, 0xc4, 0xe8, 0xc6, 0xb5, 0x21, 0x6f, 0x1c, 0xf6, 0x5a, 0x1d, - 0x0b, 0x39, 0xec, 0x95, 0x1e, 0xe3, 0xe7, 0x3d, 0x06, 0x27, 0xbc, 0x7e, 0x3e, 0xe1, 0x35, 0x8c, - 0xda, 0xc1, 0xc7, 0x56, 0x18, 0xfd, 0xd9, 0x9c, 0x3f, 0x1d, 0x8e, 0x75, 0xd5, 0xe6, 0x9b, 0xac, - 0xd8, 0x24, 0xe1, 0x70, 0x1a, 0x8c, 0x6a, 0x38, 0x17, 0xce, 0x66, 0xc9, 0xf8, 0x27, 0x6c, 0xe7, - 0x58, 0xd7, 0x4d, 0x98, 0xc9, 0xb1, 0xae, 0x39, 0xaa, 0x96, 0x63, 0x5d, 0xf3, 0xdb, 0x5e, 0x1c, - 0xeb, 0x5a, 0x34, 0xd6, 0x72, 0xac, 0x6b, 0xd5, 0x22, 0x19, 0x8e, 0x75, 0xcd, 0xf7, 0x7c, 0xe0, - 0x58, 0x57, 0x82, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, - 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0xe3, 0xa4, 0x7e, 0x9e, - 0x3d, 0x6b, 0x90, 0xee, 0xe8, 0x7a, 0x0a, 0xa0, 0xd8, 0x76, 0x42, 0xa0, 0x52, 0x0c, 0x56, 0xe8, - 0x80, 0xa5, 0x06, 0xb4, 0xd4, 0x00, 0x97, 0x0e, 0xf0, 0xc2, 0x02, 0x30, 0x30, 0x10, 0xcb, 0x24, - 0x82, 0xdf, 0x76, 0x12, 0x1a, 0x63, 0xae, 0x47, 0xe3, 0x00, 0xbb, 0xf7, 0xe4, 0x10, 0xd0, 0xf4, - 0x96, 0x89, 0x6e, 0xe6, 0x60, 0xcc, 0xe6, 0x93, 0x82, 0x9f, 0x3c, 0x9b, 0x4f, 0xe4, 0x2c, 0x23, - 0xab, 0x50, 0x67, 0x61, 0x3a, 0x0f, 0xe1, 0x0d, 0x6c, 0x6d, 0x36, 0x9f, 0x70, 0x6b, 0x73, 0x6b, - 0xeb, 0x88, 0x06, 0x70, 0xad, 0x66, 0xcf, 0x49, 0x95, 0x2d, 0x65, 0xcf, 0x49, 0xbe, 0x76, 0x57, - 0xa1, 0x82, 0x7c, 0xbd, 0x02, 0x95, 0x3d, 0x27, 0xd5, 0xb1, 0x90, 0x3d, 0x27, 0xf4, 0x18, 0x3f, - 0xef, 0x31, 0xd8, 0x73, 0xf2, 0x59, 0xcf, 0x49, 0x6f, 0xf9, 0x80, 0x8e, 0xb3, 0xe7, 0xc3, 0xae, - 0x13, 0x6d, 0xde, 0x09, 0xa4, 0x34, 0x13, 0xaa, 0x24, 0x93, 0xbd, 0x25, 0x1b, 0x36, 0x94, 0xbd, - 0x25, 0xb9, 0x9a, 0xcc, 0xde, 0x92, 0x82, 0x0c, 0x67, 0x6f, 0x09, 0x79, 0x00, 0x25, 0x62, 0x81, - 0xe9, 0x2d, 0x49, 0x91, 0x4a, 0x0a, 0xb2, 0xe3, 0x61, 0x6e, 0x35, 0x56, 0x67, 0xc9, 0x36, 0x3b, - 0x4b, 0x2a, 0x8f, 0x37, 0xc0, 0x98, 0x83, 0x8a, 0x3b, 0xf0, 0xd8, 0x03, 0x8f, 0x3f, 0xd8, 0x18, - 0x84, 0x81, 0x43, 0x20, 0x58, 0x94, 0x49, 0x01, 0xae, 0x90, 0xf1, 0xa1, 0x80, 0x71, 0x68, 0xa2, - 0x34, 0x4c, 0xef, 0x63, 0x73, 0x8d, 0xe4, 0xb5, 0x57, 0x39, 0x15, 0xa0, 0x81, 0x9c, 0x96, 0xbb, - 0x7c, 0xd4, 0xc7, 0x41, 0x62, 0x70, 0x1b, 0x7a, 0xdc, 0xbe, 0xdb, 0xf7, 0xfb, 0x17, 0xc7, 0x5e, - 0xeb, 0xd2, 0xf7, 0xde, 0x76, 0x1d, 0xb4, 0x63, 0x67, 0x5e, 0x56, 0x93, 0x40, 0xd6, 0x8d, 0x82, - 0xb6, 0x66, 0x3c, 0x28, 0xc7, 0xef, 0x39, 0xf6, 0xc9, 0x2b, 0xfb, 0xd8, 0x6d, 0xb9, 0xde, 0xdb, - 0xa5, 0x88, 0xfa, 0x88, 0x2a, 0xd2, 0xa0, 0x26, 0x6c, 0x55, 0x7d, 0x55, 0x5d, 0xf6, 0xa5, 0xed, - 0xb6, 0xec, 0xe3, 0x96, 0xe3, 0x1f, 0xdb, 0x9d, 0xe6, 0xbf, 0xdc, 0xa6, 0xf7, 0xca, 0x62, 0x4d, - 0x29, 0xe5, 0xb5, 0x21, 0x79, 0xf5, 0x9c, 0xbe, 0xdb, 0xbc, 0xb0, 0x5b, 0x54, 0x17, 0xd5, 0x95, - 0x83, 0xf3, 0x6a, 0xfe, 0xee, 0xf7, 0xdd, 0x26, 0x25, 0x45, 0x49, 0x6d, 0x4a, 0x52, 0x2d, 0xb7, - 0xf3, 0xda, 0xef, 0xf6, 0xce, 0x3d, 0xe7, 0xc4, 0x73, 0xcf, 0x3b, 0x0b, 0xea, 0xa2, 0xbe, 0xa8, - 0xaf, 0x4d, 0xea, 0xab, 0xe9, 0xb4, 0xec, 0xb7, 0x54, 0x15, 0x55, 0xb5, 0x79, 0x55, 0xf9, 0x97, - 0x76, 0xcf, 0xb5, 0x67, 0xae, 0x8b, 0xfa, 0xa2, 0xbe, 0x36, 0xa5, 0x2f, 0xb7, 0x7b, 0xb9, 0xef, - 0xbb, 0x1d, 0xcf, 0xe9, 0x9d, 0xda, 0x27, 0x8e, 0x6f, 0x37, 0x9b, 0x3d, 0xa7, 0xdf, 0xa7, 0xc2, - 0xa8, 0xb0, 0x4d, 0x29, 0x2c, 0x8b, 0x0f, 0xfd, 0x93, 0xf3, 0x4e, 0xdf, 0xeb, 0xd9, 0x6e, 0xc7, - 0xa3, 0xc0, 0x28, 0xb0, 0x8d, 0x09, 0xac, 0x6d, 0xbf, 0xf1, 0x7b, 0x4e, 0xdf, 0xe9, 0x5d, 0x32, - 0xdb, 0x45, 0x8d, 0xe5, 0x88, 0x61, 0xb6, 0xe7, 0xf5, 0xdc, 0xe3, 0x0b, 0xcf, 0xa1, 0xfb, 0xa2, - 0xb4, 0x36, 0x26, 0xad, 0x0b, 0xcf, 0x6d, 0xb9, 0xff, 0x76, 0x9a, 0x74, 0x5c, 0x54, 0xd7, 0xe6, - 0xd5, 0xe5, 0xbc, 0xf1, 0x9c, 0x4e, 0xd3, 0x69, 0xfa, 0x76, 0xb3, 0xed, 0x76, 0xfc, 0xb3, 0xde, - 0xf9, 0x45, 0x97, 0xfa, 0xa2, 0xbe, 0x36, 0xa5, 0x2f, 0xbb, 0xf9, 0xbb, 0xdf, 0xb2, 0x3b, 0x4c, - 0xd6, 0x53, 0x56, 0x1b, 0x3d, 0x14, 0x3b, 0x59, 0xb0, 0xe8, 0x34, 0xfd, 0x56, 0x9f, 0x3e, 0x8b, - 0xe2, 0xda, 0x98, 0xb8, 0xdc, 0xee, 0x65, 0x83, 0x39, 0x2f, 0x2a, 0x2c, 0x3f, 0x85, 0x79, 0x8e, - 0xdf, 0x74, 0x4e, 0xed, 0x8b, 0x96, 0xe7, 0xb7, 0x1d, 0xaf, 0xe7, 0x9e, 0x50, 0x5c, 0x14, 0xd7, - 0xa6, 0xc4, 0x35, 0xe3, 0xf8, 0xb6, 0xfd, 0x86, 0x2f, 0x1c, 0xa9, 0xae, 0x1c, 0xd4, 0x35, 0x57, - 0x55, 0xeb, 0x9c, 0xe7, 0x21, 0x45, 0xb5, 0x41, 0x97, 0xb5, 0x72, 0x57, 0xcc, 0x71, 0x51, 0x5d, - 0x39, 0x04, 0x8b, 0x8b, 0xd7, 0x3f, 0xcc, 0xa1, 0x52, 0x5f, 0x39, 0xc5, 0x8b, 0xfb, 0x7e, 0xc7, - 0x71, 0xcf, 0x5e, 0x1d, 0x9f, 0xf7, 0x18, 0x2e, 0x52, 0x60, 0xb9, 0x30, 0x17, 0x13, 0xa8, 0x94, - 0xd4, 0x46, 0x7d, 0x56, 0x83, 0x3e, 0x8b, 0x02, 0xcb, 0x4d, 0x60, 0x3a, 0xde, 0x27, 0x42, 0x5a, - 0xfe, 0xee, 0x17, 0x6e, 0x5f, 0x6e, 0xdb, 0xef, 0xdc, 0xae, 0x1a, 0xba, 0x41, 0x29, 0xa3, 0xb2, - 0x65, 0xa4, 0xa1, 0xeb, 0x93, 0x2a, 0x2a, 0x9f, 0x1d, 0x40, 0xbb, 0x3b, 0x29, 0x1d, 0x11, 0xa1, - 0x32, 0x7c, 0x17, 0x27, 0x75, 0x24, 0x42, 0x47, 0xa0, 0x2f, 0x4f, 0xa9, 0x1e, 0x39, 0xea, 0x41, - 0xee, 0xca, 0xa4, 0x8e, 0xca, 0xd6, 0x91, 0x96, 0xee, 0x4b, 0x2a, 0xa9, 0x6c, 0x25, 0x29, 0xe9, - 0xb2, 0xa4, 0x90, 0xca, 0x16, 0x92, 0x9e, 0x6e, 0x4a, 0x6a, 0x49, 0x04, 0x26, 0x21, 0x77, 0x4d, - 0x52, 0x42, 0x65, 0x4b, 0x48, 0x43, 0x77, 0x24, 0x55, 0x54, 0xb6, 0x8a, 0x74, 0x74, 0x41, 0x52, - 0x47, 0x65, 0xeb, 0x08, 0xba, 0xdb, 0x91, 0xf2, 0x29, 0xfd, 0x30, 0xc3, 0xef, 0x6a, 0xa4, 0x88, - 0xca, 0x16, 0x91, 0x96, 0xee, 0x45, 0x2a, 0xa9, 0x6c, 0x25, 0x29, 0xe8, 0x52, 0xa4, 0x88, 0xca, - 0x16, 0x91, 0x86, 0x6e, 0x44, 0xaa, 0xa8, 0x6c, 0x15, 0x01, 0x77, 0x1d, 0x52, 0x3c, 0xa5, 0xbb, - 0x20, 0x05, 0xdd, 0x85, 0x54, 0x51, 0xf9, 0xc1, 0x99, 0x86, 0x2e, 0x42, 0xea, 0x48, 0x40, 0x7c, - 0xa6, 0xa1, 0x5b, 0x90, 0x42, 0x12, 0xc1, 0x44, 0x4c, 0x34, 0x52, 0x3a, 0x3f, 0xe4, 0x83, 0x1a, - 0xf4, 0x41, 0x14, 0xd2, 0x4f, 0x0b, 0x89, 0xef, 0xcb, 0x28, 0x9f, 0xef, 0x90, 0x4f, 0xef, 0xfc, - 0xc2, 0x73, 0x7a, 0xfe, 0x89, 0xdd, 0xe5, 0x1d, 0x97, 0xd4, 0x55, 0x21, 0xfa, 0x7a, 0xfc, 0x6f, - 0xec, 0x6f, 0xa7, 0xb4, 0x36, 0x2a, 0x2d, 0xbb, 0x75, 0x76, 0xde, 0x73, 0xbd, 0x57, 0x6d, 0xb6, - 0xb8, 0x17, 0xfb, 0x61, 0x8b, 0x3b, 0x77, 0x6e, 0xe5, 0x0e, 0x03, 0x4a, 0x88, 0x4e, 0x9f, 0x0a, - 0x02, 0x0b, 0x98, 0xbb, 0xbc, 0xd3, 0x9f, 0xaa, 0x2a, 0x4a, 0x5d, 0xdd, 0x9e, 0x73, 0xea, 0xbe, - 0xf1, 0x4f, 0x5b, 0xf6, 0x19, 0x87, 0x79, 0x51, 0x57, 0x9b, 0xd6, 0x15, 0x2f, 0x71, 0xa1, 0xaa, - 0x36, 0xa8, 0xaa, 0xf9, 0x9b, 0xd0, 0x25, 0x62, 0x51, 0x59, 0x54, 0xd6, 0xe6, 0x94, 0xe5, 0xd9, - 0x67, 0xfb, 0x0d, 0x0a, 0x8a, 0x82, 0xda, 0xa0, 0xab, 0x6a, 0xd0, 0x55, 0x51, 0x59, 0xb9, 0xb8, - 0x2a, 0x26, 0x8f, 0x8b, 0xfd, 0x30, 0x79, 0xcc, 0xed, 0x5a, 0xad, 0xc8, 0x9a, 0xfa, 0x61, 0x04, - 0x4d, 0xf5, 0x30, 0x52, 0xa6, 0x82, 0xaa, 0xaa, 0x20, 0xd0, 0x88, 0x98, 0xc2, 0x61, 0xe4, 0x4b, - 0x05, 0x31, 0xc2, 0x65, 0x64, 0xab, 0x24, 0xa2, 0xc5, 0x78, 0xae, 0xf2, 0xad, 0x94, 0x6d, 0xa1, - 0x70, 0xa7, 0x6b, 0xd9, 0x51, 0x34, 0x4e, 0x83, 0x34, 0x1c, 0x47, 0xd6, 0x11, 0x80, 0xbb, 0xb5, - 0x92, 0xc1, 0x7b, 0x73, 0x1b, 0x4c, 0x82, 0xf4, 0xfd, 0xcc, 0xc1, 0xd6, 0xc7, 0x13, 0x13, 0x0d, - 0xc6, 0xd1, 0x75, 0x78, 0x53, 0x8b, 0x4c, 0xfa, 0x61, 0x1c, 0xff, 0x59, 0x0b, 0xa3, 0x24, 0x0d, - 0xa2, 0x81, 0xa9, 0x7f, 0xf9, 0x85, 0x64, 0xed, 0x2b, 0xf5, 0x49, 0x3c, 0x4e, 0xc7, 0x83, 0xf1, - 0x28, 0xc9, 0x7e, 0x57, 0x0f, 0x93, 0x30, 0xa9, 0x8f, 0xcc, 0x9d, 0x19, 0x2d, 0x7f, 0xa9, 0x8f, - 0xc2, 0xe8, 0xcf, 0x5a, 0x92, 0x06, 0xa9, 0xa9, 0x0d, 0x83, 0x34, 0xb8, 0x0a, 0x12, 0x53, 0x1f, - 0x25, 0x93, 0x7a, 0x3a, 0xba, 0x4b, 0x66, 0xff, 0xa8, 0xdf, 0xa6, 0xb5, 0xd9, 0x77, 0xd5, 0x22, - 0x13, 0xde, 0xbc, 0xbf, 0x1a, 0xc7, 0xb5, 0x20, 0x4d, 0xe3, 0xf0, 0x6a, 0x9a, 0xce, 0x6c, 0x58, - 0x7c, 0x29, 0xc9, 0x7e, 0x57, 0x7f, 0x30, 0x27, 0x33, 0x23, 0x99, 0x5e, 0xcd, 0xff, 0xb0, 0xc5, - 0xaf, 0xf5, 0xf9, 0xdf, 0x25, 0xfb, 0xa0, 0x90, 0xbb, 0xe9, 0x04, 0x6f, 0x38, 0x6b, 0xa6, 0x20, - 0x73, 0x1d, 0x4c, 0x47, 0x69, 0xed, 0xd6, 0xa4, 0x71, 0x38, 0x10, 0xbf, 0xe7, 0x32, 0x94, 0x59, - 0x37, 0x5d, 0xb8, 0x63, 0x7b, 0x1d, 0x46, 0x43, 0xeb, 0x68, 0x6b, 0x47, 0xb8, 0x99, 0x27, 0x73, - 0xe7, 0x65, 0x1d, 0x6d, 0x6d, 0x0b, 0x37, 0xb4, 0x1b, 0x9b, 0xeb, 0xf0, 0x23, 0xc6, 0x21, 0xb1, - 0x12, 0xed, 0x78, 0x30, 0x77, 0xcc, 0x00, 0xd5, 0x85, 0x56, 0x7f, 0x3c, 0x8d, 0x07, 0x06, 0xe2, - 0xf1, 0x2e, 0xb6, 0x97, 0xb9, 0xff, 0x30, 0x8e, 0x67, 0x3b, 0xcc, 0x9a, 0x2c, 0x94, 0x81, 0x11, - 0x5d, 0x5a, 0xaf, 0x82, 0xc4, 0x8e, 0x6f, 0xa6, 0xb7, 0x26, 0x4a, 0xad, 0xa3, 0xad, 0x34, 0x9e, - 0x1a, 0x10, 0xc3, 0x1f, 0x59, 0x9d, 0x09, 0x9b, 0x70, 0xae, 0x1a, 0xce, 0x9b, 0x61, 0x0c, 0x42, - 0xe5, 0x73, 0x62, 0x85, 0x71, 0x5e, 0xab, 0xf3, 0x61, 0x61, 0x36, 0xc8, 0xfe, 0xc7, 0x00, 0x1a, - 0x38, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, 0x6c, - 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, 0x90, 0xb4, 0xcf, 0xb3, 0x07, - 0x0d, 0x44, 0xee, 0xe7, 0x39, 0x74, 0xda, 0x06, 0x33, 0x1b, 0x0d, 0xa1, 0x90, 0x51, 0x4a, 0x01, - 0x52, 0xa1, 0xa3, 0x95, 0x1a, 0xc4, 0x52, 0x83, 0x5a, 0x3a, 0x90, 0x0b, 0x0b, 0xbd, 0xc0, 0x10, - 0x2c, 0x93, 0x88, 0x77, 0x3f, 0x31, 0xd8, 0x1e, 0x7f, 0x1a, 0x46, 0xe9, 0xcb, 0x5d, 0x44, 0x87, - 0xbf, 0xe4, 0x9b, 0x03, 0x40, 0xd3, 0x7b, 0x41, 0x74, 0x63, 0x60, 0x07, 0x28, 0xe0, 0x76, 0x62, - 0x59, 0xed, 0x30, 0x82, 0x25, 0x04, 0x70, 0xb0, 0x5f, 0x5b, 0xc6, 0x7c, 0x8c, 0x88, 0x82, 0x75, - 0x9c, 0xc6, 0xc1, 0x20, 0x0d, 0xc7, 0x51, 0x33, 0xbc, 0x09, 0xd3, 0x64, 0xb6, 0x20, 0xb6, 0x87, - 0x96, 0xb1, 0xb5, 0x83, 0x8f, 0xdc, 0xda, 0xc2, 0xb6, 0x76, 0x63, 0xf7, 0xb0, 0x71, 0xb8, 0x7f, - 0xb0, 0x7b, 0xb8, 0xc7, 0x3d, 0xce, 0x80, 0xa0, 0x5a, 0x56, 0x63, 0x75, 0x19, 0x7f, 0xe2, 0xbb, - 0x84, 0x2a, 0x9e, 0xa4, 0x68, 0x95, 0xd0, 0x99, 0xdd, 0x55, 0xa8, 0x88, 0x5e, 0xab, 0x3e, 0x45, - 0xa8, 0x91, 0xc6, 0xd9, 0xa6, 0xac, 0xd2, 0xaa, 0x90, 0xe3, 0xa8, 0xa6, 0xc3, 0x40, 0xa8, 0x01, - 0x4e, 0xd2, 0x78, 0x3a, 0x48, 0xa3, 0x65, 0x3a, 0xb2, 0xb3, 0x78, 0xd2, 0xee, 0x72, 0x85, 0x7e, - 0x77, 0xf9, 0x78, 0x7d, 0x37, 0x09, 0x13, 0xbf, 0x35, 0x7b, 0xae, 0x7e, 0x2b, 0x99, 0xf8, 0xde, - 0xe8, 0xce, 0x6f, 0xa7, 0xb3, 0x2f, 0x76, 0x96, 0xcf, 0xc7, 0x5e, 0x3d, 0x3b, 0x7f, 0xf5, 0x15, - 0x3f, 0xfb, 0x53, 0xfa, 0xf3, 0xe7, 0xe3, 0x7b, 0xa6, 0xb9, 0x78, 0x3c, 0xed, 0xc5, 0xd3, 0x61, - 0xb3, 0x89, 0x36, 0xd7, 0x64, 0xa5, 0x08, 0x09, 0xf9, 0x87, 0xfe, 0x92, 0x99, 0xb5, 0x18, 0x2d, - 0x25, 0xdb, 0x6c, 0x29, 0xd9, 0x8c, 0xa1, 0x6c, 0x29, 0xc9, 0xd5, 0x64, 0xb6, 0x94, 0x14, 0x64, - 0x38, 0x5b, 0x4a, 0x48, 0x03, 0x28, 0xc1, 0x0a, 0xcc, 0x6b, 0xfa, 0xcc, 0xe3, 0x8e, 0x4c, 0x70, - 0x1d, 0x9b, 0x6b, 0x04, 0x8f, 0xbb, 0x6a, 0xd1, 0x00, 0x78, 0x11, 0x6f, 0x75, 0x97, 0xf1, 0xdf, - 0x8b, 0x17, 0x8b, 0x5c, 0x4a, 0x7d, 0x4e, 0x60, 0x8c, 0x03, 0xd4, 0xc5, 0x01, 0xd3, 0x59, 0x74, - 0x9f, 0xa4, 0x71, 0x10, 0x46, 0x66, 0x58, 0x1b, 0x25, 0x13, 0x9c, 0xa0, 0x60, 0xdd, 0x74, 0x36, - 0x9d, 0x33, 0x42, 0x60, 0x84, 0xc0, 0x08, 0x81, 0x11, 0x02, 0x23, 0x04, 0x46, 0x08, 0xb9, 0xfc, - 0xc8, 0xd9, 0x74, 0x9e, 0xef, 0xf9, 0xc0, 0xa6, 0x73, 0x82, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, - 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, - 0x20, 0x65, 0x06, 0x0f, 0xc6, 0xd3, 0xb9, 0x70, 0x41, 0x7b, 0xce, 0x17, 0xe6, 0xb3, 0xe5, 0x9c, - 0x00, 0xa5, 0x0b, 0xa4, 0x14, 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, 0xa5, 0x03, - 0xb8, 0xb0, 0xc0, 0x0b, 0x0c, 0xc0, 0x32, 0x89, 0xe8, 0x68, 0x39, 0xdf, 0xd9, 0x07, 0x6e, 0x39, - 0xdf, 0x67, 0xcb, 0x79, 0xc1, 0x1f, 0xb6, 0x9c, 0x13, 0xec, 0x37, 0xb0, 0x0c, 0xb6, 0x9c, 0xf3, - 0xf8, 0xdd, 0xe4, 0xd6, 0x66, 0xcb, 0xb9, 0xb8, 0xad, 0xbd, 0xbf, 0xb7, 0xf7, 0x92, 0xdd, 0xe6, - 0x8c, 0x05, 0x2a, 0x66, 0x35, 0xbb, 0xcd, 0x2b, 0x7f, 0x3c, 0x61, 0xf4, 0x3e, 0x3d, 0x1b, 0x15, - 0x02, 0xf4, 0x42, 0x29, 0x39, 0x3b, 0x99, 0xef, 0x2e, 0x53, 0xe7, 0xcc, 0x77, 0x97, 0xb7, 0x5d, - 0x99, 0xef, 0x16, 0xb6, 0x10, 0xe6, 0xbb, 0x49, 0x34, 0x5f, 0x91, 0x08, 0x7e, 0xbe, 0x3b, 0x1c, - 0x9a, 0x28, 0x0d, 0xd3, 0x7b, 0x8c, 0x7e, 0xae, 0xe7, 0x20, 0x67, 0x07, 0x30, 0xaa, 0xb6, 0xdc, - 0xe5, 0xa3, 0x3f, 0x0e, 0x12, 0xe0, 0x73, 0x2b, 0xbb, 0x59, 0xbb, 0xef, 0xf6, 0xfd, 0xfe, 0xc5, - 0xb1, 0xd7, 0xba, 0xf4, 0xbd, 0xb7, 0x5d, 0x07, 0xf5, 0xf8, 0x9a, 0xe7, 0x6a, 0x12, 0xd8, 0x97, - 0x11, 0x5b, 0xd0, 0x2f, 0x24, 0xbe, 0x50, 0xd4, 0xe7, 0x77, 0xb5, 0x2f, 0xc4, 0xd5, 0x47, 0x56, - 0x97, 0x26, 0x95, 0xe9, 0x50, 0xdb, 0x57, 0x55, 0x67, 0x5f, 0xda, 0x6e, 0xcb, 0x3e, 0x6e, 0x39, - 0xfe, 0xb1, 0xdd, 0x69, 0xfe, 0xcb, 0x6d, 0x7a, 0xaf, 0x2c, 0xf8, 0x15, 0x7f, 0xfa, 0x95, 0xb2, - 0x93, 0x2d, 0xbb, 0x9e, 0xd3, 0x77, 0x9b, 0x17, 0x76, 0x8b, 0xaa, 0xa3, 0xea, 0x0a, 0x74, 0x76, - 0xcd, 0xdf, 0xfd, 0xbe, 0xdb, 0xa4, 0xd4, 0x28, 0xb5, 0xbc, 0xa5, 0xd6, 0x72, 0x3b, 0xaf, 0xfd, - 0x6e, 0xef, 0xdc, 0x73, 0x4e, 0x3c, 0xf7, 0xbc, 0xb3, 0xa0, 0x3a, 0xea, 0x8e, 0xba, 0x2b, 0x42, - 0x77, 0x4d, 0xa7, 0x65, 0xbf, 0xa5, 0xda, 0xa8, 0xb6, 0xe2, 0xd4, 0xe6, 0x5f, 0xda, 0x3d, 0xd7, - 0x9e, 0xb9, 0x3a, 0xea, 0x8e, 0xba, 0xcb, 0x5b, 0x77, 0x6e, 0xf7, 0x72, 0xdf, 0x77, 0x3b, 0x9e, - 0xd3, 0x3b, 0xb5, 0x4f, 0x1c, 0xdf, 0x6e, 0x36, 0x7b, 0x4e, 0xbf, 0x4f, 0xe5, 0x51, 0x79, 0x79, - 0x2b, 0x2f, 0x8b, 0x57, 0xfd, 0x93, 0xf3, 0x4e, 0xdf, 0xeb, 0xd9, 0x6e, 0xc7, 0xa3, 0xf0, 0x28, - 0xbc, 0xdc, 0x85, 0xd7, 0xb6, 0xdf, 0xf8, 0x3d, 0xa7, 0xef, 0xf4, 0x2e, 0x99, 0xad, 0xa3, 0xf6, - 0x4a, 0xc0, 0x3c, 0xdb, 0xf3, 0x7a, 0xee, 0xf1, 0x85, 0xe7, 0xd0, 0xdd, 0x51, 0x72, 0xb9, 0x4b, - 0xee, 0xc2, 0x73, 0x5b, 0xee, 0xbf, 0x9d, 0x26, 0x1d, 0x1d, 0x55, 0x57, 0x9c, 0xea, 0x9c, 0x37, - 0x9e, 0xd3, 0x69, 0x3a, 0x4d, 0xdf, 0x6e, 0xb6, 0xdd, 0x8e, 0x7f, 0xd6, 0x3b, 0xbf, 0xe8, 0x52, - 0x77, 0xd4, 0x5d, 0xde, 0xba, 0xb3, 0x9b, 0xbf, 0xfb, 0x2d, 0xbb, 0xc3, 0x97, 0x13, 0x94, 0x5b, - 0x21, 0x87, 0x6b, 0x27, 0x0b, 0x5e, 0x9d, 0xa6, 0xdf, 0xea, 0xd3, 0xc7, 0x51, 0x74, 0xb9, 0x8b, - 0xce, 0xed, 0x5e, 0x36, 0x98, 0xb3, 0xa3, 0xf2, 0x8a, 0x57, 0x9e, 0xe7, 0xf8, 0x4d, 0xe7, 0xd4, - 0xbe, 0x68, 0x79, 0x7e, 0xdb, 0xf1, 0x7a, 0xee, 0x09, 0x45, 0x47, 0xd1, 0xe5, 0x2d, 0xba, 0x59, - 0xfc, 0xd0, 0xb6, 0xdf, 0xf0, 0x85, 0x2c, 0x55, 0x57, 0xa0, 0xea, 0xe6, 0x6a, 0x6b, 0x9d, 0xf3, - 0x5c, 0xa5, 0xd8, 0x0a, 0x70, 0x71, 0x2b, 0xf7, 0xc6, 0x1c, 0x1d, 0x55, 0x57, 0x60, 0xf0, 0xba, - 0x78, 0x0d, 0xc6, 0xdc, 0x30, 0x75, 0x57, 0x70, 0xfc, 0xba, 0xef, 0x77, 0x1c, 0xf7, 0xec, 0xd5, - 0xf1, 0x79, 0x8f, 0xe1, 0x2b, 0x85, 0x57, 0x28, 0xd3, 0x31, 0x31, 0x4c, 0xa9, 0x15, 0xe2, 0xe3, - 0x1a, 0xf4, 0x71, 0x14, 0x5e, 0xe1, 0xc2, 0xd3, 0xf5, 0xbe, 0x15, 0x7a, 0x05, 0xef, 0x38, 0xcf, - 0x92, 0xdb, 0x7b, 0x53, 0xdb, 0x5a, 0x53, 0x77, 0x31, 0xe5, 0x25, 0x4d, 0x5e, 0x9a, 0xba, 0x88, - 0xa9, 0x2e, 0x79, 0x4c, 0x02, 0xde, 0x2d, 0x4c, 0x49, 0x89, 0x0c, 0xe5, 0xd5, 0x74, 0x05, 0x53, - 0x5f, 0x22, 0xf5, 0x05, 0xfe, 0xb2, 0x99, 0xaa, 0x92, 0xab, 0x2a, 0x0d, 0x5d, 0xbe, 0xd4, 0x97, - 0x34, 0x7d, 0x69, 0xeb, 0xe6, 0xa5, 0xc2, 0xa4, 0x29, 0x4c, 0x59, 0xd7, 0x2e, 0x05, 0x26, 0x4d, - 0x60, 0xfa, 0xba, 0x73, 0xa9, 0x31, 0x91, 0x18, 0xa6, 0xa1, 0x0b, 0x97, 0xd2, 0x92, 0x26, 0x2d, - 0x4d, 0xdd, 0xb6, 0x54, 0x97, 0x34, 0x75, 0xe9, 0xea, 0xaa, 0xa5, 0xbe, 0xa4, 0xe9, 0x4b, 0x45, - 0xf7, 0x2c, 0x65, 0x25, 0xee, 0x50, 0xd4, 0xd3, 0x25, 0x4b, 0x71, 0x49, 0x13, 0x97, 0xb6, 0x6e, - 0x58, 0x2a, 0x4c, 0x9a, 0xc2, 0x14, 0x75, 0xbd, 0x52, 0x5c, 0xd2, 0xc4, 0xa5, 0xa9, 0xbb, 0x95, - 0xea, 0x92, 0xa6, 0x2e, 0x05, 0x5d, 0xac, 0x14, 0x95, 0x38, 0x97, 0xa5, 0xa8, 0x5b, 0x95, 0xea, - 0x92, 0x17, 0x2c, 0x6a, 0xea, 0x4a, 0xa5, 0xbe, 0x04, 0xc6, 0x8b, 0x9a, 0xba, 0x4f, 0x29, 0x30, - 0x91, 0xcc, 0xc5, 0x04, 0x2a, 0x25, 0xb5, 0x51, 0x9f, 0xd5, 0xa0, 0xcf, 0xa2, 0xc0, 0x72, 0x13, - 0x18, 0xdf, 0x27, 0x52, 0x56, 0x1b, 0x90, 0x55, 0xef, 0xfc, 0xc2, 0x73, 0x7a, 0xfe, 0x89, 0xdd, - 0xe5, 0x5d, 0xbc, 0xd4, 0x5b, 0xa9, 0xba, 0x7b, 0xfc, 0x6f, 0x9c, 0xbb, 0x40, 0xc9, 0x15, 0x22, - 0x39, 0xbb, 0x75, 0x76, 0xde, 0x73, 0xbd, 0x57, 0x6d, 0x8e, 0x5e, 0x28, 0xf7, 0xc3, 0xd1, 0x0b, - 0xdc, 0xe1, 0x3c, 0x4c, 0x28, 0x2d, 0x1e, 0x1a, 0x54, 0x56, 0x35, 0x02, 0xfa, 0xee, 0xe7, 0x01, - 0x3d, 0xe3, 0x2e, 0xaa, 0xad, 0x78, 0xd5, 0x75, 0x7b, 0xce, 0xa9, 0xfb, 0xc6, 0x3f, 0x6d, 0xd9, - 0x67, 0x1c, 0x76, 0x47, 0xbd, 0x15, 0xa5, 0x37, 0x5e, 0xf6, 0x44, 0xb5, 0x15, 0xa0, 0xb6, 0xf9, - 0x9b, 0xe3, 0x25, 0xc2, 0x51, 0x71, 0x54, 0x5c, 0xfe, 0x8a, 0xf3, 0xec, 0xb3, 0xfd, 0x06, 0x85, - 0x46, 0xa1, 0x15, 0xe0, 0xda, 0x1a, 0x74, 0x6d, 0x54, 0x5c, 0xa1, 0xae, 0x8d, 0x49, 0xf2, 0x72, - 0x3f, 0x4c, 0x92, 0x73, 0x5b, 0x33, 0xf2, 0xa7, 0xae, 0x18, 0xe1, 0x53, 0x55, 0xd5, 0x52, 0x95, - 0x96, 0x48, 0x9e, 0xca, 0x62, 0xc4, 0x4e, 0x41, 0x69, 0x77, 0x55, 0x0d, 0xba, 0x2a, 0x2a, 0x8b, - 0x11, 0xb8, 0x82, 0xc8, 0x1b, 0x2f, 0xe2, 0xc6, 0x7a, 0xce, 0x38, 0xd6, 0x62, 0x58, 0x0a, 0xe2, - 0xb4, 0x2d, 0x3b, 0x8a, 0xc6, 0x69, 0x90, 0x86, 0xe3, 0xc8, 0x3a, 0x02, 0x72, 0xd7, 0x56, 0x32, - 0x78, 0x6f, 0x6e, 0x83, 0x49, 0x90, 0xbe, 0x9f, 0x39, 0xe8, 0xfa, 0x78, 0x62, 0xa2, 0xc1, 0x38, - 0xba, 0x0e, 0x6f, 0x6a, 0x91, 0x49, 0x3f, 0x8c, 0xe3, 0x3f, 0x6b, 0x61, 0x94, 0xa4, 0x41, 0x34, - 0x30, 0xf5, 0x2f, 0xbf, 0x90, 0xac, 0x7d, 0xa5, 0x3e, 0x89, 0xc7, 0xe9, 0x78, 0x30, 0x1e, 0x25, - 0xd9, 0xef, 0xea, 0x61, 0x12, 0x26, 0xf5, 0x91, 0xb9, 0x33, 0xa3, 0xe5, 0x2f, 0xf5, 0x51, 0x18, - 0xfd, 0x59, 0x4b, 0xd2, 0x20, 0x35, 0xb5, 0x61, 0x90, 0x06, 0x57, 0x41, 0x62, 0xea, 0xa3, 0x64, - 0x52, 0x4f, 0x47, 0x77, 0xc9, 0xec, 0x1f, 0xf5, 0xdb, 0xb4, 0x36, 0xfb, 0xae, 0x5a, 0x64, 0xc2, - 0x9b, 0xf7, 0x57, 0xe3, 0xb8, 0x16, 0xa4, 0x69, 0x1c, 0x5e, 0x4d, 0xd3, 0x99, 0x0d, 0x8b, 0x2f, - 0x25, 0xd9, 0xef, 0xea, 0x0f, 0xe6, 0x64, 0x66, 0x24, 0xd3, 0xab, 0xf9, 0x1f, 0xb6, 0xf8, 0xb5, - 0x3e, 0x9d, 0x2d, 0x29, 0x49, 0xe3, 0x20, 0x8c, 0xcc, 0xb0, 0x36, 0xfb, 0xab, 0xe6, 0x7f, 0x3b, - 0xc6, 0xd1, 0x23, 0x7f, 0x9b, 0xca, 0xb6, 0x50, 0xb8, 0x03, 0x41, 0x73, 0x1c, 0xd5, 0x74, 0x18, - 0x00, 0xf5, 0x8b, 0x56, 0x92, 0xc6, 0xd3, 0x41, 0x1a, 0x2d, 0x51, 0xbb, 0xb3, 0x78, 0xd2, 0xee, - 0x72, 0x85, 0x7e, 0x77, 0xf9, 0x78, 0x7d, 0x37, 0x09, 0x13, 0xbf, 0x35, 0x7b, 0xae, 0x7e, 0x2b, - 0x99, 0xf8, 0xde, 0xe8, 0xce, 0x6f, 0xa7, 0xb3, 0x2f, 0x76, 0x96, 0xcf, 0xc7, 0x5e, 0x3d, 0x3b, - 0x7f, 0xf5, 0x15, 0x3f, 0xfb, 0x53, 0xfa, 0xf3, 0xe7, 0xe3, 0x5f, 0x3c, 0x7e, 0x3e, 0xad, 0x64, - 0x22, 0xdb, 0x93, 0xca, 0xf5, 0x4f, 0x82, 0x7d, 0x93, 0x35, 0x8d, 0x62, 0x93, 0x98, 0xf8, 0xce, - 0x0c, 0x6b, 0x57, 0x41, 0x34, 0xfc, 0x10, 0x0e, 0xe7, 0x3b, 0x5e, 0xb6, 0x87, 0xca, 0x22, 0xcd, - 0x27, 0xad, 0x17, 0x7e, 0x12, 0xbc, 0x0e, 0xa3, 0xa1, 0x75, 0xb4, 0xb5, 0x23, 0xdc, 0xcc, 0x93, - 0xb9, 0xb7, 0xb7, 0x8e, 0xb6, 0xb6, 0x85, 0x1b, 0xda, 0x8d, 0xcd, 0x75, 0xf8, 0x11, 0xe3, 0x54, - 0x5d, 0xe9, 0x76, 0x3c, 0x98, 0x9f, 0x64, 0x08, 0xe7, 0x4d, 0x7f, 0x3c, 0x8d, 0x07, 0x06, 0x26, - 0xda, 0xb1, 0x5e, 0x9b, 0xfb, 0x0f, 0xe3, 0x78, 0xb6, 0xc3, 0xac, 0xc9, 0x42, 0x19, 0x20, 0xa1, - 0xe5, 0xab, 0x20, 0xb1, 0xe3, 0x9b, 0xe9, 0xad, 0x89, 0x52, 0xeb, 0x68, 0x2b, 0x8d, 0xa7, 0x06, - 0x25, 0x26, 0x7e, 0xb0, 0x3a, 0x13, 0x36, 0xa3, 0x19, 0xd5, 0xd1, 0x4c, 0x33, 0x8c, 0x41, 0xc2, - 0x18, 0x93, 0x4e, 0x27, 0xb5, 0x49, 0x1c, 0x8e, 0xe3, 0x30, 0xbd, 0xc7, 0xf1, 0x62, 0xab, 0x83, - 0xe2, 0x0b, 0xfb, 0x41, 0x3c, 0x02, 0x06, 0xe2, 0xc0, 0xa1, 0x0e, 0x22, 0xf2, 0x00, 0xa3, 0x0f, - 0x2a, 0x02, 0xc1, 0xa3, 0x10, 0x3c, 0x12, 0x61, 0xa3, 0x11, 0x06, 0x22, 0x81, 0xa0, 0x12, 0x1c, - 0x32, 0x65, 0x06, 0xc3, 0x41, 0xd3, 0xda, 0x51, 0x03, 0x86, 0x4d, 0x5f, 0xe2, 0xd3, 0x36, 0x98, - 0xd9, 0x68, 0x18, 0x85, 0x8c, 0x53, 0x0a, 0xb0, 0x0a, 0x1d, 0xaf, 0xd4, 0x60, 0x96, 0x1a, 0xdc, - 0xd2, 0x81, 0x5d, 0x58, 0xf8, 0x05, 0x86, 0x61, 0x99, 0x44, 0xbc, 0xfb, 0x89, 0xc1, 0xf6, 0xf8, - 0x23, 0x13, 0x5c, 0xc7, 0xe6, 0x1a, 0xd1, 0xe3, 0xaf, 0xf2, 0x43, 0x07, 0x80, 0xb6, 0x77, 0x97, - 0x25, 0x11, 0x2f, 0x5e, 0x2c, 0xca, 0x8b, 0xea, 0x19, 0x65, 0xb2, 0x80, 0xb1, 0xea, 0x9e, 0xc5, - 0x5a, 0x14, 0x9c, 0xc1, 0x06, 0x4c, 0x0b, 0xf3, 0x31, 0xa3, 0xa5, 0x1d, 0x46, 0x4b, 0x8c, 0x96, - 0x18, 0x2d, 0x31, 0x5a, 0x62, 0xb4, 0xc4, 0x68, 0x89, 0x4c, 0xb3, 0x59, 0x89, 0xa0, 0x25, 0xaf, - 0x33, 0xc3, 0x71, 0x6a, 0x1a, 0xbf, 0x7a, 0x66, 0xa1, 0x14, 0x38, 0x7e, 0x0d, 0xd4, 0xb6, 0x41, - 0xcd, 0x47, 0x05, 0x36, 0x0d, 0xe0, 0xa6, 0x08, 0xe0, 0xb4, 0x80, 0x9c, 0x3a, 0xa0, 0x53, 0x07, - 0x76, 0xba, 0x00, 0x0f, 0x13, 0xf4, 0x40, 0x81, 0x2f, 0x93, 0x0e, 0x6c, 0x9a, 0x7c, 0xed, 0xc4, - 0x08, 0x8d, 0x31, 0xd7, 0xa3, 0x71, 0x90, 0xbe, 0xdc, 0x45, 0x3e, 0x35, 0x96, 0x10, 0x75, 0x08, - 0xbc, 0x84, 0x96, 0x89, 0x6e, 0xe6, 0x40, 0x8e, 0x3d, 0x65, 0x1f, 0x7f, 0x6c, 0xa6, 0xd5, 0x0e, - 0x23, 0x78, 0xfe, 0x50, 0x12, 0x5e, 0xac, 0x2d, 0x67, 0x7e, 0x17, 0x85, 0x75, 0xb4, 0xd5, 0x50, - 0xb2, 0x9e, 0xd3, 0x38, 0x18, 0xa4, 0xe1, 0x38, 0x6a, 0x86, 0x37, 0x61, 0x9a, 0xcc, 0x7e, 0x50, - 0x9c, 0xfd, 0x2b, 0xc1, 0x05, 0x04, 0x1f, 0xe9, 0x02, 0xe8, 0x02, 0xe8, 0x02, 0xaa, 0x14, 0x8d, - 0xe0, 0x5b, 0x8f, 0x39, 0x51, 0x1a, 0xef, 0x79, 0x03, 0x1e, 0x71, 0xb8, 0x85, 0xeb, 0x6b, 0x31, - 0x2b, 0x68, 0x01, 0xbb, 0x92, 0xf3, 0x98, 0x19, 0x7f, 0x49, 0x7b, 0x81, 0x19, 0x7f, 0x39, 0xdb, - 0x9a, 0x19, 0x7f, 0xe1, 0x0b, 0x62, 0xc6, 0x9f, 0xe4, 0xf4, 0x83, 0xd2, 0xd1, 0x93, 0xf1, 0x9f, - 0x86, 0x51, 0xfa, 0x9b, 0x82, 0x5c, 0xff, 0x1e, 0xf0, 0x12, 0x7a, 0x41, 0x74, 0x63, 0x98, 0xea, - 0x2f, 0xff, 0x07, 0xc1, 0x54, 0xbf, 0xdc, 0xe5, 0xac, 0xf2, 0x7c, 0xdb, 0xcc, 0xf3, 0xf1, 0x34, - 0xcf, 0xd1, 0x05, 0x30, 0xd5, 0x2f, 0xde, 0x05, 0x1c, 0xd0, 0x05, 0x30, 0x0c, 0xa1, 0xf5, 0x8f, - 0x3f, 0x4c, 0xf5, 0xd3, 0x62, 0xf8, 0x03, 0x19, 0xf5, 0xe2, 0x88, 0xcc, 0xfe, 0x6a, 0xcc, 0x83, - 0x5f, 0x9f, 0x26, 0x5d, 0xff, 0x7c, 0x02, 0x23, 0xd2, 0x95, 0x12, 0x78, 0x1b, 0x9b, 0x13, 0xc7, - 0x36, 0x8a, 0xc8, 0xe6, 0x1e, 0xf0, 0x25, 0xa2, 0xd5, 0x0a, 0x93, 0xd4, 0x4e, 0x53, 0xb0, 0x69, - 0x69, 0xed, 0x30, 0x72, 0x46, 0xe6, 0xd6, 0x44, 0x73, 0xda, 0x8d, 0xa6, 0xa3, 0x11, 0xd0, 0xd8, - 0x82, 0x76, 0xf0, 0x11, 0xd7, 0xf8, 0xf3, 0x78, 0x68, 0x62, 0x33, 0x3c, 0xbe, 0x5f, 0x9a, 0x4e, - 0x1f, 0x42, 0x6c, 0x21, 0xae, 0xc0, 0x15, 0x8e, 0x14, 0x79, 0xb1, 0x4d, 0x7f, 0xf6, 0x90, 0xba, - 0x50, 0x73, 0x7b, 0x78, 0x3f, 0x98, 0x6a, 0x87, 0xcb, 0xfb, 0xc1, 0x40, 0x1c, 0x2c, 0xef, 0xc0, - 0x52, 0xb7, 0xff, 0xac, 0x69, 0x1a, 0x8e, 0xc2, 0xff, 0x07, 0x7a, 0x03, 0xd6, 0xba, 0xed, 0xbc, - 0xff, 0x6a, 0x13, 0x66, 0xf2, 0xfe, 0xab, 0x1c, 0x55, 0xcb, 0xfb, 0xaf, 0xf2, 0xcc, 0xfa, 0xf0, - 0xfe, 0xab, 0x62, 0xd1, 0x8d, 0xf7, 0x5f, 0x55, 0x8d, 0xd6, 0x71, 0xee, 0xbf, 0x82, 0x1a, 0x48, - 0x0a, 0x39, 0x88, 0x94, 0xb7, 0x5d, 0x11, 0x70, 0x14, 0x80, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, 0x0f, - 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0xe3, 0x0e, - 0x0a, 0x85, 0x1f, 0x10, 0xca, 0xfb, 0xae, 0x08, 0x54, 0x15, 0x00, 0x2b, 0x74, 0xc0, 0x52, 0x03, - 0x5a, 0x6a, 0x80, 0x4b, 0x07, 0x78, 0x61, 0x01, 0x18, 0x18, 0x88, 0x65, 0x12, 0xc1, 0xbf, 0xef, - 0x0a, 0x7b, 0x80, 0x27, 0xf0, 0xe0, 0x4e, 0xf4, 0x81, 0x9d, 0xc0, 0xad, 0xec, 0x1a, 0xba, 0x76, - 0x95, 0xb4, 0xea, 0x69, 0x99, 0xc6, 0xa7, 0xa9, 0x35, 0x0f, 0xb8, 0x2b, 0x57, 0x45, 0x37, 0x2e, - 0xb7, 0x36, 0xb7, 0x36, 0xa3, 0x01, 0x68, 0xab, 0xdf, 0xb1, 0x95, 0xad, 0xea, 0x47, 0x93, 0x95, - 0x22, 0xc6, 0x86, 0x59, 0x5c, 0x38, 0xb7, 0x9e, 0x19, 0xef, 0x22, 0xcc, 0x66, 0xc6, 0xbb, 0x44, - 0x9d, 0x33, 0xe3, 0x5d, 0xde, 0x76, 0x65, 0xc6, 0x5b, 0xd8, 0x42, 0x98, 0xf1, 0x26, 0xd1, 0x7c, - 0x45, 0x22, 0x0a, 0x32, 0xde, 0x43, 0x13, 0xa5, 0x61, 0x7a, 0x1f, 0x9b, 0x6b, 0xe0, 0x8c, 0xf7, - 0x0e, 0xe0, 0xfc, 0x4a, 0xcb, 0x5d, 0x3e, 0xfa, 0xe3, 0x20, 0x31, 0xf8, 0x73, 0xe4, 0xdd, 0xbe, - 0xdb, 0xf7, 0xfb, 0x17, 0xc7, 0x5e, 0xeb, 0xd2, 0xf7, 0xde, 0x76, 0x1d, 0xd4, 0xe3, 0x6b, 0x9e, - 0xa7, 0x49, 0xa0, 0xc7, 0x89, 0x82, 0x27, 0xfc, 0x1e, 0x14, 0xe5, 0xf7, 0x1c, 0xfb, 0xe4, 0x95, - 0x7d, 0xec, 0xb6, 0x5c, 0xef, 0xed, 0x52, 0x5c, 0x7d, 0x64, 0x75, 0x69, 0x52, 0x99, 0x0e, 0xb5, - 0x7d, 0x55, 0x75, 0xf6, 0xa5, 0xed, 0xb6, 0xec, 0xe3, 0x96, 0xe3, 0x1f, 0xdb, 0x9d, 0xe6, 0xbf, - 0xdc, 0xa6, 0xf7, 0xca, 0xe2, 0xa8, 0x51, 0xca, 0x2e, 0x67, 0xd9, 0xf5, 0x9c, 0xbe, 0xdb, 0xbc, - 0xb0, 0x5b, 0x54, 0x1d, 0x55, 0x57, 0xa0, 0xb3, 0x6b, 0xfe, 0xee, 0xf7, 0xdd, 0x26, 0xa5, 0x46, - 0xa9, 0xe5, 0x2d, 0xb5, 0x96, 0xdb, 0x79, 0xed, 0x77, 0x7b, 0xe7, 0x9e, 0x73, 0xe2, 0xb9, 0xe7, - 0x9d, 0x05, 0xd5, 0x51, 0x77, 0xd4, 0x5d, 0x11, 0xba, 0x6b, 0x3a, 0x2d, 0xfb, 0x2d, 0xd5, 0x46, - 0xb5, 0x15, 0xa7, 0x36, 0xff, 0xd2, 0xee, 0xb9, 0xf6, 0xcc, 0xd5, 0x51, 0x77, 0xd4, 0x5d, 0xde, - 0xba, 0x73, 0xbb, 0x97, 0xfb, 0xbe, 0xdb, 0xf1, 0x9c, 0xde, 0xa9, 0x7d, 0xe2, 0xf8, 0x76, 0xb3, - 0xd9, 0x73, 0xfa, 0x7d, 0x2a, 0x8f, 0xca, 0xcb, 0x5b, 0x79, 0x59, 0xbc, 0xea, 0x9f, 0x9c, 0x77, - 0xfa, 0x5e, 0xcf, 0x76, 0x3b, 0x1e, 0x85, 0x47, 0xe1, 0xe5, 0x2e, 0xbc, 0xb6, 0xfd, 0xc6, 0xef, - 0x39, 0x7d, 0xa7, 0x77, 0xc9, 0x6c, 0x1d, 0xb5, 0x57, 0x02, 0xe6, 0xd9, 0x9e, 0xd7, 0x73, 0x8f, - 0x2f, 0x3c, 0x87, 0xee, 0x8e, 0x92, 0xcb, 0x5d, 0x72, 0x17, 0x9e, 0xdb, 0x72, 0xff, 0xed, 0x34, - 0xe9, 0xe8, 0xa8, 0xba, 0xe2, 0x54, 0xe7, 0xbc, 0xf1, 0x9c, 0x4e, 0xd3, 0x69, 0xfa, 0x76, 0xb3, - 0xed, 0x76, 0xfc, 0xb3, 0xde, 0xf9, 0x45, 0x97, 0xba, 0xa3, 0xee, 0xf2, 0xd6, 0x9d, 0xdd, 0xfc, - 0xdd, 0x6f, 0xd9, 0x1d, 0xbe, 0x9c, 0xa0, 0xdc, 0x0a, 0x39, 0x5c, 0x3b, 0x59, 0xf0, 0xea, 0x34, - 0xfd, 0x56, 0x9f, 0x3e, 0x8e, 0xa2, 0xcb, 0x5d, 0x74, 0x6e, 0xf7, 0xb2, 0xc1, 0x9c, 0x1d, 0x95, - 0x57, 0xbc, 0xf2, 0x3c, 0xc7, 0x6f, 0x3a, 0xa7, 0xf6, 0x45, 0xcb, 0xf3, 0xdb, 0x8e, 0xd7, 0x73, - 0x4f, 0x28, 0x3a, 0x8a, 0x2e, 0x6f, 0xd1, 0xcd, 0xe2, 0x87, 0xb6, 0xfd, 0x86, 0x2f, 0x64, 0xa9, - 0xba, 0x02, 0x55, 0x37, 0x57, 0x5b, 0xeb, 0x9c, 0xe7, 0x2a, 0xc5, 0x56, 0x80, 0x8b, 0x5b, 0xb9, - 0x37, 0xe6, 0xe8, 0xa8, 0xba, 0x02, 0x83, 0xd7, 0xc5, 0x6b, 0x30, 0xe6, 0x86, 0xa9, 0xbb, 0x82, - 0xe3, 0xd7, 0x7d, 0xbf, 0xe3, 0xb8, 0x67, 0xaf, 0x8e, 0xcf, 0x7b, 0x0c, 0x5f, 0x29, 0xbc, 0x42, - 0x99, 0x8e, 0x89, 0x61, 0x4a, 0xad, 0x10, 0x1f, 0xd7, 0xa0, 0x8f, 0xa3, 0xf0, 0x0a, 0x17, 0x9e, - 0xae, 0xf7, 0xad, 0xd0, 0x2b, 0x78, 0xc7, 0x59, 0x96, 0xdc, 0xde, 0x9b, 0xda, 0xd6, 0x9a, 0xba, - 0x8b, 0x29, 0x2f, 0x69, 0xf2, 0xd2, 0xd4, 0x45, 0x4c, 0x75, 0xc9, 0x63, 0x12, 0xf0, 0x6e, 0x61, - 0x4a, 0x4a, 0x64, 0x28, 0xaf, 0xa6, 0x2b, 0x98, 0xfa, 0x12, 0xa9, 0x2f, 0xf0, 0x97, 0xcd, 0x54, - 0x95, 0x5c, 0x55, 0x69, 0xe8, 0xf2, 0xa5, 0xbe, 0xa4, 0xe9, 0x4b, 0x5b, 0x37, 0x2f, 0x15, 0x26, - 0x4d, 0x61, 0xca, 0xba, 0x76, 0x29, 0x30, 0x69, 0x02, 0xd3, 0xd7, 0x9d, 0x4b, 0x8d, 0x89, 0xc4, - 0x30, 0x0d, 0x5d, 0xb8, 0x94, 0x96, 0x34, 0x69, 0x69, 0xea, 0xb6, 0xa5, 0xba, 0xa4, 0xa9, 0x4b, - 0x57, 0x57, 0x2d, 0xf5, 0x25, 0x4d, 0x5f, 0x2a, 0xba, 0x67, 0x29, 0x2b, 0x71, 0x87, 0xa2, 0x9e, - 0x2e, 0x59, 0x8a, 0x4b, 0x9a, 0xb8, 0xb4, 0x75, 0xc3, 0x52, 0x61, 0xd2, 0x14, 0xa6, 0xa8, 0xeb, - 0x95, 0xe2, 0x92, 0x26, 0x2e, 0x4d, 0xdd, 0xad, 0x54, 0x97, 0x34, 0x75, 0x29, 0xe8, 0x62, 0xa5, - 0xa8, 0xc4, 0xb9, 0x2c, 0x45, 0xdd, 0xaa, 0x54, 0x97, 0xbc, 0x60, 0x51, 0x53, 0x57, 0x2a, 0xf5, - 0x25, 0x30, 0x5e, 0xd4, 0xd4, 0x7d, 0x4a, 0x81, 0x89, 0x64, 0x2e, 0x26, 0x50, 0x29, 0xa9, 0x8d, - 0xfa, 0xac, 0x06, 0x7d, 0x16, 0x05, 0x96, 0x9b, 0xc0, 0xf8, 0x3e, 0x91, 0xb2, 0xda, 0x80, 0xac, - 0x7a, 0xe7, 0x17, 0x9e, 0xd3, 0xf3, 0x4f, 0xec, 0x2e, 0xef, 0xe2, 0xa5, 0xde, 0x4a, 0xd5, 0xdd, - 0xe3, 0x7f, 0xe3, 0xdc, 0x05, 0x4a, 0xae, 0x10, 0xc9, 0xd9, 0xad, 0xb3, 0xf3, 0x9e, 0xeb, 0xbd, - 0x6a, 0x73, 0xf4, 0x42, 0xb9, 0x1f, 0x8e, 0x5e, 0xe0, 0x0e, 0xe7, 0x61, 0x42, 0x69, 0xf1, 0xd0, - 0xa0, 0xb2, 0xaa, 0x11, 0xd0, 0x77, 0x3f, 0x0f, 0xe8, 0x19, 0x77, 0x51, 0x6d, 0xc5, 0xab, 0xae, - 0xdb, 0x73, 0x4e, 0xdd, 0x37, 0xfe, 0x69, 0xcb, 0x3e, 0xe3, 0xb0, 0x3b, 0xea, 0xad, 0x28, 0xbd, - 0xf1, 0xb2, 0x27, 0xaa, 0xad, 0x00, 0xb5, 0xcd, 0xdf, 0x1c, 0x2f, 0x11, 0x8e, 0x8a, 0xa3, 0xe2, - 0xf2, 0x57, 0x9c, 0x67, 0x9f, 0xed, 0x37, 0x28, 0x34, 0x0a, 0xad, 0x00, 0xd7, 0xd6, 0xa0, 0x6b, - 0xa3, 0xe2, 0x0a, 0x75, 0x6d, 0x4c, 0x92, 0x97, 0xfb, 0x61, 0x92, 0x9c, 0xdb, 0x9a, 0x91, 0x3f, - 0x75, 0xc5, 0x08, 0x9f, 0xaa, 0xaa, 0x96, 0xaa, 0xb4, 0x44, 0xf2, 0x54, 0x16, 0x23, 0x76, 0x0a, - 0x4a, 0xbb, 0xab, 0x6a, 0xd0, 0x55, 0x51, 0x59, 0x8c, 0xc0, 0x15, 0x44, 0xde, 0x78, 0x11, 0x37, - 0xd6, 0x73, 0xc6, 0xb1, 0x16, 0xc3, 0x52, 0x10, 0xa7, 0x6d, 0xd9, 0x51, 0x34, 0x4e, 0x83, 0x34, - 0x1c, 0x47, 0xd6, 0x11, 0x90, 0xbb, 0xb6, 0x92, 0xc1, 0x7b, 0x73, 0x1b, 0x4c, 0x82, 0xf4, 0xfd, - 0xcc, 0x41, 0xd7, 0xc7, 0x13, 0x13, 0x0d, 0xc6, 0xd1, 0x75, 0x78, 0x53, 0x8b, 0x4c, 0xfa, 0x61, - 0x1c, 0xff, 0x59, 0x0b, 0xa3, 0x24, 0x0d, 0xa2, 0x81, 0xa9, 0x7f, 0xf9, 0x85, 0x64, 0xed, 0x2b, - 0xf5, 0x49, 0x3c, 0x4e, 0xc7, 0x83, 0xf1, 0x28, 0xc9, 0x7e, 0x57, 0x0f, 0x93, 0x30, 0xa9, 0x8f, - 0xcc, 0x9d, 0x19, 0x2d, 0x7f, 0xa9, 0x8f, 0xc2, 0xe8, 0xcf, 0x5a, 0x92, 0x06, 0xa9, 0xa9, 0x0d, - 0x83, 0x34, 0xb8, 0x0a, 0x12, 0x53, 0x1f, 0x25, 0x93, 0x7a, 0x3a, 0xba, 0x4b, 0x66, 0xff, 0xa8, - 0xdf, 0xa6, 0xb5, 0xd9, 0x77, 0xd5, 0x22, 0x13, 0xde, 0xbc, 0xbf, 0x1a, 0xc7, 0xb5, 0x20, 0x4d, - 0xe3, 0xf0, 0x6a, 0x9a, 0xce, 0x6c, 0x58, 0x7c, 0x29, 0xc9, 0x7e, 0x57, 0x7f, 0x30, 0x27, 0x33, - 0x23, 0x99, 0x5e, 0xcd, 0xff, 0xb0, 0xc5, 0xaf, 0xf5, 0x69, 0x1a, 0x8e, 0xc2, 0xff, 0x67, 0x86, - 0xb5, 0xab, 0x20, 0x1a, 0x7e, 0x08, 0x87, 0xe9, 0xfb, 0xfa, 0xfc, 0xaf, 0xc7, 0x38, 0x7b, 0xe4, - 0xef, 0x53, 0xd9, 0x16, 0x0a, 0xf7, 0x20, 0x68, 0x9e, 0xa3, 0xa2, 0x1e, 0x03, 0xa0, 0x82, 0xd1, - 0x4a, 0xd2, 0x78, 0x3a, 0x48, 0xa3, 0x25, 0x6c, 0x77, 0x16, 0x8f, 0xda, 0x5d, 0x2e, 0xd1, 0xef, - 0x2e, 0x9f, 0xaf, 0xef, 0x26, 0x61, 0xe2, 0xb7, 0x66, 0x0f, 0xd6, 0x6f, 0x25, 0x13, 0xdf, 0x1b, - 0xdd, 0xf9, 0xed, 0x74, 0xf6, 0xc5, 0xce, 0xf2, 0x01, 0xd9, 0xab, 0x87, 0xe7, 0xaf, 0xbe, 0xe2, - 0x67, 0x7f, 0x4a, 0x7f, 0xfe, 0x80, 0xfc, 0x8b, 0xe5, 0x03, 0x3a, 0xce, 0x9e, 0xcf, 0x2f, 0xf4, - 0x50, 0x7a, 0x2c, 0x13, 0xea, 0x33, 0xad, 0xd7, 0xe6, 0x7e, 0x26, 0xed, 0xf4, 0x7e, 0x62, 0x84, - 0x6e, 0x48, 0xab, 0x15, 0x26, 0xe9, 0x6c, 0x03, 0x89, 0x76, 0xe6, 0x56, 0x3b, 0x8c, 0x9c, 0x91, - 0xb9, 0x35, 0x51, 0x9a, 0x58, 0x47, 0x5b, 0xd1, 0x74, 0x34, 0xfa, 0x55, 0xb0, 0xb1, 0xc1, 0x47, - 0x1c, 0x63, 0xcf, 0xe3, 0xa1, 0x89, 0xcd, 0xf0, 0xf8, 0x7e, 0x69, 0x2a, 0xf7, 0xb7, 0x3e, 0x16, - 0xaa, 0x02, 0x03, 0x09, 0x06, 0x9e, 0x02, 0x41, 0x47, 0x26, 0xd6, 0xc8, 0x83, 0x06, 0x59, 0x16, - 0x09, 0x73, 0x6f, 0xd2, 0xdd, 0x9a, 0x6a, 0x77, 0x26, 0x6b, 0x07, 0xcb, 0xd9, 0x27, 0x82, 0xf6, - 0x88, 0x35, 0x8d, 0x86, 0xe6, 0x3a, 0x8c, 0xcc, 0xb0, 0xb6, 0xfa, 0xa1, 0x49, 0xdb, 0x26, 0xd9, - 0x2b, 0xac, 0x75, 0x53, 0x85, 0xf9, 0x9a, 0xd7, 0x61, 0x34, 0xb4, 0x8e, 0xb6, 0x76, 0x84, 0x99, - 0x75, 0x32, 0xf7, 0x27, 0xd6, 0xd1, 0xd6, 0xb6, 0x30, 0xc3, 0xba, 0xb1, 0xb9, 0x0e, 0x3f, 0xca, - 0xf4, 0xcb, 0x2b, 0xd1, 0x8d, 0x07, 0x73, 0x5f, 0x28, 0x10, 0xc9, 0xac, 0xfe, 0x78, 0x1a, 0x0f, - 0x8c, 0x58, 0x5a, 0xb7, 0x5e, 0x9b, 0xfb, 0x0f, 0xe3, 0x78, 0xb6, 0x23, 0xac, 0xc9, 0xe2, 0x27, - 0x2d, 0x34, 0xf4, 0x79, 0x15, 0x24, 0x76, 0x7c, 0x33, 0x9d, 0x45, 0xb9, 0xd6, 0xd1, 0x56, 0x1a, - 0x4f, 0x8d, 0xd4, 0x18, 0xed, 0xc1, 0xca, 0x4c, 0x98, 0xe4, 0x51, 0x28, 0x1e, 0x6d, 0x86, 0x32, - 0xd3, 0x53, 0x6b, 0xa7, 0xab, 0x5c, 0xbf, 0xf2, 0x1c, 0x0f, 0x48, 0x75, 0x2f, 0x32, 0xb1, 0x40, - 0x3c, 0x1e, 0x20, 0x60, 0x02, 0x10, 0x2e, 0xa0, 0x60, 0x03, 0x1c, 0x3e, 0xc0, 0x61, 0x04, 0x16, - 0x4e, 0xc8, 0xc4, 0x0a, 0xa1, 0x78, 0x21, 0x1e, 0x33, 0x32, 0x03, 0x17, 0x55, 0x40, 0xe2, 0x9d, - 0xd0, 0xca, 0xaf, 0x2f, 0xcc, 0x15, 0xbe, 0x9f, 0x65, 0x83, 0x06, 0x0c, 0x70, 0x20, 0x81, 0x07, - 0x20, 0x80, 0xa0, 0x81, 0x08, 0x2c, 0x90, 0xc0, 0x82, 0x09, 0x26, 0xa0, 0xc8, 0x06, 0x15, 0xe1, - 0xc0, 0x02, 0x03, 0x2e, 0x99, 0xa1, 0x23, 0x13, 0xdd, 0xcc, 0x5f, 0xda, 0x81, 0x78, 0xaf, 0xd5, - 0x01, 0xb1, 0xb4, 0x1b, 0xc4, 0x03, 0x2c, 0x91, 0x66, 0x1b, 0xc4, 0x5c, 0x14, 0xb4, 0x41, 0x44, - 0x1c, 0x60, 0xd4, 0x41, 0x45, 0x1e, 0x78, 0xf4, 0x81, 0x47, 0x20, 0x6c, 0x14, 0xc2, 0x40, 0x22, - 0x10, 0x34, 0xca, 0xa4, 0xe0, 0xdd, 0x4f, 0x0c, 0xa6, 0xc7, 0x9e, 0x86, 0x51, 0xfa, 0x1b, 0x92, - 0xbf, 0x5e, 0xe2, 0xc7, 0x1e, 0x90, 0xc9, 0xbd, 0x20, 0xba, 0x31, 0x70, 0xe3, 0xb2, 0xf1, 0xba, - 0xec, 0xad, 0x76, 0x18, 0xc1, 0x1d, 0xe4, 0xa0, 0x5c, 0xbd, 0x66, 0xfe, 0x7c, 0x28, 0x3c, 0xb0, - 0xfd, 0xa7, 0x71, 0x30, 0x48, 0xc3, 0x71, 0xd4, 0x0c, 0x6f, 0xc2, 0x79, 0x67, 0xc5, 0x36, 0xde, - 0x6c, 0x80, 0x5f, 0x01, 0xb7, 0x6c, 0xf0, 0x91, 0x5b, 0xb6, 0xe4, 0x2d, 0xbb, 0xbb, 0xb7, 0xc7, - 0x4d, 0x4b, 0x10, 0xd7, 0x65, 0xed, 0x3b, 0x8e, 0x33, 0xa8, 0xca, 0xa1, 0xb2, 0xe8, 0x80, 0x85, - 0x4b, 0xfb, 0x0a, 0xee, 0xdb, 0x05, 0x3f, 0xe9, 0x98, 0xf4, 0x2d, 0x52, 0xc7, 0x4c, 0xfa, 0x16, - 0xb7, 0x0d, 0x99, 0xf4, 0x2d, 0x79, 0x01, 0x4c, 0xfa, 0x92, 0x38, 0x96, 0x52, 0x60, 0xd2, 0xb7, - 0x68, 0xfc, 0x60, 0xd2, 0x37, 0xef, 0x0f, 0x93, 0xbe, 0xe4, 0xea, 0xef, 0x30, 0x9f, 0x49, 0x5f, - 0x9e, 0x96, 0x3f, 0xb2, 0x65, 0x99, 0xf4, 0x2d, 0x7d, 0xcb, 0x32, 0xe9, 0x4b, 0x10, 0x57, 0x67, - 0x2d, 0x93, 0xbe, 0x95, 0x39, 0x54, 0xac, 0xbb, 0xa5, 0x23, 0x03, 0xcb, 0xfa, 0x2e, 0xcc, 0x66, - 0xda, 0x37, 0x0f, 0x73, 0x99, 0xf6, 0x2d, 0x50, 0xc8, 0x4c, 0xfb, 0x16, 0xb7, 0x0d, 0x99, 0xf6, - 0x2d, 0x79, 0x01, 0x4c, 0xfb, 0x92, 0x39, 0x96, 0x52, 0xc0, 0x4d, 0xfb, 0x5e, 0x85, 0x51, 0x10, - 0xdf, 0x03, 0xe6, 0x7d, 0x0f, 0x89, 0xf5, 0x15, 0xb0, 0x90, 0x57, 0x53, 0x6c, 0xd6, 0x5e, 0x95, - 0x73, 0x4c, 0xd7, 0x26, 0x4e, 0xae, 0x7d, 0x05, 0xe1, 0x36, 0x1b, 0xc1, 0x37, 0x30, 0x08, 0x1e, - 0x93, 0x04, 0x51, 0xe6, 0x85, 0x54, 0xde, 0x05, 0x12, 0xdf, 0x73, 0x3c, 0x09, 0xe3, 0xf8, 0x2d, - 0x8e, 0x27, 0x61, 0xbc, 0xae, 0x34, 0x4e, 0x27, 0x96, 0x57, 0x22, 0x1e, 0x7f, 0x34, 0xef, 0x23, - 0xb8, 0x8e, 0xcd, 0x35, 0x82, 0xc7, 0x5d, 0xcd, 0x2f, 0x3b, 0x00, 0xb0, 0xb5, 0xbb, 0x8c, 0x74, - 0x5e, 0xbc, 0x58, 0x84, 0x00, 0xf5, 0x39, 0x81, 0x31, 0x0e, 0x50, 0x64, 0x19, 0x6f, 0x62, 0xfb, - 0x61, 0x13, 0x79, 0x13, 0xdb, 0xe6, 0x8d, 0xe5, 0x4d, 0x6c, 0x15, 0xd9, 0xdf, 0xbc, 0x89, 0x4d, - 0x74, 0xca, 0xaf, 0xea, 0xb7, 0xb3, 0x5d, 0xac, 0x9e, 0x07, 0xaf, 0x69, 0xc3, 0xb5, 0x88, 0xd7, - 0xb4, 0xd1, 0xd7, 0xad, 0xfb, 0x3a, 0x5e, 0xd8, 0x26, 0xd9, 0x12, 0x21, 0x7b, 0x76, 0x15, 0x7f, - 0x84, 0x43, 0x21, 0x27, 0xa1, 0xcc, 0x68, 0x43, 0x74, 0x74, 0x21, 0x3a, 0x9a, 0x90, 0x19, 0x3d, - 0x48, 0xd9, 0x7d, 0x42, 0x4f, 0x4a, 0x95, 0x27, 0xa4, 0x20, 0xd4, 0x2f, 0x02, 0xed, 0x65, 0x1c, - 0xff, 0xe5, 0x1f, 0xb6, 0xe5, 0x5a, 0x50, 0xb2, 0xa3, 0x91, 0xe6, 0x60, 0x34, 0x39, 0x96, 0x72, - 0x37, 0x58, 0x79, 0xb2, 0x2e, 0x51, 0xd2, 0xd6, 0xec, 0x47, 0x35, 0x2c, 0x5d, 0xc9, 0xd9, 0xeb, - 0xb8, 0x85, 0x39, 0x25, 0x6f, 0x71, 0x19, 0x95, 0x38, 0x62, 0x2a, 0x6d, 0x24, 0x55, 0xd2, 0x08, - 0xac, 0x94, 0x91, 0x56, 0x09, 0x23, 0xb6, 0xd2, 0x45, 0x6c, 0x25, 0x8b, 0xcc, 0x4a, 0x95, 0x6a, - 0x63, 0x96, 0x98, 0x4a, 0x12, 0x81, 0x95, 0x22, 0x92, 0x2a, 0x41, 0xd6, 0x2b, 0x3d, 0x16, 0x47, - 0x38, 0x51, 0xae, 0x84, 0x10, 0x58, 0xc2, 0x9d, 0x91, 0xa2, 0xee, 0x84, 0x14, 0x72, 0xe7, 0x23, - 0x51, 0x8e, 0x28, 0x47, 0x94, 0x23, 0xca, 0x55, 0x13, 0xe5, 0xa4, 0xdc, 0x59, 0x28, 0x24, 0xd7, - 0x21, 0x32, 0xe7, 0x21, 0x2c, 0xf7, 0x21, 0xee, 0xe0, 0x94, 0x78, 0x80, 0x0a, 0x3e, 0x48, 0xa5, - 0x1e, 0xa8, 0xe2, 0x0f, 0x56, 0xf1, 0x07, 0xac, 0xec, 0x83, 0x56, 0xc6, 0x81, 0x2b, 0xe4, 0xe0, - 0x95, 0x97, 0x4b, 0x59, 0xf3, 0x58, 0xd3, 0x30, 0x4a, 0x77, 0xf6, 0x25, 0x39, 0xac, 0xe5, 0xf9, - 0xb7, 0x2f, 0xc8, 0x24, 0x99, 0xd3, 0x8b, 0x05, 0x56, 0x21, 0x4a, 0x9e, 0x3e, 0x2c, 0xbc, 0xbd, - 0x5b, 0xfa, 0xf4, 0x60, 0x84, 0x41, 0xa3, 0x02, 0x1b, 0x26, 0x44, 0x4f, 0xf7, 0x45, 0xd9, 0x12, - 0x8d, 0xed, 0xc3, 0x3d, 0xee, 0x0a, 0x6c, 0x14, 0x93, 0x67, 0xcd, 0x3b, 0x56, 0x93, 0x49, 0xf1, - 0x9a, 0x56, 0x72, 0x9f, 0xa4, 0xe6, 0x56, 0x64, 0x72, 0xe8, 0xc1, 0x34, 0x26, 0x88, 0x9e, 0x32, - 0x87, 0x09, 0xa2, 0xef, 0x10, 0x13, 0x13, 0x44, 0xdf, 0x2e, 0x73, 0x26, 0x88, 0x7e, 0xd2, 0x40, - 0x26, 0x88, 0x50, 0x22, 0x06, 0xc1, 0x09, 0x22, 0x69, 0xc7, 0xdf, 0xe3, 0x23, 0x70, 0xe7, 0x37, - 0x41, 0x36, 0x75, 0x83, 0x34, 0x35, 0x71, 0x24, 0x2e, 0x4d, 0x64, 0xfd, 0xef, 0x1f, 0xdb, 0xb5, - 0x43, 0xbb, 0x76, 0x1a, 0xd4, 0xae, 0xdf, 0xfd, 0xb7, 0xf1, 0xe9, 0x3f, 0xff, 0x79, 0xf1, 0x95, - 0x2f, 0xfc, 0x8f, 0x45, 0x46, 0x97, 0xc6, 0xe8, 0xec, 0xf8, 0x60, 0xc7, 0xc7, 0x06, 0x3b, 0x3e, - 0x04, 0x4c, 0x85, 0xad, 0x68, 0x89, 0xa0, 0x98, 0x40, 0x57, 0xdc, 0x09, 0xcf, 0xae, 0x0f, 0xb9, - 0x81, 0x2c, 0x4b, 0x05, 0x71, 0x03, 0x56, 0x96, 0x0a, 0x12, 0xb5, 0xf0, 0x02, 0x51, 0x76, 0x7d, - 0x7c, 0x35, 0xdc, 0xfc, 0xbc, 0xeb, 0xe3, 0xe1, 0x18, 0xaf, 0x2a, 0xd6, 0xfd, 0x52, 0xa1, 0x0d, - 0xbb, 0x1a, 0x72, 0x33, 0x2f, 0x5d, 0xdd, 0x2a, 0x1b, 0xe1, 0x64, 0x4c, 0xb8, 0x11, 0x35, 0xd1, - 0x46, 0xd4, 0x04, 0x1b, 0x19, 0x13, 0x6b, 0xca, 0xda, 0x2a, 0x42, 0xd2, 0x07, 0xf8, 0x69, 0x03, - 0xab, 0xd4, 0xde, 0xba, 0xbc, 0xc6, 0xcb, 0x94, 0x73, 0x5e, 0x16, 0x7f, 0x5a, 0x15, 0xfb, 0x37, - 0x16, 0xbc, 0xd9, 0xcb, 0xde, 0xe4, 0xb0, 0x9b, 0xbb, 0x58, 0xf5, 0x17, 0xa7, 0xc1, 0x62, 0xfe, - 0xa6, 0x82, 0x54, 0x5e, 0x96, 0xba, 0xc1, 0x54, 0x5d, 0xe0, 0xf9, 0xb4, 0xf9, 0xf3, 0xa8, 0x98, - 0x8d, 0x98, 0xff, 0xb6, 0x28, 0x60, 0x4b, 0xcc, 0xa3, 0x9e, 0xa4, 0xb8, 0xad, 0xf0, 0x59, 0xa3, - 0x60, 0x12, 0x15, 0x24, 0xb3, 0x82, 0x5b, 0xe7, 0x0b, 0xcf, 0x7b, 0x97, 0x91, 0xdf, 0x2e, 0x31, - 0x8f, 0x5d, 0x56, 0xbe, 0xba, 0xf4, 0xbc, 0x74, 0xe9, 0xf9, 0xe7, 0x72, 0xf3, 0xcc, 0xba, 0x40, - 0xa4, 0xe8, 0x56, 0x72, 0xeb, 0x01, 0x54, 0x0b, 0xdf, 0x38, 0x2b, 0x5f, 0xf1, 0x60, 0x42, 0xc1, - 0xba, 0x2d, 0x67, 0x76, 0x4a, 0x69, 0x2f, 0x40, 0xcb, 0x7c, 0xe1, 0x29, 0xe0, 0x05, 0x67, 0xd9, - 0x2f, 0x34, 0xc5, 0xbc, 0xc0, 0x14, 0xf3, 0xc2, 0x52, 0xc6, 0x0b, 0x4a, 0xdd, 0x79, 0x9b, 0xb2, - 0x66, 0x93, 0x64, 0x5e, 0xbd, 0xbc, 0xfd, 0xf6, 0xe5, 0xf9, 0x52, 0xd6, 0x76, 0x2b, 0x77, 0x44, - 0x57, 0xe9, 0xf5, 0x36, 0x12, 0xea, 0x6c, 0x04, 0xd5, 0xd7, 0x48, 0xa9, 0xab, 0x11, 0x57, 0x4f, - 0x23, 0xae, 0x8e, 0x46, 0x56, 0xfd, 0x4c, 0xb5, 0x5e, 0xbf, 0x97, 0x3d, 0x52, 0xcb, 0x7a, 0x98, - 0xd9, 0x2e, 0xa6, 0x90, 0xf4, 0xc1, 0x24, 0xce, 0x9c, 0x64, 0x21, 0xa9, 0xf8, 0x83, 0x4e, 0xda, - 0x81, 0x27, 0xf6, 0xe0, 0x13, 0x7b, 0x00, 0xca, 0x3c, 0x08, 0xcb, 0x3d, 0x10, 0x4b, 0x3e, 0x18, - 0xc5, 0x1c, 0x90, 0x6b, 0x07, 0xa5, 0xbc, 0xc9, 0x02, 0xc2, 0x6e, 0x71, 0x12, 0x72, 0x6c, 0x8a, - 0x3b, 0x3e, 0x25, 0x1e, 0xa3, 0x82, 0x8f, 0x53, 0xa9, 0xc7, 0xaa, 0xf8, 0xe3, 0x55, 0xfc, 0x31, - 0x2b, 0xfb, 0xb8, 0x95, 0x71, 0xec, 0x0a, 0x39, 0x7e, 0xc5, 0x1d, 0xc3, 0x0f, 0xc7, 0xf1, 0x50, - 0x9e, 0x47, 0xc8, 0x0e, 0xe4, 0xa1, 0x34, 0x57, 0x20, 0x73, 0x40, 0x9b, 0xb8, 0xa3, 0x59, 0xf2, - 0x11, 0x0d, 0x70, 0x54, 0x4b, 0x3f, 0xb2, 0x61, 0x8e, 0x6e, 0x98, 0x23, 0x1c, 0xe3, 0x28, 0x97, - 0x75, 0xa4, 0x0b, 0x3b, 0xda, 0xb3, 0x1f, 0xa1, 0xb8, 0xd9, 0x41, 0x6b, 0x1e, 0x4f, 0x4e, 0x0b, - 0xe7, 0xb3, 0x31, 0xef, 0x81, 0x40, 0xdb, 0xd6, 0x5a, 0x3c, 0xcb, 0xee, 0xed, 0x94, 0xbb, 0x2f, - 0x3f, 0x89, 0xba, 0x08, 0x5b, 0xc2, 0x2d, 0x60, 0xcf, 0x6e, 0x46, 0x09, 0xb7, 0x82, 0x3d, 0xbb, - 0x0d, 0xc9, 0xb9, 0xe4, 0x5c, 0x72, 0x2e, 0x39, 0x97, 0x9c, 0xcb, 0x33, 0xf5, 0xcb, 0x1f, 0xa1, - 0xb4, 0x54, 0x56, 0x66, 0x98, 0xc0, 0x94, 0xd6, 0x9a, 0x33, 0x16, 0x97, 0xda, 0xfa, 0xf2, 0xe8, - 0x97, 0x7a, 0x07, 0x81, 0x54, 0x04, 0x40, 0x40, 0x01, 0x20, 0x24, 0x40, 0x41, 0x03, 0x38, 0x44, - 0x80, 0x43, 0x05, 0x2c, 0x64, 0x90, 0x89, 0x0e, 0x42, 0x11, 0x22, 0xfb, 0xd1, 0x8a, 0x4d, 0x99, - 0xad, 0x79, 0xcc, 0x69, 0x18, 0xa5, 0xfb, 0x0d, 0xc9, 0x0e, 0x73, 0x79, 0x7e, 0xff, 0x26, 0xd8, - 0x44, 0x99, 0xf7, 0xb7, 0x7d, 0xf9, 0x91, 0x7d, 0xe0, 0x6c, 0x49, 0xbf, 0xdf, 0x0d, 0x0c, 0x2c, - 0xd7, 0xcc, 0x15, 0x7e, 0xff, 0xdb, 0x9a, 0xbd, 0x00, 0x37, 0x5f, 0x81, 0x1c, 0x47, 0x9f, 0x6f, - 0xb1, 0xe0, 0x23, 0xb7, 0x58, 0xce, 0x5b, 0x6c, 0xe7, 0xb7, 0x46, 0x63, 0xff, 0xa0, 0xd1, 0xd8, - 0x3e, 0x78, 0x79, 0xb0, 0x7d, 0xb8, 0xb7, 0xb7, 0xb3, 0xbf, 0xb3, 0xc7, 0x5d, 0x57, 0x2d, 0x34, - 0x95, 0x6f, 0xdd, 0xbb, 0x5f, 0xf8, 0xbc, 0x40, 0xbd, 0xba, 0x75, 0x6b, 0xd2, 0x38, 0x1c, 0xc8, - 0x4f, 0x0b, 0x2e, 0xed, 0x64, 0x6a, 0xf0, 0x47, 0xcc, 0x63, 0x6a, 0x70, 0x83, 0x4a, 0x64, 0x6a, - 0x70, 0x73, 0xdb, 0x86, 0xa9, 0xc1, 0x9c, 0x0d, 0x66, 0x6a, 0x50, 0x6b, 0x2c, 0x06, 0x94, 0x1a, - 0xfc, 0x10, 0x0e, 0x4d, 0x4d, 0xf4, 0x01, 0xfe, 0xf8, 0x10, 0x3f, 0x60, 0x7e, 0xf0, 0x27, 0x3f, - 0xcc, 0x0f, 0x32, 0x79, 0x21, 0xaf, 0x46, 0x4e, 0x55, 0xa6, 0x82, 0xf9, 0x41, 0x6e, 0xb1, 0xd9, - 0x16, 0xdb, 0x3f, 0x38, 0x38, 0xd8, 0x65, 0x4e, 0xb0, 0x6a, 0x4c, 0x2a, 0xdf, 0x3a, 0xe6, 0x04, - 0x11, 0x2d, 0x92, 0x56, 0x49, 0x29, 0xec, 0x3e, 0xdd, 0x35, 0xfb, 0xc4, 0xde, 0x3a, 0x10, 0x3d, - 0x75, 0x97, 0xee, 0xc3, 0x5f, 0x9d, 0xfd, 0x95, 0x02, 0xae, 0xd7, 0x95, 0xbb, 0x23, 0x44, 0xf5, - 0xea, 0x4c, 0xaf, 0x66, 0x3f, 0x61, 0xc1, 0xdd, 0x3a, 0x4b, 0x03, 0xd9, 0xaf, 0xf3, 0x2d, 0x66, - 0xb1, 0x5f, 0xe7, 0x27, 0xa4, 0xc6, 0x7e, 0x9d, 0x1f, 0xdf, 0x0e, 0xec, 0xd7, 0xd9, 0x34, 0xa2, - 0xb0, 0x5f, 0x07, 0x9d, 0x32, 0xc5, 0xf6, 0xeb, 0x2c, 0xce, 0x54, 0xf9, 0x2f, 0xe7, 0x97, 0x76, - 0xca, 0x7e, 0x39, 0xbf, 0xc3, 0x97, 0xf3, 0xea, 0x90, 0x00, 0x08, 0x0d, 0x50, 0x10, 0x01, 0x0e, - 0x15, 0xe0, 0x90, 0x01, 0x0b, 0x1d, 0x64, 0x22, 0x84, 0x50, 0x94, 0x10, 0x8f, 0x14, 0x99, 0x81, - 0xc1, 0xf0, 0xff, 0x82, 0x81, 0x89, 0x06, 0xf7, 0xb5, 0x24, 0x1c, 0x26, 0xf2, 0xbd, 0xd1, 0xca, - 0xc1, 0x7f, 0x61, 0xb7, 0xf0, 0x1d, 0x2e, 0x1b, 0x3d, 0x60, 0x10, 0x04, 0x09, 0x45, 0x00, 0x91, - 0x04, 0x0d, 0x4d, 0x60, 0x11, 0x05, 0x16, 0x55, 0x30, 0x91, 0x45, 0x36, 0xba, 0x08, 0x47, 0x18, - 0x18, 0x94, 0x79, 0x1a, 0x69, 0x70, 0x9c, 0xd8, 0x93, 0x64, 0x83, 0xe2, 0xc8, 0x30, 0x00, 0x07, - 0x0e, 0x74, 0x10, 0x81, 0x07, 0x18, 0x7c, 0x50, 0x01, 0x08, 0x1e, 0x84, 0xe0, 0x81, 0x08, 0x1b, - 0x8c, 0x30, 0x00, 0x09, 0x04, 0x94, 0xe0, 0x80, 0x29, 0x33, 0x58, 0xe6, 0x1c, 0xd8, 0x6f, 0x3e, - 0x67, 0x24, 0xce, 0x89, 0x55, 0x06, 0x4e, 0xb0, 0x00, 0x85, 0x0c, 0x52, 0x0a, 0x80, 0x0a, 0x1d, - 0xac, 0xd4, 0x00, 0x96, 0x1a, 0xd0, 0xd2, 0x01, 0x5c, 0x58, 0xe0, 0x05, 0x06, 0x60, 0xb0, 0x20, - 0x96, 0x19, 0x7e, 0x3d, 0x0a, 0x6e, 0x12, 0x5c, 0x67, 0xb9, 0x3a, 0xaf, 0x16, 0xcb, 0x00, 0xf5, - 0x2f, 0x58, 0x1d, 0x61, 0x6a, 0x40, 0x4d, 0x03, 0xb0, 0x29, 0x02, 0x37, 0x2d, 0x00, 0xa7, 0x0e, - 0xe4, 0xd4, 0x01, 0x9d, 0x2e, 0xb0, 0xc3, 0x04, 0x3c, 0x50, 0xd0, 0xcb, 0xa4, 0x23, 0x7e, 0x24, - 0xca, 0x37, 0x9f, 0x18, 0x26, 0x9a, 0xde, 0x9a, 0x78, 0xd1, 0xf9, 0x08, 0x7c, 0x6a, 0xac, 0xb2, - 0x5c, 0x0d, 0xe0, 0x35, 0x38, 0xd1, 0xf4, 0x76, 0x26, 0x2a, 0x6e, 0xe5, 0x22, 0x9f, 0x7a, 0x2b, - 0x4c, 0x52, 0x3b, 0x4d, 0x63, 0xec, 0xed, 0xdc, 0x0e, 0x23, 0x67, 0x64, 0x66, 0xa7, 0xd9, 0x2c, - 0x9c, 0x8b, 0xa6, 0xa3, 0x11, 0xf0, 0x46, 0x68, 0x07, 0x1f, 0xf5, 0x2c, 0xe6, 0x3c, 0x1e, 0x9a, - 0xd8, 0x0c, 0x8f, 0xef, 0x97, 0x4b, 0xf9, 0x85, 0x74, 0x41, 0x77, 0xf4, 0xb4, 0x54, 0xee, 0x96, - 0xc3, 0x56, 0xc0, 0xb3, 0x31, 0x8b, 0x65, 0x30, 0x1b, 0x53, 0x86, 0xf9, 0xcc, 0xc6, 0x08, 0xda, - 0x08, 0xcc, 0xc6, 0xc8, 0xd9, 0xd6, 0xcc, 0xc6, 0x08, 0x5f, 0x10, 0xb3, 0x31, 0x64, 0xa6, 0x1f, - 0x94, 0x8e, 0x9e, 0x6c, 0xcc, 0x34, 0x8c, 0xd2, 0x97, 0xbb, 0x0a, 0x12, 0x31, 0x07, 0xc0, 0x4b, - 0xc0, 0x98, 0x7d, 0xfb, 0xb5, 0x0f, 0xf6, 0x81, 0xbd, 0x85, 0x36, 0x3b, 0x57, 0x79, 0x60, 0xb1, - 0xb6, 0x1c, 0xb0, 0xbb, 0xb9, 0xbe, 0xba, 0x1e, 0xc0, 0x89, 0xa1, 0x4a, 0x8f, 0xf3, 0xcf, 0x5d, - 0x40, 0xf0, 0x91, 0x2e, 0x40, 0xb8, 0x0b, 0x68, 0xec, 0x1e, 0x36, 0x0e, 0xf7, 0x0f, 0x76, 0x0f, - 0xf7, 0xe8, 0x0b, 0x18, 0x90, 0xd0, 0xfa, 0xc7, 0x9f, 0x77, 0x4c, 0xf7, 0xf3, 0xac, 0x7b, 0xc6, - 0xcd, 0x7c, 0x30, 0xe1, 0xcd, 0xfb, 0x14, 0x3f, 0xdf, 0xbf, 0x5c, 0x07, 0x13, 0xfe, 0x65, 0x98, - 0xcf, 0x84, 0xbf, 0xa0, 0x9d, 0xc0, 0x84, 0xbf, 0x9c, 0x6d, 0xcd, 0x84, 0xbf, 0xf0, 0x05, 0x31, - 0xe1, 0x4f, 0x6a, 0xfa, 0x41, 0xe9, 0xe8, 0x4a, 0xf8, 0xff, 0xa6, 0x20, 0xdf, 0xbf, 0xc7, 0x7c, - 0x7f, 0xc9, 0x1f, 0xe6, 0xfb, 0x19, 0x57, 0xe4, 0xb8, 0x1c, 0xe6, 0xfb, 0x79, 0x9a, 0x17, 0xe1, - 0x02, 0x98, 0xef, 0x17, 0xef, 0x02, 0x76, 0xf7, 0x98, 0xe8, 0x67, 0x20, 0x42, 0xeb, 0x3f, 0xfb, - 0x30, 0xd1, 0x4f, 0x8b, 0xe1, 0x8f, 0x64, 0xe9, 0xd7, 0x20, 0x7e, 0xd5, 0x7e, 0xfc, 0x6b, 0x12, - 0x17, 0x97, 0xdb, 0x2d, 0x7f, 0xad, 0x7f, 0x3e, 0x84, 0xfe, 0xf3, 0x7f, 0x95, 0x78, 0xa5, 0xa2, - 0x9e, 0xdd, 0x0b, 0xb4, 0x73, 0x41, 0xfb, 0x86, 0xa0, 0xfb, 0x85, 0x40, 0xd9, 0x9e, 0x63, 0xf5, - 0xca, 0x14, 0x3a, 0xc7, 0xea, 0x95, 0xb7, 0x5d, 0x39, 0x56, 0x4f, 0x1a, 0x6a, 0x72, 0xac, 0x1e, - 0x99, 0xe6, 0xef, 0x25, 0x02, 0xfb, 0x9a, 0x2f, 0xf3, 0xf8, 0x23, 0x13, 0x5c, 0xc7, 0xe6, 0x1a, - 0xd1, 0xe3, 0xaf, 0x26, 0xaa, 0x00, 0x76, 0xf2, 0x58, 0xdd, 0x65, 0x00, 0xf8, 0xe2, 0xc5, 0x22, - 0x48, 0xaa, 0x2f, 0x10, 0x93, 0xa1, 0x52, 0x85, 0x2d, 0x45, 0x19, 0xea, 0xfe, 0xda, 0xdc, 0xa3, - 0x05, 0x45, 0x98, 0x33, 0x74, 0xa0, 0x67, 0xe6, 0x40, 0xcf, 0xc8, 0xc1, 0x9c, 0x89, 0x83, 0xe2, - 0x40, 0x40, 0x73, 0xb8, 0x95, 0xca, 0xdd, 0x22, 0x5d, 0x55, 0x94, 0xa4, 0xf1, 0x74, 0x90, 0x46, - 0x4b, 0xa2, 0xed, 0x2c, 0x1e, 0xb4, 0xbb, 0x5c, 0xb4, 0xdf, 0x5d, 0x3e, 0x5d, 0xdf, 0x4d, 0xc2, - 0xc4, 0x6f, 0xcd, 0x1e, 0xab, 0xdf, 0x4a, 0x26, 0xbe, 0x37, 0xba, 0xf3, 0xdb, 0xa9, 0x9b, 0x44, - 0x7e, 0x67, 0xf9, 0xc8, 0xfc, 0xec, 0x7b, 0xfa, 0xf3, 0x07, 0xe4, 0xdb, 0xab, 0x27, 0xd2, 0x0f, - 0x87, 0x18, 0x6c, 0xf6, 0x89, 0x37, 0x10, 0x6a, 0x76, 0xa1, 0x68, 0xae, 0x53, 0xb9, 0xcb, 0x94, - 0xed, 0x13, 0xe4, 0xee, 0x34, 0xc1, 0xbb, 0xcc, 0x0a, 0x86, 0xb7, 0x61, 0x54, 0xbb, 0x89, 0xc7, - 0xd3, 0x09, 0xd2, 0x55, 0xe0, 0x0f, 0x46, 0xf3, 0x1e, 0xf0, 0x4d, 0x98, 0xc9, 0x7b, 0xc0, 0x73, - 0x94, 0x2b, 0xef, 0x01, 0xcf, 0x33, 0x39, 0xc3, 0x7b, 0xc0, 0x8b, 0x45, 0x32, 0xde, 0x03, 0x5e, - 0x35, 0x0a, 0x87, 0xb9, 0x07, 0x1c, 0xeb, 0x3a, 0x4b, 0xc8, 0x6b, 0x2c, 0x79, 0xef, 0x37, 0x01, - 0x47, 0x01, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, - 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0x52, 0xd6, 0xe7, 0xd9, 0xd3, 0x06, 0x27, 0x0b, 0xf4, - 0x1c, 0x44, 0xb1, 0x58, 0x99, 0x50, 0xa5, 0x18, 0xae, 0xd0, 0x21, 0x4b, 0x0d, 0x6c, 0xa9, 0x81, - 0x2e, 0x1d, 0xf0, 0x85, 0x05, 0x61, 0x60, 0x30, 0x96, 0x49, 0x04, 0xbf, 0x58, 0x19, 0xf6, 0xf2, - 0x01, 0xe0, 0x4b, 0x07, 0xc0, 0x87, 0x0f, 0x61, 0xdf, 0x98, 0xa8, 0x60, 0xca, 0xa1, 0x8a, 0x09, - 0x23, 0x5a, 0x86, 0x0b, 0x69, 0x9a, 0x27, 0xf2, 0x09, 0xfb, 0xfe, 0x50, 0x6e, 0x6d, 0x61, 0x5b, - 0x5b, 0xcb, 0x25, 0x01, 0xaa, 0xf6, 0x38, 0x67, 0xd6, 0x14, 0xf2, 0x79, 0xc7, 0xc0, 0x2b, 0xc7, - 0x0d, 0x09, 0x7d, 0x81, 0xb7, 0x8a, 0x8b, 0xbb, 0x55, 0x5c, 0xd8, 0x8d, 0x7d, 0x51, 0x37, 0xbb, - 0x45, 0x2b, 0xe9, 0x04, 0xd9, 0xec, 0x25, 0xa6, 0x73, 0x21, 0x7b, 0x39, 0x88, 0x34, 0x97, 0x8b, - 0x0d, 0x4d, 0xaa, 0xdd, 0x04, 0x1b, 0x9a, 0xe4, 0xb8, 0x05, 0x84, 0x72, 0xfc, 0x1c, 0x5b, 0x3d, - 0x6f, 0xc3, 0xe8, 0x6c, 0xfe, 0x18, 0xd8, 0xd4, 0xa5, 0xcd, 0xd3, 0x58, 0xc1, 0x5d, 0x10, 0x8e, - 0x82, 0xab, 0x91, 0xa9, 0x5d, 0x05, 0xd1, 0xf0, 0x43, 0x38, 0x9c, 0x6f, 0x5f, 0x94, 0xe6, 0xae, - 0x27, 0x8c, 0x67, 0x93, 0xd7, 0x26, 0xcc, 0x64, 0x93, 0x57, 0x8e, 0xb2, 0x65, 0x93, 0x57, 0x7e, - 0xdb, 0x8b, 0x4d, 0x5e, 0x45, 0x63, 0x2a, 0x9b, 0xbc, 0xaa, 0x16, 0x99, 0xb0, 0xc9, 0x2b, 0xdf, - 0xf3, 0x81, 0x4d, 0x5e, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, 0x1d, 0x54, 0xe0, 0x81, 0x07, 0x1f, - 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, 0x38, 0x40, 0xca, 0x0c, 0xc6, 0xc9, - 0xfd, 0x3c, 0x7b, 0xd6, 0xa0, 0x64, 0x80, 0x9e, 0x03, 0x28, 0x36, 0x78, 0x11, 0xa8, 0x14, 0x83, - 0x15, 0x3a, 0x60, 0xa9, 0x01, 0x2d, 0x35, 0xc0, 0xa5, 0x03, 0xbc, 0xb0, 0x00, 0x0c, 0x0c, 0xc4, - 0x32, 0x89, 0xe0, 0x37, 0x78, 0x85, 0xc6, 0x98, 0xeb, 0xd1, 0x38, 0xc0, 0xee, 0xf2, 0x3a, 0x04, - 0x34, 0xbd, 0x65, 0xa2, 0x9b, 0x39, 0x18, 0xb3, 0xcd, 0xab, 0xe0, 0x27, 0xcf, 0x36, 0x2f, 0x39, - 0xcb, 0xc8, 0x7a, 0x41, 0xd8, 0x02, 0xc2, 0x43, 0x78, 0x03, 0x5b, 0x9b, 0x6d, 0x5e, 0xdc, 0xda, - 0xdc, 0xda, 0x3a, 0xa2, 0x01, 0x5c, 0xab, 0xdf, 0xb1, 0x51, 0xa4, 0xea, 0x47, 0x93, 0x95, 0x22, - 0xc6, 0x86, 0x59, 0x5c, 0x38, 0xb7, 0x9e, 0x19, 0xef, 0x22, 0xcc, 0x66, 0xc6, 0xbb, 0x44, 0x9d, - 0x33, 0xe3, 0x5d, 0xde, 0x76, 0x65, 0xc6, 0x5b, 0xd8, 0x42, 0x98, 0xf1, 0x26, 0xd1, 0x7c, 0x45, - 0x22, 0x0a, 0x32, 0xde, 0x43, 0x13, 0xa5, 0x61, 0x7a, 0x0f, 0x7e, 0x07, 0x33, 0xe0, 0xcc, 0x14, - 0xcb, 0x5d, 0x3e, 0xfa, 0xe3, 0x20, 0x01, 0x3e, 0xb7, 0x56, 0x42, 0x72, 0xfb, 0x6e, 0xdf, 0xef, - 0x5f, 0x1c, 0x7b, 0xad, 0x4b, 0xdf, 0x7b, 0xdb, 0x75, 0x50, 0x8f, 0xaf, 0x79, 0x9e, 0x26, 0x81, - 0x7d, 0x11, 0xb1, 0x05, 0xfd, 0x32, 0xe2, 0x0b, 0x45, 0xf9, 0x3d, 0xc7, 0x3e, 0x79, 0x65, 0x1f, - 0xbb, 0x2d, 0xd7, 0x7b, 0xbb, 0x14, 0x57, 0x1f, 0x59, 0x5d, 0x9a, 0x54, 0xa6, 0x43, 0x6d, 0x5f, - 0x55, 0x9d, 0x7d, 0x69, 0xbb, 0x2d, 0xfb, 0xb8, 0xe5, 0xf8, 0xc7, 0x76, 0xa7, 0xf9, 0x2f, 0xb7, - 0xe9, 0xbd, 0xb2, 0xe0, 0x57, 0xfc, 0xe9, 0x57, 0xca, 0x4e, 0xb6, 0xec, 0x7a, 0x4e, 0xdf, 0x6d, - 0x5e, 0xd8, 0x2d, 0xaa, 0x8e, 0xaa, 0x2b, 0xd0, 0xd9, 0x35, 0x7f, 0xf7, 0xfb, 0x6e, 0x93, 0x52, - 0xa3, 0xd4, 0xf2, 0x96, 0x5a, 0xcb, 0xed, 0xbc, 0xf6, 0xbb, 0xbd, 0x73, 0xcf, 0x39, 0xf1, 0xdc, - 0xf3, 0xce, 0x82, 0xea, 0xa8, 0x3b, 0xea, 0xae, 0x08, 0xdd, 0x35, 0x9d, 0x96, 0xfd, 0x96, 0x6a, - 0xa3, 0xda, 0x8a, 0x53, 0x9b, 0x7f, 0x69, 0xf7, 0x5c, 0x7b, 0xe6, 0xea, 0xa8, 0x3b, 0xea, 0x2e, - 0x6f, 0xdd, 0xb9, 0xdd, 0xcb, 0x7d, 0xdf, 0xed, 0x78, 0x4e, 0xef, 0xd4, 0x3e, 0x71, 0x7c, 0xbb, - 0xd9, 0xec, 0x39, 0xfd, 0x3e, 0x95, 0x47, 0xe5, 0xe5, 0xad, 0xbc, 0x2c, 0x5e, 0xf5, 0x4f, 0xce, - 0x3b, 0x7d, 0xaf, 0x67, 0xbb, 0x1d, 0x8f, 0xc2, 0xa3, 0xf0, 0x72, 0x17, 0x5e, 0xdb, 0x7e, 0xe3, - 0xf7, 0x9c, 0xbe, 0xd3, 0xbb, 0x64, 0xb6, 0x8e, 0xda, 0x2b, 0x01, 0xf3, 0x6c, 0xcf, 0xeb, 0xb9, - 0xc7, 0x17, 0x9e, 0x43, 0x77, 0x47, 0xc9, 0xe5, 0x2e, 0xb9, 0x0b, 0xcf, 0x6d, 0xb9, 0xff, 0x76, - 0x9a, 0x74, 0x74, 0x54, 0x5d, 0x71, 0xaa, 0x73, 0xde, 0x78, 0x4e, 0xa7, 0xe9, 0x34, 0x7d, 0xbb, - 0xd9, 0x76, 0x3b, 0xfe, 0x59, 0xef, 0xfc, 0xa2, 0x4b, 0xdd, 0x51, 0x77, 0x79, 0xeb, 0xce, 0x6e, - 0xfe, 0xee, 0xb7, 0xec, 0x0e, 0x5f, 0x4e, 0x50, 0x6e, 0x85, 0x1c, 0xae, 0x9d, 0x2c, 0x78, 0x75, - 0x9a, 0x7e, 0xab, 0x4f, 0x1f, 0x47, 0xd1, 0xe5, 0x2e, 0x3a, 0xb7, 0x7b, 0xd9, 0x60, 0xce, 0x8e, - 0xca, 0x2b, 0x5e, 0x79, 0x9e, 0xe3, 0x37, 0x9d, 0x53, 0xfb, 0xa2, 0xe5, 0xf9, 0x6d, 0xc7, 0xeb, - 0xb9, 0x27, 0x14, 0x1d, 0x45, 0x97, 0xb7, 0xe8, 0x66, 0xf1, 0x43, 0xdb, 0x7e, 0xc3, 0x17, 0xb2, - 0x54, 0x5d, 0x81, 0xaa, 0x9b, 0xab, 0xad, 0x75, 0xce, 0x73, 0x95, 0x62, 0x2b, 0xc0, 0xc5, 0xad, - 0xdc, 0x1b, 0x73, 0x74, 0x54, 0x5d, 0x81, 0xc1, 0xeb, 0xe2, 0x35, 0x18, 0x73, 0xc3, 0xd4, 0x5d, - 0xc1, 0xf1, 0xeb, 0xbe, 0xdf, 0x71, 0xdc, 0xb3, 0x57, 0xc7, 0xe7, 0x3d, 0x86, 0xaf, 0x14, 0x5e, - 0xa1, 0x4c, 0xc7, 0xc4, 0x30, 0xa5, 0x56, 0x88, 0x8f, 0x6b, 0xd0, 0xc7, 0x51, 0x78, 0x85, 0x0b, - 0x4f, 0xd7, 0xfb, 0x56, 0xe8, 0x15, 0xbc, 0xe3, 0x2c, 0x4b, 0x6e, 0xef, 0x4d, 0x6d, 0x6b, 0x4d, - 0xdd, 0xc5, 0x94, 0x97, 0x34, 0x79, 0x69, 0xea, 0x22, 0xa6, 0xba, 0xe4, 0x31, 0x09, 0x78, 0xb7, - 0x30, 0x25, 0x25, 0x32, 0x94, 0x57, 0xd3, 0x15, 0x4c, 0x7d, 0x89, 0xd4, 0x17, 0xf8, 0xcb, 0x66, - 0xaa, 0x4a, 0xae, 0xaa, 0x34, 0x74, 0xf9, 0x52, 0x5f, 0xd2, 0xf4, 0xa5, 0xad, 0x9b, 0x97, 0x0a, - 0x93, 0xa6, 0x30, 0x65, 0x5d, 0xbb, 0x14, 0x98, 0x34, 0x81, 0xe9, 0xeb, 0xce, 0xa5, 0xc6, 0x44, - 0x62, 0x98, 0x86, 0x2e, 0x5c, 0x4a, 0x4b, 0x9a, 0xb4, 0x34, 0x75, 0xdb, 0x52, 0x5d, 0xd2, 0xd4, - 0xa5, 0xab, 0xab, 0x96, 0xfa, 0x92, 0xa6, 0x2f, 0x15, 0xdd, 0xb3, 0x94, 0x95, 0xb8, 0x43, 0x51, - 0x4f, 0x97, 0x2c, 0xc5, 0x25, 0x4d, 0x5c, 0xda, 0xba, 0x61, 0xa9, 0x30, 0x69, 0x0a, 0x53, 0xd4, - 0xf5, 0x4a, 0x71, 0x49, 0x13, 0x97, 0xa6, 0xee, 0x56, 0xaa, 0x4b, 0x9a, 0xba, 0x14, 0x74, 0xb1, - 0x52, 0x54, 0xe2, 0x5c, 0x96, 0xa2, 0x6e, 0x55, 0xaa, 0x4b, 0x5e, 0xb0, 0xa8, 0xa9, 0x2b, 0x95, - 0xfa, 0x12, 0x18, 0x2f, 0x6a, 0xea, 0x3e, 0xa5, 0xc0, 0x44, 0x32, 0x17, 0x13, 0xa8, 0x94, 0xd4, - 0x46, 0x7d, 0x56, 0x83, 0x3e, 0x8b, 0x02, 0xcb, 0x4d, 0x60, 0x7c, 0x9f, 0x48, 0x59, 0x6d, 0x40, - 0x56, 0xbd, 0xf3, 0x0b, 0xcf, 0xe9, 0xf9, 0x27, 0x76, 0x97, 0x77, 0xf1, 0x52, 0x6f, 0xa5, 0xea, - 0xee, 0xf1, 0xbf, 0x71, 0xee, 0x02, 0x25, 0x57, 0x88, 0xe4, 0xec, 0xd6, 0xd9, 0x79, 0xcf, 0xf5, - 0x5e, 0xb5, 0x39, 0x7a, 0xa1, 0xdc, 0x0f, 0x47, 0x2f, 0x70, 0x87, 0xf3, 0x30, 0xa1, 0xb4, 0x78, - 0x68, 0x50, 0x59, 0xd5, 0x08, 0xe8, 0xbb, 0x9f, 0x07, 0xf4, 0x8c, 0xbb, 0xa8, 0xb6, 0xe2, 0x55, - 0xd7, 0xed, 0x39, 0xa7, 0xee, 0x1b, 0xff, 0xb4, 0x65, 0x9f, 0x71, 0xd8, 0x1d, 0xf5, 0x56, 0x94, - 0xde, 0x78, 0xd9, 0x13, 0xd5, 0x56, 0x80, 0xda, 0xe6, 0x6f, 0x8e, 0x97, 0x08, 0x47, 0xc5, 0x51, - 0x71, 0xf9, 0x2b, 0xce, 0xb3, 0xcf, 0xf6, 0x1b, 0x14, 0x1a, 0x85, 0x56, 0x80, 0x6b, 0x6b, 0xd0, - 0xb5, 0x51, 0x71, 0x85, 0xba, 0x36, 0x26, 0xc9, 0xcb, 0xfd, 0x30, 0x49, 0xce, 0x6d, 0xcd, 0xc8, - 0x9f, 0xba, 0x62, 0x84, 0x4f, 0x55, 0x55, 0x4b, 0x55, 0x5a, 0x22, 0x79, 0x2a, 0x8b, 0x11, 0x3b, - 0x05, 0xa5, 0xdd, 0x55, 0x35, 0xe8, 0xaa, 0xa8, 0x2c, 0x46, 0xe0, 0x0a, 0x22, 0x6f, 0xbc, 0x88, - 0x1b, 0xeb, 0x39, 0xe3, 0x58, 0x8b, 0x61, 0x29, 0x88, 0xd3, 0xb6, 0xec, 0x28, 0x1a, 0xa7, 0x41, - 0x1a, 0x8e, 0x23, 0xeb, 0x08, 0xc8, 0x5d, 0x5b, 0xc9, 0xe0, 0xbd, 0xb9, 0x0d, 0x26, 0x41, 0xfa, - 0x7e, 0xe6, 0xa0, 0xeb, 0xe3, 0x89, 0x89, 0x06, 0xe3, 0xe8, 0x3a, 0xbc, 0xa9, 0x45, 0x26, 0xfd, - 0x30, 0x8e, 0xff, 0xac, 0x85, 0x51, 0x92, 0x06, 0xd1, 0xc0, 0xd4, 0xbf, 0xfc, 0x42, 0xb2, 0xf6, - 0x95, 0xfa, 0x24, 0x1e, 0xa7, 0xe3, 0xc1, 0x78, 0x94, 0x64, 0xbf, 0xab, 0x87, 0x49, 0x98, 0xd4, - 0x47, 0xe6, 0xce, 0x8c, 0x96, 0xbf, 0xd4, 0x47, 0x61, 0xf4, 0x67, 0x2d, 0x49, 0x83, 0xd4, 0xd4, - 0x86, 0x41, 0x1a, 0x5c, 0x05, 0x89, 0xa9, 0x8f, 0x92, 0x49, 0x3d, 0x1d, 0xdd, 0x25, 0xb3, 0x7f, - 0xd4, 0x6f, 0xd3, 0x5a, 0x98, 0x44, 0xf5, 0xc8, 0x84, 0x37, 0xef, 0xaf, 0xc6, 0x71, 0x92, 0xfd, - 0xae, 0xfe, 0xf0, 0x57, 0x67, 0x7f, 0x65, 0x32, 0xbd, 0x9a, 0x7f, 0xe3, 0xe2, 0xd7, 0x7a, 0x70, - 0x17, 0x84, 0xa3, 0xe0, 0x6a, 0x64, 0x6a, 0x57, 0x41, 0x34, 0xfc, 0x10, 0x0e, 0xd3, 0xf7, 0xf5, - 0xf9, 0xdf, 0x85, 0x71, 0xd0, 0xc8, 0xdf, 0x94, 0xb2, 0x2d, 0x14, 0xee, 0x2e, 0xd0, 0xdc, 0x44, - 0x15, 0xdc, 0x03, 0x40, 0x6d, 0xa2, 0x95, 0xa4, 0xf1, 0x74, 0x90, 0x46, 0x4b, 0x8c, 0xee, 0x2c, - 0x9e, 0xab, 0xbb, 0x5c, 0xa3, 0xdf, 0x5d, 0x3e, 0x4c, 0xdf, 0x4d, 0xc2, 0xc4, 0x6f, 0xcd, 0x9e, - 0xa2, 0xdf, 0x4a, 0x26, 0xbe, 0x37, 0xba, 0xf3, 0xdb, 0xa9, 0x9b, 0x44, 0x7e, 0x67, 0xf9, 0x84, - 0xfc, 0xec, 0x7b, 0xfa, 0xf3, 0xe7, 0xe1, 0xdb, 0xab, 0xe7, 0x71, 0x9c, 0x3d, 0x8e, 0x5f, 0xe8, - 0x7d, 0x94, 0x79, 0x1e, 0x2b, 0xd3, 0x7a, 0x6d, 0x30, 0x8e, 0x92, 0x34, 0x0e, 0xc2, 0x28, 0x4d, - 0xc4, 0x3b, 0xa0, 0x2c, 0x6c, 0x7c, 0xda, 0x7c, 0xe1, 0x9e, 0xfe, 0x75, 0x18, 0x0d, 0xad, 0xa3, - 0xad, 0x1d, 0xe1, 0x66, 0x9e, 0xcc, 0xbd, 0xb9, 0x75, 0xb4, 0xb5, 0x2d, 0xdc, 0xd0, 0x6e, 0x6c, - 0xae, 0xc3, 0x8f, 0x18, 0xa7, 0xe6, 0x4a, 0xb8, 0xe3, 0x41, 0x6d, 0x76, 0xbe, 0x21, 0x9c, 0x30, - 0xfd, 0xf1, 0x34, 0x1e, 0x18, 0x98, 0xd8, 0xc5, 0x7a, 0x6d, 0xee, 0x3f, 0x8c, 0xe3, 0xd9, 0x0e, - 0xb3, 0x26, 0x0b, 0x65, 0x80, 0x04, 0x8a, 0xaf, 0x82, 0xc4, 0x8e, 0x6f, 0xa6, 0xb7, 0x26, 0x4a, - 0xad, 0xa3, 0xad, 0x34, 0x9e, 0x1a, 0x94, 0x08, 0xf7, 0xc1, 0xea, 0x4c, 0xd8, 0x8c, 0x56, 0x54, - 0x47, 0x2b, 0xcd, 0x30, 0xc6, 0x70, 0xb8, 0x4f, 0x11, 0x02, 0x8e, 0x2f, 0xfb, 0x3b, 0xce, 0x41, - 0x71, 0x6b, 0x18, 0xb8, 0x03, 0x87, 0x3d, 0x88, 0xf8, 0x03, 0x8c, 0x41, 0xa8, 0x38, 0x04, 0x8f, - 0x45, 0xf0, 0x78, 0x84, 0x8d, 0x49, 0x18, 0xb8, 0x04, 0x82, 0x4d, 0x70, 0xf8, 0x94, 0x19, 0x8c, - 0x94, 0x1d, 0x7a, 0xf6, 0xb4, 0xc1, 0xc9, 0x11, 0x81, 0x43, 0x14, 0x2c, 0x4c, 0x21, 0x43, 0x95, - 0x02, 0xb8, 0x42, 0x87, 0x2c, 0x35, 0xb0, 0xa5, 0x06, 0xba, 0x74, 0xc0, 0x17, 0x16, 0x84, 0x81, - 0xc1, 0x18, 0x2c, 0x94, 0x3d, 0x01, 0x67, 0xb8, 0x1e, 0x73, 0x9d, 0xd1, 0x50, 0x5d, 0x26, 0x26, - 0xaa, 0xc1, 0x23, 0x9b, 0x06, 0x74, 0x53, 0x84, 0x70, 0x5a, 0x50, 0x4e, 0x1d, 0xd2, 0xa9, 0x43, - 0x3b, 0x5d, 0x88, 0x87, 0x89, 0x7a, 0xa0, 0xc8, 0x07, 0x8f, 0x7e, 0x4f, 0x20, 0x60, 0x2d, 0x1c, - 0xe2, 0x3b, 0xdb, 0x75, 0x1a, 0x9c, 0x2d, 0x0b, 0xdc, 0x3f, 0x2d, 0xc1, 0x70, 0x1b, 0x7c, 0x19, - 0xe8, 0x80, 0xa8, 0x09, 0x14, 0x15, 0x02, 0xa3, 0x36, 0x70, 0x54, 0x0b, 0x90, 0x6a, 0x41, 0x52, - 0x27, 0x50, 0x62, 0x83, 0x25, 0x38, 0x60, 0x66, 0x92, 0xf2, 0xee, 0x27, 0x46, 0xd7, 0x89, 0x33, - 0x32, 0xc1, 0x75, 0x6c, 0xae, 0x35, 0x9c, 0x38, 0xab, 0xcc, 0xdd, 0x81, 0x82, 0xb5, 0x74, 0x97, - 0x8d, 0x59, 0x2f, 0x5e, 0x2c, 0x9a, 0x1c, 0xeb, 0x9f, 0xa3, 0xf4, 0x2f, 0x74, 0x61, 0x74, 0x5f, - 0xdf, 0xa7, 0xa8, 0x45, 0xaf, 0xac, 0x9a, 0xd0, 0x72, 0xb1, 0x1c, 0x1d, 0x21, 0xe5, 0x0e, 0x43, - 0x4a, 0x86, 0x94, 0x0c, 0x29, 0x19, 0x52, 0x32, 0xa4, 0x64, 0x48, 0x49, 0x1e, 0xab, 0x56, 0x48, - 0x89, 0xfe, 0xee, 0x22, 0x5b, 0xc8, 0xc3, 0xdc, 0x85, 0x23, 0x6d, 0x03, 0xc6, 0x91, 0x46, 0x4a, - 0x7c, 0x0f, 0x78, 0x6e, 0x2b, 0x59, 0x8e, 0x16, 0x00, 0xd5, 0x08, 0xa2, 0x8a, 0x81, 0x54, 0x2b, - 0x98, 0xaa, 0x07, 0x54, 0xf5, 0xa0, 0xaa, 0x1b, 0x58, 0x75, 0x80, 0xab, 0x12, 0x80, 0xcd, 0xa4, - 0xa6, 0xe6, 0xdd, 0xc8, 0xda, 0x89, 0x15, 0x1a, 0x63, 0xae, 0x47, 0xe3, 0x20, 0x7d, 0xb9, 0xab, - 0xe9, 0xd4, 0x5a, 0x42, 0xe0, 0xa1, 0xa2, 0x25, 0xb5, 0x4c, 0x74, 0x33, 0x0f, 0x40, 0xfe, 0x50, - 0xe5, 0xc6, 0x75, 0x61, 0xc5, 0xfc, 0x27, 0xd5, 0x0e, 0x23, 0x75, 0xbc, 0xa4, 0x34, 0xbc, 0x5a, - 0x5b, 0xde, 0xfc, 0xd2, 0x64, 0xeb, 0x68, 0xab, 0xa1, 0x74, 0x7d, 0xa7, 0x71, 0x30, 0x48, 0xc3, - 0x71, 0xd4, 0x0c, 0x6f, 0xc2, 0x79, 0xc3, 0xf4, 0xb6, 0xba, 0x75, 0x7e, 0xfa, 0x55, 0xa1, 0x4b, - 0x09, 0x3e, 0xd2, 0xa5, 0xd0, 0xa5, 0xd0, 0xa5, 0x30, 0x1a, 0xe3, 0x6a, 0x1e, 0x3e, 0xef, 0x7e, - 0xe1, 0xcf, 0x83, 0x47, 0xee, 0x66, 0xdc, 0x98, 0xae, 0x3e, 0x95, 0xb5, 0x40, 0x5f, 0x53, 0xbf, - 0x8a, 0x52, 0x72, 0xe0, 0xbb, 0x1e, 0xa4, 0x0d, 0xc5, 0x77, 0x3d, 0x38, 0x6e, 0x82, 0xef, 0x7a, - 0xc0, 0x17, 0xc8, 0x77, 0x3d, 0x64, 0xc0, 0x82, 0xa4, 0xa6, 0xf7, 0x5d, 0xcf, 0x34, 0x8c, 0x74, - 0xbe, 0xe6, 0x39, 0x50, 0xb4, 0xa4, 0x5e, 0x10, 0xdd, 0x18, 0xbe, 0xe5, 0x91, 0xff, 0x83, 0xe2, - 0x5b, 0x1e, 0xdc, 0xe5, 0xad, 0x52, 0xb2, 0xdb, 0x4c, 0xc9, 0x12, 0x37, 0x04, 0xb9, 0x14, 0xbe, - 0xe5, 0x81, 0x77, 0x29, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0x7d, 0x0b, - 0x03, 0x32, 0xae, 0x66, 0x93, 0x1f, 0xbe, 0xee, 0xe1, 0x0a, 0x2a, 0x4f, 0x0e, 0xa8, 0xb7, 0x76, - 0x3f, 0xbb, 0x1e, 0x6d, 0xd7, 0xf5, 0x3e, 0x79, 0xf3, 0xe7, 0x93, 0x5f, 0xad, 0x3f, 0xfe, 0x1f, - 0x1e, 0x7d, 0x19, 0xe8, 0xee, 0x6f, 0x7d, 0x2e, 0x82, 0xe3, 0x2d, 0x0b, 0x8d, 0x0a, 0xcc, 0xbd, - 0x96, 0xb7, 0xd3, 0x56, 0x2b, 0x4c, 0x52, 0x3b, 0x4d, 0xc1, 0xe7, 0x75, 0xb6, 0xc3, 0xc8, 0x19, - 0x99, 0x5b, 0xb3, 0xb8, 0x4f, 0x27, 0x9a, 0x8e, 0x46, 0xc0, 0x93, 0x61, 0xda, 0xc1, 0x47, 0x3d, - 0x8b, 0x39, 0x8f, 0x87, 0x26, 0x36, 0xc3, 0xe3, 0xfb, 0xe5, 0x52, 0xe8, 0xa8, 0x48, 0x5d, 0xa4, - 0xad, 0x9f, 0xa5, 0x2d, 0x0b, 0x7a, 0xf0, 0x55, 0x3c, 0x1d, 0xa4, 0xd1, 0xf2, 0xfd, 0x5e, 0x67, - 0xf1, 0xd3, 0x71, 0x97, 0x4f, 0xca, 0xef, 0x2e, 0x7f, 0x24, 0xbe, 0x9b, 0x84, 0x89, 0xdf, 0x9a, - 0xfd, 0x2c, 0xfc, 0x56, 0x32, 0xf1, 0xbd, 0xd1, 0x9d, 0xdf, 0x4e, 0xdd, 0x24, 0xf2, 0x3b, 0xcb, - 0xe7, 0xec, 0x67, 0xdf, 0xd3, 0x9f, 0x3f, 0x55, 0xff, 0x78, 0xf5, 0xfc, 0x4e, 0xb2, 0xe7, 0xe4, - 0x3f, 0xfc, 0x16, 0x13, 0x4d, 0x3f, 0xf1, 0x52, 0x1d, 0x7a, 0x76, 0x3d, 0x1e, 0x9d, 0x9e, 0x7c, - 0x71, 0x5d, 0xe2, 0x2f, 0xdc, 0xd1, 0x15, 0xdf, 0xcd, 0xd6, 0xed, 0x78, 0x68, 0x46, 0x88, 0x55, - 0xdb, 0x59, 0x69, 0x4e, 0xb6, 0x02, 0xcc, 0xcb, 0x3f, 0xb7, 0x79, 0xf9, 0x67, 0x31, 0x86, 0xf3, - 0xf2, 0xcf, 0x52, 0x97, 0xc0, 0xcb, 0x3f, 0x85, 0x2c, 0x84, 0x97, 0x7f, 0x92, 0x6a, 0xaa, 0x12, - 0xa7, 0xc0, 0x16, 0x24, 0x2b, 0x18, 0xc4, 0x8f, 0x3c, 0x78, 0x7f, 0x7d, 0xd0, 0x7e, 0x46, 0x99, - 0x8c, 0x99, 0x2a, 0x1f, 0x33, 0x61, 0xce, 0xcc, 0x87, 0x9e, 0x91, 0x0f, 0x3a, 0x13, 0x9f, 0xd1, - 0x12, 0xa3, 0x25, 0x46, 0x4b, 0x8c, 0x96, 0x18, 0x2d, 0x31, 0x5a, 0x92, 0x2f, 0x11, 0xd4, 0x99, - 0xf3, 0xb8, 0x49, 0xec, 0xb5, 0x23, 0x0b, 0x34, 0x99, 0xfd, 0x25, 0xa6, 0x81, 0x76, 0xaa, 0xc0, - 0x4f, 0x11, 0xd1, 0x30, 0x35, 0x44, 0xd1, 0x94, 0x10, 0x2d, 0x53, 0x41, 0xd4, 0x4d, 0x01, 0x51, - 0x37, 0xf5, 0x43, 0xd7, 0x94, 0x0f, 0xd6, 0x91, 0x17, 0x29, 0x1d, 0xf8, 0xa9, 0x1d, 0x9f, 0x4d, - 0xe9, 0xf8, 0x0d, 0xf9, 0xbc, 0x58, 0xe2, 0x13, 0x70, 0xff, 0xab, 0x92, 0x21, 0x1c, 0x0a, 0x7a, - 0xc3, 0x34, 0x0d, 0xd9, 0xd0, 0x36, 0xad, 0x50, 0xd9, 0x10, 0x0d, 0x8d, 0x8d, 0xed, 0x1a, 0xe6, - 0xb2, 0x6a, 0x1a, 0x8a, 0xa1, 0xd5, 0x05, 0xec, 0xee, 0xed, 0xd1, 0x09, 0x30, 0x10, 0xa1, 0xf5, - 0x8f, 0x3f, 0xef, 0xd8, 0x25, 0x43, 0x8b, 0xd1, 0x8f, 0x64, 0x76, 0xc9, 0xe0, 0x76, 0xc9, 0x00, - 0x8e, 0x91, 0x00, 0xaa, 0xf5, 0xfa, 0x85, 0xde, 0x66, 0x83, 0x5c, 0xbc, 0x18, 0x03, 0x01, 0xf6, - 0xe6, 0x10, 0x73, 0xe2, 0x03, 0xf4, 0x84, 0x07, 0xe8, 0x89, 0x0e, 0x98, 0x13, 0x1c, 0x50, 0x7c, - 0x08, 0x28, 0xa9, 0x54, 0x98, 0x50, 0x2c, 0xa8, 0x7a, 0xe9, 0xe2, 0x46, 0x2d, 0x60, 0x30, 0x9b, - 0x7c, 0x02, 0x92, 0x6d, 0xa1, 0x70, 0xbf, 0x8a, 0xe6, 0x4f, 0xab, 0xe1, 0x47, 0x65, 0xbb, 0x06, - 0xb9, 0x1b, 0x4e, 0xf0, 0x66, 0xb3, 0xcc, 0xc7, 0xd4, 0x44, 0x43, 0x33, 0xac, 0x05, 0xc3, 0xdb, - 0x30, 0xaa, 0xdd, 0xc4, 0xe3, 0xe9, 0x44, 0xfc, 0x96, 0xcb, 0xea, 0x15, 0x9e, 0xb4, 0x5e, 0xb8, - 0x6b, 0xc3, 0x68, 0xc4, 0x81, 0xa9, 0xe4, 0x44, 0xaa, 0xd8, 0x04, 0xac, 0xcc, 0x44, 0xab, 0xc0, - 0x84, 0xad, 0xb4, 0x84, 0xad, 0xa8, 0xc4, 0xac, 0x9c, 0x24, 0x9e, 0xff, 0xcc, 0x8f, 0x1c, 0xa5, - 0xd1, 0x05, 0xac, 0xd3, 0x18, 0xb2, 0xc3, 0x18, 0xac, 0xb3, 0x18, 0xae, 0x45, 0x05, 0xb1, 0x25, - 0x05, 0xb8, 0x05, 0x05, 0xb5, 0xe5, 0x04, 0xbe, 0xc5, 0x04, 0xbe, 0xa5, 0x04, 0xbb, 0x85, 0x84, - 0xef, 0x94, 0xab, 0x08, 0x48, 0x99, 0xc1, 0x90, 0x79, 0xa0, 0x67, 0x8f, 0x1d, 0xc0, 0xbc, 0xd0, - 0x73, 0x58, 0xc5, 0xf1, 0x96, 0xc4, 0x2c, 0xc5, 0xb8, 0x85, 0x8e, 0x5d, 0x6a, 0xf0, 0x4b, 0x0d, - 0x86, 0xe9, 0xc0, 0x31, 0x2c, 0x2c, 0x03, 0xc3, 0xb3, 0x4c, 0x22, 0xf8, 0xe3, 0x2d, 0x61, 0xef, - 0xd5, 0x07, 0xbe, 0x3f, 0x1f, 0xbc, 0x45, 0x17, 0xfb, 0x7e, 0x30, 0x05, 0xb3, 0x40, 0x54, 0xf4, - 0xe1, 0x69, 0x69, 0xc1, 0xd5, 0xd4, 0x75, 0xf7, 0x09, 0xfb, 0xb6, 0x3c, 0x6e, 0x6d, 0x61, 0x5b, - 0x5b, 0xcb, 0x7d, 0xf2, 0xaa, 0xf6, 0x38, 0x3b, 0x3b, 0x0b, 0xf9, 0xbc, 0x63, 0xe0, 0x95, 0xe3, - 0x86, 0x84, 0xbe, 0xae, 0x56, 0xc5, 0x35, 0xb5, 0x2a, 0xae, 0xa7, 0xc5, 0xbe, 0x96, 0x96, 0x0d, - 0xa7, 0x95, 0x74, 0x82, 0x6c, 0x16, 0x13, 0xd2, 0xe4, 0xf0, 0xd4, 0x5b, 0x42, 0xa4, 0xc6, 0x75, - 0x36, 0x41, 0xa9, 0xf6, 0x17, 0x6c, 0x82, 0x12, 0xe8, 0x1f, 0x10, 0x4a, 0xf6, 0x73, 0x6b, 0x17, - 0x75, 0x96, 0x0f, 0xc4, 0x9e, 0x3d, 0x8f, 0xb3, 0xf9, 0xe3, 0x60, 0x4b, 0x98, 0x36, 0xd7, 0x63, - 0x85, 0x93, 0xbb, 0x46, 0x2d, 0x8c, 0x52, 0x13, 0x5f, 0x07, 0x03, 0x53, 0x0b, 0x86, 0xc3, 0xd8, - 0x24, 0x09, 0x4e, 0x53, 0xd8, 0x33, 0xf6, 0xb3, 0x2d, 0x6c, 0x13, 0x66, 0xb2, 0x2d, 0x2c, 0x47, - 0xe5, 0xb2, 0x2d, 0x2c, 0xbf, 0xed, 0xc5, 0xb6, 0xb0, 0xa2, 0xe9, 0x95, 0x6d, 0x61, 0x55, 0x0b, - 0x58, 0xd8, 0x16, 0x96, 0xef, 0xf9, 0xc0, 0xb6, 0x30, 0x82, 0x0d, 0x22, 0xe0, 0x00, 0x83, 0x0e, - 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, 0x80, 0x11, 0x1c, - 0x20, 0x65, 0x06, 0xa3, 0x24, 0x7f, 0x9e, 0x3d, 0x69, 0x30, 0xb2, 0x3f, 0xcf, 0xc1, 0x13, 0x9b, - 0xbf, 0x08, 0x53, 0x8a, 0xa1, 0x0a, 0x1d, 0xae, 0xd4, 0x40, 0x96, 0x1a, 0xd8, 0xd2, 0x01, 0x5d, - 0x58, 0xf0, 0x05, 0x06, 0x61, 0x99, 0x44, 0xf0, 0x9b, 0xbf, 0xe6, 0x6f, 0xba, 0x30, 0x09, 0xe7, - 0x31, 0xe5, 0xec, 0xfc, 0x06, 0x68, 0x7b, 0x37, 0x48, 0x53, 0x13, 0x47, 0xb0, 0x5d, 0x60, 0xd6, - 0xff, 0xfe, 0xe3, 0x1f, 0x7f, 0x6c, 0xd7, 0x0e, 0xdf, 0xfd, 0xf5, 0xc7, 0x4e, 0xed, 0xf0, 0xdd, - 0xe2, 0xb7, 0x3b, 0xf3, 0x5f, 0x16, 0xbf, 0xdf, 0xfd, 0x63, 0xbb, 0xd6, 0x58, 0xfd, 0x7e, 0xef, - 0x8f, 0xed, 0xda, 0xde, 0xbb, 0x7f, 0xfe, 0xe7, 0x3f, 0x2f, 0xfe, 0xf9, 0xdf, 0x97, 0x9f, 0xbe, - 0xff, 0x1b, 0xff, 0xc7, 0x62, 0x01, 0x38, 0x9d, 0xef, 0x23, 0xf5, 0xb1, 0x00, 0xbc, 0xfc, 0x45, - 0xb0, 0x00, 0x9c, 0x7c, 0xa7, 0xca, 0x52, 0x16, 0x80, 0xe7, 0x6b, 0xb7, 0xb6, 0x02, 0xcf, 0xa7, - 0x2b, 0xc5, 0x58, 0x02, 0x5e, 0x1d, 0x0b, 0x59, 0x02, 0x4e, 0x0f, 0xf1, 0xfd, 0x1e, 0xa2, 0xd2, - 0x45, 0xe0, 0xee, 0xe4, 0xae, 0xe1, 0xae, 0x9e, 0x88, 0xbd, 0x7c, 0x20, 0x2c, 0x03, 0xd7, 0xe6, - 0x7e, 0x16, 0xc9, 0xa5, 0xd5, 0x56, 0x01, 0xad, 0x02, 0x5f, 0x33, 0x9f, 0x45, 0xe0, 0x9b, 0x30, - 0x93, 0x45, 0xe0, 0x39, 0x0a, 0x97, 0x45, 0xe0, 0xf9, 0x6d, 0x2f, 0x16, 0x81, 0x17, 0xcd, 0xaf, - 0x2c, 0x02, 0xaf, 0x5a, 0xc8, 0xc2, 0x22, 0xf0, 0x7c, 0xcf, 0x07, 0x16, 0x81, 0x13, 0x6c, 0x10, - 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, - 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x98, 0x45, 0xe0, 0xa5, 0xc2, 0x13, 0x8b, 0xc0, 0x09, - 0x53, 0x8a, 0xa1, 0x0a, 0x1d, 0xae, 0xd4, 0x40, 0x96, 0x1a, 0xd8, 0xd2, 0x01, 0x5d, 0x58, 0xf0, - 0x05, 0x06, 0x61, 0x99, 0x44, 0x58, 0x04, 0x2e, 0x84, 0x72, 0x58, 0x04, 0x5e, 0xc6, 0x02, 0x58, - 0x04, 0xfe, 0xf7, 0x1f, 0x16, 0x81, 0xe7, 0xa9, 0x3e, 0x16, 0x81, 0x97, 0xbf, 0x08, 0x16, 0x81, - 0x93, 0xef, 0x54, 0x59, 0xca, 0x22, 0xf0, 0x7c, 0xed, 0x56, 0x59, 0xe2, 0xf9, 0x65, 0xa1, 0x18, - 0x6b, 0xc0, 0xab, 0x63, 0x21, 0x6b, 0xc0, 0xe9, 0x20, 0xbe, 0xdb, 0x41, 0x54, 0xbe, 0x04, 0x7c, - 0xf5, 0x1f, 0x59, 0x01, 0xae, 0xd5, 0xf9, 0x58, 0xe1, 0xe4, 0x6e, 0x1f, 0x7c, 0x10, 0xf8, 0x3e, - 0x07, 0x81, 0xe7, 0x64, 0x26, 0x6b, 0xc0, 0x73, 0x54, 0x2e, 0x6b, 0xc0, 0xf3, 0xdb, 0x5e, 0xac, - 0x01, 0x2f, 0x9a, 0x5f, 0x59, 0x03, 0x5e, 0xb5, 0x90, 0x85, 0x35, 0xe0, 0xf9, 0x9e, 0x0f, 0xac, - 0x01, 0x27, 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, - 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0x6b, 0xc0, 0x4b, 0x85, - 0x27, 0xd6, 0x80, 0x13, 0xa6, 0x14, 0x43, 0x15, 0x3a, 0x5c, 0xa9, 0x81, 0x2c, 0x35, 0xb0, 0xa5, - 0x03, 0xba, 0xb0, 0xe0, 0x0b, 0x0c, 0xc2, 0x32, 0x89, 0xa8, 0xa8, 0x01, 0xdf, 0x67, 0x0d, 0x78, - 0x49, 0xc4, 0xa0, 0xa4, 0x06, 0x3c, 0xa8, 0x5d, 0xdb, 0xb5, 0xd3, 0x77, 0xff, 0xdd, 0xf9, 0xb5, - 0xf1, 0xe9, 0xe8, 0x9f, 0xff, 0x3d, 0xf8, 0xf4, 0xe5, 0x17, 0xff, 0x7a, 0xea, 0x7f, 0xdb, 0xf9, - 0xf5, 0xe0, 0xd3, 0xd1, 0x33, 0xff, 0x65, 0xff, 0xd3, 0xd1, 0x37, 0xfe, 0x19, 0x7b, 0x9f, 0xfe, - 0xb1, 0xf6, 0xbf, 0xce, 0xbe, 0xbe, 0xfb, 0xdc, 0x37, 0x34, 0x9e, 0xf9, 0x86, 0x97, 0xcf, 0x7d, - 0xc3, 0xcb, 0x67, 0xbe, 0xe1, 0x59, 0x93, 0x76, 0x9f, 0xf9, 0x86, 0xbd, 0x4f, 0x7f, 0xad, 0xfd, - 0xff, 0xff, 0x78, 0xfa, 0x7f, 0xdd, 0xff, 0xf4, 0xcf, 0xbf, 0x9e, 0xfb, 0x6f, 0x07, 0x9f, 0xfe, - 0x3a, 0xfa, 0x27, 0x2b, 0xe2, 0x79, 0x14, 0x7d, 0xbe, 0x17, 0x59, 0x11, 0x5f, 0xfe, 0x22, 0x58, - 0x11, 0x4f, 0xda, 0x55, 0x65, 0x29, 0x2b, 0xe2, 0xf3, 0xb5, 0x5b, 0x61, 0xc1, 0xeb, 0x3e, 0xc7, - 0xa2, 0x57, 0xd9, 0x42, 0x96, 0xc4, 0xd3, 0x43, 0x7c, 0xbf, 0x87, 0xa8, 0x7a, 0x4d, 0xfc, 0x3e, - 0xc7, 0xa2, 0xab, 0x77, 0x3f, 0x8b, 0x54, 0x1b, 0xf4, 0x58, 0xf4, 0x7d, 0x8e, 0x45, 0xcf, 0xc7, - 0x4c, 0x96, 0xc4, 0xe7, 0x28, 0x5c, 0x96, 0xc4, 0xe7, 0xb7, 0xbd, 0x58, 0x12, 0x5f, 0x34, 0xbf, - 0xb2, 0x24, 0xbe, 0x6a, 0x21, 0x0b, 0x4b, 0xe2, 0xf3, 0x3d, 0x1f, 0x58, 0x12, 0x4f, 0xb0, 0x41, - 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, 0x6c, 0x10, 0xc2, 0x00, - 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, 0x96, 0xc4, 0x97, 0x0a, 0x4f, 0x2c, 0x89, 0x27, - 0x4c, 0x29, 0x86, 0x2a, 0x74, 0xb8, 0x52, 0x03, 0x59, 0x6a, 0x60, 0x4b, 0x07, 0x74, 0x61, 0xc1, - 0x17, 0x18, 0x84, 0x65, 0x12, 0x61, 0x49, 0xbc, 0x10, 0xca, 0x61, 0x49, 0x7c, 0x19, 0x0b, 0x60, - 0x49, 0x3c, 0x4b, 0xe2, 0xbf, 0xfd, 0xc3, 0x92, 0xf8, 0x3c, 0xf7, 0x22, 0x4b, 0xe2, 0xcb, 0x5f, - 0x04, 0x4b, 0xe2, 0x49, 0xbb, 0xaa, 0x2c, 0x65, 0x49, 0x7c, 0xbe, 0x76, 0xab, 0x2c, 0x78, 0xe5, - 0x90, 0xf8, 0xea, 0x5a, 0xc8, 0x8a, 0x78, 0x3a, 0x88, 0xef, 0x76, 0x10, 0x95, 0x2f, 0x88, 0xe7, - 0x90, 0x78, 0xed, 0xce, 0xc7, 0x1a, 0x05, 0x51, 0x2d, 0x18, 0xfe, 0x5f, 0x30, 0x30, 0xd1, 0xe0, - 0xbe, 0x96, 0x84, 0x43, 0xa0, 0x62, 0xf8, 0x27, 0x6c, 0x67, 0x25, 0xfc, 0x26, 0xcc, 0x64, 0x25, - 0x7c, 0x8e, 0xaa, 0x65, 0x25, 0x7c, 0x7e, 0xdb, 0x8b, 0x95, 0xf0, 0x45, 0x73, 0x2b, 0x2b, 0xe1, - 0xab, 0x16, 0xaa, 0xc0, 0x54, 0xc2, 0xaf, 0xe1, 0x01, 0x5e, 0x55, 0xfc, 0xfa, 0x12, 0x58, 0x21, - 0x5f, 0x65, 0xe0, 0x41, 0x04, 0x1f, 0x60, 0x00, 0x42, 0x05, 0x21, 0x78, 0x20, 0x82, 0x07, 0x23, - 0x6c, 0x40, 0xc2, 0x00, 0x25, 0x10, 0x60, 0x82, 0x03, 0xa7, 0xcc, 0x60, 0xac, 0x56, 0xc2, 0xb5, - 0x73, 0x06, 0xa9, 0xa5, 0x10, 0x14, 0x9c, 0x60, 0x01, 0x0a, 0x19, 0xa4, 0x14, 0x00, 0x15, 0x3a, - 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, 0xa5, 0x03, 0xb8, 0xb0, 0xc0, 0x0b, 0x0c, 0xc0, 0x60, 0x41, - 0x2c, 0x33, 0xfc, 0x7a, 0x14, 0xdc, 0x24, 0xb8, 0xce, 0x72, 0x75, 0x5e, 0x2d, 0x96, 0x01, 0xea, - 0x5f, 0x30, 0xdb, 0x17, 0xe1, 0x41, 0x4d, 0x03, 0xb0, 0x29, 0x02, 0x37, 0x2d, 0x00, 0xa7, 0x0e, - 0xe4, 0xd4, 0x01, 0x9d, 0x2e, 0xb0, 0xc3, 0x04, 0x3c, 0x50, 0xd0, 0xcb, 0xa4, 0x03, 0xdb, 0x0e, - 0xb9, 0x76, 0x62, 0x98, 0x68, 0x7a, 0x6b, 0xe2, 0x45, 0xa1, 0x28, 0xf0, 0xa9, 0xb1, 0xca, 0x72, - 0x35, 0x80, 0xd7, 0xe0, 0x44, 0xd3, 0xdb, 0x99, 0xa8, 0xb8, 0x95, 0x8b, 0x7c, 0xea, 0xd0, 0xed, - 0x64, 0xd9, 0x2a, 0x34, 0xb4, 0x95, 0x3d, 0x2c, 0x46, 0x41, 0x7b, 0x59, 0xb6, 0x18, 0xe8, 0x36, - 0x33, 0x5c, 0xba, 0x00, 0x74, 0x47, 0x56, 0xd6, 0x2e, 0x00, 0x54, 0x59, 0xf4, 0x2c, 0x58, 0x3c, - 0x5e, 0x0c, 0x33, 0x33, 0x65, 0x98, 0xcf, 0xcc, 0x8c, 0xa0, 0xed, 0xc0, 0xcc, 0x8c, 0x9c, 0x6d, - 0xcd, 0xcc, 0x8c, 0xf0, 0x05, 0x31, 0x33, 0x43, 0x7e, 0xfa, 0x41, 0xe9, 0xe8, 0xc9, 0xcc, 0x24, - 0xf7, 0x49, 0x6a, 0x6e, 0x71, 0xf1, 0x69, 0x0b, 0x7c, 0x6a, 0xd5, 0x03, 0x86, 0x80, 0x4f, 0xaf, - 0xca, 0x16, 0xf2, 0xbf, 0x7f, 0x6c, 0xd7, 0x0e, 0xed, 0xda, 0x69, 0x50, 0xbb, 0x7e, 0xf7, 0xdf, - 0xc6, 0xa7, 0xff, 0xfc, 0xe7, 0xc5, 0x57, 0xbe, 0xf0, 0x3f, 0xb8, 0x5e, 0xf7, 0x1d, 0xe3, 0x6c, - 0x9e, 0x13, 0xcf, 0xec, 0x83, 0xbb, 0x60, 0x34, 0x35, 0xf8, 0x11, 0xf6, 0x62, 0x19, 0x8c, 0xad, - 0x19, 0x5b, 0x33, 0xb6, 0x66, 0x6c, 0xcd, 0xd8, 0x9a, 0xb1, 0x35, 0x63, 0x6b, 0x32, 0x13, 0x63, - 0xeb, 0x6f, 0x38, 0x31, 0xa6, 0x61, 0x94, 0xbe, 0xdc, 0x55, 0x10, 0x58, 0x1f, 0x00, 0x2f, 0xa1, - 0x17, 0x44, 0x37, 0x06, 0x3e, 0xaa, 0xc6, 0x3e, 0xb0, 0xb7, 0x96, 0xc5, 0x03, 0xf0, 0xe4, 0xa1, - 0x24, 0xb0, 0x58, 0x5b, 0xce, 0xe5, 0x32, 0x56, 0xd5, 0xb2, 0x9e, 0xd3, 0x38, 0x18, 0xa4, 0xe1, - 0x38, 0x6a, 0x86, 0x37, 0xe1, 0xbc, 0xbc, 0x63, 0x1b, 0x7e, 0x5d, 0x9f, 0x7e, 0x55, 0xe0, 0x02, - 0x82, 0x8f, 0x74, 0x01, 0xc2, 0x5d, 0x40, 0x63, 0xf7, 0xb0, 0x71, 0xb8, 0x7f, 0xb0, 0x7b, 0xb8, - 0x47, 0x5f, 0xc0, 0x80, 0x84, 0xd6, 0x3f, 0xfe, 0x30, 0xdd, 0xcf, 0xb3, 0xee, 0x39, 0x37, 0xf3, - 0xc1, 0x84, 0x37, 0xef, 0x53, 0xfc, 0x7c, 0xff, 0x72, 0x1d, 0x4c, 0xf8, 0x97, 0x61, 0x3e, 0x13, - 0xfe, 0x82, 0x76, 0x02, 0x13, 0xfe, 0x72, 0xb6, 0x35, 0x13, 0xfe, 0xc2, 0x17, 0xc4, 0x84, 0x3f, - 0xa9, 0xe9, 0x07, 0xa5, 0xa3, 0x2b, 0xe1, 0xff, 0x9b, 0x82, 0x7c, 0xff, 0x1e, 0xf3, 0xfd, 0x25, - 0x7f, 0x98, 0xef, 0x67, 0x5c, 0x91, 0xe3, 0x72, 0x98, 0xef, 0xe7, 0x69, 0x5e, 0x84, 0x0b, 0x60, - 0xbe, 0x5f, 0xbc, 0x0b, 0xd8, 0xdd, 0x63, 0xa2, 0x9f, 0x81, 0x08, 0xad, 0xff, 0xec, 0xc3, 0x44, - 0x3f, 0x2d, 0x86, 0x3f, 0x92, 0x51, 0xaf, 0x71, 0xcd, 0xec, 0xd7, 0x76, 0x5b, 0xe3, 0xfa, 0xc5, - 0x6f, 0xeb, 0x5f, 0x42, 0xba, 0xdd, 0x15, 0x6f, 0x17, 0x03, 0xed, 0x60, 0xd0, 0xfe, 0x21, 0xe8, - 0xbe, 0x21, 0x50, 0xc6, 0xe7, 0x18, 0xfb, 0x32, 0x85, 0xce, 0x31, 0xf6, 0xe5, 0x6d, 0x57, 0x8e, - 0xb1, 0x97, 0x86, 0x9c, 0x1c, 0x63, 0x4f, 0xa6, 0xf9, 0x7b, 0x89, 0xc0, 0xbe, 0xee, 0x7b, 0xb8, - 0xde, 0xd0, 0x04, 0xd7, 0xb1, 0xb9, 0x46, 0xf4, 0xf8, 0xab, 0x49, 0x19, 0x80, 0x1d, 0x3d, 0x56, - 0x77, 0x19, 0x08, 0xbe, 0x78, 0xb1, 0x08, 0x92, 0xea, 0x0b, 0xc4, 0x64, 0xa8, 0x54, 0x61, 0x4b, - 0x51, 0x2e, 0x51, 0x7b, 0x6d, 0xee, 0xd1, 0x82, 0x22, 0xcc, 0x99, 0xb5, 0xd0, 0x33, 0x6a, 0xa1, - 0x67, 0xd2, 0x62, 0xce, 0xa0, 0x45, 0x71, 0x20, 0xa0, 0xb9, 0xdc, 0x4a, 0xe6, 0x70, 0x91, 0xae, - 0x08, 0x4e, 0xd2, 0x78, 0x3a, 0x48, 0xa3, 0x25, 0xd9, 0x76, 0x16, 0x0f, 0xdc, 0x5d, 0x2e, 0xde, - 0xef, 0x2e, 0x9f, 0xb2, 0xef, 0x26, 0x61, 0xe2, 0xb7, 0x66, 0x8f, 0xd7, 0x6f, 0x25, 0x13, 0xdf, - 0x1b, 0xdd, 0xf9, 0xed, 0xd4, 0x4d, 0x22, 0xbf, 0xb3, 0x7c, 0x74, 0x7e, 0xf6, 0x3d, 0xfd, 0xf9, - 0x83, 0xf2, 0x5b, 0x41, 0x64, 0xaf, 0x1e, 0x4a, 0x3f, 0x1c, 0x62, 0x60, 0x9a, 0x7c, 0xe8, 0x91, - 0x6d, 0xa1, 0x70, 0x6f, 0x8a, 0xe6, 0x45, 0x2b, 0xe0, 0x3d, 0x65, 0xfb, 0x05, 0xb9, 0xbb, 0x4d, - 0xf0, 0x4e, 0xb3, 0xe6, 0x12, 0x0a, 0xd2, 0x34, 0x0e, 0xaf, 0xa6, 0xa9, 0x91, 0x7f, 0xf3, 0xdf, - 0x43, 0x62, 0xe7, 0x0b, 0xc3, 0x85, 0x7b, 0x33, 0x8c, 0x4b, 0x97, 0x61, 0xde, 0x4e, 0x21, 0xbd, - 0x8d, 0x02, 0x7c, 0xfb, 0x84, 0xf6, 0xb6, 0x09, 0xf6, 0xed, 0x12, 0xec, 0xdb, 0x24, 0xcc, 0xb7, - 0x47, 0x24, 0xf2, 0x9f, 0xf9, 0x91, 0xa3, 0x5c, 0x6a, 0x6c, 0x2d, 0xea, 0xb2, 0x60, 0x9c, 0x57, - 0x36, 0xdf, 0x7d, 0x6e, 0x36, 0x4a, 0x96, 0x1c, 0x02, 0x68, 0xe0, 0xc0, 0x06, 0x11, 0x70, 0x80, - 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, - 0x08, 0x0e, 0x90, 0x32, 0x83, 0x47, 0xe3, 0x41, 0x30, 0xaa, 0x4d, 0xe2, 0x71, 0x6a, 0x06, 0x90, - 0xbd, 0x07, 0x0f, 0xe9, 0xa0, 0x2f, 0x57, 0xc2, 0x6a, 0x66, 0x62, 0x95, 0x2e, 0xbc, 0x52, 0x80, - 0x59, 0xe8, 0xb8, 0xa5, 0x06, 0xbb, 0xd4, 0xe0, 0x97, 0x0e, 0x0c, 0xc3, 0xc2, 0x31, 0x30, 0x2c, - 0xcb, 0x24, 0x82, 0x5f, 0xcd, 0x6c, 0xa2, 0xe9, 0xad, 0x89, 0x03, 0x40, 0xc0, 0x79, 0x0c, 0x39, - 0x3b, 0x0d, 0x40, 0xdb, 0x9d, 0x68, 0x7a, 0x3b, 0x13, 0x0f, 0xb7, 0x68, 0x9e, 0x4f, 0x19, 0xb2, - 0x8e, 0x35, 0xb3, 0x1e, 0xb9, 0x9e, 0xf5, 0x61, 0x11, 0xc0, 0x75, 0xad, 0xd9, 0x22, 0x20, 0xeb, - 0x5b, 0xf1, 0x28, 0x80, 0xe9, 0xa3, 0x8d, 0x22, 0x2c, 0xeb, 0x86, 0x65, 0x54, 0xbe, 0x7d, 0x5e, - 0x5a, 0x84, 0x34, 0xe6, 0x81, 0x45, 0xb1, 0xaa, 0x5d, 0x05, 0x8b, 0x62, 0x65, 0xb9, 0x06, 0x84, - 0x52, 0xae, 0xfc, 0xba, 0x06, 0xc2, 0xe8, 0x4f, 0xfb, 0xe1, 0x51, 0xb0, 0x38, 0x58, 0x9b, 0xc7, - 0x59, 0xd4, 0xd8, 0x0e, 0xcd, 0x28, 0xb8, 0x07, 0xab, 0x0b, 0x5e, 0xd8, 0xcc, 0x92, 0xe0, 0x4d, - 0x98, 0xc9, 0x92, 0xe0, 0x1c, 0xd5, 0xca, 0x92, 0xe0, 0xfc, 0xb6, 0x17, 0x4b, 0x82, 0x8b, 0x86, - 0x53, 0x96, 0x04, 0x57, 0x2d, 0x1e, 0x61, 0x49, 0x70, 0xbe, 0xe7, 0x03, 0x4b, 0x82, 0x09, 0x36, - 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, - 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0x1c, 0xd4, 0xae, 0xc2, 0x14, 0xb7, 0x0e, 0x78, - 0x61, 0x3e, 0x8b, 0x7f, 0x09, 0x50, 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, - 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x08, 0x7e, 0xf1, 0xef, - 0xd5, 0x78, 0x3c, 0x32, 0x01, 0x74, 0xe1, 0xef, 0x0e, 0xeb, 0xf0, 0xaa, 0xbe, 0x19, 0x2d, 0x8c, - 0xf7, 0xc9, 0xcf, 0xee, 0x42, 0x84, 0x57, 0xcb, 0x0c, 0x30, 0x18, 0x60, 0x30, 0xc0, 0x60, 0x80, - 0xc1, 0x00, 0x83, 0x01, 0x06, 0x03, 0x0c, 0x06, 0x18, 0xdf, 0xe8, 0xf1, 0xa7, 0x61, 0x94, 0xbe, - 0xdc, 0x05, 0x8e, 0x2f, 0x10, 0x6f, 0x4a, 0xe9, 0x05, 0xd1, 0xcd, 0xec, 0xe9, 0xff, 0x01, 0xe9, - 0x18, 0x71, 0xef, 0x0b, 0xb7, 0xda, 0x61, 0x04, 0x7f, 0xe1, 0xb9, 0x92, 0x8b, 0xce, 0xb3, 0x0b, - 0xce, 0xd1, 0xd7, 0xa1, 0xe8, 0x5a, 0xf3, 0x4f, 0xbf, 0x02, 0x6f, 0xed, 0xe0, 0x23, 0xb7, 0xb6, - 0xb0, 0xad, 0xdd, 0xd8, 0x3d, 0x6c, 0x1c, 0xee, 0x1f, 0xec, 0x1e, 0xee, 0x71, 0x8f, 0x33, 0x20, - 0xa8, 0x96, 0xd5, 0xef, 0x98, 0xf6, 0xae, 0xb0, 0xa5, 0x6c, 0x3f, 0xcf, 0xd7, 0x6e, 0x95, 0x3d, - 0xa6, 0xf3, 0xd7, 0x0c, 0xec, 0x3c, 0xaf, 0x8e, 0x85, 0xec, 0x3c, 0xa7, 0x57, 0xf8, 0x36, 0xaf, - 0x50, 0xf9, 0xa6, 0xf3, 0xe6, 0xfc, 0x29, 0xb0, 0xdf, 0x5c, 0x9b, 0x9f, 0x79, 0xd4, 0xbb, 0x5d, - 0xbb, 0x0b, 0xe2, 0x10, 0xc3, 0xdb, 0x3c, 0xd1, 0x79, 0xfe, 0xc8, 0x7a, 0xf6, 0xa0, 0x6f, 0xc2, - 0x4c, 0xf6, 0xa0, 0xe7, 0xa8, 0x5b, 0xf6, 0xa0, 0xe7, 0xb7, 0xbd, 0xd8, 0x83, 0x5e, 0x34, 0xa6, - 0xb2, 0x07, 0xbd, 0x6a, 0x91, 0x09, 0x7b, 0xd0, 0xf3, 0x3d, 0x1f, 0xd8, 0x83, 0x4e, 0xb0, 0x41, - 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, 0x6c, 0x10, 0xc2, 0x00, - 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0x60, 0xb6, 0x88, 0x94, 0x06, 0x4e, 0x6c, 0x11, 0x21, - 0x48, 0x29, 0x06, 0x2a, 0x74, 0xb0, 0x52, 0x03, 0x58, 0x6a, 0x40, 0x4b, 0x07, 0x70, 0x61, 0x81, - 0x17, 0x18, 0x80, 0x65, 0x12, 0x61, 0x8b, 0x48, 0xe9, 0x7c, 0xc3, 0x16, 0x91, 0xa2, 0x3f, 0x6c, - 0x11, 0x21, 0xd8, 0x6f, 0x60, 0x19, 0x6c, 0x11, 0xe1, 0xf1, 0xbb, 0xc9, 0xad, 0xcd, 0x16, 0x11, - 0x71, 0x5b, 0x9b, 0x2d, 0x22, 0x0c, 0x08, 0xaa, 0x6a, 0x35, 0x5b, 0x44, 0xaa, 0x6c, 0x29, 0x5b, - 0x44, 0xf2, 0xb5, 0x5b, 0x6f, 0x31, 0xf8, 0x43, 0xa9, 0x29, 0x9b, 0x45, 0xaa, 0x63, 0x21, 0x9b, - 0x45, 0xe8, 0x1f, 0xbe, 0xd7, 0x3f, 0xb0, 0x6d, 0x64, 0xf6, 0x3c, 0x2e, 0xb3, 0xc7, 0xc1, 0xfe, - 0x11, 0x6d, 0xae, 0x67, 0xd1, 0x81, 0x11, 0x0e, 0xc1, 0x5a, 0x46, 0xc2, 0x21, 0xbb, 0x44, 0x36, - 0x62, 0x26, 0xbb, 0x44, 0x72, 0x94, 0x2a, 0xbb, 0x44, 0xf2, 0xdb, 0x5e, 0xec, 0x12, 0x29, 0x9a, - 0x4f, 0xd9, 0x25, 0x52, 0xb5, 0x90, 0x84, 0x5d, 0x22, 0xf9, 0x9e, 0x0f, 0xec, 0x12, 0x21, 0xd8, - 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, - 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0xf0, 0x68, 0x3c, 0x08, 0x46, 0xb8, 0x5d, 0x22, - 0x0b, 0xf3, 0xd9, 0x25, 0x42, 0x80, 0xd2, 0x05, 0x52, 0x0a, 0x80, 0x0a, 0x1d, 0xac, 0xd4, 0x00, - 0x96, 0x1a, 0xd0, 0xd2, 0x01, 0x5c, 0x58, 0xe0, 0x05, 0x06, 0x60, 0x99, 0x44, 0xd8, 0x25, 0x52, - 0x3a, 0xdf, 0xb0, 0x4b, 0xa4, 0xe8, 0x0f, 0xbb, 0x44, 0x08, 0xf6, 0x1b, 0x58, 0x06, 0xbb, 0x44, - 0x78, 0xfc, 0x6e, 0x72, 0x6b, 0xb3, 0x4b, 0x44, 0xdc, 0xd6, 0x66, 0x97, 0x08, 0x03, 0x82, 0xaa, - 0x5a, 0xcd, 0x2e, 0x91, 0xca, 0x9f, 0x51, 0x56, 0x6c, 0x6e, 0xc7, 0xa9, 0xc1, 0xcd, 0x7b, 0x2f, - 0xed, 0x67, 0xe2, 0xbb, 0x08, 0xb3, 0x99, 0xf8, 0x2e, 0x51, 0xe9, 0x4c, 0x7c, 0x97, 0xb7, 0x5d, - 0x99, 0xf8, 0x16, 0xb6, 0x10, 0x26, 0xbe, 0x49, 0x35, 0x5f, 0x91, 0x08, 0x13, 0xdf, 0xa5, 0xf3, - 0x0d, 0x13, 0xdf, 0x45, 0x7f, 0x98, 0xf8, 0x26, 0xd8, 0x6f, 0x60, 0x19, 0x4c, 0x7c, 0xf3, 0xf8, - 0xdd, 0xe4, 0xd6, 0x66, 0xe2, 0x5b, 0xdc, 0xd6, 0x66, 0xe2, 0x9b, 0x01, 0x41, 0x55, 0xad, 0x66, - 0xe2, 0xbb, 0xca, 0x96, 0x72, 0x3c, 0x52, 0xbe, 0x76, 0xab, 0x1c, 0x7f, 0x12, 0x0e, 0x39, 0x11, - 0xa9, 0x3a, 0x16, 0x72, 0x22, 0x12, 0x5d, 0xc2, 0x37, 0xb8, 0x84, 0xca, 0x0f, 0x41, 0x72, 0x87, - 0x1c, 0x7c, 0xa4, 0xce, 0xc3, 0x2c, 0xe6, 0x08, 0x8d, 0xc6, 0x49, 0x02, 0x36, 0xfa, 0x68, 0x6e, - 0x32, 0x87, 0x1f, 0x6d, 0xc2, 0x4c, 0x0e, 0x3f, 0xca, 0x51, 0xac, 0x1c, 0x7e, 0x94, 0xdf, 0xf6, - 0xe2, 0xf0, 0xa3, 0xa2, 0x51, 0x94, 0xc3, 0x8f, 0xaa, 0x16, 0x7d, 0x70, 0xf8, 0x51, 0xbe, 0xe7, - 0x03, 0x87, 0x1f, 0x11, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, - 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x38, 0xa8, 0x5d, - 0x85, 0x29, 0x6e, 0x13, 0xc8, 0xc2, 0x7c, 0xf6, 0x80, 0x10, 0xa0, 0x74, 0x81, 0x94, 0x02, 0xa0, - 0x42, 0x07, 0x2b, 0x35, 0x80, 0xa5, 0x06, 0xb4, 0x74, 0x00, 0x17, 0x16, 0x78, 0x81, 0x01, 0x58, - 0x26, 0x11, 0xfc, 0x1e, 0x90, 0xab, 0xf1, 0x78, 0x64, 0x82, 0x08, 0xb8, 0x09, 0x64, 0x67, 0x87, - 0xd5, 0x76, 0x55, 0xdf, 0x8c, 0x40, 0xaf, 0x94, 0x9f, 0xdd, 0x89, 0x28, 0xaf, 0x98, 0x19, 0x68, - 0x30, 0xd0, 0x60, 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, 0x0d, 0x06, 0x1a, 0x0c, 0x34, 0xbe, - 0xd1, 0xe3, 0xb3, 0xd9, 0xbc, 0x04, 0xd3, 0xd9, 0x6c, 0x5e, 0xd2, 0x83, 0x67, 0xb3, 0xb9, 0x9c, - 0x65, 0xb0, 0xd9, 0x9c, 0xc7, 0xef, 0x26, 0xb7, 0x36, 0x9b, 0xcd, 0xc5, 0x6d, 0x6d, 0x36, 0x9b, - 0x33, 0x20, 0xa8, 0xaa, 0xd5, 0x6c, 0x36, 0xaf, 0xb2, 0xa5, 0x6c, 0x36, 0xcf, 0xd7, 0x6e, 0x95, - 0x9d, 0xa5, 0xa3, 0x71, 0x92, 0xb0, 0xdd, 0xbc, 0x3a, 0x16, 0xb2, 0xdd, 0x9c, 0x4e, 0xe1, 0x9b, - 0x9c, 0x42, 0xe5, 0x1b, 0xce, 0x5b, 0xb3, 0x87, 0xc0, 0x96, 0x73, 0x6d, 0x5e, 0x66, 0xf1, 0x72, - 0x7d, 0xb6, 0xbd, 0xcc, 0x3c, 0xbc, 0xaa, 0xa5, 0x08, 0xf9, 0xf4, 0xcf, 0x4b, 0x03, 0xbe, 0xb4, - 0x9e, 0x8d, 0xe8, 0x9b, 0x30, 0x93, 0x8d, 0xe8, 0x39, 0xea, 0x96, 0x8d, 0xe8, 0xf9, 0x6d, 0x2f, - 0x36, 0xa2, 0x17, 0x0d, 0xa9, 0x6c, 0x44, 0xaf, 0x5a, 0x5c, 0xc2, 0x46, 0xf4, 0x7c, 0xcf, 0x07, - 0x36, 0xa2, 0x13, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, - 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x38, 0x45, 0xac, 0xa3, - 0xcc, 0x8e, 0x19, 0x80, 0xbc, 0xcf, 0x73, 0xd8, 0xc4, 0xee, 0x10, 0x62, 0x94, 0x62, 0x9c, 0x42, - 0xc7, 0x2a, 0x35, 0x78, 0xa5, 0x06, 0xb3, 0x74, 0xe0, 0x16, 0x16, 0x76, 0x81, 0xe1, 0x57, 0x26, - 0x11, 0xfc, 0xee, 0x10, 0x13, 0x4d, 0x6f, 0x4d, 0xbc, 0x28, 0x01, 0x00, 0x6e, 0x45, 0x6f, 0x00, - 0xda, 0xee, 0x44, 0xd3, 0xdb, 0x99, 0x78, 0xb8, 0x45, 0xf3, 0x7c, 0xca, 0xad, 0x30, 0x49, 0xed, - 0x34, 0x8d, 0x31, 0xb7, 0x69, 0x3b, 0x8c, 0x9c, 0x91, 0x99, 0x9d, 0x42, 0x89, 0x75, 0xb4, 0x15, - 0x4d, 0x47, 0x23, 0x40, 0xa1, 0xb7, 0x83, 0x8f, 0xf8, 0x8b, 0x38, 0x8f, 0x87, 0x26, 0x36, 0xc3, - 0xe3, 0xfb, 0xe5, 0x12, 0x58, 0xfc, 0x5b, 0x61, 0x4b, 0x59, 0xfc, 0x9b, 0xaf, 0xdd, 0x2a, 0xeb, - 0xfc, 0xbe, 0xa8, 0x23, 0x62, 0x1d, 0x70, 0x75, 0x2c, 0x64, 0x1d, 0x30, 0xfd, 0xc3, 0xf7, 0xfa, - 0x87, 0xca, 0x97, 0x04, 0x77, 0xb3, 0xe7, 0x31, 0x0f, 0xb3, 0x59, 0x1c, 0xac, 0xcd, 0xf5, 0x58, - 0xb7, 0xc1, 0xc7, 0xda, 0x5c, 0xfa, 0x57, 0x41, 0x34, 0xfc, 0x10, 0x0e, 0xe7, 0xdb, 0x19, 0xa4, - 0x34, 0xf8, 0x09, 0xdb, 0x59, 0x18, 0xbc, 0x09, 0x33, 0x59, 0x18, 0x9c, 0xa3, 0x6a, 0x59, 0x18, - 0x9c, 0xdf, 0xf6, 0x62, 0x61, 0x70, 0xd1, 0xd4, 0xca, 0xc2, 0xe0, 0xaa, 0x05, 0x2a, 0x2c, 0x0c, - 0xce, 0xf7, 0x7c, 0x60, 0x61, 0x30, 0xc1, 0x06, 0x11, 0x70, 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, - 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, 0x08, 0x0e, 0x90, 0x32, 0x83, - 0x71, 0x52, 0x3f, 0xcf, 0x9e, 0x35, 0x28, 0x19, 0xa0, 0xe7, 0x00, 0x8a, 0x25, 0xc2, 0x04, 0x2a, - 0xc5, 0x60, 0x85, 0x0e, 0x58, 0x6a, 0x40, 0x4b, 0x0d, 0x70, 0xe9, 0x00, 0x2f, 0x2c, 0x00, 0x03, - 0x03, 0xb1, 0x4c, 0x22, 0xf8, 0x25, 0xc2, 0xa1, 0x31, 0xe6, 0x7a, 0x34, 0x0e, 0xb0, 0xa7, 0xc8, - 0x1f, 0x02, 0x9a, 0xde, 0x32, 0xd1, 0xcd, 0x1c, 0x8c, 0x39, 0x46, 0xbe, 0xe0, 0x27, 0xcf, 0x31, - 0xf2, 0x72, 0x96, 0x91, 0xcd, 0x9a, 0xe6, 0x88, 0x69, 0x1e, 0xc2, 0x1b, 0xd8, 0xda, 0x1c, 0x23, - 0xcf, 0xad, 0xcd, 0xad, 0xad, 0x23, 0x1a, 0xc0, 0xb5, 0x9a, 0xd3, 0xe3, 0xab, 0x6c, 0x29, 0x1b, - 0x48, 0xf2, 0xb5, 0x5b, 0x5b, 0x81, 0xf8, 0x7a, 0xb5, 0x29, 0xdb, 0x47, 0xaa, 0x63, 0x21, 0xdb, - 0x47, 0xe8, 0x1d, 0xbe, 0xcf, 0x3b, 0x54, 0xba, 0x79, 0xa4, 0x1d, 0x7c, 0x6c, 0x85, 0xd1, 0x9f, - 0xc7, 0xd9, 0xc3, 0x60, 0xeb, 0x88, 0x36, 0xb7, 0x33, 0x6f, 0xbf, 0x88, 0x4d, 0x62, 0xe2, 0xbb, - 0xe0, 0x6a, 0x64, 0xa0, 0xbb, 0x48, 0x9e, 0x5f, 0x06, 0x1b, 0x4a, 0x36, 0x61, 0x26, 0x1b, 0x4a, - 0x72, 0x14, 0x30, 0x1b, 0x4a, 0xf2, 0xdb, 0x5e, 0x6c, 0x28, 0x29, 0x9a, 0x63, 0xd9, 0x50, 0x52, - 0xb5, 0xd0, 0x85, 0x0d, 0x25, 0xf9, 0x9e, 0x0f, 0x6c, 0x28, 0x21, 0xd8, 0x20, 0x02, 0x0e, 0x30, - 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, 0x08, 0x18, - 0xc1, 0x01, 0x52, 0x66, 0x30, 0x1b, 0x4a, 0x4a, 0x07, 0x28, 0x36, 0x94, 0x10, 0xa8, 0x14, 0x83, - 0x15, 0x3a, 0x60, 0xa9, 0x01, 0x2d, 0x35, 0xc0, 0xa5, 0x03, 0xbc, 0xb0, 0x00, 0x0c, 0x0c, 0xc4, - 0x32, 0x89, 0xb0, 0xa1, 0x44, 0x06, 0xe4, 0xb0, 0xa1, 0xa4, 0xf0, 0x0f, 0x1b, 0x4a, 0x88, 0xf7, - 0x1b, 0x58, 0x06, 0xab, 0xce, 0x79, 0x08, 0x6f, 0x72, 0x6b, 0xb3, 0xa1, 0x84, 0x5b, 0x9b, 0x5b, - 0x5b, 0x47, 0x34, 0x80, 0x6b, 0x35, 0x1b, 0x4a, 0xaa, 0x6c, 0x29, 0x1b, 0x4a, 0xf2, 0xb5, 0x5b, - 0x63, 0xc9, 0xf8, 0xb3, 0x85, 0xa7, 0xec, 0x2d, 0xa9, 0x8e, 0x85, 0xec, 0x2d, 0xa1, 0xa3, 0xf8, - 0x61, 0x47, 0x51, 0xf5, 0x36, 0x93, 0x5e, 0xf6, 0x60, 0xd8, 0x70, 0xa2, 0xdb, 0x17, 0x59, 0xb7, - 0x61, 0x54, 0xcb, 0xfa, 0xac, 0x86, 0x66, 0x14, 0xdc, 0x03, 0x75, 0x99, 0xac, 0xdb, 0xce, 0xd6, - 0x92, 0x4d, 0x98, 0xc9, 0xd6, 0x92, 0x1c, 0x55, 0xcb, 0xd6, 0x92, 0xfc, 0xb6, 0x17, 0x5b, 0x4b, - 0x8a, 0xc6, 0x58, 0xb6, 0x96, 0x54, 0x2d, 0x72, 0x61, 0x6b, 0x49, 0xbe, 0xe7, 0x03, 0x5b, 0x4b, - 0x08, 0x36, 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, 0x03, 0x0f, 0x3e, 0xf0, 0x00, 0x84, 0x0d, - 0x42, 0x18, 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, 0x19, 0x1c, 0xd4, 0xae, 0xc2, 0x14, 0xb7, - 0xad, 0x64, 0x61, 0x3e, 0x5b, 0x4a, 0x08, 0x50, 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, - 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x08, 0x7e, - 0x4b, 0xc9, 0xd5, 0x78, 0x3c, 0x32, 0x41, 0x04, 0xdc, 0x4e, 0xb2, 0xb3, 0xc3, 0xfa, 0xbd, 0xaa, - 0x6f, 0xc6, 0xf9, 0x38, 0x40, 0x8c, 0x77, 0xcb, 0xcf, 0xee, 0xc4, 0x87, 0x25, 0x30, 0xd0, 0x60, - 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, 0x0d, 0x06, 0x1a, 0xe4, 0x1a, 0x06, 0x1a, 0x2a, 0x02, - 0x8d, 0x69, 0x18, 0x61, 0xb7, 0xad, 0x1f, 0x00, 0x9a, 0xde, 0x0b, 0xa2, 0x1b, 0xc3, 0xae, 0xf5, - 0xe2, 0x1f, 0x3c, 0xbb, 0xd6, 0xe5, 0x2c, 0x63, 0xd5, 0xda, 0xba, 0xcd, 0xd6, 0x56, 0x1e, 0xbf, - 0x1b, 0xd8, 0xda, 0xec, 0x5a, 0x17, 0xb7, 0xb5, 0x1b, 0xbb, 0x87, 0x8d, 0xc3, 0xfd, 0x83, 0xdd, - 0xc3, 0x3d, 0xee, 0x71, 0x06, 0x04, 0xd5, 0xb2, 0x9a, 0xed, 0xeb, 0x95, 0x3f, 0xa3, 0xe6, 0x7d, - 0x4a, 0xe8, 0xe9, 0xef, 0x6c, 0x09, 0x4c, 0x7f, 0x17, 0x61, 0x36, 0xd3, 0xdf, 0x25, 0x8a, 0x9d, - 0xe9, 0xef, 0xf2, 0xb6, 0x2b, 0xd3, 0xdf, 0xc2, 0x16, 0xc2, 0xf4, 0x37, 0xd9, 0xe6, 0x2b, 0x12, - 0x61, 0xfa, 0xbb, 0x74, 0xbe, 0x61, 0xfa, 0xbb, 0xe8, 0x0f, 0xd3, 0xdf, 0x04, 0xfb, 0x0d, 0x2c, - 0x83, 0xe9, 0x6f, 0x1e, 0xbf, 0x9b, 0xdc, 0xda, 0x4c, 0x7f, 0x8b, 0xdb, 0xda, 0x4c, 0x7f, 0x33, - 0x20, 0xa8, 0xaa, 0xd5, 0x4c, 0x7f, 0x57, 0xd9, 0x52, 0x4e, 0x6f, 0xcd, 0xd7, 0x6e, 0x75, 0x43, - 0x19, 0xd7, 0x06, 0xba, 0x71, 0x64, 0x6b, 0x75, 0x2c, 0xe4, 0xc8, 0x56, 0x7a, 0x87, 0xef, 0xf3, - 0x0e, 0xd5, 0x9e, 0xd3, 0x1a, 0x46, 0xed, 0xe0, 0x63, 0x2b, 0x8c, 0xfe, 0x6c, 0xce, 0x9f, 0x05, - 0x87, 0xb3, 0x6a, 0xf3, 0x3a, 0x56, 0x6c, 0x92, 0x70, 0x38, 0x0d, 0x46, 0x35, 0x9c, 0xcb, 0x5f, - 0xb3, 0x94, 0xfa, 0x13, 0xb6, 0x73, 0x38, 0xeb, 0x26, 0xcc, 0xe4, 0x70, 0xd6, 0x1c, 0x55, 0xcb, - 0xe1, 0xac, 0xf9, 0x6d, 0x2f, 0x0e, 0x67, 0x2d, 0x1a, 0x58, 0x39, 0x9c, 0xb5, 0x6a, 0x31, 0x0a, - 0x87, 0xb3, 0xe6, 0x7b, 0x3e, 0x70, 0x38, 0x2b, 0xc1, 0x06, 0x11, 0x70, 0x80, 0x41, 0x07, 0x15, + 0x29, 0x33, 0x98, 0x45, 0xe0, 0xa5, 0xc2, 0x13, 0x8b, 0xc0, 0x09, 0x53, 0x8a, 0xa1, 0x0a, 0x1d, + 0xae, 0xd4, 0x40, 0x96, 0x1a, 0xd8, 0xd2, 0x01, 0x5d, 0x58, 0xf0, 0x05, 0x06, 0x61, 0x99, 0x44, + 0x58, 0x04, 0x2e, 0x84, 0x72, 0x58, 0x04, 0x5e, 0xc6, 0x02, 0x58, 0x04, 0xfe, 0xf7, 0x1f, 0x16, + 0x81, 0xe7, 0xa9, 0x3e, 0x16, 0x81, 0x97, 0xbf, 0x08, 0x16, 0x81, 0x93, 0xef, 0x54, 0x59, 0xca, + 0x22, 0xf0, 0x7c, 0xed, 0x56, 0x59, 0xe2, 0xf9, 0x65, 0xa1, 0x18, 0x6b, 0xc0, 0xab, 0x63, 0x21, + 0x6b, 0xc0, 0xe9, 0x20, 0xbe, 0xdb, 0x41, 0x54, 0xbe, 0x04, 0x7c, 0xf9, 0x1f, 0x59, 0x01, 0xae, + 0xd5, 0xf9, 0x58, 0xe1, 0xf8, 0x7e, 0x1f, 0x7c, 0x10, 0xf8, 0x3e, 0x07, 0x81, 0xe7, 0x64, 0x26, + 0x6b, 0xc0, 0x73, 0x54, 0x2e, 0x6b, 0xc0, 0xf3, 0xdb, 0x5e, 0xac, 0x01, 0x2f, 0x9a, 0x5f, 0x59, + 0x03, 0x5e, 0xb5, 0x90, 0x85, 0x35, 0xe0, 0xf9, 0x9e, 0x0f, 0xac, 0x01, 0x27, 0xd8, 0x20, 0x02, + 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, 0x61, 0x00, 0x11, + 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0x6b, 0xc0, 0x4b, 0x85, 0x27, 0xd6, 0x80, 0x13, 0xa6, + 0x14, 0x43, 0x15, 0x3a, 0x5c, 0xa9, 0x81, 0x2c, 0x35, 0xb0, 0xa5, 0x03, 0xba, 0xb0, 0xe0, 0x0b, + 0x0c, 0xc2, 0x32, 0x89, 0xa8, 0xa8, 0x01, 0xdf, 0x67, 0x0d, 0x78, 0x49, 0xc4, 0xa0, 0xa4, 0x06, + 0x3c, 0xa8, 0xdd, 0xd8, 0xb5, 0xd3, 0xb7, 0xff, 0xdd, 0xf9, 0xb5, 0xf1, 0xe9, 0xe8, 0x9f, 0xff, + 0x3d, 0xf8, 0xf4, 0xe5, 0x17, 0xff, 0x7a, 0xee, 0x7f, 0xdb, 0xf9, 0xf5, 0xe0, 0xd3, 0xd1, 0x9a, + 0xff, 0xb2, 0xff, 0xe9, 0xe8, 0x1b, 0xff, 0x8c, 0xbd, 0x4f, 0xff, 0x58, 0xf9, 0x5f, 0xa7, 0x5f, + 0xdf, 0x5d, 0xf7, 0x0d, 0x8d, 0x35, 0xdf, 0xf0, 0x72, 0xdd, 0x37, 0xbc, 0x5c, 0xf3, 0x0d, 0x6b, + 0x4d, 0xda, 0x5d, 0xf3, 0x0d, 0x7b, 0x9f, 0xfe, 0x5a, 0xf9, 0xff, 0xff, 0xf1, 0xfc, 0xff, 0xba, + 0xff, 0xe9, 0x9f, 0x7f, 0xad, 0xfb, 0x6f, 0x07, 0x9f, 0xfe, 0x3a, 0xfa, 0x27, 0x2b, 0xe2, 0x79, + 0x14, 0x7d, 0xbe, 0x17, 0x59, 0x11, 0x5f, 0xfe, 0x22, 0x58, 0x11, 0x4f, 0xda, 0x55, 0x65, 0x29, + 0x2b, 0xe2, 0xf3, 0xb5, 0x5b, 0x61, 0xc1, 0xeb, 0x3e, 0xc7, 0xa2, 0x57, 0xd9, 0x42, 0x96, 0xc4, + 0xd3, 0x43, 0x7c, 0xbf, 0x87, 0xa8, 0x7a, 0x4d, 0xfc, 0x3e, 0xc7, 0xa2, 0xab, 0x77, 0x3f, 0xf3, + 0x54, 0x1b, 0xf4, 0x58, 0xf4, 0x7d, 0x8e, 0x45, 0xcf, 0xc7, 0x4c, 0x96, 0xc4, 0xe7, 0x28, 0x5c, + 0x96, 0xc4, 0xe7, 0xb7, 0xbd, 0x58, 0x12, 0x5f, 0x34, 0xbf, 0xb2, 0x24, 0xbe, 0x6a, 0x21, 0x0b, + 0x4b, 0xe2, 0xf3, 0x3d, 0x1f, 0x58, 0x12, 0x4f, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, + 0x1e, 0x78, 0xf0, 0x81, 0x07, 0x20, 0x6c, 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, + 0xcc, 0x60, 0x96, 0xc4, 0x97, 0x0a, 0x4f, 0x2c, 0x89, 0x27, 0x4c, 0x29, 0x86, 0x2a, 0x74, 0xb8, + 0x52, 0x03, 0x59, 0x6a, 0x60, 0x4b, 0x07, 0x74, 0x61, 0xc1, 0x17, 0x18, 0x84, 0x65, 0x12, 0x61, + 0x49, 0xbc, 0x10, 0xca, 0x61, 0x49, 0x7c, 0x19, 0x0b, 0x60, 0x49, 0x3c, 0x4b, 0xe2, 0xbf, 0xfd, + 0xc3, 0x92, 0xf8, 0x3c, 0xf7, 0x22, 0x4b, 0xe2, 0xcb, 0x5f, 0x04, 0x4b, 0xe2, 0x49, 0xbb, 0xaa, + 0x2c, 0x65, 0x49, 0x7c, 0xbe, 0x76, 0xab, 0x2c, 0x78, 0xe5, 0x90, 0xf8, 0xea, 0x5a, 0xc8, 0x8a, + 0x78, 0x3a, 0x88, 0xef, 0x76, 0x10, 0x95, 0x2f, 0x88, 0xe7, 0x90, 0x78, 0xed, 0xce, 0xc7, 0x1a, + 0x06, 0x51, 0x2d, 0x18, 0xfc, 0x5f, 0xd0, 0x37, 0x51, 0xff, 0xa1, 0x96, 0x84, 0x03, 0xa0, 0x62, + 0xf8, 0x67, 0x6c, 0x67, 0x25, 0xfc, 0x26, 0xcc, 0x64, 0x25, 0x7c, 0x8e, 0xaa, 0x65, 0x25, 0x7c, + 0x7e, 0xdb, 0x8b, 0x95, 0xf0, 0x45, 0x73, 0x2b, 0x2b, 0xe1, 0xab, 0x16, 0xaa, 0xc0, 0x54, 0xc2, + 0xaf, 0xe0, 0x01, 0x5e, 0x55, 0xfc, 0xea, 0x12, 0x58, 0x21, 0x5f, 0x65, 0xe0, 0x41, 0x04, 0x1f, + 0x60, 0x00, 0x42, 0x05, 0x21, 0x78, 0x20, 0x82, 0x07, 0x23, 0x6c, 0x40, 0xc2, 0x00, 0x25, 0x10, + 0x60, 0x82, 0x03, 0xa7, 0xcc, 0x60, 0xac, 0x56, 0xc2, 0x95, 0x73, 0x06, 0xa9, 0xa5, 0x10, 0x14, + 0x9c, 0x60, 0x01, 0x0a, 0x19, 0xa4, 0x14, 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, 0xa0, + 0xa5, 0x03, 0xb8, 0xb0, 0xc0, 0x0b, 0x0c, 0xc0, 0x60, 0x41, 0x2c, 0x33, 0xfc, 0x66, 0x18, 0xdc, + 0x26, 0xb8, 0xce, 0x72, 0x79, 0x5e, 0xcd, 0x97, 0x01, 0xea, 0x5f, 0x30, 0xdb, 0x17, 0xe1, 0x41, + 0x4d, 0x03, 0xb0, 0x29, 0x02, 0x37, 0x2d, 0x00, 0xa7, 0x0e, 0xe4, 0xd4, 0x01, 0x9d, 0x2e, 0xb0, + 0xc3, 0x04, 0x3c, 0x50, 0xd0, 0xcb, 0xa4, 0x03, 0xdb, 0x0e, 0xb9, 0x72, 0x62, 0x98, 0x68, 0x72, + 0x67, 0xe2, 0x79, 0xa1, 0x28, 0xf0, 0xa9, 0xb1, 0xcc, 0x72, 0x35, 0x80, 0xd7, 0xe0, 0x44, 0x93, + 0xbb, 0xa9, 0xa8, 0xb8, 0x95, 0x8b, 0x7c, 0xea, 0xd0, 0xed, 0x64, 0xd9, 0x2a, 0x34, 0xb4, 0x95, + 0x3d, 0x2e, 0x46, 0x41, 0x7b, 0x59, 0xb6, 0x18, 0xe8, 0x36, 0x33, 0x5c, 0xba, 0x00, 0x74, 0x47, + 0x56, 0xd6, 0x2e, 0x00, 0x54, 0x59, 0xb4, 0x16, 0x2c, 0x9e, 0x2e, 0x86, 0x99, 0x99, 0x32, 0xcc, + 0x67, 0x66, 0x46, 0xd0, 0x76, 0x60, 0x66, 0x46, 0xce, 0xb6, 0x66, 0x66, 0x46, 0xf8, 0x82, 0x98, + 0x99, 0x21, 0x3f, 0xfd, 0xa0, 0x74, 0xf4, 0x64, 0x66, 0x92, 0x87, 0x24, 0x35, 0x77, 0xb8, 0xf8, + 0xb4, 0x05, 0x3e, 0xb5, 0xea, 0x11, 0x43, 0xc0, 0xa7, 0x57, 0x65, 0x0b, 0xf9, 0xdf, 0x3f, 0xb7, + 0x6b, 0x87, 0x76, 0xed, 0x34, 0xa8, 0xdd, 0xbc, 0xfd, 0x6f, 0xe3, 0xd3, 0x7f, 0xfe, 0xf3, 0xe2, + 0x2b, 0x5f, 0xf8, 0x1f, 0x5c, 0xaf, 0xfb, 0x96, 0x71, 0x36, 0xcf, 0x89, 0x35, 0xfb, 0xe0, 0x3e, + 0x18, 0x4e, 0x0c, 0x7e, 0x84, 0x3d, 0x5f, 0x06, 0x63, 0x6b, 0xc6, 0xd6, 0x8c, 0xad, 0x19, 0x5b, + 0x33, 0xb6, 0x66, 0x6c, 0xcd, 0xd8, 0x9a, 0xcc, 0xc4, 0xd8, 0xfa, 0x1b, 0x4e, 0x8c, 0x49, 0x18, + 0xa5, 0x2f, 0x77, 0x15, 0x04, 0xd6, 0x07, 0xc0, 0x4b, 0xe8, 0x06, 0xd1, 0xad, 0x81, 0x8f, 0xaa, + 0xb1, 0x0f, 0xec, 0xad, 0x45, 0xf1, 0x00, 0x3c, 0x79, 0x28, 0x09, 0x2c, 0x56, 0x96, 0x73, 0xb5, + 0x88, 0x55, 0xb5, 0xac, 0xe7, 0x34, 0x0e, 0xfa, 0x69, 0x38, 0x8a, 0x9a, 0xe1, 0x6d, 0x38, 0x2b, + 0xef, 0xd8, 0x86, 0x5f, 0xd7, 0xa7, 0x5f, 0x15, 0xb8, 0x80, 0xe0, 0x23, 0x5d, 0x80, 0x70, 0x17, + 0xd0, 0xd8, 0x3d, 0x6c, 0x1c, 0xee, 0x1f, 0xec, 0x1e, 0xee, 0xd1, 0x17, 0x30, 0x20, 0xa1, 0xf5, + 0x4f, 0x3f, 0x4c, 0xf7, 0xf3, 0xac, 0x5b, 0xe7, 0x66, 0x3e, 0x98, 0xf0, 0xf6, 0x5d, 0x8a, 0x9f, + 0xef, 0x5f, 0xac, 0x83, 0x09, 0xff, 0x32, 0xcc, 0x67, 0xc2, 0x5f, 0xd0, 0x4e, 0x60, 0xc2, 0x5f, + 0xce, 0xb6, 0x66, 0xc2, 0x5f, 0xf8, 0x82, 0x98, 0xf0, 0x27, 0x35, 0xfd, 0xa0, 0x74, 0x74, 0x25, + 0xfc, 0x7f, 0x53, 0x90, 0xef, 0xdf, 0x63, 0xbe, 0xbf, 0xe4, 0x0f, 0xf3, 0xfd, 0x8c, 0x2b, 0x72, + 0x5c, 0x0e, 0xf3, 0xfd, 0x3c, 0xcd, 0x8b, 0x70, 0x01, 0xcc, 0xf7, 0x8b, 0x77, 0x01, 0xbb, 0x7b, + 0x4c, 0xf4, 0x33, 0x10, 0xa1, 0xf5, 0x9f, 0x7d, 0x98, 0xe8, 0xa7, 0xc5, 0xf0, 0x47, 0x32, 0xea, + 0x35, 0xae, 0x99, 0xfd, 0xda, 0x6e, 0x6b, 0x5c, 0xbd, 0xf8, 0x6d, 0xf5, 0x4b, 0x48, 0xb7, 0xbb, + 0xe2, 0xed, 0x62, 0xa0, 0x1d, 0x0c, 0xda, 0x3f, 0x04, 0xdd, 0x37, 0x04, 0xca, 0xf8, 0x1c, 0x63, + 0x5f, 0xa6, 0xd0, 0x39, 0xc6, 0xbe, 0xbc, 0xed, 0xca, 0x31, 0xf6, 0xd2, 0x90, 0x93, 0x63, 0xec, + 0xc9, 0x34, 0x7f, 0x2f, 0x11, 0xd8, 0xd7, 0x7d, 0x8f, 0xd7, 0x1b, 0x9a, 0xe0, 0x26, 0x36, 0x37, + 0x88, 0x1e, 0x7f, 0x39, 0x29, 0x03, 0xb0, 0xa3, 0xc7, 0xea, 0x2c, 0x02, 0xc1, 0x17, 0x2f, 0xe6, + 0x41, 0x52, 0x7d, 0x8e, 0x98, 0x0c, 0x95, 0x2a, 0x6c, 0x29, 0xca, 0x25, 0x6a, 0xaf, 0xcd, 0x03, + 0x5a, 0x50, 0x84, 0x39, 0xb3, 0x16, 0x7a, 0x46, 0x2d, 0xf4, 0x4c, 0x5a, 0xcc, 0x19, 0xb4, 0x28, + 0x0e, 0x04, 0x34, 0x97, 0x5b, 0xc9, 0x1c, 0x2e, 0xd2, 0x15, 0xc1, 0x49, 0x1a, 0x4f, 0xfa, 0x69, + 0xb4, 0x20, 0xdb, 0xf6, 0xfc, 0x81, 0xbb, 0x8b, 0xc5, 0xfb, 0x9d, 0xc5, 0x53, 0xf6, 0xdd, 0x24, + 0x4c, 0xfc, 0xd6, 0xf4, 0xf1, 0xfa, 0xad, 0x64, 0xec, 0x7b, 0xc3, 0x7b, 0xff, 0x3c, 0x75, 0x93, + 0xc8, 0x6f, 0x2f, 0x1e, 0x9d, 0x9f, 0x7d, 0x4f, 0x6f, 0xf6, 0xa0, 0xfc, 0x56, 0x10, 0xd9, 0xcb, + 0x87, 0xd2, 0x0b, 0x07, 0x18, 0x98, 0x26, 0x1f, 0x7a, 0x64, 0x5b, 0x28, 0xdc, 0x9b, 0xa2, 0x79, + 0xd1, 0x0a, 0x78, 0x4f, 0xd9, 0x7e, 0x41, 0xee, 0x6e, 0x13, 0xbc, 0xd3, 0xac, 0x99, 0x84, 0x82, + 0x34, 0x8d, 0xc3, 0xeb, 0x49, 0x6a, 0xe4, 0xdf, 0xfc, 0xf7, 0x98, 0xd8, 0xf9, 0xc2, 0x70, 0xe1, + 0xde, 0x0c, 0xe3, 0xd2, 0x65, 0x98, 0xb7, 0x53, 0x48, 0x6f, 0xa3, 0x00, 0xdf, 0x3e, 0xa1, 0xbd, + 0x6d, 0x82, 0x7d, 0xbb, 0x04, 0xfb, 0x36, 0x09, 0xf3, 0xed, 0x11, 0x89, 0xfc, 0x67, 0x7e, 0xe4, + 0x28, 0x97, 0x1a, 0x5b, 0xf3, 0xba, 0x2c, 0x18, 0xe7, 0x95, 0xcd, 0x77, 0x9f, 0x99, 0x8d, 0x92, + 0x25, 0x87, 0x00, 0x1a, 0x38, 0xb0, 0x41, 0x04, 0x1c, 0x60, 0xd0, 0x41, 0x05, 0x1e, 0x78, 0xf0, + 0x81, 0x07, 0x20, 0x6c, 0x10, 0xc2, 0x00, 0x22, 0x10, 0x30, 0x82, 0x03, 0xa4, 0xcc, 0xe0, 0xe1, + 0xa8, 0x1f, 0x0c, 0x6b, 0xe3, 0x78, 0x94, 0x9a, 0x3e, 0x64, 0xef, 0xc1, 0x63, 0x3a, 0xe8, 0xcb, + 0x95, 0xb0, 0x9a, 0x99, 0x58, 0xa5, 0x0b, 0xaf, 0x14, 0x60, 0x16, 0x3a, 0x6e, 0xa9, 0xc1, 0x2e, + 0x35, 0xf8, 0xa5, 0x03, 0xc3, 0xb0, 0x70, 0x0c, 0x0c, 0xcb, 0x32, 0x89, 0xe0, 0x57, 0x33, 0x9b, + 0x68, 0x72, 0x67, 0xe2, 0x00, 0x10, 0x70, 0x9e, 0x42, 0xce, 0x4e, 0x03, 0xd0, 0x76, 0x27, 0x9a, + 0xdc, 0x4d, 0xc5, 0xc3, 0x2d, 0x9a, 0xe7, 0x53, 0x86, 0xac, 0x63, 0xcd, 0xac, 0x47, 0xae, 0x67, + 0x7d, 0x5c, 0x04, 0x70, 0x5d, 0x6b, 0xb6, 0x08, 0xc8, 0xfa, 0x56, 0x3c, 0x0a, 0x60, 0xfa, 0x68, + 0xa3, 0x08, 0xcb, 0xba, 0x61, 0x19, 0x95, 0x6f, 0x9f, 0x97, 0x16, 0x21, 0x8d, 0x79, 0x60, 0x51, + 0xac, 0x6a, 0x57, 0xc1, 0xa2, 0x58, 0x59, 0xae, 0x01, 0xa1, 0x94, 0x2b, 0xbf, 0xae, 0x81, 0x30, + 0x7a, 0x6f, 0x3f, 0x3e, 0x0a, 0x16, 0x07, 0x6b, 0xf3, 0x38, 0xf3, 0x1a, 0xdb, 0x81, 0x19, 0x06, + 0x0f, 0x60, 0x75, 0xc1, 0x73, 0x9b, 0x59, 0x12, 0xbc, 0x09, 0x33, 0x59, 0x12, 0x9c, 0xa3, 0x5a, + 0x59, 0x12, 0x9c, 0xdf, 0xf6, 0x62, 0x49, 0x70, 0xd1, 0x70, 0xca, 0x92, 0xe0, 0xaa, 0xc5, 0x23, + 0x2c, 0x09, 0xce, 0xf7, 0x7c, 0x60, 0x49, 0x30, 0xc1, 0x06, 0x11, 0x70, 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, 0x08, 0x0e, 0x90, - 0x32, 0x83, 0x71, 0x52, 0x3f, 0xcf, 0x9e, 0x35, 0x48, 0xf7, 0x6a, 0x3d, 0x05, 0x50, 0x6c, 0x1e, - 0x21, 0x50, 0x29, 0x06, 0x2b, 0x74, 0xc0, 0x52, 0x03, 0x5a, 0x6a, 0x80, 0x4b, 0x07, 0x78, 0x61, - 0x01, 0x18, 0x18, 0x88, 0x65, 0x12, 0xc1, 0x6f, 0x1e, 0x09, 0x8d, 0x31, 0xd7, 0xa3, 0x71, 0x80, - 0xdd, 0x41, 0x72, 0x08, 0x68, 0x7a, 0xcb, 0x44, 0x37, 0x73, 0x30, 0x66, 0x0b, 0x49, 0xc1, 0x4f, - 0x9e, 0x2d, 0x24, 0x72, 0x96, 0x91, 0xd5, 0x99, 0xb3, 0xbc, 0x9c, 0x87, 0xf0, 0x06, 0xb6, 0x36, - 0x5b, 0x48, 0xb8, 0xb5, 0xb9, 0xb5, 0x75, 0x44, 0x03, 0xb8, 0x56, 0xb3, 0x73, 0xa4, 0xca, 0x96, - 0xb2, 0x73, 0x24, 0x5f, 0xbb, 0xb5, 0xd5, 0x86, 0xaf, 0x57, 0x9b, 0xb2, 0x73, 0xa4, 0x3a, 0x16, - 0xb2, 0x73, 0x84, 0xde, 0xe1, 0xfb, 0xbc, 0x43, 0xa5, 0x3b, 0x47, 0x7a, 0xcb, 0xc7, 0x71, 0x9c, - 0x3d, 0x0d, 0xf6, 0x8e, 0x68, 0xf3, 0x3b, 0x20, 0x05, 0x96, 0x50, 0x85, 0x95, 0xec, 0x10, 0xd9, - 0xb0, 0xa1, 0xec, 0x10, 0xc9, 0xd5, 0x64, 0x76, 0x88, 0x14, 0x64, 0x38, 0x3b, 0x44, 0xc8, 0x03, - 0x28, 0xb1, 0x08, 0x4c, 0x87, 0x48, 0x8a, 0x54, 0x18, 0x90, 0x1d, 0x0f, 0x73, 0xab, 0xb1, 0xfa, - 0x43, 0xb6, 0xd9, 0x1f, 0x52, 0x79, 0xbc, 0x01, 0xc6, 0x1c, 0x54, 0xdc, 0x81, 0xc7, 0x1e, 0x78, - 0xfc, 0xc1, 0xc6, 0x20, 0x0c, 0x1c, 0x02, 0xc1, 0xa2, 0x4c, 0x0a, 0x70, 0xe5, 0x88, 0x0f, 0x65, - 0x88, 0x43, 0x13, 0xa5, 0x61, 0x7a, 0x1f, 0x9b, 0x6b, 0x24, 0xaf, 0xbd, 0xca, 0xa9, 0x00, 0x0d, - 0xc7, 0xb4, 0xdc, 0xe5, 0xa3, 0x3e, 0x0e, 0x12, 0x83, 0xdb, 0x96, 0xe3, 0xf6, 0xdd, 0xbe, 0xdf, - 0xbf, 0x38, 0xf6, 0x5a, 0x97, 0xbe, 0xf7, 0xb6, 0xeb, 0xa0, 0x1d, 0x3b, 0xf3, 0xe2, 0x98, 0x04, - 0xb2, 0xfa, 0x13, 0xb4, 0xc1, 0xe2, 0x41, 0x39, 0x7e, 0xcf, 0xb1, 0x4f, 0x5e, 0xd9, 0xc7, 0x6e, - 0xcb, 0xf5, 0xde, 0x2e, 0x45, 0xd4, 0x47, 0x54, 0x91, 0x06, 0x35, 0x61, 0xab, 0xea, 0xab, 0xea, - 0xb2, 0x2f, 0x6d, 0xb7, 0x65, 0x1f, 0xb7, 0x1c, 0xff, 0xd8, 0xee, 0x34, 0xff, 0xe5, 0x36, 0xbd, - 0x57, 0x16, 0x2b, 0x43, 0x29, 0xaf, 0x0d, 0xc9, 0xab, 0xe7, 0xf4, 0xdd, 0xe6, 0x85, 0xdd, 0xa2, - 0xba, 0xa8, 0xae, 0x1c, 0x9c, 0x57, 0xf3, 0x77, 0xbf, 0xef, 0x36, 0x29, 0x29, 0x4a, 0x6a, 0x53, - 0x92, 0x6a, 0xb9, 0x9d, 0xd7, 0x7e, 0xb7, 0x77, 0xee, 0x39, 0x27, 0x9e, 0x7b, 0xde, 0x59, 0x50, - 0x17, 0xf5, 0x45, 0x7d, 0x6d, 0x52, 0x5f, 0x4d, 0xa7, 0x65, 0xbf, 0xa5, 0xaa, 0xa8, 0xaa, 0xcd, - 0xab, 0xca, 0xbf, 0xb4, 0x7b, 0xae, 0x3d, 0x73, 0x5d, 0xd4, 0x17, 0xf5, 0xb5, 0x29, 0x7d, 0xb9, - 0xdd, 0xcb, 0x7d, 0xdf, 0xed, 0x78, 0x4e, 0xef, 0xd4, 0x3e, 0x71, 0x7c, 0xbb, 0xd9, 0xec, 0x39, - 0xfd, 0x3e, 0x15, 0x46, 0x85, 0x6d, 0x4a, 0x61, 0x59, 0x7c, 0xe8, 0x9f, 0x9c, 0x77, 0xfa, 0x5e, - 0xcf, 0x76, 0x3b, 0x1e, 0x05, 0x46, 0x81, 0x6d, 0x4c, 0x60, 0x6d, 0xfb, 0x8d, 0xdf, 0x73, 0xfa, - 0x4e, 0xef, 0x92, 0xd9, 0x2e, 0x6a, 0x2c, 0x47, 0x0c, 0xb3, 0x3d, 0xaf, 0xe7, 0x1e, 0x5f, 0x78, - 0x0e, 0xdd, 0x17, 0xa5, 0xb5, 0x31, 0x69, 0x5d, 0x78, 0x6e, 0xcb, 0xfd, 0xb7, 0xd3, 0xa4, 0xe3, - 0xa2, 0xba, 0x36, 0xaf, 0x2e, 0xe7, 0x8d, 0xe7, 0x74, 0x9a, 0x4e, 0xd3, 0xb7, 0x9b, 0x6d, 0xb7, - 0xe3, 0x9f, 0xf5, 0xce, 0x2f, 0xba, 0xd4, 0x17, 0xf5, 0xb5, 0x29, 0x7d, 0xd9, 0xcd, 0xdf, 0xfd, - 0x96, 0xdd, 0x61, 0xb2, 0x9e, 0xb2, 0xda, 0xe8, 0xa1, 0xd8, 0xc9, 0x82, 0x45, 0xa7, 0xe9, 0xb7, - 0xfa, 0xf4, 0x59, 0x14, 0xd7, 0xc6, 0xc4, 0xe5, 0x76, 0x2f, 0x1b, 0xcc, 0x79, 0x51, 0x61, 0xf9, - 0x29, 0xcc, 0x73, 0xfc, 0xa6, 0x73, 0x6a, 0x5f, 0xb4, 0x3c, 0xbf, 0xed, 0x78, 0x3d, 0xf7, 0x84, - 0xe2, 0xa2, 0xb8, 0x36, 0x25, 0xae, 0x19, 0xc7, 0xb7, 0xed, 0x37, 0x7c, 0xe1, 0x48, 0x75, 0xe5, - 0xa0, 0xae, 0xb9, 0xaa, 0x5a, 0xe7, 0x3c, 0x0f, 0x29, 0xaa, 0x0d, 0xba, 0xac, 0x95, 0xbb, 0x62, - 0x8e, 0x8b, 0xea, 0xca, 0x21, 0x58, 0x5c, 0xbc, 0xfe, 0x61, 0x0e, 0x95, 0xfa, 0xca, 0x29, 0x5e, - 0xdc, 0xf7, 0x3b, 0x8e, 0x7b, 0xf6, 0xea, 0xf8, 0xbc, 0xc7, 0x70, 0x91, 0x02, 0xcb, 0x85, 0xb9, - 0x98, 0x40, 0xa5, 0xa4, 0x36, 0xea, 0xb3, 0x1a, 0xf4, 0x59, 0x14, 0x58, 0x6e, 0x02, 0xd3, 0xf1, - 0x3e, 0x11, 0xd2, 0xf2, 0x77, 0xbf, 0x70, 0xfb, 0x72, 0xdb, 0x7e, 0xe7, 0x76, 0xd5, 0xd0, 0x0d, - 0x4a, 0x19, 0x95, 0x2d, 0x23, 0x0d, 0x5d, 0x9f, 0x54, 0x51, 0xf9, 0xec, 0x00, 0xda, 0xdd, 0x49, - 0xe9, 0x88, 0x08, 0x95, 0xe1, 0xbb, 0x38, 0xa9, 0x23, 0x11, 0x3a, 0x02, 0x7d, 0x79, 0x4a, 0xf5, - 0xc8, 0x51, 0x0f, 0x72, 0x57, 0x26, 0x75, 0x54, 0xb6, 0x8e, 0xb4, 0x74, 0x5f, 0x52, 0x49, 0x65, - 0x2b, 0x49, 0x49, 0x97, 0x25, 0x85, 0x54, 0xb6, 0x90, 0xf4, 0x74, 0x53, 0x52, 0x4b, 0x22, 0x30, - 0x09, 0xb9, 0x6b, 0x92, 0x12, 0x2a, 0x5b, 0x42, 0x1a, 0xba, 0x23, 0xa9, 0xa2, 0xb2, 0x55, 0xa4, - 0xa3, 0x0b, 0x92, 0x3a, 0x2a, 0x5b, 0x47, 0xd0, 0xdd, 0x8e, 0x94, 0x4f, 0xe9, 0x87, 0x19, 0x7e, - 0x57, 0x23, 0x45, 0x54, 0xb6, 0x88, 0xb4, 0x74, 0x2f, 0x52, 0x49, 0x65, 0x2b, 0x49, 0x41, 0x97, - 0x22, 0x45, 0x54, 0xb6, 0x88, 0x34, 0x74, 0x23, 0x52, 0x45, 0x65, 0xab, 0x08, 0xb8, 0xeb, 0x90, - 0xe2, 0x29, 0xdd, 0x05, 0x29, 0xe8, 0x2e, 0xa4, 0x8a, 0xca, 0x0f, 0xce, 0x34, 0x74, 0x11, 0x52, - 0x47, 0x02, 0xe2, 0x33, 0x0d, 0xdd, 0x82, 0x14, 0x92, 0x08, 0x26, 0x62, 0xa2, 0x91, 0xd2, 0xf9, - 0x21, 0x1f, 0xd4, 0xa0, 0x0f, 0xa2, 0x90, 0x7e, 0x5a, 0x48, 0x7c, 0x5f, 0x46, 0xf9, 0x7c, 0x87, - 0x7c, 0x7a, 0xe7, 0x17, 0x9e, 0xd3, 0xf3, 0x4f, 0xec, 0x2e, 0xef, 0xb8, 0xa4, 0xae, 0x0a, 0xd1, - 0xd7, 0xe3, 0x7f, 0x63, 0x7f, 0x3b, 0xa5, 0xb5, 0x51, 0x69, 0xd9, 0xad, 0xb3, 0xf3, 0x9e, 0xeb, - 0xbd, 0x6a, 0xb3, 0xc5, 0xbd, 0xd8, 0x0f, 0x5b, 0xdc, 0xb9, 0x73, 0x2b, 0x77, 0x18, 0x50, 0x42, - 0x74, 0xfa, 0x54, 0x10, 0x58, 0xc0, 0xdc, 0xe5, 0x9d, 0xfe, 0x54, 0x55, 0x51, 0xea, 0xea, 0xf6, - 0x9c, 0x53, 0xf7, 0x8d, 0x7f, 0xda, 0xb2, 0xcf, 0x38, 0xcc, 0x8b, 0xba, 0xda, 0xb4, 0xae, 0x78, - 0x89, 0x0b, 0x55, 0xb5, 0x41, 0x55, 0xcd, 0xdf, 0x84, 0x2e, 0x11, 0x8b, 0xca, 0xa2, 0xb2, 0x36, - 0xa7, 0x2c, 0xcf, 0x3e, 0xdb, 0x6f, 0x50, 0x50, 0x14, 0xd4, 0x06, 0x5d, 0x55, 0x83, 0xae, 0x8a, - 0xca, 0xca, 0xc5, 0x55, 0x31, 0x79, 0x5c, 0xec, 0x87, 0xc9, 0x63, 0x6e, 0xd7, 0x6a, 0x45, 0xd6, - 0xd4, 0x0f, 0x23, 0x68, 0xaa, 0x87, 0x91, 0x32, 0x15, 0x54, 0x55, 0x05, 0x81, 0x46, 0xc4, 0x14, - 0x0e, 0x23, 0x5f, 0x2a, 0x88, 0x11, 0x2e, 0x23, 0x5b, 0x25, 0x11, 0x2d, 0xc6, 0x73, 0x95, 0x6f, - 0xa5, 0x6c, 0x0b, 0x85, 0x3b, 0x5d, 0xcb, 0x8e, 0xa2, 0x71, 0x1a, 0xa4, 0xe1, 0x38, 0xb2, 0x8e, - 0x00, 0xdc, 0xad, 0x95, 0x0c, 0xde, 0x9b, 0xdb, 0x60, 0x12, 0xa4, 0xef, 0x67, 0x0e, 0xb6, 0x3e, - 0x9e, 0x98, 0x68, 0x30, 0x8e, 0xae, 0xc3, 0x9b, 0x5a, 0x64, 0xd2, 0x0f, 0xe3, 0xf8, 0xcf, 0x5a, - 0x18, 0x25, 0x69, 0x10, 0x0d, 0x4c, 0xfd, 0xcb, 0x2f, 0x24, 0x6b, 0x5f, 0xa9, 0x4f, 0xe2, 0x71, - 0x3a, 0x1e, 0x8c, 0x47, 0x49, 0xf6, 0xbb, 0x7a, 0x98, 0x84, 0x49, 0x7d, 0x64, 0xee, 0xcc, 0x68, - 0xf9, 0x4b, 0x7d, 0x14, 0x46, 0x7f, 0xd6, 0x92, 0x34, 0x48, 0x4d, 0x6d, 0x18, 0xa4, 0xc1, 0x55, - 0x90, 0x98, 0xfa, 0x28, 0x99, 0xd4, 0xd3, 0xd1, 0x5d, 0x32, 0xfb, 0x47, 0xfd, 0x36, 0xad, 0x85, - 0x49, 0x54, 0x8f, 0x4c, 0x78, 0xf3, 0xfe, 0x6a, 0x1c, 0x27, 0xd9, 0xef, 0xea, 0x0f, 0x7f, 0x75, - 0xf6, 0x57, 0x26, 0xd3, 0xab, 0xf9, 0x37, 0x2e, 0x7e, 0xad, 0xcf, 0xff, 0x5c, 0xd9, 0x87, 0x82, - 0xdc, 0x0d, 0x26, 0x78, 0x73, 0x59, 0x33, 0xb5, 0x98, 0xeb, 0x60, 0x3a, 0x4a, 0x6b, 0xb7, 0x26, - 0x8d, 0xc3, 0x81, 0xf8, 0xfd, 0x95, 0x61, 0xcb, 0xba, 0xe9, 0xc2, 0x9d, 0xd8, 0xeb, 0x30, 0x1a, - 0x5a, 0x47, 0x5b, 0x3b, 0xc2, 0xcd, 0x3c, 0x99, 0x3b, 0x2a, 0xeb, 0x68, 0x6b, 0x5b, 0xb8, 0xa1, - 0xdd, 0xd8, 0x5c, 0x87, 0x1f, 0x31, 0x0e, 0x84, 0x95, 0x68, 0xc7, 0x83, 0xda, 0xcc, 0x75, 0x03, - 0x54, 0x12, 0x5a, 0xfd, 0xf1, 0x34, 0x1e, 0x18, 0x88, 0xc7, 0xbb, 0xd8, 0x5e, 0xe6, 0xfe, 0xc3, - 0x38, 0x9e, 0xed, 0x30, 0x6b, 0xb2, 0x50, 0x06, 0x46, 0x24, 0x69, 0xbd, 0x0a, 0x12, 0x3b, 0xbe, - 0x99, 0xde, 0x9a, 0x28, 0xb5, 0x8e, 0xb6, 0xd2, 0x78, 0x6a, 0x40, 0x0c, 0x7f, 0x64, 0x75, 0x26, - 0x6c, 0x82, 0xb8, 0x6a, 0x10, 0x6f, 0x86, 0x31, 0x08, 0x81, 0xcf, 0x89, 0x15, 0xc6, 0x79, 0xad, - 0xce, 0x87, 0x85, 0xd9, 0x20, 0xfb, 0x1f, 0x03, 0x68, 0xe0, 0xc0, 0x06, 0x11, 0x70, 0x80, 0x41, + 0x32, 0x83, 0x83, 0xda, 0x75, 0x98, 0xe2, 0xd6, 0x01, 0xcf, 0xcd, 0x67, 0xf1, 0x2f, 0x01, 0x4a, + 0x17, 0x48, 0x29, 0x00, 0x2a, 0x74, 0xb0, 0x52, 0x03, 0x58, 0x6a, 0x40, 0x4b, 0x07, 0x70, 0x61, + 0x81, 0x17, 0x18, 0x80, 0x65, 0x12, 0xc1, 0x2f, 0xfe, 0xbd, 0x1e, 0x8d, 0x86, 0x26, 0x80, 0x2e, + 0xfc, 0xdd, 0x61, 0x1d, 0x5e, 0xd5, 0x37, 0xa3, 0x85, 0xf1, 0x3e, 0x79, 0xed, 0x2e, 0x44, 0x78, + 0xb5, 0xcc, 0x00, 0x83, 0x01, 0x06, 0x03, 0x0c, 0x06, 0x18, 0x0c, 0x30, 0x18, 0x60, 0x30, 0xc0, + 0x60, 0x80, 0xf1, 0x8d, 0x1e, 0x7f, 0x12, 0x46, 0xe9, 0xcb, 0x5d, 0xe0, 0xf8, 0x02, 0xf1, 0xa6, + 0x94, 0x6e, 0x10, 0xdd, 0x4e, 0x9f, 0xfe, 0x9f, 0x90, 0x8e, 0x11, 0xf7, 0xbe, 0x70, 0xeb, 0x3c, + 0x8c, 0xe0, 0x2f, 0x3c, 0x57, 0x72, 0xd1, 0x79, 0x76, 0xc1, 0x39, 0xfa, 0x3a, 0x14, 0x5d, 0x6b, + 0xfe, 0xe9, 0x57, 0xe0, 0xad, 0x1d, 0x7c, 0xe4, 0xd6, 0x16, 0xb6, 0xb5, 0x1b, 0xbb, 0x87, 0x8d, + 0xc3, 0xfd, 0x83, 0xdd, 0xc3, 0x3d, 0xee, 0x71, 0x06, 0x04, 0xd5, 0xb2, 0xfa, 0x2d, 0xd3, 0xde, + 0x15, 0xb6, 0x94, 0xed, 0xe7, 0xf9, 0xda, 0xad, 0xb2, 0xc7, 0x74, 0xf6, 0x9a, 0x81, 0x9d, 0xe7, + 0xd5, 0xb1, 0x90, 0x9d, 0xe7, 0xf4, 0x0a, 0xdf, 0xe6, 0x15, 0x2a, 0xdf, 0x74, 0xde, 0x9c, 0x3d, + 0x05, 0xf6, 0x9b, 0x6b, 0xf3, 0x33, 0x4f, 0x7a, 0xb7, 0x6b, 0xf7, 0x41, 0x1c, 0x62, 0x78, 0x9b, + 0x67, 0x3a, 0xcf, 0x9f, 0x58, 0xcf, 0x1e, 0xf4, 0x4d, 0x98, 0xc9, 0x1e, 0xf4, 0x1c, 0x75, 0xcb, + 0x1e, 0xf4, 0xfc, 0xb6, 0x17, 0x7b, 0xd0, 0x8b, 0xc6, 0x54, 0xf6, 0xa0, 0x57, 0x2d, 0x32, 0x61, + 0x0f, 0x7a, 0xbe, 0xe7, 0x03, 0x7b, 0xd0, 0x09, 0x36, 0x88, 0x80, 0x03, 0x0c, 0x3a, 0xa8, 0xc0, + 0x03, 0x0f, 0x3e, 0xf0, 0x00, 0x84, 0x0d, 0x42, 0x18, 0x40, 0x04, 0x02, 0x46, 0x70, 0x80, 0x94, + 0x19, 0xcc, 0x16, 0x91, 0xd2, 0xc0, 0x89, 0x2d, 0x22, 0x04, 0x29, 0xc5, 0x40, 0x85, 0x0e, 0x56, + 0x6a, 0x00, 0x4b, 0x0d, 0x68, 0xe9, 0x00, 0x2e, 0x2c, 0xf0, 0x02, 0x03, 0xb0, 0x4c, 0x22, 0x6c, + 0x11, 0x29, 0x9d, 0x6f, 0xd8, 0x22, 0x52, 0xf4, 0x87, 0x2d, 0x22, 0x04, 0xfb, 0x0d, 0x2c, 0x83, + 0x2d, 0x22, 0x3c, 0x7e, 0x37, 0xb9, 0xb5, 0xd9, 0x22, 0x22, 0x6e, 0x6b, 0xb3, 0x45, 0x84, 0x01, + 0x41, 0x55, 0xad, 0x66, 0x8b, 0x48, 0x95, 0x2d, 0x65, 0x8b, 0x48, 0xbe, 0x76, 0xeb, 0x2d, 0x06, + 0x7f, 0x2c, 0x35, 0x65, 0xb3, 0x48, 0x75, 0x2c, 0x64, 0xb3, 0x08, 0xfd, 0xc3, 0xf7, 0xfa, 0x07, + 0xb6, 0x8d, 0x4c, 0x9f, 0xc7, 0x55, 0xf6, 0x38, 0xd8, 0x3f, 0xa2, 0xcd, 0xf5, 0xcc, 0x3b, 0x30, + 0xc2, 0x01, 0x58, 0xcb, 0x48, 0x38, 0x60, 0x97, 0xc8, 0x46, 0xcc, 0x64, 0x97, 0x48, 0x8e, 0x52, + 0x65, 0x97, 0x48, 0x7e, 0xdb, 0x8b, 0x5d, 0x22, 0x45, 0xf3, 0x29, 0xbb, 0x44, 0xaa, 0x16, 0x92, + 0xb0, 0x4b, 0x24, 0xdf, 0xf3, 0x81, 0x5d, 0x22, 0x04, 0x1b, 0x44, 0xc0, 0x01, 0x06, 0x1d, 0x54, + 0xe0, 0x81, 0x07, 0x1f, 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, 0x01, 0x23, 0x38, 0x40, + 0xca, 0x0c, 0x1e, 0x8e, 0xfa, 0xc1, 0x10, 0xb7, 0x4b, 0x64, 0x6e, 0x3e, 0xbb, 0x44, 0x08, 0x50, + 0xba, 0x40, 0x4a, 0x01, 0x50, 0xa1, 0x83, 0x95, 0x1a, 0xc0, 0x52, 0x03, 0x5a, 0x3a, 0x80, 0x0b, + 0x0b, 0xbc, 0xc0, 0x00, 0x2c, 0x93, 0x08, 0xbb, 0x44, 0x4a, 0xe7, 0x1b, 0x76, 0x89, 0x14, 0xfd, + 0x61, 0x97, 0x08, 0xc1, 0x7e, 0x03, 0xcb, 0x60, 0x97, 0x08, 0x8f, 0xdf, 0x4d, 0x6e, 0x6d, 0x76, + 0x89, 0x88, 0xdb, 0xda, 0xec, 0x12, 0x61, 0x40, 0x50, 0x55, 0xab, 0xd9, 0x25, 0x52, 0xf9, 0x33, + 0xca, 0x8a, 0xcd, 0xdd, 0x28, 0x35, 0xb8, 0x79, 0xef, 0x85, 0xfd, 0x4c, 0x7c, 0x17, 0x61, 0x36, + 0x13, 0xdf, 0x25, 0x2a, 0x9d, 0x89, 0xef, 0xf2, 0xb6, 0x2b, 0x13, 0xdf, 0xc2, 0x16, 0xc2, 0xc4, + 0x37, 0xa9, 0xe6, 0x2b, 0x12, 0x61, 0xe2, 0xbb, 0x74, 0xbe, 0x61, 0xe2, 0xbb, 0xe8, 0x0f, 0x13, + 0xdf, 0x04, 0xfb, 0x0d, 0x2c, 0x83, 0x89, 0x6f, 0x1e, 0xbf, 0x9b, 0xdc, 0xda, 0x4c, 0x7c, 0x8b, + 0xdb, 0xda, 0x4c, 0x7c, 0x33, 0x20, 0xa8, 0xaa, 0xd5, 0x4c, 0x7c, 0x57, 0xd9, 0x52, 0x8e, 0x47, + 0xca, 0xd7, 0x6e, 0x95, 0xe3, 0x4f, 0xc2, 0x01, 0x27, 0x22, 0x55, 0xc7, 0x42, 0x4e, 0x44, 0xa2, + 0x4b, 0xf8, 0x06, 0x97, 0x50, 0xf9, 0x21, 0x48, 0xee, 0x80, 0x83, 0x8f, 0xd4, 0x79, 0x98, 0xf9, + 0x1c, 0xa1, 0xe1, 0x28, 0x49, 0xc0, 0x46, 0x1f, 0xcd, 0x4c, 0xe6, 0xf0, 0xa3, 0x4d, 0x98, 0xc9, + 0xe1, 0x47, 0x39, 0x8a, 0x95, 0xc3, 0x8f, 0xf2, 0xdb, 0x5e, 0x1c, 0x7e, 0x54, 0x34, 0x8a, 0x72, + 0xf8, 0x51, 0xd5, 0xa2, 0x0f, 0x0e, 0x3f, 0xca, 0xf7, 0x7c, 0xe0, 0xf0, 0x23, 0x82, 0x0d, 0x22, + 0xe0, 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, + 0x81, 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0x07, 0xb5, 0xeb, 0x30, 0xc5, 0x6d, 0x02, 0x99, 0x9b, + 0xcf, 0x1e, 0x10, 0x02, 0x94, 0x2e, 0x90, 0x52, 0x00, 0x54, 0xe8, 0x60, 0xa5, 0x06, 0xb0, 0xd4, + 0x80, 0x96, 0x0e, 0xe0, 0xc2, 0x02, 0x2f, 0x30, 0x00, 0xcb, 0x24, 0x82, 0xdf, 0x03, 0x72, 0x3d, + 0x1a, 0x0d, 0x4d, 0x10, 0x01, 0x37, 0x81, 0xec, 0xec, 0xb0, 0xda, 0xae, 0xea, 0x9b, 0x11, 0xe8, + 0x95, 0xf2, 0xda, 0x9d, 0x88, 0xf2, 0x8a, 0x99, 0x81, 0x06, 0x03, 0x0d, 0x06, 0x1a, 0x0c, 0x34, + 0x18, 0x68, 0x30, 0xd0, 0x60, 0xa0, 0xc1, 0x40, 0xe3, 0x1b, 0x3d, 0x3e, 0x9b, 0xcd, 0x4b, 0x30, + 0x9d, 0xcd, 0xe6, 0x25, 0x3d, 0x78, 0x36, 0x9b, 0xcb, 0x59, 0x06, 0x9b, 0xcd, 0x79, 0xfc, 0x6e, + 0x72, 0x6b, 0xb3, 0xd9, 0x5c, 0xdc, 0xd6, 0x66, 0xb3, 0x39, 0x03, 0x82, 0xaa, 0x5a, 0xcd, 0x66, + 0xf3, 0x2a, 0x5b, 0xca, 0x66, 0xf3, 0x7c, 0xed, 0x56, 0xd9, 0x59, 0x3a, 0x1c, 0x25, 0x09, 0xdb, + 0xcd, 0xab, 0x63, 0x21, 0xdb, 0xcd, 0xe9, 0x14, 0xbe, 0xc9, 0x29, 0x54, 0xbe, 0xe1, 0xbc, 0x35, + 0x7d, 0x08, 0x6c, 0x39, 0xd7, 0xe6, 0x65, 0xe6, 0x2f, 0xd7, 0xa7, 0xdb, 0xcb, 0xcc, 0xc2, 0xab, + 0x5a, 0x8a, 0x90, 0x4f, 0xff, 0xbc, 0x34, 0xe0, 0x4b, 0xeb, 0xd9, 0x88, 0xbe, 0x09, 0x33, 0xd9, + 0x88, 0x9e, 0xa3, 0x6e, 0xd9, 0x88, 0x9e, 0xdf, 0xf6, 0x62, 0x23, 0x7a, 0xd1, 0x90, 0xca, 0x46, + 0xf4, 0xaa, 0xc5, 0x25, 0x6c, 0x44, 0xcf, 0xf7, 0x7c, 0x60, 0x23, 0x3a, 0xc1, 0x06, 0x11, 0x70, + 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, + 0xc0, 0x08, 0x0e, 0x90, 0x32, 0x83, 0x53, 0xc4, 0x3a, 0xca, 0xec, 0x98, 0x01, 0xc8, 0xfb, 0xac, + 0xc3, 0x26, 0x76, 0x87, 0x10, 0xa3, 0x14, 0xe3, 0x14, 0x3a, 0x56, 0xa9, 0xc1, 0x2b, 0x35, 0x98, + 0xa5, 0x03, 0xb7, 0xb0, 0xb0, 0x0b, 0x0c, 0xbf, 0x32, 0x89, 0xe0, 0x77, 0x87, 0x98, 0x68, 0x72, + 0x67, 0xe2, 0x79, 0x09, 0x00, 0x70, 0x2b, 0x7a, 0x03, 0xd0, 0x76, 0x27, 0x9a, 0xdc, 0x4d, 0xc5, + 0xc3, 0x2d, 0x9a, 0xe7, 0x53, 0x6e, 0x85, 0x49, 0x6a, 0xa7, 0x69, 0x8c, 0xb9, 0x4d, 0xcf, 0xc3, + 0xc8, 0x19, 0x9a, 0xe9, 0x29, 0x94, 0x58, 0x47, 0x5b, 0xd1, 0x64, 0x38, 0x04, 0x14, 0xfa, 0x79, + 0xf0, 0x11, 0x7f, 0x11, 0x17, 0xf1, 0xc0, 0xc4, 0x66, 0x70, 0xfc, 0xb0, 0x58, 0x02, 0x8b, 0x7f, + 0x2b, 0x6c, 0x29, 0x8b, 0x7f, 0xf3, 0xb5, 0x5b, 0x65, 0x9d, 0xdf, 0x17, 0x75, 0x44, 0xac, 0x03, + 0xae, 0x8e, 0x85, 0xac, 0x03, 0xa6, 0x7f, 0xf8, 0x5e, 0xff, 0x50, 0xf9, 0x92, 0xe0, 0x4e, 0xf6, + 0x3c, 0x66, 0x61, 0x36, 0x8b, 0x83, 0xb5, 0xb9, 0x1e, 0xeb, 0x2e, 0xf8, 0x58, 0x9b, 0x49, 0xff, + 0x3a, 0x88, 0x06, 0x1f, 0xc2, 0xc1, 0x6c, 0x3b, 0x83, 0x94, 0x06, 0x3f, 0x63, 0x3b, 0x0b, 0x83, + 0x37, 0x61, 0x26, 0x0b, 0x83, 0x73, 0x54, 0x2d, 0x0b, 0x83, 0xf3, 0xdb, 0x5e, 0x2c, 0x0c, 0x2e, + 0x9a, 0x5a, 0x59, 0x18, 0x5c, 0xb5, 0x40, 0x85, 0x85, 0xc1, 0xf9, 0x9e, 0x0f, 0x2c, 0x0c, 0x26, + 0xd8, 0x20, 0x02, 0x0e, 0x30, 0xe8, 0xa0, 0x02, 0x0f, 0x3c, 0xf8, 0xc0, 0x03, 0x10, 0x36, 0x08, + 0x61, 0x00, 0x11, 0x08, 0x18, 0xc1, 0x01, 0x52, 0x66, 0x30, 0x4e, 0xea, 0x67, 0xed, 0x59, 0x83, + 0x92, 0x01, 0x5a, 0x07, 0x50, 0x2c, 0x11, 0x26, 0x50, 0x29, 0x06, 0x2b, 0x74, 0xc0, 0x52, 0x03, + 0x5a, 0x6a, 0x80, 0x4b, 0x07, 0x78, 0x61, 0x01, 0x18, 0x18, 0x88, 0x65, 0x12, 0xc1, 0x2f, 0x11, + 0x0e, 0x8d, 0x31, 0x37, 0xc3, 0x51, 0x80, 0x3d, 0x45, 0xfe, 0x10, 0xd0, 0xf4, 0x96, 0x89, 0x6e, + 0x67, 0x60, 0xcc, 0x31, 0xf2, 0x05, 0x3f, 0x79, 0x8e, 0x91, 0x97, 0xb3, 0x8c, 0x6c, 0xd6, 0x34, + 0x47, 0x4c, 0xf3, 0x10, 0xde, 0xc0, 0xd6, 0xe6, 0x18, 0x79, 0x6e, 0x6d, 0x6e, 0x6d, 0x1d, 0xd1, + 0x00, 0xae, 0xd5, 0x9c, 0x1e, 0x5f, 0x65, 0x4b, 0xd9, 0x40, 0x92, 0xaf, 0xdd, 0xda, 0x0a, 0xc4, + 0x57, 0xab, 0x4d, 0xd9, 0x3e, 0x52, 0x1d, 0x0b, 0xd9, 0x3e, 0x42, 0xef, 0xf0, 0x7d, 0xde, 0xa1, + 0xd2, 0xcd, 0x23, 0xe7, 0xc1, 0xc7, 0x56, 0x18, 0xbd, 0x3f, 0xce, 0x1e, 0x06, 0x5b, 0x47, 0xb4, + 0xb9, 0x9d, 0x59, 0xfb, 0x45, 0x6c, 0x12, 0x13, 0xdf, 0x07, 0xd7, 0x43, 0x03, 0xdd, 0x45, 0xb2, + 0x7e, 0x19, 0x6c, 0x28, 0xd9, 0x84, 0x99, 0x6c, 0x28, 0xc9, 0x51, 0xc0, 0x6c, 0x28, 0xc9, 0x6f, + 0x7b, 0xb1, 0xa1, 0xa4, 0x68, 0x8e, 0x65, 0x43, 0x49, 0xd5, 0x42, 0x17, 0x36, 0x94, 0xe4, 0x7b, + 0x3e, 0xb0, 0xa1, 0x84, 0x60, 0x83, 0x08, 0x38, 0xc0, 0xa0, 0x83, 0x0a, 0x3c, 0xf0, 0xe0, 0x03, + 0x0f, 0x40, 0xd8, 0x20, 0x84, 0x01, 0x44, 0x20, 0x60, 0x04, 0x07, 0x48, 0x99, 0xc1, 0x6c, 0x28, + 0x29, 0x1d, 0xa0, 0xd8, 0x50, 0x42, 0xa0, 0x52, 0x0c, 0x56, 0xe8, 0x80, 0xa5, 0x06, 0xb4, 0xd4, + 0x00, 0x97, 0x0e, 0xf0, 0xc2, 0x02, 0x30, 0x30, 0x10, 0xcb, 0x24, 0xc2, 0x86, 0x12, 0x19, 0x90, + 0xc3, 0x86, 0x92, 0xc2, 0x3f, 0x6c, 0x28, 0x21, 0xde, 0x6f, 0x60, 0x19, 0xac, 0x3a, 0xe7, 0x21, + 0xbc, 0xc9, 0xad, 0xcd, 0x86, 0x12, 0x6e, 0x6d, 0x6e, 0x6d, 0x1d, 0xd1, 0x00, 0xae, 0xd5, 0x6c, + 0x28, 0xa9, 0xb2, 0xa5, 0x6c, 0x28, 0xc9, 0xd7, 0x6e, 0x8d, 0x25, 0xe3, 0x6b, 0x0b, 0x4f, 0xd9, + 0x5b, 0x52, 0x1d, 0x0b, 0xd9, 0x5b, 0x42, 0x47, 0xf1, 0xc3, 0x8e, 0xa2, 0xea, 0x6d, 0x26, 0xdd, + 0xec, 0xc1, 0xb0, 0xe1, 0x44, 0xb7, 0x2f, 0xb2, 0xee, 0xc2, 0xa8, 0x96, 0xf5, 0x59, 0x0d, 0xcc, + 0x30, 0x78, 0x00, 0xea, 0x32, 0x59, 0xb5, 0x9d, 0xad, 0x25, 0x9b, 0x30, 0x93, 0xad, 0x25, 0x39, + 0xaa, 0x96, 0xad, 0x25, 0xf9, 0x6d, 0x2f, 0xb6, 0x96, 0x14, 0x8d, 0xb1, 0x6c, 0x2d, 0xa9, 0x5a, + 0xe4, 0xc2, 0xd6, 0x92, 0x7c, 0xcf, 0x07, 0xb6, 0x96, 0x10, 0x6c, 0x10, 0x01, 0x07, 0x18, 0x74, + 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, + 0x00, 0x29, 0x33, 0x38, 0xa8, 0x5d, 0x87, 0x29, 0x6e, 0x5b, 0xc9, 0xdc, 0x7c, 0xb6, 0x94, 0x10, + 0xa0, 0x74, 0x81, 0x94, 0x02, 0xa0, 0x42, 0x07, 0x2b, 0x35, 0x80, 0xa5, 0x06, 0xb4, 0x74, 0x00, + 0x17, 0x16, 0x78, 0x81, 0x01, 0x58, 0x26, 0x11, 0xfc, 0x96, 0x92, 0xeb, 0xd1, 0x68, 0x68, 0x82, + 0x08, 0xb8, 0x9d, 0x64, 0x67, 0x87, 0xf5, 0x7b, 0x55, 0xdf, 0x8c, 0xb3, 0x71, 0x80, 0x18, 0xef, + 0x96, 0xd7, 0xee, 0xc4, 0xc7, 0x25, 0x30, 0xd0, 0x60, 0xa0, 0xc1, 0x40, 0x83, 0x81, 0x06, 0x03, + 0x0d, 0x06, 0x1a, 0xe4, 0x1a, 0x06, 0x1a, 0x2a, 0x02, 0x8d, 0x49, 0x18, 0x61, 0xb7, 0xad, 0x1f, + 0x00, 0x9a, 0xde, 0x0d, 0xa2, 0x5b, 0xc3, 0xae, 0xf5, 0xe2, 0x1f, 0x3c, 0xbb, 0xd6, 0xe5, 0x2c, + 0x63, 0xd9, 0xda, 0xba, 0xcd, 0xd6, 0x56, 0x1e, 0xbf, 0x1b, 0xd8, 0xda, 0xec, 0x5a, 0x17, 0xb7, + 0xb5, 0x1b, 0xbb, 0x87, 0x8d, 0xc3, 0xfd, 0x83, 0xdd, 0xc3, 0x3d, 0xee, 0x71, 0x06, 0x04, 0xd5, + 0xb2, 0x9a, 0xed, 0xeb, 0x95, 0x3f, 0xa3, 0x66, 0x7d, 0x4a, 0xe8, 0xe9, 0xef, 0x6c, 0x09, 0x4c, + 0x7f, 0x17, 0x61, 0x36, 0xd3, 0xdf, 0x25, 0x8a, 0x9d, 0xe9, 0xef, 0xf2, 0xb6, 0x2b, 0xd3, 0xdf, + 0xc2, 0x16, 0xc2, 0xf4, 0x37, 0xd9, 0xe6, 0x2b, 0x12, 0x61, 0xfa, 0xbb, 0x74, 0xbe, 0x61, 0xfa, + 0xbb, 0xe8, 0x0f, 0xd3, 0xdf, 0x04, 0xfb, 0x0d, 0x2c, 0x83, 0xe9, 0x6f, 0x1e, 0xbf, 0x9b, 0xdc, + 0xda, 0x4c, 0x7f, 0x8b, 0xdb, 0xda, 0x4c, 0x7f, 0x33, 0x20, 0xa8, 0xaa, 0xd5, 0x4c, 0x7f, 0x57, + 0xd9, 0x52, 0x4e, 0x6f, 0xcd, 0xd7, 0x6e, 0x75, 0x43, 0x19, 0x57, 0x06, 0xba, 0x71, 0x64, 0x6b, + 0x75, 0x2c, 0xe4, 0xc8, 0x56, 0x7a, 0x87, 0xef, 0xf3, 0x0e, 0xd5, 0x9e, 0xd3, 0x1a, 0x46, 0xe7, + 0xc1, 0xc7, 0x56, 0x18, 0xbd, 0x6f, 0xce, 0x9e, 0x05, 0x87, 0xb3, 0x6a, 0xf3, 0x3a, 0x56, 0x6c, + 0x92, 0x70, 0x30, 0x09, 0x86, 0x35, 0x9c, 0xcb, 0x5f, 0xb3, 0x94, 0xfa, 0x33, 0xb6, 0x73, 0x38, + 0xeb, 0x26, 0xcc, 0xe4, 0x70, 0xd6, 0x1c, 0x55, 0xcb, 0xe1, 0xac, 0xf9, 0x6d, 0x2f, 0x0e, 0x67, + 0x2d, 0x1a, 0x58, 0x39, 0x9c, 0xb5, 0x6a, 0x31, 0x0a, 0x87, 0xb3, 0xe6, 0x7b, 0x3e, 0x70, 0x38, + 0x2b, 0xc1, 0x06, 0x11, 0x70, 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, + 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, 0x08, 0x0e, 0x90, 0x32, 0x83, 0x71, 0x52, 0x3f, 0x6b, 0xcf, + 0x1a, 0xa4, 0x7b, 0xb5, 0x9e, 0x03, 0x28, 0x36, 0x8f, 0x10, 0xa8, 0x14, 0x83, 0x15, 0x3a, 0x60, + 0xa9, 0x01, 0x2d, 0x35, 0xc0, 0xa5, 0x03, 0xbc, 0xb0, 0x00, 0x0c, 0x0c, 0xc4, 0x32, 0x89, 0xe0, + 0x37, 0x8f, 0x84, 0xc6, 0x98, 0x9b, 0xe1, 0x28, 0xc0, 0xee, 0x20, 0x39, 0x04, 0x34, 0xbd, 0x65, + 0xa2, 0xdb, 0x19, 0x18, 0xb3, 0x85, 0xa4, 0xe0, 0x27, 0xcf, 0x16, 0x12, 0x39, 0xcb, 0xc8, 0xea, + 0xcc, 0x59, 0x5e, 0xce, 0x43, 0x78, 0x03, 0x5b, 0x9b, 0x2d, 0x24, 0xdc, 0xda, 0xdc, 0xda, 0x3a, + 0xa2, 0x01, 0x5c, 0xab, 0xd9, 0x39, 0x52, 0x65, 0x4b, 0xd9, 0x39, 0x92, 0xaf, 0xdd, 0xda, 0x6a, + 0xc3, 0x57, 0xab, 0x4d, 0xd9, 0x39, 0x52, 0x1d, 0x0b, 0xd9, 0x39, 0x42, 0xef, 0xf0, 0x7d, 0xde, + 0xa1, 0xd2, 0x9d, 0x23, 0xdd, 0xc5, 0xe3, 0x38, 0xce, 0x9e, 0x06, 0x7b, 0x47, 0xb4, 0xf9, 0x1d, + 0x90, 0x02, 0x4b, 0xa8, 0xc2, 0x4a, 0x76, 0x88, 0x6c, 0xd8, 0x50, 0x76, 0x88, 0xe4, 0x6a, 0x32, + 0x3b, 0x44, 0x0a, 0x32, 0x9c, 0x1d, 0x22, 0xe4, 0x01, 0x94, 0x58, 0x04, 0xa6, 0x43, 0x24, 0x45, + 0x2a, 0x0c, 0xc8, 0x8e, 0x87, 0x99, 0xd5, 0x58, 0xfd, 0x21, 0xdb, 0xec, 0x0f, 0xa9, 0x3c, 0xde, + 0x00, 0x63, 0x0e, 0x2a, 0xee, 0xc0, 0x63, 0x0f, 0x3c, 0xfe, 0x60, 0x63, 0x10, 0x06, 0x0e, 0x81, + 0x60, 0x51, 0x26, 0x05, 0xb8, 0x72, 0xc4, 0xc7, 0x32, 0xc4, 0x81, 0x89, 0xd2, 0x30, 0x7d, 0x88, + 0xcd, 0x0d, 0x92, 0xd7, 0x5e, 0xe6, 0x54, 0x80, 0x86, 0x63, 0x5a, 0xee, 0xe2, 0x51, 0x1f, 0x07, + 0x89, 0xc1, 0x6d, 0xcb, 0x71, 0x7b, 0x6e, 0xcf, 0xef, 0x5d, 0x1e, 0x7b, 0xad, 0x2b, 0xdf, 0xfb, + 0xa3, 0xe3, 0xa0, 0x1d, 0x3b, 0xb3, 0xe2, 0x98, 0x04, 0xb2, 0xfa, 0x13, 0xb4, 0xc1, 0x62, 0xa9, + 0x9c, 0xee, 0xc5, 0xa5, 0xe7, 0x74, 0xfd, 0x13, 0xbb, 0x63, 0x1f, 0xbb, 0x2d, 0xd7, 0xfb, 0x63, + 0x21, 0xa3, 0x1e, 0xa2, 0x8e, 0x34, 0xe8, 0x09, 0x5b, 0x57, 0xdf, 0xa2, 0xaf, 0xa7, 0xff, 0x66, + 0xb1, 0x2e, 0x94, 0xd2, 0xda, 0xa4, 0xb4, 0xec, 0xd6, 0xd9, 0x45, 0xd7, 0xf5, 0x5e, 0x9d, 0x5b, + 0x2c, 0x4b, 0x2c, 0xf4, 0xf3, 0xf6, 0x17, 0xee, 0x60, 0xee, 0xdc, 0x8a, 0x1d, 0x06, 0x94, 0x10, + 0x9d, 0x3e, 0x15, 0x84, 0x16, 0x2b, 0xfb, 0x5d, 0xc7, 0x3e, 0x79, 0xc5, 0x78, 0x87, 0xaa, 0xca, + 0x5f, 0x5d, 0x9e, 0xe3, 0x37, 0x9d, 0x53, 0xfb, 0xb2, 0xe5, 0xf9, 0xe7, 0x8e, 0xd7, 0x75, 0x4f, + 0x18, 0xf1, 0x50, 0x5c, 0x9b, 0x12, 0xd7, 0x65, 0xfb, 0xe4, 0xa2, 0xdd, 0xf3, 0xba, 0xb6, 0xdb, + 0x76, 0x9a, 0x7e, 0xab, 0xd7, 0xa1, 0xb8, 0x28, 0xae, 0x4d, 0x89, 0xab, 0xe5, 0xb6, 0x5f, 0xfb, + 0x4d, 0xa7, 0x65, 0x33, 0x49, 0x43, 0x55, 0xe5, 0xa0, 0x2a, 0xff, 0xca, 0xee, 0xba, 0xb6, 0xe7, + 0x5e, 0xb4, 0xa9, 0x2f, 0xea, 0x6b, 0x53, 0xfa, 0x72, 0x3b, 0x57, 0xfb, 0x7e, 0xdb, 0x71, 0xcf, + 0x5e, 0x1d, 0x5f, 0x74, 0x7d, 0xbb, 0xd9, 0xec, 0x3a, 0xbd, 0x1e, 0x05, 0x46, 0x81, 0x6d, 0x4a, + 0x60, 0x76, 0xf3, 0xdc, 0x6d, 0xfb, 0x67, 0xdd, 0x8b, 0x4b, 0xd2, 0x16, 0x65, 0xb5, 0x41, 0x59, + 0xfd, 0xee, 0xf7, 0xdc, 0x26, 0x25, 0x45, 0x49, 0x6d, 0x4a, 0x52, 0xe7, 0xf6, 0x9b, 0x39, 0x6e, + 0x1d, 0xdb, 0xed, 0xe6, 0xbf, 0xdc, 0xa6, 0xf7, 0x8a, 0xea, 0xa2, 0xba, 0x36, 0x08, 0x5a, 0x0d, + 0x82, 0x16, 0x05, 0x96, 0x2f, 0xc9, 0xbb, 0x6d, 0xcf, 0xe9, 0x9e, 0xda, 0x27, 0x0e, 0x15, 0x46, + 0x85, 0xe5, 0x92, 0x8b, 0x68, 0x5d, 0x50, 0x54, 0x14, 0xd5, 0xe6, 0x44, 0x95, 0xc1, 0x96, 0x9f, + 0xe5, 0xe6, 0x3d, 0x0a, 0x8c, 0x02, 0xdb, 0x98, 0xc0, 0x9c, 0x37, 0x9e, 0xd3, 0x6e, 0x3a, 0x4d, + 0x66, 0x22, 0xa8, 0xaf, 0xdc, 0xc0, 0x9e, 0xdc, 0x45, 0x85, 0xe5, 0xa6, 0xb0, 0x4b, 0xcf, 0x6d, + 0xb9, 0xff, 0x76, 0x9a, 0x4c, 0x4c, 0x50, 0x5d, 0x9b, 0x57, 0x97, 0xdd, 0xfc, 0xdd, 0x6f, 0xd9, + 0x6d, 0x66, 0x53, 0x29, 0xab, 0x4d, 0xca, 0x6a, 0xca, 0x5a, 0x59, 0x46, 0x95, 0x65, 0x11, 0x54, + 0xd7, 0xe6, 0x53, 0x11, 0x9d, 0xee, 0x85, 0xe7, 0x9c, 0x78, 0xee, 0x45, 0x7b, 0x5e, 0x8c, 0x4a, + 0x7d, 0x51, 0x5f, 0x9b, 0x3a, 0x14, 0xaf, 0x6c, 0xb7, 0x65, 0x1f, 0xb7, 0x1c, 0x32, 0x17, 0xe5, + 0x95, 0x93, 0xfb, 0xb2, 0x3d, 0xaf, 0xeb, 0x1e, 0x5f, 0x7a, 0x0e, 0x83, 0x45, 0x4a, 0x6b, 0x73, + 0xc1, 0x62, 0xbb, 0xeb, 0xf4, 0x9c, 0xee, 0x15, 0xc3, 0x45, 0xea, 0x2b, 0x0f, 0x7d, 0x75, 0x9d, + 0x9e, 0xdb, 0xbc, 0xb4, 0x5b, 0x54, 0x17, 0xd5, 0x95, 0x43, 0xd4, 0x68, 0xbf, 0xf1, 0xe7, 0xfe, + 0x8b, 0xf0, 0x45, 0x8d, 0xe5, 0x08, 0x5f, 0xd0, 0xc9, 0x2e, 0x0e, 0x3c, 0xe0, 0xd6, 0xd5, 0xb4, + 0x65, 0x35, 0x77, 0x83, 0x52, 0x44, 0xe5, 0x47, 0x44, 0xf0, 0x5d, 0x9f, 0x14, 0x91, 0x08, 0x68, + 0x00, 0x7d, 0x8d, 0x41, 0xf5, 0xc8, 0x51, 0x0f, 0x72, 0x17, 0x27, 0x75, 0x54, 0xb6, 0x8e, 0x94, + 0x74, 0x6b, 0x52, 0x48, 0x65, 0x0b, 0x09, 0xba, 0x16, 0x92, 0xf2, 0x29, 0x5f, 0x3e, 0xa0, 0xdd, + 0x97, 0x94, 0x4e, 0xd9, 0xd2, 0xd1, 0xd0, 0x65, 0x49, 0x15, 0x09, 0x00, 0xa1, 0x06, 0x41, 0x88, + 0x42, 0xda, 0x0c, 0x51, 0x2b, 0xa8, 0xde, 0xa7, 0x92, 0x44, 0xc4, 0xf8, 0x98, 0xdd, 0x91, 0x14, + 0x4f, 0xd9, 0xe2, 0x51, 0xd2, 0x05, 0x49, 0x21, 0x95, 0x2d, 0x24, 0x1d, 0xdd, 0x8e, 0xd4, 0x91, + 0x08, 0xc0, 0x26, 0x17, 0x51, 0x49, 0x3f, 0xad, 0x24, 0x0d, 0xdd, 0x8b, 0x54, 0x51, 0xd9, 0x2a, + 0x82, 0xee, 0x52, 0xa4, 0x7c, 0xca, 0x96, 0x8f, 0x86, 0x6e, 0x44, 0xaa, 0x48, 0x44, 0x88, 0x0f, + 0xdf, 0x75, 0x48, 0x1d, 0x95, 0x7e, 0x98, 0x69, 0xe8, 0x2e, 0xa4, 0x8c, 0x44, 0xb8, 0x23, 0xe4, + 0x2e, 0x42, 0x4a, 0xa8, 0xf4, 0xe0, 0x4c, 0x45, 0xb7, 0x20, 0x75, 0x54, 0xb6, 0x8e, 0x34, 0x74, + 0x05, 0x52, 0x45, 0xa5, 0x47, 0x69, 0x6a, 0xba, 0xff, 0xa8, 0x25, 0x11, 0x70, 0xc4, 0x64, 0x11, + 0xa5, 0xf3, 0x0d, 0xd2, 0xe9, 0xf0, 0x86, 0x4b, 0xaa, 0xaa, 0x28, 0x75, 0xcd, 0xde, 0xac, 0x2d, + 0xae, 0xe5, 0xe5, 0xc8, 0x3d, 0x2a, 0x6b, 0x73, 0xca, 0xf2, 0xec, 0xb3, 0xfd, 0x06, 0x05, 0x45, + 0x41, 0x6d, 0xd0, 0x55, 0xed, 0xd3, 0x55, 0x51, 0x59, 0xb9, 0xb8, 0x2a, 0xca, 0x89, 0x72, 0xda, + 0x94, 0x9c, 0x3a, 0x5d, 0xe7, 0xd4, 0x7d, 0xc3, 0x11, 0xc6, 0x54, 0x55, 0x0e, 0xaa, 0x3a, 0x6d, + 0xd9, 0x67, 0x3d, 0x4e, 0x0b, 0x2a, 0xf6, 0xc3, 0x69, 0x41, 0xdc, 0xb7, 0x55, 0x8b, 0xac, 0xa9, + 0x20, 0x46, 0xd0, 0x14, 0x0e, 0x23, 0x65, 0x2a, 0xa8, 0x9a, 0xae, 0x87, 0xb2, 0xa1, 0x6c, 0xaa, + 0x14, 0xf9, 0x52, 0x3d, 0x8c, 0x70, 0xab, 0x13, 0xd9, 0xe2, 0x44, 0xb4, 0x18, 0xcf, 0x55, 0xbe, + 0x95, 0xb2, 0x2d, 0x14, 0xee, 0x7d, 0x2d, 0x3b, 0x8a, 0x46, 0x69, 0x90, 0x86, 0xa3, 0xc8, 0x3a, + 0x02, 0xf0, 0xbb, 0x56, 0xd2, 0x7f, 0x67, 0xee, 0x82, 0x71, 0x90, 0xbe, 0x9b, 0x7a, 0xda, 0xfa, + 0x68, 0x6c, 0xa2, 0xfe, 0x28, 0xba, 0x09, 0x6f, 0x6b, 0x91, 0x49, 0x3f, 0x8c, 0xe2, 0xf7, 0xb5, + 0x30, 0x4a, 0xd2, 0x20, 0xea, 0x9b, 0xfa, 0x97, 0x5f, 0x48, 0x56, 0xbe, 0x52, 0x1f, 0xc7, 0xa3, + 0x74, 0xd4, 0x1f, 0x0d, 0x93, 0xec, 0x77, 0xf5, 0x30, 0x09, 0x93, 0xfa, 0xd0, 0xdc, 0x9b, 0xe1, + 0xe2, 0x97, 0xfa, 0x30, 0x8c, 0xde, 0xd7, 0x92, 0x34, 0x48, 0x4d, 0x6d, 0x10, 0xa4, 0xc1, 0x75, + 0x90, 0x98, 0xfa, 0x30, 0x19, 0xd7, 0xd3, 0xe1, 0x7d, 0x32, 0xfd, 0x47, 0xfd, 0x2e, 0xad, 0x85, + 0x49, 0x54, 0x8f, 0x4c, 0x78, 0xfb, 0xee, 0x7a, 0x14, 0x27, 0xd9, 0xef, 0xea, 0x8f, 0x7f, 0x75, + 0xf6, 0x57, 0x26, 0x93, 0xeb, 0xd9, 0x37, 0xce, 0x7f, 0xad, 0xcf, 0xfe, 0x5c, 0xd9, 0x87, 0x82, + 0xdc, 0x0d, 0x26, 0x78, 0x73, 0x59, 0x53, 0xb5, 0x98, 0x9b, 0x60, 0x32, 0x4c, 0x6b, 0x77, 0x26, + 0x8d, 0xc3, 0xbe, 0xf8, 0xfd, 0x95, 0xf1, 0xcb, 0xaa, 0xe9, 0xc2, 0x9d, 0xd8, 0xeb, 0x30, 0x1a, + 0x58, 0x47, 0x5b, 0x3b, 0xc2, 0xcd, 0x3c, 0x99, 0x39, 0x2a, 0xeb, 0x68, 0x6b, 0x5b, 0xb8, 0xa1, + 0x9d, 0xd8, 0xdc, 0x84, 0x1f, 0x31, 0x0e, 0x84, 0xa5, 0x68, 0x47, 0xfd, 0xda, 0xd4, 0x75, 0x03, + 0x54, 0x12, 0x5a, 0xbd, 0xd1, 0x24, 0xee, 0x1b, 0x88, 0xc7, 0x3b, 0xdf, 0x5e, 0xe6, 0xe1, 0xc3, + 0x28, 0x9e, 0xee, 0x30, 0x6b, 0x3c, 0x57, 0x06, 0x46, 0x48, 0x69, 0xbd, 0x0a, 0x12, 0x3b, 0xbe, + 0x9d, 0xdc, 0x99, 0x28, 0xb5, 0x8e, 0xb6, 0xd2, 0x78, 0x62, 0x40, 0x0c, 0x7f, 0x62, 0x75, 0x26, + 0x6c, 0x82, 0xb8, 0x6a, 0x10, 0x6f, 0x86, 0x31, 0x08, 0x81, 0xcf, 0x88, 0x15, 0xc6, 0x79, 0x2d, + 0xcf, 0x87, 0xb9, 0xd9, 0x20, 0xfb, 0x1f, 0x03, 0x68, 0xe0, 0xc0, 0x06, 0x11, 0x70, 0x80, 0x41, 0x07, 0x15, 0x78, 0xe0, 0xc1, 0x07, 0x1e, 0x80, 0xb0, 0x41, 0x08, 0x03, 0x88, 0x40, 0xc0, 0x08, - 0x0e, 0x90, 0x32, 0x83, 0x41, 0xd2, 0x3e, 0xcf, 0x1e, 0x34, 0x10, 0xb9, 0x9f, 0xe7, 0xd0, 0x69, - 0x1b, 0xcc, 0x6c, 0x34, 0x84, 0x42, 0x46, 0x29, 0x05, 0x48, 0x85, 0x8e, 0x56, 0x6a, 0x10, 0x4b, - 0x0d, 0x6a, 0xe9, 0x40, 0x2e, 0x2c, 0xf4, 0x02, 0x43, 0xb0, 0x4c, 0x22, 0xde, 0xfd, 0xc4, 0x60, - 0x7b, 0xfc, 0x69, 0x18, 0xa5, 0x2f, 0x77, 0x11, 0x1d, 0xfe, 0x92, 0x6f, 0x0e, 0x00, 0x4d, 0xef, - 0x05, 0xd1, 0x8d, 0x81, 0x1d, 0x96, 0x80, 0xdb, 0x75, 0x65, 0xb5, 0xc3, 0x08, 0x96, 0x10, 0xc0, - 0xc1, 0x7e, 0x6d, 0x19, 0xf3, 0x91, 0x21, 0x0a, 0xd6, 0x71, 0x1a, 0x07, 0x83, 0x34, 0x1c, 0x47, - 0xcd, 0xf0, 0x26, 0x4c, 0x93, 0xd9, 0x82, 0xd8, 0x0a, 0x5a, 0xc6, 0xd6, 0x0e, 0x3e, 0x72, 0x6b, - 0x0b, 0xdb, 0xda, 0x8d, 0xdd, 0xc3, 0xc6, 0xe1, 0xfe, 0xc1, 0xee, 0xe1, 0x1e, 0xf7, 0x38, 0x03, - 0x82, 0x6a, 0x59, 0x8d, 0xd5, 0x51, 0xfc, 0x89, 0xef, 0x12, 0xaa, 0x78, 0x92, 0xa2, 0x55, 0x3d, - 0x67, 0x76, 0x6b, 0xab, 0x7e, 0x5e, 0xab, 0x34, 0x45, 0xa8, 0x87, 0xc6, 0xd9, 0x92, 0xac, 0xc8, - 0xaa, 0x90, 0x93, 0xd0, 0xef, 0x1c, 0x10, 0x6a, 0x7b, 0x93, 0x34, 0x9e, 0x0e, 0xd2, 0x68, 0x99, - 0x66, 0xec, 0x2c, 0x9e, 0xaa, 0xbb, 0x5c, 0xa1, 0xdf, 0x5d, 0x3e, 0x4a, 0xdf, 0x4d, 0xc2, 0xc4, - 0x6f, 0xcd, 0x9e, 0xa1, 0xdf, 0x4a, 0x26, 0xbe, 0x37, 0xba, 0xf3, 0xdb, 0xa9, 0x9b, 0x44, 0x7e, - 0x67, 0xf9, 0x7c, 0xfc, 0xec, 0x7b, 0xfa, 0xf3, 0xa7, 0xe1, 0x7b, 0xa6, 0xb9, 0x78, 0x18, 0xed, - 0xc5, 0xb3, 0x60, 0xcb, 0x88, 0x36, 0xa7, 0x63, 0xa5, 0x08, 0x69, 0xf5, 0x87, 0x2e, 0x91, 0x99, - 0xb5, 0x18, 0x8d, 0x21, 0xdb, 0x6c, 0x0c, 0xd9, 0x8c, 0xa1, 0x6c, 0x0c, 0xc9, 0xd5, 0x64, 0x36, - 0x86, 0x14, 0x64, 0x38, 0x1b, 0x43, 0x48, 0x03, 0x28, 0x61, 0x08, 0xcc, 0xcb, 0xf6, 0xcc, 0xe3, - 0x8e, 0x4c, 0x70, 0x1d, 0x9b, 0x6b, 0x04, 0x8f, 0xbb, 0x6a, 0xb4, 0x00, 0x78, 0x9d, 0x6e, 0x75, - 0x97, 0x91, 0xdd, 0x8b, 0x17, 0x8b, 0x2c, 0x49, 0x7d, 0x4e, 0x60, 0x8c, 0x03, 0xd4, 0xc5, 0x01, - 0xd3, 0x59, 0xdc, 0x9e, 0xa4, 0x71, 0x10, 0x46, 0x66, 0x58, 0x1b, 0x25, 0x13, 0x9c, 0xa0, 0x60, - 0xdd, 0x74, 0xb6, 0x8e, 0x33, 0x42, 0x60, 0x84, 0xc0, 0x08, 0x81, 0x11, 0x02, 0x23, 0x04, 0x46, - 0x08, 0xb9, 0xfc, 0xc8, 0xd9, 0x3a, 0x9e, 0xef, 0xf9, 0xc0, 0xd6, 0x71, 0x82, 0x0d, 0x22, 0xe0, - 0x00, 0x83, 0x0e, 0x2a, 0xf0, 0xc0, 0x83, 0x0f, 0x3c, 0x00, 0x61, 0x83, 0x10, 0x06, 0x10, 0x81, - 0x80, 0x11, 0x1c, 0x20, 0x65, 0x06, 0x0f, 0xc6, 0xd3, 0xb9, 0x70, 0x41, 0x3b, 0xc7, 0x17, 0xe6, - 0xb3, 0x71, 0x9c, 0x00, 0xa5, 0x0b, 0xa4, 0x14, 0x00, 0x15, 0x3a, 0x58, 0xa9, 0x01, 0x2c, 0x35, - 0xa0, 0xa5, 0x03, 0xb8, 0xb0, 0xc0, 0x0b, 0x0c, 0xc0, 0x32, 0x89, 0xe8, 0x68, 0x1c, 0xdf, 0xd9, - 0x07, 0x6e, 0x1c, 0xdf, 0x67, 0xe3, 0x78, 0xc1, 0x1f, 0x36, 0x8e, 0x13, 0xec, 0x37, 0xb0, 0x0c, - 0x36, 0x8e, 0xf3, 0xf8, 0xdd, 0xe4, 0xd6, 0x66, 0xe3, 0xb8, 0xb8, 0xad, 0xbd, 0xbf, 0xb7, 0xf7, - 0x92, 0x3d, 0xe3, 0x8c, 0x05, 0x2a, 0x66, 0x35, 0x7b, 0xc6, 0x2b, 0x7f, 0x3c, 0x61, 0xf4, 0x3e, - 0x3d, 0x1b, 0x15, 0x02, 0xf4, 0x42, 0x29, 0x39, 0x3b, 0x99, 0xef, 0x2e, 0x53, 0xe7, 0xcc, 0x77, + 0x0e, 0x90, 0x32, 0x83, 0x41, 0xd2, 0x3e, 0x6b, 0x0f, 0x1a, 0x88, 0xdc, 0xcf, 0x3a, 0x74, 0xda, + 0x06, 0x33, 0x1b, 0x0d, 0xa1, 0x90, 0x51, 0x4a, 0x01, 0x52, 0xa1, 0xa3, 0x95, 0x1a, 0xc4, 0x52, + 0x83, 0x5a, 0x3a, 0x90, 0x0b, 0x0b, 0xbd, 0xc0, 0x10, 0x2c, 0x93, 0x88, 0xf7, 0x30, 0x36, 0xd8, + 0x1e, 0x7f, 0x12, 0x46, 0xe9, 0xcb, 0x5d, 0x44, 0x87, 0xbf, 0xe0, 0x9b, 0x03, 0x40, 0xd3, 0xbb, + 0x41, 0x74, 0x6b, 0x60, 0x87, 0x25, 0xe0, 0xb6, 0x5f, 0x59, 0xe7, 0x61, 0x04, 0x4b, 0x08, 0xe0, + 0x60, 0xbf, 0xb2, 0x8c, 0xd9, 0xc8, 0x10, 0x05, 0xeb, 0x38, 0x8d, 0x83, 0x7e, 0x1a, 0x8e, 0xa2, + 0x66, 0x78, 0x1b, 0xa6, 0xc9, 0x74, 0x41, 0xec, 0x09, 0x2d, 0x63, 0x6b, 0x07, 0x1f, 0xb9, 0xb5, + 0x85, 0x6d, 0xed, 0xc6, 0xee, 0x61, 0xe3, 0x70, 0xff, 0x60, 0xf7, 0x70, 0x8f, 0x7b, 0x9c, 0x01, + 0x41, 0xb5, 0xac, 0xc6, 0xea, 0x28, 0xfe, 0xc4, 0x77, 0x09, 0x55, 0x3c, 0x49, 0xd1, 0xaa, 0x9e, + 0x33, 0xbb, 0xb5, 0x55, 0x3f, 0xaf, 0x54, 0x9a, 0x22, 0xd4, 0x43, 0xe3, 0x6c, 0x49, 0x56, 0x64, + 0x55, 0xc8, 0x49, 0xe8, 0x77, 0x0e, 0x08, 0xb5, 0xbd, 0x49, 0x1a, 0x4f, 0xfa, 0x69, 0xb4, 0x48, + 0x33, 0xb6, 0xe7, 0x4f, 0xd5, 0x5d, 0xac, 0xd0, 0xef, 0x2c, 0x1e, 0xa5, 0xef, 0x26, 0x61, 0xe2, + 0xb7, 0xa6, 0xcf, 0xd0, 0x6f, 0x25, 0x63, 0xdf, 0x1b, 0xde, 0xfb, 0xe7, 0xa9, 0x9b, 0x44, 0x7e, + 0x7b, 0xf1, 0x7c, 0xfc, 0xec, 0x7b, 0x7a, 0xb3, 0xa7, 0xe1, 0x7b, 0xa6, 0x39, 0x7f, 0x18, 0xe7, + 0xf3, 0x67, 0xc1, 0x96, 0x11, 0x6d, 0x4e, 0xc7, 0x4a, 0x11, 0xd2, 0xea, 0x8f, 0x5d, 0x22, 0x53, + 0x6b, 0x31, 0x1a, 0x43, 0xb6, 0xd9, 0x18, 0xb2, 0x19, 0x43, 0xd9, 0x18, 0x92, 0xab, 0xc9, 0x6c, + 0x0c, 0x29, 0xc8, 0x70, 0x36, 0x86, 0x90, 0x06, 0x50, 0xc2, 0x10, 0x98, 0x97, 0xed, 0x99, 0xc7, + 0x1d, 0x9a, 0xe0, 0x26, 0x36, 0x37, 0x08, 0x1e, 0x77, 0xd9, 0x68, 0x01, 0xf0, 0x3a, 0xdd, 0xea, + 0x2c, 0x22, 0xbb, 0x17, 0x2f, 0xe6, 0x59, 0x92, 0xfa, 0x8c, 0xc0, 0x18, 0x07, 0xa8, 0x8b, 0x03, + 0x26, 0xd3, 0xb8, 0x3d, 0x49, 0xe3, 0x20, 0x8c, 0xcc, 0xa0, 0x36, 0x4c, 0xc6, 0x38, 0x41, 0xc1, + 0xaa, 0xe9, 0x6c, 0x1d, 0x67, 0x84, 0xc0, 0x08, 0x81, 0x11, 0x02, 0x23, 0x04, 0x46, 0x08, 0x8c, + 0x10, 0x72, 0xf9, 0x91, 0xb3, 0x75, 0x3c, 0xdf, 0xf3, 0x81, 0xad, 0xe3, 0x04, 0x1b, 0x44, 0xc0, + 0x01, 0x06, 0x1d, 0x54, 0xe0, 0x81, 0x07, 0x1f, 0x78, 0x00, 0xc2, 0x06, 0x21, 0x0c, 0x20, 0x02, + 0x01, 0x23, 0x38, 0x40, 0xca, 0x0c, 0xee, 0x8f, 0x26, 0x33, 0xe1, 0x82, 0x76, 0x8e, 0xcf, 0xcd, + 0x67, 0xe3, 0x38, 0x01, 0x4a, 0x17, 0x48, 0x29, 0x00, 0x2a, 0x74, 0xb0, 0x52, 0x03, 0x58, 0x6a, + 0x40, 0x4b, 0x07, 0x70, 0x61, 0x81, 0x17, 0x18, 0x80, 0x65, 0x12, 0xd1, 0xd1, 0x38, 0xbe, 0xb3, + 0x0f, 0xdc, 0x38, 0xbe, 0xcf, 0xc6, 0xf1, 0x82, 0x3f, 0x6c, 0x1c, 0x27, 0xd8, 0x6f, 0x60, 0x19, + 0x6c, 0x1c, 0xe7, 0xf1, 0xbb, 0xc9, 0xad, 0xcd, 0xc6, 0x71, 0x71, 0x5b, 0x7b, 0x7f, 0x6f, 0xef, + 0x25, 0x7b, 0xc6, 0x19, 0x0b, 0x54, 0xcc, 0x6a, 0xf6, 0x8c, 0x57, 0xfe, 0x78, 0xc2, 0xe8, 0x7d, + 0x5a, 0x1b, 0x15, 0x02, 0xf4, 0x42, 0x29, 0x39, 0x3b, 0x99, 0xef, 0x2e, 0x53, 0xe7, 0xcc, 0x77, 0x97, 0xb7, 0x5d, 0x99, 0xef, 0x16, 0xb6, 0x10, 0xe6, 0xbb, 0x49, 0x34, 0x5f, 0x91, 0x08, 0x7e, - 0xbe, 0x3b, 0x1c, 0x9a, 0x28, 0x0d, 0xd3, 0x7b, 0x8c, 0x7e, 0xae, 0xe7, 0x20, 0x67, 0x07, 0x30, - 0xaa, 0xb6, 0xdc, 0xe5, 0xa3, 0x3f, 0x0e, 0x12, 0xe0, 0x73, 0x2b, 0xbb, 0x0b, 0xbb, 0xef, 0xf6, - 0xfd, 0xfe, 0xc5, 0xb1, 0xd7, 0xba, 0xf4, 0xbd, 0xb7, 0x5d, 0x07, 0xf5, 0xf8, 0x9a, 0xe7, 0x6a, - 0x12, 0xd8, 0x97, 0x11, 0x5b, 0xd0, 0x2f, 0x24, 0xbe, 0x50, 0xd4, 0xe7, 0xb7, 0xab, 0x2f, 0xc4, - 0xd5, 0x47, 0x56, 0x97, 0x26, 0x95, 0xe9, 0x50, 0xdb, 0x57, 0x55, 0x67, 0x5f, 0xda, 0x6e, 0xcb, - 0x3e, 0x6e, 0x39, 0xfe, 0xb1, 0xdd, 0x69, 0xfe, 0xcb, 0x6d, 0x7a, 0xaf, 0x2c, 0xf8, 0x15, 0x7f, - 0xfa, 0x95, 0xb2, 0x93, 0x2d, 0xbb, 0x9e, 0xd3, 0x77, 0x9b, 0x17, 0x76, 0x8b, 0xaa, 0xa3, 0xea, - 0x0a, 0x74, 0x76, 0xcd, 0xdf, 0xfd, 0xbe, 0xdb, 0xa4, 0xd4, 0x28, 0xb5, 0xbc, 0xa5, 0xd6, 0x72, - 0x3b, 0xaf, 0xfd, 0x6e, 0xef, 0xdc, 0x73, 0x4e, 0x3c, 0xf7, 0xbc, 0xb3, 0xa0, 0x3a, 0xea, 0x8e, - 0xba, 0x2b, 0x42, 0x77, 0x4d, 0xa7, 0x65, 0xbf, 0xa5, 0xda, 0xa8, 0xb6, 0xe2, 0xd4, 0xe6, 0x5f, - 0xda, 0x3d, 0xd7, 0x9e, 0xb9, 0x3a, 0xea, 0x8e, 0xba, 0xcb, 0x5b, 0x77, 0x6e, 0xf7, 0x72, 0xdf, - 0x77, 0x3b, 0x9e, 0xd3, 0x3b, 0xb5, 0x4f, 0x1c, 0xdf, 0x6e, 0x36, 0x7b, 0x4e, 0xbf, 0x4f, 0xe5, - 0x51, 0x79, 0x79, 0x2b, 0x2f, 0x8b, 0x57, 0xfd, 0x93, 0xf3, 0x4e, 0xdf, 0xeb, 0xd9, 0x6e, 0xc7, - 0xa3, 0xf0, 0x28, 0xbc, 0xdc, 0x85, 0xd7, 0xb6, 0xdf, 0xf8, 0x3d, 0xa7, 0xef, 0xf4, 0x2e, 0x99, - 0xad, 0xa3, 0xf6, 0x4a, 0xc0, 0x3c, 0xdb, 0xf3, 0x7a, 0xee, 0xf1, 0x85, 0xe7, 0xd0, 0xdd, 0x51, - 0x72, 0xb9, 0x4b, 0xee, 0xc2, 0x73, 0x5b, 0xee, 0xbf, 0x9d, 0x26, 0x1d, 0x1d, 0x55, 0x57, 0x9c, - 0xea, 0x9c, 0x37, 0x9e, 0xd3, 0x69, 0x3a, 0x4d, 0xdf, 0x6e, 0xb6, 0xdd, 0x8e, 0x7f, 0xd6, 0x3b, - 0xbf, 0xe8, 0x52, 0x77, 0xd4, 0x5d, 0xde, 0xba, 0xb3, 0x9b, 0xbf, 0xfb, 0x2d, 0xbb, 0xc3, 0x97, - 0x13, 0x94, 0x5b, 0x21, 0x87, 0x6b, 0x27, 0x0b, 0x5e, 0x9d, 0xa6, 0xdf, 0xea, 0xd3, 0xc7, 0x51, - 0x74, 0xb9, 0x8b, 0xce, 0xed, 0x5e, 0x36, 0x98, 0xb3, 0xa3, 0xf2, 0x8a, 0x57, 0x9e, 0xe7, 0xf8, - 0x4d, 0xe7, 0xd4, 0xbe, 0x68, 0x79, 0x7e, 0xdb, 0xf1, 0x7a, 0xee, 0x09, 0x45, 0x47, 0xd1, 0xe5, - 0x2d, 0xba, 0x59, 0xfc, 0xd0, 0xb6, 0xdf, 0xf0, 0x85, 0x2c, 0x55, 0x57, 0xa0, 0xea, 0xe6, 0x6a, - 0x6b, 0x9d, 0xf3, 0x5c, 0xa5, 0xd8, 0x0a, 0x70, 0x71, 0x2b, 0xf7, 0xc6, 0x1c, 0x1d, 0x55, 0x57, - 0x60, 0xf0, 0xba, 0x78, 0x0d, 0xc6, 0xdc, 0x30, 0x75, 0x57, 0x70, 0xfc, 0xba, 0xef, 0x77, 0x1c, - 0xf7, 0xec, 0xd5, 0xf1, 0x79, 0x8f, 0xe1, 0x2b, 0x85, 0x57, 0x28, 0xd3, 0x31, 0x31, 0x4c, 0xa9, - 0x15, 0xe2, 0xe3, 0x1a, 0xf4, 0x71, 0x14, 0x5e, 0xe1, 0xc2, 0xd3, 0xf5, 0xbe, 0x15, 0x7a, 0x05, - 0xef, 0x38, 0xcf, 0x92, 0xdb, 0x7b, 0x53, 0xdb, 0x5a, 0x53, 0x77, 0x31, 0xe5, 0x25, 0x4d, 0x5e, - 0x9a, 0xba, 0x88, 0xa9, 0x2e, 0x79, 0x4c, 0x02, 0xde, 0x2d, 0x4c, 0x49, 0x89, 0x0c, 0xe5, 0xd5, - 0x74, 0x05, 0x53, 0x5f, 0x22, 0xf5, 0x05, 0xfe, 0xb2, 0x99, 0xaa, 0x92, 0xab, 0x2a, 0x0d, 0x5d, - 0xbe, 0xd4, 0x97, 0x34, 0x7d, 0x69, 0xeb, 0xe6, 0xa5, 0xc2, 0xa4, 0x29, 0x4c, 0x59, 0xd7, 0x2e, - 0x05, 0x26, 0x4d, 0x60, 0xfa, 0xba, 0x73, 0xa9, 0x31, 0x91, 0x18, 0xa6, 0xa1, 0x0b, 0x97, 0xd2, - 0x92, 0x26, 0x2d, 0x4d, 0xdd, 0xb6, 0x54, 0x97, 0x34, 0x75, 0xe9, 0xea, 0xaa, 0xa5, 0xbe, 0xa4, - 0xe9, 0x4b, 0x45, 0xf7, 0x2c, 0x65, 0x25, 0xee, 0x50, 0xd4, 0xd3, 0x25, 0x4b, 0x71, 0x49, 0x13, - 0x97, 0xb6, 0x6e, 0x58, 0x2a, 0x4c, 0x9a, 0xc2, 0x14, 0x75, 0xbd, 0x52, 0x5c, 0xd2, 0xc4, 0xa5, - 0xa9, 0xbb, 0x95, 0xea, 0x92, 0xa6, 0x2e, 0x05, 0x5d, 0xac, 0x14, 0x95, 0x38, 0x97, 0xa5, 0xa8, - 0x5b, 0x95, 0xea, 0x92, 0x17, 0x2c, 0x6a, 0xea, 0x4a, 0xa5, 0xbe, 0x04, 0xc6, 0x8b, 0x9a, 0xba, - 0x4f, 0x29, 0x30, 0x91, 0xcc, 0xc5, 0x04, 0x2a, 0x25, 0xb5, 0x51, 0x9f, 0xd5, 0xa0, 0xcf, 0xa2, - 0xc0, 0x72, 0x13, 0x18, 0xdf, 0x27, 0x52, 0x56, 0x1b, 0x90, 0x55, 0xef, 0xfc, 0xc2, 0x73, 0x7a, - 0xfe, 0x89, 0xdd, 0xe5, 0x5d, 0xbc, 0xd4, 0x5b, 0xa9, 0xba, 0x7b, 0xfc, 0x6f, 0x9c, 0xbb, 0x40, - 0xc9, 0x15, 0x22, 0x39, 0xbb, 0x75, 0x76, 0xde, 0x73, 0xbd, 0x57, 0x6d, 0x8e, 0x5e, 0x28, 0xf7, - 0xc3, 0xd1, 0x0b, 0xdc, 0xe1, 0x3c, 0x4c, 0x28, 0x2d, 0x1e, 0x1a, 0x54, 0x56, 0x35, 0x02, 0xfa, - 0xee, 0xe7, 0x01, 0x3d, 0xe3, 0x2e, 0xaa, 0xad, 0x78, 0xd5, 0x75, 0x7b, 0xce, 0xa9, 0xfb, 0xc6, - 0x3f, 0x6d, 0xd9, 0x67, 0x1c, 0x76, 0x47, 0xbd, 0x15, 0xa5, 0x37, 0x5e, 0xf6, 0x44, 0xb5, 0x15, - 0xa0, 0xb6, 0xf9, 0x9b, 0xe3, 0x25, 0xc2, 0x51, 0x71, 0x54, 0x5c, 0xfe, 0x8a, 0xf3, 0xec, 0xb3, - 0xfd, 0x06, 0x85, 0x46, 0xa1, 0x15, 0xe0, 0xda, 0x1a, 0x74, 0x6d, 0x54, 0x5c, 0xa1, 0xae, 0x8d, - 0x49, 0xf2, 0x72, 0x3f, 0x4c, 0x92, 0x73, 0x5b, 0x33, 0xf2, 0xa7, 0xae, 0x18, 0xe1, 0x53, 0x55, - 0xd5, 0x52, 0x95, 0x96, 0x48, 0x9e, 0xca, 0x62, 0xc4, 0x4e, 0x41, 0x69, 0x77, 0x55, 0x0d, 0xba, - 0x2a, 0x2a, 0x8b, 0x11, 0xb8, 0x82, 0xc8, 0x1b, 0x2f, 0xe2, 0xc6, 0x7a, 0xce, 0x38, 0xd6, 0x62, - 0x58, 0x0a, 0xe2, 0xb4, 0x2d, 0x3b, 0x8a, 0xc6, 0x69, 0x90, 0x86, 0xe3, 0xc8, 0x3a, 0x02, 0x72, - 0xd7, 0x56, 0x32, 0x78, 0x6f, 0x6e, 0x83, 0x49, 0x90, 0xbe, 0x9f, 0x39, 0xe8, 0xfa, 0x78, 0x62, - 0xa2, 0xc1, 0x38, 0xba, 0x0e, 0x6f, 0x6a, 0x91, 0x49, 0x3f, 0x8c, 0xe3, 0x3f, 0x6b, 0x61, 0x94, - 0xa4, 0x41, 0x34, 0x30, 0xf5, 0x2f, 0xbf, 0x90, 0xac, 0x7d, 0xa5, 0x3e, 0x89, 0xc7, 0xe9, 0x78, - 0x30, 0x1e, 0x25, 0xd9, 0xef, 0xea, 0x61, 0x12, 0x26, 0xf5, 0x91, 0xb9, 0x33, 0xa3, 0xe5, 0x2f, - 0xf5, 0x51, 0x18, 0xfd, 0x59, 0x4b, 0xd2, 0x20, 0x35, 0xb5, 0x61, 0x90, 0x06, 0x57, 0x41, 0x62, - 0xea, 0xa3, 0x64, 0x52, 0x4f, 0x47, 0x77, 0xc9, 0xec, 0x1f, 0xf5, 0xdb, 0xb4, 0x16, 0x26, 0x51, - 0x3d, 0x32, 0xe1, 0xcd, 0xfb, 0xab, 0x71, 0x9c, 0x64, 0xbf, 0xab, 0x3f, 0xfc, 0xd5, 0xd9, 0x5f, - 0x99, 0x4c, 0xaf, 0xe6, 0xdf, 0xb8, 0xf8, 0xb5, 0x3e, 0x9d, 0x99, 0x9f, 0xa4, 0x71, 0x10, 0x46, - 0x66, 0x58, 0x9b, 0xfd, 0xb1, 0xf3, 0xbf, 0x09, 0xe3, 0x98, 0x91, 0xbf, 0x25, 0x65, 0x5b, 0x28, - 0xdc, 0x59, 0xa0, 0x39, 0x09, 0xfd, 0xce, 0x01, 0xa0, 0x2e, 0xd1, 0x4a, 0xd2, 0x78, 0x3a, 0x48, - 0xa3, 0x25, 0x42, 0x77, 0x16, 0x4f, 0xd5, 0x5d, 0xae, 0xd0, 0xef, 0x2e, 0x1f, 0xa5, 0xef, 0x26, - 0x61, 0xe2, 0xb7, 0x66, 0xcf, 0xd0, 0x6f, 0x25, 0x13, 0xdf, 0x1b, 0xdd, 0xf9, 0xed, 0xd4, 0x4d, - 0x22, 0xbf, 0xb3, 0x7c, 0x3e, 0x7e, 0xf6, 0x3d, 0xfd, 0xf9, 0xd3, 0xf0, 0x2f, 0x1e, 0x3f, 0x8d, - 0x56, 0x32, 0x91, 0xed, 0x23, 0xe5, 0x7a, 0x1e, 0xc1, 0x5e, 0xc7, 0x9a, 0x46, 0xb1, 0x49, 0x4c, - 0x7c, 0x67, 0x86, 0xb5, 0xab, 0x20, 0x1a, 0x7e, 0x08, 0x87, 0xf3, 0xbd, 0x2c, 0xdb, 0xf7, 0x64, - 0xf1, 0xe2, 0x93, 0xd6, 0x0b, 0xf7, 0xf1, 0xaf, 0xc3, 0x68, 0x68, 0x1d, 0x6d, 0xed, 0x08, 0x37, - 0xf3, 0x64, 0xee, 0xc7, 0xad, 0xa3, 0xad, 0x6d, 0xe1, 0x86, 0x76, 0x63, 0x73, 0x1d, 0x7e, 0xc4, - 0x38, 0x2f, 0x57, 0xba, 0x1d, 0x0f, 0x6a, 0xb3, 0x93, 0x0d, 0xe1, 0x74, 0xe9, 0x8f, 0xa7, 0xf1, - 0xc0, 0xc0, 0xc4, 0x2c, 0xd6, 0x6b, 0x73, 0xff, 0x61, 0x1c, 0xcf, 0x76, 0x98, 0x35, 0x59, 0x28, - 0x03, 0x24, 0x40, 0x7c, 0x15, 0x24, 0x76, 0x7c, 0x33, 0xbd, 0x35, 0x51, 0x6a, 0x1d, 0x6d, 0xa5, - 0xf1, 0xd4, 0xa0, 0x44, 0xb6, 0x0f, 0x56, 0x67, 0xc2, 0x66, 0x9c, 0xa2, 0x3a, 0x4e, 0x69, 0x86, - 0x31, 0x48, 0x80, 0x62, 0xd2, 0xe9, 0xa4, 0x36, 0x89, 0xc3, 0x71, 0x1c, 0xa6, 0xf7, 0x38, 0x5e, - 0x6c, 0x75, 0x50, 0x7c, 0x61, 0x3f, 0x88, 0x47, 0xc0, 0x40, 0x1c, 0x38, 0xd4, 0x41, 0x44, 0x1e, - 0x60, 0xf4, 0x41, 0x45, 0x20, 0x78, 0x14, 0x82, 0x47, 0x22, 0x6c, 0x34, 0xc2, 0x40, 0x24, 0x10, - 0x54, 0x82, 0x43, 0xa6, 0xcc, 0x60, 0x38, 0x68, 0x5a, 0x3b, 0x6a, 0xc0, 0xb0, 0xe9, 0x4b, 0x7c, - 0xda, 0x06, 0x33, 0x1b, 0x0d, 0xa3, 0x90, 0x71, 0x4a, 0x01, 0x56, 0xa1, 0xe3, 0x95, 0x1a, 0xcc, - 0x52, 0x83, 0x5b, 0x3a, 0xb0, 0x0b, 0x0b, 0xbf, 0xc0, 0x30, 0x2c, 0x93, 0x88, 0x77, 0x3f, 0x31, - 0xd8, 0x1e, 0x7f, 0x64, 0x82, 0xeb, 0xd8, 0x5c, 0x23, 0x7a, 0xfc, 0x55, 0x7e, 0xe8, 0x00, 0xd0, - 0xf6, 0xee, 0xb2, 0xd8, 0xe1, 0xc5, 0x8b, 0x45, 0xe1, 0x50, 0x3d, 0xa3, 0x4c, 0x96, 0x21, 0x56, - 0xdd, 0xb3, 0x58, 0x8b, 0x52, 0x32, 0xd8, 0x80, 0x69, 0x61, 0x3e, 0x66, 0xb4, 0xb4, 0xc3, 0x68, - 0x89, 0xd1, 0x12, 0xa3, 0x25, 0x46, 0x4b, 0x8c, 0x96, 0x18, 0x2d, 0x91, 0x69, 0x36, 0x2b, 0x11, - 0xb4, 0xe4, 0x75, 0x66, 0x38, 0x4e, 0x4d, 0xe3, 0x57, 0xcf, 0x2c, 0x94, 0x02, 0xc7, 0xaf, 0x81, - 0xda, 0x36, 0xa8, 0xf9, 0xa8, 0xc0, 0xa6, 0x01, 0xdc, 0x14, 0x01, 0x9c, 0x16, 0x90, 0x53, 0x07, - 0x74, 0xea, 0xc0, 0x4e, 0x17, 0xe0, 0x61, 0x82, 0x1e, 0x28, 0xf0, 0x65, 0xd2, 0x81, 0x4d, 0x93, - 0xaf, 0x9d, 0x18, 0xa1, 0x31, 0xe6, 0x7a, 0x34, 0x0e, 0xd2, 0x97, 0xbb, 0xc8, 0xa7, 0xc6, 0x12, - 0xa2, 0x0e, 0x81, 0x97, 0xd0, 0x32, 0xd1, 0xcd, 0x1c, 0xc8, 0xb1, 0x67, 0xe5, 0xe3, 0x0f, 0xbf, - 0xb4, 0xda, 0x61, 0x04, 0xcf, 0x1f, 0x4a, 0xc2, 0x8b, 0xb5, 0xe5, 0xcc, 0x6f, 0x94, 0xb0, 0x8e, - 0xb6, 0x1a, 0x4a, 0xd6, 0x73, 0x1a, 0x07, 0x83, 0x34, 0x1c, 0x47, 0xcd, 0xf0, 0x26, 0x4c, 0x93, - 0xd9, 0x0f, 0x8a, 0x13, 0x7c, 0x25, 0xb8, 0x80, 0xe0, 0x23, 0x5d, 0x00, 0x5d, 0x00, 0x5d, 0x40, - 0x95, 0xa2, 0x11, 0x7c, 0xeb, 0x31, 0xe7, 0x42, 0xe3, 0x3d, 0x6f, 0xc0, 0x23, 0x0e, 0xb7, 0x70, - 0x7d, 0x2d, 0x66, 0x05, 0x2d, 0x60, 0x57, 0x72, 0x1e, 0x33, 0xe3, 0x2f, 0x69, 0x2f, 0x30, 0xe3, - 0x2f, 0x67, 0x5b, 0x33, 0xe3, 0x2f, 0x7c, 0x41, 0xcc, 0xf8, 0x93, 0x9c, 0x7e, 0x50, 0x3a, 0x7a, - 0x32, 0xfe, 0xd3, 0x30, 0x4a, 0x7f, 0x53, 0x90, 0xeb, 0xdf, 0x03, 0x5e, 0x42, 0x2f, 0x88, 0x6e, - 0x0c, 0x53, 0xfd, 0xe5, 0xff, 0x20, 0x98, 0xea, 0x97, 0xbb, 0x9c, 0x55, 0x9e, 0x6f, 0x9b, 0x79, - 0x3e, 0x9e, 0xe6, 0x39, 0xba, 0x00, 0xa6, 0xfa, 0xc5, 0xbb, 0x80, 0x03, 0xba, 0x00, 0x86, 0x21, - 0xb4, 0xfe, 0xf1, 0x87, 0xa9, 0x7e, 0x5a, 0x0c, 0x7f, 0x20, 0xa3, 0x5e, 0xff, 0x90, 0xd9, 0xaf, - 0x6f, 0xd2, 0xfb, 0xfa, 0xe4, 0xe8, 0xfa, 0xe7, 0xd3, 0x16, 0x91, 0x2e, 0x86, 0xc0, 0xdb, 0xc4, - 0x9c, 0x2e, 0xb6, 0x51, 0x1c, 0x36, 0xf7, 0x80, 0x2f, 0x0c, 0xad, 0x56, 0x98, 0xa4, 0x76, 0x9a, - 0x82, 0x4d, 0x46, 0x6b, 0x87, 0x91, 0x33, 0x32, 0xb7, 0x26, 0x9a, 0x93, 0x6d, 0x34, 0x1d, 0x8d, - 0x80, 0x46, 0x14, 0xb4, 0x83, 0x8f, 0xb8, 0xc6, 0x9f, 0xc7, 0x43, 0x13, 0x9b, 0xe1, 0xf1, 0xfd, - 0xd2, 0x74, 0xfa, 0x10, 0x22, 0x4a, 0x15, 0xd1, 0xc4, 0x82, 0x9a, 0x89, 0x92, 0xd3, 0xf5, 0x34, - 0xfd, 0xd9, 0x23, 0xe9, 0x42, 0x4d, 0xdf, 0xe1, 0xfd, 0x5d, 0xaa, 0x5d, 0x29, 0xef, 0xef, 0x12, - 0xe8, 0x3a, 0x79, 0x6b, 0x95, 0xba, 0xbd, 0x66, 0x4d, 0xd3, 0x70, 0x14, 0xfe, 0x3f, 0xd0, 0x3b, - 0xab, 0xd6, 0x6d, 0xe7, 0x8d, 0x55, 0x9b, 0x30, 0x93, 0x37, 0x56, 0xe5, 0xa8, 0x5a, 0xde, 0x58, - 0x95, 0x67, 0xee, 0x86, 0x37, 0x56, 0x15, 0x8b, 0x69, 0xbc, 0xb1, 0xaa, 0x6a, 0x64, 0x8e, 0x73, - 0x63, 0x15, 0xd4, 0x08, 0x51, 0xc8, 0xd1, 0xa1, 0xbc, 0x9f, 0x8a, 0x80, 0xa3, 0x00, 0x74, 0x50, - 0x81, 0x07, 0x1e, 0x7c, 0xe0, 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, - 0x29, 0x33, 0x18, 0x77, 0xb4, 0x27, 0xfc, 0x48, 0x4f, 0xde, 0x50, 0x45, 0xa0, 0xaa, 0x00, 0x58, - 0xa1, 0x03, 0x96, 0x1a, 0xd0, 0x52, 0x03, 0x5c, 0x3a, 0xc0, 0x0b, 0x0b, 0xc0, 0xc0, 0x40, 0x2c, - 0x93, 0x08, 0xfe, 0x0d, 0x55, 0xd8, 0x23, 0x37, 0x81, 0x47, 0x6d, 0xa2, 0x8f, 0xd8, 0x04, 0x6e, - 0x3e, 0xd7, 0xd0, 0x67, 0xab, 0xa4, 0xb9, 0x4e, 0xcb, 0xfc, 0x3c, 0x4d, 0xcd, 0x74, 0xc0, 0x7d, - 0xb4, 0x2a, 0xfa, 0x67, 0xb9, 0xb5, 0xb9, 0xb5, 0x19, 0x0d, 0x40, 0x5b, 0xfd, 0x8e, 0x0d, 0x69, - 0x55, 0x3f, 0x9a, 0xac, 0x14, 0x31, 0x36, 0xcc, 0xe2, 0xc2, 0xb9, 0xf5, 0xcc, 0x78, 0x17, 0x61, - 0x36, 0x33, 0xde, 0x25, 0xea, 0x9c, 0x19, 0xef, 0xf2, 0xb6, 0x2b, 0x33, 0xde, 0xc2, 0x16, 0xc2, - 0x8c, 0x37, 0x89, 0xe6, 0x2b, 0x12, 0x51, 0x90, 0xf1, 0x1e, 0x9a, 0x28, 0x0d, 0xd3, 0xfb, 0xd8, - 0x5c, 0x03, 0x67, 0xbc, 0x77, 0x00, 0x27, 0x4e, 0x5a, 0xee, 0xf2, 0xd1, 0x1f, 0x07, 0x89, 0xc1, - 0x9f, 0xfc, 0xee, 0xf6, 0xdd, 0xbe, 0xdf, 0xbf, 0x38, 0xf6, 0x5a, 0x97, 0xbe, 0xf7, 0xb6, 0xeb, - 0xa0, 0x1e, 0x5f, 0xf3, 0x3c, 0x4d, 0x02, 0x3d, 0x00, 0x14, 0x3c, 0xe1, 0xf7, 0xa0, 0x28, 0xbf, - 0xe7, 0xd8, 0x27, 0xaf, 0xec, 0x63, 0xb7, 0xe5, 0x7a, 0x6f, 0x97, 0xe2, 0xea, 0x23, 0xab, 0x4b, - 0x93, 0xca, 0x74, 0xa8, 0xed, 0xab, 0xaa, 0xb3, 0x2f, 0x6d, 0xb7, 0x65, 0x1f, 0xb7, 0x1c, 0xff, - 0xd8, 0xee, 0x34, 0xff, 0xe5, 0x36, 0xbd, 0x57, 0x16, 0x87, 0x83, 0x52, 0x76, 0x39, 0xcb, 0xae, - 0xe7, 0xf4, 0xdd, 0xe6, 0x85, 0xdd, 0xa2, 0xea, 0xa8, 0xba, 0x02, 0x9d, 0x5d, 0xf3, 0x77, 0xbf, - 0xef, 0x36, 0x29, 0x35, 0x4a, 0x2d, 0x6f, 0xa9, 0xb5, 0xdc, 0xce, 0x6b, 0xbf, 0xdb, 0x3b, 0xf7, - 0x9c, 0x13, 0xcf, 0x3d, 0xef, 0x2c, 0xa8, 0x8e, 0xba, 0xa3, 0xee, 0x8a, 0xd0, 0x5d, 0xd3, 0x69, - 0xd9, 0x6f, 0xa9, 0x36, 0xaa, 0xad, 0x38, 0xb5, 0xf9, 0x97, 0x76, 0xcf, 0xb5, 0x67, 0xae, 0x8e, - 0xba, 0xa3, 0xee, 0xf2, 0xd6, 0x9d, 0xdb, 0xbd, 0xdc, 0xf7, 0xdd, 0x8e, 0xe7, 0xf4, 0x4e, 0xed, - 0x13, 0xc7, 0xb7, 0x9b, 0xcd, 0x9e, 0xd3, 0xef, 0x53, 0x79, 0x54, 0x5e, 0xde, 0xca, 0xcb, 0xe2, - 0x55, 0xff, 0xe4, 0xbc, 0xd3, 0xf7, 0x7a, 0xb6, 0xdb, 0xf1, 0x28, 0x3c, 0x0a, 0x2f, 0x77, 0xe1, - 0xb5, 0xed, 0x37, 0x7e, 0xcf, 0xe9, 0x3b, 0xbd, 0x4b, 0x66, 0xeb, 0xa8, 0xbd, 0x12, 0x30, 0xcf, - 0xf6, 0xbc, 0x9e, 0x7b, 0x7c, 0xe1, 0x39, 0x74, 0x77, 0x94, 0x5c, 0xee, 0x92, 0xbb, 0xf0, 0xdc, - 0x96, 0xfb, 0x6f, 0xa7, 0x49, 0x47, 0x47, 0xd5, 0x15, 0xa7, 0x3a, 0xe7, 0x8d, 0xe7, 0x74, 0x9a, - 0x4e, 0xd3, 0xb7, 0x9b, 0x6d, 0xb7, 0xe3, 0x9f, 0xf5, 0xce, 0x2f, 0xba, 0xd4, 0x1d, 0x75, 0x97, - 0xb7, 0xee, 0xec, 0xe6, 0xef, 0x7e, 0xcb, 0xee, 0xf0, 0xe5, 0x04, 0xe5, 0x56, 0xc8, 0xe1, 0xda, - 0xc9, 0x82, 0x57, 0xa7, 0xe9, 0xb7, 0xfa, 0xf4, 0x71, 0x14, 0x5d, 0xee, 0xa2, 0x73, 0xbb, 0x97, - 0x0d, 0xe6, 0xec, 0xa8, 0xbc, 0xe2, 0x95, 0xe7, 0x39, 0x7e, 0xd3, 0x39, 0xb5, 0x2f, 0x5a, 0x9e, - 0xdf, 0x76, 0xbc, 0x9e, 0x7b, 0x42, 0xd1, 0x51, 0x74, 0x79, 0x8b, 0x6e, 0x16, 0x3f, 0xb4, 0xed, - 0x37, 0x7c, 0x21, 0x4b, 0xd5, 0x15, 0xa8, 0xba, 0xb9, 0xda, 0x5a, 0xe7, 0x3c, 0x57, 0x29, 0xb6, - 0x02, 0x5c, 0xdc, 0xca, 0xbd, 0xfd, 0x7f, 0xf6, 0xfe, 0xb5, 0xa9, 0x6d, 0x6c, 0xfb, 0x16, 0x87, - 0xdf, 0xe7, 0x53, 0x50, 0xaa, 0xb3, 0xab, 0x92, 0xbd, 0x5b, 0x31, 0x10, 0x2e, 0x21, 0x55, 0x4f, - 0x75, 0x99, 0xe0, 0xa4, 0x7d, 0xda, 0x5c, 0x1e, 0xe3, 0x64, 0x77, 0x1f, 0xf0, 0x4f, 0x25, 0xec, - 0x05, 0xd1, 0xaf, 0x85, 0xec, 0x2d, 0xc9, 0x74, 0xd8, 0xdd, 0x7c, 0xf7, 0x7f, 0x59, 0x96, 0xc5, - 0xc5, 0x90, 0x04, 0x90, 0xd6, 0x1a, 0x73, 0x69, 0xf8, 0x45, 0xe2, 0xa4, 0x3b, 0x68, 0x4a, 0x9a, - 0x97, 0x31, 0xe6, 0x9a, 0x17, 0xe6, 0xe8, 0xa8, 0x75, 0x1a, 0xc9, 0xeb, 0xec, 0x18, 0x8c, 0xb9, - 0x61, 0xea, 0x9d, 0x66, 0xfe, 0xba, 0xe1, 0xed, 0xb5, 0xda, 0x1f, 0x7f, 0xd9, 0xde, 0xef, 0x92, - 0xbe, 0x52, 0xf1, 0xb4, 0x62, 0x3a, 0x26, 0x86, 0xa9, 0x6a, 0x5a, 0x7c, 0xdc, 0x1a, 0x7d, 0x1c, - 0x15, 0x4f, 0xbb, 0xe2, 0xd9, 0x75, 0xde, 0x2a, 0xfa, 0x0e, 0xfa, 0x9c, 0x65, 0x49, 0xf3, 0x2e, - 0xcb, 0xac, 0x6d, 0xea, 0x2e, 0xa6, 0x7a, 0xa1, 0xa9, 0x97, 0x4d, 0x5d, 0xc4, 0xd4, 0x2e, 0x3c, - 0x4c, 0x22, 0xbc, 0x5b, 0x98, 0x2a, 0x05, 0x49, 0xe5, 0xad, 0xe9, 0x0a, 0xa6, 0x7e, 0x41, 0xea, - 0x97, 0xf0, 0xc3, 0x66, 0x6a, 0x15, 0xae, 0x56, 0xd9, 0xd0, 0xe5, 0x4b, 0xfd, 0x42, 0xd3, 0x2f, - 0xdb, 0xba, 0x79, 0xa9, 0x61, 0x68, 0x1a, 0x66, 0x59, 0xd7, 0x2e, 0x15, 0x0c, 0x4d, 0xc1, 0xec, - 0xeb, 0xce, 0xa5, 0x8e, 0x41, 0xc2, 0x30, 0x1b, 0xba, 0x70, 0xa9, 0x5a, 0x68, 0xaa, 0x65, 0x53, - 0xb7, 0x2d, 0xb5, 0x0b, 0x4d, 0xbb, 0xec, 0xea, 0xaa, 0xa5, 0x7e, 0xa1, 0xe9, 0x97, 0x15, 0xdd, - 0xb3, 0x54, 0x2b, 0xb8, 0xa0, 0x68, 0x4f, 0x97, 0x2c, 0x95, 0x0b, 0x4d, 0xb9, 0x6c, 0xeb, 0x86, - 0xa5, 0x86, 0xa1, 0x69, 0x98, 0x45, 0x5d, 0xaf, 0x54, 0x2e, 0x34, 0xe5, 0xb2, 0xa9, 0xbb, 0x95, - 0xda, 0x85, 0xa6, 0x5d, 0x16, 0x74, 0xb1, 0x52, 0xa9, 0xe0, 0x5c, 0x96, 0x45, 0xdd, 0xaa, 0xd4, - 0x2e, 0x3c, 0xb2, 0x68, 0x53, 0x57, 0x2a, 0xf5, 0x0b, 0x90, 0x2f, 0xda, 0xd4, 0x7d, 0x4a, 0x05, - 0x83, 0xc4, 0x5c, 0x4c, 0xa0, 0x52, 0xa5, 0x4a, 0xf5, 0x59, 0x6b, 0xf4, 0x59, 0x54, 0xb0, 0xca, - 0x14, 0x8c, 0xe7, 0x89, 0x54, 0xab, 0x12, 0xd4, 0xaa, 0xbb, 0xff, 0xa9, 0xd7, 0xea, 0x7a, 0xef, - 0x9b, 0x07, 0xdc, 0xc5, 0x4b, 0x7d, 0x33, 0xaa, 0x77, 0x37, 0xff, 0xc4, 0xb9, 0x0b, 0x54, 0x39, - 0x2d, 0x2a, 0xd7, 0xec, 0x7c, 0xdc, 0xef, 0xb6, 0x7b, 0xbf, 0xec, 0x72, 0xf4, 0x82, 0xd9, 0x0f, - 0x47, 0x2f, 0xd0, 0xc2, 0x19, 0x4c, 0xa8, 0x5a, 0x0c, 0x1a, 0xd4, 0xac, 0x7a, 0x10, 0xfa, 0x83, - 0xdb, 0x84, 0x9e, 0xbc, 0x8b, 0xda, 0xa6, 0x5f, 0xeb, 0x0e, 0xba, 0xad, 0x0f, 0xed, 0xdf, 0xbc, - 0x0f, 0x9d, 0xe6, 0x47, 0x0e, 0xbb, 0xa3, 0xbe, 0xe9, 0xd2, 0x37, 0x2e, 0x7b, 0xa2, 0xb6, 0x69, - 0xd0, 0xb6, 0xec, 0xe4, 0x38, 0x87, 0x70, 0xd4, 0x38, 0x6a, 0x5c, 0xf5, 0x1a, 0xd7, 0x6b, 0x7e, - 0xdc, 0x58, 0xa3, 0xa2, 0x51, 0xd1, 0x34, 0xb8, 0xb6, 0x35, 0xba, 0x36, 0x6a, 0x9c, 0x56, 0xd7, - 0xc6, 0x24, 0xb9, 0xd9, 0x0f, 0x93, 0xe4, 0x34, 0x6b, 0x32, 0x7f, 0xea, 0x15, 0x19, 0x3e, 0xb5, - 0xaa, 0x5e, 0x5a, 0x65, 0x0b, 0x93, 0xa7, 0x66, 0x91, 0xb1, 0x53, 0xa1, 0x6c, 0x77, 0x55, 0x6b, - 0x74, 0x55, 0xd4, 0x2c, 0x32, 0x70, 0x0b, 0x98, 0xb7, 0x3c, 0xc6, 0x2d, 0xeb, 0x39, 0xcb, 0x91, - 0x56, 0x86, 0xa4, 0x42, 0x9c, 0xb6, 0xd3, 0x8c, 0xa2, 0x51, 0xea, 0xa7, 0xc1, 0x28, 0x72, 0xde, - 0x09, 0x72, 0xd7, 0x4e, 0x32, 0xf8, 0xa2, 0xce, 0xfd, 0xb1, 0x9f, 0x7e, 0x99, 0x3a, 0xe8, 0xc6, - 0x68, 0xac, 0xa2, 0xc1, 0x28, 0x3a, 0x0d, 0xce, 0xdc, 0x48, 0xa5, 0x7f, 0x8e, 0xe2, 0x3f, 0xdc, - 0x20, 0x4a, 0x52, 0x3f, 0x1a, 0xa8, 0xc6, 0xdd, 0xbf, 0x48, 0x16, 0xfe, 0xa6, 0x31, 0x8e, 0x47, - 0xe9, 0x68, 0x30, 0x0a, 0x93, 0xe2, 0x5b, 0x23, 0x48, 0x82, 0xa4, 0x11, 0xaa, 0x0b, 0x15, 0xe6, - 0xbf, 0x35, 0xc2, 0x20, 0xfa, 0xc3, 0x4d, 0x52, 0x3f, 0x55, 0xee, 0xd0, 0x4f, 0xfd, 0x13, 0x3f, - 0x51, 0x8d, 0x30, 0x19, 0x37, 0xd2, 0xf0, 0x22, 0x99, 0xfe, 0xd2, 0x38, 0x4f, 0xdd, 0x20, 0x89, - 0x1a, 0x91, 0x0a, 0xce, 0xbe, 0x9c, 0x8c, 0xe2, 0xa4, 0xf8, 0xd6, 0xb8, 0xbe, 0x74, 0x71, 0xc9, - 0x64, 0x72, 0x92, 0xfd, 0xc3, 0xd9, 0xef, 0x8d, 0x49, 0x1a, 0x84, 0xc1, 0x7f, 0xd5, 0xd0, 0x3d, - 0xf1, 0xa3, 0xe1, 0x9f, 0xc1, 0x30, 0xfd, 0xd2, 0xc8, 0x2e, 0x25, 0x23, 0xce, 0xe0, 0xdb, 0x24, - 0xb6, 0x84, 0xe0, 0xde, 0x42, 0x9a, 0x97, 0xa8, 0x81, 0x77, 0x10, 0x50, 0x99, 0xe8, 0x24, 0x69, - 0x3c, 0x19, 0xa4, 0x51, 0x0e, 0xa2, 0xf7, 0x66, 0x8f, 0xb5, 0x9d, 0xdf, 0xa2, 0x77, 0x90, 0x3f, - 0x4b, 0xaf, 0x9d, 0x04, 0x89, 0xd7, 0x99, 0x3e, 0x44, 0xaf, 0x93, 0x8c, 0xbd, 0x5e, 0x78, 0xe1, - 0xed, 0xa6, 0xed, 0x24, 0xf2, 0xf6, 0xf2, 0x07, 0xe4, 0x15, 0xff, 0xe6, 0x30, 0x7b, 0x1c, 0xde, - 0xa7, 0xfc, 0x71, 0x6c, 0x17, 0x4f, 0xe3, 0x05, 0x7d, 0x8f, 0x3d, 0x92, 0x81, 0x7a, 0x43, 0xe7, - 0x57, 0x75, 0x39, 0x55, 0xe4, 0xf4, 0x72, 0xac, 0x40, 0xcd, 0xcf, 0xe9, 0x04, 0x49, 0xda, 0x4c, - 0xd3, 0x18, 0xda, 0x4d, 0x3b, 0xbb, 0x41, 0xd4, 0x0a, 0xd5, 0xb9, 0x8a, 0xd2, 0xc4, 0x79, 0xb7, - 0x14, 0x4d, 0xc2, 0xf0, 0x27, 0x60, 0x61, 0xfd, 0xaf, 0x72, 0x84, 0xdd, 0x8f, 0x87, 0x2a, 0x56, - 0xc3, 0xed, 0xcb, 0x5c, 0x54, 0xda, 0xb7, 0x7d, 0x28, 0xc7, 0x36, 0x74, 0x03, 0x0c, 0x65, 0x2a, + 0xbe, 0x3b, 0x1c, 0x98, 0x28, 0x0d, 0xd3, 0x07, 0x8c, 0x7e, 0xae, 0x75, 0x90, 0xb3, 0x03, 0x18, + 0x55, 0x5b, 0xee, 0xe2, 0xd1, 0x1f, 0x07, 0x09, 0xf0, 0xb9, 0x95, 0x5d, 0x8a, 0xdd, 0x73, 0x7b, + 0x7e, 0xef, 0xf2, 0xd8, 0x6b, 0x5d, 0xf9, 0xde, 0x1f, 0x1d, 0x07, 0xf5, 0xf8, 0x9a, 0xe5, 0x6a, + 0x12, 0xd8, 0x97, 0x11, 0x5b, 0xd0, 0x2f, 0x24, 0x3e, 0x53, 0x54, 0xf7, 0xe2, 0xd2, 0x73, 0xba, + 0xfe, 0x89, 0xdd, 0x59, 0x5e, 0xb4, 0x3e, 0x97, 0x57, 0x0f, 0x59, 0x5f, 0x9a, 0x74, 0xa6, 0x43, + 0x6f, 0xdf, 0xa2, 0xbb, 0xa7, 0xff, 0x66, 0xc1, 0xaf, 0xf6, 0xd3, 0xaf, 0x94, 0x1c, 0x80, 0xe4, + 0xec, 0xd6, 0xd9, 0x45, 0xd7, 0xf5, 0x5e, 0x9d, 0x2b, 0x50, 0x1c, 0xf4, 0x0a, 0xde, 0xf2, 0x05, + 0x26, 0x77, 0x38, 0x0f, 0x13, 0x4a, 0x8b, 0x87, 0x06, 0x95, 0x55, 0x05, 0x65, 0xb9, 0x3d, 0xbf, + 0xeb, 0xd8, 0x27, 0xaf, 0x18, 0x77, 0x51, 0x6d, 0xe5, 0xa9, 0xce, 0x73, 0xfc, 0xa6, 0x73, 0x6a, + 0x5f, 0xb6, 0x3c, 0xff, 0xdc, 0xf1, 0xba, 0xee, 0x09, 0x23, 0x2f, 0x8a, 0x2e, 0x6f, 0xd1, 0x5d, + 0xb6, 0x4f, 0x2e, 0xda, 0x3d, 0xaf, 0x6b, 0xbb, 0x6d, 0xa7, 0xe9, 0xb7, 0x7a, 0x1d, 0x8a, 0x8e, + 0xa2, 0xcb, 0x5b, 0x74, 0x2d, 0xb7, 0xfd, 0xda, 0x6f, 0x3a, 0x2d, 0x9b, 0xc9, 0x25, 0xaa, 0xad, + 0x40, 0xb5, 0xf9, 0x57, 0x76, 0xd7, 0xb5, 0x3d, 0xf7, 0xa2, 0x4d, 0xdd, 0x51, 0x77, 0x79, 0xeb, + 0xce, 0xed, 0x5c, 0xed, 0xfb, 0x6d, 0xc7, 0x3d, 0x7b, 0x75, 0x7c, 0xd1, 0xf5, 0xed, 0x66, 0xb3, + 0xeb, 0xf4, 0x7a, 0x14, 0x1e, 0x85, 0x97, 0xb7, 0xf0, 0xec, 0xe6, 0xb9, 0xdb, 0xf6, 0xcf, 0xba, + 0x17, 0x97, 0xa4, 0x39, 0xca, 0xad, 0x00, 0xb9, 0xfd, 0xee, 0xf7, 0xdc, 0x26, 0xa5, 0x46, 0xa9, + 0xe5, 0x2d, 0xb5, 0x73, 0xfb, 0xcd, 0x1c, 0xe7, 0x8e, 0xed, 0x76, 0xf3, 0x5f, 0x6e, 0xd3, 0x7b, + 0x45, 0xd5, 0x51, 0x75, 0x05, 0x80, 0x5c, 0x83, 0x20, 0x47, 0xe1, 0x95, 0x13, 0x41, 0xb8, 0x6d, + 0xcf, 0xe9, 0x9e, 0xda, 0x27, 0x0e, 0x95, 0x47, 0xe5, 0x15, 0x9a, 0x33, 0x69, 0x5d, 0x50, 0x6c, + 0x14, 0x5b, 0xfe, 0x62, 0xcb, 0x60, 0xce, 0xcf, 0xde, 0x45, 0x78, 0x14, 0x1e, 0x85, 0x97, 0xbb, + 0xf0, 0x9c, 0x37, 0x9e, 0xd3, 0x6e, 0x3a, 0x4d, 0x66, 0x4c, 0xa8, 0xbb, 0xc2, 0x03, 0x0a, 0x72, + 0x1d, 0x95, 0x57, 0xb8, 0xf2, 0x2e, 0x3d, 0xb7, 0xe5, 0xfe, 0xdb, 0x69, 0x32, 0x81, 0x42, 0xd5, + 0x15, 0xa7, 0x3a, 0xbb, 0xf9, 0xbb, 0xdf, 0xb2, 0xdb, 0xcc, 0x12, 0x53, 0x6e, 0x45, 0xc8, 0x6d, + 0xca, 0x72, 0x59, 0xa6, 0x98, 0x65, 0x26, 0x54, 0x5d, 0x71, 0x29, 0x93, 0x4e, 0xf7, 0xc2, 0x73, + 0x4e, 0x3c, 0xf7, 0xa2, 0x3d, 0x2f, 0x1e, 0xa6, 0xee, 0xa8, 0xbb, 0xbc, 0x0f, 0xd7, 0x2b, 0xdb, + 0x6d, 0xd9, 0xc7, 0x2d, 0x87, 0x4c, 0x47, 0xd9, 0x15, 0xec, 0xee, 0x6c, 0xcf, 0xeb, 0xba, 0xc7, + 0x97, 0x9e, 0xc3, 0xe0, 0x95, 0x92, 0xcb, 0x3f, 0x78, 0x6d, 0x77, 0x9d, 0x9e, 0xd3, 0xbd, 0x62, + 0xf8, 0x4a, 0xdd, 0x15, 0xa9, 0xbb, 0xae, 0xd3, 0x73, 0x9b, 0x97, 0x76, 0x8b, 0xaa, 0xa3, 0xea, + 0x0a, 0x8c, 0x62, 0xed, 0x37, 0xfe, 0xdc, 0xdf, 0x11, 0xee, 0xa8, 0xbd, 0x12, 0xe0, 0x4e, 0x45, + 0xb2, 0x8e, 0x83, 0x38, 0xb8, 0xc5, 0xab, 0xb4, 0xb5, 0xab, 0xd0, 0x5d, 0x4c, 0x71, 0xc9, 0x8b, + 0xcc, 0xd4, 0x74, 0x11, 0x53, 0x5c, 0x22, 0x61, 0x04, 0xfc, 0x35, 0x0e, 0x55, 0x25, 0x57, 0x55, + 0x1a, 0xba, 0x82, 0xa9, 0x2f, 0x69, 0xfa, 0x52, 0xd6, 0xfd, 0x4b, 0x81, 0x49, 0x13, 0x98, 0x8a, + 0x9a, 0x55, 0xca, 0x4a, 0x9e, 0xac, 0xc0, 0xbb, 0x79, 0x29, 0x29, 0x69, 0x92, 0xd2, 0xd4, 0xb5, + 0x4b, 0x75, 0x09, 0x04, 0xad, 0x06, 0x41, 0x8b, 0x02, 0xcb, 0x97, 0xe4, 0x15, 0x75, 0x6b, 0x50, + 0x61, 0x22, 0x73, 0x11, 0xd8, 0xdd, 0xb6, 0x14, 0x95, 0x34, 0x51, 0x29, 0xeb, 0xaa, 0xa5, 0xc0, + 0xa4, 0x09, 0x4c, 0x57, 0xf7, 0x2c, 0xf5, 0x25, 0x12, 0xec, 0xc9, 0x5d, 0x54, 0x58, 0x6e, 0x0a, + 0xd3, 0xd4, 0x0d, 0x4b, 0x75, 0x49, 0x53, 0x97, 0x8a, 0xae, 0x57, 0xca, 0x4a, 0x9a, 0xac, 0x34, + 0x75, 0xb7, 0x52, 0x5d, 0x22, 0x53, 0x11, 0x6a, 0xba, 0x58, 0xa9, 0x2f, 0x71, 0x87, 0xa2, 0xa6, + 0x6e, 0x55, 0xca, 0x4b, 0xa4, 0xfb, 0xd2, 0xd0, 0x95, 0x4a, 0x69, 0x89, 0x0b, 0x16, 0x55, 0x75, + 0x9f, 0x52, 0x5f, 0xd2, 0xf4, 0xa5, 0xa9, 0xcb, 0x94, 0xea, 0x12, 0x17, 0x35, 0xaa, 0xeb, 0x26, + 0xa5, 0xc6, 0x44, 0xc2, 0x17, 0x93, 0x5d, 0x94, 0xd4, 0x4f, 0x48, 0xaa, 0xc3, 0x9b, 0x78, 0xa9, + 0xb6, 0xb2, 0x55, 0x37, 0x7b, 0xf3, 0xb8, 0xb8, 0x6e, 0x9c, 0x23, 0x2b, 0xa9, 0xb8, 0xfc, 0x15, + 0xe7, 0xd9, 0x67, 0xfb, 0x0d, 0x0a, 0x8d, 0x42, 0x2b, 0xc0, 0xb5, 0xed, 0xd3, 0xb5, 0x51, 0x71, + 0x85, 0xba, 0x36, 0xca, 0x8c, 0x32, 0xcb, 0x5b, 0x66, 0x9d, 0xae, 0x73, 0xea, 0xbe, 0xe1, 0x88, + 0x71, 0xaa, 0xad, 0x40, 0xb5, 0x9d, 0xb6, 0xec, 0xb3, 0x1e, 0xa7, 0x64, 0x95, 0xfb, 0xe1, 0x94, + 0x2c, 0xee, 0x6f, 0x46, 0xfe, 0x54, 0x16, 0x23, 0x7c, 0x0a, 0xaa, 0x5a, 0xae, 0x6a, 0x9f, 0xae, + 0x8a, 0xca, 0x62, 0xc4, 0x4e, 0x39, 0x31, 0x32, 0xa7, 0xaa, 0xaa, 0xa9, 0x2a, 0xf0, 0x08, 0x1c, + 0x33, 0xf2, 0xc6, 0x8b, 0xb8, 0xb1, 0x9e, 0x33, 0x8e, 0xb5, 0x18, 0x96, 0x82, 0x78, 0x6f, 0xcb, + 0x8e, 0xa2, 0x51, 0x1a, 0xa4, 0xe1, 0x28, 0xb2, 0x8e, 0x80, 0xfc, 0xb6, 0x95, 0xf4, 0xdf, 0x99, + 0xbb, 0x60, 0x1c, 0xa4, 0xef, 0xa6, 0x9e, 0xba, 0x3e, 0x1a, 0x9b, 0xa8, 0x3f, 0x8a, 0x6e, 0xc2, + 0xdb, 0x5a, 0x64, 0xd2, 0x0f, 0xa3, 0xf8, 0x7d, 0x2d, 0x8c, 0x92, 0x34, 0x88, 0xfa, 0xa6, 0xfe, + 0xe5, 0x17, 0x92, 0x95, 0xaf, 0xd4, 0xc7, 0xf1, 0x28, 0x1d, 0xf5, 0x47, 0xc3, 0x24, 0xfb, 0x5d, + 0x3d, 0x4c, 0xc2, 0xa4, 0x3e, 0x34, 0xf7, 0x66, 0xb8, 0xf8, 0xa5, 0x3e, 0x0c, 0xa3, 0xf7, 0xb5, + 0x24, 0x0d, 0x52, 0x53, 0x1b, 0x04, 0x69, 0x70, 0x1d, 0x24, 0xa6, 0x3e, 0x4c, 0xc6, 0xf5, 0x74, + 0x78, 0x9f, 0x4c, 0xff, 0x51, 0xbf, 0x4b, 0x6b, 0x61, 0x12, 0xd5, 0x23, 0x13, 0xde, 0xbe, 0xbb, + 0x1e, 0xc5, 0x49, 0xf6, 0xbb, 0xfa, 0xe3, 0x5f, 0x9d, 0xfd, 0x95, 0xc9, 0xe4, 0x7a, 0xf6, 0x8d, + 0xf3, 0x5f, 0xeb, 0x93, 0xa9, 0xf9, 0x49, 0x1a, 0x07, 0x61, 0x64, 0x06, 0xb5, 0xe9, 0x1f, 0x3b, + 0xfb, 0x9b, 0x30, 0x8e, 0x19, 0xf9, 0x5b, 0x52, 0xb6, 0x85, 0xc2, 0x9d, 0x05, 0x9a, 0x93, 0xd0, + 0xef, 0x1c, 0x00, 0xea, 0x12, 0xad, 0x24, 0x8d, 0x27, 0xfd, 0x34, 0x5a, 0xb0, 0x74, 0x7b, 0xfe, + 0x54, 0xdd, 0xc5, 0x0a, 0xfd, 0xce, 0xe2, 0x51, 0xfa, 0x6e, 0x12, 0x26, 0x7e, 0x6b, 0xfa, 0x0c, + 0xfd, 0x56, 0x32, 0xf6, 0xbd, 0xe1, 0xbd, 0x7f, 0x9e, 0xba, 0x49, 0xe4, 0xb7, 0x17, 0xcf, 0xc7, + 0xcf, 0xbe, 0xa7, 0x37, 0x7b, 0x1a, 0xfe, 0xe5, 0xd3, 0xa7, 0xd1, 0x4a, 0xc6, 0xb2, 0x7d, 0xa4, + 0x5c, 0xcf, 0x23, 0xd8, 0xeb, 0x58, 0x93, 0x28, 0x36, 0x89, 0x89, 0xef, 0xcd, 0xa0, 0x76, 0x1d, + 0x44, 0x83, 0x0f, 0xe1, 0x60, 0xb6, 0x97, 0x65, 0xfb, 0x9e, 0x2c, 0x70, 0x7c, 0xd6, 0x7a, 0xe1, + 0x3e, 0xfe, 0x75, 0x18, 0x0d, 0xac, 0xa3, 0xad, 0x1d, 0xe1, 0x66, 0x9e, 0xcc, 0xfc, 0xb8, 0x75, + 0xb4, 0xb5, 0x2d, 0xdc, 0xd0, 0x4e, 0x6c, 0x6e, 0xc2, 0x8f, 0x18, 0xe7, 0xe5, 0x52, 0xb7, 0xa3, + 0x7e, 0x6d, 0x7a, 0xb2, 0x21, 0x9c, 0x2e, 0xbd, 0xd1, 0x24, 0xee, 0x1b, 0x98, 0x98, 0xc5, 0x7a, + 0x6d, 0x1e, 0x3e, 0x8c, 0xe2, 0xe9, 0x0e, 0xb3, 0xc6, 0x73, 0x65, 0x80, 0x04, 0x88, 0xaf, 0x82, + 0xc4, 0x8e, 0x6f, 0x27, 0x77, 0x26, 0x4a, 0xad, 0xa3, 0xad, 0x34, 0x9e, 0x18, 0x94, 0xc8, 0xf6, + 0xd1, 0xea, 0x4c, 0xd8, 0x8c, 0x53, 0x54, 0xc7, 0x29, 0xcd, 0x30, 0x06, 0x09, 0x50, 0x4c, 0x3a, + 0x19, 0xd7, 0xc6, 0x71, 0x38, 0x8a, 0xc3, 0xf4, 0x01, 0xc7, 0x8b, 0x2d, 0x0f, 0x8a, 0x2f, 0xec, + 0x07, 0xf1, 0x08, 0x18, 0x88, 0x03, 0x87, 0x3a, 0x88, 0xc8, 0x03, 0x8c, 0x3e, 0xa8, 0x08, 0x04, + 0x8f, 0x42, 0xf0, 0x48, 0x84, 0x8d, 0x46, 0x18, 0x88, 0x04, 0x82, 0x4a, 0x70, 0xc8, 0x94, 0x19, + 0x0c, 0x07, 0x4d, 0x2b, 0x47, 0x0d, 0x18, 0x36, 0x7d, 0x89, 0x4f, 0xdb, 0x60, 0x66, 0xa3, 0x61, + 0x14, 0x32, 0x4e, 0x29, 0xc0, 0x2a, 0x74, 0xbc, 0x52, 0x83, 0x59, 0x6a, 0x70, 0x4b, 0x07, 0x76, + 0x61, 0xe1, 0x17, 0x18, 0x86, 0x65, 0x12, 0xf1, 0x1e, 0xc6, 0x06, 0xdb, 0xe3, 0x0f, 0x4d, 0x70, + 0x13, 0x9b, 0x1b, 0x44, 0x8f, 0xbf, 0xcc, 0x0f, 0x1d, 0x00, 0xda, 0xde, 0x59, 0x14, 0x3b, 0xbc, + 0x78, 0x31, 0x2f, 0x1c, 0xaa, 0x67, 0x94, 0xc9, 0x32, 0xc4, 0xaa, 0x7b, 0x16, 0x6b, 0x5e, 0x4a, + 0x06, 0x1b, 0x30, 0xcd, 0xcd, 0xc7, 0x8c, 0x96, 0x76, 0x18, 0x2d, 0x31, 0x5a, 0x62, 0xb4, 0xc4, + 0x68, 0x89, 0xd1, 0x12, 0xa3, 0x25, 0x32, 0xcd, 0x66, 0x25, 0x82, 0x96, 0xbc, 0xce, 0x0c, 0xc7, + 0xa9, 0x69, 0xfc, 0xea, 0x99, 0x85, 0x52, 0xe0, 0xf8, 0x35, 0x50, 0xdb, 0x06, 0x35, 0x1f, 0x15, + 0xd8, 0x34, 0x80, 0x9b, 0x22, 0x80, 0xd3, 0x02, 0x72, 0xea, 0x80, 0x4e, 0x1d, 0xd8, 0xe9, 0x02, + 0x3c, 0x4c, 0xd0, 0x03, 0x05, 0xbe, 0x4c, 0x3a, 0xb0, 0x69, 0xf2, 0x95, 0x13, 0x23, 0x34, 0xc6, + 0xdc, 0x0c, 0x47, 0x41, 0xfa, 0x72, 0x17, 0xf9, 0xd4, 0x58, 0x40, 0xd4, 0x21, 0xf0, 0x12, 0x5a, + 0x26, 0xba, 0x9d, 0x01, 0x39, 0xf6, 0xac, 0x7c, 0xfc, 0x29, 0x98, 0xd6, 0x79, 0x18, 0xc1, 0xf3, + 0x87, 0x92, 0xf0, 0x62, 0x65, 0x39, 0xb3, 0x1b, 0x25, 0xac, 0xa3, 0xad, 0x86, 0x92, 0xf5, 0x9c, + 0xc6, 0x41, 0x3f, 0x0d, 0x47, 0x51, 0x33, 0xbc, 0x0d, 0xd3, 0x64, 0xfa, 0x83, 0xe2, 0x28, 0x5f, + 0x09, 0x2e, 0x20, 0xf8, 0x48, 0x17, 0x40, 0x17, 0x40, 0x17, 0x50, 0xa5, 0x68, 0x04, 0xdf, 0x7a, + 0xcc, 0xb9, 0xd0, 0x78, 0xcf, 0x1b, 0xf0, 0x88, 0xc3, 0x2d, 0x5c, 0x5f, 0x89, 0x59, 0x41, 0x0b, + 0xd8, 0x95, 0x9c, 0xc7, 0xcc, 0xf8, 0x4b, 0xda, 0x0b, 0xcc, 0xf8, 0xcb, 0xd9, 0xd6, 0xcc, 0xf8, + 0x0b, 0x5f, 0x10, 0x33, 0xfe, 0x24, 0xa7, 0x1f, 0x94, 0x8e, 0x9e, 0x8c, 0xff, 0x24, 0x8c, 0xd2, + 0xdf, 0x14, 0xe4, 0xfa, 0xf7, 0x80, 0x97, 0xd0, 0x0d, 0xa2, 0x5b, 0xc3, 0x54, 0x7f, 0xf9, 0x3f, + 0x08, 0xa6, 0xfa, 0xe5, 0x2e, 0x67, 0x99, 0xe7, 0xdb, 0x66, 0x9e, 0x8f, 0xa7, 0x79, 0x8e, 0x2e, + 0x80, 0xa9, 0x7e, 0xf1, 0x2e, 0xe0, 0x80, 0x2e, 0x80, 0x61, 0x08, 0xad, 0x7f, 0xfa, 0x61, 0xaa, + 0x9f, 0x16, 0xc3, 0x1f, 0xc8, 0xa8, 0xd7, 0x3f, 0x64, 0xf6, 0xeb, 0x9b, 0xf4, 0xbe, 0x3a, 0x39, + 0xba, 0xfe, 0xf9, 0xb4, 0x45, 0xa4, 0x8b, 0x21, 0xf0, 0x36, 0x31, 0xa7, 0x8b, 0x6d, 0x14, 0x87, + 0xcd, 0x03, 0xe0, 0x0b, 0x43, 0xab, 0x15, 0x26, 0xa9, 0x9d, 0xa6, 0x60, 0x93, 0xd1, 0xce, 0xc3, + 0xc8, 0x19, 0x9a, 0x3b, 0x13, 0xcd, 0xc8, 0x36, 0x9a, 0x0c, 0x87, 0x40, 0x23, 0x0a, 0xce, 0x83, + 0x8f, 0xb8, 0xc6, 0x5f, 0xc4, 0x03, 0x13, 0x9b, 0xc1, 0xf1, 0xc3, 0xc2, 0x74, 0xfa, 0x10, 0x22, + 0x4a, 0x15, 0xd1, 0xc4, 0x82, 0x9a, 0x89, 0x92, 0xd3, 0xf5, 0x34, 0xbd, 0xe9, 0x23, 0xe9, 0x40, + 0x4d, 0xdf, 0xe1, 0xfd, 0x5d, 0xaa, 0x5d, 0x29, 0xef, 0xef, 0x12, 0xe8, 0x3a, 0x79, 0x6b, 0x95, + 0xba, 0xbd, 0x66, 0x4d, 0xd2, 0x70, 0x18, 0xfe, 0x3f, 0xd0, 0x3b, 0xab, 0x56, 0x6d, 0xe7, 0x8d, + 0x55, 0x9b, 0x30, 0x93, 0x37, 0x56, 0xe5, 0xa8, 0x5a, 0xde, 0x58, 0x95, 0x67, 0xee, 0x86, 0x37, + 0x56, 0x15, 0x8b, 0x69, 0xbc, 0xb1, 0xaa, 0x6a, 0x64, 0x8e, 0x73, 0x63, 0x15, 0xd4, 0x08, 0x51, + 0xc8, 0xd1, 0xa1, 0xbc, 0x9f, 0x8a, 0x80, 0xa3, 0x00, 0x74, 0x50, 0x81, 0x07, 0x1e, 0x7c, 0xe0, + 0x01, 0x08, 0x1b, 0x84, 0x30, 0x80, 0x08, 0x04, 0x8c, 0xe0, 0x00, 0x29, 0x33, 0x18, 0x77, 0xb4, + 0x27, 0xfc, 0x48, 0x4f, 0xde, 0x50, 0x45, 0xa0, 0xaa, 0x00, 0x58, 0xa1, 0x03, 0x96, 0x1a, 0xd0, + 0x52, 0x03, 0x5c, 0x3a, 0xc0, 0x0b, 0x0b, 0xc0, 0xc0, 0x40, 0x2c, 0x93, 0x08, 0xfe, 0x0d, 0x55, + 0xd8, 0x23, 0x37, 0x81, 0x47, 0x6d, 0xa2, 0x8f, 0xd8, 0x04, 0x6e, 0x3e, 0xd7, 0xd0, 0x67, 0xab, + 0xa4, 0xb9, 0x4e, 0xcb, 0xfc, 0x3c, 0x4d, 0xcd, 0x74, 0xc0, 0x7d, 0xb4, 0x2a, 0xfa, 0x67, 0xb9, + 0xb5, 0xb9, 0xb5, 0x19, 0x0d, 0x40, 0x5b, 0xfd, 0x96, 0x0d, 0x69, 0x55, 0x3f, 0x9a, 0xac, 0x14, + 0x31, 0x36, 0xcc, 0xe2, 0xc2, 0x99, 0xf5, 0xcc, 0x78, 0x17, 0x61, 0x36, 0x33, 0xde, 0x25, 0xea, + 0x9c, 0x19, 0xef, 0xf2, 0xb6, 0x2b, 0x33, 0xde, 0xc2, 0x16, 0xc2, 0x8c, 0x37, 0x89, 0xe6, 0x2b, + 0x12, 0x51, 0x90, 0xf1, 0x1e, 0x98, 0x28, 0x0d, 0xd3, 0x87, 0xd8, 0xdc, 0x00, 0x67, 0xbc, 0x77, + 0x00, 0x27, 0x4e, 0x5a, 0xee, 0xe2, 0xd1, 0x1f, 0x07, 0x89, 0xc1, 0x9f, 0xfc, 0xee, 0xf6, 0xdc, + 0x9e, 0xdf, 0xbb, 0x3c, 0xf6, 0x5a, 0x57, 0xbe, 0xf7, 0x47, 0xc7, 0x41, 0x3d, 0xbe, 0x66, 0x79, + 0x9a, 0x04, 0x7a, 0x00, 0x28, 0x78, 0xc2, 0x6f, 0xa9, 0xa8, 0xee, 0xc5, 0xa5, 0xe7, 0x74, 0xfd, + 0x13, 0xbb, 0x63, 0x1f, 0xbb, 0x2d, 0xd7, 0xfb, 0x63, 0x21, 0xaf, 0x1e, 0xb2, 0xbe, 0x34, 0xe9, + 0x4c, 0x87, 0xde, 0xbe, 0x45, 0x77, 0x4f, 0xff, 0xcd, 0xe2, 0x68, 0x50, 0x4a, 0xae, 0x08, 0xc9, + 0xd9, 0xad, 0xb3, 0x8b, 0xae, 0xeb, 0xbd, 0x3a, 0xb7, 0x38, 0x89, 0xb2, 0xd4, 0xcf, 0x5b, 0xbe, + 0xbc, 0xe4, 0x0e, 0xe7, 0x61, 0x42, 0x69, 0xf1, 0xd0, 0xa0, 0xb2, 0xaa, 0xa0, 0x2c, 0xb7, 0xe7, + 0x77, 0x1d, 0xfb, 0xe4, 0x15, 0xe3, 0x2e, 0xaa, 0xad, 0x3c, 0xd5, 0x79, 0x8e, 0xdf, 0x74, 0x4e, + 0xed, 0xcb, 0x96, 0xe7, 0x9f, 0x3b, 0x5e, 0xd7, 0x3d, 0x61, 0xe4, 0x45, 0xd1, 0xe5, 0x2d, 0xba, + 0xcb, 0xf6, 0xc9, 0x45, 0xbb, 0xe7, 0x75, 0x6d, 0xb7, 0xed, 0x34, 0xfd, 0xd6, 0xff, 0x67, 0xef, + 0xdd, 0x9f, 0xda, 0xc6, 0xb2, 0xed, 0xf1, 0xdf, 0xf3, 0x57, 0x50, 0xaa, 0x3b, 0x55, 0xc9, 0x4c, + 0x2b, 0x06, 0xc2, 0x23, 0xa4, 0xea, 0x5b, 0x53, 0x26, 0x38, 0x69, 0xdf, 0x36, 0x36, 0x5f, 0xe3, + 0x64, 0xba, 0x2f, 0xf8, 0xaa, 0x84, 0x7d, 0x20, 0xba, 0x2d, 0x64, 0x8f, 0x24, 0xd3, 0x61, 0xba, + 0xf9, 0xdf, 0x3f, 0x65, 0xd9, 0x16, 0x0f, 0x43, 0x12, 0x40, 0x3a, 0x67, 0xed, 0xa3, 0xe5, 0x1f, + 0x12, 0x27, 0xdd, 0x41, 0x5b, 0xd2, 0x7e, 0xac, 0xb5, 0xcf, 0x7e, 0x1c, 0x1e, 0x50, 0xe9, 0xa8, + 0x74, 0x65, 0x2b, 0x5d, 0xab, 0xd9, 0xfe, 0xc5, 0xdb, 0x6b, 0xb4, 0xea, 0x4c, 0x2e, 0x51, 0xdb, + 0x34, 0x6a, 0x9b, 0xf7, 0xb9, 0xde, 0x6d, 0xd6, 0x7b, 0xcd, 0x4e, 0x9b, 0x7a, 0x47, 0xbd, 0x2b, + 0x5b, 0xef, 0x9a, 0x07, 0x9f, 0xb7, 0xbc, 0x76, 0xa3, 0xf9, 0xf1, 0xe7, 0xdd, 0x4e, 0xd7, 0xab, + 0xef, 0xed, 0x75, 0x1b, 0x87, 0x87, 0x54, 0x3c, 0x2a, 0x5e, 0xd9, 0x8a, 0x57, 0xdf, 0xdb, 0x6f, + 0xb6, 0xbd, 0x8f, 0xdd, 0xce, 0x27, 0xa2, 0x39, 0xaa, 0x9b, 0x06, 0x75, 0xfb, 0x6f, 0xef, 0xb0, + 0xb9, 0x47, 0x55, 0xa3, 0xaa, 0x95, 0xad, 0x6a, 0xfb, 0xf5, 0x5f, 0x67, 0x70, 0x6e, 0xb7, 0xde, + 0xde, 0xfb, 0x57, 0x73, 0xaf, 0xf7, 0x33, 0xb5, 0x8e, 0x5a, 0xa7, 0x01, 0xc8, 0x6d, 0x10, 0xc8, + 0x51, 0xf1, 0xcc, 0x30, 0x88, 0x66, 0xbb, 0xd7, 0xe8, 0x7e, 0xa8, 0xbf, 0x6f, 0x50, 0xf3, 0xa8, + 0x79, 0x5a, 0x73, 0x26, 0xad, 0x0e, 0x95, 0x8d, 0xca, 0x56, 0xbe, 0xb2, 0xe5, 0x60, 0xce, 0xcb, + 0xcf, 0x22, 0x7a, 0x54, 0x3c, 0x2a, 0x5e, 0xe9, 0x8a, 0xd7, 0xf8, 0xb5, 0xd7, 0x68, 0xef, 0x35, + 0xf6, 0x98, 0x31, 0xa1, 0xde, 0x69, 0x27, 0x14, 0xc4, 0x75, 0xd4, 0x3c, 0xed, 0x9a, 0xf7, 0xa9, + 0xd7, 0x6c, 0x35, 0xff, 0xa7, 0xb1, 0xc7, 0x04, 0x0a, 0xb5, 0x4e, 0x9f, 0xd6, 0xd5, 0xf7, 0xfe, + 0xdb, 0x6b, 0xd5, 0xdb, 0xcc, 0x12, 0x53, 0xdd, 0x74, 0xa8, 0xdb, 0x14, 0xcb, 0xe5, 0x99, 0x62, + 0x96, 0x99, 0x50, 0xeb, 0xf4, 0xa5, 0x4c, 0x0e, 0xba, 0x9d, 0x5e, 0xe3, 0x7d, 0xaf, 0xd9, 0x69, + 0xcf, 0x8a, 0x87, 0xa9, 0x77, 0xd4, 0xbb, 0xb2, 0x83, 0xeb, 0xe7, 0x7a, 0xb3, 0x55, 0xdf, 0x6d, + 0x35, 0x88, 0xe9, 0xa8, 0x76, 0x9a, 0xdd, 0x5d, 0xbd, 0xd7, 0xeb, 0x36, 0x77, 0x3f, 0xf5, 0x1a, + 0x24, 0xaf, 0x54, 0xb9, 0xf2, 0xc9, 0x6b, 0xbb, 0xdb, 0x38, 0x6c, 0x74, 0x3f, 0x93, 0xbe, 0x52, + 0xef, 0x74, 0xea, 0x5d, 0xb7, 0x71, 0xd8, 0xdc, 0xfb, 0x54, 0x6f, 0x51, 0xeb, 0xa8, 0x75, 0x1a, + 0x59, 0x6c, 0xfd, 0x57, 0x6f, 0xe6, 0xef, 0x08, 0xee, 0xa8, 0x7b, 0x06, 0xc0, 0x9d, 0x15, 0xc9, + 0x3a, 0x0e, 0xe2, 0xa0, 0x89, 0x57, 0xc9, 0xb4, 0xab, 0xd0, 0x5d, 0x4c, 0xe5, 0xc2, 0x63, 0x66, + 0xd6, 0x74, 0x11, 0x53, 0xb9, 0x20, 0xc1, 0x88, 0xf0, 0x63, 0x1c, 0x6a, 0x15, 0xae, 0x56, 0xd9, + 0xd0, 0x15, 0x4c, 0xfd, 0x42, 0xd3, 0x2f, 0xcb, 0xba, 0x7f, 0xa9, 0x60, 0x68, 0x0a, 0x66, 0x45, + 0xcd, 0x2a, 0xd5, 0x0a, 0x4f, 0xad, 0x84, 0x77, 0xf3, 0x52, 0xa5, 0xd0, 0x54, 0xca, 0xa6, 0xae, + 0x5d, 0x6a, 0x17, 0x20, 0xd0, 0xda, 0x20, 0xd0, 0xa2, 0x82, 0x95, 0x8b, 0xe4, 0x2d, 0xea, 0xd6, + 0xa0, 0x86, 0x41, 0xe6, 0x22, 0x64, 0x77, 0xdb, 0x52, 0xa9, 0xd0, 0x94, 0xca, 0xb2, 0xae, 0x5a, + 0x2a, 0x18, 0x9a, 0x82, 0xd9, 0xd5, 0x3d, 0x4b, 0xfd, 0x82, 0x04, 0xf6, 0xc4, 0x5d, 0xd4, 0xb0, + 0xd2, 0x34, 0xcc, 0xa6, 0x6e, 0x58, 0x6a, 0x17, 0x9a, 0x76, 0x59, 0xd1, 0xf5, 0x4a, 0xb5, 0x42, + 0x53, 0x2b, 0x9b, 0xba, 0x5b, 0xa9, 0x5d, 0x90, 0xa9, 0x08, 0x6b, 0xba, 0x58, 0xa9, 0x5f, 0x70, + 0x41, 0xd1, 0xa6, 0x6e, 0x55, 0xaa, 0x17, 0xa4, 0xfb, 0xb2, 0xa1, 0x2b, 0x95, 0xaa, 0x05, 0x47, + 0x16, 0xad, 0xea, 0x3e, 0xa5, 0x7e, 0xa1, 0xe9, 0x97, 0x4d, 0x5d, 0xa6, 0xd4, 0x2e, 0x38, 0xd6, + 0x68, 0x5d, 0x37, 0x29, 0x75, 0x0c, 0x12, 0x7c, 0x31, 0xd9, 0x45, 0x95, 0x7a, 0x86, 0x4a, 0x1d, + 0x70, 0x13, 0x2f, 0xb5, 0xcd, 0xb4, 0xd6, 0x65, 0x27, 0x8f, 0xf3, 0x75, 0xe3, 0x1c, 0x59, 0x49, + 0x8d, 0x2b, 0x5f, 0xe3, 0x7a, 0xf5, 0x8f, 0x5b, 0x1b, 0x54, 0x34, 0x2a, 0x9a, 0x06, 0xd7, 0xb6, + 0x45, 0xd7, 0x46, 0x8d, 0xd3, 0xea, 0xda, 0xa8, 0x66, 0x54, 0xb3, 0xb2, 0xd5, 0xec, 0xa0, 0xdb, + 0xf8, 0xd0, 0xfc, 0x95, 0x23, 0xc6, 0xa9, 0x6d, 0x1a, 0xb5, 0xed, 0x43, 0xab, 0xfe, 0xf1, 0x90, + 0x53, 0xb2, 0xcc, 0x7e, 0x38, 0x25, 0x8b, 0xf6, 0x4d, 0xe6, 0x4f, 0xcd, 0x22, 0xc3, 0xa7, 0x42, + 0x55, 0xcb, 0x55, 0x6d, 0xd1, 0x55, 0x51, 0xb3, 0xc8, 0xd8, 0xa9, 0x4e, 0x64, 0xe6, 0xd4, 0xaa, + 0x6a, 0x6a, 0x95, 0x70, 0x06, 0x2e, 0x93, 0x79, 0xcb, 0x63, 0xdc, 0xb2, 0x9e, 0xb3, 0x1c, 0x69, + 0x65, 0x48, 0x2a, 0xc4, 0x7b, 0x3b, 0xf5, 0x28, 0x1a, 0xa5, 0x7e, 0x1a, 0x8c, 0x22, 0xe7, 0x9d, + 0x20, 0xbf, 0xed, 0x24, 0x83, 0x2f, 0xea, 0xdc, 0x1f, 0xfb, 0xe9, 0x97, 0xa9, 0xa7, 0xae, 0x8d, + 0xc6, 0x2a, 0x1a, 0x8c, 0xa2, 0xd3, 0xe0, 0xcc, 0x8d, 0x54, 0xfa, 0xc7, 0x28, 0xfe, 0xdd, 0x0d, + 0xa2, 0x24, 0xf5, 0xa3, 0x81, 0xaa, 0xdd, 0xfd, 0x8b, 0x64, 0xe9, 0x6f, 0x6a, 0xe3, 0x78, 0x94, + 0x8e, 0x06, 0xa3, 0x30, 0xc9, 0xbf, 0xd5, 0x82, 0x24, 0x48, 0x6a, 0xa1, 0xba, 0x50, 0xe1, 0xfc, + 0xb7, 0x5a, 0x18, 0x44, 0xbf, 0xbb, 0x49, 0xea, 0xa7, 0xca, 0x1d, 0xfa, 0xa9, 0x7f, 0xe2, 0x27, + 0xaa, 0x16, 0x26, 0xe3, 0x5a, 0x1a, 0x5e, 0x24, 0xd3, 0x5f, 0x6a, 0xe7, 0xa9, 0x1b, 0x24, 0x51, + 0x2d, 0x52, 0xc1, 0xd9, 0x97, 0x93, 0x51, 0x9c, 0xe4, 0xdf, 0x6a, 0xd7, 0x97, 0xce, 0x2f, 0x99, + 0x4c, 0x4e, 0xb2, 0x7f, 0x38, 0xfb, 0xbd, 0x36, 0x49, 0x83, 0x30, 0xf8, 0x8f, 0x1a, 0xba, 0x27, + 0x7e, 0x34, 0xfc, 0x23, 0x18, 0xa6, 0x5f, 0x6a, 0xd9, 0xa5, 0x64, 0xc4, 0x19, 0x7c, 0x9b, 0xc4, + 0x96, 0x10, 0xdc, 0x5b, 0x48, 0xf3, 0x12, 0x15, 0xf0, 0x0e, 0x02, 0x2a, 0x13, 0x9d, 0x24, 0x8d, + 0x27, 0x83, 0x34, 0x9a, 0xa3, 0xe9, 0xf6, 0xec, 0xb1, 0x36, 0xe7, 0xb7, 0xe8, 0x1d, 0xcc, 0x9f, + 0xa5, 0xd7, 0x4c, 0x82, 0xc4, 0x6b, 0x4d, 0x1f, 0xa2, 0xd7, 0x4a, 0xc6, 0x5e, 0x2f, 0xbc, 0xf0, + 0xf6, 0xd3, 0x66, 0x12, 0x79, 0xed, 0xf9, 0x03, 0xf2, 0xf2, 0x7f, 0x73, 0x98, 0x3d, 0x0e, 0xef, + 0xd3, 0xfc, 0x71, 0xec, 0xe6, 0x4f, 0xe3, 0x05, 0x7d, 0x8f, 0x3d, 0x92, 0x81, 0x7a, 0x43, 0xe7, + 0x17, 0x75, 0x39, 0x55, 0xe4, 0xf4, 0x72, 0xac, 0x40, 0xcd, 0xcf, 0x69, 0x05, 0x49, 0x5a, 0x4f, + 0xd3, 0x18, 0xda, 0x4d, 0x3b, 0xfb, 0x41, 0xd4, 0x08, 0xd5, 0xb9, 0x8a, 0xd2, 0xc4, 0x79, 0xb7, + 0x12, 0x4d, 0xc2, 0xf0, 0x27, 0x60, 0x61, 0xfd, 0xaf, 0x72, 0x84, 0xed, 0xc4, 0x43, 0x15, 0xab, + 0xe1, 0xee, 0xe5, 0x5c, 0x54, 0xda, 0xb7, 0x7d, 0x28, 0xc7, 0x36, 0x74, 0x03, 0x0c, 0x65, 0x4a, 0x83, 0x30, 0x98, 0x80, 0x05, 0x0f, 0x0e, 0x60, 0x49, 0x04, 0xe6, 0xb8, 0xd0, 0x1d, 0x96, 0x35, 0x8e, 0x0a, 0xcb, 0x5a, 0x71, 0x6c, 0x02, 0xc8, 0x1e, 0x9c, 0x49, 0x34, 0x54, 0xa7, 0x41, 0xa4, - 0x86, 0xee, 0xfc, 0xa5, 0xa1, 0x99, 0x44, 0x71, 0x9c, 0xb4, 0x28, 0x2a, 0x98, 0x5f, 0xf9, 0x35, - 0x88, 0x86, 0xce, 0xbb, 0xa5, 0x15, 0x30, 0xb1, 0xde, 0x67, 0xbe, 0xc3, 0x79, 0xb7, 0xb4, 0x0c, - 0x26, 0xd8, 0x41, 0xac, 0x4e, 0x83, 0xaf, 0x98, 0x3e, 0x78, 0xae, 0x74, 0xa3, 0x81, 0x3b, 0xf5, - 0x96, 0x80, 0x60, 0xcb, 0x39, 0x1c, 0x4d, 0xe2, 0x81, 0x82, 0xc5, 0xdc, 0x53, 0xde, 0xff, 0xe7, - 0x28, 0x9e, 0x5a, 0x84, 0x33, 0x9e, 0xbd, 0x69, 0x50, 0x02, 0xf3, 0x8b, 0x9f, 0x34, 0xe3, 0xb3, - 0xc9, 0x94, 0xab, 0x3a, 0xef, 0x96, 0xd2, 0x78, 0xa2, 0x50, 0x99, 0xd6, 0xb5, 0x94, 0x85, 0x62, - 0x12, 0x7b, 0x8a, 0xc2, 0x9e, 0x3b, 0x01, 0x66, 0x92, 0x69, 0x21, 0xba, 0xe2, 0xfa, 0x95, 0x87, + 0x86, 0xee, 0xe2, 0xa5, 0xa1, 0x99, 0x44, 0x7e, 0xae, 0xb4, 0x2c, 0x2a, 0x98, 0x5f, 0xf9, 0x25, + 0x88, 0x86, 0xce, 0xbb, 0x95, 0x35, 0x30, 0xb1, 0xde, 0x67, 0xbe, 0xc3, 0x79, 0xb7, 0xb2, 0x0a, + 0x26, 0xd8, 0x41, 0xac, 0x4e, 0x83, 0xaf, 0x98, 0x3e, 0x78, 0xa1, 0x74, 0xa3, 0x81, 0x3b, 0xf5, + 0x96, 0x80, 0x60, 0xcb, 0x39, 0x1c, 0x4d, 0xe2, 0x81, 0x82, 0xc5, 0xdc, 0x53, 0xde, 0xff, 0xc7, + 0x28, 0x9e, 0x5a, 0x84, 0x33, 0x9e, 0xbd, 0x69, 0x50, 0x02, 0xf3, 0xb3, 0x9f, 0xd4, 0xe3, 0xb3, + 0xc9, 0x94, 0xab, 0x3a, 0xef, 0x56, 0xd2, 0x78, 0xa2, 0x50, 0x99, 0xd6, 0xb5, 0x94, 0xb9, 0x62, + 0x12, 0x7b, 0x8a, 0xc2, 0x9e, 0x7b, 0x01, 0x66, 0x92, 0x69, 0x29, 0xba, 0xe2, 0xfa, 0x95, 0x87, 0xf0, 0x00, 0xaa, 0x7b, 0xc1, 0x84, 0x05, 0xf0, 0xf0, 0x40, 0x02, 0x4c, 0x10, 0x04, 0x17, 0xa4, 0xc0, 0x06, 0x71, 0xf0, 0x41, 0x1c, 0x8c, 0x90, 0x05, 0x27, 0x30, 0x61, 0x05, 0x28, 0xbc, 0x80, - 0x87, 0x19, 0x85, 0x80, 0xb3, 0x2a, 0x1d, 0x78, 0x27, 0x34, 0xf7, 0xeb, 0x33, 0x71, 0xc1, 0xed, + 0x87, 0x19, 0xb9, 0x80, 0xb3, 0x2a, 0x1d, 0x78, 0x27, 0xb4, 0xf0, 0xeb, 0x33, 0x71, 0xc1, 0xed, 0x19, 0x1b, 0x68, 0x88, 0x01, 0x1c, 0x92, 0x80, 0x87, 0x40, 0x00, 0x22, 0x0d, 0x88, 0x88, 0x05, - 0x24, 0x62, 0x81, 0x89, 0x4c, 0x80, 0x82, 0x0d, 0x54, 0xc0, 0x01, 0x8b, 0x18, 0xe0, 0x52, 0x08, - 0x1a, 0xaa, 0xe8, 0x2c, 0x3b, 0xa0, 0x13, 0xe2, 0xbd, 0xe6, 0x01, 0x22, 0x97, 0x5b, 0x88, 0x07, - 0xc8, 0x21, 0xcd, 0xb2, 0x10, 0x71, 0xa5, 0x40, 0x1b, 0x89, 0x10, 0x47, 0x30, 0xd4, 0x91, 0x0a, - 0x79, 0xc4, 0x43, 0x1f, 0xf1, 0x10, 0x48, 0x36, 0x14, 0x92, 0x01, 0x89, 0x84, 0x40, 0xa3, 0x42, - 0x15, 0x7a, 0x97, 0x63, 0x25, 0xd3, 0x63, 0x4f, 0x82, 0x28, 0x7d, 0x2b, 0xc9, 0x5f, 0xe7, 0xf0, - 0x63, 0x5d, 0x90, 0xc8, 0x5d, 0x3f, 0x3a, 0x53, 0xe2, 0x46, 0x57, 0xcb, 0xeb, 0x78, 0x77, 0x76, - 0x83, 0x48, 0x5c, 0x20, 0x17, 0x8a, 0xab, 0x17, 0xc4, 0xcf, 0x06, 0xb4, 0x0b, 0x96, 0xff, 0x43, - 0xec, 0x0f, 0xd2, 0x60, 0x14, 0xed, 0x04, 0x67, 0x41, 0xd6, 0x1f, 0xb1, 0x2c, 0xaf, 0x4f, 0xff, - 0x27, 0x81, 0x26, 0xeb, 0x7f, 0xa5, 0xc9, 0x1a, 0x36, 0xd9, 0xd5, 0xf5, 0x75, 0x1a, 0x2d, 0x81, - 0xb8, 0x5d, 0xd2, 0xf6, 0x39, 0x6e, 0xa0, 0x2e, 0x41, 0x65, 0xd6, 0xc7, 0x2a, 0x2e, 0xed, 0x0b, - 0xdc, 0x7d, 0x2b, 0x3c, 0xd2, 0x31, 0xe9, 0xab, 0x53, 0x8f, 0x99, 0xf4, 0xd5, 0x67, 0x86, 0x4c, - 0xfa, 0x1a, 0xbe, 0x01, 0x26, 0x7d, 0x89, 0x38, 0x72, 0x55, 0x60, 0xd2, 0x57, 0x37, 0xfc, 0x60, - 0xd2, 0xb7, 0xea, 0x0f, 0x93, 0xbe, 0xc4, 0xd5, 0x8f, 0x10, 0x9f, 0x49, 0x5f, 0x46, 0xcb, 0xa7, - 0x98, 0x2c, 0x93, 0xbe, 0xc6, 0x4d, 0x96, 0x49, 0x5f, 0x02, 0x71, 0xeb, 0xa4, 0x65, 0xd2, 0xb7, - 0x36, 0x41, 0xc5, 0xb9, 0xc8, 0x1d, 0x99, 0xb0, 0xac, 0xef, 0x4c, 0x6c, 0xa6, 0x7d, 0xab, 0x10, - 0x97, 0x69, 0x5f, 0x8d, 0x8a, 0xcc, 0xb4, 0xaf, 0x3e, 0x33, 0x64, 0xda, 0xd7, 0xf0, 0x0d, 0x30, - 0xed, 0x4b, 0xcc, 0x91, 0xab, 0x82, 0xdc, 0xb4, 0xef, 0x49, 0x10, 0xf9, 0xf1, 0xa5, 0xc0, 0xbc, - 0xef, 0x16, 0x61, 0x7d, 0x0d, 0x24, 0xe4, 0xea, 0x88, 0x72, 0xe5, 0x15, 0x3f, 0xb3, 0x74, 0x61, - 0xba, 0xe4, 0xc2, 0xdf, 0x48, 0xd8, 0x2c, 0x03, 0xbc, 0x33, 0x01, 0x78, 0x24, 0x92, 0x88, 0x92, - 0x2e, 0x49, 0xa5, 0x5c, 0x42, 0xb8, 0x3c, 0x47, 0x91, 0x90, 0xb3, 0x2f, 0x71, 0x14, 0x09, 0xb9, - 0xb9, 0xa5, 0x9c, 0x9c, 0x10, 0xbc, 0x16, 0xdc, 0xfb, 0xc6, 0x6c, 0x0f, 0xff, 0x34, 0x56, 0xa7, - 0x12, 0x3c, 0xee, 0x7c, 0x56, 0xd9, 0xa6, 0x00, 0x59, 0x0f, 0x72, 0x56, 0xf3, 0xfa, 0xf5, 0x8c, - 0x02, 0x34, 0x32, 0x04, 0x46, 0x1e, 0x60, 0x91, 0x64, 0xdc, 0x9d, 0xf6, 0x64, 0x11, 0xb9, 0x3b, - 0xad, 0x7c, 0x61, 0xb9, 0x3b, 0xad, 0x26, 0xf6, 0xcd, 0xdd, 0x69, 0x30, 0xe9, 0xbd, 0x7a, 0xed, - 0x53, 0xfb, 0x34, 0xbf, 0x7b, 0x2e, 0x56, 0x93, 0x2b, 0x11, 0x17, 0xab, 0xd5, 0xdd, 0x8b, 0x71, - 0xc5, 0x1a, 0xb2, 0x24, 0x20, 0xf6, 0x39, 0x67, 0x11, 0xc1, 0x10, 0x24, 0xc6, 0x61, 0x72, 0x06, - 0x68, 0x8e, 0x00, 0xcd, 0x09, 0x30, 0x39, 0x00, 0x8a, 0xf5, 0x81, 0x46, 0x45, 0xf1, 0xd1, 0x10, - 0x08, 0xb0, 0x97, 0x0f, 0xd0, 0x31, 0x02, 0xbb, 0xf9, 0x30, 0x6a, 0x56, 0x02, 0xc3, 0x2e, 0x04, - 0xcd, 0x75, 0x48, 0x75, 0x19, 0x66, 0x8d, 0xc9, 0x9c, 0x0a, 0x1b, 0x54, 0x5f, 0x67, 0xfa, 0x5a, - 0x86, 0xc6, 0xb5, 0xb6, 0x38, 0x1a, 0x9b, 0x89, 0x63, 0xd8, 0x9c, 0x31, 0xaa, 0x62, 0x60, 0xaa, - 0x5e, 0x90, 0xaa, 0x5a, 0x00, 0xab, 0x56, 0xd0, 0xaa, 0x52, 0x60, 0xab, 0x4e, 0x60, 0xab, 0x4a, - 0x30, 0xab, 0x46, 0xea, 0x0d, 0xa9, 0x60, 0xaa, 0x3a, 0x00, 0xab, 0x36, 0x90, 0xaa, 0x32, 0x16, - 0xab, 0x2e, 0x66, 0x21, 0x9c, 0x50, 0xce, 0x00, 0xb9, 0x45, 0xd8, 0xd5, 0x08, 0xb5, 0x8b, 0x11, - 0x64, 0xd7, 0x22, 0xa1, 0x1c, 0xa1, 0x1c, 0xa1, 0x1c, 0xa1, 0x5c, 0x3d, 0xa1, 0x1c, 0xca, 0xae, - 0x40, 0x90, 0x5c, 0x07, 0x64, 0xce, 0x03, 0x2c, 0xf7, 0x01, 0x17, 0x38, 0x11, 0x03, 0x28, 0x70, - 0x20, 0x45, 0x0d, 0xa8, 0xf0, 0x81, 0x15, 0x3e, 0xc0, 0x62, 0x07, 0x5a, 0x8c, 0x80, 0x0b, 0x12, - 0x78, 0xf1, 0x72, 0x29, 0x0b, 0x1e, 0x6b, 0x12, 0x44, 0xe9, 0xca, 0x06, 0x92, 0xc3, 0xca, 0xe3, - 0xdf, 0x06, 0x90, 0x48, 0x98, 0x53, 0x83, 0x01, 0xeb, 0x06, 0x91, 0xa7, 0xfe, 0x82, 0xb7, 0x5a, - 0xa3, 0x4f, 0xed, 0x95, 0x30, 0xe0, 0x13, 0xb0, 0x79, 0x01, 0x7a, 0xaa, 0xae, 0x14, 0x93, 0x58, - 0x5b, 0xde, 0x5a, 0xa7, 0x55, 0xc8, 0x86, 0x62, 0x78, 0xd2, 0xf4, 0x59, 0x39, 0x86, 0xe2, 0x35, - 0x9d, 0xe4, 0x32, 0x49, 0xd5, 0x39, 0x64, 0x72, 0xe8, 0x5a, 0x34, 0x26, 0x88, 0xee, 0x13, 0x87, - 0x09, 0xa2, 0x47, 0x28, 0x13, 0x13, 0x44, 0x3f, 0xae, 0xe6, 0x4c, 0x10, 0x3d, 0x53, 0x40, 0x26, - 0x88, 0xa4, 0x30, 0x06, 0xe0, 0x04, 0x11, 0x5a, 0xf8, 0xbb, 0x19, 0x02, 0x57, 0xde, 0x02, 0xc9, - 0x74, 0xe0, 0xa7, 0xa9, 0x8a, 0x23, 0xb8, 0x34, 0x91, 0xf3, 0x3f, 0x47, 0xcb, 0xee, 0x56, 0xd3, - 0xfd, 0xe0, 0xbb, 0xa7, 0xfd, 0xbf, 0xd6, 0xae, 0x8e, 0x8f, 0x5f, 0x7f, 0xe7, 0x2f, 0xfe, 0x8f, - 0x43, 0x8c, 0x8e, 0x86, 0xd1, 0xd9, 0xdd, 0xc1, 0xee, 0x8e, 0x27, 0x76, 0x77, 0x00, 0x4c, 0x63, - 0xad, 0x69, 0x39, 0x20, 0x0c, 0xa9, 0x85, 0x8b, 0xe6, 0xec, 0xf0, 0xc0, 0x25, 0xad, 0x2c, 0x0b, - 0x94, 0x4b, 0x4e, 0x59, 0x16, 0x48, 0x58, 0x25, 0x8f, 0x74, 0xb2, 0xc3, 0xe3, 0xbb, 0xd4, 0xf2, - 0x76, 0x87, 0xc7, 0x75, 0x18, 0xaf, 0x2b, 0xac, 0x7b, 0x51, 0x23, 0x83, 0x9d, 0x8f, 0xa5, 0xc9, - 0xca, 0x54, 0x97, 0x4c, 0x43, 0x38, 0x8c, 0x99, 0x34, 0x50, 0x33, 0x68, 0xa0, 0x66, 0xce, 0x60, - 0xcc, 0x98, 0x31, 0x65, 0x2a, 0x20, 0xa9, 0x02, 0x59, 0x29, 0x02, 0xc7, 0x68, 0xcf, 0x5c, 0x39, - 0x03, 0x61, 0xcc, 0x44, 0x42, 0xfd, 0x71, 0x48, 0xef, 0x15, 0x35, 0x9b, 0xb1, 0x69, 0xf3, 0x15, - 0x61, 0xb6, 0x7a, 0x35, 0x5d, 0x9f, 0xbe, 0xe9, 0xb9, 0x92, 0x26, 0x8d, 0x36, 0xa5, 0xc9, 0xc0, - 0x1a, 0xac, 0x31, 0xca, 0x3c, 0x37, 0xaa, 0xe8, 0x31, 0xb1, 0xea, 0x15, 0x5e, 0x83, 0xb2, 0x3b, - 0xe7, 0x93, 0x30, 0x0d, 0xdc, 0x74, 0x34, 0x1e, 0x85, 0xa3, 0xb3, 0x4b, 0x6d, 0xca, 0x7e, 0xdd, - 0xbc, 0x77, 0xfb, 0xfa, 0x9a, 0xcc, 0x5b, 0x6f, 0x5b, 0xbb, 0xf6, 0x3c, 0xb5, 0x89, 0x7c, 0xb4, - 0xc1, 0xbc, 0xb3, 0xa9, 0xfc, 0xb2, 0xf1, 0x3c, 0xb2, 0xf1, 0x7c, 0xb1, 0xd9, 0xbc, 0xb0, 0x5d, - 0x90, 0x43, 0x77, 0x9b, 0xb7, 0x93, 0x3b, 0xdd, 0x40, 0x25, 0xfa, 0x2d, 0xa7, 0x58, 0xf2, 0x78, - 0x2d, 0x83, 0x66, 0xcd, 0x35, 0x33, 0xd9, 0xc4, 0xd8, 0x91, 0xa5, 0xc9, 0x23, 0x4a, 0x80, 0x23, - 0x49, 0xd3, 0x47, 0x90, 0x30, 0x47, 0x8e, 0x30, 0x47, 0x8c, 0x18, 0x47, 0x8a, 0x76, 0xe7, 0x63, - 0x4c, 0x4d, 0x0e, 0x71, 0xb4, 0xf3, 0x89, 0xef, 0x05, 0x18, 0x53, 0x1b, 0xfa, 0x0d, 0x0f, 0xd0, - 0x32, 0x5e, 0x21, 0x83, 0x50, 0x19, 0x03, 0x54, 0x11, 0x83, 0x52, 0x09, 0x03, 0x57, 0x01, 0x03, - 0x57, 0xf9, 0x82, 0x55, 0xf1, 0x52, 0xaf, 0x03, 0x73, 0xd3, 0x03, 0xaf, 0x38, 0xd4, 0xfb, 0xe1, - 0x40, 0xc6, 0x92, 0x4f, 0x9c, 0xc0, 0x06, 0x18, 0xe0, 0xd0, 0x02, 0x1d, 0x6c, 0xc0, 0x83, 0x0d, - 0x7c, 0x98, 0x01, 0xd0, 0x6c, 0x20, 0x34, 0x1c, 0x10, 0x8b, 0x57, 0xc2, 0x92, 0xcf, 0x1f, 0x60, - 0x5a, 0x1c, 0xea, 0x8d, 0x66, 0x3a, 0x1c, 0xea, 0xcd, 0xa1, 0xde, 0x84, 0x72, 0x84, 0x72, 0x84, - 0x72, 0x84, 0x72, 0x84, 0x72, 0x18, 0x39, 0x8e, 0x42, 0x10, 0x3f, 0x4d, 0xe3, 0xe0, 0x64, 0x92, - 0x1a, 0x38, 0x05, 0xfe, 0xae, 0x13, 0xbc, 0x21, 0x1b, 0xa7, 0x37, 0x21, 0x87, 0x50, 0xc4, 0x50, - 0x0a, 0x1c, 0x52, 0x51, 0x43, 0x2b, 0x7c, 0x88, 0x85, 0x0f, 0xb5, 0xd8, 0x21, 0x17, 0x23, 0xf4, - 0x82, 0x84, 0x60, 0xbc, 0xac, 0xca, 0x82, 0xc7, 0x52, 0xd1, 0xe4, 0x5c, 0xc5, 0xb3, 0x32, 0x74, - 0xc0, 0xf9, 0x4d, 0x6b, 0x40, 0x32, 0xb5, 0xa2, 0xc9, 0xf9, 0xf4, 0x25, 0x5e, 0x71, 0xe4, 0x10, - 0x8a, 0x71, 0x71, 0x5f, 0x0c, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, 0x01, - 0x25, 0x84, 0xc7, 0xe2, 0xbe, 0x98, 0x1f, 0x10, 0x89, 0xfb, 0x62, 0x7e, 0xf0, 0x41, 0x71, 0x5f, - 0xcc, 0xd3, 0xc5, 0xe3, 0xbe, 0x18, 0x5b, 0xdc, 0xfd, 0x6d, 0x93, 0xe0, 0xbe, 0x98, 0x67, 0x9b, - 0x04, 0xf7, 0xc5, 0xc8, 0x87, 0x62, 0x78, 0xd2, 0x70, 0x16, 0x35, 0x82, 0x04, 0x9c, 0x45, 0x7d, - 0x5b, 0x1e, 0xc8, 0x79, 0x1f, 0xb7, 0x46, 0x32, 0x34, 0xae, 0x5b, 0x74, 0x1b, 0xc5, 0xdf, 0xd5, - 0x7b, 0x28, 0x75, 0x6d, 0xa7, 0x17, 0x72, 0x66, 0x21, 0x67, 0x16, 0xde, 0x27, 0x0c, 0x67, 0x16, - 0x72, 0x66, 0xe1, 0x13, 0x43, 0x89, 0xd0, 0xe1, 0x85, 0xd3, 0xfb, 0xea, 0xe5, 0xb7, 0xe0, 0xcd, - 0xbf, 0x70, 0x88, 0xa1, 0x05, 0x76, 0xcd, 0x21, 0x86, 0x8f, 0xb1, 0x63, 0x4e, 0x33, 0x14, 0xa0, - 0xda, 0x9c, 0x66, 0xf8, 0xa0, 0x2a, 0x0b, 0x99, 0x6a, 0x78, 0x33, 0xdc, 0x70, 0xba, 0xe1, 0x8f, - 0x3f, 0xf2, 0x28, 0x1c, 0x6b, 0xac, 0x40, 0x29, 0x8e, 0xd9, 0x66, 0x97, 0xe5, 0x2c, 0xc3, 0x52, - 0x2e, 0xc8, 0x59, 0x86, 0xba, 0x78, 0x3e, 0x67, 0x19, 0x72, 0x96, 0x61, 0x39, 0x8f, 0x52, 0xfb, - 0x2c, 0x43, 0x33, 0x6d, 0x9e, 0x46, 0xdb, 0x3a, 0x39, 0xc1, 0xd0, 0xc0, 0x8b, 0xe6, 0x04, 0x43, - 0x4e, 0x30, 0xc4, 0x08, 0x18, 0xf5, 0x48, 0xc6, 0x18, 0x9b, 0x60, 0xa8, 0x97, 0x39, 0x40, 0x30, - 0x89, 0x87, 0x02, 0xcc, 0x32, 0x67, 0x17, 0x72, 0x76, 0x21, 0x67, 0x17, 0xe2, 0x07, 0x24, 0xac, - 0xc0, 0x64, 0x26, 0x40, 0x19, 0x0a, 0x54, 0xc5, 0xa3, 0x37, 0x5e, 0xfb, 0x0d, 0xd6, 0x3c, 0x88, - 0xd0, 0x2c, 0x68, 0xb8, 0x39, 0xf0, 0x8a, 0x55, 0x13, 0xac, 0x9a, 0xb8, 0x47, 0x18, 0x8c, 0xaa, - 0x09, 0x12, 0x96, 0x72, 0x43, 0x2f, 0x4f, 0x8f, 0x17, 0x8e, 0xdc, 0x32, 0x12, 0x63, 0xa2, 0x66, - 0x90, 0xe7, 0xc5, 0xa2, 0x94, 0x18, 0x57, 0x79, 0x65, 0x1c, 0x13, 0xef, 0x65, 0xa2, 0xf2, 0x78, - 0xf8, 0x87, 0x1f, 0xf5, 0x78, 0x12, 0x9f, 0x29, 0x77, 0x14, 0xe8, 0x3f, 0x21, 0x2e, 0xae, 0xcc, - 0x43, 0x62, 0xa9, 0xa9, 0x1a, 0x1e, 0x12, 0xf3, 0x90, 0x98, 0x87, 0xc4, 0xcf, 0x78, 0x94, 0x3c, - 0x24, 0xb6, 0xce, 0xf1, 0x1b, 0x0b, 0x00, 0x26, 0x03, 0x01, 0x40, 0x40, 0x30, 0x1d, 0x18, 0x60, - 0x02, 0x04, 0x4c, 0xa0, 0xc0, 0x08, 0x18, 0xf5, 0xc8, 0xb9, 0x18, 0x3b, 0x24, 0x8e, 0xd5, 0x40, - 0x05, 0x17, 0x6a, 0xe8, 0x26, 0x97, 0x49, 0xaa, 0xce, 0x5d, 0x84, 0x13, 0xe3, 0x7b, 0x64, 0xe2, - 0xf1, 0xb1, 0x11, 0x01, 0x78, 0x7c, 0x8c, 0x14, 0x9a, 0xe0, 0x42, 0x14, 0x5c, 0xa8, 0xc2, 0x0a, - 0x59, 0x66, 0x42, 0x97, 0xa1, 0x10, 0x56, 0x3c, 0x7a, 0x9c, 0xe3, 0x63, 0xd3, 0xe1, 0xe3, 0x16, - 0x7b, 0x79, 0x6b, 0x50, 0x86, 0x03, 0x3f, 0x4d, 0x55, 0x1c, 0x19, 0x1f, 0x08, 0xe6, 0xfc, 0xcf, - 0xd1, 0xb2, 0xbb, 0xd5, 0x74, 0x3f, 0xf8, 0xee, 0x69, 0xff, 0xaf, 0xb5, 0xab, 0xe3, 0xe3, 0xd7, - 0xdf, 0xf9, 0x8b, 0xff, 0x63, 0xce, 0x6a, 0xfb, 0x75, 0x39, 0xcc, 0x34, 0xc0, 0xf1, 0x92, 0x2c, - 0x90, 0x22, 0x61, 0xce, 0x05, 0x89, 0x88, 0x38, 0x89, 0x38, 0x89, 0x38, 0x89, 0x38, 0x89, 0x38, - 0x89, 0x38, 0x89, 0x38, 0x89, 0x38, 0x89, 0x38, 0x65, 0x23, 0xce, 0xb9, 0x65, 0xba, 0x83, 0xd1, - 0x24, 0xf3, 0xd2, 0xa6, 0x01, 0xe7, 0x1d, 0x81, 0x88, 0x37, 0x89, 0x37, 0x89, 0x37, 0x89, 0x37, - 0x89, 0x37, 0x89, 0x37, 0x7f, 0xd8, 0x63, 0x4c, 0x82, 0x28, 0x7d, 0x0b, 0x80, 0x35, 0x0d, 0x0e, - 0xbb, 0x06, 0xd9, 0x75, 0x00, 0x30, 0x88, 0x17, 0x69, 0x97, 0x01, 0xda, 0x52, 0x28, 0xb0, 0x5d, - 0x05, 0x88, 0x53, 0xd8, 0x11, 0xd6, 0xad, 0x21, 0xed, 0x1e, 0x40, 0x55, 0xe1, 0xd5, 0xf5, 0x75, - 0x2a, 0x31, 0x16, 0x10, 0x31, 0x7f, 0xf5, 0x3e, 0x3b, 0xef, 0xe4, 0xbb, 0x44, 0x76, 0xde, 0xdd, - 0xd3, 0xbc, 0x34, 0x6f, 0x33, 0x61, 0xf3, 0x9d, 0x18, 0x7d, 0x66, 0xf3, 0xdd, 0x3d, 0xfa, 0x2b, - 0xa3, 0xff, 0xee, 0x60, 0x2a, 0xed, 0x7e, 0xc0, 0x0e, 0xbc, 0x1f, 0x7f, 0xd8, 0xf1, 0x68, 0x92, - 0xaa, 0xd8, 0x1d, 0xf8, 0x63, 0xff, 0x24, 0x08, 0x83, 0x34, 0x50, 0x89, 0xfe, 0x66, 0xbc, 0xfb, - 0x84, 0x60, 0x5f, 0x5e, 0x29, 0x17, 0x64, 0x5f, 0x9e, 0x1e, 0x35, 0x62, 0x5f, 0x1e, 0xfb, 0xf2, - 0xca, 0x7a, 0x94, 0xda, 0xfb, 0xf2, 0x0a, 0xc7, 0x7b, 0x69, 0xae, 0x39, 0xef, 0x86, 0x0c, 0xec, - 0xd0, 0xb3, 0x2d, 0x24, 0x00, 0x84, 0x06, 0xd3, 0x21, 0x02, 0x26, 0x54, 0xc0, 0x84, 0x0c, 0x8c, - 0xd0, 0x51, 0x8f, 0xdc, 0x8c, 0xb1, 0x0e, 0xbd, 0x39, 0x1f, 0x75, 0xa3, 0xc9, 0xf9, 0x89, 0x8a, - 0xcd, 0x57, 0xae, 0xdc, 0x15, 0x88, 0x95, 0x2b, 0x46, 0x04, 0x60, 0xe5, 0x0a, 0x52, 0x50, 0x82, - 0x0b, 0x4e, 0x70, 0x41, 0x0a, 0x2b, 0x58, 0x99, 0x09, 0x5a, 0x86, 0x82, 0x57, 0xf1, 0xe8, 0x71, - 0x2a, 0x57, 0x42, 0xe5, 0x9f, 0xc6, 0xea, 0x14, 0xa1, 0x4e, 0x7a, 0xd3, 0x6c, 0x9d, 0x74, 0x96, - 0xab, 0x7e, 0xfd, 0x7a, 0x76, 0xbe, 0xd1, 0xb8, 0x1b, 0x5c, 0x59, 0x12, 0x5c, 0xd9, 0xb3, 0x37, - 0x33, 0x4b, 0x67, 0xc1, 0x12, 0x4c, 0xcc, 0xd4, 0x31, 0xcc, 0xdc, 0x09, 0xa2, 0x08, 0xa2, 0x08, - 0xa2, 0x08, 0xa2, 0x64, 0x82, 0x28, 0x53, 0x99, 0x80, 0x42, 0x80, 0xd3, 0xd0, 0x3f, 0x4b, 0xcc, - 0x1b, 0xe9, 0xdc, 0x6f, 0xcd, 0xc4, 0x31, 0x6c, 0x0f, 0x18, 0xc5, 0x7a, 0xc6, 0x03, 0x1a, 0x52, - 0x60, 0x03, 0x0c, 0x70, 0x68, 0x81, 0x0e, 0x36, 0xe0, 0xc1, 0x06, 0x3e, 0xcc, 0x00, 0x68, 0x36, - 0x10, 0x1a, 0x0e, 0x88, 0x38, 0xd9, 0x85, 0x05, 0x8f, 0x83, 0xb1, 0x40, 0x66, 0x81, 0x6d, 0xad, - 0x01, 0xc8, 0x62, 0x76, 0xa1, 0x0c, 0x8a, 0xca, 0x42, 0x2c, 0x98, 0x29, 0xa4, 0x41, 0x5a, 0x34, - 0x73, 0x2d, 0x14, 0xd0, 0xc2, 0x99, 0x42, 0x28, 0x88, 0xc5, 0x33, 0xe6, 0xbd, 0xbe, 0x41, 0xf3, - 0x81, 0x39, 0x97, 0x5c, 0x70, 0xfa, 0x18, 0xe7, 0x93, 0x64, 0x26, 0x64, 0x26, 0x64, 0x26, 0x64, - 0x26, 0x64, 0x26, 0x64, 0x26, 0xf7, 0x78, 0x9c, 0x49, 0x10, 0xa5, 0x6f, 0x56, 0x81, 0x48, 0xc9, - 0x26, 0x80, 0x28, 0x18, 0xad, 0xfc, 0xf3, 0x0f, 0x86, 0x03, 0x5e, 0x42, 0x6b, 0xed, 0x07, 0x03, - 0x36, 0x0b, 0x62, 0x81, 0xb5, 0xfa, 0x17, 0x72, 0x01, 0x76, 0x4b, 0x83, 0xb8, 0xe7, 0xbb, 0x74, - 0x93, 0xaa, 0xfe, 0x48, 0x55, 0x5f, 0x5b, 0xdd, 0x5a, 0xdb, 0xda, 0xd8, 0x5c, 0xdd, 0x5a, 0xa7, - 0xce, 0xcb, 0x00, 0x44, 0x38, 0x52, 0xf4, 0x99, 0x3a, 0xd1, 0x6e, 0x16, 0x79, 0xb7, 0xa6, 0xc1, - 0xb9, 0xd7, 0x0b, 0x78, 0xf4, 0x5a, 0x24, 0xa6, 0x4b, 0x98, 0x2e, 0x61, 0xba, 0x84, 0xe9, 0x12, - 0xa6, 0x4b, 0x98, 0x2e, 0x81, 0xf1, 0x38, 0xc1, 0xf8, 0x62, 0xcd, 0xf5, 0x87, 0xc3, 0x58, 0x25, - 0x09, 0xd2, 0x49, 0xee, 0x5b, 0x00, 0x59, 0x50, 0x66, 0x6d, 0x17, 0x02, 0xfd, 0xcf, 0xcb, 0x97, - 0x47, 0xcb, 0xee, 0x56, 0xff, 0xef, 0xa3, 0x15, 0x77, 0xab, 0x3f, 0xfb, 0xba, 0x92, 0xfd, 0x36, - 0xfb, 0xbe, 0x7a, 0xb4, 0xec, 0xae, 0xcd, 0xbf, 0xaf, 0x1f, 0x2d, 0xbb, 0xeb, 0xfd, 0x57, 0xc7, - 0xc7, 0xaf, 0x5f, 0xfd, 0xf5, 0xe6, 0xea, 0xf1, 0xff, 0xf0, 0xff, 0x38, 0x84, 0xd0, 0xb5, 0xba, - 0xb2, 0xa9, 0xb2, 0x4f, 0xc3, 0xc3, 0xb9, 0x0a, 0x39, 0x10, 0x87, 0x1c, 0xdd, 0x33, 0x7e, 0xa6, - 0x71, 0x3d, 0x8e, 0xc0, 0xc4, 0xe8, 0x2e, 0x73, 0x3a, 0x6a, 0xa4, 0x95, 0x65, 0x72, 0x32, 0x7d, - 0x17, 0x00, 0xcd, 0x2c, 0xb9, 0x20, 0x6c, 0x67, 0xa9, 0x2b, 0x59, 0x64, 0x3b, 0x0b, 0x3e, 0x29, - 0x64, 0x3b, 0x0b, 0x71, 0x4d, 0xf1, 0xe8, 0x8d, 0xb7, 0xb3, 0xcc, 0x62, 0x06, 0x4e, 0x2a, 0x34, - 0x97, 0x07, 0x23, 0x0f, 0xba, 0xc2, 0x3c, 0x28, 0x4c, 0x68, 0x03, 0x0c, 0x71, 0x68, 0xa1, 0x0e, - 0x36, 0xe4, 0xc1, 0x86, 0x3e, 0xcc, 0x10, 0x68, 0x3e, 0xb9, 0xb0, 0x04, 0x90, 0x07, 0x35, 0x1d, - 0x1a, 0xaf, 0x43, 0xa4, 0x3a, 0x9b, 0xaa, 0x86, 0x3b, 0xe5, 0xd9, 0x41, 0x74, 0xe6, 0xfa, 0xe1, - 0xd9, 0x28, 0x0e, 0xd2, 0x2f, 0xe7, 0x09, 0x8e, 0xc5, 0x17, 0xe1, 0xf3, 0x61, 0x59, 0x7f, 0x82, - 0x5a, 0xec, 0xb0, 0x02, 0x22, 0x0e, 0x4a, 0x88, 0x45, 0x0c, 0xb5, 0xc0, 0x21, 0x17, 0x35, 0xf4, - 0xc2, 0x87, 0x60, 0xf8, 0x50, 0x8c, 0x1d, 0x92, 0x31, 0x42, 0x33, 0x48, 0x88, 0x86, 0x0b, 0xd5, - 0xd7, 0x21, 0xdb, 0xe8, 0x74, 0xa1, 0xef, 0x47, 0x69, 0x83, 0x53, 0x87, 0x84, 0x04, 0x66, 0xd8, - 0x00, 0x8d, 0x1c, 0xa8, 0x05, 0x04, 0x6c, 0xf4, 0xc0, 0x2d, 0x26, 0x80, 0x8b, 0x09, 0xe4, 0x32, - 0x02, 0x3a, 0x56, 0x60, 0x07, 0x0b, 0xf0, 0xb0, 0x81, 0xbe, 0x10, 0xac, 0xe0, 0xb9, 0xb8, 0x0e, - 0x65, 0xee, 0x93, 0xaf, 0x45, 0x05, 0xb5, 0x53, 0xcc, 0x7e, 0x0b, 0x78, 0x40, 0x20, 0x01, 0x18, - 0x08, 0x02, 0x08, 0x52, 0x80, 0x82, 0x38, 0xc0, 0x20, 0x0e, 0x38, 0xc8, 0x02, 0x10, 0x98, 0x40, - 0x02, 0x14, 0x50, 0x14, 0xaf, 0x16, 0xa6, 0xe8, 0xf9, 0xbb, 0x1e, 0x13, 0x6b, 0xaa, 0xd5, 0x77, - 0xd9, 0xfc, 0x1a, 0xb0, 0x8c, 0x18, 0x53, 0xb0, 0xa4, 0x99, 0x0a, 0xd4, 0xd4, 0xac, 0x07, 0xa5, - 0x44, 0x9c, 0xa6, 0xf5, 0xb0, 0xb0, 0x80, 0x53, 0xb6, 0x1e, 0x14, 0x16, 0x6a, 0xfa, 0x96, 0x9c, - 0xe8, 0x47, 0x62, 0xff, 0x4d, 0x68, 0x85, 0x51, 0x5f, 0xff, 0xa0, 0x7c, 0x12, 0xeb, 0xee, 0x67, - 0xd5, 0xd8, 0xf9, 0xef, 0x8d, 0x87, 0x4f, 0xe6, 0x4d, 0x56, 0xe8, 0xe3, 0x5b, 0x0b, 0x4f, 0xda, - 0x04, 0xd8, 0xa9, 0xd5, 0xf6, 0x89, 0x54, 0xee, 0xf0, 0xf4, 0xe5, 0xe2, 0xef, 0x8b, 0x3b, 0xf7, - 0x0e, 0xb3, 0x3b, 0xf6, 0x0e, 0x67, 0x77, 0xdc, 0x9d, 0xdd, 0x70, 0xf3, 0xfa, 0x7e, 0x39, 0x9c, - 0x03, 0xc5, 0xe6, 0x17, 0xea, 0xb9, 0x0c, 0xae, 0xba, 0xfd, 0x2e, 0x33, 0xfe, 0x86, 0xac, 0xac, - 0x3d, 0xbb, 0x4f, 0x1c, 0xd6, 0x9e, 0x3d, 0x42, 0xbb, 0x58, 0x7b, 0xf6, 0xe3, 0x6a, 0xce, 0xda, - 0xb3, 0xe7, 0xc2, 0x2c, 0xd6, 0x9e, 0x49, 0x41, 0xc4, 0x78, 0xb5, 0x67, 0xf1, 0xd9, 0x89, 0x3b, - 0x54, 0xc9, 0x20, 0x0e, 0xc6, 0xe9, 0x28, 0x4e, 0x80, 0xcb, 0xd0, 0xee, 0x4a, 0xca, 0x8a, 0x34, - 0x89, 0x61, 0x1b, 0x39, 0x7c, 0x0b, 0x08, 0xe3, 0xe8, 0xe1, 0x5c, 0x4c, 0x58, 0x17, 0x13, 0xde, - 0x65, 0x84, 0x79, 0xac, 0x70, 0x0f, 0x16, 0xf6, 0x61, 0xc3, 0xff, 0x43, 0x30, 0x00, 0xbf, 0x2e, - 0xed, 0xae, 0xc0, 0xd8, 0xd5, 0x69, 0x2b, 0xac, 0x4e, 0xb3, 0x0e, 0x24, 0x08, 0x02, 0x0b, 0x52, - 0x40, 0x83, 0x38, 0xf0, 0x20, 0x0e, 0x44, 0xc8, 0x02, 0x13, 0x98, 0xa0, 0x02, 0x14, 0x5c, 0xc0, - 0x83, 0x8c, 0x42, 0xc0, 0x38, 0xdf, 0xdd, 0x01, 0xee, 0x84, 0x8a, 0x79, 0xd7, 0x99, 0xb8, 0xe0, - 0xf6, 0x8c, 0x5d, 0x06, 0x2f, 0x06, 0x70, 0x48, 0x02, 0x1e, 0x02, 0x01, 0x88, 0x34, 0x20, 0x22, - 0x16, 0x90, 0x88, 0x05, 0x26, 0x32, 0x01, 0x0a, 0x36, 0x50, 0x01, 0x07, 0x2c, 0xc5, 0x2b, 0x87, - 0x2f, 0xab, 0x5f, 0xf0, 0xb8, 0xa1, 0xf2, 0x4f, 0x63, 0x75, 0x2a, 0xc1, 0xe3, 0xce, 0x33, 0x11, - 0x9b, 0x02, 0x64, 0x3d, 0xc8, 0x2b, 0xb3, 0x5e, 0xbf, 0x9e, 0x55, 0x1b, 0x36, 0x66, 0x10, 0xec, - 0x05, 0x4d, 0xdf, 0x32, 0xb3, 0x07, 0x1d, 0x7d, 0xf1, 0xa0, 0xbd, 0x23, 0x8e, 0xc2, 0x78, 0xd0, - 0xd2, 0x49, 0x05, 0x48, 0x05, 0x48, 0x05, 0x48, 0x05, 0x48, 0x05, 0x88, 0x07, 0xa4, 0x51, 0x01, - 0xf4, 0x1c, 0x66, 0x21, 0x68, 0xe8, 0x9f, 0xa8, 0x50, 0x8e, 0xf3, 0x2a, 0x88, 0x4b, 0x26, 0xb6, - 0x10, 0xfb, 0x97, 0x91, 0xdb, 0x14, 0x07, 0x6c, 0x24, 0x02, 0x1c, 0xc1, 0x40, 0x47, 0x2a, 0xe0, - 0x11, 0x0f, 0x7c, 0xc4, 0x03, 0x20, 0xd9, 0x40, 0x48, 0x06, 0x20, 0x12, 0x02, 0x8c, 0x0a, 0x55, - 0x10, 0x93, 0x2b, 0x5d, 0xf0, 0xd8, 0xe7, 0xe3, 0x30, 0x71, 0x25, 0xe1, 0x8f, 0x5b, 0x49, 0x95, - 0x2d, 0x41, 0x32, 0xe7, 0x3a, 0x72, 0x24, 0xca, 0xc9, 0xc9, 0x0a, 0x8a, 0xb7, 0x34, 0x7b, 0x12, - 0x44, 0xe9, 0x9b, 0x55, 0x61, 0x51, 0xf1, 0xa6, 0x76, 0x6f, 0x0a, 0x14, 0xbd, 0x9b, 0x17, 0x93, - 0x1c, 0x89, 0x13, 0x5d, 0xa6, 0xb6, 0x17, 0x0f, 0x7e, 0x37, 0x88, 0xc4, 0x61, 0x58, 0xe1, 0xd4, - 0xf2, 0xc1, 0xdb, 0xf8, 0xec, 0x87, 0x93, 0xa9, 0x11, 0xac, 0x6c, 0x08, 0xbf, 0x91, 0x0f, 0xb1, - 0x3f, 0x48, 0x83, 0x51, 0xb4, 0x13, 0x9c, 0x05, 0xd9, 0x78, 0xa3, 0x65, 0xb1, 0xf7, 0x73, 0xf5, - 0x93, 0x60, 0xdb, 0xf6, 0xbf, 0xd2, 0xb6, 0xd1, 0x6c, 0x7b, 0x79, 0xed, 0xed, 0xfa, 0xe6, 0x3a, - 0x0d, 0x9c, 0x84, 0xb6, 0x5e, 0x52, 0xf7, 0x5f, 0xd0, 0xed, 0x13, 0x80, 0x2e, 0xd2, 0x2d, 0x19, - 0xb3, 0x4d, 0xbf, 0x9b, 0x51, 0x58, 0x13, 0x28, 0x3b, 0xf6, 0x2c, 0x54, 0xf9, 0xae, 0x4f, 0x86, - 0xcb, 0xc3, 0x7f, 0x9e, 0x02, 0x9c, 0xb1, 0x90, 0x6e, 0x98, 0x05, 0xef, 0x2b, 0xa1, 0x2b, 0x46, - 0x28, 0x15, 0xe0, 0x09, 0xb2, 0x4e, 0x45, 0xe6, 0x09, 0xb2, 0x3e, 0x33, 0xe4, 0x09, 0xb2, 0xe1, - 0x1b, 0xe0, 0x09, 0x32, 0x31, 0x47, 0xae, 0x0a, 0x72, 0x4f, 0x90, 0xc5, 0x9d, 0xb3, 0x09, 0x3c, - 0x5f, 0x13, 0x7a, 0xae, 0x26, 0x30, 0x9d, 0x21, 0xf9, 0x1c, 0x4d, 0x78, 0x8e, 0xbd, 0xc8, 0xad, - 0x4b, 0x95, 0xdf, 0x82, 0x6c, 0xba, 0xc0, 0x63, 0x32, 0xd1, 0xc7, 0x63, 0xb6, 0x98, 0xec, 0xda, - 0xea, 0xd6, 0xda, 0xd6, 0xc6, 0xe6, 0xea, 0xd6, 0x3a, 0x6d, 0x97, 0x80, 0xdc, 0x2e, 0x69, 0x99, - 0xfe, 0xad, 0x83, 0x84, 0xe8, 0x3d, 0x58, 0xe0, 0x5b, 0x96, 0x16, 0xe4, 0xb5, 0x6f, 0xab, 0xcb, - 0xcd, 0xff, 0xf3, 0xce, 0xf4, 0xeb, 0xbb, 0x7f, 0x81, 0xb8, 0x96, 0x49, 0x8e, 0x39, 0x72, 0xc0, - 0xdc, 0xa3, 0x10, 0xa4, 0xba, 0x44, 0x3f, 0x01, 0xe2, 0xde, 0xc9, 0x4a, 0x58, 0x0f, 0xf7, 0x4e, - 0xd6, 0xc2, 0xc0, 0x85, 0x44, 0xfe, 0x7a, 0x47, 0x7c, 0x07, 0x7a, 0xac, 0x4f, 0x55, 0x8b, 0xdf, - 0x6e, 0xfe, 0xf7, 0xf8, 0xec, 0x64, 0xe7, 0xfa, 0x71, 0x70, 0xb3, 0xac, 0x40, 0x89, 0xb8, 0x59, - 0x96, 0x1e, 0xef, 0x41, 0x8f, 0xc7, 0x25, 0xb3, 0xf0, 0x46, 0x03, 0x3a, 0xc0, 0x0d, 0x7a, 0x60, - 0x1b, 0x37, 0x45, 0x3d, 0x52, 0x30, 0x6e, 0x8a, 0x7a, 0x96, 0x88, 0xdc, 0x14, 0x55, 0x92, 0xa0, - 0xdc, 0x14, 0x45, 0x20, 0xaa, 0xeb, 0x15, 0xc2, 0x6e, 0x8a, 0x3a, 0x0d, 0xfd, 0xb3, 0x04, 0x7f, - 0x3f, 0xd4, 0x4c, 0x4c, 0xec, 0xad, 0x50, 0xcb, 0xdc, 0x0a, 0x65, 0x1d, 0x20, 0x10, 0x04, 0x0c, - 0xa4, 0x00, 0x04, 0x71, 0x40, 0x41, 0x1c, 0x60, 0x90, 0x05, 0x1c, 0x30, 0x01, 0x04, 0x28, 0x90, - 0x28, 0x5e, 0x2d, 0x7c, 0xb9, 0xb7, 0xb0, 0xbe, 0x5e, 0x09, 0xfd, 0xbb, 0xe0, 0x7d, 0xba, 0x57, - 0x3c, 0x3b, 0x7e, 0x86, 0x94, 0x3c, 0x3b, 0xae, 0x4a, 0x58, 0x19, 0x67, 0xc7, 0x24, 0xf4, 0xa2, - 0x08, 0x3d, 0x4f, 0x96, 0x4c, 0x9e, 0x2c, 0xe1, 0x15, 0xc7, 0x01, 0x1d, 0x27, 0xbd, 0xa0, 0xbd, - 0xc2, 0xdb, 0xa9, 0xd5, 0xf6, 0xe9, 0x40, 0x1d, 0x68, 0x56, 0x5f, 0xba, 0x82, 0xe1, 0x89, 0xcc, - 0xdb, 0x3d, 0x80, 0xcd, 0x83, 0x1d, 0x60, 0x43, 0x1e, 0x5c, 0x83, 0x1d, 0x58, 0xc3, 0xe5, 0xa7, - 0x11, 0xf3, 0xd1, 0xc0, 0xf9, 0x67, 0xd4, 0x7c, 0x33, 0x7c, 0x7e, 0x19, 0x3e, 0x9f, 0x8c, 0x9d, - 0x3f, 0x26, 0xce, 0xbd, 0xf9, 0xaa, 0xd0, 0x0e, 0x98, 0x9d, 0x14, 0x31, 0x41, 0x5d, 0xb8, 0xd1, - 0x4c, 0x3a, 0xcc, 0x3a, 0xb2, 0x65, 0xd6, 0x91, 0x89, 0x0d, 0xd3, 0x02, 0xc2, 0x35, 0x7a, 0xd8, - 0x16, 0x13, 0xbe, 0xc5, 0x84, 0x71, 0x19, 0xe1, 0x1c, 0x2b, 0xac, 0x83, 0x85, 0xf7, 0xe2, 0x15, - 0xc2, 0x1e, 0xfb, 0x16, 0x1e, 0x2f, 0x18, 0xaa, 0x28, 0x0d, 0xd2, 0xcb, 0x58, 0x9d, 0x22, 0x7a, - 0xbd, 0x39, 0xf7, 0x05, 0x1c, 0x33, 0xe2, 0xb4, 0xf3, 0x47, 0xb7, 0xed, 0x27, 0x0a, 0xbf, 0x24, - 0xaf, 0x7d, 0xd8, 0x3e, 0xf4, 0x0e, 0x3f, 0x6d, 0xf7, 0x3a, 0x9f, 0xbd, 0xde, 0xef, 0x07, 0x2d, - 0x54, 0xf7, 0x9c, 0x4d, 0x98, 0x49, 0xa0, 0x47, 0x9f, 0x09, 0x59, 0x97, 0xdf, 0x3e, 0xf4, 0xba, - 0xad, 0xe6, 0xfb, 0x5f, 0x9a, 0xdb, 0xed, 0x4e, 0xbb, 0xf7, 0x7b, 0xfe, 0xf2, 0x0f, 0x91, 0xdf, - 0xbe, 0x24, 0x2d, 0x90, 0xa1, 0x0d, 0xdf, 0xd5, 0x8a, 0xe6, 0xe7, 0x66, 0xbb, 0xd3, 0xdc, 0xee, - 0xb4, 0xbc, 0xed, 0xe6, 0xde, 0xce, 0xbf, 0xdb, 0x3b, 0xbd, 0x5f, 0x1c, 0x4e, 0x16, 0xaf, 0xbd, - 0x5a, 0x74, 0x5b, 0x87, 0xed, 0x9d, 0x4f, 0xcd, 0x0e, 0xb5, 0x82, 0x5a, 0x71, 0xc3, 0x59, 0xec, - 0xfc, 0x5f, 0xef, 0xb0, 0xbd, 0x43, 0x55, 0xa0, 0x2a, 0x74, 0xda, 0x7b, 0xbf, 0x7a, 0x07, 0xdd, - 0xfd, 0x5e, 0xeb, 0x7d, 0xaf, 0xbd, 0xbf, 0x37, 0x43, 0x15, 0xd4, 0x0b, 0xea, 0xc5, 0x54, 0x2f, - 0x76, 0x5a, 0x9d, 0xe6, 0xef, 0xd4, 0x06, 0x6a, 0xc3, 0xb5, 0x36, 0x78, 0x9f, 0x9b, 0xdd, 0x76, - 0x73, 0xea, 0x2a, 0xa8, 0x17, 0xd4, 0x8b, 0xf6, 0xc1, 0xe7, 0x0d, 0xaf, 0xbd, 0xd7, 0x6b, 0x75, - 0x3f, 0x34, 0xdf, 0xb7, 0xbc, 0xe6, 0xce, 0x4e, 0xb7, 0x75, 0x78, 0x48, 0xcd, 0xa0, 0x66, 0x14, - 0x7c, 0xc3, 0x7b, 0xbf, 0xbf, 0x77, 0xd8, 0xeb, 0x36, 0xdb, 0x7b, 0x3d, 0x2a, 0x06, 0x15, 0xc3, - 0xdb, 0x6d, 0xfe, 0x36, 0x65, 0xa5, 0xad, 0xee, 0x67, 0x66, 0x2b, 0xa8, 0x1b, 0xf7, 0xc0, 0x8c, - 0x66, 0xaf, 0xd7, 0x6d, 0x6f, 0x7f, 0xea, 0xb5, 0xe8, 0x2e, 0xa8, 0x12, 0xde, 0xa7, 0x5e, 0xbb, - 0xd3, 0xfe, 0x7f, 0xad, 0x1d, 0x3a, 0x0a, 0x6a, 0xc5, 0xb5, 0x56, 0xb4, 0x7e, 0xeb, 0xb5, 0xf6, - 0x76, 0x5a, 0x3b, 0x5e, 0x73, 0x67, 0xb7, 0xbd, 0xe7, 0x7d, 0xec, 0xee, 0x7f, 0x3a, 0xa0, 0x5e, - 0x50, 0x2f, 0x9a, 0x3b, 0xff, 0xd7, 0xeb, 0x34, 0xf7, 0x98, 0xdc, 0xa4, 0x3a, 0x64, 0xc1, 0x63, - 0xaf, 0x20, 0x1f, 0xad, 0x1d, 0xaf, 0x73, 0x48, 0x1f, 0x41, 0xa5, 0xf0, 0xda, 0x07, 0x9f, 0xd7, - 0x98, 0xb3, 0xa0, 0x66, 0x2c, 0x6a, 0x46, 0xaf, 0xe5, 0xed, 0xb4, 0x3e, 0x34, 0x3f, 0x75, 0x7a, - 0xde, 0x6e, 0xab, 0xd7, 0x6d, 0xbf, 0xa7, 0x52, 0x50, 0x29, 0xa6, 0xf8, 0x72, 0xb7, 0xf9, 0x1b, - 0x0f, 0x44, 0xa8, 0x15, 0x77, 0x33, 0x15, 0x9d, 0x7d, 0xc6, 0x0d, 0x2a, 0xc3, 0xef, 0xd7, 0xee, - 0x81, 0x39, 0x0a, 0x6a, 0xc5, 0x0d, 0xf2, 0x31, 0x4b, 0x73, 0x33, 0x77, 0x45, 0xbd, 0x58, 0x38, - 0x33, 0xdd, 0x6b, 0xb5, 0x3f, 0xfe, 0xb2, 0xbd, 0xdf, 0x25, 0xfd, 0xa0, 0x62, 0xdc, 0xc2, 0x14, - 0x4c, 0x5c, 0x51, 0x15, 0xf2, 0x1c, 0x05, 0x7d, 0x04, 0x15, 0x63, 0x31, 0xc1, 0x2d, 0xe9, 0xbc, - 0x03, 0x5a, 0x42, 0xdc, 0xfd, 0xc0, 0xc0, 0x66, 0x24, 0xb4, 0x67, 0x4a, 0x54, 0x77, 0x0c, 0x5f, - 0x7f, 0xd9, 0xaf, 0x5f, 0x52, 0x17, 0x0c, 0xdf, 0x7e, 0xf9, 0x31, 0x13, 0xbc, 0xdb, 0x85, 0xaf, - 0xbc, 0x12, 0x2a, 0x25, 0xa6, 0xab, 0x85, 0xef, 0xbf, 0x92, 0xf7, 0x0f, 0x7e, 0x58, 0xc3, 0xb7, - 0x5e, 0xdd, 0x5b, 0x97, 0xd0, 0xa5, 0xc2, 0xf7, 0x5f, 0x41, 0xd6, 0x44, 0x54, 0x37, 0x0a, 0x35, - 0xa0, 0x6c, 0x0d, 0x10, 0xd6, 0x75, 0x42, 0x05, 0x28, 0x5b, 0x01, 0xe4, 0x75, 0x97, 0x50, 0x07, - 0x2a, 0x81, 0x01, 0x12, 0xba, 0x48, 0xf8, 0xea, 0xcb, 0x7e, 0xf5, 0x92, 0xba, 0x45, 0xf8, 0xf6, - 0xcb, 0x7e, 0xfb, 0xb2, 0xba, 0x42, 0xf8, 0xfe, 0xcb, 0x7e, 0xff, 0x22, 0xba, 0x3f, 0xf8, 0xda, - 0x4b, 0x77, 0xfa, 0x72, 0xba, 0x3c, 0xf8, 0xf2, 0x2b, 0xe0, 0xfc, 0x6b, 0xe4, 0xfc, 0x75, 0xd6, - 0x00, 0x41, 0x5d, 0x1b, 0x7c, 0xf9, 0xa5, 0xf3, 0x7d, 0x41, 0xdd, 0x19, 0x7c, 0xfb, 0x95, 0x30, - 0x7d, 0xec, 0x2e, 0x0c, 0xbe, 0xf4, 0xd2, 0x4d, 0x5e, 0x50, 0xb7, 0x05, 0xdf, 0x7e, 0xf9, 0x60, - 0x5f, 0x52, 0x57, 0x05, 0xdf, 0x7f, 0x05, 0x78, 0x5f, 0x52, 0xf7, 0x04, 0x15, 0xa0, 0x92, 0x98, - 0xcf, 0x04, 0x4f, 0xed, 0x38, 0x3e, 0x6d, 0xbe, 0xbe, 0x0a, 0xc0, 0x7c, 0x7e, 0x2d, 0x5e, 0x7b, - 0x77, 0xff, 0x53, 0xaf, 0xd5, 0xf5, 0xde, 0x37, 0x0f, 0xb8, 0xeb, 0xa4, 0xc6, 0xfa, 0xf0, 0x23, - 0x7a, 0x71, 0xf3, 0x4f, 0xec, 0x8b, 0xa3, 0x4a, 0x64, 0x2a, 0xd1, 0xec, 0x7c, 0xdc, 0xef, 0xb6, - 0x7b, 0xbf, 0xec, 0xb2, 0x35, 0xee, 0x79, 0x1f, 0xb6, 0xc6, 0xd5, 0x2a, 0xc8, 0xca, 0x70, 0xa6, - 0x7c, 0xf5, 0x75, 0x75, 0x9a, 0x7c, 0xf3, 0xcf, 0x26, 0x54, 0x07, 0xdc, 0x21, 0x48, 0x10, 0xf5, - 0x3d, 0xad, 0x38, 0xe8, 0xb6, 0x3e, 0xb4, 0x7f, 0xf3, 0x3e, 0x74, 0x9a, 0x1f, 0x39, 0x6c, 0x82, - 0xfa, 0x30, 0xd7, 0x07, 0x0e, 0x53, 0xa6, 0x36, 0xcc, 0x4f, 0x5e, 0x72, 0x08, 0x41, 0x8d, 0xa0, - 0x46, 0xfc, 0xee, 0xf5, 0x9a, 0x1f, 0x37, 0xd6, 0xa8, 0x08, 0x54, 0x84, 0xec, 0x80, 0x86, 0xae, - 0x81, 0x1a, 0x71, 0xd3, 0x35, 0x30, 0x09, 0xf7, 0xbc, 0x0f, 0x93, 0x70, 0xf5, 0xe1, 0xe3, 0x32, - 0x98, 0x17, 0xdf, 0x7b, 0x1d, 0x19, 0x16, 0xdf, 0x7a, 0x5d, 0x99, 0x14, 0xdf, 0x7c, 0xcd, 0x18, - 0x13, 0x5f, 0x78, 0x5d, 0x99, 0x11, 0xdf, 0x7c, 0xad, 0x18, 0x10, 0x26, 0xf3, 0xc1, 0x63, 0x3c, - 0x58, 0xcf, 0x09, 0x47, 0x1a, 0x0c, 0x49, 0x40, 0x9c, 0x96, 0xd3, 0x8c, 0xa2, 0x51, 0xea, 0xa7, - 0xc1, 0x28, 0x72, 0xde, 0x01, 0xb9, 0x2b, 0x27, 0x19, 0x7c, 0x51, 0xe7, 0xfe, 0xd8, 0x4f, 0xbf, - 0x4c, 0x1d, 0x54, 0x63, 0x34, 0x56, 0xd1, 0x60, 0x14, 0x9d, 0x06, 0x67, 0x6e, 0xa4, 0xd2, 0x3f, - 0x47, 0xf1, 0x1f, 0x6e, 0x10, 0x25, 0xa9, 0x1f, 0x0d, 0x54, 0xe3, 0xee, 0x5f, 0x24, 0x0b, 0x7f, - 0xd3, 0x18, 0xc7, 0xa3, 0x74, 0x34, 0x18, 0x85, 0x49, 0xf1, 0xad, 0x11, 0x24, 0x41, 0xd2, 0x08, - 0xd5, 0x85, 0x0a, 0xf3, 0xdf, 0x1a, 0x61, 0x10, 0xfd, 0xe1, 0x26, 0xa9, 0x9f, 0x2a, 0x77, 0xe8, - 0xa7, 0xfe, 0x89, 0x9f, 0xa8, 0x46, 0x98, 0x8c, 0x1b, 0x69, 0x78, 0x91, 0x4c, 0x7f, 0x69, 0xc4, - 0xa3, 0x49, 0xaa, 0x62, 0x77, 0xe0, 0x8f, 0xfd, 0x93, 0x20, 0x0c, 0xd2, 0x40, 0x25, 0x8d, 0xe2, - 0x0f, 0x97, 0x8d, 0x64, 0x72, 0x92, 0xfd, 0xaf, 0xb3, 0xdf, 0x1b, 0xd9, 0x4f, 0xc2, 0x70, 0xa3, - 0xe6, 0x55, 0x1e, 0x40, 0xdd, 0x9d, 0xf4, 0x72, 0xac, 0x60, 0x94, 0xbc, 0x88, 0xbd, 0x99, 0x54, - 0x20, 0xce, 0xe0, 0xd7, 0x20, 0x1a, 0x3a, 0xef, 0x96, 0x96, 0x41, 0xc4, 0x79, 0x9f, 0x19, 0x3c, - 0x90, 0x40, 0x07, 0xb1, 0x3a, 0x0d, 0xbe, 0x62, 0x39, 0xca, 0xb9, 0x1e, 0x8d, 0x06, 0xee, 0xd4, - 0xa5, 0x01, 0x55, 0xc4, 0x38, 0x87, 0xa3, 0x49, 0x3c, 0x50, 0x50, 0x8f, 0x6b, 0xa6, 0xe6, 0xea, - 0xf2, 0xcf, 0x51, 0x3c, 0xd5, 0x74, 0x67, 0x3c, 0x7b, 0xa3, 0x58, 0x0c, 0xc2, 0xf9, 0xc5, 0x4f, - 0x9a, 0xf1, 0xd9, 0xe4, 0x5c, 0x45, 0xa9, 0xf3, 0x6e, 0x29, 0x8d, 0x27, 0x0a, 0x4c, 0xc0, 0x1b, - 0xd2, 0x15, 0x8a, 0x47, 0x80, 0x07, 0x09, 0xf0, 0x7a, 0x48, 0x51, 0xef, 0x96, 0xc7, 0x0a, 0x95, - 0x7f, 0x1a, 0xab, 0x53, 0x24, 0x8f, 0x95, 0x07, 0xc0, 0x95, 0x4d, 0x20, 0x99, 0x0e, 0x72, 0x0c, - 0xfc, 0xfa, 0xf5, 0x0c, 0x52, 0x36, 0x32, 0xc4, 0x40, 0x5c, 0x09, 0x20, 0x81, 0x61, 0x1b, 0x9f, - 0x06, 0x32, 0x10, 0x08, 0xe9, 0x74, 0x82, 0x24, 0x6d, 0xa6, 0x69, 0x0c, 0xe1, 0x6a, 0x9c, 0xdd, - 0x20, 0x6a, 0x85, 0x6a, 0x1a, 0xa1, 0x12, 0xe7, 0xdd, 0x52, 0x34, 0x09, 0x43, 0x00, 0xfe, 0xb1, - 0xeb, 0x7f, 0xc5, 0x13, 0x6a, 0x3f, 0x1e, 0xaa, 0x58, 0x0d, 0xb7, 0x2f, 0x73, 0x91, 0x6a, 0x6d, - 0x4f, 0x60, 0xc9, 0x10, 0xf9, 0x49, 0x10, 0x80, 0xd8, 0xee, 0x24, 0x69, 0x3c, 0x19, 0xa4, 0x51, - 0x0e, 0x3a, 0xf6, 0x66, 0x4f, 0xa5, 0x9d, 0x3f, 0x14, 0xef, 0x20, 0x7f, 0x14, 0x5e, 0x3b, 0x09, - 0x12, 0xaf, 0x33, 0x7d, 0x06, 0x5e, 0x27, 0x19, 0x7b, 0xbd, 0xf0, 0xc2, 0x7b, 0x5f, 0xdc, 0x96, - 0x77, 0x38, 0xbb, 0x9d, 0x17, 0xf5, 0x8c, 0x75, 0x66, 0xae, 0x6c, 0xc8, 0x1b, 0xa0, 0x78, 0x01, - 0xc1, 0xd6, 0x6f, 0xc6, 0x4e, 0xf4, 0x6b, 0xa9, 0x01, 0x0d, 0x75, 0x26, 0xd1, 0x50, 0x9d, 0x06, - 0x91, 0x1a, 0xba, 0xf3, 0x87, 0x6d, 0x4a, 0x49, 0x0b, 0x22, 0xb7, 0x28, 0x92, 0x21, 0xcb, 0x9d, - 0xd3, 0x37, 0x43, 0x97, 0x37, 0x9d, 0xaf, 0x44, 0xc8, 0x4f, 0x02, 0xe5, 0x23, 0x51, 0xf2, 0x8f, - 0x70, 0xf9, 0x46, 0xb8, 0xfc, 0x22, 0x56, 0x3e, 0xb1, 0x5e, 0x68, 0x67, 0x27, 0x30, 0xcb, 0xd9, - 0x17, 0xa2, 0x87, 0x79, 0x7b, 0x7d, 0x28, 0xae, 0x99, 0x36, 0x5b, 0xb3, 0xe1, 0x0d, 0x26, 0xcc, - 0x21, 0x85, 0x3b, 0xc0, 0xb0, 0x87, 0x16, 0xfe, 0x60, 0xc3, 0x20, 0x6c, 0x38, 0xc4, 0x0c, 0x8b, - 0xe6, 0xd3, 0x10, 0x4b, 0x00, 0x29, 0x42, 0xd3, 0xe1, 0xf2, 0x46, 0x5a, 0xcb, 0x4f, 0x01, 0xcb, - 0x59, 0x66, 0x62, 0x61, 0xd5, 0xb3, 0xac, 0xb0, 0x9e, 0x05, 0x3e, 0x80, 0x02, 0x07, 0x52, 0xd4, - 0x80, 0x0a, 0x1f, 0x58, 0xe1, 0x03, 0x2c, 0x76, 0xa0, 0xc5, 0x08, 0xb8, 0x20, 0x81, 0x17, 0x2e, - 0x00, 0x17, 0x02, 0x85, 0x2a, 0x3a, 0xcb, 0x52, 0xf4, 0x60, 0x5e, 0xe1, 0xba, 0xcc, 0x26, 0x93, - 0x0f, 0xcc, 0xe2, 0xb0, 0x4a, 0x4d, 0x61, 0x43, 0x34, 0x72, 0xa8, 0x16, 0x10, 0xb2, 0xd1, 0x43, - 0xb7, 0x98, 0x10, 0x2e, 0x26, 0x94, 0xcb, 0x08, 0xe9, 0x58, 0xa1, 0x1d, 0x2c, 0xc4, 0x17, 0xaf, - 0x10, 0xae, 0x74, 0x75, 0xc1, 0xe3, 0x4d, 0x82, 0x28, 0x7d, 0x8b, 0xe8, 0xef, 0xf2, 0xf0, 0xba, - 0x0e, 0x28, 0x5a, 0xd7, 0x8f, 0xce, 0x14, 0xec, 0x48, 0x4c, 0xdc, 0x8e, 0x5d, 0x67, 0x37, 0x88, - 0x60, 0x03, 0x18, 0x38, 0xae, 0x5b, 0x10, 0x33, 0x1b, 0xcc, 0x2a, 0x40, 0xce, 0x0f, 0xb1, 0x3f, - 0x48, 0x83, 0x51, 0xb4, 0x13, 0x9c, 0x05, 0x59, 0xd9, 0xe8, 0x32, 0xdb, 0xf0, 0x9f, 0x62, 0x3a, - 0xfe, 0x57, 0x9a, 0x4e, 0xc9, 0xa6, 0xb3, 0xba, 0xbe, 0x4e, 0xe3, 0xb1, 0x13, 0x08, 0xe2, 0x4a, - 0xd5, 0xe7, 0x50, 0x03, 0x74, 0xe7, 0x8b, 0xd5, 0x67, 0xbd, 0x00, 0xd9, 0x81, 0xfa, 0xad, 0xc1, - 0x3d, 0x3f, 0x93, 0x61, 0xcf, 0xd1, 0x33, 0x26, 0xc3, 0x9e, 0x6e, 0x0e, 0x4c, 0x86, 0x95, 0x2c, - 0x28, 0x93, 0x61, 0xd2, 0xe9, 0x0c, 0x93, 0x61, 0xcf, 0x0e, 0xaf, 0x4c, 0x86, 0x3d, 0xf6, 0xc3, - 0x64, 0x58, 0xad, 0x18, 0x3d, 0x93, 0x61, 0xb6, 0x46, 0x8f, 0xdb, 0xa6, 0xc3, 0x64, 0x58, 0xe9, - 0xa6, 0xc3, 0x64, 0x98, 0xb5, 0x40, 0x10, 0x57, 0x2a, 0x26, 0xc3, 0xe0, 0x9d, 0xaf, 0x73, 0x91, - 0x3b, 0x08, 0xd0, 0x6c, 0xd8, 0x4c, 0x3c, 0xa6, 0xc3, 0x7e, 0x44, 0x2c, 0xa6, 0xc3, 0x9e, 0xa1, - 0x68, 0x4c, 0x87, 0x3d, 0xdd, 0x1c, 0x98, 0x0e, 0x2b, 0x59, 0x50, 0xa6, 0xc3, 0xa4, 0x13, 0x1a, - 0x01, 0xe9, 0xb0, 0x93, 0x20, 0xf2, 0xe3, 0x4b, 0xe0, 0x7c, 0xd8, 0x16, 0xe1, 0x23, 0xb0, 0x24, - 0x1c, 0x10, 0xff, 0x6d, 0xb9, 0x04, 0x4e, 0x47, 0x5a, 0x98, 0x93, 0xb3, 0xf0, 0x37, 0x1c, 0x1a, - 0x0f, 0x66, 0x02, 0x1c, 0x1a, 0x2f, 0x8c, 0xad, 0xb1, 0xc9, 0x56, 0x36, 0x2b, 0x63, 0x93, 0xad, - 0xad, 0xec, 0x8b, 0x4d, 0xb6, 0x72, 0x40, 0x1f, 0x87, 0xc6, 0x3f, 0x3e, 0x00, 0x72, 0x68, 0xbc, - 0x18, 0x5c, 0xc9, 0xa1, 0xf1, 0x1c, 0x1a, 0xbf, 0x28, 0x0d, 0x87, 0xc6, 0xff, 0xa8, 0x50, 0x1c, - 0x1a, 0x8f, 0x9b, 0x20, 0xb1, 0x33, 0x31, 0x62, 0xcd, 0x20, 0xf9, 0x4f, 0xf3, 0x1b, 0xe3, 0x44, - 0xf9, 0xda, 0xb8, 0x0a, 0x4e, 0x94, 0x2f, 0xd1, 0x35, 0xd4, 0x66, 0xb6, 0xfc, 0x0b, 0x8b, 0x2d, - 0x63, 0x0e, 0x42, 0xe7, 0xba, 0xe4, 0x46, 0x93, 0xf3, 0x13, 0x15, 0x6b, 0xf6, 0xf2, 0x66, 0xf1, - 0x27, 0x04, 0xde, 0x84, 0xc0, 0x97, 0x66, 0xf1, 0xa4, 0x6e, 0xd5, 0x37, 0x1c, 0x0c, 0x04, 0x06, - 0x01, 0x03, 0xe0, 0xaf, 0x14, 0xb0, 0xa7, 0x37, 0x54, 0xe9, 0x0b, 0x18, 0x7a, 0xae, 0xa4, 0xc9, - 0x2e, 0x4d, 0xd9, 0xa3, 0x14, 0x3b, 0xd4, 0xa3, 0xc4, 0xd5, 0xab, 0x94, 0x06, 0x75, 0xd2, 0x3c, - 0x93, 0xd9, 0xc8, 0xcc, 0x65, 0xcd, 0x33, 0x95, 0xaf, 0x8f, 0x73, 0x57, 0x35, 0x5d, 0xd0, 0xc0, - 0x71, 0xad, 0xc1, 0xe3, 0x58, 0x53, 0xc7, 0xad, 0xc6, 0x8f, 0x53, 0x8d, 0x1f, 0x97, 0x9a, 0x3d, - 0x0e, 0xb5, 0x2b, 0x84, 0xeb, 0x9e, 0x09, 0x6c, 0xa6, 0x2a, 0xc8, 0x64, 0xf5, 0x8f, 0xa1, 0x2a, - 0x1f, 0x63, 0xd5, 0x3c, 0x26, 0xab, 0x76, 0x00, 0xaa, 0x73, 0x4c, 0x57, 0xe1, 0xc0, 0x54, 0xdb, - 0xc0, 0x54, 0xd5, 0x60, 0x54, 0xcf, 0xd8, 0x9d, 0x94, 0x34, 0x56, 0xf5, 0x52, 0x58, 0x7c, 0x30, - 0x54, 0x51, 0x1a, 0xa4, 0x97, 0x66, 0x2a, 0x5c, 0x0a, 0x6c, 0x6f, 0xa0, 0x97, 0xd9, 0x69, 0xe7, - 0xb7, 0xbe, 0xed, 0x27, 0xca, 0xfc, 0x4a, 0xd3, 0xf6, 0x61, 0xfb, 0xd0, 0xeb, 0x75, 0x3e, 0x7b, - 0xbd, 0xdf, 0x0f, 0x5a, 0xa6, 0x7c, 0x4f, 0xd6, 0x5c, 0x9e, 0x18, 0x9d, 0x0e, 0x02, 0xb2, 0x89, - 0xaf, 0xf5, 0x5b, 0xaf, 0xb5, 0xb7, 0xd3, 0xda, 0xf1, 0xda, 0x87, 0x5e, 0xb7, 0xd5, 0x7c, 0xff, - 0x4b, 0x73, 0xbb, 0xdd, 0x69, 0xf7, 0x7e, 0x37, 0xb8, 0x24, 0xf2, 0xa7, 0xba, 0xbf, 0x93, 0xdd, - 0x4f, 0x9d, 0x5e, 0xdb, 0xeb, 0xed, 0x1f, 0xec, 0x77, 0xf6, 0x3f, 0xf2, 0x4d, 0x98, 0x74, 0x56, - 0x07, 0x9f, 0xd7, 0xbc, 0xf6, 0x5e, 0xaf, 0xd5, 0xfd, 0xd0, 0x7c, 0xdf, 0xf2, 0x9a, 0x3b, 0x3b, - 0xdd, 0xd6, 0xe1, 0x61, 0xeb, 0x90, 0xef, 0xc4, 0xe8, 0x3b, 0xd9, 0xa0, 0xab, 0x42, 0x71, 0x55, - 0x3d, 0x8f, 0xef, 0x03, 0xe8, 0x7d, 0x34, 0x3f, 0xf5, 0x7e, 0x69, 0xed, 0xf5, 0xda, 0xef, 0x9b, - 0xbd, 0xf6, 0xfe, 0x1e, 0xdf, 0x84, 0xb9, 0x37, 0xd1, 0x39, 0x3c, 0xf0, 0xb6, 0x3f, 0x7d, 0xf8, - 0xd0, 0xea, 0x7a, 0x87, 0xed, 0xff, 0xd7, 0xe2, 0xab, 0x30, 0x68, 0x14, 0xdd, 0x56, 0x93, 0xb1, - 0x1b, 0xe1, 0x4d, 0xec, 0xfc, 0xbe, 0xd7, 0xdc, 0x6d, 0xbf, 0xf7, 0xf6, 0x9a, 0xbb, 0xb4, 0x08, - 0xd3, 0xb8, 0xf6, 0xb0, 0xdb, 0xf9, 0xc8, 0x97, 0x80, 0x40, 0xbd, 0xa7, 0x6f, 0x83, 0x08, 0x0a, - 0xe3, 0xad, 0x74, 0xf7, 0x3f, 0xf5, 0x5a, 0x5d, 0xef, 0x7d, 0xf3, 0x80, 0x2f, 0x03, 0x84, 0x5e, - 0xd0, 0x38, 0x60, 0xe2, 0x46, 0xfb, 0xd0, 0xdb, 0x6b, 0xb5, 0x3f, 0xfe, 0xb2, 0xbd, 0xdf, 0x25, - 0x90, 0x32, 0x9d, 0x04, 0x61, 0x62, 0x0a, 0x0f, 0x54, 0xf5, 0x5a, 0x5e, 0x1e, 0x41, 0xda, 0x3b, - 0x7c, 0x19, 0x86, 0x0d, 0x84, 0x2f, 0x03, 0xe3, 0x65, 0xec, 0x75, 0x0e, 0xf8, 0x02, 0x8c, 0x5a, - 0xc3, 0xde, 0x61, 0xaf, 0xb9, 0xf7, 0xbe, 0x45, 0x3b, 0x30, 0xfb, 0x1a, 0xae, 0xd1, 0x93, 0xd7, - 0xec, 0xf5, 0xba, 0xed, 0xed, 0x4f, 0x3d, 0xe6, 0x41, 0x0c, 0xf3, 0x0b, 0xbe, 0x13, 0x40, 0x18, - 0xd5, 0xfa, 0xad, 0xd7, 0xea, 0xee, 0x35, 0x3b, 0x64, 0x7e, 0x70, 0x27, 0xe1, 0x7c, 0x2b, 0x38, - 0x6f, 0xe5, 0xe0, 0x53, 0xf7, 0x63, 0xcb, 0xdb, 0x6f, 0xf3, 0x1d, 0x18, 0x66, 0x1a, 0xcc, 0xa5, - 0x9b, 0x46, 0x56, 0xed, 0x43, 0xaf, 0xd9, 0x69, 0x37, 0x0f, 0x09, 0x71, 0xcd, 0x23, 0x2a, 0x93, - 0x85, 0x07, 0x46, 0xae, 0xdc, 0xb7, 0xbd, 0x5e, 0x9c, 0xed, 0x53, 0x4f, 0xb2, 0x0a, 0x76, 0x40, - 0x5f, 0x77, 0x40, 0x6b, 0x1c, 0xc0, 0x6d, 0x47, 0xcf, 0xb3, 0xd6, 0x56, 0x38, 0x13, 0x2d, 0x70, - 0x9a, 0x5b, 0xdf, 0xb4, 0xb7, 0xbc, 0xb1, 0xe3, 0x59, 0xcf, 0x75, 0xd9, 0xf1, 0xcc, 0x8e, 0xe7, - 0xd2, 0x1e, 0xa5, 0xf6, 0x56, 0x35, 0x83, 0x03, 0x98, 0x4d, 0x0c, 0x58, 0x36, 0x39, 0x40, 0x59, - 0x03, 0x2e, 0x78, 0x21, 0xd8, 0x06, 0x34, 0x0e, 0x30, 0xd6, 0x3b, 0x20, 0xce, 0xc8, 0x40, 0x38, - 0x23, 0x03, 0xe0, 0xf4, 0x0e, 0x7c, 0xab, 0x5a, 0x1f, 0x35, 0xd3, 0x27, 0x44, 0xda, 0xe4, 0x68, - 0x19, 0xae, 0xf4, 0xc4, 0x89, 0x6c, 0xd5, 0x7a, 0xed, 0xea, 0x7c, 0x69, 0x35, 0x3f, 0xb9, 0x22, - 0x6b, 0xd0, 0x65, 0x05, 0x68, 0xda, 0x5f, 0x8d, 0x72, 0x95, 0xff, 0xea, 0x2b, 0x78, 0xed, 0xce, - 0xf5, 0x6c, 0xde, 0xec, 0x49, 0x54, 0xf5, 0xda, 0x0b, 0xe8, 0x79, 0xe7, 0x7a, 0x15, 0x29, 0x72, - 0xb5, 0x03, 0xce, 0x2a, 0xa7, 0xf7, 0x3a, 0xe8, 0xbc, 0x46, 0xfa, 0xae, 0x8b, 0xae, 0x6b, 0xa7, - 0xe7, 0xda, 0xe9, 0xb8, 0x5e, 0xfa, 0x2d, 0x2b, 0x78, 0x55, 0x3d, 0x40, 0xec, 0xb6, 0xeb, 0xaa, - 0x5e, 0x99, 0xef, 0xf5, 0x98, 0x55, 0x2b, 0xb4, 0x9e, 0xc9, 0x90, 0xda, 0xf2, 0xa3, 0x3a, 0xf3, - 0xa2, 0x06, 0xf2, 0xa1, 0xba, 0xf3, 0xa0, 0xc6, 0xf2, 0x9f, 0xc6, 0xf2, 0x9e, 0x66, 0xf2, 0x9d, - 0xb2, 0x73, 0x3b, 0xba, 0x26, 0x39, 0x72, 0x54, 0xaf, 0x5c, 0xc7, 0x6c, 0xc2, 0x41, 0x1b, 0x74, - 0xd4, 0xa6, 0x1c, 0xb6, 0x71, 0xc7, 0x6d, 0xdc, 0x81, 0x9b, 0x75, 0xe4, 0x7a, 0x1c, 0xba, 0x26, - 0xc7, 0xae, 0xdd, 0xc1, 0x17, 0x17, 0x0c, 0x55, 0x74, 0x96, 0xe5, 0x8a, 0x0c, 0x0d, 0xeb, 0xcd, - 0xaf, 0xcf, 0x71, 0xbd, 0xb6, 0x85, 0x02, 0x80, 0x90, 0x60, 0x3a, 0x34, 0xc0, 0x84, 0x08, 0x98, - 0x50, 0x81, 0x11, 0x32, 0xf4, 0x86, 0x0e, 0xcd, 0x21, 0xa4, 0x78, 0xc4, 0xe6, 0xc7, 0xf5, 0x4e, - 0x82, 0x28, 0x7d, 0x6b, 0x70, 0x50, 0xaf, 0x89, 0x39, 0xbd, 0x5d, 0x3f, 0x3a, 0x53, 0xc6, 0x66, - 0xd2, 0x1a, 0x5c, 0x9e, 0xb8, 0x1b, 0x98, 0x5f, 0xf0, 0x6a, 0x28, 0xae, 0x2f, 0x88, 0x91, 0x4d, - 0x26, 0x06, 0x90, 0xe3, 0x43, 0xec, 0x0f, 0xd2, 0x60, 0x14, 0xed, 0x04, 0x67, 0x41, 0x56, 0xbf, - 0xb0, 0x5c, 0xc7, 0xa6, 0x0a, 0x67, 0xd7, 0xff, 0x4a, 0xd5, 0xbc, 0xa3, 0x9a, 0xab, 0xeb, 0xeb, - 0x54, 0x4e, 0x33, 0x40, 0xc0, 0xdc, 0x55, 0xfb, 0xb6, 0xf6, 0x9b, 0xfc, 0xc4, 0xdd, 0x36, 0x24, - 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, - 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0x24, 0xcb, 0xc6, 0xc8, 0xf2, 0x45, 0x6e, - 0x40, 0x86, 0xd8, 0xf2, 0xec, 0xf2, 0xa4, 0xcb, 0xa4, 0xcb, 0xa4, 0xcb, 0xa4, 0xcb, 0xa4, 0xcb, - 0x16, 0xd1, 0xe5, 0x93, 0x20, 0xf2, 0xe3, 0x4b, 0x83, 0x7c, 0x79, 0x8b, 0xb3, 0x9b, 0xf0, 0x15, - 0x96, 0xb3, 0x9b, 0xc6, 0x8d, 0xdb, 0x6d, 0x81, 0xb7, 0xff, 0xc8, 0x79, 0x4e, 0x8f, 0x7d, 0xb1, - 0x9c, 0xe7, 0x24, 0x1c, 0xb7, 0xb2, 0x2c, 0xbe, 0x1e, 0xb8, 0x94, 0x65, 0xf1, 0x16, 0x85, 0x71, - 0xce, 0x73, 0xaa, 0xda, 0x29, 0x72, 0x9e, 0x13, 0xa8, 0x0d, 0x70, 0x9e, 0x53, 0xb9, 0x17, 0xe5, - 0x3c, 0x27, 0x59, 0x94, 0x4a, 0x0a, 0x95, 0xc2, 0x9d, 0xf1, 0xf4, 0x69, 0x2e, 0x26, 0x87, 0x3d, - 0xe9, 0x31, 0x95, 0x3a, 0x0e, 0x7b, 0xba, 0x33, 0x7c, 0x48, 0xca, 0xd8, 0xa7, 0x17, 0xc0, 0xea, - 0x34, 0x8f, 0xfc, 0x61, 0x32, 0x76, 0x83, 0x61, 0xc9, 0xfe, 0xa5, 0xda, 0x58, 0xaf, 0x25, 0xb6, - 0x6b, 0x89, 0xe5, 0xd5, 0xc6, 0xee, 0xb2, 0x35, 0xa6, 0x62, 0xc7, 0x03, 0xe4, 0x70, 0x2a, 0x08, - 0xb7, 0x4f, 0x0b, 0xaf, 0xe5, 0xba, 0xba, 0xf2, 0x1c, 0x52, 0x39, 0x3f, 0xa9, 0x24, 0x05, 0xad, - 0x4a, 0x31, 0x41, 0x14, 0xb2, 0x1c, 0x1d, 0x78, 0xfe, 0x1b, 0x2b, 0xe1, 0x6d, 0x39, 0xf1, 0x68, - 0x92, 0x2a, 0x77, 0x1c, 0xab, 0x53, 0x15, 0xab, 0xa8, 0xc4, 0xcc, 0x61, 0x91, 0x52, 0x59, 0xb8, - 0x42, 0x49, 0x3a, 0x56, 0xee, 0x3c, 0x97, 0xd2, 0x13, 0xd3, 0x55, 0x24, 0x9e, 0x2b, 0x4c, 0x2c, - 0x57, 0x95, 0x38, 0xae, 0x3c, 0x31, 0x5c, 0x79, 0xe2, 0xb7, 0xda, 0xc4, 0x2e, 0x96, 0xdf, 0x2e, - 0x7b, 0x1e, 0x89, 0x33, 0x98, 0x5b, 0x55, 0xc9, 0x5a, 0x35, 0x37, 0x84, 0xfc, 0xe7, 0x97, 0x8d, - 0xc4, 0x2b, 0x19, 0x15, 0x55, 0xd9, 0xd9, 0x57, 0x95, 0x67, 0x5c, 0x1a, 0xce, 0xb2, 0xaa, 0x3e, - 0xb3, 0xd2, 0x76, 0x36, 0xa5, 0xed, 0x0c, 0x4a, 0xcf, 0x59, 0x13, 0x36, 0x5b, 0xae, 0x6a, 0x74, - 0x92, 0xa3, 0xbe, 0xa6, 0x2a, 0x8e, 0xfc, 0xd0, 0xad, 0x0c, 0x1a, 0x3d, 0x68, 0x63, 0x0f, 0x5f, - 0xba, 0xda, 0xe9, 0xce, 0xcb, 0x9c, 0xee, 0x6c, 0xd2, 0x01, 0xea, 0x72, 0x84, 0xda, 0x1d, 0xa2, - 0x76, 0xc7, 0xa8, 0xd7, 0x41, 0x56, 0x97, 0xa8, 0x5c, 0xaa, 0x30, 0x5b, 0x5d, 0xf9, 0xe1, 0xba, - 0xb6, 0x1e, 0x47, 0x0d, 0xbd, 0x8c, 0x9a, 0x7a, 0x16, 0xf5, 0x1c, 0xbf, 0x6a, 0x9c, 0x6e, 0xac, - 0xb7, 0xa8, 0x6c, 0xde, 0xb8, 0xa5, 0x6b, 0xb6, 0xab, 0x81, 0xf6, 0xac, 0x2b, 0x3d, 0x87, 0xe5, - 0xda, 0x55, 0xe4, 0x8d, 0x66, 0x15, 0x59, 0xb6, 0x58, 0x45, 0x84, 0x1e, 0xf6, 0xf6, 0x6b, 0xbc, - 0x34, 0x26, 0x88, 0x8c, 0x91, 0x8d, 0x87, 0x2f, 0x4d, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, - 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0x41, 0xb2, 0xa1, 0x99, - 0x6c, 0xb0, 0xf0, 0x4c, 0x6f, 0x9d, 0xcf, 0x5d, 0x16, 0xd4, 0xc8, 0x8f, 0x96, 0x51, 0xeb, 0xbd, - 0x4a, 0x2c, 0xfd, 0xa8, 0x66, 0xfb, 0x53, 0xa5, 0x5b, 0x9e, 0x2a, 0x3f, 0xa2, 0x5f, 0xe5, 0x11, - 0xbd, 0x46, 0xb2, 0xc8, 0x23, 0x7a, 0x1b, 0xa3, 0x04, 0x8f, 0xe8, 0x99, 0x35, 0x63, 0xd6, 0x8c, - 0x59, 0x33, 0x66, 0xcd, 0x98, 0x35, 0x63, 0xd6, 0x8c, 0x59, 0x33, 0x66, 0xcd, 0x98, 0x35, 0x63, - 0xd6, 0x8c, 0x59, 0xb3, 0x0a, 0xb3, 0x66, 0x3c, 0xa2, 0x27, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, - 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0x20, 0xd9, 0xe0, - 0x11, 0x7d, 0xd9, 0x0a, 0x8d, 0x70, 0x44, 0x5f, 0xc1, 0x38, 0x6b, 0x4e, 0x64, 0x11, 0xa7, 0x06, - 0x4e, 0xa9, 0xa5, 0x10, 0x8f, 0x9d, 0x09, 0xd4, 0x9d, 0x4a, 0x73, 0x70, 0x2d, 0x8c, 0x45, 0xb3, - 0x61, 0xca, 0xad, 0x0b, 0xa9, 0xa4, 0x1e, 0xa4, 0xb2, 0x29, 0x30, 0xab, 0x9c, 0x02, 0x23, 0x29, - 0xc3, 0xc0, 0x29, 0x30, 0xc8, 0x53, 0x60, 0xfc, 0x49, 0xfa, 0x45, 0x45, 0x69, 0x30, 0xc8, 0x02, - 0x90, 0x3b, 0xf8, 0xa2, 0x06, 0x7f, 0x54, 0x57, 0x6f, 0x76, 0xef, 0xd5, 0xca, 0x2e, 0x6d, 0x51, - 0xa7, 0xfe, 0x24, 0xcc, 0x94, 0x61, 0xaa, 0x6b, 0x15, 0x55, 0xb7, 0x2d, 0x73, 0x00, 0x0d, 0xab, - 0xdb, 0x90, 0xbc, 0xa0, 0x1e, 0x6f, 0x28, 0x83, 0x60, 0x55, 0x96, 0x37, 0xbd, 0x5e, 0x7a, 0x35, - 0x1a, 0x85, 0xca, 0x8f, 0xaa, 0xd0, 0xf8, 0x39, 0x6c, 0x5a, 0xa9, 0x41, 0x79, 0xb3, 0x8a, 0xfc, - 0x93, 0x50, 0x0d, 0xab, 0x0b, 0x38, 0xf3, 0x0b, 0x54, 0x17, 0x63, 0x4e, 0xfd, 0x30, 0x61, 0x90, - 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x41, 0x0c, 0x32, 0x59, 0x6a, 0xca, 0x8d, 0x26, - 0xe7, 0x27, 0x2a, 0xae, 0x2e, 0xd2, 0xdc, 0xba, 0x0a, 0xc3, 0x01, 0xc3, 0x01, 0xc3, 0x01, 0xc3, - 0x81, 0x14, 0x0f, 0xb3, 0x54, 0x6d, 0x89, 0x46, 0xc5, 0xa5, 0x19, 0x15, 0xd6, 0xc7, 0xe8, 0x28, - 0xc5, 0xd0, 0x54, 0x82, 0xa1, 0xab, 0xf4, 0x42, 0xe7, 0x79, 0x7a, 0x85, 0xa5, 0x16, 0x5a, 0x4a, - 0x2c, 0x74, 0xbf, 0xfa, 0x55, 0x8b, 0x5e, 0xbd, 0x90, 0x52, 0x84, 0x7e, 0x0d, 0x10, 0xf6, 0xb9, - 0x4a, 0xe3, 0x60, 0xe0, 0x26, 0xe9, 0x65, 0x58, 0x61, 0xb3, 0xfa, 0xad, 0xab, 0x10, 0x61, 0x13, - 0x61, 0x13, 0x61, 0x13, 0x61, 0x4b, 0xf1, 0x30, 0xb7, 0xb2, 0x2e, 0x6b, 0x15, 0xfc, 0xec, 0x56, - 0x34, 0x39, 0x9f, 0x3e, 0x9d, 0x2b, 0xd6, 0x5c, 0xfd, 0x88, 0x39, 0xd9, 0x53, 0x73, 0x55, 0x62, - 0xa5, 0x1d, 0x48, 0x6d, 0xd3, 0x65, 0x92, 0xaa, 0x73, 0x77, 0x46, 0x77, 0x07, 0xa3, 0x49, 0x94, - 0xaa, 0x38, 0xa9, 0xa0, 0xd6, 0xe9, 0xde, 0xcb, 0x70, 0x03, 0x16, 0x20, 0x6e, 0x60, 0xed, 0x93, - 0x19, 0x5c, 0x60, 0x79, 0xed, 0x13, 0x87, 0x6b, 0x2d, 0x3a, 0x18, 0x0e, 0xd7, 0x22, 0x51, 0x21, - 0x51, 0xc1, 0x72, 0x54, 0xc5, 0x0f, 0xf6, 0x27, 0xe9, 0x17, 0xf7, 0xd4, 0x0f, 0xc2, 0xa4, 0xfa, - 0x06, 0xf7, 0x1b, 0xd7, 0x62, 0x47, 0xbb, 0x6e, 0xd7, 0xa6, 0xd1, 0xc5, 0xe9, 0x72, 0x75, 0xda, - 0x5d, 0x9e, 0x76, 0xd7, 0xa7, 0xd7, 0x05, 0x56, 0xe3, 0x0a, 0x2b, 0x72, 0x89, 0xd5, 0xe7, 0x70, - 0x16, 0x2c, 0x26, 0x67, 0x74, 0x6f, 0x56, 0x35, 0x74, 0xb5, 0x6f, 0xb2, 0xab, 0xfd, 0xfb, 0x37, - 0x52, 0x87, 0xae, 0xf6, 0x65, 0x76, 0xb5, 0x3f, 0x4b, 0x45, 0x0c, 0x74, 0xb5, 0xeb, 0x56, 0x91, - 0xb5, 0xd5, 0xad, 0xb5, 0xad, 0x8d, 0xcd, 0xd5, 0xad, 0x75, 0xb6, 0xb7, 0xa3, 0xfd, 0xf4, 0x3a, - 0xcf, 0xd2, 0xca, 0xf0, 0x7e, 0x7a, 0x39, 0x56, 0x5a, 0x09, 0xc6, 0x8d, 0x0b, 0x92, 0x65, 0x90, - 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, 0x65, 0x90, - 0x65, 0x90, 0x65, 0x58, 0xc6, 0x32, 0x06, 0xa3, 0x38, 0x9e, 0x8c, 0x53, 0x35, 0x74, 0xc3, 0x64, - 0xac, 0x81, 0x64, 0xdc, 0xb9, 0x1e, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, - 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x86, 0x65, 0x1c, 0x63, 0xe8, - 0xa7, 0xfe, 0x89, 0x9f, 0x28, 0x77, 0x74, 0xa1, 0xe2, 0x70, 0xe4, 0x0f, 0x35, 0xf0, 0x8c, 0x7b, - 0xae, 0x49, 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, - 0xae, 0x41, 0xae, 0x41, 0xae, 0x41, 0xae, 0x61, 0x19, 0xd7, 0x50, 0x5f, 0x07, 0x4a, 0x0d, 0xdd, - 0x73, 0xff, 0xab, 0x9b, 0xa8, 0xff, 0xb8, 0xd1, 0xe4, 0x3c, 0xd1, 0xb1, 0xe8, 0x7c, 0xf1, 0xa2, - 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, - 0x64, 0x1b, 0x64, 0x1b, 0x64, 0x1b, 0x96, 0xb1, 0x8d, 0x60, 0xe8, 0x86, 0x2a, 0x72, 0xcf, 0x83, - 0xe4, 0xdc, 0x4f, 0x07, 0x5f, 0x34, 0x6c, 0x39, 0xbf, 0x73, 0x41, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, - 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, - 0x0c, 0xcb, 0x58, 0x46, 0x98, 0x8c, 0x5d, 0x15, 0xc7, 0xa3, 0x58, 0xc3, 0x51, 0xc6, 0x8d, 0x6b, - 0x91, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, - 0x90, 0x5b, 0x90, 0x5b, 0x90, 0x5b, 0x58, 0xc6, 0x2d, 0xce, 0xfd, 0x68, 0xe2, 0x87, 0xae, 0x3f, - 0x1c, 0xc6, 0x2a, 0x49, 0xdc, 0x61, 0x3c, 0x1a, 0xbb, 0xa7, 0xf1, 0xe8, 0xdc, 0xf5, 0x63, 0xe5, - 0x6b, 0xe0, 0x1b, 0xdf, 0xb9, 0x3e, 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, - 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, 0x39, 0x08, 0x39, 0x88, 0x75, 0x1c, 0xe4, 0x6b, - 0x06, 0xf7, 0x0b, 0x16, 0x30, 0x2f, 0x6f, 0x52, 0x5a, 0x08, 0xc8, 0xc3, 0x17, 0x27, 0xfb, 0x20, - 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, 0xfb, 0x20, - 0xfb, 0x20, 0xfb, 0xb0, 0x8c, 0x7d, 0x8c, 0xfe, 0x8c, 0xdc, 0x30, 0x19, 0xbb, 0xe3, 0x49, 0x7c, - 0xa6, 0x83, 0x70, 0xdc, 0xb9, 0x1e, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, - 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x06, 0x39, 0x86, 0x65, 0x1c, 0x63, 0xec, - 0xc7, 0xa9, 0x3b, 0xf8, 0x32, 0x8d, 0x36, 0x1a, 0x18, 0xc6, 0xad, 0xab, 0x91, 0x5f, 0x90, 0x5f, - 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, 0x90, 0x5f, - 0x90, 0x5f, 0x58, 0xc6, 0x2f, 0xf2, 0xa9, 0xb3, 0x6e, 0xf2, 0x47, 0xa0, 0x63, 0x89, 0xdf, 0xed, - 0xcb, 0x91, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, - 0x61, 0x90, 0x61, 0x90, 0x61, 0x90, 0x61, 0xd8, 0xc6, 0x30, 0xc6, 0xa7, 0x6e, 0x3c, 0x89, 0x74, - 0x90, 0x8b, 0xf9, 0x95, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, - 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0xc8, 0x2b, 0x4c, 0xf2, 0x8a, 0x17, 0xc0, 0x96, - 0xed, 0x34, 0xa3, 0x68, 0x94, 0xfa, 0x53, 0x95, 0xab, 0xc4, 0x98, 0x9d, 0x64, 0xf0, 0x45, 0x9d, - 0xfb, 0x63, 0x3f, 0xfd, 0x32, 0x8d, 0xf3, 0x8d, 0xd1, 0x58, 0x45, 0x83, 0x0c, 0xeb, 0xbb, 0x91, - 0x4a, 0xff, 0x1c, 0xc5, 0x7f, 0xb8, 0x41, 0x94, 0xa4, 0x7e, 0x34, 0x50, 0x8d, 0xbb, 0x7f, 0x91, - 0x2c, 0xfc, 0x4d, 0x63, 0x1c, 0x8f, 0xd2, 0xd1, 0x60, 0x14, 0x26, 0xc5, 0xb7, 0xc6, 0x14, 0xb0, - 0x35, 0x42, 0x75, 0xa1, 0xc2, 0xfc, 0xb7, 0x46, 0x72, 0x99, 0xa4, 0xea, 0xdc, 0xcd, 0xfe, 0xe0, - 0xe6, 0xc8, 0x22, 0x69, 0x24, 0xa9, 0x9f, 0xaa, 0x72, 0x91, 0x5d, 0x79, 0x6f, 0xb6, 0x9c, 0x9f, - 0x54, 0x92, 0x6e, 0x54, 0xa5, 0x13, 0x30, 0xba, 0x50, 0x22, 0xc8, 0x74, 0x92, 0x34, 0x9e, 0x0c, - 0xd2, 0x28, 0xc7, 0xb1, 0x7b, 0x33, 0x21, 0xdb, 0xb9, 0x8c, 0xde, 0x41, 0x2e, 0x99, 0xd7, 0x4e, - 0x82, 0xc4, 0xeb, 0x4c, 0xa5, 0xf0, 0x0e, 0x33, 0x91, 0xb2, 0xef, 0xef, 0xe7, 0x02, 0xbd, 0xc0, - 0x50, 0xa2, 0x12, 0x14, 0xc8, 0x49, 0x63, 0xff, 0xf4, 0x34, 0x18, 0xb8, 0x2a, 0x3a, 0x0b, 0x22, - 0xa5, 0xe2, 0x20, 0x3a, 0x2b, 0x4d, 0x8b, 0x0a, 0xbe, 0x70, 0xdf, 0x45, 0x4a, 0x52, 0xfe, 0x1c, - 0x69, 0xac, 0x94, 0xf4, 0xe3, 0xca, 0x4e, 0x6c, 0x54, 0x91, 0xc8, 0xa8, 0x30, 0x71, 0x51, 0x55, - 0xa2, 0xa2, 0xf2, 0xc4, 0x44, 0xe5, 0x89, 0x88, 0x6a, 0x13, 0x0f, 0x58, 0x01, 0x65, 0x27, 0x88, - 0xcb, 0x55, 0xd8, 0xc1, 0xdc, 0xaa, 0x4a, 0xd6, 0xaa, 0xeb, 0x7c, 0x44, 0xf6, 0xf3, 0x4b, 0x7e, - 0xe3, 0xe5, 0xba, 0x96, 0xca, 0x5c, 0x4c, 0x95, 0xae, 0x46, 0x83, 0xcb, 0xa9, 0xda, 0xf5, 0x68, - 0x73, 0x41, 0xda, 0x5c, 0x91, 0x1e, 0x97, 0x24, 0x83, 0x0f, 0x95, 0xed, 0xaa, 0x8a, 0x1f, 0xac, - 0x22, 0xff, 0x24, 0x54, 0x43, 0x0d, 0x6b, 0xd5, 0xf3, 0x0b, 0x55, 0xa4, 0x23, 0x3b, 0xea, 0xd4, - 0x9f, 0x84, 0x99, 0x8a, 0x9c, 0xfa, 0x61, 0xa2, 0x78, 0xe0, 0xa4, 0xdd, 0x79, 0x6a, 0x74, 0xa2, - 0xba, 0x9c, 0xa9, 0x76, 0xa7, 0xaa, 0xdd, 0xb9, 0xea, 0x75, 0xb2, 0xd5, 0xa6, 0xdf, 0xe4, 0x1f, - 0x38, 0x9d, 0x8c, 0x46, 0xa1, 0xf2, 0x23, 0x0d, 0xc7, 0x4d, 0x2b, 0x2b, 0x75, 0xde, 0xf4, 0x3b, - 0xbe, 0x58, 0x73, 0xe3, 0xd1, 0x24, 0x55, 0xb1, 0x1b, 0x68, 0x88, 0x7d, 0x77, 0xae, 0xc7, 0xd0, - 0xc4, 0xd0, 0xc4, 0xd0, 0xc4, 0xd0, 0x24, 0x2a, 0x34, 0x65, 0x3e, 0x6c, 0x3e, 0x56, 0x37, 0x1a, - 0xb9, 0xff, 0x1d, 0x45, 0x4a, 0x47, 0x9c, 0x7a, 0x5b, 0xe1, 0x35, 0x0e, 0xfc, 0x34, 0x55, 0x71, - 0x54, 0x79, 0x65, 0x84, 0xf3, 0xf2, 0xe5, 0xd1, 0xb2, 0xbb, 0xd5, 0xff, 0xfb, 0x68, 0xc5, 0xdd, - 0xea, 0xcf, 0xbe, 0xae, 0x64, 0xbf, 0xcd, 0xbe, 0xaf, 0x1e, 0x2d, 0xbb, 0x6b, 0xf3, 0xef, 0xeb, - 0x47, 0xcb, 0xee, 0x7a, 0xff, 0xd5, 0xf1, 0xf1, 0xeb, 0x57, 0x7f, 0xbd, 0xb9, 0x7a, 0xfc, 0x3f, - 0x7c, 0xf9, 0x8f, 0xa3, 0xe3, 0xe3, 0xf1, 0x5f, 0x7b, 0x57, 0xd3, 0x5f, 0x3b, 0x57, 0xfd, 0x7f, - 0xbd, 0xfa, 0xb9, 0x6a, 0x8f, 0x30, 0x15, 0xe0, 0xf8, 0xf8, 0x75, 0xff, 0x9f, 0x0e, 0x8f, 0x55, - 0xab, 0x81, 0x2b, 0x1b, 0x9a, 0xe1, 0xca, 0x06, 0xe1, 0x0a, 0xe1, 0x0a, 0xe1, 0x0a, 0xe1, 0x8a, - 0x60, 0xb8, 0xb2, 0x41, 0xb8, 0xf2, 0x64, 0xb8, 0xf2, 0xee, 0xef, 0x69, 0x4c, 0xf7, 0xdd, 0xd3, - 0xa6, 0xfb, 0xa1, 0xff, 0xd7, 0xf2, 0x4f, 0x6b, 0x57, 0xaf, 0xde, 0xbd, 0x7a, 0x79, 0xf7, 0xef, - 0xde, 0xbd, 0xfa, 0x6b, 0xf9, 0xa7, 0xf5, 0xab, 0x97, 0x2f, 0xef, 0xf9, 0x2f, 0x3f, 0xdf, 0xf7, - 0x33, 0x5e, 0xfd, 0xfd, 0xf2, 0xe5, 0xcb, 0x1c, 0xa8, 0xdc, 0x02, 0x2f, 0x47, 0xcb, 0x2b, 0xfd, - 0x9f, 0xb3, 0xaf, 0xb3, 0x5f, 0x0b, 0xf8, 0xf3, 0x43, 0xff, 0xf3, 0x2b, 0x13, 0xa0, 0xe7, 0xe5, - 0xcb, 0xa3, 0xff, 0x79, 0xd7, 0xff, 0xd7, 0xbb, 0x57, 0x7f, 0x6d, 0x5c, 0xcd, 0xbf, 0x67, 0xbf, - 0xbe, 0xfa, 0xfb, 0xe5, 0xeb, 0x7f, 0x1e, 0x1f, 0xbf, 0x7e, 0xfd, 0xcf, 0x57, 0xb3, 0x1b, 0xce, - 0xff, 0xbf, 0x7f, 0xce, 0xfe, 0xeb, 0xcf, 0xef, 0xde, 0x2d, 0xfc, 0xd5, 0xab, 0x97, 0xff, 0x78, - 0xad, 0x09, 0xa7, 0xcd, 0xde, 0xc7, 0x3b, 0xc2, 0xb5, 0x0a, 0x7e, 0x22, 0xab, 0xe0, 0xbe, 0x5b, - 0xf9, 0x74, 0x4f, 0x89, 0x4c, 0x23, 0x3f, 0xd6, 0x46, 0x2d, 0x82, 0x2b, 0xb5, 0x2c, 0xcb, 0x4f, - 0x55, 0x75, 0xf5, 0x01, 0xb3, 0x1f, 0x2f, 0xac, 0x3c, 0x60, 0x95, 0xe5, 0x01, 0x1a, 0x71, 0x38, - 0xcb, 0x03, 0x6c, 0x0c, 0x14, 0x2c, 0x0f, 0xf8, 0xde, 0x03, 0x62, 0x79, 0x00, 0x93, 0x1a, 0x4c, - 0x6a, 0x30, 0xa9, 0x21, 0x3a, 0xa9, 0xc1, 0xf2, 0x00, 0x1d, 0x2f, 0x95, 0xe5, 0x01, 0x0c, 0x4d, - 0x0c, 0x4d, 0x0c, 0x4d, 0x0c, 0x4d, 0x8f, 0xf5, 0x61, 0xcc, 0xb7, 0x3f, 0xed, 0x42, 0x2c, 0x0f, - 0x78, 0xee, 0x87, 0xe5, 0x01, 0x2c, 0x0f, 0x20, 0x5c, 0x21, 0x5c, 0x21, 0x5c, 0x21, 0x5c, 0xf9, - 0x61, 0x1f, 0x46, 0xb8, 0xf2, 0x54, 0xb8, 0xc2, 0xf2, 0x80, 0x1f, 0xc1, 0x74, 0x2c, 0x0f, 0x10, - 0x0f, 0xd7, 0x58, 0x1e, 0x60, 0xbe, 0x3c, 0x80, 0x23, 0x72, 0x4c, 0x6b, 0x04, 0x88, 0x26, 0x98, - 0x1d, 0x90, 0xd3, 0x9b, 0x09, 0xd4, 0xba, 0x21, 0x0f, 0xca, 0x7c, 0x9c, 0x17, 0x06, 0x75, 0x6f, - 0x8a, 0xd8, 0xa7, 0x8f, 0x70, 0x36, 0xcb, 0x28, 0x9a, 0x9c, 0x9f, 0xa8, 0xf8, 0x99, 0x2f, 0xca, - 0xe9, 0x04, 0x49, 0xda, 0x4c, 0xd3, 0x72, 0xce, 0xb4, 0x9d, 0xdd, 0x20, 0x6a, 0x85, 0x6a, 0x0a, - 0xb9, 0x13, 0xe7, 0xdd, 0x52, 0x34, 0x09, 0xc3, 0x12, 0xe6, 0x09, 0xed, 0xfa, 0x5f, 0xcb, 0xff, - 0xa1, 0xfb, 0xf1, 0x50, 0xc5, 0x6a, 0xb8, 0x7d, 0x99, 0xff, 0x48, 0xa3, 0xef, 0xb5, 0x64, 0x5f, - 0x62, 0xc0, 0x87, 0x94, 0xe0, 0x2f, 0x1e, 0xef, 0x27, 0x9e, 0xe7, 0x14, 0x9e, 0x6e, 0xca, 0x4f, - 0xfb, 0x97, 0x4f, 0x54, 0x92, 0xb2, 0x94, 0x43, 0xab, 0x52, 0x3c, 0xed, 0xcd, 0x3c, 0xfe, 0xb9, - 0x3e, 0xee, 0x5f, 0x3c, 0xf2, 0x0d, 0x3c, 0xf7, 0xc9, 0xeb, 0x79, 0xe2, 0x4f, 0xb0, 0xbc, 0xc7, - 0x58, 0xda, 0xe3, 0xde, 0xe4, 0x8f, 0xbf, 0x8f, 0x47, 0xbc, 0x0b, 0x27, 0x1c, 0x0d, 0xfc, 0xd0, - 0xf5, 0xcf, 0xce, 0x62, 0x75, 0xe6, 0xa7, 0x4f, 0xd8, 0x04, 0x5c, 0xe4, 0x22, 0x16, 0x7e, 0xd2, - 0x23, 0x35, 0xe2, 0x69, 0x05, 0x9a, 0x4f, 0xce, 0x80, 0x3e, 0x27, 0xb3, 0x79, 0x33, 0x63, 0x19, - 0x8e, 0x06, 0x6e, 0x9c, 0x3e, 0x45, 0x53, 0x9e, 0x99, 0x8b, 0x2c, 0x2d, 0xc7, 0x58, 0x5a, 0xee, - 0xf0, 0x6e, 0x4e, 0x30, 0x7f, 0x34, 0x60, 0x9e, 0xe7, 0xa9, 0x45, 0x86, 0x4e, 0xa1, 0xda, 0x4f, - 0x7f, 0x65, 0x73, 0xbd, 0xb9, 0xfe, 0x51, 0x4f, 0x7c, 0xd2, 0xcf, 0xab, 0x66, 0x7e, 0xf6, 0xb1, - 0x41, 0x19, 0xc7, 0x02, 0xa5, 0x18, 0x51, 0x59, 0xc6, 0x54, 0xba, 0x51, 0x55, 0x96, 0x98, 0x2f, - 0xcb, 0xc8, 0xcc, 0x00, 0xae, 0xe7, 0x56, 0xf8, 0x96, 0x35, 0x9b, 0xb0, 0xdc, 0x59, 0x84, 0x25, - 0x35, 0x17, 0x94, 0x76, 0x9a, 0x57, 0xe6, 0xa9, 0x5d, 0xa9, 0x66, 0x5a, 0xb6, 0xb9, 0x56, 0x66, - 0xb6, 0x95, 0x99, 0x6f, 0x55, 0x66, 0x8c, 0x91, 0x44, 0x29, 0xab, 0x80, 0xdf, 0x19, 0xaa, 0x64, - 0x10, 0x07, 0xe3, 0x52, 0x53, 0x80, 0x85, 0x26, 0xdf, 0xfc, 0xe1, 0xe5, 0xce, 0x35, 0x5e, 0xae, - 0xe9, 0x5c, 0xe3, 0xd2, 0x1c, 0x43, 0x55, 0x0e, 0xa2, 0x72, 0x47, 0x51, 0xb9, 0xc3, 0xa8, 0xda, - 0x71, 0x94, 0x97, 0xc7, 0x5d, 0x2a, 0xf1, 0x24, 0xa0, 0xf4, 0xa3, 0xf4, 0x1b, 0x4d, 0x86, 0x65, - 0xe7, 0xe2, 0x8b, 0xc3, 0x71, 0x8b, 0xe6, 0xcd, 0x0f, 0x83, 0x64, 0xe0, 0xc7, 0xc3, 0x0a, 0x7c, - 0x70, 0xfe, 0x83, 0xcb, 0x9a, 0x81, 0x5d, 0x4d, 0x63, 0x14, 0xfd, 0x3a, 0xfd, 0x3a, 0xfd, 0xba, - 0x28, 0xbf, 0x5e, 0x7e, 0x73, 0x51, 0xc9, 0xcd, 0x44, 0x18, 0x8e, 0x7d, 0x5c, 0xae, 0xe3, 0x28, - 0x1e, 0x7f, 0xb9, 0xec, 0x8b, 0xee, 0x97, 0xee, 0x97, 0xee, 0x57, 0x92, 0xfb, 0x0d, 0xc6, 0x6e, - 0xe9, 0x0a, 0x50, 0x38, 0xe0, 0xad, 0x12, 0x7f, 0x66, 0xfe, 0x08, 0xca, 0xad, 0x31, 0xad, 0x70, - 0x56, 0x47, 0xd6, 0x99, 0x54, 0x59, 0x2d, 0x79, 0x95, 0x95, 0xbd, 0x95, 0x57, 0xf4, 0x3a, 0xff, - 0xa3, 0xb3, 0xf3, 0xa8, 0x91, 0x5f, 0xec, 0xd5, 0xdf, 0x2f, 0x8f, 0x56, 0xdc, 0xd5, 0xfe, 0xfc, - 0x0f, 0x6f, 0x8e, 0x96, 0xdd, 0xd5, 0xfe, 0xab, 0x57, 0xff, 0xa7, 0xfc, 0x7a, 0xd3, 0x3e, 0x72, - 0xfd, 0x66, 0xb5, 0x3a, 0xbf, 0x41, 0x9d, 0xff, 0xa6, 0xce, 0xcf, 0x0b, 0xcf, 0x57, 0x66, 0x85, - 0xea, 0x9b, 0x57, 0x77, 0xff, 0xf2, 0xef, 0xfb, 0xfe, 0xb7, 0x95, 0x9f, 0x36, 0xaf, 0xde, 0x3d, - 0xf0, 0x5f, 0x36, 0xae, 0xde, 0xfd, 0xe0, 0xcf, 0x58, 0xbf, 0x7a, 0xb9, 0xf0, 0xbf, 0x4e, 0xff, - 0x7e, 0xf5, 0xa1, 0x7f, 0xb0, 0xf6, 0xc0, 0x3f, 0x78, 0xf3, 0xd0, 0x3f, 0x78, 0xf3, 0xc0, 0x3f, - 0x78, 0x50, 0xa4, 0xd5, 0x07, 0xfe, 0xc1, 0xfa, 0xd5, 0xdf, 0x0b, 0xff, 0xff, 0xcb, 0xfb, 0xff, - 0xd7, 0x8d, 0xab, 0x57, 0x7f, 0x3f, 0xf4, 0xdf, 0x36, 0xaf, 0xfe, 0x7e, 0xf7, 0xea, 0x55, 0xe3, - 0xe5, 0xca, 0xd4, 0x31, 0xbc, 0x9d, 0xf9, 0x8a, 0x95, 0xfe, 0x82, 0x0b, 0x99, 0xb9, 0x04, 0x7c, - 0x47, 0xf0, 0x02, 0x4b, 0x2e, 0x0c, 0x66, 0x94, 0xa8, 0xd4, 0x4d, 0xfd, 0x0a, 0xd6, 0x2a, 0xce, - 0x7f, 0x30, 0xb9, 0x11, 0xb9, 0x11, 0xb9, 0x51, 0x0d, 0xb9, 0x51, 0xea, 0x9f, 0xb9, 0xe9, 0xf4, - 0xa7, 0x93, 0x1a, 0x95, 0xfa, 0x5c, 0x27, 0x41, 0x94, 0xbe, 0x59, 0xad, 0x10, 0x21, 0x6e, 0x56, - 0xf0, 0xa3, 0xbb, 0x7e, 0x74, 0xa6, 0x2a, 0x83, 0x87, 0x15, 0xf6, 0x9e, 0xee, 0x06, 0x91, 0x86, - 0xfe, 0xe9, 0x4a, 0xdb, 0xe6, 0x8b, 0xcb, 0x7c, 0xf6, 0xc3, 0x89, 0xd2, 0x70, 0x9d, 0x0f, 0xb1, - 0x3f, 0x48, 0x83, 0x51, 0xb4, 0x13, 0x9c, 0x05, 0x59, 0xa7, 0xc5, 0x72, 0x75, 0xad, 0xd2, 0x15, - 0xb6, 0xe6, 0xee, 0xfa, 0x5f, 0xad, 0x7b, 0xf5, 0x6b, 0xab, 0x5b, 0x6b, 0x5b, 0x1b, 0x9b, 0xab, - 0x5b, 0xeb, 0x16, 0xe9, 0x80, 0x90, 0xbe, 0xd4, 0xba, 0xe6, 0x35, 0xbe, 0xa8, 0xaf, 0x6e, 0xe9, - 0xf5, 0x07, 0x76, 0xa4, 0x35, 0x6e, 0xd1, 0xfa, 0xbb, 0x6c, 0x7e, 0xf5, 0xea, 0xd5, 0x3f, 0x5f, - 0xfd, 0x4c, 0x5a, 0xad, 0x9d, 0x56, 0xb3, 0x83, 0xef, 0x31, 0xad, 0x43, 0x77, 0x3b, 0x61, 0x1a, - 0xc5, 0xd7, 0x52, 0x66, 0xc4, 0x3f, 0xa3, 0xb9, 0xee, 0x19, 0x05, 0xf6, 0x25, 0x1d, 0x18, 0x97, - 0x7b, 0x50, 0x5c, 0x12, 0x58, 0x60, 0xe1, 0x35, 0x5c, 0x72, 0x83, 0x85, 0xd7, 0x66, 0x92, 0x16, - 0xd7, 0xed, 0x7c, 0xca, 0x3f, 0x8d, 0xd5, 0x69, 0x19, 0x3a, 0x37, 0x07, 0x24, 0x25, 0xd0, 0xe8, - 0x29, 0x00, 0xc9, 0xdc, 0xf6, 0xeb, 0xd7, 0xb9, 0x2f, 0x6d, 0xe4, 0x6a, 0x27, 0xd0, 0xa5, 0x96, - 0xb3, 0x46, 0xa3, 0xd4, 0xb5, 0x19, 0xa5, 0x77, 0xb2, 0xac, 0xd2, 0xa1, 0xd2, 0xa1, 0x0a, 0x74, - 0xa8, 0xec, 0x64, 0xe1, 0xb1, 0x52, 0x39, 0x3f, 0x9c, 0xc7, 0x4a, 0x9a, 0x1d, 0x47, 0xb9, 0x3c, - 0x9c, 0x9d, 0x2c, 0x00, 0xf9, 0x07, 0x76, 0xb2, 0xd0, 0xaf, 0xd3, 0xaf, 0xd3, 0xaf, 0xd7, 0xca, - 0xaf, 0xb3, 0x93, 0xe5, 0x87, 0xee, 0x89, 0x9d, 0x2c, 0x74, 0xbf, 0x74, 0xbf, 0x74, 0xbf, 0x65, - 0x6b, 0x2d, 0x3b, 0x59, 0xca, 0xfd, 0xb0, 0x93, 0xe5, 0x07, 0x2e, 0xc0, 0x4e, 0x16, 0x03, 0x4e, - 0x44, 0x8f, 0xce, 0xb3, 0x93, 0xe5, 0xdb, 0x3a, 0xcf, 0x4e, 0x16, 0x76, 0xb2, 0x98, 0xc5, 0x24, - 0x4b, 0xec, 0x64, 0xf9, 0xc1, 0x8c, 0x23, 0x3b, 0x59, 0xc8, 0x8d, 0xc8, 0x8d, 0xea, 0xcb, 0x8d, - 0xd8, 0xc9, 0x52, 0x0d, 0x4c, 0x64, 0x27, 0x8b, 0x86, 0xa7, 0x5d, 0x08, 0xce, 0x4e, 0x96, 0xc7, - 0x5f, 0x87, 0x9d, 0x2c, 0xb0, 0xaf, 0x9e, 0x9d, 0x2c, 0xe6, 0x7e, 0x2a, 0x3b, 0x59, 0x98, 0xd6, - 0xb8, 0x73, 0x01, 0x76, 0xb2, 0x20, 0xd2, 0x6a, 0x76, 0xb2, 0x94, 0xd4, 0xc9, 0x52, 0xc2, 0x3a, - 0x43, 0x29, 0x5b, 0xa2, 0xf2, 0xd5, 0x70, 0xcf, 0x5b, 0xb2, 0x52, 0xca, 0x32, 0xb8, 0x52, 0x97, - 0xc0, 0x95, 0xba, 0xfc, 0xad, 0x9c, 0xa5, 0x6f, 0xd6, 0xef, 0xf1, 0x7a, 0xd8, 0xa0, 0x9c, 0x67, - 0x35, 0x12, 0xfc, 0xd0, 0xce, 0xa9, 0x66, 0x71, 0x2d, 0xae, 0x10, 0x33, 0xf1, 0xb2, 0x11, 0xf6, - 0x7d, 0xe5, 0x4a, 0xf2, 0xc4, 0x1d, 0x5f, 0xd9, 0xbf, 0x7e, 0xda, 0x5e, 0xaf, 0x65, 0x61, 0x7b, - 0xbd, 0x22, 0x95, 0x4e, 0xdf, 0x2d, 0x17, 0x7b, 0xdd, 0x93, 0x36, 0x9d, 0x3f, 0x1b, 0x30, 0x87, - 0xf0, 0xe4, 0x7c, 0x67, 0x09, 0x4d, 0x6f, 0xcf, 0x69, 0x72, 0xbb, 0xa7, 0xa9, 0x2d, 0x33, 0x34, - 0x00, 0x77, 0x31, 0x4a, 0xc6, 0xa7, 0x17, 0xab, 0x4f, 0x77, 0x18, 0xf9, 0xbf, 0xaf, 0xc7, 0x2a, - 0xc0, 0x27, 0xdd, 0x6c, 0x3d, 0x3c, 0x46, 0xfe, 0x68, 0xac, 0x59, 0x05, 0x18, 0x2b, 0x3f, 0x29, - 0x61, 0x0d, 0x60, 0xf6, 0x63, 0xb8, 0x02, 0xf0, 0x59, 0xc6, 0x53, 0x96, 0x11, 0x95, 0x6e, 0x4c, - 0xa5, 0x1b, 0x55, 0xd9, 0xc6, 0x65, 0x86, 0x4d, 0x3f, 0x7b, 0x05, 0xe0, 0xd4, 0x6a, 0xca, 0xeb, - 0x9a, 0xce, 0x7e, 0x1a, 0xd7, 0xff, 0x69, 0x31, 0xd1, 0xb2, 0x4d, 0xb5, 0x32, 0x93, 0xad, 0xcc, - 0x74, 0xab, 0x32, 0x61, 0x8c, 0xfc, 0x66, 0x69, 0x4d, 0xd3, 0x25, 0x6d, 0xf9, 0x5c, 0x50, 0xe2, - 0x52, 0xb6, 0x7d, 0x96, 0x6c, 0xf6, 0xa5, 0x9b, 0x7f, 0x15, 0x6e, 0xa0, 0x52, 0x77, 0x50, 0x95, - 0x5b, 0xa8, 0xdc, 0x3d, 0x54, 0xee, 0x26, 0xaa, 0x76, 0x17, 0xe5, 0xb8, 0x8d, 0x92, 0xdc, 0x47, - 0xe9, 0x6e, 0xa4, 0xf8, 0x81, 0xc1, 0x50, 0x45, 0x69, 0x70, 0x1a, 0xa8, 0xb8, 0x7c, 0xdd, 0x2a, - 0x2a, 0xbc, 0xaf, 0xaf, 0x51, 0xf2, 0xbb, 0xaf, 0xa6, 0x8c, 0xa0, 0x74, 0x77, 0x53, 0xa5, 0xdb, - 0xd1, 0xe2, 0x7e, 0xaa, 0x76, 0x43, 0xda, 0xdc, 0x91, 0x36, 0xb7, 0xa4, 0xcb, 0x3d, 0x95, 0xeb, - 0xa6, 0x4a, 0x76, 0x57, 0xcf, 0x4f, 0x3f, 0x3e, 0x2a, 0x9b, 0xe6, 0x4e, 0x09, 0x8b, 0x5b, 0x99, - 0xb7, 0x59, 0xaa, 0xa8, 0x14, 0xf3, 0xee, 0x53, 0x12, 0x57, 0x2c, 0x58, 0x79, 0x89, 0xe6, 0xdd, - 0xa7, 0xbf, 0x59, 0xe1, 0x25, 0xaa, 0x2d, 0xd9, 0xac, 0xfe, 0x6d, 0x14, 0x37, 0xa2, 0xa3, 0x84, - 0xb3, 0xe2, 0x40, 0xfc, 0xe0, 0xe5, 0x34, 0x95, 0x74, 0x16, 0xd7, 0xd3, 0x58, 0xd6, 0x57, 0x91, - 0x0b, 0xbe, 0x5f, 0x45, 0x34, 0x94, 0x7a, 0x9a, 0x56, 0x11, 0x5d, 0xa5, 0x9f, 0x46, 0x75, 0xe5, - 0x85, 0xcc, 0x9f, 0xde, 0x7f, 0x21, 0xc8, 0x72, 0x34, 0x04, 0xd0, 0xe1, 0x28, 0x4d, 0xd5, 0xd0, - 0xfd, 0xcf, 0xc4, 0x1f, 0x6a, 0x88, 0xa2, 0x55, 0xd4, 0x8e, 0x5e, 0x33, 0x9d, 0x8a, 0x6b, 0x48, - 0x8b, 0x0b, 0xe9, 0xec, 0x0a, 0x77, 0xa4, 0x59, 0x42, 0x6d, 0x8a, 0x68, 0xb1, 0xb2, 0x34, 0x25, - 0x17, 0xb3, 0x16, 0x3f, 0xb7, 0xf2, 0xb2, 0xac, 0x19, 0x3b, 0x6d, 0x64, 0x87, 0xaf, 0xd9, 0xaf, - 0xa5, 0x4c, 0x65, 0x2f, 0xef, 0x25, 0x95, 0xd1, 0xfa, 0x5b, 0x41, 0xc6, 0xab, 0xba, 0x4c, 0x57, - 0xdd, 0x1b, 0x80, 0x99, 0x48, 0xd7, 0x96, 0xb1, 0xaa, 0x57, 0x22, 0xbd, 0xba, 0x06, 0xe0, 0xf2, - 0xa6, 0xc3, 0x2f, 0x00, 0xb6, 0x12, 0xf3, 0x1e, 0xf7, 0x14, 0xd6, 0xdd, 0x70, 0x5e, 0x36, 0xb9, - 0xfb, 0x28, 0x55, 0xf1, 0xa9, 0x3f, 0x50, 0x49, 0x05, 0xee, 0xfe, 0xfa, 0x67, 0xf3, 0xdc, 0x94, - 0xee, 0x9e, 0xee, 0x1e, 0xd6, 0xdd, 0x97, 0x7f, 0x6e, 0x3a, 0x37, 0xfd, 0x0a, 0x8f, 0x4d, 0x8b, - 0x4b, 0x54, 0x73, 0x6a, 0xba, 0xc2, 0x53, 0x53, 0x9e, 0x9a, 0x62, 0x39, 0x25, 0x5d, 0xce, 0xa9, - 0x9a, 0x04, 0x49, 0xd9, 0xa7, 0xa6, 0x65, 0x3b, 0xad, 0xe2, 0x07, 0x97, 0x5c, 0x43, 0xf6, 0xa0, - 0x51, 0x95, 0x5a, 0x53, 0xa6, 0xc9, 0x8d, 0x55, 0xee, 0xce, 0x74, 0xb8, 0x35, 0xad, 0xee, 0x4d, - 0x97, 0x9b, 0xd3, 0xee, 0xee, 0xb4, 0xbb, 0x3d, 0xdd, 0xee, 0xaf, 0x1a, 0x37, 0x58, 0x91, 0x3b, - 0xac, 0xdc, 0x2d, 0x16, 0x17, 0xf0, 0x27, 0xe9, 0x97, 0x29, 0x15, 0x1e, 0x64, 0x29, 0xdc, 0xd9, - 0x34, 0xaf, 0xca, 0x95, 0xba, 0x28, 0xba, 0xbf, 0xe7, 0xe2, 0x3f, 0x59, 0x31, 0x8c, 0xa7, 0x6a, - 0x87, 0xaa, 0xd3, 0xb1, 0x1a, 0x71, 0xb0, 0xba, 0x1d, 0xad, 0x31, 0x87, 0x6b, 0xcc, 0xf1, 0x9a, - 0x72, 0xc0, 0xd5, 0x3a, 0xe2, 0x8a, 0x1d, 0x72, 0xf1, 0xd0, 0x7a, 0x3a, 0x1c, 0xe5, 0x52, 0xa5, - 0xfb, 0x9d, 0xbe, 0x0b, 0x36, 0xdf, 0x0a, 0x2d, 0xb5, 0xa8, 0x72, 0x62, 0xdc, 0x97, 0x60, 0xa8, - 0xe6, 0x27, 0x90, 0xfa, 0x02, 0xe5, 0xad, 0xab, 0x32, 0x42, 0x32, 0x42, 0x32, 0x42, 0x32, 0x42, - 0x32, 0x42, 0xde, 0xb1, 0xba, 0xf2, 0x37, 0x65, 0x7d, 0x37, 0x44, 0xae, 0x30, 0x44, 0x2e, 0x3c, - 0x9b, 0x60, 0xa8, 0x2f, 0x30, 0x06, 0x43, 0x86, 0x43, 0x86, 0x43, 0x86, 0x43, 0x86, 0x43, 0x86, - 0x43, 0x12, 0x46, 0xc4, 0x68, 0x78, 0xae, 0xd2, 0x38, 0x18, 0xe8, 0x8b, 0x88, 0xf9, 0xf5, 0x18, - 0x15, 0x19, 0x15, 0x19, 0x15, 0x19, 0x15, 0x19, 0x15, 0xef, 0x5a, 0x5d, 0x32, 0x3e, 0x75, 0xb5, - 0x38, 0xc9, 0x9b, 0x8e, 0x72, 0x43, 0xc3, 0xa5, 0xf4, 0x74, 0xf3, 0xce, 0x3f, 0x7a, 0xfc, 0xc8, - 0x92, 0xee, 0xee, 0x5e, 0xcd, 0x11, 0x6e, 0xe1, 0xb2, 0x9a, 0xbb, 0x7d, 0x8b, 0xeb, 0x1a, 0xe8, - 0xe4, 0xd4, 0xe4, 0x63, 0x6e, 0xab, 0x92, 0xc6, 0x2e, 0x60, 0x14, 0x55, 0xda, 0x58, 0x5f, 0x7f, - 0xb3, 0x5e, 0x23, 0x75, 0x7a, 0x61, 0xc7, 0x55, 0xfa, 0x24, 0x53, 0x8b, 0x64, 0x6a, 0x12, 0xa6, - 0xc1, 0x6c, 0xf4, 0x89, 0x3f, 0xfc, 0x5f, 0x7f, 0xa0, 0xa2, 0xc1, 0xa5, 0x3b, 0x8e, 0x83, 0x73, - 0x3f, 0xbe, 0xd4, 0x48, 0xb1, 0xbe, 0x25, 0x45, 0xc5, 0x80, 0x69, 0x47, 0x9d, 0xfa, 0x93, 0x30, - 0x03, 0x99, 0x53, 0x6c, 0x4b, 0x9e, 0x47, 0x9e, 0x47, 0x9e, 0x47, 0x9e, 0x47, 0x9e, 0x77, 0xd7, - 0xea, 0x78, 0x18, 0x08, 0x11, 0xb1, 0xe7, 0x9d, 0xf8, 0x7a, 0x0b, 0x4b, 0x6f, 0x5d, 0x95, 0x21, - 0x92, 0x21, 0x92, 0x21, 0x92, 0x21, 0x92, 0x21, 0xf2, 0x8e, 0xd5, 0xcd, 0x9a, 0xe0, 0xd3, 0xcb, - 0x72, 0x3b, 0xf8, 0xbf, 0x1b, 0x26, 0x35, 0xe4, 0x22, 0x9c, 0x76, 0x7e, 0x6b, 0xdb, 0x7e, 0xa2, - 0xd1, 0xd2, 0xe7, 0x0f, 0x76, 0xff, 0xf0, 0xe0, 0x83, 0xb7, 0xd7, 0xea, 0xfd, 0x7b, 0xbf, 0xfb, - 0xab, 0xd7, 0xfb, 0xfd, 0xa0, 0xe5, 0xe8, 0x1c, 0x04, 0x97, 0x68, 0xcb, 0x01, 0x2f, 0x69, 0xcd, - 0x03, 0xdf, 0x7a, 0xc4, 0x07, 0xfb, 0xed, 0xbd, 0x9e, 0xd7, 0xdb, 0xf7, 0x66, 0x5f, 0xf2, 0x87, - 0xed, 0xd8, 0x98, 0xb4, 0x34, 0xf4, 0x84, 0xf7, 0xf6, 0xf7, 0xbc, 0xed, 0xee, 0x7e, 0x73, 0xe7, - 0x7d, 0xf3, 0x90, 0x0f, 0xb8, 0x82, 0x07, 0x6c, 0xf2, 0xe1, 0x6a, 0xb9, 0x52, 0x9f, 0xc3, 0x20, - 0x0d, 0x30, 0xae, 0xb1, 0x9f, 0x24, 0xc1, 0x85, 0x46, 0xb2, 0x35, 0xbf, 0x20, 0x79, 0x16, 0x79, - 0x16, 0x79, 0x16, 0x79, 0x16, 0x79, 0xd6, 0x1d, 0xab, 0x63, 0x2a, 0x12, 0x23, 0x30, 0xc6, 0xc1, - 0x28, 0x0e, 0x52, 0x8d, 0x07, 0x85, 0xc5, 0x15, 0x19, 0x1a, 0x19, 0x1a, 0x19, 0x1a, 0x19, 0x1a, - 0x19, 0x1a, 0xef, 0x58, 0xdd, 0x24, 0x88, 0xd2, 0xb7, 0x1a, 0x03, 0xe3, 0x3a, 0xeb, 0x30, 0x9f, - 0x7e, 0x63, 0xac, 0xc3, 0xac, 0xfe, 0xba, 0xac, 0xc3, 0xb4, 0x56, 0x95, 0x56, 0xd7, 0x59, 0x85, - 0x29, 0xee, 0x2a, 0x62, 0xab, 0x30, 0x45, 0x8d, 0x39, 0xab, 0x68, 0x89, 0xc4, 0xc2, 0x75, 0x0c, - 0x2c, 0x95, 0xb8, 0x9e, 0x9b, 0x7d, 0xfd, 0xb5, 0xd4, 0x4d, 0x13, 0xd5, 0xbf, 0xf9, 0x0a, 0xde, - 0x7a, 0x95, 0x43, 0x02, 0xaa, 0x1f, 0x0e, 0x50, 0x71, 0x24, 0xe1, 0x38, 0x4e, 0x54, 0x42, 0xcd, - 0x71, 0x9c, 0xf5, 0x8e, 0x53, 0x95, 0x13, 0xe4, 0x0a, 0x37, 0x6b, 0x3c, 0xe4, 0xc4, 0x56, 0x36, - 0xab, 0x5d, 0x8d, 0xb6, 0xb0, 0x79, 0xa3, 0xd6, 0x61, 0x6f, 0x0e, 0x01, 0xdc, 0xe9, 0xcb, 0xad, - 0x3e, 0x02, 0xde, 0xba, 0x1c, 0x67, 0x53, 0x23, 0x04, 0xc3, 0xe0, 0x94, 0x81, 0x50, 0x60, 0x20, - 0x0c, 0x4e, 0x19, 0x04, 0x67, 0x0f, 0xa6, 0xf2, 0x99, 0xd4, 0x15, 0x8f, 0xec, 0x5f, 0x30, 0xca, - 0x4a, 0x47, 0xf7, 0x6b, 0x72, 0x93, 0xda, 0xdc, 0xa5, 0x4e, 0xb7, 0xa9, 0xdd, 0x7d, 0xea, 0x76, - 0xa3, 0xc6, 0xdc, 0xa9, 0x31, 0xb7, 0x6a, 0xc2, 0xbd, 0x56, 0x9f, 0x6d, 0x5b, 0xd2, 0x70, 0x38, - 0x57, 0xb5, 0xdb, 0x5d, 0xc4, 0xa8, 0xfa, 0x0b, 0xe7, 0xab, 0x5a, 0x03, 0x65, 0x28, 0x91, 0x63, - 0xcc, 0x39, 0x9b, 0x70, 0xd2, 0xc6, 0x9c, 0xb5, 0x29, 0xa7, 0x6d, 0xdc, 0x79, 0x1b, 0x77, 0xe2, - 0x26, 0x9d, 0xb9, 0x1e, 0xa7, 0xae, 0xc9, 0xb9, 0xeb, 0x4b, 0x30, 0x19, 0x4c, 0x38, 0x99, 0x48, - 0x40, 0x3d, 0x98, 0x90, 0x6a, 0x64, 0x6a, 0xfa, 0xee, 0xc6, 0xe9, 0xcc, 0x9d, 0xbf, 0xc8, 0xff, - 0x1c, 0x4d, 0x1f, 0x8f, 0x25, 0x67, 0x99, 0x1a, 0x94, 0xd8, 0x49, 0x26, 0x27, 0x06, 0xf1, 0xc3, - 0xad, 0xab, 0x13, 0x42, 0x10, 0x42, 0x10, 0x42, 0x10, 0x42, 0x10, 0x42, 0x10, 0x42, 0x18, 0x81, - 0x10, 0x47, 0xd7, 0x10, 0xe2, 0xff, 0x37, 0x98, 0xc4, 0xb1, 0x8a, 0xd2, 0x97, 0xaf, 0x1a, 0xaf, - 0x5f, 0x5f, 0x17, 0x82, 0xf4, 0xf3, 0x7f, 0x72, 0x33, 0x6e, 0x25, 0xf7, 0xfc, 0x5d, 0xf1, 0x93, - 0x87, 0xea, 0xab, 0x35, 0x68, 0x44, 0x74, 0x36, 0xa6, 0xf5, 0x35, 0xd5, 0xd3, 0x67, 0xaf, 0x3f, - 0x01, 0x39, 0x1a, 0xb8, 0xea, 0x6b, 0xfa, 0x2e, 0x55, 0xa1, 0x3a, 0x57, 0x69, 0x7c, 0xe9, 0x8e, - 0x22, 0x77, 0xf0, 0x25, 0x2b, 0x6a, 0x36, 0x92, 0x94, 0x3c, 0xf5, 0xc3, 0xc4, 0x44, 0x56, 0x52, - 0x7a, 0x42, 0xb2, 0x5f, 0xf5, 0x01, 0x99, 0x9e, 0xa2, 0xbd, 0x6b, 0x6a, 0x01, 0x52, 0xbc, 0x77, - 0xeb, 0x50, 0xbd, 0xd2, 0x52, 0xbe, 0xea, 0xf5, 0xa4, 0xca, 0x7e, 0xbb, 0x24, 0xf5, 0x53, 0x8d, - 0x6d, 0xe8, 0xb3, 0xcb, 0x59, 0x76, 0x88, 0xb7, 0xca, 0x43, 0x3c, 0x31, 0x64, 0x8e, 0x87, 0x78, - 0x3c, 0xc4, 0xfb, 0xde, 0x03, 0xe3, 0x21, 0x1e, 0x33, 0x70, 0xcc, 0xc0, 0x31, 0x03, 0xc7, 0x0c, - 0x1c, 0x33, 0x70, 0xcc, 0xc0, 0x55, 0x9e, 0x81, 0xe3, 0x21, 0xde, 0xd3, 0x98, 0x1b, 0x0f, 0xf1, - 0x08, 0x21, 0x08, 0x21, 0x08, 0x21, 0x08, 0x21, 0x08, 0x21, 0x6a, 0x0e, 0x21, 0x78, 0x88, 0x67, - 0x6f, 0x36, 0x86, 0x27, 0x18, 0xb1, 0x3a, 0x6d, 0xcc, 0x12, 0xe7, 0x9c, 0x73, 0x51, 0xbd, 0xe2, - 0xd5, 0x6e, 0xce, 0x85, 0x8e, 0xfe, 0xd3, 0xd9, 0x0d, 0xa7, 0xf1, 0x64, 0x90, 0x46, 0xf3, 0xd1, - 0xe5, 0xb3, 0x3b, 0x68, 0xe7, 0x37, 0xe0, 0x1d, 0xe4, 0x62, 0x7b, 0xfb, 0x99, 0xd8, 0x5e, 0x33, - 0x56, 0xbe, 0xd7, 0x9e, 0xcb, 0x76, 0xfd, 0xad, 0xab, 0x4e, 0xeb, 0xdc, 0x9c, 0x1c, 0x26, 0xbe, - 0x7b, 0x1a, 0x84, 0xa9, 0x8a, 0xab, 0xef, 0x4c, 0xbe, 0x71, 0x2d, 0xb6, 0x25, 0x9b, 0xa2, 0x6c, - 0x9c, 0xd1, 0x21, 0x92, 0x76, 0x71, 0x46, 0xc7, 0xb7, 0x1e, 0x0e, 0xdb, 0x93, 0x01, 0xdd, 0xa5, - 0xf6, 0xcc, 0x17, 0x67, 0x08, 0xdb, 0x92, 0xdd, 0xe2, 0x0c, 0x61, 0x51, 0x9c, 0x5a, 0x5b, 0x85, - 0x83, 0x1f, 0x86, 0xfa, 0xcf, 0x26, 0xa6, 0x17, 0xe5, 0x91, 0x84, 0x34, 0x07, 0x6d, 0xd4, 0x51, - 0x9b, 0x72, 0xd8, 0xc6, 0x1d, 0xb7, 0x71, 0x07, 0x6e, 0xda, 0x91, 0xeb, 0x71, 0xe8, 0x9a, 0x1c, - 0x7b, 0xf1, 0x30, 0xcd, 0x1d, 0x4d, 0xe8, 0xdb, 0xa3, 0xb2, 0x80, 0x8a, 0x57, 0x98, 0xaf, 0x07, - 0xc0, 0x16, 0x75, 0xcd, 0xd7, 0x5f, 0x27, 0xcb, 0xd8, 0x6e, 0xf0, 0xf0, 0xcb, 0x62, 0xbb, 0xc1, - 0xb3, 0xb1, 0xdf, 0x2a, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, - 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0x49, 0x39, 0xb1, 0x05, 0x49, 0xf9, 0xb7, 0x48, - 0x39, 0x2b, 0xe8, 0x74, 0x69, 0x5d, 0xed, 0x2a, 0xe8, 0x2a, 0xaf, 0x93, 0x5a, 0x7a, 0x76, 0xf9, - 0x5c, 0x27, 0xf1, 0x3f, 0xcc, 0x24, 0xac, 0x71, 0xed, 0xdc, 0xf9, 0x38, 0x4c, 0xaa, 0xaf, 0x9a, - 0xcb, 0xae, 0xc2, 0x7a, 0x39, 0x53, 0xd4, 0x85, 0xf5, 0x72, 0x22, 0xa9, 0x07, 0xeb, 0xe5, 0x4c, - 0xe6, 0x86, 0x58, 0x2f, 0x27, 0x21, 0x03, 0xc4, 0xd4, 0xbc, 0x2d, 0x19, 0x1e, 0xa6, 0xe6, 0x45, - 0xd1, 0x67, 0x6d, 0xa9, 0xf9, 0x34, 0xf6, 0x4f, 0x4f, 0x83, 0x81, 0xab, 0xa2, 0xb3, 0x20, 0x52, - 0x2a, 0x0e, 0xa2, 0x33, 0xf7, 0x5c, 0xa5, 0x71, 0x30, 0xd0, 0x9f, 0xb1, 0xff, 0x86, 0x2c, 0x4c, - 0xe4, 0x4b, 0x73, 0xe7, 0x46, 0xdd, 0xba, 0x29, 0xf7, 0x6e, 0xdc, 0xcd, 0x1b, 0x77, 0xf7, 0xa6, - 0xdd, 0xbe, 0x1e, 0xf7, 0xaf, 0x29, 0x0c, 0x14, 0x0f, 0xd3, 0x5c, 0x22, 0x7f, 0x12, 0x44, 0xe9, - 0x9b, 0x55, 0x03, 0x79, 0x7c, 0x9d, 0x6d, 0xff, 0xdd, 0x6c, 0x8c, 0xb1, 0x8e, 0xb9, 0xcd, 0x37, - 0x3f, 0x7a, 0x5d, 0x52, 0x76, 0xa3, 0xbb, 0x41, 0xa4, 0xdd, 0x17, 0x1a, 0x0a, 0xae, 0x0b, 0x97, - 0xff, 0xec, 0x87, 0x13, 0x65, 0xf0, 0xfa, 0x1f, 0x62, 0x7f, 0x90, 0x06, 0xa3, 0x68, 0x27, 0x38, - 0x0b, 0xb2, 0x29, 0xe1, 0xcb, 0xda, 0xe5, 0xb8, 0xfa, 0xc9, 0x80, 0xca, 0xf9, 0x5f, 0x6b, 0xaf, - 0x72, 0x6b, 0xab, 0x5b, 0x6b, 0x5b, 0x1b, 0x9b, 0xab, 0x5b, 0xeb, 0x35, 0xd6, 0xbd, 0x17, 0x76, - 0x5e, 0xad, 0xcf, 0xe3, 0x66, 0x00, 0xbe, 0x5c, 0xd7, 0xe3, 0xe6, 0xf3, 0x71, 0x98, 0xb0, 0xfa, - 0xfb, 0xc1, 0xd7, 0x14, 0x9c, 0x8d, 0xdd, 0x70, 0x38, 0x76, 0x93, 0xcb, 0x68, 0xa0, 0x2f, 0xd5, - 0x7c, 0xeb, 0xaa, 0x4c, 0x38, 0xa3, 0x66, 0x28, 0x98, 0x70, 0xb6, 0x32, 0x03, 0xc1, 0x84, 0xf3, - 0x53, 0x1e, 0x9a, 0xb6, 0x84, 0xb3, 0xa6, 0x73, 0xbf, 0x05, 0x23, 0xd7, 0x72, 0xfe, 0xa7, 0xd9, - 0x2d, 0x6b, 0x77, 0xcf, 0x26, 0xdc, 0xb4, 0x51, 0x77, 0x6d, 0xca, 0x6d, 0x1b, 0x77, 0xdf, 0xc6, - 0xdd, 0xb8, 0x69, 0x77, 0xae, 0x97, 0x49, 0xea, 0x4a, 0x24, 0xeb, 0x72, 0xf3, 0xc5, 0x05, 0x55, - 0xe4, 0x9f, 0x84, 0x6a, 0xa8, 0xdf, 0x70, 0xe6, 0xde, 0x62, 0x2e, 0x80, 0x66, 0xad, 0x35, 0x93, - 0x79, 0xd2, 0x1e, 0x08, 0x4c, 0x06, 0x04, 0x88, 0xc0, 0x60, 0x3a, 0x40, 0xc0, 0x04, 0x0a, 0x98, - 0x80, 0x81, 0x12, 0x38, 0xf4, 0x06, 0x10, 0xcd, 0x81, 0xa4, 0x78, 0xc8, 0xda, 0x4f, 0x26, 0x17, - 0xac, 0x5e, 0x7f, 0xab, 0xd1, 0x02, 0xca, 0x5f, 0xb1, 0x34, 0xb7, 0xad, 0x51, 0x99, 0x9c, 0xf1, - 0x28, 0x49, 0xdd, 0x44, 0x25, 0x49, 0x30, 0x8a, 0xdc, 0xc9, 0xd8, 0x1d, 0xaa, 0xd0, 0xbf, 0x34, - 0x07, 0x1b, 0xee, 0x17, 0x87, 0x20, 0x82, 0x20, 0x82, 0x20, 0x82, 0x20, 0x82, 0x20, 0xc2, 0x32, - 0x10, 0xa1, 0xbd, 0xcc, 0xe9, 0xae, 0x8f, 0xdf, 0x34, 0x70, 0x69, 0x33, 0x65, 0x4f, 0xf3, 0x8f, - 0x19, 0x17, 0xb7, 0x64, 0xba, 0x0c, 0xca, 0x70, 0x70, 0x5f, 0x10, 0xc3, 0x70, 0x59, 0x54, 0x21, - 0x07, 0x40, 0x89, 0x8a, 0x21, 0xf7, 0x77, 0x5b, 0x35, 0x0d, 0x96, 0x4b, 0xa1, 0xaa, 0xa6, 0xe9, - 0xf2, 0x29, 0x48, 0x1d, 0x7d, 0x51, 0x8f, 0xab, 0xf6, 0x6d, 0xa5, 0xd6, 0x56, 0x1d, 0x2b, 0x68, - 0x2e, 0xbf, 0x2a, 0xae, 0x0b, 0x55, 0x86, 0x75, 0xb3, 0xec, 0x47, 0x4b, 0x4d, 0x96, 0x3e, 0x5d, - 0xd2, 0xb2, 0x5e, 0x56, 0xcb, 0xa4, 0xce, 0x05, 0xe4, 0xaf, 0x63, 0x62, 0xe7, 0xdd, 0xc0, 0xaa, - 0xbd, 0x2c, 0x60, 0x95, 0x65, 0x01, 0x56, 0x25, 0x6c, 0x58, 0x16, 0xc0, 0xb2, 0x80, 0x32, 0x1f, - 0x26, 0xcb, 0x02, 0xac, 0x66, 0x56, 0xcc, 0xe8, 0x33, 0xa3, 0xcf, 0x8c, 0x3e, 0x46, 0xe0, 0x30, - 0x43, 0xa5, 0x59, 0x16, 0xa0, 0xdf, 0xc9, 0xb3, 0x2c, 0xa0, 0x84, 0x67, 0xc9, 0xb2, 0x00, 0x82, - 0x08, 0x82, 0x08, 0x82, 0x08, 0x82, 0x08, 0x82, 0x08, 0xfd, 0x56, 0xcf, 0xb2, 0x00, 0xed, 0x1f, - 0x96, 0x05, 0xb0, 0x2c, 0xe0, 0x86, 0x1c, 0x2c, 0x0b, 0x58, 0x62, 0x59, 0xc0, 0xfd, 0xaa, 0xc9, - 0xb2, 0x00, 0xd3, 0x80, 0xc0, 0xdc, 0x55, 0xfb, 0xa4, 0xd6, 0xcf, 0x56, 0xdb, 0xe4, 0x32, 0x1a, - 0x7c, 0x89, 0x47, 0x51, 0xf0, 0x5f, 0x93, 0x89, 0xf8, 0x5b, 0x52, 0x90, 0x48, 0x93, 0x48, 0x93, - 0x48, 0x93, 0x48, 0x93, 0x48, 0x5b, 0x46, 0xa4, 0x99, 0x8d, 0x17, 0x7e, 0x25, 0x56, 0x12, 0x9a, - 0xaa, 0x24, 0xd4, 0xb0, 0x46, 0x4c, 0x9f, 0x2a, 0x71, 0xca, 0xa0, 0x15, 0x4a, 0xe9, 0x68, 0xa9, - 0x07, 0x7d, 0xc6, 0xf6, 0xb1, 0xdd, 0x71, 0x98, 0x78, 0xed, 0xb3, 0x71, 0x67, 0x38, 0x3e, 0x9c, - 0xca, 0xcb, 0xd9, 0x88, 0xf7, 0x3c, 0x5f, 0x6e, 0xc6, 0x7f, 0x2e, 0x81, 0xe3, 0x66, 0x7c, 0x59, - 0x84, 0x8c, 0xd3, 0x10, 0x39, 0x0d, 0xf1, 0x47, 0x1e, 0x1a, 0xd7, 0xef, 0x70, 0xfd, 0x8e, 0x1d, - 0xf9, 0x37, 0xb6, 0x47, 0xb0, 0x3d, 0x82, 0xed, 0x11, 0xd2, 0xf2, 0x67, 0x5c, 0xbf, 0x53, 0xfd, - 0x87, 0xeb, 0x77, 0xb4, 0x5e, 0x9e, 0xeb, 0x77, 0xb8, 0x7e, 0xc7, 0x90, 0xca, 0x71, 0xfd, 0x0e, - 0xd7, 0xef, 0xa0, 0xdf, 0x0f, 0x13, 0xe3, 0x8f, 0xb9, 0x1e, 0x54, 0x62, 0x5c, 0xc3, 0x01, 0xcd, - 0x15, 0xb7, 0xd2, 0xeb, 0xd4, 0x33, 0x28, 0xfd, 0x72, 0x2a, 0x3d, 0x03, 0x78, 0xe6, 0x19, 0x4b, - 0x35, 0x6a, 0x5f, 0xbe, 0x52, 0x56, 0xa0, 0x90, 0x4e, 0xa4, 0x82, 0xb3, 0x2f, 0x27, 0xa3, 0x38, - 0xa9, 0x4c, 0x17, 0x0b, 0x1a, 0x78, 0x7d, 0xa9, 0x8a, 0x0c, 0xab, 0xda, 0x83, 0x93, 0xca, 0x33, - 0x6d, 0x3a, 0x32, 0x6b, 0x5a, 0x33, 0x69, 0xba, 0x32, 0x67, 0xda, 0x33, 0x65, 0xda, 0x33, 0x63, - 0xba, 0x33, 0x61, 0xb2, 0x02, 0x6a, 0xd5, 0x07, 0x1d, 0x85, 0xe7, 0xd2, 0x77, 0xd0, 0x5c, 0x5c, - 0x91, 0x9b, 0xf7, 0xd0, 0x5c, 0xa8, 0x11, 0x57, 0xaa, 0xdb, 0xa5, 0x1a, 0x73, 0xad, 0xc6, 0x5c, - 0xac, 0x29, 0x57, 0x6b, 0x07, 0x77, 0xe6, 0xe6, 0x3d, 0x81, 0x6e, 0x59, 0xbb, 0x7b, 0x36, 0xe1, - 0xa6, 0x8d, 0xba, 0x6b, 0x53, 0x6e, 0xdb, 0xb8, 0xfb, 0x36, 0xee, 0xc6, 0x4d, 0xbb, 0x73, 0x3d, - 0x6e, 0x5d, 0x93, 0x7b, 0xd7, 0xee, 0xe6, 0x8b, 0x0b, 0x6a, 0x2e, 0x23, 0x5a, 0x70, 0x16, 0x5a, - 0x4b, 0x87, 0xee, 0xba, 0x7f, 0xb6, 0xf4, 0x59, 0x1e, 0x16, 0x4c, 0x87, 0x07, 0x98, 0x30, 0x01, - 0x13, 0x2e, 0x50, 0xc2, 0x86, 0xde, 0xf0, 0xa1, 0x39, 0x8c, 0x14, 0x0f, 0xd9, 0x7c, 0x4b, 0xdf, - 0xf4, 0xbd, 0xba, 0x46, 0x9c, 0xfc, 0x4d, 0x47, 0xbf, 0xc1, 0x01, 0x39, 0xfa, 0x6e, 0x9c, 0x03, - 0x72, 0xae, 0xc5, 0xe0, 0x80, 0x1c, 0xd3, 0x3e, 0xf0, 0xb6, 0x6a, 0x72, 0x40, 0xce, 0x82, 0x6a, - 0x6e, 0xac, 0xaf, 0xbf, 0xe1, 0x6c, 0x1c, 0x43, 0x80, 0xc0, 0xdc, 0x55, 0x39, 0x1b, 0xe7, 0xf9, - 0x6a, 0x1b, 0x8f, 0x26, 0xa9, 0x8a, 0xdd, 0xc0, 0xe0, 0x60, 0x9c, 0x6b, 0x11, 0x48, 0xa1, 0x49, - 0xa1, 0x49, 0xa1, 0x49, 0xa1, 0x49, 0xa1, 0x2d, 0xa3, 0xd0, 0xc3, 0x51, 0x9a, 0xaa, 0xa1, 0xfb, - 0x9f, 0x89, 0x3f, 0x34, 0x39, 0x19, 0xe7, 0xad, 0x81, 0x6b, 0x1f, 0xf8, 0x69, 0xaa, 0xe2, 0xc8, - 0x18, 0x8b, 0x76, 0x5e, 0xbe, 0x3c, 0x5a, 0x76, 0xb7, 0xfa, 0x7f, 0x1f, 0xad, 0xb8, 0x5b, 0xfd, - 0xd9, 0xd7, 0x95, 0xec, 0xb7, 0xd9, 0xf7, 0xd5, 0xa3, 0x65, 0x77, 0x6d, 0xfe, 0x7d, 0xfd, 0x68, - 0xd9, 0x5d, 0xef, 0xbf, 0x3a, 0x3e, 0x7e, 0xfd, 0xea, 0xaf, 0x37, 0x57, 0x8f, 0xff, 0x87, 0x0e, - 0x31, 0xa0, 0xa8, 0x2b, 0x71, 0xd8, 0x91, 0x9e, 0xf2, 0xe6, 0xa2, 0xac, 0xb5, 0xf8, 0xc6, 0xbd, - 0x89, 0x02, 0xa8, 0x8a, 0x31, 0x8a, 0xc2, 0x01, 0x01, 0x96, 0x51, 0x10, 0x16, 0x77, 0xb0, 0xb8, - 0xc3, 0x86, 0x40, 0x6e, 0x6e, 0x40, 0x40, 0xa8, 0xfc, 0xd3, 0x58, 0x9d, 0x1a, 0x98, 0x10, 0xb0, - 0xa2, 0x73, 0x44, 0xc0, 0x41, 0x8e, 0x55, 0x5e, 0xbf, 0xce, 0x11, 0x42, 0xe3, 0x3a, 0xf6, 0x10, - 0x2b, 0xfc, 0x38, 0xf0, 0xe3, 0x8e, 0xe5, 0xca, 0x30, 0x02, 0x77, 0x2c, 0x13, 0x23, 0x10, 0x23, - 0x10, 0x23, 0x3c, 0xf4, 0x30, 0xb5, 0x17, 0x80, 0xfa, 0xc3, 0xff, 0xf5, 0x07, 0x2a, 0x1a, 0x5c, - 0xba, 0x7a, 0xdd, 0xfe, 0x82, 0xd7, 0xb8, 0x2b, 0x08, 0xcf, 0xb3, 0x6c, 0x0b, 0x10, 0x10, 0x81, - 0xc2, 0x74, 0xc0, 0x80, 0x09, 0x1c, 0x30, 0x01, 0x04, 0x25, 0x90, 0xe8, 0x0d, 0x28, 0x9a, 0x03, - 0x8b, 0x39, 0x12, 0xba, 0x60, 0xf5, 0xc1, 0x50, 0x45, 0x69, 0x90, 0x5e, 0xea, 0x25, 0xa4, 0x0b, - 0xc8, 0xdf, 0x40, 0xcd, 0x93, 0xd3, 0xce, 0x6f, 0x7d, 0xdb, 0x4f, 0x0c, 0x7a, 0x9e, 0xf9, 0x8b, - 0xd8, 0x3f, 0x3c, 0xf8, 0xe0, 0xed, 0xb5, 0xda, 0x1f, 0x7f, 0xd9, 0xde, 0xef, 0x7a, 0x87, 0xbd, - 0x66, 0xaf, 0xe5, 0x98, 0x1c, 0xc2, 0x95, 0x18, 0x3b, 0xe7, 0x5b, 0x32, 0x5a, 0x31, 0x7b, 0xeb, - 0xa5, 0xf4, 0xfe, 0xbd, 0xef, 0xfd, 0xbb, 0xf9, 0xbb, 0x53, 0xc7, 0xfa, 0x4c, 0x90, 0x57, 0xd0, - 0xd9, 0x6f, 0xee, 0xb4, 0xf7, 0x3e, 0xf2, 0x15, 0x98, 0x7b, 0x05, 0xad, 0xdf, 0xde, 0xff, 0xd2, - 0xdc, 0xfb, 0xd8, 0xe2, 0x3b, 0x30, 0xf7, 0x0e, 0x3e, 0x7c, 0xea, 0x74, 0xf8, 0xfc, 0xcd, 0x3d, - 0xff, 0x9d, 0xfd, 0x7f, 0xef, 0xf1, 0xf9, 0x9b, 0x7b, 0xfe, 0xed, 0xbd, 0x76, 0x8f, 0xcf, 0xdf, - 0x64, 0x0c, 0x38, 0xec, 0x35, 0xbb, 0x7c, 0x05, 0x06, 0x5f, 0x41, 0xb3, 0xd7, 0x6b, 0xed, 0x1e, - 0x98, 0x7c, 0x05, 0x46, 0xae, 0xdc, 0xe7, 0xe0, 0x5d, 0x79, 0x26, 0xe4, 0x9c, 0xf8, 0x83, 0x3f, - 0x26, 0x63, 0x77, 0xa8, 0x92, 0xe0, 0x2c, 0xf2, 0x53, 0x35, 0x74, 0x67, 0xa7, 0xbf, 0xe6, 0x52, - 0xda, 0x0f, 0x4a, 0xc4, 0xdc, 0x76, 0xa5, 0x17, 0x66, 0x6e, 0x9b, 0xb9, 0xed, 0x99, 0x20, 0xcc, - 0x6d, 0x1b, 0x8d, 0x33, 0xec, 0xd5, 0x58, 0x32, 0xe1, 0xe8, 0xd9, 0xab, 0xc1, 0x5e, 0x0d, 0x22, - 0xc4, 0x45, 0x0d, 0x19, 0x2a, 0x7f, 0xe8, 0xa6, 0xc1, 0xb9, 0xc1, 0x2a, 0x87, 0x6b, 0x11, 0x88, - 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x89, 0x01, 0x2d, 0xc3, 0x80, 0x53, 0xef, 0x9e, 0x06, - 0x83, 0x3f, 0x92, 0x8d, 0x35, 0x83, 0x18, 0xd0, 0x04, 0x04, 0xfc, 0x14, 0xcd, 0xa6, 0xb7, 0x38, - 0x91, 0x1f, 0x8d, 0x12, 0x35, 0x18, 0x45, 0xc3, 0xc4, 0xe1, 0xe8, 0x2d, 0x7d, 0x37, 0xce, 0xd1, - 0x5b, 0xd7, 0x62, 0x70, 0xf4, 0x96, 0x69, 0x5f, 0x7c, 0x5b, 0x35, 0x39, 0x7a, 0x6b, 0x41, 0x35, - 0x57, 0xde, 0xae, 0xad, 0x6d, 0x6c, 0xae, 0xad, 0x2d, 0x6f, 0xbe, 0xd9, 0x5c, 0xde, 0x5a, 0x5f, - 0x5f, 0xd9, 0x58, 0xe1, 0x24, 0x2e, 0x43, 0x38, 0xc5, 0xdc, 0x55, 0xc9, 0xec, 0xcb, 0x60, 0xf6, - 0x30, 0x87, 0x3e, 0x3c, 0xed, 0x21, 0xd3, 0x27, 0xd3, 0x27, 0xd3, 0x27, 0xd3, 0xb7, 0x9e, 0xe9, - 0xf3, 0xb4, 0x87, 0xa7, 0x3d, 0xc4, 0x84, 0xa8, 0x98, 0x30, 0xf4, 0x93, 0xd4, 0x55, 0x49, 0xea, - 0x9f, 0x84, 0x41, 0xf2, 0x45, 0x99, 0x3e, 0xf9, 0xb9, 0x5f, 0x1c, 0x62, 0x43, 0x62, 0x43, 0x62, - 0x43, 0x62, 0x43, 0x62, 0x43, 0xcb, 0xb0, 0x21, 0x4f, 0x81, 0x78, 0x0a, 0x64, 0xe6, 0xc3, 0x53, - 0xa0, 0x1b, 0x62, 0xf0, 0x14, 0xc8, 0xb4, 0x2f, 0xbe, 0xad, 0x9a, 0x3c, 0x05, 0x5a, 0x50, 0x4d, - 0x9e, 0x02, 0xe1, 0xe0, 0x14, 0x73, 0x57, 0x25, 0xe3, 0x7f, 0xbe, 0xda, 0x72, 0x99, 0x29, 0x39, - 0x3d, 0x39, 0x3d, 0x39, 0x3d, 0x39, 0x3d, 0x39, 0x7d, 0x25, 0x56, 0xcf, 0x65, 0xa6, 0xe4, 0xd2, - 0x24, 0x2c, 0xe4, 0xd2, 0xe4, 0xd2, 0xa0, 0xaa, 0xc9, 0x65, 0xa6, 0x24, 0xcf, 0x24, 0xcf, 0x4f, - 0x52, 0xdb, 0xd1, 0x78, 0xaa, 0xb4, 0x7e, 0xe8, 0x0e, 0xfc, 0xb1, 0x7f, 0x12, 0x84, 0x41, 0x1a, - 0x64, 0x13, 0x19, 0x0d, 0x71, 0xe9, 0xfb, 0xc5, 0x21, 0xb5, 0x26, 0xb5, 0x26, 0xb5, 0x26, 0xb5, - 0x26, 0xb5, 0xb6, 0x8c, 0x5a, 0x7f, 0x51, 0x5f, 0xdd, 0x24, 0x8d, 0x83, 0xe8, 0x8c, 0x95, 0x94, - 0x9a, 0x05, 0xc8, 0xea, 0x21, 0x7d, 0xf7, 0xb4, 0xe9, 0x7e, 0xe8, 0xff, 0xb5, 0x7a, 0xf5, 0xf2, - 0xdd, 0xed, 0x3f, 0xbf, 0xfa, 0xe7, 0xab, 0x9f, 0x59, 0x00, 0x29, 0x11, 0xd1, 0x8d, 0xe3, 0x60, - 0x14, 0x07, 0xe9, 0xa5, 0x39, 0x10, 0x57, 0x48, 0x40, 0xdc, 0x46, 0xdc, 0x46, 0xdc, 0x46, 0xdc, - 0x46, 0xdc, 0x66, 0x19, 0x6e, 0x9b, 0x04, 0x51, 0xfa, 0xd6, 0x20, 0x64, 0x5b, 0xe7, 0x61, 0x88, - 0xbe, 0x1b, 0xe7, 0x61, 0xc8, 0xb5, 0x18, 0x3c, 0x0c, 0x31, 0xed, 0xfd, 0x6e, 0xab, 0x26, 0x0f, - 0x43, 0x16, 0x54, 0x73, 0x75, 0x9d, 0x47, 0x21, 0x86, 0x80, 0x80, 0xb9, 0xab, 0x92, 0x38, 0x3f, - 0x5f, 0x6d, 0x63, 0x95, 0xc6, 0x7e, 0x74, 0x1e, 0x24, 0x49, 0x30, 0x8a, 0xdc, 0xff, 0x4c, 0xd4, - 0x44, 0xb9, 0xa1, 0x8a, 0xce, 0xb2, 0xed, 0xd2, 0x86, 0xa8, 0xf4, 0x37, 0x64, 0x22, 0xb9, 0x26, - 0xb9, 0x26, 0xb9, 0x26, 0xb9, 0x26, 0xb9, 0xb6, 0x90, 0x5c, 0xbf, 0x59, 0x35, 0xc8, 0xae, 0x37, - 0xc9, 0xae, 0xc9, 0xae, 0xc9, 0xae, 0xc9, 0xae, 0xc9, 0xae, 0x17, 0x54, 0x73, 0x6d, 0x75, 0x6b, - 0x6d, 0x6b, 0x63, 0x73, 0x75, 0x8b, 0x24, 0x9b, 0x24, 0x9b, 0x24, 0xfb, 0xf1, 0x24, 0x3b, 0x1b, - 0x8e, 0xe8, 0x06, 0x43, 0x83, 0x9c, 0xba, 0x10, 0x81, 0x14, 0x9a, 0x14, 0x9a, 0x14, 0x9a, 0x14, - 0x9a, 0x14, 0xda, 0x32, 0x0a, 0xcd, 0x11, 0x8d, 0x1c, 0xd1, 0x48, 0x0c, 0x88, 0x8a, 0x01, 0x93, - 0xd4, 0x4f, 0x95, 0x3b, 0xf8, 0xe2, 0x47, 0x67, 0x26, 0x7b, 0x4d, 0x6e, 0x8b, 0x41, 0x2c, 0x48, - 0x2c, 0x48, 0x2c, 0x48, 0x2c, 0x48, 0x2c, 0x68, 0x19, 0x16, 0xe4, 0x71, 0x8a, 0xf6, 0x0f, 0x8f, - 0x53, 0x78, 0x9c, 0x72, 0x43, 0x0e, 0x1e, 0xa7, 0x2c, 0xf1, 0x38, 0xe5, 0x7e, 0xd5, 0xe4, 0x71, - 0x8a, 0x69, 0x40, 0x60, 0xee, 0xaa, 0xd6, 0x52, 0xe9, 0x17, 0x16, 0x79, 0x32, 0xa7, 0x19, 0x45, - 0xa3, 0xd4, 0x9f, 0x9a, 0x86, 0x56, 0xe7, 0xe5, 0x24, 0x83, 0x2f, 0xea, 0xdc, 0x1f, 0xfb, 0x59, - 0xf5, 0xa5, 0xd3, 0x18, 0x8d, 0x55, 0x34, 0xc8, 0xc8, 0xab, 0x1b, 0xa9, 0xf4, 0xcf, 0x51, 0xfc, - 0x87, 0x1b, 0x44, 0x49, 0xea, 0x47, 0x03, 0xd5, 0xb8, 0xfb, 0x17, 0xc9, 0xc2, 0xdf, 0x34, 0xc6, - 0xf1, 0x28, 0x1d, 0x0d, 0x46, 0x61, 0x52, 0x7c, 0x6b, 0xcc, 0xf0, 0x7e, 0xc3, 0x8f, 0x95, 0x9f, - 0x64, 0xbf, 0x36, 0x82, 0x28, 0x55, 0xf1, 0xa9, 0x3f, 0xfd, 0x01, 0xc5, 0xd7, 0x46, 0xa4, 0x82, - 0xb3, 0x2f, 0x27, 0xa3, 0x38, 0x29, 0xbe, 0x35, 0xb2, 0xc4, 0x81, 0x1e, 0xa2, 0x50, 0xbd, 0x2e, - 0x55, 0x7b, 0x85, 0x8a, 0xb5, 0x74, 0xca, 0x6a, 0x75, 0x1e, 0xe9, 0x39, 0x9d, 0x20, 0x49, 0x9b, - 0x69, 0xaa, 0x67, 0xd1, 0xdc, 0x14, 0xcc, 0xb6, 0x42, 0x35, 0xe5, 0xa8, 0xd3, 0x88, 0x14, 0x4d, - 0xc2, 0xf0, 0xa7, 0x17, 0x3a, 0x60, 0x8a, 0xfe, 0x8b, 0xee, 0xc7, 0x43, 0x15, 0xab, 0xe1, 0xf6, - 0x65, 0x7e, 0x49, 0xd1, 0x4a, 0xa9, 0xd9, 0x65, 0x02, 0xbb, 0x4a, 0x0d, 0xac, 0xdb, 0x49, 0xd2, - 0x78, 0x32, 0x48, 0xa3, 0x9c, 0xed, 0xef, 0xcd, 0x6e, 0xa7, 0x9d, 0xdf, 0x8d, 0x77, 0x90, 0xdf, - 0x83, 0xb7, 0x9f, 0xdd, 0x83, 0xd7, 0x8c, 0x95, 0xef, 0xb5, 0xe7, 0x22, 0x7b, 0x7b, 0x73, 0x41, - 0x5f, 0xc8, 0xf4, 0xb1, 0xd5, 0xfc, 0xe4, 0x8a, 0x0c, 0x44, 0x97, 0x61, 0xe0, 0x19, 0x44, 0x35, - 0xea, 0x55, 0xfe, 0xcb, 0xaf, 0xe0, 0xc5, 0xcf, 0x8e, 0x59, 0x2a, 0x7b, 0xdf, 0xb7, 0x4f, 0x73, - 0x2a, 0xf2, 0x37, 0xc5, 0x81, 0x6e, 0x45, 0x3f, 0xbe, 0x38, 0x95, 0x59, 0xad, 0xe8, 0x02, 0x1a, - 0x4e, 0x5f, 0xb4, 0x9e, 0xb2, 0xe8, 0x3a, 0x4d, 0xd1, 0x7e, 0x6a, 0xa2, 0xfd, 0x74, 0x44, 0xf7, - 0x29, 0x88, 0xac, 0x80, 0xb5, 0x13, 0x54, 0x8b, 0xf4, 0x1d, 0x7f, 0x92, 0x7e, 0x51, 0x51, 0x1a, - 0x0c, 0xb2, 0xa8, 0xe8, 0xa6, 0x3a, 0x4e, 0x4b, 0x0a, 0x4b, 0xbd, 0xef, 0xe2, 0x55, 0xf3, 0x35, - 0x2d, 0xe9, 0x47, 0x6d, 0xc7, 0xdc, 0x3a, 0x8f, 0xb5, 0x8d, 0x1c, 0x63, 0xeb, 0x3e, 0xb6, 0x36, - 0x76, 0x4c, 0x6d, 0xec, 0x58, 0xda, 0xd4, 0x31, 0xb4, 0xec, 0xbc, 0x8f, 0xb6, 0x63, 0xe5, 0x1b, - 0xf8, 0x52, 0xd3, 0x98, 0xc2, 0xeb, 0xea, 0x41, 0xa9, 0x9c, 0xb4, 0x42, 0xdc, 0xf7, 0x25, 0x18, - 0xaa, 0x39, 0x89, 0xd3, 0x17, 0x28, 0x6f, 0x5d, 0x95, 0x11, 0x92, 0x11, 0x92, 0x11, 0x92, 0x11, - 0x92, 0x11, 0xf2, 0x8e, 0xd5, 0x9d, 0x8c, 0x46, 0xa1, 0xf2, 0x23, 0x9d, 0x21, 0x72, 0x85, 0x21, - 0x72, 0xe1, 0xd9, 0x68, 0x68, 0xad, 0x2b, 0x5e, 0x79, 0xf5, 0x07, 0x6e, 0x0c, 0x87, 0x0c, 0x87, - 0x0c, 0x87, 0x0c, 0x87, 0x24, 0x8c, 0x24, 0x8c, 0x4f, 0x79, 0x36, 0x9a, 0x96, 0xc3, 0xea, 0x5d, - 0x06, 0xcb, 0xa8, 0xc8, 0xa8, 0xc8, 0xa8, 0xc8, 0xa8, 0x28, 0x30, 0x2a, 0xea, 0x5d, 0xa6, 0xaa, - 0x71, 0x79, 0xaa, 0xe6, 0x96, 0x1b, 0x8d, 0x95, 0xb8, 0x26, 0x5a, 0x6a, 0x4c, 0xf5, 0xc7, 0x1a, - 0x6a, 0x99, 0x31, 0xd9, 0x7e, 0xa0, 0xb3, 0xf3, 0xdb, 0x44, 0x0b, 0x8c, 0x69, 0x55, 0x32, 0xb0, - 0x9c, 0xd4, 0xa8, 0x3a, 0x59, 0x52, 0x17, 0xdf, 0x27, 0x99, 0x5a, 0x24, 0x53, 0x93, 0x30, 0x0d, - 0x5c, 0x3f, 0x56, 0xbe, 0xeb, 0x0f, 0xff, 0xd7, 0x1f, 0xa8, 0x68, 0x70, 0xe9, 0x8e, 0xe3, 0xe0, - 0xdc, 0x8f, 0x2f, 0x35, 0x52, 0xac, 0x6f, 0x49, 0x51, 0x31, 0x60, 0xda, 0x51, 0xa7, 0xfe, 0x24, - 0xcc, 0x40, 0xe6, 0x14, 0xdb, 0x92, 0xe7, 0x91, 0xe7, 0x91, 0xe7, 0x91, 0xe7, 0x91, 0xe7, 0xdd, - 0xb5, 0x3a, 0x1e, 0x06, 0x42, 0x44, 0xec, 0x79, 0x33, 0x83, 0xde, 0xc2, 0xd2, 0x5b, 0x57, 0x65, - 0x88, 0x64, 0x88, 0x64, 0x88, 0x64, 0x88, 0x64, 0x88, 0xbc, 0x63, 0x75, 0xc1, 0x50, 0x45, 0x69, - 0x90, 0x5e, 0xc6, 0xea, 0x54, 0x67, 0x98, 0xd4, 0x90, 0x8b, 0x70, 0xda, 0xf9, 0xad, 0x6d, 0xfb, - 0x89, 0x46, 0x4b, 0x9f, 0x3f, 0xd8, 0xfd, 0xc3, 0x83, 0x0f, 0xde, 0x5e, 0xab, 0xf7, 0xef, 0xfd, - 0xee, 0xaf, 0x5e, 0xef, 0xf7, 0x83, 0x96, 0x2e, 0x8b, 0xcf, 0x52, 0x3e, 0x89, 0xd6, 0xb1, 0x4b, - 0x86, 0x66, 0x27, 0x1e, 0xec, 0xb7, 0xf7, 0x7a, 0x5e, 0x6f, 0xdf, 0x9b, 0x7d, 0xc9, 0x1f, 0xb6, - 0x63, 0x63, 0xd2, 0xd2, 0xd0, 0x13, 0xde, 0xdb, 0xdf, 0xf3, 0xb6, 0xbb, 0xfb, 0xcd, 0x9d, 0xf7, - 0xcd, 0x43, 0x3e, 0xe0, 0x0a, 0x1e, 0xb0, 0xc9, 0x87, 0xab, 0xe5, 0x4a, 0x7d, 0xe9, 0x11, 0x5f, - 0x24, 0xe3, 0x1a, 0xfb, 0x49, 0x12, 0x5c, 0x68, 0x24, 0x5b, 0xf3, 0x0b, 0x92, 0x67, 0x91, 0x67, - 0x91, 0x67, 0x91, 0x67, 0x91, 0x67, 0xdd, 0xb1, 0x3a, 0xa6, 0x22, 0x31, 0x02, 0x63, 0x1c, 0x8c, - 0xe2, 0x20, 0xd5, 0x78, 0x50, 0x58, 0x5c, 0x91, 0xa1, 0x91, 0xa1, 0x91, 0xa1, 0x91, 0xa1, 0x91, - 0xa1, 0xf1, 0x8e, 0xd5, 0x4d, 0x82, 0x28, 0x7d, 0xab, 0x31, 0x30, 0xae, 0xb3, 0x0e, 0xf3, 0xe9, - 0x37, 0xc6, 0x3a, 0xcc, 0xea, 0xaf, 0xcb, 0x3a, 0x4c, 0x6b, 0x55, 0x69, 0x75, 0x9d, 0x55, 0x98, - 0xe2, 0xae, 0xd2, 0xe7, 0x5c, 0xce, 0xea, 0x5d, 0x44, 0xed, 0xe6, 0x72, 0x56, 0x38, 0xc0, 0x5b, - 0xc6, 0x4c, 0xce, 0x34, 0x38, 0x57, 0x71, 0x52, 0xfd, 0x50, 0xce, 0xfc, 0x3a, 0xc2, 0xa7, 0x72, - 0x2e, 0x73, 0x2a, 0x27, 0x14, 0xaf, 0xe6, 0x54, 0xce, 0x7a, 0x87, 0xab, 0xca, 0xa7, 0x72, 0x0e, - 0xe6, 0x96, 0xaf, 0x29, 0x51, 0x99, 0x5f, 0x4f, 0x4f, 0x9a, 0x72, 0x85, 0x69, 0x4a, 0x6c, 0x37, - 0xaa, 0xdb, 0x9d, 0x1a, 0x73, 0xab, 0xc6, 0xdc, 0xab, 0x29, 0x37, 0xab, 0x87, 0x37, 0x55, 0x9d, - 0xa6, 0xac, 0xda, 0xfd, 0x16, 0x17, 0x1a, 0x2a, 0x7f, 0xe8, 0x66, 0xa8, 0xfd, 0xc2, 0x0f, 0xf5, - 0x97, 0x11, 0xde, 0xbe, 0xbc, 0x26, 0x8d, 0xd4, 0x9b, 0x24, 0xd1, 0xbe, 0x0f, 0xd8, 0xc4, 0x1e, - 0x60, 0xa3, 0xfb, 0x7f, 0x4d, 0xed, 0xfd, 0x35, 0xbe, 0xef, 0xd7, 0xf8, 0x9e, 0x5f, 0xd3, 0xfb, - 0x7d, 0xed, 0x5a, 0x03, 0xa7, 0x7d, 0x8f, 0xaf, 0xb9, 0xfd, 0xbd, 0x06, 0xf6, 0xf6, 0x1a, 0xda, - 0xd7, 0x6b, 0x60, 0x2b, 0xb3, 0xc9, 0xfd, 0xbc, 0x86, 0x97, 0x9f, 0x9a, 0xde, 0xc7, 0x8b, 0xb0, - 0xe3, 0xd4, 0xc0, 0xfe, 0x5d, 0xa3, 0x7b, 0x77, 0x51, 0x54, 0xce, 0xf4, 0x9e, 0x5d, 0x08, 0xdd, - 0xb3, 0x74, 0xdf, 0x6c, 0xdf, 0x96, 0x4d, 0xa4, 0x1a, 0x52, 0x2a, 0x5f, 0x54, 0x18, 0x8e, 0x0c, - 0x72, 0xca, 0x3b, 0xd7, 0x27, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, - 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x94, 0x44, - 0x2a, 0x63, 0x95, 0xc6, 0x7e, 0x94, 0x9c, 0x07, 0x49, 0x12, 0x8c, 0x22, 0x83, 0xec, 0xf2, 0x21, - 0x41, 0x48, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, - 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x65, 0x5c, 0xa1, 0xea, 0x8a, - 0x5e, 0x4d, 0xfd, 0x7f, 0xc5, 0xf5, 0x50, 0xfa, 0x00, 0x67, 0xed, 0x69, 0x8d, 0xbc, 0xfd, 0x82, - 0x33, 0x7b, 0x16, 0x5f, 0x54, 0xd6, 0x28, 0xa9, 0xad, 0x0f, 0x66, 0x76, 0x39, 0xcb, 0xda, 0x60, - 0x56, 0xd9, 0x06, 0x23, 0x2a, 0x0b, 0xc1, 0x36, 0x18, 0xb6, 0xc1, 0xfc, 0xc8, 0x43, 0x63, 0x1b, - 0x8c, 0x35, 0xd4, 0x83, 0xa9, 0x64, 0xdb, 0x9c, 0xb8, 0x71, 0x67, 0x6e, 0xdc, 0xa9, 0x9b, 0x76, - 0xee, 0x7a, 0xb9, 0x24, 0x53, 0xc9, 0x95, 0xf9, 0x60, 0xa6, 0x92, 0x2b, 0xb8, 0x51, 0xa6, 0x92, - 0x99, 0x4a, 0xd6, 0xad, 0x72, 0x4c, 0x25, 0x33, 0x95, 0xcc, 0x54, 0x32, 0xfc, 0xfd, 0xb0, 0x0d, - 0x86, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, - 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x92, 0xa4, 0x12, 0x9a, 0x54, 0xb2, 0x0d, 0x86, - 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, - 0x34, 0x93, 0x34, 0x93, 0x34, 0x93, 0x34, 0xb3, 0x3e, 0x34, 0x93, 0x6d, 0x30, 0x8f, 0xb8, 0x1e, - 0x58, 0x1b, 0x4c, 0x85, 0x5b, 0xb1, 0xaa, 0xd7, 0x0f, 0x2e, 0x5c, 0xc3, 0xd7, 0x30, 0xa7, 0xd2, - 0x4e, 0xa5, 0x78, 0x32, 0x48, 0xa3, 0x9c, 0x70, 0xec, 0xcd, 0x44, 0x6f, 0xe7, 0x92, 0x7b, 0x07, - 0xb9, 0xbc, 0xde, 0x7e, 0x26, 0xaf, 0xd7, 0x8c, 0x95, 0xef, 0xb5, 0xe7, 0xe2, 0x79, 0xbd, 0x99, - 0x78, 0x52, 0x16, 0xc2, 0xbd, 0x00, 0x56, 0x71, 0xe7, 0x57, 0x75, 0x39, 0x7d, 0x03, 0xc1, 0xb0, - 0xe4, 0xb7, 0xed, 0x74, 0x82, 0x24, 0x6d, 0xa6, 0x69, 0x35, 0x4d, 0x17, 0x53, 0x52, 0xd3, 0x0a, - 0xd5, 0xb9, 0x8a, 0x32, 0x64, 0x13, 0x4d, 0xc2, 0xb0, 0x82, 0xb5, 0x7b, 0xbb, 0xfe, 0xd7, 0xea, - 0x2f, 0xb2, 0x1f, 0x0f, 0x55, 0xac, 0x86, 0xdb, 0x97, 0xf9, 0x25, 0xa0, 0xb5, 0xa5, 0x62, 0x47, - 0x88, 0xe2, 0x00, 0x2b, 0xf0, 0x7c, 0xcf, 0xf2, 0x78, 0xe5, 0xba, 0xba, 0xf2, 0x1c, 0x52, 0x39, - 0x3f, 0xa9, 0x24, 0x25, 0xad, 0x4a, 0x39, 0xcd, 0x2a, 0x65, 0x39, 0xaf, 0xfe, 0xf9, 0x2f, 0xaa, - 0x84, 0x97, 0xe4, 0x84, 0xc9, 0xf0, 0xa4, 0xb4, 0x57, 0x53, 0x64, 0x2b, 0xb3, 0x9f, 0x5a, 0x92, - 0x0a, 0x95, 0xdb, 0x6c, 0x5c, 0x7a, 0x53, 0x71, 0x15, 0x67, 0x39, 0x95, 0x9e, 0xd5, 0x54, 0x75, - 0x16, 0x53, 0xf9, 0x59, 0x4b, 0xe5, 0x67, 0x29, 0x55, 0x9f, 0x95, 0x60, 0xb9, 0xe6, 0xb2, 0x9b, - 0x6f, 0x9d, 0x30, 0xf1, 0xdd, 0xf4, 0x72, 0xac, 0xca, 0x5f, 0x8a, 0x7c, 0xc3, 0xaf, 0xcc, 0x2f, - 0x51, 0x36, 0xe4, 0xae, 0x64, 0xa2, 0x41, 0x65, 0x07, 0xcb, 0x55, 0x1e, 0x20, 0x6b, 0x39, 0x28, - 0xae, 0xfa, 0x40, 0x58, 0xdb, 0xc1, 0xaf, 0xb6, 0x03, 0x5e, 0x5d, 0x07, 0xb9, 0xd8, 0xd4, 0xb8, - 0xaa, 0x89, 0x01, 0x85, 0x67, 0xa9, 0x7e, 0xa1, 0x7b, 0x71, 0x25, 0xae, 0x74, 0xd7, 0xed, 0xda, - 0xb4, 0xba, 0x38, 0x5d, 0xae, 0x4e, 0xbb, 0xcb, 0xd3, 0xee, 0xfa, 0x74, 0xbb, 0xc0, 0xea, 0xf2, - 0x8e, 0x4b, 0x92, 0x57, 0xba, 0x87, 0x89, 0x9f, 0xe8, 0x1b, 0x64, 0x95, 0x5d, 0x8d, 0xeb, 0xdc, - 0xd1, 0x5c, 0xa7, 0x11, 0x17, 0xaa, 0xdb, 0x95, 0x1a, 0x73, 0xa9, 0xc6, 0x5c, 0xab, 0x29, 0x17, - 0x5b, 0xad, 0xab, 0xad, 0xd8, 0xe5, 0x6a, 0x73, 0xbd, 0x37, 0x5d, 0xb0, 0xfe, 0x5a, 0xf0, 0xe9, - 0x45, 0xf5, 0xd6, 0x7d, 0xaf, 0xb0, 0xee, 0x5b, 0xb6, 0xa3, 0x36, 0xe5, 0xb0, 0x8d, 0x3b, 0x6e, - 0xe3, 0x0e, 0xdc, 0xb4, 0x23, 0xd7, 0xe3, 0xd0, 0x35, 0x39, 0x76, 0xed, 0x0e, 0xbe, 0xb8, 0xa0, - 0x9f, 0xb8, 0xea, 0x6b, 0xaa, 0xe2, 0xc8, 0x0f, 0x5d, 0x9d, 0x4e, 0x7f, 0xc1, 0x6b, 0xdc, 0x15, - 0x44, 0xb3, 0x16, 0xeb, 0x0d, 0x08, 0xc6, 0x02, 0x83, 0xc9, 0x00, 0x01, 0x11, 0x28, 0x4c, 0x07, - 0x0c, 0x98, 0xc0, 0x01, 0x13, 0x40, 0x50, 0x02, 0x89, 0xde, 0x80, 0xa2, 0x39, 0xb0, 0x18, 0x0b, - 0x30, 0xc5, 0x85, 0xf5, 0x8c, 0x27, 0xff, 0xae, 0xcf, 0xd1, 0x31, 0xb6, 0x1c, 0x2c, 0xc8, 0x18, - 0x0f, 0x36, 0x08, 0x41, 0x07, 0x2a, 0xf8, 0xa0, 0x04, 0x21, 0xb8, 0x60, 0x04, 0x17, 0x94, 0xd0, - 0x82, 0x93, 0x99, 0x20, 0x65, 0x28, 0x58, 0x19, 0x0f, 0x5a, 0x85, 0x00, 0x05, 0x33, 0x89, 0x47, - 0x93, 0x54, 0xb9, 0xa9, 0x7f, 0x66, 0xde, 0x66, 0xe7, 0x8e, 0xec, 0x1e, 0xd9, 0x0c, 0xdb, 0x8a, - 0xd9, 0x26, 0x3c, 0x98, 0x70, 0x87, 0x14, 0xf6, 0x20, 0xc3, 0x1f, 0x5a, 0x18, 0x84, 0x0d, 0x87, - 0xb0, 0x61, 0x11, 0x35, 0x3c, 0x9a, 0x0d, 0x93, 0x86, 0xc3, 0x65, 0xf1, 0x52, 0xb4, 0x0f, 0x91, - 0xf8, 0xae, 0xd7, 0xd1, 0x3e, 0x5c, 0xe2, 0x7b, 0x31, 0x6a, 0x13, 0x40, 0x14, 0x33, 0xc3, 0x28, - 0x1e, 0xfa, 0x60, 0xb8, 0xe0, 0x25, 0xd3, 0xc3, 0x2b, 0xc0, 0xc1, 0xcd, 0x82, 0x58, 0x86, 0x87, - 0x5d, 0x3c, 0x28, 0x17, 0xc0, 0x20, 0x02, 0x50, 0xf7, 0x7c, 0x5b, 0xd5, 0xfd, 0xaf, 0x54, 0xf5, - 0x47, 0xaa, 0xba, 0xe9, 0x21, 0x1b, 0x22, 0x75, 0xfe, 0x05, 0xa5, 0x58, 0xd2, 0x36, 0xc4, 0x03, - 0xef, 0xfe, 0x0d, 0xfa, 0x3c, 0xe7, 0x74, 0x14, 0xff, 0xe9, 0xc7, 0xc3, 0x20, 0x3a, 0x73, 0xfd, - 0xe1, 0x30, 0x56, 0x49, 0x82, 0x93, 0x44, 0xb9, 0x47, 0x36, 0x26, 0x51, 0x98, 0x44, 0x61, 0x12, - 0x85, 0x49, 0x14, 0x26, 0x51, 0x98, 0x44, 0x81, 0xf2, 0x3a, 0xc1, 0xf8, 0x62, 0x6d, 0x1e, 0xa5, - 0xdc, 0x68, 0xe4, 0xfe, 0x77, 0x14, 0x29, 0xa0, 0x94, 0xca, 0xca, 0x5b, 0x00, 0x59, 0x0e, 0xfc, - 0x34, 0x55, 0x71, 0x04, 0x93, 0x55, 0x71, 0x5e, 0xbe, 0x3c, 0x5a, 0x76, 0xb7, 0xfa, 0x7f, 0x1f, - 0xad, 0xb8, 0x5b, 0xfd, 0xd9, 0xd7, 0x95, 0xec, 0xb7, 0xd9, 0xf7, 0xd5, 0xa3, 0x65, 0x77, 0x6d, - 0xfe, 0x7d, 0xfd, 0x68, 0xd9, 0x5d, 0xef, 0xbf, 0x3a, 0x3e, 0x7e, 0xfd, 0xea, 0xaf, 0x37, 0x57, - 0x8f, 0xff, 0x87, 0x2f, 0xff, 0x71, 0x74, 0x7c, 0x3c, 0xfe, 0x6b, 0xef, 0x6a, 0xfa, 0x6b, 0xe7, - 0xaa, 0xff, 0xaf, 0x57, 0x3f, 0xa3, 0xf8, 0xde, 0xa9, 0xa0, 0xc7, 0xc7, 0xaf, 0xfb, 0xff, 0x74, - 0x48, 0x01, 0x6a, 0x48, 0x01, 0xce, 0xfd, 0xe4, 0x0f, 0x1c, 0xd0, 0x9f, 0x49, 0x43, 0x98, 0x4f, - 0x98, 0x4f, 0x98, 0x4f, 0x98, 0x4f, 0x98, 0x4f, 0x98, 0x0f, 0x77, 0x56, 0xfa, 0x16, 0x08, 0xd7, - 0xaf, 0xf3, 0xa8, 0xf4, 0xce, 0x87, 0x47, 0xa5, 0x12, 0xb0, 0xcd, 0x82, 0x58, 0x3c, 0x2a, 0x95, - 0xe6, 0x9d, 0x6f, 0xab, 0x3a, 0x8f, 0x4a, 0x1f, 0xad, 0xea, 0x6f, 0x56, 0xa9, 0xeb, 0x32, 0x70, - 0x10, 0x8e, 0x14, 0xcc, 0x8f, 0x18, 0xc8, 0x8f, 0xa8, 0x34, 0x0e, 0x06, 0x40, 0x19, 0x92, 0x99, - 0x3c, 0xcc, 0x91, 0x30, 0x47, 0xc2, 0x1c, 0x09, 0x73, 0x24, 0xcc, 0x91, 0x30, 0x47, 0x82, 0xe5, - 0x75, 0x92, 0xf1, 0xa9, 0x0b, 0x11, 0xa4, 0x6e, 0x06, 0xaa, 0x0d, 0x66, 0x4a, 0x98, 0x29, 0x61, - 0xa6, 0x84, 0x99, 0x12, 0x66, 0x4a, 0xc4, 0xa9, 0xfa, 0xc6, 0xfa, 0xfa, 0x1b, 0xd6, 0x93, 0x33, - 0x59, 0xc2, 0x64, 0x89, 0x90, 0x64, 0x49, 0xb5, 0xc3, 0xd4, 0x9f, 0x98, 0x31, 0xa9, 0x72, 0xee, - 0x3a, 0xd3, 0x26, 0x4c, 0x9b, 0x30, 0x6d, 0xc2, 0xb4, 0x09, 0xd3, 0x26, 0x4c, 0x9b, 0x3c, 0xd1, - 0xeb, 0xa8, 0x68, 0x72, 0xae, 0xe2, 0xd9, 0xb6, 0x3c, 0xa0, 0xc2, 0xf1, 0x35, 0x00, 0x59, 0x5a, - 0xd1, 0xe4, 0x7c, 0xfa, 0xb2, 0xae, 0xea, 0x0a, 0xe8, 0x6a, 0x35, 0x58, 0x4a, 0xf3, 0x16, 0xf1, - 0x07, 0xe5, 0x30, 0xb0, 0x65, 0x32, 0x4c, 0x86, 0x27, 0x8d, 0x62, 0xcd, 0x59, 0xf1, 0x6d, 0xfa, - 0x25, 0xfb, 0x53, 0xe3, 0xce, 0x40, 0x5e, 0x1d, 0x2b, 0xc7, 0x71, 0x94, 0xd2, 0x80, 0x42, 0x3a, - 0xd9, 0x8b, 0x70, 0x47, 0xa7, 0x6e, 0xa2, 0xe2, 0x8b, 0x60, 0x00, 0x30, 0x2c, 0x73, 0x41, 0x22, - 0xce, 0xcd, 0xac, 0x2b, 0x73, 0xe1, 0xdc, 0x4c, 0x09, 0x0c, 0x85, 0x73, 0x33, 0x09, 0x6f, 0x6e, - 0x3c, 0x7c, 0xe3, 0x73, 0x33, 0xa7, 0x01, 0x04, 0x21, 0xa2, 0xdd, 0x1b, 0xd9, 0xcc, 0x07, 0x36, - 0x90, 0x00, 0x07, 0x13, 0xe8, 0x90, 0x02, 0x1e, 0x64, 0xe0, 0x43, 0x0b, 0x80, 0xb0, 0x81, 0x10, - 0x36, 0x20, 0xa2, 0x06, 0x46, 0xf3, 0x99, 0x87, 0x25, 0x80, 0x54, 0x9d, 0xe9, 0x80, 0x79, 0x9d, - 0x10, 0x30, 0xba, 0x2d, 0xe1, 0x41, 0x1f, 0x68, 0x72, 0x7b, 0x02, 0x68, 0xd0, 0x84, 0x0b, 0x9e, - 0x88, 0x41, 0x14, 0x3a, 0x98, 0xa2, 0x06, 0x55, 0xf8, 0xe0, 0x0a, 0x1f, 0x64, 0xd1, 0x83, 0x2d, - 0x46, 0xd0, 0x05, 0x09, 0xbe, 0x70, 0x41, 0xb8, 0x10, 0x08, 0x70, 0xfb, 0xc3, 0x83, 0x8e, 0x15, - 0x6e, 0x1b, 0xc4, 0x43, 0x61, 0x1b, 0xad, 0x00, 0x10, 0x2d, 0x7c, 0x23, 0x87, 0x71, 0x11, 0xe1, - 0x1c, 0x3d, 0xac, 0x8b, 0x09, 0xef, 0x62, 0xc2, 0xbc, 0x94, 0x70, 0x8f, 0x15, 0xf6, 0xc1, 0xc2, - 0x7f, 0xf1, 0x12, 0x61, 0xca, 0x66, 0x1e, 0xf4, 0x7a, 0x30, 0xdb, 0x2c, 0x1e, 0x8a, 0xb1, 0x9b, - 0x80, 0xa2, 0x61, 0x35, 0x26, 0xdd, 0xfd, 0x60, 0x86, 0x88, 0x25, 0xd4, 0xc6, 0x25, 0x21, 0xe0, - 0x6e, 0x41, 0x4c, 0xd0, 0xc6, 0xa6, 0x05, 0x39, 0x81, 0x3b, 0x3f, 0xc0, 0xc3, 0xc7, 0x6d, 0xd3, - 0xf1, 0xbf, 0xd2, 0x74, 0x4a, 0x36, 0x1d, 0xd4, 0xed, 0x1b, 0xa2, 0x6d, 0xe8, 0x05, 0xa5, 0xfa, - 0x91, 0x4f, 0xff, 0x05, 0x9f, 0x0f, 0xb8, 0x0f, 0x46, 0xdc, 0xf6, 0xf1, 0x20, 0x90, 0x87, 0xdb, - 0xfe, 0x21, 0x24, 0x38, 0x30, 0x69, 0xf6, 0x1c, 0xad, 0x63, 0xd2, 0xec, 0x39, 0x06, 0xc1, 0xa4, - 0x59, 0xc9, 0x82, 0x32, 0x69, 0x26, 0x9f, 0xf5, 0x08, 0x48, 0x9a, 0x81, 0x6e, 0x2f, 0x79, 0x28, - 0xe2, 0x22, 0x6c, 0x33, 0x59, 0x8c, 0x6e, 0x60, 0xdb, 0x4d, 0x16, 0x04, 0xe4, 0xb6, 0x93, 0x7b, - 0x1f, 0x0b, 0xd0, 0xf6, 0x13, 0x52, 0x2a, 0x79, 0x94, 0x0a, 0x64, 0x3a, 0xe8, 0x83, 0xae, 0x1d, - 0x66, 0x10, 0x1b, 0xa9, 0x13, 0xa9, 0x13, 0xa9, 0x13, 0xa9, 0x13, 0xa9, 0x13, 0xa9, 0x93, 0x45, - 0xd4, 0x09, 0x6b, 0xda, 0xe9, 0x43, 0x81, 0x76, 0x83, 0x45, 0x07, 0x8f, 0xfc, 0xb0, 0xe8, 0xc0, - 0x46, 0x84, 0xb7, 0x20, 0x26, 0x8b, 0x0e, 0x6c, 0x8f, 0x21, 0xb7, 0x4d, 0x87, 0x45, 0x07, 0xa5, - 0x9b, 0x0e, 0xe0, 0x74, 0x56, 0xd1, 0xe6, 0xc3, 0x7a, 0x83, 0x1f, 0xfa, 0x30, 0x39, 0x06, 0xef, - 0x7e, 0x9d, 0x74, 0x04, 0x5c, 0x60, 0x30, 0x15, 0x8e, 0x69, 0xb1, 0x1f, 0x11, 0x8b, 0x69, 0xb1, - 0xe7, 0x10, 0x44, 0xa6, 0xc5, 0x9e, 0x61, 0x10, 0x4c, 0x8b, 0x95, 0x2c, 0x28, 0xd3, 0x62, 0xf2, - 0x29, 0x8d, 0x90, 0x36, 0x9c, 0xb7, 0xc0, 0x09, 0xb1, 0x75, 0x26, 0xc4, 0x1e, 0xf9, 0x61, 0x42, - 0xac, 0x56, 0xac, 0x9e, 0x09, 0x31, 0x5b, 0xa3, 0xc7, 0x6d, 0xd3, 0x61, 0x42, 0xac, 0x74, 0xd3, - 0x59, 0x5d, 0x67, 0x3a, 0xcc, 0x52, 0x20, 0x88, 0x2b, 0x15, 0xd3, 0x61, 0xc8, 0x92, 0xa0, 0x8c, - 0xf1, 0x01, 0x99, 0xad, 0xbf, 0x20, 0x97, 0x84, 0x59, 0xfb, 0x77, 0x07, 0xaf, 0x37, 0xee, 0xcc, - 0xab, 0x35, 0x39, 0x8c, 0x1f, 0x4f, 0xeb, 0x01, 0x34, 0x1e, 0x2a, 0xfd, 0x0c, 0x98, 0x76, 0x06, - 0xc3, 0x55, 0x1c, 0xd6, 0xf8, 0x18, 0x35, 0xe2, 0xb0, 0xc6, 0xc7, 0x28, 0x3a, 0x87, 0x35, 0x3e, - 0x17, 0x38, 0x70, 0x58, 0xa3, 0x1c, 0x94, 0x07, 0x97, 0x1e, 0x2e, 0xbc, 0x56, 0xa8, 0xfc, 0xd3, - 0x58, 0x9d, 0x22, 0xf9, 0xac, 0x79, 0x4f, 0x19, 0xd0, 0x5c, 0x26, 0xe7, 0x20, 0x07, 0xc2, 0xaf, - 0x5f, 0xcf, 0x40, 0x65, 0x63, 0x0a, 0x1a, 0x08, 0x2c, 0x01, 0x24, 0x30, 0x3d, 0x0c, 0xfd, 0x57, - 0x75, 0x89, 0x01, 0x22, 0x9d, 0x4e, 0x90, 0xa4, 0xcd, 0x34, 0x05, 0x99, 0xcd, 0xbe, 0x1b, 0x44, - 0xad, 0x50, 0x4d, 0x23, 0xd4, 0x14, 0xf2, 0x47, 0x93, 0x30, 0x04, 0xe0, 0x1f, 0xbb, 0xfe, 0x57, - 0x3c, 0xa1, 0xf6, 0xe3, 0xa1, 0x8a, 0xd5, 0x70, 0xfb, 0x32, 0x17, 0xa9, 0xd6, 0xe6, 0x04, 0x96, - 0x0f, 0xb1, 0x22, 0x0f, 0x82, 0xb0, 0x8a, 0x25, 0x49, 0xe3, 0xc9, 0x20, 0x8d, 0x72, 0xd4, 0xb1, - 0x37, 0x7b, 0x30, 0xed, 0xfc, 0xb9, 0x78, 0x07, 0xf9, 0xd3, 0xf0, 0xf6, 0xb3, 0xa7, 0xe1, 0x35, - 0x63, 0xe5, 0x7b, 0x9d, 0x64, 0x78, 0xe2, 0x75, 0x12, 0x7f, 0x0a, 0x9e, 0xa6, 0xbf, 0x7b, 0xcd, - 0xa4, 0x95, 0xdf, 0xf6, 0xf4, 0x4f, 0xd3, 0xbf, 0xde, 0x3f, 0x3d, 0xcc, 0x6f, 0x91, 0x8b, 0x48, - 0xed, 0x77, 0x12, 0x5c, 0x44, 0xfa, 0x0c, 0xa7, 0x50, 0x9b, 0x9d, 0xa4, 0x2f, 0x2c, 0xb6, 0x04, - 0xd3, 0x16, 0x20, 0x41, 0xf3, 0x0d, 0x44, 0xbb, 0xf2, 0xa3, 0x9b, 0x5e, 0x6b, 0xd5, 0x67, 0x33, - 0x1a, 0xed, 0xc5, 0x09, 0x83, 0xe8, 0x0f, 0x37, 0x63, 0xeb, 0x6e, 0x30, 0xd4, 0x6e, 0x2e, 0xd7, - 0x19, 0x96, 0x5b, 0x62, 0x68, 0xf6, 0x17, 0x66, 0x0e, 0x14, 0x8c, 0x1d, 0x1c, 0x98, 0x3c, 0x20, - 0x80, 0x38, 0x08, 0x30, 0x9d, 0xf0, 0x87, 0x49, 0xec, 0xc3, 0x24, 0xf0, 0x51, 0x12, 0xf5, 0x76, - 0xe3, 0x22, 0x63, 0x09, 0x76, 0x80, 0x44, 0xba, 0xc9, 0x84, 0xf9, 0x62, 0x62, 0xfc, 0x76, 0xb8, - 0x23, 0x8c, 0x79, 0xf6, 0x13, 0x9e, 0xa3, 0xe6, 0x29, 0xb4, 0x35, 0x06, 0x62, 0x6e, 0x0a, 0x61, - 0x06, 0xc2, 0xac, 0x10, 0xc2, 0x10, 0xc2, 0x10, 0xc2, 0x10, 0xc2, 0xd8, 0x0a, 0x61, 0x4c, 0x2d, - 0x74, 0x34, 0xbc, 0x45, 0x19, 0x62, 0x6b, 0xb2, 0xe1, 0x2d, 0xc9, 0xc6, 0x0b, 0xed, 0x10, 0x0a, - 0xeb, 0xa0, 0x0a, 0xe9, 0x50, 0x0a, 0xe7, 0xe0, 0x0a, 0xe5, 0xe0, 0x0a, 0xe3, 0xd0, 0x0a, 0xe1, - 0xea, 0x75, 0x22, 0x67, 0x7a, 0x0b, 0xb1, 0xe3, 0xa7, 0xa9, 0x3f, 0xf8, 0xa2, 0x86, 0xb3, 0x4d, - 0xbe, 0xe6, 0x6b, 0x5f, 0x0a, 0x2f, 0x76, 0x57, 0x30, 0xd3, 0x65, 0x4a, 0x10, 0x95, 0xe5, 0x30, - 0x15, 0xe5, 0x48, 0x95, 0xe4, 0x90, 0x15, 0xe4, 0x68, 0x95, 0xe3, 0xb0, 0x15, 0xe3, 0xb0, 0x95, - 0xe2, 0xa8, 0x15, 0xe2, 0xf5, 0x2e, 0x17, 0x85, 0xa9, 0x04, 0x2f, 0xbc, 0xce, 0x70, 0x94, 0xa6, - 0x6a, 0xe8, 0xfe, 0x67, 0xe2, 0x0f, 0x11, 0xfc, 0x0e, 0xd0, 0x46, 0x11, 0xb8, 0x0d, 0x22, 0x5a, - 0x37, 0x86, 0x98, 0xf7, 0x14, 0xfd, 0x5a, 0x7b, 0x0a, 0x96, 0x73, 0x7f, 0x5f, 0x28, 0x96, 0x73, - 0xc3, 0x06, 0x5b, 0x83, 0xe6, 0x53, 0x9c, 0x56, 0x9d, 0xfb, 0xc9, 0x1f, 0x38, 0x8c, 0xf0, 0x96, - 0x54, 0xa4, 0x83, 0xa4, 0x83, 0xa4, 0x83, 0xa4, 0x83, 0xa4, 0x83, 0xa4, 0x83, 0x50, 0x5e, 0x07, - 0x65, 0x4e, 0x24, 0xd0, 0x5c, 0x48, 0xb0, 0x39, 0x90, 0x40, 0x5d, 0xe4, 0x88, 0x73, 0x1e, 0x51, - 0x67, 0x76, 0x83, 0xce, 0x71, 0x44, 0x1e, 0x3d, 0x87, 0x34, 0x39, 0x1f, 0x71, 0x2e, 0x23, 0xba, - 0xaa, 0xbf, 0x59, 0xa5, 0xae, 0xcb, 0xc0, 0x41, 0x38, 0x52, 0xf4, 0xd9, 0xc9, 0x6b, 0xbf, 0x87, - 0x65, 0x27, 0xef, 0x37, 0xfa, 0x19, 0x6f, 0xd4, 0x5a, 0x9b, 0x9c, 0x60, 0xc8, 0xd6, 0x5d, 0xab, - 0x54, 0x1e, 0x5d, 0xd5, 0xa5, 0xb6, 0xed, 0xe6, 0xff, 0x8a, 0x3d, 0xbb, 0xa5, 0xbc, 0x91, 0x28, - 0x49, 0xfc, 0xdb, 0xdd, 0xdc, 0xe6, 0x5a, 0x5e, 0x16, 0x44, 0x61, 0xe3, 0x4b, 0xa5, 0x17, 0x66, - 0xe3, 0x0b, 0x1b, 0x5f, 0x66, 0x82, 0xb0, 0xf1, 0xa5, 0x4e, 0xc0, 0x88, 0x8d, 0x2f, 0x6c, 0x7c, - 0x61, 0xe3, 0x0b, 0x1b, 0x5f, 0x30, 0x83, 0x11, 0x5c, 0x50, 0x42, 0x0b, 0x4e, 0xf5, 0x4c, 0x60, - 0x19, 0x6f, 0x7c, 0x29, 0x98, 0x49, 0xd6, 0x5f, 0xe2, 0xa6, 0xfe, 0x19, 0x4e, 0xa5, 0xd3, 0x3d, - 0xb2, 0xb1, 0xde, 0x89, 0xf5, 0x4e, 0x02, 0xc2, 0x1f, 0x5a, 0x18, 0x84, 0x0d, 0x87, 0xb0, 0x61, - 0x11, 0x35, 0x3c, 0x9a, 0x0d, 0x93, 0x86, 0xc3, 0x65, 0xf1, 0x52, 0x30, 0xeb, 0x9d, 0xde, 0xac, - 0x02, 0x15, 0x3c, 0x6d, 0xb2, 0xe0, 0xe9, 0xce, 0x87, 0x05, 0x4f, 0x12, 0xc0, 0xcd, 0x82, 0x58, - 0x2c, 0x78, 0x92, 0xe6, 0x9e, 0x6f, 0xab, 0x3a, 0x0b, 0x9e, 0x1e, 0xad, 0xea, 0x6b, 0xab, 0x5b, - 0x6b, 0x5b, 0x1b, 0x9b, 0xab, 0x5b, 0xeb, 0xd4, 0x79, 0x19, 0x80, 0x08, 0x47, 0x8a, 0x3e, 0x1b, - 0xc5, 0xb4, 0x9b, 0xc5, 0xe9, 0x28, 0xfe, 0xd3, 0x8f, 0x87, 0x41, 0x74, 0xe6, 0xfa, 0xc3, 0x61, - 0xac, 0x92, 0x04, 0x27, 0x89, 0x72, 0x8f, 0x6c, 0x4c, 0xa2, 0x30, 0x89, 0xc2, 0x24, 0x0a, 0x93, - 0x28, 0x4c, 0xa2, 0x30, 0x89, 0x02, 0xe5, 0x75, 0x82, 0xf1, 0xc5, 0xda, 0x3c, 0x4a, 0xb9, 0xd1, - 0xc8, 0xfd, 0xef, 0x28, 0x52, 0x1c, 0x26, 0x72, 0x27, 0x5a, 0xd4, 0x79, 0x98, 0xc8, 0xcb, 0x7f, - 0x1c, 0x1d, 0x1f, 0x8f, 0xff, 0xda, 0xbb, 0x9a, 0xfe, 0xda, 0xb9, 0xea, 0xff, 0xeb, 0xd5, 0xcf, - 0x28, 0xbe, 0x77, 0x2a, 0xe8, 0xf1, 0xf1, 0xeb, 0xfe, 0x3f, 0x1d, 0x52, 0x80, 0x1a, 0x52, 0x00, - 0xac, 0x19, 0x11, 0x9c, 0x0d, 0x41, 0x98, 0x4f, 0x98, 0x4f, 0x98, 0x4f, 0x98, 0x4f, 0x98, 0xcf, - 0xd9, 0x10, 0xdf, 0x0b, 0x51, 0x9c, 0x0d, 0x71, 0xf7, 0xc3, 0xa3, 0x52, 0x09, 0xd8, 0x66, 0x41, - 0x2c, 0x1e, 0x95, 0x4a, 0xf3, 0xce, 0xb7, 0x55, 0x9d, 0x47, 0xa5, 0x8f, 0x56, 0x75, 0xce, 0x86, - 0x90, 0x82, 0x83, 0x70, 0xa4, 0x60, 0x7e, 0xc4, 0x40, 0x7e, 0x44, 0xa5, 0x71, 0x30, 0x00, 0xca, - 0x90, 0xcc, 0xe4, 0x61, 0x8e, 0x84, 0x39, 0x12, 0xe6, 0x48, 0x98, 0x23, 0x61, 0x8e, 0x84, 0x39, - 0x12, 0x2c, 0xaf, 0x93, 0x8c, 0x4f, 0x5d, 0x88, 0x20, 0x75, 0x33, 0x50, 0x6d, 0x30, 0x53, 0xc2, - 0x4c, 0x09, 0x33, 0x25, 0xcc, 0x94, 0x30, 0x53, 0x22, 0x4e, 0xd5, 0x37, 0xd6, 0xd7, 0xdf, 0xb0, - 0x9e, 0x9c, 0xc9, 0x12, 0x26, 0x4b, 0x84, 0x24, 0x4b, 0xb2, 0x21, 0x77, 0x68, 0x19, 0x93, 0x99, - 0x50, 0x4c, 0x9b, 0x30, 0x6d, 0xc2, 0xb4, 0x09, 0xd3, 0x26, 0x4c, 0x9b, 0x30, 0x6d, 0x02, 0xe5, - 0x75, 0x54, 0x34, 0x39, 0x57, 0xf1, 0x6c, 0x3c, 0x2e, 0x50, 0xe1, 0xf8, 0x1a, 0x80, 0x2c, 0xad, - 0x68, 0x72, 0x3e, 0x7d, 0x59, 0x57, 0x04, 0x74, 0xda, 0x9f, 0xfd, 0x38, 0x1e, 0x8d, 0xfd, 0x33, - 0x93, 0x63, 0x02, 0x17, 0x2c, 0xe5, 0x5a, 0x24, 0x82, 0x39, 0x82, 0x39, 0x82, 0x39, 0x82, 0x39, - 0x82, 0x39, 0x82, 0x39, 0x28, 0xaf, 0x73, 0x32, 0x1a, 0x85, 0xca, 0x87, 0x02, 0x72, 0x2b, 0x5c, - 0x2b, 0x63, 0xbf, 0x49, 0x70, 0xad, 0xcc, 0xb7, 0x76, 0x6d, 0xdc, 0xdd, 0x67, 0x50, 0xb3, 0xe5, - 0x32, 0x06, 0x06, 0xfa, 0x67, 0xaf, 0xc2, 0x1d, 0x9d, 0xba, 0x89, 0x8a, 0x2f, 0x82, 0x01, 0xc0, - 0xac, 0xf1, 0x05, 0x89, 0x38, 0x76, 0xbc, 0xae, 0x5c, 0x81, 0x63, 0xc7, 0x25, 0x70, 0x02, 0x8e, - 0x1d, 0x27, 0xc0, 0xb9, 0xf1, 0xf0, 0x8d, 0x8f, 0x1d, 0x9f, 0x06, 0x10, 0x84, 0x88, 0x76, 0x6f, - 0x64, 0x33, 0x1f, 0xd8, 0x40, 0x02, 0x1c, 0x4c, 0xa0, 0x43, 0x0a, 0x78, 0x90, 0x81, 0x0f, 0x2d, - 0x00, 0xc2, 0x06, 0x42, 0xd8, 0x80, 0x88, 0x1a, 0x18, 0xcd, 0xe7, 0x1e, 0x96, 0x00, 0x92, 0x63, - 0xa6, 0x03, 0xe6, 0x75, 0x4a, 0x20, 0x45, 0x38, 0x45, 0x5a, 0xf0, 0x81, 0x26, 0x97, 0x4f, 0x81, - 0x06, 0x4d, 0xb8, 0xe0, 0x89, 0x18, 0x44, 0xa1, 0x83, 0x29, 0x6a, 0x50, 0x85, 0x0f, 0xae, 0xf0, - 0x41, 0x16, 0x3d, 0xd8, 0x62, 0x04, 0x5d, 0x90, 0xe0, 0x0b, 0x17, 0x84, 0x0b, 0x81, 0x00, 0x97, - 0x67, 0x3d, 0xe8, 0x58, 0xe1, 0x96, 0x69, 0x3d, 0x14, 0xb6, 0xd1, 0xfa, 0x27, 0xd0, 0xc2, 0x37, - 0x72, 0x18, 0x17, 0x11, 0xce, 0xd1, 0xc3, 0xba, 0x98, 0xf0, 0x2e, 0x26, 0xcc, 0x4b, 0x09, 0xf7, - 0x58, 0x61, 0x1f, 0x2c, 0xfc, 0x17, 0x2f, 0x11, 0xa6, 0x50, 0xe5, 0x41, 0xaf, 0x07, 0xb3, 0x0c, - 0xec, 0xa1, 0x18, 0xbb, 0x09, 0x28, 0x1a, 0x56, 0x5f, 0xf7, 0xdd, 0x0f, 0x66, 0x88, 0x58, 0x42, - 0xed, 0xfb, 0x16, 0x02, 0xee, 0x16, 0xc4, 0x04, 0xed, 0x0b, 0x5f, 0x90, 0x13, 0xb8, 0x71, 0x16, - 0x3c, 0x7c, 0xdc, 0x36, 0x1d, 0xff, 0x2b, 0x4d, 0xa7, 0x64, 0xd3, 0x41, 0x5d, 0x5e, 0x26, 0xda, - 0x86, 0x5e, 0x50, 0xaa, 0x1f, 0xf9, 0xf4, 0x5f, 0xf0, 0xf9, 0x80, 0xfb, 0x60, 0xc4, 0x65, 0x69, - 0x0f, 0x02, 0x79, 0xb8, 0xe5, 0x69, 0x42, 0x82, 0x03, 0x93, 0x66, 0xcf, 0xd1, 0x3a, 0x26, 0xcd, - 0x9e, 0x63, 0x10, 0x4c, 0x9a, 0x95, 0x2c, 0x28, 0x93, 0x66, 0xf2, 0x59, 0x8f, 0x80, 0xa4, 0x19, - 0xe8, 0xf2, 0xb7, 0x87, 0x22, 0x2e, 0xc2, 0x32, 0xb8, 0xc5, 0xe8, 0x06, 0xb6, 0x1c, 0x6e, 0x41, - 0x40, 0x2e, 0x8b, 0xbb, 0xf7, 0xb1, 0x00, 0x2d, 0x8f, 0x23, 0xa5, 0x92, 0x47, 0xa9, 0x40, 0x86, - 0xab, 0x3f, 0xe8, 0xda, 0x61, 0xe6, 0xd8, 0x92, 0x3a, 0x91, 0x3a, 0x91, 0x3a, 0x91, 0x3a, 0x91, - 0x3a, 0x91, 0x3a, 0x59, 0x44, 0x9d, 0xb0, 0x86, 0xc5, 0x3f, 0x14, 0x68, 0x37, 0x58, 0x74, 0xf0, - 0xc8, 0x0f, 0x8b, 0x0e, 0x6c, 0x44, 0x78, 0x0b, 0x62, 0xb2, 0xe8, 0xc0, 0xf6, 0x18, 0x72, 0xdb, - 0x74, 0x58, 0x74, 0x50, 0xba, 0xe9, 0x00, 0x0e, 0xb7, 0x17, 0x6d, 0x3e, 0xac, 0x37, 0xf8, 0xa1, - 0x0f, 0x93, 0x63, 0xf0, 0xee, 0xd7, 0x49, 0x47, 0xc0, 0x05, 0x06, 0x53, 0xe1, 0x98, 0x16, 0xfb, - 0x11, 0xb1, 0x98, 0x16, 0x7b, 0x0e, 0x41, 0x64, 0x5a, 0xec, 0x19, 0x06, 0xc1, 0xb4, 0x58, 0xc9, - 0x82, 0x32, 0x2d, 0x26, 0x9f, 0xd2, 0x08, 0x69, 0xc3, 0x79, 0x0b, 0x9c, 0x10, 0x5b, 0x67, 0x42, - 0xec, 0x91, 0x1f, 0x26, 0xc4, 0x6a, 0xc5, 0xea, 0x99, 0x10, 0xb3, 0x35, 0x7a, 0xdc, 0x36, 0x1d, - 0x26, 0xc4, 0x4a, 0x37, 0x9d, 0xd5, 0x75, 0xa6, 0xc3, 0x2c, 0x05, 0x82, 0xb8, 0x52, 0x31, 0x1d, - 0x86, 0x2c, 0x09, 0xca, 0x18, 0x1f, 0x90, 0xe9, 0xfa, 0x0b, 0x72, 0xc9, 0x98, 0xb6, 0x7f, 0x77, - 0xf4, 0x7a, 0xe3, 0xce, 0xc4, 0x5a, 0x93, 0xe3, 0xf8, 0xf1, 0xf4, 0x1e, 0x40, 0xe7, 0xa1, 0x12, - 0xd0, 0x80, 0x89, 0x67, 0x30, 0x64, 0xc5, 0x71, 0x8d, 0x8f, 0x51, 0x23, 0x8e, 0x6b, 0x7c, 0x8c, - 0xa2, 0x73, 0x5c, 0xe3, 0x73, 0xa1, 0x03, 0xc7, 0x35, 0xca, 0xc1, 0x79, 0x70, 0x09, 0xe2, 0xc2, - 0x6b, 0x85, 0xca, 0x3f, 0x8d, 0xd5, 0x29, 0x92, 0xcf, 0x9a, 0x77, 0x95, 0x01, 0x4d, 0x66, 0x72, - 0x0e, 0x72, 0x28, 0xfc, 0xfa, 0xf5, 0x0c, 0x54, 0x36, 0xa6, 0xa0, 0x81, 0xc0, 0x12, 0x40, 0x02, - 0xd3, 0xe3, 0xd0, 0x7f, 0x55, 0x97, 0x18, 0x20, 0xd2, 0xe9, 0x04, 0x49, 0xda, 0x4c, 0x53, 0x90, - 0xe9, 0xec, 0xbb, 0x41, 0xd4, 0x0a, 0xd5, 0x34, 0x42, 0x4d, 0x21, 0x7f, 0x34, 0x09, 0x43, 0x00, - 0xfe, 0xb1, 0xeb, 0x7f, 0xc5, 0x13, 0x6a, 0x3f, 0x1e, 0xaa, 0x58, 0x0d, 0xb7, 0x2f, 0x73, 0x91, - 0x6a, 0x6d, 0x4e, 0x60, 0x19, 0x11, 0x4b, 0x32, 0x21, 0x08, 0xeb, 0x58, 0x92, 0x34, 0x9e, 0x0c, - 0xd2, 0x28, 0xc7, 0x1d, 0x7b, 0xb3, 0x47, 0xd3, 0xce, 0x9f, 0x8c, 0x77, 0x90, 0x3f, 0x0f, 0x6f, - 0x3f, 0x7b, 0x1e, 0x5e, 0x33, 0x56, 0xbe, 0xd7, 0x49, 0x86, 0x27, 0x5e, 0x27, 0xf1, 0xa7, 0xf0, - 0x69, 0xfa, 0xbb, 0xb7, 0x97, 0x24, 0x7e, 0x2b, 0xbf, 0xf1, 0xe9, 0x9f, 0xa7, 0xff, 0x61, 0xff, - 0xf4, 0x30, 0xbf, 0x49, 0x2e, 0x24, 0xb5, 0xdf, 0x51, 0x70, 0x21, 0xe9, 0xb3, 0x1c, 0x43, 0x6d, - 0x76, 0x93, 0xbe, 0xb0, 0xd8, 0x16, 0x4c, 0xdb, 0x80, 0x0c, 0xdd, 0x37, 0x10, 0xf3, 0xaa, 0x88, - 0x71, 0x7a, 0x2d, 0x56, 0x9f, 0xdd, 0x68, 0xb4, 0x19, 0x67, 0x34, 0xf6, 0xff, 0x33, 0x51, 0x99, - 0x52, 0xe8, 0xb6, 0x97, 0xeb, 0xf4, 0xf0, 0xb5, 0x0c, 0x9a, 0xbd, 0x85, 0x99, 0x1d, 0x50, 0xc6, - 0x0e, 0x0f, 0x4c, 0x1e, 0x12, 0x40, 0x1c, 0x06, 0x98, 0x4e, 0xfa, 0xc3, 0x24, 0xf7, 0x61, 0x92, - 0xf8, 0x28, 0xc9, 0x7a, 0xbb, 0x51, 0x91, 0xa9, 0x9d, 0x48, 0xd9, 0x3e, 0xa1, 0x68, 0xa8, 0x86, - 0x6e, 0x18, 0x44, 0x7f, 0x98, 0xdf, 0x48, 0x7f, 0x5b, 0x1c, 0xae, 0xa3, 0x37, 0x22, 0x00, 0xd7, - 0xd1, 0x63, 0x05, 0x25, 0xb8, 0xe0, 0x04, 0x17, 0xa4, 0xd0, 0x82, 0x55, 0x3d, 0xd3, 0x5b, 0xc6, - 0xd7, 0xd1, 0x63, 0x6c, 0xd5, 0x85, 0xda, 0xa6, 0xcb, 0xd5, 0xf3, 0x78, 0xc1, 0x0d, 0x32, 0xc8, - 0xa1, 0x05, 0x3b, 0xd8, 0xa0, 0x07, 0x1b, 0xfc, 0x50, 0x83, 0xa0, 0xd9, 0x60, 0x68, 0x38, 0x28, - 0xc2, 0x04, 0xc7, 0x42, 0x90, 0x29, 0xb3, 0x72, 0x87, 0x7e, 0xea, 0xe3, 0x55, 0x33, 0x5f, 0x8b, - 0xc6, 0x9a, 0x66, 0xe4, 0x20, 0x8a, 0x18, 0x4c, 0xa1, 0x83, 0x2a, 0x6a, 0x70, 0x85, 0x0f, 0xb2, - 0xf0, 0xc1, 0x16, 0x3d, 0xe8, 0x62, 0x04, 0x5f, 0x90, 0x20, 0x5c, 0xbc, 0x2c, 0xdc, 0x9a, 0xe6, - 0x49, 0x14, 0x8c, 0x22, 0xc4, 0x8a, 0xe6, 0x2d, 0x20, 0x99, 0xf2, 0xd7, 0x87, 0x35, 0xdc, 0x02, - 0x78, 0x82, 0xca, 0x70, 0x94, 0xa6, 0x6a, 0xe8, 0xfe, 0x67, 0xe2, 0x0f, 0xb9, 0x8a, 0xe5, 0x91, - 0x08, 0x87, 0xab, 0x58, 0xae, 0xff, 0x21, 0xd7, 0x9a, 0x88, 0x08, 0x6f, 0x02, 0x3c, 0x12, 0x57, - 0xab, 0x3f, 0x41, 0x34, 0x0e, 0x75, 0x7a, 0xe2, 0x83, 0xe3, 0x50, 0xa7, 0xf2, 0xc4, 0xe4, 0x50, - 0x27, 0xdb, 0xc3, 0xc6, 0x6d, 0xd3, 0xe1, 0x50, 0xa7, 0xd2, 0x4d, 0x87, 0xab, 0xd5, 0x6d, 0xcd, - 0x6f, 0xe0, 0x4b, 0xc5, 0xd9, 0x4e, 0xc8, 0xcf, 0x85, 0x93, 0x76, 0x8a, 0x13, 0xaa, 0x60, 0x08, - 0x7a, 0x3e, 0x15, 0x0c, 0x79, 0x3a, 0x75, 0xaf, 0x38, 0x3c, 0x9d, 0x7a, 0x84, 0x2a, 0xf1, 0x74, - 0xea, 0x31, 0x8a, 0xce, 0xd3, 0xa9, 0x67, 0x0a, 0xc8, 0xd3, 0x29, 0x39, 0x3c, 0x0c, 0xf8, 0x74, - 0x0a, 0xf3, 0x20, 0x01, 0xf1, 0x00, 0x01, 0xf6, 0xe0, 0xa0, 0xa6, 0x07, 0x06, 0xc4, 0xf7, 0x60, - 0xf8, 0x3e, 0x45, 0x72, 0x72, 0xb7, 0x11, 0x7e, 0x26, 0x1a, 0x31, 0x3e, 0x31, 0x3e, 0x31, 0x3e, - 0x31, 0x3e, 0x31, 0x3e, 0x31, 0x7e, 0xad, 0x30, 0x7e, 0x30, 0x54, 0x51, 0x1a, 0xa4, 0x97, 0xa0, - 0x93, 0x35, 0x81, 0xce, 0x4c, 0x9c, 0x76, 0xfe, 0xa8, 0xb6, 0xfd, 0x44, 0xe1, 0x2e, 0xa7, 0xdc, - 0x3f, 0x3c, 0xf8, 0xf0, 0x79, 0xd5, 0xeb, 0xee, 0x7f, 0xea, 0xb5, 0xba, 0x5e, 0xa7, 0xbd, 0xf7, - 0xab, 0xd7, 0xfb, 0xfd, 0xa0, 0x85, 0xe6, 0x5f, 0xb3, 0xd3, 0xb1, 0x04, 0xb2, 0xbc, 0x01, 0x74, - 0xa3, 0xe1, 0xfc, 0x05, 0x1f, 0xf6, 0x3e, 0x6d, 0x7b, 0x7b, 0xad, 0xde, 0xbf, 0xf7, 0xbb, 0xbf, - 0x66, 0xef, 0x17, 0x70, 0x07, 0xdf, 0x4f, 0x7c, 0xa9, 0x8f, 0x7b, 0xa9, 0x07, 0xfb, 0xed, 0xbd, - 0x9e, 0xd7, 0xdb, 0xf7, 0x66, 0x5f, 0xf8, 0x5a, 0xed, 0x78, 0xad, 0x9f, 0xdb, 0xdd, 0xde, 0xa7, - 0x66, 0x87, 0xef, 0xd3, 0x92, 0xf7, 0xd9, 0xeb, 0x36, 0xf7, 0x0e, 0xdb, 0x3d, 0x74, 0xf7, 0x0b, - 0x25, 0x51, 0x9f, 0x9c, 0x04, 0x4c, 0x8a, 0x2b, 0xce, 0x6d, 0xe6, 0xdc, 0xe6, 0x6f, 0x8e, 0xa8, - 0xbc, 0x1e, 0x01, 0xd8, 0xb8, 0x35, 0xa3, 0x09, 0x61, 0x4f, 0x95, 0xc1, 0xf1, 0xc5, 0x06, 0x87, - 0x12, 0xa5, 0xe1, 0x45, 0x82, 0x33, 0xeb, 0x24, 0x93, 0x86, 0xa3, 0x4e, 0x38, 0xea, 0xe4, 0x3b, - 0x7a, 0xc2, 0x51, 0x27, 0xdf, 0x52, 0x60, 0x8e, 0x3a, 0x79, 0x6c, 0xe8, 0xe6, 0xa8, 0x13, 0x3c, - 0x3c, 0x05, 0x33, 0xea, 0x24, 0x0d, 0x2f, 0x00, 0x57, 0x36, 0x86, 0x17, 0x60, 0x87, 0xcb, 0x2b, - 0x3c, 0x5c, 0x86, 0x0f, 0xa0, 0xd0, 0x81, 0x14, 0x35, 0xa0, 0xc2, 0x07, 0x56, 0xf8, 0x00, 0x8b, - 0x1e, 0x68, 0xc1, 0x12, 0x39, 0x20, 0x7e, 0x0b, 0x25, 0x00, 0x17, 0x02, 0xf9, 0xc3, 0xff, 0xf5, - 0x07, 0x2a, 0x1a, 0x5c, 0xba, 0x09, 0x50, 0x5f, 0xc7, 0x82, 0x4f, 0xbd, 0x2d, 0x26, 0x98, 0x05, - 0x62, 0x05, 0x6b, 0xd8, 0xa0, 0x8d, 0x1c, 0xbc, 0x45, 0x04, 0x71, 0xf4, 0x60, 0x2e, 0x26, 0xa8, - 0x8b, 0x09, 0xee, 0x52, 0x82, 0x3c, 0x56, 0xb0, 0x07, 0x0b, 0xfa, 0xb0, 0xc1, 0xbf, 0x10, 0x0c, - 0x63, 0x3a, 0xf7, 0x77, 0x7d, 0x32, 0xc2, 0xd4, 0x6e, 0x61, 0x20, 0x00, 0x1e, 0x0c, 0x48, 0x00, - 0x05, 0xa2, 0xc0, 0x81, 0x14, 0x90, 0x20, 0x0e, 0x2c, 0x88, 0x03, 0x0d, 0xd2, 0xc0, 0x03, 0x26, - 0x88, 0x00, 0x05, 0x13, 0xf0, 0xa0, 0xa2, 0x10, 0xf0, 0xc4, 0x1f, 0xfc, 0x31, 0x19, 0xe3, 0xfb, - 0xa1, 0xb9, 0x73, 0xcf, 0xe5, 0x05, 0xb7, 0xe9, 0x1d, 0x75, 0xea, 0x4f, 0xc2, 0xcc, 0xa4, 0x4f, - 0xfd, 0x30, 0x51, 0xe8, 0xf2, 0x0a, 0x19, 0x04, 0x85, 0x0e, 0x93, 0x24, 0xc1, 0x25, 0x91, 0xb0, - 0x49, 0x1a, 0x7c, 0x12, 0x0b, 0xa3, 0xc4, 0xc2, 0x29, 0xa9, 0xb0, 0x0a, 0x1b, 0x5e, 0x81, 0xc3, - 0xac, 0xe2, 0xa5, 0xc3, 0x75, 0x07, 0x7e, 0x1f, 0xcf, 0x8c, 0x46, 0xa1, 0xf2, 0x23, 0x09, 0x3e, - 0x77, 0x9e, 0x43, 0x59, 0x79, 0x41, 0x03, 0xb2, 0xcc, 0x78, 0x9c, 0xb3, 0x78, 0x24, 0x89, 0x05, - 0xcc, 0xc4, 0x25, 0x09, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, - 0x20, 0x8e, 0x21, 0x09, 0x20, 0x09, 0x20, 0x09, 0x78, 0xfa, 0xbb, 0x3d, 0x9f, 0x84, 0x69, 0xe0, - 0xa6, 0xa3, 0xf1, 0x28, 0x1c, 0x9d, 0x5d, 0xba, 0xb3, 0x81, 0x36, 0xa7, 0x81, 0x8a, 0xe5, 0x10, - 0x83, 0x87, 0x6f, 0x81, 0xe0, 0x9b, 0xe0, 0x9b, 0xe0, 0x9b, 0xe0, 0x9b, 0xe0, 0x9b, 0xe0, 0x9b, - 0xe0, 0x9b, 0xe0, 0xfb, 0xd6, 0x4a, 0xbd, 0xb7, 0x82, 0xa0, 0xf7, 0xba, 0x00, 0x51, 0xb1, 0x37, - 0xee, 0xdd, 0xfd, 0xc8, 0x88, 0x60, 0x4b, 0x52, 0x36, 0xf2, 0x09, 0xc5, 0xb6, 0x0b, 0x62, 0x0b, - 0xd9, 0xd8, 0xb7, 0x20, 0xb7, 0xa0, 0xed, 0x63, 0xc2, 0xa2, 0xdb, 0x6d, 0x53, 0xf4, 0xbf, 0xd2, - 0x14, 0x35, 0x9b, 0xe2, 0xea, 0xfa, 0x3a, 0x8d, 0x91, 0x40, 0x58, 0x96, 0x94, 0x7d, 0xa6, 0x4a, - 0x6d, 0x0b, 0x06, 0x4e, 0x12, 0x0c, 0xb1, 0x36, 0x71, 0x7c, 0x97, 0xe6, 0x14, 0x12, 0x33, 0x11, - 0x5a, 0x86, 0x98, 0x4c, 0x84, 0x56, 0xa8, 0xab, 0x4c, 0x84, 0x56, 0x69, 0x60, 0x4c, 0x84, 0x6a, - 0x16, 0x9c, 0x89, 0xd0, 0xfa, 0x51, 0x45, 0x81, 0x89, 0xd0, 0x24, 0x76, 0x85, 0x80, 0x84, 0x9b, - 0x40, 0x61, 0x65, 0x4d, 0x80, 0xac, 0xad, 0x68, 0x72, 0x3e, 0x55, 0x86, 0x2b, 0x52, 0x01, 0x2b, - 0xa9, 0xc0, 0x45, 0x9e, 0x9f, 0x10, 0xc4, 0x05, 0x66, 0x22, 0x93, 0x0c, 0x90, 0x0c, 0x90, 0x0c, - 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0x90, 0x0c, 0xdc, 0xaa, 0x8a, 0x78, 0xb3, 0x2a, - 0x88, 0x07, 0x6c, 0xb2, 0x2c, 0xa2, 0xe4, 0x0f, 0xcb, 0x22, 0x08, 0x6e, 0xef, 0x11, 0x9b, 0x65, - 0x11, 0x0c, 0x6f, 0xdf, 0x32, 0x45, 0x96, 0x45, 0x68, 0x37, 0xc5, 0xb5, 0xd5, 0xad, 0xb5, 0xad, - 0x8d, 0xcd, 0xd5, 0x2d, 0x56, 0x47, 0x10, 0x10, 0x0b, 0x93, 0x92, 0xd5, 0x11, 0xd6, 0xc5, 0x04, - 0xe7, 0x4f, 0x15, 0x9c, 0x7d, 0x49, 0xe5, 0xe4, 0x43, 0x73, 0x79, 0x99, 0x0c, 0x2d, 0x43, 0x4c, - 0x26, 0x43, 0x2b, 0xd4, 0x54, 0x26, 0x43, 0xab, 0x34, 0x30, 0x26, 0x43, 0x35, 0x0b, 0xce, 0x64, - 0x68, 0xfd, 0xd8, 0x22, 0x5b, 0xc4, 0x2a, 0x87, 0x08, 0x6c, 0x11, 0x2b, 0xfb, 0xc3, 0x5c, 0x28, - 0xb1, 0xed, 0x3d, 0x62, 0x33, 0x17, 0xca, 0xe8, 0xf6, 0x2d, 0x53, 0x64, 0x2e, 0x54, 0xbb, 0x29, - 0xb2, 0x45, 0x8c, 0x40, 0x58, 0x9c, 0x94, 0x4c, 0x82, 0xda, 0x24, 0x19, 0xea, 0x32, 0x92, 0x66, - 0x14, 0x8d, 0x52, 0x7f, 0xea, 0x6a, 0xb0, 0x77, 0x92, 0x24, 0x83, 0x2f, 0xea, 0xdc, 0x1f, 0xfb, - 0xe9, 0x97, 0x29, 0xf9, 0x6a, 0x8c, 0xc6, 0x2a, 0x1a, 0x64, 0x49, 0x45, 0x37, 0x52, 0xe9, 0x9f, - 0xa3, 0xf8, 0x0f, 0x37, 0x88, 0x92, 0xd4, 0x8f, 0x06, 0xaa, 0x71, 0xf7, 0x2f, 0x92, 0x85, 0xbf, - 0x69, 0x8c, 0xe3, 0x51, 0x3a, 0x1a, 0x8c, 0xc2, 0xa4, 0xf8, 0xd6, 0x98, 0xe5, 0x19, 0x1a, 0x7e, - 0xac, 0xfc, 0x24, 0xfb, 0xb5, 0x11, 0x26, 0xc3, 0x93, 0x46, 0x98, 0xf8, 0x59, 0xf5, 0x7b, 0x52, - 0x7c, 0x9b, 0x7e, 0xc9, 0xfe, 0xd4, 0x18, 0x8d, 0xfd, 0xff, 0x4c, 0x94, 0x3b, 0xfd, 0xaa, 0xbe, - 0xa6, 0x2a, 0x1a, 0xaa, 0xa1, 0x1b, 0x06, 0xd1, 0x1f, 0x8d, 0x34, 0xbc, 0x48, 0xa6, 0xbf, 0x34, - 0x6e, 0x2d, 0x41, 0x6d, 0xcc, 0xb6, 0xa1, 0xbd, 0xa0, 0xd1, 0xc8, 0x93, 0x08, 0x6d, 0x31, 0x21, - 0xb8, 0xd9, 0xda, 0x60, 0xae, 0x88, 0x6b, 0x64, 0x93, 0x34, 0x9e, 0x0c, 0xd2, 0x28, 0x4f, 0x41, - 0xed, 0xcd, 0x9e, 0x53, 0x3b, 0x7f, 0x4c, 0xde, 0x41, 0xfe, 0x70, 0xbc, 0xfd, 0xec, 0xe1, 0x78, - 0xcd, 0x58, 0xf9, 0x5e, 0x27, 0x19, 0x9e, 0x78, 0x9d, 0xc4, 0xef, 0x5d, 0x8e, 0xd5, 0xf4, 0x77, - 0x6f, 0x3f, 0x7b, 0x0c, 0xd3, 0x6f, 0xad, 0xfc, 0x29, 0x74, 0x82, 0xe8, 0x0f, 0xaf, 0x17, 0x5e, - 0x78, 0xcd, 0xf9, 0xfd, 0x1f, 0x06, 0x43, 0x2c, 0x3f, 0x85, 0xe3, 0x0d, 0x80, 0x3c, 0x01, 0xe8, - 0x16, 0x50, 0xe8, 0xed, 0x9f, 0x5c, 0xfd, 0xfd, 0x48, 0xc1, 0xb8, 0xfa, 0xfb, 0x99, 0x42, 0x72, - 0xf5, 0x77, 0x49, 0x82, 0x72, 0xf5, 0x37, 0x11, 0xb6, 0xbe, 0x97, 0x08, 0xbb, 0xfa, 0x1b, 0x7a, - 0xc4, 0x4c, 0xe1, 0x92, 0x81, 0x3b, 0xc6, 0xc1, 0xb3, 0xd9, 0x5c, 0xfc, 0x5d, 0x17, 0x68, 0x20, - 0x05, 0x22, 0x88, 0x83, 0x0a, 0xe2, 0x20, 0x83, 0x34, 0xe8, 0x80, 0x09, 0x21, 0x40, 0xa1, 0x44, - 0xf1, 0x72, 0xe1, 0x8b, 0x9c, 0x0a, 0xaf, 0x39, 0xdb, 0x91, 0x91, 0x5e, 0xc6, 0xea, 0x14, 0xd9, - 0x6f, 0xce, 0xb9, 0x3c, 0xf0, 0xe9, 0xae, 0xd3, 0xce, 0x1f, 0xe5, 0xb6, 0x9f, 0x08, 0x9a, 0x06, - 0xb2, 0x7f, 0x78, 0xf0, 0xe1, 0xf3, 0xaa, 0xd7, 0xfa, 0xad, 0xd7, 0xda, 0xdb, 0x69, 0xed, 0x78, - 0x9d, 0xf6, 0xde, 0xaf, 0xde, 0xe1, 0xa7, 0xed, 0x5e, 0xe7, 0xb3, 0xd7, 0xfb, 0xfd, 0xa0, 0x85, - 0xee, 0xf8, 0xb3, 0x93, 0xff, 0x44, 0x44, 0x29, 0x99, 0x90, 0x42, 0xe8, 0xb9, 0x66, 0x34, 0x77, - 0xfe, 0x6f, 0xf3, 0x7d, 0x6b, 0xef, 0xfd, 0xef, 0xde, 0x61, 0x7b, 0x87, 0x65, 0xb9, 0xcf, 0xfb, - 0xf4, 0x19, 0xd9, 0x85, 0x4b, 0xc5, 0x24, 0xca, 0x37, 0xe1, 0x2c, 0x8f, 0x29, 0x2b, 0x38, 0xa6, - 0x04, 0xac, 0x23, 0xe0, 0xf9, 0xdc, 0x7d, 0xea, 0x35, 0x89, 0xfe, 0x88, 0x46, 0x7f, 0x46, 0x6e, - 0x1a, 0x5e, 0xe0, 0x9e, 0xd2, 0xdd, 0x14, 0x92, 0x67, 0x75, 0x3f, 0x22, 0x16, 0xcf, 0xea, 0x9e, - 0xa1, 0x6e, 0x3c, 0xab, 0x7b, 0x8e, 0x41, 0xf0, 0xac, 0xae, 0x6c, 0x84, 0xc2, 0xb3, 0x3a, 0xf9, - 0x30, 0x13, 0xf6, 0xac, 0x0e, 0xb3, 0x40, 0x67, 0xc1, 0x27, 0x23, 0x16, 0xea, 0x80, 0x83, 0x00, - 0x78, 0x30, 0x20, 0x01, 0x14, 0x88, 0x02, 0x07, 0x52, 0x40, 0x82, 0x38, 0xb0, 0x20, 0x0e, 0x34, - 0x48, 0x03, 0x0f, 0x98, 0x20, 0x02, 0x14, 0x4c, 0xc0, 0x83, 0x8a, 0x42, 0xc0, 0x50, 0x45, 0x67, - 0x59, 0xe2, 0x4a, 0xc8, 0x99, 0x52, 0x2e, 0x2f, 0x27, 0x2a, 0xd5, 0x01, 0x76, 0x48, 0x82, 0x1f, - 0x22, 0x61, 0x88, 0x34, 0x38, 0x22, 0x16, 0x96, 0x88, 0x85, 0x27, 0x52, 0x61, 0x0a, 0x36, 0x5c, - 0x01, 0x87, 0x2d, 0xc5, 0x4b, 0x97, 0x39, 0x51, 0x69, 0x65, 0x43, 0xd0, 0x48, 0xa5, 0x0d, 0x8e, - 0x54, 0x2a, 0xf9, 0xc3, 0x91, 0x4a, 0x04, 0xb7, 0xf7, 0x88, 0xcd, 0x91, 0x4a, 0x0c, 0x6f, 0xdf, - 0x32, 0x45, 0x8e, 0x54, 0xd2, 0x6e, 0x8a, 0x1b, 0xeb, 0xeb, 0x6f, 0x38, 0x54, 0x89, 0x58, 0x58, - 0x98, 0x94, 0x1c, 0xaa, 0x64, 0x5d, 0x38, 0x70, 0x64, 0xed, 0xdc, 0xe7, 0xbe, 0xfd, 0xd2, 0xc4, - 0x64, 0x0e, 0xb4, 0x42, 0x3d, 0x65, 0x0e, 0xb4, 0x4a, 0x03, 0x63, 0x0e, 0x54, 0xb3, 0xe0, 0xcc, - 0x81, 0xd6, 0x8f, 0x24, 0x32, 0x07, 0x5a, 0x3d, 0x46, 0x60, 0x0e, 0xb4, 0xec, 0x0f, 0x73, 0xa0, - 0x04, 0xb7, 0xf7, 0x88, 0xcd, 0x1c, 0x28, 0xc3, 0xdb, 0xb7, 0x4c, 0x91, 0x39, 0x50, 0xed, 0xa6, - 0xc8, 0x1c, 0x28, 0xb1, 0xb0, 0x40, 0x29, 0x99, 0x03, 0xb5, 0x2e, 0x1c, 0x38, 0x17, 0xb9, 0x4b, - 0x12, 0x92, 0x04, 0x9d, 0x89, 0xcb, 0x2c, 0x68, 0x19, 0x62, 0x32, 0x0b, 0x5a, 0xa1, 0xa2, 0x32, - 0x0b, 0x5a, 0xa5, 0x81, 0x31, 0x0b, 0xaa, 0x59, 0x70, 0x66, 0x41, 0xeb, 0x47, 0x13, 0x05, 0x66, - 0x41, 0x4f, 0x82, 0xc8, 0x8f, 0x2f, 0x05, 0x65, 0x41, 0xb7, 0x08, 0xa9, 0x2d, 0x92, 0x8c, 0xbb, - 0x9a, 0x9e, 0x27, 0xa7, 0xcc, 0xa9, 0x4a, 0x37, 0xe6, 0xe0, 0x70, 0x53, 0x93, 0x5c, 0x89, 0x38, - 0x02, 0xad, 0x66, 0xc6, 0x5a, 0xc3, 0x3d, 0x4d, 0x9f, 0x66, 0x77, 0xdf, 0x0b, 0x2f, 0x38, 0x05, - 0x0e, 0x59, 0x12, 0x10, 0x5f, 0xe4, 0x74, 0x82, 0x24, 0x6d, 0xa6, 0x29, 0x56, 0x3f, 0xbb, 0xb3, - 0x1b, 0x44, 0xad, 0x50, 0x4d, 0xe9, 0x68, 0xe2, 0xbc, 0x5b, 0x8a, 0x26, 0x61, 0x08, 0x34, 0xba, - 0x6f, 0xd7, 0xff, 0x8a, 0x2b, 0xdc, 0x7e, 0x3c, 0x54, 0xb1, 0x1a, 0x6e, 0x5f, 0xe6, 0xa2, 0x51, - 0xd9, 0xf1, 0x03, 0xae, 0xcc, 0x40, 0xeb, 0x40, 0x6d, 0xbb, 0xab, 0x32, 0xa8, 0x62, 0x44, 0x52, - 0xf3, 0x71, 0xcb, 0xac, 0x04, 0x86, 0x9d, 0x08, 0x9a, 0xf3, 0x90, 0xe7, 0x34, 0xcc, 0x9a, 0x91, - 0x39, 0xe5, 0x35, 0x73, 0x65, 0x43, 0xe6, 0x82, 0x62, 0x26, 0xa2, 0xcc, 0xc3, 0x60, 0x28, 0xad, - 0x30, 0x74, 0x9a, 0xb1, 0x77, 0xfd, 0xd6, 0x66, 0xc0, 0xd2, 0x9c, 0x42, 0x7d, 0xc6, 0x66, 0x4f, - 0xce, 0x8b, 0x73, 0x99, 0xbb, 0x02, 0x19, 0xf2, 0x3e, 0x66, 0x27, 0x82, 0x1a, 0x2f, 0xb8, 0x40, - 0x28, 0xa4, 0x80, 0x2a, 0x90, 0x40, 0x29, 0x7c, 0x80, 0x2b, 0x68, 0x80, 0x2b, 0x54, 0x40, 0x2b, - 0x40, 0xa8, 0x17, 0x6a, 0x33, 0x3d, 0xd1, 0x12, 0x64, 0x1c, 0x36, 0xd4, 0xd8, 0x6b, 0x90, 0xf1, - 0xd6, 0x30, 0x55, 0x84, 0x48, 0x55, 0x82, 0x90, 0x55, 0x80, 0x68, 0x55, 0x7e, 0xb0, 0x55, 0x7c, - 0xb0, 0x55, 0x7a, 0xa8, 0x55, 0x78, 0xf5, 0xce, 0xfc, 0xa1, 0x8c, 0x7b, 0x76, 0xfc, 0xe1, 0x30, - 0x56, 0x49, 0xe2, 0x9e, 0xfa, 0xe7, 0x41, 0x78, 0x89, 0x63, 0xe7, 0x73, 0x67, 0x78, 0x47, 0x3e, - 0x10, 0x9b, 0xc2, 0x2a, 0xd6, 0x87, 0x2b, 0xca, 0x47, 0x2c, 0xbe, 0x87, 0x2e, 0xb2, 0x47, 0x2d, - 0xa6, 0x87, 0x2f, 0x9a, 0x87, 0x2f, 0x8e, 0x47, 0x2f, 0x82, 0x67, 0xe9, 0xca, 0xcd, 0x97, 0x05, - 0x57, 0xbc, 0x7e, 0x9d, 0x0c, 0x8d, 0x26, 0xe7, 0x2a, 0x9e, 0x1d, 0x82, 0x00, 0xf9, 0xad, 0x39, - 0x9f, 0x5c, 0x03, 0x92, 0xa9, 0x15, 0x4d, 0xce, 0xa7, 0x2f, 0xf1, 0x8a, 0x67, 0xec, 0x28, 0xc6, - 0xe5, 0xf8, 0x69, 0xea, 0x0f, 0xbe, 0xa8, 0x21, 0x20, 0xc0, 0x9c, 0x4b, 0x06, 0xe2, 0x82, 0x76, - 0xd4, 0xa9, 0x3f, 0x09, 0xb3, 0x70, 0x71, 0xea, 0x87, 0x89, 0x22, 0xe4, 0x25, 0xe4, 0x25, 0xe4, - 0x25, 0xe4, 0x25, 0xe4, 0x25, 0xe4, 0xad, 0x17, 0xe4, 0x3d, 0x19, 0x8d, 0x42, 0xe5, 0x43, 0xc2, - 0xdd, 0x15, 0x42, 0x4b, 0x18, 0x68, 0x19, 0x8d, 0x86, 0x0a, 0x0f, 0x56, 0x66, 0x52, 0x11, 0x52, - 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, 0x12, 0x52, - 0xca, 0x80, 0x94, 0x63, 0xac, 0xc0, 0x5b, 0xa8, 0x2f, 0x56, 0xc5, 0x0b, 0xe1, 0x1b, 0xe1, 0x1b, - 0xe1, 0x1b, 0xe1, 0x1b, 0xe1, 0x1b, 0xe1, 0x9b, 0x1e, 0xaf, 0x15, 0x8c, 0x2f, 0xd6, 0xdc, 0x79, - 0x45, 0x58, 0x34, 0x72, 0xff, 0x3b, 0x8a, 0x14, 0x22, 0x96, 0x7b, 0x0b, 0x24, 0xd3, 0x81, 0x9f, - 0xa6, 0x2a, 0x8e, 0xe0, 0x16, 0x52, 0x38, 0x2f, 0x5f, 0x1e, 0x2d, 0xbb, 0x5b, 0xfd, 0xbf, 0x8f, - 0x56, 0xdc, 0xad, 0xfe, 0xec, 0xeb, 0x4a, 0xf6, 0xdb, 0xec, 0xfb, 0xea, 0xd1, 0xb2, 0xbb, 0x36, - 0xff, 0xbe, 0x7e, 0xb4, 0xec, 0xae, 0xf7, 0x5f, 0x1d, 0x1f, 0xbf, 0x7e, 0xf5, 0xd7, 0x9b, 0xab, - 0xc7, 0xff, 0xc3, 0x97, 0xff, 0x38, 0x3a, 0x3e, 0x1e, 0xff, 0xb5, 0x77, 0x35, 0xfd, 0xb5, 0x73, - 0xd5, 0xff, 0xd7, 0xab, 0x9f, 0xd1, 0x7c, 0xf8, 0x54, 0xe0, 0xe3, 0xe3, 0xd7, 0xfd, 0x7f, 0xe2, - 0xb8, 0xc5, 0x3e, 0x29, 0x09, 0x18, 0x25, 0x71, 0x43, 0x15, 0x9d, 0x65, 0xed, 0xc7, 0x90, 0xcc, - 0x64, 0x2e, 0x1e, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x4a, 0xad, - 0x08, 0xca, 0x24, 0x88, 0xd2, 0xb7, 0x80, 0x8c, 0x04, 0x68, 0x6f, 0x10, 0xe8, 0x7e, 0x3c, 0xc0, - 0x59, 0xa9, 0xc8, 0xfb, 0xee, 0xc0, 0xd7, 0x95, 0xa0, 0xef, 0xaf, 0x93, 0xb0, 0x18, 0x0b, 0x70, - 0x2e, 0x39, 0xf4, 0xde, 0x39, 0x29, 0x26, 0xf1, 0x66, 0x95, 0x36, 0x21, 0x1b, 0x87, 0xe1, 0x49, - 0xc3, 0x4c, 0x11, 0x8c, 0xcf, 0x74, 0xe2, 0xd1, 0x24, 0x55, 0xd9, 0x94, 0x38, 0xbc, 0x34, 0xd1, - 0x0d, 0xd9, 0x98, 0x23, 0xba, 0x4f, 0x1c, 0xe6, 0x88, 0x1e, 0xa1, 0x4d, 0xcc, 0x11, 0x3d, 0x46, - 0xd1, 0x99, 0x23, 0x7a, 0xa6, 0x80, 0xcc, 0x11, 0xc9, 0x61, 0x0d, 0xec, 0xe4, 0x7e, 0x62, 0x20, - 0x64, 0x27, 0x37, 0x32, 0xbc, 0xe4, 0xb4, 0x74, 0x4e, 0x4b, 0x7f, 0xf4, 0x38, 0xe8, 0x59, 0xb8, - 0x47, 0xd8, 0x32, 0x66, 0x70, 0x60, 0xba, 0xc1, 0x79, 0xb1, 0xd9, 0xa0, 0x7a, 0x98, 0x31, 0x94, - 0x99, 0x34, 0x9c, 0x42, 0xc9, 0x29, 0x94, 0x82, 0xc8, 0x15, 0xa7, 0x50, 0x4a, 0x27, 0x51, 0x9c, - 0x42, 0x89, 0x88, 0xa8, 0x60, 0xa6, 0x50, 0xa6, 0xe1, 0x05, 0x5e, 0xb2, 0x12, 0x67, 0x21, 0x15, - 0x48, 0xc0, 0x84, 0x0b, 0x9c, 0x88, 0x01, 0x14, 0x3a, 0x90, 0xa2, 0x06, 0x54, 0xf8, 0xc0, 0x0a, - 0x1f, 0x60, 0xd1, 0x03, 0x2d, 0x4e, 0x12, 0x65, 0x09, 0x28, 0x4b, 0x89, 0x12, 0x80, 0x0b, 0x81, - 0xee, 0x24, 0x0d, 0xdc, 0x38, 0x2f, 0xd6, 0x02, 0x73, 0x13, 0x0f, 0xac, 0x08, 0xca, 0xc5, 0x05, - 0xb3, 0x48, 0xac, 0xe0, 0x0d, 0x1b, 0xc4, 0x91, 0x83, 0xb9, 0x88, 0xa0, 0x8e, 0x1e, 0xdc, 0xc5, - 0x04, 0x79, 0x31, 0xc1, 0x5e, 0x4a, 0xd0, 0xc7, 0x0a, 0xfe, 0x60, 0x20, 0x00, 0x16, 0x0c, 0x14, - 0x82, 0x61, 0x2c, 0x52, 0xfa, 0xae, 0x4f, 0x46, 0x58, 0xb0, 0x24, 0x0c, 0x04, 0xc0, 0x83, 0x01, - 0x09, 0xa0, 0x40, 0x14, 0x38, 0x90, 0x02, 0x12, 0xc4, 0x81, 0x05, 0x71, 0xa0, 0x41, 0x1a, 0x78, - 0xc0, 0x04, 0x11, 0xa0, 0x60, 0x02, 0x1e, 0x54, 0x14, 0x02, 0x82, 0x2e, 0xa0, 0xfa, 0xae, 0x93, - 0x87, 0x5c, 0x4c, 0xf5, 0x3d, 0xf8, 0xb1, 0x0c, 0x2e, 0x26, 0x3a, 0x0c, 0x91, 0x04, 0x47, 0x44, - 0xc2, 0x12, 0x69, 0xf0, 0x44, 0x2c, 0x4c, 0x11, 0x0b, 0x57, 0xa4, 0xc2, 0x16, 0x6c, 0xf8, 0x02, - 0x0e, 0x63, 0x8a, 0x97, 0x0e, 0x57, 0xd6, 0xfd, 0x5d, 0xaf, 0x8b, 0x59, 0xee, 0xfd, 0xdd, 0x3c, - 0xc5, 0x9a, 0x00, 0x59, 0xb1, 0xca, 0xc3, 0xe5, 0x19, 0x3c, 0xb0, 0xb1, 0x3b, 0x41, 0x94, 0xaa, - 0xd8, 0xf5, 0x63, 0xe5, 0xcb, 0xa1, 0x04, 0x37, 0x64, 0x06, 0x77, 0xa3, 0xa0, 0x1b, 0x21, 0x48, - 0x5f, 0x48, 0x5f, 0x48, 0x5f, 0x48, 0x5f, 0x48, 0x5f, 0x88, 0x66, 0x48, 0x5f, 0x20, 0xbc, 0x2e, - 0xde, 0xc6, 0x8c, 0xef, 0x52, 0x97, 0x15, 0xd2, 0x01, 0xeb, 0xe8, 0xc0, 0x58, 0x06, 0x60, 0xc1, - 0xdc, 0xd4, 0x41, 0x58, 0x4d, 0x58, 0x4d, 0x58, 0x4d, 0x58, 0x4d, 0x58, 0x4d, 0x54, 0x40, 0x58, - 0x0d, 0xe1, 0x75, 0xb3, 0x4d, 0x26, 0x62, 0x5c, 0x02, 0xe2, 0x62, 0x93, 0x87, 0x83, 0x30, 0xe8, - 0xc2, 0x93, 0x07, 0x05, 0xd6, 0xb9, 0x08, 0xa5, 0x91, 0x5f, 0xec, 0xd5, 0xdf, 0x2f, 0x8f, 0x56, - 0xdc, 0xd5, 0xfe, 0xfc, 0x0f, 0x6f, 0x8e, 0x96, 0xdd, 0xd5, 0xfe, 0xab, 0x57, 0xf8, 0x9e, 0xb2, - 0x4f, 0x76, 0x67, 0x29, 0xbb, 0x43, 0x5b, 0x6e, 0xf2, 0x83, 0x24, 0x0f, 0x6b, 0xe9, 0x09, 0xb9, - 0x1e, 0xb9, 0x1e, 0xb9, 0x1e, 0xb9, 0x1e, 0xb9, 0x1e, 0x31, 0x02, 0xb9, 0x1e, 0x84, 0xd7, 0x45, - 0x5b, 0x0a, 0xf3, 0x3d, 0x88, 0xb0, 0x2e, 0x40, 0x54, 0xcc, 0x25, 0x32, 0x0f, 0x7d, 0x64, 0x44, - 0xb0, 0x25, 0xf4, 0xa5, 0x33, 0xc2, 0xb1, 0xed, 0x82, 0xd8, 0xe0, 0x4b, 0x6a, 0x1e, 0x94, 0x5b, - 0xc0, 0xa2, 0x0e, 0xa1, 0xd1, 0xed, 0xb6, 0x29, 0xfa, 0x5f, 0x69, 0x8a, 0x9a, 0x4d, 0x11, 0x75, - 0x39, 0x8e, 0x95, 0xb6, 0xf8, 0x82, 0x52, 0x96, 0xf1, 0x61, 0x46, 0xd4, 0xba, 0x58, 0xe0, 0x64, - 0x83, 0xac, 0xdc, 0x24, 0xf8, 0xaf, 0x92, 0x93, 0x0e, 0xbd, 0x21, 0x33, 0x73, 0xa1, 0x65, 0x88, - 0xc9, 0x5c, 0x68, 0x85, 0xda, 0xca, 0x5c, 0x68, 0x95, 0x06, 0xc6, 0x5c, 0xa8, 0x66, 0xc1, 0x99, - 0x0b, 0xad, 0x1f, 0x5b, 0x14, 0x9a, 0x0b, 0x5d, 0xd9, 0x10, 0x94, 0x0c, 0xdd, 0x60, 0x32, 0xb4, - 0xe4, 0x0f, 0x93, 0xa1, 0x04, 0xb7, 0xf7, 0x88, 0xcd, 0x64, 0x28, 0xc3, 0xdb, 0xb7, 0x4c, 0x91, - 0xc9, 0x50, 0xed, 0xa6, 0xb8, 0xb1, 0xbe, 0xfe, 0x66, 0x9d, 0xe6, 0x48, 0x2c, 0x2c, 0x4b, 0x4a, - 0xe6, 0x43, 0x6d, 0x92, 0x0c, 0x75, 0xb0, 0x22, 0xd8, 0x36, 0xca, 0x07, 0xe5, 0x14, 0xb6, 0xa5, - 0x32, 0x0d, 0x2f, 0x92, 0xe9, 0x2f, 0x8d, 0x7b, 0x57, 0x3b, 0x20, 0x2c, 0xb1, 0x94, 0x63, 0x3e, - 0x1c, 0xb7, 0x2e, 0xd8, 0x80, 0xed, 0x32, 0x5c, 0xc4, 0x35, 0x19, 0x49, 0x1a, 0x4f, 0x06, 0x69, - 0x94, 0x67, 0xa6, 0xf6, 0x66, 0x4f, 0xac, 0x9d, 0x3f, 0x30, 0xef, 0x20, 0x7f, 0x4c, 0xde, 0x7e, - 0xf6, 0x98, 0xbc, 0x66, 0xac, 0x7c, 0xaf, 0x93, 0x0c, 0x4f, 0xbc, 0x4e, 0xe2, 0xf7, 0x2e, 0xc7, - 0x6a, 0xfa, 0xbb, 0xb7, 0x9f, 0x3d, 0x90, 0xe9, 0xb7, 0x56, 0x7e, 0xdb, 0xb3, 0xb3, 0x10, 0xaf, - 0x17, 0x5e, 0xdc, 0xf9, 0xab, 0x59, 0x96, 0xe6, 0x05, 0x1d, 0x04, 0xb8, 0x73, 0x98, 0xb7, 0x75, - 0x24, 0xc1, 0x10, 0x77, 0xf1, 0xd1, 0x0d, 0x19, 0xb9, 0xed, 0xe8, 0x47, 0xc4, 0xe2, 0xb6, 0xa3, - 0x67, 0x68, 0x1b, 0xb7, 0x1d, 0x3d, 0xc7, 0x20, 0xb8, 0xed, 0xa8, 0x6c, 0xe4, 0xc6, 0x6d, 0x47, - 0xf2, 0xe1, 0x37, 0xb7, 0x1d, 0x3d, 0xcf, 0x27, 0x73, 0xdb, 0x91, 0x7d, 0x60, 0x40, 0x02, 0x28, - 0x10, 0x05, 0x0e, 0xa4, 0x80, 0x04, 0x71, 0x60, 0x41, 0x1c, 0x68, 0x90, 0x06, 0x1e, 0x30, 0x41, - 0x04, 0x28, 0x98, 0x80, 0x07, 0x15, 0x85, 0x80, 0x7e, 0x78, 0x36, 0x8a, 0x83, 0xf4, 0xcb, 0xb9, - 0xa0, 0x45, 0x47, 0x85, 0xc8, 0xac, 0xea, 0xae, 0x03, 0xf8, 0x90, 0x04, 0x42, 0x44, 0x82, 0x11, - 0x69, 0xa0, 0x44, 0x2c, 0x38, 0x11, 0x0b, 0x52, 0xa4, 0x82, 0x15, 0x6c, 0xd0, 0x02, 0x0e, 0x5e, - 0x8a, 0x97, 0xce, 0x09, 0x17, 0x55, 0x43, 0x04, 0x4e, 0xb8, 0x28, 0xfb, 0xc3, 0xa2, 0x6e, 0x62, - 0xdb, 0x7b, 0xc4, 0x66, 0x51, 0x37, 0xa3, 0xdb, 0xb7, 0x4c, 0x91, 0x45, 0xdd, 0xda, 0x4d, 0x71, - 0x75, 0x9d, 0x25, 0xdd, 0x04, 0xc2, 0xc2, 0xa4, 0x64, 0x49, 0xb7, 0x75, 0xc1, 0xc0, 0x51, 0x5f, - 0xc7, 0x61, 0x30, 0x08, 0x52, 0x37, 0x9a, 0x84, 0xa1, 0x9c, 0x74, 0xe8, 0x6d, 0xb1, 0xb9, 0xe7, - 0xb1, 0x86, 0xb1, 0x95, 0x29, 0xdc, 0x2a, 0x0d, 0x8c, 0x29, 0xdc, 0x2a, 0x0d, 0x8c, 0x29, 0x5c, - 0xcd, 0x82, 0x33, 0x85, 0x5b, 0x3f, 0x92, 0xcb, 0x3d, 0x8f, 0x1a, 0x40, 0x02, 0xf7, 0x3c, 0x5a, - 0x48, 0x0a, 0xce, 0xfd, 0xf1, 0x38, 0x88, 0xce, 0xdc, 0x44, 0xc5, 0x17, 0x2a, 0x96, 0xc3, 0x0a, - 0xee, 0xc8, 0x4d, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0x40, 0x5a, - 0x40, 0x64, 0x43, 0x5a, 0x40, 0x5a, 0x40, 0x5a, 0xf0, 0x0c, 0x5a, 0x30, 0x09, 0xd3, 0xc0, 0x4d, - 0x47, 0xe3, 0x51, 0x38, 0x3a, 0xbb, 0x74, 0x83, 0xa1, 0x8a, 0xd2, 0xe0, 0x34, 0x10, 0xc5, 0x10, - 0x1e, 0xbc, 0x05, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, - 0x6f, 0x82, 0x6f, 0x96, 0x55, 0x57, 0x28, 0x2a, 0xcb, 0xaa, 0x2b, 0x7a, 0xb0, 0x2c, 0xab, 0xd6, - 0x27, 0x36, 0xcb, 0xaa, 0x19, 0xdd, 0xbe, 0x65, 0x8a, 0x2c, 0xab, 0xd6, 0x6e, 0x8a, 0x2c, 0xab, - 0x26, 0x10, 0x16, 0x27, 0x25, 0xcb, 0xaa, 0xad, 0x0b, 0x06, 0x4e, 0x34, 0x72, 0xc7, 0x5f, 0xc6, - 0x72, 0xf2, 0xa2, 0xb9, 0xbc, 0xac, 0x98, 0xa8, 0x61, 0x34, 0x65, 0xd2, 0xb6, 0x4a, 0xcb, 0x62, - 0xd2, 0xb6, 0x4a, 0x03, 0x63, 0xd2, 0x56, 0xb3, 0xe0, 0x4c, 0xda, 0xd6, 0x8f, 0xd6, 0xb2, 0x62, - 0x42, 0x03, 0x48, 0x60, 0xc5, 0x84, 0x85, 0x34, 0x20, 0x09, 0x86, 0x6e, 0x32, 0x18, 0x8d, 0x05, - 0xed, 0x0f, 0xbf, 0x16, 0x99, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, - 0x9a, 0xe0, 0x9a, 0xe0, 0xfa, 0x7a, 0xf8, 0x42, 0x34, 0x39, 0x57, 0xf1, 0x6c, 0x69, 0x97, 0x20, - 0x80, 0xbd, 0x26, 0x40, 0xd6, 0x56, 0x34, 0xc9, 0x86, 0x12, 0x5f, 0x91, 0x0c, 0x58, 0x49, 0x06, - 0x2e, 0xf2, 0x83, 0x4a, 0x41, 0x64, 0x60, 0x26, 0x32, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, - 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0xc0, 0xad, 0xf2, 0xe8, 0x37, 0xab, 0x82, 0x78, - 0xc0, 0x26, 0xeb, 0xa3, 0x4b, 0xfe, 0xb0, 0x3e, 0x9a, 0xe0, 0xf6, 0x1e, 0xb1, 0x59, 0x1f, 0xcd, - 0xf0, 0xf6, 0x2d, 0x53, 0x64, 0x7d, 0xb4, 0x76, 0x53, 0x5c, 0x5b, 0xdd, 0x5a, 0xdb, 0xda, 0xd8, - 0x5c, 0xdd, 0x62, 0x99, 0x34, 0x01, 0xb1, 0x30, 0x29, 0x59, 0x26, 0x6d, 0x5d, 0x4c, 0xb8, 0xce, - 0x2f, 0xba, 0xe9, 0xe5, 0x58, 0x62, 0x5e, 0x74, 0x26, 0x37, 0x93, 0xa3, 0x65, 0x88, 0xc9, 0xe4, - 0x68, 0x85, 0x1a, 0xcb, 0xe4, 0x68, 0x95, 0x06, 0xc6, 0xe4, 0xa8, 0x66, 0xc1, 0x99, 0x1c, 0xad, - 0x1f, 0x7b, 0x64, 0xa5, 0x84, 0x26, 0xa0, 0xc0, 0x4a, 0x89, 0x3a, 0xd0, 0x02, 0xae, 0x34, 0x7f, - 0x4c, 0xbc, 0x89, 0xa2, 0x51, 0x3a, 0xb3, 0x63, 0xe8, 0xcd, 0xe6, 0xc9, 0xe0, 0x8b, 0x3a, 0xf7, - 0xc7, 0x7e, 0xfa, 0x65, 0xea, 0x7e, 0x1a, 0xa3, 0xb1, 0x8a, 0x06, 0x19, 0xac, 0x76, 0x23, 0x95, - 0xfe, 0x39, 0x8a, 0xff, 0x70, 0x83, 0x28, 0x49, 0xfd, 0x68, 0xa0, 0x1a, 0x77, 0xff, 0x22, 0x59, - 0xf8, 0x9b, 0xc6, 0x38, 0x1e, 0xa5, 0xa3, 0xc1, 0x28, 0x4c, 0x8a, 0x6f, 0x8d, 0x59, 0xa4, 0x6d, - 0xf8, 0xb1, 0xf2, 0x93, 0xec, 0xd7, 0x46, 0x98, 0x0c, 0x4f, 0x1a, 0x61, 0xe2, 0x67, 0x54, 0x28, - 0x29, 0xbe, 0x4d, 0xbf, 0x64, 0x7f, 0x6a, 0x8c, 0xc6, 0xfe, 0x7f, 0x26, 0xca, 0x9d, 0x7e, 0x55, - 0x5f, 0x53, 0x15, 0x0d, 0xd5, 0xd0, 0x9d, 0xc1, 0xa4, 0x46, 0x1a, 0x5e, 0x24, 0xd3, 0x5f, 0x1a, - 0xb3, 0x3f, 0xbb, 0x49, 0x30, 0x6c, 0x24, 0xa9, 0x9f, 0x2a, 0xcc, 0x50, 0x8e, 0x67, 0x33, 0x58, - 0x12, 0x81, 0x59, 0x2f, 0xba, 0xd5, 0x5a, 0x60, 0xad, 0x80, 0xa8, 0xc6, 0x49, 0xd2, 0x78, 0x32, - 0x48, 0xa3, 0x1c, 0x82, 0xed, 0xcd, 0x1e, 0x53, 0x3b, 0x7f, 0x4a, 0xde, 0x41, 0xfe, 0x6c, 0xbc, - 0xfd, 0xec, 0xd9, 0x78, 0xcd, 0x58, 0xf9, 0x5e, 0x27, 0x19, 0x9e, 0x78, 0x9d, 0xc4, 0x9f, 0x22, - 0xcc, 0xe9, 0xef, 0xde, 0x7e, 0xf6, 0x14, 0xa6, 0xdf, 0x5a, 0xf9, 0x43, 0x98, 0x91, 0x7e, 0xaf, - 0x17, 0x5e, 0x78, 0xb3, 0xaf, 0x87, 0xc1, 0x10, 0xcb, 0x4b, 0xe1, 0xf8, 0x02, 0x20, 0x3f, 0x90, - 0xa5, 0xea, 0x42, 0xff, 0x44, 0x85, 0xee, 0x49, 0x10, 0x0d, 0x83, 0xe8, 0x0c, 0xce, 0x15, 0xdc, - 0xca, 0x2a, 0xde, 0x16, 0x15, 0xcc, 0x9f, 0xce, 0xf9, 0x01, 0x98, 0x58, 0xa8, 0x89, 0x43, 0xe4, - 0x44, 0xa1, 0x88, 0xc4, 0x20, 0x7a, 0x22, 0x50, 0x4c, 0xe2, 0x4f, 0x4c, 0xa2, 0x4f, 0x4a, 0x62, - 0x8f, 0xb8, 0xfb, 0x5b, 0x2f, 0x71, 0x27, 0x88, 0x41, 0x01, 0x77, 0xc6, 0x2d, 0x61, 0xdd, 0x49, - 0x01, 0x04, 0x32, 0x31, 0x41, 0x2d, 0x14, 0x13, 0x04, 0xc0, 0x83, 0x01, 0x09, 0xa0, 0x40, 0x14, - 0x38, 0x90, 0x02, 0x12, 0xc4, 0x81, 0x05, 0x71, 0xa0, 0x41, 0x1a, 0x78, 0xc0, 0x04, 0x11, 0xa0, - 0x60, 0x02, 0x1e, 0x54, 0x14, 0x02, 0x9e, 0x07, 0x71, 0x3c, 0x8a, 0x11, 0x33, 0x0c, 0x0f, 0xfa, - 0xf7, 0x6b, 0x91, 0x39, 0xf9, 0xb1, 0x0a, 0x90, 0xc4, 0x92, 0xab, 0xfa, 0x80, 0x26, 0x91, 0xe0, - 0x49, 0x1a, 0x88, 0x12, 0x0b, 0xa6, 0xc4, 0x82, 0x2a, 0xa9, 0xe0, 0x0a, 0x1b, 0x64, 0x81, 0x83, - 0xad, 0xe2, 0xa5, 0x73, 0xf2, 0xa3, 0x86, 0x4c, 0x0a, 0x27, 0x3f, 0x5a, 0x67, 0x3c, 0xdc, 0x95, - 0x49, 0xf0, 0x4d, 0xf0, 0x4d, 0xf0, 0x4d, 0xf0, 0x4d, 0xf0, 0x4d, 0xf0, 0x4d, 0xfc, 0x50, 0x13, - 0xf0, 0xcd, 0x5d, 0x99, 0xe5, 0x8b, 0xca, 0x59, 0x30, 0x15, 0x3d, 0x58, 0xce, 0x82, 0xd1, 0x27, - 0x36, 0x67, 0xc1, 0x30, 0xba, 0x7d, 0xcb, 0x14, 0x39, 0x0b, 0x46, 0xbb, 0x29, 0x72, 0x57, 0x26, - 0x81, 0xb0, 0x38, 0x29, 0x39, 0x04, 0xc6, 0xba, 0x60, 0xe0, 0xfc, 0xa9, 0x82, 0xb3, 0x2f, 0xa9, - 0x9c, 0xbc, 0x68, 0x2e, 0x2f, 0x93, 0xa0, 0x65, 0x88, 0xc9, 0x24, 0x68, 0x85, 0x9a, 0xca, 0x24, - 0x68, 0x95, 0x06, 0xc6, 0x24, 0xa8, 0x66, 0xc1, 0x99, 0x04, 0xad, 0x1f, 0x4d, 0x64, 0x12, 0xb4, - 0x72, 0x88, 0xc0, 0x24, 0x68, 0xd9, 0x1f, 0x26, 0x41, 0x89, 0x6d, 0xef, 0x11, 0x9b, 0x49, 0x50, - 0x46, 0xb7, 0x6f, 0x99, 0x22, 0x93, 0xa0, 0xda, 0x4d, 0x91, 0x49, 0x50, 0x02, 0x61, 0x71, 0x52, - 0x32, 0x09, 0x6a, 0x93, 0x64, 0x1c, 0x79, 0xf7, 0x3c, 0x39, 0xa5, 0x0e, 0xd1, 0x5a, 0x98, 0xf6, - 0xc3, 0xc9, 0x77, 0xc2, 0xcd, 0xc6, 0x99, 0xbe, 0x5b, 0xfc, 0xe9, 0x12, 0x99, 0x94, 0x1c, 0x2e, - 0xf1, 0x14, 0xf1, 0x38, 0x5c, 0xa2, 0x44, 0x3d, 0xe4, 0x70, 0x89, 0x32, 0x0d, 0x87, 0xc3, 0x25, - 0xaa, 0xc6, 0x43, 0x1c, 0x2e, 0x61, 0x2f, 0xd8, 0x85, 0x1f, 0x2e, 0x91, 0x86, 0x17, 0x72, 0x2a, - 0x24, 0xa6, 0xc2, 0xca, 0x28, 0x8f, 0x58, 0x61, 0x79, 0x44, 0x6d, 0x80, 0x87, 0x48, 0x00, 0x22, - 0x0d, 0x88, 0x88, 0x05, 0x24, 0x62, 0x81, 0x89, 0x54, 0x80, 0x82, 0x0d, 0x54, 0xc0, 0x01, 0x8b, - 0x18, 0xe0, 0x52, 0x08, 0xaa, 0xe2, 0x91, 0x7b, 0xae, 0xd2, 0x38, 0x18, 0xc8, 0xf1, 0x61, 0xc5, - 0x1a, 0x9f, 0x6b, 0xd9, 0x85, 0xf8, 0x02, 0x19, 0xf0, 0x46, 0x1c, 0xcc, 0x91, 0x08, 0x77, 0x44, - 0xc3, 0x1e, 0xa9, 0xf0, 0x47, 0x3c, 0x0c, 0x12, 0x0f, 0x87, 0xa4, 0xc3, 0x22, 0x19, 0xf0, 0x48, - 0x08, 0x4c, 0x12, 0x07, 0x97, 0x0a, 0x81, 0xb1, 0x27, 0x96, 0x7f, 0x37, 0xd6, 0x20, 0x4f, 0x32, - 0xb7, 0x04, 0x3c, 0x89, 0x05, 0x51, 0x92, 0xc1, 0x94, 0x15, 0xa0, 0x4a, 0x3a, 0xb8, 0xb2, 0x06, - 0x64, 0x59, 0x03, 0xb6, 0x6c, 0x01, 0x5d, 0xb2, 0xc0, 0x97, 0x30, 0x10, 0x26, 0x16, 0x8c, 0x15, - 0x82, 0x0b, 0xcb, 0x63, 0x3d, 0x18, 0xb4, 0x44, 0xe5, 0xb4, 0x1e, 0x82, 0x69, 0xcb, 0x42, 0xc5, - 0x97, 0x0a, 0xd7, 0x6c, 0x80, 0x6d, 0x56, 0xc1, 0x37, 0x5b, 0x60, 0x9c, 0x75, 0x70, 0xce, 0x3a, - 0x58, 0x67, 0x1b, 0xbc, 0x93, 0x09, 0xf3, 0x84, 0xc2, 0xbd, 0x42, 0x79, 0xc4, 0x74, 0x74, 0x7f, - 0x37, 0x6a, 0x4c, 0x82, 0x28, 0x7d, 0x23, 0x3a, 0x64, 0xe4, 0x18, 0x6a, 0x53, 0xf0, 0x2d, 0xc8, - 0x6a, 0x0d, 0x7f, 0xe8, 0x23, 0x3b, 0x64, 0x2f, 0x49, 0x6d, 0x25, 0xb7, 0x94, 0x5c, 0x2c, 0xdc, - 0x8e, 0xd0, 0xd6, 0xf3, 0x07, 0xef, 0x47, 0x70, 0x17, 0xac, 0x65, 0xe1, 0xfc, 0xb6, 0x0b, 0xf0, - 0xbf, 0xd2, 0x05, 0x80, 0xbb, 0x80, 0xb5, 0xd5, 0xad, 0xb5, 0xad, 0x8d, 0xcd, 0xd5, 0xad, 0x75, - 0xfa, 0x02, 0x12, 0x12, 0x4a, 0x7f, 0xf3, 0xd3, 0x7f, 0xc1, 0xe7, 0x4d, 0x89, 0x85, 0x47, 0x66, - 0x29, 0x9d, 0xfb, 0x0f, 0xca, 0x6f, 0x4f, 0x47, 0x7f, 0xf1, 0x9f, 0xae, 0x2b, 0x88, 0x91, 0xbb, - 0xfc, 0xe5, 0x9b, 0x2b, 0xab, 0xe5, 0xe8, 0x48, 0x2c, 0x77, 0x20, 0x92, 0xaa, 0xb6, 0x93, 0x34, - 0x9e, 0x0c, 0xd2, 0x28, 0x4f, 0x97, 0xee, 0xcd, 0x9e, 0x6c, 0x3b, 0x7f, 0xb0, 0xde, 0x41, 0xfe, - 0x38, 0xbd, 0xfd, 0xec, 0x71, 0x7a, 0xcd, 0x58, 0xf9, 0x5e, 0x27, 0x19, 0x9e, 0x78, 0x9d, 0xc4, - 0xef, 0x5d, 0x8e, 0xd5, 0xf4, 0x77, 0x6f, 0x3f, 0x7b, 0x70, 0xd3, 0x6f, 0xad, 0xfc, 0xb9, 0xcd, - 0x0e, 0x1e, 0xbd, 0x5e, 0x78, 0xe1, 0x1d, 0x06, 0xc3, 0xce, 0xf4, 0x81, 0x6d, 0xcf, 0x9e, 0x57, - 0xf6, 0x77, 0xad, 0x78, 0xb4, 0x3b, 0x7b, 0x52, 0x9c, 0x37, 0x55, 0x17, 0x77, 0x95, 0xb5, 0xe8, - 0xe4, 0x06, 0x2f, 0xb0, 0xb9, 0x28, 0x93, 0x9c, 0xad, 0x45, 0x55, 0x88, 0xcb, 0xd6, 0x22, 0x8d, - 0xba, 0xcc, 0xd6, 0x22, 0x9d, 0x86, 0xc8, 0xd6, 0x22, 0xd3, 0xf8, 0x98, 0xad, 0x45, 0x44, 0x1f, - 0x73, 0x65, 0x90, 0xd7, 0x5a, 0xa4, 0xce, 0xa6, 0xca, 0x9b, 0x08, 0xee, 0x2e, 0x9a, 0xdf, 0x01, - 0x1b, 0x8c, 0x08, 0xa5, 0xec, 0x82, 0x54, 0x56, 0x40, 0x2b, 0xe9, 0x10, 0xcb, 0x1a, 0xa8, 0x65, - 0x0d, 0xe4, 0xb2, 0x05, 0x7a, 0xc9, 0x82, 0x60, 0xc2, 0xa0, 0x98, 0x58, 0x48, 0x76, 0x17, 0x9a, - 0xc9, 0xef, 0x30, 0x9a, 0xdf, 0x88, 0xec, 0x16, 0xa3, 0x15, 0xb6, 0x18, 0x11, 0xb8, 0xd5, 0x19, - 0xc0, 0xd9, 0x02, 0xe4, 0xac, 0x03, 0x74, 0xd6, 0x01, 0x3b, 0xdb, 0x00, 0x9e, 0x4c, 0xa0, 0x27, - 0x14, 0xf0, 0x89, 0x07, 0x7e, 0xc5, 0x0d, 0x04, 0xe3, 0x8b, 0x35, 0x57, 0x3a, 0x0a, 0x5c, 0x08, - 0x81, 0xb7, 0xee, 0x4a, 0xb8, 0x7f, 0x92, 0x0d, 0x0d, 0xad, 0x81, 0x88, 0x36, 0x41, 0x45, 0x2b, - 0x21, 0xa3, 0x6d, 0xd0, 0xd1, 0x5a, 0x08, 0x69, 0x2d, 0x94, 0xb4, 0x15, 0x52, 0xca, 0x86, 0x96, - 0xc2, 0x21, 0xa6, 0x35, 0x50, 0xb3, 0xb8, 0x11, 0x99, 0x93, 0x26, 0xbf, 0x1b, 0x43, 0x25, 0x4e, - 0xa0, 0xb4, 0x1c, 0x74, 0x5a, 0x07, 0x3e, 0x6d, 0x04, 0xa1, 0x56, 0x83, 0x51, 0x5b, 0x41, 0xa9, - 0xf5, 0xe0, 0xd4, 0x7a, 0x90, 0x6a, 0x3b, 0x58, 0xb5, 0x03, 0xb4, 0x5a, 0x02, 0x5e, 0xad, 0x03, - 0xb1, 0xc5, 0x0d, 0xf9, 0xc3, 0x61, 0xac, 0x92, 0xc4, 0x3e, 0xc7, 0x3e, 0x8f, 0xc6, 0xf3, 0x1b, - 0xb4, 0xcc, 0xeb, 0xd9, 0x35, 0x73, 0xc3, 0x5a, 0xa0, 0x6b, 0x33, 0xe0, 0xad, 0x05, 0xf0, 0xb5, - 0x1d, 0x00, 0xd7, 0x06, 0x08, 0xd7, 0x06, 0x10, 0xd7, 0x05, 0x18, 0xdb, 0x05, 0x90, 0x2d, 0x03, - 0xca, 0x85, 0x12, 0x8a, 0x9f, 0x61, 0xfa, 0xdd, 0xa8, 0x97, 0x9d, 0xd5, 0xe7, 0x28, 0xd3, 0x8d, - 0x46, 0xee, 0x7f, 0x47, 0x91, 0xb2, 0x31, 0x00, 0xce, 0x53, 0xaa, 0x6f, 0x2d, 0xbc, 0xb7, 0x03, - 0x3f, 0x4d, 0x55, 0x1c, 0x89, 0x1f, 0x8e, 0xfa, 0xe0, 0x0d, 0xbe, 0x7c, 0x79, 0xb4, 0xec, 0x6e, - 0xf5, 0xff, 0x3e, 0x5a, 0x71, 0xb7, 0xfa, 0xb3, 0xaf, 0x2b, 0xd9, 0x6f, 0xb3, 0xef, 0xab, 0x47, - 0xcb, 0xee, 0xda, 0xfc, 0xfb, 0xfa, 0xd1, 0xb2, 0xbb, 0xde, 0x7f, 0x75, 0x7c, 0xfc, 0xfa, 0xd5, - 0x5f, 0x6f, 0xae, 0x1e, 0xff, 0x0f, 0x5f, 0xfe, 0xe3, 0xe8, 0xf8, 0x78, 0xfc, 0xd7, 0xde, 0xd5, - 0xf4, 0xd7, 0xce, 0x55, 0xff, 0x5f, 0xaf, 0x7e, 0xb6, 0x15, 0x4b, 0x4c, 0x6f, 0xfc, 0xf8, 0xf8, - 0x75, 0xff, 0x9f, 0xf6, 0x85, 0xd5, 0xfe, 0x0b, 0x82, 0x04, 0xde, 0x09, 0x61, 0xce, 0x77, 0x30, - 0xb6, 0xec, 0x09, 0x72, 0x0f, 0xde, 0x97, 0xa5, 0x83, 0xa1, 0xa6, 0x37, 0xd4, 0x98, 0x37, 0x43, - 0xcf, 0xbf, 0x34, 0x6e, 0x56, 0x5b, 0x4a, 0x9c, 0x3a, 0x67, 0xaf, 0xab, 0x60, 0xc5, 0x0e, 0x9d, - 0x1b, 0x9d, 0xda, 0xb3, 0x9d, 0x9a, 0x0d, 0x55, 0xb1, 0xa6, 0x26, 0xe4, 0x1d, 0xf8, 0xe9, 0x17, - 0xef, 0x70, 0xf6, 0x1c, 0xbd, 0xf6, 0xf8, 0x62, 0x2d, 0xff, 0xee, 0x70, 0xf2, 0x34, 0x9d, 0xea, - 0xa3, 0x75, 0xd8, 0x86, 0xca, 0x41, 0xab, 0x2a, 0x06, 0xd9, 0x9e, 0x82, 0x96, 0x8a, 0x63, 0x7b, - 0x0a, 0xf6, 0x4d, 0xb1, 0x3d, 0x45, 0xc8, 0x8d, 0xb1, 0x3d, 0x85, 0x98, 0x8c, 0xb8, 0xec, 0x47, - 0x95, 0xca, 0x9a, 0xf6, 0x94, 0x70, 0x34, 0x4a, 0x2c, 0x6c, 0x4f, 0x99, 0xdd, 0x96, 0x2d, 0x65, - 0xa4, 0xea, 0xd4, 0x9f, 0x84, 0x99, 0x03, 0x3b, 0xf5, 0xc3, 0xc4, 0xb6, 0xb6, 0x9b, 0x65, 0xb6, - 0xdd, 0x10, 0x5c, 0x13, 0x64, 0x13, 0x6c, 0xd7, 0x0e, 0x74, 0x5b, 0x0f, 0xbe, 0x6d, 0x07, 0xe1, - 0x76, 0x80, 0x71, 0x4b, 0x40, 0x79, 0xa1, 0x6c, 0xd6, 0x55, 0x11, 0x16, 0x51, 0xeb, 0x64, 0x34, - 0x0a, 0x95, 0x1f, 0xd9, 0x14, 0xb3, 0xe6, 0x19, 0xd5, 0x15, 0x1e, 0xa2, 0xd3, 0x09, 0x94, 0xa4, - 0x53, 0xa9, 0x4d, 0x0e, 0xa0, 0x30, 0xfe, 0xec, 0xae, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, - 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x88, 0xf8, 0x88, 0xfa, 0x6a, 0x42, 0xfd, 0x82, 0xa1, - 0x8a, 0xd2, 0x20, 0xbd, 0x8c, 0xd5, 0xa9, 0x8d, 0xf4, 0x6f, 0xdd, 0xa2, 0x7b, 0x6a, 0xe7, 0xaf, - 0x6a, 0xdb, 0x4f, 0x94, 0xbd, 0xa3, 0x32, 0xf6, 0x0f, 0x0f, 0x3e, 0x7c, 0x5e, 0xf5, 0x5a, 0xbf, - 0xf5, 0x0e, 0xba, 0xad, 0x0f, 0xed, 0xdf, 0xbc, 0xed, 0xf6, 0xde, 0x4e, 0x7b, 0xef, 0xa3, 0xd7, - 0xea, 0xee, 0x7b, 0x07, 0xcd, 0xde, 0x2f, 0xde, 0x61, 0xeb, 0xe3, 0x6e, 0x6b, 0xaf, 0xe7, 0xf5, - 0x7e, 0x3f, 0x68, 0xd9, 0x16, 0xb6, 0x3f, 0xfb, 0xe1, 0x44, 0x25, 0x56, 0xb6, 0x00, 0x5a, 0x3a, - 0xb2, 0x60, 0xae, 0xb7, 0x9f, 0xf6, 0xf6, 0x3e, 0xed, 0x6e, 0xb7, 0xba, 0xad, 0x1d, 0xaf, 0xbd, - 0xd7, 0x6b, 0x75, 0x3f, 0x34, 0xdf, 0xb7, 0xe6, 0xaa, 0x6a, 0x61, 0xbf, 0xfb, 0x4f, 0xd4, 0x4f, - 0x59, 0xfa, 0xd9, 0x3e, 0xf8, 0xbc, 0x66, 0xb1, 0x3e, 0x5a, 0x75, 0x47, 0x7d, 0xd2, 0x18, 0xde, - 0x05, 0xef, 0xc0, 0x96, 0x68, 0xc3, 0x1e, 0x36, 0xc9, 0x3d, 0x6c, 0x16, 0xf4, 0xe2, 0xb2, 0xd1, - 0xca, 0x84, 0x95, 0x4c, 0xa2, 0x68, 0x72, 0x7e, 0xa2, 0x62, 0x35, 0x74, 0xbf, 0x8c, 0xc6, 0xf6, - 0x74, 0x5c, 0xdd, 0xb9, 0x2f, 0xb6, 0x5e, 0x21, 0xdc, 0x06, 0x5b, 0xaf, 0x80, 0x2d, 0x86, 0xad, - 0x57, 0xc8, 0x0e, 0x80, 0xad, 0x57, 0xd2, 0xe0, 0x34, 0x5b, 0xaf, 0x88, 0xd4, 0xca, 0x56, 0x2a, - 0x6e, 0x06, 0xc2, 0x8e, 0xa1, 0xdc, 0x0c, 0x44, 0xf0, 0x49, 0x10, 0x4a, 0x30, 0x5a, 0x0b, 0x50, - 0x6a, 0x3d, 0x38, 0xb5, 0x1e, 0xa4, 0xda, 0x0e, 0x56, 0xed, 0x00, 0xad, 0x96, 0x80, 0x57, 0xeb, - 0x40, 0x6c, 0x71, 0x43, 0x41, 0x94, 0xaa, 0xf8, 0xd4, 0x1f, 0x28, 0x37, 0x18, 0xda, 0x5b, 0xf3, - 0x74, 0xeb, 0x2e, 0xb9, 0x23, 0x88, 0x90, 0x97, 0xd0, 0x97, 0x10, 0x98, 0x50, 0xb8, 0x9e, 0x90, - 0xb8, 0x36, 0xd0, 0xb8, 0x2e, 0x10, 0xd9, 0x2e, 0xa8, 0x6c, 0x19, 0x64, 0x2e, 0x94, 0xd0, 0xfe, - 0x1d, 0x41, 0x93, 0x20, 0x4a, 0xdf, 0xac, 0x5a, 0xbc, 0x15, 0x68, 0xd3, 0xc2, 0x5b, 0xeb, 0xfa, - 0xd1, 0x99, 0xb2, 0x76, 0x25, 0x90, 0x9d, 0x10, 0x25, 0x7b, 0x71, 0xbb, 0x41, 0x64, 0x2d, 0x06, - 0xb3, 0x9c, 0xdc, 0x2d, 0xdc, 0x66, 0xd6, 0x95, 0x53, 0x83, 0xfb, 0xfc, 0x10, 0xfb, 0x83, 0x34, - 0x18, 0x45, 0x3b, 0xc1, 0x59, 0x90, 0x26, 0xd3, 0x1b, 0xb6, 0xf6, 0x7e, 0xaf, 0x7e, 0xb2, 0xd8, - 0xf5, 0xf8, 0x5f, 0xe9, 0x7a, 0x2c, 0x73, 0x3d, 0x6b, 0xab, 0x5b, 0x6b, 0x5b, 0x1b, 0x9b, 0xab, - 0x5b, 0xeb, 0xf4, 0x41, 0x24, 0x84, 0xbc, 0x2b, 0x9d, 0x1f, 0x6e, 0x21, 0x64, 0x0c, 0xaf, 0xda, - 0xed, 0xc5, 0xa3, 0x49, 0xaa, 0x62, 0xab, 0x4f, 0xb9, 0xae, 0x6f, 0x91, 0x47, 0x5c, 0x12, 0x6e, - 0x8b, 0x47, 0x5c, 0x82, 0x8d, 0x8d, 0x47, 0x5c, 0x92, 0x1d, 0x0a, 0x8f, 0xb8, 0x2c, 0xbb, 0x51, - 0x1e, 0x71, 0x11, 0x5f, 0x1a, 0x57, 0x42, 0xfb, 0x8f, 0xb8, 0xb2, 0x7d, 0xa3, 0xfe, 0x70, 0x18, - 0xab, 0x24, 0x71, 0xa3, 0x91, 0xfb, 0xdf, 0x51, 0xa4, 0x2c, 0x3e, 0xf0, 0x5a, 0x79, 0x6b, 0xe1, - 0xbd, 0x1d, 0xf8, 0x69, 0xaa, 0xe2, 0xc8, 0xda, 0x33, 0x2f, 0xe7, 0xe5, 0xcb, 0xa3, 0x65, 0x77, - 0xab, 0xff, 0xf7, 0xd1, 0x8a, 0xbb, 0xd5, 0x9f, 0x7d, 0x5d, 0xc9, 0x7e, 0x9b, 0x7d, 0x5f, 0x3d, - 0x5a, 0x76, 0xd7, 0xe6, 0xdf, 0xd7, 0x8f, 0x96, 0xdd, 0xf5, 0xfe, 0xab, 0xe3, 0xe3, 0xd7, 0xaf, - 0xfe, 0x7a, 0x73, 0xf5, 0xf8, 0x7f, 0xf8, 0xf2, 0x1f, 0x47, 0xc7, 0xc7, 0xe3, 0xbf, 0xf6, 0xae, - 0xa6, 0xbf, 0x76, 0xae, 0xfa, 0xff, 0x7a, 0xf5, 0xb3, 0xad, 0x58, 0x62, 0x7a, 0xe3, 0xc7, 0xc7, - 0xaf, 0xfb, 0xff, 0x74, 0x98, 0x80, 0x22, 0x48, 0xe0, 0x9d, 0xd4, 0x0d, 0xe6, 0xd8, 0x36, 0x65, - 0xa7, 0xb8, 0xaf, 0x5a, 0x4d, 0xdb, 0xb9, 0x3d, 0x5c, 0xc4, 0x86, 0xe1, 0x3b, 0xf6, 0x38, 0x0b, - 0x36, 0xa8, 0xd3, 0xbd, 0xd1, 0xad, 0x95, 0xe0, 0xd6, 0x6c, 0x18, 0x03, 0x93, 0xa4, 0xf1, 0x64, - 0x90, 0x46, 0x39, 0xf1, 0xde, 0x9b, 0xbd, 0x8f, 0x76, 0xfe, 0x3a, 0xbc, 0x83, 0xfc, 0x25, 0x78, - 0xfb, 0xd9, 0x4b, 0xf0, 0x9a, 0xb1, 0xf2, 0xbd, 0x4e, 0x32, 0x3c, 0xf1, 0x3a, 0x89, 0xdf, 0xbb, - 0x1c, 0xab, 0xe9, 0xef, 0xde, 0x7e, 0xf6, 0xb8, 0xa7, 0xdf, 0x5a, 0xf9, 0xd3, 0x9e, 0xa5, 0xe6, - 0xbd, 0x5e, 0x78, 0xe1, 0x1d, 0x06, 0xc3, 0xce, 0xf4, 0x31, 0x6f, 0xcf, 0x9e, 0x72, 0xf6, 0x77, - 0xad, 0x78, 0x74, 0xe0, 0xa7, 0x5f, 0xbc, 0xc3, 0xd9, 0x63, 0xf5, 0x3e, 0x15, 0x8f, 0xf5, 0x97, - 0xd1, 0x98, 0x33, 0xda, 0x28, 0xb9, 0xf5, 0xe1, 0xc0, 0xe9, 0x04, 0x49, 0xda, 0x4c, 0x53, 0xd9, - 0x7d, 0x9e, 0xce, 0x6e, 0x10, 0xb5, 0x42, 0x95, 0xf9, 0x48, 0xe7, 0xdd, 0x52, 0x34, 0x09, 0x43, - 0xc1, 0x83, 0xfe, 0x76, 0xfd, 0xaf, 0xf6, 0xdc, 0xcc, 0x7e, 0x3c, 0x9c, 0xfa, 0xd3, 0xed, 0xcb, - 0xfc, 0x56, 0x68, 0xdc, 0xc4, 0x78, 0xc4, 0x76, 0xdf, 0xc0, 0x76, 0x82, 0xc1, 0x1c, 0x04, 0x88, - 0x93, 0x09, 0xdb, 0xe4, 0x81, 0x1e, 0x59, 0x12, 0x0b, 0xf3, 0xe0, 0xd2, 0x3d, 0x77, 0x2d, 0x3c, - 0xb6, 0x2c, 0x4f, 0x23, 0xc7, 0x5e, 0x65, 0x48, 0x2a, 0xc4, 0xa3, 0x48, 0xf5, 0x24, 0x36, 0x7b, - 0x10, 0x41, 0x10, 0xcf, 0x28, 0xa4, 0x93, 0xe1, 0x60, 0xf1, 0xdd, 0x95, 0x00, 0x57, 0xe5, 0x2c, - 0x98, 0x8d, 0x18, 0x6f, 0x75, 0x3d, 0x52, 0x76, 0xe1, 0x16, 0x84, 0x84, 0x08, 0x59, 0xe3, 0x63, - 0xc5, 0x35, 0x12, 0x48, 0x6c, 0x10, 0x10, 0x5d, 0xf8, 0x2f, 0xb5, 0xa0, 0x5f, 0x7c, 0xa1, 0xbe, - 0xf8, 0x02, 0x7c, 0xe9, 0x85, 0xf5, 0xa4, 0x4e, 0x65, 0x2a, 0x83, 0xb4, 0xf1, 0xa7, 0x42, 0x67, - 0xf5, 0x8b, 0x9e, 0xc9, 0x2f, 0x74, 0xf6, 0xbe, 0xd8, 0x6e, 0x4c, 0xc9, 0xdd, 0x96, 0x56, 0x74, - 0x53, 0x4a, 0xef, 0x96, 0xb4, 0xa6, 0x1b, 0xd2, 0x9a, 0x6e, 0x47, 0x5b, 0xba, 0x19, 0x79, 0x22, - 0x46, 0x30, 0x76, 0x1f, 0x28, 0x0b, 0x86, 0x59, 0x1a, 0x59, 0xae, 0xc7, 0xbc, 0x99, 0xe0, 0xca, - 0xee, 0x44, 0xa8, 0x9f, 0x91, 0x3d, 0x58, 0x43, 0xfc, 0x00, 0x0d, 0x1b, 0x06, 0x65, 0x58, 0x35, - 0x10, 0xc3, 0x96, 0xc1, 0x17, 0xd6, 0x0d, 0xb8, 0xb0, 0x6e, 0x90, 0x85, 0x6d, 0x03, 0x2b, 0x58, - 0xa3, 0xae, 0x53, 0x79, 0xc4, 0x0f, 0x9a, 0xb8, 0x46, 0x50, 0xb1, 0x2b, 0x1c, 0x44, 0xdd, 0x04, - 0x52, 0x2b, 0x6b, 0x82, 0xef, 0xa1, 0x15, 0x4d, 0xce, 0xa7, 0x4a, 0x75, 0xc5, 0x7a, 0x51, 0x3a, - 0x9f, 0x6f, 0x50, 0xb7, 0x8b, 0x7c, 0x62, 0xae, 0x05, 0xdc, 0x6d, 0x76, 0x2b, 0x24, 0x6f, 0x24, - 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0x24, 0x6f, 0xc4, 0x4f, 0x24, 0x6f, 0x3f, - 0x18, 0x35, 0xc4, 0x2f, 0xbc, 0xb2, 0x60, 0xb1, 0x95, 0x25, 0x0b, 0xac, 0x2c, 0x98, 0xb7, 0x62, - 0xd3, 0x42, 0x2a, 0xcb, 0x46, 0xae, 0xdb, 0xb6, 0x60, 0xca, 0xc6, 0x25, 0x2e, 0x16, 0x4c, 0xc9, - 0xb3, 0x6a, 0x31, 0x94, 0xad, 0x2e, 0xc0, 0xb6, 0x45, 0x4f, 0x56, 0xfa, 0x02, 0x4e, 0x9a, 0x32, - 0xf2, 0xe9, 0x33, 0xf5, 0x4f, 0x89, 0xa5, 0x47, 0x66, 0x8e, 0x8a, 0xc0, 0x6b, 0xf4, 0x5e, 0xfc, - 0x4f, 0x02, 0x07, 0xcf, 0x72, 0x60, 0x44, 0x2d, 0xfd, 0x0a, 0x07, 0x46, 0x00, 0xfb, 0x11, 0x4e, - 0x8e, 0xf8, 0xce, 0xe4, 0x88, 0x3b, 0x7f, 0xc7, 0x09, 0x12, 0xb5, 0xf1, 0x5d, 0xc2, 0x9a, 0x1f, - 0x45, 0x36, 0x3d, 0x72, 0x52, 0x44, 0xc5, 0x02, 0x73, 0x52, 0x84, 0x66, 0xe1, 0x39, 0x29, 0xc2, - 0xd0, 0x0d, 0x70, 0x52, 0x04, 0x31, 0x87, 0x3d, 0x9c, 0x49, 0xdc, 0xa4, 0x08, 0x91, 0x0d, 0x89, - 0x45, 0xa8, 0x11, 0x58, 0x3f, 0x2f, 0xf4, 0x7c, 0x89, 0x73, 0x22, 0x08, 0xa9, 0xea, 0x05, 0xad, - 0xac, 0x81, 0x58, 0xd6, 0x40, 0x2d, 0x5b, 0x20, 0x97, 0x2c, 0xe8, 0x25, 0x0c, 0x82, 0x15, 0x4a, - 0x22, 0xb6, 0xde, 0xf4, 0x7a, 0xeb, 0xf4, 0x50, 0x45, 0x69, 0x90, 0x5e, 0xc6, 0xea, 0x54, 0xa2, - 0xdf, 0x9f, 0xe7, 0x88, 0x04, 0x16, 0x9c, 0x38, 0xed, 0xfc, 0xd1, 0x6f, 0xfb, 0x89, 0x05, 0x3d, - 0x5f, 0xfb, 0x87, 0x07, 0x1f, 0x3e, 0xaf, 0x7a, 0xad, 0xdf, 0x7a, 0xad, 0xbd, 0x9d, 0xd6, 0x8e, - 0x77, 0xd0, 0x6d, 0x7d, 0x68, 0xff, 0xe6, 0x1d, 0xb6, 0x77, 0xbc, 0x4e, 0x73, 0xbb, 0xd5, 0xf1, - 0xb6, 0xdb, 0x7b, 0x3b, 0xed, 0xbd, 0x8f, 0xde, 0xe1, 0xa7, 0xed, 0x5e, 0xe7, 0xb3, 0xd7, 0xfb, - 0xfd, 0xa0, 0x25, 0x35, 0xc8, 0x65, 0xf5, 0x4e, 0x89, 0xe8, 0xc2, 0x60, 0xe1, 0x7d, 0x3c, 0x73, - 0xad, 0x9b, 0xaa, 0xd7, 0xee, 0x41, 0xe7, 0xf0, 0xb6, 0x8e, 0x09, 0x6e, 0x17, 0xf9, 0x89, 0x1a, - 0x65, 0x56, 0xa3, 0x5a, 0xdd, 0x7d, 0xef, 0xa0, 0xd9, 0xfb, 0x85, 0x3a, 0x44, 0x1d, 0x7a, 0x8e, - 0x0e, 0xed, 0xb6, 0x7a, 0xdd, 0xf6, 0x7b, 0x36, 0xae, 0xe9, 0xfd, 0xf4, 0x49, 0xd0, 0x28, 0xad, - 0x20, 0x49, 0x59, 0xa7, 0x55, 0xad, 0xdc, 0x36, 0xd6, 0x69, 0xc9, 0xa9, 0xee, 0x14, 0x50, 0x6b, - 0xf4, 0x82, 0xde, 0xe1, 0xe9, 0xd6, 0x25, 0x6a, 0x9f, 0xb3, 0xc8, 0xbd, 0xcd, 0x22, 0xf7, 0x33, - 0xcb, 0xda, 0xc3, 0x8c, 0x6e, 0x64, 0xc2, 0x42, 0xaf, 0x85, 0x21, 0xd7, 0x11, 0x51, 0x90, 0xaa, - 0xbf, 0x00, 0x1a, 0x1b, 0x84, 0xe0, 0x86, 0x76, 0x4c, 0xc9, 0x40, 0xfd, 0xa0, 0x14, 0xff, 0x67, - 0x99, 0xdf, 0xc3, 0xb4, 0x6d, 0x3c, 0xcb, 0xc1, 0x92, 0x08, 0xcc, 0x86, 0xd1, 0x6d, 0xd7, 0x1e, - 0x9b, 0x05, 0x84, 0x28, 0xda, 0x21, 0x09, 0x96, 0xcb, 0xc2, 0x71, 0x0c, 0x40, 0x4e, 0x01, 0xb4, - 0x6f, 0x0a, 0xba, 0x3f, 0x0a, 0xb4, 0x0f, 0x0a, 0xb6, 0x58, 0x17, 0xb9, 0x18, 0x57, 0x44, 0xb1, - 0x2d, 0x7a, 0x31, 0xad, 0x98, 0x62, 0x59, 0x31, 0xc5, 0xb0, 0x52, 0x8a, 0x5d, 0x09, 0xb6, 0xbf, - 0xf5, 0x12, 0x51, 0xfb, 0x82, 0xb0, 0xfb, 0x7f, 0x24, 0xf4, 0xf9, 0x80, 0xf7, 0xf3, 0xc0, 0xf7, - 0xed, 0x48, 0xe8, 0xcf, 0x11, 0xd5, 0x87, 0x23, 0xa5, 0xdf, 0x46, 0x5c, 0x5f, 0x8d, 0xb8, 0xfe, - 0x19, 0x69, 0x7d, 0x32, 0xcc, 0xbd, 0x3f, 0xe6, 0xe5, 0xc2, 0xf7, 0xb7, 0x08, 0xeb, 0x63, 0x91, - 0xd0, 0xaf, 0x22, 0xab, 0x2f, 0xe5, 0xbb, 0xfd, 0x27, 0x62, 0xba, 0x4d, 0x24, 0x75, 0x95, 0x08, - 0x1b, 0x7b, 0xb4, 0xd0, 0x84, 0xe4, 0x70, 0x08, 0x56, 0xed, 0x94, 0xe0, 0xae, 0x67, 0xe8, 0x36, - 0xf7, 0x3e, 0xb6, 0xa8, 0x08, 0xf5, 0x53, 0x84, 0xeb, 0xce, 0x44, 0x87, 0xf5, 0xa9, 0xcf, 0xfa, - 0xf4, 0x09, 0xf3, 0x85, 0x4b, 0xc5, 0x8c, 0xea, 0x37, 0xb9, 0x2d, 0xcb, 0x17, 0xaa, 0x29, 0x5f, - 0xc0, 0x6b, 0x61, 0xe0, 0x71, 0xfd, 0x7d, 0x0a, 0x36, 0x89, 0xfe, 0x88, 0x46, 0x7f, 0x46, 0x6e, - 0x1a, 0x5e, 0xe0, 0x1e, 0xda, 0xdf, 0x14, 0x92, 0x47, 0xf7, 0x3f, 0x22, 0x16, 0x8f, 0xee, 0x9f, - 0xa1, 0x6e, 0x3c, 0xba, 0x7f, 0x8e, 0x41, 0xf0, 0xe8, 0xbe, 0x6c, 0x8c, 0xc2, 0xa3, 0x7b, 0xf9, - 0x40, 0x13, 0xf6, 0xe8, 0x1e, 0x7b, 0xce, 0xb9, 0x88, 0xb9, 0xe6, 0xe0, 0x73, 0xcc, 0x79, 0x78, - 0x5f, 0x17, 0x70, 0x20, 0x05, 0x24, 0x88, 0x03, 0x0b, 0xe2, 0x40, 0x83, 0x34, 0xf0, 0x80, 0x09, - 0x22, 0x40, 0xc1, 0x04, 0x3c, 0xa8, 0x28, 0x04, 0x0c, 0x55, 0x74, 0x96, 0xa5, 0xae, 0x84, 0x1c, - 0x31, 0xe7, 0xf2, 0x82, 0xdb, 0xb4, 0x8c, 0xd9, 0xdf, 0x62, 0x66, 0x7d, 0x4b, 0x9a, 0xed, 0x2d, - 0x72, 0x96, 0xb7, 0xb4, 0xd9, 0xdd, 0x62, 0x67, 0x75, 0x8b, 0x9d, 0xcd, 0x2d, 0x75, 0x16, 0x37, - 0x87, 0x0b, 0x3d, 0xe7, 0xa5, 0x8b, 0x99, 0xad, 0x7d, 0x7d, 0x10, 0x11, 0x44, 0xe9, 0xca, 0x86, - 0x04, 0x97, 0x9b, 0x63, 0x84, 0x0d, 0x01, 0xa2, 0x76, 0xfd, 0xe8, 0x4c, 0x89, 0x19, 0xb5, 0x2c, - 0x68, 0x34, 0xde, 0x6e, 0x10, 0x09, 0x5c, 0x45, 0x26, 0x73, 0xb1, 0x4d, 0x56, 0xda, 0x29, 0x50, - 0xee, 0x0f, 0xb1, 0x3f, 0x48, 0x83, 0x51, 0xb4, 0x13, 0x9c, 0x05, 0xd9, 0x00, 0xb2, 0x65, 0x39, - 0xf3, 0x3f, 0x05, 0x2d, 0x06, 0xdc, 0xf5, 0xbf, 0xd2, 0x14, 0x35, 0x9b, 0xe2, 0xc6, 0xfa, 0xfa, - 0x9b, 0x75, 0x9a, 0x23, 0xb1, 0xb0, 0x2c, 0x29, 0xfb, 0x9c, 0xb9, 0x66, 0x5b, 0x38, 0x90, 0xb1, - 0x1f, 0x51, 0xd2, 0x3e, 0x44, 0xe6, 0x40, 0x4b, 0x16, 0x94, 0x39, 0xd0, 0x8a, 0x85, 0x66, 0x0e, - 0x54, 0x93, 0xe0, 0xcc, 0x81, 0x12, 0x11, 0x88, 0x21, 0x89, 0xcc, 0x81, 0x56, 0x8f, 0x11, 0x98, - 0x03, 0x2d, 0xfb, 0xc3, 0x1c, 0x28, 0xc1, 0xed, 0x3d, 0x62, 0x33, 0x07, 0xca, 0xf0, 0xf6, 0x2d, - 0x53, 0x64, 0x0e, 0x54, 0xbb, 0x29, 0x32, 0x07, 0x4a, 0x2c, 0x2c, 0x50, 0x4a, 0xe6, 0x40, 0xad, - 0x0b, 0x07, 0xce, 0x45, 0xee, 0x92, 0x84, 0x24, 0x41, 0x67, 0xe2, 0x32, 0x0b, 0x5a, 0x86, 0x98, - 0xcc, 0x82, 0x56, 0xa8, 0xa8, 0xcc, 0x82, 0x56, 0x69, 0x60, 0xcc, 0x82, 0x6a, 0x16, 0x9c, 0x59, - 0xd0, 0xfa, 0xd1, 0x44, 0x81, 0x59, 0xd0, 0x93, 0x20, 0xf2, 0xe3, 0x4b, 0x41, 0x59, 0xd0, 0x2d, - 0x42, 0x6a, 0x8b, 0x24, 0xe3, 0x2a, 0xb7, 0xe7, 0xc9, 0x29, 0x75, 0xae, 0xd2, 0x8d, 0x49, 0x38, - 0xc8, 0x6b, 0xa2, 0x39, 0x06, 0x4d, 0x94, 0xf9, 0x72, 0x0c, 0x5a, 0xf5, 0xe6, 0x5a, 0xcb, 0xfd, - 0x6d, 0x9f, 0x66, 0xf7, 0x0f, 0xb7, 0x49, 0x16, 0x68, 0x16, 0xdc, 0x0b, 0xfa, 0xa3, 0x6b, 0x85, - 0x84, 0x5c, 0x37, 0x0f, 0xbd, 0x56, 0x1e, 0x7a, 0x7d, 0x3c, 0xe6, 0x9a, 0x78, 0x14, 0x65, 0x07, - 0x0d, 0xba, 0x52, 0x83, 0xad, 0x03, 0xb5, 0x04, 0xb3, 0xda, 0xc0, 0x8a, 0x11, 0x4d, 0xcd, 0xc7, - 0x2e, 0xb3, 0x12, 0x18, 0x76, 0x24, 0x68, 0x0e, 0x44, 0xa2, 0xe3, 0x30, 0x6b, 0x48, 0xe6, 0xd4, - 0xd7, 0xcc, 0x95, 0x0d, 0x19, 0x0c, 0x8a, 0xa1, 0x08, 0x33, 0x10, 0x83, 0x01, 0xb5, 0xd2, 0x00, - 0x6a, 0xc6, 0xe6, 0xf5, 0x5b, 0x9c, 0x01, 0x6b, 0x73, 0xce, 0x62, 0x7f, 0x90, 0x29, 0x93, 0x31, - 0x43, 0x2b, 0x4e, 0x68, 0xae, 0x45, 0x31, 0xe4, 0x75, 0xcc, 0x4e, 0x05, 0x35, 0x5e, 0x74, 0x81, - 0x50, 0x4c, 0x01, 0x55, 0x24, 0x81, 0x52, 0xfc, 0x00, 0x57, 0xd4, 0x00, 0x57, 0xac, 0x80, 0x56, - 0x84, 0x50, 0x2f, 0xb4, 0x66, 0x7a, 0xaa, 0xa5, 0x93, 0x11, 0x03, 0xe3, 0x56, 0x5a, 0x74, 0x63, - 0x4f, 0xa5, 0x31, 0x6c, 0x0f, 0x18, 0x03, 0xae, 0x61, 0xea, 0x08, 0x91, 0xea, 0x04, 0x21, 0xeb, - 0x00, 0xd1, 0xea, 0xfc, 0x60, 0xeb, 0xf8, 0x60, 0xeb, 0xf4, 0x50, 0xeb, 0xf0, 0xea, 0x9d, 0xf1, - 0x43, 0x19, 0xf8, 0xec, 0x20, 0xad, 0x8b, 0xba, 0x19, 0x29, 0x51, 0xcc, 0x1a, 0x6b, 0x23, 0x04, - 0x5c, 0x01, 0x3e, 0x62, 0xa1, 0x3d, 0x74, 0x41, 0x3d, 0x6a, 0xe1, 0x3c, 0x7c, 0x81, 0x3c, 0x7c, - 0x21, 0x3c, 0x7a, 0xc1, 0x3b, 0x0b, 0x54, 0x10, 0x03, 0x70, 0x21, 0x10, 0xe6, 0xfa, 0x26, 0xe8, - 0xb5, 0x4d, 0xdc, 0xd9, 0x28, 0x3f, 0x58, 0x8b, 0x08, 0xda, 0xe8, 0xc1, 0x5b, 0x4c, 0x10, 0x17, - 0x13, 0xcc, 0xa5, 0x04, 0x75, 0xac, 0xe0, 0x0e, 0x16, 0xe4, 0x61, 0x83, 0x7d, 0x21, 0x58, 0x30, - 0x76, 0x83, 0x28, 0x55, 0xf1, 0xa9, 0x3f, 0x50, 0xae, 0x3f, 0x1c, 0xc6, 0x2a, 0x49, 0xf0, 0x57, - 0x38, 0xde, 0x2b, 0x35, 0xf6, 0x46, 0xc7, 0x65, 0x6e, 0x74, 0xb4, 0x0e, 0x32, 0x88, 0x82, 0x0e, - 0x52, 0x20, 0x84, 0x38, 0x28, 0x21, 0x0e, 0x52, 0x48, 0x83, 0x16, 0x98, 0x10, 0x03, 0x14, 0x6a, - 0x14, 0x2f, 0x17, 0xbe, 0x11, 0xfe, 0x46, 0x34, 0xbf, 0x58, 0x9b, 0x47, 0x71, 0x37, 0x1a, 0xb9, - 0xff, 0x1d, 0x45, 0xc8, 0xe3, 0x72, 0x0a, 0xd2, 0xff, 0x16, 0x58, 0xc6, 0x03, 0x3f, 0x4d, 0x55, - 0x1c, 0xc1, 0xcf, 0x01, 0x75, 0x5e, 0xbe, 0x3c, 0x5a, 0x76, 0xb7, 0xfa, 0x7f, 0x1f, 0xad, 0xb8, - 0x5b, 0xfd, 0xd9, 0xd7, 0x95, 0xec, 0xb7, 0xd9, 0xf7, 0xd5, 0xa3, 0x65, 0x77, 0x6d, 0xfe, 0x7d, - 0xfd, 0x68, 0xd9, 0x5d, 0xef, 0xbf, 0x3a, 0x3e, 0x7e, 0xfd, 0xea, 0xaf, 0x37, 0x57, 0x8f, 0xff, - 0x87, 0x2f, 0xff, 0x71, 0x74, 0x7c, 0x3c, 0xfe, 0x6b, 0xef, 0x6a, 0xfa, 0x6b, 0xe7, 0xaa, 0xff, - 0xaf, 0x57, 0x3f, 0xa3, 0xc7, 0x94, 0xe9, 0x0d, 0x1c, 0x1f, 0xbf, 0xee, 0xff, 0x13, 0xd7, 0x2d, - 0xf7, 0xd9, 0x37, 0x2e, 0x35, 0x50, 0x38, 0x63, 0x15, 0x07, 0xa3, 0x21, 0x3e, 0xe1, 0xcb, 0xe5, - 0x24, 0xc5, 0x23, 0xc5, 0x23, 0xc5, 0x23, 0xc5, 0x23, 0xc5, 0x23, 0xc5, 0x23, 0xc5, 0x13, 0x44, - 0xf1, 0x26, 0x41, 0x94, 0xbe, 0x59, 0x15, 0x40, 0xea, 0x36, 0x81, 0x45, 0x94, 0xb1, 0xd9, 0x41, - 0xc0, 0xe4, 0x3d, 0x49, 0x9b, 0x1c, 0x84, 0x8d, 0x8d, 0x97, 0xb6, 0xb9, 0x41, 0xe2, 0x88, 0x78, - 0x01, 0x9b, 0x1a, 0x44, 0x6d, 0x68, 0x90, 0x6a, 0x62, 0x6b, 0xab, 0x5b, 0x6b, 0x5b, 0x1b, 0x9b, - 0xab, 0x5b, 0xeb, 0xb4, 0xb5, 0x7a, 0x01, 0x52, 0x7c, 0xe9, 0x98, 0x14, 0x14, 0xeb, 0xcb, 0x9d, - 0x58, 0xf9, 0x09, 0xf0, 0xd4, 0xd5, 0x82, 0x54, 0xe4, 0x72, 0x32, 0x29, 0xf8, 0x14, 0xf1, 0x98, - 0x14, 0x2c, 0x51, 0x13, 0x99, 0x14, 0x2c, 0xd3, 0x70, 0x98, 0x14, 0xac, 0x58, 0x60, 0x26, 0x05, - 0xed, 0x65, 0x61, 0x82, 0x92, 0x82, 0x2a, 0x9a, 0x9c, 0xab, 0x78, 0x36, 0x4c, 0x4b, 0x40, 0xb9, - 0xc7, 0x1a, 0xb0, 0x8c, 0xad, 0x68, 0x72, 0x3e, 0x7d, 0xe9, 0x57, 0x84, 0xdd, 0x62, 0x61, 0x77, - 0x8a, 0x6c, 0xb8, 0xd7, 0x9d, 0xd1, 0x53, 0x29, 0x09, 0xb9, 0x09, 0xb9, 0x09, 0xb9, 0x09, 0xb9, - 0x09, 0xb9, 0x09, 0xb9, 0x09, 0xb9, 0x25, 0x95, 0x5a, 0x0f, 0x55, 0x94, 0x06, 0xe9, 0x65, 0xac, - 0x4e, 0x25, 0x40, 0x6e, 0xe0, 0x83, 0x0d, 0xa7, 0x9d, 0x3f, 0xca, 0x6d, 0x3f, 0x11, 0xb4, 0x8b, - 0xf6, 0x63, 0xb7, 0xf9, 0xbe, 0xe5, 0x75, 0x0e, 0x9b, 0x5e, 0xaf, 0xf3, 0xd9, 0xeb, 0xfd, 0x7e, - 0xd0, 0x3a, 0x44, 0xf7, 0xf5, 0xd9, 0x71, 0x57, 0x02, 0x5f, 0xf7, 0xb0, 0x24, 0xa2, 0xf6, 0xe1, - 0x1e, 0x65, 0x68, 0x1f, 0x78, 0xed, 0xbd, 0x5e, 0xab, 0xfb, 0x61, 0xfa, 0x87, 0xe6, 0xce, 0x4e, - 0xb7, 0x75, 0x78, 0xe8, 0xf0, 0x10, 0xbc, 0xa6, 0xda, 0x70, 0xd0, 0xea, 0xb6, 0xf7, 0x77, 0xf8, - 0xfe, 0xeb, 0xfa, 0xfe, 0xbb, 0xad, 0xc3, 0x5e, 0xb3, 0xdb, 0xf3, 0xba, 0xad, 0xe6, 0xe1, 0xfe, - 0x1e, 0xb7, 0xe5, 0x3e, 0xef, 0xd3, 0x27, 0xc2, 0x17, 0x2e, 0x15, 0xe7, 0x5a, 0x7c, 0x93, 0xd6, - 0x72, 0xdb, 0xe3, 0x73, 0xd6, 0x64, 0x14, 0x8b, 0x05, 0xae, 0xf7, 0x3c, 0x02, 0xae, 0x62, 0x05, - 0x5a, 0x71, 0x08, 0x34, 0x46, 0xf1, 0xe6, 0x42, 0x4e, 0xd8, 0xa1, 0x69, 0xb8, 0x5b, 0x43, 0x39, - 0x3a, 0xed, 0x91, 0x82, 0x71, 0x74, 0xda, 0x33, 0x85, 0xe4, 0xe8, 0xb4, 0x92, 0x04, 0xe5, 0xe8, - 0x34, 0x42, 0x4c, 0x7d, 0x2f, 0x11, 0x76, 0x74, 0x1a, 0xe6, 0xbc, 0xd4, 0x05, 0x9f, 0x8c, 0x38, - 0x37, 0x15, 0x1c, 0x04, 0xc0, 0x83, 0x01, 0x09, 0xa0, 0x40, 0x14, 0x38, 0x90, 0x02, 0x12, 0xc4, - 0x81, 0x05, 0x71, 0xa0, 0x41, 0x1a, 0x78, 0xc0, 0x04, 0x11, 0xa0, 0x60, 0x02, 0x1e, 0x54, 0x14, - 0x02, 0x86, 0x2a, 0x3a, 0xcb, 0x92, 0x56, 0x42, 0xce, 0x95, 0x73, 0x79, 0xc1, 0x6d, 0x5a, 0x46, - 0xa3, 0x27, 0x3c, 0xec, 0x90, 0x04, 0x3f, 0x44, 0xc2, 0x10, 0x69, 0x70, 0x44, 0x2c, 0x2c, 0x11, - 0x0b, 0x4f, 0xa4, 0xc2, 0x14, 0x6c, 0xb8, 0x02, 0x0e, 0x5b, 0x8a, 0x97, 0x0e, 0x5f, 0x70, 0xb8, - 0xe0, 0x75, 0x27, 0x41, 0x94, 0xae, 0x6c, 0x48, 0x70, 0xb9, 0x39, 0x46, 0xd8, 0x10, 0x20, 0xaa, - 0x8c, 0x81, 0x40, 0xf3, 0x8f, 0x8c, 0x10, 0xb6, 0x24, 0x6d, 0x40, 0x90, 0x30, 0x70, 0xbb, 0x20, - 0xb6, 0xb0, 0x81, 0x41, 0x85, 0xdc, 0x02, 0x87, 0x99, 0x08, 0x09, 0x6f, 0xb7, 0x4d, 0x51, 0xd0, - 0x20, 0x21, 0x5b, 0x4c, 0x71, 0x63, 0x7d, 0xfd, 0xcd, 0x3a, 0xcd, 0x91, 0x58, 0x58, 0x96, 0x94, - 0x7d, 0xce, 0x6a, 0xb2, 0x2d, 0x1c, 0x60, 0x37, 0x45, 0x2f, 0xb0, 0x1c, 0xe0, 0xe6, 0x68, 0x61, - 0xb1, 0x89, 0x39, 0xd0, 0x2a, 0xf5, 0x94, 0x39, 0xd0, 0x2a, 0x0d, 0x8c, 0x39, 0x50, 0xcd, 0x82, - 0x33, 0x07, 0x5a, 0x3f, 0x92, 0xc8, 0x1c, 0x68, 0xf5, 0x18, 0x81, 0x39, 0xd0, 0xb2, 0x3f, 0xcc, - 0x81, 0x12, 0xdc, 0xde, 0x23, 0x36, 0x73, 0xa0, 0x0c, 0x6f, 0xdf, 0x32, 0x45, 0xe6, 0x40, 0xb5, - 0x9b, 0x22, 0x73, 0xa0, 0xc4, 0xc2, 0x02, 0xa5, 0x64, 0x0e, 0xd4, 0xba, 0x70, 0xe0, 0x5c, 0xe4, - 0x2e, 0x49, 0x48, 0x12, 0x74, 0x26, 0x2e, 0xb3, 0xa0, 0x65, 0x88, 0xc9, 0x2c, 0x68, 0x85, 0x8a, - 0xca, 0x2c, 0x68, 0x95, 0x06, 0xc6, 0x2c, 0xa8, 0x66, 0xc1, 0x99, 0x05, 0xad, 0x1f, 0x4d, 0x14, - 0x98, 0x05, 0x3d, 0x09, 0x22, 0x3f, 0xbe, 0x14, 0x94, 0x05, 0xdd, 0x22, 0xa4, 0xb6, 0x48, 0x32, - 0xd4, 0x8e, 0x34, 0xf0, 0x49, 0x4a, 0x85, 0x9c, 0xf2, 0x26, 0x2a, 0xdd, 0x98, 0x81, 0x83, 0x38, - 0x5d, 0x09, 0xd7, 0x5c, 0x38, 0x97, 0x42, 0xb0, 0xc1, 0xca, 0x36, 0x54, 0xc4, 0xf9, 0x41, 0x49, - 0x1a, 0x4f, 0x06, 0x69, 0x94, 0xc3, 0x98, 0xbd, 0xd9, 0x13, 0x6a, 0xe7, 0x0f, 0xc8, 0x3b, 0xc8, - 0x1f, 0x8b, 0xb7, 0x9f, 0x3d, 0x16, 0xaf, 0x19, 0x2b, 0xdf, 0xeb, 0x24, 0xc3, 0x13, 0xaf, 0x93, - 0xf8, 0x53, 0x94, 0x36, 0xfd, 0xdd, 0xdb, 0xcf, 0x1e, 0xc0, 0xf4, 0xdb, 0xc7, 0xe9, 0xfd, 0x4f, - 0xbf, 0xf4, 0xc2, 0x0b, 0xef, 0xd3, 0xec, 0xce, 0x7b, 0xe1, 0x05, 0x27, 0xbf, 0x21, 0x4b, 0x02, - 0xe2, 0x83, 0x9c, 0x4e, 0x90, 0xa4, 0xcd, 0x34, 0xc5, 0xea, 0x61, 0x77, 0x76, 0x83, 0xa8, 0x15, - 0xaa, 0x29, 0x05, 0x4d, 0x9c, 0x77, 0x4b, 0xd1, 0x24, 0x0c, 0x81, 0xc6, 0xf5, 0xed, 0xfa, 0x5f, - 0x71, 0x85, 0xdb, 0x8f, 0x87, 0x2a, 0x56, 0xc3, 0xed, 0xcb, 0x5c, 0x34, 0x2a, 0x3b, 0x7e, 0xa0, - 0x95, 0x17, 0x60, 0x81, 0x82, 0x6a, 0x85, 0xc1, 0x14, 0x23, 0x82, 0x9a, 0x8f, 0x57, 0x66, 0x25, - 0x30, 0xec, 0x3c, 0xd0, 0x9c, 0x86, 0x2c, 0x67, 0x61, 0xd6, 0x84, 0xcc, 0x29, 0xae, 0x99, 0x2b, - 0x1b, 0x32, 0x15, 0x14, 0x13, 0x11, 0x63, 0x1a, 0x06, 0xc3, 0x67, 0x45, 0xe1, 0xd2, 0x8c, 0x9d, - 0xeb, 0xb7, 0x32, 0x03, 0x16, 0xe6, 0xc4, 0xa3, 0x49, 0xaa, 0x62, 0x37, 0x88, 0x4e, 0x47, 0xf1, - 0xb9, 0x59, 0x2b, 0xbb, 0x5e, 0x98, 0xbf, 0x28, 0x93, 0x21, 0xdf, 0x63, 0x76, 0xee, 0xa7, 0xf1, - 0xb2, 0x0a, 0x84, 0x72, 0x09, 0xa8, 0x32, 0x08, 0x94, 0xf2, 0x06, 0xb8, 0xb2, 0x05, 0xb8, 0x72, - 0x04, 0xb4, 0x32, 0x83, 0x7a, 0x61, 0x36, 0xd3, 0x73, 0x2b, 0x9d, 0x8c, 0x1e, 0x18, 0xb7, 0xd2, - 0xa2, 0xdf, 0x7a, 0x2a, 0x8d, 0x61, 0x7b, 0xc0, 0x18, 0x61, 0x0d, 0x53, 0x29, 0x88, 0x54, 0x09, - 0x08, 0x59, 0xe9, 0x87, 0x56, 0xc9, 0x07, 0x5b, 0xa9, 0x07, 0x5b, 0x89, 0x87, 0x5a, 0x69, 0x57, - 0xef, 0x8c, 0x1f, 0xca, 0x48, 0x67, 0x07, 0x69, 0x21, 0xd4, 0xcd, 0x48, 0x89, 0x62, 0xd6, 0x58, - 0x3b, 0x1f, 0xe0, 0x4a, 0xec, 0x11, 0x4b, 0xe9, 0xa1, 0x4b, 0xe6, 0x51, 0x4b, 0xe3, 0xe1, 0x4b, - 0xe0, 0xe1, 0x4b, 0xdd, 0xd1, 0x4b, 0xda, 0x59, 0x94, 0x82, 0x18, 0x80, 0x0b, 0x81, 0x6e, 0xe4, - 0x39, 0xfd, 0xd0, 0x1d, 0xf8, 0x63, 0xff, 0x24, 0x08, 0x83, 0x34, 0x50, 0x09, 0xee, 0xc2, 0xc6, - 0x6f, 0xc8, 0xcc, 0xfd, 0x8d, 0x12, 0xc3, 0x39, 0x72, 0x58, 0x17, 0x11, 0xde, 0xd1, 0xc3, 0xbc, - 0x98, 0x70, 0x2f, 0x26, 0xec, 0x4b, 0x09, 0xff, 0x58, 0x30, 0x00, 0x0c, 0x0e, 0xc0, 0xc2, 0x82, - 0x42, 0x30, 0xee, 0x6f, 0xb4, 0x15, 0x04, 0xc0, 0x83, 0x01, 0x09, 0xa0, 0x40, 0x14, 0x38, 0x90, - 0x02, 0x12, 0xc4, 0x81, 0x05, 0x71, 0xa0, 0x41, 0x1a, 0x78, 0xc0, 0x04, 0x11, 0xa0, 0x60, 0x02, - 0x1e, 0x54, 0x14, 0x02, 0xaa, 0xaf, 0x63, 0x15, 0x07, 0x53, 0xfd, 0xf3, 0x43, 0x37, 0x15, 0x34, - 0xbd, 0xe7, 0xae, 0xe0, 0xe0, 0x56, 0xbe, 0xa3, 0x4e, 0xfd, 0x49, 0x98, 0x19, 0xf9, 0xa9, 0x1f, - 0x26, 0x9c, 0x3b, 0x54, 0x0f, 0xe0, 0x24, 0x09, 0x40, 0x89, 0x04, 0x52, 0xd2, 0x00, 0x95, 0x58, - 0x60, 0x25, 0x16, 0x60, 0x49, 0x05, 0x5a, 0xd8, 0x80, 0x0b, 0x1c, 0x78, 0x15, 0x2f, 0x5d, 0xe0, - 0xdc, 0xa1, 0xd1, 0x28, 0x54, 0x7e, 0x24, 0x68, 0xf0, 0xd0, 0xca, 0x0a, 0x27, 0x0f, 0xd9, 0x66, - 0x3c, 0x4e, 0xd6, 0x4e, 0x74, 0x3a, 0x09, 0xdd, 0x58, 0x25, 0xa9, 0x1f, 0xa7, 0xb3, 0x33, 0xbe, - 0x50, 0x10, 0x43, 0x78, 0xf0, 0x0e, 0x48, 0x15, 0x48, 0x15, 0x48, 0x15, 0x48, 0x15, 0x48, 0x15, - 0x48, 0x15, 0x48, 0x15, 0x88, 0x76, 0x48, 0x15, 0x48, 0x15, 0x48, 0x15, 0x4a, 0xa4, 0x0a, 0x5f, - 0x54, 0x38, 0x56, 0xb1, 0x60, 0xa6, 0x90, 0xdf, 0x00, 0x89, 0x02, 0x89, 0x02, 0x89, 0x02, 0x89, - 0x02, 0x89, 0x02, 0x89, 0x02, 0x89, 0x02, 0xb1, 0x0e, 0x89, 0x02, 0x89, 0x02, 0x89, 0xc2, 0xd3, - 0xdf, 0xed, 0x78, 0x14, 0x44, 0xa9, 0x9b, 0x8e, 0xdc, 0xd9, 0x97, 0xd1, 0x85, 0x8a, 0xdd, 0xd0, - 0x8f, 0xe4, 0x10, 0x85, 0x87, 0x6e, 0x80, 0x44, 0x81, 0x44, 0x81, 0x44, 0x81, 0x44, 0x81, 0x44, - 0x81, 0x44, 0x81, 0x44, 0x81, 0x58, 0x87, 0x44, 0x81, 0x44, 0x81, 0x44, 0xe1, 0xe9, 0xef, 0x36, - 0x49, 0x27, 0x27, 0xee, 0x6c, 0x0a, 0xac, 0x1c, 0x72, 0x70, 0x53, 0x68, 0x12, 0x02, 0x12, 0x02, - 0x12, 0x02, 0x12, 0x02, 0x12, 0x02, 0x12, 0x02, 0x12, 0x02, 0x62, 0x1a, 0x12, 0x02, 0x12, 0x02, - 0x12, 0x82, 0xa7, 0xbf, 0xdb, 0x34, 0xf6, 0x4f, 0x4f, 0x83, 0x81, 0xab, 0xa2, 0xb3, 0x20, 0x52, - 0x2a, 0x0e, 0xa2, 0x33, 0x39, 0xc4, 0xe0, 0x3e, 0xe1, 0x49, 0x10, 0x48, 0x10, 0x48, 0x10, 0x48, - 0x10, 0x48, 0x10, 0x48, 0x10, 0x48, 0x10, 0x88, 0x71, 0x48, 0x10, 0x48, 0x10, 0xe0, 0x09, 0x02, - 0x47, 0x3f, 0x3d, 0xc6, 0x7f, 0x63, 0xae, 0x83, 0x5e, 0x90, 0x13, 0x7c, 0xad, 0xe5, 0xe2, 0x2e, - 0xc0, 0x62, 0x4f, 0x74, 0xe3, 0xe1, 0x21, 0xd4, 0x8d, 0xd9, 0x34, 0xca, 0x17, 0x34, 0x23, 0x79, - 0x12, 0xa1, 0x0d, 0x86, 0x05, 0x37, 0x64, 0x3b, 0x0d, 0x18, 0x71, 0xb0, 0x77, 0xb9, 0xcb, 0x6d, - 0xbb, 0xd9, 0x73, 0x69, 0x5f, 0x3f, 0x01, 0xaf, 0x17, 0x5e, 0x78, 0xed, 0x9b, 0x4f, 0xe4, 0xfd, - 0xcd, 0x07, 0xf2, 0x82, 0x1e, 0x03, 0xdc, 0x5b, 0x38, 0xd1, 0x68, 0xa8, 0x5c, 0x7f, 0x78, 0x1e, - 0x44, 0x41, 0x92, 0xc6, 0x7e, 0x1a, 0x5c, 0x28, 0x37, 0xf5, 0xcf, 0x80, 0xd7, 0x38, 0x3c, 0x28, - 0x31, 0x97, 0x38, 0xfc, 0x88, 0x58, 0x5c, 0xe2, 0x60, 0x69, 0xbe, 0x8e, 0x4b, 0x1c, 0xea, 0x96, - 0x7f, 0xe3, 0x12, 0x07, 0x1b, 0xb0, 0x3a, 0x97, 0x38, 0x3c, 0xcf, 0x27, 0x73, 0x89, 0x83, 0x7d, - 0x60, 0x40, 0x02, 0x28, 0x10, 0x05, 0x0e, 0xa4, 0x80, 0x04, 0x71, 0x60, 0x41, 0x1c, 0x68, 0x90, - 0x06, 0x1e, 0x30, 0x41, 0x04, 0x28, 0x98, 0x80, 0x07, 0x15, 0x85, 0x80, 0x12, 0x52, 0x0e, 0x0f, - 0x7a, 0x7a, 0xfc, 0xec, 0xc3, 0x43, 0x40, 0x84, 0xd5, 0x46, 0xf5, 0x01, 0x26, 0x22, 0x01, 0x8a, - 0x34, 0xa0, 0x22, 0x16, 0xb0, 0x88, 0x05, 0x2e, 0x52, 0x01, 0x0c, 0x36, 0x90, 0x01, 0x07, 0x34, - 0xc5, 0x4b, 0x97, 0x57, 0x6d, 0x34, 0x09, 0xa2, 0xf4, 0xcd, 0xaa, 0xa0, 0x62, 0xa3, 0x4d, 0x01, - 0xa2, 0x76, 0xfd, 0xe8, 0x6c, 0xfa, 0x74, 0x8f, 0x44, 0xb8, 0x2a, 0x19, 0x21, 0x2c, 0x7b, 0xb0, - 0xbb, 0x41, 0x24, 0x26, 0xe6, 0x0a, 0x03, 0xb7, 0x0b, 0x62, 0x7f, 0xf6, 0xc3, 0x89, 0x12, 0x28, - 0xf7, 0x87, 0xd8, 0x1f, 0xa4, 0xc1, 0x28, 0xda, 0x09, 0xce, 0x82, 0x74, 0x4a, 0xdb, 0x96, 0xc5, - 0xc8, 0x7f, 0xf5, 0x93, 0x20, 0x53, 0xf4, 0xbf, 0xd2, 0x14, 0x35, 0x9b, 0xe2, 0xda, 0xea, 0xd6, - 0xda, 0xd6, 0xc6, 0xe6, 0xea, 0xd6, 0x3a, 0x6d, 0x92, 0x80, 0x58, 0x96, 0x94, 0x7d, 0x12, 0x8b, - 0x67, 0x18, 0x50, 0x27, 0x48, 0xd2, 0x66, 0x9a, 0xc6, 0x32, 0xc8, 0xc5, 0x6e, 0x10, 0xb5, 0x42, - 0x35, 0x65, 0xbf, 0x53, 0x5b, 0x8f, 0x26, 0x61, 0x28, 0x00, 0xb4, 0xef, 0xfa, 0x5f, 0xe5, 0x09, - 0xbd, 0x1f, 0x0f, 0x55, 0xac, 0x86, 0xdb, 0x97, 0xb9, 0xc8, 0x6c, 0xc4, 0xb0, 0x48, 0x32, 0x36, - 0x62, 0x3c, 0x4f, 0x4e, 0xc1, 0x75, 0xdc, 0x0f, 0x95, 0x91, 0xb2, 0x0d, 0x43, 0xae, 0x44, 0x6c, - 0xc3, 0xa8, 0xbd, 0xf9, 0xd6, 0xb5, 0x09, 0x63, 0x6f, 0x34, 0x54, 0xcd, 0x5b, 0x8f, 0xa3, 0x37, - 0x7d, 0x1a, 0xec, 0xc0, 0x40, 0x77, 0x14, 0x4e, 0xa2, 0xce, 0xa6, 0x90, 0x38, 0x1b, 0xc3, 0x18, - 0x44, 0x67, 0xae, 0x1f, 0x9e, 0x8d, 0xe2, 0x20, 0xfd, 0x72, 0x8e, 0xdb, 0x82, 0xf1, 0xb0, 0xc8, - 0xec, 0xc1, 0xf8, 0x11, 0xb1, 0xd8, 0x83, 0xf1, 0x0c, 0xe5, 0x63, 0x0f, 0xc6, 0x73, 0x0c, 0x82, - 0x3d, 0x18, 0x65, 0x63, 0x3c, 0xf6, 0x60, 0xc8, 0x07, 0xea, 0xec, 0xc1, 0x78, 0x26, 0x20, 0x60, - 0x0f, 0x86, 0x75, 0x60, 0x40, 0x02, 0x28, 0x10, 0x05, 0x0e, 0xa4, 0x80, 0x04, 0x71, 0x60, 0x41, - 0x1c, 0x68, 0x90, 0x06, 0x1e, 0x30, 0x41, 0x04, 0x28, 0x98, 0x80, 0x07, 0x15, 0xd7, 0xe0, 0x62, - 0x32, 0x1e, 0x8f, 0xe2, 0x54, 0x0d, 0xaf, 0x09, 0xbc, 0xa0, 0x26, 0x8c, 0x7b, 0xa5, 0x67, 0x17, - 0x46, 0x1d, 0x20, 0x89, 0x24, 0x68, 0x22, 0x12, 0xa2, 0x48, 0x83, 0x2a, 0x62, 0x21, 0x8b, 0x58, - 0xe8, 0x22, 0x15, 0xc2, 0x60, 0x43, 0x19, 0x70, 0x48, 0x53, 0xbc, 0x74, 0x79, 0x5d, 0x18, 0xc1, - 0x50, 0x45, 0x69, 0x90, 0x5e, 0xc6, 0xea, 0x54, 0xd2, 0xdc, 0x57, 0x01, 0x65, 0xa8, 0x4e, 0x3b, - 0x7f, 0xb4, 0xdb, 0x7e, 0x22, 0x28, 0x52, 0xcc, 0x15, 0xe3, 0xb0, 0xeb, 0x35, 0x3b, 0x1f, 0xf7, - 0xbb, 0xed, 0xde, 0x2f, 0xbb, 0x52, 0x82, 0x45, 0x56, 0xad, 0x9c, 0x88, 0x69, 0x7f, 0x59, 0x12, - 0xd5, 0x02, 0x73, 0x5b, 0x3b, 0x0e, 0x3e, 0x38, 0x6c, 0x6e, 0xa0, 0x3a, 0xcc, 0xd5, 0xa1, 0xd7, - 0x6d, 0xbf, 0xef, 0x79, 0xb2, 0xb4, 0x42, 0x84, 0xa4, 0x7d, 0x22, 0x46, 0xab, 0x11, 0x23, 0xcb, - 0xeb, 0xab, 0x17, 0x9a, 0xe5, 0xf5, 0xb5, 0x75, 0x01, 0xcc, 0xcc, 0x3f, 0x2a, 0x67, 0xc1, 0xf2, - 0xfa, 0xaa, 0xeb, 0x73, 0x1f, 0x2c, 0x11, 0x64, 0x7d, 0xbd, 0x5c, 0x89, 0x58, 0x5f, 0x4f, 0xfb, - 0xad, 0x6b, 0x81, 0xfd, 0xe1, 0xec, 0x81, 0x74, 0x67, 0xcf, 0xa3, 0x59, 0x3c, 0x0e, 0x56, 0xd8, - 0xa3, 0xbb, 0x8a, 0x85, 0x72, 0xf5, 0x24, 0x18, 0xba, 0xa1, 0x7f, 0xa2, 0x42, 0x37, 0xce, 0xc7, - 0xc8, 0x08, 0xa9, 0xb3, 0xbf, 0x2b, 0x38, 0xab, 0xed, 0x7f, 0x44, 0x2c, 0x56, 0xdb, 0x3f, 0x43, - 0x05, 0x59, 0x6d, 0xff, 0x1c, 0x83, 0x60, 0xb5, 0x7d, 0xd9, 0x88, 0x8f, 0xd5, 0xf6, 0xf2, 0x61, - 0x3b, 0x6c, 0xb5, 0xfd, 0x14, 0xfd, 0xe2, 0x17, 0xdb, 0x67, 0x52, 0xb2, 0xd6, 0xde, 0x26, 0x28, - 0x20, 0x01, 0x12, 0x88, 0x82, 0x06, 0x52, 0x20, 0x82, 0x38, 0xa8, 0x20, 0x0e, 0x32, 0x48, 0x83, - 0x0e, 0x98, 0x10, 0x02, 0x14, 0x4a, 0xc0, 0x43, 0x8a, 0x9b, 0xd0, 0x42, 0x4e, 0x69, 0xfd, 0x54, - 0x58, 0x19, 0x95, 0xf4, 0x2b, 0xac, 0xa4, 0xaf, 0x0d, 0xf0, 0x10, 0x09, 0x40, 0xa4, 0x01, 0x11, - 0xb1, 0x80, 0x44, 0x2c, 0x30, 0x91, 0x0a, 0x50, 0xb0, 0x81, 0x0a, 0x38, 0x60, 0x11, 0x03, 0x5c, - 0x0a, 0x41, 0x8b, 0xb3, 0x07, 0x79, 0x25, 0xde, 0xd7, 0xa2, 0x0b, 0xf1, 0x04, 0x32, 0xc0, 0x8d, - 0x38, 0x90, 0x23, 0x11, 0xec, 0x88, 0x06, 0x3d, 0x52, 0xc1, 0x8f, 0x78, 0x10, 0x24, 0x1e, 0x0c, - 0x49, 0x07, 0x45, 0x32, 0xc0, 0x91, 0x10, 0x90, 0x24, 0x0e, 0x2c, 0x5d, 0x83, 0x26, 0xe8, 0xf1, - 0x4d, 0xdf, 0x07, 0x4e, 0xc0, 0x63, 0x9d, 0x2c, 0x01, 0x4f, 0x62, 0x41, 0x94, 0x64, 0x30, 0x65, - 0x05, 0xa8, 0x92, 0x0e, 0xae, 0xac, 0x01, 0x59, 0xd6, 0x80, 0x2d, 0x5b, 0x40, 0x97, 0x2c, 0xf0, - 0x25, 0x0c, 0x84, 0x89, 0x05, 0x63, 0x85, 0xe0, 0x2a, 0x4a, 0xe3, 0xcb, 0xac, 0x2a, 0x5e, 0xae, - 0xcf, 0x9c, 0x07, 0xae, 0x1b, 0xf7, 0x22, 0xd4, 0xd7, 0xc8, 0x5c, 0x18, 0x27, 0x1e, 0xb6, 0xd9, - 0x00, 0xdf, 0xac, 0x82, 0x71, 0xb6, 0xc0, 0x39, 0xeb, 0x60, 0x9d, 0x75, 0xf0, 0xce, 0x36, 0x98, - 0x27, 0x13, 0xee, 0x09, 0x85, 0x7d, 0x85, 0xf2, 0xf4, 0x24, 0xe3, 0xa7, 0x5b, 0x51, 0x23, 0x89, - 0xb3, 0xc6, 0x2a, 0xc1, 0x20, 0xea, 0x26, 0x90, 0x5a, 0x59, 0x13, 0x7c, 0x0f, 0xad, 0x68, 0x92, - 0xad, 0xbd, 0x11, 0x6a, 0xca, 0x2f, 0xe8, 0x7c, 0xaa, 0xd7, 0x91, 0xd3, 0x20, 0x4e, 0x52, 0xf7, - 0x22, 0x5f, 0xd8, 0x2c, 0x9c, 0xbf, 0xdd, 0xbc, 0x19, 0x12, 0x38, 0x12, 0x38, 0x12, 0x38, 0x12, - 0x38, 0x12, 0x38, 0x12, 0x38, 0x12, 0x38, 0x62, 0x28, 0x12, 0xb8, 0x1f, 0x8c, 0x1a, 0x93, 0x20, - 0x4a, 0xdf, 0xac, 0x5a, 0xc0, 0xdd, 0x36, 0x05, 0xdf, 0x42, 0x37, 0x1f, 0xa5, 0x72, 0x24, 0xda, - 0xa5, 0xca, 0x0e, 0xd9, 0x4b, 0xf9, 0xec, 0x4a, 0xf1, 0xd8, 0xc3, 0x12, 0x72, 0xb1, 0x70, 0x3b, - 0x9f, 0x73, 0xd6, 0x6a, 0xcb, 0xfd, 0x7c, 0x88, 0xfd, 0x41, 0x1a, 0x8c, 0xa2, 0x9d, 0xe0, 0x2c, - 0xc8, 0xa6, 0x8e, 0x2e, 0x8b, 0xbf, 0xaf, 0xab, 0x9f, 0x2c, 0x70, 0x01, 0xfe, 0x57, 0xba, 0x00, - 0x70, 0x17, 0xb0, 0xb6, 0xba, 0xb5, 0xb6, 0xb5, 0xb1, 0xb9, 0xba, 0xb5, 0x4e, 0x5f, 0x40, 0x42, - 0x42, 0xe9, 0x6f, 0x7e, 0xfa, 0x4c, 0xff, 0x53, 0x62, 0xe9, 0x91, 0x59, 0xca, 0x94, 0xe9, 0x07, - 0xe5, 0xb7, 0x68, 0x7a, 0xed, 0x9d, 0xc1, 0x99, 0x37, 0xfe, 0xc7, 0xf9, 0x7f, 0x40, 0x1e, 0x4b, - 0x2d, 0xdf, 0x7c, 0xd9, 0x06, 0x45, 0xc7, 0x52, 0x33, 0x87, 0x22, 0xa9, 0x3d, 0x57, 0xff, 0xfc, - 0xec, 0xc3, 0x60, 0xd8, 0x99, 0x3e, 0xa5, 0x2c, 0x6b, 0x38, 0xfb, 0xef, 0xf9, 0xdf, 0xc8, 0x70, - 0xc1, 0xf8, 0x0e, 0x4d, 0x80, 0x33, 0x13, 0xd6, 0x1e, 0x29, 0xb2, 0x2d, 0x92, 0xb3, 0x24, 0x2a, - 0x16, 0x98, 0xb3, 0x24, 0x34, 0x0b, 0xcf, 0x59, 0x12, 0x86, 0x6e, 0x80, 0xb3, 0x24, 0x88, 0x39, - 0xec, 0x21, 0x51, 0xe2, 0x66, 0x49, 0x64, 0x44, 0xc3, 0x4d, 0x82, 0xff, 0x0a, 0x1e, 0x28, 0x71, - 0xe3, 0x1e, 0x64, 0x4e, 0x95, 0x58, 0xe6, 0x54, 0x09, 0xc2, 0x2a, 0x9b, 0xe1, 0x95, 0x74, 0x98, - 0x65, 0x0d, 0xdc, 0xb2, 0x06, 0x76, 0xd9, 0x02, 0xbf, 0x64, 0xc1, 0x30, 0x61, 0x70, 0xac, 0x50, - 0x12, 0xb1, 0x55, 0xa9, 0xf2, 0xab, 0x51, 0x05, 0x57, 0xa1, 0x0a, 0xaf, 0x3e, 0x15, 0x5c, 0x83, - 0x6d, 0x43, 0xb5, 0xa9, 0x25, 0x25, 0x66, 0xb6, 0x54, 0x97, 0xda, 0x54, 0x49, 0x26, 0xb8, 0x9a, - 0xd4, 0x8a, 0x2a, 0x52, 0xdb, 0x4c, 0x7b, 0x65, 0x63, 0x73, 0x73, 0x73, 0x75, 0x65, 0x83, 0x16, - 0x4e, 0x3a, 0x50, 0x2f, 0xa9, 0xfb, 0x2c, 0xcd, 0xaa, 0x7b, 0x84, 0x72, 0x44, 0xce, 0xec, 0xbb, - 0xde, 0xaa, 0x25, 0x6f, 0xc0, 0x0c, 0xd3, 0xde, 0x9a, 0x05, 0x67, 0xda, 0xdb, 0xf0, 0x4d, 0x30, - 0xed, 0x0d, 0x72, 0x23, 0x4c, 0x7b, 0x13, 0xd1, 0xd4, 0x86, 0x77, 0xdb, 0x90, 0xf6, 0x8e, 0x82, - 0x51, 0x24, 0x38, 0xeb, 0xbd, 0xb2, 0x25, 0x50, 0xf6, 0x5c, 0x6d, 0x98, 0xf5, 0x36, 0xa4, 0xf4, - 0xc1, 0x50, 0x45, 0x69, 0x90, 0x5e, 0xc6, 0xea, 0xd4, 0x86, 0xd1, 0x91, 0x82, 0x5b, 0x91, 0x9d, - 0x76, 0xfe, 0x2a, 0xb6, 0xfd, 0xc4, 0x82, 0xd9, 0x5b, 0x73, 0x05, 0xdb, 0x3f, 0x3c, 0xf8, 0xe0, - 0x75, 0xdb, 0xde, 0x61, 0xd7, 0x3b, 0x6c, 0xef, 0x78, 0x9d, 0xe6, 0x76, 0xab, 0xe3, 0xf5, 0x3a, - 0x9f, 0xbd, 0xde, 0xef, 0x07, 0xad, 0x43, 0xc7, 0x86, 0xac, 0x66, 0x22, 0x7e, 0x68, 0xcc, 0x92, - 0x15, 0x83, 0x63, 0x6e, 0xe9, 0xdd, 0x5d, 0x7d, 0x73, 0xd8, 0xcb, 0x6f, 0xf4, 0xd3, 0x67, 0x7e, - 0x9c, 0xfc, 0xa1, 0x16, 0x90, 0x4a, 0x45, 0x93, 0x73, 0x15, 0xcf, 0xba, 0x5b, 0x39, 0x8d, 0xdb, - 0xe8, 0x3d, 0x70, 0x1a, 0x37, 0x9d, 0xbc, 0x0d, 0xcf, 0x97, 0x8d, 0x33, 0x65, 0x7a, 0x05, 0x4e, - 0x1f, 0x00, 0x9e, 0x3e, 0x20, 0x67, 0x88, 0x09, 0x3b, 0xe8, 0xcb, 0x50, 0xea, 0x49, 0xf4, 0x47, - 0x34, 0xfa, 0x33, 0x72, 0xd3, 0xf0, 0x42, 0x5e, 0x1f, 0xfd, 0x4d, 0xe1, 0xd9, 0x4d, 0x5f, 0x85, - 0xb8, 0xec, 0xa6, 0xd7, 0xa8, 0xce, 0xec, 0xa6, 0xd7, 0x69, 0x88, 0xec, 0xa6, 0x37, 0x8d, 0x03, - 0xd9, 0x4d, 0x4f, 0x0c, 0x32, 0x57, 0x06, 0x71, 0xdd, 0xf4, 0xb2, 0x46, 0x0f, 0x2d, 0xc4, 0x1a, - 0x49, 0x23, 0x88, 0x84, 0x82, 0x27, 0xb1, 0x20, 0x4a, 0x32, 0x98, 0xb2, 0x02, 0x54, 0x49, 0x07, - 0x57, 0xd6, 0x80, 0x2c, 0x6b, 0xc0, 0x96, 0x2d, 0xa0, 0x4b, 0x16, 0xf8, 0x12, 0x06, 0xc2, 0xc4, - 0x82, 0xb1, 0x42, 0xf0, 0x50, 0x45, 0x67, 0x59, 0x7a, 0x56, 0xf8, 0x56, 0xcf, 0xfc, 0x3e, 0xb8, - 0xd0, 0x93, 0x70, 0xad, 0x5e, 0xb0, 0xcd, 0x2a, 0xf8, 0x66, 0x0b, 0x8c, 0xb3, 0x0e, 0xce, 0x59, - 0x07, 0xeb, 0x6c, 0x83, 0x77, 0x32, 0x61, 0x9e, 0x50, 0xb8, 0x57, 0x28, 0x8f, 0x5d, 0x0b, 0x3d, - 0x57, 0x36, 0x2c, 0x28, 0xff, 0xda, 0xe0, 0x42, 0x4f, 0xc3, 0x1f, 0x2e, 0xf4, 0x24, 0xb9, 0xa8, - 0xf0, 0x76, 0xb8, 0xd0, 0x93, 0xe1, 0x5c, 0x87, 0x0b, 0xe0, 0x42, 0x4f, 0x78, 0x17, 0xb0, 0xb1, - 0xbe, 0xfe, 0x86, 0xbb, 0x3c, 0xc9, 0x45, 0x28, 0xfd, 0xad, 0x0f, 0x77, 0x79, 0x32, 0xcc, 0x3d, - 0xe4, 0x66, 0x52, 0xc9, 0x8c, 0x55, 0xf2, 0x5c, 0x27, 0x4b, 0x62, 0x31, 0x73, 0xfd, 0x48, 0x76, - 0xc0, 0x5c, 0x3f, 0x92, 0x61, 0x33, 0xd7, 0x0f, 0x7e, 0x43, 0xcc, 0xf5, 0x13, 0x35, 0x3d, 0x59, - 0x79, 0x98, 0xeb, 0x87, 0xc3, 0x50, 0xcc, 0xf5, 0x9b, 0xfe, 0x30, 0xd7, 0x4f, 0x72, 0x51, 0xe1, - 0xed, 0x30, 0xd7, 0xcf, 0x70, 0xae, 0xc3, 0x05, 0x30, 0xd7, 0x0f, 0xef, 0x02, 0x98, 0xeb, 0x27, - 0x17, 0xa1, 0xf4, 0x0b, 0x1f, 0xe6, 0xfa, 0x19, 0xe6, 0x1e, 0x72, 0x33, 0x17, 0xb9, 0xeb, 0x14, - 0x9e, 0xec, 0x9f, 0xdd, 0x06, 0xb3, 0xfd, 0x26, 0xc4, 0x67, 0xb6, 0x1f, 0xc8, 0x10, 0x98, 0xed, - 0x47, 0x32, 0x6c, 0x66, 0xfb, 0xc1, 0x6f, 0x88, 0xd9, 0x7e, 0xe2, 0xa6, 0x27, 0x2b, 0x8f, 0x3d, - 0xd9, 0xfe, 0x93, 0x20, 0xf2, 0xe3, 0x4b, 0x0b, 0xb2, 0xfd, 0x5b, 0xa4, 0x3a, 0x94, 0x58, 0xba, - 0x83, 0x91, 0x3a, 0xcb, 0xb3, 0x90, 0xbf, 0x0e, 0x33, 0x3d, 0x6f, 0x4c, 0x49, 0x94, 0x34, 0xdf, - 0x53, 0x9e, 0x01, 0x73, 0x22, 0x18, 0x5d, 0x4b, 0xed, 0x5c, 0x8a, 0xa4, 0x59, 0x95, 0x49, 0x1a, - 0x4f, 0x06, 0x69, 0x94, 0x43, 0xc9, 0xbd, 0xd9, 0xb3, 0x6e, 0xe7, 0x8f, 0xda, 0x3b, 0xc8, 0x1f, - 0xb0, 0xb7, 0x9f, 0x3d, 0x60, 0xaf, 0x19, 0x2b, 0xdf, 0xeb, 0x24, 0xc3, 0x13, 0xaf, 0x93, 0xf8, - 0x53, 0x04, 0x3d, 0xfd, 0xdd, 0xdb, 0xcf, 0x1e, 0xe5, 0xf4, 0x5b, 0x37, 0x7b, 0x92, 0xed, 0xeb, - 0x07, 0xe9, 0xf5, 0xc2, 0x0b, 0xef, 0x70, 0xf6, 0x0c, 0xbb, 0xb3, 0x47, 0x78, 0x18, 0x0c, 0x3b, - 0xd3, 0x07, 0x98, 0xd5, 0x47, 0x64, 0xff, 0xfd, 0xd3, 0xec, 0xd1, 0xf5, 0xc2, 0x0b, 0x8e, 0x59, - 0xae, 0x83, 0x84, 0xe0, 0xee, 0xd6, 0xe9, 0x04, 0x49, 0xda, 0x4c, 0x53, 0x19, 0x03, 0x7f, 0x9c, - 0xdd, 0x20, 0x6a, 0x85, 0x6a, 0x6a, 0x60, 0x89, 0xf3, 0x6e, 0x29, 0x9a, 0x84, 0xa1, 0x80, 0x19, - 0xdb, 0xbb, 0xfe, 0x57, 0x79, 0x42, 0xef, 0xc7, 0x43, 0x15, 0xab, 0xe1, 0xf6, 0x65, 0x2e, 0x32, - 0x8d, 0xac, 0x3e, 0x58, 0xa6, 0x0e, 0x18, 0x46, 0x00, 0x6e, 0x41, 0xc0, 0x2b, 0xd8, 0x20, 0x05, - 0x37, 0xf4, 0x63, 0x4a, 0x06, 0xea, 0x27, 0xa5, 0xf8, 0x47, 0xdb, 0xfd, 0x22, 0xa6, 0xb1, 0xe3, - 0x99, 0x12, 0x96, 0x44, 0x60, 0x46, 0x8d, 0x6e, 0xcc, 0x16, 0x1b, 0x31, 0x20, 0xa6, 0x31, 0x8d, - 0x61, 0xb0, 0x5c, 0x1a, 0x8e, 0xe3, 0x00, 0x72, 0x1a, 0xa0, 0xab, 0x14, 0xa0, 0x57, 0x25, 0x80, - 0xae, 0x42, 0x80, 0xad, 0xb0, 0x43, 0xae, 0x9c, 0x13, 0x51, 0x11, 0x87, 0x5e, 0xe9, 0x26, 0xa6, - 0x82, 0x4d, 0x4c, 0x65, 0x9a, 0x94, 0x8a, 0x33, 0x82, 0xf1, 0x6f, 0xbd, 0x44, 0xd4, 0x51, 0xfe, - 0xd8, 0xa3, 0x7b, 0x24, 0x8c, 0xe6, 0x01, 0x2f, 0xc6, 0x87, 0x2f, 0xb6, 0x97, 0x50, 0x4c, 0x2f, - 0xaa, 0x58, 0x5e, 0x4a, 0x31, 0xbc, 0xb8, 0x62, 0x77, 0x71, 0xc5, 0xec, 0xd2, 0x8a, 0xd5, 0x99, - 0xac, 0x7f, 0xcc, 0xcb, 0x85, 0x2f, 0x26, 0xbf, 0xb1, 0x1f, 0x3a, 0x18, 0x45, 0xc8, 0x1e, 0x73, - 0xce, 0xe2, 0xb7, 0x80, 0x65, 0xcc, 0x5f, 0x37, 0xf6, 0x64, 0x17, 0x01, 0x67, 0xea, 0x73, 0xa5, - 0x0c, 0x86, 0x2a, 0x4a, 0x83, 0xf4, 0x32, 0x56, 0xa7, 0x12, 0xce, 0xa0, 0xe7, 0x2a, 0x2a, 0x60, - 0x5a, 0x81, 0xd3, 0xce, 0x1f, 0xed, 0xb6, 0x9f, 0x28, 0x79, 0xdb, 0xec, 0xbb, 0x6d, 0xaf, 0x73, - 0xd8, 0xf4, 0x7a, 0x9d, 0xcf, 0x5e, 0xef, 0xf7, 0x83, 0xd6, 0xa1, 0x94, 0x95, 0xf6, 0xd9, 0x4c, - 0x8b, 0x44, 0xd4, 0xf0, 0x27, 0xa1, 0x4b, 0x7b, 0xbb, 0x6d, 0x6f, 0x6f, 0x7f, 0xa7, 0xe5, 0x35, - 0x77, 0x76, 0xdb, 0x7b, 0x5e, 0xaf, 0xf9, 0x51, 0xd0, 0xb6, 0xec, 0x9f, 0xa8, 0x1c, 0x95, 0x2b, - 0xc7, 0x87, 0x4f, 0x7b, 0xef, 0x7b, 0xed, 0xfd, 0xbd, 0x66, 0xc7, 0x7b, 0xdf, 0x3c, 0x68, 0x6e, - 0xb7, 0x3b, 0xed, 0x5e, 0xbb, 0x75, 0x48, 0x2d, 0xa1, 0x96, 0xdc, 0xd0, 0x92, 0xc3, 0xae, 0xd7, - 0xec, 0x7c, 0xdc, 0xef, 0xb6, 0x7b, 0xbf, 0xec, 0x52, 0x35, 0xa8, 0x1a, 0x37, 0x54, 0xa3, 0xbd, - 0xf7, 0x61, 0xbf, 0xbb, 0xdb, 0xa4, 0x0f, 0xa1, 0xa2, 0x7c, 0xd7, 0x87, 0x1c, 0xb6, 0x77, 0xbc, - 0x4e, 0x73, 0xbb, 0xd5, 0xf1, 0xba, 0xcd, 0xbd, 0x8f, 0x2d, 0x87, 0x6d, 0x7a, 0xa5, 0x7e, 0xfa, - 0xec, 0xbb, 0xb1, 0xd9, 0x0d, 0x08, 0x4a, 0x58, 0xa8, 0x68, 0x72, 0xae, 0xe2, 0x59, 0x41, 0x9f, - 0xa0, 0x84, 0xc5, 0x9a, 0x00, 0x59, 0x5b, 0xd1, 0xe4, 0xdc, 0x79, 0xb7, 0xf4, 0xd7, 0x15, 0xab, - 0xec, 0x2d, 0x72, 0x92, 0x2c, 0x58, 0x16, 0xe5, 0x9a, 0x59, 0xb0, 0x5c, 0x61, 0xc1, 0x32, 0xde, - 0xbc, 0x09, 0xd6, 0xe0, 0xde, 0xa7, 0x63, 0x37, 0x3b, 0xfa, 0x61, 0x2b, 0x71, 0x71, 0xc7, 0x0e, - 0xb0, 0x1e, 0xf7, 0x91, 0x82, 0xb1, 0x1e, 0xf7, 0x99, 0x42, 0xb2, 0x1e, 0xb7, 0x24, 0x41, 0x59, - 0x8f, 0x4b, 0xac, 0xa9, 0xef, 0x25, 0xc2, 0xd6, 0xe3, 0x62, 0x36, 0xe1, 0x2c, 0xf8, 0x64, 0xc4, - 0x66, 0x1c, 0x70, 0x10, 0x00, 0x0f, 0x06, 0x24, 0x80, 0x02, 0x51, 0xe0, 0x40, 0x0a, 0x48, 0x10, - 0x07, 0x16, 0xc4, 0x81, 0x06, 0x69, 0xe0, 0x01, 0x13, 0x44, 0x80, 0x82, 0x09, 0x78, 0x50, 0x51, - 0x08, 0x18, 0xaa, 0xe8, 0x2c, 0xcb, 0x5e, 0x81, 0xfb, 0xa1, 0xb9, 0x73, 0xcf, 0xe5, 0x05, 0xb7, - 0x69, 0x19, 0xdb, 0x38, 0xc4, 0x6c, 0xdd, 0x90, 0xb4, 0x5d, 0x43, 0xe4, 0x16, 0x0d, 0x69, 0xdb, - 0x32, 0xc4, 0x6e, 0xc5, 0x10, 0xbb, 0xfd, 0x42, 0xea, 0x96, 0x0b, 0x96, 0x42, 0x3c, 0xe7, 0xa5, - 0x8b, 0xd9, 0x4e, 0x21, 0x6f, 0xe7, 0xb4, 0xa0, 0xdd, 0xd2, 0xc2, 0x76, 0x48, 0x0b, 0x9a, 0x48, - 0x2e, 0x71, 0x27, 0xb4, 0xd0, 0x55, 0x73, 0x52, 0x77, 0x3c, 0x4b, 0x5e, 0xe2, 0x2a, 0xa8, 0xe0, - 0x57, 0xe4, 0x6e, 0x66, 0xe9, 0xa6, 0x28, 0x70, 0xd7, 0xb2, 0x68, 0x73, 0xe4, 0x5a, 0x83, 0x52, - 0x3e, 0x7d, 0xd6, 0x84, 0xda, 0x16, 0x0e, 0xb0, 0x87, 0x1e, 0x2d, 0xb0, 0x1c, 0xe0, 0xe1, 0x47, - 0xc2, 0x62, 0x13, 0x73, 0xa0, 0x55, 0xea, 0x29, 0x73, 0xa0, 0x55, 0x1a, 0x18, 0x73, 0xa0, 0x9a, - 0x05, 0x67, 0x0e, 0xb4, 0x7e, 0x24, 0x91, 0x39, 0xd0, 0xea, 0x31, 0x02, 0x73, 0xa0, 0x65, 0x7f, - 0x98, 0x03, 0x25, 0xb8, 0xbd, 0x47, 0x6c, 0xe6, 0x40, 0x19, 0xde, 0xbe, 0x65, 0x8a, 0xcc, 0x81, - 0x6a, 0x37, 0x45, 0xe6, 0x40, 0x89, 0x85, 0x05, 0x4a, 0xc9, 0x1c, 0xa8, 0x75, 0xe1, 0xc0, 0xb9, - 0xc8, 0x5d, 0x92, 0x90, 0x24, 0xe8, 0x4c, 0x5c, 0x66, 0x41, 0xcb, 0x10, 0x93, 0x59, 0xd0, 0x0a, - 0x15, 0x95, 0x59, 0xd0, 0x2a, 0x0d, 0x8c, 0x59, 0x50, 0xcd, 0x82, 0x33, 0x0b, 0x5a, 0x3f, 0x9a, - 0x28, 0x30, 0x0b, 0x7a, 0x12, 0x44, 0x7e, 0x7c, 0x29, 0x28, 0x0b, 0xba, 0x45, 0x48, 0x6d, 0x91, - 0x64, 0x5c, 0xe8, 0xfc, 0x3c, 0x39, 0x05, 0x8f, 0x56, 0xba, 0x31, 0x0c, 0x07, 0x71, 0xcc, 0x12, - 0xae, 0xdd, 0x70, 0x40, 0x85, 0x60, 0xcb, 0xb5, 0xc4, 0x62, 0xeb, 0xba, 0xa9, 0xf9, 0xd3, 0xec, - 0x11, 0xf4, 0xc2, 0x0b, 0x0e, 0x85, 0x43, 0x96, 0x04, 0xc4, 0x2b, 0x39, 0x9d, 0x20, 0x49, 0x9b, - 0x69, 0x8a, 0xd5, 0xde, 0xee, 0xec, 0x06, 0x51, 0x2b, 0x54, 0x53, 0x76, 0x9a, 0x38, 0xef, 0x96, - 0xa2, 0x49, 0x18, 0x02, 0x4d, 0xf2, 0xdb, 0xf5, 0xbf, 0xe2, 0x0a, 0xb7, 0x1f, 0x0f, 0x55, 0xac, - 0x86, 0xdb, 0x97, 0xb9, 0x68, 0x54, 0x76, 0xfc, 0xd0, 0x2b, 0x38, 0xe4, 0x3a, 0x50, 0x5b, 0xee, - 0x2b, 0x0f, 0xaf, 0x18, 0x31, 0xd5, 0x7c, 0x04, 0x33, 0x2b, 0x81, 0x61, 0x77, 0x82, 0xe6, 0x46, - 0x84, 0xba, 0x0f, 0xb3, 0xb6, 0x64, 0x4e, 0x83, 0xcd, 0x5c, 0xd9, 0x90, 0xcd, 0xa0, 0xd8, 0x8a, - 0x3c, 0x1b, 0x31, 0x18, 0x59, 0xab, 0x8e, 0xa4, 0x66, 0x2c, 0x5f, 0xbf, 0xdd, 0x19, 0xb0, 0x39, - 0xc3, 0x53, 0x46, 0x21, 0xa6, 0x88, 0x1a, 0x9e, 0x12, 0x6a, 0xbc, 0x08, 0x03, 0xa1, 0xb8, 0x02, - 0xaa, 0x68, 0x02, 0xa5, 0x18, 0x02, 0xae, 0xc8, 0x01, 0xae, 0x78, 0x01, 0xad, 0x28, 0xa1, 0x5e, - 0x58, 0xcd, 0xf4, 0x94, 0x4b, 0x27, 0x19, 0x8c, 0x00, 0xca, 0x13, 0xae, 0x83, 0x58, 0x26, 0x8e, - 0x61, 0x8b, 0xc0, 0xa8, 0x3c, 0x84, 0xa9, 0x2c, 0x44, 0xaa, 0x1c, 0x84, 0xac, 0x0c, 0x44, 0xab, - 0xfc, 0x83, 0xad, 0xec, 0x83, 0xad, 0xdc, 0x43, 0xad, 0xcc, 0xab, 0x77, 0xd2, 0x0f, 0xa6, 0x72, - 0x0e, 0x74, 0x6d, 0x24, 0xd2, 0x5a, 0x48, 0x90, 0xb5, 0x8f, 0x06, 0x73, 0x8c, 0x06, 0xc9, 0x16, - 0xc4, 0x08, 0x1e, 0xa4, 0x11, 0x3b, 0x84, 0x70, 0x84, 0x70, 0x84, 0x70, 0x84, 0x70, 0x84, 0x70, - 0x84, 0x70, 0x77, 0xbc, 0x4e, 0x30, 0x54, 0x51, 0x1a, 0xa4, 0x97, 0xb1, 0x3a, 0x45, 0x82, 0x70, - 0x00, 0x8d, 0xec, 0x4e, 0x3b, 0x7f, 0x34, 0xdb, 0x7e, 0x02, 0xe4, 0x09, 0xe7, 0x2f, 0x6e, 0xff, - 0xf0, 0xe0, 0x83, 0xb7, 0x7f, 0xd0, 0xfc, 0xff, 0x7f, 0x6a, 0x79, 0x9d, 0xc3, 0xa6, 0xd7, 0xfb, - 0xfd, 0xa0, 0x85, 0xe2, 0x14, 0xb3, 0x91, 0x04, 0x09, 0xd4, 0x8c, 0x1b, 0xd0, 0x75, 0xb7, 0xbd, - 0x6e, 0xf3, 0xc3, 0x87, 0xf6, 0x7b, 0xaf, 0xb5, 0xf7, 0xb1, 0xbd, 0xd7, 0x6a, 0x75, 0xdb, 0x7b, - 0x1f, 0x1d, 0x2e, 0x2f, 0x16, 0xf3, 0xfa, 0x3e, 0x76, 0x9b, 0xef, 0x33, 0xf3, 0xe3, 0x4b, 0x93, - 0xf3, 0xd2, 0xba, 0xfb, 0x9f, 0x7a, 0xad, 0xae, 0xd7, 0xde, 0xfb, 0xb0, 0xdf, 0xdd, 0x6d, 0xf6, - 0xda, 0xfb, 0x7b, 0x7c, 0x7b, 0x72, 0xde, 0xde, 0x34, 0xee, 0x7d, 0x5e, 0xf5, 0x5a, 0xbf, 0xf5, - 0x5a, 0x7b, 0x3b, 0xad, 0x1d, 0xaf, 0xd3, 0xde, 0xfb, 0x95, 0xef, 0x4f, 0xee, 0xfb, 0x3b, 0xe8, - 0xb6, 0x3e, 0xb4, 0x7f, 0x73, 0xd8, 0x9c, 0x71, 0xeb, 0xd3, 0xaf, 0x3b, 0x51, 0xe3, 0x81, 0xbb, - 0x9e, 0x2c, 0x01, 0x8b, 0x23, 0x7f, 0xa4, 0x38, 0xd2, 0x60, 0xf3, 0x6d, 0x3d, 0x8a, 0x06, 0xd3, - 0xd8, 0x3f, 0x3d, 0x0d, 0x06, 0xae, 0x8a, 0xce, 0x82, 0x48, 0xa9, 0x38, 0x88, 0xce, 0xcc, 0x97, - 0x10, 0xde, 0x27, 0x14, 0x0b, 0x0a, 0x8d, 0x08, 0xc0, 0x82, 0xc2, 0x3b, 0xc2, 0xb0, 0xa0, 0xf0, - 0x01, 0x81, 0x58, 0x50, 0x48, 0x7c, 0x73, 0xfd, 0xf0, 0x8d, 0x17, 0x14, 0x66, 0x7d, 0x46, 0x38, - 0x67, 0xd1, 0x53, 0x69, 0x30, 0xce, 0xa2, 0x57, 0x78, 0x16, 0x0d, 0x13, 0xda, 0x20, 0x43, 0x1c, - 0x5a, 0xa8, 0x83, 0x0d, 0x79, 0xb0, 0xa1, 0x0f, 0x35, 0x04, 0x82, 0xa4, 0x38, 0x0c, 0xfb, 0x1d, - 0xd3, 0xa1, 0xf1, 0x66, 0x88, 0xc4, 0x3b, 0x5e, 0xc5, 0x99, 0x2c, 0x00, 0x12, 0x30, 0xe1, 0x02, - 0x27, 0x62, 0x00, 0x85, 0x0e, 0xa4, 0xa8, 0x01, 0x15, 0x3e, 0xb0, 0xc2, 0x07, 0x58, 0xf4, 0x40, - 0x8b, 0x11, 0x70, 0x41, 0x02, 0x2f, 0x5c, 0x00, 0x2e, 0x04, 0x0a, 0x83, 0xe8, 0x0f, 0x3c, 0xaf, - 0x30, 0x77, 0xa5, 0x99, 0x74, 0x60, 0xf6, 0x86, 0x15, 0x9a, 0x61, 0x43, 0x34, 0x72, 0xa8, 0x16, - 0x11, 0xb2, 0xd1, 0x43, 0xb7, 0x98, 0x10, 0x2e, 0x26, 0x94, 0x4b, 0x09, 0xe9, 0x58, 0xa1, 0x1d, - 0x2c, 0xc4, 0xc3, 0x86, 0xfa, 0x42, 0xb0, 0x64, 0x72, 0xe2, 0x42, 0xa4, 0xa8, 0xbf, 0xeb, 0x96, - 0x0b, 0x49, 0x41, 0xed, 0x14, 0x13, 0x0a, 0xc0, 0x43, 0x02, 0x09, 0xd0, 0x40, 0x14, 0x44, 0x90, - 0x02, 0x15, 0xc4, 0x41, 0x06, 0x71, 0xd0, 0x41, 0x1a, 0x84, 0xc0, 0x84, 0x12, 0xa0, 0x90, 0x02, - 0x1e, 0x5a, 0xdc, 0x85, 0x18, 0x72, 0xd6, 0x01, 0xce, 0x05, 0x96, 0xb1, 0x10, 0x70, 0x85, 0x0b, - 0x01, 0x6b, 0x03, 0x40, 0x44, 0x02, 0x11, 0x69, 0x80, 0x44, 0x2c, 0x30, 0x11, 0x0b, 0x50, 0xa4, - 0x02, 0x15, 0x6c, 0xc0, 0x02, 0x0e, 0x5c, 0xc4, 0x00, 0x98, 0x42, 0x50, 0x7f, 0x78, 0x1e, 0x44, - 0x41, 0x92, 0xc6, 0x7e, 0x1a, 0x5c, 0x28, 0xf7, 0x2c, 0x1e, 0x4d, 0xc6, 0x89, 0x1c, 0x77, 0x36, - 0x8f, 0x19, 0xf7, 0xdf, 0x86, 0x10, 0x0f, 0x21, 0x03, 0xf4, 0x88, 0x03, 0x3f, 0x12, 0x41, 0x90, - 0x68, 0x30, 0x24, 0x15, 0x14, 0x89, 0x07, 0x47, 0xe2, 0x41, 0x92, 0x74, 0xb0, 0x24, 0x03, 0x34, - 0x09, 0x01, 0x4f, 0xe2, 0x40, 0xd4, 0x6d, 0x30, 0x35, 0x03, 0x1f, 0xf2, 0x9c, 0xdf, 0x2d, 0x28, - 0x95, 0xdf, 0x84, 0x30, 0xef, 0x21, 0x0b, 0x48, 0x89, 0x05, 0x54, 0x92, 0x81, 0x95, 0x15, 0x00, - 0x4b, 0x3a, 0xd0, 0xb2, 0x06, 0x70, 0x59, 0x03, 0xbc, 0x6c, 0x01, 0x60, 0xb2, 0x80, 0x98, 0x30, - 0x40, 0x26, 0x16, 0x98, 0x15, 0x82, 0x9f, 0x04, 0xa9, 0x1b, 0x44, 0x43, 0xf5, 0x55, 0xae, 0xcb, - 0x9c, 0xc7, 0xad, 0xeb, 0x5b, 0x11, 0xea, 0x69, 0x30, 0xc6, 0x37, 0xd7, 0x0e, 0xb4, 0xd9, 0x00, - 0xde, 0xac, 0x02, 0x71, 0xb6, 0x80, 0x39, 0xeb, 0x40, 0x9d, 0x75, 0xe0, 0xce, 0x36, 0x90, 0x27, - 0x13, 0xec, 0x09, 0x05, 0x7d, 0x85, 0xf2, 0xc0, 0x8c, 0xfb, 0x7e, 0x76, 0xd4, 0x08, 0x95, 0x7f, - 0x8a, 0x31, 0x22, 0xfc, 0xb9, 0x20, 0x6a, 0x65, 0x53, 0xf0, 0x3d, 0x1c, 0xe4, 0x03, 0xf2, 0x5e, - 0xbf, 0x9e, 0x8d, 0xa4, 0x6b, 0x5c, 0x43, 0xdb, 0x17, 0x74, 0x47, 0x74, 0x45, 0xf7, 0x6b, 0x8d, - 0xd9, 0x8d, 0xbc, 0xa5, 0xf9, 0x20, 0x93, 0x1b, 0x7d, 0x4b, 0xf3, 0x3e, 0xa4, 0x70, 0xa4, 0x70, - 0xa4, 0x70, 0xa4, 0x70, 0xa4, 0x70, 0xa4, 0x70, 0xa4, 0x70, 0xf8, 0xca, 0x23, 0x35, 0x7f, 0x5f, - 0xdc, 0x80, 0xfc, 0x3c, 0xfe, 0x42, 0xfc, 0x93, 0x9e, 0xcf, 0xbf, 0x0b, 0x0a, 0xff, 0x3f, 0xf6, - 0xde, 0xfe, 0xa9, 0x6d, 0x24, 0x5b, 0x1f, 0xff, 0x3d, 0x7f, 0x05, 0xe5, 0xba, 0xb7, 0x0a, 0x66, - 0x23, 0xb0, 0x8d, 0x81, 0x40, 0xd5, 0xad, 0x29, 0x27, 0x38, 0x59, 0x3e, 0x63, 0xc0, 0x5f, 0x70, - 0x66, 0x77, 0x0a, 0xbc, 0x2e, 0x61, 0x35, 0x44, 0x37, 0xb2, 0xe4, 0x95, 0xda, 0xd9, 0x70, 0x13, - 0xff, 0xef, 0xdf, 0xb2, 0x6c, 0x0b, 0xbf, 0x06, 0x5b, 0xea, 0xd3, 0x2f, 0xf2, 0x43, 0x4d, 0x4d, - 0x1c, 0x02, 0xea, 0x56, 0xf7, 0xe9, 0x73, 0x9e, 0xf3, 0xf4, 0x79, 0x29, 0x1a, 0xfe, 0x1a, 0xa6, - 0x83, 0xc3, 0x3c, 0x81, 0xc4, 0x5c, 0x82, 0xc5, 0xbc, 0x81, 0xc6, 0xdc, 0x82, 0xc7, 0xdc, 0x82, - 0xc8, 0xbc, 0x82, 0x49, 0xb3, 0x41, 0xa5, 0xe1, 0xe0, 0x32, 0x11, 0x2a, 0xe3, 0xef, 0x09, 0x16, - 0xac, 0x4e, 0xdf, 0xf5, 0xf9, 0xbb, 0x3c, 0x58, 0x9c, 0x31, 0x44, 0x3b, 0xca, 0xc1, 0xab, 0xdc, - 0xd8, 0xfe, 0x13, 0xd3, 0xaa, 0x29, 0x67, 0x96, 0xaf, 0x7c, 0x20, 0x80, 0x78, 0x63, 0x2e, 0x5d, - 0x3f, 0x37, 0x90, 0x26, 0x67, 0xbe, 0xcd, 0xc2, 0x6b, 0xc5, 0xad, 0x6d, 0x73, 0xf8, 0x5e, 0x1f, - 0x43, 0xbb, 0xc3, 0xdd, 0xc0, 0x3f, 0x77, 0x9f, 0x5c, 0x1e, 0x0d, 0x5f, 0x30, 0x37, 0xef, 0x37, - 0x78, 0x9b, 0x23, 0x55, 0x61, 0x7f, 0x87, 0xaa, 0x30, 0x4c, 0x55, 0x1c, 0x96, 0xa0, 0x2b, 0xe0, - 0x07, 0xe1, 0x2d, 0x36, 0xf9, 0x6a, 0xbd, 0xc1, 0xfa, 0xc3, 0x56, 0x6e, 0xa6, 0x96, 0x22, 0xc6, - 0xf3, 0x73, 0xc7, 0x31, 0x7c, 0x19, 0xc3, 0x59, 0x8d, 0x73, 0xf6, 0x68, 0xf7, 0xbd, 0x98, 0x29, - 0x7b, 0xb4, 0xbd, 0x88, 0xe1, 0xb6, 0x46, 0x8b, 0xd7, 0xc0, 0x6d, 0x8d, 0xc6, 0xc7, 0x1e, 0xb7, - 0x35, 0x3a, 0x2b, 0x00, 0xdc, 0xd6, 0x18, 0xf6, 0x62, 0xb8, 0xad, 0x01, 0xc6, 0x14, 0x2e, 0x54, - 0xf9, 0xbb, 0xad, 0x79, 0x08, 0x02, 0x8f, 0xd9, 0x7e, 0x8e, 0xee, 0x6b, 0x4a, 0x25, 0x38, 0x90, - 0x98, 0x79, 0xde, 0x55, 0x52, 0xa1, 0xea, 0xfb, 0x01, 0xb7, 0xb9, 0x1b, 0x98, 0x7d, 0x81, 0x54, - 0x88, 0x3a, 0x5f, 0x58, 0xd7, 0xee, 0x8d, 0xb3, 0x9b, 0x0e, 0x82, 0x1e, 0xf3, 0x3b, 0xb1, 0x9b, - 0x62, 0xf9, 0x8c, 0xff, 0x27, 0x08, 0xbf, 0x5a, 0xae, 0x1f, 0x71, 0xdb, 0xef, 0xb0, 0x83, 0xf9, - 0x6f, 0x44, 0x0b, 0xdf, 0x39, 0xe8, 0x85, 0x01, 0x0f, 0x3a, 0x81, 0x17, 0x25, 0x9f, 0x0e, 0x46, - 0x96, 0xff, 0xc0, 0x0e, 0x99, 0x1d, 0xc5, 0xff, 0x3f, 0xf0, 0x22, 0xe7, 0xe1, 0xc0, 0x8b, 0x6c, - 0x8b, 0x3f, 0xf7, 0x58, 0x94, 0x7c, 0x1a, 0x7e, 0x88, 0xff, 0x76, 0x10, 0xf4, 0xec, 0x7f, 0xf7, - 0x99, 0x35, 0xfc, 0xc8, 0x43, 0xfb, 0xf1, 0xd1, 0xed, 0x58, 0xcc, 0x7f, 0x72, 0x7d, 0xc6, 0x42, - 0xd7, 0x7f, 0x3a, 0xe0, 0xde, 0xb7, 0x68, 0xf8, 0xbf, 0x03, 0xcf, 0xf5, 0xbf, 0x1e, 0x4c, 0xba, - 0x93, 0x4c, 0x3e, 0x1c, 0x2c, 0xad, 0xb2, 0x79, 0x30, 0x55, 0x30, 0x6a, 0x94, 0xc0, 0x85, 0xb4, - 0x2d, 0xcc, 0xd8, 0x78, 0x75, 0x34, 0x74, 0x8c, 0x4c, 0x8e, 0xcb, 0x2d, 0xd4, 0xdd, 0x88, 0x57, - 0x39, 0x37, 0xb4, 0x52, 0xcb, 0xa5, 0xeb, 0xd7, 0x3c, 0x36, 0x74, 0x73, 0xa2, 0xc2, 0xd9, 0x8e, - 0xdf, 0xf7, 0x3c, 0x03, 0x73, 0x14, 0x2f, 0xed, 0xef, 0xe6, 0xbf, 0xc4, 0x75, 0xe8, 0xb0, 0x90, - 0x39, 0xef, 0x9f, 0xc7, 0xaf, 0x00, 0xa5, 0x03, 0xec, 0x03, 0xcc, 0x63, 0x6c, 0x91, 0xcc, 0xd1, - 0x36, 0xf1, 0xb0, 0xdf, 0xe1, 0xfe, 0xd8, 0x53, 0xbe, 0x1a, 0xad, 0xfb, 0xc5, 0x78, 0xd9, 0xdb, - 0x8d, 0xf1, 0x62, 0xb7, 0xaf, 0xe3, 0xc5, 0x6e, 0x57, 0x43, 0x66, 0xb7, 0xeb, 0x91, 0xf3, 0xd0, - 0xae, 0x47, 0x76, 0xf3, 0xb9, 0xc7, 0x86, 0x7f, 0xb6, 0xaf, 0xe3, 0x65, 0x1d, 0x7e, 0x6a, 0x8e, - 0x56, 0xb5, 0xf6, 0xb2, 0xa8, 0xed, 0xa6, 0xf7, 0xad, 0x5d, 0x77, 0xfd, 0xaf, 0xed, 0xdb, 0xfe, - 0xc3, 0xf0, 0x73, 0x75, 0xb8, 0x5e, 0x9f, 0xe2, 0xe5, 0x7a, 0x03, 0x88, 0xb5, 0xbd, 0x33, 0x35, - 0xa5, 0xf4, 0xb0, 0xa1, 0x7a, 0x78, 0x5b, 0xf4, 0xaf, 0x19, 0x4a, 0x44, 0xff, 0x23, 0x69, 0xc0, - 0x71, 0x34, 0xac, 0xd0, 0x87, 0x91, 0x85, 0x3d, 0xd0, 0x81, 0x84, 0x78, 0xc2, 0xe8, 0x40, 0x22, - 0x79, 0xf2, 0xe8, 0x40, 0xa2, 0xe8, 0x05, 0xd0, 0x81, 0x04, 0x98, 0x23, 0x3f, 0x6e, 0x80, 0x71, - 0x1d, 0x48, 0x86, 0x18, 0xda, 0x72, 0x1d, 0x73, 0xbb, 0x8f, 0x4c, 0x5e, 0xc0, 0xcc, 0xce, 0x23, - 0x45, 0x74, 0x1e, 0x01, 0xa0, 0xca, 0x33, 0xb0, 0x32, 0x1d, 0x60, 0xe5, 0x06, 0x68, 0xe5, 0x06, - 0x70, 0xe5, 0x05, 0x78, 0x99, 0x05, 0xc0, 0x0c, 0x03, 0x62, 0x89, 0x90, 0x18, 0x1b, 0xa6, 0x98, - 0x68, 0x7d, 0x27, 0xe0, 0x9c, 0x39, 0xd6, 0xbf, 0xfb, 0xb6, 0x63, 0xa2, 0xde, 0x9f, 0x30, 0x45, - 0xef, 0x0c, 0x9c, 0x7b, 0xc3, 0xe6, 0x9c, 0x85, 0xbe, 0xb1, 0xd5, 0x22, 0x0a, 0xbb, 0xbb, 0x77, - 0x45, 0xeb, 0xb4, 0xf5, 0xf3, 0xae, 0x64, 0x9d, 0xb6, 0x46, 0x1f, 0x4b, 0xf1, 0x1f, 0xa3, 0xcf, - 0xe5, 0xbb, 0xa2, 0x55, 0x99, 0x7c, 0x3e, 0xba, 0x2b, 0x5a, 0x47, 0xad, 0xbd, 0xfb, 0xfb, 0xfd, - 0xbd, 0x1f, 0x87, 0x83, 0xcd, 0x7f, 0xd1, 0x3c, 0xcd, 0xdb, 0xc2, 0xcd, 0xe2, 0xb6, 0xdb, 0x88, - 0x91, 0xfb, 0xc8, 0x4d, 0x34, 0x12, 0xb3, 0x1e, 0x70, 0xfc, 0x0a, 0xf0, 0x81, 0xe1, 0x03, 0xc3, - 0x07, 0x86, 0x0f, 0x0c, 0x1f, 0x18, 0x3e, 0x30, 0x7c, 0x60, 0xe0, 0x9b, 0xdc, 0xf8, 0xc0, 0xcc, - 0xef, 0x77, 0x59, 0x38, 0x0a, 0xaf, 0x32, 0xd8, 0x07, 0xae, 0x18, 0x38, 0xf7, 0x9a, 0xdf, 0xef, - 0x0e, 0x85, 0x67, 0x00, 0x67, 0x09, 0xce, 0x52, 0xd0, 0xb1, 0x3d, 0xcb, 0xed, 0x59, 0xb6, 0xe3, - 0x84, 0x2c, 0x8a, 0x0c, 0xf6, 0x99, 0xe6, 0xdf, 0x04, 0xae, 0x13, 0x5c, 0x27, 0xb8, 0x4e, 0x70, - 0x9d, 0xe0, 0x3a, 0xc1, 0x75, 0x82, 0xeb, 0x04, 0xb4, 0x93, 0x1b, 0xd7, 0xc9, 0xed, 0x7d, 0xab, - 0x4c, 0x50, 0x8e, 0xe5, 0x07, 0xd6, 0xff, 0x05, 0x3e, 0xc3, 0x3d, 0xa2, 0x64, 0xf4, 0x80, 0x7b, - 0xc4, 0xf5, 0x7f, 0x71, 0xf7, 0xbf, 0xef, 0xee, 0xef, 0x7b, 0x3f, 0xae, 0x06, 0xc3, 0xff, 0xd7, - 0x07, 0xad, 0xbf, 0xed, 0xfd, 0x6e, 0xaa, 0xad, 0x1c, 0xbe, 0xd8, 0xfd, 0xfd, 0x7e, 0xeb, 0x37, - 0xdc, 0x8d, 0xc2, 0xac, 0x4c, 0x0b, 0x06, 0x4a, 0x2d, 0xa8, 0x7f, 0x09, 0x94, 0x5a, 0x00, 0x72, - 0xcd, 0x9f, 0x7a, 0x29, 0x74, 0xed, 0xef, 0x6e, 0xb7, 0xdf, 0xb5, 0x1e, 0x6c, 0xdf, 0xf9, 0x8f, - 0xeb, 0xc4, 0x79, 0xbd, 0x86, 0x92, 0x74, 0x8b, 0xaf, 0x02, 0x96, 0x4e, 0xc6, 0xb4, 0xc1, 0xd2, - 0x29, 0x14, 0x7a, 0xb0, 0x74, 0x2a, 0x0f, 0x2c, 0x58, 0x3a, 0xcd, 0x5e, 0x04, 0x2c, 0x1d, 0xf0, - 0xce, 0xab, 0x42, 0x92, 0x03, 0x96, 0x8e, 0x31, 0xf6, 0xe8, 0x05, 0x36, 0x3f, 0x2c, 0x1b, 0x4c, - 0xce, 0x9d, 0x1a, 0x38, 0xf5, 0x3a, 0xf3, 0x9f, 0x62, 0x90, 0x6c, 0x26, 0x35, 0x67, 0x70, 0xb9, - 0xdb, 0x3c, 0x34, 0x7c, 0xcc, 0x4b, 0x3b, 0x94, 0x49, 0x97, 0xb6, 0x8a, 0xe1, 0xef, 0x91, 0xa3, - 0xa6, 0x6c, 0x26, 0x37, 0xa1, 0xca, 0x43, 0x83, 0x46, 0x1c, 0x6d, 0x1c, 0x6d, 0x78, 0x03, 0x46, - 0xcf, 0x1a, 0x09, 0x7e, 0x5b, 0x6f, 0x9a, 0x12, 0x12, 0x39, 0x64, 0x11, 0x0b, 0xbf, 0xd9, 0x0f, - 0x1e, 0xcb, 0x13, 0x35, 0xbe, 0xf4, 0xad, 0xc0, 0x92, 0xcb, 0x98, 0x36, 0x58, 0x72, 0x85, 0xf2, - 0x0f, 0x96, 0x5c, 0xe5, 0x81, 0x05, 0x4b, 0xae, 0xd9, 0x8b, 0x80, 0x25, 0x07, 0x0a, 0x7a, 0x55, - 0x48, 0xc0, 0x92, 0xeb, 0x01, 0x74, 0xc0, 0x92, 0x4b, 0xff, 0x02, 0x4b, 0x0e, 0x88, 0x2f, 0xe0, - 0x35, 0x40, 0xa5, 0xc1, 0x08, 0x8b, 0x3c, 0xda, 0x60, 0xc9, 0x71, 0xb4, 0x71, 0xb4, 0xf3, 0xe1, - 0x0d, 0x98, 0x3b, 0x6b, 0xb0, 0xe4, 0x5b, 0x6f, 0x9a, 0x0a, 0x5d, 0xc6, 0x43, 0xb7, 0x63, 0x30, - 0x1f, 0x3e, 0x9a, 0x3f, 0x98, 0x6f, 0x19, 0xd3, 0x06, 0xf3, 0xad, 0x50, 0xd2, 0xc1, 0x7c, 0xab, - 0x3c, 0xb0, 0x60, 0xbe, 0x35, 0x7b, 0x11, 0x30, 0xdf, 0x40, 0x36, 0xaf, 0x0a, 0x89, 0xf9, 0xcc, - 0x77, 0xdf, 0xf5, 0xcd, 0x26, 0xbd, 0x4f, 0x0c, 0x9c, 0xfa, 0x8d, 0xed, 0x3f, 0x31, 0x70, 0xde, - 0xf2, 0x17, 0x1e, 0x9c, 0xb7, 0x3e, 0xaf, 0x31, 0x21, 0xc6, 0x8a, 0x20, 0xc6, 0x60, 0x7e, 0x05, - 0x1c, 0x6d, 0x70, 0xde, 0xda, 0x1d, 0xed, 0x4a, 0xf9, 0xb4, 0x72, 0x7a, 0x7c, 0x52, 0x3e, 0x3d, - 0xc2, 0x19, 0x87, 0x43, 0xb0, 0x5d, 0xb3, 0x06, 0xf9, 0xbd, 0xf5, 0x36, 0xaa, 0x10, 0xb2, 0x6e, - 0xc0, 0x59, 0x2e, 0xea, 0x1a, 0x2f, 0xbe, 0x0a, 0x28, 0x71, 0x19, 0xd3, 0x06, 0x25, 0xae, 0x50, - 0xe8, 0x41, 0x89, 0xab, 0x3c, 0xb0, 0xa0, 0xc4, 0x35, 0x7b, 0x11, 0x50, 0xe2, 0xc0, 0x3b, 0xaf, - 0x0a, 0x09, 0x0a, 0x1b, 0x6b, 0x86, 0x78, 0x50, 0xd8, 0x58, 0xc5, 0x0b, 0xa0, 0xb0, 0x71, 0xaa, - 0x65, 0x43, 0x61, 0x63, 0x98, 0x95, 0xa5, 0x82, 0x81, 0xc2, 0xc6, 0xea, 0x5f, 0x02, 0x85, 0x8d, - 0x81, 0x5c, 0xf3, 0xa7, 0x5e, 0x0a, 0x66, 0x37, 0x69, 0x46, 0x7f, 0x66, 0x69, 0xd3, 0x06, 0x17, - 0xa7, 0x50, 0xce, 0xc1, 0xc5, 0xa9, 0x3c, 0xb0, 0xe0, 0xe2, 0x34, 0x7b, 0x11, 0x70, 0x71, 0x40, - 0x35, 0xaf, 0x0a, 0x49, 0x0e, 0xc2, 0x53, 0x7d, 0xc3, 0x3b, 0x33, 0x9b, 0x58, 0x93, 0x61, 0x2c, - 0x36, 0x88, 0x4e, 0x55, 0x24, 0xf4, 0xae, 0xc3, 0x7c, 0xee, 0xf2, 0xe7, 0x90, 0x3d, 0x16, 0x0c, - 0x8e, 0xc8, 0x9b, 0x1c, 0x01, 0x83, 0x83, 0xbf, 0x0a, 0x17, 0xe3, 0xad, 0x78, 0x6f, 0x47, 0xcc, - 0xfc, 0xf0, 0xc2, 0x89, 0x80, 0x5d, 0xdf, 0x36, 0x3e, 0xb6, 0x9b, 0xb5, 0x76, 0xfd, 0xe2, 0xea, - 0x8f, 0x76, 0xb3, 0xfe, 0x67, 0xbb, 0xf9, 0x57, 0xa3, 0x56, 0xc8, 0x43, 0xd0, 0x61, 0x64, 0xac, - 0xde, 0xca, 0x87, 0x0e, 0x5b, 0x2a, 0x6e, 0x13, 0x49, 0xbb, 0x38, 0x2f, 0x18, 0xff, 0x62, 0x83, - 0xb7, 0x90, 0x2e, 0x3d, 0xa5, 0x2b, 0xd6, 0x61, 0x90, 0x2f, 0xc8, 0x17, 0x91, 0x7c, 0x5d, 0xd6, - 0x9a, 0x37, 0x17, 0x1f, 0x20, 0x61, 0x90, 0x30, 0x2a, 0x09, 0xbb, 0xa9, 0x5d, 0x5e, 0x37, 0x6b, - 0xed, 0x8b, 0x06, 0x84, 0x0c, 0x42, 0x46, 0x25, 0x64, 0xf5, 0xeb, 0x0f, 0xd5, 0x3a, 0x64, 0x0c, - 0x32, 0x46, 0x28, 0x63, 0xd5, 0xf3, 0xcb, 0x8b, 0xab, 0xf6, 0xa7, 0x9b, 0xeb, 0xcf, 0x10, 0x33, - 0x88, 0x19, 0x99, 0x98, 0x7d, 0xbe, 0xba, 0xa9, 0xdd, 0xd6, 0x6e, 0xfe, 0xac, 0x9d, 0xb7, 0xdf, - 0x57, 0xaf, 0xce, 0xff, 0x71, 0x71, 0xde, 0xfc, 0x3b, 0xe4, 0x0d, 0xf2, 0x46, 0xe6, 0x01, 0x54, - 0xff, 0x79, 0x71, 0xf9, 0xf9, 0x12, 0xc2, 0x06, 0x61, 0x93, 0x27, 0x6c, 0x23, 0x15, 0x57, 0x7d, - 0x5f, 0xaf, 0xe5, 0x4a, 0xee, 0x8c, 0x7e, 0x83, 0x16, 0xb2, 0xbf, 0xa1, 0xa5, 0xf2, 0xac, 0x99, - 0x12, 0x6d, 0xc4, 0xfc, 0x7e, 0x97, 0x85, 0x36, 0x37, 0xf3, 0x16, 0x3e, 0x79, 0x9d, 0xc9, 0x55, - 0xa4, 0xc1, 0x45, 0x98, 0x0b, 0x35, 0xbf, 0xdf, 0x2d, 0x9c, 0xed, 0xfc, 0x40, 0x01, 0x07, 0x28, - 0x79, 0x93, 0xd7, 0xd7, 0xa4, 0xd0, 0xf0, 0xbe, 0xff, 0xd5, 0x0f, 0xfe, 0xe3, 0x5b, 0x66, 0x87, - 0x88, 0xcf, 0xbc, 0x05, 0x42, 0xc5, 0x65, 0x4c, 0x1b, 0xa1, 0xe2, 0x0a, 0xe5, 0x1d, 0xa1, 0xe2, - 0x2a, 0x0f, 0x2c, 0x42, 0xc5, 0x35, 0x7b, 0x11, 0x84, 0x8a, 0x03, 0xe5, 0xbc, 0x2a, 0x24, 0xf9, - 0xa8, 0x64, 0x5c, 0x3a, 0x36, 0x38, 0x56, 0xfc, 0x18, 0x95, 0x8c, 0x25, 0x7f, 0xa1, 0x92, 0x31, - 0xc0, 0xbd, 0x80, 0xd7, 0x40, 0x25, 0x63, 0x98, 0x5f, 0x91, 0x47, 0x1b, 0x95, 0x8c, 0xb5, 0x3b, - 0xda, 0xc7, 0x47, 0x47, 0x87, 0x28, 0x62, 0x0c, 0x5f, 0x60, 0xcb, 0x66, 0x0d, 0x0e, 0x7c, 0xeb, - 0xcd, 0x53, 0xc2, 0x1e, 0x7f, 0x1b, 0xab, 0x42, 0xc3, 0x49, 0xf0, 0xd1, 0x6b, 0x80, 0x05, 0x97, - 0x31, 0x6d, 0xb0, 0xe0, 0x0a, 0x05, 0x1e, 0x2c, 0xb8, 0xca, 0x03, 0x0b, 0x16, 0x5c, 0xb3, 0x17, - 0x01, 0x0b, 0x0e, 0x9c, 0xf3, 0xaa, 0x90, 0x98, 0xcf, 0x82, 0x3f, 0xb8, 0xbe, 0x1d, 0x3e, 0x1b, - 0xcc, 0x82, 0x9f, 0xc2, 0xe5, 0xd8, 0xe2, 0x99, 0x1a, 0xa2, 0x30, 0x0a, 0x55, 0xdf, 0x0f, 0xf8, - 0x28, 0x2c, 0xd2, 0x24, 0x75, 0x51, 0x88, 0x3a, 0x5f, 0x58, 0xd7, 0xee, 0xd9, 0xfc, 0xcb, 0x50, - 0x59, 0x1c, 0x04, 0x3d, 0xe6, 0x77, 0x62, 0x90, 0x6e, 0xf9, 0x8c, 0xff, 0x27, 0x08, 0xbf, 0x5a, - 0xae, 0x1f, 0x71, 0xdb, 0xef, 0xb0, 0x83, 0xf9, 0x6f, 0x44, 0x0b, 0xdf, 0x39, 0xe8, 0x85, 0x01, - 0x0f, 0x3a, 0x81, 0x17, 0x25, 0x9f, 0x0e, 0x46, 0x76, 0xf5, 0xc0, 0x0e, 0x99, 0x1d, 0xc5, 0xff, - 0x3f, 0xf0, 0x22, 0xe7, 0xe1, 0xc0, 0x8b, 0xec, 0x38, 0xfc, 0x28, 0x4a, 0x3e, 0x0d, 0x3f, 0xc4, - 0x7f, 0x3b, 0x08, 0x7a, 0xf6, 0xbf, 0xfb, 0xcc, 0x1a, 0x7e, 0xe4, 0xa1, 0xfd, 0xf8, 0xe8, 0x76, - 0x2c, 0xe6, 0x3f, 0xb9, 0x3e, 0x63, 0xa1, 0xeb, 0x3f, 0x1d, 0x70, 0xef, 0x5b, 0x34, 0xfc, 0xdf, - 0x81, 0xe7, 0xfa, 0x5f, 0x0f, 0xa2, 0xfe, 0x83, 0x15, 0x7f, 0x67, 0xfc, 0xe1, 0x20, 0xe2, 0x36, - 0x67, 0x66, 0xd8, 0x71, 0xfd, 0x8f, 0xa0, 0x01, 0xc7, 0x2f, 0x71, 0xe4, 0xa3, 0xfe, 0x03, 0xf7, - 0xbe, 0x19, 0x73, 0xfc, 0x16, 0x88, 0x88, 0xf1, 0xfc, 0x0d, 0x51, 0x78, 0x93, 0x08, 0x6a, 0x43, - 0xa6, 0x6b, 0x1a, 0xf3, 0x60, 0x22, 0xe3, 0x60, 0x34, 0xd3, 0x60, 0x2a, 0xc3, 0x60, 0x3c, 0xb3, - 0x60, 0x3c, 0xa3, 0x60, 0x3a, 0x93, 0x00, 0x47, 0x40, 0xa4, 0x30, 0x9c, 0xbb, 0xa1, 0x61, 0x1e, - 0x40, 0x8c, 0x97, 0x8d, 0xbd, 0xc6, 0x19, 0x4d, 0xdf, 0xcc, 0xeb, 0x9b, 0x12, 0xae, 0x6f, 0x00, - 0xa6, 0xf2, 0x0c, 0xaa, 0x4c, 0x07, 0x57, 0xb9, 0x01, 0x59, 0xb9, 0x01, 0x5b, 0x79, 0x01, 0x5d, - 0x66, 0x81, 0x2f, 0xc3, 0x40, 0x98, 0xb1, 0x60, 0x2c, 0x99, 0xb8, 0xc7, 0xfc, 0xa7, 0x98, 0x92, - 0x35, 0x54, 0x5f, 0x4e, 0x8c, 0xd6, 0xf8, 0x3d, 0x0c, 0xd5, 0x31, 0x66, 0xc7, 0xac, 0x1a, 0x0b, - 0xd7, 0xf2, 0x00, 0xdb, 0x72, 0x05, 0xdf, 0xf2, 0x02, 0xe3, 0x72, 0x07, 0xe7, 0x72, 0x07, 0xeb, - 0xf2, 0x06, 0xef, 0xcc, 0x84, 0x79, 0x86, 0xc2, 0xbd, 0x44, 0x78, 0x8c, 0x8d, 0xda, 0x59, 0xb0, - 0x1a, 0xc6, 0xe6, 0xb0, 0xce, 0x63, 0xa8, 0x63, 0x83, 0x5f, 0xc1, 0xec, 0x9c, 0xd6, 0xc9, 0x97, - 0xf9, 0x65, 0x11, 0x73, 0x91, 0xe3, 0x9a, 0x13, 0xe7, 0x62, 0xe1, 0x75, 0x72, 0x92, 0xf3, 0x9a, - 0xbc, 0x4f, 0x8e, 0x92, 0xe3, 0x0c, 0x37, 0xe7, 0xb3, 0x2a, 0x20, 0x07, 0xb9, 0xb0, 0x79, 0x57, - 0x01, 0x39, 0xc8, 0x8d, 0xcd, 0xb5, 0x1a, 0x78, 0x83, 0xd9, 0xab, 0xf8, 0x6a, 0x21, 0x47, 0x19, - 0x66, 0x6e, 0x85, 0x9a, 0xe1, 0x26, 0x7b, 0xac, 0x89, 0xb7, 0x6a, 0x60, 0x3d, 0xc9, 0x9c, 0xd8, - 0x62, 0x70, 0xfd, 0x3a, 0x9d, 0x03, 0x70, 0xfd, 0x3a, 0x1d, 0x6c, 0x70, 0xfd, 0x9a, 0xbf, 0x10, - 0xb8, 0x7e, 0xa0, 0xa6, 0xd4, 0xc2, 0x03, 0xae, 0x5f, 0x3b, 0x0c, 0x05, 0xae, 0x5f, 0xf5, 0x17, - 0xb8, 0x7e, 0x38, 0x17, 0x84, 0xaf, 0x03, 0xae, 0x1f, 0xe6, 0x5c, 0x86, 0x0a, 0x00, 0xd7, 0xaf, - 0xbd, 0x0a, 0x00, 0xd7, 0x0f, 0x5f, 0x04, 0xb3, 0x5f, 0xf8, 0x02, 0xd7, 0x0f, 0x33, 0xb7, 0x4a, - 0xcd, 0x98, 0x59, 0x37, 0x73, 0xc1, 0x5d, 0x35, 0xb1, 0x6e, 0x66, 0x4e, 0xac, 0x31, 0xd8, 0x7e, - 0x9d, 0x0e, 0x02, 0xd8, 0x7e, 0x9d, 0x0e, 0x36, 0xd8, 0x7e, 0xcd, 0x5f, 0x08, 0x6c, 0x3f, 0x70, - 0x53, 0x6a, 0xe1, 0xc9, 0x0f, 0xdb, 0x6f, 0x6c, 0x5d, 0xce, 0x79, 0x0c, 0x75, 0x0a, 0x57, 0x07, - 0x33, 0x36, 0x5d, 0xc1, 0x98, 0x5a, 0xbf, 0x33, 0x99, 0x7f, 0xfe, 0xea, 0x78, 0xce, 0x96, 0x45, - 0x34, 0xa9, 0xac, 0xa7, 0x79, 0x27, 0x16, 0x25, 0xc0, 0xa0, 0x4b, 0xf2, 0xaf, 0x43, 0x4c, 0xaa, - 0x46, 0x19, 0xf1, 0xb0, 0xdf, 0xe1, 0xfe, 0x18, 0x2c, 0x5e, 0x8d, 0x16, 0xf7, 0x62, 0xbc, 0xb6, - 0xed, 0xc6, 0x78, 0x45, 0xdb, 0xd7, 0xf1, 0x8a, 0xb6, 0xab, 0x21, 0xb3, 0xdb, 0xf5, 0xc8, 0x79, - 0x68, 0xd7, 0x23, 0x7b, 0x88, 0x91, 0x87, 0x7f, 0xb6, 0xaf, 0xe3, 0xb5, 0x1b, 0x7e, 0x6a, 0x8e, - 0x96, 0xae, 0xf6, 0xb2, 0x72, 0xed, 0xa6, 0xf7, 0xad, 0x5d, 0x77, 0xfd, 0xaf, 0xed, 0xdb, 0xfe, - 0xc3, 0xf0, 0xf3, 0xe7, 0xd1, 0x52, 0xdd, 0x8e, 0x56, 0x0a, 0xe5, 0x93, 0xb7, 0x45, 0x63, 0x15, - 0xfa, 0x7e, 0xc8, 0x22, 0x16, 0x7e, 0x63, 0x8e, 0xf5, 0x60, 0xfb, 0xce, 0x7f, 0x5c, 0x87, 0x7f, - 0x89, 0x4c, 0xac, 0xa2, 0xbc, 0xec, 0x35, 0x50, 0x4c, 0x99, 0x62, 0xba, 0x28, 0xa6, 0x2c, 0x51, - 0xb0, 0x51, 0x4c, 0x59, 0xe6, 0x41, 0x44, 0x31, 0x65, 0xd5, 0xe0, 0x19, 0xc5, 0x94, 0x81, 0x4b, - 0x26, 0xc2, 0x60, 0x5c, 0x31, 0xe5, 0x65, 0x28, 0xc4, 0xe4, 0x16, 0x99, 0x4b, 0xde, 0x06, 0xa5, - 0x96, 0x01, 0xb1, 0xf2, 0x05, 0xb5, 0x72, 0x01, 0xb9, 0x4c, 0x87, 0x5e, 0xb9, 0x81, 0x60, 0xb9, - 0x81, 0x62, 0x79, 0x81, 0x64, 0x66, 0x41, 0x33, 0xc3, 0x20, 0x9a, 0xb1, 0x50, 0x2d, 0x99, 0x78, - 0x2f, 0x74, 0x83, 0xd0, 0xe5, 0xcf, 0xe6, 0x47, 0x64, 0x26, 0x6f, 0x82, 0xa0, 0x4c, 0x40, 0xb6, - 0xed, 0x82, 0x6e, 0xb9, 0x82, 0x70, 0x79, 0x81, 0x72, 0xb9, 0x83, 0x74, 0xb9, 0x83, 0x76, 0x79, - 0x83, 0x78, 0x66, 0x42, 0x3d, 0x43, 0x21, 0x5f, 0x22, 0x3c, 0xf9, 0x09, 0xca, 0xf4, 0x98, 0xfd, - 0x18, 0xb2, 0xc7, 0x1c, 0x44, 0x65, 0x96, 0x4e, 0x0c, 0x7e, 0x87, 0xc6, 0x38, 0x04, 0x65, 0x7f, - 0x7f, 0x14, 0xf6, 0x75, 0x90, 0x20, 0x5b, 0xc4, 0x9a, 0x42, 0x13, 0xad, 0x10, 0x1a, 0x33, 0xfb, - 0x18, 0x2e, 0xa8, 0x20, 0x13, 0xfb, 0x19, 0x2e, 0x28, 0x1f, 0x78, 0x70, 0xf0, 0xe0, 0xe0, 0xc1, - 0xc1, 0x83, 0x83, 0x07, 0x07, 0x0f, 0x0e, 0x1e, 0x9c, 0xfe, 0xc2, 0x63, 0x2a, 0x79, 0x9f, 0xbc, - 0x80, 0xf1, 0x24, 0xfe, 0x82, 0xf9, 0x33, 0x9c, 0xcc, 0x9f, 0x87, 0x84, 0x86, 0xd7, 0x3d, 0x32, - 0x1e, 0x1a, 0xe6, 0x09, 0x22, 0xe6, 0x12, 0x2a, 0xe6, 0x0d, 0x32, 0xe6, 0x16, 0x3a, 0xe6, 0x16, - 0x42, 0xe6, 0x15, 0x4a, 0x9a, 0x0d, 0x29, 0x0d, 0x87, 0x96, 0x89, 0x50, 0x19, 0x7f, 0x49, 0xb0, - 0x60, 0x75, 0xfa, 0xae, 0xcf, 0xdf, 0xe5, 0xc1, 0xe2, 0x8c, 0x21, 0x5a, 0x0e, 0xca, 0x38, 0xe6, - 0xa4, 0x7c, 0xf3, 0xe4, 0x2b, 0x1f, 0x08, 0x60, 0x27, 0x6f, 0xe5, 0x9c, 0x73, 0xe6, 0xdb, 0x2c, - 0xbc, 0x56, 0xce, 0xca, 0x3b, 0x27, 0xef, 0x95, 0xc3, 0xfa, 0xae, 0x39, 0x41, 0x07, 0xb3, 0xaa, - 0x22, 0x47, 0x65, 0x9f, 0xb7, 0x45, 0x55, 0x9c, 0x40, 0x55, 0xc0, 0x0d, 0xc2, 0x5b, 0x6c, 0xf2, - 0xd5, 0x42, 0x69, 0x6e, 0x98, 0xca, 0x0d, 0xd5, 0x52, 0x2e, 0xd2, 0x4b, 0x57, 0x3b, 0xd4, 0xe6, - 0xa7, 0x9b, 0xe6, 0xd4, 0xee, 0xe3, 0xfa, 0x43, 0xe7, 0x73, 0x83, 0xeb, 0x0f, 0x9d, 0x15, 0x00, - 0xae, 0x3f, 0x0c, 0x7b, 0x31, 0x5c, 0x7f, 0x00, 0xb5, 0x09, 0x17, 0xaa, 0xfc, 0x5d, 0x7f, 0xb8, - 0x8c, 0xb1, 0x47, 0x2f, 0xb0, 0xf9, 0x61, 0x39, 0x47, 0x97, 0x20, 0xa7, 0x39, 0x78, 0x95, 0x3a, - 0xf3, 0x9f, 0x62, 0xbf, 0x00, 0xb7, 0x20, 0x9a, 0xed, 0x0c, 0x6e, 0x41, 0xcc, 0x79, 0xad, 0x09, - 0xb5, 0x59, 0x01, 0xb5, 0x09, 0x90, 0xa0, 0x40, 0x55, 0xe0, 0x16, 0x04, 0xaa, 0x02, 0xaa, 0x02, - 0xde, 0x50, 0xbe, 0xdf, 0x02, 0xb7, 0x20, 0x98, 0x79, 0xee, 0x0d, 0xbc, 0xe9, 0xdd, 0x65, 0x92, - 0xf7, 0xc8, 0x63, 0x87, 0x88, 0x25, 0x65, 0xe3, 0x97, 0x7e, 0xd7, 0xc4, 0x0e, 0x34, 0xe6, 0x9e, - 0x76, 0x14, 0xeb, 0x23, 0xc5, 0xe1, 0xec, 0xd9, 0xe0, 0x1c, 0xb3, 0x42, 0xdd, 0x8d, 0x78, 0x95, - 0x73, 0x43, 0x0b, 0x0e, 0x5e, 0xba, 0x7e, 0xcd, 0x63, 0x5d, 0xe6, 0xc7, 0x90, 0xda, 0xef, 0x7b, - 0x9e, 0x81, 0xd5, 0x36, 0x2e, 0xed, 0xef, 0xe6, 0xbf, 0xc4, 0x75, 0xe8, 0xb0, 0x90, 0x39, 0xef, - 0x9f, 0xc7, 0xaf, 0x00, 0x9d, 0x03, 0x0c, 0x04, 0xec, 0x93, 0x8f, 0x28, 0x1c, 0x15, 0x1d, 0xb4, - 0x26, 0x0b, 0xf7, 0x3e, 0x59, 0x37, 0xf4, 0x2b, 0xdc, 0xe2, 0x99, 0xa2, 0x5f, 0x21, 0x34, 0xb2, - 0x00, 0x8d, 0x8c, 0x66, 0x7c, 0xdb, 0x30, 0x43, 0xcd, 0x95, 0x85, 0x59, 0x3e, 0x97, 0x91, 0x3e, - 0x96, 0x91, 0x3e, 0x95, 0x59, 0x3e, 0x94, 0xee, 0x87, 0xcc, 0x30, 0x4b, 0x9c, 0x3f, 0x0b, 0x6c, - 0x80, 0xa3, 0x23, 0xdd, 0xb1, 0xd1, 0x1b, 0x7f, 0xe8, 0x6b, 0xd5, 0xf5, 0x9c, 0x99, 0xa6, 0x2a, - 0xd0, 0x14, 0xd5, 0x97, 0x1f, 0x95, 0xa7, 0xe7, 0xb1, 0xd6, 0xef, 0xd0, 0xe8, 0x35, 0x23, 0xcd, - 0x8e, 0xaf, 0xee, 0xc7, 0xd6, 0xf8, 0xe3, 0xaa, 0x21, 0x20, 0x91, 0x07, 0x40, 0xf4, 0x52, 0x51, - 0xfa, 0x28, 0x02, 0x8d, 0x94, 0x40, 0xc1, 0x0f, 0x1c, 0x66, 0xd9, 0x9c, 0x87, 0xee, 0x43, 0x5f, - 0xc3, 0xfa, 0xfb, 0x49, 0xba, 0xca, 0xdc, 0x3c, 0x35, 0x53, 0xa3, 0x7a, 0x16, 0xce, 0xd7, 0x36, - 0xed, 0x57, 0xe7, 0x34, 0x5e, 0x23, 0xd2, 0x72, 0x75, 0x4f, 0xb3, 0x35, 0x26, 0x6d, 0xd6, 0x98, - 0x34, 0x58, 0x53, 0xd2, 0x5a, 0x01, 0xb7, 0x7f, 0xb5, 0x89, 0xba, 0x16, 0x6a, 0x2f, 0x24, 0x5e, - 0xa5, 0xb6, 0x1a, 0x25, 0x69, 0xb0, 0x33, 0x99, 0xa9, 0xa6, 0xe7, 0x54, 0xef, 0x1e, 0x3a, 0xda, - 0x57, 0x02, 0x31, 0xa1, 0xc2, 0x87, 0x51, 0x95, 0x3b, 0x4c, 0xa9, 0xc8, 0x61, 0x5c, 0xa5, 0x0d, - 0xe3, 0x2a, 0x68, 0x98, 0x56, 0x19, 0x03, 0x04, 0x7c, 0x1e, 0xa0, 0xc5, 0x3c, 0xc4, 0xd0, 0x5f, - 0x11, 0xcd, 0x21, 0x0d, 0xdd, 0xd5, 0x90, 0x19, 0x4d, 0xfb, 0x8c, 0x29, 0x41, 0x66, 0x52, 0x89, - 0x31, 0x23, 0x4b, 0x88, 0x99, 0x56, 0x22, 0xcc, 0xd8, 0x12, 0x60, 0xc6, 0x96, 0xf8, 0x32, 0xb5, - 0x84, 0x17, 0x22, 0x14, 0xf3, 0x0c, 0x60, 0x5e, 0x80, 0x8c, 0x51, 0x9d, 0x8a, 0x8d, 0xec, 0x4c, - 0x6c, 0x58, 0x27, 0x62, 0xe3, 0xea, 0xab, 0x9a, 0x58, 0x47, 0xd5, 0xe8, 0x7a, 0xa9, 0xa6, 0xd6, - 0x45, 0x35, 0xbe, 0xfe, 0xa9, 0xf1, 0x75, 0x4e, 0x4d, 0xaf, 0x67, 0x8a, 0x5c, 0xaf, 0x6d, 0x04, - 0x49, 0xc9, 0x84, 0xbd, 0xa0, 0x63, 0x7b, 0x96, 0xdb, 0xfb, 0x56, 0xb1, 0x6c, 0xc7, 0x09, 0x59, - 0x14, 0xb1, 0xc8, 0x3c, 0x2d, 0x38, 0x31, 0x3d, 0x4b, 0xdf, 0xc6, 0xb4, 0xe2, 0x11, 0x46, 0x16, - 0x71, 0x33, 0xb6, 0x84, 0xbd, 0xc9, 0x25, 0xeb, 0x73, 0x51, 0xa2, 0xde, 0xf4, 0x92, 0xf4, 0xb9, - 0x29, 0x41, 0x9f, 0x9b, 0x92, 0xf3, 0x79, 0x29, 0x31, 0x8f, 0x22, 0x4d, 0x94, 0x42, 0x62, 0x6c, - 0xc9, 0xf8, 0x97, 0x12, 0xf1, 0x43, 0x9c, 0x63, 0xac, 0xca, 0x49, 0x38, 0xa4, 0x77, 0x06, 0xce, - 0xbd, 0x61, 0x73, 0xce, 0x42, 0xdf, 0xd8, 0x22, 0xf0, 0x85, 0xdd, 0xdd, 0xbb, 0xa2, 0x75, 0xda, - 0xfa, 0x79, 0x57, 0xb2, 0x4e, 0x5b, 0xa3, 0x8f, 0xa5, 0xf8, 0x8f, 0xd1, 0xe7, 0xf2, 0x5d, 0xd1, - 0xaa, 0x4c, 0x3e, 0x1f, 0xdd, 0x15, 0xad, 0xa3, 0xd6, 0xde, 0xfd, 0xfd, 0xfe, 0xde, 0x8f, 0xc3, - 0xc1, 0xe6, 0xbf, 0x78, 0x30, 0x1e, 0x6c, 0xef, 0xe7, 0xee, 0x5d, 0xc9, 0x2a, 0xb7, 0x26, 0x7f, - 0x39, 0xbc, 0x2b, 0x5a, 0xe5, 0xd6, 0xde, 0x9e, 0x79, 0x9a, 0xb9, 0x05, 0xcd, 0x4c, 0x28, 0x9b, - 0xa8, 0x3f, 0xa7, 0xfe, 0x25, 0x50, 0x7f, 0x0e, 0xe0, 0x2f, 0x7f, 0xea, 0xe5, 0x85, 0x20, 0x3a, - 0xce, 0x15, 0xdd, 0x75, 0x0c, 0xba, 0x4b, 0xf2, 0xb4, 0x41, 0x77, 0x29, 0x94, 0x7b, 0xd0, 0x5d, - 0x2a, 0x0f, 0x2c, 0xe8, 0x2e, 0xcd, 0x5e, 0x04, 0x74, 0x17, 0x50, 0xcf, 0xab, 0x42, 0x92, 0x0b, - 0xba, 0xeb, 0x18, 0x74, 0x97, 0x1a, 0xd0, 0x60, 0x3e, 0xdd, 0x75, 0xf6, 0xf3, 0xae, 0x68, 0x9d, - 0xda, 0xd6, 0x63, 0xd5, 0xfa, 0xd8, 0xfa, 0x51, 0x7c, 0x5b, 0x19, 0xec, 0x9d, 0xed, 0xed, 0xce, - 0x7f, 0xef, 0x6c, 0xef, 0x47, 0xf1, 0xed, 0xd1, 0x60, 0x77, 0x77, 0xc9, 0xbf, 0xfc, 0xbe, 0xec, - 0x19, 0x7b, 0x3f, 0x77, 0x77, 0x77, 0xc7, 0x44, 0xd7, 0x0c, 0xf9, 0x75, 0x57, 0x2c, 0xb5, 0x7e, - 0x8f, 0x3f, 0x8e, 0xfe, 0x9f, 0xd0, 0x67, 0x6b, 0xfd, 0xf0, 0xde, 0xde, 0xee, 0x34, 0x6b, 0x36, - 0xfc, 0xf3, 0x47, 0x79, 0xb0, 0xf7, 0x73, 0xb7, 0x74, 0x57, 0xb4, 0x4a, 0x09, 0x83, 0x56, 0x1a, - 0x3e, 0xe4, 0xdd, 0xf0, 0xc7, 0x4d, 0x35, 0xc2, 0xbb, 0xbb, 0x77, 0xff, 0x3a, 0x6b, 0xfd, 0xed, - 0x6c, 0xef, 0xc7, 0xf1, 0x60, 0xf2, 0x39, 0xfe, 0xff, 0xde, 0xcf, 0xdd, 0xfd, 0xdf, 0xee, 0xef, - 0xf7, 0xf7, 0x7f, 0xdb, 0x1b, 0x2d, 0xf2, 0xf8, 0xe7, 0x7e, 0x1b, 0xfd, 0xeb, 0xef, 0x67, 0x67, - 0x0b, 0xdf, 0xda, 0xdb, 0x3d, 0xd8, 0xff, 0x1b, 0xd8, 0x44, 0x18, 0xbe, 0x19, 0x09, 0x03, 0x9b, - 0xa8, 0xfe, 0x25, 0xc0, 0x26, 0x02, 0x5b, 0xe7, 0x4f, 0xbd, 0x14, 0xb8, 0x89, 0x98, 0x3a, 0xc1, - 0xd3, 0xf1, 0xec, 0xc1, 0x16, 0xca, 0x98, 0x36, 0xd8, 0x42, 0x85, 0x72, 0x0e, 0xb6, 0x50, 0xe5, - 0x81, 0x05, 0x5b, 0xa8, 0xd9, 0x8b, 0x80, 0x2d, 0x04, 0xaa, 0x79, 0x55, 0x48, 0xcc, 0x67, 0x0b, - 0xfb, 0xbe, 0x1b, 0xf8, 0x26, 0xf3, 0x84, 0xa7, 0x06, 0xce, 0x7d, 0x2c, 0x36, 0x66, 0x92, 0x84, - 0x06, 0x37, 0x0e, 0x4e, 0x28, 0x72, 0x87, 0xf9, 0xdc, 0xe5, 0xcf, 0x21, 0x7b, 0x2c, 0x98, 0xdb, - 0x2c, 0x3f, 0x39, 0x02, 0x47, 0x06, 0xbf, 0xc3, 0xc5, 0x78, 0x2b, 0xde, 0xdb, 0x11, 0x33, 0xba, - 0x2b, 0xf5, 0x8c, 0x80, 0x35, 0x6b, 0xed, 0xab, 0xeb, 0xf3, 0x5a, 0xbb, 0xda, 0x6c, 0xde, 0x5c, - 0xbc, 0xff, 0xdc, 0xac, 0xb5, 0x9b, 0xf5, 0x3f, 0xdb, 0xcd, 0xbf, 0x1a, 0x35, 0x83, 0xe5, 0x2d, - 0x7e, 0xc3, 0x3f, 0x6d, 0xaf, 0x1f, 0xc7, 0x02, 0xdd, 0x19, 0xdf, 0xf4, 0xff, 0x87, 0xf1, 0x6f, - 0x30, 0x23, 0x73, 0xb1, 0xc0, 0x5d, 0x34, 0xfe, 0x3c, 0x6e, 0xd7, 0xaf, 0x3f, 0x54, 0xeb, 0xed, - 0xea, 0xf9, 0xf9, 0x4d, 0xed, 0xf6, 0xb6, 0x60, 0xfc, 0x5b, 0x0e, 0xde, 0x42, 0xd4, 0xf4, 0x14, - 0xb5, 0x4a, 0xee, 0x44, 0xcd, 0xe8, 0x37, 0x68, 0xbd, 0xc1, 0xba, 0x43, 0x31, 0x6d, 0x03, 0x80, - 0x67, 0x7e, 0xbf, 0xcb, 0xc2, 0x51, 0xc3, 0x97, 0x1c, 0x00, 0xf8, 0x8a, 0xc1, 0xef, 0x50, 0xf3, - 0xfb, 0xdd, 0x21, 0x70, 0x37, 0xf4, 0x08, 0x23, 0x0a, 0x02, 0xeb, 0x6b, 0xd0, 0x4c, 0xd1, 0xcc, - 0x9b, 0x76, 0xde, 0x26, 0x37, 0xea, 0x9a, 0xed, 0x2d, 0xb4, 0xd8, 0xd6, 0x7b, 0x54, 0x39, 0x0f, - 0x6d, 0xbc, 0xb7, 0xe5, 0x20, 0x16, 0xfa, 0xfe, 0x57, 0x3f, 0xf8, 0x8f, 0x6f, 0x45, 0xfd, 0x07, - 0x13, 0x2a, 0x56, 0x2f, 0xa0, 0xbc, 0xb9, 0xf9, 0xa3, 0xe6, 0x23, 0xc5, 0x74, 0x51, 0xf3, 0x51, - 0xa2, 0x44, 0xa3, 0xe6, 0xa3, 0xcc, 0x83, 0x88, 0x9a, 0x8f, 0xaa, 0x51, 0x20, 0x6a, 0x3e, 0x02, - 0x89, 0x4c, 0x84, 0xc1, 0xb8, 0x9a, 0x8f, 0x66, 0x15, 0xc8, 0x5e, 0xb0, 0x35, 0x26, 0x15, 0xca, - 0x36, 0x14, 0x3c, 0x19, 0x0b, 0xa2, 0x4c, 0x06, 0x53, 0xb9, 0x00, 0x55, 0xa6, 0x83, 0xab, 0xdc, - 0x80, 0xac, 0xdc, 0x80, 0xad, 0xbc, 0x80, 0x2e, 0xb3, 0xc0, 0x97, 0x61, 0x20, 0xcc, 0x58, 0x30, - 0x96, 0x4c, 0xdc, 0x63, 0xfe, 0x53, 0x4c, 0xce, 0x1a, 0xaa, 0x2f, 0x93, 0x9a, 0x44, 0xa3, 0xf7, - 0x30, 0x54, 0xc7, 0x98, 0x99, 0x5f, 0x64, 0x3c, 0x5c, 0xcb, 0x03, 0x6c, 0xcb, 0x15, 0x7c, 0xcb, - 0x0b, 0x8c, 0xcb, 0x1d, 0x9c, 0xcb, 0x1d, 0xac, 0xcb, 0x1b, 0xbc, 0x33, 0x13, 0xe6, 0x19, 0x0a, - 0xf7, 0x12, 0xe1, 0x31, 0x36, 0x5f, 0x69, 0xc1, 0x6a, 0xf4, 0x5d, 0x9f, 0x97, 0x8e, 0x73, 0x10, - 0xfc, 0x75, 0x6c, 0xf0, 0x2b, 0xdc, 0xd8, 0xfe, 0x13, 0x33, 0x3e, 0x17, 0xc0, 0xfc, 0xe0, 0xec, - 0xc2, 0xa5, 0xeb, 0x1b, 0x8f, 0x3d, 0x72, 0xe2, 0x5c, 0x2c, 0xbc, 0x4e, 0x9c, 0x31, 0x93, 0xa3, - 0xf7, 0xf9, 0x18, 0xda, 0x1d, 0xee, 0x06, 0xfe, 0xb9, 0xfb, 0xe4, 0xc6, 0x85, 0x6a, 0x8a, 0xc8, - 0x30, 0xd1, 0x41, 0x05, 0xd8, 0xdf, 0xa1, 0x02, 0x34, 0x57, 0x01, 0xc7, 0x47, 0x47, 0x87, 0x47, - 0x50, 0x03, 0xf0, 0x45, 0x30, 0xfb, 0xe9, 0xaf, 0x16, 0x52, 0x07, 0x60, 0xe6, 0x56, 0xa8, 0x19, - 0x6e, 0xb2, 0xc7, 0x6a, 0x72, 0x0d, 0xb1, 0x9c, 0xd8, 0x62, 0x70, 0xfd, 0x3a, 0x9d, 0x03, 0x70, - 0xfd, 0x3a, 0x1d, 0x6c, 0x70, 0xfd, 0x9a, 0xbf, 0x10, 0xb8, 0x7e, 0xa0, 0xa6, 0xd4, 0xc2, 0x03, - 0xae, 0x5f, 0x3b, 0x0c, 0x05, 0xae, 0x5f, 0xf5, 0x17, 0xb8, 0x7e, 0x38, 0x17, 0x84, 0xaf, 0x03, - 0xae, 0x1f, 0xe6, 0x5c, 0x86, 0x0a, 0x00, 0xd7, 0xaf, 0xbd, 0x0a, 0x00, 0xd7, 0x0f, 0x5f, 0x04, - 0xb3, 0x5f, 0xf8, 0x02, 0xd7, 0x0f, 0x33, 0xb7, 0x4a, 0xcd, 0x7c, 0x1b, 0xab, 0x4e, 0xc3, 0xc9, - 0xfe, 0xd1, 0x6b, 0x80, 0xed, 0x57, 0x31, 0x7d, 0xb0, 0xfd, 0x1a, 0x1d, 0x04, 0xb0, 0xfd, 0x3a, - 0x1d, 0x6c, 0xb0, 0xfd, 0x9a, 0xbf, 0x10, 0xd8, 0x7e, 0xe0, 0xa6, 0xd4, 0xc2, 0x93, 0x1f, 0xb6, - 0xff, 0xc1, 0xf5, 0xed, 0xf0, 0x39, 0x07, 0x6c, 0xff, 0x29, 0x5c, 0x1d, 0xcc, 0xd8, 0x74, 0x05, - 0x63, 0x6a, 0x25, 0xcf, 0x64, 0xfe, 0x79, 0xae, 0xe8, 0x39, 0x5b, 0x20, 0xd1, 0xa4, 0x02, 0x9f, - 0xe6, 0x9d, 0x5d, 0x14, 0x03, 0x83, 0x56, 0xd9, 0x26, 0x6d, 0x62, 0x52, 0x85, 0xca, 0x88, 0x87, - 0xfd, 0x0e, 0xf7, 0x27, 0xdd, 0x49, 0x46, 0xcb, 0x7c, 0x31, 0x5e, 0xe5, 0x76, 0x63, 0xbc, 0xb6, - 0xed, 0xeb, 0x78, 0x6d, 0xdb, 0xd5, 0x90, 0xd9, 0xed, 0x7a, 0xe4, 0x3c, 0xb4, 0xeb, 0x91, 0x3d, - 0xc4, 0xcd, 0xc3, 0x3f, 0xdb, 0xd7, 0xf1, 0x2a, 0x0e, 0x3f, 0x35, 0x47, 0x8b, 0x58, 0x7b, 0x59, - 0xc3, 0x76, 0xd3, 0xfb, 0xd6, 0xbe, 0x0a, 0x1c, 0x56, 0x9d, 0xac, 0x5e, 0xfb, 0xb6, 0xff, 0x30, - 0xfc, 0xe6, 0xe7, 0xd1, 0x9a, 0xdd, 0x8e, 0x96, 0x0c, 0xb5, 0x95, 0xb7, 0x60, 0x86, 0x9a, 0xab, - 0x58, 0xb3, 0x1a, 0xf9, 0x1b, 0xd9, 0xb8, 0xdf, 0xc8, 0x46, 0xfd, 0x66, 0x35, 0xe6, 0xd7, 0xfd, - 0x90, 0x19, 0x86, 0x5f, 0xf2, 0x8c, 0x5b, 0x0c, 0x00, 0x2a, 0xea, 0x00, 0x8a, 0xde, 0x90, 0x44, - 0x5f, 0x43, 0xaf, 0xe7, 0xcc, 0x34, 0xd5, 0x8a, 0xa6, 0x68, 0xc3, 0x3c, 0x6a, 0x41, 0x3d, 0x0f, - 0xb8, 0x7e, 0xc7, 0x47, 0xaf, 0x19, 0x69, 0x76, 0x90, 0x75, 0x3f, 0xc0, 0x39, 0x3a, 0xb8, 0x1a, - 0xa2, 0x15, 0x05, 0xe8, 0x44, 0x2f, 0xad, 0xa5, 0x8f, 0x6e, 0xd0, 0x48, 0x2f, 0x14, 0xc2, 0xa0, - 0xcf, 0x59, 0x68, 0xd9, 0x8e, 0x13, 0xb2, 0x28, 0xd2, 0x4e, 0x2f, 0x24, 0xf7, 0xc5, 0x73, 0xf3, - 0xd4, 0x4c, 0xb3, 0xea, 0xd9, 0xd0, 0x40, 0xdb, 0x38, 0x39, 0x9d, 0xe3, 0xdf, 0x8c, 0x88, 0x6b, - 0xd3, 0x3d, 0x5e, 0xcd, 0x98, 0x38, 0x34, 0x63, 0xe2, 0xcb, 0x4c, 0x89, 0x1b, 0x03, 0x02, 0xff, - 0xd5, 0x26, 0xea, 0x5a, 0x90, 0x5f, 0xf3, 0x2e, 0x48, 0x46, 0x74, 0x3b, 0xd2, 0xbc, 0xab, 0x91, - 0xf6, 0x41, 0xf3, 0x26, 0x04, 0xc5, 0x1b, 0x15, 0xf4, 0x6e, 0x4a, 0x50, 0xbb, 0x71, 0x41, 0xeb, - 0xc6, 0x05, 0xa5, 0x9b, 0x16, 0x74, 0x0e, 0x5e, 0x3e, 0x0f, 0xa0, 0x22, 0x99, 0xa0, 0xae, 0xe4, - 0xc2, 0x4a, 0xed, 0xae, 0x27, 0xcb, 0xb0, 0x0a, 0x70, 0x68, 0x9e, 0x04, 0x67, 0x4c, 0xb6, 0x9e, - 0x49, 0x59, 0x79, 0x46, 0x66, 0xdf, 0x99, 0x96, 0x65, 0x67, 0x6c, 0x36, 0x9d, 0xb1, 0x59, 0x73, - 0xa6, 0x66, 0xc7, 0x21, 0x96, 0x31, 0xcb, 0xa6, 0x1b, 0x93, 0xd5, 0x96, 0x68, 0x5d, 0xb7, 0xf7, - 0xad, 0x32, 0xb9, 0x8b, 0xb0, 0xfc, 0xc0, 0xfa, 0xbf, 0xc0, 0x37, 0xa1, 0x16, 0x40, 0x42, 0x51, - 0xbc, 0x33, 0x60, 0xae, 0x0d, 0x9b, 0x73, 0x16, 0xfa, 0xc6, 0x14, 0xa3, 0x2b, 0xec, 0xee, 0xde, - 0x15, 0xad, 0xd3, 0xd6, 0xcf, 0xbb, 0x92, 0x75, 0xda, 0x1a, 0x7d, 0x2c, 0xc5, 0x7f, 0x8c, 0x3e, - 0x97, 0xef, 0x8a, 0x56, 0x65, 0xf2, 0xf9, 0xe8, 0xae, 0x68, 0x1d, 0xb5, 0xf6, 0xee, 0xef, 0xf7, - 0xf7, 0x7e, 0x1c, 0x0e, 0x36, 0xff, 0xc5, 0xdd, 0xff, 0xbe, 0xbb, 0xbf, 0xef, 0xfd, 0xb8, 0x1a, - 0x0c, 0xff, 0x5f, 0x1f, 0xb4, 0xfe, 0xb6, 0xf7, 0xbb, 0x29, 0xb6, 0x69, 0xf8, 0x22, 0xf7, 0xf7, - 0xfb, 0xad, 0xdf, 0xf4, 0x57, 0xeb, 0x2d, 0xc4, 0xd5, 0xc1, 0x7f, 0xa7, 0xc7, 0x3c, 0x88, 0xab, - 0x23, 0x0f, 0xcf, 0x99, 0x0d, 0x1f, 0xd0, 0x39, 0x87, 0x12, 0x41, 0x75, 0x46, 0x9d, 0x62, 0x04, - 0xd5, 0x49, 0x3b, 0xb5, 0x5b, 0x1b, 0x54, 0x77, 0x13, 0x2f, 0x43, 0x75, 0xbc, 0x0a, 0x08, 0xaa, - 0xd3, 0x5d, 0x2f, 0x68, 0x7a, 0x9b, 0xae, 0xf5, 0x2d, 0x3a, 0x42, 0xe8, 0x36, 0x75, 0x8f, 0x11, - 0x42, 0x97, 0x6d, 0x92, 0x08, 0xa1, 0x13, 0x34, 0x51, 0x84, 0xd0, 0x01, 0x6f, 0xcb, 0xdb, 0x44, - 0x6d, 0x43, 0xe8, 0xb4, 0xee, 0x61, 0x67, 0x42, 0x8f, 0x3a, 0xcd, 0xef, 0xb3, 0x11, 0x40, 0xb7, - 0x2d, 0xd0, 0xc0, 0x14, 0x88, 0x60, 0x1c, 0x54, 0x30, 0x0e, 0x32, 0x98, 0x06, 0x1d, 0xf4, 0x84, - 0x10, 0x9a, 0x42, 0x89, 0x64, 0x73, 0xb5, 0xbf, 0x7f, 0x7e, 0xb9, 0x77, 0x76, 0x98, 0xcf, 0x5d, - 0xfe, 0x1c, 0xb2, 0x47, 0x9d, 0xf5, 0xe6, 0xc4, 0x97, 0xd7, 0xb8, 0x33, 0x4a, 0xe1, 0x62, 0xbc, - 0x94, 0xef, 0xed, 0x88, 0x99, 0x13, 0x99, 0x78, 0x7d, 0xdb, 0xf8, 0xd8, 0x6e, 0xd6, 0xda, 0xf5, - 0xdb, 0x6a, 0xbb, 0x59, 0xff, 0xb3, 0xdd, 0xfc, 0xab, 0x51, 0xd3, 0x5d, 0xd9, 0xc7, 0xbd, 0x72, - 0x22, 0x23, 0xee, 0xf1, 0x0d, 0x89, 0x4b, 0x9b, 0x48, 0xc3, 0x50, 0x10, 0x2e, 0xae, 0xfe, 0x30, - 0x20, 0x3e, 0xea, 0x2d, 0xb6, 0x9e, 0x64, 0xeb, 0xdb, 0xf5, 0xeb, 0x0f, 0xd5, 0x3a, 0x04, 0x60, - 0x2b, 0x05, 0xe0, 0xba, 0xd1, 0xbc, 0xf8, 0x50, 0xad, 0xb7, 0xaf, 0xae, 0xcf, 0x6b, 0xed, 0xc6, - 0xcd, 0x75, 0xa3, 0x76, 0xd3, 0xfc, 0x0b, 0xb2, 0xb0, 0x95, 0xb2, 0x10, 0xcb, 0x40, 0xb5, 0xd9, - 0xbc, 0xb9, 0x78, 0xff, 0xb9, 0x59, 0x83, 0x10, 0x6c, 0xa5, 0x10, 0xdc, 0x5c, 0x7f, 0x6e, 0xd6, - 0x6e, 0xda, 0xd5, 0xf3, 0xf3, 0x9b, 0xda, 0xed, 0x2d, 0x84, 0x60, 0x9b, 0x85, 0xe0, 0xa2, 0xf1, - 0xe7, 0xb1, 0x41, 0x92, 0xa0, 0xf5, 0x0c, 0x5b, 0x20, 0x7a, 0x0c, 0x9f, 0x15, 0xee, 0xd4, 0x7e, - 0xa5, 0x3d, 0x10, 0xc3, 0x46, 0x17, 0xc3, 0xa6, 0x61, 0xa8, 0x29, 0x82, 0xb6, 0x96, 0x09, 0xd9, - 0xa4, 0x31, 0x02, 0xf7, 0xbe, 0xe9, 0x1b, 0xba, 0x35, 0x3d, 0x49, 0x04, 0x70, 0xad, 0x33, 0x2d, - 0x04, 0x70, 0x65, 0x10, 0x37, 0x04, 0x70, 0x65, 0x39, 0x10, 0x08, 0xe0, 0x12, 0x8d, 0x53, 0x10, - 0xc0, 0x65, 0x3e, 0xd8, 0x44, 0x0d, 0xb4, 0x6c, 0x3a, 0x19, 0x35, 0xd0, 0xf2, 0x07, 0x06, 0x4c, - 0x00, 0x05, 0x46, 0x81, 0x03, 0x53, 0x40, 0x82, 0x71, 0x60, 0xc1, 0x38, 0xd0, 0x60, 0x1a, 0x78, - 0xd0, 0x13, 0x44, 0x68, 0x0a, 0x26, 0xb4, 0x07, 0x15, 0xc9, 0x04, 0x3d, 0xe6, 0x3f, 0xc5, 0xf4, - 0x95, 0x21, 0x81, 0x46, 0xe3, 0xf9, 0xa2, 0x02, 0xda, 0x36, 0xc0, 0x0e, 0x93, 0xe0, 0x87, 0x91, - 0x30, 0xc4, 0x34, 0x38, 0x62, 0x2c, 0x2c, 0x31, 0x16, 0x9e, 0x98, 0x0a, 0x53, 0xf4, 0x86, 0x2b, - 0x9a, 0xc3, 0x96, 0x64, 0xd3, 0xcd, 0xab, 0x80, 0xd6, 0x77, 0x7d, 0x5e, 0x3a, 0x36, 0xa8, 0xe6, - 0xd9, 0xb1, 0x01, 0x53, 0xbd, 0xb1, 0xfd, 0x27, 0x66, 0x4c, 0xc1, 0x33, 0x83, 0x1a, 0xba, 0x5f, - 0xba, 0x66, 0x75, 0xa0, 0x37, 0x08, 0xdc, 0x2e, 0x4c, 0x3b, 0x0e, 0xf7, 0x37, 0x70, 0xde, 0x1f, - 0x43, 0xbb, 0xc3, 0xdd, 0xc0, 0x3f, 0x77, 0x9f, 0xdc, 0xb8, 0xe3, 0x73, 0xd1, 0x98, 0xf9, 0x0f, - 0x0c, 0xea, 0xe2, 0x7f, 0x69, 0x7f, 0xc7, 0x51, 0x94, 0x7c, 0x14, 0x8f, 0x8f, 0x8e, 0x0e, 0x8f, - 0x70, 0x1c, 0x81, 0x85, 0xcd, 0x9a, 0x25, 0xca, 0x6f, 0xe6, 0xce, 0x1c, 0xe8, 0x5d, 0x25, 0x63, - 0xc1, 0xcb, 0xd1, 0xb8, 0x5a, 0x86, 0x61, 0xb6, 0x09, 0x1c, 0x28, 0xa5, 0x9c, 0x82, 0x03, 0xa5, + 0x24, 0x62, 0x81, 0x89, 0x4c, 0x80, 0x82, 0x0d, 0x54, 0xc0, 0x01, 0x8b, 0x18, 0xe0, 0x92, 0x0b, + 0x1a, 0xaa, 0xe8, 0x2c, 0x3b, 0xa0, 0x13, 0xe2, 0xbd, 0x16, 0x01, 0x62, 0x2e, 0xb7, 0x10, 0x0f, + 0x30, 0x87, 0x34, 0xab, 0x42, 0xc4, 0x95, 0x02, 0x6d, 0x24, 0x42, 0x1c, 0xc1, 0x50, 0x47, 0x2a, + 0xe4, 0x11, 0x0f, 0x7d, 0xc4, 0x43, 0x20, 0xd9, 0x50, 0x48, 0x06, 0x24, 0x12, 0x02, 0x8d, 0x72, + 0x55, 0xe8, 0x5d, 0x8e, 0x95, 0x4c, 0x8f, 0x3d, 0x09, 0xa2, 0xf4, 0xad, 0x24, 0x7f, 0x3d, 0x87, + 0x1f, 0x9b, 0x82, 0x44, 0xee, 0xfa, 0xd1, 0x99, 0x12, 0x37, 0xba, 0x5a, 0x5e, 0xeb, 0xbb, 0xb3, + 0x1f, 0x44, 0xe2, 0x02, 0xb9, 0x50, 0x5c, 0xbd, 0x24, 0x7e, 0x36, 0xa0, 0x5d, 0xb0, 0xfc, 0x1f, + 0x62, 0x7f, 0x90, 0x06, 0xa3, 0x68, 0x2f, 0x38, 0x0b, 0xb2, 0xfe, 0x88, 0x55, 0x79, 0x7d, 0xfa, + 0x3f, 0x09, 0x34, 0x59, 0xff, 0x2b, 0x4d, 0xd6, 0xb0, 0xc9, 0xae, 0x6f, 0x6e, 0xd2, 0x68, 0x09, + 0xc4, 0xed, 0x92, 0xb6, 0xcf, 0x71, 0x03, 0x55, 0x09, 0x2a, 0xb3, 0x3e, 0x56, 0x71, 0x69, 0x5f, + 0xe0, 0xee, 0x5b, 0xe1, 0x91, 0x8e, 0x49, 0x5f, 0x9d, 0x7a, 0xcc, 0xa4, 0xaf, 0x3e, 0x33, 0x64, + 0xd2, 0xd7, 0xf0, 0x0d, 0x30, 0xe9, 0x4b, 0xc4, 0x31, 0x57, 0x05, 0x26, 0x7d, 0x75, 0xc3, 0x0f, + 0x26, 0x7d, 0xcb, 0xfe, 0x30, 0xe9, 0x4b, 0x5c, 0xfd, 0x08, 0xf1, 0x99, 0xf4, 0x65, 0xb4, 0x7c, + 0x8a, 0xc9, 0x32, 0xe9, 0x6b, 0xdc, 0x64, 0x99, 0xf4, 0x25, 0x10, 0xb7, 0x4e, 0x5a, 0x26, 0x7d, + 0x2b, 0x13, 0x54, 0x9c, 0x8b, 0xb9, 0x23, 0x13, 0x96, 0xf5, 0x9d, 0x89, 0xcd, 0xb4, 0x6f, 0x19, + 0xe2, 0x32, 0xed, 0xab, 0x51, 0x91, 0x99, 0xf6, 0xd5, 0x67, 0x86, 0x4c, 0xfb, 0x1a, 0xbe, 0x01, + 0xa6, 0x7d, 0x89, 0x39, 0xe6, 0xaa, 0x20, 0x37, 0xed, 0x7b, 0x12, 0x44, 0x7e, 0x7c, 0x29, 0x30, + 0xef, 0xbb, 0x43, 0x58, 0x5f, 0x01, 0x09, 0xb9, 0x3a, 0xa2, 0x58, 0x79, 0xc5, 0xcf, 0x2c, 0x5d, + 0x9a, 0x2e, 0xb9, 0xf4, 0x37, 0x12, 0x36, 0xcb, 0x00, 0xef, 0x4c, 0x00, 0x1e, 0x89, 0x24, 0xa2, + 0xa4, 0x4b, 0x52, 0x29, 0x97, 0x10, 0x2e, 0xcf, 0x51, 0x24, 0xe4, 0xec, 0x2b, 0x1c, 0x45, 0x42, + 0x6e, 0x6e, 0x29, 0x27, 0x27, 0x04, 0xaf, 0x04, 0xf7, 0xbe, 0x31, 0xdb, 0xc3, 0x3f, 0x8d, 0xd5, + 0xa9, 0x04, 0x8f, 0xbb, 0x98, 0x55, 0xb6, 0x2d, 0x40, 0xd6, 0x83, 0x39, 0xab, 0x79, 0xfd, 0x7a, + 0x46, 0x01, 0x6a, 0x19, 0x02, 0x23, 0x0f, 0xb0, 0x48, 0x32, 0xee, 0x4e, 0x7b, 0xb2, 0x88, 0xdc, + 0x9d, 0x56, 0xbc, 0xb0, 0xdc, 0x9d, 0x56, 0x11, 0xfb, 0xe6, 0xee, 0x34, 0x98, 0xf4, 0x5e, 0xb5, + 0xf6, 0xa9, 0x7d, 0x5a, 0xdc, 0x3d, 0x17, 0xab, 0xc9, 0x95, 0x88, 0x8b, 0xd5, 0xaa, 0xee, 0xc5, + 0xb8, 0x62, 0x0d, 0x59, 0x12, 0x10, 0xfb, 0x5c, 0xb0, 0x88, 0x60, 0x08, 0x12, 0xe3, 0x30, 0x39, + 0x03, 0x34, 0x47, 0x80, 0xe6, 0x04, 0x98, 0x1c, 0x00, 0xc5, 0xfa, 0x40, 0xa3, 0xa2, 0xf8, 0x68, + 0x08, 0x04, 0xd8, 0x8b, 0x07, 0xe8, 0x18, 0x81, 0xdd, 0x7c, 0x18, 0x35, 0x2b, 0x81, 0x61, 0x17, + 0x82, 0xe6, 0x3a, 0xa4, 0xba, 0x0c, 0xb3, 0xc6, 0x64, 0x4e, 0x85, 0x0d, 0xaa, 0xaf, 0x33, 0x7d, + 0x2d, 0x43, 0xe3, 0x5a, 0x9b, 0x1f, 0x8d, 0xcd, 0xc4, 0x31, 0x6c, 0xce, 0x18, 0x55, 0x31, 0x30, + 0x55, 0x2f, 0x48, 0x55, 0x2d, 0x80, 0x55, 0x2b, 0x68, 0x55, 0x29, 0xb0, 0x55, 0x27, 0xb0, 0x55, + 0x25, 0x98, 0x55, 0x23, 0xd5, 0x86, 0x54, 0x30, 0x55, 0x1d, 0x80, 0x55, 0x1b, 0x48, 0x55, 0x19, + 0xcb, 0x55, 0x17, 0xb3, 0x10, 0x4e, 0x28, 0x67, 0x80, 0xdc, 0x22, 0xec, 0x6a, 0x84, 0xda, 0xc5, + 0x08, 0xb2, 0x6b, 0x91, 0x50, 0x8e, 0x50, 0x8e, 0x50, 0x8e, 0x50, 0xae, 0x9a, 0x50, 0x0e, 0x65, + 0x57, 0x20, 0x48, 0xae, 0x03, 0x32, 0xe7, 0x01, 0x96, 0xfb, 0x80, 0x0b, 0x9c, 0x88, 0x01, 0x14, + 0x38, 0x90, 0xa2, 0x06, 0x54, 0xf8, 0xc0, 0x0a, 0x1f, 0x60, 0xb1, 0x03, 0x2d, 0x46, 0xc0, 0x05, + 0x09, 0xbc, 0x78, 0xb9, 0x94, 0x25, 0x8f, 0x35, 0x09, 0xa2, 0x74, 0x6d, 0x0b, 0xc9, 0x61, 0xcd, + 0xe3, 0xdf, 0x16, 0x90, 0x48, 0x98, 0x53, 0x83, 0x01, 0xeb, 0x06, 0x91, 0xa7, 0xfe, 0x82, 0xb7, + 0x5a, 0xa3, 0x4f, 0xed, 0x95, 0x30, 0xe0, 0x13, 0xb0, 0x79, 0x01, 0x7a, 0xaa, 0xae, 0x14, 0x93, + 0xd8, 0x58, 0xdd, 0xd9, 0xa4, 0x55, 0xc8, 0x86, 0x62, 0x78, 0xd2, 0xf4, 0x59, 0x39, 0x86, 0xe2, + 0x35, 0x9d, 0xe4, 0x32, 0x49, 0xd5, 0x39, 0x64, 0x72, 0xe8, 0x5a, 0x34, 0x26, 0x88, 0xee, 0x13, + 0x87, 0x09, 0xa2, 0x47, 0x28, 0x13, 0x13, 0x44, 0x3f, 0xae, 0xe6, 0x4c, 0x10, 0x3d, 0x53, 0x40, + 0x26, 0x88, 0xa4, 0x30, 0x06, 0xe0, 0x04, 0x11, 0x5a, 0xf8, 0xbb, 0x19, 0x02, 0xd7, 0xde, 0x02, + 0xc9, 0x74, 0xe0, 0xa7, 0xa9, 0x8a, 0x23, 0xb8, 0x34, 0x91, 0xf3, 0xbf, 0x47, 0xab, 0xee, 0x4e, + 0xdd, 0xfd, 0xe0, 0xbb, 0xa7, 0xfd, 0x3f, 0x37, 0xae, 0x8e, 0x8f, 0x5f, 0x7f, 0xe7, 0x2f, 0xfe, + 0xcb, 0x21, 0x46, 0x47, 0xc3, 0xe8, 0xec, 0xee, 0x60, 0x77, 0xc7, 0x13, 0xbb, 0x3b, 0x00, 0xa6, + 0xb1, 0x56, 0xb4, 0x1c, 0x10, 0x86, 0xd4, 0xc2, 0x45, 0x73, 0x76, 0x78, 0xe0, 0x92, 0x56, 0x96, + 0x05, 0xca, 0x25, 0xa7, 0x2c, 0x0b, 0x24, 0xac, 0x92, 0x47, 0x3a, 0xd9, 0xe1, 0xf1, 0x5d, 0x6a, + 0x79, 0xbb, 0xc3, 0xe3, 0x3a, 0x8c, 0x57, 0x15, 0xd6, 0xbd, 0xa8, 0x90, 0xc1, 0x2e, 0xc6, 0xd2, + 0x64, 0x65, 0xaa, 0x2b, 0xa6, 0x21, 0x1c, 0xc6, 0x4c, 0x1a, 0xa8, 0x19, 0x34, 0x50, 0x33, 0x67, + 0x30, 0x66, 0xcc, 0x98, 0x32, 0x15, 0x90, 0x54, 0x81, 0xac, 0x14, 0x81, 0x63, 0xb4, 0x67, 0xae, + 0x98, 0x81, 0x30, 0x66, 0x22, 0xa1, 0xfe, 0x38, 0xa4, 0xf7, 0x8a, 0x9a, 0xcd, 0xd8, 0xb4, 0xf9, + 0x8a, 0x30, 0x5b, 0xbd, 0x9a, 0xae, 0x4f, 0xdf, 0xf4, 0x5c, 0x49, 0x93, 0x46, 0x9b, 0xd2, 0x64, + 0x60, 0x0d, 0xd6, 0x18, 0x65, 0x9e, 0x1b, 0x55, 0xf4, 0x98, 0x58, 0xf9, 0x0a, 0xaf, 0x41, 0xd9, + 0x9d, 0xf3, 0x49, 0x98, 0x06, 0x6e, 0x3a, 0x1a, 0x8f, 0xc2, 0xd1, 0xd9, 0xa5, 0x36, 0x65, 0xbf, + 0x6e, 0xde, 0xbb, 0x7d, 0x7d, 0x4d, 0xe6, 0xad, 0xb7, 0xad, 0x5d, 0x7b, 0x9e, 0xda, 0x44, 0x3e, + 0xda, 0x60, 0xde, 0xd9, 0x54, 0x7e, 0xd9, 0x78, 0x1e, 0xd9, 0x78, 0xbe, 0xd8, 0x6c, 0x5e, 0xd8, + 0x2e, 0xc8, 0xa1, 0xbb, 0xcd, 0xdb, 0x99, 0x3b, 0xdd, 0x40, 0x25, 0xfa, 0x2d, 0x27, 0x5f, 0xf2, + 0x78, 0x2d, 0x83, 0x66, 0xcd, 0x35, 0x33, 0xd9, 0xc4, 0xd8, 0x91, 0xa5, 0xc9, 0x23, 0x4a, 0x80, + 0x23, 0x49, 0xd3, 0x47, 0x90, 0x30, 0x47, 0x8e, 0x30, 0x47, 0x8c, 0x18, 0x47, 0x8a, 0x76, 0xe7, + 0x63, 0x4c, 0x4d, 0x0e, 0x71, 0xb4, 0xf3, 0x89, 0xef, 0x05, 0x18, 0x53, 0x1b, 0xfa, 0x0d, 0x0f, + 0xd0, 0x32, 0x5e, 0x21, 0x83, 0x50, 0x19, 0x03, 0x54, 0x11, 0x83, 0x52, 0x09, 0x03, 0x57, 0x01, + 0x03, 0x57, 0xf9, 0x82, 0x55, 0xf1, 0x52, 0xad, 0x03, 0x73, 0xd3, 0x03, 0xaf, 0x38, 0xd4, 0xfb, + 0xe1, 0x40, 0xc6, 0x92, 0x4f, 0x9c, 0xc0, 0x06, 0x18, 0xe0, 0xd0, 0x02, 0x1d, 0x6c, 0xc0, 0x83, + 0x0d, 0x7c, 0x98, 0x01, 0xd0, 0x6c, 0x20, 0x34, 0x1c, 0x10, 0xf3, 0x57, 0xc2, 0x92, 0xcf, 0x1f, + 0x60, 0x5a, 0x1c, 0xea, 0x8d, 0x66, 0x3a, 0x1c, 0xea, 0xcd, 0xa1, 0xde, 0x84, 0x72, 0x84, 0x72, + 0x84, 0x72, 0x84, 0x72, 0x84, 0x72, 0x18, 0x39, 0x8e, 0x5c, 0x10, 0x3f, 0x4d, 0xe3, 0xe0, 0x64, + 0x92, 0x1a, 0x38, 0x05, 0xfe, 0xae, 0x13, 0xbc, 0x21, 0x1b, 0xa7, 0x37, 0x21, 0x87, 0x50, 0xc4, + 0x50, 0x0a, 0x1c, 0x52, 0x51, 0x43, 0x2b, 0x7c, 0x88, 0x85, 0x0f, 0xb5, 0xd8, 0x21, 0x17, 0x23, + 0xf4, 0x82, 0x84, 0x60, 0xbc, 0xac, 0xca, 0x92, 0xc7, 0x52, 0xd1, 0xe4, 0x5c, 0xc5, 0xb3, 0x32, + 0x74, 0xc0, 0xf9, 0x4d, 0x1b, 0x40, 0x32, 0x35, 0xa2, 0xc9, 0xf9, 0xf4, 0x25, 0x5e, 0x71, 0xe4, + 0x10, 0x8a, 0x71, 0x71, 0x5f, 0x0c, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, 0x01, 0x25, + 0x01, 0x25, 0x84, 0xc7, 0xe2, 0xbe, 0x98, 0x1f, 0x10, 0x89, 0xfb, 0x62, 0x7e, 0xf0, 0x41, 0x71, + 0x5f, 0xcc, 0xd3, 0xc5, 0xe3, 0xbe, 0x18, 0x5b, 0xdc, 0xfd, 0x6d, 0x93, 0xe0, 0xbe, 0x98, 0x67, + 0x9b, 0x04, 0xf7, 0xc5, 0xc8, 0x87, 0x62, 0x78, 0xd2, 0x70, 0x16, 0x35, 0x82, 0x04, 0x9c, 0x45, + 0x7d, 0x5b, 0x1e, 0xc8, 0x79, 0x1f, 0xb7, 0x46, 0x32, 0xd4, 0xae, 0x5b, 0x74, 0x6b, 0xf9, 0xdf, + 0x55, 0x7b, 0x28, 0x75, 0x65, 0xa7, 0x17, 0x72, 0x66, 0x21, 0x67, 0x16, 0xde, 0x27, 0x0c, 0x67, + 0x16, 0x72, 0x66, 0xe1, 0x13, 0x43, 0x89, 0xd0, 0xe1, 0x85, 0xd3, 0xfb, 0xea, 0xcd, 0x6f, 0xc1, + 0x5b, 0x7c, 0xe1, 0x10, 0x43, 0x0b, 0xec, 0x9a, 0x43, 0x0c, 0x1f, 0x63, 0xc7, 0x9c, 0x66, 0x28, + 0x40, 0xb5, 0x39, 0xcd, 0xf0, 0x41, 0x55, 0x16, 0x32, 0xd5, 0xf0, 0x66, 0xb8, 0xe1, 0x74, 0xc3, + 0x1f, 0x7f, 0xe4, 0x51, 0x38, 0xd6, 0x58, 0x81, 0x92, 0x1f, 0xb3, 0xcd, 0x2e, 0xcb, 0x59, 0x86, + 0x85, 0x5c, 0x90, 0xb3, 0x0c, 0x75, 0xf1, 0x7c, 0xce, 0x32, 0xe4, 0x2c, 0xc3, 0x62, 0x1e, 0xa5, + 0xf6, 0x59, 0x86, 0x66, 0xda, 0x3c, 0x8d, 0xb6, 0x75, 0x72, 0x82, 0xa1, 0x81, 0x17, 0xcd, 0x09, + 0x86, 0x9c, 0x60, 0x88, 0x11, 0x30, 0xaa, 0x91, 0x8c, 0x31, 0x36, 0xc1, 0x50, 0x2f, 0x73, 0x80, + 0x60, 0x12, 0x0f, 0x05, 0x98, 0x55, 0xce, 0x2e, 0xe4, 0xec, 0x42, 0xce, 0x2e, 0xc4, 0x0f, 0x48, + 0x58, 0x81, 0xc9, 0x4c, 0x80, 0x32, 0x14, 0xa8, 0xf2, 0x47, 0x6f, 0xbc, 0xf6, 0x1b, 0xac, 0x79, + 0x10, 0xa1, 0x59, 0xd0, 0x70, 0x73, 0xe0, 0x15, 0xab, 0x26, 0x58, 0x35, 0x71, 0x8f, 0x30, 0x18, + 0x55, 0x13, 0x24, 0x2c, 0xc5, 0x86, 0x5e, 0x9e, 0x1e, 0x2f, 0x1d, 0xb9, 0x65, 0x24, 0xc6, 0x44, + 0xcd, 0x20, 0xcf, 0x8b, 0x45, 0x29, 0x31, 0xae, 0xf2, 0xca, 0x38, 0x26, 0x6e, 0x67, 0xa2, 0xf2, + 0x78, 0xf8, 0x87, 0x1f, 0xf5, 0x78, 0x12, 0x9f, 0x29, 0x77, 0x14, 0xe8, 0x3f, 0x21, 0xce, 0xaf, + 0xcc, 0x43, 0x62, 0xa9, 0xa9, 0x1a, 0x1e, 0x12, 0xf3, 0x90, 0x98, 0x87, 0xc4, 0xcf, 0x78, 0x94, + 0x3c, 0x24, 0xb6, 0xce, 0xf1, 0x1b, 0x0b, 0x00, 0x26, 0x03, 0x01, 0x40, 0x40, 0x30, 0x1d, 0x18, + 0x60, 0x02, 0x04, 0x4c, 0xa0, 0xc0, 0x08, 0x18, 0xd5, 0xc8, 0xb9, 0x18, 0x3b, 0x24, 0x8e, 0xd5, + 0x40, 0x05, 0x17, 0x6a, 0xe8, 0x26, 0x97, 0x49, 0xaa, 0xce, 0x5d, 0x84, 0x13, 0xe3, 0x7b, 0x64, + 0xe2, 0xf1, 0xb1, 0x11, 0x01, 0x78, 0x7c, 0x8c, 0x14, 0x9a, 0xe0, 0x42, 0x14, 0x5c, 0xa8, 0xc2, + 0x0a, 0x59, 0x66, 0x42, 0x97, 0xa1, 0x10, 0x96, 0x3f, 0x7a, 0x9c, 0xe3, 0x63, 0xd3, 0xe1, 0xe3, + 0x16, 0x7b, 0x79, 0x6b, 0x50, 0x86, 0x03, 0x3f, 0x4d, 0x55, 0x1c, 0x19, 0x1f, 0x08, 0xe6, 0xfc, + 0xef, 0xd1, 0xaa, 0xbb, 0x53, 0x77, 0x3f, 0xf8, 0xee, 0x69, 0xff, 0xcf, 0x8d, 0xab, 0xe3, 0xe3, + 0xd7, 0xdf, 0xf9, 0x8b, 0xff, 0x32, 0x67, 0xb5, 0xfd, 0xaa, 0x1c, 0x66, 0x1a, 0xe0, 0x78, 0x49, + 0x16, 0x48, 0x91, 0x30, 0xe7, 0x92, 0x44, 0x44, 0x9c, 0x44, 0x9c, 0x44, 0x9c, 0x44, 0x9c, 0x44, + 0x9c, 0x44, 0x9c, 0x44, 0x9c, 0x44, 0x9c, 0x44, 0x9c, 0xb2, 0x11, 0xe7, 0xc2, 0x32, 0xdd, 0xc1, + 0x68, 0x92, 0x79, 0x69, 0xd3, 0x80, 0xf3, 0x8e, 0x40, 0xc4, 0x9b, 0xc4, 0x9b, 0xc4, 0x9b, 0xc4, + 0x9b, 0xc4, 0x9b, 0xc4, 0x9b, 0x3f, 0xec, 0x31, 0x26, 0x41, 0x94, 0xbe, 0x05, 0xc0, 0x9a, 0x06, + 0x87, 0x5d, 0x83, 0xec, 0x3a, 0x00, 0x18, 0xc4, 0x8b, 0xb4, 0xcb, 0x00, 0x6d, 0x29, 0x14, 0xd8, + 0xae, 0x02, 0xc4, 0x29, 0xec, 0x08, 0xeb, 0xd6, 0x90, 0x76, 0x0f, 0xa0, 0xaa, 0xf0, 0xfa, 0xe6, + 0x26, 0x95, 0x18, 0x0b, 0x88, 0x98, 0xbf, 0x7a, 0x9f, 0x9d, 0x77, 0xf2, 0x5d, 0x22, 0x3b, 0xef, + 0xee, 0x69, 0x5e, 0x5a, 0xb4, 0x99, 0xb0, 0xf9, 0x4e, 0x8c, 0x3e, 0xb3, 0xf9, 0xee, 0x1e, 0xfd, + 0x95, 0xd1, 0x7f, 0x77, 0x30, 0x95, 0xb6, 0x13, 0xb0, 0x03, 0xef, 0xc7, 0x1f, 0x76, 0x3c, 0x9a, + 0xa4, 0x2a, 0x76, 0x07, 0xfe, 0xd8, 0x3f, 0x09, 0xc2, 0x20, 0x0d, 0x54, 0xa2, 0xbf, 0x19, 0xef, + 0x3e, 0x21, 0xd8, 0x97, 0x57, 0xc8, 0x05, 0xd9, 0x97, 0xa7, 0x47, 0x8d, 0xd8, 0x97, 0xc7, 0xbe, + 0xbc, 0xa2, 0x1e, 0xa5, 0xf6, 0xbe, 0xbc, 0xdc, 0xf1, 0x5e, 0x9a, 0x6b, 0xce, 0xbb, 0x21, 0x03, + 0x3b, 0xf4, 0x6c, 0x0b, 0x09, 0x00, 0xa1, 0xc1, 0x74, 0x88, 0x80, 0x09, 0x15, 0x30, 0x21, 0x03, + 0x23, 0x74, 0x54, 0x23, 0x37, 0x63, 0xac, 0x43, 0x6f, 0xc1, 0x47, 0xdd, 0x68, 0x72, 0x7e, 0xa2, + 0x62, 0xf3, 0x95, 0x2b, 0x77, 0x05, 0x62, 0xe5, 0x8a, 0x11, 0x01, 0x58, 0xb9, 0x82, 0x14, 0x94, + 0xe0, 0x82, 0x13, 0x5c, 0x90, 0xc2, 0x0a, 0x56, 0x66, 0x82, 0x96, 0xa1, 0xe0, 0x95, 0x3f, 0x7a, + 0x9c, 0xca, 0x95, 0x50, 0xf9, 0xa7, 0xb1, 0x3a, 0x45, 0xa8, 0x93, 0xde, 0x36, 0x5b, 0x27, 0x9d, + 0xe5, 0xaa, 0x5f, 0xbf, 0x9e, 0x9d, 0x6f, 0xd4, 0xee, 0x06, 0x57, 0x96, 0x04, 0x97, 0xf6, 0xec, + 0xcd, 0xcc, 0xd2, 0x59, 0xb2, 0x04, 0x13, 0x33, 0x75, 0x0c, 0x33, 0x77, 0x82, 0x28, 0x82, 0x28, + 0x82, 0x28, 0x82, 0x28, 0x99, 0x20, 0xca, 0x54, 0x26, 0x20, 0x17, 0xe0, 0x34, 0xf4, 0xcf, 0x12, + 0xf3, 0x46, 0xba, 0xf0, 0x5b, 0x33, 0x71, 0x0c, 0xdb, 0x03, 0x46, 0xb1, 0x9e, 0xf1, 0x80, 0x86, + 0x14, 0xd8, 0x00, 0x03, 0x1c, 0x5a, 0xa0, 0x83, 0x0d, 0x78, 0xb0, 0x81, 0x0f, 0x33, 0x00, 0x9a, + 0x0d, 0x84, 0x86, 0x03, 0x22, 0x4e, 0x76, 0x61, 0xc9, 0xe3, 0x60, 0x2c, 0x90, 0x59, 0x62, 0x5b, + 0x1b, 0x00, 0xb2, 0x98, 0x5d, 0x28, 0x83, 0xa2, 0xb2, 0x10, 0x0b, 0x66, 0x72, 0x69, 0x90, 0x16, + 0xcd, 0x5c, 0x0b, 0x05, 0xb4, 0x70, 0x26, 0x17, 0x0a, 0x62, 0xf1, 0x8c, 0x79, 0xaf, 0x6f, 0xd0, + 0x7c, 0x60, 0xce, 0x25, 0x97, 0x9c, 0x3e, 0xc6, 0xf9, 0x24, 0x99, 0x09, 0x99, 0x09, 0x99, 0x09, + 0x99, 0x09, 0x99, 0x09, 0x99, 0xc9, 0x3d, 0x1e, 0x67, 0x12, 0x44, 0xe9, 0x9b, 0x75, 0x20, 0x52, + 0xb2, 0x0d, 0x20, 0x0a, 0x46, 0x2b, 0xff, 0xe2, 0x83, 0xe1, 0x80, 0x57, 0xd0, 0x5a, 0xfb, 0xc1, + 0x80, 0xcd, 0x92, 0x58, 0x60, 0xad, 0xfe, 0xb9, 0x5c, 0x80, 0xdd, 0xd2, 0x20, 0xee, 0xf9, 0x2e, + 0xdd, 0xa4, 0xaa, 0x3f, 0x52, 0xd5, 0x37, 0xd6, 0x77, 0x36, 0x76, 0xb6, 0xb6, 0xd7, 0x77, 0x36, + 0xa9, 0xf3, 0x32, 0x00, 0x11, 0x8e, 0x14, 0x7d, 0xa6, 0x4e, 0xb4, 0x9b, 0xc5, 0xbc, 0x5b, 0xd3, + 0xe0, 0xdc, 0xeb, 0x25, 0x3c, 0x7a, 0x2d, 0x12, 0xd3, 0x25, 0x4c, 0x97, 0x30, 0x5d, 0xc2, 0x74, + 0x09, 0xd3, 0x25, 0x4c, 0x97, 0xc0, 0x78, 0x9c, 0x60, 0x7c, 0xb1, 0xe1, 0xfa, 0xc3, 0x61, 0xac, + 0x92, 0x04, 0xe9, 0x24, 0xf7, 0x2d, 0x80, 0x2c, 0x28, 0xb3, 0xb6, 0x73, 0x81, 0xfe, 0xf7, 0xe5, + 0xcb, 0xa3, 0x55, 0x77, 0xa7, 0xff, 0xd7, 0xd1, 0x9a, 0xbb, 0xd3, 0x9f, 0x7d, 0x5d, 0xcb, 0x7e, + 0x9b, 0x7d, 0x5f, 0x3f, 0x5a, 0x75, 0x37, 0x16, 0xdf, 0x37, 0x8f, 0x56, 0xdd, 0xcd, 0xfe, 0xab, + 0xe3, 0xe3, 0xd7, 0xaf, 0xfe, 0x7c, 0x73, 0xf5, 0xf8, 0x7f, 0xf8, 0x5f, 0x0e, 0x21, 0x74, 0xa5, + 0xae, 0x6c, 0xaa, 0xec, 0xd3, 0xf0, 0x70, 0xae, 0x5c, 0x0e, 0xc4, 0x21, 0x47, 0xf7, 0x8c, 0x9f, + 0xa9, 0x5d, 0x8f, 0x23, 0x30, 0x31, 0xba, 0xcb, 0x9c, 0x8e, 0x1a, 0x69, 0x65, 0x99, 0x9c, 0x4c, + 0xdf, 0x05, 0x40, 0x33, 0xcb, 0x5c, 0x10, 0xb6, 0xb3, 0x54, 0x95, 0x2c, 0xb2, 0x9d, 0x05, 0x9f, + 0x14, 0xb2, 0x9d, 0x85, 0xb8, 0x26, 0x7f, 0xf4, 0xc6, 0xdb, 0x59, 0x66, 0x31, 0x03, 0x27, 0x15, + 0x3a, 0x97, 0x07, 0x23, 0x0f, 0xba, 0xc6, 0x3c, 0x28, 0x4c, 0x68, 0x03, 0x0c, 0x71, 0x68, 0xa1, + 0x0e, 0x36, 0xe4, 0xc1, 0x86, 0x3e, 0xcc, 0x10, 0x68, 0x3e, 0xb9, 0xb0, 0x02, 0x90, 0x07, 0x35, + 0x1d, 0x1a, 0xaf, 0x43, 0xa4, 0x3a, 0x9b, 0xaa, 0x86, 0x3b, 0xe5, 0xd9, 0x41, 0x74, 0xe6, 0xfa, + 0xe1, 0xd9, 0x28, 0x0e, 0xd2, 0x2f, 0xe7, 0x09, 0x8e, 0xc5, 0xe7, 0xe1, 0xf3, 0x61, 0x59, 0x7f, + 0x82, 0x5a, 0xec, 0xb0, 0x06, 0x22, 0x0e, 0x4a, 0x88, 0x45, 0x0c, 0xb5, 0xc0, 0x21, 0x17, 0x35, + 0xf4, 0xc2, 0x87, 0x60, 0xf8, 0x50, 0x8c, 0x1d, 0x92, 0x31, 0x42, 0x33, 0x48, 0x88, 0x86, 0x0b, + 0xd5, 0xd7, 0x21, 0xdb, 0xe8, 0x74, 0xa1, 0xef, 0x47, 0x69, 0x83, 0x53, 0x87, 0x84, 0x04, 0x66, + 0xd8, 0x00, 0x8d, 0x1c, 0xa8, 0x05, 0x04, 0x6c, 0xf4, 0xc0, 0x2d, 0x26, 0x80, 0x8b, 0x09, 0xe4, + 0x32, 0x02, 0x3a, 0x56, 0x60, 0x07, 0x0b, 0xf0, 0xb0, 0x81, 0x3e, 0x17, 0x2c, 0xe7, 0xb9, 0xb8, + 0x0e, 0x65, 0xe1, 0x93, 0xaf, 0x45, 0x05, 0xb5, 0x53, 0xcc, 0x7e, 0x0b, 0x78, 0x40, 0x20, 0x01, + 0x18, 0x08, 0x02, 0x08, 0x52, 0x80, 0x82, 0x38, 0xc0, 0x20, 0x0e, 0x38, 0xc8, 0x02, 0x10, 0x98, + 0x40, 0x02, 0x14, 0x50, 0xe4, 0xaf, 0x16, 0xa6, 0xe8, 0xf9, 0xbb, 0x1e, 0x13, 0x6b, 0xaa, 0xd5, + 0x77, 0xd9, 0xfc, 0x06, 0xb0, 0x8c, 0x18, 0x53, 0xb0, 0xa4, 0x99, 0x0a, 0xd4, 0xd4, 0xac, 0x07, + 0xa5, 0x44, 0x9c, 0xa6, 0xf5, 0xb0, 0xb0, 0x80, 0x53, 0xb6, 0x1e, 0x14, 0x16, 0x6a, 0xfa, 0x96, + 0x9c, 0xe8, 0x47, 0x62, 0xff, 0x4d, 0x68, 0x85, 0x51, 0x5f, 0xff, 0xa0, 0x7c, 0x12, 0xeb, 0xee, + 0x67, 0xd5, 0xd8, 0xf3, 0xdf, 0x6b, 0x0f, 0x9f, 0xcc, 0x9b, 0xac, 0xd0, 0xc7, 0xb7, 0x16, 0x9e, + 0xb4, 0x09, 0xb0, 0x53, 0xab, 0xed, 0x13, 0xa9, 0xdc, 0xe1, 0xe9, 0xcb, 0xc5, 0xdf, 0xe7, 0x77, + 0xee, 0x1d, 0x66, 0x77, 0xec, 0x1d, 0xce, 0xee, 0xb8, 0x3b, 0xbb, 0xe1, 0xfa, 0xf5, 0xfd, 0x72, + 0x38, 0x07, 0x8a, 0xcd, 0x2f, 0xd5, 0x73, 0x19, 0x5c, 0x75, 0xfb, 0x5d, 0x66, 0xfc, 0x0d, 0x59, + 0x59, 0x7b, 0x76, 0x9f, 0x38, 0xac, 0x3d, 0x7b, 0x84, 0x76, 0xb1, 0xf6, 0xec, 0xc7, 0xd5, 0x9c, + 0xb5, 0x67, 0xcf, 0x85, 0x59, 0xac, 0x3d, 0x93, 0x82, 0x88, 0xf1, 0x6a, 0xcf, 0xe2, 0xb3, 0x13, + 0x77, 0xa8, 0x92, 0x41, 0x1c, 0x8c, 0xd3, 0x51, 0x9c, 0x00, 0x97, 0xa1, 0xdd, 0x95, 0x94, 0x15, + 0x69, 0x12, 0xc3, 0x36, 0x72, 0xf8, 0x16, 0x10, 0xc6, 0xd1, 0xc3, 0xb9, 0x98, 0xb0, 0x2e, 0x26, + 0xbc, 0xcb, 0x08, 0xf3, 0x58, 0xe1, 0x1e, 0x2c, 0xec, 0xc3, 0x86, 0xff, 0x87, 0x60, 0x00, 0x7e, + 0x5d, 0xda, 0x5d, 0x81, 0xb1, 0xab, 0xd3, 0xd6, 0x58, 0x9d, 0x66, 0x1d, 0x48, 0x10, 0x04, 0x16, + 0xa4, 0x80, 0x06, 0x71, 0xe0, 0x41, 0x1c, 0x88, 0x90, 0x05, 0x26, 0x30, 0x41, 0x05, 0x28, 0xb8, + 0x80, 0x07, 0x19, 0xb9, 0x80, 0xf1, 0x7c, 0x77, 0x07, 0xb8, 0x13, 0xca, 0xe7, 0x5d, 0x67, 0xe2, + 0x82, 0xdb, 0x33, 0x76, 0x19, 0xbc, 0x18, 0xc0, 0x21, 0x09, 0x78, 0x08, 0x04, 0x20, 0xd2, 0x80, + 0x88, 0x58, 0x40, 0x22, 0x16, 0x98, 0xc8, 0x04, 0x28, 0xd8, 0x40, 0x05, 0x1c, 0xb0, 0xe4, 0xaf, + 0x1c, 0xbe, 0xac, 0x7e, 0xc9, 0xe3, 0x86, 0xca, 0x3f, 0x8d, 0xd5, 0xa9, 0x04, 0x8f, 0xbb, 0xc8, + 0x44, 0x6c, 0x0b, 0x90, 0xf5, 0x60, 0x5e, 0x99, 0xf5, 0xfa, 0xf5, 0xac, 0xda, 0xb0, 0x36, 0x83, + 0x60, 0x2f, 0x68, 0xfa, 0x96, 0x99, 0x3d, 0xe8, 0xe8, 0x8b, 0x07, 0xed, 0x1d, 0x71, 0x14, 0xc6, + 0x83, 0x96, 0x4e, 0x2a, 0x40, 0x2a, 0x40, 0x2a, 0x40, 0x2a, 0x40, 0x2a, 0x40, 0x3c, 0x20, 0x8d, + 0x0a, 0xa0, 0xe7, 0x30, 0x73, 0x41, 0x43, 0xff, 0x44, 0x85, 0x72, 0x9c, 0x57, 0x4e, 0x5c, 0x32, + 0xb1, 0x85, 0xd8, 0xbf, 0x8c, 0xdc, 0xa6, 0x38, 0x60, 0x23, 0x11, 0xe0, 0x08, 0x06, 0x3a, 0x52, + 0x01, 0x8f, 0x78, 0xe0, 0x23, 0x1e, 0x00, 0xc9, 0x06, 0x42, 0x32, 0x00, 0x91, 0x10, 0x60, 0x94, + 0xab, 0x82, 0x98, 0x5c, 0xe9, 0x92, 0xc7, 0x3e, 0x1f, 0x87, 0x89, 0x2b, 0x09, 0x7f, 0xdc, 0x4a, + 0xaa, 0xec, 0x08, 0x92, 0x79, 0xae, 0x23, 0x47, 0xa2, 0x9c, 0x9c, 0xac, 0xa0, 0x78, 0x4b, 0xb3, + 0x27, 0x41, 0x94, 0xbe, 0x59, 0x17, 0x16, 0x15, 0x6f, 0x6a, 0xf7, 0xb6, 0x40, 0xd1, 0xbb, 0xf3, + 0x62, 0x92, 0x23, 0x71, 0xa2, 0xcb, 0xd4, 0xf6, 0xfc, 0xc1, 0xef, 0x07, 0x91, 0x38, 0x0c, 0x2b, + 0x9c, 0x5a, 0x3e, 0x78, 0x1b, 0x9f, 0xfd, 0x70, 0x32, 0x35, 0x82, 0xb5, 0x2d, 0xe1, 0x37, 0xf2, + 0x21, 0xf6, 0x07, 0x69, 0x30, 0x8a, 0xf6, 0x82, 0xb3, 0x20, 0x1b, 0x6f, 0xb4, 0x2a, 0xf6, 0x7e, + 0xae, 0x7e, 0x12, 0x6c, 0xdb, 0xfe, 0x57, 0xda, 0x36, 0x9a, 0x6d, 0xaf, 0x6e, 0xbc, 0xdd, 0xdc, + 0xde, 0xa4, 0x81, 0x93, 0xd0, 0x56, 0x4b, 0xea, 0xfe, 0x0b, 0xba, 0x7d, 0x02, 0xd0, 0x65, 0xba, + 0x25, 0x63, 0xb6, 0xe9, 0x77, 0x33, 0x0a, 0x1b, 0x02, 0x65, 0xc7, 0x9e, 0x85, 0x2a, 0xdf, 0xf5, + 0xc9, 0x70, 0x79, 0xf8, 0xcf, 0x53, 0x80, 0x33, 0x16, 0xd2, 0x0d, 0xb3, 0xe4, 0x7d, 0x25, 0x74, + 0xc5, 0x08, 0xa5, 0x02, 0x3c, 0x41, 0xd6, 0xa9, 0xc8, 0x3c, 0x41, 0xd6, 0x67, 0x86, 0x3c, 0x41, + 0x36, 0x7c, 0x03, 0x3c, 0x41, 0x26, 0xe6, 0x98, 0xab, 0x82, 0xdc, 0x13, 0x64, 0x71, 0xe7, 0x6c, + 0x02, 0xcf, 0xd7, 0x84, 0x9e, 0xab, 0x09, 0x4c, 0x67, 0x48, 0x3e, 0x47, 0x13, 0x9e, 0x63, 0xcf, + 0x73, 0xeb, 0x52, 0xe5, 0xb7, 0x20, 0x9b, 0x2e, 0xf0, 0x98, 0x4c, 0xf4, 0xf1, 0x98, 0x2d, 0x26, + 0xbb, 0xb1, 0xbe, 0xb3, 0xb1, 0xb3, 0xb5, 0xbd, 0xbe, 0xb3, 0x49, 0xdb, 0x25, 0x20, 0xb7, 0x4b, + 0x5a, 0xa6, 0x7f, 0xab, 0x20, 0x21, 0x7a, 0x0f, 0x16, 0xf8, 0x96, 0xa5, 0x25, 0x79, 0xed, 0xdb, + 0xea, 0x72, 0xf3, 0xff, 0xbc, 0x33, 0xfd, 0xfa, 0xee, 0x5f, 0x20, 0xae, 0x65, 0x92, 0x63, 0x8e, + 0x1c, 0x30, 0xf7, 0x28, 0x04, 0xa9, 0x2e, 0xd1, 0x4f, 0x80, 0xb8, 0x77, 0xb2, 0x14, 0xd6, 0xc3, + 0xbd, 0x93, 0x95, 0x30, 0x70, 0x21, 0x91, 0xbf, 0xda, 0x11, 0xdf, 0x81, 0x1e, 0xeb, 0x53, 0xd6, + 0xe2, 0xb7, 0x9b, 0xff, 0x3d, 0x3e, 0x3b, 0xd9, 0xbb, 0x7e, 0x1c, 0xdc, 0x2c, 0x2b, 0x50, 0x22, + 0x6e, 0x96, 0xa5, 0xc7, 0x7b, 0xd0, 0xe3, 0x71, 0xc9, 0x2c, 0xbc, 0xd1, 0x80, 0x0e, 0x70, 0x83, + 0x1e, 0xd8, 0xc6, 0x4d, 0x51, 0x8f, 0x14, 0x8c, 0x9b, 0xa2, 0x9e, 0x25, 0x22, 0x37, 0x45, 0x15, + 0x24, 0x28, 0x37, 0x45, 0x11, 0x88, 0xea, 0x7a, 0x85, 0xb0, 0x9b, 0xa2, 0x4e, 0x43, 0xff, 0x2c, + 0xc1, 0xdf, 0x0f, 0x35, 0x13, 0x13, 0x7b, 0x2b, 0xd4, 0x2a, 0xb7, 0x42, 0x59, 0x07, 0x08, 0x04, + 0x01, 0x03, 0x29, 0x00, 0x41, 0x1c, 0x50, 0x10, 0x07, 0x18, 0x64, 0x01, 0x07, 0x4c, 0x00, 0x01, + 0x0a, 0x24, 0xf2, 0x57, 0x0b, 0x5f, 0xee, 0x2d, 0xac, 0xaf, 0x57, 0x42, 0xff, 0x2e, 0x78, 0x9f, + 0xee, 0x15, 0xcf, 0x8e, 0x9f, 0x21, 0x25, 0xcf, 0x8e, 0xcb, 0x12, 0x56, 0xc6, 0xd9, 0x31, 0x09, + 0xbd, 0x28, 0x42, 0xcf, 0x93, 0x25, 0x93, 0x27, 0x4b, 0x78, 0xc5, 0x71, 0x40, 0xc7, 0x49, 0x2f, + 0x68, 0xaf, 0xf0, 0x76, 0x6a, 0xb5, 0x7d, 0x3a, 0x50, 0x07, 0x9a, 0xe5, 0x97, 0xae, 0x60, 0x78, + 0x22, 0xf3, 0x76, 0x0f, 0x60, 0xf3, 0x60, 0x07, 0xd8, 0x90, 0x07, 0xd7, 0x60, 0x07, 0xd6, 0x70, + 0xf9, 0x69, 0xc4, 0x7c, 0x34, 0x70, 0xfe, 0x19, 0x35, 0xdf, 0x0c, 0x9f, 0x5f, 0x86, 0xcf, 0x27, + 0x63, 0xe7, 0x8f, 0x89, 0x73, 0x6f, 0xbe, 0x2a, 0xb4, 0x03, 0x66, 0x27, 0x45, 0x4c, 0x50, 0xe7, + 0x6e, 0x34, 0x93, 0x0e, 0xb3, 0x8e, 0x6c, 0x95, 0x75, 0x64, 0x62, 0xc3, 0xb4, 0x80, 0x70, 0x8d, + 0x1e, 0xb6, 0xc5, 0x84, 0x6f, 0x31, 0x61, 0x5c, 0x46, 0x38, 0xc7, 0x0a, 0xeb, 0x60, 0xe1, 0x3d, + 0x7f, 0x85, 0xb0, 0xc7, 0xbe, 0xb9, 0xc7, 0x0b, 0x86, 0x2a, 0x4a, 0x83, 0xf4, 0x12, 0x73, 0x8f, + 0x7e, 0xce, 0x7d, 0x01, 0xc7, 0x8c, 0x38, 0xcd, 0xf9, 0xa3, 0xdb, 0xf5, 0x13, 0x85, 0x5f, 0x92, + 0xd7, 0x3c, 0x6c, 0x1e, 0x7a, 0x87, 0x9f, 0x76, 0x7b, 0xad, 0xcf, 0x5e, 0xef, 0xb7, 0x83, 0x06, + 0xaa, 0x7b, 0xce, 0x26, 0xcc, 0x24, 0xd0, 0xa3, 0xcf, 0x84, 0xac, 0xcb, 0xef, 0x76, 0x3e, 0xf5, + 0x1a, 0x5d, 0xef, 0x7d, 0xfd, 0xa0, 0xbe, 0xdb, 0x6c, 0x35, 0x7b, 0xbf, 0xcd, 0x5f, 0xff, 0x21, + 0xf2, 0xfb, 0x97, 0xa4, 0x07, 0x32, 0xf4, 0xe1, 0x47, 0xf4, 0xe2, 0xe6, 0x9f, 0x1c, 0xce, 0x15, + 0xa7, 0x4a, 0x4c, 0x55, 0xa2, 0xde, 0xfa, 0xd8, 0xe9, 0x36, 0x7b, 0x3f, 0xef, 0x73, 0xdd, 0xfb, + 0xf3, 0x3e, 0xb8, 0x03, 0xa5, 0x80, 0x2d, 0x49, 0x6e, 0x90, 0x95, 0xe1, 0x4c, 0xf9, 0xea, 0xab, + 0xea, 0x34, 0xf9, 0xe6, 0x9f, 0xcf, 0xa5, 0xbc, 0x6e, 0xa3, 0xfe, 0xfe, 0x67, 0xe2, 0x6a, 0x82, + 0xa8, 0x87, 0xb5, 0xa2, 0xd7, 0xf0, 0xf6, 0x1a, 0x1f, 0xea, 0x9f, 0x5a, 0x3d, 0x6f, 0xbf, 0xd1, + 0xeb, 0x36, 0xdf, 0x13, 0x59, 0x53, 0x29, 0x3e, 0xb5, 0xdf, 0x77, 0xda, 0x87, 0xbd, 0x6e, 0xbd, + 0xd9, 0x6e, 0xec, 0x79, 0xad, 0xc3, 0x03, 0x2a, 0x05, 0x95, 0xa2, 0xd5, 0x6c, 0xff, 0xe2, 0xed, + 0x35, 0x5a, 0x75, 0x92, 0x6f, 0x6a, 0xc3, 0x0d, 0x6d, 0xf0, 0x3e, 0xd7, 0xbb, 0xcd, 0x7a, 0xaf, + 0xd9, 0x69, 0x53, 0x2f, 0xa8, 0x17, 0xcd, 0x83, 0xcf, 0x5b, 0x5e, 0xbb, 0xd1, 0xfc, 0xf8, 0xf3, + 0x6e, 0xa7, 0xeb, 0xd5, 0xf7, 0xf6, 0xba, 0x8d, 0xc3, 0x43, 0x2a, 0x06, 0x15, 0xa3, 0xbe, 0xb7, + 0xdf, 0x6c, 0x7b, 0x1f, 0xbb, 0x9d, 0x4f, 0x44, 0x13, 0x54, 0x07, 0xaf, 0xbe, 0xf7, 0xdf, 0xde, + 0x61, 0x73, 0x8f, 0xaa, 0x40, 0x55, 0xd8, 0xaf, 0xff, 0x3a, 0x83, 0x13, 0xbb, 0xf5, 0xf6, 0xde, + 0xbf, 0x9a, 0x7b, 0xbd, 0x9f, 0xa9, 0x15, 0xd4, 0x8a, 0xe6, 0xc1, 0xe7, 0x0d, 0x02, 0x09, 0x2a, + 0xc6, 0xfd, 0x08, 0xb3, 0xd9, 0xee, 0x35, 0xba, 0x1f, 0xea, 0xef, 0x1b, 0xd4, 0x0c, 0x6a, 0xc6, + 0x2d, 0x4e, 0xda, 0xea, 0x50, 0x19, 0xa8, 0x0c, 0xbf, 0x5d, 0x83, 0x09, 0x2f, 0xcf, 0x65, 0xf6, + 0xa8, 0x18, 0x54, 0x0c, 0xaf, 0xf1, 0x6b, 0xaf, 0xd1, 0xde, 0x6b, 0xec, 0x91, 0x91, 0x52, 0x2f, + 0x96, 0x00, 0x27, 0x71, 0x05, 0x35, 0x63, 0xf9, 0x38, 0xac, 0xd7, 0x6c, 0x35, 0xff, 0xa7, 0xb1, + 0x47, 0x82, 0x4a, 0xad, 0xb8, 0x9d, 0xc1, 0x6a, 0xd5, 0xdb, 0xcc, 0x62, 0x51, 0x1d, 0xb2, 0x2c, + 0x56, 0xb3, 0x7d, 0x9d, 0xc9, 0xe2, 0x31, 0x29, 0xb5, 0xe2, 0x9a, 0x92, 0x1e, 0x74, 0x3b, 0xbd, + 0xc6, 0xfb, 0x5e, 0xb3, 0xd3, 0x9e, 0x15, 0x5f, 0x51, 0x2f, 0x18, 0x3c, 0x3e, 0xd7, 0x9b, 0xad, + 0xfa, 0x6e, 0xab, 0x41, 0x4c, 0x41, 0xb5, 0xb8, 0xe3, 0x2e, 0xea, 0xbd, 0x5e, 0xb7, 0xb9, 0xfb, + 0xa9, 0xd7, 0x20, 0xf9, 0xa0, 0x4a, 0x78, 0x9f, 0xda, 0xdd, 0xc6, 0x61, 0xa3, 0xfb, 0x99, 0xf4, + 0x83, 0x7a, 0x71, 0x53, 0x2f, 0xba, 0x8d, 0xc3, 0xe6, 0xde, 0xa7, 0x7a, 0x8b, 0x5a, 0x41, 0xad, + 0xb8, 0x7d, 0x96, 0x3e, 0xf3, 0x17, 0x04, 0x17, 0xd4, 0x8d, 0x7b, 0xc0, 0x85, 0x88, 0x64, 0x05, + 0x1b, 0x25, 0x6d, 0x33, 0x21, 0xa1, 0x3d, 0x53, 0x82, 0xba, 0x63, 0xf8, 0xf2, 0x8b, 0x47, 0xde, + 0x62, 0xba, 0x60, 0xf8, 0xf2, 0x4b, 0x09, 0x96, 0xe0, 0x69, 0x5c, 0xbe, 0xf5, 0xf2, 0xde, 0xba, + 0x84, 0xae, 0x16, 0xbe, 0xff, 0xa2, 0xdf, 0xbf, 0xb0, 0xee, 0x15, 0x2a, 0x40, 0xd1, 0x0a, 0x20, + 0xa2, 0x26, 0x88, 0xaf, 0xbd, 0xf8, 0xd7, 0x0e, 0xde, 0x8d, 0xc2, 0x57, 0x5e, 0xf4, 0x2b, 0x97, + 0xd4, 0x75, 0xc2, 0xb7, 0x5f, 0x42, 0xa0, 0xdf, 0x60, 0xa0, 0xaf, 0x3a, 0xd2, 0x13, 0x54, 0xed, + 0x49, 0x0d, 0x28, 0x85, 0xeb, 0x61, 0x77, 0x8b, 0xf0, 0xa5, 0x17, 0xfd, 0xd2, 0x85, 0x75, 0x85, + 0x50, 0x01, 0x8a, 0x56, 0x00, 0x59, 0xdd, 0x1f, 0x7c, 0xff, 0xa5, 0x00, 0x3f, 0xc6, 0xfd, 0x0a, + 0x6b, 0x80, 0xa4, 0x6e, 0x0e, 0xbe, 0xfd, 0x32, 0x32, 0x3d, 0xf0, 0x5d, 0x1b, 0x7c, 0xed, 0x85, + 0x67, 0x7b, 0x04, 0x75, 0x67, 0xf0, 0xed, 0x97, 0x42, 0xf5, 0xc4, 0x74, 0x61, 0xf0, 0xfd, 0x17, + 0xee, 0xf4, 0x25, 0x75, 0x5b, 0xf0, 0xf5, 0x97, 0x62, 0xfe, 0x12, 0xba, 0x2a, 0xf8, 0xea, 0x0b, + 0x07, 0xfb, 0xa2, 0xba, 0x27, 0xf8, 0xfe, 0x8b, 0x7e, 0xff, 0x92, 0xba, 0x24, 0xf8, 0xf6, 0x0b, + 0x47, 0xfd, 0xe2, 0xba, 0x21, 0xa8, 0x03, 0xa5, 0x04, 0x7f, 0x92, 0x7d, 0xab, 0x5f, 0xf9, 0x01, + 0x37, 0x9d, 0x54, 0x5e, 0x1b, 0xbe, 0xab, 0x15, 0x59, 0xe6, 0x7f, 0xbe, 0x0e, 0x89, 0x23, 0x5b, + 0xa8, 0x11, 0xbf, 0x79, 0xbd, 0xfa, 0xc7, 0xad, 0x0d, 0x2a, 0x02, 0x15, 0x21, 0x2b, 0x06, 0xa2, + 0x6b, 0xa0, 0x46, 0xdc, 0x74, 0x0d, 0x54, 0x03, 0xaa, 0xc1, 0x41, 0xb7, 0xf1, 0xa1, 0xf9, 0x2b, + 0x47, 0xbc, 0x51, 0x1b, 0x6e, 0x68, 0xc3, 0x87, 0x56, 0xfd, 0xe3, 0x21, 0xbb, 0xe8, 0x9f, 0xf7, + 0x61, 0x17, 0x7d, 0x75, 0xf8, 0xb8, 0x14, 0xe6, 0xc5, 0x37, 0x5f, 0x31, 0x86, 0xc5, 0x17, 0x5e, + 0x55, 0x26, 0xc5, 0x37, 0x5f, 0x29, 0xc6, 0xc4, 0xd7, 0x5d, 0x45, 0x66, 0xc4, 0xb7, 0x5e, 0x4d, + 0x06, 0x84, 0xc9, 0x7c, 0xf0, 0x18, 0x0f, 0xd6, 0x73, 0xc2, 0x91, 0x06, 0x43, 0x12, 0x10, 0xef, + 0xe5, 0xd4, 0xa3, 0x68, 0x94, 0xfa, 0x69, 0x30, 0x8a, 0x9c, 0x77, 0x40, 0x7e, 0xcb, 0x49, 0x06, + 0x5f, 0xd4, 0xb9, 0x3f, 0xf6, 0xd3, 0x2f, 0x53, 0x4f, 0x55, 0x1b, 0x8d, 0x55, 0x34, 0x18, 0x45, + 0xa7, 0xc1, 0x99, 0x1b, 0xa9, 0xf4, 0x8f, 0x51, 0xfc, 0xbb, 0x1b, 0x44, 0x49, 0xea, 0x47, 0x03, + 0x55, 0xbb, 0xfb, 0x17, 0xc9, 0xd2, 0xdf, 0xd4, 0xc6, 0xf1, 0x28, 0x1d, 0x0d, 0x46, 0x61, 0x92, + 0x7f, 0xab, 0x05, 0x49, 0x90, 0xd4, 0x42, 0x75, 0xa1, 0xc2, 0xf9, 0x6f, 0xb5, 0x30, 0x88, 0x7e, + 0x77, 0x93, 0xd4, 0x4f, 0x95, 0x3b, 0xf4, 0x53, 0xff, 0xc4, 0x4f, 0x54, 0x2d, 0x4c, 0xc6, 0xb5, + 0x34, 0xbc, 0x48, 0xa6, 0xbf, 0xd4, 0xe2, 0xd1, 0x24, 0x55, 0xb1, 0x3b, 0xf0, 0xc7, 0xfe, 0x49, + 0x10, 0x06, 0x69, 0xa0, 0x92, 0x5a, 0xfe, 0x87, 0xcb, 0x5a, 0x32, 0x39, 0xc9, 0xfe, 0xd7, 0xd9, + 0xef, 0xb5, 0xec, 0x27, 0x61, 0xb8, 0x51, 0xf3, 0x2a, 0x0f, 0xa0, 0xee, 0x4e, 0x7a, 0x39, 0x56, + 0x30, 0x4a, 0x9e, 0x07, 0xe1, 0x4c, 0x2a, 0x10, 0x67, 0xf0, 0x4b, 0x10, 0x0d, 0x9d, 0x77, 0x2b, + 0xab, 0x20, 0xe2, 0xbc, 0xcf, 0x0c, 0x1e, 0x48, 0xa0, 0x83, 0x58, 0x9d, 0x06, 0x5f, 0xb1, 0x1c, + 0xe5, 0x42, 0x8f, 0x46, 0x03, 0x77, 0xea, 0xd2, 0x80, 0x2a, 0x62, 0x9c, 0xc3, 0xd1, 0x24, 0x1e, + 0x28, 0xa8, 0xc7, 0x35, 0x53, 0x73, 0x75, 0xf9, 0xc7, 0x28, 0x9e, 0x6a, 0xba, 0x33, 0x9e, 0xbd, + 0x51, 0x2c, 0x2a, 0xe1, 0xfc, 0xec, 0x27, 0xf5, 0xf8, 0x6c, 0x72, 0xae, 0xa2, 0xd4, 0x79, 0xb7, + 0x92, 0xc6, 0x13, 0x05, 0x26, 0xe0, 0x0d, 0xe9, 0x72, 0xc5, 0x23, 0xc0, 0x83, 0x04, 0x78, 0x3d, + 0xa4, 0xa8, 0x77, 0xcb, 0x63, 0x85, 0xca, 0x3f, 0x8d, 0xd5, 0x29, 0x92, 0xc7, 0x9a, 0x07, 0xc0, + 0xb5, 0x6d, 0x20, 0x99, 0x0e, 0xe6, 0x18, 0xf8, 0xf5, 0xeb, 0x19, 0xa4, 0xac, 0x65, 0x88, 0x81, + 0xb8, 0x12, 0x40, 0x02, 0xc3, 0x36, 0x3e, 0x0d, 0x64, 0x20, 0x10, 0xd2, 0x69, 0x05, 0x49, 0x5a, + 0x4f, 0xd3, 0x18, 0xc2, 0xd5, 0x38, 0xfb, 0x41, 0xd4, 0x08, 0xd5, 0x34, 0x42, 0x25, 0xce, 0xbb, + 0x95, 0x68, 0x12, 0x86, 0x00, 0xfc, 0x63, 0xdf, 0xff, 0x8a, 0x27, 0x54, 0x27, 0x1e, 0xaa, 0x58, + 0x0d, 0x77, 0x2f, 0xe7, 0x22, 0x55, 0xda, 0x9e, 0xc0, 0x92, 0x21, 0xf2, 0x93, 0x20, 0x00, 0xb1, + 0xdd, 0x49, 0xd2, 0x78, 0x32, 0x48, 0xa3, 0x39, 0xe8, 0x68, 0xcf, 0x9e, 0x4a, 0x73, 0xfe, 0x50, + 0xbc, 0x83, 0xf9, 0xa3, 0xf0, 0x9a, 0x49, 0x90, 0x78, 0xad, 0xe9, 0x33, 0xf0, 0x5a, 0xc9, 0xd8, + 0xeb, 0x85, 0x17, 0xde, 0xfb, 0xfc, 0xb6, 0xbc, 0xc3, 0xd9, 0xed, 0xbc, 0xa8, 0x66, 0xac, 0x33, + 0x73, 0x65, 0x43, 0xde, 0x00, 0xc5, 0x0b, 0x08, 0xb6, 0x7e, 0x33, 0x76, 0xa2, 0x5f, 0x4b, 0x0d, + 0x68, 0xa8, 0x33, 0x89, 0x86, 0xea, 0x34, 0x88, 0xd4, 0xd0, 0x5d, 0x3c, 0x6c, 0x53, 0x4a, 0x9a, + 0x13, 0xb9, 0x65, 0x91, 0x0c, 0x59, 0xee, 0x82, 0xbe, 0x19, 0xba, 0xbc, 0xe9, 0x7c, 0x25, 0x42, + 0x7e, 0x12, 0x28, 0x1f, 0x89, 0x92, 0x7f, 0x84, 0xcb, 0x37, 0xc2, 0xe5, 0x17, 0xb1, 0xf2, 0x89, + 0xd5, 0x42, 0x3b, 0x7b, 0x81, 0x59, 0xce, 0xbe, 0x14, 0x3d, 0xcc, 0xdb, 0xeb, 0x43, 0x71, 0xcd, + 0xb4, 0xd9, 0x9a, 0x0d, 0x6f, 0x30, 0x61, 0x0e, 0x29, 0xdc, 0x01, 0x86, 0x3d, 0xb4, 0xf0, 0x07, + 0x1b, 0x06, 0x61, 0xc3, 0x21, 0x66, 0x58, 0x34, 0x9f, 0x86, 0x58, 0x01, 0x48, 0x11, 0x9a, 0x0e, + 0x97, 0x37, 0xd2, 0x5a, 0x7e, 0x0a, 0x58, 0xce, 0x32, 0x13, 0x0b, 0xab, 0x9e, 0x65, 0x8d, 0xf5, + 0x2c, 0xf0, 0x01, 0x14, 0x38, 0x90, 0xa2, 0x06, 0x54, 0xf8, 0xc0, 0x0a, 0x1f, 0x60, 0xb1, 0x03, + 0x2d, 0x46, 0xc0, 0x05, 0x09, 0xbc, 0x70, 0x01, 0x38, 0x17, 0x28, 0x54, 0xd1, 0x59, 0x96, 0xa2, + 0x07, 0xf3, 0x0a, 0xd7, 0x65, 0x36, 0x99, 0x7c, 0x60, 0x16, 0x87, 0x55, 0x6a, 0x0a, 0x1b, 0xa2, + 0x91, 0x43, 0xb5, 0x80, 0x90, 0x8d, 0x1e, 0xba, 0xc5, 0x84, 0x70, 0x31, 0xa1, 0x5c, 0x46, 0x48, + 0xc7, 0x0a, 0xed, 0x60, 0x21, 0x3e, 0x7f, 0x85, 0x70, 0xa5, 0xab, 0x4b, 0x1e, 0x6f, 0x12, 0x44, + 0xe9, 0x5b, 0x44, 0x7f, 0x37, 0x0f, 0xaf, 0x9b, 0x80, 0xa2, 0x75, 0xfd, 0xe8, 0x4c, 0xc1, 0x8e, + 0xc4, 0xc4, 0x6d, 0xdd, 0x75, 0xf6, 0x83, 0x08, 0x36, 0x80, 0x81, 0xe3, 0xba, 0x25, 0x31, 0xb3, + 0xc1, 0xac, 0x02, 0xe4, 0xfc, 0x10, 0xfb, 0x83, 0x34, 0x18, 0x45, 0x7b, 0xc1, 0x59, 0x90, 0x95, + 0x8d, 0xae, 0xb2, 0x1f, 0xff, 0x29, 0xa6, 0xe3, 0x7f, 0xa5, 0xe9, 0x14, 0x6c, 0x3a, 0xeb, 0x9b, + 0x9b, 0x34, 0x1e, 0x3b, 0x81, 0x20, 0xae, 0x54, 0x7d, 0x0e, 0x35, 0x40, 0x77, 0xbe, 0x58, 0x7d, + 0xd6, 0x4b, 0x90, 0x1d, 0xa8, 0xdf, 0x1a, 0xdc, 0xf3, 0x33, 0x19, 0xf6, 0x1c, 0x3d, 0x63, 0x32, + 0xec, 0xe9, 0xe6, 0xc0, 0x64, 0x58, 0xc1, 0x82, 0x32, 0x19, 0x26, 0x9d, 0xce, 0x30, 0x19, 0xf6, + 0xec, 0xf0, 0xca, 0x64, 0xd8, 0x63, 0x3f, 0x4c, 0x86, 0x55, 0x8a, 0xd1, 0x33, 0x19, 0x66, 0x6b, + 0xf4, 0xb8, 0x6d, 0x3a, 0x4c, 0x86, 0x15, 0x6e, 0x3a, 0x4c, 0x86, 0x59, 0x0b, 0x04, 0x71, 0xa5, + 0x62, 0x32, 0x0c, 0xde, 0xf9, 0x3a, 0x17, 0x73, 0x07, 0x01, 0x9a, 0x0d, 0x9b, 0x89, 0xc7, 0x74, + 0xd8, 0x8f, 0x88, 0xc5, 0x74, 0xd8, 0x33, 0x14, 0x8d, 0xe9, 0xb0, 0xa7, 0x9b, 0x03, 0xd3, 0x61, + 0x05, 0x0b, 0xca, 0x74, 0x98, 0x74, 0x42, 0x23, 0x20, 0x1d, 0x76, 0x12, 0x44, 0x7e, 0x7c, 0x09, + 0x9c, 0x0f, 0xdb, 0x21, 0x7c, 0x04, 0x96, 0x84, 0x03, 0xe2, 0xbf, 0x2d, 0x97, 0xc0, 0xe9, 0x48, + 0x4b, 0x73, 0x72, 0x96, 0xfe, 0x86, 0x43, 0xe3, 0xc1, 0x4c, 0x80, 0x43, 0xe3, 0x85, 0xb1, 0x35, + 0x36, 0xd9, 0xca, 0x66, 0x65, 0x6c, 0xb2, 0xb5, 0x95, 0x7d, 0xb1, 0xc9, 0x56, 0x0e, 0xe8, 0xe3, + 0xd0, 0xf8, 0xc7, 0x07, 0x40, 0x0e, 0x8d, 0x17, 0x83, 0x2b, 0x39, 0x34, 0x9e, 0x43, 0xe3, 0x97, + 0xa5, 0xe1, 0xd0, 0xf8, 0x1f, 0x15, 0x8a, 0x43, 0xe3, 0x71, 0x13, 0x24, 0x76, 0x26, 0x46, 0xac, + 0x19, 0x24, 0xff, 0x69, 0x71, 0x63, 0x9c, 0x28, 0x5f, 0x19, 0x57, 0xc1, 0x89, 0xf2, 0x05, 0xba, + 0x86, 0xca, 0xcc, 0x96, 0x7f, 0x61, 0xb1, 0x65, 0x2c, 0x40, 0xe8, 0x42, 0x97, 0xdc, 0x68, 0x72, + 0x7e, 0xa2, 0x62, 0xcd, 0x5e, 0xde, 0x2c, 0xfe, 0x84, 0xc0, 0x9b, 0x10, 0xf8, 0xd2, 0x2c, 0x9e, + 0xd4, 0xad, 0xfa, 0x86, 0x83, 0x81, 0xc0, 0x20, 0x60, 0x00, 0xfc, 0x15, 0x02, 0xf6, 0xf4, 0x86, + 0x2a, 0x7d, 0x01, 0x43, 0xcf, 0x95, 0x34, 0xd9, 0xa5, 0x29, 0x7b, 0x94, 0x62, 0x87, 0x7a, 0x94, + 0xb8, 0x7c, 0x95, 0xd2, 0xa0, 0x4e, 0x9a, 0x67, 0x32, 0x1b, 0x99, 0xb9, 0xac, 0x79, 0xa6, 0xf2, + 0xf5, 0x71, 0xee, 0xba, 0xa6, 0x0b, 0x1a, 0x38, 0xae, 0x35, 0x78, 0x1c, 0x6b, 0xea, 0xb8, 0xd5, + 0xf8, 0x71, 0xaa, 0xf1, 0xe3, 0x52, 0xb3, 0xc7, 0xa1, 0x76, 0x85, 0x70, 0xdd, 0x33, 0x81, 0xcd, + 0x54, 0x05, 0x99, 0xac, 0xfe, 0x31, 0x54, 0xe5, 0x63, 0xac, 0x9a, 0xc7, 0x64, 0xd5, 0x0e, 0x40, + 0x75, 0x8e, 0xe9, 0x2a, 0x1c, 0x98, 0x6a, 0x1b, 0x98, 0xaa, 0x1a, 0x8c, 0xea, 0x19, 0xbb, 0x93, + 0x92, 0xc6, 0xaa, 0x5e, 0x72, 0x8b, 0x0f, 0x86, 0x2a, 0x4a, 0x83, 0xf4, 0xd2, 0x4c, 0x85, 0x4b, + 0x8e, 0xed, 0x0d, 0xf4, 0x32, 0x3b, 0xcd, 0xf9, 0xad, 0xef, 0xfa, 0x89, 0x32, 0xbf, 0xd2, 0xb4, + 0x79, 0xd8, 0x3c, 0xf4, 0x7a, 0xad, 0xcf, 0x5e, 0xef, 0xb7, 0x83, 0x86, 0x29, 0xdf, 0x93, 0x35, + 0x97, 0x27, 0x46, 0xa7, 0x83, 0x80, 0x6c, 0xe2, 0x6b, 0xfc, 0xda, 0x6b, 0xb4, 0xf7, 0x1a, 0x7b, + 0x5e, 0xf3, 0xd0, 0xeb, 0x36, 0xea, 0xef, 0x7f, 0xae, 0xef, 0x36, 0x5b, 0xcd, 0xde, 0x6f, 0x06, + 0x97, 0x44, 0xfe, 0x54, 0xf5, 0x77, 0xd2, 0x3a, 0x3c, 0xf0, 0x76, 0x3f, 0x7d, 0xf8, 0xd0, 0xe8, + 0x7a, 0x87, 0xcd, 0xff, 0x69, 0xf0, 0x55, 0x98, 0x7b, 0x15, 0xfb, 0xbd, 0xa9, 0x61, 0xb4, 0x1b, + 0xcd, 0x8f, 0x3f, 0xef, 0x76, 0xba, 0x5e, 0xbd, 0xd7, 0xeb, 0x36, 0x77, 0x3f, 0xf5, 0xf8, 0x4e, + 0x0c, 0xbe, 0x93, 0xfa, 0xa7, 0xde, 0xcf, 0x8d, 0x76, 0xaf, 0xf9, 0xbe, 0xde, 0x6b, 0x76, 0xda, + 0x7c, 0x13, 0x86, 0xad, 0x83, 0x6f, 0x00, 0x22, 0x7c, 0x1f, 0x7c, 0xde, 0x60, 0x00, 0x07, 0x79, + 0x2b, 0x7b, 0xbf, 0xb5, 0xeb, 0xfb, 0xcd, 0xf7, 0x5e, 0xbb, 0xbe, 0xcf, 0x48, 0x61, 0x92, 0x6b, + 0x1c, 0x7c, 0xde, 0xf2, 0x9a, 0xed, 0x5e, 0xa3, 0xfb, 0xa1, 0xfe, 0xbe, 0xe1, 0xd5, 0xf7, 0xf6, + 0xba, 0x8d, 0xc3, 0xc3, 0xc6, 0x21, 0xdf, 0x89, 0xe1, 0x77, 0x72, 0xd8, 0x6d, 0x7d, 0xe4, 0x4b, + 0x30, 0xf7, 0x12, 0x0e, 0x3e, 0x75, 0x3f, 0x36, 0xbc, 0x4e, 0x93, 0xef, 0xc0, 0xa8, 0x21, 0x6c, + 0xcc, 0x9c, 0x53, 0xbb, 0xde, 0x62, 0xe8, 0x06, 0x82, 0xb4, 0x84, 0x52, 0x60, 0xe1, 0xa2, 0xd7, + 0xf0, 0xba, 0x9d, 0x4f, 0xbd, 0x46, 0xd7, 0x6b, 0xee, 0xf1, 0x65, 0x18, 0x76, 0x59, 0x53, 0xca, + 0x41, 0x97, 0x85, 0xf4, 0x56, 0x0e, 0x9b, 0x87, 0x5e, 0xbd, 0xd5, 0xac, 0x1f, 0xd2, 0x3c, 0xcc, + 0x9b, 0x07, 0x7d, 0x15, 0x8a, 0x55, 0x30, 0x6d, 0x8b, 0xf5, 0x42, 0xda, 0x87, 0xbd, 0x7a, 0xfb, + 0x7d, 0x83, 0x76, 0x61, 0x16, 0xe0, 0x7e, 0x6a, 0xf5, 0x9a, 0x5e, 0xaf, 0x73, 0xd0, 0x69, 0x75, + 0x3e, 0x32, 0x6e, 0x1b, 0xa7, 0x1a, 0x5b, 0xc4, 0x51, 0x20, 0xef, 0xa3, 0xdd, 0x3a, 0xa0, 0x6b, + 0xc2, 0xc8, 0x88, 0x30, 0x5d, 0x0b, 0x73, 0xd8, 0xda, 0x6d, 0xd4, 0xf9, 0x26, 0x20, 0xac, 0xe3, + 0x06, 0xa2, 0xe5, 0x8b, 0x30, 0xf8, 0x22, 0xe6, 0xf4, 0xee, 0x7d, 0xfd, 0x80, 0x41, 0x1b, 0x21, + 0x66, 0x10, 0x41, 0x41, 0x05, 0x70, 0xc3, 0x67, 0x7b, 0x46, 0xae, 0xdc, 0xb7, 0xbd, 0x5e, 0x9c, + 0xed, 0x53, 0x4f, 0x32, 0x0c, 0x76, 0x40, 0x5f, 0x77, 0x40, 0x6b, 0x1c, 0xc0, 0x6d, 0x47, 0xcf, + 0xb3, 0xd6, 0x56, 0x38, 0x13, 0x2d, 0x70, 0x9a, 0x5b, 0xdf, 0xb4, 0xb7, 0xbc, 0xb1, 0xe3, 0x59, + 0xcf, 0x75, 0xd9, 0xf1, 0xcc, 0x8e, 0xe7, 0xc2, 0x1e, 0xa5, 0xf6, 0x56, 0x35, 0x83, 0x03, 0x98, + 0x4d, 0x0c, 0x58, 0x36, 0x39, 0x40, 0x59, 0x03, 0x2e, 0x78, 0x21, 0xd8, 0x06, 0x34, 0x0e, 0x30, + 0xd6, 0x3b, 0x20, 0xce, 0xc8, 0x40, 0x38, 0x23, 0x03, 0xe0, 0xf4, 0x0e, 0x7c, 0x2b, 0x5b, 0x1f, + 0x35, 0xd3, 0x27, 0x44, 0xda, 0xe4, 0x68, 0x19, 0xae, 0xf4, 0xc4, 0x89, 0x6c, 0xe5, 0x7a, 0xed, + 0xf2, 0x7c, 0x69, 0x39, 0x3f, 0xb9, 0x24, 0x6b, 0xd0, 0x65, 0x05, 0x68, 0xda, 0x5f, 0x8e, 0x72, + 0x15, 0xff, 0xea, 0x4b, 0x78, 0xed, 0xce, 0xf5, 0x6c, 0xde, 0xec, 0x49, 0x94, 0xf5, 0xda, 0x73, + 0xe8, 0x79, 0xe7, 0x7a, 0x25, 0x29, 0x72, 0xb9, 0x03, 0xce, 0x4a, 0xa7, 0xf7, 0x3a, 0xe8, 0xbc, + 0x46, 0xfa, 0xae, 0x8b, 0xae, 0x6b, 0xa7, 0xe7, 0xda, 0xe9, 0xb8, 0x5e, 0xfa, 0x2d, 0x2b, 0x78, + 0x95, 0x3d, 0x40, 0xec, 0xb6, 0xeb, 0x2a, 0x5f, 0x99, 0xef, 0xf5, 0x98, 0x65, 0x2b, 0xb4, 0x9e, + 0xc9, 0x90, 0xda, 0xf2, 0xa3, 0x3a, 0xf3, 0xa2, 0x06, 0xf2, 0xa1, 0xba, 0xf3, 0xa0, 0xc6, 0xf2, + 0x9f, 0xc6, 0xf2, 0x9e, 0x66, 0xf2, 0x9d, 0xb2, 0x73, 0x3b, 0xba, 0x26, 0x39, 0x72, 0x54, 0xaf, + 0x5c, 0xc7, 0x6c, 0xc2, 0x41, 0x1b, 0x74, 0xd4, 0xa6, 0x1c, 0xb6, 0x71, 0xc7, 0x6d, 0xdc, 0x81, + 0x9b, 0x75, 0xe4, 0x7a, 0x1c, 0xba, 0x26, 0xc7, 0xae, 0xdd, 0xc1, 0xe7, 0x17, 0x0c, 0x55, 0x74, + 0x96, 0xe5, 0x8a, 0x0c, 0x0d, 0xeb, 0x9d, 0x5f, 0x9f, 0xe3, 0x7a, 0x6d, 0x0b, 0x05, 0x00, 0x21, + 0xc1, 0x74, 0x68, 0x80, 0x09, 0x11, 0x30, 0xa1, 0x02, 0x23, 0x64, 0xe8, 0x0d, 0x1d, 0x9a, 0x43, + 0x48, 0xfe, 0x88, 0xcd, 0x8f, 0xeb, 0x9d, 0x04, 0x51, 0xfa, 0xd6, 0xe0, 0xa0, 0x5e, 0x13, 0x73, + 0x7a, 0xbb, 0x7e, 0x74, 0xa6, 0x8c, 0xcd, 0xa4, 0x35, 0xb8, 0x3c, 0x71, 0x3f, 0x30, 0xbf, 0xe0, + 0xd5, 0x50, 0x5c, 0x5f, 0x12, 0x23, 0x9b, 0x4c, 0x0c, 0x20, 0xc7, 0x87, 0xd8, 0x1f, 0xa4, 0xc1, + 0x28, 0xda, 0x0b, 0xce, 0x82, 0xac, 0x7e, 0x61, 0xb5, 0x8a, 0x7d, 0x15, 0xce, 0xbe, 0xff, 0x95, + 0xaa, 0x79, 0x47, 0x35, 0xd7, 0x37, 0x37, 0xa9, 0x9c, 0x66, 0x80, 0x80, 0xb9, 0xab, 0xf6, 0x6d, + 0xed, 0x37, 0xf9, 0x89, 0xbb, 0x6d, 0x48, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, + 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, 0x49, 0x96, + 0x49, 0x96, 0x8d, 0x91, 0xe5, 0x8b, 0xb9, 0x01, 0x19, 0x62, 0xcb, 0xb3, 0xcb, 0x93, 0x2e, 0x93, + 0x2e, 0x93, 0x2e, 0x93, 0x2e, 0x93, 0x2e, 0x5b, 0x44, 0x97, 0x4f, 0x82, 0xc8, 0x8f, 0x2f, 0x0d, + 0xf2, 0xe5, 0x1d, 0xce, 0x6e, 0xc2, 0x57, 0x58, 0xce, 0x6e, 0x1a, 0xd7, 0x6e, 0xb7, 0x05, 0xde, + 0xfe, 0x23, 0xe7, 0x39, 0x3d, 0xf6, 0xc5, 0x72, 0x9e, 0x93, 0x70, 0xdc, 0xca, 0xb2, 0xf8, 0x6a, + 0xe0, 0x52, 0x96, 0xc5, 0x5b, 0x14, 0xc6, 0x39, 0xcf, 0xa9, 0x6c, 0xa7, 0xc8, 0x79, 0x4e, 0xa0, + 0x36, 0xc0, 0x79, 0x4e, 0xc5, 0x5e, 0x94, 0xf3, 0x9c, 0x64, 0x51, 0x2a, 0x29, 0x54, 0x0a, 0x77, + 0xc6, 0xd3, 0xa7, 0x85, 0x98, 0x1c, 0xf6, 0xa4, 0xc7, 0x54, 0xaa, 0x38, 0xec, 0xe9, 0xce, 0xf0, + 0x21, 0x29, 0x63, 0x9f, 0x5e, 0x00, 0xab, 0xd3, 0x22, 0xf2, 0x87, 0xc9, 0xd8, 0x0d, 0x86, 0x05, + 0xfb, 0x97, 0x72, 0x63, 0xbd, 0x96, 0xd8, 0xae, 0x25, 0x96, 0x97, 0x1b, 0xbb, 0x8b, 0xd6, 0x98, + 0x92, 0x1d, 0x0f, 0x90, 0xc3, 0x29, 0x21, 0xdc, 0x3e, 0x2d, 0xbc, 0x16, 0xeb, 0xea, 0x8a, 0x73, + 0x48, 0xc5, 0xfc, 0xa4, 0x82, 0x14, 0xb4, 0x2c, 0xc5, 0x04, 0x51, 0xc8, 0x62, 0x74, 0xe0, 0xf9, + 0x6f, 0xac, 0x80, 0xb7, 0xe5, 0xc4, 0xa3, 0x49, 0xaa, 0xdc, 0x71, 0xac, 0x4e, 0x55, 0xac, 0xa2, + 0x02, 0x33, 0x87, 0x79, 0x4a, 0x65, 0xe9, 0x0a, 0x05, 0xe9, 0x58, 0xb1, 0xf3, 0x5c, 0x0a, 0x4f, + 0x4c, 0x97, 0x91, 0x78, 0x2e, 0x31, 0xb1, 0x5c, 0x56, 0xe2, 0xb8, 0xf4, 0xc4, 0x70, 0xe9, 0x89, + 0xdf, 0x72, 0x13, 0xbb, 0x58, 0x7e, 0xbb, 0xe8, 0x79, 0x24, 0xce, 0x60, 0x61, 0x55, 0x05, 0x6b, + 0xd5, 0xc2, 0x10, 0xe6, 0x3f, 0xbf, 0x68, 0x24, 0x5e, 0xca, 0xa8, 0xa8, 0xd2, 0xce, 0xbe, 0xca, + 0x3c, 0xe3, 0xd2, 0x70, 0x96, 0x55, 0xf6, 0x99, 0x95, 0xb6, 0xb3, 0x29, 0x6d, 0x67, 0x50, 0x7a, + 0xce, 0x9a, 0xb0, 0xd9, 0x72, 0x59, 0xa3, 0x93, 0x1c, 0xf5, 0x35, 0x55, 0x71, 0xe4, 0x87, 0x6e, + 0x69, 0xd0, 0xe8, 0x41, 0x1b, 0x7b, 0xf8, 0xd2, 0xe5, 0x4e, 0x77, 0x5e, 0xe5, 0x74, 0x67, 0x93, + 0x0e, 0x50, 0x97, 0x23, 0xd4, 0xee, 0x10, 0xb5, 0x3b, 0x46, 0xbd, 0x0e, 0xb2, 0xbc, 0x44, 0xe5, + 0x4a, 0x89, 0xd9, 0xea, 0xd2, 0x0f, 0xd7, 0xb5, 0xf5, 0x38, 0x6a, 0xe8, 0x65, 0xd4, 0xd4, 0xb3, + 0xa8, 0xe7, 0xf8, 0x55, 0xe3, 0x74, 0x63, 0xbd, 0x45, 0x65, 0x8b, 0xc6, 0x2d, 0x5d, 0xb3, 0x5d, + 0x0d, 0xb4, 0x67, 0x5d, 0xe9, 0x39, 0x2c, 0xd7, 0xae, 0x22, 0x6f, 0x34, 0xab, 0xc8, 0xaa, 0xc5, + 0x2a, 0x22, 0xf4, 0xb0, 0xb7, 0x5f, 0xe1, 0xa5, 0x31, 0x41, 0x64, 0x8c, 0x6c, 0x3c, 0x7c, 0x69, + 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, + 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0xcd, 0x64, 0x83, 0x85, 0x67, 0x7a, 0xeb, 0x7c, 0xee, 0xb2, + 0xa0, 0xda, 0xfc, 0x68, 0x19, 0xb5, 0xde, 0xab, 0xc0, 0xd2, 0x8f, 0x72, 0xb6, 0x3f, 0x95, 0xba, + 0xe5, 0xa9, 0xf4, 0x23, 0xfa, 0x75, 0x1e, 0xd1, 0x6b, 0x24, 0x8b, 0x3c, 0xa2, 0xb7, 0x31, 0x4a, + 0xf0, 0x88, 0x9e, 0x59, 0x33, 0x66, 0xcd, 0x98, 0x35, 0x63, 0xd6, 0x8c, 0x59, 0x33, 0x66, 0xcd, + 0x98, 0x35, 0x63, 0xd6, 0x8c, 0x59, 0x33, 0x66, 0xcd, 0x98, 0x35, 0x2b, 0x31, 0x6b, 0xc6, 0x23, + 0x7a, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, + 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x92, 0x0d, 0x1e, 0xd1, 0x17, 0xad, 0xd0, 0x08, 0x47, 0xf4, 0x25, + 0x8c, 0xb3, 0xe6, 0x44, 0x16, 0x71, 0x6a, 0xe0, 0x14, 0x5a, 0x0a, 0xf1, 0xd8, 0x99, 0x40, 0xdd, + 0xa9, 0x34, 0x07, 0xd7, 0xc2, 0x58, 0x34, 0x1b, 0xa6, 0xd8, 0xba, 0x90, 0x52, 0xea, 0x41, 0x4a, + 0x9b, 0x02, 0xb3, 0xce, 0x29, 0x30, 0x92, 0x32, 0x0c, 0x9c, 0x02, 0x83, 0x3c, 0x05, 0xc6, 0x9f, + 0xa4, 0x5f, 0x54, 0x94, 0x06, 0x83, 0x2c, 0x00, 0xb9, 0x83, 0x2f, 0x6a, 0xf0, 0x7b, 0x79, 0xf5, + 0x66, 0xf7, 0x5e, 0xad, 0xe8, 0xd2, 0x16, 0x75, 0xea, 0x4f, 0xc2, 0x4c, 0x19, 0xa6, 0xba, 0x56, + 0x52, 0x75, 0xdb, 0x2a, 0x07, 0xd0, 0xb0, 0xba, 0x0d, 0xc9, 0x0b, 0xea, 0xf1, 0x86, 0x32, 0x08, + 0x56, 0x69, 0x79, 0xd3, 0xeb, 0xa5, 0x57, 0xa3, 0x51, 0xa8, 0xfc, 0xa8, 0x0c, 0x8d, 0x5f, 0xc0, + 0xa6, 0xb5, 0x0a, 0x94, 0x37, 0xab, 0xc8, 0x3f, 0x09, 0xd5, 0xb0, 0xbc, 0x80, 0xb3, 0xb8, 0x40, + 0x79, 0x31, 0xe6, 0xd4, 0x0f, 0x13, 0x06, 0x19, 0x06, 0x19, 0x06, 0x19, 0x06, 0x19, 0x06, 0x19, + 0xc4, 0x20, 0x93, 0xa5, 0xa6, 0xdc, 0x68, 0x72, 0x7e, 0xa2, 0xe2, 0xf2, 0x22, 0xcd, 0xad, 0xab, + 0x30, 0x1c, 0x30, 0x1c, 0x30, 0x1c, 0x30, 0x1c, 0x48, 0xf1, 0x30, 0x2b, 0xe5, 0x96, 0x68, 0x94, + 0x5c, 0x9a, 0x51, 0x62, 0x7d, 0x8c, 0x8e, 0x52, 0x0c, 0x4d, 0x25, 0x18, 0xba, 0x4a, 0x2f, 0x74, + 0x9e, 0xa7, 0x97, 0x58, 0x6a, 0xa1, 0xa5, 0xc4, 0x42, 0xf7, 0xab, 0x5f, 0xb7, 0xe8, 0xd5, 0x0b, + 0x29, 0x45, 0xe8, 0x57, 0x00, 0x61, 0x9f, 0xab, 0x34, 0x0e, 0x06, 0x6e, 0x92, 0x5e, 0x86, 0x25, + 0x36, 0xab, 0xdf, 0xba, 0x0a, 0x11, 0x36, 0x11, 0x36, 0x11, 0x36, 0x11, 0xb6, 0x14, 0x0f, 0x73, + 0x2b, 0xeb, 0xb2, 0x51, 0xc2, 0xcf, 0x6e, 0x44, 0x93, 0xf3, 0xe9, 0xd3, 0xb9, 0x62, 0xcd, 0xd5, + 0x8f, 0x98, 0x93, 0x3d, 0x35, 0x57, 0x05, 0x56, 0xda, 0x81, 0xd4, 0x36, 0x5d, 0x26, 0xa9, 0x3a, + 0x77, 0x67, 0x74, 0x77, 0x30, 0x9a, 0x44, 0xa9, 0x8a, 0x93, 0x12, 0x6a, 0x9d, 0xee, 0xbd, 0x0c, + 0x37, 0x60, 0x01, 0xe2, 0x06, 0xd6, 0x3e, 0x99, 0xc1, 0x05, 0x96, 0xd7, 0x3e, 0x71, 0xb8, 0xd6, + 0xb2, 0x83, 0xe1, 0x70, 0x2d, 0x12, 0x15, 0x12, 0x15, 0x2c, 0x47, 0x95, 0xff, 0x60, 0x7f, 0x92, + 0x7e, 0x71, 0x4f, 0xfd, 0x20, 0x4c, 0xca, 0x6f, 0x70, 0xbf, 0x71, 0x2d, 0x76, 0xb4, 0xeb, 0x76, + 0x6d, 0x1a, 0x5d, 0x9c, 0x2e, 0x57, 0xa7, 0xdd, 0xe5, 0x69, 0x77, 0x7d, 0x7a, 0x5d, 0x60, 0x39, + 0xae, 0xb0, 0x24, 0x97, 0x58, 0x7e, 0x0e, 0x67, 0xc9, 0x62, 0xe6, 0x8c, 0xee, 0xcd, 0xba, 0x86, + 0xae, 0xf6, 0x6d, 0x76, 0xb5, 0x7f, 0xff, 0x46, 0xaa, 0xd0, 0xd5, 0xbe, 0xca, 0xae, 0xf6, 0x67, + 0xa9, 0x88, 0x81, 0xae, 0x76, 0xdd, 0x2a, 0xb2, 0xb1, 0xbe, 0xb3, 0xb1, 0xb3, 0xb5, 0xbd, 0xbe, + 0xb3, 0xc9, 0xf6, 0x76, 0xb4, 0x9f, 0x5e, 0xe5, 0x59, 0x5a, 0x19, 0xde, 0x4f, 0x2f, 0xc7, 0x4a, + 0x2b, 0xc1, 0xb8, 0x71, 0x41, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, + 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xb2, 0x0c, 0xcb, 0x58, 0xc6, 0x60, 0x14, + 0xc7, 0x93, 0x71, 0xaa, 0x86, 0x6e, 0x98, 0x8c, 0x35, 0x90, 0x8c, 0x3b, 0xd7, 0x23, 0xc7, 0x20, + 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, + 0xc7, 0x20, 0xc7, 0xb0, 0x8c, 0x63, 0x0c, 0xfd, 0xd4, 0x3f, 0xf1, 0x13, 0xe5, 0x8e, 0x2e, 0x54, + 0x1c, 0x8e, 0xfc, 0xa1, 0x06, 0x9e, 0x71, 0xcf, 0x35, 0xc9, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, + 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0xc8, 0x35, 0x2c, + 0xe3, 0x1a, 0xea, 0xeb, 0x40, 0xa9, 0xa1, 0x7b, 0xee, 0x7f, 0x75, 0x13, 0xf5, 0x6f, 0x37, 0x9a, + 0x9c, 0x27, 0x3a, 0x16, 0x9d, 0x2f, 0x5f, 0x94, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, + 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0x83, 0x6c, 0xc3, 0x32, 0xb6, + 0x11, 0x0c, 0xdd, 0x50, 0x45, 0xee, 0x79, 0x90, 0x9c, 0xfb, 0xe9, 0xe0, 0x8b, 0x86, 0x2d, 0xe7, + 0x77, 0x2e, 0x48, 0x96, 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, + 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, 0x41, 0x96, 0x61, 0x19, 0xcb, 0x08, 0x93, 0xb1, 0xab, 0xe2, + 0x78, 0x14, 0x6b, 0x38, 0xca, 0xb8, 0x71, 0x2d, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, + 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0x72, 0x0b, 0xcb, 0xb8, + 0xc5, 0xb9, 0x1f, 0x4d, 0xfc, 0xd0, 0xf5, 0x87, 0xc3, 0x58, 0x25, 0x89, 0x3b, 0x8c, 0x47, 0x63, + 0xf7, 0x34, 0x1e, 0x9d, 0xbb, 0x7e, 0xac, 0x7c, 0x0d, 0x7c, 0xe3, 0x3b, 0xd7, 0x27, 0x07, 0x21, + 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, 0x07, 0x21, + 0x07, 0x21, 0x07, 0xb1, 0x8e, 0x83, 0x7c, 0xcd, 0xe0, 0x7e, 0xce, 0x02, 0x16, 0xe5, 0x4d, 0x4a, + 0x0b, 0x01, 0x79, 0xf8, 0xe2, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, + 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x64, 0x1f, 0x96, 0xb1, 0x8f, 0xd1, 0x1f, + 0x91, 0x1b, 0x26, 0x63, 0x77, 0x3c, 0x89, 0xcf, 0x74, 0x10, 0x8e, 0x3b, 0xd7, 0x23, 0xc7, 0x20, + 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, 0xc7, 0x20, + 0xc7, 0x20, 0xc7, 0xb0, 0x8c, 0x63, 0x8c, 0xfd, 0x38, 0x75, 0x07, 0x5f, 0xa6, 0xd1, 0x46, 0x03, + 0xc3, 0xb8, 0x75, 0x35, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, + 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xf2, 0x0b, 0xcb, 0xf8, 0xc5, 0x7c, 0xea, 0xac, + 0x9b, 0xfc, 0x1e, 0xe8, 0x58, 0xe2, 0x77, 0xfb, 0x72, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, + 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0x64, 0x18, 0xb6, + 0x31, 0x8c, 0xf1, 0xa9, 0x1b, 0x4f, 0x22, 0x1d, 0xe4, 0x62, 0x71, 0x25, 0xf2, 0x0a, 0xf2, 0x0a, + 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, 0xf2, 0x0a, + 0xf2, 0x0a, 0x93, 0xbc, 0xe2, 0x05, 0xb0, 0x65, 0x3b, 0xf5, 0x28, 0x1a, 0xa5, 0xfe, 0x54, 0xe5, + 0x4a, 0x31, 0x66, 0x27, 0x19, 0x7c, 0x51, 0xe7, 0xfe, 0xd8, 0x4f, 0xbf, 0x4c, 0xe3, 0x7c, 0x6d, + 0x34, 0x56, 0xd1, 0x20, 0xc3, 0xfa, 0x6e, 0xa4, 0xd2, 0x3f, 0x46, 0xf1, 0xef, 0x6e, 0x10, 0x25, + 0xa9, 0x1f, 0x0d, 0x54, 0xed, 0xee, 0x5f, 0x24, 0x4b, 0x7f, 0x53, 0x1b, 0xc7, 0xa3, 0x74, 0x34, + 0x18, 0x85, 0x49, 0xfe, 0xad, 0x36, 0x05, 0x6c, 0xb5, 0x50, 0x5d, 0xa8, 0x70, 0xfe, 0x5b, 0x2d, + 0xb9, 0x4c, 0x52, 0x75, 0xee, 0x66, 0x7f, 0x70, 0xe7, 0xc8, 0x22, 0xa9, 0x25, 0xa9, 0x9f, 0xaa, + 0x62, 0x91, 0x5d, 0x71, 0x6f, 0xb6, 0x98, 0x9f, 0x54, 0x90, 0x6e, 0x94, 0xa5, 0x13, 0x30, 0xba, + 0x50, 0x20, 0xc8, 0x74, 0x92, 0x34, 0x9e, 0x0c, 0xd2, 0x68, 0x8e, 0x63, 0xdb, 0x33, 0x21, 0x9b, + 0x73, 0x19, 0xbd, 0x83, 0xb9, 0x64, 0x5e, 0x33, 0x09, 0x12, 0xaf, 0x35, 0x95, 0xc2, 0x3b, 0xcc, + 0x44, 0xca, 0xbe, 0xbf, 0x5f, 0x08, 0xf4, 0x02, 0x43, 0x89, 0x0a, 0x50, 0x20, 0x27, 0x8d, 0xfd, + 0xd3, 0xd3, 0x60, 0xe0, 0xaa, 0xe8, 0x2c, 0x88, 0x94, 0x8a, 0x83, 0xe8, 0xac, 0x30, 0x2d, 0xca, + 0xf9, 0xc2, 0x7d, 0x17, 0x29, 0x48, 0xf9, 0xe7, 0x48, 0x63, 0xad, 0xa0, 0x1f, 0x57, 0x74, 0x62, + 0xa3, 0x8c, 0x44, 0x46, 0x89, 0x89, 0x8b, 0xb2, 0x12, 0x15, 0xa5, 0x27, 0x26, 0x4a, 0x4f, 0x44, + 0x94, 0x9b, 0x78, 0xc0, 0x0a, 0x28, 0x7b, 0x41, 0x5c, 0xac, 0xc2, 0x0e, 0x16, 0x56, 0x55, 0xb0, + 0x56, 0x5d, 0xe7, 0x23, 0xb2, 0x9f, 0x5f, 0xf0, 0x1b, 0x2f, 0xd6, 0xb5, 0x94, 0xe6, 0x62, 0xca, + 0x74, 0x35, 0x1a, 0x5c, 0x4e, 0xd9, 0xae, 0x47, 0x9b, 0x0b, 0xd2, 0xe6, 0x8a, 0xf4, 0xb8, 0x24, + 0x19, 0x7c, 0xa8, 0x68, 0x57, 0x95, 0xff, 0x60, 0x15, 0xf9, 0x27, 0xa1, 0x1a, 0x6a, 0x58, 0xab, + 0x3e, 0xbf, 0x50, 0x49, 0x3a, 0xb2, 0xa7, 0x4e, 0xfd, 0x49, 0x98, 0xa9, 0xc8, 0xa9, 0x1f, 0x26, + 0x8a, 0x07, 0x4e, 0xda, 0x9d, 0xa7, 0x46, 0x27, 0xaa, 0xcb, 0x99, 0x6a, 0x77, 0xaa, 0xda, 0x9d, + 0xab, 0x5e, 0x27, 0x5b, 0x6e, 0xfa, 0x4d, 0xfe, 0x81, 0xd3, 0xc9, 0x68, 0x14, 0x2a, 0x3f, 0xd2, + 0x70, 0xdc, 0xb4, 0xb6, 0x56, 0xe5, 0x4d, 0xbf, 0xe3, 0x8b, 0x0d, 0x37, 0x1e, 0x4d, 0x52, 0x15, + 0xbb, 0x81, 0x86, 0xd8, 0x77, 0xe7, 0x7a, 0x0c, 0x4d, 0x0c, 0x4d, 0x0c, 0x4d, 0x0c, 0x4d, 0xa2, + 0x42, 0x53, 0xe6, 0xc3, 0x16, 0x63, 0x75, 0xa3, 0x91, 0xfb, 0x9f, 0x51, 0xa4, 0x74, 0xc4, 0xa9, + 0xb7, 0x25, 0x5e, 0xe3, 0xc0, 0x4f, 0x53, 0x15, 0x47, 0xa5, 0x57, 0x46, 0x38, 0x2f, 0x5f, 0x1e, + 0xad, 0xba, 0x3b, 0xfd, 0xbf, 0x8e, 0xd6, 0xdc, 0x9d, 0xfe, 0xec, 0xeb, 0x5a, 0xf6, 0xdb, 0xec, + 0xfb, 0xfa, 0xd1, 0xaa, 0xbb, 0xb1, 0xf8, 0xbe, 0x79, 0xb4, 0xea, 0x6e, 0xf6, 0x5f, 0x1d, 0x1f, + 0xbf, 0x7e, 0xf5, 0xe7, 0x9b, 0xab, 0xc7, 0xff, 0xc3, 0x97, 0x7f, 0x3b, 0x3a, 0x3e, 0x1e, 0xff, + 0xd9, 0xbe, 0x9a, 0xfe, 0xda, 0xba, 0xea, 0xff, 0xe3, 0xd5, 0x3f, 0xcb, 0xf6, 0x08, 0x53, 0x01, + 0x8e, 0x8f, 0x5f, 0xf7, 0xff, 0xee, 0xf0, 0x58, 0xb5, 0x1c, 0xb8, 0xb2, 0xa5, 0x19, 0xae, 0x6c, + 0x11, 0xae, 0x10, 0xae, 0x10, 0xae, 0x10, 0xae, 0x08, 0x86, 0x2b, 0x5b, 0x84, 0x2b, 0x4f, 0x86, + 0x2b, 0xef, 0xfe, 0x9a, 0xc6, 0x74, 0xdf, 0x3d, 0xad, 0xbb, 0x1f, 0xfa, 0x7f, 0xae, 0xfe, 0xb4, + 0x71, 0xf5, 0xea, 0xdd, 0xab, 0x97, 0x77, 0xff, 0xee, 0xdd, 0xab, 0x3f, 0x57, 0x7f, 0xda, 0xbc, + 0x7a, 0xf9, 0xf2, 0x9e, 0xff, 0xf2, 0xcf, 0xfb, 0x7e, 0xc6, 0xab, 0xbf, 0x5e, 0xbe, 0x7c, 0x39, + 0x07, 0x2a, 0xb7, 0xc0, 0xcb, 0xd1, 0xea, 0x5a, 0xff, 0x9f, 0xd9, 0xd7, 0xd9, 0xaf, 0x39, 0xfc, + 0xf9, 0xa1, 0xff, 0xf9, 0x95, 0x09, 0xd0, 0xf3, 0xf2, 0xe5, 0xd1, 0xff, 0xbe, 0xeb, 0xff, 0xe3, + 0xdd, 0xab, 0x3f, 0xb7, 0xae, 0x16, 0xdf, 0xb3, 0x5f, 0x5f, 0xfd, 0xf5, 0xf2, 0xf5, 0xdf, 0x8f, + 0x8f, 0x5f, 0xbf, 0xfe, 0xfb, 0xab, 0xd9, 0x0d, 0xcf, 0xff, 0xbf, 0xbf, 0xcf, 0xfe, 0xeb, 0x3f, + 0xdf, 0xbd, 0x5b, 0xfa, 0xab, 0x57, 0x2f, 0xff, 0xf6, 0x5a, 0x13, 0x4e, 0x9b, 0xbd, 0x8f, 0x77, + 0x84, 0x6b, 0x25, 0xfc, 0x44, 0x56, 0xc1, 0x7d, 0xb7, 0xf2, 0xe9, 0x9e, 0x12, 0x99, 0xda, 0xfc, + 0x58, 0x1b, 0xb5, 0x08, 0xae, 0xd0, 0xb2, 0x2c, 0x3f, 0x55, 0xe5, 0xd5, 0x07, 0xcc, 0x7e, 0xbc, + 0xb0, 0xf2, 0x80, 0x75, 0x96, 0x07, 0x68, 0xc4, 0xe1, 0x2c, 0x0f, 0xb0, 0x31, 0x50, 0xb0, 0x3c, + 0xe0, 0x7b, 0x0f, 0x88, 0xe5, 0x01, 0x4c, 0x6a, 0x30, 0xa9, 0xc1, 0xa4, 0x86, 0xe8, 0xa4, 0x06, + 0xcb, 0x03, 0x74, 0xbc, 0x54, 0x96, 0x07, 0x30, 0x34, 0x31, 0x34, 0x31, 0x34, 0x31, 0x34, 0x3d, + 0xd6, 0x87, 0x31, 0xdf, 0xfe, 0xb4, 0x0b, 0xb1, 0x3c, 0xe0, 0xb9, 0x1f, 0x96, 0x07, 0xb0, 0x3c, + 0x80, 0x70, 0x85, 0x70, 0x85, 0x70, 0x85, 0x70, 0xe5, 0x87, 0x7d, 0x18, 0xe1, 0xca, 0x53, 0xe1, + 0x0a, 0xcb, 0x03, 0x7e, 0x04, 0xd3, 0xb1, 0x3c, 0x40, 0x3c, 0x5c, 0x63, 0x79, 0x80, 0xf9, 0xf2, + 0x00, 0x8e, 0xc8, 0x31, 0xad, 0x11, 0x20, 0x9a, 0x60, 0x76, 0x40, 0x4e, 0x6f, 0x26, 0x50, 0xe3, + 0x86, 0x3c, 0x28, 0xf3, 0x71, 0x5e, 0x18, 0xd4, 0xbd, 0x29, 0x62, 0x9f, 0x3e, 0xc2, 0xd9, 0x2c, + 0xa3, 0x68, 0x72, 0x7e, 0xa2, 0xe2, 0x67, 0xbe, 0x28, 0xa7, 0x15, 0x24, 0x69, 0x3d, 0x4d, 0x8b, + 0x39, 0xd3, 0x76, 0xf6, 0x83, 0xa8, 0x11, 0xaa, 0x29, 0xe4, 0x4e, 0x9c, 0x77, 0x2b, 0xd1, 0x24, + 0x0c, 0x0b, 0x98, 0x27, 0xb4, 0xef, 0x7f, 0x2d, 0xfe, 0x87, 0x76, 0xe2, 0xa1, 0x8a, 0xd5, 0x70, + 0xf7, 0x72, 0xfe, 0x23, 0x8d, 0xbe, 0xd7, 0x82, 0x7d, 0x89, 0x01, 0x1f, 0x52, 0x80, 0xbf, 0x78, + 0xbc, 0x9f, 0x78, 0x9e, 0x53, 0x78, 0xba, 0x29, 0x3f, 0xed, 0x5f, 0x3e, 0x51, 0x49, 0x8a, 0x52, + 0x0e, 0xad, 0x4a, 0xf1, 0xb4, 0x37, 0xf3, 0xf8, 0xe7, 0xfa, 0xb8, 0x7f, 0xf1, 0xc8, 0x37, 0xf0, + 0xdc, 0x27, 0xaf, 0xe7, 0x89, 0x3f, 0xc1, 0xf2, 0x1e, 0x63, 0x69, 0x8f, 0x7b, 0x93, 0x3f, 0xfe, + 0x3e, 0x1e, 0xf1, 0x2e, 0x9c, 0x70, 0x34, 0xf0, 0x43, 0xd7, 0x3f, 0x3b, 0x8b, 0xd5, 0x99, 0x9f, + 0x3e, 0x61, 0x13, 0x70, 0x9e, 0x8b, 0x58, 0xfa, 0x49, 0x8f, 0xd4, 0x88, 0xa7, 0x15, 0x68, 0x3e, + 0x39, 0x03, 0xfa, 0x9c, 0xcc, 0xe6, 0xcd, 0x8c, 0x65, 0x38, 0x1a, 0xb8, 0x71, 0xfa, 0x14, 0x4d, + 0x79, 0x66, 0x2e, 0xb2, 0xb0, 0x1c, 0x63, 0x61, 0xb9, 0xc3, 0xbb, 0x39, 0xc1, 0xf9, 0xa3, 0x01, + 0xf3, 0x3c, 0x4f, 0x2d, 0x32, 0x74, 0x72, 0xd5, 0x7e, 0xfa, 0x2b, 0x5b, 0xe8, 0xcd, 0xf5, 0x8f, + 0x7a, 0xe2, 0x93, 0x7e, 0x5e, 0x35, 0xf3, 0xb3, 0x8f, 0x0d, 0x8a, 0x38, 0x16, 0x28, 0xc4, 0x88, + 0x8a, 0x32, 0xa6, 0xc2, 0x8d, 0xaa, 0xb4, 0xc4, 0x7c, 0x51, 0x46, 0x66, 0x06, 0x70, 0x3d, 0xb7, + 0xc2, 0xb7, 0xa8, 0xd9, 0x84, 0xc5, 0xce, 0x22, 0x2c, 0xa8, 0xb9, 0xa0, 0xb0, 0xd3, 0xbc, 0x22, + 0x4f, 0xed, 0x0a, 0x35, 0xd3, 0xa2, 0xcd, 0xb5, 0x34, 0xb3, 0x2d, 0xcd, 0x7c, 0xcb, 0x32, 0x63, + 0x8c, 0x24, 0x4a, 0x51, 0x05, 0xfc, 0xce, 0x50, 0x25, 0x83, 0x38, 0x18, 0x17, 0x9a, 0x02, 0xcc, + 0x35, 0xf9, 0xe6, 0x0f, 0x2f, 0x76, 0xae, 0xf1, 0x6a, 0x45, 0xe7, 0x1a, 0x17, 0xe6, 0x18, 0xca, + 0x72, 0x10, 0xa5, 0x3b, 0x8a, 0xd2, 0x1d, 0x46, 0xd9, 0x8e, 0xa3, 0xb8, 0x3c, 0xee, 0x4a, 0x81, + 0x27, 0x01, 0x85, 0x1f, 0xa5, 0xdf, 0x68, 0x32, 0x2c, 0x3a, 0x17, 0x9f, 0x1f, 0x8e, 0x5b, 0x34, + 0x6f, 0x7e, 0x18, 0x24, 0x03, 0x3f, 0x1e, 0x96, 0xe0, 0x83, 0xe7, 0x3f, 0xb8, 0xa8, 0x19, 0xd8, + 0xe5, 0x34, 0x46, 0xd1, 0xaf, 0xd3, 0xaf, 0xd3, 0xaf, 0x8b, 0xf2, 0xeb, 0xc5, 0x37, 0x17, 0x15, + 0xdc, 0x4c, 0x84, 0xe1, 0xd8, 0xc7, 0xc5, 0x3a, 0x8e, 0xfc, 0xf1, 0x17, 0xcb, 0xbe, 0xe8, 0x7e, + 0xe9, 0x7e, 0xe9, 0x7e, 0x25, 0xb9, 0xdf, 0x60, 0xec, 0x16, 0xae, 0x00, 0xb9, 0x03, 0xde, 0x29, + 0xf0, 0x67, 0xce, 0x1f, 0x41, 0xb1, 0x35, 0xa6, 0x25, 0xce, 0xea, 0xc8, 0x3a, 0x93, 0x4a, 0xab, + 0x25, 0x2f, 0xb3, 0xb2, 0xb7, 0xf4, 0x8a, 0x5e, 0xe7, 0x7f, 0x75, 0x76, 0x1e, 0xd5, 0xe6, 0x17, + 0x7b, 0xf5, 0xd7, 0xcb, 0xa3, 0x35, 0x77, 0xbd, 0xbf, 0xf8, 0xc3, 0x9b, 0xa3, 0x55, 0x77, 0xbd, + 0xff, 0xea, 0xd5, 0x7f, 0x15, 0x5f, 0x6f, 0xda, 0x47, 0xae, 0xdf, 0x2c, 0x57, 0xe7, 0xb7, 0xa8, + 0xf3, 0xdf, 0xd4, 0xf9, 0x45, 0xe1, 0xf9, 0xda, 0xac, 0x50, 0x7d, 0xfb, 0xea, 0xee, 0x5f, 0xfe, + 0x75, 0xdf, 0xff, 0xb6, 0xf6, 0xd3, 0xf6, 0xd5, 0xbb, 0x07, 0xfe, 0xcb, 0xd6, 0xd5, 0xbb, 0x1f, + 0xfc, 0x19, 0x9b, 0x57, 0x2f, 0x97, 0xfe, 0xd7, 0xe9, 0xdf, 0xaf, 0x3f, 0xf4, 0x0f, 0x36, 0x1e, + 0xf8, 0x07, 0x6f, 0x1e, 0xfa, 0x07, 0x6f, 0x1e, 0xf8, 0x07, 0x0f, 0x8a, 0xb4, 0xfe, 0xc0, 0x3f, + 0xd8, 0xbc, 0xfa, 0x6b, 0xe9, 0xff, 0x7f, 0x79, 0xff, 0xff, 0xba, 0x75, 0xf5, 0xea, 0xaf, 0x87, + 0xfe, 0xdb, 0xf6, 0xd5, 0x5f, 0xef, 0x5e, 0xbd, 0xaa, 0xbd, 0x5c, 0x9b, 0x3a, 0x86, 0xb7, 0x33, + 0x5f, 0xb1, 0xd6, 0x5f, 0x72, 0x21, 0x33, 0x97, 0x80, 0xef, 0x08, 0x5e, 0x60, 0xc9, 0x85, 0xc1, + 0x8c, 0x12, 0x95, 0xba, 0xa9, 0x5f, 0xc2, 0x5a, 0xc5, 0xc5, 0x0f, 0x26, 0x37, 0x22, 0x37, 0x22, + 0x37, 0xaa, 0x20, 0x37, 0x4a, 0xfd, 0x33, 0x37, 0x9d, 0xfe, 0x74, 0x52, 0xa3, 0x42, 0x9f, 0xeb, + 0x24, 0x88, 0xd2, 0x37, 0xeb, 0x25, 0x22, 0xc4, 0xed, 0x12, 0x7e, 0x74, 0xd7, 0x8f, 0xce, 0x54, + 0x69, 0xf0, 0xb0, 0xc4, 0xde, 0xd3, 0xfd, 0x20, 0xd2, 0xd0, 0x3f, 0x5d, 0x6a, 0xdb, 0x7c, 0x7e, + 0x99, 0xcf, 0x7e, 0x38, 0x51, 0x1a, 0xae, 0xf3, 0x21, 0xf6, 0x07, 0x69, 0x30, 0x8a, 0xf6, 0x82, + 0xb3, 0x20, 0xeb, 0xb4, 0x58, 0x2d, 0xaf, 0x55, 0xba, 0xc4, 0xd6, 0xdc, 0x7d, 0xff, 0xab, 0x75, + 0xaf, 0x7e, 0x63, 0x7d, 0x67, 0x63, 0x67, 0x6b, 0x7b, 0x7d, 0x67, 0xd3, 0x22, 0x1d, 0x10, 0xd2, + 0x97, 0x5a, 0xd5, 0xbc, 0xc6, 0x17, 0xf5, 0xd5, 0x2d, 0xbc, 0xfe, 0xc0, 0x8e, 0xb4, 0xc6, 0x2d, + 0x5a, 0x7f, 0x97, 0xcd, 0xaf, 0x5f, 0xbd, 0xfa, 0xfb, 0xab, 0x7f, 0x92, 0x56, 0x6b, 0xa7, 0xd5, + 0xec, 0xe0, 0x7b, 0x4c, 0xeb, 0xd0, 0xdd, 0x4e, 0x98, 0x5a, 0xfe, 0xb5, 0x90, 0x19, 0xf1, 0xcf, + 0x68, 0xae, 0x7b, 0x46, 0x81, 0x7d, 0x41, 0x07, 0xc6, 0xc5, 0x1e, 0x14, 0x17, 0x04, 0x16, 0x58, + 0x78, 0x0d, 0x97, 0xdc, 0x60, 0xe1, 0xb5, 0x99, 0xa4, 0xc5, 0x75, 0x3b, 0x9f, 0xf2, 0x4f, 0x63, + 0x75, 0x5a, 0x84, 0xce, 0x2d, 0x00, 0x49, 0x01, 0x34, 0x7a, 0x0a, 0x40, 0x32, 0xb7, 0xfd, 0xfa, + 0xf5, 0xdc, 0x97, 0xd6, 0xe6, 0x6a, 0x27, 0xd0, 0xa5, 0x16, 0xb3, 0x46, 0xa3, 0xd0, 0xb5, 0x19, + 0x85, 0x77, 0xb2, 0xac, 0xd3, 0xa1, 0xd2, 0xa1, 0x0a, 0x74, 0xa8, 0xec, 0x64, 0xe1, 0xb1, 0x52, + 0x31, 0x3f, 0x9c, 0xc7, 0x4a, 0x9a, 0x1d, 0x47, 0xb1, 0x3c, 0x9c, 0x9d, 0x2c, 0x00, 0xf9, 0x07, + 0x76, 0xb2, 0xd0, 0xaf, 0xd3, 0xaf, 0xd3, 0xaf, 0x57, 0xca, 0xaf, 0xb3, 0x93, 0xe5, 0x87, 0xee, + 0x89, 0x9d, 0x2c, 0x74, 0xbf, 0x74, 0xbf, 0x74, 0xbf, 0x45, 0x6b, 0x2d, 0x3b, 0x59, 0x8a, 0xfd, + 0xb0, 0x93, 0xe5, 0x07, 0x2e, 0xc0, 0x4e, 0x16, 0x03, 0x4e, 0x44, 0x8f, 0xce, 0xb3, 0x93, 0xe5, + 0xdb, 0x3a, 0xcf, 0x4e, 0x16, 0x76, 0xb2, 0x98, 0xc5, 0x24, 0x2b, 0xec, 0x64, 0xf9, 0xc1, 0x8c, + 0x23, 0x3b, 0x59, 0xc8, 0x8d, 0xc8, 0x8d, 0xaa, 0xcb, 0x8d, 0xd8, 0xc9, 0x52, 0x0e, 0x4c, 0x64, + 0x27, 0x8b, 0x86, 0xa7, 0x9d, 0x0b, 0xce, 0x4e, 0x96, 0xc7, 0x5f, 0x87, 0x9d, 0x2c, 0xb0, 0xaf, + 0x9e, 0x9d, 0x2c, 0xe6, 0x7e, 0x2a, 0x3b, 0x59, 0x98, 0xd6, 0xb8, 0x73, 0x01, 0x76, 0xb2, 0x20, + 0xd2, 0x6a, 0x76, 0xb2, 0x14, 0xd4, 0xc9, 0x52, 0xc0, 0x3a, 0x43, 0x29, 0x5b, 0xa2, 0xe6, 0xab, + 0xe1, 0x9e, 0xb7, 0x64, 0xa5, 0x90, 0x65, 0x70, 0x85, 0x2e, 0x81, 0x2b, 0x74, 0xf9, 0x5b, 0x31, + 0x4b, 0xdf, 0xac, 0xdf, 0xe3, 0xf5, 0xb0, 0x41, 0x39, 0xcf, 0x6a, 0x24, 0xf8, 0xa1, 0x9d, 0x53, + 0xf5, 0xfc, 0x5a, 0x5c, 0x21, 0x66, 0xe2, 0x65, 0x23, 0xec, 0xfb, 0x9a, 0x2b, 0xc9, 0x13, 0x77, + 0x7c, 0x65, 0xff, 0xfa, 0x69, 0x7b, 0xbd, 0x56, 0x85, 0xed, 0xf5, 0x8a, 0x54, 0x3a, 0x7d, 0xb7, + 0x5c, 0xec, 0x75, 0x4f, 0xda, 0x74, 0xf1, 0x6c, 0xc0, 0x1c, 0xc2, 0x93, 0xf3, 0x9d, 0x05, 0x34, + 0xbd, 0x3d, 0xa7, 0xc9, 0xed, 0x9e, 0xa6, 0xb6, 0xcc, 0xd0, 0x00, 0xdc, 0xc5, 0x28, 0x19, 0x9f, + 0x5e, 0xac, 0x3f, 0xdd, 0x61, 0xcc, 0xff, 0x7d, 0x35, 0x56, 0x01, 0x3e, 0xe9, 0x66, 0xab, 0xe1, + 0x31, 0xe6, 0x8f, 0xc6, 0x9a, 0x55, 0x80, 0xb1, 0xf2, 0x93, 0x02, 0xd6, 0x00, 0x66, 0x3f, 0x86, + 0x2b, 0x00, 0x9f, 0x65, 0x3c, 0x45, 0x19, 0x51, 0xe1, 0xc6, 0x54, 0xb8, 0x51, 0x15, 0x6d, 0x5c, + 0x66, 0xd8, 0xf4, 0xb3, 0x57, 0x00, 0x4e, 0xad, 0xa6, 0xb8, 0xae, 0xe9, 0xec, 0xa7, 0x71, 0xfd, + 0x9f, 0x16, 0x13, 0x2d, 0xda, 0x54, 0x4b, 0x33, 0xd9, 0xd2, 0x4c, 0xb7, 0x2c, 0x13, 0xc6, 0xc8, + 0x6f, 0x16, 0xd6, 0x34, 0x5d, 0xd0, 0x96, 0xcf, 0x25, 0x25, 0x2e, 0x64, 0xdb, 0x67, 0xc1, 0x66, + 0x5f, 0xb8, 0xf9, 0x97, 0xe1, 0x06, 0x4a, 0x75, 0x07, 0x65, 0xb9, 0x85, 0xd2, 0xdd, 0x43, 0xe9, + 0x6e, 0xa2, 0x6c, 0x77, 0x51, 0x8c, 0xdb, 0x28, 0xc8, 0x7d, 0x14, 0xee, 0x46, 0xf2, 0x1f, 0x18, + 0x0c, 0x55, 0x94, 0x06, 0xa7, 0x81, 0x8a, 0x8b, 0xd7, 0xad, 0xbc, 0xc2, 0xfb, 0xfa, 0x1a, 0x05, + 0xbf, 0xfb, 0x72, 0xca, 0x08, 0x0a, 0x77, 0x37, 0x65, 0xba, 0x1d, 0x2d, 0xee, 0xa7, 0x6c, 0x37, + 0xa4, 0xcd, 0x1d, 0x69, 0x73, 0x4b, 0xba, 0xdc, 0x53, 0xb1, 0x6e, 0xaa, 0x60, 0x77, 0xf5, 0xfc, + 0xf4, 0xe3, 0xa3, 0xb2, 0x69, 0xee, 0x94, 0xb0, 0xb8, 0xa5, 0x79, 0x9b, 0x95, 0x92, 0x4a, 0x31, + 0xef, 0x3e, 0x25, 0x71, 0xc5, 0x82, 0xa5, 0x97, 0x68, 0xde, 0x7d, 0xfa, 0xdb, 0x25, 0x5e, 0xa2, + 0xdc, 0x92, 0xcd, 0xf2, 0xdf, 0x46, 0x7e, 0x23, 0x3a, 0x4a, 0x38, 0x4b, 0x0e, 0xc4, 0x0f, 0x5e, + 0x4e, 0x53, 0x49, 0x67, 0x7e, 0x3d, 0x8d, 0x65, 0x7d, 0x25, 0xb9, 0xe0, 0xfb, 0x55, 0x44, 0x43, + 0xa9, 0xa7, 0x69, 0x15, 0xd1, 0x55, 0xfa, 0x69, 0x54, 0x57, 0x5e, 0xc8, 0xfc, 0xe9, 0xfd, 0x17, + 0x82, 0x2c, 0x47, 0x43, 0x00, 0x1d, 0x8e, 0xd2, 0x54, 0x0d, 0xdd, 0x7f, 0x4f, 0xfc, 0xa1, 0x86, + 0x28, 0x5a, 0x46, 0xed, 0xe8, 0x35, 0xd3, 0x29, 0xb9, 0x86, 0x34, 0xbf, 0x90, 0xce, 0xae, 0x70, + 0x47, 0x9a, 0x25, 0x54, 0xa6, 0x88, 0x16, 0x2b, 0x4b, 0x53, 0x70, 0x31, 0x6b, 0xfe, 0x73, 0x4b, + 0x2f, 0xcb, 0x9a, 0xb1, 0xd3, 0x5a, 0x76, 0xf8, 0x9a, 0xfd, 0x5a, 0xc8, 0x54, 0xf6, 0xe2, 0x5e, + 0x52, 0x11, 0xad, 0xbf, 0x25, 0x64, 0xbc, 0xca, 0xcb, 0x74, 0x55, 0xbd, 0x01, 0x98, 0x89, 0x74, + 0x6d, 0x19, 0xab, 0x6a, 0x25, 0xd2, 0xcb, 0x6b, 0x00, 0x2e, 0x6e, 0x3a, 0xfc, 0x12, 0x60, 0x2b, + 0x30, 0xef, 0x71, 0x4f, 0x61, 0xdd, 0x0d, 0xe7, 0x65, 0x93, 0xbb, 0x8f, 0x52, 0x15, 0x9f, 0xfa, + 0x03, 0x95, 0x94, 0xe0, 0xee, 0xaf, 0x7f, 0x36, 0xcf, 0x4d, 0xe9, 0xee, 0xe9, 0xee, 0x61, 0xdd, + 0x7d, 0xf1, 0xe7, 0xa6, 0x0b, 0xd3, 0x2f, 0xf1, 0xd8, 0x34, 0xbf, 0x44, 0x39, 0xa7, 0xa6, 0x6b, + 0x3c, 0x35, 0xe5, 0xa9, 0x29, 0x96, 0x53, 0xd2, 0xe5, 0x9c, 0xca, 0x49, 0x90, 0x14, 0x7d, 0x6a, + 0x5a, 0xb4, 0xd3, 0xca, 0x7f, 0x70, 0xc1, 0x35, 0x64, 0x0f, 0x1a, 0x55, 0xa1, 0x35, 0x65, 0x9a, + 0xdc, 0x58, 0xe9, 0xee, 0x4c, 0x87, 0x5b, 0xd3, 0xea, 0xde, 0x74, 0xb9, 0x39, 0xed, 0xee, 0x4e, + 0xbb, 0xdb, 0xd3, 0xed, 0xfe, 0xca, 0x71, 0x83, 0x25, 0xb9, 0xc3, 0xd2, 0xdd, 0x62, 0x7e, 0x01, + 0x7f, 0x92, 0x7e, 0x99, 0x52, 0xe1, 0x41, 0x96, 0xc2, 0x9d, 0x4d, 0xf3, 0x2a, 0x5d, 0xa9, 0xf3, + 0xa2, 0xfb, 0x7b, 0x2e, 0xfe, 0x93, 0x15, 0xc3, 0x78, 0xca, 0x76, 0xa8, 0x3a, 0x1d, 0xab, 0x11, + 0x07, 0xab, 0xdb, 0xd1, 0x1a, 0x73, 0xb8, 0xc6, 0x1c, 0xaf, 0x29, 0x07, 0x5c, 0xae, 0x23, 0x2e, + 0xd9, 0x21, 0xe7, 0x0f, 0xad, 0xa7, 0xc3, 0x51, 0xae, 0x94, 0xba, 0xdf, 0xe9, 0xbb, 0x60, 0xf3, + 0xad, 0xd0, 0x52, 0x8b, 0x32, 0x27, 0xc6, 0x7d, 0x09, 0x86, 0x6a, 0x71, 0x02, 0xa9, 0x2f, 0x50, + 0xde, 0xba, 0x2a, 0x23, 0x24, 0x23, 0x24, 0x23, 0x24, 0x23, 0x24, 0x23, 0xe4, 0x1d, 0xab, 0x2b, + 0x7e, 0x53, 0xd6, 0x77, 0x43, 0xe4, 0x1a, 0x43, 0xe4, 0xd2, 0xb3, 0x09, 0x86, 0xfa, 0x02, 0x63, + 0x30, 0x64, 0x38, 0x64, 0x38, 0x64, 0x38, 0x64, 0x38, 0x64, 0x38, 0x24, 0x61, 0x44, 0x8c, 0x86, + 0xe7, 0x2a, 0x8d, 0x83, 0x81, 0xbe, 0x88, 0x38, 0xbf, 0x1e, 0xa3, 0x22, 0xa3, 0x22, 0xa3, 0x22, + 0xa3, 0x22, 0xa3, 0xe2, 0x5d, 0xab, 0x4b, 0xc6, 0xa7, 0xae, 0x16, 0x27, 0x79, 0xd3, 0x51, 0x6e, + 0x69, 0xb8, 0x94, 0x9e, 0x6e, 0xde, 0xc5, 0x47, 0x8f, 0x1f, 0x59, 0xd1, 0xdd, 0xdd, 0xab, 0x39, + 0xc2, 0x2d, 0x5d, 0x56, 0x73, 0xb7, 0x6f, 0x7e, 0x5d, 0x03, 0x9d, 0x9c, 0x9a, 0x7c, 0xcc, 0x6d, + 0x55, 0xd2, 0xd8, 0x05, 0x8c, 0xa2, 0x4a, 0x5b, 0x9b, 0x9b, 0x6f, 0x36, 0x2b, 0xa4, 0x4e, 0x2f, + 0xec, 0xb8, 0x4a, 0x9f, 0x64, 0x6a, 0x99, 0x4c, 0x4d, 0xc2, 0x34, 0x98, 0x8d, 0x3e, 0xf1, 0x87, + 0xff, 0xe7, 0x0f, 0x54, 0x34, 0xb8, 0x74, 0xc7, 0x71, 0x70, 0xee, 0xc7, 0x97, 0x1a, 0x29, 0xd6, + 0xb7, 0xa4, 0x28, 0x19, 0x30, 0xed, 0xa9, 0x53, 0x7f, 0x12, 0x66, 0x20, 0x73, 0x8a, 0x6d, 0xc9, + 0xf3, 0xc8, 0xf3, 0xc8, 0xf3, 0xc8, 0xf3, 0xc8, 0xf3, 0xee, 0x5a, 0x1d, 0x0f, 0x03, 0x21, 0x22, + 0xf6, 0xa2, 0x13, 0x5f, 0x6f, 0x61, 0xe9, 0xad, 0xab, 0x32, 0x44, 0x32, 0x44, 0x32, 0x44, 0x32, + 0x44, 0x32, 0x44, 0xde, 0xb1, 0xba, 0x59, 0x13, 0x7c, 0x7a, 0x59, 0x6c, 0x07, 0xff, 0x77, 0xc3, + 0xa4, 0x86, 0x5c, 0x84, 0xd3, 0x9c, 0xdf, 0xda, 0xae, 0x9f, 0x68, 0xb4, 0xf4, 0xc5, 0x83, 0xed, + 0x1c, 0x1e, 0x7c, 0xf0, 0xda, 0x8d, 0xde, 0xbf, 0x3a, 0xdd, 0x5f, 0xbc, 0xde, 0x6f, 0x07, 0x0d, + 0x47, 0xe7, 0x20, 0xb8, 0x44, 0x5b, 0x0e, 0x78, 0x45, 0x6b, 0x1e, 0xf8, 0xd6, 0x23, 0x3e, 0xe8, + 0x34, 0xdb, 0x3d, 0xaf, 0xd7, 0xf1, 0x66, 0x5f, 0xe6, 0x0f, 0xdb, 0xb1, 0x31, 0x69, 0x69, 0xe8, + 0x09, 0xef, 0x76, 0x3b, 0xf5, 0xbd, 0xf7, 0xf5, 0x43, 0x3e, 0xdc, 0x12, 0x1e, 0x6e, 0xbb, 0xd3, + 0xf6, 0x4c, 0x3e, 0x60, 0x2d, 0x57, 0xea, 0x73, 0x18, 0xa4, 0x01, 0xc6, 0x35, 0xf6, 0x93, 0x24, + 0xb8, 0xd0, 0x48, 0xb6, 0x16, 0x17, 0x24, 0xcf, 0x22, 0xcf, 0x22, 0xcf, 0x22, 0xcf, 0x22, 0xcf, + 0xba, 0x63, 0x75, 0x4c, 0x45, 0x62, 0x04, 0xc6, 0x38, 0x18, 0xc5, 0x41, 0xaa, 0xf1, 0xa0, 0x30, + 0xbf, 0x22, 0x43, 0x23, 0x43, 0x23, 0x43, 0x23, 0x43, 0x23, 0x43, 0xe3, 0x1d, 0xab, 0x9b, 0x04, + 0x51, 0xfa, 0x56, 0x63, 0x60, 0xdc, 0x64, 0x1d, 0xe6, 0xd3, 0x6f, 0x8c, 0x75, 0x98, 0xe5, 0x5f, + 0x97, 0x75, 0x98, 0xd6, 0xaa, 0xd2, 0xfa, 0x26, 0xab, 0x30, 0xc5, 0x5d, 0x45, 0x6c, 0x15, 0xa6, + 0xa8, 0x31, 0x67, 0x25, 0x2d, 0x91, 0x58, 0xba, 0x8e, 0x81, 0xa5, 0x12, 0xd7, 0x73, 0xb3, 0xaf, + 0xbf, 0x16, 0xba, 0x69, 0xa2, 0xfc, 0x37, 0x5f, 0xc2, 0x5b, 0x2f, 0x73, 0x48, 0x40, 0xf9, 0xc3, + 0x01, 0x4a, 0x8e, 0x24, 0x1c, 0xc7, 0x89, 0x4a, 0xa8, 0x39, 0x8e, 0xb3, 0xda, 0x71, 0xaa, 0x74, + 0x82, 0x5c, 0xe2, 0x66, 0x8d, 0x87, 0x9c, 0xd8, 0xda, 0x76, 0xb9, 0xab, 0xd1, 0x96, 0x36, 0x6f, + 0x54, 0x3a, 0xec, 0x2d, 0x20, 0x80, 0x3b, 0x7d, 0xb9, 0xe5, 0x47, 0xc0, 0x5b, 0x97, 0xe3, 0x6c, + 0x6a, 0x84, 0x60, 0x18, 0x9c, 0x32, 0x10, 0x0a, 0x0c, 0x84, 0xc1, 0x29, 0x83, 0xe0, 0xec, 0xc1, + 0x94, 0x3e, 0x93, 0xba, 0xe4, 0x91, 0xfd, 0x4b, 0x46, 0x59, 0xea, 0xe8, 0x7e, 0x4d, 0x6e, 0x52, + 0x9b, 0xbb, 0xd4, 0xe9, 0x36, 0xb5, 0xbb, 0x4f, 0xdd, 0x6e, 0xd4, 0x98, 0x3b, 0x35, 0xe6, 0x56, + 0x4d, 0xb8, 0xd7, 0xf2, 0xb3, 0x6d, 0x2b, 0x1a, 0x0e, 0xe7, 0xca, 0x76, 0xbb, 0xcb, 0x18, 0x55, + 0x7f, 0xe1, 0x7c, 0x59, 0x6b, 0xa0, 0x0c, 0x25, 0x72, 0x8c, 0x39, 0x67, 0x13, 0x4e, 0xda, 0x98, + 0xb3, 0x36, 0xe5, 0xb4, 0x8d, 0x3b, 0x6f, 0xe3, 0x4e, 0xdc, 0xa4, 0x33, 0xd7, 0xe3, 0xd4, 0x35, + 0x39, 0x77, 0x7d, 0x09, 0x26, 0x83, 0x09, 0x27, 0x13, 0x09, 0xa8, 0x07, 0x13, 0x52, 0xb5, 0x4c, + 0x4d, 0xdf, 0xdd, 0x38, 0x9d, 0xb9, 0xf3, 0x17, 0xf3, 0x3f, 0x47, 0xd3, 0xc7, 0x63, 0xc9, 0x59, + 0xa6, 0x06, 0x25, 0x76, 0x92, 0xc9, 0x89, 0x41, 0xfc, 0x70, 0xeb, 0xea, 0x84, 0x10, 0x84, 0x10, + 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x46, 0x20, 0xc4, 0xd1, 0x35, 0x84, 0xf8, 0xff, + 0x06, 0x93, 0x38, 0x56, 0x51, 0xfa, 0xf2, 0x55, 0xed, 0xf5, 0xeb, 0xeb, 0x42, 0x90, 0xfe, 0xfc, + 0x9f, 0xdc, 0x8c, 0x5b, 0xc9, 0x3d, 0x7f, 0x97, 0xff, 0xe4, 0xa1, 0xfa, 0x6a, 0x0d, 0x1a, 0x11, + 0x9d, 0x8d, 0x69, 0x7c, 0x4d, 0xf5, 0xf4, 0xd9, 0xeb, 0x4f, 0x40, 0x8e, 0x06, 0xae, 0xfa, 0x9a, + 0xbe, 0x4b, 0x55, 0xa8, 0xce, 0x55, 0x1a, 0x5f, 0xba, 0xa3, 0xc8, 0x1d, 0x7c, 0xc9, 0x8a, 0x9a, + 0x8d, 0x24, 0x25, 0x4f, 0xfd, 0x30, 0x31, 0x91, 0x95, 0x94, 0x9e, 0x90, 0xec, 0x97, 0x7d, 0x40, + 0xa6, 0xa7, 0x68, 0xef, 0x9a, 0x5a, 0x80, 0x14, 0xef, 0xdd, 0x3a, 0x54, 0x2f, 0xb5, 0x94, 0xaf, + 0x7c, 0x3d, 0x29, 0xb3, 0xdf, 0x2e, 0x49, 0xfd, 0x54, 0x63, 0x1b, 0xfa, 0xec, 0x72, 0x96, 0x1d, + 0xe2, 0xad, 0xf3, 0x10, 0x4f, 0x0c, 0x99, 0xe3, 0x21, 0x1e, 0x0f, 0xf1, 0xbe, 0xf7, 0xc0, 0x78, + 0x88, 0xc7, 0x0c, 0x1c, 0x33, 0x70, 0xcc, 0xc0, 0x31, 0x03, 0xc7, 0x0c, 0x1c, 0x33, 0x70, 0xa5, + 0x67, 0xe0, 0x78, 0x88, 0xf7, 0x34, 0xe6, 0xc6, 0x43, 0x3c, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, + 0x42, 0x08, 0x42, 0x88, 0x8a, 0x43, 0x08, 0x1e, 0xe2, 0xd9, 0x9b, 0x8d, 0xe1, 0x09, 0x46, 0xac, + 0x4e, 0x6b, 0xb3, 0xc4, 0x39, 0xe7, 0x5c, 0x94, 0xaf, 0x78, 0x95, 0x9b, 0x73, 0xa1, 0xa3, 0xff, + 0x74, 0x76, 0xc3, 0x69, 0x3c, 0x19, 0xa4, 0xd1, 0x62, 0xba, 0xf6, 0xec, 0x0e, 0x9a, 0xf3, 0x1b, + 0xf0, 0x0e, 0xe6, 0x62, 0x7b, 0x9d, 0x4c, 0x6c, 0xaf, 0x1e, 0x2b, 0xdf, 0x6b, 0x2e, 0x64, 0xbb, + 0xfe, 0xd6, 0x55, 0xa7, 0x55, 0x6e, 0x4e, 0x0e, 0x13, 0xdf, 0x3d, 0x0d, 0xc2, 0x54, 0xc5, 0xe5, + 0x77, 0x26, 0xdf, 0xb8, 0x16, 0xdb, 0x92, 0x4d, 0x51, 0x36, 0xce, 0xe8, 0x10, 0x49, 0xbb, 0x38, + 0xa3, 0xe3, 0x5b, 0x0f, 0x87, 0xed, 0xc9, 0x80, 0xee, 0x52, 0x7b, 0xe6, 0x8b, 0x33, 0x84, 0x6d, + 0xc9, 0x6e, 0x71, 0x86, 0xb0, 0x28, 0x4e, 0xad, 0xad, 0xc2, 0xc1, 0x0f, 0x43, 0xfd, 0x67, 0x13, + 0xd3, 0x8b, 0xf2, 0x48, 0x42, 0x9a, 0x83, 0x36, 0xea, 0xa8, 0x4d, 0x39, 0x6c, 0xe3, 0x8e, 0xdb, + 0xb8, 0x03, 0x37, 0xed, 0xc8, 0xf5, 0x38, 0x74, 0x4d, 0x8e, 0x3d, 0x7f, 0x98, 0xe6, 0x8e, 0x26, + 0xf4, 0xed, 0x51, 0x59, 0x42, 0xc5, 0x6b, 0xcc, 0xd7, 0x03, 0x60, 0x8b, 0xaa, 0xe6, 0xeb, 0xaf, + 0x93, 0x65, 0x6c, 0x37, 0x78, 0xf8, 0x65, 0xb1, 0xdd, 0xe0, 0xd9, 0xd8, 0x6f, 0x9d, 0xa4, 0x9c, + 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, 0xa4, 0x9c, + 0xa4, 0x9c, 0xa4, 0x9c, 0xd8, 0x82, 0xa4, 0xfc, 0x5b, 0xa4, 0x9c, 0x15, 0x74, 0xba, 0xb4, 0xae, + 0x72, 0x15, 0x74, 0xa5, 0xd7, 0x49, 0xad, 0x3c, 0xbb, 0x7c, 0xae, 0x95, 0xf8, 0x1f, 0x66, 0x12, + 0x56, 0xb8, 0x76, 0xee, 0x7c, 0x1c, 0x26, 0xe5, 0x57, 0xcd, 0x65, 0x57, 0x61, 0xbd, 0x9c, 0x29, + 0xea, 0xc2, 0x7a, 0x39, 0x91, 0xd4, 0x83, 0xf5, 0x72, 0x26, 0x73, 0x43, 0xac, 0x97, 0x93, 0x90, + 0x01, 0x62, 0x6a, 0xde, 0x96, 0x0c, 0x0f, 0x53, 0xf3, 0xa2, 0xe8, 0xb3, 0xb6, 0xd4, 0x7c, 0x1a, + 0xfb, 0xa7, 0xa7, 0xc1, 0xc0, 0x55, 0xd1, 0x59, 0x10, 0x29, 0x15, 0x07, 0xd1, 0x99, 0x7b, 0xae, + 0xd2, 0x38, 0x18, 0xe8, 0xcf, 0xd8, 0x7f, 0x43, 0x16, 0x26, 0xf2, 0xa5, 0xb9, 0x73, 0xa3, 0x6e, + 0xdd, 0x94, 0x7b, 0x37, 0xee, 0xe6, 0x8d, 0xbb, 0x7b, 0xd3, 0x6e, 0x5f, 0x8f, 0xfb, 0xd7, 0x14, + 0x06, 0xf2, 0x87, 0x69, 0x2e, 0x91, 0x3f, 0x09, 0xa2, 0xf4, 0xcd, 0xba, 0x81, 0x3c, 0xbe, 0xce, + 0xb6, 0xff, 0x6e, 0x36, 0xc6, 0x58, 0xc7, 0xdc, 0xe6, 0x9b, 0x1f, 0xbd, 0x2e, 0x29, 0xbb, 0xd1, + 0xfd, 0x20, 0xd2, 0xee, 0x0b, 0x0d, 0x05, 0xd7, 0xa5, 0xcb, 0x7f, 0xf6, 0xc3, 0x89, 0x32, 0x78, + 0xfd, 0x0f, 0xb1, 0x3f, 0x48, 0x83, 0x51, 0xb4, 0x17, 0x9c, 0x05, 0xd9, 0x94, 0xf0, 0x55, 0xed, + 0x72, 0x5c, 0xfd, 0x64, 0x40, 0xe5, 0xfc, 0xaf, 0x95, 0x57, 0xb9, 0x8d, 0xf5, 0x9d, 0x8d, 0x9d, + 0xad, 0xed, 0xf5, 0x9d, 0xcd, 0x0a, 0xeb, 0xde, 0x0b, 0x3b, 0xaf, 0xd6, 0xe7, 0x71, 0x33, 0x00, + 0x5f, 0xae, 0xea, 0x71, 0xf3, 0xf9, 0x38, 0x4c, 0x58, 0xfd, 0xfd, 0xe0, 0x6b, 0x0a, 0xce, 0xc6, + 0x6e, 0x38, 0x1c, 0xbb, 0xc9, 0x65, 0x34, 0xd0, 0x97, 0x6a, 0xbe, 0x75, 0x55, 0x26, 0x9c, 0x51, + 0x33, 0x14, 0x4c, 0x38, 0x5b, 0x99, 0x81, 0x60, 0xc2, 0xf9, 0x29, 0x0f, 0x4d, 0x5b, 0xc2, 0x59, + 0xd3, 0xb9, 0xdf, 0x92, 0x91, 0x6b, 0x39, 0xff, 0xd3, 0xec, 0x96, 0xb5, 0xbb, 0x67, 0x13, 0x6e, + 0xda, 0xa8, 0xbb, 0x36, 0xe5, 0xb6, 0x8d, 0xbb, 0x6f, 0xe3, 0x6e, 0xdc, 0xb4, 0x3b, 0xd7, 0xcb, + 0x24, 0x75, 0x25, 0x92, 0x75, 0xb9, 0xf9, 0xfc, 0x82, 0x2a, 0xf2, 0x4f, 0x42, 0x35, 0xd4, 0x6f, + 0x38, 0x0b, 0x6f, 0xb1, 0x10, 0x40, 0xb3, 0xd6, 0x9a, 0xc9, 0x3c, 0x69, 0x0f, 0x04, 0x26, 0x03, + 0x02, 0x44, 0x60, 0x30, 0x1d, 0x20, 0x60, 0x02, 0x05, 0x4c, 0xc0, 0x40, 0x09, 0x1c, 0x7a, 0x03, + 0x88, 0xe6, 0x40, 0x92, 0x3f, 0x64, 0xed, 0x27, 0x93, 0x4b, 0x56, 0xaf, 0xbf, 0xd5, 0x68, 0x09, + 0xe5, 0xaf, 0x59, 0x9a, 0xdb, 0xd6, 0xa8, 0x4c, 0xce, 0x78, 0x94, 0xa4, 0x6e, 0xa2, 0x92, 0x24, + 0x18, 0x45, 0xee, 0x64, 0xec, 0x0e, 0x55, 0xe8, 0x5f, 0x9a, 0x83, 0x0d, 0xf7, 0x8b, 0x43, 0x10, + 0x41, 0x10, 0x41, 0x10, 0x41, 0x10, 0x41, 0x10, 0x61, 0x19, 0x88, 0xd0, 0x5e, 0xe6, 0x74, 0xd7, + 0xc7, 0x6f, 0x1b, 0xb8, 0xb4, 0x99, 0xb2, 0xa7, 0xc5, 0xc7, 0x8c, 0x8b, 0x5b, 0x31, 0x5d, 0x06, + 0x65, 0x38, 0xb8, 0x2f, 0x89, 0x61, 0xb8, 0x2c, 0x2a, 0x97, 0x03, 0xa0, 0x44, 0xc5, 0x90, 0xfb, + 0xbb, 0xad, 0x9a, 0x06, 0xcb, 0xa5, 0x50, 0x55, 0xd3, 0x74, 0xf9, 0x14, 0xa4, 0x8e, 0xbe, 0xa8, + 0xc6, 0x55, 0xfb, 0xb6, 0x52, 0x6b, 0xab, 0x8e, 0x15, 0x34, 0x97, 0x5f, 0xe5, 0xd7, 0x85, 0x2a, + 0xc3, 0xba, 0x59, 0xf6, 0xa3, 0xa5, 0x26, 0x4b, 0x9f, 0x2e, 0x69, 0x59, 0x2f, 0xab, 0x65, 0x52, + 0xe7, 0x12, 0xf2, 0xd7, 0x31, 0xb1, 0xf3, 0x6e, 0x60, 0xd5, 0x5e, 0x16, 0xb0, 0xce, 0xb2, 0x00, + 0xab, 0x12, 0x36, 0x2c, 0x0b, 0x60, 0x59, 0x40, 0x91, 0x0f, 0x93, 0x65, 0x01, 0x56, 0x33, 0x2b, + 0x66, 0xf4, 0x99, 0xd1, 0x67, 0x46, 0x1f, 0x23, 0x70, 0x98, 0xa1, 0xd2, 0x2c, 0x0b, 0xd0, 0xef, + 0xe4, 0x59, 0x16, 0x50, 0xc0, 0xb3, 0x64, 0x59, 0x00, 0x41, 0x04, 0x41, 0x04, 0x41, 0x04, 0x41, + 0x04, 0x41, 0x84, 0x7e, 0xab, 0x67, 0x59, 0x80, 0xf6, 0x0f, 0xcb, 0x02, 0x58, 0x16, 0x70, 0x43, + 0x0e, 0x96, 0x05, 0xac, 0xb0, 0x2c, 0xe0, 0x7e, 0xd5, 0x64, 0x59, 0x80, 0x69, 0x40, 0x60, 0xee, + 0xaa, 0x7d, 0x52, 0xeb, 0x67, 0xab, 0x6d, 0x72, 0x19, 0x0d, 0xbe, 0xc4, 0xa3, 0x28, 0xf8, 0x8f, + 0xc9, 0x44, 0xfc, 0x2d, 0x29, 0x48, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x2d, + 0x23, 0xd2, 0xcc, 0xc6, 0x0b, 0xbf, 0x12, 0x2b, 0x09, 0x4d, 0x55, 0x12, 0x6a, 0x58, 0x23, 0xa6, + 0x4f, 0x95, 0x38, 0x65, 0xd0, 0x0a, 0xa5, 0x74, 0xb4, 0xd4, 0x83, 0x3e, 0x63, 0xfb, 0xd8, 0xfe, + 0x38, 0x4c, 0xbc, 0xe6, 0xd9, 0xb8, 0x35, 0x1c, 0x1f, 0x4e, 0xe5, 0xe5, 0x6c, 0xc4, 0x7b, 0x9e, + 0x2f, 0x37, 0xe3, 0x3f, 0x97, 0xc0, 0x71, 0x33, 0xbe, 0x2c, 0x42, 0xc6, 0x69, 0x88, 0x9c, 0x86, + 0xf8, 0x23, 0x0f, 0x8d, 0xeb, 0x77, 0xb8, 0x7e, 0xc7, 0x8e, 0xfc, 0x1b, 0xdb, 0x23, 0xd8, 0x1e, + 0xc1, 0xf6, 0x08, 0x69, 0xf9, 0x33, 0xae, 0xdf, 0x29, 0xff, 0xc3, 0xf5, 0x3b, 0x5a, 0x2f, 0xcf, + 0xf5, 0x3b, 0x5c, 0xbf, 0x63, 0x48, 0xe5, 0xb8, 0x7e, 0x87, 0xeb, 0x77, 0xd0, 0xef, 0x87, 0x89, + 0xf1, 0xc7, 0x5c, 0x0f, 0x2a, 0x31, 0xae, 0xe1, 0x80, 0xe6, 0x8a, 0x5b, 0xe9, 0x75, 0xea, 0x19, + 0x94, 0x7e, 0x39, 0xa5, 0x9e, 0x01, 0x3c, 0xf3, 0x8c, 0xa5, 0x1c, 0xb5, 0x2f, 0x5e, 0x29, 0x4b, + 0x50, 0x48, 0x27, 0x52, 0xc1, 0xd9, 0x97, 0x93, 0x51, 0x9c, 0x94, 0xa6, 0x8b, 0x39, 0x0d, 0xbc, + 0xbe, 0x54, 0x49, 0x86, 0x55, 0xee, 0xc1, 0x49, 0xe9, 0x99, 0x36, 0x1d, 0x99, 0x35, 0xad, 0x99, + 0x34, 0x5d, 0x99, 0x33, 0xed, 0x99, 0x32, 0xed, 0x99, 0x31, 0xdd, 0x99, 0x30, 0x59, 0x01, 0xb5, + 0xec, 0x83, 0x8e, 0xdc, 0x73, 0xe9, 0x3b, 0x68, 0xce, 0xaf, 0xc8, 0xcd, 0x7b, 0x68, 0x2e, 0xd4, + 0x88, 0x2b, 0xd5, 0xed, 0x52, 0x8d, 0xb9, 0x56, 0x63, 0x2e, 0xd6, 0x94, 0xab, 0xb5, 0x83, 0x3b, + 0x73, 0xf3, 0x9e, 0x40, 0xb7, 0xac, 0xdd, 0x3d, 0x9b, 0x70, 0xd3, 0x46, 0xdd, 0xb5, 0x29, 0xb7, + 0x6d, 0xdc, 0x7d, 0x1b, 0x77, 0xe3, 0xa6, 0xdd, 0xb9, 0x1e, 0xb7, 0xae, 0xc9, 0xbd, 0x6b, 0x77, + 0xf3, 0xf9, 0x05, 0x35, 0x97, 0x11, 0x2d, 0x39, 0x0b, 0xad, 0xa5, 0x43, 0x77, 0xdd, 0x3f, 0x5b, + 0xfa, 0x2c, 0x0f, 0x0b, 0xa6, 0xc3, 0x03, 0x4c, 0x98, 0x80, 0x09, 0x17, 0x28, 0x61, 0x43, 0x6f, + 0xf8, 0xd0, 0x1c, 0x46, 0xf2, 0x87, 0x6c, 0xbe, 0xa5, 0x6f, 0xfa, 0x5e, 0x5d, 0x23, 0x4e, 0xfe, + 0xa6, 0xa3, 0xdf, 0xe2, 0x80, 0x1c, 0x7d, 0x37, 0xce, 0x01, 0x39, 0xd7, 0x62, 0x70, 0x40, 0x8e, + 0x69, 0x1f, 0x78, 0x5b, 0x35, 0x39, 0x20, 0x67, 0x49, 0x35, 0xb7, 0x36, 0x37, 0xdf, 0x70, 0x36, + 0x8e, 0x21, 0x40, 0x60, 0xee, 0xaa, 0x9c, 0x8d, 0xf3, 0x7c, 0xb5, 0x8d, 0x47, 0x93, 0x54, 0xc5, + 0x6e, 0x60, 0x70, 0x30, 0xce, 0xb5, 0x08, 0xa4, 0xd0, 0xa4, 0xd0, 0xa4, 0xd0, 0xa4, 0xd0, 0xa4, + 0xd0, 0x96, 0x51, 0xe8, 0xe1, 0x28, 0x4d, 0xd5, 0xd0, 0xfd, 0xf7, 0xc4, 0x1f, 0x9a, 0x9c, 0x8c, + 0xf3, 0xd6, 0xc0, 0xb5, 0x0f, 0xfc, 0x34, 0x55, 0x71, 0x64, 0x8c, 0x45, 0x3b, 0x2f, 0x5f, 0x1e, + 0xad, 0xba, 0x3b, 0xfd, 0xbf, 0x8e, 0xd6, 0xdc, 0x9d, 0xfe, 0xec, 0xeb, 0x5a, 0xf6, 0xdb, 0xec, + 0xfb, 0xfa, 0xd1, 0xaa, 0xbb, 0xb1, 0xf8, 0xbe, 0x79, 0xb4, 0xea, 0x6e, 0xf6, 0x5f, 0x1d, 0x1f, + 0xbf, 0x7e, 0xf5, 0xe7, 0x9b, 0xab, 0xc7, 0xff, 0x43, 0x87, 0x18, 0x50, 0xd4, 0x95, 0x38, 0xec, + 0x48, 0x4f, 0x79, 0x73, 0x5e, 0xd6, 0x9a, 0x7f, 0xe3, 0xde, 0x44, 0x01, 0x54, 0xc5, 0x18, 0x45, + 0xe1, 0x80, 0x00, 0xcb, 0x28, 0x08, 0x8b, 0x3b, 0x58, 0xdc, 0x61, 0x43, 0x20, 0x37, 0x37, 0x20, + 0x20, 0x54, 0xfe, 0x69, 0xac, 0x4e, 0x0d, 0x4c, 0x08, 0x58, 0xd3, 0x39, 0x22, 0xe0, 0x60, 0x8e, + 0x55, 0x5e, 0xbf, 0x9e, 0x23, 0x84, 0xda, 0x75, 0xec, 0x21, 0x56, 0xf8, 0x71, 0xe0, 0xc7, 0x1d, + 0xcb, 0xa5, 0x61, 0x04, 0xee, 0x58, 0x26, 0x46, 0x20, 0x46, 0x20, 0x46, 0x78, 0xe8, 0x61, 0x6a, + 0x2f, 0x00, 0xf5, 0x87, 0xff, 0xe7, 0x0f, 0x54, 0x34, 0xb8, 0x74, 0xf5, 0xba, 0xfd, 0x25, 0xaf, + 0x71, 0x57, 0x10, 0x9e, 0x67, 0xd9, 0x16, 0x20, 0x20, 0x02, 0x85, 0xe9, 0x80, 0x01, 0x13, 0x38, + 0x60, 0x02, 0x08, 0x4a, 0x20, 0xd1, 0x1b, 0x50, 0x34, 0x07, 0x16, 0x73, 0x24, 0x74, 0xc9, 0xea, + 0x83, 0xa1, 0x8a, 0xd2, 0x20, 0xbd, 0xd4, 0x4b, 0x48, 0x97, 0x90, 0xbf, 0x81, 0x9a, 0x27, 0xa7, + 0x39, 0xbf, 0xf5, 0x5d, 0x3f, 0x31, 0xe8, 0x79, 0x16, 0x2f, 0xa2, 0x73, 0x78, 0xf0, 0xc1, 0x6b, + 0x37, 0x9a, 0x1f, 0x7f, 0xde, 0xed, 0x74, 0xbd, 0xc3, 0x5e, 0xbd, 0xd7, 0x70, 0x4c, 0x0e, 0xe1, + 0x4a, 0x8c, 0x9d, 0xf3, 0xad, 0x18, 0xad, 0x98, 0xbd, 0xf5, 0x52, 0x3e, 0x7c, 0x6a, 0xb5, 0x9c, + 0x2a, 0x16, 0x67, 0x82, 0x3c, 0xff, 0xc6, 0xaf, 0xef, 0x7f, 0xae, 0xb7, 0x3f, 0x36, 0xf8, 0x0e, + 0xcc, 0xbd, 0x83, 0x7a, 0xaf, 0xd7, 0xd8, 0x3f, 0xe8, 0xf1, 0x15, 0x98, 0x7b, 0x05, 0xbd, 0x7f, + 0x75, 0xbc, 0x7f, 0xd5, 0x7f, 0xe3, 0x2b, 0x30, 0xf7, 0x0a, 0x9a, 0xed, 0x26, 0x4d, 0xc0, 0xe0, + 0xf3, 0x6f, 0x75, 0xea, 0x7b, 0xcd, 0xf6, 0x47, 0xbe, 0x02, 0x93, 0xc1, 0xf8, 0xb0, 0x57, 0xef, + 0xd2, 0x0a, 0x0c, 0xbe, 0x82, 0xbd, 0xce, 0xbf, 0xda, 0x4e, 0xc5, 0xba, 0x31, 0xfa, 0x1c, 0xbc, + 0x2b, 0xcf, 0x7e, 0x9c, 0x13, 0x7f, 0xf0, 0xfb, 0x64, 0xec, 0x0e, 0x55, 0x12, 0x9c, 0x45, 0x7e, + 0xaa, 0x86, 0xee, 0xec, 0xf4, 0xd7, 0x5c, 0x4a, 0xfb, 0x41, 0x89, 0x98, 0xdb, 0x2e, 0xf5, 0xc2, + 0xcc, 0x6d, 0x33, 0xb7, 0x3d, 0x13, 0x84, 0xb9, 0x6d, 0xa3, 0x71, 0x86, 0xbd, 0x1a, 0x2b, 0x26, + 0x1c, 0x3d, 0x7b, 0x35, 0xd8, 0xab, 0x41, 0x84, 0xb8, 0xac, 0x21, 0x43, 0xe5, 0x0f, 0xdd, 0x34, + 0x38, 0x37, 0x58, 0xe5, 0x70, 0x2d, 0x02, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, + 0xa0, 0x65, 0x18, 0x70, 0xea, 0xdd, 0xd3, 0x60, 0xf0, 0x7b, 0xb2, 0xb5, 0x61, 0x10, 0x03, 0x9a, + 0x80, 0x80, 0x9f, 0xa2, 0xd9, 0xf4, 0x16, 0x27, 0xf2, 0xa3, 0x51, 0xa2, 0x06, 0xa3, 0x68, 0x98, + 0x38, 0x1c, 0xbd, 0xa5, 0xef, 0xc6, 0x39, 0x7a, 0xeb, 0x5a, 0x0c, 0x8e, 0xde, 0x32, 0xed, 0x8b, + 0x6f, 0xab, 0x26, 0x47, 0x6f, 0x2d, 0xa9, 0xe6, 0xda, 0xdb, 0x8d, 0x8d, 0xad, 0xed, 0x8d, 0x8d, + 0xd5, 0xed, 0x37, 0xdb, 0xab, 0x3b, 0x9b, 0x9b, 0x6b, 0x5b, 0x6b, 0x9c, 0xc4, 0x65, 0x08, 0xa7, + 0x98, 0xbb, 0x2a, 0x99, 0x7d, 0x11, 0xcc, 0x1e, 0xe6, 0xd0, 0x87, 0xa7, 0x3d, 0x64, 0xfa, 0x64, + 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0xd6, 0x33, 0x7d, 0x9e, 0xf6, 0xf0, 0xb4, 0x87, 0x98, 0x10, 0x15, + 0x13, 0x86, 0x7e, 0x92, 0xba, 0x2a, 0x49, 0xfd, 0x93, 0x30, 0x48, 0xbe, 0x28, 0xd3, 0x27, 0x3f, + 0xf7, 0x8b, 0x43, 0x6c, 0x48, 0x6c, 0x48, 0x6c, 0x48, 0x6c, 0x48, 0x6c, 0x68, 0x19, 0x36, 0xe4, + 0x29, 0x10, 0x4f, 0x81, 0xcc, 0x7c, 0x78, 0x0a, 0x74, 0x43, 0x0c, 0x9e, 0x02, 0x99, 0xf6, 0xc5, + 0xb7, 0x55, 0x93, 0xa7, 0x40, 0x4b, 0xaa, 0xc9, 0x53, 0x20, 0x1c, 0x9c, 0x62, 0xee, 0xaa, 0x64, + 0xfc, 0xcf, 0x57, 0x5b, 0x2e, 0x33, 0x25, 0xa7, 0x27, 0xa7, 0x27, 0xa7, 0x27, 0xa7, 0x27, 0xa7, + 0x2f, 0xc5, 0xea, 0xb9, 0xcc, 0x94, 0x5c, 0x9a, 0x84, 0x85, 0x5c, 0x9a, 0x5c, 0x1a, 0x54, 0x35, + 0xb9, 0xcc, 0x94, 0xe4, 0x99, 0xe4, 0xf9, 0x49, 0x6a, 0x3b, 0x1a, 0x4f, 0x95, 0xd6, 0x0f, 0xdd, + 0x81, 0x3f, 0xf6, 0x4f, 0x82, 0x30, 0x48, 0x83, 0x6c, 0x22, 0xa3, 0x21, 0x2e, 0x7d, 0xbf, 0x38, + 0xa4, 0xd6, 0xa4, 0xd6, 0xa4, 0xd6, 0xa4, 0xd6, 0xa4, 0xd6, 0x96, 0x51, 0xeb, 0x2f, 0xea, 0xab, + 0x9b, 0xa4, 0x71, 0x10, 0x9d, 0xb1, 0x92, 0x52, 0xb3, 0x00, 0x59, 0x3d, 0xa4, 0xef, 0x9e, 0xd6, + 0xdd, 0x0f, 0xfd, 0x3f, 0xd7, 0xaf, 0x5e, 0xbe, 0xbb, 0xfd, 0xe7, 0x57, 0x7f, 0x7f, 0xf5, 0x4f, + 0x16, 0x40, 0x4a, 0x44, 0x74, 0xe3, 0x38, 0x18, 0xc5, 0x41, 0x7a, 0x69, 0x0e, 0xc4, 0xe5, 0x12, + 0x10, 0xb7, 0x11, 0xb7, 0x11, 0xb7, 0x11, 0xb7, 0x11, 0xb7, 0x59, 0x86, 0xdb, 0x26, 0x41, 0x94, + 0xbe, 0x35, 0x08, 0xd9, 0x36, 0x79, 0x18, 0xa2, 0xef, 0xc6, 0x79, 0x18, 0x72, 0x2d, 0x06, 0x0f, + 0x43, 0x4c, 0x7b, 0xbf, 0xdb, 0xaa, 0xc9, 0xc3, 0x90, 0x25, 0xd5, 0x5c, 0xdf, 0xe4, 0x51, 0x88, + 0x21, 0x20, 0x60, 0xee, 0xaa, 0x24, 0xce, 0xcf, 0x57, 0xdb, 0x58, 0xa5, 0xb1, 0x1f, 0x9d, 0x07, + 0x49, 0x12, 0x8c, 0x22, 0xf7, 0xdf, 0x13, 0x35, 0x51, 0x6e, 0xa8, 0xa2, 0xb3, 0x6c, 0xbb, 0xb4, + 0x21, 0x2a, 0xfd, 0x0d, 0x99, 0x48, 0xae, 0x49, 0xae, 0x49, 0xae, 0x49, 0xae, 0x49, 0xae, 0x2d, + 0x24, 0xd7, 0x6f, 0xd6, 0x0d, 0xb2, 0xeb, 0x6d, 0xb2, 0x6b, 0xb2, 0x6b, 0xb2, 0x6b, 0xb2, 0x6b, + 0xb2, 0xeb, 0x25, 0xd5, 0xdc, 0x58, 0xdf, 0xd9, 0xd8, 0xd9, 0xda, 0x5e, 0xdf, 0x21, 0xc9, 0x26, + 0xc9, 0x26, 0xc9, 0x7e, 0x3c, 0xc9, 0xce, 0x86, 0x23, 0xba, 0xc1, 0xd0, 0x20, 0xa7, 0xce, 0x45, + 0x20, 0x85, 0x26, 0x85, 0x26, 0x85, 0x26, 0x85, 0x26, 0x85, 0xb6, 0x8c, 0x42, 0x73, 0x44, 0x23, + 0x47, 0x34, 0x12, 0x03, 0xa2, 0x62, 0xc0, 0x24, 0xf5, 0x53, 0xe5, 0x0e, 0xbe, 0xf8, 0xd1, 0x99, + 0xc9, 0x5e, 0x93, 0xdb, 0x62, 0x10, 0x0b, 0x12, 0x0b, 0x12, 0x0b, 0x12, 0x0b, 0x12, 0x0b, 0x5a, + 0x86, 0x05, 0x79, 0x9c, 0xa2, 0xfd, 0xc3, 0xe3, 0x14, 0x1e, 0xa7, 0xdc, 0x90, 0x83, 0xc7, 0x29, + 0x2b, 0x3c, 0x4e, 0xb9, 0x5f, 0x35, 0x79, 0x9c, 0x62, 0x1a, 0x10, 0x98, 0xbb, 0xaa, 0xb5, 0x54, + 0xfa, 0x85, 0x45, 0x9e, 0xcc, 0xa9, 0x47, 0xd1, 0x28, 0xf5, 0xa7, 0xa6, 0xa1, 0xd5, 0x79, 0x39, + 0xc9, 0xe0, 0x8b, 0x3a, 0xf7, 0xc7, 0x7e, 0x56, 0x7d, 0xe9, 0xd4, 0x46, 0x63, 0x15, 0x0d, 0x32, + 0xf2, 0xea, 0x46, 0x2a, 0xfd, 0x63, 0x14, 0xff, 0xee, 0x06, 0x51, 0x92, 0xfa, 0xd1, 0x40, 0xd5, + 0xee, 0xfe, 0x45, 0xb2, 0xf4, 0x37, 0xb5, 0x71, 0x3c, 0x4a, 0x47, 0x83, 0x51, 0x98, 0xe4, 0xdf, + 0x6a, 0x33, 0xbc, 0x5f, 0xf3, 0x63, 0xe5, 0x27, 0xd9, 0xaf, 0xb5, 0x20, 0x4a, 0x55, 0x7c, 0xea, + 0x4f, 0x7f, 0x40, 0xfe, 0xb5, 0x16, 0xa9, 0xe0, 0xec, 0xcb, 0xc9, 0x28, 0x4e, 0xf2, 0x6f, 0xb5, + 0x2c, 0x71, 0xa0, 0x87, 0x28, 0x94, 0xaf, 0x4b, 0xe5, 0x5e, 0xa1, 0x64, 0x2d, 0x9d, 0xb2, 0x5a, + 0x9d, 0x47, 0x7a, 0x4e, 0x2b, 0x48, 0xd2, 0x7a, 0x9a, 0xea, 0x59, 0x34, 0x37, 0x05, 0xb3, 0x8d, + 0x50, 0x4d, 0x39, 0xea, 0x34, 0x22, 0x45, 0x93, 0x30, 0xfc, 0xe9, 0x85, 0x0e, 0x98, 0xa2, 0xff, + 0xa2, 0x9d, 0x78, 0xa8, 0x62, 0x35, 0xdc, 0xbd, 0x9c, 0x5f, 0x52, 0xb4, 0x52, 0x6a, 0x76, 0x99, + 0xc0, 0xae, 0x52, 0x03, 0xeb, 0x76, 0x92, 0x34, 0x9e, 0x0c, 0xd2, 0x68, 0xce, 0xf6, 0xdb, 0xb3, + 0xdb, 0x69, 0xce, 0xef, 0xc6, 0x3b, 0x98, 0xdf, 0x83, 0xd7, 0xc9, 0xee, 0xc1, 0xab, 0xc7, 0xca, + 0xf7, 0x9a, 0x0b, 0x91, 0xbd, 0xf6, 0x42, 0xd0, 0x17, 0x32, 0x7d, 0x6c, 0x39, 0x3f, 0xb9, 0x24, + 0x03, 0xd1, 0x65, 0x18, 0x78, 0x06, 0x51, 0x8e, 0x7a, 0x15, 0xff, 0xf2, 0x4b, 0x78, 0xf1, 0xb3, + 0x63, 0x96, 0xd2, 0xde, 0xf7, 0xed, 0xd3, 0x9c, 0x92, 0xfc, 0x4d, 0x7e, 0xa0, 0x5b, 0xd2, 0x8f, + 0xcf, 0x4f, 0x65, 0xd6, 0x4b, 0xba, 0x80, 0x86, 0xd3, 0x17, 0xad, 0xa7, 0x2c, 0xba, 0x4e, 0x53, + 0xb4, 0x9f, 0x9a, 0x68, 0x3f, 0x1d, 0xd1, 0x7d, 0x0a, 0x22, 0x2b, 0x60, 0xed, 0x05, 0xe5, 0x22, + 0x7d, 0xc7, 0x9f, 0xa4, 0x5f, 0x54, 0x94, 0x06, 0x83, 0x2c, 0x2a, 0xba, 0xa9, 0x8e, 0xd3, 0x92, + 0xdc, 0x52, 0xef, 0xbb, 0x78, 0xd9, 0x7c, 0x4d, 0x4b, 0xfa, 0x51, 0xdb, 0x31, 0xb7, 0xce, 0x63, + 0x6d, 0x23, 0xc7, 0xd8, 0xba, 0x8f, 0xad, 0x8d, 0x1d, 0x53, 0x1b, 0x3b, 0x96, 0x36, 0x75, 0x0c, + 0x2d, 0x3b, 0xef, 0xa3, 0xed, 0x58, 0xf9, 0x06, 0xbe, 0xd4, 0x34, 0xa6, 0xf0, 0xba, 0x7a, 0x50, + 0x2a, 0x27, 0x2d, 0x11, 0xf7, 0x7d, 0x09, 0x86, 0x6a, 0x41, 0xe2, 0xf4, 0x05, 0xca, 0x5b, 0x57, + 0x65, 0x84, 0x64, 0x84, 0x64, 0x84, 0x64, 0x84, 0x64, 0x84, 0xbc, 0x63, 0x75, 0x27, 0xa3, 0x51, + 0xa8, 0xfc, 0x48, 0x67, 0x88, 0x5c, 0x63, 0x88, 0x5c, 0x7a, 0x36, 0x1a, 0x5a, 0xeb, 0xf2, 0x57, + 0x5e, 0xfe, 0x81, 0x1b, 0xc3, 0x21, 0xc3, 0x21, 0xc3, 0x21, 0xc3, 0x21, 0x09, 0x23, 0x09, 0xe3, + 0x53, 0x9e, 0x8d, 0xa6, 0xe5, 0xb0, 0x7a, 0x97, 0xc1, 0x32, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x32, + 0x2a, 0x0a, 0x8c, 0x8a, 0x7a, 0x97, 0xa9, 0x6a, 0x5c, 0x9e, 0xaa, 0xb9, 0xe5, 0x46, 0x63, 0x25, + 0xae, 0x89, 0x96, 0x1a, 0x53, 0xfd, 0xb1, 0x86, 0x5a, 0x66, 0x4c, 0xb6, 0x1f, 0xe8, 0xec, 0xfc, + 0x36, 0xd1, 0x02, 0x63, 0x5a, 0x95, 0x0c, 0x2c, 0x27, 0x35, 0xaa, 0x4e, 0x96, 0xd4, 0xc5, 0xf7, + 0x49, 0xa6, 0x96, 0xc9, 0xd4, 0x24, 0x4c, 0x03, 0xd7, 0x8f, 0x95, 0xef, 0xfa, 0xc3, 0xff, 0xf3, + 0x07, 0x2a, 0x1a, 0x5c, 0xba, 0xe3, 0x38, 0x38, 0xf7, 0xe3, 0x4b, 0x8d, 0x14, 0xeb, 0x5b, 0x52, + 0x94, 0x0c, 0x98, 0xf6, 0xd4, 0xa9, 0x3f, 0x09, 0x33, 0x90, 0x39, 0xc5, 0xb6, 0xe4, 0x79, 0xe4, + 0x79, 0xe4, 0x79, 0xe4, 0x79, 0xe4, 0x79, 0x77, 0xad, 0x8e, 0x87, 0x81, 0x10, 0x11, 0x7b, 0xd1, + 0xcc, 0xa0, 0xb7, 0xb0, 0xf4, 0xd6, 0x55, 0x19, 0x22, 0x19, 0x22, 0x19, 0x22, 0x19, 0x22, 0x19, + 0x22, 0xef, 0x58, 0x5d, 0x30, 0x54, 0x51, 0x1a, 0xa4, 0x97, 0xb1, 0x3a, 0xd5, 0x19, 0x26, 0x35, + 0xe4, 0x22, 0x9c, 0xe6, 0xfc, 0xd6, 0x76, 0xfd, 0x44, 0xa3, 0xa5, 0x2f, 0x1e, 0x6c, 0xe7, 0xf0, + 0xe0, 0x83, 0xd7, 0x6e, 0xf4, 0xfe, 0xd5, 0xe9, 0xfe, 0xe2, 0xf5, 0x7e, 0x3b, 0x68, 0xe8, 0xb2, + 0xf8, 0x2c, 0xe5, 0x93, 0x68, 0x1d, 0xbb, 0x64, 0x68, 0x76, 0xe2, 0x41, 0xa7, 0xd9, 0xee, 0x79, + 0xbd, 0x8e, 0x37, 0xfb, 0x32, 0x7f, 0xd8, 0x8e, 0x8d, 0x49, 0x4b, 0x43, 0x4f, 0x78, 0xb7, 0xdb, + 0xa9, 0xef, 0xbd, 0xaf, 0x1f, 0xf2, 0xe1, 0x96, 0xf0, 0x70, 0xdb, 0x9d, 0xb6, 0x67, 0xf2, 0x01, + 0x6b, 0xb9, 0x52, 0x5f, 0x7a, 0xc4, 0x17, 0xc9, 0xb8, 0xc6, 0x7e, 0x92, 0x04, 0x17, 0x1a, 0xc9, + 0xd6, 0xe2, 0x82, 0xe4, 0x59, 0xe4, 0x59, 0xe4, 0x59, 0xe4, 0x59, 0xe4, 0x59, 0x77, 0xac, 0x8e, + 0xa9, 0x48, 0x8c, 0xc0, 0x18, 0x07, 0xa3, 0x38, 0x48, 0x35, 0x1e, 0x14, 0xe6, 0x57, 0x64, 0x68, + 0x64, 0x68, 0x64, 0x68, 0x64, 0x68, 0x64, 0x68, 0xbc, 0x63, 0x75, 0x93, 0x20, 0x4a, 0xdf, 0x6a, + 0x0c, 0x8c, 0x9b, 0xac, 0xc3, 0x7c, 0xfa, 0x8d, 0xb1, 0x0e, 0xb3, 0xfc, 0xeb, 0xb2, 0x0e, 0xd3, + 0x5a, 0x55, 0x5a, 0xdf, 0x64, 0x15, 0xa6, 0xb8, 0xab, 0xf4, 0x39, 0x97, 0xb3, 0x7c, 0x17, 0x51, + 0xb9, 0xb9, 0x9c, 0x25, 0x0e, 0xf0, 0x96, 0x31, 0x93, 0x33, 0x0d, 0xce, 0x55, 0x9c, 0x94, 0x3f, + 0x94, 0x73, 0x7e, 0x1d, 0xe1, 0x53, 0x39, 0x57, 0x39, 0x95, 0x13, 0x8a, 0x57, 0x73, 0x2a, 0x67, + 0xb5, 0xc3, 0x55, 0xe9, 0x53, 0x39, 0x07, 0x0b, 0xcb, 0xd7, 0x94, 0xa8, 0x9c, 0x5f, 0x4f, 0x4f, + 0x9a, 0x72, 0x8d, 0x69, 0x4a, 0x6c, 0x37, 0xaa, 0xdb, 0x9d, 0x1a, 0x73, 0xab, 0xc6, 0xdc, 0xab, + 0x29, 0x37, 0xab, 0x87, 0x37, 0x95, 0x9d, 0xa6, 0x2c, 0xdb, 0xfd, 0xe6, 0x17, 0x1a, 0x2a, 0x7f, + 0xe8, 0x66, 0xa8, 0xfd, 0xc2, 0x0f, 0xf5, 0x97, 0x11, 0xde, 0xbe, 0xbc, 0x26, 0x8d, 0xd4, 0x9b, + 0x24, 0xd1, 0xbe, 0x0f, 0xd8, 0xc4, 0x1e, 0x60, 0xa3, 0xfb, 0x7f, 0x4d, 0xed, 0xfd, 0x35, 0xbe, + 0xef, 0xd7, 0xf8, 0x9e, 0x5f, 0xd3, 0xfb, 0x7d, 0xed, 0x5a, 0x03, 0xa7, 0x7d, 0x8f, 0xaf, 0xb9, + 0xfd, 0xbd, 0x06, 0xf6, 0xf6, 0x1a, 0xda, 0xd7, 0x6b, 0x60, 0x2b, 0xb3, 0xc9, 0xfd, 0xbc, 0x86, + 0x97, 0x9f, 0x9a, 0xde, 0xc7, 0x8b, 0xb0, 0xe3, 0xd4, 0xc0, 0xfe, 0x5d, 0xa3, 0x7b, 0x77, 0x51, + 0x54, 0xce, 0xf4, 0x9e, 0x5d, 0x08, 0xdd, 0xb3, 0x74, 0xdf, 0x6c, 0xdf, 0x96, 0x4d, 0xa4, 0x1a, + 0x52, 0x2a, 0x5f, 0x54, 0x18, 0x8e, 0x0c, 0x72, 0xca, 0x3b, 0xd7, 0x27, 0xa9, 0x24, 0xa9, 0x24, + 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x24, + 0xa9, 0x24, 0xa9, 0x24, 0xa9, 0x94, 0x44, 0x2a, 0x63, 0x95, 0xc6, 0x7e, 0x94, 0x9c, 0x07, 0x49, + 0x12, 0x8c, 0x22, 0x83, 0xec, 0xf2, 0x21, 0x41, 0x48, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, + 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, 0x49, 0x33, + 0x49, 0x33, 0x65, 0x5c, 0xa1, 0xec, 0x8a, 0x5e, 0x4d, 0xfd, 0x7f, 0xf9, 0xf5, 0x50, 0xfa, 0x00, + 0x67, 0xed, 0x69, 0xb5, 0x79, 0xfb, 0x05, 0x67, 0xf6, 0x2c, 0xbf, 0xa8, 0xac, 0x51, 0x52, 0x5b, + 0x1f, 0xcc, 0xec, 0x72, 0x96, 0xb5, 0xc1, 0xac, 0xb3, 0x0d, 0x46, 0x54, 0x16, 0x82, 0x6d, 0x30, + 0x6c, 0x83, 0xf9, 0x91, 0x87, 0xc6, 0x36, 0x18, 0x6b, 0xa8, 0x07, 0x53, 0xc9, 0xb6, 0x39, 0x71, + 0xe3, 0xce, 0xdc, 0xb8, 0x53, 0x37, 0xed, 0xdc, 0xf5, 0x72, 0x49, 0xa6, 0x92, 0x4b, 0xf3, 0xc1, + 0x4c, 0x25, 0x97, 0x70, 0xa3, 0x4c, 0x25, 0x33, 0x95, 0xac, 0x5b, 0xe5, 0x98, 0x4a, 0x66, 0x2a, + 0x99, 0xa9, 0x64, 0xf8, 0xfb, 0x61, 0x1b, 0x0c, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, + 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, 0x49, 0x25, + 0x49, 0x25, 0x34, 0xa9, 0x64, 0x1b, 0x0c, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, + 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x26, 0x69, 0x66, 0x75, + 0x68, 0x26, 0xdb, 0x60, 0x1e, 0x71, 0x3d, 0xb0, 0x36, 0x98, 0x12, 0xb7, 0x62, 0x95, 0xaf, 0x1f, + 0x5c, 0xb8, 0x86, 0xaf, 0x61, 0x4e, 0xa9, 0x9d, 0x4a, 0xf1, 0x64, 0x90, 0x46, 0x73, 0xc2, 0xd1, + 0x9e, 0x89, 0xde, 0x9c, 0x4b, 0xee, 0x1d, 0xcc, 0xe5, 0xf5, 0x3a, 0x99, 0xbc, 0x5e, 0x3d, 0x56, + 0xbe, 0xd7, 0x5c, 0x88, 0xe7, 0xf5, 0x66, 0xe2, 0x49, 0x59, 0x08, 0xf7, 0x02, 0x58, 0xc5, 0x9d, + 0x5f, 0xd4, 0xe5, 0xf4, 0x0d, 0x04, 0xc3, 0x82, 0xdf, 0xb6, 0xd3, 0x0a, 0x92, 0xb4, 0x9e, 0xa6, + 0xe5, 0x34, 0x5d, 0x4c, 0x49, 0x4d, 0x23, 0x54, 0xe7, 0x2a, 0xca, 0x90, 0x4d, 0x34, 0x09, 0xc3, + 0x12, 0xd6, 0xee, 0xed, 0xfb, 0x5f, 0xcb, 0xbf, 0x48, 0x27, 0x1e, 0xaa, 0x58, 0x0d, 0x77, 0x2f, + 0xe7, 0x97, 0x80, 0xd6, 0x96, 0x92, 0x1d, 0x21, 0x8a, 0x03, 0x2c, 0xc1, 0xf3, 0x3d, 0xcb, 0xe3, + 0x15, 0xeb, 0xea, 0x8a, 0x73, 0x48, 0xc5, 0xfc, 0xa4, 0x82, 0x94, 0xb4, 0x2c, 0xe5, 0x34, 0xab, + 0x94, 0xc5, 0xbc, 0xfa, 0xe7, 0xbf, 0xa8, 0x02, 0x5e, 0x92, 0x13, 0x26, 0xc3, 0x93, 0xc2, 0x5e, + 0x4d, 0x9e, 0xad, 0xcc, 0x7e, 0x6a, 0x41, 0x2a, 0x54, 0x6c, 0xb3, 0x71, 0xe1, 0x4d, 0xc5, 0x65, + 0x9c, 0xe5, 0x94, 0x7a, 0x56, 0x53, 0xd6, 0x59, 0x4c, 0xe9, 0x67, 0x2d, 0xa5, 0x9f, 0xa5, 0x94, + 0x7d, 0x56, 0x82, 0xe5, 0x9a, 0x8b, 0x6e, 0xbe, 0x75, 0xc2, 0xc4, 0x77, 0xd3, 0xcb, 0xb1, 0x2a, + 0x7e, 0x29, 0xf2, 0x0d, 0xbf, 0xb2, 0xb8, 0x44, 0xd1, 0x90, 0xbb, 0x94, 0x89, 0x06, 0xa5, 0x1d, + 0x2c, 0x97, 0x79, 0x80, 0xac, 0xe5, 0xa0, 0xb8, 0xec, 0x03, 0x61, 0x6d, 0x07, 0xbf, 0xda, 0x0e, + 0x78, 0x75, 0x1d, 0xe4, 0x62, 0x53, 0xe3, 0xb2, 0x26, 0x06, 0xe4, 0x9e, 0xa5, 0xfc, 0x85, 0xee, + 0xf9, 0x95, 0xb8, 0xd2, 0x5d, 0xb7, 0x6b, 0xd3, 0xea, 0xe2, 0x74, 0xb9, 0x3a, 0xed, 0x2e, 0x4f, + 0xbb, 0xeb, 0xd3, 0xed, 0x02, 0xcb, 0xcb, 0x3b, 0xae, 0x48, 0x5e, 0xe9, 0x1e, 0x26, 0x7e, 0xa2, + 0x6f, 0x90, 0x55, 0x76, 0x35, 0xae, 0x73, 0x47, 0x73, 0x9d, 0x46, 0x5c, 0xa8, 0x6e, 0x57, 0x6a, + 0xcc, 0xa5, 0x1a, 0x73, 0xad, 0xa6, 0x5c, 0x6c, 0xb9, 0xae, 0xb6, 0x64, 0x97, 0xab, 0xcd, 0xf5, + 0xde, 0x74, 0xc1, 0xfa, 0x6b, 0xc1, 0xa7, 0x17, 0xd5, 0x5b, 0xf7, 0xbd, 0xc6, 0xba, 0x6f, 0xd9, + 0x8e, 0xda, 0x94, 0xc3, 0x36, 0xee, 0xb8, 0x8d, 0x3b, 0x70, 0xd3, 0x8e, 0x5c, 0x8f, 0x43, 0xd7, + 0xe4, 0xd8, 0xb5, 0x3b, 0xf8, 0xfc, 0x82, 0x7e, 0xe2, 0xaa, 0xaf, 0xa9, 0x8a, 0x23, 0x3f, 0x74, + 0x75, 0x3a, 0xfd, 0x25, 0xaf, 0x71, 0x57, 0x10, 0xcd, 0x5a, 0xac, 0x37, 0x20, 0x18, 0x0b, 0x0c, + 0x26, 0x03, 0x04, 0x44, 0xa0, 0x30, 0x1d, 0x30, 0x60, 0x02, 0x07, 0x4c, 0x00, 0x41, 0x09, 0x24, + 0x7a, 0x03, 0x8a, 0xe6, 0xc0, 0x62, 0x2c, 0xc0, 0xe4, 0x17, 0xd6, 0x33, 0x9e, 0xfc, 0xbb, 0x3e, + 0x47, 0xc7, 0xd8, 0x72, 0xb0, 0x20, 0x63, 0x3c, 0xd8, 0x20, 0x04, 0x1d, 0xa8, 0xe0, 0x83, 0x12, + 0x84, 0xe0, 0x82, 0x11, 0x5c, 0x50, 0x42, 0x0b, 0x4e, 0x66, 0x82, 0x94, 0xa1, 0x60, 0x65, 0x3c, + 0x68, 0xe5, 0x02, 0xe4, 0xcc, 0x24, 0x1e, 0x4d, 0x52, 0xe5, 0xa6, 0xfe, 0x99, 0x79, 0x9b, 0x5d, + 0x38, 0xb2, 0x7b, 0x64, 0x33, 0x6c, 0x2b, 0x66, 0x9b, 0xf0, 0x60, 0xc2, 0x1d, 0x52, 0xd8, 0x83, + 0x0c, 0x7f, 0x68, 0x61, 0x10, 0x36, 0x1c, 0xc2, 0x86, 0x45, 0xd4, 0xf0, 0x68, 0x36, 0x4c, 0x1a, + 0x0e, 0x97, 0xf9, 0x4b, 0xd1, 0x3e, 0x44, 0xe2, 0xbb, 0x5e, 0x47, 0xfb, 0x70, 0x89, 0xef, 0xc5, + 0xa8, 0x6d, 0x00, 0x51, 0xcc, 0x0c, 0xa3, 0x78, 0xe8, 0x83, 0xe1, 0x82, 0x57, 0x4c, 0x0f, 0xaf, + 0x00, 0x07, 0x37, 0x4b, 0x62, 0x19, 0x1e, 0x76, 0xf1, 0xa0, 0x5c, 0x00, 0x83, 0x08, 0x40, 0xdd, + 0xf3, 0x6d, 0x55, 0xf7, 0xbf, 0x52, 0xd5, 0x1f, 0xa9, 0xea, 0xa6, 0x87, 0x6c, 0x88, 0xd4, 0xf9, + 0x17, 0x94, 0x62, 0x45, 0xdb, 0x10, 0x0f, 0xbc, 0xfb, 0x37, 0xe8, 0xf3, 0x9c, 0xd3, 0x51, 0xfc, + 0x87, 0x1f, 0x0f, 0x83, 0xe8, 0xcc, 0xf5, 0x87, 0xc3, 0x58, 0x25, 0x09, 0x4e, 0x12, 0xe5, 0x1e, + 0xd9, 0x98, 0x44, 0x61, 0x12, 0x85, 0x49, 0x14, 0x26, 0x51, 0x98, 0x44, 0x61, 0x12, 0x05, 0xca, + 0xeb, 0x04, 0xe3, 0x8b, 0x8d, 0x45, 0x94, 0x72, 0xa3, 0x91, 0xfb, 0x9f, 0x51, 0xa4, 0x80, 0x52, + 0x2a, 0x6b, 0x6f, 0x01, 0x64, 0x39, 0xf0, 0xd3, 0x54, 0xc5, 0x11, 0x4c, 0x56, 0xc5, 0x79, 0xf9, + 0xf2, 0x68, 0xd5, 0xdd, 0xe9, 0xff, 0x75, 0xb4, 0xe6, 0xee, 0xf4, 0x67, 0x5f, 0xd7, 0xb2, 0xdf, + 0x66, 0xdf, 0xd7, 0x8f, 0x56, 0xdd, 0x8d, 0xc5, 0xf7, 0xcd, 0xa3, 0x55, 0x77, 0xb3, 0xff, 0xea, + 0xf8, 0xf8, 0xf5, 0xab, 0x3f, 0xdf, 0x5c, 0x3d, 0xfe, 0x1f, 0xbe, 0xfc, 0xdb, 0xd1, 0xf1, 0xf1, + 0xf8, 0xcf, 0xf6, 0xd5, 0xf4, 0xd7, 0xd6, 0x55, 0xff, 0x1f, 0xaf, 0xfe, 0x89, 0xe2, 0x7b, 0xa7, + 0x82, 0x1e, 0x1f, 0xbf, 0xee, 0xff, 0xdd, 0x21, 0x05, 0xa8, 0x20, 0x05, 0x38, 0xf7, 0x93, 0xdf, + 0x71, 0x40, 0x7f, 0x26, 0x0d, 0x61, 0x3e, 0x61, 0x3e, 0x61, 0x3e, 0x61, 0x3e, 0x61, 0x3e, 0x61, + 0x3e, 0xdc, 0x59, 0xe9, 0x5b, 0x20, 0x5c, 0xbf, 0xc9, 0xa3, 0xd2, 0x3b, 0x1f, 0x1e, 0x95, 0x4a, + 0xc0, 0x36, 0x4b, 0x62, 0xf1, 0xa8, 0x54, 0x9a, 0x77, 0xbe, 0xad, 0xea, 0x3c, 0x2a, 0x7d, 0xb4, + 0xaa, 0xbf, 0x59, 0xa7, 0xae, 0xcb, 0xc0, 0x41, 0x38, 0x52, 0x30, 0x3f, 0x62, 0x20, 0x3f, 0xa2, + 0xd2, 0x38, 0x18, 0x00, 0x65, 0x48, 0x66, 0xf2, 0x30, 0x47, 0xc2, 0x1c, 0x09, 0x73, 0x24, 0xcc, + 0x91, 0x30, 0x47, 0xc2, 0x1c, 0x09, 0x96, 0xd7, 0x49, 0xc6, 0xa7, 0x2e, 0x44, 0x90, 0xba, 0x19, + 0xa8, 0xb6, 0x98, 0x29, 0x61, 0xa6, 0x84, 0x99, 0x12, 0x66, 0x4a, 0x98, 0x29, 0x11, 0xa7, 0xea, + 0x5b, 0x9b, 0x9b, 0x6f, 0x58, 0x4f, 0xce, 0x64, 0x09, 0x93, 0x25, 0x42, 0x92, 0x25, 0xe5, 0x0e, + 0x53, 0x7f, 0x62, 0xc6, 0xa4, 0xcc, 0xb9, 0xeb, 0x4c, 0x9b, 0x30, 0x6d, 0xc2, 0xb4, 0x09, 0xd3, + 0x26, 0x4c, 0x9b, 0x30, 0x6d, 0xf2, 0x44, 0xaf, 0xa3, 0xa2, 0xc9, 0xb9, 0x8a, 0x67, 0xdb, 0xf2, + 0x80, 0x0a, 0xc7, 0x37, 0x00, 0x64, 0x69, 0x44, 0x93, 0xf3, 0xe9, 0xcb, 0xba, 0xaa, 0x2a, 0xa0, + 0xab, 0xd4, 0x60, 0x29, 0xcd, 0x5b, 0xc4, 0x1f, 0x94, 0xc3, 0xc0, 0x96, 0xc9, 0x30, 0x19, 0x9e, + 0xd4, 0xf2, 0x35, 0x67, 0xf9, 0xb7, 0xe9, 0x97, 0xec, 0x4f, 0xb5, 0x3b, 0x03, 0x79, 0x75, 0xac, + 0x1c, 0xc7, 0x51, 0x4a, 0x03, 0x0a, 0xe9, 0x64, 0x2f, 0xc2, 0x1d, 0x9d, 0xba, 0x89, 0x8a, 0x2f, + 0x82, 0x01, 0xc0, 0xb0, 0xcc, 0x25, 0x89, 0x38, 0x37, 0xb3, 0xaa, 0xcc, 0x85, 0x73, 0x33, 0x25, + 0x30, 0x14, 0xce, 0xcd, 0x24, 0xbc, 0xb9, 0xf1, 0xf0, 0x8d, 0xcf, 0xcd, 0x9c, 0x06, 0x10, 0x84, + 0x88, 0x76, 0x6f, 0x64, 0x33, 0x1f, 0xd8, 0x40, 0x02, 0x1c, 0x4c, 0xa0, 0x43, 0x0a, 0x78, 0x90, + 0x81, 0x0f, 0x2d, 0x00, 0xc2, 0x06, 0x42, 0xd8, 0x80, 0x88, 0x1a, 0x18, 0xcd, 0x67, 0x1e, 0x56, + 0x00, 0x52, 0x75, 0xa6, 0x03, 0xe6, 0x75, 0x42, 0xc0, 0xe8, 0xb6, 0x84, 0x07, 0x7d, 0xa0, 0xc9, + 0xed, 0x09, 0xa0, 0x41, 0x13, 0x2e, 0x78, 0x22, 0x06, 0x51, 0xe8, 0x60, 0x8a, 0x1a, 0x54, 0xe1, + 0x83, 0x2b, 0x7c, 0x90, 0x45, 0x0f, 0xb6, 0x18, 0x41, 0x17, 0x24, 0xf8, 0xc2, 0x05, 0xe1, 0x5c, + 0x20, 0xc0, 0xed, 0x0f, 0x0f, 0x3a, 0x56, 0xb8, 0x6d, 0x10, 0x0f, 0x85, 0x6d, 0xb4, 0x02, 0x40, + 0xb4, 0xf0, 0x8d, 0x1c, 0xc6, 0x45, 0x84, 0x73, 0xf4, 0xb0, 0x2e, 0x26, 0xbc, 0x8b, 0x09, 0xf3, + 0x52, 0xc2, 0x3d, 0x56, 0xd8, 0x07, 0x0b, 0xff, 0xf9, 0x4b, 0x84, 0x29, 0x9b, 0x79, 0xd0, 0xeb, + 0xc1, 0x6c, 0xb3, 0x78, 0x28, 0xc6, 0x6e, 0x03, 0x8a, 0x86, 0xd5, 0x98, 0x74, 0xf7, 0x83, 0x19, + 0x22, 0x56, 0x50, 0x1b, 0x97, 0x84, 0x80, 0xbb, 0x25, 0x31, 0x41, 0x1b, 0x9b, 0x96, 0xe4, 0x04, + 0xee, 0xfc, 0x00, 0x0f, 0x1f, 0xb7, 0x4d, 0xc7, 0xff, 0x4a, 0xd3, 0x29, 0xd8, 0x74, 0x50, 0xb7, + 0x6f, 0x88, 0xb6, 0xa1, 0x17, 0x94, 0xea, 0x47, 0x3e, 0xfd, 0x17, 0x7c, 0x3e, 0xe0, 0x3e, 0x18, + 0x71, 0xdb, 0xc7, 0x83, 0x40, 0x1e, 0x6e, 0xfb, 0x87, 0x90, 0xe0, 0xc0, 0xa4, 0xd9, 0x73, 0xb4, + 0x8e, 0x49, 0xb3, 0xe7, 0x18, 0x04, 0x93, 0x66, 0x05, 0x0b, 0xca, 0xa4, 0x99, 0x7c, 0xd6, 0x23, + 0x20, 0x69, 0x06, 0xba, 0xbd, 0xe4, 0xa1, 0x88, 0x8b, 0xb0, 0xcd, 0x64, 0x39, 0xba, 0x81, 0x6d, + 0x37, 0x59, 0x12, 0x90, 0xdb, 0x4e, 0xee, 0x7d, 0x2c, 0x40, 0xdb, 0x4f, 0x48, 0xa9, 0xe4, 0x51, + 0x2a, 0x90, 0xe9, 0xa0, 0x0f, 0xba, 0x76, 0x98, 0x41, 0x6c, 0xa4, 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, + 0xa4, 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, 0x16, 0x51, 0x27, 0xac, 0x69, 0xa7, 0x0f, 0x05, 0xda, 0x2d, + 0x16, 0x1d, 0x3c, 0xf2, 0xc3, 0xa2, 0x03, 0x1b, 0x11, 0xde, 0x92, 0x98, 0x2c, 0x3a, 0xb0, 0x3d, + 0x86, 0xdc, 0x36, 0x1d, 0x16, 0x1d, 0x14, 0x6e, 0x3a, 0x80, 0xd3, 0x59, 0x45, 0x9b, 0x0f, 0xeb, + 0x0d, 0x7e, 0xe8, 0xc3, 0xe4, 0x18, 0xbc, 0xfb, 0x75, 0xd2, 0x11, 0x70, 0x81, 0xc1, 0x54, 0x38, + 0xa6, 0xc5, 0x7e, 0x44, 0x2c, 0xa6, 0xc5, 0x9e, 0x43, 0x10, 0x99, 0x16, 0x7b, 0x86, 0x41, 0x30, + 0x2d, 0x56, 0xb0, 0xa0, 0x4c, 0x8b, 0xc9, 0xa7, 0x34, 0x42, 0xda, 0x70, 0xde, 0x02, 0x27, 0xc4, + 0x36, 0x99, 0x10, 0x7b, 0xe4, 0x87, 0x09, 0xb1, 0x4a, 0xb1, 0x7a, 0x26, 0xc4, 0x6c, 0x8d, 0x1e, + 0xb7, 0x4d, 0x87, 0x09, 0xb1, 0xc2, 0x4d, 0x67, 0x7d, 0x93, 0xe9, 0x30, 0x4b, 0x81, 0x20, 0xae, + 0x54, 0x4c, 0x87, 0x21, 0x4b, 0x82, 0x32, 0xc6, 0x07, 0x64, 0xb6, 0xfe, 0x92, 0x5c, 0x12, 0x66, + 0xed, 0xdf, 0x1d, 0xbc, 0x5e, 0xbb, 0x33, 0xaf, 0xd6, 0xe4, 0x30, 0x7e, 0x3c, 0xad, 0x07, 0xd0, + 0x78, 0xa8, 0xf4, 0x33, 0x60, 0xda, 0x19, 0x0c, 0x57, 0x71, 0x58, 0xe3, 0x63, 0xd4, 0x88, 0xc3, + 0x1a, 0x1f, 0xa3, 0xe8, 0x1c, 0xd6, 0xf8, 0x5c, 0xe0, 0xc0, 0x61, 0x8d, 0x72, 0x50, 0x1e, 0x5c, + 0x7a, 0x38, 0xf7, 0x5a, 0xa1, 0xf2, 0x4f, 0x63, 0x75, 0x8a, 0xe4, 0xb3, 0x16, 0x3d, 0x65, 0x40, + 0x73, 0x99, 0x9c, 0x83, 0x39, 0x10, 0x7e, 0xfd, 0x7a, 0x06, 0x2a, 0x6b, 0x53, 0xd0, 0x40, 0x60, + 0x09, 0x20, 0x81, 0xe9, 0x61, 0xe8, 0xbf, 0xa8, 0x4b, 0x0c, 0x10, 0xe9, 0xb4, 0x82, 0x24, 0xad, + 0xa7, 0x29, 0xc8, 0x6c, 0xf6, 0xfd, 0x20, 0x6a, 0x84, 0x6a, 0x1a, 0xa1, 0xa6, 0x90, 0x3f, 0x9a, + 0x84, 0x21, 0x00, 0xff, 0xd8, 0xf7, 0xbf, 0xe2, 0x09, 0xd5, 0x89, 0x87, 0x2a, 0x56, 0xc3, 0xdd, + 0xcb, 0xb9, 0x48, 0x95, 0x36, 0x27, 0xb0, 0x7c, 0x88, 0x15, 0x79, 0x10, 0x84, 0x55, 0x2c, 0x49, + 0x1a, 0x4f, 0x06, 0x69, 0x34, 0x47, 0x1d, 0xed, 0xd9, 0x83, 0x69, 0xce, 0x9f, 0x8b, 0x77, 0x30, + 0x7f, 0x1a, 0x5e, 0x27, 0x7b, 0x1a, 0x5e, 0x3d, 0x56, 0xbe, 0xd7, 0x4a, 0x86, 0x27, 0x5e, 0x2b, + 0xf1, 0xa7, 0xe0, 0x69, 0xfa, 0xbb, 0x57, 0x4f, 0x1a, 0xf3, 0xdb, 0x9e, 0xfe, 0x69, 0xfa, 0xd7, + 0x9d, 0xd3, 0xc3, 0xf9, 0x2d, 0x72, 0x11, 0xa9, 0xfd, 0x4e, 0x82, 0x8b, 0x48, 0x9f, 0xe1, 0x14, + 0x2a, 0xb3, 0x93, 0xf4, 0x85, 0xc5, 0x96, 0x60, 0xda, 0x02, 0x24, 0x68, 0xbe, 0x81, 0x68, 0x57, + 0x7c, 0x74, 0xd3, 0x6b, 0xad, 0xfa, 0x6c, 0x46, 0xa3, 0xbd, 0x38, 0x61, 0x10, 0xfd, 0xee, 0x66, + 0x6c, 0xdd, 0x0d, 0x86, 0xda, 0xcd, 0xe5, 0x3a, 0xc3, 0x72, 0x4b, 0x0c, 0xcd, 0xfe, 0xc2, 0xcc, + 0x81, 0x82, 0xb1, 0x83, 0x03, 0x93, 0x07, 0x04, 0x10, 0x07, 0x01, 0xa6, 0x13, 0xfe, 0x30, 0x89, + 0x7d, 0x98, 0x04, 0x3e, 0x4a, 0xa2, 0xde, 0x6e, 0x5c, 0x64, 0x2c, 0xc1, 0x0e, 0x90, 0x48, 0x37, + 0x99, 0x30, 0x5f, 0x4e, 0x8c, 0xdf, 0x0e, 0x77, 0x84, 0x31, 0xcf, 0x7e, 0xc2, 0x0b, 0xd4, 0x3c, + 0x85, 0xb6, 0xc6, 0x40, 0xcc, 0x4d, 0x21, 0xcc, 0x40, 0x98, 0x35, 0x42, 0x18, 0x42, 0x18, 0x42, + 0x18, 0x42, 0x18, 0x5b, 0x21, 0x8c, 0xa9, 0x85, 0x8e, 0x86, 0xb7, 0x28, 0x43, 0x6c, 0x4d, 0x36, + 0xbc, 0x25, 0xd9, 0x78, 0xa1, 0x1d, 0x42, 0x61, 0x1d, 0x54, 0x21, 0x1d, 0x4a, 0xe1, 0x1c, 0x5c, + 0xa1, 0x1c, 0x5c, 0x61, 0x1c, 0x5a, 0x21, 0x5c, 0xb5, 0x4e, 0xe4, 0x4c, 0x6f, 0x21, 0x76, 0xfc, + 0x34, 0xf5, 0x07, 0x5f, 0xd4, 0x70, 0xb6, 0xc9, 0xd7, 0x7c, 0xed, 0x4b, 0xee, 0xc5, 0xee, 0x0a, + 0x66, 0xba, 0x4c, 0x09, 0xa2, 0xb2, 0x1c, 0xa6, 0xa2, 0x1c, 0xa9, 0x92, 0x1c, 0xb2, 0x82, 0x1c, + 0xad, 0x72, 0x1c, 0xb6, 0x62, 0x1c, 0xb6, 0x52, 0x1c, 0xb5, 0x42, 0xbc, 0xda, 0xe5, 0xa2, 0x30, + 0x95, 0xe0, 0xb9, 0xd7, 0x19, 0x8e, 0xd2, 0x54, 0x0d, 0xdd, 0x7f, 0x4f, 0xfc, 0x21, 0x82, 0xdf, + 0x01, 0xda, 0x28, 0x02, 0xb7, 0x41, 0x44, 0xeb, 0xc6, 0x10, 0xf3, 0x9e, 0xa2, 0x5f, 0x69, 0x4f, + 0xc1, 0x72, 0xee, 0xef, 0x0b, 0xc5, 0x72, 0x6e, 0xd8, 0x60, 0x6b, 0xd0, 0x7c, 0xf2, 0xd3, 0xaa, + 0x73, 0x3f, 0xf9, 0x1d, 0x87, 0x11, 0xde, 0x92, 0x8a, 0x74, 0x90, 0x74, 0x90, 0x74, 0x90, 0x74, + 0x90, 0x74, 0x90, 0x74, 0x10, 0xca, 0xeb, 0xa0, 0xcc, 0x89, 0x04, 0x9a, 0x0b, 0x09, 0x36, 0x07, + 0x12, 0xa8, 0x8b, 0x1c, 0x71, 0xce, 0x23, 0xea, 0xcc, 0x6e, 0xd0, 0x39, 0x8e, 0xc8, 0xa3, 0xe7, + 0x90, 0x26, 0xe7, 0x23, 0xce, 0x65, 0x44, 0x57, 0xf5, 0x37, 0xeb, 0xd4, 0x75, 0x19, 0x38, 0x08, + 0x47, 0x8a, 0x3e, 0x3b, 0x79, 0xed, 0xf7, 0xb0, 0xec, 0xe4, 0xfd, 0x46, 0x3f, 0xe3, 0x8d, 0x5a, + 0x6b, 0x93, 0x13, 0x0c, 0xd9, 0xba, 0x6b, 0x95, 0xca, 0xa3, 0xab, 0xba, 0xd4, 0xb6, 0xdd, 0xf9, + 0xbf, 0x62, 0xcf, 0x6e, 0x21, 0x6f, 0x24, 0x4a, 0x12, 0xff, 0x76, 0x37, 0xb7, 0xb9, 0x96, 0x97, + 0x25, 0x51, 0xd8, 0xf8, 0x52, 0xea, 0x85, 0xd9, 0xf8, 0xc2, 0xc6, 0x97, 0x99, 0x20, 0x6c, 0x7c, + 0xa9, 0x12, 0x30, 0x62, 0xe3, 0x0b, 0x1b, 0x5f, 0xd8, 0xf8, 0xc2, 0xc6, 0x17, 0xcc, 0x60, 0x04, + 0x17, 0x94, 0xd0, 0x82, 0x53, 0x35, 0x13, 0x58, 0xc6, 0x1b, 0x5f, 0x72, 0x66, 0x92, 0xf5, 0x97, + 0xb8, 0xa9, 0x7f, 0x86, 0x53, 0xe9, 0x74, 0x8f, 0x6c, 0xac, 0x77, 0x62, 0xbd, 0x93, 0x80, 0xf0, + 0x87, 0x16, 0x06, 0x61, 0xc3, 0x21, 0x6c, 0x58, 0x44, 0x0d, 0x8f, 0x66, 0xc3, 0xa4, 0xe1, 0x70, + 0x99, 0xbf, 0x14, 0xcc, 0x7a, 0xa7, 0x37, 0xeb, 0x40, 0x05, 0x4f, 0xdb, 0x2c, 0x78, 0xba, 0xf3, + 0x61, 0xc1, 0x93, 0x04, 0x70, 0xb3, 0x24, 0x16, 0x0b, 0x9e, 0xa4, 0xb9, 0xe7, 0xdb, 0xaa, 0xce, + 0x82, 0xa7, 0x47, 0xab, 0xfa, 0xc6, 0xfa, 0xce, 0xc6, 0xce, 0xd6, 0xf6, 0xfa, 0xce, 0x26, 0x75, + 0x5e, 0x06, 0x20, 0xc2, 0x91, 0xa2, 0xcf, 0x46, 0x31, 0xed, 0x66, 0x71, 0x3a, 0x8a, 0xff, 0xf0, + 0xe3, 0x61, 0x10, 0x9d, 0xb9, 0xfe, 0x70, 0x18, 0xab, 0x24, 0xc1, 0x49, 0xa2, 0xdc, 0x23, 0x1b, + 0x93, 0x28, 0x4c, 0xa2, 0x30, 0x89, 0xc2, 0x24, 0x0a, 0x93, 0x28, 0x4c, 0xa2, 0x40, 0x79, 0x9d, + 0x60, 0x7c, 0xb1, 0xb1, 0x88, 0x52, 0x6e, 0x34, 0x72, 0xff, 0x33, 0x8a, 0x14, 0x87, 0x89, 0xdc, + 0x89, 0x16, 0x55, 0x1e, 0x26, 0xf2, 0xf2, 0x6f, 0x47, 0xc7, 0xc7, 0xe3, 0x3f, 0xdb, 0x57, 0xd3, + 0x5f, 0x5b, 0x57, 0xfd, 0x7f, 0xbc, 0xfa, 0x27, 0x8a, 0xef, 0x9d, 0x0a, 0x7a, 0x7c, 0xfc, 0xba, + 0xff, 0x77, 0x87, 0x14, 0xa0, 0x82, 0x14, 0x00, 0x6b, 0x46, 0x04, 0x67, 0x43, 0x10, 0xe6, 0x13, + 0xe6, 0x13, 0xe6, 0x13, 0xe6, 0x13, 0xe6, 0x73, 0x36, 0xc4, 0xf7, 0x42, 0x14, 0x67, 0x43, 0xdc, + 0xfd, 0xf0, 0xa8, 0x54, 0x02, 0xb6, 0x59, 0x12, 0x8b, 0x47, 0xa5, 0xd2, 0xbc, 0xf3, 0x6d, 0x55, + 0xe7, 0x51, 0xe9, 0xa3, 0x55, 0x9d, 0xb3, 0x21, 0xa4, 0xe0, 0x20, 0x1c, 0x29, 0x98, 0x1f, 0x31, + 0x90, 0x1f, 0x51, 0x69, 0x1c, 0x0c, 0x80, 0x32, 0x24, 0x33, 0x79, 0x98, 0x23, 0x61, 0x8e, 0x84, + 0x39, 0x12, 0xe6, 0x48, 0x98, 0x23, 0x61, 0x8e, 0x04, 0xcb, 0xeb, 0x24, 0xe3, 0x53, 0x17, 0x22, + 0x48, 0xdd, 0x0c, 0x54, 0x5b, 0xcc, 0x94, 0x30, 0x53, 0xc2, 0x4c, 0x09, 0x33, 0x25, 0xcc, 0x94, + 0x88, 0x53, 0xf5, 0xad, 0xcd, 0xcd, 0x37, 0xac, 0x27, 0x67, 0xb2, 0x84, 0xc9, 0x12, 0x21, 0xc9, + 0x92, 0x6c, 0xc8, 0x1d, 0x5a, 0xc6, 0x64, 0x26, 0x14, 0xd3, 0x26, 0x4c, 0x9b, 0x30, 0x6d, 0xc2, + 0xb4, 0x09, 0xd3, 0x26, 0x4c, 0x9b, 0x40, 0x79, 0x1d, 0x15, 0x4d, 0xce, 0x55, 0x3c, 0x1b, 0x8f, + 0x0b, 0x54, 0x38, 0xbe, 0x01, 0x20, 0x4b, 0x23, 0x9a, 0x9c, 0x4f, 0x5f, 0xd6, 0x15, 0x01, 0x9d, + 0xf6, 0x67, 0x3f, 0x8e, 0x47, 0x63, 0xff, 0xcc, 0xe4, 0x98, 0xc0, 0x25, 0x4b, 0xb9, 0x16, 0x89, + 0x60, 0x8e, 0x60, 0x8e, 0x60, 0x8e, 0x60, 0x8e, 0x60, 0x8e, 0x60, 0x0e, 0xca, 0xeb, 0x9c, 0x8c, + 0x46, 0xa1, 0xf2, 0xa1, 0x80, 0xdc, 0x1a, 0xd7, 0xca, 0xd8, 0x6f, 0x12, 0x5c, 0x2b, 0xf3, 0xad, + 0x5d, 0x1b, 0x77, 0xf7, 0x19, 0x54, 0x6c, 0xb9, 0x8c, 0x81, 0x81, 0xfe, 0xd9, 0xab, 0x70, 0x47, + 0xa7, 0x6e, 0xa2, 0xe2, 0x8b, 0x60, 0x00, 0x30, 0x6b, 0x7c, 0x49, 0x22, 0x8e, 0x1d, 0xaf, 0x2a, + 0x57, 0xe0, 0xd8, 0x71, 0x09, 0x9c, 0x80, 0x63, 0xc7, 0x09, 0x70, 0x6e, 0x3c, 0x7c, 0xe3, 0x63, + 0xc7, 0xa7, 0x01, 0x04, 0x21, 0xa2, 0xdd, 0x1b, 0xd9, 0xcc, 0x07, 0x36, 0x90, 0x00, 0x07, 0x13, + 0xe8, 0x90, 0x02, 0x1e, 0x64, 0xe0, 0x43, 0x0b, 0x80, 0xb0, 0x81, 0x10, 0x36, 0x20, 0xa2, 0x06, + 0x46, 0xf3, 0xb9, 0x87, 0x15, 0x80, 0xe4, 0x98, 0xe9, 0x80, 0x79, 0x9d, 0x12, 0x48, 0x11, 0x4e, + 0x91, 0x96, 0x7c, 0xa0, 0xc9, 0xe5, 0x53, 0xa0, 0x41, 0x13, 0x2e, 0x78, 0x22, 0x06, 0x51, 0xe8, + 0x60, 0x8a, 0x1a, 0x54, 0xe1, 0x83, 0x2b, 0x7c, 0x90, 0x45, 0x0f, 0xb6, 0x18, 0x41, 0x17, 0x24, + 0xf8, 0xc2, 0x05, 0xe1, 0x5c, 0x20, 0xc0, 0xe5, 0x59, 0x0f, 0x3a, 0x56, 0xb8, 0x65, 0x5a, 0x0f, + 0x85, 0x6d, 0xb4, 0xfe, 0x09, 0xb4, 0xf0, 0x8d, 0x1c, 0xc6, 0x45, 0x84, 0x73, 0xf4, 0xb0, 0x2e, + 0x26, 0xbc, 0x8b, 0x09, 0xf3, 0x52, 0xc2, 0x3d, 0x56, 0xd8, 0x07, 0x0b, 0xff, 0xf9, 0x4b, 0x84, + 0x29, 0x54, 0x79, 0xd0, 0xeb, 0xc1, 0x2c, 0x03, 0x7b, 0x28, 0xc6, 0x6e, 0x03, 0x8a, 0x86, 0xd5, + 0xd7, 0x7d, 0xf7, 0x83, 0x19, 0x22, 0x56, 0x50, 0xfb, 0xbe, 0x85, 0x80, 0xbb, 0x25, 0x31, 0x41, + 0xfb, 0xc2, 0x97, 0xe4, 0x04, 0x6e, 0x9c, 0x05, 0x0f, 0x1f, 0xb7, 0x4d, 0xc7, 0xff, 0x4a, 0xd3, + 0x29, 0xd8, 0x74, 0x50, 0x97, 0x97, 0x89, 0xb6, 0xa1, 0x17, 0x94, 0xea, 0x47, 0x3e, 0xfd, 0x17, + 0x7c, 0x3e, 0xe0, 0x3e, 0x18, 0x71, 0x59, 0xda, 0x83, 0x40, 0x1e, 0x6e, 0x79, 0x9a, 0x90, 0xe0, + 0xc0, 0xa4, 0xd9, 0x73, 0xb4, 0x8e, 0x49, 0xb3, 0xe7, 0x18, 0x04, 0x93, 0x66, 0x05, 0x0b, 0xca, + 0xa4, 0x99, 0x7c, 0xd6, 0x23, 0x20, 0x69, 0x06, 0xba, 0xfc, 0xed, 0xa1, 0x88, 0x8b, 0xb0, 0x0c, + 0x6e, 0x39, 0xba, 0x81, 0x2d, 0x87, 0x5b, 0x12, 0x90, 0xcb, 0xe2, 0xee, 0x7d, 0x2c, 0x40, 0xcb, + 0xe3, 0x48, 0xa9, 0xe4, 0x51, 0x2a, 0x90, 0xe1, 0xea, 0x0f, 0xba, 0x76, 0x98, 0x39, 0xb6, 0xa4, + 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, 0xa4, 0x4e, 0x16, 0x51, 0x27, 0xac, 0x61, + 0xf1, 0x0f, 0x05, 0xda, 0x2d, 0x16, 0x1d, 0x3c, 0xf2, 0xc3, 0xa2, 0x03, 0x1b, 0x11, 0xde, 0x92, + 0x98, 0x2c, 0x3a, 0xb0, 0x3d, 0x86, 0xdc, 0x36, 0x1d, 0x16, 0x1d, 0x14, 0x6e, 0x3a, 0x80, 0xc3, + 0xed, 0x45, 0x9b, 0x0f, 0xeb, 0x0d, 0x7e, 0xe8, 0xc3, 0xe4, 0x18, 0xbc, 0xfb, 0x75, 0xd2, 0x11, + 0x70, 0x81, 0xc1, 0x54, 0x38, 0xa6, 0xc5, 0x7e, 0x44, 0x2c, 0xa6, 0xc5, 0x9e, 0x43, 0x10, 0x99, + 0x16, 0x7b, 0x86, 0x41, 0x30, 0x2d, 0x56, 0xb0, 0xa0, 0x4c, 0x8b, 0xc9, 0xa7, 0x34, 0x42, 0xda, + 0x70, 0xde, 0x02, 0x27, 0xc4, 0x36, 0x99, 0x10, 0x7b, 0xe4, 0x87, 0x09, 0xb1, 0x4a, 0xb1, 0x7a, + 0x26, 0xc4, 0x6c, 0x8d, 0x1e, 0xb7, 0x4d, 0x87, 0x09, 0xb1, 0xc2, 0x4d, 0x67, 0x7d, 0x93, 0xe9, + 0x30, 0x4b, 0x81, 0x20, 0xae, 0x54, 0x4c, 0x87, 0x21, 0x4b, 0x82, 0x32, 0xc6, 0x07, 0x64, 0xba, + 0xfe, 0x92, 0x5c, 0x32, 0xa6, 0xed, 0xdf, 0x1d, 0xbd, 0x5e, 0xbb, 0x33, 0xb1, 0xd6, 0xe4, 0x38, + 0x7e, 0x3c, 0xbd, 0x07, 0xd0, 0x79, 0xa8, 0x04, 0x34, 0x60, 0xe2, 0x19, 0x0c, 0x59, 0x71, 0x5c, + 0xe3, 0x63, 0xd4, 0x88, 0xe3, 0x1a, 0x1f, 0xa3, 0xe8, 0x1c, 0xd7, 0xf8, 0x5c, 0xe8, 0xc0, 0x71, + 0x8d, 0x72, 0x70, 0x1e, 0x5c, 0x82, 0x38, 0xf7, 0x5a, 0xa1, 0xf2, 0x4f, 0x63, 0x75, 0x8a, 0xe4, + 0xb3, 0x16, 0x5d, 0x65, 0x40, 0x93, 0x99, 0x9c, 0x83, 0x39, 0x14, 0x7e, 0xfd, 0x7a, 0x06, 0x2a, + 0x6b, 0x53, 0xd0, 0x40, 0x60, 0x09, 0x20, 0x81, 0xe9, 0x71, 0xe8, 0xbf, 0xa8, 0x4b, 0x0c, 0x10, + 0xe9, 0xb4, 0x82, 0x24, 0xad, 0xa7, 0x29, 0xc8, 0x74, 0xf6, 0xfd, 0x20, 0x6a, 0x84, 0x6a, 0x1a, + 0xa1, 0xa6, 0x90, 0x3f, 0x9a, 0x84, 0x21, 0x00, 0xff, 0xd8, 0xf7, 0xbf, 0xe2, 0x09, 0xd5, 0x89, + 0x87, 0x2a, 0x56, 0xc3, 0xdd, 0xcb, 0xb9, 0x48, 0x95, 0x36, 0x27, 0xb0, 0x8c, 0x88, 0x25, 0x99, + 0x10, 0x84, 0x75, 0x2c, 0x49, 0x1a, 0x4f, 0x06, 0x69, 0x34, 0xc7, 0x1d, 0xed, 0xd9, 0xa3, 0x69, + 0xce, 0x9f, 0x8c, 0x77, 0x30, 0x7f, 0x1e, 0x5e, 0x27, 0x7b, 0x1e, 0x5e, 0x3d, 0x56, 0xbe, 0xd7, + 0x4a, 0x86, 0x27, 0x5e, 0x2b, 0xf1, 0xa7, 0xf0, 0x69, 0xfa, 0xbb, 0xd7, 0x4e, 0x12, 0xbf, 0x31, + 0xbf, 0xf1, 0xe9, 0x9f, 0xa7, 0xff, 0xa1, 0x73, 0x7a, 0x38, 0xbf, 0x49, 0x2e, 0x24, 0xb5, 0xdf, + 0x51, 0x70, 0x21, 0xe9, 0xb3, 0x1c, 0x43, 0x65, 0x76, 0x93, 0xbe, 0xb0, 0xd8, 0x16, 0x4c, 0xdb, + 0x80, 0x0c, 0xdd, 0x37, 0x10, 0xf3, 0xca, 0x88, 0x71, 0x7a, 0x2d, 0x56, 0x9f, 0xdd, 0x68, 0xb4, + 0x19, 0x67, 0x34, 0xf6, 0xff, 0x3d, 0x51, 0x99, 0x52, 0xe8, 0xb6, 0x97, 0xeb, 0xf4, 0xf0, 0xb5, + 0x0c, 0x9a, 0xbd, 0x85, 0x99, 0x1d, 0x50, 0xc6, 0x0e, 0x0f, 0x4c, 0x1e, 0x12, 0x40, 0x1c, 0x06, + 0x98, 0x4e, 0xfa, 0xc3, 0x24, 0xf7, 0x61, 0x92, 0xf8, 0x28, 0xc9, 0x7a, 0xbb, 0x51, 0x91, 0xa9, + 0x9d, 0x48, 0xd9, 0x3e, 0xa1, 0x68, 0xa8, 0x86, 0x6e, 0x18, 0x44, 0xbf, 0x9b, 0xdf, 0x48, 0x7f, + 0x5b, 0x1c, 0xae, 0xa3, 0x37, 0x22, 0x00, 0xd7, 0xd1, 0x63, 0x05, 0x25, 0xb8, 0xe0, 0x04, 0x17, + 0xa4, 0xd0, 0x82, 0x55, 0x35, 0xd3, 0x5b, 0xc6, 0xd7, 0xd1, 0x63, 0x6c, 0xd5, 0x85, 0xda, 0xa6, + 0xcb, 0xd5, 0xf3, 0x78, 0xc1, 0x0d, 0x32, 0xc8, 0xa1, 0x05, 0x3b, 0xd8, 0xa0, 0x07, 0x1b, 0xfc, + 0x50, 0x83, 0xa0, 0xd9, 0x60, 0x68, 0x38, 0x28, 0xc2, 0x04, 0xc7, 0x5c, 0x90, 0x29, 0xb3, 0x72, + 0x87, 0x7e, 0xea, 0xe3, 0x55, 0x33, 0x5f, 0x8b, 0xc6, 0x9a, 0x66, 0xe4, 0x20, 0x8a, 0x18, 0x4c, + 0xa1, 0x83, 0x2a, 0x6a, 0x70, 0x85, 0x0f, 0xb2, 0xf0, 0xc1, 0x16, 0x3d, 0xe8, 0x62, 0x04, 0x5f, + 0x90, 0x20, 0x9c, 0xbf, 0x2c, 0xdc, 0x9a, 0xe6, 0x49, 0x14, 0x8c, 0x22, 0xc4, 0x8a, 0xe6, 0x1d, + 0x20, 0x99, 0xe6, 0xaf, 0x0f, 0x6b, 0xb8, 0x05, 0xf0, 0x04, 0x95, 0xe1, 0x28, 0x4d, 0xd5, 0xd0, + 0xfd, 0xf7, 0xc4, 0x1f, 0x72, 0x15, 0xcb, 0x23, 0x11, 0x0e, 0x57, 0xb1, 0x5c, 0xff, 0x43, 0xae, + 0x35, 0x11, 0x11, 0xde, 0x04, 0x78, 0x24, 0xae, 0x56, 0x7f, 0x82, 0x68, 0x1c, 0xea, 0xf4, 0xc4, + 0x07, 0xc7, 0xa1, 0x4e, 0xc5, 0x89, 0xc9, 0xa1, 0x4e, 0xb6, 0x87, 0x8d, 0xdb, 0xa6, 0xc3, 0xa1, + 0x4e, 0x85, 0x9b, 0x0e, 0x57, 0xab, 0xdb, 0x9a, 0xdf, 0xc0, 0x97, 0x8a, 0xb3, 0x9d, 0x90, 0x9f, + 0x0b, 0x27, 0xed, 0xe4, 0x27, 0x54, 0xc1, 0x10, 0xf4, 0x7c, 0x2a, 0x18, 0xf2, 0x74, 0xea, 0x5e, + 0x71, 0x78, 0x3a, 0xf5, 0x08, 0x55, 0xe2, 0xe9, 0xd4, 0x63, 0x14, 0x9d, 0xa7, 0x53, 0xcf, 0x14, + 0x90, 0xa7, 0x53, 0x72, 0x78, 0x18, 0xf0, 0xe9, 0x14, 0xe6, 0x41, 0x02, 0xe2, 0x01, 0x02, 0xec, + 0xc1, 0x41, 0x45, 0x0f, 0x0c, 0x88, 0xef, 0xc1, 0xf0, 0x7d, 0x8a, 0xe4, 0xe4, 0x6e, 0x23, 0xfc, + 0x4c, 0x34, 0x62, 0x7c, 0x62, 0x7c, 0x62, 0x7c, 0x62, 0x7c, 0x62, 0x7c, 0x62, 0xfc, 0x4a, 0x61, + 0xfc, 0x60, 0xa8, 0xa2, 0x34, 0x48, 0x2f, 0x41, 0x27, 0x6b, 0x02, 0x9d, 0x99, 0x38, 0xcd, 0xf9, + 0xa3, 0xda, 0xf5, 0x13, 0x85, 0xbb, 0x9c, 0xb2, 0x73, 0x78, 0xf0, 0xe1, 0xf3, 0xba, 0xd7, 0xed, + 0x7c, 0xea, 0x35, 0xba, 0x5e, 0xab, 0xd9, 0xfe, 0xc5, 0xeb, 0xfd, 0x76, 0xd0, 0x40, 0xf3, 0xaf, + 0xd9, 0xe9, 0x58, 0x02, 0x59, 0xde, 0x00, 0xba, 0xd1, 0x70, 0xf1, 0x82, 0x3f, 0x37, 0xbb, 0xbd, + 0x4f, 0xf5, 0x56, 0xf6, 0x6a, 0x01, 0xd7, 0xef, 0xfd, 0xc4, 0xf7, 0xf9, 0xb8, 0xf7, 0x79, 0xd0, + 0x69, 0xb6, 0x7b, 0x5e, 0xaf, 0xe3, 0xcd, 0xbe, 0xf0, 0xb5, 0xda, 0xf1, 0x5a, 0x0f, 0x7b, 0x9f, + 0x76, 0xbd, 0x76, 0xa3, 0xf7, 0xaf, 0x4e, 0xf7, 0x17, 0xbe, 0x54, 0x4b, 0x5e, 0x6a, 0xaf, 0x5b, + 0x6f, 0x1f, 0x36, 0x7b, 0xe8, 0xef, 0x15, 0x4a, 0xa2, 0x3e, 0x39, 0x09, 0x98, 0x14, 0x57, 0x9c, + 0xdb, 0xcc, 0xb9, 0xcd, 0xdf, 0x1c, 0x51, 0x79, 0x3d, 0x02, 0xb0, 0x76, 0x6b, 0x46, 0x13, 0xc2, + 0x9e, 0x2a, 0x83, 0xe3, 0x8b, 0x0d, 0x0e, 0x25, 0x4a, 0xc3, 0x8b, 0x04, 0x67, 0xd6, 0x49, 0x26, + 0x0d, 0x47, 0x9d, 0x70, 0xd4, 0xc9, 0x77, 0xf4, 0x84, 0xa3, 0x4e, 0xbe, 0xa5, 0xc0, 0x1c, 0x75, + 0xf2, 0xd8, 0xd0, 0xcd, 0x51, 0x27, 0x78, 0x78, 0x0a, 0x66, 0xd4, 0x49, 0x1a, 0x5e, 0x00, 0xae, + 0x6c, 0x0c, 0x2f, 0xc0, 0x0e, 0x97, 0xd7, 0x78, 0xb8, 0x0c, 0x1f, 0x40, 0xa1, 0x03, 0x29, 0x6a, + 0x40, 0x85, 0x0f, 0xac, 0xf0, 0x01, 0x16, 0x3d, 0xd0, 0x82, 0x25, 0x72, 0x40, 0xfc, 0x16, 0x4a, + 0x00, 0xce, 0x05, 0xf2, 0x87, 0xff, 0xe7, 0x0f, 0x54, 0x34, 0xb8, 0x74, 0x13, 0xa0, 0xbe, 0x8e, + 0x25, 0x9f, 0x7a, 0x5b, 0x4c, 0x30, 0x0b, 0xc4, 0x0a, 0xd6, 0xb0, 0x41, 0x1b, 0x39, 0x78, 0x8b, + 0x08, 0xe2, 0xe8, 0xc1, 0x5c, 0x4c, 0x50, 0x17, 0x13, 0xdc, 0xa5, 0x04, 0x79, 0xac, 0x60, 0x0f, + 0x16, 0xf4, 0x61, 0x83, 0x7f, 0x2e, 0x18, 0xc6, 0x74, 0xee, 0xef, 0xfa, 0x64, 0x84, 0xa9, 0xdd, + 0xc2, 0x40, 0x00, 0x3c, 0x18, 0x90, 0x00, 0x0a, 0x44, 0x81, 0x03, 0x29, 0x20, 0x41, 0x1c, 0x58, + 0x10, 0x07, 0x1a, 0xa4, 0x81, 0x07, 0x4c, 0x10, 0x01, 0x0a, 0x26, 0xe0, 0x41, 0x45, 0x2e, 0xe0, + 0x89, 0x3f, 0xf8, 0x7d, 0x32, 0xc6, 0xf7, 0x43, 0x0b, 0xe7, 0x3e, 0x97, 0x17, 0xdc, 0xa6, 0xf7, + 0xd4, 0xa9, 0x3f, 0x09, 0x33, 0x93, 0x3e, 0xf5, 0xc3, 0x44, 0xa1, 0xcb, 0x2b, 0x64, 0x10, 0x14, + 0x3a, 0x4c, 0x92, 0x04, 0x97, 0x44, 0xc2, 0x26, 0x69, 0xf0, 0x49, 0x2c, 0x8c, 0x12, 0x0b, 0xa7, + 0xa4, 0xc2, 0x2a, 0x6c, 0x78, 0x05, 0x0e, 0xb3, 0xf2, 0x97, 0x0e, 0xd7, 0x1d, 0xf8, 0x7d, 0x3c, + 0x33, 0x1a, 0x85, 0xca, 0x8f, 0x24, 0xf8, 0xdc, 0x45, 0x0e, 0x65, 0xed, 0x05, 0x0d, 0xc8, 0x32, + 0xe3, 0x71, 0xce, 0xe2, 0x91, 0x24, 0x16, 0x30, 0x13, 0x97, 0x24, 0x80, 0x24, 0x80, 0x24, 0x80, + 0x24, 0x80, 0x24, 0x80, 0x24, 0x80, 0x24, 0x80, 0x38, 0x86, 0x24, 0x80, 0x24, 0x80, 0x24, 0xe0, + 0xe9, 0xef, 0xf6, 0x7c, 0x12, 0xa6, 0x81, 0x9b, 0x8e, 0xc6, 0xa3, 0x70, 0x74, 0x76, 0xe9, 0xce, + 0x06, 0xda, 0x9c, 0x06, 0x2a, 0x96, 0x43, 0x0c, 0x1e, 0xbe, 0x05, 0x82, 0x6f, 0x82, 0x6f, 0x82, + 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0x6f, 0x82, 0xef, 0x5b, 0x2b, 0xf5, 0xde, 0x0a, + 0x82, 0xde, 0x9b, 0x02, 0x44, 0xc5, 0xde, 0xb8, 0x77, 0xf7, 0x23, 0x23, 0x82, 0xad, 0x48, 0xd9, + 0xc8, 0x27, 0x14, 0xdb, 0x2e, 0x89, 0x2d, 0x64, 0x63, 0xdf, 0x92, 0xdc, 0x82, 0xb6, 0x8f, 0x09, + 0x8b, 0x6e, 0xb7, 0x4d, 0xd1, 0xff, 0x4a, 0x53, 0xd4, 0x6c, 0x8a, 0xeb, 0x9b, 0x9b, 0x34, 0x46, + 0x02, 0x61, 0x59, 0x52, 0xf6, 0x99, 0x2a, 0xb5, 0x2d, 0x18, 0x38, 0x49, 0x30, 0xc4, 0xda, 0xc4, + 0xf1, 0x5d, 0x9a, 0x93, 0x4b, 0xcc, 0x44, 0x68, 0x11, 0x62, 0x32, 0x11, 0x5a, 0xa2, 0xae, 0x32, + 0x11, 0x5a, 0xa6, 0x81, 0x31, 0x11, 0xaa, 0x59, 0x70, 0x26, 0x42, 0xab, 0x47, 0x15, 0x05, 0x26, + 0x42, 0x93, 0xd8, 0x15, 0x02, 0x12, 0x6e, 0x02, 0x85, 0xb5, 0x0d, 0x01, 0xb2, 0x36, 0xa2, 0xc9, + 0xf9, 0x54, 0x19, 0xae, 0x48, 0x05, 0xac, 0xa4, 0x02, 0x17, 0xf3, 0xfc, 0x84, 0x20, 0x2e, 0x30, + 0x13, 0x99, 0x64, 0x80, 0x64, 0x80, 0x64, 0x80, 0x64, 0x80, 0x64, 0x80, 0x64, 0x80, 0x64, 0x80, + 0x64, 0xe0, 0x56, 0x55, 0xc4, 0x9b, 0x75, 0x41, 0x3c, 0x60, 0x9b, 0x65, 0x11, 0x05, 0x7f, 0x58, + 0x16, 0x41, 0x70, 0x7b, 0x8f, 0xd8, 0x2c, 0x8b, 0x60, 0x78, 0xfb, 0x96, 0x29, 0xb2, 0x2c, 0x42, + 0xbb, 0x29, 0x6e, 0xac, 0xef, 0x6c, 0xec, 0x6c, 0x6d, 0xaf, 0xef, 0xb0, 0x3a, 0x82, 0x80, 0x58, + 0x98, 0x94, 0xac, 0x8e, 0xb0, 0x2e, 0x26, 0x38, 0x7f, 0xa8, 0xe0, 0xec, 0x4b, 0x2a, 0x27, 0x1f, + 0x3a, 0x97, 0x97, 0xc9, 0xd0, 0x22, 0xc4, 0x64, 0x32, 0xb4, 0x44, 0x4d, 0x65, 0x32, 0xb4, 0x4c, + 0x03, 0x63, 0x32, 0x54, 0xb3, 0xe0, 0x4c, 0x86, 0x56, 0x8f, 0x2d, 0xb2, 0x45, 0xac, 0x74, 0x88, + 0xc0, 0x16, 0xb1, 0xa2, 0x3f, 0xcc, 0x85, 0x12, 0xdb, 0xde, 0x23, 0x36, 0x73, 0xa1, 0x8c, 0x6e, + 0xdf, 0x32, 0x45, 0xe6, 0x42, 0xb5, 0x9b, 0x22, 0x5b, 0xc4, 0x08, 0x84, 0xc5, 0x49, 0xc9, 0x24, + 0xa8, 0x4d, 0x92, 0xa1, 0x2e, 0x23, 0xa9, 0x47, 0xd1, 0x28, 0xf5, 0xa7, 0xae, 0x06, 0x7b, 0x27, + 0x49, 0x32, 0xf8, 0xa2, 0xce, 0xfd, 0xb1, 0x9f, 0x7e, 0x99, 0x92, 0xaf, 0xda, 0x68, 0xac, 0xa2, + 0x41, 0x96, 0x54, 0x74, 0x23, 0x95, 0xfe, 0x31, 0x8a, 0x7f, 0x77, 0x83, 0x28, 0x49, 0xfd, 0x68, + 0xa0, 0x6a, 0x77, 0xff, 0x22, 0x59, 0xfa, 0x9b, 0xda, 0x38, 0x1e, 0xa5, 0xa3, 0xc1, 0x28, 0x4c, + 0xf2, 0x6f, 0xb5, 0x59, 0x9e, 0xa1, 0xe6, 0xc7, 0xca, 0x4f, 0xb2, 0x5f, 0x6b, 0x61, 0x32, 0x3c, + 0xa9, 0x85, 0x89, 0x9f, 0x55, 0xbf, 0x27, 0xf9, 0xb7, 0xe9, 0x97, 0xec, 0x4f, 0xb5, 0xd1, 0xd8, + 0xff, 0xf7, 0x44, 0xb9, 0xd3, 0xaf, 0xea, 0x6b, 0xaa, 0xa2, 0xa1, 0x1a, 0xba, 0x61, 0x10, 0xfd, + 0x5e, 0x4b, 0xc3, 0x8b, 0x64, 0xfa, 0x4b, 0xed, 0xd6, 0x12, 0xd4, 0xda, 0x6c, 0x1b, 0xda, 0x0b, + 0x1a, 0x8d, 0x3c, 0x89, 0xd0, 0x16, 0x13, 0x82, 0x9b, 0xad, 0x0d, 0xe6, 0x8a, 0xb8, 0x46, 0x36, + 0x49, 0xe3, 0xc9, 0x20, 0x8d, 0xe6, 0x29, 0xa8, 0xf6, 0xec, 0x39, 0x35, 0xe7, 0x8f, 0xc9, 0x3b, + 0x98, 0x3f, 0x1c, 0xaf, 0x93, 0x3d, 0x1c, 0xaf, 0x1e, 0x2b, 0xdf, 0x6b, 0x25, 0xc3, 0x13, 0xaf, + 0x95, 0xf8, 0xbd, 0xcb, 0xb1, 0x9a, 0xfe, 0xee, 0x75, 0xb2, 0xc7, 0x30, 0xfd, 0xd6, 0x98, 0x3f, + 0x85, 0x56, 0x10, 0xfd, 0xee, 0xf5, 0xc2, 0x0b, 0xaf, 0xbe, 0xb8, 0xff, 0xc3, 0x60, 0x88, 0xe5, + 0xa7, 0x70, 0xbc, 0x01, 0x90, 0x27, 0x00, 0xdd, 0x02, 0x0a, 0xbd, 0xfd, 0x93, 0xab, 0xbf, 0x1f, + 0x29, 0x18, 0x57, 0x7f, 0x3f, 0x53, 0x48, 0xae, 0xfe, 0x2e, 0x48, 0x50, 0xae, 0xfe, 0x26, 0xc2, + 0xd6, 0xf7, 0x12, 0x61, 0x57, 0x7f, 0x43, 0x8f, 0x98, 0xc9, 0x5d, 0x32, 0x70, 0xc7, 0x38, 0x78, + 0x36, 0x9b, 0x8b, 0xbf, 0xab, 0x02, 0x0d, 0xa4, 0x40, 0x04, 0x71, 0x50, 0x41, 0x1c, 0x64, 0x90, + 0x06, 0x1d, 0x30, 0x21, 0x04, 0x28, 0x94, 0xc8, 0x5f, 0x2e, 0x7c, 0x91, 0x53, 0xee, 0x35, 0x67, + 0x3b, 0x32, 0xd2, 0xcb, 0x58, 0x9d, 0x22, 0xfb, 0xcd, 0x05, 0x97, 0x07, 0x3e, 0xdd, 0x75, 0x9a, + 0xf3, 0x47, 0xb9, 0xeb, 0x27, 0x82, 0xa6, 0x81, 0x74, 0x0e, 0x0f, 0x3e, 0x7c, 0x5e, 0xf7, 0x1a, + 0xbf, 0xf6, 0x1a, 0xed, 0xbd, 0xc6, 0x9e, 0xd7, 0x6a, 0xb6, 0x7f, 0xf1, 0x0e, 0x3f, 0xed, 0xf6, + 0x5a, 0x9f, 0xbd, 0xde, 0x6f, 0x07, 0x0d, 0x74, 0xc7, 0x9f, 0x9d, 0xfc, 0x27, 0x22, 0x4a, 0xc9, + 0x84, 0x14, 0x42, 0x2f, 0x34, 0xa3, 0xbe, 0xf7, 0xdf, 0xf5, 0xf7, 0x8d, 0xf6, 0xfb, 0xdf, 0xbc, + 0xc3, 0xe6, 0x1e, 0xcb, 0x72, 0x9f, 0xf7, 0xe9, 0x33, 0xb2, 0x0b, 0x97, 0x8a, 0x49, 0x94, 0x6f, + 0xc2, 0x59, 0x1e, 0x53, 0x96, 0x70, 0x4c, 0x09, 0x58, 0x47, 0xc0, 0xf3, 0xb9, 0xfb, 0xd4, 0x6b, + 0x12, 0xfd, 0x1e, 0x8d, 0xfe, 0x88, 0xdc, 0x34, 0xbc, 0xc0, 0x3d, 0xa5, 0xbb, 0x29, 0x24, 0xcf, + 0xea, 0x7e, 0x44, 0x2c, 0x9e, 0xd5, 0x3d, 0x43, 0xdd, 0x78, 0x56, 0xf7, 0x1c, 0x83, 0xe0, 0x59, + 0x5d, 0xd1, 0x08, 0x85, 0x67, 0x75, 0xf2, 0x61, 0x26, 0xec, 0x59, 0x1d, 0x66, 0x81, 0xce, 0x92, + 0x4f, 0x46, 0x2c, 0xd4, 0x01, 0x07, 0x01, 0xf0, 0x60, 0x40, 0x02, 0x28, 0x10, 0x05, 0x0e, 0xa4, + 0x80, 0x04, 0x71, 0x60, 0x41, 0x1c, 0x68, 0x90, 0x06, 0x1e, 0x30, 0x41, 0x04, 0x28, 0x98, 0x80, + 0x07, 0x15, 0xb9, 0x80, 0xa1, 0x8a, 0xce, 0xb2, 0xc4, 0x95, 0x90, 0x33, 0xa5, 0xb9, 0xbc, 0x9c, + 0xa8, 0x54, 0x05, 0xd8, 0x21, 0x09, 0x7e, 0x88, 0x84, 0x21, 0xd2, 0xe0, 0x88, 0x58, 0x58, 0x22, + 0x16, 0x9e, 0x48, 0x85, 0x29, 0xd8, 0x70, 0x05, 0x1c, 0xb6, 0xe4, 0x2f, 0x5d, 0xe6, 0x44, 0xa5, + 0xb5, 0x2d, 0x41, 0x23, 0x95, 0xb6, 0x38, 0x52, 0xa9, 0xe0, 0x0f, 0x47, 0x2a, 0x11, 0xdc, 0xde, + 0x23, 0x36, 0x47, 0x2a, 0x31, 0xbc, 0x7d, 0xcb, 0x14, 0x39, 0x52, 0x49, 0xbb, 0x29, 0x6e, 0x6d, + 0x6e, 0xbe, 0xe1, 0x50, 0x25, 0x62, 0x61, 0x61, 0x52, 0x72, 0xa8, 0x92, 0x75, 0xe1, 0xc0, 0x91, + 0xb5, 0x73, 0x9f, 0xfb, 0xf6, 0x0b, 0x13, 0x93, 0x39, 0xd0, 0x12, 0xf5, 0x94, 0x39, 0xd0, 0x32, + 0x0d, 0x8c, 0x39, 0x50, 0xcd, 0x82, 0x33, 0x07, 0x5a, 0x3d, 0x92, 0xc8, 0x1c, 0x68, 0xf9, 0x18, + 0x81, 0x39, 0xd0, 0xa2, 0x3f, 0xcc, 0x81, 0x12, 0xdc, 0xde, 0x23, 0x36, 0x73, 0xa0, 0x0c, 0x6f, + 0xdf, 0x32, 0x45, 0xe6, 0x40, 0xb5, 0x9b, 0x22, 0x73, 0xa0, 0xc4, 0xc2, 0x02, 0xa5, 0x64, 0x0e, + 0xd4, 0xba, 0x70, 0xe0, 0x5c, 0xcc, 0x5d, 0x92, 0x90, 0x24, 0xe8, 0x4c, 0x5c, 0x66, 0x41, 0x8b, + 0x10, 0x93, 0x59, 0xd0, 0x12, 0x15, 0x95, 0x59, 0xd0, 0x32, 0x0d, 0x8c, 0x59, 0x50, 0xcd, 0x82, + 0x33, 0x0b, 0x5a, 0x3d, 0x9a, 0x28, 0x30, 0x0b, 0x7a, 0x12, 0x44, 0x7e, 0x7c, 0x29, 0x28, 0x0b, + 0xba, 0x43, 0x48, 0x6d, 0x91, 0x64, 0xdc, 0xd5, 0xf4, 0x3c, 0x39, 0x65, 0x4e, 0x55, 0xba, 0x31, + 0x07, 0x87, 0x9b, 0x9a, 0xe4, 0x4a, 0xc4, 0x11, 0x68, 0x15, 0x33, 0xd6, 0x0a, 0xee, 0x69, 0xfa, + 0x34, 0xbb, 0xfb, 0x5e, 0x78, 0xc1, 0x29, 0x70, 0xc8, 0x92, 0x80, 0xf8, 0x22, 0xa7, 0x15, 0x24, + 0x69, 0x3d, 0x4d, 0xb1, 0xfa, 0xd9, 0x9d, 0xfd, 0x20, 0x6a, 0x84, 0x6a, 0x4a, 0x47, 0x13, 0xe7, + 0xdd, 0x4a, 0x34, 0x09, 0x43, 0xa0, 0xd1, 0x7d, 0xfb, 0xfe, 0x57, 0x5c, 0xe1, 0x3a, 0xf1, 0x50, + 0xc5, 0x6a, 0xb8, 0x7b, 0x39, 0x17, 0x8d, 0xca, 0x8e, 0x1f, 0x70, 0x65, 0x06, 0x5a, 0x07, 0x6a, + 0xdb, 0x5d, 0x99, 0x41, 0x15, 0x23, 0x92, 0x9a, 0x8f, 0x5b, 0x66, 0x25, 0x30, 0xec, 0x44, 0xd0, + 0x9c, 0x87, 0x3c, 0xa7, 0x61, 0xd6, 0x8c, 0xcc, 0x29, 0xaf, 0x99, 0x2b, 0x1b, 0x32, 0x17, 0x14, + 0x33, 0x11, 0x65, 0x1e, 0x06, 0x43, 0x69, 0x89, 0xa1, 0xd3, 0x8c, 0xbd, 0xeb, 0xb7, 0x36, 0x03, + 0x96, 0xe6, 0xe4, 0xea, 0x33, 0x36, 0x7b, 0x72, 0x9e, 0x9f, 0xcb, 0xdc, 0x15, 0xc8, 0x90, 0xf7, + 0x31, 0x3b, 0x11, 0xd4, 0x78, 0xc1, 0x05, 0x42, 0x21, 0x05, 0x54, 0x81, 0x04, 0x4a, 0xe1, 0x03, + 0x5c, 0x41, 0x03, 0x5c, 0xa1, 0x02, 0x5a, 0x01, 0x42, 0xb5, 0x50, 0x9b, 0xe9, 0x89, 0x96, 0x20, + 0xe3, 0xb0, 0xa1, 0xc6, 0x5e, 0x83, 0x8c, 0xb7, 0x86, 0xa9, 0x22, 0x44, 0xaa, 0x12, 0x84, 0xac, + 0x02, 0x44, 0xab, 0xf2, 0x83, 0xad, 0xe2, 0x83, 0xad, 0xd2, 0x43, 0xad, 0xc2, 0xab, 0x76, 0xe6, + 0x0f, 0x65, 0xdc, 0xb3, 0xe3, 0x0f, 0x87, 0xb1, 0x4a, 0x12, 0xf7, 0xd4, 0x3f, 0x0f, 0xc2, 0x4b, + 0x1c, 0x3b, 0x5f, 0x38, 0xc3, 0x3b, 0xf2, 0x81, 0xd8, 0x14, 0x56, 0xb1, 0x3e, 0x5c, 0x51, 0x3e, + 0x62, 0xf1, 0x3d, 0x74, 0x91, 0x3d, 0x6a, 0x31, 0x3d, 0x7c, 0xd1, 0x3c, 0x7c, 0x71, 0x3c, 0x7a, + 0x11, 0x3c, 0x4b, 0x57, 0x6e, 0xbe, 0x2c, 0xb8, 0xe2, 0xf5, 0xeb, 0x64, 0x68, 0x34, 0x39, 0x57, + 0xf1, 0xec, 0x10, 0x04, 0xc8, 0x6f, 0x2d, 0xf8, 0xe4, 0x06, 0x90, 0x4c, 0x8d, 0x68, 0x72, 0x3e, + 0x7d, 0x89, 0x57, 0x3c, 0x63, 0x47, 0x31, 0x2e, 0xc7, 0x4f, 0x53, 0x7f, 0xf0, 0x45, 0x0d, 0x01, + 0x01, 0xe6, 0x42, 0x32, 0x10, 0x17, 0xb4, 0xa7, 0x4e, 0xfd, 0x49, 0x98, 0x85, 0x8b, 0x53, 0x3f, + 0x4c, 0x14, 0x21, 0x2f, 0x21, 0x2f, 0x21, 0x2f, 0x21, 0x2f, 0x21, 0x2f, 0x21, 0x6f, 0xb5, 0x20, + 0xef, 0xc9, 0x68, 0x14, 0x2a, 0x1f, 0x12, 0xee, 0xae, 0x11, 0x5a, 0xc2, 0x40, 0xcb, 0x68, 0x34, + 0x54, 0x78, 0xb0, 0x32, 0x93, 0x8a, 0x90, 0x92, 0x90, 0x92, 0x90, 0x92, 0x90, 0x92, 0x90, 0x92, + 0x90, 0x92, 0x90, 0x92, 0x90, 0x92, 0x90, 0x52, 0x06, 0xa4, 0x1c, 0x63, 0x05, 0xde, 0x5c, 0x7d, + 0xb1, 0x2a, 0x5e, 0x08, 0xdf, 0x08, 0xdf, 0x08, 0xdf, 0x08, 0xdf, 0x08, 0xdf, 0x08, 0xdf, 0xf4, + 0x78, 0xad, 0x60, 0x7c, 0xb1, 0xe1, 0x2e, 0x2a, 0xc2, 0xa2, 0x91, 0xfb, 0x9f, 0x51, 0xa4, 0x10, + 0xb1, 0xdc, 0x5b, 0x20, 0x99, 0x0e, 0xfc, 0x34, 0x55, 0x71, 0x04, 0xb7, 0x90, 0xc2, 0x79, 0xf9, + 0xf2, 0x68, 0xd5, 0xdd, 0xe9, 0xff, 0x75, 0xb4, 0xe6, 0xee, 0xf4, 0x67, 0x5f, 0xd7, 0xb2, 0xdf, + 0x66, 0xdf, 0xd7, 0x8f, 0x56, 0xdd, 0x8d, 0xc5, 0xf7, 0xcd, 0xa3, 0x55, 0x77, 0xb3, 0xff, 0xea, + 0xf8, 0xf8, 0xf5, 0xab, 0x3f, 0xdf, 0x5c, 0x3d, 0xfe, 0x1f, 0xbe, 0xfc, 0xdb, 0xd1, 0xf1, 0xf1, + 0xf8, 0xcf, 0xf6, 0xd5, 0xf4, 0xd7, 0xd6, 0x55, 0xff, 0x1f, 0xaf, 0xfe, 0x89, 0xe6, 0xc3, 0xa7, + 0x02, 0x1f, 0x1f, 0xbf, 0xee, 0xff, 0x1d, 0xc7, 0x2d, 0xf6, 0x49, 0x49, 0xc0, 0x28, 0x89, 0x1b, + 0xaa, 0xe8, 0x2c, 0x6b, 0x3f, 0x86, 0x64, 0x26, 0x0b, 0xf1, 0x48, 0x50, 0x48, 0x50, 0x48, 0x50, + 0x48, 0x50, 0x48, 0x50, 0x48, 0x50, 0x2a, 0x45, 0x50, 0x26, 0x41, 0x94, 0xbe, 0x05, 0x64, 0x24, + 0x40, 0x7b, 0x83, 0x40, 0xf7, 0xe3, 0x01, 0xce, 0x4a, 0x45, 0xde, 0x77, 0x07, 0xbe, 0xae, 0x04, + 0x7d, 0x7f, 0x9d, 0x84, 0xc5, 0x58, 0x80, 0x73, 0xc9, 0xa1, 0xf7, 0xce, 0x49, 0x31, 0x89, 0x37, + 0xeb, 0xb4, 0x09, 0xd9, 0x38, 0x0c, 0x4f, 0x1a, 0x66, 0x8a, 0x60, 0x7c, 0xa6, 0x13, 0x8f, 0x26, + 0xa9, 0xca, 0xa6, 0xc4, 0xe1, 0xa5, 0x89, 0x6e, 0xc8, 0xc6, 0x1c, 0xd1, 0x7d, 0xe2, 0x30, 0x47, + 0xf4, 0x08, 0x6d, 0x62, 0x8e, 0xe8, 0x31, 0x8a, 0xce, 0x1c, 0xd1, 0x33, 0x05, 0x64, 0x8e, 0x48, + 0x0e, 0x6b, 0x60, 0x27, 0xf7, 0x13, 0x03, 0x21, 0x3b, 0xb9, 0x91, 0xe1, 0x25, 0xa7, 0xa5, 0x73, + 0x5a, 0xfa, 0xa3, 0xc7, 0x41, 0xcf, 0xc2, 0x3d, 0xc2, 0x96, 0x31, 0x83, 0x03, 0xd3, 0x0d, 0xce, + 0x8b, 0xcd, 0x06, 0xd5, 0xc3, 0x8c, 0xa1, 0xcc, 0xa4, 0xe1, 0x14, 0x4a, 0x4e, 0xa1, 0x14, 0x44, + 0xae, 0x38, 0x85, 0x52, 0x3a, 0x89, 0xe2, 0x14, 0x4a, 0x44, 0x44, 0x05, 0x33, 0x85, 0x32, 0x0d, + 0x2f, 0xf0, 0x92, 0x95, 0x38, 0x0b, 0xa9, 0x40, 0x02, 0x26, 0x5c, 0xe0, 0x44, 0x0c, 0xa0, 0xd0, + 0x81, 0x14, 0x35, 0xa0, 0xc2, 0x07, 0x56, 0xf8, 0x00, 0x8b, 0x1e, 0x68, 0x71, 0x92, 0x28, 0x2b, + 0x40, 0x59, 0x4a, 0x94, 0x00, 0x9c, 0x0b, 0x74, 0x27, 0x69, 0xe0, 0xc6, 0xf3, 0x62, 0x2d, 0x30, + 0x37, 0xf1, 0xc0, 0x8a, 0xa0, 0xb9, 0xb8, 0x60, 0x16, 0x89, 0x15, 0xbc, 0x61, 0x83, 0x38, 0x72, + 0x30, 0x17, 0x11, 0xd4, 0xd1, 0x83, 0xbb, 0x98, 0x20, 0x2f, 0x26, 0xd8, 0x4b, 0x09, 0xfa, 0x58, + 0xc1, 0x1f, 0x0c, 0x04, 0xc0, 0x82, 0x81, 0x5c, 0x30, 0x8c, 0x45, 0x4a, 0xdf, 0xf5, 0xc9, 0x08, + 0x0b, 0x96, 0x84, 0x81, 0x00, 0x78, 0x30, 0x20, 0x01, 0x14, 0x88, 0x02, 0x07, 0x52, 0x40, 0x82, + 0x38, 0xb0, 0x20, 0x0e, 0x34, 0x48, 0x03, 0x0f, 0x98, 0x20, 0x02, 0x14, 0x4c, 0xc0, 0x83, 0x8a, + 0x5c, 0x40, 0xd0, 0x05, 0x54, 0xdf, 0x75, 0xf2, 0x90, 0x8b, 0xa9, 0xbe, 0x07, 0x3f, 0x56, 0xc1, + 0xc5, 0x44, 0x87, 0x21, 0x92, 0xe0, 0x88, 0x48, 0x58, 0x22, 0x0d, 0x9e, 0x88, 0x85, 0x29, 0x62, + 0xe1, 0x8a, 0x54, 0xd8, 0x82, 0x0d, 0x5f, 0xc0, 0x61, 0x4c, 0xfe, 0xd2, 0xe1, 0xca, 0xba, 0xbf, + 0xeb, 0x75, 0x31, 0xcb, 0xbd, 0xbf, 0x9b, 0xa7, 0xd8, 0x10, 0x20, 0x2b, 0x56, 0x79, 0xb8, 0x3c, + 0x83, 0x07, 0x36, 0x76, 0x27, 0x88, 0x52, 0x15, 0xbb, 0x7e, 0xac, 0x7c, 0x39, 0x94, 0xe0, 0x86, + 0xcc, 0xe0, 0x6e, 0x14, 0x74, 0x23, 0x04, 0xe9, 0x0b, 0xe9, 0x0b, 0xe9, 0x0b, 0xe9, 0x0b, 0xe9, + 0x0b, 0xd1, 0x0c, 0xe9, 0x0b, 0x84, 0xd7, 0xc5, 0xdb, 0x98, 0xf1, 0x5d, 0xea, 0xb2, 0x46, 0x3a, + 0x60, 0x1d, 0x1d, 0x18, 0xcb, 0x00, 0x2c, 0x98, 0x9b, 0x3a, 0x08, 0xab, 0x09, 0xab, 0x09, 0xab, + 0x09, 0xab, 0x09, 0xab, 0x89, 0x0a, 0x08, 0xab, 0x21, 0xbc, 0x6e, 0xb6, 0xc9, 0x44, 0x8c, 0x4b, + 0x40, 0x5c, 0x6c, 0xf2, 0x70, 0x10, 0x06, 0x5d, 0x78, 0xf2, 0xa0, 0xc0, 0x3a, 0x17, 0xa1, 0xd4, + 0xe6, 0x17, 0x7b, 0xf5, 0xd7, 0xcb, 0xa3, 0x35, 0x77, 0xbd, 0xbf, 0xf8, 0xc3, 0x9b, 0xa3, 0x55, + 0x77, 0xbd, 0xff, 0xea, 0x15, 0xbe, 0xa7, 0xec, 0x93, 0xdd, 0x59, 0xca, 0xee, 0xd0, 0x96, 0x9b, + 0xfc, 0x20, 0xc9, 0xc3, 0x5a, 0x7a, 0x42, 0xae, 0x47, 0xae, 0x47, 0xae, 0x47, 0xae, 0x47, 0xae, + 0x47, 0x8c, 0x40, 0xae, 0x07, 0xe1, 0x75, 0xd1, 0x96, 0xc2, 0x7c, 0x0f, 0x22, 0x6c, 0x0a, 0x10, + 0x15, 0x73, 0x89, 0xcc, 0x43, 0x1f, 0x19, 0x11, 0x6c, 0x05, 0x7d, 0xe9, 0x8c, 0x70, 0x6c, 0xbb, + 0x24, 0x36, 0xf8, 0x92, 0x9a, 0x07, 0xe5, 0x16, 0xb0, 0xa8, 0x43, 0x68, 0x74, 0xbb, 0x6d, 0x8a, + 0xfe, 0x57, 0x9a, 0xa2, 0x66, 0x53, 0x44, 0x5d, 0x8e, 0x63, 0xa5, 0x2d, 0xbe, 0xa0, 0x94, 0x45, + 0x7c, 0x98, 0x11, 0xb5, 0x2e, 0x16, 0x38, 0xd9, 0x20, 0x2b, 0x37, 0x09, 0xfe, 0xa3, 0xe4, 0xa4, + 0x43, 0x6f, 0xc8, 0xcc, 0x5c, 0x68, 0x11, 0x62, 0x32, 0x17, 0x5a, 0xa2, 0xb6, 0x32, 0x17, 0x5a, + 0xa6, 0x81, 0x31, 0x17, 0xaa, 0x59, 0x70, 0xe6, 0x42, 0xab, 0xc7, 0x16, 0x85, 0xe6, 0x42, 0xd7, + 0xb6, 0x04, 0x25, 0x43, 0xb7, 0x98, 0x0c, 0x2d, 0xf8, 0xc3, 0x64, 0x28, 0xc1, 0xed, 0x3d, 0x62, + 0x33, 0x19, 0xca, 0xf0, 0xf6, 0x2d, 0x53, 0x64, 0x32, 0x54, 0xbb, 0x29, 0x6e, 0x6d, 0x6e, 0xbe, + 0xd9, 0xa4, 0x39, 0x12, 0x0b, 0xcb, 0x92, 0x92, 0xf9, 0x50, 0x9b, 0x24, 0x43, 0x1d, 0xac, 0x08, + 0xb6, 0x8d, 0xf2, 0x41, 0x39, 0x85, 0x6d, 0xa9, 0x4c, 0xc3, 0x8b, 0x64, 0xfa, 0x4b, 0xed, 0xde, + 0xd5, 0x0e, 0x08, 0x4b, 0x2c, 0xe5, 0x98, 0x0f, 0xc7, 0xad, 0x0b, 0x36, 0x60, 0xbb, 0x0c, 0x17, + 0x71, 0x4d, 0x46, 0x92, 0xc6, 0x93, 0x41, 0x1a, 0xcd, 0x33, 0x53, 0xed, 0xd9, 0x13, 0x6b, 0xce, + 0x1f, 0x98, 0x77, 0x30, 0x7f, 0x4c, 0x5e, 0x27, 0x7b, 0x4c, 0x5e, 0x3d, 0x56, 0xbe, 0xd7, 0x4a, + 0x86, 0x27, 0x5e, 0x2b, 0xf1, 0x7b, 0x97, 0x63, 0x35, 0xfd, 0xdd, 0xeb, 0x64, 0x0f, 0x64, 0xfa, + 0xad, 0x31, 0xbf, 0xed, 0xd9, 0x59, 0x88, 0xd7, 0x0b, 0x2f, 0xee, 0xfc, 0xd5, 0x2c, 0x4b, 0xf3, + 0x82, 0x0e, 0x02, 0xdc, 0x39, 0x2c, 0xda, 0x3a, 0x92, 0x60, 0x88, 0xbb, 0xf8, 0xe8, 0x86, 0x8c, + 0xdc, 0x76, 0xf4, 0x23, 0x62, 0x71, 0xdb, 0xd1, 0x33, 0xb4, 0x8d, 0xdb, 0x8e, 0x9e, 0x63, 0x10, + 0xdc, 0x76, 0x54, 0x34, 0x72, 0xe3, 0xb6, 0x23, 0xf9, 0xf0, 0x9b, 0xdb, 0x8e, 0x9e, 0xe7, 0x93, + 0xb9, 0xed, 0xc8, 0x3e, 0x30, 0x20, 0x01, 0x14, 0x88, 0x02, 0x07, 0x52, 0x40, 0x82, 0x38, 0xb0, + 0x20, 0x0e, 0x34, 0x48, 0x03, 0x0f, 0x98, 0x20, 0x02, 0x14, 0x4c, 0xc0, 0x83, 0x8a, 0x5c, 0x40, + 0x3f, 0x3c, 0x1b, 0xc5, 0x41, 0xfa, 0xe5, 0x5c, 0xd0, 0xa2, 0xa3, 0x5c, 0x64, 0x56, 0x75, 0x57, + 0x01, 0x7c, 0x48, 0x02, 0x21, 0x22, 0xc1, 0x88, 0x34, 0x50, 0x22, 0x16, 0x9c, 0x88, 0x05, 0x29, + 0x52, 0xc1, 0x0a, 0x36, 0x68, 0x01, 0x07, 0x2f, 0xf9, 0x4b, 0xe7, 0x84, 0x8b, 0xb2, 0x21, 0x02, + 0x27, 0x5c, 0x14, 0xfd, 0x61, 0x51, 0x37, 0xb1, 0xed, 0x3d, 0x62, 0xb3, 0xa8, 0x9b, 0xd1, 0xed, + 0x5b, 0xa6, 0xc8, 0xa2, 0x6e, 0xed, 0xa6, 0xb8, 0xbe, 0xc9, 0x92, 0x6e, 0x02, 0x61, 0x61, 0x52, + 0xb2, 0xa4, 0xdb, 0xba, 0x60, 0xe0, 0xa8, 0xaf, 0xe3, 0x30, 0x18, 0x04, 0xa9, 0x1b, 0x4d, 0xc2, + 0x50, 0x4e, 0x3a, 0xf4, 0xb6, 0xd8, 0xdc, 0xf3, 0x58, 0xc1, 0xd8, 0xca, 0x14, 0x6e, 0x99, 0x06, + 0xc6, 0x14, 0x6e, 0x99, 0x06, 0xc6, 0x14, 0xae, 0x66, 0xc1, 0x99, 0xc2, 0xad, 0x1e, 0xc9, 0xe5, + 0x9e, 0x47, 0x0d, 0x20, 0x81, 0x7b, 0x1e, 0x2d, 0x24, 0x05, 0xe7, 0xfe, 0x78, 0x1c, 0x44, 0x67, + 0x6e, 0xa2, 0xe2, 0x0b, 0x15, 0xcb, 0x61, 0x05, 0x77, 0xe4, 0x26, 0x2d, 0x20, 0x2d, 0x20, 0x2d, + 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0x2d, 0x20, 0xb2, 0x21, 0x2d, 0x20, 0x2d, 0x20, 0x2d, + 0x78, 0x06, 0x2d, 0x98, 0x84, 0x69, 0xe0, 0xa6, 0xa3, 0xf1, 0x28, 0x1c, 0x9d, 0x5d, 0xba, 0xc1, + 0x50, 0x45, 0x69, 0x70, 0x1a, 0x88, 0x62, 0x08, 0x0f, 0xde, 0x02, 0xc1, 0x37, 0xc1, 0x37, 0xc1, + 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xcb, 0xaa, 0x4b, 0x14, 0x95, + 0x65, 0xd5, 0x25, 0x3d, 0x58, 0x96, 0x55, 0xeb, 0x13, 0x9b, 0x65, 0xd5, 0x8c, 0x6e, 0xdf, 0x32, + 0x45, 0x96, 0x55, 0x6b, 0x37, 0x45, 0x96, 0x55, 0x13, 0x08, 0x8b, 0x93, 0x92, 0x65, 0xd5, 0xd6, + 0x05, 0x03, 0x27, 0x1a, 0xb9, 0xe3, 0x2f, 0x63, 0x39, 0x79, 0xd1, 0xb9, 0xbc, 0xac, 0x98, 0xa8, + 0x60, 0x34, 0x65, 0xd2, 0xb6, 0x4c, 0xcb, 0x62, 0xd2, 0xb6, 0x4c, 0x03, 0x63, 0xd2, 0x56, 0xb3, + 0xe0, 0x4c, 0xda, 0x56, 0x8f, 0xd6, 0xb2, 0x62, 0x42, 0x03, 0x48, 0x60, 0xc5, 0x84, 0x85, 0x34, + 0x20, 0x09, 0x86, 0x6e, 0x32, 0x18, 0x8d, 0x05, 0xed, 0x0f, 0xbf, 0x16, 0x99, 0xe0, 0x9a, 0xe0, + 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0x9a, 0xe0, 0xfa, 0x7a, 0xf8, 0x42, + 0x34, 0x39, 0x57, 0xf1, 0x6c, 0x69, 0x97, 0x20, 0x80, 0xbd, 0x21, 0x40, 0xd6, 0x46, 0x34, 0xc9, + 0x86, 0x12, 0x5f, 0x91, 0x0c, 0x58, 0x49, 0x06, 0x2e, 0xe6, 0x07, 0x95, 0x82, 0xc8, 0xc0, 0x4c, + 0x64, 0x92, 0x01, 0x92, 0x01, 0x92, 0x01, 0x92, 0x01, 0x92, 0x01, 0x92, 0x01, 0x92, 0x01, 0x92, + 0x81, 0x5b, 0xe5, 0xd1, 0x6f, 0xd6, 0x05, 0xf1, 0x80, 0x6d, 0xd6, 0x47, 0x17, 0xfc, 0x61, 0x7d, + 0x34, 0xc1, 0xed, 0x3d, 0x62, 0xb3, 0x3e, 0x9a, 0xe1, 0xed, 0x5b, 0xa6, 0xc8, 0xfa, 0x68, 0xed, + 0xa6, 0xb8, 0xb1, 0xbe, 0xb3, 0xb1, 0xb3, 0xb5, 0xbd, 0xbe, 0xc3, 0x32, 0x69, 0x02, 0x62, 0x61, + 0x52, 0xb2, 0x4c, 0xda, 0xba, 0x98, 0x70, 0x9d, 0x5f, 0x74, 0xd3, 0xcb, 0xb1, 0xc4, 0xbc, 0xe8, + 0x4c, 0x6e, 0x26, 0x47, 0x8b, 0x10, 0x93, 0xc9, 0xd1, 0x12, 0x35, 0x96, 0xc9, 0xd1, 0x32, 0x0d, + 0x8c, 0xc9, 0x51, 0xcd, 0x82, 0x33, 0x39, 0x5a, 0x3d, 0xf6, 0xc8, 0x4a, 0x09, 0x4d, 0x40, 0x81, + 0x95, 0x12, 0x55, 0xa0, 0x05, 0x5c, 0x69, 0xfe, 0x98, 0x78, 0x13, 0x45, 0xa3, 0x74, 0x66, 0xc7, + 0xd0, 0x9b, 0xcd, 0x93, 0xc1, 0x17, 0x75, 0xee, 0x8f, 0xfd, 0xf4, 0xcb, 0xd4, 0xfd, 0xd4, 0x46, + 0x63, 0x15, 0x0d, 0x32, 0x58, 0xed, 0x46, 0x2a, 0xfd, 0x63, 0x14, 0xff, 0xee, 0x06, 0x51, 0x92, + 0xfa, 0xd1, 0x40, 0xd5, 0xee, 0xfe, 0x45, 0xb2, 0xf4, 0x37, 0xb5, 0x71, 0x3c, 0x4a, 0x47, 0x83, + 0x51, 0x98, 0xe4, 0xdf, 0x6a, 0xb3, 0x48, 0x5b, 0xf3, 0x63, 0xe5, 0x27, 0xd9, 0xaf, 0xb5, 0x30, + 0x19, 0x9e, 0xd4, 0xc2, 0xc4, 0xcf, 0xa8, 0x50, 0x92, 0x7f, 0x9b, 0x7e, 0xc9, 0xfe, 0x54, 0x1b, + 0x8d, 0xfd, 0x7f, 0x4f, 0x94, 0x3b, 0xfd, 0xaa, 0xbe, 0xa6, 0x2a, 0x1a, 0xaa, 0xa1, 0x3b, 0x83, + 0x49, 0xb5, 0x34, 0xbc, 0x48, 0xa6, 0xbf, 0xd4, 0x66, 0x7f, 0x76, 0x93, 0x60, 0x58, 0x4b, 0x52, + 0x3f, 0x55, 0x98, 0xa1, 0x1c, 0xcf, 0x66, 0xb0, 0x24, 0x02, 0xb3, 0x5e, 0x74, 0xab, 0xb5, 0xc0, + 0x5a, 0x01, 0x51, 0x8d, 0x93, 0xa4, 0xf1, 0x64, 0x90, 0x46, 0x73, 0x08, 0xd6, 0x9e, 0x3d, 0xa6, + 0xe6, 0xfc, 0x29, 0x79, 0x07, 0xf3, 0x67, 0xe3, 0x75, 0xb2, 0x67, 0xe3, 0xd5, 0x63, 0xe5, 0x7b, + 0xad, 0x64, 0x78, 0xe2, 0xb5, 0x12, 0x7f, 0x8a, 0x30, 0xa7, 0xbf, 0x7b, 0x9d, 0xec, 0x29, 0x4c, + 0xbf, 0x35, 0xe6, 0x0f, 0x61, 0x46, 0xfa, 0xbd, 0x5e, 0x78, 0xe1, 0xcd, 0xbe, 0x1e, 0x06, 0x43, + 0x2c, 0x2f, 0x85, 0xe3, 0x0b, 0x80, 0xfc, 0x40, 0x96, 0xaa, 0x0b, 0xfd, 0x13, 0x15, 0xba, 0x27, + 0x41, 0x34, 0x0c, 0xa2, 0x33, 0x38, 0x57, 0x70, 0x2b, 0xab, 0x78, 0x5b, 0x54, 0x30, 0x7f, 0xba, + 0xe0, 0x07, 0x60, 0x62, 0xa1, 0x26, 0x0e, 0x91, 0x13, 0x85, 0x22, 0x12, 0x83, 0xe8, 0x89, 0x40, + 0x31, 0x89, 0x3f, 0x31, 0x89, 0x3e, 0x29, 0x89, 0x3d, 0xe2, 0xee, 0x6f, 0xbd, 0xc4, 0xbd, 0x20, + 0x06, 0x05, 0xdc, 0x19, 0xb7, 0x84, 0x75, 0x27, 0x39, 0x10, 0xc8, 0xc4, 0x04, 0xb5, 0x50, 0x4c, + 0x10, 0x00, 0x0f, 0x06, 0x24, 0x80, 0x02, 0x51, 0xe0, 0x40, 0x0a, 0x48, 0x10, 0x07, 0x16, 0xc4, + 0x81, 0x06, 0x69, 0xe0, 0x01, 0x13, 0x44, 0x80, 0x82, 0x09, 0x78, 0x50, 0x91, 0x0b, 0x78, 0x1e, + 0xc4, 0xf1, 0x28, 0x46, 0xcc, 0x30, 0x3c, 0xe8, 0xdf, 0xaf, 0x45, 0xe6, 0xe4, 0xc7, 0x32, 0x40, + 0x12, 0x4b, 0xae, 0xaa, 0x03, 0x9a, 0x44, 0x82, 0x27, 0x69, 0x20, 0x4a, 0x2c, 0x98, 0x12, 0x0b, + 0xaa, 0xa4, 0x82, 0x2b, 0x6c, 0x90, 0x05, 0x0e, 0xb6, 0xf2, 0x97, 0xce, 0xc9, 0x8f, 0x1a, 0x32, + 0x29, 0x9c, 0xfc, 0x68, 0x9d, 0xf1, 0x70, 0x57, 0x26, 0xc1, 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xc1, + 0x37, 0xc1, 0x37, 0xc1, 0x37, 0xf1, 0x43, 0x45, 0xc0, 0x37, 0x77, 0x65, 0x16, 0x2f, 0x2a, 0x67, + 0xc1, 0x94, 0xf4, 0x60, 0x39, 0x0b, 0x46, 0x9f, 0xd8, 0x9c, 0x05, 0xc3, 0xe8, 0xf6, 0x2d, 0x53, + 0xe4, 0x2c, 0x18, 0xed, 0xa6, 0xc8, 0x5d, 0x99, 0x04, 0xc2, 0xe2, 0xa4, 0xe4, 0x10, 0x18, 0xeb, + 0x82, 0x81, 0xf3, 0x87, 0x0a, 0xce, 0xbe, 0xa4, 0x72, 0xf2, 0xa2, 0x73, 0x79, 0x99, 0x04, 0x2d, + 0x42, 0x4c, 0x26, 0x41, 0x4b, 0xd4, 0x54, 0x26, 0x41, 0xcb, 0x34, 0x30, 0x26, 0x41, 0x35, 0x0b, + 0xce, 0x24, 0x68, 0xf5, 0x68, 0x22, 0x93, 0xa0, 0xa5, 0x43, 0x04, 0x26, 0x41, 0x8b, 0xfe, 0x30, + 0x09, 0x4a, 0x6c, 0x7b, 0x8f, 0xd8, 0x4c, 0x82, 0x32, 0xba, 0x7d, 0xcb, 0x14, 0x99, 0x04, 0xd5, + 0x6e, 0x8a, 0x4c, 0x82, 0x12, 0x08, 0x8b, 0x93, 0x92, 0x49, 0x50, 0x9b, 0x24, 0xe3, 0xc8, 0xbb, + 0xe7, 0xc9, 0x29, 0x75, 0x88, 0xd6, 0xd2, 0xb4, 0x1f, 0x4e, 0xbe, 0x13, 0x6e, 0x36, 0xce, 0xf4, + 0xdd, 0xe2, 0x4f, 0x97, 0xc8, 0xa4, 0xe4, 0x70, 0x89, 0xa7, 0x88, 0xc7, 0xe1, 0x12, 0x05, 0xea, + 0x21, 0x87, 0x4b, 0x14, 0x69, 0x38, 0x1c, 0x2e, 0x51, 0x36, 0x1e, 0xe2, 0x70, 0x09, 0x7b, 0xc1, + 0x2e, 0xfc, 0x70, 0x89, 0x34, 0xbc, 0x90, 0x53, 0x21, 0x31, 0x15, 0x56, 0x46, 0x79, 0xc4, 0x1a, + 0xcb, 0x23, 0x2a, 0x03, 0x3c, 0x44, 0x02, 0x10, 0x69, 0x40, 0x44, 0x2c, 0x20, 0x11, 0x0b, 0x4c, + 0xa4, 0x02, 0x14, 0x6c, 0xa0, 0x02, 0x0e, 0x58, 0xc4, 0x00, 0x97, 0x5c, 0x50, 0x15, 0x8f, 0xdc, + 0x73, 0x95, 0xc6, 0xc1, 0x40, 0x8e, 0x0f, 0xcb, 0xd7, 0xf8, 0x5c, 0xcb, 0x2e, 0xc4, 0x17, 0xc8, + 0x80, 0x37, 0xe2, 0x60, 0x8e, 0x44, 0xb8, 0x23, 0x1a, 0xf6, 0x48, 0x85, 0x3f, 0xe2, 0x61, 0x90, + 0x78, 0x38, 0x24, 0x1d, 0x16, 0xc9, 0x80, 0x47, 0x42, 0x60, 0x92, 0x38, 0xb8, 0x94, 0x0b, 0x8c, + 0x3d, 0xb1, 0xfc, 0xbb, 0xb1, 0x06, 0x79, 0x92, 0xb9, 0x25, 0xe0, 0x49, 0x2c, 0x88, 0x92, 0x0c, + 0xa6, 0xac, 0x00, 0x55, 0xd2, 0xc1, 0x95, 0x35, 0x20, 0xcb, 0x1a, 0xb0, 0x65, 0x0b, 0xe8, 0x92, + 0x05, 0xbe, 0x84, 0x81, 0x30, 0xb1, 0x60, 0x2c, 0x17, 0x5c, 0x58, 0x1e, 0xeb, 0xc1, 0xa0, 0x25, + 0x2a, 0xa7, 0xf5, 0x10, 0x4c, 0x5b, 0x15, 0x2a, 0xbe, 0x54, 0xb8, 0x66, 0x03, 0x6c, 0xb3, 0x0a, + 0xbe, 0xd9, 0x02, 0xe3, 0xac, 0x83, 0x73, 0xd6, 0xc1, 0x3a, 0xdb, 0xe0, 0x9d, 0x4c, 0x98, 0x27, + 0x14, 0xee, 0xe5, 0xca, 0x23, 0xa6, 0xa3, 0xfb, 0xbb, 0x51, 0x63, 0x12, 0x44, 0xe9, 0x1b, 0xd1, + 0x21, 0x63, 0x8e, 0xa1, 0xb6, 0x05, 0xdf, 0x82, 0xac, 0xd6, 0xf0, 0x87, 0x3e, 0xb2, 0x43, 0xf6, + 0x8a, 0xd4, 0x56, 0x72, 0x4b, 0xc9, 0xc5, 0xd2, 0xed, 0x08, 0x6d, 0x3d, 0x7f, 0xf0, 0x7e, 0x04, + 0x77, 0xc1, 0x5a, 0x16, 0xce, 0x6f, 0xbb, 0x00, 0xff, 0x2b, 0x5d, 0x00, 0xb8, 0x0b, 0xd8, 0x58, + 0xdf, 0xd9, 0xd8, 0xd9, 0xda, 0x5e, 0xdf, 0xd9, 0xa4, 0x2f, 0x20, 0x21, 0xa1, 0xf4, 0x37, 0x3f, + 0xfd, 0x17, 0x7c, 0xde, 0x94, 0x58, 0x78, 0x64, 0x96, 0xd2, 0xb9, 0xff, 0xa0, 0xfc, 0xf6, 0x74, + 0xf4, 0xe7, 0xff, 0xe9, 0xba, 0x82, 0x18, 0xb9, 0xcb, 0x5f, 0xbe, 0xb9, 0xb2, 0x5a, 0x8e, 0x8e, + 0xc4, 0x72, 0x07, 0x22, 0xa9, 0x6a, 0x3b, 0x49, 0xe3, 0xc9, 0x20, 0x8d, 0xe6, 0xe9, 0xd2, 0xf6, + 0xec, 0xc9, 0x36, 0xe7, 0x0f, 0xd6, 0x3b, 0x98, 0x3f, 0x4e, 0xaf, 0x93, 0x3d, 0x4e, 0xaf, 0x1e, + 0x2b, 0xdf, 0x6b, 0x25, 0xc3, 0x13, 0xaf, 0x95, 0xf8, 0xbd, 0xcb, 0xb1, 0x9a, 0xfe, 0xee, 0x75, + 0xb2, 0x07, 0x37, 0xfd, 0xd6, 0x98, 0x3f, 0xb7, 0xd9, 0xc1, 0xa3, 0xd7, 0x0b, 0x2f, 0xbc, 0xc3, + 0x60, 0xd8, 0x9a, 0x3e, 0xb0, 0xdd, 0xd9, 0xf3, 0xca, 0xfe, 0xae, 0x11, 0x8f, 0xf6, 0x67, 0x4f, + 0x8a, 0xf3, 0xa6, 0xaa, 0xe2, 0xae, 0xb2, 0x16, 0x9d, 0xb9, 0xc1, 0x0b, 0x6c, 0x2e, 0xca, 0x24, + 0x67, 0x6b, 0x51, 0x19, 0xe2, 0xb2, 0xb5, 0x48, 0xa3, 0x2e, 0xb3, 0xb5, 0x48, 0xa7, 0x21, 0xb2, + 0xb5, 0xc8, 0x34, 0x3e, 0x66, 0x6b, 0x11, 0xd1, 0xc7, 0x42, 0x19, 0xe4, 0xb5, 0x16, 0xa9, 0xb3, + 0xa9, 0xf2, 0x26, 0x82, 0xbb, 0x8b, 0x16, 0x77, 0xc0, 0x06, 0x23, 0x42, 0x29, 0xbb, 0x20, 0x95, + 0x15, 0xd0, 0x4a, 0x3a, 0xc4, 0xb2, 0x06, 0x6a, 0x59, 0x03, 0xb9, 0x6c, 0x81, 0x5e, 0xb2, 0x20, + 0x98, 0x30, 0x28, 0x26, 0x16, 0x92, 0xdd, 0x85, 0x66, 0xf2, 0x3b, 0x8c, 0x16, 0x37, 0x22, 0xbb, + 0xc5, 0x68, 0x8d, 0x2d, 0x46, 0x04, 0x6e, 0x55, 0x06, 0x70, 0xb6, 0x00, 0x39, 0xeb, 0x00, 0x9d, + 0x75, 0xc0, 0xce, 0x36, 0x80, 0x27, 0x13, 0xe8, 0x09, 0x05, 0x7c, 0xe2, 0x81, 0x5f, 0x7e, 0x03, + 0xc1, 0xf8, 0x62, 0xc3, 0x95, 0x8e, 0x02, 0x97, 0x42, 0xe0, 0xad, 0xbb, 0x12, 0xee, 0x9f, 0x64, + 0x43, 0x43, 0x6b, 0x20, 0xa2, 0x4d, 0x50, 0xd1, 0x4a, 0xc8, 0x68, 0x1b, 0x74, 0xb4, 0x16, 0x42, + 0x5a, 0x0b, 0x25, 0x6d, 0x85, 0x94, 0xb2, 0xa1, 0xa5, 0x70, 0x88, 0x69, 0x0d, 0xd4, 0xcc, 0x6f, + 0x44, 0xe6, 0xa4, 0xc9, 0xef, 0xc6, 0x50, 0x89, 0x13, 0x28, 0x2d, 0x07, 0x9d, 0xd6, 0x81, 0x4f, + 0x1b, 0x41, 0xa8, 0xd5, 0x60, 0xd4, 0x56, 0x50, 0x6a, 0x3d, 0x38, 0xb5, 0x1e, 0xa4, 0xda, 0x0e, + 0x56, 0xed, 0x00, 0xad, 0x96, 0x80, 0x57, 0xeb, 0x40, 0x6c, 0x7e, 0x43, 0xfe, 0x70, 0x18, 0xab, + 0x24, 0xb1, 0xcf, 0xb1, 0x2f, 0xa2, 0xf1, 0xe2, 0x06, 0x2d, 0xf3, 0x7a, 0x76, 0xcd, 0xdc, 0xb0, + 0x16, 0xe8, 0xda, 0x0c, 0x78, 0x2b, 0x01, 0x7c, 0x6d, 0x07, 0xc0, 0x95, 0x01, 0xc2, 0x95, 0x01, + 0xc4, 0x55, 0x01, 0xc6, 0x76, 0x01, 0x64, 0xcb, 0x80, 0x72, 0xae, 0x84, 0xe2, 0x67, 0x98, 0x7e, + 0x37, 0xea, 0x65, 0x67, 0xf5, 0x73, 0x94, 0xe9, 0x46, 0x23, 0xf7, 0x3f, 0xa3, 0x48, 0xd9, 0x18, + 0x00, 0x17, 0x29, 0xd5, 0xb7, 0x16, 0xde, 0xdb, 0x81, 0x9f, 0xa6, 0x2a, 0x8e, 0xc4, 0x0f, 0x47, + 0x7d, 0xf0, 0x06, 0x5f, 0xbe, 0x3c, 0x5a, 0x75, 0x77, 0xfa, 0x7f, 0x1d, 0xad, 0xb9, 0x3b, 0xfd, + 0xd9, 0xd7, 0xb5, 0xec, 0xb7, 0xd9, 0xf7, 0xf5, 0xa3, 0x55, 0x77, 0x63, 0xf1, 0x7d, 0xf3, 0x68, + 0xd5, 0xdd, 0xec, 0xbf, 0x3a, 0x3e, 0x7e, 0xfd, 0xea, 0xcf, 0x37, 0x57, 0x8f, 0xff, 0x87, 0x2f, + 0xff, 0x76, 0x74, 0x7c, 0x3c, 0xfe, 0xb3, 0x7d, 0x35, 0xfd, 0xb5, 0x75, 0xd5, 0xff, 0xc7, 0xab, + 0x7f, 0xda, 0x8a, 0x25, 0xa6, 0x37, 0x7e, 0x7c, 0xfc, 0xba, 0xff, 0x77, 0xfb, 0xc2, 0x6a, 0xff, + 0x05, 0x41, 0x02, 0xef, 0x84, 0x30, 0xe7, 0x3b, 0x18, 0x5b, 0xf6, 0x04, 0xb9, 0x07, 0xef, 0xcb, + 0xd2, 0xc1, 0x50, 0xd3, 0x1b, 0xaa, 0x2d, 0x9a, 0xa1, 0x17, 0x5f, 0x6a, 0x37, 0xab, 0x2d, 0x25, + 0x4e, 0x9d, 0xb3, 0xd7, 0x55, 0xb0, 0x62, 0x87, 0xce, 0x8d, 0x4e, 0xed, 0xd9, 0x4e, 0xcd, 0x86, + 0xaa, 0x58, 0x53, 0x13, 0xf2, 0x0e, 0xfc, 0xf4, 0x8b, 0x77, 0x38, 0x7b, 0x8e, 0x5e, 0x73, 0x7c, + 0xb1, 0x31, 0xff, 0xee, 0x70, 0xf2, 0x34, 0x9d, 0xea, 0xa3, 0x75, 0xd8, 0x86, 0xca, 0x41, 0xab, + 0x2a, 0x06, 0xd9, 0x9e, 0x82, 0x96, 0x8a, 0x63, 0x7b, 0x0a, 0xf6, 0x4d, 0xb1, 0x3d, 0x45, 0xc8, + 0x8d, 0xb1, 0x3d, 0x85, 0x98, 0x8c, 0xb8, 0xec, 0x47, 0x95, 0xca, 0x9a, 0xf6, 0x94, 0x70, 0x34, + 0x4a, 0x2c, 0x6c, 0x4f, 0x99, 0xdd, 0x96, 0x2d, 0x65, 0xa4, 0xea, 0xd4, 0x9f, 0x84, 0x99, 0x03, + 0x3b, 0xf5, 0xc3, 0xc4, 0xb6, 0xb6, 0x9b, 0x55, 0xb6, 0xdd, 0x10, 0x5c, 0x13, 0x64, 0x13, 0x6c, + 0x57, 0x0e, 0x74, 0x5b, 0x0f, 0xbe, 0x6d, 0x07, 0xe1, 0x76, 0x80, 0x71, 0x4b, 0x40, 0x79, 0xae, + 0x6c, 0xd6, 0x55, 0x11, 0xe6, 0x51, 0xeb, 0x64, 0x34, 0x0a, 0x95, 0x1f, 0xd9, 0x14, 0xb3, 0x16, + 0x19, 0xd5, 0x35, 0x1e, 0xa2, 0xd3, 0x09, 0x14, 0xa4, 0x53, 0xa9, 0x4d, 0x0e, 0x20, 0x37, 0xfe, + 0xec, 0xae, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, 0x48, 0xfd, + 0x88, 0xf8, 0x88, 0xfa, 0x2a, 0x42, 0xfd, 0x82, 0xa1, 0x8a, 0xd2, 0x20, 0xbd, 0x8c, 0xd5, 0xa9, + 0x8d, 0xf4, 0x6f, 0xd3, 0xa2, 0x7b, 0x6a, 0xce, 0x5f, 0xd5, 0xae, 0x9f, 0x28, 0x7b, 0x47, 0x65, + 0x74, 0x0e, 0x0f, 0x3e, 0x7c, 0x5e, 0xf7, 0x1a, 0xbf, 0xf6, 0x0e, 0xba, 0x8d, 0x0f, 0xcd, 0x5f, + 0xbd, 0xdd, 0x66, 0x7b, 0xaf, 0xd9, 0xfe, 0xe8, 0x35, 0xba, 0x1d, 0xef, 0xa0, 0xde, 0xfb, 0xd9, + 0x3b, 0x6c, 0x7c, 0xdc, 0x6f, 0xb4, 0x7b, 0x5e, 0xef, 0xb7, 0x83, 0x86, 0x6d, 0x61, 0xfb, 0xb3, + 0x1f, 0x4e, 0x54, 0x62, 0x65, 0x0b, 0xa0, 0xa5, 0x23, 0x0b, 0x16, 0x7a, 0xfb, 0xa9, 0xdd, 0xfe, + 0xb4, 0xbf, 0xdb, 0xe8, 0x36, 0xf6, 0xbc, 0x66, 0xbb, 0xd7, 0xe8, 0x7e, 0xa8, 0xbf, 0x6f, 0x2c, + 0x54, 0xd5, 0xc2, 0x7e, 0xf7, 0x9f, 0xa8, 0x9f, 0xb2, 0xf4, 0xb3, 0x79, 0xf0, 0x79, 0xc3, 0x62, + 0x7d, 0xb4, 0xea, 0x8e, 0xfa, 0xa4, 0x31, 0xbc, 0x0b, 0xde, 0x81, 0x2d, 0xd1, 0x86, 0x3d, 0x6c, + 0x92, 0x7b, 0xd8, 0x2c, 0xe8, 0xc5, 0x65, 0xa3, 0x95, 0x09, 0x2b, 0x99, 0x44, 0xd1, 0xe4, 0xfc, + 0x44, 0xc5, 0x6a, 0xe8, 0x7e, 0x19, 0x8d, 0xed, 0xe9, 0xb8, 0xba, 0x73, 0x5f, 0x6c, 0xbd, 0x42, + 0xb8, 0x0d, 0xb6, 0x5e, 0x01, 0x5b, 0x0c, 0x5b, 0xaf, 0x90, 0x1d, 0x00, 0x5b, 0xaf, 0xa4, 0xc1, + 0x69, 0xb6, 0x5e, 0x11, 0xa9, 0x15, 0xad, 0x54, 0xdc, 0x0c, 0x84, 0x1d, 0x43, 0xb9, 0x19, 0x88, + 0xe0, 0x93, 0x20, 0x94, 0x60, 0xb4, 0x12, 0xa0, 0xd4, 0x7a, 0x70, 0x6a, 0x3d, 0x48, 0xb5, 0x1d, + 0xac, 0xda, 0x01, 0x5a, 0x2d, 0x01, 0xaf, 0xd6, 0x81, 0xd8, 0xfc, 0x86, 0x82, 0x28, 0x55, 0xf1, + 0xa9, 0x3f, 0x50, 0x6e, 0x30, 0xb4, 0xb7, 0xe6, 0xe9, 0xd6, 0x5d, 0x72, 0x47, 0x10, 0x21, 0x2f, + 0xa1, 0x2f, 0x21, 0x30, 0xa1, 0x70, 0x35, 0x21, 0x71, 0x65, 0xa0, 0x71, 0x55, 0x20, 0xb2, 0x5d, + 0x50, 0xd9, 0x32, 0xc8, 0x9c, 0x2b, 0xa1, 0xfd, 0x3b, 0x82, 0x26, 0x41, 0x94, 0xbe, 0x59, 0xb7, + 0x78, 0x2b, 0xd0, 0xb6, 0x85, 0xb7, 0xd6, 0xf5, 0xa3, 0x33, 0x65, 0xed, 0x4a, 0x20, 0x3b, 0x21, + 0x4a, 0xf6, 0xe2, 0xf6, 0x83, 0xc8, 0x5a, 0x0c, 0x66, 0x39, 0xb9, 0x5b, 0xba, 0xcd, 0xac, 0x2b, + 0xa7, 0x02, 0xf7, 0xf9, 0x21, 0xf6, 0x07, 0x69, 0x30, 0x8a, 0xf6, 0x82, 0xb3, 0x20, 0x4d, 0xa6, + 0x37, 0x6c, 0xed, 0xfd, 0x5e, 0xfd, 0x64, 0xb1, 0xeb, 0xf1, 0xbf, 0xd2, 0xf5, 0x58, 0xe6, 0x7a, + 0x36, 0xd6, 0x77, 0x36, 0x76, 0xb6, 0xb6, 0xd7, 0x77, 0x36, 0xe9, 0x83, 0x48, 0x08, 0x79, 0x57, + 0x3a, 0x3f, 0xdc, 0x42, 0xc8, 0x18, 0x5e, 0xb6, 0xdb, 0x8b, 0x47, 0x93, 0x54, 0xc5, 0x56, 0x9f, + 0x72, 0x5d, 0xdf, 0x22, 0x8f, 0xb8, 0x24, 0xdc, 0x16, 0x8f, 0xb8, 0x04, 0x1b, 0x1b, 0x8f, 0xb8, + 0x24, 0x3b, 0x14, 0x1e, 0x71, 0x59, 0x76, 0xa3, 0x3c, 0xe2, 0x22, 0xbe, 0x34, 0xae, 0x84, 0xf6, + 0x1f, 0x71, 0x65, 0xfb, 0x46, 0xfd, 0xe1, 0x30, 0x56, 0x49, 0xe2, 0x46, 0x23, 0xf7, 0x3f, 0xa3, + 0x48, 0x59, 0x7c, 0xe0, 0xb5, 0xf6, 0xd6, 0xc2, 0x7b, 0x3b, 0xf0, 0xd3, 0x54, 0xc5, 0x91, 0xb5, + 0x67, 0x5e, 0xce, 0xcb, 0x97, 0x47, 0xab, 0xee, 0x4e, 0xff, 0xaf, 0xa3, 0x35, 0x77, 0xa7, 0x3f, + 0xfb, 0xba, 0x96, 0xfd, 0x36, 0xfb, 0xbe, 0x7e, 0xb4, 0xea, 0x6e, 0x2c, 0xbe, 0x6f, 0x1e, 0xad, + 0xba, 0x9b, 0xfd, 0x57, 0xc7, 0xc7, 0xaf, 0x5f, 0xfd, 0xf9, 0xe6, 0xea, 0xf1, 0xff, 0xf0, 0xe5, + 0xdf, 0x8e, 0x8e, 0x8f, 0xc7, 0x7f, 0xb6, 0xaf, 0xa6, 0xbf, 0xb6, 0xae, 0xfa, 0xff, 0x78, 0xf5, + 0x4f, 0x5b, 0xb1, 0xc4, 0xf4, 0xc6, 0x8f, 0x8f, 0x5f, 0xf7, 0xff, 0xee, 0x30, 0x01, 0x45, 0x90, + 0xc0, 0x3b, 0xa9, 0x1a, 0xcc, 0xb1, 0x6d, 0xca, 0x4e, 0x7e, 0x5f, 0x95, 0x9a, 0xb6, 0x73, 0x7b, + 0xb8, 0x88, 0x0d, 0xc3, 0x77, 0xec, 0x71, 0x16, 0x6c, 0x50, 0xa7, 0x7b, 0xa3, 0x5b, 0x2b, 0xc0, + 0xad, 0xd9, 0x30, 0x06, 0x26, 0x49, 0xe3, 0xc9, 0x20, 0x8d, 0xe6, 0xc4, 0xbb, 0x3d, 0x7b, 0x1f, + 0xcd, 0xf9, 0xeb, 0xf0, 0x0e, 0xe6, 0x2f, 0xc1, 0xeb, 0x64, 0x2f, 0xc1, 0xab, 0xc7, 0xca, 0xf7, + 0x5a, 0xc9, 0xf0, 0xc4, 0x6b, 0x25, 0x7e, 0xef, 0x72, 0xac, 0xa6, 0xbf, 0x7b, 0x9d, 0xec, 0x71, + 0x4f, 0xbf, 0x35, 0xe6, 0x4f, 0x7b, 0x96, 0x9a, 0xf7, 0x7a, 0xe1, 0x85, 0x77, 0x18, 0x0c, 0x5b, + 0xd3, 0xc7, 0xbc, 0x3b, 0x7b, 0xca, 0xd9, 0xdf, 0x35, 0xe2, 0xd1, 0x81, 0x9f, 0x7e, 0xf1, 0x0e, + 0x67, 0x8f, 0xd5, 0xfb, 0x94, 0x3f, 0xd6, 0x9f, 0x47, 0x63, 0xce, 0x68, 0xa3, 0xe4, 0xd6, 0x87, + 0x03, 0xa7, 0x15, 0x24, 0x69, 0x3d, 0x4d, 0x65, 0xf7, 0x79, 0x3a, 0xfb, 0x41, 0xd4, 0x08, 0x55, + 0xe6, 0x23, 0x9d, 0x77, 0x2b, 0xd1, 0x24, 0x0c, 0x05, 0x0f, 0xfa, 0xdb, 0xf7, 0xbf, 0xda, 0x73, + 0x33, 0x9d, 0x78, 0x38, 0xf5, 0xa7, 0xbb, 0x97, 0xf3, 0x5b, 0xa1, 0x71, 0x13, 0xe3, 0x11, 0xdb, + 0x7d, 0x03, 0xdb, 0x09, 0x06, 0x73, 0x10, 0x20, 0x4e, 0x26, 0x6c, 0x93, 0x07, 0x7a, 0x64, 0x49, + 0x2c, 0xcc, 0x83, 0x4b, 0xf7, 0xdc, 0x95, 0xf0, 0xd8, 0xb2, 0x3c, 0x8d, 0x1c, 0x7b, 0x95, 0x21, + 0xa9, 0x10, 0x8f, 0x22, 0xd5, 0x93, 0xd8, 0xec, 0x41, 0x04, 0x41, 0x3c, 0xa3, 0x90, 0x4e, 0x86, + 0x83, 0xc5, 0x77, 0x57, 0x02, 0x5c, 0x95, 0xb3, 0x64, 0x36, 0x62, 0xbc, 0xd5, 0xf5, 0x48, 0xd9, + 0xa5, 0x5b, 0x10, 0x12, 0x22, 0x64, 0x8d, 0x8f, 0x15, 0xd7, 0x48, 0x20, 0xb1, 0x41, 0x40, 0x74, + 0xe1, 0xbf, 0xd4, 0x82, 0x7e, 0xf1, 0x85, 0xfa, 0xe2, 0x0b, 0xf0, 0xa5, 0x17, 0xd6, 0x93, 0x3a, + 0x15, 0xa9, 0x0c, 0xd2, 0xc6, 0x9f, 0x0a, 0x9d, 0xd5, 0x2f, 0x7a, 0x26, 0xbf, 0xd0, 0xd9, 0xfb, + 0x62, 0xbb, 0x31, 0x25, 0x77, 0x5b, 0x5a, 0xd1, 0x4d, 0x29, 0xbd, 0x5b, 0xd2, 0x9a, 0x6e, 0x48, + 0x6b, 0xba, 0x1d, 0x6d, 0xe9, 0x66, 0xe4, 0x89, 0x18, 0xc1, 0xd8, 0x7d, 0xa0, 0x2c, 0x18, 0x66, + 0x69, 0x64, 0xb9, 0x1e, 0xf3, 0x66, 0x82, 0x2b, 0xbb, 0x13, 0xa1, 0x7e, 0x46, 0xf6, 0x60, 0x0d, + 0xf1, 0x03, 0x34, 0x6c, 0x18, 0x94, 0x61, 0xd5, 0x40, 0x0c, 0x5b, 0x06, 0x5f, 0x58, 0x37, 0xe0, + 0xc2, 0xba, 0x41, 0x16, 0xb6, 0x0d, 0xac, 0x60, 0x8d, 0xba, 0x4e, 0xe5, 0x11, 0x3f, 0x68, 0xe2, + 0x1a, 0x41, 0xc5, 0xae, 0x70, 0x10, 0x75, 0x13, 0x48, 0xad, 0x6d, 0x08, 0xbe, 0x87, 0x46, 0x34, + 0x39, 0x9f, 0x2a, 0xd5, 0x15, 0xeb, 0x45, 0xe9, 0x7c, 0xbe, 0x41, 0xdd, 0x2e, 0xe6, 0x13, 0x73, + 0x2d, 0xe0, 0x6e, 0xb3, 0x5b, 0x21, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, 0x79, 0x23, + 0x79, 0x23, 0x79, 0x23, 0x7e, 0x22, 0x79, 0xfb, 0xc1, 0xa8, 0x21, 0x7e, 0xe1, 0x95, 0x05, 0x8b, + 0xad, 0x2c, 0x59, 0x60, 0x65, 0xc1, 0xbc, 0x15, 0x9b, 0x16, 0x52, 0x59, 0x36, 0x72, 0xdd, 0xb6, + 0x05, 0x53, 0x36, 0x2e, 0x71, 0xb1, 0x60, 0x4a, 0x9e, 0x55, 0x8b, 0xa1, 0x6c, 0x75, 0x01, 0xb6, + 0x2d, 0x7a, 0xb2, 0xd2, 0x17, 0x70, 0xd2, 0x94, 0x91, 0x4f, 0x9f, 0xa9, 0x7f, 0x4a, 0x2c, 0x3d, + 0x32, 0x73, 0x54, 0x04, 0x5e, 0xa3, 0xf7, 0xf2, 0x7f, 0x12, 0x38, 0x78, 0x96, 0x03, 0x23, 0x2a, + 0xe9, 0x57, 0x38, 0x30, 0x02, 0xd8, 0x8f, 0x70, 0x72, 0xc4, 0x77, 0x26, 0x47, 0xdc, 0xf9, 0x3b, + 0x4e, 0x90, 0xa8, 0x8c, 0xef, 0x12, 0xd6, 0xfc, 0x28, 0xb2, 0xe9, 0x91, 0x93, 0x22, 0x4a, 0x16, + 0x98, 0x93, 0x22, 0x34, 0x0b, 0xcf, 0x49, 0x11, 0x86, 0x6e, 0x80, 0x93, 0x22, 0x88, 0x39, 0xec, + 0xe1, 0x4c, 0xe2, 0x26, 0x45, 0x88, 0x6c, 0x48, 0xcc, 0x43, 0x8d, 0xc0, 0xfa, 0x79, 0xa1, 0xe7, + 0x4b, 0x9c, 0x13, 0x41, 0x48, 0x55, 0x2d, 0x68, 0x65, 0x0d, 0xc4, 0xb2, 0x06, 0x6a, 0xd9, 0x02, + 0xb9, 0x64, 0x41, 0x2f, 0x61, 0x10, 0x2c, 0x57, 0x12, 0xb1, 0xf5, 0xa6, 0xd7, 0x5b, 0xa7, 0x87, + 0x2a, 0x4a, 0x83, 0xf4, 0x32, 0x56, 0xa7, 0x12, 0xfd, 0xfe, 0x22, 0x47, 0x24, 0xb0, 0xe0, 0xc4, + 0x69, 0xce, 0x1f, 0xfd, 0xae, 0x9f, 0x58, 0xd0, 0xf3, 0xd5, 0x39, 0x3c, 0xf8, 0xf0, 0x79, 0xdd, + 0x6b, 0xfc, 0xda, 0x6b, 0xb4, 0xf7, 0x1a, 0x7b, 0xde, 0x41, 0xb7, 0xf1, 0xa1, 0xf9, 0xab, 0x77, + 0xd8, 0xdc, 0xf3, 0x5a, 0xf5, 0xdd, 0x46, 0xcb, 0xdb, 0x6d, 0xb6, 0xf7, 0x9a, 0xed, 0x8f, 0xde, + 0xe1, 0xa7, 0xdd, 0x5e, 0xeb, 0xb3, 0xd7, 0xfb, 0xed, 0xa0, 0x21, 0x35, 0xc8, 0x65, 0xf5, 0x4e, + 0x89, 0xe8, 0xc2, 0x60, 0xe1, 0x7d, 0x3c, 0x0b, 0xad, 0x9b, 0xaa, 0xd7, 0xfe, 0x41, 0xeb, 0xf0, + 0xb6, 0x8e, 0x09, 0x6e, 0x17, 0xf9, 0x89, 0x1a, 0x65, 0x56, 0xa3, 0x1a, 0xdd, 0x8e, 0xb7, 0xdf, + 0xe8, 0x75, 0x9b, 0xef, 0xa9, 0x45, 0xd4, 0xa2, 0xe7, 0x68, 0xd1, 0x41, 0xbd, 0xf7, 0x33, 0x1b, + 0xd7, 0xf4, 0x7e, 0xfa, 0x24, 0x68, 0x94, 0x56, 0x90, 0xa4, 0xac, 0xd3, 0x2a, 0x57, 0x6e, 0x1b, + 0xeb, 0xb4, 0xe4, 0x54, 0x77, 0x0a, 0xa8, 0x35, 0x7a, 0x41, 0xef, 0xf0, 0x74, 0xeb, 0x12, 0xb5, + 0xcf, 0x59, 0xe4, 0xde, 0x66, 0x91, 0xfb, 0x99, 0x65, 0xed, 0x61, 0x46, 0x37, 0x32, 0x61, 0xa1, + 0xd7, 0xc2, 0x90, 0xeb, 0x88, 0x28, 0x48, 0xd5, 0x5f, 0x00, 0x8d, 0x0d, 0x42, 0x70, 0x43, 0x3b, + 0xa6, 0x64, 0xa0, 0x7e, 0x50, 0x8a, 0xff, 0xb3, 0xcc, 0xef, 0x61, 0xda, 0x36, 0x9e, 0xe5, 0x60, + 0x49, 0x04, 0x66, 0xc3, 0xe8, 0xb6, 0x6b, 0x8f, 0xcd, 0x02, 0x42, 0x14, 0xed, 0x90, 0x04, 0xcb, + 0x65, 0xe1, 0x38, 0x06, 0x20, 0xa7, 0x00, 0xda, 0x37, 0x05, 0xdd, 0x1f, 0x05, 0xda, 0x07, 0x05, + 0x5b, 0xac, 0x8b, 0x5c, 0x8c, 0x2b, 0xa2, 0xd8, 0x16, 0xbd, 0x98, 0x56, 0x4c, 0xb1, 0xac, 0x98, + 0x62, 0x58, 0x29, 0xc5, 0xae, 0x04, 0xdb, 0xdf, 0x7a, 0x89, 0xa8, 0x7d, 0x41, 0xd8, 0xfd, 0x3f, + 0x12, 0xfa, 0x7c, 0xc0, 0xfb, 0x79, 0xe0, 0xfb, 0x76, 0x24, 0xf4, 0xe7, 0x88, 0xea, 0xc3, 0x91, + 0xd2, 0x6f, 0x23, 0xae, 0xaf, 0x46, 0x5c, 0xff, 0x8c, 0xb4, 0x3e, 0x19, 0xe6, 0xde, 0x1f, 0xf3, + 0x72, 0xe1, 0xfb, 0x5b, 0x84, 0xf5, 0xb1, 0x48, 0xe8, 0x57, 0x91, 0xd5, 0x97, 0xf2, 0xdd, 0xfe, + 0x13, 0x31, 0xdd, 0x26, 0x92, 0xba, 0x4a, 0x84, 0x8d, 0x3d, 0x5a, 0x6a, 0x42, 0x72, 0x38, 0x04, + 0xab, 0x72, 0x4a, 0x70, 0xdd, 0x90, 0xc6, 0xb7, 0x5f, 0xbd, 0xb7, 0x7f, 0x37, 0x2e, 0x74, 0xeb, + 0xed, 0x8f, 0x0d, 0x87, 0xf5, 0xa9, 0xcf, 0xfa, 0xf4, 0x09, 0xf3, 0x85, 0x4b, 0xc5, 0x8c, 0xea, + 0x37, 0xb9, 0x2d, 0xcb, 0x17, 0xca, 0x29, 0x5f, 0xc0, 0x6b, 0x61, 0xe0, 0x71, 0xfd, 0x7d, 0x0a, + 0x36, 0x89, 0x7e, 0x8f, 0x46, 0x7f, 0x44, 0x6e, 0x1a, 0x5e, 0xe0, 0x1e, 0xda, 0xdf, 0x14, 0x92, + 0x47, 0xf7, 0x3f, 0x22, 0x16, 0x8f, 0xee, 0x9f, 0xa1, 0x6e, 0x3c, 0xba, 0x7f, 0x8e, 0x41, 0xf0, + 0xe8, 0xbe, 0x68, 0x8c, 0xc2, 0xa3, 0x7b, 0xf9, 0x40, 0x13, 0xf6, 0xe8, 0x1e, 0x7b, 0xce, 0xb9, + 0x88, 0xb9, 0xe6, 0xe0, 0x73, 0xcc, 0x79, 0x78, 0x5f, 0x15, 0x70, 0x20, 0x05, 0x24, 0x88, 0x03, + 0x0b, 0xe2, 0x40, 0x83, 0x34, 0xf0, 0x80, 0x09, 0x22, 0x40, 0xc1, 0x04, 0x3c, 0xa8, 0xc8, 0x05, + 0x0c, 0x55, 0x74, 0x96, 0xa5, 0xae, 0x84, 0x1c, 0x31, 0xcf, 0xe5, 0x05, 0xb7, 0x69, 0x19, 0xb3, + 0xbf, 0xc5, 0xcc, 0xfa, 0x96, 0x34, 0xdb, 0x5b, 0xe4, 0x2c, 0x6f, 0x69, 0xb3, 0xbb, 0xc5, 0xce, + 0xea, 0x16, 0x3b, 0x9b, 0x5b, 0xea, 0x2c, 0x6e, 0x0e, 0x17, 0x7a, 0xce, 0x4b, 0x17, 0x33, 0x5b, + 0xfb, 0xfa, 0x20, 0x22, 0x88, 0xd2, 0xb5, 0x2d, 0x09, 0x2e, 0x77, 0x8e, 0x11, 0xb6, 0x04, 0x88, + 0xda, 0xf5, 0xa3, 0x33, 0x25, 0x66, 0xd4, 0xb2, 0xa0, 0xd1, 0x78, 0xfb, 0x41, 0x24, 0x70, 0x15, + 0x99, 0xcc, 0xc5, 0x36, 0x59, 0x69, 0xa7, 0x40, 0xb9, 0x3f, 0xc4, 0xfe, 0x20, 0x0d, 0x46, 0xd1, + 0x5e, 0x70, 0x16, 0x64, 0x03, 0xc8, 0x56, 0xe5, 0xcc, 0xff, 0x14, 0xb4, 0x18, 0x70, 0xdf, 0xff, + 0x4a, 0x53, 0xd4, 0x6c, 0x8a, 0x5b, 0x9b, 0x9b, 0x6f, 0x36, 0x69, 0x8e, 0xc4, 0xc2, 0xb2, 0xa4, + 0xec, 0x73, 0xe6, 0x9a, 0x6d, 0xe1, 0x40, 0xc6, 0x7e, 0x44, 0x49, 0xfb, 0x10, 0x99, 0x03, 0x2d, + 0x58, 0x50, 0xe6, 0x40, 0x4b, 0x16, 0x9a, 0x39, 0x50, 0x4d, 0x82, 0x33, 0x07, 0x4a, 0x44, 0x20, + 0x86, 0x24, 0x32, 0x07, 0x5a, 0x3e, 0x46, 0x60, 0x0e, 0xb4, 0xe8, 0x0f, 0x73, 0xa0, 0x04, 0xb7, + 0xf7, 0x88, 0xcd, 0x1c, 0x28, 0xc3, 0xdb, 0xb7, 0x4c, 0x91, 0x39, 0x50, 0xed, 0xa6, 0xc8, 0x1c, + 0x28, 0xb1, 0xb0, 0x40, 0x29, 0x99, 0x03, 0xb5, 0x2e, 0x1c, 0x38, 0x17, 0x73, 0x97, 0x24, 0x24, + 0x09, 0x3a, 0x13, 0x97, 0x59, 0xd0, 0x22, 0xc4, 0x64, 0x16, 0xb4, 0x44, 0x45, 0x65, 0x16, 0xb4, + 0x4c, 0x03, 0x63, 0x16, 0x54, 0xb3, 0xe0, 0xcc, 0x82, 0x56, 0x8f, 0x26, 0x0a, 0xcc, 0x82, 0x9e, + 0x04, 0x91, 0x1f, 0x5f, 0x0a, 0xca, 0x82, 0xee, 0x10, 0x52, 0x5b, 0x24, 0x19, 0x57, 0xb9, 0x3d, + 0x4f, 0x4e, 0xa9, 0x73, 0x95, 0x6e, 0x4c, 0xc2, 0x41, 0x5e, 0x13, 0xcd, 0x31, 0x68, 0xa2, 0xcc, + 0x97, 0x63, 0xd0, 0xca, 0x37, 0xd7, 0x4a, 0xee, 0x6f, 0xfb, 0x34, 0xbb, 0x7f, 0xb8, 0x4d, 0xb2, + 0x40, 0xb3, 0xe0, 0x5e, 0xd0, 0x1f, 0x5d, 0x2b, 0x24, 0xe4, 0xba, 0x79, 0xe8, 0xb5, 0xf2, 0xd0, + 0xeb, 0xe3, 0x31, 0xd7, 0xc4, 0xa3, 0x28, 0x3b, 0x68, 0xd0, 0x95, 0x1a, 0x6c, 0x1d, 0xa8, 0x25, + 0x98, 0xe5, 0x06, 0x56, 0x8c, 0x68, 0x6a, 0x3e, 0x76, 0x99, 0x95, 0xc0, 0xb0, 0x23, 0x41, 0x73, + 0x20, 0x12, 0x1d, 0x87, 0x59, 0x43, 0x32, 0xa7, 0xbe, 0x66, 0xae, 0x6c, 0xc8, 0x60, 0x50, 0x0c, + 0x45, 0x98, 0x81, 0x18, 0x0c, 0xa8, 0xa5, 0x06, 0x50, 0x33, 0x36, 0xaf, 0xdf, 0xe2, 0x0c, 0x58, + 0x9b, 0x73, 0x16, 0xfb, 0x83, 0x4c, 0x99, 0x8c, 0x19, 0x5a, 0x7e, 0x42, 0x73, 0x2d, 0x8a, 0x21, + 0xaf, 0x63, 0x76, 0x2a, 0xa8, 0xf1, 0xa2, 0x0b, 0x84, 0x62, 0x0a, 0xa8, 0x22, 0x09, 0x94, 0xe2, + 0x07, 0xb8, 0xa2, 0x06, 0xb8, 0x62, 0x05, 0xb4, 0x22, 0x84, 0x6a, 0xa1, 0x35, 0xd3, 0x53, 0x2d, + 0x9d, 0x8c, 0x18, 0x18, 0xb7, 0xd2, 0xbc, 0x1b, 0x7b, 0x2a, 0x8d, 0x61, 0x7b, 0xc0, 0x18, 0x70, + 0x0d, 0x53, 0x47, 0x88, 0x54, 0x27, 0x08, 0x59, 0x07, 0x88, 0x56, 0xe7, 0x07, 0x5b, 0xc7, 0x07, + 0x5b, 0xa7, 0x87, 0x5a, 0x87, 0x57, 0xed, 0x8c, 0x1f, 0xca, 0xc0, 0x67, 0x07, 0x69, 0x5d, 0xd4, + 0xcd, 0x48, 0x89, 0x62, 0xd6, 0x58, 0x1b, 0x21, 0xe0, 0x0a, 0xf0, 0x11, 0x0b, 0xed, 0xa1, 0x0b, + 0xea, 0x51, 0x0b, 0xe7, 0xe1, 0x0b, 0xe4, 0xe1, 0x0b, 0xe1, 0xd1, 0x0b, 0xde, 0x59, 0xa0, 0x82, + 0x18, 0x80, 0x73, 0x81, 0x30, 0xd7, 0x37, 0x41, 0xaf, 0x6d, 0xe2, 0xce, 0x46, 0xf9, 0xc1, 0x5a, + 0x44, 0xd0, 0x46, 0x0f, 0xde, 0x62, 0x82, 0xb8, 0x98, 0x60, 0x2e, 0x25, 0xa8, 0x63, 0x05, 0x77, + 0xb0, 0x20, 0x0f, 0x1b, 0xec, 0x73, 0xc1, 0x82, 0xb1, 0x1b, 0x44, 0xa9, 0x8a, 0x4f, 0xfd, 0x81, + 0x72, 0xfd, 0xe1, 0x30, 0x56, 0x49, 0x82, 0xbf, 0xc2, 0xf1, 0x5e, 0xa9, 0xb1, 0x37, 0x3a, 0xae, + 0x72, 0xa3, 0xa3, 0x75, 0x90, 0x41, 0x14, 0x74, 0x90, 0x02, 0x21, 0xc4, 0x41, 0x09, 0x71, 0x90, + 0x42, 0x1a, 0xb4, 0xc0, 0x84, 0x18, 0xa0, 0x50, 0x23, 0x7f, 0xb9, 0xf0, 0x8d, 0xf0, 0x37, 0xa2, + 0xf9, 0xc5, 0xc6, 0x22, 0x8a, 0xbb, 0xd1, 0xc8, 0xfd, 0xcf, 0x28, 0x42, 0x1e, 0x97, 0x93, 0x93, + 0xfe, 0xb7, 0xc0, 0x32, 0x1e, 0xf8, 0x69, 0xaa, 0xe2, 0x08, 0x7e, 0x0e, 0xa8, 0xf3, 0xf2, 0xe5, + 0xd1, 0xaa, 0xbb, 0xd3, 0xff, 0xeb, 0x68, 0xcd, 0xdd, 0xe9, 0xcf, 0xbe, 0xae, 0x65, 0xbf, 0xcd, + 0xbe, 0xaf, 0x1f, 0xad, 0xba, 0x1b, 0x8b, 0xef, 0x9b, 0x47, 0xab, 0xee, 0x66, 0xff, 0xd5, 0xf1, + 0xf1, 0xeb, 0x57, 0x7f, 0xbe, 0xb9, 0x7a, 0xfc, 0x3f, 0x7c, 0xf9, 0xb7, 0xa3, 0xe3, 0xe3, 0xf1, + 0x9f, 0xed, 0xab, 0xe9, 0xaf, 0xad, 0xab, 0xfe, 0x3f, 0x5e, 0xfd, 0x13, 0x3d, 0xa6, 0x4c, 0x6f, + 0xe0, 0xf8, 0xf8, 0x75, 0xff, 0xef, 0xb8, 0x6e, 0xb9, 0xcf, 0xbe, 0x71, 0xa9, 0x81, 0xc2, 0x19, + 0xab, 0x38, 0x18, 0x0d, 0xf1, 0x09, 0xdf, 0x5c, 0x4e, 0x52, 0x3c, 0x52, 0x3c, 0x52, 0x3c, 0x52, + 0x3c, 0x52, 0x3c, 0x52, 0x3c, 0x52, 0x3c, 0x41, 0x14, 0x6f, 0x12, 0x44, 0xe9, 0x9b, 0x75, 0x01, + 0xa4, 0x6e, 0x1b, 0x58, 0x44, 0x19, 0x9b, 0x1d, 0x04, 0x4c, 0xde, 0x93, 0xb4, 0xc9, 0x41, 0xd8, + 0xd8, 0x78, 0x69, 0x9b, 0x1b, 0x24, 0x8e, 0x88, 0x17, 0xb0, 0xa9, 0x41, 0xd4, 0x86, 0x06, 0xa9, + 0x26, 0xb6, 0xb1, 0xbe, 0xb3, 0xb1, 0xb3, 0xb5, 0xbd, 0xbe, 0xb3, 0x49, 0x5b, 0xab, 0x16, 0x20, + 0xc5, 0x97, 0x8e, 0x49, 0x41, 0xb1, 0xbe, 0xdc, 0x89, 0x95, 0x9f, 0x00, 0x4f, 0x5d, 0xcd, 0x49, + 0xc5, 0x5c, 0x4e, 0x26, 0x05, 0x9f, 0x22, 0x1e, 0x93, 0x82, 0x05, 0x6a, 0x22, 0x93, 0x82, 0x45, + 0x1a, 0x0e, 0x93, 0x82, 0x25, 0x0b, 0xcc, 0xa4, 0xa0, 0xbd, 0x2c, 0x4c, 0x50, 0x52, 0x50, 0x45, + 0x93, 0x73, 0x15, 0xcf, 0x86, 0x69, 0x09, 0x28, 0xf7, 0xd8, 0x00, 0x96, 0xb1, 0x11, 0x4d, 0xce, + 0xa7, 0x2f, 0xfd, 0x8a, 0xb0, 0x5b, 0x2c, 0xec, 0x4e, 0x91, 0x0d, 0xf7, 0xba, 0x33, 0x7a, 0x2a, + 0x25, 0x21, 0x37, 0x21, 0x37, 0x21, 0x37, 0x21, 0x37, 0x21, 0x37, 0x21, 0x37, 0x21, 0xb7, 0xa4, + 0x52, 0xeb, 0xa1, 0x8a, 0xd2, 0x20, 0xbd, 0x8c, 0xd5, 0xa9, 0x04, 0xc8, 0x0d, 0x7c, 0xb0, 0xe1, + 0x34, 0xe7, 0x8f, 0x72, 0xd7, 0x4f, 0x04, 0xed, 0xa2, 0xfd, 0xd8, 0xad, 0xbf, 0x6f, 0x78, 0xad, + 0xc3, 0xba, 0xd7, 0x6b, 0x7d, 0xf6, 0x7a, 0xbf, 0x1d, 0x34, 0x0e, 0xd1, 0x7d, 0x7d, 0x76, 0xdc, + 0x95, 0xc0, 0xd7, 0x3d, 0xac, 0x88, 0xa8, 0x7d, 0xb8, 0x47, 0x19, 0xba, 0x8d, 0xc3, 0x5e, 0xbd, + 0xdb, 0xf3, 0xba, 0x8d, 0xfa, 0x61, 0xa7, 0xed, 0xf0, 0xf8, 0xbb, 0xa2, 0x7a, 0xd0, 0x3c, 0xf0, + 0x9a, 0xed, 0x5e, 0xa3, 0xfb, 0x61, 0xfa, 0x87, 0xfa, 0xde, 0x5e, 0xb7, 0x71, 0x78, 0x48, 0x6d, + 0xa8, 0xaa, 0x36, 0x1c, 0x34, 0xba, 0xcd, 0xce, 0x1e, 0xb7, 0xe5, 0x3e, 0xef, 0xd3, 0x27, 0xc2, + 0x17, 0x2e, 0x15, 0xe7, 0x5a, 0x7c, 0x93, 0xd6, 0x72, 0xdb, 0xe3, 0x73, 0xd6, 0x64, 0xe4, 0x8b, + 0x05, 0xae, 0xf7, 0x3c, 0x02, 0xae, 0x62, 0x05, 0x5a, 0x71, 0x08, 0x34, 0x46, 0xf1, 0xe6, 0x42, + 0x4e, 0xd8, 0xa1, 0x69, 0xb8, 0x5b, 0x43, 0x39, 0x3a, 0xed, 0x91, 0x82, 0x71, 0x74, 0xda, 0x33, + 0x85, 0xe4, 0xe8, 0xb4, 0x82, 0x04, 0xe5, 0xe8, 0x34, 0x42, 0x4c, 0x7d, 0x2f, 0x11, 0x76, 0x74, + 0x1a, 0xe6, 0xbc, 0xd4, 0x25, 0x9f, 0x8c, 0x38, 0x37, 0x15, 0x1c, 0x04, 0xc0, 0x83, 0x01, 0x09, + 0xa0, 0x40, 0x14, 0x38, 0x90, 0x02, 0x12, 0xc4, 0x81, 0x05, 0x71, 0xa0, 0x41, 0x1a, 0x78, 0xc0, + 0x04, 0x11, 0xa0, 0x60, 0x02, 0x1e, 0x54, 0xe4, 0x02, 0x86, 0x2a, 0x3a, 0xcb, 0x92, 0x56, 0x42, + 0xce, 0x95, 0xe7, 0xf2, 0x82, 0xdb, 0xb4, 0x8c, 0x46, 0x4f, 0x78, 0xd8, 0x21, 0x09, 0x7e, 0x88, + 0x84, 0x21, 0xd2, 0xe0, 0x88, 0x58, 0x58, 0x22, 0x16, 0x9e, 0x48, 0x85, 0x29, 0xd8, 0x70, 0x05, + 0x1c, 0xb6, 0xe4, 0x2f, 0x1d, 0xbe, 0xe0, 0x70, 0xc9, 0xeb, 0x4e, 0x82, 0x28, 0x5d, 0xdb, 0x92, + 0xe0, 0x72, 0xe7, 0x18, 0x61, 0x4b, 0x80, 0xa8, 0x32, 0x06, 0x02, 0x2d, 0x3e, 0x32, 0x42, 0xd8, + 0x8a, 0xb4, 0x01, 0x41, 0xc2, 0xc0, 0xed, 0x92, 0xd8, 0xc2, 0x06, 0x06, 0xe5, 0x72, 0x0b, 0x1c, + 0x66, 0x22, 0x24, 0xbc, 0xdd, 0x36, 0x45, 0x41, 0x83, 0x84, 0x6c, 0x31, 0xc5, 0xad, 0xcd, 0xcd, + 0x37, 0x9b, 0x34, 0x47, 0x62, 0x61, 0x59, 0x52, 0xf6, 0x39, 0xab, 0xc9, 0xb6, 0x70, 0x80, 0xdd, + 0x14, 0xbd, 0xc4, 0x72, 0x80, 0x9b, 0xa3, 0x85, 0xc5, 0x26, 0xe6, 0x40, 0xcb, 0xd4, 0x53, 0xe6, + 0x40, 0xcb, 0x34, 0x30, 0xe6, 0x40, 0x35, 0x0b, 0xce, 0x1c, 0x68, 0xf5, 0x48, 0x22, 0x73, 0xa0, + 0xe5, 0x63, 0x04, 0xe6, 0x40, 0x8b, 0xfe, 0x30, 0x07, 0x4a, 0x70, 0x7b, 0x8f, 0xd8, 0xcc, 0x81, + 0x32, 0xbc, 0x7d, 0xcb, 0x14, 0x99, 0x03, 0xd5, 0x6e, 0x8a, 0xcc, 0x81, 0x12, 0x0b, 0x0b, 0x94, + 0x92, 0x39, 0x50, 0xeb, 0xc2, 0x81, 0x73, 0x31, 0x77, 0x49, 0x42, 0x92, 0xa0, 0x33, 0x71, 0x99, + 0x05, 0x2d, 0x42, 0x4c, 0x66, 0x41, 0x4b, 0x54, 0x54, 0x66, 0x41, 0xcb, 0x34, 0x30, 0x66, 0x41, + 0x35, 0x0b, 0xce, 0x2c, 0x68, 0xf5, 0x68, 0xa2, 0xc0, 0x2c, 0xe8, 0x49, 0x10, 0xf9, 0xf1, 0xa5, + 0xa0, 0x2c, 0xe8, 0x0e, 0x21, 0xb5, 0x45, 0x92, 0xa1, 0x76, 0xa4, 0x81, 0x4f, 0x52, 0xca, 0xe5, + 0x94, 0x37, 0x51, 0xe9, 0xc6, 0x0c, 0x1c, 0xc4, 0xe9, 0x4a, 0xb8, 0xe6, 0xc2, 0xb9, 0x14, 0x82, + 0x0d, 0x56, 0xb6, 0xa1, 0x22, 0xce, 0x0f, 0x4a, 0xd2, 0x78, 0x32, 0x48, 0xa3, 0x39, 0x8c, 0x69, + 0xcf, 0x9e, 0x50, 0x73, 0xfe, 0x80, 0xbc, 0x83, 0xf9, 0x63, 0xf1, 0x3a, 0xd9, 0x63, 0xf1, 0xea, + 0xb1, 0xf2, 0xbd, 0x56, 0x32, 0x3c, 0xf1, 0x5a, 0x89, 0x3f, 0x45, 0x69, 0xd3, 0xdf, 0xbd, 0x4e, + 0xf6, 0x00, 0xa6, 0xdf, 0x3e, 0x4e, 0xef, 0x7f, 0xfa, 0xa5, 0x17, 0x5e, 0x78, 0x9f, 0x66, 0x77, + 0xde, 0x0b, 0x2f, 0x38, 0xf9, 0x0d, 0x59, 0x12, 0x10, 0x1f, 0xe4, 0xb4, 0x82, 0x24, 0xad, 0xa7, + 0x29, 0x56, 0x0f, 0xbb, 0xb3, 0x1f, 0x44, 0x8d, 0x50, 0x4d, 0x29, 0x68, 0xe2, 0xbc, 0x5b, 0x89, + 0x26, 0x61, 0x08, 0x34, 0xae, 0x6f, 0xdf, 0xff, 0x8a, 0x2b, 0x5c, 0x27, 0x1e, 0xaa, 0x58, 0x0d, + 0x77, 0x2f, 0xe7, 0xa2, 0x51, 0xd9, 0xf1, 0x03, 0xad, 0xbc, 0x00, 0x0b, 0x14, 0x54, 0x4b, 0x0c, + 0xa6, 0x18, 0x11, 0xd4, 0x7c, 0xbc, 0x32, 0x2b, 0x81, 0x61, 0xe7, 0x81, 0xe6, 0x34, 0x64, 0x39, + 0x0b, 0xb3, 0x26, 0x64, 0x4e, 0x71, 0xcd, 0x5c, 0xd9, 0x90, 0xa9, 0xa0, 0x98, 0x88, 0x18, 0xd3, + 0x30, 0x18, 0x3e, 0x4b, 0x0a, 0x97, 0x66, 0xec, 0x5c, 0xbf, 0x95, 0x19, 0xb0, 0x30, 0x27, 0x1e, + 0x4d, 0x52, 0x15, 0xbb, 0x41, 0x74, 0x3a, 0x8a, 0xcf, 0xcd, 0x5a, 0xd9, 0xf5, 0xc2, 0xfc, 0x65, + 0x99, 0x0c, 0xf9, 0x1e, 0xb3, 0x73, 0x3f, 0x8d, 0x97, 0x55, 0x20, 0x94, 0x4b, 0x40, 0x95, 0x41, + 0xa0, 0x94, 0x37, 0xc0, 0x95, 0x2d, 0xc0, 0x95, 0x23, 0xa0, 0x95, 0x19, 0x54, 0x0b, 0xb3, 0x99, + 0x9e, 0x5b, 0xe9, 0x64, 0xf4, 0xc0, 0xb8, 0x95, 0xe6, 0xfd, 0xd6, 0x53, 0x69, 0x0c, 0xdb, 0x03, + 0xc6, 0x08, 0x6b, 0x98, 0x4a, 0x41, 0xa4, 0x4a, 0x40, 0xc8, 0x4a, 0x3f, 0xb4, 0x4a, 0x3e, 0xd8, + 0x4a, 0x3d, 0xd8, 0x4a, 0x3c, 0xd4, 0x4a, 0xbb, 0x6a, 0x67, 0xfc, 0x50, 0x46, 0x3a, 0x3b, 0x48, + 0x0b, 0xa1, 0x6e, 0x46, 0x4a, 0x14, 0xb3, 0xc6, 0xda, 0xf9, 0x00, 0x57, 0x62, 0x8f, 0x58, 0x4a, + 0x0f, 0x5d, 0x32, 0x8f, 0x5a, 0x1a, 0x0f, 0x5f, 0x02, 0x0f, 0x5f, 0xea, 0x8e, 0x5e, 0xd2, 0xce, + 0xa2, 0x14, 0xc4, 0x00, 0x9c, 0x0b, 0x74, 0x23, 0xcf, 0xe9, 0x87, 0xee, 0xc0, 0x1f, 0xfb, 0x27, + 0x41, 0x18, 0xa4, 0x81, 0x4a, 0x70, 0x17, 0x36, 0x7e, 0x43, 0x66, 0xee, 0x6f, 0x94, 0x18, 0xce, + 0x91, 0xc3, 0xba, 0x88, 0xf0, 0x8e, 0x1e, 0xe6, 0xc5, 0x84, 0x7b, 0x31, 0x61, 0x5f, 0x4a, 0xf8, + 0xc7, 0x82, 0x01, 0x60, 0x70, 0x00, 0x16, 0x16, 0xe4, 0x82, 0x71, 0x7f, 0xa3, 0xad, 0x20, 0x00, + 0x1e, 0x0c, 0x48, 0x00, 0x05, 0xa2, 0xc0, 0x81, 0x14, 0x90, 0x20, 0x0e, 0x2c, 0x88, 0x03, 0x0d, + 0xd2, 0xc0, 0x03, 0x26, 0x88, 0x00, 0x05, 0x13, 0xf0, 0xa0, 0x22, 0x17, 0x50, 0x7d, 0x1d, 0xab, + 0x38, 0x98, 0xea, 0x9f, 0x1f, 0xba, 0xa9, 0xa0, 0xe9, 0x3d, 0x77, 0x05, 0x07, 0xb7, 0xf2, 0x3d, + 0x75, 0xea, 0x4f, 0xc2, 0xcc, 0xc8, 0x4f, 0xfd, 0x30, 0xe1, 0xdc, 0xa1, 0x6a, 0x00, 0x27, 0x49, + 0x00, 0x4a, 0x24, 0x90, 0x92, 0x06, 0xa8, 0xc4, 0x02, 0x2b, 0xb1, 0x00, 0x4b, 0x2a, 0xd0, 0xc2, + 0x06, 0x5c, 0xe0, 0xc0, 0x2b, 0x7f, 0xe9, 0x02, 0xe7, 0x0e, 0x8d, 0x46, 0xa1, 0xf2, 0x23, 0x41, + 0x83, 0x87, 0xd6, 0xd6, 0x38, 0x79, 0xc8, 0x36, 0xe3, 0x71, 0xb2, 0x76, 0xa2, 0xd3, 0x49, 0xe8, + 0xc6, 0x2a, 0x49, 0xfd, 0x38, 0x9d, 0x9d, 0xf1, 0x85, 0x82, 0x18, 0xc2, 0x83, 0x77, 0x40, 0xaa, + 0x40, 0xaa, 0x40, 0xaa, 0x40, 0xaa, 0x40, 0xaa, 0x40, 0xaa, 0x40, 0xaa, 0x40, 0xb4, 0x43, 0xaa, + 0x40, 0xaa, 0x40, 0xaa, 0x50, 0x20, 0x55, 0xf8, 0xa2, 0xc2, 0xb1, 0x8a, 0x05, 0x33, 0x85, 0xf9, + 0x0d, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x10, + 0xeb, 0x90, 0x28, 0x90, 0x28, 0x90, 0x28, 0x3c, 0xfd, 0xdd, 0x8e, 0x47, 0x41, 0x94, 0xba, 0xe9, + 0xc8, 0x9d, 0x7d, 0x19, 0x5d, 0xa8, 0xd8, 0x0d, 0xfd, 0x48, 0x0e, 0x51, 0x78, 0xe8, 0x06, 0x48, + 0x14, 0x48, 0x14, 0x48, 0x14, 0x48, 0x14, 0x48, 0x14, 0x48, 0x14, 0x48, 0x14, 0x88, 0x75, 0x48, + 0x14, 0x48, 0x14, 0x48, 0x14, 0x9e, 0xfe, 0x6e, 0x93, 0x74, 0x72, 0xe2, 0xce, 0xa6, 0xc0, 0xca, + 0x21, 0x07, 0x37, 0x85, 0x26, 0x21, 0x20, 0x21, 0x20, 0x21, 0x20, 0x21, 0x20, 0x21, 0x20, 0x21, + 0x20, 0x21, 0x20, 0xa6, 0x21, 0x21, 0x20, 0x21, 0x20, 0x21, 0x78, 0xfa, 0xbb, 0x4d, 0x63, 0xff, + 0xf4, 0x34, 0x18, 0xb8, 0x2a, 0x3a, 0x0b, 0x22, 0xa5, 0xe2, 0x20, 0x3a, 0x93, 0x43, 0x0c, 0xee, + 0x13, 0x9e, 0x04, 0x81, 0x04, 0x81, 0x04, 0x81, 0x04, 0x81, 0x04, 0x81, 0x04, 0x81, 0x04, 0x81, + 0x18, 0x87, 0x04, 0x81, 0x04, 0x01, 0x9e, 0x20, 0x70, 0xf4, 0xd3, 0x63, 0xfc, 0x37, 0xe6, 0x3a, + 0xe8, 0x25, 0x39, 0xc1, 0xd7, 0x5a, 0x2e, 0xef, 0x02, 0xcc, 0xf7, 0x44, 0xd7, 0x1e, 0x1e, 0x42, + 0x5d, 0x9b, 0x4d, 0xa3, 0x7c, 0x41, 0x33, 0x92, 0x27, 0x11, 0xda, 0x60, 0x58, 0x70, 0x43, 0xb6, + 0xd3, 0x80, 0x11, 0x07, 0x7b, 0x17, 0xbb, 0xdc, 0xb6, 0x9b, 0x3d, 0x97, 0xe6, 0xf5, 0x13, 0xf0, + 0x7a, 0xe1, 0x85, 0xd7, 0xbc, 0xf9, 0x44, 0xde, 0xdf, 0x7c, 0x20, 0x2f, 0xe8, 0x31, 0xc0, 0xbd, + 0x85, 0x13, 0x8d, 0x86, 0xca, 0xf5, 0x87, 0xe7, 0x41, 0x14, 0x24, 0x69, 0xec, 0xa7, 0xc1, 0x85, + 0x72, 0x53, 0xff, 0x0c, 0x78, 0x8d, 0xc3, 0x83, 0x12, 0x73, 0x89, 0xc3, 0x8f, 0x88, 0xc5, 0x25, + 0x0e, 0x96, 0xe6, 0xeb, 0xb8, 0xc4, 0xa1, 0x6a, 0xf9, 0x37, 0x2e, 0x71, 0xb0, 0x01, 0xab, 0x73, + 0x89, 0xc3, 0xf3, 0x7c, 0x32, 0x97, 0x38, 0xd8, 0x07, 0x06, 0x24, 0x80, 0x02, 0x51, 0xe0, 0x40, + 0x0a, 0x48, 0x10, 0x07, 0x16, 0xc4, 0x81, 0x06, 0x69, 0xe0, 0x01, 0x13, 0x44, 0x80, 0x82, 0x09, + 0x78, 0x50, 0x91, 0x0b, 0x28, 0x21, 0xe5, 0xf0, 0xa0, 0xa7, 0xc7, 0xcf, 0x3e, 0x3c, 0x04, 0x44, + 0x58, 0x6d, 0x54, 0x1d, 0x60, 0x22, 0x12, 0xa0, 0x48, 0x03, 0x2a, 0x62, 0x01, 0x8b, 0x58, 0xe0, + 0x22, 0x15, 0xc0, 0x60, 0x03, 0x19, 0x70, 0x40, 0x93, 0xbf, 0x74, 0x79, 0xd5, 0x46, 0x93, 0x20, + 0x4a, 0xdf, 0xac, 0x0b, 0x2a, 0x36, 0xda, 0x16, 0x20, 0x6a, 0xd7, 0x8f, 0xce, 0xa6, 0x4f, 0xf7, + 0x48, 0x84, 0xab, 0x92, 0x11, 0xc2, 0xb2, 0x07, 0xbb, 0x1f, 0x44, 0x62, 0x62, 0xae, 0x30, 0x70, + 0xbb, 0x24, 0xf6, 0x67, 0x3f, 0x9c, 0x28, 0x81, 0x72, 0x7f, 0x88, 0xfd, 0x41, 0x1a, 0x8c, 0xa2, + 0xbd, 0xe0, 0x2c, 0x48, 0xa7, 0xb4, 0x6d, 0x55, 0x8c, 0xfc, 0x57, 0x3f, 0x09, 0x32, 0x45, 0xff, + 0x2b, 0x4d, 0x51, 0xb3, 0x29, 0x6e, 0xac, 0xef, 0x6c, 0xec, 0x6c, 0x6d, 0xaf, 0xef, 0x6c, 0xd2, + 0x26, 0x09, 0x88, 0x65, 0x49, 0xd9, 0x27, 0xb1, 0x78, 0x86, 0x01, 0xb5, 0x82, 0x24, 0xad, 0xa7, + 0x69, 0x2c, 0x83, 0x5c, 0xec, 0x07, 0x51, 0x23, 0x54, 0x53, 0xf6, 0x3b, 0xb5, 0xf5, 0x68, 0x12, + 0x86, 0x02, 0x40, 0xfb, 0xbe, 0xff, 0x55, 0x9e, 0xd0, 0x9d, 0x78, 0xa8, 0x62, 0x35, 0xdc, 0xbd, + 0x9c, 0x8b, 0xcc, 0x46, 0x0c, 0x8b, 0x24, 0x63, 0x23, 0xc6, 0xf3, 0xe4, 0x14, 0x5c, 0xc7, 0xfd, + 0x50, 0x19, 0x29, 0xdb, 0x30, 0xe4, 0x4a, 0xc4, 0x36, 0x8c, 0xca, 0x9b, 0x6f, 0x55, 0x9b, 0x30, + 0xda, 0xa3, 0xa1, 0xaa, 0xdf, 0x7a, 0x1c, 0xbd, 0xe9, 0xd3, 0x60, 0x07, 0x06, 0xba, 0xa3, 0x70, + 0x12, 0x75, 0x36, 0x85, 0xc4, 0xd9, 0x18, 0xc6, 0x20, 0x3a, 0x73, 0xfd, 0xf0, 0x6c, 0x14, 0x07, + 0xe9, 0x97, 0x73, 0xdc, 0x16, 0x8c, 0x87, 0x45, 0x66, 0x0f, 0xc6, 0x8f, 0x88, 0xc5, 0x1e, 0x8c, + 0x67, 0x28, 0x1f, 0x7b, 0x30, 0x9e, 0x63, 0x10, 0xec, 0xc1, 0x28, 0x1a, 0xe3, 0xb1, 0x07, 0x43, + 0x3e, 0x50, 0x67, 0x0f, 0xc6, 0x33, 0x01, 0x01, 0x7b, 0x30, 0xac, 0x03, 0x03, 0x12, 0x40, 0x81, + 0x28, 0x70, 0x20, 0x05, 0x24, 0x88, 0x03, 0x0b, 0xe2, 0x40, 0x83, 0x34, 0xf0, 0x80, 0x09, 0x22, + 0x40, 0xc1, 0x04, 0x3c, 0xa8, 0xb8, 0x06, 0x17, 0x93, 0xf1, 0x78, 0x14, 0xa7, 0x6a, 0x78, 0x4d, + 0xe0, 0x05, 0x35, 0x61, 0xdc, 0x2b, 0x3d, 0xbb, 0x30, 0xaa, 0x00, 0x49, 0x24, 0x41, 0x13, 0x91, + 0x10, 0x45, 0x1a, 0x54, 0x11, 0x0b, 0x59, 0xc4, 0x42, 0x17, 0xa9, 0x10, 0x06, 0x1b, 0xca, 0x80, + 0x43, 0x9a, 0xfc, 0xa5, 0xcb, 0xeb, 0xc2, 0x08, 0x86, 0x2a, 0x4a, 0x83, 0xf4, 0x32, 0x56, 0xa7, + 0x92, 0xe6, 0xbe, 0x0a, 0x28, 0x43, 0x75, 0x9a, 0xf3, 0x47, 0xbb, 0xeb, 0x27, 0x82, 0x22, 0xc5, + 0x42, 0x31, 0x0e, 0xbb, 0x5e, 0xbd, 0xf5, 0xb1, 0xd3, 0x6d, 0xf6, 0x7e, 0xde, 0x97, 0x12, 0x2c, + 0xb2, 0x6a, 0xe5, 0x44, 0x4c, 0xfb, 0xcb, 0x8a, 0xa8, 0x16, 0x98, 0xdb, 0xda, 0xd1, 0xeb, 0x36, + 0xdf, 0xf7, 0xbc, 0xc3, 0x83, 0x0f, 0x0e, 0x7b, 0x1c, 0xa8, 0x15, 0x0b, 0xad, 0x10, 0xa5, 0x0e, + 0x22, 0x24, 0xed, 0x13, 0x31, 0x5a, 0x8d, 0x18, 0x59, 0x5e, 0x5f, 0xbe, 0xd0, 0x2c, 0xaf, 0xaf, + 0xac, 0x0b, 0x60, 0x66, 0xfe, 0x51, 0x39, 0x0b, 0x96, 0xd7, 0x97, 0x5d, 0x9f, 0xfb, 0x60, 0x89, + 0x20, 0xeb, 0xeb, 0xe5, 0x4a, 0xc4, 0xfa, 0x7a, 0xda, 0x6f, 0x55, 0x0b, 0xec, 0x0f, 0x67, 0x0f, + 0xa4, 0x3b, 0x7b, 0x1e, 0xf5, 0xfc, 0x71, 0xb0, 0xc2, 0x1e, 0xdd, 0x55, 0x2c, 0x95, 0xab, 0x27, + 0xc1, 0xd0, 0x0d, 0xfd, 0x13, 0x15, 0xba, 0xf1, 0x7c, 0x8c, 0x8c, 0x90, 0x3a, 0xfb, 0xbb, 0x82, + 0xb3, 0xda, 0xfe, 0x47, 0xc4, 0x62, 0xb5, 0xfd, 0x33, 0x54, 0x90, 0xd5, 0xf6, 0xcf, 0x31, 0x08, + 0x56, 0xdb, 0x17, 0x8d, 0xf8, 0x58, 0x6d, 0x2f, 0x1f, 0xb6, 0xc3, 0x56, 0xdb, 0x4f, 0xd1, 0x2f, + 0x7e, 0xb1, 0x7d, 0x26, 0x25, 0x6b, 0xed, 0x6d, 0x82, 0x02, 0x12, 0x20, 0x81, 0x28, 0x68, 0x20, + 0x05, 0x22, 0x88, 0x83, 0x0a, 0xe2, 0x20, 0x83, 0x34, 0xe8, 0x80, 0x09, 0x21, 0x40, 0xa1, 0x04, + 0x3c, 0xa4, 0xb8, 0x09, 0x2d, 0xe4, 0x94, 0xd6, 0x4f, 0x85, 0x95, 0x51, 0x49, 0xbf, 0xc6, 0x4a, + 0xfa, 0xca, 0x00, 0x0f, 0x91, 0x00, 0x44, 0x1a, 0x10, 0x11, 0x0b, 0x48, 0xc4, 0x02, 0x13, 0xa9, + 0x00, 0x05, 0x1b, 0xa8, 0x80, 0x03, 0x16, 0x31, 0xc0, 0x25, 0x17, 0x34, 0x3f, 0x7b, 0x90, 0x57, + 0xe2, 0x7d, 0x2d, 0xba, 0x10, 0x4f, 0x20, 0x03, 0xdc, 0x88, 0x03, 0x39, 0x12, 0xc1, 0x8e, 0x68, + 0xd0, 0x23, 0x15, 0xfc, 0x88, 0x07, 0x41, 0xe2, 0xc1, 0x90, 0x74, 0x50, 0x24, 0x03, 0x1c, 0x09, + 0x01, 0x49, 0xe2, 0xc0, 0xd2, 0x35, 0x68, 0x82, 0x1e, 0xdf, 0xf4, 0x7d, 0xe0, 0x04, 0x3c, 0xd6, + 0xc9, 0x12, 0xf0, 0x24, 0x16, 0x44, 0x49, 0x06, 0x53, 0x56, 0x80, 0x2a, 0xe9, 0xe0, 0xca, 0x1a, + 0x90, 0x65, 0x0d, 0xd8, 0xb2, 0x05, 0x74, 0xc9, 0x02, 0x5f, 0xc2, 0x40, 0x98, 0x58, 0x30, 0x96, + 0x0b, 0xae, 0xa2, 0x34, 0xbe, 0xcc, 0xaa, 0xe2, 0xe5, 0xfa, 0xcc, 0x45, 0xe0, 0xba, 0x71, 0x2f, + 0x42, 0x7d, 0x8d, 0xcc, 0x85, 0x71, 0xe2, 0x61, 0x9b, 0x0d, 0xf0, 0xcd, 0x2a, 0x18, 0x67, 0x0b, + 0x9c, 0xb3, 0x0e, 0xd6, 0x59, 0x07, 0xef, 0x6c, 0x83, 0x79, 0x32, 0xe1, 0x9e, 0x50, 0xd8, 0x97, + 0x2b, 0x4f, 0x4f, 0x32, 0x7e, 0xba, 0x15, 0x35, 0x92, 0x38, 0x6b, 0xac, 0x12, 0x0c, 0xa2, 0x6e, + 0x02, 0xa9, 0xb5, 0x0d, 0xc1, 0xf7, 0xd0, 0x88, 0x26, 0xd9, 0xda, 0x1b, 0xa1, 0xa6, 0xfc, 0x82, + 0xce, 0xa7, 0x7c, 0x1d, 0x39, 0x0d, 0xe2, 0x24, 0x75, 0x2f, 0xe6, 0x0b, 0x9b, 0x85, 0xf3, 0xb7, + 0x9b, 0x37, 0x43, 0x02, 0x47, 0x02, 0x47, 0x02, 0x47, 0x02, 0x47, 0x02, 0x47, 0x02, 0x47, 0x02, + 0x47, 0x0c, 0x45, 0x02, 0xf7, 0x83, 0x51, 0x63, 0x12, 0x44, 0xe9, 0x9b, 0x75, 0x0b, 0xb8, 0xdb, + 0xb6, 0xe0, 0x5b, 0xe8, 0xce, 0x47, 0xa9, 0x1c, 0x89, 0x76, 0xa9, 0xb2, 0x43, 0xf6, 0xca, 0x7c, + 0x76, 0xa5, 0x78, 0xec, 0x61, 0x09, 0xb9, 0x58, 0xba, 0x9d, 0xcf, 0x73, 0xd6, 0x6a, 0xcb, 0xfd, + 0x7c, 0x88, 0xfd, 0x41, 0x1a, 0x8c, 0xa2, 0xbd, 0xe0, 0x2c, 0xc8, 0xa6, 0x8e, 0xae, 0x8a, 0xbf, + 0xaf, 0xab, 0x9f, 0x2c, 0x70, 0x01, 0xfe, 0x57, 0xba, 0x00, 0x70, 0x17, 0xb0, 0xb1, 0xbe, 0xb3, + 0xb1, 0xb3, 0xb5, 0xbd, 0xbe, 0xb3, 0x49, 0x5f, 0x40, 0x42, 0x42, 0xe9, 0x6f, 0x7e, 0xfa, 0x4c, + 0xff, 0x53, 0x62, 0xe9, 0x91, 0x59, 0xca, 0x94, 0xe9, 0x07, 0xe5, 0xb7, 0x68, 0x7a, 0xed, 0x9d, + 0xc1, 0x99, 0x37, 0xfe, 0xc7, 0xc5, 0x7f, 0x40, 0x1e, 0x4b, 0x2d, 0xdf, 0x7c, 0xd9, 0x06, 0x45, + 0xc7, 0x52, 0x31, 0x87, 0x22, 0xa9, 0x3d, 0x57, 0xff, 0xfc, 0xec, 0xc3, 0x60, 0xd8, 0x9a, 0x3e, + 0xa5, 0x2c, 0x6b, 0x38, 0xfb, 0xef, 0xf3, 0xbf, 0x91, 0xe1, 0x82, 0xf1, 0x1d, 0x9a, 0x00, 0x67, + 0x26, 0xac, 0x3d, 0x52, 0x64, 0x5b, 0x24, 0x67, 0x49, 0x94, 0x2c, 0x30, 0x67, 0x49, 0x68, 0x16, + 0x9e, 0xb3, 0x24, 0x0c, 0xdd, 0x00, 0x67, 0x49, 0x10, 0x73, 0xd8, 0x43, 0xa2, 0xc4, 0xcd, 0x92, + 0xc8, 0x88, 0x86, 0x9b, 0x04, 0xff, 0x11, 0x3c, 0x50, 0xe2, 0xc6, 0x3d, 0xc8, 0x9c, 0x2a, 0xb1, + 0xca, 0xa9, 0x12, 0x84, 0x55, 0x36, 0xc3, 0x2b, 0xe9, 0x30, 0xcb, 0x1a, 0xb8, 0x65, 0x0d, 0xec, + 0xb2, 0x05, 0x7e, 0xc9, 0x82, 0x61, 0xc2, 0xe0, 0x58, 0xae, 0x24, 0x62, 0xab, 0x52, 0xe5, 0x57, + 0xa3, 0x0a, 0xae, 0x42, 0x15, 0x5e, 0x7d, 0x2a, 0xb8, 0x06, 0xdb, 0x86, 0x6a, 0x53, 0x4b, 0x4a, + 0xcc, 0x6c, 0xa9, 0x2e, 0xb5, 0xa9, 0x92, 0x4c, 0x70, 0x35, 0xa9, 0x15, 0x55, 0xa4, 0xb6, 0x99, + 0xf6, 0xda, 0xd6, 0xf6, 0xf6, 0xf6, 0xfa, 0xda, 0x16, 0x2d, 0x9c, 0x74, 0xa0, 0x5a, 0x52, 0xf7, + 0x59, 0x9a, 0x55, 0xf5, 0x08, 0xe5, 0x88, 0x9c, 0xd9, 0x77, 0xbd, 0x55, 0x4b, 0xde, 0x80, 0x19, + 0xa6, 0xbd, 0x35, 0x0b, 0xce, 0xb4, 0xb7, 0xe1, 0x9b, 0x60, 0xda, 0x1b, 0xe4, 0x46, 0x98, 0xf6, + 0x26, 0xa2, 0xa9, 0x0c, 0xef, 0xb6, 0x21, 0xed, 0x1d, 0x05, 0xa3, 0x48, 0x70, 0xd6, 0x7b, 0x6d, + 0x47, 0xa0, 0xec, 0x73, 0xb5, 0x61, 0xd6, 0xdb, 0x90, 0xd2, 0x07, 0x43, 0x15, 0xa5, 0x41, 0x7a, + 0x19, 0xab, 0x53, 0x1b, 0x46, 0x47, 0x0a, 0x6e, 0x45, 0x76, 0x9a, 0xf3, 0x57, 0xb1, 0xeb, 0x27, + 0x16, 0xcc, 0xde, 0x5a, 0x28, 0x58, 0xe7, 0xf0, 0xe0, 0x83, 0xd7, 0x6d, 0x7a, 0x87, 0x5d, 0xef, + 0xb0, 0xb9, 0xe7, 0xb5, 0xea, 0xbb, 0x8d, 0x96, 0xd7, 0x6b, 0x7d, 0xf6, 0x7a, 0xbf, 0x1d, 0x34, + 0x0e, 0x1d, 0x1b, 0xb2, 0x9a, 0x89, 0xf8, 0xa1, 0x31, 0x2b, 0x56, 0x0c, 0x8e, 0xb9, 0xa5, 0x77, + 0x77, 0xf5, 0xcd, 0x61, 0x2f, 0xbf, 0xd1, 0x4f, 0x9f, 0xf9, 0x71, 0xf2, 0x87, 0x4a, 0x40, 0x2a, + 0x15, 0x4d, 0xce, 0x55, 0x3c, 0xeb, 0x6e, 0xe5, 0x34, 0x6e, 0xa3, 0xf7, 0xc0, 0x69, 0xdc, 0x74, + 0xf2, 0x36, 0x3c, 0x5f, 0x36, 0xce, 0x14, 0xe9, 0x15, 0x38, 0x7d, 0x00, 0x78, 0xfa, 0x80, 0x9c, + 0x21, 0x26, 0xec, 0xa0, 0x2f, 0x42, 0xa9, 0x27, 0xd1, 0xef, 0xd1, 0xe8, 0x8f, 0xc8, 0x4d, 0xc3, + 0x0b, 0x79, 0x7d, 0xf4, 0x37, 0x85, 0x67, 0x37, 0x7d, 0x19, 0xe2, 0xb2, 0x9b, 0x5e, 0xa3, 0x3a, + 0xb3, 0x9b, 0x5e, 0xa7, 0x21, 0xb2, 0x9b, 0xde, 0x34, 0x0e, 0x64, 0x37, 0x3d, 0x31, 0xc8, 0x42, + 0x19, 0xc4, 0x75, 0xd3, 0xcb, 0x1a, 0x3d, 0xb4, 0x14, 0x6b, 0x24, 0x8d, 0x20, 0x12, 0x0a, 0x9e, + 0xc4, 0x82, 0x28, 0xc9, 0x60, 0xca, 0x0a, 0x50, 0x25, 0x1d, 0x5c, 0x59, 0x03, 0xb2, 0xac, 0x01, + 0x5b, 0xb6, 0x80, 0x2e, 0x59, 0xe0, 0x4b, 0x18, 0x08, 0x13, 0x0b, 0xc6, 0x72, 0xc1, 0x43, 0x15, + 0x9d, 0x65, 0xe9, 0x59, 0xe1, 0x5b, 0x3d, 0xe7, 0xf7, 0xc1, 0x85, 0x9e, 0x84, 0x6b, 0xd5, 0x82, + 0x6d, 0x56, 0xc1, 0x37, 0x5b, 0x60, 0x9c, 0x75, 0x70, 0xce, 0x3a, 0x58, 0x67, 0x1b, 0xbc, 0x93, + 0x09, 0xf3, 0x84, 0xc2, 0xbd, 0x5c, 0x79, 0xec, 0x5a, 0xe8, 0xb9, 0xb6, 0x65, 0x41, 0xf9, 0xd7, + 0x16, 0x17, 0x7a, 0x1a, 0xfe, 0x70, 0xa1, 0x27, 0xc9, 0x45, 0x89, 0xb7, 0xc3, 0x85, 0x9e, 0x0c, + 0xe7, 0x3a, 0x5c, 0x00, 0x17, 0x7a, 0xc2, 0xbb, 0x80, 0xad, 0xcd, 0xcd, 0x37, 0xdc, 0xe5, 0x49, + 0x2e, 0x42, 0xe9, 0x6f, 0x7d, 0xb8, 0xcb, 0x93, 0x61, 0xee, 0x21, 0x37, 0x93, 0x4a, 0x66, 0xac, + 0x92, 0xe7, 0x3a, 0x59, 0x12, 0x8b, 0x99, 0xeb, 0x47, 0xb2, 0x03, 0xe6, 0xfa, 0x91, 0x0c, 0x9b, + 0xb9, 0x7e, 0xf0, 0x1b, 0x62, 0xae, 0x9f, 0xa8, 0xe9, 0xc9, 0xca, 0xc3, 0x5c, 0x3f, 0x1c, 0x86, + 0x62, 0xae, 0xdf, 0xf4, 0x87, 0xb9, 0x7e, 0x92, 0x8b, 0x12, 0x6f, 0x87, 0xb9, 0x7e, 0x86, 0x73, + 0x1d, 0x2e, 0x80, 0xb9, 0x7e, 0x78, 0x17, 0xc0, 0x5c, 0x3f, 0xb9, 0x08, 0xa5, 0x5f, 0xfa, 0x30, + 0xd7, 0xcf, 0x30, 0xf7, 0x90, 0x9b, 0xb9, 0x98, 0xbb, 0x4e, 0xe1, 0xc9, 0xfe, 0xd9, 0x6d, 0x30, + 0xdb, 0x6f, 0x42, 0x7c, 0x66, 0xfb, 0x81, 0x0c, 0x81, 0xd9, 0x7e, 0x24, 0xc3, 0x66, 0xb6, 0x1f, + 0xfc, 0x86, 0x98, 0xed, 0x27, 0x6e, 0x7a, 0xb2, 0xf2, 0xd8, 0x93, 0xed, 0x3f, 0x09, 0x22, 0x3f, + 0xbe, 0xb4, 0x20, 0xdb, 0xbf, 0x43, 0xaa, 0x43, 0x89, 0xa5, 0x3b, 0x18, 0xa9, 0xb3, 0x3c, 0x73, + 0xf9, 0xab, 0x30, 0xd3, 0xf3, 0xc6, 0x94, 0x44, 0x49, 0xf3, 0x3d, 0xe5, 0x19, 0x30, 0x27, 0x82, + 0xd1, 0xb5, 0x54, 0xce, 0xa5, 0x48, 0x9a, 0x55, 0x99, 0xa4, 0xf1, 0x64, 0x90, 0x46, 0x73, 0x28, + 0xd9, 0x9e, 0x3d, 0xeb, 0xe6, 0xfc, 0x51, 0x7b, 0x07, 0xf3, 0x07, 0xec, 0x75, 0xb2, 0x07, 0xec, + 0xd5, 0x63, 0xe5, 0x7b, 0xad, 0x64, 0x78, 0xe2, 0xb5, 0x12, 0x7f, 0x8a, 0xa0, 0xa7, 0xbf, 0x7b, + 0x9d, 0xec, 0x51, 0x4e, 0xbf, 0x75, 0xb3, 0x27, 0xd9, 0xbc, 0x7e, 0x90, 0x5e, 0x2f, 0xbc, 0xf0, + 0x0e, 0x67, 0xcf, 0xb0, 0x3b, 0x7b, 0x84, 0x87, 0xc1, 0xb0, 0x35, 0x7d, 0x80, 0x59, 0x7d, 0x44, + 0xf6, 0xdf, 0x3f, 0xcd, 0x1e, 0x5d, 0x2f, 0xbc, 0xe0, 0x98, 0xe5, 0x2a, 0x48, 0x08, 0xee, 0x6e, + 0x9d, 0x56, 0x90, 0xa4, 0xf5, 0x34, 0x95, 0x31, 0xf0, 0xc7, 0xd9, 0x0f, 0xa2, 0x46, 0xa8, 0xa6, + 0x06, 0x96, 0x38, 0xef, 0x56, 0xa2, 0x49, 0x18, 0x0a, 0x98, 0xb1, 0xbd, 0xef, 0x7f, 0x95, 0x27, + 0x74, 0x27, 0x1e, 0xaa, 0x58, 0x0d, 0x77, 0x2f, 0xe7, 0x22, 0xd3, 0xc8, 0xaa, 0x83, 0x65, 0xaa, + 0x80, 0x61, 0x04, 0xe0, 0x16, 0x04, 0xbc, 0x82, 0x0d, 0x52, 0x70, 0x43, 0x3f, 0xa6, 0x64, 0xa0, + 0x7e, 0x52, 0x8a, 0x7f, 0xb4, 0xdd, 0x2f, 0x62, 0x1a, 0x3b, 0x9e, 0x29, 0x61, 0x49, 0x04, 0x66, + 0xd4, 0xe8, 0xc6, 0x6c, 0xb1, 0x11, 0x03, 0x62, 0x1a, 0xd3, 0x18, 0x06, 0xcb, 0xa5, 0xe1, 0x38, + 0x0e, 0x20, 0xa7, 0x01, 0xba, 0x4a, 0x01, 0x7a, 0x55, 0x02, 0xe8, 0x2a, 0x04, 0xd8, 0x0a, 0x3b, + 0xe4, 0xca, 0x39, 0x11, 0x15, 0x71, 0xe8, 0x95, 0x6e, 0x62, 0x2a, 0xd8, 0xc4, 0x54, 0xa6, 0x49, + 0xa9, 0x38, 0x23, 0x18, 0xff, 0xd6, 0x4b, 0x44, 0x1d, 0xe5, 0x8f, 0x3d, 0xba, 0x47, 0xc2, 0x68, + 0x1e, 0xf0, 0x62, 0x7c, 0xf8, 0x62, 0x7b, 0x09, 0xc5, 0xf4, 0xa2, 0x8a, 0xe5, 0xa5, 0x14, 0xc3, + 0x8b, 0x2b, 0x76, 0x17, 0x57, 0xcc, 0x2e, 0xad, 0x58, 0x9d, 0xc9, 0xfa, 0xc7, 0xbc, 0x5c, 0xf8, + 0x62, 0xf2, 0x1b, 0xfb, 0xa1, 0x83, 0x51, 0x84, 0xec, 0x31, 0x17, 0x2c, 0x7e, 0x07, 0x58, 0xc6, + 0xf9, 0xeb, 0xc6, 0x9e, 0xec, 0x22, 0xe0, 0x4c, 0x7d, 0xa1, 0x94, 0xc1, 0x50, 0x45, 0x69, 0x90, + 0x5e, 0xc6, 0xea, 0x54, 0xc2, 0x19, 0xf4, 0x42, 0x45, 0x05, 0x4c, 0x2b, 0x70, 0x9a, 0xf3, 0x47, + 0xbb, 0xeb, 0x27, 0x4a, 0xde, 0x36, 0xfb, 0x6e, 0xd3, 0x6b, 0x1d, 0xd6, 0xbd, 0x5e, 0xeb, 0xb3, + 0xd7, 0xfb, 0xed, 0xa0, 0x71, 0x28, 0x65, 0xa5, 0x7d, 0x36, 0xd3, 0x22, 0x11, 0x35, 0xfc, 0x49, + 0xe8, 0xd2, 0xde, 0x6e, 0xd3, 0x6b, 0x77, 0xf6, 0x1a, 0x5e, 0x7d, 0x6f, 0xbf, 0xd9, 0xf6, 0x7a, + 0xf5, 0x8f, 0x82, 0xb6, 0x65, 0xff, 0x44, 0xe5, 0x28, 0x5d, 0x39, 0x9a, 0xed, 0x0f, 0x9d, 0xee, + 0x7e, 0xbd, 0xd7, 0xec, 0xb4, 0xeb, 0x2d, 0xef, 0x7d, 0xfd, 0xa0, 0xbe, 0xdb, 0x6c, 0x35, 0x7b, + 0xcd, 0xc6, 0x21, 0x15, 0x85, 0x8a, 0x72, 0x43, 0x51, 0x0e, 0xbb, 0xde, 0x61, 0x73, 0xcf, 0x6b, + 0xd5, 0x77, 0x1b, 0x2d, 0xaf, 0x5b, 0x6f, 0x7f, 0x6c, 0x50, 0x41, 0xa8, 0x20, 0xb7, 0x15, 0xa4, + 0xde, 0xfa, 0xd8, 0xe9, 0x36, 0x7b, 0x3f, 0xef, 0x53, 0x35, 0xa8, 0x1a, 0x37, 0x54, 0xe3, 0xc3, + 0xa7, 0xf6, 0x7b, 0xd9, 0x11, 0x46, 0x84, 0xa4, 0x7d, 0xf6, 0xdd, 0xd8, 0xec, 0x0b, 0x04, 0x25, + 0x2c, 0x54, 0x34, 0x39, 0x57, 0xf1, 0xac, 0xa0, 0x4f, 0x50, 0xc2, 0x62, 0x43, 0x80, 0xac, 0x8d, + 0x68, 0x72, 0xee, 0xbc, 0x5b, 0xf9, 0xf3, 0x8a, 0x55, 0xf6, 0x16, 0x39, 0x49, 0x16, 0x2c, 0x8b, + 0x72, 0xcd, 0x2c, 0x58, 0x2e, 0xb1, 0x60, 0x19, 0x6f, 0xde, 0x04, 0x6b, 0x70, 0xef, 0xd3, 0xb1, + 0x9b, 0x1d, 0xfd, 0xb0, 0x95, 0xb8, 0xb8, 0x63, 0x07, 0x58, 0x8f, 0xfb, 0x48, 0xc1, 0x58, 0x8f, + 0xfb, 0x4c, 0x21, 0x59, 0x8f, 0x5b, 0x90, 0xa0, 0xac, 0xc7, 0x25, 0xd6, 0xd4, 0xf7, 0x12, 0x61, + 0xeb, 0x71, 0x31, 0x9b, 0x70, 0x96, 0x7c, 0x32, 0x62, 0x33, 0x0e, 0x38, 0x08, 0x80, 0x07, 0x03, + 0x12, 0x40, 0x81, 0x28, 0x70, 0x20, 0x05, 0x24, 0x88, 0x03, 0x0b, 0xe2, 0x40, 0x83, 0x34, 0xf0, + 0x80, 0x09, 0x22, 0x40, 0xc1, 0x04, 0x3c, 0xa8, 0xc8, 0x05, 0x0c, 0x55, 0x74, 0x96, 0x65, 0xaf, + 0xc0, 0xfd, 0xd0, 0xc2, 0xb9, 0xcf, 0xe5, 0x05, 0xb7, 0x69, 0x19, 0xdb, 0x38, 0xc4, 0x6c, 0xdd, + 0x90, 0xb4, 0x5d, 0x43, 0xe4, 0x16, 0x0d, 0x69, 0xdb, 0x32, 0xc4, 0x6e, 0xc5, 0x10, 0xbb, 0xfd, + 0x42, 0xea, 0x96, 0x0b, 0x96, 0x42, 0x3c, 0xe7, 0xa5, 0x8b, 0xd9, 0x4e, 0x21, 0x6f, 0xe7, 0xb4, + 0xa0, 0xdd, 0xd2, 0xc2, 0x76, 0x48, 0x0b, 0x9a, 0x48, 0x2e, 0x71, 0x27, 0xb4, 0xd0, 0x55, 0x73, + 0x52, 0x77, 0x3c, 0x4b, 0x5e, 0xe2, 0x2a, 0xa8, 0xea, 0x57, 0xe4, 0x6e, 0x66, 0xe9, 0xa6, 0x28, + 0x70, 0xd7, 0xb2, 0x68, 0x73, 0xe4, 0x5a, 0x83, 0x42, 0x3e, 0x7d, 0xd6, 0x84, 0xda, 0x16, 0x0e, + 0xb0, 0x87, 0x1e, 0x2d, 0xb1, 0x1c, 0xe0, 0xe1, 0x47, 0xc2, 0x62, 0x13, 0x73, 0xa0, 0x65, 0xea, + 0x29, 0x73, 0xa0, 0x65, 0x1a, 0x18, 0x73, 0xa0, 0x9a, 0x05, 0x67, 0x0e, 0xb4, 0x7a, 0x24, 0x91, + 0x39, 0xd0, 0xf2, 0x31, 0x02, 0x73, 0xa0, 0x45, 0x7f, 0x98, 0x03, 0x25, 0xb8, 0xbd, 0x47, 0x6c, + 0xe6, 0x40, 0x19, 0xde, 0xbe, 0x65, 0x8a, 0xcc, 0x81, 0x6a, 0x37, 0x45, 0xe6, 0x40, 0x89, 0x85, + 0x05, 0x4a, 0xc9, 0x1c, 0xa8, 0x75, 0xe1, 0xc0, 0xb9, 0x98, 0xbb, 0x24, 0x21, 0x49, 0xd0, 0x99, + 0xb8, 0xcc, 0x82, 0x16, 0x21, 0x26, 0xb3, 0xa0, 0x25, 0x2a, 0x2a, 0xb3, 0xa0, 0x65, 0x1a, 0x18, + 0xb3, 0xa0, 0x9a, 0x05, 0x67, 0x16, 0xb4, 0x7a, 0x34, 0x51, 0x60, 0x16, 0xf4, 0x24, 0x88, 0xfc, + 0xf8, 0x52, 0x50, 0x16, 0x74, 0x87, 0x90, 0xda, 0x22, 0xc9, 0xb8, 0xd0, 0xf9, 0x79, 0x72, 0x0a, + 0x1e, 0xad, 0x74, 0x63, 0x18, 0x0e, 0xe2, 0x98, 0x25, 0x5c, 0xbb, 0xe1, 0x80, 0x0a, 0xc1, 0x96, + 0x6b, 0x89, 0xc5, 0x56, 0x75, 0x53, 0xf3, 0xa7, 0xd9, 0x23, 0xe8, 0x85, 0x17, 0x1c, 0x0a, 0x87, + 0x2c, 0x09, 0x88, 0x57, 0x72, 0x5a, 0x41, 0x92, 0xd6, 0xd3, 0x14, 0xab, 0xbd, 0xdd, 0xd9, 0x0f, + 0xa2, 0x46, 0xa8, 0xa6, 0xec, 0x34, 0x71, 0xde, 0xad, 0x44, 0x93, 0x30, 0x04, 0x9a, 0xe4, 0xb7, + 0xef, 0x7f, 0xc5, 0x15, 0xae, 0x13, 0x0f, 0x55, 0xac, 0x86, 0xbb, 0x97, 0x73, 0xd1, 0xa8, 0xec, + 0xf8, 0xa1, 0x57, 0x70, 0xc8, 0x75, 0xa0, 0xb6, 0xdc, 0x97, 0x1e, 0x5e, 0x31, 0x62, 0xaa, 0xf9, + 0x08, 0x66, 0x56, 0x02, 0xc3, 0xee, 0x04, 0xcd, 0x8d, 0x08, 0x75, 0x1f, 0x66, 0x6d, 0xc9, 0x9c, + 0x06, 0x9b, 0xb9, 0xb2, 0x21, 0x9b, 0x41, 0xb1, 0x15, 0x79, 0x36, 0x62, 0x30, 0xb2, 0x96, 0x1d, + 0x49, 0xcd, 0x58, 0xbe, 0x7e, 0xbb, 0x33, 0x60, 0x73, 0x86, 0xa7, 0x8c, 0x42, 0x4c, 0x11, 0x35, + 0x3c, 0x25, 0xd4, 0x78, 0x11, 0x06, 0x42, 0x71, 0x05, 0x54, 0xd1, 0x04, 0x4a, 0x31, 0x04, 0x5c, + 0x91, 0x03, 0x5c, 0xf1, 0x02, 0x5a, 0x51, 0x42, 0xb5, 0xb0, 0x9a, 0xe9, 0x29, 0x97, 0x4e, 0x32, + 0x18, 0x01, 0x94, 0x27, 0x5c, 0x07, 0xb1, 0x4c, 0x1c, 0xc3, 0x16, 0x81, 0x51, 0x79, 0x08, 0x53, + 0x59, 0x88, 0x54, 0x39, 0x08, 0x59, 0x19, 0x88, 0x56, 0xf9, 0x07, 0x5b, 0xd9, 0x07, 0x5b, 0xb9, + 0x87, 0x5a, 0x99, 0x57, 0xed, 0xa4, 0x1f, 0x4c, 0xe5, 0x1c, 0xe8, 0xda, 0x48, 0xa4, 0xb5, 0x90, + 0x20, 0x6b, 0x1f, 0x0d, 0xe6, 0x18, 0x0d, 0x92, 0x2d, 0x88, 0x11, 0x3c, 0x48, 0x23, 0x76, 0x08, + 0xe1, 0x08, 0xe1, 0x08, 0xe1, 0x08, 0xe1, 0x08, 0xe1, 0x08, 0xe1, 0xee, 0x78, 0x9d, 0x60, 0xa8, + 0xa2, 0x34, 0x48, 0x2f, 0x63, 0x75, 0x8a, 0x04, 0xe1, 0x00, 0x1a, 0xd9, 0x9d, 0xe6, 0xfc, 0xd1, + 0xec, 0xfa, 0x09, 0x90, 0x27, 0x5c, 0xbc, 0xb8, 0xce, 0xe1, 0xc1, 0x07, 0xaf, 0x73, 0x50, 0xff, + 0xff, 0x3f, 0x35, 0xbc, 0xd6, 0x61, 0xdd, 0xeb, 0xfd, 0x76, 0xd0, 0x40, 0x71, 0x8a, 0xd9, 0x48, + 0x82, 0x04, 0x6a, 0xc6, 0x0d, 0xe8, 0xba, 0xdb, 0xe9, 0x5b, 0xfc, 0xbc, 0xee, 0x35, 0x7e, 0xed, + 0x35, 0xda, 0x7b, 0x8d, 0x3d, 0xaf, 0xd5, 0x6c, 0xff, 0xe2, 0x70, 0x7b, 0xb1, 0x98, 0xf7, 0xd7, + 0xeb, 0xd6, 0x3f, 0x7c, 0x68, 0xbe, 0xf7, 0x1a, 0xed, 0x8f, 0xcd, 0x76, 0xa3, 0xd1, 0x6d, 0xb6, + 0x3f, 0xf2, 0xf5, 0xc9, 0x79, 0x7d, 0xdd, 0xce, 0xa7, 0x5e, 0xa3, 0xeb, 0x35, 0xdb, 0x1f, 0x3a, + 0xdd, 0xfd, 0x7a, 0xaf, 0xd9, 0x69, 0xf3, 0xed, 0xc9, 0x79, 0x7b, 0x1f, 0xbb, 0xf5, 0xf7, 0x59, + 0xf0, 0xe3, 0x4b, 0x93, 0x1b, 0xf1, 0x0e, 0xba, 0x8d, 0x0f, 0xcd, 0x5f, 0x1d, 0x36, 0x67, 0xdc, + 0xfa, 0xf4, 0xab, 0x4e, 0xd4, 0x78, 0xe0, 0xae, 0x27, 0x4b, 0xc0, 0xe2, 0xc8, 0x1f, 0x29, 0x8e, + 0x34, 0xd8, 0x7c, 0x5b, 0x8d, 0xa2, 0xc1, 0x34, 0xf6, 0x4f, 0x4f, 0x83, 0x81, 0xab, 0xa2, 0xb3, + 0x20, 0x52, 0x2a, 0x0e, 0xa2, 0x33, 0xf3, 0x25, 0x84, 0xf7, 0x09, 0xc5, 0x82, 0x42, 0x23, 0x02, + 0xb0, 0xa0, 0xf0, 0x8e, 0x30, 0x2c, 0x28, 0x7c, 0x40, 0x20, 0x16, 0x14, 0x12, 0xdf, 0x5c, 0x3f, + 0x7c, 0xe3, 0x05, 0x85, 0x59, 0x9f, 0x11, 0xce, 0x59, 0xf4, 0x54, 0x1a, 0x8c, 0xb3, 0xe8, 0x35, + 0x9e, 0x45, 0xc3, 0x84, 0x36, 0xc8, 0x10, 0x87, 0x16, 0xea, 0x60, 0x43, 0x1e, 0x6c, 0xe8, 0x43, + 0x0d, 0x81, 0x20, 0x29, 0x0e, 0xc3, 0x7e, 0xc7, 0x74, 0x68, 0xbc, 0x19, 0x22, 0xf1, 0x8e, 0x57, + 0x71, 0x26, 0x0b, 0x80, 0x04, 0x4c, 0xb8, 0xc0, 0x89, 0x18, 0x40, 0xa1, 0x03, 0x29, 0x6a, 0x40, + 0x85, 0x0f, 0xac, 0xf0, 0x01, 0x16, 0x3d, 0xd0, 0x62, 0x04, 0x5c, 0x90, 0xc0, 0x0b, 0x17, 0x80, + 0x73, 0x81, 0xc2, 0x20, 0xfa, 0x1d, 0xcf, 0x2b, 0x2c, 0x5c, 0x69, 0x26, 0x1d, 0x98, 0xbd, 0x61, + 0x85, 0x66, 0xd8, 0x10, 0x8d, 0x1c, 0xaa, 0x45, 0x84, 0x6c, 0xf4, 0xd0, 0x2d, 0x26, 0x84, 0x8b, + 0x09, 0xe5, 0x52, 0x42, 0x3a, 0x56, 0x68, 0x07, 0x0b, 0xf1, 0xb0, 0xa1, 0x3e, 0x17, 0x2c, 0x99, + 0xfc, 0x3f, 0xf6, 0xde, 0xfe, 0xa9, 0x6d, 0x24, 0x5b, 0x1f, 0xff, 0x3d, 0x7f, 0x05, 0xe5, 0xba, + 0xb7, 0x0a, 0x66, 0x23, 0xb0, 0x8d, 0x0d, 0x81, 0xaa, 0x5b, 0x53, 0x4e, 0x70, 0x66, 0xf9, 0x8c, + 0x01, 0x7f, 0xc1, 0xc9, 0xde, 0x29, 0xf0, 0xba, 0x84, 0xd5, 0x26, 0xda, 0xc8, 0x92, 0x57, 0x6a, + 0x67, 0xc3, 0x4d, 0xfc, 0xbf, 0x7f, 0xcb, 0xb2, 0x2d, 0xf0, 0x5b, 0xc0, 0x52, 0x9f, 0x7e, 0x91, + 0x1f, 0x6a, 0x6a, 0x42, 0x08, 0x56, 0xb7, 0xba, 0x4f, 0x9f, 0xf3, 0x9c, 0xa7, 0xcf, 0xcb, 0xbd, + 0xa5, 0x05, 0x45, 0xfd, 0xa2, 0x5a, 0x4e, 0x66, 0xaa, 0xe9, 0x39, 0xd5, 0x13, 0x0a, 0x68, 0x0f, + 0x09, 0x4c, 0x80, 0x06, 0x46, 0x41, 0x04, 0x53, 0xa0, 0x82, 0x71, 0x90, 0xc1, 0x38, 0xe8, 0x60, + 0x1a, 0x84, 0xd0, 0x13, 0x4a, 0x68, 0x0a, 0x29, 0xb4, 0x87, 0x16, 0x8b, 0x10, 0xc3, 0x9c, 0x76, + 0x80, 0xb3, 0x09, 0x9b, 0xd1, 0x10, 0xb0, 0x84, 0x86, 0x80, 0x5b, 0x03, 0x40, 0x8c, 0x04, 0x22, + 0xa6, 0x01, 0x12, 0x63, 0x81, 0x89, 0xb1, 0x00, 0xc5, 0x54, 0xa0, 0xa2, 0x37, 0x60, 0xd1, 0x1c, + 0xb8, 0x18, 0x03, 0x60, 0x92, 0x89, 0xda, 0x4e, 0xdf, 0xf5, 0xdd, 0x88, 0x87, 0x36, 0x77, 0xbf, + 0x31, 0xeb, 0x21, 0x0c, 0x86, 0x83, 0xc8, 0x1c, 0x75, 0x36, 0xb3, 0x19, 0xab, 0x5f, 0xc3, 0x10, + 0x0d, 0x61, 0x06, 0xe8, 0x31, 0x0e, 0xfc, 0x98, 0x08, 0x82, 0x8c, 0x06, 0x43, 0xa6, 0x82, 0x22, + 0xe3, 0xc1, 0x91, 0xf1, 0x20, 0xc9, 0x74, 0xb0, 0x64, 0x06, 0x68, 0x32, 0x04, 0x3c, 0x19, 0x07, + 0xa2, 0xe6, 0xc1, 0xd4, 0x04, 0x7c, 0x98, 0xa7, 0xfc, 0xe6, 0xa0, 0xd4, 0xf4, 0x25, 0x0c, 0xd3, + 0x1e, 0x66, 0x01, 0x29, 0x63, 0x01, 0x95, 0xc9, 0xc0, 0x2a, 0x17, 0x00, 0xcb, 0x74, 0xa0, 0x95, + 0x1b, 0xc0, 0x95, 0x1b, 0xe0, 0x95, 0x17, 0x00, 0x66, 0x16, 0x10, 0x33, 0x0c, 0x90, 0x19, 0x0b, + 0xcc, 0x92, 0x89, 0xdf, 0xbb, 0xdc, 0x72, 0x7d, 0x87, 0x7d, 0x37, 0x57, 0x65, 0xce, 0xec, 0xd6, + 0xd3, 0xab, 0x18, 0xaa, 0x69, 0xf4, 0x28, 0xdf, 0xbc, 0x75, 0xa0, 0x2d, 0x0f, 0xe0, 0x2d, 0x57, + 0x20, 0x2e, 0x2f, 0x60, 0x2e, 0x77, 0xa0, 0x2e, 0x77, 0xe0, 0x2e, 0x6f, 0x20, 0xcf, 0x4c, 0xb0, + 0x67, 0x28, 0xe8, 0x4b, 0x84, 0x47, 0x9b, 0x72, 0xdf, 0x99, 0xad, 0x86, 0xc7, 0xec, 0x9e, 0x1e, + 0x25, 0xc2, 0xb3, 0x82, 0xa8, 0xd2, 0xb1, 0xc1, 0xef, 0xd0, 0x9c, 0x16, 0xc8, 0xdb, 0xdf, 0x9f, + 0x94, 0xa4, 0x3b, 0x78, 0x82, 0xb6, 0x6f, 0xa0, 0x8e, 0xa0, 0x8a, 0x56, 0x4b, 0x8d, 0xda, 0x8e, + 0xbc, 0xc2, 0x74, 0x90, 0xca, 0x8e, 0xbe, 0xc2, 0xb4, 0x0f, 0x5c, 0x38, 0xb8, 0x70, 0x70, 0xe1, + 0xe0, 0xc2, 0xc1, 0x85, 0x83, 0x0b, 0x07, 0x17, 0x4e, 0x7f, 0xe1, 0x31, 0x95, 0xbf, 0x4f, 0x5e, + 0xc0, 0x7c, 0x1e, 0x7f, 0xc9, 0xfe, 0x99, 0xce, 0xe7, 0x2f, 0x82, 0xc2, 0xa2, 0xe1, 0xaf, 0x61, + 0x3a, 0x38, 0xcc, 0x13, 0x48, 0xcc, 0x25, 0x58, 0xcc, 0x1b, 0x68, 0xcc, 0x2d, 0x78, 0xcc, 0x2d, + 0x88, 0xcc, 0x2b, 0x98, 0x34, 0x1b, 0x54, 0x1a, 0x0e, 0x2e, 0x13, 0xa1, 0x32, 0xfe, 0x9e, 0x60, + 0xc9, 0xea, 0x0c, 0x5d, 0x9f, 0xbf, 0xcb, 0x83, 0xc5, 0x99, 0x42, 0xb4, 0x6a, 0x0e, 0x5e, 0xe5, + 0xda, 0xf6, 0x1f, 0x98, 0x56, 0x4d, 0x39, 0xb3, 0x7c, 0xe5, 0x03, 0x01, 0xc4, 0x1b, 0x73, 0xe1, + 0xfa, 0xb9, 0x81, 0x34, 0x39, 0xf3, 0x6d, 0x96, 0x5e, 0x2b, 0x6e, 0x6d, 0x9b, 0xc3, 0xf7, 0xfa, + 0x18, 0xda, 0x5d, 0xee, 0x06, 0xfe, 0x99, 0xfb, 0xe0, 0xf2, 0x68, 0xfc, 0x82, 0xb9, 0x79, 0xbf, + 0xd1, 0xdb, 0x1c, 0xa9, 0x0a, 0xfb, 0x3b, 0x54, 0x85, 0x61, 0xaa, 0xe2, 0xb0, 0x04, 0x5d, 0x01, + 0x3f, 0x08, 0x6f, 0xb1, 0xc9, 0x57, 0xfb, 0x0d, 0xd6, 0x1f, 0xb6, 0x72, 0x33, 0xb5, 0x14, 0x31, + 0x9e, 0x9f, 0x3b, 0x8e, 0xf1, 0xcb, 0x18, 0xce, 0x6a, 0x9c, 0xb1, 0x9e, 0x3d, 0xf4, 0x62, 0xa6, + 0xac, 0x67, 0x7b, 0x11, 0xc3, 0x6d, 0x8d, 0x16, 0xaf, 0x81, 0xdb, 0x1a, 0x8d, 0x8f, 0x3d, 0x6e, + 0x6b, 0x74, 0x56, 0x00, 0xb8, 0xad, 0x31, 0xec, 0xc5, 0x70, 0x5b, 0x03, 0x8c, 0x29, 0x5c, 0xa8, + 0xf2, 0x77, 0x5b, 0x73, 0x1f, 0x04, 0x1e, 0xb3, 0xfd, 0x1c, 0xdd, 0xd7, 0x94, 0x4a, 0x70, 0x20, + 0x31, 0xf3, 0xbc, 0xab, 0xa4, 0x42, 0xcd, 0xf7, 0x03, 0x6e, 0x73, 0x37, 0x30, 0xfb, 0x02, 0xa9, + 0x10, 0x75, 0xbf, 0xb0, 0xbe, 0x3d, 0x98, 0x66, 0x37, 0x1d, 0x04, 0x03, 0xe6, 0x77, 0x63, 0x37, + 0xc5, 0xf2, 0x19, 0xff, 0x4f, 0x10, 0x7e, 0xb5, 0x5c, 0x3f, 0xe2, 0xb6, 0xdf, 0x65, 0x07, 0x8b, + 0x3f, 0x88, 0x96, 0x7e, 0x72, 0x30, 0x08, 0x03, 0x1e, 0x74, 0x03, 0x2f, 0x4a, 0xbe, 0x3b, 0x98, + 0x58, 0xfe, 0x03, 0x3b, 0x64, 0x76, 0x14, 0xff, 0xff, 0xc0, 0x8b, 0x9c, 0xfb, 0x03, 0x2f, 0xb2, + 0x2d, 0xfe, 0x38, 0x60, 0x51, 0xf2, 0xdd, 0xf8, 0x9b, 0xf8, 0x6f, 0x07, 0xc1, 0xc0, 0xfe, 0xf7, + 0x90, 0x59, 0xe3, 0x6f, 0x79, 0x68, 0xf7, 0x7a, 0x6e, 0xd7, 0x62, 0xfe, 0x83, 0xeb, 0x33, 0x16, + 0xba, 0xfe, 0xc3, 0x01, 0xf7, 0xbe, 0x45, 0xe3, 0xff, 0x1d, 0x78, 0xae, 0xff, 0xf5, 0x60, 0xd6, + 0x9d, 0x64, 0xf6, 0xcd, 0xc1, 0xca, 0x2a, 0x9b, 0x07, 0xcf, 0x0a, 0x46, 0x4d, 0x12, 0xb8, 0x90, + 0xb6, 0x85, 0x19, 0x1b, 0xaf, 0x8e, 0xc6, 0x8e, 0x91, 0xc9, 0x71, 0xb9, 0x85, 0x86, 0x1b, 0xf1, + 0x1a, 0xe7, 0x86, 0x56, 0x6a, 0xb9, 0x70, 0xfd, 0xba, 0xc7, 0xc6, 0x6e, 0x4e, 0x54, 0x38, 0xdd, + 0xf1, 0x87, 0x9e, 0x67, 0x60, 0x8e, 0xe2, 0x85, 0xfd, 0xdd, 0xfc, 0x97, 0xb8, 0x0a, 0x1d, 0x16, + 0x32, 0xe7, 0xfd, 0xe3, 0xf4, 0x15, 0xa0, 0x74, 0x80, 0x7d, 0x80, 0x79, 0x8c, 0x2d, 0x92, 0x39, + 0xd9, 0x26, 0x1e, 0x0e, 0xbb, 0xdc, 0x9f, 0x7a, 0xca, 0x97, 0x93, 0x75, 0x3f, 0x9f, 0x2e, 0x7b, + 0xa7, 0x39, 0x5d, 0xec, 0xce, 0x55, 0xbc, 0xd8, 0x9d, 0x5a, 0xc8, 0xec, 0x4e, 0x23, 0x72, 0xee, + 0x3b, 0x8d, 0xc8, 0x6e, 0x3d, 0x0e, 0xd8, 0xf8, 0xcf, 0xce, 0x55, 0xbc, 0xac, 0xe3, 0xef, 0x5a, + 0x93, 0x55, 0xad, 0x3f, 0x2d, 0x6a, 0xa7, 0xe5, 0x7d, 0xeb, 0x34, 0x5c, 0xff, 0x6b, 0xe7, 0x66, + 0x78, 0x3f, 0xfe, 0xbe, 0x36, 0x5e, 0xaf, 0x3f, 0xe2, 0xe5, 0x7a, 0x03, 0x88, 0xb5, 0xbd, 0x33, + 0x35, 0xa5, 0xf4, 0xb0, 0xa1, 0x7a, 0x78, 0x5b, 0xf4, 0xaf, 0x19, 0x4a, 0x44, 0xff, 0x23, 0x69, + 0xc0, 0x71, 0x34, 0xac, 0xd0, 0x87, 0x91, 0x85, 0x3d, 0xd0, 0x81, 0x84, 0x78, 0xc2, 0xe8, 0x40, + 0x22, 0x79, 0xf2, 0xe8, 0x40, 0xa2, 0xe8, 0x05, 0xd0, 0x81, 0x04, 0x98, 0x23, 0x3f, 0x6e, 0x80, + 0x71, 0x1d, 0x48, 0xc6, 0x18, 0xda, 0x72, 0x1d, 0x73, 0xbb, 0x8f, 0xcc, 0x5e, 0xc0, 0xcc, 0xce, + 0x23, 0x45, 0x74, 0x1e, 0x01, 0xa0, 0xca, 0x33, 0xb0, 0x32, 0x1d, 0x60, 0xe5, 0x06, 0x68, 0xe5, + 0x06, 0x70, 0xe5, 0x05, 0x78, 0x99, 0x05, 0xc0, 0x0c, 0x03, 0x62, 0x89, 0x90, 0x18, 0x1b, 0xa6, + 0x98, 0x68, 0x7d, 0x27, 0xe0, 0x9c, 0x39, 0xd6, 0xbf, 0x87, 0xb6, 0x63, 0xa2, 0xde, 0x9f, 0x31, + 0x45, 0xef, 0x0c, 0x9c, 0x7b, 0xd3, 0xe6, 0x9c, 0x85, 0xbe, 0xb1, 0xd5, 0x22, 0x0a, 0xbb, 0xbb, + 0xb7, 0x45, 0xeb, 0xa4, 0xfd, 0xf3, 0xb6, 0x64, 0x9d, 0xb4, 0x27, 0xdf, 0x96, 0xe2, 0x3f, 0x26, + 0xdf, 0x97, 0x6f, 0x8b, 0x56, 0x65, 0xf6, 0x7d, 0xf5, 0xb6, 0x68, 0x55, 0xdb, 0x7b, 0x77, 0x77, + 0xfb, 0x7b, 0x3f, 0x0e, 0x47, 0x9b, 0x7f, 0xd0, 0x3c, 0xcd, 0xdb, 0xc6, 0xcd, 0xe2, 0xb6, 0xdb, + 0x88, 0x89, 0xfb, 0xc8, 0x4d, 0x34, 0x12, 0xf3, 0x1e, 0x70, 0xfc, 0x0a, 0xf0, 0x81, 0xe1, 0x03, + 0xc3, 0x07, 0x86, 0x0f, 0x0c, 0x1f, 0x18, 0x3e, 0x30, 0x7c, 0x60, 0xe0, 0x9b, 0xdc, 0xf8, 0xc0, + 0xcc, 0x1f, 0xf6, 0x59, 0x38, 0x09, 0xaf, 0x32, 0xd8, 0x07, 0xae, 0x18, 0x38, 0xf7, 0xba, 0x3f, + 0xec, 0x8f, 0x85, 0x67, 0x04, 0x67, 0x09, 0xce, 0x52, 0xd0, 0xb5, 0x3d, 0xcb, 0x1d, 0x58, 0xb6, + 0xe3, 0x84, 0x2c, 0x8a, 0x0c, 0xf6, 0x99, 0x16, 0xdf, 0x04, 0xae, 0x13, 0x5c, 0x27, 0xb8, 0x4e, + 0x70, 0x9d, 0xe0, 0x3a, 0xc1, 0x75, 0x82, 0xeb, 0x04, 0xb4, 0x93, 0x1b, 0xd7, 0xc9, 0x1d, 0x7c, + 0xab, 0xcc, 0x50, 0x8e, 0xe5, 0x07, 0xd6, 0xff, 0x05, 0x3e, 0xc3, 0x3d, 0xa2, 0x64, 0xf4, 0x80, + 0x7b, 0xc4, 0xd7, 0x7f, 0x70, 0xf7, 0xbf, 0x6f, 0xef, 0xee, 0x06, 0x3f, 0x2e, 0x47, 0xe3, 0xff, + 0x37, 0x46, 0xed, 0xbf, 0xed, 0xfd, 0x6e, 0xaa, 0xad, 0x1c, 0xbf, 0xd8, 0xdd, 0xdd, 0x7e, 0xfb, + 0x37, 0xdc, 0x8d, 0xc2, 0xac, 0x3c, 0x17, 0x0c, 0x94, 0x5a, 0x50, 0xff, 0x12, 0x28, 0xb5, 0x00, + 0xe4, 0x9a, 0x3f, 0xf5, 0x52, 0xe8, 0xdb, 0xdf, 0xdd, 0xfe, 0xb0, 0x6f, 0xdd, 0xdb, 0xbe, 0xf3, + 0x1f, 0xd7, 0x89, 0xf3, 0x7a, 0x0d, 0x25, 0xe9, 0x96, 0x5f, 0x05, 0x2c, 0x9d, 0x8c, 0x69, 0x83, + 0xa5, 0x53, 0x28, 0xf4, 0x60, 0xe9, 0x54, 0x1e, 0x58, 0xb0, 0x74, 0x9a, 0xbd, 0x08, 0x58, 0x3a, + 0xe0, 0x9d, 0x17, 0x85, 0x24, 0x07, 0x2c, 0x1d, 0x63, 0xac, 0xe7, 0x05, 0x36, 0x3f, 0x2c, 0x1b, + 0x4c, 0xce, 0x9d, 0x18, 0x38, 0xf5, 0x06, 0xf3, 0x1f, 0x62, 0x90, 0x6c, 0x26, 0x35, 0x67, 0x70, + 0xb9, 0xdb, 0x3c, 0x34, 0x7c, 0xcc, 0x4b, 0x3b, 0x94, 0x59, 0x97, 0xb6, 0x8a, 0xe1, 0xef, 0x91, + 0xa3, 0xa6, 0x6c, 0x26, 0x37, 0xa1, 0xca, 0x43, 0x83, 0x46, 0x1c, 0x6d, 0x1c, 0x6d, 0x78, 0x03, + 0x46, 0xcf, 0x1a, 0x09, 0x7e, 0x5b, 0x6f, 0x9a, 0x12, 0x12, 0x39, 0x64, 0x11, 0x0b, 0xbf, 0xd9, + 0xf7, 0x1e, 0xcb, 0x13, 0x35, 0xbe, 0xf2, 0xad, 0xc0, 0x92, 0xcb, 0x98, 0x36, 0x58, 0x72, 0x85, + 0xf2, 0x0f, 0x96, 0x5c, 0xe5, 0x81, 0x05, 0x4b, 0xae, 0xd9, 0x8b, 0x80, 0x25, 0x07, 0x0a, 0x7a, + 0x51, 0x48, 0xc0, 0x92, 0xeb, 0x01, 0x74, 0xc0, 0x92, 0x4b, 0xff, 0x02, 0x4b, 0x0e, 0x88, 0x2f, + 0xe0, 0x35, 0x40, 0xa5, 0xc1, 0x08, 0x8b, 0x3c, 0xda, 0x60, 0xc9, 0x71, 0xb4, 0x71, 0xb4, 0xf3, + 0xe1, 0x0d, 0x98, 0x3b, 0x6b, 0xb0, 0xe4, 0x5b, 0x6f, 0x9a, 0x0a, 0x7d, 0xc6, 0x43, 0xb7, 0x6b, + 0x30, 0x1f, 0x3e, 0x99, 0x3f, 0x98, 0x6f, 0x19, 0xd3, 0x06, 0xf3, 0xad, 0x50, 0xd2, 0xc1, 0x7c, + 0xab, 0x3c, 0xb0, 0x60, 0xbe, 0x35, 0x7b, 0x11, 0x30, 0xdf, 0x40, 0x36, 0x2f, 0x0a, 0x89, 0xf9, + 0xcc, 0xf7, 0xd0, 0xf5, 0xcd, 0x26, 0xbd, 0x8f, 0x0d, 0x9c, 0xfa, 0xb5, 0xed, 0x3f, 0x30, 0x70, + 0xde, 0xf2, 0x17, 0x1e, 0x9c, 0xb7, 0x3e, 0xaf, 0x31, 0x23, 0xc6, 0x8a, 0x20, 0xc6, 0x60, 0x7e, + 0x05, 0x1c, 0x6d, 0x70, 0xde, 0xda, 0x1d, 0xed, 0x4a, 0xf9, 0xa4, 0x72, 0x72, 0x74, 0x5c, 0x3e, + 0xa9, 0xe2, 0x8c, 0xc3, 0x21, 0xd8, 0xae, 0x59, 0x83, 0xfc, 0xde, 0x7a, 0x1b, 0x55, 0x08, 0x59, + 0x3f, 0xe0, 0x2c, 0x17, 0x75, 0x8d, 0x97, 0x5f, 0x05, 0x94, 0xb8, 0x8c, 0x69, 0x83, 0x12, 0x57, + 0x28, 0xf4, 0xa0, 0xc4, 0x55, 0x1e, 0x58, 0x50, 0xe2, 0x9a, 0xbd, 0x08, 0x28, 0x71, 0xe0, 0x9d, + 0x17, 0x85, 0x04, 0x85, 0x8d, 0x35, 0x43, 0x3c, 0x28, 0x6c, 0xac, 0xe2, 0x05, 0x50, 0xd8, 0x38, + 0xd5, 0xb2, 0xa1, 0xb0, 0x31, 0xcc, 0xca, 0x4a, 0xc1, 0x40, 0x61, 0x63, 0xf5, 0x2f, 0x81, 0xc2, + 0xc6, 0x40, 0xae, 0xf9, 0x53, 0x2f, 0x05, 0xb3, 0x9b, 0x34, 0xa3, 0x3f, 0xb3, 0xb4, 0x69, 0x83, + 0x8b, 0x53, 0x28, 0xe7, 0xe0, 0xe2, 0x54, 0x1e, 0x58, 0x70, 0x71, 0x9a, 0xbd, 0x08, 0xb8, 0x38, + 0xa0, 0x9a, 0x17, 0x85, 0x24, 0x07, 0xe1, 0xa9, 0xbe, 0xe1, 0x9d, 0x99, 0x4d, 0xac, 0xc9, 0x30, + 0x15, 0x1b, 0x44, 0xa7, 0x2a, 0x12, 0x7a, 0xd7, 0x61, 0x3e, 0x77, 0xf9, 0x63, 0xc8, 0x7a, 0x05, + 0x83, 0x23, 0xf2, 0x66, 0x47, 0xc0, 0xe0, 0xe0, 0xaf, 0xc2, 0xf9, 0x74, 0x2b, 0xde, 0xdb, 0x11, + 0x33, 0x3f, 0xbc, 0x70, 0x26, 0x60, 0x57, 0x37, 0xcd, 0x8f, 0x9d, 0x56, 0xbd, 0xd3, 0x38, 0xbf, + 0xfc, 0xb3, 0xd3, 0x6a, 0x7c, 0xee, 0xb4, 0xfe, 0x6a, 0xd6, 0x0b, 0x79, 0x08, 0x3a, 0x8c, 0x8c, + 0xd5, 0x5b, 0xf9, 0xd0, 0x61, 0x2b, 0xc5, 0x6d, 0x26, 0x69, 0x17, 0xf5, 0xd6, 0xf5, 0xf9, 0x87, + 0x82, 0xf1, 0x2f, 0x37, 0x7a, 0x0b, 0x09, 0xd3, 0x53, 0xc2, 0x1a, 0x57, 0x1f, 0x6a, 0x8d, 0xce, + 0x79, 0x13, 0x32, 0x06, 0x19, 0x23, 0xd3, 0x62, 0xb5, 0xff, 0x3d, 0xbf, 0xf8, 0x74, 0xd1, 0x79, + 0x5f, 0xbb, 0x3c, 0xfb, 0xc7, 0xf9, 0x59, 0xeb, 0xef, 0x10, 0x36, 0x08, 0x1b, 0x95, 0xb0, 0x7d, + 0xba, 0xbc, 0xae, 0xdf, 0xd4, 0xaf, 0x3f, 0xd7, 0xcf, 0x20, 0x6f, 0x90, 0x37, 0x7a, 0x79, 0x3b, + 0x3f, 0x83, 0x74, 0x41, 0xba, 0xa8, 0x4d, 0xe7, 0x44, 0xa7, 0xd5, 0xde, 0x37, 0xea, 0xd0, 0x6a, + 0x90, 0x3b, 0x7a, 0xb9, 0x8b, 0xe9, 0x0d, 0xc8, 0x17, 0xe4, 0x8b, 0x48, 0xbe, 0x6a, 0x67, 0x17, + 0xe7, 0x97, 0x9d, 0x3f, 0xae, 0xaf, 0x3e, 0xc1, 0xf3, 0x84, 0x98, 0x91, 0x89, 0xd9, 0x75, 0xfd, + 0xe2, 0xaa, 0x55, 0xcf, 0x07, 0xbd, 0x61, 0xf4, 0x1b, 0xb4, 0x91, 0xfd, 0x0d, 0x95, 0x94, 0x67, + 0x35, 0x94, 0xa8, 0x1e, 0xe6, 0x0f, 0xfb, 0x2c, 0xb4, 0xb9, 0x99, 0xb7, 0xf0, 0xc9, 0xeb, 0xcc, + 0xae, 0x22, 0x0d, 0x2e, 0xc2, 0x5c, 0xa8, 0xfb, 0xc3, 0x7e, 0xe1, 0x74, 0xe7, 0x07, 0x0a, 0x38, + 0x40, 0xc9, 0x9b, 0xbc, 0xbe, 0x26, 0x85, 0x86, 0x0f, 0xfd, 0xaf, 0x7e, 0xf0, 0x1f, 0xdf, 0x32, + 0x3b, 0x44, 0x7c, 0xee, 0x2d, 0x10, 0x2a, 0x2e, 0x63, 0xda, 0x08, 0x15, 0x57, 0x28, 0xef, 0x08, + 0x15, 0x57, 0x79, 0x60, 0x11, 0x2a, 0xae, 0xd9, 0x8b, 0x20, 0x54, 0x1c, 0x28, 0xe7, 0x45, 0x21, + 0xc9, 0x47, 0x25, 0xe3, 0xd2, 0x91, 0xc1, 0xb1, 0xe2, 0x47, 0xa8, 0x64, 0x2c, 0xf9, 0x0b, 0x95, + 0x8c, 0x01, 0xee, 0x05, 0xbc, 0x06, 0x2a, 0x19, 0xc3, 0xfc, 0x8a, 0x3c, 0xda, 0xa8, 0x64, 0xac, + 0xdd, 0xd1, 0x3e, 0xaa, 0x56, 0x0f, 0x51, 0xc4, 0x18, 0xbe, 0xc0, 0x96, 0xcd, 0x1a, 0x1c, 0xf8, + 0xd6, 0x9b, 0xa7, 0x84, 0x3d, 0xfe, 0x36, 0x55, 0x85, 0x86, 0x93, 0xe0, 0x93, 0xd7, 0x00, 0x0b, + 0x2e, 0x63, 0xda, 0x60, 0xc1, 0x15, 0x0a, 0x3c, 0x58, 0x70, 0x95, 0x07, 0x16, 0x2c, 0xb8, 0x66, + 0x2f, 0x02, 0x16, 0x1c, 0x38, 0xe7, 0x45, 0x21, 0x31, 0x9f, 0x05, 0xbf, 0x77, 0x7d, 0x3b, 0x7c, + 0x34, 0x98, 0x05, 0x3f, 0x81, 0xcb, 0xb1, 0xc5, 0x33, 0x35, 0x44, 0x61, 0x14, 0x6a, 0xbe, 0x1f, + 0xf0, 0x49, 0x58, 0xa4, 0x49, 0xea, 0xa2, 0x10, 0x75, 0xbf, 0xb0, 0xbe, 0x3d, 0xb0, 0xf9, 0x97, + 0xb1, 0xb2, 0x38, 0x08, 0x06, 0xcc, 0xef, 0xc6, 0x20, 0xdd, 0xf2, 0x19, 0xff, 0x4f, 0x10, 0x7e, + 0xb5, 0x5c, 0x3f, 0xe2, 0xb6, 0xdf, 0x65, 0x07, 0x8b, 0x3f, 0x88, 0x96, 0x7e, 0x72, 0x30, 0x08, + 0x03, 0x1e, 0x74, 0x03, 0x2f, 0x4a, 0xbe, 0x3b, 0x98, 0xd8, 0xd5, 0x03, 0x3b, 0x64, 0x76, 0x14, + 0xff, 0xff, 0xc0, 0x8b, 0x9c, 0xfb, 0x03, 0x2f, 0xb2, 0xe3, 0xf0, 0xa3, 0x28, 0xf9, 0x6e, 0xfc, + 0x4d, 0xfc, 0xb7, 0x83, 0x60, 0x60, 0xff, 0x7b, 0xc8, 0xac, 0xf1, 0xb7, 0x3c, 0xb4, 0x7b, 0x3d, + 0xb7, 0x6b, 0x31, 0xff, 0xc1, 0xf5, 0x19, 0x0b, 0x5d, 0xff, 0xe1, 0x80, 0x7b, 0xdf, 0xa2, 0xf1, + 0xff, 0x0e, 0x3c, 0xd7, 0xff, 0x7a, 0x10, 0x0d, 0xef, 0xad, 0xf8, 0x27, 0xd3, 0x6f, 0x0e, 0x22, + 0x6e, 0x73, 0x66, 0x86, 0x1d, 0xd7, 0xff, 0x08, 0x1a, 0x70, 0xfc, 0x12, 0x47, 0x3e, 0x1a, 0xde, + 0x73, 0xef, 0x9b, 0x31, 0xc7, 0x6f, 0x89, 0x88, 0x98, 0xce, 0xdf, 0x10, 0x85, 0x37, 0x8b, 0xa0, + 0x36, 0x64, 0xba, 0xa6, 0x31, 0x0f, 0x26, 0x32, 0x0e, 0x46, 0x33, 0x0d, 0xa6, 0x32, 0x0c, 0xc6, + 0x33, 0x0b, 0xc6, 0x33, 0x0a, 0xa6, 0x33, 0x09, 0x70, 0x04, 0x44, 0x0a, 0xc3, 0x99, 0x1b, 0x1a, + 0xe6, 0x01, 0xc4, 0x78, 0xd9, 0xd8, 0x6b, 0x9c, 0xc9, 0xf4, 0xcd, 0xbc, 0xbe, 0x29, 0xe1, 0xfa, + 0x06, 0x60, 0x2a, 0xcf, 0xa0, 0xca, 0x74, 0x70, 0x95, 0x1b, 0x90, 0x95, 0x1b, 0xb0, 0x95, 0x17, + 0xd0, 0x65, 0x16, 0xf8, 0x32, 0x0c, 0x84, 0x19, 0x0b, 0xc6, 0x92, 0x89, 0x7b, 0xcc, 0x7f, 0x88, + 0x29, 0x59, 0x43, 0xf5, 0xe5, 0xcc, 0x68, 0x4d, 0xdf, 0xc3, 0x50, 0x1d, 0x63, 0x76, 0xcc, 0xaa, + 0xb1, 0x70, 0x2d, 0x0f, 0xb0, 0x2d, 0x57, 0xf0, 0x2d, 0x2f, 0x30, 0x2e, 0x77, 0x70, 0x2e, 0x77, + 0xb0, 0x2e, 0x6f, 0xf0, 0xce, 0x4c, 0x98, 0x67, 0x28, 0xdc, 0x4b, 0x84, 0xc7, 0xd8, 0xa8, 0x9d, + 0x25, 0xab, 0x61, 0x6c, 0x0e, 0xeb, 0x22, 0x86, 0x3a, 0x32, 0xf8, 0x15, 0xcc, 0xce, 0x69, 0x9d, + 0x7d, 0x99, 0x5f, 0x03, 0x31, 0x17, 0x39, 0xae, 0x39, 0x71, 0x2e, 0x96, 0x5e, 0x27, 0x27, 0x39, + 0xaf, 0xc9, 0xfb, 0xe4, 0x28, 0x39, 0xce, 0x70, 0x73, 0x3e, 0xaf, 0x02, 0x72, 0x90, 0x0b, 0x9b, + 0x77, 0x15, 0x90, 0x83, 0xdc, 0xd8, 0x5c, 0xab, 0x81, 0x37, 0x98, 0xbd, 0x8a, 0xaf, 0x36, 0x72, + 0x94, 0x61, 0xe6, 0xd6, 0xa8, 0x19, 0x6e, 0xb2, 0xc7, 0x9a, 0x78, 0xab, 0x06, 0xd6, 0x93, 0xcc, + 0x89, 0x2d, 0x06, 0xd7, 0xaf, 0xd3, 0x39, 0x00, 0xd7, 0xaf, 0xd3, 0xc1, 0x06, 0xd7, 0xaf, 0xf9, + 0x0b, 0x81, 0xeb, 0x07, 0x6a, 0x4a, 0x2d, 0x3c, 0xe0, 0xfa, 0xb5, 0xc3, 0x50, 0xe0, 0xfa, 0x55, + 0x7f, 0x81, 0xeb, 0x87, 0x73, 0x41, 0xf8, 0x3a, 0xe0, 0xfa, 0x61, 0xce, 0x65, 0xa8, 0x00, 0x70, + 0xfd, 0xda, 0xab, 0x00, 0x70, 0xfd, 0xf0, 0x45, 0x30, 0xfb, 0xa5, 0x2f, 0x70, 0xfd, 0x30, 0x73, + 0xeb, 0xd4, 0x8c, 0x99, 0x75, 0x33, 0x97, 0xdc, 0x55, 0x13, 0xeb, 0x66, 0xe6, 0xc4, 0x1a, 0x83, + 0xed, 0xd7, 0xe9, 0x20, 0x80, 0xed, 0xd7, 0xe9, 0x60, 0x83, 0xed, 0xd7, 0xfc, 0x85, 0xc0, 0xf6, + 0x03, 0x37, 0xa5, 0x16, 0x9e, 0xfc, 0xb0, 0xfd, 0xc6, 0xd6, 0xe5, 0x5c, 0xc4, 0x50, 0x27, 0x70, + 0x75, 0x30, 0x63, 0xd3, 0x15, 0x8c, 0xa9, 0xf5, 0x3b, 0x93, 0xf9, 0xe7, 0xaf, 0x8e, 0xe7, 0x7c, + 0x59, 0x44, 0x93, 0xca, 0x7a, 0x9a, 0x77, 0x62, 0x51, 0x02, 0x0c, 0xba, 0x24, 0xff, 0x3a, 0xc4, + 0xa4, 0x6a, 0x94, 0x11, 0x0f, 0x87, 0x5d, 0xee, 0x4f, 0xc1, 0xe2, 0xe5, 0x64, 0x71, 0xcf, 0xa7, + 0x6b, 0xdb, 0x69, 0x4e, 0x57, 0xb4, 0x73, 0x15, 0xaf, 0x68, 0xa7, 0x16, 0x32, 0xbb, 0xd3, 0x88, + 0x9c, 0xfb, 0x4e, 0x23, 0xb2, 0xc7, 0x18, 0x79, 0xfc, 0x67, 0xe7, 0x2a, 0x5e, 0xbb, 0xf1, 0x77, + 0xad, 0xc9, 0xd2, 0xd5, 0x9f, 0x56, 0xae, 0xd3, 0xf2, 0xbe, 0x75, 0x1a, 0xae, 0xff, 0xb5, 0x73, + 0x33, 0xbc, 0x1f, 0x7f, 0xff, 0x69, 0xb2, 0x54, 0x37, 0x93, 0x95, 0x42, 0xf9, 0xe4, 0x6d, 0xd1, + 0x58, 0x85, 0xa1, 0x1f, 0xb2, 0x88, 0x85, 0xdf, 0x98, 0x63, 0xdd, 0xdb, 0xbe, 0xf3, 0x1f, 0xd7, + 0xe1, 0x5f, 0x22, 0x13, 0xab, 0x28, 0xaf, 0x7a, 0x0d, 0x14, 0x53, 0xa6, 0x98, 0x2e, 0x8a, 0x29, + 0x4b, 0x14, 0x6c, 0x14, 0x53, 0x96, 0x79, 0x10, 0x51, 0x4c, 0x59, 0x35, 0x78, 0x46, 0x31, 0x65, + 0xe0, 0x92, 0x99, 0x30, 0x18, 0x57, 0x4c, 0x79, 0x15, 0x0a, 0x31, 0xb9, 0x45, 0xe6, 0x8a, 0xb7, + 0x41, 0xa9, 0x65, 0x40, 0xac, 0x7c, 0x41, 0xad, 0x5c, 0x40, 0x2e, 0xd3, 0xa1, 0x57, 0x6e, 0x20, + 0x58, 0x6e, 0xa0, 0x58, 0x5e, 0x20, 0x99, 0x59, 0xd0, 0xcc, 0x30, 0x88, 0x66, 0x2c, 0x54, 0x4b, + 0x26, 0x3e, 0x08, 0xdd, 0x20, 0x74, 0xf9, 0xa3, 0xf9, 0x11, 0x99, 0xc9, 0x9b, 0x20, 0x28, 0x13, + 0x90, 0x6d, 0xbb, 0xa0, 0x5b, 0xae, 0x20, 0x5c, 0x5e, 0xa0, 0x5c, 0xee, 0x20, 0x5d, 0xee, 0xa0, + 0x5d, 0xde, 0x20, 0x9e, 0x99, 0x50, 0xcf, 0x50, 0xc8, 0x97, 0x08, 0x4f, 0x7e, 0x82, 0x32, 0x3d, + 0x66, 0xf7, 0x42, 0xd6, 0xcb, 0x41, 0x54, 0x66, 0xe9, 0xd8, 0xe0, 0x77, 0x68, 0x4e, 0x43, 0x50, + 0xf6, 0xf7, 0x27, 0x61, 0x5f, 0x07, 0x09, 0xb2, 0x45, 0xac, 0x29, 0x34, 0xd1, 0x1a, 0xa1, 0x31, + 0xb3, 0x8f, 0xe1, 0x92, 0x0a, 0x32, 0xb1, 0x9f, 0xe1, 0x92, 0xf2, 0x81, 0x07, 0x07, 0x0f, 0x0e, + 0x1e, 0x1c, 0x3c, 0x38, 0x78, 0x70, 0xf0, 0xe0, 0xe0, 0xc1, 0xe9, 0x2f, 0x3c, 0xa6, 0x92, 0xf7, + 0xc9, 0x0b, 0x18, 0x4f, 0xe2, 0x2f, 0x99, 0x3f, 0xc3, 0xc9, 0xfc, 0x45, 0x48, 0x68, 0x78, 0xdd, + 0x23, 0xe3, 0xa1, 0x61, 0x9e, 0x20, 0x62, 0x2e, 0xa1, 0x62, 0xde, 0x20, 0x63, 0x6e, 0xa1, 0x63, + 0x6e, 0x21, 0x64, 0x5e, 0xa1, 0xa4, 0xd9, 0x90, 0xd2, 0x70, 0x68, 0x99, 0x08, 0x95, 0xf1, 0x97, + 0x04, 0x4b, 0x56, 0x67, 0xe8, 0xfa, 0xfc, 0x5d, 0x1e, 0x2c, 0xce, 0x14, 0xa2, 0xe5, 0xa0, 0x8c, + 0x63, 0x4e, 0xca, 0x37, 0xcf, 0xbe, 0xf2, 0x81, 0x00, 0x76, 0xf2, 0x56, 0xce, 0x39, 0x67, 0xbe, + 0xcd, 0xd2, 0x6b, 0xe5, 0xac, 0xbc, 0x73, 0xf2, 0x5e, 0x39, 0xac, 0xef, 0x9a, 0x13, 0x74, 0x30, + 0xaf, 0x2a, 0x72, 0x54, 0xf6, 0x79, 0x5b, 0x54, 0xc5, 0x31, 0x54, 0x05, 0xdc, 0x20, 0xbc, 0xc5, + 0x26, 0x5f, 0x6d, 0x94, 0xe6, 0x86, 0xa9, 0xdc, 0x50, 0x2d, 0xe5, 0x22, 0xbd, 0x74, 0xbd, 0x43, + 0x6d, 0x7e, 0xba, 0x69, 0x4e, 0xed, 0x3e, 0xae, 0x3f, 0x74, 0x3e, 0x37, 0xb8, 0xfe, 0xd0, 0x59, + 0x01, 0xe0, 0xfa, 0xc3, 0xb0, 0x17, 0xc3, 0xf5, 0x07, 0x50, 0x9b, 0x70, 0xa1, 0xca, 0xdf, 0xf5, + 0x87, 0xcb, 0x18, 0xeb, 0x79, 0x81, 0xcd, 0x0f, 0xcb, 0x39, 0xba, 0x04, 0x39, 0xc9, 0xc1, 0xab, + 0x34, 0x98, 0xff, 0x10, 0xfb, 0x05, 0xb8, 0x05, 0xd1, 0x6c, 0x67, 0x70, 0x0b, 0x62, 0xce, 0x6b, + 0xcd, 0xa8, 0xcd, 0x0a, 0xa8, 0x4d, 0x80, 0x04, 0x05, 0xaa, 0x02, 0xb7, 0x20, 0x50, 0x15, 0x50, + 0x15, 0xf0, 0x86, 0xf2, 0xfd, 0x16, 0xb8, 0x05, 0xc1, 0xcc, 0x73, 0x6f, 0xe0, 0x4d, 0xef, 0x2e, + 0x93, 0xbc, 0x47, 0x1e, 0x3b, 0x44, 0xac, 0x28, 0x1b, 0xbf, 0xf2, 0xa7, 0x26, 0x76, 0xa0, 0x31, + 0xf7, 0xb4, 0xa3, 0x58, 0x1f, 0x29, 0x0e, 0x67, 0x8f, 0x06, 0xe7, 0x98, 0x15, 0x1a, 0x6e, 0xc4, + 0x6b, 0x9c, 0x1b, 0x5a, 0x70, 0xf0, 0xc2, 0xf5, 0xeb, 0x1e, 0xeb, 0x33, 0x3f, 0x86, 0xd4, 0xfe, + 0xd0, 0xf3, 0x0c, 0xac, 0xb6, 0x71, 0x61, 0x7f, 0x37, 0xff, 0x25, 0xae, 0x42, 0x87, 0x85, 0xcc, + 0x79, 0xff, 0x38, 0x7d, 0x05, 0xe8, 0x1c, 0x60, 0x20, 0x60, 0x9f, 0x7c, 0x44, 0xe1, 0xa8, 0xe8, + 0xa0, 0x35, 0x5b, 0xb8, 0xf7, 0xc9, 0xba, 0xa1, 0x5f, 0xe1, 0x16, 0xcf, 0x14, 0xfd, 0x0a, 0xa1, + 0x91, 0x05, 0x68, 0x64, 0x34, 0xe3, 0xdb, 0x86, 0x19, 0x6a, 0xae, 0x2c, 0xcc, 0xf2, 0xb9, 0x8c, + 0xf4, 0xb1, 0x8c, 0xf4, 0xa9, 0xcc, 0xf2, 0xa1, 0x74, 0x3f, 0x64, 0x86, 0x59, 0xe2, 0xfc, 0x59, + 0x60, 0x03, 0x1c, 0x1d, 0xe9, 0x8e, 0x8d, 0xde, 0xf8, 0x43, 0x5f, 0xab, 0xae, 0xe7, 0xcc, 0x34, + 0x55, 0x81, 0xa6, 0xa8, 0xbe, 0xfc, 0xa8, 0x3c, 0x3d, 0x8f, 0xb5, 0x7e, 0x87, 0x46, 0xaf, 0x19, + 0x69, 0x76, 0x7c, 0x75, 0x3f, 0xb6, 0xc6, 0x1f, 0x57, 0x0d, 0x01, 0x89, 0x3c, 0x00, 0xa2, 0x97, + 0x8a, 0xd2, 0x47, 0x11, 0x68, 0xa4, 0x04, 0x0a, 0x7e, 0xe0, 0x30, 0xcb, 0xe6, 0x3c, 0x74, 0xef, + 0x87, 0x1a, 0xd6, 0xdf, 0x4f, 0xd2, 0x55, 0x16, 0xe6, 0xa9, 0x99, 0x1a, 0xd5, 0xb3, 0x70, 0xbe, + 0xb6, 0x69, 0xbf, 0x3a, 0xa7, 0xf1, 0x1a, 0x91, 0x96, 0xab, 0x7b, 0x9a, 0xad, 0x31, 0x69, 0xb3, + 0xc6, 0xa4, 0xc1, 0x9a, 0x92, 0xd6, 0x0a, 0xb8, 0xfd, 0xab, 0x4d, 0xd4, 0xb5, 0x50, 0x7b, 0x21, + 0xf1, 0x2a, 0xb5, 0xd5, 0x28, 0x49, 0x83, 0x9d, 0xd9, 0x4c, 0x35, 0x3d, 0xa7, 0x7a, 0xf7, 0xd0, + 0xd1, 0xbe, 0x12, 0x88, 0x09, 0x15, 0x3e, 0x8c, 0xaa, 0xdc, 0x61, 0x4a, 0x45, 0x0e, 0xe3, 0x2a, + 0x6d, 0x18, 0x57, 0x41, 0xc3, 0xb4, 0xca, 0x18, 0x20, 0xe0, 0xf3, 0x00, 0x2d, 0x16, 0x21, 0x86, + 0xfe, 0x8a, 0x68, 0x01, 0x69, 0xe8, 0xae, 0x86, 0xcc, 0x68, 0xda, 0x67, 0x4c, 0x09, 0x32, 0x93, + 0x4a, 0x8c, 0x19, 0x59, 0x42, 0xcc, 0xb4, 0x12, 0x61, 0xc6, 0x96, 0x00, 0x33, 0xb6, 0xc4, 0x97, + 0xa9, 0x25, 0xbc, 0x10, 0xa1, 0x98, 0x67, 0x00, 0xf3, 0x04, 0x64, 0x8c, 0xea, 0x54, 0x6c, 0x64, + 0x67, 0x62, 0xc3, 0x3a, 0x11, 0x1b, 0x57, 0x5f, 0xd5, 0xc4, 0x3a, 0xaa, 0x46, 0xd7, 0x4b, 0x35, + 0xb5, 0x2e, 0xaa, 0xf1, 0xf5, 0x4f, 0x8d, 0xaf, 0x73, 0x6a, 0x7a, 0x3d, 0x53, 0xe4, 0x7a, 0x6d, + 0x23, 0x48, 0x4a, 0x26, 0xec, 0x05, 0x5d, 0xdb, 0xb3, 0xdc, 0xc1, 0xb7, 0x8a, 0x65, 0x3b, 0x4e, + 0xc8, 0xa2, 0x88, 0x45, 0xe6, 0x69, 0xc1, 0x99, 0xe9, 0x59, 0xf9, 0x36, 0xa6, 0x15, 0x8f, 0x30, + 0xb2, 0x88, 0x9b, 0xb1, 0x25, 0xec, 0x4d, 0x2e, 0x59, 0x9f, 0x8b, 0x12, 0xf5, 0xa6, 0x97, 0xa4, + 0xcf, 0x4d, 0x09, 0xfa, 0xdc, 0x94, 0x9c, 0xcf, 0x4b, 0x89, 0x79, 0x14, 0x69, 0xa2, 0x14, 0x12, + 0x63, 0x4b, 0xc6, 0x3f, 0x95, 0x88, 0x1f, 0xe3, 0x1c, 0x63, 0x55, 0x4e, 0xc2, 0x21, 0xbd, 0x33, + 0x70, 0xee, 0x4d, 0x9b, 0x73, 0x16, 0xfa, 0xc6, 0x16, 0x81, 0x2f, 0xec, 0xee, 0xde, 0x16, 0xad, + 0x93, 0xf6, 0xcf, 0xdb, 0x92, 0x75, 0xd2, 0x9e, 0x7c, 0x5b, 0x8a, 0xff, 0x98, 0x7c, 0x5f, 0xbe, + 0x2d, 0x5a, 0x95, 0xd9, 0xf7, 0xd5, 0xdb, 0xa2, 0x55, 0x6d, 0xef, 0xdd, 0xdd, 0xed, 0xef, 0xfd, + 0x38, 0x1c, 0x6d, 0xfe, 0xc1, 0x83, 0xe9, 0x60, 0x7b, 0x3f, 0x77, 0x6f, 0x4b, 0x56, 0xb9, 0x3d, + 0xfb, 0xcb, 0xe1, 0x6d, 0xd1, 0x2a, 0xb7, 0xf7, 0xf6, 0xcc, 0xd3, 0xcc, 0x6d, 0x68, 0x66, 0x42, + 0xd9, 0x44, 0xfd, 0x39, 0xf5, 0x2f, 0x81, 0xfa, 0x73, 0x00, 0x7f, 0xf9, 0x53, 0x2f, 0x4f, 0x04, + 0xd1, 0x51, 0xae, 0xe8, 0xae, 0x23, 0xd0, 0x5d, 0x92, 0xa7, 0x0d, 0xba, 0x4b, 0xa1, 0xdc, 0x83, + 0xee, 0x52, 0x79, 0x60, 0x41, 0x77, 0x69, 0xf6, 0x22, 0xa0, 0xbb, 0x80, 0x7a, 0x5e, 0x14, 0x92, + 0x5c, 0xd0, 0x5d, 0x47, 0xa0, 0xbb, 0xd4, 0x80, 0x06, 0xf3, 0xe9, 0xae, 0xd3, 0x9f, 0xb7, 0x45, + 0xeb, 0xc4, 0xb6, 0x7a, 0x35, 0xeb, 0x63, 0xfb, 0x47, 0xf1, 0x6d, 0x65, 0xb4, 0x77, 0xba, 0xb7, + 0xbb, 0xf8, 0xb3, 0xd3, 0xbd, 0x1f, 0xc5, 0xb7, 0xd5, 0xd1, 0xee, 0xee, 0x8a, 0x7f, 0xf9, 0x7d, + 0xd5, 0x33, 0xf6, 0x7e, 0xee, 0xee, 0xee, 0x4e, 0x89, 0xae, 0x39, 0xf2, 0xeb, 0xb6, 0x58, 0x6a, + 0xff, 0x1e, 0x7f, 0x3b, 0xf9, 0x7f, 0x42, 0x9f, 0xbd, 0xea, 0x97, 0xf7, 0xf6, 0x76, 0x9f, 0xb3, + 0x66, 0xe3, 0x3f, 0x7f, 0x94, 0x47, 0x7b, 0x3f, 0x77, 0x4b, 0xb7, 0x45, 0xab, 0x94, 0x30, 0x68, + 0xa5, 0xf1, 0x43, 0xde, 0x8d, 0x7f, 0xdd, 0x54, 0x23, 0xbc, 0xbb, 0x7b, 0xfb, 0xcf, 0xd3, 0xf6, + 0xdf, 0x4e, 0xf7, 0x7e, 0x1c, 0x8d, 0x66, 0xdf, 0xc7, 0xff, 0xdf, 0xfb, 0xb9, 0xbb, 0xff, 0xdb, + 0xdd, 0xdd, 0xfe, 0xfe, 0x6f, 0x7b, 0x93, 0x45, 0x9e, 0xfe, 0xde, 0x6f, 0x93, 0x7f, 0xfd, 0xfd, + 0xf4, 0x74, 0xe9, 0x47, 0x7b, 0xbb, 0x07, 0xfb, 0x7f, 0x03, 0x9b, 0x08, 0xc3, 0x37, 0x27, 0x61, + 0x60, 0x13, 0xd5, 0xbf, 0x04, 0xd8, 0x44, 0x60, 0xeb, 0xfc, 0xa9, 0x97, 0x02, 0x37, 0x11, 0x53, + 0x27, 0x78, 0x3a, 0x9e, 0x3d, 0xd8, 0x42, 0x19, 0xd3, 0x06, 0x5b, 0xa8, 0x50, 0xce, 0xc1, 0x16, + 0xaa, 0x3c, 0xb0, 0x60, 0x0b, 0x35, 0x7b, 0x11, 0xb0, 0x85, 0x40, 0x35, 0x2f, 0x0a, 0x89, 0xf9, + 0x6c, 0xe1, 0xd0, 0x77, 0x03, 0xdf, 0x64, 0x9e, 0xf0, 0xc4, 0xc0, 0xb9, 0x4f, 0xc5, 0xc6, 0x4c, + 0x92, 0xd0, 0xe0, 0xc6, 0xc1, 0x09, 0x45, 0xee, 0x30, 0x9f, 0xbb, 0xfc, 0x31, 0x64, 0xbd, 0x82, + 0xb9, 0xcd, 0xf2, 0x93, 0x23, 0x50, 0x35, 0xf8, 0x1d, 0xce, 0xa7, 0x5b, 0xf1, 0xde, 0x8e, 0x98, + 0xd1, 0x5d, 0xa9, 0xe7, 0x04, 0xac, 0x55, 0xef, 0x5c, 0x5e, 0x9d, 0xd5, 0x3b, 0xb5, 0x56, 0xeb, + 0xfa, 0xfc, 0xfd, 0xa7, 0x56, 0xbd, 0xd3, 0x6a, 0x7c, 0xee, 0xb4, 0xfe, 0x6a, 0xd6, 0x0d, 0x96, + 0xb7, 0xf8, 0x0d, 0x3f, 0xdb, 0xde, 0x30, 0x8e, 0x05, 0xba, 0x35, 0xbe, 0xe9, 0xff, 0x0f, 0xe3, + 0xdf, 0x60, 0x4e, 0xe6, 0x62, 0x81, 0x3b, 0x6f, 0x7e, 0xae, 0x74, 0x1a, 0x57, 0x1f, 0x6a, 0x8d, + 0x4e, 0xed, 0xec, 0xec, 0xba, 0x7e, 0x73, 0x53, 0x30, 0xfe, 0x2d, 0x47, 0x6f, 0x21, 0x6a, 0x7a, + 0x8a, 0xda, 0x51, 0xee, 0x44, 0xcd, 0xe8, 0x37, 0x68, 0xbf, 0xc1, 0xba, 0x43, 0x31, 0x6d, 0x03, + 0x80, 0x67, 0xfe, 0xb0, 0xcf, 0xc2, 0x49, 0xc3, 0x97, 0x1c, 0x00, 0xf8, 0x8a, 0xc1, 0xef, 0x50, + 0xf7, 0x87, 0xfd, 0x31, 0x70, 0x37, 0xf4, 0x08, 0x23, 0x0a, 0x02, 0xeb, 0x6b, 0xd0, 0x4c, 0xd1, + 0xcc, 0x9b, 0x76, 0xde, 0x26, 0x37, 0xea, 0x9a, 0xef, 0x2d, 0xb4, 0xdc, 0xd6, 0x7b, 0x52, 0x39, + 0x0f, 0x6d, 0xbc, 0xb7, 0xe5, 0x20, 0x16, 0x86, 0xfe, 0x57, 0x3f, 0xf8, 0x8f, 0x6f, 0x45, 0xc3, + 0x7b, 0x13, 0x2a, 0x56, 0x2f, 0xa1, 0xbc, 0x85, 0xf9, 0xa3, 0xe6, 0x23, 0xc5, 0x74, 0x51, 0xf3, + 0x51, 0xa2, 0x44, 0xa3, 0xe6, 0xa3, 0xcc, 0x83, 0x88, 0x9a, 0x8f, 0xaa, 0x51, 0x20, 0x6a, 0x3e, + 0x02, 0x89, 0xcc, 0x84, 0xc1, 0xb8, 0x9a, 0x8f, 0x66, 0x15, 0xc8, 0x5e, 0xb2, 0x35, 0x26, 0x15, + 0xca, 0x36, 0x14, 0x3c, 0x19, 0x0b, 0xa2, 0x4c, 0x06, 0x53, 0xb9, 0x00, 0x55, 0xa6, 0x83, 0xab, + 0xdc, 0x80, 0xac, 0xdc, 0x80, 0xad, 0xbc, 0x80, 0x2e, 0xb3, 0xc0, 0x97, 0x61, 0x20, 0xcc, 0x58, + 0x30, 0x96, 0x4c, 0xdc, 0x63, 0xfe, 0x43, 0x4c, 0xce, 0x1a, 0xaa, 0x2f, 0x93, 0x9a, 0x44, 0x93, + 0xf7, 0x30, 0x54, 0xc7, 0x98, 0x99, 0x5f, 0x64, 0x3c, 0x5c, 0xcb, 0x03, 0x6c, 0xcb, 0x15, 0x7c, + 0xcb, 0x0b, 0x8c, 0xcb, 0x1d, 0x9c, 0xcb, 0x1d, 0xac, 0xcb, 0x1b, 0xbc, 0x33, 0x13, 0xe6, 0x19, + 0x0a, 0xf7, 0x12, 0xe1, 0x31, 0x36, 0x5f, 0x69, 0xc9, 0x6a, 0x0c, 0x5d, 0x9f, 0x97, 0x8e, 0x72, + 0x10, 0xfc, 0x75, 0x64, 0xf0, 0x2b, 0x5c, 0xdb, 0xfe, 0x03, 0x33, 0x3e, 0x17, 0xc0, 0xfc, 0xe0, + 0xec, 0xc2, 0x85, 0xeb, 0x1b, 0x8f, 0x3d, 0x72, 0xe2, 0x5c, 0x2c, 0xbd, 0x4e, 0x9c, 0x31, 0x93, + 0xa3, 0xf7, 0xf9, 0x18, 0xda, 0x5d, 0xee, 0x06, 0xfe, 0x99, 0xfb, 0xe0, 0xc6, 0x85, 0x6a, 0x8a, + 0xc8, 0x30, 0xd1, 0x41, 0x05, 0xd8, 0xdf, 0xa1, 0x02, 0x34, 0x57, 0x01, 0x47, 0xd5, 0xea, 0x61, + 0x15, 0x6a, 0x00, 0xbe, 0x08, 0x66, 0xff, 0xfc, 0xab, 0x8d, 0xd4, 0x01, 0x98, 0xb9, 0x35, 0x6a, + 0x86, 0x9b, 0xec, 0xb1, 0x9a, 0x5c, 0x43, 0x2c, 0x27, 0xb6, 0x18, 0x5c, 0xbf, 0x4e, 0xe7, 0x00, + 0x5c, 0xbf, 0x4e, 0x07, 0x1b, 0x5c, 0xbf, 0xe6, 0x2f, 0x04, 0xae, 0x1f, 0xa8, 0x29, 0xb5, 0xf0, + 0x80, 0xeb, 0xd7, 0x0e, 0x43, 0x81, 0xeb, 0x57, 0xfd, 0x05, 0xae, 0x1f, 0xce, 0x05, 0xe1, 0xeb, + 0x80, 0xeb, 0x87, 0x39, 0x97, 0xa1, 0x02, 0xc0, 0xf5, 0x6b, 0xaf, 0x02, 0xc0, 0xf5, 0xc3, 0x17, + 0xc1, 0xec, 0x97, 0xbe, 0xc0, 0xf5, 0xc3, 0xcc, 0xad, 0x53, 0x33, 0xdf, 0xa6, 0xaa, 0xd3, 0x70, + 0xb2, 0x7f, 0xf2, 0x1a, 0x60, 0xfb, 0x55, 0x4c, 0x1f, 0x6c, 0xbf, 0x46, 0x07, 0x01, 0x6c, 0xbf, + 0x4e, 0x07, 0x1b, 0x6c, 0xbf, 0xe6, 0x2f, 0x04, 0xb6, 0x1f, 0xb8, 0x29, 0xb5, 0xf0, 0xe4, 0x87, + 0xed, 0xbf, 0x77, 0x7d, 0x3b, 0x7c, 0xcc, 0x01, 0xdb, 0x7f, 0x02, 0x57, 0x07, 0x33, 0x36, 0x5d, + 0xc1, 0x98, 0x5a, 0xc9, 0x33, 0x99, 0x7f, 0x9e, 0x2b, 0x7a, 0xce, 0x17, 0x48, 0x34, 0xa9, 0xc0, + 0xa7, 0x79, 0x67, 0x17, 0xc5, 0xc0, 0xa0, 0x55, 0xb6, 0x49, 0x9b, 0x98, 0x54, 0xa1, 0x32, 0xe2, + 0xe1, 0xb0, 0xcb, 0xfd, 0x59, 0x77, 0x92, 0xc9, 0x32, 0x9f, 0x4f, 0x57, 0xb9, 0xd3, 0x9c, 0xae, + 0x6d, 0xe7, 0x2a, 0x5e, 0xdb, 0x4e, 0x2d, 0x64, 0x76, 0xa7, 0x11, 0x39, 0xf7, 0x9d, 0x46, 0x64, + 0x8f, 0x71, 0xf3, 0xf8, 0xcf, 0xce, 0x55, 0xbc, 0x8a, 0xe3, 0xef, 0x5a, 0x93, 0x45, 0xac, 0x3f, + 0xad, 0x61, 0xa7, 0xe5, 0x7d, 0xeb, 0x5c, 0x06, 0x0e, 0xab, 0xcd, 0x56, 0xaf, 0x73, 0x33, 0xbc, + 0x1f, 0xff, 0xf0, 0xd3, 0x64, 0xcd, 0x6e, 0x26, 0x4b, 0x86, 0xda, 0xca, 0x5b, 0x30, 0x43, 0xcd, + 0x55, 0xac, 0x59, 0x8d, 0xfc, 0x8d, 0x6c, 0xdc, 0x6f, 0x64, 0xa3, 0x7e, 0xb3, 0x1a, 0xf3, 0xeb, + 0x7e, 0xc8, 0x0c, 0xc3, 0x2f, 0x79, 0xc6, 0x2d, 0x06, 0x00, 0x15, 0x75, 0x00, 0x45, 0x6f, 0x48, + 0xa2, 0xaf, 0xa1, 0xd7, 0x73, 0x66, 0x9a, 0x6a, 0x45, 0x53, 0xb4, 0x61, 0x1e, 0xb5, 0xa0, 0x9e, + 0x07, 0x5c, 0xbf, 0xe3, 0xa3, 0xd7, 0x8c, 0x34, 0x3b, 0xc8, 0xba, 0x1f, 0xe0, 0x1c, 0x1d, 0x5c, + 0x0d, 0xd1, 0x8a, 0x02, 0x74, 0xa2, 0x97, 0xd6, 0xd2, 0x47, 0x37, 0x68, 0xa4, 0x17, 0x0a, 0x61, + 0x30, 0xe4, 0x2c, 0xb4, 0x6c, 0xc7, 0x09, 0x59, 0x14, 0x69, 0xa7, 0x17, 0x92, 0xfb, 0xe2, 0x85, + 0x79, 0x6a, 0xa6, 0x59, 0xf5, 0x6c, 0x68, 0xa0, 0x6d, 0x9c, 0x9c, 0xce, 0xf1, 0x6f, 0x46, 0xc4, + 0xb5, 0xe9, 0x1e, 0xaf, 0x66, 0x4c, 0x1c, 0x9a, 0x31, 0xf1, 0x65, 0xa6, 0xc4, 0x8d, 0x01, 0x81, + 0xff, 0x6a, 0x13, 0x75, 0x2d, 0xc8, 0xaf, 0x79, 0x17, 0x24, 0x23, 0xba, 0x1d, 0x69, 0xde, 0xd5, + 0x48, 0xfb, 0xa0, 0x79, 0x13, 0x82, 0xe2, 0x8d, 0x0a, 0x7a, 0x37, 0x25, 0xa8, 0xdd, 0xb8, 0xa0, + 0x75, 0xe3, 0x82, 0xd2, 0x4d, 0x0b, 0x3a, 0x07, 0x2f, 0x9f, 0x07, 0x50, 0x91, 0x4c, 0x50, 0x57, + 0x72, 0x61, 0xad, 0x76, 0xd7, 0x93, 0x65, 0x58, 0x07, 0x38, 0x34, 0x4f, 0x82, 0x33, 0x26, 0x5b, + 0xcf, 0xa4, 0xac, 0x3c, 0x23, 0xb3, 0xef, 0x4c, 0xcb, 0xb2, 0x33, 0x36, 0x9b, 0xce, 0xd8, 0xac, + 0x39, 0x53, 0xb3, 0xe3, 0x10, 0xcb, 0x98, 0x65, 0xd3, 0x8d, 0xc9, 0x6a, 0x4b, 0xb4, 0xae, 0x3b, + 0xf8, 0x56, 0x99, 0xdd, 0x45, 0x58, 0x7e, 0x60, 0xfd, 0x5f, 0xe0, 0x9b, 0x50, 0x0b, 0x20, 0xa1, + 0x28, 0xde, 0x19, 0x30, 0xd7, 0xa6, 0xcd, 0x39, 0x0b, 0x7d, 0x63, 0x8a, 0xd1, 0x15, 0x76, 0x77, + 0x6f, 0x8b, 0xd6, 0x49, 0xfb, 0xe7, 0x6d, 0xc9, 0x3a, 0x69, 0x4f, 0xbe, 0x2d, 0xc5, 0x7f, 0x4c, + 0xbe, 0x2f, 0xdf, 0x16, 0xad, 0xca, 0xec, 0xfb, 0xea, 0x6d, 0xd1, 0xaa, 0xb6, 0xf7, 0xee, 0xee, + 0xf6, 0xf7, 0x7e, 0x1c, 0x8e, 0x36, 0xff, 0xe0, 0xee, 0x7f, 0xdf, 0xde, 0xdd, 0x0d, 0x7e, 0x5c, + 0x8e, 0xc6, 0xff, 0x6f, 0x8c, 0xda, 0x7f, 0xdb, 0xfb, 0xdd, 0x14, 0xdb, 0x34, 0x7e, 0x91, 0xbb, + 0xbb, 0xfd, 0xf6, 0x6f, 0xfa, 0xab, 0xf5, 0x36, 0xe2, 0xea, 0xe0, 0xbf, 0xd3, 0x63, 0x1e, 0xc4, + 0xd5, 0x91, 0x87, 0xe7, 0xcc, 0x87, 0x0f, 0xe8, 0x9c, 0x43, 0x89, 0xa0, 0x3a, 0xa3, 0x4e, 0x31, + 0x82, 0xea, 0xa4, 0x9d, 0xda, 0xad, 0x0d, 0xaa, 0xbb, 0x8e, 0x97, 0xa1, 0x36, 0x5d, 0x05, 0x04, + 0xd5, 0xe9, 0xae, 0x17, 0x34, 0xbd, 0x4d, 0xd7, 0xfa, 0x16, 0x1d, 0x21, 0x74, 0x9b, 0xba, 0xc7, + 0x08, 0xa1, 0xcb, 0x36, 0x49, 0x84, 0xd0, 0x09, 0x9a, 0x28, 0x42, 0xe8, 0x80, 0xb7, 0xe5, 0x6d, + 0xa2, 0xb6, 0x21, 0x74, 0x5a, 0xf7, 0xb0, 0x33, 0xa1, 0x47, 0x9d, 0xe6, 0xf7, 0xd9, 0x08, 0xa0, + 0xdb, 0x16, 0x68, 0x60, 0x0a, 0x44, 0x30, 0x0e, 0x2a, 0x18, 0x07, 0x19, 0x4c, 0x83, 0x0e, 0x7a, + 0x42, 0x08, 0x4d, 0xa1, 0x44, 0xb2, 0xb9, 0xda, 0xdf, 0x3f, 0x3f, 0xdd, 0x3b, 0x3b, 0xcc, 0xe7, + 0x2e, 0x7f, 0x0c, 0x59, 0x4f, 0x67, 0xbd, 0x39, 0xf3, 0xe5, 0x35, 0xee, 0x8c, 0x52, 0x38, 0x9f, + 0x2e, 0xe5, 0x7b, 0x3b, 0x62, 0xe6, 0x44, 0x26, 0x5e, 0xdd, 0x34, 0x3f, 0x76, 0x5a, 0xf5, 0x4e, + 0xe3, 0xa6, 0xd6, 0x69, 0x35, 0x3e, 0x77, 0x5a, 0x7f, 0x35, 0xeb, 0xba, 0x2b, 0xfb, 0xb8, 0x57, + 0x4e, 0x64, 0xc4, 0x3d, 0xbe, 0x21, 0x71, 0x69, 0x33, 0x69, 0x18, 0x0b, 0xc2, 0xf9, 0xe5, 0x9f, + 0x9d, 0xc6, 0xd5, 0x87, 0x5a, 0xc3, 0x80, 0x28, 0xa9, 0xb7, 0x10, 0x00, 0xe1, 0x02, 0x70, 0x7d, + 0xf5, 0xa9, 0x55, 0xbf, 0xee, 0xd4, 0xce, 0xce, 0xae, 0xeb, 0x37, 0x37, 0x10, 0x82, 0xad, 0xd5, + 0x02, 0xd8, 0xfa, 0x6d, 0x3e, 0xff, 0xe7, 0xcd, 0xcf, 0x47, 0x50, 0x02, 0x5b, 0x2d, 0x09, 0x57, + 0xcd, 0xd6, 0xf9, 0x87, 0x5a, 0xa3, 0x73, 0x79, 0x75, 0x56, 0xef, 0x34, 0xaf, 0xaf, 0x9a, 0xf5, + 0xeb, 0xd6, 0x5f, 0x90, 0x85, 0xad, 0x94, 0x85, 0x58, 0x06, 0x6a, 0xad, 0xd6, 0xf5, 0xf9, 0xfb, + 0x4f, 0xad, 0x3a, 0x02, 0xe8, 0xb3, 0x7d, 0xb5, 0x41, 0xf4, 0x18, 0x3e, 0x2b, 0xdc, 0xa9, 0xfd, + 0x4a, 0x71, 0x20, 0x86, 0x8d, 0x2e, 0x86, 0x4d, 0xc3, 0x50, 0x53, 0x04, 0x6d, 0xad, 0x12, 0xb2, + 0x59, 0x63, 0x04, 0xee, 0x7d, 0xd3, 0x37, 0x74, 0xeb, 0xf9, 0x24, 0x11, 0xc0, 0xf5, 0x9a, 0x69, + 0x21, 0x80, 0x2b, 0x83, 0xb8, 0x21, 0x80, 0x2b, 0xcb, 0x81, 0x40, 0x00, 0x97, 0x68, 0x9c, 0x82, + 0x00, 0x2e, 0xf3, 0xc1, 0x26, 0x6a, 0xa0, 0x65, 0xd3, 0xc9, 0xa8, 0x81, 0x96, 0x3f, 0x30, 0x60, + 0x02, 0x28, 0x30, 0x0a, 0x1c, 0x98, 0x02, 0x12, 0x8c, 0x03, 0x0b, 0xc6, 0x81, 0x06, 0xd3, 0xc0, + 0x83, 0x9e, 0x20, 0x42, 0x53, 0x30, 0xa1, 0x3d, 0xa8, 0x48, 0x26, 0xe8, 0x31, 0xff, 0x21, 0xa6, + 0xaf, 0x0c, 0x09, 0x34, 0x9a, 0xce, 0x17, 0x15, 0xd0, 0xb6, 0x01, 0x76, 0x98, 0x04, 0x3f, 0x8c, + 0x84, 0x21, 0xa6, 0xc1, 0x11, 0x63, 0x61, 0x89, 0xb1, 0xf0, 0xc4, 0x54, 0x98, 0xa2, 0x37, 0x5c, + 0xd1, 0x1c, 0xb6, 0x24, 0x9b, 0x6e, 0x5e, 0x05, 0xb4, 0xa1, 0xeb, 0xf3, 0xd2, 0x91, 0x41, 0x35, + 0xcf, 0x8e, 0x0c, 0x98, 0xea, 0xb5, 0xed, 0x3f, 0x30, 0x63, 0x0a, 0x9e, 0x19, 0xd4, 0xd0, 0xfd, + 0xc2, 0x35, 0xab, 0x03, 0xbd, 0x41, 0xe0, 0x76, 0x69, 0xda, 0x71, 0xb8, 0xbf, 0x81, 0xf3, 0xfe, + 0x18, 0xda, 0x5d, 0xee, 0x06, 0xfe, 0x99, 0xfb, 0xe0, 0xc6, 0x1d, 0x9f, 0x8b, 0xc6, 0xcc, 0x7f, + 0x64, 0x50, 0x17, 0xff, 0x0b, 0xfb, 0x3b, 0x8e, 0xa2, 0xe4, 0xa3, 0x78, 0x54, 0xad, 0x1e, 0x56, + 0x71, 0x1c, 0x81, 0x85, 0xcd, 0x9a, 0x25, 0xca, 0x6f, 0xe6, 0xce, 0x1c, 0xe8, 0x5d, 0x25, 0x63, + 0xc9, 0xcb, 0xd1, 0xb8, 0x5a, 0x86, 0x61, 0xb6, 0x09, 0x1c, 0x28, 0xa5, 0x9c, 0x82, 0x03, 0xa5, 0x3c, 0x60, 0xe0, 0x40, 0x25, 0x4f, 0x1c, 0x1c, 0xe8, 0xf6, 0x39, 0x89, 0xe0, 0x40, 0xe9, 0x31, - 0x02, 0x38, 0x50, 0xd1, 0x5f, 0xe0, 0x40, 0x01, 0x6e, 0x97, 0x4c, 0x1b, 0x1c, 0x28, 0xcc, 0xdb, + 0x02, 0x38, 0x50, 0xd1, 0x5f, 0xe0, 0x40, 0x01, 0x6e, 0x57, 0x4c, 0x1b, 0x1c, 0x28, 0xcc, 0xdb, 0xaf, 0x8e, 0x22, 0x38, 0x50, 0xe9, 0x47, 0x11, 0x1c, 0x28, 0xb0, 0xb0, 0x81, 0xb3, 0x04, 0x07, - 0x9a, 0x3b, 0x73, 0x50, 0xf8, 0x36, 0x56, 0x49, 0x86, 0x90, 0xa0, 0xa3, 0xe9, 0x82, 0x05, 0x15, + 0x9a, 0x3b, 0x73, 0x50, 0xf8, 0x36, 0x55, 0x49, 0x86, 0x90, 0xa0, 0x93, 0xe9, 0x82, 0x05, 0x15, 0x31, 0x4d, 0xb0, 0xa0, 0x84, 0x82, 0x0a, 0x16, 0x94, 0xf2, 0x80, 0x81, 0x05, 0x95, 0x3c, 0x71, - 0xb0, 0xa0, 0xdb, 0xe7, 0x26, 0x1a, 0xc8, 0x82, 0x3e, 0xb8, 0xbe, 0x1d, 0x3e, 0x1b, 0xc4, 0x82, - 0x9e, 0x02, 0x52, 0xe7, 0x68, 0x66, 0xe8, 0xea, 0x99, 0x6d, 0x9e, 0x26, 0xd7, 0x56, 0x9a, 0xaa, - 0x86, 0x83, 0x96, 0x9e, 0xe6, 0xce, 0x08, 0xe5, 0xd0, 0xb6, 0xf2, 0xc8, 0x6e, 0x6d, 0x3f, 0xcf, - 0xcf, 0xa3, 0x35, 0x68, 0x7a, 0xdf, 0x50, 0x17, 0x4e, 0xe7, 0x99, 0x68, 0xa2, 0x97, 0x0a, 0x75, - 0x37, 0xe2, 0x55, 0xce, 0xf5, 0xca, 0x70, 0x2f, 0x5c, 0xba, 0x7e, 0xcd, 0x63, 0x43, 0x07, 0x35, - 0x2a, 0x9c, 0xed, 0xf8, 0x7d, 0xcf, 0xd3, 0xa8, 0x98, 0xdf, 0xa5, 0xfd, 0x5d, 0xdf, 0xc9, 0x5d, - 0x87, 0x0e, 0x0b, 0x99, 0xf3, 0xfe, 0x79, 0x3c, 0x35, 0x08, 0xbb, 0xfe, 0xc6, 0xd7, 0x64, 0xa3, - 0x5b, 0xd0, 0xaa, 0x35, 0x32, 0xbd, 0x81, 0xd5, 0xc3, 0xaa, 0xaa, 0xb7, 0x61, 0x6a, 0x67, 0xa0, - 0x58, 0xa1, 0xe8, 0xa6, 0x48, 0x4c, 0x55, 0x20, 0x6a, 0x0f, 0x93, 0x3a, 0x11, 0x56, 0x33, 0xb2, - 0xa2, 0x43, 0xa3, 0xcb, 0x61, 0x31, 0xf0, 0x90, 0x28, 0x34, 0xae, 0xe4, 0xc6, 0x54, 0xcd, 0xd9, - 0x97, 0x7f, 0xf2, 0x14, 0x9c, 0x3a, 0x2d, 0xca, 0x8d, 0x6b, 0x54, 0x56, 0x5c, 0x71, 0xe5, 0x50, - 0xe5, 0x81, 0x19, 0x3a, 0x04, 0x5c, 0x68, 0x15, 0x48, 0xa1, 0x4b, 0x80, 0x84, 0x76, 0x81, 0x0f, - 0xda, 0x05, 0x34, 0xe8, 0x16, 0xa8, 0xb0, 0x5d, 0xc8, 0x4d, 0x75, 0xe5, 0x4b, 0x4d, 0xca, 0x66, - 0x6b, 0x55, 0x1e, 0x5b, 0x93, 0x32, 0xd8, 0xda, 0x44, 0x1b, 0xea, 0x14, 0x4d, 0xa8, 0x65, 0xb4, - 0xa0, 0x6e, 0xd1, 0x80, 0xda, 0x46, 0xfb, 0x69, 0x1b, 0xcd, 0xa7, 0x6b, 0xb4, 0xde, 0x76, 0x73, - 0x80, 0xba, 0x94, 0x85, 0xd6, 0xad, 0xfc, 0xb3, 0x9e, 0x65, 0x9e, 0x35, 0x0b, 0xe2, 0xd7, 0x2e, - 0x58, 0x5f, 0xc7, 0xa0, 0x7c, 0xad, 0x83, 0xef, 0x75, 0x0d, 0xb2, 0xd7, 0x3e, 0x98, 0x5e, 0xfb, - 0xa0, 0x79, 0xdd, 0x83, 0xe3, 0x11, 0xc0, 0x32, 0xbd, 0x59, 0xda, 0x05, 0xb5, 0xeb, 0x5b, 0xc2, - 0x43, 0xc3, 0x52, 0x1d, 0x9a, 0x96, 0xe4, 0xd0, 0x30, 0x30, 0x53, 0xe7, 0x12, 0x1b, 0x9a, 0x67, - 0x48, 0xea, 0x5e, 0x32, 0xc3, 0x84, 0x5c, 0x7c, 0x0d, 0x53, 0x21, 0xb4, 0x2e, 0x75, 0x61, 0xca, - 0x91, 0xd0, 0xb8, 0x74, 0x85, 0x11, 0xc7, 0x02, 0x41, 0xd6, 0x4b, 0xbf, 0x5a, 0x08, 0x93, 0xd3, - 0x45, 0x6d, 0xea, 0x55, 0x16, 0x57, 0xc7, 0xf2, 0xb7, 0xe0, 0x86, 0x5e, 0x99, 0x10, 0xb8, 0xa1, - 0x0d, 0x27, 0x07, 0x6e, 0x28, 0xe5, 0x04, 0xc1, 0x0d, 0xe5, 0x01, 0x01, 0x80, 0x1b, 0x7a, 0x4d, - 0x6b, 0x81, 0x1b, 0x5a, 0x63, 0x4a, 0xe0, 0x86, 0xd6, 0x75, 0x84, 0xc1, 0x0d, 0x65, 0x76, 0x84, - 0xc1, 0x0d, 0x99, 0xae, 0xee, 0x67, 0x8f, 0x04, 0xb8, 0xa1, 0xcc, 0x47, 0x02, 0xdc, 0x50, 0x4e, - 0xd8, 0x98, 0x1d, 0x70, 0x43, 0x1a, 0xae, 0x87, 0x0e, 0xdc, 0x90, 0x5e, 0xe5, 0x42, 0xb5, 0x2c, - 0x0b, 0x0a, 0x76, 0xe8, 0x95, 0x09, 0x81, 0x1d, 0xda, 0x70, 0x72, 0x60, 0x87, 0x52, 0x4e, 0x10, - 0xec, 0x50, 0x1e, 0x30, 0x00, 0xd8, 0xa1, 0xd7, 0xb4, 0x96, 0x76, 0x65, 0x2f, 0xf5, 0x2a, 0x6f, - 0x89, 0xea, 0x17, 0xa8, 0x7e, 0x31, 0x3d, 0x1f, 0xcd, 0x13, 0xfb, 0x35, 0xab, 0x24, 0x89, 0xb2, - 0x17, 0x5b, 0x75, 0x4a, 0x0c, 0x3a, 0x1d, 0xf9, 0x29, 0x77, 0xa1, 0xba, 0x0a, 0xa3, 0x82, 0x32, - 0x17, 0x6f, 0x72, 0x7c, 0xa6, 0x55, 0x9f, 0x65, 0xcd, 0xcf, 0xb0, 0x82, 0x73, 0x2b, 0xf6, 0xbc, - 0xca, 0x3d, 0xa4, 0xf2, 0x8e, 0x8a, 0xc4, 0x63, 0x52, 0x08, 0x83, 0x3e, 0x67, 0x61, 0x2c, 0x0e, - 0xb2, 0x8f, 0x48, 0xe2, 0x37, 0x4d, 0xcd, 0x41, 0xb2, 0x82, 0x50, 0x93, 0x94, 0xaf, 0x8c, 0x0b, - 0x54, 0xc9, 0xf9, 0x69, 0xc1, 0xed, 0xa9, 0xe6, 0xf0, 0xb4, 0xe1, 0xea, 0xb4, 0xe1, 0xe4, 0x74, - 0xe1, 0xde, 0xf2, 0x0d, 0x84, 0x54, 0x25, 0xbd, 0x2b, 0xae, 0x04, 0xa3, 0x45, 0x05, 0x18, 0x94, - 0x31, 0x43, 0x19, 0x33, 0xad, 0x8c, 0x90, 0x76, 0xc6, 0x48, 0x3b, 0xa3, 0xa4, 0x9b, 0x71, 0xda, - 0x4e, 0x26, 0x4e, 0x79, 0x19, 0x33, 0xcf, 0xf5, 0xbf, 0x5a, 0x8e, 0xcd, 0x6d, 0x7d, 0x4a, 0x99, - 0xbd, 0x4c, 0x49, 0x8f, 0x72, 0x66, 0x45, 0x94, 0x33, 0xd3, 0xc6, 0xc8, 0x69, 0x69, 0xec, 0x74, - 0x33, 0x7a, 0xda, 0x1a, 0x3f, 0x6d, 0x8d, 0xa0, 0xae, 0xc6, 0x50, 0xad, 0x51, 0x54, 0x6c, 0x1c, - 0x93, 0x4d, 0xd1, 0x26, 0x1a, 0x62, 0xaa, 0x70, 0xb4, 0x1b, 0xf8, 0x3a, 0x68, 0x9c, 0x89, 0xdf, - 0x75, 0xaa, 0xc1, 0x5c, 0xc6, 0xdb, 0xa4, 0x47, 0x4a, 0x8c, 0x86, 0xa1, 0x33, 0x4e, 0xc0, 0x39, - 0x73, 0xac, 0x7f, 0xf7, 0x6d, 0x47, 0xc3, 0xf8, 0x99, 0xd2, 0x3b, 0x8d, 0xe6, 0xd4, 0xb0, 0x39, - 0x67, 0xa1, 0xaf, 0x5d, 0x82, 0x55, 0x61, 0x77, 0xf7, 0xae, 0x68, 0x9d, 0xb6, 0x7e, 0xde, 0x95, - 0xac, 0xd3, 0xd6, 0xe8, 0x63, 0x29, 0xfe, 0x63, 0xf4, 0xb9, 0x7c, 0x57, 0xb4, 0x2a, 0x93, 0xcf, - 0x47, 0x77, 0x45, 0xeb, 0xa8, 0xb5, 0x77, 0x7f, 0xbf, 0xbf, 0xf7, 0xe3, 0x70, 0xb0, 0xf9, 0x2f, - 0x16, 0x10, 0x16, 0xaf, 0x93, 0x19, 0xd2, 0x58, 0xb3, 0xf4, 0x5d, 0x9f, 0x1f, 0x96, 0x35, 0x54, - 0x2a, 0x27, 0x48, 0xd9, 0x34, 0x46, 0x9a, 0x92, 0x85, 0x42, 0xca, 0x66, 0xfa, 0xe9, 0x21, 0x65, - 0x33, 0x2f, 0x6a, 0x7e, 0xf6, 0x48, 0x20, 0x65, 0x33, 0xf3, 0x91, 0xa8, 0x94, 0x4f, 0x2b, 0xa7, - 0xc7, 0x27, 0xe5, 0x53, 0xe4, 0x6d, 0x1a, 0xca, 0x03, 0xe8, 0x3b, 0x1b, 0xe4, 0x6d, 0xea, 0xb0, - 0x0e, 0x0a, 0xc3, 0xb7, 0xdf, 0x2a, 0xbe, 0x41, 0x71, 0x1d, 0xcd, 0xee, 0x4f, 0x5c, 0x07, 0xb7, - 0x27, 0x3b, 0xb8, 0x3d, 0x79, 0x45, 0x54, 0x70, 0x7b, 0xf2, 0x2b, 0x01, 0xc6, 0xed, 0xc9, 0x86, - 0x13, 0xc3, 0xed, 0x89, 0x7e, 0xfe, 0x8c, 0x86, 0xb7, 0x27, 0x7a, 0x11, 0xe1, 0x3a, 0x11, 0xe0, - 0xda, 0x11, 0xdf, 0x5b, 0x46, 0x78, 0x03, 0x3f, 0xcb, 0x97, 0xb0, 0x2e, 0xe3, 0xa1, 0xdb, 0xd1, - 0x07, 0x3e, 0x8f, 0xe7, 0x03, 0xf4, 0x0c, 0xf4, 0x0c, 0xf4, 0x0c, 0xf4, 0x0c, 0xf4, 0x0c, 0xf4, - 0xac, 0x97, 0xd6, 0x89, 0x7a, 0x8f, 0x96, 0x16, 0x46, 0x6a, 0x47, 0xaf, 0xe2, 0xbc, 0x9a, 0xdd, - 0xf0, 0x6a, 0x14, 0x27, 0xa0, 0xe3, 0x8d, 0xae, 0xa6, 0xd7, 0x56, 0xba, 0xde, 0xe0, 0xea, 0x7c, - 0x3b, 0xa5, 0xd1, 0x8d, 0xad, 0x96, 0x37, 0xb5, 0xba, 0x8b, 0xba, 0x86, 0xc5, 0x74, 0xb5, 0x16, - 0x77, 0x5c, 0x36, 0x82, 0x2c, 0x51, 0x74, 0x2c, 0xfc, 0x7e, 0xf7, 0x81, 0x85, 0x96, 0xe7, 0xfa, - 0x5f, 0x23, 0x7d, 0x28, 0x93, 0x99, 0x59, 0x81, 0x38, 0x01, 0x71, 0x02, 0xe2, 0x04, 0xc4, 0x09, - 0x88, 0x13, 0x10, 0x27, 0x7a, 0x25, 0x6d, 0xe9, 0xd2, 0xd8, 0x08, 0x9c, 0x09, 0x38, 0x13, 0x70, - 0x26, 0xe0, 0x4c, 0xc0, 0x99, 0x80, 0x33, 0x01, 0x67, 0x02, 0xce, 0x04, 0x9c, 0x89, 0x0c, 0xce, - 0x84, 0x07, 0xd1, 0xf8, 0xda, 0x4c, 0x3f, 0xe6, 0x64, 0x7a, 0x6e, 0xe0, 0x4f, 0xc0, 0x9f, 0x80, - 0x3f, 0x01, 0x7f, 0x02, 0xfe, 0x04, 0xfc, 0x09, 0xf8, 0x13, 0xf0, 0x27, 0xe0, 0x4f, 0xc0, 0x9f, - 0xc0, 0xa1, 0x04, 0x7f, 0x02, 0xfe, 0x04, 0xfc, 0x09, 0xf8, 0x13, 0xf0, 0x27, 0xd2, 0x8f, 0x05, - 0xd7, 0x01, 0x89, 0x26, 0x28, 0x34, 0x9e, 0x0d, 0x38, 0x12, 0x70, 0x24, 0xe0, 0x48, 0xc0, 0x91, - 0x80, 0x23, 0x01, 0x47, 0xa2, 0x95, 0xd6, 0x71, 0x1d, 0xe6, 0x73, 0x97, 0x3f, 0x87, 0xec, 0x51, - 0xa7, 0xd4, 0x76, 0x0d, 0x90, 0x76, 0xe1, 0x62, 0xbc, 0x34, 0xef, 0xed, 0x48, 0x23, 0x4d, 0x38, - 0xd9, 0xb8, 0x9b, 0xeb, 0xcf, 0xcd, 0xda, 0x4d, 0xbb, 0x7e, 0x5b, 0x6d, 0x37, 0xff, 0x6a, 0xd4, - 0x6e, 0x75, 0x51, 0x88, 0xb1, 0xbf, 0x14, 0x69, 0x55, 0xb6, 0x52, 0x33, 0x47, 0x77, 0xc9, 0x0e, - 0xfe, 0x79, 0x71, 0xd3, 0xfc, 0x5c, 0xad, 0xb7, 0xeb, 0x17, 0x57, 0x7f, 0x14, 0x40, 0x59, 0x98, - 0xb8, 0x85, 0x8d, 0x72, 0x03, 0x3b, 0x67, 0xe4, 0xce, 0x35, 0x6f, 0xaa, 0x57, 0xb7, 0x17, 0xcd, - 0xf6, 0x55, 0xad, 0xf9, 0x8f, 0xeb, 0x1b, 0x9c, 0x3f, 0x33, 0x77, 0xf1, 0xb6, 0xf9, 0xf9, 0xbd, - 0x86, 0x5b, 0xa8, 0xc5, 0x4c, 0x5a, 0xdb, 0x0e, 0xfb, 0xd1, 0x1c, 0x4c, 0x8e, 0xcf, 0x89, 0x36, - 0xfd, 0x2b, 0x5b, 0x7c, 0xbf, 0xf4, 0x53, 0x3e, 0x18, 0x35, 0xbe, 0xdc, 0x96, 0x66, 0xf6, 0x0a, - 0x1a, 0x0a, 0xc7, 0x7b, 0x60, 0x05, 0x8f, 0x56, 0xc4, 0xc2, 0x6f, 0x6e, 0x47, 0x83, 0x5e, 0xa7, - 0x0b, 0x33, 0x42, 0xdb, 0x53, 0x25, 0x13, 0x40, 0xdb, 0xd3, 0xb9, 0xc9, 0xa0, 0xed, 0xe9, 0x8a, - 0x09, 0xa1, 0xed, 0x29, 0x90, 0xcd, 0xcb, 0xe2, 0x2b, 0x6f, 0x7b, 0x3a, 0x34, 0x20, 0x3a, 0x58, - 0xb4, 0xa5, 0x96, 0x4d, 0xbd, 0x61, 0xd3, 0xc4, 0xc0, 0x69, 0x63, 0xe8, 0x74, 0x32, 0x78, 0x5a, - 0x1a, 0x3e, 0xdd, 0x0c, 0xa0, 0xb6, 0x86, 0x50, 0x5b, 0x83, 0xa8, 0xab, 0x61, 0xd4, 0x84, 0xf2, - 0x50, 0xac, 0x77, 0x54, 0x1b, 0xcc, 0x17, 0x2e, 0x20, 0x76, 0xb6, 0xb5, 0xbb, 0xbe, 0x1b, 0x4d, - 0x4b, 0x93, 0x13, 0xa4, 0x87, 0xd1, 0xd4, 0xce, 0x78, 0xea, 0x68, 0x44, 0xb5, 0x36, 0xa6, 0xba, - 0x1a, 0x55, 0xed, 0x8d, 0xab, 0xf6, 0x46, 0x56, 0x77, 0x63, 0xab, 0x87, 0xd1, 0xd5, 0xc4, 0xf8, - 0x6a, 0x67, 0x84, 0x93, 0x09, 0x69, 0x52, 0x3a, 0x7f, 0xa5, 0x32, 0xd5, 0xa6, 0x4a, 0xf1, 0x32, - 0xf3, 0xac, 0x5b, 0x66, 0x84, 0x6e, 0x66, 0x5a, 0x67, 0x73, 0x6d, 0x84, 0xd9, 0xd6, 0xdd, 0x7c, - 0x1b, 0x63, 0xc6, 0x8d, 0x31, 0xe7, 0xa6, 0x98, 0x75, 0xbd, 0xcc, 0xbb, 0x66, 0x66, 0x3e, 0xd9, - 0x44, 0x6d, 0xa2, 0x8b, 0x57, 0x6b, 0x3d, 0xad, 0x5a, 0x01, 0xac, 0x32, 0xb4, 0xc7, 0x1a, 0x4e, - 0x4d, 0xcf, 0x66, 0xf0, 0x93, 0x2f, 0x3d, 0xed, 0xc4, 0x8e, 0xee, 0xcd, 0xe1, 0x35, 0x47, 0x78, - 0x0b, 0xd3, 0xd4, 0xbc, 0x59, 0x7c, 0x32, 0x4f, 0x03, 0x1a, 0x63, 0x6b, 0x6a, 0x43, 0x66, 0x8f, - 0x8e, 0xc6, 0x4d, 0xe4, 0x4d, 0x3d, 0x3a, 0x1a, 0xa6, 0x91, 0x1b, 0x7d, 0x7c, 0xde, 0x60, 0x56, - 0xeb, 0x7c, 0xb5, 0xd0, 0x87, 0x5f, 0x77, 0xf5, 0x5b, 0xe0, 0x41, 0xa4, 0x2f, 0x33, 0x36, 0x9c, - 0x1c, 0x68, 0xb1, 0x75, 0xa6, 0x05, 0x5a, 0x2c, 0x8b, 0x83, 0x08, 0x5a, 0x2c, 0xc3, 0x81, 0x00, - 0x2d, 0x26, 0x78, 0xa2, 0xa0, 0xc5, 0xcc, 0x77, 0x69, 0x0c, 0xa0, 0xc5, 0xfa, 0xae, 0xcf, 0xdf, - 0x69, 0x4c, 0x88, 0x1d, 0x81, 0x10, 0xdb, 0xf0, 0x0b, 0x84, 0xd8, 0x56, 0x79, 0xf5, 0x20, 0xc4, - 0xf2, 0x6a, 0x3d, 0x66, 0x8f, 0x0e, 0x08, 0x31, 0xe1, 0x47, 0xa7, 0x7c, 0x04, 0x3a, 0x2c, 0xa7, - 0x40, 0x50, 0xdf, 0x59, 0x81, 0x0e, 0xd3, 0x79, 0x26, 0xba, 0x84, 0xcf, 0x69, 0x92, 0xce, 0xbe, - 0x30, 0x2f, 0xcd, 0xd3, 0xdb, 0xe7, 0x73, 0x9d, 0x0f, 0xe6, 0x52, 0xc4, 0x54, 0xe6, 0xbf, 0xeb, - 0x27, 0xf0, 0x1a, 0x08, 0xbb, 0x56, 0xcc, 0xb3, 0x86, 0x8c, 0xb3, 0x66, 0x90, 0x0a, 0xf9, 0x11, - 0x9b, 0x88, 0x11, 0xf2, 0x23, 0x36, 0x11, 0x74, 0xe4, 0x47, 0x64, 0xc5, 0x0c, 0xc8, 0x8f, 0x30, - 0x07, 0xe0, 0x69, 0xc7, 0x0c, 0x27, 0x5a, 0xcb, 0x63, 0xf6, 0xa3, 0x1e, 0x25, 0x59, 0xe7, 0x8d, - 0x60, 0xe9, 0x44, 0xa3, 0x39, 0x35, 0xc6, 0x18, 0x78, 0x7f, 0x7f, 0x04, 0x2a, 0x0f, 0x86, 0xa0, - 0x01, 0xc0, 0x52, 0x83, 0x19, 0xa8, 0xce, 0x3f, 0xfe, 0x83, 0x3d, 0xeb, 0x01, 0x22, 0x0b, 0x75, - 0x37, 0xe2, 0x55, 0xce, 0x35, 0x49, 0x87, 0xbe, 0x74, 0xfd, 0x9a, 0xc7, 0x86, 0x16, 0x6a, 0x08, - 0xf9, 0xfd, 0xbe, 0xe7, 0x69, 0xe0, 0x7f, 0x5c, 0xda, 0xdf, 0xf5, 0x9b, 0xd4, 0x75, 0xe8, 0xb0, - 0x90, 0x39, 0xef, 0x9f, 0xc7, 0x53, 0xda, 0xea, 0xe3, 0xa4, 0x19, 0x15, 0x62, 0x3a, 0x05, 0xa2, - 0x43, 0xe1, 0x93, 0x88, 0x87, 0xfd, 0x0e, 0xf7, 0xc7, 0x80, 0xe3, 0x6a, 0xb4, 0x26, 0x17, 0xe3, - 0x25, 0x69, 0x37, 0xc6, 0x0b, 0xd1, 0xbe, 0x8e, 0x17, 0xa2, 0x5d, 0x0d, 0x99, 0xdd, 0xae, 0x47, - 0xce, 0x43, 0xbb, 0x1e, 0xd9, 0x43, 0xdc, 0x34, 0xfc, 0xb3, 0x7d, 0x13, 0xbf, 0xf2, 0xf0, 0xd3, - 0xf0, 0x5b, 0xd7, 0x8f, 0xb7, 0xe3, 0xd7, 0x43, 0xb5, 0xcf, 0xfc, 0xeb, 0x06, 0x54, 0xfb, 0x4c, - 0xa7, 0x0b, 0xb6, 0xa6, 0xf0, 0xe7, 0x9b, 0x1c, 0x1f, 0x02, 0xd5, 0xc2, 0xaf, 0xb9, 0xd0, 0x2b, - 0xb0, 0x6f, 0x62, 0xed, 0x99, 0xdc, 0x43, 0x2a, 0xef, 0xa8, 0x48, 0x3c, 0x26, 0x8a, 0x2a, 0x2f, - 0x29, 0xad, 0xb0, 0xa4, 0xa8, 0x92, 0x92, 0xb2, 0x1b, 0x01, 0x95, 0xcc, 0xbf, 0x16, 0x0c, 0xbf, - 0x6a, 0x26, 0x5f, 0x1b, 0xc6, 0x5e, 0x1b, 0x66, 0x5e, 0x17, 0x06, 0x3e, 0xdf, 0xf0, 0x47, 0x55, - 0x65, 0xa1, 0x82, 0xed, 0x7c, 0x63, 0x21, 0x77, 0x23, 0xd7, 0x7f, 0xb2, 0x46, 0x78, 0x43, 0x7d, - 0x71, 0xf7, 0x25, 0x73, 0x52, 0x5b, 0xde, 0xbd, 0x88, 0xf2, 0xee, 0x28, 0xef, 0xbe, 0x83, 0xf2, - 0xee, 0x06, 0x98, 0x2b, 0xdd, 0xcc, 0xd6, 0x76, 0x52, 0x59, 0xca, 0x2f, 0x82, 0x13, 0xad, 0xe1, - 0x04, 0x9c, 0x33, 0xc7, 0xfa, 0x77, 0xdf, 0x76, 0x54, 0xea, 0x8d, 0x89, 0x1f, 0xf3, 0x4e, 0xe1, - 0x1c, 0x1a, 0x36, 0xe7, 0x2c, 0xf4, 0x95, 0xe7, 0xf8, 0x14, 0x76, 0x77, 0xef, 0x8a, 0xd6, 0x69, - 0xeb, 0xe7, 0x5d, 0xc9, 0x3a, 0x6d, 0x8d, 0x3e, 0x96, 0xe2, 0x3f, 0x46, 0x9f, 0xcb, 0x77, 0x45, - 0xab, 0x32, 0xf9, 0x7c, 0x74, 0x57, 0xb4, 0x8e, 0x5a, 0x7b, 0xf7, 0xf7, 0xfb, 0x7b, 0x3f, 0x0e, - 0x07, 0x9b, 0xff, 0xa2, 0xba, 0x13, 0xdf, 0x42, 0x43, 0x22, 0x3a, 0xd4, 0xfa, 0xa4, 0x41, 0x0f, - 0xa2, 0xe1, 0x24, 0x80, 0x4b, 0x81, 0x4b, 0x81, 0x4b, 0x81, 0x4b, 0x81, 0x4b, 0x81, 0x4b, 0x37, - 0xd2, 0x1a, 0x7d, 0xd7, 0xe7, 0xa5, 0x63, 0x0d, 0x20, 0xa9, 0xc2, 0xe2, 0x8c, 0x9a, 0xe4, 0x9c, - 0xeb, 0x11, 0x45, 0xa6, 0x51, 0xc7, 0x1c, 0xbd, 0xb2, 0x33, 0x34, 0xcb, 0x09, 0xd7, 0x31, 0x7d, - 0x75, 0xa0, 0x47, 0xcc, 0x21, 0x44, 0xf8, 0x15, 0x11, 0xd6, 0xa8, 0x58, 0xa1, 0x96, 0x62, 0xbc, - 0xa5, 0x61, 0x6e, 0x60, 0x0a, 0xe8, 0xc4, 0xbc, 0xf3, 0x85, 0x75, 0xbe, 0x46, 0xfd, 0xae, 0x7a, - 0xba, 0x20, 0x99, 0x09, 0x38, 0x03, 0x70, 0x06, 0xe0, 0x0c, 0xc0, 0x19, 0x80, 0x33, 0x00, 0x67, - 0x00, 0xce, 0x00, 0x9c, 0x01, 0x38, 0x03, 0x70, 0x06, 0xe0, 0x0c, 0x20, 0xc2, 0xe0, 0x0c, 0xc0, - 0x19, 0x80, 0x33, 0xd0, 0x80, 0x33, 0xf0, 0x5c, 0xff, 0xab, 0x15, 0xa7, 0x3b, 0x58, 0xae, 0xa3, - 0x9e, 0x38, 0x98, 0x9d, 0x0e, 0xd8, 0x03, 0xb0, 0x07, 0x60, 0x0f, 0xc0, 0x1e, 0x80, 0x3d, 0x00, - 0x7b, 0xb0, 0x91, 0xd6, 0x40, 0x24, 0xec, 0x8b, 0x32, 0x47, 0x24, 0x2c, 0xb0, 0x6a, 0x3e, 0xb0, - 0x6a, 0xc4, 0xfe, 0xdd, 0x67, 0x7e, 0x87, 0x59, 0x7e, 0xbf, 0xfb, 0xa0, 0x43, 0xf2, 0xd6, 0xfc, - 0x84, 0x80, 0x57, 0x81, 0x57, 0x81, 0x57, 0x81, 0x57, 0x81, 0x57, 0x81, 0x57, 0x37, 0xd2, 0x1a, - 0xae, 0xcf, 0x0f, 0xcb, 0x1a, 0x20, 0xd5, 0x43, 0x5c, 0x76, 0xe1, 0xb2, 0x6b, 0xa9, 0x0b, 0xa3, - 0xd9, 0x4d, 0x41, 0xb9, 0x54, 0x39, 0xa9, 0xbc, 0x3b, 0x3c, 0xae, 0xbc, 0xc3, 0x75, 0x81, 0x66, - 0x6a, 0x75, 0x56, 0x96, 0x71, 0xeb, 0xb5, 0xbe, 0x2c, 0x9f, 0x40, 0x96, 0xf5, 0x02, 0x26, 0xea, - 0x47, 0x6f, 0xa1, 0xe0, 0x9f, 0xf9, 0x9a, 0x11, 0x05, 0xff, 0x96, 0x14, 0xfc, 0x53, 0xd0, 0xc8, - 0x27, 0xa7, 0xa5, 0xf2, 0xfa, 0xdd, 0xae, 0x1d, 0x3e, 0xc7, 0xa5, 0x13, 0xd5, 0x15, 0xcc, 0x9b, - 0x9a, 0x04, 0xca, 0xe6, 0x91, 0x0e, 0x8c, 0xb2, 0x79, 0x28, 0x9b, 0x37, 0x9a, 0x08, 0xca, 0xe6, - 0x6d, 0x13, 0x88, 0x50, 0x56, 0x36, 0x4f, 0x4d, 0x2d, 0xd6, 0x45, 0x13, 0xa3, 0xa0, 0x26, 0xab, - 0x26, 0x34, 0x08, 0xae, 0x58, 0x70, 0xc5, 0xa2, 0xb9, 0x31, 0xd2, 0xce, 0x28, 0xe9, 0x66, 0x9c, - 0xd4, 0x72, 0x09, 0xaa, 0xae, 0x58, 0x54, 0x19, 0xad, 0x64, 0x02, 0x13, 0xef, 0xb5, 0x6b, 0x47, - 0x5f, 0xd5, 0x9f, 0xd6, 0x89, 0x0a, 0x9b, 0x99, 0x95, 0xea, 0x6e, 0x57, 0x5a, 0xb0, 0xa2, 0xda, - 0x34, 0x26, 0xd5, 0xa9, 0x21, 0xa9, 0x96, 0x8d, 0x48, 0x75, 0x6b, 0x40, 0xaa, 0x6d, 0xe3, 0x51, - 0x6d, 0x1b, 0x8e, 0xea, 0xda, 0x68, 0x74, 0xbb, 0xbb, 0x0e, 0x6a, 0xd3, 0x50, 0x74, 0x26, 0x07, - 0xf7, 0x9d, 0x0e, 0x1a, 0x67, 0x6c, 0xa2, 0x34, 0x48, 0x0d, 0xd3, 0x24, 0x4a, 0x61, 0xf2, 0xa5, - 0x51, 0xf7, 0x59, 0x9d, 0xa2, 0x16, 0x34, 0xc3, 0x36, 0x0b, 0xd3, 0xd2, 0x2c, 0x65, 0x37, 0x99, - 0x97, 0x86, 0x17, 0xbf, 0x9a, 0x68, 0xe7, 0x59, 0x51, 0xb7, 0xbf, 0x43, 0xd4, 0x37, 0x14, 0xf5, - 0xc3, 0x32, 0x64, 0xdd, 0x0c, 0x1c, 0xa4, 0xcf, 0x2c, 0x5a, 0x68, 0x05, 0x9a, 0x7f, 0x0d, 0x8b, - 0x56, 0xa0, 0xbf, 0x0a, 0x92, 0x78, 0xb9, 0x56, 0x57, 0x11, 0x30, 0xa1, 0x4e, 0x20, 0x55, 0xa4, - 0x17, 0x2d, 0x34, 0x5b, 0x55, 0x7e, 0xe5, 0xb5, 0x30, 0x23, 0xdc, 0x7e, 0x29, 0x99, 0x00, 0x6e, - 0xbf, 0xe6, 0x26, 0x83, 0xdb, 0xaf, 0x15, 0x13, 0xc2, 0xed, 0x17, 0xa0, 0xcd, 0xcb, 0xe2, 0x2b, - 0xbf, 0xfd, 0x1a, 0x1a, 0x10, 0x1d, 0x2c, 0xda, 0x52, 0xcb, 0xa6, 0xde, 0xb0, 0x69, 0x62, 0xe0, - 0xb4, 0x31, 0x74, 0x3a, 0x19, 0x3c, 0x2d, 0x0d, 0x9f, 0x6e, 0x06, 0x50, 0x5b, 0x43, 0xa8, 0xad, - 0x41, 0xd4, 0xd5, 0x30, 0xea, 0xc1, 0xba, 0xa8, 0xbe, 0x03, 0x53, 0x6d, 0x30, 0x5f, 0xc8, 0x00, - 0xa5, 0x31, 0x8f, 0x2b, 0x75, 0xa0, 0xca, 0x18, 0x48, 0x4d, 0x8d, 0xa6, 0x76, 0xc6, 0x53, 0x47, - 0x23, 0xaa, 0xb5, 0x31, 0xd5, 0xd5, 0xa8, 0x6a, 0x6f, 0x5c, 0xb5, 0x37, 0xb2, 0xba, 0x1b, 0x5b, - 0x3d, 0x8c, 0xae, 0x26, 0xc6, 0x57, 0x3b, 0x23, 0x9c, 0x4c, 0xa8, 0xcb, 0x78, 0xe8, 0x76, 0xf4, - 0xd3, 0x0b, 0x13, 0x65, 0x3a, 0x9e, 0xdf, 0x5b, 0x5c, 0x08, 0x1b, 0x68, 0xa6, 0x75, 0x36, 0xd7, - 0x46, 0x98, 0x6d, 0xdd, 0xcd, 0xb7, 0x31, 0x66, 0xdc, 0x18, 0x73, 0x6e, 0x8a, 0x59, 0xd7, 0xcb, - 0xbc, 0x6b, 0x66, 0xe6, 0x93, 0x4d, 0xd4, 0x26, 0xee, 0x74, 0xb5, 0xd6, 0x8b, 0x7a, 0x8f, 0x96, - 0x96, 0x46, 0x76, 0x47, 0x8f, 0x46, 0x31, 0x2b, 0xa7, 0xa6, 0x57, 0xb4, 0xea, 0xfc, 0x97, 0x9e, - 0x76, 0x62, 0x47, 0xd7, 0x68, 0x56, 0x43, 0x10, 0xde, 0xc2, 0x34, 0x35, 0x8d, 0x76, 0x5d, 0x98, - 0xa7, 0xc6, 0x11, 0x81, 0x9a, 0xdb, 0x90, 0xd9, 0xa3, 0x63, 0x7f, 0xc7, 0xd1, 0x11, 0x7c, 0x74, - 0x34, 0x6a, 0x8c, 0x93, 0x8b, 0xe3, 0xf3, 0x06, 0xb3, 0x5a, 0xe7, 0xab, 0xf5, 0x06, 0xeb, 0xa3, - 0xb9, 0xfa, 0x2d, 0xf0, 0x20, 0xd2, 0x97, 0x19, 0x1b, 0x4e, 0x0e, 0xb4, 0xd8, 0x3a, 0xd3, 0x02, + 0xb0, 0xa0, 0xdb, 0xe7, 0x26, 0x1a, 0xc8, 0x82, 0xde, 0xbb, 0xbe, 0x1d, 0x3e, 0x1a, 0xc4, 0x82, + 0x9e, 0x00, 0x52, 0xe7, 0x68, 0x66, 0xe8, 0xea, 0x99, 0x6d, 0x9e, 0x26, 0xd7, 0x56, 0x7a, 0x56, + 0x0d, 0x07, 0x2d, 0x3d, 0xcd, 0x9d, 0x11, 0xca, 0xa1, 0x6d, 0xe5, 0x91, 0xdd, 0xda, 0x7e, 0x9e, + 0x9f, 0x26, 0x6b, 0xd0, 0xf2, 0xbe, 0xa1, 0x2e, 0x9c, 0xce, 0x33, 0xd1, 0x44, 0x2f, 0x15, 0x1a, + 0x6e, 0xc4, 0x6b, 0x9c, 0xeb, 0x95, 0xe1, 0x5e, 0xb8, 0x70, 0xfd, 0xba, 0xc7, 0xc6, 0x0e, 0x6a, + 0x54, 0x38, 0xdd, 0xf1, 0x87, 0x9e, 0xa7, 0x51, 0x31, 0xbf, 0x0b, 0xfb, 0xbb, 0xbe, 0x93, 0xbb, + 0x0a, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xe3, 0x74, 0x6a, 0x10, 0x76, 0xfd, 0x8d, 0xaf, 0xc9, 0x46, + 0xb7, 0xa0, 0x55, 0x6b, 0x64, 0x7a, 0x03, 0xab, 0x87, 0x55, 0x55, 0x6f, 0xc3, 0xd4, 0xce, 0x40, + 0xb1, 0x42, 0xd1, 0x4d, 0x91, 0x98, 0xaa, 0x40, 0xd4, 0x1e, 0x26, 0x75, 0x22, 0xac, 0x66, 0x64, + 0x45, 0x87, 0x46, 0x97, 0xc3, 0x62, 0xe0, 0x21, 0x51, 0x68, 0x5c, 0xc9, 0x8d, 0xa9, 0x9a, 0xb3, + 0x2f, 0xff, 0xe4, 0x29, 0x38, 0x75, 0x5a, 0x94, 0x1b, 0xd7, 0xa8, 0xac, 0xb8, 0xe2, 0xca, 0xa1, + 0xca, 0x03, 0x33, 0x74, 0x08, 0xb8, 0xd0, 0x2a, 0x90, 0x42, 0x97, 0x00, 0x09, 0xed, 0x02, 0x1f, + 0xb4, 0x0b, 0x68, 0xd0, 0x2d, 0x50, 0x61, 0xbb, 0x90, 0x9b, 0xea, 0xca, 0x97, 0x9a, 0x94, 0xcd, + 0xd6, 0xaa, 0x3c, 0xb6, 0x26, 0x65, 0xb0, 0xb5, 0x89, 0x36, 0xd4, 0x29, 0x9a, 0x50, 0xcb, 0x68, + 0x41, 0xdd, 0xa2, 0x01, 0xb5, 0x8d, 0xf6, 0xd3, 0x36, 0x9a, 0x4f, 0xd7, 0x68, 0xbd, 0xed, 0xe6, + 0x00, 0x75, 0x29, 0x0b, 0xad, 0x5b, 0xf9, 0x67, 0x3d, 0xcb, 0x3c, 0x6b, 0x16, 0xc4, 0xaf, 0x5d, + 0xb0, 0xbe, 0x8e, 0x41, 0xf9, 0x5a, 0x07, 0xdf, 0xeb, 0x1a, 0x64, 0xaf, 0x7d, 0x30, 0xbd, 0xf6, + 0x41, 0xf3, 0xba, 0x07, 0xc7, 0x23, 0x80, 0xe5, 0xf9, 0x66, 0x69, 0x17, 0xd4, 0xae, 0x6f, 0x09, + 0x0f, 0x0d, 0x4b, 0x75, 0x68, 0x5a, 0x92, 0x43, 0xc3, 0xc0, 0x4c, 0x9d, 0x4b, 0x6c, 0x68, 0x9e, + 0x21, 0xa9, 0x7b, 0xc9, 0x0c, 0x13, 0x72, 0xf1, 0x35, 0x4c, 0x85, 0xd0, 0xba, 0xd4, 0x85, 0x29, + 0x47, 0x42, 0xe3, 0xd2, 0x15, 0x46, 0x1c, 0x0b, 0x04, 0x59, 0xaf, 0xfc, 0x6a, 0x23, 0x4c, 0x4e, + 0x17, 0xb5, 0xa9, 0x57, 0x59, 0x5c, 0x1d, 0xcb, 0xdf, 0x82, 0x1b, 0x7a, 0x61, 0x42, 0xe0, 0x86, + 0x36, 0x9c, 0x1c, 0xb8, 0xa1, 0x94, 0x13, 0x04, 0x37, 0x94, 0x07, 0x04, 0x00, 0x6e, 0xe8, 0x25, + 0xad, 0x05, 0x6e, 0xe8, 0x15, 0x53, 0x02, 0x37, 0xf4, 0x5a, 0x47, 0x18, 0xdc, 0x50, 0x66, 0x47, + 0x18, 0xdc, 0x90, 0xe9, 0xea, 0x7e, 0xfe, 0x48, 0x80, 0x1b, 0xca, 0x7c, 0x24, 0xc0, 0x0d, 0xe5, + 0x84, 0x8d, 0xd9, 0x01, 0x37, 0xa4, 0xe1, 0x7a, 0xe8, 0xc0, 0x0d, 0xe9, 0x55, 0x2e, 0x54, 0xcb, + 0xb2, 0xa0, 0x60, 0x87, 0x5e, 0x98, 0x10, 0xd8, 0xa1, 0x0d, 0x27, 0x07, 0x76, 0x28, 0xe5, 0x04, + 0xc1, 0x0e, 0xe5, 0x01, 0x03, 0x80, 0x1d, 0x7a, 0x49, 0x6b, 0x69, 0x57, 0xf6, 0x52, 0xaf, 0xf2, + 0x96, 0xa8, 0x7e, 0x81, 0xea, 0x17, 0xcf, 0xe7, 0xa3, 0x79, 0x62, 0xbf, 0x66, 0x95, 0x24, 0x51, + 0xf6, 0x62, 0xab, 0x4e, 0x89, 0x41, 0xa7, 0x23, 0x3f, 0xe5, 0x2e, 0x54, 0x57, 0x61, 0x54, 0x50, + 0xe6, 0xe2, 0x4d, 0x8e, 0xcf, 0xb4, 0xea, 0xb3, 0xac, 0xf9, 0x19, 0x56, 0x70, 0x6e, 0xc5, 0x9e, + 0x57, 0xb9, 0x87, 0x54, 0xde, 0x51, 0x91, 0x78, 0x4c, 0x0a, 0x61, 0x30, 0xe4, 0x2c, 0x8c, 0xc5, + 0x41, 0xf6, 0x11, 0x49, 0xfc, 0xa6, 0x67, 0x73, 0x90, 0xac, 0x20, 0xd4, 0x24, 0xe5, 0x2b, 0xe3, + 0x02, 0x55, 0x72, 0x7e, 0x5a, 0x70, 0x7b, 0xaa, 0x39, 0x3c, 0x6d, 0xb8, 0x3a, 0x6d, 0x38, 0x39, + 0x5d, 0xb8, 0xb7, 0x7c, 0x03, 0x21, 0x55, 0x49, 0xef, 0x8a, 0x2b, 0xc1, 0x68, 0x51, 0x01, 0x06, + 0x65, 0xcc, 0x50, 0xc6, 0x4c, 0x2b, 0x23, 0xa4, 0x9d, 0x31, 0xd2, 0xce, 0x28, 0xe9, 0x66, 0x9c, + 0xb6, 0x93, 0x89, 0x53, 0x5e, 0xc6, 0xcc, 0x73, 0xfd, 0xaf, 0x96, 0x63, 0x73, 0x5b, 0x9f, 0x52, + 0x66, 0x4f, 0x53, 0xd2, 0xa3, 0x9c, 0x59, 0x11, 0xe5, 0xcc, 0xb4, 0x31, 0x72, 0x5a, 0x1a, 0x3b, + 0xdd, 0x8c, 0x9e, 0xb6, 0xc6, 0x4f, 0x5b, 0x23, 0xa8, 0xab, 0x31, 0x54, 0x6b, 0x14, 0x15, 0x1b, + 0xc7, 0x64, 0x53, 0xb4, 0x89, 0x86, 0x78, 0x56, 0x38, 0xda, 0x0d, 0x7c, 0x1d, 0x34, 0xce, 0xcc, + 0xef, 0x3a, 0xd1, 0x60, 0x2e, 0xd3, 0x6d, 0xd2, 0x23, 0x25, 0x46, 0xc3, 0xd0, 0x19, 0x27, 0xe0, + 0x9c, 0x39, 0xd6, 0xbf, 0x87, 0xb6, 0xa3, 0x61, 0xfc, 0x4c, 0xe9, 0x9d, 0x46, 0x73, 0x6a, 0xda, + 0x9c, 0xb3, 0xd0, 0xd7, 0x2e, 0xc1, 0xaa, 0xb0, 0xbb, 0x7b, 0x5b, 0xb4, 0x4e, 0xda, 0x3f, 0x6f, + 0x4b, 0xd6, 0x49, 0x7b, 0xf2, 0x6d, 0x29, 0xfe, 0x63, 0xf2, 0x7d, 0xf9, 0xb6, 0x68, 0x55, 0x66, + 0xdf, 0x57, 0x6f, 0x8b, 0x56, 0xb5, 0xbd, 0x77, 0x77, 0xb7, 0xbf, 0xf7, 0xe3, 0x70, 0xb4, 0xf9, + 0x07, 0x0b, 0x08, 0x8b, 0xd7, 0xc9, 0x0c, 0x69, 0xac, 0x59, 0x86, 0xae, 0xcf, 0x0f, 0xcb, 0x1a, + 0x2a, 0x95, 0x63, 0xa4, 0x6c, 0x1a, 0x23, 0x4d, 0xc9, 0x42, 0x21, 0x65, 0x33, 0xfd, 0xf4, 0x90, + 0xb2, 0x99, 0x17, 0x35, 0x3f, 0x7f, 0x24, 0x90, 0xb2, 0x99, 0xf9, 0x48, 0x54, 0xca, 0x27, 0x95, + 0x93, 0xa3, 0xe3, 0xf2, 0x09, 0xf2, 0x36, 0x0d, 0xe5, 0x01, 0xf4, 0x9d, 0x0d, 0xf2, 0x36, 0x75, + 0x58, 0x07, 0x85, 0xe1, 0xdb, 0x6f, 0x15, 0xdf, 0xa0, 0xb8, 0x8e, 0x66, 0xf7, 0x27, 0xae, 0x83, + 0xdb, 0x93, 0x1d, 0xdc, 0x9e, 0xbc, 0x20, 0x2a, 0xb8, 0x3d, 0xf9, 0x95, 0x00, 0xe3, 0xf6, 0x64, + 0xc3, 0x89, 0xe1, 0xf6, 0x44, 0x3f, 0x7f, 0x46, 0xc3, 0xdb, 0x13, 0xbd, 0x88, 0x70, 0x9d, 0x08, + 0x70, 0xed, 0x88, 0xef, 0x2d, 0x23, 0xbc, 0x81, 0x9f, 0xe5, 0x4b, 0x58, 0x9f, 0xf1, 0xd0, 0xed, + 0xea, 0x03, 0x9f, 0xa7, 0xf3, 0x01, 0x7a, 0x06, 0x7a, 0x06, 0x7a, 0x06, 0x7a, 0x06, 0x7a, 0x06, + 0x7a, 0xd6, 0x4b, 0xeb, 0x44, 0x83, 0x9e, 0xa5, 0x85, 0x91, 0xda, 0xd1, 0xab, 0x38, 0xaf, 0x66, + 0x37, 0xbc, 0x1a, 0xc5, 0x09, 0xe8, 0x78, 0xa3, 0xab, 0xe9, 0xb5, 0x95, 0xae, 0x37, 0xb8, 0x3a, + 0xdf, 0x4e, 0x69, 0x74, 0x63, 0xab, 0xe5, 0x4d, 0xad, 0xee, 0xa2, 0xae, 0x61, 0x31, 0x5d, 0xad, + 0xc5, 0x1d, 0x97, 0x8d, 0x20, 0x4b, 0x14, 0x1d, 0x0b, 0x7f, 0xd8, 0xbf, 0x67, 0xa1, 0xe5, 0xb9, + 0xfe, 0xd7, 0x48, 0x1f, 0xca, 0x64, 0x6e, 0x56, 0x20, 0x4e, 0x40, 0x9c, 0x80, 0x38, 0x01, 0x71, + 0x02, 0xe2, 0x04, 0xc4, 0x89, 0x5e, 0x49, 0x5b, 0xba, 0x34, 0x36, 0x02, 0x67, 0x02, 0xce, 0x04, + 0x9c, 0x09, 0x38, 0x13, 0x70, 0x26, 0xe0, 0x4c, 0xc0, 0x99, 0x80, 0x33, 0x01, 0x67, 0x22, 0x83, + 0x33, 0xe1, 0x41, 0x34, 0xbd, 0x36, 0xd3, 0x8f, 0x39, 0x79, 0x3e, 0x37, 0xf0, 0x27, 0xe0, 0x4f, + 0xc0, 0x9f, 0x80, 0x3f, 0x01, 0x7f, 0x02, 0xfe, 0x04, 0xfc, 0x09, 0xf8, 0x13, 0xf0, 0x27, 0xe0, + 0x4f, 0xe0, 0x50, 0x82, 0x3f, 0x01, 0x7f, 0x02, 0xfe, 0x04, 0xfc, 0x09, 0xf8, 0x13, 0xe9, 0xc7, + 0x82, 0xeb, 0x80, 0x44, 0x13, 0x14, 0x1a, 0xcf, 0x06, 0x1c, 0x09, 0x38, 0x12, 0x70, 0x24, 0xe0, + 0x48, 0xc0, 0x91, 0x80, 0x23, 0xd1, 0x4a, 0xeb, 0xb8, 0x0e, 0xf3, 0xb9, 0xcb, 0x1f, 0x43, 0xd6, + 0xd3, 0x29, 0xb5, 0x5d, 0x03, 0xa4, 0x5d, 0x38, 0x9f, 0x2e, 0xcd, 0x7b, 0x3b, 0xd2, 0x48, 0x13, + 0xce, 0x36, 0xee, 0xfa, 0xea, 0x53, 0xab, 0x7e, 0xdd, 0x69, 0xdc, 0xd4, 0x3a, 0xad, 0xbf, 0x9a, + 0xf5, 0x1b, 0x5d, 0x14, 0x62, 0xec, 0x2f, 0x45, 0x5a, 0x95, 0xad, 0xd4, 0xcc, 0xd1, 0x5d, 0xb5, + 0x83, 0xd7, 0xb5, 0xcb, 0x9b, 0xf3, 0x56, 0xe7, 0xb2, 0xde, 0xfa, 0xc7, 0xd5, 0xf5, 0x9f, 0x05, + 0xb0, 0x16, 0x26, 0xee, 0x62, 0xb3, 0xdc, 0xc4, 0xce, 0x19, 0xb9, 0x73, 0x9f, 0xcf, 0xaf, 0x5b, + 0x9f, 0x6a, 0x8d, 0x4e, 0xe3, 0xfc, 0x12, 0x87, 0xcf, 0xcc, 0x2d, 0xbc, 0x69, 0x7d, 0x7a, 0xaf, + 0xa1, 0xfe, 0xd4, 0x62, 0x26, 0xed, 0x6d, 0x87, 0xfd, 0x68, 0x0e, 0x26, 0xc7, 0xe7, 0x44, 0x9b, + 0xfe, 0xb5, 0x2d, 0xbe, 0x9f, 0xfa, 0x29, 0x1f, 0x4c, 0x1a, 0x5f, 0x6e, 0x4b, 0x33, 0x7b, 0x05, + 0x0d, 0x85, 0xe3, 0x3d, 0xb0, 0x82, 0x9e, 0x15, 0xb1, 0xf0, 0x9b, 0xdb, 0xd5, 0xa0, 0xd7, 0xe9, + 0xd2, 0x8c, 0xd0, 0xf6, 0x54, 0xc9, 0x04, 0xd0, 0xf6, 0x74, 0x61, 0x32, 0x68, 0x7b, 0xba, 0x66, + 0x42, 0x68, 0x7b, 0x0a, 0x64, 0xf3, 0xb4, 0xf8, 0xca, 0xdb, 0x9e, 0x8e, 0x0d, 0x88, 0x0e, 0x16, + 0x6d, 0xa5, 0x65, 0x53, 0x6f, 0xd8, 0x34, 0x31, 0x70, 0xda, 0x18, 0x3a, 0x9d, 0x0c, 0x9e, 0x96, + 0x86, 0x4f, 0x37, 0x03, 0xa8, 0xad, 0x21, 0xd4, 0xd6, 0x20, 0xea, 0x6a, 0x18, 0x35, 0xa1, 0x3c, + 0x14, 0xeb, 0x1d, 0xd5, 0x06, 0xf3, 0x89, 0x0b, 0x88, 0x9d, 0x6d, 0xed, 0xae, 0xef, 0x26, 0xd3, + 0xd2, 0xe4, 0x04, 0xe9, 0x61, 0x34, 0xb5, 0x33, 0x9e, 0x3a, 0x1a, 0x51, 0xad, 0x8d, 0xa9, 0xae, + 0x46, 0x55, 0x7b, 0xe3, 0xaa, 0xbd, 0x91, 0xd5, 0xdd, 0xd8, 0xea, 0x61, 0x74, 0x35, 0x31, 0xbe, + 0xda, 0x19, 0xe1, 0x64, 0x42, 0x9a, 0x94, 0xce, 0x5f, 0xab, 0x4c, 0xb5, 0xa9, 0x52, 0xbc, 0xca, + 0x3c, 0xeb, 0x96, 0x19, 0xa1, 0x9b, 0x99, 0xd6, 0xd9, 0x5c, 0x1b, 0x61, 0xb6, 0x75, 0x37, 0xdf, + 0xc6, 0x98, 0x71, 0x63, 0xcc, 0xb9, 0x29, 0x66, 0x5d, 0x2f, 0xf3, 0xae, 0x99, 0x99, 0x4f, 0x36, + 0x51, 0x9b, 0xe8, 0xe2, 0xf5, 0x5a, 0x4f, 0xab, 0x56, 0x00, 0xeb, 0x0c, 0xed, 0x91, 0x86, 0x53, + 0xd3, 0xb3, 0x19, 0xfc, 0xec, 0x4b, 0x4f, 0x3b, 0xb1, 0xa3, 0x7b, 0x73, 0x78, 0xcd, 0x11, 0xde, + 0xd2, 0x34, 0x35, 0x6f, 0x16, 0x9f, 0xcc, 0xd3, 0x80, 0xc6, 0xd8, 0x9a, 0xda, 0x90, 0xf9, 0xa3, + 0xa3, 0x71, 0x13, 0x79, 0x53, 0x8f, 0x8e, 0x86, 0x69, 0xe4, 0x46, 0x1f, 0x9f, 0x37, 0x98, 0xd5, + 0x6b, 0xbe, 0xda, 0xe8, 0xc3, 0xaf, 0xbb, 0xfa, 0x2d, 0xf0, 0x20, 0xd2, 0x97, 0x19, 0x1b, 0x4f, + 0x0e, 0xb4, 0xd8, 0x6b, 0xa6, 0x05, 0x5a, 0x2c, 0x8b, 0x83, 0x08, 0x5a, 0x2c, 0xc3, 0x81, 0x00, + 0x2d, 0x26, 0x78, 0xa2, 0xa0, 0xc5, 0xcc, 0x77, 0x69, 0x0c, 0xa0, 0xc5, 0x86, 0xae, 0xcf, 0xdf, + 0x69, 0x4c, 0x88, 0x55, 0x41, 0x88, 0x6d, 0xf8, 0x05, 0x42, 0x6c, 0xab, 0xbc, 0x7a, 0x10, 0x62, + 0x79, 0xb5, 0x1e, 0xf3, 0x47, 0x07, 0x84, 0x98, 0xf0, 0xa3, 0x53, 0xae, 0x82, 0x0e, 0xcb, 0x29, + 0x10, 0xd4, 0x77, 0x56, 0xa0, 0xc3, 0x74, 0x9e, 0x89, 0x2e, 0xe1, 0x73, 0x9a, 0xa4, 0xb3, 0x2f, + 0xcd, 0x4b, 0xf3, 0xf4, 0xf6, 0xc5, 0x5c, 0xe7, 0x83, 0x85, 0x14, 0x31, 0x95, 0xf9, 0xef, 0xfa, + 0x09, 0xbc, 0x06, 0xc2, 0xae, 0x15, 0xf3, 0xac, 0x21, 0xe3, 0xac, 0x19, 0xa4, 0x42, 0x7e, 0xc4, + 0x26, 0x62, 0x84, 0xfc, 0x88, 0x4d, 0x04, 0x1d, 0xf9, 0x11, 0x59, 0x31, 0x03, 0xf2, 0x23, 0xcc, + 0x01, 0x78, 0xda, 0x31, 0xc3, 0x89, 0xd6, 0xf2, 0x98, 0xdd, 0xd3, 0xa3, 0x24, 0xeb, 0xa2, 0x11, + 0x2c, 0x1d, 0x6b, 0x34, 0xa7, 0xe6, 0x14, 0x03, 0xef, 0xef, 0x4f, 0x40, 0xe5, 0xc1, 0x18, 0x34, + 0x00, 0x58, 0x6a, 0x30, 0x03, 0xd5, 0xf9, 0xc7, 0x7f, 0xb2, 0x47, 0x3d, 0x40, 0x64, 0xa1, 0xe1, + 0x46, 0xbc, 0xc6, 0xb9, 0x26, 0xe9, 0xd0, 0x17, 0xae, 0x5f, 0xf7, 0xd8, 0xd8, 0x42, 0x8d, 0x21, + 0xbf, 0x3f, 0xf4, 0x3c, 0x0d, 0xfc, 0x8f, 0x0b, 0xfb, 0xbb, 0x7e, 0x93, 0xba, 0x0a, 0x1d, 0x16, + 0x32, 0xe7, 0xfd, 0xe3, 0x74, 0x4a, 0x5b, 0x7d, 0x9c, 0x34, 0xa3, 0x42, 0x4c, 0xa7, 0x40, 0x74, + 0x28, 0x7c, 0x12, 0xf1, 0x70, 0xd8, 0xe5, 0xfe, 0x14, 0x70, 0x5c, 0x4e, 0xd6, 0xe4, 0x7c, 0xba, + 0x24, 0x9d, 0xe6, 0x74, 0x21, 0x3a, 0x57, 0xf1, 0x42, 0x74, 0x6a, 0x21, 0xb3, 0x3b, 0x8d, 0xc8, + 0xb9, 0xef, 0x34, 0x22, 0x7b, 0x8c, 0x9b, 0xc6, 0x7f, 0x76, 0xae, 0xe3, 0x57, 0x1e, 0x7f, 0x37, + 0xfe, 0xd1, 0x55, 0xef, 0x66, 0xfa, 0x7a, 0xa8, 0xf6, 0x99, 0x7f, 0xdd, 0x80, 0x6a, 0x9f, 0xe9, + 0x74, 0xc1, 0xd6, 0x14, 0xfe, 0x7c, 0x93, 0xe3, 0x43, 0xa0, 0x5a, 0xf8, 0x35, 0x17, 0x7a, 0x05, + 0xf6, 0x4d, 0xac, 0x3d, 0x93, 0x7b, 0x48, 0xe5, 0x1d, 0x15, 0x89, 0xc7, 0x44, 0x51, 0xe5, 0x25, + 0xa5, 0x15, 0x96, 0x14, 0x55, 0x52, 0x52, 0x76, 0x23, 0xa0, 0x92, 0xf9, 0xd7, 0x82, 0xe1, 0x57, + 0xcd, 0xe4, 0x6b, 0xc3, 0xd8, 0x6b, 0xc3, 0xcc, 0xeb, 0xc2, 0xc0, 0xe7, 0x1b, 0xfe, 0xa8, 0xaa, + 0x2c, 0x54, 0xb0, 0x9d, 0x6f, 0x2c, 0xe4, 0x6e, 0xe4, 0xfa, 0x0f, 0xd6, 0x04, 0x6f, 0xa8, 0x2f, + 0xee, 0xbe, 0x62, 0x4e, 0x6a, 0xcb, 0xbb, 0x17, 0x51, 0xde, 0x1d, 0xe5, 0xdd, 0x77, 0x50, 0xde, + 0xdd, 0x00, 0x73, 0xa5, 0x9b, 0xd9, 0xda, 0x4e, 0x2a, 0x4b, 0xf9, 0x45, 0x70, 0xa2, 0x35, 0x9c, + 0x80, 0x73, 0xe6, 0x58, 0xff, 0x1e, 0xda, 0x8e, 0x4a, 0xbd, 0x31, 0xf3, 0x63, 0xde, 0x29, 0x9c, + 0x43, 0xd3, 0xe6, 0x9c, 0x85, 0xbe, 0xf2, 0x1c, 0x9f, 0xc2, 0xee, 0xee, 0x6d, 0xd1, 0x3a, 0x69, + 0xff, 0xbc, 0x2d, 0x59, 0x27, 0xed, 0xc9, 0xb7, 0xa5, 0xf8, 0x8f, 0xc9, 0xf7, 0xe5, 0xdb, 0xa2, + 0x55, 0x99, 0x7d, 0x5f, 0xbd, 0x2d, 0x5a, 0xd5, 0xf6, 0xde, 0xdd, 0xdd, 0xfe, 0xde, 0x8f, 0xc3, + 0xd1, 0xe6, 0x1f, 0x54, 0x77, 0xe2, 0xdb, 0x68, 0x48, 0x44, 0x87, 0x5a, 0x1f, 0x34, 0xe8, 0x41, + 0x34, 0x9e, 0x04, 0x70, 0x29, 0x70, 0x29, 0x70, 0x29, 0x70, 0x29, 0x70, 0x29, 0x70, 0xe9, 0x46, + 0x5a, 0x63, 0xe8, 0xfa, 0xbc, 0x74, 0xa4, 0x01, 0x24, 0x55, 0x58, 0x9c, 0x51, 0x93, 0x9c, 0x73, + 0x3d, 0xa2, 0xc8, 0x34, 0xea, 0x98, 0xa3, 0x57, 0x76, 0x86, 0x66, 0x39, 0xe1, 0x3a, 0xa6, 0xaf, + 0x8e, 0xf4, 0x88, 0x39, 0x84, 0x08, 0xbf, 0x20, 0xc2, 0x1a, 0x15, 0x2b, 0xd4, 0x52, 0x8c, 0xb7, + 0x34, 0xcc, 0x0d, 0x4c, 0x01, 0x9d, 0x98, 0x77, 0xbf, 0xb0, 0xee, 0xd7, 0x68, 0xd8, 0x57, 0x4f, + 0x17, 0x24, 0x33, 0x01, 0x67, 0x00, 0xce, 0x00, 0x9c, 0x01, 0x38, 0x03, 0x70, 0x06, 0xe0, 0x0c, + 0xc0, 0x19, 0x80, 0x33, 0x00, 0x67, 0x00, 0xce, 0x00, 0x9c, 0x01, 0x44, 0x18, 0x9c, 0x01, 0x38, + 0x03, 0x70, 0x06, 0x1a, 0x70, 0x06, 0x9e, 0xeb, 0x7f, 0xb5, 0xe2, 0x74, 0x07, 0xcb, 0x75, 0xd4, + 0x13, 0x07, 0xf3, 0xd3, 0x01, 0x7b, 0x00, 0xf6, 0x00, 0xec, 0x01, 0xd8, 0x03, 0xb0, 0x07, 0x60, + 0x0f, 0x36, 0xd2, 0x1a, 0x88, 0x84, 0x7d, 0x52, 0xe6, 0x88, 0x84, 0x05, 0x56, 0xcd, 0x07, 0x56, + 0x8d, 0xd8, 0xbf, 0x87, 0xcc, 0xef, 0x32, 0xcb, 0x1f, 0xf6, 0xef, 0x75, 0x48, 0xde, 0x5a, 0x9c, + 0x10, 0xf0, 0x2a, 0xf0, 0x2a, 0xf0, 0x2a, 0xf0, 0x2a, 0xf0, 0x2a, 0xf0, 0xea, 0x46, 0x5a, 0xc3, + 0xf5, 0xf9, 0x61, 0x59, 0x03, 0xa4, 0x7a, 0x88, 0xcb, 0x2e, 0x5c, 0x76, 0xad, 0x74, 0x61, 0x34, + 0xbb, 0x29, 0x28, 0x97, 0x2a, 0xc7, 0x95, 0x77, 0x87, 0x47, 0x95, 0x77, 0xb8, 0x2e, 0xd0, 0x4c, + 0xad, 0xce, 0xcb, 0x32, 0x6e, 0xbd, 0x5e, 0x2f, 0xcb, 0xc7, 0x90, 0x65, 0xbd, 0x80, 0x89, 0xfa, + 0xd1, 0xdb, 0x28, 0xf8, 0x67, 0xbe, 0x66, 0x44, 0xc1, 0xbf, 0x15, 0x05, 0xff, 0x14, 0x34, 0xf2, + 0xc9, 0x69, 0xa9, 0xbc, 0x61, 0xbf, 0x6f, 0x87, 0x8f, 0x71, 0xe9, 0x44, 0x75, 0x05, 0xf3, 0x9e, + 0x4d, 0x02, 0x65, 0xf3, 0x48, 0x07, 0x46, 0xd9, 0x3c, 0x94, 0xcd, 0x9b, 0x4c, 0x04, 0x65, 0xf3, + 0xb6, 0x09, 0x44, 0x28, 0x2b, 0x9b, 0xa7, 0xa6, 0x16, 0xeb, 0xb2, 0x89, 0x51, 0x50, 0x93, 0x55, + 0x13, 0x1a, 0x04, 0x57, 0x2c, 0xb8, 0x62, 0xd1, 0xdc, 0x18, 0x69, 0x67, 0x94, 0x74, 0x33, 0x4e, + 0x6a, 0xb9, 0x04, 0x55, 0x57, 0x2c, 0xaa, 0x8c, 0x56, 0x32, 0x81, 0x99, 0xf7, 0xda, 0xb7, 0xa3, + 0xaf, 0xea, 0x4f, 0xeb, 0x4c, 0x85, 0xcd, 0xcd, 0x4a, 0x75, 0xb7, 0x2b, 0x2d, 0x58, 0x51, 0x6d, + 0x1a, 0x93, 0xea, 0xd4, 0x90, 0x54, 0xcb, 0x46, 0xa4, 0xba, 0x35, 0x20, 0xd5, 0xb6, 0xf1, 0xa8, + 0xb6, 0x0d, 0x47, 0x75, 0x6d, 0x34, 0xba, 0xdd, 0x5d, 0x07, 0xb5, 0x69, 0x28, 0x3a, 0x97, 0x83, + 0xfb, 0x4e, 0x07, 0x8d, 0x33, 0x35, 0x51, 0x1a, 0xa4, 0x86, 0x69, 0x12, 0xa5, 0x30, 0xfb, 0xd2, + 0xa8, 0xfb, 0xac, 0x4e, 0x51, 0x0b, 0x9a, 0x61, 0x9b, 0xa5, 0x69, 0x69, 0x96, 0xb2, 0x9b, 0xcc, + 0x4b, 0xc3, 0x8b, 0x5f, 0x4d, 0xb4, 0xf3, 0xbc, 0xa8, 0xdb, 0xdf, 0x21, 0xea, 0x1b, 0x8a, 0xfa, + 0x61, 0x19, 0xb2, 0x6e, 0x06, 0x0e, 0xd2, 0x67, 0x16, 0x6d, 0xb4, 0x02, 0xcd, 0xbf, 0x86, 0x45, + 0x2b, 0xd0, 0x5f, 0x05, 0x49, 0x3c, 0x5d, 0xab, 0xab, 0x08, 0x98, 0x50, 0x27, 0x90, 0x2a, 0xd2, + 0x8b, 0x96, 0x9a, 0xad, 0x2a, 0xbf, 0xf2, 0x5a, 0x9a, 0x11, 0x6e, 0xbf, 0x94, 0x4c, 0x00, 0xb7, + 0x5f, 0x0b, 0x93, 0xc1, 0xed, 0xd7, 0x9a, 0x09, 0xe1, 0xf6, 0x0b, 0xd0, 0xe6, 0x69, 0xf1, 0x95, + 0xdf, 0x7e, 0x8d, 0x0d, 0x88, 0x0e, 0x16, 0x6d, 0xa5, 0x65, 0x53, 0x6f, 0xd8, 0x34, 0x31, 0x70, + 0xda, 0x18, 0x3a, 0x9d, 0x0c, 0x9e, 0x96, 0x86, 0x4f, 0x37, 0x03, 0xa8, 0xad, 0x21, 0xd4, 0xd6, + 0x20, 0xea, 0x6a, 0x18, 0xf5, 0x60, 0x5d, 0x54, 0xdf, 0x81, 0xa9, 0x36, 0x98, 0x4f, 0x64, 0x80, + 0xd2, 0x98, 0xc7, 0xb5, 0x3a, 0x50, 0x65, 0x0c, 0xa4, 0xa6, 0x46, 0x53, 0x3b, 0xe3, 0xa9, 0xa3, + 0x11, 0xd5, 0xda, 0x98, 0xea, 0x6a, 0x54, 0xb5, 0x37, 0xae, 0xda, 0x1b, 0x59, 0xdd, 0x8d, 0xad, + 0x1e, 0x46, 0x57, 0x13, 0xe3, 0xab, 0x9d, 0x11, 0x4e, 0x26, 0xd4, 0x67, 0x3c, 0x74, 0xbb, 0xfa, + 0xe9, 0x85, 0x99, 0x32, 0x9d, 0xce, 0xef, 0x2d, 0x2e, 0x84, 0x0d, 0x34, 0xd3, 0x3a, 0x9b, 0x6b, + 0x23, 0xcc, 0xb6, 0xee, 0xe6, 0xdb, 0x18, 0x33, 0x6e, 0x8c, 0x39, 0x37, 0xc5, 0xac, 0xeb, 0x65, + 0xde, 0x35, 0x33, 0xf3, 0xc9, 0x26, 0x6a, 0x13, 0x77, 0xba, 0x5e, 0xeb, 0x45, 0x83, 0x9e, 0xa5, + 0xa5, 0x91, 0xdd, 0xd1, 0xa3, 0x51, 0xcc, 0xda, 0xa9, 0xe9, 0x15, 0xad, 0xba, 0xf8, 0xa5, 0xa7, + 0x9d, 0xd8, 0xd1, 0x35, 0x9a, 0xd5, 0x10, 0x84, 0xb7, 0x34, 0x4d, 0x4d, 0xa3, 0x5d, 0x97, 0xe6, + 0xa9, 0x71, 0x44, 0xa0, 0xe6, 0x36, 0x64, 0xfe, 0xe8, 0xd8, 0xdf, 0x71, 0x74, 0x04, 0x1f, 0x1d, + 0x8d, 0x1a, 0xe3, 0xe4, 0xe2, 0xf8, 0xbc, 0xc1, 0xac, 0x5e, 0xf3, 0xd5, 0x7e, 0x83, 0xf5, 0xd1, + 0x5c, 0xfd, 0x16, 0x78, 0x10, 0xe9, 0xcb, 0x8c, 0x8d, 0x27, 0x07, 0x5a, 0xec, 0x35, 0xd3, 0x02, 0x2d, 0x96, 0xc5, 0x41, 0x04, 0x2d, 0x96, 0xe1, 0x40, 0x80, 0x16, 0x13, 0x3c, 0x51, 0xd0, 0x62, - 0xe6, 0xbb, 0x34, 0x06, 0xd0, 0x62, 0xba, 0xa4, 0x67, 0xaf, 0x32, 0xb1, 0x47, 0x20, 0xc4, 0x36, - 0xfc, 0x02, 0x21, 0xb6, 0x55, 0x5e, 0x3d, 0x08, 0xb1, 0xbc, 0x5a, 0x8f, 0xd9, 0xa3, 0x03, 0x42, - 0x4c, 0xf8, 0xd1, 0x29, 0x1f, 0x81, 0x0e, 0xcb, 0x29, 0x10, 0xd4, 0x77, 0x56, 0xa0, 0xc3, 0x74, - 0x9e, 0x89, 0x2e, 0xe1, 0x73, 0x9a, 0xe4, 0xb3, 0x2f, 0xcc, 0x4b, 0xf7, 0xfc, 0xf6, 0xf9, 0x64, - 0xe7, 0x83, 0xb9, 0x1c, 0x31, 0x95, 0x09, 0xf0, 0xfa, 0x49, 0xbc, 0x0e, 0xcd, 0x7d, 0x74, 0xa2, - 0x9e, 0x35, 0xa4, 0x9c, 0x75, 0xeb, 0x37, 0x84, 0x04, 0x89, 0x0d, 0xc4, 0x08, 0x09, 0x12, 0x9b, - 0x08, 0x3a, 0x12, 0x24, 0xb2, 0x82, 0x06, 0x24, 0x48, 0x98, 0x83, 0xf0, 0xb4, 0xa3, 0x86, 0x13, - 0xad, 0xe5, 0x31, 0xfb, 0x31, 0x64, 0x8f, 0x3a, 0xe9, 0xac, 0x49, 0x96, 0xe0, 0x89, 0x46, 0x73, - 0x6a, 0x8c, 0x41, 0xf0, 0xfe, 0xfe, 0x08, 0x54, 0x1e, 0x0c, 0x41, 0x03, 0x80, 0xa5, 0x06, 0x33, - 0x50, 0x9d, 0x80, 0xfc, 0x07, 0x7b, 0xd6, 0x03, 0x44, 0x16, 0xea, 0x6e, 0xc4, 0xab, 0x9c, 0x6b, - 0x92, 0x0f, 0x7d, 0xe9, 0xfa, 0x35, 0x8f, 0x0d, 0x2d, 0xd4, 0x10, 0xf2, 0xfb, 0x7d, 0xcf, 0xd3, - 0xa3, 0xb9, 0xa8, 0x7e, 0x93, 0xba, 0x0e, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xf3, 0x78, 0x4a, 0x5b, - 0x7d, 0x9c, 0x34, 0xe3, 0x42, 0x8c, 0xe7, 0x40, 0x74, 0x28, 0x7d, 0x12, 0xf1, 0xb0, 0xdf, 0xe1, - 0xfe, 0x18, 0x71, 0x5c, 0x8d, 0x16, 0xe5, 0x62, 0xbc, 0x26, 0xed, 0xc6, 0x78, 0x25, 0xda, 0xd7, - 0xf1, 0x4a, 0xb4, 0xab, 0x21, 0xb3, 0xdb, 0xf5, 0xc8, 0x79, 0x68, 0xd7, 0x23, 0x7b, 0x08, 0x9c, - 0x86, 0x7f, 0xb6, 0x6f, 0x47, 0xef, 0x3c, 0xfc, 0x38, 0xfc, 0xde, 0xf5, 0xe3, 0xed, 0xf8, 0xfd, - 0x50, 0xf1, 0x33, 0xff, 0xda, 0x01, 0x15, 0x3f, 0x53, 0x6a, 0x83, 0x02, 0x9a, 0x01, 0x9b, 0x7f, - 0x0a, 0xd0, 0x0c, 0xf8, 0xd7, 0x52, 0xaf, 0xa2, 0xa3, 0xa8, 0x58, 0x93, 0x96, 0xdb, 0xa6, 0xc6, - 0x6f, 0x72, 0x74, 0x1c, 0x27, 0x9e, 0x9e, 0xe7, 0xfa, 0x5f, 0xad, 0x98, 0x04, 0xb0, 0x5c, 0x47, - 0x92, 0xec, 0xa9, 0xf1, 0xed, 0x94, 0xfa, 0x70, 0x4a, 0x7d, 0x35, 0x35, 0x3e, 0x99, 0x2c, 0x41, - 0x56, 0x64, 0x4f, 0x74, 0xb4, 0x23, 0x05, 0x99, 0x6d, 0xd7, 0xb3, 0xdb, 0x0c, 0x39, 0x86, 0x82, - 0x5e, 0x6d, 0xd3, 0x8e, 0x40, 0x7c, 0x8e, 0x64, 0x9f, 0x1f, 0xdd, 0xce, 0x0d, 0xad, 0x10, 0xd2, - 0x89, 0x06, 0xa1, 0x58, 0x48, 0xaa, 0xfe, 0x28, 0xb5, 0xaa, 0xa3, 0xa4, 0x6a, 0x8d, 0xd2, 0x82, - 0x0c, 0x64, 0x06, 0x0f, 0x28, 0x09, 0x0a, 0x90, 0x7d, 0xd9, 0xaf, 0xec, 0x12, 0x5f, 0xd9, 0xe5, - 0xbc, 0xaa, 0x4b, 0x77, 0xb3, 0xcd, 0xa5, 0xac, 0xea, 0x80, 0x71, 0x89, 0x78, 0x79, 0xd2, 0x3f, - 0x5d, 0x98, 0x5e, 0x96, 0xe0, 0xcb, 0x8d, 0x0f, 0x93, 0x1e, 0xff, 0xa5, 0x22, 0xbe, 0x4b, 0x69, - 0xfc, 0x96, 0xaa, 0xf8, 0x2c, 0xe5, 0xf1, 0x57, 0xca, 0xe3, 0xab, 0x54, 0xc7, 0x4f, 0xe5, 0x8b, - 0x1a, 0x93, 0x1e, 0xdf, 0x94, 0x9c, 0x5a, 0xd7, 0x61, 0x3e, 0x77, 0xf9, 0xb3, 0xdc, 0x18, 0xa6, - 0x04, 0x1b, 0x4b, 0xcc, 0x29, 0x2a, 0x5c, 0x8c, 0x5f, 0xf5, 0xbd, 0x1d, 0x29, 0xd0, 0x18, 0x93, - 0x05, 0xbf, 0xbe, 0x6d, 0x7c, 0x6c, 0xd7, 0x6f, 0xab, 0xed, 0xe6, 0x5f, 0x8d, 0x9a, 0x6c, 0xad, - 0x11, 0x27, 0x73, 0x45, 0x4a, 0xb2, 0x71, 0x15, 0x37, 0x76, 0xbb, 0xb9, 0xfe, 0xdc, 0xac, 0xdd, - 0x0c, 0x17, 0xbe, 0xb0, 0x0d, 0xad, 0xf5, 0x14, 0xaf, 0x76, 0xf5, 0xb6, 0x5d, 0xfb, 0x67, 0xb3, - 0x76, 0x73, 0x55, 0xad, 0x63, 0xc9, 0xe5, 0xe9, 0x95, 0x3f, 0xcb, 0xed, 0xfa, 0xc5, 0xd5, 0x1f, - 0xed, 0xdb, 0x0f, 0xd7, 0x8d, 0x5a, 0xfb, 0xba, 0x51, 0xfd, 0xff, 0x3e, 0xd7, 0xb0, 0xfe, 0x72, - 0xd6, 0xff, 0xea, 0xf6, 0xb6, 0xda, 0x86, 0xdc, 0xab, 0x92, 0xfb, 0xea, 0x4d, 0xad, 0x0a, 0xb9, - 0x57, 0xb8, 0xfe, 0xb7, 0x58, 0x7d, 0x15, 0x5a, 0xa7, 0xd6, 0xfc, 0xc7, 0xf5, 0xcd, 0x1f, 0x58, - 0x6e, 0x39, 0xcb, 0x7d, 0xfb, 0xf9, 0xf2, 0xb2, 0x7a, 0xf3, 0x57, 0xbb, 0x7a, 0xfb, 0x1e, 0x58, - 0x52, 0xf2, 0x9a, 0x5f, 0x34, 0xda, 0x6a, 0xa5, 0x5d, 0xea, 0x88, 0xad, 0xbc, 0x31, 0x29, 0x20, + 0xe6, 0xbb, 0x34, 0x06, 0xd0, 0x62, 0xba, 0xa4, 0x67, 0xaf, 0x33, 0xb1, 0x55, 0x10, 0x62, 0x1b, + 0x7e, 0x81, 0x10, 0xdb, 0x2a, 0xaf, 0x1e, 0x84, 0x58, 0x5e, 0xad, 0xc7, 0xfc, 0xd1, 0x01, 0x21, + 0x26, 0xfc, 0xe8, 0x94, 0xab, 0xa0, 0xc3, 0x72, 0x0a, 0x04, 0xf5, 0x9d, 0x15, 0xe8, 0x30, 0x9d, + 0x67, 0xa2, 0x4b, 0xf8, 0x9c, 0x26, 0xf9, 0xec, 0x4b, 0xf3, 0xd2, 0x3d, 0xbf, 0x7d, 0x31, 0xd9, + 0xf9, 0x60, 0x21, 0x47, 0x4c, 0x65, 0x02, 0xbc, 0x7e, 0x12, 0xaf, 0x43, 0x73, 0x1f, 0x9d, 0xa8, + 0x67, 0x0d, 0x29, 0x67, 0xdd, 0xfa, 0x0d, 0x21, 0x41, 0x62, 0x03, 0x31, 0x42, 0x82, 0xc4, 0x26, + 0x82, 0x8e, 0x04, 0x89, 0xac, 0xa0, 0x01, 0x09, 0x12, 0xe6, 0x20, 0x3c, 0xed, 0xa8, 0xe1, 0x44, + 0x6b, 0x79, 0xcc, 0xee, 0x85, 0xac, 0xa7, 0x93, 0xce, 0x9a, 0x65, 0x09, 0x1e, 0x6b, 0x34, 0xa7, + 0xe6, 0x14, 0x04, 0xef, 0xef, 0x4f, 0x40, 0xe5, 0xc1, 0x18, 0x34, 0x00, 0x58, 0x6a, 0x30, 0x03, + 0xd5, 0x09, 0xc8, 0x7f, 0xb2, 0x47, 0x3d, 0x40, 0x64, 0xa1, 0xe1, 0x46, 0xbc, 0xc6, 0xb9, 0x26, + 0xf9, 0xd0, 0x17, 0xae, 0x5f, 0xf7, 0xd8, 0xd8, 0x42, 0x8d, 0x21, 0xbf, 0x3f, 0xf4, 0x3c, 0x3d, + 0x9a, 0x8b, 0xea, 0x37, 0xa9, 0xab, 0xd0, 0x61, 0x21, 0x73, 0xde, 0x3f, 0x4e, 0xa7, 0xb4, 0xd5, + 0xc7, 0x49, 0x33, 0x2e, 0xc4, 0x78, 0x0e, 0x44, 0x87, 0xd2, 0x27, 0x11, 0x0f, 0x87, 0x5d, 0xee, + 0x4f, 0x11, 0xc7, 0xe5, 0x64, 0x51, 0xce, 0xa7, 0x6b, 0xd2, 0x69, 0x4e, 0x57, 0xa2, 0x73, 0x15, + 0xaf, 0x44, 0xa7, 0x16, 0x32, 0xbb, 0xd3, 0x88, 0x9c, 0xfb, 0x4e, 0x23, 0xb2, 0xc7, 0xc0, 0x69, + 0xfc, 0x67, 0xe7, 0x66, 0xf2, 0xce, 0xe3, 0x6f, 0xc7, 0x3f, 0xbb, 0xea, 0xdd, 0x4c, 0xdf, 0x0f, + 0x15, 0x3f, 0xf3, 0xaf, 0x1d, 0x50, 0xf1, 0x33, 0xa5, 0x36, 0x28, 0xa0, 0x19, 0xb0, 0xf9, 0xa7, + 0x00, 0xcd, 0x80, 0x7f, 0x2d, 0xf5, 0x2a, 0x3a, 0x8a, 0x8a, 0x35, 0x69, 0xb9, 0x6d, 0x6a, 0xfc, + 0x26, 0x47, 0xc7, 0x71, 0xe6, 0xe9, 0x79, 0xae, 0xff, 0xd5, 0x8a, 0x49, 0x00, 0xcb, 0x75, 0x24, + 0xc9, 0x9e, 0x1a, 0xdf, 0x4e, 0xa9, 0x0f, 0xa7, 0xd4, 0x57, 0x53, 0xe3, 0x93, 0xc9, 0x12, 0x64, + 0x45, 0xf6, 0x44, 0x47, 0x3b, 0x52, 0x90, 0xd9, 0x76, 0x3d, 0xbb, 0xcd, 0x90, 0x63, 0x28, 0xe8, + 0xd5, 0x36, 0xed, 0x08, 0xc4, 0xe7, 0x48, 0xf6, 0xf9, 0xd1, 0xed, 0xdc, 0xd0, 0x0a, 0x21, 0x9d, + 0x68, 0x10, 0x8a, 0x85, 0xa4, 0xea, 0x8f, 0x52, 0xab, 0x3a, 0x4a, 0xaa, 0xd6, 0x28, 0x2d, 0xc8, + 0x40, 0x66, 0xf0, 0x80, 0x92, 0xa0, 0x00, 0xd9, 0x97, 0xfd, 0xca, 0x2e, 0xf1, 0x95, 0x5d, 0xce, + 0xab, 0xba, 0x74, 0x37, 0xdb, 0x5c, 0xca, 0xaa, 0x0e, 0x18, 0x97, 0x88, 0x97, 0x27, 0xfd, 0xcf, + 0x0b, 0xd3, 0xcb, 0x12, 0x7c, 0xb9, 0xf1, 0x61, 0xd2, 0xe3, 0xbf, 0x54, 0xc4, 0x77, 0x29, 0x8d, + 0xdf, 0x52, 0x15, 0x9f, 0xa5, 0x3c, 0xfe, 0x4a, 0x79, 0x7c, 0x95, 0xea, 0xf8, 0xa9, 0x7c, 0x51, + 0x63, 0xd2, 0xe3, 0x9b, 0x92, 0x53, 0xeb, 0x3a, 0xcc, 0xe7, 0x2e, 0x7f, 0x94, 0x1b, 0xc3, 0x94, + 0x60, 0x63, 0x89, 0x39, 0x45, 0x85, 0xf3, 0xe9, 0xab, 0xbe, 0xb7, 0x23, 0x05, 0x1a, 0x63, 0xb6, + 0xe0, 0x57, 0x37, 0xcd, 0x8f, 0x9d, 0xc6, 0x4d, 0xad, 0xd3, 0xfa, 0xab, 0x59, 0x97, 0xad, 0x35, + 0xe2, 0x64, 0xae, 0x48, 0x49, 0x36, 0xae, 0xe2, 0xc6, 0x6e, 0xb5, 0x9b, 0x4e, 0xfd, 0x7f, 0x5b, + 0xf5, 0xeb, 0xcb, 0x5a, 0x63, 0xbc, 0xfa, 0x85, 0x6d, 0xe8, 0xaf, 0xa7, 0x78, 0xc9, 0x2f, 0x6f, + 0x6e, 0x6a, 0x1d, 0xac, 0xbb, 0xf4, 0x75, 0xbf, 0xf9, 0x74, 0x71, 0x51, 0xbb, 0xfe, 0xab, 0x53, + 0xbb, 0x79, 0x7f, 0x8d, 0x35, 0x97, 0xa7, 0xd5, 0x3f, 0x97, 0x3b, 0xb5, 0xeb, 0x7a, 0xad, 0x73, + 0xf3, 0xe1, 0xaa, 0x59, 0xef, 0x5c, 0x35, 0x6b, 0xff, 0xdf, 0xa7, 0x3a, 0xd6, 0x5f, 0xea, 0xfa, + 0x37, 0xce, 0x2f, 0xff, 0xc4, 0xfa, 0x2b, 0x58, 0xff, 0xeb, 0xab, 0x4f, 0xad, 0x3a, 0xb4, 0x8d, + 0x2c, 0xcb, 0x5a, 0x6f, 0xfd, 0xe3, 0xea, 0xfa, 0x4f, 0x2c, 0xb7, 0x5c, 0xe5, 0x7e, 0x03, 0xd5, + 0xa2, 0x10, 0xce, 0x9c, 0x37, 0x3b, 0x6a, 0xe5, 0x5e, 0xea, 0x88, 0xed, 0xbc, 0x31, 0x29, 0x20, 0xf9, 0x7f, 0x29, 0xed, 0x5b, 0x7c, 0x27, 0x2e, 0xa1, 0xca, 0x80, 0x99, 0x97, 0xe2, 0x52, 0xee, 0x63, 0x64, 0xde, 0xc3, 0x48, 0xba, 0x7f, 0xc1, 0x95, 0xb8, 0xb0, 0x41, 0x71, 0x25, 0x4e, 0x3d, - 0x30, 0xae, 0xc4, 0x53, 0x2c, 0x9a, 0xb4, 0xfb, 0x12, 0x05, 0x79, 0xde, 0x32, 0xf3, 0xb7, 0x97, - 0xe4, 0x65, 0x0f, 0x57, 0xd6, 0x54, 0x5b, 0xfc, 0xc6, 0x20, 0x59, 0x4e, 0x12, 0x9f, 0xe9, 0xcc, + 0x30, 0xae, 0xc4, 0x53, 0x2c, 0x9a, 0xb4, 0xfb, 0x12, 0x05, 0x79, 0xde, 0x32, 0xf3, 0xb7, 0x57, + 0xe4, 0x65, 0x8f, 0x57, 0xd6, 0x54, 0x5b, 0xfc, 0xc6, 0x20, 0x59, 0x4e, 0x12, 0x9f, 0xe9, 0xcc, 0xae, 0x9c, 0xa8, 0x77, 0xa9, 0x51, 0xee, 0x52, 0xa3, 0xda, 0xe5, 0x44, 0xb1, 0x53, 0xc9, 0x97, 0x24, 0x8f, 0x42, 0x23, 0x4f, 0xa2, 0x40, 0x1a, 0xa0, 0x9a, 0x29, 0xf8, 0x9c, 0x46, 0xa5, 0x8a, 0x57, 0x78, 0x62, 0x9f, 0x28, 0x58, 0xb4, 0xa9, 0x45, 0x5a, 0xbd, 0x28, 0x8b, 0x15, 0x13, 0x71, 0x9b, 0x29, 0x70, 0x23, 0x89, 0x42, 0xbd, 0x49, 0x43, 0xbb, 0x89, 0x42, 0xb9, 0xc9, 0xfc, 0x54, 0x4a, 0xbf, 0x54, 0x8a, 0x1f, 0x4a, 0xed, 0x77, 0x4a, 0xf3, 0x33, 0xa5, 0xf9, 0x95, 0xb2, 0xfc, - 0x48, 0xbd, 0x0d, 0x04, 0x55, 0xa8, 0xf4, 0x38, 0x4c, 0xee, 0xd1, 0x65, 0x74, 0x58, 0x7a, 0x2e, - 0x24, 0x2f, 0x1e, 0x8b, 0xca, 0xf5, 0x20, 0xa5, 0xe1, 0xc8, 0xe9, 0x37, 0x19, 0xb4, 0x9b, 0x54, - 0xba, 0x4d, 0x16, 0xcd, 0x26, 0x9d, 0x5e, 0x93, 0x4e, 0xab, 0xc9, 0xa6, 0xd3, 0xcc, 0xa2, 0x1c, - 0xc8, 0x69, 0xb3, 0xd9, 0x06, 0xd2, 0x43, 0x80, 0x6b, 0x91, 0x6b, 0xb3, 0x19, 0x80, 0x76, 0x4a, - 0x38, 0xc6, 0x78, 0xf5, 0x68, 0x43, 0x67, 0x25, 0x52, 0x9a, 0x7d, 0xd7, 0xe7, 0x87, 0x65, 0x89, - 0x8c, 0xa6, 0x0c, 0x42, 0x53, 0x6e, 0xbb, 0x21, 0xb9, 0xb5, 0x24, 0x14, 0xa4, 0xb9, 0x28, 0xa9, - 0xa7, 0xad, 0xaa, 0x5d, 0x8f, 0xca, 0x0e, 0x22, 0x03, 0xb9, 0x95, 0x41, 0xb6, 0x4e, 0x94, 0x2a, - 0xe5, 0xd3, 0xca, 0xe9, 0xf1, 0x49, 0xf9, 0xf4, 0x68, 0x8b, 0x64, 0x2a, 0x27, 0x91, 0x3d, 0x2d, - 0x93, 0xef, 0x2a, 0x25, 0x1a, 0x74, 0x27, 0xe0, 0x9c, 0x39, 0xd6, 0xbf, 0xfb, 0xb6, 0x23, 0xf3, - 0x9e, 0xf2, 0x9d, 0x9c, 0x7b, 0x4a, 0xce, 0x42, 0x5f, 0x9a, 0x61, 0x2f, 0xec, 0xee, 0xde, 0x15, - 0xad, 0xd3, 0xd6, 0xcf, 0xbb, 0x92, 0x75, 0xda, 0x1a, 0x7d, 0x2c, 0xc5, 0x7f, 0x8c, 0x3e, 0x97, - 0xef, 0x8a, 0x56, 0x65, 0xf2, 0xf9, 0xe8, 0xae, 0x68, 0x1d, 0xb5, 0xf6, 0xee, 0xef, 0xf7, 0xf7, - 0x7e, 0x1c, 0x0e, 0x36, 0xff, 0xc5, 0x82, 0xe9, 0x27, 0xe8, 0x8d, 0x59, 0xf3, 0xc6, 0xb5, 0x89, - 0xd8, 0xb3, 0xa2, 0xea, 0xda, 0x84, 0x20, 0x70, 0x50, 0xe0, 0x95, 0xc9, 0x1b, 0x8d, 0x44, 0x81, - 0x4a, 0x04, 0x54, 0x6d, 0x7d, 0x41, 0xe8, 0x7d, 0x54, 0xaa, 0x9b, 0x5d, 0x31, 0x72, 0x97, 0x5d, - 0x4a, 0x04, 0x48, 0x48, 0xa1, 0xdb, 0xf3, 0xc4, 0xf5, 0x95, 0x4a, 0xe0, 0x48, 0xfc, 0x54, 0x41, - 0xf2, 0x2b, 0xf6, 0x02, 0x4e, 0x38, 0x43, 0x4d, 0xc1, 0x48, 0x93, 0x32, 0xd0, 0x54, 0x8c, 0x33, - 0x39, 0xc3, 0x4c, 0xce, 0x28, 0x53, 0x33, 0xc8, 0x7a, 0xd9, 0x05, 0xd1, 0x17, 0x66, 0x85, 0xce, - 0xe4, 0x64, 0x11, 0x5d, 0xef, 0x8f, 0x9f, 0x8f, 0xfb, 0x7d, 0xdc, 0xef, 0xab, 0x54, 0x43, 0xd2, - 0xd4, 0x91, 0x2c, 0xb5, 0x64, 0x86, 0x27, 0x43, 0x76, 0xbf, 0xcf, 0x43, 0xfb, 0xf1, 0xd1, 0xed, - 0x58, 0xcc, 0x7f, 0x72, 0x7d, 0xc6, 0x42, 0xd7, 0x7f, 0xb2, 0x98, 0x6f, 0x3f, 0x78, 0xcc, 0xa1, - 0xbf, 0xf0, 0xff, 0xd5, 0xe0, 0x88, 0x00, 0x90, 0xad, 0x00, 0xa5, 0x2a, 0x42, 0x59, 0x0a, 0x51, - 0xba, 0x62, 0x94, 0xae, 0x20, 0x65, 0x2b, 0x4a, 0x5a, 0xf2, 0xcb, 0xfc, 0x08, 0x80, 0x87, 0x20, - 0xf0, 0x98, 0xed, 0xcb, 0xb8, 0xf4, 0x2f, 0x81, 0x25, 0x04, 0x4b, 0xb8, 0x8c, 0x2a, 0xea, 0xf6, - 0xbc, 0xe8, 0x60, 0xec, 0x31, 0x20, 0xb2, 0x3a, 0xeb, 0x89, 0x36, 0x32, 0xb2, 0xba, 0x0c, 0xcf, - 0x0b, 0x9e, 0x17, 0x3c, 0x2f, 0x78, 0x5e, 0xf0, 0xbc, 0xe0, 0x79, 0xc1, 0xf3, 0x82, 0xe7, 0x05, - 0xcf, 0x0b, 0x9e, 0x17, 0x3c, 0x2f, 0x29, 0x9e, 0x17, 0xe2, 0x33, 0x54, 0x8b, 0x80, 0xaa, 0xad, - 0x57, 0x1c, 0x9f, 0x71, 0x39, 0x9c, 0x42, 0x8e, 0xe2, 0x33, 0xc4, 0x3a, 0xf6, 0x24, 0x0e, 0x3d, - 0x59, 0x84, 0x46, 0x19, 0x11, 0x1a, 0x88, 0xd0, 0x90, 0x8a, 0x33, 0x73, 0x1e, 0xa1, 0x41, 0x98, - 0xca, 0x4c, 0x9f, 0xc2, 0x4c, 0xe4, 0x3e, 0x23, 0x52, 0x03, 0x7c, 0x21, 0xf8, 0x42, 0x23, 0xdc, - 0x5d, 0xd9, 0x29, 0xc6, 0x94, 0xa9, 0xc5, 0xb4, 0x29, 0xc5, 0x12, 0xa8, 0x06, 0xf2, 0x14, 0x62, - 0x09, 0xa9, 0xc3, 0x92, 0x52, 0x86, 0x25, 0xe4, 0x81, 0xc9, 0x4c, 0x11, 0x96, 0xdd, 0x4a, 0x51, - 0x72, 0x4a, 0xb0, 0x8a, 0xb4, 0x4d, 0x09, 0x29, 0xc0, 0x52, 0x53, 0x7f, 0x55, 0x89, 0x88, 0xec, - 0x54, 0x5f, 0x25, 0xb2, 0x82, 0x84, 0x3e, 0xfa, 0x93, 0x23, 0xc1, 0x80, 0xca, 0x49, 0xd9, 0x95, - 0x91, 0xaa, 0x2b, 0x2d, 0x45, 0x37, 0x27, 0xa9, 0xb9, 0xa6, 0xa4, 0xb6, 0xb6, 0xc0, 0xdf, 0xaf, - 0xe3, 0xf3, 0xe5, 0x87, 0xbf, 0x17, 0x78, 0x6b, 0xa3, 0x07, 0x7b, 0xfe, 0xcd, 0x0d, 0x79, 0xdf, - 0xf6, 0x2c, 0xcf, 0xf5, 0xbf, 0x12, 0xa4, 0x39, 0xce, 0x3e, 0x1e, 0xf9, 0x8e, 0x5a, 0xd2, 0x59, - 0x60, 0xd3, 0x55, 0xd1, 0x55, 0x39, 0x67, 0xd3, 0xa7, 0x4f, 0x3f, 0x1d, 0x9f, 0x3e, 0x33, 0x0a, - 0x72, 0x1f, 0xc1, 0xa8, 0xab, 0x54, 0x49, 0xd2, 0x54, 0x93, 0x2c, 0x15, 0x45, 0x03, 0x9e, 0x8d, - 0x89, 0xc0, 0x25, 0x4a, 0xd9, 0x5e, 0x38, 0x54, 0x24, 0xa9, 0xdb, 0xc4, 0x6a, 0x8c, 0x5c, 0x9d, - 0xc9, 0x50, 0x6b, 0x52, 0xd5, 0x9b, 0x2c, 0x35, 0x27, 0x5d, 0xdd, 0x49, 0x57, 0x7b, 0xb2, 0xd5, - 0x1f, 0x2d, 0xfb, 0x47, 0x15, 0x57, 0x4b, 0xa5, 0x16, 0x93, 0x01, 0x42, 0xd6, 0x0d, 0x38, 0xb3, - 0xc2, 0xa0, 0xcf, 0x59, 0x68, 0xb9, 0x8e, 0xbc, 0x8e, 0x8c, 0x0b, 0x23, 0xa3, 0x3b, 0xa3, 0x6e, - 0x2a, 0x55, 0x89, 0x6a, 0x95, 0xad, 0x62, 0x95, 0xa9, 0x5a, 0x65, 0x2a, 0x57, 0x95, 0xea, 0xa5, - 0x55, 0xc1, 0xc4, 0xaa, 0x38, 0x59, 0x34, 0xf9, 0xdd, 0x19, 0xdd, 0xde, 0xb7, 0x8a, 0x65, 0x3b, - 0x4e, 0xc8, 0xa2, 0xc8, 0xf2, 0x03, 0xeb, 0xff, 0x02, 0x9f, 0xa1, 0x04, 0x6a, 0xc6, 0x01, 0x65, - 0xde, 0xb3, 0xec, 0xfe, 0xf7, 0xdd, 0xfd, 0x7d, 0xef, 0xc7, 0xd5, 0x60, 0xf8, 0xff, 0xfa, 0xa0, - 0xf5, 0xb7, 0xbd, 0xdf, 0x65, 0xe9, 0x96, 0xe1, 0x44, 0xee, 0xef, 0xf7, 0x5b, 0xbf, 0xa1, 0x0c, - 0x6b, 0x3e, 0x10, 0x61, 0x8e, 0x1b, 0x1f, 0xce, 0xdc, 0x35, 0xcc, 0xfc, 0x8d, 0xa4, 0xcc, 0x01, - 0xdd, 0xfe, 0x13, 0xec, 0xbd, 0x3c, 0xa0, 0x2e, 0x1b, 0xa0, 0x23, 0x67, 0x18, 0xdc, 0x06, 0xb8, - 0x8d, 0x2d, 0xb4, 0x64, 0xf2, 0x72, 0x86, 0xe9, 0xdb, 0x9b, 0xcb, 0x68, 0x6b, 0x3e, 0xdd, 0xce, - 0x7c, 0x64, 0x0f, 0x0f, 0x16, 0x54, 0xf4, 0x16, 0x1b, 0x48, 0x9a, 0xfa, 0x40, 0x0b, 0xb2, 0x44, - 0x51, 0x27, 0x68, 0x41, 0x8a, 0xa8, 0x4d, 0x61, 0x19, 0xa6, 0x10, 0xa6, 0x10, 0xa6, 0x50, 0x1b, - 0x53, 0x48, 0x4e, 0xf3, 0xdb, 0xce, 0xff, 0xda, 0x1d, 0xe6, 0x77, 0x9e, 0x2d, 0x5a, 0x35, 0xb9, - 0x70, 0x4a, 0xe7, 0x07, 0x06, 0xc9, 0xaf, 0x9b, 0x42, 0x55, 0xa2, 0x58, 0x65, 0x2b, 0x58, 0x65, - 0x8a, 0x56, 0x99, 0xc2, 0x55, 0xa5, 0x78, 0xe9, 0xf9, 0xba, 0x9d, 0x7c, 0x92, 0xfc, 0x71, 0x9a, - 0x27, 0x7f, 0xa6, 0xf5, 0x53, 0x16, 0x90, 0xa6, 0x84, 0x2c, 0xa2, 0xc2, 0xc5, 0xf8, 0xd5, 0xde, - 0xdb, 0x91, 0xc4, 0x93, 0x3e, 0x59, 0xd8, 0xeb, 0xdb, 0xc6, 0xc7, 0xf6, 0x55, 0xed, 0xe2, 0xd3, - 0xdf, 0xdf, 0x5f, 0xdf, 0xb4, 0x6f, 0x9b, 0xd5, 0x66, 0xad, 0x20, 0x33, 0x67, 0x2b, 0x92, 0x76, - 0xa7, 0xb1, 0x23, 0xb5, 0x67, 0xeb, 0xcc, 0x22, 0x37, 0xff, 0x71, 0xdd, 0xfe, 0x47, 0xf5, 0xaf, - 0x42, 0x1e, 0x3b, 0x8a, 0x2a, 0x5a, 0xd2, 0xfa, 0x75, 0xf5, 0xfc, 0xe2, 0xea, 0x13, 0x96, 0x54, - 0xdc, 0x92, 0xd6, 0xfe, 0xf9, 0xe1, 0xef, 0xd5, 0xab, 0x4f, 0x35, 0xac, 0xa9, 0xb8, 0x35, 0xfd, - 0xf8, 0xb9, 0x5e, 0xc7, 0x7a, 0x8a, 0x5b, 0xcf, 0xf3, 0xeb, 0x7f, 0x5c, 0x61, 0x3d, 0xc5, 0xad, - 0xe7, 0xc5, 0xd5, 0x45, 0x13, 0xeb, 0x29, 0x52, 0x87, 0xde, 0x36, 0xab, 0x37, 0x58, 0x52, 0x81, - 0x4b, 0x5a, 0x6d, 0x36, 0x6b, 0x97, 0x0d, 0x99, 0x4b, 0x2a, 0x65, 0xa4, 0x16, 0xea, 0x04, 0xc8, - 0x17, 0xe9, 0xc2, 0x83, 0xdd, 0xf9, 0xda, 0xef, 0x59, 0x0e, 0x8b, 0xdc, 0x27, 0xdf, 0xe6, 0xcc, - 0x19, 0xdf, 0x0e, 0xc9, 0xa3, 0xfc, 0x56, 0xce, 0x00, 0xdc, 0xdf, 0x46, 0x03, 0x81, 0xfb, 0x13, - 0x2d, 0x20, 0xe0, 0xfe, 0xc0, 0xfd, 0xbd, 0xbe, 0x68, 0xf2, 0xb9, 0x3f, 0x39, 0x75, 0x52, 0xe6, - 0x15, 0x25, 0xe2, 0x7a, 0xf5, 0xad, 0x9f, 0x22, 0x07, 0x43, 0x99, 0x89, 0x70, 0x1c, 0x66, 0x3b, - 0x16, 0x77, 0xbb, 0x12, 0x6f, 0x31, 0x5f, 0x86, 0x04, 0x86, 0x01, 0x86, 0x01, 0x86, 0x01, 0x86, - 0x01, 0x86, 0x99, 0x3b, 0x75, 0x43, 0xed, 0xc8, 0xdd, 0xce, 0xd7, 0xe8, 0xb8, 0x22, 0x11, 0xc3, - 0xc8, 0x80, 0x30, 0x9f, 0xfd, 0x51, 0xdd, 0xc3, 0x82, 0x6f, 0xfb, 0x41, 0xc4, 0x3a, 0x81, 0xef, - 0x44, 0x32, 0x5e, 0x51, 0x4e, 0xe5, 0x56, 0xf9, 0xdc, 0x97, 0xd4, 0x4a, 0xae, 0x92, 0x2d, 0xeb, - 0xc2, 0xb0, 0x92, 0x2b, 0xbb, 0x26, 0xe3, 0x2a, 0xa8, 0xda, 0x29, 0x49, 0xb7, 0xcd, 0x8a, 0x92, - 0xc4, 0x8a, 0xaf, 0xba, 0x88, 0x52, 0xe9, 0x5d, 0xa5, 0x72, 0x7c, 0x52, 0xa9, 0x14, 0x4f, 0x0e, - 0x4f, 0x8a, 0xa7, 0x47, 0x47, 0xa5, 0xe3, 0xd2, 0xd1, 0x16, 0x49, 0xd7, 0x9b, 0x7c, 0x8c, 0x02, - 0xcf, 0x6e, 0x99, 0x67, 0xa7, 0x8c, 0xb4, 0x06, 0x5b, 0x0d, 0x4f, 0x0f, 0x9e, 0x1e, 0x3c, 0x3d, - 0x78, 0x7a, 0xaf, 0xab, 0x4a, 0xb0, 0xd5, 0xc2, 0x06, 0x04, 0x5b, 0x9d, 0x77, 0x4c, 0xe3, 0xd9, - 0x11, 0xb7, 0x58, 0xc4, 0xed, 0x07, 0xcf, 0x8d, 0xbe, 0x30, 0xd9, 0xcc, 0xf5, 0xf2, 0xe1, 0x81, - 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0x80, 0x6d, 0xe6, 0x4e, 0x1d, 0x58, 0x6c, 0xd1, 0xe3, - 0x82, 0xc5, 0x36, 0xcf, 0xb2, 0x2e, 0x0c, 0x0b, 0x16, 0x9b, 0x56, 0x94, 0xc0, 0x62, 0x83, 0xc5, - 0x36, 0x72, 0x14, 0x78, 0x7c, 0x8b, 0x62, 0x15, 0xf4, 0x86, 0x42, 0x65, 0x7b, 0x56, 0xc7, 0xee, - 0xd9, 0x0f, 0xae, 0xe7, 0x72, 0x97, 0x45, 0xf2, 0x3c, 0xbe, 0xe5, 0xc3, 0xc3, 0xe3, 0x83, 0xc7, - 0x07, 0x8f, 0x0f, 0x1e, 0x1f, 0x3c, 0xbe, 0xb9, 0x53, 0xf7, 0x85, 0x7d, 0xb7, 0x22, 0x1e, 0xba, - 0xfe, 0x13, 0xc8, 0xec, 0x8c, 0x03, 0xc6, 0x94, 0xb4, 0x6d, 0x3d, 0x56, 0xad, 0x8f, 0xad, 0x1f, - 0xe5, 0xc1, 0xee, 0xd9, 0xec, 0xdf, 0xf7, 0x7e, 0xdb, 0xfb, 0x1d, 0x1c, 0xb4, 0x0a, 0x44, 0xd2, - 0x0b, 0xdd, 0x20, 0x74, 0xf9, 0xb3, 0x3c, 0x10, 0x92, 0x8c, 0x08, 0xdc, 0x01, 0xdc, 0x01, 0xdc, - 0x01, 0xdc, 0x01, 0xdc, 0x31, 0x77, 0xea, 0xfa, 0xae, 0xcf, 0xdf, 0x49, 0x84, 0x1c, 0x47, 0xe0, - 0x7a, 0xd3, 0xbf, 0x18, 0xb8, 0x5e, 0xfa, 0x71, 0xc1, 0xf5, 0xe6, 0x56, 0x94, 0xca, 0x47, 0xa0, - 0x76, 0x8d, 0x1b, 0x05, 0x8e, 0xd4, 0xa2, 0x58, 0xa1, 0x5b, 0x1e, 0x1c, 0x2b, 0x38, 0x56, 0x70, - 0xac, 0xe0, 0x58, 0xe9, 0xeb, 0x58, 0xa1, 0x5b, 0x1e, 0xc1, 0x80, 0xe8, 0x96, 0x07, 0x78, 0x25, - 0x03, 0x5e, 0xf1, 0xd0, 0xf6, 0xbb, 0x6e, 0x14, 0xb9, 0x81, 0x6f, 0xfd, 0xbb, 0xcf, 0xfa, 0xcc, - 0xf2, 0x98, 0xff, 0x14, 0xb7, 0xbd, 0x91, 0x06, 0xb4, 0x56, 0xce, 0x01, 0x90, 0x0b, 0x90, 0x0b, - 0x90, 0x0b, 0x90, 0x0b, 0x90, 0x6b, 0xee, 0xd4, 0xf5, 0x5d, 0x9f, 0x1f, 0x96, 0x25, 0x82, 0xac, - 0x13, 0x90, 0xd9, 0xe9, 0x5f, 0x0c, 0x64, 0x36, 0xfd, 0xb8, 0x20, 0xb3, 0x73, 0x2b, 0x4a, 0x95, - 0xf2, 0x69, 0xe5, 0xf4, 0xf8, 0xa4, 0x7c, 0x0a, 0x4e, 0xdb, 0xb8, 0x51, 0xe0, 0x74, 0x2d, 0x8a, - 0x55, 0xdc, 0x97, 0xcd, 0xea, 0x7c, 0x19, 0x9a, 0x3b, 0x89, 0x61, 0xca, 0xb3, 0xc3, 0xc2, 0xb5, - 0x82, 0x6b, 0x05, 0xd7, 0x0a, 0xae, 0x15, 0x5c, 0x2b, 0xb8, 0x56, 0x70, 0xad, 0xe0, 0x5a, 0xc1, - 0xb5, 0x82, 0x6b, 0x05, 0xd7, 0x0a, 0xae, 0x95, 0x04, 0xd7, 0xca, 0xa8, 0x46, 0xe1, 0x55, 0xdf, - 0x0f, 0xb8, 0x3d, 0x14, 0x55, 0xda, 0x7e, 0xe1, 0x51, 0xe7, 0x0b, 0xeb, 0xda, 0x3d, 0x3b, 0xbe, - 0x79, 0x2b, 0x1c, 0x04, 0x3d, 0xe6, 0x77, 0x62, 0xe7, 0xc6, 0xf2, 0x19, 0xff, 0x4f, 0x10, 0x7e, - 0xb5, 0x5c, 0x3f, 0xe2, 0xb6, 0xdf, 0x61, 0x07, 0xf3, 0xdf, 0x88, 0x16, 0xbe, 0x73, 0xd0, 0x0b, - 0x03, 0x1e, 0x74, 0x02, 0x2f, 0x4a, 0x3e, 0x1d, 0x8c, 0xf0, 0xe6, 0x81, 0x1d, 0x32, 0x3b, 0x8a, - 0xff, 0x7f, 0xf0, 0xcd, 0x0d, 0x79, 0xdf, 0xf6, 0x2c, 0xcf, 0xf5, 0xbf, 0x46, 0x33, 0x7f, 0x3b, - 0x18, 0xb5, 0x0e, 0x7f, 0x63, 0xc6, 0xf6, 0x8b, 0x7d, 0xa2, 0x60, 0x41, 0x1a, 0x3a, 0x3a, 0x12, - 0xc2, 0xc9, 0x0a, 0x75, 0x37, 0xe2, 0x55, 0xce, 0x69, 0x0a, 0x78, 0x0e, 0x61, 0x56, 0xcd, 0x63, - 0x43, 0xef, 0x65, 0xa8, 0xab, 0xfd, 0xbe, 0xe7, 0xbd, 0x7d, 0x43, 0x61, 0x80, 0xe9, 0x07, 0xb9, - 0x0e, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xf3, 0x78, 0x08, 0xad, 0x65, 0x87, 0x58, 0xf9, 0xe8, 0xa5, - 0x74, 0x08, 0x5c, 0xae, 0x42, 0xc4, 0xc3, 0x7e, 0x87, 0xfb, 0x63, 0xd7, 0xee, 0x6a, 0x34, 0xe3, - 0x8b, 0xf1, 0x84, 0xdb, 0x8d, 0xf1, 0x34, 0xdb, 0xd7, 0xf1, 0x34, 0xdb, 0xd5, 0x90, 0xd9, 0xed, - 0x3f, 0x47, 0x53, 0xaa, 0x0f, 0x67, 0xf4, 0x46, 0x4f, 0x35, 0x25, 0xe6, 0x49, 0x82, 0x84, 0x95, - 0x4a, 0x48, 0x95, 0x0b, 0xa7, 0x98, 0xdd, 0xcf, 0xbe, 0x57, 0xd9, 0x9e, 0x90, 0x71, 0x97, 0x27, - 0xe6, 0x6b, 0xd4, 0x2c, 0xff, 0xd1, 0xcd, 0x5c, 0xa6, 0x59, 0xac, 0xa1, 0x22, 0x31, 0x4c, 0x24, - 0x86, 0x48, 0xac, 0xe1, 0xc9, 0xba, 0xab, 0x82, 0xcf, 0xac, 0x82, 0xb3, 0x2a, 0xc0, 0x5a, 0xa4, - 0xb0, 0x0e, 0xd9, 0x74, 0x42, 0xfa, 0x93, 0x9c, 0xee, 0x37, 0x53, 0x4a, 0x89, 0x28, 0xe9, 0x90, - 0x2b, 0x15, 0xe9, 0xb6, 0x66, 0xf3, 0x85, 0x4d, 0xb1, 0xa8, 0x85, 0x27, 0x2f, 0x78, 0xb0, 0xbd, - 0xd4, 0x8b, 0x99, 0x70, 0xd3, 0xe3, 0xe7, 0xa4, 0xdc, 0xd6, 0x49, 0xbc, 0x74, 0xca, 0x5f, 0xcf, - 0x7a, 0xd7, 0x26, 0xe2, 0x0e, 0x4d, 0xe8, 0xdd, 0x98, 0xa8, 0x3b, 0x2f, 0xe1, 0x77, 0x59, 0xc2, - 0xef, 0xa8, 0x44, 0xdf, 0x3d, 0xc9, 0x55, 0x47, 0xe7, 0x6e, 0x36, 0xb0, 0x50, 0xe8, 0x4c, 0x24, - 0x37, 0xe3, 0x3e, 0x4f, 0x84, 0x6f, 0xfc, 0xbc, 0xac, 0xc8, 0x2a, 0xd3, 0x71, 0x14, 0x76, 0x2c, - 0x45, 0x1e, 0x4f, 0x92, 0x63, 0x2a, 0xfa, 0xb8, 0x92, 0x1d, 0x5b, 0xb2, 0xe3, 0x4b, 0x75, 0x8c, - 0xf5, 0xf0, 0x30, 0xb2, 0x1e, 0xef, 0xe4, 0x41, 0x5f, 0x5c, 0x87, 0x59, 0x3c, 0xb4, 0xfd, 0xc8, - 0xe5, 0x56, 0xe0, 0x7b, 0xcf, 0x13, 0x98, 0x21, 0x2e, 0xc8, 0xe6, 0xa5, 0x88, 0xd5, 0xea, 0xb1, - 0x04, 0xed, 0xb5, 0xd8, 0x9b, 0x21, 0xe1, 0x91, 0x32, 0x14, 0x11, 0x31, 0xa4, 0x91, 0x2f, 0x54, - 0x11, 0x2e, 0xe4, 0x91, 0x2c, 0xe4, 0x11, 0x2b, 0xd4, 0x91, 0x29, 0x7a, 0xd1, 0x55, 0xc2, 0x23, - 0x4a, 0x12, 0xa9, 0x7d, 0x08, 0x02, 0x8f, 0xd9, 0xbe, 0x48, 0x99, 0x9d, 0x60, 0x84, 0x92, 0x2e, - 0x5c, 0x94, 0x00, 0x33, 0xee, 0x3e, 0xf5, 0xac, 0xe8, 0x4b, 0x10, 0xf2, 0x4e, 0x9f, 0x13, 0x68, - 0xe6, 0xd9, 0xc7, 0x43, 0x19, 0x43, 0x19, 0x43, 0x19, 0x43, 0x19, 0x43, 0x19, 0x2f, 0x7f, 0x27, - 0x2f, 0x78, 0xb2, 0x6c, 0xe7, 0x7f, 0xed, 0x0e, 0xf3, 0x3b, 0xcf, 0xc2, 0x63, 0xd2, 0x5f, 0x9a, - 0x22, 0x2d, 0x1d, 0x06, 0xca, 0x19, 0xca, 0x19, 0xca, 0x19, 0xca, 0x19, 0xca, 0x79, 0xf9, 0x3b, - 0x89, 0xaf, 0x7a, 0xf5, 0x52, 0x74, 0x41, 0x70, 0x1c, 0x12, 0x94, 0x30, 0x94, 0x30, 0x94, 0xb0, - 0x51, 0x4a, 0x98, 0xa6, 0xab, 0x2c, 0x45, 0x55, 0x26, 0xb2, 0xea, 0x4b, 0x86, 0x76, 0x83, 0x6d, - 0xe5, 0xc8, 0xc6, 0x45, 0xfd, 0x6e, 0xd7, 0x0e, 0x9f, 0x47, 0x81, 0xb1, 0x56, 0x27, 0x88, 0xb8, - 0xd5, 0x0d, 0x1c, 0x26, 0xde, 0xe2, 0xad, 0x1a, 0x48, 0xd0, 0x39, 0x3d, 0x67, 0x8f, 0x76, 0xdf, - 0x8b, 0x75, 0xd2, 0xcd, 0xc7, 0x0f, 0xe5, 0xc3, 0xf2, 0xbb, 0xf6, 0x87, 0xeb, 0xcb, 0x46, 0xb5, - 0x79, 0xf1, 0xbe, 0x5e, 0x83, 0x91, 0x85, 0x91, 0x85, 0x91, 0xdd, 0x46, 0x23, 0xcb, 0xfc, 0x7e, - 0x97, 0x85, 0xa3, 0x58, 0x2a, 0x02, 0x23, 0x5b, 0x11, 0xf8, 0xcc, 0x9a, 0xdf, 0xef, 0x0e, 0x17, - 0x61, 0x80, 0xb8, 0x57, 0x83, 0x23, 0x24, 0x47, 0x21, 0x62, 0x07, 0xe3, 0x10, 0x15, 0x55, 0xe1, - 0x8a, 0x19, 0x82, 0xb2, 0x9e, 0x42, 0xbb, 0xc3, 0x1e, 0xfb, 0x9e, 0x15, 0xb2, 0x88, 0xdb, 0x21, - 0x17, 0x17, 0xb6, 0xb3, 0xf0, 0x64, 0x04, 0xf0, 0x48, 0xb5, 0xba, 0x08, 0xe0, 0x41, 0x00, 0xcf, - 0x2f, 0x1f, 0x24, 0x28, 0x4e, 0x6f, 0x41, 0x88, 0x85, 0xc4, 0xeb, 0x09, 0x3e, 0xf6, 0x00, 0xe1, - 0x00, 0xe1, 0x00, 0xe1, 0x14, 0x6a, 0x24, 0x79, 0x20, 0xf3, 0xed, 0x07, 0x8f, 0x89, 0x6f, 0x19, - 0x31, 0x05, 0xee, 0x47, 0x03, 0x88, 0xce, 0x18, 0x26, 0xa9, 0x09, 0x41, 0x56, 0x2b, 0x8b, 0xb2, - 0x36, 0x96, 0x94, 0x5a, 0x58, 0xd4, 0xb5, 0xaf, 0xa4, 0xd5, 0xba, 0x92, 0x56, 0xdb, 0x4a, 0x56, - 0x2d, 0x2b, 0xbd, 0x33, 0xfb, 0xc9, 0x6a, 0x53, 0x11, 0xde, 0x93, 0x2e, 0xa0, 0x98, 0x92, 0xae, - 0x39, 0xce, 0x02, 0x01, 0xc6, 0x17, 0xe6, 0xf5, 0x58, 0x18, 0x87, 0x69, 0xd3, 0x19, 0x83, 0xe9, - 0x41, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x50, 0xf4, 0x62, 0xb3, 0xe7, - 0x4a, 0xa6, 0x89, 0xe7, 0x29, 0x51, 0x21, 0xbc, 0xb1, 0xb8, 0x1d, 0x13, 0x72, 0xc1, 0x1c, 0x97, - 0xb2, 0x12, 0x7f, 0x9d, 0x1c, 0x3f, 0x56, 0x73, 0x4a, 0xa9, 0x0c, 0x4a, 0x09, 0x94, 0x12, 0x28, - 0x25, 0x50, 0x4a, 0xf0, 0x20, 0xe0, 0x41, 0xc0, 0x83, 0x80, 0x07, 0x01, 0x4a, 0x09, 0x94, 0x12, - 0x0c, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x28, 0x25, 0x19, 0x94, 0x92, 0xc0, - 0x5a, 0xe2, 0x08, 0x2a, 0xd5, 0x6a, 0x6b, 0xe5, 0xd7, 0xe0, 0xfc, 0x14, 0x4f, 0xa4, 0xfd, 0x69, - 0x3c, 0x91, 0x9b, 0xf1, 0x3c, 0x0c, 0x0c, 0x73, 0x75, 0x7d, 0xce, 0x42, 0xcb, 0x0e, 0x99, 0x6d, - 0xf5, 0xc2, 0xa0, 0x67, 0x3f, 0xc5, 0x62, 0x61, 0xf5, 0x02, 0xcf, 0xed, 0xb8, 0x02, 0x52, 0xf0, - 0x5f, 0xea, 0xa1, 0xbc, 0x32, 0x10, 0x82, 0x60, 0xa5, 0x02, 0x43, 0x04, 0xc1, 0x22, 0x08, 0x36, - 0xb5, 0x62, 0x78, 0x26, 0x28, 0x97, 0xf4, 0xcb, 0xe1, 0x10, 0x32, 0xab, 0xa5, 0x57, 0x89, 0xfb, - 0x0d, 0x55, 0x5e, 0x63, 0xce, 0xef, 0x37, 0x04, 0x47, 0xe0, 0x2f, 0x1c, 0x06, 0xa1, 0x91, 0xf8, - 0x44, 0xea, 0x05, 0x64, 0x16, 0xc8, 0x2c, 0x90, 0x59, 0x14, 0x64, 0x96, 0x68, 0x75, 0x95, 0x3c, - 0xd8, 0x19, 0x25, 0xdf, 0x5b, 0x6e, 0xb7, 0x17, 0x84, 0x5c, 0x34, 0x56, 0x5a, 0x79, 0xc6, 0x96, - 0x0f, 0x4b, 0x24, 0x41, 0xd3, 0x05, 0x06, 0x6a, 0xff, 0xaf, 0xf6, 0xa1, 0xd9, 0xbe, 0xb9, 0xfe, - 0xdc, 0xac, 0x51, 0x0d, 0x47, 0xdb, 0x98, 0x92, 0xbc, 0x71, 0xb7, 0x8c, 0x86, 0xdd, 0xd3, 0xba, - 0x36, 0xec, 0x05, 0x1e, 0x61, 0xcf, 0x60, 0x59, 0xed, 0xb9, 0xa5, 0xb7, 0xe5, 0x96, 0xde, 0x8e, - 0x7b, 0x5e, 0x13, 0xc7, 0x1b, 0x87, 0x5e, 0x97, 0x3b, 0x52, 0x9a, 0x6d, 0x2f, 0x68, 0xce, 0x91, - 0xca, 0xb4, 0xf8, 0x70, 0x60, 0xc2, 0xd3, 0x43, 0x50, 0x2e, 0x61, 0x61, 0x0c, 0xb1, 0xe5, 0x13, - 0xe8, 0x05, 0x89, 0x40, 0x88, 0x0a, 0x4e, 0xc4, 0x63, 0x2a, 0x41, 0x82, 0xe9, 0x9d, 0x8c, 0x04, - 0xf3, 0xa7, 0x83, 0xf9, 0x23, 0x73, 0x35, 0x60, 0x00, 0x4d, 0x75, 0x45, 0x60, 0x02, 0x7f, 0x7d, - 0x6a, 0x3c, 0x66, 0x3f, 0x86, 0xec, 0x51, 0x86, 0xd9, 0x3b, 0x21, 0x1c, 0xa3, 0x31, 0xbe, 0x7c, - 0xdc, 0xdf, 0x3f, 0x98, 0xfe, 0x6f, 0xaa, 0xa9, 0xe6, 0x54, 0xeb, 0xc8, 0x2d, 0x36, 0x8d, 0x92, - 0x5d, 0x53, 0x29, 0x2e, 0x29, 0x8c, 0x24, 0x7c, 0x44, 0xf8, 0x88, 0x30, 0x90, 0x30, 0x90, 0x6b, - 0x18, 0xc8, 0x83, 0xb1, 0x20, 0x9d, 0x85, 0x41, 0x9f, 0xbb, 0xfe, 0xd3, 0x58, 0x37, 0x27, 0xdf, - 0x1e, 0xbb, 0xc2, 0x0e, 0x7b, 0x74, 0x7d, 0x97, 0xbb, 0x81, 0x1f, 0xad, 0xfe, 0xa7, 0xe4, 0x5f, - 0xe2, 0xb8, 0x19, 0xa3, 0xe4, 0x47, 0x68, 0xfb, 0xe7, 0x95, 0xa3, 0x50, 0xb4, 0x85, 0x5e, 0x3d, - 0x18, 0x41, 0xbb, 0xe8, 0x95, 0x83, 0x4d, 0xb7, 0x91, 0x26, 0xd6, 0xf3, 0x93, 0x83, 0xd8, 0x8f, - 0x32, 0x77, 0xfd, 0xd6, 0xc5, 0x76, 0xcd, 0xdb, 0xaf, 0x60, 0xb4, 0x9a, 0xd6, 0xc3, 0x33, 0xf1, - 0x0b, 0x2a, 0xb1, 0x63, 0x0b, 0xb6, 0x2c, 0xde, 0x49, 0xd2, 0x21, 0x07, 0xa6, 0x99, 0x49, 0x23, - 0x9c, 0x87, 0x28, 0xec, 0x48, 0xe2, 0xd5, 0x92, 0x91, 0xe0, 0x32, 0x80, 0x57, 0x83, 0xd3, 0x00, - 0x5e, 0x0d, 0x6e, 0x03, 0x78, 0x35, 0x3d, 0x9f, 0x28, 0x3a, 0x3a, 0x85, 0x28, 0xff, 0xe6, 0xc5, - 0x88, 0xcb, 0x4d, 0xd6, 0x78, 0x25, 0xee, 0xff, 0x97, 0xff, 0xfe, 0x2c, 0xb4, 0x0e, 0x8c, 0xf8, - 0xed, 0x17, 0x99, 0xc9, 0x4b, 0x76, 0x67, 0x49, 0x7d, 0x57, 0x89, 0x1c, 0x5e, 0xc9, 0x98, 0x09, - 0x61, 0x8f, 0xba, 0x62, 0xa2, 0x6d, 0xcf, 0xe1, 0xa5, 0xc3, 0x3c, 0x94, 0x58, 0x67, 0x1a, 0xe3, - 0x8c, 0xec, 0xcd, 0x41, 0xa2, 0x2a, 0xb7, 0xc0, 0xf0, 0x90, 0x39, 0xf5, 0xd4, 0xce, 0x3c, 0x0c, - 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x4f, 0x9e, 0x0c, 0x4f, 0xa2, 0x2a, 0xb7, 0xc1, 0xf0, 0x08, - 0xad, 0x88, 0xb9, 0x68, 0x75, 0x04, 0x56, 0xc6, 0x5c, 0x90, 0x06, 0x2a, 0x93, 0x53, 0x86, 0xc9, - 0x81, 0xc9, 0x81, 0xc9, 0xc9, 0xbc, 0x08, 0x48, 0xf1, 0xca, 0xb2, 0x78, 0x48, 0xf1, 0xd2, 0x44, - 0xc7, 0x2e, 0xd3, 0xb5, 0x08, 0xdf, 0xd3, 0x5c, 0x03, 0xaf, 0xd2, 0xc4, 0x08, 0xdf, 0x93, 0xe0, - 0x12, 0xac, 0xd4, 0x9c, 0x48, 0xf1, 0x52, 0x26, 0x48, 0x48, 0xf1, 0x82, 0xf9, 0xd3, 0xdf, 0xd5, - 0x80, 0x01, 0x34, 0xd5, 0x15, 0x81, 0x09, 0x54, 0xc5, 0x8e, 0xc9, 0x60, 0xc9, 0x96, 0xb1, 0x65, - 0x48, 0xf1, 0xfa, 0xc5, 0x3a, 0x21, 0xc5, 0x0b, 0x3e, 0x22, 0x7c, 0x44, 0xf8, 0x88, 0x30, 0x90, - 0x5b, 0x6a, 0x20, 0x91, 0xe2, 0xb5, 0x83, 0x14, 0xaf, 0xec, 0x83, 0x21, 0xc5, 0x4b, 0xa4, 0xfd, - 0x42, 0x8a, 0x97, 0x11, 0xc6, 0x6c, 0x07, 0x29, 0x5e, 0x48, 0xf1, 0x02, 0xaf, 0x06, 0xa7, 0x01, - 0xbc, 0x1a, 0xdc, 0x06, 0xf0, 0x6a, 0x48, 0xf1, 0xda, 0x41, 0x8a, 0x17, 0x6d, 0x8a, 0x97, 0xc0, - 0xbe, 0x4c, 0xe2, 0x77, 0x5f, 0xaf, 0x3a, 0xfb, 0x7f, 0xb0, 0xe7, 0x69, 0xe4, 0xb4, 0x23, 0xf8, - 0x6a, 0x92, 0xc6, 0x63, 0x26, 0xf5, 0x90, 0x49, 0x3d, 0xe2, 0x19, 0x0f, 0x78, 0xf8, 0x68, 0xf4, - 0x69, 0xd3, 0x4c, 0x79, 0x14, 0x84, 0x86, 0x23, 0xa7, 0xe8, 0x00, 0x76, 0x31, 0x9c, 0x5d, 0x35, - 0x64, 0x76, 0xe3, 0x65, 0x6e, 0x8d, 0xd1, 0xd4, 0xd0, 0x69, 0xce, 0xfc, 0x4e, 0x73, 0xaf, 0x35, - 0x2d, 0x33, 0xb0, 0xe1, 0x5b, 0xb7, 0xe7, 0x09, 0xec, 0xea, 0x16, 0x3f, 0x0d, 0xad, 0xdb, 0xa4, - 0x3a, 0xd8, 0x68, 0xdd, 0x86, 0xd6, 0x6d, 0xbf, 0x7c, 0x90, 0xe0, 0xee, 0x49, 0x34, 0x5d, 0x93, - 0xd0, 0x8c, 0x0d, 0xcd, 0xd8, 0x24, 0xf1, 0x67, 0x68, 0xc6, 0x96, 0xe9, 0x81, 0x3c, 0xb4, 0x1f, - 0x1f, 0xdd, 0x8e, 0xc5, 0xfc, 0x27, 0xd7, 0x67, 0x2c, 0x74, 0xfd, 0x27, 0x8b, 0x7d, 0xe7, 0xcc, - 0x8f, 0xdc, 0xc0, 0x8f, 0xe8, 0x12, 0xf8, 0x5e, 0x19, 0x17, 0xc9, 0xe4, 0xc8, 0xec, 0x53, 0xa9, - 0xb6, 0xa4, 0xa9, 0x2f, 0x59, 0x6a, 0xcc, 0x0c, 0xee, 0x94, 0x3e, 0x99, 0xfc, 0x21, 0x08, 0x3c, - 0x66, 0xfb, 0x94, 0xc9, 0xe4, 0x25, 0xd0, 0x9d, 0xdb, 0xc3, 0x70, 0x0d, 0x7d, 0x64, 0xa1, 0x85, - 0xcc, 0x04, 0x90, 0x42, 0x02, 0xbc, 0x50, 0xf7, 0xa9, 0x67, 0x79, 0x4e, 0xcf, 0x8a, 0x9e, 0xfd, - 0x0e, 0x41, 0x3f, 0xe8, 0xe9, 0xa7, 0xc3, 0xe3, 0x80, 0xc7, 0x01, 0x8f, 0x63, 0x7b, 0x3c, 0x0e, - 0xb4, 0x7f, 0x86, 0x07, 0x01, 0x0f, 0x02, 0x1e, 0x04, 0x8d, 0x07, 0x41, 0x56, 0x1b, 0x84, 0xf9, - 0xf6, 0x83, 0xc7, 0x1c, 0xfa, 0xd0, 0xc9, 0xc9, 0x40, 0x88, 0x9c, 0x94, 0xad, 0xd8, 0xa4, 0x2a, - 0x38, 0x59, 0x8a, 0x4e, 0xba, 0xc2, 0x93, 0xae, 0xf8, 0x64, 0x2b, 0x40, 0x1a, 0x45, 0x48, 0xa4, - 0x10, 0xe9, 0xa9, 0x15, 0x89, 0x14, 0x0b, 0x31, 0xd5, 0x42, 0xb7, 0xb1, 0x14, 0xc1, 0xfc, 0xbd, - 0x20, 0xe2, 0x56, 0xc4, 0xa2, 0xc8, 0x0d, 0x7c, 0xab, 0xdf, 0xb3, 0x1c, 0xe6, 0xd9, 0x12, 0x32, - 0x82, 0x97, 0x0f, 0x0b, 0x63, 0x05, 0x63, 0x05, 0x63, 0x05, 0x63, 0x65, 0x9c, 0xb1, 0xea, 0xbb, - 0x3e, 0x3f, 0x2c, 0x4b, 0xb0, 0x55, 0x94, 0x41, 0xfe, 0x37, 0xb6, 0xff, 0x34, 0x7c, 0x9b, 0x3b, - 0x52, 0x91, 0x95, 0x90, 0x52, 0x79, 0xe9, 0xfa, 0x52, 0x72, 0x37, 0x25, 0x18, 0x97, 0x85, 0xe1, - 0xfe, 0xb4, 0xbd, 0x3e, 0x93, 0x38, 0xde, 0xc7, 0xd0, 0xee, 0x70, 0x37, 0xf0, 0xcf, 0xdd, 0x27, - 0x37, 0x8e, 0x9f, 0x2e, 0x92, 0x8f, 0x3b, 0x90, 0x90, 0x87, 0x7a, 0x69, 0x7f, 0xcf, 0xbd, 0x88, - 0x54, 0xca, 0xa7, 0x95, 0xd3, 0xe3, 0x93, 0xf2, 0xe9, 0x51, 0x8e, 0x65, 0xc5, 0xd0, 0xfc, 0xe1, - 0x16, 0x92, 0xa4, 0x44, 0xa0, 0x9f, 0x7c, 0x25, 0x49, 0xc5, 0xb7, 0xc0, 0xd3, 0xb7, 0x9a, 0x5b, - 0xd4, 0xdb, 0x0a, 0x95, 0xde, 0x17, 0xfd, 0x49, 0x54, 0x7a, 0x97, 0xeb, 0x37, 0xe2, 0x36, 0x27, - 0x9f, 0x66, 0x02, 0xb7, 0x39, 0x20, 0xc8, 0x40, 0x90, 0x81, 0x20, 0x03, 0x41, 0xa6, 0x8c, 0x20, - 0xc3, 0x6d, 0x8e, 0x8c, 0x4d, 0xc5, 0x6d, 0x0e, 0x8c, 0x15, 0x8c, 0x15, 0x8c, 0x15, 0x8c, 0x55, - 0xa6, 0x53, 0x83, 0xdb, 0x9c, 0xb5, 0xbf, 0x70, 0x9b, 0x93, 0x69, 0x38, 0xdc, 0xe6, 0x88, 0x11, - 0x11, 0xdc, 0xe6, 0xe4, 0x43, 0x56, 0x70, 0x9b, 0x43, 0xeb, 0x72, 0xe0, 0x36, 0x47, 0xe5, 0x6d, - 0x0e, 0xca, 0xd8, 0xa9, 0x96, 0x05, 0xe5, 0x32, 0xa0, 0xbc, 0x1a, 0xd9, 0x65, 0xcf, 0x8b, 0xda, - 0x17, 0x4f, 0xbd, 0xba, 0xd3, 0xbb, 0x1d, 0xce, 0x27, 0x47, 0xd9, 0xa6, 0x62, 0xaf, 0x10, 0x49, - 0xae, 0x0e, 0xc9, 0xf2, 0x4b, 0xcb, 0xc8, 0x2f, 0x45, 0x7e, 0xa9, 0x54, 0x32, 0x01, 0x15, 0x6d, - 0x48, 0xb8, 0x07, 0x54, 0xb4, 0x91, 0xac, 0x9e, 0xa4, 0xa8, 0x29, 0x6a, 0x75, 0x25, 0x4d, 0x6d, - 0x49, 0x53, 0x5f, 0xb2, 0xd4, 0x98, 0x19, 0xae, 0x11, 0x2a, 0xda, 0xc0, 0xf3, 0x31, 0xd0, 0xf3, - 0x11, 0xe8, 0xf0, 0xa2, 0xca, 0xb1, 0xf2, 0xed, 0x2c, 0x08, 0xf1, 0xd1, 0x52, 0xfa, 0xac, 0x26, - 0xd6, 0x51, 0x16, 0xe3, 0x90, 0x0a, 0x75, 0x44, 0x85, 0x57, 0x52, 0x2e, 0xa3, 0x92, 0xb2, 0x1e, - 0x08, 0x0d, 0x95, 0x94, 0x95, 0x38, 0x8c, 0x85, 0x2f, 0xae, 0xc3, 0x2c, 0x1e, 0xda, 0x7e, 0xe4, - 0x72, 0x2b, 0xf0, 0xbd, 0xe7, 0x89, 0x02, 0x8e, 0xc4, 0x53, 0x51, 0xbf, 0x18, 0x4b, 0x2c, 0x3f, - 0x55, 0x44, 0xfd, 0x33, 0xf0, 0x53, 0xe0, 0xa7, 0xc4, 0xa1, 0x7a, 0xe1, 0x0e, 0x1c, 0xa1, 0xe3, - 0x26, 0xd8, 0x61, 0xd3, 0xa7, 0x14, 0x65, 0xf4, 0x25, 0x08, 0x79, 0xa7, 0xcf, 0x23, 0x9a, 0x5a, - 0x94, 0x2f, 0x8f, 0x87, 0x32, 0x86, 0x32, 0x86, 0x32, 0x86, 0x32, 0x86, 0x32, 0x5e, 0xfe, 0x4e, - 0x5e, 0xf0, 0x64, 0xd9, 0xce, 0xff, 0xda, 0x1d, 0xe6, 0x77, 0x9e, 0xad, 0xce, 0x17, 0xdb, 0x7f, - 0x62, 0x04, 0x4a, 0x79, 0xf9, 0x30, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, - 0xcb, 0xdf, 0x29, 0x0c, 0xfa, 0x9c, 0x85, 0x96, 0xeb, 0x88, 0x57, 0xc8, 0x2f, 0x8f, 0x86, 0x12, - 0x86, 0x12, 0x86, 0x12, 0xde, 0x42, 0x25, 0xec, 0x04, 0x9c, 0x33, 0xc7, 0xfa, 0x77, 0xdf, 0x76, - 0x28, 0x14, 0xf1, 0x3b, 0x81, 0xcf, 0x6c, 0xd8, 0x9c, 0xb3, 0xd0, 0x17, 0x9e, 0x43, 0x53, 0xd8, - 0xdd, 0xbd, 0x2b, 0x5a, 0xa7, 0xad, 0x9f, 0x77, 0x25, 0xeb, 0xb4, 0x35, 0xfa, 0x58, 0x8a, 0xff, - 0x18, 0x7d, 0x2e, 0xdf, 0x15, 0xad, 0xca, 0xe4, 0xf3, 0xd1, 0x5d, 0xd1, 0x3a, 0x6a, 0xed, 0xdd, - 0xdf, 0xef, 0xef, 0xfd, 0x38, 0x1c, 0x6c, 0xfe, 0x8b, 0xe2, 0x24, 0xb4, 0x95, 0xa7, 0x50, 0xd1, - 0x7e, 0xb7, 0x6b, 0x87, 0xcf, 0x56, 0x6c, 0x90, 0xac, 0x4e, 0x10, 0x71, 0xab, 0x1b, 0x38, 0x14, - 0xc1, 0xa3, 0x2b, 0x06, 0x12, 0x15, 0xf6, 0xc6, 0x1e, 0xed, 0xbe, 0x17, 0xeb, 0xa4, 0x9b, 0x8f, - 0x1f, 0xca, 0x87, 0xe5, 0x77, 0xed, 0x0f, 0xd7, 0x97, 0x8d, 0x6a, 0xf3, 0xe2, 0x7d, 0xbd, 0x06, - 0x23, 0x0b, 0x23, 0x0b, 0x23, 0xbb, 0x8d, 0x46, 0x96, 0xf9, 0xfd, 0x2e, 0x0b, 0x47, 0xd1, 0x26, - 0x04, 0x46, 0xb6, 0x22, 0xf0, 0x99, 0x35, 0xbf, 0xdf, 0x1d, 0x2e, 0xc2, 0x00, 0x51, 0x42, 0xe6, - 0x47, 0x09, 0x09, 0x88, 0xf7, 0x52, 0x13, 0xa9, 0xc3, 0xdd, 0x2e, 0x0b, 0x05, 0xf6, 0x3c, 0x1f, - 0x3f, 0x0f, 0x5d, 0xcf, 0xa5, 0x1a, 0x58, 0xc4, 0xea, 0x20, 0x56, 0xe7, 0x97, 0x0f, 0xf2, 0x22, - 0xdb, 0x7a, 0x62, 0xfe, 0xc4, 0x34, 0x8a, 0xbf, 0x70, 0x98, 0x7d, 0x3e, 0x7a, 0x12, 0x02, 0x7f, - 0x03, 0x7f, 0x6b, 0x8b, 0xbf, 0xd1, 0x93, 0x70, 0x07, 0x3d, 0x09, 0xe5, 0xa9, 0x1d, 0x6a, 0xf5, - 0x23, 0x4d, 0x0d, 0x49, 0x53, 0x47, 0xb2, 0xd4, 0x92, 0x58, 0xf5, 0x24, 0x58, 0x4d, 0x91, 0xa9, - 0xab, 0xe4, 0xc1, 0xae, 0xef, 0x72, 0xd7, 0xf6, 0x64, 0x15, 0x0b, 0x9c, 0x1d, 0x0e, 0x45, 0x02, - 0x65, 0x2b, 0x39, 0xa9, 0xca, 0x4e, 0x96, 0xd2, 0x93, 0xae, 0xfc, 0xa4, 0x2b, 0x41, 0xd9, 0xca, - 0x90, 0x46, 0x29, 0x12, 0x29, 0xc7, 0x64, 0x71, 0x50, 0x24, 0x70, 0xa3, 0x21, 0x50, 0x24, 0x50, - 0x3f, 0xe3, 0xb2, 0x30, 0x1c, 0x8a, 0x04, 0x8a, 0x11, 0x11, 0x14, 0x09, 0xcc, 0x87, 0xac, 0xa0, - 0x48, 0x20, 0xe9, 0x7c, 0x29, 0xea, 0x92, 0x77, 0xed, 0xef, 0x6e, 0xb7, 0xdf, 0x95, 0xe5, 0x62, - 0xcc, 0x0e, 0x07, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, - 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xa5, 0x2e, 0x06, 0xea, 0x90, 0xcb, - 0x0b, 0xca, 0x1b, 0xc5, 0xa2, 0x1d, 0xcc, 0xc6, 0xa6, 0xa0, 0xb3, 0xac, 0x28, 0x90, 0x86, 0xce, - 0xb2, 0xb8, 0x93, 0xd7, 0xc7, 0x67, 0xc4, 0x9d, 0xbc, 0x54, 0x53, 0x81, 0x3b, 0x79, 0x10, 0x66, - 0x20, 0xcc, 0x40, 0x98, 0x81, 0x30, 0x03, 0x61, 0x06, 0xc2, 0x0c, 0x84, 0x19, 0x08, 0x33, 0x10, - 0x66, 0x20, 0xcc, 0x40, 0x98, 0x19, 0x70, 0x16, 0x71, 0x27, 0x0f, 0x17, 0x03, 0x2e, 0x06, 0x5c, - 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, - 0x5c, 0x0c, 0x91, 0x62, 0x12, 0x5f, 0x3d, 0x5b, 0x9c, 0xd2, 0x38, 0xcf, 0x96, 0x5c, 0x19, 0x8d, - 0x05, 0xe7, 0x02, 0xce, 0x05, 0x9c, 0x0b, 0x38, 0x17, 0xc6, 0x39, 0x17, 0x34, 0x75, 0xdb, 0x56, - 0x29, 0x32, 0x91, 0x75, 0xdc, 0x16, 0xc6, 0x10, 0x5b, 0xd7, 0x4d, 0x82, 0xf9, 0x43, 0x48, 0x9a, - 0xea, 0x90, 0x34, 0x81, 0xdd, 0x42, 0xc5, 0xef, 0x2a, 0x9a, 0xc4, 0xca, 0x92, 0x83, 0x82, 0xd0, - 0xd8, 0xbf, 0x14, 0xed, 0x46, 0x9b, 0xf1, 0xac, 0xda, 0xf5, 0xc8, 0xfe, 0xf4, 0x32, 0xa9, 0x1c, - 0x15, 0x3f, 0xee, 0xda, 0xdf, 0xad, 0x2e, 0xe3, 0xa1, 0xdb, 0x11, 0x5f, 0x01, 0x6d, 0xea, 0xd9, - 0xa8, 0x7e, 0xa6, 0x25, 0x8a, 0x46, 0xf5, 0x33, 0x55, 0x28, 0x18, 0xd5, 0xcf, 0x32, 0x1d, 0x06, - 0x54, 0x3f, 0x43, 0xa4, 0xb5, 0x46, 0xce, 0x3a, 0x22, 0xad, 0xa5, 0x7a, 0x40, 0x84, 0x91, 0xd6, - 0x1d, 0xaf, 0xef, 0x30, 0x19, 0x31, 0xd6, 0xa3, 0x81, 0xc0, 0x4e, 0xca, 0x56, 0x6c, 0x52, 0x15, - 0x9c, 0x2c, 0x45, 0x27, 0x5d, 0xe1, 0x49, 0x57, 0x7c, 0xb2, 0x15, 0x20, 0x1d, 0xb9, 0xb4, 0x93, - 0x0b, 0x76, 0xd2, 0x75, 0x98, 0xcf, 0x5d, 0xfe, 0x1c, 0xb2, 0x47, 0x19, 0xec, 0x24, 0xe1, 0x5d, - 0x66, 0xe1, 0x62, 0xfc, 0x2a, 0xef, 0xed, 0x48, 0xc2, 0x09, 0x9d, 0x2c, 0xe0, 0x65, 0xf5, 0x9f, - 0xed, 0xcb, 0x5a, 0xf3, 0xe6, 0xe2, 0x43, 0xfb, 0xe2, 0xea, 0x43, 0xfd, 0xf3, 0x79, 0x8d, 0xfa, - 0xa8, 0xc6, 0x17, 0xc4, 0x11, 0x79, 0xa4, 0xc7, 0x8e, 0x94, 0x68, 0x8f, 0x57, 0xd6, 0xb2, 0xdd, - 0xfc, 0xab, 0x51, 0x2b, 0xb7, 0x6b, 0xff, 0x6c, 0xd6, 0x6e, 0xae, 0xaa, 0xf5, 0x42, 0x1e, 0xa2, - 0x17, 0xd4, 0x2f, 0xea, 0x6d, 0xf3, 0xf3, 0xfb, 0x82, 0xe1, 0x97, 0xfb, 0x2d, 0x98, 0x8a, 0x78, - 0x9b, 0xeb, 0x6e, 0xc4, 0xab, 0x9c, 0x87, 0xb4, 0xe6, 0xe2, 0xd2, 0xf5, 0x6b, 0x1e, 0x1b, 0xda, - 0xeb, 0xa1, 0xe2, 0xf1, 0xfb, 0x9e, 0x47, 0xa8, 0xc8, 0x2f, 0xed, 0xef, 0xf2, 0x06, 0xbb, 0x0e, - 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xf3, 0x78, 0xa8, 0x2d, 0x8e, 0xec, 0x88, 0x18, 0xa7, 0xf7, 0x98, - 0x86, 0x83, 0xc0, 0x5b, 0x82, 0xb7, 0x04, 0x6f, 0x09, 0xde, 0x92, 0x71, 0xde, 0x92, 0xf8, 0x6e, - 0xe3, 0x2b, 0x3d, 0xa5, 0xd2, 0x96, 0x87, 0x18, 0x06, 0x7d, 0x2e, 0x27, 0xbe, 0x70, 0x38, 0x10, - 0x0c, 0x12, 0x0c, 0x12, 0x0c, 0x12, 0x0c, 0x92, 0x71, 0x06, 0xa9, 0xef, 0xfa, 0xfc, 0xb8, 0x22, - 0xc1, 0x1e, 0xbd, 0x43, 0xe6, 0xd2, 0x5a, 0x5e, 0x32, 0x32, 0x97, 0x04, 0x8d, 0x87, 0xcc, 0x25, - 0x63, 0x45, 0xa4, 0xf4, 0xae, 0x52, 0x39, 0x3e, 0xa9, 0x54, 0x8a, 0x27, 0x87, 0x27, 0xc5, 0xd3, - 0xa3, 0xa3, 0xd2, 0x71, 0x09, 0x39, 0x4c, 0xda, 0x3d, 0x7d, 0xab, 0x73, 0x98, 0x42, 0xf7, 0xe9, - 0x89, 0x85, 0x12, 0x1c, 0x8c, 0xf1, 0x40, 0x70, 0x30, 0xe0, 0x60, 0xc0, 0xc1, 0x80, 0x83, 0x61, - 0x9c, 0x83, 0x81, 0xf8, 0x80, 0x8c, 0x0b, 0x38, 0x75, 0xfd, 0xda, 0xbc, 0xb9, 0xf8, 0xf4, 0xa9, - 0x76, 0x83, 0xf8, 0x00, 0x01, 0x6b, 0x79, 0x7d, 0xd5, 0xbe, 0xfd, 0xeb, 0xb6, 0x59, 0xbb, 0x6c, - 0xbf, 0xbf, 0xbe, 0x6e, 0xe2, 0x32, 0x3b, 0x1f, 0x7a, 0x0d, 0x97, 0xd9, 0xd9, 0x06, 0x33, 0xf5, - 0x32, 0x1b, 0x79, 0x9a, 0xd2, 0xf3, 0xf3, 0x5e, 0x92, 0xba, 0xd0, 0x36, 0x40, 0x94, 0x7d, 0x42, - 0xdb, 0x00, 0x24, 0xb3, 0xe8, 0xe3, 0xbb, 0x21, 0x99, 0x45, 0xaa, 0x99, 0x40, 0x32, 0x0b, 0xc8, - 0x2a, 0x90, 0x55, 0x20, 0xab, 0x40, 0x56, 0x81, 0xac, 0xca, 0x01, 0x59, 0x85, 0x64, 0x16, 0xe1, - 0x6b, 0x89, 0x64, 0x16, 0x8a, 0x45, 0x45, 0x32, 0x4b, 0x7e, 0x4c, 0x05, 0xf8, 0xbf, 0x6c, 0x83, - 0x21, 0x99, 0xe5, 0x85, 0xea, 0x41, 0x32, 0x0b, 0xbc, 0x25, 0x78, 0x4b, 0xf0, 0x96, 0xe0, 0x2d, - 0xad, 0x38, 0x35, 0x48, 0x66, 0x91, 0x62, 0x88, 0x90, 0xcc, 0x02, 0x83, 0x04, 0x83, 0x04, 0x83, - 0x04, 0x83, 0xf4, 0xda, 0xa9, 0x41, 0x32, 0x8b, 0x46, 0xb4, 0x0b, 0x92, 0x59, 0x04, 0x8e, 0x87, - 0x64, 0x16, 0x63, 0x45, 0x04, 0xc9, 0x2c, 0x26, 0x3c, 0x1d, 0xc9, 0x2c, 0x48, 0x66, 0x81, 0x83, - 0x01, 0x07, 0x03, 0x0e, 0x06, 0x1c, 0x8c, 0xd5, 0xa7, 0x06, 0xf1, 0x01, 0x19, 0x17, 0x10, 0xc9, - 0x2c, 0x24, 0x6b, 0x89, 0x64, 0x96, 0x3c, 0xea, 0x35, 0x5c, 0x66, 0x67, 0x1b, 0x0c, 0xc9, 0x2c, - 0x48, 0x66, 0xd9, 0x3c, 0x99, 0x05, 0x0d, 0xc7, 0x54, 0xcb, 0x82, 0x72, 0x19, 0xd0, 0xa5, 0xd9, - 0xd8, 0xa5, 0xfd, 0xfd, 0x72, 0x34, 0xa1, 0x1c, 0x35, 0x1a, 0x8b, 0x7a, 0x8f, 0xe2, 0x3b, 0x8c, - 0x0d, 0x1f, 0x8a, 0xd6, 0x62, 0x5a, 0xb2, 0x02, 0x68, 0x2d, 0xa6, 0xca, 0xab, 0x47, 0x6b, 0xb1, - 0x4c, 0x87, 0x01, 0xad, 0xc5, 0x90, 0x8d, 0xa9, 0x81, 0x1a, 0x92, 0xa6, 0x8e, 0x64, 0xa9, 0x25, - 0x33, 0xfc, 0x1c, 0xc2, 0x6c, 0x4c, 0x97, 0xbb, 0xb6, 0x67, 0x39, 0xcc, 0xb3, 0x9f, 0x65, 0xe4, - 0x64, 0x4e, 0x0f, 0x87, 0x9b, 0x17, 0xd9, 0x4a, 0x4e, 0xaa, 0xb2, 0x93, 0xa5, 0xf4, 0xa4, 0x2b, - 0x3f, 0xe9, 0x4a, 0x50, 0xb6, 0x32, 0xa4, 0xa3, 0x93, 0x76, 0x72, 0x13, 0xda, 0x75, 0x58, 0x96, - 0x70, 0xe9, 0x72, 0x82, 0xd0, 0xae, 0xd7, 0x5f, 0x04, 0xa1, 0x5d, 0xe2, 0xc6, 0x43, 0x68, 0x97, - 0xb1, 0x22, 0x52, 0x29, 0x9f, 0x56, 0x4e, 0x8f, 0x4f, 0xca, 0xa7, 0x08, 0xe8, 0xd2, 0xee, 0xe9, - 0xdb, 0x1c, 0xd0, 0xd5, 0xb5, 0xbf, 0xbb, 0xdd, 0x7e, 0x57, 0x96, 0x8b, 0x31, 0x3b, 0x1c, 0x5c, - 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, - 0x5c, 0x0c, 0xb8, 0x18, 0x70, 0x31, 0x94, 0xba, 0x18, 0x08, 0x28, 0x93, 0x1e, 0x4c, 0x14, 0xf5, - 0x1e, 0x51, 0x16, 0x59, 0x14, 0x32, 0x43, 0x59, 0x64, 0x5c, 0xc4, 0xeb, 0xe3, 0x28, 0xe2, 0x22, - 0x5e, 0xaa, 0x7d, 0xc0, 0x45, 0x3c, 0x58, 0x32, 0xb0, 0x64, 0x60, 0xc9, 0xc0, 0x92, 0x81, 0x25, - 0x03, 0x4b, 0x06, 0x96, 0x0c, 0x2c, 0x19, 0x58, 0x32, 0xb0, 0x64, 0x60, 0xc9, 0x0c, 0x38, 0x8b, - 0xb8, 0x88, 0x87, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, - 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x86, 0x48, 0x31, 0x89, 0xef, 0x9b, 0x2d, - 0x4e, 0x69, 0x9c, 0x67, 0x0a, 0xc4, 0x8f, 0xc7, 0x82, 0x73, 0x01, 0xe7, 0x02, 0xce, 0x05, 0x9c, - 0x0b, 0xe3, 0x9c, 0x0b, 0xe6, 0xf7, 0xbb, 0x2c, 0x1c, 0xc5, 0x1b, 0x49, 0x28, 0xe1, 0x58, 0x21, - 0x1c, 0xa3, 0xe6, 0xf7, 0xbb, 0xc3, 0x45, 0x1b, 0x20, 0x0e, 0x4d, 0xc4, 0xf9, 0xcc, 0x6d, 0x1c, - 0x1a, 0x2a, 0x9a, 0xa9, 0x16, 0x02, 0x75, 0x9b, 0xaf, 0x4b, 0x29, 0xb3, 0xdb, 0xde, 0xa3, 0x36, - 0x45, 0xcc, 0xde, 0x28, 0x94, 0x34, 0xd1, 0x12, 0xa6, 0x46, 0xb2, 0x0a, 0x22, 0xea, 0xc0, 0xa5, - 0x97, 0xa6, 0x6c, 0x92, 0x94, 0x7e, 0xff, 0xd3, 0xfd, 0x66, 0x4a, 0x89, 0x11, 0x25, 0x29, 0x92, - 0x25, 0x24, 0x83, 0x68, 0xa4, 0x12, 0x89, 0x74, 0xb2, 0xb0, 0xf9, 0x4e, 0x6e, 0xf6, 0x1b, 0x1b, - 0xee, 0x79, 0xd6, 0xbd, 0x96, 0xb5, 0xc7, 0x29, 0x36, 0x77, 0xb3, 0x4d, 0xdd, 0x6c, 0x37, 0xd7, - 0xdf, 0x93, 0x0d, 0xf6, 0xa3, 0xd0, 0x73, 0xbb, 0x1b, 0x6f, 0x42, 0xe2, 0x5e, 0x0c, 0x7f, 0x79, - 0xc3, 0xbd, 0x4f, 0x17, 0x88, 0x9e, 0x9a, 0xcb, 0xc8, 0xc2, 0x51, 0x4c, 0x73, 0x0f, 0x9b, 0xbf, - 0xa9, 0x08, 0x42, 0x41, 0x18, 0x51, 0x20, 0x8c, 0x00, 0x98, 0x77, 0xec, 0x87, 0xeb, 0xa2, 0x99, - 0x76, 0x49, 0x1b, 0x42, 0x5d, 0x18, 0xab, 0xf4, 0xd4, 0x9b, 0x35, 0x11, 0x97, 0x4c, 0xa6, 0x21, - 0x63, 0xa6, 0x46, 0x66, 0xd2, 0x4f, 0x04, 0xa9, 0x97, 0xfd, 0xe0, 0x88, 0x66, 0xe4, 0x84, 0x33, - 0x6e, 0xc2, 0x19, 0x35, 0x21, 0x07, 0x4b, 0x0d, 0x74, 0xcb, 0x9a, 0xb3, 0x50, 0x08, 0x99, 0xef, - 0xb0, 0xff, 0xfb, 0x16, 0xf4, 0x23, 0xab, 0x17, 0xb8, 0xa3, 0x6a, 0xf9, 0x19, 0xf7, 0x7b, 0x22, - 0x81, 0x8b, 0x8f, 0xce, 0xb8, 0x4d, 0x62, 0x12, 0xa9, 0x84, 0x71, 0xf3, 0x22, 0x39, 0x78, 0x71, - 0xc7, 0x56, 0xf4, 0xf1, 0x25, 0x3b, 0xc6, 0x64, 0xc7, 0x99, 0xe4, 0x58, 0xeb, 0xe1, 0xd3, 0x8b, - 0x4a, 0x51, 0x5a, 0x38, 0x9b, 0xe2, 0x0b, 0xa5, 0x2f, 0x8c, 0x80, 0xaa, 0xe9, 0xfa, 0x28, 0x07, - 0x2a, 0x25, 0x41, 0xae, 0x2c, 0xc8, 0x95, 0x06, 0xa9, 0xf2, 0xd0, 0x93, 0x8a, 0x16, 0x5e, 0x2f, - 0xdd, 0x76, 0x9c, 0x90, 0x45, 0x11, 0x5d, 0x9a, 0xf6, 0x64, 0x00, 0x9a, 0x44, 0xed, 0x22, 0x2a, - 0xa6, 0x13, 0xaa, 0x1c, 0x6a, 0xd5, 0x23, 0x4d, 0x05, 0x49, 0x53, 0x45, 0x52, 0x54, 0x92, 0x58, - 0xd5, 0x24, 0x58, 0x45, 0x25, 0x2b, 0x40, 0x76, 0x7b, 0x9f, 0xc8, 0xbb, 0xc7, 0xec, 0x47, 0x9a, - 0xa6, 0x8b, 0x09, 0x72, 0x21, 0x08, 0x06, 0x2e, 0x34, 0xc6, 0x84, 0xec, 0xfe, 0xfe, 0xb8, 0x18, - 0xc8, 0xc1, 0x44, 0x47, 0x6e, 0x41, 0x51, 0x10, 0xf4, 0xe7, 0x80, 0xb5, 0x81, 0xb5, 0x81, 0xb5, - 0x31, 0xa6, 0x20, 0x08, 0x15, 0x40, 0x96, 0x04, 0x94, 0x89, 0x01, 0x33, 0xb9, 0x2a, 0x93, 0xa1, - 0xd2, 0xe4, 0xa9, 0x36, 0x59, 0x2a, 0x4e, 0xba, 0xaa, 0x93, 0xae, 0xf2, 0xa4, 0xaa, 0x3e, 0x1a, - 0x15, 0x48, 0xa4, 0x0a, 0xe9, 0x01, 0xf8, 0xc2, 0x79, 0x71, 0x7b, 0xdf, 0x2a, 0x16, 0xad, 0xfe, - 0x9a, 0x81, 0x61, 0xef, 0x08, 0xc7, 0x68, 0xd8, 0x9c, 0xb3, 0xd0, 0x27, 0x4f, 0xd2, 0x2b, 0xec, - 0xee, 0xde, 0x15, 0xad, 0xd3, 0xd6, 0xcf, 0xbb, 0x92, 0x75, 0xda, 0x1a, 0x7d, 0x2c, 0xc5, 0x7f, - 0x8c, 0x3e, 0x97, 0xef, 0x8a, 0x56, 0x65, 0xf2, 0xf9, 0xe8, 0xae, 0x68, 0x1d, 0xb5, 0xf6, 0xee, - 0xef, 0xf7, 0xf7, 0x7e, 0x1c, 0x0e, 0x36, 0xff, 0xc5, 0xdd, 0xff, 0xbe, 0xbb, 0xbf, 0xef, 0xfd, - 0xb8, 0x1a, 0x0c, 0xff, 0x5f, 0x1f, 0xb4, 0xfe, 0xb6, 0xf7, 0x7b, 0x01, 0x89, 0x37, 0x14, 0xb9, - 0xfd, 0x7d, 0x8f, 0xbb, 0x1d, 0x3b, 0xe2, 0xd6, 0x53, 0x18, 0xf4, 0x7b, 0x12, 0x60, 0xc3, 0xc2, - 0x88, 0xc0, 0x0f, 0xc0, 0x0f, 0xc0, 0x0f, 0xc0, 0x0f, 0x06, 0xe1, 0x87, 0x88, 0x87, 0xae, 0xff, - 0x24, 0x05, 0x39, 0x20, 0x2b, 0x46, 0xc4, 0x99, 0x31, 0x3d, 0x2b, 0xa6, 0xe7, 0x76, 0x27, 0xb1, - 0xeb, 0x0b, 0x91, 0x2f, 0x0b, 0xdf, 0x41, 0xc9, 0x66, 0x71, 0xe7, 0x1c, 0x25, 0x9b, 0xc1, 0xcd, - 0x6a, 0x01, 0x38, 0xc0, 0xcd, 0xca, 0x33, 0x17, 0xe0, 0x66, 0xe1, 0x5b, 0xc1, 0xb7, 0x82, 0x6f, - 0x05, 0xdf, 0x4a, 0x81, 0x6f, 0x05, 0x6e, 0x36, 0xc5, 0x40, 0xe0, 0x66, 0x55, 0xfb, 0xbf, 0xe0, - 0x66, 0x81, 0x1f, 0x80, 0x1f, 0x80, 0x1f, 0x80, 0x1f, 0x14, 0xe3, 0x07, 0x70, 0xb3, 0x66, 0x39, - 0xdb, 0x5b, 0xc6, 0xcd, 0xa2, 0x8c, 0xd1, 0x26, 0xf6, 0x42, 0x3c, 0x97, 0x51, 0xa8, 0xbb, 0x11, - 0xaf, 0x72, 0x2e, 0x38, 0x2d, 0xe5, 0xd2, 0xf5, 0x6b, 0x1e, 0x1b, 0xea, 0xfe, 0x21, 0x4c, 0xf3, - 0xfb, 0x9e, 0x27, 0x90, 0xe5, 0xbe, 0xb4, 0xbf, 0xd3, 0x3d, 0xfc, 0x3a, 0x74, 0x58, 0xc8, 0x9c, - 0xf7, 0xcf, 0xe3, 0x47, 0xa3, 0x92, 0x95, 0x74, 0xa5, 0xa0, 0xa0, 0xbc, 0x55, 0xc3, 0xed, 0x4e, - 0xaa, 0x11, 0xdd, 0x24, 0xb3, 0x69, 0xc4, 0x93, 0x41, 0x81, 0x2b, 0x13, 0x0b, 0x5c, 0xfd, 0x4a, - 0xe0, 0x94, 0x55, 0x9a, 0xca, 0x52, 0x45, 0x29, 0x76, 0x4a, 0x22, 0xeb, 0x7f, 0x03, 0xd7, 0x67, - 0x8e, 0xb8, 0xc2, 0x01, 0x73, 0xcf, 0xd5, 0xac, 0x6a, 0x40, 0x19, 0x55, 0x03, 0x34, 0x70, 0x28, - 0x51, 0x35, 0x60, 0xfd, 0x37, 0x12, 0x56, 0x35, 0x20, 0x12, 0x2c, 0x1c, 0xb3, 0x07, 0x1e, 0x15, - 0x02, 0x34, 0x64, 0xa2, 0x50, 0x21, 0x40, 0x09, 0x93, 0x84, 0x0a, 0x01, 0xd9, 0xce, 0x01, 0x2a, - 0x04, 0xec, 0x20, 0x2e, 0x48, 0xb5, 0x0a, 0x92, 0xa6, 0x8a, 0xa4, 0xa8, 0x24, 0x33, 0xa8, 0x4a, - 0x54, 0x08, 0x58, 0xa5, 0x0a, 0x5e, 0x2a, 0x04, 0xc4, 0xfc, 0xe6, 0x36, 0x15, 0x08, 0x40, 0x08, - 0xaa, 0x70, 0x37, 0x16, 0xa6, 0x06, 0xa6, 0x06, 0x21, 0xa8, 0x08, 0x41, 0x95, 0x8f, 0x96, 0xc9, - 0x51, 0xb3, 0x0c, 0x95, 0x26, 0x4f, 0xb5, 0xc9, 0x52, 0x71, 0xd2, 0x55, 0x9d, 0x74, 0x95, 0x27, - 0x55, 0xf5, 0xd1, 0xa8, 0x40, 0x22, 0x55, 0x48, 0x8f, 0xbe, 0x17, 0xce, 0x0b, 0x42, 0x50, 0x53, - 0x0c, 0x84, 0x10, 0x54, 0xc5, 0x67, 0x8f, 0x22, 0x04, 0x35, 0x0e, 0x03, 0xa5, 0xc7, 0x0a, 0xa3, - 0x61, 0x80, 0x14, 0x80, 0x14, 0x80, 0x14, 0x80, 0x14, 0x80, 0x14, 0x80, 0x14, 0x80, 0x14, 0x0c, - 0x43, 0x0a, 0xfd, 0x5e, 0xc4, 0x43, 0x66, 0x77, 0x2d, 0xd7, 0xe7, 0x2c, 0x7c, 0xb4, 0x3b, 0xcc, - 0x72, 0x1d, 0x7a, 0xe4, 0xb0, 0x7c, 0x58, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, 0x20, 0x09, 0x93, - 0x90, 0x04, 0xbd, 0xfe, 0xda, 0x41, 0xf2, 0x0a, 0x92, 0x57, 0x56, 0x87, 0x0d, 0xcf, 0x46, 0xc6, - 0x8e, 0xff, 0x8a, 0x7c, 0x95, 0x8d, 0x0c, 0x05, 0xf2, 0x55, 0x90, 0xaf, 0x62, 0x7a, 0xbe, 0xca, - 0x52, 0x3d, 0xa0, 0x36, 0x45, 0x65, 0x0c, 0xf5, 0x90, 0x99, 0x62, 0x78, 0x66, 0xca, 0x5c, 0xf2, - 0x85, 0x89, 0x69, 0x29, 0x51, 0x57, 0x60, 0x2e, 0x4a, 0xd4, 0x45, 0xdb, 0x4a, 0x89, 0xae, 0x24, - 0x12, 0x50, 0x90, 0x80, 0xb2, 0xfa, 0x41, 0x82, 0x3b, 0xfd, 0xd0, 0x74, 0xf8, 0x41, 0x02, 0x0a, - 0x12, 0x50, 0x90, 0x80, 0x22, 0x14, 0xb3, 0x0b, 0x4f, 0x40, 0x89, 0xa2, 0xae, 0x15, 0xda, 0xfe, - 0x13, 0x23, 0xcc, 0x41, 0x99, 0x1a, 0x03, 0x69, 0x28, 0x88, 0x0d, 0x56, 0xa6, 0x88, 0xa4, 0x29, - 0x24, 0x29, 0x8a, 0xc9, 0x0c, 0xd2, 0x11, 0x69, 0x28, 0xab, 0x54, 0x41, 0xe2, 0xc4, 0x76, 0x2c, - 0xbb, 0xe3, 0x9d, 0xd9, 0x1d, 0x6f, 0xea, 0xa3, 0x15, 0x31, 0x1e, 0xcd, 0xfd, 0x7d, 0xf2, 0xd7, - 0x71, 0x5f, 0xcb, 0xf1, 0xdf, 0x62, 0x6a, 0x02, 0x94, 0xe7, 0xb6, 0xf0, 0x5d, 0x51, 0x57, 0x68, - 0xc5, 0x7c, 0x01, 0x04, 0x93, 0x00, 0x57, 0x57, 0x6c, 0x5a, 0x12, 0x49, 0x3a, 0x12, 0x99, 0x2f, - 0x53, 0x86, 0x2f, 0x03, 0x5f, 0x06, 0xbe, 0x0c, 0x7c, 0x19, 0xf8, 0x32, 0xf0, 0x65, 0xe0, 0xcb, - 0xc0, 0x97, 0x81, 0x2f, 0x03, 0x5f, 0x66, 0x6b, 0x7c, 0x19, 0x81, 0x11, 0x3b, 0xb8, 0x2b, 0x57, - 0xba, 0x95, 0x05, 0x21, 0x7e, 0xe0, 0xc6, 0xc1, 0x16, 0x51, 0xd7, 0xc8, 0x9b, 0x79, 0x21, 0x0e, - 0xaf, 0x50, 0x47, 0x17, 0xe5, 0x21, 0x55, 0xe2, 0x47, 0xdc, 0xce, 0x6b, 0xa0, 0x81, 0x05, 0xde, - 0xce, 0xf7, 0x7d, 0xce, 0xc2, 0x88, 0xe2, 0x7e, 0x7e, 0xfc, 0x64, 0xdc, 0xd0, 0x83, 0xd5, 0x02, - 0xab, 0xb5, 0x0d, 0xac, 0xd6, 0x43, 0x10, 0xf0, 0x88, 0x87, 0x76, 0xcf, 0xea, 0xb2, 0x28, 0xb2, - 0x49, 0xd9, 0xad, 0x25, 0x63, 0x81, 0xe5, 0x02, 0xcb, 0x05, 0x96, 0x0b, 0x2c, 0x97, 0x40, 0x79, - 0xef, 0xbb, 0x3e, 0x3f, 0x2c, 0x13, 0x92, 0x5c, 0x14, 0x1c, 0xd7, 0x8d, 0xed, 0x3f, 0x31, 0xb2, - 0x7c, 0x73, 0xc2, 0xa4, 0xbd, 0x4b, 0xd7, 0x97, 0x90, 0x77, 0x4a, 0x9a, 0x6d, 0x9c, 0x0c, 0xf3, - 0xa7, 0xed, 0xf5, 0x99, 0x84, 0x71, 0x3e, 0x86, 0x76, 0x87, 0xbb, 0x81, 0x7f, 0xee, 0x3e, 0xb9, - 0x71, 0x5e, 0x50, 0x91, 0x2e, 0xc7, 0x94, 0x30, 0x7f, 0xf2, 0xd2, 0xfe, 0x9e, 0xbb, 0xad, 0xaf, - 0x94, 0x4f, 0x2b, 0xa7, 0xc7, 0x27, 0xe5, 0xd3, 0xa3, 0x1c, 0xc9, 0x80, 0x21, 0xf9, 0xad, 0xad, - 0x2d, 0x28, 0x91, 0xfb, 0x85, 0x79, 0x5e, 0x20, 0x01, 0x6a, 0xcf, 0x8d, 0x03, 0x98, 0x0d, 0x98, - 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, 0x0d, 0x98, - 0x9d, 0x67, 0x98, 0xfd, 0xbf, 0x81, 0xeb, 0x5b, 0xbd, 0xb0, 0xef, 0x33, 0x09, 0x58, 0x7b, 0xd9, - 0x60, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, - 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0xda, 0x01, 0x6e, 0xc4, 0x9c, 0x8b, 0x0e, 0x54, 0x8e, 0x3b, 0xfe, - 0x09, 0x8e, 0xa2, 0xdb, 0x49, 0x17, 0xbb, 0xfc, 0x61, 0x32, 0x8b, 0x1c, 0x65, 0xf2, 0xfa, 0xcc, - 0x7d, 0xfa, 0xf2, 0x10, 0x84, 0x56, 0xbc, 0xc4, 0xe2, 0xe3, 0x1f, 0xe7, 0x9e, 0x2f, 0x36, 0x0a, - 0xb2, 0x88, 0x28, 0x48, 0x8d, 0x9d, 0x33, 0x44, 0x41, 0x1a, 0x64, 0x2b, 0x84, 0x3b, 0x5b, 0x33, - 0x4e, 0xd6, 0x3b, 0x91, 0xe2, 0x3a, 0x3e, 0xfc, 0x02, 0x61, 0x17, 0x91, 0x4f, 0x45, 0xe0, 0xb9, - 0x52, 0xfa, 0x50, 0xd4, 0x1d, 0x08, 0x88, 0x7d, 0x26, 0x19, 0x38, 0x99, 0xa2, 0xb7, 0x05, 0xa5, - 0x6f, 0x24, 0x6b, 0x4b, 0xcb, 0x47, 0x47, 0x06, 0x6f, 0xaa, 0xa6, 0xce, 0x44, 0x0b, 0x59, 0x96, - 0xa6, 0x67, 0x59, 0x66, 0x4f, 0x96, 0xcd, 0x90, 0xee, 0xf8, 0x46, 0xe2, 0x76, 0x89, 0xda, 0x26, - 0x99, 0xdb, 0x53, 0xc8, 0x94, 0x0f, 0xba, 0xa1, 0xf3, 0x98, 0x4e, 0x0a, 0x36, 0xdf, 0xc3, 0x14, - 0xfb, 0xf7, 0xd2, 0x1d, 0x24, 0xfd, 0x8d, 0xde, 0x62, 0xa7, 0x91, 0xb4, 0xbe, 0x7a, 0xc6, 0x0c, - 0xb7, 0xcc, 0xbe, 0x9c, 0x08, 0xdf, 0x4d, 0x9c, 0xaf, 0x26, 0xca, 0x37, 0x13, 0xee, 0x8b, 0x09, - 0xf7, 0xbd, 0x84, 0xfa, 0x5a, 0x72, 0x75, 0x5f, 0xd6, 0x0c, 0xb2, 0x97, 0x43, 0x23, 0x2e, 0xc3, - 0xfc, 0xe5, 0x91, 0xa8, 0x01, 0x2f, 0x8f, 0x52, 0x41, 0x96, 0x39, 0xb2, 0xcc, 0x57, 0x3f, 0x08, - 0x35, 0xe0, 0x45, 0x3c, 0x10, 0xdc, 0x2a, 0xb8, 0x55, 0x39, 0x4e, 0xb8, 0xc6, 0x19, 0xe6, 0xa1, - 0xc3, 0x42, 0x2b, 0x0c, 0xfa, 0x9c, 0x85, 0x94, 0xc9, 0xe5, 0xd3, 0xc3, 0x08, 0xde, 0xfe, 0x73, - 0xf6, 0x68, 0xf7, 0xbd, 0x78, 0xf7, 0x1f, 0x6d, 0x2f, 0x62, 0x88, 0xef, 0x43, 0x7c, 0x9f, 0x3a, - 0x75, 0x27, 0x4d, 0xed, 0x49, 0x51, 0x7f, 0x44, 0xcc, 0xa6, 0x71, 0xf1, 0x7d, 0x0f, 0x41, 0xe0, - 0x31, 0xdb, 0xa7, 0xac, 0xce, 0x58, 0xda, 0x82, 0xd0, 0xef, 0x87, 0x28, 0xb4, 0x46, 0xb6, 0x80, - 0xd0, 0xd6, 0xbc, 0x8c, 0x01, 0x43, 0x03, 0x43, 0x03, 0x43, 0x03, 0x43, 0x03, 0x43, 0xb3, 0x6d, - 0x86, 0xc6, 0x61, 0xb6, 0x63, 0x71, 0xb7, 0x4b, 0x69, 0x68, 0xa6, 0xc6, 0x80, 0x21, 0x80, 0x21, - 0x80, 0x21, 0x80, 0x21, 0x10, 0x28, 0xef, 0x7d, 0xd7, 0xe7, 0xa5, 0x63, 0x42, 0x3b, 0x70, 0x8c, - 0x8c, 0xa2, 0x97, 0x89, 0xe7, 0x31, 0xa3, 0xa8, 0x84, 0x8c, 0xa2, 0xb5, 0xb6, 0x3e, 0x87, 0x19, - 0x45, 0xc7, 0x47, 0x47, 0x87, 0x48, 0x26, 0x92, 0xfe, 0xd4, 0x6d, 0xc8, 0xde, 0x77, 0x42, 0xab, - 0x17, 0xba, 0x41, 0xe8, 0xf2, 0x67, 0x42, 0x68, 0x3d, 0x35, 0x08, 0xb0, 0x35, 0xb0, 0x35, 0xb0, - 0x35, 0xb0, 0x35, 0x8d, 0x7a, 0xb1, 0xf8, 0x70, 0x34, 0xe4, 0xed, 0x03, 0x65, 0xa7, 0x84, 0x5a, - 0xc8, 0xdb, 0xdf, 0x5a, 0x94, 0x8d, 0xbc, 0x7d, 0x40, 0x6d, 0x4a, 0xa8, 0xcd, 0x7c, 0xfb, 0xc1, - 0x63, 0x0e, 0x1d, 0xcc, 0x9e, 0x0c, 0x80, 0x7b, 0x52, 0x40, 0x78, 0x40, 0x78, 0x40, 0x78, 0x83, - 0x20, 0x3c, 0xee, 0x49, 0x85, 0xbc, 0xeb, 0xa8, 0x14, 0x79, 0x9c, 0xe2, 0xf1, 0xcd, 0xf6, 0xa8, - 0x4b, 0x9e, 0x27, 0xe3, 0xc0, 0x20, 0xc0, 0x20, 0xc0, 0x20, 0xc0, 0x20, 0x08, 0x94, 0xf7, 0x9e, - 0xdb, 0x4d, 0xf4, 0x0b, 0x35, 0xa9, 0x43, 0xe0, 0xef, 0x15, 0x3e, 0xfb, 0x23, 0xd7, 0xae, 0x10, - 0xb1, 0x4e, 0xe0, 0x3b, 0x51, 0x01, 0xc4, 0x51, 0xbe, 0x89, 0x23, 0x5c, 0xcf, 0x6e, 0x2d, 0x71, - 0x44, 0x56, 0xe4, 0x04, 0x8c, 0xd1, 0x76, 0x33, 0x46, 0x49, 0xae, 0xb6, 0xe5, 0x12, 0xd2, 0x46, - 0x33, 0xa3, 0x00, 0xca, 0x03, 0xca, 0x03, 0xca, 0x03, 0xca, 0x9b, 0xa1, 0x5f, 0x66, 0x08, 0x9e, - 0x77, 0xdb, 0xd5, 0x6c, 0x83, 0x9e, 0xe5, 0x59, 0x36, 0x18, 0xec, 0x03, 0xec, 0x03, 0xec, 0x03, - 0xec, 0x03, 0xa8, 0x1e, 0x50, 0x3d, 0xa0, 0x7a, 0x40, 0xf5, 0x80, 0xea, 0x01, 0xd5, 0x03, 0xaa, - 0x27, 0xfb, 0xb6, 0x77, 0x03, 0x87, 0xd1, 0x21, 0xf9, 0xf8, 0xe9, 0x80, 0xee, 0x80, 0xee, 0x80, - 0xee, 0x80, 0xee, 0x22, 0xa9, 0x1d, 0x87, 0xf9, 0xdc, 0xe5, 0xcf, 0x21, 0x7b, 0xa4, 0x64, 0x76, - 0x28, 0x50, 0xfb, 0xc5, 0x78, 0xea, 0xef, 0xed, 0x88, 0xf0, 0x58, 0x4d, 0x16, 0xaa, 0x71, 0x71, - 0xd9, 0xbe, 0xbc, 0x3e, 0xaf, 0x15, 0x28, 0xeb, 0xed, 0x47, 0x64, 0x0e, 0x02, 0xad, 0x93, 0xb0, - 0x74, 0xa5, 0xda, 0xe7, 0xb5, 0xab, 0xdb, 0x5a, 0xc1, 0x44, 0xe4, 0x2b, 0x7b, 0xa5, 0x6e, 0x1b, - 0xd5, 0x1b, 0xd2, 0xa5, 0x22, 0x79, 0x72, 0x6b, 0x6b, 0xfa, 0x35, 0xa0, 0xf9, 0x9b, 0xb0, 0x02, - 0xfd, 0x2f, 0x55, 0xe4, 0x5f, 0x3e, 0x1e, 0x8c, 0xcb, 0xdc, 0xe6, 0xa8, 0xf9, 0x1a, 0xc9, 0xc5, - 0x2f, 0xe5, 0x85, 0x0c, 0x1a, 0xaf, 0xa1, 0x38, 0x30, 0x8a, 0x03, 0x0b, 0xd5, 0xd3, 0x74, 0x8d, - 0xd7, 0x3c, 0x66, 0x3f, 0x8a, 0x45, 0xec, 0x09, 0x52, 0x17, 0x98, 0x1f, 0x5b, 0x68, 0x8c, 0x4d, - 0xc9, 0xfe, 0xfe, 0x58, 0xc3, 0x1f, 0xcc, 0x28, 0xae, 0x5c, 0xaa, 0xfb, 0xe1, 0xb6, 0x10, 0xea, - 0x7b, 0x71, 0xbb, 0xbe, 0xed, 0xd5, 0xe0, 0xdd, 0x47, 0xe8, 0x7b, 0x05, 0xfa, 0xde, 0x7d, 0x44, - 0x2d, 0xf8, 0x35, 0x1f, 0x28, 0xb8, 0xa9, 0xc4, 0xc2, 0x21, 0x10, 0xda, 0x5c, 0x82, 0x48, 0xad, - 0x90, 0xa9, 0x17, 0x4a, 0x35, 0x43, 0xae, 0x6e, 0xa8, 0xd5, 0x8e, 0x34, 0xf5, 0x23, 0x4d, 0x0d, - 0xc9, 0x50, 0x47, 0x44, 0x2c, 0x86, 0xe8, 0x64, 0x70, 0x37, 0xa4, 0x11, 0x76, 0x71, 0xad, 0xae, - 0xd6, 0xc7, 0x43, 0x54, 0xe2, 0x48, 0xdc, 0x5c, 0x95, 0x4a, 0x99, 0xc9, 0x50, 0x6a, 0xd2, 0x94, - 0x9b, 0x2c, 0x25, 0x27, 0x5d, 0xd9, 0x49, 0x57, 0x7a, 0x32, 0x95, 0x1f, 0x8d, 0x12, 0x24, 0x52, - 0x86, 0x74, 0xae, 0xba, 0x44, 0xd7, 0x5d, 0x86, 0x2b, 0xbf, 0xd2, 0xb5, 0x3f, 0x88, 0xc5, 0xe8, - 0x6c, 0x8a, 0xd5, 0x9d, 0xfb, 0xc6, 0xf8, 0xef, 0x71, 0x3f, 0x55, 0x43, 0xa2, 0x55, 0x28, 0x5a, - 0x81, 0x47, 0xfd, 0x07, 0x89, 0xf6, 0x71, 0x66, 0x34, 0x98, 0x48, 0x98, 0x48, 0x98, 0x48, 0x98, - 0x48, 0x98, 0x48, 0x4d, 0x4d, 0xe4, 0xdd, 0x8b, 0x89, 0xfc, 0x9f, 0x4e, 0x3f, 0x0c, 0x99, 0xcf, - 0x77, 0xf7, 0x0e, 0xf6, 0xf7, 0x5f, 0xd8, 0xf2, 0xd6, 0xf8, 0x57, 0xa6, 0xf5, 0x7a, 0xb4, 0xe4, - 0x7b, 0xc9, 0x93, 0x1d, 0xf6, 0xdd, 0x18, 0x6b, 0xab, 0xb5, 0xb7, 0x5c, 0xfb, 0xce, 0x69, 0x82, - 0x72, 0xe8, 0x09, 0x9b, 0xa0, 0x63, 0xb1, 0xef, 0xfc, 0x8c, 0x33, 0x8f, 0x75, 0x19, 0x0f, 0x9f, - 0xad, 0xc0, 0xb7, 0x3a, 0x5f, 0xe2, 0x34, 0x04, 0x29, 0x24, 0x4e, 0x5c, 0x6a, 0x4e, 0x02, 0x8b, - 0xa3, 0x3b, 0x81, 0xd3, 0x12, 0x4d, 0xa8, 0xd3, 0x84, 0x7f, 0xbc, 0x40, 0x55, 0x65, 0x61, 0x20, - 0x33, 0xd7, 0x5c, 0x42, 0x83, 0x42, 0xc4, 0xef, 0xac, 0xc8, 0xd0, 0xf1, 0x88, 0xdb, 0x9c, 0x30, - 0x76, 0x7c, 0xf4, 0x78, 0xc3, 0x68, 0xfe, 0x32, 0x68, 0x7e, 0x69, 0xf0, 0x1e, 0x34, 0x7f, 0xfe, - 0x80, 0x0b, 0x68, 0x7e, 0x70, 0x18, 0xe0, 0x30, 0xc0, 0x61, 0x80, 0xc3, 0x00, 0x87, 0x21, 0x81, - 0xc3, 0x00, 0xcd, 0xbf, 0x03, 0x9a, 0x1f, 0x26, 0x12, 0x26, 0x12, 0x26, 0x12, 0x26, 0x12, 0x26, - 0x12, 0x34, 0xbf, 0x59, 0xde, 0xf2, 0xb6, 0x70, 0xaa, 0x23, 0x2a, 0x10, 0x59, 0x96, 0xea, 0x44, - 0x42, 0x17, 0x51, 0x28, 0x08, 0xe5, 0xaf, 0xc3, 0x7e, 0x87, 0xfb, 0x63, 0xbd, 0x7e, 0x35, 0x9a, - 0xe3, 0xc5, 0x78, 0x8a, 0xed, 0xc6, 0x78, 0x62, 0xed, 0x86, 0xdb, 0x6d, 0x5f, 0x4c, 0xe6, 0xf0, - 0xf2, 0xe9, 0x86, 0x3d, 0xe6, 0x29, 0x15, 0xc8, 0x67, 0xee, 0xd3, 0x97, 0x87, 0x20, 0x8c, 0xc4, - 0xa7, 0x01, 0xbd, 0x3c, 0x5a, 0xf3, 0x14, 0xa0, 0x32, 0x72, 0x3e, 0x0d, 0x42, 0xe3, 0xc8, 0xf9, - 0xd4, 0x38, 0x09, 0x68, 0x72, 0xe6, 0xe9, 0xae, 0x07, 0x93, 0x11, 0x90, 0x08, 0x84, 0xf2, 0x52, - 0xca, 0x29, 0x01, 0x94, 0x97, 0x92, 0xe7, 0xf5, 0x90, 0xdd, 0x11, 0x4e, 0x54, 0x8a, 0x65, 0x3b, - 0x4e, 0xc8, 0xa2, 0x88, 0x9e, 0x0a, 0x5d, 0x18, 0x11, 0x74, 0xa8, 0x6c, 0x25, 0x27, 0x4f, 0xd9, - 0xc9, 0x52, 0x7a, 0xd2, 0x95, 0x9f, 0x74, 0x25, 0x28, 0x55, 0x19, 0xd2, 0x91, 0x4b, 0x3b, 0x20, - 0x44, 0x37, 0xc3, 0x64, 0x32, 0x08, 0xd1, 0xfd, 0xfd, 0x11, 0xdd, 0x74, 0xb0, 0xa0, 0x9b, 0xb7, - 0xf9, 0x82, 0x90, 0x24, 0xd4, 0x6f, 0x41, 0x94, 0x28, 0x42, 0xfe, 0x88, 0x81, 0x3d, 0x19, 0x8b, - 0x00, 0x1b, 0x08, 0x1b, 0x08, 0x1b, 0xa8, 0xa5, 0xa3, 0x90, 0x0c, 0xe0, 0xd0, 0xbb, 0x0a, 0x0b, - 0x47, 0xd3, 0xa1, 0x76, 0x16, 0x24, 0x39, 0x0d, 0xd2, 0x9c, 0x07, 0x99, 0x0a, 0x54, 0xbe, 0x22, - 0x95, 0xad, 0x50, 0x95, 0x29, 0x56, 0x65, 0x0a, 0x56, 0x89, 0xa2, 0xa5, 0x55, 0xb8, 0xc4, 0x8a, - 0x57, 0x9e, 0x13, 0xb2, 0x70, 0xde, 0xdc, 0xde, 0xb7, 0x8a, 0x24, 0xfd, 0x38, 0x03, 0x2a, 0xdf, - 0x49, 0x18, 0xab, 0x61, 0x73, 0xce, 0x42, 0x9f, 0xb4, 0xd8, 0xf6, 0xcc, 0x80, 0xbb, 0xbb, 0x77, - 0x45, 0xeb, 0xb4, 0xf5, 0xf3, 0xae, 0x64, 0x9d, 0xb6, 0x46, 0x1f, 0x4b, 0xf1, 0x1f, 0xa3, 0xcf, - 0xe5, 0xbb, 0xa2, 0x55, 0x99, 0x7c, 0x3e, 0xba, 0x2b, 0x5a, 0x47, 0xad, 0xbd, 0xfb, 0xfb, 0xfd, - 0xbd, 0x1f, 0x87, 0x83, 0xcd, 0x7f, 0x71, 0xf7, 0xbf, 0xef, 0xee, 0xef, 0x7b, 0x3f, 0xae, 0x06, - 0xc3, 0xff, 0xd7, 0x07, 0xad, 0xbf, 0xed, 0xfd, 0x4e, 0x7f, 0xba, 0x5a, 0x6f, 0xcc, 0x3c, 0xbb, - 0x94, 0xdd, 0x73, 0x48, 0x1a, 0x82, 0xac, 0x3c, 0xaf, 0x04, 0x0d, 0x42, 0x80, 0x63, 0x80, 0x63, - 0x80, 0x63, 0x80, 0x63, 0xcc, 0xc6, 0x31, 0xa4, 0x0d, 0x4e, 0x56, 0xc2, 0x98, 0x23, 0x09, 0x63, - 0x49, 0x69, 0x80, 0xb2, 0x72, 0x61, 0x89, 0x1b, 0xa2, 0x2c, 0x8c, 0x2b, 0xa1, 0x41, 0xca, 0xfc, - 0xd7, 0x0f, 0x69, 0x23, 0xed, 0xa8, 0x68, 0xa0, 0x22, 0xf9, 0xf0, 0xeb, 0xb4, 0xb2, 0xd4, 0x0d, - 0x57, 0xe4, 0x6a, 0x6d, 0x39, 0x28, 0x5c, 0x82, 0xf5, 0x31, 0x12, 0xe7, 0x4b, 0x0b, 0x76, 0x58, - 0x10, 0x67, 0x49, 0x41, 0x0f, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0x66, 0xe2, 0x7f, - 0xf0, 0x98, 0xe2, 0x06, 0x04, 0x8f, 0xb9, 0xcd, 0xf8, 0x86, 0x45, 0xdc, 0x7e, 0xf0, 0xdc, 0xe8, - 0x0b, 0x73, 0x14, 0x60, 0x9c, 0xe9, 0xd1, 0x81, 0x73, 0x80, 0x73, 0x80, 0x73, 0x80, 0x73, 0x80, - 0x73, 0x92, 0xf3, 0xc6, 0xdd, 0x2e, 0xe3, 0x6e, 0xe7, 0x6b, 0x74, 0x5c, 0x91, 0x08, 0x73, 0x64, - 0xa0, 0x9c, 0xcf, 0xbe, 0x1b, 0xd7, 0x60, 0x2d, 0xf8, 0xb6, 0x1f, 0x44, 0xac, 0x13, 0xf8, 0x8e, - 0x14, 0x24, 0x77, 0x13, 0x97, 0x4a, 0x95, 0x85, 0xad, 0xe4, 0x31, 0x62, 0x85, 0x4b, 0xd7, 0x97, - 0xa6, 0x2d, 0x25, 0xdb, 0xd4, 0x85, 0x61, 0x63, 0xd6, 0x58, 0xc1, 0xb8, 0x1f, 0x43, 0xbb, 0xc3, - 0xdd, 0xc0, 0x3f, 0x77, 0x9f, 0x46, 0xd2, 0x5b, 0xcc, 0x23, 0x8d, 0x5b, 0xb8, 0xb4, 0xbf, 0x6f, - 0x9d, 0x28, 0x95, 0xde, 0x55, 0x2a, 0xc7, 0x27, 0x95, 0x4a, 0xf1, 0xe4, 0xf0, 0xa4, 0x78, 0x7a, - 0x74, 0x54, 0x3a, 0x96, 0x71, 0xdb, 0xa3, 0x8d, 0x74, 0xbd, 0xc9, 0xc7, 0x28, 0xf0, 0xf4, 0x7e, - 0xe5, 0xe9, 0x7d, 0xef, 0xb9, 0x21, 0x53, 0xc1, 0x64, 0x4f, 0x46, 0x86, 0x87, 0x07, 0x0f, 0x0f, - 0x1e, 0x1e, 0x3c, 0x3c, 0x78, 0x78, 0xf0, 0xf0, 0xe0, 0xe1, 0xc1, 0xc3, 0x83, 0x87, 0x07, 0x0f, - 0x0f, 0x1e, 0x1e, 0x3c, 0xbc, 0x6d, 0xf0, 0xf0, 0x8c, 0x4a, 0x0d, 0x25, 0xae, 0x9c, 0x99, 0x8c, - 0xa3, 0xae, 0x6c, 0x62, 0x52, 0x75, 0x2f, 0xf9, 0x44, 0x51, 0x46, 0x93, 0x6e, 0xf7, 0xf5, 0xae, - 0x41, 0xf4, 0x07, 0x7b, 0x96, 0x10, 0xca, 0x56, 0xa8, 0xbb, 0x11, 0xaf, 0x72, 0x4e, 0x54, 0xef, - 0xe8, 0xd2, 0xf5, 0x6b, 0x1e, 0x1b, 0x3a, 0x50, 0x43, 0x55, 0xed, 0xf7, 0x3d, 0x8f, 0xa0, 0x74, - 0xc4, 0xa5, 0xfd, 0x9d, 0x7e, 0x90, 0xeb, 0xd0, 0x61, 0x21, 0x73, 0xde, 0x3f, 0x8f, 0x87, 0x40, - 0xd5, 0x5e, 0x4d, 0x74, 0x4e, 0x81, 0xa4, 0x18, 0x49, 0x8a, 0xba, 0xad, 0x57, 0x93, 0x09, 0xa1, - 0x8a, 0xb0, 0x3a, 0x11, 0xd5, 0x41, 0x34, 0xf3, 0x54, 0xb4, 0x57, 0x6c, 0x59, 0x1e, 0x92, 0x32, - 0x3c, 0x28, 0xd6, 0x8b, 0x62, 0xbd, 0x28, 0xd6, 0x2b, 0x54, 0x39, 0x0b, 0x2f, 0xd6, 0xfb, 0x10, - 0x0c, 0xe1, 0x93, 0x15, 0x06, 0x7d, 0xce, 0x08, 0x2b, 0xf6, 0xce, 0x0e, 0x23, 0xba, 0x28, 0x28, - 0x7b, 0xb4, 0xfb, 0x5e, 0xbc, 0xfb, 0x71, 0x07, 0x5f, 0xa2, 0xb2, 0xc0, 0x45, 0x94, 0x05, 0x46, - 0x59, 0x60, 0x8d, 0xd4, 0x9e, 0x14, 0xf5, 0x67, 0x86, 0x4b, 0x4e, 0x76, 0xb5, 0x35, 0xa5, 0xc0, - 0x02, 0x8f, 0xd9, 0x3e, 0x85, 0xc0, 0x4f, 0x50, 0x52, 0x69, 0x0b, 0xfa, 0x46, 0x3f, 0x44, 0xa1, - 0x35, 0xb2, 0x05, 0x84, 0xb6, 0xe6, 0x65, 0x0c, 0x18, 0x1a, 0x18, 0x1a, 0x18, 0x1a, 0x18, 0x1a, - 0x18, 0x9a, 0x6d, 0x33, 0x34, 0x9d, 0xa0, 0xef, 0x73, 0x16, 0x46, 0x74, 0x66, 0x26, 0x19, 0x01, - 0x4d, 0x48, 0x60, 0x04, 0x60, 0x04, 0xb6, 0xc8, 0x08, 0x90, 0x35, 0x21, 0x79, 0x08, 0x02, 0x1e, - 0xf1, 0xd0, 0xee, 0x59, 0x5d, 0x16, 0x45, 0xf6, 0x13, 0x93, 0xd0, 0x86, 0x64, 0xc9, 0x98, 0x68, - 0x44, 0x22, 0x5b, 0xd1, 0xc9, 0x53, 0x78, 0xb2, 0x14, 0x9f, 0x74, 0x05, 0x28, 0x5d, 0x11, 0x4a, - 0x55, 0x88, 0x34, 0x8a, 0x91, 0x48, 0x41, 0xd2, 0xa3, 0xe5, 0x85, 0xf3, 0xd2, 0x77, 0x7d, 0x7e, - 0x58, 0x96, 0xd0, 0x87, 0x84, 0xb2, 0x0d, 0x89, 0x9c, 0xe0, 0x5e, 0x09, 0xf1, 0xdf, 0x32, 0x83, - 0x79, 0x25, 0x47, 0x5e, 0xca, 0x0e, 0xde, 0x55, 0x11, 0x56, 0x29, 0x21, 0x58, 0x57, 0x6a, 0x90, - 0xae, 0x2a, 0x11, 0xa9, 0x94, 0x4f, 0x2b, 0xa7, 0xc7, 0x27, 0xe5, 0xd3, 0xa3, 0x1c, 0xcb, 0x8a, - 0xa1, 0x21, 0xab, 0xad, 0x2d, 0xee, 0xe8, 0xf4, 0x85, 0x79, 0x5e, 0x20, 0xd1, 0xc5, 0x98, 0x1b, - 0x0f, 0xee, 0x05, 0xdc, 0x0b, 0xb8, 0x17, 0x70, 0x2f, 0xe0, 0x5e, 0xc0, 0xbd, 0x80, 0x7b, 0x01, - 0xf7, 0x02, 0xee, 0x05, 0xdc, 0x0b, 0xb8, 0x17, 0xf9, 0x71, 0x2f, 0xfe, 0x37, 0x70, 0x7d, 0xab, - 0x17, 0xf6, 0x7d, 0x26, 0xd1, 0xc7, 0x58, 0x36, 0x28, 0x1c, 0x0d, 0x38, 0x1a, 0x70, 0x34, 0xe0, - 0x68, 0xc0, 0xd1, 0x80, 0xa3, 0x01, 0x47, 0x03, 0x8e, 0x06, 0x1c, 0x0d, 0x38, 0x1a, 0x70, 0x34, - 0x14, 0x39, 0x1a, 0x48, 0xcb, 0x57, 0x92, 0xfb, 0x1c, 0xe7, 0xf3, 0x1e, 0x10, 0xc5, 0xaa, 0xee, - 0xa4, 0x4e, 0xc9, 0xff, 0x30, 0x99, 0xd0, 0x16, 0x84, 0x22, 0x3b, 0xcc, 0x76, 0x2c, 0xee, 0x76, - 0x29, 0x73, 0x5e, 0xa6, 0xc6, 0x40, 0x4e, 0x0a, 0xc2, 0x91, 0x95, 0x7b, 0xb1, 0x08, 0x47, 0x96, - 0x67, 0xbc, 0xe8, 0x73, 0x52, 0x86, 0x5e, 0x69, 0xe9, 0x98, 0x30, 0x25, 0xe5, 0x98, 0xe0, 0xd1, - 0xb4, 0x5e, 0x28, 0x21, 0x17, 0x20, 0xc3, 0xeb, 0x94, 0x55, 0x4e, 0x3a, 0xa9, 0x4f, 0x48, 0x3c, - 0x8e, 0x44, 0x8f, 0x81, 0xb2, 0x9c, 0xb9, 0x0c, 0x6f, 0x52, 0xf6, 0xd6, 0x1f, 0x1f, 0x1d, 0x1d, - 0x1e, 0xe5, 0x68, 0xfb, 0x0d, 0x71, 0xb8, 0x5a, 0xdb, 0x80, 0xac, 0x43, 0xab, 0x17, 0xba, 0x41, - 0xe8, 0xf2, 0x67, 0x42, 0x68, 0x3d, 0x35, 0x08, 0xb0, 0x35, 0xb0, 0x35, 0xb0, 0x35, 0xb0, 0x35, - 0x8d, 0x7a, 0xb1, 0xf8, 0x70, 0x34, 0x3a, 0x94, 0x7d, 0x02, 0x94, 0x9d, 0x6f, 0x94, 0x5d, 0x04, - 0xca, 0xde, 0x56, 0x94, 0x2d, 0xeb, 0x8e, 0x06, 0x50, 0x7b, 0x3b, 0xa1, 0x36, 0xf3, 0xed, 0x07, - 0x8f, 0xa0, 0x8b, 0x72, 0x62, 0x07, 0x27, 0x03, 0xa0, 0x64, 0x13, 0x20, 0x3c, 0x20, 0x3c, 0x20, - 0xbc, 0x41, 0x10, 0x1e, 0x25, 0x9b, 0x84, 0xbc, 0xeb, 0x28, 0x4d, 0x30, 0xbe, 0xba, 0xfe, 0x66, - 0x7b, 0x74, 0x96, 0x66, 0x6e, 0x1c, 0x18, 0x04, 0x18, 0x04, 0x18, 0x04, 0x18, 0x04, 0x81, 0xf2, - 0xde, 0x73, 0xbb, 0x89, 0x7e, 0xa1, 0x26, 0x75, 0x08, 0xfc, 0xbd, 0x97, 0xee, 0x86, 0x74, 0x9d, - 0x0d, 0x41, 0x1c, 0xe9, 0xc4, 0x1e, 0xe0, 0x7a, 0x76, 0x6b, 0x89, 0xa3, 0xf2, 0x11, 0x18, 0x23, - 0x30, 0x46, 0x04, 0x70, 0x3e, 0x89, 0x41, 0xb5, 0x5c, 0x42, 0xda, 0x68, 0x66, 0x14, 0x40, 0x79, - 0x40, 0x79, 0x40, 0x79, 0x40, 0x79, 0x33, 0xf4, 0xcb, 0x0c, 0xc1, 0xf3, 0x6e, 0x0b, 0x2c, 0xc2, - 0x54, 0x8e, 0x36, 0x3d, 0xcb, 0xb3, 0x6c, 0x30, 0xd8, 0x07, 0xd8, 0x07, 0xd8, 0x07, 0xd8, 0x07, - 0x50, 0x3d, 0xa0, 0x7a, 0x40, 0xf5, 0x80, 0xea, 0x01, 0xd5, 0x03, 0xaa, 0x07, 0x54, 0x4f, 0xf6, - 0x6d, 0xef, 0x06, 0x0e, 0xa3, 0x43, 0xf2, 0xf1, 0xd3, 0x01, 0xdd, 0x01, 0xdd, 0x01, 0xdd, 0x01, - 0xdd, 0x45, 0x52, 0x3b, 0x0e, 0xf3, 0xb9, 0xcb, 0x9f, 0x43, 0xf6, 0x48, 0xc9, 0xec, 0x50, 0xa0, - 0xf6, 0x8b, 0xf1, 0xd4, 0xdf, 0xdb, 0x11, 0xa3, 0xaf, 0xad, 0xd7, 0xb8, 0xb8, 0x6c, 0x5f, 0x5e, - 0x9f, 0xd7, 0xa8, 0x4e, 0x55, 0x8c, 0x4f, 0x22, 0xd2, 0x82, 0x51, 0xc4, 0x40, 0x6e, 0x7e, 0xa5, - 0xda, 0xe7, 0xb5, 0xab, 0xdb, 0x5a, 0xc1, 0x44, 0xe4, 0x2b, 0x7b, 0xa5, 0x6e, 0x1b, 0xd5, 0x1b, - 0xd2, 0xa5, 0x22, 0x79, 0x72, 0x4b, 0x77, 0x6d, 0x9c, 0xd3, 0xfe, 0xf7, 0x44, 0x85, 0x7a, 0x54, - 0x17, 0xe8, 0x11, 0x23, 0xfe, 0xd9, 0xb7, 0x2a, 0xdb, 0x13, 0x32, 0x6e, 0xf2, 0x10, 0xc6, 0x09, - 0xbe, 0x72, 0x29, 0xd4, 0xdd, 0x88, 0x57, 0x39, 0x17, 0x53, 0x79, 0xa7, 0x70, 0xe9, 0xfa, 0x35, - 0x8f, 0x0d, 0x71, 0xd9, 0xd0, 0x5a, 0xf9, 0x7d, 0xcf, 0x7b, 0xfb, 0x46, 0x04, 0xd3, 0x20, 0xfe, - 0xa1, 0xd7, 0xa1, 0xc3, 0x42, 0xe6, 0xbc, 0x7f, 0x1e, 0x3f, 0x52, 0xe9, 0xbe, 0x0a, 0x3e, 0xb4, - 0xea, 0x0e, 0xab, 0x00, 0x00, 0x94, 0xaa, 0x5c, 0x56, 0x36, 0xf5, 0x90, 0xfe, 0x50, 0xa7, 0xfb, - 0xcd, 0x94, 0xe2, 0x22, 0x4a, 0x4c, 0x64, 0x8b, 0x47, 0xba, 0xcd, 0xd9, 0x7c, 0x69, 0x37, 0xfb, - 0x8d, 0x0d, 0x37, 0x21, 0xeb, 0xe2, 0x4b, 0x59, 0xf4, 0x14, 0xc7, 0x6f, 0x83, 0xe3, 0xb6, 0xd9, - 0x3e, 0xae, 0xbf, 0x1b, 0x1b, 0xec, 0x44, 0x61, 0x04, 0x06, 0x36, 0xdd, 0x80, 0x04, 0x54, 0x8f, - 0x7e, 0x7d, 0xc3, 0x9d, 0x4f, 0xd7, 0x6f, 0xfa, 0x85, 0xea, 0x2a, 0x6f, 0xf8, 0x8b, 0x19, 0xa8, - 0xac, 0x69, 0xaa, 0xca, 0x67, 0x7c, 0x28, 0x2e, 0x69, 0x64, 0x22, 0x23, 0x1d, 0x25, 0x8c, 0x6e, - 0x12, 0x46, 0x27, 0xcd, 0xd3, 0x45, 0x93, 0xb5, 0xd1, 0x4c, 0xc7, 0xa4, 0xed, 0x9b, 0x5c, 0x70, - 0x46, 0x49, 0x9c, 0x56, 0x97, 0xf1, 0xd0, 0xed, 0xa4, 0xdf, 0xb8, 0x97, 0x6a, 0x89, 0x33, 0xcf, - 0x4b, 0xb9, 0xe8, 0xd9, 0x38, 0xe4, 0xcc, 0x5c, 0xb1, 0x08, 0x4e, 0x58, 0xcc, 0x81, 0x12, 0x75, - 0xb0, 0xc8, 0xf8, 0x5c, 0xe1, 0xbc, 0xad, 0xb0, 0x03, 0xa7, 0x06, 0x69, 0x65, 0xe6, 0x56, 0xc5, - 0xd5, 0xab, 0x17, 0x50, 0x9b, 0x44, 0x50, 0x7c, 0x81, 0x18, 0xff, 0x50, 0x18, 0x2d, 0x21, 0xf8, - 0x8a, 0x4a, 0x74, 0x8d, 0x10, 0x8a, 0xab, 0xde, 0x81, 0x18, 0x6f, 0x5a, 0xfb, 0x2d, 0x10, 0x5d, - 0xab, 0x83, 0x64, 0x2f, 0x14, 0xb9, 0x9c, 0x2d, 0x59, 0xde, 0x54, 0x0a, 0xdc, 0x98, 0xb5, 0x06, - 0x86, 0xa0, 0x5a, 0x17, 0x00, 0x1e, 0x00, 0x1e, 0x5b, 0x0f, 0x3c, 0xb2, 0xd7, 0x5c, 0xc8, 0x58, - 0x5b, 0x41, 0x8e, 0xca, 0x19, 0xdd, 0x51, 0x3f, 0xba, 0x19, 0x6a, 0xc7, 0xcf, 0xdd, 0x77, 0xc7, - 0xcf, 0x82, 0xe2, 0x81, 0xe2, 0x81, 0xe2, 0xc9, 0x70, 0x8a, 0xb2, 0x46, 0x8d, 0x88, 0x88, 0x0e, - 0x11, 0x1b, 0x05, 0x92, 0xbc, 0xe0, 0xc5, 0xd5, 0x6d, 0xb3, 0x5a, 0xaf, 0xb7, 0x1b, 0x37, 0xd7, - 0xcd, 0xeb, 0x0f, 0xd7, 0xf5, 0x76, 0xf3, 0xaf, 0x46, 0xd6, 0xd0, 0x0f, 0x91, 0x21, 0x1e, 0x82, - 0xb0, 0x7d, 0xf2, 0xba, 0x9f, 0x2e, 0x1b, 0x05, 0x1d, 0x5c, 0x17, 0xc1, 0xef, 0x55, 0xbf, 0xfe, - 0x50, 0xad, 0xb7, 0xab, 0x9f, 0x3e, 0xdd, 0xd4, 0x3e, 0x55, 0x9b, 0xb5, 0x3c, 0xbe, 0xe2, 0xc5, - 0xed, 0xc5, 0x6d, 0x1e, 0xdf, 0xeb, 0xfc, 0xe2, 0xa6, 0xf6, 0xa1, 0x59, 0xff, 0xab, 0xfd, 0xe1, - 0xfa, 0xea, 0xaa, 0xf6, 0xa1, 0x59, 0x3b, 0xcf, 0xe3, 0x5b, 0x36, 0x2e, 0x2e, 0xf3, 0xf8, 0x5a, - 0xd7, 0xb7, 0x8d, 0x8f, 0x87, 0x79, 0x7c, 0xb1, 0xdb, 0x66, 0xb5, 0x79, 0xf1, 0x21, 0xaf, 0x5b, - 0x96, 0xc7, 0xf7, 0x7a, 0xff, 0x49, 0x84, 0x65, 0xcb, 0xf4, 0x84, 0x96, 0x6c, 0x7c, 0x28, 0xc5, - 0x2b, 0x1b, 0x5f, 0x27, 0x67, 0xf4, 0xc7, 0xe2, 0xa7, 0xc0, 0x13, 0x83, 0x27, 0x06, 0x4f, 0x2c, - 0x95, 0xdc, 0x44, 0x3c, 0x74, 0xfd, 0x27, 0x11, 0x4e, 0xd8, 0x3b, 0x84, 0xf0, 0xc8, 0x08, 0xe1, - 0x49, 0x11, 0xea, 0x4a, 0x17, 0x66, 0xe3, 0x76, 0xac, 0x30, 0xe8, 0xf3, 0xd8, 0x29, 0xcd, 0x10, - 0x6e, 0xf3, 0xf2, 0x18, 0xc9, 0x61, 0x37, 0x45, 0x35, 0x61, 0x37, 0x5e, 0xd0, 0xb1, 0x42, 0x44, - 0xdd, 0x2c, 0x53, 0xc4, 0xe3, 0xa5, 0xc9, 0x4b, 0xd0, 0xcd, 0x48, 0xba, 0xb3, 0xc3, 0x9c, 0xf1, - 0x73, 0xb2, 0x01, 0x9d, 0x52, 0x4e, 0x80, 0x4e, 0xea, 0xe3, 0x03, 0x9c, 0x93, 0xf6, 0x78, 0xa9, - 0x81, 0x39, 0x69, 0x8f, 0x5d, 0xf2, 0x80, 0xce, 0x44, 0x72, 0x05, 0xd1, 0xba, 0xe3, 0xe7, 0x65, - 0x4d, 0xd1, 0xc8, 0x74, 0x1c, 0x85, 0x1d, 0x4b, 0x91, 0xc7, 0x93, 0xe4, 0x98, 0x8a, 0x3e, 0xae, - 0x64, 0xc7, 0x96, 0xec, 0xf8, 0x52, 0x1d, 0x63, 0x31, 0xbc, 0x44, 0xd6, 0x94, 0x96, 0xac, 0xc7, - 0x3b, 0x79, 0x90, 0xc3, 0xa2, 0x4e, 0xe8, 0xf6, 0x84, 0x66, 0xb4, 0x4d, 0xc5, 0xb9, 0xbe, 0x3c, - 0xfc, 0xad, 0x96, 0x21, 0x51, 0xa2, 0x0b, 0x26, 0x50, 0x14, 0x4a, 0x20, 0x51, 0x0c, 0x54, 0x0a, - 0x82, 0x5c, 0x51, 0x90, 0x2b, 0x0c, 0x6a, 0xc5, 0x21, 0x46, 0x81, 0x08, 0x52, 0x24, 0xe2, 0x68, - 0x11, 0x3a, 0x9a, 0x44, 0x30, 0x6d, 0x22, 0x7e, 0x1f, 0x44, 0xc4, 0x8d, 0xf6, 0xc4, 0xea, 0x8d, - 0x97, 0xfa, 0x70, 0x42, 0x8d, 0x34, 0xb4, 0x2f, 0xb4, 0x2f, 0xb4, 0xaf, 0x49, 0xda, 0xd7, 0xed, - 0x59, 0xc2, 0x05, 0x20, 0x51, 0xc0, 0xa7, 0x02, 0x9f, 0x39, 0x5e, 0x02, 0xb1, 0x25, 0x58, 0x28, - 0xab, 0xf7, 0xf4, 0xbe, 0x55, 0x2c, 0xb2, 0x6a, 0x4f, 0x2f, 0x36, 0x8e, 0xe0, 0xd9, 0x0d, 0x9b, - 0x73, 0x16, 0xfa, 0x64, 0x05, 0x6f, 0x0a, 0xff, 0xda, 0xdd, 0xbd, 0x2b, 0x5a, 0xa7, 0xad, 0x9f, - 0x77, 0x25, 0xeb, 0xb4, 0x35, 0xfa, 0x58, 0x8a, 0xff, 0x18, 0x7d, 0x2e, 0xdf, 0x15, 0xad, 0xca, - 0xe4, 0xf3, 0xd1, 0x5d, 0xd1, 0x3a, 0x6a, 0xed, 0xdd, 0xdf, 0xef, 0xef, 0xfd, 0x38, 0x1c, 0x6c, - 0xfe, 0x8b, 0x07, 0xe3, 0xc1, 0xf6, 0x7e, 0xee, 0xde, 0x95, 0xac, 0x72, 0x6b, 0xf2, 0x97, 0xc3, - 0xbb, 0xa2, 0x55, 0x6e, 0xed, 0xed, 0xfd, 0x57, 0x41, 0xf7, 0x9a, 0x7a, 0x6f, 0x0d, 0x92, 0xf9, - 0x63, 0xc8, 0xfc, 0x2f, 0x65, 0xde, 0xb6, 0x1e, 0xab, 0xd6, 0xc7, 0xd6, 0x8f, 0xd2, 0xdb, 0xca, - 0xe0, 0x6c, 0xef, 0xc7, 0xc9, 0x60, 0xfe, 0x9b, 0x3f, 0x97, 0xfd, 0x58, 0xe9, 0xed, 0xc9, 0xe0, - 0x6c, 0xc5, 0xbf, 0x1c, 0x0f, 0xce, 0xd6, 0x7c, 0xc6, 0xd1, 0x60, 0x77, 0xe1, 0x47, 0x87, 0xdf, - 0x2f, 0xaf, 0xfa, 0x85, 0xca, 0x8a, 0x5f, 0x38, 0x5c, 0xf5, 0x0b, 0x87, 0x2b, 0x7e, 0x61, 0xe5, - 0x94, 0xca, 0x2b, 0x7e, 0xe1, 0x68, 0xf0, 0x73, 0xe1, 0xe7, 0x77, 0x97, 0xff, 0xe8, 0xf1, 0x60, - 0xef, 0xe7, 0xaa, 0x7f, 0x3b, 0x19, 0xfc, 0x3c, 0xdb, 0xdb, 0x3b, 0xd8, 0x2d, 0x0d, 0x15, 0xc3, - 0xbb, 0x91, 0xae, 0x28, 0xb5, 0x16, 0x54, 0xc8, 0x48, 0x25, 0xe8, 0xaf, 0x08, 0xde, 0xe8, 0x35, - 0x2f, 0x3d, 0x3c, 0xa3, 0x88, 0x71, 0x8b, 0xdb, 0x4f, 0xe2, 0x5d, 0xa3, 0xc9, 0x83, 0xe1, 0x1b, - 0xc1, 0x37, 0x82, 0x6f, 0xb4, 0x85, 0xbe, 0x11, 0xb7, 0x9f, 0x44, 0x97, 0xcc, 0x87, 0x6b, 0x24, - 0x22, 0x29, 0xff, 0xb5, 0xd5, 0x3d, 0x41, 0x93, 0x80, 0x97, 0x89, 0xe7, 0xb1, 0x49, 0x40, 0x11, - 0x4d, 0x02, 0xd6, 0xda, 0xfa, 0x1c, 0x36, 0x09, 0x10, 0x5d, 0x9c, 0x40, 0x0b, 0x19, 0xd8, 0xce, - 0x5e, 0x01, 0xc6, 0xf0, 0x1a, 0x5f, 0xd8, 0x77, 0x4b, 0xf8, 0x35, 0x55, 0x3e, 0x68, 0x8d, 0x19, - 0xb7, 0x7e, 0xde, 0x9b, 0x2f, 0x0f, 0xf6, 0x7e, 0xdb, 0xfb, 0x1d, 0x6e, 0xb5, 0x74, 0xb7, 0x1a, - 0xe5, 0x54, 0x37, 0x8d, 0xfb, 0x4e, 0xe2, 0xa4, 0xc7, 0x7f, 0x3b, 0x18, 0xc7, 0xa3, 0xa9, 0xaa, - 0x6c, 0x9a, 0x21, 0x02, 0xd3, 0x67, 0xdf, 0xb9, 0xf5, 0x25, 0xe8, 0x45, 0xe2, 0x82, 0xf3, 0x5e, - 0x1e, 0x89, 0xf8, 0x3c, 0xa9, 0x64, 0x07, 0xe2, 0xf3, 0x10, 0x9f, 0xb7, 0xd6, 0x61, 0x17, 0x4f, - 0x7f, 0x26, 0x4f, 0x16, 0xcb, 0x7f, 0x96, 0xc0, 0x7f, 0x0a, 0x7a, 0x38, 0xf8, 0x4f, 0xc9, 0x2a, - 0x43, 0x2c, 0x60, 0x14, 0xc5, 0x7f, 0x8a, 0x52, 0x25, 0xc9, 0x03, 0x05, 0x45, 0xf6, 0xaf, 0x3c, - 0x0c, 0x42, 0x22, 0xfd, 0x89, 0xd5, 0x0b, 0x99, 0x9a, 0xa1, 0x54, 0x37, 0x52, 0xd4, 0x0e, 0xb5, - 0xfa, 0x91, 0xa6, 0x86, 0xa4, 0xa9, 0x23, 0x59, 0x6a, 0x89, 0x86, 0xf7, 0x11, 0xdd, 0x37, 0x4d, - 0xb4, 0xba, 0x4a, 0x1e, 0xec, 0xfa, 0x0e, 0xfb, 0x4e, 0xdf, 0x6c, 0x6c, 0x34, 0x0c, 0x91, 0x84, - 0xd0, 0x72, 0xa9, 0x64, 0xca, 0x4c, 0x86, 0x52, 0x93, 0xaa, 0xdc, 0x64, 0x29, 0x39, 0xe9, 0xca, - 0x4e, 0xba, 0xd2, 0x93, 0xad, 0xfc, 0x68, 0x94, 0x20, 0x91, 0x32, 0x4c, 0x16, 0x87, 0xac, 0x99, - 0xe4, 0xc2, 0xa9, 0x21, 0xa3, 0xb1, 0x17, 0x80, 0xd8, 0x3b, 0x43, 0x2e, 0x35, 0x08, 0xf6, 0xb4, - 0x90, 0xb1, 0x11, 0xc4, 0xda, 0xbb, 0x99, 0xa9, 0x41, 0x04, 0xac, 0x11, 0xac, 0x11, 0xac, 0x11, - 0xac, 0x91, 0x42, 0x6b, 0x44, 0x16, 0x09, 0x34, 0xaf, 0xc3, 0x4e, 0x08, 0x87, 0xa0, 0x8d, 0x0c, - 0x9a, 0x7c, 0xd1, 0x1e, 0xf9, 0x1d, 0x59, 0x91, 0x42, 0x92, 0x8c, 0xcb, 0xc2, 0x70, 0x92, 0x22, - 0x87, 0x92, 0xf1, 0x24, 0x46, 0x8f, 0x10, 0xab, 0x83, 0x59, 0x11, 0x91, 0x10, 0x51, 0xa4, 0x5a, - 0x44, 0x64, 0x45, 0x18, 0x29, 0x95, 0x95, 0x37, 0x66, 0x3e, 0xbd, 0xb5, 0xc5, 0x4e, 0x85, 0xf0, - 0xab, 0xbe, 0x95, 0x66, 0x59, 0xf0, 0xd5, 0x1f, 0x1c, 0x0b, 0x38, 0x16, 0x70, 0x2c, 0xe0, 0x58, - 0xc8, 0x74, 0x2c, 0x7c, 0x71, 0x35, 0x85, 0x7e, 0xa5, 0xc2, 0x44, 0xe6, 0x71, 0xac, 0x5a, 0x2e, - 0xe3, 0xfd, 0x8a, 0xa9, 0x5a, 0x03, 0xb6, 0xe3, 0x84, 0x2c, 0x8a, 0x0a, 0x12, 0xa0, 0xaa, 0x84, - 0x1d, 0x92, 0xbb, 0x53, 0xf2, 0x76, 0x6c, 0xc9, 0xce, 0x7d, 0xab, 0x48, 0xdc, 0xbb, 0x85, 0x3d, - 0x7c, 0x27, 0x71, 0x4c, 0xea, 0x90, 0xe9, 0x95, 0x03, 0x4b, 0xad, 0x8a, 0xf0, 0x5f, 0x05, 0x69, - 0x2f, 0xd7, 0x92, 0x32, 0xd2, 0xe0, 0x6d, 0x8e, 0x0f, 0xdf, 0x31, 0x0e, 0x9f, 0x9c, 0xc3, 0x87, - 0xf2, 0x0c, 0xf2, 0xcb, 0x33, 0xe4, 0x4f, 0x15, 0xbd, 0x31, 0xfb, 0x3d, 0x88, 0x55, 0xa9, 0x44, - 0xc4, 0xe9, 0x05, 0x1d, 0xdb, 0xb3, 0x1c, 0xf6, 0xe8, 0xfa, 0xcc, 0xb1, 0x88, 0x69, 0x8d, 0xa5, - 0xca, 0x53, 0x02, 0x87, 0x28, 0xb6, 0xcf, 0xde, 0xc6, 0x6b, 0x3c, 0x6a, 0xe4, 0x76, 0x5e, 0xfb, - 0x78, 0x71, 0x55, 0x3b, 0x6f, 0x5f, 0xd5, 0xfe, 0xd9, 0x6c, 0xff, 0xfd, 0xba, 0x51, 0x90, 0x49, - 0xda, 0x46, 0x52, 0xed, 0xc5, 0x0f, 0xb9, 0x96, 0x29, 0xe9, 0xba, 0x76, 0x73, 0xdd, 0x90, 0xa7, - 0x29, 0x07, 0x6f, 0xf3, 0xbe, 0x9e, 0x23, 0xb9, 0xad, 0x5f, 0x5c, 0xfd, 0x21, 0x71, 0x55, 0xdf, - 0xe4, 0xc3, 0xca, 0xe1, 0xfa, 0x80, 0x76, 0xbe, 0x14, 0xd7, 0x07, 0x21, 0xeb, 0xf4, 0x43, 0x42, - 0x03, 0x91, 0x1c, 0xac, 0xc9, 0x40, 0x44, 0x24, 0xe2, 0x39, 0x7b, 0xb4, 0xfb, 0x5e, 0x4c, 0xb0, - 0x3e, 0xda, 0x1e, 0xdd, 0x38, 0xb8, 0xa4, 0x58, 0x7f, 0xcb, 0x71, 0x49, 0x91, 0x65, 0x40, 0x5c, - 0x52, 0x68, 0x84, 0x50, 0x24, 0x5e, 0x52, 0x3c, 0x04, 0x81, 0xc7, 0x6c, 0x29, 0xd7, 0x14, 0x25, - 0x53, 0x0c, 0x9f, 0xd6, 0xb9, 0x2b, 0x82, 0x2b, 0x1b, 0x2c, 0x3c, 0x5f, 0x4d, 0xa5, 0x83, 0x24, - 0xb9, 0x3f, 0xf9, 0x24, 0xa4, 0xf8, 0x01, 0xdd, 0xd6, 0x0a, 0xdc, 0x56, 0xa2, 0xac, 0x21, 0xd2, - 0x6c, 0x21, 0x22, 0x64, 0x82, 0x54, 0x47, 0x55, 0xc8, 0x03, 0xa9, 0x8e, 0xf9, 0x34, 0x17, 0x64, - 0x48, 0xe2, 0x85, 0xdf, 0x64, 0xf6, 0x63, 0xc8, 0x1e, 0x29, 0xab, 0x52, 0x9d, 0xd0, 0x54, 0xa5, - 0x8a, 0x2d, 0xdc, 0xfe, 0xfe, 0xd8, 0xd2, 0x1c, 0x8c, 0xf4, 0xe4, 0x56, 0xd8, 0x1b, 0xce, 0xc2, - 0x47, 0xbb, 0xc3, 0xac, 0xe1, 0xbe, 0x11, 0xda, 0x9d, 0xe9, 0x61, 0x90, 0x6a, 0x2f, 0xc3, 0xfe, - 0xb8, 0x8f, 0xb0, 0x3d, 0x1a, 0xda, 0x1e, 0xf7, 0x11, 0x29, 0xf6, 0x82, 0x1e, 0x4c, 0x54, 0x19, - 0x64, 0xe1, 0x30, 0x91, 0x54, 0x08, 0x21, 0x56, 0x5f, 0xe4, 0x6a, 0x4c, 0x86, 0x3a, 0x93, 0xa6, - 0xd6, 0x64, 0xa9, 0x37, 0xe9, 0x6a, 0x4e, 0xba, 0xba, 0x93, 0xa9, 0xf6, 0xe8, 0x78, 0x9f, 0x1d, - 0x42, 0x42, 0x8f, 0x4a, 0x1d, 0x2e, 0x62, 0x3a, 0x7a, 0x31, 0x5e, 0xc0, 0x77, 0xd4, 0x62, 0x2c, - 0xa9, 0xba, 0x33, 0xb5, 0xd2, 0x94, 0xa9, 0x3c, 0xa5, 0x2b, 0x51, 0xd9, 0xca, 0x54, 0x99, 0x52, - 0x55, 0xa6, 0x5c, 0x55, 0x28, 0x59, 0x5a, 0x65, 0x4b, 0xac, 0x74, 0xe9, 0x39, 0x10, 0x05, 0x9c, - 0x88, 0x4c, 0x8e, 0x64, 0x25, 0x67, 0x72, 0x10, 0x8b, 0xdd, 0x59, 0x62, 0x00, 0xa2, 0xf9, 0x6f, - 0x8c, 0xff, 0xee, 0x0f, 0x97, 0xc3, 0xd0, 0x30, 0x0d, 0xca, 0x9e, 0x08, 0x51, 0xff, 0x41, 0x81, - 0xbd, 0x9e, 0x19, 0x15, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x3b, - 0xfe, 0xc6, 0xdd, 0x8b, 0xc9, 0xfe, 0x9f, 0x4e, 0x3f, 0x0c, 0x99, 0xcf, 0x77, 0xf7, 0x0e, 0xf6, - 0xf7, 0x0f, 0x92, 0x9f, 0x68, 0x8d, 0x7f, 0x65, 0xda, 0x8e, 0x44, 0x4b, 0xbe, 0x97, 0x3c, 0x59, - 0xf8, 0x75, 0x8a, 0x44, 0xeb, 0x6f, 0x14, 0xbb, 0x50, 0xfb, 0xce, 0x69, 0xc3, 0xcf, 0xe5, 0x11, - 0x63, 0x41, 0xc7, 0x62, 0xdf, 0xf9, 0x19, 0x67, 0x1e, 0xeb, 0x32, 0x1e, 0x3e, 0x5b, 0x81, 0x6f, - 0x75, 0xbe, 0xc4, 0xd5, 0x8d, 0xa4, 0x92, 0x65, 0x71, 0x58, 0xa7, 0x44, 0xb6, 0xcc, 0x34, 0xa2, - 0xac, 0x45, 0x75, 0x71, 0x42, 0x1b, 0xde, 0xf4, 0x02, 0xc1, 0x75, 0x09, 0x73, 0x9a, 0xb9, 0x25, - 0x25, 0x09, 0x7a, 0xa2, 0x13, 0x04, 0x8a, 0x10, 0xf1, 0xe1, 0x4a, 0x49, 0x08, 0x10, 0x1f, 0x0d, - 0x63, 0xf8, 0xed, 0x4e, 0x19, 0xb7, 0x3b, 0xda, 0x78, 0x37, 0xb8, 0xdd, 0xd9, 0x5e, 0xfc, 0x85, - 0xdb, 0x1d, 0x50, 0x45, 0xa0, 0x8a, 0x40, 0x15, 0x81, 0x2a, 0x02, 0x55, 0xb4, 0x05, 0x54, 0x11, - 0x6e, 0x77, 0x7e, 0xed, 0xc1, 0xe0, 0x76, 0x07, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x1b, 0x26, 0x1b, - 0x26, 0x5b, 0x13, 0x93, 0x8d, 0xdb, 0x1d, 0x73, 0xd9, 0x85, 0x2d, 0xa7, 0xc4, 0x47, 0x4c, 0x2d, - 0x72, 0xc7, 0xf5, 0x97, 0x24, 0x4d, 0x25, 0xa8, 0x40, 0x72, 0x4b, 0x11, 0xf6, 0x3b, 0xdc, 0x1f, - 0x5b, 0x97, 0xab, 0xd1, 0xd4, 0x2f, 0xc6, 0x33, 0x6f, 0x37, 0xc6, 0xf3, 0x6d, 0xdf, 0xc6, 0x33, - 0x6c, 0x5f, 0xb1, 0xef, 0xfc, 0xef, 0x41, 0xaf, 0x7d, 0x31, 0x99, 0xd6, 0x0d, 0x7b, 0xdc, 0x86, - 0x44, 0x43, 0x9a, 0xbb, 0x1c, 0xd2, 0x3b, 0x1c, 0xf2, 0xc4, 0xc2, 0x32, 0x12, 0xdb, 0xa5, 0xfa, - 0x27, 0x48, 0x6c, 0xcf, 0xa7, 0x2d, 0x43, 0x0f, 0x5f, 0x65, 0x04, 0x0d, 0xea, 0x86, 0xe9, 0x4a, - 0xc2, 0xa0, 0x6e, 0xd8, 0x76, 0xbb, 0x8a, 0xe8, 0xe1, 0xab, 0xd0, 0xf5, 0x43, 0x0f, 0x5f, 0x58, - 0x23, 0x58, 0x23, 0x58, 0x23, 0x58, 0x23, 0xe9, 0xd6, 0x08, 0x3d, 0x7c, 0xd7, 0xfe, 0x42, 0x0f, - 0xdf, 0x4c, 0xc3, 0xa1, 0x87, 0xaf, 0x18, 0x11, 0x41, 0x0f, 0xdf, 0x7c, 0xc8, 0x0a, 0x8a, 0xf0, - 0x1b, 0xe7, 0x54, 0xa0, 0x87, 0x2f, 0x1c, 0x0b, 0x38, 0x16, 0x70, 0x2c, 0xe0, 0x58, 0xac, 0xe1, - 0x58, 0xa0, 0x87, 0xaf, 0x3e, 0x7e, 0x05, 0x7a, 0xf8, 0x1a, 0xb6, 0x63, 0x4b, 0x76, 0x0e, 0x3d, - 0x7c, 0xc9, 0x07, 0x46, 0x0f, 0x5f, 0xcd, 0xbd, 0xdf, 0x1d, 0xf4, 0xf0, 0xcd, 0xfb, 0xe1, 0x43, - 0x0f, 0x5f, 0xf4, 0xf0, 0xd5, 0x9c, 0x5c, 0xd9, 0x41, 0x0f, 0xdf, 0xb5, 0x55, 0x27, 0x7a, 0xf8, - 0xd2, 0xaf, 0x31, 0x7a, 0xf8, 0xca, 0x59, 0x67, 0xf4, 0xf0, 0xa5, 0x90, 0x5b, 0xf4, 0xf0, 0xd5, - 0xef, 0x3d, 0x70, 0x7d, 0x80, 0x1e, 0xbe, 0xab, 0x87, 0x41, 0x0f, 0xdf, 0x35, 0x5d, 0x29, 0x5c, - 0x52, 0xa4, 0xdc, 0x78, 0x5c, 0x52, 0x98, 0xa0, 0xcf, 0xd1, 0xc3, 0x77, 0x03, 0x37, 0x04, 0x3d, - 0x7c, 0x85, 0x9c, 0x9b, 0x6d, 0xc9, 0xc3, 0x24, 0xc8, 0xdd, 0x15, 0x98, 0xe9, 0xf8, 0x46, 0x23, - 0xd9, 0x18, 0x5a, 0x0b, 0xd1, 0x69, 0x41, 0x85, 0xba, 0x1b, 0xf1, 0x2a, 0xe7, 0x62, 0x13, 0xa5, - 0x0a, 0x97, 0xae, 0x5f, 0xf3, 0xd8, 0x50, 0xef, 0x0f, 0xfd, 0x65, 0xbf, 0xef, 0x79, 0x02, 0x53, - 0x46, 0x2f, 0xed, 0xef, 0x74, 0x0f, 0xbf, 0x0e, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xf3, 0xf8, 0xd1, - 0x5a, 0x09, 0x00, 0x91, 0x52, 0xd0, 0x46, 0x19, 0x14, 0x84, 0x26, 0x16, 0xa7, 0x48, 0xbf, 0x16, - 0xa3, 0x87, 0xb2, 0x6b, 0x8d, 0x6c, 0x4f, 0xc8, 0x28, 0x6e, 0xa2, 0xc5, 0x4c, 0xb5, 0x78, 0x65, - 0xdb, 0xd4, 0xf4, 0x5b, 0x91, 0x61, 0x1b, 0x26, 0xde, 0x40, 0xd6, 0xe5, 0x4f, 0xf0, 0x9f, 0x10, - 0xef, 0x42, 0x90, 0x9f, 0x2a, 0xcc, 0x1f, 0x15, 0xe9, 0x77, 0x92, 0xf8, 0x97, 0xa2, 0xfd, 0x48, - 0x32, 0x7f, 0x91, 0xcc, 0x2f, 0xa4, 0xf2, 0xff, 0xd4, 0x2a, 0x48, 0x61, 0x7e, 0x1b, 0x41, 0xf1, - 0x29, 0x91, 0xc5, 0xa5, 0x96, 0x74, 0x40, 0x1f, 0x8b, 0x9d, 0x81, 0x2a, 0x55, 0x4c, 0xa5, 0x11, - 0xa1, 0x95, 0x45, 0x04, 0x55, 0x12, 0x11, 0x56, 0x39, 0x04, 0x0a, 0x15, 0x0a, 0x55, 0x89, 0x42, - 0x15, 0x55, 0xa9, 0xa3, 0xe0, 0xb0, 0xa8, 0x13, 0xba, 0x3d, 0xa1, 0x2e, 0x52, 0x22, 0xc9, 0xd3, - 0x0f, 0x17, 0xe5, 0xd2, 0x0b, 0x65, 0xfe, 0x85, 0x33, 0xfd, 0x14, 0xcc, 0x3e, 0x29, 0x93, 0x4f, - 0xc5, 0xdc, 0x93, 0x33, 0xf5, 0xe4, 0xcc, 0x3c, 0x35, 0x13, 0xaf, 0x17, 0x55, 0x26, 0x9c, 0x59, - 0xa7, 0xab, 0x6a, 0x21, 0xb8, 0x8a, 0x85, 0x00, 0xf2, 0x41, 0x80, 0x9d, 0xee, 0x89, 0xd5, 0x1b, - 0x62, 0xfd, 0x58, 0x68, 0x5f, 0x68, 0x5f, 0x68, 0x5f, 0x23, 0xb5, 0xaf, 0xdb, 0xb3, 0x84, 0x0b, - 0x00, 0x45, 0xfa, 0x0e, 0x4d, 0x9a, 0x0e, 0x61, 0xfd, 0xc6, 0x38, 0xed, 0x86, 0x2c, 0x06, 0x81, - 0x32, 0xc0, 0x9f, 0x3c, 0x90, 0x5f, 0x6e, 0xb6, 0xcc, 0xc1, 0x78, 0xb0, 0xbd, 0x9f, 0xbb, 0x77, - 0x25, 0xab, 0xdc, 0x9a, 0xfc, 0xe5, 0xf0, 0xae, 0x68, 0x95, 0x5b, 0x24, 0x21, 0xec, 0x2d, 0x9d, - 0x6f, 0xc2, 0x69, 0x65, 0xfe, 0x18, 0x32, 0xff, 0x4b, 0x99, 0x47, 0x92, 0x8a, 0xfc, 0x24, 0x95, - 0x83, 0xdd, 0xd2, 0x50, 0x31, 0xbc, 0x1b, 0xe9, 0x8a, 0x52, 0x6b, 0x41, 0x85, 0x8c, 0x54, 0x82, - 0xfe, 0x8a, 0xe0, 0x8d, 0x5e, 0xf3, 0xd2, 0xc3, 0x33, 0x8a, 0x18, 0xb7, 0xb8, 0xfd, 0x24, 0xde, - 0x35, 0x9a, 0x3c, 0x18, 0xbe, 0x11, 0x7c, 0x23, 0xf8, 0x46, 0x5b, 0xe8, 0x1b, 0x71, 0xfb, 0xc9, - 0xe2, 0xc3, 0xa7, 0xc3, 0x35, 0x12, 0xba, 0xae, 0x64, 0x95, 0x03, 0x09, 0x2b, 0x06, 0x12, 0x57, - 0x0a, 0x24, 0x8c, 0x58, 0x96, 0x51, 0x19, 0x50, 0x56, 0x77, 0x3a, 0x49, 0x95, 0x00, 0x65, 0x56, - 0x75, 0xa3, 0xec, 0x8a, 0x28, 0xa3, 0xe2, 0x9f, 0xec, 0xad, 0x97, 0x55, 0xe1, 0x4f, 0xaa, 0x0c, - 0x18, 0x12, 0xe1, 0xbf, 0xad, 0xbc, 0xc6, 0x17, 0xf6, 0xdd, 0x22, 0x2b, 0xbe, 0x6e, 0x36, 0xad, - 0x31, 0xe3, 0xd6, 0xcf, 0x7b, 0xf3, 0xe5, 0xc1, 0xde, 0x6f, 0x7b, 0xbf, 0xc3, 0xad, 0x96, 0xee, - 0x56, 0x23, 0xda, 0x39, 0x73, 0xb4, 0xb3, 0x80, 0x34, 0x9a, 0x0c, 0x61, 0x79, 0x6f, 0x24, 0x6e, - 0xdc, 0x24, 0x0d, 0x26, 0x93, 0xb3, 0x2b, 0x26, 0xef, 0x45, 0x68, 0x9e, 0x8b, 0xd0, 0xbc, 0x16, - 0x31, 0x79, 0x2c, 0x69, 0x77, 0x48, 0xd0, 0x91, 0x52, 0x73, 0x94, 0x0a, 0x99, 0x62, 0x4c, 0x37, - 0x48, 0x3a, 0x49, 0x77, 0x5a, 0x37, 0x3f, 0x6b, 0x9b, 0xfd, 0xc6, 0x86, 0x7b, 0x9e, 0x75, 0xaf, - 0x25, 0xef, 0xf1, 0x66, 0x6b, 0xbe, 0xfe, 0xca, 0xad, 0xf7, 0x93, 0x6b, 0xae, 0x6d, 0x92, 0xe8, - 0x17, 0x17, 0xdb, 0x79, 0x74, 0x59, 0xb8, 0x13, 0x8b, 0xd4, 0x9a, 0xbf, 0x9d, 0x4a, 0xb5, 0x65, - 0x52, 0x65, 0x99, 0x54, 0x57, 0x3a, 0x55, 0xb5, 0xee, 0x52, 0xa6, 0x14, 0x4f, 0x72, 0xb1, 0xdc, - 0x40, 0xcb, 0xac, 0xa9, 0x55, 0xd6, 0x13, 0xed, 0xd7, 0x05, 0xf5, 0xd7, 0x3f, 0xf1, 0xca, 0xba, - 0x6f, 0xba, 0xde, 0x54, 0xeb, 0xfc, 0xeb, 0xc5, 0x58, 0xfd, 0x8a, 0xbf, 0x78, 0xbd, 0x42, 0xac, - 0x41, 0x2c, 0xcf, 0xed, 0x8e, 0xfc, 0xeb, 0x5f, 0xbf, 0xdc, 0x4b, 0x89, 0x92, 0xe9, 0xdf, 0x7a, - 0x65, 0xf1, 0xd6, 0x4b, 0x07, 0x58, 0xfb, 0x2e, 0x65, 0x93, 0x3b, 0x92, 0xe9, 0xbb, 0x0f, 0xdf, - 0xb5, 0xbc, 0xc3, 0x35, 0x04, 0x74, 0xd3, 0x2b, 0x8d, 0xd4, 0x57, 0x15, 0xa9, 0xaf, 0x20, 0xe6, - 0xaf, 0x16, 0x46, 0x6f, 0x46, 0x7c, 0x04, 0xd6, 0x0d, 0x66, 0x9f, 0x16, 0x8d, 0xf5, 0xd7, 0x70, - 0x89, 0x5c, 0xad, 0xbb, 0x8a, 0x9b, 0x65, 0x9b, 0x6c, 0x7c, 0x65, 0x97, 0xe6, 0x4a, 0x2e, 0x8d, - 0xd8, 0xa5, 0x15, 0xbf, 0xcc, 0x62, 0x98, 0x59, 0x1c, 0x33, 0x8a, 0x25, 0x0d, 0xd8, 0xd8, 0x34, - 0xf7, 0xa2, 0x60, 0x3f, 0xba, 0x9b, 0xaf, 0xf9, 0x64, 0x9f, 0x87, 0xbf, 0xbc, 0xe1, 0x62, 0xa5, - 0x63, 0x6c, 0x53, 0xdf, 0x38, 0x67, 0xb9, 0x59, 0xce, 0x22, 0xce, 0x59, 0xc5, 0x5a, 0x98, 0x78, - 0x0b, 0x13, 0x73, 0x41, 0xe2, 0x2e, 0xc7, 0x8f, 0x49, 0x7d, 0x2f, 0x2b, 0x20, 0x87, 0x33, 0x4b, - 0xce, 0xe6, 0x92, 0x1c, 0xcd, 0xe1, 0x19, 0xa3, 0xf2, 0x73, 0x36, 0x50, 0xcf, 0x9d, 0xc9, 0x01, - 0x4c, 0xa9, 0x2a, 0xc6, 0xbf, 0x9f, 0x4e, 0x5b, 0x94, 0xa0, 0x2d, 0xa0, 0x2d, 0xe8, 0xb4, 0x45, - 0xda, 0x84, 0xc5, 0x54, 0xc6, 0x53, 0x80, 0x11, 0xcd, 0x68, 0x4c, 0x33, 0x1f, 0x13, 0x11, 0xc7, - 0x45, 0xe4, 0xb1, 0x11, 0x75, 0x7c, 0x84, 0x1f, 0x23, 0xe1, 0xc7, 0x49, 0xf0, 0xb1, 0x52, 0x43, - 0xf9, 0x67, 0x0e, 0x9a, 0x7a, 0x89, 0xf9, 0x1e, 0x17, 0xb0, 0xce, 0x56, 0x6c, 0x41, 0x44, 0xcd, - 0x6d, 0xb1, 0xb5, 0xb4, 0x93, 0x17, 0xac, 0x9e, 0x9f, 0xdf, 0xd4, 0x6e, 0x6f, 0xdb, 0x1f, 0xab, - 0x97, 0x17, 0xf5, 0xbf, 0xb2, 0x4a, 0xa1, 0xc0, 0x9a, 0xd7, 0x82, 0xc3, 0x5d, 0x2f, 0x1a, 0x7f, - 0x56, 0x0a, 0x3a, 0x44, 0xf4, 0x8a, 0x7f, 0xaf, 0xe3, 0x3c, 0xbe, 0xd7, 0x65, 0xa3, 0x7e, 0x9b, - 0xc7, 0xf7, 0xaa, 0x97, 0xdb, 0xb5, 0xe6, 0xdf, 0x6b, 0x37, 0x57, 0xb5, 0xa6, 0xea, 0x2a, 0x0c, - 0x2d, 0xd9, 0xda, 0xfc, 0x8d, 0x84, 0xed, 0x2b, 0xd8, 0x9e, 0x1d, 0x76, 0x2d, 0xfe, 0x25, 0x64, - 0xd1, 0x97, 0xc0, 0x73, 0x04, 0xa0, 0xa7, 0xb9, 0x07, 0x02, 0x49, 0x01, 0x49, 0x01, 0x49, 0x6d, - 0x2c, 0x33, 0x99, 0xc3, 0xa2, 0x05, 0x84, 0x3f, 0x0b, 0x0a, 0x73, 0x16, 0x10, 0xf5, 0x23, 0x32, - 0x6c, 0x59, 0x74, 0xee, 0x8d, 0xe0, 0x30, 0x64, 0x8a, 0x50, 0x53, 0x11, 0x99, 0x55, 0x22, 0xc3, - 0x87, 0xa9, 0xb6, 0x40, 0x74, 0x38, 0x30, 0xc9, 0x5e, 0x28, 0x8a, 0x22, 0x6b, 0x69, 0x0c, 0x42, - 0xba, 0xf6, 0x77, 0xb7, 0xdb, 0xef, 0x66, 0x07, 0x1f, 0x93, 0x07, 0x01, 0x74, 0x00, 0x74, 0x00, - 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x2c, 0x5b, 0xe6, 0xff, 0xd8, - 0xa1, 0xef, 0xfa, 0x4f, 0x56, 0xe0, 0x7b, 0xcf, 0xd9, 0x91, 0xc7, 0xcc, 0xd3, 0x52, 0x2a, 0x72, - 0x41, 0x0d, 0xb1, 0x00, 0x63, 0x00, 0x63, 0xb6, 0x1a, 0xc6, 0x64, 0x6f, 0xc7, 0x94, 0xb1, 0xdd, - 0x12, 0xb2, 0x08, 0x7e, 0x15, 0x46, 0x3c, 0x1d, 0xb3, 0x3b, 0xfd, 0x97, 0x71, 0x80, 0x8d, 0x0e, - 0xc1, 0x35, 0xe9, 0xaa, 0x99, 0x67, 0xaa, 0x5e, 0x9e, 0x39, 0xb4, 0xa6, 0x8c, 0xd0, 0x1a, 0x84, - 0xd6, 0xbc, 0x8e, 0x31, 0x10, 0x5a, 0x03, 0x50, 0x03, 0x50, 0x63, 0x1e, 0xa8, 0x41, 0x68, 0xcd, - 0xe6, 0xde, 0x39, 0x42, 0x6b, 0xe4, 0xbe, 0x17, 0x42, 0x6b, 0x0c, 0x7a, 0x2f, 0x84, 0xd6, 0x10, - 0x13, 0x4c, 0x08, 0xad, 0x01, 0x92, 0x02, 0x92, 0xd2, 0x0f, 0x49, 0xe1, 0x96, 0x6b, 0x7a, 0x22, - 0xb8, 0xe5, 0x52, 0x6d, 0xd7, 0x71, 0xcb, 0x85, 0x5b, 0x2e, 0x32, 0x10, 0x12, 0xb3, 0xae, 0x9e, - 0xc7, 0x9c, 0x49, 0x89, 0x96, 0xcc, 0x28, 0x64, 0xe1, 0x89, 0x80, 0x21, 0x80, 0x21, 0x80, 0x21, - 0x80, 0x21, 0x80, 0x21, 0x80, 0x21, 0x80, 0x21, 0x80, 0x21, 0xcb, 0x96, 0x19, 0x11, 0xbe, 0x00, - 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x52, 0x40, 0x47, - 0x72, 0x53, 0x62, 0xb1, 0xef, 0x1d, 0xc6, 0x1c, 0x26, 0xe0, 0x0e, 0x66, 0xc9, 0x33, 0x01, 0x45, - 0x00, 0x45, 0x00, 0x45, 0x36, 0x96, 0x19, 0x13, 0xa3, 0x74, 0x91, 0x66, 0x00, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x86, 0x34, 0x83, 0xa5, 0x62, 0x61, 0x46, 0x9a, 0x41, 0x8a, 0x66, 0x2e, 0x8a, 0x5b, - 0x15, 0xac, 0x1f, 0x36, 0x8d, 0xf6, 0x04, 0x02, 0x04, 0x52, 0x92, 0x20, 0x8a, 0x6b, 0x52, 0x70, - 0x33, 0x7c, 0x68, 0x3d, 0x7e, 0x26, 0xda, 0x14, 0xcc, 0xac, 0x37, 0x45, 0xa7, 0x82, 0x88, 0x3d, - 0x0d, 0x85, 0x3d, 0xbe, 0xfe, 0x76, 0xfd, 0xa7, 0xf5, 0x9b, 0x15, 0xcc, 0xff, 0xa2, 0x19, 0xfd, - 0x0a, 0xa2, 0x30, 0x97, 0xcd, 0x0a, 0xa2, 0x50, 0x9b, 0x4e, 0x05, 0x51, 0xf8, 0xf4, 0x10, 0x6d, - 0xde, 0xa3, 0x60, 0xf4, 0x6b, 0xf9, 0xe8, 0x4e, 0xb0, 0x96, 0x90, 0x65, 0x45, 0xda, 0xfa, 0xb5, - 0x26, 0x58, 0x47, 0x08, 0x69, 0x90, 0xc5, 0xc6, 0x7d, 0x09, 0x86, 0xd2, 0x96, 0x21, 0x23, 0x72, - 0xf8, 0xdb, 0xdb, 0x51, 0x6b, 0x7c, 0x23, 0x51, 0x16, 0xe5, 0x3c, 0xea, 0x9f, 0x0d, 0xb9, 0x89, - 0xa8, 0xcb, 0x71, 0x57, 0x52, 0xa7, 0x42, 0xa6, 0x2c, 0xbd, 0xbf, 0x20, 0x2c, 0xa9, 0x4a, 0xf0, - 0x67, 0x3c, 0x1e, 0xda, 0xd2, 0x2f, 0xa9, 0x8e, 0x0d, 0xb8, 0x97, 0x34, 0xc7, 0x4a, 0x0d, 0xf1, - 0x92, 0xf6, 0xb8, 0x25, 0x0f, 0x70, 0x6c, 0x6e, 0xf7, 0x3c, 0xdb, 0x67, 0x16, 0xcf, 0xca, 0xe1, - 0xcc, 0x08, 0xdf, 0xdc, 0x73, 0x33, 0xee, 0x8f, 0x98, 0x3b, 0xc8, 0xcc, 0xc7, 0x53, 0xe4, 0x31, - 0x15, 0x7e, 0x5c, 0x45, 0x1f, 0x5b, 0xb2, 0xe3, 0x4b, 0x76, 0x8c, 0x29, 0x8e, 0x73, 0xb6, 0x63, - 0x9d, 0xf1, 0x78, 0x8b, 0xe3, 0x57, 0x97, 0x60, 0x47, 0x4b, 0xe8, 0x11, 0x9d, 0xb1, 0x9e, 0x15, - 0x01, 0xcf, 0xaa, 0xf9, 0xa3, 0xc8, 0x36, 0x55, 0x77, 0xf0, 0x19, 0xb6, 0xac, 0xe0, 0xf6, 0xbe, - 0x1d, 0x5b, 0xa3, 0xb3, 0x92, 0x21, 0x39, 0x60, 0x61, 0xcf, 0x66, 0x1f, 0x0b, 0x95, 0x0a, 0x95, - 0x0a, 0x95, 0xaa, 0x91, 0x4a, 0x9d, 0x3a, 0x9e, 0x22, 0x95, 0xe9, 0x3b, 0x01, 0xcf, 0x6a, 0xd8, - 0x9c, 0xb3, 0xd0, 0x17, 0x52, 0xb9, 0x21, 0x7e, 0xe0, 0xee, 0xee, 0xd9, 0xcf, 0xbb, 0xa2, 0x75, - 0x6a, 0x5b, 0x8f, 0x55, 0xeb, 0x63, 0xeb, 0x47, 0xf1, 0x6d, 0x65, 0xb0, 0x77, 0xb6, 0xb7, 0x3b, - 0xff, 0xbd, 0xb3, 0xbd, 0x1f, 0xc5, 0xb7, 0x47, 0x83, 0xdd, 0xdd, 0x25, 0xff, 0xf2, 0xfb, 0xb2, - 0x67, 0xec, 0xfd, 0xdc, 0xdd, 0xdd, 0x2d, 0x1f, 0xdd, 0x15, 0xad, 0xa3, 0xd6, 0xcf, 0xf2, 0x5d, - 0xd1, 0xaa, 0xb4, 0x86, 0x3f, 0xd3, 0xfa, 0x79, 0x57, 0x2c, 0xb5, 0x7e, 0x8f, 0x3f, 0x8e, 0xfe, - 0xbf, 0x77, 0x7f, 0xbf, 0xbf, 0xf7, 0xe3, 0x70, 0xb0, 0xde, 0x0f, 0xef, 0xed, 0xed, 0x1e, 0x8c, - 0xe6, 0xd0, 0xda, 0xfb, 0x39, 0xfa, 0xf3, 0x47, 0x79, 0xb0, 0xf7, 0x73, 0xb7, 0x74, 0x57, 0xb4, - 0x4a, 0xad, 0xc9, 0x3f, 0x94, 0x86, 0x0f, 0x79, 0x37, 0xfc, 0x71, 0x51, 0x07, 0x72, 0x77, 0xf7, - 0xee, 0x5f, 0x67, 0xad, 0xbf, 0x9d, 0xed, 0xfd, 0x38, 0x1e, 0x4c, 0x3e, 0xc7, 0xff, 0xdf, 0xfb, - 0xb9, 0xbb, 0xff, 0xdb, 0xfd, 0xfd, 0xfe, 0xfe, 0x6f, 0x7b, 0xa3, 0x97, 0x1e, 0xff, 0xdc, 0x6f, - 0xa3, 0x7f, 0xfd, 0xfd, 0xec, 0x6c, 0xe1, 0x5b, 0x7b, 0xbb, 0x07, 0xfb, 0x7f, 0xdb, 0xcb, 0x7e, - 0xf0, 0x5a, 0x4a, 0x0f, 0x5e, 0xaa, 0xcb, 0xb4, 0x95, 0x4f, 0xcb, 0x72, 0xc9, 0xb6, 0xfa, 0xa1, - 0x19, 0x2e, 0xdf, 0x56, 0x3e, 0x34, 0xd5, 0xa5, 0x9c, 0x5e, 0xb8, 0xc6, 0x0b, 0x3a, 0xb6, 0x67, - 0xb9, 0x8e, 0x38, 0x48, 0x93, 0x3c, 0x11, 0x68, 0x06, 0x68, 0x06, 0x68, 0x46, 0x27, 0x07, 0x91, - 0x87, 0xaf, 0x5f, 0xa7, 0x6e, 0x06, 0x64, 0x0c, 0xd4, 0x78, 0xdd, 0x9e, 0x17, 0x59, 0x9e, 0xfd, - 0xc0, 0x3c, 0xeb, 0xc1, 0x0b, 0x3a, 0x5f, 0x05, 0x7a, 0x73, 0x8b, 0x8f, 0x86, 0x0e, 0x84, 0x0e, - 0x84, 0x0e, 0xd4, 0x48, 0x07, 0xa6, 0x6f, 0x8f, 0xbd, 0x52, 0x09, 0x9e, 0x88, 0xf1, 0xe6, 0x26, - 0xed, 0xb3, 0xa7, 0xff, 0x1b, 0x2a, 0x94, 0x83, 0x27, 0x2f, 0x78, 0xb0, 0xbd, 0x83, 0x90, 0x45, - 0x2c, 0xfc, 0xc6, 0x9c, 0x19, 0x05, 0xb3, 0xf4, 0xbb, 0x93, 0x0e, 0xdc, 0x09, 0x12, 0x83, 0x73, - 0xb0, 0xc5, 0xce, 0x81, 0xd4, 0xcb, 0xab, 0x8c, 0xa1, 0xad, 0xc9, 0x73, 0xc4, 0x46, 0xba, 0xcd, - 0x05, 0x94, 0x1d, 0xc4, 0x11, 0x41, 0xf1, 0xff, 0x53, 0xd5, 0xd2, 0x4e, 0xbf, 0xb4, 0x69, 0x12, - 0x23, 0x32, 0x7b, 0x68, 0xa2, 0x3c, 0xb3, 0xbc, 0x25, 0x32, 0xe0, 0x26, 0x5d, 0x3a, 0xaa, 0x30, - 0x35, 0x85, 0x21, 0x3b, 0x6a, 0x10, 0x81, 0x16, 0xa6, 0x51, 0x82, 0x10, 0x13, 0x2f, 0x47, 0x81, - 0xa5, 0x6b, 0x12, 0xb0, 0xc4, 0x7b, 0xdd, 0xbc, 0x59, 0xc0, 0xc2, 0xea, 0x67, 0x55, 0x5d, 0x65, - 0xa8, 0x2e, 0xa8, 0x2e, 0x09, 0xaa, 0x0b, 0x41, 0x40, 0xe0, 0x37, 0xc0, 0x6f, 0x80, 0xdf, 0xd8, - 0xdc, 0x4a, 0x22, 0x08, 0x88, 0x6c, 0xcb, 0x10, 0x04, 0x04, 0x95, 0x0a, 0x95, 0xba, 0x75, 0x2a, - 0x15, 0x41, 0x40, 0x08, 0x02, 0x5a, 0xb2, 0x50, 0x08, 0x02, 0x9a, 0x5d, 0x11, 0xf0, 0xfc, 0x08, - 0x02, 0x42, 0x10, 0x10, 0xd0, 0x0c, 0xd0, 0x8c, 0xde, 0x0e, 0x22, 0x82, 0x80, 0x10, 0x04, 0x04, - 0x1d, 0x08, 0x1d, 0xb8, 0xc5, 0x3a, 0x10, 0x41, 0x40, 0x70, 0x0e, 0xe0, 0x1c, 0xac, 0xf9, 0x0a, - 0x91, 0xfb, 0x7f, 0x02, 0xef, 0x8f, 0xe2, 0xa7, 0xc1, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0x6a, 0x64, - 0x10, 0x33, 0xb7, 0x3b, 0x98, 0x3f, 0x9b, 0x22, 0xcc, 0xa1, 0x98, 0xf6, 0x07, 0x93, 0x2f, 0x31, - 0xe2, 0xbf, 0x23, 0xba, 0x1d, 0x82, 0x60, 0xa5, 0xb6, 0xf0, 0x58, 0xc1, 0xed, 0x11, 0x92, 0xe7, - 0x12, 0x94, 0xe6, 0x17, 0x74, 0x3c, 0xe6, 0x8d, 0xba, 0x71, 0x5b, 0x25, 0xba, 0x8d, 0x82, 0x94, - 0x3d, 0x7b, 0xa3, 0xc7, 0x53, 0x5a, 0x06, 0x02, 0xac, 0x7e, 0xc4, 0x04, 0x32, 0xaf, 0xf1, 0xd3, - 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, - 0x72, 0x00, 0xb0, 0x90, 0xc6, 0xf6, 0xab, 0x34, 0xb6, 0x14, 0xbd, 0x1a, 0xd2, 0xaf, 0x2c, 0x6d, - 0xb9, 0xd9, 0x71, 0x2f, 0x87, 0x94, 0x11, 0x04, 0xd9, 0x98, 0x66, 0x21, 0xcc, 0xb2, 0x10, 0x26, - 0x39, 0x1b, 0x73, 0x6c, 0x76, 0x47, 0x92, 0xd5, 0x72, 0x5e, 0x48, 0x95, 0x7e, 0xf4, 0xab, 0x96, - 0x10, 0xb7, 0xa3, 0xb1, 0x6e, 0x46, 0x43, 0xb5, 0x6f, 0x87, 0x83, 0x18, 0xd1, 0xf2, 0x44, 0x8f, - 0x9e, 0x1d, 0x4b, 0xb7, 0x4a, 0x58, 0x73, 0x8d, 0xb7, 0xeb, 0xf4, 0x04, 0xf0, 0xd2, 0xf5, 0x04, - 0xf0, 0xd0, 0x13, 0x40, 0xaa, 0x5b, 0xba, 0xdd, 0x3d, 0x01, 0xbc, 0x4c, 0x3d, 0x01, 0x3c, 0xf4, - 0x04, 0x20, 0x64, 0x60, 0xd0, 0x13, 0x00, 0x3d, 0x01, 0xe4, 0x12, 0x9b, 0x48, 0x07, 0x56, 0x42, - 0x58, 0x22, 0x1d, 0x18, 0xe9, 0xc0, 0xb2, 0x8f, 0xa9, 0xf0, 0xe3, 0x2a, 0xfa, 0xd8, 0x92, 0x1d, - 0x5f, 0xb2, 0x63, 0x4c, 0x71, 0x9c, 0xc5, 0x10, 0x64, 0x48, 0x07, 0xde, 0xf8, 0x59, 0x39, 0x49, - 0x07, 0x26, 0x49, 0x06, 0x86, 0x3a, 0x85, 0x3a, 0x85, 0x3a, 0xd5, 0x49, 0x9d, 0x22, 0x15, 0x18, - 0xa9, 0xc0, 0x4b, 0x16, 0x2a, 0x77, 0xa9, 0xc0, 0xc8, 0x42, 0x85, 0x21, 0x85, 0x21, 0x85, 0x21, - 0xa5, 0xf3, 0x4b, 0x90, 0x85, 0xba, 0x24, 0x0b, 0x95, 0x2e, 0x09, 0x15, 0x1a, 0x10, 0x1a, 0x10, - 0x1a, 0x50, 0x27, 0x0d, 0x88, 0x1c, 0x54, 0x89, 0x3a, 0x1a, 0xc1, 0x63, 0x4b, 0x22, 0x35, 0xbc, - 0x38, 0xa8, 0xc6, 0x43, 0x0d, 0x74, 0x79, 0x86, 0x10, 0x37, 0x87, 0x52, 0x0c, 0x1c, 0x6e, 0x0e, - 0xc5, 0x19, 0x2e, 0xd4, 0x40, 0x17, 0xa1, 0xc0, 0x50, 0x03, 0x1d, 0xaa, 0x0b, 0xaa, 0x6b, 0xb3, - 0x89, 0x23, 0xe8, 0x01, 0xae, 0x35, 0x5c, 0x6b, 0xb8, 0xd6, 0x9b, 0x5b, 0x49, 0x04, 0x3d, 0xd0, - 0x71, 0x96, 0x08, 0x7a, 0x80, 0x3a, 0x85, 0x3a, 0xdd, 0x26, 0x75, 0x8a, 0xa0, 0x07, 0x04, 0x3d, - 0x2c, 0x59, 0x28, 0x04, 0x3d, 0x88, 0x30, 0xa7, 0x08, 0x7a, 0x80, 0x21, 0x85, 0x21, 0xdd, 0x12, - 0xbf, 0x04, 0x41, 0x0f, 0x08, 0x7a, 0x80, 0x06, 0x84, 0x06, 0xdc, 0x5a, 0x0d, 0x88, 0xa0, 0x07, - 0x89, 0x3a, 0x1a, 0x41, 0x0f, 0xbf, 0x0a, 0x7a, 0x40, 0xc5, 0x9c, 0xc9, 0xaf, 0xa3, 0x62, 0x4e, - 0x0e, 0x2b, 0xe6, 0x4c, 0xe4, 0x5c, 0x42, 0xc5, 0x1c, 0x0f, 0x15, 0x73, 0xb2, 0x6e, 0x95, 0xcc, - 0x8a, 0x39, 0x9c, 0x59, 0xbd, 0xc0, 0x73, 0x3b, 0x2e, 0x4b, 0x51, 0x37, 0x67, 0xfa, 0x97, 0x89, - 0xab, 0xe7, 0x94, 0x65, 0x55, 0xcf, 0xd9, 0x28, 0xa2, 0x22, 0x4f, 0xf5, 0x73, 0x36, 0xb1, 0x7f, - 0x8a, 0x2b, 0xe8, 0x4c, 0xe4, 0xee, 0x39, 0x7d, 0x19, 0x9d, 0x97, 0x47, 0x6c, 0x4b, 0x2d, 0x9d, - 0x54, 0xa1, 0x42, 0xdb, 0x50, 0x4d, 0x27, 0x0d, 0xf0, 0xd3, 0xb5, 0x9e, 0x8e, 0xed, 0x3b, 0xae, - 0x63, 0x0f, 0x85, 0xdb, 0xe6, 0x5f, 0x22, 0x01, 0x85, 0x75, 0xe6, 0x1e, 0x88, 0x0a, 0x3b, 0x19, - 0x0e, 0x93, 0x68, 0x76, 0xc4, 0xc4, 0x70, 0xb3, 0xb4, 0x5e, 0xd6, 0x8e, 0x79, 0x01, 0x67, 0xb3, - 0x67, 0x47, 0x1c, 0xb1, 0x39, 0xf7, 0x5c, 0x31, 0xb4, 0x66, 0x29, 0xf7, 0xb4, 0x26, 0x67, 0x20, - 0x36, 0x49, 0x88, 0xcd, 0x2c, 0x47, 0x5a, 0x0f, 0x6a, 0x33, 0xeb, 0x51, 0x4f, 0x1e, 0xe4, 0xb8, - 0x51, 0x27, 0x74, 0xbb, 0xae, 0x6f, 0xf3, 0x20, 0x14, 0x27, 0x24, 0x49, 0xa8, 0xe9, 0xcc, 0xe3, - 0x05, 0xed, 0xa7, 0xd8, 0xf2, 0xea, 0xc2, 0x14, 0x01, 0x85, 0x42, 0x20, 0x54, 0x0c, 0x54, 0x0a, - 0x82, 0x5c, 0x51, 0x90, 0x2b, 0x0c, 0x5a, 0xc5, 0x21, 0x46, 0x81, 0x08, 0x52, 0x24, 0xc9, 0xab, - 0x0a, 0xbb, 0x2b, 0x59, 0x90, 0x58, 0x71, 0x77, 0x26, 0x0b, 0x08, 0xe0, 0x44, 0xe0, 0x33, 0xa7, - 0xee, 0x50, 0x62, 0x6a, 0xfd, 0x60, 0x56, 0x75, 0x69, 0xd2, 0xbe, 0x40, 0xc0, 0x76, 0x17, 0x82, - 0xd0, 0x7d, 0x1a, 0xbd, 0x95, 0x65, 0x3b, 0x0e, 0x81, 0xd2, 0x9f, 0x1f, 0x00, 0x6a, 0x1f, 0x6a, - 0x1f, 0x6a, 0x1f, 0x6a, 0xdf, 0x08, 0xb5, 0x3f, 0xaf, 0xbc, 0x72, 0xaa, 0xf8, 0x23, 0x9f, 0x56, - 0xef, 0x47, 0x3e, 0xd4, 0x3e, 0xd4, 0x3e, 0xd4, 0x3e, 0xd4, 0xbe, 0x79, 0x6a, 0x3f, 0xf2, 0xf3, - 0xa4, 0xf5, 0x7b, 0x61, 0xc0, 0x83, 0x4e, 0xe0, 0x59, 0xa3, 0x57, 0x14, 0xaf, 0xf6, 0xe7, 0x07, - 0x80, 0xde, 0x87, 0xde, 0x87, 0xde, 0x87, 0xde, 0x37, 0x42, 0xef, 0xcf, 0x2b, 0xaf, 0x1c, 0x29, - 0xfe, 0x49, 0xa4, 0x96, 0xe7, 0x46, 0x3c, 0x12, 0xaf, 0xf6, 0x67, 0x1f, 0x2f, 0x56, 0xe9, 0x97, - 0xa0, 0xf4, 0xa1, 0xf4, 0xa1, 0xf4, 0xc5, 0xc8, 0xac, 0xa8, 0xbb, 0xc2, 0xa5, 0x8a, 0x45, 0xbc, - 0x6c, 0x2d, 0xd3, 0x2f, 0xa2, 0xc5, 0x4b, 0xac, 0x9a, 0x21, 0x53, 0x37, 0x94, 0x6a, 0x47, 0x82, - 0xfa, 0xa1, 0x56, 0x43, 0xd2, 0xd4, 0x91, 0x34, 0xb5, 0x24, 0x47, 0x3d, 0x89, 0x55, 0x53, 0x82, - 0xd5, 0x15, 0x99, 0xda, 0x4a, 0x1e, 0x2c, 0x20, 0x59, 0xfd, 0xd5, 0xc3, 0x94, 0x39, 0x7d, 0x5d, - 0x92, 0x5b, 0x2c, 0x4d, 0x85, 0xc9, 0x50, 0x65, 0x12, 0x55, 0x9a, 0x2c, 0xd5, 0x26, 0x5d, 0xc5, - 0x49, 0x57, 0x75, 0x72, 0x55, 0x1e, 0x8d, 0xea, 0x23, 0x52, 0x81, 0x74, 0x6e, 0xbb, 0x44, 0x37, - 0x5e, 0x86, 0x5b, 0xff, 0xba, 0x9b, 0x9f, 0x35, 0x8d, 0x55, 0x9e, 0x1c, 0x11, 0xc8, 0x50, 0xc1, - 0x67, 0xdf, 0xb9, 0xf5, 0x25, 0xe8, 0x45, 0xf4, 0x86, 0xef, 0x65, 0x28, 0x5a, 0xfb, 0x57, 0x82, - 0xfd, 0x83, 0xfd, 0x83, 0xfd, 0xdb, 0x0e, 0xfb, 0x47, 0xe5, 0x0a, 0x2c, 0x28, 0x48, 0x7a, 0x39, - 0x9e, 0xd7, 0x93, 0xd4, 0x62, 0x4c, 0xab, 0x2e, 0xa5, 0xa9, 0x4d, 0x99, 0xea, 0x53, 0x81, 0x1a, - 0x95, 0xad, 0x4e, 0x95, 0xa9, 0x55, 0x65, 0xea, 0x55, 0x8d, 0x9a, 0xa5, 0x55, 0xb7, 0xc4, 0x6a, - 0x57, 0x9a, 0xfa, 0x7d, 0x61, 0x66, 0x7c, 0x87, 0x7d, 0x97, 0x27, 0xfc, 0x09, 0x59, 0x13, 0x0f, - 0x2b, 0x49, 0xfe, 0x68, 0xf9, 0x1b, 0x65, 0x8a, 0x59, 0x85, 0x82, 0x56, 0xa8, 0xa8, 0x55, 0x29, - 0x6c, 0xe5, 0x8a, 0x5b, 0xb9, 0x02, 0x57, 0xab, 0xc8, 0xe5, 0x28, 0x74, 0x49, 0x8a, 0x5d, 0x1e, - 0xbf, 0xa4, 0x90, 0x6f, 0x52, 0xc1, 0x3f, 0xad, 0xc1, 0x47, 0xc5, 0x26, 0xe7, 0x4d, 0x3e, 0x44, - 0x55, 0x82, 0x98, 0x16, 0x5c, 0x9f, 0xb3, 0xf0, 0xd1, 0xee, 0x30, 0x6b, 0x28, 0x2e, 0x0a, 0x20, - 0xc2, 0xf4, 0xf0, 0x72, 0xa1, 0x42, 0x09, 0x50, 0x81, 0x04, 0x2a, 0xb8, 0x8f, 0x00, 0x0a, 0x5b, - 0x08, 0x14, 0xdc, 0x47, 0xc0, 0x04, 0xbd, 0xfd, 0xc0, 0x64, 0xc0, 0x6c, 0x5d, 0xe7, 0x32, 0xeb, - 0x88, 0x2c, 0xdd, 0xea, 0x0c, 0x51, 0xfa, 0x8b, 0xca, 0xbf, 0x2c, 0x79, 0x60, 0x05, 0x46, 0x40, - 0xb9, 0x31, 0x50, 0x6d, 0x14, 0xb4, 0x31, 0x0e, 0xda, 0x18, 0x09, 0x1d, 0x8c, 0x85, 0x5c, 0xa3, - 0x21, 0xd9, 0x78, 0x28, 0x33, 0x22, 0x8b, 0x1e, 0x84, 0xba, 0xe3, 0xb6, 0xe0, 0x4d, 0xa8, 0x3a, - 0x6e, 0x72, 0x49, 0x48, 0xe5, 0x9e, 0x86, 0x4e, 0x46, 0x47, 0x1b, 0xe3, 0xa3, 0x8b, 0x11, 0xd2, - 0xce, 0x18, 0x69, 0x67, 0x94, 0x74, 0x32, 0x4e, 0x6a, 0x8c, 0x94, 0x22, 0x63, 0x95, 0x2c, 0xbc, - 0x74, 0x82, 0x74, 0xa5, 0xb6, 0x90, 0x4f, 0x98, 0xae, 0xf4, 0x50, 0x4e, 0x14, 0xce, 0xa1, 0x91, - 0x54, 0x33, 0x1f, 0x1e, 0x83, 0xb3, 0xc4, 0xa0, 0x46, 0xf3, 0xdf, 0x18, 0xff, 0x3d, 0x2e, 0x06, - 0xff, 0x66, 0x3b, 0x0e, 0x8a, 0x82, 0x43, 0x52, 0x88, 0xfa, 0x0f, 0x1a, 0xe1, 0xab, 0x99, 0xd9, - 0x00, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x11, 0x40, - 0xac, 0xbb, 0x17, 0x88, 0xf5, 0x3f, 0x9d, 0x7e, 0x18, 0x32, 0x9f, 0xef, 0xee, 0x1d, 0xec, 0xef, - 0x1f, 0x24, 0x3f, 0xd1, 0x1a, 0xff, 0xca, 0xb4, 0x5d, 0x8e, 0x96, 0x7c, 0x2f, 0x79, 0xb2, 0xb4, - 0xcb, 0x71, 0x0d, 0xd0, 0x5a, 0xae, 0xd9, 0x3e, 0x41, 0x6d, 0xd5, 0xd2, 0xe3, 0x52, 0xd2, 0xde, - 0x47, 0x53, 0xdd, 0x84, 0x92, 0xcf, 0xcf, 0x07, 0x73, 0x1d, 0x28, 0xe6, 0xfe, 0x7e, 0x30, 0x53, - 0x37, 0x63, 0xe6, 0x6f, 0x07, 0x49, 0xf2, 0x4c, 0xf2, 0xe9, 0x60, 0x26, 0xf0, 0x20, 0x4b, 0xd3, - 0x37, 0xfd, 0xe5, 0x33, 0x5f, 0x97, 0xa5, 0x8a, 0x24, 0x3f, 0x67, 0x12, 0x2f, 0x33, 0x42, 0x63, - 0xa3, 0xb6, 0x71, 0x4d, 0xd6, 0x88, 0xdf, 0xbd, 0xfd, 0x61, 0xf2, 0xae, 0x43, 0x7b, 0x39, 0xf9, - 0xa9, 0xba, 0x1b, 0xf1, 0xf6, 0x15, 0xfb, 0xce, 0xff, 0x1e, 0xf4, 0xda, 0x17, 0x93, 0x17, 0xba, - 0x61, 0x8f, 0x08, 0xf9, 0xda, 0x64, 0x3f, 0x64, 0xde, 0xfe, 0x2b, 0xb9, 0xf5, 0x57, 0x16, 0xe2, - 0x55, 0x46, 0x34, 0x78, 0x8e, 0xfc, 0x7c, 0x04, 0x79, 0x21, 0x1a, 0x5c, 0xdc, 0x52, 0x4a, 0x0f, - 0xf3, 0xea, 0x04, 0xfd, 0xa1, 0x89, 0x8c, 0xd4, 0x45, 0x7a, 0x25, 0x33, 0xd8, 0xb2, 0x60, 0xaf, - 0xe2, 0x76, 0x06, 0x7b, 0x49, 0x36, 0x0b, 0xaa, 0xcd, 0x83, 0x36, 0x66, 0x42, 0x1b, 0x73, 0xa1, - 0x87, 0xd9, 0xd8, 0x0e, 0x0a, 0x48, 0x59, 0xc0, 0x57, 0xd0, 0xe7, 0x96, 0x67, 0x3f, 0x30, 0x8f, - 0x39, 0x56, 0xd0, 0xe1, 0x8c, 0x47, 0xea, 0x6f, 0x26, 0x97, 0xcc, 0x09, 0xf7, 0x93, 0x4a, 0x26, - 0xa0, 0xd9, 0xfd, 0xa4, 0x22, 0x93, 0xa4, 0x8b, 0x69, 0xd2, 0xce, 0x44, 0x69, 0x67, 0xaa, 0xf4, - 0x32, 0x59, 0x6a, 0x4c, 0x97, 0x22, 0x13, 0x96, 0x2c, 0xbd, 0x3e, 0x77, 0x94, 0x63, 0x87, 0xe5, - 0xb8, 0xa2, 0xc1, 0x2d, 0xe5, 0x3b, 0x85, 0x53, 0xb8, 0xb1, 0xfd, 0xa7, 0xe1, 0x82, 0xdc, 0x29, - 0x3d, 0x93, 0x6a, 0x75, 0x66, 0xbc, 0x10, 0x97, 0xae, 0xaf, 0x5c, 0x79, 0x6b, 0x82, 0x2d, 0x16, - 0xa6, 0xf3, 0xa7, 0xed, 0xf5, 0x99, 0x46, 0xf3, 0xf9, 0x18, 0xda, 0x1d, 0xee, 0x06, 0xfe, 0xb9, - 0xfb, 0xe4, 0xc6, 0xa0, 0xb4, 0xa8, 0x7c, 0x5e, 0x83, 0xb7, 0x1a, 0x88, 0xb0, 0xfd, 0x1d, 0x22, - 0xfc, 0x8a, 0x08, 0x97, 0xde, 0x55, 0x2a, 0xc7, 0x27, 0x95, 0x4a, 0xf1, 0xe4, 0xf0, 0xa4, 0x78, - 0x7a, 0x74, 0x54, 0x3a, 0x2e, 0x1d, 0x41, 0xaa, 0xf5, 0x42, 0x27, 0xea, 0x47, 0x6f, 0x21, 0xd2, - 0x59, 0x0a, 0xab, 0xd0, 0xfb, 0xaa, 0x1b, 0xa7, 0x10, 0xcf, 0x08, 0x8c, 0x02, 0x18, 0x05, 0x30, - 0x0a, 0x60, 0x14, 0xc0, 0x28, 0x80, 0x51, 0x00, 0xa3, 0x00, 0x46, 0x01, 0x8c, 0x02, 0x18, 0x05, - 0x30, 0x0a, 0x10, 0x61, 0x30, 0x0a, 0x60, 0x14, 0xc0, 0x28, 0x68, 0xc9, 0x28, 0xe8, 0x14, 0x9f, - 0x80, 0xb8, 0x04, 0xb0, 0x08, 0x60, 0x11, 0xc0, 0x22, 0x80, 0x45, 0x00, 0x8b, 0x00, 0x16, 0x01, - 0x2c, 0x02, 0x58, 0x04, 0xb0, 0x08, 0x60, 0x11, 0x20, 0xc2, 0x60, 0x11, 0xc0, 0x22, 0x80, 0x45, - 0xd0, 0x99, 0x45, 0xd0, 0x27, 0x1e, 0x01, 0x71, 0x08, 0x60, 0x10, 0xc0, 0x20, 0x80, 0x41, 0x00, - 0x83, 0x00, 0x06, 0x01, 0x0c, 0x02, 0x18, 0x04, 0x30, 0x08, 0x60, 0x10, 0xc0, 0x20, 0x40, 0x84, - 0xc1, 0x20, 0x80, 0x41, 0x00, 0x83, 0xa0, 0xdb, 0x88, 0xa8, 0x0a, 0x6a, 0x58, 0x8d, 0xc4, 0x51, - 0x13, 0x59, 0x45, 0x55, 0x8b, 0x76, 0x28, 0x8b, 0x25, 0x7e, 0x98, 0xbc, 0x53, 0x5e, 0x8b, 0x9c, - 0x4a, 0xac, 0x46, 0xc7, 0xfc, 0x8e, 0xdd, 0x8b, 0xfa, 0xde, 0x50, 0xc8, 0xbe, 0x30, 0xdb, 0x61, - 0xa1, 0xba, 0x0a, 0x5b, 0x4b, 0xe6, 0xa2, 0xa6, 0xd6, 0x56, 0x11, 0xb5, 0xb6, 0xe4, 0xed, 0x7a, - 0xd0, 0xb1, 0xec, 0x47, 0x8e, 0x52, 0x5b, 0x28, 0xb5, 0xb5, 0xc0, 0xee, 0x0d, 0xe5, 0x02, 0xb0, - 0x4a, 0xe8, 0x0a, 0x2b, 0x23, 0xf1, 0x96, 0x68, 0x79, 0x37, 0xf0, 0xc7, 0x7a, 0xde, 0xe2, 0xc3, - 0x69, 0x29, 0x50, 0x01, 0x93, 0xe2, 0x8a, 0x15, 0x05, 0x63, 0xd7, 0xfc, 0x7e, 0x77, 0xb8, 0x15, - 0x03, 0xc0, 0x98, 0xcc, 0x6b, 0x39, 0x6a, 0x07, 0xa1, 0x0c, 0xb9, 0x8c, 0x86, 0x07, 0x58, 0xd9, - 0x06, 0xb0, 0x82, 0xc2, 0xa0, 0x40, 0x2b, 0x4b, 0xd1, 0x0a, 0x0a, 0x83, 0xe6, 0x11, 0xae, 0xf4, - 0x5d, 0x9f, 0x1f, 0x96, 0x15, 0x62, 0x13, 0x05, 0xfd, 0x9d, 0x14, 0x5f, 0x2c, 0x2a, 0xbc, 0x61, - 0xd6, 0xe1, 0x22, 0x51, 0x93, 0xdb, 0x17, 0x5d, 0x2e, 0x0e, 0x75, 0xba, 0x5a, 0x51, 0x78, 0x51, - 0xa8, 0xc5, 0x05, 0xa1, 0x6e, 0xa2, 0x59, 0x29, 0x9f, 0x56, 0x4e, 0x8f, 0x4f, 0xca, 0xa7, 0x47, - 0x90, 0x51, 0x35, 0x80, 0x40, 0xdd, 0xa8, 0x2d, 0xb8, 0xcd, 0xd9, 0xdd, 0xe6, 0x9e, 0x65, 0x3b, - 0x4e, 0xc8, 0x22, 0x85, 0x7d, 0x35, 0xa6, 0xe6, 0x00, 0x07, 0x7a, 0x1b, 0x1c, 0x68, 0xb0, 0xfd, - 0xf0, 0x9f, 0x77, 0xc0, 0xf6, 0x6f, 0x87, 0xfb, 0xac, 0x4c, 0xbb, 0x4f, 0x6b, 0xf8, 0xd2, 0xa9, - 0x82, 0xb1, 0xc7, 0x6b, 0xbf, 0x75, 0x2e, 0xf4, 0xcb, 0xce, 0x7f, 0xab, 0x28, 0xdc, 0xfb, 0x05, - 0x19, 0x78, 0xa7, 0xb6, 0x4f, 0x36, 0x67, 0xa1, 0xaf, 0x3c, 0x54, 0xbb, 0xf0, 0xaf, 0xdd, 0xdd, - 0xbb, 0xa2, 0x75, 0xda, 0xfa, 0x79, 0x57, 0xb2, 0x4e, 0x5b, 0xa3, 0x8f, 0xa5, 0xf8, 0x8f, 0xd1, - 0xe7, 0xf2, 0x5d, 0xd1, 0xaa, 0x4c, 0x3e, 0x1f, 0xdd, 0x15, 0xad, 0xa3, 0xd6, 0xde, 0xfd, 0xfd, - 0xfe, 0xde, 0x8f, 0xc3, 0xc1, 0xe6, 0xbf, 0xf8, 0x5f, 0x85, 0x6d, 0x8b, 0x01, 0x7c, 0xbb, 0xc5, - 0x87, 0xfd, 0x18, 0x87, 0x5d, 0xcf, 0xc3, 0x6e, 0x5b, 0x8f, 0x55, 0xeb, 0x63, 0xeb, 0x47, 0xe9, - 0x6d, 0x65, 0x70, 0xb6, 0xf7, 0xe3, 0x64, 0x30, 0xff, 0xcd, 0x9f, 0xcb, 0x7e, 0xac, 0xf4, 0xf6, - 0x64, 0x70, 0xb6, 0xe2, 0x5f, 0x8e, 0x07, 0x67, 0x6b, 0x3e, 0xe3, 0x68, 0xb0, 0xbb, 0xf0, 0xa3, - 0xc3, 0xef, 0x97, 0x57, 0xfd, 0x42, 0x65, 0xc5, 0x2f, 0x1c, 0xae, 0xfa, 0x85, 0xc3, 0x15, 0xbf, - 0xb0, 0x72, 0x4a, 0xe5, 0x15, 0xbf, 0x70, 0x34, 0xf8, 0xb9, 0xf0, 0xf3, 0xbb, 0xcb, 0x7f, 0xf4, - 0x78, 0xb0, 0xf7, 0x73, 0xd5, 0xbf, 0x9d, 0x0c, 0x7e, 0x9e, 0xed, 0x6d, 0xa1, 0xea, 0x03, 0xff, - 0x63, 0x20, 0xff, 0xd3, 0xb5, 0x3b, 0xea, 0x09, 0xa0, 0xe9, 0x49, 0x80, 0x01, 0x02, 0x03, 0x04, - 0x06, 0x08, 0x0c, 0x10, 0x18, 0xa0, 0xdc, 0x30, 0x40, 0xea, 0xd4, 0xbb, 0x6a, 0x8f, 0x40, 0xb9, - 0x27, 0x50, 0xf8, 0xd7, 0x34, 0x42, 0x9d, 0x07, 0xbe, 0xe5, 0xc1, 0xde, 0x8f, 0xa3, 0x81, 0x02, - 0xa4, 0x0a, 0xe4, 0x96, 0x7d, 0x67, 0x83, 0xd0, 0x7d, 0x72, 0x7d, 0xab, 0x17, 0x06, 0x3c, 0xe8, - 0x04, 0x9e, 0x3a, 0xf4, 0x36, 0x3f, 0x11, 0x20, 0x38, 0x20, 0x38, 0x20, 0x38, 0x20, 0x38, 0x20, - 0xb8, 0xdc, 0x20, 0x38, 0xd7, 0x61, 0x3e, 0x77, 0xf9, 0x73, 0xc8, 0x1e, 0x55, 0x22, 0x38, 0x05, - 0x31, 0x5e, 0x85, 0x8b, 0xf1, 0xab, 0xbf, 0xb7, 0x23, 0xa6, 0xbe, 0x6a, 0xde, 0xc5, 0xd5, 0x6d, - 0xb3, 0x5a, 0xaf, 0xb7, 0x1b, 0x37, 0xd7, 0xcd, 0xeb, 0x0f, 0xd7, 0xf5, 0x76, 0xf3, 0xaf, 0x46, - 0x4d, 0x95, 0x0a, 0x8a, 0x63, 0xf0, 0x22, 0xa5, 0x2c, 0xb7, 0xe2, 0x60, 0xc8, 0x64, 0x5b, 0x3e, - 0x5d, 0x36, 0x0a, 0xdb, 0x18, 0x93, 0xaa, 0xc9, 0xfa, 0xd7, 0xaf, 0x3f, 0x54, 0xeb, 0xed, 0xea, - 0xa7, 0x4f, 0x37, 0xb5, 0x4f, 0xd5, 0x66, 0x0d, 0x5b, 0xa1, 0xf0, 0x28, 0xdc, 0x5e, 0xdc, 0x62, - 0xfd, 0xd5, 0xad, 0xff, 0xf9, 0xc5, 0x4d, 0xed, 0x43, 0xb3, 0xfe, 0x57, 0xfb, 0xc3, 0xf5, 0xd5, - 0x55, 0xed, 0x43, 0xb3, 0x76, 0x8e, 0xdd, 0x50, 0xb7, 0x1b, 0x8d, 0x8b, 0x4b, 0x2c, 0xbf, 0xba, - 0xe5, 0xbf, 0xbe, 0x6d, 0x7c, 0x3c, 0xc4, 0x06, 0xa8, 0xdb, 0x80, 0xdb, 0x66, 0xb5, 0x79, 0xf1, - 0x01, 0x3b, 0xa0, 0xf6, 0x08, 0x60, 0xfd, 0xd5, 0xad, 0xff, 0xfb, 0x4f, 0x8d, 0x6d, 0x2b, 0x4f, - 0xdc, 0xca, 0x3b, 0xff, 0x93, 0xcb, 0xfb, 0x84, 0x5e, 0x3f, 0xfa, 0xc2, 0x1c, 0xab, 0xdb, 0xf3, - 0x22, 0xcb, 0xb3, 0x1f, 0x98, 0x67, 0x45, 0xdc, 0xee, 0x7c, 0x55, 0x77, 0xaf, 0xb0, 0x6a, 0x42, - 0xb8, 0x5f, 0x20, 0x1d, 0x18, 0xf7, 0x0b, 0xb8, 0x5f, 0xc0, 0xfd, 0x82, 0x52, 0xfb, 0xb2, 0x7d, - 0x11, 0x22, 0x89, 0x8e, 0x47, 0x8e, 0xd0, 0x56, 0x40, 0x64, 0xf5, 0xc5, 0x55, 0xe6, 0x77, 0xff, - 0x04, 0x5d, 0x1c, 0xd0, 0xc5, 0x41, 0x03, 0xe0, 0xb7, 0x72, 0x3a, 0x49, 0x09, 0xfc, 0x63, 0x14, - 0xbc, 0xd7, 0x90, 0x6e, 0x78, 0x91, 0x61, 0xb4, 0x71, 0x78, 0x5d, 0x86, 0x8b, 0x95, 0x77, 0x47, - 0x27, 0xe8, 0xdc, 0xa0, 0x19, 0x71, 0xa3, 0x7e, 0x74, 0x64, 0x6d, 0xca, 0x85, 0x5f, 0xcc, 0xef, - 0x77, 0x59, 0x38, 0x6a, 0xb2, 0xa0, 0x41, 0xd2, 0x66, 0x45, 0xe1, 0x1c, 0xd4, 0x14, 0xe3, 0x55, - 0x77, 0xe4, 0x5a, 0xb9, 0xf6, 0x69, 0xeb, 0x6e, 0xc4, 0xab, 0x9c, 0x87, 0x6a, 0xfc, 0xda, 0x4b, - 0xd7, 0xaf, 0x79, 0xac, 0xcb, 0xfc, 0xd8, 0x9c, 0xf8, 0x7d, 0xcf, 0x53, 0xe0, 0x5a, 0x5e, 0xda, - 0xdf, 0xd5, 0x4f, 0xe2, 0x3a, 0x74, 0x58, 0xc8, 0x9c, 0xf7, 0xcf, 0xea, 0x63, 0xe7, 0xfa, 0x91, - 0xf4, 0x76, 0x12, 0xc9, 0x1c, 0x34, 0x68, 0x2f, 0x3a, 0x4d, 0x2d, 0x06, 0xa3, 0x5d, 0xb1, 0x1e, - 0x9e, 0x55, 0x6a, 0x7d, 0x9d, 0x5a, 0x8b, 0xce, 0xd0, 0x8c, 0xb1, 0xa4, 0xa0, 0x87, 0x94, 0xd1, - 0xa3, 0xc9, 0x19, 0x49, 0x92, 0x59, 0x53, 0xd5, 0x0b, 0x2b, 0x27, 0x3d, 0xb0, 0xe4, 0x9c, 0x65, - 0x7a, 0x89, 0xa3, 0x1d, 0x81, 0x58, 0x96, 0x87, 0xf6, 0x47, 0x56, 0xa7, 0x04, 0xb9, 0xf0, 0x4f, - 0x09, 0xdc, 0x53, 0x02, 0xef, 0x66, 0xe0, 0xdc, 0x70, 0x48, 0xa3, 0x05, 0x52, 0xb2, 0x52, 0x35, - 0x5e, 0x99, 0x4a, 0xc0, 0x8a, 0x54, 0x1d, 0x03, 0x69, 0x2d, 0x00, 0x9d, 0x5e, 0xa6, 0x79, 0x32, - 0xd1, 0xc1, 0x92, 0x75, 0xa0, 0x4c, 0x3d, 0x48, 0x34, 0x42, 0x28, 0x5e, 0x44, 0x08, 0xc4, 0xa3, - 0x10, 0xb9, 0x0e, 0x5d, 0x81, 0xa1, 0xc4, 0xc5, 0x8f, 0x47, 0x21, 0x12, 0xee, 0x09, 0x47, 0x49, - 0xf4, 0x78, 0xea, 0x78, 0x2f, 0x19, 0x71, 0x5d, 0x12, 0x9b, 0x24, 0xc9, 0x62, 0x54, 0xa4, 0x07, - 0x64, 0x49, 0x67, 0x45, 0xe4, 0x36, 0x31, 0x32, 0xcb, 0xa0, 0x9d, 0xbb, 0x21, 0xb1, 0x25, 0x73, - 0x1d, 0x7a, 0x11, 0x9e, 0xd2, 0x8e, 0xd4, 0xc2, 0x4b, 0xab, 0x24, 0xa5, 0x29, 0x4b, 0x99, 0x4a, - 0x53, 0x81, 0xf2, 0x94, 0xad, 0x44, 0x95, 0x29, 0x53, 0x65, 0x4a, 0x55, 0x8d, 0x72, 0xcd, 0x07, - 0x4f, 0x44, 0xad, 0x74, 0x93, 0x81, 0xe4, 0xb6, 0x0c, 0x55, 0xd2, 0x2a, 0x54, 0x72, 0x00, 0x90, - 0xf4, 0xac, 0x05, 0x15, 0xd9, 0x0a, 0x0a, 0x5b, 0x81, 0xaa, 0xba, 0x47, 0x54, 0x9e, 0x96, 0xa0, - 0xfc, 0xae, 0x50, 0x6d, 0xab, 0xcf, 0x7c, 0x5d, 0x66, 0x49, 0xcf, 0x37, 0x48, 0x4e, 0xac, 0xc7, - 0xec, 0x47, 0xb9, 0x35, 0x8c, 0x12, 0x44, 0x2c, 0x31, 0xbe, 0xbc, 0xd0, 0x18, 0x33, 0x63, 0xfb, - 0xfb, 0xa3, 0xfb, 0xaf, 0x83, 0x91, 0xc9, 0xc9, 0xcb, 0x2d, 0x98, 0x14, 0x1a, 0xda, 0xe6, 0x4c, - 0x3e, 0x34, 0x18, 0x0d, 0x2b, 0x17, 0x1a, 0x94, 0x64, 0x43, 0x83, 0x32, 0xa0, 0x01, 0xa0, 0x01, - 0xa0, 0x01, 0xa0, 0x81, 0x42, 0xdf, 0x4f, 0x91, 0x0f, 0xa8, 0xd4, 0x17, 0x54, 0xe4, 0x13, 0x2a, - 0xf3, 0x0d, 0x55, 0x1a, 0x02, 0x0d, 0x0c, 0x82, 0x6a, 0xc3, 0xa0, 0x8d, 0x81, 0xd0, 0xc6, 0x50, - 0xe8, 0x61, 0x30, 0xe4, 0x1a, 0x0e, 0xc9, 0x06, 0x44, 0x9d, 0x8f, 0xb9, 0x70, 0xe2, 0xfb, 0xae, - 0xcf, 0x8f, 0x2b, 0x0a, 0xf3, 0xd9, 0x55, 0xf4, 0x3b, 0x50, 0x9b, 0xc9, 0xac, 0x30, 0xb8, 0x5e, - 0x87, 0xcc, 0x65, 0xdd, 0x7a, 0xf3, 0x17, 0xd1, 0x92, 0x5f, 0x91, 0xfa, 0x9b, 0x15, 0x4d, 0x0d, - 0x12, 0x92, 0x75, 0x13, 0xcd, 0xd2, 0xbb, 0x4a, 0xe5, 0xf8, 0xa4, 0x52, 0x29, 0x9e, 0x1c, 0x9e, - 0x14, 0x4f, 0x8f, 0x8e, 0x4a, 0xc7, 0xa5, 0x23, 0x48, 0xab, 0x1a, 0x68, 0xa0, 0x6e, 0x54, 0xb4, - 0xa1, 0xc9, 0x2e, 0xb6, 0x71, 0xe9, 0x1e, 0xde, 0x51, 0xd8, 0x3c, 0x70, 0x3c, 0x01, 0xc9, 0x00, - 0xf3, 0x9c, 0x3d, 0xda, 0x7d, 0x2f, 0x86, 0xf0, 0x45, 0x38, 0xf0, 0x70, 0xe0, 0xe1, 0xc0, 0xc3, - 0x81, 0x87, 0x03, 0x9f, 0x37, 0x07, 0xfe, 0x9d, 0x42, 0xff, 0xfd, 0x08, 0xfe, 0x3b, 0xfc, 0x77, - 0xf8, 0xef, 0xf0, 0xdf, 0xe1, 0xbf, 0x2f, 0x88, 0xe6, 0x09, 0x44, 0x13, 0xce, 0x3a, 0x9c, 0xf5, - 0x74, 0xce, 0x3a, 0xf7, 0x54, 0x7b, 0xeb, 0xdc, 0x83, 0xbb, 0x0e, 0x77, 0x1d, 0xee, 0x3a, 0xdc, - 0x75, 0xb8, 0xeb, 0x70, 0xd7, 0xe1, 0xae, 0xc3, 0x5d, 0x87, 0xbb, 0x0e, 0x77, 0x1d, 0xee, 0x7a, - 0x5e, 0x45, 0xb3, 0x7c, 0x84, 0xdb, 0x75, 0x38, 0xec, 0x70, 0xd8, 0x37, 0x16, 0xdb, 0x6f, 0xe3, - 0x03, 0xa4, 0xc8, 0x5b, 0x1f, 0x0d, 0x0f, 0x77, 0x19, 0xee, 0x32, 0xdc, 0x65, 0xb8, 0xcb, 0x70, - 0x97, 0x73, 0xe4, 0x2e, 0x47, 0xa1, 0x15, 0xb9, 0x8e, 0xc5, 0x87, 0x13, 0x41, 0xcf, 0xb5, 0xad, - 0x70, 0x9a, 0xb5, 0xe8, 0xb6, 0xa7, 0x83, 0x04, 0xe8, 0x21, 0x09, 0xea, 0x25, 0x62, 0x41, 0x32, - 0x94, 0x77, 0xe3, 0x9b, 0x97, 0x8e, 0x13, 0x0d, 0xa6, 0xa2, 0x47, 0x77, 0x3e, 0x7d, 0xa4, 0xe5, - 0x85, 0xe9, 0xd0, 0xa8, 0x5b, 0x9f, 0x66, 0xcc, 0xc7, 0x4a, 0x26, 0x44, 0x97, 0xee, 0x7d, 0x3a, - 0x12, 0x23, 0x8a, 0x41, 0xd9, 0xaf, 0x65, 0x5d, 0xa3, 0xae, 0x7e, 0xc6, 0xc8, 0xba, 0x4e, 0x5d, - 0xfe, 0x8c, 0x10, 0xf8, 0x37, 0x98, 0xc5, 0x8e, 0xb2, 0x2e, 0x80, 0x9a, 0xa8, 0x1d, 0x8d, 0xe0, - 0xa0, 0x1e, 0xdd, 0x01, 0x17, 0x3c, 0x86, 0x8a, 0x06, 0x73, 0x51, 0xdb, 0x2d, 0x50, 0xfd, 0x51, - 0x45, 0xa3, 0x4e, 0xb9, 0x47, 0xd1, 0xed, 0x7d, 0x3b, 0xb6, 0x6c, 0xc7, 0x09, 0x59, 0x14, 0xe9, - 0xe0, 0xb5, 0xbf, 0x53, 0x38, 0x87, 0x86, 0xcd, 0x39, 0x0b, 0x7d, 0xe5, 0x2e, 0x59, 0xe1, 0x5f, - 0xbb, 0xbb, 0x77, 0x45, 0xeb, 0xd4, 0xb6, 0x1e, 0xab, 0xd6, 0xc7, 0xd6, 0x8f, 0xd2, 0xdb, 0xca, - 0xe0, 0x6c, 0xef, 0xc7, 0xc9, 0x60, 0xfe, 0x9b, 0x3f, 0x97, 0xfd, 0x58, 0xe9, 0xed, 0xc9, 0xe0, - 0x6c, 0xc5, 0xbf, 0x1c, 0x0f, 0xce, 0xd6, 0x7c, 0xc6, 0xd1, 0x60, 0x77, 0xe1, 0x47, 0x87, 0xdf, - 0x2f, 0xaf, 0xfa, 0x85, 0xca, 0x8a, 0x5f, 0x38, 0x5c, 0xf5, 0x0b, 0x87, 0x2b, 0x7e, 0x61, 0xe5, - 0x94, 0xca, 0x2b, 0x7e, 0xe1, 0x68, 0xf0, 0x73, 0xe1, 0xe7, 0x77, 0x97, 0xff, 0xe8, 0xf1, 0x60, - 0xef, 0xe7, 0xaa, 0x7f, 0x3b, 0x19, 0xfc, 0x3c, 0xdb, 0xdb, 0xfb, 0xaf, 0xc2, 0xb6, 0xa9, 0x3e, - 0xdc, 0xdf, 0x1a, 0x35, 0x12, 0x3a, 0x03, 0xea, 0xd4, 0x83, 0x27, 0x72, 0x9d, 0x68, 0xf8, 0x3f, - 0xf4, 0x03, 0xd4, 0x46, 0x82, 0xd1, 0x0f, 0x50, 0x38, 0x43, 0x85, 0x7e, 0x80, 0x26, 0xa9, 0x52, - 0x43, 0x55, 0xa8, 0x89, 0x5d, 0x00, 0x6f, 0x5d, 0x07, 0x1d, 0x00, 0x25, 0x1c, 0x25, 0x74, 0x00, - 0x5c, 0x79, 0x74, 0xb6, 0xba, 0xf9, 0x1f, 0x69, 0x35, 0x75, 0x29, 0xd5, 0xd3, 0xa5, 0xb5, 0xff, - 0x2b, 0xa3, 0xfd, 0xdf, 0x3a, 0x43, 0xa1, 0xfd, 0x9f, 0x30, 0x95, 0x8d, 0xf6, 0x7f, 0xab, 0x96, - 0x86, 0xbc, 0xfd, 0x5f, 0x27, 0xe8, 0xfb, 0x9c, 0x85, 0x91, 0xbc, 0x1e, 0x80, 0xc9, 0x88, 0x68, - 0x04, 0xa8, 0x9b, 0xfa, 0x54, 0xa0, 0x46, 0x65, 0xab, 0x53, 0x65, 0x6a, 0x55, 0x99, 0x7a, 0x55, - 0xa3, 0x66, 0xf3, 0x41, 0x10, 0x49, 0x6b, 0x04, 0x18, 0xf4, 0xf9, 0x28, 0x1e, 0x96, 0x39, 0x56, - 0xd0, 0xe1, 0x8c, 0x47, 0xf2, 0x5b, 0xff, 0x2c, 0x99, 0x03, 0x5a, 0x04, 0x9a, 0xa6, 0xba, 0x15, - 0xaa, 0x70, 0x55, 0xaa, 0x5c, 0xb9, 0x4a, 0x57, 0xae, 0xda, 0xd5, 0xaa, 0x78, 0x39, 0xaa, 0x5e, - 0x92, 0xca, 0x4f, 0x96, 0x52, 0x5d, 0x8b, 0xc0, 0x31, 0x40, 0x96, 0xda, 0xb9, 0x41, 0x41, 0xc7, - 0x06, 0x45, 0x51, 0xed, 0x0a, 0x12, 0x9e, 0x54, 0x46, 0xa9, 0x2b, 0x8e, 0xd0, 0x55, 0x5d, 0x1a, - 0x42, 0x87, 0x58, 0x5b, 0x05, 0x21, 0x63, 0x4a, 0x83, 0xc5, 0x75, 0x11, 0x39, 0x7d, 0x3a, 0x2c, - 0x68, 0x21, 0x85, 0x39, 0x8d, 0xa5, 0x69, 0xa1, 0xa7, 0x6c, 0x2a, 0x2f, 0xb3, 0xf7, 0x55, 0xb5, - 0x8f, 0x19, 0xcf, 0x00, 0x1e, 0x26, 0x3c, 0x4c, 0x78, 0x98, 0xf0, 0x30, 0xe1, 0x61, 0xc2, 0xc3, - 0x84, 0x87, 0x09, 0x0f, 0x13, 0x1e, 0x26, 0x3c, 0x4c, 0x78, 0x98, 0xf0, 0x30, 0xe1, 0x61, 0x1a, - 0xeb, 0x61, 0xaa, 0xbc, 0xbf, 0xc4, 0xbd, 0x25, 0xbc, 0x4a, 0x78, 0x95, 0xf0, 0x2a, 0xe1, 0x55, - 0xc2, 0xab, 0x84, 0x57, 0x09, 0xaf, 0x12, 0x5e, 0x25, 0xbc, 0x4a, 0x78, 0x95, 0xf0, 0x2a, 0xe1, - 0x55, 0x9a, 0xee, 0x55, 0xaa, 0xbb, 0xaf, 0xc4, 0x3d, 0x25, 0x3c, 0x4a, 0x78, 0x94, 0xf0, 0x28, - 0xe1, 0x51, 0xc2, 0xa3, 0x84, 0x47, 0x09, 0x8f, 0x12, 0x1e, 0x25, 0x3c, 0x4a, 0x78, 0x94, 0xf0, - 0x28, 0xe1, 0x51, 0x9a, 0x38, 0x02, 0x4a, 0x38, 0x29, 0xad, 0x43, 0xc3, 0x6d, 0xce, 0x0e, 0x24, - 0x95, 0x00, 0xd8, 0xa1, 0x28, 0xe4, 0xf4, 0x61, 0x32, 0x77, 0x53, 0xab, 0x39, 0x11, 0x96, 0x44, - 0x71, 0x1d, 0x79, 0x65, 0x24, 0xc8, 0xcb, 0x80, 0x49, 0x32, 0xde, 0x28, 0x20, 0x61, 0x26, 0xd7, - 0x82, 0x02, 0x12, 0x28, 0x20, 0xa1, 0x11, 0x77, 0x22, 0xbf, 0x81, 0x96, 0xc4, 0x06, 0x59, 0x92, - 0x09, 0x12, 0x89, 0x4c, 0x97, 0x0a, 0x42, 0x44, 0x55, 0x7b, 0x5b, 0x45, 0x04, 0x88, 0x4a, 0x97, - 0x53, 0x66, 0xa3, 0x66, 0x15, 0x44, 0x87, 0x6a, 0x51, 0xaa, 0x94, 0x4f, 0x2b, 0xa7, 0xc7, 0x27, - 0xe5, 0xd3, 0xa3, 0x2d, 0x92, 0xa9, 0x9c, 0xb8, 0xf9, 0x2d, 0x38, 0x50, 0x8b, 0x0e, 0x94, 0xff, - 0xcd, 0xf6, 0x5c, 0xc7, 0x0a, 0x99, 0x1d, 0x49, 0x20, 0x10, 0x5e, 0x9c, 0xa9, 0xd9, 0x71, 0xe1, - 0x58, 0xc1, 0xb1, 0x82, 0x63, 0x05, 0xc7, 0x0a, 0x8e, 0xd5, 0x4c, 0xbb, 0x72, 0xce, 0xac, 0x89, - 0xa2, 0x8c, 0x3c, 0x39, 0xba, 0x72, 0x47, 0x72, 0xd7, 0x39, 0x49, 0x5d, 0xe5, 0xcc, 0xb4, 0xce, - 0xf1, 0xd6, 0xcb, 0x33, 0xca, 0xa3, 0xe1, 0x60, 0x8b, 0x61, 0x8b, 0x61, 0x8b, 0x61, 0x8b, 0x61, - 0x8b, 0xa7, 0x4e, 0xdc, 0x43, 0x10, 0x78, 0xcc, 0x96, 0x6a, 0x7c, 0x4b, 0x30, 0x88, 0x0b, 0x6b, - 0xf3, 0x1f, 0xe6, 0x3e, 0x7d, 0xe1, 0xf2, 0x2c, 0xe2, 0x78, 0x3c, 0x98, 0x44, 0x98, 0x44, 0x98, - 0x44, 0x98, 0x44, 0x98, 0x44, 0xdc, 0xfb, 0x89, 0xfc, 0xc2, 0xbd, 0x1f, 0xc9, 0xb0, 0xb8, 0xf7, - 0xa3, 0x15, 0x25, 0xdc, 0xfb, 0x6d, 0x87, 0x4c, 0xe1, 0xde, 0x4f, 0xad, 0x23, 0x85, 0x36, 0x98, - 0x4b, 0xc6, 0x31, 0x30, 0xfc, 0xd8, 0x98, 0x3e, 0x98, 0x6f, 0x34, 0x16, 0xb4, 0xa4, 0x77, 0xb6, - 0x68, 0x86, 0x9a, 0xb6, 0x51, 0xb6, 0x94, 0xc6, 0xd8, 0x52, 0x1a, 0x61, 0xd3, 0x36, 0xbe, 0x16, - 0x2d, 0x2d, 0xc4, 0xea, 0xc8, 0x2c, 0x35, 0x54, 0x20, 0x69, 0x70, 0x2b, 0x34, 0xcd, 0x41, 0xac, - 0x8e, 0x14, 0xa7, 0xc9, 0xc4, 0x3c, 0x49, 0x90, 0x74, 0x53, 0x49, 0xb5, 0xf6, 0xd2, 0x2c, 0x46, - 0x3a, 0xb2, 0xef, 0xa5, 0x80, 0x7d, 0x14, 0xdc, 0x19, 0x9a, 0xa4, 0x13, 0xb4, 0xe0, 0x56, 0xa6, - 0xc2, 0x3b, 0x3d, 0x53, 0x30, 0xcc, 0x84, 0x4c, 0x32, 0x15, 0x63, 0x4c, 0xce, 0x0c, 0x93, 0x33, - 0xc0, 0xb4, 0x4c, 0xaf, 0x5e, 0xba, 0x5b, 0x74, 0x6b, 0xcf, 0x82, 0xdd, 0xe1, 0xee, 0x37, 0x02, - 0xa9, 0x9a, 0x1c, 0x84, 0xf1, 0xf3, 0x45, 0xc3, 0x78, 0x12, 0x22, 0x87, 0xec, 0x72, 0x8b, 0xf2, - 0x32, 0x4b, 0xc2, 0xe5, 0x15, 0xf5, 0x65, 0x95, 0xb4, 0xcb, 0x29, 0x69, 0x97, 0x51, 0x72, 0x2e, - 0x9f, 0xf4, 0x76, 0xb5, 0xc9, 0x2e, 0x93, 0x24, 0xc4, 0x53, 0x10, 0xc5, 0x4f, 0x08, 0xf4, 0x28, - 0xde, 0x8a, 0x36, 0x01, 0x56, 0xe4, 0xfa, 0x1d, 0x72, 0x43, 0x30, 0x1e, 0x05, 0xe6, 0x00, 0xe6, - 0x00, 0xe6, 0x00, 0xe6, 0x40, 0xa8, 0xc4, 0x73, 0xb7, 0xcb, 0xb8, 0xdb, 0xf9, 0x1a, 0x91, 0x54, - 0x5e, 0x23, 0xac, 0xb0, 0x56, 0xf8, 0xec, 0x8f, 0xae, 0xe5, 0x0a, 0xbe, 0xed, 0x07, 0x11, 0xeb, - 0x04, 0xbe, 0x43, 0x51, 0x65, 0x84, 0x38, 0x30, 0x81, 0xf0, 0xbe, 0x46, 0x46, 0xe0, 0x81, 0xac, - 0x08, 0x3a, 0x49, 0x81, 0x05, 0x32, 0x2f, 0x7d, 0x29, 0xa3, 0x35, 0x65, 0x04, 0x0a, 0xc8, 0xde, - 0x7a, 0xf9, 0x95, 0xcd, 0xa4, 0x4a, 0x83, 0x21, 0x37, 0x95, 0xad, 0xed, 0xc1, 0xf6, 0x3c, 0xb4, - 0xfd, 0xc8, 0x1d, 0xee, 0x7f, 0x44, 0x8e, 0xf0, 0xa7, 0xc7, 0x02, 0xce, 0x07, 0xce, 0x07, 0xce, - 0x07, 0xce, 0x17, 0x2a, 0xf1, 0x94, 0xf5, 0x95, 0x29, 0x51, 0x3e, 0xd0, 0x37, 0xd0, 0x37, 0xd0, - 0x37, 0xd0, 0x37, 0xd0, 0xf7, 0xb6, 0xa0, 0x6f, 0xc7, 0x8d, 0x3a, 0xa1, 0xdb, 0x75, 0x7d, 0x9b, - 0x07, 0x21, 0x1d, 0xf0, 0x9e, 0x1d, 0x06, 0x98, 0x1b, 0x98, 0x1b, 0x98, 0x1b, 0x98, 0x5b, 0xa8, - 0xc4, 0x93, 0xe5, 0xe9, 0x11, 0xe6, 0xe5, 0x01, 0x70, 0x03, 0x70, 0x03, 0x70, 0x6b, 0xb0, 0xf5, - 0xb2, 0xf2, 0xde, 0x00, 0xb3, 0xb7, 0x13, 0x66, 0x33, 0xdf, 0xeb, 0xd1, 0xa1, 0xeb, 0xf8, 0xe9, - 0x00, 0xd5, 0x00, 0xd5, 0x00, 0xd5, 0x00, 0xd5, 0xc2, 0x35, 0x8b, 0xc5, 0x87, 0xc3, 0x10, 0x46, - 0x30, 0x12, 0x94, 0x5f, 0x24, 0x2a, 0xb7, 0xa8, 0xa7, 0x71, 0x19, 0x27, 0xa7, 0x11, 0x19, 0x97, - 0xf8, 0xe9, 0x30, 0x2e, 0x30, 0x2e, 0x30, 0x2e, 0x30, 0x2e, 0x42, 0x25, 0x3e, 0xe2, 0xa1, 0xeb, - 0x3f, 0x51, 0x5a, 0x96, 0x77, 0x5b, 0xa0, 0xfd, 0x83, 0xd0, 0x7d, 0x1a, 0xf1, 0xea, 0x96, 0xed, - 0x38, 0x84, 0x1c, 0xfe, 0xfc, 0x40, 0xb0, 0x09, 0xb0, 0x09, 0xb0, 0x09, 0xb0, 0x09, 0x42, 0x25, - 0xde, 0xed, 0x7d, 0x3b, 0x8e, 0xd5, 0x0b, 0x8b, 0x22, 0x52, 0xcb, 0x40, 0xf0, 0xec, 0x86, 0xcd, - 0x39, 0x0b, 0x7d, 0x32, 0x3a, 0xbf, 0xf0, 0xaf, 0xdd, 0xdd, 0xbb, 0xa2, 0x75, 0x6a, 0x5b, 0x8f, - 0x55, 0xeb, 0x63, 0xeb, 0x47, 0xe9, 0x6d, 0x65, 0x70, 0xb6, 0xf7, 0xe3, 0x64, 0x30, 0xff, 0xcd, - 0x9f, 0xcb, 0x7e, 0xac, 0xf4, 0xf6, 0x64, 0x70, 0xb6, 0xe2, 0x5f, 0x8e, 0x07, 0x67, 0x6b, 0x3e, - 0xe3, 0x68, 0xb0, 0xbb, 0xf0, 0xa3, 0xc3, 0xef, 0x97, 0x57, 0xfd, 0x42, 0x65, 0xc5, 0x2f, 0x1c, - 0xae, 0xfa, 0x85, 0xc3, 0x15, 0xbf, 0xb0, 0x72, 0x4a, 0xe5, 0x15, 0xbf, 0x70, 0x34, 0xf8, 0xb9, - 0xf0, 0xf3, 0xbb, 0xcb, 0x7f, 0xf4, 0x78, 0xb0, 0xf7, 0x73, 0xd5, 0xbf, 0x9d, 0x0c, 0x7e, 0x9e, - 0xed, 0xed, 0xfd, 0x57, 0x01, 0xbc, 0x67, 0x46, 0x70, 0x12, 0xf9, 0x72, 0xb0, 0x49, 0xe4, 0x03, - 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x88, 0x95, 0x78, 0x04, 0x18, 0x2c, 0x7c, 0x21, 0xc0, - 0x60, 0xad, 0x61, 0x10, 0x60, 0xb0, 0xd9, 0xd6, 0x23, 0xc0, 0xc0, 0x0c, 0x19, 0x40, 0x80, 0x81, - 0x36, 0x40, 0x7b, 0x08, 0x64, 0x58, 0xc8, 0x48, 0xeb, 0x63, 0x4c, 0x8d, 0x01, 0x80, 0x0d, 0x80, - 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, 0x0d, 0x80, - 0x9d, 0x77, 0x80, 0x1d, 0xf0, 0xa0, 0x13, 0x78, 0xd6, 0x88, 0x6a, 0xa6, 0x44, 0xd9, 0xb3, 0x03, - 0x01, 0x6a, 0x03, 0x6a, 0x03, 0x6a, 0x03, 0x6a, 0x0b, 0x95, 0xf8, 0xb8, 0xe7, 0x7a, 0xa2, 0x69, - 0x10, 0xe0, 0xab, 0xb7, 0xed, 0xa1, 0xe9, 0x8f, 0x4e, 0xda, 0x0f, 0x1d, 0x76, 0x06, 0x76, 0x06, - 0x76, 0x06, 0xf5, 0xaf, 0xb7, 0xb8, 0xfe, 0x35, 0x3a, 0xea, 0x28, 0xea, 0xa8, 0x23, 0xae, 0x17, - 0x9d, 0x80, 0x4e, 0x3a, 0x6f, 0x14, 0xee, 0xfe, 0xa4, 0x97, 0xdc, 0x9c, 0x4b, 0xb9, 0x33, 0x1b, - 0x2d, 0xb5, 0x33, 0x17, 0xd8, 0xbd, 0x23, 0xb2, 0x58, 0x8b, 0xd8, 0xae, 0x73, 0x24, 0x5d, 0xe6, - 0x48, 0xba, 0xca, 0x89, 0xed, 0x22, 0x97, 0x55, 0x0e, 0x04, 0x9f, 0x7e, 0x0d, 0x4f, 0x7d, 0x41, - 0x48, 0xc7, 0xaa, 0xcc, 0xad, 0xde, 0xb2, 0xa9, 0x9d, 0xf4, 0xca, 0x22, 0xdd, 0x6f, 0xa6, 0x14, - 0x2b, 0x51, 0xe2, 0xa4, 0x83, 0x18, 0xa5, 0xdb, 0xb0, 0xcd, 0x97, 0x3b, 0xc5, 0x52, 0x17, 0x3a, - 0x81, 0x97, 0xa1, 0x26, 0xd7, 0x54, 0x31, 0x4a, 0x2f, 0xb5, 0x1a, 0xcf, 0xe8, 0xc6, 0x65, 0x76, - 0xd7, 0x44, 0xb8, 0x65, 0x02, 0xdd, 0x2f, 0x51, 0x6e, 0x96, 0x70, 0x77, 0x4a, 0xb8, 0xdb, 0x24, - 0xd6, 0x3d, 0x92, 0xab, 0x9e, 0x32, 0xbb, 0x35, 0x89, 0xc4, 0x78, 0xcc, 0x7e, 0x0c, 0xd9, 0x63, - 0x16, 0x89, 0x99, 0xb8, 0x29, 0x19, 0xee, 0x9e, 0x0b, 0x8d, 0xb1, 0x86, 0xdc, 0xdf, 0x1f, 0x81, - 0xdb, 0x83, 0xd1, 0x91, 0xd6, 0x58, 0x75, 0x31, 0xdf, 0xe9, 0x05, 0x6e, 0x2c, 0x3d, 0x19, 0xb5, - 0x57, 0xf2, 0x24, 0x28, 0x30, 0x28, 0x30, 0x28, 0xb0, 0x9c, 0x28, 0xb0, 0xe4, 0x54, 0x6b, 0xac, - 0xc3, 0xb2, 0x35, 0xb0, 0x15, 0xd2, 0xb0, 0x36, 0x63, 0x83, 0xda, 0xcc, 0x0d, 0x69, 0xa1, 0xbd, - 0xa0, 0xbd, 0x36, 0x9e, 0x7a, 0xd6, 0x06, 0xb0, 0xa2, 0x1a, 0xbe, 0x8a, 0x6d, 0xf0, 0x2a, 0xe8, - 0x42, 0x4b, 0xd8, 0x05, 0x96, 0xc8, 0x0b, 0x2b, 0x82, 0x0b, 0x2a, 0xd1, 0x17, 0x52, 0x64, 0x17, - 0x50, 0x64, 0x17, 0x4e, 0x34, 0x17, 0x4c, 0x6a, 0xf9, 0x64, 0x61, 0x17, 0x46, 0x04, 0x17, 0x44, - 0x82, 0x2e, 0x84, 0x32, 0x70, 0x70, 0x6f, 0xb3, 0xaa, 0x3c, 0x41, 0x0d, 0x4e, 0x29, 0x1a, 0x9a, - 0x42, 0xfd, 0x41, 0xfd, 0x41, 0xfd, 0x09, 0x57, 0x7f, 0x62, 0x1b, 0x82, 0x0a, 0x6c, 0x0d, 0x44, - 0xd5, 0xf0, 0x53, 0x70, 0xbe, 0x84, 0xc0, 0x9b, 0x6c, 0x8a, 0x7c, 0x08, 0xaa, 0x28, 0x28, 0xa2, - 0x7c, 0x07, 0xca, 0xd8, 0x76, 0x91, 0xf1, 0x70, 0x14, 0xf9, 0x0b, 0xd4, 0x5b, 0x45, 0xdf, 0xd2, - 0x87, 0x74, 0xf7, 0x34, 0x09, 0xa7, 0x68, 0x99, 0x8b, 0xed, 0x44, 0x36, 0xb8, 0xa4, 0x6b, 0x68, - 0x09, 0x9c, 0x07, 0x9c, 0x07, 0x9c, 0x27, 0x1c, 0xe7, 0x89, 0x6c, 0x08, 0x29, 0x12, 0xe5, 0x01, - 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x8d, 0x6d, 0x0f, 0x1a, 0x7b, 0x88, 0x04, 0xa4, 0xd2, 0xbc, - 0xd0, 0x97, 0x51, 0xe6, 0xcc, 0x19, 0x20, 0x2e, 0x20, 0x2e, 0x20, 0x2e, 0xe1, 0x88, 0x2b, 0x0a, - 0xad, 0xc8, 0x75, 0x44, 0xa5, 0x36, 0x26, 0x97, 0x0b, 0xa7, 0x02, 0x9e, 0x35, 0x7e, 0x59, 0xed, - 0x30, 0xd7, 0x64, 0xe9, 0xba, 0x3d, 0x2f, 0xb2, 0x3c, 0xfb, 0x81, 0x79, 0x02, 0xf3, 0x76, 0x44, - 0xae, 0x20, 0xcd, 0x4a, 0x8a, 0x5f, 0xd1, 0x85, 0x95, 0x45, 0x85, 0x1b, 0x09, 0xab, 0x4d, 0xea, - 0x43, 0x48, 0x02, 0xaa, 0xab, 0x81, 0xeb, 0x31, 0x4a, 0xdc, 0xa8, 0x72, 0x4a, 0x94, 0xef, 0x7d, - 0xb1, 0xf2, 0xee, 0xe8, 0x04, 0xf5, 0x6d, 0xa4, 0x3f, 0xb5, 0xa5, 0x73, 0x16, 0x2f, 0x69, 0xf7, - 0xb7, 0x7e, 0x97, 0x85, 0xa3, 0x44, 0x1f, 0x94, 0x87, 0x10, 0x2a, 0x5a, 0x2d, 0x9d, 0xb2, 0x83, - 0x09, 0x30, 0x24, 0x51, 0x1f, 0x0f, 0x8a, 0xfe, 0x1d, 0x64, 0x7d, 0x3b, 0xd0, 0xaf, 0x23, 0x17, - 0xfd, 0x3a, 0x5a, 0x60, 0xdb, 0x52, 0x9f, 0x80, 0x6c, 0x29, 0x8c, 0x0b, 0x5a, 0x25, 0x4b, 0x2a, - 0x23, 0xf8, 0x36, 0xf0, 0x6d, 0xe0, 0xdb, 0xc8, 0xf8, 0x36, 0x61, 0xd4, 0x86, 0x40, 0x2a, 0x03, - 0xd7, 0x9b, 0x22, 0xdd, 0x4f, 0x5c, 0x6f, 0x1a, 0xb3, 0x55, 0x54, 0xc5, 0x70, 0x71, 0xa9, 0xa9, - 0x2b, 0xcc, 0x8a, 0xc3, 0x4b, 0x22, 0x91, 0x48, 0x6b, 0xfc, 0x44, 0x31, 0x60, 0xab, 0x04, 0xb0, - 0x05, 0xb0, 0xb5, 0xad, 0x60, 0x2b, 0x6b, 0x42, 0x64, 0xf2, 0x20, 0xd7, 0x1f, 0x5d, 0xcb, 0x31, - 0xc7, 0x0a, 0x3a, 0x9c, 0xf1, 0x48, 0x9c, 0xa0, 0x24, 0xbc, 0xcd, 0xc2, 0x10, 0x82, 0xf6, 0x55, - 0xac, 0xc5, 0x13, 0x5e, 0x07, 0x94, 0xa2, 0xfe, 0x27, 0x61, 0xdd, 0x4f, 0xaa, 0x7a, 0x9f, 0xe4, - 0x75, 0x3e, 0xc9, 0xeb, 0x7b, 0xd2, 0xd6, 0xf5, 0xd4, 0xab, 0xa8, 0xa3, 0xf0, 0xfa, 0x9d, 0x24, - 0xf1, 0xaa, 0xf3, 0x2a, 0x40, 0x24, 0x75, 0x4b, 0x73, 0x37, 0x4d, 0x70, 0xa5, 0x42, 0x79, 0x17, - 0x4d, 0x7c, 0x0f, 0x49, 0xdd, 0x5d, 0x45, 0xc6, 0x8d, 0x23, 0xc1, 0x55, 0x33, 0xe9, 0x15, 0xb3, - 0xac, 0x2d, 0xa5, 0x8f, 0x83, 0x95, 0xba, 0xcb, 0xf9, 0xbe, 0xec, 0x7b, 0xa3, 0xc1, 0x29, 0x98, - 0x06, 0x88, 0xbd, 0xaf, 0xc4, 0x08, 0x34, 0x1e, 0x00, 0xf8, 0x13, 0xf8, 0x13, 0xf8, 0x13, 0xf8, - 0x13, 0xf8, 0x13, 0xf8, 0x13, 0xf8, 0x13, 0xf8, 0x13, 0xf8, 0x73, 0xdb, 0xf1, 0x27, 0x21, 0xf7, - 0x09, 0xce, 0x13, 0x98, 0x13, 0x98, 0x13, 0x98, 0x13, 0x98, 0x13, 0x98, 0x13, 0x98, 0x13, 0x98, - 0x13, 0x98, 0x13, 0x98, 0x33, 0x06, 0x86, 0x64, 0x5c, 0x27, 0x38, 0x4e, 0xe0, 0x4d, 0xe0, 0x4d, - 0xe0, 0x4d, 0xe0, 0x4d, 0xe0, 0x4d, 0xe0, 0x4d, 0xe0, 0x4d, 0xe0, 0x4d, 0xe0, 0xcd, 0xa0, 0xcf, - 0xc9, 0x03, 0x3d, 0x97, 0x8c, 0x01, 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x0a, - 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x0a, 0x14, 0x4a, 0x1a, 0xea, 0xb9, 0x30, 0x02, 0x10, - 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, 0x28, 0x10, - 0xe8, 0xd6, 0x23, 0x50, 0x4a, 0xfe, 0x13, 0xbc, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, - 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0x27, 0x50, 0xe7, 0x08, 0x19, 0xd2, 0xf1, 0x9d, - 0xe0, 0x39, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, - 0x81, 0x38, 0x0d, 0x47, 0x9c, 0x4a, 0x4b, 0x8b, 0x56, 0x7d, 0x3f, 0xe0, 0xa3, 0x06, 0x3d, 0x42, - 0x2a, 0x8c, 0x46, 0x9d, 0x2f, 0xac, 0x6b, 0xf7, 0x6c, 0xfe, 0x65, 0x68, 0xb1, 0x0e, 0x82, 0x1e, - 0xf3, 0x3b, 0x31, 0x2a, 0xb4, 0x7c, 0xc6, 0xff, 0x13, 0x84, 0x5f, 0x2d, 0xd7, 0x8f, 0xb8, 0xed, - 0x77, 0xd8, 0xc1, 0xfc, 0x37, 0xa2, 0x85, 0xef, 0x1c, 0x44, 0xec, 0x69, 0x88, 0x1a, 0xac, 0x30, - 0xe8, 0x73, 0xd7, 0x7f, 0x3a, 0xe0, 0xcc, 0xea, 0x05, 0x9e, 0xdb, 0x71, 0x59, 0x94, 0x7c, 0x7e, - 0x3e, 0x88, 0xb8, 0xcd, 0xd9, 0x81, 0xa0, 0x82, 0xc3, 0xa3, 0xb7, 0xe0, 0x61, 0xbf, 0xc3, 0xfd, - 0xb1, 0xdd, 0xbd, 0x1a, 0x4d, 0xeb, 0x62, 0x3c, 0xab, 0xf6, 0xed, 0x68, 0x56, 0x37, 0xa3, 0x49, - 0xb5, 0x9b, 0xac, 0x11, 0xcf, 0xa3, 0xfd, 0x61, 0x32, 0x03, 0x03, 0x0b, 0x40, 0x33, 0xdf, 0xe9, - 0x05, 0x6e, 0x0c, 0xd0, 0x04, 0x15, 0x80, 0x4e, 0x9e, 0x88, 0x6e, 0x1b, 0x12, 0x7d, 0x11, 0x14, - 0x80, 0x46, 0xb7, 0x8d, 0x75, 0x24, 0x6e, 0xb8, 0x2a, 0xd6, 0xe4, 0x88, 0xa2, 0xc9, 0x6d, 0x8a, - 0x15, 0x74, 0x7b, 0xdf, 0x2a, 0x68, 0x50, 0x36, 0x6a, 0x50, 0xd6, 0xfa, 0x79, 0x57, 0xb2, 0x4e, - 0x5b, 0xa3, 0x8f, 0xa5, 0xf8, 0x8f, 0xd1, 0xe7, 0xf2, 0x5d, 0xd1, 0xaa, 0x4c, 0x3e, 0x1f, 0xdd, - 0x15, 0xad, 0xa3, 0xd6, 0xde, 0xfd, 0xfd, 0xfe, 0xde, 0x8f, 0xc3, 0xc1, 0xe6, 0xbf, 0xa8, 0x5f, - 0x4b, 0x2e, 0x74, 0xcf, 0x33, 0x40, 0x38, 0xd1, 0x3d, 0x0f, 0xdd, 0xf3, 0xb6, 0xb4, 0xad, 0xcb, - 0xd8, 0x83, 0x11, 0x84, 0xe8, 0xe3, 0xa7, 0x01, 0xcd, 0x03, 0xcd, 0x03, 0xcd, 0xeb, 0x86, 0xe6, - 0x79, 0xe8, 0xfa, 0x4f, 0x22, 0x11, 0xfc, 0x3b, 0x55, 0xda, 0xee, 0x8d, 0xc4, 0x1d, 0x11, 0xc5, - 0x7e, 0xa9, 0x63, 0xbd, 0xd2, 0x1d, 0x85, 0xcd, 0x17, 0x79, 0xb3, 0xdf, 0xd8, 0x70, 0x3b, 0x86, - 0x5a, 0x29, 0x69, 0xce, 0xba, 0x93, 0x92, 0x37, 0x2a, 0xd4, 0xdd, 0x88, 0x57, 0x39, 0x4f, 0xd7, - 0x29, 0xa9, 0x70, 0xe9, 0xfa, 0x35, 0x8f, 0x0d, 0x97, 0x3d, 0x2a, 0x9c, 0xed, 0xf8, 0x7d, 0xcf, - 0x7b, 0x9b, 0xe2, 0x21, 0xf6, 0xf7, 0xec, 0x0f, 0xb9, 0x0e, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xf3, - 0xf8, 0x11, 0xa4, 0x2b, 0x9f, 0xf1, 0x00, 0xa8, 0x10, 0xfc, 0x14, 0x5a, 0x2e, 0x1d, 0x9f, 0xbb, - 0xd9, 0xd9, 0x5a, 0xff, 0x84, 0xac, 0xf7, 0x93, 0x6b, 0xee, 0x64, 0xda, 0x1d, 0x94, 0xb7, 0x73, - 0xeb, 0x2d, 0xe3, 0xeb, 0x8b, 0xf2, 0xeb, 0x9f, 0x78, 0x65, 0xb9, 0x36, 0x5d, 0x26, 0xda, 0xe5, - 0x59, 0x43, 0x84, 0x37, 0x12, 0xd9, 0x5f, 0x2f, 0xf1, 0xea, 0x85, 0xfb, 0xc5, 0xa2, 0x15, 0x46, - 0xe6, 0xe5, 0xb5, 0xb5, 0x9a, 0x42, 0x20, 0xf6, 0xab, 0x88, 0x77, 0xcd, 0x5e, 0x8e, 0x2f, 0xe0, - 0xbe, 0xfc, 0xca, 0x0f, 0x6e, 0x00, 0xde, 0xa7, 0xc1, 0xb9, 0xcf, 0xf8, 0x70, 0x67, 0xd6, 0xd9, - 0x85, 0x0d, 0xf1, 0x77, 0x6a, 0x7c, 0x9d, 0x1a, 0x3f, 0xcf, 0xe3, 0xe3, 0xc9, 0xbb, 0x11, 0x1f, - 0xa7, 0x75, 0x3b, 0x12, 0x16, 0x1c, 0x16, 0x75, 0x42, 0xb7, 0xb7, 0x91, 0x7e, 0x4a, 0xf6, 0x6a, - 0xfa, 0x97, 0xd7, 0x5c, 0x8e, 0xcd, 0xfc, 0xcb, 0x8d, 0xfd, 0xc8, 0x34, 0xfe, 0x62, 0x3a, 0xd1, - 0xcb, 0xea, 0x02, 0x66, 0x76, 0xf5, 0x32, 0xbb, 0x74, 0xa9, 0x45, 0x93, 0xc6, 0x50, 0x6e, 0xec, - 0x75, 0xa5, 0xf7, 0xae, 0x36, 0xf4, 0xa2, 0xd6, 0xb0, 0x7d, 0x6b, 0xa8, 0x2a, 0xe6, 0xdb, 0x0f, - 0x1e, 0x73, 0x36, 0x3f, 0x65, 0x93, 0x5f, 0xc4, 0x09, 0xc3, 0x09, 0x53, 0x74, 0xc2, 0x1e, 0x82, - 0xc0, 0x63, 0xb6, 0x9f, 0xe6, 0x88, 0x95, 0xe4, 0x1f, 0xb1, 0xc9, 0xc5, 0x8a, 0xf5, 0x68, 0x77, - 0x5d, 0x6f, 0x08, 0x71, 0xd3, 0x9e, 0xb9, 0xc5, 0x27, 0xe5, 0xe4, 0x10, 0xba, 0x96, 0x77, 0xb8, - 0x9d, 0x47, 0x30, 0x7e, 0x73, 0xe3, 0x0e, 0xa0, 0xeb, 0x30, 0x9f, 0xbb, 0xfc, 0x39, 0x64, 0x8f, - 0x69, 0x0e, 0xe1, 0x06, 0xe1, 0x89, 0x85, 0x8b, 0xf1, 0x50, 0xef, 0xed, 0x28, 0xc5, 0x86, 0x4f, - 0x26, 0x5c, 0x3d, 0x3f, 0xbf, 0xa9, 0xdd, 0xde, 0xb6, 0x3f, 0x56, 0x2f, 0x2f, 0xea, 0x7f, 0x6d, - 0xba, 0xeb, 0x71, 0xa4, 0x65, 0x94, 0xea, 0xc6, 0x31, 0x1d, 0x4b, 0x98, 0xcc, 0xfb, 0xa2, 0xf1, - 0x67, 0x65, 0x73, 0xd2, 0x2e, 0x05, 0xbf, 0x99, 0x7d, 0x9e, 0xc7, 0x26, 0xcc, 0xf3, 0xb2, 0x51, - 0xbf, 0x35, 0x61, 0x9e, 0xf5, 0x72, 0xbb, 0xd6, 0xfc, 0x7b, 0xed, 0xe6, 0xaa, 0xd6, 0x2c, 0x10, - 0xb3, 0xaf, 0x2d, 0x45, 0xda, 0x27, 0x15, 0x01, 0x9b, 0x89, 0x78, 0xcd, 0x44, 0xb8, 0xa6, 0x23, - 0x5a, 0xc5, 0x00, 0x89, 0x2e, 0xef, 0x6f, 0x8e, 0x19, 0x86, 0xbf, 0x04, 0x8c, 0x0e, 0x8c, 0xae, - 0x08, 0x22, 0xf4, 0x5d, 0x9f, 0x97, 0x8e, 0x53, 0xa0, 0x83, 0xe3, 0x0d, 0x7e, 0x25, 0x5d, 0xea, - 0x50, 0xba, 0xfb, 0x9e, 0xd4, 0x57, 0x7e, 0x19, 0x83, 0x18, 0xb2, 0xa6, 0xee, 0x88, 0x48, 0xda, - 0x18, 0xa4, 0xbb, 0xdd, 0x52, 0xbe, 0x64, 0xc7, 0x47, 0x47, 0x87, 0x47, 0x0a, 0x97, 0x8d, 0xe8, - 0x4a, 0xa8, 0x25, 0xd1, 0xf6, 0x6c, 0x14, 0x13, 0x94, 0x26, 0xf6, 0x07, 0xd6, 0x07, 0xd6, 0x67, - 0x4b, 0x39, 0xd8, 0x30, 0xe8, 0x73, 0x66, 0x39, 0x6e, 0xc4, 0x5d, 0xff, 0xa9, 0xef, 0x46, 0x5f, - 0x58, 0xb8, 0xf9, 0x51, 0x5b, 0xf6, 0x10, 0x9c, 0x3c, 0x9c, 0x3c, 0x45, 0x27, 0x2f, 0xbd, 0x38, - 0xee, 0xa4, 0x4c, 0x09, 0x49, 0x97, 0xfa, 0x91, 0x02, 0x04, 0x66, 0x0e, 0x9f, 0xcb, 0x12, 0x0f, - 0x9f, 0x39, 0xee, 0xbd, 0xf0, 0xaf, 0xdd, 0xe3, 0x51, 0x66, 0xc4, 0x5d, 0xd1, 0x3a, 0x6c, 0xc5, - 0x9f, 0x7e, 0xde, 0x95, 0x86, 0x7f, 0x2f, 0x8d, 0xbe, 0x79, 0x3a, 0xf5, 0xbf, 0x51, 0xa2, 0xc5, - 0xef, 0xe3, 0xff, 0xcf, 0x7d, 0x7b, 0xef, 0x6c, 0xb7, 0x72, 0x57, 0xb4, 0xca, 0xc9, 0xcf, 0x57, - 0x92, 0x4f, 0xc7, 0xc3, 0xff, 0x9d, 0xb4, 0x66, 0xfe, 0x75, 0x38, 0xce, 0x78, 0xc8, 0xd3, 0xd6, - 0x8f, 0xd3, 0xc1, 0x54, 0x12, 0xc7, 0x8f, 0xd2, 0xdb, 0x77, 0xe3, 0xbf, 0xa7, 0x09, 0x02, 0x6f, - 0x51, 0x46, 0x3b, 0x6d, 0xa3, 0x84, 0x48, 0x4c, 0xcf, 0x39, 0x13, 0x27, 0x8e, 0x90, 0x1c, 0xf5, - 0x92, 0x43, 0xa0, 0x10, 0x56, 0x4a, 0xc8, 0x8f, 0xf2, 0x60, 0xf4, 0xc3, 0x87, 0xe3, 0x1f, 0xfd, - 0x51, 0x7c, 0x3b, 0xfe, 0x96, 0x5c, 0xb1, 0xd0, 0xd2, 0x63, 0x8b, 0x2d, 0x70, 0x68, 0xb9, 0x4e, - 0x4a, 0x2c, 0x19, 0xff, 0x2a, 0x10, 0x24, 0x10, 0xa4, 0x22, 0x04, 0xe9, 0x04, 0x9c, 0x33, 0xc7, - 0xfa, 0x77, 0xdf, 0x76, 0x52, 0x39, 0x70, 0x1b, 0xfc, 0x4e, 0x5a, 0xbd, 0x57, 0x90, 0x69, 0x28, - 0x0b, 0x5a, 0x6a, 0x19, 0xbe, 0xc9, 0xfe, 0x26, 0x7b, 0xbb, 0x41, 0xe6, 0x38, 0x74, 0x0b, 0x74, - 0x8b, 0x70, 0xdd, 0x62, 0x5c, 0xe0, 0xc2, 0x55, 0xad, 0xf9, 0x8f, 0xeb, 0x9b, 0x3f, 0xda, 0x17, - 0x57, 0xb7, 0xcd, 0xea, 0xd5, 0x87, 0x5a, 0xbb, 0xf9, 0x57, 0xa3, 0x66, 0x4e, 0xfc, 0x42, 0xfd, - 0xf0, 0xcf, 0x9b, 0x8f, 0x66, 0x5c, 0xb8, 0x37, 0xca, 0x0d, 0x33, 0x26, 0xfa, 0xe7, 0xed, 0x85, - 0x09, 0x13, 0x3d, 0xaf, 0x7d, 0xac, 0x7e, 0xae, 0x37, 0x13, 0xc9, 0x35, 0x63, 0x71, 0xeb, 0x87, - 0xc6, 0xc5, 0x5b, 0xe4, 0x3b, 0x15, 0xe6, 0xf5, 0xb4, 0xc5, 0x74, 0x09, 0x2b, 0xdc, 0x7e, 0xf0, - 0x98, 0xd5, 0x09, 0x7c, 0x9f, 0xc5, 0xd7, 0x7c, 0xd1, 0xfa, 0xc9, 0x2b, 0x8b, 0xbf, 0x2a, 0x38, - 0x91, 0xa5, 0x88, 0x44, 0x16, 0x32, 0x44, 0x22, 0x29, 0x91, 0x65, 0x5e, 0x46, 0x52, 0x40, 0xe5, - 0xf9, 0x27, 0x6c, 0x06, 0x9b, 0x4b, 0x80, 0xcd, 0x80, 0xcd, 0xe9, 0x84, 0x37, 0xf9, 0x85, 0x99, - 0x70, 0xf3, 0xe7, 0xf4, 0x20, 0x76, 0xee, 0x39, 0x9b, 0xa6, 0x7b, 0xa7, 0x8a, 0x05, 0x49, 0x5d, - 0xf3, 0x23, 0x4b, 0x8d, 0x8f, 0x6c, 0x82, 0x9e, 0x55, 0xe0, 0x85, 0x09, 0xbe, 0xb0, 0x03, 0x20, - 0xec, 0x20, 0xa4, 0x83, 0x5a, 0x9b, 0xa6, 0xb7, 0xa7, 0xae, 0xb4, 0x91, 0xec, 0xbb, 0xc7, 0xec, - 0xc7, 0xcd, 0x7c, 0xcb, 0x05, 0xbd, 0x7d, 0x92, 0x8e, 0xbf, 0x8f, 0xd1, 0xd6, 0xfe, 0xfe, 0xc1, - 0x08, 0x6b, 0x1d, 0xcc, 0x1d, 0x39, 0xaa, 0xdc, 0xf4, 0x0d, 0xb4, 0x78, 0x67, 0x72, 0x1e, 0x53, - 0x2a, 0x91, 0xf1, 0xef, 0xa7, 0x53, 0x1e, 0x25, 0x28, 0x0f, 0x28, 0x0f, 0x5a, 0xe5, 0xb1, 0xa9, - 0x75, 0x15, 0x65, 0x65, 0xc5, 0x5a, 0xdb, 0x8c, 0x56, 0x37, 0xf3, 0x01, 0x12, 0x71, 0x90, 0xc4, - 0x1e, 0x28, 0x51, 0x07, 0x4b, 0xf8, 0x01, 0x13, 0x7e, 0xd0, 0x84, 0x1f, 0xb8, 0x74, 0x07, 0x2f, - 0x03, 0xfd, 0xb3, 0x23, 0xa4, 0x5e, 0x96, 0x00, 0x6b, 0x2e, 0xc2, 0xaa, 0x2f, 0xb3, 0xee, 0xc9, - 0x7f, 0xb1, 0x77, 0x18, 0x8d, 0xfe, 0xb8, 0xeb, 0x85, 0x01, 0x0f, 0x3a, 0x81, 0xf7, 0x3f, 0x9d, - 0x7e, 0x18, 0x32, 0x9f, 0xef, 0xee, 0x0d, 0x7f, 0x24, 0x0a, 0x3b, 0xd6, 0xe4, 0x5f, 0x5a, 0x22, - 0x70, 0x41, 0xfa, 0xed, 0x4c, 0x13, 0x3f, 0xee, 0xb0, 0x47, 0xbb, 0xef, 0x71, 0xcb, 0xed, 0xf6, - 0x82, 0x90, 0x4f, 0xaa, 0xf9, 0x64, 0xd6, 0x8e, 0xcb, 0x1f, 0x9b, 0x52, 0xd4, 0xce, 0x47, 0x0f, - 0x1b, 0x3e, 0xf7, 0xa6, 0xf6, 0xff, 0x6a, 0x1f, 0x9a, 0xed, 0x9b, 0xeb, 0xcf, 0xcd, 0x1a, 0x74, - 0x6e, 0xac, 0x37, 0xc2, 0x5e, 0xe0, 0x41, 0xe1, 0xa6, 0x50, 0xb8, 0xf1, 0xc2, 0x6d, 0x9d, 0xb6, - 0x9d, 0x9c, 0xcc, 0xd1, 0x91, 0xcc, 0x5a, 0x64, 0x3c, 0xd1, 0xbc, 0x95, 0x0c, 0xcf, 0xa8, 0xf9, - 0xfd, 0xee, 0xf0, 0xe5, 0x06, 0x3a, 0xeb, 0xc9, 0x88, 0x27, 0x6a, 0x5e, 0x80, 0x7a, 0x9c, 0x7e, - 0x1a, 0xd4, 0x18, 0xa0, 0x23, 0xa0, 0x63, 0x9e, 0xa1, 0xe3, 0x04, 0x16, 0x26, 0x47, 0x5e, 0x63, - 0x45, 0x27, 0x18, 0x08, 0x0a, 0x01, 0x80, 0x40, 0x6c, 0xd0, 0x73, 0xdb, 0x8b, 0xd8, 0x34, 0x53, - 0x72, 0x07, 0xe3, 0x8d, 0x38, 0x1b, 0xd7, 0xcd, 0x9c, 0x94, 0x3e, 0x9e, 0x7c, 0x7b, 0x0c, 0x2c, - 0x1d, 0xf6, 0xe8, 0xfa, 0x6e, 0x7c, 0x71, 0xbf, 0xfa, 0x9f, 0x92, 0x7f, 0x89, 0x33, 0x59, 0xa5, - 0xee, 0x4f, 0xa6, 0xca, 0xc4, 0xc9, 0x53, 0x44, 0x54, 0x28, 0x7e, 0x79, 0x98, 0x80, 0x4a, 0xc5, - 0xc9, 0xc3, 0xa6, 0x0b, 0x69, 0x08, 0x6a, 0x35, 0xd0, 0x8f, 0x36, 0xca, 0x32, 0xa3, 0xd4, 0x5d, - 0xf3, 0xfa, 0x2b, 0x18, 0xbd, 0xad, 0xf5, 0xf0, 0x2c, 0xa2, 0xde, 0x3a, 0x45, 0xdd, 0xfc, 0x19, - 0x5d, 0x16, 0xaf, 0xa4, 0x59, 0xc5, 0xdc, 0xa5, 0x80, 0x8f, 0x69, 0x32, 0x2d, 0x3b, 0xf6, 0x98, - 0x79, 0x1a, 0xa0, 0x07, 0xbc, 0x2c, 0x78, 0x59, 0xf0, 0xb2, 0x08, 0x14, 0xdd, 0x16, 0x35, 0x03, - 0x58, 0x08, 0xca, 0x5c, 0xf8, 0xce, 0x78, 0x17, 0x74, 0x88, 0x85, 0xc8, 0xc4, 0xd9, 0x89, 0xe0, - 0xea, 0x10, 0x54, 0xa5, 0xcc, 0x2a, 0x20, 0xa8, 0x4a, 0x9e, 0x96, 0x17, 0x1c, 0x54, 0x35, 0x73, - 0xe0, 0x34, 0x50, 0x23, 0x99, 0x40, 0xa9, 0x08, 0x30, 0x0a, 0x35, 0x02, 0x35, 0x02, 0x35, 0xb2, - 0xa9, 0x1a, 0x99, 0x39, 0x70, 0x3a, 0xa8, 0x91, 0xb5, 0x7a, 0xb7, 0xac, 0xd6, 0x1f, 0x6b, 0xf4, - 0x72, 0x59, 0xb9, 0xa2, 0x69, 0x15, 0x47, 0x19, 0x8a, 0x03, 0x8a, 0x63, 0xad, 0x59, 0x22, 0x2e, - 0x13, 0xb4, 0x0f, 0x68, 0x1f, 0xd0, 0x3e, 0xf2, 0x69, 0x1f, 0xc4, 0x65, 0x6e, 0x42, 0x66, 0x20, - 0x2e, 0x53, 0x96, 0xce, 0xc5, 0x2d, 0x7f, 0x4a, 0x85, 0x8b, 0xb8, 0x4c, 0xc4, 0x65, 0xca, 0xe1, - 0x78, 0x45, 0x72, 0xbd, 0x80, 0x8e, 0xd0, 0x64, 0x80, 0x8e, 0xb8, 0x31, 0xa4, 0x52, 0x74, 0x88, - 0xcb, 0x04, 0x62, 0x03, 0x62, 0x83, 0x92, 0x5b, 0xa9, 0xe4, 0x10, 0x97, 0x39, 0xf5, 0x14, 0xc4, - 0x65, 0xaa, 0xd1, 0x5d, 0x3b, 0x88, 0xcb, 0x94, 0xac, 0x06, 0x11, 0x97, 0x09, 0x2f, 0x0b, 0x5e, - 0x16, 0xbc, 0x2c, 0x78, 0x59, 0xd9, 0x7e, 0x23, 0xf7, 0x71, 0x99, 0x6b, 0xd4, 0xf8, 0x4c, 0xbf, - 0x82, 0x62, 0x4b, 0xe8, 0xfd, 0xc1, 0x9e, 0xe7, 0xed, 0xc4, 0xce, 0x34, 0x35, 0xb7, 0x93, 0xea, - 0x92, 0x77, 0x4b, 0x7a, 0xe1, 0xae, 0x5b, 0xd9, 0x33, 0x9d, 0xfc, 0x4a, 0x97, 0xdb, 0xc2, 0x46, - 0x21, 0x36, 0x61, 0xbf, 0xc3, 0xfd, 0x49, 0x51, 0xef, 0xd1, 0x60, 0x17, 0xe3, 0xb1, 0xda, 0xcd, - 0xe1, 0x93, 0x3f, 0xbc, 0x3c, 0x18, 0x75, 0x7f, 0x17, 0x97, 0x9f, 0xac, 0x06, 0xf0, 0xa6, 0x85, - 0x7f, 0x51, 0xed, 0x17, 0xd5, 0x7e, 0x97, 0x0a, 0x52, 0xca, 0x12, 0xbf, 0xa8, 0xeb, 0x8b, 0xba, - 0xbe, 0xd9, 0x0c, 0x26, 0xea, 0xfa, 0x52, 0x3b, 0xc6, 0x08, 0x01, 0x25, 0x76, 0x78, 0x11, 0x3b, - 0xfe, 0x9a, 0x03, 0x8b, 0xba, 0xbe, 0x19, 0xac, 0x21, 0x94, 0x07, 0x94, 0x47, 0x5a, 0xe5, 0x81, - 0xf8, 0x71, 0xd0, 0xd3, 0xa0, 0xa7, 0x73, 0x45, 0x4f, 0xa7, 0xeb, 0x02, 0xb7, 0xd2, 0x06, 0x1d, - 0x65, 0x78, 0x46, 0xa6, 0x2e, 0x71, 0x2b, 0x5f, 0xb0, 0x7a, 0x7e, 0x7e, 0x53, 0xbb, 0xbd, 0x6d, - 0x7f, 0xac, 0x5e, 0x5e, 0xd4, 0xff, 0xca, 0x2a, 0x87, 0x19, 0xda, 0xc7, 0xcd, 0x7f, 0x65, 0xbf, - 0xc3, 0x9d, 0x79, 0xcf, 0x8b, 0xc6, 0x9f, 0x95, 0x42, 0xe6, 0x47, 0x0e, 0xde, 0x6a, 0xf8, 0x5e, - 0xc7, 0x79, 0x7c, 0xaf, 0xcb, 0x46, 0xfd, 0x36, 0x8f, 0xef, 0x55, 0x2f, 0xb7, 0x6b, 0xcd, 0xbf, - 0xd7, 0x6e, 0xae, 0x6a, 0x4d, 0x01, 0xaf, 0x97, 0xe9, 0x09, 0xad, 0x5c, 0x5e, 0xf3, 0x8b, 0xbb, - 0xe2, 0xc7, 0xf5, 0x3e, 0xf0, 0x13, 0xf0, 0x53, 0x36, 0xb9, 0xd1, 0xf8, 0x7a, 0x7f, 0x72, 0xbc, - 0xa3, 0xe4, 0xd3, 0x84, 0x39, 0x19, 0x81, 0xbe, 0x47, 0x37, 0x6d, 0x1c, 0x15, 0xae, 0xf9, 0x5f, - 0xbd, 0xaf, 0x9b, 0x0d, 0xab, 0xd0, 0x81, 0x9c, 0xca, 0x5e, 0x1d, 0x05, 0x95, 0x51, 0x40, 0x50, - 0x81, 0xdd, 0xa6, 0xd0, 0xe3, 0x4b, 0xd8, 0x6d, 0x54, 0x45, 0x41, 0x55, 0x14, 0x28, 0x0d, 0x19, - 0x4a, 0x03, 0xac, 0x36, 0xbc, 0x32, 0x78, 0x65, 0xb9, 0xf2, 0xca, 0xc0, 0x6a, 0x6f, 0xf4, 0x54, - 0xb0, 0xda, 0x0a, 0xde, 0x0b, 0xac, 0xb6, 0x41, 0xef, 0x05, 0x56, 0x9b, 0x76, 0xfb, 0xc0, 0x6a, - 0x03, 0x3f, 0x01, 0x3f, 0x69, 0x83, 0x9f, 0xc0, 0x6a, 0x6b, 0xe0, 0x97, 0x6a, 0xcc, 0x6a, 0x9b, - 0x97, 0xa6, 0x86, 0xac, 0x34, 0x71, 0x4b, 0xaa, 0x51, 0x56, 0xda, 0x58, 0x20, 0x05, 0xe7, 0x9f, - 0x21, 0xeb, 0x6c, 0xb2, 0xbc, 0x14, 0xa9, 0x66, 0xdf, 0x3c, 0xdb, 0xdf, 0x20, 0xd3, 0x6c, 0xf4, - 0xe3, 0x66, 0x24, 0x9a, 0x0d, 0xe7, 0x9a, 0xcb, 0x2c, 0xb3, 0xf8, 0xc5, 0x74, 0x49, 0x31, 0x8b, - 0x27, 0xb3, 0x71, 0x86, 0xd9, 0x9a, 0x7b, 0xb3, 0x63, 0x40, 0x82, 0xd9, 0x06, 0xaf, 0xb2, 0x93, - 0xab, 0xec, 0xb2, 0xf5, 0xc4, 0x90, 0x06, 0x48, 0x6c, 0x9c, 0x5a, 0x86, 0x6c, 0x10, 0x3a, 0x91, - 0x16, 0xe5, 0x9b, 0xea, 0x7f, 0x69, 0xb6, 0x99, 0xc8, 0xcb, 0xf1, 0x4c, 0x52, 0xdf, 0x98, 0x8d, - 0x51, 0x57, 0x46, 0x86, 0x27, 0x7e, 0x0a, 0xd8, 0x9d, 0x0c, 0xc7, 0x06, 0xd4, 0x4e, 0xba, 0x63, - 0x65, 0x3a, 0xaf, 0x13, 0xf1, 0xd0, 0xf5, 0x9f, 0x44, 0xd0, 0x3a, 0xef, 0x74, 0x2e, 0x84, 0xc6, - 0x6d, 0xde, 0x8f, 0x04, 0x94, 0x40, 0x1b, 0x3d, 0x27, 0x7b, 0xe1, 0xfd, 0xea, 0x87, 0xe6, 0xc5, - 0x9f, 0x28, 0xb9, 0x0f, 0x95, 0x05, 0x95, 0xb5, 0xb1, 0xc4, 0x30, 0xbf, 0xdf, 0x65, 0xa1, 0xbd, - 0x61, 0x95, 0xa1, 0x95, 0x7a, 0x2b, 0xef, 0xa5, 0xf6, 0x87, 0x42, 0x62, 0xb9, 0x4e, 0x76, 0xe5, - 0x37, 0x79, 0x10, 0x94, 0x16, 0x94, 0x16, 0x94, 0x96, 0xd4, 0xc3, 0x33, 0x7d, 0x80, 0x8e, 0x33, - 0x3c, 0xe2, 0xc6, 0xf6, 0x9f, 0x58, 0xe6, 0xa8, 0x1e, 0x01, 0xb5, 0x86, 0x2f, 0x5d, 0x5f, 0x48, - 0xd1, 0x62, 0x01, 0x9a, 0x65, 0xe1, 0x71, 0x71, 0xec, 0xd3, 0xe6, 0x84, 0xc9, 0xca, 0xe7, 0x7d, - 0x0c, 0xed, 0xb8, 0x4a, 0xdb, 0xb9, 0xfb, 0xe4, 0xc6, 0x37, 0x37, 0x45, 0x1d, 0xc2, 0x61, 0x0a, - 0x97, 0xf6, 0x77, 0xed, 0xb7, 0xa0, 0x52, 0x3c, 0xad, 0x68, 0xbc, 0x0b, 0x8a, 0x4a, 0x4e, 0xb7, - 0x70, 0x99, 0x2d, 0xfc, 0x72, 0x2b, 0xbe, 0x53, 0x8a, 0xff, 0xaf, 0x51, 0x82, 0x56, 0x97, 0x75, - 0x1f, 0x58, 0x18, 0xa5, 0x27, 0x8c, 0x27, 0x0f, 0x00, 0x63, 0x4c, 0x08, 0xc5, 0xc0, 0x18, 0xef, - 0xc8, 0x64, 0x8c, 0x47, 0x32, 0x9d, 0xdd, 0x9d, 0x19, 0x3f, 0x27, 0x9b, 0x37, 0x53, 0xca, 0xea, - 0xcd, 0x94, 0xe1, 0xcd, 0xc0, 0x9b, 0x91, 0xe4, 0xcd, 0xa4, 0x3d, 0x72, 0x2f, 0x26, 0x37, 0x55, - 0xd6, 0xdf, 0x4a, 0xb9, 0x4b, 0x93, 0x05, 0x28, 0xf8, 0x20, 0x0a, 0x3b, 0x90, 0x22, 0x0f, 0xe6, - 0xb2, 0x03, 0xea, 0x3e, 0x8a, 0xe8, 0xc4, 0x22, 0xb0, 0x5d, 0x0c, 0xc9, 0x71, 0x25, 0x3b, 0xb6, - 0xab, 0x8e, 0xaf, 0xfb, 0xa8, 0x3a, 0x78, 0x3f, 0xa3, 0x2b, 0x97, 0xf9, 0x50, 0x27, 0x0f, 0x72, - 0x7d, 0xce, 0xc2, 0x47, 0x5b, 0xa4, 0x78, 0x24, 0xc9, 0x57, 0xc9, 0xa3, 0xdf, 0x6a, 0xe9, 0x6e, - 0x66, 0xe5, 0x16, 0x29, 0x95, 0x00, 0x99, 0x32, 0xa0, 0x52, 0x0a, 0xe4, 0xca, 0x81, 0x5c, 0x49, - 0x50, 0x2a, 0x0b, 0x31, 0x4a, 0x43, 0x20, 0x0f, 0xb4, 0x23, 0x84, 0xe7, 0x5c, 0x29, 0xad, 0x0f, - 0x76, 0xc4, 0xac, 0xe4, 0xfc, 0x5b, 0xd9, 0x52, 0x08, 0x56, 0x1a, 0xff, 0x13, 0x81, 0xcf, 0x9c, - 0x6e, 0xcc, 0xe7, 0x3e, 0x9e, 0x25, 0x73, 0x8f, 0xe6, 0xbf, 0x31, 0xfe, 0x7b, 0xfa, 0x5e, 0x7b, - 0xe2, 0x65, 0x42, 0xad, 0x29, 0xca, 0xc8, 0xe8, 0xc8, 0x63, 0x78, 0xc6, 0xb4, 0xc8, 0xf8, 0xcf, - 0x34, 0xb9, 0x0b, 0xe2, 0x16, 0x7e, 0x80, 0x36, 0x8d, 0x44, 0x6d, 0x1a, 0xd7, 0xce, 0x72, 0x10, - 0xb5, 0xb8, 0x82, 0xe4, 0x5f, 0x96, 0xdc, 0x67, 0xf1, 0xf7, 0x7f, 0x9d, 0x32, 0xf1, 0xa7, 0x67, - 0xfb, 0xed, 0xcb, 0xd1, 0x20, 0xe0, 0xaa, 0x25, 0xec, 0x28, 0x4a, 0x02, 0x49, 0x71, 0xf6, 0x41, - 0x54, 0x0b, 0x46, 0xde, 0x08, 0x6d, 0x7e, 0x55, 0x5c, 0x10, 0xda, 0x0c, 0x92, 0x5a, 0xcd, 0xb1, - 0x52, 0x83, 0x50, 0x11, 0xda, 0xbc, 0x29, 0x12, 0x43, 0x68, 0x33, 0x54, 0x16, 0x54, 0x56, 0x2e, - 0x54, 0x16, 0x42, 0x9b, 0x37, 0x9a, 0x23, 0x42, 0x9b, 0xa1, 0xb4, 0xa0, 0xb4, 0x10, 0xda, 0x8c, - 0xd0, 0xe6, 0x35, 0x1f, 0x87, 0xd0, 0x66, 0x6d, 0xb6, 0x00, 0xa1, 0xcd, 0xcb, 0xbe, 0x10, 0xda, - 0x4c, 0x4a, 0x17, 0xd3, 0x56, 0xe9, 0xda, 0x80, 0x2c, 0x4e, 0x8b, 0xdc, 0x32, 0x1a, 0x1d, 0x53, - 0x1b, 0x4f, 0x80, 0x30, 0x16, 0x8a, 0xb8, 0xd0, 0x72, 0x62, 0xb9, 0xb0, 0x2e, 0xb4, 0x9c, 0x98, - 0x9c, 0x32, 0x93, 0xea, 0xfa, 0x6d, 0xa6, 0x19, 0x50, 0xc7, 0x4f, 0x80, 0xe1, 0x22, 0x33, 0x58, - 0xe2, 0xaa, 0xf8, 0xfd, 0xb9, 0xb6, 0xa2, 0xc8, 0x77, 0x11, 0xbf, 0x51, 0xed, 0xbc, 0xb4, 0x35, - 0xfc, 0xde, 0x6c, 0xf0, 0xc2, 0x93, 0xf3, 0xf8, 0x8b, 0x0b, 0xac, 0xf5, 0x0e, 0xdf, 0x46, 0x87, - 0x6d, 0xa3, 0xc3, 0xb5, 0xde, 0x61, 0x5a, 0xf5, 0x7e, 0x6b, 0x6e, 0xa4, 0xd8, 0x0d, 0xfc, 0xc5, - 0x89, 0xf8, 0xf5, 0x09, 0x58, 0xbe, 0xe7, 0x8b, 0x3b, 0x3a, 0xfb, 0x9d, 0xb9, 0x77, 0x7f, 0xed, - 0x9d, 0x33, 0xbd, 0xeb, 0xec, 0x0c, 0x5f, 0xe6, 0x31, 0x35, 0x87, 0x42, 0xd0, 0xe3, 0x6e, 0xc7, - 0xf6, 0x2c, 0xbb, 0xdb, 0xf3, 0x46, 0x85, 0x7d, 0xe7, 0xa7, 0xf1, 0x02, 0x9b, 0x16, 0x7e, 0x74, - 0xee, 0x5d, 0x96, 0x07, 0x0f, 0xac, 0xc4, 0x7a, 0xbf, 0xc2, 0x72, 0xd3, 0x58, 0x2d, 0xe8, 0xf1, - 0xe1, 0x98, 0x4b, 0x36, 0xea, 0x35, 0x38, 0xb6, 0x36, 0xdc, 0x5a, 0x1b, 0x4e, 0xcd, 0xc3, 0xa5, - 0xc9, 0xdc, 0x36, 0xdc, 0xf5, 0x55, 0x57, 0xe0, 0x85, 0x64, 0x6d, 0x57, 0x5f, 0x40, 0xbd, 0xf4, - 0xb2, 0x79, 0xf9, 0xd9, 0x55, 0x0a, 0xe3, 0x97, 0xd1, 0x1c, 0xaf, 0x82, 0xf0, 0x75, 0xc0, 0xf6, - 0x7a, 0x1b, 0xb5, 0x29, 0x7e, 0xde, 0x18, 0x27, 0x6f, 0x8c, 0x87, 0xd7, 0xde, 0xc8, 0x74, 0xaa, - 0xfa, 0xb5, 0x18, 0x87, 0xc2, 0xea, 0xf3, 0xf6, 0xfa, 0x7e, 0x1b, 0x52, 0xa9, 0xf5, 0x75, 0x71, - 0x48, 0xeb, 0x56, 0xa9, 0x2f, 0xd6, 0xfa, 0xaa, 0xb8, 0x88, 0x81, 0x36, 0x6b, 0xd7, 0x6b, 0xdd, - 0xb0, 0x10, 0x66, 0xba, 0x02, 0x98, 0xba, 0xd7, 0x6c, 0x5d, 0x5f, 0xe0, 0xb2, 0xfa, 0xf3, 0xfa, - 0x95, 0x6d, 0x5d, 0x5b, 0x20, 0x69, 0x5c, 0xc5, 0x8d, 0x2b, 0xb7, 0xda, 0xdd, 0x9e, 0xd5, 0x0d, - 0x9c, 0x0c, 0xf1, 0x8d, 0xc9, 0x13, 0xb6, 0x83, 0xb1, 0xda, 0x5c, 0xb8, 0xb7, 0x87, 0xb4, 0xda, - 0x58, 0xf8, 0x4d, 0xe1, 0xad, 0xb2, 0x35, 0x59, 0xcb, 0xd2, 0x5c, 0x4d, 0x4c, 0x53, 0xb5, 0xe4, - 0x45, 0xae, 0x1b, 0xcd, 0x8b, 0x0f, 0xd5, 0x7a, 0xbb, 0x7a, 0xd9, 0xa8, 0x5f, 0x7c, 0xbc, 0xa8, - 0xdd, 0xb4, 0x2f, 0xaf, 0xcf, 0x53, 0xc7, 0x34, 0x09, 0x68, 0xa6, 0x26, 0x28, 0xe3, 0xfa, 0xc3, - 0xf5, 0xd5, 0x6d, 0xb3, 0x7a, 0xd5, 0x6c, 0x7f, 0xaa, 0x5e, 0x5c, 0x65, 0xb8, 0xa9, 0x7e, 0xab, - 0xfa, 0x45, 0xce, 0xff, 0xba, 0xaa, 0x5e, 0x5e, 0x7c, 0x30, 0xfe, 0x3d, 0x92, 0x0d, 0x69, 0x5c, - 0xff, 0xa3, 0x76, 0x23, 0x3b, 0x76, 0xa0, 0x45, 0xad, 0x81, 0x48, 0xee, 0x8e, 0x98, 0x6f, 0x3f, - 0x78, 0x2c, 0xc3, 0xdd, 0xd1, 0xe4, 0x01, 0xb0, 0xc4, 0xb0, 0xc4, 0x39, 0xb5, 0xc4, 0x0f, 0x41, - 0xe0, 0xb1, 0x74, 0x77, 0x86, 0x13, 0x2b, 0x5c, 0xd2, 0xe0, 0xa8, 0x3f, 0xba, 0x0f, 0x2c, 0xb4, - 0xf8, 0x73, 0x8f, 0x59, 0xbd, 0x30, 0x78, 0x74, 0xbd, 0x0c, 0x00, 0x7c, 0xc9, 0xb3, 0xa0, 0x00, - 0xa0, 0x00, 0x00, 0xc5, 0xf5, 0x86, 0xe2, 0x1f, 0x2f, 0xde, 0xd7, 0x6e, 0xda, 0xcd, 0xbf, 0x1a, - 0xb5, 0x76, 0xe3, 0xe6, 0xfa, 0xe3, 0x45, 0x3d, 0x07, 0x30, 0xfc, 0xfc, 0xf6, 0xa3, 0xc9, 0xa0, - 0xb5, 0x5e, 0xab, 0x1a, 0x3d, 0xff, 0xe6, 0x3f, 0x3e, 0x98, 0x3d, 0xfd, 0x9b, 0x5b, 0x93, 0xe7, - 0x7f, 0x7b, 0x7b, 0xf9, 0x11, 0x9e, 0xce, 0x3a, 0x2b, 0xf6, 0x64, 0xbb, 0xbe, 0x15, 0x8e, 0x03, - 0x9b, 0x53, 0xc2, 0x9e, 0xa9, 0x67, 0x00, 0xee, 0x00, 0xee, 0x00, 0xee, 0xe8, 0x0d, 0x77, 0x3e, - 0x55, 0x2f, 0xae, 0xda, 0x37, 0xd5, 0xab, 0x4f, 0x39, 0x80, 0x39, 0x7f, 0xbf, 0xf8, 0xf4, 0xf7, - 0xf6, 0xd4, 0x0b, 0x99, 0x0c, 0x79, 0xae, 0xff, 0x91, 0x93, 0x37, 0xb9, 0xbc, 0x38, 0xcf, 0xc9, - 0x9b, 0x7c, 0xbc, 0xf8, 0x67, 0x4d, 0xd0, 0xbb, 0x6c, 0x11, 0xa6, 0xe8, 0xda, 0xdf, 0xad, 0x21, - 0x26, 0xc8, 0x50, 0x54, 0x7c, 0xf2, 0x04, 0xe0, 0x09, 0xe0, 0x89, 0x9c, 0xe2, 0x09, 0x87, 0x75, - 0xdc, 0xae, 0xed, 0x1d, 0x57, 0xb2, 0xa0, 0x89, 0x14, 0xa5, 0x84, 0x17, 0x73, 0xb9, 0xd2, 0x3c, - 0x24, 0x5b, 0x2e, 0x64, 0xb6, 0xc2, 0x70, 0x02, 0xd2, 0x7e, 0x47, 0xcb, 0x97, 0xb5, 0x10, 0xf3, - 0x24, 0xd1, 0x2e, 0x63, 0xe2, 0x9e, 0xc8, 0xec, 0xba, 0x41, 0xb6, 0x32, 0x79, 0xc2, 0x96, 0xf6, - 0x30, 0x87, 0x4b, 0x2b, 0x29, 0x71, 0xb0, 0xa5, 0x89, 0x09, 0x0f, 0xfa, 0xbc, 0xd7, 0xe7, 0x56, - 0x2f, 0xf8, 0x4f, 0x8a, 0x5e, 0x08, 0x33, 0xa6, 0x7c, 0xe6, 0x49, 0x30, 0xe9, 0x30, 0xe9, 0x30, - 0xe9, 0x30, 0xe9, 0x30, 0xe9, 0x30, 0xe9, 0x30, 0xe9, 0x12, 0x4d, 0xba, 0xeb, 0x67, 0xf5, 0xca, - 0x27, 0x4f, 0x80, 0x09, 0x87, 0x09, 0x87, 0x09, 0x87, 0x09, 0x87, 0x09, 0x87, 0x09, 0x87, 0x09, - 0x97, 0x67, 0xc2, 0x53, 0x95, 0x7b, 0xce, 0x52, 0xe6, 0x19, 0xa6, 0x1b, 0xa6, 0xdb, 0x18, 0xd3, - 0x9d, 0xba, 0x18, 0x73, 0xca, 0x22, 0xcc, 0x34, 0x67, 0x9c, 0xdb, 0xe1, 0x13, 0xe3, 0x19, 0x91, - 0xfa, 0xf4, 0x43, 0x70, 0xe2, 0x71, 0xe2, 0x01, 0xd6, 0x01, 0xd6, 0x69, 0xc0, 0x7a, 0x51, 0x57, - 0x44, 0xf9, 0xff, 0xb3, 0xf7, 0xf7, 0x4d, 0x6d, 0x2b, 0xd9, 0xfe, 0x37, 0xfc, 0x3f, 0xaf, 0x82, - 0x72, 0xcd, 0xa9, 0x82, 0x39, 0x11, 0x60, 0x62, 0x20, 0x50, 0xf5, 0xab, 0x5d, 0x4e, 0x20, 0x19, - 0xee, 0x21, 0x81, 0x1b, 0xd8, 0x33, 0xd7, 0xfe, 0x25, 0xde, 0x94, 0x62, 0x0b, 0xa2, 0x6b, 0x1b, - 0xd9, 0x47, 0x92, 0x33, 0xe1, 0x24, 0xbc, 0xf7, 0xab, 0xfc, 0x6c, 0xe3, 0x27, 0x75, 0xf7, 0x6a, - 0x59, 0xb2, 0x3f, 0xa9, 0xa9, 0x3d, 0x84, 0x58, 0x2d, 0xab, 0xd5, 0xbd, 0xd6, 0x67, 0x7d, 0x7b, - 0xf5, 0xea, 0x7d, 0x60, 0x1d, 0x58, 0xcf, 0x88, 0x23, 0x77, 0x62, 0xbf, 0x73, 0x70, 0x81, 0xb9, - 0x37, 0xef, 0xb6, 0x84, 0x4b, 0xc7, 0xa5, 0xe3, 0xd2, 0x71, 0xe9, 0xe8, 0x6f, 0xb8, 0x74, 0x5c, - 0x7a, 0xea, 0x2e, 0x5d, 0x26, 0x31, 0x66, 0x5a, 0x63, 0x38, 0x76, 0x1c, 0x3b, 0x8e, 0x1d, 0xc7, - 0x8e, 0x63, 0xc7, 0xb1, 0xe3, 0xd8, 0x53, 0x74, 0xec, 0x3a, 0xe6, 0x6d, 0xe8, 0xc9, 0xdb, 0x57, - 0xe3, 0xba, 0x71, 0xdd, 0xec, 0x7c, 0x9d, 0xe7, 0xbc, 0xb3, 0x58, 0x73, 0xef, 0xf6, 0x8f, 0xab, - 0x15, 0xd8, 0x05, 0x7b, 0x76, 0xfa, 0xbe, 0x9c, 0xe7, 0x6d, 0x96, 0x6f, 0xcb, 0xef, 0xfe, 0xf9, - 0xef, 0xf2, 0xf5, 0xe9, 0xdd, 0x75, 0xf9, 0x63, 0x39, 0xd7, 0xc5, 0xf6, 0xde, 0x5f, 0x5e, 0xaf, - 0xc6, 0x83, 0xfc, 0xe3, 0x8f, 0xb7, 0xd7, 0xe7, 0xa7, 0x6b, 0xbc, 0xdf, 0x35, 0xe3, 0x87, 0x9e, - 0x4c, 0x1c, 0x3d, 0xb0, 0x3b, 0xf9, 0x9b, 0x61, 0x39, 0xfc, 0xe1, 0x8f, 0xbd, 0x63, 0x77, 0xc4, - 0xce, 0x29, 0x49, 0x50, 0xca, 0x5c, 0x29, 0x6b, 0x49, 0x27, 0x5b, 0x49, 0x11, 0xa6, 0xa8, 0xc2, - 0x6d, 0x11, 0x8e, 0x32, 0x56, 0x85, 0x5b, 0x19, 0x7e, 0x0c, 0x0e, 0xc8, 0xd2, 0x39, 0x18, 0x6b, - 0xca, 0x81, 0x58, 0x9d, 0x81, 0x9f, 0xe2, 0xf4, 0xec, 0x1e, 0xd8, 0xa7, 0x3c, 0x3f, 0xbb, 0x97, - 0x59, 0x2e, 0x93, 0xbf, 0xcf, 0x04, 0x5d, 0xf1, 0x09, 0xaa, 0x5e, 0x26, 0xbf, 0x1a, 0xb7, 0xdc, - 0xba, 0x61, 0x7e, 0xdc, 0x68, 0x23, 0x7a, 0x81, 0x7b, 0x91, 0xc0, 0x9d, 0xc0, 0xdd, 0x6e, 0xe0, - 0xae, 0x3a, 0x35, 0x86, 0x53, 0xe4, 0xfb, 0x83, 0x79, 0xac, 0xdc, 0x6e, 0x84, 0xb3, 0xea, 0xdb, - 0xc3, 0x23, 0x7e, 0x6a, 0x7a, 0x11, 0x87, 0xd5, 0x6b, 0x4c, 0xac, 0x6e, 0xcf, 0xad, 0xdd, 0x69, - 0xf5, 0x26, 0x4b, 0x5d, 0x13, 0x7e, 0xc6, 0x60, 0xd1, 0x46, 0x64, 0xe9, 0x6b, 0xd0, 0xd8, 0x4a, - 0x9f, 0x7e, 0xbf, 0x2f, 0x7c, 0xf4, 0xfa, 0x1e, 0xa7, 0xdf, 0xab, 0xbe, 0x82, 0xd7, 0x6b, 0xf4, - 0x0a, 0x56, 0xfd, 0xe8, 0x7b, 0x0d, 0xca, 0xec, 0x9e, 0xd1, 0x19, 0x9b, 0x83, 0x4b, 0xbf, 0x21, - 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xbb, 0xf0, - 0x12, 0x7b, 0xe1, 0x77, 0xb7, 0x2e, 0x41, 0x2f, 0xbd, 0x96, 0xc0, 0x17, 0xf0, 0x05, 0x7c, 0x51, - 0x1e, 0x33, 0x51, 0xec, 0xc6, 0x8e, 0xe1, 0x24, 0x1a, 0x9d, 0x48, 0x6f, 0x0c, 0x9a, 0xf8, 0x3d, - 0xe8, 0xda, 0xdc, 0x42, 0xe0, 0x06, 0x8d, 0xc8, 0xab, 0x36, 0x82, 0x9a, 0xd1, 0x58, 0x5e, 0x69, - 0x88, 0xd9, 0x03, 0x62, 0x96, 0x0d, 0x31, 0xd2, 0xaf, 0xa0, 0xf8, 0xa6, 0x54, 0x3a, 0x3c, 0x2a, - 0x95, 0xf6, 0x8e, 0x5e, 0x1f, 0xed, 0x1d, 0x1f, 0x1c, 0x14, 0x0f, 0x75, 0x72, 0x00, 0xe1, 0x9a, - 0xe5, 0x71, 0xcd, 0xa3, 0xc1, 0x28, 0x1b, 0xad, 0x00, 0x0c, 0xcd, 0x40, 0x33, 0xd0, 0x0c, 0x62, - 0x0c, 0x62, 0x0c, 0x1c, 0x83, 0x18, 0x03, 0xb4, 0xd8, 0x86, 0x16, 0x27, 0xf6, 0x1f, 0x3d, 0x11, - 0x72, 0xe9, 0xb6, 0x04, 0xbe, 0x80, 0x2f, 0xe0, 0x8b, 0xf2, 0x98, 0x69, 0xcf, 0x9d, 0xd8, 0xaf, - 0xfe, 0x15, 0x89, 0x00, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0xcc, 0x9a, 0x52, 0x8d, - 0xc1, 0x44, 0x1f, 0x3d, 0xc1, 0x01, 0x96, 0x81, 0x65, 0x60, 0x19, 0xa4, 0x18, 0xa4, 0x18, 0x38, - 0x06, 0x29, 0x06, 0x68, 0xb1, 0x0d, 0x2d, 0x52, 0x52, 0x4c, 0xbf, 0x25, 0xf0, 0x05, 0x7c, 0x01, - 0x5f, 0x90, 0x62, 0x90, 0x62, 0x40, 0x18, 0xa4, 0x18, 0xa8, 0xc6, 0x94, 0x6a, 0xac, 0x6e, 0xe1, - 0xd6, 0xac, 0xfb, 0x33, 0xb8, 0xde, 0x42, 0xfd, 0x9f, 0x4e, 0xdd, 0x8e, 0x5d, 0xfd, 0x02, 0x08, - 0xdd, 0xef, 0x15, 0x87, 0xad, 0x6a, 0x1c, 0xf4, 0xcb, 0xaa, 0x75, 0xef, 0x5c, 0xee, 0xdf, 0xe3, - 0x6e, 0xe4, 0xa7, 0xce, 0x7d, 0x3e, 0xb4, 0x6f, 0x93, 0x81, 0x32, 0x8f, 0x23, 0x4f, 0x6d, 0x78, - 0x24, 0xc3, 0x44, 0x4b, 0x54, 0x91, 0xb0, 0x0b, 0x9c, 0x54, 0x91, 0xd0, 0x34, 0x41, 0x54, 0x91, - 0x20, 0x62, 0x23, 0x62, 0xcb, 0x61, 0xc4, 0x86, 0xe0, 0x9c, 0xbb, 0x68, 0x0d, 0xc1, 0x79, 0xe9, - 0xd1, 0x1a, 0x82, 0xf3, 0xea, 0x84, 0x66, 0x54, 0x91, 0x00, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, - 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x65, 0xf5, 0xe1, 0x85, 0x2a, 0x12, 0xe0, 0x0b, 0xf8, 0x42, 0x15, - 0x89, 0xd1, 0x26, 0x58, 0x2f, 0xb7, 0x6f, 0xb1, 0x80, 0x98, 0xec, 0xbe, 0x02, 0xd6, 0xcb, 0xf3, - 0xce, 0x35, 0x54, 0x91, 0x80, 0x66, 0xa0, 0x19, 0xc4, 0x18, 0xc4, 0x18, 0xc4, 0x18, 0xc4, 0x18, - 0xa0, 0x25, 0x2f, 0xd0, 0x42, 0x15, 0x09, 0xf0, 0x05, 0x7c, 0x61, 0xeb, 0x02, 0x52, 0x0c, 0x52, - 0x0c, 0x52, 0x0c, 0x52, 0xcc, 0x2a, 0x50, 0x0d, 0x55, 0x24, 0x60, 0x19, 0x58, 0x06, 0x29, 0x06, - 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x68, 0xc9, 0x09, 0xb4, 0x50, 0x45, 0x02, 0x7c, 0x01, 0x5f, - 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0xb2, 0x46, 0x35, 0x6b, 0x5f, 0x45, - 0x42, 0xa7, 0x0a, 0xc2, 0xa6, 0x66, 0x29, 0x89, 0xdb, 0xf6, 0xad, 0xb2, 0x50, 0x4e, 0xe2, 0xb1, - 0xe9, 0x3c, 0x36, 0x6a, 0x9e, 0x41, 0x19, 0x89, 0x7e, 0x0b, 0x7a, 0xe5, 0x23, 0xf6, 0x28, 0x1f, - 0x91, 0x36, 0x61, 0xae, 0x5b, 0xf9, 0x08, 0x6d, 0x76, 0x1c, 0xee, 0x45, 0xa8, 0x79, 0x41, 0xec, - 0xc7, 0x4f, 0xa1, 0x77, 0xaf, 0xf3, 0xe2, 0xfb, 0x62, 0x97, 0x86, 0x77, 0x2b, 0x9c, 0xf7, 0x6e, - 0xfd, 0xd6, 0x8d, 0x04, 0x82, 0xc7, 0xcb, 0xab, 0xdb, 0xf3, 0x77, 0xe5, 0x8b, 0xbb, 0xf2, 0xc7, - 0xab, 0x8b, 0xf3, 0xf7, 0xe7, 0x67, 0xd7, 0x77, 0x1f, 0x2f, 0x4f, 0xcf, 0x74, 0xc7, 0x51, 0xc7, - 0x91, 0x47, 0x46, 0xc4, 0x69, 0x18, 0x74, 0xf5, 0x9f, 0xeb, 0xdd, 0xe5, 0xa7, 0x9b, 0xdb, 0xf2, - 0xa7, 0xdb, 0xbb, 0x0f, 0xe5, 0xf3, 0x4f, 0x06, 0x31, 0xcd, 0xab, 0x65, 0x3f, 0xc8, 0xe9, 0x1f, - 0x9f, 0xca, 0x1f, 0xcf, 0xdf, 0xe5, 0xfe, 0x39, 0x06, 0x2f, 0xe4, 0xea, 0xf2, 0xdf, 0x67, 0xd7, - 0x69, 0x47, 0x99, 0x15, 0xdb, 0x16, 0xc8, 0x8a, 0x2f, 0xae, 0x36, 0x1e, 0x9b, 0x8d, 0xc0, 0x0b, - 0x0c, 0x6a, 0x3a, 0x0d, 0x9b, 0xc0, 0x1b, 0xe3, 0x8d, 0x57, 0xd4, 0x1b, 0xd7, 0x3d, 0xf7, 0xde, - 0xd0, 0x13, 0x1f, 0x69, 0x5c, 0x7b, 0x35, 0x08, 0x3e, 0xaa, 0x4e, 0xb3, 0xee, 0xc6, 0xf7, 0x8d, - 0xf0, 0xf1, 0x64, 0x30, 0xe1, 0xa2, 0xe9, 0xbf, 0x1e, 0xfb, 0x6d, 0x27, 0x42, 0xc8, 0x80, 0xa1, - 0xf1, 0x1e, 0x42, 0x2f, 0x8a, 0x9c, 0x66, 0x23, 0x34, 0x30, 0x35, 0xa3, 0x8d, 0x60, 0x6c, 0x30, - 0x36, 0x18, 0x1b, 0x8c, 0xcd, 0x54, 0x63, 0x13, 0xb8, 0x5f, 0xeb, 0x5e, 0xcd, 0xc0, 0xd0, 0xf4, - 0x1a, 0xc0, 0xc8, 0x60, 0x64, 0x56, 0xd4, 0xc8, 0x7c, 0x6d, 0x34, 0xea, 0x9e, 0x1b, 0x98, 0x18, - 0x99, 0x62, 0x06, 0xa6, 0xfa, 0xbd, 0xff, 0xd5, 0x0b, 0x3b, 0xeb, 0x8a, 0x4e, 0x33, 0x6c, 0xdc, - 0xfb, 0x75, 0x03, 0x59, 0x71, 0x4a, 0x5b, 0x18, 0x00, 0x0c, 0x00, 0x02, 0x63, 0xb6, 0x05, 0xc6, - 0xf7, 0xe7, 0x6f, 0xcf, 0xae, 0xef, 0x6e, 0xff, 0xb8, 0x3a, 0xbb, 0xbb, 0xba, 0xbe, 0x7c, 0x7f, - 0x7e, 0xb1, 0x02, 0xe2, 0xe2, 0xe9, 0xcd, 0xfb, 0x3c, 0x4b, 0x71, 0x17, 0x67, 0xe5, 0x5c, 0x7f, - 0xff, 0xdb, 0x7f, 0xbf, 0xcb, 0xf7, 0xd7, 0xbf, 0xbe, 0xc9, 0xf3, 0xf7, 0xbf, 0xb9, 0xf9, 0xf8, - 0x1e, 0xfd, 0x36, 0x49, 0x8f, 0x75, 0xd6, 0x90, 0xc3, 0x5e, 0x12, 0x8e, 0x26, 0xf6, 0x8c, 0xb4, - 0x01, 0xee, 0x80, 0x3b, 0xe0, 0x4e, 0xb6, 0x71, 0xe7, 0x43, 0xf9, 0xfc, 0xd3, 0xdd, 0x75, 0xf9, - 0xd3, 0x87, 0x15, 0xc0, 0x9c, 0x7f, 0x9c, 0x7f, 0xf8, 0xc7, 0xdd, 0xc8, 0x03, 0xe5, 0x19, 0x79, - 0x2e, 0xff, 0xbd, 0x22, 0x4f, 0xf2, 0xf1, 0xfc, 0x74, 0x45, 0x9e, 0xe4, 0xfd, 0xf9, 0xff, 0x73, - 0x26, 0xf4, 0x2c, 0x6b, 0xc4, 0x14, 0x7e, 0x20, 0xb1, 0x56, 0x33, 0xd6, 0x0a, 0x5c, 0x01, 0x57, - 0xb0, 0x58, 0x33, 0x8b, 0x29, 0xd6, 0x7b, 0xb1, 0xc6, 0x0f, 0x9a, 0xad, 0xd8, 0x69, 0x36, 0xfe, - 0xe3, 0x85, 0x4e, 0xd5, 0xf9, 0xea, 0x06, 0x35, 0x13, 0xa3, 0x33, 0xd1, 0x16, 0x27, 0x8c, 0x61, - 0x7a, 0x38, 0x61, 0x6c, 0x62, 0xcc, 0x70, 0xc2, 0x18, 0xbb, 0xf9, 0x4c, 0x27, 0x16, 0xc5, 0x08, - 0x28, 0x46, 0x20, 0x1a, 0xb8, 0x6d, 0x52, 0x8c, 0x80, 0x62, 0x04, 0x2b, 0xf0, 0x0a, 0x28, 0x46, - 0x30, 0x85, 0xf2, 0x39, 0x61, 0x0c, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, - 0x80, 0x97, 0x5c, 0xc1, 0x0b, 0x27, 0x8c, 0x81, 0x2f, 0xe0, 0x0b, 0x27, 0x8c, 0x8d, 0x36, 0x41, - 0x2d, 0x25, 0xfb, 0x16, 0x0b, 0x88, 0xc9, 0xee, 0x2b, 0xa0, 0x96, 0x52, 0xde, 0xb9, 0x86, 0x13, - 0xc6, 0xa0, 0x19, 0x68, 0x06, 0x31, 0x06, 0x31, 0x06, 0x31, 0x06, 0x31, 0x06, 0x68, 0xc9, 0x0b, - 0xb4, 0x70, 0xc2, 0x18, 0xf8, 0x02, 0xbe, 0x50, 0xd6, 0x1a, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, - 0x29, 0x66, 0x15, 0xa8, 0x86, 0x13, 0xc6, 0x60, 0x19, 0x58, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, - 0x06, 0x29, 0x06, 0x68, 0xc9, 0x09, 0xb4, 0x70, 0xc2, 0x18, 0xf8, 0x02, 0xbe, 0x20, 0xc5, 0x20, - 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x64, 0x8d, 0x6a, 0xd6, 0xf3, 0x84, 0x31, 0xe3, 0x3a, - 0x08, 0x9b, 0x4a, 0x67, 0x8c, 0x9d, 0xb7, 0x6f, 0x77, 0xd5, 0xbe, 0xdb, 0xbb, 0xb7, 0xed, 0x7b, - 0x65, 0xac, 0xaa, 0x44, 0x5d, 0xb0, 0xaa, 0x44, 0x9d, 0xaa, 0x12, 0x69, 0x00, 0x28, 0x55, 0x25, - 0x34, 0x4d, 0x12, 0x55, 0x25, 0x88, 0xe0, 0x88, 0xe0, 0x72, 0x18, 0xc1, 0x21, 0x40, 0xe7, 0x2e, - 0x7a, 0x43, 0x80, 0x5e, 0x7a, 0xf4, 0x86, 0x00, 0xbd, 0x3a, 0xa1, 0x1a, 0x55, 0x25, 0x80, 0x17, - 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x59, 0x7d, 0x78, 0xa1, 0xaa, 0x04, - 0xf8, 0x02, 0xbe, 0x50, 0x55, 0x62, 0xb4, 0x09, 0xd6, 0xcf, 0xed, 0x5b, 0x2c, 0x20, 0x26, 0xbb, - 0xaf, 0x80, 0xf5, 0xf3, 0xbc, 0x73, 0x0d, 0x55, 0x25, 0xa0, 0x19, 0x68, 0x06, 0x31, 0x06, 0x31, - 0x06, 0x31, 0x06, 0x31, 0x06, 0x68, 0xc9, 0x0b, 0xb4, 0x50, 0x55, 0x02, 0x7c, 0x01, 0x5f, 0xd8, - 0xca, 0x80, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0xb3, 0x0a, 0x54, 0x43, 0x55, 0x09, 0x58, - 0x06, 0x96, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x01, 0x5a, 0x72, 0x02, 0x2d, 0x54, - 0x95, 0x00, 0x5f, 0xc0, 0x17, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0xac, - 0x51, 0x0d, 0x55, 0x25, 0xea, 0x69, 0x56, 0x95, 0xb8, 0xc8, 0x62, 0x55, 0x89, 0xb8, 0x11, 0x6b, - 0xe4, 0x6e, 0x4f, 0x2d, 0x2a, 0xd1, 0x6d, 0x8a, 0x9a, 0x12, 0x76, 0xf1, 0x93, 0x9a, 0x12, 0x9a, - 0x06, 0x89, 0x9a, 0x12, 0xc4, 0x6f, 0xc4, 0x6f, 0x39, 0x8c, 0xdf, 0x90, 0x9f, 0x73, 0x17, 0xbb, - 0x21, 0x3f, 0x2f, 0x3d, 0x76, 0x43, 0x7e, 0x5e, 0x9d, 0x40, 0x8d, 0x9a, 0x12, 0xc0, 0x0b, 0xf0, - 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0xac, 0x3e, 0xbc, 0x50, 0x53, 0x02, 0x7c, - 0x01, 0x5f, 0xa8, 0x29, 0x31, 0xda, 0x04, 0xab, 0xe7, 0xf6, 0x2d, 0x16, 0x10, 0x93, 0xdd, 0x57, - 0xc0, 0xea, 0x79, 0xde, 0xb9, 0x86, 0x9a, 0x12, 0xd0, 0x0c, 0x34, 0x83, 0x18, 0x83, 0x18, 0x83, - 0x18, 0x83, 0x18, 0x03, 0xb4, 0xe4, 0x05, 0x5a, 0xa8, 0x29, 0x01, 0xbe, 0x80, 0x2f, 0x6c, 0x64, - 0x40, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x59, 0x05, 0xaa, 0xa1, 0xa6, 0x04, 0x2c, 0x03, - 0xcb, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x00, 0x2d, 0x39, 0x81, 0x16, 0x6a, 0x4a, - 0x80, 0x2f, 0xe0, 0x0b, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x4c, 0xd6, 0xa8, - 0x86, 0x9a, 0x12, 0x3a, 0x65, 0x10, 0x36, 0x35, 0x4b, 0x4a, 0xdc, 0x76, 0xee, 0x95, 0x81, 0x92, - 0x12, 0x75, 0x37, 0xf2, 0x42, 0xe7, 0xab, 0xef, 0x46, 0x4e, 0xb5, 0x15, 0x86, 0x9e, 0xc6, 0xce, - 0xb3, 0x81, 0x6f, 0x9d, 0xd2, 0x16, 0x45, 0x25, 0xec, 0xf2, 0x27, 0x45, 0x25, 0x34, 0x2d, 0x12, - 0x45, 0x25, 0x08, 0xe0, 0x08, 0xe0, 0x72, 0x18, 0xc0, 0xa1, 0x3f, 0xe7, 0x2e, 0x78, 0x43, 0x7f, - 0x5e, 0x7a, 0xf0, 0x86, 0xfe, 0xbc, 0x3a, 0x91, 0x1a, 0x45, 0x25, 0x80, 0x17, 0xe0, 0x05, 0x78, - 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x59, 0x7d, 0x78, 0xa1, 0xa8, 0x04, 0xf8, 0x02, 0xbe, - 0x50, 0x54, 0x62, 0xb4, 0x09, 0x96, 0xcf, 0xed, 0x5b, 0x2c, 0x20, 0x26, 0xbb, 0xaf, 0x80, 0xe5, - 0xf3, 0xbc, 0x73, 0x0d, 0x45, 0x25, 0xa0, 0x19, 0x68, 0x06, 0x31, 0x06, 0x31, 0x06, 0x31, 0x06, - 0x31, 0x06, 0x68, 0xc9, 0x0b, 0xb4, 0x50, 0x54, 0x02, 0x7c, 0x01, 0x5f, 0xd8, 0xc9, 0x80, 0x14, - 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0xb3, 0x0a, 0x54, 0x43, 0x51, 0x09, 0x58, 0x06, 0x96, 0x41, - 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x01, 0x5a, 0x72, 0x02, 0x2d, 0x14, 0x95, 0x00, 0x5f, - 0xc0, 0x17, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0xac, 0x51, 0xcd, 0x7a, - 0x16, 0x95, 0x30, 0xae, 0x83, 0xb0, 0xa9, 0x54, 0x55, 0xe2, 0xa2, 0x7d, 0xbb, 0xb7, 0xbe, 0x1b, - 0xbd, 0xeb, 0xdd, 0x2c, 0x03, 0x65, 0x25, 0x1e, 0xdd, 0x1f, 0xce, 0x83, 0xab, 0x61, 0xb3, 0xc7, - 0x96, 0x07, 0x3b, 0x2d, 0xe8, 0x95, 0x90, 0xd8, 0xa3, 0x84, 0x44, 0xda, 0x94, 0xb9, 0x6e, 0x25, - 0x24, 0xb4, 0xf9, 0x51, 0x44, 0xf6, 0x32, 0x91, 0xbb, 0x44, 0x64, 0x2e, 0x43, 0x36, 0x34, 0xc0, - 0x6e, 0x09, 0x16, 0x14, 0x92, 0xb1, 0xa4, 0xd8, 0x4f, 0x92, 0x2e, 0x0c, 0x58, 0x4f, 0x84, 0xf1, - 0x84, 0xe4, 0xa9, 0x4c, 0x76, 0x6d, 0x4a, 0xe0, 0x54, 0xc9, 0x88, 0x0b, 0x6f, 0xb4, 0xe2, 0x41, - 0x7d, 0x2c, 0x33, 0x57, 0x3e, 0xd6, 0x12, 0x2e, 0x1d, 0x97, 0x8e, 0x4b, 0xc7, 0xa5, 0xe3, 0xd2, - 0x71, 0xe9, 0xb8, 0xf4, 0x14, 0x5d, 0xba, 0x1f, 0x98, 0x46, 0xe5, 0xfd, 0x16, 0x70, 0xe1, 0xb8, - 0x70, 0x5c, 0x38, 0x2e, 0x1c, 0x17, 0x8e, 0x0b, 0xc7, 0x85, 0xa7, 0xe7, 0xc2, 0x7b, 0xeb, 0x01, - 0x9a, 0xee, 0xbb, 0x73, 0x35, 0xae, 0x1b, 0xd7, 0xbd, 0xa2, 0xae, 0x3b, 0x8a, 0x43, 0x3f, 0x78, - 0x30, 0xf1, 0xdb, 0x6f, 0x32, 0x30, 0xc7, 0xfb, 0x8b, 0x8d, 0xa1, 0x17, 0xb7, 0xc2, 0xc0, 0xa9, - 0x37, 0xa2, 0x48, 0x7f, 0xca, 0x4f, 0x6b, 0x8c, 0xaa, 0xec, 0x58, 0x00, 0xaa, 0xb2, 0x4f, 0x8c, - 0x19, 0xaa, 0xb2, 0x93, 0x01, 0x69, 0x3a, 0xb1, 0xd8, 0xc0, 0xc1, 0x06, 0x0e, 0xb1, 0x98, 0x5a, - 0x34, 0xb6, 0x16, 0x8e, 0xb1, 0xa5, 0x03, 0x42, 0x1b, 0x81, 0xa1, 0x40, 0xec, 0x2d, 0x1a, 0x83, - 0x0b, 0xc7, 0xe2, 0xb9, 0x7a, 0x05, 0x6c, 0xe0, 0x98, 0xe8, 0x66, 0xaa, 0xb2, 0x03, 0x2f, 0xc0, - 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x92, 0x33, 0x78, 0xa1, 0x2a, 0x3b, 0xf8, - 0x02, 0xbe, 0x50, 0x95, 0x7d, 0xb4, 0x09, 0xf6, 0x9f, 0xda, 0xb7, 0x58, 0x40, 0x4c, 0x76, 0x5f, - 0x01, 0xfb, 0x4f, 0xf3, 0xce, 0x35, 0x54, 0x65, 0x87, 0x66, 0xa0, 0x19, 0xc4, 0x18, 0xc4, 0x18, - 0xc4, 0x18, 0xc4, 0x18, 0xa0, 0x25, 0x2f, 0xd0, 0x42, 0x55, 0x76, 0xf0, 0x05, 0x7c, 0xa1, 0x14, - 0x18, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0xcc, 0x2a, 0x50, 0x0d, 0x55, 0xd9, 0x61, 0x19, - 0x58, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x68, 0xc9, 0x09, 0xb4, 0x50, 0x95, - 0x1d, 0x7c, 0x01, 0x5f, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0xb2, 0x46, - 0x35, 0xeb, 0x59, 0x95, 0xdd, 0xbc, 0x10, 0xc2, 0xa6, 0x52, 0x59, 0xf6, 0xde, 0x3f, 0x5d, 0x77, - 0x6e, 0x77, 0xd1, 0xbe, 0x5b, 0x16, 0x4a, 0x4b, 0x8c, 0x94, 0x61, 0x75, 0xaa, 0xce, 0x57, 0xb7, - 0x33, 0xdf, 0x75, 0x4b, 0x4b, 0x4c, 0x69, 0x8c, 0xd2, 0x12, 0x76, 0x29, 0x94, 0xd2, 0x12, 0x9a, - 0x76, 0x89, 0xd2, 0x12, 0x84, 0x71, 0x84, 0x71, 0x39, 0x0c, 0xe3, 0x50, 0xa1, 0x73, 0x17, 0xc2, - 0xa1, 0x42, 0x2f, 0x3d, 0x84, 0x43, 0x85, 0x5e, 0x9d, 0x78, 0x8d, 0xd2, 0x12, 0xc0, 0x0b, 0xf0, - 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0xac, 0x3e, 0xbc, 0x50, 0x5a, 0x02, 0x7c, - 0x01, 0x5f, 0x28, 0x2d, 0x31, 0xda, 0x04, 0x8b, 0xe8, 0xf6, 0x2d, 0x16, 0x10, 0x93, 0xdd, 0x57, - 0xc0, 0x22, 0x7a, 0xde, 0xb9, 0x86, 0xd2, 0x12, 0xd0, 0x0c, 0x34, 0x83, 0x18, 0x83, 0x18, 0x83, - 0x18, 0x83, 0x18, 0x03, 0xb4, 0xe4, 0x05, 0x5a, 0x28, 0x2d, 0x01, 0xbe, 0x80, 0x2f, 0xec, 0x67, - 0x40, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x59, 0x05, 0xaa, 0xa1, 0xb4, 0x04, 0x2c, 0x03, - 0xcb, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x00, 0x2d, 0x39, 0x81, 0x16, 0x4a, 0x4b, - 0x80, 0x2f, 0xe0, 0x0b, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x4c, 0xd6, 0xa8, - 0x66, 0x4d, 0x4b, 0x4b, 0x18, 0x17, 0x42, 0xd8, 0x54, 0x2b, 0x2d, 0xd1, 0xb9, 0xdf, 0x55, 0xfb, - 0x76, 0xef, 0xde, 0xb6, 0x6f, 0x96, 0xb5, 0xca, 0x12, 0x75, 0xc9, 0xca, 0x12, 0x75, 0x2a, 0x4b, - 0xa4, 0x01, 0xa1, 0x54, 0x96, 0xd0, 0x34, 0x4b, 0x54, 0x96, 0x20, 0x8a, 0x23, 0x8a, 0xcb, 0x61, - 0x14, 0x87, 0x08, 0x9d, 0xbb, 0x08, 0x0e, 0x11, 0x7a, 0xe9, 0x11, 0x1c, 0x22, 0xf4, 0xea, 0x84, - 0x6b, 0x54, 0x96, 0x00, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x65, - 0xf5, 0xe1, 0x85, 0xca, 0x12, 0xe0, 0x0b, 0xf8, 0x42, 0x65, 0x89, 0xd1, 0x26, 0x58, 0x43, 0xb7, - 0x6f, 0xb1, 0x80, 0x98, 0xec, 0xbe, 0x02, 0xd6, 0xd0, 0xf3, 0xce, 0x35, 0x54, 0x96, 0x80, 0x66, - 0xa0, 0x19, 0xc4, 0x18, 0xc4, 0x18, 0xc4, 0x18, 0xc4, 0x18, 0xa0, 0x25, 0x2f, 0xd0, 0x42, 0x65, - 0x09, 0xf0, 0x05, 0x7c, 0x61, 0x3b, 0x03, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0xcc, 0x2a, - 0x50, 0x0d, 0x95, 0x25, 0x60, 0x19, 0x58, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, - 0x68, 0xc9, 0x09, 0xb4, 0x50, 0x59, 0x02, 0x7c, 0x01, 0x5f, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, - 0x90, 0x62, 0x90, 0x62, 0xb2, 0x46, 0x35, 0x54, 0x96, 0xd0, 0x2b, 0x84, 0xb0, 0xa9, 0x5b, 0x59, - 0xe2, 0x22, 0x93, 0x95, 0x25, 0xe2, 0x46, 0xac, 0x91, 0xbe, 0x3d, 0xbd, 0xb0, 0x44, 0xb7, 0x2d, - 0xea, 0x4a, 0xd8, 0x45, 0x50, 0xea, 0x4a, 0x68, 0x1a, 0x25, 0xea, 0x4a, 0x10, 0xc3, 0x11, 0xc3, - 0xe5, 0x30, 0x86, 0x43, 0x82, 0xce, 0x5d, 0xfc, 0x86, 0x04, 0xbd, 0xf4, 0xf8, 0x0d, 0x09, 0x7a, - 0x75, 0x82, 0x35, 0xea, 0x4a, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, - 0xf0, 0xb2, 0xfa, 0xf0, 0x42, 0x5d, 0x09, 0xf0, 0x05, 0x7c, 0xa1, 0xae, 0xc4, 0x68, 0x13, 0xac, - 0xa0, 0xdb, 0xb7, 0x58, 0x40, 0x4c, 0x76, 0x5f, 0x01, 0x2b, 0xe8, 0x79, 0xe7, 0x1a, 0xea, 0x4a, - 0x40, 0x33, 0xd0, 0x0c, 0x62, 0x0c, 0x62, 0x0c, 0x62, 0x0c, 0x62, 0x0c, 0xd0, 0x92, 0x17, 0x68, - 0xa1, 0xae, 0x04, 0xf8, 0x02, 0xbe, 0xb0, 0x99, 0x01, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, - 0x66, 0x15, 0xa8, 0x86, 0xba, 0x12, 0xb0, 0x0c, 0x2c, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, - 0x14, 0x03, 0xb4, 0xe4, 0x04, 0x5a, 0xa8, 0x2b, 0x01, 0xbe, 0x80, 0x2f, 0x48, 0x31, 0x48, 0x31, - 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x59, 0xa3, 0x1a, 0xea, 0x4a, 0x68, 0xd5, 0x41, 0xd8, 0xd4, - 0x2d, 0x2b, 0x71, 0xdb, 0xb9, 0x59, 0x06, 0xca, 0x4a, 0xc4, 0x6e, 0xf8, 0xe0, 0xc5, 0xce, 0x83, - 0xab, 0x61, 0xb6, 0x87, 0x6e, 0x75, 0xa4, 0x11, 0xbd, 0x42, 0x12, 0x7b, 0x14, 0x92, 0x48, 0x9b, - 0x35, 0xd7, 0xad, 0x90, 0x84, 0x36, 0x45, 0x8a, 0x88, 0x5f, 0x26, 0xa2, 0x97, 0x88, 0xd8, 0x65, - 0x48, 0x88, 0x06, 0xf0, 0x2d, 0x41, 0x84, 0x42, 0x18, 0x22, 0x45, 0x80, 0x53, 0xde, 0xc8, 0xc6, - 0x12, 0x88, 0x4f, 0x84, 0xf4, 0x84, 0x44, 0x2a, 0x7b, 0x5d, 0xbb, 0x97, 0x76, 0x98, 0xba, 0x61, - 0x17, 0xd3, 0xac, 0x3b, 0x72, 0x27, 0xf6, 0xeb, 0xb1, 0x88, 0x37, 0xef, 0xb6, 0x84, 0x4b, 0xc7, - 0xa5, 0xe3, 0xd2, 0x71, 0xe9, 0x76, 0x5c, 0xfa, 0xfe, 0x0a, 0xfa, 0x1d, 0x5c, 0x3a, 0x2e, 0x5d, - 0xcc, 0xa5, 0x8f, 0xaa, 0x14, 0xc6, 0x5e, 0x7d, 0xac, 0x31, 0x1c, 0x3b, 0x8e, 0x1d, 0xc7, 0x8e, - 0x63, 0xc7, 0xb1, 0xe3, 0xd8, 0x71, 0xec, 0x29, 0x3a, 0x76, 0x1d, 0xf3, 0x36, 0xf4, 0xe4, 0xed, - 0xab, 0x71, 0xdd, 0xb8, 0xee, 0x15, 0x75, 0xdd, 0x7e, 0xcd, 0x0b, 0x62, 0x3f, 0x7e, 0x0a, 0xbd, - 0x7b, 0x13, 0xe7, 0xad, 0xb1, 0x9c, 0x5c, 0x38, 0xef, 0xdd, 0xfa, 0xad, 0x1b, 0x09, 0x64, 0x6b, - 0x5d, 0x5e, 0xdd, 0x9e, 0xbf, 0x2b, 0x5f, 0xdc, 0x95, 0x3f, 0x5e, 0x5d, 0x9c, 0xbf, 0x3f, 0x3f, - 0xbb, 0xbe, 0xbb, 0xfd, 0xe3, 0xea, 0x4c, 0x77, 0x1c, 0x75, 0x6c, 0x76, 0x64, 0x94, 0xe2, 0x61, - 0xe8, 0x7c, 0xfa, 0xcf, 0x75, 0x76, 0xfa, 0xbe, 0x5c, 0x58, 0x86, 0x0f, 0x15, 0xfa, 0xfe, 0x6f, - 0xcb, 0xef, 0xfe, 0xf9, 0xef, 0xf2, 0xf5, 0xe9, 0xdd, 0x75, 0xf9, 0x63, 0xf9, 0x53, 0x9e, 0x9f, - 0xe4, 0xfd, 0xe5, 0xf5, 0x6a, 0x3c, 0xc8, 0x3f, 0xfe, 0x78, 0x7b, 0x7d, 0x7e, 0x9a, 0x76, 0x42, - 0x5a, 0xc5, 0xb6, 0xed, 0xdc, 0x90, 0xfd, 0x64, 0xc2, 0xf7, 0xa4, 0x9b, 0x70, 0x61, 0x2d, 0xd1, - 0x22, 0xd9, 0x7b, 0x5d, 0xdc, 0x07, 0xf3, 0x3f, 0xb1, 0xa0, 0x77, 0xda, 0x1e, 0xbd, 0x9b, 0x70, - 0xb7, 0x30, 0x7f, 0xb6, 0x70, 0xe1, 0x47, 0x71, 0x39, 0x8e, 0x93, 0xc9, 0x2d, 0xed, 0xa0, 0xe9, - 0xac, 0xee, 0xb5, 0x5d, 0x73, 0xdb, 0x3c, 0x07, 0xad, 0x7a, 0xfd, 0xd5, 0x46, 0x92, 0x70, 0x40, - 0xfd, 0xa2, 0xcb, 0xb0, 0xe6, 0x85, 0x5e, 0xed, 0xed, 0x53, 0xef, 0x12, 0xa3, 0xfe, 0x50, 0x1c, - 0x25, 0x16, 0x46, 0x47, 0x02, 0x57, 0x98, 0x38, 0xbb, 0x66, 0xfe, 0x18, 0x9b, 0x3d, 0x72, 0xa6, - 0xff, 0xcb, 0x8c, 0xbe, 0x4b, 0xda, 0x67, 0x62, 0x7d, 0x35, 0xfd, 0xa9, 0x26, 0xbf, 0xf3, 0x94, - 0xef, 0x5b, 0x88, 0x5a, 0x4d, 0x2f, 0xfc, 0xee, 0x47, 0x8d, 0xf0, 0xc9, 0xa9, 0x7e, 0x73, 0x83, - 0xc0, 0xab, 0x47, 0x33, 0xbf, 0xf5, 0xb0, 0x74, 0xdc, 0xb4, 0xab, 0x66, 0xf4, 0xc6, 0xfc, 0x53, - 0x60, 0x16, 0x46, 0x0f, 0x49, 0xa2, 0x04, 0xb5, 0x68, 0x20, 0x29, 0xf5, 0x2b, 0xd3, 0xbd, 0x32, - 0xc5, 0x2b, 0xd3, 0xba, 0xda, 0x38, 0x5c, 0x74, 0x2a, 0xca, 0xb4, 0xd7, 0xb8, 0xb8, 0x57, 0xe6, - 0x8c, 0x81, 0x45, 0xfd, 0x93, 0xec, 0x40, 0xa0, 0xc4, 0x01, 0xa5, 0x4a, 0x00, 0xa9, 0x17, 0x30, - 0xaa, 0x06, 0x88, 0xda, 0x01, 0xa1, 0x76, 0x00, 0xa8, 0x1d, 0xf0, 0x99, 0xb9, 0xc9, 0xa4, 0x07, - 0xee, 0x14, 0xaa, 0xfd, 0x77, 0x99, 0xb0, 0x03, 0xfb, 0xaf, 0xa9, 0x77, 0x5d, 0xc2, 0x4e, 0x50, - 0x3b, 0x69, 0x4a, 0x59, 0xb1, 0xd0, 0x51, 0x2a, 0x46, 0x07, 0x5c, 0xdd, 0x0f, 0x3c, 0xa7, 0xda, - 0x78, 0x54, 0x88, 0xea, 0x74, 0xa5, 0x09, 0x63, 0x49, 0xc2, 0x58, 0x8a, 0x78, 0x39, 0x22, 0x07, - 0x0f, 0xbf, 0x24, 0xce, 0x55, 0x3d, 0x1b, 0xaa, 0x5b, 0x57, 0xf8, 0xde, 0xad, 0x1a, 0xa8, 0x6f, - 0xc3, 0x26, 0xd6, 0x43, 0x82, 0xd3, 0x18, 0xe0, 0xeb, 0xa3, 0xc1, 0xa9, 0x4f, 0x80, 0xbc, 0x88, - 0x70, 0x5f, 0xdd, 0xc8, 0x73, 0x06, 0x63, 0xdd, 0x31, 0xd4, 0xe2, 0x8e, 0x34, 0xae, 0xbd, 0x1a, - 0xc0, 0x73, 0xd5, 0xf1, 0xef, 0x4f, 0x06, 0xdf, 0x25, 0x7a, 0xf9, 0x8b, 0xde, 0xdf, 0x3b, 0x21, - 0x02, 0xe1, 0xf9, 0xcc, 0xa0, 0x62, 0x1a, 0xd8, 0x4f, 0xfb, 0xe5, 0x6e, 0xcf, 0x3f, 0x4b, 0xc5, - 0xec, 0x09, 0x50, 0x4c, 0xdd, 0x2c, 0x6b, 0x9b, 0x63, 0x45, 0x33, 0x9c, 0x3a, 0x4f, 0xa8, 0xaf, - 0x78, 0xac, 0x0e, 0x4e, 0x28, 0xaf, 0x68, 0xc8, 0x4e, 0x4b, 0x65, 0xa3, 0x39, 0x78, 0x6f, 0x75, - 0xcf, 0xbd, 0x57, 0xb3, 0x90, 0x3a, 0x96, 0x71, 0x60, 0x11, 0x77, 0x76, 0x7a, 0x73, 0x74, 0x77, - 0x38, 0xfa, 0x53, 0x9c, 0xad, 0x5d, 0x49, 0x4f, 0x79, 0xa6, 0x76, 0x2f, 0xb3, 0x4c, 0xfd, 0xfb, - 0x50, 0x3f, 0xd4, 0x3f, 0xe9, 0x5e, 0x04, 0xf2, 0xe7, 0x46, 0x1b, 0x59, 0x8f, 0xc3, 0x92, 0x21, - 0xff, 0x1c, 0x92, 0x3f, 0xc7, 0x25, 0x53, 0x9a, 0xc4, 0xca, 0x4c, 0x12, 0x9f, 0x51, 0xb3, 0x66, - 0x16, 0x95, 0xd5, 0xa8, 0xac, 0xf6, 0xe2, 0x0f, 0x95, 0xd5, 0xcc, 0xde, 0x20, 0x95, 0xd5, 0x56, - 0xe1, 0x15, 0x50, 0x59, 0x6d, 0x0a, 0xd9, 0x73, 0x5c, 0x32, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, - 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xb9, 0x82, 0x17, 0x8e, 0x4b, 0x06, 0x5f, 0xc0, 0x17, 0x8e, - 0x4b, 0x1e, 0x6d, 0x82, 0xc2, 0xb0, 0xf6, 0x2d, 0x16, 0x10, 0x93, 0xdd, 0x57, 0x40, 0x61, 0xd8, - 0xbc, 0x73, 0x0d, 0xc7, 0x25, 0x43, 0x33, 0xd0, 0x0c, 0x62, 0x0c, 0x62, 0x0c, 0x62, 0x0c, 0x62, - 0x0c, 0xd0, 0x92, 0x17, 0x68, 0xe1, 0xb8, 0x64, 0xf0, 0x05, 0x7c, 0xe1, 0x8c, 0x1e, 0xa4, 0x18, - 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0x55, 0xa0, 0x1a, 0x8e, 0x4b, 0x86, 0x65, 0x60, 0x19, 0xa4, - 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa0, 0x25, 0x27, 0xd0, 0xc2, 0x71, 0xc9, 0xe0, 0x0b, - 0xf8, 0x82, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0x93, 0x35, 0xaa, 0x59, 0xe1, - 0xe3, 0x92, 0x13, 0x97, 0x09, 0xea, 0x1e, 0xa1, 0xac, 0x5f, 0x16, 0x61, 0x33, 0x41, 0x75, 0xd7, - 0x9b, 0xe1, 0x7d, 0xdf, 0x75, 0x6f, 0x7b, 0x77, 0x1e, 0xf4, 0xcf, 0x50, 0xce, 0xc2, 0xf1, 0xc9, - 0x14, 0x94, 0x53, 0xa6, 0x50, 0xca, 0x4a, 0xcc, 0x01, 0x4d, 0x0a, 0xca, 0x25, 0xd3, 0xc2, 0x72, - 0x5f, 0x50, 0x4e, 0xc1, 0xc6, 0xd4, 0xdd, 0xc8, 0x0b, 0x9d, 0xaf, 0xbe, 0x1b, 0x39, 0xd5, 0x56, - 0x18, 0x7a, 0x81, 0xc1, 0xd9, 0xae, 0x53, 0xda, 0xa2, 0x98, 0x0d, 0x56, 0x87, 0x62, 0x36, 0x53, - 0x46, 0x0d, 0xc5, 0x6c, 0x10, 0x8e, 0x10, 0x8e, 0xb4, 0xc6, 0x0c, 0xeb, 0x5e, 0xb9, 0x13, 0x8d, - 0x58, 0xf7, 0x5a, 0xba, 0x68, 0xc4, 0xba, 0xd7, 0xea, 0x28, 0x44, 0x14, 0xb3, 0x01, 0x5e, 0x80, - 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x65, 0xf5, 0xe1, 0x85, 0x62, 0x36, 0xe0, - 0x0b, 0xf8, 0x42, 0x31, 0x9b, 0xd1, 0x26, 0x48, 0xdb, 0xb1, 0x6f, 0xb1, 0x80, 0x98, 0xec, 0xbe, - 0x02, 0xd2, 0x76, 0xf2, 0xce, 0x35, 0x14, 0xb3, 0x81, 0x66, 0xa0, 0x19, 0xc4, 0x18, 0xc4, 0x18, - 0xc4, 0x18, 0xc4, 0x18, 0xa0, 0x25, 0x2f, 0xd0, 0x42, 0x31, 0x1b, 0xf0, 0x05, 0x7c, 0x61, 0x07, - 0x15, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0xcc, 0x2a, 0x50, 0x0d, 0xc5, 0x6c, 0x60, 0x19, - 0x58, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x68, 0xc9, 0x09, 0xb4, 0x50, 0xcc, - 0x06, 0x7c, 0x01, 0x5f, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0xb2, 0x46, - 0x35, 0x14, 0xb3, 0xe9, 0x17, 0xb3, 0x31, 0xae, 0x8e, 0xb0, 0xa9, 0x57, 0xd3, 0xe6, 0xa2, 0x7d, - 0xdf, 0xb7, 0xbe, 0x1b, 0xbd, 0xeb, 0xdd, 0x35, 0x03, 0x55, 0x27, 0x1a, 0xad, 0xb8, 0xd9, 0x8a, - 0x9d, 0xfb, 0xd0, 0xfb, 0x9f, 0x96, 0x17, 0x54, 0x9f, 0xf4, 0x6b, 0x4e, 0x4c, 0xb4, 0xb4, 0x1e, - 0x75, 0x6e, 0xe2, 0xd0, 0x0d, 0xa2, 0xaa, 0xe7, 0x7f, 0xd7, 0xab, 0x8c, 0xb4, 0xf2, 0x45, 0x27, - 0x46, 0xfb, 0x67, 0xe5, 0xaa, 0xdd, 0x0c, 0x06, 0x7b, 0x87, 0xb6, 0x0d, 0x2a, 0xdd, 0x68, 0x70, - 0xe6, 0x90, 0x2f, 0x3f, 0xfe, 0xe3, 0x7f, 0x75, 0x6e, 0x6d, 0xc6, 0x93, 0x06, 0xa8, 0x2e, 0xc1, - 0x8f, 0x42, 0xd0, 0x22, 0xc5, 0x8b, 0x92, 0x44, 0x62, 0xc0, 0x87, 0x22, 0x5c, 0x28, 0xdd, 0xb5, - 0xf2, 0x1c, 0x28, 0xda, 0xdb, 0x29, 0xf1, 0x57, 0x25, 0x3b, 0xce, 0xbe, 0x5b, 0xc6, 0xcf, 0xd4, - 0xd1, 0xeb, 0x14, 0x03, 0xa4, 0xac, 0xd4, 0x0a, 0x7a, 0x78, 0xca, 0x4a, 0x4d, 0x1b, 0x35, 0x94, - 0x95, 0x42, 0xc2, 0x35, 0x66, 0x67, 0x56, 0xa0, 0x4d, 0x21, 0x86, 0x15, 0x68, 0x2b, 0xf8, 0xfd, - 0xb2, 0x9b, 0x59, 0x81, 0x4e, 0x1d, 0xd3, 0x5f, 0xbe, 0x02, 0x56, 0xa0, 0xad, 0x5f, 0x4d, 0x59, - 0x29, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0x31, - 0x78, 0xa1, 0xac, 0x14, 0xf8, 0x02, 0xbe, 0x50, 0x56, 0x6a, 0xb4, 0x09, 0x12, 0xe8, 0xec, 0x5b, - 0x2c, 0x20, 0x26, 0xbb, 0xaf, 0x80, 0x04, 0xba, 0xbc, 0x73, 0x0d, 0x65, 0xa5, 0xa0, 0x19, 0x68, - 0x06, 0x31, 0x06, 0x31, 0x06, 0x31, 0x06, 0x31, 0x06, 0x68, 0xc9, 0x0b, 0xb4, 0x50, 0x56, 0x0a, - 0x7c, 0x01, 0x5f, 0xd8, 0xcb, 0x88, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0xb3, 0x0a, 0x54, - 0x43, 0x59, 0x29, 0x58, 0x06, 0x96, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x01, 0x5a, - 0x72, 0x02, 0x2d, 0x94, 0x95, 0x02, 0x5f, 0xc0, 0x17, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, - 0x18, 0xa4, 0x98, 0xac, 0x51, 0x0d, 0x65, 0xa5, 0xfa, 0x65, 0xa5, 0x0c, 0xea, 0x22, 0x6c, 0xea, - 0x15, 0x94, 0xba, 0xec, 0xdc, 0xf1, 0xaa, 0x73, 0x43, 0x5b, 0xe5, 0x25, 0x36, 0x04, 0xdf, 0xab, - 0xee, 0xfb, 0x4c, 0xf5, 0x3d, 0x26, 0xeb, 0xc9, 0xc5, 0xfd, 0x32, 0xff, 0x13, 0x0b, 0x7a, 0xac, - 0xcd, 0x85, 0x83, 0x74, 0xf6, 0x7b, 0xb7, 0xba, 0x88, 0xdb, 0x0b, 0x17, 0x7e, 0x14, 0x97, 0xe3, - 0x38, 0x59, 0xc5, 0x83, 0xb6, 0xab, 0x3d, 0xab, 0x7b, 0x6d, 0xaa, 0x6b, 0x5b, 0xb9, 0xa0, 0x55, - 0xaf, 0xbf, 0xda, 0x48, 0xe2, 0x1c, 0xd4, 0x2f, 0xba, 0x0c, 0x6b, 0x5e, 0xe8, 0xd5, 0xde, 0x3e, - 0xf5, 0x2e, 0x31, 0xea, 0x14, 0xc5, 0xe1, 0x93, 0xd2, 0xb0, 0x49, 0x30, 0xd7, 0xd5, 0xe7, 0xf6, - 0xfc, 0x51, 0x38, 0x7b, 0x6c, 0x4d, 0xff, 0x97, 0x19, 0x1d, 0x9b, 0xb4, 0x43, 0x2d, 0x74, 0xe4, - 0xf4, 0xe7, 0x9b, 0xfc, 0xf6, 0xe3, 0xbf, 0x79, 0xf1, 0x1c, 0x8b, 0xbe, 0xbf, 0xd9, 0xf7, 0x9e, - 0xf2, 0x5e, 0x17, 0xbc, 0xc7, 0xf1, 0x87, 0x1a, 0x7e, 0xf5, 0x91, 0xaf, 0x5d, 0x08, 0xbd, 0xba, - 0xfb, 0xe4, 0xb8, 0x0f, 0xde, 0x94, 0xbd, 0xba, 0x83, 0x68, 0x63, 0xf4, 0x43, 0x2f, 0x1e, 0x79, - 0x7a, 0x05, 0x9d, 0x99, 0x01, 0xf6, 0xbc, 0xc0, 0x79, 0x34, 0x20, 0xee, 0xdc, 0x71, 0xda, 0x13, - 0x2f, 0x08, 0x74, 0x13, 0x07, 0xb0, 0x89, 0x03, 0xd3, 0x97, 0x01, 0x67, 0xf7, 0x9b, 0x29, 0x0e, - 0x8c, 0x59, 0xb5, 0x5f, 0x0a, 0xb5, 0x6f, 0xd5, 0xe6, 0xec, 0x87, 0x19, 0x88, 0xd5, 0xed, 0x4f, - 0xcd, 0xf8, 0x7a, 0xf3, 0x4b, 0x18, 0x2d, 0x54, 0x3a, 0x92, 0x28, 0x19, 0x49, 0x5e, 0x8c, 0xaa, - 0x12, 0xa1, 0xac, 0x34, 0x28, 0x2b, 0x09, 0x09, 0x5f, 0x9c, 0x9e, 0xa5, 0x5a, 0x54, 0xcc, 0xa7, - 0xd0, 0x99, 0x2c, 0x8e, 0x1f, 0xdc, 0x37, 0xc2, 0xc7, 0x8e, 0x45, 0xe8, 0x4c, 0xf1, 0x04, 0x9e, - 0x62, 0x58, 0xb1, 0x67, 0x56, 0x0b, 0x8b, 0x5c, 0x75, 0xa2, 0x9a, 0x56, 0x89, 0x25, 0x30, 0x15, - 0xa9, 0x4b, 0x65, 0xa0, 0xe8, 0x4a, 0x57, 0xda, 0x12, 0x95, 0xb6, 0x14, 0xa5, 0x38, 0x90, 0x64, - 0x80, 0x2b, 0x69, 0xb5, 0xa8, 0x42, 0xb5, 0xff, 0x1e, 0x13, 0x76, 0x5f, 0xff, 0x15, 0xf5, 0xae, - 0x4b, 0xd8, 0x05, 0x6a, 0x85, 0xd2, 0x94, 0xf5, 0x55, 0x1d, 0x3d, 0x55, 0x67, 0xb0, 0x99, 0xea, - 0xa5, 0xc6, 0xfa, 0xa8, 0xb1, 0x1e, 0xaa, 0x39, 0x18, 0xed, 0xc4, 0x4f, 0xaa, 0x25, 0xcd, 0x0a, - 0x5e, 0xe0, 0x7e, 0xad, 0x7b, 0xfa, 0xb5, 0xfe, 0x7a, 0xd7, 0xab, 0x56, 0x5e, 0xf3, 0xee, 0xdd, - 0x56, 0xbd, 0xd3, 0x63, 0xf7, 0x6e, 0x3d, 0xf2, 0xd6, 0xa4, 0x14, 0xb0, 0xea, 0xa4, 0x90, 0x5a, - 0x4c, 0xc8, 0x7e, 0x89, 0x40, 0xc5, 0x49, 0x93, 0x8e, 0xb8, 0x64, 0x5e, 0xfe, 0xf7, 0x6b, 0xa3, - 0x51, 0xf7, 0xdc, 0xc0, 0xa0, 0xee, 0x6f, 0xb1, 0xb8, 0xa6, 0xba, 0xcd, 0x48, 0x84, 0xb3, 0x3b, - 0xfa, 0x73, 0x9b, 0xbc, 0x77, 0x67, 0x91, 0xd8, 0x6e, 0xcf, 0x87, 0x4a, 0x29, 0x34, 0x89, 0x02, - 0x77, 0x37, 0xf6, 0xd4, 0x9d, 0x7d, 0xf7, 0x32, 0xcb, 0xbe, 0x7e, 0x1f, 0x5f, 0x8f, 0xaf, 0xc7, - 0xd7, 0xe3, 0xeb, 0xf1, 0xf5, 0xf8, 0xfa, 0x95, 0xf3, 0xf5, 0x19, 0x5a, 0x8c, 0x91, 0x5b, 0x77, - 0xd0, 0xea, 0x0a, 0xf5, 0x05, 0x86, 0xeb, 0x76, 0xd3, 0xe5, 0x76, 0x73, 0x77, 0xa7, 0xdf, 0xaa, - 0xcd, 0xbb, 0xce, 0x8f, 0xe7, 0xc3, 0x86, 0x2f, 0xbb, 0xed, 0xea, 0xae, 0x31, 0xcc, 0x51, 0x23, - 0x13, 0xaa, 0x23, 0x6a, 0xaa, 0x08, 0x12, 0xdb, 0x7a, 0x49, 0x6c, 0x5d, 0x12, 0x71, 0xe6, 0x2d, - 0x95, 0x24, 0xa4, 0x19, 0x67, 0xf6, 0x4a, 0x8a, 0x34, 0xd1, 0x28, 0x92, 0x0c, 0x92, 0xdd, 0x7a, - 0x60, 0xbc, 0x32, 0x79, 0x18, 0x10, 0x87, 0x22, 0x69, 0xac, 0x88, 0xdb, 0x4c, 0x22, 0x0a, 0xe8, - 0x39, 0xb3, 0x41, 0xf6, 0x45, 0x94, 0xdc, 0xa1, 0x8d, 0x5c, 0x83, 0x53, 0xc3, 0xa9, 0x4d, 0x19, - 0x4c, 0xea, 0xbe, 0x2c, 0x69, 0x16, 0x90, 0xb1, 0xa2, 0x84, 0x2b, 0x42, 0x51, 0x1a, 0xb9, 0x40, - 0x7b, 0x4d, 0x7d, 0xe6, 0xcb, 0x37, 0x08, 0x71, 0x0c, 0x06, 0x38, 0xaa, 0x11, 0xaa, 0xd1, 0x66, - 0x9a, 0x27, 0x48, 0x29, 0xe6, 0x08, 0x98, 0x45, 0xc7, 0xc2, 0x93, 0xc4, 0x78, 0xb2, 0x48, 0x4c, - 0x1a, 0xc9, 0xc9, 0x23, 0x35, 0x89, 0xc4, 0x27, 0x93, 0xf8, 0xa4, 0x12, 0x9e, 0x5c, 0x7a, 0x93, - 0x4c, 0x73, 0xb2, 0x19, 0x4f, 0xba, 0xe1, 0xe4, 0xf3, 0xc3, 0x6a, 0xcb, 0x8f, 0x1d, 0xbf, 0x66, - 0xfe, 0xaa, 0x07, 0x13, 0x71, 0xd8, 0xe6, 0xab, 0x4c, 0x1c, 0xae, 0x69, 0x3a, 0x39, 0x25, 0x27, - 0xa9, 0x8d, 0xc9, 0x2a, 0x3d, 0x69, 0xad, 0x4d, 0x5e, 0x6b, 0x93, 0xd8, 0xd2, 0x64, 0x36, 0x9b, - 0xd4, 0x86, 0x93, 0x5b, 0x5f, 0x15, 0x59, 0x38, 0xe6, 0xa2, 0x38, 0xf4, 0x83, 0x07, 0x89, 0x11, - 0xd7, 0x77, 0x9b, 0x6f, 0x96, 0xb4, 0x75, 0xcb, 0xe4, 0xfc, 0x5f, 0xcd, 0x35, 0xe0, 0x05, 0x2a, - 0xaa, 0xa9, 0xcd, 0x33, 0x5c, 0x23, 0xc6, 0x86, 0x62, 0x43, 0xb1, 0xa1, 0x29, 0xd8, 0x50, 0xfd, - 0x35, 0xee, 0x99, 0x46, 0xb4, 0x98, 0x43, 0x23, 0x1a, 0x7a, 0x8f, 0x8d, 0xd8, 0x13, 0xe5, 0xc7, - 0x61, 0x93, 0x98, 0x3e, 0x4c, 0x1f, 0xa6, 0x0f, 0x7c, 0xb4, 0x67, 0xf9, 0x52, 0x8d, 0xd6, 0x0d, - 0x77, 0xe8, 0x0f, 0xda, 0xd1, 0x5c, 0xfb, 0x1b, 0xae, 0xb6, 0x0d, 0x7f, 0x94, 0x49, 0x1f, 0x36, - 0xef, 0xd6, 0x67, 0xad, 0x1a, 0x00, 0x2a, 0xe9, 0xc6, 0x73, 0x46, 0x73, 0xf2, 0xf4, 0x63, 0x6b, - 0xb2, 0xe1, 0x3e, 0xb2, 0x21, 0xb2, 0x21, 0xb2, 0x21, 0xb2, 0x21, 0xdc, 0x07, 0xf7, 0xc1, 0x7d, - 0xc8, 0x86, 0xc8, 0x86, 0xd8, 0x50, 0x6c, 0x28, 0xb2, 0x21, 0xb2, 0x21, 0xb2, 0x21, 0xa6, 0x0f, - 0xd3, 0x07, 0x3e, 0xae, 0x08, 0x3e, 0x46, 0x5e, 0x10, 0x3b, 0x36, 0xe2, 0xe7, 0x97, 0x0d, 0x63, - 0x05, 0xb1, 0x82, 0x58, 0x41, 0xac, 0x60, 0x76, 0xad, 0xa0, 0x05, 0x08, 0x7c, 0xd1, 0x2e, 0x36, - 0x10, 0x1b, 0x88, 0x0d, 0xc4, 0x06, 0xda, 0xb3, 0x81, 0x2c, 0x20, 0x0b, 0xd4, 0xa4, 0x30, 0xef, - 0xd5, 0xbc, 0x96, 0xd6, 0x97, 0xeb, 0x6f, 0xf3, 0x2a, 0xfa, 0x2f, 0x0b, 0x61, 0x9c, 0xf7, 0xef, - 0xa9, 0x55, 0x12, 0x43, 0xff, 0x0d, 0x29, 0xbc, 0x1d, 0xdd, 0xcd, 0x43, 0x66, 0x9b, 0x86, 0xd8, - 0x51, 0xb7, 0x24, 0x3f, 0xce, 0x8e, 0xba, 0x44, 0x17, 0x1a, 0xae, 0x50, 0xc9, 0xac, 0x4c, 0xad, - 0xda, 0x29, 0x68, 0xa4, 0xc6, 0x2c, 0x09, 0x82, 0xf3, 0x7a, 0x0a, 0x9a, 0xf9, 0x4a, 0x8f, 0xe1, - 0x0a, 0x4f, 0x3a, 0x59, 0x78, 0xdf, 0xbc, 0x7a, 0xd3, 0x0b, 0x1d, 0xb7, 0x56, 0x0b, 0xbd, 0x28, - 0x32, 0x37, 0x3a, 0x2f, 0xda, 0xc3, 0xf8, 0x60, 0x7c, 0x30, 0x3e, 0xca, 0x63, 0xc6, 0x6f, 0x1a, - 0xce, 0xa0, 0x31, 0xfb, 0x73, 0x6c, 0xd0, 0x46, 0xef, 0x99, 0x96, 0x7e, 0x62, 0xe2, 0xb0, 0x67, - 0xbe, 0x97, 0x04, 0xfa, 0x66, 0x52, 0x81, 0x10, 0x68, 0xeb, 0xca, 0x8d, 0x63, 0x2f, 0x0c, 0x8c, - 0xbb, 0x6b, 0xd0, 0xe0, 0xd6, 0xd6, 0xe7, 0x3d, 0xe7, 0xb8, 0xf2, 0xeb, 0x73, 0xd1, 0x39, 0xae, - 0x74, 0x7f, 0x2c, 0x76, 0xfe, 0xaf, 0xfb, 0xf3, 0xfe, 0xe7, 0x3d, 0xa7, 0xd4, 0xff, 0xf9, 0xe0, - 0xf3, 0x9e, 0x73, 0x50, 0xd9, 0xfe, 0xf2, 0x65, 0x67, 0xfb, 0xe7, 0xeb, 0x67, 0xf5, 0x0b, 0xb7, - 0xfe, 0xeb, 0xf3, 0x97, 0x2f, 0xcd, 0x9f, 0x9f, 0x9e, 0xdb, 0xff, 0xbd, 0x78, 0xae, 0xfc, 0xf7, - 0xf6, 0x6f, 0xe6, 0xca, 0x57, 0x65, 0x99, 0xca, 0x97, 0xec, 0xa8, 0x3b, 0x5c, 0xa3, 0x51, 0x77, - 0xf2, 0xab, 0x3d, 0x36, 0x5c, 0xe7, 0xbe, 0xec, 0xbc, 0xaf, 0xfc, 0xdc, 0x7b, 0x55, 0x7a, 0xde, - 0x3e, 0xd9, 0xde, 0x7a, 0xf9, 0xbb, 0x93, 0xed, 0x9f, 0x7b, 0xaf, 0x0e, 0x9e, 0xb7, 0xb6, 0xa6, - 0xfc, 0xcb, 0x6f, 0xd3, 0xda, 0xd8, 0xfe, 0xb5, 0xb5, 0xb5, 0xd5, 0x1b, 0x6f, 0x63, 0x63, 0xf0, - 0xf3, 0x5e, 0xb1, 0xf2, 0x5b, 0xe7, 0xc7, 0xee, 0x7f, 0x07, 0xa3, 0x38, 0xd1, 0x87, 0xb7, 0xa7, - 0x8e, 0xdd, 0x57, 0x62, 0x53, 0xf0, 0xcf, 0x93, 0xca, 0x7f, 0x9f, 0x6c, 0xff, 0x3c, 0x7c, 0xee, - 0xff, 0xdc, 0xf9, 0xef, 0xf6, 0xaf, 0xad, 0x9d, 0xbf, 0x7f, 0xf9, 0xb2, 0xb3, 0xf3, 0xf7, 0xed, - 0xee, 0x83, 0xf5, 0x3e, 0xf7, 0xf7, 0xee, 0xbf, 0xfe, 0x76, 0x72, 0x32, 0xf1, 0xab, 0xed, 0xad, - 0xff, 0xda, 0xc9, 0xc2, 0xb4, 0x4a, 0xfb, 0xa4, 0x4d, 0x4d, 0x77, 0xaa, 0x74, 0xce, 0xdf, 0xcc, - 0x56, 0x74, 0xce, 0xff, 0x9b, 0xdd, 0x98, 0xc6, 0xb9, 0x80, 0x33, 0x1b, 0x53, 0x3a, 0x2f, 0x70, - 0xb9, 0x51, 0x82, 0xc1, 0x1a, 0xdf, 0xd0, 0x86, 0xd6, 0x88, 0x06, 0x88, 0x06, 0x88, 0x06, 0x34, - 0x66, 0x4e, 0x5f, 0xc9, 0x37, 0x5b, 0x13, 0x37, 0x5c, 0x6d, 0x63, 0x55, 0x67, 0xf6, 0xaa, 0x8e, - 0xce, 0x6e, 0x4b, 0x3b, 0x2b, 0x2a, 0x1a, 0x96, 0x5a, 0xdf, 0x42, 0x73, 0xa2, 0xc5, 0x92, 0x2c, - 0x2e, 0x27, 0x5a, 0xa8, 0xbd, 0xf3, 0xba, 0xe7, 0xde, 0x87, 0xde, 0xbd, 0xc9, 0x89, 0x16, 0x47, - 0x1a, 0xd7, 0x5e, 0xf5, 0x8c, 0xcb, 0xce, 0x4e, 0xcf, 0x42, 0xec, 0xfa, 0xb5, 0x4c, 0x18, 0x89, - 0x81, 0x43, 0x69, 0x77, 0x8a, 0xbe, 0xbd, 0x18, 0x6b, 0x66, 0x3d, 0x16, 0x61, 0xfd, 0x7b, 0xec, - 0xc6, 0x14, 0xbb, 0xe1, 0xdf, 0x53, 0xd0, 0xf4, 0xc5, 0x60, 0xa1, 0xa0, 0xa9, 0xe9, 0xb4, 0x21, - 0xe0, 0xd1, 0x99, 0x56, 0xcb, 0x89, 0x76, 0x8c, 0x6b, 0x12, 0xa8, 0xd7, 0x8c, 0x4f, 0xee, 0x9f, - 0x48, 0x24, 0xb6, 0x3f, 0x49, 0xa5, 0x27, 0xab, 0xb5, 0x49, 0x6b, 0x6d, 0xf2, 0xda, 0x98, 0xc4, - 0x66, 0x93, 0xd9, 0x70, 0x52, 0xcb, 0x49, 0x19, 0x82, 0x40, 0x2e, 0x09, 0xe8, 0x33, 0x81, 0x7d, - 0xb7, 0xf3, 0xda, 0x4e, 0x46, 0x62, 0xfd, 0x17, 0xbf, 0xe8, 0xfd, 0xbd, 0x93, 0x7b, 0x99, 0xc7, - 0xfd, 0x1b, 0xad, 0xaf, 0x16, 0xec, 0xed, 0x58, 0xab, 0x98, 0x5c, 0x4c, 0x2e, 0x26, 0x17, 0x93, - 0x2b, 0x66, 0x72, 0x3f, 0x0f, 0x4d, 0xee, 0xff, 0xa9, 0xb6, 0xc2, 0xd0, 0x0b, 0xe2, 0xad, 0xed, - 0xdd, 0x9d, 0x9d, 0xa1, 0x0c, 0x5b, 0xe9, 0x5d, 0x32, 0x6a, 0x87, 0xa2, 0x29, 0xbf, 0x1b, 0xb4, - 0x5c, 0xf3, 0x7e, 0x14, 0xd6, 0x62, 0xe7, 0xc9, 0xd9, 0x8f, 0xce, 0x82, 0xa5, 0x7e, 0x82, 0x80, - 0x5c, 0xe0, 0xd5, 0xa8, 0x3a, 0xde, 0x8f, 0xf8, 0x24, 0xf6, 0xea, 0xde, 0xa3, 0x17, 0x87, 0x4f, - 0x4e, 0x23, 0x70, 0xaa, 0xdf, 0xdc, 0xe0, 0xc1, 0x93, 0x0d, 0xc6, 0x3a, 0x65, 0x74, 0x04, 0xa3, - 0xb1, 0xb4, 0x03, 0xb1, 0xca, 0x0a, 0x6d, 0x32, 0x1a, 0x13, 0x0a, 0x29, 0x4d, 0x99, 0xaa, 0x00, - 0xb4, 0x8f, 0x00, 0x84, 0x00, 0x84, 0x00, 0x44, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0x82, - 0x00, 0x84, 0x00, 0x84, 0xc9, 0xc5, 0xe4, 0x62, 0x72, 0x11, 0x80, 0xd6, 0x48, 0x00, 0xca, 0xbe, - 0x2a, 0x40, 0xbd, 0x11, 0xfb, 0x9d, 0x6c, 0xb3, 0xc8, 0xc8, 0xe0, 0xa7, 0x6b, 0xef, 0x3e, 0x0b, - 0x39, 0x6e, 0x7a, 0x1a, 0x8e, 0x91, 0x76, 0x63, 0x9c, 0xd3, 0xb6, 0x4f, 0x3a, 0x2c, 0xe9, 0xb0, - 0xd6, 0x94, 0x96, 0x42, 0xb5, 0xd1, 0x6a, 0x4f, 0xd2, 0x48, 0x22, 0xb7, 0xad, 0xd7, 0x12, 0xd9, - 0x6d, 0xec, 0xe8, 0x59, 0xc2, 0x04, 0xcb, 0xa9, 0xc4, 0xf9, 0xb5, 0xd1, 0x88, 0x43, 0xaf, 0x59, - 0x7f, 0x72, 0xa2, 0x6e, 0x17, 0x08, 0xc5, 0xdd, 0x2f, 0xda, 0x25, 0xf2, 0x4e, 0x63, 0xd2, 0x12, - 0x7c, 0x5b, 0x9a, 0xd4, 0xab, 0x1a, 0x7f, 0xf7, 0x9c, 0xe6, 0x61, 0x49, 0x30, 0x02, 0x97, 0x28, - 0x20, 0x70, 0xdd, 0x59, 0x7c, 0x97, 0x2a, 0x1f, 0x20, 0x33, 0x09, 0x36, 0x7b, 0x5b, 0xb7, 0xc5, - 0x66, 0x95, 0xb0, 0x75, 0x9b, 0x68, 0xf6, 0x5f, 0x6e, 0xbd, 0xe5, 0x59, 0x68, 0xf7, 0x7d, 0xe8, - 0x56, 0xdb, 0x91, 0xe4, 0xa9, 0xff, 0xe0, 0x77, 0x72, 0x38, 0xf6, 0xc4, 0xda, 0x7f, 0x7e, 0x25, - 0xf8, 0xaa, 0xdc, 0x1f, 0xb9, 0x7b, 0x55, 0xc5, 0x37, 0xa5, 0xd2, 0xe1, 0x51, 0xa9, 0xb4, 0x77, - 0xf4, 0xfa, 0x68, 0xef, 0xf8, 0xe0, 0xa0, 0x78, 0x58, 0x3c, 0xc8, 0xd1, 0xdb, 0xdb, 0xc8, 0x46, - 0x2b, 0x95, 0x1c, 0xae, 0x7e, 0x74, 0x79, 0xe9, 0x7f, 0x5a, 0x5e, 0x14, 0x3b, 0xa1, 0x57, 0xf5, - 0xfc, 0xef, 0x5e, 0x4d, 0x9a, 0xc6, 0x5e, 0xb4, 0x0e, 0x93, 0xc1, 0x64, 0x30, 0x19, 0x4c, 0x06, - 0x93, 0xc1, 0x64, 0x30, 0x19, 0x4c, 0x06, 0x93, 0xcd, 0x61, 0x32, 0x1b, 0xea, 0xd8, 0x48, 0xcb, - 0xb0, 0x18, 0x2c, 0x06, 0x8b, 0xc1, 0x62, 0xb0, 0x18, 0x2c, 0x06, 0x8b, 0xc1, 0x62, 0xb0, 0xd8, - 0x8b, 0xd7, 0x52, 0xfb, 0x56, 0x6d, 0x3a, 0x6e, 0xf5, 0x2f, 0x61, 0x10, 0x1b, 0x6f, 0x16, 0x0a, - 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x0c, 0x0a, 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x0c, 0x0a, 0x9b, 0x46, - 0x61, 0x35, 0xaf, 0x5a, 0xf7, 0x03, 0xcf, 0xc2, 0x32, 0xe5, 0xf4, 0xe6, 0xa1, 0x32, 0xa8, 0x0c, - 0x2a, 0x83, 0xca, 0xa0, 0x32, 0xa8, 0x0c, 0x2a, 0x83, 0xca, 0xa0, 0xb2, 0xa9, 0x54, 0xe6, 0x47, - 0xd5, 0xc6, 0x77, 0x2f, 0xb4, 0x86, 0x65, 0x13, 0xed, 0xc3, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, - 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, 0xc1, 0x65, 0xd3, 0xb8, 0xcc, 0x0f, 0xee, 0x1b, 0xe1, - 0xa3, 0x2d, 0x2a, 0x7b, 0xd9, 0x3a, 0x4c, 0x06, 0x93, 0xc1, 0x64, 0x30, 0x19, 0x4c, 0x06, 0x93, - 0xc1, 0x64, 0x30, 0x19, 0x4c, 0x36, 0x8d, 0xc9, 0x02, 0x4b, 0x89, 0x64, 0x01, 0x99, 0x64, 0x70, - 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x73, 0x39, 0xac, - 0x71, 0x7f, 0xef, 0x85, 0x36, 0x40, 0x6c, 0xa4, 0x61, 0x48, 0x0c, 0x12, 0x83, 0xc4, 0x20, 0x31, - 0x48, 0x0c, 0x12, 0x83, 0xc4, 0x20, 0x31, 0x48, 0x6c, 0x1a, 0x89, 0x85, 0x5e, 0xdd, 0x73, 0x23, - 0x6b, 0x39, 0xfd, 0x13, 0xcd, 0x43, 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0x41, 0x65, 0x50, 0x19, - 0x54, 0x06, 0x95, 0x41, 0x65, 0xd3, 0xa9, 0xcc, 0x56, 0x41, 0xd8, 0xe9, 0xcd, 0x43, 0x65, 0x50, - 0x19, 0x54, 0x06, 0x95, 0x41, 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0x41, 0x65, 0x2f, 0x5e, 0x8b, - 0x1f, 0x7c, 0x77, 0xeb, 0x7e, 0xcd, 0x69, 0x34, 0xab, 0x8d, 0x9a, 0xe8, 0xa9, 0xf0, 0x63, 0xed, - 0xc2, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, - 0x33, 0x39, 0xac, 0xfd, 0x72, 0x22, 0x1b, 0x20, 0xd6, 0x6d, 0x18, 0x12, 0x83, 0xc4, 0x20, 0x31, - 0x48, 0x0c, 0x12, 0x83, 0xc4, 0x20, 0x31, 0x48, 0x0c, 0x12, 0x7b, 0xf1, 0x5a, 0xe2, 0x46, 0xec, - 0xd6, 0x9d, 0x5a, 0xd8, 0x68, 0x36, 0x25, 0xd7, 0x27, 0xc7, 0x9b, 0x85, 0xc2, 0xa0, 0x30, 0x28, - 0x0c, 0x0a, 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x0c, 0x0a, 0x5b, 0x4d, 0x0a, 0xdb, 0x48, 0x71, 0xcc, - 0x17, 0xca, 0x41, 0xd0, 0x88, 0xdd, 0xf6, 0xab, 0x34, 0x1a, 0xe6, 0x85, 0xa8, 0xfa, 0xcd, 0x7b, - 0x74, 0x9b, 0x6e, 0xfc, 0xad, 0xed, 0x11, 0x76, 0x1b, 0x4d, 0x2f, 0xa8, 0x76, 0x38, 0xa9, 0xeb, - 0x34, 0x1d, 0xf7, 0xc1, 0x0b, 0xe2, 0xdd, 0xd1, 0x9f, 0x6b, 0xdf, 0xaa, 0xcd, 0x5d, 0xbf, 0xed, - 0x38, 0xee, 0xdd, 0xaa, 0x17, 0x0d, 0x7f, 0xdc, 0x8d, 0x62, 0x37, 0xf6, 0x76, 0x7b, 0x5e, 0xc5, - 0x44, 0x7b, 0x2b, 0x44, 0x71, 0xd8, 0xaa, 0xc6, 0x41, 0xcf, 0x4f, 0x5d, 0xb7, 0xef, 0x5e, 0x6e, - 0xdf, 0xfc, 0xee, 0xf4, 0x5b, 0xb5, 0x79, 0x77, 0xde, 0xbf, 0xe3, 0xdd, 0xbb, 0xfe, 0xbd, 0x36, - 0xd2, 0x79, 0x63, 0x1a, 0x6f, 0xab, 0xe0, 0x05, 0xee, 0xd7, 0xba, 0xbe, 0xe7, 0x1e, 0x78, 0xeb, - 0x5e, 0x3b, 0x9a, 0xe3, 0xc5, 0xcc, 0x74, 0x19, 0xb3, 0xb3, 0x04, 0x33, 0x4b, 0xb2, 0xb2, 0x14, - 0x23, 0x8b, 0xb3, 0xb1, 0x38, 0x13, 0x0b, 0xb3, 0x70, 0xba, 0x56, 0xce, 0x98, 0x79, 0x47, 0x4f, - 0xec, 0xad, 0x7b, 0x6e, 0x60, 0x32, 0x64, 0x7a, 0x53, 0xa8, 0x58, 0xcc, 0xb0, 0xb1, 0xf9, 0xe6, - 0xd5, 0x9b, 0x5e, 0xe8, 0xb8, 0xb5, 0x5a, 0xe8, 0x45, 0x91, 0xb9, 0xd1, 0x79, 0xd1, 0x1e, 0xc6, - 0x07, 0xe3, 0x83, 0xf1, 0x51, 0x1e, 0x33, 0x7e, 0xd3, 0x70, 0x06, 0x8d, 0xd9, 0x9f, 0x63, 0x83, - 0x36, 0x7a, 0xcf, 0x64, 0x16, 0x59, 0x0b, 0x4a, 0x10, 0x7e, 0xf3, 0x7b, 0x49, 0xa0, 0x6f, 0x26, - 0xfa, 0x48, 0x42, 0x86, 0xb8, 0x72, 0xe3, 0xd8, 0x0b, 0x03, 0x31, 0x21, 0xa2, 0xb0, 0xb5, 0xf5, - 0x79, 0xcf, 0x39, 0xae, 0xfc, 0xfa, 0x5c, 0x74, 0x8e, 0x2b, 0xdd, 0x1f, 0x8b, 0x9d, 0xff, 0xeb, - 0xfe, 0xbc, 0xff, 0x79, 0xcf, 0x29, 0xf5, 0x7f, 0x3e, 0xf8, 0xbc, 0xe7, 0x1c, 0x54, 0xb6, 0xbf, - 0x7c, 0xd9, 0xd9, 0xfe, 0xf9, 0xfa, 0x59, 0xfd, 0xc2, 0xad, 0xff, 0xfa, 0xfc, 0xe5, 0x4b, 0xf3, - 0xe7, 0xa7, 0xe7, 0xf6, 0x7f, 0x2f, 0x9e, 0x2b, 0xff, 0xbd, 0xfd, 0x5b, 0x61, 0xd9, 0xa1, 0xd5, - 0xab, 0x0c, 0x8d, 0xba, 0xc3, 0x35, 0x1a, 0x75, 0x27, 0xbf, 0xda, 0x63, 0xc3, 0x75, 0xee, 0xcb, - 0xce, 0xfb, 0xca, 0xcf, 0xbd, 0x57, 0xa5, 0xe7, 0xed, 0x93, 0xed, 0xad, 0x97, 0xbf, 0x3b, 0xd9, - 0xfe, 0xb9, 0xf7, 0xea, 0xe0, 0x79, 0x6b, 0x6b, 0xca, 0xbf, 0xfc, 0x36, 0xad, 0x8d, 0xed, 0x5f, - 0x5b, 0x5b, 0x5b, 0xbd, 0xf1, 0x36, 0x36, 0x06, 0x3f, 0xef, 0x15, 0x2b, 0xbf, 0x75, 0x7e, 0xec, - 0xfe, 0x77, 0x30, 0x8a, 0x13, 0x7d, 0x78, 0x7b, 0xea, 0xd8, 0x7d, 0x25, 0x36, 0x05, 0xff, 0x3c, - 0xa9, 0xfc, 0xf7, 0xc9, 0xf6, 0xcf, 0xc3, 0xe7, 0xfe, 0xcf, 0x9d, 0xff, 0x6e, 0xff, 0xda, 0xda, - 0xf9, 0xfb, 0x97, 0x2f, 0x3b, 0x3b, 0x7f, 0xdf, 0xee, 0x3e, 0x58, 0xef, 0x73, 0x7f, 0xef, 0xfe, - 0xeb, 0x6f, 0x27, 0x27, 0x13, 0xbf, 0xda, 0xde, 0xfa, 0xaf, 0x9d, 0x2c, 0x4c, 0xab, 0x8d, 0x74, - 0xef, 0xab, 0xeb, 0x4e, 0x2f, 0xfc, 0x28, 0x2e, 0xc7, 0x71, 0x68, 0xe6, 0x52, 0x3f, 0xfa, 0xc1, - 0x59, 0xdd, 0x6b, 0x23, 0x45, 0x9b, 0x6e, 0x83, 0x56, 0xbd, 0x6e, 0xe0, 0x0d, 0x3f, 0xba, 0x3f, - 0xe4, 0x1a, 0xbb, 0x0c, 0x6b, 0x5e, 0xe8, 0xd5, 0xde, 0x3e, 0xf5, 0x9a, 0xca, 0x70, 0x94, 0xe0, - 0xd7, 0xcc, 0x23, 0x03, 0xbf, 0x46, 0x34, 0x40, 0x34, 0x40, 0x34, 0xa0, 0x31, 0x73, 0xfa, 0xf2, - 0xa5, 0xe3, 0xd7, 0x24, 0xe2, 0x81, 0x37, 0x69, 0x59, 0x9a, 0x0d, 0x8b, 0xfd, 0x6c, 0x2a, 0x68, - 0xcb, 0x0b, 0xd9, 0x6a, 0x03, 0x33, 0x79, 0xe7, 0x24, 0xfb, 0x64, 0xc2, 0xee, 0x6b, 0x4f, 0x7a, - 0x25, 0x6b, 0xac, 0xe7, 0x86, 0x8d, 0xdc, 0xae, 0x91, 0x9b, 0xd5, 0x73, 0xab, 0x49, 0x7b, 0x4f, - 0x73, 0xd0, 0x49, 0x0e, 0x36, 0x05, 0x0b, 0x90, 0x74, 0x59, 0x24, 0xd9, 0xc8, 0x5d, 0x3c, 0x0e, - 0xe7, 0x7f, 0x62, 0x41, 0x1f, 0xab, 0xf6, 0xad, 0x79, 0x9f, 0xce, 0x7f, 0xec, 0xd9, 0x0f, 0x33, - 0xe7, 0x41, 0x0a, 0x5d, 0x4b, 0xb0, 0xe8, 0xfb, 0x0f, 0x4c, 0x7b, 0xf7, 0xe3, 0x0b, 0x3a, 0xa6, - 0x6f, 0xb7, 0x17, 0x7c, 0x6c, 0xc0, 0x39, 0xfb, 0x0b, 0x3e, 0xa8, 0xc0, 0x33, 0x3a, 0xdc, 0xa2, - 0xca, 0x27, 0xda, 0x1c, 0xa2, 0xcd, 0x1b, 0x9a, 0x5c, 0x61, 0x36, 0xbc, 0x4f, 0xfd, 0x64, 0x26, - 0xb4, 0xb7, 0x6e, 0x37, 0x3a, 0x88, 0x93, 0x77, 0xe5, 0xf8, 0xda, 0xdf, 0x58, 0x1b, 0x09, 0xbb, - 0xe6, 0xd4, 0xbb, 0x77, 0x5b, 0xf5, 0x4e, 0xcf, 0xdc, 0xbb, 0xf5, 0x28, 0xa9, 0xb9, 0x51, 0x84, - 0x74, 0x65, 0x28, 0xd7, 0x81, 0x70, 0x13, 0xe8, 0xd6, 0x85, 0x6c, 0x63, 0xa8, 0x36, 0x86, 0x68, - 0x43, 0x68, 0x96, 0xa5, 0x0d, 0x65, 0x08, 0x36, 0x58, 0x7f, 0x53, 0x5c, 0x6f, 0x5b, 0x11, 0x77, - 0x96, 0x00, 0x3d, 0xe7, 0x78, 0xb2, 0x0d, 0x85, 0x27, 0x4b, 0xfa, 0x44, 0x9a, 0x4f, 0x52, 0x98, - 0xeb, 0x55, 0xe7, 0x70, 0xcc, 0xf4, 0x87, 0x9f, 0x7c, 0xb4, 0x29, 0x8f, 0xd5, 0x29, 0x8b, 0xf4, - 0xfd, 0x70, 0xe6, 0xe3, 0x8c, 0x95, 0x4f, 0xfa, 0x7e, 0x38, 0xe3, 0x2b, 0x2e, 0x70, 0xd0, 0x0b, - 0x6d, 0x5d, 0x12, 0xdb, 0xa6, 0x62, 0xcb, 0x92, 0xda, 0x2e, 0x65, 0x5b, 0xa5, 0x6c, 0x9b, 0x14, - 0x6d, 0x91, 0xda, 0x70, 0x5c, 0xe4, 0x50, 0x0b, 0xd5, 0x7e, 0xbf, 0x27, 0x84, 0xb1, 0xde, 0xe7, - 0x85, 0x69, 0x6c, 0x0f, 0x1a, 0x83, 0xc6, 0xa0, 0x31, 0x68, 0x0c, 0x1a, 0x5b, 0x79, 0x1a, 0xfb, - 0x7e, 0xb8, 0xdb, 0x73, 0x22, 0x16, 0xa4, 0x85, 0x11, 0xe1, 0x22, 0xb1, 0x4b, 0x1b, 0xb9, 0x06, - 0xb7, 0x86, 0x5b, 0x9b, 0x32, 0x98, 0xd4, 0xbd, 0x99, 0xaa, 0x12, 0x99, 0x70, 0x68, 0xe1, 0x8c, - 0xd6, 0xcb, 0x19, 0x25, 0x1d, 0xaa, 0xaa, 0x38, 0x6f, 0x86, 0xf7, 0x86, 0x83, 0x57, 0x7b, 0x10, - 0x9b, 0x0c, 0x66, 0x89, 0x41, 0x6d, 0x3a, 0xb8, 0xc5, 0x06, 0xb9, 0xd8, 0x60, 0x17, 0x1a, 0xf4, - 0x6a, 0x83, 0x5f, 0x71, 0x12, 0x68, 0x4f, 0x86, 0x17, 0xe1, 0x09, 0x9b, 0x45, 0xc8, 0xd0, 0x48, - 0x75, 0x52, 0x09, 0x4f, 0x2e, 0xbd, 0x49, 0xa6, 0x39, 0xd9, 0xf4, 0xc3, 0x21, 0xc1, 0xf0, 0xc8, - 0x30, 0x5c, 0x32, 0xef, 0x38, 0x36, 0x8b, 0x60, 0x7c, 0x30, 0x3e, 0xab, 0x60, 0x7c, 0x84, 0x92, - 0xd3, 0x25, 0x92, 0xd2, 0xc5, 0x92, 0xd1, 0x49, 0x42, 0xcf, 0x5c, 0xf2, 0x39, 0xc9, 0xdf, 0x24, - 0x7f, 0xeb, 0xdb, 0x28, 0x92, 0xbf, 0xf1, 0xee, 0x78, 0x77, 0x9d, 0x99, 0x43, 0xf2, 0xf7, 0xb4, - 0xb1, 0xb1, 0x94, 0xe4, 0xef, 0xef, 0x87, 0xd3, 0xd3, 0xbf, 0x93, 0xac, 0xf9, 0xe8, 0xf7, 0x8f, - 0x42, 0xdf, 0xe8, 0xd8, 0x6a, 0x7d, 0x1b, 0xad, 0x69, 0x9b, 0xd1, 0x46, 0xd1, 0x46, 0x53, 0xb1, - 0xa5, 0x83, 0x77, 0x5e, 0xf7, 0xdc, 0xfb, 0xd0, 0xbb, 0xd7, 0x79, 0xe5, 0x7d, 0xb3, 0x79, 0xa4, - 0x71, 0xed, 0x55, 0xcf, 0xbc, 0xec, 0xec, 0xf4, 0x2c, 0xc4, 0xae, 0x5f, 0xcb, 0x84, 0x91, 0x18, - 0xb8, 0x94, 0x76, 0xa7, 0xe8, 0xdb, 0x8b, 0xb1, 0x66, 0xd6, 0x63, 0x59, 0xc5, 0xbf, 0xc7, 0x6e, - 0x4c, 0xb1, 0x1b, 0xfe, 0xfd, 0xca, 0x2c, 0xa8, 0x68, 0xae, 0x32, 0x4e, 0x0c, 0x16, 0xad, 0xd5, - 0x46, 0xc3, 0xe9, 0x91, 0xd9, 0xa8, 0x47, 0x6b, 0xda, 0x10, 0xf2, 0xe8, 0x4c, 0xab, 0xe5, 0xc4, - 0x3b, 0xba, 0xd3, 0x6d, 0xd2, 0x27, 0x49, 0x1e, 0xed, 0xa1, 0xbe, 0x63, 0xce, 0x82, 0x04, 0x21, - 0x36, 0x29, 0x25, 0x27, 0xa7, 0xf8, 0x24, 0x95, 0x9e, 0xac, 0xd6, 0x26, 0xad, 0xb5, 0xc9, 0x6b, - 0x63, 0x12, 0x9b, 0x4d, 0x66, 0xc3, 0x49, 0x2d, 0x27, 0x66, 0x08, 0x02, 0xb9, 0x24, 0xa0, 0xcf, - 0x04, 0xf6, 0xdd, 0xce, 0x6b, 0x3b, 0x19, 0x89, 0xf5, 0x5f, 0xfc, 0xa2, 0xf7, 0xf7, 0xce, 0x86, - 0x94, 0x1c, 0xd6, 0xf0, 0x8f, 0x5a, 0x5f, 0x2d, 0xd8, 0xdb, 0xb1, 0x56, 0x31, 0xb9, 0x98, 0x5c, - 0x4c, 0x2e, 0x26, 0x57, 0xcc, 0xe4, 0x7e, 0x1e, 0x9a, 0xdc, 0xff, 0x53, 0x6d, 0x85, 0xa1, 0x17, - 0xc4, 0x5b, 0xdb, 0xbb, 0x3b, 0x3b, 0x43, 0x19, 0xb6, 0xd2, 0xbb, 0x64, 0xd4, 0x0e, 0x45, 0x53, - 0x7e, 0x37, 0x68, 0xb9, 0xe6, 0xfd, 0x28, 0xac, 0x45, 0xed, 0xef, 0xb3, 0x1f, 0x9d, 0x25, 0x4b, - 0xfd, 0x25, 0x79, 0xb9, 0xc0, 0xab, 0x51, 0x75, 0xbc, 0x1f, 0xf1, 0x49, 0xec, 0xd5, 0xbd, 0x47, - 0x2f, 0x0e, 0x9f, 0x9c, 0x46, 0xe0, 0x54, 0xbf, 0x75, 0xce, 0x6f, 0x10, 0x0d, 0xc6, 0x3a, 0xbb, - 0xa5, 0x04, 0xa3, 0xb1, 0xb4, 0x03, 0xb1, 0x4a, 0x2e, 0xcb, 0xbc, 0xcf, 0x5a, 0x20, 0x19, 0x93, - 0x0a, 0xb5, 0x96, 0x4b, 0xf4, 0x7b, 0x53, 0x67, 0xc9, 0x3b, 0x59, 0x15, 0x8f, 0xc5, 0x44, 0x94, - 0xa0, 0xba, 0x87, 0x75, 0x09, 0x68, 0x1f, 0x09, 0x08, 0x09, 0x08, 0x09, 0x88, 0x78, 0x84, 0x78, - 0x84, 0x78, 0x84, 0x78, 0x04, 0x09, 0x08, 0x09, 0x08, 0x93, 0x8b, 0xc9, 0xc5, 0xe4, 0x22, 0x01, - 0xad, 0x91, 0x04, 0x94, 0x07, 0x5d, 0x40, 0xa3, 0x8a, 0xae, 0x81, 0x2c, 0xb0, 0x46, 0xf9, 0xa9, - 0x26, 0x99, 0x5a, 0x9b, 0x0b, 0xeb, 0xaf, 0x7d, 0x3f, 0x1c, 0x39, 0x60, 0x6f, 0xf0, 0xd3, 0xb5, - 0x77, 0x9f, 0x85, 0x5c, 0xb7, 0x46, 0xb3, 0xfd, 0x12, 0x22, 0xfd, 0x2c, 0xb7, 0x7e, 0x03, 0x94, - 0x0d, 0xb0, 0x09, 0x20, 0xa4, 0xc6, 0x6a, 0x99, 0x19, 0xb2, 0xdc, 0xd8, 0xdb, 0xb3, 0x0a, 0x2a, - 0x67, 0xae, 0xf6, 0xf6, 0x18, 0x0b, 0x9d, 0xbd, 0x72, 0x80, 0x63, 0x3b, 0x7b, 0xc4, 0x42, 0xf0, - 0x69, 0x8d, 0x1b, 0xbe, 0x2c, 0xcd, 0x22, 0x84, 0xeb, 0x1e, 0xd9, 0x9b, 0x9a, 0x03, 0x82, 0x7b, - 0x4b, 0xe6, 0x62, 0x55, 0xe3, 0x7b, 0xf3, 0x2a, 0x24, 0x13, 0x9e, 0xb9, 0x98, 0x43, 0x69, 0x73, - 0x50, 0x6d, 0xf5, 0xb1, 0x11, 0x5b, 0xb1, 0xad, 0xc3, 0x96, 0x31, 0xac, 0x18, 0x56, 0x0c, 0x2b, - 0x86, 0x75, 0x3d, 0x0c, 0xab, 0x1d, 0x60, 0x95, 0x24, 0x55, 0x0c, 0x20, 0x06, 0x10, 0x03, 0x28, - 0x6f, 0x00, 0xa3, 0x38, 0xf4, 0x83, 0x07, 0xd1, 0x93, 0x8f, 0x73, 0x68, 0xff, 0x2c, 0x10, 0xa5, - 0x18, 0x4a, 0x62, 0xf9, 0xb0, 0x7c, 0x58, 0x3e, 0x2c, 0x9f, 0xf4, 0x95, 0xab, 0xb5, 0xde, 0xdc, - 0x5b, 0xcc, 0x23, 0x03, 0x5d, 0x69, 0xc4, 0xae, 0x48, 0x06, 0x3a, 0xcb, 0x33, 0x4b, 0xf2, 0x0d, - 0x2c, 0xcf, 0xb0, 0x3c, 0x03, 0x4a, 0x82, 0x92, 0xa8, 0x88, 0xa8, 0x88, 0x2c, 0xcf, 0x60, 0x58, - 0x31, 0xac, 0x18, 0x56, 0x0c, 0xab, 0xb8, 0x61, 0x65, 0x79, 0x06, 0x03, 0x88, 0x01, 0x44, 0xa4, - 0xcc, 0xb5, 0x48, 0xc9, 0xf2, 0x0c, 0x96, 0x0f, 0xcb, 0x87, 0xe5, 0xc3, 0xf2, 0x29, 0x7c, 0xf7, - 0xc8, 0x0b, 0x62, 0x4b, 0x7a, 0xe5, 0x64, 0xd3, 0x58, 0x42, 0x2c, 0x21, 0x96, 0x10, 0x4b, 0x98, - 0x5d, 0x4b, 0x68, 0x01, 0x04, 0x5f, 0xb4, 0x8b, 0x0d, 0xc4, 0x06, 0x62, 0x03, 0xb1, 0x81, 0xf6, - 0x6c, 0x20, 0xc9, 0x3a, 0x83, 0x64, 0x1d, 0xca, 0x42, 0xd8, 0xed, 0x60, 0xbb, 0x05, 0x21, 0x2e, - 0x7b, 0x37, 0xc9, 0x40, 0x2d, 0x08, 0xbd, 0x9c, 0x2a, 0xa3, 0x5c, 0x2a, 0xe3, 0x3a, 0x10, 0xfb, - 0xd4, 0x81, 0xa0, 0x0e, 0xc4, 0xc2, 0xef, 0x68, 0x50, 0x07, 0xa2, 0xd5, 0x9e, 0xa9, 0x91, 0x44, - 0x25, 0x88, 0x5e, 0x4b, 0xd4, 0x82, 0x20, 0xd9, 0x70, 0x89, 0x6c, 0x9b, 0xb3, 0x64, 0xc3, 0xae, - 0x7f, 0x76, 0xdc, 0xda, 0x77, 0x2f, 0x8c, 0x62, 0x3f, 0xf2, 0x9c, 0xa8, 0xdb, 0x15, 0x42, 0x81, - 0xeb, 0x8c, 0xf6, 0x09, 0x60, 0x09, 0x60, 0x09, 0x60, 0x33, 0x17, 0xc0, 0xf6, 0x9c, 0xe8, 0x61, - 0x49, 0x30, 0x86, 0x7d, 0x23, 0xd0, 0xd4, 0x75, 0xe7, 0x80, 0x06, 0x93, 0x13, 0x24, 0x46, 0xff, - 0xc8, 0x4c, 0x82, 0xcd, 0xde, 0x01, 0xff, 0x62, 0xb3, 0x4a, 0xd8, 0xba, 0x4d, 0x34, 0xfb, 0x2f, - 0xb7, 0xde, 0xf2, 0x2c, 0xb4, 0xfb, 0x3e, 0x74, 0xab, 0xed, 0x18, 0xeb, 0xd4, 0x7f, 0xf0, 0x3b, - 0xe7, 0x7c, 0xec, 0x89, 0xb5, 0xff, 0xfc, 0x4a, 0xf0, 0x55, 0xb9, 0x3f, 0x72, 0xf7, 0xaa, 0x8a, - 0x6f, 0x4a, 0xa5, 0xc3, 0xa3, 0x52, 0x69, 0xef, 0xe8, 0xf5, 0xd1, 0xde, 0xf1, 0xc1, 0x41, 0xf1, - 0xb0, 0x78, 0x90, 0xa3, 0xb7, 0xb7, 0x91, 0x8d, 0x56, 0x2a, 0x39, 0x5c, 0x48, 0xe8, 0x71, 0x53, - 0x47, 0x5d, 0x09, 0x1f, 0x9d, 0xd0, 0xab, 0x7a, 0xfe, 0x77, 0xaf, 0x26, 0x0e, 0x66, 0x13, 0x37, - 0x80, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, - 0xa6, 0x93, 0x59, 0xcd, 0xab, 0xd6, 0xfd, 0xc0, 0xb3, 0x47, 0x66, 0x13, 0x37, 0x80, 0xcc, 0x20, - 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0xa6, 0x93, 0x99, - 0x1f, 0xdc, 0x37, 0x9c, 0xd0, 0xfb, 0x9f, 0x96, 0x17, 0xc5, 0xf6, 0xf0, 0x6c, 0xfa, 0x5d, 0x60, - 0x34, 0x18, 0x0d, 0x46, 0x83, 0xd1, 0x60, 0x34, 0x18, 0x0d, 0x46, 0x83, 0xd1, 0x60, 0xb4, 0xe9, - 0x8c, 0x16, 0x7a, 0x5f, 0xfd, 0xa0, 0x66, 0x8f, 0xce, 0x5e, 0xb6, 0x0f, 0x97, 0xc1, 0x65, 0x70, - 0x19, 0x5c, 0x06, 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, 0xcd, 0xe2, 0xb2, 0xee, 0x7e, - 0xbe, 0x56, 0x68, 0x69, 0x23, 0xc0, 0xc4, 0x0d, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, - 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0xb3, 0x59, 0x64, 0x56, 0x77, 0x9f, 0x9c, 0xfb, 0x46, - 0xf8, 0x1f, 0x5b, 0x60, 0x36, 0xde, 0x3e, 0x5c, 0x06, 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, - 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x36, 0x8f, 0xcb, 0x42, 0xaf, 0x59, 0x7f, 0xb2, 0xb9, 0x9c, - 0x39, 0xe5, 0x26, 0x10, 0x1a, 0x84, 0x06, 0xa1, 0x41, 0x68, 0x10, 0x1a, 0x84, 0x06, 0xa1, 0x41, - 0x68, 0x10, 0xda, 0x4c, 0x42, 0xf3, 0xdc, 0xc8, 0xb3, 0x4a, 0x67, 0xe3, 0x37, 0x80, 0xcc, 0x20, - 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x66, 0x91, 0x59, - 0xb3, 0xfe, 0x64, 0x6b, 0x39, 0x73, 0xd0, 0x34, 0x34, 0x06, 0x8d, 0x41, 0x63, 0xd0, 0x18, 0x34, - 0x06, 0x8d, 0x41, 0x63, 0xd0, 0x18, 0x34, 0x36, 0x8b, 0xc6, 0x2c, 0x97, 0xcc, 0xa0, 0x5a, 0x06, - 0x64, 0x06, 0x99, 0x41, 0x66, 0x90, 0x19, 0x64, 0x06, 0x99, 0x41, 0x66, 0x90, 0x59, 0x42, 0x32, - 0x8b, 0x1a, 0x75, 0xbf, 0xea, 0x5b, 0x24, 0xb3, 0x89, 0x1b, 0x40, 0x66, 0x90, 0x19, 0x64, 0x06, - 0x99, 0x41, 0x66, 0x90, 0x19, 0x64, 0x06, 0x99, 0x41, 0x66, 0x2f, 0x5e, 0x8b, 0x1f, 0x7c, 0x77, - 0xeb, 0x7e, 0xcd, 0x69, 0x34, 0xab, 0x8d, 0x9a, 0x27, 0x07, 0x64, 0x2f, 0xda, 0x85, 0xc3, 0xe0, - 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0xe0, 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0x66, 0x72, 0x58, - 0xfb, 0xe5, 0x44, 0x36, 0x40, 0xac, 0xdb, 0x30, 0x24, 0x06, 0x89, 0x41, 0x62, 0x90, 0x18, 0x24, - 0x06, 0x89, 0x41, 0x62, 0x90, 0x18, 0x24, 0xf6, 0xe2, 0xb5, 0xc4, 0x8d, 0xd8, 0xad, 0x3b, 0xb5, - 0xb0, 0xd1, 0x6c, 0x4a, 0xae, 0x50, 0x8e, 0x37, 0x0b, 0x85, 0x41, 0x61, 0x50, 0x18, 0x14, 0x06, - 0x85, 0x41, 0x61, 0x50, 0x18, 0x14, 0xb6, 0x9a, 0x14, 0xb6, 0x91, 0xe2, 0x98, 0x2f, 0x94, 0x83, - 0xa0, 0x11, 0xbb, 0xed, 0x57, 0x69, 0x34, 0xcc, 0x0b, 0x51, 0xf5, 0x9b, 0xf7, 0xe8, 0x36, 0xdd, - 0xf8, 0x5b, 0xdb, 0x23, 0xec, 0x36, 0x9a, 0x5e, 0xd0, 0x2d, 0xf5, 0xdf, 0xab, 0x5e, 0xe6, 0x3e, - 0x78, 0x41, 0xbc, 0x3b, 0xfa, 0x73, 0x37, 0xf9, 0x6c, 0xd7, 0x6f, 0xbb, 0x8e, 0x7b, 0xb7, 0xea, - 0x45, 0xc3, 0x1f, 0x77, 0xa3, 0xd8, 0x8d, 0xbd, 0xdd, 0x9e, 0x5f, 0x31, 0x51, 0xdf, 0x0a, 0x51, - 0x1c, 0xb6, 0xaa, 0x71, 0xd0, 0xf3, 0x54, 0xd7, 0xed, 0xfb, 0x97, 0xdb, 0xb7, 0xbf, 0x3b, 0xed, - 0xdc, 0xfe, 0xee, 0xbc, 0x7f, 0xcf, 0xbb, 0x77, 0xfd, 0xbb, 0x6d, 0xa4, 0xf3, 0xd6, 0x34, 0xde, - 0x58, 0xc1, 0x0b, 0xdc, 0xaf, 0x75, 0x7d, 0xef, 0x3d, 0xf0, 0xd8, 0xbd, 0x76, 0x34, 0xc7, 0x8c, - 0x99, 0xf9, 0x32, 0xe6, 0x67, 0x09, 0x6e, 0x96, 0xe4, 0x65, 0x29, 0x4e, 0x16, 0xe7, 0x63, 0x71, - 0x2e, 0x16, 0xe6, 0xe1, 0x74, 0x2d, 0x9d, 0x31, 0xf7, 0x0e, 0xc6, 0xcc, 0xd7, 0x46, 0xa3, 0xee, - 0xb9, 0x81, 0xc9, 0x90, 0xe9, 0x4d, 0xa1, 0x62, 0x31, 0xc3, 0xc6, 0xe6, 0x9b, 0x57, 0x6f, 0x7a, - 0xa1, 0xe3, 0xd6, 0x6a, 0xa1, 0x17, 0x45, 0xe6, 0x46, 0xe7, 0x45, 0x7b, 0x18, 0x1f, 0x8c, 0x0f, - 0xc6, 0x47, 0x79, 0xcc, 0xf8, 0xcd, 0xef, 0x87, 0x86, 0x73, 0x68, 0xcc, 0x02, 0x19, 0x04, 0xda, - 0x85, 0x2b, 0x37, 0x8e, 0xbd, 0x30, 0x30, 0x0e, 0xb1, 0x0b, 0x5b, 0x5b, 0x27, 0xbf, 0x3e, 0xef, - 0x39, 0xc7, 0xae, 0x73, 0x5f, 0x76, 0xde, 0x57, 0x7e, 0xee, 0xbd, 0x2a, 0x3d, 0x6f, 0x9f, 0x6c, - 0x6f, 0xbd, 0xfc, 0xdd, 0xc9, 0xf6, 0xcf, 0xbd, 0x57, 0x07, 0xcf, 0x5b, 0x5b, 0x53, 0xfe, 0xe5, - 0xb7, 0x69, 0x6d, 0x6c, 0xff, 0xda, 0xda, 0xda, 0xda, 0x3f, 0xf8, 0xbc, 0xe7, 0x1c, 0x54, 0x7e, - 0xed, 0x7f, 0xde, 0x73, 0x4a, 0x95, 0xf6, 0x67, 0x2a, 0xbf, 0x3e, 0xef, 0x15, 0x2b, 0xbf, 0x75, - 0x7e, 0xec, 0xfe, 0x77, 0xfb, 0xcb, 0x97, 0x9d, 0xed, 0x9f, 0xaf, 0x9f, 0x93, 0x7d, 0x78, 0x7b, - 0x7b, 0xeb, 0xbf, 0x3e, 0x7f, 0xf9, 0xd2, 0xfc, 0xf9, 0xe9, 0xb9, 0xfd, 0xdf, 0x8b, 0xe7, 0xca, - 0x7f, 0x6f, 0xff, 0x66, 0x3a, 0x61, 0xb6, 0xb6, 0x3e, 0xff, 0x79, 0x52, 0xf9, 0xef, 0x93, 0xed, - 0x9f, 0x87, 0xcf, 0xfd, 0x9f, 0x3b, 0xff, 0xdd, 0xfe, 0xb5, 0xb5, 0xf3, 0xf7, 0x2f, 0x5f, 0x76, - 0x76, 0xfe, 0xbe, 0xdd, 0x7d, 0xa0, 0xde, 0xe7, 0xfe, 0xde, 0xfd, 0xd7, 0xdf, 0x4e, 0x4e, 0x26, - 0x7e, 0xb5, 0xbd, 0xf5, 0x5f, 0x3b, 0xed, 0xaf, 0xb4, 0x91, 0x6e, 0xf4, 0xa3, 0x3b, 0x3d, 0x2e, - 0xfc, 0x28, 0x2e, 0xc7, 0x71, 0x68, 0x36, 0x45, 0x3e, 0xfa, 0xc1, 0x59, 0xdd, 0x6b, 0x9b, 0x88, - 0xb6, 0xb7, 0x0a, 0x5a, 0xf5, 0xba, 0xc1, 0xd8, 0xfe, 0xe8, 0xfe, 0x90, 0x6b, 0xec, 0x32, 0xac, - 0x79, 0xa1, 0x57, 0x7b, 0xfb, 0xd4, 0x6b, 0x2a, 0xc3, 0x5e, 0xdf, 0xaf, 0x99, 0x7b, 0x7a, 0xbf, - 0x86, 0x77, 0xc7, 0xbb, 0xe3, 0xdd, 0x35, 0x66, 0x4e, 0x5f, 0x8e, 0x70, 0xfc, 0x9a, 0x88, 0x77, - 0x4f, 0xcb, 0xd2, 0x6c, 0x58, 0xec, 0x67, 0x53, 0x91, 0xca, 0x86, 0x38, 0xa5, 0x36, 0x34, 0x93, - 0x77, 0x4f, 0xb2, 0x4f, 0x26, 0xec, 0xc0, 0xf6, 0xb4, 0x57, 0xb2, 0xc7, 0x7a, 0x8e, 0xd8, 0xc8, - 0xf1, 0x1a, 0x39, 0x5a, 0x3d, 0xc7, 0x9a, 0xb4, 0xf7, 0x34, 0x87, 0x9d, 0xec, 0x70, 0x53, 0xb0, - 0x02, 0xc9, 0xc5, 0xce, 0x64, 0xa3, 0x77, 0xf1, 0x58, 0x9c, 0xff, 0x89, 0x05, 0xfd, 0xac, 0xda, - 0xbf, 0x12, 0xfd, 0x3a, 0xff, 0xc1, 0x67, 0x3f, 0xce, 0x9c, 0x47, 0x29, 0x24, 0x4d, 0x3e, 0x1d, - 0x82, 0x41, 0xa2, 0xa4, 0xd2, 0x81, 0x0d, 0x5f, 0xf0, 0xb1, 0xa4, 0xcc, 0xa3, 0xc2, 0x36, 0x3a, - 0x0c, 0xa3, 0xca, 0x2a, 0xda, 0x4c, 0xa2, 0xcd, 0x1e, 0x9a, 0x8c, 0x61, 0x36, 0xc8, 0x4f, 0xfd, - 0x64, 0xc6, 0xb4, 0x50, 0xed, 0xbf, 0xc7, 0x84, 0xdd, 0x37, 0x5c, 0x7d, 0xef, 0x5c, 0x97, 0xd4, - 0x23, 0x24, 0x1a, 0x54, 0xda, 0x40, 0xad, 0x03, 0xd0, 0x26, 0xc0, 0xac, 0x0b, 0xc8, 0xc6, 0x40, - 0x6c, 0x0c, 0xc0, 0x86, 0xc0, 0x2b, 0xcb, 0x09, 0x49, 0x07, 0xe9, 0xe0, 0x82, 0xee, 0x02, 0x92, - 0x33, 0x86, 0xab, 0xca, 0xef, 0x60, 0x7c, 0x35, 0xca, 0x31, 0x60, 0xdf, 0xc2, 0xa9, 0x77, 0xef, - 0xb6, 0xea, 0x9d, 0xbe, 0xbc, 0x77, 0xeb, 0x91, 0xea, 0xd2, 0x96, 0x66, 0xdc, 0xa9, 0x1d, 0x6f, - 0x9a, 0xc4, 0x99, 0x12, 0xf1, 0xa5, 0x69, 0x5c, 0x29, 0x16, 0x4f, 0x8a, 0xc5, 0x91, 0x42, 0xf1, - 0xa3, 0xdd, 0x38, 0x46, 0x3b, 0x4e, 0x14, 0x58, 0x7a, 0xd2, 0x5c, 0x72, 0x52, 0x88, 0x5c, 0x5e, - 0x29, 0x9b, 0x8f, 0xd0, 0x7b, 0x6c, 0xc4, 0x22, 0xb6, 0x63, 0xd8, 0x12, 0x86, 0x03, 0xc3, 0x81, - 0xe1, 0xc8, 0x95, 0xe1, 0xc8, 0x77, 0xd0, 0xde, 0x8b, 0xe6, 0x76, 0x7b, 0x1c, 0x2e, 0x15, 0x59, - 0x27, 0x08, 0xb8, 0xba, 0x42, 0x94, 0x72, 0xc0, 0xd0, 0xbd, 0xcc, 0x72, 0xbc, 0xb0, 0x4f, 0xbc, - 0x40, 0xbc, 0x40, 0xbc, 0x80, 0xdb, 0xc7, 0xed, 0xe3, 0xf6, 0x89, 0x17, 0x30, 0x1c, 0x18, 0x0e, - 0x0c, 0x07, 0xf1, 0xc2, 0x48, 0xbc, 0xa0, 0xb0, 0x8c, 0xbc, 0x32, 0x0b, 0x71, 0xc9, 0xcb, 0xa9, - 0x2c, 0x5c, 0xcb, 0xbc, 0xec, 0x35, 0x65, 0x61, 0x41, 0x2f, 0x59, 0x5c, 0xa5, 0x14, 0x4f, 0x29, - 0x2f, 0xe6, 0xed, 0xb3, 0x98, 0x67, 0xc5, 0x0e, 0xa7, 0xb4, 0x98, 0x37, 0xc0, 0x8c, 0xc1, 0x14, - 0x50, 0x8f, 0xd3, 0xa7, 0xb4, 0x91, 0x34, 0x3c, 0xd3, 0x83, 0x14, 0x45, 0x38, 0x61, 0x71, 0x70, - 0x3d, 0x82, 0x7d, 0x65, 0x98, 0x30, 0x80, 0x08, 0x45, 0x78, 0x58, 0x19, 0xc7, 0x98, 0x00, 0x06, - 0xe6, 0xf8, 0xb2, 0x0d, 0x85, 0x67, 0x4b, 0xfa, 0x4c, 0xda, 0xcf, 0x52, 0x98, 0xeb, 0x59, 0xe7, - 0x3a, 0xf5, 0xe9, 0x1d, 0x30, 0xf9, 0x78, 0xe3, 0xbf, 0x79, 0xf1, 0xa0, 0x8b, 0x1e, 0x50, 0xfd, - 0xc1, 0xa6, 0x3c, 0xd1, 0xcc, 0x27, 0x19, 0x7f, 0x84, 0xe1, 0x17, 0x1d, 0xf9, 0x92, 0x85, 0xb0, - 0xd1, 0x8a, 0xfd, 0xe0, 0xc1, 0x69, 0x36, 0xea, 0x7e, 0xf5, 0x69, 0xe2, 0x4b, 0x0e, 0xa6, 0xcf, - 0x8b, 0xcf, 0xbd, 0x78, 0xcc, 0xe9, 0x44, 0x31, 0xd3, 0x28, 0xcf, 0x33, 0xbe, 0x63, 0x46, 0xb6, - 0xd9, 0xa8, 0x4f, 0x7b, 0xe0, 0x05, 0xb6, 0x34, 0xb1, 0xcd, 0x4c, 0x6c, 0x1b, 0x27, 0x6c, 0x60, - 0xfb, 0x8b, 0x29, 0x0e, 0x85, 0x59, 0xfe, 0xba, 0x50, 0xf3, 0xee, 0xfd, 0xc0, 0xab, 0x39, 0x91, - 0x17, 0xcf, 0x4e, 0xdc, 0x1a, 0x9e, 0x93, 0x31, 0xfa, 0xe9, 0x19, 0xdf, 0x76, 0x3e, 0xe0, 0x2d, - 0xf4, 0x95, 0x49, 0x7c, 0x63, 0x82, 0xd7, 0xa4, 0xea, 0xfa, 0x94, 0x5d, 0x9d, 0xb2, 0x6b, 0x4b, - 0xf6, 0x1a, 0xf5, 0x4c, 0xd9, 0x22, 0x1c, 0x2b, 0x04, 0x9e, 0xff, 0xf0, 0xed, 0x6b, 0x23, 0x9c, - 0xff, 0x9e, 0x27, 0xfa, 0x77, 0xfc, 0xb2, 0x9c, 0xa4, 0xe9, 0xcd, 0x1f, 0x10, 0x39, 0x06, 0xfb, - 0xb9, 0x03, 0x26, 0x65, 0xae, 0x1f, 0x1d, 0x19, 0xea, 0x44, 0x3f, 0x76, 0xf5, 0x8a, 0x24, 0xec, - 0x25, 0x1b, 0x76, 0x2b, 0x88, 0xe4, 0x89, 0x86, 0xa5, 0x1d, 0x22, 0x57, 0x5e, 0x7e, 0x53, 0xcc, - 0x2d, 0x9d, 0x78, 0xd1, 0x4a, 0x39, 0xa6, 0x9a, 0x43, 0x37, 0x3b, 0x5a, 0xb7, 0xda, 0x90, 0x5e, - 0x23, 0xa9, 0x5b, 0x69, 0xc8, 0xa7, 0xa3, 0x74, 0xab, 0x4e, 0x85, 0xc1, 0x85, 0x62, 0x65, 0x0d, - 0xa8, 0x67, 0x20, 0x30, 0x79, 0xa4, 0x26, 0x91, 0xf8, 0x64, 0x12, 0x9f, 0x54, 0xb2, 0x93, 0x4b, - 0x6f, 0x92, 0x69, 0x4e, 0x36, 0x7d, 0x45, 0x68, 0xe6, 0x88, 0xf1, 0x9b, 0x92, 0xb5, 0x0c, 0x8e, - 0x0d, 0xda, 0xe8, 0x3d, 0x93, 0x59, 0x21, 0x03, 0xc1, 0xa2, 0x8a, 0x7e, 0xf3, 0x7b, 0x49, 0xa0, - 0x6f, 0x26, 0xfa, 0x48, 0xa2, 0xb0, 0xa2, 0x54, 0xdd, 0x87, 0x41, 0x83, 0x7f, 0x76, 0x0b, 0x3a, - 0x54, 0x7e, 0x7d, 0x2e, 0x3a, 0xc7, 0xbd, 0xa2, 0x0b, 0xc5, 0xce, 0xff, 0x75, 0x7f, 0x1e, 0x2d, - 0xc6, 0xd0, 0x2b, 0xd0, 0x30, 0x28, 0xd8, 0xa0, 0x7c, 0xe1, 0xdf, 0x0a, 0xcb, 0xae, 0x0d, 0xf7, - 0x2a, 0x43, 0x83, 0xec, 0x70, 0xdd, 0x06, 0x59, 0xbf, 0x3e, 0x48, 0xb1, 0x5b, 0x4f, 0xe4, 0xe8, - 0xf9, 0xe5, 0x2f, 0x7f, 0x4d, 0xfb, 0x58, 0xf1, 0xd5, 0xd1, 0xf3, 0xc9, 0x8c, 0x7f, 0x39, 0x7c, - 0x3e, 0x49, 0xd8, 0xc6, 0xc1, 0xf3, 0xd6, 0xc4, 0x47, 0xdb, 0xbf, 0xdf, 0x9f, 0x75, 0x41, 0x69, - 0xc6, 0x05, 0xaf, 0x67, 0x5d, 0xf0, 0x7a, 0xc6, 0x05, 0x33, 0xbf, 0xd2, 0xfe, 0x8c, 0x0b, 0x0e, - 0x9e, 0x7f, 0x4d, 0x7c, 0x7e, 0x6b, 0xfa, 0x47, 0x0f, 0x9f, 0xb7, 0x7f, 0xcd, 0xfa, 0xb7, 0xa3, - 0xe7, 0x5f, 0x27, 0xdb, 0x19, 0x98, 0x72, 0x14, 0x42, 0xd1, 0x6e, 0x6c, 0x4d, 0x0b, 0xa1, 0xf4, - 0xb4, 0x7d, 0xc3, 0xe8, 0xa0, 0xd3, 0x0a, 0xa1, 0x01, 0xa1, 0x01, 0xa1, 0x81, 0xe2, 0x88, 0x89, - 0xe2, 0xd0, 0x0f, 0x1e, 0x28, 0x82, 0x32, 0x18, 0x14, 0xf6, 0x8a, 0xa0, 0x8c, 0xad, 0x33, 0xee, - 0xbe, 0xf8, 0xeb, 0xe8, 0xe2, 0xd7, 0xee, 0xd8, 0xca, 0xc8, 0xd8, 0xdf, 0x94, 0xf6, 0xbf, 0xa8, - 0xf7, 0x98, 0x4a, 0xb6, 0xb0, 0x96, 0xe5, 0x36, 0xb1, 0xd8, 0xb9, 0xcd, 0xea, 0x45, 0xe9, 0xcc, - 0x8f, 0xd2, 0x69, 0x9e, 0xd3, 0x5b, 0xf7, 0xdc, 0xfb, 0xd0, 0xbb, 0x37, 0xc9, 0xe9, 0x3d, 0xd2, - 0xb8, 0xf6, 0xaa, 0x67, 0x72, 0x76, 0x76, 0x7a, 0x36, 0x62, 0xb7, 0x33, 0xc5, 0x32, 0x60, 0x28, - 0xd4, 0x36, 0xd0, 0x4d, 0xf1, 0x50, 0xc9, 0x37, 0xd2, 0x4d, 0xf4, 0xa4, 0xae, 0xa9, 0xd8, 0xc7, - 0x54, 0x60, 0x2a, 0x16, 0x7c, 0x45, 0x16, 0x45, 0x88, 0x7c, 0x88, 0x7c, 0x58, 0x14, 0x61, 0x51, - 0x64, 0x05, 0xf4, 0x6a, 0x16, 0x45, 0xd2, 0x1f, 0x64, 0x2c, 0x8a, 0xb0, 0x28, 0xc2, 0xa2, 0x88, - 0xf4, 0x7d, 0x59, 0x14, 0x99, 0xde, 0x18, 0x8b, 0x22, 0x84, 0x06, 0x84, 0x06, 0x84, 0x06, 0x89, - 0x24, 0x27, 0x16, 0x45, 0xc6, 0x06, 0x45, 0xc6, 0x17, 0x45, 0xf2, 0x57, 0x2b, 0x5e, 0xc1, 0x36, - 0x53, 0x2d, 0x5e, 0x60, 0x28, 0xda, 0x1e, 0x82, 0x06, 0xf5, 0xe3, 0xbb, 0xf7, 0xbb, 0xea, 0xdc, - 0xee, 0xee, 0xb4, 0x7b, 0xbb, 0x1b, 0x2f, 0x8e, 0xee, 0x3e, 0xf5, 0xda, 0xbf, 0xf1, 0xe2, 0x95, - 0x2b, 0x60, 0xa1, 0xd9, 0xe7, 0x36, 0xea, 0x50, 0x74, 0x1d, 0xb1, 0xe2, 0xde, 0xb5, 0xd1, 0x8b, - 0xd8, 0xb9, 0xc6, 0xce, 0xb5, 0xc9, 0xc1, 0xa4, 0xbe, 0x6f, 0x6d, 0xe4, 0x5a, 0x76, 0xad, 0xa5, - 0x49, 0xd5, 0xec, 0x5a, 0x63, 0xd7, 0x9a, 0xdd, 0x40, 0x92, 0x05, 0xda, 0x65, 0x84, 0x2d, 0xda, - 0x0b, 0xb4, 0x8f, 0x8d, 0x9a, 0x80, 0xfe, 0xd2, 0x69, 0x05, 0xfd, 0x05, 0xfd, 0x05, 0xfd, 0x45, - 0x71, 0xc4, 0x78, 0x41, 0xeb, 0xd1, 0x0b, 0xbb, 0x91, 0x86, 0x80, 0x08, 0x53, 0x32, 0x68, 0xe3, - 0x2c, 0x68, 0x3d, 0xb6, 0x1f, 0xea, 0x19, 0xb9, 0x18, 0x73, 0x85, 0xb9, 0xc2, 0x5c, 0x21, 0x17, - 0xe7, 0x43, 0x2e, 0x1e, 0x51, 0x68, 0x46, 0x7e, 0x26, 0x7f, 0x9e, 0xfc, 0x79, 0x62, 0x2e, 0x8b, - 0x73, 0x9f, 0xfc, 0x79, 0x71, 0x43, 0xd1, 0x1d, 0x7c, 0x5e, 0xa4, 0x6f, 0x2c, 0x06, 0x2d, 0x20, - 0xd2, 0x60, 0x30, 0x56, 0x45, 0xa4, 0x69, 0x9a, 0x31, 0xff, 0x8b, 0xc9, 0x61, 0x18, 0xf9, 0x14, - 0x89, 0x7c, 0x88, 0x7c, 0xf2, 0x12, 0xf9, 0xe8, 0x4e, 0xb9, 0x41, 0x03, 0x9a, 0x4b, 0x06, 0x33, - 0x07, 0x9e, 0xd6, 0x12, 0x82, 0xf0, 0x54, 0x14, 0x9b, 0x92, 0x92, 0x53, 0xd3, 0xc2, 0x14, 0x95, - 0x9e, 0xaa, 0xd6, 0xa6, 0xac, 0xb5, 0xa9, 0x6b, 0x67, 0x0a, 0x9b, 0x4d, 0x65, 0xc3, 0x29, 0x2d, - 0x36, 0xb5, 0x07, 0x0d, 0xf9, 0x4d, 0xa7, 0x29, 0x37, 0x7e, 0x37, 0x5f, 0x6c, 0xbc, 0x91, 0x1d, - 0x20, 0x66, 0xea, 0xa3, 0x35, 0x03, 0x60, 0xc3, 0x10, 0x58, 0x34, 0x08, 0xb6, 0x0c, 0x83, 0x75, - 0x03, 0x61, 0xdd, 0x50, 0xd8, 0x35, 0x18, 0x32, 0x86, 0x43, 0xc8, 0x80, 0xc8, 0xa9, 0xa3, 0xa9, - 0x4d, 0xff, 0x4d, 0xa1, 0x6d, 0x78, 0xb3, 0xba, 0xe0, 0xb3, 0xe8, 0x18, 0x92, 0x9d, 0x53, 0x9b, - 0x13, 0xdb, 0xf6, 0xac, 0xcc, 0xac, 0x4d, 0xe1, 0x0d, 0x56, 0xd3, 0xc4, 0x17, 0xd1, 0x0d, 0x57, - 0x13, 0x37, 0x48, 0x75, 0x97, 0xdf, 0x6e, 0xef, 0x66, 0xdb, 0xbf, 0xb6, 0x3e, 0x17, 0x9d, 0xfd, - 0x4a, 0xff, 0x2f, 0xaf, 0x3f, 0xef, 0x39, 0xfb, 0x15, 0x91, 0x2d, 0x49, 0x2f, 0xff, 0x54, 0x44, - 0x5b, 0x7c, 0x7e, 0x95, 0xa3, 0x31, 0x7f, 0xc8, 0x98, 0x9f, 0x3b, 0xe6, 0xd9, 0x74, 0x98, 0xfe, - 0xa6, 0xc3, 0xdd, 0xad, 0x62, 0xdb, 0x30, 0xbc, 0xe9, 0xda, 0x8a, 0x62, 0x65, 0xc2, 0x84, 0x74, - 0x4d, 0x42, 0xf6, 0x0d, 0xc1, 0x46, 0xb6, 0xbe, 0x97, 0xf9, 0xf7, 0x11, 0x30, 0x6d, 0x85, 0x47, - 0x37, 0xfa, 0xab, 0xee, 0x05, 0x0f, 0xf1, 0x37, 0x27, 0x74, 0x83, 0x07, 0x4f, 0x3e, 0x44, 0x9a, - 0xb8, 0x03, 0x91, 0x12, 0x91, 0x12, 0x91, 0xd2, 0x9a, 0x45, 0x4a, 0xc6, 0x79, 0x25, 0x69, 0xf0, - 0x8c, 0x35, 0x8e, 0x29, 0xfc, 0xd9, 0xa5, 0xe8, 0xff, 0xfe, 0xf2, 0x65, 0xe7, 0xcb, 0x97, 0x9d, - 0xee, 0xcf, 0xdb, 0xbf, 0xbc, 0x1f, 0x6e, 0x35, 0x16, 0x74, 0x9c, 0x99, 0x71, 0x4c, 0x4b, 0xd5, - 0x0d, 0x0d, 0x53, 0x76, 0x26, 0xda, 0xb3, 0x99, 0xc2, 0xd3, 0x5f, 0xcd, 0xee, 0xfd, 0xa0, 0x95, - 0xd2, 0x23, 0xd7, 0xfb, 0x06, 0x3d, 0x2f, 0x28, 0xb2, 0x8a, 0xab, 0x2b, 0x42, 0xa8, 0xc0, 0x6a, - 0x4a, 0xc6, 0x10, 0x80, 0xd5, 0x94, 0x65, 0xb8, 0x76, 0x81, 0xe4, 0xa6, 0x99, 0xbe, 0xfc, 0x48, - 0xa6, 0xe0, 0xd1, 0x8b, 0xe4, 0xa7, 0xa1, 0x1d, 0xc9, 0xa1, 0x5d, 0x15, 0x0f, 0xd0, 0x6c, 0x05, - 0x66, 0x58, 0x59, 0xac, 0x2c, 0x56, 0x76, 0x7d, 0xad, 0xec, 0x84, 0x39, 0xc9, 0xa1, 0xb1, 0xd5, - 0x2b, 0xef, 0x3c, 0x27, 0xe8, 0x55, 0x2f, 0xf7, 0x3c, 0xf3, 0xad, 0x49, 0x99, 0xd5, 0x7d, 0xcc, - 0x2a, 0x66, 0x35, 0x67, 0x66, 0x95, 0x54, 0x20, 0xf3, 0xe6, 0x10, 0xb8, 0x11, 0xb8, 0x53, 0x34, - 0x18, 0x72, 0x6a, 0xe2, 0x26, 0xa9, 0x40, 0xa4, 0x02, 0x91, 0x16, 0x31, 0xed, 0x06, 0xa4, 0x02, - 0x2d, 0xc1, 0x88, 0xa4, 0x33, 0xe6, 0x49, 0x05, 0x9a, 0x3f, 0xe6, 0x49, 0x05, 0x22, 0x15, 0x68, - 0xb9, 0x4c, 0xb2, 0x49, 0x2a, 0x90, 0xa2, 0x59, 0x23, 0x15, 0x88, 0x48, 0x89, 0x48, 0x69, 0xdd, - 0x23, 0x25, 0x52, 0x81, 0x48, 0x05, 0x4a, 0x49, 0x37, 0xcc, 0x73, 0x2a, 0x90, 0x46, 0x21, 0x78, - 0xb9, 0xce, 0x4f, 0x77, 0x13, 0x77, 0xaf, 0x90, 0xfc, 0x40, 0x42, 0xd9, 0x14, 0x02, 0x05, 0xce, - 0x81, 0xb1, 0xf9, 0xd6, 0x84, 0x26, 0x57, 0x9a, 0x93, 0xaa, 0x60, 0xb4, 0x36, 0x98, 0xac, 0xd4, - 0x7d, 0x17, 0xf6, 0x6e, 0xbc, 0xb8, 0xf7, 0x53, 0x81, 0x3a, 0x68, 0x29, 0xbd, 0x64, 0x0e, 0x08, - 0xd6, 0x0b, 0x73, 0x38, 0x20, 0x98, 0xd2, 0x46, 0x8b, 0xbe, 0x22, 0xf5, 0xa7, 0x29, 0x6b, 0x64, - 0x37, 0x9a, 0xa7, 0xac, 0x91, 0x64, 0xf4, 0x4d, 0xfd, 0x69, 0xea, 0x4f, 0x63, 0xae, 0x30, 0x57, - 0x79, 0x33, 0x57, 0xd4, 0x9f, 0xce, 0x4f, 0xdc, 0xc5, 0x51, 0x85, 0xb2, 0x5a, 0x11, 0x47, 0x15, - 0xaa, 0x0c, 0x3f, 0x1b, 0xc7, 0x14, 0x0e, 0xb4, 0x9b, 0x35, 0x3e, 0xa4, 0x70, 0xf4, 0x38, 0x40, - 0x0b, 0x47, 0x14, 0xc6, 0xee, 0x83, 0xe2, 0xf9, 0x84, 0x83, 0x2b, 0x38, 0x9c, 0x90, 0xc3, 0x09, - 0x5f, 0x0c, 0x23, 0xf5, 0x93, 0x09, 0xfb, 0x17, 0x72, 0x2c, 0x61, 0x9a, 0xf4, 0xcc, 0xb1, 0x84, - 0x1c, 0x4b, 0x88, 0x2c, 0x8c, 0x2c, 0x8c, 0xce, 0x82, 0xce, 0x82, 0xce, 0x82, 0xce, 0x92, 0x92, - 0x9a, 0xdb, 0x86, 0xbd, 0xef, 0x6e, 0xbd, 0x25, 0x60, 0x6a, 0x86, 0x4d, 0x61, 0x6f, 0xb0, 0x37, - 0xd8, 0x1b, 0x8d, 0xe9, 0x13, 0xb7, 0x5b, 0x13, 0xb0, 0x38, 0x06, 0xbb, 0xe1, 0x64, 0x76, 0xbf, - 0x09, 0xee, 0x7c, 0x6f, 0xf9, 0x41, 0xfc, 0x7a, 0x5f, 0xb0, 0xba, 0x83, 0x44, 0x71, 0x87, 0xeb, - 0x5e, 0xfa, 0xbf, 0x4c, 0xe6, 0xab, 0x60, 0x0a, 0xf1, 0x47, 0x3f, 0xb0, 0x90, 0x96, 0x2e, 0xba, - 0x7b, 0x60, 0xd0, 0xec, 0xbf, 0x7a, 0x7e, 0x47, 0xba, 0xdd, 0xf7, 0xa1, 0x5b, 0x8d, 0xfd, 0x46, - 0x70, 0xea, 0x3f, 0xf8, 0x1d, 0x19, 0x6d, 0x4f, 0x2e, 0x03, 0x5d, 0x30, 0x7f, 0xfa, 0xa3, 0xfb, - 0x23, 0x77, 0xaf, 0xaa, 0xb4, 0x7f, 0x5c, 0x3a, 0x3e, 0x3c, 0xda, 0x3f, 0x3e, 0xc8, 0xd1, 0x3b, - 0xcb, 0x48, 0xa2, 0x77, 0x65, 0x99, 0x89, 0xde, 0x82, 0x06, 0xf9, 0x9b, 0xf7, 0xc3, 0x11, 0xdb, - 0xa1, 0x20, 0xb9, 0x33, 0x41, 0x7c, 0x47, 0x42, 0x61, 0x6c, 0x27, 0xe1, 0xcb, 0x0d, 0x84, 0xfb, - 0xcf, 0xdb, 0x7f, 0xdf, 0xfe, 0xad, 0xb0, 0xec, 0x71, 0xb1, 0x91, 0xee, 0x7d, 0x9f, 0x49, 0x34, - 0x9f, 0xda, 0x98, 0x4c, 0xa2, 0x39, 0x6b, 0xeb, 0x93, 0xcb, 0x6d, 0xfd, 0xd5, 0xad, 0xfe, 0x0f, - 0x9c, 0xea, 0xcc, 0xa9, 0xce, 0x69, 0xc7, 0xbe, 0x9c, 0xea, 0xac, 0xf4, 0xc6, 0x39, 0xd5, 0xf9, - 0xa5, 0x21, 0x64, 0xd3, 0x03, 0xa6, 0x62, 0x05, 0x4d, 0x05, 0xab, 0x5b, 0xa8, 0xcd, 0x76, 0xa6, - 0x91, 0xf8, 0x74, 0x92, 0x9d, 0x56, 0x66, 0xe1, 0x17, 0xab, 0x5b, 0xac, 0x6e, 0x61, 0x6f, 0xb0, - 0x37, 0xeb, 0x63, 0x6f, 0x58, 0xdd, 0x9a, 0xde, 0x2f, 0xac, 0x6e, 0x29, 0xca, 0x7f, 0xac, 0x6e, - 0xb1, 0xba, 0xc5, 0xea, 0x96, 0xa9, 0x43, 0x90, 0x6f, 0x85, 0xd5, 0xad, 0xb9, 0x90, 0xcc, 0xea, - 0x56, 0xca, 0xe3, 0x92, 0xd5, 0x2d, 0x56, 0xb7, 0x16, 0x81, 0x79, 0x26, 0x57, 0xb7, 0xd8, 0x33, - 0x2a, 0x3b, 0x31, 0xd8, 0x33, 0x9a, 0x6c, 0xe0, 0xd9, 0xd8, 0x2d, 0x7a, 0xeb, 0x3e, 0xac, 0xf7, - 0x56, 0xd1, 0xc1, 0xce, 0x4c, 0xdd, 0x7d, 0xa2, 0x1b, 0x0a, 0x8f, 0x9a, 0xf4, 0x11, 0x45, 0x1e, - 0x6d, 0xce, 0x70, 0x49, 0x3a, 0x3c, 0xa6, 0x77, 0xca, 0xe4, 0x23, 0x4f, 0x79, 0xdc, 0x42, 0xf7, - 0x1b, 0x39, 0x9d, 0x6f, 0xe4, 0xb7, 0x9f, 0x78, 0xf6, 0x76, 0xd9, 0x01, 0xda, 0x4d, 0xb9, 0x66, - 0x46, 0x47, 0xce, 0x5f, 0x3a, 0x5b, 0xa8, 0xc5, 0x25, 0xd1, 0xda, 0x14, 0xb4, 0xb4, 0xa4, 0x5a, - 0x99, 0xb2, 0x16, 0xa6, 0xac, 0x75, 0xa9, 0x69, 0x59, 0x6a, 0x83, 0x77, 0xd1, 0x52, 0xd2, 0xe4, - 0xeb, 0x4b, 0xbe, 0x41, 0x7a, 0xf2, 0x52, 0x76, 0x4a, 0xb3, 0x53, 0xba, 0xff, 0x41, 0xc5, 0xcd, - 0xa7, 0x7a, 0x9b, 0x4e, 0xd9, 0x27, 0x6d, 0x36, 0xf4, 0x8c, 0x87, 0xa0, 0xd9, 0x50, 0xb4, 0x03, - 0xd0, 0xca, 0xfb, 0xa4, 0x49, 0x38, 0xb3, 0x33, 0x9c, 0x4d, 0x87, 0xb5, 0xd8, 0xf0, 0x16, 0x1b, - 0xe6, 0x32, 0xc3, 0x3d, 0x9d, 0x40, 0xdc, 0x3c, 0xe1, 0x4c, 0x5b, 0xb1, 0xd3, 0x5c, 0xc6, 0x5e, - 0x56, 0xc4, 0x9d, 0x76, 0xc4, 0x38, 0x89, 0xcc, 0x93, 0xbf, 0x52, 0xca, 0xc7, 0x4d, 0x10, 0xe5, - 0x25, 0xe0, 0x1d, 0x25, 0x33, 0xa8, 0x63, 0xfe, 0x14, 0xcd, 0x1e, 0xde, 0x7a, 0x1d, 0xbc, 0xb5, - 0xb2, 0x99, 0x32, 0xc8, 0x87, 0xd5, 0xc9, 0x83, 0x35, 0xca, 0x7f, 0x95, 0x99, 0x98, 0x6a, 0x79, - 0xae, 0x5a, 0xf9, 0xad, 0xda, 0x20, 0xbd, 0xcf, 0xd4, 0x04, 0xa4, 0x01, 0x69, 0x40, 0x1a, 0x90, - 0x06, 0xa4, 0x33, 0x09, 0xd2, 0x0a, 0x4b, 0x7f, 0x82, 0xee, 0xba, 0xbf, 0x32, 0xa6, 0xe3, 0xb3, - 0xbb, 0xd7, 0xa2, 0x80, 0xe1, 0xb8, 0xd3, 0x72, 0xdc, 0x83, 0x61, 0x67, 0xb8, 0x9b, 0xaa, 0xd3, - 0x04, 0xf5, 0x02, 0x71, 0xe1, 0xab, 0xb2, 0xa3, 0xaa, 0x9b, 0x61, 0x18, 0x99, 0xef, 0x74, 0xe8, - 0x37, 0x64, 0xb6, 0xcf, 0xa1, 0xc8, 0x3e, 0x87, 0x4d, 0xf6, 0x39, 0xe4, 0x64, 0x9f, 0x83, 0xee, - 0xa4, 0x1b, 0x34, 0xa0, 0x59, 0xbf, 0x76, 0xe6, 0xc0, 0xd3, 0xaa, 0x67, 0x2b, 0x3c, 0x15, 0xc5, - 0xa6, 0xa4, 0xe4, 0xd4, 0xb4, 0x30, 0x45, 0xa5, 0xa7, 0xaa, 0xb5, 0x29, 0x6b, 0x6d, 0xea, 0xda, - 0x99, 0xc2, 0x66, 0x53, 0xd9, 0x70, 0x4a, 0x8b, 0x4d, 0xed, 0x41, 0x43, 0xbd, 0x70, 0x2d, 0xf4, - 0xa2, 0x56, 0x3d, 0x96, 0x3f, 0xf9, 0x7d, 0xbc, 0x79, 0x8e, 0x7d, 0xcf, 0x90, 0x61, 0xb0, 0x65, - 0x20, 0xac, 0x1b, 0x0a, 0xeb, 0x06, 0xc3, 0xae, 0xe1, 0x90, 0x31, 0x20, 0x42, 0x86, 0xc4, 0x5c, - 0x63, 0x53, 0x33, 0x01, 0xa6, 0xbb, 0x25, 0x67, 0xc2, 0x40, 0x49, 0xb0, 0x4d, 0xb3, 0xf3, 0xea, - 0xe4, 0xdf, 0x33, 0x67, 0xa9, 0xab, 0x69, 0x8d, 0x1d, 0xf9, 0x6e, 0xf8, 0xe3, 0x6e, 0x2f, 0xf4, - 0xd3, 0xaa, 0xb0, 0x25, 0xf7, 0x2e, 0x9e, 0x8d, 0xce, 0xa0, 0xd6, 0x29, 0xb4, 0x33, 0x5f, 0x2a, - 0xca, 0x1a, 0x86, 0xef, 0x83, 0xe1, 0x60, 0x38, 0x18, 0x0e, 0x86, 0x83, 0xe1, 0x60, 0x38, 0x18, - 0x0e, 0x86, 0x83, 0xe1, 0xab, 0x89, 0xe1, 0x1a, 0x5b, 0x81, 0x05, 0x29, 0x3c, 0x55, 0x05, 0x5e, - 0xe8, 0xa5, 0x2d, 0xef, 0x65, 0x15, 0x8c, 0x82, 0x96, 0xd9, 0xfb, 0x25, 0xbb, 0xff, 0x77, 0x3a, - 0xf8, 0x12, 0x77, 0x37, 0xfd, 0x3b, 0xdf, 0x95, 0x7b, 0x77, 0xce, 0x70, 0x01, 0xb6, 0x6a, 0x23, - 0xa8, 0xf9, 0x42, 0xeb, 0x92, 0x23, 0x6d, 0xb1, 0x34, 0xc9, 0xd2, 0xe4, 0xd2, 0xb8, 0x88, 0xa5, - 0x49, 0x96, 0x26, 0xd1, 0x44, 0xd0, 0x44, 0xb2, 0xa3, 0x89, 0x54, 0xdd, 0x7a, 0xbd, 0x07, 0x32, - 0xf2, 0x8a, 0xc8, 0x68, 0xe3, 0xe8, 0x21, 0xe8, 0x21, 0xe8, 0x21, 0x6b, 0xa6, 0x87, 0xe8, 0x1f, - 0xe6, 0xb0, 0xd0, 0xfb, 0x1f, 0x09, 0xb6, 0x39, 0xb2, 0xf9, 0x6d, 0xf2, 0x7f, 0xbd, 0x97, 0x7f, - 0x32, 0x25, 0xcc, 0x9b, 0xf9, 0x4f, 0x83, 0x7f, 0x51, 0x3f, 0x44, 0xc2, 0xa2, 0xb4, 0x22, 0x00, - 0x13, 0x7e, 0x10, 0xc5, 0x1d, 0xa3, 0x1e, 0x36, 0xe2, 0x46, 0xb5, 0x51, 0x77, 0xbc, 0xff, 0x91, - 0x77, 0x1b, 0xd3, 0x6e, 0x82, 0xfb, 0xc0, 0x7d, 0xe0, 0x3e, 0xd6, 0xcc, 0x7d, 0xf8, 0x35, 0x2f, - 0x88, 0xfd, 0xf8, 0xc9, 0x92, 0x0b, 0x11, 0x2c, 0xd5, 0x5b, 0x38, 0xef, 0x7d, 0xd5, 0xb7, 0x6e, - 0x64, 0x61, 0x3e, 0xf4, 0x3b, 0xe4, 0xfc, 0xd3, 0xcd, 0x6d, 0xf9, 0xe2, 0xe2, 0xee, 0xea, 0xfa, - 0xf2, 0xf6, 0xf2, 0xdd, 0xe5, 0xc5, 0xdd, 0xed, 0x1f, 0x57, 0x67, 0x05, 0x1b, 0x25, 0x8d, 0x23, - 0xb1, 0x5a, 0xb1, 0xa3, 0x7f, 0x7e, 0x8a, 0xb7, 0x38, 0xde, 0x3d, 0x1f, 0x3e, 0x5e, 0x15, 0xc4, - 0x6f, 0xf1, 0xfc, 0x2a, 0x6f, 0xfd, 0x70, 0x71, 0xf9, 0xae, 0x7c, 0x71, 0x57, 0xfe, 0xf0, 0xe1, - 0xfa, 0xec, 0x43, 0xf9, 0xf6, 0x8c, 0x2e, 0xd9, 0x2c, 0x9c, 0xdf, 0x9c, 0xdf, 0xd0, 0x0f, 0x9b, - 0x85, 0xd3, 0xf3, 0xeb, 0xb3, 0x77, 0xb7, 0x17, 0x7f, 0xdc, 0xbd, 0xbb, 0xfc, 0xf4, 0xe9, 0xec, - 0xdd, 0xed, 0xd9, 0x29, 0xbd, 0xb2, 0x59, 0xb8, 0x3a, 0xff, 0x48, 0x37, 0x6c, 0x16, 0x2e, 0x6f, - 0xae, 0xde, 0xbf, 0xa6, 0x23, 0x36, 0x0b, 0x37, 0xb7, 0xe5, 0xdb, 0xf3, 0x77, 0xf4, 0x44, 0x77, - 0x48, 0xd0, 0x0f, 0x9b, 0x85, 0xb7, 0x1f, 0x6c, 0x90, 0x85, 0x68, 0x8b, 0x95, 0x95, 0x3b, 0x18, - 0x82, 0x64, 0x10, 0xb3, 0xfc, 0x82, 0xe1, 0xb2, 0x77, 0x8e, 0xd3, 0xb2, 0x1f, 0xdd, 0xb8, 0xfa, - 0xcd, 0xf1, 0x83, 0xd8, 0x0b, 0xef, 0xdd, 0xaa, 0x60, 0x82, 0xf6, 0xcb, 0x86, 0x59, 0x96, 0x4c, - 0x51, 0x42, 0x62, 0x59, 0x92, 0x65, 0xc9, 0x39, 0x0d, 0x09, 0x65, 0x1e, 0x4c, 0x0c, 0x60, 0x91, - 0x0c, 0x04, 0xe1, 0x29, 0x2f, 0x3e, 0xf5, 0x6d, 0x98, 0x00, 0x8b, 0xa6, 0xc0, 0x96, 0x49, 0xb0, - 0x6e, 0x1a, 0xac, 0x9b, 0x08, 0xbb, 0xa6, 0x42, 0x98, 0xf6, 0x84, 0xc6, 0xac, 0x94, 0x09, 0x19, - 0x34, 0x28, 0x47, 0x0e, 0x33, 0xe7, 0x82, 0x14, 0x43, 0xcc, 0x32, 0x30, 0xd2, 0x87, 0xd6, 0x49, - 0x1b, 0x1a, 0x9b, 0x06, 0x67, 0x9a, 0xe1, 0xf1, 0xef, 0x0b, 0xf2, 0x01, 0xa4, 0x2d, 0xf3, 0x93, - 0x9a, 0x19, 0x4a, 0xcd, 0x1c, 0xcd, 0x32, 0x4b, 0xfe, 0x7d, 0xd6, 0x43, 0x64, 0x61, 0xdd, 0x41, - 0x7e, 0xe9, 0x6b, 0x62, 0xb4, 0xcb, 0x67, 0x50, 0x4c, 0xd0, 0xcb, 0x91, 0x85, 0xb6, 0xaf, 0x06, - 0x51, 0x6e, 0x7b, 0x58, 0x9c, 0x0c, 0x0c, 0x64, 0xf4, 0xf2, 0x17, 0xbd, 0xbf, 0xcb, 0xe5, 0x49, - 0xc8, 0x0f, 0x1c, 0xc9, 0xa3, 0x4d, 0xa3, 0xd6, 0xd7, 0x14, 0xfc, 0xd1, 0xd8, 0x5d, 0x70, 0x49, - 0xb8, 0x24, 0x5c, 0x12, 0x2e, 0x09, 0x97, 0x94, 0xd0, 0x25, 0x7d, 0x1e, 0xba, 0xa4, 0xff, 0x53, - 0x6d, 0x85, 0xa1, 0x17, 0xc4, 0x5b, 0xdb, 0xbb, 0x3b, 0x3b, 0xbb, 0x83, 0x4f, 0x54, 0x7a, 0x97, - 0x8c, 0xda, 0xd9, 0x68, 0xca, 0xef, 0x06, 0x2d, 0xd7, 0xbc, 0x1f, 0x99, 0xf5, 0x6e, 0x99, 0x8a, - 0xfe, 0x84, 0x35, 0xf7, 0xa1, 0xdf, 0x5d, 0xa6, 0xf6, 0xfe, 0x42, 0x68, 0x16, 0xd1, 0xe2, 0xe5, - 0x5e, 0x9f, 0x44, 0x5a, 0xa8, 0x4c, 0xe9, 0x94, 0x49, 0x8e, 0x11, 0x28, 0xa1, 0x62, 0x5d, 0xac, - 0xdb, 0x47, 0xac, 0x43, 0xac, 0x43, 0xac, 0x43, 0xac, 0x23, 0x32, 0x22, 0x32, 0x22, 0x32, 0x22, - 0x32, 0x42, 0xac, 0x43, 0xac, 0x43, 0xac, 0xc3, 0x25, 0xe1, 0x92, 0x70, 0x49, 0xb8, 0x24, 0xc4, - 0x3a, 0xc4, 0xba, 0x3c, 0x8b, 0x75, 0x02, 0x85, 0xd4, 0x04, 0xb5, 0x3a, 0x12, 0xa2, 0x2d, 0xbd, - 0xe7, 0x82, 0x88, 0x0a, 0xaa, 0x55, 0x8b, 0xed, 0xdd, 0xe0, 0x4b, 0xdd, 0x7d, 0x6c, 0x7f, 0xa9, - 0xf3, 0xc1, 0x77, 0xca, 0x6d, 0xb6, 0x76, 0xe0, 0xf9, 0x0f, 0xdf, 0xbe, 0x36, 0x42, 0x27, 0xf2, - 0x62, 0xe9, 0x84, 0xed, 0xb1, 0xb6, 0xc9, 0xd9, 0x4e, 0xc2, 0xbb, 0xe4, 0x6c, 0x93, 0xb3, 0x3d, - 0xf3, 0x91, 0xc8, 0xd9, 0xce, 0x52, 0x28, 0xcc, 0x32, 0x50, 0x3a, 0xc1, 0x2e, 0xcb, 0x40, 0x59, - 0x5e, 0x06, 0xea, 0x7a, 0xfa, 0xc8, 0x8b, 0x9d, 0x46, 0xd3, 0xac, 0x04, 0x6c, 0x42, 0xa8, 0x18, - 0xbd, 0x15, 0x1a, 0x5c, 0x1a, 0x1a, 0x9c, 0xb0, 0x21, 0x42, 0x85, 0xcb, 0xa6, 0xa1, 0x42, 0x87, - 0x9b, 0x61, 0x66, 0x9c, 0xd0, 0x8b, 0xe2, 0xd0, 0xaf, 0xc6, 0x5e, 0x4d, 0xfa, 0xa0, 0x80, 0x09, - 0xd6, 0x29, 0x59, 0x68, 0x7b, 0x70, 0x70, 0x80, 0x85, 0xb6, 0x4f, 0xbd, 0x7b, 0xb7, 0x7b, 0x44, - 0x4b, 0xa1, 0xfc, 0xe9, 0x8f, 0x75, 0x58, 0x6a, 0x12, 0x0d, 0x98, 0x67, 0x0e, 0x42, 0xc1, 0xd0, - 0x19, 0x37, 0x87, 0x9b, 0xc3, 0xcd, 0xe1, 0xe6, 0x5e, 0x8c, 0xf8, 0x9c, 0x2f, 0x37, 0x4d, 0x2d, - 0x00, 0xbb, 0xb3, 0xb3, 0xdb, 0xd1, 0x95, 0xbd, 0x5a, 0xdb, 0x6e, 0x46, 0xbb, 0xa3, 0x56, 0x74, - 0xfc, 0x6f, 0xbb, 0x99, 0xce, 0x8c, 0x60, 0xed, 0x28, 0x9d, 0x35, 0x85, 0xb1, 0x11, 0x41, 0xae, - 0x77, 0x42, 0xcb, 0x41, 0xae, 0x37, 0x22, 0x1f, 0x22, 0x1f, 0x22, 0x1f, 0x22, 0x1f, 0xd1, 0x0f, - 0xd1, 0x0f, 0xd1, 0x0f, 0x22, 0x1f, 0x22, 0x1f, 0x22, 0x1f, 0x22, 0x1f, 0x6e, 0x0e, 0x37, 0x87, - 0x9b, 0x43, 0xe4, 0x43, 0xe4, 0x43, 0xe4, 0xcb, 0xaa, 0xc8, 0x47, 0x8e, 0xb8, 0xad, 0x57, 0x9e, - 0xb5, 0x57, 0x9d, 0xa1, 0x34, 0xf1, 0x4f, 0xbd, 0xaf, 0x75, 0xe3, 0xc5, 0xf9, 0x4d, 0x14, 0xef, - 0x62, 0x87, 0x8d, 0x34, 0xf1, 0x91, 0x96, 0x49, 0x12, 0x4f, 0x11, 0x62, 0x49, 0x12, 0x27, 0x49, - 0x7c, 0x4e, 0x43, 0x24, 0x89, 0x67, 0x34, 0xae, 0x65, 0xfd, 0x68, 0x09, 0x71, 0x2b, 0xeb, 0x47, - 0x06, 0x0d, 0xb2, 0x7e, 0x84, 0xb0, 0x86, 0xb0, 0x86, 0xb0, 0xb6, 0x3a, 0xc2, 0x1a, 0xeb, 0x47, - 0x2a, 0xfe, 0x64, 0xed, 0xd6, 0x8f, 0x04, 0x83, 0xe5, 0x99, 0x43, 0x50, 0x2c, 0x6c, 0xc6, 0xc5, - 0xe1, 0xe2, 0x70, 0x71, 0xb8, 0xb8, 0x17, 0x23, 0x7e, 0x1d, 0xd6, 0x8e, 0x86, 0x36, 0x74, 0xf4, - 0xe7, 0x5e, 0x2a, 0x30, 0xcb, 0x47, 0xc9, 0x27, 0xe4, 0xea, 0x2e, 0x1f, 0x4d, 0x0c, 0x0b, 0x32, - 0xc4, 0x17, 0x9a, 0x0e, 0x32, 0xc4, 0x51, 0xf8, 0x50, 0xf8, 0x50, 0xf8, 0x50, 0xf8, 0x08, 0x7f, - 0x08, 0x7f, 0x08, 0x7f, 0x50, 0xf8, 0x50, 0xf8, 0x50, 0xf8, 0x50, 0xf8, 0x70, 0x71, 0xb8, 0x38, - 0x5c, 0x1c, 0x0a, 0x1f, 0x0a, 0x1f, 0x0a, 0x5f, 0x26, 0x15, 0x3e, 0xd2, 0xc3, 0x6d, 0xbd, 0xf0, - 0x6c, 0xbd, 0xe8, 0x0c, 0x25, 0x87, 0x77, 0xd1, 0x26, 0xd7, 0xa9, 0xe1, 0xb1, 0xfb, 0x60, 0x23, - 0x2f, 0xbc, 0xdf, 0x2c, 0x49, 0xe1, 0x29, 0xb2, 0x2b, 0x49, 0xe1, 0x24, 0x85, 0xcf, 0x69, 0x88, - 0xa4, 0xf0, 0x8c, 0x86, 0xb3, 0x2c, 0x19, 0x2d, 0x21, 0x5c, 0x65, 0xc9, 0xc8, 0xa0, 0x41, 0x96, - 0x8c, 0xd0, 0xd3, 0xd0, 0xd3, 0xd0, 0xd3, 0x56, 0x47, 0x4f, 0x63, 0xc9, 0x48, 0xc5, 0x9f, 0xac, - 0xdd, 0x92, 0x91, 0x54, 0x98, 0x3c, 0x73, 0xfc, 0xc9, 0x04, 0xcc, 0x38, 0x37, 0x9c, 0x1b, 0xce, - 0x0d, 0xe7, 0xf6, 0x62, 0xc4, 0xaf, 0xc3, 0x62, 0x51, 0xcf, 0x80, 0x0e, 0x7e, 0x60, 0x7d, 0x28, - 0xf9, 0x1c, 0x5c, 0xdd, 0xf5, 0xa1, 0xfe, 0x60, 0x20, 0xfd, 0x3b, 0xa1, 0xa9, 0x20, 0xfd, 0x1b, - 0x2d, 0x0f, 0x2d, 0x0f, 0x2d, 0x0f, 0x2d, 0x8f, 0x70, 0x87, 0x70, 0x87, 0x70, 0x07, 0x2d, 0x0f, - 0x2d, 0x0f, 0x2d, 0x0f, 0x2d, 0x0f, 0xe7, 0x86, 0x73, 0xc3, 0xb9, 0xa1, 0xe5, 0xa1, 0xe5, 0xa1, - 0xe5, 0x2d, 0x59, 0xcb, 0x23, 0xd1, 0xdb, 0xd6, 0xdb, 0xce, 0xd0, 0x5b, 0xce, 0x50, 0x96, 0xf7, - 0xad, 0xfb, 0x90, 0xd3, 0x14, 0x6f, 0x19, 0x8d, 0x58, 0x54, 0x1b, 0x16, 0x4f, 0xe9, 0xde, 0x27, - 0xa5, 0x3b, 0x0b, 0xd4, 0x49, 0x4a, 0xb7, 0x4a, 0xcc, 0x2d, 0x96, 0xd2, 0xed, 0xd6, 0xeb, 0x3d, - 0x1b, 0x6c, 0x21, 0xaf, 0x7b, 0xa4, 0x71, 0xd9, 0x05, 0xa1, 0x3d, 0x92, 0xbb, 0xb3, 0x1c, 0xa2, - 0xb2, 0x20, 0x94, 0x27, 0xe2, 0x17, 0x0f, 0x39, 0x2d, 0x86, 0x9a, 0x36, 0x42, 0xcc, 0xf9, 0xa1, - 0x65, 0xef, 0xe5, 0x9f, 0x4c, 0x21, 0xd4, 0x99, 0xff, 0x34, 0xf8, 0x17, 0xb9, 0xb0, 0x33, 0x1b, - 0x39, 0x03, 0x7e, 0x10, 0xc5, 0x1d, 0xa3, 0x1e, 0x36, 0xe2, 0x46, 0xb5, 0x51, 0x77, 0xbc, 0xff, - 0x91, 0x77, 0x1b, 0xd3, 0x6e, 0x82, 0xfb, 0xc0, 0x7d, 0xe0, 0x3e, 0xd6, 0xcc, 0x7d, 0xf8, 0x35, - 0x2f, 0x88, 0xfd, 0xf8, 0xc9, 0x92, 0x0b, 0x39, 0x10, 0x6c, 0xf3, 0xbc, 0xf7, 0x55, 0xdf, 0xba, - 0x91, 0x67, 0x6f, 0x5d, 0xe8, 0xfc, 0xd3, 0xcd, 0x6d, 0xf9, 0xe2, 0xe2, 0xee, 0xea, 0xfa, 0xf2, - 0xf6, 0xf2, 0xdd, 0xe5, 0xc5, 0xdd, 0xed, 0x1f, 0x57, 0x67, 0xd2, 0x73, 0xe3, 0x5f, 0x6e, 0xbd, - 0xe5, 0x45, 0x85, 0x93, 0xcd, 0xcf, 0xe2, 0x22, 0xae, 0xa5, 0x85, 0x90, 0x41, 0xf7, 0x7c, 0xf8, - 0x78, 0x65, 0x61, 0xbd, 0xe0, 0x55, 0xde, 0xfa, 0xe1, 0xe2, 0xf2, 0x5d, 0xf9, 0xe2, 0xae, 0xfc, - 0xe1, 0xc3, 0xf5, 0xd9, 0x87, 0xf2, 0xed, 0x19, 0x5d, 0xb2, 0x59, 0x38, 0xbf, 0x39, 0xbf, 0xa1, - 0x1f, 0x36, 0x0b, 0xa7, 0xe7, 0xd7, 0x67, 0xef, 0x6e, 0x2f, 0xfe, 0xb8, 0x7b, 0x77, 0xf9, 0xe9, - 0xd3, 0xd9, 0xbb, 0xdb, 0xb3, 0x53, 0x7a, 0x65, 0xb3, 0x70, 0x75, 0xfe, 0x91, 0x6e, 0xd8, 0x2c, - 0x5c, 0xde, 0x5c, 0xbd, 0x7f, 0x4d, 0x47, 0x6c, 0x16, 0x6e, 0x6e, 0xcb, 0xb7, 0xe7, 0xef, 0xe8, - 0x89, 0xee, 0x90, 0xa0, 0x1f, 0x36, 0x0b, 0x6f, 0x3f, 0x5c, 0x65, 0x3d, 0x13, 0xa1, 0x92, 0xb5, - 0xf8, 0x82, 0xa5, 0xd1, 0xb1, 0xf6, 0x96, 0xba, 0x34, 0x2a, 0xb0, 0xe4, 0x6d, 0xb0, 0x02, 0xb9, - 0x91, 0xe2, 0xfb, 0x93, 0x7a, 0x6f, 0x4b, 0x7d, 0x5f, 0x05, 0xa3, 0x35, 0x5b, 0xc3, 0x45, 0x6b, - 0xbd, 0x61, 0xa2, 0xfe, 0x92, 0x35, 0x5e, 0xb0, 0x69, 0x09, 0x22, 0x99, 0x92, 0x43, 0x86, 0x4b, - 0xd0, 0xc6, 0xb2, 0xa1, 0x84, 0x4c, 0x28, 0x28, 0x0b, 0x4a, 0xc9, 0x80, 0xe2, 0xb2, 0x9f, 0xb8, - 0xcc, 0x27, 0x2b, 0xeb, 0xa5, 0x6b, 0x16, 0x4d, 0x97, 0x8c, 0x0b, 0x3d, 0x8b, 0x22, 0x94, 0x0a, - 0xd2, 0x69, 0x4d, 0x26, 0x13, 0x64, 0x8f, 0xe2, 0x7e, 0x69, 0x4e, 0x53, 0x6b, 0xd3, 0xd5, 0xda, - 0xb4, 0xb5, 0x33, 0x7d, 0xb3, 0x41, 0xa9, 0x62, 0xea, 0xfb, 0x48, 0x92, 0x56, 0xe8, 0x07, 0x12, - 0xd5, 0xf8, 0x06, 0x6e, 0xf2, 0x0d, 0xdc, 0x99, 0x75, 0xee, 0xd4, 0xde, 0xdb, 0x9e, 0x0e, 0xf6, - 0x19, 0xf9, 0x1e, 0x09, 0x9f, 0x63, 0xe8, 0x6b, 0x40, 0x3e, 0x90, 0x2f, 0x7d, 0x8b, 0x64, 0xec, - 0x1b, 0x04, 0x13, 0x79, 0x24, 0x12, 0x77, 0x46, 0x13, 0x75, 0x8c, 0x6b, 0xf8, 0xa7, 0x63, 0xb8, - 0xcc, 0x12, 0xa8, 0x45, 0x12, 0xa7, 0xc5, 0xa2, 0xd5, 0x7d, 0x4c, 0x17, 0xa6, 0x8b, 0x68, 0x95, - 0x68, 0x95, 0x68, 0x95, 0x68, 0x95, 0x68, 0x95, 0x68, 0x75, 0x39, 0xd1, 0xaa, 0xc1, 0x52, 0x96, - 0x06, 0xf3, 0x6d, 0x58, 0x7c, 0x19, 0x6d, 0x9b, 0xa4, 0xe9, 0x5d, 0x0a, 0x17, 0x7e, 0x14, 0x97, - 0xe3, 0x58, 0xcf, 0x4b, 0x16, 0x3e, 0xfa, 0xc1, 0x59, 0xbd, 0xdb, 0xb3, 0x85, 0x93, 0xcd, 0xa0, - 0x55, 0xaf, 0x6b, 0xb0, 0xed, 0x47, 0xf7, 0x87, 0x79, 0x23, 0x97, 0x61, 0xcd, 0x0b, 0xbd, 0xda, - 0xdb, 0x27, 0x73, 0x48, 0x6e, 0x45, 0x5e, 0xa8, 0xcb, 0xc8, 0x02, 0xde, 0x66, 0xd4, 0xc3, 0x34, - 0xba, 0x4f, 0xe5, 0x7c, 0x35, 0xd9, 0xf8, 0x24, 0xea, 0x59, 0xc6, 0xbc, 0x49, 0xa7, 0xa7, 0x56, - 0x62, 0x06, 0x19, 0x9a, 0xb1, 0xf4, 0xcd, 0x57, 0x41, 0x2b, 0x88, 0xd4, 0x59, 0xd1, 0x55, 0x7b, - 0xc1, 0xc9, 0x5f, 0x53, 0xb2, 0x4f, 0x26, 0x7c, 0x91, 0xba, 0x2f, 0x30, 0xad, 0x17, 0x97, 0xac, - 0x13, 0x17, 0x77, 0xc9, 0xfc, 0x4f, 0x2c, 0xe8, 0x2c, 0x05, 0x3f, 0xa1, 0xe6, 0x17, 0xb4, 0xfc, - 0x80, 0x96, 0xdd, 0x1f, 0xb3, 0xf3, 0xed, 0x4b, 0x8c, 0xfa, 0x43, 0x71, 0xd0, 0x58, 0x1d, 0x2c, - 0x09, 0x26, 0xb4, 0xd2, 0x04, 0x9e, 0x3f, 0xe2, 0x66, 0x8f, 0xa3, 0xe9, 0xff, 0x32, 0xa3, 0x27, - 0x93, 0xf6, 0xa0, 0x60, 0xcf, 0x4d, 0x7f, 0xae, 0xc9, 0x6f, 0x3d, 0xfe, 0x9b, 0x17, 0xdf, 0x7f, - 0xd1, 0xf7, 0xd6, 0xfd, 0xbe, 0x53, 0x5e, 0xe2, 0xbc, 0x97, 0x36, 0xfe, 0x2c, 0xc3, 0x6f, 0x3c, - 0xf2, 0x6d, 0x0b, 0x51, 0xdc, 0x9c, 0xf8, 0x8a, 0x23, 0x51, 0x4b, 0xf3, 0xc5, 0x2d, 0x67, 0xa8, - 0x74, 0x33, 0xc3, 0xfd, 0x79, 0xe1, 0xfb, 0x68, 0x38, 0x3e, 0x79, 0xa7, 0x24, 0xbc, 0x93, 0x38, - 0x5a, 0x4e, 0xcc, 0x28, 0x2f, 0xa3, 0xd9, 0xf6, 0xf7, 0x52, 0x7c, 0xf7, 0xb3, 0x34, 0xa1, 0xc2, - 0x43, 0xbd, 0xf1, 0xd5, 0xad, 0xcf, 0x7e, 0x98, 0x7e, 0x77, 0xf4, 0x3e, 0x37, 0xe3, 0x0b, 0xce, - 0x97, 0x49, 0x17, 0xea, 0x2e, 0x49, 0xf4, 0x94, 0xc5, 0x2f, 0x46, 0x15, 0x48, 0x95, 0x65, 0x0d, - 0x65, 0xa8, 0x4c, 0xf4, 0xe2, 0xf4, 0x8c, 0xd0, 0x22, 0x91, 0x2f, 0x69, 0xb6, 0x97, 0x5a, 0x56, - 0x57, 0x42, 0x3d, 0x3c, 0xb1, 0xd0, 0xa6, 0x22, 0xa4, 0x25, 0x1f, 0x00, 0xba, 0x91, 0x89, 0xb6, - 0xce, 0xa5, 0x1d, 0x6d, 0x28, 0x0d, 0x10, 0x19, 0x1e, 0x4a, 0xaa, 0x0e, 0x17, 0xbe, 0x36, 0x6b, - 0x2d, 0xe7, 0xde, 0xaf, 0xc7, 0x5e, 0xf2, 0x40, 0x79, 0xf0, 0x8e, 0x46, 0x2f, 0x4e, 0xd8, 0x15, - 0x6a, 0x1a, 0xaf, 0xb2, 0x96, 0xab, 0xa3, 0xd9, 0xaa, 0x0f, 0x39, 0xd3, 0xa0, 0xd8, 0x58, 0x6a, - 0x35, 0x0e, 0x7c, 0xb5, 0x86, 0xa4, 0x9d, 0xf8, 0x46, 0x59, 0xf1, 0x1c, 0x0e, 0xbf, 0x46, 0xa3, - 0xee, 0xb9, 0x81, 0xca, 0x0b, 0xeb, 0x5b, 0xb6, 0xa2, 0x54, 0xd4, 0xf2, 0x2a, 0xe1, 0x14, 0x7b, - 0x68, 0xb9, 0x9d, 0xf7, 0xad, 0x33, 0xc3, 0xba, 0xd7, 0x32, 0xc1, 0x98, 0x60, 0x4c, 0xb0, 0x59, - 0x13, 0xac, 0x33, 0x47, 0x9c, 0xd8, 0x7f, 0xf4, 0x1a, 0xad, 0xd8, 0x09, 0xbd, 0x6a, 0xe3, 0xbb, - 0x17, 0x3e, 0xe9, 0x4d, 0xb8, 0x19, 0x6d, 0x31, 0x01, 0x99, 0x80, 0x29, 0x4f, 0xc0, 0x96, 0x1f, - 0xc4, 0x6f, 0x34, 0xa6, 0x9f, 0x42, 0xe1, 0x86, 0xc2, 0xb5, 0x1b, 0x3c, 0x78, 0xca, 0xc5, 0x0c, - 0xf4, 0x96, 0x54, 0xf4, 0x97, 0x30, 0x0c, 0xb3, 0x0b, 0x3b, 0x25, 0x1b, 0x0c, 0xae, 0x7f, 0x1f, - 0xba, 0xd5, 0xd8, 0x6f, 0x04, 0xa7, 0xfe, 0x83, 0xdf, 0x11, 0xf5, 0xf6, 0x52, 0x49, 0x8e, 0xfa, - 0xe8, 0xfe, 0x58, 0x7a, 0x97, 0xed, 0x1f, 0x1c, 0x2c, 0xb1, 0xd3, 0x2c, 0x49, 0xf4, 0x95, 0x34, - 0xdd, 0x53, 0xe8, 0xd7, 0x1e, 0x3c, 0xc7, 0x8d, 0xa2, 0x56, 0xe8, 0x06, 0x2a, 0x91, 0xea, 0xc0, - 0x29, 0xbd, 0x6c, 0x01, 0x57, 0x84, 0x2b, 0x82, 0x05, 0xa7, 0xdd, 0xd3, 0x0b, 0xdc, 0xaf, 0x75, - 0xaf, 0x36, 0x28, 0x8d, 0xa6, 0x3e, 0xd9, 0x26, 0x5a, 0x60, 0xb2, 0x31, 0xd9, 0x52, 0x9e, 0x6c, - 0x7a, 0x75, 0xbd, 0x74, 0xea, 0x76, 0x99, 0xd5, 0xe5, 0x1a, 0xa9, 0x07, 0x72, 0x35, 0xa8, 0xb9, - 0xa5, 0xfa, 0xc6, 0x0d, 0xca, 0x69, 0x19, 0xe6, 0xc3, 0x5c, 0xdf, 0xdc, 0x6a, 0x14, 0xad, 0xd0, - 0x00, 0x39, 0xd3, 0xef, 0x59, 0xbe, 0x3a, 0x3f, 0xbd, 0xbb, 0xfa, 0xd7, 0xcd, 0x6d, 0x1e, 0xbe, - 0xed, 0x47, 0xbd, 0x5e, 0x55, 0xba, 0xa2, 0xb2, 0xa4, 0x29, 0xad, 0x95, 0x54, 0x66, 0x94, 0x4c, - 0x66, 0x94, 0x44, 0xa6, 0x96, 0x54, 0x20, 0xec, 0x89, 0xe3, 0x6f, 0x5e, 0x58, 0xfd, 0xe6, 0x06, - 0x81, 0x57, 0x77, 0x1e, 0xfd, 0xa8, 0xb7, 0xca, 0xac, 0x29, 0x84, 0xce, 0x6d, 0x0d, 0x0f, 0x8d, - 0x87, 0x06, 0x87, 0xa7, 0xdd, 0xb3, 0xde, 0x68, 0x34, 0x75, 0xa7, 0xdc, 0xc8, 0xb5, 0x4c, 0x30, - 0x26, 0xd8, 0x1a, 0x4e, 0xb0, 0x8c, 0xa4, 0xe0, 0x45, 0x4d, 0x37, 0x08, 0xfc, 0xe0, 0xc1, 0x89, - 0x43, 0xcf, 0xdb, 0x8d, 0xe2, 0xe6, 0x6e, 0x37, 0x4f, 0x27, 0xd1, 0xb6, 0xf4, 0x39, 0xf9, 0x70, - 0x73, 0x92, 0x6b, 0x92, 0xed, 0xca, 0x54, 0xda, 0x7d, 0xa9, 0x9c, 0x55, 0xb2, 0x4f, 0x56, 0x89, - 0xf8, 0x2c, 0x27, 0xab, 0x04, 0xc7, 0x83, 0xe3, 0x59, 0x05, 0xb2, 0x23, 0xab, 0x84, 0x09, 0xc6, - 0x04, 0xb3, 0x3c, 0xc1, 0xc8, 0x2a, 0x61, 0x02, 0xae, 0xde, 0x04, 0x24, 0xab, 0x44, 0x6f, 0x56, - 0x4d, 0x5c, 0x4e, 0x56, 0x89, 0x76, 0x97, 0x91, 0x55, 0x62, 0xea, 0x9e, 0xc8, 0x2a, 0xc1, 0x15, - 0xc1, 0x82, 0xe9, 0x4c, 0x36, 0xb2, 0x4a, 0x98, 0x6c, 0x64, 0x95, 0x90, 0x55, 0x92, 0xe8, 0x5b, - 0x93, 0x55, 0x62, 0xe3, 0xdb, 0x92, 0x55, 0x32, 0x25, 0xf2, 0x21, 0xab, 0x84, 0xac, 0x12, 0x3c, - 0x34, 0x38, 0x4c, 0x56, 0x09, 0x13, 0x8c, 0x09, 0x96, 0x93, 0x09, 0x96, 0xf5, 0xac, 0x92, 0x04, - 0xe5, 0x23, 0xb3, 0x53, 0x64, 0x69, 0xd6, 0x53, 0x14, 0xe6, 0x26, 0xb7, 0x8c, 0xd6, 0x2d, 0xba, - 0x89, 0x9b, 0x77, 0x1f, 0xba, 0xd7, 0x24, 0x2d, 0xc0, 0x34, 0xa5, 0x5c, 0x90, 0x1f, 0xc4, 0x5e, - 0x78, 0xef, 0x56, 0x3b, 0x21, 0xc7, 0x82, 0x2a, 0x3b, 0x23, 0x9f, 0xa5, 0xd2, 0x4e, 0x5e, 0x2a, - 0xed, 0x0c, 0x5e, 0x5a, 0xf2, 0xac, 0xa8, 0xe1, 0x25, 0xd4, 0xdb, 0x21, 0x33, 0xaa, 0xfb, 0x41, - 0xc5, 0xe3, 0xf9, 0xf4, 0x8e, 0xe3, 0x53, 0x3c, 0xd0, 0x00, 0x64, 0x5a, 0x7d, 0x64, 0x52, 0x3d, - 0x2e, 0x40, 0x2b, 0x85, 0x6f, 0x12, 0xb7, 0x94, 0x53, 0xf9, 0x34, 0xa9, 0x5f, 0x7b, 0x28, 0x9b, - 0x0c, 0x69, 0xf3, 0xa1, 0x6d, 0x3a, 0xc4, 0xc5, 0x86, 0xba, 0xd8, 0x90, 0x17, 0x19, 0xfa, 0x7a, - 0xea, 0x9d, 0x6a, 0x65, 0x64, 0xed, 0x52, 0xfb, 0x06, 0xd1, 0x84, 0x66, 0x54, 0xa1, 0xde, 0x21, - 0x0a, 0x9d, 0xa1, 0x93, 0x4a, 0x38, 0x7d, 0xa6, 0xab, 0x84, 0xf5, 0x4c, 0x74, 0x26, 0x3a, 0x13, - 0x3d, 0xdd, 0x89, 0xee, 0xd5, 0x1e, 0x3c, 0xa7, 0xd9, 0x08, 0x63, 0xfd, 0x79, 0x3e, 0x6c, 0x82, - 0x69, 0xce, 0x34, 0x5f, 0xb1, 0x69, 0xae, 0xb7, 0x40, 0x3e, 0x31, 0xd5, 0x35, 0x32, 0xdb, 0xcc, - 0x16, 0xcc, 0x27, 0x1e, 0xe4, 0xe6, 0xf6, 0xea, 0xee, 0xec, 0xf4, 0xc3, 0xd9, 0xdd, 0xd5, 0xe5, - 0xf5, 0x6d, 0xc1, 0x24, 0x55, 0x4f, 0x6f, 0x05, 0xbd, 0xff, 0x47, 0xe8, 0x70, 0xb1, 0xce, 0xa3, - 0x94, 0x7f, 0xbf, 0xbd, 0x34, 0x38, 0x9c, 0xed, 0x55, 0x26, 0x1e, 0xe2, 0xf4, 0xfc, 0xa6, 0xfc, - 0xf6, 0xe2, 0x2c, 0xf7, 0xcf, 0x71, 0xf6, 0xc9, 0xf0, 0x31, 0xb4, 0xae, 0xac, 0x64, 0x26, 0xd3, - 0x53, 0xc5, 0xeb, 0x1a, 0x92, 0x35, 0x50, 0x8d, 0xb7, 0x5d, 0x49, 0x6f, 0x1b, 0xc5, 0xbd, 0x85, - 0x60, 0x27, 0x6e, 0xb7, 0x65, 0xe0, 0x70, 0x4b, 0x1a, 0xd7, 0x9e, 0x05, 0xad, 0xc7, 0xf6, 0xf7, - 0xcf, 0x82, 0x85, 0xa8, 0xfb, 0xc1, 0x5f, 0xdd, 0x4e, 0xd0, 0xb6, 0x12, 0xc3, 0x26, 0xb0, 0x14, - 0x58, 0x8a, 0x15, 0xb4, 0x14, 0xba, 0x03, 0x7c, 0xa5, 0x0c, 0x85, 0xd6, 0x99, 0xbd, 0x26, 0x67, - 0xf4, 0x62, 0x1e, 0x30, 0x0f, 0xd9, 0x57, 0xe7, 0xdc, 0xc8, 0x73, 0x06, 0x8b, 0xed, 0x8e, 0x61, - 0xf4, 0xae, 0x71, 0xfc, 0xfe, 0xe0, 0xd8, 0xfd, 0xdd, 0x46, 0xd5, 0xf1, 0xef, 0x4f, 0x86, 0x09, - 0x1e, 0x2f, 0x7f, 0xd1, 0xfb, 0xbb, 0xfa, 0xa1, 0xfc, 0xab, 0x73, 0xfa, 0xe0, 0x64, 0xc6, 0xce, - 0x48, 0x77, 0x0d, 0x3b, 0x2a, 0x49, 0x6d, 0x9b, 0xe4, 0x8f, 0x9c, 0x24, 0xab, 0x51, 0xc9, 0xb8, - 0xea, 0x18, 0x55, 0x32, 0x19, 0x37, 0x59, 0x96, 0x37, 0x34, 0x7e, 0x43, 0xe0, 0xf7, 0xdc, 0x7b, - 0xcd, 0x8d, 0x3c, 0x0a, 0x16, 0x6e, 0x60, 0xd9, 0x76, 0x76, 0x7a, 0x33, 0x72, 0x37, 0xb9, 0xed, - 0x92, 0x99, 0x96, 0xc9, 0x4a, 0x51, 0x4d, 0x61, 0xc6, 0xc5, 0x25, 0xa9, 0x26, 0x7a, 0x46, 0x75, - 0x62, 0xee, 0x33, 0x31, 0x57, 0x74, 0x62, 0x92, 0x2f, 0x03, 0xa8, 0x03, 0xea, 0xd2, 0xa0, 0x4e, - 0xbe, 0x0c, 0xf9, 0x32, 0x4c, 0x74, 0x26, 0x7a, 0x4e, 0x26, 0x3a, 0xf9, 0x32, 0x4c, 0x73, 0xa6, - 0xf9, 0xec, 0xf7, 0x4d, 0xbe, 0xcc, 0x68, 0x63, 0xe4, 0xcb, 0xc8, 0x3f, 0x04, 0xf9, 0x32, 0x3a, - 0x96, 0xa0, 0xff, 0x87, 0x7c, 0x19, 0xbc, 0x2d, 0xde, 0x76, 0x55, 0xbc, 0x2d, 0xf9, 0x32, 0xfd, - 0xef, 0x42, 0xbe, 0x0c, 0x96, 0x02, 0x4b, 0x31, 0xdf, 0x52, 0x90, 0x2f, 0x43, 0xbe, 0x0c, 0xe6, - 0x01, 0xf3, 0x30, 0x4d, 0x9d, 0x23, 0x5f, 0x46, 0xf9, 0x93, 0x99, 0xcf, 0x97, 0x49, 0x50, 0xb5, - 0x27, 0xf9, 0x13, 0x9b, 0x15, 0xc3, 0xf8, 0xa7, 0xf7, 0x94, 0xd0, 0x7c, 0xaa, 0x55, 0x3e, 0xd4, - 0xaa, 0x78, 0xa8, 0x55, 0xe9, 0x50, 0xad, 0xc2, 0xe1, 0x32, 0x6b, 0x36, 0x4d, 0x1b, 0x0b, 0x85, - 0x44, 0x59, 0x15, 0x2f, 0x6b, 0x20, 0x9d, 0x0f, 0x2e, 0xcf, 0x6d, 0xe9, 0xa7, 0x91, 0xc2, 0x4a, - 0x06, 0xa5, 0x9c, 0x1e, 0xdb, 0x46, 0x7f, 0x61, 0x11, 0xa7, 0xc7, 0xd9, 0x2e, 0x93, 0xf2, 0x4d, - 0x02, 0xce, 0x55, 0xb8, 0x7c, 0x53, 0xc2, 0xba, 0x3b, 0x6a, 0xf5, 0x76, 0x28, 0xdc, 0x24, 0x4b, - 0x63, 0x59, 0x2e, 0xdc, 0x74, 0xdf, 0x08, 0xff, 0xe3, 0x86, 0xb5, 0xb6, 0xbd, 0xa9, 0x79, 0x75, - 0x57, 0xe3, 0x10, 0xa0, 0x89, 0x16, 0xc8, 0x1a, 0x4d, 0x31, 0x54, 0x20, 0x6b, 0x94, 0xa3, 0x7f, - 0xcc, 0x03, 0xf5, 0xc1, 0xe5, 0xfd, 0x73, 0x6c, 0x4a, 0x1c, 0xfd, 0xa3, 0xda, 0x65, 0xaf, 0xf7, - 0x38, 0xf9, 0xc7, 0xe0, 0x9d, 0x16, 0xbe, 0x79, 0xf5, 0x7a, 0xa3, 0x73, 0x90, 0x9c, 0xba, 0x0f, - 0x1a, 0xb9, 0x16, 0xef, 0x83, 0xf7, 0xc1, 0xfb, 0xe4, 0xdb, 0xfb, 0x14, 0xf1, 0x3e, 0xca, 0x5d, - 0x86, 0xf7, 0x31, 0xf3, 0x3e, 0x8d, 0x7a, 0xcd, 0xa9, 0x36, 0x5a, 0x41, 0xac, 0xe1, 0x7d, 0x86, - 0xd7, 0x26, 0xdd, 0x86, 0xe1, 0xdd, 0xbb, 0xad, 0x7a, 0xc7, 0xe8, 0x1d, 0xe2, 0xb1, 0xf0, 0x58, - 0x78, 0x2c, 0x3c, 0x16, 0x1e, 0x0b, 0x8f, 0xa5, 0xe2, 0xb1, 0x1e, 0xdd, 0x1f, 0x8e, 0xfb, 0xa0, - 0x11, 0x2c, 0xf5, 0x2f, 0xc4, 0xef, 0xe0, 0x77, 0xf0, 0x3b, 0xf9, 0xf6, 0x3b, 0x87, 0xf8, 0x1d, - 0x65, 0x69, 0x13, 0xbf, 0x63, 0xec, 0x77, 0xbe, 0x35, 0x9a, 0x7a, 0x7e, 0xa7, 0x7d, 0x21, 0x7e, - 0x07, 0xbf, 0x83, 0xdf, 0x21, 0xde, 0x59, 0x33, 0xbf, 0xb3, 0x7f, 0x70, 0x80, 0xe3, 0x31, 0x71, - 0x3c, 0x14, 0xb2, 0xc2, 0xe5, 0xe4, 0xc7, 0xe5, 0x44, 0x71, 0xe8, 0x07, 0x0f, 0x3a, 0x75, 0xac, - 0xde, 0x28, 0x5c, 0x73, 0xe1, 0x05, 0x0f, 0x9d, 0x14, 0x42, 0xbc, 0x0e, 0x5e, 0x67, 0x5a, 0x97, - 0xbd, 0xde, 0xc7, 0xe9, 0x98, 0x38, 0x9d, 0xd0, 0xfb, 0xee, 0x47, 0x2a, 0x69, 0xef, 0x03, 0x03, - 0x30, 0xb8, 0x12, 0xe7, 0x83, 0xf3, 0x59, 0x42, 0xbc, 0xf3, 0x7a, 0x5f, 0xc3, 0xf9, 0x1c, 0x11, - 0xf0, 0x4c, 0xb7, 0xa3, 0x7b, 0xb8, 0x1e, 0x65, 0xa1, 0x6d, 0xff, 0xb8, 0x74, 0x7c, 0x78, 0xb4, - 0x7f, 0x4c, 0xdc, 0xa3, 0xf9, 0x89, 0x65, 0xee, 0xc0, 0x79, 0x6c, 0xff, 0x27, 0x49, 0xb5, 0xe2, - 0x39, 0x3b, 0x67, 0xe6, 0xec, 0xde, 0x78, 0x8c, 0x62, 0xc7, 0x0f, 0xa2, 0xd8, 0x0d, 0xe6, 0x9d, - 0x2d, 0x3e, 0xa9, 0x21, 0x8e, 0x5d, 0xc6, 0x36, 0x06, 0xb6, 0x31, 0x4c, 0x0e, 0x27, 0x0d, 0x65, - 0x7a, 0xf4, 0x6a, 0xce, 0xa2, 0x06, 0xd7, 0xb4, 0x70, 0x4d, 0xb9, 0xb6, 0xae, 0xe2, 0xa1, 0xe9, - 0x13, 0xaf, 0x59, 0xe9, 0xf0, 0x74, 0xcd, 0x81, 0xab, 0x3d, 0x80, 0x4d, 0x06, 0xb2, 0xf9, 0x80, - 0x36, 0x1d, 0xd8, 0x62, 0x03, 0x5c, 0x6c, 0xa0, 0x8b, 0x0c, 0x78, 0x4d, 0x2c, 0x52, 0x7c, 0xe3, - 0xaa, 0x13, 0x61, 0x70, 0xe1, 0xd7, 0xd0, 0xef, 0xd4, 0x95, 0x0c, 0xfd, 0x46, 0xe8, 0xc7, 0x4f, - 0xe6, 0x05, 0xf0, 0x5e, 0x36, 0xf8, 0x6a, 0x29, 0x40, 0xac, 0x3b, 0x75, 0x24, 0xa6, 0x90, 0xdc, - 0x54, 0x92, 0x9a, 0x52, 0xe2, 0x53, 0x4b, 0x7c, 0x8a, 0x89, 0x4e, 0x35, 0xbd, 0x29, 0x67, 0x10, - 0xfb, 0x6d, 0x1a, 0x55, 0xd3, 0x98, 0x18, 0x2f, 0x51, 0xdc, 0x74, 0x5e, 0x4c, 0x23, 0xdd, 0xfa, - 0x3b, 0x06, 0x62, 0x83, 0x90, 0xf8, 0x60, 0x2e, 0x46, 0x88, 0x8a, 0x13, 0xc2, 0x86, 0x66, 0x66, - 0x24, 0x5e, 0x14, 0x6a, 0x4f, 0x20, 0x20, 0x17, 0x1a, 0xe0, 0x62, 0x62, 0x47, 0x5a, 0xaf, 0xe0, - 0xb0, 0x58, 0x2c, 0x95, 0xf6, 0x32, 0xfc, 0x1e, 0x36, 0x96, 0x73, 0x75, 0x65, 0x23, 0x9d, 0xfb, - 0xe9, 0x88, 0x68, 0x9d, 0xb0, 0xb0, 0x66, 0x4e, 0x21, 0xbd, 0x76, 0x80, 0x0f, 0xe0, 0x03, 0xf8, - 0x50, 0x1a, 0x2f, 0x2d, 0x3f, 0x88, 0x8b, 0x87, 0x02, 0xa8, 0x71, 0x08, 0x6a, 0x80, 0x1a, 0x6b, - 0x82, 0x1a, 0xa5, 0xbd, 0xe3, 0x12, 0xa0, 0x91, 0x27, 0xd0, 0xf8, 0x5e, 0x77, 0x03, 0x73, 0xcc, - 0xe8, 0xb4, 0x02, 0x64, 0x00, 0x19, 0x40, 0x86, 0x1a, 0x64, 0x04, 0xc9, 0xb3, 0x74, 0xe6, 0x4d, - 0x9e, 0xe2, 0xb1, 0x41, 0x1b, 0xbd, 0xc7, 0x59, 0x3a, 0x63, 0x8c, 0x1a, 0x13, 0xfd, 0xa0, 0x45, - 0x18, 0xc1, 0x84, 0x51, 0x4c, 0xae, 0xbb, 0xac, 0xa0, 0x99, 0x25, 0x3e, 0xb0, 0x85, 0x6a, 0x36, - 0x61, 0x41, 0x10, 0xdd, 0xac, 0x20, 0x5c, 0x5a, 0xaf, 0x4a, 0x0e, 0xe9, 0x52, 0x79, 0x5b, 0x1b, - 0xd9, 0x68, 0xa5, 0xb2, 0xb1, 0xc4, 0x31, 0x27, 0x6d, 0x8b, 0xc3, 0x8e, 0xe9, 0x93, 0x33, 0xc7, - 0x2a, 0x69, 0xe6, 0xb3, 0xb1, 0xcd, 0x8d, 0x63, 0x2f, 0x0c, 0xc4, 0x2c, 0x72, 0xe1, 0xcf, 0xad, - 0xd2, 0xde, 0xf1, 0xe7, 0x3d, 0xa7, 0x54, 0xf9, 0x55, 0xda, 0xfb, 0xbc, 0xe7, 0xbc, 0xa9, 0x7c, - 0xde, 0x73, 0x8e, 0x2b, 0xbf, 0x3e, 0x17, 0x9d, 0xd7, 0xdd, 0x1f, 0x7f, 0xbe, 0x7e, 0x6e, 0xff, - 0xed, 0xb8, 0xf7, 0xb7, 0xe2, 0xab, 0xfd, 0xde, 0xdf, 0xb7, 0xbf, 0x7c, 0xd9, 0xf9, 0xf2, 0x65, - 0xc7, 0xa0, 0x81, 0xbf, 0x15, 0x96, 0x3d, 0xe4, 0xd2, 0x8e, 0x6e, 0x34, 0xd9, 0x4b, 0xa9, 0xbc, - 0xf5, 0x3c, 0x9f, 0xa9, 0x5c, 0xc1, 0x7a, 0x9e, 0x55, 0x97, 0x6b, 0x4c, 0xa9, 0x4c, 0xb6, 0x60, - 0xe8, 0x68, 0x75, 0x55, 0x5e, 0xb3, 0x84, 0xfb, 0xe0, 0x7a, 0xe5, 0xe4, 0xc1, 0xb1, 0x5c, 0xbd, - 0xb1, 0xbf, 0x25, 0xca, 0x2b, 0xd4, 0xef, 0x1d, 0x95, 0xa3, 0x34, 0x46, 0x6a, 0x6b, 0x6b, 0xe7, - 0xe1, 0x8c, 0xb4, 0x41, 0x2e, 0x8e, 0xbd, 0xb0, 0x9a, 0x5c, 0x9c, 0x34, 0x73, 0x71, 0x86, 0x65, - 0xf7, 0x8d, 0x85, 0x29, 0x95, 0x0a, 0xfe, 0x82, 0xd3, 0x04, 0x75, 0x0a, 0x75, 0x6a, 0x59, 0xea, - 0x94, 0xee, 0xb4, 0x1b, 0x34, 0xa0, 0x99, 0x1b, 0x3a, 0x73, 0xd8, 0x69, 0xe5, 0x8a, 0x0a, 0x4f, - 0x44, 0xb1, 0x09, 0x29, 0x39, 0x31, 0xe5, 0x27, 0xa8, 0xf4, 0x44, 0xb5, 0x36, 0x61, 0xad, 0x4d, - 0x5c, 0x2b, 0x13, 0x58, 0x46, 0x17, 0x30, 0x8c, 0xea, 0x8d, 0x27, 0xf6, 0xc8, 0x04, 0x8f, 0x62, - 0xb9, 0xa1, 0x31, 0x9c, 0xe6, 0x51, 0x2c, 0x35, 0x2a, 0x84, 0x97, 0x27, 0xa5, 0x26, 0xbd, 0x8d, - 0xc9, 0x6f, 0xcf, 0x08, 0xd8, 0x32, 0x06, 0xd6, 0x8d, 0x82, 0x75, 0xe3, 0x60, 0xd5, 0x48, 0x08, - 0x4b, 0x91, 0x42, 0x23, 0xd6, 0x78, 0xcd, 0x6a, 0xe6, 0x78, 0x55, 0xde, 0xf0, 0x9b, 0x74, 0xf6, - 0x1f, 0x09, 0x36, 0x29, 0xbb, 0x7a, 0xd3, 0xff, 0x23, 0x3b, 0x9f, 0x36, 0x6d, 0xad, 0xe6, 0x58, - 0x32, 0xab, 0x13, 0xcd, 0x5b, 0x5a, 0xdd, 0x19, 0xb4, 0x6f, 0x71, 0xdd, 0x40, 0x78, 0xba, 0xbd, - 0xd4, 0x07, 0x73, 0xff, 0x4a, 0xf7, 0xf7, 0x7a, 0x7f, 0x72, 0xfc, 0x6a, 0x37, 0xb2, 0xd9, 0x5a, - 0x25, 0x23, 0x4b, 0x56, 0x12, 0x39, 0x6a, 0x5a, 0xa7, 0x03, 0x2f, 0xf4, 0x30, 0x1a, 0xa7, 0x06, - 0x43, 0x96, 0x90, 0x25, 0x64, 0x99, 0x73, 0xb2, 0x14, 0x39, 0x55, 0x79, 0xa1, 0xa0, 0x24, 0x89, - 0x99, 0xf6, 0x4f, 0x61, 0xce, 0xb6, 0xfd, 0x6f, 0x36, 0xc2, 0xd8, 0x7c, 0x0f, 0xed, 0xcc, 0x01, - 0x31, 0xde, 0x3c, 0x1e, 0x01, 0x8f, 0x80, 0x47, 0x58, 0x2b, 0x8f, 0x10, 0xc5, 0x4d, 0x67, 0xcc, - 0x08, 0x98, 0xee, 0x07, 0x9e, 0x65, 0x0d, 0x0e, 0xd0, 0x1e, 0xd0, 0x1e, 0xd0, 0x1e, 0xb2, 0xa1, - 0x3d, 0x94, 0x50, 0x1d, 0x56, 0x57, 0x75, 0x58, 0xea, 0x92, 0x9a, 0x61, 0x62, 0xda, 0x44, 0x7b, - 0x92, 0x89, 0x6a, 0x23, 0xc1, 0xc3, 0x30, 0x6c, 0xd0, 0xc9, 0x5e, 0x93, 0xeb, 0x72, 0x83, 0xee, + 0x48, 0xbd, 0x0d, 0x04, 0x55, 0xa8, 0xf4, 0x34, 0x4c, 0xae, 0xe7, 0x32, 0x3a, 0x2c, 0xbd, 0x10, + 0x92, 0x17, 0x8f, 0x45, 0xe5, 0x7a, 0x90, 0xd2, 0x70, 0xe4, 0xf4, 0x9b, 0x0c, 0xda, 0x4d, 0x2a, + 0xdd, 0x26, 0x8b, 0x66, 0x93, 0x4e, 0xaf, 0x49, 0xa7, 0xd5, 0x64, 0xd3, 0x69, 0x66, 0x51, 0x0e, + 0xe4, 0xb4, 0xd9, 0x7c, 0x03, 0xe9, 0x31, 0xc0, 0xb5, 0xc8, 0xb5, 0xd9, 0x1c, 0x40, 0x3b, 0x21, + 0x1c, 0x63, 0xba, 0x7a, 0xb4, 0xa1, 0xb3, 0x12, 0x29, 0xcd, 0xa1, 0xeb, 0xf3, 0xc3, 0xb2, 0x44, + 0x46, 0x53, 0x06, 0xa1, 0x29, 0xb7, 0xdd, 0x90, 0xdc, 0x5a, 0x12, 0x0a, 0xd2, 0x5c, 0x94, 0xd4, + 0xd3, 0x56, 0xd5, 0xae, 0x47, 0x65, 0x07, 0x91, 0x91, 0xdc, 0xca, 0x20, 0x5b, 0x27, 0x4a, 0x95, + 0xf2, 0x49, 0xe5, 0xe4, 0xe8, 0xb8, 0x7c, 0x52, 0xdd, 0x22, 0x99, 0xca, 0x49, 0x64, 0x4f, 0xdb, + 0xe4, 0xbb, 0x4a, 0x89, 0x06, 0xdd, 0x09, 0x38, 0x67, 0x8e, 0xf5, 0xef, 0xa1, 0xed, 0xc8, 0xbc, + 0xa7, 0x7c, 0x27, 0xe7, 0x9e, 0x92, 0xb3, 0xd0, 0x97, 0x66, 0xd8, 0x0b, 0xbb, 0xbb, 0xb7, 0x45, + 0xeb, 0xa4, 0xfd, 0xf3, 0xb6, 0x64, 0x9d, 0xb4, 0x27, 0xdf, 0x96, 0xe2, 0x3f, 0x26, 0xdf, 0x97, + 0x6f, 0x8b, 0x56, 0x65, 0xf6, 0x7d, 0xf5, 0xb6, 0x68, 0x55, 0xdb, 0x7b, 0x77, 0x77, 0xfb, 0x7b, + 0x3f, 0x0e, 0x47, 0x9b, 0x7f, 0xb0, 0x60, 0xfa, 0x09, 0x7a, 0x63, 0xd6, 0xbc, 0x71, 0x6d, 0x22, + 0xf6, 0xac, 0xa8, 0xba, 0x36, 0x21, 0x08, 0x1c, 0x14, 0x78, 0x65, 0xf2, 0x46, 0x23, 0x51, 0xa0, + 0x12, 0x01, 0x55, 0x5b, 0x5f, 0x10, 0x7a, 0x1f, 0x95, 0xea, 0x66, 0x57, 0x8c, 0xdc, 0x65, 0x97, + 0x12, 0x01, 0x12, 0x52, 0xe8, 0x0f, 0x3c, 0x71, 0x7d, 0xa5, 0x12, 0x38, 0x12, 0x3f, 0x55, 0x90, + 0xfc, 0x8a, 0xbd, 0x80, 0x13, 0xce, 0x50, 0x53, 0x30, 0xd2, 0xa4, 0x0c, 0x34, 0x15, 0xe3, 0x4c, + 0xce, 0x30, 0x93, 0x33, 0xca, 0xd4, 0x0c, 0xb2, 0x5e, 0x76, 0x41, 0xf4, 0x85, 0x59, 0xa1, 0x3b, + 0x3b, 0x59, 0x44, 0xd7, 0xfb, 0xd3, 0xe7, 0xe3, 0x7e, 0x1f, 0xf7, 0xfb, 0x2a, 0xd5, 0x90, 0x34, + 0x75, 0x24, 0x4b, 0x2d, 0x99, 0xe1, 0xc9, 0x90, 0xdd, 0xef, 0xf3, 0xd0, 0xee, 0xf5, 0xdc, 0xae, + 0xc5, 0xfc, 0x07, 0xd7, 0x67, 0x2c, 0x74, 0xfd, 0x07, 0x8b, 0xf9, 0xf6, 0xbd, 0xc7, 0x1c, 0xfa, + 0x0b, 0xff, 0x5f, 0x0d, 0x8e, 0x08, 0x00, 0xd9, 0x0a, 0x50, 0xaa, 0x22, 0x94, 0xa5, 0x10, 0xa5, + 0x2b, 0x46, 0xe9, 0x0a, 0x52, 0xb6, 0xa2, 0xa4, 0x25, 0xbf, 0xcc, 0x8f, 0x00, 0xb8, 0x0f, 0x02, + 0x8f, 0xd9, 0xbe, 0x8c, 0x4b, 0xff, 0x12, 0x58, 0x42, 0xb0, 0x84, 0xab, 0xa8, 0xa2, 0xfe, 0xc0, + 0x8b, 0x0e, 0xa6, 0x1e, 0x03, 0x22, 0xab, 0xb3, 0x9e, 0x68, 0x23, 0x23, 0xab, 0xcb, 0xf0, 0xbc, + 0xe0, 0x79, 0xc1, 0xf3, 0x82, 0xe7, 0x05, 0xcf, 0x0b, 0x9e, 0x17, 0x3c, 0x2f, 0x78, 0x5e, 0xf0, + 0xbc, 0xe0, 0x79, 0xc1, 0xf3, 0x92, 0xe2, 0x79, 0x21, 0x3e, 0x43, 0xb5, 0x08, 0xa8, 0xda, 0x7a, + 0xc5, 0xf1, 0x19, 0x17, 0xe3, 0x29, 0xe4, 0x28, 0x3e, 0x43, 0xac, 0x63, 0x4f, 0xe2, 0xd0, 0x93, + 0x45, 0x68, 0x94, 0x11, 0xa1, 0x81, 0x08, 0x0d, 0xa9, 0x38, 0x33, 0xe7, 0x11, 0x1a, 0x84, 0xa9, + 0xcc, 0xf4, 0x29, 0xcc, 0x44, 0xee, 0x33, 0x22, 0x35, 0xc0, 0x17, 0x82, 0x2f, 0x34, 0xc2, 0xdd, + 0x95, 0x9d, 0x62, 0x4c, 0x99, 0x5a, 0x4c, 0x9b, 0x52, 0x2c, 0x81, 0x6a, 0x20, 0x4f, 0x21, 0x96, + 0x90, 0x3a, 0x2c, 0x29, 0x65, 0x58, 0x42, 0x1e, 0x98, 0xcc, 0x14, 0x61, 0xd9, 0xad, 0x14, 0x25, + 0xa7, 0x04, 0xab, 0x48, 0xdb, 0x94, 0x90, 0x02, 0x2c, 0x35, 0xf5, 0x57, 0x95, 0x88, 0xc8, 0x4e, + 0xf5, 0x55, 0x22, 0x2b, 0x48, 0xe8, 0xa3, 0x3f, 0x39, 0x12, 0x0c, 0xa8, 0x9c, 0x94, 0x5d, 0x19, + 0xa9, 0xba, 0xd2, 0x52, 0x74, 0x73, 0x92, 0x9a, 0x6b, 0x4a, 0x6a, 0x6b, 0x1b, 0xfc, 0xfd, 0x6b, + 0x7c, 0xbe, 0xfc, 0xf0, 0xf7, 0x02, 0x6f, 0x6d, 0xf4, 0x60, 0xcf, 0xbf, 0xb9, 0x21, 0x1f, 0xda, + 0x9e, 0xe5, 0xb9, 0xfe, 0x57, 0x82, 0x34, 0xc7, 0xf9, 0xc7, 0x23, 0xdf, 0x51, 0x4b, 0x3a, 0x0b, + 0x6c, 0xba, 0x2a, 0xba, 0x2a, 0xe7, 0x6c, 0xfa, 0xf3, 0xd3, 0x4f, 0xc7, 0xa7, 0xcf, 0x8d, 0x82, + 0xdc, 0x47, 0x30, 0xea, 0x2a, 0x55, 0x92, 0x34, 0xd5, 0x24, 0x4b, 0x45, 0xd1, 0x80, 0x67, 0x63, + 0x22, 0x70, 0x89, 0x52, 0xb6, 0x97, 0x0e, 0x15, 0x49, 0xea, 0x36, 0xb1, 0x1a, 0x23, 0x57, 0x67, + 0x32, 0xd4, 0x9a, 0x54, 0xf5, 0x26, 0x4b, 0xcd, 0x49, 0x57, 0x77, 0xd2, 0xd5, 0x9e, 0x6c, 0xf5, + 0x47, 0xcb, 0xfe, 0x51, 0xc5, 0xd5, 0x52, 0xa9, 0xc5, 0x64, 0x80, 0x90, 0xf5, 0x03, 0xce, 0xac, + 0x30, 0x18, 0x72, 0x16, 0x5a, 0xae, 0x23, 0xaf, 0x23, 0xe3, 0xd2, 0xc8, 0xe8, 0xce, 0xa8, 0x9b, + 0x4a, 0x55, 0xa2, 0x5a, 0x65, 0xab, 0x58, 0x65, 0xaa, 0x56, 0x99, 0xca, 0x55, 0xa5, 0x7a, 0x69, + 0x55, 0x30, 0xb1, 0x2a, 0x4e, 0x16, 0x4d, 0x7e, 0x77, 0x46, 0x77, 0xf0, 0xad, 0x62, 0xd9, 0x8e, + 0x13, 0xb2, 0x28, 0xb2, 0xfc, 0xc0, 0xfa, 0xbf, 0xc0, 0x67, 0x28, 0x81, 0x9a, 0x71, 0x40, 0x99, + 0xf7, 0x2c, 0xbb, 0xff, 0x7d, 0x7b, 0x77, 0x37, 0xf8, 0x71, 0x39, 0x1a, 0xff, 0xbf, 0x31, 0x6a, + 0xff, 0x6d, 0xef, 0x77, 0x59, 0xba, 0x65, 0x3c, 0x91, 0xbb, 0xbb, 0xfd, 0xf6, 0x6f, 0x28, 0xc3, + 0x9a, 0x0f, 0x44, 0x98, 0xe3, 0xc6, 0x87, 0x73, 0x77, 0x0d, 0x73, 0x7f, 0x23, 0x29, 0x73, 0x40, + 0xb7, 0xff, 0x04, 0x7b, 0x2f, 0x0f, 0xa8, 0xcb, 0x06, 0xe8, 0xc8, 0x19, 0x06, 0xb7, 0x01, 0x6e, + 0x63, 0x0b, 0x2d, 0x99, 0xbc, 0x9c, 0x61, 0xfa, 0xf6, 0xe6, 0x32, 0xda, 0x9a, 0x3f, 0x6f, 0x67, + 0x3e, 0xb1, 0x87, 0x07, 0x4b, 0x2a, 0x7a, 0x8b, 0x0d, 0x24, 0x4d, 0x7d, 0xa0, 0x25, 0x59, 0xa2, + 0xa8, 0x13, 0xb4, 0x24, 0x45, 0xd4, 0xa6, 0xb0, 0x0c, 0x53, 0x08, 0x53, 0x08, 0x53, 0xa8, 0x8d, + 0x29, 0x24, 0xa7, 0xf9, 0x6d, 0xe7, 0x5f, 0x76, 0x97, 0xf9, 0xdd, 0x47, 0x8b, 0x56, 0x4d, 0x2e, + 0x9d, 0xd2, 0xc5, 0x81, 0x41, 0xf2, 0xeb, 0xa6, 0x50, 0x95, 0x28, 0x56, 0xd9, 0x0a, 0x56, 0x99, + 0xa2, 0x55, 0xa6, 0x70, 0x55, 0x29, 0x5e, 0x7a, 0xbe, 0x6e, 0x27, 0x9f, 0x24, 0x7f, 0x9c, 0xe6, + 0xc9, 0x1f, 0x69, 0xfd, 0x94, 0x25, 0xa4, 0x29, 0x21, 0x8b, 0xa8, 0x70, 0x3e, 0x7d, 0xb5, 0xf7, + 0x76, 0x24, 0xf1, 0xa4, 0xcf, 0x16, 0xf6, 0xea, 0xa6, 0xf9, 0xb1, 0x73, 0x59, 0x3f, 0xff, 0xe3, + 0xef, 0xef, 0xaf, 0xae, 0x3b, 0x37, 0xad, 0x5a, 0xab, 0x5e, 0x90, 0x99, 0xb3, 0x15, 0x49, 0xbb, + 0xd3, 0xd8, 0x91, 0xda, 0xb3, 0x75, 0x6e, 0x91, 0x3f, 0x7e, 0x6a, 0x34, 0x0a, 0x79, 0x6c, 0x27, + 0xaa, 0x68, 0x3d, 0xeb, 0xff, 0xfb, 0xe1, 0xef, 0xb5, 0xcb, 0x3f, 0xea, 0x58, 0x53, 0x71, 0x6b, + 0x5a, 0x6b, 0xb5, 0xea, 0x17, 0xcd, 0x16, 0x96, 0x54, 0xdc, 0x92, 0xb6, 0xfe, 0x71, 0xd5, 0xf9, + 0x47, 0xed, 0x2f, 0x2c, 0xa9, 0xb8, 0x25, 0x3d, 0xbf, 0x3c, 0x87, 0x88, 0x0a, 0x5c, 0xcf, 0xc6, + 0x55, 0xed, 0xec, 0xfc, 0xf2, 0x0f, 0x2c, 0xa9, 0x48, 0xe3, 0x74, 0xd3, 0xaa, 0x5d, 0x43, 0x4a, + 0x05, 0x2e, 0xe9, 0xd9, 0xd5, 0x3f, 0x2e, 0x0b, 0x39, 0x6b, 0x9d, 0xdd, 0x46, 0x9d, 0x00, 0xf9, + 0xf2, 0x5c, 0xb8, 0xb7, 0xbb, 0x5f, 0x87, 0x03, 0xcb, 0x61, 0x91, 0xfb, 0xe0, 0xdb, 0x9c, 0x39, + 0xd3, 0xdb, 0x21, 0x79, 0x94, 0xdf, 0xda, 0x19, 0x80, 0xfb, 0xdb, 0x68, 0x20, 0x70, 0x7f, 0xa2, + 0x05, 0x04, 0xdc, 0x1f, 0xb8, 0xbf, 0x97, 0x17, 0x4d, 0x3e, 0xf7, 0x27, 0xa7, 0x4e, 0xca, 0xa2, + 0xa2, 0x44, 0x5c, 0xaf, 0xbe, 0xf5, 0x53, 0xe4, 0x60, 0x28, 0x33, 0x11, 0x8e, 0xc3, 0x6c, 0xc7, + 0xe2, 0x6e, 0x5f, 0xe2, 0x2d, 0xe6, 0xd3, 0x90, 0xc0, 0x30, 0xc0, 0x30, 0xc0, 0x30, 0xc0, 0x30, + 0xc0, 0x30, 0x0b, 0xa7, 0x6e, 0xac, 0x1d, 0xb9, 0xdb, 0xfd, 0x1a, 0x1d, 0x55, 0x24, 0x62, 0x18, + 0x19, 0x10, 0xe6, 0x93, 0x3f, 0xa9, 0x7b, 0x58, 0xf0, 0x6d, 0x3f, 0x88, 0x58, 0x37, 0xf0, 0x9d, + 0x48, 0xc6, 0x2b, 0xca, 0xa9, 0xdc, 0x2a, 0x9f, 0xf8, 0x92, 0x5a, 0xc9, 0x55, 0xb2, 0x65, 0x5d, + 0x1a, 0x56, 0x72, 0x65, 0xd7, 0x64, 0x5c, 0x05, 0x55, 0x3b, 0x25, 0xe9, 0xb6, 0x79, 0x51, 0x92, + 0x58, 0xf1, 0x55, 0x17, 0x51, 0x2a, 0xbd, 0xab, 0x54, 0x8e, 0x8e, 0x2b, 0x95, 0xe2, 0xf1, 0xe1, + 0x71, 0xf1, 0xa4, 0x5a, 0x2d, 0x1d, 0x95, 0xaa, 0x5b, 0x24, 0x5d, 0x6f, 0xf2, 0x31, 0x0a, 0x3c, + 0xbb, 0x55, 0x9e, 0x9d, 0x32, 0xd2, 0x1a, 0x6c, 0x35, 0x3c, 0x3d, 0x78, 0x7a, 0xf0, 0xf4, 0xe0, + 0xe9, 0xbd, 0xac, 0x2a, 0xc1, 0x56, 0x0b, 0x1b, 0x10, 0x6c, 0x75, 0xde, 0x31, 0x8d, 0x67, 0x47, + 0xdc, 0x62, 0x11, 0xb7, 0xef, 0x3d, 0x37, 0xfa, 0xc2, 0x64, 0x33, 0xd7, 0xab, 0x87, 0x07, 0xb6, + 0x01, 0xb6, 0x01, 0xb6, 0x01, 0xb6, 0x01, 0xb6, 0x59, 0x38, 0x75, 0x60, 0xb1, 0x45, 0x8f, 0x0b, + 0x16, 0xdb, 0x3c, 0xcb, 0xba, 0x34, 0x2c, 0x58, 0x6c, 0x5a, 0x51, 0x02, 0x8b, 0x0d, 0x16, 0xdb, + 0xc8, 0x51, 0xe0, 0xf1, 0x2d, 0x8b, 0x55, 0x30, 0x18, 0x0b, 0x95, 0xed, 0x59, 0x5d, 0x7b, 0x60, + 0xdf, 0xbb, 0x9e, 0xcb, 0x5d, 0x16, 0xc9, 0xf3, 0xf8, 0x56, 0x0f, 0x0f, 0x8f, 0x0f, 0x1e, 0x1f, + 0x3c, 0x3e, 0x78, 0x7c, 0xf0, 0xf8, 0x16, 0x4e, 0xdd, 0x17, 0xf6, 0xdd, 0x8a, 0x78, 0xe8, 0xfa, + 0x0f, 0x20, 0xb3, 0x33, 0x0e, 0x18, 0x53, 0xd2, 0xb6, 0xd5, 0xab, 0x59, 0x1f, 0xdb, 0x3f, 0xca, + 0xa3, 0xdd, 0xd3, 0xf9, 0xbf, 0xef, 0xfd, 0xb6, 0xf7, 0x3b, 0x38, 0x68, 0x15, 0x88, 0x64, 0x10, + 0xba, 0x41, 0xe8, 0xf2, 0x47, 0x79, 0x20, 0x24, 0x19, 0x11, 0xb8, 0x03, 0xb8, 0x03, 0xb8, 0x03, + 0xb8, 0x03, 0xb8, 0x63, 0xe1, 0xd4, 0x0d, 0x5d, 0x9f, 0xbf, 0x93, 0x08, 0x39, 0xaa, 0xe0, 0x7a, + 0xd3, 0xbf, 0x18, 0xb8, 0x5e, 0xfa, 0x71, 0xc1, 0xf5, 0xe6, 0x56, 0x94, 0xca, 0x55, 0x50, 0xbb, + 0xc6, 0x8d, 0x02, 0x47, 0x6a, 0x59, 0xac, 0xd0, 0x2d, 0x0f, 0x8e, 0x15, 0x1c, 0x2b, 0x38, 0x56, + 0x70, 0xac, 0xf4, 0x75, 0xac, 0xd0, 0x2d, 0x8f, 0x60, 0x40, 0x74, 0xcb, 0x03, 0xbc, 0x92, 0x01, + 0xaf, 0x78, 0x68, 0xfb, 0x7d, 0x37, 0x8a, 0xdc, 0xc0, 0xb7, 0xfe, 0x3d, 0x64, 0x43, 0x66, 0x79, + 0xcc, 0x7f, 0x88, 0xdb, 0xde, 0x48, 0x03, 0x5a, 0x6b, 0xe7, 0x00, 0xc8, 0x05, 0xc8, 0x05, 0xc8, + 0x05, 0xc8, 0x05, 0xc8, 0xb5, 0x70, 0xea, 0x86, 0xae, 0xcf, 0x0f, 0xcb, 0x12, 0x41, 0xd6, 0x31, + 0xc8, 0xec, 0xf4, 0x2f, 0x06, 0x32, 0x9b, 0x7e, 0x5c, 0x90, 0xd9, 0xb9, 0x15, 0xa5, 0x4a, 0xf9, + 0xa4, 0x72, 0x72, 0x74, 0x5c, 0x3e, 0x01, 0xa7, 0x6d, 0xdc, 0x28, 0x70, 0xba, 0x96, 0xc5, 0x2a, + 0xee, 0xcb, 0x66, 0x75, 0xbf, 0x8c, 0xcd, 0x9d, 0xc4, 0x30, 0xe5, 0xf9, 0x61, 0xe1, 0x5a, 0xc1, + 0xb5, 0x82, 0x6b, 0x05, 0xd7, 0x0a, 0xae, 0x15, 0x5c, 0x2b, 0xb8, 0x56, 0x70, 0xad, 0xe0, 0x5a, + 0xc1, 0xb5, 0x82, 0x6b, 0x05, 0xd7, 0x4a, 0x82, 0x6b, 0x65, 0x54, 0xa3, 0xf0, 0x9a, 0xef, 0x07, + 0xdc, 0x1e, 0x8b, 0x2a, 0x6d, 0xbf, 0xf0, 0xa8, 0xfb, 0x85, 0xf5, 0xed, 0x81, 0x1d, 0xdf, 0xbc, + 0x15, 0x0e, 0x82, 0x01, 0xf3, 0xbb, 0xb1, 0x73, 0x63, 0xf9, 0x8c, 0xff, 0x27, 0x08, 0xbf, 0x5a, + 0xae, 0x1f, 0x71, 0xdb, 0xef, 0xb2, 0x83, 0xc5, 0x1f, 0x44, 0x4b, 0x3f, 0x39, 0x18, 0x84, 0x01, + 0x0f, 0xba, 0x81, 0x17, 0x25, 0xdf, 0x1d, 0x4c, 0xf0, 0xe6, 0x81, 0x1d, 0x32, 0x3b, 0x8a, 0xff, + 0x7f, 0xf0, 0xcd, 0x0d, 0xf9, 0xd0, 0xf6, 0x2c, 0xcf, 0xf5, 0xbf, 0x46, 0x73, 0x7f, 0x3b, 0x98, + 0xb4, 0x0e, 0x7f, 0x63, 0xc6, 0xf6, 0x8b, 0x7d, 0xa2, 0x60, 0x41, 0x1a, 0x3b, 0x3a, 0x12, 0xc2, + 0xc9, 0x0a, 0x0d, 0x37, 0xe2, 0x35, 0xce, 0x69, 0x0a, 0x78, 0x8e, 0x61, 0x56, 0xdd, 0x63, 0x63, + 0xef, 0x65, 0xac, 0xab, 0xfd, 0xa1, 0xe7, 0xbd, 0x7d, 0x43, 0x61, 0x80, 0xe9, 0x07, 0xb9, 0x0a, + 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xe3, 0x74, 0x08, 0xad, 0x65, 0x87, 0x58, 0xf9, 0xe8, 0xa5, 0x74, + 0x08, 0x5c, 0xae, 0x42, 0xc4, 0xc3, 0x61, 0x97, 0xfb, 0x53, 0xd7, 0xee, 0x72, 0x32, 0xe3, 0xf3, + 0xe9, 0x84, 0x3b, 0xcd, 0xe9, 0x34, 0x3b, 0x57, 0xf1, 0x34, 0x3b, 0xb5, 0x90, 0xd9, 0x9d, 0xcf, + 0x93, 0x29, 0x35, 0xc6, 0x33, 0x7a, 0xa3, 0xa7, 0x9a, 0x12, 0xf3, 0x24, 0x41, 0xc2, 0x4a, 0x25, + 0xa4, 0xca, 0x85, 0x53, 0xcc, 0xee, 0x67, 0xdf, 0xab, 0x6c, 0x4f, 0xc8, 0xb8, 0xcb, 0x33, 0xf3, + 0x35, 0x69, 0x96, 0xdf, 0x73, 0x33, 0x97, 0x69, 0x16, 0x6b, 0xa8, 0x48, 0x0c, 0x13, 0x89, 0x21, + 0x12, 0x6b, 0x78, 0xb2, 0xee, 0xaa, 0xe0, 0x33, 0xab, 0xe0, 0xac, 0x0a, 0xb0, 0x16, 0x29, 0xac, + 0x43, 0x36, 0x9d, 0x90, 0xfe, 0x24, 0xa7, 0xfb, 0x64, 0x4a, 0x29, 0x11, 0x25, 0x1d, 0x72, 0xa5, + 0x22, 0xdd, 0xd6, 0x6c, 0xbe, 0xb0, 0x29, 0x16, 0xb5, 0xf0, 0xe0, 0x05, 0xf7, 0xb6, 0x97, 0x7a, + 0x31, 0x13, 0x6e, 0x7a, 0xfa, 0x9c, 0x94, 0xdb, 0x3a, 0x8b, 0x97, 0x4e, 0xf9, 0xf1, 0xac, 0x77, + 0x6d, 0x22, 0xee, 0xd0, 0x84, 0xde, 0x8d, 0x89, 0xba, 0xf3, 0x12, 0x7e, 0x97, 0x25, 0xfc, 0x8e, + 0x4a, 0xf4, 0xdd, 0x93, 0x5c, 0x75, 0x74, 0xe6, 0x66, 0x03, 0x0b, 0x85, 0xee, 0x4c, 0x72, 0x33, + 0xee, 0xf3, 0x4c, 0xf8, 0xa6, 0xcf, 0xcb, 0x8a, 0xac, 0x32, 0x1d, 0x47, 0x61, 0xc7, 0x52, 0xe4, + 0xf1, 0x24, 0x39, 0xa6, 0xa2, 0x8f, 0x2b, 0xd9, 0xb1, 0x25, 0x3b, 0xbe, 0x54, 0xc7, 0x58, 0x0f, + 0x0f, 0x23, 0xeb, 0xf1, 0x4e, 0x1e, 0xf4, 0xc5, 0x75, 0x98, 0xc5, 0x43, 0xdb, 0x8f, 0x5c, 0x6e, + 0x05, 0xbe, 0xf7, 0x38, 0x83, 0x19, 0xe2, 0x82, 0x6c, 0x9e, 0x8a, 0x58, 0xad, 0x1f, 0x4b, 0xd0, + 0x5e, 0x8b, 0xbd, 0x19, 0x12, 0x1e, 0x29, 0x43, 0x11, 0x11, 0x43, 0x1a, 0xf9, 0x42, 0x15, 0xe1, + 0x42, 0x1e, 0xc9, 0x42, 0x1e, 0xb1, 0x42, 0x1d, 0x99, 0xa2, 0x17, 0x5d, 0x25, 0x3c, 0xa2, 0x24, + 0x91, 0xda, 0xfb, 0x20, 0xf0, 0x98, 0xed, 0x8b, 0x94, 0xd9, 0x19, 0x46, 0x28, 0xe9, 0xc2, 0x45, + 0x09, 0x30, 0xe3, 0xee, 0xc3, 0xc0, 0x8a, 0xbe, 0x04, 0x21, 0xef, 0x0e, 0x39, 0x81, 0x66, 0x9e, + 0x7f, 0x3c, 0x94, 0x31, 0x94, 0x31, 0x94, 0x31, 0x94, 0x31, 0x94, 0xf1, 0xea, 0x77, 0xf2, 0x82, + 0x07, 0xcb, 0x76, 0xfe, 0x65, 0x77, 0x99, 0xdf, 0x7d, 0x14, 0x1e, 0x93, 0xfe, 0xd4, 0x14, 0x69, + 0xe5, 0x30, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, 0x50, 0xce, 0xab, 0xdf, 0x49, 0x7c, + 0xd5, 0xab, 0xa7, 0xa2, 0x0b, 0x82, 0xe3, 0x90, 0xa0, 0x84, 0xa1, 0x84, 0xa1, 0x84, 0x8d, 0x52, + 0xc2, 0x34, 0x5d, 0x65, 0x29, 0xaa, 0x32, 0x91, 0x55, 0x5f, 0x32, 0xb4, 0x1b, 0x6c, 0x3b, 0x47, + 0x36, 0x2e, 0x1a, 0xf6, 0xfb, 0x76, 0xf8, 0x38, 0x09, 0x8c, 0xb5, 0xba, 0x41, 0xc4, 0xad, 0x7e, + 0xe0, 0x30, 0xf1, 0x16, 0x6f, 0xdd, 0x40, 0x82, 0xce, 0xe9, 0x19, 0xeb, 0xd9, 0x43, 0x2f, 0xd6, + 0x49, 0xd7, 0x1f, 0x3f, 0x94, 0x0f, 0xcb, 0xef, 0x3a, 0x1f, 0xae, 0x2e, 0x9a, 0xb5, 0xd6, 0xf9, + 0xfb, 0x46, 0x1d, 0x46, 0x16, 0x46, 0x16, 0x46, 0x76, 0x1b, 0x8d, 0x2c, 0xf3, 0x87, 0x7d, 0x16, + 0x4e, 0x62, 0xa9, 0x08, 0x8c, 0x6c, 0x45, 0xe0, 0x33, 0xeb, 0xfe, 0xb0, 0x3f, 0x5e, 0x84, 0x11, + 0xe2, 0x5e, 0x0d, 0x8e, 0x90, 0x9c, 0x84, 0x88, 0x1d, 0x4c, 0x43, 0x54, 0x54, 0x85, 0x2b, 0x66, + 0x08, 0xca, 0x7a, 0x08, 0xed, 0x2e, 0xeb, 0x0d, 0x3d, 0x2b, 0x64, 0x11, 0xb7, 0x43, 0x2e, 0x2e, + 0x6c, 0x67, 0xe9, 0xc9, 0x08, 0xe0, 0x91, 0x6a, 0x75, 0x11, 0xc0, 0x83, 0x00, 0x9e, 0x5f, 0x3e, + 0x48, 0x50, 0x9c, 0xde, 0x92, 0x10, 0x0b, 0x89, 0xd7, 0x13, 0x7c, 0xec, 0x01, 0xc2, 0x01, 0xc2, + 0x01, 0xc2, 0x29, 0xd4, 0x48, 0xf2, 0x40, 0xe6, 0xdb, 0xf7, 0x1e, 0x13, 0xdf, 0x32, 0xe2, 0x19, + 0xb8, 0x9f, 0x0c, 0x20, 0x3a, 0x63, 0x98, 0xa4, 0x26, 0x04, 0x59, 0xad, 0x2c, 0xca, 0xda, 0x58, + 0x52, 0x6a, 0x61, 0x51, 0xd7, 0xbe, 0x92, 0x56, 0xeb, 0x4a, 0x5a, 0x6d, 0x2b, 0x59, 0xb5, 0xac, + 0xf4, 0xce, 0xec, 0x27, 0xab, 0x4d, 0x45, 0x78, 0x4f, 0xba, 0x84, 0x62, 0x4a, 0xba, 0xe6, 0x38, + 0x0b, 0x04, 0x18, 0x5f, 0x98, 0x37, 0x60, 0x61, 0x1c, 0xa6, 0x4d, 0x67, 0x0c, 0x9e, 0x0f, 0x02, + 0x83, 0x00, 0x83, 0x00, 0x83, 0x00, 0x83, 0x00, 0x83, 0x80, 0xa2, 0x17, 0x9b, 0x3d, 0x57, 0x32, + 0x4d, 0xbc, 0x48, 0x89, 0x0a, 0xe1, 0x8d, 0xc5, 0xed, 0x98, 0x90, 0x0b, 0xe6, 0xb8, 0x94, 0x95, + 0xf8, 0xeb, 0xe4, 0xf8, 0xb1, 0x9a, 0x53, 0x4a, 0x65, 0x50, 0x4a, 0xa0, 0x94, 0x40, 0x29, 0x81, + 0x52, 0x82, 0x07, 0x01, 0x0f, 0x02, 0x1e, 0x04, 0x3c, 0x08, 0x50, 0x4a, 0xa0, 0x94, 0x60, 0x10, + 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x40, 0x29, 0xc9, 0xa0, 0x94, 0x04, 0xd6, 0x12, + 0x47, 0x50, 0xa9, 0x56, 0x5b, 0x2b, 0xbf, 0x06, 0xe7, 0x1f, 0xf1, 0x44, 0x3a, 0x7f, 0x4c, 0x27, + 0x72, 0x3d, 0x9d, 0x87, 0x81, 0x61, 0xae, 0xae, 0xcf, 0x59, 0x68, 0xd9, 0x21, 0xb3, 0xad, 0x41, + 0x18, 0x0c, 0xec, 0x87, 0x58, 0x2c, 0xac, 0x41, 0xe0, 0xb9, 0x5d, 0x57, 0x40, 0x0a, 0xfe, 0x53, + 0x3d, 0x94, 0x17, 0x06, 0x42, 0x10, 0xac, 0x54, 0x60, 0x88, 0x20, 0x58, 0x04, 0xc1, 0xa6, 0x56, + 0x0c, 0x8f, 0x04, 0xe5, 0x92, 0x7e, 0x39, 0x1c, 0x42, 0x66, 0xb5, 0xf4, 0x2a, 0x71, 0xbf, 0xa1, + 0xca, 0x6b, 0xcc, 0xf9, 0xfd, 0x86, 0xe0, 0x08, 0xfc, 0xa5, 0xc3, 0x20, 0x34, 0x12, 0x9f, 0x48, + 0xbd, 0x80, 0xcc, 0x02, 0x99, 0x05, 0x32, 0x8b, 0x82, 0xcc, 0x12, 0xad, 0xae, 0x92, 0x07, 0x3b, + 0x93, 0xe4, 0x7b, 0xcb, 0xed, 0x0f, 0x82, 0x90, 0x8b, 0xc6, 0x4a, 0x6b, 0xcf, 0xd8, 0xea, 0x61, + 0x89, 0x24, 0xe8, 0x79, 0x81, 0x81, 0xfa, 0xff, 0xab, 0x7f, 0x68, 0x75, 0xae, 0xaf, 0x3e, 0xb5, + 0xea, 0x54, 0xc3, 0xd1, 0x36, 0xa6, 0x24, 0x6f, 0xdc, 0x2d, 0xa3, 0x61, 0xf7, 0x73, 0x5d, 0x1b, + 0x0e, 0x02, 0x8f, 0xb0, 0x67, 0xb0, 0xac, 0xf6, 0xdc, 0xd2, 0xdb, 0x72, 0x4b, 0x6f, 0xc7, 0xbd, + 0xa8, 0x89, 0xe3, 0x8d, 0x43, 0xaf, 0xcb, 0x1d, 0x29, 0xcd, 0xb6, 0x97, 0x34, 0xe7, 0x44, 0x65, + 0x5a, 0x7c, 0x3c, 0x30, 0xe1, 0xe9, 0x21, 0x28, 0x97, 0xb0, 0x34, 0x86, 0xd8, 0xf2, 0x09, 0xf4, + 0x82, 0x44, 0x20, 0x44, 0x05, 0x27, 0xe2, 0x31, 0x95, 0x20, 0xc1, 0xf4, 0xce, 0x46, 0x82, 0xf9, + 0xd3, 0xc1, 0xfc, 0x91, 0xb9, 0x1a, 0x30, 0x80, 0xa6, 0xba, 0x22, 0x30, 0x81, 0xbf, 0x3e, 0x35, + 0x1e, 0xb3, 0x7b, 0x21, 0xeb, 0xc9, 0x30, 0x7b, 0xc7, 0x84, 0x63, 0x34, 0xa7, 0x97, 0x8f, 0xfb, + 0xfb, 0x07, 0xcf, 0xff, 0x7b, 0xd6, 0x54, 0xf3, 0x59, 0xeb, 0xc8, 0x2d, 0x36, 0x8d, 0x92, 0x5d, + 0x53, 0x29, 0x2e, 0x29, 0x8c, 0x24, 0x7c, 0x44, 0xf8, 0x88, 0x30, 0x90, 0x30, 0x90, 0xaf, 0x30, + 0x90, 0x07, 0x53, 0x41, 0x3a, 0x0d, 0x83, 0x21, 0x77, 0xfd, 0x87, 0xa9, 0x6e, 0x4e, 0x7e, 0x3c, + 0x75, 0x85, 0x1d, 0xd6, 0x73, 0x7d, 0x97, 0xbb, 0x81, 0x1f, 0xad, 0xff, 0xa7, 0xe4, 0x5f, 0xe2, + 0xb8, 0x19, 0xa3, 0xe4, 0x47, 0x68, 0xfb, 0xe7, 0xb5, 0xa3, 0x50, 0xb4, 0x85, 0x5e, 0x3f, 0x18, + 0x41, 0xbb, 0xe8, 0xb5, 0x83, 0x3d, 0x6f, 0x23, 0x4d, 0xac, 0xe7, 0x67, 0x07, 0x71, 0x18, 0x65, + 0xee, 0xfa, 0xad, 0x8b, 0xed, 0x5a, 0xb4, 0x5f, 0xc1, 0x64, 0x35, 0xad, 0xfb, 0x47, 0xe2, 0x17, + 0x54, 0x62, 0xc7, 0x96, 0x6c, 0x59, 0xbc, 0x93, 0xa4, 0x43, 0x8e, 0x4c, 0x33, 0x93, 0x46, 0x38, + 0x0f, 0x51, 0xd8, 0x95, 0xc4, 0xab, 0x25, 0x23, 0xc1, 0x65, 0x00, 0xaf, 0x06, 0xa7, 0x01, 0xbc, + 0x1a, 0xdc, 0x06, 0xf0, 0x6a, 0x7a, 0x3e, 0x51, 0x74, 0x74, 0x0a, 0x51, 0xfe, 0xcd, 0x93, 0x11, + 0x97, 0x9b, 0xac, 0xf1, 0x42, 0xdc, 0xff, 0x2f, 0xff, 0xfd, 0x51, 0x68, 0x1d, 0x18, 0xf1, 0xdb, + 0x2f, 0x32, 0x93, 0x97, 0xec, 0xce, 0x92, 0xfa, 0xae, 0x12, 0x39, 0xbc, 0x92, 0x31, 0x13, 0xc2, + 0x1e, 0x75, 0xc5, 0x44, 0xdb, 0x9e, 0xc3, 0x4b, 0x87, 0x79, 0x28, 0xb1, 0xce, 0x73, 0x8c, 0x33, + 0xb1, 0x37, 0x07, 0x89, 0xaa, 0xdc, 0x02, 0xc3, 0x43, 0xe6, 0xd4, 0x53, 0x3b, 0xf3, 0x30, 0x3c, + 0x30, 0x3c, 0x30, 0x3c, 0x30, 0x3c, 0x79, 0x32, 0x3c, 0x89, 0xaa, 0xdc, 0x06, 0xc3, 0x23, 0xb4, + 0x22, 0xe6, 0xb2, 0xd5, 0x11, 0x58, 0x19, 0x73, 0x49, 0x1a, 0xa8, 0x4c, 0x4e, 0x19, 0x26, 0x07, + 0x26, 0x07, 0x26, 0x27, 0xf3, 0x22, 0x20, 0xc5, 0x2b, 0xcb, 0xe2, 0x21, 0xc5, 0x4b, 0x13, 0x1d, + 0xbb, 0x4a, 0xd7, 0x22, 0x7c, 0x4f, 0x73, 0x0d, 0xbc, 0x4e, 0x13, 0x23, 0x7c, 0x4f, 0x82, 0x4b, + 0xb0, 0x56, 0x73, 0x22, 0xc5, 0x4b, 0x99, 0x20, 0x21, 0xc5, 0x0b, 0xe6, 0x4f, 0x7f, 0x57, 0x03, + 0x06, 0xd0, 0x54, 0x57, 0x04, 0x26, 0x50, 0x15, 0x3b, 0x26, 0x83, 0x25, 0x5b, 0xc5, 0x96, 0x21, + 0xc5, 0xeb, 0x17, 0xeb, 0x84, 0x14, 0x2f, 0xf8, 0x88, 0xf0, 0x11, 0xe1, 0x23, 0xc2, 0x40, 0x6e, + 0xa9, 0x81, 0x44, 0x8a, 0xd7, 0x0e, 0x52, 0xbc, 0xb2, 0x0f, 0x86, 0x14, 0x2f, 0x91, 0xf6, 0x0b, + 0x29, 0x5e, 0x46, 0x18, 0xb3, 0x1d, 0xa4, 0x78, 0x21, 0xc5, 0x0b, 0xbc, 0x1a, 0x9c, 0x06, 0xf0, + 0x6a, 0x70, 0x1b, 0xc0, 0xab, 0x21, 0xc5, 0x6b, 0x07, 0x29, 0x5e, 0xb4, 0x29, 0x5e, 0x02, 0xfb, + 0x32, 0x89, 0xdf, 0x7d, 0xbd, 0xea, 0xec, 0xff, 0xc9, 0x1e, 0x9f, 0x23, 0xa7, 0x1d, 0xc1, 0x57, + 0x93, 0x34, 0x1e, 0x33, 0xa9, 0x87, 0x4c, 0xea, 0x11, 0xcf, 0x79, 0xc0, 0xe3, 0x47, 0xa3, 0x4f, + 0x9b, 0x66, 0xca, 0xa3, 0x20, 0x34, 0x1c, 0x39, 0x45, 0x07, 0xb0, 0xf3, 0xf1, 0xec, 0x6a, 0x21, + 0xb3, 0x9b, 0x4f, 0x73, 0x6b, 0x4e, 0xa6, 0x86, 0x4e, 0x73, 0xe6, 0x77, 0x9a, 0x7b, 0xa9, 0x69, + 0x99, 0x81, 0x0d, 0xdf, 0xfa, 0x03, 0x4f, 0x60, 0x57, 0xb7, 0xf8, 0x69, 0x68, 0xdd, 0x26, 0xd5, + 0xc1, 0x46, 0xeb, 0x36, 0xb4, 0x6e, 0xfb, 0xe5, 0x83, 0x04, 0x77, 0x4f, 0xa2, 0xe9, 0x9a, 0x84, + 0x66, 0x6c, 0x68, 0xc6, 0x26, 0x89, 0x3f, 0x43, 0x33, 0xb6, 0x4c, 0x0f, 0xe4, 0xa1, 0xdd, 0xeb, + 0xb9, 0x5d, 0x8b, 0xf9, 0x0f, 0xae, 0xcf, 0x58, 0xe8, 0xfa, 0x0f, 0x16, 0xfb, 0xce, 0x99, 0x1f, + 0xb9, 0x81, 0x1f, 0xd1, 0x25, 0xf0, 0xbd, 0x30, 0x2e, 0x92, 0xc9, 0x91, 0xd9, 0xa7, 0x52, 0x6d, + 0x49, 0x53, 0x5f, 0xb2, 0xd4, 0x98, 0x19, 0xdc, 0x29, 0x7d, 0x32, 0xf9, 0x7d, 0x10, 0x78, 0xcc, + 0xf6, 0x29, 0x93, 0xc9, 0x4b, 0xa0, 0x3b, 0xb7, 0x87, 0xe1, 0x1a, 0xfb, 0xc8, 0x42, 0x0b, 0x99, + 0x09, 0x20, 0x85, 0x04, 0x78, 0xa1, 0xee, 0xc3, 0xc0, 0xf2, 0x9c, 0x81, 0x15, 0x3d, 0xfa, 0x5d, + 0x82, 0x7e, 0xd0, 0xcf, 0x9f, 0x0e, 0x8f, 0x03, 0x1e, 0x07, 0x3c, 0x8e, 0xed, 0xf1, 0x38, 0xd0, + 0xfe, 0x19, 0x1e, 0x04, 0x3c, 0x08, 0x78, 0x10, 0x34, 0x1e, 0x04, 0x59, 0x6d, 0x10, 0xe6, 0xdb, + 0xf7, 0x1e, 0x73, 0xe8, 0x43, 0x27, 0x67, 0x03, 0x21, 0x72, 0x52, 0xb6, 0x62, 0x93, 0xaa, 0xe0, + 0x64, 0x29, 0x3a, 0xe9, 0x0a, 0x4f, 0xba, 0xe2, 0x93, 0xad, 0x00, 0x69, 0x14, 0x21, 0x91, 0x42, + 0xa4, 0xa7, 0x56, 0x24, 0x52, 0x2c, 0xc4, 0x54, 0x0b, 0xdd, 0xc6, 0x52, 0x04, 0xf3, 0x0f, 0x82, + 0x88, 0x5b, 0x11, 0x8b, 0x22, 0x37, 0xf0, 0xad, 0xe1, 0xc0, 0x72, 0x98, 0x67, 0x4b, 0xc8, 0x08, + 0x5e, 0x3d, 0x2c, 0x8c, 0x15, 0x8c, 0x15, 0x8c, 0x15, 0x8c, 0x95, 0x71, 0xc6, 0x6a, 0xe8, 0xfa, + 0xfc, 0xb0, 0x2c, 0xc1, 0x56, 0x51, 0x06, 0xf9, 0x5f, 0xdb, 0xfe, 0xc3, 0xf8, 0x6d, 0x6e, 0x49, + 0x45, 0x56, 0x42, 0x4a, 0xe5, 0x85, 0xeb, 0x4b, 0xc9, 0xdd, 0x94, 0x60, 0x5c, 0x96, 0x86, 0xfb, + 0x6c, 0x7b, 0x43, 0x26, 0x71, 0xbc, 0x8f, 0xa1, 0xdd, 0xe5, 0x6e, 0xe0, 0x9f, 0xb9, 0x0f, 0x6e, + 0x1c, 0x3f, 0x5d, 0x24, 0x1f, 0x77, 0x24, 0x21, 0x0f, 0xf5, 0xc2, 0xfe, 0x9e, 0x7b, 0x11, 0xa9, + 0x94, 0x4f, 0x2a, 0x27, 0x47, 0xc7, 0xe5, 0x93, 0x6a, 0x8e, 0x65, 0xc5, 0xd0, 0xfc, 0xe1, 0x36, + 0x92, 0xa4, 0x44, 0xa0, 0x9f, 0x7c, 0x25, 0x49, 0xc5, 0xb7, 0xc0, 0xcf, 0x6f, 0x35, 0xb7, 0xa8, + 0xb7, 0x15, 0x2a, 0xbd, 0x2f, 0xfb, 0x93, 0xa8, 0xf4, 0x2e, 0xd7, 0x6f, 0xc4, 0x6d, 0x4e, 0x3e, + 0xcd, 0x04, 0x6e, 0x73, 0x40, 0x90, 0x81, 0x20, 0x03, 0x41, 0x06, 0x82, 0x4c, 0x19, 0x41, 0x86, + 0xdb, 0x1c, 0x19, 0x9b, 0x8a, 0xdb, 0x1c, 0x18, 0x2b, 0x18, 0x2b, 0x18, 0x2b, 0x18, 0xab, 0x4c, + 0xa7, 0x06, 0xb7, 0x39, 0xaf, 0xfe, 0xc2, 0x6d, 0x4e, 0xa6, 0xe1, 0x70, 0x9b, 0x23, 0x46, 0x44, + 0x70, 0x9b, 0x93, 0x0f, 0x59, 0xc1, 0x6d, 0x0e, 0xad, 0xcb, 0x81, 0xdb, 0x1c, 0x95, 0xb7, 0x39, + 0x28, 0x63, 0xa7, 0x5a, 0x16, 0x94, 0xcb, 0x80, 0xf2, 0x6a, 0x64, 0x17, 0x03, 0x2f, 0xea, 0x9c, + 0x3f, 0x0c, 0x1a, 0xce, 0xe0, 0x66, 0x3c, 0x9f, 0x1c, 0x65, 0x9b, 0x8a, 0xbd, 0x42, 0x24, 0xb9, + 0x3a, 0x24, 0xcb, 0x2f, 0x2d, 0x23, 0xbf, 0x14, 0xf9, 0xa5, 0x52, 0xc9, 0x04, 0x54, 0xb4, 0x21, + 0xe1, 0x1e, 0x50, 0xd1, 0x46, 0xb2, 0x7a, 0x92, 0xa2, 0xa6, 0xa8, 0xd5, 0x95, 0x34, 0xb5, 0x25, + 0x4d, 0x7d, 0xc9, 0x52, 0x63, 0x66, 0xb8, 0x46, 0xa8, 0x68, 0x03, 0xcf, 0xc7, 0x40, 0xcf, 0x47, + 0xa0, 0xc3, 0x8b, 0x2a, 0xc7, 0xca, 0xb7, 0xb3, 0x20, 0xc4, 0x47, 0x4b, 0xe9, 0xb3, 0x9a, 0x58, + 0x47, 0x59, 0x8c, 0x43, 0x2a, 0xd4, 0x11, 0x15, 0x5e, 0x49, 0xb9, 0x8c, 0x4a, 0xca, 0x7a, 0x20, + 0x34, 0x54, 0x52, 0x56, 0xe2, 0x30, 0x16, 0xbe, 0xb8, 0x0e, 0xb3, 0x78, 0x68, 0xfb, 0x91, 0xcb, + 0xad, 0xc0, 0xf7, 0x1e, 0x67, 0x0a, 0x38, 0x12, 0x4f, 0x45, 0xfd, 0x62, 0x2c, 0xb1, 0xfc, 0x54, + 0x11, 0xf5, 0xcf, 0xc0, 0x4f, 0x81, 0x9f, 0x12, 0x87, 0xea, 0x85, 0x3b, 0x70, 0x84, 0x8e, 0x9b, + 0x60, 0x87, 0x4d, 0x9f, 0x52, 0x94, 0xd1, 0x97, 0x20, 0xe4, 0xdd, 0x21, 0x8f, 0x68, 0x6a, 0x51, + 0x3e, 0x3d, 0x1e, 0xca, 0x18, 0xca, 0x18, 0xca, 0x18, 0xca, 0x18, 0xca, 0x78, 0xf5, 0x3b, 0x79, + 0xc1, 0x83, 0x65, 0x3b, 0xff, 0xb2, 0xbb, 0xcc, 0xef, 0x3e, 0x5a, 0xdd, 0x2f, 0xb6, 0xff, 0xc0, + 0x08, 0x94, 0xf2, 0xea, 0x61, 0xa0, 0x9c, 0xa1, 0x9c, 0xa1, 0x9c, 0xa1, 0x9c, 0xa1, 0x9c, 0x57, + 0xbf, 0x53, 0x18, 0x0c, 0x39, 0x0b, 0x2d, 0xd7, 0x11, 0xaf, 0x90, 0x9f, 0x1e, 0x0d, 0x25, 0x0c, + 0x25, 0x0c, 0x25, 0xbc, 0x85, 0x4a, 0xd8, 0x09, 0x38, 0x67, 0x8e, 0xf5, 0xef, 0xa1, 0xed, 0x50, + 0x28, 0xe2, 0x77, 0x02, 0x9f, 0xd9, 0xb4, 0x39, 0x67, 0xa1, 0x2f, 0x3c, 0x87, 0xa6, 0xb0, 0xbb, + 0x7b, 0x5b, 0xb4, 0x4e, 0xda, 0x3f, 0x6f, 0x4b, 0xd6, 0x49, 0x7b, 0xf2, 0x6d, 0x29, 0xfe, 0x63, + 0xf2, 0x7d, 0xf9, 0xb6, 0x68, 0x55, 0x66, 0xdf, 0x57, 0x6f, 0x8b, 0x56, 0xb5, 0xbd, 0x77, 0x77, + 0xb7, 0xbf, 0xf7, 0xe3, 0x70, 0xb4, 0xf9, 0x07, 0xc5, 0x49, 0x68, 0x3b, 0x4f, 0xa1, 0xa2, 0xc3, + 0x7e, 0xdf, 0x0e, 0x1f, 0xad, 0xd8, 0x20, 0x59, 0xdd, 0x20, 0xe2, 0x56, 0x3f, 0x70, 0x28, 0x82, + 0x47, 0xd7, 0x0c, 0x24, 0x2a, 0xec, 0x8d, 0xf5, 0xec, 0xa1, 0x17, 0xeb, 0xa4, 0xeb, 0x8f, 0x1f, + 0xca, 0x87, 0xe5, 0x77, 0x9d, 0x0f, 0x57, 0x17, 0xcd, 0x5a, 0xeb, 0xfc, 0x7d, 0xa3, 0x0e, 0x23, + 0x0b, 0x23, 0x0b, 0x23, 0xbb, 0x8d, 0x46, 0x96, 0xf9, 0xc3, 0x3e, 0x0b, 0x27, 0xd1, 0x26, 0x04, + 0x46, 0xb6, 0x22, 0xf0, 0x99, 0x75, 0x7f, 0xd8, 0x1f, 0x2f, 0xc2, 0x08, 0x51, 0x42, 0xe6, 0x47, + 0x09, 0x09, 0x88, 0xf7, 0x52, 0x13, 0xa9, 0xc3, 0xdd, 0x3e, 0x0b, 0x05, 0xf6, 0x3c, 0x9f, 0x3e, + 0x0f, 0x5d, 0xcf, 0xa5, 0x1a, 0x58, 0xc4, 0xea, 0x20, 0x56, 0xe7, 0x97, 0x0f, 0xf2, 0x22, 0xdb, + 0x7a, 0x60, 0xfe, 0xcc, 0x34, 0x8a, 0xbf, 0x70, 0x98, 0x7f, 0x3e, 0x7a, 0x12, 0x02, 0x7f, 0x03, + 0x7f, 0x6b, 0x8b, 0xbf, 0xd1, 0x93, 0x70, 0x07, 0x3d, 0x09, 0xe5, 0xa9, 0x1d, 0x6a, 0xf5, 0x23, + 0x4d, 0x0d, 0x49, 0x53, 0x47, 0xb2, 0xd4, 0x92, 0x58, 0xf5, 0x24, 0x58, 0x4d, 0x91, 0xa9, 0xab, + 0xe4, 0xc1, 0xae, 0xef, 0x72, 0xd7, 0xf6, 0x64, 0x15, 0x0b, 0x9c, 0x1f, 0x0e, 0x45, 0x02, 0x65, + 0x2b, 0x39, 0xa9, 0xca, 0x4e, 0x96, 0xd2, 0x93, 0xae, 0xfc, 0xa4, 0x2b, 0x41, 0xd9, 0xca, 0x90, + 0x46, 0x29, 0x12, 0x29, 0xc7, 0x64, 0x71, 0x50, 0x24, 0x70, 0xa3, 0x21, 0x50, 0x24, 0x50, 0x3f, + 0xe3, 0xb2, 0x34, 0x1c, 0x8a, 0x04, 0x8a, 0x11, 0x11, 0x14, 0x09, 0xcc, 0x87, 0xac, 0xa0, 0x48, + 0x20, 0xe9, 0x7c, 0x29, 0xea, 0x92, 0xf7, 0xed, 0xef, 0x6e, 0x7f, 0xd8, 0x97, 0xe5, 0x62, 0xcc, + 0x0f, 0x07, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, + 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xa5, 0x2e, 0x06, 0xea, 0x90, 0xcb, 0x0b, + 0xca, 0x9b, 0xc4, 0xa2, 0x1d, 0xcc, 0xc7, 0xa6, 0xa0, 0xb3, 0xac, 0x28, 0x90, 0x86, 0xce, 0xb2, + 0xb8, 0x93, 0xd7, 0xc7, 0x67, 0xc4, 0x9d, 0xbc, 0x54, 0x53, 0x81, 0x3b, 0x79, 0x10, 0x66, 0x20, + 0xcc, 0x40, 0x98, 0x81, 0x30, 0x03, 0x61, 0x06, 0xc2, 0x0c, 0x84, 0x19, 0x08, 0x33, 0x10, 0x66, + 0x20, 0xcc, 0x40, 0x98, 0x19, 0x70, 0x16, 0x71, 0x27, 0x0f, 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, + 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, 0x5c, + 0x0c, 0x91, 0x62, 0x12, 0x5f, 0x3d, 0x5b, 0x9c, 0xd2, 0x38, 0xcf, 0x97, 0x5c, 0x99, 0x8c, 0x05, + 0xe7, 0x02, 0xce, 0x05, 0x9c, 0x0b, 0x38, 0x17, 0xc6, 0x39, 0x17, 0x34, 0x75, 0xdb, 0xd6, 0x29, + 0x32, 0x91, 0x75, 0xdc, 0x96, 0xc6, 0x10, 0x5b, 0xd7, 0x4d, 0x82, 0xf9, 0x43, 0x48, 0x9a, 0xea, + 0x90, 0x34, 0x81, 0xdd, 0x42, 0xc5, 0xef, 0x2a, 0x9a, 0xc4, 0xca, 0x92, 0x83, 0x82, 0xd0, 0xd8, + 0xbf, 0x14, 0xed, 0x46, 0x5b, 0xf1, 0xac, 0x3a, 0x8d, 0xc8, 0xfe, 0xe3, 0x69, 0x52, 0x39, 0x2a, + 0x7e, 0xdc, 0xb7, 0xbf, 0x5b, 0x7d, 0xc6, 0x43, 0xb7, 0x2b, 0xbe, 0x02, 0xda, 0xb3, 0x67, 0xa3, + 0xfa, 0x99, 0x96, 0x28, 0x1a, 0xd5, 0xcf, 0x54, 0xa1, 0x60, 0x54, 0x3f, 0xcb, 0x74, 0x18, 0x50, + 0xfd, 0x0c, 0x91, 0xd6, 0x1a, 0x39, 0xeb, 0x88, 0xb4, 0x96, 0xea, 0x01, 0x11, 0x46, 0x5a, 0x77, + 0xbd, 0xa1, 0xc3, 0x64, 0xc4, 0x58, 0x4f, 0x06, 0x02, 0x3b, 0x29, 0x5b, 0xb1, 0x49, 0x55, 0x70, + 0xb2, 0x14, 0x9d, 0x74, 0x85, 0x27, 0x5d, 0xf1, 0xc9, 0x56, 0x80, 0x74, 0xe4, 0xd2, 0x4e, 0x2e, + 0xd8, 0x49, 0xd7, 0x61, 0x3e, 0x77, 0xf9, 0x63, 0xc8, 0x7a, 0x32, 0xd8, 0x49, 0xc2, 0xbb, 0xcc, + 0xc2, 0xf9, 0xf4, 0x55, 0xde, 0xdb, 0x91, 0x84, 0x13, 0x3a, 0x5b, 0xc0, 0x8b, 0xda, 0xff, 0x76, + 0x2e, 0xea, 0xad, 0xeb, 0xf3, 0x0f, 0x9d, 0xf3, 0xcb, 0x0f, 0x8d, 0x4f, 0x67, 0x75, 0xea, 0xa3, + 0x1a, 0x5f, 0x10, 0x47, 0xe4, 0x91, 0x1e, 0x3b, 0x52, 0xa2, 0x3d, 0x5e, 0x58, 0xcb, 0xce, 0x4d, + 0xeb, 0xd3, 0xfb, 0x42, 0x1e, 0x62, 0x16, 0xd4, 0x2f, 0x65, 0xeb, 0xaf, 0x66, 0xbd, 0xdc, 0xa9, + 0xff, 0x6f, 0xab, 0x7e, 0x7d, 0x59, 0x6b, 0x14, 0x0c, 0xbf, 0xdc, 0x6f, 0xc3, 0x54, 0xc4, 0x1b, + 0xde, 0x70, 0x23, 0x5e, 0xe3, 0x3c, 0xa4, 0x35, 0x17, 0x17, 0xae, 0x5f, 0xf7, 0xd8, 0xd8, 0x5e, + 0x8f, 0x15, 0x8f, 0x3f, 0xf4, 0x3c, 0x42, 0x45, 0x7e, 0x61, 0x7f, 0x97, 0x37, 0xd8, 0x55, 0xe8, + 0xb0, 0x90, 0x39, 0xef, 0x1f, 0xa7, 0x43, 0x6d, 0x71, 0x64, 0x47, 0xc4, 0x38, 0xbd, 0xc7, 0x34, + 0x1e, 0x04, 0xde, 0x12, 0xbc, 0x25, 0x78, 0x4b, 0xf0, 0x96, 0x8c, 0xf3, 0x96, 0xc4, 0x77, 0x1b, + 0x5f, 0xeb, 0x29, 0x95, 0xb6, 0x3c, 0xc4, 0x30, 0x18, 0x72, 0x39, 0xf1, 0x85, 0xe3, 0x81, 0x60, + 0x90, 0x60, 0x90, 0x60, 0x90, 0x60, 0x90, 0x8c, 0x33, 0x48, 0x43, 0xd7, 0xe7, 0x47, 0x15, 0x09, + 0xf6, 0xe8, 0x1d, 0x32, 0x97, 0x5e, 0xe5, 0x25, 0x23, 0x73, 0x49, 0xd0, 0x78, 0xc8, 0x5c, 0x32, + 0x56, 0x44, 0x4a, 0xef, 0x2a, 0x95, 0xa3, 0xe3, 0x4a, 0xa5, 0x78, 0x7c, 0x78, 0x5c, 0x3c, 0xa9, + 0x56, 0x4b, 0x47, 0x25, 0xe4, 0x30, 0x69, 0xf7, 0xf4, 0xad, 0xce, 0x61, 0x0a, 0xdd, 0x87, 0x07, + 0x16, 0x4a, 0x70, 0x30, 0xa6, 0x03, 0xc1, 0xc1, 0x80, 0x83, 0x01, 0x07, 0x03, 0x0e, 0x86, 0x71, + 0x0e, 0x06, 0xe2, 0x03, 0x32, 0x2e, 0xe0, 0xb3, 0x8b, 0xd8, 0xd6, 0xf5, 0xf9, 0x1f, 0x7f, 0xd4, + 0xaf, 0x11, 0x1f, 0x20, 0x60, 0x2d, 0xaf, 0x2e, 0x3b, 0x37, 0x7f, 0xdd, 0xb4, 0xea, 0x17, 0x9d, + 0xf7, 0x57, 0x57, 0x2d, 0x5c, 0x66, 0xe7, 0x43, 0xaf, 0xe1, 0x32, 0x3b, 0xdb, 0x60, 0xa6, 0x5e, + 0x66, 0x23, 0x4f, 0x53, 0x7a, 0x7e, 0xde, 0x53, 0x52, 0x17, 0xda, 0x06, 0x88, 0xb2, 0x4f, 0x68, + 0x1b, 0x80, 0x64, 0x16, 0x7d, 0x7c, 0x37, 0x24, 0xb3, 0x48, 0x35, 0x13, 0x48, 0x66, 0x01, 0x59, + 0x05, 0xb2, 0x0a, 0x64, 0x15, 0xc8, 0x2a, 0x90, 0x55, 0x39, 0x20, 0xab, 0x90, 0xcc, 0x22, 0x7c, + 0x2d, 0x91, 0xcc, 0x22, 0x6e, 0x29, 0x91, 0xcc, 0x92, 0x47, 0x53, 0x01, 0xfe, 0x2f, 0xdb, 0x60, + 0x48, 0x66, 0x79, 0xa2, 0x7a, 0x90, 0xcc, 0x02, 0x6f, 0x09, 0xde, 0x12, 0xbc, 0x25, 0x78, 0x4b, + 0x6b, 0x4e, 0x0d, 0x92, 0x59, 0xa4, 0x18, 0x22, 0x24, 0xb3, 0xc0, 0x20, 0xc1, 0x20, 0xc1, 0x20, + 0xc1, 0x20, 0xbd, 0x74, 0x6a, 0x90, 0xcc, 0xa2, 0x11, 0x01, 0x83, 0x64, 0x16, 0x81, 0xe3, 0x21, + 0x99, 0xc5, 0x58, 0x11, 0x41, 0x32, 0x8b, 0x09, 0x4f, 0x47, 0x32, 0x0b, 0x92, 0x59, 0xe0, 0x60, + 0xc0, 0xc1, 0x80, 0x83, 0x01, 0x07, 0x63, 0xfd, 0xa9, 0x41, 0x7c, 0x40, 0xc6, 0x05, 0x44, 0x32, + 0x0b, 0xc9, 0x5a, 0x22, 0x99, 0x25, 0x8f, 0x7a, 0x0d, 0x97, 0xd9, 0xd9, 0x06, 0x43, 0x32, 0x0b, + 0x92, 0x59, 0x36, 0x4f, 0x66, 0x41, 0xc3, 0x31, 0xd5, 0xb2, 0xa0, 0x5c, 0x06, 0x74, 0x69, 0x36, + 0x76, 0x61, 0x7f, 0xbf, 0x98, 0x4c, 0x28, 0x47, 0x8d, 0xc6, 0xa2, 0x41, 0x4f, 0x7c, 0x87, 0xb1, + 0xf1, 0x43, 0xd1, 0x5a, 0x4c, 0x4b, 0x56, 0x00, 0xad, 0xc5, 0x54, 0x79, 0xf5, 0x68, 0x2d, 0x96, + 0xe9, 0x30, 0xa0, 0xb5, 0x18, 0xb2, 0x31, 0x35, 0x50, 0x43, 0xd2, 0xd4, 0x91, 0x2c, 0xb5, 0x64, + 0x86, 0x9f, 0x43, 0x98, 0x8d, 0xe9, 0x72, 0xd7, 0xf6, 0x2c, 0x87, 0x79, 0xf6, 0xa3, 0x8c, 0x9c, + 0xcc, 0xe7, 0xc3, 0xe1, 0xe6, 0x45, 0xb6, 0x92, 0x93, 0xaa, 0xec, 0x64, 0x29, 0x3d, 0xe9, 0xca, + 0x4f, 0xba, 0x12, 0x94, 0xad, 0x0c, 0xe9, 0xe8, 0xa4, 0x9d, 0xdc, 0x84, 0x76, 0x1d, 0x96, 0x25, + 0x5c, 0xba, 0x1c, 0x23, 0xb4, 0xeb, 0xe5, 0x17, 0x41, 0x68, 0x97, 0xb8, 0xf1, 0x10, 0xda, 0x65, + 0xac, 0x88, 0x54, 0xca, 0x27, 0x95, 0x93, 0xa3, 0xe3, 0xf2, 0x09, 0x02, 0xba, 0xb4, 0x7b, 0xfa, + 0x36, 0x07, 0x74, 0xf5, 0xed, 0xef, 0x6e, 0x7f, 0xd8, 0x97, 0xe5, 0x62, 0xcc, 0x0f, 0x07, 0x17, + 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, + 0x17, 0x03, 0x2e, 0x06, 0x5c, 0x0c, 0xa5, 0x2e, 0x06, 0x02, 0xca, 0xa4, 0x07, 0x13, 0x45, 0x83, + 0x1e, 0xca, 0x22, 0x8b, 0x42, 0x66, 0x28, 0x8b, 0x8c, 0x8b, 0x78, 0x7d, 0x1c, 0x45, 0x5c, 0xc4, + 0x4b, 0xb5, 0x0f, 0xb8, 0x88, 0x07, 0x4b, 0x06, 0x96, 0x0c, 0x2c, 0x19, 0x58, 0x32, 0xb0, 0x64, + 0x60, 0xc9, 0xc0, 0x92, 0x81, 0x25, 0x03, 0x4b, 0x06, 0x96, 0x0c, 0x2c, 0x99, 0x01, 0x67, 0x11, + 0x17, 0xf1, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x80, 0x8b, 0x01, 0x17, 0x03, 0x2e, 0x06, 0x5c, + 0x0c, 0xb8, 0x18, 0x70, 0x31, 0xe0, 0x62, 0xc0, 0xc5, 0x10, 0x29, 0x26, 0xf1, 0x7d, 0xb3, 0xc5, + 0x29, 0x8d, 0xf3, 0x5c, 0x81, 0xf8, 0xe9, 0x58, 0x70, 0x2e, 0xe0, 0x5c, 0xc0, 0xb9, 0x80, 0x73, + 0x61, 0x9c, 0x73, 0xc1, 0xfc, 0x61, 0x9f, 0x85, 0x93, 0x78, 0x23, 0x09, 0x25, 0x1c, 0x2b, 0x84, + 0x63, 0xd4, 0xfd, 0x61, 0x7f, 0xbc, 0x68, 0x23, 0xc4, 0xa1, 0x89, 0x38, 0x9f, 0xb9, 0x8d, 0x43, + 0x43, 0x45, 0x33, 0xd5, 0x42, 0xa0, 0x6e, 0xf3, 0x75, 0x29, 0x65, 0x76, 0x33, 0xe8, 0x69, 0x53, + 0xc4, 0xec, 0x8d, 0x42, 0x49, 0x13, 0x2d, 0x61, 0x6a, 0x24, 0xab, 0x20, 0xa2, 0x0e, 0x5c, 0x7a, + 0x69, 0xca, 0x26, 0x49, 0xe9, 0xf7, 0x3f, 0xdd, 0x27, 0x53, 0x4a, 0x8c, 0x28, 0x49, 0x91, 0x2c, + 0x21, 0x19, 0x44, 0x23, 0x95, 0x48, 0xa4, 0x93, 0x85, 0xcd, 0x77, 0x72, 0xb3, 0x4f, 0x6c, 0xb8, + 0xe7, 0x59, 0xf7, 0x5a, 0xd6, 0x1e, 0xa7, 0xd8, 0xdc, 0xcd, 0x36, 0x75, 0xb3, 0xdd, 0x7c, 0xfd, + 0x9e, 0x6c, 0xb0, 0x1f, 0x85, 0x81, 0xdb, 0xdf, 0x78, 0x13, 0x12, 0xf7, 0x62, 0xfc, 0xe1, 0x0d, + 0xf7, 0x3e, 0x5d, 0x20, 0x7a, 0x6a, 0x2e, 0x23, 0x0b, 0x47, 0xf1, 0x9c, 0x7b, 0xd8, 0xfc, 0x4d, + 0x45, 0x10, 0x0a, 0xc2, 0x88, 0x02, 0x61, 0x04, 0xc0, 0xa2, 0x63, 0x3f, 0x5e, 0x17, 0xcd, 0xb4, + 0x4b, 0xda, 0x10, 0xea, 0xc2, 0x54, 0xa5, 0xa7, 0xde, 0xac, 0x99, 0xb8, 0x64, 0x32, 0x0d, 0x19, + 0x33, 0x35, 0x32, 0x93, 0x7e, 0x22, 0x48, 0xbd, 0xec, 0x07, 0x47, 0x34, 0x23, 0x27, 0x9c, 0x71, + 0x13, 0xce, 0xa8, 0x09, 0x39, 0x58, 0x6a, 0xa0, 0x5b, 0xd6, 0x9c, 0x85, 0x42, 0xc8, 0x7c, 0x87, + 0xfd, 0xdf, 0xb7, 0x60, 0x18, 0x59, 0x83, 0xc0, 0x9d, 0x54, 0xcb, 0xcf, 0xb8, 0xdf, 0x33, 0x09, + 0x5c, 0x7e, 0x74, 0xc6, 0x6d, 0x12, 0x93, 0x48, 0x25, 0x8c, 0x9b, 0x17, 0xc9, 0xc1, 0x8b, 0x3b, + 0xb6, 0xa2, 0x8f, 0x2f, 0xd9, 0x31, 0x26, 0x3b, 0xce, 0x24, 0xc7, 0x5a, 0x0f, 0x9f, 0x5e, 0x54, + 0x8a, 0xd2, 0xd2, 0xd9, 0x14, 0x5f, 0x28, 0x7d, 0x69, 0x04, 0x54, 0x4d, 0xd7, 0x47, 0x39, 0x50, + 0x29, 0x09, 0x72, 0x65, 0x41, 0xae, 0x34, 0x48, 0x95, 0x87, 0x9e, 0x54, 0xb4, 0xf0, 0x7a, 0xe9, + 0xb6, 0xe3, 0x84, 0x2c, 0x8a, 0xe8, 0xd2, 0xb4, 0x67, 0x03, 0xd0, 0x24, 0x6a, 0x17, 0x51, 0x31, + 0x9d, 0x50, 0xe5, 0x50, 0xab, 0x1e, 0x69, 0x2a, 0x48, 0x9a, 0x2a, 0x92, 0xa2, 0x92, 0xc4, 0xaa, + 0x26, 0xc1, 0x2a, 0x2a, 0x59, 0x01, 0xb2, 0xdb, 0xfb, 0x44, 0xde, 0x3d, 0x66, 0xf7, 0x68, 0x9a, + 0x2e, 0x26, 0xc8, 0x85, 0x20, 0x18, 0xb8, 0xd0, 0x9c, 0x12, 0xb2, 0xfb, 0xfb, 0xd3, 0x62, 0x20, + 0x07, 0x33, 0x1d, 0xb9, 0x05, 0x45, 0x41, 0xd0, 0x9f, 0x03, 0xd6, 0x06, 0xd6, 0x06, 0xd6, 0xc6, + 0x98, 0x82, 0x20, 0x54, 0x00, 0x59, 0x12, 0x50, 0x26, 0x06, 0xcc, 0xe4, 0xaa, 0x4c, 0x86, 0x4a, + 0x93, 0xa7, 0xda, 0x64, 0xa9, 0x38, 0xe9, 0xaa, 0x4e, 0xba, 0xca, 0x93, 0xaa, 0xfa, 0x68, 0x54, + 0x20, 0x91, 0x2a, 0xa4, 0x07, 0xe0, 0x4b, 0xe7, 0xc5, 0x1d, 0x7c, 0xab, 0x58, 0xb4, 0xfa, 0x6b, + 0x0e, 0x86, 0xbd, 0x23, 0x1c, 0xa3, 0x69, 0x73, 0xce, 0x42, 0x9f, 0x3c, 0x49, 0xaf, 0xb0, 0xbb, + 0x7b, 0x5b, 0xb4, 0x4e, 0xda, 0x3f, 0x6f, 0x4b, 0xd6, 0x49, 0x7b, 0xf2, 0x6d, 0x29, 0xfe, 0x63, + 0xf2, 0x7d, 0xf9, 0xb6, 0x68, 0x55, 0x66, 0xdf, 0x57, 0x6f, 0x8b, 0x56, 0xb5, 0xbd, 0x77, 0x77, + 0xb7, 0xbf, 0xf7, 0xe3, 0x70, 0xb4, 0xf9, 0x07, 0x77, 0xff, 0xfb, 0xf6, 0xee, 0x6e, 0xf0, 0xe3, + 0x72, 0x34, 0xfe, 0x7f, 0x63, 0xd4, 0xfe, 0xdb, 0xde, 0xef, 0x05, 0x24, 0xde, 0x50, 0xe4, 0xf6, + 0x0f, 0x3d, 0xee, 0x76, 0xed, 0x88, 0x5b, 0x0f, 0x61, 0x30, 0x1c, 0x48, 0x80, 0x0d, 0x4b, 0x23, + 0x02, 0x3f, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x3f, 0x18, 0x84, 0x1f, 0x22, 0x1e, 0xba, 0xfe, 0x83, + 0x14, 0xe4, 0x80, 0xac, 0x18, 0x11, 0x67, 0xc6, 0xf4, 0xac, 0x98, 0x81, 0xdb, 0x9f, 0xc5, 0xae, + 0x2f, 0x45, 0xbe, 0x2c, 0xfd, 0x04, 0x25, 0x9b, 0xc5, 0x9d, 0x73, 0x94, 0x6c, 0x06, 0x37, 0xab, + 0x05, 0xe0, 0x00, 0x37, 0x2b, 0xcf, 0x5c, 0x80, 0x9b, 0x85, 0x6f, 0x05, 0xdf, 0x0a, 0xbe, 0x15, + 0x7c, 0x2b, 0x05, 0xbe, 0x15, 0xb8, 0xd9, 0x14, 0x03, 0x81, 0x9b, 0x55, 0xed, 0xff, 0x82, 0x9b, + 0x05, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x50, 0x8c, 0x1f, 0xc0, 0xcd, 0x9a, 0xe5, 0x6c, + 0x6f, 0x19, 0x37, 0x8b, 0x32, 0x46, 0x9b, 0xd8, 0x0b, 0xf1, 0x5c, 0x46, 0xa1, 0xe1, 0x46, 0xbc, + 0xc6, 0xb9, 0xe0, 0xb4, 0x94, 0x0b, 0xd7, 0xaf, 0x7b, 0x6c, 0xac, 0xfb, 0xc7, 0x30, 0xcd, 0x1f, + 0x7a, 0x9e, 0x40, 0x96, 0xfb, 0xc2, 0xfe, 0x4e, 0xf7, 0xf0, 0xab, 0xd0, 0x61, 0x21, 0x73, 0xde, + 0x3f, 0x4e, 0x1f, 0x8d, 0x4a, 0x56, 0xd2, 0x95, 0x82, 0x82, 0xf2, 0x56, 0x4d, 0xb7, 0x3f, 0xab, + 0x46, 0x74, 0x9d, 0xcc, 0xa6, 0x19, 0x4f, 0x06, 0x05, 0xae, 0x4c, 0x2c, 0x70, 0xf5, 0x2b, 0x81, + 0x53, 0x56, 0x69, 0x2a, 0x4b, 0x15, 0xa5, 0xd8, 0x29, 0x89, 0xac, 0x7f, 0x05, 0xae, 0xcf, 0x1c, + 0x71, 0x85, 0x03, 0x16, 0x9e, 0xab, 0x59, 0xd5, 0x80, 0x32, 0xaa, 0x06, 0x68, 0xe0, 0x50, 0xa2, + 0x6a, 0xc0, 0xeb, 0xdf, 0x48, 0x58, 0xd5, 0x80, 0x48, 0xb0, 0x70, 0xcc, 0x1f, 0x78, 0x54, 0x08, + 0xd0, 0x90, 0x89, 0x42, 0x85, 0x00, 0x25, 0x4c, 0x12, 0x2a, 0x04, 0x64, 0x3b, 0x07, 0xa8, 0x10, + 0xb0, 0x83, 0xb8, 0x20, 0xd5, 0x2a, 0x48, 0x9a, 0x2a, 0x92, 0xa2, 0x92, 0xcc, 0xa0, 0x2a, 0x51, + 0x21, 0x60, 0x9d, 0x2a, 0x78, 0xaa, 0x10, 0x10, 0xf3, 0x9b, 0xdb, 0x54, 0x20, 0x00, 0x21, 0xa8, + 0xc2, 0xdd, 0x58, 0x98, 0x1a, 0x98, 0x1a, 0x84, 0xa0, 0x22, 0x04, 0x55, 0x3e, 0x5a, 0x26, 0x47, + 0xcd, 0x32, 0x54, 0x9a, 0x3c, 0xd5, 0x26, 0x4b, 0xc5, 0x49, 0x57, 0x75, 0xd2, 0x55, 0x9e, 0x54, + 0xd5, 0x47, 0xa3, 0x02, 0x89, 0x54, 0x21, 0x3d, 0xfa, 0x5e, 0x3a, 0x2f, 0x08, 0x41, 0x4d, 0x31, + 0x10, 0x42, 0x50, 0x15, 0x9f, 0x3d, 0x8a, 0x10, 0xd4, 0x38, 0x0c, 0x94, 0x1e, 0x2b, 0x4c, 0x86, + 0x01, 0x52, 0x00, 0x52, 0x00, 0x52, 0x00, 0x52, 0x00, 0x52, 0x00, 0x52, 0x00, 0x52, 0x30, 0x0c, + 0x29, 0x0c, 0x07, 0x11, 0x0f, 0x99, 0xdd, 0xb7, 0x5c, 0x9f, 0xb3, 0xb0, 0x67, 0x77, 0x99, 0xe5, + 0x3a, 0xf4, 0xc8, 0x61, 0xf5, 0xb0, 0x40, 0x12, 0x40, 0x12, 0x40, 0x12, 0x40, 0x12, 0x26, 0x21, + 0x09, 0x7a, 0xfd, 0xb5, 0x83, 0xe4, 0x15, 0x24, 0xaf, 0xac, 0x0f, 0x1b, 0x9e, 0x8f, 0x8c, 0x9d, + 0xfe, 0x15, 0xf9, 0x2a, 0x1b, 0x19, 0x0a, 0xe4, 0xab, 0x20, 0x5f, 0xc5, 0xf4, 0x7c, 0x95, 0x95, + 0x7a, 0x40, 0x6d, 0x8a, 0xca, 0x14, 0xea, 0x21, 0x33, 0xc5, 0xf0, 0xcc, 0x94, 0x85, 0xe4, 0x0b, + 0x13, 0xd3, 0x52, 0xa2, 0xbe, 0xc0, 0x5c, 0x94, 0xa8, 0x8f, 0xb6, 0x95, 0x12, 0x5d, 0x49, 0x24, + 0xa0, 0x20, 0x01, 0x65, 0xfd, 0x83, 0x04, 0x77, 0xfa, 0xa1, 0xe9, 0xf0, 0x83, 0x04, 0x14, 0x24, + 0xa0, 0x20, 0x01, 0x45, 0x28, 0x66, 0x17, 0x9e, 0x80, 0x12, 0x45, 0x7d, 0x2b, 0xb4, 0xfd, 0x07, + 0x46, 0x98, 0x83, 0xf2, 0x6c, 0x0c, 0xa4, 0xa1, 0x20, 0x36, 0x58, 0x99, 0x22, 0x92, 0xa6, 0x90, + 0xa4, 0x28, 0x26, 0x33, 0x48, 0x47, 0xa4, 0xa1, 0xac, 0x53, 0x05, 0x89, 0x13, 0xdb, 0xb5, 0xec, + 0xae, 0x77, 0x6a, 0x77, 0xbd, 0x67, 0xdf, 0x5a, 0x11, 0xe3, 0xd1, 0xc2, 0xdf, 0x67, 0x7f, 0x9d, + 0xf6, 0xb5, 0x9c, 0xfe, 0x2d, 0xa6, 0x26, 0x40, 0x79, 0x6e, 0x0b, 0xdf, 0x15, 0xf5, 0x85, 0x56, + 0xcc, 0x17, 0x40, 0x30, 0x09, 0x70, 0x75, 0xc5, 0xa6, 0x25, 0x91, 0xa4, 0x23, 0x91, 0xf9, 0x32, + 0x65, 0xf8, 0x32, 0xf0, 0x65, 0xe0, 0xcb, 0xc0, 0x97, 0x81, 0x2f, 0x03, 0x5f, 0x06, 0xbe, 0x0c, + 0x7c, 0x19, 0xf8, 0x32, 0xf0, 0x65, 0xb6, 0xc6, 0x97, 0x11, 0x18, 0xb1, 0x83, 0xbb, 0x72, 0xa5, + 0x5b, 0x59, 0x10, 0xe2, 0x07, 0x6e, 0x1c, 0x6c, 0x11, 0xf5, 0x8d, 0xbc, 0x99, 0x17, 0xe2, 0xf0, + 0x0a, 0x75, 0x74, 0x51, 0x1e, 0x52, 0x25, 0x7e, 0xc4, 0xed, 0xbc, 0x06, 0x1a, 0x58, 0xe0, 0xed, + 0xfc, 0xd0, 0xe7, 0x2c, 0x8c, 0x28, 0xee, 0xe7, 0xa7, 0x4f, 0xc6, 0x0d, 0x3d, 0x58, 0x2d, 0xb0, + 0x5a, 0xdb, 0xc0, 0x6a, 0xdd, 0x07, 0x01, 0x8f, 0x78, 0x68, 0x0f, 0xac, 0x3e, 0x8b, 0x22, 0x9b, + 0x94, 0xdd, 0x5a, 0x31, 0x16, 0x58, 0x2e, 0xb0, 0x5c, 0x60, 0xb9, 0xc0, 0x72, 0x09, 0x94, 0xf7, + 0xa1, 0xeb, 0xf3, 0xc3, 0x32, 0x21, 0xc9, 0x45, 0xc1, 0x71, 0x5d, 0xdb, 0xfe, 0x03, 0x23, 0xcb, + 0x37, 0x27, 0x4c, 0xda, 0xbb, 0x70, 0x7d, 0x09, 0x79, 0xa7, 0xa4, 0xd9, 0xc6, 0xc9, 0x30, 0x9f, + 0x6d, 0x6f, 0xc8, 0x24, 0x8c, 0xf3, 0x31, 0xb4, 0xbb, 0xdc, 0x0d, 0xfc, 0x33, 0xf7, 0xc1, 0x8d, + 0xf3, 0x82, 0x8a, 0x74, 0x39, 0xa6, 0x84, 0xf9, 0x93, 0x17, 0xf6, 0xf7, 0xdc, 0x6d, 0x7d, 0xa5, + 0x7c, 0x52, 0x39, 0x39, 0x3a, 0x2e, 0x9f, 0x54, 0x73, 0x24, 0x03, 0x86, 0xe4, 0xb7, 0xb6, 0xb7, + 0xa0, 0x44, 0xee, 0x17, 0xe6, 0x79, 0x81, 0x04, 0xa8, 0xbd, 0x30, 0x0e, 0x60, 0x36, 0x60, 0x36, + 0x60, 0x36, 0x60, 0x36, 0x60, 0x36, 0x60, 0x36, 0x60, 0x36, 0x60, 0x36, 0x60, 0x36, 0x60, 0x76, + 0x9e, 0x61, 0xf6, 0xbf, 0x02, 0xd7, 0xb7, 0x06, 0xe1, 0xd0, 0x67, 0x12, 0xb0, 0xf6, 0xaa, 0xc1, + 0x00, 0xb8, 0x01, 0xb8, 0x01, 0xb8, 0x01, 0xb8, 0x01, 0xb8, 0x01, 0xb8, 0x01, 0xb8, 0x01, 0xb8, + 0x01, 0xb8, 0x01, 0xb8, 0xb5, 0x03, 0xdc, 0x88, 0x39, 0x17, 0x1d, 0xa8, 0x1c, 0x77, 0xfc, 0x13, + 0x1c, 0x45, 0xb7, 0x93, 0x2e, 0x76, 0xf9, 0xc3, 0x6c, 0x16, 0x39, 0xca, 0xe4, 0xf5, 0x99, 0xfb, + 0xf0, 0xe5, 0x3e, 0x08, 0xad, 0x78, 0x89, 0xc5, 0xc7, 0x3f, 0x2e, 0x3c, 0x5f, 0x6c, 0x14, 0x64, + 0x11, 0x51, 0x90, 0x1a, 0x3b, 0x67, 0x88, 0x82, 0x34, 0xc8, 0x56, 0x08, 0x77, 0xb6, 0xe6, 0x9c, + 0xac, 0x77, 0x22, 0xc5, 0x75, 0x7a, 0xf8, 0x05, 0xc2, 0x2e, 0x22, 0x9f, 0x8a, 0xc0, 0x73, 0xa5, + 0xf4, 0xa1, 0xa8, 0x3b, 0x10, 0x10, 0xfb, 0x4c, 0x32, 0x70, 0x32, 0x45, 0x6f, 0x0b, 0x4a, 0xdf, + 0x48, 0xd6, 0x96, 0x96, 0xab, 0x55, 0x83, 0x37, 0x55, 0x53, 0x67, 0xa2, 0x8d, 0x2c, 0x4b, 0xd3, + 0xb3, 0x2c, 0xb3, 0x27, 0xcb, 0x66, 0x48, 0x77, 0x7c, 0x23, 0x71, 0xbb, 0x44, 0x6d, 0x93, 0xcc, + 0xed, 0x29, 0x64, 0xca, 0x07, 0xdd, 0xd0, 0x79, 0x4c, 0x27, 0x05, 0x9b, 0xef, 0x61, 0x8a, 0xfd, + 0x7b, 0xea, 0x0e, 0x92, 0xfe, 0x46, 0x6f, 0xb9, 0xd3, 0x48, 0x5a, 0x5f, 0x3d, 0x63, 0x86, 0x5b, + 0x66, 0x5f, 0x4e, 0x84, 0xef, 0x26, 0xce, 0x57, 0x13, 0xe5, 0x9b, 0x09, 0xf7, 0xc5, 0x84, 0xfb, + 0x5e, 0x42, 0x7d, 0x2d, 0xb9, 0xba, 0x2f, 0x6b, 0x06, 0xd9, 0xd3, 0xa1, 0x11, 0x97, 0x61, 0xfe, + 0xf4, 0x48, 0xd4, 0x80, 0x97, 0x47, 0xa9, 0x20, 0xcb, 0x1c, 0x59, 0xe6, 0xeb, 0x1f, 0x84, 0x1a, + 0xf0, 0x22, 0x1e, 0x08, 0x6e, 0x15, 0xdc, 0xaa, 0x1c, 0x27, 0x5c, 0xe3, 0x0c, 0xf3, 0xd0, 0x61, + 0xa1, 0x15, 0x06, 0x43, 0xce, 0x42, 0xca, 0xe4, 0xf2, 0xe7, 0xc3, 0x08, 0xde, 0xfe, 0x33, 0xd6, + 0xb3, 0x87, 0x5e, 0xbc, 0xfb, 0x3d, 0xdb, 0x8b, 0x18, 0xe2, 0xfb, 0x10, 0xdf, 0xa7, 0x4e, 0xdd, + 0x49, 0x53, 0x7b, 0x52, 0xd4, 0x1f, 0x11, 0xb3, 0x69, 0x5c, 0x7c, 0xdf, 0x7d, 0x10, 0x78, 0xcc, + 0xf6, 0x29, 0xab, 0x33, 0x96, 0xb6, 0x20, 0xf4, 0xfb, 0x3e, 0x0a, 0xad, 0x89, 0x2d, 0x20, 0xb4, + 0x35, 0x4f, 0x63, 0xc0, 0xd0, 0xc0, 0xd0, 0xc0, 0xd0, 0xc0, 0xd0, 0xc0, 0xd0, 0x6c, 0x9b, 0xa1, + 0x71, 0x98, 0xed, 0x58, 0xdc, 0xed, 0x53, 0x1a, 0x9a, 0x67, 0x63, 0xc0, 0x10, 0xc0, 0x10, 0xc0, + 0x10, 0xc0, 0x10, 0x08, 0x94, 0xf7, 0xa1, 0xeb, 0xf3, 0xd2, 0x11, 0xa1, 0x1d, 0x38, 0x42, 0x46, + 0xd1, 0xd3, 0xc4, 0xf3, 0x98, 0x51, 0x54, 0x42, 0x46, 0xd1, 0xab, 0xb6, 0x3e, 0x87, 0x19, 0x45, + 0x47, 0xd5, 0xea, 0x21, 0x92, 0x89, 0xa4, 0x3f, 0x75, 0x1b, 0xb2, 0xf7, 0x9d, 0xd0, 0x1a, 0x84, + 0x6e, 0x10, 0xba, 0xfc, 0x91, 0x10, 0x5a, 0x3f, 0x1b, 0x04, 0xd8, 0x1a, 0xd8, 0x1a, 0xd8, 0x1a, + 0xd8, 0x9a, 0x46, 0xbd, 0x58, 0x7c, 0x3c, 0x1a, 0xf2, 0xf6, 0x81, 0xb2, 0x53, 0x42, 0x2d, 0xe4, + 0xed, 0x6f, 0x2d, 0xca, 0x46, 0xde, 0x3e, 0xa0, 0x36, 0x25, 0xd4, 0x66, 0xbe, 0x7d, 0xef, 0x31, + 0x87, 0x0e, 0x66, 0xcf, 0x06, 0xc0, 0x3d, 0x29, 0x20, 0x3c, 0x20, 0x3c, 0x20, 0xbc, 0x41, 0x10, + 0x1e, 0xf7, 0xa4, 0x42, 0xde, 0x75, 0x52, 0x8a, 0x3c, 0x4e, 0xf1, 0xf8, 0x66, 0x7b, 0xd4, 0x25, + 0xcf, 0x93, 0x71, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x60, 0x10, 0x04, 0xca, 0xfb, 0xc0, 0xed, + 0x27, 0xfa, 0x85, 0x9a, 0xd4, 0x21, 0xf0, 0xf7, 0x0a, 0x9f, 0xfc, 0x89, 0x6b, 0x57, 0x88, 0x58, + 0x37, 0xf0, 0x9d, 0xa8, 0x00, 0xe2, 0x28, 0xdf, 0xc4, 0x11, 0xae, 0x67, 0xb7, 0x96, 0x38, 0x22, + 0x2b, 0x72, 0x02, 0xc6, 0x68, 0xbb, 0x19, 0xa3, 0x24, 0x57, 0xdb, 0x72, 0x09, 0x69, 0xa3, 0xb9, + 0x51, 0x00, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0x01, 0xe5, 0xcd, 0xd0, 0x2f, 0x73, 0x04, 0xcf, 0xbb, + 0xed, 0x6a, 0xb6, 0x41, 0xcf, 0xf2, 0xac, 0x1a, 0x0c, 0xf6, 0x01, 0xf6, 0x01, 0xf6, 0x01, 0xf6, + 0x01, 0x54, 0x0f, 0xa8, 0x1e, 0x50, 0x3d, 0xa0, 0x7a, 0x40, 0xf5, 0x80, 0xea, 0x01, 0xd5, 0x93, + 0x7d, 0xdb, 0xfb, 0x81, 0xc3, 0xe8, 0x90, 0x7c, 0xfc, 0x74, 0x40, 0x77, 0x40, 0x77, 0x40, 0x77, + 0x40, 0x77, 0x91, 0xd4, 0x8e, 0xc3, 0x7c, 0xee, 0xf2, 0xc7, 0x90, 0xf5, 0x28, 0x99, 0x1d, 0x0a, + 0xd4, 0x7e, 0x3e, 0x9d, 0xfa, 0x7b, 0x3b, 0x22, 0x3c, 0x56, 0xb3, 0x85, 0x6a, 0x9e, 0x5f, 0x74, + 0x2e, 0xae, 0xce, 0xea, 0x05, 0xca, 0x7a, 0xfb, 0x11, 0x99, 0x83, 0x40, 0xeb, 0x24, 0xac, 0x5c, + 0xa9, 0xce, 0x4d, 0xb3, 0x76, 0x7d, 0x53, 0x2f, 0x98, 0x08, 0x7d, 0x65, 0x2f, 0xd5, 0x59, 0xfd, + 0x92, 0x74, 0xa5, 0x48, 0x9e, 0xdc, 0xde, 0x9a, 0x7e, 0x0d, 0x68, 0xfe, 0x26, 0xac, 0x40, 0xff, + 0x53, 0x15, 0xf9, 0xa7, 0x6f, 0x0f, 0xa6, 0x65, 0x6e, 0x73, 0xd4, 0x7c, 0x8d, 0xe4, 0xe2, 0x97, + 0xf2, 0x42, 0x06, 0x8d, 0xd7, 0x50, 0x1c, 0x18, 0xc5, 0x81, 0x85, 0xea, 0x69, 0xba, 0xc6, 0x6b, + 0x1e, 0xb3, 0x7b, 0x62, 0x11, 0x7b, 0x82, 0xd4, 0x05, 0xe6, 0xc7, 0x16, 0x9a, 0x53, 0x53, 0xb2, + 0xbf, 0x3f, 0xd5, 0xf0, 0x07, 0x73, 0x8a, 0x2b, 0x97, 0xea, 0x7e, 0xbc, 0x2d, 0x84, 0xfa, 0x5e, + 0xdc, 0xae, 0x6f, 0x7b, 0x35, 0x78, 0xb7, 0x07, 0x7d, 0xaf, 0x40, 0xdf, 0xbb, 0x3d, 0xd4, 0x82, + 0x7f, 0xe5, 0x03, 0x05, 0x37, 0x95, 0x58, 0x3a, 0x04, 0x42, 0x9b, 0x4b, 0x10, 0xa9, 0x15, 0x32, + 0xf5, 0x42, 0xa9, 0x66, 0xc8, 0xd5, 0x0d, 0xb5, 0xda, 0x91, 0xa6, 0x7e, 0xa4, 0xa9, 0x21, 0x19, + 0xea, 0x88, 0x88, 0xc5, 0x10, 0x9d, 0x0c, 0xee, 0x86, 0x34, 0xc2, 0x2e, 0xae, 0xd5, 0xd5, 0xeb, + 0xf1, 0x10, 0x95, 0x38, 0x12, 0x37, 0x57, 0xa5, 0x52, 0x66, 0x32, 0x94, 0x9a, 0x34, 0xe5, 0x26, + 0x4b, 0xc9, 0x49, 0x57, 0x76, 0xd2, 0x95, 0x9e, 0x4c, 0xe5, 0x47, 0xa3, 0x04, 0x89, 0x94, 0x21, + 0x9d, 0xab, 0x2e, 0xd1, 0x75, 0x97, 0xe1, 0xca, 0xaf, 0x75, 0xed, 0x0f, 0x62, 0x31, 0x3a, 0x7d, + 0xc6, 0xea, 0x2e, 0xfc, 0x60, 0xfa, 0xf7, 0xb8, 0x9f, 0xaa, 0x21, 0xd1, 0x2a, 0x14, 0xad, 0xc0, + 0xa3, 0xe1, 0xbd, 0x44, 0xfb, 0x38, 0x37, 0x1a, 0x4c, 0x24, 0x4c, 0x24, 0x4c, 0x24, 0x4c, 0x24, + 0x4c, 0xa4, 0xa6, 0x26, 0xf2, 0xf6, 0xc9, 0x44, 0xfe, 0x4f, 0x77, 0x18, 0x86, 0xcc, 0xe7, 0xbb, + 0x7b, 0x07, 0xfb, 0xfb, 0x4f, 0x6c, 0x79, 0x7b, 0xfa, 0x91, 0xe7, 0x7a, 0x3d, 0x5a, 0xf1, 0xb3, + 0xe4, 0xc9, 0x0e, 0xfb, 0x6e, 0x8c, 0xb5, 0xd5, 0xda, 0x5b, 0xae, 0x7f, 0xe7, 0x34, 0x41, 0x39, + 0xf4, 0x84, 0x4d, 0xd0, 0xb5, 0xd8, 0x77, 0x7e, 0xca, 0x99, 0xc7, 0xfa, 0x8c, 0x87, 0x8f, 0x56, + 0xe0, 0x5b, 0xdd, 0x2f, 0x71, 0x1a, 0x82, 0x14, 0x12, 0x27, 0x2e, 0x35, 0x27, 0x81, 0xc5, 0xd1, + 0x9d, 0xc0, 0x69, 0x8b, 0x26, 0xd4, 0x69, 0xc2, 0x3f, 0x9e, 0xa0, 0xaa, 0xb2, 0x30, 0x90, 0xb9, + 0x6b, 0x2e, 0xa1, 0x41, 0x21, 0xe2, 0x77, 0x56, 0x64, 0xe8, 0x78, 0xc4, 0x6d, 0x4e, 0x18, 0x3b, + 0x3e, 0x79, 0xbc, 0x61, 0x34, 0x7f, 0x19, 0x34, 0xbf, 0x34, 0x78, 0x0f, 0x9a, 0x3f, 0x7f, 0xc0, + 0x05, 0x34, 0x3f, 0x38, 0x0c, 0x70, 0x18, 0xe0, 0x30, 0xc0, 0x61, 0x80, 0xc3, 0x90, 0xc0, 0x61, + 0x80, 0xe6, 0xdf, 0x01, 0xcd, 0x0f, 0x13, 0x09, 0x13, 0x09, 0x13, 0x09, 0x13, 0x09, 0x13, 0x09, + 0x9a, 0xdf, 0x2c, 0x6f, 0x79, 0x5b, 0x38, 0xd5, 0x09, 0x15, 0x88, 0x2c, 0x4b, 0x75, 0x22, 0xa1, + 0x8b, 0x28, 0x14, 0x84, 0xf2, 0xd7, 0xe1, 0xb0, 0xcb, 0xfd, 0xa9, 0x5e, 0xbf, 0x9c, 0xcc, 0xf1, + 0x7c, 0x3a, 0xc5, 0x4e, 0x73, 0x3a, 0xb1, 0x4e, 0xd3, 0xed, 0x77, 0xce, 0x67, 0x73, 0x78, 0xfa, + 0xee, 0x9a, 0xf5, 0xf2, 0x94, 0x0a, 0xe4, 0x33, 0xf7, 0xe1, 0xcb, 0x7d, 0x10, 0x46, 0xe2, 0xd3, + 0x80, 0x9e, 0x1e, 0xad, 0x79, 0x0a, 0x50, 0x19, 0x39, 0x9f, 0x06, 0xa1, 0x71, 0xe4, 0x7c, 0x6a, + 0x9c, 0x04, 0x34, 0x3b, 0xf3, 0x74, 0xd7, 0x83, 0xc9, 0x08, 0x48, 0x04, 0x42, 0x79, 0x29, 0xe5, + 0x94, 0x00, 0xca, 0x4b, 0xc9, 0xf3, 0x7a, 0xc8, 0xee, 0x08, 0x67, 0x2a, 0xc5, 0xb2, 0x1d, 0x27, + 0x64, 0x51, 0x44, 0x4f, 0x85, 0x2e, 0x8d, 0x08, 0x3a, 0x54, 0xb6, 0x92, 0x93, 0xa7, 0xec, 0x64, + 0x29, 0x3d, 0xe9, 0xca, 0x4f, 0xba, 0x12, 0x94, 0xaa, 0x0c, 0xe9, 0xc8, 0xa5, 0x1d, 0x10, 0xa2, + 0x9b, 0x61, 0x32, 0x19, 0x84, 0xe8, 0xfe, 0xfe, 0x84, 0x6e, 0x3a, 0x58, 0xd2, 0xcd, 0xdb, 0x7c, + 0x41, 0x48, 0x12, 0xea, 0xb7, 0x24, 0x4a, 0x14, 0x21, 0x7f, 0xc4, 0xc0, 0x9e, 0x8c, 0x45, 0x80, + 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0xd4, 0xd2, 0x51, 0x48, 0x06, 0x70, 0xe8, 0x5d, 0x85, 0xa5, 0xa3, + 0xe9, 0x50, 0x3b, 0x0b, 0x92, 0x9c, 0x06, 0x69, 0xce, 0x83, 0x4c, 0x05, 0x2a, 0x5f, 0x91, 0xca, + 0x56, 0xa8, 0xca, 0x14, 0xab, 0x32, 0x05, 0xab, 0x44, 0xd1, 0xd2, 0x2a, 0x5c, 0x62, 0xc5, 0x2b, + 0xcf, 0x09, 0x59, 0x3a, 0x6f, 0xee, 0xe0, 0x5b, 0x45, 0x92, 0x7e, 0x9c, 0x03, 0x95, 0xef, 0x24, + 0x8c, 0xd5, 0xb4, 0x39, 0x67, 0xa1, 0x4f, 0x5a, 0x6c, 0x7b, 0x6e, 0xc0, 0xdd, 0xdd, 0xdb, 0xa2, + 0x75, 0xd2, 0xfe, 0x79, 0x5b, 0xb2, 0x4e, 0xda, 0x93, 0x6f, 0x4b, 0xf1, 0x1f, 0x93, 0xef, 0xcb, + 0xb7, 0x45, 0xab, 0x32, 0xfb, 0xbe, 0x7a, 0x5b, 0xb4, 0xaa, 0xed, 0xbd, 0xbb, 0xbb, 0xfd, 0xbd, + 0x1f, 0x87, 0xa3, 0xcd, 0x3f, 0xb8, 0xfb, 0xdf, 0xb7, 0x77, 0x77, 0x83, 0x1f, 0x97, 0xa3, 0xf1, + 0xff, 0x1b, 0xa3, 0xf6, 0xdf, 0xf6, 0x7e, 0xa7, 0x3f, 0x5d, 0xed, 0x37, 0x66, 0x9e, 0x5d, 0xca, + 0xee, 0x39, 0x24, 0x0d, 0x41, 0xd6, 0x9e, 0x57, 0x82, 0x06, 0x21, 0xc0, 0x31, 0xc0, 0x31, 0xc0, + 0x31, 0xc0, 0x31, 0x66, 0xe3, 0x18, 0xd2, 0x06, 0x27, 0x6b, 0x61, 0x4c, 0x55, 0xc2, 0x58, 0x52, + 0x1a, 0xa0, 0xac, 0x5d, 0x58, 0xe2, 0x86, 0x28, 0x4b, 0xe3, 0x4a, 0x68, 0x90, 0xb2, 0xf8, 0xf5, + 0x43, 0xda, 0x48, 0x3b, 0x4a, 0x1a, 0xa8, 0x48, 0x3e, 0xfd, 0x3a, 0x2d, 0x2d, 0x71, 0xc3, 0x15, + 0xb9, 0x5a, 0x5b, 0x0e, 0x0a, 0x97, 0x60, 0x7d, 0x8c, 0xc4, 0xf9, 0xd2, 0x82, 0x1d, 0x96, 0xa4, + 0x59, 0x52, 0xd0, 0x03, 0xf0, 0x3f, 0xf0, 0x3f, 0xf0, 0x3f, 0xf0, 0xbf, 0x99, 0xf8, 0x1f, 0x3c, + 0xa6, 0xb8, 0x01, 0xc1, 0x63, 0x6e, 0x33, 0xbe, 0x61, 0x11, 0xb7, 0xef, 0x3d, 0x37, 0xfa, 0xc2, + 0x1c, 0x05, 0x18, 0xe7, 0xf9, 0xe8, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, 0xc0, 0x39, + 0xc9, 0x79, 0xe3, 0x6e, 0x9f, 0x71, 0xb7, 0xfb, 0x35, 0x3a, 0xaa, 0x48, 0x84, 0x39, 0x32, 0x50, + 0xce, 0x27, 0xdf, 0x8d, 0x6b, 0xb0, 0x16, 0x7c, 0xdb, 0x0f, 0x22, 0xd6, 0x0d, 0x7c, 0x47, 0x0a, + 0x92, 0xbb, 0x8e, 0x4b, 0xa5, 0xca, 0xc2, 0x56, 0xf2, 0x08, 0xb1, 0xc2, 0x85, 0xeb, 0x4b, 0xd3, + 0x96, 0x92, 0x6d, 0xea, 0xd2, 0xb0, 0x31, 0x6b, 0xac, 0x60, 0xdc, 0x8f, 0xa1, 0xdd, 0xe5, 0x6e, + 0xe0, 0x9f, 0xb9, 0x0f, 0x13, 0xe9, 0x2d, 0xe6, 0x91, 0xc5, 0x2d, 0x5c, 0xd8, 0xdf, 0xb7, 0x4e, + 0x94, 0x4a, 0xef, 0x2a, 0x95, 0xa3, 0xe3, 0x4a, 0xa5, 0x78, 0x7c, 0x78, 0x5c, 0x3c, 0xa9, 0x56, + 0x4b, 0x47, 0x32, 0x6e, 0x7b, 0xb4, 0x91, 0xae, 0x37, 0xf9, 0x18, 0x05, 0x9e, 0xde, 0xaf, 0x3c, + 0xbd, 0xef, 0x03, 0x37, 0x64, 0x2a, 0x98, 0xec, 0xd9, 0xc8, 0xf0, 0xf0, 0xe0, 0xe1, 0xc1, 0xc3, + 0x83, 0x87, 0x07, 0x0f, 0x0f, 0x1e, 0x1e, 0x3c, 0x3c, 0x78, 0x78, 0xf0, 0xf0, 0xe0, 0xe1, 0xc1, + 0xc3, 0x83, 0x87, 0xb7, 0x0d, 0x1e, 0x9e, 0x51, 0xa9, 0xa1, 0xc4, 0x95, 0x33, 0x93, 0x71, 0xd4, + 0x95, 0x4d, 0x4c, 0xaa, 0xee, 0x25, 0xdf, 0x51, 0x94, 0xd1, 0xa4, 0xdb, 0x7d, 0xbd, 0x6b, 0x10, + 0xfd, 0xc9, 0x1e, 0x25, 0x84, 0xb2, 0x15, 0x1a, 0x6e, 0xc4, 0x6b, 0x9c, 0x13, 0xd5, 0x3b, 0xba, + 0x70, 0xfd, 0xba, 0xc7, 0xc6, 0x0e, 0xd4, 0x58, 0x55, 0xfb, 0x43, 0xcf, 0x23, 0x28, 0x1d, 0x71, + 0x61, 0x7f, 0xa7, 0x1f, 0xe4, 0x2a, 0x74, 0x58, 0xc8, 0x9c, 0xf7, 0x8f, 0xd3, 0x21, 0x50, 0xb5, + 0x57, 0x13, 0x9d, 0x53, 0x20, 0x29, 0x46, 0x92, 0xa2, 0x6e, 0xeb, 0xe5, 0x6c, 0x42, 0xa8, 0x22, + 0xac, 0x4e, 0x44, 0x75, 0x10, 0xcd, 0x3c, 0x15, 0xed, 0x15, 0x5b, 0x96, 0x87, 0xa4, 0x0c, 0x0f, + 0x8a, 0xf5, 0xa2, 0x58, 0x2f, 0x8a, 0xf5, 0x0a, 0x55, 0xce, 0xc2, 0x8b, 0xf5, 0xde, 0x07, 0x63, + 0xf8, 0x64, 0x85, 0xc1, 0x90, 0x33, 0xc2, 0x8a, 0xbd, 0xf3, 0xc3, 0x88, 0x2e, 0x0a, 0xca, 0x7a, + 0xf6, 0xd0, 0x8b, 0x77, 0x3f, 0xee, 0xe0, 0x4b, 0x54, 0x16, 0xb8, 0x88, 0xb2, 0xc0, 0x28, 0x0b, + 0xac, 0x91, 0xda, 0x93, 0xa2, 0xfe, 0xcc, 0x70, 0xc9, 0xc9, 0xae, 0xb6, 0x9e, 0x29, 0xb0, 0xc0, + 0x63, 0xb6, 0x4f, 0x21, 0xf0, 0x33, 0x94, 0x54, 0xda, 0x82, 0xbe, 0xd1, 0xf7, 0x51, 0x68, 0x4d, + 0x6c, 0x01, 0xa1, 0xad, 0x79, 0x1a, 0x03, 0x86, 0x06, 0x86, 0x06, 0x86, 0x06, 0x86, 0x06, 0x86, + 0x66, 0xdb, 0x0c, 0x4d, 0x37, 0x18, 0xfa, 0x9c, 0x85, 0x11, 0x9d, 0x99, 0x49, 0x46, 0x40, 0x13, + 0x12, 0x18, 0x01, 0x18, 0x81, 0x2d, 0x32, 0x02, 0x64, 0x4d, 0x48, 0xee, 0x83, 0x80, 0x47, 0x3c, + 0xb4, 0x07, 0x56, 0x9f, 0x45, 0x91, 0xfd, 0xc0, 0x24, 0xb4, 0x21, 0x59, 0x31, 0x26, 0x1a, 0x91, + 0xc8, 0x56, 0x74, 0xf2, 0x14, 0x9e, 0x2c, 0xc5, 0x27, 0x5d, 0x01, 0x4a, 0x57, 0x84, 0x52, 0x15, + 0x22, 0x8d, 0x62, 0x24, 0x52, 0x90, 0xf4, 0x68, 0x79, 0xe9, 0xbc, 0x0c, 0x5d, 0x9f, 0x1f, 0x96, + 0x25, 0xf4, 0x21, 0xa1, 0x6c, 0x43, 0x22, 0x27, 0xb8, 0x57, 0x42, 0xfc, 0xb7, 0xcc, 0x60, 0x5e, + 0xc9, 0x91, 0x97, 0xb2, 0x83, 0x77, 0x55, 0x84, 0x55, 0x4a, 0x08, 0xd6, 0x95, 0x1a, 0xa4, 0xab, + 0x4a, 0x44, 0x2a, 0xe5, 0x93, 0xca, 0xc9, 0xd1, 0x71, 0xf9, 0xa4, 0x9a, 0x63, 0x59, 0x31, 0x34, + 0x64, 0xb5, 0xbd, 0xc5, 0x1d, 0x9d, 0xbe, 0x30, 0xcf, 0x0b, 0x24, 0xba, 0x18, 0x0b, 0xe3, 0xc1, + 0xbd, 0x80, 0x7b, 0x01, 0xf7, 0x02, 0xee, 0x05, 0xdc, 0x0b, 0xb8, 0x17, 0x70, 0x2f, 0xe0, 0x5e, + 0xc0, 0xbd, 0x80, 0x7b, 0x01, 0xf7, 0x22, 0x3f, 0xee, 0xc5, 0xbf, 0x02, 0xd7, 0xb7, 0x06, 0xe1, + 0xd0, 0x67, 0x12, 0x7d, 0x8c, 0x55, 0x83, 0xc2, 0xd1, 0x80, 0xa3, 0x01, 0x47, 0x03, 0x8e, 0x06, + 0x1c, 0x0d, 0x38, 0x1a, 0x70, 0x34, 0xe0, 0x68, 0xc0, 0xd1, 0x80, 0xa3, 0x01, 0x47, 0x43, 0x91, + 0xa3, 0x81, 0xb4, 0x7c, 0x25, 0xb9, 0xcf, 0x71, 0x3e, 0xef, 0x01, 0x51, 0xac, 0xea, 0x4e, 0xea, + 0x94, 0xfc, 0x0f, 0xb3, 0x09, 0x6d, 0x41, 0x28, 0xb2, 0xc3, 0x6c, 0xc7, 0xe2, 0x6e, 0x9f, 0x32, + 0xe7, 0xe5, 0xd9, 0x18, 0xc8, 0x49, 0x41, 0x38, 0xb2, 0x72, 0x2f, 0x16, 0xe1, 0xc8, 0xf2, 0x8c, + 0x17, 0x7d, 0x4e, 0xca, 0xd8, 0x2b, 0x2d, 0x1d, 0x11, 0xa6, 0xa4, 0x1c, 0x11, 0x3c, 0x9a, 0xd6, + 0x0b, 0x25, 0xe4, 0x02, 0x64, 0x78, 0x9d, 0xb2, 0xca, 0x49, 0x27, 0xf5, 0x09, 0x89, 0xc7, 0x91, + 0xe8, 0x31, 0x50, 0x96, 0x33, 0x97, 0xe1, 0x4d, 0xca, 0xde, 0xfa, 0xa3, 0x6a, 0xf5, 0xb0, 0x9a, + 0xa3, 0xed, 0x37, 0xc4, 0xe1, 0x6a, 0x6f, 0x03, 0xb2, 0x0e, 0xad, 0x41, 0xe8, 0x06, 0xa1, 0xcb, + 0x1f, 0x09, 0xa1, 0xf5, 0xb3, 0x41, 0x80, 0xad, 0x81, 0xad, 0x81, 0xad, 0x81, 0xad, 0x69, 0xd4, + 0x8b, 0xc5, 0xc7, 0xa3, 0xd1, 0xa1, 0xec, 0x63, 0xa0, 0xec, 0x7c, 0xa3, 0xec, 0x22, 0x50, 0xf6, + 0xb6, 0xa2, 0x6c, 0x59, 0x77, 0x34, 0x80, 0xda, 0xdb, 0x09, 0xb5, 0x99, 0x6f, 0xdf, 0x7b, 0x04, + 0x5d, 0x94, 0x13, 0x3b, 0x38, 0x1b, 0x00, 0x25, 0x9b, 0x00, 0xe1, 0x01, 0xe1, 0x01, 0xe1, 0x0d, + 0x82, 0xf0, 0x28, 0xd9, 0x24, 0xe4, 0x5d, 0x27, 0x69, 0x82, 0xf1, 0xd5, 0xf5, 0x37, 0xdb, 0xa3, + 0xb3, 0x34, 0x0b, 0xe3, 0xc0, 0x20, 0xc0, 0x20, 0xc0, 0x20, 0xc0, 0x20, 0x08, 0x94, 0xf7, 0x81, + 0xdb, 0x4f, 0xf4, 0x0b, 0x35, 0xa9, 0x43, 0xe0, 0xef, 0x3d, 0x75, 0x37, 0xa4, 0xeb, 0x6c, 0x08, + 0xe2, 0x48, 0x27, 0xf6, 0x00, 0xd7, 0xb3, 0x5b, 0x4b, 0x1c, 0x95, 0xab, 0x60, 0x8c, 0xc0, 0x18, + 0x11, 0xc0, 0xf9, 0x24, 0x06, 0xd5, 0x72, 0x09, 0x69, 0xa3, 0xb9, 0x51, 0x00, 0xe5, 0x01, 0xe5, + 0x01, 0xe5, 0x01, 0xe5, 0xcd, 0xd0, 0x2f, 0x73, 0x04, 0xcf, 0xbb, 0x2d, 0xb0, 0x08, 0xcf, 0x72, + 0xb4, 0xe9, 0x59, 0x9e, 0x55, 0x83, 0xc1, 0x3e, 0xc0, 0x3e, 0xc0, 0x3e, 0xc0, 0x3e, 0x80, 0xea, + 0x01, 0xd5, 0x03, 0xaa, 0x07, 0x54, 0x0f, 0xa8, 0x1e, 0x50, 0x3d, 0xa0, 0x7a, 0xb2, 0x6f, 0x7b, + 0x3f, 0x70, 0x18, 0x1d, 0x92, 0x8f, 0x9f, 0x0e, 0xe8, 0x0e, 0xe8, 0x0e, 0xe8, 0x0e, 0xe8, 0x2e, + 0x92, 0xda, 0x71, 0x98, 0xcf, 0x5d, 0xfe, 0x18, 0xb2, 0x1e, 0x25, 0xb3, 0x43, 0x81, 0xda, 0xcf, + 0xa7, 0x53, 0x7f, 0x6f, 0x47, 0x8c, 0xbe, 0xb6, 0x5e, 0xf3, 0xfc, 0xa2, 0x73, 0x71, 0x75, 0x56, + 0xa7, 0x3a, 0x55, 0x31, 0x3e, 0x89, 0x48, 0x0b, 0x46, 0x11, 0x03, 0xb9, 0xc5, 0x95, 0xea, 0xdc, + 0x34, 0x6b, 0xd7, 0x37, 0xf5, 0x82, 0x89, 0xd0, 0x57, 0xf6, 0x52, 0x9d, 0xd5, 0x2f, 0x49, 0x57, + 0x8a, 0xe4, 0xc9, 0x6d, 0xdd, 0xb5, 0x71, 0x4e, 0xfb, 0xdf, 0x13, 0x15, 0xea, 0x51, 0x5d, 0xa0, + 0x47, 0x8c, 0xf8, 0x67, 0xdf, 0xaa, 0x6c, 0x4f, 0xc8, 0xb8, 0xc9, 0x63, 0x18, 0x27, 0xf8, 0xca, + 0xa5, 0xd0, 0x70, 0x23, 0x5e, 0xe3, 0x5c, 0x4c, 0xe5, 0x9d, 0xc2, 0x85, 0xeb, 0xd7, 0x3d, 0x36, + 0xc6, 0x65, 0x63, 0x6b, 0xe5, 0x0f, 0x3d, 0xef, 0xed, 0x1b, 0x11, 0x4c, 0x83, 0xf8, 0x87, 0x5e, + 0x85, 0x0e, 0x0b, 0x99, 0xf3, 0xfe, 0x71, 0xfa, 0x48, 0xa5, 0xfb, 0x2a, 0xf8, 0xd0, 0xaa, 0x3b, + 0xac, 0x02, 0x00, 0x50, 0xaa, 0x72, 0x59, 0xd9, 0xd4, 0x43, 0xfa, 0x43, 0x9d, 0xee, 0x93, 0x29, + 0xc5, 0x45, 0x94, 0x98, 0xc8, 0x16, 0x8f, 0x74, 0x9b, 0xb3, 0xf9, 0xd2, 0x6e, 0xf6, 0x89, 0x0d, + 0x37, 0x21, 0xeb, 0xe2, 0x4b, 0x59, 0xf4, 0x14, 0xc7, 0x6f, 0x83, 0xe3, 0xb6, 0xd9, 0x3e, 0xbe, + 0x7e, 0x37, 0x36, 0xd8, 0x89, 0xc2, 0x04, 0x0c, 0x6c, 0xba, 0x01, 0x09, 0xa6, 0x9e, 0x7c, 0x7c, + 0xc3, 0x9d, 0x4f, 0xd7, 0x6f, 0xfa, 0x89, 0xea, 0x2a, 0x6f, 0xf8, 0xc1, 0x0c, 0x54, 0xd6, 0x73, + 0xaa, 0xca, 0x67, 0x7c, 0x2c, 0x2e, 0x69, 0x64, 0x22, 0x23, 0x1d, 0x25, 0x8c, 0x6e, 0x12, 0x46, + 0x27, 0x2d, 0xd2, 0x45, 0xb3, 0xb5, 0xd1, 0x4c, 0xc7, 0xa4, 0xed, 0x9b, 0x5c, 0x70, 0x26, 0x49, + 0x9c, 0x56, 0x9f, 0xf1, 0xd0, 0xed, 0xa6, 0xdf, 0xb8, 0xa7, 0x6a, 0x89, 0x73, 0xcf, 0x4b, 0xb9, + 0xe8, 0xd9, 0x38, 0xe4, 0xcc, 0x5c, 0xb1, 0x08, 0x4e, 0x58, 0xcc, 0x81, 0x12, 0x75, 0xb0, 0xc8, + 0xf8, 0x5c, 0xe1, 0xbc, 0xad, 0xb0, 0x03, 0xa7, 0x06, 0x69, 0x65, 0xe6, 0x56, 0xc5, 0xd5, 0xab, + 0x17, 0x50, 0x9b, 0x44, 0x50, 0x7c, 0x81, 0x18, 0xff, 0x50, 0x18, 0x2d, 0x21, 0xf8, 0x8a, 0x4a, + 0x74, 0x8d, 0x10, 0x8a, 0xab, 0xde, 0x91, 0x18, 0x6f, 0x5a, 0xfb, 0x2d, 0x10, 0x5d, 0xab, 0x83, + 0x64, 0x2f, 0x14, 0xb9, 0x9c, 0x6d, 0x59, 0xde, 0x54, 0x0a, 0xdc, 0x98, 0xb5, 0x06, 0x86, 0xa0, + 0x5a, 0x17, 0x00, 0x1e, 0x00, 0x1e, 0x5b, 0x0f, 0x3c, 0xb2, 0xd7, 0x5c, 0xc8, 0x58, 0x5b, 0x41, + 0x8e, 0xca, 0x99, 0xdc, 0x51, 0xf7, 0xdc, 0x0c, 0xb5, 0xe3, 0x17, 0xee, 0xbb, 0xe3, 0x67, 0x41, + 0xf1, 0x40, 0xf1, 0x40, 0xf1, 0x64, 0x38, 0x45, 0x59, 0xa3, 0x46, 0x44, 0x44, 0x87, 0x88, 0x8d, + 0x02, 0x49, 0x5e, 0xf0, 0xfc, 0xf2, 0xa6, 0x55, 0x6b, 0x34, 0x3a, 0xcd, 0xeb, 0xab, 0xd6, 0xd5, + 0x87, 0xab, 0x46, 0xa7, 0xf5, 0x57, 0x33, 0x6b, 0xe8, 0x87, 0xc8, 0x10, 0x0f, 0x41, 0xd8, 0x7e, + 0xf6, 0xba, 0x57, 0x37, 0xcd, 0x8f, 0x05, 0x1d, 0x5c, 0x17, 0xc1, 0xef, 0x75, 0x7e, 0x73, 0x7e, + 0x93, 0xc7, 0xf7, 0x1a, 0xef, 0xd7, 0x61, 0x1e, 0x5f, 0xac, 0x71, 0xf5, 0xa1, 0xd6, 0xe8, 0xd4, + 0xfe, 0xf8, 0xe3, 0xba, 0xfe, 0x47, 0xad, 0x55, 0xcf, 0xe3, 0x2b, 0x9e, 0x9d, 0x5f, 0xd7, 0x3f, + 0xb4, 0x1a, 0x7f, 0x75, 0x3e, 0x5c, 0x5d, 0x5e, 0xd6, 0x3f, 0xb4, 0xea, 0x67, 0x79, 0x7c, 0xcb, + 0x9b, 0x56, 0xad, 0x75, 0xfe, 0x21, 0x8f, 0x6f, 0xf6, 0xfe, 0x8f, 0x66, 0x1e, 0x5f, 0xab, 0x79, + 0x7e, 0x91, 0x4b, 0x0b, 0xf0, 0xc7, 0x85, 0x88, 0xed, 0xca, 0xf4, 0x84, 0xb6, 0x6c, 0x7c, 0x28, + 0xc5, 0x2b, 0x9b, 0x5e, 0x27, 0x67, 0xf4, 0xc7, 0xe2, 0xa7, 0xc0, 0x13, 0x83, 0x27, 0x06, 0x4f, + 0x2c, 0x95, 0xdc, 0x44, 0x3c, 0x74, 0xfd, 0x07, 0x11, 0x4e, 0xd8, 0x3b, 0x84, 0xf0, 0xc8, 0x08, + 0xe1, 0x49, 0x11, 0xea, 0x4a, 0x17, 0x66, 0xe3, 0x76, 0xad, 0x30, 0x18, 0xf2, 0xd8, 0x29, 0xcd, + 0x10, 0x6e, 0xf3, 0xf4, 0x18, 0xc9, 0x61, 0x37, 0x45, 0x35, 0x61, 0x37, 0x5e, 0xd0, 0xb5, 0x42, + 0x44, 0xdd, 0xac, 0x52, 0xc4, 0xd3, 0xa5, 0xc9, 0x4b, 0xd0, 0xcd, 0x44, 0xba, 0xb3, 0xc3, 0x9c, + 0xe9, 0x73, 0xb2, 0x01, 0x9d, 0x52, 0x4e, 0x80, 0x4e, 0xea, 0xe3, 0x03, 0x9c, 0x93, 0xf6, 0x78, + 0xa9, 0x81, 0x39, 0x69, 0x8f, 0x5d, 0xf2, 0x80, 0xee, 0x4c, 0x72, 0x05, 0xd1, 0xba, 0xd3, 0xe7, + 0x65, 0x4d, 0xd1, 0xc8, 0x74, 0x1c, 0x85, 0x1d, 0x4b, 0x91, 0xc7, 0x93, 0xe4, 0x98, 0x8a, 0x3e, + 0xae, 0x64, 0xc7, 0x96, 0xec, 0xf8, 0x52, 0x1d, 0x63, 0x31, 0xbc, 0x44, 0xd6, 0x94, 0x96, 0xac, + 0xc7, 0x3b, 0x79, 0x90, 0xc3, 0xa2, 0x6e, 0xe8, 0x0e, 0x84, 0x66, 0xb4, 0x3d, 0x8b, 0x73, 0x7d, + 0x7a, 0xf8, 0x5b, 0x2d, 0x43, 0xa2, 0x44, 0x17, 0x4c, 0xa0, 0x28, 0x94, 0x40, 0xa2, 0x18, 0xa8, + 0x14, 0x04, 0xb9, 0xa2, 0x20, 0x57, 0x18, 0xd4, 0x8a, 0x43, 0x8c, 0x02, 0x11, 0xa4, 0x48, 0xc4, + 0xd1, 0x22, 0x74, 0x34, 0x89, 0x60, 0xda, 0x44, 0xfc, 0x3e, 0x88, 0x88, 0x1b, 0x1d, 0x88, 0xd5, + 0x1b, 0x4f, 0xf5, 0xe1, 0x84, 0x1a, 0x69, 0x68, 0x5f, 0x68, 0x5f, 0x68, 0x5f, 0x93, 0xb4, 0xaf, + 0x3b, 0xb0, 0x84, 0x0b, 0x40, 0xa2, 0x80, 0x4f, 0x04, 0x3e, 0x73, 0xba, 0x04, 0x62, 0x4b, 0xb0, + 0x50, 0x56, 0xef, 0x19, 0x7c, 0xab, 0x58, 0x64, 0xd5, 0x9e, 0x9e, 0x6c, 0x1c, 0xc1, 0xb3, 0x9b, + 0x36, 0xe7, 0x2c, 0xf4, 0xc9, 0x0a, 0xde, 0x14, 0xfe, 0xb9, 0xbb, 0x7b, 0x5b, 0xb4, 0x4e, 0xda, + 0x3f, 0x6f, 0x4b, 0xd6, 0x49, 0x7b, 0xf2, 0x6d, 0x29, 0xfe, 0x63, 0xf2, 0x7d, 0xf9, 0xb6, 0x68, + 0x55, 0x66, 0xdf, 0x57, 0x6f, 0x8b, 0x56, 0xb5, 0xbd, 0x77, 0x77, 0xb7, 0xbf, 0xf7, 0xe3, 0x70, + 0xb4, 0xf9, 0x07, 0x0f, 0xa6, 0x83, 0xed, 0xfd, 0xdc, 0xbd, 0x2d, 0x59, 0xe5, 0xf6, 0xec, 0x2f, + 0x87, 0xb7, 0x45, 0xab, 0xdc, 0xde, 0xdb, 0xfb, 0xaf, 0x82, 0xee, 0x35, 0xf5, 0xde, 0x1a, 0x24, + 0xf3, 0x47, 0x90, 0xf9, 0x5f, 0xca, 0xbc, 0x6d, 0xf5, 0x6a, 0xd6, 0xc7, 0xf6, 0x8f, 0xd2, 0xdb, + 0xca, 0xe8, 0x74, 0xef, 0xc7, 0xf1, 0x68, 0xf1, 0x87, 0x3f, 0x57, 0xfd, 0x5a, 0xe9, 0xed, 0xf1, + 0xe8, 0x74, 0xcd, 0xbf, 0x1c, 0x8d, 0x4e, 0x5f, 0xf9, 0x8c, 0xea, 0x68, 0x77, 0xe9, 0x57, 0xc7, + 0x3f, 0x2f, 0xaf, 0xfb, 0x40, 0x65, 0xcd, 0x07, 0x0e, 0xd7, 0x7d, 0xe0, 0x70, 0xcd, 0x07, 0xd6, + 0x4e, 0xa9, 0xbc, 0xe6, 0x03, 0xd5, 0xd1, 0xcf, 0xa5, 0xdf, 0xdf, 0x5d, 0xfd, 0xab, 0x47, 0xa3, + 0xbd, 0x9f, 0xeb, 0xfe, 0xed, 0x78, 0xf4, 0xf3, 0x74, 0x6f, 0xef, 0x60, 0xb7, 0x34, 0x56, 0x0c, + 0xef, 0x26, 0xba, 0xa2, 0xd4, 0x5e, 0x52, 0x21, 0x13, 0x95, 0xa0, 0xbf, 0x22, 0x78, 0xa3, 0xd7, + 0xbc, 0xf4, 0xf0, 0x8c, 0x22, 0xc6, 0x2d, 0x6e, 0x3f, 0x88, 0x77, 0x8d, 0x66, 0x0f, 0x86, 0x6f, + 0x04, 0xdf, 0x08, 0xbe, 0xd1, 0x16, 0xfa, 0x46, 0xdc, 0x7e, 0x10, 0x5d, 0x32, 0x1f, 0xae, 0x91, + 0x88, 0xa4, 0xfc, 0x97, 0x56, 0xf7, 0x18, 0x4d, 0x02, 0x9e, 0x26, 0x9e, 0xc7, 0x26, 0x01, 0x45, + 0x34, 0x09, 0x78, 0xd5, 0xd6, 0xe7, 0xb0, 0x49, 0x80, 0xe8, 0xe2, 0x04, 0x5a, 0xc8, 0xc0, 0x76, + 0xf6, 0x0a, 0x30, 0x86, 0xd7, 0xf8, 0xc2, 0xbe, 0x5b, 0xc2, 0xaf, 0xa9, 0xf2, 0x41, 0x6b, 0xcc, + 0xb9, 0xf5, 0x8b, 0xde, 0x7c, 0x79, 0xb4, 0xf7, 0xdb, 0xde, 0xef, 0x70, 0xab, 0xa5, 0xbb, 0xd5, + 0x28, 0xa7, 0xba, 0x69, 0xdc, 0x77, 0x12, 0x27, 0x3d, 0xfd, 0xdb, 0xc1, 0x34, 0x1e, 0x4d, 0x55, + 0x65, 0xd3, 0x0c, 0x11, 0x98, 0x3e, 0xfb, 0xce, 0xad, 0x2f, 0xc1, 0x20, 0x12, 0x17, 0x9c, 0xf7, + 0xf4, 0x48, 0xc4, 0xe7, 0x49, 0x25, 0x3b, 0x10, 0x9f, 0x87, 0xf8, 0xbc, 0x57, 0x1d, 0x76, 0xf1, + 0xf4, 0x67, 0xf2, 0x64, 0xb1, 0xfc, 0x67, 0x09, 0xfc, 0xa7, 0xa0, 0x87, 0x83, 0xff, 0x94, 0xac, + 0x32, 0xc4, 0x02, 0x46, 0x51, 0xfc, 0xa7, 0x28, 0x55, 0x92, 0x3c, 0x50, 0x50, 0x64, 0xff, 0xda, + 0xc3, 0x20, 0x24, 0xd2, 0x9f, 0x58, 0xbd, 0x90, 0xa9, 0x19, 0x4a, 0x75, 0x23, 0x45, 0xed, 0x50, + 0xab, 0x1f, 0x69, 0x6a, 0x48, 0x9a, 0x3a, 0x92, 0xa5, 0x96, 0x68, 0x78, 0x1f, 0xd1, 0x7d, 0xd3, + 0x44, 0xab, 0xab, 0xe4, 0xc1, 0xae, 0xef, 0xb0, 0xef, 0xf4, 0xcd, 0xc6, 0x26, 0xc3, 0x10, 0x49, + 0x08, 0x2d, 0x97, 0x4a, 0xa6, 0xcc, 0x64, 0x28, 0x35, 0xa9, 0xca, 0x4d, 0x96, 0x92, 0x93, 0xae, + 0xec, 0xa4, 0x2b, 0x3d, 0xd9, 0xca, 0x8f, 0x46, 0x09, 0x12, 0x29, 0xc3, 0x64, 0x71, 0xc8, 0x9a, + 0x49, 0x2e, 0x9d, 0x1a, 0x32, 0x1a, 0x7b, 0x09, 0x88, 0xbd, 0x33, 0xe4, 0x52, 0x83, 0x60, 0x4f, + 0x0b, 0x19, 0x1b, 0x41, 0xbc, 0x7a, 0x37, 0x33, 0x35, 0x88, 0x80, 0x35, 0x82, 0x35, 0x82, 0x35, + 0x82, 0x35, 0x52, 0x68, 0x8d, 0xc8, 0x22, 0x81, 0x16, 0x75, 0xd8, 0x31, 0xe1, 0x10, 0xb4, 0x91, + 0x41, 0xb3, 0x2f, 0xda, 0x23, 0xbf, 0x23, 0x2b, 0x52, 0x48, 0x92, 0x71, 0x59, 0x1a, 0x4e, 0x52, + 0xe4, 0x50, 0x32, 0x9e, 0xc4, 0xe8, 0x11, 0x62, 0x75, 0x30, 0x2f, 0x22, 0x12, 0x22, 0x8a, 0x54, + 0x8b, 0x88, 0xac, 0x08, 0x23, 0xa5, 0xb2, 0xf2, 0xc6, 0xcc, 0xa7, 0xb7, 0xb7, 0xd8, 0xa9, 0x10, + 0x7e, 0xd5, 0xb7, 0xd6, 0x2c, 0x0b, 0xbe, 0xfa, 0x83, 0x63, 0x01, 0xc7, 0x02, 0x8e, 0x05, 0x1c, + 0x0b, 0x99, 0x8e, 0x85, 0x2f, 0xae, 0xa6, 0xd0, 0xaf, 0x54, 0x98, 0xc8, 0x3c, 0x8e, 0x75, 0xcb, + 0x65, 0xbc, 0x5f, 0xf1, 0xac, 0xd6, 0x80, 0xed, 0x38, 0x21, 0x8b, 0xa2, 0x82, 0x04, 0xa8, 0x2a, + 0x61, 0x87, 0xe4, 0xee, 0x94, 0xbc, 0x1d, 0x5b, 0xb1, 0x73, 0xdf, 0x2a, 0x12, 0xf7, 0x6e, 0x69, + 0x0f, 0xdf, 0x49, 0x1c, 0x93, 0x3a, 0x64, 0x7a, 0xed, 0xc0, 0x52, 0xab, 0x22, 0xfc, 0x57, 0x41, + 0xda, 0xcb, 0xb5, 0xa5, 0x8c, 0x34, 0x7a, 0x9b, 0xe3, 0xc3, 0x77, 0x84, 0xc3, 0x27, 0xe7, 0xf0, + 0xa1, 0x3c, 0x83, 0xfc, 0xf2, 0x0c, 0xf9, 0x53, 0x45, 0x6f, 0xcc, 0x7e, 0x0f, 0x62, 0x55, 0x2a, + 0x11, 0x71, 0x7a, 0x41, 0xd7, 0xf6, 0x2c, 0x87, 0xf5, 0x5c, 0x9f, 0x39, 0x16, 0x31, 0xad, 0xb1, + 0x52, 0x79, 0x4a, 0xe0, 0x10, 0xc5, 0xf6, 0xd9, 0xdb, 0x78, 0x8d, 0x27, 0x7d, 0xc1, 0xce, 0xea, + 0x1f, 0xcf, 0x2f, 0xeb, 0x67, 0x9d, 0xcb, 0xfa, 0xff, 0xb6, 0x3a, 0x7f, 0xbf, 0x6a, 0x16, 0x64, + 0x92, 0xb6, 0x91, 0x54, 0x7b, 0xf1, 0x43, 0xae, 0x65, 0x9a, 0x5f, 0xe7, 0xc6, 0xf9, 0xe5, 0x9f, + 0xf2, 0xf4, 0xe5, 0xe8, 0x6d, 0xde, 0x57, 0xf5, 0xec, 0xfa, 0xaa, 0x29, 0x71, 0x3d, 0xdf, 0xe4, + 0xc3, 0xca, 0xe1, 0xfa, 0x80, 0x76, 0xbe, 0x14, 0xd7, 0x07, 0x21, 0xeb, 0x0e, 0x43, 0x42, 0x03, + 0x91, 0x1c, 0xa9, 0xd9, 0x40, 0x44, 0x24, 0xe2, 0x19, 0xeb, 0xd9, 0x43, 0x2f, 0x26, 0x58, 0x7b, + 0xb6, 0x47, 0x37, 0x0e, 0x2e, 0x29, 0x5e, 0xbf, 0xe5, 0xb8, 0xa4, 0xc8, 0x32, 0x20, 0x2e, 0x29, + 0x34, 0xc2, 0x26, 0x12, 0x2f, 0x29, 0xee, 0x83, 0xc0, 0x63, 0xb6, 0x94, 0x6b, 0x8a, 0x92, 0x29, + 0x86, 0x4f, 0xeb, 0xdc, 0x15, 0xc1, 0x95, 0x0d, 0x96, 0x9e, 0xaf, 0xa6, 0xd2, 0x41, 0x92, 0xdc, + 0x9f, 0x7c, 0x27, 0xa4, 0xf8, 0x01, 0xdd, 0xd6, 0x0a, 0xdc, 0x56, 0xa2, 0xac, 0x21, 0xd2, 0x6c, + 0x21, 0x22, 0x64, 0x82, 0x54, 0x47, 0x55, 0xc8, 0x03, 0xa9, 0x8e, 0xf9, 0x34, 0x17, 0x64, 0x48, + 0xe2, 0x89, 0xdf, 0x64, 0x76, 0x2f, 0x64, 0x3d, 0xca, 0xaa, 0x54, 0xc7, 0x34, 0x55, 0xa9, 0x62, + 0x0b, 0xb7, 0xbf, 0x3f, 0xb5, 0x34, 0x07, 0x13, 0x3d, 0xb9, 0x15, 0xf6, 0x86, 0xb3, 0xb0, 0x67, + 0x77, 0x99, 0x35, 0xde, 0x37, 0x42, 0xbb, 0xf3, 0x7c, 0x18, 0xa4, 0xda, 0xcb, 0xb0, 0x3f, 0x6e, + 0x0f, 0xb6, 0x47, 0x43, 0xdb, 0xe3, 0xf6, 0x90, 0x62, 0x2f, 0xe8, 0xc1, 0x44, 0x95, 0x41, 0x96, + 0x0e, 0x13, 0x49, 0x85, 0x10, 0x62, 0xf5, 0x45, 0xae, 0xc6, 0x64, 0xa8, 0x33, 0x69, 0x6a, 0x4d, + 0x96, 0x7a, 0x93, 0xae, 0xe6, 0xa4, 0xab, 0x3b, 0x99, 0x6a, 0x8f, 0x8e, 0xf7, 0xd9, 0x21, 0x24, + 0xf4, 0xa8, 0xd4, 0xe1, 0x32, 0xa6, 0xa3, 0x17, 0xe3, 0x25, 0x7c, 0x47, 0x2d, 0xc6, 0x92, 0xaa, + 0x3b, 0x53, 0x2b, 0x4d, 0x99, 0xca, 0x53, 0xba, 0x12, 0x95, 0xad, 0x4c, 0x95, 0x29, 0x55, 0x65, + 0xca, 0x55, 0x85, 0x92, 0xa5, 0x55, 0xb6, 0xc4, 0x4a, 0x97, 0x9e, 0x03, 0x51, 0xc0, 0x89, 0xc8, + 0xe4, 0x48, 0xd6, 0x72, 0x26, 0x07, 0xb1, 0xd8, 0x9d, 0x26, 0x06, 0x20, 0x5a, 0xfc, 0xc1, 0xf4, + 0xef, 0xfe, 0x78, 0x39, 0x0c, 0x0d, 0xd3, 0xa0, 0xec, 0x89, 0x10, 0x0d, 0xef, 0x15, 0xd8, 0xeb, + 0xb9, 0x51, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0xe3, 0x1f, + 0xdc, 0x3e, 0x99, 0xec, 0xff, 0xe9, 0x0e, 0xc3, 0x90, 0xf9, 0x7c, 0x77, 0xef, 0x60, 0x7f, 0xff, + 0x20, 0xf9, 0x8d, 0xf6, 0xf4, 0x23, 0xcf, 0xed, 0x48, 0xb4, 0xe2, 0x67, 0xc9, 0x93, 0x85, 0x5f, + 0xa7, 0x48, 0xb4, 0xfe, 0x46, 0xb1, 0x0b, 0xf5, 0xef, 0x9c, 0x36, 0xfc, 0x5c, 0x1e, 0x31, 0x16, + 0x74, 0x2d, 0xf6, 0x9d, 0x9f, 0x72, 0xe6, 0xb1, 0x3e, 0xe3, 0xe1, 0xa3, 0x15, 0xf8, 0x56, 0xf7, + 0x4b, 0x5c, 0xdd, 0x48, 0x2a, 0x59, 0x16, 0x87, 0x75, 0x4a, 0x64, 0xcb, 0x4c, 0x23, 0xca, 0xda, + 0x54, 0x17, 0x27, 0xb4, 0xe1, 0x4d, 0x4f, 0x10, 0x5c, 0x97, 0x30, 0xa7, 0xb9, 0x5b, 0x52, 0x92, + 0xa0, 0x27, 0x3a, 0x41, 0xa0, 0x08, 0x11, 0x1f, 0xaf, 0x94, 0x84, 0x00, 0xf1, 0xc9, 0x30, 0x86, + 0xdf, 0xee, 0x94, 0x71, 0xbb, 0xa3, 0x8d, 0x77, 0x83, 0xdb, 0x9d, 0xed, 0xc5, 0x5f, 0xb8, 0xdd, + 0x01, 0x55, 0x04, 0xaa, 0x08, 0x54, 0x11, 0xa8, 0x22, 0x50, 0x45, 0x5b, 0x40, 0x15, 0xe1, 0x76, + 0xe7, 0xd7, 0x1e, 0x0c, 0x6e, 0x77, 0x60, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, 0x61, 0xb2, + 0x35, 0x31, 0xd9, 0xb8, 0xdd, 0x31, 0x97, 0x5d, 0xd8, 0x72, 0x4a, 0x7c, 0xc2, 0xd4, 0x22, 0x77, + 0x5c, 0x7f, 0x49, 0xd2, 0x54, 0x82, 0x0a, 0x24, 0xb7, 0x14, 0xe1, 0xb0, 0xcb, 0xfd, 0xa9, 0x75, + 0xb9, 0x9c, 0x4c, 0xfd, 0x7c, 0x3a, 0xf3, 0x4e, 0x73, 0x3a, 0xdf, 0xce, 0x4d, 0x3c, 0xc3, 0xce, + 0x25, 0xfb, 0xce, 0xff, 0x1e, 0x0c, 0x3a, 0xe7, 0xb3, 0x69, 0x5d, 0xb3, 0xde, 0x36, 0x24, 0x1a, + 0xd2, 0xdc, 0xe5, 0x90, 0xde, 0xe1, 0x90, 0x27, 0x16, 0x96, 0x91, 0xd8, 0x2e, 0xd5, 0x3f, 0x41, + 0x62, 0x7b, 0x3e, 0x6d, 0x19, 0x7a, 0xf8, 0x2a, 0x23, 0x68, 0x50, 0x37, 0x4c, 0x57, 0x12, 0x06, + 0x75, 0xc3, 0xb6, 0xdb, 0x55, 0x44, 0x0f, 0x5f, 0x85, 0xae, 0x1f, 0x7a, 0xf8, 0xc2, 0x1a, 0xc1, + 0x1a, 0xc1, 0x1a, 0xc1, 0x1a, 0x49, 0xb7, 0x46, 0xe8, 0xe1, 0xfb, 0xea, 0x2f, 0xf4, 0xf0, 0xcd, + 0x34, 0x1c, 0x7a, 0xf8, 0x8a, 0x11, 0x11, 0xf4, 0xf0, 0xcd, 0x87, 0xac, 0xa0, 0x08, 0xbf, 0x71, + 0x4e, 0x05, 0x7a, 0xf8, 0xc2, 0xb1, 0x80, 0x63, 0x01, 0xc7, 0x02, 0x8e, 0xc5, 0x2b, 0x1c, 0x0b, + 0xf4, 0xf0, 0xd5, 0xc7, 0xaf, 0x40, 0x0f, 0x5f, 0xc3, 0x76, 0x6c, 0xc5, 0xce, 0xa1, 0x87, 0x2f, + 0xf9, 0xc0, 0xe8, 0xe1, 0xab, 0xb9, 0xf7, 0xbb, 0x83, 0x1e, 0xbe, 0x79, 0x3f, 0x7c, 0xe8, 0xe1, + 0x8b, 0x1e, 0xbe, 0x9a, 0x93, 0x2b, 0x3b, 0xe8, 0xe1, 0xfb, 0x6a, 0xd5, 0x89, 0x1e, 0xbe, 0xf4, + 0x6b, 0x8c, 0x1e, 0xbe, 0x32, 0xd7, 0x19, 0x3d, 0x7c, 0xc5, 0xae, 0x2a, 0x7a, 0xf8, 0xea, 0xf7, + 0x1e, 0xb8, 0x3e, 0x40, 0x0f, 0xdf, 0xf5, 0xc3, 0xa0, 0x87, 0xef, 0x2b, 0x5d, 0x29, 0x5c, 0x52, + 0xa4, 0xdc, 0x78, 0x5c, 0x52, 0x98, 0xa0, 0xcf, 0xd1, 0xc3, 0x77, 0x03, 0x37, 0x04, 0x3d, 0x7c, + 0x85, 0x9c, 0x9b, 0x6d, 0xc9, 0xc3, 0x24, 0xc8, 0xdd, 0x15, 0x98, 0xe9, 0xf8, 0x46, 0x23, 0xd9, + 0x18, 0x5b, 0x0b, 0xd1, 0x69, 0x41, 0x85, 0x86, 0x1b, 0xf1, 0x1a, 0xe7, 0x62, 0x13, 0xa5, 0x0a, + 0x17, 0xae, 0x5f, 0xf7, 0xd8, 0x58, 0xef, 0x8f, 0xfd, 0x65, 0x7f, 0xe8, 0x79, 0x02, 0x53, 0x46, + 0x2f, 0xec, 0xef, 0x74, 0x0f, 0xbf, 0x0a, 0x1d, 0x16, 0x32, 0xe7, 0xfd, 0xe3, 0xf4, 0xd1, 0x5a, + 0x09, 0x00, 0x91, 0x52, 0xd0, 0x46, 0x19, 0x14, 0x84, 0x26, 0x16, 0xa7, 0x48, 0xbf, 0x16, 0xa3, + 0x87, 0xb2, 0x6b, 0x8d, 0x6c, 0x4f, 0xc8, 0x28, 0x6e, 0xa2, 0xc5, 0x4c, 0xb5, 0x78, 0x65, 0xdb, + 0xd4, 0xf4, 0x5b, 0x91, 0x61, 0x1b, 0x66, 0xde, 0x40, 0xd6, 0xe5, 0x4f, 0xf0, 0x9f, 0x10, 0xef, + 0x42, 0x90, 0x9f, 0x2a, 0xcc, 0x1f, 0x15, 0xe9, 0x77, 0x92, 0xf8, 0x97, 0xa2, 0xfd, 0x48, 0x32, + 0x7f, 0x91, 0xcc, 0x2f, 0xa4, 0xf2, 0xff, 0xd4, 0x2a, 0x48, 0x61, 0x7e, 0x1b, 0x41, 0xf1, 0x29, + 0x91, 0xc5, 0xa5, 0x56, 0x74, 0x40, 0x9f, 0x8a, 0x9d, 0x81, 0x2a, 0x55, 0x4c, 0xa5, 0x11, 0xa1, + 0x95, 0x45, 0x04, 0x55, 0x12, 0x11, 0x56, 0x39, 0x04, 0x0a, 0x15, 0x0a, 0x55, 0x89, 0x42, 0x15, + 0x55, 0xa9, 0xa3, 0xe0, 0xb0, 0xa8, 0x1b, 0xba, 0x03, 0xa1, 0x2e, 0x52, 0x22, 0xc9, 0xcf, 0x1f, + 0x2e, 0xca, 0xa5, 0x17, 0xca, 0xfc, 0x0b, 0x67, 0xfa, 0x29, 0x98, 0x7d, 0x52, 0x26, 0x9f, 0x8a, + 0xb9, 0x27, 0x67, 0xea, 0xc9, 0x99, 0x79, 0x6a, 0x26, 0x5e, 0x2f, 0xaa, 0x4c, 0x38, 0xb3, 0x4e, + 0x57, 0xd5, 0x42, 0x70, 0x15, 0x0b, 0x01, 0xe4, 0x83, 0x00, 0x3b, 0x3d, 0x10, 0xab, 0x37, 0xc4, + 0xfa, 0xb1, 0xd0, 0xbe, 0xd0, 0xbe, 0xd0, 0xbe, 0x46, 0x6a, 0x5f, 0x77, 0x60, 0x09, 0x17, 0x00, + 0x8a, 0xf4, 0x1d, 0x9a, 0x34, 0x1d, 0xc2, 0xfa, 0x8d, 0x71, 0xda, 0x0d, 0x59, 0x0c, 0x02, 0x65, + 0x80, 0x3f, 0x79, 0x20, 0xbf, 0xdc, 0x6c, 0x99, 0x83, 0xe9, 0x60, 0x7b, 0x3f, 0x77, 0x6f, 0x4b, + 0x56, 0xb9, 0x3d, 0xfb, 0xcb, 0xe1, 0x6d, 0xd1, 0x2a, 0xb7, 0x49, 0x42, 0xd8, 0xdb, 0x3a, 0xdf, + 0x84, 0xd3, 0xca, 0xfc, 0x11, 0x64, 0xfe, 0x97, 0x32, 0x8f, 0x24, 0x15, 0xf9, 0x49, 0x2a, 0x07, + 0xbb, 0xa5, 0xb1, 0x62, 0x78, 0x37, 0xd1, 0x15, 0xa5, 0xf6, 0x92, 0x0a, 0x99, 0xa8, 0x04, 0xfd, + 0x15, 0xc1, 0x1b, 0xbd, 0xe6, 0xa5, 0x87, 0x67, 0x14, 0x31, 0x6e, 0x71, 0xfb, 0x41, 0xbc, 0x6b, + 0x34, 0x7b, 0x30, 0x7c, 0x23, 0xf8, 0x46, 0xf0, 0x8d, 0xb6, 0xd0, 0x37, 0xe2, 0xf6, 0x83, 0xc5, + 0xc7, 0x4f, 0x87, 0x6b, 0x24, 0x74, 0x5d, 0xc9, 0x2a, 0x07, 0x12, 0x56, 0x0c, 0x24, 0xae, 0x14, + 0x48, 0x18, 0xb1, 0x2c, 0xa3, 0x32, 0xa0, 0xac, 0xee, 0x74, 0x92, 0x2a, 0x01, 0xca, 0xac, 0xea, + 0x46, 0xd9, 0x15, 0x51, 0x46, 0xc5, 0x3f, 0xd9, 0x5b, 0x2f, 0xab, 0xc2, 0x9f, 0x54, 0x19, 0x30, + 0x24, 0xc2, 0x7f, 0x5b, 0x79, 0x8d, 0x2f, 0xec, 0xbb, 0x45, 0x56, 0x7c, 0xdd, 0x6c, 0x5a, 0x63, + 0xce, 0xad, 0x5f, 0xf4, 0xe6, 0xcb, 0xa3, 0xbd, 0xdf, 0xf6, 0x7e, 0x87, 0x5b, 0x2d, 0xdd, 0xad, + 0x46, 0xb4, 0x73, 0xe6, 0x68, 0x67, 0x01, 0x69, 0x34, 0x19, 0xc2, 0xf2, 0xde, 0x48, 0xdc, 0xb8, + 0x59, 0x1a, 0x4c, 0x26, 0x67, 0x57, 0x4c, 0xde, 0x8b, 0xd0, 0x3c, 0x17, 0xa1, 0x79, 0x2d, 0x62, + 0xf2, 0x58, 0xd2, 0xee, 0x90, 0xa0, 0x23, 0xa5, 0xe6, 0x28, 0x15, 0x32, 0xc5, 0x98, 0x6e, 0x90, + 0x74, 0x92, 0xee, 0xb4, 0x6e, 0x7e, 0xd6, 0x36, 0xfb, 0xc4, 0x86, 0x7b, 0x9e, 0x75, 0xaf, 0x25, + 0xef, 0xf1, 0x66, 0x6b, 0xfe, 0xfa, 0x95, 0x7b, 0xdd, 0x6f, 0xbe, 0x72, 0x6d, 0x93, 0x44, 0xbf, + 0xb8, 0xd8, 0x4e, 0xcf, 0x65, 0xe1, 0x4e, 0x2c, 0x52, 0xaf, 0xfc, 0x74, 0x2a, 0xd5, 0x96, 0x49, + 0x95, 0x65, 0x52, 0x5d, 0xe9, 0x54, 0xd5, 0x6b, 0x97, 0x32, 0xa5, 0x78, 0x92, 0x8b, 0xe5, 0x06, + 0x5a, 0xe6, 0x95, 0x5a, 0xe5, 0x75, 0xa2, 0xfd, 0xb2, 0xa0, 0xfe, 0xfa, 0x37, 0x5e, 0x58, 0xf7, + 0x4d, 0xd7, 0x9b, 0x6a, 0x9d, 0x7f, 0xbd, 0x18, 0xeb, 0x5f, 0xf1, 0x17, 0xaf, 0x57, 0x88, 0x35, + 0x88, 0xe5, 0xb9, 0xfd, 0x89, 0x7f, 0xfd, 0xeb, 0x97, 0x7b, 0x2a, 0x51, 0xf2, 0xfc, 0x53, 0x2f, + 0x2c, 0xde, 0xeb, 0xd2, 0x01, 0x5e, 0x7d, 0x97, 0xb2, 0xc9, 0x1d, 0xc9, 0xf3, 0xbb, 0x0f, 0xdf, + 0xb5, 0xbc, 0xc3, 0x57, 0x08, 0xe8, 0xa6, 0x57, 0x1a, 0xa9, 0xaf, 0x2a, 0x52, 0x5f, 0x41, 0x2c, + 0x5e, 0x2d, 0x4c, 0xde, 0x8c, 0xf8, 0x08, 0xbc, 0x36, 0x98, 0xfd, 0xb9, 0x68, 0xbc, 0x7e, 0x0d, + 0x57, 0xc8, 0xd5, 0x6b, 0x57, 0x71, 0xb3, 0x6c, 0x93, 0x8d, 0xaf, 0xec, 0xd2, 0x5c, 0xc9, 0xa5, + 0x11, 0xbb, 0xb4, 0xe2, 0x97, 0x59, 0x0c, 0x33, 0x8b, 0x63, 0x46, 0xb1, 0xa4, 0x01, 0x1b, 0x9b, + 0xe6, 0x5e, 0x14, 0xec, 0x9e, 0xbb, 0xf9, 0x9a, 0xcf, 0xf6, 0x79, 0xfc, 0xe1, 0x0d, 0x17, 0x2b, + 0x1d, 0x63, 0x9b, 0xfa, 0xc6, 0x39, 0xcb, 0xcd, 0x72, 0x16, 0x71, 0xce, 0x2a, 0xd6, 0xc2, 0xc4, + 0x5b, 0x98, 0x98, 0x0b, 0x12, 0x77, 0x39, 0x7e, 0x4c, 0xea, 0x7b, 0x59, 0x01, 0x39, 0x9c, 0x59, + 0x72, 0x36, 0x57, 0xe4, 0x68, 0x8e, 0xcf, 0x18, 0x95, 0x9f, 0xb3, 0x81, 0x7a, 0xee, 0xce, 0x0e, + 0x60, 0x4a, 0x55, 0x31, 0xfd, 0x7c, 0x3a, 0x6d, 0x51, 0x82, 0xb6, 0x80, 0xb6, 0xa0, 0xd3, 0x16, + 0x69, 0x13, 0x16, 0x53, 0x19, 0x4f, 0x01, 0x46, 0x34, 0xa3, 0x31, 0xcd, 0x7c, 0x4c, 0x44, 0x1c, + 0x17, 0x91, 0xc7, 0x46, 0xd4, 0xf1, 0x11, 0x7e, 0x8c, 0x84, 0x1f, 0x27, 0xc1, 0xc7, 0x4a, 0x0d, + 0xe5, 0x9f, 0x39, 0x68, 0xea, 0x29, 0xe6, 0x7b, 0x5a, 0xc0, 0x3a, 0x5b, 0xb1, 0x05, 0x11, 0x35, + 0xb7, 0xc5, 0xd6, 0xd2, 0x4e, 0x5e, 0xb0, 0x76, 0x76, 0x76, 0x5d, 0xbf, 0xb9, 0xe9, 0x7c, 0xac, + 0x5d, 0x9c, 0x37, 0xfe, 0xca, 0x2a, 0x85, 0x02, 0x6b, 0x5e, 0x0b, 0x0e, 0x77, 0x3d, 0x6f, 0x7e, + 0x3e, 0x2a, 0xe8, 0x10, 0xd1, 0x2b, 0xf8, 0xbd, 0x2e, 0x9a, 0x8d, 0x9b, 0x3c, 0xbe, 0x57, 0xa3, + 0xdc, 0xa9, 0xb7, 0xfe, 0x5e, 0xbf, 0xbe, 0xac, 0xb7, 0xf2, 0xf8, 0x7a, 0xe7, 0xcd, 0xcf, 0x15, + 0xd5, 0x55, 0x18, 0xda, 0xb2, 0xb5, 0xf9, 0x1b, 0x09, 0xfb, 0x56, 0xb0, 0x3d, 0x3b, 0xec, 0x5b, + 0xfc, 0x4b, 0xc8, 0xa2, 0x2f, 0x81, 0xe7, 0x08, 0x40, 0x4f, 0x0b, 0x0f, 0x04, 0x92, 0x02, 0x92, + 0x02, 0x92, 0xda, 0x58, 0x66, 0x32, 0x87, 0x45, 0x0b, 0x08, 0x7f, 0x16, 0x14, 0xe6, 0x2c, 0x20, + 0xea, 0x47, 0x64, 0xd8, 0xb2, 0xe8, 0xdc, 0x1b, 0xc1, 0x61, 0xc8, 0x14, 0xa1, 0xa6, 0x22, 0x32, + 0xab, 0x44, 0x86, 0x0f, 0x53, 0x6d, 0x81, 0xe8, 0x70, 0x60, 0x92, 0xbd, 0x50, 0x14, 0x45, 0xd6, + 0xd6, 0x18, 0x84, 0xf4, 0xed, 0xef, 0x6e, 0x7f, 0xd8, 0xcf, 0x0e, 0x3e, 0x66, 0x0f, 0x02, 0xe8, + 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe8, 0x58, 0xb5, + 0xcc, 0xff, 0xb1, 0x43, 0xdf, 0xf5, 0x1f, 0xac, 0xc0, 0xf7, 0x1e, 0xb3, 0x23, 0x8f, 0xb9, 0xa7, + 0xa5, 0x54, 0xe4, 0x82, 0x1a, 0x62, 0x01, 0xc6, 0x00, 0xc6, 0x6c, 0x35, 0x8c, 0xc9, 0xde, 0x8e, + 0x29, 0x63, 0xbb, 0x25, 0x64, 0x11, 0xfc, 0x2a, 0x8c, 0xf8, 0x79, 0xcc, 0xee, 0xf3, 0xbf, 0x4c, + 0x03, 0x6c, 0x74, 0x08, 0xae, 0x49, 0x57, 0xcd, 0x3c, 0x53, 0xf5, 0xf2, 0xcc, 0xa1, 0x35, 0x65, + 0x84, 0xd6, 0x20, 0xb4, 0xe6, 0x65, 0x8c, 0x81, 0xd0, 0x1a, 0x80, 0x1a, 0x80, 0x1a, 0xf3, 0x40, + 0x0d, 0x42, 0x6b, 0x36, 0xf7, 0xce, 0x11, 0x5a, 0x23, 0xf1, 0xbd, 0x10, 0x5a, 0x63, 0xe4, 0xeb, + 0x21, 0xb4, 0x86, 0x8a, 0x60, 0x42, 0x68, 0x0d, 0x90, 0x14, 0x90, 0x94, 0x7e, 0x48, 0x0a, 0xb7, + 0x5c, 0xcf, 0x27, 0x82, 0x5b, 0x2e, 0xd5, 0x06, 0x1d, 0xb7, 0x5c, 0xb8, 0xe5, 0x22, 0x03, 0x21, + 0x31, 0xeb, 0xea, 0x79, 0xcc, 0x99, 0x95, 0x68, 0xc9, 0x8c, 0x42, 0x96, 0x9e, 0x08, 0x18, 0x02, + 0x18, 0x02, 0x18, 0x02, 0x18, 0x02, 0x18, 0x02, 0x18, 0x02, 0x18, 0x02, 0x18, 0xb2, 0x6a, 0x99, + 0x11, 0xe1, 0x0b, 0xd0, 0x01, 0xd0, 0x01, 0xd0, 0x01, 0xd0, 0x01, 0xd0, 0x01, 0xd0, 0x01, 0xd0, + 0x21, 0x05, 0x74, 0x24, 0x37, 0x25, 0x16, 0xfb, 0xde, 0x65, 0xcc, 0x61, 0x02, 0xee, 0x60, 0x56, + 0x3c, 0x13, 0x50, 0x04, 0x50, 0x04, 0x50, 0x64, 0x63, 0x99, 0x31, 0x31, 0x4a, 0x17, 0x69, 0x06, + 0x50, 0x60, 0x50, 0x60, 0x50, 0x60, 0x48, 0x33, 0x58, 0x29, 0x16, 0x66, 0xa4, 0x19, 0xa4, 0x68, + 0xe6, 0xa2, 0xb8, 0x55, 0xc1, 0xeb, 0xc3, 0xa6, 0xd1, 0x9e, 0x40, 0x80, 0x40, 0x4a, 0x12, 0x44, + 0x71, 0x4d, 0x0a, 0xae, 0xc7, 0x0f, 0x6d, 0xc4, 0xcf, 0x44, 0x9b, 0x82, 0xb9, 0xf5, 0xa6, 0xe8, + 0x54, 0x10, 0xb1, 0x87, 0xb1, 0xb0, 0xc7, 0xd7, 0xdf, 0xae, 0xff, 0xf0, 0xfa, 0x66, 0x05, 0x8b, + 0x1f, 0x34, 0xa3, 0x5f, 0x41, 0x14, 0xe6, 0xb2, 0x59, 0x41, 0x14, 0x6a, 0xd3, 0xa9, 0x20, 0x0a, + 0x1f, 0xee, 0xa3, 0xcd, 0x7b, 0x14, 0x4c, 0x3e, 0x96, 0x8f, 0xee, 0x04, 0xaf, 0x12, 0xb2, 0xac, + 0x48, 0x5b, 0xbf, 0xd6, 0x04, 0xaf, 0x11, 0x42, 0x1a, 0x64, 0xb1, 0x71, 0x5f, 0x82, 0xb1, 0xb4, + 0x65, 0xc8, 0x88, 0x1c, 0x7f, 0x7a, 0x3b, 0x6a, 0x8d, 0x6f, 0x24, 0xca, 0xa2, 0x9c, 0x47, 0xfd, + 0xb3, 0x21, 0x37, 0x11, 0x75, 0x39, 0xee, 0x4a, 0xea, 0x54, 0xc8, 0x94, 0xa5, 0xf7, 0x97, 0x84, + 0x25, 0x55, 0x09, 0xfe, 0x8c, 0xc7, 0x43, 0x5b, 0xfa, 0x25, 0xd5, 0xb1, 0x01, 0xf7, 0x92, 0xe6, + 0x58, 0xa9, 0x21, 0x5e, 0xd2, 0x1e, 0xb7, 0xe4, 0x01, 0x8e, 0xcd, 0xed, 0x81, 0x67, 0xfb, 0xcc, + 0xe2, 0x59, 0x39, 0x9c, 0x39, 0xe1, 0x5b, 0x78, 0x6e, 0xc6, 0xfd, 0x11, 0x73, 0x07, 0x99, 0xf9, + 0x78, 0x8a, 0x3c, 0xa6, 0xc2, 0x8f, 0xab, 0xe8, 0x63, 0x4b, 0x76, 0x7c, 0xc9, 0x8e, 0x31, 0xc5, + 0x71, 0xce, 0x76, 0xac, 0x33, 0x1e, 0x6f, 0x71, 0xfc, 0xea, 0x0a, 0xec, 0x68, 0x09, 0x3d, 0xa2, + 0x73, 0xd6, 0xb3, 0x22, 0xe0, 0x59, 0x75, 0x7f, 0x12, 0xd9, 0xa6, 0xea, 0x0e, 0x3e, 0xc3, 0x96, + 0x15, 0xdc, 0xc1, 0xb7, 0x23, 0x6b, 0x72, 0x56, 0x32, 0x24, 0x07, 0x2c, 0xed, 0xd9, 0xfc, 0x63, + 0xa1, 0x52, 0xa1, 0x52, 0xa1, 0x52, 0x35, 0x52, 0xa9, 0xcf, 0x8e, 0xa7, 0x48, 0x65, 0xfa, 0x4e, + 0xc0, 0xb3, 0x9a, 0x36, 0xe7, 0x2c, 0xf4, 0x85, 0x54, 0x6e, 0x88, 0x1f, 0xb8, 0xbb, 0x7b, 0xfa, + 0xf3, 0xb6, 0x68, 0x9d, 0xd8, 0x56, 0xaf, 0x66, 0x7d, 0x6c, 0xff, 0x28, 0xbe, 0xad, 0x8c, 0xf6, + 0x4e, 0xf7, 0x76, 0x17, 0x7f, 0x76, 0xba, 0xf7, 0xa3, 0xf8, 0xb6, 0x3a, 0xda, 0xdd, 0x5d, 0xf1, + 0x2f, 0xbf, 0xaf, 0x7a, 0xc6, 0xde, 0xcf, 0xdd, 0xdd, 0xdd, 0x72, 0xf5, 0xb6, 0x68, 0x55, 0xdb, + 0x3f, 0xcb, 0xb7, 0x45, 0xab, 0xd2, 0x1e, 0xff, 0x4e, 0xfb, 0xe7, 0x6d, 0xb1, 0xd4, 0xfe, 0x3d, + 0xfe, 0x76, 0xf2, 0xff, 0xbd, 0xbb, 0xbb, 0xfd, 0xbd, 0x1f, 0x87, 0xa3, 0xd7, 0xfd, 0xf2, 0xde, + 0xde, 0xee, 0xc1, 0x64, 0x0e, 0xed, 0xbd, 0x9f, 0x93, 0x3f, 0x7f, 0x94, 0x47, 0x7b, 0x3f, 0x77, + 0x4b, 0xb7, 0x45, 0xab, 0xd4, 0x9e, 0xfd, 0x43, 0x69, 0xfc, 0x90, 0x77, 0xe3, 0x5f, 0x17, 0x75, + 0x20, 0x77, 0x77, 0x6f, 0xff, 0x79, 0xda, 0xfe, 0xdb, 0xe9, 0xde, 0x8f, 0xa3, 0xd1, 0xec, 0xfb, + 0xf8, 0xff, 0x7b, 0x3f, 0x77, 0xf7, 0x7f, 0xbb, 0xbb, 0xdb, 0xdf, 0xff, 0x6d, 0x6f, 0xf2, 0xd2, + 0xd3, 0xdf, 0xfb, 0x6d, 0xf2, 0xaf, 0xbf, 0x9f, 0x9e, 0x2e, 0xfd, 0x68, 0x6f, 0xf7, 0x60, 0xff, + 0x6f, 0x7b, 0xd9, 0x0f, 0x5e, 0x5b, 0xe9, 0xc1, 0x4b, 0x75, 0x99, 0xb6, 0xf6, 0x69, 0x59, 0x2e, + 0xd9, 0xd6, 0x3f, 0x34, 0xc3, 0xe5, 0xdb, 0xda, 0x87, 0xa6, 0xba, 0x94, 0xd3, 0x0b, 0xd7, 0x78, + 0x41, 0xd7, 0xf6, 0x2c, 0xd7, 0x11, 0x07, 0x69, 0x92, 0x27, 0x02, 0xcd, 0x00, 0xcd, 0x00, 0xcd, + 0xe8, 0xe4, 0x20, 0xf2, 0xf0, 0xe5, 0xeb, 0xd4, 0xcd, 0x80, 0x8c, 0x81, 0x1a, 0xaf, 0x3f, 0xf0, + 0x22, 0xcb, 0xb3, 0xef, 0x99, 0x67, 0xdd, 0x7b, 0x41, 0xf7, 0xab, 0x40, 0x6f, 0x6e, 0xf9, 0xd1, + 0xd0, 0x81, 0xd0, 0x81, 0xd0, 0x81, 0x1a, 0xe9, 0xc0, 0xf4, 0xed, 0xb1, 0xd7, 0x2a, 0xc1, 0x63, + 0x31, 0xde, 0xdc, 0xac, 0x7d, 0xf6, 0xf3, 0xff, 0xc6, 0x0a, 0xe5, 0xe0, 0xc1, 0x0b, 0xee, 0x6d, + 0xef, 0x20, 0x64, 0x11, 0x0b, 0xbf, 0x31, 0x67, 0x4e, 0xc1, 0xac, 0xfc, 0xe9, 0xac, 0x03, 0x77, + 0x82, 0xc4, 0xe0, 0x1c, 0x6c, 0xb1, 0x73, 0x20, 0xf5, 0xf2, 0x2a, 0x63, 0x68, 0x6b, 0xf2, 0x1c, + 0xb1, 0x91, 0x6e, 0x0b, 0x01, 0x65, 0x07, 0x71, 0x44, 0x50, 0xfc, 0xff, 0x54, 0xb5, 0xb4, 0xd3, + 0x2f, 0x6d, 0x9a, 0xc4, 0x88, 0xcc, 0x1e, 0x9a, 0x28, 0xcf, 0x2c, 0x6f, 0x89, 0x0c, 0xb8, 0x49, + 0x97, 0x8e, 0x2a, 0x4c, 0x4d, 0x61, 0xc8, 0x8e, 0x1a, 0x44, 0xa0, 0x85, 0xe7, 0x28, 0x41, 0x88, + 0x89, 0x97, 0xa3, 0xc0, 0xd2, 0x35, 0x09, 0x58, 0xe1, 0xbd, 0x6e, 0xde, 0x2c, 0x60, 0x69, 0xf5, + 0xb3, 0xaa, 0xae, 0x32, 0x54, 0x17, 0x54, 0x97, 0x04, 0xd5, 0x85, 0x20, 0x20, 0xf0, 0x1b, 0xe0, + 0x37, 0xc0, 0x6f, 0x6c, 0x6e, 0x25, 0x11, 0x04, 0x44, 0xb6, 0x65, 0x08, 0x02, 0x82, 0x4a, 0x85, + 0x4a, 0xdd, 0x3a, 0x95, 0x8a, 0x20, 0x20, 0x04, 0x01, 0xad, 0x58, 0x28, 0x04, 0x01, 0xcd, 0xaf, + 0x08, 0x78, 0x7e, 0x04, 0x01, 0x21, 0x08, 0x08, 0x68, 0x06, 0x68, 0x46, 0x6f, 0x07, 0x11, 0x41, + 0x40, 0x08, 0x02, 0x82, 0x0e, 0x84, 0x0e, 0xdc, 0x62, 0x1d, 0x88, 0x20, 0x20, 0x38, 0x07, 0x70, + 0x0e, 0x5e, 0xf9, 0x0a, 0x91, 0xfb, 0x7f, 0x02, 0xef, 0x8f, 0xe2, 0xa7, 0xc1, 0x20, 0xc2, 0x20, + 0xc2, 0x20, 0x6a, 0x64, 0x10, 0x33, 0xb7, 0x3b, 0x58, 0x3c, 0x9b, 0x22, 0xcc, 0xa1, 0x98, 0xf6, + 0x07, 0xb3, 0x2f, 0x31, 0xe2, 0xbf, 0x23, 0xba, 0x1d, 0x82, 0x60, 0xa5, 0xb6, 0xf4, 0x58, 0xc1, + 0xed, 0x11, 0x92, 0xe7, 0x12, 0x94, 0xe6, 0x17, 0x74, 0x3c, 0x16, 0x8d, 0xba, 0x71, 0x5b, 0x25, + 0xba, 0x8d, 0x82, 0x94, 0x3d, 0x7b, 0xa3, 0xc7, 0x53, 0xda, 0x06, 0x02, 0xac, 0x61, 0xc4, 0x04, + 0x32, 0xaf, 0xf1, 0xd3, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, + 0x00, 0xb0, 0x00, 0xb0, 0x72, 0x00, 0xb0, 0x90, 0xc6, 0xf6, 0xab, 0x34, 0xb6, 0x14, 0xbd, 0x1a, + 0xd2, 0xaf, 0x2c, 0x6d, 0xb9, 0xd9, 0x69, 0x2f, 0x87, 0x94, 0x11, 0x04, 0xd9, 0x98, 0x66, 0x21, + 0xcc, 0xb2, 0x10, 0x26, 0x39, 0x1b, 0x73, 0x6c, 0x76, 0x47, 0x92, 0xf5, 0x72, 0x5e, 0x48, 0x95, + 0x7e, 0xf4, 0xab, 0x96, 0x10, 0x37, 0x93, 0xb1, 0xae, 0x27, 0x43, 0x75, 0x6e, 0xc6, 0x83, 0x18, + 0xd1, 0xf2, 0x44, 0x8f, 0x9e, 0x1d, 0x2b, 0xb7, 0x4a, 0x58, 0x73, 0x8d, 0xb7, 0xaf, 0xe9, 0x09, + 0xe0, 0xa5, 0xeb, 0x09, 0xe0, 0xa1, 0x27, 0x80, 0x54, 0xb7, 0x74, 0xbb, 0x7b, 0x02, 0x78, 0x99, + 0x7a, 0x02, 0x78, 0xe8, 0x09, 0x40, 0xc8, 0xc0, 0xa0, 0x27, 0x00, 0x7a, 0x02, 0xc8, 0x25, 0x36, + 0x91, 0x0e, 0xac, 0x84, 0xb0, 0x44, 0x3a, 0x30, 0xd2, 0x81, 0x65, 0x1f, 0x53, 0xe1, 0xc7, 0x55, + 0xf4, 0xb1, 0x25, 0x3b, 0xbe, 0x64, 0xc7, 0x98, 0xe2, 0x38, 0x8b, 0x21, 0xc8, 0x90, 0x0e, 0xbc, + 0xf1, 0xb3, 0x72, 0x92, 0x0e, 0x4c, 0x92, 0x0c, 0x0c, 0x75, 0x0a, 0x75, 0x0a, 0x75, 0xaa, 0x93, + 0x3a, 0x45, 0x2a, 0x30, 0x52, 0x81, 0x57, 0x2c, 0x54, 0xee, 0x52, 0x81, 0x91, 0x85, 0x0a, 0x43, + 0x0a, 0x43, 0x0a, 0x43, 0x4a, 0xe7, 0x97, 0x20, 0x0b, 0x75, 0x45, 0x16, 0x2a, 0x5d, 0x12, 0x2a, + 0x34, 0x20, 0x34, 0x20, 0x34, 0xa0, 0x4e, 0x1a, 0x10, 0x39, 0xa8, 0x12, 0x75, 0x34, 0x82, 0xc7, + 0x56, 0x44, 0x6a, 0x78, 0x71, 0x50, 0x8d, 0x87, 0x1a, 0xe8, 0xf2, 0x0c, 0x21, 0x6e, 0x0e, 0xa5, + 0x18, 0x38, 0xdc, 0x1c, 0x8a, 0x33, 0x5c, 0xa8, 0x81, 0x2e, 0x42, 0x81, 0xa1, 0x06, 0x3a, 0x54, + 0x17, 0x54, 0xd7, 0x66, 0x13, 0x47, 0xd0, 0x03, 0x5c, 0x6b, 0xb8, 0xd6, 0x70, 0xad, 0x37, 0xb7, + 0x92, 0x08, 0x7a, 0xa0, 0xe3, 0x2c, 0x11, 0xf4, 0x00, 0x75, 0x0a, 0x75, 0xba, 0x4d, 0xea, 0x14, + 0x41, 0x0f, 0x08, 0x7a, 0x58, 0xb1, 0x50, 0x08, 0x7a, 0x10, 0x61, 0x4e, 0x11, 0xf4, 0x00, 0x43, + 0x0a, 0x43, 0xba, 0x25, 0x7e, 0x09, 0x82, 0x1e, 0x10, 0xf4, 0x00, 0x0d, 0x08, 0x0d, 0xb8, 0xb5, + 0x1a, 0x10, 0x41, 0x0f, 0x12, 0x75, 0x34, 0x82, 0x1e, 0x7e, 0x15, 0xf4, 0x80, 0x8a, 0x39, 0xb3, + 0x8f, 0xa3, 0x62, 0x4e, 0x0e, 0x2b, 0xe6, 0xcc, 0xe4, 0x5c, 0x42, 0xc5, 0x1c, 0x0f, 0x15, 0x73, + 0xb2, 0x6e, 0x95, 0xcc, 0x8a, 0x39, 0x9c, 0x59, 0x83, 0xc0, 0x73, 0xbb, 0x2e, 0x4b, 0x51, 0x37, + 0xe7, 0xf9, 0x87, 0x89, 0xab, 0xe7, 0x94, 0x65, 0x55, 0xcf, 0xd9, 0x28, 0xa2, 0x22, 0x4f, 0xf5, + 0x73, 0x36, 0xb1, 0x7f, 0x8a, 0x2b, 0xe8, 0xcc, 0xe4, 0xee, 0x31, 0x7d, 0x19, 0x9d, 0xa7, 0x47, + 0x6c, 0x4b, 0x2d, 0x9d, 0x54, 0xa1, 0x42, 0xdb, 0x50, 0x4d, 0x27, 0x0d, 0xf0, 0xd3, 0xb5, 0x9e, + 0x8e, 0xed, 0x3b, 0xae, 0x63, 0x8f, 0x85, 0xdb, 0xe6, 0x5f, 0x22, 0x01, 0x85, 0x75, 0x16, 0x1e, + 0x88, 0x0a, 0x3b, 0x19, 0x0e, 0x93, 0x68, 0x76, 0xc4, 0xc4, 0x70, 0xb3, 0xb4, 0x5e, 0xd6, 0x8e, + 0x79, 0x01, 0x67, 0xf3, 0x67, 0x47, 0x1c, 0xb1, 0xb9, 0xf0, 0x5c, 0x31, 0xb4, 0x66, 0x29, 0xf7, + 0xb4, 0x26, 0x67, 0x20, 0x36, 0x49, 0x88, 0xcd, 0x2c, 0x47, 0x5a, 0x0f, 0x6a, 0x33, 0xeb, 0x51, + 0x4f, 0x1e, 0xe4, 0xb8, 0x51, 0x37, 0x74, 0xfb, 0xae, 0x6f, 0xf3, 0x20, 0x14, 0x27, 0x24, 0x49, + 0xa8, 0xe9, 0xdc, 0xe3, 0x05, 0xed, 0xa7, 0xd8, 0xf2, 0xea, 0xc2, 0x14, 0x01, 0x85, 0x42, 0x20, + 0x54, 0x0c, 0x54, 0x0a, 0x82, 0x5c, 0x51, 0x90, 0x2b, 0x0c, 0x5a, 0xc5, 0x21, 0x46, 0x81, 0x08, + 0x52, 0x24, 0xc9, 0xab, 0x0a, 0xbb, 0x2b, 0x59, 0x92, 0x58, 0x71, 0x77, 0x26, 0x4b, 0x08, 0xe0, + 0x58, 0xe0, 0x33, 0x9f, 0xdd, 0xa1, 0xc4, 0xd4, 0xfa, 0xc1, 0xbc, 0xea, 0xd2, 0xa4, 0x7d, 0x81, + 0x80, 0xed, 0x2e, 0x04, 0xa1, 0xfb, 0x30, 0x79, 0x2b, 0xcb, 0x76, 0x1c, 0x02, 0xa5, 0xbf, 0x38, + 0x00, 0xd4, 0x3e, 0xd4, 0x3e, 0xd4, 0x3e, 0xd4, 0xbe, 0x11, 0x6a, 0x7f, 0x51, 0x79, 0xe5, 0x54, + 0xf1, 0x47, 0x3e, 0xad, 0xde, 0x8f, 0x7c, 0xa8, 0x7d, 0xa8, 0x7d, 0xa8, 0x7d, 0xa8, 0x7d, 0xf3, + 0xd4, 0x7e, 0xe4, 0xe7, 0x49, 0xeb, 0x0f, 0xc2, 0x80, 0x07, 0xdd, 0xc0, 0xb3, 0x26, 0xaf, 0x28, + 0x5e, 0xed, 0x2f, 0x0e, 0x00, 0xbd, 0x0f, 0xbd, 0x0f, 0xbd, 0x0f, 0xbd, 0x6f, 0x84, 0xde, 0x5f, + 0x54, 0x5e, 0x39, 0x52, 0xfc, 0xb3, 0x48, 0x2d, 0xcf, 0x8d, 0x78, 0x24, 0x5e, 0xed, 0xcf, 0x3f, + 0x5e, 0xac, 0xd2, 0x2f, 0x41, 0xe9, 0x43, 0xe9, 0x43, 0xe9, 0x8b, 0x91, 0x59, 0x51, 0x77, 0x85, + 0x2b, 0x15, 0x8b, 0x78, 0xd9, 0x5a, 0xa5, 0x5f, 0x44, 0x8b, 0x97, 0x58, 0x35, 0x43, 0xa6, 0x6e, + 0x28, 0xd5, 0x8e, 0x04, 0xf5, 0x43, 0xad, 0x86, 0xa4, 0xa9, 0x23, 0x69, 0x6a, 0x49, 0x8e, 0x7a, + 0x12, 0xab, 0xa6, 0x04, 0xab, 0x2b, 0x32, 0xb5, 0x95, 0x3c, 0x58, 0x40, 0xb2, 0xfa, 0x8b, 0x87, + 0x29, 0x73, 0xfa, 0xba, 0x24, 0xb7, 0x58, 0x9a, 0x0a, 0x93, 0xa1, 0xca, 0x24, 0xaa, 0x34, 0x59, + 0xaa, 0x4d, 0xba, 0x8a, 0x93, 0xae, 0xea, 0xe4, 0xaa, 0x3c, 0x1a, 0xd5, 0x47, 0xa4, 0x02, 0xe9, + 0xdc, 0x76, 0x89, 0x6e, 0xbc, 0x0c, 0xb7, 0xfe, 0x65, 0x37, 0x3f, 0x6b, 0x1a, 0xab, 0x3c, 0x39, + 0x22, 0x90, 0xa1, 0x82, 0xcf, 0xbe, 0x73, 0xeb, 0x4b, 0x30, 0x88, 0xe8, 0x0d, 0xdf, 0xd3, 0x50, + 0xb4, 0xf6, 0xaf, 0x04, 0xfb, 0x07, 0xfb, 0x07, 0xfb, 0xb7, 0x1d, 0xf6, 0x8f, 0xca, 0x15, 0x58, + 0x52, 0x90, 0xf4, 0x72, 0xbc, 0xa8, 0x27, 0xa9, 0xc5, 0x98, 0x56, 0x5d, 0x4a, 0x53, 0x9b, 0x32, + 0xd5, 0xa7, 0x02, 0x35, 0x2a, 0x5b, 0x9d, 0x2a, 0x53, 0xab, 0xca, 0xd4, 0xab, 0x1a, 0x35, 0x4b, + 0xab, 0x6e, 0x89, 0xd5, 0xae, 0x34, 0xf5, 0xfb, 0xc4, 0xcc, 0xf8, 0x0e, 0xfb, 0x2e, 0x4f, 0xf8, + 0x13, 0xb2, 0x26, 0x1e, 0x56, 0x92, 0xfc, 0xd1, 0xf2, 0x37, 0xca, 0x14, 0xb3, 0x0a, 0x05, 0xad, + 0x50, 0x51, 0xab, 0x52, 0xd8, 0xca, 0x15, 0xb7, 0x72, 0x05, 0xae, 0x56, 0x91, 0xcb, 0x51, 0xe8, + 0x92, 0x14, 0xbb, 0x3c, 0x7e, 0x49, 0x21, 0xdf, 0xa4, 0x82, 0x7f, 0x7a, 0x05, 0x1f, 0x15, 0x9b, + 0x9c, 0x37, 0xf9, 0x10, 0x55, 0x09, 0x62, 0x5a, 0x70, 0x7d, 0xce, 0xc2, 0x9e, 0xdd, 0x65, 0xd6, + 0x58, 0x5c, 0x14, 0x40, 0x84, 0xe7, 0xc3, 0xcb, 0x85, 0x0a, 0x25, 0x40, 0x05, 0x12, 0xa8, 0xe0, + 0xf6, 0x00, 0x14, 0xb6, 0x10, 0x28, 0xb8, 0x3d, 0xc0, 0x04, 0xbd, 0xfd, 0xc0, 0x64, 0xc0, 0x6c, + 0x5d, 0xe7, 0x32, 0xeb, 0x88, 0x2c, 0xdd, 0xea, 0x0c, 0x51, 0xfa, 0xcb, 0xca, 0xbf, 0x2c, 0x79, + 0x60, 0x05, 0x46, 0x40, 0xb9, 0x31, 0x50, 0x6d, 0x14, 0xb4, 0x31, 0x0e, 0xda, 0x18, 0x09, 0x1d, + 0x8c, 0x85, 0x5c, 0xa3, 0x21, 0xd9, 0x78, 0x28, 0x33, 0x22, 0xcb, 0x1e, 0x84, 0xba, 0xe3, 0xb6, + 0xe4, 0x4d, 0xa8, 0x3a, 0x6e, 0x72, 0x49, 0x48, 0xe5, 0x9e, 0x86, 0x4e, 0x46, 0x47, 0x1b, 0xe3, + 0xa3, 0x8b, 0x11, 0xd2, 0xce, 0x18, 0x69, 0x67, 0x94, 0x74, 0x32, 0x4e, 0x6a, 0x8c, 0x94, 0x22, + 0x63, 0x95, 0x2c, 0xbc, 0x74, 0x82, 0x74, 0xad, 0xb6, 0x90, 0x4f, 0x98, 0xae, 0xf5, 0x50, 0x8e, + 0x15, 0xce, 0xa1, 0x99, 0x54, 0x33, 0x1f, 0x1f, 0x83, 0xd3, 0xc4, 0xa0, 0x46, 0x8b, 0x3f, 0x98, + 0xfe, 0x3d, 0x2e, 0x06, 0xff, 0x66, 0x3b, 0x0e, 0x8a, 0x82, 0x43, 0x52, 0x88, 0x86, 0xf7, 0x1a, + 0xe1, 0xab, 0xb9, 0xd9, 0x00, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, 0x01, 0x62, + 0x01, 0x62, 0x11, 0x40, 0xac, 0xdb, 0x27, 0x88, 0xf5, 0x3f, 0xdd, 0x61, 0x18, 0x32, 0x9f, 0xef, + 0xee, 0x1d, 0xec, 0xef, 0x1f, 0x24, 0xbf, 0xd1, 0x9e, 0x7e, 0xe4, 0xb9, 0x5d, 0x8e, 0x56, 0xfc, + 0x2c, 0x79, 0xb2, 0xb4, 0xcb, 0x71, 0x0d, 0xd0, 0x5a, 0xae, 0xd9, 0x3e, 0x41, 0x6d, 0xd5, 0xd2, + 0xe3, 0x52, 0xd2, 0xde, 0x47, 0xcf, 0xba, 0x09, 0x25, 0xdf, 0x3f, 0x1e, 0x2c, 0x74, 0xa0, 0x58, + 0xf8, 0xfb, 0xc1, 0x5c, 0xdd, 0x8c, 0xb9, 0xbf, 0x1d, 0x24, 0xc9, 0x33, 0xc9, 0x77, 0x07, 0x73, + 0x81, 0x07, 0x59, 0x9a, 0xbe, 0xe9, 0x2f, 0x9f, 0xf9, 0xba, 0x2c, 0x55, 0x24, 0xf9, 0x39, 0x93, + 0x78, 0x99, 0x11, 0x1a, 0x1b, 0xb5, 0x8d, 0x6b, 0xb1, 0x66, 0xfc, 0xee, 0x9d, 0x0f, 0xb3, 0x77, + 0x1d, 0xdb, 0xcb, 0xd9, 0x6f, 0x35, 0xdc, 0x88, 0x77, 0x2e, 0xd9, 0x77, 0xfe, 0xf7, 0x60, 0xd0, + 0x39, 0x9f, 0xbd, 0xd0, 0x35, 0xeb, 0x21, 0xe4, 0x6b, 0x93, 0xfd, 0x90, 0x79, 0xfb, 0xaf, 0xe4, + 0xd6, 0x5f, 0x59, 0x88, 0x57, 0x19, 0xd1, 0xe0, 0x39, 0xf2, 0xf3, 0x11, 0xe4, 0x85, 0x68, 0x70, + 0x71, 0x4b, 0x29, 0x3d, 0xcc, 0xab, 0x1b, 0x0c, 0xc7, 0x26, 0x32, 0x52, 0x17, 0xe9, 0x95, 0xcc, + 0x60, 0xcb, 0x82, 0xbd, 0x8a, 0xdb, 0x19, 0xec, 0x25, 0xd9, 0x2c, 0xa8, 0x36, 0x0f, 0xda, 0x98, + 0x09, 0x6d, 0xcc, 0x85, 0x1e, 0x66, 0x63, 0x3b, 0x28, 0x20, 0x65, 0x01, 0x5f, 0xc1, 0x90, 0x5b, + 0x9e, 0x7d, 0xcf, 0x3c, 0xe6, 0x58, 0x41, 0x97, 0x33, 0x1e, 0xa9, 0xbf, 0x99, 0x5c, 0x31, 0x27, + 0xdc, 0x4f, 0x2a, 0x99, 0x80, 0x66, 0xf7, 0x93, 0x8a, 0x4c, 0x92, 0x2e, 0xa6, 0x49, 0x3b, 0x13, + 0xa5, 0x9d, 0xa9, 0xd2, 0xcb, 0x64, 0xa9, 0x31, 0x5d, 0x8a, 0x4c, 0x58, 0xb2, 0xf4, 0xfa, 0xdc, + 0x51, 0x4e, 0x1d, 0x96, 0xa3, 0x8a, 0x06, 0xb7, 0x94, 0xef, 0x14, 0x4e, 0xe1, 0xda, 0xf6, 0x1f, + 0xc6, 0x0b, 0x72, 0xab, 0xf4, 0x4c, 0xaa, 0xd5, 0x99, 0xf1, 0x42, 0x5c, 0xb8, 0xbe, 0x72, 0xe5, + 0xad, 0x09, 0xb6, 0x58, 0x9a, 0xce, 0x67, 0xdb, 0x1b, 0x32, 0x8d, 0xe6, 0xf3, 0x31, 0xb4, 0xbb, + 0xdc, 0x0d, 0xfc, 0x33, 0xf7, 0xc1, 0x8d, 0x41, 0x69, 0x51, 0xf9, 0xbc, 0x46, 0x6f, 0x35, 0x10, + 0x61, 0xfb, 0x3b, 0x44, 0xf8, 0x05, 0x11, 0x2e, 0xbd, 0xab, 0x54, 0x8e, 0x8e, 0x2b, 0x95, 0xe2, + 0xf1, 0xe1, 0x71, 0xf1, 0xa4, 0x5a, 0x2d, 0x1d, 0x95, 0xaa, 0x90, 0x6a, 0xbd, 0xd0, 0x89, 0xfa, + 0xd1, 0xdb, 0x88, 0x74, 0x96, 0xc2, 0x2a, 0x0c, 0xbe, 0xea, 0xc6, 0x29, 0xc4, 0x33, 0x02, 0xa3, + 0x00, 0x46, 0x01, 0x8c, 0x02, 0x18, 0x05, 0x30, 0x0a, 0x60, 0x14, 0xc0, 0x28, 0x80, 0x51, 0x00, + 0xa3, 0x00, 0x46, 0x01, 0x8c, 0x02, 0x44, 0x18, 0x8c, 0x02, 0x18, 0x05, 0x30, 0x0a, 0x5a, 0x32, + 0x0a, 0x3a, 0xc5, 0x27, 0x20, 0x2e, 0x01, 0x2c, 0x02, 0x58, 0x04, 0xb0, 0x08, 0x60, 0x11, 0xc0, + 0x22, 0x80, 0x45, 0x00, 0x8b, 0x00, 0x16, 0x01, 0x2c, 0x02, 0x58, 0x04, 0x88, 0x30, 0x58, 0x04, + 0xb0, 0x08, 0x60, 0x11, 0x74, 0x66, 0x11, 0xf4, 0x89, 0x47, 0x40, 0x1c, 0x02, 0x18, 0x04, 0x30, + 0x08, 0x60, 0x10, 0xc0, 0x20, 0x80, 0x41, 0x00, 0x83, 0x00, 0x06, 0x01, 0x0c, 0x02, 0x18, 0x04, + 0x30, 0x08, 0x10, 0x61, 0x30, 0x08, 0x60, 0x10, 0xc0, 0x20, 0xe8, 0x36, 0x22, 0xaa, 0x82, 0x1a, + 0x56, 0x23, 0x71, 0xd2, 0x44, 0x56, 0x51, 0xd5, 0xa2, 0x1d, 0xca, 0x62, 0x89, 0x1f, 0x66, 0xef, + 0x94, 0xd7, 0x22, 0xa7, 0x12, 0xab, 0xd1, 0x31, 0xbf, 0x6b, 0x0f, 0xa2, 0xa1, 0x37, 0x16, 0xb2, + 0x2f, 0xcc, 0x76, 0x58, 0xa8, 0xae, 0xc2, 0xd6, 0x8a, 0xb9, 0xa8, 0xa9, 0xb5, 0x55, 0x44, 0xad, + 0x2d, 0x79, 0xbb, 0x1e, 0x74, 0x2d, 0xbb, 0xc7, 0x51, 0x6a, 0x0b, 0xa5, 0xb6, 0x96, 0xd8, 0xbd, + 0xb1, 0x5c, 0x00, 0x56, 0x09, 0x5d, 0x61, 0x65, 0x24, 0xde, 0x0a, 0x2d, 0xef, 0x06, 0xfe, 0x54, + 0xcf, 0x5b, 0x7c, 0x3c, 0x2d, 0x05, 0x2a, 0x60, 0x56, 0x5c, 0xb1, 0xa2, 0x60, 0xec, 0xba, 0x3f, + 0xec, 0x8f, 0xb7, 0x62, 0x04, 0x18, 0x93, 0x79, 0x2d, 0x27, 0xed, 0x20, 0x94, 0x21, 0x97, 0xc9, + 0xf0, 0x00, 0x2b, 0xdb, 0x00, 0x56, 0x50, 0x18, 0x14, 0x68, 0x65, 0x25, 0x5a, 0x41, 0x61, 0xd0, + 0x3c, 0xc2, 0x95, 0xa1, 0xeb, 0xf3, 0xc3, 0xb2, 0x42, 0x6c, 0xa2, 0xa0, 0xbf, 0x93, 0xe2, 0x8b, + 0x45, 0x85, 0x37, 0xcc, 0x3a, 0x5c, 0x24, 0x6a, 0x72, 0xfb, 0xa2, 0xcb, 0xc5, 0xa1, 0x4e, 0x57, + 0x2b, 0x0a, 0x2f, 0x0a, 0xb5, 0xb8, 0x20, 0xd4, 0x4d, 0x34, 0x2b, 0xe5, 0x93, 0xca, 0xc9, 0xd1, + 0x71, 0xf9, 0xa4, 0x0a, 0x19, 0x55, 0x03, 0x08, 0xd4, 0x8d, 0xda, 0x86, 0xdb, 0x9c, 0xdd, 0x6d, + 0x1e, 0x58, 0xb6, 0xe3, 0x84, 0x2c, 0x52, 0xd8, 0x57, 0xe3, 0xd9, 0x1c, 0xe0, 0x40, 0x6f, 0x83, + 0x03, 0x0d, 0xb6, 0x1f, 0xfe, 0xf3, 0x0e, 0xd8, 0xfe, 0xed, 0x70, 0x9f, 0x95, 0x69, 0xf7, 0xe7, + 0x1a, 0xbe, 0x74, 0xa2, 0x60, 0xec, 0xe9, 0xda, 0x6f, 0x9d, 0x0b, 0xfd, 0xb4, 0xf3, 0xdf, 0x2a, + 0x0a, 0xf7, 0x7e, 0x49, 0x06, 0xde, 0xa9, 0xed, 0x93, 0xcd, 0x59, 0xe8, 0x2b, 0x0f, 0xd5, 0x2e, + 0xfc, 0x73, 0x77, 0xf7, 0xb6, 0x68, 0x9d, 0xb4, 0x7f, 0xde, 0x96, 0xac, 0x93, 0xf6, 0xe4, 0xdb, + 0x52, 0xfc, 0xc7, 0xe4, 0xfb, 0xf2, 0x6d, 0xd1, 0xaa, 0xcc, 0xbe, 0xaf, 0xde, 0x16, 0xad, 0x6a, + 0x7b, 0xef, 0xee, 0x6e, 0x7f, 0xef, 0xc7, 0xe1, 0x68, 0xf3, 0x0f, 0xfe, 0x57, 0x61, 0xdb, 0x62, + 0x00, 0xdf, 0x6e, 0xf1, 0x61, 0x3f, 0xc2, 0x61, 0xd7, 0xf3, 0xb0, 0xdb, 0x56, 0xaf, 0x66, 0x7d, + 0x6c, 0xff, 0x28, 0xbd, 0xad, 0x8c, 0x4e, 0xf7, 0x7e, 0x1c, 0x8f, 0x16, 0x7f, 0xf8, 0x73, 0xd5, + 0xaf, 0x95, 0xde, 0x1e, 0x8f, 0x4e, 0xd7, 0xfc, 0xcb, 0xd1, 0xe8, 0xf4, 0x95, 0xcf, 0xa8, 0x8e, + 0x76, 0x97, 0x7e, 0x75, 0xfc, 0xf3, 0xf2, 0xba, 0x0f, 0x54, 0xd6, 0x7c, 0xe0, 0x70, 0xdd, 0x07, + 0x0e, 0xd7, 0x7c, 0x60, 0xed, 0x94, 0xca, 0x6b, 0x3e, 0x50, 0x1d, 0xfd, 0x5c, 0xfa, 0xfd, 0xdd, + 0xd5, 0xbf, 0x7a, 0x34, 0xda, 0xfb, 0xb9, 0xee, 0xdf, 0x8e, 0x47, 0x3f, 0x4f, 0xf7, 0xb6, 0x50, + 0xf5, 0x81, 0xff, 0x31, 0x90, 0xff, 0xe9, 0xdb, 0x5d, 0xf5, 0x04, 0xd0, 0xf3, 0x49, 0x80, 0x01, + 0x02, 0x03, 0x04, 0x06, 0x08, 0x0c, 0x10, 0x18, 0xa0, 0xdc, 0x30, 0x40, 0xea, 0xd4, 0xbb, 0x6a, + 0x8f, 0x40, 0xb9, 0x27, 0x50, 0xf8, 0xe7, 0x73, 0x84, 0xba, 0x08, 0x7c, 0xcb, 0xa3, 0xbd, 0x1f, + 0xd5, 0x91, 0x02, 0xa4, 0x0a, 0xe4, 0x96, 0x7d, 0x67, 0x83, 0xd0, 0x7d, 0x70, 0x7d, 0x6b, 0x10, + 0x06, 0x3c, 0xe8, 0x06, 0x9e, 0x3a, 0xf4, 0xb6, 0x38, 0x11, 0x20, 0x38, 0x20, 0x38, 0x20, 0x38, + 0x20, 0x38, 0x20, 0xb8, 0xdc, 0x20, 0x38, 0xd7, 0x61, 0x3e, 0x77, 0xf9, 0x63, 0xc8, 0x7a, 0x2a, + 0x11, 0x9c, 0x82, 0x18, 0xaf, 0xc2, 0xf9, 0xf4, 0xd5, 0xdf, 0xdb, 0x11, 0x53, 0x5f, 0x35, 0xef, + 0xfc, 0xf2, 0xa6, 0x55, 0x6b, 0x34, 0x3a, 0xcd, 0xeb, 0xab, 0xd6, 0xd5, 0x87, 0xab, 0x46, 0xa7, + 0xf5, 0x57, 0xb3, 0xae, 0x4a, 0x05, 0xc5, 0x31, 0x78, 0x91, 0x52, 0x96, 0x5b, 0x71, 0x30, 0xe4, + 0x6c, 0x5b, 0xae, 0x6e, 0x9a, 0x1f, 0x0b, 0xdb, 0x18, 0x93, 0xaa, 0xc9, 0xfa, 0x9f, 0xdf, 0x9c, + 0xdf, 0x60, 0xfd, 0xd5, 0xca, 0xff, 0x21, 0x36, 0x40, 0xdd, 0x06, 0x34, 0xae, 0x3e, 0xd4, 0x1a, + 0x9d, 0xda, 0x1f, 0x7f, 0x5c, 0xd7, 0xff, 0xa8, 0xb5, 0xea, 0xd8, 0x0a, 0x75, 0x5b, 0x71, 0x76, + 0x7e, 0x5d, 0xff, 0xd0, 0x6a, 0xfc, 0xd5, 0xf9, 0x70, 0x75, 0x79, 0x59, 0xff, 0xd0, 0xaa, 0x9f, + 0x61, 0x37, 0xd4, 0xed, 0xc6, 0x4d, 0xab, 0xd6, 0x3a, 0xff, 0x80, 0x1d, 0x50, 0xb7, 0x03, 0xef, + 0xff, 0x68, 0x62, 0xf9, 0xd5, 0x2d, 0x7f, 0xf3, 0xfc, 0x02, 0xcb, 0xaf, 0x10, 0x99, 0xfe, 0x71, + 0xd1, 0xdc, 0xb6, 0xf2, 0xc4, 0xed, 0xbc, 0xf3, 0x3f, 0xb9, 0xbc, 0x4f, 0x18, 0x0c, 0xa3, 0x2f, + 0xcc, 0xb1, 0xfa, 0x03, 0x2f, 0xb2, 0x3c, 0xfb, 0x9e, 0x79, 0x56, 0xc4, 0xed, 0xee, 0x57, 0x75, + 0xf7, 0x0a, 0xeb, 0x26, 0x84, 0xfb, 0x05, 0xd2, 0x81, 0x71, 0xbf, 0x80, 0xfb, 0x05, 0xdc, 0x2f, + 0x28, 0xb5, 0x2f, 0xdb, 0x17, 0x21, 0x92, 0xe8, 0x78, 0xe4, 0x08, 0x6d, 0x05, 0x46, 0x56, 0x5f, + 0x5c, 0x65, 0x71, 0xf7, 0x8f, 0xd1, 0xc5, 0x01, 0x5d, 0x1c, 0x34, 0x00, 0x7e, 0x6b, 0xa7, 0x93, + 0x94, 0xc0, 0x3f, 0x42, 0xc1, 0x7b, 0x0d, 0xf9, 0x86, 0x27, 0x19, 0x46, 0x1b, 0x87, 0x97, 0x65, + 0xb8, 0x58, 0x79, 0x57, 0x3d, 0x46, 0xe7, 0x06, 0xcd, 0x88, 0x1b, 0xf5, 0xa3, 0x23, 0x6b, 0x53, + 0x2e, 0xfc, 0x62, 0xfe, 0xb0, 0xcf, 0xc2, 0x49, 0x93, 0x05, 0x0d, 0x92, 0x36, 0x2b, 0x0a, 0xe7, + 0xa0, 0xa6, 0x18, 0xaf, 0xba, 0x23, 0xd7, 0xce, 0xb5, 0x4f, 0xdb, 0x70, 0x23, 0x5e, 0xe3, 0x3c, + 0x54, 0xe3, 0xd7, 0x5e, 0xb8, 0x7e, 0xdd, 0x63, 0x7d, 0xe6, 0xc7, 0xe6, 0xc4, 0x1f, 0x7a, 0x9e, + 0x02, 0xd7, 0xf2, 0xc2, 0xfe, 0xae, 0x7e, 0x12, 0x57, 0xa1, 0xc3, 0x42, 0xe6, 0xbc, 0x7f, 0x54, + 0x1f, 0x3b, 0x37, 0x8c, 0xa4, 0xb7, 0x93, 0x48, 0xe6, 0xa0, 0x41, 0x7b, 0xd1, 0xe7, 0xd4, 0x62, + 0x30, 0xd9, 0x15, 0xeb, 0xfe, 0x51, 0xa5, 0xd6, 0xd7, 0xa9, 0xb5, 0xe8, 0x1c, 0xcd, 0x18, 0x4b, + 0x0a, 0x7a, 0x48, 0x19, 0x3d, 0x9a, 0x9c, 0x91, 0x24, 0x99, 0x35, 0x55, 0xbd, 0xb0, 0x72, 0xd2, + 0x03, 0x4b, 0xce, 0x59, 0xa6, 0x97, 0x38, 0xda, 0x11, 0x88, 0x65, 0x79, 0x6c, 0x7f, 0x64, 0x75, + 0x4a, 0x90, 0x0b, 0xff, 0x94, 0xc0, 0x3d, 0x25, 0xf0, 0x6e, 0x0e, 0xce, 0x8d, 0x87, 0x34, 0x5a, + 0x20, 0x25, 0x2b, 0x55, 0xe3, 0x95, 0xa9, 0x04, 0xac, 0x48, 0xd5, 0x31, 0x90, 0xd6, 0x02, 0xd0, + 0xe9, 0x65, 0x9a, 0x27, 0x13, 0x1d, 0x2c, 0x59, 0x07, 0xca, 0xd4, 0x83, 0x44, 0x23, 0x84, 0xe2, + 0x45, 0x84, 0x40, 0x3c, 0x0a, 0x91, 0xeb, 0xd0, 0x15, 0x18, 0x4a, 0x5c, 0xfc, 0x78, 0x14, 0x22, + 0xe1, 0x9e, 0x71, 0x94, 0x44, 0x8f, 0xa7, 0x8e, 0xf7, 0x92, 0x11, 0xd7, 0x25, 0xb1, 0x49, 0x92, + 0x2c, 0x46, 0x45, 0x7a, 0x40, 0x96, 0x74, 0x56, 0x44, 0x6e, 0x13, 0x23, 0xb3, 0x0c, 0xda, 0x99, + 0x1b, 0x12, 0x5b, 0x32, 0xd7, 0xa1, 0x17, 0xe1, 0x67, 0xda, 0x91, 0x5a, 0x78, 0x69, 0x95, 0xa4, + 0x34, 0x65, 0x29, 0x53, 0x69, 0x2a, 0x50, 0x9e, 0xb2, 0x95, 0xa8, 0x32, 0x65, 0xaa, 0x4c, 0xa9, + 0xaa, 0x51, 0xae, 0xf9, 0xe0, 0x89, 0xa8, 0x95, 0x6e, 0x32, 0x90, 0xdc, 0x96, 0xa1, 0x4a, 0x5a, + 0x85, 0x4a, 0x0e, 0x00, 0x92, 0x9e, 0xb5, 0xa0, 0x22, 0x5b, 0x41, 0x61, 0x2b, 0x50, 0x55, 0xf7, + 0x88, 0xca, 0xd3, 0x12, 0x94, 0xdf, 0x15, 0xaa, 0x6d, 0xf5, 0x99, 0xaf, 0xcb, 0x2c, 0xe9, 0xf9, + 0x06, 0xc9, 0x89, 0xf5, 0x98, 0xdd, 0x93, 0x5b, 0xc3, 0x28, 0x41, 0xc4, 0x12, 0xe3, 0xcb, 0x0b, + 0xcd, 0x29, 0x33, 0xb6, 0xbf, 0x3f, 0xb9, 0xff, 0x3a, 0x98, 0x98, 0x9c, 0xbc, 0xdc, 0x82, 0x49, + 0xa1, 0xa1, 0x6d, 0xce, 0xe4, 0x43, 0x83, 0xc9, 0xb0, 0x72, 0xa1, 0x41, 0x49, 0x36, 0x34, 0x28, + 0x03, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x28, 0xf4, 0xfd, 0x14, 0xf9, 0x80, 0x4a, 0x7d, + 0x41, 0x45, 0x3e, 0xa1, 0x32, 0xdf, 0x50, 0xa5, 0x21, 0xd0, 0xc0, 0x20, 0xa8, 0x36, 0x0c, 0xda, + 0x18, 0x08, 0x6d, 0x0c, 0x85, 0x1e, 0x06, 0x43, 0xae, 0xe1, 0x90, 0x6c, 0x40, 0xd4, 0xf9, 0x98, + 0x4b, 0x27, 0x7e, 0xe8, 0xfa, 0xfc, 0xa8, 0xa2, 0x30, 0x9f, 0x5d, 0x45, 0xbf, 0x03, 0xb5, 0x99, + 0xcc, 0x0a, 0x83, 0xeb, 0x75, 0xc8, 0x5c, 0xd6, 0xad, 0x37, 0x7f, 0x11, 0x2d, 0xf9, 0x15, 0xa9, + 0xbf, 0x79, 0xd1, 0xd4, 0x20, 0x21, 0x59, 0x37, 0xd1, 0x2c, 0xbd, 0xab, 0x54, 0x8e, 0x8e, 0x2b, + 0x95, 0xe2, 0xf1, 0xe1, 0x71, 0xf1, 0xa4, 0x5a, 0x2d, 0x1d, 0x95, 0xaa, 0x90, 0x56, 0x35, 0xd0, + 0x40, 0xdd, 0xa8, 0x68, 0x43, 0x93, 0x5d, 0x6c, 0xe3, 0xd2, 0x3d, 0xbc, 0xab, 0xb0, 0x79, 0xe0, + 0x74, 0x02, 0x92, 0x01, 0xe6, 0x19, 0xeb, 0xd9, 0x43, 0x2f, 0x86, 0xf0, 0x45, 0x38, 0xf0, 0x70, + 0xe0, 0xe1, 0xc0, 0xc3, 0x81, 0x87, 0x03, 0x9f, 0x37, 0x07, 0xfe, 0x9d, 0x42, 0xff, 0xbd, 0x0a, + 0xff, 0x1d, 0xfe, 0x3b, 0xfc, 0x77, 0xf8, 0xef, 0xf0, 0xdf, 0x97, 0x44, 0xf3, 0x18, 0xa2, 0x09, + 0x67, 0x1d, 0xce, 0x7a, 0x3a, 0x67, 0x9d, 0x7b, 0xaa, 0xbd, 0x75, 0xee, 0xc1, 0x5d, 0x87, 0xbb, + 0x0e, 0x77, 0x1d, 0xee, 0x3a, 0xdc, 0x75, 0xb8, 0xeb, 0x70, 0xd7, 0xe1, 0xae, 0xc3, 0x5d, 0x87, + 0xbb, 0x0e, 0x77, 0x3d, 0xaf, 0xa2, 0x59, 0xae, 0xe2, 0x76, 0x1d, 0x0e, 0x3b, 0x1c, 0xf6, 0x8d, + 0xc5, 0xf6, 0xdb, 0xf4, 0x00, 0x29, 0xf2, 0xd6, 0x27, 0xc3, 0xc3, 0x5d, 0x86, 0xbb, 0x0c, 0x77, + 0x19, 0xee, 0x32, 0xdc, 0xe5, 0x1c, 0xb9, 0xcb, 0x51, 0x68, 0x45, 0xae, 0x63, 0xf1, 0xf1, 0x44, + 0xd0, 0x73, 0x6d, 0x2b, 0x9c, 0x66, 0x2d, 0xba, 0xed, 0xe9, 0x20, 0x01, 0x7a, 0x48, 0x82, 0x7a, + 0x89, 0x58, 0x92, 0x0c, 0xe5, 0xdd, 0xf8, 0x16, 0xa5, 0xe3, 0x58, 0x83, 0xa9, 0xe8, 0xd1, 0x9d, + 0x4f, 0x1f, 0x69, 0x79, 0x62, 0x3a, 0x34, 0xea, 0xd6, 0xa7, 0x19, 0xf3, 0xb1, 0x96, 0x09, 0xd1, + 0xa5, 0x7b, 0x9f, 0x8e, 0xc4, 0x88, 0x62, 0x50, 0xf6, 0x6b, 0x59, 0xd7, 0xa8, 0xab, 0x9f, 0x31, + 0xb2, 0xae, 0x53, 0x97, 0x3f, 0x23, 0x04, 0xfe, 0x0d, 0x66, 0xb1, 0xa3, 0xac, 0x0b, 0xa0, 0x26, + 0x6a, 0x47, 0x23, 0x38, 0xa8, 0x47, 0x77, 0xc0, 0x25, 0x8f, 0xa1, 0xa2, 0xc1, 0x5c, 0xd4, 0x76, + 0x0b, 0x54, 0x7f, 0x54, 0xd1, 0xa8, 0x53, 0xee, 0x51, 0x74, 0x07, 0xdf, 0x8e, 0x2c, 0xdb, 0x71, + 0x42, 0x16, 0x45, 0x3a, 0x78, 0xed, 0xef, 0x14, 0xce, 0xa1, 0x69, 0x73, 0xce, 0x42, 0x5f, 0xb9, + 0x4b, 0x56, 0xf8, 0xe7, 0xee, 0xee, 0x6d, 0xd1, 0x3a, 0xb1, 0xad, 0x5e, 0xcd, 0xfa, 0xd8, 0xfe, + 0x51, 0x7a, 0x5b, 0x19, 0x9d, 0xee, 0xfd, 0x38, 0x1e, 0x2d, 0xfe, 0xf0, 0xe7, 0xaa, 0x5f, 0x2b, + 0xbd, 0x3d, 0x1e, 0x9d, 0xae, 0xf9, 0x97, 0xa3, 0xd1, 0xe9, 0x2b, 0x9f, 0x51, 0x1d, 0xed, 0x2e, + 0xfd, 0xea, 0xf8, 0xe7, 0xe5, 0x75, 0x1f, 0xa8, 0xac, 0xf9, 0xc0, 0xe1, 0xba, 0x0f, 0x1c, 0xae, + 0xf9, 0xc0, 0xda, 0x29, 0x95, 0xd7, 0x7c, 0xa0, 0x3a, 0xfa, 0xb9, 0xf4, 0xfb, 0xbb, 0xab, 0x7f, + 0xf5, 0x68, 0xb4, 0xf7, 0x73, 0xdd, 0xbf, 0x1d, 0x8f, 0x7e, 0x9e, 0xee, 0xed, 0xfd, 0x57, 0x61, + 0xdb, 0x54, 0x1f, 0xee, 0x6f, 0x8d, 0x1a, 0x09, 0x9d, 0x01, 0x75, 0xea, 0xc1, 0x13, 0xb9, 0x4e, + 0x34, 0xfe, 0x1f, 0xfa, 0x01, 0x6a, 0x23, 0xc1, 0xe8, 0x07, 0x28, 0x9c, 0xa1, 0x42, 0x3f, 0x40, + 0x93, 0x54, 0xa9, 0xa1, 0x2a, 0xd4, 0xc4, 0x2e, 0x80, 0x37, 0xae, 0x83, 0x0e, 0x80, 0x12, 0x8e, + 0x12, 0x3a, 0x00, 0xae, 0x3d, 0x3a, 0x5b, 0xdd, 0xfc, 0x8f, 0xb4, 0x9a, 0xba, 0x94, 0xea, 0xe9, + 0xd2, 0xda, 0xff, 0x95, 0xd1, 0xfe, 0xef, 0x35, 0x43, 0xa1, 0xfd, 0x9f, 0x30, 0x95, 0x8d, 0xf6, + 0x7f, 0xeb, 0x96, 0x86, 0xbc, 0xfd, 0x5f, 0x37, 0x18, 0xfa, 0x9c, 0x85, 0x91, 0xbc, 0x1e, 0x80, + 0xc9, 0x88, 0x68, 0x04, 0xa8, 0x9b, 0xfa, 0x54, 0xa0, 0x46, 0x65, 0xab, 0x53, 0x65, 0x6a, 0x55, + 0x99, 0x7a, 0x55, 0xa3, 0x66, 0xf3, 0x41, 0x10, 0x49, 0x6b, 0x04, 0x18, 0x0c, 0xf9, 0x24, 0x1e, + 0x96, 0x39, 0x56, 0xd0, 0xe5, 0x8c, 0x47, 0xf2, 0x5b, 0xff, 0xac, 0x98, 0x03, 0x5a, 0x04, 0x9a, + 0xa6, 0xba, 0x15, 0xaa, 0x70, 0x55, 0xaa, 0x5c, 0xb9, 0x4a, 0x57, 0xae, 0xda, 0xd5, 0xaa, 0x78, + 0x39, 0xaa, 0x5e, 0x92, 0xca, 0x4f, 0x96, 0x52, 0x5d, 0x8b, 0xc0, 0x29, 0x40, 0x96, 0xda, 0xb9, + 0x41, 0x41, 0xc7, 0x06, 0x45, 0x51, 0xed, 0x0a, 0x12, 0x9e, 0x54, 0x46, 0xa9, 0x2b, 0x8e, 0xd0, + 0x55, 0x5d, 0x1a, 0x42, 0x87, 0x58, 0x5b, 0x05, 0x21, 0x63, 0x4a, 0x83, 0xc5, 0x75, 0x11, 0x39, + 0x7d, 0x3a, 0x2c, 0x68, 0x21, 0x85, 0x39, 0x8d, 0xa5, 0x69, 0xa3, 0xa7, 0x6c, 0x2a, 0x2f, 0x73, + 0xf0, 0x55, 0xb5, 0x8f, 0x19, 0xcf, 0x00, 0x1e, 0x26, 0x3c, 0x4c, 0x78, 0x98, 0xf0, 0x30, 0xe1, + 0x61, 0xc2, 0xc3, 0x84, 0x87, 0x09, 0x0f, 0x13, 0x1e, 0x26, 0x3c, 0x4c, 0x78, 0x98, 0xf0, 0x30, + 0xe1, 0x61, 0x1a, 0xeb, 0x61, 0xaa, 0xbc, 0xbf, 0xc4, 0xbd, 0x25, 0xbc, 0x4a, 0x78, 0x95, 0xf0, + 0x2a, 0xe1, 0x55, 0xc2, 0xab, 0x84, 0x57, 0x09, 0xaf, 0x12, 0x5e, 0x25, 0xbc, 0x4a, 0x78, 0x95, + 0xf0, 0x2a, 0xe1, 0x55, 0x9a, 0xee, 0x55, 0xaa, 0xbb, 0xaf, 0xc4, 0x3d, 0x25, 0x3c, 0x4a, 0x78, + 0x94, 0xf0, 0x28, 0xe1, 0x51, 0xc2, 0xa3, 0x84, 0x47, 0x09, 0x8f, 0x12, 0x1e, 0x25, 0x3c, 0x4a, + 0x78, 0x94, 0xf0, 0x28, 0xe1, 0x51, 0x9a, 0x38, 0x02, 0x4a, 0x38, 0x29, 0xad, 0x43, 0xc3, 0x6d, + 0xce, 0x0e, 0x24, 0x95, 0x00, 0xd8, 0xa1, 0x28, 0xe4, 0xf4, 0x61, 0x36, 0x77, 0x53, 0xab, 0x39, + 0x11, 0x96, 0x44, 0x71, 0x1d, 0x79, 0x65, 0x24, 0xc8, 0xcb, 0x80, 0x49, 0x32, 0xde, 0x28, 0x20, + 0x61, 0x26, 0xd7, 0x82, 0x02, 0x12, 0x28, 0x20, 0xa1, 0x11, 0x77, 0x22, 0xbf, 0x81, 0x96, 0xc4, + 0x06, 0x59, 0x92, 0x09, 0x12, 0x89, 0x4c, 0x97, 0x0a, 0x42, 0x44, 0x55, 0x7b, 0x5b, 0x45, 0x04, + 0x88, 0x4a, 0x97, 0x53, 0x66, 0xa3, 0x66, 0x15, 0x44, 0x87, 0x6a, 0x51, 0xaa, 0x94, 0x4f, 0x2a, + 0x27, 0x47, 0xc7, 0xe5, 0x93, 0xea, 0x16, 0xc9, 0x54, 0x4e, 0xdc, 0xfc, 0x36, 0x1c, 0xa8, 0x65, + 0x07, 0xca, 0xff, 0x66, 0x7b, 0xae, 0x63, 0x85, 0xcc, 0x8e, 0x24, 0x10, 0x08, 0x4f, 0xce, 0xd4, + 0xfc, 0xb8, 0x70, 0xac, 0xe0, 0x58, 0xc1, 0xb1, 0x82, 0x63, 0x05, 0xc7, 0x6a, 0xae, 0x5d, 0x39, + 0x67, 0xd6, 0x4c, 0x51, 0x46, 0x9e, 0x1c, 0x5d, 0xb9, 0x23, 0xb9, 0xeb, 0x9c, 0xa4, 0xae, 0x72, + 0x66, 0x5a, 0xe7, 0x78, 0xeb, 0xe5, 0x19, 0xe5, 0xc9, 0x70, 0xb0, 0xc5, 0xb0, 0xc5, 0xb0, 0xc5, + 0xb0, 0xc5, 0xb0, 0xc5, 0xcf, 0x4e, 0xdc, 0x7d, 0x10, 0x78, 0xcc, 0x96, 0x6a, 0x7c, 0x4b, 0x30, + 0x88, 0x4b, 0x6b, 0xf3, 0x1f, 0xe6, 0x3e, 0x7c, 0xe1, 0xf2, 0x2c, 0xe2, 0x74, 0x3c, 0x98, 0x44, + 0x98, 0x44, 0x98, 0x44, 0x98, 0x44, 0x98, 0x44, 0xdc, 0xfb, 0x89, 0xfc, 0xc2, 0xbd, 0x1f, 0xc9, + 0xb0, 0xb8, 0xf7, 0xa3, 0x15, 0x25, 0xdc, 0xfb, 0x6d, 0x87, 0x4c, 0xe1, 0xde, 0x4f, 0xad, 0x23, + 0x85, 0x36, 0x98, 0x2b, 0xc6, 0x31, 0x30, 0xfc, 0xd8, 0x98, 0x3e, 0x98, 0x6f, 0x34, 0x16, 0xb4, + 0xa4, 0x77, 0xb6, 0x68, 0x86, 0x9a, 0xb6, 0x51, 0xb6, 0x94, 0xc6, 0xd8, 0x52, 0x1a, 0x61, 0xd3, + 0x36, 0xbe, 0x16, 0x2d, 0x2d, 0xc4, 0xea, 0xc8, 0x2c, 0x35, 0x54, 0x20, 0x69, 0x70, 0x2b, 0x34, + 0xcd, 0x41, 0xac, 0x8e, 0x14, 0xa7, 0xc9, 0xc4, 0x3c, 0x49, 0x90, 0x74, 0x53, 0x49, 0xb5, 0xf6, + 0xd2, 0x2c, 0x46, 0x3a, 0xb2, 0xef, 0xa5, 0x80, 0x7d, 0x14, 0xdc, 0x19, 0x9a, 0xa4, 0x13, 0xb4, + 0xe0, 0x56, 0xa6, 0xc2, 0x3b, 0x3d, 0x53, 0x30, 0xcc, 0x84, 0x4c, 0x32, 0x15, 0x63, 0x4c, 0xce, + 0x0c, 0x93, 0x33, 0xc0, 0xb4, 0x4c, 0xaf, 0x5e, 0xba, 0x5b, 0x74, 0x6b, 0xcf, 0x82, 0xdd, 0xe5, + 0xee, 0x37, 0x02, 0xa9, 0x9a, 0x1d, 0x84, 0xe9, 0xf3, 0x45, 0xc3, 0x78, 0x12, 0x22, 0x87, 0xec, + 0x72, 0x8b, 0xf2, 0x32, 0x4b, 0xc2, 0xe5, 0x15, 0xf5, 0x65, 0x95, 0xb4, 0xcb, 0x29, 0x69, 0x97, + 0x51, 0x72, 0x2e, 0x9f, 0xf4, 0x76, 0xb5, 0xc9, 0x2e, 0x93, 0x24, 0xc4, 0x53, 0x10, 0xc5, 0x4f, + 0x08, 0xf4, 0x28, 0xde, 0x8a, 0x36, 0x01, 0x56, 0xe4, 0xfa, 0x5d, 0x72, 0x43, 0x30, 0x1d, 0x05, + 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x00, 0xe6, 0x40, 0xa8, 0xc4, 0x73, 0xb7, 0xcf, 0xb8, 0xdb, 0xfd, + 0x1a, 0x91, 0x54, 0x5e, 0x23, 0xac, 0xb0, 0x56, 0xf8, 0xe4, 0x4f, 0xae, 0xe5, 0x0a, 0xbe, 0xed, + 0x07, 0x11, 0xeb, 0x06, 0xbe, 0x43, 0x51, 0x65, 0x84, 0x38, 0x30, 0x81, 0xf0, 0xbe, 0x46, 0x46, + 0xe0, 0x81, 0xac, 0x08, 0x3a, 0x49, 0x81, 0x05, 0x32, 0x2f, 0x7d, 0x29, 0xa3, 0x35, 0x65, 0x04, + 0x0a, 0xc8, 0xde, 0x7a, 0xf9, 0x95, 0xcd, 0xa4, 0x4a, 0x83, 0x21, 0x37, 0x95, 0xed, 0xed, 0xc1, + 0xf6, 0x3c, 0xb4, 0xfd, 0xc8, 0x1d, 0xef, 0x7f, 0x44, 0x8e, 0xf0, 0x9f, 0x8f, 0x05, 0x9c, 0x0f, + 0x9c, 0x0f, 0x9c, 0x0f, 0x9c, 0x2f, 0x54, 0xe2, 0x29, 0xeb, 0x2b, 0x53, 0xa2, 0x7c, 0xa0, 0x6f, + 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0x6f, 0xa0, 0xef, 0x6d, 0x41, 0xdf, 0x8e, 0x1b, 0x75, 0x43, 0xb7, + 0xef, 0xfa, 0x36, 0x0f, 0x42, 0x3a, 0xe0, 0x3d, 0x3f, 0x0c, 0x30, 0x37, 0x30, 0x37, 0x30, 0x37, + 0x30, 0xb7, 0x50, 0x89, 0x27, 0xcb, 0xd3, 0x23, 0xcc, 0xcb, 0x03, 0xe0, 0x06, 0xe0, 0x06, 0xe0, + 0xd6, 0x60, 0xeb, 0x65, 0xe5, 0xbd, 0x01, 0x66, 0x6f, 0x27, 0xcc, 0x66, 0xbe, 0x37, 0xa0, 0x43, + 0xd7, 0xf1, 0xd3, 0x01, 0xaa, 0x01, 0xaa, 0x01, 0xaa, 0x01, 0xaa, 0x85, 0x6b, 0x16, 0x8b, 0x8f, + 0x87, 0x21, 0x8c, 0x60, 0x24, 0x28, 0xbf, 0x48, 0x54, 0x6e, 0x51, 0x4f, 0xe3, 0x32, 0x4d, 0x4e, + 0x23, 0x32, 0x2e, 0xf1, 0xd3, 0x61, 0x5c, 0x60, 0x5c, 0x60, 0x5c, 0x60, 0x5c, 0x84, 0x4a, 0x7c, + 0xc4, 0x43, 0xd7, 0x7f, 0xa0, 0xb4, 0x2c, 0xef, 0xb6, 0x40, 0xfb, 0x07, 0xa1, 0xfb, 0x30, 0xe1, + 0xd5, 0x2d, 0xdb, 0x71, 0x08, 0x39, 0xfc, 0xc5, 0x81, 0x60, 0x13, 0x60, 0x13, 0x60, 0x13, 0x60, + 0x13, 0x84, 0x4a, 0xbc, 0x3b, 0xf8, 0x76, 0x14, 0xab, 0x17, 0x16, 0x45, 0xa4, 0x96, 0x81, 0xe0, + 0xd9, 0x4d, 0x9b, 0x73, 0x16, 0xfa, 0x64, 0x74, 0x7e, 0xe1, 0x9f, 0xbb, 0xbb, 0xb7, 0x45, 0xeb, + 0xc4, 0xb6, 0x7a, 0x35, 0xeb, 0x63, 0xfb, 0x47, 0xe9, 0x6d, 0x65, 0x74, 0xba, 0xf7, 0xe3, 0x78, + 0xb4, 0xf8, 0xc3, 0x9f, 0xab, 0x7e, 0xad, 0xf4, 0xf6, 0x78, 0x74, 0xba, 0xe6, 0x5f, 0x8e, 0x46, + 0xa7, 0xaf, 0x7c, 0x46, 0x75, 0xb4, 0xbb, 0xf4, 0xab, 0xe3, 0x9f, 0x97, 0xd7, 0x7d, 0xa0, 0xb2, + 0xe6, 0x03, 0x87, 0xeb, 0x3e, 0x70, 0xb8, 0xe6, 0x03, 0x6b, 0xa7, 0x54, 0x5e, 0xf3, 0x81, 0xea, + 0xe8, 0xe7, 0xd2, 0xef, 0xef, 0xae, 0xfe, 0xd5, 0xa3, 0xd1, 0xde, 0xcf, 0x75, 0xff, 0x76, 0x3c, + 0xfa, 0x79, 0xba, 0xb7, 0xf7, 0x5f, 0x05, 0xf0, 0x9e, 0x19, 0xc1, 0x49, 0xe4, 0xcb, 0xc1, 0x26, + 0x91, 0x0f, 0x68, 0x02, 0x68, 0x02, 0x68, 0x02, 0x68, 0x22, 0x56, 0xe2, 0x11, 0x60, 0xb0, 0xf4, + 0x85, 0x00, 0x83, 0x57, 0x0d, 0x83, 0x00, 0x83, 0xcd, 0xb6, 0x1e, 0x01, 0x06, 0x66, 0xc8, 0x00, + 0x02, 0x0c, 0xb4, 0x01, 0xda, 0x63, 0x20, 0xc3, 0x42, 0x46, 0x5a, 0x1f, 0xe3, 0xd9, 0x18, 0x00, + 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, + 0xd8, 0x00, 0xd8, 0x79, 0x07, 0xd8, 0x01, 0x0f, 0xba, 0x81, 0x67, 0x4d, 0xa8, 0x66, 0x4a, 0x94, + 0x3d, 0x3f, 0x10, 0xa0, 0x36, 0xa0, 0x36, 0xa0, 0x36, 0xa0, 0xb6, 0x50, 0x89, 0x8f, 0x7b, 0xae, + 0x27, 0x9a, 0x06, 0x01, 0xbe, 0x7a, 0xdb, 0x1e, 0x9a, 0xfe, 0xe8, 0xa4, 0xfd, 0xd0, 0x61, 0x67, + 0x60, 0x67, 0x60, 0x67, 0x50, 0xff, 0x7a, 0x8b, 0xeb, 0x5f, 0xa3, 0xa3, 0x8e, 0xa2, 0x8e, 0x3a, + 0xe2, 0x7a, 0xd1, 0x09, 0xe8, 0xa4, 0xf3, 0x46, 0xe1, 0xee, 0xcf, 0x7a, 0xc9, 0x2d, 0xb8, 0x94, + 0x3b, 0xf3, 0xd1, 0x52, 0x3b, 0x0b, 0x81, 0xdd, 0x3b, 0x22, 0x8b, 0xb5, 0x88, 0xed, 0x3a, 0x47, + 0xd2, 0x65, 0x8e, 0xa4, 0xab, 0x9c, 0xd8, 0x2e, 0x72, 0x59, 0xe5, 0x40, 0xf0, 0xe9, 0xd7, 0xf0, + 0xd4, 0x17, 0x84, 0x74, 0xac, 0xca, 0xdc, 0xea, 0x2d, 0x9b, 0xda, 0x49, 0xaf, 0x2c, 0xd2, 0x7d, + 0x32, 0xa5, 0x58, 0x89, 0x12, 0x27, 0x1d, 0xc4, 0x28, 0xdd, 0x86, 0x6d, 0xbe, 0xdc, 0x29, 0x96, + 0xba, 0xd0, 0x0d, 0xbc, 0x0c, 0x35, 0xb9, 0x9e, 0x15, 0xa3, 0xf4, 0x52, 0xab, 0xf1, 0x8c, 0x6e, + 0x5c, 0x66, 0x77, 0x4d, 0x84, 0x5b, 0x26, 0xd0, 0xfd, 0x12, 0xe5, 0x66, 0x09, 0x77, 0xa7, 0x84, + 0xbb, 0x4d, 0x62, 0xdd, 0x23, 0xb9, 0xea, 0x29, 0xb3, 0x5b, 0x93, 0x48, 0x8c, 0xc7, 0xec, 0x5e, + 0xc8, 0x7a, 0x59, 0x24, 0x66, 0xe6, 0xa6, 0x64, 0xb8, 0x7b, 0x2e, 0x34, 0xa7, 0x1a, 0x72, 0x7f, + 0x7f, 0x02, 0x6e, 0x0f, 0x26, 0x47, 0x5a, 0x63, 0xd5, 0xc5, 0x7c, 0x67, 0x10, 0xb8, 0xb1, 0xf4, + 0x64, 0xd4, 0x5e, 0xc9, 0x93, 0xa0, 0xc0, 0xa0, 0xc0, 0xa0, 0xc0, 0x72, 0xa2, 0xc0, 0x92, 0x53, + 0xad, 0xb1, 0x0e, 0xcb, 0xd6, 0xc0, 0x56, 0x48, 0xc3, 0xda, 0x8c, 0x0d, 0x6a, 0x33, 0x37, 0xa4, + 0x85, 0xf6, 0x82, 0xf6, 0xda, 0x78, 0xea, 0x59, 0x1b, 0xc0, 0x8a, 0x6a, 0xf8, 0x2a, 0xb6, 0xc1, + 0xab, 0xa0, 0x0b, 0x2d, 0x61, 0x17, 0x58, 0x22, 0x2f, 0xac, 0x08, 0x2e, 0xa8, 0x44, 0x5f, 0x48, + 0x91, 0x5d, 0x40, 0x91, 0x5d, 0x38, 0xd1, 0x5c, 0x30, 0xa9, 0xe5, 0x93, 0x85, 0x5d, 0x18, 0x11, + 0x5c, 0x10, 0x09, 0xba, 0x10, 0xca, 0xc0, 0xc1, 0xbd, 0xcd, 0xaa, 0xf2, 0x04, 0x35, 0x38, 0xa5, + 0x68, 0x68, 0x0a, 0xf5, 0x07, 0xf5, 0x07, 0xf5, 0x27, 0x5c, 0xfd, 0x89, 0x6d, 0x08, 0x2a, 0xb0, + 0x35, 0x10, 0x55, 0xc3, 0x4f, 0xc1, 0xf9, 0x12, 0x02, 0x6f, 0xb2, 0x29, 0xf2, 0x21, 0xa8, 0xa2, + 0xa0, 0x88, 0xf2, 0x1d, 0x28, 0x63, 0xdb, 0x45, 0xc6, 0xc3, 0x51, 0xe4, 0x2f, 0x50, 0x6f, 0x15, + 0x7d, 0x4b, 0x1f, 0xd2, 0xdd, 0xd3, 0x24, 0x9c, 0xa2, 0x6d, 0x2e, 0xb6, 0x13, 0xd9, 0xe0, 0x92, + 0xae, 0xa1, 0x25, 0x70, 0x1e, 0x70, 0x1e, 0x70, 0x9e, 0x70, 0x9c, 0x27, 0xb2, 0x21, 0xa4, 0x48, + 0x94, 0x07, 0x34, 0x06, 0x34, 0x06, 0x34, 0x06, 0x34, 0xb6, 0x3d, 0x68, 0xec, 0x3e, 0x12, 0x90, + 0x4a, 0xf3, 0x44, 0x5f, 0x46, 0x99, 0x33, 0x67, 0x80, 0xb8, 0x80, 0xb8, 0x80, 0xb8, 0x84, 0x23, + 0xae, 0x28, 0xb4, 0x22, 0xd7, 0x11, 0x95, 0xda, 0x98, 0x5c, 0x2e, 0x9c, 0x08, 0x78, 0xd6, 0xf4, + 0x65, 0xb5, 0xc3, 0x5c, 0xb3, 0xa5, 0xeb, 0x0f, 0xbc, 0xc8, 0xf2, 0xec, 0x7b, 0xe6, 0x09, 0xcc, + 0xdb, 0x11, 0xb9, 0x82, 0x34, 0x2b, 0x29, 0x7e, 0x45, 0x97, 0x56, 0x16, 0x15, 0x6e, 0x24, 0xac, + 0x36, 0xa9, 0x0f, 0x21, 0x09, 0xa8, 0xae, 0x07, 0xae, 0x47, 0x28, 0x71, 0xa3, 0xca, 0x29, 0x51, + 0xbe, 0xf7, 0xc5, 0xca, 0xbb, 0xea, 0x31, 0xea, 0xdb, 0x48, 0x7f, 0x6a, 0x5b, 0xe7, 0x2c, 0x5e, + 0xd2, 0xee, 0x6f, 0xc3, 0x3e, 0x0b, 0x27, 0x89, 0x3e, 0x28, 0x0f, 0x21, 0x54, 0xb4, 0xda, 0x3a, + 0x65, 0x07, 0x13, 0x60, 0x48, 0xa2, 0x3e, 0x1e, 0x14, 0xfd, 0x3b, 0xc8, 0xfa, 0x76, 0xa0, 0x5f, + 0x47, 0x2e, 0xfa, 0x75, 0xb4, 0xc1, 0xb6, 0xa5, 0x3e, 0x01, 0xd9, 0x52, 0x18, 0x97, 0xb4, 0x4a, + 0x96, 0x54, 0x46, 0xf0, 0x6d, 0xe0, 0xdb, 0xc0, 0xb7, 0x91, 0xf1, 0x6d, 0xc2, 0xa8, 0x0d, 0x81, + 0x54, 0x06, 0xae, 0x37, 0x45, 0xba, 0x9f, 0xb8, 0xde, 0x34, 0x66, 0xab, 0xa8, 0x8a, 0xe1, 0xe2, + 0x52, 0x53, 0x57, 0x98, 0x15, 0x87, 0x97, 0x44, 0x22, 0x91, 0xd6, 0xf4, 0x89, 0x62, 0xc0, 0x56, + 0x09, 0x60, 0x0b, 0x60, 0x6b, 0x5b, 0xc1, 0x56, 0xd6, 0x84, 0xc8, 0xe4, 0x41, 0xae, 0x3f, 0xb9, + 0x96, 0x63, 0x8e, 0x15, 0x74, 0x39, 0xe3, 0x91, 0x38, 0x41, 0x49, 0x78, 0x9b, 0xa5, 0x21, 0x04, + 0xed, 0xab, 0x58, 0x8b, 0x27, 0xbc, 0x0e, 0x28, 0x45, 0xfd, 0x4f, 0xc2, 0xba, 0x9f, 0x54, 0xf5, + 0x3e, 0xc9, 0xeb, 0x7c, 0x92, 0xd7, 0xf7, 0xa4, 0xad, 0xeb, 0xa9, 0x57, 0x51, 0x47, 0xe1, 0xf5, + 0x3b, 0x49, 0xe2, 0x55, 0x17, 0x55, 0x80, 0x48, 0xea, 0x96, 0xe6, 0x6e, 0x9a, 0xe0, 0x4a, 0x85, + 0xf2, 0x2e, 0x9a, 0xf8, 0x1e, 0x92, 0xba, 0xbb, 0x8a, 0x8c, 0x1b, 0x47, 0x82, 0xab, 0x66, 0xd2, + 0x2b, 0x66, 0x59, 0x5b, 0x4a, 0x1f, 0x07, 0x2b, 0x75, 0x97, 0xf3, 0x7d, 0xd9, 0xf7, 0x46, 0x83, + 0x53, 0xf0, 0x1c, 0x20, 0x0e, 0xbe, 0x12, 0x23, 0xd0, 0x78, 0x00, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, + 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0xcf, 0x6d, 0xc7, 0x9f, + 0x84, 0xdc, 0x27, 0x38, 0x4f, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, + 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0xce, 0x18, 0x18, 0x92, 0x71, 0x9d, 0xe0, 0x38, 0x81, 0x37, + 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, 0x81, 0x37, + 0x83, 0x21, 0x27, 0x0f, 0xf4, 0x5c, 0x31, 0x06, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, + 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x50, 0x28, 0x69, 0xa8, 0xe7, 0xd2, + 0x08, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, 0xa0, 0x40, + 0xa0, 0x40, 0xa0, 0x5b, 0x8f, 0x40, 0x29, 0xf9, 0x4f, 0xf0, 0x9e, 0x40, 0x9d, 0x40, 0x9d, 0x40, + 0x9d, 0x40, 0x9d, 0x40, 0x9d, 0x40, 0x9d, 0x40, 0x9d, 0x40, 0x9d, 0x40, 0x9d, 0x13, 0x64, 0x48, + 0xc7, 0x77, 0x82, 0xe7, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, 0x04, 0xe2, + 0x04, 0xe2, 0x04, 0xe2, 0x34, 0x1c, 0x71, 0x2a, 0x2d, 0x2d, 0x5a, 0xf3, 0xfd, 0x80, 0x4f, 0x1a, + 0xf4, 0x08, 0xa9, 0x30, 0x1a, 0x75, 0xbf, 0xb0, 0xbe, 0x3d, 0xb0, 0xf9, 0x97, 0xb1, 0xc5, 0x3a, + 0x08, 0x06, 0xcc, 0xef, 0xc6, 0xa8, 0xd0, 0xf2, 0x19, 0xff, 0x4f, 0x10, 0x7e, 0xb5, 0x5c, 0x3f, + 0xe2, 0xb6, 0xdf, 0x65, 0x07, 0x8b, 0x3f, 0x88, 0x96, 0x7e, 0x72, 0x10, 0xb1, 0x87, 0x31, 0x6a, + 0xb0, 0xc2, 0x60, 0xc8, 0x5d, 0xff, 0xe1, 0x80, 0x33, 0x6b, 0x10, 0x78, 0x6e, 0xd7, 0x65, 0x51, + 0xf2, 0xfd, 0xe3, 0x41, 0xc4, 0x6d, 0xce, 0x0e, 0x04, 0x15, 0x1c, 0x9e, 0xbc, 0x05, 0x0f, 0x87, + 0x5d, 0xee, 0x4f, 0xed, 0xee, 0xe5, 0x64, 0x5a, 0xe7, 0xd3, 0x59, 0x75, 0x6e, 0x26, 0xb3, 0xba, + 0x9e, 0x4c, 0xaa, 0xd3, 0x62, 0xcd, 0x78, 0x1e, 0x9d, 0x0f, 0xb3, 0x19, 0x18, 0x58, 0x00, 0x9a, + 0xf9, 0xce, 0x20, 0x70, 0x63, 0x80, 0x26, 0xa8, 0x00, 0x74, 0xf2, 0x44, 0x74, 0xdb, 0x90, 0xe8, + 0x8b, 0xa0, 0x00, 0x34, 0xba, 0x6d, 0xbc, 0x46, 0xe2, 0xc6, 0xab, 0x62, 0xcd, 0x8e, 0x28, 0x9a, + 0xdc, 0xa6, 0x58, 0x41, 0x77, 0xf0, 0xad, 0x82, 0x06, 0x65, 0x93, 0x06, 0x65, 0xed, 0x9f, 0xb7, + 0x25, 0xeb, 0xa4, 0x3d, 0xf9, 0xb6, 0x14, 0xff, 0x31, 0xf9, 0xbe, 0x7c, 0x5b, 0xb4, 0x2a, 0xb3, + 0xef, 0xab, 0xb7, 0x45, 0xab, 0xda, 0xde, 0xbb, 0xbb, 0xdb, 0xdf, 0xfb, 0x71, 0x38, 0xda, 0xfc, + 0x83, 0xfa, 0xb5, 0xe4, 0x42, 0xf7, 0x3c, 0x03, 0x84, 0x13, 0xdd, 0xf3, 0xd0, 0x3d, 0x6f, 0x4b, + 0xdb, 0xba, 0x4c, 0x3d, 0x18, 0x41, 0x88, 0x3e, 0x7e, 0x1a, 0xd0, 0x3c, 0xd0, 0x3c, 0xd0, 0xbc, + 0x6e, 0x68, 0x9e, 0x87, 0xae, 0xff, 0x20, 0x12, 0xc1, 0xbf, 0x53, 0xa5, 0xed, 0xde, 0x48, 0xdc, + 0x11, 0x51, 0xec, 0x97, 0x3a, 0xd6, 0x2b, 0xdd, 0x51, 0xd8, 0x7c, 0x91, 0x37, 0xfb, 0xc4, 0x86, + 0xdb, 0x31, 0xd6, 0x4a, 0x49, 0x73, 0xd6, 0x9d, 0x94, 0xbc, 0x51, 0xa1, 0xe1, 0x46, 0xbc, 0xc6, + 0x79, 0xba, 0x4e, 0x49, 0x85, 0x0b, 0xd7, 0xaf, 0x7b, 0x6c, 0xbc, 0xec, 0x51, 0xe1, 0x74, 0xc7, + 0x1f, 0x7a, 0xde, 0xdb, 0x14, 0x0f, 0xb1, 0xbf, 0x67, 0x7f, 0xc8, 0x55, 0xe8, 0xb0, 0x90, 0x39, + 0xef, 0x1f, 0xa7, 0x8f, 0x20, 0x5d, 0xf9, 0x8c, 0x07, 0x40, 0x85, 0xe0, 0xa7, 0xd0, 0x72, 0xe9, + 0xf8, 0xdc, 0xcd, 0xce, 0xd6, 0xeb, 0x4f, 0xc8, 0xeb, 0x7e, 0xf3, 0x95, 0x3b, 0x99, 0x76, 0x07, + 0xe5, 0xed, 0xdc, 0xeb, 0x96, 0xf1, 0xe5, 0x45, 0xf9, 0xf5, 0x6f, 0xbc, 0xb0, 0x5c, 0x9b, 0x2e, + 0x13, 0xed, 0xf2, 0xbc, 0x42, 0x84, 0x37, 0x12, 0xd9, 0x5f, 0x2f, 0xf1, 0xfa, 0x85, 0xfb, 0xc5, + 0xa2, 0x15, 0x26, 0xe6, 0xe5, 0xa5, 0xb5, 0x7a, 0x86, 0x40, 0xec, 0x17, 0x11, 0xef, 0x2b, 0x7b, + 0x39, 0x3e, 0x81, 0xfb, 0xf2, 0x0b, 0xbf, 0xb8, 0x01, 0x78, 0x7f, 0x0e, 0xce, 0x7d, 0xc6, 0xc7, + 0x3b, 0xf3, 0x9a, 0x5d, 0xd8, 0x10, 0x7f, 0xa7, 0xc6, 0xd7, 0xa9, 0xf1, 0xf3, 0x22, 0x3e, 0x9e, + 0xbd, 0x1b, 0xf1, 0x71, 0x7a, 0x6d, 0x47, 0xc2, 0x82, 0xc3, 0xa2, 0x6e, 0xe8, 0x0e, 0x36, 0xd2, + 0x4f, 0xc9, 0x5e, 0x3d, 0xff, 0xf0, 0x2b, 0x97, 0x63, 0x33, 0xff, 0x72, 0x63, 0x3f, 0x32, 0x8d, + 0xbf, 0x98, 0x4e, 0xf4, 0xb2, 0xba, 0x80, 0x99, 0x5d, 0xbd, 0xcc, 0x2e, 0x5d, 0x6a, 0xd1, 0xa4, + 0x31, 0x94, 0x1b, 0x7b, 0x5d, 0xe9, 0xbd, 0xab, 0x0d, 0xbd, 0xa8, 0x57, 0xd8, 0xbe, 0x57, 0xa8, + 0x2a, 0xe6, 0xdb, 0xf7, 0x1e, 0x73, 0x36, 0x3f, 0x65, 0xb3, 0x0f, 0xe2, 0x84, 0xe1, 0x84, 0x29, + 0x3a, 0x61, 0xf7, 0x41, 0xe0, 0x31, 0xdb, 0x4f, 0x73, 0xc4, 0x4a, 0xf2, 0x8f, 0xd8, 0xec, 0x62, + 0xc5, 0xea, 0xd9, 0x7d, 0xd7, 0x1b, 0x43, 0xdc, 0xb4, 0x67, 0x6e, 0xf9, 0x49, 0x39, 0x39, 0x84, + 0xae, 0xe5, 0x1d, 0x6e, 0xe7, 0x11, 0x8c, 0xdf, 0xdc, 0xb8, 0x03, 0xe8, 0x3a, 0xcc, 0xe7, 0x2e, + 0x7f, 0x0c, 0x59, 0x2f, 0xcd, 0x21, 0xdc, 0x20, 0x3c, 0xb1, 0x70, 0x3e, 0x1d, 0xea, 0xbd, 0x1d, + 0xa5, 0xd8, 0xf0, 0xd9, 0x84, 0x6b, 0x67, 0x67, 0xd7, 0xf5, 0x9b, 0x9b, 0xce, 0xc7, 0xda, 0xc5, + 0x79, 0xe3, 0xaf, 0x4d, 0x77, 0x3d, 0x8e, 0xb4, 0x8c, 0x52, 0xdd, 0x38, 0xa6, 0x63, 0x09, 0x93, + 0x79, 0x9f, 0x37, 0x3f, 0x1f, 0x6d, 0x4e, 0xda, 0xa5, 0xe0, 0x37, 0x33, 0xce, 0xf3, 0xa2, 0xd9, + 0xb8, 0x31, 0x61, 0x9e, 0x8d, 0x72, 0xa7, 0xde, 0xfa, 0x7b, 0xfd, 0xfa, 0xb2, 0xde, 0x32, 0x61, + 0xba, 0xe7, 0xcd, 0xcf, 0x95, 0x02, 0x31, 0xfb, 0xda, 0x56, 0xa4, 0x7d, 0x52, 0x11, 0xb0, 0x99, + 0x88, 0xd7, 0x4c, 0x84, 0x6b, 0x3a, 0xa2, 0x55, 0x0c, 0x90, 0xe8, 0xf3, 0xe1, 0xe6, 0x98, 0x61, + 0xfc, 0x21, 0x60, 0x74, 0x60, 0x74, 0x45, 0x10, 0x61, 0xe8, 0xfa, 0xbc, 0x74, 0x94, 0x02, 0x1d, + 0x1c, 0x6d, 0xf0, 0x91, 0x74, 0xa9, 0x43, 0xe9, 0xee, 0x7b, 0x52, 0x5f, 0xf9, 0x65, 0x0c, 0x62, + 0xc8, 0x9a, 0xba, 0x23, 0x22, 0x69, 0x63, 0x94, 0xee, 0x76, 0x4b, 0xf9, 0x92, 0x1d, 0x55, 0xab, + 0x87, 0x55, 0x85, 0xcb, 0x46, 0x74, 0x25, 0xd4, 0x96, 0x68, 0x7b, 0x36, 0x8a, 0x09, 0x4a, 0x13, + 0xfb, 0x03, 0xeb, 0x03, 0xeb, 0xb3, 0xa5, 0x1c, 0x6c, 0x18, 0x0c, 0x39, 0xb3, 0x1c, 0x37, 0xe2, + 0xae, 0xff, 0x30, 0x74, 0xa3, 0x2f, 0x2c, 0xdc, 0xfc, 0xa8, 0xad, 0x7a, 0x08, 0x4e, 0x1e, 0x4e, + 0x9e, 0xa2, 0x93, 0x97, 0x5e, 0x1c, 0x77, 0x52, 0xa6, 0x84, 0xa4, 0x4b, 0xfd, 0x48, 0x01, 0x02, + 0x33, 0x87, 0xcf, 0x65, 0x89, 0x87, 0xcf, 0x1c, 0xf7, 0x5e, 0xf8, 0xe7, 0xee, 0xd1, 0x24, 0x33, + 0xe2, 0xb6, 0x68, 0x1d, 0xb6, 0xe3, 0xef, 0x7e, 0xde, 0x96, 0xc6, 0x7f, 0x2f, 0x4d, 0x7e, 0x78, + 0xf2, 0xec, 0x7f, 0x93, 0x44, 0x8b, 0xdf, 0xa7, 0xff, 0x5f, 0xf8, 0xf1, 0xde, 0xe9, 0x6e, 0xe5, + 0xb6, 0x68, 0x95, 0x93, 0xdf, 0xaf, 0x24, 0xdf, 0x1d, 0x8d, 0xff, 0x77, 0xdc, 0x9e, 0xfb, 0xd7, + 0xf1, 0x38, 0xd3, 0x21, 0x4f, 0xda, 0x3f, 0x4e, 0x46, 0xcf, 0x92, 0x38, 0x7e, 0x94, 0xde, 0xbe, + 0x9b, 0xfe, 0x3d, 0x4d, 0x10, 0x78, 0x9b, 0x32, 0xda, 0x69, 0x1b, 0x25, 0x44, 0x62, 0x7a, 0xce, + 0xa9, 0x38, 0x71, 0x84, 0xe4, 0xa8, 0x97, 0x1c, 0x02, 0x85, 0xb0, 0x56, 0x42, 0x7e, 0x94, 0x47, + 0x93, 0x5f, 0x3e, 0x9c, 0xfe, 0xea, 0x8f, 0xe2, 0xdb, 0xe9, 0x8f, 0xe4, 0x8a, 0x85, 0x96, 0x1e, + 0x5b, 0x6c, 0x81, 0x43, 0xcb, 0x75, 0x52, 0x62, 0xc9, 0xf8, 0xa3, 0x40, 0x90, 0x40, 0x90, 0x8a, + 0x10, 0xa4, 0x13, 0x70, 0xce, 0x1c, 0xeb, 0xdf, 0x43, 0xdb, 0x49, 0xe5, 0xc0, 0x6d, 0xf0, 0x99, + 0xb4, 0x7a, 0xaf, 0x20, 0xd3, 0x50, 0x16, 0xb4, 0xd4, 0x32, 0x7c, 0x93, 0xfd, 0x4d, 0xf6, 0x76, + 0x83, 0xcc, 0x71, 0xe8, 0x16, 0xe8, 0x16, 0xe1, 0xba, 0xc5, 0xb8, 0xc0, 0x85, 0xcb, 0x7a, 0xeb, + 0x1f, 0x57, 0xd7, 0x7f, 0x76, 0xce, 0x2f, 0x6f, 0x5a, 0xb5, 0xcb, 0x0f, 0xf5, 0x4e, 0xeb, 0xaf, + 0x66, 0xdd, 0x9c, 0xf8, 0x85, 0x46, 0xf9, 0xf3, 0xcd, 0xb9, 0x09, 0x37, 0xed, 0x67, 0xf5, 0x8f, + 0xb5, 0x4f, 0x8d, 0x56, 0xb2, 0xce, 0x66, 0x04, 0x33, 0x34, 0x0e, 0x8d, 0x98, 0xe7, 0xe1, 0xe7, + 0xeb, 0x8f, 0x66, 0x2c, 0x68, 0xb3, 0xdc, 0x34, 0x2e, 0xde, 0x22, 0xdf, 0xa9, 0x30, 0x2f, 0xa7, + 0x2d, 0xa6, 0x4b, 0x58, 0xe1, 0xf6, 0xbd, 0xc7, 0xac, 0x6e, 0xe0, 0xfb, 0x2c, 0xbe, 0xe6, 0x8b, + 0x5e, 0x9f, 0xbc, 0xb2, 0xfc, 0x51, 0xc1, 0x89, 0x2c, 0x45, 0x24, 0xb2, 0x90, 0x21, 0x12, 0x49, + 0x89, 0x2c, 0x8b, 0x32, 0x92, 0x02, 0x2a, 0x2f, 0x3e, 0x61, 0x33, 0xd8, 0x5c, 0x02, 0x6c, 0x06, + 0x6c, 0x4e, 0x27, 0xbc, 0xc9, 0x07, 0xe6, 0xc2, 0xcd, 0x1f, 0xd3, 0x83, 0xd8, 0x85, 0xe7, 0x6c, + 0x9a, 0xee, 0x9d, 0x2a, 0x16, 0x24, 0x75, 0xcd, 0x8f, 0x2c, 0x35, 0x3e, 0xb2, 0x09, 0x7a, 0x56, + 0x81, 0x17, 0x26, 0xf8, 0xc2, 0x0e, 0x80, 0xb0, 0x83, 0x90, 0x0e, 0x6a, 0x6d, 0x9a, 0xde, 0x9e, + 0xba, 0xd2, 0x46, 0xb2, 0xef, 0x1e, 0xb3, 0x7b, 0x9b, 0xf9, 0x96, 0x4b, 0x7a, 0xfb, 0x38, 0x1d, + 0x7f, 0x1f, 0xa3, 0xad, 0xfd, 0xfd, 0x83, 0x09, 0xd6, 0x3a, 0x58, 0x38, 0x72, 0x54, 0xb9, 0xe9, + 0x1b, 0x68, 0xf1, 0xee, 0xec, 0x3c, 0xa6, 0x54, 0x22, 0xd3, 0xcf, 0xa7, 0x53, 0x1e, 0x25, 0x28, + 0x0f, 0x28, 0x0f, 0x5a, 0xe5, 0xb1, 0xa9, 0x75, 0x15, 0x65, 0x65, 0xc5, 0x5a, 0xdb, 0x8c, 0x56, + 0x37, 0xf3, 0x01, 0x12, 0x71, 0x90, 0xc4, 0x1e, 0x28, 0x51, 0x07, 0x4b, 0xf8, 0x01, 0x13, 0x7e, + 0xd0, 0x84, 0x1f, 0xb8, 0x74, 0x07, 0x2f, 0x03, 0xff, 0xb3, 0x23, 0xa4, 0x5e, 0x96, 0x00, 0x6b, + 0x2e, 0xc2, 0xaa, 0xaf, 0xb2, 0xee, 0xc9, 0x7f, 0xb1, 0x77, 0x18, 0x4d, 0xfe, 0xb8, 0x1d, 0x84, + 0x01, 0x0f, 0xba, 0x81, 0xf7, 0x3f, 0xdd, 0x61, 0x18, 0x32, 0x9f, 0xef, 0xee, 0x8d, 0x7f, 0x25, + 0x0a, 0xbb, 0xd6, 0xec, 0x5f, 0xda, 0x22, 0x70, 0x41, 0xfa, 0xed, 0x4c, 0x13, 0x3f, 0xee, 0xb0, + 0x9e, 0x3d, 0xf4, 0xb8, 0xe5, 0xf6, 0x07, 0x41, 0xc8, 0x67, 0xd5, 0x7c, 0x32, 0x6b, 0xc7, 0xd5, + 0x8f, 0x4d, 0x29, 0x6a, 0x67, 0x93, 0x87, 0x8d, 0x9f, 0x7b, 0x5d, 0xff, 0x7f, 0xf5, 0x0f, 0xad, + 0xce, 0xf5, 0xd5, 0xa7, 0x56, 0x1d, 0x3a, 0x37, 0xd6, 0x1b, 0xe1, 0x20, 0xf0, 0xa0, 0x70, 0x53, + 0x28, 0xdc, 0x78, 0xe1, 0xb6, 0x4e, 0xdb, 0xce, 0x4e, 0xe6, 0xe4, 0x48, 0x66, 0x2d, 0x32, 0x9e, + 0x68, 0xde, 0x4a, 0x86, 0x67, 0xd4, 0xfd, 0x61, 0x7f, 0xfc, 0x72, 0x23, 0x9d, 0xf5, 0xa4, 0x1b, + 0xc5, 0x4c, 0x61, 0x9f, 0xf1, 0xd0, 0x8d, 0x35, 0xfe, 0xc0, 0x7e, 0xc8, 0x56, 0xa4, 0xf0, 0x69, + 0x4b, 0xd6, 0x3f, 0x3b, 0xbb, 0xc6, 0xec, 0xd9, 0x5e, 0xc4, 0xa0, 0x2a, 0x01, 0x4f, 0x01, 0x4f, + 0xd3, 0xc9, 0xcd, 0xe6, 0x65, 0x50, 0xd6, 0x2a, 0xc9, 0x92, 0xce, 0x0a, 0x2e, 0xe2, 0x09, 0x8e, + 0x15, 0xa0, 0xd2, 0x9e, 0x3f, 0x0d, 0xca, 0x07, 0xca, 0x07, 0xca, 0x27, 0xcf, 0xbe, 0xf1, 0xcc, + 0xef, 0x4d, 0x8e, 0xbc, 0xc6, 0x8a, 0x4e, 0xb0, 0xa7, 0x2b, 0xc4, 0xc3, 0x85, 0x4b, 0x0a, 0x3d, + 0xb7, 0xbd, 0x2e, 0xa9, 0x66, 0x4a, 0xee, 0x60, 0xba, 0x11, 0xa7, 0xd3, 0xc2, 0xc0, 0xb3, 0xda, + 0xee, 0xb3, 0x1f, 0x4f, 0x3d, 0x67, 0x87, 0xf5, 0x5c, 0xdf, 0x8d, 0x23, 0x93, 0xd6, 0xff, 0x53, + 0xf2, 0x2f, 0x71, 0xaa, 0xbe, 0xd4, 0xfd, 0xc9, 0x54, 0x7a, 0x3d, 0x79, 0x8a, 0x88, 0x12, 0xec, + 0x4f, 0x0f, 0x13, 0x50, 0x8a, 0x3d, 0x79, 0xd8, 0xf3, 0x4a, 0x41, 0x82, 0x7a, 0xa9, 0x0c, 0xa3, + 0x8d, 0xd2, 0x68, 0x29, 0x75, 0xd7, 0xa2, 0xfe, 0x0a, 0x26, 0x6f, 0x6b, 0xdd, 0x3f, 0x8a, 0x68, + 0x28, 0x41, 0xd1, 0x18, 0x64, 0x4e, 0x97, 0xc5, 0x2b, 0x69, 0x56, 0xb7, 0x0a, 0x29, 0xe0, 0xe3, + 0xf9, 0x6d, 0x41, 0x76, 0xec, 0x31, 0xf7, 0x34, 0x40, 0x0f, 0x78, 0x59, 0xf0, 0xb2, 0xe0, 0x65, + 0x11, 0x28, 0xba, 0x2d, 0xea, 0x76, 0xb2, 0x14, 0x75, 0xbe, 0xf4, 0x93, 0xe9, 0x2e, 0xe8, 0x10, + 0xec, 0x95, 0x89, 0xb3, 0x13, 0xc1, 0xd5, 0x21, 0x6a, 0x54, 0x99, 0x55, 0x40, 0xd4, 0xa8, 0x3c, + 0x2d, 0x2f, 0x38, 0x6a, 0x74, 0xee, 0xc0, 0x69, 0xa0, 0x46, 0x32, 0x81, 0x52, 0x11, 0x60, 0x14, + 0x6a, 0x04, 0x6a, 0x04, 0x6a, 0x64, 0x53, 0x35, 0x32, 0x77, 0xe0, 0x74, 0x50, 0x23, 0xaf, 0x6a, + 0x4e, 0xb5, 0x5e, 0x7f, 0xbc, 0xa2, 0x59, 0xd5, 0xda, 0x15, 0x4d, 0xab, 0x38, 0xca, 0x50, 0x1c, + 0x50, 0x1c, 0xaf, 0x9a, 0x25, 0x02, 0xcf, 0x41, 0xfb, 0x80, 0xf6, 0x01, 0xed, 0x23, 0x9f, 0xf6, + 0x41, 0xe0, 0xf9, 0x26, 0x64, 0x06, 0x02, 0xcf, 0x65, 0xe9, 0x5c, 0xdc, 0xf2, 0xa7, 0x54, 0xb8, + 0x08, 0x3c, 0x47, 0xe0, 0xf9, 0xeb, 0xf5, 0x24, 0x02, 0xcf, 0x01, 0x4f, 0x01, 0x4f, 0x11, 0x78, + 0x9e, 0x45, 0x49, 0x22, 0xf0, 0x1c, 0xca, 0x07, 0xca, 0x07, 0xca, 0x27, 0x77, 0xbe, 0x31, 0x02, + 0xcf, 0x11, 0x78, 0x0e, 0x97, 0x14, 0x2e, 0x69, 0x2e, 0x94, 0x1c, 0x02, 0xcf, 0x9f, 0x3d, 0x05, + 0x81, 0xe7, 0x6a, 0x74, 0xd7, 0x0e, 0x02, 0xcf, 0x25, 0xab, 0x41, 0x04, 0x9e, 0xc3, 0xcb, 0x82, + 0x97, 0x05, 0x2f, 0x0b, 0x5e, 0x56, 0xb6, 0x4f, 0xe4, 0x3e, 0xf0, 0xfc, 0x15, 0x55, 0xda, 0xd3, + 0xaf, 0xa0, 0xd8, 0x22, 0xc8, 0x7f, 0xb2, 0xc7, 0x45, 0x3b, 0xb1, 0xf3, 0x9c, 0x9a, 0xdb, 0x49, + 0x15, 0xc5, 0x92, 0x0e, 0x5a, 0x66, 0x82, 0x92, 0x99, 0xa0, 0xe3, 0x1c, 0x54, 0x1c, 0x7f, 0x54, + 0xe8, 0x1a, 0xa7, 0x94, 0x5f, 0xe9, 0x72, 0x5b, 0xd8, 0x28, 0x86, 0x30, 0x1c, 0x76, 0xb9, 0x3f, + 0x6b, 0xcb, 0x32, 0x19, 0xec, 0x7c, 0x3a, 0x56, 0xa7, 0x35, 0x7e, 0xf2, 0x87, 0xa7, 0x07, 0xa3, + 0x73, 0xc3, 0xf2, 0xf2, 0x93, 0x75, 0x71, 0xd8, 0xb4, 0x75, 0x03, 0xfa, 0x35, 0xa0, 0x5f, 0xc3, + 0x4a, 0x41, 0x4a, 0xd9, 0xa4, 0x01, 0x9d, 0x19, 0xd0, 0x99, 0x21, 0x9b, 0xc1, 0x44, 0x67, 0x06, + 0x6a, 0xc7, 0x18, 0x31, 0xee, 0xc4, 0x0e, 0x2f, 0x92, 0x63, 0x5e, 0x72, 0x60, 0xd1, 0x99, 0x21, + 0x83, 0x35, 0x84, 0xf2, 0x80, 0xf2, 0x48, 0xab, 0x3c, 0x90, 0x20, 0x03, 0x7a, 0x1a, 0xf4, 0x74, + 0xae, 0xe8, 0xe9, 0x74, 0x7d, 0x7c, 0xd7, 0xda, 0xa0, 0x6a, 0x86, 0x67, 0x64, 0xea, 0xf3, 0xbb, + 0xf6, 0x05, 0x6b, 0x67, 0x67, 0xd7, 0xf5, 0x9b, 0x9b, 0xce, 0xc7, 0xda, 0xc5, 0x79, 0xe3, 0xaf, + 0xac, 0x72, 0x98, 0xa1, 0x01, 0xf0, 0xe2, 0x57, 0xf6, 0x3b, 0xdc, 0xb9, 0xf7, 0x3c, 0x6f, 0x7e, + 0x3e, 0x2a, 0x64, 0x7e, 0xe4, 0xe8, 0xad, 0x6e, 0xef, 0x75, 0xd1, 0x6c, 0xdc, 0xe4, 0xf1, 0xbd, + 0x1a, 0xe5, 0x4e, 0xbd, 0xf5, 0xf7, 0xfa, 0xf5, 0x65, 0xbd, 0x95, 0xc7, 0xd7, 0x3b, 0x6f, 0x7e, + 0xae, 0x08, 0x78, 0xaf, 0x4c, 0x4f, 0x68, 0xe7, 0xf2, 0x9a, 0x5f, 0xdc, 0x15, 0x3f, 0xae, 0xf7, + 0x81, 0x9f, 0x80, 0x9f, 0xb2, 0xc9, 0x8d, 0xc6, 0xd7, 0xfb, 0xb3, 0xe3, 0x1d, 0x25, 0xdf, 0xcd, + 0x98, 0x93, 0x09, 0xe8, 0xeb, 0xb9, 0x69, 0xe3, 0xa8, 0x70, 0xcd, 0xff, 0xe2, 0x7d, 0xdd, 0x7c, + 0x58, 0x85, 0x0e, 0xe4, 0x54, 0xf6, 0xf2, 0x4f, 0x28, 0xfd, 0x04, 0x82, 0x0a, 0xec, 0x36, 0x85, + 0x1e, 0x5f, 0xc1, 0x6e, 0xa3, 0xec, 0x13, 0xca, 0x3e, 0x41, 0x69, 0xc8, 0x50, 0x1a, 0x60, 0xb5, + 0xe1, 0x95, 0xc1, 0x2b, 0xcb, 0x95, 0x57, 0x06, 0x56, 0x7b, 0xa3, 0xa7, 0x82, 0xd5, 0x96, 0xfd, + 0x5e, 0x60, 0xb5, 0x8d, 0x7c, 0x3d, 0xb0, 0xda, 0x44, 0xfb, 0x06, 0x56, 0x1b, 0xf8, 0x09, 0xf8, + 0x49, 0x1b, 0xfc, 0x04, 0x56, 0x5b, 0x03, 0xbf, 0x54, 0x63, 0x56, 0xdb, 0xbc, 0x34, 0x35, 0x64, + 0xa5, 0x89, 0x5b, 0x52, 0x8d, 0xb2, 0xd2, 0xa6, 0x02, 0x29, 0x38, 0xff, 0x0c, 0x59, 0x67, 0xb3, + 0xe5, 0xa5, 0x48, 0x35, 0xfb, 0xe6, 0xd9, 0xfe, 0x06, 0x99, 0x66, 0x93, 0x5f, 0x37, 0x23, 0xd1, + 0x6c, 0x3c, 0xd7, 0x5c, 0x66, 0x99, 0xc5, 0x2f, 0xa6, 0x4b, 0x8a, 0x59, 0x3c, 0x99, 0x8d, 0x33, + 0xcc, 0x5e, 0xb9, 0x37, 0x3b, 0x06, 0x24, 0x98, 0x6d, 0xf0, 0x2a, 0x3b, 0xb9, 0xca, 0x2e, 0x7b, + 0x9d, 0x18, 0xd2, 0x00, 0x89, 0x8d, 0x53, 0xcb, 0x90, 0x0d, 0x42, 0x27, 0xd2, 0xa2, 0x7c, 0x53, + 0xfd, 0x2f, 0xcd, 0x36, 0x13, 0x79, 0x39, 0x9e, 0x49, 0xea, 0x1b, 0xb3, 0x29, 0xea, 0xca, 0xc8, + 0xf0, 0xc4, 0x4f, 0x01, 0xbb, 0x93, 0xe1, 0xd8, 0x80, 0xda, 0x49, 0x77, 0xac, 0x4c, 0xe7, 0x75, + 0x22, 0x1e, 0xba, 0xfe, 0x83, 0x08, 0x5a, 0xe7, 0x9d, 0xce, 0x85, 0xd0, 0xb8, 0xcd, 0x87, 0x91, + 0x80, 0x12, 0x68, 0x93, 0xe7, 0x64, 0xaf, 0x93, 0x5f, 0xfb, 0xd0, 0x3a, 0xff, 0x8c, 0x9e, 0x22, + 0x50, 0x59, 0x50, 0x59, 0x1b, 0x4b, 0x0c, 0xf3, 0x87, 0x7d, 0x16, 0x66, 0xe9, 0x58, 0xb1, 0xb3, + 0x4d, 0xbd, 0x44, 0xc6, 0x42, 0x62, 0xb9, 0x4e, 0x76, 0xe5, 0x37, 0x7b, 0x10, 0x94, 0x16, 0x94, + 0x16, 0x94, 0x96, 0xd4, 0xc3, 0xf3, 0xfc, 0x00, 0x1d, 0x65, 0x78, 0xc4, 0xb5, 0xed, 0x3f, 0xb0, + 0xcc, 0x51, 0x3d, 0x02, 0x6a, 0x0d, 0x5f, 0xb8, 0xbe, 0x90, 0xa2, 0xc5, 0x02, 0x34, 0xcb, 0xd2, + 0xe3, 0xe2, 0xd8, 0xa7, 0xcd, 0x09, 0x93, 0xb5, 0xcf, 0xfb, 0x18, 0xda, 0x71, 0x95, 0xb6, 0x33, + 0xf7, 0xc1, 0x8d, 0x6f, 0x6e, 0x8a, 0x3a, 0xc4, 0xc1, 0x14, 0x2e, 0xec, 0xef, 0xda, 0x6f, 0x41, + 0xa5, 0x78, 0x52, 0xd1, 0x78, 0x17, 0x14, 0x95, 0x9c, 0x6e, 0xe3, 0x32, 0x5b, 0xf8, 0xe5, 0x56, + 0x7c, 0xa7, 0x14, 0xff, 0x5f, 0xa3, 0x04, 0xad, 0x3e, 0xeb, 0xdf, 0xb3, 0x30, 0x4a, 0x4f, 0x18, + 0xcf, 0x1e, 0x00, 0xc6, 0x98, 0x10, 0x8a, 0x81, 0x31, 0xde, 0x91, 0xc9, 0x18, 0x4f, 0x64, 0x3a, + 0xbb, 0x3b, 0x33, 0x7d, 0x4e, 0x36, 0x6f, 0xa6, 0x94, 0xd5, 0x9b, 0x29, 0xc3, 0x9b, 0x81, 0x37, + 0x23, 0xc9, 0x9b, 0x49, 0x7b, 0xe4, 0x9e, 0x4c, 0x6e, 0xaa, 0xac, 0xbf, 0xb5, 0x72, 0x97, 0x26, + 0x0b, 0x50, 0xf0, 0x41, 0x14, 0x76, 0x20, 0x45, 0x1e, 0xcc, 0x55, 0x07, 0xd4, 0xed, 0x89, 0xe8, + 0xc4, 0x22, 0xb0, 0x5d, 0x0c, 0xc9, 0x71, 0x25, 0x3b, 0xb6, 0xeb, 0x8e, 0xaf, 0xdb, 0x53, 0x1d, + 0xbc, 0x9f, 0xd1, 0x95, 0xcb, 0x7c, 0xa8, 0x93, 0x07, 0xb9, 0x3e, 0x67, 0x61, 0xcf, 0x16, 0x29, + 0x1e, 0x49, 0xf2, 0x55, 0xf2, 0xe8, 0xb7, 0x5a, 0xba, 0x9b, 0x59, 0xb9, 0x45, 0x4a, 0x25, 0x40, + 0xa6, 0x0c, 0xa8, 0x94, 0x02, 0xb9, 0x72, 0x20, 0x57, 0x12, 0x94, 0xca, 0x42, 0x8c, 0xd2, 0x10, + 0xc8, 0x03, 0xed, 0x08, 0xe1, 0x39, 0xd7, 0x4a, 0xeb, 0xbd, 0x1d, 0x31, 0x2b, 0x39, 0xff, 0x56, + 0xb6, 0x14, 0x82, 0xb5, 0xc6, 0xff, 0x58, 0xe0, 0x33, 0x9f, 0x37, 0xe6, 0x73, 0x7b, 0xa7, 0xc9, + 0xdc, 0xa3, 0xc5, 0x1f, 0x4c, 0xff, 0x9e, 0xbe, 0xd7, 0x9e, 0x78, 0x99, 0x50, 0x6b, 0x8a, 0x32, + 0x32, 0x3a, 0xf2, 0x18, 0x9e, 0x29, 0x2d, 0x32, 0xfd, 0x33, 0x4d, 0xee, 0x82, 0xb8, 0x85, 0x1f, + 0xa1, 0x4d, 0x23, 0x51, 0x9b, 0xc6, 0x57, 0x67, 0x39, 0x88, 0x5a, 0x5c, 0x41, 0xf2, 0x2f, 0x4b, + 0xee, 0xb3, 0xf8, 0xfb, 0xbf, 0x4e, 0x99, 0xf8, 0xec, 0xd9, 0x7e, 0xe7, 0x62, 0x32, 0x08, 0xb8, + 0x6a, 0x09, 0x3b, 0x8a, 0x92, 0x40, 0x52, 0x9c, 0x7d, 0x10, 0xd5, 0x82, 0x91, 0x37, 0x42, 0x9b, + 0x5f, 0x14, 0x17, 0x84, 0x36, 0x83, 0xa4, 0x56, 0x73, 0xac, 0xd4, 0x20, 0x54, 0x84, 0x36, 0x6f, + 0x8a, 0xc4, 0x10, 0xda, 0x0c, 0x95, 0x05, 0x95, 0x95, 0x0b, 0x95, 0x85, 0xd0, 0xe6, 0x8d, 0xe6, + 0x88, 0xd0, 0x66, 0x28, 0x2d, 0x28, 0x2d, 0x84, 0x36, 0x23, 0xb4, 0xf9, 0x95, 0x8f, 0x43, 0x68, + 0xb3, 0x36, 0x5b, 0x80, 0xd0, 0xe6, 0x55, 0x5f, 0x08, 0x6d, 0x26, 0xa5, 0x8b, 0x69, 0xab, 0x74, + 0x6d, 0x40, 0x16, 0xa7, 0x45, 0x6e, 0x19, 0x8d, 0x8e, 0xa9, 0x8d, 0x27, 0x40, 0x18, 0x0b, 0x45, + 0x5c, 0x68, 0x39, 0xb1, 0x5a, 0x58, 0x97, 0x5a, 0x4e, 0xcc, 0x4e, 0x99, 0x49, 0x75, 0xfd, 0x36, + 0xd3, 0x0c, 0xa8, 0xe3, 0x27, 0xc0, 0x70, 0x91, 0x19, 0x2c, 0x71, 0x55, 0xfc, 0x3e, 0xbf, 0x5a, + 0x51, 0xe4, 0xbb, 0x88, 0xdf, 0xa4, 0x76, 0x5e, 0xda, 0x1a, 0x7e, 0x6f, 0x36, 0x78, 0xe1, 0xd9, + 0x79, 0xfc, 0xc5, 0x05, 0xd6, 0xeb, 0x0e, 0xdf, 0x46, 0x87, 0x6d, 0xa3, 0xc3, 0xf5, 0xba, 0xc3, + 0xb4, 0xee, 0xfd, 0x5e, 0xb9, 0x91, 0x62, 0x37, 0xf0, 0x17, 0x27, 0xe2, 0xd7, 0x27, 0x60, 0xf5, + 0x9e, 0x2f, 0xef, 0xe8, 0xfc, 0x4f, 0x16, 0xde, 0xfd, 0xa5, 0x77, 0xce, 0xf4, 0xae, 0xf3, 0x33, + 0x7c, 0x9a, 0xc7, 0xb3, 0x39, 0x14, 0x82, 0x01, 0x77, 0xbb, 0xb6, 0x67, 0xd9, 0xfd, 0x81, 0x37, + 0x29, 0xec, 0xbb, 0x38, 0x8d, 0x27, 0xd8, 0xb4, 0xf4, 0xab, 0x0b, 0xef, 0xb2, 0x3a, 0x78, 0x60, + 0x2d, 0xd6, 0xfb, 0x15, 0x96, 0x7b, 0x8e, 0xd5, 0x82, 0x01, 0x1f, 0x8f, 0xb9, 0x62, 0xa3, 0x5e, + 0x82, 0x63, 0xaf, 0x86, 0x5b, 0xaf, 0x86, 0x53, 0x8b, 0x70, 0x69, 0x36, 0xb7, 0x0d, 0x77, 0x7d, + 0xdd, 0x15, 0x78, 0x21, 0x59, 0xdb, 0xf5, 0x17, 0x50, 0x4f, 0xbd, 0x6c, 0x9e, 0x7e, 0x77, 0x9d, + 0xc2, 0xf8, 0x65, 0x34, 0xc7, 0x8b, 0x20, 0xfc, 0x35, 0x60, 0xfb, 0x75, 0x1b, 0xb5, 0x29, 0x7e, + 0xde, 0x18, 0x27, 0x6f, 0x8c, 0x87, 0x5f, 0xbd, 0x91, 0xe9, 0x54, 0xf5, 0x4b, 0x31, 0x0e, 0x85, + 0xf5, 0xe7, 0xed, 0xe5, 0xfd, 0x36, 0xa4, 0x52, 0xeb, 0xcb, 0xe2, 0x90, 0xd6, 0xad, 0x52, 0x5f, + 0xac, 0xf5, 0x45, 0x71, 0x11, 0x03, 0x6d, 0x5e, 0x5d, 0xaf, 0x75, 0xc3, 0x42, 0x98, 0xe9, 0x0a, + 0x60, 0xea, 0x5e, 0xb3, 0xf5, 0xf5, 0x02, 0x97, 0xd5, 0x9f, 0xd7, 0xaf, 0x6c, 0xeb, 0xab, 0x05, + 0x92, 0xc6, 0x55, 0xdc, 0xb8, 0x72, 0xab, 0xdd, 0x1f, 0x58, 0xfd, 0xc0, 0xc9, 0x10, 0xdf, 0x98, + 0x3c, 0x61, 0x3b, 0x18, 0xab, 0xcd, 0x85, 0x7b, 0x7b, 0x48, 0xab, 0x8d, 0x85, 0xdf, 0x14, 0xde, + 0x2a, 0x5b, 0x93, 0xb5, 0x2c, 0xcd, 0xd5, 0xc4, 0x34, 0x55, 0x4b, 0x5e, 0xe4, 0xaa, 0xd9, 0x3a, + 0xff, 0x50, 0x6b, 0x74, 0x6a, 0x17, 0xcd, 0xc6, 0xf9, 0xc7, 0xf3, 0xfa, 0x75, 0xe7, 0xe2, 0xea, + 0x2c, 0x75, 0x4c, 0x93, 0x80, 0x66, 0x6a, 0x82, 0x32, 0xae, 0xcf, 0xfe, 0xba, 0xac, 0x5d, 0x9c, + 0x7f, 0xe8, 0xfc, 0x51, 0x3b, 0xbf, 0xcc, 0x70, 0x51, 0xfd, 0x56, 0xf5, 0x7b, 0x7c, 0xb8, 0xba, + 0xbc, 0x69, 0xd5, 0x2e, 0x5b, 0x9d, 0xe6, 0xd5, 0x3f, 0xea, 0xd7, 0xb9, 0x78, 0x93, 0x8c, 0x5b, + 0x92, 0xea, 0x93, 0x6d, 0x6a, 0x0d, 0x44, 0x72, 0x77, 0xc4, 0x7c, 0xfb, 0xde, 0x63, 0x19, 0xee, + 0x8e, 0x66, 0x0f, 0x80, 0x25, 0x86, 0x25, 0xce, 0xa9, 0x25, 0xbe, 0x0f, 0x02, 0x8f, 0xa5, 0xbb, + 0x33, 0x9c, 0x59, 0xe1, 0x92, 0x06, 0x47, 0xbd, 0xf7, 0xff, 0xb3, 0xf7, 0xf6, 0x4d, 0x6d, 0x2b, + 0xd9, 0xfe, 0xef, 0xff, 0xbc, 0x0a, 0xca, 0x35, 0xa7, 0x0a, 0x66, 0x22, 0xc0, 0xc4, 0x40, 0xa0, + 0xea, 0xd4, 0x2e, 0x07, 0x48, 0x86, 0x3b, 0x04, 0xb8, 0xc0, 0x9e, 0xfd, 0xdb, 0xbf, 0x84, 0xa1, + 0x14, 0x5b, 0x10, 0xdd, 0x31, 0xb2, 0x8f, 0x24, 0x67, 0xc2, 0x49, 0x78, 0xef, 0xb7, 0xfc, 0x6c, + 0xe3, 0x27, 0x75, 0xf7, 0x6a, 0x59, 0xb2, 0x3f, 0xbb, 0xa6, 0x32, 0x84, 0x58, 0x2d, 0xab, 0xd5, + 0xbd, 0xd6, 0x67, 0x7d, 0x7b, 0xf5, 0x6a, 0xff, 0xab, 0x17, 0x3a, 0xf1, 0x73, 0xc3, 0x73, 0x1a, + 0x61, 0xfd, 0xc1, 0xaf, 0x19, 0x00, 0xf8, 0x84, 0xb6, 0x30, 0x00, 0x18, 0x00, 0x50, 0x3c, 0xdb, + 0x28, 0xfe, 0xe1, 0xec, 0xfd, 0xe9, 0xf5, 0xfd, 0xed, 0x9f, 0x57, 0xa7, 0xf7, 0x57, 0xd7, 0x97, + 0x1f, 0xce, 0xce, 0x97, 0x00, 0xc3, 0x6f, 0xff, 0x38, 0xce, 0x33, 0xb3, 0xde, 0xfe, 0x71, 0x7d, + 0x93, 0xe7, 0xef, 0x7f, 0x72, 0xf3, 0x21, 0xcf, 0x5f, 0xff, 0xe6, 0xe6, 0x53, 0xae, 0xbf, 0xff, + 0xf9, 0x69, 0xf9, 0x03, 0x91, 0x4e, 0x92, 0x1e, 0x7b, 0x74, 0xfd, 0xc0, 0x09, 0xbb, 0x89, 0xcd, + 0x9a, 0xd8, 0x33, 0xd4, 0x06, 0xb8, 0x03, 0xee, 0x80, 0x3b, 0xd9, 0xc6, 0x9d, 0x8f, 0xe5, 0xb3, + 0x8b, 0xfb, 0xeb, 0xf2, 0xc5, 0xc7, 0x25, 0xc0, 0x9c, 0xbf, 0x9f, 0x7d, 0xfc, 0xfb, 0xfd, 0xd0, + 0x03, 0xe5, 0xd8, 0x67, 0x7d, 0x38, 0xfb, 0x3f, 0xa7, 0x27, 0x4b, 0xf2, 0x2c, 0xe7, 0x97, 0x7f, + 0x2c, 0xc9, 0x93, 0x7c, 0x3a, 0x13, 0x7a, 0x27, 0x2b, 0xc4, 0x14, 0x4f, 0xee, 0x0f, 0xa7, 0xc5, + 0x04, 0x06, 0x45, 0xc5, 0x7b, 0x2d, 0xc0, 0x13, 0xf0, 0xc4, 0x92, 0xf2, 0x44, 0xd5, 0xab, 0xf8, + 0x4f, 0x6e, 0x6d, 0xbf, 0x64, 0x42, 0x13, 0x1a, 0xa5, 0x84, 0xc7, 0xf7, 0x72, 0xe9, 0x34, 0x62, + 0xb6, 0x17, 0xd2, 0xac, 0x30, 0x9c, 0xc0, 0xb6, 0xdf, 0x4e, 0xf7, 0x99, 0x16, 0x62, 0xee, 0x6d, + 0xb4, 0x33, 0xdc, 0xb8, 0x27, 0xb9, 0xbb, 0xee, 0xc5, 0xac, 0x4c, 0x9e, 0x58, 0xd7, 0xbe, 0x5d, + 0xc2, 0xae, 0x4d, 0x69, 0xe3, 0xe0, 0x5d, 0x46, 0x5c, 0x78, 0xbd, 0x19, 0x37, 0x9a, 0xb1, 0xd3, + 0xa8, 0xff, 0x47, 0xe3, 0x2c, 0x84, 0x11, 0x57, 0x3e, 0xd2, 0x12, 0x2e, 0x1d, 0x97, 0x8e, 0x4b, + 0xc7, 0xa5, 0xe3, 0xd2, 0x71, 0xe9, 0xb8, 0xf4, 0x14, 0x5d, 0xba, 0x1f, 0x98, 0x46, 0xe5, 0xbd, + 0x16, 0x70, 0xe1, 0xb8, 0x70, 0x5c, 0x38, 0x2e, 0x1c, 0x17, 0x8e, 0x0b, 0xc7, 0x85, 0xa7, 0xe7, + 0xc2, 0xb5, 0xca, 0x3d, 0x9b, 0x94, 0x79, 0xc6, 0x75, 0xe3, 0xba, 0x73, 0xe3, 0xba, 0xb5, 0x8b, + 0x31, 0x6b, 0x16, 0x61, 0xb6, 0x33, 0xc7, 0x63, 0x37, 0x7c, 0xf4, 0x62, 0x43, 0x52, 0x1f, 0x6e, + 0x84, 0x19, 0xcf, 0x8c, 0x07, 0xd6, 0x81, 0x75, 0x3b, 0xb0, 0xbe, 0x93, 0x55, 0xa2, 0xdc, 0x05, + 0xd6, 0x81, 0xf5, 0x8c, 0x38, 0x72, 0x27, 0xf6, 0xdb, 0x07, 0x17, 0x98, 0x7b, 0xf3, 0x4e, 0x4b, + 0xb8, 0x74, 0x5c, 0x3a, 0x2e, 0x1d, 0x97, 0x8e, 0xfe, 0x86, 0x4b, 0xc7, 0xa5, 0xa7, 0xee, 0xd2, + 0x65, 0x12, 0x63, 0x26, 0x35, 0x86, 0x63, 0xc7, 0xb1, 0xe3, 0xd8, 0x71, 0xec, 0x38, 0x76, 0x1c, + 0x3b, 0x8e, 0x3d, 0x45, 0xc7, 0xae, 0x63, 0xde, 0x06, 0x9e, 0xbc, 0x75, 0x35, 0xae, 0x1b, 0xd7, + 0xcd, 0xce, 0xd7, 0x59, 0xce, 0x3b, 0x8b, 0x35, 0xf7, 0x6e, 0xff, 0xbc, 0x5a, 0x82, 0x5d, 0xb0, + 0x1f, 0x2e, 0xaf, 0xff, 0x28, 0x5f, 0x9f, 0xdc, 0x5f, 0x97, 0x3f, 0x95, 0x73, 0x5d, 0x74, 0xef, + 0xf4, 0xe4, 0x43, 0x39, 0xcf, 0xdf, 0xff, 0xef, 0x7f, 0xbe, 0xbf, 0x3e, 0x3b, 0xc9, 0xf3, 0x13, + 0xbc, 0x2f, 0x1f, 0xff, 0x43, 0x64, 0x2c, 0xe5, 0x7d, 0xbf, 0x6b, 0xc6, 0x0f, 0x3d, 0x19, 0x3b, + 0x7a, 0x60, 0x7b, 0xfc, 0x37, 0x83, 0x72, 0xf8, 0x83, 0x1f, 0xbb, 0xc7, 0xee, 0x88, 0x9d, 0x53, + 0x92, 0xa0, 0x94, 0xb9, 0x52, 0xd6, 0x92, 0x4e, 0xb6, 0x92, 0x22, 0x4c, 0x51, 0x85, 0xdb, 0x22, + 0x1c, 0x65, 0xac, 0x0a, 0xb7, 0x32, 0xfc, 0x18, 0x1c, 0x90, 0xa5, 0x73, 0x30, 0xd6, 0x84, 0x03, + 0xb1, 0xda, 0x03, 0x3f, 0xc5, 0xe9, 0xd9, 0x39, 0xb0, 0x4f, 0x79, 0x7e, 0x76, 0x2e, 0xb3, 0x5c, + 0x26, 0x7f, 0x97, 0x09, 0xba, 0xe4, 0x13, 0x54, 0xbd, 0x4c, 0x7e, 0x25, 0x6e, 0xba, 0x35, 0xc3, + 0xfc, 0xb8, 0xe1, 0x46, 0xf4, 0x02, 0xf7, 0x22, 0x81, 0x3b, 0x81, 0xbb, 0xdd, 0xc0, 0x5d, 0x75, + 0x6a, 0x0c, 0xa6, 0xc8, 0xf7, 0x47, 0xf3, 0x58, 0xb9, 0xd5, 0x08, 0x67, 0xd5, 0xb7, 0x86, 0x47, + 0xfc, 0xdc, 0xf0, 0x22, 0x0e, 0xab, 0xd7, 0x98, 0x58, 0x9d, 0x9e, 0x5b, 0xb9, 0xd3, 0xea, 0x4d, + 0x96, 0xba, 0xc6, 0xfc, 0x8c, 0xc1, 0xa2, 0x8d, 0xc8, 0xd2, 0x57, 0xbf, 0xb1, 0xa5, 0x3e, 0xfd, + 0x7e, 0x57, 0xf8, 0xe8, 0xf5, 0x1d, 0x4e, 0xbf, 0x57, 0x7d, 0x05, 0x6f, 0x57, 0xe8, 0x15, 0x2c, + 0xfb, 0xd1, 0xf7, 0x1a, 0x94, 0xd9, 0x39, 0xa3, 0x33, 0x36, 0x07, 0x97, 0x5e, 0x43, 0xc0, 0x0b, + 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0x76, 0xe1, 0x25, 0xf6, + 0xc2, 0xef, 0x6e, 0x4d, 0x82, 0x5e, 0xba, 0x2d, 0x81, 0x2f, 0xe0, 0x0b, 0xf8, 0xa2, 0x3c, 0x66, + 0xa2, 0xd8, 0x8d, 0x1d, 0xc3, 0x49, 0x34, 0x3c, 0x91, 0xde, 0x19, 0x34, 0xf1, 0x7b, 0xd0, 0xb1, + 0xb9, 0x85, 0xc0, 0x0d, 0xea, 0x91, 0x57, 0xa9, 0x07, 0x55, 0xa3, 0xb1, 0xbc, 0xd4, 0x10, 0xb3, + 0x03, 0xc4, 0x2c, 0x1a, 0x62, 0xa4, 0x5f, 0x41, 0xf1, 0x5d, 0xa9, 0xb4, 0x7f, 0x50, 0x2a, 0xed, + 0x1c, 0xbc, 0x3d, 0xd8, 0x39, 0xdc, 0xdb, 0x2b, 0xee, 0xeb, 0xe4, 0x00, 0xc2, 0x35, 0x8b, 0xe3, + 0x9a, 0x27, 0x83, 0x51, 0x36, 0x5c, 0x01, 0x18, 0x9a, 0x81, 0x66, 0xa0, 0x19, 0xc4, 0x18, 0xc4, + 0x18, 0x38, 0x06, 0x31, 0x06, 0x68, 0xb1, 0x0d, 0x2d, 0x4e, 0xec, 0x3f, 0x79, 0x22, 0xe4, 0xd2, + 0x69, 0x09, 0x7c, 0x01, 0x5f, 0xc0, 0x17, 0xe5, 0x31, 0xd3, 0x9a, 0x3b, 0xb1, 0x5f, 0xf9, 0x77, + 0x24, 0x02, 0x30, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x2b, 0x4a, 0x35, 0x06, 0x13, + 0x7d, 0xf8, 0x04, 0x07, 0x58, 0x06, 0x96, 0x81, 0x65, 0x90, 0x62, 0x90, 0x62, 0xe0, 0x18, 0xa4, + 0x18, 0xa0, 0xc5, 0x36, 0xb4, 0x48, 0x49, 0x31, 0xbd, 0x96, 0xc0, 0x17, 0xf0, 0x05, 0x7c, 0x41, + 0x8a, 0x41, 0x8a, 0x01, 0x61, 0x90, 0x62, 0xa0, 0x1a, 0x53, 0xaa, 0xb1, 0xba, 0x85, 0x5b, 0xb3, + 0xee, 0x4f, 0xff, 0x7a, 0x0b, 0xf5, 0x7f, 0xda, 0x75, 0x3b, 0xb6, 0xf5, 0x0b, 0x20, 0x74, 0xbe, + 0x57, 0x1c, 0x36, 0x2b, 0x71, 0xd0, 0x2b, 0xab, 0xd6, 0xb9, 0x73, 0xb9, 0x77, 0x8f, 0xfb, 0xa1, + 0x9f, 0xda, 0xf7, 0xf9, 0xd8, 0xba, 0x4d, 0x06, 0xca, 0x3c, 0x0e, 0x3d, 0xb5, 0xe1, 0x91, 0x0c, + 0x63, 0x2d, 0x51, 0x45, 0xc2, 0x2e, 0x70, 0x52, 0x45, 0x42, 0xd3, 0x04, 0x51, 0x45, 0x82, 0x88, + 0x8d, 0x88, 0x2d, 0x87, 0x11, 0x1b, 0x82, 0x73, 0xee, 0xa2, 0x35, 0x04, 0xe7, 0x85, 0x47, 0x6b, + 0x08, 0xce, 0xcb, 0x13, 0x9a, 0x51, 0x45, 0x02, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, + 0x01, 0x5e, 0x80, 0x97, 0xe5, 0x87, 0x17, 0xaa, 0x48, 0x80, 0x2f, 0xe0, 0x0b, 0x55, 0x24, 0x86, + 0x9b, 0x60, 0xbd, 0xdc, 0xbe, 0xc5, 0x02, 0x62, 0xb2, 0xfb, 0x0a, 0x58, 0x2f, 0xcf, 0x3b, 0xd7, + 0x50, 0x45, 0x02, 0x9a, 0x81, 0x66, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x80, 0x96, + 0xbc, 0x40, 0x0b, 0x55, 0x24, 0xc0, 0x17, 0xf0, 0x85, 0xad, 0x0b, 0x48, 0x31, 0x48, 0x31, 0x48, + 0x31, 0x48, 0x31, 0xcb, 0x40, 0x35, 0x54, 0x91, 0x80, 0x65, 0x60, 0x19, 0xa4, 0x18, 0xa4, 0x18, + 0xa4, 0x18, 0xa4, 0x18, 0xa0, 0x25, 0x27, 0xd0, 0x42, 0x15, 0x09, 0xf0, 0x05, 0x7c, 0x41, 0x8a, + 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0xc9, 0x1a, 0xd5, 0xac, 0x7c, 0x15, 0x09, 0x9d, + 0x2a, 0x08, 0xeb, 0x9a, 0xa5, 0x24, 0x6e, 0x5b, 0xb7, 0xca, 0x42, 0x39, 0x89, 0xa7, 0x86, 0xf3, + 0x54, 0xaf, 0x7a, 0x06, 0x65, 0x24, 0x7a, 0x2d, 0xe8, 0x95, 0x8f, 0xd8, 0xa1, 0x7c, 0x44, 0xda, + 0x84, 0xb9, 0x6a, 0xe5, 0x23, 0xb4, 0xd9, 0x71, 0xb0, 0x17, 0xa1, 0xea, 0x05, 0xb1, 0x1f, 0x3f, + 0x87, 0xde, 0x83, 0xce, 0x8b, 0xef, 0x89, 0x5d, 0x1a, 0xde, 0xad, 0x70, 0xd6, 0xbd, 0xf5, 0x7b, + 0x37, 0x12, 0x08, 0x1e, 0x2f, 0xaf, 0x6e, 0xcf, 0x8e, 0xcb, 0xe7, 0xf7, 0xe5, 0x4f, 0x57, 0xe7, + 0x67, 0x1f, 0xce, 0x4e, 0xaf, 0xef, 0x3f, 0x5d, 0x9e, 0x9c, 0xea, 0x8e, 0xa3, 0xb6, 0x23, 0x8f, + 0x8c, 0x88, 0xd3, 0x30, 0xe8, 0xea, 0x3d, 0xd7, 0xc9, 0x9f, 0x17, 0xe5, 0x4f, 0x67, 0xc7, 0xf7, + 0x1f, 0xcb, 0x67, 0x17, 0x06, 0x21, 0xcd, 0x9b, 0x45, 0x3f, 0xc7, 0xf1, 0xe5, 0xc5, 0xcd, 0x6d, + 0xf9, 0xe2, 0xf6, 0xfe, 0xea, 0xf2, 0x8f, 0xd3, 0xeb, 0xa5, 0x78, 0x12, 0xc3, 0x57, 0xb2, 0x96, + 0x0e, 0x33, 0xbd, 0x64, 0xc0, 0x17, 0x57, 0xea, 0x4f, 0x8d, 0x7a, 0xe0, 0x05, 0x06, 0x35, 0x9d, + 0x06, 0x4d, 0xe0, 0x8d, 0xf1, 0xc6, 0x4b, 0xea, 0x8d, 0x6b, 0x9e, 0xfb, 0x60, 0xe8, 0x89, 0x0f, + 0x34, 0xae, 0xbd, 0xea, 0x07, 0x1f, 0x15, 0xa7, 0x51, 0x73, 0xe3, 0x87, 0x7a, 0xf8, 0x74, 0xd4, + 0x9f, 0x70, 0xd1, 0xe4, 0x5f, 0x8f, 0xfc, 0xb6, 0x1d, 0x21, 0x64, 0xc0, 0xd0, 0x78, 0x8f, 0xa1, + 0x17, 0x45, 0x4e, 0xa3, 0x1e, 0x1a, 0x98, 0x9a, 0xe1, 0x46, 0x30, 0x36, 0x18, 0x1b, 0x8c, 0x0d, + 0xc6, 0x66, 0xa2, 0xb1, 0x09, 0xdc, 0xaf, 0x35, 0xaf, 0x6a, 0x60, 0x68, 0xba, 0x0d, 0x60, 0x64, + 0x30, 0x32, 0x4b, 0x6a, 0x64, 0xbe, 0xd6, 0xeb, 0x35, 0xcf, 0x0d, 0x4c, 0x8c, 0x4c, 0x31, 0x03, + 0x53, 0xfd, 0xc1, 0xff, 0xea, 0x85, 0xed, 0x75, 0x45, 0xa7, 0x11, 0xd6, 0x1f, 0xfc, 0x9a, 0x81, + 0xac, 0x38, 0xa1, 0x2d, 0x0c, 0x00, 0x06, 0x00, 0x81, 0x31, 0xdb, 0x02, 0xe3, 0x87, 0xb3, 0xf7, + 0xa7, 0xd7, 0xf7, 0xb7, 0x7f, 0x5e, 0x9d, 0xde, 0x5f, 0x5d, 0x5f, 0x7e, 0x38, 0x3b, 0x5f, 0x02, + 0x71, 0xf1, 0xf6, 0x8f, 0xe3, 0x3c, 0x2b, 0x71, 0xb7, 0x7f, 0x5c, 0xdf, 0xe4, 0xf9, 0xfb, 0x9f, + 0xdc, 0x7c, 0xc8, 0xf3, 0xd7, 0xbf, 0xb9, 0xf9, 0x94, 0xeb, 0xef, 0x7f, 0x7e, 0x5a, 0xfe, 0x80, + 0x7e, 0x9b, 0xa4, 0xc7, 0xda, 0x6b, 0xc8, 0x61, 0x37, 0x09, 0x47, 0x13, 0x7b, 0x86, 0xda, 0x00, + 0x77, 0xc0, 0x1d, 0x70, 0x27, 0xdb, 0xb8, 0xf3, 0xb1, 0x7c, 0x76, 0x71, 0x7f, 0x5d, 0xbe, 0xf8, + 0xb8, 0x04, 0x98, 0xf3, 0xf7, 0xb3, 0x8f, 0x7f, 0xbf, 0x1f, 0x7a, 0xa0, 0x1c, 0xfb, 0xac, 0x0f, + 0x67, 0xff, 0xe7, 0xf4, 0x64, 0x49, 0x9e, 0xe5, 0xfc, 0xf2, 0x8f, 0x25, 0x79, 0x92, 0x4f, 0x67, + 0x42, 0xef, 0x64, 0x85, 0x98, 0xc2, 0x0f, 0x24, 0xd6, 0x6a, 0x46, 0x5a, 0x81, 0x2b, 0xe0, 0x0a, + 0x16, 0x6b, 0xa6, 0x31, 0xc5, 0x6a, 0x2f, 0xd6, 0xf8, 0x41, 0xa3, 0x19, 0x3b, 0x8d, 0xfa, 0x7f, + 0xbc, 0xd0, 0xa9, 0x38, 0x5f, 0xdd, 0xa0, 0x6a, 0x62, 0x74, 0xc6, 0xda, 0xe2, 0x84, 0x31, 0x4c, + 0x0f, 0x27, 0x8c, 0x8d, 0x8d, 0x19, 0x4e, 0x18, 0x63, 0x37, 0x9f, 0xe9, 0xc4, 0xa2, 0x18, 0x01, + 0xc5, 0x08, 0x44, 0xc3, 0xb6, 0x75, 0x8a, 0x11, 0x50, 0x8c, 0x60, 0x09, 0x5e, 0x01, 0xc5, 0x08, + 0x26, 0x50, 0x3e, 0x27, 0x8c, 0x01, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, + 0xf0, 0x92, 0x2b, 0x78, 0xe1, 0x84, 0x31, 0xf0, 0x05, 0x7c, 0xe1, 0x84, 0xb1, 0xe1, 0x26, 0xa8, + 0xa5, 0x64, 0xdf, 0x62, 0x01, 0x31, 0xd9, 0x7d, 0x05, 0xd4, 0x52, 0xca, 0x3b, 0xd7, 0x70, 0xc2, + 0x18, 0x34, 0x03, 0xcd, 0x20, 0xc6, 0x20, 0xc6, 0x20, 0xc6, 0x20, 0xc6, 0x00, 0x2d, 0x79, 0x81, + 0x16, 0x4e, 0x18, 0x03, 0x5f, 0xc0, 0x17, 0xca, 0x5a, 0x23, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, + 0xc5, 0x2c, 0x03, 0xd5, 0x70, 0xc2, 0x18, 0x2c, 0x03, 0xcb, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, + 0x20, 0xc5, 0x00, 0x2d, 0x39, 0x81, 0x16, 0x4e, 0x18, 0x03, 0x5f, 0xc0, 0x17, 0xa4, 0x18, 0xa4, + 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0xac, 0x51, 0xcd, 0x6a, 0x9e, 0x30, 0x66, 0x5c, 0x07, + 0x61, 0x5d, 0xe9, 0x8c, 0xb1, 0xb3, 0xd6, 0xed, 0xae, 0x5a, 0x77, 0x3b, 0x7e, 0xdf, 0xba, 0x57, + 0xc6, 0xaa, 0x4a, 0xd4, 0x04, 0xab, 0x4a, 0xd4, 0xa8, 0x2a, 0x91, 0x06, 0x80, 0x52, 0x55, 0x42, + 0xd3, 0x24, 0x51, 0x55, 0x82, 0x08, 0x8e, 0x08, 0x2e, 0x87, 0x11, 0x1c, 0x02, 0x74, 0xee, 0xa2, + 0x37, 0x04, 0xe8, 0x85, 0x47, 0x6f, 0x08, 0xd0, 0xcb, 0x13, 0xaa, 0x51, 0x55, 0x02, 0x78, 0x01, + 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x97, 0xe5, 0x87, 0x17, 0xaa, 0x4a, 0x80, + 0x2f, 0xe0, 0x0b, 0x55, 0x25, 0x86, 0x9b, 0x60, 0xfd, 0xdc, 0xbe, 0xc5, 0x02, 0x62, 0xb2, 0xfb, + 0x0a, 0x58, 0x3f, 0xcf, 0x3b, 0xd7, 0x50, 0x55, 0x02, 0x9a, 0x81, 0x66, 0x10, 0x63, 0x10, 0x63, + 0x10, 0x63, 0x10, 0x63, 0x80, 0x96, 0xbc, 0x40, 0x0b, 0x55, 0x25, 0xc0, 0x17, 0xf0, 0x85, 0xad, + 0x0c, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0xcb, 0x40, 0x35, 0x54, 0x95, 0x80, 0x65, + 0x60, 0x19, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa0, 0x25, 0x27, 0xd0, 0x42, 0x55, + 0x09, 0xf0, 0x05, 0x7c, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0xc9, 0x1a, + 0xd5, 0x50, 0x55, 0xa2, 0x96, 0x66, 0x55, 0x89, 0xf3, 0x2c, 0x56, 0x95, 0x88, 0xeb, 0xb1, 0x46, + 0xee, 0xf6, 0xc4, 0xa2, 0x12, 0x9d, 0xa6, 0xa8, 0x29, 0x61, 0x17, 0x3f, 0xa9, 0x29, 0xa1, 0x69, + 0x90, 0xa8, 0x29, 0x41, 0xfc, 0x46, 0xfc, 0x96, 0xc3, 0xf8, 0x0d, 0xf9, 0x39, 0x77, 0xb1, 0x1b, + 0xf2, 0xf3, 0xc2, 0x63, 0x37, 0xe4, 0xe7, 0xe5, 0x09, 0xd4, 0xa8, 0x29, 0x01, 0xbc, 0x00, 0x2f, + 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0xcb, 0xf2, 0xc3, 0x0b, 0x35, 0x25, 0xc0, 0x17, + 0xf0, 0x85, 0x9a, 0x12, 0xc3, 0x4d, 0xb0, 0x7a, 0x6e, 0xdf, 0x62, 0x01, 0x31, 0xd9, 0x7d, 0x05, + 0xac, 0x9e, 0xe7, 0x9d, 0x6b, 0xa8, 0x29, 0x01, 0xcd, 0x40, 0x33, 0x88, 0x31, 0x88, 0x31, 0x88, + 0x31, 0x88, 0x31, 0x40, 0x4b, 0x5e, 0xa0, 0x85, 0x9a, 0x12, 0xe0, 0x0b, 0xf8, 0xc2, 0x46, 0x06, + 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0x65, 0xa0, 0x1a, 0x6a, 0x4a, 0xc0, 0x32, 0xb0, + 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0xd0, 0x92, 0x13, 0x68, 0xa1, 0xa6, 0x04, + 0xf8, 0x02, 0xbe, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x64, 0x8d, 0x6a, + 0xa8, 0x29, 0xa1, 0x53, 0x06, 0x61, 0x5d, 0xb3, 0xa4, 0xc4, 0x6d, 0xfb, 0x5e, 0x19, 0x28, 0x29, + 0x51, 0x73, 0x23, 0x2f, 0x74, 0xbe, 0xfa, 0x6e, 0xe4, 0x54, 0x9a, 0x61, 0xe8, 0x69, 0xec, 0x3c, + 0xeb, 0xfb, 0xd6, 0x09, 0x6d, 0x51, 0x54, 0xc2, 0x2e, 0x7f, 0x52, 0x54, 0x42, 0xd3, 0x22, 0x51, + 0x54, 0x82, 0x00, 0x8e, 0x00, 0x2e, 0x87, 0x01, 0x1c, 0xfa, 0x73, 0xee, 0x82, 0x37, 0xf4, 0xe7, + 0x85, 0x07, 0x6f, 0xe8, 0xcf, 0xcb, 0x13, 0xa9, 0x51, 0x54, 0x02, 0x78, 0x01, 0x5e, 0x80, 0x17, + 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x97, 0xe5, 0x87, 0x17, 0x8a, 0x4a, 0x80, 0x2f, 0xe0, 0x0b, + 0x45, 0x25, 0x86, 0x9b, 0x60, 0xf9, 0xdc, 0xbe, 0xc5, 0x02, 0x62, 0xb2, 0xfb, 0x0a, 0x58, 0x3e, + 0xcf, 0x3b, 0xd7, 0x50, 0x54, 0x02, 0x9a, 0x81, 0x66, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x10, + 0x63, 0x80, 0x96, 0xbc, 0x40, 0x0b, 0x45, 0x25, 0xc0, 0x17, 0xf0, 0x85, 0x9d, 0x0c, 0x48, 0x31, + 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0xcb, 0x40, 0x35, 0x14, 0x95, 0x80, 0x65, 0x60, 0x19, 0xa4, + 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa0, 0x25, 0x27, 0xd0, 0x42, 0x51, 0x09, 0xf0, 0x05, + 0x7c, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0xc9, 0x1a, 0xd5, 0xac, 0x66, + 0x51, 0x09, 0xe3, 0x3a, 0x08, 0xeb, 0x4a, 0x55, 0x25, 0xce, 0x5b, 0xb7, 0x7b, 0xef, 0xbb, 0xd1, + 0x71, 0xf7, 0x66, 0x19, 0x28, 0x2b, 0xf1, 0xe4, 0xfe, 0x70, 0x1e, 0x5d, 0x0d, 0x9b, 0x3d, 0xb2, + 0x3c, 0xd8, 0x6e, 0x41, 0xaf, 0x84, 0xc4, 0x0e, 0x25, 0x24, 0xd2, 0xa6, 0xcc, 0x55, 0x2b, 0x21, + 0xa1, 0xcd, 0x8f, 0x22, 0xb2, 0x97, 0x89, 0xdc, 0x25, 0x22, 0x73, 0x19, 0xb2, 0xa1, 0x01, 0x76, + 0x4b, 0xb0, 0xa0, 0x90, 0x8c, 0x25, 0xc5, 0x7e, 0x92, 0x74, 0x61, 0xc0, 0x7a, 0x22, 0x8c, 0x27, + 0x24, 0x4f, 0x65, 0xb2, 0x6b, 0x53, 0x02, 0xa7, 0xbb, 0x8c, 0xb8, 0xf0, 0x7a, 0x33, 0xee, 0xd7, + 0xc7, 0x32, 0x73, 0xe5, 0x23, 0x2d, 0xe1, 0xd2, 0x71, 0xe9, 0xb8, 0x74, 0x5c, 0x3a, 0x2e, 0x1d, + 0x97, 0x8e, 0x4b, 0x4f, 0xd1, 0xa5, 0xfb, 0x81, 0x69, 0x54, 0xde, 0x6b, 0x01, 0x17, 0x8e, 0x0b, + 0xc7, 0x85, 0xe3, 0xc2, 0x71, 0xe1, 0xb8, 0x70, 0x5c, 0x78, 0x7a, 0x2e, 0xbc, 0xbb, 0x1e, 0xa0, + 0xe9, 0xbe, 0xdb, 0x57, 0xe3, 0xba, 0x71, 0xdd, 0x4b, 0xea, 0xba, 0xa3, 0x38, 0xf4, 0x83, 0x47, + 0x13, 0xbf, 0xfd, 0x2e, 0x03, 0x73, 0xbc, 0xb7, 0xd8, 0x18, 0x7a, 0x71, 0x33, 0x0c, 0x9c, 0x5a, + 0x3d, 0x8a, 0xf4, 0xa7, 0xfc, 0xa4, 0xc6, 0xa8, 0xca, 0x8e, 0x05, 0xa0, 0x2a, 0xfb, 0xd8, 0x98, + 0xa1, 0x2a, 0x3b, 0x19, 0x90, 0xa6, 0x13, 0x8b, 0x0d, 0x1c, 0x6c, 0xe0, 0x10, 0x8b, 0xa9, 0x45, + 0x63, 0x6b, 0xe1, 0x18, 0x5b, 0x3a, 0x20, 0xb4, 0x11, 0x18, 0x0a, 0xc4, 0xde, 0xa2, 0x31, 0xb8, + 0x70, 0x2c, 0x9e, 0xab, 0x57, 0xc0, 0x06, 0x8e, 0xb1, 0x6e, 0xa6, 0x2a, 0x3b, 0xf0, 0x02, 0xbc, + 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0x39, 0x83, 0x17, 0xaa, 0xb2, 0x83, 0x2f, + 0xe0, 0x0b, 0x55, 0xd9, 0x87, 0x9b, 0x60, 0xff, 0xa9, 0x7d, 0x8b, 0x05, 0xc4, 0x64, 0xf7, 0x15, + 0xb0, 0xff, 0x34, 0xef, 0x5c, 0x43, 0x55, 0x76, 0x68, 0x06, 0x9a, 0x41, 0x8c, 0x41, 0x8c, 0x41, + 0x8c, 0x41, 0x8c, 0x01, 0x5a, 0xf2, 0x02, 0x2d, 0x54, 0x65, 0x07, 0x5f, 0xc0, 0x17, 0x4a, 0x81, + 0x21, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x2c, 0x03, 0xd5, 0x50, 0x95, 0x1d, 0x96, 0x81, + 0x65, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x80, 0x96, 0x9c, 0x40, 0x0b, 0x55, 0xd9, + 0xc1, 0x17, 0xf0, 0x05, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x26, 0x6b, 0x54, + 0xb3, 0x9a, 0x55, 0xd9, 0xcd, 0x0b, 0x21, 0xac, 0x2b, 0x95, 0x65, 0xef, 0xfe, 0xd3, 0x75, 0xfb, + 0x76, 0xe7, 0xad, 0xbb, 0x65, 0xa1, 0xb4, 0xc4, 0x50, 0x19, 0x56, 0xa7, 0xe2, 0x7c, 0x75, 0xdb, + 0xf3, 0x5d, 0xb7, 0xb4, 0xc4, 0x84, 0xc6, 0x28, 0x2d, 0x61, 0x97, 0x42, 0x29, 0x2d, 0xa1, 0x69, + 0x97, 0x28, 0x2d, 0x41, 0x18, 0x47, 0x18, 0x97, 0xc3, 0x30, 0x0e, 0x15, 0x3a, 0x77, 0x21, 0x1c, + 0x2a, 0xf4, 0xc2, 0x43, 0x38, 0x54, 0xe8, 0xe5, 0x89, 0xd7, 0x28, 0x2d, 0x01, 0xbc, 0x00, 0x2f, + 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0xcb, 0xf2, 0xc3, 0x0b, 0xa5, 0x25, 0xc0, 0x17, + 0xf0, 0x85, 0xd2, 0x12, 0xc3, 0x4d, 0xb0, 0x88, 0x6e, 0xdf, 0x62, 0x01, 0x31, 0xd9, 0x7d, 0x05, + 0x2c, 0xa2, 0xe7, 0x9d, 0x6b, 0x28, 0x2d, 0x01, 0xcd, 0x40, 0x33, 0x88, 0x31, 0x88, 0x31, 0x88, + 0x31, 0x88, 0x31, 0x40, 0x4b, 0x5e, 0xa0, 0x85, 0xd2, 0x12, 0xe0, 0x0b, 0xf8, 0xc2, 0x7e, 0x06, + 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x98, 0x65, 0xa0, 0x1a, 0x4a, 0x4b, 0xc0, 0x32, 0xb0, + 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0x52, 0x0c, 0xd0, 0x92, 0x13, 0x68, 0xa1, 0xb4, 0x04, + 0xf8, 0x02, 0xbe, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x64, 0x8d, 0x6a, + 0x56, 0xb4, 0xb4, 0x84, 0x71, 0x21, 0x84, 0x75, 0xb5, 0xd2, 0x12, 0xed, 0xfb, 0x5d, 0xb5, 0x6e, + 0x77, 0xfc, 0xbe, 0x75, 0xb3, 0xac, 0x55, 0x96, 0xa8, 0x49, 0x56, 0x96, 0xa8, 0x51, 0x59, 0x22, + 0x0d, 0x08, 0xa5, 0xb2, 0x84, 0xa6, 0x59, 0xa2, 0xb2, 0x04, 0x51, 0x1c, 0x51, 0x5c, 0x0e, 0xa3, + 0x38, 0x44, 0xe8, 0xdc, 0x45, 0x70, 0x88, 0xd0, 0x0b, 0x8f, 0xe0, 0x10, 0xa1, 0x97, 0x27, 0x5c, + 0xa3, 0xb2, 0x04, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xc0, 0x0b, 0xf0, 0x02, 0xbc, 0x00, 0x2f, 0xcb, + 0x0f, 0x2f, 0x54, 0x96, 0x00, 0x5f, 0xc0, 0x17, 0x2a, 0x4b, 0x0c, 0x37, 0xc1, 0x1a, 0xba, 0x7d, + 0x8b, 0x05, 0xc4, 0x64, 0xf7, 0x15, 0xb0, 0x86, 0x9e, 0x77, 0xae, 0xa1, 0xb2, 0x04, 0x34, 0x03, + 0xcd, 0x20, 0xc6, 0x20, 0xc6, 0x20, 0xc6, 0x20, 0xc6, 0x00, 0x2d, 0x79, 0x81, 0x16, 0x2a, 0x4b, + 0x80, 0x2f, 0xe0, 0x0b, 0xdb, 0x19, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x96, 0x81, + 0x6a, 0xa8, 0x2c, 0x01, 0xcb, 0xc0, 0x32, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x40, + 0x4b, 0x4e, 0xa0, 0x85, 0xca, 0x12, 0xe0, 0x0b, 0xf8, 0x82, 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, + 0x14, 0x83, 0x14, 0x93, 0x35, 0xaa, 0xa1, 0xb2, 0x84, 0x5e, 0x21, 0x84, 0x75, 0xdd, 0xca, 0x12, + 0xe7, 0x99, 0xac, 0x2c, 0x11, 0xd7, 0x63, 0x8d, 0xf4, 0xed, 0xc9, 0x85, 0x25, 0x3a, 0x6d, 0x51, + 0x57, 0xc2, 0x2e, 0x82, 0x52, 0x57, 0x42, 0xd3, 0x28, 0x51, 0x57, 0x82, 0x18, 0x8e, 0x18, 0x2e, + 0x87, 0x31, 0x1c, 0x12, 0x74, 0xee, 0xe2, 0x37, 0x24, 0xe8, 0x85, 0xc7, 0x6f, 0x48, 0xd0, 0xcb, + 0x13, 0xac, 0x51, 0x57, 0x02, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, + 0x97, 0xe5, 0x87, 0x17, 0xea, 0x4a, 0x80, 0x2f, 0xe0, 0x0b, 0x75, 0x25, 0x86, 0x9b, 0x60, 0x05, + 0xdd, 0xbe, 0xc5, 0x02, 0x62, 0xb2, 0xfb, 0x0a, 0x58, 0x41, 0xcf, 0x3b, 0xd7, 0x50, 0x57, 0x02, + 0x9a, 0x81, 0x66, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x80, 0x96, 0xbc, 0x40, 0x0b, + 0x75, 0x25, 0xc0, 0x17, 0xf0, 0x85, 0xcd, 0x0c, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, + 0xcb, 0x40, 0x35, 0xd4, 0x95, 0x80, 0x65, 0x60, 0x19, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, + 0x18, 0xa0, 0x25, 0x27, 0xd0, 0x42, 0x5d, 0x09, 0xf0, 0x05, 0x7c, 0x41, 0x8a, 0x41, 0x8a, 0x41, + 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0xc9, 0x1a, 0xd5, 0x50, 0x57, 0x42, 0xab, 0x0e, 0xc2, 0xba, 0x6e, + 0x59, 0x89, 0xdb, 0xf6, 0xcd, 0x32, 0x50, 0x56, 0x22, 0x76, 0xc3, 0x47, 0x2f, 0x76, 0x1e, 0x5d, + 0x0d, 0xb3, 0x3d, 0x70, 0xab, 0x43, 0x8d, 0xe8, 0x15, 0x92, 0xd8, 0xa1, 0x90, 0x44, 0xda, 0xac, + 0xb9, 0x6a, 0x85, 0x24, 0xb4, 0x29, 0x52, 0x44, 0xfc, 0x32, 0x11, 0xbd, 0x44, 0xc4, 0x2e, 0x43, + 0x42, 0x34, 0x80, 0x6f, 0x09, 0x22, 0x14, 0xc2, 0x10, 0x29, 0x02, 0x9c, 0xf0, 0x46, 0xd6, 0x16, + 0x40, 0x7c, 0x22, 0xa4, 0x27, 0x24, 0x52, 0xd9, 0xeb, 0xda, 0x9d, 0xb4, 0xc3, 0xd4, 0x35, 0xbb, + 0x98, 0x66, 0xdd, 0x91, 0x3b, 0xb1, 0x5f, 0x8b, 0x45, 0xbc, 0x79, 0xa7, 0x25, 0x5c, 0x3a, 0x2e, + 0x1d, 0x97, 0x8e, 0x4b, 0xb7, 0xe3, 0xd2, 0x77, 0x97, 0xd0, 0xef, 0xe0, 0xd2, 0x71, 0xe9, 0x62, + 0x2e, 0x7d, 0x58, 0xa5, 0x30, 0xf6, 0xea, 0x23, 0x8d, 0xe1, 0xd8, 0x71, 0xec, 0x38, 0x76, 0x1c, + 0x3b, 0x8e, 0x1d, 0xc7, 0x8e, 0x63, 0x4f, 0xd1, 0xb1, 0xeb, 0x98, 0xb7, 0x81, 0x27, 0x6f, 0x5d, + 0x8d, 0xeb, 0xc6, 0x75, 0x2f, 0xa9, 0xeb, 0xf6, 0xab, 0x5e, 0x10, 0xfb, 0xf1, 0x73, 0xe8, 0x3d, + 0x98, 0x38, 0x6f, 0x8d, 0xe5, 0xe4, 0xc2, 0x59, 0xf7, 0xd6, 0xef, 0xdd, 0x48, 0x20, 0x5b, 0xeb, + 0xf2, 0xea, 0xf6, 0xec, 0xb8, 0x7c, 0x7e, 0x5f, 0xfe, 0x74, 0x75, 0x7e, 0xf6, 0xe1, 0xec, 0xf4, + 0xfa, 0xfe, 0xf6, 0xcf, 0xab, 0x53, 0xdd, 0x71, 0xd4, 0xb6, 0xd9, 0x91, 0x51, 0x8a, 0x87, 0xa1, + 0xf3, 0xe9, 0x3d, 0xd7, 0x87, 0xcb, 0xeb, 0x3f, 0xca, 0xd7, 0x27, 0xf7, 0xd7, 0xe5, 0x4f, 0xe5, + 0x8b, 0xc2, 0x22, 0x9c, 0xa9, 0xd0, 0x83, 0x9c, 0x9e, 0x7c, 0x28, 0xe7, 0xf9, 0xfb, 0xff, 0xfd, + 0xcf, 0xf7, 0xd7, 0x67, 0x27, 0x79, 0x7e, 0x82, 0xf7, 0xe5, 0xe3, 0x7f, 0x88, 0x8c, 0x25, 0xad, + 0x2b, 0xef, 0x6c, 0xdb, 0xce, 0x35, 0xd9, 0x4f, 0x26, 0x7c, 0x5f, 0xba, 0x09, 0x17, 0xd6, 0x12, + 0x2d, 0x92, 0xbd, 0xd7, 0xf9, 0x7d, 0x30, 0xfb, 0x13, 0x73, 0x7a, 0xa7, 0xe5, 0xd1, 0x3b, 0x09, + 0x77, 0x73, 0xf3, 0x67, 0x0b, 0xe7, 0x7e, 0x14, 0x97, 0xe3, 0x38, 0x99, 0xdc, 0xd2, 0x0a, 0x9a, + 0x4e, 0x6b, 0x5e, 0xcb, 0x35, 0xb7, 0xcc, 0x73, 0xd0, 0xac, 0xd5, 0xde, 0xac, 0x25, 0x09, 0x07, + 0xd4, 0x2f, 0xba, 0x0c, 0xab, 0x5e, 0xe8, 0x55, 0xdf, 0x3f, 0x77, 0x2f, 0x31, 0xea, 0x0f, 0xc5, + 0x51, 0x62, 0x61, 0x74, 0x24, 0x70, 0x85, 0x89, 0xb3, 0x6b, 0x66, 0x8f, 0xb1, 0xe9, 0x23, 0x67, + 0xf2, 0xbf, 0x4c, 0xe9, 0xbb, 0xa4, 0x7d, 0x26, 0xd6, 0x57, 0x93, 0x9f, 0x6a, 0xfc, 0x3b, 0x4f, + 0xf8, 0xbe, 0x85, 0xa8, 0xd9, 0xf0, 0xc2, 0xef, 0x7e, 0x54, 0x0f, 0x9f, 0x9d, 0xca, 0x37, 0x37, + 0x08, 0xbc, 0x5a, 0x34, 0xf5, 0x5b, 0x0f, 0x4a, 0xc7, 0x4d, 0xba, 0x6a, 0x4a, 0x6f, 0xcc, 0x3e, + 0x05, 0x66, 0x6e, 0xf4, 0x90, 0x24, 0x4a, 0x50, 0x8b, 0x06, 0x92, 0x52, 0xbf, 0x32, 0xdd, 0x2b, + 0x53, 0xbc, 0x32, 0xad, 0xab, 0x8d, 0xc3, 0x79, 0xa7, 0xa2, 0x4c, 0x7a, 0x8d, 0xf3, 0x7b, 0x65, + 0xc6, 0x18, 0x98, 0xd7, 0x3f, 0xc9, 0x0e, 0x04, 0x4a, 0x1c, 0x50, 0xaa, 0x04, 0x90, 0x7a, 0x01, + 0xa3, 0x6a, 0x80, 0xa8, 0x1d, 0x10, 0x6a, 0x07, 0x80, 0xda, 0x01, 0x9f, 0x99, 0x9b, 0x4c, 0x7a, + 0xe0, 0x4e, 0xa1, 0xd2, 0x7b, 0x97, 0x09, 0x3b, 0xb0, 0xf7, 0x9a, 0xba, 0xd7, 0x25, 0xec, 0x04, + 0xb5, 0x93, 0xa6, 0x94, 0x15, 0x0b, 0x1d, 0xa5, 0x62, 0x78, 0xc0, 0xd5, 0xfc, 0xc0, 0x73, 0x2a, + 0xf5, 0x27, 0x85, 0xa8, 0x4e, 0x57, 0x9a, 0x30, 0x96, 0x24, 0x8c, 0xa5, 0x88, 0xd7, 0x23, 0xb2, + 0xff, 0xf0, 0x0b, 0xe2, 0x5c, 0xd5, 0xb3, 0xa1, 0x3a, 0x75, 0x85, 0x1f, 0xdc, 0x8a, 0x81, 0xfa, + 0x36, 0x68, 0x62, 0x35, 0x24, 0x38, 0x8d, 0x01, 0xbe, 0x3a, 0x1a, 0x9c, 0xfa, 0x04, 0xc8, 0x8b, + 0x08, 0xf7, 0xd5, 0x8d, 0x3c, 0xa7, 0x3f, 0xd6, 0x1d, 0x43, 0x2d, 0xee, 0x40, 0xe3, 0xda, 0xab, + 0x3e, 0x3c, 0x57, 0x1c, 0xff, 0xe1, 0xa8, 0xff, 0x5d, 0xa2, 0xd7, 0xbf, 0xe8, 0xfe, 0xbd, 0x1d, + 0x22, 0x10, 0x9e, 0x4f, 0x0d, 0x2a, 0x26, 0x81, 0xfd, 0xa4, 0x5f, 0x6e, 0x77, 0xfd, 0xb3, 0x54, + 0xcc, 0x9e, 0x00, 0xc5, 0xd4, 0xcd, 0xb2, 0xb6, 0x39, 0x56, 0x34, 0xc3, 0xa9, 0xf3, 0x84, 0xfa, + 0x8a, 0xc7, 0xf2, 0xe0, 0x84, 0xf2, 0x8a, 0x86, 0xec, 0xb4, 0x54, 0x36, 0x9a, 0xfd, 0xf7, 0x56, + 0xf3, 0xdc, 0x07, 0x35, 0x0b, 0xa9, 0x63, 0x19, 0xfb, 0x16, 0x71, 0x6b, 0xab, 0x3b, 0x47, 0xb7, + 0x07, 0xa3, 0x3f, 0xc5, 0xd9, 0xda, 0x91, 0xf4, 0x94, 0x67, 0x6a, 0xe7, 0x32, 0xcb, 0xd4, 0xbf, + 0x0b, 0xf5, 0x43, 0xfd, 0xe3, 0xee, 0x45, 0x20, 0x7f, 0x6e, 0xb8, 0x91, 0xd5, 0x38, 0x2c, 0x19, + 0xf2, 0xcf, 0x21, 0xf9, 0x73, 0x5c, 0x32, 0xa5, 0x49, 0xac, 0xcc, 0x24, 0xf1, 0x19, 0x35, 0x6d, + 0x66, 0x51, 0x59, 0x8d, 0xca, 0x6a, 0xaf, 0xfe, 0xa3, 0xb2, 0x9a, 0xd9, 0x1b, 0xa4, 0xb2, 0xda, + 0x32, 0xbc, 0x02, 0x2a, 0xab, 0x4d, 0x20, 0x7b, 0x8e, 0x4b, 0x06, 0x5e, 0x80, 0x17, 0xe0, 0x05, + 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x25, 0x57, 0xf0, 0xc2, 0x71, 0xc9, 0xe0, 0x0b, 0xf8, 0xc2, + 0x71, 0xc9, 0xc3, 0x4d, 0x50, 0x18, 0xd6, 0xbe, 0xc5, 0x02, 0x62, 0xb2, 0xfb, 0x0a, 0x28, 0x0c, + 0x9b, 0x77, 0xae, 0xe1, 0xb8, 0x64, 0x68, 0x06, 0x9a, 0x41, 0x8c, 0x41, 0x8c, 0x41, 0x8c, 0x41, + 0x8c, 0x01, 0x5a, 0xf2, 0x02, 0x2d, 0x1c, 0x97, 0x0c, 0xbe, 0x80, 0x2f, 0x9c, 0xd1, 0x83, 0x14, + 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0xb3, 0x0c, 0x54, 0xc3, 0x71, 0xc9, 0xb0, 0x0c, 0x2c, 0x83, + 0x14, 0x83, 0x14, 0x83, 0x14, 0x83, 0x14, 0x03, 0xb4, 0xe4, 0x04, 0x5a, 0x38, 0x2e, 0x19, 0x7c, + 0x01, 0x5f, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0xb2, 0x46, 0x35, 0x4b, + 0x7c, 0x5c, 0x72, 0xe2, 0x32, 0x41, 0x9d, 0x23, 0x94, 0xf5, 0xcb, 0x22, 0xac, 0x27, 0xa8, 0xee, + 0x7a, 0x33, 0xb8, 0xef, 0x71, 0xe7, 0xb6, 0xf7, 0x67, 0x41, 0xef, 0x0c, 0xe5, 0x2c, 0x1c, 0x9f, + 0x4c, 0x41, 0x39, 0x65, 0x0a, 0xa5, 0xac, 0xc4, 0x0c, 0xd0, 0xa4, 0xa0, 0x5c, 0x32, 0x2d, 0x2c, + 0xf7, 0x05, 0xe5, 0x14, 0x6c, 0x4c, 0xcd, 0x8d, 0xbc, 0xd0, 0xf9, 0xea, 0xbb, 0x91, 0x53, 0x69, + 0x86, 0xa1, 0x17, 0x18, 0x9c, 0xed, 0x3a, 0xa1, 0x2d, 0x8a, 0xd9, 0x60, 0x75, 0x28, 0x66, 0x33, + 0x61, 0xd4, 0x50, 0xcc, 0x06, 0xe1, 0x08, 0xe1, 0x48, 0x6b, 0xcc, 0xb0, 0xee, 0x95, 0x3b, 0xd1, + 0x88, 0x75, 0xaf, 0x85, 0x8b, 0x46, 0xac, 0x7b, 0x2d, 0x8f, 0x42, 0x44, 0x31, 0x1b, 0xe0, 0x05, + 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x96, 0x1f, 0x5e, 0x28, 0x66, 0x03, + 0xbe, 0x80, 0x2f, 0x14, 0xb3, 0x19, 0x6e, 0x82, 0xb4, 0x1d, 0xfb, 0x16, 0x0b, 0x88, 0xc9, 0xee, + 0x2b, 0x20, 0x6d, 0x27, 0xef, 0x5c, 0x43, 0x31, 0x1b, 0x68, 0x06, 0x9a, 0x41, 0x8c, 0x41, 0x8c, + 0x41, 0x8c, 0x41, 0x8c, 0x01, 0x5a, 0xf2, 0x02, 0x2d, 0x14, 0xb3, 0x01, 0x5f, 0xc0, 0x17, 0x76, + 0x50, 0x21, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x20, 0xc5, 0x2c, 0x03, 0xd5, 0x50, 0xcc, 0x06, 0x96, + 0x81, 0x65, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x90, 0x62, 0x80, 0x96, 0x9c, 0x40, 0x0b, 0xc5, + 0x6c, 0xc0, 0x17, 0xf0, 0x05, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x06, 0x29, 0x26, 0x6b, + 0x54, 0x43, 0x31, 0x9b, 0x5e, 0x31, 0x1b, 0xe3, 0xea, 0x08, 0xeb, 0x7a, 0x35, 0x6d, 0xce, 0x5b, + 0xf7, 0x7d, 0xef, 0xbb, 0xd1, 0x71, 0xf7, 0xae, 0x19, 0xa8, 0x3a, 0x51, 0x6f, 0xc6, 0x8d, 0x66, + 0xec, 0x3c, 0x84, 0xde, 0xff, 0x34, 0xbd, 0xa0, 0xf2, 0xac, 0x5f, 0x73, 0x62, 0xac, 0xa5, 0xd5, + 0xa8, 0x73, 0x13, 0x87, 0x6e, 0x10, 0x55, 0x3c, 0xff, 0xbb, 0x5e, 0x65, 0xa4, 0xa5, 0x2f, 0x3a, + 0x31, 0xdc, 0x3f, 0x4b, 0x57, 0xed, 0xa6, 0x3f, 0xd8, 0xdb, 0xb4, 0x6d, 0x50, 0xe9, 0x46, 0x83, + 0x33, 0x07, 0x7c, 0xf9, 0xe9, 0xef, 0xff, 0xab, 0x73, 0x6b, 0x33, 0x9e, 0x34, 0x40, 0x75, 0x09, + 0x7e, 0x14, 0x82, 0x16, 0x29, 0x5e, 0x94, 0x24, 0x12, 0x03, 0x3e, 0x14, 0xe1, 0x42, 0xe9, 0xae, + 0x95, 0xe7, 0x40, 0xd1, 0xde, 0x4e, 0x89, 0xbf, 0xee, 0xb2, 0xe3, 0xec, 0x3b, 0x65, 0xfc, 0x4c, + 0x1d, 0xbd, 0x4e, 0x31, 0x40, 0xca, 0x4a, 0x2d, 0xa1, 0x87, 0xa7, 0xac, 0xd4, 0xa4, 0x51, 0x43, + 0x59, 0x29, 0x24, 0x5c, 0x63, 0x76, 0x66, 0x05, 0xda, 0x14, 0x62, 0x58, 0x81, 0xb6, 0x82, 0xdf, + 0xaf, 0xbb, 0x99, 0x15, 0xe8, 0xd4, 0x31, 0xfd, 0xf5, 0x2b, 0x60, 0x05, 0xda, 0xfa, 0xd5, 0x94, + 0x95, 0x02, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x01, 0x5e, 0x80, 0x17, 0xe0, 0x05, 0x78, 0x11, + 0x83, 0x17, 0xca, 0x4a, 0x81, 0x2f, 0xe0, 0x0b, 0x65, 0xa5, 0x86, 0x9b, 0x20, 0x81, 0xce, 0xbe, + 0xc5, 0x02, 0x62, 0xb2, 0xfb, 0x0a, 0x48, 0xa0, 0xcb, 0x3b, 0xd7, 0x50, 0x56, 0x0a, 0x9a, 0x81, + 0x66, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x10, 0x63, 0x80, 0x96, 0xbc, 0x40, 0x0b, 0x65, 0xa5, + 0xc0, 0x17, 0xf0, 0x85, 0xbd, 0x8c, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0x48, 0x31, 0xcb, 0x40, + 0x35, 0x94, 0x95, 0x82, 0x65, 0x60, 0x19, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa4, 0x18, 0xa0, + 0x25, 0x27, 0xd0, 0x42, 0x59, 0x29, 0xf0, 0x05, 0x7c, 0x41, 0x8a, 0x41, 0x8a, 0x41, 0x8a, 0x41, + 0x8a, 0x41, 0x8a, 0xc9, 0x1a, 0xd5, 0x50, 0x56, 0xaa, 0x57, 0x56, 0xca, 0xa0, 0x2e, 0xc2, 0xba, + 0x5e, 0x41, 0xa9, 0xcb, 0xf6, 0x1d, 0xaf, 0xda, 0x37, 0xb4, 0x55, 0x5e, 0x62, 0x4d, 0xf0, 0xbd, + 0xea, 0xbe, 0xcf, 0x54, 0xdf, 0x63, 0xb2, 0x9e, 0x9c, 0xdf, 0x2f, 0xb3, 0x3f, 0x31, 0xa7, 0xc7, + 0x5a, 0x5c, 0xd8, 0x4f, 0x67, 0x7f, 0x70, 0x2b, 0xf3, 0xb8, 0xbd, 0x70, 0xee, 0x47, 0x71, 0x39, + 0x8e, 0x93, 0x55, 0x3c, 0x68, 0xb9, 0xda, 0xd3, 0x9a, 0xd7, 0xa2, 0xba, 0x96, 0x95, 0x0b, 0x9a, + 0xb5, 0xda, 0x9b, 0xb5, 0x24, 0xce, 0x41, 0xfd, 0xa2, 0xcb, 0xb0, 0xea, 0x85, 0x5e, 0xf5, 0xfd, + 0x73, 0xf7, 0x12, 0xa3, 0x4e, 0x51, 0x1c, 0x3e, 0x29, 0x0d, 0x9b, 0x04, 0x73, 0x5d, 0x7d, 0x6e, + 0xcf, 0x1e, 0x85, 0xd3, 0xc7, 0xd6, 0xe4, 0x7f, 0x99, 0xd2, 0xb1, 0x49, 0x3b, 0xd4, 0x42, 0x47, + 0x4e, 0x7e, 0xbe, 0xf1, 0x6f, 0x3f, 0xfa, 0x9b, 0x57, 0xcf, 0x31, 0xef, 0xfb, 0x9b, 0x7d, 0xef, + 0x09, 0xef, 0x75, 0xce, 0x7b, 0x1c, 0x7d, 0xa8, 0xc1, 0x57, 0x1f, 0xfa, 0xda, 0x85, 0xd0, 0xab, + 0xb9, 0xcf, 0x8e, 0xfb, 0xe8, 0x4d, 0xd8, 0xab, 0xdb, 0x8f, 0x36, 0x86, 0x3f, 0xf4, 0xea, 0x91, + 0x27, 0x57, 0xd0, 0x99, 0x1a, 0x60, 0xcf, 0x0a, 0x9c, 0x87, 0x03, 0xe2, 0xf6, 0x1d, 0x27, 0x3d, + 0xf1, 0x9c, 0x40, 0x37, 0x71, 0x00, 0x9b, 0x38, 0x30, 0x7d, 0x1d, 0x70, 0x76, 0xbe, 0x99, 0xe2, + 0xc0, 0x98, 0x56, 0xfb, 0xa5, 0x50, 0xfd, 0x56, 0x69, 0x4c, 0x7f, 0x98, 0xbe, 0x58, 0xdd, 0xfa, + 0xd4, 0x94, 0xaf, 0x37, 0xbb, 0x84, 0xd1, 0x5c, 0xa5, 0x23, 0x89, 0x92, 0x91, 0xe4, 0xc5, 0xa8, + 0x2a, 0x11, 0xca, 0x4a, 0x83, 0xb2, 0x92, 0x90, 0xf0, 0xc5, 0xe9, 0x59, 0xaa, 0x79, 0xc5, 0x7c, + 0x0a, 0xed, 0xc9, 0xe2, 0xf8, 0xc1, 0x43, 0x3d, 0x7c, 0x6a, 0x5b, 0x84, 0xf6, 0x14, 0x4f, 0xe0, + 0x29, 0x06, 0x15, 0x7b, 0xa6, 0xb5, 0x30, 0xcf, 0x55, 0x27, 0xaa, 0x69, 0x95, 0x58, 0x02, 0x53, + 0x91, 0xba, 0x54, 0x06, 0x8a, 0xae, 0x74, 0xa5, 0x2d, 0x51, 0x69, 0x4b, 0x51, 0x8a, 0x03, 0x49, + 0x06, 0xb8, 0x92, 0x56, 0x8b, 0x2a, 0x54, 0x7a, 0xef, 0x31, 0x61, 0xf7, 0xf5, 0x5e, 0x51, 0xf7, + 0xba, 0x84, 0x5d, 0xa0, 0x56, 0x28, 0x4d, 0x59, 0x5f, 0xd5, 0xd1, 0x53, 0x75, 0x06, 0x9b, 0xa9, + 0x5e, 0x6a, 0xac, 0x8f, 0x1a, 0xeb, 0xa1, 0x9a, 0x83, 0xd1, 0x4e, 0xfc, 0xa4, 0x5a, 0xd2, 0xac, + 0xe0, 0x05, 0xee, 0xd7, 0x9a, 0xa7, 0x5f, 0xeb, 0xaf, 0x7b, 0xbd, 0x6a, 0xe5, 0x35, 0xef, 0xc1, + 0x6d, 0xd6, 0xda, 0x3d, 0xf6, 0xe0, 0xd6, 0x22, 0x6f, 0x45, 0x4a, 0x01, 0xab, 0x4e, 0x0a, 0xa9, + 0xc5, 0x84, 0xec, 0x97, 0x08, 0x54, 0x9c, 0x34, 0xe9, 0x88, 0x4b, 0xe6, 0xe5, 0x7f, 0xbf, 0xd6, + 0xeb, 0x35, 0xcf, 0x0d, 0x0c, 0xea, 0xfe, 0x16, 0x8b, 0x2b, 0xaa, 0xdb, 0x0c, 0x45, 0x38, 0xdb, + 0xc3, 0x3f, 0xb7, 0xc8, 0x7b, 0x7b, 0x1a, 0x89, 0x6d, 0x77, 0x7d, 0xa8, 0x94, 0x42, 0x93, 0x28, + 0x70, 0x77, 0x63, 0x4f, 0xdd, 0xd9, 0x77, 0x2e, 0xb3, 0xec, 0xeb, 0x77, 0xf1, 0xf5, 0xf8, 0x7a, + 0x7c, 0x3d, 0xbe, 0x1e, 0x5f, 0x8f, 0xaf, 0x5f, 0x3a, 0x5f, 0x9f, 0xa1, 0xc5, 0x18, 0xb9, 0x75, + 0x07, 0xad, 0xae, 0x50, 0x5f, 0x60, 0xb8, 0x6e, 0x35, 0x5d, 0x6e, 0x35, 0x77, 0x7f, 0xf2, 0xad, + 0xd2, 0xb8, 0x6f, 0xff, 0x78, 0x36, 0x68, 0xf8, 0xb2, 0xd3, 0xae, 0xee, 0x1a, 0xc3, 0x0c, 0x35, + 0x32, 0xa1, 0x3a, 0xa2, 0xa6, 0x8a, 0x20, 0xb1, 0xad, 0x96, 0xc4, 0xd6, 0x21, 0x11, 0x67, 0xd6, + 0x52, 0x49, 0x42, 0x9a, 0x71, 0xa6, 0xaf, 0xa4, 0x48, 0x13, 0x8d, 0x22, 0xc9, 0x20, 0xd9, 0xad, + 0x06, 0xc6, 0x2b, 0x93, 0x87, 0x01, 0x71, 0x28, 0x92, 0xc6, 0x92, 0xb8, 0xcd, 0x24, 0xa2, 0x80, + 0x9e, 0x33, 0xeb, 0x67, 0x5f, 0x44, 0xc9, 0x1d, 0xda, 0xd0, 0x35, 0x38, 0x35, 0x9c, 0xda, 0x84, + 0xc1, 0xa4, 0xee, 0xcb, 0x92, 0x66, 0x01, 0x19, 0x2b, 0x4a, 0xb8, 0x22, 0x14, 0xa5, 0xa1, 0x0b, + 0xb4, 0xd7, 0xd4, 0xa7, 0xbe, 0x7c, 0x83, 0x10, 0xc7, 0x60, 0x80, 0xa3, 0x1a, 0xa1, 0x1a, 0xad, + 0xa7, 0x79, 0x82, 0x94, 0x62, 0x8e, 0x80, 0x59, 0x74, 0x2c, 0x3c, 0x49, 0x8c, 0x27, 0x8b, 0xc4, + 0xa4, 0x91, 0x9c, 0x3c, 0x52, 0x93, 0x48, 0x7c, 0x32, 0x89, 0x4f, 0x2a, 0xe1, 0xc9, 0xa5, 0x37, + 0xc9, 0x34, 0x27, 0x9b, 0xf1, 0xa4, 0x1b, 0x4c, 0x3e, 0x3f, 0xac, 0x34, 0xfd, 0xd8, 0xf1, 0xab, + 0xe6, 0xaf, 0xba, 0x3f, 0x11, 0x07, 0x6d, 0xbe, 0xc9, 0xc4, 0xe1, 0x9a, 0xa6, 0x93, 0x53, 0x72, + 0x92, 0xda, 0x98, 0xac, 0xd2, 0x93, 0xd6, 0xda, 0xe4, 0xb5, 0x36, 0x89, 0x2d, 0x4d, 0x66, 0xb3, + 0x49, 0x6d, 0x38, 0xb9, 0xf5, 0x55, 0x91, 0xb9, 0x63, 0x2e, 0x8a, 0x43, 0x3f, 0x78, 0x94, 0x18, + 0x71, 0x3d, 0xb7, 0xf9, 0x6e, 0x41, 0x5b, 0xb7, 0x4c, 0xce, 0xff, 0xd5, 0x5c, 0x03, 0x9e, 0xa3, + 0xa2, 0x9a, 0xda, 0x3c, 0xc3, 0x35, 0x62, 0x6c, 0x28, 0x36, 0x14, 0x1b, 0x9a, 0x82, 0x0d, 0xd5, + 0x5f, 0xe3, 0x9e, 0x6a, 0x44, 0x8b, 0x39, 0x34, 0xa2, 0xa1, 0xf7, 0x54, 0x8f, 0x3d, 0x51, 0x7e, + 0x1c, 0x34, 0x89, 0xe9, 0xc3, 0xf4, 0x61, 0xfa, 0xc0, 0x47, 0x7b, 0x96, 0x2f, 0xd5, 0x68, 0xdd, + 0x70, 0x87, 0x7e, 0xbf, 0x1d, 0xcd, 0xb5, 0xbf, 0xc1, 0x6a, 0xdb, 0xe0, 0x47, 0x99, 0xf4, 0x61, + 0xf3, 0x6e, 0x7d, 0xd1, 0xaa, 0x01, 0xa0, 0x92, 0x6e, 0x3c, 0x63, 0x34, 0x27, 0x4f, 0x3f, 0xb6, + 0x26, 0x1b, 0xee, 0x22, 0x1b, 0x22, 0x1b, 0x22, 0x1b, 0x22, 0x1b, 0xc2, 0x7d, 0x70, 0x1f, 0xdc, + 0x87, 0x6c, 0x88, 0x6c, 0x88, 0x0d, 0xc5, 0x86, 0x22, 0x1b, 0x22, 0x1b, 0x22, 0x1b, 0x62, 0xfa, + 0x30, 0x7d, 0xe0, 0xe3, 0x92, 0xe0, 0x63, 0xe4, 0x05, 0xb1, 0x63, 0x23, 0x7e, 0x7e, 0xdd, 0x30, + 0x56, 0x10, 0x2b, 0x88, 0x15, 0xc4, 0x0a, 0x66, 0xd7, 0x0a, 0x5a, 0x80, 0xc0, 0x57, 0xed, 0x62, + 0x03, 0xb1, 0x81, 0xd8, 0x40, 0x6c, 0xa0, 0x3d, 0x1b, 0xc8, 0x02, 0xb2, 0x40, 0x4d, 0x0a, 0xf3, + 0x5e, 0xcd, 0x6b, 0x69, 0x7d, 0xb9, 0xfe, 0x36, 0xaf, 0xa2, 0xff, 0xba, 0x10, 0xc6, 0x59, 0xef, + 0x9e, 0x5a, 0x25, 0x31, 0xf4, 0xdf, 0x90, 0xc2, 0xdb, 0xd1, 0xdd, 0x3c, 0x64, 0xb6, 0x69, 0x88, + 0x1d, 0x75, 0x0b, 0xf2, 0xe3, 0xec, 0xa8, 0x4b, 0x74, 0xa1, 0xe1, 0x0a, 0x95, 0xcc, 0xca, 0xd4, + 0xb2, 0x9d, 0x82, 0x46, 0x6a, 0xcc, 0x82, 0x20, 0x38, 0xaf, 0xa7, 0xa0, 0x99, 0xaf, 0xf4, 0x18, + 0xae, 0xf0, 0xa4, 0x93, 0x85, 0xf7, 0xcd, 0xab, 0x35, 0xbc, 0xd0, 0x71, 0xab, 0xd5, 0xd0, 0x8b, + 0x22, 0x73, 0xa3, 0xf3, 0xaa, 0x3d, 0x8c, 0x0f, 0xc6, 0x07, 0xe3, 0xa3, 0x3c, 0x66, 0xfc, 0x86, + 0xe1, 0x0c, 0x1a, 0xb1, 0x3f, 0x87, 0x06, 0x6d, 0x74, 0x9f, 0x69, 0xe1, 0x27, 0x26, 0x0e, 0x7a, + 0xe6, 0x7b, 0x49, 0xa0, 0x6f, 0xc6, 0x15, 0x08, 0x81, 0xb6, 0xae, 0xdc, 0x38, 0xf6, 0xc2, 0xc0, + 0xb8, 0xbb, 0xfa, 0x0d, 0x6e, 0x6c, 0x7c, 0xde, 0x71, 0x0e, 0xef, 0x7e, 0x7d, 0x2e, 0x3a, 0x87, + 0x77, 0x9d, 0x1f, 0x8b, 0xed, 0xff, 0xeb, 0xfc, 0xbc, 0xfb, 0x79, 0xc7, 0x29, 0xf5, 0x7e, 0xde, + 0xfb, 0xbc, 0xe3, 0xec, 0xdd, 0x6d, 0x7e, 0xf9, 0xb2, 0xb5, 0xf9, 0xf3, 0xed, 0x8b, 0xfa, 0x85, + 0x1b, 0xff, 0xf5, 0xf9, 0xcb, 0x97, 0xc6, 0xcf, 0x8b, 0x97, 0xd6, 0x9f, 0xe7, 0x2f, 0x77, 0x7f, + 0xdb, 0xfc, 0xcd, 0x5c, 0xf9, 0xba, 0x5b, 0xa4, 0xf2, 0x25, 0x3b, 0xea, 0xf6, 0x57, 0x68, 0xd4, + 0x1d, 0xfd, 0x6a, 0x8d, 0x0d, 0xd7, 0x79, 0x28, 0x3b, 0x1f, 0xee, 0x7e, 0xee, 0xbc, 0x29, 0xbd, + 0x6c, 0x1e, 0x6d, 0x6e, 0xbc, 0xfe, 0xdd, 0xd1, 0xe6, 0xcf, 0x9d, 0x37, 0x7b, 0x2f, 0x1b, 0x1b, + 0x13, 0xfe, 0xe5, 0xb7, 0x49, 0x6d, 0x6c, 0xfe, 0xda, 0xd8, 0xd8, 0xe8, 0x8e, 0xb7, 0x91, 0x31, + 0xf8, 0x79, 0xa7, 0x78, 0xf7, 0x5b, 0xfb, 0xc7, 0xce, 0x9f, 0xfd, 0x51, 0x9c, 0xe8, 0xc3, 0x9b, + 0x13, 0xc7, 0xee, 0x1b, 0xb1, 0x29, 0xf8, 0xaf, 0xa3, 0xbb, 0xbf, 0x1d, 0x6d, 0xfe, 0xdc, 0x7f, + 0xe9, 0xfd, 0xdc, 0xfe, 0x73, 0xf3, 0xd7, 0xc6, 0xd6, 0x5f, 0xbf, 0x7c, 0xd9, 0xda, 0xfa, 0xeb, + 0x66, 0xe7, 0xc1, 0xba, 0x9f, 0xfb, 0x6b, 0xe7, 0x5f, 0x7f, 0x3b, 0x3a, 0x1a, 0xfb, 0xd5, 0xe6, + 0xc6, 0x7f, 0x6d, 0x65, 0x61, 0x5a, 0xa5, 0x7d, 0xd2, 0xa6, 0xa6, 0x3b, 0x55, 0x3a, 0xe7, 0x6f, + 0x6a, 0x2b, 0x3a, 0xe7, 0xff, 0x4d, 0x6f, 0x4c, 0xe3, 0x5c, 0xc0, 0xa9, 0x8d, 0x29, 0x9d, 0x17, + 0xb8, 0xd8, 0x28, 0xc1, 0x60, 0x8d, 0x6f, 0x60, 0x43, 0xab, 0x44, 0x03, 0x44, 0x03, 0x44, 0x03, + 0x1a, 0x33, 0xa7, 0xa7, 0xe4, 0x9b, 0xad, 0x89, 0x1b, 0xae, 0xb6, 0xb1, 0xaa, 0x33, 0x7d, 0x55, + 0x47, 0x67, 0xb7, 0xa5, 0x9d, 0x15, 0x15, 0x0d, 0x4b, 0xad, 0x6f, 0xa1, 0x39, 0xd1, 0x62, 0x41, + 0x16, 0x97, 0x13, 0x2d, 0xd4, 0xde, 0x79, 0xcd, 0x73, 0x1f, 0x42, 0xef, 0xc1, 0xe4, 0x44, 0x8b, + 0x03, 0x8d, 0x6b, 0xaf, 0xba, 0xc6, 0x65, 0x6b, 0xab, 0x6b, 0x21, 0xb6, 0xfd, 0x6a, 0x26, 0x8c, + 0x44, 0xdf, 0xa1, 0xb4, 0x3a, 0x45, 0xdf, 0x5e, 0x8c, 0x34, 0xb3, 0x1a, 0x8b, 0xb0, 0xfe, 0x03, + 0x76, 0x63, 0x82, 0xdd, 0xf0, 0x1f, 0x28, 0x68, 0xfa, 0x6a, 0xb0, 0x50, 0xd0, 0xd4, 0x74, 0xda, + 0x10, 0xf0, 0xe8, 0x4c, 0xab, 0xc5, 0x44, 0x3b, 0xc6, 0x35, 0x09, 0xd4, 0x6b, 0xc6, 0x27, 0xf7, + 0x4f, 0x24, 0x12, 0xdb, 0x9f, 0xa4, 0xd2, 0x93, 0xd5, 0xda, 0xa4, 0xb5, 0x36, 0x79, 0x6d, 0x4c, + 0x62, 0xb3, 0xc9, 0x6c, 0x38, 0xa9, 0xe5, 0xa4, 0x0c, 0x41, 0x20, 0x97, 0x04, 0xf4, 0xa9, 0xc0, + 0xbe, 0xdd, 0x7e, 0x6d, 0x47, 0x43, 0xb1, 0xfe, 0xab, 0x5f, 0x74, 0xff, 0xde, 0xce, 0xbd, 0xcc, + 0xe3, 0xfe, 0x8d, 0xe6, 0x57, 0x0b, 0xf6, 0x76, 0xa4, 0x55, 0x4c, 0x2e, 0x26, 0x17, 0x93, 0x8b, + 0xc9, 0x15, 0x33, 0xb9, 0x9f, 0x07, 0x26, 0xf7, 0xbf, 0x2b, 0xcd, 0x30, 0xf4, 0x82, 0x78, 0x63, + 0x73, 0x7b, 0x6b, 0x6b, 0x20, 0xc3, 0xde, 0x75, 0x2f, 0x19, 0xb6, 0x43, 0xd1, 0x84, 0xdf, 0xf5, + 0x5b, 0xae, 0x7a, 0x3f, 0x0a, 0x2b, 0xb1, 0xf3, 0xe4, 0xf4, 0x47, 0x7b, 0xc1, 0x52, 0x3f, 0x41, + 0x40, 0x2e, 0xf0, 0xaa, 0x57, 0x1c, 0xef, 0x47, 0x7c, 0x14, 0x7b, 0x35, 0xef, 0xc9, 0x8b, 0xc3, + 0x67, 0xa7, 0x1e, 0x38, 0x95, 0x6f, 0x6e, 0xf0, 0xe8, 0xc9, 0x06, 0x63, 0xed, 0x32, 0x3a, 0x82, + 0xd1, 0x58, 0xda, 0x81, 0xd8, 0xdd, 0x12, 0x6d, 0x32, 0x1a, 0x11, 0x0a, 0x29, 0x4d, 0x99, 0xaa, + 0x00, 0xb4, 0x8b, 0x00, 0x84, 0x00, 0x84, 0x00, 0x44, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, + 0x82, 0x00, 0x84, 0x00, 0x84, 0xc9, 0xc5, 0xe4, 0x62, 0x72, 0x11, 0x80, 0x56, 0x48, 0x00, 0xca, + 0xbe, 0x2a, 0x40, 0xbd, 0x11, 0xfb, 0x9d, 0x6c, 0xb3, 0xc8, 0x48, 0xff, 0xa7, 0x6b, 0xef, 0x21, + 0x0b, 0x39, 0x6e, 0x7a, 0x1a, 0x8e, 0x91, 0x76, 0x63, 0x9c, 0xd3, 0xb6, 0x4b, 0x3a, 0x2c, 0xe9, + 0xb0, 0xd6, 0x94, 0x96, 0x42, 0xa5, 0xde, 0x6c, 0x4d, 0xd2, 0x48, 0x22, 0xb7, 0xad, 0xdb, 0x12, + 0xd9, 0x6d, 0xec, 0xe8, 0x59, 0xc0, 0x04, 0xcb, 0xa9, 0xc4, 0xf9, 0xb5, 0x5e, 0x8f, 0x43, 0xaf, + 0x51, 0x7b, 0x76, 0xa2, 0x4e, 0x17, 0x08, 0xc5, 0xdd, 0xaf, 0xda, 0x25, 0xf2, 0x4e, 0x63, 0xd2, + 0x12, 0x7c, 0x5b, 0x9a, 0xd4, 0xcb, 0x1a, 0x7f, 0x77, 0x9d, 0xe6, 0x7e, 0x49, 0x30, 0x02, 0x97, + 0x28, 0x20, 0x70, 0xdd, 0x5e, 0x7c, 0x97, 0x2a, 0x1f, 0x20, 0x33, 0x09, 0xd6, 0xbb, 0x5b, 0xb7, + 0xc5, 0x66, 0x95, 0xb0, 0x75, 0x1b, 0x6b, 0xf6, 0x9f, 0x6e, 0xad, 0xe9, 0x59, 0x68, 0xf7, 0x43, + 0xe8, 0x56, 0x5a, 0x91, 0xe4, 0x89, 0xff, 0xe8, 0xb7, 0x73, 0x38, 0x76, 0xc4, 0xda, 0x7f, 0x79, + 0x23, 0xf8, 0xaa, 0xdc, 0x1f, 0xb9, 0x7b, 0x55, 0xc5, 0x77, 0xa5, 0xd2, 0xfe, 0x41, 0xa9, 0xb4, + 0x73, 0xf0, 0xf6, 0x60, 0xe7, 0x70, 0x6f, 0xaf, 0xb8, 0x5f, 0xdc, 0xcb, 0xd1, 0xdb, 0x5b, 0xcb, + 0x46, 0x2b, 0x77, 0x39, 0x5c, 0xfd, 0xe8, 0xf0, 0xd2, 0xff, 0x34, 0xbd, 0x28, 0x76, 0x42, 0xaf, + 0xe2, 0xf9, 0xdf, 0xbd, 0xaa, 0x34, 0x8d, 0xbd, 0x6a, 0x1d, 0x26, 0x83, 0xc9, 0x60, 0x32, 0x98, + 0x0c, 0x26, 0x83, 0xc9, 0x60, 0x32, 0x98, 0x0c, 0x26, 0x9b, 0xc1, 0x64, 0x36, 0xd4, 0xb1, 0xa1, + 0x96, 0x61, 0x31, 0x58, 0x0c, 0x16, 0x83, 0xc5, 0x60, 0x31, 0x58, 0x0c, 0x16, 0x83, 0xc5, 0x60, + 0xb1, 0x57, 0xaf, 0xa5, 0xfa, 0xad, 0xd2, 0x70, 0xdc, 0xca, 0xbf, 0x85, 0x41, 0x6c, 0xb4, 0x59, + 0x28, 0x0c, 0x0a, 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x0c, 0x0a, 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x6c, + 0x12, 0x85, 0x55, 0xbd, 0x4a, 0xcd, 0x0f, 0x3c, 0x0b, 0xcb, 0x94, 0x93, 0x9b, 0x87, 0xca, 0xa0, + 0x32, 0xa8, 0x0c, 0x2a, 0x83, 0xca, 0xa0, 0x32, 0xa8, 0x0c, 0x2a, 0x83, 0xca, 0x26, 0x52, 0x99, + 0x1f, 0x55, 0xea, 0xdf, 0xbd, 0xd0, 0x1a, 0x96, 0x8d, 0xb5, 0x0f, 0x97, 0xc1, 0x65, 0x70, 0x19, + 0x5c, 0x06, 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, 0x4d, 0xe2, 0x32, 0x3f, 0x78, 0xa8, + 0x87, 0x4f, 0xb6, 0xa8, 0xec, 0x75, 0xeb, 0x30, 0x19, 0x4c, 0x06, 0x93, 0xc1, 0x64, 0x30, 0x19, + 0x4c, 0x06, 0x93, 0xc1, 0x64, 0x30, 0xd9, 0x24, 0x26, 0x0b, 0x2c, 0x25, 0x92, 0x05, 0x64, 0x92, + 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xcd, 0xe4, + 0xb0, 0xfa, 0xc3, 0x83, 0x17, 0xda, 0x00, 0xb1, 0xa1, 0x86, 0x21, 0x31, 0x48, 0x0c, 0x12, 0x83, + 0xc4, 0x20, 0x31, 0x48, 0x0c, 0x12, 0x83, 0xc4, 0x20, 0xb1, 0x49, 0x24, 0x16, 0x7a, 0x35, 0xcf, + 0x8d, 0xac, 0xe5, 0xf4, 0x8f, 0x35, 0x0f, 0x95, 0x41, 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0x41, + 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0x4d, 0xa6, 0x32, 0x5b, 0x05, 0x61, 0x27, 0x37, 0x0f, 0x95, + 0x41, 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0x41, 0x65, 0x50, 0x19, 0x54, 0x06, 0x95, 0xbd, 0x7a, + 0x2d, 0x7e, 0xf0, 0xdd, 0xad, 0xf9, 0x55, 0xa7, 0xde, 0xa8, 0xd4, 0xab, 0xa2, 0xa7, 0xc2, 0x8f, + 0xb4, 0x0b, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, 0x87, 0xc1, 0x61, 0x70, 0x18, 0x1c, 0x06, + 0x87, 0x4d, 0xe5, 0xb0, 0xd6, 0xcb, 0x89, 0x6c, 0x80, 0x58, 0xa7, 0x61, 0x48, 0x0c, 0x12, 0x83, + 0xc4, 0x20, 0x31, 0x48, 0x0c, 0x12, 0x83, 0xc4, 0x20, 0x31, 0x48, 0xec, 0xd5, 0x6b, 0x89, 0xeb, + 0xb1, 0x5b, 0x73, 0xaa, 0x61, 0xbd, 0xd1, 0x90, 0x5c, 0x9f, 0x1c, 0x6d, 0x16, 0x0a, 0x83, 0xc2, + 0xa0, 0x30, 0x28, 0x0c, 0x0a, 0x83, 0xc2, 0xa0, 0x30, 0x28, 0x6c, 0x39, 0x29, 0x6c, 0x2d, 0xc5, + 0x31, 0x5f, 0x28, 0x07, 0x41, 0x3d, 0x76, 0x5b, 0xaf, 0xd2, 0x68, 0x98, 0x17, 0xa2, 0xca, 0x37, + 0xef, 0xc9, 0x6d, 0xb8, 0xf1, 0xb7, 0x96, 0x47, 0xd8, 0xae, 0x37, 0xbc, 0xa0, 0xd2, 0xe6, 0xa4, + 0x8e, 0xd3, 0x74, 0xdc, 0x47, 0x2f, 0x88, 0xb7, 0x87, 0x7f, 0xae, 0x7e, 0xab, 0x34, 0xb6, 0xfd, + 0x96, 0xe3, 0x78, 0x70, 0x2b, 0x5e, 0x34, 0xf8, 0x71, 0x3b, 0x8a, 0xdd, 0xd8, 0xdb, 0xee, 0x7a, + 0x15, 0x13, 0xed, 0xad, 0x10, 0xc5, 0x61, 0xb3, 0x12, 0x07, 0x5d, 0x3f, 0x75, 0xdd, 0xba, 0x7b, + 0xb9, 0x75, 0xf3, 0xfb, 0x93, 0x6f, 0x95, 0xc6, 0xfd, 0x59, 0xef, 0x8e, 0xf7, 0xc7, 0xbd, 0x7b, + 0xad, 0xa5, 0xf3, 0xc6, 0x34, 0xde, 0x56, 0xc1, 0x0b, 0xdc, 0xaf, 0x35, 0x7d, 0xcf, 0xdd, 0xf7, + 0xd6, 0xdd, 0x76, 0x34, 0xc7, 0x8b, 0x99, 0xe9, 0x32, 0x66, 0x67, 0x09, 0x66, 0x96, 0x64, 0x65, + 0x29, 0x46, 0x16, 0x67, 0x63, 0x71, 0x26, 0x16, 0x66, 0xe1, 0x74, 0xad, 0x9c, 0x31, 0xf3, 0x0e, + 0x9f, 0xd8, 0x5b, 0xf3, 0xdc, 0xc0, 0x64, 0xc8, 0x74, 0xa7, 0x50, 0xb1, 0x98, 0x61, 0x63, 0xf3, + 0xcd, 0xab, 0x35, 0xbc, 0xd0, 0x71, 0xab, 0xd5, 0xd0, 0x8b, 0x22, 0x73, 0xa3, 0xf3, 0xaa, 0x3d, + 0x8c, 0x0f, 0xc6, 0x07, 0xe3, 0xa3, 0x3c, 0x66, 0xfc, 0x86, 0xe1, 0x0c, 0x1a, 0xb1, 0x3f, 0x87, + 0x06, 0x6d, 0x74, 0x9f, 0xc9, 0x2c, 0xb2, 0x16, 0x94, 0x20, 0xfc, 0xc6, 0xf7, 0x92, 0x40, 0xdf, + 0x8c, 0xf5, 0x91, 0x84, 0x0c, 0x71, 0xe5, 0xc6, 0xb1, 0x17, 0x06, 0x62, 0x42, 0x44, 0x61, 0x63, + 0xe3, 0xf3, 0x8e, 0x73, 0x78, 0xf7, 0xeb, 0x73, 0xd1, 0x39, 0xbc, 0xeb, 0xfc, 0x58, 0x6c, 0xff, + 0x5f, 0xe7, 0xe7, 0xdd, 0xcf, 0x3b, 0x4e, 0xa9, 0xf7, 0xf3, 0xde, 0xe7, 0x1d, 0x67, 0xef, 0x6e, + 0xf3, 0xcb, 0x97, 0xad, 0xcd, 0x9f, 0x6f, 0x5f, 0xd4, 0x2f, 0xdc, 0xf8, 0xaf, 0xcf, 0x5f, 0xbe, + 0x34, 0x7e, 0x5e, 0xbc, 0xb4, 0xfe, 0x3c, 0x7f, 0xb9, 0xfb, 0xdb, 0xe6, 0x6f, 0x85, 0x45, 0x87, + 0x56, 0x6f, 0x32, 0x34, 0xea, 0xf6, 0x57, 0x68, 0xd4, 0x1d, 0xfd, 0x6a, 0x8d, 0x0d, 0xd7, 0x79, + 0x28, 0x3b, 0x1f, 0xee, 0x7e, 0xee, 0xbc, 0x29, 0xbd, 0x6c, 0x1e, 0x6d, 0x6e, 0xbc, 0xfe, 0xdd, + 0xd1, 0xe6, 0xcf, 0x9d, 0x37, 0x7b, 0x2f, 0x1b, 0x1b, 0x13, 0xfe, 0xe5, 0xb7, 0x49, 0x6d, 0x6c, + 0xfe, 0xda, 0xd8, 0xd8, 0xe8, 0x8e, 0xb7, 0x91, 0x31, 0xf8, 0x79, 0xa7, 0x78, 0xf7, 0x5b, 0xfb, + 0xc7, 0xce, 0x9f, 0xfd, 0x51, 0x9c, 0xe8, 0xc3, 0x9b, 0x13, 0xc7, 0xee, 0x1b, 0xb1, 0x29, 0xf8, + 0xaf, 0xa3, 0xbb, 0xbf, 0x1d, 0x6d, 0xfe, 0xdc, 0x7f, 0xe9, 0xfd, 0xdc, 0xfe, 0x73, 0xf3, 0xd7, + 0xc6, 0xd6, 0x5f, 0xbf, 0x7c, 0xd9, 0xda, 0xfa, 0xeb, 0x66, 0xe7, 0xc1, 0xba, 0x9f, 0xfb, 0x6b, + 0xe7, 0x5f, 0x7f, 0x3b, 0x3a, 0x1a, 0xfb, 0xd5, 0xe6, 0xc6, 0x7f, 0x6d, 0x65, 0x61, 0x5a, 0xad, + 0xa5, 0x7b, 0x5f, 0x5d, 0x77, 0x7a, 0xee, 0x47, 0x71, 0x39, 0x8e, 0x43, 0x33, 0x97, 0xfa, 0xc9, + 0x0f, 0x4e, 0x6b, 0x5e, 0x0b, 0x29, 0x5a, 0x74, 0x1b, 0x34, 0x6b, 0x35, 0x03, 0x6f, 0xf8, 0xc9, + 0xfd, 0x21, 0xd7, 0xd8, 0x65, 0x58, 0xf5, 0x42, 0xaf, 0xfa, 0xfe, 0xb9, 0xdb, 0x54, 0x86, 0xa3, + 0x04, 0xbf, 0x6a, 0x1e, 0x19, 0xf8, 0x55, 0xa2, 0x01, 0xa2, 0x01, 0xa2, 0x01, 0x8d, 0x99, 0xd3, + 0x93, 0x2f, 0x1d, 0xbf, 0x2a, 0x11, 0x0f, 0xbc, 0x4b, 0xcb, 0xd2, 0xac, 0x59, 0xec, 0x67, 0x53, + 0x41, 0x5b, 0x5e, 0xc8, 0x56, 0x1b, 0x98, 0xc9, 0x3b, 0x27, 0xd9, 0x27, 0x13, 0x76, 0x5f, 0x6b, + 0xd2, 0x2b, 0x59, 0x63, 0x3d, 0x37, 0x6c, 0xe4, 0x76, 0x8d, 0xdc, 0xac, 0x9e, 0x5b, 0x4d, 0xda, + 0x7b, 0x9a, 0x83, 0x4e, 0x72, 0xb0, 0x29, 0x58, 0x80, 0xa4, 0xcb, 0x22, 0xc9, 0x46, 0xee, 0xfc, + 0x71, 0x38, 0xfb, 0x13, 0x73, 0xfa, 0x58, 0xb5, 0x6f, 0xcd, 0xfb, 0x74, 0xf6, 0x63, 0x4f, 0x7f, + 0x98, 0x19, 0x0f, 0x52, 0xe8, 0x58, 0x82, 0x79, 0xdf, 0xbf, 0x6f, 0xda, 0x3b, 0x1f, 0x9f, 0xd3, + 0x31, 0x3d, 0xbb, 0x3d, 0xe7, 0x63, 0x7d, 0xce, 0xd9, 0x9d, 0xf3, 0x41, 0x05, 0x9e, 0xd1, 0xe1, + 0x16, 0x55, 0x3e, 0xd1, 0xe6, 0x10, 0x6d, 0xde, 0xd0, 0xe4, 0x0a, 0xb3, 0xe1, 0x7d, 0xe2, 0x27, + 0x33, 0xa1, 0xdd, 0x75, 0xbb, 0xe1, 0x41, 0x9c, 0xbc, 0x2b, 0x47, 0xd7, 0xfe, 0x46, 0xda, 0x48, + 0xd8, 0x35, 0x27, 0xde, 0x83, 0xdb, 0xac, 0xb5, 0x7b, 0xe6, 0xc1, 0xad, 0x45, 0x49, 0xcd, 0x8d, + 0x22, 0xa4, 0x2b, 0x43, 0xb9, 0x0e, 0x84, 0x9b, 0x40, 0xb7, 0x2e, 0x64, 0x1b, 0x43, 0xb5, 0x31, + 0x44, 0x1b, 0x42, 0xb3, 0x2c, 0x6d, 0x28, 0x43, 0xb0, 0xc1, 0xfa, 0x9b, 0xe2, 0x7a, 0xdb, 0x92, + 0xb8, 0xb3, 0x04, 0xe8, 0x39, 0xc3, 0x93, 0xad, 0x29, 0x3c, 0x59, 0xd2, 0x27, 0xd2, 0x7c, 0x92, + 0xc2, 0x4c, 0xaf, 0x3a, 0x83, 0x63, 0x26, 0x3f, 0xfc, 0xf8, 0xa3, 0x4d, 0x78, 0xac, 0x76, 0x59, + 0xa4, 0xef, 0xfb, 0x53, 0x1f, 0x67, 0xa4, 0x7c, 0xd2, 0xf7, 0xfd, 0x29, 0x5f, 0x71, 0x8e, 0x83, + 0x9e, 0x6b, 0xeb, 0x92, 0xd8, 0x36, 0x15, 0x5b, 0x96, 0xd4, 0x76, 0x29, 0xdb, 0x2a, 0x65, 0xdb, + 0xa4, 0x68, 0x8b, 0xd4, 0x86, 0xe3, 0x3c, 0x87, 0x5a, 0xa8, 0xf4, 0xfa, 0x3d, 0x21, 0x8c, 0x75, + 0x3f, 0x2f, 0x4c, 0x63, 0x3b, 0xd0, 0x18, 0x34, 0x06, 0x8d, 0x41, 0x63, 0xd0, 0xd8, 0xd2, 0xd3, + 0xd8, 0xf7, 0xfd, 0xed, 0xae, 0x13, 0xb1, 0x20, 0x2d, 0x0c, 0x09, 0x17, 0x89, 0x5d, 0xda, 0xd0, + 0x35, 0xb8, 0x35, 0xdc, 0xda, 0x84, 0xc1, 0xa4, 0xee, 0xcd, 0x54, 0x95, 0xc8, 0x84, 0x43, 0x0b, + 0x67, 0xb4, 0x5a, 0xce, 0x28, 0xe9, 0x50, 0x55, 0xc5, 0x79, 0x33, 0xbc, 0x37, 0x1c, 0xbc, 0xda, + 0x83, 0xd8, 0x64, 0x30, 0x4b, 0x0c, 0x6a, 0xd3, 0xc1, 0x2d, 0x36, 0xc8, 0xc5, 0x06, 0xbb, 0xd0, + 0xa0, 0x57, 0x1b, 0xfc, 0x8a, 0x93, 0x40, 0x7b, 0x32, 0xbc, 0x0a, 0x4f, 0xd8, 0x2c, 0x42, 0x86, + 0x46, 0xaa, 0x93, 0x4a, 0x78, 0x72, 0xe9, 0x4d, 0x32, 0xcd, 0xc9, 0xa6, 0x1f, 0x0e, 0x09, 0x86, + 0x47, 0x86, 0xe1, 0x92, 0x79, 0xc7, 0xb1, 0x59, 0x04, 0xe3, 0x83, 0xf1, 0x59, 0x06, 0xe3, 0x23, + 0x94, 0x9c, 0x2e, 0x91, 0x94, 0x2e, 0x96, 0x8c, 0x4e, 0x12, 0x7a, 0xe6, 0x92, 0xcf, 0x49, 0xfe, + 0x26, 0xf9, 0x5b, 0xdf, 0x46, 0x91, 0xfc, 0x8d, 0x77, 0xc7, 0xbb, 0xeb, 0xcc, 0x1c, 0x92, 0xbf, + 0x27, 0x8d, 0x8d, 0x85, 0x24, 0x7f, 0x7f, 0xdf, 0x9f, 0x9c, 0xfe, 0x9d, 0x64, 0xcd, 0x47, 0xbf, + 0x7f, 0x14, 0xfa, 0x46, 0xc7, 0x56, 0xeb, 0xdb, 0x68, 0x4d, 0xdb, 0x8c, 0x36, 0x8a, 0x36, 0x9a, + 0x8a, 0x2d, 0xed, 0xbf, 0xf3, 0x9a, 0xe7, 0x3e, 0x84, 0xde, 0x83, 0xce, 0x2b, 0xef, 0x99, 0xcd, + 0x03, 0x8d, 0x6b, 0xaf, 0xba, 0xe6, 0x65, 0x6b, 0xab, 0x6b, 0x21, 0xb6, 0xfd, 0x6a, 0x26, 0x8c, + 0x44, 0xdf, 0xa5, 0xb4, 0x3a, 0x45, 0xdf, 0x5e, 0x8c, 0x34, 0xb3, 0x1a, 0xcb, 0x2a, 0xfe, 0x03, + 0x76, 0x63, 0x82, 0xdd, 0xf0, 0x1f, 0x96, 0x66, 0x41, 0x45, 0x73, 0x95, 0x71, 0x6c, 0xb0, 0x68, + 0xad, 0x36, 0x1a, 0x4e, 0x8f, 0xcc, 0x46, 0x3d, 0x5a, 0xd3, 0x86, 0x90, 0x47, 0x67, 0x5a, 0x2d, + 0x26, 0xde, 0xd1, 0x9d, 0x6e, 0xe3, 0x3e, 0x49, 0xf2, 0x68, 0x0f, 0xf5, 0x1d, 0x73, 0x16, 0x24, + 0x08, 0xb1, 0x49, 0x29, 0x39, 0x39, 0xc5, 0x27, 0xa9, 0xf4, 0x64, 0xb5, 0x36, 0x69, 0xad, 0x4d, + 0x5e, 0x1b, 0x93, 0xd8, 0x6c, 0x32, 0x1b, 0x4e, 0x6a, 0x39, 0x31, 0x43, 0x10, 0xc8, 0x25, 0x01, + 0x7d, 0x2a, 0xb0, 0x6f, 0xb7, 0x5f, 0xdb, 0xd1, 0x50, 0xac, 0xff, 0xea, 0x17, 0xdd, 0xbf, 0xb7, + 0x37, 0xa4, 0xe4, 0xb0, 0x86, 0x7f, 0xd4, 0xfc, 0x6a, 0xc1, 0xde, 0x8e, 0xb4, 0x8a, 0xc9, 0xc5, + 0xe4, 0x62, 0x72, 0x31, 0xb9, 0x62, 0x26, 0xf7, 0xf3, 0xc0, 0xe4, 0xfe, 0x77, 0xa5, 0x19, 0x86, + 0x5e, 0x10, 0x6f, 0x6c, 0x6e, 0x6f, 0x6d, 0x0d, 0x64, 0xd8, 0xbb, 0xee, 0x25, 0xc3, 0x76, 0x28, + 0x9a, 0xf0, 0xbb, 0x7e, 0xcb, 0x55, 0xef, 0x47, 0x61, 0x25, 0x6a, 0x7f, 0x9f, 0xfe, 0x68, 0x2f, + 0x59, 0xea, 0x2f, 0xc9, 0xcb, 0x05, 0x5e, 0xf5, 0x8a, 0xe3, 0xfd, 0x88, 0x8f, 0x62, 0xaf, 0xe6, + 0x3d, 0x79, 0x71, 0xf8, 0xec, 0xd4, 0x03, 0xa7, 0xf2, 0xad, 0x7d, 0x7e, 0x83, 0x68, 0x30, 0xd6, + 0xde, 0x2d, 0x25, 0x18, 0x8d, 0xa5, 0x1d, 0x88, 0xdd, 0xe5, 0xb2, 0xcc, 0xfb, 0xb4, 0x05, 0x92, + 0x11, 0xa9, 0x50, 0x6b, 0xb9, 0x44, 0xbf, 0x37, 0x75, 0x96, 0xbc, 0x93, 0x55, 0xf1, 0x98, 0x4f, + 0x44, 0x09, 0xaa, 0x7b, 0x58, 0x97, 0x80, 0x76, 0x91, 0x80, 0x90, 0x80, 0x90, 0x80, 0x88, 0x47, + 0x88, 0x47, 0x88, 0x47, 0x88, 0x47, 0x90, 0x80, 0x90, 0x80, 0x30, 0xb9, 0x98, 0x5c, 0x4c, 0x2e, + 0x12, 0xd0, 0x0a, 0x49, 0x40, 0x79, 0xd0, 0x05, 0x34, 0xaa, 0xe8, 0x1a, 0xc8, 0x02, 0x2b, 0x94, + 0x9f, 0x6a, 0x92, 0xa9, 0xb5, 0x3e, 0xb7, 0xfe, 0xda, 0xf7, 0xfd, 0xa1, 0x03, 0xf6, 0xfa, 0x3f, + 0x5d, 0x7b, 0x0f, 0x59, 0xc8, 0x75, 0xab, 0x37, 0x5a, 0x2f, 0x21, 0xd2, 0xcf, 0x72, 0xeb, 0x35, + 0x40, 0xd9, 0x00, 0x9b, 0x00, 0x42, 0x6a, 0xac, 0x96, 0x99, 0x21, 0xcb, 0x8d, 0xbd, 0x3d, 0xcb, + 0xa0, 0x72, 0xe6, 0x6a, 0x6f, 0x8f, 0xb1, 0xd0, 0xd9, 0x2d, 0x07, 0x38, 0xb2, 0xb3, 0x47, 0x2c, + 0x04, 0x9f, 0xd4, 0xb8, 0xe1, 0xcb, 0xd2, 0x2c, 0x42, 0xb8, 0xea, 0x91, 0xbd, 0xa9, 0x39, 0x20, + 0xb8, 0xb7, 0x64, 0x2e, 0x96, 0x35, 0xbe, 0x37, 0xaf, 0x42, 0x32, 0xe6, 0x99, 0x8b, 0x39, 0x94, + 0x36, 0xfb, 0xd5, 0x56, 0x9f, 0xea, 0xb1, 0x15, 0xdb, 0x3a, 0x68, 0x19, 0xc3, 0x8a, 0x61, 0xc5, + 0xb0, 0x62, 0x58, 0x57, 0xc3, 0xb0, 0xda, 0x01, 0x56, 0x49, 0x52, 0xc5, 0x00, 0x62, 0x00, 0x31, + 0x80, 0xf2, 0x06, 0x30, 0x8a, 0x43, 0x3f, 0x78, 0x14, 0x3d, 0xf9, 0x38, 0x87, 0xf6, 0xcf, 0x02, + 0x51, 0x8a, 0xa1, 0x24, 0x96, 0x0f, 0xcb, 0x87, 0xe5, 0xc3, 0xf2, 0x49, 0x5f, 0xb9, 0x5c, 0xeb, + 0xcd, 0xdd, 0xc5, 0x3c, 0x32, 0xd0, 0x95, 0x46, 0xec, 0x92, 0x64, 0xa0, 0xb3, 0x3c, 0xb3, 0x20, + 0xdf, 0xc0, 0xf2, 0x0c, 0xcb, 0x33, 0xa0, 0x24, 0x28, 0x89, 0x8a, 0x88, 0x8a, 0xc8, 0xf2, 0x0c, + 0x86, 0x15, 0xc3, 0x8a, 0x61, 0xc5, 0xb0, 0x8a, 0x1b, 0x56, 0x96, 0x67, 0x30, 0x80, 0x18, 0x40, + 0x44, 0xca, 0x5c, 0x8b, 0x94, 0x2c, 0xcf, 0x60, 0xf9, 0xb0, 0x7c, 0x58, 0x3e, 0x2c, 0x9f, 0xc2, + 0x77, 0x8f, 0xbc, 0x20, 0xb6, 0xa4, 0x57, 0x8e, 0x37, 0x8d, 0x25, 0xc4, 0x12, 0x62, 0x09, 0xb1, + 0x84, 0xd9, 0xb5, 0x84, 0x16, 0x40, 0xf0, 0x55, 0xbb, 0xd8, 0x40, 0x6c, 0x20, 0x36, 0x10, 0x1b, + 0x68, 0xcf, 0x06, 0x92, 0xac, 0xd3, 0x4f, 0xd6, 0xa1, 0x2c, 0x84, 0xdd, 0x0e, 0xb6, 0x5b, 0x10, + 0xe2, 0xb2, 0x7b, 0x93, 0x0c, 0xd4, 0x82, 0xd0, 0xcb, 0xa9, 0x32, 0xca, 0xa5, 0x32, 0xae, 0x03, + 0xb1, 0x4b, 0x1d, 0x08, 0xea, 0x40, 0xcc, 0xfd, 0x8e, 0x06, 0x75, 0x20, 0x9a, 0xad, 0x99, 0x1a, + 0x49, 0x54, 0x82, 0xe8, 0xb6, 0x44, 0x2d, 0x08, 0x92, 0x0d, 0x17, 0xc8, 0xb6, 0x39, 0x4b, 0x36, + 0xec, 0xf8, 0x67, 0xc7, 0xad, 0x7e, 0xf7, 0xc2, 0x28, 0xf6, 0x23, 0xcf, 0x89, 0x3a, 0x5d, 0x21, + 0x14, 0xb8, 0x4e, 0x69, 0x9f, 0x00, 0x96, 0x00, 0x96, 0x00, 0x36, 0x73, 0x01, 0x6c, 0xd7, 0x89, + 0xee, 0x97, 0x04, 0x63, 0xd8, 0x77, 0x02, 0x4d, 0x5d, 0xb7, 0x0f, 0x68, 0x30, 0x39, 0x41, 0x62, + 0xf8, 0x3f, 0x99, 0x49, 0xb0, 0xde, 0x3d, 0xe0, 0x5f, 0x6c, 0x56, 0x09, 0x5b, 0xb7, 0xb1, 0x66, + 0xff, 0xe9, 0xd6, 0x9a, 0x9e, 0x85, 0x76, 0x3f, 0x84, 0x6e, 0xa5, 0x15, 0x63, 0x9d, 0xf8, 0x8f, + 0x7e, 0xfb, 0x9c, 0x8f, 0x1d, 0xb1, 0xf6, 0x5f, 0xde, 0x08, 0xbe, 0x2a, 0xf7, 0x47, 0xee, 0x5e, + 0x55, 0xf1, 0x5d, 0xa9, 0xb4, 0x7f, 0x50, 0x2a, 0xed, 0x1c, 0xbc, 0x3d, 0xd8, 0x39, 0xdc, 0xdb, + 0x2b, 0xee, 0x17, 0xf7, 0x72, 0xf4, 0xf6, 0xd6, 0xb2, 0xd1, 0xca, 0x5d, 0x0e, 0x17, 0x12, 0xba, + 0xdc, 0xd4, 0x56, 0x57, 0xc2, 0x27, 0x27, 0xf4, 0x2a, 0x9e, 0xff, 0xdd, 0xab, 0x8a, 0x83, 0xd9, + 0xd8, 0x0d, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, + 0x20, 0xb3, 0xc9, 0x64, 0x56, 0xf5, 0x2a, 0x35, 0x3f, 0xf0, 0xec, 0x91, 0xd9, 0xd8, 0x0d, 0x20, + 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0xb3, 0xc9, + 0x64, 0xe6, 0x07, 0x0f, 0x75, 0x27, 0xf4, 0xfe, 0xa7, 0xe9, 0x45, 0xb1, 0x3d, 0x3c, 0x9b, 0x7c, + 0x17, 0x18, 0x0d, 0x46, 0x83, 0xd1, 0x60, 0x34, 0x18, 0x0d, 0x46, 0x83, 0xd1, 0x60, 0x34, 0x18, + 0x6d, 0x32, 0xa3, 0x85, 0xde, 0x57, 0x3f, 0xa8, 0xda, 0xa3, 0xb3, 0xd7, 0xed, 0xc3, 0x65, 0x70, + 0x19, 0x5c, 0x06, 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, 0xc1, 0x65, 0xd3, 0xb8, 0xac, + 0xb3, 0x9f, 0xaf, 0x19, 0x5a, 0xda, 0x08, 0x30, 0x76, 0x03, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, + 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x6c, 0x1a, 0x99, 0xd5, 0xdc, 0x67, 0xe7, + 0xa1, 0x1e, 0xfe, 0xc7, 0x16, 0x98, 0x8d, 0xb6, 0x0f, 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, + 0x97, 0xc1, 0x65, 0x70, 0x19, 0x5c, 0x06, 0x97, 0xcd, 0xe2, 0xb2, 0xd0, 0x6b, 0xd4, 0x9e, 0x6d, + 0x2e, 0x67, 0x4e, 0xb8, 0x09, 0x84, 0x06, 0xa1, 0x41, 0x68, 0x10, 0x1a, 0x84, 0x06, 0xa1, 0x41, + 0x68, 0x10, 0x1a, 0x84, 0x36, 0x95, 0xd0, 0x3c, 0x37, 0xf2, 0xac, 0xd2, 0xd9, 0xe8, 0x0d, 0x20, + 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0x33, 0xc8, 0x0c, 0x32, 0x83, 0xcc, 0x20, 0xb3, 0x69, + 0x64, 0xd6, 0xa8, 0x3d, 0xdb, 0x5a, 0xce, 0xec, 0x37, 0x0d, 0x8d, 0x41, 0x63, 0xd0, 0x18, 0x34, + 0x06, 0x8d, 0x41, 0x63, 0xd0, 0x18, 0x34, 0x06, 0x8d, 0x4d, 0xa3, 0x31, 0xcb, 0x25, 0x33, 0xa8, + 0x96, 0x01, 0x99, 0x41, 0x66, 0x90, 0x19, 0x64, 0x06, 0x99, 0x41, 0x66, 0x90, 0x19, 0x64, 0x96, + 0x90, 0xcc, 0xa2, 0x7a, 0xcd, 0xaf, 0xf8, 0x16, 0xc9, 0x6c, 0xec, 0x06, 0x90, 0x19, 0x64, 0x06, + 0x99, 0x41, 0x66, 0x90, 0x19, 0x64, 0x06, 0x99, 0x41, 0x66, 0x90, 0xd9, 0xab, 0xd7, 0xe2, 0x07, + 0xdf, 0xdd, 0x9a, 0x5f, 0x75, 0xea, 0x8d, 0x4a, 0xbd, 0xea, 0xc9, 0x01, 0xd9, 0xab, 0x76, 0xe1, + 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0xe0, 0x30, 0x38, 0x0c, 0x0e, 0x83, 0xc3, 0xe0, 0xb0, 0xa9, + 0x1c, 0xd6, 0x7a, 0x39, 0x91, 0x0d, 0x10, 0xeb, 0x34, 0x0c, 0x89, 0x41, 0x62, 0x90, 0x18, 0x24, + 0x06, 0x89, 0x41, 0x62, 0x90, 0x18, 0x24, 0x06, 0x89, 0xbd, 0x7a, 0x2d, 0x71, 0x3d, 0x76, 0x6b, + 0x4e, 0x35, 0xac, 0x37, 0x1a, 0x92, 0x2b, 0x94, 0xa3, 0xcd, 0x42, 0x61, 0x50, 0x18, 0x14, 0x06, + 0x85, 0x41, 0x61, 0x50, 0x18, 0x14, 0x06, 0x85, 0x2d, 0x27, 0x85, 0xad, 0xa5, 0x38, 0xe6, 0x0b, + 0xe5, 0x20, 0xa8, 0xc7, 0x6e, 0xeb, 0x55, 0x1a, 0x0d, 0xf3, 0x42, 0x54, 0xf9, 0xe6, 0x3d, 0xb9, + 0x0d, 0x37, 0xfe, 0xd6, 0xf2, 0x08, 0xdb, 0xf5, 0x86, 0x17, 0x74, 0x4a, 0xfd, 0x77, 0xab, 0x97, + 0xb9, 0x8f, 0x5e, 0x10, 0x6f, 0x0f, 0xff, 0xdc, 0x49, 0x3e, 0xdb, 0xf6, 0x5b, 0xae, 0xe3, 0xc1, + 0xad, 0x78, 0xd1, 0xe0, 0xc7, 0xed, 0x28, 0x76, 0x63, 0x6f, 0xbb, 0xeb, 0x57, 0x4c, 0xd4, 0xb7, + 0x42, 0x14, 0x87, 0xcd, 0x4a, 0x1c, 0x74, 0x3d, 0xd5, 0x75, 0xeb, 0xfe, 0xe5, 0xd6, 0xed, 0xef, + 0x4f, 0xda, 0xb7, 0xbf, 0x3f, 0xeb, 0xdd, 0xf3, 0xfe, 0xb8, 0x77, 0xb7, 0xb5, 0x74, 0xde, 0x9a, + 0xc6, 0x1b, 0x2b, 0x78, 0x81, 0xfb, 0xb5, 0xa6, 0xef, 0xbd, 0xfb, 0x1e, 0xbb, 0xdb, 0x8e, 0xe6, + 0x98, 0x31, 0x33, 0x5f, 0xc6, 0xfc, 0x2c, 0xc1, 0xcd, 0x92, 0xbc, 0x2c, 0xc5, 0xc9, 0xe2, 0x7c, + 0x2c, 0xce, 0xc5, 0xc2, 0x3c, 0x9c, 0xae, 0xa5, 0x33, 0xe6, 0xde, 0xfe, 0x98, 0xf9, 0x5a, 0xaf, + 0xd7, 0x3c, 0x37, 0x30, 0x19, 0x32, 0xdd, 0x29, 0x54, 0x2c, 0x66, 0xd8, 0xd8, 0x7c, 0xf3, 0x6a, + 0x0d, 0x2f, 0x74, 0xdc, 0x6a, 0x35, 0xf4, 0xa2, 0xc8, 0xdc, 0xe8, 0xbc, 0x6a, 0x0f, 0xe3, 0x83, + 0xf1, 0xc1, 0xf8, 0x28, 0x8f, 0x19, 0xbf, 0xf1, 0x7d, 0xdf, 0x70, 0x0e, 0x8d, 0x58, 0x20, 0x83, + 0x40, 0xbb, 0x70, 0xe5, 0xc6, 0xb1, 0x17, 0x06, 0xc6, 0x21, 0x76, 0x61, 0x63, 0xe3, 0xe8, 0xd7, + 0xe7, 0x1d, 0xe7, 0xd0, 0x75, 0x1e, 0xca, 0xce, 0x87, 0xbb, 0x9f, 0x3b, 0x6f, 0x4a, 0x2f, 0x9b, + 0x47, 0x9b, 0x1b, 0xaf, 0x7f, 0x77, 0xb4, 0xf9, 0x73, 0xe7, 0xcd, 0xde, 0xcb, 0xc6, 0xc6, 0x84, + 0x7f, 0xf9, 0x6d, 0x52, 0x1b, 0x9b, 0xbf, 0x36, 0x36, 0x36, 0x76, 0xf7, 0x3e, 0xef, 0x38, 0x7b, + 0x77, 0xbf, 0x76, 0x3f, 0xef, 0x38, 0xa5, 0xbb, 0xd6, 0x67, 0xee, 0x7e, 0x7d, 0xde, 0x29, 0xde, + 0xfd, 0xd6, 0xfe, 0xb1, 0xf3, 0xe7, 0xe6, 0x97, 0x2f, 0x5b, 0x9b, 0x3f, 0xdf, 0xbe, 0x24, 0xfb, + 0xf0, 0xe6, 0xe6, 0xc6, 0x7f, 0x7d, 0xfe, 0xf2, 0xa5, 0xf1, 0xf3, 0xe2, 0xa5, 0xf5, 0xe7, 0xf9, + 0xcb, 0xdd, 0xdf, 0x36, 0x7f, 0x33, 0x9d, 0x30, 0x1b, 0x1b, 0x9f, 0xff, 0x75, 0x74, 0xf7, 0xb7, + 0xa3, 0xcd, 0x9f, 0xfb, 0x2f, 0xbd, 0x9f, 0xdb, 0x7f, 0x6e, 0xfe, 0xda, 0xd8, 0xfa, 0xeb, 0x97, + 0x2f, 0x5b, 0x5b, 0x7f, 0xdd, 0xec, 0x3c, 0x50, 0xf7, 0x73, 0x7f, 0xed, 0xfc, 0xeb, 0x6f, 0x47, + 0x47, 0x63, 0xbf, 0xda, 0xdc, 0xf8, 0xaf, 0xad, 0xd6, 0x57, 0x5a, 0x4b, 0x37, 0xfa, 0xd1, 0x9d, + 0x1e, 0xe7, 0x7e, 0x14, 0x97, 0xe3, 0x38, 0x34, 0x9b, 0x22, 0x9f, 0xfc, 0xe0, 0xb4, 0xe6, 0xb5, + 0x4c, 0x44, 0xcb, 0x5b, 0x05, 0xcd, 0x5a, 0xcd, 0x60, 0x6c, 0x7f, 0x72, 0x7f, 0xc8, 0x35, 0x76, + 0x19, 0x56, 0xbd, 0xd0, 0xab, 0xbe, 0x7f, 0xee, 0x36, 0x95, 0x61, 0xaf, 0xef, 0x57, 0xcd, 0x3d, + 0xbd, 0x5f, 0xc5, 0xbb, 0xe3, 0xdd, 0xf1, 0xee, 0x1a, 0x33, 0xa7, 0x27, 0x47, 0x38, 0x7e, 0x55, + 0xc4, 0xbb, 0xa7, 0x65, 0x69, 0xd6, 0x2c, 0xf6, 0xb3, 0xa9, 0x48, 0x65, 0x43, 0x9c, 0x52, 0x1b, + 0x9a, 0xc9, 0xbb, 0x27, 0xd9, 0x27, 0x13, 0x76, 0x60, 0x6b, 0xda, 0x2b, 0xd9, 0x63, 0x3d, 0x47, + 0x6c, 0xe4, 0x78, 0x8d, 0x1c, 0xad, 0x9e, 0x63, 0x4d, 0xda, 0x7b, 0x9a, 0xc3, 0x4e, 0x76, 0xb8, + 0x29, 0x58, 0x81, 0xe4, 0x62, 0x67, 0xb2, 0xd1, 0x3b, 0x7f, 0x2c, 0xce, 0xfe, 0xc4, 0x9c, 0x7e, + 0x56, 0xed, 0x5f, 0x89, 0x7e, 0x9d, 0xfd, 0xe0, 0xd3, 0x1f, 0x67, 0xc6, 0xa3, 0x14, 0x92, 0x26, + 0x9f, 0x0e, 0xc0, 0x20, 0x51, 0x52, 0x69, 0xdf, 0x86, 0xcf, 0xf9, 0x58, 0x52, 0xe6, 0x51, 0x61, + 0x1b, 0x1d, 0x86, 0x51, 0x65, 0x15, 0x6d, 0x26, 0xd1, 0x66, 0x0f, 0x4d, 0xc6, 0x30, 0x1b, 0xe4, + 0x27, 0x7e, 0x32, 0x63, 0x5a, 0xa8, 0xf4, 0xde, 0x63, 0xc2, 0xee, 0x1b, 0xac, 0xbe, 0xb7, 0xaf, + 0x4b, 0xea, 0x11, 0x12, 0x0d, 0x2a, 0x6d, 0xa0, 0xd6, 0x01, 0x68, 0x13, 0x60, 0xd6, 0x05, 0x64, + 0x63, 0x20, 0x36, 0x06, 0x60, 0x43, 0xe0, 0x95, 0xe5, 0x84, 0xa4, 0x83, 0xb4, 0x7f, 0x41, 0x67, + 0x01, 0xc9, 0x19, 0xc1, 0x55, 0xe5, 0x77, 0x30, 0xba, 0x1a, 0xe5, 0x18, 0xb0, 0x6f, 0xe1, 0xc4, + 0x7b, 0x70, 0x9b, 0xb5, 0x76, 0x5f, 0x3e, 0xb8, 0xb5, 0x48, 0x75, 0x69, 0x4b, 0x33, 0xee, 0xd4, + 0x8e, 0x37, 0x4d, 0xe2, 0x4c, 0x89, 0xf8, 0xd2, 0x34, 0xae, 0x14, 0x8b, 0x27, 0xc5, 0xe2, 0x48, + 0xa1, 0xf8, 0xd1, 0x6e, 0x1c, 0xa3, 0x1d, 0x27, 0x0a, 0x2c, 0x3d, 0x69, 0x2e, 0x39, 0x29, 0x44, + 0x2e, 0x6f, 0x94, 0xcd, 0x47, 0xe8, 0x3d, 0xd5, 0x63, 0x11, 0xdb, 0x31, 0x68, 0x09, 0xc3, 0x81, + 0xe1, 0xc0, 0x70, 0xe4, 0xca, 0x70, 0xe4, 0x3b, 0x68, 0xef, 0x46, 0x73, 0xdb, 0x5d, 0x0e, 0x97, + 0x8a, 0xac, 0x13, 0x04, 0x5c, 0x1d, 0x21, 0x4a, 0x39, 0x60, 0xe8, 0x5c, 0x66, 0x39, 0x5e, 0xd8, + 0x25, 0x5e, 0x20, 0x5e, 0x20, 0x5e, 0xc0, 0xed, 0xe3, 0xf6, 0x71, 0xfb, 0xc4, 0x0b, 0x18, 0x0e, + 0x0c, 0x07, 0x86, 0x83, 0x78, 0x61, 0x28, 0x5e, 0x50, 0x58, 0x46, 0x5e, 0x9a, 0x85, 0xb8, 0xe4, + 0xe5, 0x54, 0xe6, 0xae, 0x65, 0x5e, 0x76, 0x9b, 0xb2, 0xb0, 0xa0, 0x97, 0x2c, 0xae, 0x52, 0x8a, + 0xa7, 0x94, 0x17, 0xf3, 0x76, 0x59, 0xcc, 0xb3, 0x62, 0x87, 0x53, 0x5a, 0xcc, 0xeb, 0x63, 0x46, + 0x7f, 0x0a, 0xa8, 0xc7, 0xe9, 0x13, 0xda, 0x48, 0x1a, 0x9e, 0xe9, 0x41, 0x8a, 0x22, 0x9c, 0xb0, + 0x38, 0xb8, 0x1a, 0xc1, 0xbe, 0x32, 0x4c, 0x18, 0x40, 0x84, 0x22, 0x3c, 0x2c, 0x8d, 0x63, 0x4c, + 0x00, 0x03, 0x33, 0x7c, 0xd9, 0x9a, 0xc2, 0xb3, 0x25, 0x7d, 0x26, 0xed, 0x67, 0x29, 0xcc, 0xf4, + 0xac, 0x33, 0x9d, 0xfa, 0xe4, 0x0e, 0x18, 0x7f, 0xbc, 0xd1, 0xdf, 0xbc, 0x7a, 0xd0, 0x79, 0x0f, + 0xa8, 0xfe, 0x60, 0x13, 0x9e, 0x68, 0xea, 0x93, 0x8c, 0x3e, 0xc2, 0xe0, 0x8b, 0x0e, 0x7d, 0xc9, + 0x42, 0x58, 0x6f, 0xc6, 0x7e, 0xf0, 0xe8, 0x34, 0xea, 0x35, 0xbf, 0xf2, 0x3c, 0xf6, 0x25, 0xfb, + 0xd3, 0xe7, 0xd5, 0xe7, 0x5e, 0x3d, 0xe6, 0x64, 0xa2, 0x98, 0x6a, 0x94, 0x67, 0x19, 0xdf, 0x11, + 0x23, 0xdb, 0xa8, 0xd7, 0x26, 0x3d, 0xf0, 0x1c, 0x5b, 0x9a, 0xd8, 0x66, 0x26, 0xb6, 0x8d, 0x63, + 0x36, 0xb0, 0xf5, 0xc5, 0x14, 0x87, 0xc2, 0x34, 0x7f, 0x5d, 0xa8, 0x7a, 0x0f, 0x7e, 0xe0, 0x55, + 0x9d, 0xc8, 0x8b, 0xa7, 0x27, 0x6e, 0x0d, 0xce, 0xc9, 0x18, 0xfe, 0xf4, 0x94, 0x6f, 0x3b, 0x1b, + 0xf0, 0xe6, 0xfa, 0xca, 0x24, 0xbe, 0x31, 0xc1, 0x6b, 0x52, 0x75, 0x7d, 0xca, 0xae, 0x4e, 0xd9, + 0xb5, 0x25, 0x7b, 0x8d, 0x7a, 0xa6, 0x6c, 0x1e, 0x8e, 0x15, 0x02, 0xcf, 0x7f, 0xfc, 0xf6, 0xb5, + 0x1e, 0xce, 0x7e, 0xcf, 0x63, 0xfd, 0x3b, 0x7a, 0x59, 0x4e, 0xd2, 0xf4, 0x66, 0x0f, 0x88, 0x1c, + 0x83, 0xfd, 0xcc, 0x01, 0x93, 0x32, 0xd7, 0x0f, 0x8f, 0x0c, 0x75, 0xa2, 0x1f, 0xb9, 0x7a, 0x49, + 0x12, 0xf6, 0x92, 0x0d, 0xbb, 0x25, 0x44, 0xf2, 0x44, 0xc3, 0xd2, 0x0e, 0x91, 0x2b, 0x2f, 0xbf, + 0x29, 0xe6, 0x96, 0x8e, 0xbd, 0x68, 0xa5, 0x1c, 0x53, 0xcd, 0xa1, 0x9b, 0x1d, 0xad, 0x5b, 0x6d, + 0x48, 0xaf, 0x90, 0xd4, 0xad, 0x34, 0xe4, 0xd3, 0x51, 0xba, 0x55, 0xa7, 0x42, 0xff, 0x42, 0xb1, + 0xb2, 0x06, 0xd4, 0x33, 0x10, 0x98, 0x3c, 0x52, 0x93, 0x48, 0x7c, 0x32, 0x89, 0x4f, 0x2a, 0xd9, + 0xc9, 0xa5, 0x37, 0xc9, 0x34, 0x27, 0x9b, 0xbe, 0x22, 0x34, 0x75, 0xc4, 0xf8, 0x0d, 0xc9, 0x5a, + 0x06, 0x87, 0x06, 0x6d, 0x74, 0x9f, 0xc9, 0xac, 0x90, 0x81, 0x60, 0x51, 0x45, 0xbf, 0xf1, 0xbd, + 0x24, 0xd0, 0x37, 0x63, 0x7d, 0x24, 0x51, 0x58, 0x51, 0xaa, 0xee, 0x43, 0xbf, 0xc1, 0x7f, 0x75, + 0x0a, 0x3a, 0xdc, 0xfd, 0xfa, 0x5c, 0x74, 0x0e, 0xbb, 0x45, 0x17, 0x8a, 0xed, 0xff, 0xeb, 0xfc, + 0x3c, 0x5c, 0x8c, 0xa1, 0x5b, 0xa0, 0xa1, 0x5f, 0xb0, 0x41, 0xf9, 0xc2, 0xbf, 0x14, 0x16, 0x5d, + 0x1b, 0xee, 0x4d, 0x86, 0x06, 0xd9, 0xfe, 0xaa, 0x0d, 0xb2, 0x5e, 0x7d, 0x90, 0x62, 0xa7, 0x9e, + 0xc8, 0xc1, 0xcb, 0xeb, 0x5f, 0xfe, 0x9a, 0xf4, 0xb1, 0xe2, 0x9b, 0x83, 0x97, 0xa3, 0x29, 0xff, + 0xb2, 0xff, 0x72, 0x94, 0xb0, 0x8d, 0xbd, 0x97, 0x8d, 0xb1, 0x8f, 0xb6, 0x7e, 0xbf, 0x3b, 0xed, + 0x82, 0xd2, 0x94, 0x0b, 0xde, 0x4e, 0xbb, 0xe0, 0xed, 0x94, 0x0b, 0xa6, 0x7e, 0xa5, 0xdd, 0x29, + 0x17, 0xec, 0xbd, 0xfc, 0x1a, 0xfb, 0xfc, 0xc6, 0xe4, 0x8f, 0xee, 0xbf, 0x6c, 0xfe, 0x9a, 0xf6, + 0x6f, 0x07, 0x2f, 0xbf, 0x8e, 0x36, 0x33, 0x30, 0xe5, 0x28, 0x84, 0xa2, 0xdd, 0xd8, 0x8a, 0x16, + 0x42, 0xe9, 0x6a, 0xfb, 0x86, 0xd1, 0x41, 0xbb, 0x15, 0x42, 0x03, 0x42, 0x03, 0x42, 0x03, 0xc5, + 0x11, 0x13, 0xc5, 0xa1, 0x1f, 0x3c, 0x52, 0x04, 0xa5, 0x3f, 0x28, 0xec, 0x15, 0x41, 0x19, 0x59, + 0x67, 0xdc, 0x7e, 0xf5, 0xd7, 0xe1, 0xc5, 0xaf, 0xed, 0x91, 0x95, 0x91, 0x91, 0xbf, 0x29, 0xed, + 0x7f, 0x51, 0xef, 0x31, 0x95, 0x6c, 0x61, 0x2d, 0xcb, 0x6d, 0x62, 0xb1, 0x73, 0x9b, 0xd5, 0x8b, + 0xd2, 0x99, 0x1f, 0xa5, 0xd3, 0x3c, 0xa7, 0xb7, 0xe6, 0xb9, 0x0f, 0xa1, 0xf7, 0x60, 0x92, 0xd3, + 0x7b, 0xa0, 0x71, 0xed, 0x55, 0xd7, 0xe4, 0x6c, 0x6d, 0x75, 0x6d, 0xc4, 0x76, 0x7b, 0x8a, 0x65, + 0xc0, 0x50, 0xa8, 0x6d, 0xa0, 0x9b, 0xe0, 0xa1, 0x92, 0x6f, 0xa4, 0x1b, 0xeb, 0x49, 0x5d, 0x53, + 0xb1, 0x8b, 0xa9, 0xc0, 0x54, 0xcc, 0xf9, 0x8a, 0x2c, 0x8a, 0x10, 0xf9, 0x10, 0xf9, 0xb0, 0x28, + 0xc2, 0xa2, 0xc8, 0x12, 0xe8, 0xd5, 0x2c, 0x8a, 0xa4, 0x3f, 0xc8, 0x58, 0x14, 0x61, 0x51, 0x84, + 0x45, 0x11, 0xe9, 0xfb, 0xb2, 0x28, 0x32, 0xb9, 0x31, 0x16, 0x45, 0x08, 0x0d, 0x08, 0x0d, 0x08, + 0x0d, 0x12, 0x49, 0x4e, 0x2c, 0x8a, 0x8c, 0x0c, 0x8a, 0x8c, 0x2f, 0x8a, 0xe4, 0xaf, 0x56, 0xbc, + 0x82, 0x6d, 0xa6, 0x5a, 0xbc, 0xc0, 0x50, 0xb4, 0x3d, 0x04, 0x0d, 0xea, 0xc7, 0x77, 0xee, 0x77, + 0xd5, 0xbe, 0xdd, 0xfd, 0x49, 0xe7, 0x76, 0x37, 0x5e, 0x1c, 0xdd, 0x5f, 0x74, 0xdb, 0xbf, 0xf1, + 0xe2, 0xa5, 0x2b, 0x60, 0xa1, 0xd9, 0xe7, 0x36, 0xea, 0x50, 0x74, 0x1c, 0xb1, 0xe2, 0xde, 0xb5, + 0xe1, 0x8b, 0xd8, 0xb9, 0xc6, 0xce, 0xb5, 0xf1, 0xc1, 0xa4, 0xbe, 0x6f, 0x6d, 0xe8, 0x5a, 0x76, + 0xad, 0xa5, 0x49, 0xd5, 0xec, 0x5a, 0x63, 0xd7, 0x9a, 0xdd, 0x40, 0x92, 0x05, 0xda, 0x45, 0x84, + 0x2d, 0xda, 0x0b, 0xb4, 0x4f, 0xf5, 0xaa, 0x80, 0xfe, 0xd2, 0x6e, 0x05, 0xfd, 0x05, 0xfd, 0x05, + 0xfd, 0x45, 0x71, 0xc4, 0x78, 0x41, 0xf3, 0xc9, 0x0b, 0x3b, 0x91, 0x86, 0x80, 0x08, 0x53, 0x32, + 0x68, 0xe3, 0x34, 0x68, 0x3e, 0xb5, 0x1e, 0xea, 0x05, 0xb9, 0x18, 0x73, 0x85, 0xb9, 0xc2, 0x5c, + 0x21, 0x17, 0xe7, 0x43, 0x2e, 0x1e, 0x52, 0x68, 0x86, 0x7e, 0x26, 0x7f, 0x9e, 0xfc, 0x79, 0x62, + 0x2e, 0x8b, 0x73, 0x9f, 0xfc, 0x79, 0x71, 0x43, 0xd1, 0x19, 0x7c, 0x5e, 0xa4, 0x6f, 0x2c, 0xfa, + 0x2d, 0x20, 0xd2, 0x60, 0x30, 0x96, 0x45, 0xa4, 0x69, 0x98, 0x31, 0xff, 0xab, 0xc9, 0x61, 0x18, + 0xf9, 0x14, 0x89, 0x7c, 0x88, 0x7c, 0xf2, 0x12, 0xf9, 0xe8, 0x4e, 0xb9, 0x7e, 0x03, 0x9a, 0x4b, + 0x06, 0x53, 0x07, 0x9e, 0xd6, 0x12, 0x82, 0xf0, 0x54, 0x14, 0x9b, 0x92, 0x92, 0x53, 0xd3, 0xc2, + 0x14, 0x95, 0x9e, 0xaa, 0xd6, 0xa6, 0xac, 0xb5, 0xa9, 0x6b, 0x67, 0x0a, 0x9b, 0x4d, 0x65, 0xc3, + 0x29, 0x2d, 0x36, 0xb5, 0xfb, 0x0d, 0xf9, 0x0d, 0xa7, 0x21, 0x37, 0x7e, 0xd7, 0x5f, 0x6d, 0xbc, + 0x91, 0x1d, 0x20, 0x66, 0xea, 0xa3, 0x35, 0x03, 0x60, 0xc3, 0x10, 0x58, 0x34, 0x08, 0xb6, 0x0c, + 0x83, 0x75, 0x03, 0x61, 0xdd, 0x50, 0xd8, 0x35, 0x18, 0x32, 0x86, 0x43, 0xc8, 0x80, 0xc8, 0xa9, + 0xa3, 0xa9, 0x4d, 0xff, 0x75, 0xa1, 0x6d, 0x78, 0xd3, 0xba, 0xe0, 0xb3, 0xe8, 0x18, 0x92, 0x9d, + 0x53, 0xeb, 0x63, 0xdb, 0xf6, 0xac, 0xcc, 0xac, 0x75, 0xe1, 0x0d, 0x56, 0x93, 0xc4, 0x17, 0xd1, + 0x0d, 0x57, 0x63, 0x37, 0x48, 0x75, 0x97, 0xdf, 0x76, 0xf7, 0x66, 0x9b, 0xbf, 0x36, 0x3e, 0x17, + 0x9d, 0xdd, 0xbb, 0xde, 0x5f, 0xde, 0x7e, 0xde, 0x71, 0x76, 0xef, 0x44, 0xb6, 0x24, 0xbd, 0xfe, + 0xef, 0x4e, 0xb4, 0xc5, 0x97, 0x37, 0x39, 0x1a, 0xf3, 0xfb, 0x8c, 0xf9, 0x99, 0x63, 0x9e, 0x4d, + 0x87, 0xe9, 0x6f, 0x3a, 0xdc, 0xde, 0x28, 0xb6, 0x0c, 0xc3, 0xbb, 0x8e, 0xad, 0x28, 0xde, 0x8d, + 0x99, 0x90, 0x8e, 0x49, 0xc8, 0xbe, 0x21, 0x58, 0xcb, 0xd6, 0xf7, 0x32, 0xff, 0x3e, 0x02, 0xa6, + 0xad, 0xf0, 0xe4, 0x46, 0xff, 0xae, 0x79, 0xc1, 0x63, 0xfc, 0xcd, 0x09, 0xdd, 0xe0, 0xd1, 0x93, + 0x0f, 0x91, 0xc6, 0xee, 0x40, 0xa4, 0x44, 0xa4, 0x44, 0xa4, 0xb4, 0x62, 0x91, 0x92, 0x71, 0x5e, + 0x49, 0x1a, 0x3c, 0x63, 0x8d, 0x63, 0x0a, 0xff, 0xea, 0x50, 0xf4, 0xdf, 0xbe, 0x7c, 0xd9, 0xfa, + 0xf2, 0x65, 0xab, 0xf3, 0xf3, 0xe6, 0x2f, 0xef, 0x87, 0x5b, 0x89, 0x05, 0x1d, 0x67, 0x66, 0x1c, + 0xd3, 0x42, 0x75, 0x43, 0xc3, 0x94, 0x9d, 0xb1, 0xf6, 0x6c, 0xa6, 0xf0, 0xf4, 0x56, 0xb3, 0xbb, + 0x3f, 0x68, 0xa5, 0xf4, 0xc8, 0xf5, 0xbe, 0x41, 0xcf, 0x0b, 0x8a, 0xac, 0xe2, 0xea, 0x8a, 0x10, + 0x2a, 0xb0, 0x9a, 0x92, 0x31, 0x04, 0x60, 0x35, 0x65, 0x11, 0xae, 0x5d, 0x20, 0xb9, 0x69, 0xaa, + 0x2f, 0x3f, 0x90, 0x29, 0x78, 0xf4, 0x2a, 0xf9, 0x69, 0x60, 0x47, 0x72, 0x68, 0x57, 0xc5, 0x03, + 0x34, 0x5b, 0x81, 0x19, 0x56, 0x16, 0x2b, 0x8b, 0x95, 0x5d, 0x5d, 0x2b, 0x3b, 0x66, 0x4e, 0x72, + 0x68, 0x6c, 0xf5, 0xca, 0x3b, 0xcf, 0x08, 0x7a, 0xd5, 0xcb, 0x3d, 0x4f, 0x7d, 0x6b, 0x52, 0x66, + 0x75, 0x17, 0xb3, 0x8a, 0x59, 0xcd, 0x99, 0x59, 0x25, 0x15, 0xc8, 0xbc, 0x39, 0x04, 0x6e, 0x04, + 0xee, 0x14, 0x0d, 0x86, 0x9c, 0x9a, 0xb8, 0x4e, 0x2a, 0x10, 0xa9, 0x40, 0xa4, 0x45, 0x4c, 0xba, + 0x01, 0xa9, 0x40, 0x0b, 0x30, 0x22, 0xe9, 0x8c, 0x79, 0x52, 0x81, 0x66, 0x8f, 0x79, 0x52, 0x81, + 0x48, 0x05, 0x5a, 0x2c, 0x93, 0xac, 0x93, 0x0a, 0xa4, 0x68, 0xd6, 0x48, 0x05, 0x22, 0x52, 0x22, + 0x52, 0x5a, 0xf5, 0x48, 0x89, 0x54, 0x20, 0x52, 0x81, 0x52, 0xd2, 0x0d, 0xf3, 0x9c, 0x0a, 0xa4, + 0x51, 0x08, 0x5e, 0xae, 0xf3, 0xd3, 0xdd, 0xc4, 0xdd, 0x2d, 0x24, 0xdf, 0x97, 0x50, 0xd6, 0x85, + 0x40, 0x81, 0x73, 0x60, 0x6c, 0xbe, 0x35, 0xa1, 0xc9, 0x95, 0xe6, 0xa4, 0x2a, 0x18, 0xad, 0x0d, + 0x26, 0x2b, 0x75, 0xdf, 0x81, 0xbd, 0x1b, 0x2f, 0xee, 0xfe, 0x54, 0xa0, 0x0e, 0x5a, 0x4a, 0x2f, + 0x99, 0x03, 0x82, 0xf5, 0xc2, 0x1c, 0x0e, 0x08, 0xa6, 0xb4, 0xd1, 0xbc, 0xaf, 0x48, 0xfd, 0x69, + 0xca, 0x1a, 0xd9, 0x8d, 0xe6, 0x29, 0x6b, 0x24, 0x19, 0x7d, 0x53, 0x7f, 0x9a, 0xfa, 0xd3, 0x98, + 0x2b, 0xcc, 0x55, 0xde, 0xcc, 0x15, 0xf5, 0xa7, 0xf3, 0x13, 0x77, 0x71, 0x54, 0xa1, 0xac, 0x56, + 0xc4, 0x51, 0x85, 0x2a, 0xc3, 0xcf, 0xc6, 0x31, 0x85, 0x7d, 0xed, 0x66, 0x85, 0x0f, 0x29, 0x1c, + 0x3e, 0x0e, 0xd0, 0xc2, 0x11, 0x85, 0xb1, 0xfb, 0xa8, 0x78, 0x3e, 0x61, 0xff, 0x0a, 0x0e, 0x27, + 0xe4, 0x70, 0xc2, 0x57, 0xc3, 0x48, 0xfd, 0x64, 0xc2, 0xde, 0x85, 0x1c, 0x4b, 0x98, 0x26, 0x3d, + 0x73, 0x2c, 0x21, 0xc7, 0x12, 0x22, 0x0b, 0x23, 0x0b, 0xa3, 0xb3, 0xa0, 0xb3, 0xa0, 0xb3, 0xa0, + 0xb3, 0xa4, 0xa4, 0xe6, 0xb6, 0x60, 0xef, 0xbb, 0x5b, 0x6b, 0x0a, 0x98, 0x9a, 0x41, 0x53, 0xd8, + 0x1b, 0xec, 0x0d, 0xf6, 0x46, 0x63, 0xfa, 0xc4, 0xad, 0xd6, 0x04, 0x2c, 0x8e, 0xc1, 0x6e, 0x38, + 0x99, 0xdd, 0x6f, 0x82, 0x3b, 0xdf, 0x9b, 0x7e, 0x10, 0xbf, 0xdd, 0x15, 0xac, 0xee, 0x20, 0x51, + 0xdc, 0xe1, 0xba, 0x9b, 0xfe, 0x2f, 0x93, 0xf9, 0x2a, 0x98, 0x42, 0xfc, 0xc9, 0x0f, 0x2c, 0xa4, + 0xa5, 0x8b, 0xee, 0x1e, 0xe8, 0x37, 0xfb, 0xcf, 0xae, 0xdf, 0x91, 0x6e, 0xf7, 0x43, 0xe8, 0x56, + 0x62, 0xbf, 0x1e, 0x9c, 0xf8, 0x8f, 0x7e, 0x5b, 0x46, 0xdb, 0x91, 0xcb, 0x40, 0x17, 0xcc, 0x9f, + 0xfe, 0xe4, 0xfe, 0xc8, 0xdd, 0xab, 0x2a, 0xed, 0x1e, 0x96, 0x0e, 0xf7, 0x0f, 0x76, 0x0f, 0xf7, + 0x72, 0xf4, 0xce, 0x32, 0x92, 0xe8, 0x7d, 0xb7, 0xc8, 0x44, 0x6f, 0x41, 0x83, 0xfc, 0xcd, 0xfb, + 0xe1, 0x88, 0xed, 0x50, 0x90, 0xdc, 0x99, 0x20, 0xbe, 0x23, 0xa1, 0x30, 0xb2, 0x93, 0xf0, 0xf5, + 0x06, 0xc2, 0xdd, 0x97, 0xcd, 0xbf, 0x6e, 0xfe, 0x56, 0x58, 0xf4, 0xb8, 0x58, 0x4b, 0xf7, 0xbe, + 0x2f, 0x24, 0x9a, 0x4f, 0x6c, 0x4c, 0x26, 0xd1, 0x9c, 0xb5, 0xf5, 0xf1, 0xe5, 0xb6, 0xde, 0xea, + 0x56, 0xef, 0x07, 0x4e, 0x75, 0xe6, 0x54, 0xe7, 0xb4, 0x63, 0x5f, 0x4e, 0x75, 0x56, 0x7a, 0xe3, + 0x9c, 0xea, 0xfc, 0xda, 0x10, 0xb2, 0xe9, 0x01, 0x53, 0xb1, 0x84, 0xa6, 0x82, 0xd5, 0x2d, 0xd4, + 0x66, 0x3b, 0xd3, 0x48, 0x7c, 0x3a, 0xc9, 0x4e, 0x2b, 0xb3, 0xf0, 0x8b, 0xd5, 0x2d, 0x56, 0xb7, + 0xb0, 0x37, 0xd8, 0x9b, 0xd5, 0xb1, 0x37, 0xac, 0x6e, 0x4d, 0xee, 0x17, 0x56, 0xb7, 0x14, 0xe5, + 0x3f, 0x56, 0xb7, 0x58, 0xdd, 0x62, 0x75, 0xcb, 0xd4, 0x21, 0xc8, 0xb7, 0xc2, 0xea, 0xd6, 0x4c, + 0x48, 0x66, 0x75, 0x2b, 0xe5, 0x71, 0xc9, 0xea, 0x16, 0xab, 0x5b, 0xf3, 0xc0, 0x3c, 0x93, 0xab, + 0x5b, 0xec, 0x19, 0x95, 0x9d, 0x18, 0xec, 0x19, 0x4d, 0x36, 0xf0, 0x6c, 0xec, 0x16, 0xbd, 0x75, + 0x1f, 0x57, 0x7b, 0xab, 0x68, 0x7f, 0x67, 0xa6, 0xee, 0x3e, 0xd1, 0x35, 0x85, 0x47, 0x4d, 0xfa, + 0x88, 0x22, 0x8f, 0x36, 0x63, 0xb8, 0x24, 0x1d, 0x1e, 0x93, 0x3b, 0x65, 0xfc, 0x91, 0x27, 0x3c, + 0x6e, 0xa1, 0xf3, 0x8d, 0x9c, 0xf6, 0x37, 0xf2, 0x5b, 0x4f, 0x3c, 0x7d, 0xbb, 0x6c, 0x1f, 0xed, + 0x26, 0x5c, 0x33, 0xa5, 0x23, 0x67, 0x2f, 0x9d, 0xcd, 0xd5, 0xe2, 0x92, 0x68, 0x6d, 0x0a, 0x5a, + 0x5a, 0x52, 0xad, 0x4c, 0x59, 0x0b, 0x53, 0xd6, 0xba, 0xd4, 0xb4, 0x2c, 0xb5, 0xc1, 0x3b, 0x6f, + 0x29, 0x69, 0xfc, 0xf5, 0x25, 0xdf, 0x20, 0x3d, 0x7e, 0x29, 0x3b, 0xa5, 0xd9, 0x29, 0xdd, 0xfb, + 0xa0, 0xe2, 0xe6, 0x53, 0xbd, 0x4d, 0xa7, 0xec, 0x93, 0x36, 0x1b, 0x7a, 0xc6, 0x43, 0xd0, 0x6c, + 0x28, 0xda, 0x01, 0x68, 0xe5, 0x7d, 0xd2, 0x24, 0x9c, 0xd9, 0x19, 0xce, 0xa6, 0xc3, 0x5a, 0x6c, + 0x78, 0x8b, 0x0d, 0x73, 0x99, 0xe1, 0x9e, 0x4e, 0x20, 0x6e, 0x9e, 0x70, 0xa6, 0xad, 0xd8, 0x69, + 0x2e, 0x63, 0x2f, 0x2a, 0xe2, 0x4e, 0x3b, 0x62, 0x1c, 0x47, 0xe6, 0xf1, 0x5f, 0x29, 0xe5, 0xe3, + 0x26, 0x88, 0xf2, 0x12, 0xf0, 0x8e, 0x92, 0x19, 0xd4, 0x31, 0x7f, 0x8a, 0x66, 0x0f, 0x6f, 0xbd, + 0x0a, 0xde, 0x5a, 0xd9, 0x4c, 0x19, 0xe4, 0xc3, 0xea, 0xe4, 0xc1, 0x1a, 0xe5, 0xbf, 0xca, 0x4c, + 0x4c, 0xb5, 0x3c, 0x57, 0xad, 0xfc, 0x56, 0x6d, 0x90, 0xde, 0x65, 0x6a, 0x02, 0xd2, 0x80, 0x34, + 0x20, 0x0d, 0x48, 0x03, 0xd2, 0x99, 0x04, 0x69, 0x85, 0xa5, 0x3f, 0x41, 0x77, 0xdd, 0x5b, 0x19, + 0xd3, 0xf1, 0xd9, 0x9d, 0x6b, 0x51, 0xc0, 0x70, 0xdc, 0x69, 0x39, 0xee, 0xfe, 0xb0, 0x33, 0xdc, + 0x4d, 0xd5, 0x6e, 0x82, 0x7a, 0x81, 0xb8, 0xf0, 0x65, 0xd9, 0x51, 0xd5, 0xc9, 0x30, 0x8c, 0xcc, + 0x77, 0x3a, 0xf4, 0x1a, 0x32, 0xdb, 0xe7, 0x50, 0x64, 0x9f, 0xc3, 0x3a, 0xfb, 0x1c, 0x72, 0xb2, + 0xcf, 0x41, 0x77, 0xd2, 0xf5, 0x1b, 0xd0, 0xac, 0x5f, 0x3b, 0x75, 0xe0, 0x69, 0xd5, 0xb3, 0x15, + 0x9e, 0x8a, 0x62, 0x53, 0x52, 0x72, 0x6a, 0x5a, 0x98, 0xa2, 0xd2, 0x53, 0xd5, 0xda, 0x94, 0xb5, + 0x36, 0x75, 0xed, 0x4c, 0x61, 0xb3, 0xa9, 0x6c, 0x38, 0xa5, 0xc5, 0xa6, 0x76, 0xbf, 0xa1, 0x6e, + 0xb8, 0x16, 0x7a, 0x51, 0xb3, 0x16, 0xcb, 0x9f, 0xfc, 0x3e, 0xda, 0x3c, 0xc7, 0xbe, 0x67, 0xc8, + 0x30, 0xd8, 0x32, 0x10, 0xd6, 0x0d, 0x85, 0x75, 0x83, 0x61, 0xd7, 0x70, 0xc8, 0x18, 0x10, 0x21, + 0x43, 0x62, 0xae, 0xb1, 0xa9, 0x99, 0x00, 0xd3, 0xdd, 0x92, 0x53, 0x61, 0xa0, 0x24, 0xd8, 0xa6, + 0xd9, 0x79, 0x75, 0xf2, 0xef, 0x99, 0xb3, 0xd4, 0xd5, 0xb4, 0xc6, 0xb6, 0x7c, 0x37, 0xf8, 0x71, + 0xbb, 0x1b, 0xfa, 0x69, 0x55, 0xd8, 0x92, 0x7b, 0x17, 0x2f, 0x46, 0x67, 0x50, 0xeb, 0x14, 0xda, + 0x99, 0x2d, 0x15, 0x65, 0x0d, 0xc3, 0x77, 0xc1, 0x70, 0x30, 0x1c, 0x0c, 0x07, 0xc3, 0xc1, 0x70, + 0x30, 0x1c, 0x0c, 0x07, 0xc3, 0xc1, 0xf0, 0xe5, 0xc4, 0x70, 0x8d, 0xad, 0xc0, 0x82, 0x14, 0x9e, + 0xaa, 0x02, 0x2f, 0xf4, 0xd2, 0x16, 0xf7, 0xb2, 0x0a, 0x46, 0x41, 0xcb, 0xf4, 0xfd, 0x92, 0x9d, + 0xff, 0x3b, 0xe9, 0x7f, 0x89, 0xfb, 0x9b, 0xde, 0x9d, 0xef, 0xcb, 0xdd, 0x3b, 0x67, 0xb8, 0x00, + 0x5b, 0xa5, 0x1e, 0x54, 0x7d, 0xa1, 0x75, 0xc9, 0xa1, 0xb6, 0x58, 0x9a, 0x64, 0x69, 0x72, 0x61, + 0x5c, 0xc4, 0xd2, 0x24, 0x4b, 0x93, 0x68, 0x22, 0x68, 0x22, 0xd9, 0xd1, 0x44, 0x2a, 0x6e, 0xad, + 0xd6, 0x05, 0x19, 0x79, 0x45, 0x64, 0xb8, 0x71, 0xf4, 0x10, 0xf4, 0x10, 0xf4, 0x90, 0x15, 0xd3, + 0x43, 0xf4, 0x0f, 0x73, 0x98, 0xeb, 0xfd, 0x0f, 0x04, 0xdb, 0x1c, 0xda, 0xfc, 0x36, 0xfe, 0xbf, + 0xee, 0xcb, 0x3f, 0x9a, 0x10, 0xe6, 0x4d, 0xfd, 0xa7, 0xfe, 0xbf, 0xa8, 0x1f, 0x22, 0x61, 0x51, + 0x5a, 0x11, 0x80, 0x09, 0x3f, 0x88, 0xe2, 0xb6, 0x51, 0x0f, 0xeb, 0x71, 0xbd, 0x52, 0xaf, 0x39, + 0xde, 0xff, 0xc8, 0xbb, 0x8d, 0x49, 0x37, 0xc1, 0x7d, 0xe0, 0x3e, 0x70, 0x1f, 0x2b, 0xe6, 0x3e, + 0xfc, 0xaa, 0x17, 0xc4, 0x7e, 0xfc, 0x6c, 0xc9, 0x85, 0x08, 0x96, 0xea, 0x2d, 0x9c, 0x75, 0xbf, + 0xea, 0x7b, 0x37, 0xb2, 0x30, 0x1f, 0x7a, 0x1d, 0x72, 0x76, 0x71, 0x73, 0x5b, 0x3e, 0x3f, 0xbf, + 0xbf, 0xba, 0xbe, 0xbc, 0xbd, 0x3c, 0xbe, 0x3c, 0xbf, 0xbf, 0xfd, 0xf3, 0xea, 0xb4, 0x60, 0xa3, + 0xa4, 0x71, 0x24, 0x56, 0x2b, 0x76, 0xf8, 0xbf, 0x9f, 0xe2, 0x2d, 0x8e, 0x74, 0xcf, 0xe5, 0xcd, + 0xd5, 0x87, 0x82, 0xf8, 0x2d, 0x5e, 0xde, 0xe4, 0xad, 0x1f, 0xce, 0x6e, 0xce, 0x6e, 0xe8, 0x87, + 0xce, 0x78, 0x78, 0x4b, 0x47, 0xac, 0x17, 0xce, 0x2f, 0x8f, 0xcb, 0xe7, 0xf7, 0xe5, 0x8f, 0x1f, + 0xaf, 0x4f, 0x3f, 0x96, 0x6f, 0x4f, 0xe9, 0x92, 0xf5, 0xc2, 0xc9, 0xd9, 0xf5, 0xe9, 0xf1, 0xed, + 0xf9, 0x9f, 0xf7, 0xc7, 0x97, 0x17, 0x17, 0xa7, 0xc7, 0xb7, 0xa7, 0x27, 0xf4, 0xca, 0x7a, 0xe1, + 0xe6, 0xb6, 0x7c, 0x7b, 0x76, 0x4c, 0x4f, 0xac, 0x17, 0xde, 0x7f, 0xbc, 0xa2, 0x1b, 0xd6, 0x0b, + 0x57, 0x67, 0x9f, 0xe8, 0x86, 0xf5, 0xc2, 0xd9, 0xc7, 0x4f, 0x36, 0x86, 0x83, 0x68, 0x8b, 0x77, + 0x4b, 0x77, 0x30, 0x04, 0xc9, 0x20, 0x66, 0xf9, 0x05, 0x83, 0x65, 0xef, 0x1c, 0xa7, 0x65, 0x3f, + 0xb9, 0x71, 0xe5, 0x9b, 0xe3, 0x07, 0xb1, 0x17, 0x3e, 0xb8, 0x15, 0xc1, 0x04, 0xed, 0xd7, 0x0d, + 0xb3, 0x2c, 0x99, 0xa2, 0x84, 0xc4, 0xb2, 0x24, 0xcb, 0x92, 0x33, 0x1a, 0x12, 0xca, 0x3c, 0x18, + 0x1b, 0xc0, 0x22, 0x19, 0x08, 0xc2, 0x53, 0x5e, 0x7c, 0xea, 0xdb, 0x30, 0x01, 0x16, 0x4d, 0x81, + 0x2d, 0x93, 0x60, 0xdd, 0x34, 0x58, 0x37, 0x11, 0x76, 0x4d, 0x85, 0x30, 0xed, 0x09, 0x8d, 0x59, + 0x29, 0x13, 0xd2, 0x6f, 0x50, 0x8e, 0x1c, 0xa6, 0xce, 0x05, 0x29, 0x86, 0x98, 0x66, 0x60, 0xa4, + 0x0f, 0xad, 0x93, 0x36, 0x34, 0x36, 0x0d, 0xce, 0x24, 0xc3, 0xe3, 0x3f, 0x14, 0xe4, 0x23, 0x48, + 0x5b, 0xe6, 0x27, 0x35, 0x33, 0x94, 0x9a, 0x39, 0x9a, 0x66, 0x96, 0xfc, 0x87, 0xac, 0x87, 0xc8, + 0xc2, 0xc2, 0x83, 0xfc, 0xd2, 0xd7, 0xd8, 0x68, 0x97, 0xcf, 0xa0, 0x18, 0xa3, 0x97, 0x03, 0x0b, + 0x6d, 0x5f, 0xf5, 0xa3, 0xdc, 0xd6, 0xb0, 0x38, 0xea, 0x1b, 0xc8, 0xe8, 0xf5, 0x2f, 0xba, 0x7f, + 0x97, 0xcb, 0x93, 0x90, 0x1f, 0x38, 0x92, 0x47, 0x9b, 0x46, 0xcd, 0xaf, 0x29, 0xf8, 0xa3, 0x91, + 0xbb, 0xe0, 0x92, 0x70, 0x49, 0xb8, 0x24, 0x5c, 0x12, 0x2e, 0x29, 0xa1, 0x4b, 0xfa, 0x3c, 0x70, + 0x49, 0xff, 0x5d, 0x69, 0x86, 0xa1, 0x17, 0xc4, 0x1b, 0x9b, 0xdb, 0x5b, 0x5b, 0xdb, 0xfd, 0x4f, + 0xdc, 0x75, 0x2f, 0x19, 0xb6, 0xb3, 0xd1, 0x84, 0xdf, 0xf5, 0x5b, 0xae, 0x7a, 0x3f, 0x32, 0xeb, + 0xdd, 0x32, 0x15, 0xfd, 0x09, 0x6b, 0xee, 0x03, 0xbf, 0xbb, 0x48, 0xed, 0xfd, 0x95, 0xd0, 0x2c, + 0xa2, 0xc5, 0xcb, 0xbd, 0x3e, 0x89, 0xb4, 0x50, 0x99, 0xd2, 0x29, 0xe3, 0x1c, 0x23, 0x50, 0x42, + 0xc5, 0xba, 0x58, 0xb7, 0x8b, 0x58, 0x87, 0x58, 0x87, 0x58, 0x87, 0x58, 0x47, 0x64, 0x44, 0x64, + 0x44, 0x64, 0x44, 0x64, 0x84, 0x58, 0x87, 0x58, 0x87, 0x58, 0x87, 0x4b, 0xc2, 0x25, 0xe1, 0x92, + 0x70, 0x49, 0x88, 0x75, 0x88, 0x75, 0x79, 0x16, 0xeb, 0x04, 0x0a, 0xa9, 0x09, 0x6a, 0x75, 0x24, + 0x44, 0x5b, 0x7a, 0xcf, 0x05, 0x11, 0x15, 0x54, 0xab, 0x16, 0xdb, 0x71, 0xff, 0x4b, 0xdd, 0x7f, + 0x6a, 0x7d, 0xa9, 0xb3, 0xfe, 0x77, 0xca, 0x6d, 0xb6, 0x76, 0xe0, 0xf9, 0x8f, 0xdf, 0xbe, 0xd6, + 0x43, 0x27, 0xf2, 0x62, 0xe9, 0x84, 0xed, 0x91, 0xb6, 0xc9, 0xd9, 0x4e, 0xc2, 0xbb, 0xe4, 0x6c, + 0x93, 0xb3, 0x3d, 0xf5, 0x91, 0xc8, 0xd9, 0xce, 0x52, 0x28, 0xcc, 0x32, 0x50, 0x3a, 0xc1, 0x2e, + 0xcb, 0x40, 0x59, 0x5e, 0x06, 0xea, 0x78, 0xfa, 0xc8, 0x8b, 0x9d, 0x7a, 0xc3, 0xac, 0x04, 0x6c, + 0x42, 0xa8, 0x18, 0xbe, 0x15, 0x1a, 0x5c, 0x1a, 0x1a, 0x9c, 0xb0, 0x21, 0x42, 0x85, 0xcb, 0xa6, + 0xa1, 0x42, 0x87, 0x9b, 0x62, 0x66, 0x9c, 0xd0, 0x8b, 0xe2, 0xd0, 0xaf, 0xc4, 0x5e, 0x55, 0xfa, + 0xa0, 0x80, 0x31, 0xd6, 0x29, 0x59, 0x68, 0xbb, 0x7f, 0x70, 0x80, 0x85, 0xb6, 0x4f, 0xbc, 0x07, + 0xb7, 0x73, 0x44, 0x4b, 0xa1, 0x7c, 0xf1, 0xe7, 0x2a, 0x2c, 0x35, 0x89, 0x06, 0xcc, 0x53, 0x07, + 0xa1, 0x60, 0xe8, 0x8c, 0x9b, 0xc3, 0xcd, 0xe1, 0xe6, 0x70, 0x73, 0xaf, 0x46, 0x7c, 0xce, 0x97, + 0x9b, 0x26, 0x16, 0x80, 0xdd, 0xda, 0xda, 0x6e, 0xeb, 0xca, 0x5e, 0xb5, 0x65, 0x37, 0xa3, 0xed, + 0x61, 0x2b, 0x3a, 0xfa, 0xb7, 0xed, 0x4c, 0x67, 0x46, 0xb0, 0x76, 0x94, 0xce, 0x9a, 0xc2, 0xc8, + 0x88, 0x20, 0xd7, 0x3b, 0xa1, 0xe5, 0x20, 0xd7, 0x1b, 0x91, 0x0f, 0x91, 0x0f, 0x91, 0x0f, 0x91, + 0x8f, 0xe8, 0x87, 0xe8, 0x87, 0xe8, 0x07, 0x91, 0x0f, 0x91, 0x0f, 0x91, 0x0f, 0x91, 0x0f, 0x37, + 0x87, 0x9b, 0xc3, 0xcd, 0x21, 0xf2, 0x21, 0xf2, 0x21, 0xf2, 0x65, 0x55, 0xe4, 0x23, 0x47, 0xdc, + 0xd6, 0x2b, 0xcf, 0xda, 0xab, 0xce, 0x50, 0x9a, 0xf8, 0x45, 0xf7, 0x6b, 0xdd, 0x78, 0x71, 0x7e, + 0x13, 0xc5, 0x3b, 0xd8, 0x61, 0x23, 0x4d, 0x7c, 0xa8, 0x65, 0x92, 0xc4, 0x53, 0x84, 0x58, 0x92, + 0xc4, 0x49, 0x12, 0x9f, 0xd1, 0x10, 0x49, 0xe2, 0x19, 0x8d, 0x6b, 0x59, 0x3f, 0x5a, 0x40, 0xdc, + 0xca, 0xfa, 0x91, 0x41, 0x83, 0xac, 0x1f, 0x21, 0xac, 0x21, 0xac, 0x21, 0xac, 0x2d, 0x8f, 0xb0, + 0xc6, 0xfa, 0x91, 0x8a, 0x3f, 0x59, 0xb9, 0xf5, 0x23, 0xc1, 0x60, 0x79, 0xea, 0x10, 0x14, 0x0b, + 0x9b, 0x71, 0x71, 0xb8, 0x38, 0x5c, 0x1c, 0x2e, 0xee, 0xd5, 0x88, 0x5f, 0x85, 0xb5, 0xa3, 0x81, + 0x0d, 0x1d, 0xfe, 0xb9, 0x9b, 0x0a, 0xcc, 0xf2, 0x51, 0xf2, 0x09, 0xb9, 0xbc, 0xcb, 0x47, 0x63, + 0xc3, 0x82, 0x0c, 0xf1, 0xb9, 0xa6, 0x83, 0x0c, 0x71, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, + 0x3e, 0xc2, 0x1f, 0xc2, 0x1f, 0xc2, 0x1f, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x14, 0x3e, 0x5c, + 0x1c, 0x2e, 0x0e, 0x17, 0x87, 0xc2, 0x87, 0xc2, 0x87, 0xc2, 0x97, 0x49, 0x85, 0x8f, 0xf4, 0x70, + 0x5b, 0x2f, 0x3c, 0x5b, 0x2f, 0x3a, 0x43, 0xc9, 0xe1, 0x1d, 0xb4, 0xc9, 0x75, 0x6a, 0x78, 0xec, + 0x3e, 0xda, 0xc8, 0x0b, 0xef, 0x35, 0x4b, 0x52, 0x78, 0x8a, 0xec, 0x4a, 0x52, 0x38, 0x49, 0xe1, + 0x33, 0x1a, 0x22, 0x29, 0x3c, 0xa3, 0xe1, 0x2c, 0x4b, 0x46, 0x0b, 0x08, 0x57, 0x59, 0x32, 0x32, + 0x68, 0x90, 0x25, 0x23, 0xf4, 0x34, 0xf4, 0x34, 0xf4, 0xb4, 0xe5, 0xd1, 0xd3, 0x58, 0x32, 0x52, + 0xf1, 0x27, 0x2b, 0xb7, 0x64, 0x24, 0x15, 0x26, 0x4f, 0x1d, 0x7f, 0x32, 0x01, 0x33, 0xce, 0x0d, + 0xe7, 0x86, 0x73, 0xc3, 0xb9, 0xbd, 0x1a, 0xf1, 0xab, 0xb0, 0x58, 0xd4, 0x35, 0xa0, 0xfd, 0x1f, + 0x58, 0x1f, 0x4a, 0x3e, 0x07, 0x97, 0x77, 0x7d, 0xa8, 0x37, 0x18, 0x48, 0xff, 0x4e, 0x68, 0x2a, + 0x48, 0xff, 0x46, 0xcb, 0x43, 0xcb, 0x43, 0xcb, 0x43, 0xcb, 0x23, 0xdc, 0x21, 0xdc, 0x21, 0xdc, + 0x41, 0xcb, 0x43, 0xcb, 0x43, 0xcb, 0x43, 0xcb, 0xc3, 0xb9, 0xe1, 0xdc, 0x70, 0x6e, 0x68, 0x79, + 0x68, 0x79, 0x68, 0x79, 0x0b, 0xd6, 0xf2, 0x48, 0xf4, 0xb6, 0xf5, 0xb6, 0x33, 0xf4, 0x96, 0x33, + 0x94, 0xe5, 0x7d, 0xeb, 0x3e, 0xe6, 0x34, 0xc5, 0x5b, 0x46, 0x23, 0x16, 0xd5, 0x86, 0xc5, 0x53, + 0xba, 0x77, 0x49, 0xe9, 0xce, 0x02, 0x75, 0x92, 0xd2, 0xad, 0x12, 0x73, 0x8b, 0xa5, 0x74, 0xbb, + 0xb5, 0x5a, 0xd7, 0x06, 0x5b, 0xc8, 0xeb, 0x1e, 0x6a, 0x5c, 0x76, 0x41, 0x68, 0x87, 0xe4, 0xee, + 0x2c, 0x87, 0xa8, 0x2c, 0x08, 0xe5, 0x89, 0xf8, 0xc5, 0x43, 0x4e, 0x8b, 0xa1, 0xa6, 0x8d, 0x10, + 0x73, 0x76, 0x68, 0xd9, 0x7d, 0xf9, 0x47, 0x13, 0x08, 0x75, 0xea, 0x3f, 0xf5, 0xff, 0x45, 0x2e, + 0xec, 0xcc, 0x46, 0xce, 0x80, 0x1f, 0x44, 0x71, 0xdb, 0xa8, 0x87, 0xf5, 0xb8, 0x5e, 0xa9, 0xd7, + 0x1c, 0xef, 0x7f, 0xe4, 0xdd, 0xc6, 0xa4, 0x9b, 0xe0, 0x3e, 0x70, 0x1f, 0xb8, 0x8f, 0x15, 0x73, + 0x1f, 0x7e, 0xd5, 0x0b, 0x62, 0x3f, 0x7e, 0xb6, 0xe4, 0x42, 0xf6, 0x04, 0xdb, 0x3c, 0xeb, 0x7e, + 0xd5, 0xf7, 0x6e, 0xe4, 0xd9, 0x5b, 0x17, 0x3a, 0xbb, 0xb8, 0xb9, 0x2d, 0x9f, 0x9f, 0xdf, 0x5f, + 0x5d, 0x5f, 0xde, 0x5e, 0x1e, 0x5f, 0x9e, 0xdf, 0xdf, 0xfe, 0x79, 0x75, 0x2a, 0x3d, 0x37, 0xfe, + 0xe9, 0xd6, 0x9a, 0x5e, 0x54, 0x38, 0x5a, 0xff, 0x2c, 0x2e, 0xe2, 0x5a, 0x5a, 0x08, 0xe9, 0x75, + 0xcf, 0xe5, 0xcd, 0xd5, 0x07, 0x0b, 0xeb, 0x05, 0x6f, 0xf2, 0xd6, 0x0f, 0x67, 0x37, 0x67, 0x37, + 0xf4, 0x43, 0x67, 0x3c, 0xbc, 0xa5, 0x23, 0xd6, 0x0b, 0xe7, 0x97, 0xc7, 0xe5, 0xf3, 0xfb, 0xf2, + 0xc7, 0x8f, 0xd7, 0xa7, 0x1f, 0xcb, 0xb7, 0xa7, 0x74, 0xc9, 0x7a, 0xe1, 0xe4, 0xec, 0xfa, 0xf4, + 0xf8, 0xf6, 0xfc, 0xcf, 0xfb, 0xe3, 0xcb, 0x8b, 0x8b, 0xd3, 0xe3, 0xdb, 0xd3, 0x13, 0x7a, 0x65, + 0xbd, 0x70, 0x73, 0x5b, 0xbe, 0x3d, 0x3b, 0xa6, 0x27, 0xd6, 0x0b, 0xef, 0x3f, 0x5e, 0xd1, 0x0d, + 0xeb, 0x85, 0xab, 0xb3, 0x4f, 0x74, 0xc3, 0x7a, 0xe1, 0xec, 0xe3, 0xa7, 0xab, 0xac, 0x67, 0x22, + 0xdc, 0x65, 0x2d, 0xbe, 0x60, 0x69, 0x74, 0xa4, 0xbd, 0x85, 0x2e, 0x8d, 0x0a, 0x2c, 0x79, 0x1b, + 0xac, 0x40, 0xae, 0xa5, 0xf8, 0xfe, 0xa4, 0xde, 0xdb, 0x42, 0xdf, 0x57, 0xc1, 0x68, 0xcd, 0xd6, + 0x70, 0xd1, 0x5a, 0x6f, 0x98, 0xa8, 0xbf, 0x64, 0x8d, 0x17, 0x6c, 0x5a, 0x82, 0x48, 0xa6, 0xe4, + 0x90, 0xe1, 0x12, 0xb4, 0xb1, 0x6c, 0x28, 0x21, 0x13, 0x0a, 0xca, 0x82, 0x52, 0x32, 0xa0, 0xb8, + 0xec, 0x27, 0x2e, 0xf3, 0xc9, 0xca, 0x7a, 0xe9, 0x9a, 0x45, 0xd3, 0x25, 0xe3, 0x42, 0xd7, 0xa2, + 0x08, 0xa5, 0x82, 0xb4, 0x5b, 0x93, 0xc9, 0x04, 0xd9, 0xa1, 0xb8, 0x5f, 0x9a, 0xd3, 0xd4, 0xda, + 0x74, 0xb5, 0x36, 0x6d, 0xed, 0x4c, 0xdf, 0x6c, 0x50, 0xaa, 0x98, 0xfa, 0x3e, 0x94, 0xa4, 0x15, + 0xfa, 0x81, 0x44, 0x35, 0xbe, 0xbe, 0x9b, 0x7c, 0x07, 0x77, 0x66, 0x9d, 0x3b, 0xb5, 0xf7, 0xb6, + 0xa7, 0x83, 0x7d, 0x46, 0xbe, 0x47, 0xc2, 0xe7, 0x18, 0xfa, 0x1a, 0x90, 0x0f, 0xe4, 0x4b, 0xdf, + 0x22, 0x19, 0xfb, 0x06, 0xc1, 0x44, 0x1e, 0x89, 0xc4, 0x9d, 0xe1, 0x44, 0x1d, 0xe3, 0x1a, 0xfe, + 0xe9, 0x18, 0x2e, 0xb3, 0x04, 0x6a, 0x91, 0xc4, 0x69, 0xb1, 0x68, 0x75, 0x17, 0xd3, 0x85, 0xe9, + 0x22, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x5d, 0x4c, 0xb4, 0x6a, + 0xb0, 0x94, 0xa5, 0xc1, 0x7c, 0x6b, 0x16, 0x5f, 0x46, 0xcb, 0x26, 0x69, 0x7a, 0x97, 0xc2, 0xb9, + 0x1f, 0xc5, 0xe5, 0x38, 0xd6, 0xf3, 0x92, 0x85, 0x4f, 0x7e, 0x70, 0x5a, 0xeb, 0xf4, 0x6c, 0xe1, + 0x68, 0x3d, 0x68, 0xd6, 0x6a, 0x1a, 0x6c, 0xfb, 0xc9, 0xfd, 0x61, 0xde, 0xc8, 0x65, 0x58, 0xf5, + 0x42, 0xaf, 0xfa, 0xfe, 0xd9, 0x1c, 0x92, 0x9b, 0x91, 0x17, 0xea, 0x32, 0xb2, 0x80, 0xb7, 0x19, + 0xf6, 0x30, 0xf5, 0xce, 0x53, 0x39, 0x5f, 0x4d, 0x36, 0x3e, 0x89, 0x7a, 0x96, 0x11, 0x6f, 0xd2, + 0xee, 0xa9, 0xa5, 0x98, 0x41, 0x86, 0x66, 0x2c, 0x7d, 0xf3, 0x55, 0xd0, 0x0a, 0x22, 0x75, 0x56, + 0x74, 0xd5, 0x5e, 0x70, 0xf2, 0xd7, 0x94, 0xec, 0x93, 0x09, 0x5f, 0xa4, 0xee, 0x0b, 0x4c, 0xeb, + 0xc5, 0x25, 0xeb, 0xc4, 0xf9, 0x5d, 0x32, 0xfb, 0x13, 0x73, 0x3a, 0x4b, 0xc1, 0x4f, 0xa8, 0xf9, + 0x05, 0x2d, 0x3f, 0xa0, 0x65, 0xf7, 0x47, 0xec, 0x7c, 0xeb, 0x12, 0xa3, 0xfe, 0x50, 0x1c, 0x34, + 0x56, 0x07, 0x4b, 0x82, 0x09, 0xad, 0x34, 0x81, 0x67, 0x8f, 0xb8, 0xe9, 0xe3, 0x68, 0xf2, 0xbf, + 0x4c, 0xe9, 0xc9, 0xa4, 0x3d, 0x28, 0xd8, 0x73, 0x93, 0x9f, 0x6b, 0xfc, 0x5b, 0x8f, 0xfe, 0xe6, + 0xd5, 0xf7, 0x9f, 0xf7, 0xbd, 0x75, 0xbf, 0xef, 0x84, 0x97, 0x38, 0xeb, 0xa5, 0x8d, 0x3e, 0xcb, + 0xe0, 0x1b, 0x0f, 0x7d, 0xdb, 0x42, 0x14, 0x37, 0xc6, 0xbe, 0xe2, 0x50, 0xd4, 0xd2, 0x78, 0x75, + 0xcb, 0x29, 0x2a, 0xdd, 0xd4, 0x70, 0x7f, 0x56, 0xf8, 0x3e, 0x1c, 0x8e, 0x8f, 0xdf, 0x29, 0x09, + 0xef, 0x24, 0x8e, 0x96, 0x13, 0x33, 0xca, 0xeb, 0x68, 0xb6, 0xf5, 0xbd, 0x14, 0xdf, 0xfd, 0x34, + 0x4d, 0xa8, 0xf0, 0x58, 0xab, 0x7f, 0x75, 0x6b, 0xd3, 0x1f, 0xa6, 0xd7, 0x1d, 0xdd, 0xcf, 0x4d, + 0xf9, 0x82, 0xb3, 0x65, 0xd2, 0xb9, 0xba, 0x4b, 0x12, 0x3d, 0x65, 0xfe, 0x8b, 0x51, 0x05, 0x52, + 0x65, 0x59, 0x43, 0x19, 0x2a, 0x13, 0xbd, 0x38, 0x3d, 0x23, 0x34, 0x4f, 0xe4, 0x4b, 0x9a, 0xed, + 0xa5, 0x96, 0xd5, 0x95, 0x50, 0x0f, 0x4f, 0x2c, 0xb4, 0xa9, 0x08, 0x69, 0xc9, 0x07, 0x80, 0x6e, + 0x64, 0xa2, 0xad, 0x73, 0x69, 0x47, 0x1b, 0x4a, 0x03, 0x44, 0x86, 0x87, 0x92, 0xaa, 0xc3, 0x85, + 0xaf, 0x8d, 0x6a, 0xd3, 0x79, 0xf0, 0x6b, 0xb1, 0x97, 0x3c, 0x50, 0xee, 0xbf, 0xa3, 0xe1, 0x8b, + 0x13, 0x76, 0x85, 0x9a, 0xc6, 0xab, 0xac, 0xe5, 0xea, 0x68, 0xb6, 0xea, 0x43, 0xce, 0x34, 0x28, + 0x36, 0x96, 0x5a, 0x8d, 0x03, 0x5f, 0xad, 0x21, 0x69, 0x27, 0xbe, 0x51, 0x56, 0x3c, 0x07, 0xc3, + 0xaf, 0x5e, 0xaf, 0x79, 0x6e, 0xa0, 0xf2, 0xc2, 0x7a, 0x96, 0xad, 0x28, 0x15, 0xb5, 0xbc, 0x49, + 0x38, 0xc5, 0x1e, 0x9b, 0x6e, 0xfb, 0x7d, 0xeb, 0xcc, 0xb0, 0xce, 0xb5, 0x4c, 0x30, 0x26, 0x18, + 0x13, 0x6c, 0xda, 0x04, 0x6b, 0xcf, 0x11, 0x27, 0xf6, 0x9f, 0xbc, 0x7a, 0x33, 0x76, 0x42, 0xaf, + 0x52, 0xff, 0xee, 0x85, 0xcf, 0x7a, 0x13, 0x6e, 0x4a, 0x5b, 0x4c, 0x40, 0x26, 0x60, 0xca, 0x13, + 0xb0, 0xe9, 0x07, 0xf1, 0x3b, 0x8d, 0xe9, 0xa7, 0x50, 0xb8, 0xa1, 0x70, 0xed, 0x06, 0x8f, 0x9e, + 0x72, 0x31, 0x03, 0xbd, 0x25, 0x15, 0xfd, 0x25, 0x0c, 0xc3, 0xec, 0xc2, 0x76, 0xc9, 0x06, 0x83, + 0xeb, 0x3f, 0x84, 0x6e, 0x25, 0xf6, 0xeb, 0xc1, 0x89, 0xff, 0xe8, 0xb7, 0x45, 0xbd, 0x9d, 0x54, + 0x92, 0xa3, 0x3e, 0xb9, 0x3f, 0x16, 0xde, 0x65, 0xbb, 0x7b, 0x7b, 0x0b, 0xec, 0x34, 0x4b, 0x12, + 0xfd, 0x5d, 0x9a, 0xee, 0x29, 0xf4, 0xab, 0x8f, 0x9e, 0xe3, 0x46, 0x51, 0x33, 0x74, 0x03, 0x95, + 0x48, 0xb5, 0xef, 0x94, 0x5e, 0xb7, 0x80, 0x2b, 0xc2, 0x15, 0xc1, 0x82, 0x93, 0xee, 0xe9, 0x05, + 0xee, 0xd7, 0x9a, 0x57, 0xed, 0x97, 0x46, 0x53, 0x9f, 0x6c, 0x63, 0x2d, 0x30, 0xd9, 0x98, 0x6c, + 0x29, 0x4f, 0x36, 0xbd, 0xba, 0x5e, 0x3a, 0x75, 0xbb, 0xcc, 0xea, 0x72, 0x0d, 0x95, 0x45, 0xb9, + 0xea, 0xd7, 0xdc, 0x52, 0x7d, 0xe3, 0x06, 0xe5, 0xb4, 0x0c, 0xf3, 0x61, 0xae, 0x6f, 0x6e, 0x35, + 0x8a, 0x56, 0x68, 0x80, 0x9c, 0xe9, 0xf7, 0x2c, 0x5f, 0x9d, 0x9d, 0xdc, 0x5f, 0xfd, 0xf3, 0xe6, + 0x36, 0x0f, 0xdf, 0xf6, 0x93, 0x5e, 0xaf, 0x2a, 0x5d, 0x71, 0xb7, 0xa0, 0x29, 0xad, 0x95, 0x54, + 0x66, 0x94, 0x4c, 0x66, 0x94, 0x44, 0xa6, 0x96, 0x54, 0x20, 0xec, 0x89, 0xe3, 0x6f, 0x5e, 0x58, + 0xf9, 0xe6, 0x06, 0x81, 0x57, 0x73, 0x9e, 0xfc, 0xa8, 0xbb, 0xca, 0xac, 0x29, 0x84, 0xce, 0x6c, + 0x0d, 0x0f, 0x8d, 0x87, 0x06, 0x87, 0x27, 0xdd, 0xb3, 0x56, 0xaf, 0x37, 0x74, 0xa7, 0xdc, 0xd0, + 0xb5, 0x4c, 0x30, 0x26, 0xd8, 0x0a, 0x4e, 0xb0, 0x8c, 0xa4, 0xe0, 0x45, 0x0d, 0x37, 0x08, 0xfc, + 0xe0, 0xd1, 0x89, 0x43, 0xcf, 0xdb, 0x8e, 0xe2, 0xc6, 0x76, 0x27, 0x4f, 0x27, 0xd1, 0xb6, 0xf4, + 0x19, 0xf9, 0x70, 0x33, 0x92, 0x6b, 0x92, 0xed, 0xca, 0x54, 0xda, 0x7d, 0xa9, 0x9c, 0x55, 0xb2, + 0x4b, 0x56, 0x89, 0xf8, 0x2c, 0x27, 0xab, 0x04, 0xc7, 0x83, 0xe3, 0x59, 0x06, 0xb2, 0x23, 0xab, + 0x84, 0x09, 0xc6, 0x04, 0xb3, 0x3c, 0xc1, 0xc8, 0x2a, 0x61, 0x02, 0x2e, 0xdf, 0x04, 0x24, 0xab, + 0x44, 0x6f, 0x56, 0x8d, 0x5d, 0x4e, 0x56, 0x89, 0x76, 0x97, 0x91, 0x55, 0x62, 0xea, 0x9e, 0xc8, + 0x2a, 0xc1, 0x15, 0xc1, 0x82, 0xe9, 0x4c, 0x36, 0xb2, 0x4a, 0x98, 0x6c, 0x64, 0x95, 0x90, 0x55, + 0x92, 0xe8, 0x5b, 0x93, 0x55, 0x62, 0xe3, 0xdb, 0x92, 0x55, 0x32, 0x21, 0xf2, 0x21, 0xab, 0x84, + 0xac, 0x12, 0x3c, 0x34, 0x38, 0x4c, 0x56, 0x09, 0x13, 0x8c, 0x09, 0x96, 0x93, 0x09, 0x96, 0xf5, + 0xac, 0x92, 0x04, 0xe5, 0x23, 0xb3, 0x53, 0x64, 0x69, 0xda, 0x53, 0x14, 0x66, 0x26, 0xb7, 0x0c, + 0xd7, 0x2d, 0xba, 0x89, 0x1b, 0xf7, 0x1f, 0x3b, 0xd7, 0x24, 0x2d, 0xc0, 0x34, 0xa1, 0x5c, 0x90, + 0x1f, 0xc4, 0x5e, 0xf8, 0xe0, 0x56, 0xda, 0x21, 0xc7, 0x9c, 0x2a, 0x3b, 0x43, 0x9f, 0xa5, 0xd2, + 0x4e, 0x5e, 0x2a, 0xed, 0xf4, 0x5f, 0x5a, 0xf2, 0xac, 0xa8, 0xc1, 0x25, 0xd4, 0xdb, 0x21, 0x33, + 0xaa, 0xf3, 0x41, 0xc5, 0xe3, 0xf9, 0xf4, 0x8e, 0xe3, 0x53, 0x3c, 0xd0, 0x00, 0x64, 0x5a, 0x7e, + 0x64, 0x52, 0x3d, 0x2e, 0x40, 0x2b, 0x85, 0x6f, 0x1c, 0xb7, 0x94, 0x53, 0xf9, 0x34, 0xa9, 0x5f, + 0x7b, 0x28, 0x9b, 0x0c, 0x69, 0xf3, 0xa1, 0x6d, 0x3a, 0xc4, 0xc5, 0x86, 0xba, 0xd8, 0x90, 0x17, + 0x19, 0xfa, 0x7a, 0xea, 0x9d, 0x6a, 0x65, 0x64, 0xed, 0x52, 0xfb, 0x06, 0xd1, 0x84, 0x66, 0x54, + 0xa1, 0xde, 0x21, 0x0a, 0x9d, 0xa1, 0x93, 0x4a, 0x38, 0x79, 0xa6, 0xab, 0x84, 0xf5, 0x4c, 0x74, + 0x26, 0x3a, 0x13, 0x3d, 0xdd, 0x89, 0xee, 0x55, 0x1f, 0x3d, 0xa7, 0x51, 0x0f, 0x63, 0xfd, 0x79, + 0x3e, 0x68, 0x82, 0x69, 0xce, 0x34, 0x5f, 0xb2, 0x69, 0xae, 0xb7, 0x40, 0x3e, 0x36, 0xd5, 0x35, + 0x32, 0xdb, 0xcc, 0x16, 0xcc, 0xc7, 0x1e, 0xe4, 0xe6, 0xf6, 0xea, 0xfe, 0xf4, 0xe4, 0xe3, 0xe9, + 0xfd, 0xd5, 0xe5, 0xf5, 0x6d, 0xc1, 0x24, 0x55, 0x4f, 0x6f, 0x05, 0xbd, 0xf7, 0x9f, 0xd0, 0xe1, + 0x62, 0xed, 0x47, 0x39, 0x39, 0xbb, 0x29, 0xbf, 0x3f, 0x3f, 0x35, 0x38, 0x9f, 0xed, 0x4d, 0x26, + 0x9e, 0xa3, 0xfc, 0xfb, 0xed, 0x65, 0xee, 0x1f, 0xe2, 0xf4, 0xc2, 0xf0, 0x5d, 0x68, 0x5d, 0x79, + 0x97, 0x99, 0x4c, 0x4f, 0x15, 0xaf, 0x6b, 0x48, 0xd6, 0x40, 0x35, 0xde, 0x76, 0x29, 0xbd, 0x6d, + 0x14, 0x77, 0x17, 0x82, 0x9d, 0xb8, 0xd5, 0x96, 0x81, 0xc3, 0x2d, 0x69, 0x5c, 0x7b, 0x1a, 0x34, + 0x9f, 0x5a, 0xdf, 0x3f, 0x0b, 0x16, 0xa2, 0xe6, 0x07, 0xff, 0xee, 0x74, 0x82, 0xb6, 0x95, 0x18, + 0x34, 0x81, 0xa5, 0xc0, 0x52, 0x2c, 0xa1, 0xa5, 0xd0, 0x1d, 0xe0, 0x4b, 0x65, 0x28, 0xb4, 0xce, + 0xec, 0x35, 0x39, 0xa3, 0x17, 0xf3, 0x80, 0x79, 0xc8, 0xbe, 0x3a, 0xe7, 0x46, 0x9e, 0xd3, 0x5f, + 0x6c, 0x77, 0x0c, 0xa3, 0x77, 0x8d, 0xe3, 0xf7, 0xfb, 0xc7, 0xee, 0x6f, 0xd7, 0x2b, 0x8e, 0xff, + 0x70, 0x34, 0x48, 0xf0, 0x78, 0xfd, 0x8b, 0xee, 0xdf, 0xd5, 0x0f, 0xe5, 0x5f, 0x9e, 0xd3, 0x07, + 0xc7, 0x33, 0x76, 0x86, 0xba, 0x6b, 0xd0, 0x51, 0x49, 0x6a, 0xdb, 0x24, 0x7f, 0xe4, 0x24, 0x59, + 0x8d, 0x4a, 0xc6, 0x55, 0xc7, 0xa8, 0x92, 0xc9, 0xb8, 0xce, 0xb2, 0xbc, 0xa1, 0xf1, 0x1b, 0x00, + 0xbf, 0xe7, 0x3e, 0x68, 0x6e, 0xe4, 0x51, 0xb0, 0x70, 0x7d, 0xcb, 0xb6, 0xb5, 0xd5, 0x9d, 0x91, + 0xdb, 0xc9, 0x6d, 0x97, 0xcc, 0xb4, 0x4c, 0x56, 0x8a, 0x6a, 0x02, 0x33, 0xce, 0x2f, 0x49, 0x35, + 0xd6, 0x33, 0xaa, 0x13, 0x73, 0x97, 0x89, 0xb9, 0xa4, 0x13, 0x93, 0x7c, 0x19, 0x40, 0x1d, 0x50, + 0x97, 0x06, 0x75, 0xf2, 0x65, 0xc8, 0x97, 0x61, 0xa2, 0x33, 0xd1, 0x73, 0x32, 0xd1, 0xc9, 0x97, + 0x61, 0x9a, 0x33, 0xcd, 0xa7, 0xbf, 0x6f, 0xf2, 0x65, 0x86, 0x1b, 0x23, 0x5f, 0xc6, 0xca, 0x73, + 0x90, 0x2f, 0x43, 0xbe, 0x8c, 0x4a, 0x7f, 0x03, 0xd5, 0x78, 0x5b, 0xf2, 0x65, 0x66, 0x3a, 0x5c, + 0xf2, 0x65, 0xc8, 0x97, 0xc1, 0x52, 0x90, 0x2f, 0xb3, 0xf4, 0x86, 0x82, 0x7c, 0x19, 0xcc, 0x03, + 0xe6, 0x61, 0x4c, 0x9d, 0x23, 0x5f, 0x46, 0xf9, 0x93, 0x99, 0xcf, 0x97, 0x49, 0x50, 0xb5, 0x27, + 0xf9, 0x13, 0x9b, 0x15, 0xc3, 0xf8, 0x87, 0xf7, 0x9c, 0xd0, 0x7c, 0xaa, 0x55, 0x3e, 0xd4, 0xaa, + 0x78, 0xa8, 0x55, 0xe9, 0x50, 0xad, 0xc2, 0xe1, 0x22, 0x6b, 0x36, 0x4d, 0x1a, 0x0b, 0x85, 0x44, + 0x59, 0x15, 0xaf, 0x6b, 0x20, 0x9d, 0xf5, 0x2f, 0xcf, 0x6d, 0xe9, 0xa7, 0xa1, 0xc2, 0x4a, 0x06, + 0xa5, 0x9c, 0x9e, 0x5a, 0x46, 0x7f, 0x6e, 0x11, 0xa7, 0xa7, 0xe9, 0x2e, 0x93, 0xf2, 0x4d, 0x02, + 0xce, 0x55, 0xb8, 0x7c, 0x53, 0xc2, 0xba, 0x3b, 0x6a, 0xf5, 0x76, 0x28, 0xdc, 0x24, 0x4b, 0x63, + 0x59, 0x2e, 0xdc, 0xf4, 0x50, 0x0f, 0xff, 0xe3, 0x86, 0xd5, 0x96, 0xbd, 0xa9, 0x7a, 0x35, 0x57, + 0xe3, 0x10, 0xa0, 0xb1, 0x16, 0xc8, 0x1a, 0x4d, 0x31, 0x54, 0x20, 0x6b, 0x94, 0xa3, 0x7f, 0xcc, + 0x03, 0xf5, 0xfe, 0xe5, 0xbd, 0x73, 0x6c, 0x4a, 0x1c, 0xfd, 0xa3, 0xda, 0x65, 0x6f, 0x77, 0x38, + 0xf9, 0xc7, 0xe0, 0x9d, 0x16, 0xbe, 0x79, 0xb5, 0x5a, 0xbd, 0x7d, 0x90, 0x9c, 0xba, 0x0f, 0x1a, + 0xba, 0x16, 0xef, 0x83, 0xf7, 0xc1, 0xfb, 0xe4, 0xdb, 0xfb, 0x14, 0xf1, 0x3e, 0xca, 0x5d, 0x86, + 0xf7, 0x31, 0xf3, 0x3e, 0xf5, 0x5a, 0xd5, 0xa9, 0xd4, 0x9b, 0x41, 0xac, 0xe1, 0x7d, 0x06, 0xd7, + 0x26, 0xdd, 0x86, 0xe1, 0x3d, 0xb8, 0xcd, 0x5a, 0xdb, 0xe8, 0xed, 0xe3, 0xb1, 0xf0, 0x58, 0x78, + 0x2c, 0x3c, 0x16, 0x1e, 0x0b, 0x8f, 0xa5, 0xe2, 0xb1, 0x9e, 0xdc, 0x1f, 0x8e, 0xfb, 0xa8, 0x11, + 0x2c, 0xf5, 0x2e, 0xc4, 0xef, 0xe0, 0x77, 0xf0, 0x3b, 0xf9, 0xf6, 0x3b, 0xfb, 0xf8, 0x1d, 0x65, + 0x69, 0x13, 0xbf, 0x63, 0xec, 0x77, 0xbe, 0xd5, 0x1b, 0x7a, 0x7e, 0xa7, 0x75, 0x21, 0x7e, 0x07, + 0xbf, 0x83, 0xdf, 0x21, 0xde, 0x59, 0x31, 0xbf, 0xb3, 0xbb, 0xb7, 0x87, 0xe3, 0x31, 0x71, 0x3c, + 0x14, 0xb2, 0xc2, 0xe5, 0xe4, 0xc7, 0xe5, 0x44, 0x71, 0xe8, 0x07, 0x8f, 0x3a, 0x75, 0xac, 0xde, + 0x29, 0x5c, 0x73, 0xee, 0x05, 0x8f, 0xed, 0x14, 0x42, 0xbc, 0x0e, 0x5e, 0x67, 0x52, 0x97, 0xbd, + 0xdd, 0xc5, 0xe9, 0x98, 0x38, 0x9d, 0xd0, 0xfb, 0xee, 0x47, 0x2a, 0x69, 0xef, 0x7d, 0x03, 0xd0, + 0xbf, 0x12, 0xe7, 0x83, 0xf3, 0x59, 0x40, 0xbc, 0xf3, 0x76, 0x57, 0xc3, 0xf9, 0x1c, 0x10, 0xf0, + 0x4c, 0xb6, 0xa3, 0x3b, 0xb8, 0x1e, 0x65, 0xa1, 0x6d, 0xf7, 0xb0, 0x74, 0xb8, 0x7f, 0xb0, 0x7b, + 0x48, 0xdc, 0xa3, 0xf9, 0x89, 0x45, 0xee, 0xc0, 0x79, 0x6a, 0xfd, 0x91, 0xa4, 0x5a, 0xf1, 0x8c, + 0x9d, 0x33, 0x33, 0x76, 0x6f, 0x3c, 0x45, 0xb1, 0xe3, 0x07, 0x51, 0xec, 0x06, 0xb3, 0xce, 0x16, + 0x1f, 0xd7, 0x10, 0x47, 0x2e, 0x63, 0x1b, 0x03, 0xdb, 0x18, 0xc6, 0x87, 0x93, 0x86, 0x32, 0x3d, + 0x7c, 0x35, 0x67, 0x51, 0x83, 0x6b, 0x5a, 0xb8, 0xa6, 0x5c, 0x5b, 0x57, 0xf1, 0xd0, 0xf4, 0xb1, + 0xd7, 0xac, 0x74, 0x78, 0xba, 0xe6, 0xc0, 0xd5, 0x1e, 0xc0, 0x26, 0x03, 0xd9, 0x7c, 0x40, 0x9b, + 0x0e, 0x6c, 0xb1, 0x01, 0x2e, 0x36, 0xd0, 0x45, 0x06, 0xbc, 0x26, 0x16, 0x29, 0xbe, 0x71, 0xd5, + 0x89, 0xd0, 0xbf, 0xf0, 0x6b, 0xe8, 0xb7, 0xeb, 0x4a, 0x86, 0x7e, 0x3d, 0xf4, 0xe3, 0x67, 0xf3, + 0x02, 0x78, 0xaf, 0x1b, 0x7c, 0xb3, 0x10, 0x20, 0xd6, 0x9d, 0x3a, 0x12, 0x53, 0x48, 0x6e, 0x2a, + 0x49, 0x4d, 0x29, 0xf1, 0xa9, 0x25, 0x3e, 0xc5, 0x44, 0xa7, 0x9a, 0xde, 0x94, 0x33, 0x88, 0xfd, + 0xd6, 0x8d, 0xaa, 0x69, 0x8c, 0x8d, 0x97, 0x28, 0x6e, 0x38, 0xaf, 0xa6, 0x91, 0x6e, 0xfd, 0x1d, + 0x03, 0xb1, 0x41, 0x48, 0x7c, 0x30, 0x17, 0x23, 0x44, 0xc5, 0x09, 0x61, 0x43, 0x33, 0x35, 0x12, + 0x2f, 0x0a, 0xb5, 0x27, 0x10, 0x90, 0x0b, 0x0d, 0x70, 0x31, 0xb1, 0x23, 0xad, 0x57, 0xb0, 0x5f, + 0x2c, 0x96, 0x4a, 0x3b, 0x19, 0x7e, 0x0f, 0x6b, 0x8b, 0xb9, 0xfa, 0x6e, 0x2d, 0x9d, 0xfb, 0xe9, + 0x88, 0x68, 0xed, 0xb0, 0xb0, 0x6a, 0x4e, 0x21, 0xdd, 0x76, 0x80, 0x0f, 0xe0, 0x03, 0xf8, 0x50, + 0x1a, 0x2f, 0x4d, 0x3f, 0x88, 0x8b, 0xfb, 0x02, 0xa8, 0xb1, 0x0f, 0x6a, 0x80, 0x1a, 0x2b, 0x82, + 0x1a, 0xa5, 0x9d, 0xc3, 0x12, 0xa0, 0x91, 0x27, 0xd0, 0xf8, 0x5e, 0x73, 0x03, 0x73, 0xcc, 0x68, + 0xb7, 0x02, 0x64, 0x00, 0x19, 0x40, 0x86, 0x1a, 0x64, 0x04, 0xc9, 0xb3, 0x74, 0x66, 0x4d, 0x9e, + 0xe2, 0xa1, 0x41, 0x1b, 0xdd, 0xc7, 0x59, 0x38, 0x63, 0x0c, 0x1b, 0x13, 0xfd, 0xa0, 0x45, 0x18, + 0xc1, 0x84, 0x51, 0x4c, 0xae, 0xbb, 0xac, 0xa0, 0x99, 0x25, 0x3e, 0xb0, 0x85, 0x6a, 0x36, 0x61, + 0x41, 0x10, 0xdd, 0xac, 0x20, 0x5c, 0x5a, 0xaf, 0x4a, 0x0e, 0xe9, 0x52, 0x79, 0x5b, 0x6b, 0xd9, + 0x68, 0xe5, 0x6e, 0x6d, 0x81, 0x63, 0x4e, 0xda, 0x16, 0x87, 0x6d, 0xd3, 0x27, 0x67, 0x8e, 0x55, + 0xd2, 0xcc, 0xa7, 0x63, 0x9b, 0x1b, 0xc7, 0x5e, 0x18, 0x88, 0x59, 0xe4, 0xc2, 0xbf, 0x36, 0x4a, + 0x3b, 0x87, 0x9f, 0x77, 0x9c, 0xd2, 0xdd, 0xaf, 0xd2, 0xce, 0xe7, 0x1d, 0xe7, 0xdd, 0xdd, 0xe7, + 0x1d, 0xe7, 0xf0, 0xee, 0xd7, 0xe7, 0xa2, 0xf3, 0xb6, 0xf3, 0xe3, 0xcf, 0xb7, 0x2f, 0xad, 0xbf, + 0x1d, 0x76, 0xff, 0x56, 0x7c, 0xb3, 0xdb, 0xfd, 0xfb, 0xe6, 0x97, 0x2f, 0x5b, 0x5f, 0xbe, 0x6c, + 0x19, 0x34, 0xf0, 0x97, 0xc2, 0xa2, 0x87, 0x5c, 0xda, 0xd1, 0x8d, 0x26, 0x7b, 0x29, 0x95, 0xb7, + 0x9e, 0xe5, 0x33, 0x95, 0x2b, 0x58, 0xcf, 0xb2, 0xea, 0x72, 0x8d, 0x29, 0x95, 0xc9, 0x16, 0x0c, + 0x1d, 0xad, 0xae, 0xca, 0x6b, 0x96, 0x70, 0xef, 0x5f, 0xaf, 0x9c, 0x3c, 0x38, 0x92, 0xab, 0x37, + 0xf2, 0xb7, 0x44, 0x79, 0x85, 0xfa, 0xbd, 0xa3, 0x72, 0x94, 0xc6, 0x50, 0x6d, 0x6d, 0xed, 0x3c, + 0x9c, 0xa1, 0x36, 0xc8, 0xc5, 0xb1, 0x17, 0x56, 0x93, 0x8b, 0x93, 0x66, 0x2e, 0xce, 0xa0, 0xec, + 0xbe, 0xb1, 0x30, 0xa5, 0x52, 0xc1, 0x5f, 0x70, 0x9a, 0xa0, 0x4e, 0xa1, 0x4e, 0x2d, 0x4a, 0x9d, + 0xd2, 0x9d, 0x76, 0xfd, 0x06, 0x34, 0x73, 0x43, 0xa7, 0x0e, 0x3b, 0xad, 0x5c, 0x51, 0xe1, 0x89, + 0x28, 0x36, 0x21, 0x25, 0x27, 0xa6, 0xfc, 0x04, 0x95, 0x9e, 0xa8, 0xd6, 0x26, 0xac, 0xb5, 0x89, + 0x6b, 0x65, 0x02, 0xcb, 0xe8, 0x02, 0x86, 0x51, 0xbd, 0xf1, 0xc4, 0x1e, 0x9a, 0xe0, 0x51, 0x2c, + 0x37, 0x34, 0x06, 0xd3, 0x3c, 0x8a, 0xa5, 0x46, 0x85, 0xf0, 0xf2, 0xa4, 0xd4, 0xa4, 0xb7, 0x31, + 0xf9, 0xed, 0x19, 0x01, 0x5b, 0xc6, 0xc0, 0xba, 0x51, 0xb0, 0x6e, 0x1c, 0xac, 0x1a, 0x09, 0x61, + 0x29, 0x52, 0x68, 0xc4, 0x1a, 0xaf, 0x59, 0x4d, 0x1d, 0xaf, 0xca, 0x1b, 0x7e, 0x93, 0xce, 0xfe, + 0x03, 0xc1, 0x26, 0x65, 0x57, 0x6f, 0x7a, 0xff, 0xc9, 0xce, 0xa7, 0x75, 0x5b, 0xab, 0x39, 0x96, + 0xcc, 0xea, 0x58, 0xf3, 0x96, 0x56, 0x77, 0xfa, 0xed, 0x5b, 0x5c, 0x37, 0x10, 0x9e, 0x6e, 0xaf, + 0xf5, 0xc1, 0xdc, 0xbf, 0xd2, 0xdd, 0x9d, 0xee, 0x7f, 0x39, 0x7e, 0xb5, 0x6b, 0xd9, 0x6c, 0xed, + 0x2e, 0x23, 0x4b, 0x56, 0x12, 0x39, 0x6a, 0x5a, 0xa7, 0x03, 0xcf, 0xf5, 0x30, 0x1a, 0xa7, 0x06, + 0x43, 0x96, 0x90, 0x25, 0x64, 0x99, 0x73, 0xb2, 0x14, 0x39, 0x55, 0x79, 0xae, 0xa0, 0x24, 0x89, + 0x99, 0xf6, 0x4f, 0x61, 0xce, 0xb6, 0xfd, 0x6f, 0xd4, 0xc3, 0xd8, 0x7c, 0x0f, 0xed, 0xd4, 0x01, + 0x31, 0xda, 0x3c, 0x1e, 0x01, 0x8f, 0x80, 0x47, 0x58, 0x29, 0x8f, 0x10, 0xc5, 0x0d, 0x67, 0xc4, + 0x08, 0x98, 0xee, 0x07, 0x9e, 0x66, 0x0d, 0xf6, 0xd0, 0x1e, 0xd0, 0x1e, 0xd0, 0x1e, 0xb2, 0xa1, + 0x3d, 0x94, 0x50, 0x1d, 0x96, 0x57, 0x75, 0x58, 0xe8, 0x92, 0x9a, 0x61, 0x62, 0xda, 0x58, 0x7b, + 0x92, 0x89, 0x6a, 0x43, 0xc1, 0xc3, 0x20, 0x6c, 0xd0, 0xc9, 0x5e, 0x93, 0xeb, 0x72, 0x83, 0xee, 0x96, 0x91, 0x86, 0x24, 0x25, 0x21, 0x21, 0xf3, 0x45, 0x46, 0x41, 0xb6, 0x80, 0x9e, 0x8c, 0x82, - 0x25, 0x80, 0xfa, 0x60, 0xbc, 0xd5, 0x3d, 0xf7, 0x5e, 0x46, 0xa7, 0x91, 0xd4, 0x67, 0x06, 0xba, - 0xcc, 0xce, 0x4e, 0xcf, 0x82, 0xee, 0x9a, 0x2b, 0x2f, 0xcb, 0x31, 0xa3, 0x51, 0xec, 0xc6, 0x82, - 0x76, 0xb4, 0xdb, 0x5c, 0xc6, 0x52, 0xb3, 0xf6, 0x31, 0xa4, 0x18, 0xd2, 0x5c, 0x19, 0x52, 0x52, - 0xb3, 0x96, 0x4d, 0x4f, 0x36, 0x26, 0xbf, 0x3d, 0x23, 0x60, 0xcb, 0x18, 0x58, 0x37, 0x0a, 0xd6, + 0x05, 0x80, 0x7a, 0x7f, 0xbc, 0xd5, 0x3c, 0xf7, 0x41, 0x46, 0xa7, 0x91, 0xd4, 0x67, 0xfa, 0xba, + 0xcc, 0xd6, 0x56, 0xd7, 0x82, 0x6e, 0x9b, 0x2b, 0x2f, 0x8b, 0x31, 0xa3, 0x51, 0xec, 0xc6, 0x82, + 0x76, 0xb4, 0xd3, 0x5c, 0xc6, 0x52, 0xb3, 0x76, 0x31, 0xa4, 0x18, 0xd2, 0x5c, 0x19, 0x52, 0x52, + 0xb3, 0x16, 0x4d, 0x4f, 0x36, 0x26, 0xbf, 0x3d, 0x23, 0x60, 0xcb, 0x18, 0x58, 0x37, 0x0a, 0xd6, 0x8d, 0x83, 0x55, 0x23, 0x21, 0x1b, 0x46, 0x93, 0x9a, 0x25, 0xd2, 0x24, 0xf2, 0x28, 0xf2, 0x68, - 0x8a, 0xd3, 0x6d, 0xfc, 0x95, 0x92, 0x9a, 0x95, 0x89, 0x57, 0x8b, 0x48, 0x6a, 0x7b, 0xe8, 0x17, - 0xaa, 0x8d, 0x56, 0x10, 0x7b, 0x61, 0x64, 0x83, 0x2e, 0x7b, 0x2d, 0xcb, 0x12, 0x66, 0x11, 0xc2, - 0x84, 0x30, 0x21, 0x4c, 0x89, 0x27, 0x95, 0x0a, 0x4f, 0x07, 0x0d, 0x7e, 0x6d, 0xd6, 0x5a, 0x4e, - 0xe8, 0x55, 0x3d, 0xff, 0xbb, 0x57, 0x93, 0x1f, 0x5b, 0x83, 0x04, 0xb0, 0xb1, 0xdb, 0xbc, 0xca, + 0x8a, 0xd3, 0x6d, 0xf4, 0x95, 0x92, 0x9a, 0x95, 0x89, 0x57, 0x8b, 0x48, 0x6a, 0x7b, 0xe8, 0x17, + 0x2a, 0xf5, 0x66, 0x10, 0x7b, 0x61, 0x64, 0x83, 0x2e, 0xbb, 0x2d, 0xcb, 0x12, 0x66, 0x11, 0xc2, + 0x84, 0x30, 0x21, 0x4c, 0x89, 0x27, 0x95, 0x0a, 0x4f, 0xfb, 0x0d, 0x7e, 0x6d, 0x54, 0x9b, 0x4e, + 0xe8, 0x55, 0x3c, 0xff, 0xbb, 0x57, 0x95, 0x1f, 0x5b, 0xfd, 0x04, 0xb0, 0x91, 0xdb, 0xbc, 0xc9, 0x45, 0xdd, 0x1c, 0x69, 0x73, 0x63, 0xd3, 0xec, 0xd8, 0x37, 0x3f, 0xb6, 0xcd, 0x50, 0x6a, 0xe6, - 0x28, 0x35, 0xb3, 0x94, 0x8a, 0x79, 0xb2, 0x04, 0x5e, 0xc2, 0x23, 0x5e, 0x3c, 0x30, 0x9e, 0x85, - 0x2e, 0x87, 0x25, 0x1b, 0x43, 0xbe, 0x67, 0x60, 0xde, 0x58, 0x68, 0xda, 0x4e, 0xcc, 0x6c, 0x2f, - 0x76, 0x4e, 0x25, 0x86, 0x4e, 0x29, 0xf0, 0x9a, 0x08, 0xc0, 0x6c, 0xdf, 0x27, 0x85, 0x00, 0xcc, - 0x62, 0x8c, 0x9d, 0x4a, 0xac, 0xbd, 0xac, 0x57, 0x5f, 0x7c, 0x53, 0x2a, 0x1d, 0x1e, 0x95, 0x4a, - 0x7b, 0x47, 0xaf, 0x8f, 0xf6, 0x8e, 0x0f, 0x0e, 0x8a, 0x87, 0xc5, 0x83, 0x15, 0x1a, 0x0d, 0x1b, - 0xf9, 0x68, 0xb5, 0x92, 0x51, 0xf9, 0x40, 0xb2, 0x74, 0x64, 0x07, 0x85, 0xa3, 0x2e, 0x0e, 0xd8, - 0xa4, 0xed, 0xce, 0x2d, 0x20, 0x6d, 0x48, 0x1b, 0xd2, 0x86, 0xb4, 0x21, 0x6d, 0x48, 0x1b, 0xd2, - 0x86, 0xb4, 0x21, 0x6d, 0x48, 0x3b, 0xdb, 0xa4, 0x9d, 0x29, 0xb9, 0x5d, 0x78, 0x57, 0xc1, 0xa0, - 0x5d, 0xeb, 0xbb, 0x0b, 0x3a, 0xd9, 0xa0, 0xbb, 0xc2, 0xeb, 0x79, 0xdd, 0xaf, 0x1e, 0x87, 0xad, - 0x6a, 0xdc, 0xdb, 0x03, 0x50, 0xb8, 0x89, 0x9b, 0x77, 0x1f, 0xa3, 0xee, 0x7f, 0xce, 0x7b, 0xdf, - 0xe8, 0xee, 0xbc, 0xff, 0x35, 0xee, 0xde, 0xf5, 0xbf, 0xc0, 0x0a, 0x2d, 0xbf, 0xd6, 0xbc, 0xc8, - 0x7f, 0x08, 0xdc, 0xd8, 0xab, 0xf5, 0x8f, 0x34, 0x75, 0x6b, 0xb5, 0xd0, 0x8b, 0x2c, 0xac, 0xc7, - 0xce, 0xbe, 0x15, 0x29, 0x80, 0xd9, 0x8b, 0xdb, 0x58, 0xa0, 0x5d, 0x4a, 0x5c, 0xb6, 0x2e, 0x29, - 0x80, 0x8f, 0x6e, 0x55, 0x78, 0xfa, 0x6f, 0x0a, 0x9f, 0xe4, 0x30, 0x9c, 0xb6, 0xc2, 0x27, 0x3a, - 0x0c, 0x1a, 0xfe, 0xf3, 0xf3, 0x9e, 0x73, 0xec, 0x3a, 0xf7, 0x65, 0xe7, 0x7d, 0xe5, 0xe7, 0xfe, - 0xf3, 0xd6, 0xc9, 0xf8, 0xdf, 0xb7, 0x7f, 0x1e, 0x3c, 0xff, 0xad, 0x40, 0xd2, 0x50, 0x22, 0xaf, - 0x65, 0xaf, 0xb8, 0xc7, 0x9c, 0x7b, 0xe1, 0xb7, 0xf0, 0x5b, 0xf8, 0xad, 0xb5, 0xf2, 0x5b, 0x16, - 0xce, 0xfe, 0x9f, 0x65, 0x0f, 0x48, 0x66, 0xcf, 0x97, 0x36, 0x44, 0x32, 0x7b, 0xfa, 0xb2, 0x5f, - 0x5a, 0xaf, 0xf4, 0xb0, 0x58, 0x2c, 0x51, 0xee, 0x43, 0xbe, 0xb5, 0x15, 0x85, 0x52, 0x3b, 0xdb, - 0x25, 0x5f, 0xde, 0x00, 0xfc, 0x04, 0x3f, 0xc1, 0xcf, 0xb5, 0xc2, 0x4f, 0x76, 0x4e, 0x02, 0x9b, - 0xe3, 0x64, 0xb2, 0x07, 0x6c, 0xae, 0x1a, 0x6c, 0x96, 0xf6, 0x8f, 0x4b, 0xc7, 0x87, 0x47, 0xfb, - 0xc7, 0x07, 0x00, 0x27, 0xc0, 0x99, 0x08, 0x38, 0x3b, 0xc5, 0x47, 0x83, 0xd6, 0xa3, 0x55, 0xe8, - 0x1c, 0xdc, 0x04, 0xf0, 0x04, 0x3c, 0x01, 0xcf, 0xb5, 0x03, 0xcf, 0xe2, 0xa1, 0x05, 0xf0, 0x3c, - 0x04, 0x3c, 0x01, 0x4f, 0xc0, 0x33, 0x13, 0xaf, 0xf4, 0xf0, 0xe0, 0xe0, 0x35, 0xcc, 0x09, 0x73, - 0x2a, 0x30, 0x67, 0x2a, 0xeb, 0xee, 0x9c, 0xaf, 0x01, 0x7d, 0x42, 0x9f, 0x6b, 0x4c, 0x9f, 0x9c, - 0xaf, 0x01, 0x8d, 0xce, 0x47, 0x17, 0xd6, 0xdc, 0x57, 0x8e, 0x46, 0x39, 0x5f, 0x03, 0x16, 0x4d, - 0xca, 0xa2, 0x61, 0xa3, 0x11, 0xa7, 0xb2, 0x73, 0x61, 0xec, 0x46, 0x90, 0x28, 0x24, 0x0a, 0x89, - 0xae, 0x15, 0x89, 0xb2, 0x6f, 0x81, 0x7d, 0x0b, 0x72, 0x1e, 0x2b, 0x15, 0xf5, 0x64, 0xfc, 0x4e, - 0xf8, 0x2c, 0x7c, 0x16, 0x3e, 0x6b, 0xed, 0xd4, 0x13, 0xf6, 0x2c, 0xa0, 0x9f, 0xa0, 0x9f, 0xac, - 0x95, 0x7e, 0xc2, 0x9e, 0x05, 0x24, 0x94, 0x45, 0xaf, 0xf1, 0xbe, 0x11, 0xfe, 0xc7, 0x0d, 0x6b, - 0x4e, 0x1c, 0xba, 0x41, 0xe4, 0x47, 0x7e, 0xfb, 0x95, 0x5a, 0x10, 0x50, 0xa6, 0xdf, 0x06, 0x14, - 0x05, 0x45, 0x41, 0xd1, 0xb5, 0x42, 0x51, 0x1b, 0xe5, 0xf6, 0x2c, 0x94, 0xd9, 0x83, 0x3d, 0x37, - 0xc9, 0x24, 0x83, 0x3d, 0x0d, 0xc2, 0x89, 0xd4, 0xca, 0xe2, 0x41, 0xa2, 0xab, 0x41, 0xa2, 0x22, - 0xe7, 0xb0, 0x4f, 0xf8, 0x1b, 0x81, 0xf3, 0xd8, 0xe1, 0x4c, 0x38, 0x13, 0xce, 0xcc, 0x19, 0x67, - 0x7e, 0x75, 0x23, 0xcf, 0x19, 0x14, 0x90, 0x74, 0x64, 0x8e, 0x7e, 0x7f, 0x69, 0x09, 0x8a, 0x47, - 0xb2, 0xab, 0x75, 0xbd, 0xf2, 0x99, 0x55, 0xc7, 0xbf, 0x3f, 0x19, 0xa9, 0x83, 0xf9, 0xe2, 0x17, - 0xbd, 0xbf, 0x9b, 0x1f, 0x14, 0x9f, 0x2d, 0xfb, 0x6f, 0x6f, 0x07, 0x1b, 0xdb, 0xd6, 0xf0, 0x03, - 0xf8, 0x81, 0xf5, 0xf4, 0x03, 0x6c, 0x5b, 0x43, 0x6c, 0x40, 0x6c, 0x58, 0x71, 0xb1, 0x81, 0x6d, - 0x6b, 0xa8, 0x0b, 0x49, 0xe8, 0xd2, 0x5e, 0xb6, 0x15, 0x1b, 0xd4, 0xe0, 0x4c, 0x38, 0x73, 0x8d, - 0x39, 0x93, 0x0d, 0x6a, 0x70, 0xe7, 0x7c, 0x48, 0x21, 0xc1, 0x6a, 0xe5, 0xb8, 0x93, 0x0d, 0x6a, - 0x50, 0xe7, 0x62, 0xea, 0xec, 0x1c, 0x5e, 0x64, 0x09, 0x39, 0xbb, 0x6d, 0xc3, 0x9b, 0xf0, 0x26, - 0xbc, 0xb9, 0x56, 0xbc, 0xe9, 0xd7, 0xbc, 0x20, 0xf6, 0xe3, 0x27, 0x4b, 0x0b, 0x5b, 0x92, 0x94, - 0x79, 0xde, 0xfb, 0xaa, 0x6f, 0xdd, 0xc8, 0xb3, 0x77, 0x48, 0xf4, 0xcd, 0xed, 0xd5, 0xdd, 0xd5, - 0xe5, 0xf5, 0xed, 0xdd, 0xcd, 0x6d, 0xf9, 0xf6, 0x4c, 0x7a, 0x4e, 0x74, 0x3c, 0x7e, 0x64, 0xe5, - 0xb8, 0x55, 0x4b, 0x08, 0xd4, 0xef, 0x97, 0xd3, 0xf3, 0x9b, 0xf2, 0xdb, 0x8b, 0xb3, 0xd3, 0x42, - 0x1e, 0xa8, 0xd0, 0x72, 0x5f, 0x5c, 0x9c, 0xdf, 0xdc, 0x9e, 0x7d, 0x3a, 0xff, 0xf4, 0x81, 0xce, - 0xd8, 0x2c, 0x5c, 0x9c, 0x95, 0xaf, 0xe9, 0x8b, 0x6e, 0x5f, 0xbc, 0xbf, 0xbc, 0xfe, 0x77, 0xf9, - 0xfa, 0x94, 0xde, 0xe8, 0xf4, 0xc6, 0xdb, 0x8b, 0xcb, 0x77, 0xff, 0xb4, 0xd3, 0x17, 0xa2, 0x2d, - 0x56, 0xb2, 0x46, 0x0d, 0x99, 0x88, 0x39, 0xc2, 0x46, 0xdd, 0x42, 0xb4, 0xd1, 0x69, 0x95, 0x38, - 0x83, 0x38, 0x83, 0x38, 0x83, 0x38, 0x83, 0x38, 0xe3, 0xfa, 0xf6, 0xee, 0xfa, 0xf2, 0x82, 0x30, - 0x63, 0xd0, 0x2d, 0xe5, 0x8b, 0xdb, 0xb3, 0xeb, 0x4f, 0xed, 0xc8, 0x0b, 0x80, 0x2a, 0x5c, 0x5f, - 0x5e, 0xde, 0xd2, 0x0f, 0x9b, 0x85, 0xb7, 0xe5, 0x77, 0xff, 0xfc, 0xfd, 0x8a, 0x9e, 0xd8, 0x2c, - 0x9c, 0x9e, 0xdd, 0x9c, 0x7f, 0x68, 0x4f, 0x8f, 0x53, 0xa0, 0x3a, 0x75, 0xa8, 0xde, 0x58, 0xe2, - 0x58, 0x2b, 0x94, 0x83, 0xa0, 0x11, 0xbb, 0xb1, 0xdf, 0x90, 0x59, 0xc1, 0x2c, 0x44, 0xd5, 0x6f, - 0xde, 0xa3, 0xdb, 0x1c, 0x24, 0x8b, 0x37, 0xbd, 0xa0, 0xda, 0x01, 0x60, 0x27, 0x6a, 0xba, 0x41, - 0xe0, 0x07, 0x0f, 0x4e, 0x1c, 0x7a, 0xde, 0x6e, 0x14, 0x37, 0x77, 0x1f, 0x7b, 0xff, 0x71, 0xfc, - 0x20, 0x8a, 0xdd, 0xa0, 0xea, 0x45, 0x63, 0x7f, 0xdb, 0x1d, 0xc9, 0x31, 0x1f, 0x66, 0x97, 0x77, - 0x97, 0x14, 0x36, 0x96, 0xd3, 0xe3, 0x7a, 0x57, 0x6a, 0xbe, 0xa3, 0x36, 0xe2, 0x1a, 0xee, 0x11, - 0x2a, 0x5c, 0xf8, 0x51, 0x5c, 0x8e, 0xe3, 0xd0, 0xe8, 0xe5, 0x16, 0x3e, 0xfa, 0xc1, 0x59, 0xdd, - 0x6b, 0xb3, 0x6a, 0xdb, 0xf9, 0x07, 0xad, 0x7a, 0xfd, 0x95, 0x41, 0x63, 0xee, 0x0f, 0xb9, 0xc6, - 0x2e, 0xc3, 0x9a, 0x17, 0x7a, 0xb5, 0xb7, 0x4f, 0xbd, 0xa6, 0x52, 0x7d, 0x3f, 0x42, 0x73, 0xc7, - 0xfa, 0x9c, 0x31, 0xc0, 0xc0, 0x42, 0x14, 0x87, 0xad, 0x6a, 0x1c, 0xf4, 0xe9, 0x32, 0x6e, 0xde, - 0x7d, 0x8c, 0xba, 0xff, 0x39, 0xef, 0xdd, 0xf2, 0xee, 0x7c, 0x70, 0x9f, 0x8d, 0x74, 0xe6, 0x94, - 0xda, 0x15, 0x8a, 0x6f, 0xd7, 0xf4, 0xad, 0x5a, 0x7a, 0x9b, 0x6a, 0x7d, 0x9b, 0xbc, 0x87, 0x14, - 0x7a, 0xa7, 0xd0, 0xf9, 0x6a, 0x35, 0xe5, 0x5e, 0x19, 0xd6, 0x26, 0xec, 0x5e, 0xaf, 0xf8, 0x3e, - 0xf4, 0xe4, 0x18, 0x6d, 0xd9, 0xc5, 0x44, 0x5e, 0x31, 0x97, 0x51, 0x4c, 0xe5, 0x12, 0x31, 0x59, - 0x44, 0x4c, 0xfe, 0x10, 0x91, 0x39, 0xec, 0xce, 0x78, 0x6d, 0x79, 0x62, 0xf0, 0xbe, 0xeb, 0x9e, - 0x7b, 0xaf, 0x27, 0x41, 0x98, 0xec, 0xd5, 0x1b, 0xec, 0xc9, 0xdb, 0xd9, 0xd9, 0xed, 0x9a, 0x98, - 0xdd, 0xde, 0x14, 0xcb, 0x80, 0xb1, 0xd0, 0x4b, 0x2b, 0x19, 0x49, 0x58, 0x54, 0xcf, 0x1c, 0x19, - 0xf4, 0xa5, 0xae, 0xa9, 0xd8, 0xc7, 0x54, 0x60, 0x2a, 0xe6, 0x7e, 0xc3, 0x53, 0x5f, 0x0f, 0xa5, - 0x0b, 0xbd, 0xfa, 0x86, 0xa6, 0x25, 0xc0, 0x87, 0x1b, 0x88, 0xc7, 0xdb, 0xd3, 0x8d, 0x30, 0x8c, - 0x96, 0x3a, 0x8c, 0x97, 0x36, 0x24, 0x96, 0x32, 0xe4, 0x96, 0x2e, 0xa4, 0x96, 0x2a, 0xc4, 0x97, - 0x26, 0xc4, 0x97, 0x22, 0x44, 0x97, 0x1e, 0xd2, 0x8d, 0x89, 0x8d, 0x97, 0x12, 0x84, 0x2b, 0x65, - 0x4b, 0x54, 0xc6, 0x16, 0xab, 0x84, 0x6d, 0xb9, 0xf2, 0x75, 0x25, 0xad, 0xf8, 0xee, 0x95, 0xb6, - 0x7d, 0x35, 0xde, 0x42, 0xf5, 0xd2, 0xc0, 0x1a, 0x6e, 0x9a, 0xc2, 0xc2, 0x62, 0x61, 0xd7, 0xd6, - 0xc2, 0x5a, 0xa8, 0xeb, 0x2c, 0x50, 0xc7, 0x59, 0x68, 0x5b, 0x91, 0x80, 0x56, 0x2e, 0xb9, 0x6d, - 0x48, 0x3a, 0x6b, 0x45, 0x78, 0x5b, 0x90, 0x8d, 0x1d, 0x23, 0x12, 0xd9, 0x48, 0x92, 0xdb, 0x7c, - 0x6c, 0xbd, 0x02, 0xc9, 0x3a, 0xc9, 0x56, 0xde, 0xc3, 0x92, 0x16, 0x63, 0xb2, 0x8c, 0x23, 0xd2, - 0x47, 0x3f, 0x59, 0x3a, 0xea, 0x09, 0x3c, 0x01, 0x4f, 0x08, 0x00, 0x09, 0x00, 0x57, 0xd0, 0xe2, - 0xca, 0x45, 0x82, 0xc2, 0x47, 0x15, 0x61, 0x73, 0xb1, 0xb9, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, - 0x84, 0x84, 0x84, 0x84, 0xeb, 0x13, 0x12, 0x7e, 0x6b, 0xd4, 0x6b, 0x4e, 0xec, 0x1b, 0x54, 0x11, - 0x1f, 0x58, 0xd1, 0x61, 0x53, 0x20, 0x08, 0x08, 0x02, 0x82, 0x28, 0x8d, 0x97, 0x96, 0x1f, 0xc4, - 0x6f, 0x04, 0x78, 0xe3, 0x00, 0xde, 0x48, 0xc7, 0xd9, 0xed, 0xc1, 0x1b, 0xcb, 0x7e, 0x05, 0xfb, - 0x07, 0x07, 0xc0, 0x46, 0x9e, 0x60, 0xa3, 0xee, 0x46, 0xb1, 0x13, 0x37, 0x9a, 0x8d, 0x7a, 0xe3, - 0xe1, 0xc9, 0xa9, 0x7e, 0xeb, 0xd9, 0x1b, 0x43, 0xee, 0x98, 0xda, 0x2a, 0x08, 0x02, 0x82, 0x80, - 0x20, 0x4a, 0xe3, 0xa5, 0x8d, 0xee, 0xb1, 0x5f, 0xfd, 0x2b, 0x32, 0x3a, 0x67, 0x4e, 0xe0, 0x5c, - 0xb9, 0xc2, 0xef, 0x41, 0xd7, 0x0a, 0x17, 0x02, 0x37, 0x68, 0x44, 0x5e, 0xb5, 0x11, 0xd4, 0x8c, - 0xc4, 0x70, 0xc0, 0x06, 0xb0, 0xc9, 0x13, 0xd8, 0xd8, 0x3b, 0x07, 0x0e, 0xd2, 0x49, 0x87, 0x74, - 0x34, 0x37, 0x25, 0x4d, 0xd8, 0x64, 0xad, 0xcd, 0x49, 0xd0, 0x0c, 0x34, 0x83, 0xa0, 0x62, 0x7a, - 0x86, 0x8d, 0xc0, 0x99, 0x35, 0x80, 0x87, 0x92, 0xd7, 0x03, 0x3c, 0x96, 0xfd, 0x0a, 0x4a, 0x7b, - 0xc7, 0x25, 0x40, 0x23, 0x4f, 0xa0, 0xd1, 0xc9, 0xfd, 0xa8, 0x36, 0xa2, 0xd8, 0x9c, 0x35, 0x86, - 0x4d, 0x81, 0x1b, 0xe0, 0x06, 0xb8, 0xa1, 0x8c, 0x1b, 0xaf, 0xf7, 0x49, 0x18, 0x41, 0xe7, 0x00, - 0x37, 0x92, 0xe3, 0xc6, 0xfe, 0x71, 0xe9, 0xf8, 0xf0, 0x68, 0xff, 0x18, 0x75, 0x23, 0x7f, 0xd0, - 0xd1, 0x6c, 0x84, 0x52, 0xd0, 0xd1, 0x69, 0x0a, 0xe8, 0x00, 0x3a, 0x80, 0x0e, 0x34, 0x0e, 0xa0, - 0x03, 0xe8, 0xb0, 0xf9, 0x0a, 0x04, 0xcf, 0xbd, 0x85, 0x37, 0xd2, 0xe1, 0x8d, 0x17, 0xc9, 0x1d, - 0x02, 0x1b, 0x16, 0x27, 0x5a, 0x84, 0x3e, 0xa0, 0x0f, 0xe8, 0x43, 0x69, 0xbc, 0x54, 0x1b, 0xad, - 0x20, 0xf6, 0xc2, 0xa5, 0x67, 0x8b, 0x00, 0x20, 0x00, 0x48, 0x9e, 0x00, 0x84, 0xec, 0x8e, 0xbc, - 0xf3, 0xc8, 0xf7, 0xba, 0x1b, 0x98, 0x33, 0x48, 0xa7, 0x15, 0xb8, 0x03, 0xee, 0x80, 0x3b, 0xd4, - 0x54, 0x8f, 0xc0, 0x6f, 0x04, 0x12, 0xb5, 0x11, 0x8e, 0x0d, 0xda, 0xe8, 0x3d, 0xce, 0xd2, 0x99, - 0x63, 0xd4, 0x98, 0xe8, 0x67, 0x8a, 0x09, 0x6b, 0x42, 0xc2, 0x68, 0x26, 0xd7, 0x5d, 0x56, 0x50, - 0xcd, 0x12, 0x2f, 0x4c, 0x72, 0x83, 0x70, 0xbb, 0x16, 0x8f, 0x4b, 0x17, 0x3c, 0x6b, 0xc6, 0xca, - 0x99, 0xf7, 0xb6, 0x5f, 0x95, 0x5c, 0x1e, 0x4d, 0x2a, 0x6f, 0x2b, 0x23, 0x67, 0xce, 0x54, 0x96, - 0x79, 0xe6, 0x8c, 0xb4, 0x2d, 0x0e, 0x0d, 0xb6, 0x21, 0x4d, 0xf5, 0x56, 0x6f, 0x04, 0xda, 0x92, - 0xaa, 0xe8, 0x33, 0x68, 0xf0, 0xcf, 0xad, 0xd2, 0xde, 0xf1, 0xe7, 0x3d, 0xa7, 0x54, 0xf9, 0x55, - 0xda, 0xfb, 0xbc, 0xe7, 0xbc, 0xa9, 0x7c, 0xde, 0x73, 0x8e, 0x2b, 0xbf, 0x3e, 0x17, 0x9d, 0xd7, - 0xdd, 0x1f, 0x7f, 0xbe, 0x7e, 0x6e, 0xff, 0xed, 0xb8, 0xf7, 0xb7, 0xe2, 0xab, 0xfd, 0xde, 0xdf, - 0xb7, 0xbf, 0x7c, 0xd9, 0xf9, 0xf2, 0x65, 0xc7, 0xa0, 0x81, 0xbf, 0x15, 0x96, 0x3d, 0xe4, 0xd2, - 0x8e, 0x6e, 0x38, 0x6f, 0x67, 0x6a, 0x63, 0x32, 0xe7, 0xed, 0x70, 0xe2, 0xcb, 0xcc, 0x13, 0x5f, - 0x34, 0x8e, 0xb7, 0x52, 0x38, 0xbf, 0x61, 0x43, 0xb0, 0xfb, 0xfa, 0xc7, 0x53, 0x29, 0x6d, 0x9c, - 0xd0, 0x9b, 0x20, 0x46, 0x13, 0xc2, 0x68, 0x02, 0xe8, 0x0d, 0xf8, 0xa4, 0x3d, 0xa8, 0x39, 0xf0, - 0x24, 0x07, 0x5c, 0x41, 0xe9, 0x48, 0x8f, 0x45, 0x67, 0x41, 0x25, 0x1b, 0xb8, 0x8b, 0x87, 0xe1, - 0xfc, 0x4f, 0x2c, 0xe8, 0x5e, 0xd5, 0x6e, 0x35, 0xec, 0xce, 0xf9, 0xcf, 0x3c, 0xfb, 0x49, 0xe6, - 0x3c, 0x45, 0xc2, 0xc3, 0x53, 0x94, 0x0e, 0x4b, 0x49, 0x78, 0x38, 0x4a, 0xe2, 0xc3, 0x50, 0x54, - 0x84, 0x29, 0x75, 0x01, 0x4a, 0x55, 0x68, 0xd2, 0x16, 0x94, 0xb4, 0x85, 0x23, 0x2d, 0x81, 0xc8, - 0x6c, 0x5c, 0x27, 0x3d, 0x7c, 0xa4, 0x70, 0xdf, 0x08, 0xff, 0xe3, 0x86, 0xb5, 0xf6, 0xc0, 0xad, - 0x79, 0x75, 0x37, 0x79, 0x0d, 0xc4, 0xc1, 0x8b, 0x9a, 0x68, 0x21, 0xa9, 0x4f, 0x50, 0x8a, 0xf6, - 0x94, 0xd5, 0x51, 0x1d, 0x35, 0x54, 0x5f, 0xfd, 0xd4, 0x55, 0x3b, 0x8d, 0xd5, 0x4d, 0x63, 0x35, - 0xd3, 0x48, 0xbd, 0x94, 0xa5, 0x04, 0x65, 0x35, 0x52, 0xbb, 0x50, 0x8f, 0x46, 0x61, 0x1e, 0x4d, - 0xd9, 0x4c, 0x83, 0x11, 0x4d, 0x64, 0x30, 0xd3, 0x35, 0x88, 0x81, 0x56, 0xa2, 0x79, 0xbd, 0x80, - 0x20, 0xa2, 0xb3, 0xf6, 0x63, 0x22, 0x47, 0x49, 0x75, 0xd9, 0xeb, 0xbd, 0x25, 0xf6, 0x99, 0xa5, - 0x28, 0xa0, 0x22, 0x05, 0x69, 0x09, 0xdc, 0xf8, 0x37, 0xaf, 0x5e, 0x6f, 0xa8, 0x55, 0xbd, 0x1b, - 0x56, 0xb9, 0x1b, 0x5e, 0x8b, 0xf7, 0xc1, 0xfb, 0xe0, 0x7d, 0xf2, 0xed, 0x7d, 0x8a, 0x78, 0x1f, - 0xe5, 0x2e, 0xc3, 0xfb, 0x98, 0x79, 0x9f, 0x46, 0xbd, 0xe6, 0x74, 0x92, 0xe7, 0x34, 0xbc, 0xcf, - 0xf0, 0xda, 0x84, 0xb6, 0xe6, 0xd4, 0xbb, 0x77, 0x5b, 0xf5, 0x8e, 0xd1, 0x3b, 0xc4, 0x63, 0xe1, - 0xb1, 0xf0, 0x58, 0x78, 0x2c, 0x3c, 0x16, 0x1e, 0x4b, 0xc5, 0x63, 0x3d, 0xba, 0x3f, 0x1c, 0xf7, - 0x41, 0x23, 0x58, 0xea, 0x5f, 0x88, 0xdf, 0xc1, 0xef, 0xe0, 0x77, 0xf2, 0xed, 0x77, 0x0e, 0xf1, - 0x3b, 0xca, 0xd2, 0x26, 0x7e, 0xc7, 0xd8, 0xef, 0x7c, 0x6b, 0x34, 0xf5, 0xfc, 0x4e, 0xfb, 0x42, - 0xfc, 0x0e, 0x7e, 0x07, 0xbf, 0x43, 0xbc, 0xb3, 0x66, 0x7e, 0x47, 0xfb, 0x60, 0x04, 0x1c, 0x4f, - 0xb7, 0x1b, 0x7a, 0xd9, 0x44, 0x8a, 0x5e, 0xa7, 0x73, 0x15, 0x2e, 0x07, 0x97, 0x93, 0xb2, 0xcb, - 0x89, 0xe2, 0xd0, 0x0f, 0x1e, 0x34, 0x7c, 0x8e, 0x4a, 0x4e, 0x79, 0xe1, 0xc2, 0x0b, 0x1e, 0x3a, - 0xb9, 0x68, 0x78, 0x1d, 0xbc, 0xce, 0xb4, 0x2e, 0x7b, 0xbd, 0x8f, 0xd3, 0x31, 0x71, 0x3a, 0xa1, - 0xf7, 0xdd, 0x8f, 0x54, 0xb2, 0x6e, 0x87, 0x45, 0xd4, 0xfa, 0x57, 0xe2, 0x7c, 0x70, 0x3e, 0x4b, - 0x88, 0x77, 0x94, 0x0a, 0x9f, 0x6a, 0x14, 0x3a, 0x5d, 0xaf, 0x80, 0x67, 0x0f, 0xd7, 0xa3, 0x2c, - 0xb4, 0x19, 0x16, 0x12, 0x5d, 0x0b, 0x17, 0x94, 0xed, 0xdd, 0x0b, 0x09, 0xb6, 0x18, 0xcd, 0xd9, - 0xb5, 0xb0, 0xa1, 0xf0, 0x4c, 0x49, 0x9f, 0x45, 0xf9, 0x19, 0x0a, 0x73, 0xf7, 0x4e, 0x4c, 0xdb, - 0xa5, 0x32, 0xfd, 0x79, 0x27, 0x9f, 0x66, 0xca, 0x93, 0x14, 0x42, 0xb7, 0xe9, 0xd7, 0x9c, 0xe6, - 0xf7, 0x39, 0xa5, 0xdf, 0x87, 0x80, 0x30, 0xfc, 0xec, 0x8c, 0x3e, 0x99, 0xbf, 0x0f, 0x63, 0x21, - 0x02, 0x24, 0x71, 0xf9, 0xc9, 0x5d, 0x7c, 0x52, 0x97, 0xae, 0xec, 0xc2, 0x95, 0x5d, 0xb6, 0x92, - 0x8b, 0x56, 0x1b, 0x85, 0x8b, 0xf6, 0x4d, 0x24, 0xab, 0x32, 0xa3, 0x52, 0x4d, 0x46, 0x79, 0xb3, - 0xcd, 0x1e, 0x9b, 0x6d, 0xc4, 0xf9, 0x2d, 0xa5, 0xcd, 0x36, 0xd5, 0xfe, 0x3b, 0x54, 0x0c, 0x25, - 0x7a, 0xd7, 0xa9, 0x05, 0x12, 0x45, 0x02, 0x09, 0x02, 0x09, 0xb5, 0x01, 0x3a, 0xb8, 0xe0, 0x6b, - 0xe8, 0xd7, 0x1e, 0x3c, 0xa7, 0x19, 0xfa, 0x8d, 0xd0, 0x8f, 0x9f, 0xd4, 0x7b, 0xbf, 0xff, 0xbe, - 0x5f, 0x36, 0xa4, 0xd8, 0x85, 0x7a, 0x24, 0xaa, 0x5d, 0x49, 0xcb, 0xa4, 0x82, 0x96, 0x79, 0xe5, - 0x2c, 0xd3, 0x8a, 0x59, 0x62, 0x95, 0xb2, 0xc4, 0x2a, 0x64, 0x89, 0x54, 0xc6, 0xb2, 0xbb, 0xa1, - 0x5f, 0xbb, 0x02, 0xd6, 0x88, 0xd0, 0xdb, 0x74, 0x5e, 0x0c, 0x73, 0x27, 0x6e, 0xb7, 0xaa, 0x31, - 0x02, 0xf4, 0x8f, 0x1b, 0x31, 0xac, 0xea, 0x64, 0x56, 0x81, 0x42, 0xa0, 0xc8, 0x9b, 0x48, 0xe9, - 0x1f, 0xa9, 0xaa, 0x4c, 0x92, 0x75, 0x7d, 0x9e, 0xcd, 0xea, 0x71, 0x64, 0xae, 0x6b, 0x0f, 0x8b, - 0xc5, 0x52, 0x69, 0x2f, 0x43, 0xfd, 0x9b, 0x52, 0x5d, 0x91, 0x8a, 0xad, 0x42, 0x1b, 0x0a, 0x2c, - 0xa4, 0xbd, 0x59, 0x7b, 0xc2, 0x68, 0x69, 0x6e, 0xda, 0xc6, 0x31, 0xe3, 0x98, 0x73, 0xe3, 0x98, - 0x55, 0x93, 0x7e, 0x5e, 0x0e, 0xee, 0x03, 0xbc, 0xb0, 0x99, 0xab, 0x28, 0xe1, 0x85, 0x6d, 0x75, - 0xed, 0x6b, 0x3c, 0xf0, 0x52, 0x3c, 0xb0, 0xc6, 0x26, 0xf5, 0x09, 0xbb, 0xa4, 0xbc, 0x59, 0x1d, - 0xaf, 0x8b, 0xd7, 0xc5, 0xeb, 0xe2, 0x75, 0x89, 0x7d, 0x97, 0xdd, 0xb5, 0x78, 0xdd, 0xe5, 0x78, - 0x5d, 0xf5, 0xcd, 0xf9, 0x93, 0x5e, 0x57, 0x75, 0x93, 0xfe, 0xa0, 0x05, 0x8d, 0xcd, 0xfa, 0x78, - 0x6c, 0x3c, 0x36, 0x1e, 0x1b, 0x8f, 0x8d, 0xc7, 0xc6, 0x63, 0xaf, 0xa5, 0xc7, 0x56, 0x2d, 0x4e, - 0x30, 0x61, 0x94, 0xd4, 0x8a, 0x14, 0xe0, 0x6f, 0xf1, 0xb7, 0xf8, 0x5b, 0xfc, 0x6d, 0x32, 0xa7, - 0x70, 0x88, 0xbf, 0xb5, 0xd5, 0xb5, 0xac, 0x0c, 0x2f, 0xc7, 0xdf, 0xf6, 0x4f, 0x1a, 0xd3, 0xf6, - 0xb7, 0x7a, 0x47, 0x95, 0xe1, 0x6f, 0xf1, 0xb7, 0x99, 0xf7, 0xb7, 0xfa, 0xa7, 0xf0, 0x19, 0x9c, - 0xba, 0x87, 0xc7, 0x25, 0xc2, 0x4d, 0xc9, 0xe3, 0x1e, 0x97, 0xf0, 0xb9, 0x62, 0x3e, 0x37, 0x77, - 0x87, 0xf6, 0x0c, 0x77, 0x11, 0xed, 0xb6, 0x0d, 0xdd, 0x6e, 0x6f, 0xaf, 0x40, 0x8a, 0x5b, 0xa4, - 0xfd, 0x20, 0xf6, 0xc2, 0x7b, 0xb7, 0xea, 0x45, 0xea, 0x3b, 0x1b, 0x46, 0xae, 0x65, 0x77, 0x43, - 0x8a, 0x24, 0xb1, 0xd6, 0xbb, 0x1b, 0x06, 0x83, 0x4e, 0x1f, 0x97, 0x87, 0x4d, 0xe8, 0x01, 0x73, - 0x11, 0x60, 0x06, 0x98, 0xed, 0x00, 0xb3, 0xea, 0x74, 0x18, 0x5c, 0xa8, 0xb8, 0x3b, 0x6d, 0xe6, - 0x70, 0x51, 0xda, 0xad, 0x26, 0x34, 0x41, 0x8c, 0x27, 0x8a, 0xc4, 0x84, 0x91, 0x9b, 0x38, 0x52, - 0x13, 0x48, 0x7c, 0x22, 0x89, 0x4f, 0x28, 0xd1, 0x89, 0x65, 0x48, 0xa1, 0x9a, 0x23, 0x46, 0x77, - 0xc2, 0x8d, 0x4c, 0xbc, 0x28, 0x36, 0x7f, 0xc5, 0xc3, 0xe9, 0x17, 0xc5, 0xa6, 0x6f, 0x57, 0x28, - 0x46, 0x31, 0x9d, 0x8c, 0x92, 0x93, 0x52, 0x7e, 0x72, 0x4a, 0x4f, 0x52, 0x6b, 0x93, 0xd5, 0xda, - 0xa4, 0xb5, 0x32, 0x79, 0xcd, 0x26, 0xb1, 0x40, 0x98, 0x6f, 0x26, 0x3b, 0xcd, 0x1c, 0x6f, 0xca, - 0x35, 0x79, 0x16, 0xcd, 0xce, 0x23, 0x81, 0xa6, 0xcc, 0x54, 0x2a, 0x39, 0xd5, 0xca, 0x8a, 0x8a, - 0x65, 0xc9, 0xac, 0xd9, 0x52, 0xb9, 0x6c, 0xea, 0x32, 0xc2, 0xd3, 0x43, 0x5c, 0x15, 0x4b, 0xfb, - 0x55, 0xed, 0xef, 0xf5, 0xfe, 0xe4, 0xe8, 0x95, 0x6d, 0x64, 0xa3, 0x95, 0x65, 0x9d, 0xce, 0x6f, - 0x22, 0xdc, 0x2a, 0x95, 0x8e, 0x5d, 0x68, 0xc9, 0x15, 0x4a, 0xca, 0x42, 0x58, 0x10, 0x16, 0x84, - 0x95, 0x12, 0x61, 0x7d, 0x75, 0x23, 0xcf, 0x19, 0x28, 0x73, 0x4e, 0xe8, 0xdd, 0x0b, 0xd2, 0x56, - 0x51, 0x02, 0xb7, 0xae, 0x06, 0x92, 0x7e, 0xd5, 0xf1, 0xef, 0x4f, 0x86, 0xea, 0xf7, 0xcb, 0x5f, - 0xf4, 0xfe, 0xde, 0xb1, 0x34, 0x39, 0xb4, 0xb7, 0xcd, 0x46, 0x18, 0xeb, 0x57, 0x8f, 0x99, 0xf9, - 0x82, 0xc7, 0x9b, 0xc5, 0x02, 0x63, 0x81, 0xb1, 0xc0, 0x99, 0xb2, 0xc0, 0x51, 0xdc, 0x74, 0xc6, - 0x26, 0xa9, 0x6e, 0x25, 0x9c, 0x59, 0xb3, 0xf5, 0x80, 0x98, 0x97, 0x98, 0x97, 0x98, 0x57, 0x2f, - 0xe6, 0x2d, 0x11, 0xed, 0xe6, 0x27, 0xda, 0x4d, 0x75, 0x09, 0x43, 0x33, 0x51, 0x65, 0xa2, 0x1d, - 0x93, 0xc4, 0x95, 0x11, 0x18, 0x1e, 0x62, 0xb0, 0x4a, 0x36, 0x8b, 0x79, 0x17, 0xea, 0x54, 0xda, - 0x36, 0x92, 0x16, 0x24, 0x24, 0x05, 0xd3, 0x72, 0xdd, 0xac, 0x98, 0xa6, 0x02, 0xa8, 0xac, 0x98, - 0x0a, 0x82, 0xe7, 0x60, 0xbc, 0xd4, 0x3d, 0xf7, 0xde, 0x2c, 0xce, 0x97, 0x88, 0xef, 0x07, 0x71, - 0xfd, 0xce, 0x4e, 0xcf, 0x62, 0xed, 0xea, 0x47, 0xee, 0xe9, 0x98, 0xad, 0x6e, 0x65, 0x77, 0x63, - 0xbb, 0xd5, 0x6d, 0x66, 0xc9, 0xa9, 0x1e, 0xfb, 0x18, 0x2e, 0x0c, 0x57, 0x2a, 0x86, 0x8b, 0x54, - 0x0f, 0x64, 0x30, 0x64, 0x30, 0x64, 0xb0, 0x05, 0xe3, 0x8d, 0x54, 0x0f, 0x64, 0x2f, 0x64, 0xaf, - 0xac, 0xc8, 0x5e, 0xa4, 0x7a, 0xe4, 0x4e, 0xfc, 0x7a, 0x65, 0x42, 0x58, 0xad, 0x20, 0xf6, 0xc2, - 0x48, 0x92, 0xb2, 0x7a, 0x2d, 0xca, 0x90, 0x56, 0x11, 0xd2, 0x82, 0xb4, 0xd6, 0x93, 0xb4, 0x4c, - 0xc3, 0xa7, 0x41, 0x43, 0x5f, 0x9b, 0xb5, 0x96, 0x13, 0x7a, 0x55, 0xcf, 0xff, 0xee, 0xd5, 0xe4, - 0xc6, 0xc8, 0x20, 0x91, 0x64, 0xac, 0x79, 0xa1, 0xd7, 0x29, 0xeb, 0xe6, 0xc4, 0xcc, 0x80, 0x0d, - 0x73, 0x60, 0xcf, 0x2c, 0xd8, 0x32, 0x0f, 0xd6, 0xcd, 0x84, 0x75, 0x73, 0x61, 0xd5, 0x6c, 0x08, - 0x83, 0x89, 0xd0, 0x88, 0x15, 0x0b, 0xdc, 0x66, 0xb9, 0xfc, 0xc3, 0x92, 0xe4, 0x90, 0xed, 0x19, - 0x80, 0x37, 0x82, 0x4d, 0xca, 0xc6, 0x74, 0xf2, 0xb1, 0x9d, 0xd5, 0x18, 0xcf, 0x72, 0x00, 0x31, - 0x11, 0x48, 0xd8, 0x6a, 0xdf, 0x62, 0x20, 0x61, 0x21, 0x06, 0xb4, 0x1a, 0x0b, 0xa6, 0xfd, 0x4a, - 0x8b, 0x6f, 0x4a, 0xa5, 0xc3, 0xa3, 0x52, 0x69, 0xef, 0xe8, 0xf5, 0xd1, 0xde, 0xf1, 0xc1, 0x41, - 0xf1, 0xb0, 0x78, 0x90, 0xe3, 0xb7, 0xbc, 0x91, 0xcd, 0xd6, 0x2a, 0x19, 0x09, 0x67, 0x05, 0x66, - 0x41, 0x17, 0x0d, 0x23, 0x2f, 0x88, 0x2d, 0x51, 0x67, 0xa7, 0x69, 0x88, 0x13, 0xe2, 0x84, 0x38, - 0x21, 0x4e, 0x88, 0x13, 0xe2, 0x84, 0x38, 0x21, 0x4e, 0x88, 0x33, 0xaf, 0xc4, 0xb9, 0x54, 0xb9, - 0x55, 0x28, 0xab, 0x77, 0xd0, 0x9e, 0x78, 0x76, 0x6f, 0x27, 0x7b, 0x6c, 0x57, 0x68, 0x7d, 0xa5, - 0xfb, 0x15, 0xe3, 0xb0, 0x55, 0x8d, 0x7b, 0x39, 0xb9, 0x85, 0x9b, 0xb8, 0x79, 0xf7, 0xaf, 0xba, - 0x1b, 0xdc, 0x9d, 0xf7, 0x6f, 0x79, 0xf7, 0xae, 0x7f, 0xb3, 0x1c, 0x2e, 0x6d, 0xd5, 0xbc, 0xc8, - 0x7f, 0x08, 0xdc, 0xd8, 0xab, 0xf5, 0x0f, 0x9c, 0x76, 0x6b, 0xb5, 0xd0, 0x8b, 0x04, 0xd7, 0xba, - 0x66, 0xdf, 0x82, 0x34, 0xa3, 0xf4, 0x62, 0x0e, 0x16, 0xbf, 0x48, 0x33, 0x4a, 0x30, 0xde, 0x1e, - 0xdd, 0xaa, 0xd0, 0xf4, 0x1c, 0x9d, 0xa2, 0xc5, 0x37, 0x32, 0x1b, 0x9d, 0x63, 0x2f, 0x0c, 0xc4, - 0x02, 0x85, 0xc2, 0x9f, 0x9f, 0xf7, 0x9c, 0x63, 0xd7, 0xb9, 0x2f, 0x3b, 0xef, 0x2b, 0x3f, 0xf7, - 0x9f, 0xb7, 0x4e, 0xc6, 0xff, 0xbe, 0xfd, 0xf3, 0xe0, 0xf9, 0x6f, 0x85, 0xb5, 0x4c, 0x78, 0x98, - 0x34, 0xd9, 0xf2, 0x1b, 0xaf, 0xe7, 0xdc, 0x03, 0xbf, 0x80, 0x5f, 0xc0, 0x2f, 0x64, 0xca, 0x2f, - 0x44, 0x71, 0xf3, 0xe5, 0x34, 0x95, 0xde, 0x87, 0x4d, 0x42, 0x6a, 0x36, 0xf4, 0x05, 0x12, 0x52, - 0xf3, 0x97, 0x90, 0x7a, 0x58, 0x2c, 0x96, 0xd8, 0x8a, 0xbd, 0x76, 0x70, 0x26, 0xbb, 0xf5, 0xe7, - 0x65, 0xc3, 0x60, 0x18, 0x18, 0x06, 0x86, 0x65, 0x0a, 0xc3, 0xd8, 0x05, 0xb4, 0xea, 0xd0, 0xb5, - 0x07, 0x74, 0xe5, 0xe5, 0x55, 0x95, 0xf6, 0x8f, 0x4b, 0xc7, 0x87, 0x47, 0xfb, 0xc7, 0x07, 0x80, - 0xd7, 0x9a, 0x81, 0x57, 0xa7, 0x20, 0x59, 0xd0, 0x7a, 0xb4, 0x02, 0x5f, 0x83, 0xc6, 0x01, 0x30, - 0x00, 0x0c, 0x00, 0xcb, 0x1c, 0x80, 0x15, 0x0f, 0x05, 0x01, 0xec, 0x10, 0x00, 0x03, 0xc0, 0x00, - 0x30, 0x3d, 0xd5, 0xeb, 0xe0, 0xe0, 0x35, 0xec, 0xb5, 0x96, 0xec, 0x65, 0x75, 0x3d, 0x92, 0x9a, - 0xd0, 0x50, 0x18, 0x14, 0x96, 0x61, 0x0a, 0xa3, 0x26, 0xf4, 0xba, 0x51, 0x19, 0x6b, 0x91, 0xb9, - 0x79, 0x55, 0xd4, 0x84, 0x5e, 0x3f, 0x26, 0x0b, 0x1b, 0x8d, 0xd8, 0x6a, 0xe6, 0xf0, 0xd8, 0x0d, - 0x20, 0x32, 0x88, 0x0c, 0x22, 0xcb, 0x14, 0x91, 0x91, 0x37, 0x4c, 0xde, 0xf0, 0xa4, 0xc1, 0xb6, - 0x1a, 0xa5, 0x8f, 0xdf, 0x01, 0x9f, 0x80, 0x4f, 0xc0, 0x27, 0x64, 0x2e, 0x4a, 0x27, 0x67, 0x98, - 0x38, 0x9d, 0x38, 0x3d, 0x93, 0xaf, 0x8a, 0x9c, 0xe1, 0xf5, 0x01, 0xb3, 0xfb, 0x46, 0xf8, 0x1f, - 0x37, 0xac, 0x39, 0x71, 0xe8, 0x06, 0x91, 0x1f, 0xf9, 0xed, 0x57, 0x24, 0x18, 0xa8, 0x4f, 0x6f, + 0x28, 0x35, 0xb3, 0x94, 0x8a, 0x79, 0xb2, 0x04, 0x5e, 0xc2, 0x23, 0x5e, 0x3c, 0x30, 0x9e, 0x86, + 0x2e, 0xfb, 0x25, 0x1b, 0x43, 0xbe, 0x6b, 0x60, 0xde, 0x59, 0x68, 0xda, 0x4e, 0xcc, 0x6c, 0x2f, + 0x76, 0x4e, 0x25, 0x86, 0x4e, 0x29, 0xf0, 0x1a, 0x0b, 0xc0, 0x6c, 0xdf, 0x27, 0x85, 0x00, 0xcc, + 0x62, 0x8c, 0x9d, 0x4a, 0xac, 0xbd, 0xa8, 0x57, 0x5f, 0x7c, 0x57, 0x2a, 0xed, 0x1f, 0x94, 0x4a, + 0x3b, 0x07, 0x6f, 0x0f, 0x76, 0x0e, 0xf7, 0xf6, 0x8a, 0xfb, 0xc5, 0xbd, 0x25, 0x1a, 0x0d, 0x6b, + 0xf9, 0x68, 0xf5, 0x2e, 0xa3, 0xf2, 0x81, 0x64, 0xe9, 0xc8, 0x36, 0x0a, 0x47, 0x1d, 0x1c, 0xb0, + 0x49, 0xdb, 0xed, 0x5b, 0x40, 0xda, 0x90, 0x36, 0xa4, 0x0d, 0x69, 0x43, 0xda, 0x90, 0x36, 0xa4, + 0x0d, 0x69, 0x43, 0xda, 0x90, 0x76, 0xb6, 0x49, 0x3b, 0x53, 0x72, 0xbb, 0xf0, 0xae, 0x82, 0x7e, + 0xbb, 0xd6, 0x77, 0x17, 0xb4, 0xb3, 0x41, 0xb7, 0x85, 0xd7, 0xf3, 0x3a, 0x5f, 0x3d, 0x0e, 0x9b, + 0x95, 0xb8, 0xbb, 0x07, 0xa0, 0x70, 0x13, 0x37, 0xee, 0x3f, 0x45, 0x9d, 0x3f, 0xce, 0xba, 0xdf, + 0xe8, 0xfe, 0xac, 0xf7, 0x35, 0xee, 0x8f, 0x7b, 0x5f, 0x60, 0x89, 0x96, 0x5f, 0xab, 0x5e, 0xe4, + 0x3f, 0x06, 0x6e, 0xec, 0x55, 0x7b, 0x47, 0x9a, 0xba, 0xd5, 0x6a, 0xe8, 0x45, 0x16, 0xd6, 0x63, + 0xa7, 0xdf, 0x8a, 0x14, 0xc0, 0xec, 0xc5, 0x6d, 0x2c, 0xd0, 0x2e, 0x24, 0x2e, 0x5b, 0x95, 0x14, + 0xc0, 0x27, 0xb7, 0x22, 0x3c, 0xfd, 0xd7, 0x85, 0x4f, 0x72, 0x18, 0x4c, 0x5b, 0xe1, 0x13, 0x1d, + 0xfa, 0x0d, 0xff, 0xeb, 0xf3, 0x8e, 0x73, 0xe8, 0x3a, 0x0f, 0x65, 0xe7, 0xc3, 0xdd, 0xcf, 0xdd, + 0x97, 0x8d, 0xa3, 0xd1, 0xbf, 0x6f, 0xfe, 0xdc, 0x7b, 0xf9, 0x4b, 0x81, 0xa4, 0xa1, 0x44, 0x5e, + 0xcb, 0x5e, 0x71, 0x8f, 0x19, 0xf7, 0xc2, 0x6f, 0xe1, 0xb7, 0xf0, 0x5b, 0x2b, 0xe5, 0xb7, 0x2c, + 0x9c, 0xfd, 0x3f, 0xcd, 0x1e, 0x90, 0xcc, 0x9e, 0x2f, 0x6d, 0x88, 0x64, 0xf6, 0xf4, 0x65, 0xbf, + 0xb4, 0x5e, 0xe9, 0x7e, 0xb1, 0x58, 0xa2, 0xdc, 0x87, 0x7c, 0x6b, 0x4b, 0x0a, 0xa5, 0x76, 0xb6, + 0x4b, 0xbe, 0xbe, 0x01, 0xf8, 0x09, 0x7e, 0x82, 0x9f, 0x2b, 0x85, 0x9f, 0xec, 0x9c, 0x04, 0x36, + 0x47, 0xc9, 0x64, 0x07, 0xd8, 0x5c, 0x36, 0xd8, 0x2c, 0xed, 0x1e, 0x96, 0x0e, 0xf7, 0x0f, 0x76, + 0x0f, 0xf7, 0x00, 0x4e, 0x80, 0x33, 0x11, 0x70, 0xb6, 0x8b, 0x8f, 0x06, 0xcd, 0x27, 0xab, 0xd0, + 0xd9, 0xbf, 0x09, 0xe0, 0x09, 0x78, 0x02, 0x9e, 0x2b, 0x07, 0x9e, 0xc5, 0x7d, 0x0b, 0xe0, 0xb9, + 0x0f, 0x78, 0x02, 0x9e, 0x80, 0x67, 0x26, 0x5e, 0xe9, 0xfe, 0xde, 0xde, 0x5b, 0x98, 0x13, 0xe6, + 0x54, 0x60, 0xce, 0x54, 0xd6, 0xdd, 0x39, 0x5f, 0x03, 0xfa, 0x84, 0x3e, 0x57, 0x98, 0x3e, 0x39, + 0x5f, 0x03, 0x1a, 0x9d, 0x8d, 0x2e, 0xac, 0xb9, 0x2f, 0x1d, 0x8d, 0x72, 0xbe, 0x06, 0x2c, 0x9a, + 0x94, 0x45, 0xc3, 0x7a, 0x3d, 0x4e, 0x65, 0xe7, 0xc2, 0xc8, 0x8d, 0x20, 0x51, 0x48, 0x14, 0x12, + 0x5d, 0x29, 0x12, 0x65, 0xdf, 0x02, 0xfb, 0x16, 0xe4, 0x3c, 0x56, 0x2a, 0xea, 0xc9, 0xe8, 0x9d, + 0xf0, 0x59, 0xf8, 0x2c, 0x7c, 0xd6, 0xca, 0xa9, 0x27, 0xec, 0x59, 0x40, 0x3f, 0x41, 0x3f, 0x59, + 0x29, 0xfd, 0x84, 0x3d, 0x0b, 0x48, 0x28, 0xf3, 0x5e, 0xe3, 0x43, 0x3d, 0xfc, 0x8f, 0x1b, 0x56, + 0x9d, 0x38, 0x74, 0x83, 0xc8, 0x8f, 0xfc, 0xd6, 0x2b, 0xb5, 0x20, 0xa0, 0x4c, 0xbe, 0x0d, 0x28, + 0x0a, 0x8a, 0x82, 0xa2, 0x2b, 0x85, 0xa2, 0x36, 0xca, 0xed, 0x59, 0x28, 0xb3, 0x07, 0x7b, 0xae, + 0x93, 0x49, 0x06, 0x7b, 0x1a, 0x84, 0x13, 0xa9, 0x95, 0xc5, 0x83, 0x44, 0x97, 0x83, 0x44, 0x45, + 0xce, 0x61, 0x1f, 0xf3, 0x37, 0x02, 0xe7, 0xb1, 0xc3, 0x99, 0x70, 0x26, 0x9c, 0x99, 0x33, 0xce, + 0xfc, 0xea, 0x46, 0x9e, 0xd3, 0x2f, 0x20, 0xe9, 0xc8, 0x1c, 0xfd, 0xfe, 0xda, 0x12, 0x14, 0x0f, + 0x64, 0x57, 0xeb, 0xba, 0xe5, 0x33, 0x2b, 0x8e, 0xff, 0x70, 0x34, 0x54, 0x07, 0xf3, 0xd5, 0x2f, + 0xba, 0x7f, 0x37, 0x3f, 0x28, 0x3e, 0x5b, 0xf6, 0xdf, 0xde, 0x0e, 0x36, 0xb6, 0xad, 0xe1, 0x07, + 0xf0, 0x03, 0xab, 0xe9, 0x07, 0xd8, 0xb6, 0x86, 0xd8, 0x80, 0xd8, 0xb0, 0xe4, 0x62, 0x03, 0xdb, + 0xd6, 0x50, 0x17, 0x92, 0xd0, 0xa5, 0xbd, 0x6c, 0x2b, 0x36, 0xa8, 0xc1, 0x99, 0x70, 0xe6, 0x0a, + 0x73, 0x26, 0x1b, 0xd4, 0xe0, 0xce, 0xd9, 0x90, 0x42, 0x82, 0xd5, 0xd2, 0x71, 0x27, 0x1b, 0xd4, + 0xa0, 0xce, 0xf9, 0xd4, 0xd9, 0x3e, 0xbc, 0xc8, 0x12, 0x72, 0x76, 0xda, 0x86, 0x37, 0xe1, 0x4d, + 0x78, 0x73, 0xa5, 0x78, 0xd3, 0xaf, 0x7a, 0x41, 0xec, 0xc7, 0xcf, 0x96, 0x16, 0xb6, 0x24, 0x29, + 0xf3, 0xac, 0xfb, 0x55, 0xdf, 0xbb, 0x91, 0x67, 0xef, 0x90, 0xe8, 0x9b, 0xdb, 0xab, 0xfb, 0xab, + 0xcb, 0xeb, 0xdb, 0xfb, 0x9b, 0xdb, 0xf2, 0xed, 0xa9, 0xf4, 0x9c, 0x68, 0x7b, 0xfc, 0xc8, 0xca, + 0x71, 0xab, 0x96, 0x10, 0xa8, 0xd7, 0x2f, 0xe7, 0x67, 0x37, 0xb7, 0xa7, 0x17, 0x67, 0x17, 0x1f, + 0x0b, 0x79, 0xc0, 0x42, 0xcb, 0x9d, 0x71, 0x72, 0x76, 0x53, 0x7e, 0x7f, 0x7e, 0x7a, 0x42, 0x5f, + 0xac, 0x17, 0xde, 0x9f, 0x5f, 0x1e, 0xff, 0x83, 0x71, 0xd1, 0x99, 0x24, 0xa7, 0xe5, 0x6b, 0xe6, + 0x48, 0xa7, 0x2f, 0x3e, 0x5c, 0x5e, 0xff, 0x51, 0xbe, 0x3e, 0xb1, 0xd3, 0x1b, 0xa2, 0x2d, 0xde, + 0x65, 0x8d, 0x1a, 0x32, 0x11, 0x73, 0x84, 0xf5, 0x9a, 0x85, 0x68, 0xa3, 0xdd, 0x2a, 0x71, 0x06, + 0x71, 0x06, 0x71, 0x06, 0x71, 0x06, 0x71, 0xc6, 0xf5, 0xed, 0xfd, 0xf5, 0xe5, 0x39, 0x61, 0x46, + 0xbf, 0x5b, 0xae, 0x2f, 0x2f, 0x6f, 0xa1, 0xa7, 0xf5, 0xc2, 0xfb, 0xf2, 0xf1, 0x3f, 0x7e, 0xbf, + 0xa2, 0x27, 0xd6, 0x0b, 0x27, 0xa7, 0x37, 0x67, 0x1f, 0x2f, 0xca, 0xb7, 0x44, 0x5b, 0xad, 0xde, + 0x28, 0x9f, 0xdf, 0x9e, 0x5e, 0xb7, 0x7a, 0x03, 0xa8, 0x4e, 0x1d, 0xaa, 0xd7, 0x16, 0x38, 0xd4, + 0x0a, 0xe5, 0x20, 0xa8, 0xc7, 0x6e, 0xec, 0xd7, 0x65, 0x56, 0x30, 0x0b, 0x51, 0xe5, 0x9b, 0xf7, + 0xe4, 0x36, 0xfa, 0xc9, 0xe2, 0x0d, 0x2f, 0xa8, 0xb4, 0x01, 0xd8, 0x89, 0x1a, 0x6e, 0x10, 0xf8, + 0xc1, 0xa3, 0x13, 0x87, 0x9e, 0xb7, 0x1d, 0xc5, 0x8d, 0xed, 0xa7, 0xee, 0x1f, 0x8e, 0x1f, 0x44, + 0xb1, 0x1b, 0x54, 0xbc, 0x68, 0xe4, 0x6f, 0xdb, 0x43, 0x39, 0xe6, 0x83, 0xec, 0xf2, 0xce, 0x92, + 0xc2, 0xda, 0x62, 0x7a, 0x5c, 0xef, 0x4a, 0xcd, 0x77, 0xd4, 0x42, 0x5c, 0xc3, 0x3d, 0x42, 0x85, + 0x73, 0x3f, 0x8a, 0xcb, 0x71, 0x1c, 0x1a, 0xbd, 0xdc, 0xc2, 0x27, 0x3f, 0x38, 0xad, 0x79, 0x2d, + 0x56, 0x6d, 0x39, 0xff, 0xa0, 0x59, 0xab, 0xbd, 0x31, 0x68, 0xcc, 0xfd, 0x21, 0xd7, 0xd8, 0x65, + 0x58, 0xf5, 0x42, 0xaf, 0xfa, 0xfe, 0xb9, 0xdb, 0x54, 0xaa, 0xef, 0x47, 0x68, 0xee, 0x58, 0x9f, + 0x33, 0x06, 0x18, 0x58, 0x88, 0xe2, 0xb0, 0x59, 0x89, 0x83, 0x1e, 0x5d, 0xc6, 0x8d, 0xfb, 0x4f, + 0x51, 0xe7, 0x8f, 0xb3, 0xee, 0x2d, 0xef, 0xcf, 0xfa, 0xf7, 0x59, 0x4b, 0x67, 0x4e, 0xa9, 0x5d, + 0xa1, 0xf8, 0x76, 0x4d, 0xdf, 0xaa, 0xa5, 0xb7, 0xa9, 0xd6, 0xb7, 0xc9, 0x7b, 0x48, 0xa1, 0x77, + 0x0a, 0xed, 0xaf, 0x56, 0x55, 0xee, 0x95, 0x41, 0x6d, 0xc2, 0xce, 0xf5, 0x8a, 0xef, 0x43, 0x4f, + 0x8e, 0xd1, 0x96, 0x5d, 0x4c, 0xe4, 0x15, 0x73, 0x19, 0xc5, 0x54, 0x2e, 0x11, 0x93, 0x45, 0xc4, + 0xe4, 0x0f, 0x11, 0x99, 0xc3, 0xee, 0x8c, 0xd7, 0x96, 0x27, 0xfa, 0xef, 0xbb, 0xe6, 0xb9, 0x0f, + 0x7a, 0x12, 0x84, 0xc9, 0x5e, 0xbd, 0xfe, 0x9e, 0xbc, 0xad, 0xad, 0xed, 0x8e, 0x89, 0xd9, 0xee, + 0x4e, 0xb1, 0x0c, 0x18, 0x0b, 0xbd, 0xb4, 0x92, 0xa1, 0x84, 0x45, 0xf5, 0xcc, 0x91, 0x7e, 0x5f, + 0xea, 0x9a, 0x8a, 0x5d, 0x4c, 0x05, 0xa6, 0x62, 0xe6, 0x37, 0x3c, 0xf1, 0xf5, 0x50, 0xba, 0xd0, + 0xad, 0x6f, 0x68, 0x5a, 0x02, 0x7c, 0xb0, 0x81, 0x78, 0xb4, 0x3d, 0xdd, 0x08, 0xc3, 0x68, 0xa9, + 0xc3, 0x78, 0x69, 0x43, 0x62, 0x29, 0x43, 0x6e, 0xe9, 0x42, 0x6a, 0xa9, 0x42, 0x7c, 0x69, 0x42, + 0x7c, 0x29, 0x42, 0x74, 0xe9, 0x21, 0xdd, 0x98, 0xd8, 0x78, 0x29, 0x41, 0xb8, 0x52, 0xb6, 0x44, + 0x65, 0x6c, 0xb1, 0x4a, 0xd8, 0x96, 0x2b, 0x5f, 0xdf, 0xa5, 0x15, 0xdf, 0xbd, 0xd1, 0xb6, 0xaf, + 0xc6, 0x5b, 0xa8, 0x5e, 0x1b, 0x58, 0xc3, 0x4d, 0x53, 0x58, 0x58, 0x2c, 0xec, 0xca, 0x5a, 0x58, + 0x0b, 0x75, 0x9d, 0x05, 0xea, 0x38, 0x0b, 0x6d, 0x2b, 0x12, 0xd0, 0xca, 0x25, 0xb7, 0x0d, 0x49, + 0x67, 0xad, 0x08, 0x6f, 0x0b, 0xb2, 0xb1, 0x63, 0x44, 0x22, 0x1b, 0x49, 0x72, 0x9b, 0x8f, 0xad, + 0x57, 0x20, 0x59, 0x27, 0xd9, 0xca, 0x7b, 0x58, 0xd0, 0x62, 0x4c, 0x96, 0x71, 0x44, 0xfa, 0xe8, + 0x27, 0x4b, 0x47, 0x3d, 0x81, 0x27, 0xe0, 0x09, 0x01, 0x20, 0x01, 0xe0, 0x12, 0x5a, 0x5c, 0xb9, + 0x48, 0x50, 0xf8, 0xa8, 0x22, 0x6c, 0x2e, 0x36, 0x97, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x70, 0x75, 0x42, 0xc2, 0x6f, 0xf5, 0x5a, 0xd5, 0x89, 0x7d, 0x83, 0x2a, 0xe2, 0x7d, + 0x2b, 0x3a, 0x68, 0x0a, 0x04, 0x01, 0x41, 0x40, 0x10, 0xa5, 0xf1, 0xd2, 0xf4, 0x83, 0xf8, 0x9d, + 0x00, 0x6f, 0xec, 0xc1, 0x1b, 0xe9, 0x38, 0xbb, 0x1d, 0x78, 0x63, 0xd1, 0xaf, 0x60, 0x77, 0x6f, + 0x0f, 0xd8, 0xc8, 0x13, 0x6c, 0xd4, 0xdc, 0x28, 0x76, 0xe2, 0x7a, 0xa3, 0x5e, 0xab, 0x3f, 0x3e, + 0x3b, 0x95, 0x6f, 0x5d, 0x7b, 0x63, 0xc8, 0x1d, 0x13, 0x5b, 0x05, 0x41, 0x40, 0x10, 0x10, 0x44, + 0x69, 0xbc, 0xb4, 0xd0, 0x3d, 0xf6, 0x2b, 0xff, 0x8e, 0x8c, 0xce, 0x99, 0x13, 0x38, 0x57, 0xae, + 0xf0, 0x7b, 0xd0, 0xb1, 0xc2, 0x85, 0xc0, 0x0d, 0xea, 0x91, 0x57, 0xa9, 0x07, 0x55, 0x23, 0x31, + 0x1c, 0xb0, 0x01, 0x6c, 0xf2, 0x04, 0x36, 0xf6, 0xce, 0x81, 0x83, 0x74, 0xd2, 0x21, 0x1d, 0xcd, + 0x4d, 0x49, 0x63, 0x36, 0x59, 0x6b, 0x73, 0x12, 0x34, 0x03, 0xcd, 0x20, 0xa8, 0x98, 0x9e, 0x61, + 0x23, 0x70, 0x66, 0x0d, 0xe0, 0xa1, 0xe4, 0xf5, 0x00, 0x8f, 0x45, 0xbf, 0x82, 0xd2, 0xce, 0x61, + 0x09, 0xd0, 0xc8, 0x13, 0x68, 0xb4, 0x73, 0x3f, 0x2a, 0xf5, 0x28, 0x36, 0x67, 0x8d, 0x41, 0x53, + 0xe0, 0x06, 0xb8, 0x01, 0x6e, 0x28, 0xe3, 0xc6, 0xdb, 0x5d, 0x12, 0x46, 0xd0, 0x39, 0xc0, 0x8d, + 0xe4, 0xb8, 0xb1, 0x7b, 0x58, 0x3a, 0xdc, 0x3f, 0xd8, 0x3d, 0x44, 0xdd, 0xc8, 0x1f, 0x74, 0x34, + 0xea, 0xa1, 0x14, 0x74, 0xb4, 0x9b, 0x02, 0x3a, 0x80, 0x0e, 0xa0, 0x03, 0x8d, 0x03, 0xe8, 0x00, + 0x3a, 0x6c, 0xbe, 0x02, 0xc1, 0x73, 0x6f, 0xe1, 0x8d, 0x74, 0x78, 0xe3, 0x55, 0x72, 0x87, 0xc0, + 0x86, 0xc5, 0xb1, 0x16, 0xa1, 0x0f, 0xe8, 0x03, 0xfa, 0x50, 0x1a, 0x2f, 0x95, 0x7a, 0x33, 0x88, + 0xbd, 0x70, 0xe1, 0xd9, 0x22, 0x00, 0x08, 0x00, 0x92, 0x27, 0x00, 0x21, 0xbb, 0x23, 0xef, 0x3c, + 0xf2, 0xbd, 0xe6, 0x06, 0xe6, 0x0c, 0xd2, 0x6e, 0x05, 0xee, 0x80, 0x3b, 0xe0, 0x0e, 0x35, 0xd5, + 0x23, 0xf0, 0xeb, 0x81, 0x44, 0x6d, 0x84, 0x43, 0x83, 0x36, 0xba, 0x8f, 0xb3, 0x70, 0xe6, 0x18, + 0x36, 0x26, 0xfa, 0x99, 0x62, 0xc2, 0x9a, 0x90, 0x30, 0x9a, 0xc9, 0x75, 0x97, 0x15, 0x54, 0xb3, + 0xc4, 0x0b, 0xe3, 0xdc, 0x20, 0xdc, 0xae, 0xc5, 0xe3, 0xd2, 0x05, 0x8f, 0x9a, 0xb1, 0x72, 0xe6, + 0xbd, 0xed, 0x57, 0x25, 0x97, 0x47, 0x93, 0xca, 0xdb, 0xca, 0xc8, 0x99, 0x33, 0x77, 0x8b, 0x3c, + 0x73, 0x46, 0xda, 0x16, 0x87, 0x06, 0xdb, 0x90, 0x26, 0x7a, 0xab, 0x77, 0x02, 0x6d, 0x49, 0x55, + 0xf4, 0xe9, 0x37, 0xf8, 0xaf, 0x8d, 0xd2, 0xce, 0xe1, 0xe7, 0x1d, 0xa7, 0x74, 0xf7, 0xab, 0xb4, + 0xf3, 0x79, 0xc7, 0x79, 0x77, 0xf7, 0x79, 0xc7, 0x39, 0xbc, 0xfb, 0xf5, 0xb9, 0xe8, 0xbc, 0xed, + 0xfc, 0xf8, 0xf3, 0xed, 0x4b, 0xeb, 0x6f, 0x87, 0xdd, 0xbf, 0x15, 0xdf, 0xec, 0x76, 0xff, 0xbe, + 0xf9, 0xe5, 0xcb, 0xd6, 0x97, 0x2f, 0x5b, 0x06, 0x0d, 0xfc, 0xa5, 0xb0, 0xe8, 0x21, 0x97, 0x76, + 0x74, 0xc3, 0x79, 0x3b, 0x13, 0x1b, 0x93, 0x39, 0x6f, 0x87, 0x13, 0x5f, 0xa6, 0x9e, 0xf8, 0xa2, + 0x71, 0xbc, 0x95, 0xc2, 0xf9, 0x0d, 0x6b, 0x82, 0xdd, 0xd7, 0x3b, 0x9e, 0x4a, 0x69, 0xe3, 0x84, + 0xde, 0x04, 0x31, 0x9a, 0x10, 0x46, 0x13, 0x40, 0x6f, 0xc0, 0x27, 0xed, 0x41, 0xcd, 0x81, 0x27, + 0x39, 0xe0, 0x0a, 0x4a, 0x47, 0x7a, 0xcc, 0x3b, 0x0b, 0x2a, 0xd9, 0xc0, 0x9d, 0x3f, 0x0c, 0x67, + 0x7f, 0x62, 0x4e, 0xf7, 0xaa, 0x76, 0xab, 0x61, 0x77, 0xce, 0x7e, 0xe6, 0xe9, 0x4f, 0x32, 0xe3, + 0x29, 0x12, 0x1e, 0x9e, 0xa2, 0x74, 0x58, 0x4a, 0xc2, 0xc3, 0x51, 0x12, 0x1f, 0x86, 0xa2, 0x22, + 0x4c, 0xa9, 0x0b, 0x50, 0xaa, 0x42, 0x93, 0xb6, 0xa0, 0xa4, 0x2d, 0x1c, 0x69, 0x09, 0x44, 0x66, + 0xe3, 0x3a, 0xe9, 0xe1, 0x23, 0x85, 0x87, 0x7a, 0xf8, 0x1f, 0x37, 0xac, 0xb6, 0x06, 0x6e, 0xd5, + 0xab, 0xb9, 0xc9, 0x6b, 0x20, 0xf6, 0x5f, 0xd4, 0x58, 0x0b, 0x49, 0x7d, 0x82, 0x52, 0xb4, 0xa7, + 0xac, 0x8e, 0xea, 0xa8, 0xa1, 0xfa, 0xea, 0xa7, 0xae, 0xda, 0x69, 0xac, 0x6e, 0x1a, 0xab, 0x99, + 0x46, 0xea, 0xa5, 0x2c, 0x25, 0x28, 0xab, 0x91, 0xda, 0x85, 0x7a, 0x34, 0x0a, 0xf3, 0x68, 0xca, + 0x66, 0x1a, 0x8c, 0x68, 0x22, 0x83, 0x99, 0xae, 0x41, 0xf4, 0xb5, 0x12, 0xcd, 0xeb, 0x05, 0x04, + 0x11, 0x9d, 0xb5, 0x1f, 0x13, 0x39, 0x4a, 0xaa, 0xcb, 0xde, 0xee, 0x2c, 0xb0, 0xcf, 0x2c, 0x45, + 0x01, 0x77, 0x52, 0x90, 0x96, 0xc0, 0x8d, 0x7f, 0xf3, 0x6a, 0xb5, 0xba, 0x5a, 0xd5, 0xbb, 0x41, + 0x95, 0xbb, 0xc1, 0xb5, 0x78, 0x1f, 0xbc, 0x0f, 0xde, 0x27, 0xdf, 0xde, 0xa7, 0x88, 0xf7, 0x51, + 0xee, 0x32, 0xbc, 0x8f, 0x99, 0xf7, 0xa9, 0xd7, 0xaa, 0x4e, 0x3b, 0x79, 0x4e, 0xc3, 0xfb, 0x0c, + 0xae, 0x4d, 0x68, 0x6b, 0x4e, 0xbc, 0x07, 0xb7, 0x59, 0x6b, 0x1b, 0xbd, 0x7d, 0x3c, 0x16, 0x1e, + 0x0b, 0x8f, 0x85, 0xc7, 0xc2, 0x63, 0xe1, 0xb1, 0x54, 0x3c, 0xd6, 0x93, 0xfb, 0xc3, 0x71, 0x1f, + 0x35, 0x82, 0xa5, 0xde, 0x85, 0xf8, 0x1d, 0xfc, 0x0e, 0x7e, 0x27, 0xdf, 0x7e, 0x67, 0x1f, 0xbf, + 0xa3, 0x2c, 0x6d, 0xe2, 0x77, 0x8c, 0xfd, 0xce, 0xb7, 0x7a, 0x43, 0xcf, 0xef, 0xb4, 0x2e, 0xc4, + 0xef, 0xe0, 0x77, 0xf0, 0x3b, 0xc4, 0x3b, 0x2b, 0xe6, 0x77, 0xb4, 0x0f, 0x46, 0xc0, 0xf1, 0x74, + 0xba, 0xa1, 0x9b, 0x4d, 0xa4, 0xe8, 0x75, 0xda, 0x57, 0xe1, 0x72, 0x70, 0x39, 0x29, 0xbb, 0x9c, + 0x28, 0x0e, 0xfd, 0xe0, 0x51, 0xc3, 0xe7, 0xa8, 0xe4, 0x94, 0x17, 0xce, 0xbd, 0xe0, 0xb1, 0x9d, + 0x8b, 0x86, 0xd7, 0xc1, 0xeb, 0x4c, 0xea, 0xb2, 0xb7, 0xbb, 0x38, 0x1d, 0x13, 0xa7, 0x13, 0x7a, + 0xdf, 0xfd, 0x48, 0x25, 0xeb, 0x76, 0x50, 0x44, 0xad, 0x77, 0x25, 0xce, 0x07, 0xe7, 0xb3, 0x80, + 0x78, 0x47, 0xa9, 0xf0, 0xa9, 0x46, 0xa1, 0xd3, 0xd5, 0x0a, 0x78, 0x76, 0x70, 0x3d, 0xca, 0x42, + 0x9b, 0x61, 0x21, 0xd1, 0x95, 0x70, 0x41, 0xd9, 0xde, 0xbd, 0x90, 0x60, 0x8b, 0xd1, 0x8c, 0x5d, + 0x0b, 0x6b, 0x0a, 0xcf, 0x94, 0xf4, 0x59, 0x94, 0x9f, 0xa1, 0x30, 0x73, 0xef, 0xc4, 0xa4, 0x5d, + 0x2a, 0x93, 0x9f, 0x77, 0xfc, 0x69, 0x26, 0x3c, 0x49, 0x21, 0x74, 0x1b, 0x7e, 0xd5, 0x69, 0x7c, + 0x9f, 0x51, 0xfa, 0x7d, 0x00, 0x08, 0x83, 0xcf, 0x4e, 0xe9, 0x93, 0xd9, 0xfb, 0x30, 0xe6, 0x22, + 0x40, 0x12, 0x97, 0x9f, 0xdc, 0xc5, 0x27, 0x75, 0xe9, 0xca, 0x2e, 0x5c, 0xd9, 0x65, 0x2b, 0xb9, + 0x68, 0xb5, 0x51, 0x38, 0x6f, 0xdf, 0x44, 0xb2, 0x2a, 0x33, 0x2a, 0xd5, 0x64, 0x94, 0x37, 0xdb, + 0xec, 0xb0, 0xd9, 0x46, 0x9c, 0xdf, 0x52, 0xda, 0x6c, 0x53, 0xe9, 0xbd, 0x43, 0xc5, 0x50, 0xa2, + 0x7b, 0x9d, 0x5a, 0x20, 0x51, 0x24, 0x90, 0x20, 0x90, 0x50, 0x1b, 0xa0, 0xfd, 0x0b, 0xbe, 0x86, + 0x7e, 0xf5, 0xd1, 0x73, 0x1a, 0xa1, 0x5f, 0x0f, 0xfd, 0xf8, 0x59, 0xbd, 0xf7, 0x7b, 0xef, 0xfb, + 0x75, 0x43, 0x8a, 0x5d, 0xa8, 0x47, 0xa2, 0xda, 0x95, 0xb4, 0x4c, 0x2a, 0x68, 0x99, 0x57, 0xce, + 0x32, 0xad, 0x98, 0x25, 0x56, 0x29, 0x4b, 0xac, 0x42, 0x96, 0x48, 0x65, 0x2c, 0xbb, 0x1b, 0xfa, + 0xb5, 0x2b, 0x60, 0x0d, 0x09, 0xbd, 0x0d, 0xe7, 0xd5, 0x30, 0x77, 0xe2, 0x56, 0xab, 0x1a, 0x23, + 0x40, 0xff, 0xb8, 0x11, 0xc3, 0xaa, 0x4e, 0x66, 0x15, 0x28, 0x04, 0x8a, 0xbc, 0x89, 0x94, 0xfe, + 0x91, 0xaa, 0xca, 0x24, 0x59, 0xd7, 0xe7, 0xc5, 0xac, 0x1e, 0x47, 0xe6, 0xba, 0x76, 0xbf, 0x58, + 0x2c, 0x95, 0x76, 0x32, 0xd4, 0xbf, 0x29, 0xd5, 0x15, 0xb9, 0xb3, 0x55, 0x68, 0x43, 0x81, 0x85, + 0xb4, 0x37, 0x6b, 0x8f, 0x19, 0x2d, 0xcd, 0x4d, 0xdb, 0x38, 0x66, 0x1c, 0x73, 0x6e, 0x1c, 0xb3, + 0x6a, 0xd2, 0xcf, 0xeb, 0xc1, 0xbd, 0x87, 0x17, 0x36, 0x73, 0x15, 0x25, 0xbc, 0xb0, 0xad, 0xae, + 0x7d, 0x8b, 0x07, 0x5e, 0x88, 0x07, 0xd6, 0xd8, 0xa4, 0x3e, 0x66, 0x97, 0x94, 0x37, 0xab, 0xe3, + 0x75, 0xf1, 0xba, 0x78, 0x5d, 0xbc, 0x2e, 0xb1, 0xef, 0xa2, 0xbb, 0x16, 0xaf, 0xbb, 0x18, 0xaf, + 0xab, 0xbe, 0x39, 0x7f, 0xdc, 0xeb, 0xaa, 0x6e, 0xd2, 0xef, 0xb7, 0xa0, 0xb1, 0x59, 0x1f, 0x8f, + 0x8d, 0xc7, 0xc6, 0x63, 0xe3, 0xb1, 0xf1, 0xd8, 0x78, 0xec, 0x95, 0xf4, 0xd8, 0xaa, 0xc5, 0x09, + 0xc6, 0x8c, 0x92, 0x5a, 0x91, 0x02, 0xfc, 0x2d, 0xfe, 0x16, 0x7f, 0x8b, 0xbf, 0x4d, 0xe6, 0x14, + 0xf6, 0xf1, 0xb7, 0xb6, 0xba, 0x96, 0x95, 0xe1, 0xc5, 0xf8, 0xdb, 0xde, 0x49, 0x63, 0xda, 0xfe, + 0x56, 0xef, 0xa8, 0x32, 0xfc, 0x2d, 0xfe, 0x36, 0xf3, 0xfe, 0x56, 0xff, 0x14, 0x3e, 0x83, 0x53, + 0xf7, 0xf0, 0xb8, 0x44, 0xb8, 0x29, 0x79, 0xdc, 0xc3, 0x12, 0x3e, 0x57, 0xcc, 0xe7, 0xe6, 0xee, + 0xd0, 0x9e, 0xc1, 0x2e, 0xa2, 0xed, 0x96, 0xa1, 0xdb, 0xee, 0xee, 0x15, 0x48, 0x71, 0x8b, 0xb4, + 0x1f, 0xc4, 0x5e, 0xf8, 0xe0, 0x56, 0xbc, 0x48, 0x7d, 0x67, 0xc3, 0xd0, 0xb5, 0xec, 0x6e, 0x48, + 0x91, 0x24, 0x56, 0x7a, 0x77, 0x43, 0x7f, 0xd0, 0xe9, 0xe3, 0xf2, 0xa0, 0x09, 0x3d, 0x60, 0x2e, + 0x02, 0xcc, 0x00, 0xb3, 0x1d, 0x60, 0x56, 0x9d, 0x0e, 0xfd, 0x0b, 0x15, 0x77, 0xa7, 0x4d, 0x1d, + 0x2e, 0x4a, 0xbb, 0xd5, 0x84, 0x26, 0x88, 0xf1, 0x44, 0x91, 0x98, 0x30, 0x72, 0x13, 0x47, 0x6a, + 0x02, 0x89, 0x4f, 0x24, 0xf1, 0x09, 0x25, 0x3a, 0xb1, 0x0c, 0x29, 0x54, 0x73, 0xc4, 0xe8, 0x4e, + 0xb8, 0xa1, 0x89, 0x17, 0xc5, 0xe6, 0xaf, 0x78, 0x30, 0xfd, 0xa2, 0xd8, 0xf4, 0xed, 0x0a, 0xc5, + 0x28, 0xa6, 0x93, 0x51, 0x72, 0x52, 0xca, 0x4f, 0x4e, 0xe9, 0x49, 0x6a, 0x6d, 0xb2, 0x5a, 0x9b, + 0xb4, 0x56, 0x26, 0xaf, 0xd9, 0x24, 0x16, 0x08, 0xf3, 0xcd, 0x64, 0xa7, 0xa9, 0xe3, 0x4d, 0xb9, + 0x26, 0xcf, 0xbc, 0xd9, 0x79, 0x20, 0xd0, 0x94, 0x99, 0x4a, 0x25, 0xa7, 0x5a, 0x59, 0x51, 0xb1, + 0x2c, 0x99, 0x35, 0x5b, 0x2a, 0x97, 0x4d, 0x5d, 0x46, 0x78, 0x7a, 0x88, 0xab, 0x62, 0x69, 0xbf, + 0xaa, 0xdd, 0x9d, 0xee, 0x7f, 0x39, 0x7a, 0x65, 0x6b, 0xd9, 0x68, 0x65, 0x51, 0xa7, 0xf3, 0x9b, + 0x08, 0xb7, 0x4a, 0xa5, 0x63, 0xe7, 0x5a, 0x72, 0x85, 0x92, 0xb2, 0x10, 0x16, 0x84, 0x05, 0x61, + 0xa5, 0x44, 0x58, 0x5f, 0xdd, 0xc8, 0x73, 0xfa, 0xca, 0x9c, 0x13, 0x7a, 0x0f, 0x82, 0xb4, 0x55, + 0x94, 0xc0, 0xad, 0xab, 0xbe, 0xa4, 0x5f, 0x71, 0xfc, 0x87, 0xa3, 0x81, 0xfa, 0xfd, 0xfa, 0x17, + 0xdd, 0xbf, 0xb7, 0x2d, 0x4d, 0x0e, 0xed, 0x6d, 0xa3, 0x1e, 0xc6, 0xfa, 0xd5, 0x63, 0xa6, 0xbe, + 0xe0, 0xd1, 0x66, 0xb1, 0xc0, 0x58, 0x60, 0x2c, 0x70, 0xa6, 0x2c, 0x70, 0x14, 0x37, 0x9c, 0x91, + 0x49, 0xaa, 0x5b, 0x09, 0x67, 0xda, 0x6c, 0xdd, 0x23, 0xe6, 0x25, 0xe6, 0x25, 0xe6, 0xd5, 0x8b, + 0x79, 0x4b, 0x44, 0xbb, 0xf9, 0x89, 0x76, 0x53, 0x5d, 0xc2, 0xd0, 0x4c, 0x54, 0x19, 0x6b, 0xc7, + 0x24, 0x71, 0x65, 0x08, 0x86, 0x07, 0x18, 0xac, 0x92, 0xcd, 0x62, 0xde, 0x85, 0x3a, 0x95, 0xb6, + 0x8d, 0xa4, 0x05, 0x09, 0x49, 0xc1, 0xb4, 0x5c, 0x37, 0x2b, 0xa6, 0xa9, 0x00, 0x2a, 0x2b, 0xa6, + 0x82, 0xe0, 0xd9, 0x1f, 0x2f, 0x35, 0xcf, 0x7d, 0x30, 0x8b, 0xf3, 0x25, 0xe2, 0xfb, 0x7e, 0x5c, + 0xbf, 0xb5, 0xd5, 0xb5, 0x58, 0xdb, 0xfa, 0x91, 0x7b, 0x3a, 0x66, 0xab, 0x53, 0xd9, 0xdd, 0xd8, + 0x6e, 0x75, 0x9a, 0x59, 0x70, 0xaa, 0xc7, 0x2e, 0x86, 0x0b, 0xc3, 0x95, 0x8a, 0xe1, 0x22, 0xd5, + 0x03, 0x19, 0x0c, 0x19, 0x0c, 0x19, 0x6c, 0xce, 0x78, 0x23, 0xd5, 0x03, 0xd9, 0x0b, 0xd9, 0x2b, + 0x2b, 0xb2, 0x17, 0xa9, 0x1e, 0xb9, 0x13, 0xbf, 0xde, 0x98, 0x10, 0x56, 0x33, 0x88, 0xbd, 0x30, + 0x92, 0xa4, 0xac, 0x6e, 0x8b, 0x32, 0xa4, 0x55, 0x84, 0xb4, 0x20, 0xad, 0xd5, 0x24, 0x2d, 0xd3, + 0xf0, 0xa9, 0xdf, 0xd0, 0xd7, 0x46, 0xb5, 0xe9, 0x84, 0x5e, 0xc5, 0xf3, 0xbf, 0x7b, 0x55, 0xb9, + 0x31, 0xd2, 0x4f, 0x24, 0x19, 0x69, 0x5e, 0xe8, 0x75, 0xca, 0xba, 0x39, 0x31, 0x33, 0x60, 0xc3, + 0x1c, 0xd8, 0x33, 0x0b, 0xb6, 0xcc, 0x83, 0x75, 0x33, 0x61, 0xdd, 0x5c, 0x58, 0x35, 0x1b, 0xc2, + 0x60, 0x22, 0x34, 0x62, 0xc5, 0x02, 0xb7, 0x69, 0x2e, 0x7f, 0xbf, 0x24, 0x39, 0x64, 0xbb, 0x06, + 0xe0, 0x9d, 0x60, 0x93, 0xb2, 0x31, 0x9d, 0x7c, 0x6c, 0x67, 0x35, 0xc6, 0xb3, 0x1c, 0x40, 0x8c, + 0x05, 0x12, 0xb6, 0xda, 0xb7, 0x18, 0x48, 0x58, 0x88, 0x01, 0xad, 0xc6, 0x82, 0x69, 0xbf, 0xd2, + 0xe2, 0xbb, 0x52, 0x69, 0xff, 0xa0, 0x54, 0xda, 0x39, 0x78, 0x7b, 0xb0, 0x73, 0xb8, 0xb7, 0x57, + 0xdc, 0x2f, 0xee, 0xe5, 0xf8, 0x2d, 0xaf, 0x65, 0xb3, 0xb5, 0xbb, 0x8c, 0x84, 0xb3, 0x02, 0xb3, + 0xa0, 0x83, 0x86, 0x91, 0x17, 0xc4, 0x96, 0xa8, 0xb3, 0xdd, 0x34, 0xc4, 0x09, 0x71, 0x42, 0x9c, + 0x10, 0x27, 0xc4, 0x09, 0x71, 0x42, 0x9c, 0x10, 0x27, 0xc4, 0x99, 0x57, 0xe2, 0x5c, 0xa8, 0xdc, + 0x2a, 0x94, 0xd5, 0xdb, 0x6f, 0x4f, 0x3c, 0xbb, 0xb7, 0x9d, 0x3d, 0xb6, 0x2d, 0xb4, 0xbe, 0xd2, + 0xf9, 0x8a, 0x71, 0xd8, 0xac, 0xc4, 0xdd, 0x9c, 0xdc, 0xc2, 0x4d, 0xdc, 0xb8, 0xff, 0x67, 0xcd, + 0x0d, 0xee, 0xcf, 0x7a, 0xb7, 0xbc, 0x3f, 0xee, 0xdd, 0x2c, 0x87, 0x4b, 0x5b, 0x55, 0x2f, 0xf2, + 0x1f, 0x03, 0x37, 0xf6, 0xaa, 0xbd, 0x03, 0xa7, 0xdd, 0x6a, 0x35, 0xf4, 0x22, 0xc1, 0xb5, 0xae, + 0xe9, 0xb7, 0x20, 0xcd, 0x28, 0xbd, 0x98, 0x83, 0xc5, 0x2f, 0xd2, 0x8c, 0x12, 0x8c, 0xb7, 0x27, + 0xb7, 0x22, 0x34, 0x3d, 0x87, 0xa7, 0x68, 0xf1, 0x9d, 0xcc, 0x46, 0xe7, 0xd8, 0x0b, 0x03, 0xb1, + 0x40, 0xa1, 0xf0, 0xaf, 0xcf, 0x3b, 0xce, 0xa1, 0xeb, 0x3c, 0x94, 0x9d, 0x0f, 0x77, 0x3f, 0x77, + 0x5f, 0x36, 0x8e, 0x46, 0xff, 0xbe, 0xf9, 0x73, 0xef, 0xe5, 0x2f, 0x85, 0x95, 0x4c, 0x78, 0x18, + 0x37, 0xd9, 0xf2, 0x1b, 0xaf, 0x67, 0xdc, 0x03, 0xbf, 0x80, 0x5f, 0xc0, 0x2f, 0x64, 0xca, 0x2f, + 0x44, 0x71, 0xe3, 0xf5, 0x34, 0x95, 0xde, 0x87, 0x4d, 0x42, 0x6a, 0x36, 0xf4, 0x05, 0x12, 0x52, + 0xf3, 0x97, 0x90, 0xba, 0x5f, 0x2c, 0x96, 0xd8, 0x8a, 0xbd, 0x72, 0x70, 0x26, 0xbb, 0xf5, 0xe7, + 0x75, 0xc3, 0x60, 0x18, 0x18, 0x06, 0x86, 0x65, 0x0a, 0xc3, 0xd8, 0x05, 0xb4, 0xec, 0xd0, 0xb5, + 0x03, 0x74, 0xe5, 0xe5, 0x55, 0x95, 0x76, 0x0f, 0x4b, 0x87, 0xfb, 0x07, 0xbb, 0x87, 0x7b, 0x80, + 0xd7, 0x8a, 0x81, 0x57, 0xbb, 0x20, 0x59, 0xd0, 0x7c, 0xb2, 0x02, 0x5f, 0xfd, 0xc6, 0x01, 0x30, + 0x00, 0x0c, 0x00, 0xcb, 0x1c, 0x80, 0x15, 0xf7, 0x05, 0x01, 0x6c, 0x1f, 0x00, 0x03, 0xc0, 0x00, + 0x30, 0x3d, 0xd5, 0x6b, 0x6f, 0xef, 0x2d, 0xec, 0xb5, 0x92, 0xec, 0x65, 0x75, 0x3d, 0x92, 0x9a, + 0xd0, 0x50, 0x18, 0x14, 0x96, 0x61, 0x0a, 0xa3, 0x26, 0xf4, 0xaa, 0x51, 0x19, 0x6b, 0x91, 0xb9, + 0x79, 0x55, 0xd4, 0x84, 0x5e, 0x3d, 0x26, 0x0b, 0xeb, 0xf5, 0xd8, 0x6a, 0xe6, 0xf0, 0xc8, 0x0d, + 0x20, 0x32, 0x88, 0x0c, 0x22, 0xcb, 0x14, 0x91, 0x91, 0x37, 0x4c, 0xde, 0xf0, 0xb8, 0xc1, 0xb6, + 0x1a, 0xa5, 0x8f, 0xde, 0x01, 0x9f, 0x80, 0x4f, 0xc0, 0x27, 0x64, 0x2e, 0x4a, 0x27, 0x67, 0x98, + 0x38, 0x9d, 0x38, 0x3d, 0x93, 0xaf, 0x8a, 0x9c, 0xe1, 0xd5, 0x01, 0xb3, 0x87, 0x7a, 0xf8, 0x1f, + 0x37, 0xac, 0x3a, 0x71, 0xe8, 0x06, 0x91, 0x1f, 0xf9, 0xad, 0x57, 0x24, 0x18, 0xa8, 0x4f, 0x6e, 0x1e, 0x24, 0x03, 0xc9, 0x40, 0xb2, 0x4c, 0x21, 0x99, 0x64, 0x49, 0x20, 0xc1, 0x52, 0x40, 0x30, 0x98, 0xa4, 0x63, 0x27, 0x83, 0x25, 0x3f, 0xb8, 0x6c, 0xbd, 0x74, 0x0f, 0x44, 0x96, 0x4d, 0x22, - 0x33, 0x3a, 0xe3, 0x71, 0xc2, 0xae, 0x1b, 0x9c, 0xf5, 0x08, 0x6f, 0xc1, 0x5b, 0xf0, 0x96, 0x25, - 0xde, 0xfa, 0xea, 0x46, 0x9e, 0x33, 0x28, 0x4e, 0xe5, 0x98, 0x1d, 0x2b, 0xf9, 0x72, 0xa6, 0x16, - 0x8f, 0x64, 0x56, 0x47, 0x7a, 0xa5, 0xb7, 0xaa, 0x8e, 0x7f, 0x7f, 0x32, 0x52, 0x53, 0xeb, 0xc5, - 0x2f, 0x7a, 0x7f, 0xd7, 0x3f, 0x84, 0x72, 0xb9, 0xf6, 0x56, 0x7e, 0xc7, 0x06, 0xdb, 0x34, 0xb0, - 0xbb, 0xd8, 0xdd, 0x4d, 0xb6, 0x69, 0x10, 0xe4, 0x12, 0xe4, 0x12, 0xe4, 0xce, 0x7e, 0x55, 0x6c, - 0xd3, 0x58, 0x9b, 0xa8, 0xd6, 0xd2, 0xde, 0x0c, 0x36, 0x64, 0xc0, 0x5b, 0xf0, 0x56, 0x86, 0x79, - 0x8b, 0x0d, 0x19, 0xeb, 0xc6, 0x5f, 0x24, 0x7a, 0xe4, 0xe6, 0x55, 0xb1, 0x21, 0x63, 0x9d, 0xe8, - 0xab, 0x53, 0x00, 0x5f, 0x18, 0xbd, 0xba, 0x6d, 0xc2, 0x5d, 0x70, 0x17, 0xdc, 0x95, 0x29, 0xee, - 0xf2, 0x6b, 0x5e, 0x10, 0xfb, 0xf1, 0x93, 0xf0, 0xc2, 0x82, 0x04, 0x6d, 0x9d, 0xf7, 0xbe, 0xda, - 0x5b, 0x37, 0xf2, 0xe4, 0x0f, 0xb6, 0xbb, 0xb9, 0xbd, 0xba, 0xbb, 0xba, 0xbc, 0xbe, 0xbd, 0xbb, - 0xb9, 0x2d, 0xdf, 0x9e, 0x49, 0x8d, 0xe5, 0x8e, 0xc7, 0x8c, 0x44, 0x8f, 0xa2, 0x12, 0x46, 0x85, - 0xfe, 0xf3, 0x9f, 0x9e, 0xdf, 0x94, 0xdf, 0x5e, 0x9c, 0x9d, 0x16, 0xb2, 0x48, 0x49, 0x96, 0x9e, - 0xf9, 0xe2, 0xfc, 0xe6, 0xf6, 0xec, 0xd3, 0xf9, 0xa7, 0x0f, 0x6b, 0xf5, 0xd0, 0x67, 0xe5, 0xeb, - 0x75, 0x7b, 0xe6, 0xf7, 0x97, 0xd7, 0xff, 0x2e, 0x5f, 0x9f, 0xae, 0xd9, 0x53, 0xbf, 0xbd, 0xb8, - 0x7c, 0xf7, 0x4f, 0xd9, 0x67, 0x16, 0x69, 0xa9, 0xb2, 0x6c, 0xaf, 0xbb, 0x14, 0x96, 0x0e, 0x1b, - 0x75, 0x41, 0x8a, 0xee, 0xb4, 0x06, 0x3f, 0xc3, 0xcf, 0xf0, 0x33, 0xfc, 0x9c, 0x29, 0x7e, 0xbe, - 0xbe, 0xbc, 0x58, 0x43, 0x7c, 0x2e, 0x5f, 0xdc, 0x9e, 0x5d, 0x7f, 0x6a, 0x47, 0x0e, 0x6b, 0x04, - 0x18, 0xd7, 0x97, 0x97, 0xb7, 0x6b, 0x05, 0x54, 0xe5, 0x77, 0xff, 0xfc, 0xfd, 0x6a, 0x9d, 0x9e, - 0xf8, 0xf4, 0xec, 0xe6, 0xfc, 0x43, 0x7b, 0x58, 0x9f, 0x02, 0x91, 0x62, 0x10, 0xb9, 0x91, 0xe2, - 0x58, 0x91, 0x3a, 0x5f, 0xd5, 0xd2, 0xb9, 0xaa, 0x7a, 0xa3, 0x4a, 0xbd, 0x07, 0xd5, 0xae, 0x50, - 0xec, 0xeb, 0x36, 0xca, 0x69, 0xe6, 0xcc, 0x17, 0x2e, 0xfc, 0x28, 0x2e, 0xc7, 0x71, 0xa8, 0xf5, - 0x72, 0x0a, 0x1f, 0xfd, 0xe0, 0xac, 0xee, 0xb5, 0x99, 0xac, 0xed, 0x24, 0x83, 0x56, 0xbd, 0xfe, - 0x4a, 0xa3, 0x11, 0xf7, 0x87, 0x79, 0x23, 0x97, 0x61, 0xcd, 0x0b, 0xbd, 0xda, 0xdb, 0xa7, 0x5e, - 0x13, 0x56, 0xfb, 0xdb, 0x70, 0x4c, 0x8b, 0x8f, 0x65, 0x0d, 0xdc, 0x59, 0x78, 0x08, 0xb0, 0xda, - 0xcc, 0x48, 0x3e, 0xbe, 0x93, 0x7d, 0x32, 0xe1, 0x1b, 0xd1, 0x7d, 0x13, 0x42, 0x6f, 0x20, 0x59, - 0x1f, 0x2d, 0x7e, 0xe2, 0x04, 0x4f, 0x5b, 0x50, 0x5b, 0x05, 0x1b, 0xc9, 0x63, 0x48, 0xbe, 0xd0, - 0x35, 0xa0, 0xfd, 0x84, 0x1f, 0x1f, 0x04, 0xde, 0xfb, 0x09, 0x2f, 0xd0, 0x08, 0xb0, 0xf5, 0x03, - 0x69, 0xdd, 0x80, 0xd9, 0x38, 0x30, 0x36, 0x0e, 0x80, 0x8d, 0x02, 0x5d, 0xd9, 0xf9, 0x75, 0xea, - 0xab, 0x79, 0x86, 0x82, 0xe1, 0x99, 0xdb, 0xc3, 0x7d, 0x26, 0x26, 0x07, 0x6b, 0x6b, 0x2a, 0x4b, - 0xda, 0x4a, 0x92, 0x89, 0x72, 0x64, 0xae, 0x14, 0x99, 0x2a, 0x43, 0x62, 0x4a, 0x90, 0x98, 0xf2, - 0x23, 0xa2, 0xf4, 0xd8, 0x45, 0x2e, 0x6d, 0xe5, 0x46, 0xa8, 0xc0, 0x9c, 0x49, 0x41, 0x39, 0xe3, - 0x02, 0x72, 0x96, 0x0a, 0xc6, 0x55, 0x6c, 0x21, 0xc7, 0x2b, 0x65, 0xfb, 0xa5, 0x9d, 0xf1, 0xfb, - 0xd2, 0x80, 0x69, 0xe6, 0xf8, 0x62, 0xc1, 0xb0, 0x60, 0x99, 0xb7, 0x60, 0x82, 0xe5, 0xd0, 0x0c, - 0xca, 0x9f, 0x19, 0x66, 0xc1, 0x1a, 0x48, 0x12, 0x12, 0x59, 0xae, 0x52, 0x8b, 0x60, 0x42, 0x59, - 0xac, 0x92, 0x89, 0x90, 0x26, 0x8b, 0x95, 0x12, 0x59, 0xa9, 0xd2, 0x5d, 0x2b, 0x51, 0x5e, 0x4c, - 0xb4, 0x7f, 0x53, 0xd2, 0xae, 0xb2, 0xe0, 0x96, 0xa5, 0x2a, 0x73, 0x0b, 0x57, 0xe2, 0xc6, 0x4d, - 0xe3, 0xa6, 0x09, 0x34, 0x08, 0x34, 0x04, 0x2c, 0x9a, 0x79, 0xc4, 0x21, 0x54, 0x49, 0x1a, 0x9b, - 0x86, 0x4d, 0x23, 0xf4, 0x20, 0xf4, 0x20, 0xf4, 0x20, 0xf4, 0x20, 0xf4, 0x18, 0x94, 0x02, 0xf6, - 0x83, 0x07, 0xa7, 0xe6, 0xd5, 0x5d, 0x03, 0x07, 0x3d, 0xd1, 0x12, 0x8e, 0x19, 0xc7, 0xbc, 0x62, - 0x8e, 0xb9, 0xe5, 0x07, 0xf1, 0x1b, 0x03, 0x2f, 0x7c, 0x80, 0x17, 0x36, 0x73, 0x15, 0x25, 0xbc, - 0xb0, 0xad, 0xae, 0x7d, 0x8d, 0x07, 0x5e, 0x8a, 0x07, 0xfe, 0xe6, 0xd5, 0xeb, 0x0d, 0x27, 0xf6, - 0x35, 0xea, 0xcb, 0x0e, 0xec, 0xd2, 0x48, 0x1b, 0x78, 0x5d, 0xbc, 0x2e, 0x5e, 0x17, 0xaf, 0x4b, - 0xec, 0x9b, 0x0b, 0xaf, 0x5b, 0xc4, 0xeb, 0x2e, 0xc7, 0xeb, 0x36, 0xea, 0x35, 0xa7, 0x73, 0xbc, - 0x86, 0x81, 0xd7, 0x1d, 0xb6, 0xa1, 0x68, 0x13, 0x4f, 0xbd, 0x7b, 0xb7, 0x55, 0xef, 0x18, 0xed, - 0x43, 0x3c, 0x36, 0x1e, 0x1b, 0x8f, 0x8d, 0xc7, 0xc6, 0x63, 0xe3, 0xb1, 0xf1, 0xd8, 0x0b, 0x3c, - 0xb6, 0x61, 0x98, 0x3c, 0x68, 0x02, 0x9f, 0x8b, 0xcf, 0xc5, 0xe7, 0xe2, 0x73, 0x25, 0x1d, 0xc3, - 0x1e, 0x3e, 0xd7, 0x56, 0xd7, 0xee, 0x1f, 0x1c, 0xe0, 0x74, 0x97, 0xe1, 0x74, 0xeb, 0x6e, 0x14, - 0x3b, 0x71, 0xa3, 0xd9, 0xa8, 0x37, 0x1e, 0x9e, 0x9c, 0xea, 0xb7, 0xde, 0x7c, 0xd7, 0xf4, 0xbf, - 0x53, 0x5b, 0xc3, 0x15, 0xe3, 0x8a, 0x57, 0xcc, 0x15, 0xb7, 0x11, 0x33, 0xf6, 0xab, 0x7f, 0x45, - 0x5a, 0x07, 0xb7, 0x1a, 0x1c, 0xd4, 0x5a, 0xf8, 0x3d, 0xe8, 0x5a, 0xb7, 0x42, 0xe0, 0x06, 0x8d, - 0xc8, 0xab, 0x36, 0x82, 0x9a, 0x56, 0x5a, 0x2c, 0x8e, 0x1d, 0xc7, 0x9e, 0x4a, 0x30, 0x2d, 0x7e, - 0xa0, 0x2a, 0x9e, 0x5e, 0xcf, 0xd3, 0x3f, 0xba, 0x3f, 0x1c, 0xd7, 0xc4, 0xb9, 0xf7, 0x1b, 0xc0, - 0x9f, 0xe3, 0xcf, 0x09, 0xad, 0x09, 0xad, 0x45, 0x33, 0x84, 0xf1, 0xc0, 0xb6, 0xba, 0x96, 0xc4, - 0xeb, 0xe5, 0xf8, 0xdb, 0xce, 0x26, 0xa6, 0x6a, 0x23, 0x32, 0x58, 0x7f, 0x1e, 0x36, 0x81, 0xcf, - 0xc5, 0xe7, 0xae, 0xa0, 0xcf, 0x7d, 0xbd, 0xcf, 0x8e, 0x27, 0xc2, 0xde, 0x55, 0x74, 0xba, 0xfb, - 0xc7, 0xa5, 0xe3, 0xc3, 0xa3, 0xfd, 0x63, 0x82, 0xdd, 0xe5, 0x39, 0xdf, 0x66, 0x23, 0x34, 0x75, - 0xbe, 0x9d, 0x26, 0x70, 0xbe, 0x38, 0xdf, 0x15, 0x74, 0xbe, 0x5a, 0xe7, 0xb1, 0x1b, 0x9c, 0xbf, - 0x8e, 0xf3, 0xc5, 0xf9, 0xa6, 0x23, 0x26, 0x98, 0x9f, 0x6f, 0x8e, 0xdf, 0xd5, 0xf3, 0xbb, 0x2f, - 0xd6, 0x7e, 0x0d, 0x2a, 0x1c, 0x4d, 0xb4, 0x84, 0x17, 0xc6, 0x0b, 0xaf, 0x98, 0x17, 0xee, 0x6c, - 0x2d, 0xf0, 0xc2, 0xd4, 0x17, 0x91, 0x71, 0xc4, 0x38, 0xe2, 0x34, 0xba, 0x96, 0xc5, 0xdf, 0xac, - 0xf8, 0xe5, 0xef, 0x75, 0x37, 0x70, 0xfc, 0x9a, 0xbe, 0x3b, 0xee, 0x37, 0x80, 0x17, 0xc6, 0x0b, - 0xaf, 0x98, 0x17, 0xd6, 0x1b, 0xda, 0x04, 0xc3, 0xec, 0x66, 0xca, 0x83, 0x0f, 0x2e, 0xed, 0x1d, - 0x97, 0xf0, 0xb9, 0x62, 0x3e, 0x37, 0xf7, 0xc7, 0xff, 0x28, 0x9c, 0x1b, 0x26, 0x73, 0xf2, 0x8f, - 0x2a, 0x7a, 0x68, 0xda, 0x65, 0xc5, 0x79, 0xa3, 0x8c, 0x18, 0x9c, 0xfe, 0x93, 0x02, 0x32, 0xc8, - 0x4e, 0x2f, 0x65, 0x34, 0x18, 0xee, 0x63, 0xf0, 0xdc, 0x7b, 0xb5, 0x23, 0x68, 0x07, 0x75, 0x86, - 0x15, 0x56, 0xa5, 0x0b, 0x57, 0xbd, 0x19, 0xbc, 0xb3, 0xb3, 0xdb, 0x9d, 0xbf, 0xbb, 0xfd, 0x31, - 0x2f, 0x35, 0x3f, 0x37, 0x0c, 0xfa, 0xb1, 0x7f, 0x2e, 0x5f, 0xb2, 0x79, 0xa8, 0x76, 0x14, 0x9f, - 0xd6, 0xd1, 0x7b, 0x5a, 0x47, 0xed, 0xa9, 0x1d, 0xad, 0xb7, 0xa8, 0x4b, 0x14, 0x2d, 0xb6, 0x89, - 0xa5, 0x2e, 0x24, 0x3a, 0x55, 0x6d, 0xda, 0x29, 0x78, 0xf3, 0x47, 0xcf, 0xec, 0x31, 0x31, 0xfd, - 0x5f, 0x66, 0x74, 0x49, 0xd2, 0xae, 0xd0, 0xec, 0x82, 0xe9, 0xcf, 0x30, 0xf9, 0x0d, 0xa7, 0x7c, - 0xbb, 0x42, 0xd8, 0xb6, 0x39, 0xb3, 0xbe, 0xd3, 0x70, 0x7d, 0x77, 0xb6, 0x45, 0x5e, 0x70, 0x92, - 0xdc, 0x42, 0xdf, 0x91, 0xc4, 0x57, 0x24, 0xf7, 0x0d, 0x49, 0x7d, 0x81, 0xb2, 0xed, 0x57, 0xb6, - 0xf5, 0x4a, 0xb6, 0x5d, 0x6d, 0x34, 0x2d, 0x3a, 0xa9, 0xad, 0x50, 0xed, 0xf7, 0xf9, 0x82, 0x4e, - 0x18, 0x6a, 0xab, 0x9d, 0xcf, 0x2f, 0x32, 0x71, 0x89, 0x8e, 0x0c, 0x4c, 0x0c, 0x0b, 0x2a, 0x90, - 0xa0, 0x0e, 0x07, 0xaa, 0x50, 0xa0, 0x0d, 0x03, 0xda, 0x10, 0xa0, 0xe5, 0xfc, 0xcd, 0x9c, 0x54, - 0xd2, 0x23, 0xfe, 0xb4, 0x8f, 0xc6, 0x32, 0x3c, 0x12, 0x0b, 0x2e, 0x85, 0x4b, 0xc5, 0xb8, 0x54, - 0xa0, 0x6e, 0xbc, 0x46, 0xf6, 0xa4, 0xa6, 0x56, 0xa5, 0x77, 0x20, 0xb3, 0x81, 0x7a, 0x6a, 0x24, - 0x9c, 0x98, 0x6a, 0x51, 0x12, 0x2a, 0xc9, 0xb3, 0xde, 0xf1, 0xd3, 0x4b, 0xef, 0x32, 0x93, 0xfa, - 0xee, 0x22, 0xfd, 0x66, 0x49, 0xed, 0xa9, 0xa4, 0x28, 0x93, 0x68, 0xd7, 0x69, 0x37, 0xad, 0xcf, - 0x8e, 0x83, 0xc2, 0x41, 0x89, 0x39, 0x28, 0xd5, 0x8d, 0x74, 0x1a, 0x1b, 0xe8, 0xd6, 0xcb, 0x1b, - 0x95, 0xf0, 0x46, 0xaa, 0x5d, 0xf6, 0x1a, 0x4f, 0x64, 0xe4, 0x89, 0x34, 0xea, 0x95, 0xeb, 0xd7, - 0x29, 0xc7, 0xfb, 0xe0, 0x7d, 0xf0, 0x3e, 0xc4, 0x42, 0x2b, 0xe3, 0x7d, 0x8a, 0x78, 0x1f, 0x33, - 0xef, 0xa3, 0x5e, 0xb7, 0x5b, 0xbf, 0x5e, 0xb7, 0x4e, 0x9d, 0x6e, 0x3c, 0x16, 0x1e, 0x0b, 0x8f, - 0x85, 0xc7, 0xc2, 0x63, 0xe1, 0xb1, 0x36, 0x75, 0x0a, 0x6b, 0x69, 0x16, 0xd4, 0xc2, 0xef, 0xe0, - 0x77, 0xf0, 0x3b, 0x59, 0xf5, 0x3b, 0x87, 0xf8, 0x1d, 0x65, 0x69, 0x13, 0xbf, 0xa3, 0xf9, 0x89, - 0xa5, 0x66, 0xa9, 0xb5, 0xff, 0xd3, 0x4b, 0xae, 0xd1, 0xcd, 0x33, 0x9b, 0x93, 0xeb, 0xe4, 0x07, - 0xb1, 0x17, 0xde, 0xbb, 0xd5, 0x04, 0x5b, 0x87, 0x07, 0xc6, 0x6c, 0xe4, 0x1a, 0xd2, 0x7d, 0x48, - 0xf7, 0x79, 0x31, 0x90, 0xd4, 0xb9, 0x6c, 0x78, 0xa9, 0x1a, 0x99, 0x15, 0x21, 0x33, 0xc8, 0x4c, - 0x6d, 0x98, 0x0e, 0x2e, 0x48, 0x98, 0xde, 0x38, 0xf3, 0x35, 0x27, 0x4a, 0x77, 0x34, 0x1c, 0xb8, - 0xda, 0x03, 0xd8, 0x64, 0x20, 0x9b, 0x0f, 0x68, 0xd3, 0x81, 0x2d, 0x36, 0xc0, 0xc5, 0x06, 0xba, - 0xc8, 0x80, 0xd7, 0x44, 0x21, 0xd5, 0x83, 0x10, 0x15, 0x27, 0xc2, 0xc8, 0x84, 0xd0, 0xa8, 0x9c, - 0x39, 0x65, 0x5a, 0x28, 0x17, 0xcf, 0x94, 0xc2, 0x5c, 0xdd, 0x49, 0x22, 0x31, 0x59, 0xe4, 0x26, - 0x8d, 0xd4, 0xe4, 0x11, 0x9f, 0x44, 0xe2, 0x93, 0x49, 0x74, 0x52, 0xe9, 0x4d, 0x2e, 0x83, 0x88, - 0x6e, 0xd3, 0x68, 0x2f, 0xf4, 0x54, 0x7d, 0x40, 0xab, 0x38, 0xe7, 0xcb, 0xd9, 0x73, 0x64, 0xd0, - 0x84, 0xd9, 0x16, 0x69, 0x7d, 0x41, 0x41, 0x54, 0x60, 0x10, 0x36, 0x2b, 0xb3, 0x55, 0x5c, 0xa1, - 0xf6, 0x04, 0x37, 0xfb, 0x1a, 0x0e, 0x67, 0x31, 0xc1, 0x22, 0xad, 0x57, 0xb0, 0xbf, 0xd7, 0xfb, - 0x93, 0xe1, 0x57, 0xb1, 0xb1, 0x9c, 0xab, 0x2b, 0x29, 0xed, 0xfb, 0xd6, 0xd1, 0xc2, 0x7a, 0xdb, - 0xe7, 0x0c, 0x49, 0xa3, 0xd3, 0x0a, 0xa4, 0x01, 0x69, 0x40, 0x1a, 0x4a, 0xe3, 0xe5, 0xab, 0x1b, - 0x79, 0xce, 0x40, 0x71, 0x71, 0xd4, 0x76, 0x5d, 0xcf, 0x0c, 0x68, 0x4d, 0xb0, 0xe3, 0x6a, 0xa0, - 0x83, 0x56, 0x1d, 0xff, 0xfe, 0x64, 0xa8, 0x2e, 0xbe, 0xfc, 0x45, 0xef, 0xef, 0x9d, 0x99, 0x9f, - 0x61, 0xfb, 0xd6, 0x6c, 0x84, 0xb1, 0xfa, 0xb6, 0xb7, 0x99, 0x2f, 0x6c, 0xbc, 0x39, 0x2c, 0x1e, - 0x16, 0x0f, 0x8b, 0xa7, 0x34, 0x5e, 0xa2, 0xb8, 0xe9, 0x8c, 0x4d, 0x22, 0xd5, 0x2d, 0x7c, 0xb3, - 0x66, 0xd3, 0x01, 0xb1, 0x16, 0xb1, 0xd6, 0xba, 0xc4, 0x5a, 0x25, 0xa2, 0xac, 0xe5, 0x45, 0x59, - 0x56, 0x25, 0x63, 0xcd, 0xaa, 0x58, 0x83, 0xeb, 0x95, 0x57, 0xb3, 0x47, 0x08, 0x6f, 0xc8, 0x76, - 0x49, 0x96, 0xb8, 0xf5, 0xfb, 0x45, 0xa5, 0x76, 0xa7, 0x56, 0x7c, 0x6a, 0x12, 0x97, 0x52, 0xb5, - 0x73, 0x29, 0xd4, 0x45, 0xd5, 0x4e, 0x95, 0xf7, 0xad, 0x5e, 0xa2, 0x4b, 0x22, 0x48, 0x9c, 0x52, - 0xb2, 0x4b, 0x3d, 0xfc, 0xb3, 0x63, 0x26, 0xba, 0x85, 0xfd, 0xb4, 0xed, 0x44, 0xf7, 0xf2, 0x94, - 0xd7, 0x8f, 0xf7, 0x31, 0x14, 0x18, 0x8a, 0xb9, 0xdf, 0x90, 0xf5, 0x63, 0x34, 0x0e, 0x34, 0x8e, - 0xdc, 0x69, 0x1c, 0xac, 0x1f, 0xa3, 0x69, 0xa0, 0x69, 0xa8, 0x6a, 0x1a, 0xac, 0x1f, 0x2f, 0x5d, - 0xd9, 0x78, 0xa5, 0x43, 0x1a, 0x9d, 0x53, 0x7c, 0x22, 0x09, 0xda, 0xe8, 0xb5, 0x64, 0x46, 0x1c, - 0x45, 0x88, 0x03, 0xe2, 0xc8, 0x07, 0x71, 0xe8, 0xe2, 0xfd, 0xa0, 0x81, 0xaf, 0xcd, 0x5a, 0xcb, - 0x09, 0xbd, 0xaa, 0xe7, 0x7f, 0xf7, 0x6a, 0xe6, 0xef, 0x7a, 0xb0, 0x2a, 0x3d, 0xd6, 0xec, 0xab, - 0x4c, 0x9c, 0xe8, 0x60, 0x3a, 0x3d, 0x25, 0xa7, 0xa9, 0xfc, 0x74, 0x95, 0x9e, 0xb6, 0xd6, 0xa6, - 0xaf, 0xb5, 0x69, 0x6c, 0x65, 0x3a, 0x0b, 0x39, 0x6e, 0xc3, 0x11, 0x67, 0x1c, 0x58, 0xcc, 0x72, - 0x95, 0x5a, 0x47, 0xe7, 0xcd, 0x9a, 0xa0, 0x6f, 0x04, 0x9a, 0x92, 0x89, 0x39, 0xe4, 0x62, 0x0f, - 0x2b, 0x31, 0x88, 0x25, 0x10, 0x9e, 0x00, 0x62, 0xe9, 0x76, 0x2d, 0x00, 0xb1, 0x60, 0x8c, 0x62, - 0x25, 0x56, 0x49, 0xeb, 0x55, 0xc9, 0x1f, 0xf5, 0x97, 0xea, 0xdb, 0xdb, 0xc8, 0x46, 0x2b, 0x95, - 0x25, 0x85, 0x57, 0x26, 0x87, 0x5e, 0x75, 0x50, 0x29, 0xf2, 0x82, 0x58, 0x98, 0xbe, 0x3a, 0x4d, - 0x42, 0x5e, 0x90, 0x17, 0xe4, 0x05, 0x79, 0x41, 0x5e, 0x90, 0x17, 0xe4, 0x05, 0x79, 0xad, 0x1e, - 0x79, 0xa5, 0x2a, 0xb7, 0x19, 0xa6, 0xd6, 0x0d, 0xda, 0x91, 0x49, 0xb1, 0xeb, 0xa4, 0x9c, 0xec, - 0x1a, 0x8a, 0xde, 0x9b, 0xd3, 0xcf, 0x41, 0xbb, 0x8e, 0xe2, 0xe6, 0xdd, 0x79, 0xff, 0x56, 0x77, - 0xef, 0xfa, 0x37, 0xc9, 0xf0, 0x3a, 0x42, 0xcd, 0x8b, 0xfc, 0x87, 0xc0, 0x8d, 0xbd, 0x5a, 0xff, - 0x8c, 0x17, 0xb7, 0x56, 0x0b, 0xbd, 0x48, 0x60, 0x61, 0x61, 0x76, 0xd3, 0xe4, 0x36, 0xb0, 0xd2, - 0xb0, 0x24, 0x40, 0xce, 0x6b, 0x6e, 0xc3, 0xa3, 0x5b, 0x35, 0x9c, 0x3e, 0xa3, 0x53, 0xa8, 0xf8, - 0xc6, 0x6c, 0xab, 0x5a, 0xec, 0x85, 0x81, 0x31, 0xf5, 0x16, 0xfe, 0xfc, 0xbc, 0xe7, 0x1c, 0xbb, - 0xce, 0x7d, 0xd9, 0x79, 0x5f, 0xf9, 0xb9, 0xff, 0xbc, 0x75, 0x32, 0xfe, 0xf7, 0xed, 0x9f, 0x07, - 0xcf, 0x7f, 0x2b, 0xac, 0xe4, 0xea, 0xed, 0xa4, 0x69, 0x94, 0xdb, 0x2a, 0x37, 0xa7, 0x6d, 0xec, - 0x2e, 0x76, 0x17, 0xbb, 0xab, 0x34, 0x5e, 0x04, 0x0e, 0xbf, 0x9b, 0x35, 0x9f, 0xc8, 0x32, 0xb3, - 0x1b, 0xb4, 0x92, 0x65, 0x96, 0x9d, 0x57, 0x60, 0x72, 0x58, 0x5f, 0x2a, 0xef, 0x81, 0x14, 0xb3, - 0x79, 0x90, 0x22, 0x93, 0xd7, 0xfe, 0xb2, 0x41, 0x70, 0x04, 0x1c, 0x01, 0x47, 0x94, 0xc6, 0x0b, - 0x29, 0xee, 0x79, 0x83, 0x8f, 0x3d, 0xe0, 0x63, 0xd9, 0xaf, 0xa0, 0xb4, 0x7f, 0x5c, 0x3a, 0x3e, - 0x3c, 0xda, 0x3f, 0x3e, 0x00, 0x40, 0x72, 0x0a, 0x20, 0x9d, 0xd2, 0x25, 0x41, 0xeb, 0x51, 0x14, - 0x42, 0x06, 0x8d, 0x02, 0x22, 0x80, 0x08, 0x20, 0xa2, 0x0c, 0x22, 0xc5, 0x43, 0x01, 0x10, 0x39, - 0x04, 0x44, 0x00, 0x91, 0x75, 0x51, 0x41, 0x0e, 0x0e, 0x5e, 0xc3, 0x20, 0xb9, 0x66, 0x10, 0x2b, - 0xeb, 0x34, 0x54, 0x37, 0x84, 0x46, 0xa0, 0x11, 0x83, 0xf1, 0x42, 0x75, 0xc3, 0xbc, 0xd3, 0x09, - 0x6b, 0x34, 0x4b, 0x7f, 0x05, 0x54, 0x37, 0xcc, 0x2f, 0x9b, 0x84, 0x8d, 0x46, 0x6c, 0x25, 0x73, - 0x6f, 0xac, 0x61, 0xc8, 0x04, 0x32, 0x81, 0x4c, 0x94, 0xc6, 0x0b, 0x79, 0x7b, 0xab, 0x6c, 0x71, - 0xad, 0x44, 0x83, 0xe3, 0x2d, 0x63, 0x73, 0xb1, 0xb9, 0xd8, 0x5c, 0xe5, 0x68, 0x90, 0x9c, 0x3d, - 0xe2, 0x41, 0xe2, 0x41, 0xa3, 0x57, 0x40, 0xce, 0x5e, 0xfe, 0x00, 0xe5, 0xbe, 0x11, 0xfe, 0xc7, - 0x0d, 0x6b, 0x4e, 0x1c, 0xba, 0x41, 0xe4, 0x47, 0x7e, 0xbb, 0xcb, 0x05, 0x02, 0xc2, 0xe9, 0xcd, - 0x82, 0x26, 0xa0, 0x09, 0x68, 0xa2, 0x34, 0x5e, 0x24, 0xea, 0x18, 0x08, 0xd4, 0x2f, 0x80, 0x45, - 0x54, 0x1c, 0x21, 0x2b, 0xe7, 0xcb, 0xc7, 0x41, 0x6b, 0xf5, 0x06, 0x20, 0x13, 0x0e, 0x3c, 0x85, - 0x3b, 0xe0, 0x8e, 0xd5, 0xe6, 0x0e, 0x0e, 0x3c, 0xb5, 0x6d, 0xdf, 0xe4, 0x32, 0x94, 0x49, 0x4b, - 0xc6, 0xce, 0x61, 0xe7, 0xf4, 0xc6, 0x0b, 0x69, 0xc9, 0x04, 0x57, 0x04, 0x57, 0x8a, 0xaf, 0x80, - 0xb4, 0xe4, 0xdc, 0x45, 0x53, 0x1c, 0xaf, 0x0e, 0x77, 0xc0, 0x1d, 0xd9, 0xe1, 0x0e, 0x12, 0x90, - 0xf3, 0xce, 0x21, 0x2c, 0x38, 0x2f, 0xfd, 0x15, 0x90, 0x80, 0x9c, 0x47, 0x0a, 0xd1, 0x3b, 0x02, - 0x78, 0x3a, 0x82, 0xe8, 0x9c, 0x07, 0x0c, 0x7f, 0xc0, 0x1f, 0x6b, 0xcf, 0x1f, 0x7e, 0xcd, 0x0b, - 0x62, 0x3f, 0x7e, 0x12, 0x12, 0x76, 0x4d, 0xa8, 0xe3, 0xbc, 0xf7, 0x55, 0xde, 0xba, 0x91, 0x27, - 0x77, 0x3a, 0xc7, 0xcd, 0xed, 0xd5, 0xdd, 0xd5, 0xe5, 0xf5, 0xed, 0xdd, 0xcd, 0x6d, 0xf9, 0xf6, - 0xcc, 0x74, 0x0c, 0x76, 0x3c, 0x4e, 0x24, 0x52, 0xb7, 0x5f, 0xc8, 0xa5, 0xf6, 0x9f, 0xf3, 0xf4, - 0xfc, 0xa6, 0xfc, 0xf6, 0xe2, 0xec, 0xb4, 0x90, 0x05, 0x6a, 0x10, 0x7e, 0xb6, 0x8b, 0xf3, 0x9b, - 0xdb, 0xb3, 0x4f, 0xe7, 0x9f, 0x3e, 0xac, 0xe4, 0xc3, 0x9d, 0x95, 0xaf, 0x57, 0xf5, 0xd9, 0xde, - 0x5f, 0x5e, 0xff, 0xbb, 0x7c, 0x7d, 0xba, 0xa2, 0x4f, 0xf7, 0xf6, 0xe2, 0xf2, 0xdd, 0x3f, 0x65, - 0x9e, 0xcd, 0xa8, 0x85, 0x4a, 0xda, 0x5e, 0x2b, 0x15, 0x46, 0x0c, 0x1b, 0x75, 0x01, 0x3a, 0xec, - 0xb4, 0x02, 0x17, 0xc2, 0x85, 0x70, 0x21, 0x5c, 0x38, 0x95, 0x0b, 0xaf, 0x2f, 0x2f, 0x56, 0x18, - 0x0b, 0xcb, 0x17, 0xb7, 0x67, 0xd7, 0x9f, 0xda, 0xe4, 0xbb, 0x82, 0x0e, 0xf8, 0xfa, 0xf2, 0xf2, - 0x76, 0x25, 0xc1, 0xa2, 0xfc, 0xee, 0x9f, 0xbf, 0x5f, 0xad, 0xe2, 0x93, 0x9d, 0x9e, 0xdd, 0x9c, - 0x7f, 0x68, 0x0f, 0xc7, 0x53, 0xa0, 0x49, 0xf6, 0x0a, 0xc5, 0x77, 0x6d, 0x7a, 0xb8, 0x92, 0xe4, - 0xa1, 0x4a, 0x6a, 0x43, 0x21, 0x79, 0xb7, 0x24, 0xfb, 0x64, 0xc2, 0x8e, 0x6b, 0x73, 0x8b, 0x62, - 0x22, 0x69, 0xe1, 0xc2, 0x8f, 0xe2, 0x72, 0x1c, 0xab, 0x1d, 0x1a, 0x5f, 0xf8, 0xe8, 0x07, 0x67, - 0x75, 0xaf, 0x0d, 0x20, 0x6d, 0x8f, 0x12, 0xb4, 0xea, 0xf5, 0x57, 0x0a, 0x17, 0xbb, 0x3f, 0xf4, - 0x2f, 0xbe, 0x0c, 0x6b, 0x5e, 0xe8, 0xd5, 0xde, 0x3e, 0xf5, 0x2e, 0x15, 0xed, 0x3f, 0xcd, 0x01, - 0x27, 0x33, 0xd0, 0x14, 0x1c, 0xfc, 0xc2, 0xe3, 0xb9, 0x92, 0x0d, 0xd7, 0xc5, 0x83, 0x6f, 0xfe, - 0x27, 0x16, 0x74, 0xab, 0x6a, 0x77, 0x9a, 0x74, 0xe3, 0xfc, 0x07, 0x9e, 0xfd, 0x18, 0x73, 0x1e, - 0xa1, 0x90, 0x4c, 0xfc, 0x1f, 0x59, 0x26, 0x5d, 0xac, 0xef, 0x0f, 0x60, 0x73, 0xc1, 0xc7, 0x06, - 0x71, 0xd9, 0xfe, 0x82, 0x0f, 0x2a, 0xc4, 0x5f, 0xea, 0x71, 0x96, 0x6a, 0x3c, 0xa5, 0x1d, 0x37, - 0x69, 0xc7, 0x47, 0x5a, 0x71, 0x90, 0xd9, 0xa0, 0x3e, 0xf5, 0x93, 0xd9, 0xca, 0x82, 0xe6, 0x91, - 0x73, 0xc3, 0xb4, 0x66, 0x9d, 0x73, 0xe5, 0x14, 0x05, 0x01, 0x65, 0x01, 0x40, 0x27, 0xe0, 0xd7, - 0x0f, 0xf0, 0x75, 0x03, 0x7a, 0xe3, 0x00, 0xde, 0x38, 0x60, 0x37, 0x0a, 0xd0, 0x65, 0xa1, 0x40, - 0x39, 0xe0, 0x36, 0xac, 0xef, 0xa2, 0x53, 0xcf, 0x45, 0xbb, 0x7e, 0x8b, 0x70, 0xbd, 0x96, 0x8a, - 0x94, 0xdf, 0x7c, 0x95, 0xd8, 0x3e, 0x28, 0x27, 0xba, 0xbd, 0x34, 0x10, 0x8a, 0xa9, 0x6d, 0x58, - 0x08, 0x2c, 0x84, 0x98, 0x85, 0x10, 0xa8, 0x46, 0xa2, 0x51, 0x7d, 0x44, 0x33, 0xf9, 0x4b, 0x23, - 0x82, 0x34, 0x49, 0xee, 0x32, 0xd5, 0xe6, 0x0d, 0x93, 0xb7, 0x24, 0xf2, 0x84, 0x74, 0xd6, 0x44, - 0x4c, 0x92, 0xb1, 0xa4, 0xba, 0xcc, 0xa4, 0xba, 0x87, 0x48, 0xbf, 0x59, 0x52, 0x0b, 0xd2, 0x74, - 0x4f, 0xa6, 0x05, 0x18, 0x85, 0x0a, 0x2e, 0xe2, 0xae, 0x70, 0x57, 0x00, 0x6d, 0x2e, 0x80, 0xd6, - 0xb8, 0x80, 0xa0, 0x54, 0xc1, 0x40, 0x6c, 0x06, 0x36, 0x03, 0xc4, 0x05, 0x71, 0x41, 0x5c, 0x10, - 0x77, 0x5e, 0x37, 0xf4, 0x2a, 0xbf, 0xf9, 0xc1, 0x83, 0x53, 0xf3, 0xea, 0xae, 0x86, 0xa3, 0x9a, - 0x68, 0x01, 0x07, 0x85, 0x83, 0x4a, 0xd9, 0x41, 0xb5, 0xfc, 0x20, 0x7e, 0xa3, 0xe1, 0x8d, 0x0e, - 0xf0, 0x46, 0xd3, 0x4d, 0x6b, 0x09, 0x6f, 0xa4, 0xda, 0x65, 0xaf, 0xf1, 0x44, 0x46, 0x9e, 0xe8, - 0x9b, 0x57, 0xaf, 0x37, 0x9c, 0xd8, 0x57, 0x28, 0x23, 0x36, 0x98, 0xff, 0x23, 0xd7, 0xe2, 0x7d, - 0xf0, 0x3e, 0x78, 0x1f, 0x62, 0xa1, 0x35, 0xf3, 0x3e, 0x45, 0xbc, 0x8f, 0x99, 0xf7, 0x69, 0xd4, - 0x6b, 0x4e, 0xa7, 0x7a, 0xaf, 0x86, 0xf7, 0x19, 0x5e, 0x9b, 0xd0, 0xd6, 0x9c, 0x7a, 0xf7, 0x6e, - 0xab, 0xde, 0x31, 0x7a, 0x87, 0x78, 0x2c, 0x3c, 0x16, 0x1e, 0x0b, 0x8f, 0x85, 0xc7, 0xc2, 0x63, - 0x29, 0x7b, 0x2c, 0xcd, 0x70, 0x69, 0x70, 0x29, 0xbe, 0x07, 0xdf, 0x83, 0xef, 0xc9, 0xb7, 0xef, - 0xd9, 0xc3, 0xf7, 0xa8, 0x76, 0xd9, 0xfe, 0xc1, 0x01, 0xce, 0xc7, 0xc4, 0xf9, 0xd4, 0xdd, 0x28, - 0x76, 0xe2, 0x46, 0xb3, 0x51, 0x6f, 0x3c, 0x3c, 0x39, 0xd5, 0x6f, 0xbd, 0xf9, 0xa6, 0xe8, 0x87, - 0xa6, 0xb6, 0x82, 0x4b, 0xc2, 0x25, 0xa5, 0xec, 0x92, 0xda, 0x28, 0x14, 0xfb, 0xd5, 0xbf, 0x22, - 0xa5, 0x73, 0x7b, 0x34, 0xce, 0xe9, 0x29, 0xfc, 0x1e, 0x74, 0xad, 0x46, 0x21, 0x70, 0x83, 0x46, - 0xe4, 0x55, 0x1b, 0x41, 0x4d, 0x29, 0x0d, 0x0b, 0xc7, 0x86, 0x63, 0x9b, 0x1b, 0x54, 0x89, 0x9d, - 0xa3, 0x83, 0xa7, 0xeb, 0x76, 0xc3, 0xa3, 0xfb, 0xc3, 0x71, 0x75, 0x9c, 0x5b, 0xff, 0x42, 0xfc, - 0x19, 0xfe, 0x8c, 0x10, 0x2b, 0xdf, 0x9e, 0xe8, 0x10, 0x4f, 0xa4, 0xda, 0x65, 0x24, 0xe6, 0x99, - 0xf9, 0x9d, 0x4e, 0xd2, 0x77, 0xb5, 0x11, 0x69, 0xac, 0x47, 0x0d, 0x2f, 0xc5, 0xf7, 0xe0, 0x7b, - 0x96, 0xe0, 0x7b, 0x5e, 0xef, 0x93, 0x19, 0x4e, 0x18, 0xb4, 0x4c, 0xe7, 0xb3, 0x7f, 0x5c, 0x3a, - 0x3e, 0x3c, 0xda, 0x3f, 0x26, 0xf8, 0x31, 0x77, 0x42, 0xcd, 0x46, 0xa8, 0xeb, 0x84, 0x3a, 0x97, - 0xe2, 0x84, 0x70, 0x42, 0x4b, 0x70, 0x42, 0x4a, 0xc7, 0xc4, 0x69, 0x1c, 0x0b, 0x87, 0x13, 0xc2, - 0x09, 0xcd, 0x0f, 0x1a, 0xf5, 0x8f, 0x5d, 0xc3, 0xff, 0x74, 0xbb, 0xe1, 0xc5, 0xda, 0x90, 0xc6, - 0xce, 0xfb, 0x89, 0x16, 0xf0, 0x46, 0x78, 0xa3, 0x94, 0xbd, 0x51, 0x27, 0x35, 0xd4, 0x0b, 0xad, - 0x2f, 0x2e, 0xe1, 0x90, 0x70, 0x48, 0xf3, 0xba, 0x8c, 0xc5, 0x21, 0x25, 0xff, 0x94, 0xed, 0xba, - 0x9f, 0x09, 0x4a, 0xf2, 0xce, 0x29, 0xf9, 0xb9, 0xa1, 0xf0, 0x4c, 0x49, 0x9f, 0x45, 0xf9, 0x19, - 0x0a, 0x73, 0x0b, 0x8f, 0x4e, 0xab, 0xee, 0x3a, 0xfd, 0x79, 0x27, 0x9f, 0x66, 0xfc, 0x37, 0x2f, - 0x9e, 0x6b, 0xd1, 0xf3, 0xa8, 0x3c, 0xc7, 0x94, 0x47, 0x98, 0xfc, 0xea, 0xe3, 0xdf, 0x7a, 0xf8, - 0xdd, 0x46, 0xbe, 0x57, 0x21, 0x7a, 0x8a, 0x62, 0x6f, 0xf2, 0x70, 0xf9, 0x61, 0x09, 0x86, 0xee, - 0xbf, 0xbf, 0x78, 0x92, 0xe9, 0xa5, 0x54, 0x67, 0xd2, 0xc8, 0x3c, 0xea, 0x18, 0xa3, 0x8b, 0xa7, - 0x69, 0x9c, 0xb4, 0x88, 0x22, 0x12, 0xd3, 0x42, 0x62, 0x2a, 0x98, 0xf0, 0xfe, 0x4f, 0x53, 0x8a, - 0xdc, 0xce, 0x7f, 0xd7, 0xb3, 0x4a, 0x95, 0x16, 0x5c, 0xd7, 0x9d, 0xfd, 0x24, 0xfd, 0xbe, 0x68, - 0x7f, 0x68, 0xc6, 0x57, 0x9b, 0x5f, 0xc5, 0x76, 0x21, 0x10, 0x26, 0x01, 0xc0, 0xd1, 0x57, 0x32, - 0xfb, 0x9b, 0xa8, 0x00, 0x9e, 0x32, 0xd0, 0x29, 0x03, 0xdc, 0xcb, 0x57, 0xd6, 0xfe, 0xde, 0x42, - 0x66, 0x68, 0x51, 0xd5, 0xd9, 0x82, 0x5b, 0xed, 0x90, 0x96, 0x1f, 0x3c, 0x24, 0xaf, 0x58, 0x3c, - 0x72, 0x8d, 0x70, 0xd9, 0xe2, 0x3d, 0x3b, 0x65, 0x8b, 0xe7, 0x0f, 0x04, 0x5d, 0xe2, 0x5f, 0x7e, - 0xd9, 0xe2, 0xb9, 0x03, 0x45, 0xc6, 0x27, 0x27, 0x2e, 0x5b, 0x5c, 0xed, 0xbf, 0x43, 0xc5, 0x60, - 0xb3, 0x77, 0x9d, 0x5a, 0x88, 0x59, 0xcc, 0x68, 0x88, 0x99, 0x6c, 0xa0, 0xad, 0x5e, 0x88, 0x99, - 0x68, 0x20, 0xda, 0x09, 0x31, 0x93, 0x0e, 0xd0, 0x29, 0x16, 0xcf, 0x79, 0xf4, 0xe2, 0x6f, 0x8d, - 0x9a, 0x7a, 0xff, 0x4f, 0x1a, 0xc2, 0x7e, 0x53, 0x8a, 0xdd, 0xa8, 0x17, 0xa4, 0x68, 0x1f, 0xbf, - 0x65, 0x72, 0xec, 0x96, 0xfe, 0x30, 0x37, 0x1d, 0xee, 0x62, 0xc3, 0x5e, 0x6c, 0xf8, 0x8b, 0x4c, - 0x03, 0xcd, 0x98, 0x4e, 0xf1, 0x8d, 0x6b, 0x1f, 0x9b, 0x35, 0x5c, 0x17, 0x08, 0xda, 0xd0, 0xaf, - 0xf1, 0xba, 0xfb, 0xb6, 0xfa, 0x58, 0xe3, 0xda, 0xde, 0xd7, 0xd6, 0x3b, 0x73, 0x8a, 0x33, 0xc2, - 0x16, 0x3f, 0x60, 0xb9, 0x5c, 0xbe, 0xfb, 0x78, 0x76, 0xfb, 0x8f, 0xcb, 0xd3, 0xbb, 0xdb, 0x3f, - 0xae, 0x56, 0xf8, 0x94, 0xb0, 0xeb, 0xf2, 0xe9, 0xf9, 0xef, 0x37, 0x77, 0xe5, 0x8b, 0x8b, 0x95, - 0x3c, 0x61, 0xf5, 0xf2, 0x5d, 0x79, 0x25, 0x1f, 0xec, 0xb6, 0xfc, 0xae, 0xfc, 0x4e, 0xea, 0xb5, - 0xe5, 0xeb, 0x34, 0xad, 0x57, 0xcb, 0x32, 0x7a, 0x51, 0x1c, 0x2e, 0x8e, 0xe9, 0x12, 0xd9, 0xbb, - 0x37, 0x29, 0x9d, 0x23, 0x56, 0xb1, 0xea, 0x3b, 0xb5, 0xce, 0xb8, 0x1a, 0xaa, 0xd7, 0x06, 0x67, - 0x5d, 0x8d, 0x4a, 0xe0, 0xe6, 0x8d, 0x8c, 0x9e, 0x7d, 0x65, 0x78, 0xe6, 0x6c, 0x2b, 0xf2, 0x42, - 0x5d, 0xea, 0x12, 0x38, 0x65, 0x75, 0x14, 0x01, 0x1b, 0xdd, 0xa7, 0x72, 0xbe, 0x3e, 0x99, 0x8c, - 0x58, 0xc9, 0x13, 0x56, 0xc7, 0x70, 0xb0, 0xd3, 0x53, 0xd9, 0x3c, 0x4e, 0x6f, 0x49, 0x91, 0x9a, - 0x85, 0x53, 0xd2, 0x3a, 0x02, 0xef, 0x6e, 0xef, 0xff, 0x5c, 0xd7, 0xdd, 0x1d, 0x46, 0x64, 0xbb, - 0x3d, 0x61, 0x21, 0xc5, 0x95, 0x77, 0xef, 0x7b, 0x6f, 0x9e, 0x2a, 0x4a, 0x20, 0xbd, 0xeb, 0x90, - 0x40, 0x90, 0x40, 0xd2, 0x91, 0x40, 0x3a, 0x03, 0x4e, 0x5f, 0xf6, 0xe8, 0x5e, 0xae, 0x27, 0x75, - 0x14, 0x91, 0x3a, 0x90, 0x3a, 0xec, 0xe0, 0x9a, 0xea, 0x34, 0x18, 0x5c, 0xa8, 0x28, 0x5d, 0xcf, - 0x1c, 0x2e, 0x4a, 0x52, 0xb6, 0xd0, 0x04, 0x31, 0x9e, 0x28, 0x12, 0x13, 0x46, 0x6e, 0xe2, 0x48, - 0xc2, 0xe2, 0x66, 0x2e, 0x8f, 0xe4, 0xd7, 0x9a, 0x58, 0x4b, 0x89, 0x38, 0xb5, 0x27, 0xdc, 0xb8, - 0x1f, 0xea, 0x9e, 0x8a, 0x20, 0x26, 0x6c, 0x8d, 0xb4, 0x69, 0xf8, 0x62, 0xcc, 0x32, 0x88, 0xc4, - 0x26, 0xa6, 0xe4, 0x04, 0x95, 0x9f, 0xa8, 0xd2, 0x13, 0xd6, 0xda, 0xc4, 0xb5, 0x36, 0x81, 0xad, - 0x4c, 0x64, 0x19, 0xe9, 0xca, 0x50, 0xd6, 0xd3, 0x5f, 0x3c, 0x98, 0x39, 0xde, 0x64, 0x74, 0xf5, - 0x09, 0x9f, 0x79, 0x20, 0xd0, 0x96, 0xa8, 0xce, 0x3e, 0xf1, 0xe0, 0xe5, 0x72, 0xf9, 0xae, 0xfc, - 0xee, 0xdd, 0xe5, 0xef, 0x9f, 0x6e, 0xcf, 0x3f, 0x7d, 0xb8, 0x3b, 0xfb, 0xd7, 0xd9, 0xa7, 0x5b, - 0x09, 0xe5, 0x7d, 0x70, 0x23, 0x41, 0x05, 0xde, 0x5c, 0x52, 0x54, 0xef, 0x8a, 0x8b, 0xcb, 0x0f, - 0xe7, 0x9f, 0x0a, 0x62, 0x37, 0x7c, 0x7e, 0x95, 0xcb, 0x5e, 0x78, 0x77, 0xf9, 0xf1, 0x63, 0xf9, - 0xd3, 0xa9, 0x60, 0x3f, 0x88, 0xb4, 0x54, 0x59, 0xb6, 0x1d, 0xdb, 0x58, 0xc2, 0x38, 0x28, 0x84, - 0x5e, 0xb5, 0xeb, 0x80, 0x84, 0xc8, 0xa4, 0xd7, 0x1e, 0x54, 0x02, 0x95, 0x40, 0x25, 0x99, 0xa2, - 0x12, 0x2f, 0x68, 0x3d, 0x7a, 0x61, 0x57, 0x9a, 0x16, 0xa4, 0x92, 0x92, 0x40, 0x5b, 0x67, 0x41, - 0xab, 0x93, 0xe1, 0xbc, 0x34, 0x03, 0x9a, 0x6a, 0x44, 0xa9, 0xb9, 0x44, 0x30, 0xd1, 0x8e, 0xe6, - 0x92, 0x41, 0x57, 0x88, 0xef, 0xfe, 0x9f, 0xd2, 0xfa, 0x81, 0x79, 0xaf, 0xe9, 0xec, 0x8f, 0x11, - 0x08, 0x9f, 0xe5, 0xc2, 0x66, 0xd3, 0x0d, 0x37, 0xe8, 0x57, 0xe8, 0x57, 0x29, 0x5b, 0x1b, 0x63, - 0x47, 0x32, 0x2c, 0xca, 0xea, 0xb9, 0xf7, 0x42, 0xa9, 0x62, 0x47, 0x06, 0x6d, 0x5c, 0xf5, 0x0c, - 0xde, 0xce, 0x4e, 0xcf, 0x7a, 0xed, 0x8e, 0x4c, 0xeb, 0x0c, 0x1b, 0xb2, 0xee, 0xbe, 0x2c, 0x63, - 0x1b, 0xd6, 0x6d, 0x66, 0xc9, 0xf2, 0xfb, 0x3e, 0xe6, 0x0b, 0xf3, 0x95, 0x8a, 0xf9, 0x42, 0x7e, - 0x27, 0xd0, 0x25, 0xd0, 0x25, 0xd0, 0x55, 0x18, 0x6f, 0xc8, 0xef, 0xc8, 0xef, 0xc8, 0xef, 0xc8, - 0xef, 0xa9, 0xa9, 0x47, 0xc8, 0xef, 0x50, 0x09, 0x54, 0x02, 0x95, 0xcc, 0x8f, 0x19, 0x90, 0xdf, - 0xb3, 0x11, 0x51, 0x66, 0x49, 0x7e, 0x4f, 0x50, 0xab, 0x47, 0x50, 0xb4, 0xb2, 0x9a, 0x98, 0xfa, - 0x4f, 0xef, 0xc9, 0x28, 0x34, 0x5e, 0xc9, 0x8d, 0x48, 0xed, 0x26, 0xac, 0xf6, 0xba, 0xe1, 0x60, - 0x96, 0x18, 0xc4, 0x05, 0x2d, 0x2d, 0x74, 0xac, 0x12, 0x52, 0xe7, 0x1e, 0x77, 0x65, 0xd7, 0xbd, - 0x2b, 0x0f, 0xee, 0x71, 0x77, 0xd6, 0x69, 0x9c, 0x4d, 0x3f, 0xb3, 0x7a, 0x3f, 0xcd, 0x4d, 0x3f, - 0x6a, 0xda, 0xb5, 0x96, 0x56, 0xad, 0xbd, 0xe5, 0x67, 0x9f, 0x2d, 0x3f, 0x92, 0x90, 0x47, 0xd5, - 0x13, 0xaa, 0x9e, 0xb0, 0x15, 0x88, 0xaa, 0x27, 0x89, 0x6c, 0x35, 0x55, 0x4f, 0xa8, 0x7a, 0x92, - 0xba, 0xcc, 0x49, 0xd5, 0x93, 0x7c, 0x3f, 0x18, 0x55, 0x4f, 0xd2, 0x37, 0x7a, 0x54, 0x3d, 0x59, - 0x7d, 0xb1, 0x81, 0xaa, 0x27, 0x76, 0x50, 0x70, 0x93, 0xaa, 0x27, 0x19, 0x13, 0x40, 0x14, 0x64, - 0xd3, 0x1c, 0x95, 0x73, 0x9f, 0xf3, 0xc4, 0x85, 0x44, 0x1a, 0xcd, 0x42, 0x4d, 0x4d, 0xbb, 0x2a, - 0xfc, 0x9c, 0x02, 0xd3, 0x6e, 0x2b, 0xfe, 0xd6, 0xa6, 0xd8, 0x6a, 0xb2, 0x4e, 0x18, 0x06, 0xd8, - 0xe3, 0xd7, 0x51, 0x63, 0x99, 0x1a, 0xcb, 0xbd, 0x01, 0x55, 0x7b, 0xf4, 0x03, 0xa7, 0x63, 0x63, - 0x95, 0x05, 0xc7, 0x91, 0x6b, 0x29, 0x34, 0x84, 0xea, 0x98, 0x8e, 0xea, 0xa8, 0x59, 0x59, 0xc5, - 0xac, 0xa2, 0x0a, 0xa5, 0x86, 0xd0, 0x17, 0xb3, 0x5a, 0x6a, 0xa8, 0x6b, 0x85, 0x9b, 0x6e, 0x14, - 0xfd, 0xc7, 0x24, 0xb9, 0xe9, 0x85, 0x55, 0x1f, 0xb4, 0xc7, 0xd6, 0x2d, 0xf6, 0x3e, 0xa4, 0x3c, - 0xd1, 0x96, 0x22, 0xfb, 0x08, 0x6e, 0xdd, 0x5a, 0xba, 0xfc, 0xa3, 0xd9, 0x03, 0x67, 0x3f, 0x62, - 0x33, 0xe5, 0x59, 0x6e, 0x74, 0x37, 0xaa, 0x8e, 0xf7, 0x23, 0x3e, 0x19, 0x09, 0xd8, 0xbe, 0xb9, - 0xd1, 0x37, 0xaf, 0xe6, 0x7c, 0xef, 0x1c, 0xa2, 0x26, 0x3a, 0xea, 0xef, 0xdd, 0x7a, 0x24, 0x39, - 0xec, 0xd3, 0x1e, 0xf0, 0x95, 0x54, 0x36, 0xd4, 0x8d, 0xbb, 0x85, 0xde, 0xeb, 0x90, 0xf6, 0x36, - 0xfd, 0x66, 0x71, 0x3a, 0x38, 0x1d, 0x9c, 0x8e, 0x5a, 0x5c, 0x13, 0x3e, 0x35, 0xe3, 0xe1, 0x44, - 0x32, 0xdc, 0x2e, 0x97, 0xfa, 0x02, 0xc4, 0xf3, 0xea, 0x24, 0xee, 0x8d, 0x49, 0x6d, 0xbb, 0x43, - 0x91, 0x44, 0xab, 0xfc, 0x83, 0x82, 0xc6, 0xac, 0xa0, 0x5c, 0xe8, 0xed, 0x8e, 0x36, 0xda, 0x15, - 0x6d, 0x1c, 0x42, 0xef, 0x13, 0x42, 0x13, 0x42, 0x13, 0x42, 0x43, 0x33, 0xd0, 0x0c, 0x21, 0x34, - 0x21, 0x34, 0x21, 0x34, 0x21, 0x34, 0x21, 0x34, 0x4e, 0x07, 0xa7, 0x43, 0x08, 0x6d, 0x6a, 0x92, - 0xda, 0xd1, 0x69, 0x2f, 0x95, 0x45, 0xc4, 0x16, 0x0d, 0xda, 0xc3, 0x08, 0x61, 0x84, 0x30, 0x42, - 0xf9, 0x22, 0x5f, 0xa4, 0xbb, 0x29, 0xd2, 0x9d, 0xc6, 0xd6, 0xf1, 0x95, 0xce, 0x0e, 0x9d, 0xd5, - 0x51, 0x05, 0x25, 0x11, 0x72, 0x56, 0x0a, 0xe5, 0x58, 0xeb, 0x77, 0xe5, 0x76, 0xeb, 0xbf, 0x27, - 0xce, 0x02, 0x96, 0xd9, 0x83, 0xab, 0x98, 0x66, 0xa4, 0x97, 0x5e, 0x44, 0x3e, 0xdc, 0x26, 0xf9, - 0x70, 0x66, 0x1a, 0xe6, 0x8b, 0xcc, 0x5e, 0xf3, 0x9d, 0xb8, 0x53, 0x9b, 0x63, 0x37, 0xae, 0x3d, - 0x3e, 0x43, 0xea, 0x67, 0x37, 0xae, 0x65, 0x69, 0x90, 0xdd, 0xb8, 0x9a, 0xcd, 0xb2, 0x1b, 0x77, - 0x39, 0x4f, 0xc7, 0x6e, 0x5c, 0x6b, 0x11, 0x6e, 0xff, 0x0f, 0xbb, 0x71, 0xb3, 0x1b, 0x51, 0xb3, - 0x1b, 0x37, 0x49, 0x23, 0xec, 0xc6, 0x4d, 0x47, 0x9a, 0x63, 0x37, 0x6e, 0xd6, 0xf4, 0x16, 0x95, - 0x44, 0x32, 0x4a, 0x92, 0x21, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, - 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, - 0x20, 0x86, 0xe4, 0x5e, 0x0c, 0x91, 0x2d, 0x4f, 0x96, 0x40, 0x0b, 0x69, 0xbf, 0xf5, 0x48, 0x5d, - 0x0b, 0xe9, 0x5e, 0x46, 0x62, 0x08, 0x5a, 0x48, 0x3a, 0x5a, 0x88, 0x52, 0x4d, 0x2f, 0x09, 0x27, - 0x40, 0x91, 0x24, 0x94, 0x8e, 0xac, 0xee, 0xf0, 0xd4, 0xac, 0x1a, 0x36, 0x31, 0x5c, 0xb4, 0xaa, - 0x87, 0x19, 0x4e, 0x10, 0xe3, 0x89, 0x22, 0x31, 0x61, 0xe4, 0x26, 0x8e, 0x24, 0x2b, 0x6e, 0x92, - 0xd7, 0x6e, 0x35, 0xe0, 0x34, 0x3f, 0x10, 0xda, 0x78, 0x53, 0xf5, 0xc4, 0xc0, 0x33, 0xdc, 0x56, - 0xfd, 0x72, 0x32, 0x72, 0xec, 0x62, 0x9a, 0x93, 0xd5, 0xda, 0xa4, 0xb5, 0x36, 0x79, 0xad, 0x4c, - 0x62, 0x19, 0xd5, 0x2a, 0x7b, 0xc7, 0x2e, 0x1a, 0xab, 0x4b, 0x42, 0x2a, 0x93, 0x54, 0x0f, 0x19, - 0x6f, 0xe7, 0x36, 0x57, 0xee, 0x66, 0x4a, 0x23, 0x36, 0xb7, 0x77, 0xcf, 0x98, 0x4d, 0x02, 0xdb, - 0xbc, 0xa7, 0x4e, 0xa7, 0x1c, 0xcb, 0xbf, 0xaf, 0xcc, 0x5d, 0xa3, 0xe9, 0x46, 0xf0, 0x99, 0x1e, - 0xd2, 0x6c, 0x2b, 0x38, 0x8e, 0x12, 0x47, 0x89, 0xa3, 0xb4, 0xe4, 0x28, 0x65, 0xb7, 0x9a, 0x4b, - 0x7b, 0xcd, 0xe5, 0x1c, 0xce, 0xde, 0xa8, 0x0b, 0xae, 0x7d, 0x77, 0x5a, 0xc3, 0xf0, 0x61, 0xf8, - 0x30, 0x7c, 0x99, 0x32, 0x7c, 0xba, 0x99, 0x46, 0x33, 0x4d, 0xdd, 0xb1, 0x40, 0x5b, 0x46, 0x99, - 0x48, 0x76, 0x50, 0xdf, 0x4e, 0x58, 0x25, 0xec, 0x28, 0x84, 0x86, 0x99, 0xc5, 0x9e, 0x93, 0xc9, - 0xf1, 0x9a, 0xd9, 0x7d, 0x07, 0x82, 0x6d, 0x8a, 0xe6, 0x80, 0xcd, 0xec, 0x90, 0x9b, 0x3f, 0x6e, - 0x6e, 0xcf, 0x3e, 0xde, 0x9d, 0x9e, 0xbd, 0x3f, 0xff, 0x74, 0x76, 0x7a, 0x77, 0x7d, 0x79, 0x71, - 0x76, 0x23, 0xd8, 0x33, 0x9b, 0xc2, 0x89, 0x62, 0xf6, 0x86, 0xc8, 0xbc, 0xde, 0x69, 0xf7, 0xca, - 0x5d, 0xf9, 0xf4, 0xe3, 0xf9, 0xa7, 0x82, 0xf8, 0xfd, 0x9e, 0x45, 0x5b, 0xac, 0x6c, 0x64, 0xeb, - 0x7b, 0x99, 0xb7, 0x52, 0xc9, 0x21, 0xba, 0x46, 0xd1, 0x37, 0xe7, 0x2f, 0xef, 0x49, 0x8e, 0x5e, - 0xfb, 0x0d, 0x02, 0xb0, 0x00, 0x2c, 0x00, 0x9b, 0x29, 0x80, 0xcd, 0x9c, 0xc4, 0xbd, 0x14, 0x8b, - 0x67, 0x5c, 0x31, 0x6e, 0x32, 0x30, 0x30, 0xab, 0x19, 0x87, 0xcd, 0xc3, 0xe6, 0x61, 0xf3, 0xb0, - 0x79, 0x56, 0xae, 0xd4, 0xcd, 0x9e, 0x30, 0xac, 0x5d, 0x37, 0xe4, 0x4b, 0xfd, 0xec, 0xd8, 0x4e, - 0xd6, 0xe9, 0xae, 0xf6, 0xf1, 0x13, 0xfa, 0xfd, 0xa6, 0x53, 0x8d, 0x54, 0xef, 0x58, 0x8a, 0x29, - 0xc3, 0x55, 0xfd, 0x78, 0x8a, 0x89, 0x11, 0x6a, 0x9a, 0xa3, 0xb5, 0x4f, 0x8e, 0x96, 0x45, 0xbf, - 0x40, 0x8e, 0xd6, 0xf0, 0x9b, 0x93, 0xa3, 0x05, 0xcc, 0x01, 0x73, 0xc0, 0x5c, 0x5e, 0x61, 0x8e, - 0x1c, 0x2d, 0xc9, 0xd9, 0x44, 0x8e, 0x96, 0xa4, 0xce, 0x41, 0x8e, 0x16, 0x8e, 0x12, 0x47, 0xb9, - 0x9e, 0x8e, 0x92, 0x1c, 0xad, 0x89, 0xef, 0x4e, 0x8e, 0x16, 0x86, 0x0f, 0xc3, 0xb7, 0xea, 0x86, - 0x8f, 0x1c, 0xad, 0x65, 0x86, 0x55, 0xc2, 0x8e, 0x42, 0x68, 0x98, 0x59, 0xec, 0x39, 0x72, 0xb4, - 0x5e, 0x74, 0x08, 0x39, 0x5a, 0x09, 0x7a, 0x87, 0x1c, 0xad, 0xe5, 0xb5, 0x42, 0x8e, 0x16, 0x39, - 0x5a, 0x00, 0x2c, 0x00, 0x9b, 0x55, 0x80, 0x25, 0x47, 0x8b, 0x1c, 0x2d, 0x6c, 0x1e, 0x36, 0x0f, - 0x9b, 0x97, 0x4b, 0x9b, 0xb7, 0xc6, 0x39, 0x5a, 0x1a, 0xe7, 0x8c, 0xea, 0x77, 0x9b, 0x4e, 0x8a, - 0x96, 0xdc, 0x51, 0xd1, 0x1c, 0x12, 0x4d, 0xa2, 0xd6, 0xb2, 0x9d, 0x41, 0x5e, 0x0f, 0x89, 0xae, - 0x7b, 0xee, 0xbd, 0x50, 0xd9, 0xfa, 0x23, 0x83, 0x36, 0xae, 0x7a, 0xd6, 0x6e, 0x67, 0xa7, 0x97, - 0x5c, 0xba, 0x3b, 0x98, 0xd4, 0x2b, 0x71, 0xf6, 0xf4, 0x3f, 0x3b, 0x7a, 0x81, 0xae, 0xa5, 0x5a, - 0xc9, 0xda, 0xd2, 0xed, 0x26, 0x56, 0xf5, 0xbc, 0xef, 0xa1, 0x1f, 0x2e, 0x68, 0x25, 0x2f, 0x27, - 0x3b, 0xce, 0xfa, 0x77, 0xe5, 0xa2, 0xd1, 0x6b, 0x54, 0xcc, 0xb9, 0x5b, 0x24, 0x59, 0xaa, 0x98, - 0xf3, 0x86, 0x41, 0x2f, 0xa8, 0x3e, 0xbd, 0xc1, 0x53, 0x17, 0x12, 0x1d, 0xc0, 0x95, 0x68, 0x74, - 0xcd, 0xef, 0xba, 0xd9, 0x1d, 0x32, 0xa7, 0x33, 0x3a, 0xa7, 0x20, 0x35, 0x42, 0xff, 0x7f, 0x93, - 0xf5, 0xc5, 0xd8, 0xe1, 0x49, 0xc3, 0xcb, 0x16, 0x74, 0x76, 0xb2, 0xac, 0xfb, 0xc4, 0xd0, 0xa6, - 0x02, 0x67, 0xea, 0x10, 0xa6, 0x0a, 0x5b, 0xda, 0x50, 0xa5, 0x0d, 0x4f, 0x5a, 0x90, 0x64, 0x36, - 0x5d, 0x92, 0x66, 0xa1, 0x73, 0xb2, 0x3e, 0x05, 0xd4, 0x97, 0xe2, 0xcd, 0xb4, 0x0e, 0x93, 0x1b, - 0x18, 0x30, 0x91, 0xb3, 0xe4, 0x26, 0x5a, 0xe3, 0x28, 0x39, 0x7b, 0x21, 0x2d, 0x05, 0xd6, 0x39, - 0x4a, 0x2e, 0xd1, 0x1f, 0x8e, 0x92, 0x5b, 0xfc, 0x80, 0x1c, 0x25, 0x97, 0x9e, 0x4e, 0x64, 0xf1, - 0xe9, 0x38, 0x4a, 0xce, 0x9a, 0x28, 0xd8, 0xff, 0xc3, 0x51, 0x72, 0xea, 0xf6, 0x8e, 0xa3, 0xe4, - 0x38, 0x4a, 0x4e, 0x1a, 0xff, 0x36, 0x39, 0x4a, 0x4e, 0x08, 0x21, 0x57, 0x5c, 0x7d, 0x1c, 0x04, - 0x65, 0x4b, 0x38, 0x56, 0xdf, 0xfb, 0xde, 0x9b, 0xaa, 0x8a, 0x5a, 0x48, 0xef, 0x3a, 0xb4, 0x10, - 0xb4, 0x90, 0x74, 0xb4, 0x90, 0xce, 0x80, 0xd3, 0x17, 0x3f, 0xba, 0x97, 0x73, 0x9c, 0x1c, 0x6a, - 0x47, 0xa6, 0xd4, 0x0e, 0x8e, 0x93, 0x23, 0x03, 0xc6, 0xda, 0x44, 0xb2, 0xc2, 0x8c, 0x9b, 0x6b, - 0x5e, 0xaa, 0xa8, 0xe3, 0x48, 0xba, 0x5b, 0xb1, 0xc5, 0xb4, 0xad, 0x91, 0x36, 0xc9, 0x6b, 0xb6, - 0x3f, 0x51, 0xa5, 0x27, 0xac, 0xb5, 0x89, 0x6b, 0x6d, 0x02, 0x5b, 0x99, 0xc8, 0x32, 0xea, 0x55, - 0xf6, 0xf2, 0x9a, 0x65, 0x77, 0x87, 0x4a, 0xee, 0x0a, 0xb5, 0xb3, 0x1b, 0x74, 0x4c, 0x72, 0x2f, - 0xff, 0x7e, 0xfb, 0x8f, 0xcb, 0xeb, 0xf3, 0xff, 0x5b, 0xbe, 0x3d, 0xbf, 0xfc, 0x74, 0x77, 0xf6, - 0xaf, 0xb3, 0x4f, 0xb7, 0x12, 0xfa, 0xfb, 0xe0, 0x5e, 0x16, 0x76, 0x81, 0x5a, 0xda, 0x13, 0x3b, - 0xab, 0x37, 0xde, 0x5d, 0x7e, 0xfc, 0x58, 0xfe, 0x74, 0x2a, 0xb7, 0x07, 0xf4, 0xf9, 0x55, 0x7e, - 0xbb, 0xe2, 0xd3, 0xfb, 0xf3, 0x0f, 0x85, 0x8c, 0xed, 0x36, 0xad, 0x2c, 0xdb, 0xa2, 0xb1, 0x0f, - 0x21, 0xa1, 0xfc, 0xd5, 0x15, 0x95, 0xba, 0xff, 0x97, 0x83, 0x62, 0xb1, 0x02, 0x28, 0x28, 0x87, - 0x80, 0xec, 0x46, 0x20, 0x16, 0x63, 0x37, 0x42, 0xd6, 0x76, 0x23, 0x8c, 0x4c, 0x6b, 0xaa, 0x5e, - 0xa7, 0x22, 0x25, 0x51, 0xf5, 0x1a, 0xf3, 0x85, 0x94, 0x84, 0x94, 0x84, 0x94, 0x84, 0x94, 0x84, - 0x94, 0x84, 0x94, 0x84, 0x94, 0x84, 0x94, 0x84, 0x94, 0xb4, 0xde, 0x52, 0x52, 0xba, 0x35, 0x2d, - 0xd2, 0xd8, 0x10, 0xae, 0x8d, 0x79, 0x6c, 0x09, 0xdf, 0xcc, 0xc1, 0x96, 0xf0, 0xe9, 0xe3, 0x58, - 0x7c, 0x4f, 0xf8, 0xe0, 0x36, 0x77, 0x67, 0x9d, 0xf6, 0xc9, 0xca, 0x9c, 0xf3, 0x0e, 0xd2, 0xcc, - 0xca, 0x54, 0x13, 0x64, 0xb4, 0x04, 0x18, 0xed, 0x9c, 0xcc, 0x7d, 0x72, 0x32, 0x25, 0xe3, 0x29, - 0xf6, 0xa7, 0xb2, 0x3f, 0x95, 0x8c, 0x4d, 0x49, 0x11, 0x81, 0xfd, 0xa9, 0xb3, 0xbf, 0x36, 0xfb, - 0x53, 0xd9, 0x9f, 0x6a, 0xf8, 0xa0, 0xec, 0x4f, 0xcd, 0xe5, 0x83, 0xb1, 0x3f, 0x35, 0x7d, 0xa3, - 0xc7, 0xfe, 0xd4, 0xd5, 0xd7, 0x1e, 0xd8, 0x9f, 0x6a, 0x07, 0x05, 0x37, 0xd9, 0x9f, 0x9a, 0x3d, - 0x25, 0x44, 0x41, 0x48, 0xcd, 0x7b, 0x71, 0xbc, 0xa4, 0x85, 0xe3, 0x14, 0x54, 0x36, 0x1b, 0xa5, - 0xf1, 0x12, 0xee, 0x03, 0x53, 0xdb, 0xef, 0x45, 0x31, 0x3c, 0x59, 0xdb, 0xb6, 0x84, 0x62, 0x78, - 0x36, 0xa7, 0x47, 0x92, 0xcc, 0x5c, 0xbd, 0xd1, 0x1c, 0x79, 0xe1, 0x77, 0x2f, 0x74, 0x1e, 0xc2, - 0x46, 0xab, 0x19, 0x25, 0x1f, 0xd4, 0xe3, 0x97, 0x31, 0xb6, 0x29, 0xf4, 0x38, 0x39, 0x9c, 0x34, - 0xd4, 0xf4, 0xd1, 0xab, 0x29, 0x74, 0x90, 0xa2, 0xae, 0xb8, 0xd6, 0xa2, 0xba, 0xe6, 0xce, 0x6e, - 0xb3, 0x1d, 0xdd, 0x94, 0x3a, 0x48, 0x75, 0x80, 0x8b, 0x47, 0x4b, 0xab, 0x5c, 0xea, 0x40, 0xe6, - 0xb0, 0x0f, 0x0e, 0xfa, 0x20, 0x37, 0x7d, 0x19, 0x93, 0x6a, 0x29, 0xda, 0xa5, 0xe0, 0xd6, 0x9a, - 0xfc, 0x69, 0x98, 0x3a, 0x3b, 0x60, 0x64, 0x36, 0xf1, 0xb1, 0x7d, 0x0f, 0x1b, 0x83, 0x8d, 0x51, - 0x1f, 0x2f, 0x6b, 0xb1, 0x38, 0x7c, 0x73, 0x76, 0xfd, 0xaf, 0xb3, 0xeb, 0x15, 0x5f, 0x1c, 0xee, - 0xae, 0x32, 0xae, 0xe2, 0xfa, 0x69, 0x77, 0xd9, 0x7b, 0xed, 0xd6, 0x4e, 0x33, 0x16, 0x44, 0xa4, - 0x99, 0x88, 0x3b, 0xa6, 0x2a, 0x8e, 0xfd, 0x4d, 0xab, 0x36, 0x81, 0xc2, 0x2a, 0x91, 0x82, 0x44, - 0xa3, 0x15, 0x1c, 0x99, 0x04, 0x45, 0xa4, 0xd8, 0xa1, 0x14, 0x64, 0x3e, 0xc5, 0x4e, 0xbf, 0x1e, - 0x80, 0x49, 0x1d, 0x80, 0x29, 0xfb, 0xff, 0xd5, 0x4f, 0x22, 0xb4, 0x63, 0x26, 0xba, 0xd6, 0x2b, - 0xd2, 0xb7, 0x14, 0xfd, 0x06, 0x90, 0x15, 0x31, 0x16, 0xab, 0x21, 0x2b, 0x76, 0x47, 0xb4, 0x40, - 0xd5, 0x8b, 0x6e, 0x3b, 0x54, 0x50, 0x25, 0xec, 0x5f, 0x8b, 0xb0, 0xdf, 0xb8, 0xec, 0x85, 0x5b, - 0xab, 0x85, 0x5e, 0x14, 0xc9, 0x45, 0xd7, 0xfd, 0x06, 0x29, 0x78, 0x61, 0x7f, 0x8a, 0x4a, 0x4f, - 0x55, 0x6b, 0x53, 0xd6, 0xda, 0xd4, 0xb5, 0x32, 0x85, 0x65, 0xd4, 0x81, 0xec, 0x15, 0xbc, 0x30, - 0x2f, 0xcc, 0x25, 0x01, 0xe6, 0x09, 0x40, 0xbd, 0x6f, 0x43, 0x96, 0xb5, 0x3d, 0xdf, 0xc0, 0x69, - 0x1a, 0x96, 0x82, 0x9f, 0x78, 0x67, 0x46, 0x25, 0xe1, 0x85, 0xc0, 0x06, 0x6b, 0x8a, 0x35, 0xcd, - 0xbb, 0x35, 0x35, 0x05, 0x25, 0x71, 0x60, 0xb2, 0x04, 0x4e, 0xc2, 0x00, 0x25, 0x3e, 0xf5, 0x6d, - 0x98, 0x00, 0x7b, 0xa6, 0xc0, 0x96, 0x49, 0xb0, 0x6e, 0x1a, 0xac, 0x9b, 0x08, 0xab, 0xa6, 0x42, - 0xc6, 0x64, 0x08, 0x99, 0x0e, 0x79, 0x20, 0x9b, 0x18, 0xaf, 0x7e, 0xd3, 0x91, 0x9d, 0xfd, 0x9b, - 0x86, 0x3b, 0x94, 0x17, 0xf5, 0xc1, 0x67, 0xd1, 0x31, 0x24, 0x3b, 0xa7, 0x5e, 0xf4, 0xec, 0xf7, - 0x92, 0x85, 0xbe, 0x9d, 0xe8, 0xe3, 0x37, 0x16, 0xda, 0xbe, 0x72, 0xe3, 0xd8, 0x0b, 0x03, 0xf1, - 0xee, 0x1e, 0xdc, 0xe0, 0xcf, 0xad, 0xad, 0xcf, 0x7b, 0xce, 0x71, 0xe5, 0xd7, 0xe7, 0xa2, 0x73, - 0x5c, 0xe9, 0xfe, 0x58, 0xec, 0xfc, 0x5f, 0xf7, 0xe7, 0xfd, 0xcf, 0x7b, 0x4e, 0xa9, 0xff, 0xf3, - 0xc1, 0xe7, 0x3d, 0xe7, 0xa0, 0xb2, 0xfd, 0xe5, 0xcb, 0xce, 0xf6, 0xcf, 0xd7, 0xcf, 0xea, 0x17, - 0xfe, 0xad, 0x20, 0xfe, 0x10, 0x15, 0xd1, 0x16, 0x9f, 0x5f, 0xe5, 0x68, 0x50, 0x1f, 0x32, 0xa8, - 0xe7, 0x0f, 0x6a, 0xd7, 0xb9, 0x2f, 0x3b, 0xef, 0x2b, 0x3f, 0x8b, 0xaf, 0x4a, 0xcf, 0x27, 0xdb, - 0x3f, 0x8f, 0x9e, 0x5f, 0xfe, 0xf2, 0xd7, 0xb4, 0x8f, 0x15, 0x5f, 0x1d, 0x3d, 0x9f, 0xcc, 0xf8, - 0x97, 0xc3, 0xe7, 0x93, 0x84, 0x6d, 0x1c, 0x3c, 0x6f, 0x4d, 0x7c, 0xb4, 0xfd, 0xfb, 0xfd, 0x59, - 0x17, 0x94, 0x66, 0x5c, 0xf0, 0x7a, 0xd6, 0x05, 0xaf, 0x67, 0x5c, 0x30, 0xf3, 0x2b, 0xed, 0xcf, - 0xb8, 0xe0, 0xe0, 0xf9, 0xd7, 0xc4, 0xe7, 0xb7, 0xa6, 0x7f, 0xf4, 0xf0, 0x79, 0xfb, 0xd7, 0xac, - 0x7f, 0x3b, 0x7a, 0xfe, 0x75, 0xb2, 0x9d, 0x83, 0x29, 0xbe, 0x91, 0xad, 0xef, 0xf5, 0x9c, 0x85, - 0xd4, 0x1c, 0xb3, 0x94, 0xee, 0x99, 0x46, 0xca, 0x20, 0xc5, 0x9b, 0x58, 0x86, 0x58, 0x86, 0x58, - 0x26, 0xa7, 0xb1, 0x8c, 0x71, 0x8a, 0xfa, 0x6c, 0x1c, 0x59, 0x21, 0x9b, 0x1b, 0xfb, 0x8f, 0x5e, - 0xa3, 0x15, 0xcb, 0x9b, 0xdd, 0x7e, 0xc3, 0x58, 0x5e, 0x2c, 0x2f, 0x96, 0x77, 0xad, 0x2c, 0x6f, - 0xcb, 0x0f, 0xe2, 0xe2, 0xa1, 0x05, 0xcb, 0x7b, 0x28, 0xd8, 0xe4, 0xb5, 0x1b, 0x3c, 0xe4, 0x42, - 0x41, 0xfa, 0xe8, 0x07, 0xe2, 0x13, 0xd5, 0x92, 0x59, 0x9d, 0x68, 0xbe, 0xb3, 0x25, 0xc1, 0x62, - 0xfb, 0xef, 0x43, 0xb7, 0x1a, 0xfb, 0x8d, 0xe0, 0xd4, 0x7f, 0xf0, 0x3b, 0xa5, 0x9b, 0xf6, 0xc4, - 0xef, 0xf3, 0x6c, 0x41, 0x7b, 0xf8, 0xe8, 0xfe, 0xc8, 0xfd, 0x2b, 0x3d, 0x3c, 0x38, 0x78, 0x7d, - 0x90, 0xe3, 0xd7, 0x4a, 0x3c, 0x6f, 0xb1, 0x05, 0xd3, 0x45, 0x52, 0xa1, 0x93, 0x02, 0x06, 0xed, - 0x09, 0x6d, 0xf0, 0xe8, 0xa5, 0x3b, 0xf7, 0xfe, 0xdf, 0xe8, 0x2c, 0x4a, 0xf3, 0x7e, 0x36, 0x49, - 0x0e, 0x09, 0xdd, 0x9a, 0xdf, 0x12, 0xcc, 0xb5, 0xeb, 0xb5, 0x47, 0x72, 0x48, 0x7a, 0x2c, 0x4f, - 0x72, 0x08, 0xc9, 0x21, 0xb3, 0x1b, 0x12, 0xca, 0xfe, 0x9a, 0x18, 0xbe, 0x22, 0x59, 0x60, 0xc2, - 0x13, 0x9e, 0xa0, 0x9e, 0xa0, 0x9e, 0xa0, 0x5e, 0xd6, 0x80, 0x0c, 0x1a, 0x74, 0xab, 0xd5, 0xd8, - 0x69, 0x36, 0xc2, 0x58, 0x7e, 0x5c, 0x0d, 0xf2, 0xcd, 0x06, 0xb7, 0x10, 0x7e, 0xed, 0xa7, 0xde, - 0xbd, 0xdb, 0xaa, 0x77, 0xde, 0x7a, 0xf1, 0x4d, 0xf1, 0xb5, 0x74, 0xf3, 0x76, 0x02, 0x2d, 0x71, - 0x2b, 0x66, 0xd3, 0x9a, 0xd9, 0xb7, 0x6a, 0xb6, 0xad, 0x5b, 0x6a, 0x56, 0x2e, 0x35, 0x6b, 0x97, - 0x8a, 0xd5, 0xb3, 0x14, 0x46, 0x0b, 0x8f, 0x78, 0x71, 0x89, 0x73, 0x62, 0xbc, 0xb7, 0xcd, 0x96, - 0x13, 0xb4, 0x1e, 0xbf, 0x6a, 0xef, 0xf5, 0x4b, 0x62, 0x62, 0x0e, 0x2d, 0x34, 0x6d, 0x47, 0xff, - 0xec, 0xff, 0xb1, 0x33, 0x49, 0x37, 0x6d, 0xeb, 0xa1, 0x29, 0x89, 0x68, 0x13, 0x62, 0x9a, 0xed, - 0xfb, 0xa4, 0x20, 0xa8, 0x59, 0x9a, 0xc3, 0xe3, 0xaf, 0xde, 0xa2, 0x6e, 0xba, 0xac, 0x57, 0x6f, - 0x51, 0x47, 0x5d, 0xca, 0xeb, 0xdf, 0xc8, 0x47, 0xab, 0x59, 0xcd, 0xe7, 0x12, 0x9c, 0x3e, 0x9d, - 0xa3, 0xd3, 0x6c, 0xb3, 0xfb, 0xe0, 0x16, 0x56, 0xd9, 0x7d, 0x1f, 0x76, 0x87, 0xdd, 0x61, 0x77, - 0xd8, 0x1d, 0x76, 0x87, 0xdd, 0x61, 0x77, 0xd8, 0x1d, 0x76, 0x87, 0xdd, 0x57, 0x9a, 0xdd, 0x43, - 0x2f, 0x0e, 0xdd, 0x20, 0x7a, 0xf4, 0x63, 0xc7, 0x8d, 0x63, 0xef, 0xb1, 0x19, 0x47, 0xf6, 0x28, - 0x7e, 0xda, 0xcd, 0x00, 0x6e, 0x80, 0x1b, 0xe0, 0x06, 0xb8, 0x05, 0xc7, 0x7b, 0xcb, 0x0f, 0xe2, - 0x37, 0x16, 0x51, 0xfb, 0x00, 0xd4, 0x06, 0xb5, 0x41, 0xed, 0x95, 0x44, 0xed, 0xfd, 0x03, 0x40, - 0x1b, 0xd0, 0xb6, 0x00, 0xda, 0x91, 0x57, 0x0d, 0xbd, 0xd8, 0xf9, 0xcb, 0x7b, 0xb2, 0xc7, 0xd7, - 0x23, 0xf7, 0x00, 0xab, 0xc1, 0x6a, 0xb0, 0x1a, 0xac, 0x96, 0x8c, 0xde, 0x1b, 0xad, 0xd8, 0x0f, - 0x1e, 0x9c, 0xa6, 0x1b, 0x45, 0x9d, 0xe1, 0x63, 0xb3, 0x12, 0xcb, 0x3a, 0x78, 0x84, 0xce, 0x2c, - 0x77, 0xa4, 0xeb, 0xeb, 0x4d, 0x7a, 0x85, 0xf1, 0xfb, 0xe0, 0x19, 0xf0, 0x0c, 0x78, 0x06, 0x3c, - 0x83, 0xe0, 0x78, 0xb7, 0x52, 0xce, 0x6f, 0xc2, 0x27, 0x1c, 0x5b, 0x68, 0xdb, 0x4a, 0x79, 0xbf, - 0x14, 0x54, 0x97, 0x94, 0xca, 0xfd, 0x4d, 0xfa, 0x65, 0x8b, 0xf7, 0xb0, 0x5d, 0x29, 0x6d, 0x70, - 0xa3, 0xbc, 0x97, 0x01, 0xb4, 0x13, 0x36, 0x5b, 0x56, 0x8c, 0xd2, 0x99, 0x0c, 0x87, 0x4c, 0x06, - 0xbd, 0xc9, 0x40, 0xf9, 0xc0, 0x95, 0x28, 0x1f, 0x68, 0xd9, 0x34, 0xac, 0x8f, 0xf2, 0x97, 0xa9, - 0xdd, 0x76, 0xc2, 0x65, 0x0a, 0x86, 0x11, 0xa8, 0x95, 0x72, 0x05, 0xdd, 0x4d, 0xfa, 0x22, 0x55, - 0x0b, 0xe4, 0x5e, 0x87, 0x44, 0x0d, 0xb3, 0x28, 0x76, 0x63, 0x0b, 0x85, 0x23, 0xbb, 0xcd, 0x66, - 0x7c, 0xab, 0xf3, 0x3e, 0x5b, 0x9d, 0x73, 0x14, 0x66, 0xb3, 0xd5, 0x99, 0xad, 0xce, 0x6c, 0x75, - 0x46, 0x4c, 0x44, 0x4c, 0x44, 0x4c, 0x64, 0xbb, 0xc4, 0x34, 0x13, 0xc3, 0x76, 0x89, 0x91, 0x2f, - 0x4e, 0x0e, 0x97, 0xfa, 0x7d, 0xc8, 0xe1, 0xca, 0xec, 0xab, 0x67, 0xbb, 0x04, 0x5a, 0x8e, 0x9d, - 0xe9, 0xc3, 0x56, 0x67, 0xd8, 0x1d, 0x76, 0x87, 0xdd, 0x61, 0x77, 0xd8, 0x1d, 0x76, 0x87, 0xdd, - 0x61, 0x77, 0xd8, 0x1d, 0x76, 0xcf, 0x09, 0xbb, 0x57, 0x1b, 0xad, 0x20, 0xf6, 0x42, 0x8b, 0x99, - 0xb6, 0x83, 0x3b, 0xd8, 0x41, 0xeb, 0x22, 0x68, 0x0d, 0x5a, 0x83, 0xd6, 0x59, 0x44, 0x6b, 0xe9, - 0x45, 0xc2, 0xa1, 0xe0, 0x50, 0xad, 0x7a, 0x51, 0xe4, 0xb4, 0xff, 0xcf, 0x46, 0x69, 0x86, 0x49, - 0xf5, 0x61, 0xfc, 0x7e, 0xaf, 0x72, 0x79, 0x76, 0x8c, 0x2d, 0xc3, 0x96, 0x86, 0x81, 0x4b, 0xcf, - 0xd0, 0xa5, 0x65, 0xf0, 0x52, 0x37, 0x7c, 0xa9, 0x1b, 0xc0, 0x54, 0x0d, 0xa1, 0x65, 0xb4, 0xb4, - 0x34, 0x63, 0xac, 0x69, 0x0f, 0xb3, 0x20, 0xec, 0xb0, 0x94, 0x42, 0x0a, 0xb0, 0xcd, 0x0c, 0x60, - 0xbb, 0x8a, 0x84, 0x7d, 0x65, 0x22, 0x55, 0x85, 0x22, 0xe5, 0x70, 0x35, 0x6d, 0xc5, 0x62, 0x19, - 0xa1, 0x6b, 0x0a, 0x0a, 0x46, 0xaa, 0x4a, 0xc6, 0xb2, 0x87, 0x48, 0xf1, 0x4d, 0xa9, 0x74, 0x78, - 0x54, 0x2a, 0xed, 0x1d, 0xbd, 0x3e, 0xda, 0x3b, 0x3e, 0x38, 0x28, 0x1e, 0x16, 0x0f, 0x56, 0x78, - 0xd4, 0x6c, 0xe4, 0xb3, 0xf5, 0xbc, 0x24, 0xce, 0xdb, 0x38, 0x2e, 0xb2, 0xc7, 0xfe, 0xa1, 0xf7, - 0xff, 0x7a, 0xd5, 0x14, 0x63, 0x8d, 0xfe, 0xfd, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, - 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x56, 0x34, - 0xd6, 0x08, 0xbd, 0x38, 0xf4, 0xbd, 0x9a, 0x33, 0x88, 0x01, 0xfe, 0xa7, 0xe5, 0x45, 0x69, 0x04, - 0x1d, 0xb3, 0x6e, 0x4c, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, - 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0xb1, 0xa2, 0xd1, 0x47, 0xec, 0x3f, 0x7a, - 0x8d, 0x56, 0x9c, 0x7e, 0xf4, 0x31, 0xeb, 0xc6, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, - 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x59, 0x88, - 0x3e, 0x32, 0xbd, 0xed, 0xc4, 0x52, 0x61, 0xd0, 0x41, 0xfb, 0x56, 0x0b, 0x84, 0x76, 0xea, 0x5e, - 0xee, 0x5a, 0xda, 0x33, 0xd7, 0xfd, 0xfa, 0x71, 0xd8, 0xaa, 0xc6, 0x41, 0x0f, 0x58, 0x6e, 0x3a, - 0xdf, 0xf5, 0xae, 0xec, 0xba, 0x77, 0x37, 0x9d, 0x2f, 0xf2, 0xa1, 0xfd, 0xe5, 0x7a, 0x3f, 0xdf, - 0x5d, 0x77, 0xbe, 0xd4, 0xdd, 0xbb, 0xfe, 0xd7, 0xe1, 0xec, 0x57, 0x59, 0x5c, 0xe4, 0xec, 0xd7, - 0x34, 0xa3, 0x5b, 0xb6, 0x49, 0x66, 0x2f, 0x7a, 0x65, 0x9b, 0x24, 0x67, 0xbf, 0x2e, 0x21, 0x02, - 0xa5, 0xf6, 0x48, 0x96, 0x22, 0x4c, 0x6a, 0x8f, 0x64, 0xf7, 0xd5, 0x73, 0xf6, 0xeb, 0x12, 0x5a, - 0xe5, 0xec, 0x57, 0x19, 0xc7, 0xc7, 0xd9, 0xaf, 0x60, 0x35, 0x58, 0x0d, 0x56, 0xdb, 0x19, 0xef, - 0x9c, 0xfd, 0xca, 0xd9, 0xaf, 0x78, 0x06, 0x3c, 0x03, 0x9e, 0x01, 0xcf, 0x30, 0x3e, 0xde, 0x39, - 0xfb, 0x35, 0x6d, 0xd5, 0x85, 0xb3, 0x5f, 0x0d, 0x6e, 0xc4, 0xd9, 0xaf, 0x4b, 0x50, 0x8c, 0x38, - 0xfb, 0x35, 0xd3, 0x93, 0x81, 0xb3, 0x5f, 0x39, 0xfb, 0x15, 0xe5, 0x4f, 0xb8, 0xa5, 0xb5, 0x3e, - 0xfb, 0xb5, 0x7b, 0xa4, 0x69, 0x56, 0x8e, 0x7e, 0xdd, 0x58, 0xe2, 0x7b, 0x94, 0x7e, 0x7f, 0x56, - 0xdf, 0x5b, 0x41, 0xe4, 0x90, 0x5c, 0xd5, 0x9c, 0x1b, 0xb3, 0x71, 0xa2, 0xff, 0x76, 0x0d, 0xde, - 0xac, 0xd0, 0x51, 0xc0, 0xa2, 0x47, 0x00, 0x0b, 0x55, 0x09, 0x17, 0x3b, 0xf2, 0x57, 0x52, 0x6d, - 0x91, 0x57, 0x57, 0xa4, 0xd5, 0x14, 0x6b, 0xea, 0x89, 0x35, 0xb5, 0xc4, 0x8a, 0x3a, 0xb2, 0x5c, - 0x5b, 0x2b, 0x55, 0x85, 0xbb, 0x20, 0xad, 0xcb, 0x0e, 0x4b, 0xde, 0x89, 0x46, 0x28, 0xc2, 0x02, - 0xac, 0xb8, 0xf0, 0xca, 0x69, 0xdf, 0x9b, 0x9c, 0xf6, 0x9d, 0x2f, 0xdc, 0x16, 0x17, 0x4c, 0xed, - 0x0a, 0xa5, 0x36, 0x04, 0x52, 0x3b, 0xc2, 0xa8, 0x55, 0x09, 0xda, 0xaa, 0x10, 0x6a, 0x53, 0xf3, - 0xb1, 0xae, 0xf5, 0xe4, 0x5e, 0xf0, 0xac, 0x64, 0x79, 0x7d, 0xc5, 0xee, 0xa0, 0x3e, 0x64, 0x50, - 0x23, 0x5c, 0xae, 0x81, 0x70, 0x99, 0x55, 0x21, 0xb0, 0x92, 0x15, 0x01, 0x4b, 0x20, 0xdc, 0xad, - 0x36, 0x82, 0xc0, 0xeb, 0xe4, 0x9e, 0x3a, 0xee, 0xd7, 0x46, 0x18, 0x5b, 0x88, 0x6d, 0x26, 0x6f, - 0x41, 0x94, 0x43, 0x94, 0x43, 0x94, 0xb3, 0x56, 0x51, 0x8e, 0x8d, 0xaa, 0x10, 0x16, 0xaa, 0x40, - 0x58, 0xda, 0x73, 0x63, 0x81, 0x07, 0x6d, 0xee, 0xb1, 0xb1, 0x5d, 0x1f, 0xc8, 0xf2, 0x9e, 0x9a, - 0x34, 0xb6, 0x53, 0xd8, 0xa8, 0x3e, 0x65, 0x73, 0xef, 0x4c, 0x5a, 0xaf, 0x34, 0xbd, 0x2a, 0x0b, - 0xa9, 0xbc, 0x65, 0x08, 0x34, 0x4d, 0x02, 0xad, 0xd6, 0x1b, 0x91, 0x67, 0x97, 0x40, 0x7b, 0xb7, - 0x80, 0x40, 0x21, 0x50, 0x08, 0x14, 0x02, 0x85, 0x40, 0x21, 0x50, 0x08, 0x14, 0x02, 0x85, 0x40, - 0x21, 0xd0, 0x36, 0x1e, 0xde, 0xbb, 0x7e, 0xbd, 0x15, 0x5a, 0x66, 0xd0, 0xc1, 0x4d, 0xa0, 0x50, - 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x28, 0xb4, - 0x0d, 0x88, 0x8d, 0xa6, 0x17, 0xd8, 0x45, 0xd0, 0xee, 0x1d, 0xe0, 0x4f, 0xf8, 0x13, 0xfe, 0x84, - 0x3f, 0xe1, 0x4f, 0xf8, 0x13, 0xfe, 0x84, 0x3f, 0xe1, 0x4f, 0xf8, 0xb3, 0x4d, 0x87, 0xbd, 0xd3, - 0xc8, 0xec, 0x22, 0xe8, 0xe0, 0x26, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x28, 0x14, - 0x0a, 0x85, 0x42, 0xa1, 0x50, 0xe8, 0x1a, 0x53, 0xa8, 0x17, 0x86, 0x8d, 0x30, 0x72, 0x42, 0xaf, - 0xea, 0xf9, 0xdf, 0xbd, 0x9a, 0x3c, 0x81, 0xbe, 0xbc, 0x01, 0xf4, 0x09, 0x7d, 0x42, 0x9f, 0xd0, - 0x27, 0xf4, 0x09, 0x7d, 0x42, 0x9f, 0xd0, 0x27, 0xf4, 0xb9, 0xc6, 0xf4, 0xf9, 0xe8, 0x45, 0x91, - 0xfb, 0xe0, 0xd9, 0xe4, 0xcf, 0xc9, 0x5b, 0x40, 0xa0, 0x10, 0x28, 0x04, 0x0a, 0x81, 0x42, 0xa0, - 0x10, 0x28, 0x04, 0x0a, 0x81, 0x42, 0xa0, 0x10, 0x68, 0xe4, 0x44, 0x5d, 0x17, 0x6b, 0x8b, 0x3e, - 0x3b, 0xcd, 0x43, 0x9e, 0x90, 0x27, 0xe4, 0x09, 0x79, 0x42, 0x9e, 0x90, 0x27, 0xe4, 0x09, 0x79, - 0x42, 0x9e, 0x6b, 0x4c, 0x9e, 0xbd, 0xa3, 0x59, 0x84, 0x81, 0xb3, 0xd3, 0x2a, 0x9c, 0x09, 0x67, - 0xc2, 0x99, 0x6b, 0xc5, 0x99, 0x51, 0x1c, 0xfa, 0xc1, 0x83, 0x8d, 0x13, 0x0d, 0xde, 0xac, 0x90, - 0xcd, 0xed, 0xe5, 0xc0, 0xcb, 0x9b, 0xdd, 0x7e, 0xc3, 0x58, 0x5e, 0x2c, 0x2f, 0x96, 0x77, 0xad, - 0x2c, 0x6f, 0xcb, 0x0f, 0xe2, 0xe2, 0xa1, 0x05, 0xcb, 0x7b, 0x48, 0x78, 0x4f, 0x78, 0x4f, 0x78, - 0x9f, 0x89, 0x57, 0x7a, 0x78, 0x70, 0xf0, 0x9a, 0x78, 0x7e, 0x75, 0xe3, 0x79, 0x8e, 0xa6, 0x5d, - 0x78, 0x34, 0xad, 0xc0, 0x59, 0xc2, 0xcb, 0x39, 0x23, 0x36, 0x76, 0xab, 0x6e, 0x35, 0x92, 0x3b, - 0x24, 0xb6, 0xd7, 0x5e, 0xc6, 0x4e, 0x89, 0xdd, 0xe3, 0x94, 0xd8, 0x0c, 0xa0, 0x3b, 0xa7, 0xc4, - 0x26, 0x7f, 0x22, 0xb1, 0x53, 0x62, 0xab, 0xfd, 0x39, 0x20, 0xbf, 0x79, 0xbe, 0xdd, 0xae, 0x6c, - 0x4c, 0x5f, 0x24, 0xa6, 0x27, 0xa6, 0x27, 0xa6, 0x97, 0x78, 0x52, 0x29, 0x03, 0x32, 0x68, 0xb0, - 0xd9, 0x08, 0x63, 0xf9, 0x21, 0xd5, 0x9f, 0x04, 0x9d, 0xd6, 0x85, 0x5f, 0xf6, 0xa9, 0x77, 0xef, - 0xb6, 0xea, 0x9d, 0x77, 0x5d, 0x3a, 0x96, 0x6e, 0xdc, 0x4e, 0x6c, 0x25, 0x6e, 0xb9, 0x6c, 0x5a, - 0x30, 0xfb, 0x96, 0xcc, 0xb6, 0x45, 0x4b, 0xcd, 0xb2, 0xa5, 0x66, 0xe1, 0x52, 0xb1, 0x74, 0x96, - 0x22, 0x67, 0xe1, 0x11, 0x2f, 0xae, 0x6a, 0x4e, 0x35, 0x5a, 0x4e, 0xd0, 0x7a, 0xfc, 0xea, 0x85, - 0x16, 0x4f, 0xbf, 0x3d, 0xb4, 0xd0, 0xb4, 0x1d, 0xc9, 0xb3, 0xff, 0xc7, 0xce, 0x24, 0xdd, 0xb4, - 0x2d, 0x81, 0xa6, 0xa4, 0x9b, 0x4d, 0xe8, 0x67, 0xb6, 0xef, 0x93, 0x82, 0x86, 0x66, 0x69, 0x0e, - 0x8f, 0xbf, 0x7a, 0x8b, 0x52, 0xe9, 0xb2, 0x5e, 0xbd, 0x45, 0xe9, 0x74, 0x29, 0xaf, 0x7f, 0x23, - 0x1f, 0xad, 0x66, 0xf5, 0x30, 0x67, 0xc1, 0xe9, 0x53, 0x88, 0xbc, 0x6a, 0xe8, 0xc5, 0xce, 0x5f, - 0xde, 0x93, 0x3d, 0x6a, 0x1f, 0xb9, 0x07, 0x78, 0x0d, 0x5e, 0x83, 0xd7, 0xe0, 0xb5, 0xe0, 0x78, - 0x0f, 0x1b, 0xad, 0xd8, 0x0f, 0x1e, 0x9c, 0xa6, 0x1b, 0x45, 0x9d, 0xe1, 0x63, 0x8f, 0xb1, 0x85, - 0x12, 0xb9, 0x32, 0xee, 0x11, 0x3a, 0xb3, 0xdc, 0x71, 0x6b, 0xb5, 0xd0, 0x8b, 0x22, 0x8b, 0x5e, - 0x61, 0xfc, 0x3e, 0x78, 0x06, 0x3c, 0x03, 0x9e, 0x01, 0xcf, 0x20, 0x38, 0xde, 0xfd, 0xa6, 0x25, - 0xeb, 0x32, 0xe6, 0x13, 0x8e, 0x2d, 0xb4, 0xdd, 0xeb, 0x9b, 0xdc, 0xe9, 0x2e, 0xc3, 0x9e, 0xff, - 0x5e, 0xb2, 0xd8, 0xf7, 0x93, 0x7e, 0xd9, 0xe2, 0x3d, 0xae, 0xdc, 0x38, 0xf6, 0xc2, 0xc0, 0xda, - 0xeb, 0x18, 0xdc, 0xe8, 0xcf, 0xad, 0xad, 0xcf, 0x7b, 0xce, 0x71, 0xe5, 0xd7, 0xe7, 0xa2, 0x73, - 0x5c, 0xe9, 0xfe, 0x58, 0xec, 0xfc, 0x5f, 0xf7, 0xe7, 0xfd, 0xcf, 0x7b, 0x4e, 0xa9, 0xff, 0xf3, - 0xc1, 0xe7, 0x3d, 0xe7, 0xa0, 0xb2, 0xfd, 0xe5, 0xcb, 0xce, 0xf6, 0xcf, 0xd7, 0xcf, 0xea, 0x17, - 0xfe, 0xad, 0x60, 0xed, 0x61, 0x2a, 0x1b, 0x39, 0xd2, 0x8c, 0xd2, 0x99, 0x0c, 0x87, 0x4c, 0x06, - 0xbd, 0xc9, 0xe0, 0x3a, 0xf7, 0x65, 0xe7, 0x7d, 0xe5, 0x67, 0xf1, 0x55, 0xe9, 0xf9, 0x64, 0xfb, - 0xe7, 0xd1, 0xf3, 0xcb, 0x5f, 0xfe, 0x9a, 0xf6, 0xb1, 0xe2, 0xab, 0xa3, 0xe7, 0x93, 0x19, 0xff, - 0x72, 0xf8, 0x7c, 0x92, 0xb0, 0x8d, 0x83, 0xe7, 0xad, 0x89, 0x8f, 0xb6, 0x7f, 0xbf, 0x3f, 0xeb, - 0x82, 0xd2, 0x8c, 0x0b, 0x5e, 0xcf, 0xba, 0xe0, 0xf5, 0x8c, 0x0b, 0x66, 0x7e, 0xa5, 0xfd, 0x19, - 0x17, 0x1c, 0x3c, 0xff, 0x9a, 0xf8, 0xfc, 0xd6, 0xf4, 0x8f, 0x1e, 0x3e, 0x6f, 0xff, 0x9a, 0xf5, - 0x6f, 0x47, 0xcf, 0xbf, 0x4e, 0xb6, 0x73, 0x68, 0x1a, 0xd6, 0x47, 0xf9, 0xcb, 0x54, 0xf2, 0x80, - 0x70, 0xd2, 0xe5, 0x30, 0x02, 0xb5, 0x92, 0x7c, 0xd9, 0xcd, 0x39, 0xdc, 0xed, 0x65, 0x24, 0xad, - 0xd0, 0x8e, 0xac, 0x6e, 0x56, 0xa9, 0x78, 0xea, 0x56, 0xb7, 0xd9, 0x8c, 0x67, 0x6e, 0xed, 0x93, - 0xb9, 0x95, 0xa3, 0x30, 0x9b, 0xcc, 0x2d, 0x32, 0xb7, 0x04, 0xdb, 0x26, 0x73, 0x0b, 0x01, 0x11, - 0x01, 0x11, 0x01, 0xd1, 0xda, 0x78, 0x27, 0x73, 0x2b, 0x75, 0xd1, 0x84, 0xcc, 0x2d, 0xf5, 0xfb, - 0x90, 0xb9, 0x95, 0xd9, 0x57, 0x4f, 0xe6, 0x16, 0xfa, 0x8d, 0x9d, 0xe9, 0x43, 0xe6, 0x16, 0x78, - 0x0d, 0x5e, 0x83, 0xd7, 0x39, 0xc6, 0x6b, 0x32, 0xb7, 0xc8, 0xdc, 0xc2, 0x33, 0xe0, 0x19, 0xf0, - 0x0c, 0x78, 0x86, 0xf1, 0xf1, 0x4e, 0xe6, 0x56, 0xda, 0xba, 0x0b, 0x99, 0x5b, 0x06, 0x37, 0x22, - 0x73, 0x6b, 0x09, 0x9a, 0x11, 0x99, 0x5b, 0x99, 0x9e, 0x0c, 0x64, 0x6e, 0x91, 0xb9, 0x85, 0xf2, - 0x27, 0xdc, 0xd2, 0x5a, 0x67, 0x6e, 0x09, 0x54, 0xcf, 0x93, 0x7b, 0x1b, 0x94, 0x3b, 0x4c, 0xfa, - 0xde, 0x0a, 0x22, 0x29, 0x6e, 0x61, 0xab, 0x1a, 0xf7, 0x8e, 0x7b, 0x28, 0xdc, 0x74, 0xbe, 0xcc, - 0x5d, 0xd9, 0x75, 0xef, 0x6e, 0x3a, 0x77, 0xfa, 0xd0, 0xbe, 0x7b, 0xef, 0xe7, 0xbb, 0xdb, 0xee, - 0x5d, 0x97, 0x55, 0x65, 0x71, 0x23, 0xc5, 0xf1, 0xd0, 0x8e, 0xae, 0xdb, 0x1d, 0x62, 0x86, 0x28, - 0x85, 0x0b, 0x3f, 0x8a, 0xcb, 0x71, 0x6c, 0x96, 0x4f, 0x54, 0xf8, 0xe8, 0x07, 0x67, 0x75, 0xaf, - 0x1d, 0x19, 0x47, 0x85, 0x93, 0xcd, 0xa0, 0x55, 0xaf, 0x1b, 0x14, 0x9c, 0xfc, 0xe8, 0xfe, 0x90, - 0x6b, 0xec, 0x32, 0xac, 0x79, 0xa1, 0x57, 0x7b, 0xfb, 0xd4, 0x6b, 0x2a, 0xd5, 0x57, 0x24, 0x34, - 0x55, 0xed, 0x4c, 0x51, 0x83, 0xb9, 0xa9, 0x32, 0x27, 0xf5, 0x26, 0xa3, 0xfa, 0x54, 0x52, 0xbb, - 0x42, 0xf1, 0x8d, 0x9a, 0xbe, 0x49, 0xe1, 0x37, 0xa8, 0xd6, 0xa7, 0xc9, 0x7b, 0x46, 0xa1, 0x57, - 0x34, 0x33, 0x8f, 0x8d, 0x32, 0x8c, 0x35, 0x33, 0x89, 0xb5, 0x33, 0x86, 0x4d, 0xe4, 0x5d, 0x73, - 0xf9, 0xd6, 0x54, 0x9e, 0x15, 0x93, 0x5f, 0xc5, 0xe4, 0x55, 0x11, 0xf9, 0xd4, 0xee, 0x3c, 0xd7, - 0xcd, 0xac, 0x35, 0x3b, 0x8e, 0x4a, 0xe2, 0xf8, 0x29, 0xc3, 0xb5, 0x13, 0xe3, 0x35, 0x12, 0x89, - 0xb5, 0x10, 0xb9, 0x35, 0x0f, 0xa9, 0xb5, 0x0d, 0xf1, 0x35, 0x0c, 0xf1, 0xb5, 0x0a, 0xd1, 0x35, - 0x89, 0x74, 0x09, 0xd6, 0x78, 0x2d, 0x41, 0xee, 0xf8, 0x26, 0xc3, 0xb5, 0x62, 0x0d, 0x5c, 0xd1, - 0x70, 0x08, 0xb1, 0x49, 0x7f, 0x0d, 0xeb, 0xaf, 0xb7, 0x5b, 0xc1, 0xc6, 0x60, 0x63, 0xb0, 0x31, - 0x4a, 0xe3, 0xc5, 0xaf, 0x79, 0x41, 0xec, 0xc7, 0x4f, 0xa1, 0x77, 0x2f, 0x61, 0x68, 0x0c, 0x32, - 0x43, 0x0b, 0xe7, 0xbd, 0xaf, 0xf2, 0xd6, 0x8d, 0x3c, 0xb9, 0x83, 0x19, 0xca, 0xe5, 0xf2, 0xdd, - 0xcd, 0xd9, 0xf5, 0xbf, 0xce, 0xae, 0xef, 0x6e, 0xff, 0xb8, 0x3a, 0x33, 0x1d, 0x84, 0x9d, 0x34, - 0xd8, 0x48, 0x64, 0xcd, 0x41, 0x78, 0x77, 0xe3, 0x6d, 0xf9, 0x5d, 0xf9, 0xdd, 0x4d, 0x21, 0x0b, - 0x1b, 0x38, 0x85, 0x9f, 0xec, 0xba, 0x7c, 0x7a, 0xfe, 0xfb, 0xcd, 0xb2, 0x4f, 0x36, 0xa8, 0xa4, - 0x6d, 0x1b, 0x10, 0x0b, 0xa6, 0x8a, 0x05, 0xea, 0x9a, 0xb9, 0x82, 0x54, 0xb0, 0x21, 0xd8, 0x73, - 0x7d, 0x2d, 0x53, 0x21, 0xfc, 0xd1, 0x13, 0x2e, 0x8d, 0x84, 0x4a, 0x23, 0x61, 0x52, 0x4f, 0x88, - 0x4c, 0xda, 0x7f, 0x9a, 0x23, 0x4e, 0x68, 0xa4, 0x15, 0x94, 0x64, 0xa3, 0xc5, 0xca, 0x61, 0xb2, - 0x31, 0xbb, 0x78, 0x04, 0xce, 0xff, 0xc4, 0x82, 0xbe, 0x55, 0xed, 0x53, 0xfd, 0xbe, 0x9c, 0xff, - 0xb8, 0xb3, 0x1f, 0x62, 0xce, 0x03, 0x24, 0x54, 0xe7, 0x94, 0xd4, 0xb8, 0x84, 0xea, 0x5b, 0x62, - 0xb5, 0x4d, 0x05, 0xe6, 0xd5, 0xa1, 0x5d, 0x15, 0xce, 0xb5, 0x21, 0x5c, 0x1b, 0xb6, 0xb5, 0xa0, - 0x3a, 0xc3, 0x43, 0x7a, 0xb1, 0xb7, 0x99, 0x33, 0x94, 0x37, 0x14, 0x1e, 0x27, 0xe9, 0x63, 0xa8, - 0x7c, 0xfd, 0xc2, 0xdc, 0xb9, 0x34, 0xdd, 0x64, 0x4d, 0x7f, 0xd8, 0xc9, 0x47, 0x99, 0xf2, 0x18, - 0x05, 0xb7, 0xee, 0x86, 0x8f, 0xb3, 0xd3, 0xb4, 0x07, 0xe3, 0xbd, 0xf7, 0xb9, 0x19, 0x1d, 0x31, - 0x7f, 0x46, 0x2e, 0x9c, 0x89, 0x49, 0x66, 0xe0, 0xd8, 0xcc, 0x9b, 0xf7, 0x65, 0x54, 0x26, 0x9d, - 0xf2, 0x64, 0x53, 0x9e, 0x64, 0x13, 0x93, 0xab, 0xfb, 0xd5, 0x85, 0x06, 0xe0, 0x22, 0x95, 0xb8, - 0xfb, 0xda, 0x92, 0x9b, 0xdf, 0xee, 0xc7, 0x85, 0xcd, 0xef, 0x9e, 0x25, 0xf3, 0xbb, 0x68, 0x10, - 0xe4, 0xd8, 0x02, 0x2f, 0x18, 0x24, 0x32, 0x46, 0x38, 0xe9, 0x12, 0x83, 0xea, 0xb9, 0x6c, 0x7a, - 0xe7, 0xae, 0x29, 0xae, 0xa9, 0x29, 0x4b, 0x78, 0x3a, 0x92, 0x9d, 0xd6, 0x70, 0x33, 0x55, 0xe5, - 0x8c, 0x55, 0x38, 0x63, 0xd5, 0x4d, 0x77, 0x38, 0xda, 0x09, 0xc9, 0xac, 0x87, 0x14, 0x9d, 0xa7, - 0xeb, 0xfe, 0x9f, 0x52, 0x61, 0xae, 0x04, 0xdc, 0x9f, 0xc0, 0x38, 0xf9, 0x35, 0xf5, 0x89, 0xe5, - 0xd7, 0x14, 0x27, 0xd5, 0x1e, 0x93, 0x8a, 0x49, 0x65, 0xa4, 0x46, 0x0f, 0xde, 0x5a, 0xdd, 0x73, - 0xef, 0xd5, 0x94, 0xe7, 0x81, 0x65, 0x3f, 0x52, 0xb8, 0xe6, 0xaa, 0x37, 0x6f, 0x77, 0x76, 0xba, - 0x40, 0xbf, 0xeb, 0xd7, 0xd2, 0x9c, 0x95, 0x6a, 0x49, 0x25, 0x5a, 0xc9, 0x24, 0xda, 0x0e, 0x6f, - 0x9f, 0xb9, 0xb9, 0xd2, 0x73, 0x53, 0x35, 0xf5, 0x43, 0xc5, 0x85, 0xe8, 0xbb, 0x12, 0x4d, 0x97, - 0xa2, 0xed, 0x5a, 0x4c, 0x86, 0xb1, 0xc8, 0x70, 0x36, 0x1d, 0xd6, 0x62, 0xc3, 0x5b, 0x6c, 0x98, - 0x4b, 0x0d, 0xf7, 0x74, 0x16, 0x2f, 0xb4, 0x17, 0x4c, 0xcd, 0x93, 0x31, 0x34, 0x93, 0x30, 0xec, - 0xe4, 0x37, 0x86, 0x5e, 0xa4, 0x69, 0x57, 0x07, 0x25, 0x0e, 0xfa, 0x2d, 0x30, 0xd3, 0x99, 0xe9, - 0xcc, 0xf4, 0xcc, 0xce, 0xf4, 0xc8, 0xfb, 0xee, 0x85, 0x7e, 0xfc, 0x64, 0x90, 0xcc, 0xdc, 0x6f, - 0x81, 0x99, 0xce, 0x4c, 0x5f, 0xc9, 0x99, 0x6e, 0x96, 0xfc, 0x64, 0x92, 0xf4, 0x24, 0x93, 0xec, - 0x34, 0x78, 0x90, 0xcb, 0xab, 0xb3, 0x4f, 0xef, 0x2e, 0x3f, 0xbd, 0x3f, 0xff, 0x70, 0x57, 0xbe, - 0x28, 0x5f, 0x7f, 0xbc, 0xbb, 0x39, 0xfb, 0xd7, 0xd9, 0xf5, 0xf9, 0xed, 0x1f, 0xba, 0x23, 0x49, - 0x20, 0xcd, 0x49, 0x28, 0x7f, 0xeb, 0xf7, 0x4f, 0xff, 0xfc, 0x74, 0xf9, 0xef, 0x4f, 0x06, 0x99, - 0x79, 0xaf, 0x96, 0xfd, 0x08, 0xff, 0x2e, 0x5f, 0x7f, 0x3a, 0xff, 0xf4, 0x21, 0xcf, 0x8f, 0xf0, - 0xee, 0xfa, 0xfc, 0xf6, 0xfc, 0x5d, 0xf9, 0x22, 0xcf, 0xcf, 0xf0, 0xf1, 0xfc, 0xd3, 0xe5, 0x75, - 0xae, 0x1f, 0xa0, 0xfc, 0xff, 0x33, 0x7a, 0x00, 0xad, 0x2b, 0x2b, 0xb6, 0xad, 0xbe, 0x15, 0xfa, - 0x89, 0xbd, 0x1f, 0xb1, 0x3e, 0xf9, 0x74, 0xae, 0x86, 0x7a, 0xa0, 0x1e, 0xe2, 0x9b, 0xcc, 0xc6, - 0x37, 0xb1, 0xff, 0xe8, 0x39, 0xd5, 0xd0, 0x73, 0x63, 0xcf, 0x40, 0xb1, 0x1c, 0x6b, 0x85, 0x19, - 0xcf, 0x8c, 0x5f, 0xc9, 0x19, 0xdf, 0x1e, 0xe5, 0xb1, 0x5f, 0xfd, 0x2b, 0x3a, 0x2c, 0x19, 0x4c, - 0x7b, 0x8d, 0x5a, 0x4e, 0x85, 0xdf, 0x83, 0x6e, 0x01, 0xef, 0x42, 0xe0, 0x06, 0x8d, 0xc8, 0xab, - 0x36, 0x82, 0x9a, 0xd6, 0xd0, 0x33, 0xab, 0xfe, 0x6f, 0x56, 0x03, 0x42, 0x60, 0x2b, 0x94, 0x48, - 0x01, 0x50, 0xa9, 0xea, 0xfb, 0x92, 0xe5, 0xd5, 0x9f, 0xcd, 0x2a, 0x62, 0x64, 0xae, 0x6b, 0x8b, - 0x6f, 0x4a, 0xa5, 0xc3, 0xa3, 0x52, 0x69, 0xef, 0xe8, 0xf5, 0xd1, 0xde, 0xf1, 0xc1, 0x41, 0xf1, - 0xb0, 0x78, 0x90, 0xa1, 0xde, 0x4e, 0x69, 0x23, 0x49, 0x25, 0x0b, 0xfe, 0xfd, 0xa9, 0xe9, 0x39, - 0x26, 0x8b, 0x91, 0xfd, 0x06, 0xf0, 0xea, 0x78, 0xf5, 0x95, 0xf4, 0xea, 0xad, 0xc0, 0x6f, 0x04, - 0x26, 0x18, 0xaf, 0x51, 0x2d, 0xd6, 0xac, 0x1a, 0xec, 0x2a, 0xec, 0x89, 0x7f, 0xb5, 0xac, 0x27, - 0x5f, 0xf9, 0x9d, 0xba, 0x13, 0x22, 0xf6, 0xed, 0x1f, 0x57, 0x67, 0x77, 0xe7, 0xa7, 0xab, 0xbb, - 0x65, 0xf7, 0xec, 0xff, 0x7f, 0x75, 0xbb, 0x8a, 0x1b, 0x76, 0xcb, 0xe7, 0x2b, 0xb9, 0x0f, 0xf9, - 0xe2, 0x72, 0x25, 0x1f, 0xeb, 0xf2, 0x96, 0xbd, 0xd5, 0xcb, 0x43, 0xe2, 0xfc, 0xa6, 0xb7, 0x2b, - 0xec, 0xc4, 0xb6, 0xbd, 0xab, 0xb5, 0xb7, 0xd3, 0x7a, 0x21, 0xed, 0xab, 0xed, 0xaf, 0xd6, 0xda, - 0x57, 0xad, 0xb5, 0x9f, 0x5a, 0x6d, 0x1f, 0xf5, 0xd2, 0x36, 0x44, 0x8e, 0xbc, 0xfd, 0x42, 0xa2, - 0xbc, 0xe7, 0x69, 0x5b, 0x0c, 0x3b, 0x57, 0xe7, 0x73, 0x47, 0xe5, 0x9c, 0x40, 0x22, 0xd9, 0x06, - 0xc9, 0x6a, 0xbd, 0x51, 0xfd, 0x6b, 0xf1, 0xfe, 0xc8, 0xee, 0xc7, 0x0c, 0xb7, 0x47, 0xee, 0xc9, - 0x6c, 0x8f, 0x8c, 0x9e, 0xf2, 0xb9, 0x37, 0xb2, 0xfd, 0xbd, 0xd3, 0xda, 0x18, 0x99, 0x70, 0x4f, - 0x9b, 0xda, 0x5e, 0xb6, 0xac, 0x6c, 0x8d, 0x9c, 0x3f, 0x00, 0x74, 0x65, 0x84, 0xe5, 0xef, 0x8b, - 0x9c, 0x3b, 0x40, 0x64, 0xdc, 0x52, 0xe2, 0x4d, 0x91, 0xb1, 0xff, 0xe8, 0xfd, 0x6f, 0x23, 0xf0, - 0x1c, 0xa5, 0x82, 0x8b, 0x63, 0xfa, 0xfe, 0xf0, 0xf2, 0xd5, 0xd8, 0xcd, 0x95, 0x6c, 0xd8, 0x99, - 0xaa, 0x58, 0xd9, 0xdb, 0x2e, 0x92, 0x68, 0x58, 0xda, 0xa1, 0x47, 0xfd, 0x7d, 0x5c, 0x63, 0x03, - 0xd0, 0x51, 0xac, 0xc5, 0xa7, 0xa8, 0xc8, 0xe4, 0xb5, 0x42, 0x4a, 0xc7, 0xa9, 0x27, 0xda, 0x13, - 0x4a, 0x71, 0x14, 0x5c, 0x10, 0x2e, 0x08, 0x17, 0x84, 0x0b, 0xc2, 0x05, 0x59, 0x70, 0x41, 0x39, - 0xae, 0x69, 0x34, 0x2f, 0x30, 0x9e, 0x2d, 0x39, 0xbc, 0xeb, 0x5c, 0x65, 0x12, 0xb6, 0xcf, 0x8f, - 0xef, 0x92, 0xc5, 0x75, 0x04, 0xee, 0xd9, 0x0b, 0xdc, 0x6b, 0x8d, 0x47, 0xd7, 0x0f, 0x92, 0xb9, - 0xbc, 0x41, 0xdf, 0x8e, 0x5e, 0x94, 0x8c, 0x9f, 0xf6, 0x08, 0xe1, 0xf3, 0xca, 0x4f, 0x89, 0x1d, - 0x92, 0xc6, 0xf0, 0xd8, 0x54, 0x3c, 0x29, 0xb1, 0x70, 0xe1, 0x05, 0x0f, 0x1d, 0x13, 0x99, 0x6c, - 0x25, 0x53, 0xad, 0x82, 0xa8, 0x06, 0xb8, 0xe8, 0xa5, 0xca, 0x0c, 0x72, 0xad, 0x14, 0xaf, 0x33, - 0x48, 0xa4, 0x7a, 0x56, 0xab, 0x87, 0x9a, 0x7a, 0x57, 0xec, 0x1f, 0xbc, 0x4e, 0xb1, 0x33, 0x84, - 0x18, 0xa7, 0x92, 0x60, 0xc4, 0xaa, 0x9e, 0xd1, 0x59, 0xd8, 0xda, 0xda, 0xfa, 0xec, 0x3a, 0xff, - 0x5b, 0x76, 0xfe, 0xef, 0x9e, 0x73, 0x7c, 0x57, 0x19, 0xf9, 0xcb, 0x97, 0x2f, 0xce, 0x5d, 0x65, - 0xfb, 0xe7, 0xde, 0xab, 0xc3, 0xe2, 0xf3, 0xf6, 0x6f, 0xc3, 0xdf, 0x57, 0xbe, 0x7c, 0xd9, 0xd9, - 0xfe, 0xbb, 0xce, 0x55, 0xbf, 0x6d, 0xff, 0xfa, 0xf2, 0x65, 0x67, 0xb1, 0x05, 0xa9, 0x58, 0x88, - 0xd6, 0xbf, 0x35, 0xa2, 0x58, 0xcd, 0xed, 0x0c, 0xae, 0xc0, 0xe7, 0xe0, 0x73, 0xf0, 0x39, 0xf8, - 0x1c, 0x7c, 0x0e, 0x3e, 0x47, 0xc9, 0xe7, 0xd4, 0x1b, 0x0f, 0x7e, 0xe0, 0x7c, 0x75, 0x83, 0xc0, - 0x0b, 0x93, 0xfb, 0x9d, 0xb1, 0xab, 0xf0, 0x3d, 0xf8, 0x9e, 0x89, 0x85, 0x84, 0x84, 0x19, 0xb9, - 0x09, 0x45, 0x36, 0xbd, 0xb1, 0xfd, 0xd8, 0x88, 0x6b, 0xca, 0x43, 0x7b, 0xf4, 0x22, 0x46, 0x36, - 0x23, 0x7b, 0x79, 0x23, 0x7b, 0xb9, 0xaa, 0xea, 0x9c, 0x35, 0xc9, 0x84, 0x02, 0x69, 0xb3, 0x95, - 0xa0, 0xec, 0x7b, 0xe7, 0x53, 0xd9, 0x28, 0xfa, 0x8e, 0x38, 0x9a, 0x20, 0xab, 0xa9, 0xd9, 0x52, - 0x48, 0x69, 0x6a, 0xb6, 0xc8, 0x67, 0x62, 0x31, 0xb9, 0xf7, 0x41, 0x3f, 0xa8, 0x79, 0x3f, 0x34, - 0x4a, 0x51, 0x77, 0x2e, 0x63, 0xf1, 0x58, 0x25, 0x08, 0x64, 0xf1, 0x58, 0xdd, 0xc3, 0x4f, 0xc6, - 0x38, 0xcb, 0xaa, 0x43, 0xdd, 0x19, 0xf0, 0x94, 0xa2, 0x66, 0x62, 0xae, 0xf4, 0xc4, 0x54, 0x2e, - 0x42, 0xfd, 0xcd, 0x0d, 0x6b, 0xff, 0x71, 0x43, 0xcf, 0xf1, 0x83, 0xd8, 0x0b, 0xc3, 0x56, 0xd3, - 0xa0, 0x98, 0xd3, 0x94, 0xb6, 0x52, 0x3e, 0xa0, 0x7f, 0x49, 0x5b, 0xc2, 0xd5, 0x06, 0xba, 0xe9, - 0x80, 0x17, 0x1b, 0xf8, 0x62, 0x13, 0x40, 0x64, 0x22, 0xa8, 0x4d, 0x08, 0x0d, 0xed, 0x77, 0xd3, - 0xe8, 0x80, 0x7e, 0xf7, 0xfb, 0x83, 0x79, 0xf5, 0xc8, 0x76, 0x23, 0x1c, 0x9d, 0xdd, 0x1e, 0x1a, - 0xf1, 0x53, 0xd3, 0x8b, 0x38, 0x3c, 0x5b, 0x63, 0x52, 0x75, 0x7b, 0x6e, 0xed, 0x8e, 0xcf, 0x6e, - 0x7a, 0x61, 0xd5, 0x0b, 0x62, 0xf7, 0xc1, 0x13, 0xd8, 0x93, 0x6f, 0xb2, 0x25, 0xdf, 0xac, 0x40, - 0x52, 0xff, 0x8f, 0xf9, 0xce, 0x62, 0x91, 0x82, 0x49, 0x42, 0xe6, 0x65, 0xa2, 0x39, 0xa1, 0x02, - 0x4a, 0x83, 0xf6, 0x04, 0x4b, 0xfb, 0x18, 0x0e, 0xe9, 0xf1, 0x57, 0x20, 0x50, 0x58, 0xc9, 0xf6, - 0x2b, 0x28, 0xee, 0x65, 0xf9, 0x25, 0x6c, 0x2c, 0xe7, 0xea, 0x4a, 0x5a, 0x07, 0x85, 0x6b, 0x60, - 0xa1, 0x1f, 0x44, 0xb1, 0x1b, 0xc4, 0xe6, 0xb4, 0xd1, 0x6f, 0x08, 0xe2, 0x80, 0x38, 0x20, 0x0e, - 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x63, 0x0a, 0x71, 0xc4, 0x5e, 0xf8, 0xdd, 0xad, - 0x4b, 0x20, 0x47, 0xaf, 0x25, 0x98, 0x03, 0xe6, 0x80, 0x39, 0x94, 0xc7, 0x4c, 0x14, 0xbb, 0xb1, - 0x63, 0x38, 0x89, 0x36, 0xcd, 0x2a, 0x49, 0x0f, 0x9a, 0x10, 0xaa, 0x28, 0x0d, 0xc6, 0x80, 0x31, - 0xf9, 0xc4, 0x18, 0xf1, 0x0a, 0xd5, 0x70, 0x4d, 0xba, 0x5c, 0xf3, 0x68, 0x30, 0xca, 0x86, 0xa9, - 0xab, 0xee, 0x0f, 0x68, 0x06, 0x9a, 0x81, 0x66, 0x50, 0x50, 0x40, 0x0f, 0xd0, 0x03, 0x05, 0x05, - 0xd2, 0x98, 0x4a, 0x1a, 0x4e, 0xec, 0x3f, 0x7a, 0x22, 0xb8, 0xd1, 0x6d, 0x09, 0xe6, 0x80, 0x39, - 0x60, 0x0e, 0xe5, 0x31, 0x63, 0x76, 0x02, 0x17, 0xfa, 0x09, 0x10, 0x03, 0xc4, 0xa0, 0x9f, 0x40, - 0x35, 0x1d, 0xaa, 0x31, 0x98, 0xe8, 0x43, 0xa0, 0xf1, 0x03, 0x58, 0x06, 0x96, 0x81, 0x65, 0xd0, - 0x4f, 0x40, 0x0f, 0xd0, 0x03, 0xfd, 0x04, 0xd2, 0x98, 0x4a, 0x1a, 0x52, 0xfa, 0x49, 0xbf, 0x25, - 0x98, 0x03, 0xe6, 0x80, 0x39, 0xd0, 0x4f, 0x80, 0x18, 0x20, 0x06, 0xfd, 0x04, 0xaa, 0x31, 0xa5, - 0x1a, 0xab, 0xdb, 0x92, 0x35, 0x8f, 0x93, 0x1c, 0x5c, 0x9f, 0xb8, 0x00, 0x55, 0xb3, 0x15, 0xb5, - 0xff, 0xd3, 0xab, 0x8a, 0x61, 0xbc, 0x63, 0x7f, 0x73, 0xf6, 0x51, 0x00, 0xcd, 0xd6, 0xdd, 0x3f, - 0x7a, 0xcd, 0x9f, 0x0f, 0x5a, 0xcf, 0xc0, 0x71, 0xf7, 0x7e, 0xad, 0xee, 0xe9, 0xd7, 0x38, 0xe8, - 0x5c, 0x4d, 0x55, 0x03, 0x7b, 0xc0, 0x48, 0x55, 0x03, 0xaa, 0x1a, 0x10, 0x6d, 0x11, 0x6d, 0xad, - 0x47, 0xb4, 0x85, 0xc2, 0x4b, 0x70, 0x44, 0x70, 0xa4, 0x13, 0x1c, 0xa1, 0xf0, 0x2e, 0x31, 0x16, - 0xa2, 0xaa, 0x01, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x19, - 0x25, 0x0e, 0xaa, 0x1a, 0xc0, 0x1c, 0x30, 0x07, 0x55, 0x0d, 0x46, 0x9b, 0x60, 0x55, 0x19, 0x8c, - 0x59, 0x6b, 0x8c, 0x61, 0x55, 0x39, 0xe7, 0x5c, 0x43, 0x55, 0x03, 0x68, 0x06, 0x9a, 0x41, 0x41, - 0x01, 0x3d, 0x40, 0x0f, 0x14, 0x14, 0x48, 0xc3, 0x2a, 0x69, 0x50, 0xd5, 0x00, 0xe6, 0x80, 0x39, - 0xc8, 0xca, 0x47, 0x3f, 0x01, 0x62, 0x80, 0x18, 0xf4, 0x93, 0x55, 0xa0, 0x1a, 0xaa, 0x1a, 0xc0, - 0x32, 0xb0, 0x0c, 0xfa, 0x09, 0xe8, 0x01, 0x7a, 0xa0, 0x9f, 0x40, 0x1a, 0x36, 0x49, 0x83, 0xaa, - 0x06, 0x30, 0x07, 0xcc, 0x81, 0x7e, 0x82, 0x7e, 0x02, 0xc4, 0x00, 0x31, 0xe8, 0x27, 0x59, 0xa3, - 0x9a, 0x55, 0xac, 0x6a, 0xa0, 0xb1, 0x47, 0x7f, 0x73, 0x6e, 0x1d, 0x83, 0xf3, 0x76, 0x83, 0x59, - 0x28, 0x5d, 0x10, 0xd4, 0xbc, 0x1f, 0x06, 0xb5, 0x0b, 0x3a, 0x97, 0xeb, 0x15, 0x2f, 0xd8, 0xa3, - 0x78, 0x41, 0x9a, 0x3c, 0xb8, 0x4e, 0xc5, 0x0b, 0xb4, 0x29, 0x6f, 0xf0, 0xbe, 0x5b, 0x41, 0xdb, - 0xc4, 0x68, 0xbc, 0xee, 0x7e, 0x65, 0x8e, 0x63, 0x8d, 0x6b, 0x7b, 0x5f, 0x5b, 0x8f, 0xbb, 0x04, - 0x90, 0xd6, 0x0b, 0x5a, 0x8f, 0x5e, 0xd8, 0xb5, 0xae, 0xe6, 0x48, 0x5b, 0x2c, 0x19, 0xb4, 0x71, - 0x16, 0xb4, 0x1e, 0xdb, 0x6f, 0x30, 0xd5, 0xe8, 0x40, 0xa0, 0x0b, 0x5b, 0x7e, 0x10, 0xbf, 0xde, - 0x17, 0xe8, 0xbd, 0x23, 0x00, 0x1e, 0x80, 0x5f, 0x13, 0x80, 0x2f, 0xed, 0x1f, 0x97, 0x8e, 0x0f, - 0x8f, 0xf6, 0x8f, 0xc1, 0xf6, 0xa5, 0x61, 0x7b, 0x25, 0x03, 0x30, 0xfa, 0x97, 0x17, 0x06, 0x5e, - 0x5d, 0x9f, 0x46, 0x7b, 0xd7, 0x53, 0x4b, 0x0b, 0x1c, 0xcd, 0x14, 0x8e, 0x52, 0x4b, 0x0b, 0x8d, - 0xdf, 0xca, 0x24, 0x12, 0x9f, 0x4c, 0xb3, 0x26, 0x15, 0x79, 0x05, 0xe4, 0x15, 0x40, 0xf4, 0x10, - 0x7d, 0xd2, 0x57, 0x40, 0x5e, 0xc1, 0x12, 0x51, 0x9e, 0x5a, 0x5a, 0x10, 0x07, 0xc4, 0x01, 0x71, - 0x40, 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x64, 0x95, 0x38, 0xa8, 0xa5, 0x05, 0x73, 0xc0, 0x1c, - 0xd4, 0xd2, 0x1a, 0x6d, 0x82, 0x5c, 0x46, 0x30, 0x66, 0xad, 0x31, 0x86, 0x5c, 0xc6, 0x9c, 0x73, - 0x0d, 0xb5, 0xb4, 0xa0, 0x19, 0x68, 0x06, 0x05, 0x05, 0xf4, 0x00, 0x3d, 0x50, 0x50, 0x20, 0x0d, - 0xab, 0xa4, 0x41, 0x2d, 0x2d, 0x98, 0x03, 0xe6, 0x60, 0x2f, 0x28, 0xfa, 0x09, 0x10, 0x03, 0xc4, - 0xa0, 0x9f, 0xac, 0x02, 0xd5, 0x50, 0x4b, 0x0b, 0x96, 0x81, 0x65, 0xd0, 0x4f, 0x40, 0x0f, 0xd0, - 0x03, 0xfd, 0x04, 0xd2, 0xb0, 0x49, 0x1a, 0xd4, 0xd2, 0x82, 0x39, 0x60, 0x0e, 0xf4, 0x13, 0xf4, - 0x13, 0x20, 0x06, 0x88, 0x41, 0x3f, 0xc9, 0x1a, 0xd5, 0xac, 0x62, 0x2d, 0x2d, 0xad, 0x5d, 0xfa, - 0x9b, 0x73, 0xab, 0x69, 0xfd, 0xb3, 0xdb, 0x64, 0x06, 0x4a, 0x18, 0x04, 0xbe, 0x06, 0xb7, 0x0c, - 0xfc, 0x60, 0xe7, 0x6a, 0xca, 0x17, 0xd8, 0x23, 0x43, 0xca, 0x17, 0x50, 0xbe, 0x80, 0xb0, 0x8a, - 0xb0, 0x6a, 0x3d, 0xc2, 0x2a, 0xa4, 0x5c, 0xa2, 0x20, 0xa2, 0x20, 0x9d, 0x28, 0x08, 0x29, 0x77, - 0x89, 0x41, 0x0f, 0xe5, 0x0b, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, - 0xe2, 0xc8, 0x28, 0x71, 0x50, 0xbe, 0x00, 0xe6, 0x80, 0x39, 0x28, 0x5f, 0x30, 0xda, 0x04, 0xcb, - 0xc7, 0x60, 0xcc, 0x5a, 0x63, 0x0c, 0xcb, 0xc7, 0x39, 0xe7, 0x1a, 0xca, 0x17, 0x40, 0x33, 0xd0, - 0x0c, 0x0a, 0x0a, 0xe8, 0x01, 0x7a, 0xa0, 0xa0, 0x40, 0x1a, 0x56, 0x49, 0x83, 0xf2, 0x05, 0x30, - 0x07, 0xcc, 0x41, 0xfa, 0x3d, 0xfa, 0x09, 0x10, 0x03, 0xc4, 0xa0, 0x9f, 0xac, 0x02, 0xd5, 0x50, - 0xbe, 0x00, 0x96, 0x81, 0x65, 0xd0, 0x4f, 0x40, 0x0f, 0xd0, 0x03, 0xfd, 0x04, 0xd2, 0xb0, 0x49, - 0x1a, 0x94, 0x2f, 0x80, 0x39, 0x60, 0x0e, 0xf4, 0x13, 0xf4, 0x13, 0x20, 0x06, 0x88, 0x41, 0x3f, - 0xc9, 0x1a, 0xd5, 0xac, 0x62, 0xf9, 0x02, 0x8d, 0x3d, 0xfa, 0x9b, 0x73, 0x8b, 0x17, 0x7c, 0x6a, - 0x37, 0x98, 0x81, 0xd2, 0x05, 0x51, 0xe3, 0x3e, 0xfe, 0x8f, 0x1b, 0x7a, 0xdd, 0x5c, 0xca, 0xb0, - 0xd5, 0x8c, 0xf5, 0x0b, 0x19, 0x4c, 0x69, 0x8b, 0xb2, 0x06, 0xf6, 0x88, 0x91, 0xb2, 0x06, 0x94, - 0x35, 0x20, 0xdc, 0x22, 0xdc, 0x5a, 0x8f, 0x70, 0x0b, 0x89, 0x97, 0xe8, 0x88, 0xe8, 0x48, 0x27, - 0x3a, 0x42, 0xe2, 0x5d, 0x62, 0x30, 0x44, 0x59, 0x03, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, - 0x88, 0x03, 0xe2, 0x80, 0x38, 0x32, 0x4a, 0x1c, 0x94, 0x35, 0x80, 0x39, 0x60, 0x0e, 0xca, 0x1a, - 0x8c, 0x36, 0xc1, 0xb2, 0x32, 0x18, 0xb3, 0xd6, 0x18, 0xc3, 0xb2, 0x72, 0xce, 0xb9, 0x86, 0xb2, - 0x06, 0xd0, 0x0c, 0x34, 0x83, 0x82, 0x02, 0x7a, 0x80, 0x1e, 0x28, 0x28, 0x90, 0x86, 0x55, 0xd2, - 0xa0, 0xac, 0x01, 0xcc, 0x01, 0x73, 0x90, 0x96, 0x8f, 0x7e, 0x02, 0xc4, 0x00, 0x31, 0xe8, 0x27, - 0xab, 0x40, 0x35, 0x94, 0x35, 0x80, 0x65, 0x60, 0x19, 0xf4, 0x13, 0xd0, 0x03, 0xf4, 0x40, 0x3f, - 0x81, 0x34, 0x6c, 0x92, 0x06, 0x65, 0x0d, 0x60, 0x0e, 0x98, 0x03, 0xfd, 0x04, 0xfd, 0x04, 0x88, - 0x01, 0x62, 0xd0, 0x4f, 0xb2, 0x46, 0x35, 0xab, 0x58, 0xd6, 0xc0, 0x78, 0xc7, 0xfe, 0xe6, 0xdc, - 0x22, 0x07, 0x37, 0xbd, 0xe6, 0xcf, 0x07, 0xad, 0x67, 0xa0, 0xe2, 0x41, 0xdc, 0x88, 0x35, 0x32, - 0x9d, 0x87, 0xfe, 0xb1, 0x73, 0x39, 0x75, 0x0d, 0xec, 0x21, 0x23, 0x75, 0x0d, 0xa8, 0x6b, 0x40, - 0xbc, 0x45, 0xbc, 0xb5, 0x1e, 0xf1, 0x16, 0x1a, 0x2f, 0xe1, 0x11, 0xe1, 0x91, 0x4e, 0x78, 0x84, - 0xc6, 0xbb, 0xc4, 0x68, 0x88, 0xba, 0x06, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x07, - 0xc4, 0x01, 0x71, 0x64, 0x94, 0x38, 0xa8, 0x6b, 0x00, 0x73, 0xc0, 0x1c, 0xd4, 0x35, 0x18, 0x6d, - 0x82, 0x75, 0x65, 0x30, 0x66, 0xad, 0x31, 0x86, 0x75, 0xe5, 0x9c, 0x73, 0x0d, 0x75, 0x0d, 0xa0, - 0x19, 0x68, 0x06, 0x05, 0x05, 0xf4, 0x00, 0x3d, 0x50, 0x50, 0x20, 0x0d, 0xab, 0xa4, 0x41, 0x5d, - 0x03, 0x98, 0x03, 0xe6, 0x20, 0x2f, 0x1f, 0xfd, 0x04, 0x88, 0x01, 0x62, 0xd0, 0x4f, 0x56, 0x81, - 0x6a, 0xa8, 0x6b, 0x00, 0xcb, 0xc0, 0x32, 0xe8, 0x27, 0xa0, 0x07, 0xe8, 0x81, 0x7e, 0x02, 0x69, - 0xd8, 0x24, 0x0d, 0xea, 0x1a, 0xc0, 0x1c, 0x30, 0x07, 0xfa, 0x09, 0xfa, 0x09, 0x10, 0x03, 0xc4, - 0xa0, 0x9f, 0x64, 0x8d, 0x6a, 0x56, 0xb1, 0xae, 0x81, 0xce, 0x26, 0xfd, 0xcd, 0xb9, 0xa5, 0x0c, - 0x6e, 0x3b, 0x2d, 0x66, 0xa0, 0x7c, 0x41, 0x2b, 0xf2, 0x42, 0xfd, 0xea, 0x05, 0x9d, 0xab, 0x29, - 0x5e, 0x60, 0x8f, 0x0b, 0x29, 0x5e, 0x40, 0xf1, 0x02, 0x82, 0x2a, 0x82, 0xaa, 0xf5, 0x08, 0xaa, - 0x10, 0x72, 0x89, 0x81, 0x88, 0x81, 0x74, 0x62, 0x20, 0x84, 0xdc, 0x25, 0x86, 0x3c, 0x14, 0x2f, - 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x23, 0xa3, 0xc4, 0x41, - 0xf1, 0x02, 0x98, 0x03, 0xe6, 0xa0, 0x78, 0xc1, 0x68, 0x13, 0x2c, 0x1e, 0x83, 0x31, 0x6b, 0x8d, - 0x31, 0x2c, 0x1e, 0xe7, 0x9c, 0x6b, 0x28, 0x5e, 0x00, 0xcd, 0x40, 0x33, 0x28, 0x28, 0xa0, 0x07, - 0xe8, 0x81, 0x82, 0x02, 0x69, 0x58, 0x25, 0x0d, 0x8a, 0x17, 0xc0, 0x1c, 0x30, 0x07, 0xc9, 0xf7, - 0xe8, 0x27, 0x40, 0x0c, 0x10, 0x83, 0x7e, 0xb2, 0x0a, 0x54, 0x43, 0xf1, 0x02, 0x58, 0x06, 0x96, - 0x41, 0x3f, 0x01, 0x3d, 0x40, 0x0f, 0xf4, 0x13, 0x48, 0xc3, 0x26, 0x69, 0x50, 0xbc, 0x00, 0xe6, - 0x80, 0x39, 0xd0, 0x4f, 0xd0, 0x4f, 0x80, 0x18, 0x20, 0x06, 0xfd, 0x24, 0x6b, 0x54, 0xb3, 0x8a, - 0xc5, 0x0b, 0x34, 0xf6, 0xe8, 0x6f, 0xce, 0xad, 0x5d, 0xf0, 0x7b, 0xbb, 0xc1, 0x0c, 0x94, 0x2e, - 0xf8, 0x8f, 0xeb, 0xc7, 0xfa, 0xa5, 0x0b, 0x3a, 0x57, 0x53, 0xba, 0xc0, 0x1e, 0x15, 0x52, 0xba, - 0x80, 0xd2, 0x05, 0x84, 0x54, 0x84, 0x54, 0xeb, 0x11, 0x52, 0x21, 0xe3, 0x12, 0x01, 0x11, 0x01, - 0xe9, 0x44, 0x40, 0xc8, 0xb8, 0x4b, 0x0c, 0x78, 0x28, 0x5d, 0x00, 0x71, 0x40, 0x1c, 0x10, 0x07, - 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x47, 0x46, 0x89, 0x83, 0xd2, 0x05, 0x30, 0x07, 0xcc, 0x41, - 0xe9, 0x82, 0xd1, 0x26, 0x58, 0x3a, 0x06, 0x63, 0xd6, 0x1a, 0x63, 0x58, 0x3a, 0xce, 0x39, 0xd7, - 0x50, 0xba, 0x00, 0x9a, 0x81, 0x66, 0x50, 0x50, 0x40, 0x0f, 0xd0, 0x03, 0x05, 0x05, 0xd2, 0xb0, - 0x4a, 0x1a, 0x94, 0x2e, 0x80, 0x39, 0x60, 0x0e, 0x52, 0xef, 0xd1, 0x4f, 0x80, 0x18, 0x20, 0x06, - 0xfd, 0x64, 0x15, 0xa8, 0x86, 0xd2, 0x05, 0xb0, 0x0c, 0x2c, 0x83, 0x7e, 0x02, 0x7a, 0x80, 0x1e, - 0xe8, 0x27, 0x90, 0x86, 0x4d, 0xd2, 0xa0, 0x74, 0x01, 0xcc, 0x01, 0x73, 0xa0, 0x9f, 0xa0, 0x9f, - 0x00, 0x31, 0x40, 0x0c, 0xfa, 0x49, 0xd6, 0xa8, 0x66, 0x15, 0x4b, 0x17, 0x68, 0xec, 0xd1, 0xdf, - 0x9c, 0x5b, 0xba, 0xe0, 0xdf, 0xed, 0x06, 0x6d, 0x95, 0x2e, 0xd8, 0x10, 0xec, 0x79, 0xdd, 0x1e, - 0xd7, 0xec, 0xe9, 0x64, 0x7d, 0xb2, 0xf8, 0x09, 0xe7, 0x7f, 0x62, 0xc1, 0xb3, 0xb7, 0x19, 0xac, - 0x9b, 0xa4, 0x5d, 0xf3, 0x16, 0xe1, 0x57, 0xe1, 0xc2, 0x8f, 0xe2, 0x72, 0x1c, 0x27, 0xdb, 0x2d, - 0xdf, 0x76, 0x69, 0x67, 0x75, 0xaf, 0x4d, 0x4f, 0x6d, 0x6b, 0x12, 0xb4, 0xea, 0xf5, 0x57, 0x1b, - 0x49, 0x8c, 0xb0, 0xfa, 0x45, 0x97, 0x61, 0xcd, 0x0b, 0xbd, 0xda, 0xdb, 0xa7, 0xde, 0x25, 0x46, - 0x1d, 0xa2, 0x38, 0x08, 0x94, 0x5f, 0x7e, 0x82, 0xb9, 0x35, 0x73, 0x2e, 0xcd, 0x1f, 0x32, 0xb3, - 0x07, 0xc2, 0xf4, 0x7f, 0x99, 0xd1, 0x13, 0x49, 0x7b, 0x40, 0xe9, 0xc9, 0xa7, 0x7f, 0xf3, 0xc9, - 0xef, 0x35, 0xe5, 0x3b, 0x15, 0x6a, 0x41, 0x34, 0xf3, 0x8b, 0x0c, 0x18, 0xb5, 0xfd, 0xa1, 0x19, - 0xcf, 0x33, 0xbf, 0x82, 0xc8, 0xc2, 0xf0, 0x2c, 0x49, 0xf8, 0x95, 0xbc, 0xf2, 0x47, 0xd2, 0xe0, - 0x49, 0x39, 0x38, 0x52, 0x0e, 0x7e, 0x94, 0x2a, 0x73, 0xa8, 0x8d, 0xa0, 0x45, 0x15, 0x35, 0x0a, - 0xd5, 0x7e, 0x9f, 0x2f, 0xe8, 0x84, 0x7e, 0xb7, 0xf6, 0x3e, 0xbf, 0xc8, 0x96, 0x25, 0x2a, 0x15, - 0x93, 0x38, 0x1e, 0x57, 0x89, 0xbb, 0xd5, 0x4b, 0xbf, 0xa8, 0x46, 0xd1, 0xda, 0xd1, 0xb2, 0x76, - 0x54, 0xac, 0x55, 0xba, 0xc5, 0xcc, 0x1b, 0x25, 0x2d, 0xc5, 0x52, 0x88, 0x3c, 0x37, 0xac, 0x7e, - 0x4b, 0xde, 0x79, 0x83, 0xcd, 0x14, 0xdd, 0xeb, 0x12, 0x76, 0x80, 0x1a, 0xc5, 0x2b, 0x0b, 0x3d, - 0x3a, 0xc2, 0x8e, 0x7e, 0x8d, 0x21, 0x5d, 0xd9, 0xc6, 0x58, 0xa6, 0x31, 0x96, 0x65, 0x8c, 0x6a, - 0x08, 0xc9, 0x22, 0xa2, 0xb2, 0xa8, 0x32, 0x74, 0x50, 0x8d, 0x47, 0xd7, 0x0f, 0x9c, 0x8e, 0x53, - 0x57, 0x78, 0x69, 0x7d, 0x9b, 0xa6, 0xa0, 0x9a, 0x14, 0x2e, 0xbc, 0xe0, 0xa1, 0xe3, 0x94, 0xd5, - 0x64, 0x0d, 0x8d, 0x18, 0xc3, 0x44, 0xb6, 0x30, 0x95, 0x55, 0x07, 0x31, 0xb1, 0xe6, 0xf5, 0x02, - 0x01, 0xaf, 0x8e, 0xac, 0x6d, 0x22, 0x33, 0x48, 0x75, 0xd9, 0xfe, 0xc1, 0xeb, 0x25, 0x76, 0x9a, - 0xa5, 0x58, 0xb0, 0xa2, 0x30, 0x43, 0xae, 0xdc, 0x38, 0xf6, 0xc2, 0x40, 0x79, 0x8a, 0x14, 0xb6, - 0xb6, 0xb6, 0x3e, 0xbb, 0xce, 0xff, 0x96, 0x9d, 0xff, 0xbb, 0xe7, 0x1c, 0xdf, 0x55, 0x46, 0xfe, - 0xf2, 0xe5, 0x8b, 0x73, 0x57, 0xd9, 0xfe, 0xb9, 0xf7, 0xea, 0xb0, 0xf8, 0xbc, 0xfd, 0xdb, 0xf0, - 0xf7, 0x95, 0x2f, 0x5f, 0x76, 0xb6, 0xff, 0xae, 0x73, 0xd5, 0x6f, 0xdb, 0xbf, 0xbe, 0x7c, 0xd9, - 0x49, 0x6e, 0xe9, 0x2a, 0xa2, 0x96, 0x4e, 0x29, 0xd8, 0x33, 0x0a, 0xfa, 0x8c, 0x82, 0xbf, 0xa9, - 0x41, 0xa0, 0x66, 0x79, 0x42, 0x8d, 0xaa, 0x8d, 0x26, 0x6b, 0x21, 0xa3, 0x8e, 0xb5, 0xd1, 0xfd, - 0xf6, 0xce, 0xd7, 0x27, 0x1d, 0xed, 0x45, 0x62, 0xdd, 0x63, 0xcc, 0xc9, 0xb6, 0x6c, 0x96, 0x9b, - 0xcc, 0x84, 0xee, 0x61, 0x2b, 0xcc, 0xaf, 0x05, 0xd1, 0x6e, 0x2f, 0x5a, 0xd1, 0x0d, 0xd6, 0xe7, - 0x04, 0x8f, 0xdf, 0x1a, 0x51, 0xec, 0x78, 0x41, 0x1c, 0xfa, 0x5e, 0x94, 0x3c, 0x7a, 0x1a, 0xbb, - 0x8a, 0x18, 0x8a, 0x18, 0xea, 0xc5, 0x60, 0x7a, 0x52, 0x8f, 0xa3, 0x46, 0xae, 0x55, 0x8b, 0xa5, - 0x8a, 0xc4, 0x52, 0xc4, 0x52, 0x6a, 0x03, 0x55, 0x55, 0x35, 0x32, 0x53, 0x91, 0x0c, 0x07, 0xae, - 0xf6, 0x00, 0x36, 0x19, 0xc8, 0xe6, 0x03, 0x5a, 0x82, 0x67, 0x36, 0x29, 0x40, 0xac, 0x15, 0x16, - 0x1a, 0x14, 0x20, 0xae, 0xfb, 0x6e, 0x24, 0x50, 0x82, 0xb8, 0xd3, 0x0c, 0xc9, 0x51, 0xfa, 0xd3, - 0x46, 0x6a, 0xfa, 0x88, 0x4f, 0x23, 0xf1, 0xe9, 0x24, 0x3a, 0xad, 0xf4, 0xa6, 0x97, 0x81, 0xfa, - 0xb2, 0x29, 0x5d, 0x9a, 0x27, 0xf4, 0x83, 0x07, 0x81, 0x9c, 0xa8, 0xe2, 0x9b, 0x54, 0x7b, 0x40, - 0x2b, 0xb6, 0x17, 0x8d, 0xf5, 0x45, 0x63, 0xff, 0xb9, 0x5a, 0xc0, 0xc2, 0x05, 0x61, 0xb9, 0x41, - 0xa9, 0x23, 0x07, 0xb6, 0x41, 0xba, 0xb7, 0xd0, 0x6b, 0x68, 0xc5, 0x07, 0x2d, 0x61, 0xc8, 0x31, - 0xe4, 0x18, 0xf2, 0x7c, 0x19, 0xf2, 0x74, 0x6a, 0x3a, 0x36, 0xbf, 0x97, 0x1c, 0xb7, 0x56, 0x0b, - 0xbd, 0x48, 0x80, 0x1a, 0xc7, 0x5a, 0xc3, 0xe6, 0x60, 0x73, 0xb0, 0x39, 0x69, 0xcf, 0x9f, 0x4d, - 0xcd, 0x15, 0xe2, 0xc9, 0x79, 0xa0, 0xb9, 0x1e, 0x36, 0xd1, 0xd0, 0x9f, 0x5b, 0x5b, 0x9f, 0xf7, - 0x9c, 0xe3, 0xca, 0xaf, 0xcf, 0x45, 0xe7, 0xb8, 0xd2, 0xfd, 0xb1, 0xf8, 0xff, 0xb1, 0xf7, 0xad, - 0x4d, 0x6d, 0x2b, 0x59, 0xbb, 0xdf, 0xf9, 0x15, 0x94, 0x6a, 0x3e, 0xc0, 0x4c, 0x04, 0xbe, 0x1b, - 0xf2, 0x65, 0x17, 0x21, 0xde, 0xd9, 0xa9, 0x81, 0xc0, 0x21, 0xce, 0xbc, 0xb5, 0x77, 0xf0, 0xb8, - 0x84, 0xdd, 0x38, 0x3a, 0x91, 0x25, 0xbf, 0x52, 0x9b, 0x13, 0x76, 0xe2, 0xff, 0x7e, 0xca, 0x37, - 0xf9, 0x6e, 0xab, 0xbb, 0x57, 0xcb, 0x92, 0xfc, 0xa4, 0x6a, 0x26, 0x6c, 0x62, 0x2d, 0xab, 0xbb, - 0xd7, 0xe5, 0xe9, 0x75, 0x1d, 0xfd, 0x35, 0xfe, 0xb9, 0xf0, 0x35, 0x67, 0x96, 0xa6, 0x3f, 0x97, - 0xbf, 0xe6, 0xcc, 0x72, 0xe3, 0xf4, 0xf1, 0xf1, 0xec, 0xf4, 0x67, 0x71, 0x20, 0xfe, 0xe0, 0x3f, - 0x8c, 0xb8, 0x53, 0x84, 0x81, 0xb7, 0xd3, 0x8e, 0xb7, 0xed, 0xde, 0x4b, 0x85, 0xd4, 0x06, 0x56, - 0x60, 0x03, 0x61, 0x03, 0x61, 0x03, 0xf7, 0x26, 0x3f, 0x89, 0xb5, 0x81, 0x96, 0xf9, 0x7c, 0x65, - 0xfe, 0xde, 0xf8, 0x99, 0x7f, 0x53, 0x1a, 0xbc, 0x3d, 0xfd, 0x59, 0x1d, 0x2c, 0xff, 0xf2, 0xd7, - 0xba, 0x8f, 0xe5, 0xdf, 0x54, 0x07, 0x6f, 0x37, 0xfc, 0x4b, 0x65, 0xf0, 0x36, 0x22, 0x8d, 0xf2, - 0xe0, 0x64, 0xe5, 0xa3, 0xc3, 0xdf, 0x17, 0x36, 0x3d, 0x50, 0xda, 0xf0, 0x40, 0x71, 0xd3, 0x03, - 0xc5, 0x0d, 0x0f, 0x6c, 0x7c, 0xa5, 0xc2, 0x86, 0x07, 0xca, 0x83, 0x5f, 0x2b, 0x9f, 0x3f, 0x59, - 0xff, 0xd1, 0xca, 0xe0, 0xf4, 0xd7, 0xa6, 0x7f, 0xab, 0x0e, 0x7e, 0xbd, 0x3d, 0x05, 0x22, 0x38, - 0x74, 0x44, 0x90, 0x89, 0x8a, 0xac, 0xb6, 0x1b, 0x9c, 0xcf, 0xe7, 0x6c, 0xcc, 0xfe, 0xe3, 0x35, - 0x52, 0x6e, 0x89, 0xfc, 0xae, 0x88, 0x8c, 0x82, 0x95, 0xf6, 0x5c, 0xaa, 0x7a, 0x2c, 0x25, 0x11, - 0x13, 0x22, 0xb2, 0x88, 0xc8, 0x6a, 0x47, 0x38, 0xe1, 0x79, 0x3b, 0xcc, 0x7a, 0xf6, 0xd9, 0xb3, - 0xcc, 0x81, 0x4f, 0xc1, 0x4c, 0x55, 0xe2, 0xd9, 0xfb, 0x89, 0x72, 0x39, 0x3b, 0x9b, 0x68, 0x8a, - 0xf3, 0x50, 0xc8, 0x12, 0xa0, 0x32, 0xc6, 0x75, 0x8f, 0xd2, 0xfa, 0x62, 0xfc, 0x78, 0xcc, 0xe9, - 0x1b, 0x05, 0x28, 0x0b, 0x28, 0x8b, 0xad, 0x6f, 0x88, 0xf4, 0x0d, 0x78, 0x1f, 0xe0, 0x7d, 0x48, - 0xa1, 0xf7, 0x01, 0xe9, 0x1b, 0xb8, 0x3c, 0x2a, 0xba, 0x93, 0x91, 0xbe, 0x01, 0x45, 0x0e, 0x45, - 0x8e, 0xf4, 0x8d, 0x38, 0x74, 0x0d, 0xd2, 0x37, 0xa0, 0x73, 0xa0, 0x73, 0x92, 0xa2, 0x73, 0x90, - 0xbe, 0x81, 0xf4, 0x0d, 0xe0, 0xed, 0x3d, 0xd8, 0x40, 0xa4, 0x6f, 0xc0, 0x06, 0xc2, 0x06, 0x22, - 0x7d, 0x43, 0xb3, 0x0d, 0x44, 0xfa, 0x06, 0xd2, 0x37, 0x80, 0x08, 0x90, 0xbe, 0x31, 0x7b, 0x9e, - 0x22, 0x7d, 0x43, 0xa0, 0xf3, 0xab, 0xf8, 0xa6, 0xd0, 0x96, 0xe7, 0x4f, 0x3a, 0xc3, 0x0a, 0xfa, - 0x25, 0x53, 0xdd, 0x37, 0x28, 0x32, 0xab, 0x27, 0xa5, 0xa3, 0xf0, 0x16, 0x56, 0x33, 0x84, 0xe2, - 0xf2, 0x6b, 0xfa, 0xcd, 0xbe, 0x77, 0x83, 0xe6, 0x1f, 0x5e, 0xc0, 0x6b, 0x23, 0x6a, 0x99, 0x6f, - 0xda, 0xb3, 0xd0, 0x24, 0x47, 0x43, 0xeb, 0x9e, 0x80, 0xf9, 0x2f, 0xcc, 0x17, 0xe8, 0xda, 0x33, - 0x7d, 0x00, 0x0d, 0x7b, 0xd0, 0xb0, 0x67, 0x9e, 0x85, 0x64, 0x9a, 0x9e, 0x8e, 0x9e, 0x43, 0xa3, - 0x9e, 0x18, 0x2f, 0xa0, 0x07, 0xdd, 0xa8, 0x47, 0xd6, 0x41, 0x33, 0x4b, 0x69, 0x91, 0xba, 0x53, - 0x22, 0x31, 0x74, 0x2f, 0x3e, 0x16, 0x24, 0x86, 0x8a, 0x9c, 0x77, 0x62, 0x12, 0x43, 0xa7, 0x32, - 0x96, 0x80, 0xbc, 0x50, 0x34, 0xf6, 0x82, 0xb6, 0xc8, 0xa2, 0xb6, 0x90, 0xcf, 0x0c, 0xa5, 0x8a, - 0x70, 0x20, 0xb8, 0x81, 0xe0, 0xc6, 0x9e, 0x44, 0x4b, 0xde, 0x0d, 0x78, 0x9c, 0x90, 0xe0, 0x06, - 0x65, 0x68, 0xe3, 0x52, 0x81, 0xc6, 0x64, 0x4d, 0x7b, 0x1f, 0x52, 0x48, 0x9c, 0xfa, 0xb0, 0xb2, - 0x47, 0x17, 0x04, 0xb4, 0xa8, 0xc2, 0x40, 0x21, 0xc1, 0xb4, 0xa4, 0x44, 0x4c, 0xff, 0x34, 0xd4, - 0x86, 0xee, 0xbd, 0x49, 0x10, 0x93, 0x55, 0x0e, 0x8d, 0xc9, 0x10, 0x73, 0x4c, 0x55, 0xcc, 0x91, - 0x48, 0xe4, 0x32, 0x39, 0xbd, 0xbb, 0xe7, 0xf9, 0x5c, 0x1d, 0xbe, 0x8e, 0xa8, 0x48, 0x22, 0x81, - 0xf7, 0xec, 0xd9, 0xea, 0x3b, 0x23, 0x08, 0x53, 0x2e, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x8b, - 0x0b, 0x9f, 0xe9, 0xf6, 0xbb, 0x4f, 0xc2, 0x53, 0x51, 0xd6, 0x89, 0x50, 0x05, 0x63, 0xba, 0x49, - 0x75, 0xcb, 0x0a, 0x39, 0x8c, 0xe9, 0x4e, 0xcc, 0x11, 0x54, 0xca, 0xe5, 0x22, 0xe6, 0x72, 0xef, - 0x0f, 0xaf, 0x64, 0x26, 0x8d, 0x68, 0x92, 0x03, 0x30, 0xf9, 0x3b, 0x41, 0xcd, 0x5f, 0xd0, 0xc9, - 0x41, 0x33, 0xe6, 0x82, 0xbf, 0x7e, 0x0f, 0xa2, 0x0d, 0x7f, 0x3d, 0xae, 0x2b, 0xb8, 0xae, 0xc0, - 0x5f, 0x0f, 0x7f, 0x7d, 0xea, 0x5d, 0xa9, 0xf0, 0xd7, 0xc7, 0xcf, 0x64, 0xf0, 0xd7, 0xc3, 0x5f, - 0x0f, 0x7f, 0x7d, 0x02, 0xee, 0xbf, 0xf0, 0xd7, 0x03, 0x00, 0x03, 0x00, 0x1f, 0x1a, 0x00, 0x86, - 0xbf, 0x7e, 0xd5, 0x59, 0x0c, 0x7f, 0xfd, 0x1e, 0xd1, 0xe5, 0x31, 0xfc, 0xf5, 0xf0, 0xd7, 0xef, - 0xdd, 0xa9, 0xb7, 0x47, 0x7f, 0x7d, 0xfa, 0xaa, 0x7d, 0xc5, 0x2e, 0x70, 0xa9, 0x2e, 0xf6, 0x95, - 0x0c, 0x5d, 0xf4, 0x03, 0x61, 0xf3, 0xaa, 0x82, 0xc3, 0xe6, 0xb1, 0x97, 0x37, 0x7e, 0x7b, 0xf3, - 0xe9, 0x55, 0x26, 0xa0, 0x40, 0x81, 0xb9, 0x16, 0x70, 0xd6, 0x68, 0x27, 0x52, 0xc1, 0xdc, 0x71, - 0x94, 0x61, 0x2f, 0x8a, 0x3e, 0x49, 0xf5, 0xf5, 0xe7, 0x31, 0xa9, 0xcc, 0x97, 0x5e, 0x4f, 0x2b, - 0x9d, 0x75, 0x54, 0x5d, 0x47, 0x8a, 0x53, 0x0a, 0xc5, 0x25, 0x85, 0x2b, 0xae, 0x0b, 0xa8, 0xb8, - 0x26, 0xbf, 0xbb, 0xc5, 0x56, 0x71, 0x6d, 0xf9, 0xad, 0x6f, 0x32, 0x15, 0xd7, 0xa3, 0xe7, 0xc4, - 0x2a, 0xae, 0x73, 0xa8, 0xb8, 0x46, 0xc5, 0xb5, 0xa4, 0x53, 0x20, 0x3c, 0xaf, 0xb6, 0xd7, 0xb5, - 0x6c, 0xd7, 0x14, 0xec, 0x24, 0x2d, 0xe3, 0x6d, 0x37, 0x6e, 0x98, 0xdb, 0x19, 0xa9, 0x77, 0xb1, - 0x6b, 0xbe, 0x04, 0x06, 0x52, 0xb9, 0xc6, 0xab, 0xba, 0x04, 0xa7, 0x77, 0xc4, 0xbc, 0xe4, 0xf3, - 0x04, 0xf7, 0x41, 0x19, 0x7f, 0xae, 0xca, 0xb5, 0x9b, 0x6a, 0xcb, 0x0a, 0xe5, 0xe2, 0x1e, 0x37, - 0x4d, 0x13, 0x32, 0x6d, 0x08, 0x48, 0x88, 0x6c, 0xdc, 0xc9, 0x38, 0x39, 0x39, 0xf9, 0x6a, 0x99, - 0x7f, 0x5f, 0x99, 0x7f, 0xe5, 0xcc, 0xcb, 0x66, 0x63, 0xee, 0x3f, 0x1e, 0x1f, 0xcd, 0x66, 0xe3, - 0xf4, 0x67, 0xee, 0x4d, 0x25, 0x3f, 0x38, 0xfd, 0x6d, 0xf6, 0xfb, 0xc6, 0xe3, 0xe3, 0xd9, 0xe9, - 0x3f, 0x65, 0x9e, 0xfa, 0xed, 0xf4, 0xd7, 0xe3, 0xe3, 0x59, 0x74, 0x4d, 0xd7, 0x20, 0xd5, 0x74, - 0xb8, 0x41, 0xe2, 0x06, 0xb9, 0xcf, 0x1b, 0x64, 0x9a, 0xaf, 0x4d, 0xbb, 0xbd, 0x4b, 0x5b, 0x2e, - 0x4d, 0x47, 0x02, 0xcb, 0x89, 0xba, 0x0c, 0x91, 0xd7, 0x37, 0xb6, 0xde, 0xda, 0xd6, 0xdf, 0x88, - 0xd7, 0x2f, 0x76, 0x75, 0x29, 0x6b, 0x96, 0x61, 0x74, 0xfc, 0x5e, 0xcb, 0xdc, 0xd1, 0x41, 0x29, - 0x14, 0xd1, 0xf9, 0x0f, 0x6f, 0xd8, 0x92, 0xed, 0xb7, 0xc0, 0x9d, 0x20, 0x3d, 0x0a, 0x28, 0x5f, - 0x02, 0xe1, 0x66, 0xb7, 0xd3, 0xdd, 0x16, 0x5d, 0x8d, 0xaa, 0x24, 0x84, 0x91, 0xb6, 0xb0, 0xe0, - 0xaf, 0x41, 0xd2, 0xe3, 0x97, 0x27, 0x62, 0xc7, 0x5d, 0xf7, 0xb7, 0xa8, 0x0d, 0x45, 0xc4, 0x1a, - 0x88, 0x24, 0xa8, 0xd5, 0xda, 0x2e, 0x56, 0x48, 0xf5, 0xed, 0x7f, 0x07, 0xab, 0xc4, 0xec, 0x02, - 0x68, 0x31, 0x9f, 0xdb, 0xcf, 0x76, 0xcb, 0xe2, 0xcc, 0xb4, 0xdb, 0xe2, 0xae, 0x80, 0xa5, 0xe7, - 0x33, 0xe3, 0x12, 0x88, 0xca, 0x82, 0x99, 0xf4, 0x0b, 0x44, 0x64, 0xd1, 0xa4, 0x39, 0x07, 0x84, - 0xe7, 0xe4, 0x08, 0xce, 0xc5, 0x89, 0x80, 0xa6, 0x22, 0xe8, 0x2c, 0xe6, 0x5a, 0x4f, 0x0e, 0x13, - 0x97, 0xb4, 0xc9, 0x73, 0x51, 0x9b, 0xda, 0xcd, 0xd2, 0x8d, 0x86, 0x2c, 0x01, 0xc1, 0x84, 0x60, - 0xee, 0x4f, 0x30, 0x9f, 0x3c, 0xcf, 0x61, 0x96, 0x2b, 0x23, 0x99, 0xf9, 0x18, 0x25, 0xd3, 0xb1, - 0x03, 0xce, 0xdc, 0x69, 0x96, 0x2f, 0x0b, 0xc4, 0x65, 0x74, 0x85, 0x02, 0xc4, 0x0e, 0x62, 0xb7, - 0x37, 0xb1, 0xeb, 0xbb, 0xc3, 0x1b, 0xad, 0x84, 0xd0, 0x09, 0x54, 0x87, 0xc8, 0x55, 0x83, 0x28, - 0x94, 0x1c, 0x2a, 0xd5, 0xc1, 0xa8, 0xd4, 0xbf, 0xa8, 0xd5, 0xbd, 0x60, 0x24, 0xd7, 0x7a, 0x42, - 0x18, 0xc9, 0xa5, 0x8d, 0x59, 0x30, 0xbb, 0x06, 0x75, 0x29, 0x29, 0x9e, 0x5d, 0x73, 0xa4, 0xf7, - 0x7b, 0x04, 0x45, 0x53, 0xc1, 0x62, 0x31, 0xb7, 0xdf, 0x65, 0xfe, 0xd8, 0xbd, 0xac, 0x60, 0xb2, - 0x4a, 0x12, 0xcf, 0xd6, 0xdc, 0x7e, 0x77, 0x88, 0x1d, 0xb4, 0x45, 0x0b, 0x11, 0x2c, 0x13, 0x9e, - 0xad, 0x42, 0x72, 0x55, 0xe9, 0x32, 0x6e, 0xb5, 0x2d, 0x6e, 0x99, 0x56, 0x9f, 0x7f, 0x63, 0x2e, - 0xb7, 0x5b, 0x62, 0xf9, 0x7f, 0x21, 0x73, 0x6e, 0x22, 0x24, 0xee, 0x66, 0x78, 0xb6, 0x9c, 0x00, - 0x7e, 0x06, 0x5c, 0x78, 0xe0, 0x67, 0xd8, 0xf5, 0x9d, 0x42, 0xc5, 0x88, 0x32, 0xc5, 0x87, 0xf3, - 0x62, 0x79, 0x59, 0x2c, 0x5e, 0x42, 0x2a, 0x21, 0x95, 0xfb, 0x93, 0x4a, 0xb9, 0xc2, 0x3d, 0x89, - 0x42, 0x3d, 0xc9, 0xc2, 0xbc, 0x94, 0x66, 0xec, 0xe5, 0x90, 0xb1, 0x27, 0xba, 0x65, 0x0a, 0x85, - 0x70, 0x89, 0xce, 0xd9, 0x8b, 0xd1, 0x76, 0x71, 0xdf, 0x72, 0x83, 0x91, 0x44, 0x07, 0xac, 0xd5, - 0xf7, 0x6d, 0xfe, 0x2a, 0x6e, 0xc9, 0xd6, 0xd0, 0x40, 0x54, 0x0b, 0x76, 0x0d, 0x68, 0x53, 0x5c, - 0x62, 0x13, 0x99, 0xbd, 0x37, 0x97, 0x5e, 0x16, 0xa9, 0xa7, 0x23, 0x6a, 0x9f, 0x90, 0x02, 0x45, - 0xcf, 0xdd, 0x48, 0x81, 0x82, 0x4d, 0x3a, 0x38, 0x9b, 0x84, 0x14, 0x28, 0x80, 0x45, 0x08, 0x26, - 0xc0, 0xa2, 0xac, 0x64, 0x22, 0x05, 0x0a, 0x62, 0x87, 0x14, 0x28, 0xa4, 0x40, 0x51, 0xae, 0x54, - 0x7e, 0xc5, 0x6b, 0x56, 0x8e, 0x14, 0x28, 0xa4, 0x40, 0x45, 0x67, 0x16, 0xa4, 0x40, 0x21, 0x05, - 0x0a, 0x29, 0x50, 0x44, 0xa2, 0x89, 0x14, 0x28, 0xf9, 0x2d, 0x47, 0x0a, 0x14, 0xf9, 0x55, 0x05, - 0x29, 0x50, 0xb8, 0xf0, 0xe0, 0xc2, 0x93, 0x52, 0x3f, 0x03, 0x52, 0xa0, 0x20, 0x95, 0x07, 0x24, - 0x95, 0x48, 0x81, 0x52, 0x91, 0xb2, 0x95, 0xc7, 0x91, 0x02, 0x25, 0xbd, 0x65, 0x48, 0x81, 0x52, - 0xb6, 0x5d, 0x48, 0x81, 0x82, 0x5d, 0x83, 0x5d, 0x43, 0x0a, 0x54, 0xd4, 0x14, 0xa8, 0x14, 0x37, - 0x32, 0xdb, 0xdd, 0x28, 0xec, 0x78, 0x63, 0x43, 0xb3, 0x0f, 0x7e, 0xaf, 0xb5, 0xad, 0xc5, 0x77, - 0xb4, 0xbe, 0x66, 0x8e, 0xdd, 0x62, 0x6e, 0xc0, 0x76, 0xf7, 0x34, 0x9b, 0x7e, 0x30, 0x19, 0xfd, - 0xcc, 0xb6, 0xbf, 0xcd, 0x71, 0xa2, 0xdb, 0x99, 0x4d, 0xdf, 0x3d, 0xae, 0x6e, 0x66, 0x93, 0xef, - 0x0b, 0xa2, 0xe7, 0xf2, 0x85, 0x4f, 0xa4, 0xa3, 0xa3, 0xd9, 0x6e, 0x66, 0x90, 0xb5, 0x69, 0xfb, - 0xcf, 0xe6, 0xdb, 0xc9, 0x2c, 0x34, 0x7a, 0x3a, 0x72, 0x32, 0xdf, 0x2e, 0x7d, 0x21, 0xa9, 0x3f, - 0x24, 0x59, 0x6b, 0x6f, 0x78, 0x4a, 0x6c, 0x35, 0xd9, 0x82, 0x53, 0x91, 0x59, 0x52, 0x0f, 0x9a, - 0x12, 0x9d, 0xb2, 0x1d, 0xb5, 0x9b, 0xe3, 0xc6, 0xe3, 0x8e, 0xd4, 0xdd, 0x51, 0x91, 0x81, 0xa5, - 0x19, 0x59, 0x85, 0xa1, 0x69, 0x18, 0x5b, 0x95, 0xc1, 0xc9, 0x18, 0x9d, 0x8c, 0xe1, 0xc9, 0x18, - 0x5f, 0xf2, 0x56, 0x1e, 0xdb, 0xd8, 0xf9, 0x16, 0xb7, 0x5f, 0x18, 0xc1, 0xd4, 0xf9, 0x31, 0x1d, - 0xf5, 0xc1, 0x9d, 0x22, 0xf1, 0x1d, 0x6a, 0x07, 0x4e, 0xd2, 0x66, 0x77, 0xca, 0x0b, 0x22, 0x95, - 0x40, 0x92, 0x0b, 0x26, 0xb9, 0x80, 0x92, 0x0b, 0xaa, 0x9c, 0xc0, 0x2a, 0xf8, 0x2c, 0x8f, 0x69, - 0x67, 0x78, 0x8a, 0xfb, 0x0b, 0x14, 0xfd, 0x07, 0xea, 0x1b, 0x27, 0xe3, 0xe8, 0x9d, 0x9c, 0xaf, - 0xd9, 0xb6, 0xb8, 0xa5, 0xae, 0xbe, 0x16, 0xa8, 0x41, 0xf9, 0x40, 0xf9, 0x40, 0xf9, 0x48, 0xf1, - 0x8d, 0x68, 0x2e, 0xf0, 0x46, 0xd5, 0x73, 0xa9, 0x40, 0x43, 0x29, 0x83, 0x76, 0xfa, 0x87, 0x60, - 0x74, 0x70, 0xa8, 0x91, 0x6d, 0xd7, 0xf2, 0x5f, 0x0d, 0x82, 0x49, 0xb8, 0x93, 0xdd, 0xb9, 0x54, - 0x9b, 0xe6, 0xfa, 0x26, 0x29, 0x1b, 0x23, 0x5c, 0x49, 0xb5, 0x93, 0x6d, 0x2e, 0x30, 0x97, 0x7f, - 0xa3, 0xa5, 0x14, 0xa8, 0xbb, 0xdc, 0x69, 0x27, 0x23, 0xd7, 0x60, 0xc2, 0x4a, 0xc2, 0x4a, 0xc2, - 0x4a, 0x52, 0xeb, 0x3d, 0x45, 0x7d, 0x77, 0xa8, 0xf3, 0xb5, 0x27, 0x0c, 0x37, 0xfd, 0x3b, 0x08, - 0x7f, 0x11, 0xa5, 0x83, 0x82, 0xfc, 0x96, 0x08, 0x6c, 0x87, 0x8a, 0xb2, 0x56, 0x57, 0xd2, 0x92, - 0xca, 0x19, 0x0e, 0x4b, 0x38, 0x2c, 0x45, 0x45, 0x5e, 0x5a, 0x99, 0xce, 0xb8, 0x9c, 0x59, 0xcf, - 0x3e, 0x7b, 0x56, 0xa9, 0x75, 0xa8, 0x4a, 0x3c, 0x7b, 0x3f, 0xd1, 0x32, 0x67, 0x67, 0x13, 0xad, - 0x71, 0x3e, 0x27, 0x6e, 0x09, 0x50, 0x20, 0xd1, 0x5a, 0xb6, 0x6c, 0x31, 0x4d, 0xbb, 0x5b, 0xb8, - 0x6c, 0xdc, 0x4f, 0x59, 0xb5, 0x51, 0x80, 0xda, 0x80, 0xda, 0x88, 0xf4, 0x96, 0x88, 0x73, 0xe0, - 0x12, 0x85, 0x4b, 0x14, 0x2e, 0x51, 0x87, 0x13, 0xe7, 0x68, 0xb3, 0xa0, 0xe5, 0xdb, 0x3d, 0xe9, - 0xcb, 0xd1, 0xc2, 0x9e, 0xcd, 0x13, 0x83, 0xea, 0x81, 0xea, 0x81, 0xea, 0x39, 0x14, 0xff, 0x8d, - 0x84, 0xe6, 0x61, 0x3f, 0x7a, 0xf6, 0xb8, 0x9e, 0xdc, 0x6c, 0xcb, 0xdc, 0x29, 0x56, 0xb6, 0x6d, - 0x99, 0x20, 0x34, 0x10, 0x34, 0x10, 0x34, 0x90, 0x14, 0xdf, 0xf4, 0x6d, 0x97, 0x57, 0x4a, 0x04, - 0x1a, 0x48, 0xa5, 0xe1, 0x8a, 0x5c, 0x1d, 0xe4, 0xf2, 0x1f, 0x82, 0x78, 0xa2, 0x4a, 0x9d, 0x24, - 0xb1, 0x7a, 0x59, 0x21, 0xa7, 0x58, 0x47, 0xb9, 0x42, 0x8f, 0xa0, 0x40, 0x90, 0x88, 0x9d, 0x17, - 0x8f, 0xc0, 0xfa, 0x91, 0xf8, 0x23, 0xc8, 0x5f, 0x94, 0x4a, 0x95, 0x6a, 0xa9, 0x94, 0xab, 0x16, - 0xab, 0xb9, 0xcb, 0x72, 0x39, 0x5f, 0xc9, 0x97, 0x13, 0x7c, 0x2a, 0x08, 0x65, 0xaf, 0x87, 0x24, - 0xac, 0x4d, 0x04, 0x45, 0x18, 0x82, 0xd8, 0x80, 0x20, 0x80, 0x20, 0xf0, 0xbf, 0x6c, 0x7b, 0x47, - 0xdb, 0x35, 0xfb, 0x01, 0xc1, 0xe5, 0x67, 0x42, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, - 0x67, 0x8b, 0xc2, 0x09, 0x82, 0x3e, 0x23, 0xf2, 0xb8, 0xcc, 0xd1, 0x82, 0xe2, 0x81, 0xe2, 0x81, - 0xe2, 0x81, 0xb3, 0x05, 0xce, 0x16, 0x38, 0x5b, 0xe0, 0x6c, 0x81, 0xb3, 0x65, 0xf7, 0x36, 0xa3, - 0xc2, 0x0e, 0x60, 0x04, 0x60, 0x24, 0x71, 0x60, 0x04, 0x15, 0x76, 0x6b, 0xae, 0x86, 0xa8, 0xb0, - 0x5b, 0xbf, 0x31, 0xa8, 0xb0, 0x8b, 0xd3, 0x52, 0xa2, 0xc2, 0x0e, 0x56, 0x12, 0x56, 0x12, 0x19, - 0x5a, 0x71, 0xe9, 0x9d, 0x17, 0xcb, 0xa1, 0x50, 0x39, 0x63, 0x32, 0xd0, 0x36, 0xd0, 0x36, 0xd0, - 0x36, 0x72, 0xf0, 0x33, 0x85, 0x91, 0x89, 0x6c, 0x17, 0xf4, 0x46, 0xe8, 0x07, 0x2c, 0xbf, 0x23, - 0xb4, 0xbd, 0x0c, 0xff, 0xcd, 0x5e, 0xa5, 0x70, 0xdf, 0x81, 0xcc, 0x31, 0x8a, 0xda, 0x32, 0x55, - 0x8e, 0xe3, 0x94, 0x39, 0xcd, 0x10, 0x2a, 0xcd, 0x5c, 0xd3, 0xc2, 0xf9, 0x66, 0x4c, 0x67, 0xfa, - 0xb7, 0x91, 0xe9, 0x96, 0xdd, 0xcb, 0xbb, 0x98, 0xce, 0x8e, 0xdd, 0x11, 0x1a, 0x4f, 0x6f, 0x3b, - 0x6a, 0xa5, 0x56, 0xdd, 0x5e, 0xa7, 0x33, 0x04, 0xb6, 0xbb, 0x5b, 0x75, 0x4f, 0x3e, 0x98, 0x90, - 0x56, 0xdd, 0x5e, 0x27, 0x9d, 0x6d, 0xba, 0xbd, 0x4e, 0x6c, 0x2d, 0xba, 0x5b, 0x9e, 0x1b, 0x78, - 0x11, 0x26, 0xb6, 0xcf, 0xf7, 0xa4, 0x1d, 0x3d, 0x90, 0x92, 0x06, 0xdd, 0x5e, 0x27, 0x9b, 0xcd, - 0xb9, 0xbd, 0x4e, 0x62, 0x1a, 0x73, 0x0b, 0x76, 0x39, 0x96, 0xeb, 0x6e, 0x9c, 0xf8, 0xb6, 0xdc, - 0x5e, 0xe7, 0x30, 0x5b, 0x72, 0x7b, 0x9d, 0x7d, 0xb5, 0xe3, 0xd6, 0x0e, 0xbe, 0xc6, 0xc6, 0xec, - 0x7c, 0xa2, 0xf1, 0x84, 0xda, 0xf5, 0xd0, 0xcc, 0x23, 0x0a, 0x98, 0xc3, 0x5a, 0xdc, 0xf3, 0x25, - 0x86, 0xf5, 0xcf, 0x1e, 0x85, 0x7c, 0x41, 0xbe, 0xa4, 0xe4, 0x4b, 0xb8, 0xdd, 0xfd, 0x94, 0xe7, - 0x14, 0xfa, 0xc0, 0x4c, 0x29, 0x1c, 0x48, 0xcb, 0x7b, 0xaf, 0x83, 0x36, 0x30, 0xaa, 0x4c, 0x1f, - 0x8f, 0x6f, 0x49, 0xba, 0x05, 0x8c, 0xe4, 0x0c, 0x08, 0x35, 0xb4, 0x44, 0x24, 0x20, 0xc9, 0xf5, - 0x97, 0x7b, 0x1d, 0xf8, 0xca, 0xe3, 0x12, 0xac, 0xfd, 0xf8, 0xc9, 0x65, 0x05, 0x2e, 0x24, 0xf0, - 0x6c, 0xb5, 0x6c, 0x47, 0x64, 0x84, 0xe3, 0x4e, 0xc6, 0x0b, 0x29, 0x2a, 0x1e, 0x0a, 0x4d, 0xee, - 0xa3, 0xb2, 0x50, 0x52, 0x0a, 0x27, 0xbd, 0x90, 0x52, 0x0b, 0xab, 0x36, 0xa1, 0xd5, 0x26, 0xbc, - 0x5a, 0x84, 0x58, 0x4d, 0x98, 0x15, 0x85, 0x3a, 0x5c, 0x91, 0x72, 0x10, 0x6c, 0x85, 0xdf, 0xec, - 0x36, 0x73, 0xb9, 0xcd, 0x5f, 0xe5, 0x7a, 0x33, 0x6e, 0xb4, 0x97, 0x04, 0xc9, 0xc3, 0xc6, 0xc7, - 0xc9, 0xab, 0xbd, 0xb3, 0x02, 0x42, 0x36, 0x9e, 0x2e, 0xfc, 0xf3, 0x9f, 0x9f, 0x6f, 0xee, 0x3e, - 0x34, 0x7f, 0xbf, 0xba, 0xfe, 0x78, 0xf3, 0xb1, 0xfe, 0xa7, 0x41, 0x99, 0x50, 0x1d, 0x28, 0x67, - 0xdb, 0xcd, 0xff, 0xf9, 0x49, 0x46, 0x69, 0x61, 0x03, 0xbe, 0x7c, 0xae, 0x3d, 0x18, 0x64, 0xa4, - 0x07, 0x6f, 0x92, 0xbe, 0xde, 0x9b, 0xbb, 0xeb, 0xab, 0x9b, 0xca, 0x21, 0xad, 0x78, 0xcc, 0xe2, - 0x07, 0x77, 0xc6, 0xa5, 0x83, 0x5b, 0x71, 0xfe, 0xe0, 0x56, 0x5c, 0x3c, 0xa4, 0x15, 0x7f, 0xaa, - 0xdf, 0x1f, 0xd2, 0x72, 0xaf, 0xbe, 0xd4, 0xff, 0x38, 0x38, 0x86, 0xae, 0x1e, 0x98, 0x61, 0xaa, - 0xd7, 0x6e, 0x9b, 0xef, 0xaf, 0x6a, 0xb7, 0x77, 0x9f, 0x0e, 0xee, 0xa8, 0xcb, 0x07, 0x25, 0xcc, - 0x37, 0x37, 0x87, 0xb4, 0xdc, 0xeb, 0xbb, 0x4f, 0x9f, 0xef, 0x6e, 0x6a, 0x87, 0xa6, 0xae, 0xef, - 0x1f, 0x3e, 0xfe, 0xe7, 0x90, 0xd6, 0xfc, 0xef, 0xda, 0xc3, 0xa7, 0xda, 0xcd, 0xc1, 0x69, 0xae, - 0xdc, 0xc1, 0xad, 0xb8, 0x70, 0x48, 0x2b, 0xbe, 0xbd, 0xfa, 0x78, 0x73, 0x58, 0x9a, 0xeb, 0xfd, - 0xc7, 0x3a, 0xe1, 0x82, 0x49, 0x28, 0x35, 0x52, 0x5b, 0x1d, 0xaf, 0x70, 0xe0, 0x46, 0xc0, 0x5e, - 0x98, 0x4f, 0x1a, 0x74, 0x08, 0x29, 0x22, 0xe8, 0xb0, 0x73, 0xaf, 0x10, 0x74, 0x40, 0xd0, 0x61, - 0xf3, 0x8a, 0xe8, 0x83, 0x0e, 0xc1, 0x6b, 0xe0, 0x78, 0x1d, 0x93, 0x48, 0x44, 0xe7, 0xc5, 0x34, - 0x5f, 0x22, 0xa0, 0x55, 0x73, 0xfb, 0xdd, 0xe1, 0x82, 0xf7, 0xa6, 0x48, 0x63, 0x0d, 0x18, 0x2b, - 0x56, 0xff, 0xcc, 0x54, 0xb8, 0x64, 0x7a, 0x60, 0x98, 0x71, 0x17, 0xfe, 0x24, 0x35, 0xe0, 0x4f, - 0x7e, 0xf3, 0x64, 0x6a, 0x39, 0x95, 0x83, 0xe4, 0x54, 0xc1, 0xf1, 0xcc, 0x55, 0x74, 0x22, 0x43, - 0x25, 0x7e, 0x3b, 0x93, 0xd6, 0x4a, 0x4e, 0xf9, 0xa1, 0x82, 0x2b, 0x76, 0xa3, 0xaa, 0x40, 0x63, - 0x75, 0xc8, 0x60, 0x28, 0xd4, 0x09, 0x56, 0x61, 0xca, 0x90, 0x9b, 0x0a, 0x6a, 0x43, 0x85, 0x41, - 0x85, 0x41, 0x85, 0x25, 0x4d, 0x85, 0x85, 0x42, 0x9d, 0x64, 0x15, 0xc6, 0x49, 0xfa, 0xee, 0xca, - 0x4c, 0x51, 0x5d, 0xd9, 0x7d, 0x55, 0xe5, 0x55, 0x80, 0xf2, 0x82, 0xf2, 0x8a, 0x45, 0x79, 0x21, - 0x43, 0x18, 0xce, 0x3a, 0x38, 0xeb, 0xe0, 0xac, 0x8b, 0xc8, 0x6f, 0xc8, 0x10, 0x46, 0x86, 0x30, - 0xc5, 0x1f, 0x64, 0x08, 0x27, 0x6f, 0xc5, 0xc8, 0x10, 0x3e, 0x90, 0x15, 0x23, 0x43, 0x38, 0xd3, - 0x2b, 0x46, 0x86, 0x70, 0xf6, 0x19, 0x1a, 0x19, 0xc2, 0x07, 0x73, 0xd4, 0xc8, 0x10, 0xce, 0xee, - 0x72, 0x91, 0x21, 0x7c, 0x10, 0x6b, 0x46, 0x86, 0xf0, 0x81, 0xac, 0x18, 0x19, 0xc2, 0x99, 0xd6, - 0x5c, 0xc8, 0x10, 0x26, 0x7c, 0x1a, 0x19, 0xc2, 0x5b, 0xc8, 0x20, 0xe8, 0x20, 0xb7, 0xfb, 0x08, - 0x3a, 0x20, 0x43, 0x58, 0x40, 0x4c, 0x91, 0x21, 0x2c, 0xce, 0xb0, 0xc9, 0xcb, 0x10, 0x96, 0x98, - 0x18, 0x20, 0xbf, 0x77, 0x7a, 0x3b, 0xe4, 0x4d, 0x26, 0x0a, 0x4c, 0x43, 0xe0, 0xc7, 0x92, 0x3c, - 0x2f, 0x37, 0x60, 0x20, 0x7c, 0x5a, 0x65, 0xd0, 0xc0, 0x8c, 0x88, 0xc2, 0xc0, 0x81, 0x90, 0x88, - 0xd4, 0xe0, 0x01, 0xd9, 0xcd, 0x8f, 0x6d, 0xf4, 0xc5, 0x4e, 0x96, 0x36, 0xa4, 0xf2, 0x9f, 0xd6, - 0xf5, 0xad, 0x1f, 0x7f, 0x55, 0xf3, 0x7a, 0xfc, 0x55, 0xcd, 0xcf, 0xd3, 0x2f, 0x48, 0xc5, 0x7c, - 0x8d, 0xb8, 0x9b, 0x13, 0xcf, 0xfa, 0xfd, 0xc6, 0xd9, 0x9f, 0x58, 0x28, 0x6f, 0x4d, 0x2a, 0x4f, - 0x4d, 0xba, 0x2f, 0x71, 0x01, 0x7d, 0x89, 0x29, 0x51, 0xe0, 0x01, 0xf7, 0xfd, 0x16, 0xb0, 0xd1, - 0xa9, 0x9d, 0x90, 0xb2, 0xb8, 0x64, 0x23, 0x92, 0xec, 0xef, 0xd6, 0xd9, 0xd2, 0x83, 0x56, 0xb6, - 0x4c, 0xed, 0xf0, 0x59, 0xd7, 0xe3, 0xcc, 0x0c, 0x98, 0xff, 0xc2, 0x22, 0x34, 0x46, 0x0f, 0x65, - 0x75, 0xe9, 0x39, 0x8c, 0xaf, 0xc0, 0xf8, 0x8a, 0x35, 0x0c, 0x25, 0x6e, 0xcc, 0x16, 0x1f, 0x47, - 0xb3, 0x7d, 0x18, 0x35, 0x29, 0xa3, 0x26, 0xdc, 0x6c, 0x5f, 0xb2, 0xaf, 0xb8, 0x5a, 0x3f, 0x71, - 0x34, 0xda, 0xdf, 0x8b, 0x4f, 0x0f, 0x8d, 0xf6, 0x23, 0x3c, 0xf8, 0xcd, 0x0b, 0xb8, 0x7a, 0x0d, - 0xcd, 0x88, 0x0a, 0xea, 0xff, 0x50, 0x42, 0xb3, 0x27, 0x47, 0x78, 0x5a, 0xeb, 0xff, 0x14, 0xe4, - 0x66, 0xc1, 0xb0, 0x5c, 0x2a, 0xd0, 0x98, 0xac, 0x46, 0x2d, 0x1f, 0x9d, 0xb2, 0xe2, 0xa0, 0x67, - 0x5a, 0xed, 0xb6, 0xcf, 0x82, 0x80, 0xd2, 0xef, 0x7f, 0x49, 0x40, 0x8b, 0x64, 0xa7, 0xe8, 0x76, - 0x6c, 0xcd, 0xce, 0xbd, 0x94, 0x08, 0xf7, 0x6e, 0x65, 0x0f, 0x2f, 0x08, 0x69, 0xde, 0x5b, 0x9c, - 0x33, 0xdf, 0x25, 0x2d, 0x84, 0x18, 0x11, 0xfe, 0xef, 0xc9, 0xc9, 0xd7, 0x9c, 0x79, 0xd9, 0xf8, - 0xf5, 0x35, 0x6f, 0x5e, 0x36, 0xc6, 0x3f, 0xe6, 0x47, 0x7f, 0x8d, 0x7f, 0x2e, 0x7c, 0xcd, 0x99, - 0xa5, 0xe9, 0xcf, 0xe5, 0xaf, 0x39, 0xb3, 0xdc, 0x38, 0x7d, 0x7c, 0x3c, 0x3b, 0xfd, 0x59, 0x1c, - 0x88, 0x3f, 0xf8, 0x0f, 0xba, 0xec, 0x80, 0x06, 0x09, 0x25, 0xa2, 0xa4, 0x0a, 0x3d, 0xcc, 0x59, - 0x01, 0x73, 0x8e, 0x99, 0xd3, 0x32, 0x9f, 0xaf, 0xcc, 0xdf, 0x1b, 0x3f, 0xf3, 0x6f, 0x4a, 0x83, - 0xb7, 0xa7, 0x3f, 0xab, 0x83, 0xe5, 0x5f, 0xfe, 0x5a, 0xf7, 0xb1, 0xfc, 0x9b, 0xea, 0xe0, 0xed, - 0x86, 0x7f, 0xa9, 0x0c, 0xde, 0x46, 0xa4, 0x51, 0x1e, 0x9c, 0xac, 0x7c, 0x74, 0xf8, 0xfb, 0xc2, - 0xa6, 0x07, 0x4a, 0x1b, 0x1e, 0x28, 0x6e, 0x7a, 0xa0, 0xb8, 0xe1, 0x81, 0x8d, 0xaf, 0x54, 0xd8, - 0xf0, 0x40, 0x79, 0xf0, 0x6b, 0xe5, 0xf3, 0x27, 0xeb, 0x3f, 0x5a, 0x19, 0x9c, 0xfe, 0xda, 0xf4, - 0x6f, 0xd5, 0xc1, 0xaf, 0xb7, 0xa7, 0x09, 0x14, 0xd5, 0xa3, 0xfd, 0xbe, 0x87, 0xa2, 0xaa, 0x20, - 0xb4, 0xf8, 0x6d, 0xaf, 0x6b, 0xd9, 0xae, 0x39, 0xf2, 0x8a, 0x12, 0x9a, 0x7c, 0x02, 0x8d, 0x60, - 0xdc, 0x30, 0xb7, 0x33, 0x72, 0x03, 0x27, 0xce, 0xe8, 0xdf, 0xda, 0x2e, 0x59, 0x1a, 0x0d, 0xd1, - 0x5d, 0x6c, 0x23, 0xd9, 0x51, 0xd1, 0xa3, 0x7c, 0x9b, 0x84, 0x8d, 0x74, 0x7f, 0xf7, 0xad, 0x16, - 0xb7, 0x3d, 0xf7, 0xbd, 0xdd, 0xb1, 0x47, 0x41, 0xe7, 0x5c, 0x12, 0xb3, 0x13, 0x8d, 0x5b, 0xeb, - 0x47, 0xea, 0x8e, 0xaa, 0x50, 0x2e, 0xa6, 0xe8, 0xb0, 0x92, 0xa2, 0x90, 0x09, 0x34, 0x0e, 0x35, - 0xf6, 0x30, 0x4e, 0x4e, 0x4e, 0xbe, 0x5a, 0xe6, 0xdf, 0x57, 0xe6, 0x5f, 0x39, 0xf3, 0xb2, 0xd9, - 0x98, 0xfb, 0x8f, 0xc7, 0x47, 0xb3, 0xd9, 0x38, 0xfd, 0x99, 0x7b, 0x53, 0xc9, 0x0f, 0x4e, 0x7f, - 0x9b, 0xfd, 0xbe, 0x31, 0xc4, 0xc3, 0xff, 0x94, 0x79, 0xea, 0xb7, 0xd3, 0x5f, 0x8f, 0x8f, 0x67, - 0xc6, 0xbe, 0x2d, 0xdb, 0x51, 0xbc, 0xdf, 0x1b, 0x4f, 0xbb, 0x9b, 0x49, 0xc8, 0xa4, 0xe7, 0xf9, - 0x04, 0x0e, 0xbb, 0x79, 0x62, 0xb2, 0x8d, 0x44, 0xd8, 0xb3, 0xd5, 0x77, 0x46, 0xee, 0x9b, 0x72, - 0xbe, 0x04, 0xef, 0x1f, 0xbc, 0x7f, 0xf0, 0xfe, 0x89, 0xf1, 0xcb, 0x50, 0xfa, 0x4c, 0xb7, 0xdf, - 0x7d, 0x62, 0x3e, 0x81, 0x13, 0xb0, 0xa2, 0x40, 0xe2, 0xc1, 0x72, 0x3b, 0x89, 0x70, 0x02, 0x52, - 0xa2, 0x5a, 0x62, 0x88, 0x14, 0x42, 0x23, 0x2a, 0x7a, 0x1a, 0x00, 0x11, 0x01, 0x6a, 0x25, 0x45, - 0xab, 0xba, 0x8e, 0xa0, 0x52, 0x2e, 0x17, 0xcb, 0x09, 0x3e, 0x06, 0xc0, 0x97, 0x95, 0x6d, 0x0e, - 0x46, 0xa6, 0x2d, 0xf4, 0x00, 0xaa, 0xb7, 0xed, 0x5b, 0xa4, 0x07, 0xf8, 0x01, 0xf8, 0x01, 0xf8, - 0x21, 0xc4, 0x2f, 0x24, 0x81, 0xb6, 0x8c, 0x86, 0x20, 0x49, 0x03, 0x69, 0xa4, 0x1e, 0x49, 0x72, - 0xff, 0x40, 0xda, 0x02, 0x66, 0x59, 0xf1, 0x7a, 0x13, 0x07, 0xc4, 0x52, 0xc1, 0x64, 0x08, 0x7c, - 0xa5, 0x32, 0xf0, 0x95, 0x79, 0x77, 0x5c, 0xa6, 0xaa, 0xcc, 0x16, 0x73, 0xf6, 0x17, 0xff, 0x53, - 0x6a, 0xb8, 0x8a, 0x40, 0x35, 0x98, 0x40, 0xfe, 0xb3, 0x54, 0xe6, 0xa1, 0x4a, 0xe6, 0x94, 0x24, - 0xd8, 0x47, 0x1a, 0x2e, 0xd2, 0x70, 0xb5, 0x83, 0x73, 0x82, 0x89, 0x00, 0x2a, 0x93, 0x00, 0xd6, - 0x4c, 0x00, 0x18, 0x09, 0x58, 0x02, 0xd4, 0xc4, 0xac, 0x44, 0x53, 0x5a, 0x57, 0xcc, 0x48, 0x20, - 0x6f, 0x1f, 0x0a, 0x23, 0x51, 0x0a, 0x43, 0x3a, 0x6f, 0x3f, 0x2c, 0x1c, 0x27, 0x98, 0xdf, 0x23, - 0x5d, 0x82, 0x7e, 0x4c, 0x39, 0x02, 0x03, 0x2e, 0x34, 0xb8, 0xd0, 0xe2, 0x71, 0xa1, 0x29, 0x8f, - 0xc0, 0x90, 0xac, 0x22, 0xdb, 0xc8, 0x76, 0x52, 0x55, 0x65, 0xc4, 0x82, 0x48, 0x26, 0x90, 0x94, - 0x82, 0x49, 0x2f, 0xa0, 0xd4, 0x82, 0xaa, 0x4d, 0x60, 0xb5, 0x09, 0xae, 0x16, 0x01, 0x56, 0xbf, - 0xeb, 0x13, 0x38, 0xe7, 0x94, 0x05, 0x3b, 0x24, 0x44, 0x36, 0xe3, 0x66, 0x85, 0x81, 0x89, 0x66, - 0xdd, 0x28, 0xde, 0x69, 0xb5, 0x0b, 0xbf, 0x0e, 0x25, 0xa0, 0x4f, 0x19, 0xe8, 0x52, 0x0a, 0xda, - 0x95, 0x83, 0x76, 0x25, 0xa1, 0x55, 0x59, 0xd0, 0x28, 0x0d, 0x22, 0xe5, 0xa1, 0x7e, 0x87, 0xdf, - 0xc9, 0xaf, 0xb4, 0xb3, 0x74, 0x56, 0xec, 0x7e, 0x99, 0x90, 0xa6, 0x96, 0xd9, 0x3a, 0x2b, 0x1b, - 0xa2, 0x67, 0xc6, 0x4e, 0xf8, 0x35, 0x1a, 0x66, 0xed, 0x4c, 0xff, 0xfc, 0x24, 0xa7, 0x78, 0xac, - 0x6f, 0xf6, 0x0e, 0xb1, 0x84, 0xc4, 0xb8, 0x0f, 0xd4, 0x33, 0x79, 0xd2, 0xbb, 0x13, 0xd4, 0xb3, - 0x7a, 0x52, 0xce, 0x13, 0x25, 0xec, 0x04, 0xfd, 0x6c, 0x9f, 0x94, 0xef, 0x44, 0x11, 0x3b, 0x41, - 0x3c, 0x0b, 0x28, 0xbd, 0xdb, 0x40, 0x3b, 0x23, 0x28, 0xe5, 0x82, 0x51, 0xc5, 0x4e, 0x68, 0x9b, - 0x29, 0x94, 0x72, 0xd6, 0x28, 0x63, 0x27, 0x88, 0x67, 0x10, 0xa5, 0x77, 0x1b, 0xc8, 0x67, 0x13, - 0xa5, 0xdb, 0x7c, 0xd0, 0xce, 0x2c, 0x4a, 0xef, 0x5e, 0x50, 0xcf, 0x32, 0x4a, 0xb9, 0xc6, 0xcc, - 0x61, 0x27, 0xe8, 0x67, 0x1f, 0xa5, 0x77, 0x27, 0x68, 0x67, 0x22, 0xa5, 0x59, 0x63, 0x92, 0xce, - 0x4a, 0x0a, 0x37, 0x82, 0x94, 0x62, 0x23, 0x73, 0x1d, 0x07, 0x28, 0x0a, 0xfe, 0xc8, 0x66, 0x2b, - 0xad, 0x30, 0x05, 0xe1, 0x00, 0x97, 0x63, 0x04, 0xbb, 0x10, 0xec, 0x9a, 0x7c, 0x01, 0x82, 0x5d, - 0x29, 0x08, 0x76, 0xd1, 0xcf, 0x70, 0x5a, 0x56, 0x03, 0x14, 0xb3, 0x9c, 0x42, 0x9a, 0x34, 0x33, - 0x9d, 0x08, 0x15, 0xfb, 0x5e, 0x13, 0x29, 0x88, 0x66, 0x3e, 0xcd, 0x4c, 0x0c, 0x65, 0x09, 0xc3, - 0x9a, 0x81, 0x50, 0x32, 0x55, 0x0d, 0x74, 0x3b, 0xae, 0x32, 0xd8, 0x90, 0x2c, 0xd3, 0x84, 0x3a, - 0xc3, 0x04, 0x83, 0x0d, 0xf7, 0x69, 0x4c, 0x91, 0x4e, 0x96, 0x00, 0x2d, 0x48, 0x3f, 0xd8, 0x50, - 0xbe, 0xba, 0x63, 0xa3, 0x11, 0xac, 0xd2, 0x94, 0x7b, 0x2e, 0x55, 0x7f, 0x84, 0x4a, 0x04, 0xb3, - 0x62, 0x31, 0x2b, 0x16, 0x2a, 0x15, 0x2a, 0x15, 0x2a, 0x55, 0x55, 0xa5, 0x86, 0x4a, 0x24, 0x8d, - 0x2a, 0x55, 0x68, 0x64, 0xe1, 0x6e, 0x7d, 0x2a, 0x30, 0xca, 0x70, 0xe7, 0x69, 0x51, 0x29, 0xd3, - 0x02, 0x94, 0x29, 0x94, 0x69, 0xaa, 0x94, 0x29, 0xca, 0x1d, 0x54, 0xc9, 0xc1, 0x03, 0x0c, 0x0f, - 0x70, 0x6c, 0xca, 0x82, 0xce, 0x39, 0x78, 0x8c, 0x72, 0x07, 0x94, 0x3b, 0xac, 0x7c, 0x0d, 0xca, - 0x1d, 0xb4, 0x48, 0x48, 0x8c, 0xfb, 0x80, 0x72, 0x07, 0x94, 0x3b, 0xac, 0xe5, 0x09, 0x94, 0x3b, - 0xa0, 0xdc, 0x01, 0xe5, 0x0e, 0x6b, 0x76, 0x02, 0xe5, 0x0e, 0x28, 0x77, 0x40, 0xb9, 0xc3, 0x7a, - 0x03, 0x8a, 0x72, 0x07, 0x94, 0x3b, 0xac, 0x55, 0x16, 0x28, 0x77, 0x40, 0xb9, 0xc3, 0x31, 0xca, - 0x1d, 0xd6, 0xef, 0x05, 0xca, 0x1d, 0x50, 0xee, 0xb0, 0x76, 0x27, 0x50, 0xee, 0x80, 0x72, 0x07, - 0x94, 0x3b, 0xec, 0x97, 0x0a, 0xca, 0x1d, 0x14, 0xc8, 0x21, 0xd8, 0x85, 0x60, 0xd7, 0xda, 0x2f, - 0x40, 0xb0, 0x8b, 0x40, 0xf6, 0x51, 0xee, 0xb0, 0x3f, 0x0a, 0x87, 0x56, 0xee, 0x30, 0xce, 0x9f, - 0xda, 0x57, 0x1e, 0x59, 0xac, 0xbd, 0x7a, 0xff, 0xcd, 0x5e, 0xe7, 0xf3, 0x48, 0x8e, 0x15, 0x05, - 0xcc, 0xb8, 0xb1, 0x03, 0x7e, 0xc5, 0xb9, 0x62, 0x03, 0xe0, 0x5b, 0xdb, 0xad, 0x39, 0x6c, 0xa8, - 0x33, 0x03, 0xe3, 0xed, 0xb1, 0xdb, 0x77, 0x1c, 0x85, 0xe4, 0xba, 0x5b, 0xeb, 0x07, 0x1d, 0xb1, - 0x3b, 0xbf, 0xcd, 0x7c, 0xd6, 0x7e, 0xf7, 0x3a, 0x21, 0x15, 0xeb, 0x61, 0x11, 0xc9, 0x91, 0x6e, - 0xf9, 0x31, 0x94, 0x32, 0x21, 0xfd, 0x7e, 0x8b, 0xbb, 0x53, 0x2f, 0xeb, 0xe8, 0x3d, 0x9a, 0x37, - 0xe3, 0xf7, 0x68, 0x3e, 0x8c, 0xbe, 0xf8, 0xf3, 0xe8, 0x7b, 0x9b, 0x9f, 0xa7, 0xdf, 0x86, 0x21, - 0x36, 0xda, 0x8e, 0x34, 0x11, 0x03, 0x2a, 0xa4, 0x72, 0x63, 0x95, 0x72, 0x61, 0x95, 0x07, 0x53, - 0x14, 0x30, 0x98, 0x62, 0x9f, 0x48, 0x3c, 0xcb, 0x83, 0x29, 0xa4, 0xc6, 0x3a, 0xad, 0x30, 0x8b, - 0xc4, 0x78, 0x27, 0xa2, 0x6b, 0x33, 0x06, 0x52, 0xc4, 0x73, 0xcd, 0xc5, 0x40, 0x0a, 0xc2, 0x6b, - 0x29, 0x85, 0xdc, 0x1c, 0x67, 0x77, 0x9a, 0xab, 0x8e, 0x31, 0x9b, 0x97, 0x04, 0xb4, 0x48, 0x76, - 0x8a, 0x6e, 0xc7, 0xd6, 0xec, 0x1c, 0xe9, 0x1c, 0xdc, 0x95, 0x3d, 0xbc, 0x20, 0xa4, 0x49, 0x3d, - 0xb2, 0x34, 0x24, 0x9c, 0xb6, 0xf9, 0xb8, 0xd3, 0x3f, 0x8d, 0x24, 0x79, 0xde, 0xf4, 0x30, 0x67, - 0x05, 0xcc, 0x89, 0xb9, 0xba, 0x29, 0x9e, 0xab, 0x4b, 0x2c, 0xaa, 0x18, 0xad, 0x3d, 0x51, 0x0d, - 0x6d, 0xaf, 0x6b, 0xd9, 0xae, 0x39, 0xf2, 0xd2, 0x24, 0x6c, 0xb2, 0xf6, 0x0d, 0x73, 0x3b, 0x23, - 0x1f, 0x48, 0xe2, 0x8c, 0xfe, 0xad, 0xed, 0x6a, 0x08, 0x8e, 0x91, 0x86, 0x30, 0x43, 0xb2, 0xa3, - 0x52, 0x17, 0xf5, 0xe2, 0xdf, 0x15, 0xba, 0xbf, 0xfb, 0x56, 0x8b, 0xdb, 0x9e, 0xfb, 0xde, 0xee, - 0xd8, 0x23, 0x6f, 0x6c, 0x8e, 0x2e, 0x10, 0x46, 0x68, 0x4e, 0x6e, 0xad, 0x1f, 0xa9, 0x3b, 0xaa, - 0x42, 0xb9, 0x98, 0xa2, 0xc3, 0x4a, 0x8a, 0x42, 0x4e, 0xe2, 0x2c, 0xff, 0x93, 0x93, 0x93, 0xaf, - 0x96, 0xf9, 0xf7, 0x95, 0xf9, 0x57, 0xce, 0xbc, 0x6c, 0x36, 0xe6, 0xfe, 0xe3, 0xf1, 0xd1, 0x6c, - 0x36, 0x4e, 0x7f, 0xe6, 0xde, 0x54, 0xf2, 0x83, 0xd3, 0xdf, 0x66, 0xbf, 0x6f, 0x0c, 0xf1, 0xf0, - 0x3f, 0x65, 0x9e, 0xfa, 0xed, 0xf4, 0xd7, 0xe3, 0xe3, 0x19, 0x26, 0xd8, 0x6b, 0xd0, 0x2e, 0xc6, - 0xc4, 0xa7, 0xde, 0xf3, 0x7c, 0x02, 0x87, 0xdd, 0x3c, 0x31, 0xd9, 0xb1, 0x9c, 0xec, 0xd9, 0xea, - 0x3b, 0x23, 0xf7, 0x4d, 0x39, 0x5f, 0x82, 0xf7, 0x0f, 0xde, 0x3f, 0x78, 0xff, 0xc4, 0xf8, 0x65, - 0x28, 0x7d, 0xa6, 0xdb, 0xef, 0x3e, 0x31, 0x9f, 0xc0, 0x09, 0x58, 0x51, 0x20, 0xf1, 0x60, 0xb9, - 0x9d, 0x44, 0x38, 0x01, 0x29, 0x51, 0x2d, 0x75, 0x42, 0xde, 0x14, 0x1a, 0x51, 0xd1, 0xd3, 0x00, - 0x88, 0x28, 0x12, 0x2e, 0x29, 0xd1, 0xaa, 0xae, 0x23, 0xa8, 0x94, 0xcb, 0xc5, 0x72, 0x82, 0x8f, - 0x01, 0xf0, 0x65, 0x65, 0x9b, 0x83, 0x91, 0x69, 0x0b, 0x3d, 0x80, 0xea, 0x73, 0xf0, 0x17, 0xe9, - 0x01, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x08, 0xf1, 0x0b, 0x49, 0xa0, 0x2d, 0xa3, 0x21, 0x48, 0xd2, - 0x40, 0x1a, 0xa9, 0x47, 0x92, 0xdc, 0x3f, 0x90, 0xb6, 0x80, 0x59, 0x56, 0xbc, 0xde, 0xc4, 0x01, - 0xb1, 0x54, 0x30, 0x19, 0x02, 0x5f, 0xa9, 0x0c, 0x7c, 0x65, 0xde, 0x1d, 0x77, 0x40, 0xb9, 0xb8, - 0xe2, 0xb5, 0x08, 0x02, 0x79, 0xb8, 0x47, 0x84, 0xfb, 0x37, 0xad, 0x25, 0x10, 0xc8, 0x91, 0x92, - 0x2b, 0x17, 0x50, 0x2a, 0x0f, 0x50, 0x2a, 0x07, 0x90, 0x4b, 0xff, 0x8f, 0xba, 0x7f, 0x92, 0x7c, - 0x47, 0xca, 0x6f, 0x86, 0x50, 0x66, 0x76, 0xc4, 0x5c, 0xfd, 0x68, 0xec, 0xbb, 0x9b, 0x19, 0xb7, - 0x7f, 0x62, 0xc7, 0x36, 0x8b, 0x6e, 0xaf, 0xe2, 0xb6, 0x6e, 0x5f, 0xf3, 0xe6, 0x95, 0xac, 0xff, - 0x97, 0x0d, 0x6b, 0x8b, 0xba, 0x26, 0xd1, 0xb5, 0x6c, 0xe1, 0x82, 0xad, 0xa7, 0xbe, 0x7e, 0xd1, - 0xab, 0x4b, 0x5a, 0xb3, 0x1c, 0xa3, 0xcb, 0xba, 0x9e, 0xbf, 0xb9, 0x6a, 0x38, 0x84, 0x61, 0x93, - 0xcf, 0x6d, 0xd8, 0x90, 0xed, 0x99, 0xfb, 0x3b, 0xef, 0xff, 0x51, 0xee, 0xf7, 0xf3, 0xf7, 0xf7, - 0xe0, 0x75, 0x1b, 0x14, 0x8c, 0x7a, 0x3f, 0x17, 0xbe, 0x7f, 0x0b, 0xdf, 0xaf, 0x97, 0xef, 0xcf, - 0xc3, 0xf7, 0x26, 0x62, 0xc1, 0x5d, 0x99, 0xec, 0x46, 0x6b, 0xba, 0xe7, 0x3b, 0x36, 0x61, 0xba, - 0xad, 0x93, 0xcf, 0xef, 0x58, 0x50, 0xb4, 0x12, 0x8d, 0xc8, 0x0e, 0x1f, 0x11, 0xc7, 0x4e, 0x74, - 0x06, 0x90, 0x75, 0xd4, 0x48, 0x3b, 0x64, 0xa4, 0x1d, 0x2f, 0x42, 0x0c, 0x92, 0x6c, 0x7d, 0x3c, - 0x56, 0x10, 0x91, 0x66, 0x56, 0x6d, 0x51, 0xc3, 0x5b, 0x35, 0x60, 0x94, 0x8a, 0x24, 0xa1, 0x0a, - 0x24, 0x61, 0x76, 0x2e, 0x80, 0x9d, 0x13, 0xc6, 0xce, 0x51, 0x2b, 0x7a, 0x8c, 0xde, 0xb7, 0xd7, - 0xc0, 0x6e, 0x59, 0x4e, 0xf4, 0xed, 0x0b, 0xe3, 0x8f, 0xd3, 0x27, 0xa3, 0x02, 0x72, 0x21, 0x67, - 0xb9, 0xb0, 0x73, 0x5c, 0xc6, 0x19, 0x2e, 0xce, 0x6c, 0xaa, 0xce, 0x6e, 0x65, 0xe7, 0xb6, 0xb2, - 0x33, 0x5b, 0x8a, 0x19, 0xf5, 0x5c, 0xd1, 0x84, 0x9d, 0xd1, 0xe1, 0x79, 0xf5, 0x6d, 0x97, 0x57, - 0x44, 0xb2, 0x46, 0xa6, 0xdc, 0x27, 0xe0, 0xde, 0x92, 0x0c, 0x6b, 0x4b, 0x5c, 0xd1, 0x55, 0xc2, - 0xd6, 0xaa, 0x31, 0x28, 0xc5, 0xb0, 0x34, 0x45, 0xfc, 0x53, 0x26, 0x1e, 0xa8, 0x12, 0x66, 0xa6, - 0xda, 0xb2, 0xfc, 0x45, 0xa9, 0x54, 0xa9, 0x96, 0x4a, 0xb9, 0x6a, 0xb1, 0x9a, 0xbb, 0x2c, 0x97, - 0xf3, 0x15, 0xd9, 0x36, 0xf5, 0x24, 0xbb, 0xa8, 0xc9, 0x2b, 0xd3, 0xa0, 0xba, 0x2e, 0x47, 0xb0, - 0xe4, 0x3e, 0x1b, 0xdd, 0x57, 0xdb, 0xe2, 0xc6, 0x28, 0x7c, 0x12, 0xc6, 0x08, 0xc6, 0x08, 0xc6, - 0x08, 0xc6, 0x08, 0xc6, 0x08, 0xc6, 0x28, 0xa5, 0xbe, 0x82, 0x08, 0x41, 0x96, 0xa4, 0x7a, 0x6c, - 0xb7, 0xba, 0x43, 0x37, 0x3b, 0x6c, 0x6f, 0xc7, 0x8f, 0x29, 0xf9, 0x6b, 0x83, 0xc0, 0xea, 0xb0, - 0x20, 0x8a, 0xc7, 0x76, 0xf2, 0xc9, 0x64, 0xf8, 0x6c, 0x77, 0xbc, 0x4e, 0xb2, 0x1d, 0xb7, 0xe1, - 0xcb, 0xc3, 0x7b, 0x4b, 0xe0, 0xee, 0x8a, 0xc0, 0x0a, 0xe9, 0xf5, 0x79, 0xed, 0x66, 0x95, 0x98, - 0x1d, 0x5f, 0xc2, 0x9d, 0x61, 0x65, 0x3b, 0xbf, 0x26, 0xfd, 0xae, 0x21, 0xc0, 0x76, 0xd9, 0xbb, - 0x70, 0x44, 0x67, 0xcb, 0xa4, 0xdd, 0x3a, 0xe4, 0x7b, 0x90, 0xca, 0xf4, 0x18, 0x15, 0xec, 0x21, - 0x9a, 0x5e, 0x04, 0x36, 0x66, 0x07, 0x8d, 0xf1, 0x9a, 0x36, 0x7b, 0xea, 0x77, 0x4c, 0xe6, 0x72, - 0xdf, 0x66, 0x41, 0x74, 0x4b, 0xb6, 0xf8, 0x18, 0x0c, 0x1a, 0x0c, 0xda, 0x7a, 0xc6, 0x0a, 0x98, - 0xff, 0x62, 0x8b, 0x6c, 0xe4, 0x22, 0x83, 0x4d, 0x1f, 0x17, 0x33, 0x6d, 0x79, 0x98, 0x36, 0x98, - 0x36, 0x59, 0xc6, 0x15, 0x05, 0xf7, 0x6a, 0x60, 0x5f, 0x91, 0x85, 0xa5, 0x59, 0x59, 0x85, 0xa5, - 0x89, 0x58, 0x5b, 0x95, 0xc5, 0xc9, 0x58, 0x9d, 0x8c, 0xe5, 0xe9, 0x58, 0x5f, 0xd2, 0x71, 0x15, - 0x57, 0x9f, 0x4d, 0xe6, 0x5a, 0x4f, 0x8e, 0x40, 0x5c, 0x64, 0x23, 0xe7, 0x4c, 0x09, 0xa9, 0x57, - 0xed, 0x3f, 0x5b, 0x4e, 0xc0, 0x50, 0x38, 0xa7, 0x2a, 0x8c, 0x54, 0x42, 0x49, 0x2e, 0x9c, 0xe4, - 0x42, 0x4a, 0x2f, 0xac, 0x72, 0x42, 0xab, 0xe0, 0xe9, 0x3f, 0xa6, 0x2d, 0xa1, 0x7b, 0xf2, 0x3c, - 0x87, 0x59, 0x2e, 0x45, 0xfd, 0x5c, 0x3e, 0xc9, 0xb5, 0xbb, 0x82, 0x90, 0x74, 0x8b, 0xe3, 0x45, - 0x04, 0x9c, 0x42, 0xe9, 0x40, 0xe9, 0x40, 0xe9, 0xac, 0x70, 0x8e, 0xdd, 0x66, 0x2e, 0xb7, 0xf9, - 0xab, 0xcf, 0x9e, 0x29, 0x14, 0x8f, 0x42, 0x1f, 0x05, 0xe3, 0xe3, 0xe4, 0x55, 0xde, 0x59, 0x01, - 0x01, 0x0f, 0x4e, 0x17, 0xf8, 0xbe, 0xf6, 0xee, 0xcb, 0x87, 0xe6, 0xe7, 0xda, 0xc3, 0x7f, 0x3e, - 0x5e, 0xd7, 0x62, 0x3f, 0xdf, 0x03, 0xad, 0x1e, 0x0b, 0x1d, 0x67, 0x0b, 0x7e, 0xaa, 0xf3, 0x05, - 0xa7, 0x42, 0x24, 0xa7, 0x9a, 0xfc, 0xf6, 0x08, 0x8d, 0x71, 0x90, 0x34, 0x49, 0x8a, 0xa6, 0x48, - 0xd2, 0x04, 0xe1, 0xb2, 0x89, 0xcb, 0xa6, 0xb8, 0xe8, 0x4b, 0x9b, 0x8c, 0xf0, 0xe4, 0x1d, 0x66, - 0x3d, 0xcb, 0x99, 0x89, 0xd0, 0x3c, 0x54, 0x25, 0x9e, 0xbd, 0x9f, 0x68, 0x9b, 0xb3, 0xb3, 0x89, - 0xc6, 0x38, 0x9f, 0x4a, 0x1b, 0x06, 0xc0, 0x48, 0x69, 0x8d, 0x02, 0xb4, 0x06, 0xb4, 0x06, 0x5c, - 0x54, 0xb8, 0x2d, 0xe2, 0xb6, 0x88, 0xdb, 0x22, 0x5c, 0x54, 0x70, 0x51, 0x41, 0xe9, 0x40, 0xe9, - 0xc0, 0x45, 0x05, 0x17, 0x15, 0x5c, 0x54, 0xcb, 0x2e, 0xaa, 0xf4, 0x35, 0x38, 0x12, 0xcc, 0xd8, - 0x41, 0x8f, 0x23, 0x75, 0xd6, 0x23, 0x65, 0x39, 0xe5, 0x1e, 0x47, 0xb7, 0x93, 0x2f, 0x69, 0xbe, - 0x1f, 0x92, 0xfd, 0x2c, 0xe2, 0x2a, 0x49, 0x7d, 0x9a, 0xe6, 0x62, 0x56, 0x24, 0xba, 0x6b, 0x68, - 0x02, 0x67, 0xc8, 0xce, 0x54, 0x75, 0x97, 0x4c, 0xcb, 0x8e, 0xc4, 0xf3, 0x32, 0xa7, 0x0f, 0x6a, - 0xce, 0xc8, 0x2c, 0x20, 0x23, 0x93, 0x1c, 0xe1, 0xa7, 0x3e, 0x23, 0xd3, 0xea, 0xf5, 0xcc, 0x89, - 0xb5, 0x91, 0xf4, 0x77, 0x87, 0x14, 0x10, 0x28, 0x83, 0xcb, 0x3b, 0xb3, 0x81, 0xb2, 0x80, 0xfb, - 0xdb, 0xfb, 0x14, 0xee, 0x54, 0xd7, 0x17, 0x09, 0x08, 0x6d, 0x75, 0x03, 0x85, 0xe4, 0xeb, 0xe1, - 0xc3, 0x90, 0x71, 0xc8, 0x38, 0x64, 0x3c, 0xe9, 0x32, 0x6e, 0xb7, 0x95, 0xa4, 0xdc, 0x6e, 0x43, - 0xce, 0x21, 0xe7, 0x90, 0xf3, 0x64, 0xcb, 0x79, 0xcf, 0xb7, 0x3d, 0xa1, 0xea, 0xf6, 0x95, 0x7d, - 0x08, 0x29, 0x40, 0xda, 0x21, 0xed, 0x99, 0x95, 0xf6, 0xbe, 0xed, 0xf2, 0x0b, 0x05, 0x61, 0x97, - 0x88, 0x2d, 0x29, 0x8e, 0x4b, 0x54, 0x88, 0xaf, 0x51, 0x8c, 0x47, 0x24, 0x9a, 0xc9, 0x47, 0x35, - 0x0e, 0x91, 0x72, 0xfe, 0x9e, 0xc2, 0x70, 0x1f, 0x92, 0xb1, 0x87, 0xd4, 0x5b, 0x5b, 0x28, 0x97, - 0x13, 0xb4, 0xb9, 0x31, 0xc5, 0x2a, 0x1b, 0x89, 0x30, 0xbe, 0x5e, 0x4b, 0x05, 0x65, 0x4f, 0x9e, - 0x87, 0xe1, 0x85, 0xe1, 0x05, 0xcc, 0x8e, 0x1f, 0x66, 0x93, 0xfa, 0xdc, 0x6b, 0x3f, 0x46, 0x8a, - 0x33, 0xba, 0xad, 0x97, 0x0f, 0x72, 0x78, 0x2d, 0x93, 0xfd, 0xe0, 0x6f, 0x39, 0x73, 0x58, 0x97, - 0x71, 0xff, 0xd5, 0xb4, 0xb8, 0xd7, 0xb5, 0x5b, 0x6a, 0x51, 0x8f, 0x51, 0x0e, 0xad, 0x42, 0xd8, - 0x83, 0x3a, 0xd6, 0xd1, 0x48, 0x5a, 0x68, 0x7f, 0x14, 0xf2, 0x3d, 0x17, 0x8b, 0xd2, 0x1d, 0xef, - 0x0e, 0xe6, 0x4f, 0x7e, 0x30, 0x62, 0xec, 0xbe, 0x8c, 0x8e, 0x68, 0x08, 0x52, 0xa2, 0x23, 0x5a, - 0xe4, 0x67, 0x0e, 0xac, 0x23, 0x5a, 0xaa, 0xbb, 0xd2, 0xee, 0xee, 0xb1, 0xba, 0x55, 0x1b, 0xab, - 0x74, 0xa6, 0x75, 0x79, 0x6f, 0x77, 0x53, 0xda, 0xe1, 0x87, 0x30, 0x43, 0x0c, 0x33, 0xc4, 0x30, - 0x43, 0x8c, 0xcc, 0xbe, 0x25, 0x79, 0xe8, 0xd2, 0xb8, 0xc4, 0xcd, 0x74, 0x79, 0xcf, 0xb4, 0xfa, - 0x23, 0xed, 0x25, 0x08, 0xb8, 0x96, 0x09, 0x44, 0x4d, 0x00, 0x92, 0xab, 0x8d, 0xc3, 0xb4, 0x8c, - 0x63, 0x4c, 0xcb, 0xa0, 0x42, 0x69, 0xe2, 0x15, 0x65, 0x82, 0x15, 0x64, 0x34, 0x97, 0x21, 0xd1, - 0x72, 0x56, 0xc9, 0xf2, 0x55, 0x88, 0x24, 0x44, 0x12, 0x22, 0x19, 0x4d, 0x24, 0x87, 0xd6, 0x2e, - 0x18, 0x31, 0x8a, 0x69, 0xb5, 0xdb, 0x3e, 0x0b, 0x02, 0x71, 0xe9, 0x5c, 0x43, 0x03, 0x02, 0x07, - 0x81, 0x8b, 0x59, 0xe0, 0xec, 0x9e, 0x20, 0xf7, 0x2d, 0xc8, 0xdc, 0xa5, 0xc0, 0x33, 0x93, 0x77, - 0xd4, 0x3e, 0x35, 0x6a, 0xb6, 0xb2, 0x97, 0x92, 0xc4, 0xda, 0x56, 0x9d, 0xfb, 0x72, 0x7d, 0x63, - 0x38, 0xf3, 0x5d, 0xe9, 0xc8, 0xba, 0xf1, 0xdf, 0x93, 0x93, 0xaf, 0x39, 0xf3, 0xb2, 0xf1, 0xeb, - 0x6b, 0xde, 0xbc, 0x6c, 0x8c, 0x7f, 0xcc, 0x8f, 0xfe, 0x1a, 0xff, 0x5c, 0xf8, 0x9a, 0x33, 0x4b, - 0xd3, 0x9f, 0xcb, 0x5f, 0x73, 0x66, 0xb9, 0x71, 0xfa, 0xf8, 0x78, 0x76, 0xfa, 0xb3, 0x38, 0x10, - 0x7f, 0xf0, 0x1f, 0x86, 0xee, 0xd8, 0xe6, 0x9b, 0x18, 0x0f, 0xbd, 0x92, 0xf6, 0x43, 0xb7, 0xcc, - 0xe7, 0x2b, 0xf3, 0xf7, 0xc6, 0xcf, 0xfc, 0x9b, 0xd2, 0xe0, 0xed, 0xe9, 0xcf, 0xea, 0x60, 0xf9, - 0x97, 0xbf, 0xd6, 0x7d, 0x2c, 0xff, 0xa6, 0x3a, 0x78, 0xbb, 0xe1, 0x5f, 0x2a, 0x83, 0xb7, 0x11, - 0x69, 0x94, 0x07, 0x27, 0x2b, 0x1f, 0x1d, 0xfe, 0xbe, 0xb0, 0xe9, 0x81, 0xd2, 0x86, 0x07, 0x8a, - 0x9b, 0x1e, 0x28, 0x6e, 0x78, 0x60, 0xe3, 0x2b, 0x15, 0x36, 0x3c, 0x50, 0x1e, 0xfc, 0x5a, 0xf9, - 0xfc, 0xc9, 0xfa, 0x8f, 0x56, 0x06, 0xa7, 0xbf, 0x36, 0xfd, 0x5b, 0x75, 0xf0, 0xeb, 0xed, 0x69, - 0x0c, 0x22, 0x80, 0xc1, 0x62, 0xa3, 0xbf, 0x5c, 0xde, 0xd3, 0x38, 0xd1, 0x62, 0x88, 0xa9, 0xbe, - 0xb3, 0x57, 0x81, 0x61, 0x16, 0xe1, 0x13, 0x70, 0x89, 0xc1, 0x25, 0xb6, 0xc0, 0x44, 0x72, 0x88, - 0x7e, 0xf8, 0x60, 0x36, 0x26, 0x56, 0x00, 0xc6, 0xc7, 0x0e, 0xe3, 0x31, 0xa7, 0x82, 0x8a, 0x91, - 0xd5, 0x19, 0x5a, 0x95, 0xb1, 0xc9, 0x18, 0x9c, 0x8c, 0xd1, 0x49, 0x18, 0x5e, 0x1c, 0xcf, 0x1c, - 0xc7, 0xd9, 0xfa, 0xef, 0x3b, 0x7b, 0x35, 0x6d, 0x82, 0xce, 0x7f, 0x13, 0x3a, 0xe8, 0x9d, 0x25, - 0x2f, 0x38, 0x54, 0x02, 0x44, 0x2e, 0x48, 0xe4, 0x02, 0x45, 0x2a, 0x58, 0x72, 0x02, 0x26, 0x29, - 0x68, 0xf2, 0x0e, 0xa4, 0x8d, 0xfc, 0xd2, 0xb7, 0x5d, 0x9e, 0xaf, 0x10, 0x34, 0xcb, 0xaa, 0x28, - 0x90, 0x50, 0xab, 0x6b, 0x90, 0xf7, 0x43, 0xac, 0xbc, 0x08, 0x45, 0x9d, 0x03, 0x91, 0x5a, 0x59, - 0x21, 0x47, 0x54, 0xf7, 0x10, 0xd2, 0x23, 0x4c, 0xd1, 0x57, 0x64, 0xe7, 0xc5, 0x23, 0x20, 0xa8, - 0x87, 0xd0, 0x7d, 0x04, 0x95, 0x72, 0xb9, 0x58, 0x4e, 0xf0, 0x31, 0x1c, 0xed, 0xe7, 0xe9, 0x46, - 0x82, 0xfb, 0x74, 0x0e, 0x11, 0x02, 0x57, 0xd1, 0x9a, 0x0b, 0x58, 0x63, 0x44, 0x09, 0x68, 0x03, - 0x68, 0x03, 0x68, 0x43, 0x88, 0x5f, 0x32, 0xdf, 0x9f, 0xf3, 0x53, 0xfd, 0xbe, 0x79, 0xf5, 0xa5, - 0xfe, 0x47, 0xb3, 0xfe, 0xe7, 0x7d, 0xcd, 0xa0, 0x28, 0xc7, 0x0b, 0x94, 0x71, 0x11, 0x0d, 0x36, - 0x5a, 0xbf, 0xcc, 0xdb, 0xf7, 0x65, 0x63, 0xcf, 0xf6, 0xaa, 0x91, 0xfc, 0x2e, 0xa8, 0x92, 0xf6, - 0xea, 0x65, 0x02, 0x37, 0x08, 0x0c, 0xd6, 0x98, 0x14, 0x2c, 0x16, 0x2c, 0x16, 0x2c, 0x96, 0x10, - 0xbf, 0x48, 0x57, 0x1b, 0xae, 0x18, 0xab, 0x0b, 0xf4, 0x5c, 0x16, 0x0c, 0x3c, 0x4e, 0x83, 0x7d, - 0xd3, 0x1f, 0x12, 0x34, 0x06, 0x4c, 0xd2, 0x71, 0xa9, 0xe6, 0xb0, 0x4c, 0x6b, 0xa1, 0x36, 0x3c, - 0xf9, 0x84, 0x0a, 0x15, 0xa3, 0xbf, 0xd6, 0xb3, 0xea, 0xca, 0xe8, 0xaf, 0x89, 0x88, 0x61, 0xf2, - 0x97, 0x94, 0xaa, 0x28, 0x40, 0x55, 0x40, 0x55, 0x6c, 0x7d, 0x43, 0x04, 0xfd, 0x70, 0xa9, 0xc1, - 0xa5, 0x26, 0x95, 0x97, 0x1a, 0x04, 0xfd, 0xe6, 0x5f, 0x04, 0x41, 0x3f, 0x35, 0xef, 0x1d, 0x82, - 0x7e, 0x89, 0x38, 0x06, 0x04, 0xfd, 0xd6, 0x22, 0x0d, 0x04, 0xfd, 0x80, 0x36, 0x80, 0x36, 0xf6, - 0x89, 0x36, 0x10, 0xf4, 0x13, 0x36, 0x37, 0x08, 0xfa, 0x69, 0xb1, 0x3a, 0xc7, 0x08, 0xfa, 0xc1, - 0x62, 0xc1, 0x62, 0xc1, 0x62, 0xed, 0xe0, 0x17, 0x04, 0xfd, 0x96, 0x78, 0x62, 0x9f, 0x41, 0xbf, - 0xf4, 0x0d, 0x56, 0x15, 0x72, 0x4c, 0x62, 0xae, 0x2a, 0x01, 0xa7, 0x29, 0x71, 0x98, 0x72, 0xeb, - 0xd5, 0x4f, 0xbc, 0x37, 0xfc, 0xdf, 0xf0, 0xf4, 0x33, 0x5f, 0x0c, 0x1c, 0x16, 0xe0, 0xea, 0x18, - 0x99, 0xca, 0xfc, 0x17, 0xe6, 0x0b, 0x54, 0x03, 0x4f, 0x1f, 0x40, 0x31, 0x30, 0x8a, 0x81, 0xe7, - 0x59, 0x48, 0xa6, 0x0f, 0xf1, 0xe8, 0x39, 0x94, 0x02, 0xc7, 0x88, 0x65, 0x0f, 0xba, 0x14, 0x58, - 0xb4, 0x0f, 0xd5, 0xca, 0x39, 0xcb, 0x75, 0x4d, 0x41, 0x0a, 0xd1, 0x5e, 0xae, 0x6b, 0x48, 0x21, - 0x12, 0x39, 0xef, 0xc4, 0xa4, 0x10, 0x4d, 0x65, 0x2c, 0x01, 0x39, 0x44, 0x68, 0x1d, 0x00, 0x6d, - 0x91, 0x45, 0x6d, 0x21, 0x9d, 0x45, 0x24, 0x6b, 0x40, 0x89, 0x0c, 0x29, 0xfc, 0xa4, 0xf0, 0x93, - 0x1e, 0xbc, 0x9f, 0xf4, 0x9b, 0x17, 0x70, 0x0a, 0x2f, 0xe9, 0xa5, 0x02, 0x0d, 0xa9, 0x3e, 0x95, - 0xcb, 0x7f, 0x08, 0xb2, 0x88, 0x94, 0x3a, 0x74, 0xea, 0xdc, 0x21, 0xda, 0x9d, 0xa2, 0xdb, 0xb1, - 0x35, 0x3b, 0xa7, 0xd4, 0x01, 0x74, 0xe7, 0x1e, 0x5e, 0x10, 0xd2, 0x54, 0x6d, 0x1e, 0xb9, 0x91, - 0x70, 0xd2, 0x3b, 0x89, 0x6e, 0xfa, 0xd3, 0x20, 0xa1, 0x34, 0x78, 0x93, 0x60, 0xe6, 0xac, 0x80, - 0x39, 0xd1, 0xf1, 0x34, 0x45, 0x1d, 0x4f, 0x35, 0x8b, 0xea, 0xd1, 0x7e, 0xdf, 0x43, 0x51, 0x55, - 0x10, 0x5a, 0xfc, 0xb6, 0xd7, 0xb5, 0x6c, 0xd7, 0x1c, 0x05, 0x85, 0x08, 0x4d, 0x3e, 0x81, 0x46, - 0x30, 0x6e, 0x98, 0xdb, 0x19, 0x39, 0x35, 0x12, 0x67, 0xf4, 0x29, 0x93, 0xae, 0x89, 0xee, 0x62, - 0x1b, 0xc9, 0x4e, 0x33, 0x80, 0xf3, 0xc4, 0x74, 0x35, 0x64, 0x01, 0x13, 0x1b, 0xd2, 0x63, 0xea, - 0xe4, 0xec, 0xb8, 0x8e, 0xaa, 0x50, 0x2e, 0xa6, 0xe8, 0xb0, 0x92, 0xa2, 0x90, 0x09, 0x34, 0x0e, - 0x35, 0xf6, 0x30, 0x4e, 0x4e, 0x4e, 0xbe, 0x5a, 0xe6, 0xdf, 0x57, 0xe6, 0x5f, 0x39, 0xf3, 0xb2, - 0xd9, 0x98, 0xfb, 0x8f, 0xc7, 0x47, 0xb3, 0xd9, 0x38, 0xfd, 0x99, 0x7b, 0x53, 0xc9, 0x0f, 0x4e, - 0x7f, 0x9b, 0xfd, 0xbe, 0x31, 0xc4, 0xc3, 0xff, 0x94, 0x79, 0xea, 0xb7, 0xd3, 0x5f, 0x8f, 0x8f, - 0x67, 0xc6, 0xbe, 0x2d, 0x5b, 0x26, 0x73, 0xf1, 0xad, 0x20, 0xf0, 0x5a, 0xf6, 0x28, 0x2b, 0x81, - 0x28, 0x27, 0x7f, 0x85, 0xa2, 0xa4, 0x3f, 0x64, 0x6e, 0x90, 0xd2, 0xe7, 0xda, 0xc3, 0x7f, 0x6a, - 0x0f, 0x70, 0x05, 0xc2, 0x15, 0x08, 0x57, 0xa0, 0x18, 0xbf, 0x30, 0xb7, 0xdf, 0x65, 0xfe, 0x38, - 0xe9, 0x88, 0xc0, 0x23, 0x58, 0x52, 0xa0, 0x21, 0x36, 0x5e, 0x77, 0x3f, 0xda, 0xd0, 0x7e, 0xea, - 0xfb, 0x01, 0x57, 0xd7, 0x81, 0x13, 0x3a, 0xea, 0x9a, 0x4f, 0x64, 0x84, 0x1c, 0x14, 0x1f, 0x14, - 0x1f, 0x14, 0x9f, 0xf4, 0x08, 0xbc, 0x8d, 0x4a, 0x2f, 0x9f, 0x60, 0x85, 0xd5, 0xf3, 0x7c, 0x02, - 0x75, 0x35, 0xa2, 0xa2, 0xae, 0xac, 0xf2, 0x85, 0x22, 0x54, 0x15, 0x54, 0x15, 0x54, 0x95, 0xb8, - 0xf4, 0x99, 0x6e, 0xbf, 0xfb, 0x14, 0x39, 0xd3, 0x75, 0x9b, 0x08, 0xa1, 0xf7, 0x83, 0x5e, 0x9f, - 0x16, 0x7a, 0x3f, 0x24, 0xe7, 0x08, 0xd0, 0xfb, 0x21, 0x75, 0xfe, 0xa6, 0xa1, 0x1d, 0x62, 0x3e, - 0x01, 0x64, 0x19, 0xd3, 0xc1, 0x0d, 0x0b, 0xb0, 0x05, 0xb0, 0x05, 0x37, 0x2c, 0x7d, 0x0a, 0xeb, - 0x85, 0xf9, 0x81, 0x6c, 0x85, 0xed, 0xc2, 0x7e, 0x4d, 0x09, 0xa9, 0xab, 0xac, 0x12, 0xd4, 0x15, - 0xd4, 0x15, 0xd4, 0x95, 0x18, 0xbf, 0xf4, 0x6d, 0x97, 0x5f, 0x10, 0x28, 0xab, 0x32, 0xee, 0x57, - 0xf1, 0x80, 0xfb, 0x3c, 0xee, 0x57, 0xfb, 0x3e, 0x82, 0x12, 0xee, 0x56, 0x7b, 0xbb, 0x5b, 0x65, - 0xa6, 0x73, 0xc8, 0xa4, 0x1b, 0xc0, 0xe4, 0xef, 0x04, 0x0d, 0x0b, 0x40, 0xff, 0x6f, 0xcd, 0x48, - 0x0b, 0x95, 0x7b, 0x7b, 0x10, 0x6d, 0x54, 0xee, 0xe1, 0x92, 0x82, 0x4b, 0x0a, 0x2a, 0xf7, 0xa4, - 0x69, 0xa0, 0x72, 0x2f, 0xd6, 0x9d, 0xa2, 0xdb, 0xb1, 0x35, 0x3b, 0x87, 0xca, 0x3d, 0x54, 0xee, - 0x25, 0x97, 0x39, 0x51, 0xb9, 0x87, 0xca, 0x3d, 0x54, 0xee, 0xd1, 0x78, 0x34, 0x8e, 0x51, 0xb9, - 0x17, 0x83, 0x46, 0x40, 0xe5, 0x5e, 0x12, 0x5d, 0xbc, 0x3a, 0xfd, 0x8c, 0xc4, 0x86, 0xf4, 0x18, - 0x95, 0x7b, 0x71, 0x1c, 0x16, 0x2a, 0xf7, 0x36, 0x13, 0x44, 0xe5, 0x9e, 0xee, 0xef, 0x45, 0xe5, - 0x1e, 0x2a, 0xf7, 0xe0, 0x0a, 0x84, 0x2b, 0x50, 0x89, 0x5f, 0x50, 0xb9, 0x27, 0xf4, 0x8e, 0xa8, - 0xdc, 0x83, 0xe2, 0x83, 0xe2, 0xcb, 0x82, 0xe2, 0x3b, 0x90, 0xbc, 0x52, 0xef, 0xf9, 0x39, 0x60, - 0x04, 0x0a, 0x6b, 0x42, 0x07, 0x8a, 0x06, 0x8a, 0x06, 0x8a, 0x46, 0x88, 0x5f, 0xfa, 0xb6, 0xcb, - 0x2b, 0x25, 0x02, 0x3d, 0x73, 0x81, 0x94, 0x50, 0xad, 0xce, 0x28, 0x94, 0xdc, 0x25, 0xe7, 0x08, - 0xf2, 0x17, 0xa5, 0x52, 0xa5, 0x5a, 0x2a, 0xe5, 0xaa, 0xc5, 0x6a, 0xee, 0xb2, 0x5c, 0xce, 0x57, - 0xf2, 0xa8, 0xc0, 0x4b, 0x95, 0xdf, 0xa8, 0xe7, 0x39, 0x8e, 0x69, 0xbb, 0x9c, 0xf9, 0x2f, 0x96, - 0x43, 0xd1, 0x3b, 0x60, 0x9e, 0x1c, 0x60, 0x08, 0x60, 0x08, 0x60, 0x88, 0x30, 0x0c, 0x29, 0x16, - 0x08, 0x60, 0x48, 0x15, 0x30, 0x04, 0x30, 0xe4, 0x50, 0x2a, 0x53, 0x0a, 0x97, 0xa5, 0xcb, 0x4a, - 0xb5, 0x70, 0x09, 0xf0, 0x91, 0x32, 0xf0, 0x81, 0x7e, 0x45, 0x00, 0x2c, 0x00, 0x2c, 0xc7, 0xe8, - 0x57, 0x84, 0x7e, 0x45, 0x40, 0x2d, 0x07, 0x86, 0x5a, 0xd0, 0xaf, 0x28, 0x7d, 0x80, 0x05, 0xfd, - 0x8a, 0x00, 0x5b, 0x00, 0x5b, 0x32, 0x00, 0x5b, 0x0e, 0x24, 0xae, 0xec, 0x7b, 0x1e, 0x37, 0xdb, - 0xcc, 0xb1, 0x5e, 0xd5, 0x95, 0xd6, 0x1c, 0x2d, 0x28, 0x1c, 0x28, 0x1c, 0x28, 0x1c, 0x21, 0x7e, - 0x81, 0x63, 0x17, 0x57, 0x24, 0x5c, 0x91, 0x04, 0x8f, 0x00, 0x8e, 0xdd, 0x74, 0xde, 0x93, 0xc6, - 0x50, 0xc1, 0x0e, 0x7a, 0x54, 0xed, 0x12, 0x97, 0x09, 0x02, 0x80, 0x00, 0x80, 0x00, 0x80, 0x08, - 0x03, 0x10, 0x24, 0xb8, 0x01, 0x80, 0x00, 0x80, 0x08, 0x1c, 0x01, 0x12, 0xdc, 0xd2, 0x0e, 0x45, - 0x02, 0xee, 0x5b, 0x7c, 0x5c, 0xb1, 0xa4, 0x06, 0x41, 0xa6, 0x84, 0x00, 0x3d, 0x00, 0x3d, 0x00, - 0x3d, 0x84, 0xa1, 0x07, 0xba, 0x2d, 0x03, 0x79, 0x00, 0x79, 0x44, 0x3f, 0x82, 0x42, 0x19, 0x40, - 0x23, 0x55, 0x40, 0x03, 0xa3, 0x21, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0xe2, 0xbe, - 0xa3, 0x03, 0xac, 0xec, 0xfb, 0x08, 0x30, 0x1a, 0x62, 0x7f, 0x50, 0x25, 0xab, 0xa3, 0x21, 0xc6, - 0x13, 0x15, 0x74, 0x4d, 0x86, 0x38, 0x22, 0xdc, 0xad, 0xa1, 0x61, 0x17, 0x6f, 0x75, 0x6f, 0xdc, - 0xd8, 0x01, 0xbf, 0xe2, 0x5c, 0x2c, 0x9d, 0x70, 0xa8, 0x91, 0x6b, 0x0e, 0x1b, 0x1a, 0xe9, 0xa1, - 0x7c, 0xb8, 0x7d, 0xc7, 0x11, 0x18, 0x72, 0x71, 0x6b, 0xfd, 0x90, 0x7f, 0xf8, 0xce, 0x6f, 0x33, - 0x9f, 0xb5, 0xdf, 0xbd, 0x4e, 0x1e, 0x25, 0xdd, 0x42, 0x49, 0x46, 0x53, 0x60, 0x30, 0x43, 0x68, - 0x38, 0x88, 0xdf, 0x6f, 0x71, 0x77, 0x82, 0x10, 0x3e, 0x8f, 0x48, 0x36, 0x3f, 0xf1, 0x5e, 0xf3, - 0xf3, 0x98, 0xd4, 0x11, 0x0d, 0xcf, 0x6d, 0xff, 0xc4, 0x8e, 0xad, 0x14, 0xdd, 0x42, 0x99, 0xad, - 0xdb, 0xbe, 0xd0, 0xcd, 0xaf, 0xbf, 0xe5, 0xd5, 0x23, 0x0e, 0x5e, 0x11, 0x1a, 0xb4, 0x12, 0x71, - 0xb0, 0x4a, 0xe4, 0x41, 0x2a, 0x22, 0xf7, 0x11, 0xf1, 0x7b, 0x87, 0xe8, 0xfd, 0x42, 0xfa, 0x1e, - 0x21, 0x7d, 0x5f, 0x90, 0xba, 0x17, 0xa8, 0x31, 0x73, 0xd4, 0xc1, 0x25, 0x86, 0xd5, 0xe7, 0xdf, - 0xcc, 0xae, 0x1d, 0x74, 0x2d, 0xde, 0xfa, 0x16, 0x7d, 0x0f, 0xc3, 0x2e, 0x87, 0x0b, 0x8f, 0x47, - 0xd5, 0xf7, 0x42, 0x28, 0x4a, 0xf8, 0x3a, 0x2c, 0x73, 0xfd, 0x95, 0xbf, 0xee, 0xca, 0x5e, 0x6f, - 0x95, 0xaf, 0xb3, 0xca, 0xd7, 0x57, 0xa5, 0xeb, 0x2a, 0x2d, 0x02, 0x10, 0xbe, 0x7e, 0x86, 0xe7, - 0xd5, 0xf2, 0xfa, 0x2e, 0x67, 0xbe, 0x50, 0x64, 0x5e, 0x22, 0x12, 0x2f, 0x79, 0xa5, 0x94, 0x80, - 0x7c, 0x2a, 0x57, 0x46, 0x55, 0xc7, 0x93, 0xa2, 0xff, 0x9a, 0xe2, 0xfe, 0x21, 0xe3, 0x3a, 0x54, - 0xb9, 0xe2, 0x51, 0x6d, 0x19, 0x5d, 0xa4, 0x9b, 0x64, 0x17, 0x35, 0xe1, 0xfe, 0x06, 0x15, 0x52, - 0x8b, 0x60, 0xd6, 0x99, 0x6b, 0x3d, 0x39, 0xcc, 0x74, 0x79, 0xcf, 0x1c, 0x5a, 0x19, 0x71, 0xdb, - 0xb4, 0x4c, 0x20, 0xa2, 0x2e, 0x92, 0x2c, 0x0f, 0x82, 0x55, 0x83, 0x55, 0x23, 0xb3, 0x6a, 0xe2, - 0xe5, 0x35, 0x82, 0xe5, 0x34, 0x94, 0x22, 0xda, 0x96, 0x15, 0xcd, 0x36, 0x44, 0x12, 0x22, 0x09, - 0x91, 0x24, 0x15, 0xc9, 0xa1, 0xb5, 0x0b, 0x46, 0x8c, 0x62, 0x8a, 0xce, 0xa0, 0x0c, 0x97, 0xba, - 0x86, 0x06, 0x04, 0x0e, 0x02, 0x17, 0xb3, 0xc0, 0x49, 0x8d, 0x2a, 0x94, 0x19, 0x49, 0x28, 0x37, - 0x7a, 0x50, 0x61, 0x06, 0xb0, 0xe2, 0x28, 0x41, 0x95, 0x19, 0x4c, 0xca, 0x13, 0x50, 0x12, 0x3f, - 0x02, 0xb0, 0xa1, 0x33, 0xa0, 0xa3, 0x76, 0xe8, 0x95, 0xb4, 0x1f, 0x3a, 0x46, 0xeb, 0xa5, 0x62, - 0xb4, 0x5e, 0x23, 0xe9, 0xb7, 0xff, 0xe4, 0xc6, 0x69, 0x76, 0x07, 0x4d, 0xb7, 0x44, 0x69, 0x8e, - 0x04, 0x96, 0x13, 0x75, 0x19, 0x22, 0xaf, 0x6f, 0x6c, 0x0d, 0x13, 0xad, 0x0f, 0xc1, 0xad, 0x5f, - 0xec, 0xea, 0x52, 0xd6, 0x2c, 0xc3, 0xe8, 0xf9, 0x5e, 0x8b, 0x05, 0x01, 0xdb, 0x0c, 0x31, 0xe7, - 0x3a, 0xb6, 0x4c, 0x3f, 0xba, 0x61, 0x3b, 0xb6, 0x87, 0x9c, 0x76, 0x22, 0xc5, 0x28, 0xc8, 0x70, - 0x1e, 0x09, 0x0e, 0xdf, 0x67, 0xdb, 0x76, 0x45, 0x84, 0x7e, 0xc2, 0x50, 0x4f, 0x18, 0xda, 0x2d, - 0x43, 0xb9, 0xd1, 0x8b, 0x13, 0xb1, 0xe0, 0xae, 0x20, 0xd1, 0xf4, 0xd4, 0xa2, 0x47, 0x17, 0xa7, - 0x0f, 0xa4, 0x23, 0xbe, 0xb8, 0x83, 0x09, 0x64, 0xef, 0x01, 0xfb, 0x0f, 0x30, 0x6e, 0x67, 0x12, - 0x1a, 0x35, 0x1c, 0x39, 0xc2, 0xd8, 0xb3, 0x25, 0x1c, 0x44, 0xc3, 0x87, 0xb2, 0x71, 0xe7, 0x8c, - 0xc8, 0x64, 0xd9, 0xbb, 0x74, 0x46, 0x63, 0xc2, 0xa4, 0xdd, 0x3a, 0x1d, 0x66, 0x3d, 0xfb, 0xec, - 0x59, 0xe6, 0xca, 0x29, 0xd0, 0x59, 0x64, 0x88, 0xc8, 0x47, 0xf6, 0xfc, 0xec, 0x6c, 0x8c, 0x39, - 0xce, 0x87, 0x0c, 0x1f, 0xa3, 0x9b, 0x28, 0x5a, 0xd6, 0xc8, 0xca, 0xee, 0x44, 0xc9, 0x1e, 0x11, - 0xd4, 0xf2, 0xc2, 0xda, 0x1e, 0x82, 0x99, 0x62, 0xc1, 0x8c, 0x6a, 0x35, 0xc2, 0x07, 0x2c, 0xbf, - 0x13, 0x88, 0xef, 0x79, 0x98, 0x9e, 0x32, 0x7c, 0x5a, 0x70, 0xb7, 0xe4, 0x02, 0xc2, 0xd2, 0x45, - 0x1b, 0x2a, 0xc5, 0x1a, 0x0a, 0xec, 0xac, 0xca, 0xd6, 0x64, 0xec, 0x4d, 0xc6, 0xe6, 0x34, 0xec, - 0x2e, 0x7e, 0x2b, 0x96, 0x70, 0x23, 0xc9, 0x97, 0x5b, 0xcc, 0x97, 0x53, 0xdb, 0x6e, 0x47, 0xc9, - 0x91, 0xa4, 0x75, 0x85, 0x52, 0xd9, 0xb9, 0xe1, 0xd3, 0x2a, 0x59, 0xba, 0x33, 0x22, 0x0a, 0xd9, - 0xba, 0x21, 0x11, 0xa9, 0xac, 0x5d, 0x71, 0x26, 0x12, 0xd8, 0x5e, 0xa3, 0xd5, 0xeb, 0x9b, 0xfd, - 0xc0, 0xea, 0xb0, 0x89, 0x07, 0x40, 0x5e, 0x3d, 0xae, 0x50, 0x82, 0xaa, 0x84, 0xaa, 0xcc, 0x9c, - 0xaa, 0x94, 0x49, 0x11, 0x5c, 0x66, 0x71, 0x19, 0xaf, 0xbb, 0x5a, 0x15, 0x9a, 0x42, 0x29, 0x1e, - 0x45, 0xd5, 0x19, 0x51, 0xa9, 0x13, 0x55, 0x49, 0x3c, 0x65, 0x69, 0x93, 0x42, 0x55, 0x19, 0x49, - 0x35, 0x19, 0xf5, 0xd6, 0xd2, 0x37, 0xd9, 0x21, 0xdd, 0xed, 0x98, 0x0a, 0xb9, 0x1a, 0x89, 0xb2, - 0xcc, 0xfd, 0x40, 0xa2, 0xcf, 0xf9, 0x1a, 0xbb, 0x3c, 0xa2, 0x03, 0xab, 0x0c, 0xab, 0x0c, 0xab, - 0x0c, 0xab, 0x0c, 0xab, 0x0c, 0xab, 0x0c, 0xab, 0x2c, 0x67, 0x95, 0xb9, 0xed, 0xd8, 0x7f, 0xcb, - 0x55, 0x62, 0x2f, 0x9a, 0xe5, 0x39, 0x42, 0xb0, 0xcb, 0xb0, 0xcb, 0x99, 0xb3, 0xcb, 0x3d, 0xe6, - 0xb7, 0x98, 0xcb, 0xad, 0x0e, 0x53, 0x30, 0xcc, 0x65, 0x18, 0x66, 0x18, 0xe6, 0xa4, 0x1a, 0xe6, - 0x5c, 0x0e, 0x76, 0x78, 0x1f, 0x76, 0xb8, 0xcb, 0xba, 0x9e, 0xff, 0x3a, 0xbe, 0xd8, 0xca, 0x1b, - 0xe1, 0x05, 0x2a, 0xb0, 0xc0, 0xb0, 0xc0, 0x99, 0xb3, 0xc0, 0xd2, 0x9d, 0xe6, 0x71, 0x2d, 0x86, - 0xf5, 0xc5, 0xb5, 0x18, 0xe6, 0x58, 0xcc, 0x1c, 0x53, 0xdc, 0x8c, 0xd7, 0xd0, 0x82, 0x69, 0x86, - 0x69, 0xc6, 0xe5, 0x18, 0x97, 0x63, 0x98, 0x67, 0x5c, 0x8e, 0x61, 0x8d, 0x77, 0x6e, 0xdb, 0xa4, - 0x32, 0x4b, 0xd2, 0xfe, 0x8e, 0x9e, 0x86, 0xc5, 0x85, 0xc5, 0x45, 0x9e, 0xeb, 0x32, 0x7f, 0x8b, - 0xe6, 0xb9, 0x6a, 0x91, 0x6e, 0x91, 0x1a, 0xa8, 0x55, 0xd0, 0x11, 0xb9, 0x16, 0x0a, 0xb2, 0x0d, - 0xd9, 0x86, 0xa3, 0x0b, 0x48, 0x1a, 0x48, 0x1a, 0x8e, 0x2e, 0x40, 0xeb, 0xe9, 0xb6, 0x05, 0xdc, - 0xf2, 0xb9, 0xc9, 0x6d, 0x15, 0x80, 0x3d, 0x47, 0x03, 0xa6, 0x18, 0xa6, 0x38, 0x73, 0xa6, 0x78, - 0xc8, 0xd9, 0xdc, 0x6e, 0x7d, 0x0f, 0x62, 0xb7, 0xc7, 0x5f, 0xdc, 0xb1, 0x2e, 0x33, 0x5c, 0xcb, - 0xf5, 0x02, 0xd6, 0xf2, 0xdc, 0xb6, 0x54, 0x7f, 0x24, 0xd8, 0x75, 0xd8, 0x75, 0xd8, 0xf5, 0xd4, - 0xdb, 0xf5, 0x54, 0x4d, 0x45, 0x09, 0xbb, 0x1a, 0x4d, 0x7f, 0x12, 0x99, 0xba, 0xa3, 0xbb, 0x4f, - 0xd6, 0x64, 0xaa, 0xce, 0x6e, 0xef, 0x81, 0x58, 0xad, 0xae, 0x54, 0x6d, 0xae, 0x54, 0x2d, 0xae, - 0x58, 0xed, 0xed, 0xbe, 0xda, 0x86, 0xad, 0xf0, 0x80, 0x11, 0xa9, 0xfd, 0xc6, 0x9a, 0x6e, 0x5c, - 0xf7, 0x93, 0xe7, 0x53, 0xd9, 0x7e, 0x6c, 0xd6, 0xe0, 0x4b, 0xa1, 0xa1, 0x58, 0x10, 0x7c, 0x33, - 0x27, 0xd3, 0x85, 0x76, 0x76, 0x14, 0x9b, 0xfb, 0x6c, 0x32, 0x5a, 0x8a, 0x05, 0xaf, 0x81, 0xc9, - 0x99, 0xdf, 0x4d, 0x65, 0x5b, 0xb1, 0xf0, 0xe5, 0xe3, 0x6a, 0x2d, 0xd6, 0x9a, 0xee, 0x7e, 0xc4, - 0xce, 0x62, 0x93, 0xcf, 0x13, 0x37, 0x16, 0xcb, 0x69, 0x1b, 0x5c, 0xb4, 0x8b, 0x15, 0x64, 0x2f, - 0x4c, 0x89, 0x98, 0x5e, 0xb4, 0x83, 0x55, 0x68, 0xec, 0x57, 0xe4, 0x06, 0x63, 0xe3, 0x66, 0xf2, - 0xb2, 0x4d, 0xe8, 0x25, 0x7a, 0xd0, 0x0f, 0xf7, 0x2e, 0x3b, 0x1d, 0xb1, 0xa3, 0x72, 0xaa, 0xea, - 0x15, 0x3f, 0x91, 0x6d, 0xb1, 0x23, 0x72, 0xb2, 0x1e, 0x78, 0x9a, 0xf9, 0x66, 0xf4, 0x3d, 0xdf, - 0xe3, 0x5e, 0xcb, 0x73, 0x4c, 0xd1, 0xe1, 0xde, 0xf3, 0x0d, 0x25, 0x17, 0x29, 0x88, 0x4b, 0xeb, - 0x7f, 0x0a, 0x90, 0x55, 0xc8, 0xea, 0xfe, 0x64, 0x95, 0xb9, 0xfd, 0x2e, 0xf3, 0x45, 0x93, 0x22, - 0x43, 0x79, 0x15, 0x98, 0x0d, 0x6c, 0xd4, 0xdc, 0xfe, 0xa8, 0x1b, 0xd0, 0x20, 0x46, 0x19, 0xf7, - 0x2d, 0xce, 0x4c, 0xc7, 0xee, 0xda, 0x5c, 0x5c, 0xba, 0xe7, 0x9e, 0x85, 0x88, 0x42, 0x44, 0xf7, - 0x26, 0xa2, 0x7d, 0xdb, 0xe5, 0xf9, 0x8a, 0x84, 0x74, 0x56, 0x30, 0x41, 0x90, 0xd4, 0x01, 0x7d, - 0xc8, 0x13, 0x04, 0x2b, 0xe5, 0x72, 0x11, 0x23, 0x03, 0x95, 0x6c, 0x51, 0xc0, 0x82, 0x21, 0x48, - 0x94, 0x35, 0x47, 0x8b, 0x8f, 0xc3, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, - 0x22, 0x49, 0x5b, 0x24, 0x6e, 0x77, 0x99, 0xd7, 0x97, 0xb0, 0x45, 0xd3, 0x07, 0x61, 0x85, 0x60, - 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x24, 0x3e, 0xb1, 0xaf, 0xac, 0x88, 0x59, - 0x74, 0xfe, 0x7c, 0x12, 0xb9, 0x95, 0xcd, 0x6a, 0xd8, 0x3a, 0xd3, 0x2c, 0xca, 0x10, 0x13, 0xa1, - 0xe1, 0x25, 0x49, 0x19, 0x4d, 0x85, 0x08, 0x32, 0x01, 0x73, 0x23, 0x82, 0x0c, 0x68, 0x07, 0x68, - 0xb7, 0xfe, 0xe4, 0x10, 0x41, 0x8e, 0x2e, 0xad, 0x88, 0x20, 0x43, 0x56, 0xf7, 0x29, 0xab, 0x88, - 0x20, 0x6f, 0xdc, 0x1a, 0x44, 0x90, 0x21, 0xa2, 0xf0, 0x94, 0xc0, 0x53, 0x02, 0x4f, 0x09, 0x3c, - 0x25, 0x14, 0xb6, 0x08, 0x11, 0x64, 0x58, 0x24, 0x58, 0x24, 0x58, 0x24, 0x58, 0x24, 0x58, 0xa4, - 0x64, 0x58, 0x24, 0x44, 0x90, 0x61, 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x34, - 0x59, 0xa1, 0xa4, 0x47, 0x90, 0x23, 0x34, 0x55, 0x48, 0x6a, 0x59, 0xfc, 0xce, 0x2a, 0xf5, 0xe3, - 0x8d, 0xed, 0x00, 0x3e, 0x07, 0xdf, 0x3e, 0x8f, 0x9f, 0x54, 0xa9, 0xa8, 0xdf, 0x1a, 0x22, 0x8f, - 0x14, 0x1a, 0x8f, 0x5c, 0x47, 0x5f, 0x20, 0xab, 0xa3, 0x4f, 0x6b, 0x09, 0x7d, 0x6c, 0xd5, 0xf3, - 0x4f, 0x9e, 0x17, 0xb1, 0xa3, 0xd9, 0x7c, 0xc0, 0x2f, 0x52, 0x03, 0xb3, 0x88, 0x4a, 0x37, 0x8e, - 0x1a, 0xfa, 0xac, 0x26, 0x3f, 0xe8, 0xce, 0x7b, 0x88, 0x0c, 0xd7, 0x24, 0xdb, 0x7f, 0x09, 0xb4, - 0xfb, 0x92, 0x6d, 0xef, 0x25, 0x88, 0xe9, 0x04, 0x90, 0xa9, 0x0c, 0x86, 0x93, 0x6d, 0xe2, 0x27, - 0x89, 0xd9, 0x54, 0x40, 0x87, 0x48, 0x63, 0x44, 0x19, 0x6c, 0xa6, 0xba, 0x15, 0xea, 0xed, 0xb3, - 0x94, 0x76, 0x87, 0x08, 0x32, 0x35, 0x34, 0x64, 0xb3, 0xb5, 0xfa, 0xbe, 0xcf, 0x5c, 0x6e, 0xb6, - 0x2d, 0xce, 0xc4, 0x54, 0xfb, 0xca, 0x93, 0xd0, 0xf0, 0xd0, 0xf0, 0x4b, 0xfb, 0x3d, 0xe4, 0x0d, - 0xd3, 0x72, 0xdb, 0x51, 0x7b, 0x98, 0xce, 0xda, 0xa7, 0x47, 0xf8, 0xec, 0xbd, 0xc5, 0x39, 0xf3, - 0xdd, 0xc8, 0xea, 0xda, 0xf8, 0xef, 0xd7, 0x9c, 0x79, 0xd9, 0xf8, 0x59, 0x1a, 0x3c, 0x3e, 0x9a, - 0xe3, 0x1f, 0x0b, 0xf3, 0x3f, 0xd6, 0xa7, 0x3f, 0xbc, 0x5d, 0xf9, 0xe1, 0xe4, 0xf1, 0xf1, 0x6c, - 0xf4, 0xf3, 0xbf, 0x4e, 0x7f, 0xfb, 0xeb, 0xeb, 0xbf, 0xcc, 0xc6, 0xca, 0x27, 0xfe, 0x61, 0xec, - 0x45, 0x7c, 0xdb, 0x5e, 0xd7, 0xb2, 0x5d, 0x33, 0xd2, 0x1c, 0x87, 0xd9, 0xa9, 0xcc, 0x3d, 0x04, - 0xa1, 0x85, 0xd0, 0x4a, 0xb3, 0x87, 0xb0, 0xc8, 0xde, 0x30, 0xb7, 0x33, 0xba, 0xbc, 0x66, 0x02, - 0x60, 0xe5, 0x01, 0xb0, 0xa6, 0x5b, 0x51, 0x28, 0x17, 0x53, 0x88, 0xa7, 0x74, 0x18, 0x99, 0x93, - 0x93, 0x93, 0xaf, 0x96, 0xf9, 0xf7, 0x95, 0xf9, 0x57, 0xce, 0xbc, 0x6c, 0x36, 0xe6, 0xfe, 0xe3, - 0xf1, 0xd1, 0x6c, 0x36, 0x4e, 0x7f, 0xe6, 0xde, 0x54, 0xf2, 0x83, 0xd3, 0xdf, 0x66, 0xbf, 0x6f, - 0x3c, 0x3e, 0x9e, 0x9d, 0xfe, 0x53, 0xe6, 0xa9, 0xdf, 0x4e, 0x7f, 0x3d, 0x3e, 0x9e, 0xed, 0xc7, - 0xf2, 0x7c, 0xf3, 0x02, 0x2e, 0x66, 0x76, 0xc2, 0x27, 0x60, 0x73, 0x60, 0x73, 0x60, 0x73, 0x60, - 0x73, 0x60, 0x73, 0x60, 0x73, 0x84, 0x6c, 0x8e, 0xe3, 0x75, 0x6c, 0xd7, 0x7c, 0xb2, 0x5c, 0x97, - 0xf9, 0xd1, 0xed, 0xce, 0xc2, 0x53, 0xb0, 0x3d, 0xb0, 0x3d, 0x4b, 0xfb, 0x1d, 0x79, 0xd8, 0x5b, - 0xc4, 0xe1, 0x6e, 0x72, 0xbc, 0xdd, 0xf5, 0x78, 0x5b, 0x98, 0xb5, 0xe7, 0x1f, 0x02, 0x67, 0x83, - 0xb3, 0xf7, 0xc7, 0xd9, 0xfb, 0x8d, 0x77, 0x6f, 0x0e, 0xd5, 0x47, 0x0b, 0x58, 0x73, 0xe6, 0xb8, - 0x8c, 0x47, 0xee, 0x02, 0xbf, 0xf8, 0x71, 0x34, 0x82, 0x47, 0x23, 0xf8, 0x28, 0x47, 0x1e, 0xa7, - 0x8e, 0x45, 0x19, 0x7f, 0x76, 0xcb, 0xf8, 0x9f, 0x2d, 0x27, 0x40, 0x1d, 0x3f, 0x12, 0x6c, 0x55, - 0x2f, 0xee, 0xd9, 0xaf, 0xe3, 0x47, 0x8d, 0x2f, 0x44, 0x0d, 0xb9, 0xec, 0x11, 0x1e, 0x41, 0x2e, - 0xbb, 0x5e, 0xef, 0xa1, 0x84, 0x4b, 0x55, 0xc9, 0xb5, 0x4a, 0xbd, 0x65, 0xc8, 0x65, 0x57, 0xb6, - 0x45, 0xa8, 0xf1, 0x85, 0x45, 0x82, 0x45, 0x82, 0x45, 0x82, 0x45, 0x82, 0x45, 0x4a, 0x86, 0x45, - 0x42, 0x8d, 0x2f, 0xac, 0x10, 0xac, 0x10, 0xac, 0x10, 0xac, 0x10, 0xac, 0x90, 0x26, 0x2b, 0x94, - 0xc8, 0x1a, 0xdf, 0x85, 0xe8, 0x1d, 0x1a, 0x45, 0x23, 0xc2, 0x84, 0x08, 0x13, 0x22, 0x4c, 0x80, - 0x77, 0xc9, 0x82, 0x77, 0x88, 0x30, 0x41, 0xd4, 0x20, 0x6a, 0xb8, 0x49, 0xe1, 0x26, 0x85, 0x9b, - 0x14, 0x6e, 0x52, 0x88, 0x30, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xa5, - 0xc8, 0x22, 0x21, 0xc2, 0x04, 0x2b, 0x04, 0x2b, 0x04, 0x2b, 0x04, 0x2b, 0x04, 0x2b, 0xa4, 0xc9, - 0x0a, 0xa5, 0x20, 0xc2, 0x94, 0xe2, 0x46, 0xb2, 0x51, 0x0a, 0xdd, 0x8e, 0x37, 0xf6, 0x92, 0xad, - 0x8f, 0x9e, 0x16, 0x6c, 0x27, 0x7b, 0xb4, 0x65, 0x9d, 0xbb, 0xd6, 0x17, 0x75, 0x5d, 0xc6, 0xda, - 0x9e, 0xb5, 0xab, 0x2b, 0x58, 0x7c, 0xe9, 0xd9, 0xab, 0xcd, 0xbd, 0x96, 0x31, 0xb4, 0x6d, 0xb6, - 0x6b, 0x39, 0x66, 0x9b, 0xbd, 0xd8, 0x6b, 0x2c, 0xf6, 0x5c, 0xd1, 0xe0, 0xe2, 0x07, 0x97, 0x96, - 0xb6, 0x3e, 0xb2, 0xb7, 0x11, 0xab, 0x6c, 0xc3, 0x24, 0xf3, 0xd8, 0xc3, 0xeb, 0xf1, 0x4d, 0xd8, - 0x63, 0x17, 0xc6, 0x88, 0x8c, 0x25, 0x22, 0x63, 0x86, 0x65, 0x6c, 0x10, 0xbe, 0x9c, 0x20, 0x1b, - 0x6c, 0x8a, 0x9c, 0xed, 0x2a, 0xeb, 0x8b, 0x56, 0xce, 0x17, 0x77, 0xe5, 0xe6, 0x96, 0x23, 0x12, - 0x85, 0x83, 0xf1, 0x57, 0x6e, 0x6e, 0x3e, 0xc2, 0x7d, 0x69, 0xb0, 0x25, 0x39, 0x3b, 0x5f, 0xfe, - 0xef, 0x6d, 0x01, 0xff, 0x68, 0xd5, 0xc2, 0x8e, 0xd7, 0xb1, 0x5b, 0x96, 0x63, 0xb6, 0xbe, 0x59, - 0xae, 0xcb, 0x9c, 0x60, 0x37, 0xbf, 0xad, 0x3c, 0x01, 0xce, 0x4b, 0x1c, 0xe7, 0xed, 0xae, 0x19, - 0x1e, 0x1f, 0x9e, 0x40, 0xd1, 0xf0, 0xe4, 0x81, 0x74, 0x54, 0x0d, 0x47, 0x60, 0x06, 0xd9, 0xdb, - 0xe9, 0xfe, 0x73, 0x3a, 0x76, 0x33, 0x0b, 0x0d, 0xa2, 0x8c, 0x9c, 0xd3, 0x11, 0xb1, 0x00, 0x5d, - 0xcc, 0x72, 0x49, 0xb2, 0xd6, 0xde, 0x1c, 0x23, 0x02, 0x2c, 0x97, 0x3d, 0xc7, 0x48, 0x74, 0x96, - 0xd4, 0xe3, 0x18, 0x89, 0xca, 0xaa, 0xe1, 0x03, 0x56, 0xbb, 0x6b, 0xbb, 0x66, 0xb4, 0xac, 0xb6, - 0x8d, 0xa7, 0x3e, 0x4f, 0xe4, 0x4d, 0x2c, 0xed, 0xc2, 0x44, 0x99, 0x5a, 0x85, 0xb9, 0x89, 0x98, - 0x5c, 0x95, 0xd9, 0xc9, 0x98, 0x9e, 0x8c, 0xf9, 0xe9, 0x84, 0x40, 0xd2, 0x33, 0x21, 0x78, 0xf6, - 0xc2, 0x5e, 0xc3, 0x6d, 0x8c, 0x6e, 0xf2, 0x21, 0x35, 0x89, 0xe3, 0x97, 0x98, 0xa5, 0x1d, 0x3e, - 0x2b, 0x36, 0x53, 0x5b, 0x7c, 0x57, 0x45, 0xba, 0x03, 0xb6, 0x59, 0xd0, 0xf2, 0xed, 0x1e, 0x17, - 0x19, 0xa5, 0xbf, 0xb2, 0xa1, 0xf3, 0x44, 0xa0, 0x39, 0xa0, 0x39, 0x32, 0xab, 0x39, 0x22, 0x77, - 0xed, 0xda, 0xa8, 0x2f, 0x2e, 0x12, 0x20, 0xf3, 0xb6, 0xdb, 0x66, 0x3f, 0xe4, 0xa5, 0x7d, 0xfc, - 0x38, 0xe4, 0x1c, 0x72, 0x9e, 0x59, 0x39, 0xef, 0xdb, 0x2e, 0x2f, 0x16, 0x14, 0xe4, 0xbc, 0x2a, - 0xf1, 0xa8, 0x5c, 0xbc, 0x71, 0xfa, 0x47, 0x8e, 0xc9, 0x8e, 0x55, 0xe3, 0x8f, 0x8a, 0x02, 0xbe, - 0x42, 0x46, 0x31, 0x1e, 0x19, 0xd2, 0x21, 0x08, 0xb0, 0x49, 0xb2, 0xdf, 0xe2, 0xd6, 0x2a, 0xc4, - 0x29, 0x75, 0x6d, 0x6d, 0xa9, 0x70, 0x59, 0xba, 0xac, 0x54, 0x0b, 0x97, 0xe5, 0x04, 0xed, 0xf1, - 0x51, 0x3c, 0x4f, 0x35, 0x12, 0x60, 0x7e, 0x97, 0x3c, 0xce, 0xe3, 0x2b, 0x88, 0xb4, 0x35, 0x5e, - 0x4b, 0x0d, 0xc6, 0x19, 0xc6, 0x39, 0xb3, 0xc6, 0xd9, 0x6e, 0x33, 0x97, 0xdb, 0xfc, 0xd5, 0x67, - 0xcf, 0x2a, 0x48, 0x5c, 0x42, 0xfb, 0x19, 0x1f, 0x27, 0x5f, 0xfd, 0xce, 0x0a, 0x14, 0x78, 0x67, - 0xba, 0x90, 0x9b, 0xbb, 0x0f, 0x1f, 0xaf, 0xaf, 0x6e, 0x9a, 0xb5, 0x9b, 0xda, 0x6d, 0xed, 0x53, - 0xbd, 0x79, 0xff, 0x70, 0x57, 0xbf, 0xbb, 0xbe, 0xbb, 0x69, 0xd6, 0xff, 0xbc, 0xaf, 0x19, 0x2a, - 0xd9, 0x29, 0x81, 0x34, 0x8c, 0x50, 0x83, 0x12, 0x0b, 0xcb, 0x1b, 0x2e, 0xa7, 0x59, 0xab, 0xff, - 0x51, 0x7b, 0xf8, 0x54, 0xab, 0x1b, 0xfb, 0x30, 0xbf, 0x94, 0x0b, 0xb9, 0xab, 0x7f, 0x32, 0x62, - 0x36, 0x6f, 0x8d, 0xc4, 0xe4, 0x04, 0x89, 0x99, 0x37, 0xaf, 0xf7, 0x64, 0xb5, 0xbe, 0x9b, 0x5d, - 0xaf, 0xad, 0x64, 0xd7, 0xe6, 0xc9, 0xc0, 0xa0, 0xc1, 0xa0, 0x65, 0xd6, 0xa0, 0x2d, 0xb0, 0xfa, - 0x7e, 0x3d, 0xd2, 0x12, 0xcf, 0xce, 0x15, 0xa7, 0x7f, 0xba, 0xfb, 0x54, 0x33, 0x12, 0xa0, 0x82, - 0x46, 0xe5, 0xbb, 0x2d, 0xc7, 0x0a, 0x02, 0x79, 0xfd, 0x33, 0x47, 0x03, 0xca, 0x07, 0xca, 0x07, - 0x68, 0x3a, 0xe9, 0x68, 0xba, 0xfe, 0xf0, 0xf1, 0xdd, 0x97, 0xfa, 0xd5, 0xc3, 0x9f, 0xcd, 0x87, - 0xab, 0x7a, 0xad, 0x79, 0x7d, 0x73, 0xf5, 0xf9, 0x73, 0x46, 0x90, 0xf4, 0x70, 0x69, 0xe3, 0x55, - 0x95, 0xcb, 0xb9, 0x0f, 0x69, 0x86, 0xd2, 0xb3, 0x95, 0x14, 0xce, 0xca, 0x19, 0x59, 0x49, 0x31, - 0x97, 0x95, 0x33, 0xc9, 0x67, 0x86, 0xb9, 0xca, 0xd9, 0x39, 0x92, 0x0c, 0x71, 0x57, 0x56, 0x56, - 0x72, 0x99, 0x9d, 0x33, 0xc9, 0x90, 0xa0, 0x64, 0x66, 0x29, 0xe5, 0xcc, 0xb0, 0x57, 0x21, 0x3b, - 0x82, 0x92, 0x1d, 0xed, 0x55, 0xca, 0xcc, 0x4a, 0x2e, 0x32, 0xb3, 0x92, 0x62, 0x66, 0x94, 0xd7, - 0x65, 0x66, 0x56, 0x52, 0xcd, 0xce, 0x4a, 0xb2, 0x23, 0xf1, 0x99, 0x39, 0x93, 0x4a, 0x66, 0xce, - 0xa4, 0x92, 0x99, 0x33, 0x29, 0x65, 0x07, 0x0d, 0x67, 0x06, 0xab, 0x7c, 0x40, 0xd4, 0x35, 0xca, - 0xd6, 0x71, 0x16, 0x70, 0x33, 0xb0, 0x3b, 0xae, 0xe5, 0xc8, 0xc7, 0x3c, 0xe6, 0x89, 0x20, 0xe8, - 0xb1, 0x8b, 0x0c, 0x82, 0x1e, 0x54, 0x12, 0x11, 0x7b, 0xd0, 0x43, 0xbc, 0x85, 0xf1, 0x32, 0xa3, - 0x47, 0x6c, 0x65, 0xac, 0x59, 0xe8, 0x7d, 0xfb, 0xc9, 0xec, 0xf9, 0x1e, 0xf7, 0x5a, 0x9e, 0x8a, - 0xd8, 0x2f, 0x90, 0x81, 0xe0, 0x43, 0xf0, 0x11, 0xed, 0xdc, 0x2e, 0xfc, 0x49, 0x8a, 0x76, 0x66, - 0x31, 0x6b, 0xf0, 0xae, 0xfe, 0x25, 0x5f, 0x4b, 0x7f, 0xca, 0xe0, 0xfb, 0x2f, 0xa5, 0xd4, 0x2f, - 0x22, 0x9f, 0xfb, 0x50, 0x6b, 0xde, 0x5c, 0x7d, 0x4a, 0xff, 0x69, 0x5c, 0xe7, 0x2f, 0x0b, 0xe9, - 0x3f, 0x8e, 0x0f, 0x99, 0x90, 0x8b, 0xf4, 0x1f, 0xc4, 0xe7, 0xfa, 0x6d, 0xbe, 0x92, 0x85, 0xa3, - 0x28, 0x66, 0x61, 0x11, 0xd7, 0x19, 0xd0, 0x4f, 0xf5, 0x0c, 0x48, 0xc5, 0x70, 0x11, 0xe9, 0x57, - 0x50, 0xa5, 0x5c, 0x16, 0xb4, 0x6c, 0x3d, 0x03, 0xe8, 0x63, 0x68, 0x2a, 0xb2, 0xc0, 0x4f, 0x99, - 0x60, 0xa8, 0xeb, 0xd2, 0x45, 0x16, 0xcc, 0x76, 0xa5, 0x94, 0x05, 0xd9, 0xce, 0x80, 0xc5, 0xcb, - 0xe7, 0x72, 0x1f, 0x9a, 0xb7, 0x37, 0x1f, 0xb2, 0x71, 0x47, 0xfa, 0x9f, 0xab, 0x4c, 0x60, 0x90, - 0x62, 0x16, 0x44, 0xbc, 0x50, 0xce, 0x00, 0x34, 0xbf, 0xae, 0x56, 0x2e, 0x32, 0x21, 0xe3, 0xb5, - 0x03, 0x0e, 0xe1, 0x91, 0xf6, 0x05, 0x14, 0x6c, 0x8a, 0x1e, 0x3e, 0x27, 0xdf, 0x91, 0x77, 0xb9, - 0x3b, 0xee, 0xf9, 0xe4, 0x87, 0x48, 0xb3, 0x79, 0xa3, 0x6f, 0x42, 0x94, 0x89, 0x25, 0x8c, 0x7f, - 0x63, 0xbe, 0xcb, 0x24, 0x46, 0x96, 0x84, 0x4f, 0xa2, 0x35, 0x27, 0x5a, 0x73, 0x2a, 0x8a, 0xa0, - 0x70, 0x6b, 0x4e, 0xc1, 0x6e, 0xb2, 0x2b, 0x07, 0x2e, 0xd4, 0x55, 0x56, 0x92, 0x85, 0xa5, 0x59, - 0x59, 0x85, 0xa5, 0x89, 0x58, 0x5b, 0x95, 0xc5, 0xc9, 0x58, 0x9d, 0x8c, 0xe5, 0xe9, 0x58, 0x5f, - 0xd2, 0xba, 0x09, 0x9e, 0xbd, 0xa8, 0x48, 0x84, 0x0f, 0x5a, 0x4e, 0x60, 0xb6, 0x99, 0x63, 0xbd, - 0xaa, 0x87, 0xc3, 0x66, 0xa4, 0x24, 0xf7, 0x7a, 0xae, 0x8a, 0x39, 0x27, 0x4b, 0x43, 0x71, 0xae, - 0x8c, 0xac, 0xf0, 0x51, 0x08, 0x21, 0xb1, 0x30, 0x52, 0x09, 0x25, 0xb9, 0x70, 0x92, 0x0b, 0x29, - 0xbd, 0xb0, 0xaa, 0x41, 0x5f, 0x49, 0xd8, 0x2f, 0x1f, 0x5a, 0x5f, 0xe1, 0x1c, 0xe9, 0xde, 0x79, - 0xcb, 0x72, 0x54, 0x55, 0x20, 0xa1, 0xd6, 0x4b, 0x8f, 0xe6, 0x22, 0x74, 0x4c, 0xd5, 0x5b, 0x8f, - 0x48, 0xc1, 0xac, 0x90, 0x23, 0xea, 0xb5, 0x17, 0xd2, 0x23, 0xec, 0x07, 0x47, 0x70, 0x8b, 0x9d, - 0x1d, 0x01, 0x41, 0x0f, 0x3e, 0xdd, 0x47, 0x40, 0xd5, 0x93, 0x4f, 0xeb, 0x59, 0x1c, 0xed, 0xe7, - 0xe9, 0x46, 0x4c, 0xbd, 0x01, 0x65, 0x9a, 0x9f, 0xb4, 0x1c, 0x9b, 0xb9, 0xdc, 0xb4, 0x9c, 0x40, - 0x1d, 0xc3, 0xcc, 0xd1, 0x52, 0x07, 0x31, 0x61, 0xdf, 0x2d, 0x60, 0x19, 0x60, 0x19, 0x60, 0x19, - 0x49, 0xce, 0x61, 0x6e, 0xbf, 0xcb, 0x7c, 0x4b, 0xa2, 0xb1, 0xfd, 0xda, 0xdb, 0x78, 0x49, 0x81, - 0x86, 0xdc, 0xd0, 0x00, 0x05, 0x6d, 0xa8, 0xf5, 0xce, 0x28, 0xe9, 0xc9, 0xd4, 0xe9, 0xd1, 0x9c, - 0x7a, 0x09, 0x85, 0x5c, 0x9b, 0xe2, 0xbb, 0x25, 0xd4, 0x4a, 0xcf, 0x69, 0xf7, 0x14, 0x3a, 0xe8, - 0x0d, 0x9f, 0x86, 0xdf, 0x08, 0x7e, 0xa3, 0xac, 0xf9, 0x8d, 0x24, 0x5d, 0xaa, 0x34, 0xae, 0x55, - 0x45, 0x51, 0x01, 0x42, 0x02, 0x42, 0xda, 0x3f, 0x42, 0x92, 0x15, 0xbd, 0x90, 0x00, 0x73, 0xad, - 0x27, 0x87, 0xb5, 0xd5, 0x8f, 0x7a, 0x86, 0xb4, 0xc6, 0x04, 0x15, 0xcf, 0x65, 0xee, 0x06, 0xf4, - 0x6c, 0x39, 0x01, 0x53, 0xa5, 0x47, 0xd4, 0x7a, 0x5f, 0x55, 0xd8, 0x29, 0x85, 0x5e, 0x93, 0xf0, - 0x53, 0x2b, 0x01, 0x6d, 0xca, 0x40, 0x9b, 0x52, 0xd0, 0xa7, 0x1c, 0x88, 0x3c, 0x30, 0x8a, 0xbc, - 0xa7, 0x7c, 0xad, 0x5a, 0xe1, 0x3c, 0xf9, 0x32, 0xcc, 0x8d, 0xd6, 0x38, 0xbf, 0x27, 0x27, 0x95, - 0xca, 0x90, 0x90, 0xc0, 0xf5, 0xbc, 0x9e, 0xed, 0x76, 0xe8, 0xb4, 0x69, 0x48, 0x11, 0xea, 0x14, - 0xea, 0x14, 0xea, 0x14, 0xea, 0x34, 0x75, 0xea, 0x34, 0x56, 0x38, 0xac, 0xe8, 0x8d, 0x8a, 0xc5, - 0x2b, 0xe5, 0x38, 0xed, 0x9e, 0x94, 0x6b, 0x4a, 0xc1, 0x05, 0x28, 0xe1, 0x4d, 0x71, 0x99, 0xdd, - 0xf9, 0xf6, 0xe4, 0xf9, 0x04, 0xf1, 0x90, 0x19, 0xa9, 0x3d, 0xdf, 0xd0, 0x0b, 0xb8, 0xa1, 0xe3, - 0x86, 0x9e, 0xb6, 0x1b, 0xfa, 0x54, 0x7a, 0xe8, 0x40, 0x65, 0x48, 0x91, 0x06, 0x04, 0xe6, 0x01, - 0x02, 0x01, 0x02, 0x0f, 0x1d, 0x04, 0xaa, 0x8a, 0x79, 0x48, 0x48, 0xd1, 0x27, 0xbe, 0x91, 0x91, - 0x95, 0x7c, 0xe4, 0x9a, 0x44, 0x9f, 0x5c, 0x05, 0xe8, 0x50, 0x05, 0x9a, 0x55, 0x82, 0x2e, 0xd5, - 0xa0, 0x5d, 0x45, 0x68, 0x57, 0x15, 0xfa, 0x55, 0x06, 0x8d, 0xea, 0x20, 0x52, 0x21, 0xd4, 0x97, - 0x98, 0xf8, 0x2f, 0x35, 0x21, 0xce, 0x0f, 0x7f, 0x52, 0xba, 0xe7, 0xd0, 0x9f, 0x12, 0x45, 0x12, - 0x62, 0xab, 0x1f, 0x70, 0xaf, 0x6b, 0x72, 0xe7, 0x25, 0xd0, 0xa0, 0xa4, 0xe7, 0x88, 0x27, 0x5c, - 0x53, 0x17, 0xd2, 0xa1, 0xa9, 0x25, 0x72, 0x27, 0xa0, 0xa5, 0x29, 0xb4, 0xf4, 0x68, 0xe3, 0x33, - 0xaa, 0xa1, 0xa9, 0xc0, 0x5e, 0x48, 0x90, 0x3b, 0x2f, 0xf4, 0x2c, 0x15, 0x76, 0x85, 0x74, 0x5e, - 0xa8, 0x99, 0x89, 0x56, 0xa9, 0x68, 0x83, 0x81, 0x3a, 0x95, 0x4c, 0x0c, 0xca, 0x46, 0xb7, 0xd2, - 0x89, 0x4d, 0xf9, 0xc4, 0xa6, 0x84, 0xe2, 0x51, 0x46, 0xb4, 0x4a, 0x89, 0x58, 0x39, 0x69, 0x53, - 0x52, 0xba, 0x6e, 0xa8, 0xf1, 0xdc, 0x58, 0x63, 0x52, 0x61, 0xda, 0x55, 0x59, 0x1c, 0x2a, 0x2d, - 0x46, 0xd5, 0x16, 0x97, 0x8a, 0x8b, 0x5d, 0xd5, 0xc5, 0xae, 0xf2, 0xe2, 0x55, 0x7d, 0x7a, 0x54, - 0xa0, 0x26, 0x55, 0xa8, 0xfb, 0x66, 0x9d, 0x8c, 0x9b, 0xf6, 0xec, 0xea, 0x78, 0xce, 0x9d, 0x17, - 0xd2, 0x9b, 0xb7, 0xfe, 0x53, 0xd7, 0x70, 0xe2, 0x86, 0xd7, 0xb7, 0xf5, 0x1b, 0xa9, 0xe1, 0x97, - 0xe8, 0xb5, 0x50, 0x39, 0x58, 0x28, 0x58, 0x28, 0x58, 0xa8, 0xc3, 0xb0, 0x50, 0x64, 0xb9, 0x44, - 0x3b, 0x25, 0xc6, 0x61, 0xd6, 0xb3, 0x5c, 0xf3, 0x7c, 0x61, 0x88, 0x5d, 0xd5, 0xf8, 0x1d, 0xf7, - 0x13, 0x23, 0x7b, 0x76, 0x76, 0x1e, 0x70, 0x8b, 0xb3, 0xf3, 0xa1, 0x42, 0x3e, 0x6c, 0xa3, 0x67, - 0x06, 0xfd, 0x27, 0xae, 0x93, 0x8f, 0xe6, 0x8d, 0x5f, 0xf8, 0x65, 0x30, 0x82, 0x30, 0x82, 0x30, - 0x82, 0x30, 0x82, 0x30, 0x82, 0xc9, 0x30, 0x82, 0xa1, 0x62, 0x3e, 0x60, 0x63, 0x38, 0xda, 0x0c, - 0xfd, 0x66, 0x70, 0xfc, 0x35, 0x29, 0xf7, 0x53, 0x16, 0x60, 0x00, 0x61, 0x00, 0x61, 0x00, 0x13, - 0x61, 0x00, 0x75, 0x85, 0x6e, 0x62, 0x71, 0x8d, 0xad, 0xbb, 0x25, 0xe8, 0x66, 0x5e, 0xbd, 0xb7, - 0x84, 0xd8, 0x6e, 0x0b, 0x71, 0x2a, 0xcd, 0x3d, 0x28, 0xcf, 0xb8, 0x95, 0xe8, 0xde, 0x94, 0xe9, - 0xde, 0x94, 0xea, 0x7e, 0x94, 0xab, 0x5e, 0x25, 0xab, 0x59, 0xd9, 0xc6, 0x77, 0xeb, 0x58, 0x83, - 0x1b, 0x7d, 0xf5, 0xd2, 0x5e, 0x21, 0x10, 0x79, 0x71, 0x94, 0xce, 0xf3, 0xd7, 0x78, 0xf6, 0xb1, - 0x78, 0xcc, 0xd6, 0xd9, 0x44, 0xcd, 0x9e, 0x33, 0xd8, 0x46, 0xd8, 0x46, 0xd8, 0x46, 0xd8, 0x46, - 0xd8, 0x46, 0xd8, 0x46, 0xe9, 0xbd, 0x89, 0xd7, 0x28, 0xc2, 0x1a, 0xc2, 0x1a, 0xc2, 0x1a, 0xc2, - 0x1a, 0xc2, 0x1a, 0x2e, 0x4b, 0x9c, 0xea, 0x24, 0x06, 0x51, 0xf5, 0x58, 0x8c, 0xe1, 0xab, 0x68, - 0x26, 0x3b, 0x44, 0xfd, 0x13, 0x8f, 0xfe, 0x38, 0xa6, 0x9e, 0x14, 0x21, 0x8c, 0x62, 0xde, 0xc4, - 0xfb, 0xb5, 0xd3, 0xb1, 0x07, 0x85, 0x7c, 0xa9, 0x5a, 0xba, 0x28, 0x56, 0x4a, 0x17, 0x31, 0xbf, - 0x80, 0x86, 0xf1, 0x08, 0x09, 0x51, 0x33, 0x8b, 0x3c, 0x65, 0xfd, 0xd8, 0x1b, 0x4f, 0xe5, 0xf6, - 0xcd, 0x53, 0xd5, 0x03, 0xe2, 0xa9, 0xa3, 0x6c, 0x7c, 0x4b, 0x03, 0x97, 0xa9, 0x15, 0xb6, 0x7a, - 0x99, 0xf0, 0x75, 0x4c, 0xb7, 0xa9, 0xf1, 0xd7, 0xe1, 0x3a, 0x85, 0xeb, 0x14, 0xae, 0x53, 0xb8, - 0x4e, 0xe1, 0x3a, 0x35, 0xdf, 0x5f, 0xd3, 0x76, 0x2d, 0xff, 0x35, 0xc6, 0xfb, 0xd4, 0x65, 0x5a, - 0xcd, 0x21, 0xca, 0xfb, 0xd6, 0x7c, 0x4f, 0x12, 0xca, 0xfb, 0xc6, 0x39, 0x87, 0x07, 0x9c, 0xdb, - 0x19, 0x4f, 0x85, 0x03, 0x4a, 0x1b, 0xf6, 0x8a, 0x95, 0x90, 0xd9, 0x99, 0x42, 0x2c, 0x84, 0xcc, - 0xce, 0x3d, 0x62, 0x9d, 0xcc, 0x97, 0x36, 0xa4, 0xaa, 0xa6, 0x21, 0xd1, 0x0d, 0x62, 0xfe, 0xcd, - 0x5e, 0xa7, 0x26, 0xee, 0xd8, 0xeb, 0xdb, 0xc7, 0xfa, 0x72, 0x92, 0x8c, 0x1b, 0x3b, 0xe0, 0x57, - 0x9c, 0x6b, 0x6a, 0x48, 0x73, 0x6b, 0xbb, 0x35, 0x87, 0x0d, 0x35, 0x4e, 0x60, 0xbc, 0x3d, 0x76, - 0xfb, 0x8e, 0xa3, 0x01, 0x6f, 0xdc, 0x5a, 0x3f, 0xf4, 0x7f, 0xc9, 0x9d, 0xdf, 0x66, 0x3e, 0x6b, - 0xbf, 0x7b, 0x9d, 0x7c, 0x45, 0xa2, 0xf9, 0x47, 0x33, 0xdc, 0x4e, 0x02, 0xcc, 0x36, 0xb4, 0x14, - 0x25, 0xf9, 0xfd, 0x16, 0x77, 0x27, 0x6a, 0xba, 0x3e, 0x79, 0xf5, 0xf7, 0xa3, 0x37, 0x6f, 0x5e, - 0x8f, 0x5f, 0xb4, 0x59, 0x9b, 0xbc, 0x68, 0xf3, 0xc6, 0x69, 0xf7, 0x9a, 0x9f, 0x26, 0xaf, 0xd7, - 0xac, 0x3b, 0x2f, 0xb4, 0xba, 0x6f, 0x80, 0x1e, 0xaa, 0x69, 0xe2, 0xc9, 0x2c, 0x35, 0x52, 0xb5, - 0xdb, 0xf4, 0xfd, 0x53, 0xed, 0x36, 0x71, 0xdb, 0xd4, 0x1c, 0x1a, 0x5c, 0x27, 0xfd, 0x82, 0x85, - 0x06, 0xd7, 0x69, 0x53, 0xce, 0xe4, 0x97, 0x20, 0x8d, 0x97, 0x1e, 0x1d, 0x97, 0x9c, 0xd5, 0x4b, - 0x8d, 0xdd, 0xce, 0x92, 0x66, 0xa7, 0x2d, 0xbb, 0xd6, 0x52, 0x66, 0x7d, 0xe8, 0x6d, 0xb1, 0xa1, - 0xdf, 0xa1, 0xdf, 0xb5, 0xe9, 0x77, 0xf2, 0xf6, 0xd8, 0x56, 0x87, 0xe9, 0x6b, 0x8f, 0x3d, 0x24, - 0xae, 0xa7, 0x3d, 0x76, 0x0e, 0xed, 0xb1, 0xd1, 0x1e, 0x3b, 0x49, 0x8a, 0x68, 0x93, 0x42, 0x3a, - 0xc4, 0xf6, 0xd8, 0xda, 0x3c, 0xf1, 0x21, 0xc7, 0xf7, 0x6d, 0x97, 0x57, 0x4a, 0x3a, 0x18, 0x7e, - 0xa2, 0x5f, 0x34, 0xe4, 0xda, 0x6a, 0xce, 0xca, 0xd6, 0x18, 0xf7, 0x88, 0x23, 0xeb, 0x3a, 0xae, - 0x74, 0xb7, 0x69, 0x06, 0xac, 0xee, 0xef, 0x89, 0x31, 0xd1, 0x55, 0x67, 0x62, 0x65, 0x1c, 0xc9, - 0xd1, 0x71, 0x1f, 0x7d, 0xfe, 0xa2, 0x54, 0xaa, 0x54, 0x4b, 0xa5, 0x5c, 0xb5, 0x58, 0xcd, 0x5d, - 0x96, 0xcb, 0xf9, 0x4a, 0xbe, 0x9c, 0x21, 0x6e, 0x48, 0x49, 0x00, 0xaf, 0x91, 0x54, 0x67, 0x3b, - 0xe1, 0xb5, 0xad, 0xf5, 0xcd, 0x0a, 0x02, 0x3b, 0x30, 0x09, 0xfd, 0xb1, 0x2b, 0xa6, 0x70, 0xee, - 0x3b, 0x00, 0xb5, 0x01, 0xb5, 0x01, 0xb5, 0x01, 0xb5, 0x49, 0x39, 0x5e, 0x5b, 0xb7, 0x00, 0x4d, - 0xdd, 0x01, 0x92, 0x6e, 0x09, 0x4c, 0x2d, 0xd9, 0x95, 0x6b, 0xcc, 0x81, 0xa9, 0x23, 0xdb, 0x04, - 0x36, 0x01, 0x36, 0x01, 0x36, 0xe1, 0xd0, 0x6d, 0x82, 0x5e, 0x25, 0xb3, 0x60, 0x1c, 0x4a, 0x1a, - 0x68, 0xd7, 0xdc, 0x7e, 0x77, 0xb8, 0x41, 0x83, 0x03, 0x30, 0x3c, 0x3a, 0xaf, 0x1e, 0xb8, 0x72, - 0xc0, 0xbc, 0xc0, 0xbc, 0xc0, 0xbc, 0xe0, 0xca, 0x91, 0x44, 0xcd, 0xef, 0x58, 0x01, 0x37, 0xfb, - 0xbd, 0xb6, 0x8e, 0x3e, 0xfd, 0xb3, 0xac, 0xa0, 0xb9, 0x2f, 0x81, 0x2d, 0x80, 0x2d, 0x80, 0x2d, - 0x80, 0x2d, 0xa0, 0xc5, 0x98, 0x9a, 0x03, 0xbd, 0x25, 0x04, 0x7a, 0x67, 0x2f, 0x1e, 0x67, 0xa0, - 0x37, 0x1f, 0x53, 0xb4, 0xef, 0xb2, 0x50, 0x28, 0x16, 0xab, 0x85, 0x5c, 0xb1, 0x72, 0x51, 0x2e, - 0x55, 0xab, 0xe5, 0x8b, 0xdc, 0x05, 0x42, 0xbf, 0x91, 0x98, 0x21, 0x83, 0xa1, 0xdf, 0x55, 0x66, - 0xa8, 0x22, 0xf2, 0x1b, 0x37, 0xd5, 0x43, 0x88, 0xfc, 0x76, 0x2d, 0xd7, 0xea, 0x8c, 0x4a, 0x1a, - 0x4d, 0xab, 0xdd, 0xf6, 0x59, 0x10, 0xe8, 0xc3, 0xe0, 0x6b, 0xbe, 0x0b, 0x50, 0x1c, 0x50, 0x1c, - 0x50, 0x1c, 0x50, 0x1c, 0x6e, 0x99, 0x14, 0x58, 0x06, 0xcd, 0x11, 0xe1, 0x4d, 0x5f, 0x08, 0x1b, - 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x01, 0x1b, 0x91, 0x38, 0x1b, 0xd1, 0xf3, 0x7c, 0x6e, 0xb6, - 0x59, 0xd0, 0xf2, 0xed, 0x9e, 0x96, 0x26, 0x20, 0xe1, 0x79, 0xad, 0x7c, 0x13, 0xac, 0x02, 0xac, - 0x02, 0xac, 0x02, 0xac, 0x02, 0xac, 0x42, 0x32, 0xad, 0x82, 0xce, 0x7c, 0x9e, 0xe9, 0x17, 0xc0, - 0x06, 0xc0, 0x06, 0xc0, 0x06, 0xc0, 0x06, 0xc0, 0x06, 0x24, 0xd5, 0x06, 0x68, 0x76, 0x19, 0x2d, - 0x7c, 0x0b, 0xac, 0x01, 0xac, 0x01, 0xac, 0x01, 0xac, 0x41, 0x5a, 0x34, 0xcc, 0x31, 0xca, 0x07, - 0x08, 0x9b, 0x72, 0xbe, 0x06, 0x9c, 0x75, 0xe3, 0xf1, 0x45, 0xad, 0xf9, 0x2e, 0xd8, 0x1e, 0xd8, - 0x1e, 0xd8, 0x1e, 0xd8, 0x9e, 0xb4, 0xdd, 0x44, 0x34, 0xd0, 0xbe, 0x61, 0x6e, 0x67, 0xd4, 0xda, - 0x12, 0x59, 0xa5, 0xf1, 0xa9, 0xf6, 0x95, 0xaf, 0x41, 0xfb, 0x20, 0xb1, 0xa3, 0xcf, 0x60, 0x0e, - 0x69, 0xa1, 0x8c, 0x6e, 0x41, 0xb1, 0x53, 0x6d, 0x1c, 0x0e, 0xd6, 0x9e, 0x8c, 0x2f, 0xd0, 0x0b, - 0xb2, 0x47, 0x5f, 0x02, 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x0d, - 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x0d, 0x74, 0x9d, 0x59, 0x74, 0xcd, 0xb9, 0xa3, 0x0f, 0x55, 0x0f, - 0x89, 0x03, 0x4d, 0x03, 0x4d, 0x03, 0x4d, 0x03, 0x4d, 0x93, 0x72, 0x7c, 0xdf, 0x76, 0x79, 0xbe, - 0xa2, 0x11, 0x4d, 0x57, 0xd0, 0xff, 0x00, 0x58, 0x1a, 0x58, 0x3a, 0x93, 0x58, 0xba, 0x52, 0x2e, - 0x17, 0x81, 0xa6, 0x81, 0xa6, 0x49, 0x29, 0x61, 0x8c, 0xec, 0xea, 0x18, 0xd9, 0xf1, 0xf8, 0xbc, - 0xa4, 0x8c, 0x19, 0x3c, 0xda, 0xe3, 0xf1, 0x4e, 0x27, 0x9f, 0x2b, 0x57, 0x11, 0xd0, 0xce, 0x35, - 0xd7, 0x32, 0xc7, 0x5c, 0xcb, 0xdc, 0x72, 0xda, 0x39, 0xe5, 0xaa, 0xa7, 0x49, 0x2c, 0xa4, 0xfb, - 0x10, 0x4e, 0x83, 0x64, 0xea, 0xa6, 0xf4, 0x5c, 0x71, 0x35, 0xad, 0x20, 0x2f, 0xcb, 0x72, 0x4f, - 0x4a, 0xf2, 0x0b, 0x15, 0x9f, 0xc4, 0xc8, 0x1f, 0x72, 0xe7, 0x22, 0xbe, 0xab, 0x12, 0x3b, 0xaa, - 0x38, 0xe4, 0x95, 0x64, 0xa8, 0xab, 0x62, 0x97, 0x36, 0xe5, 0xa1, 0xad, 0x14, 0xee, 0x24, 0xe2, - 0xa1, 0xac, 0x54, 0x2e, 0x22, 0x72, 0x57, 0x10, 0xb9, 0xcb, 0x87, 0x7e, 0xa8, 0x6a, 0xbc, 0xda, - 0x48, 0x75, 0x48, 0xaa, 0xd1, 0xf2, 0xfa, 0x2e, 0x67, 0xbe, 0x7a, 0xcf, 0xae, 0x59, 0xc7, 0xfc, - 0x29, 0x45, 0x55, 0x78, 0x45, 0xd2, 0x3c, 0x91, 0xcc, 0x0b, 0x4c, 0xe9, 0xf5, 0xd5, 0xe0, 0xe5, - 0xa5, 0xf6, 0xea, 0x6a, 0xf3, 0xe2, 0x6a, 0xf3, 0xda, 0xea, 0xf1, 0xd2, 0xee, 0xf7, 0x8a, 0x41, - 0x35, 0x03, 0xd9, 0x78, 0xf6, 0xad, 0x2e, 0x33, 0xdb, 0x76, 0xd0, 0xb2, 0xfc, 0x36, 0xfd, 0x50, - 0xf5, 0x45, 0xf2, 0xb4, 0xc3, 0xd5, 0x73, 0xd4, 0xc3, 0xd5, 0x73, 0xe9, 0x18, 0xae, 0x4e, 0x1c, - 0xfe, 0xc1, 0x60, 0xf5, 0x78, 0x15, 0x47, 0x32, 0x5d, 0x51, 0xe4, 0x61, 0x9c, 0x65, 0xb3, 0x4f, - 0xda, 0xc1, 0x5a, 0xc3, 0x88, 0x62, 0x4d, 0x11, 0x1b, 0x0d, 0x71, 0x31, 0x9d, 0x11, 0x1a, 0xcd, - 0xee, 0x79, 0xdd, 0x11, 0x99, 0x38, 0x5c, 0xf1, 0x1a, 0x22, 0x30, 0x5a, 0x23, 0x2f, 0x71, 0x1d, - 0x69, 0x7c, 0x23, 0x85, 0x63, 0x39, 0xe5, 0x84, 0x06, 0x30, 0x1a, 0x49, 0xf1, 0xb0, 0xbf, 0xa1, - 0xc2, 0x9e, 0xcc, 0xf7, 0x3d, 0xdf, 0x24, 0xd4, 0x69, 0x4b, 0xe0, 0x33, 0xa4, 0x0f, 0xf4, 0x09, - 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, 0xf4, 0x09, - 0xf4, 0x39, 0x41, 0x87, 0x5e, 0x9f, 0xeb, 0x85, 0x9f, 0xc3, 0x2f, 0x00, 0xfe, 0x04, 0xfe, 0x04, - 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0x04, 0xfe, 0xd4, - 0xe8, 0xf7, 0x84, 0xc7, 0x13, 0x88, 0x13, 0x88, 0x13, 0x88, 0x13, 0x88, 0x13, 0x88, 0x13, 0x88, - 0x13, 0x88, 0x13, 0x88, 0x13, 0x88, 0x73, 0x88, 0x0b, 0x35, 0xfa, 0x3a, 0xe1, 0xe5, 0x04, 0xe6, - 0x04, 0xe6, 0x04, 0xe6, 0x04, 0xe6, 0x04, 0xe6, 0x04, 0xe6, 0x04, 0xe6, 0x04, 0xe6, 0x3c, 0x78, - 0xcc, 0xe9, 0x58, 0x01, 0x37, 0x5b, 0x0e, 0xb3, 0x7c, 0x7a, 0xd0, 0x39, 0x47, 0x1b, 0xa8, 0x13, - 0xa8, 0x13, 0xa8, 0xf3, 0xc0, 0x50, 0x67, 0xdb, 0xe2, 0xcc, 0xb4, 0xdc, 0xb6, 0xc9, 0x6d, 0xd2, - 0x4e, 0xee, 0x3a, 0xba, 0x2c, 0x1b, 0xf7, 0x16, 0xe7, 0xcc, 0x77, 0xc9, 0xc1, 0xa7, 0xf1, 0xf8, - 0xd8, 0xfe, 0x59, 0x1a, 0x98, 0xc3, 0xbf, 0x0a, 0xd3, 0xbf, 0xea, 0xe3, 0xbf, 0xde, 0x2e, 0xfc, - 0x75, 0xf2, 0xf8, 0x78, 0xf6, 0xf8, 0xd8, 0xfe, 0xd7, 0xe9, 0x6f, 0x27, 0x7f, 0xfd, 0xfa, 0xfa, - 0xf8, 0xf8, 0xaf, 0xc7, 0x47, 0xb3, 0xb1, 0xf0, 0x89, 0x53, 0x03, 0x36, 0x6c, 0xcd, 0x0e, 0x73, - 0xe7, 0x45, 0x5f, 0x85, 0xec, 0x3c, 0x71, 0x58, 0x31, 0x58, 0x31, 0x58, 0x31, 0xf8, 0x4e, 0xe0, - 0x3b, 0x81, 0xef, 0x04, 0xbe, 0x13, 0xf8, 0x4e, 0xe0, 0x3b, 0x39, 0x78, 0xdc, 0xd9, 0x77, 0xbf, - 0xbb, 0xde, 0xff, 0x73, 0xf5, 0xe0, 0xce, 0x29, 0x71, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, - 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0x4e, 0xe0, 0xce, 0xf4, 0xe2, 0x4e, 0xf4, 0xca, - 0x16, 0xe9, 0x85, 0x3c, 0xea, 0x0f, 0x7c, 0x4e, 0xd4, 0x99, 0xf4, 0x58, 0xb2, 0x4f, 0xf6, 0xf5, - 0xf4, 0xeb, 0xf7, 0xd5, 0x27, 0x5b, 0xa1, 0x21, 0x30, 0x73, 0xad, 0x27, 0x87, 0xb5, 0xe9, 0xba, - 0xc4, 0x4e, 0x09, 0xaa, 0x36, 0xc8, 0x64, 0xcf, 0x56, 0xdf, 0x19, 0x21, 0xc4, 0x67, 0xcb, 0x09, - 0x18, 0x51, 0xd3, 0xd9, 0x5c, 0xc6, 0x9b, 0xce, 0x12, 0xf4, 0x88, 0xd6, 0x75, 0x7f, 0x49, 0x7f, - 0xe3, 0x59, 0xf5, 0x1e, 0xd2, 0xc9, 0xd0, 0xf2, 0x64, 0x77, 0x92, 0x90, 0xf3, 0x9e, 0x3c, 0xcf, - 0x61, 0x16, 0x85, 0x23, 0x22, 0x8c, 0xdd, 0xe6, 0x53, 0xa8, 0x4c, 0x03, 0xd7, 0xf3, 0x7a, 0xb6, - 0xdb, 0xa1, 0xd3, 0xa6, 0x21, 0x45, 0xa8, 0x53, 0xa8, 0x53, 0xa8, 0x53, 0xa8, 0xd3, 0xd4, 0xa9, - 0x53, 0xcc, 0x70, 0xd9, 0x78, 0x6f, 0x89, 0x6d, 0x7e, 0xcb, 0x91, 0xc6, 0xbd, 0x57, 0xdd, 0x73, - 0xed, 0x7b, 0x6d, 0x48, 0x4d, 0xaf, 0x11, 0xbd, 0x04, 0x8a, 0x9d, 0x65, 0xf4, 0x13, 0x11, 0x38, - 0x0d, 0xc9, 0x99, 0x3b, 0x4a, 0xb3, 0x76, 0x24, 0x87, 0x79, 0x48, 0xcf, 0xd6, 0x51, 0x31, 0xf4, - 0x44, 0x86, 0x5d, 0xd5, 0x90, 0x93, 0x19, 0x6e, 0x32, 0x43, 0x4d, 0x67, 0x98, 0xf5, 0x6a, 0x1a, - 0xd9, 0xa1, 0x19, 0x86, 0xe5, 0x04, 0x66, 0x9b, 0x39, 0xd6, 0xab, 0xfa, 0x40, 0xaa, 0x19, 0x29, - 0xd9, 0xc1, 0x3e, 0x33, 0x24, 0x9e, 0x53, 0x1c, 0x6c, 0x95, 0x53, 0x1d, 0x6c, 0x95, 0xc3, 0x60, - 0x2b, 0xdd, 0xa8, 0x1a, 0x83, 0xad, 0xa8, 0xd1, 0xf2, 0xc2, 0x5c, 0xf1, 0x62, 0x41, 0x85, 0x69, - 0x26, 0x72, 0x54, 0x55, 0x20, 0x41, 0x13, 0xdd, 0xa4, 0x99, 0x0e, 0x4a, 0x78, 0xb7, 0xa4, 0xcd, - 0x04, 0x21, 0x8e, 0x4e, 0xea, 0x88, 0x53, 0x0d, 0x68, 0x66, 0xa9, 0x26, 0xfe, 0x08, 0x4a, 0x85, - 0xcb, 0xd2, 0x65, 0xa5, 0x5a, 0xb8, 0x2c, 0x27, 0xf8, 0x2c, 0xf6, 0x74, 0x57, 0x6d, 0x24, 0x78, - 0x9e, 0x66, 0xcb, 0xb1, 0x99, 0xcb, 0x4d, 0xcb, 0x09, 0xd4, 0x31, 0xcc, 0x1c, 0x2d, 0x75, 0x10, - 0x53, 0xab, 0xff, 0x51, 0x7b, 0xf8, 0x54, 0xab, 0x03, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0xc8, 0x72, - 0x0e, 0x73, 0xfb, 0x5d, 0xe6, 0x8f, 0xbd, 0x28, 0xea, 0x80, 0x26, 0x5f, 0x52, 0xa0, 0x51, 0x73, - 0xfb, 0xdd, 0xe1, 0xa2, 0x06, 0x09, 0xd6, 0x86, 0xb6, 0x6b, 0x5e, 0xe4, 0x0a, 0xf9, 0xff, 0x35, - 0x47, 0x7d, 0x6b, 0x08, 0x54, 0xe2, 0x32, 0x41, 0x28, 0xb3, 0xa1, 0x3c, 0x32, 0xfe, 0x0d, 0x7a, - 0x4c, 0x42, 0x8f, 0x0d, 0xf7, 0xed, 0xe0, 0x54, 0x18, 0x45, 0x3e, 0x2a, 0x41, 0xfe, 0x29, 0x6e, - 0x64, 0xb8, 0x91, 0xa5, 0xea, 0x46, 0xa6, 0x2f, 0xbf, 0x13, 0x77, 0xb3, 0xd8, 0xd0, 0xc8, 0x93, - 0xe3, 0xb5, 0xbe, 0x8f, 0x67, 0x85, 0xd0, 0xa0, 0x91, 0x05, 0x82, 0x40, 0x23, 0x40, 0x23, 0x40, - 0x23, 0x40, 0x23, 0x40, 0x23, 0x40, 0x23, 0x40, 0x23, 0x40, 0x23, 0xbb, 0xd0, 0x48, 0xcb, 0x6f, - 0x51, 0x62, 0x91, 0x39, 0x72, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, - 0x22, 0x40, 0x22, 0x40, 0x22, 0xbb, 0x90, 0xc8, 0xb3, 0x6f, 0x75, 0x86, 0x06, 0x80, 0x32, 0x50, - 0xb3, 0x4c, 0x13, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, - 0x04, 0x98, 0x64, 0x17, 0x26, 0xf9, 0xbf, 0xd6, 0xd3, 0x13, 0xf3, 0x29, 0x11, 0xc9, 0x22, 0x45, - 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x11, 0xe0, 0x91, - 0x5d, 0x78, 0xa4, 0x6b, 0xb5, 0xcc, 0x96, 0xe7, 0x72, 0xdf, 0x73, 0x28, 0x41, 0xc9, 0x1a, 0xb2, - 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, 0x40, 0x26, - 0x51, 0x90, 0x49, 0xcf, 0xea, 0x07, 0x8c, 0x1a, 0x97, 0x2c, 0x10, 0x05, 0x2a, 0x01, 0x2a, 0x01, - 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0xd9, 0x85, 0x4a, 0xbc, 0x17, - 0xe6, 0x07, 0xf6, 0xdf, 0xa4, 0xa0, 0x64, 0x99, 0x26, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, - 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0x09, 0x30, 0xc9, 0x2e, 0x4c, 0xd2, 0x6b, 0x05, 0xe6, 0x93, - 0xdd, 0xa3, 0xac, 0xba, 0x59, 0x22, 0x09, 0x44, 0x82, 0xf6, 0x4a, 0x8a, 0xb0, 0xe4, 0x70, 0xdb, - 0x2b, 0x01, 0x9b, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9b, 0x1c, 0x2c, 0x36, 0x19, 0x81, 0x08, 0xd6, - 0x36, 0x03, 0xd6, 0xf2, 0xdc, 0x36, 0x1d, 0x40, 0x59, 0xa6, 0x0b, 0x94, 0x02, 0x94, 0x02, 0x94, - 0x02, 0x94, 0x02, 0x94, 0x02, 0x94, 0x02, 0x94, 0x02, 0x94, 0x22, 0x86, 0x52, 0x02, 0xf6, 0xc2, - 0x7c, 0xe6, 0xbc, 0x6a, 0x83, 0x2b, 0x1b, 0xbf, 0x00, 0xb8, 0x05, 0xb8, 0x05, 0xb8, 0x05, 0xb8, - 0x05, 0xb8, 0x05, 0xb8, 0x05, 0xb8, 0x05, 0xb8, 0x45, 0x0c, 0xb7, 0xf4, 0x5d, 0xeb, 0xc5, 0xb2, - 0x1d, 0xeb, 0xc9, 0x61, 0xe4, 0x90, 0x65, 0x1d, 0x6d, 0xa0, 0x15, 0xa0, 0x15, 0xa0, 0x15, 0xa0, - 0x15, 0xa0, 0x15, 0xa0, 0x15, 0xa0, 0x15, 0xa0, 0x95, 0xe8, 0x68, 0xa5, 0xef, 0xb6, 0xe9, 0x93, - 0x67, 0x57, 0x88, 0x02, 0x9f, 0x20, 0x7b, 0x56, 0x1e, 0x9a, 0x20, 0x7b, 0x16, 0xa8, 0x04, 0xa8, - 0x04, 0xa8, 0x04, 0xa8, 0xe4, 0x20, 0x50, 0x89, 0xd7, 0xe7, 0xc4, 0xc3, 0xfc, 0x56, 0x28, 0x02, - 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0xec, - 0xc4, 0x23, 0xb4, 0xe3, 0xfc, 0x56, 0x28, 0x02, 0x8f, 0x20, 0x7e, 0xa3, 0x08, 0x4a, 0x10, 0xbf, - 0x01, 0x32, 0x01, 0x32, 0x01, 0x32, 0x01, 0x32, 0x39, 0x2c, 0x64, 0x42, 0x39, 0xda, 0x6f, 0x89, - 0x1e, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, 0x09, 0x50, - 0x89, 0x00, 0x2a, 0xd1, 0xd1, 0xc2, 0x7e, 0x03, 0x5d, 0xa0, 0x14, 0xc4, 0x72, 0xe4, 0x01, 0x0a, - 0x62, 0x39, 0xc0, 0x26, 0xc0, 0x26, 0xc0, 0x26, 0xc0, 0x26, 0x07, 0x85, 0x4d, 0x68, 0x9b, 0xd8, - 0xaf, 0xa5, 0x0a, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, 0x02, 0x5c, - 0x02, 0x5c, 0xb2, 0x13, 0x97, 0x50, 0xb7, 0x8c, 0x5d, 0x43, 0x13, 0x98, 0x04, 0x11, 0x1d, 0x45, - 0x60, 0x82, 0x88, 0x0e, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x09, 0xd0, 0x49, 0x4a, 0xd1, 0xc9, 0x91, - 0x46, 0x1e, 0x35, 0xae, 0x5c, 0xd7, 0xe3, 0xd6, 0xf0, 0x48, 0xa4, 0xd8, 0xd2, 0x08, 0x5a, 0xdf, - 0x58, 0xd7, 0xea, 0x59, 0xfc, 0xdb, 0x50, 0xe3, 0x9e, 0x7b, 0x3d, 0xe6, 0xb6, 0x46, 0xe8, 0x61, - 0x64, 0x73, 0x6c, 0xd7, 0x72, 0xcc, 0x36, 0x7b, 0xb1, 0x5b, 0xec, 0x7c, 0xf9, 0xbf, 0x1d, 0xaf, - 0x63, 0xb7, 0x2c, 0xc7, 0x6c, 0x7d, 0xb3, 0x5c, 0x97, 0x39, 0xc1, 0xf9, 0xe4, 0x87, 0x73, 0xc6, - 0xbf, 0x31, 0xdf, 0x65, 0xfc, 0x3c, 0xe0, 0x16, 0x67, 0x62, 0x66, 0x2b, 0xfa, 0x66, 0x45, 0xfb, - 0x64, 0xc4, 0xed, 0x94, 0xdd, 0x46, 0x9d, 0xdb, 0x27, 0x60, 0xf4, 0x8c, 0x80, 0xfb, 0xfd, 0x16, - 0x77, 0x27, 0x76, 0xb3, 0x3e, 0xf9, 0xaa, 0xf7, 0xa3, 0x6f, 0x6a, 0x5e, 0x8f, 0x09, 0x37, 0x6b, - 0x53, 0xc2, 0x47, 0x34, 0xfb, 0x1b, 0x61, 0x6f, 0x0d, 0xdb, 0x6d, 0xb3, 0xe8, 0x0a, 0x73, 0xae, - 0xa4, 0x7d, 0xf8, 0x58, 0xc4, 0xb3, 0x13, 0xd3, 0xa2, 0xc2, 0xe0, 0x58, 0x06, 0x0c, 0x2b, 0x82, - 0x5f, 0x59, 0xb0, 0xab, 0x0c, 0x6e, 0x95, 0xc1, 0xac, 0x3a, 0x78, 0xa5, 0x95, 0x6b, 0x61, 0x30, - 0x1a, 0x9e, 0x9c, 0xc3, 0xac, 0x67, 0x9f, 0x3d, 0x8b, 0x9c, 0xda, 0x84, 0x11, 0xf3, 0x55, 0x81, - 0x67, 0xee, 0x27, 0xaa, 0xe3, 0xec, 0xec, 0x7c, 0xac, 0x38, 0xce, 0xc7, 0xbc, 0x1f, 0xab, 0x8c, - 0x76, 0x7c, 0x16, 0x04, 0x32, 0x52, 0x3a, 0x7e, 0x50, 0x4c, 0x4e, 0xf3, 0x90, 0x53, 0xc8, 0xe9, - 0xf2, 0xeb, 0xbc, 0xb7, 0x7d, 0xb1, 0x83, 0x6b, 0x4d, 0xb9, 0x43, 0x70, 0xe7, 0x67, 0x77, 0xcb, - 0xd1, 0xf3, 0x82, 0xbb, 0x26, 0xc6, 0xc2, 0xca, 0xfe, 0x18, 0x15, 0x3f, 0x0c, 0x91, 0xff, 0x45, - 0xd5, 0xef, 0x42, 0xe6, 0x6f, 0x21, 0xf3, 0xb3, 0xd0, 0xf9, 0x57, 0xf4, 0x22, 0x7b, 0x51, 0x91, - 0x08, 0x1f, 0xec, 0x7d, 0x7b, 0x0d, 0xe6, 0xa1, 0xa5, 0xba, 0x63, 0x73, 0x85, 0x22, 0xdc, 0x9a, - 0x70, 0x6b, 0xc2, 0xad, 0x29, 0xc9, 0x39, 0xe2, 0xc8, 0x92, 0x02, 0x69, 0x6e, 0x44, 0x9e, 0xe7, - 0x5e, 0xcb, 0xec, 0x39, 0x16, 0x7f, 0xf6, 0xfc, 0xee, 0xdb, 0x96, 0xd7, 0xed, 0x79, 0x2e, 0x73, - 0x79, 0xb0, 0xfe, 0xd7, 0xc3, 0xdf, 0x72, 0xdf, 0x72, 0x83, 0x16, 0xb3, 0x5f, 0x98, 0xff, 0x76, - 0xee, 0xe7, 0xe5, 0x7f, 0x5a, 0x56, 0x1a, 0xc1, 0xf2, 0x07, 0xa6, 0x17, 0xde, 0xa5, 0x5f, 0x0b, - 0xe0, 0x5f, 0xaa, 0xb3, 0xbd, 0xb1, 0x03, 0x7e, 0xc5, 0xb9, 0xaf, 0x76, 0xbe, 0xb7, 0xb6, 0x5b, - 0x73, 0xd8, 0x90, 0xc5, 0x87, 0x58, 0xda, 0xed, 0x3b, 0x8e, 0xc2, 0xe9, 0xdc, 0x5a, 0x3f, 0xe8, - 0x88, 0xdd, 0xf9, 0x6d, 0xe6, 0xb3, 0xf6, 0xbb, 0xd7, 0x09, 0xa9, 0x04, 0xc7, 0xe5, 0xe6, 0x38, - 0x41, 0xdd, 0x6e, 0xcd, 0x13, 0x83, 0xc9, 0x82, 0xc9, 0x82, 0xc9, 0x3a, 0x50, 0x93, 0x15, 0xfe, - 0x76, 0xe4, 0x22, 0x85, 0xe3, 0x5f, 0x8f, 0xe7, 0x7a, 0xe2, 0x0f, 0x9a, 0x38, 0xb2, 0xb4, 0x39, - 0xfe, 0x85, 0xfc, 0xe2, 0x16, 0x67, 0xf2, 0x4e, 0x82, 0xf1, 0xe3, 0x31, 0xfb, 0x08, 0x0a, 0xf0, - 0x11, 0xc0, 0x47, 0x00, 0x1f, 0x01, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x7c, 0x04, 0xf0, 0x11, - 0xc0, 0x47, 0x00, 0x1f, 0x01, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0x16, 0x7c, 0x04, 0x99, 0xf1, 0x11, - 0x20, 0x37, 0x50, 0x61, 0xf7, 0xc8, 0x53, 0x03, 0x3f, 0x4e, 0xe8, 0xc6, 0x98, 0x75, 0xb4, 0xb4, - 0x46, 0xd3, 0x0a, 0x02, 0xbb, 0xe3, 0x4e, 0xc1, 0x8c, 0x60, 0x26, 0xd2, 0x36, 0x62, 0xc8, 0x4e, - 0x42, 0x76, 0x92, 0xa2, 0x06, 0x10, 0xce, 0x4e, 0x9a, 0xf1, 0x9f, 0xbc, 0xf3, 0x71, 0x8e, 0x06, - 0xb2, 0x94, 0xe0, 0x81, 0xcc, 0x9a, 0x07, 0x52, 0x32, 0x81, 0x6f, 0x85, 0x71, 0xa4, 0x12, 0xf9, - 0x14, 0x45, 0x05, 0x57, 0x37, 0x5c, 0xdd, 0xf6, 0x7f, 0x75, 0x93, 0x15, 0xbd, 0x99, 0x95, 0x72, - 0x1c, 0xaf, 0x25, 0x7f, 0x3d, 0x58, 0x6f, 0xb5, 0x66, 0x34, 0x15, 0x4f, 0x87, 0xa6, 0x38, 0x4e, - 0x59, 0x44, 0x29, 0x45, 0x55, 0x93, 0xc8, 0x52, 0x8b, 0xae, 0x36, 0x11, 0xd6, 0x26, 0xca, 0xfa, - 0x44, 0x5a, 0x4d, 0xb4, 0x15, 0x45, 0x9c, 0xce, 0x4b, 0xb3, 0xc2, 0x79, 0x6d, 0xd6, 0xb2, 0xbb, - 0x96, 0xa3, 0x54, 0x5b, 0xbd, 0x62, 0x45, 0x0b, 0x04, 0xb4, 0x56, 0x2a, 0x4c, 0x8b, 0x04, 0x44, - 0x69, 0x2a, 0xb8, 0xa7, 0x7f, 0x68, 0xa4, 0xeb, 0x98, 0xba, 0xa2, 0x7b, 0xf9, 0x38, 0x0a, 0x6f, - 0x68, 0xc9, 0x12, 0x57, 0x78, 0x6f, 0x3e, 0xf1, 0x1c, 0x19, 0xfd, 0xc1, 0x1b, 0xc2, 0xa3, 0x22, - 0xac, 0xfc, 0x5e, 0x3e, 0xaa, 0x22, 0x8e, 0x6a, 0x70, 0x94, 0x0c, 0x2a, 0x8d, 0x3d, 0x95, 0xa3, - 0x2b, 0xb0, 0xea, 0x9c, 0xab, 0xc0, 0xe4, 0x14, 0x96, 0x62, 0x8d, 0x0f, 0x62, 0x4c, 0x18, 0x90, - 0x0e, 0x90, 0x0e, 0x90, 0x2e, 0xa1, 0x90, 0x8e, 0xb9, 0xfd, 0x2e, 0xf3, 0x29, 0xee, 0x5e, 0x0b, - 0xa0, 0xae, 0x44, 0x40, 0xab, 0xe6, 0xf6, 0xbb, 0xc3, 0xc5, 0x0e, 0x52, 0xa8, 0x5c, 0xdb, 0x2c, - 0x68, 0xf9, 0x76, 0x8f, 0xf6, 0x9a, 0x3c, 0x4f, 0x14, 0x4a, 0x15, 0x4a, 0x15, 0x4a, 0x35, 0xa1, - 0x4a, 0x35, 0xe0, 0xbe, 0xed, 0x76, 0x28, 0xf5, 0xe9, 0x45, 0x0a, 0x75, 0xa0, 0x58, 0x1b, 0x97, - 0x9d, 0x9b, 0x2a, 0xd2, 0xde, 0x05, 0x7a, 0x0f, 0x7a, 0x0f, 0x7a, 0x2f, 0x76, 0xbd, 0xd7, 0xb7, - 0x5d, 0x5e, 0x2c, 0x10, 0xea, 0xbd, 0x2a, 0xdc, 0x78, 0x7b, 0x51, 0x70, 0x70, 0xe3, 0xc5, 0xe7, - 0xc6, 0xd3, 0x75, 0x54, 0xa5, 0xc2, 0x65, 0xe9, 0xb2, 0x52, 0x2d, 0x5c, 0x96, 0xe1, 0xcf, 0x3b, - 0x04, 0x7f, 0xde, 0x52, 0x3a, 0x1b, 0x1d, 0xf0, 0x5a, 0x26, 0x0c, 0x08, 0x06, 0x08, 0x06, 0x08, - 0x96, 0x50, 0x08, 0xa6, 0x9e, 0x50, 0xbf, 0x72, 0xf7, 0xa4, 0x00, 0x61, 0xf3, 0x09, 0xf6, 0xd3, - 0xc3, 0x7b, 0xbb, 0x9c, 0xc1, 0x3c, 0xff, 0x6f, 0x2b, 0xd9, 0xcc, 0xf3, 0xff, 0x38, 0x57, 0xe0, - 0x15, 0xfe, 0x4e, 0xa1, 0xba, 0x6b, 0xbf, 0x7a, 0xbb, 0x6b, 0xf5, 0x7a, 0xb6, 0xdb, 0xa1, 0xd3, - 0xd7, 0x53, 0x82, 0xd0, 0xd3, 0xd0, 0xd3, 0xd0, 0xd3, 0x09, 0xd5, 0xd3, 0x76, 0x9b, 0xb9, 0xdc, - 0xe6, 0xaf, 0xc4, 0xba, 0x9a, 0x00, 0xeb, 0x1b, 0x1f, 0x27, 0xaf, 0xf6, 0xce, 0x0a, 0x08, 0x79, - 0x79, 0xba, 0xf0, 0xdf, 0x1f, 0xae, 0x6e, 0x6b, 0xcd, 0xdb, 0xab, 0xfb, 0xfb, 0x8f, 0x9f, 0x3e, - 0x34, 0xef, 0x1f, 0xee, 0xea, 0x77, 0xd7, 0x77, 0x37, 0x06, 0x65, 0x37, 0xfb, 0x80, 0xec, 0xb6, - 0x4f, 0x7b, 0xe3, 0x5f, 0xd8, 0x87, 0x0f, 0xbf, 0xdf, 0x37, 0xeb, 0x46, 0x12, 0x6f, 0xbb, 0x9a, - 0x16, 0xfc, 0xee, 0xf6, 0xfe, 0x90, 0x96, 0xfb, 0xe1, 0xc0, 0x96, 0xfb, 0xfb, 0x7d, 0xf3, 0xf7, - 0x43, 0x5a, 0xf0, 0xf5, 0xbb, 0x87, 0x43, 0x5a, 0xee, 0x15, 0x29, 0x3b, 0x93, 0x50, 0x6a, 0xa4, - 0x76, 0x8a, 0x88, 0xca, 0x75, 0xc1, 0xeb, 0x71, 0x3d, 0x6e, 0x9e, 0x65, 0xc2, 0xb8, 0x3e, 0xe0, - 0xfa, 0x80, 0xeb, 0x03, 0xdc, 0x3c, 0xb2, 0x6e, 0x9e, 0xb8, 0xfb, 0x28, 0xec, 0x57, 0x2d, 0x73, - 0xdf, 0x7e, 0xea, 0x73, 0xcb, 0x7f, 0x35, 0x03, 0xc7, 0xe3, 0x26, 0x71, 0xee, 0xc3, 0x5a, 0xea, - 0x50, 0xd0, 0x50, 0xd0, 0x50, 0xd0, 0x49, 0xf5, 0xef, 0x10, 0x67, 0x42, 0xa0, 0xa0, 0x49, 0xd6, - 0xae, 0x69, 0x0a, 0xaf, 0x17, 0xf2, 0xa5, 0x6a, 0xe9, 0xa2, 0x58, 0x29, 0x5d, 0x20, 0x25, 0x82, - 0xfa, 0xcc, 0x72, 0xba, 0xcf, 0xac, 0x8a, 0x94, 0x88, 0x78, 0x6f, 0xdb, 0x83, 0x94, 0x94, 0xc7, - 0x2b, 0x36, 0xbf, 0x0a, 0xe9, 0x68, 0x68, 0xe3, 0xb4, 0xa5, 0x5d, 0xd1, 0xf9, 0xec, 0x67, 0xa9, - 0x3e, 0xda, 0xf2, 0x7b, 0x2d, 0xd3, 0x89, 0x51, 0x0d, 0x1b, 0x93, 0xe4, 0x03, 0xa3, 0xfb, 0xa2, - 0x36, 0x70, 0x8b, 0x16, 0x1e, 0xba, 0x75, 0x54, 0x66, 0xbb, 0x2f, 0x4a, 0x8d, 0xb3, 0xdc, 0x8f, - 0x0e, 0x93, 0x9b, 0x11, 0xb0, 0x72, 0x00, 0x32, 0xb3, 0x02, 0x88, 0x00, 0xae, 0xf4, 0xec, 0x00, - 0xe8, 0x30, 0xe8, 0x30, 0x65, 0x1d, 0x86, 0x36, 0x44, 0xf0, 0xad, 0xc1, 0xb7, 0x06, 0xdf, 0x9a, - 0x14, 0xe7, 0xa1, 0x0d, 0x51, 0xe6, 0xbd, 0x76, 0x68, 0x43, 0x84, 0x36, 0x44, 0xf0, 0xd1, 0xa5, - 0xc6, 0x47, 0x87, 0x36, 0x44, 0x80, 0x74, 0x80, 0x74, 0x80, 0x74, 0xd2, 0x9c, 0x87, 0x36, 0x44, - 0x5a, 0x94, 0x2b, 0xda, 0x10, 0x41, 0xa9, 0x42, 0xa9, 0x1e, 0xaa, 0x52, 0x45, 0x1b, 0x22, 0xb4, - 0x21, 0x82, 0xde, 0x83, 0xde, 0x3b, 0x34, 0xbd, 0x87, 0x36, 0x44, 0x49, 0x71, 0xe3, 0xa1, 0x0d, - 0x11, 0xda, 0x10, 0xa1, 0x0d, 0xd1, 0x41, 0xf9, 0xf3, 0xd0, 0x86, 0x08, 0x10, 0x0c, 0x10, 0xec, - 0xd0, 0x21, 0x18, 0xda, 0x10, 0xa5, 0x4d, 0x6f, 0xa3, 0x0d, 0x11, 0xf4, 0x34, 0xf4, 0xf4, 0xa1, - 0xe9, 0x69, 0xb4, 0x21, 0x42, 0x1b, 0x22, 0xb4, 0x21, 0xca, 0xf0, 0x72, 0xd1, 0x86, 0x28, 0xdb, - 0x0b, 0x46, 0x1b, 0xa2, 0x7d, 0xbb, 0x79, 0xd0, 0x86, 0x08, 0x6d, 0x88, 0x70, 0x7d, 0xc0, 0xf5, - 0x01, 0x6e, 0x9e, 0x44, 0xba, 0x79, 0xd0, 0x86, 0x08, 0x6d, 0x88, 0xa0, 0xa0, 0xa1, 0xa0, 0x0f, - 0xd4, 0xbf, 0x83, 0x36, 0x44, 0xd1, 0x5f, 0x0c, 0x6d, 0x88, 0xe6, 0xbe, 0x00, 0x29, 0x11, 0x68, - 0x43, 0x44, 0x7e, 0x57, 0x46, 0x1b, 0xa2, 0x88, 0xf6, 0x2d, 0xf5, 0x6d, 0x88, 0xc6, 0x9d, 0x2d, - 0xe2, 0xea, 0xe0, 0x71, 0xa4, 0xf1, 0x50, 0x86, 0xf0, 0x48, 0x36, 0xf1, 0xd7, 0xb8, 0xb1, 0x03, - 0x7e, 0xc5, 0xb9, 0x5c, 0xb3, 0x83, 0xa1, 0x41, 0xaa, 0x39, 0x6c, 0xb4, 0xb7, 0xc6, 0xdb, 0x63, - 0xb7, 0xef, 0x38, 0x12, 0xad, 0x4a, 0x6e, 0xad, 0x1f, 0xea, 0x44, 0xee, 0xfc, 0x36, 0xf3, 0x59, - 0xfb, 0xdd, 0xeb, 0x84, 0x84, 0xd6, 0x0d, 0x57, 0xe4, 0xfe, 0xfd, 0x71, 0xbd, 0x21, 0xd5, 0x49, - 0xc6, 0xef, 0xb7, 0xb8, 0x3b, 0xc1, 0x6b, 0xf5, 0xc9, 0x0b, 0xbd, 0x1f, 0xbd, 0x4f, 0xf3, 0x7a, - 0xfc, 0x75, 0xcd, 0xab, 0xd9, 0x57, 0x1c, 0xe9, 0x11, 0x8c, 0x68, 0x9f, 0x8c, 0x78, 0x92, 0xb2, - 0x27, 0x18, 0xf3, 0xc9, 0x45, 0xdb, 0xcb, 0xdd, 0x3b, 0x13, 0x61, 0x57, 0x0c, 0x8f, 0x47, 0xdf, - 0x8a, 0xd9, 0xbd, 0x91, 0x47, 0xad, 0xb0, 0x12, 0x84, 0x99, 0xc2, 0xd7, 0x65, 0x99, 0x6b, 0xb1, - 0xe2, 0xf5, 0x57, 0xf6, 0x9a, 0xab, 0x7c, 0x9d, 0x55, 0xbe, 0xb6, 0xaa, 0x5f, 0x4f, 0x69, 0xa5, - 0x51, 0xb4, 0xd9, 0x8e, 0xd1, 0x9a, 0x72, 0x87, 0xe0, 0xce, 0x4f, 0x0f, 0x7c, 0xf2, 0xbc, 0xa8, - 0x9d, 0x95, 0xba, 0x29, 0x49, 0x7b, 0x7e, 0x54, 0x3c, 0x3d, 0x44, 0x9e, 0x1d, 0x55, 0x4f, 0x0e, - 0x99, 0xe7, 0x86, 0xcc, 0x53, 0x43, 0xe7, 0x99, 0xd1, 0x8b, 0xe9, 0x64, 0xfb, 0x4f, 0x2d, 0xbb, - 0x40, 0x3b, 0xbe, 0xe5, 0xf6, 0x1d, 0xcb, 0xb7, 0xf9, 0xab, 0x7a, 0x37, 0xb8, 0x2d, 0xb4, 0xd1, - 0xe6, 0x12, 0x2d, 0xe2, 0xf6, 0xee, 0x24, 0x4d, 0x6b, 0x9b, 0x4b, 0x9a, 0x24, 0x37, 0x8a, 0xe4, - 0x36, 0xda, 0xa4, 0xb6, 0x70, 0x81, 0xf5, 0x87, 0x8f, 0xef, 0xbe, 0xd4, 0xaf, 0x1e, 0xfe, 0x6c, - 0x7e, 0xbe, 0xb9, 0xab, 0x37, 0x3f, 0x3c, 0x5c, 0x7d, 0xfa, 0x72, 0x73, 0xf5, 0xf0, 0xb1, 0xfe, - 0xa7, 0x2a, 0x53, 0x12, 0x26, 0xb2, 0x11, 0x27, 0xf0, 0x0d, 0xd7, 0x3c, 0x5e, 0x6e, 0xe1, 0xac, - 0xfc, 0x81, 0xc0, 0xf3, 0xff, 0x26, 0xb9, 0x2b, 0xcc, 0x9f, 0x15, 0xb2, 0xbe, 0x44, 0x92, 0xf5, - 0x1d, 0xed, 0xc7, 0xb3, 0x38, 0x48, 0x70, 0xa3, 0x5a, 0xce, 0x6d, 0xb3, 0x1b, 0x74, 0x4c, 0xab, - 0xcf, 0x3d, 0x02, 0x84, 0x32, 0x4f, 0x0d, 0x98, 0x04, 0x98, 0x04, 0x98, 0x44, 0x92, 0x73, 0x9e, - 0x3c, 0xcf, 0x61, 0x96, 0x4b, 0x81, 0x47, 0xf2, 0x29, 0x50, 0x3f, 0xec, 0x47, 0x8f, 0xb5, 0x38, - 0x6b, 0xd3, 0xa9, 0xa0, 0x90, 0x22, 0xd4, 0x10, 0xd4, 0x10, 0xd4, 0x90, 0x24, 0xe7, 0x28, 0xb7, - 0x08, 0x52, 0x6c, 0x0d, 0x14, 0xaf, 0x16, 0xe2, 0xbe, 0xe5, 0x06, 0x5d, 0x9b, 0xd3, 0x69, 0xa1, - 0x90, 0x22, 0xb4, 0x10, 0xb4, 0x10, 0xb4, 0xd0, 0xe1, 0x68, 0xa1, 0x43, 0x0b, 0x80, 0x7b, 0xdc, - 0x95, 0x1a, 0x2d, 0x25, 0x10, 0x81, 0x16, 0x08, 0x0d, 0xca, 0x8d, 0x5f, 0x51, 0x1a, 0xbb, 0xa2, - 0x1c, 0x9e, 0x2a, 0x20, 0x3c, 0x85, 0xf0, 0x54, 0xc4, 0xd7, 0x94, 0x0e, 0x4f, 0x3d, 0x59, 0xad, - 0xef, 0x1d, 0xdf, 0xeb, 0xbb, 0x6d, 0xf3, 0xc9, 0xf1, 0x5a, 0xdf, 0x4d, 0xe6, 0xfb, 0x9e, 0x1f, - 0xa8, 0x03, 0x9e, 0x4d, 0x84, 0x81, 0x7b, 0x80, 0x7b, 0x80, 0x7b, 0x24, 0x39, 0xa7, 0xe5, 0xf5, - 0x5d, 0xce, 0x7c, 0xa5, 0x41, 0x26, 0x53, 0x51, 0x52, 0xc8, 0xff, 0x26, 0xca, 0xc8, 0x27, 0x28, - 0x5b, 0xa0, 0xcc, 0xc0, 0x27, 0xce, 0xe2, 0xa6, 0xee, 0x3d, 0xa8, 0x23, 0x59, 0x9b, 0x20, 0xc0, - 0x43, 0x9a, 0x50, 0xaf, 0xeb, 0x08, 0xf2, 0x17, 0xa5, 0x52, 0xa5, 0x5a, 0x2a, 0xe5, 0xaa, 0xc5, - 0x6a, 0xee, 0xb2, 0x5c, 0xce, 0x57, 0xf2, 0xe5, 0x04, 0x9f, 0xca, 0x9e, 0x52, 0xd6, 0x1b, 0x09, - 0xf6, 0xc8, 0xb4, 0xbc, 0x36, 0x33, 0x5f, 0x6c, 0xcf, 0x19, 0xdd, 0x72, 0x08, 0xf0, 0xc9, 0x32, - 0x41, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, - 0x92, 0x88, 0xdb, 0x3c, 0xf2, 0x6a, 0xb0, 0x89, 0x8f, 0x83, 0x00, 0x96, 0x2c, 0xd1, 0x03, 0x2a, - 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x01, 0x2a, 0x11, 0x44, - 0x25, 0x01, 0x6b, 0x79, 0x6e, 0x9b, 0x10, 0x96, 0x4c, 0x09, 0x02, 0x97, 0x00, 0x97, 0x00, 0x97, - 0x00, 0x97, 0x00, 0x97, 0x00, 0x97, 0x00, 0x97, 0x00, 0x97, 0x44, 0xc5, 0x25, 0x81, 0xeb, 0x13, - 0x80, 0x91, 0x21, 0x15, 0x35, 0x04, 0x92, 0x07, 0x02, 0x01, 0x02, 0x49, 0x1b, 0x02, 0x91, 0x4d, - 0xf2, 0x0a, 0x09, 0x58, 0x2f, 0x84, 0xe3, 0x7a, 0x86, 0xc4, 0xd0, 0xca, 0x35, 0x8a, 0x90, 0xf2, - 0xd7, 0x1e, 0x0b, 0xd0, 0xc7, 0x95, 0x82, 0xf0, 0x92, 0x04, 0x8f, 0x77, 0x16, 0x4d, 0x5c, 0x97, - 0x78, 0xae, 0xcd, 0x5a, 0x76, 0xd7, 0x72, 0x94, 0x2e, 0x18, 0x2b, 0x16, 0xb3, 0x40, 0x40, 0x6b, - 0x05, 0x66, 0x15, 0xd0, 0x1e, 0x56, 0xee, 0x38, 0x0a, 0x18, 0x94, 0x9b, 0x96, 0xae, 0xb0, 0x45, - 0x1c, 0x15, 0xe6, 0xe3, 0xca, 0x83, 0x36, 0xdb, 0x0d, 0xb8, 0xe5, 0x72, 0x3a, 0xe0, 0x36, 0x25, - 0x08, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, 0x06, 0xf0, - 0x06, 0xf0, 0xa6, 0x03, 0xbc, 0x71, 0xe6, 0xbf, 0x58, 0x0e, 0x25, 0x7a, 0x9b, 0x50, 0x04, 0x7c, - 0x03, 0x7c, 0x03, 0x7c, 0x4b, 0x1c, 0x7c, 0x0b, 0xb8, 0xc5, 0x4d, 0x22, 0x21, 0x3d, 0xa6, 0x09, - 0xf4, 0x87, 0xa4, 0xbe, 0xb8, 0x63, 0xdb, 0x60, 0xb8, 0x96, 0xeb, 0xa9, 0xa5, 0xf2, 0x00, 0xc4, - 0xe5, 0x80, 0x0c, 0x0e, 0x7d, 0x2e, 0x93, 0xbe, 0x84, 0x04, 0xe0, 0xba, 0x64, 0xe3, 0xba, 0xae, - 0x45, 0x38, 0x25, 0x73, 0x48, 0x0c, 0x68, 0x0e, 0x68, 0x0e, 0x68, 0x0e, 0xce, 0x38, 0x38, 0xe3, - 0xe0, 0x8c, 0x03, 0x8e, 0x83, 0x33, 0x0e, 0xa0, 0x4d, 0x0b, 0x68, 0x33, 0xb9, 0xdd, 0x65, 0xa4, - 0xc8, 0x6d, 0x4c, 0x11, 0xf0, 0x0d, 0xf0, 0x0d, 0xf0, 0x2d, 0x71, 0xf0, 0x6d, 0x28, 0x9b, 0xdc, - 0x6e, 0x7d, 0x0f, 0x48, 0x01, 0x1c, 0x5c, 0x71, 0x70, 0xc5, 0x01, 0xc2, 0xc1, 0x15, 0x07, 0x54, - 0x97, 0x08, 0x54, 0x47, 0xa0, 0x58, 0x66, 0x80, 0xce, 0x76, 0x81, 0xe5, 0x80, 0xe5, 0x80, 0xe5, - 0xe0, 0x8a, 0x83, 0x2b, 0x0e, 0xae, 0x38, 0xe0, 0x38, 0xb8, 0xe2, 0x00, 0xda, 0xf4, 0x80, 0x36, - 0x6a, 0x57, 0xdc, 0x94, 0x22, 0xe0, 0x1b, 0xe0, 0x1b, 0xe0, 0x1b, 0x5c, 0x71, 0x70, 0xc5, 0xc1, - 0x15, 0x07, 0x08, 0x07, 0x57, 0x1c, 0x50, 0x5d, 0x0c, 0x4f, 0xca, 0xb6, 0x34, 0x51, 0x1c, 0x5c, - 0x17, 0xd2, 0xd1, 0x34, 0xc0, 0x6e, 0x34, 0xf7, 0xed, 0x5c, 0xa1, 0xdf, 0xd0, 0xf8, 0xe5, 0xb8, - 0xdf, 0x6f, 0x71, 0x77, 0x3a, 0xc2, 0x7e, 0xf2, 0x02, 0xef, 0x47, 0xdf, 0xdf, 0xbc, 0x1e, 0x7f, - 0x5d, 0xf3, 0x8e, 0xbb, 0xcd, 0xda, 0xf0, 0x8b, 0x12, 0xdc, 0xbe, 0xe9, 0x99, 0xb5, 0xcc, 0x96, - 0xe7, 0xfb, 0xa3, 0x39, 0xca, 0xe6, 0xd3, 0x58, 0xf4, 0x14, 0x9b, 0x39, 0xad, 0xa1, 0x89, 0xe6, - 0x92, 0x68, 0xed, 0xa4, 0x08, 0xc2, 0xd1, 0x5c, 0x12, 0xcd, 0x25, 0x35, 0xa0, 0x5d, 0x34, 0x97, - 0xdc, 0x3b, 0x8a, 0x45, 0x73, 0xc9, 0x63, 0x34, 0x97, 0x8c, 0x82, 0x4e, 0x5e, 0x39, 0xa3, 0x87, - 0x27, 0x23, 0xa2, 0xc0, 0x27, 0xc0, 0x27, 0xc0, 0x27, 0xc0, 0x27, 0xc0, 0x27, 0xc0, 0x27, 0xc0, - 0x27, 0xc0, 0x27, 0x02, 0xf8, 0xa4, 0xef, 0x4e, 0xc0, 0x84, 0xf5, 0xe4, 0x30, 0xb2, 0xa1, 0x61, - 0x1b, 0x29, 0x03, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, - 0x00, 0xa9, 0x48, 0x23, 0x95, 0xa1, 0xcd, 0xd2, 0x02, 0x54, 0xc6, 0x84, 0x81, 0x53, 0x80, 0x53, - 0x80, 0x53, 0x80, 0x53, 0x80, 0x53, 0x80, 0x53, 0x80, 0x53, 0x80, 0x53, 0x22, 0x6e, 0x73, 0xcf, - 0x0b, 0xb8, 0x39, 0xc4, 0x14, 0x4f, 0x8c, 0x60, 0xac, 0xd8, 0x02, 0x35, 0x8c, 0x17, 0x03, 0x22, - 0x39, 0x30, 0x44, 0x82, 0xf1, 0x62, 0x7a, 0x84, 0x92, 0x52, 0x38, 0x37, 0x0a, 0x29, 0xca, 0x39, - 0x34, 0x95, 0x73, 0xcc, 0x76, 0x17, 0x25, 0x1d, 0x4b, 0xbc, 0x97, 0x9e, 0x8a, 0xdc, 0xfc, 0x05, - 0xea, 0x39, 0xe4, 0xce, 0x03, 0x25, 0xb9, 0x28, 0xc9, 0x45, 0xf1, 0x46, 0x3c, 0x97, 0x26, 0xf5, - 0xef, 0xc7, 0x9c, 0x31, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, 0xa0, 0x38, - 0xa0, 0x38, 0xa0, 0xb8, 0xc3, 0x43, 0x71, 0x18, 0x38, 0xb6, 0x57, 0x1c, 0x07, 0x0c, 0x87, 0xc6, - 0x2a, 0xb1, 0xe2, 0x37, 0x0c, 0x1c, 0x3b, 0x10, 0x10, 0x87, 0xd6, 0x2a, 0x68, 0xad, 0x82, 0xd6, - 0x2a, 0x18, 0x38, 0xa6, 0x6e, 0x32, 0x30, 0x70, 0x0c, 0x5e, 0x39, 0x78, 0xe5, 0xe0, 0x95, 0x83, - 0x57, 0x0e, 0x5e, 0x39, 0x00, 0x3a, 0x78, 0xe5, 0x80, 0xde, 0xf4, 0xa3, 0x37, 0x4c, 0x1e, 0x83, - 0x57, 0x0e, 0x5e, 0xb9, 0x83, 0xc1, 0x6f, 0x68, 0x77, 0x0c, 0x9f, 0x1c, 0x20, 0x1c, 0x7c, 0x72, - 0x40, 0x75, 0x19, 0x46, 0x75, 0x98, 0x3c, 0x06, 0x9f, 0x1c, 0x7c, 0x72, 0xf0, 0xc9, 0xc1, 0x27, - 0x07, 0x9f, 0x1c, 0x00, 0x1d, 0x7c, 0x72, 0x40, 0x6f, 0xe9, 0x42, 0x6f, 0x18, 0x41, 0x06, 0x9f, - 0x1c, 0x7c, 0x72, 0xf0, 0xc9, 0xc1, 0x27, 0x07, 0x9f, 0x1c, 0x20, 0x1c, 0x7c, 0x72, 0x40, 0x75, - 0xc9, 0x40, 0x75, 0x18, 0x41, 0xb6, 0x3c, 0x82, 0x8c, 0xa0, 0x37, 0xd1, 0xb1, 0xd0, 0x28, 0xb2, - 0x7b, 0x2f, 0xe0, 0xbf, 0xb3, 0xd6, 0x3b, 0x96, 0xe8, 0x81, 0x64, 0x3d, 0x9f, 0x11, 0xf6, 0x7f, - 0x9a, 0x23, 0x86, 0xf6, 0x4f, 0x68, 0xff, 0xa4, 0x08, 0xc2, 0xd1, 0xfe, 0x49, 0x85, 0xfb, 0xd0, - 0xfe, 0x49, 0x48, 0x48, 0x71, 0x95, 0x46, 0x38, 0x24, 0xee, 0xeb, 0x34, 0xc2, 0x21, 0xd9, 0xbf, - 0x4b, 0x23, 0x1c, 0x82, 0x70, 0x08, 0x2e, 0xce, 0xa9, 0xb9, 0x38, 0xa3, 0xfd, 0x13, 0x50, 0x1c, - 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0xdc, 0xc1, 0xa1, - 0x38, 0xb4, 0x7f, 0xda, 0x2b, 0x8e, 0x03, 0x86, 0x43, 0x52, 0x4b, 0xac, 0xf8, 0x0d, 0xed, 0x9f, - 0x0e, 0x04, 0xc4, 0x21, 0xad, 0x05, 0x69, 0x2d, 0x48, 0x6b, 0x41, 0xfb, 0x27, 0x75, 0x93, 0x81, - 0xf6, 0x4f, 0xf0, 0xca, 0xc1, 0x2b, 0x07, 0xaf, 0x1c, 0xbc, 0x72, 0xf0, 0xca, 0x01, 0xd0, 0xc1, - 0x2b, 0x07, 0xf4, 0xa6, 0x1f, 0xbd, 0xa1, 0xfd, 0x13, 0xbc, 0x72, 0xf0, 0xca, 0x1d, 0x0c, 0x7e, - 0x43, 0xa9, 0x19, 0x7c, 0x72, 0x80, 0x70, 0xf0, 0xc9, 0x01, 0xd5, 0x65, 0x18, 0xd5, 0xa1, 0xfd, - 0x13, 0x7c, 0x72, 0xf0, 0xc9, 0xc1, 0x27, 0x07, 0x9f, 0x1c, 0x7c, 0x72, 0x00, 0x74, 0xf0, 0xc9, - 0x01, 0xbd, 0xa5, 0x0b, 0xbd, 0xa1, 0xfd, 0x13, 0x7c, 0x72, 0xf0, 0xc9, 0xc1, 0x27, 0x07, 0x9f, - 0x1c, 0x7c, 0x72, 0x80, 0x70, 0xf0, 0xc9, 0x01, 0xd5, 0x25, 0x03, 0xd5, 0xa1, 0xfd, 0xd3, 0x4a, - 0xfb, 0x27, 0xe5, 0xd6, 0x44, 0xc7, 0x62, 0xdd, 0x9f, 0x7c, 0x96, 0xfc, 0xe6, 0x4f, 0xff, 0x6b, - 0xbe, 0x4c, 0xe4, 0x5d, 0xb1, 0xf1, 0xd3, 0x94, 0x10, 0x9a, 0x3e, 0xa1, 0xe9, 0x93, 0x22, 0xf4, - 0x46, 0xd3, 0x27, 0x15, 0xee, 0x43, 0xd3, 0x27, 0x5c, 0x9e, 0x71, 0x79, 0x46, 0xf0, 0x43, 0x09, - 0x88, 0x17, 0x70, 0x71, 0x96, 0x3b, 0x0e, 0xc4, 0x3e, 0x10, 0xfb, 0xc0, 0x2d, 0x39, 0x35, 0xb7, - 0x64, 0xf4, 0x7a, 0x02, 0x78, 0x03, 0x78, 0x03, 0x78, 0x03, 0x78, 0x03, 0x78, 0x03, 0x78, 0x03, - 0x78, 0x03, 0x78, 0x3b, 0x14, 0xf0, 0x86, 0x16, 0x4f, 0x80, 0x6f, 0x80, 0x6f, 0x87, 0x03, 0xdf, - 0xd0, 0xe2, 0xe9, 0x40, 0x40, 0x1c, 0x52, 0x57, 0x90, 0xba, 0x82, 0xd4, 0x15, 0xb4, 0x78, 0x52, - 0x37, 0x19, 0x68, 0xf1, 0x04, 0x34, 0x07, 0x34, 0x07, 0x67, 0x1c, 0x9c, 0x71, 0x70, 0xc6, 0x01, - 0xc7, 0xc1, 0x19, 0x07, 0xd0, 0xa6, 0x0d, 0xb4, 0xa1, 0xb3, 0x13, 0xe0, 0x1b, 0xe0, 0xdb, 0xc1, - 0xc0, 0x37, 0x54, 0x91, 0xc1, 0x15, 0x07, 0x08, 0x07, 0x57, 0x1c, 0x50, 0x5d, 0x86, 0x51, 0x1d, - 0x3a, 0x3b, 0x01, 0xcb, 0x01, 0xcb, 0xc1, 0x15, 0x07, 0x57, 0x1c, 0x5c, 0x71, 0xc0, 0x71, 0x70, - 0xc5, 0x01, 0xb4, 0xa5, 0x02, 0xb4, 0xa1, 0xa1, 0x13, 0xe0, 0x1b, 0xe0, 0x1b, 0x5c, 0x71, 0x70, - 0xc5, 0xc1, 0x15, 0x07, 0x08, 0x07, 0x57, 0x1c, 0x50, 0x5d, 0x32, 0x50, 0x1d, 0x1a, 0x3a, 0x2d, - 0x37, 0x74, 0x52, 0x6b, 0x39, 0x74, 0x2c, 0xd4, 0xcc, 0xe9, 0xff, 0x8c, 0xa5, 0x28, 0xc1, 0x9d, - 0x9c, 0xfc, 0xb6, 0x6d, 0x76, 0x83, 0x8e, 0x7a, 0x27, 0xa7, 0x29, 0x21, 0xb5, 0x4e, 0x4e, 0x39, - 0x74, 0x72, 0xa2, 0xc6, 0xe2, 0xe8, 0xe4, 0xa4, 0x5b, 0xed, 0x29, 0xc3, 0xeb, 0xb9, 0x72, 0x13, - 0xdf, 0x76, 0x55, 0x1a, 0x31, 0x85, 0xae, 0xd0, 0x8b, 0x04, 0xeb, 0x9c, 0x80, 0xbd, 0x30, 0x9f, - 0x39, 0xaf, 0x26, 0xf3, 0x7d, 0xcf, 0x67, 0x6d, 0x73, 0x0a, 0xd3, 0x95, 0x95, 0xd0, 0x46, 0xca, - 0xd0, 0x4a, 0xd0, 0x4a, 0xd0, 0x4a, 0x92, 0x9c, 0xd3, 0xf2, 0xfa, 0x2e, 0x67, 0xbe, 0xd2, 0x55, - 0x9f, 0xe0, 0x8a, 0x4f, 0x74, 0x05, 0x27, 0xf0, 0x82, 0x50, 0x5e, 0xb9, 0x89, 0xef, 0x6f, 0xd4, - 0x57, 0x6c, 0x1d, 0x97, 0x33, 0x82, 0x2b, 0x35, 0xe9, 0x55, 0x5a, 0xd7, 0x11, 0xe8, 0xbb, 0x3a, - 0x6b, 0x39, 0x95, 0x3d, 0x5d, 0x51, 0x1b, 0x09, 0x46, 0x2a, 0xdc, 0xb7, 0x9f, 0xfa, 0xdc, 0xf2, - 0x5f, 0xcd, 0xc0, 0xf1, 0xb8, 0xd9, 0xf1, 0x2d, 0xb7, 0xef, 0x58, 0xbe, 0xcd, 0x5f, 0xd5, 0xb1, - 0xca, 0x16, 0xda, 0x40, 0x2b, 0x40, 0x2b, 0x40, 0x2b, 0x92, 0x9c, 0x63, 0xb7, 0x99, 0xcb, 0x6d, - 0xfe, 0xea, 0xb3, 0x67, 0x8a, 0x8b, 0x94, 0x82, 0xc6, 0x36, 0x3e, 0x4e, 0x5e, 0xe5, 0x9d, 0x15, - 0x10, 0xc6, 0x46, 0xeb, 0x0f, 0x1f, 0xdf, 0x7d, 0xa9, 0x5f, 0x3d, 0xfc, 0xd9, 0xfc, 0x7c, 0x73, - 0x57, 0x6f, 0x7e, 0x78, 0xb8, 0xfa, 0xf4, 0xe5, 0xe6, 0xea, 0xe1, 0x63, 0xfd, 0x4f, 0x55, 0xa6, - 0x1c, 0x19, 0xae, 0x80, 0x24, 0xc8, 0x41, 0x64, 0x99, 0xe7, 0xd7, 0x3c, 0x5e, 0x6e, 0xe1, 0xac, - 0xfc, 0xc1, 0x48, 0x02, 0x04, 0xd1, 0xb6, 0xc2, 0xfc, 0x59, 0x21, 0xeb, 0x4b, 0x24, 0x59, 0x9f, - 0x12, 0x85, 0x46, 0xdc, 0x7a, 0x31, 0x1e, 0xbc, 0xc2, 0x47, 0x4e, 0x58, 0xd3, 0xea, 0x73, 0x8f, - 0x00, 0xa1, 0xcc, 0x53, 0x03, 0x26, 0x01, 0x26, 0x01, 0x26, 0x91, 0xe4, 0x9c, 0x27, 0xcf, 0x73, - 0x98, 0xe5, 0x52, 0xe0, 0x91, 0x7c, 0x0a, 0xd4, 0x0f, 0xfb, 0xd1, 0x63, 0x2d, 0xce, 0xda, 0x74, - 0x2a, 0x28, 0xa4, 0x08, 0x35, 0x04, 0x35, 0x04, 0x35, 0x24, 0xc9, 0x39, 0x87, 0x11, 0x5e, 0x9a, - 0xea, 0x0c, 0x9f, 0xb5, 0x5e, 0xe8, 0x34, 0xd0, 0x88, 0x1a, 0xb4, 0x0f, 0xb4, 0x0f, 0xb4, 0x0f, - 0xb4, 0x4f, 0x04, 0xed, 0xc3, 0x7d, 0xcb, 0x0d, 0xba, 0x36, 0xa7, 0xd3, 0x40, 0x21, 0x45, 0x68, - 0x21, 0x68, 0x21, 0x68, 0x21, 0x68, 0xa1, 0x2d, 0xef, 0xd8, 0x77, 0xad, 0x17, 0xcb, 0x76, 0xac, - 0x27, 0x87, 0xd1, 0x65, 0xd7, 0xac, 0x23, 0x0a, 0x5d, 0x04, 0x5d, 0x04, 0x5d, 0x24, 0xc9, 0x39, - 0x48, 0xac, 0x59, 0x7a, 0x11, 0x24, 0xd6, 0x28, 0xfd, 0x41, 0x62, 0x4d, 0x22, 0x4f, 0x25, 0xeb, - 0x89, 0x35, 0x47, 0x1a, 0x79, 0x54, 0xb5, 0xa6, 0x44, 0x6b, 0x2d, 0x89, 0x98, 0xc5, 0x8a, 0xbe, - 0x4f, 0xd1, 0x3e, 0x19, 0x71, 0x27, 0x65, 0x77, 0x50, 0xd3, 0xce, 0x09, 0x98, 0xba, 0xc8, 0x75, - 0x36, 0xd1, 0xce, 0x61, 0xf7, 0xae, 0x46, 0xd8, 0x51, 0x63, 0x7c, 0xf0, 0x51, 0x37, 0x72, 0x61, - 0x90, 0x44, 0xd4, 0x9a, 0x23, 0xc1, 0xb1, 0xe6, 0x33, 0x34, 0x1c, 0xb1, 0xe3, 0x86, 0x0c, 0xfa, - 0x55, 0x44, 0xbb, 0xb2, 0xe8, 0x56, 0x19, 0xcd, 0x2a, 0xa3, 0x57, 0x75, 0xb4, 0x4a, 0x2b, 0xcd, - 0xa2, 0x63, 0xc3, 0x0d, 0xab, 0xdd, 0xb5, 0x5d, 0x53, 0x8c, 0x6d, 0x57, 0x4e, 0x7d, 0x9e, 0x88, - 0xe0, 0xfe, 0xc9, 0x61, 0x00, 0xe9, 0x2b, 0x9e, 0xca, 0xd5, 0x8e, 0xe8, 0x4a, 0xa7, 0x7a, 0x95, - 0x23, 0xbb, 0xc2, 0x91, 0x5d, 0xdd, 0xe8, 0xae, 0x6c, 0x7a, 0xc1, 0x82, 0xf4, 0xd5, 0x6c, 0x1d, - 0xa3, 0x8f, 0x7a, 0x3f, 0xc8, 0x1c, 0xff, 0x54, 0x7d, 0x97, 0x24, 0x9e, 0xad, 0xb9, 0xfd, 0xee, - 0x70, 0x05, 0x03, 0x5d, 0xd0, 0x42, 0x40, 0x67, 0xb7, 0x59, 0xd0, 0xf2, 0xed, 0x9e, 0x14, 0xf6, - 0x9a, 0x6b, 0xf4, 0x35, 0x23, 0x02, 0xcd, 0x01, 0xcd, 0x91, 0x59, 0xcd, 0x21, 0xed, 0x58, 0x96, - 0x74, 0x28, 0xeb, 0x91, 0x79, 0xdb, 0x6d, 0xb3, 0x1f, 0xf2, 0xd2, 0x3e, 0x7e, 0x1c, 0x72, 0x0e, - 0x39, 0xcf, 0xac, 0x9c, 0xf7, 0x6d, 0x97, 0x17, 0x0b, 0x0a, 0x72, 0x5e, 0x95, 0x78, 0x54, 0xcd, - 0x43, 0xab, 0xe0, 0xaa, 0xa6, 0xf0, 0xc8, 0x52, 0x75, 0x61, 0x23, 0xf2, 0xc0, 0x52, 0xfa, 0xf8, - 0x54, 0xba, 0xe6, 0x51, 0x78, 0x5a, 0xa9, 0xb7, 0xb6, 0x54, 0xb8, 0x2c, 0x5d, 0x56, 0xaa, 0x85, - 0xcb, 0x72, 0x82, 0xf6, 0x38, 0x26, 0x3f, 0x66, 0x23, 0x01, 0xe6, 0xd7, 0xb1, 0xdd, 0xef, 0xaa, - 0x77, 0xf5, 0x39, 0x1a, 0x30, 0xc4, 0x30, 0xc4, 0x99, 0x35, 0xc4, 0xcc, 0xed, 0x77, 0x99, 0x6f, - 0x49, 0xdc, 0x2c, 0x33, 0x75, 0x4b, 0x5f, 0x72, 0xb6, 0x8f, 0xbd, 0x16, 0xf2, 0xca, 0x63, 0x1d, - 0x35, 0xa8, 0x11, 0xa8, 0x91, 0xcc, 0xaa, 0x11, 0xb5, 0x7a, 0x61, 0x95, 0x3a, 0x61, 0x9a, 0xfa, - 0xe0, 0x70, 0x21, 0x37, 0x77, 0x1f, 0x3e, 0x5e, 0x5f, 0xdd, 0x34, 0x6b, 0x37, 0xb5, 0xdb, 0xda, - 0xa7, 0x7a, 0xf3, 0xfe, 0xe1, 0xae, 0x7e, 0x77, 0x7d, 0x77, 0xd3, 0xac, 0xff, 0x79, 0x5f, 0x93, - 0xe5, 0x27, 0x82, 0x92, 0x60, 0xa2, 0xb2, 0xe7, 0xe1, 0x72, 0x9a, 0xb5, 0xfa, 0x1f, 0xb5, 0x87, - 0x4f, 0xb5, 0xba, 0xb1, 0x0f, 0xc4, 0x4e, 0xb9, 0x90, 0xbb, 0xfa, 0xa7, 0xb8, 0xf3, 0x9d, 0x1a, - 0xba, 0x45, 0x57, 0x93, 0x79, 0xf3, 0x7a, 0x4f, 0x56, 0xeb, 0xbb, 0xd9, 0xf5, 0xda, 0x4a, 0x76, - 0x6d, 0x9e, 0x0c, 0x0c, 0x1a, 0x0c, 0x5a, 0x66, 0x0d, 0xda, 0x02, 0xab, 0xef, 0x37, 0x88, 0x25, - 0xf1, 0xec, 0x7b, 0xf6, 0x6c, 0xf5, 0x9d, 0xd1, 0x29, 0x7d, 0xba, 0xfb, 0x54, 0x33, 0x12, 0xa0, - 0x82, 0x7c, 0x8b, 0x33, 0xb3, 0xe5, 0x58, 0x41, 0x20, 0xaf, 0x7f, 0xe6, 0x68, 0x40, 0xf9, 0x40, - 0xf9, 0x00, 0x4d, 0x27, 0x1d, 0x4d, 0xcf, 0xba, 0xec, 0x3c, 0x5c, 0xd5, 0x6b, 0xcd, 0xeb, 0x9b, - 0xab, 0xcf, 0x9f, 0x33, 0x82, 0xa4, 0x47, 0x7d, 0x58, 0x46, 0xab, 0x2a, 0x97, 0x73, 0x1f, 0xd2, - 0x0c, 0xa5, 0x67, 0x2b, 0x51, 0x6b, 0x0b, 0x94, 0xa4, 0x95, 0x14, 0x73, 0x59, 0x39, 0x93, 0x7c, - 0x66, 0x98, 0xab, 0x9c, 0x9d, 0x23, 0xc9, 0x10, 0x77, 0x65, 0x65, 0x25, 0x97, 0xd9, 0x39, 0x93, - 0x0c, 0x09, 0x4a, 0x66, 0x96, 0x52, 0xce, 0x0c, 0x7b, 0x15, 0xb2, 0x23, 0x28, 0xd9, 0xd1, 0x5e, - 0xa5, 0xcc, 0xac, 0xe4, 0x22, 0x33, 0x2b, 0x29, 0x66, 0x46, 0x79, 0x5d, 0x66, 0x66, 0x25, 0xd5, - 0xec, 0xac, 0x24, 0x3b, 0x12, 0x9f, 0x99, 0x33, 0xa9, 0x64, 0xe6, 0x4c, 0x2a, 0x99, 0x39, 0x93, - 0x52, 0x76, 0xd0, 0x70, 0x66, 0xb0, 0xca, 0x07, 0x44, 0x5d, 0xa3, 0x6c, 0x1d, 0x67, 0x01, 0x37, - 0x03, 0xbb, 0xe3, 0x5a, 0x8e, 0x7c, 0xcc, 0x63, 0x9e, 0x08, 0x82, 0x1e, 0xbb, 0xc8, 0x20, 0xe8, - 0x41, 0x25, 0x11, 0xb1, 0x07, 0x3d, 0xe4, 0xdb, 0xfb, 0x4a, 0xb6, 0xf5, 0xd5, 0x24, 0xf4, 0xbe, - 0xfd, 0x64, 0xf6, 0x7c, 0x8f, 0x7b, 0x2d, 0x4f, 0x45, 0xec, 0x17, 0xc8, 0x40, 0xf0, 0x21, 0xf8, - 0x88, 0x76, 0x6e, 0x17, 0xfe, 0x24, 0x45, 0x3b, 0xb3, 0x98, 0x35, 0x78, 0x57, 0xff, 0x92, 0xaf, - 0xa5, 0x3f, 0x65, 0xf0, 0xfd, 0x97, 0x52, 0xea, 0x17, 0x91, 0xcf, 0x7d, 0xa8, 0x35, 0x6f, 0xae, - 0x3e, 0xa5, 0xff, 0x34, 0xae, 0xf3, 0x97, 0x85, 0xf4, 0x1f, 0xc7, 0x87, 0x4c, 0xc8, 0x45, 0xfa, - 0x0f, 0xe2, 0x73, 0xfd, 0x36, 0x5f, 0xc9, 0xc2, 0x51, 0x14, 0xb3, 0xb0, 0x88, 0xeb, 0x0c, 0xe8, - 0xa7, 0x7a, 0x06, 0xa4, 0x62, 0xb8, 0x88, 0xf4, 0x2b, 0xa8, 0x52, 0x2e, 0x0b, 0x5a, 0xb6, 0x9e, - 0x01, 0xf4, 0x31, 0x34, 0x15, 0x59, 0xe0, 0xa7, 0x4c, 0x30, 0xd4, 0x75, 0xe9, 0x22, 0x0b, 0x66, - 0xbb, 0x52, 0xca, 0x82, 0x6c, 0x67, 0xc0, 0xe2, 0xe5, 0x73, 0xb9, 0x0f, 0xcd, 0xdb, 0x9b, 0x0f, - 0xd9, 0xb8, 0x23, 0xfd, 0xcf, 0x55, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x22, 0x5e, 0x28, 0x67, 0x00, - 0x9a, 0x5f, 0x57, 0x2b, 0x17, 0x99, 0x90, 0xf1, 0xda, 0x01, 0x87, 0xf0, 0xb2, 0xda, 0x18, 0x58, - 0xa0, 0x9d, 0x72, 0x84, 0x36, 0xbe, 0x47, 0x0a, 0xbb, 0x63, 0xfc, 0x9b, 0xbd, 0x46, 0xed, 0x64, - 0x66, 0xdc, 0xd8, 0x01, 0xbf, 0xe2, 0x3c, 0x5a, 0x47, 0x56, 0xe3, 0xd6, 0x76, 0x6b, 0x0e, 0xeb, - 0x32, 0x77, 0xd4, 0x10, 0xc7, 0xed, 0x3b, 0x4e, 0x84, 0x7e, 0xc3, 0xb7, 0xd6, 0x0f, 0xf1, 0x87, - 0xee, 0xfc, 0x36, 0xf3, 0x59, 0xfb, 0xdd, 0xeb, 0xe4, 0x11, 0xa5, 0x0d, 0x11, 0x64, 0x13, 0x0d, - 0xec, 0x61, 0x44, 0xea, 0xcb, 0xbc, 0xbb, 0x57, 0xf4, 0x76, 0x06, 0xdb, 0xcc, 0x36, 0xeb, 0xff, - 0x65, 0xc3, 0xbe, 0x45, 0xdd, 0x2f, 0xc2, 0x7d, 0x5a, 0xbf, 0xae, 0xd5, 0xb7, 0x5e, 0xf3, 0xc6, - 0x86, 0xd7, 0x9b, 0xf4, 0x50, 0xb1, 0x9c, 0x51, 0xc1, 0xe8, 0xe6, 0x1a, 0xc7, 0x59, 0xbc, 0x6b, - 0xe5, 0x91, 0x0d, 0x3b, 0xb1, 0xbd, 0x8f, 0xf5, 0xce, 0xa0, 0x5d, 0x94, 0xe0, 0x9c, 0x60, 0x10, - 0x2e, 0x6a, 0xb0, 0x4d, 0x38, 0xa8, 0x26, 0x1c, 0x3c, 0x13, 0x0f, 0x92, 0x89, 0x71, 0xe1, 0xae, - 0x3e, 0xd1, 0x46, 0xa4, 0x7a, 0xfa, 0x70, 0x7b, 0x23, 0x94, 0xcd, 0x47, 0x6c, 0x5b, 0x1e, 0xb9, - 0x5d, 0xb9, 0x48, 0x6c, 0x56, 0x32, 0x16, 0x2b, 0x1a, 0x7b, 0x95, 0x8e, 0xb5, 0x4a, 0xc7, 0x56, - 0xe5, 0x63, 0xa9, 0x6a, 0x56, 0x30, 0x6a, 0x9b, 0x71, 0xa3, 0x35, 0x3d, 0x4d, 0xc1, 0x86, 0xf8, - 0x93, 0xe7, 0x34, 0x77, 0xc4, 0xcf, 0xa1, 0x23, 0x3e, 0x19, 0x2b, 0xaa, 0xb3, 0x64, 0x56, 0x60, - 0xec, 0x8a, 0x01, 0x3c, 0x1f, 0xfe, 0xff, 0xf9, 0x84, 0xa5, 0x63, 0x1c, 0x46, 0x31, 0xea, 0xf0, - 0x60, 0xb7, 0xc5, 0xa5, 0x6f, 0xfa, 0xa0, 0x98, 0xf8, 0xe5, 0x20, 0x7e, 0x10, 0xbf, 0xe5, 0xd7, - 0x11, 0xce, 0xa2, 0x99, 0x35, 0x2a, 0x61, 0xd6, 0xb3, 0x58, 0xe6, 0x4c, 0x68, 0x07, 0x04, 0x7a, - 0xe8, 0x1a, 0xf7, 0x13, 0x09, 0x3f, 0x3b, 0x1b, 0x5f, 0x33, 0xcf, 0xa7, 0xcc, 0x8f, 0xa9, 0x31, - 0x98, 0x1a, 0x73, 0x20, 0x42, 0x2a, 0x3c, 0x35, 0x06, 0xb3, 0x1f, 0x8e, 0x63, 0x62, 0x72, 0x55, - 0x66, 0x27, 0x63, 0x7a, 0x32, 0xe6, 0xa7, 0x13, 0x02, 0x49, 0x7f, 0x2a, 0x66, 0x3f, 0xc8, 0xec, - 0x85, 0x30, 0x9a, 0x54, 0x44, 0x95, 0x90, 0x75, 0xc8, 0x7a, 0x0a, 0x65, 0xbd, 0x6f, 0xbb, 0x3c, - 0x5f, 0x51, 0x90, 0xf5, 0x0a, 0xe6, 0x3f, 0xc8, 0x91, 0xc1, 0xfc, 0x07, 0xed, 0x5b, 0x5b, 0x29, - 0x97, 0x8b, 0x18, 0xfd, 0xb0, 0x17, 0xeb, 0xfb, 0xc2, 0xdc, 0xb6, 0xe7, 0x2b, 0xd9, 0xdf, 0x19, - 0x09, 0x58, 0x60, 0x58, 0x60, 0xa0, 0xed, 0xf8, 0xd1, 0x76, 0x36, 0x1d, 0xdb, 0xc9, 0xcb, 0xce, - 0x88, 0x76, 0xd3, 0x40, 0x7e, 0x46, 0x1c, 0xec, 0xa1, 0x9c, 0x9d, 0x71, 0x3b, 0x24, 0x92, 0x91, - 0xd4, 0x8c, 0xd5, 0xdc, 0x08, 0x85, 0xdc, 0x8c, 0xed, 0x5e, 0xe3, 0x48, 0x5e, 0xe2, 0xc8, 0x39, - 0x18, 0x05, 0xe4, 0x60, 0x90, 0xe7, 0x60, 0xe8, 0x67, 0xb7, 0x2d, 0x9a, 0x79, 0x0d, 0x8b, 0x1d, - 0x6d, 0x79, 0xe9, 0x5d, 0x2f, 0x2b, 0xff, 0x92, 0xc6, 0x5a, 0xce, 0xde, 0xac, 0x0f, 0x16, 0x97, - 0x33, 0x7b, 0xe9, 0xf1, 0x4f, 0x93, 0xd7, 0xde, 0xf4, 0xba, 0x86, 0x1d, 0x5c, 0x7b, 0xdd, 0x9e, - 0xcf, 0x82, 0x80, 0xb5, 0x3f, 0x8f, 0x5e, 0x79, 0x85, 0x15, 0x0c, 0x3b, 0xf8, 0xdd, 0xfa, 0xce, - 0x1e, 0x3c, 0x6f, 0x95, 0x4d, 0x96, 0x97, 0x69, 0xcc, 0xff, 0xd3, 0xc2, 0x4b, 0xcf, 0xbf, 0xec, - 0xe0, 0x68, 0xf0, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xab, 0xde, - 0x1c, 0x88, 0x76, 0x8c, 0x69, 0x01, + 0x33, 0x3a, 0xe3, 0x71, 0xcc, 0xae, 0x1b, 0x9c, 0xf5, 0x08, 0x6f, 0xc1, 0x5b, 0xf0, 0x96, 0x25, + 0xde, 0xfa, 0xea, 0x46, 0x9e, 0xd3, 0x2f, 0x4e, 0xe5, 0x98, 0x1d, 0x2b, 0xf9, 0x7a, 0xa6, 0x16, + 0x0f, 0x64, 0x56, 0x47, 0xba, 0xa5, 0xb7, 0x2a, 0x8e, 0xff, 0x70, 0x34, 0x54, 0x53, 0xeb, 0xd5, + 0x2f, 0xba, 0x7f, 0xd7, 0x3f, 0x84, 0x72, 0xb1, 0xf6, 0x56, 0x7e, 0xc7, 0x06, 0xdb, 0x34, 0xb0, + 0xbb, 0xd8, 0xdd, 0x75, 0xb6, 0x69, 0x10, 0xe4, 0x12, 0xe4, 0x12, 0xe4, 0x4e, 0x7f, 0x55, 0x6c, + 0xd3, 0x58, 0x99, 0xa8, 0xd6, 0xd2, 0xde, 0x0c, 0x36, 0x64, 0xc0, 0x5b, 0xf0, 0x56, 0x86, 0x79, + 0x8b, 0x0d, 0x19, 0xab, 0xc6, 0x5f, 0x24, 0x7a, 0xe4, 0xe6, 0x55, 0xb1, 0x21, 0x63, 0x95, 0xe8, + 0xab, 0x5d, 0x00, 0x5f, 0x18, 0xbd, 0x3a, 0x6d, 0xc2, 0x5d, 0x70, 0x17, 0xdc, 0x95, 0x29, 0xee, + 0xf2, 0xab, 0x5e, 0x10, 0xfb, 0xf1, 0xb3, 0xf0, 0xc2, 0x82, 0x04, 0x6d, 0x9d, 0x75, 0xbf, 0xda, + 0x7b, 0x37, 0xf2, 0xe4, 0x0f, 0xb6, 0xbb, 0xb9, 0xbd, 0xba, 0xbf, 0xba, 0xbc, 0xbe, 0xbd, 0xbf, + 0xb9, 0x2d, 0xdf, 0x9e, 0x4a, 0x8d, 0xe5, 0xb6, 0xc7, 0x8c, 0x44, 0x8f, 0xa2, 0x12, 0x46, 0x85, + 0xde, 0xf3, 0x9f, 0x9f, 0xdd, 0xdc, 0x9e, 0x5e, 0x9c, 0x5d, 0x7c, 0x2c, 0x64, 0x11, 0x93, 0x2c, + 0x3d, 0xf4, 0xc9, 0xd9, 0x4d, 0xf9, 0xfd, 0xf9, 0xe9, 0xc9, 0x2a, 0x3d, 0xf3, 0xfb, 0xf3, 0xcb, + 0xe3, 0x7f, 0xac, 0xd8, 0x7b, 0x3e, 0x3f, 0x2d, 0x5f, 0xaf, 0xda, 0xd8, 0xfe, 0x70, 0x79, 0xfd, + 0x47, 0xf9, 0xfa, 0x44, 0xf6, 0xa9, 0x45, 0x5a, 0xba, 0x5b, 0xb4, 0xd7, 0x5d, 0x08, 0x4b, 0x87, + 0xf5, 0x9a, 0x20, 0x45, 0xb7, 0x5b, 0x83, 0x9f, 0xe1, 0x67, 0xf8, 0x19, 0x7e, 0xce, 0x14, 0x3f, + 0x5f, 0x5f, 0x9e, 0xaf, 0x20, 0x3e, 0x5f, 0x5f, 0x5e, 0xde, 0xae, 0x14, 0x45, 0x96, 0x8f, 0xff, + 0xf1, 0xfb, 0xd5, 0x4a, 0xc5, 0x0a, 0xa7, 0x37, 0x67, 0x1f, 0x2f, 0xca, 0xb7, 0xab, 0x15, 0x2d, + 0x94, 0xcf, 0x6f, 0x4f, 0xaf, 0x5b, 0x4f, 0x0d, 0x44, 0x8a, 0x41, 0xe4, 0x5a, 0x8a, 0x43, 0x45, + 0xea, 0x7c, 0x55, 0x4b, 0xe7, 0xaa, 0xea, 0x8d, 0x2a, 0xf5, 0x1e, 0x54, 0xbb, 0x42, 0xb1, 0xaf, + 0x5b, 0x28, 0xa7, 0x99, 0x33, 0x5f, 0x38, 0xf7, 0xa3, 0xb8, 0x1c, 0xc7, 0xa1, 0xd6, 0xcb, 0x29, + 0x7c, 0xf2, 0x83, 0xd3, 0x9a, 0xd7, 0x62, 0xb2, 0x96, 0x93, 0x0c, 0x9a, 0xb5, 0xda, 0x1b, 0x8d, + 0x46, 0xdc, 0x1f, 0xe6, 0x8d, 0x5c, 0x86, 0x55, 0x2f, 0xf4, 0xaa, 0xef, 0x9f, 0xbb, 0x4d, 0x58, + 0xed, 0x6f, 0xc3, 0x31, 0x2d, 0x3e, 0x96, 0x35, 0x70, 0x67, 0xee, 0x21, 0xc0, 0x6a, 0x33, 0x23, + 0xf9, 0xf8, 0x4e, 0xf6, 0xc9, 0x84, 0x6f, 0x44, 0xf7, 0x4d, 0x08, 0xbd, 0x81, 0x64, 0x7d, 0x34, + 0xff, 0x89, 0x13, 0x3c, 0x6d, 0x41, 0x6d, 0x15, 0x6c, 0x28, 0x8f, 0x21, 0xf9, 0x42, 0x57, 0x9f, + 0xf6, 0x13, 0x7e, 0xbc, 0x1f, 0x78, 0xef, 0x26, 0xbc, 0x40, 0x23, 0xc0, 0xd6, 0x0f, 0xa4, 0x75, + 0x03, 0x66, 0xe3, 0xc0, 0xd8, 0x38, 0x00, 0x36, 0x0a, 0x74, 0x65, 0xe7, 0xd7, 0x89, 0xaf, 0xe6, + 0x19, 0x0a, 0x86, 0x67, 0x6e, 0x0f, 0xf6, 0x99, 0x98, 0x1c, 0xac, 0xad, 0xa9, 0x2c, 0x69, 0x2b, + 0x49, 0x26, 0xca, 0x91, 0xb9, 0x52, 0x64, 0xaa, 0x0c, 0x89, 0x29, 0x41, 0x62, 0xca, 0x8f, 0x88, + 0xd2, 0x63, 0x17, 0xb9, 0xb4, 0x95, 0x1b, 0xa1, 0x02, 0x73, 0x26, 0x05, 0xe5, 0x8c, 0x0b, 0xc8, + 0x59, 0x2a, 0x18, 0x77, 0x67, 0x0b, 0x39, 0xde, 0x28, 0xdb, 0x2f, 0xed, 0x8c, 0xdf, 0xd7, 0x06, + 0x4c, 0x33, 0xc7, 0x17, 0x0b, 0x86, 0x05, 0xcb, 0xbc, 0x05, 0x13, 0x2c, 0x87, 0x66, 0x50, 0xfe, + 0xcc, 0x30, 0x0b, 0xd6, 0x40, 0x92, 0x90, 0xc8, 0x72, 0x95, 0x5a, 0x04, 0x13, 0xca, 0x62, 0x95, + 0x4c, 0x84, 0x34, 0x59, 0xac, 0x94, 0xc8, 0x4a, 0x95, 0xee, 0x5a, 0x89, 0xf2, 0x62, 0xa2, 0xfd, + 0x9b, 0x92, 0x76, 0x95, 0x05, 0xb7, 0x2c, 0x55, 0x99, 0x5b, 0xb8, 0x12, 0x37, 0x6e, 0x1a, 0x37, + 0x4d, 0xa0, 0x41, 0xa0, 0x21, 0x60, 0xd1, 0xcc, 0x23, 0x0e, 0xa1, 0x4a, 0xd2, 0xd8, 0x34, 0x6c, + 0x1a, 0xa1, 0x07, 0xa1, 0x07, 0xa1, 0x07, 0xa1, 0x07, 0xa1, 0x47, 0xbf, 0x14, 0xb0, 0x1f, 0x3c, + 0x3a, 0x55, 0xaf, 0xe6, 0x1a, 0x38, 0xe8, 0xb1, 0x96, 0x70, 0xcc, 0x38, 0xe6, 0x25, 0x73, 0xcc, + 0x4d, 0x3f, 0x88, 0xdf, 0x19, 0x78, 0xe1, 0x3d, 0xbc, 0xb0, 0x99, 0xab, 0x28, 0xe1, 0x85, 0x6d, + 0x75, 0xed, 0x5b, 0x3c, 0xf0, 0x42, 0x3c, 0xf0, 0x37, 0xaf, 0x56, 0xab, 0x3b, 0xb1, 0xaf, 0x51, + 0x5f, 0xb6, 0x6f, 0x97, 0x86, 0xda, 0xc0, 0xeb, 0xe2, 0x75, 0xf1, 0xba, 0x78, 0x5d, 0x62, 0xdf, + 0x5c, 0x78, 0xdd, 0x22, 0x5e, 0x77, 0x31, 0x5e, 0xb7, 0x5e, 0xab, 0x3a, 0xed, 0xe3, 0x35, 0x0c, + 0xbc, 0xee, 0xa0, 0x0d, 0x45, 0x9b, 0x78, 0xe2, 0x3d, 0xb8, 0xcd, 0x5a, 0xdb, 0x68, 0xef, 0xe3, + 0xb1, 0xf1, 0xd8, 0x78, 0x6c, 0x3c, 0x36, 0x1e, 0x1b, 0x8f, 0x8d, 0xc7, 0x9e, 0xe3, 0xb1, 0x0d, + 0xc3, 0xe4, 0x7e, 0x13, 0xf8, 0x5c, 0x7c, 0x2e, 0x3e, 0x17, 0x9f, 0x2b, 0xe9, 0x18, 0x76, 0xf0, + 0xb9, 0xb6, 0xba, 0x76, 0x77, 0x6f, 0x0f, 0xa7, 0xbb, 0x08, 0xa7, 0x5b, 0x73, 0xa3, 0xd8, 0x89, + 0xeb, 0x8d, 0x7a, 0xad, 0xfe, 0xf8, 0xec, 0x54, 0xbe, 0x75, 0xe7, 0xbb, 0xa6, 0xff, 0x9d, 0xd8, + 0x1a, 0xae, 0x18, 0x57, 0xbc, 0x64, 0xae, 0xb8, 0x85, 0x98, 0xb1, 0x5f, 0xf9, 0x77, 0xa4, 0x75, + 0x70, 0xab, 0xc1, 0x41, 0xad, 0x85, 0xdf, 0x83, 0x8e, 0x75, 0x2b, 0x04, 0x6e, 0x50, 0x8f, 0xbc, + 0x4a, 0x3d, 0xa8, 0x6a, 0xa5, 0xc5, 0xe2, 0xd8, 0x71, 0xec, 0xa9, 0x04, 0xd3, 0xe2, 0x07, 0xaa, + 0xe2, 0xe9, 0xf5, 0x3c, 0xfd, 0x93, 0xfb, 0xc3, 0x71, 0x4d, 0x9c, 0x7b, 0xaf, 0x01, 0xfc, 0x39, + 0xfe, 0x9c, 0xd0, 0x9a, 0xd0, 0x5a, 0x34, 0x43, 0x18, 0x0f, 0x6c, 0xab, 0x6b, 0x49, 0xbc, 0x5e, + 0x8c, 0xbf, 0x6d, 0x6f, 0x62, 0xaa, 0xd4, 0x23, 0x83, 0xf5, 0xe7, 0x41, 0x13, 0xf8, 0x5c, 0x7c, + 0xee, 0x12, 0xfa, 0xdc, 0xb7, 0xbb, 0xec, 0x78, 0x22, 0xec, 0x5d, 0x46, 0xa7, 0xbb, 0x7b, 0x58, + 0x3a, 0xdc, 0x3f, 0xd8, 0x3d, 0x24, 0xd8, 0x5d, 0x9c, 0xf3, 0x6d, 0xd4, 0x43, 0x53, 0xe7, 0xdb, + 0x6e, 0x02, 0xe7, 0x8b, 0xf3, 0x5d, 0x42, 0xe7, 0xab, 0x75, 0x1e, 0xbb, 0xc1, 0xf9, 0xeb, 0x38, + 0x5f, 0x9c, 0x6f, 0x3a, 0x62, 0x82, 0xf9, 0xf9, 0xe6, 0xf8, 0x5d, 0x3d, 0xbf, 0xfb, 0x6a, 0xed, + 0xd7, 0xa0, 0xc2, 0xd1, 0x58, 0x4b, 0x78, 0x61, 0xbc, 0xf0, 0x92, 0x79, 0xe1, 0xf6, 0xd6, 0x02, + 0x2f, 0x4c, 0x7d, 0x11, 0x19, 0x47, 0x8c, 0x23, 0x4e, 0xa3, 0x6b, 0x59, 0xfc, 0xcd, 0x8a, 0x5f, + 0xfe, 0x5e, 0x73, 0x03, 0xc7, 0xaf, 0xea, 0xbb, 0xe3, 0x5e, 0x03, 0x78, 0x61, 0xbc, 0xf0, 0x92, + 0x79, 0x61, 0xbd, 0xa1, 0x4d, 0x30, 0xcc, 0x6e, 0xa6, 0x3c, 0xf8, 0xe0, 0xd2, 0xce, 0x61, 0x09, + 0x9f, 0x2b, 0xe6, 0x73, 0x73, 0x7f, 0xfc, 0x8f, 0xc2, 0xb9, 0x61, 0x32, 0x27, 0xff, 0xa8, 0xa2, + 0x87, 0xa6, 0x5d, 0x56, 0x9c, 0x37, 0xca, 0x88, 0xc1, 0xe9, 0x3f, 0x29, 0x20, 0x83, 0xec, 0xf4, + 0x52, 0x46, 0x83, 0xc1, 0x3e, 0x06, 0xcf, 0x7d, 0x50, 0x3b, 0x82, 0xb6, 0x5f, 0x67, 0x58, 0x61, + 0x55, 0xba, 0x70, 0xd5, 0x9d, 0xc1, 0x5b, 0x5b, 0xdb, 0x9d, 0xf9, 0xbb, 0xdd, 0x1b, 0xf3, 0x52, + 0xf3, 0x73, 0xcd, 0xa0, 0x1f, 0x7b, 0xe7, 0xf2, 0x25, 0x9b, 0x87, 0x6a, 0x47, 0xf1, 0x69, 0x1d, + 0xbd, 0xa7, 0x75, 0xd4, 0x9e, 0xda, 0xd1, 0x7a, 0xf3, 0xba, 0x44, 0xd1, 0x62, 0x9b, 0x58, 0xea, + 0x42, 0xa2, 0x53, 0xd5, 0x26, 0x9d, 0x82, 0x37, 0x7b, 0xf4, 0x4c, 0x1f, 0x13, 0x93, 0xff, 0x65, + 0x4a, 0x97, 0x24, 0xed, 0x0a, 0xcd, 0x2e, 0x98, 0xfc, 0x0c, 0xe3, 0xdf, 0x70, 0xc2, 0xb7, 0x2b, + 0x84, 0x2d, 0x9b, 0x33, 0xed, 0x3b, 0x0d, 0xd6, 0x77, 0xa7, 0x5b, 0xe4, 0x39, 0x27, 0xc9, 0xcd, + 0xf5, 0x1d, 0x49, 0x7c, 0x45, 0x72, 0xdf, 0x90, 0xd4, 0x17, 0x28, 0xdb, 0x7e, 0x65, 0x5b, 0xaf, + 0x64, 0xdb, 0xd5, 0x46, 0xd3, 0xbc, 0x93, 0xda, 0x0a, 0x95, 0x5e, 0x9f, 0xcf, 0xe9, 0x84, 0x81, + 0xb6, 0xda, 0xfe, 0xfc, 0x3c, 0x13, 0x97, 0xe8, 0xc8, 0xc0, 0xc4, 0xb0, 0xa0, 0x02, 0x09, 0xea, + 0x70, 0xa0, 0x0a, 0x05, 0xda, 0x30, 0xa0, 0x0d, 0x01, 0x5a, 0xce, 0xdf, 0xcc, 0x49, 0x25, 0x3d, + 0xe2, 0x4f, 0xfb, 0x68, 0x2c, 0xc3, 0x23, 0xb1, 0xe0, 0x52, 0xb8, 0x54, 0x8c, 0x4b, 0x05, 0xea, + 0xc6, 0x6b, 0x64, 0x4f, 0x6a, 0x6a, 0x55, 0x7a, 0x07, 0x32, 0x1b, 0xa8, 0xa7, 0x46, 0xc2, 0x89, + 0xa9, 0x16, 0x25, 0xa1, 0x92, 0xbc, 0xe8, 0x1d, 0x3f, 0xbd, 0xf0, 0x2e, 0x33, 0xa9, 0xef, 0x2e, + 0xd2, 0x6f, 0x96, 0xd4, 0x9e, 0xbb, 0x14, 0x65, 0x12, 0xed, 0x3a, 0xed, 0xa6, 0xf5, 0xd9, 0x71, + 0x50, 0x38, 0x28, 0x31, 0x07, 0xa5, 0xba, 0x91, 0x4e, 0x63, 0x03, 0xdd, 0x6a, 0x79, 0xa3, 0x12, + 0xde, 0x48, 0xb5, 0xcb, 0xde, 0xe2, 0x89, 0x8c, 0x3c, 0x91, 0x46, 0xbd, 0x72, 0xfd, 0x3a, 0xe5, + 0x78, 0x1f, 0xbc, 0x0f, 0xde, 0x87, 0x58, 0x68, 0x69, 0xbc, 0x4f, 0x11, 0xef, 0x63, 0xe6, 0x7d, + 0xd4, 0xeb, 0x76, 0xeb, 0xd7, 0xeb, 0xd6, 0xa9, 0xd3, 0x8d, 0xc7, 0xc2, 0x63, 0xe1, 0xb1, 0xf0, + 0x58, 0x78, 0x2c, 0x3c, 0xd6, 0xba, 0x4e, 0x61, 0x2d, 0xcd, 0x82, 0x5a, 0xf8, 0x1d, 0xfc, 0x0e, + 0x7e, 0x27, 0xab, 0x7e, 0x67, 0x1f, 0xbf, 0xa3, 0x2c, 0x6d, 0xe2, 0x77, 0x34, 0x3f, 0xb1, 0xd0, + 0x2c, 0xb5, 0xd6, 0x1f, 0xdd, 0xe4, 0x1a, 0xdd, 0x3c, 0xb3, 0x19, 0xb9, 0x4e, 0x7e, 0x10, 0x7b, + 0xe1, 0x83, 0x5b, 0x49, 0xb0, 0x75, 0xb8, 0x6f, 0xcc, 0x86, 0xae, 0x21, 0xdd, 0x87, 0x74, 0x9f, + 0x57, 0x03, 0x49, 0x9d, 0xcb, 0x06, 0x97, 0xaa, 0x91, 0x59, 0x11, 0x32, 0x83, 0xcc, 0xd4, 0x86, + 0x69, 0xff, 0x82, 0x84, 0xe9, 0x8d, 0x53, 0x5f, 0x73, 0xa2, 0x74, 0x47, 0xc3, 0x81, 0xab, 0x3d, + 0x80, 0x4d, 0x06, 0xb2, 0xf9, 0x80, 0x36, 0x1d, 0xd8, 0x62, 0x03, 0x5c, 0x6c, 0xa0, 0x8b, 0x0c, + 0x78, 0x4d, 0x14, 0x52, 0x3d, 0x08, 0x51, 0x71, 0x22, 0x0c, 0x4d, 0x08, 0x8d, 0xca, 0x99, 0x13, + 0xa6, 0x85, 0x72, 0xf1, 0x4c, 0x29, 0xcc, 0xd5, 0x9d, 0x24, 0x12, 0x93, 0x45, 0x6e, 0xd2, 0x48, + 0x4d, 0x1e, 0xf1, 0x49, 0x24, 0x3e, 0x99, 0x44, 0x27, 0x95, 0xde, 0xe4, 0x32, 0x88, 0xe8, 0xd6, + 0x8d, 0xf6, 0x42, 0x4f, 0xd4, 0x07, 0xb4, 0x8a, 0x73, 0xbe, 0x9e, 0x3d, 0x07, 0x06, 0x4d, 0x98, + 0x6d, 0x91, 0xd6, 0x17, 0x14, 0x44, 0x05, 0x06, 0x61, 0xb3, 0x32, 0x5d, 0xc5, 0x15, 0x6a, 0x4f, + 0x70, 0xb3, 0xaf, 0xe1, 0x70, 0x16, 0x13, 0x2c, 0xd2, 0x7a, 0x05, 0xbb, 0x3b, 0xdd, 0xff, 0x32, + 0xfc, 0x2a, 0xd6, 0x16, 0x73, 0xf5, 0x5d, 0x4a, 0xfb, 0xbe, 0x75, 0xb4, 0xb0, 0xee, 0xf6, 0x39, + 0x43, 0xd2, 0x68, 0xb7, 0x02, 0x69, 0x40, 0x1a, 0x90, 0x86, 0xd2, 0x78, 0xf9, 0xea, 0x46, 0x9e, + 0xd3, 0x57, 0x5c, 0x1c, 0xb5, 0x5d, 0xd7, 0x53, 0x03, 0x5a, 0x13, 0xec, 0xb8, 0xea, 0xeb, 0xa0, + 0x15, 0xc7, 0x7f, 0x38, 0x1a, 0xa8, 0x8b, 0xaf, 0x7f, 0xd1, 0xfd, 0x7b, 0x7b, 0xe6, 0x67, 0xd8, + 0xbe, 0x35, 0xea, 0x61, 0xac, 0xbe, 0xed, 0x6d, 0xea, 0x0b, 0x1b, 0x6d, 0x0e, 0x8b, 0x87, 0xc5, + 0xc3, 0xe2, 0x29, 0x8d, 0x97, 0x28, 0x6e, 0x38, 0x23, 0x93, 0x48, 0x75, 0x0b, 0xdf, 0xb4, 0xd9, + 0xb4, 0x47, 0xac, 0x45, 0xac, 0xb5, 0x2a, 0xb1, 0x56, 0x89, 0x28, 0x6b, 0x71, 0x51, 0x96, 0x55, + 0xc9, 0x58, 0xb3, 0x2a, 0x56, 0xff, 0x7a, 0xe5, 0xd5, 0xec, 0x21, 0xc2, 0x1b, 0xb0, 0x5d, 0x92, + 0x25, 0x6e, 0xfd, 0x7e, 0x51, 0xa9, 0xdd, 0xa9, 0x15, 0x9f, 0x9a, 0xc4, 0xa5, 0x54, 0xed, 0x5c, + 0x08, 0x75, 0x51, 0xb5, 0x53, 0xe5, 0x7d, 0xab, 0x97, 0xe8, 0x92, 0x08, 0x12, 0x27, 0x94, 0xec, + 0x52, 0x0f, 0xff, 0xec, 0x98, 0x89, 0x4e, 0x61, 0x3f, 0x6d, 0x3b, 0xd1, 0xb9, 0x3c, 0xe5, 0xf5, + 0xe3, 0x5d, 0x0c, 0x05, 0x86, 0x62, 0xe6, 0x37, 0x64, 0xfd, 0x18, 0x8d, 0x03, 0x8d, 0x23, 0x77, + 0x1a, 0x07, 0xeb, 0xc7, 0x68, 0x1a, 0x68, 0x1a, 0xaa, 0x9a, 0x06, 0xeb, 0xc7, 0x0b, 0x57, 0x36, + 0xde, 0xe8, 0x90, 0x46, 0xfb, 0x14, 0x9f, 0x48, 0x82, 0x36, 0xba, 0x2d, 0x99, 0x11, 0x47, 0x11, + 0xe2, 0x80, 0x38, 0xf2, 0x41, 0x1c, 0xba, 0x78, 0xdf, 0x6f, 0xe0, 0x6b, 0xa3, 0xda, 0x74, 0x42, + 0xaf, 0xe2, 0xf9, 0xdf, 0xbd, 0xaa, 0xf9, 0xbb, 0xee, 0xaf, 0x4a, 0x8f, 0x34, 0xfb, 0x26, 0x13, + 0x27, 0x3a, 0x98, 0x4e, 0x4f, 0xc9, 0x69, 0x2a, 0x3f, 0x5d, 0xa5, 0xa7, 0xad, 0xb5, 0xe9, 0x6b, + 0x6d, 0x1a, 0x5b, 0x99, 0xce, 0x42, 0x8e, 0xdb, 0x70, 0xc4, 0x19, 0x07, 0x16, 0xd3, 0x5c, 0xa5, + 0xd6, 0xd1, 0x79, 0xd3, 0x26, 0xe8, 0x3b, 0x81, 0xa6, 0x64, 0x62, 0x0e, 0xb9, 0xd8, 0xc3, 0x4a, + 0x0c, 0x62, 0x09, 0x84, 0xc7, 0x80, 0x58, 0xba, 0x5d, 0x0b, 0x40, 0x2c, 0x18, 0xa3, 0x58, 0x89, + 0x55, 0xd2, 0x7a, 0x55, 0xf2, 0x47, 0xfd, 0xa5, 0xfa, 0xf6, 0xd6, 0xb2, 0xd1, 0xca, 0xdd, 0x82, + 0xc2, 0x2b, 0x93, 0x43, 0xaf, 0xda, 0xa8, 0x14, 0x79, 0x41, 0x2c, 0x4c, 0x5f, 0xed, 0x26, 0x21, + 0x2f, 0xc8, 0x0b, 0xf2, 0x82, 0xbc, 0x20, 0x2f, 0xc8, 0x0b, 0xf2, 0x82, 0xbc, 0x96, 0x8f, 0xbc, + 0x52, 0x95, 0xdb, 0x0c, 0x53, 0xeb, 0xfa, 0xed, 0xc8, 0xa4, 0xd8, 0xb5, 0x53, 0x4e, 0xb6, 0x0d, + 0x45, 0xef, 0xf5, 0xc9, 0xe7, 0xa0, 0x5d, 0x47, 0x71, 0xe3, 0xfe, 0xac, 0x77, 0xab, 0xfb, 0xe3, + 0xde, 0x4d, 0x32, 0xbc, 0x8e, 0x50, 0xf5, 0x22, 0xff, 0x31, 0x70, 0x63, 0xaf, 0xda, 0x3b, 0xe3, + 0xc5, 0xad, 0x56, 0x43, 0x2f, 0x12, 0x58, 0x58, 0x98, 0xde, 0x34, 0xb9, 0x0d, 0xac, 0x34, 0x2c, + 0x08, 0x90, 0xf3, 0x9a, 0xdb, 0xf0, 0xe4, 0x56, 0x0c, 0xa7, 0xcf, 0xf0, 0x14, 0x2a, 0xbe, 0x33, + 0xdb, 0xaa, 0x16, 0x7b, 0x61, 0x60, 0x4c, 0xbd, 0x85, 0x7f, 0x7d, 0xde, 0x71, 0x0e, 0x5d, 0xe7, + 0xa1, 0xec, 0x7c, 0xb8, 0xfb, 0xb9, 0xfb, 0xb2, 0x71, 0x34, 0xfa, 0xf7, 0xcd, 0x9f, 0x7b, 0x2f, + 0x7f, 0x29, 0x2c, 0xe5, 0xea, 0xed, 0xb8, 0x69, 0x94, 0xdb, 0x2a, 0x37, 0xa3, 0x6d, 0xec, 0x2e, + 0x76, 0x17, 0xbb, 0xab, 0x34, 0x5e, 0x04, 0x0e, 0xbf, 0x9b, 0x36, 0x9f, 0xc8, 0x32, 0xb3, 0x1b, + 0xb4, 0x92, 0x65, 0x96, 0x9d, 0x57, 0x60, 0x72, 0x58, 0x5f, 0x2a, 0xef, 0x81, 0x14, 0xb3, 0x59, + 0x90, 0x22, 0x93, 0xd7, 0xfe, 0xba, 0x41, 0x70, 0x04, 0x1c, 0x01, 0x47, 0x94, 0xc6, 0x0b, 0x29, + 0xee, 0x79, 0x83, 0x8f, 0x1d, 0xe0, 0x63, 0xd1, 0xaf, 0xa0, 0xb4, 0x7b, 0x58, 0x3a, 0xdc, 0x3f, + 0xd8, 0x3d, 0xdc, 0x03, 0x40, 0x72, 0x0a, 0x20, 0xed, 0xd2, 0x25, 0x41, 0xf3, 0x49, 0x14, 0x42, + 0xfa, 0x8d, 0x02, 0x22, 0x80, 0x08, 0x20, 0xa2, 0x0c, 0x22, 0xc5, 0x7d, 0x01, 0x10, 0xd9, 0x07, + 0x44, 0x00, 0x91, 0x55, 0x51, 0x41, 0xf6, 0xf6, 0xde, 0xc2, 0x20, 0xb9, 0x66, 0x10, 0x2b, 0xeb, + 0x34, 0x54, 0x37, 0x84, 0x46, 0xa0, 0x11, 0x83, 0xf1, 0x42, 0x75, 0xc3, 0xbc, 0xd3, 0x09, 0x6b, + 0x34, 0x0b, 0x7f, 0x05, 0x54, 0x37, 0xcc, 0x2f, 0x9b, 0x84, 0xf5, 0x7a, 0x6c, 0x25, 0x73, 0x6f, + 0xa4, 0x61, 0xc8, 0x04, 0x32, 0x81, 0x4c, 0x94, 0xc6, 0x0b, 0x79, 0x7b, 0xcb, 0x6c, 0x71, 0xad, + 0x44, 0x83, 0xa3, 0x2d, 0x63, 0x73, 0xb1, 0xb9, 0xd8, 0x5c, 0xe5, 0x68, 0x90, 0x9c, 0x3d, 0xe2, + 0x41, 0xe2, 0x41, 0xa3, 0x57, 0x40, 0xce, 0x5e, 0xfe, 0x00, 0xe5, 0xa1, 0x1e, 0xfe, 0xc7, 0x0d, + 0xab, 0x4e, 0x1c, 0xba, 0x41, 0xe4, 0x47, 0x7e, 0xab, 0xcb, 0x05, 0x02, 0xc2, 0xc9, 0xcd, 0x82, + 0x26, 0xa0, 0x09, 0x68, 0xa2, 0x34, 0x5e, 0x24, 0xea, 0x18, 0x08, 0xd4, 0x2f, 0x80, 0x45, 0x54, + 0x1c, 0x21, 0x2b, 0xe7, 0x8b, 0xc7, 0x41, 0x6b, 0xf5, 0x06, 0x20, 0x13, 0x0e, 0x3c, 0x85, 0x3b, + 0xe0, 0x8e, 0xe5, 0xe6, 0x0e, 0x0e, 0x3c, 0xb5, 0x6d, 0xdf, 0xe4, 0x32, 0x94, 0x49, 0x4b, 0xc6, + 0xce, 0x61, 0xe7, 0xf4, 0xc6, 0x0b, 0x69, 0xc9, 0x04, 0x57, 0x04, 0x57, 0x8a, 0xaf, 0x80, 0xb4, + 0xe4, 0xdc, 0x45, 0x53, 0x1c, 0xaf, 0x0e, 0x77, 0xc0, 0x1d, 0xd9, 0xe1, 0x0e, 0x12, 0x90, 0xf3, + 0xce, 0x21, 0x2c, 0x38, 0x2f, 0xfc, 0x15, 0x90, 0x80, 0x9c, 0x47, 0x0a, 0xd1, 0x3b, 0x02, 0x78, + 0x32, 0x82, 0xe8, 0x9c, 0x07, 0x0c, 0x7f, 0xc0, 0x1f, 0x2b, 0xcf, 0x1f, 0x7e, 0xd5, 0x0b, 0x62, + 0x3f, 0x7e, 0x16, 0x12, 0x76, 0x4d, 0xa8, 0xe3, 0xac, 0xfb, 0x55, 0xde, 0xbb, 0x91, 0x27, 0x77, + 0x3a, 0xc7, 0xcd, 0xed, 0xd5, 0xfd, 0xd5, 0xe5, 0xf5, 0xed, 0xfd, 0xcd, 0x6d, 0xf9, 0xf6, 0xd4, + 0x74, 0x0c, 0xb6, 0x3d, 0x4e, 0x24, 0x52, 0xb7, 0x5f, 0xc8, 0xa5, 0xf6, 0x9e, 0xf3, 0xfc, 0xec, + 0xe6, 0xf6, 0xf4, 0xe2, 0xec, 0xe2, 0x63, 0x21, 0x0b, 0xd8, 0x20, 0xfc, 0x70, 0x27, 0x67, 0x37, + 0xe5, 0xf7, 0xe7, 0xa7, 0x27, 0xcb, 0xf8, 0x6c, 0xef, 0xcf, 0x2f, 0x8f, 0xff, 0xb1, 0xa4, 0xef, + 0xed, 0xfc, 0xb4, 0x7c, 0xbd, 0xac, 0x63, 0xf2, 0xc3, 0xe5, 0xf5, 0x1f, 0xe5, 0xeb, 0x13, 0x99, + 0xa7, 0x33, 0x6a, 0xe1, 0x2e, 0x6d, 0xaf, 0x95, 0x0a, 0x23, 0x86, 0xf5, 0x9a, 0x00, 0x1d, 0xb6, + 0x5b, 0x81, 0x0b, 0xe1, 0x42, 0xb8, 0x10, 0x2e, 0x9c, 0xc8, 0x85, 0xd7, 0x97, 0xe7, 0x4b, 0x8c, + 0x85, 0xd7, 0x97, 0x97, 0xb7, 0x4b, 0x49, 0x4d, 0xe5, 0xe3, 0x7f, 0xfc, 0x7e, 0xb5, 0x94, 0xac, + 0x7b, 0x7a, 0x73, 0xf6, 0xf1, 0xa2, 0x7c, 0xbb, 0x9c, 0xb4, 0x5b, 0x3e, 0xbf, 0x3d, 0xbd, 0x6e, + 0x3d, 0x1d, 0xd0, 0x24, 0x7b, 0x85, 0xe2, 0xab, 0x36, 0x3d, 0x5c, 0x49, 0xf2, 0x50, 0x25, 0xb5, + 0xa1, 0x90, 0xbc, 0x5b, 0x92, 0x7d, 0x32, 0x61, 0xc7, 0xb5, 0xb8, 0x45, 0x31, 0x91, 0xb4, 0x70, + 0xee, 0x47, 0x71, 0x39, 0x8e, 0xd5, 0x0e, 0x8d, 0x2f, 0x7c, 0xf2, 0x83, 0xd3, 0x9a, 0xd7, 0x02, + 0x90, 0x96, 0x47, 0x09, 0x9a, 0xb5, 0xda, 0x1b, 0x85, 0x8b, 0xdd, 0x1f, 0xfa, 0x17, 0x5f, 0x86, + 0x55, 0x2f, 0xf4, 0xaa, 0xef, 0x9f, 0xbb, 0x97, 0x8a, 0xf6, 0x9f, 0xe6, 0x80, 0x93, 0x19, 0x68, + 0x0a, 0x0e, 0x7e, 0xee, 0xf1, 0x5c, 0xc9, 0x86, 0xeb, 0xfc, 0xc1, 0x37, 0xfb, 0x13, 0x73, 0xba, + 0x55, 0xb5, 0x3b, 0x4d, 0xba, 0x71, 0xf6, 0x03, 0x4f, 0x7f, 0x8c, 0x19, 0x8f, 0x50, 0x48, 0x26, + 0xfe, 0x0f, 0x2d, 0x93, 0xce, 0xd7, 0xf7, 0xfb, 0xb0, 0x39, 0xe7, 0x63, 0xfd, 0xb8, 0x6c, 0x77, + 0xce, 0x07, 0x15, 0xe2, 0x2f, 0xf5, 0x38, 0x4b, 0x35, 0x9e, 0xd2, 0x8e, 0x9b, 0xb4, 0xe3, 0x23, + 0xad, 0x38, 0xc8, 0x6c, 0x50, 0x9f, 0xf8, 0xc9, 0x6c, 0x65, 0x41, 0xf3, 0xc8, 0xb9, 0x41, 0x5a, + 0xb3, 0xce, 0xb9, 0x72, 0x8a, 0x82, 0x80, 0xb2, 0x00, 0xa0, 0x13, 0xf0, 0xeb, 0x07, 0xf8, 0xba, + 0x01, 0xbd, 0x71, 0x00, 0x6f, 0x1c, 0xb0, 0x1b, 0x05, 0xe8, 0xb2, 0x50, 0xa0, 0x1c, 0x70, 0x1b, + 0xd6, 0x77, 0xd1, 0xa9, 0xe7, 0xa2, 0x5d, 0xbf, 0x45, 0xb8, 0x5e, 0xcb, 0x9d, 0x94, 0xdf, 0x7c, + 0x93, 0xd8, 0x3e, 0x28, 0x27, 0xba, 0xbd, 0x36, 0x10, 0x8a, 0xa9, 0x6d, 0x58, 0x08, 0x2c, 0x84, + 0x98, 0x85, 0x10, 0xa8, 0x46, 0xa2, 0x51, 0x7d, 0x44, 0x33, 0xf9, 0x4b, 0x23, 0x82, 0x34, 0x49, + 0xee, 0x32, 0xd5, 0xe6, 0x0d, 0x93, 0xb7, 0x24, 0xf2, 0x84, 0x74, 0xd6, 0x44, 0x4c, 0x92, 0xb1, + 0xa4, 0xba, 0xcc, 0xa4, 0xba, 0x87, 0x48, 0xbf, 0x59, 0x52, 0x0b, 0xd2, 0x74, 0x4f, 0xa6, 0x05, + 0x18, 0x85, 0x0a, 0x2e, 0xe2, 0xae, 0x70, 0x57, 0x00, 0x6d, 0x2e, 0x80, 0xd6, 0xb8, 0x80, 0xa0, + 0x54, 0xc1, 0x40, 0x6c, 0x06, 0x36, 0x03, 0xc4, 0x05, 0x71, 0x41, 0x5c, 0x10, 0x77, 0x56, 0x37, + 0x74, 0x2b, 0xbf, 0xf9, 0xc1, 0xa3, 0x53, 0xf5, 0x6a, 0xae, 0x86, 0xa3, 0x1a, 0x6b, 0x01, 0x07, + 0x85, 0x83, 0x4a, 0xd9, 0x41, 0x35, 0xfd, 0x20, 0x7e, 0xa7, 0xe1, 0x8d, 0xf6, 0xf0, 0x46, 0x93, + 0x4d, 0x6b, 0x09, 0x6f, 0xa4, 0xda, 0x65, 0x6f, 0xf1, 0x44, 0x46, 0x9e, 0xe8, 0x9b, 0x57, 0xab, + 0xd5, 0x9d, 0xd8, 0x57, 0x28, 0x23, 0xd6, 0x9f, 0xff, 0x43, 0xd7, 0xe2, 0x7d, 0xf0, 0x3e, 0x78, + 0x1f, 0x62, 0xa1, 0x15, 0xf3, 0x3e, 0x45, 0xbc, 0x8f, 0x99, 0xf7, 0xa9, 0xd7, 0xaa, 0x4e, 0xbb, + 0x7a, 0xaf, 0x86, 0xf7, 0x19, 0x5c, 0x9b, 0xd0, 0xd6, 0x9c, 0x78, 0x0f, 0x6e, 0xb3, 0xd6, 0x36, + 0x7a, 0xfb, 0x78, 0x2c, 0x3c, 0x16, 0x1e, 0x0b, 0x8f, 0x85, 0xc7, 0xc2, 0x63, 0x29, 0x7b, 0x2c, + 0xcd, 0x70, 0xa9, 0x7f, 0x29, 0xbe, 0x07, 0xdf, 0x83, 0xef, 0xc9, 0xb7, 0xef, 0xd9, 0xc1, 0xf7, + 0xa8, 0x76, 0xd9, 0xee, 0xde, 0x1e, 0xce, 0xc7, 0xc4, 0xf9, 0xd4, 0xdc, 0x28, 0x76, 0xe2, 0x7a, + 0xa3, 0x5e, 0xab, 0x3f, 0x3e, 0x3b, 0x95, 0x6f, 0xdd, 0xf9, 0xa6, 0xe8, 0x87, 0x26, 0xb6, 0x82, + 0x4b, 0xc2, 0x25, 0xa5, 0xec, 0x92, 0x5a, 0x28, 0x14, 0xfb, 0x95, 0x7f, 0x47, 0x4a, 0xe7, 0xf6, + 0x68, 0x9c, 0xd3, 0x53, 0xf8, 0x3d, 0xe8, 0x58, 0x8d, 0x42, 0xe0, 0x06, 0xf5, 0xc8, 0xab, 0xd4, + 0x83, 0xaa, 0x52, 0x1a, 0x16, 0x8e, 0x0d, 0xc7, 0x36, 0x33, 0xa8, 0x12, 0x3b, 0x47, 0x07, 0x4f, + 0xd7, 0xe9, 0x86, 0x27, 0xf7, 0x87, 0xe3, 0xea, 0x38, 0xb7, 0xde, 0x85, 0xf8, 0x33, 0xfc, 0x19, + 0x21, 0x56, 0xbe, 0x3d, 0xd1, 0x3e, 0x9e, 0x48, 0xb5, 0xcb, 0x48, 0xcc, 0x33, 0xf3, 0x3b, 0xed, + 0xa4, 0xef, 0x4a, 0x3d, 0xd2, 0x58, 0x8f, 0x1a, 0x5c, 0x8a, 0xef, 0xc1, 0xf7, 0x2c, 0xc0, 0xf7, + 0xbc, 0xdd, 0x25, 0x33, 0x9c, 0x30, 0x68, 0x91, 0xce, 0x67, 0xf7, 0xb0, 0x74, 0xb8, 0x7f, 0xb0, + 0x7b, 0x48, 0xf0, 0x63, 0xee, 0x84, 0x1a, 0xf5, 0x50, 0xd7, 0x09, 0xb5, 0x2f, 0xc5, 0x09, 0xe1, + 0x84, 0x16, 0xe0, 0x84, 0x94, 0x8e, 0x89, 0xd3, 0x38, 0x16, 0x0e, 0x27, 0x84, 0x13, 0x9a, 0x1d, + 0x34, 0xea, 0x1f, 0xbb, 0x86, 0xff, 0xe9, 0x74, 0xc3, 0xab, 0xb5, 0x21, 0x8d, 0x9d, 0xf7, 0x63, + 0x2d, 0xe0, 0x8d, 0xf0, 0x46, 0x29, 0x7b, 0xa3, 0x76, 0x6a, 0xa8, 0x17, 0x5a, 0x5f, 0x5c, 0xc2, + 0x21, 0xe1, 0x90, 0x66, 0x75, 0x19, 0x8b, 0x43, 0x4a, 0xfe, 0x29, 0xdb, 0x75, 0x3f, 0x13, 0x94, + 0xe4, 0x9d, 0x51, 0xf2, 0x73, 0x4d, 0xe1, 0x99, 0x92, 0x3e, 0x8b, 0xf2, 0x33, 0x14, 0x66, 0x16, + 0x1e, 0x9d, 0x54, 0xdd, 0x75, 0xf2, 0xf3, 0x8e, 0x3f, 0xcd, 0xe8, 0x6f, 0x5e, 0x3d, 0xd7, 0xbc, + 0xe7, 0x51, 0x79, 0x8e, 0x09, 0x8f, 0x30, 0xfe, 0xd5, 0x47, 0xbf, 0xf5, 0xe0, 0xbb, 0x0d, 0x7d, + 0xaf, 0x42, 0xf4, 0x1c, 0xc5, 0xde, 0xf8, 0xe1, 0xf2, 0x83, 0x12, 0x0c, 0x9d, 0x7f, 0x7f, 0xf5, + 0x24, 0x93, 0x4b, 0xa9, 0x4e, 0xa5, 0x91, 0x59, 0xd4, 0x31, 0x42, 0x17, 0xcf, 0x93, 0x38, 0x69, + 0x1e, 0x45, 0x24, 0xa6, 0x85, 0xc4, 0x54, 0x30, 0xe6, 0xfd, 0x9f, 0x27, 0x14, 0xb9, 0x9d, 0xfd, + 0xae, 0xa7, 0x95, 0x2a, 0x2d, 0xb8, 0xae, 0x3b, 0xfd, 0x49, 0x7a, 0x7d, 0xd1, 0xfa, 0xd0, 0x94, + 0xaf, 0x36, 0xbb, 0x8a, 0xed, 0x5c, 0x20, 0x4c, 0x02, 0x80, 0xc3, 0xaf, 0x64, 0xfa, 0x37, 0x51, + 0x01, 0x3c, 0x65, 0xa0, 0x53, 0x06, 0xb8, 0xd7, 0xaf, 0xac, 0xf5, 0xbd, 0x85, 0xcc, 0xd0, 0xbc, + 0xaa, 0xb3, 0x05, 0xb7, 0xd2, 0x26, 0x2d, 0x3f, 0x78, 0x4c, 0x5e, 0xb1, 0x78, 0xe8, 0x1a, 0xe1, + 0xb2, 0xc5, 0x3b, 0x76, 0xca, 0x16, 0xcf, 0x1e, 0x08, 0xba, 0xc4, 0xbf, 0xf8, 0xb2, 0xc5, 0x33, + 0x07, 0x8a, 0x8c, 0x4f, 0x4e, 0x5c, 0xb6, 0xb8, 0xd2, 0x7b, 0x87, 0x8a, 0xc1, 0x66, 0xf7, 0x3a, + 0xb5, 0x10, 0xb3, 0x98, 0xd1, 0x10, 0x33, 0xd9, 0x40, 0x5b, 0xbe, 0x10, 0x33, 0xd1, 0x40, 0xb4, + 0x13, 0x62, 0x26, 0x1d, 0xa0, 0x13, 0x2c, 0x9e, 0xf3, 0xe4, 0xc5, 0xdf, 0xea, 0x55, 0xf5, 0xfe, + 0x1f, 0x37, 0x84, 0xbd, 0xa6, 0x14, 0xbb, 0x51, 0x2f, 0x48, 0xd1, 0x3e, 0x7e, 0xcb, 0xe4, 0xd8, + 0x2d, 0xfd, 0x61, 0x6e, 0x3a, 0xdc, 0xc5, 0x86, 0xbd, 0xd8, 0xf0, 0x17, 0x99, 0x06, 0x9a, 0x31, + 0x9d, 0xe2, 0x1b, 0xd7, 0x3e, 0x36, 0x6b, 0xb0, 0x2e, 0x10, 0xb4, 0xa0, 0x5f, 0xe3, 0x75, 0xf7, + 0x6c, 0xf5, 0xa1, 0xc6, 0xb5, 0xdd, 0xaf, 0xad, 0x77, 0xe6, 0x14, 0x67, 0x84, 0xcd, 0x7f, 0xc0, + 0x72, 0xb9, 0x7c, 0xff, 0xe9, 0xf4, 0xf6, 0xef, 0x97, 0x27, 0xf7, 0xb7, 0x7f, 0x5e, 0x2d, 0xf3, + 0xe1, 0xb1, 0x97, 0xc7, 0xe5, 0xf3, 0x65, 0x3c, 0x6e, 0xea, 0xba, 0x7c, 0x72, 0xf6, 0xfb, 0xcd, + 0x7d, 0xf9, 0x7c, 0x29, 0x9f, 0xee, 0xb6, 0x7c, 0x5c, 0x3e, 0x96, 0x7a, 0xba, 0x7c, 0x9d, 0xa6, + 0xf5, 0x66, 0x51, 0x46, 0x2f, 0x8a, 0xc3, 0xf9, 0x31, 0x5d, 0x22, 0x7b, 0xf7, 0x2e, 0xa5, 0x73, + 0xc4, 0xee, 0xac, 0xfa, 0x4e, 0xad, 0x33, 0xae, 0x06, 0xea, 0xb5, 0xc1, 0x59, 0x57, 0xc3, 0x12, + 0xb8, 0x79, 0x23, 0xc3, 0x67, 0x5f, 0x19, 0x9e, 0x39, 0xdb, 0x8c, 0xbc, 0x50, 0x97, 0xba, 0x04, + 0x4e, 0x59, 0x1d, 0x46, 0xc0, 0x7a, 0xe7, 0xa9, 0x9c, 0xaf, 0xcf, 0x26, 0x23, 0x56, 0xf2, 0x84, + 0xd5, 0x11, 0x1c, 0x6c, 0xf7, 0x54, 0x36, 0x8f, 0xd3, 0x5b, 0x50, 0xa4, 0x66, 0xe1, 0x94, 0xb4, + 0xb6, 0xc0, 0xbb, 0xdd, 0xfd, 0x3f, 0xd7, 0x75, 0xb7, 0x07, 0x11, 0xd9, 0x76, 0x57, 0x58, 0x48, + 0x71, 0xe5, 0xdd, 0xfb, 0xde, 0x9d, 0xa7, 0x8a, 0x12, 0x48, 0xf7, 0x3a, 0x24, 0x10, 0x24, 0x90, + 0x74, 0x24, 0x90, 0xf6, 0x80, 0xd3, 0x97, 0x3d, 0x3a, 0x97, 0xeb, 0x49, 0x1d, 0x45, 0xa4, 0x0e, + 0xa4, 0x0e, 0x3b, 0xb8, 0xa6, 0x3a, 0x0d, 0xfa, 0x17, 0x2a, 0x4a, 0xd7, 0x53, 0x87, 0x8b, 0x92, + 0x94, 0x2d, 0x34, 0x41, 0x8c, 0x27, 0x8a, 0xc4, 0x84, 0x91, 0x9b, 0x38, 0x92, 0xb0, 0xb8, 0x9e, + 0xcb, 0x23, 0xf9, 0xb5, 0x26, 0xd6, 0x42, 0x22, 0x4e, 0xed, 0x09, 0x37, 0xea, 0x87, 0x3a, 0xa7, + 0x22, 0x88, 0x09, 0x5b, 0x43, 0x6d, 0x1a, 0xbe, 0x18, 0xb3, 0x0c, 0x22, 0xb1, 0x89, 0x29, 0x39, + 0x41, 0xe5, 0x27, 0xaa, 0xf4, 0x84, 0xb5, 0x36, 0x71, 0xad, 0x4d, 0x60, 0x2b, 0x13, 0x59, 0x46, + 0xba, 0x32, 0x94, 0xf5, 0xf4, 0x17, 0x0f, 0xa6, 0x8e, 0x37, 0x19, 0x5d, 0x7d, 0xcc, 0x67, 0xee, + 0x09, 0xb4, 0x25, 0xaa, 0xb3, 0x8f, 0x3d, 0x78, 0xb9, 0x5c, 0xbe, 0x2f, 0x1f, 0x1f, 0x5f, 0xfe, + 0x7e, 0x71, 0x7b, 0x76, 0xf1, 0xf1, 0xfe, 0xf4, 0x9f, 0xa7, 0x17, 0xb7, 0x12, 0xca, 0x7b, 0xff, + 0x46, 0x82, 0x0a, 0xbc, 0xb9, 0xa4, 0xa8, 0xde, 0x15, 0xe7, 0x97, 0x1f, 0xcf, 0x2e, 0x0a, 0x62, + 0x37, 0x7c, 0x79, 0x93, 0xcb, 0x5e, 0x38, 0xbe, 0xfc, 0xf4, 0xa9, 0x7c, 0x71, 0x22, 0xd8, 0x0f, + 0x22, 0x2d, 0xdd, 0x2d, 0xda, 0x8e, 0xad, 0x2d, 0x60, 0x1c, 0x14, 0x42, 0xaf, 0xd2, 0x71, 0x40, + 0x42, 0x64, 0xd2, 0x6d, 0x0f, 0x2a, 0x81, 0x4a, 0xa0, 0x92, 0x4c, 0x51, 0x89, 0x17, 0x34, 0x9f, + 0xbc, 0xb0, 0x23, 0x4d, 0x0b, 0x52, 0x49, 0x49, 0xa0, 0xad, 0xd3, 0xa0, 0xd9, 0xce, 0x70, 0x5e, + 0x98, 0x01, 0x4d, 0x35, 0xa2, 0xd4, 0x5c, 0x22, 0x18, 0x6b, 0x47, 0x73, 0xc9, 0xa0, 0x23, 0xc4, + 0x77, 0xfe, 0x4f, 0x69, 0xfd, 0xc0, 0xbc, 0xd7, 0x74, 0xf6, 0xc7, 0x08, 0x84, 0xcf, 0x72, 0x61, + 0xb3, 0xe9, 0x86, 0x1b, 0xf4, 0x2b, 0xf4, 0xab, 0x94, 0xad, 0x8d, 0xb1, 0x23, 0x19, 0x14, 0x65, + 0xf5, 0xdc, 0x07, 0xa1, 0x54, 0xb1, 0x03, 0x83, 0x36, 0xae, 0xba, 0x06, 0x6f, 0x6b, 0xab, 0x6b, + 0xbd, 0xb6, 0x87, 0xa6, 0x75, 0x86, 0x0d, 0x59, 0x67, 0x5f, 0x96, 0xb1, 0x0d, 0xeb, 0x34, 0xb3, + 0x60, 0xf9, 0x7d, 0x17, 0xf3, 0x85, 0xf9, 0x4a, 0xc5, 0x7c, 0x21, 0xbf, 0x13, 0xe8, 0x12, 0xe8, + 0x12, 0xe8, 0x2a, 0x8c, 0x37, 0xe4, 0x77, 0xe4, 0x77, 0xe4, 0x77, 0xe4, 0xf7, 0xd4, 0xd4, 0x23, + 0xe4, 0x77, 0xa8, 0x04, 0x2a, 0x81, 0x4a, 0x66, 0xc7, 0x0c, 0xc8, 0xef, 0xd9, 0x88, 0x28, 0xb3, + 0x24, 0xbf, 0x27, 0xa8, 0xd5, 0x23, 0x28, 0x5a, 0x59, 0x4d, 0x4c, 0xfd, 0x87, 0xf7, 0x6c, 0x14, + 0x1a, 0x2f, 0xe5, 0x46, 0xa4, 0x56, 0x13, 0x56, 0x7b, 0xdd, 0x70, 0x30, 0x4b, 0x0c, 0xe2, 0x82, + 0x96, 0x16, 0x3a, 0x52, 0x09, 0xa9, 0x7d, 0x8f, 0xfb, 0xb2, 0xeb, 0xde, 0x97, 0xfb, 0xf7, 0xb8, + 0x3f, 0x6d, 0x37, 0xce, 0xa6, 0x9f, 0x69, 0xbd, 0x9f, 0xe6, 0xa6, 0x1f, 0x35, 0xed, 0x5a, 0x4b, + 0xab, 0xd6, 0xde, 0xf2, 0xb3, 0xcb, 0x96, 0x1f, 0x49, 0xc8, 0xa3, 0xea, 0x09, 0x55, 0x4f, 0xd8, + 0x0a, 0x44, 0xd5, 0x93, 0x44, 0xb6, 0x9a, 0xaa, 0x27, 0x54, 0x3d, 0x49, 0x5d, 0xe6, 0xa4, 0xea, + 0x49, 0xbe, 0x9f, 0x8e, 0xaa, 0x27, 0xe9, 0x1b, 0x3d, 0xaa, 0x9e, 0x2c, 0xbf, 0xd8, 0x40, 0xd5, + 0x13, 0x3b, 0x28, 0xb8, 0x4e, 0xd5, 0x93, 0x8c, 0x09, 0x20, 0x0a, 0xb2, 0x69, 0x8e, 0xca, 0xb9, + 0xcf, 0x78, 0xe2, 0x42, 0x22, 0x8d, 0x66, 0xae, 0xa6, 0xa6, 0x5d, 0x15, 0x7e, 0x46, 0x81, 0x69, + 0xb7, 0x19, 0x7f, 0x6b, 0x51, 0x6c, 0x25, 0x59, 0x27, 0x0c, 0x02, 0xec, 0xd1, 0xeb, 0xa8, 0xb1, + 0x4c, 0x8d, 0xe5, 0xee, 0x80, 0xaa, 0x3e, 0xf9, 0x81, 0xd3, 0xb6, 0xb1, 0xca, 0x82, 0xe3, 0xd0, + 0xb5, 0x14, 0x1a, 0x42, 0x75, 0x4c, 0x47, 0x75, 0xd4, 0xac, 0xac, 0x62, 0x56, 0x51, 0x85, 0x52, + 0x43, 0xe8, 0x8b, 0x59, 0x2d, 0x35, 0xd4, 0xb1, 0xc2, 0x0d, 0x37, 0x8a, 0xfe, 0x63, 0x92, 0xdc, + 0xf4, 0xca, 0xaa, 0xf7, 0xdb, 0x63, 0xeb, 0x16, 0x7b, 0x1f, 0x52, 0x9e, 0x68, 0x0b, 0x91, 0x7d, + 0x04, 0xb7, 0x6e, 0x2d, 0x5c, 0xfe, 0xd1, 0xec, 0x81, 0xd3, 0x1f, 0xb1, 0x99, 0xf2, 0x2c, 0x37, + 0xba, 0xeb, 0x15, 0xc7, 0xfb, 0x11, 0x1f, 0x0d, 0x05, 0x6c, 0xdf, 0xdc, 0xe8, 0x9b, 0x57, 0x75, + 0xbe, 0xb7, 0x0f, 0x51, 0x13, 0x1d, 0xf5, 0x0f, 0x6e, 0x2d, 0x92, 0x1c, 0xf6, 0x69, 0x0f, 0xf8, + 0xbb, 0x54, 0x36, 0xd4, 0x8d, 0xba, 0x85, 0xee, 0xeb, 0x90, 0xf6, 0x36, 0xbd, 0x66, 0x71, 0x3a, + 0x38, 0x1d, 0x9c, 0x8e, 0x5a, 0x5c, 0x13, 0x3e, 0x37, 0xe2, 0xc1, 0x44, 0x32, 0xdc, 0x2e, 0x97, + 0xfa, 0x02, 0xc4, 0xcb, 0xf2, 0x24, 0xee, 0x8d, 0x48, 0x6d, 0xdb, 0x03, 0x91, 0x44, 0xab, 0xfc, + 0x83, 0x82, 0xc6, 0xac, 0xa0, 0x5c, 0xe8, 0xed, 0x8e, 0x36, 0xda, 0x15, 0x6d, 0x1c, 0x42, 0xef, + 0x12, 0x42, 0x13, 0x42, 0x13, 0x42, 0x43, 0x33, 0xd0, 0x0c, 0x21, 0x34, 0x21, 0x34, 0x21, 0x34, + 0x21, 0x34, 0x21, 0x34, 0x4e, 0x07, 0xa7, 0x43, 0x08, 0x6d, 0x6a, 0x92, 0x5a, 0xd1, 0x69, 0x37, + 0x95, 0x45, 0xc4, 0x16, 0xf5, 0xdb, 0xc3, 0x08, 0x61, 0x84, 0x30, 0x42, 0xf9, 0x22, 0x5f, 0xa4, + 0xbb, 0x09, 0xd2, 0x9d, 0xc6, 0xd6, 0xf1, 0xa5, 0xce, 0x0e, 0x9d, 0xd6, 0x51, 0x05, 0x25, 0x11, + 0x72, 0x5a, 0x0a, 0xe5, 0x48, 0xeb, 0xf7, 0xe5, 0x56, 0xeb, 0xbf, 0x27, 0xce, 0x02, 0x96, 0xd9, + 0x83, 0xab, 0x98, 0x66, 0xa4, 0x97, 0x5e, 0x44, 0x3e, 0xdc, 0x3a, 0xf9, 0x70, 0x66, 0x1a, 0xe6, + 0xab, 0xcc, 0x5e, 0xf3, 0x9d, 0xb8, 0x13, 0x9b, 0x63, 0x37, 0xae, 0x3d, 0x3e, 0x43, 0xea, 0x67, + 0x37, 0xae, 0x65, 0x69, 0x90, 0xdd, 0xb8, 0x9a, 0xcd, 0xb2, 0x1b, 0x37, 0xf5, 0x07, 0x63, 0x37, + 0xae, 0xdd, 0x08, 0xb7, 0xf7, 0x1f, 0xbb, 0x71, 0xb3, 0x1b, 0x51, 0xb3, 0x1b, 0x37, 0x49, 0x23, + 0xec, 0xc6, 0x4d, 0x47, 0x9a, 0x63, 0x37, 0x6e, 0xd6, 0xf4, 0x16, 0x95, 0x44, 0x32, 0x4a, 0x92, + 0x21, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, + 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0x20, 0x86, 0xe4, 0x5e, + 0x0c, 0x91, 0x2d, 0x4f, 0x96, 0x40, 0x0b, 0x69, 0xbd, 0xf5, 0x48, 0x5d, 0x0b, 0xe9, 0x5c, 0x46, + 0x62, 0x08, 0x5a, 0x48, 0x3a, 0x5a, 0x88, 0x52, 0x4d, 0x2f, 0x09, 0x27, 0x40, 0x91, 0x24, 0x94, + 0x8e, 0xac, 0xee, 0xf0, 0xd4, 0xac, 0x1a, 0x36, 0x36, 0x5c, 0xb4, 0xaa, 0x87, 0x19, 0x4e, 0x10, + 0xe3, 0x89, 0x22, 0x31, 0x61, 0xe4, 0x26, 0x8e, 0x24, 0x2b, 0xae, 0x93, 0xd7, 0x6e, 0x35, 0xe0, + 0x34, 0x3f, 0x10, 0xda, 0x78, 0x53, 0xf5, 0xd8, 0xc0, 0x33, 0xdc, 0x56, 0xfd, 0x7a, 0x32, 0x72, + 0xec, 0x62, 0x9a, 0x93, 0xd5, 0xda, 0xa4, 0xb5, 0x36, 0x79, 0xad, 0x4c, 0x62, 0x19, 0xd5, 0x2a, + 0x7b, 0xc7, 0x2e, 0x1a, 0xab, 0x4b, 0x42, 0x2a, 0x93, 0x54, 0x0f, 0x19, 0x6f, 0xe7, 0x36, 0x57, + 0xee, 0xa6, 0x4a, 0x23, 0x36, 0xb7, 0x77, 0x4f, 0x99, 0x4d, 0x02, 0xdb, 0xbc, 0x27, 0x4e, 0xa7, + 0x1c, 0xcb, 0xbf, 0x6f, 0xcc, 0x5d, 0xa3, 0xe9, 0x46, 0xf0, 0xa9, 0x1e, 0xd2, 0x6c, 0x2b, 0x38, + 0x8e, 0x12, 0x47, 0x89, 0xa3, 0xb4, 0xe4, 0x28, 0x65, 0xb7, 0x9a, 0x4b, 0x7b, 0xcd, 0xc5, 0x1c, + 0xce, 0x5e, 0xaf, 0x09, 0xae, 0x7d, 0xb7, 0x5b, 0xc3, 0xf0, 0x61, 0xf8, 0x30, 0x7c, 0x99, 0x32, + 0x7c, 0xba, 0x99, 0x46, 0x53, 0x4d, 0xdd, 0xa1, 0x40, 0x5b, 0x46, 0x99, 0x48, 0x76, 0x50, 0xdf, + 0x4e, 0x58, 0x25, 0xec, 0x28, 0x84, 0x86, 0x99, 0xc5, 0x9e, 0x93, 0xc9, 0xf1, 0x9a, 0xda, 0x7d, + 0x7b, 0x82, 0x6d, 0x8a, 0xe6, 0x80, 0x4d, 0xed, 0x90, 0x9b, 0x3f, 0x6f, 0x6e, 0x4f, 0x3f, 0xdd, + 0x9f, 0x9c, 0x7e, 0x38, 0xbb, 0x38, 0x3d, 0xb9, 0xbf, 0xbe, 0x3c, 0x3f, 0xbd, 0x11, 0xec, 0x99, + 0x75, 0xe1, 0x44, 0x31, 0x7b, 0x43, 0x64, 0x56, 0xef, 0xb4, 0x7a, 0xe5, 0xbe, 0x7c, 0xf2, 0xe9, + 0xec, 0xa2, 0x20, 0x7e, 0xbf, 0x17, 0xd1, 0x16, 0xef, 0xd6, 0xb2, 0xf5, 0xbd, 0xcc, 0x5b, 0xb9, + 0xcb, 0x21, 0xba, 0x46, 0xd1, 0x37, 0xe7, 0xdf, 0xde, 0xb3, 0x1c, 0xbd, 0xf6, 0x1a, 0x04, 0x60, + 0x01, 0x58, 0x00, 0x36, 0x53, 0x00, 0x9b, 0x39, 0x89, 0x7b, 0x21, 0x16, 0xcf, 0xb8, 0x62, 0xdc, + 0x78, 0x60, 0x60, 0x56, 0x33, 0x0e, 0x9b, 0x87, 0xcd, 0xc3, 0xe6, 0x61, 0xf3, 0xac, 0x5c, 0xa9, + 0x9b, 0x3d, 0x61, 0x58, 0xbb, 0x6e, 0xc0, 0x97, 0xfa, 0xd9, 0xb1, 0xed, 0xac, 0xd3, 0x6d, 0xed, + 0xe3, 0x27, 0xf4, 0xfb, 0x4d, 0xa7, 0x1a, 0xa9, 0xde, 0xb1, 0x14, 0x13, 0x86, 0xab, 0xfa, 0xf1, + 0x14, 0x63, 0x23, 0xd4, 0x34, 0x47, 0x6b, 0x97, 0x1c, 0x2d, 0x8b, 0x7e, 0x81, 0x1c, 0xad, 0xc1, + 0x37, 0x27, 0x47, 0x0b, 0x98, 0x03, 0xe6, 0x80, 0xb9, 0xbc, 0xc2, 0x1c, 0x39, 0x5a, 0x92, 0xb3, + 0x89, 0x1c, 0x2d, 0x49, 0x9d, 0x83, 0x1c, 0x2d, 0x1c, 0x25, 0x8e, 0x72, 0x35, 0x1d, 0x25, 0x39, + 0x5a, 0x63, 0xdf, 0x9d, 0x1c, 0x2d, 0x0c, 0x1f, 0x86, 0x6f, 0xd9, 0x0d, 0x1f, 0x39, 0x5a, 0x8b, + 0x0c, 0xab, 0x84, 0x1d, 0x85, 0xd0, 0x30, 0xb3, 0xd8, 0x73, 0xe4, 0x68, 0xbd, 0xea, 0x10, 0x72, + 0xb4, 0x12, 0xf4, 0x0e, 0x39, 0x5a, 0x8b, 0x6b, 0x85, 0x1c, 0x2d, 0x72, 0xb4, 0x00, 0x58, 0x00, + 0x36, 0xab, 0x00, 0x4b, 0x8e, 0x16, 0x39, 0x5a, 0xd8, 0x3c, 0x6c, 0x1e, 0x36, 0x2f, 0x97, 0x36, + 0x6f, 0x85, 0x73, 0xb4, 0x34, 0xce, 0x19, 0xd5, 0xef, 0x36, 0x9d, 0x14, 0x2d, 0xb9, 0xa3, 0xa2, + 0x39, 0x24, 0x9a, 0x44, 0xad, 0x45, 0x3b, 0x83, 0xbc, 0x1e, 0x12, 0x5d, 0xf3, 0xdc, 0x07, 0xa1, + 0xb2, 0xf5, 0x07, 0x06, 0x6d, 0x5c, 0x75, 0xad, 0xdd, 0xd6, 0x56, 0x37, 0xb9, 0x74, 0xbb, 0x3f, + 0xa9, 0x97, 0xe2, 0xec, 0xe9, 0x7f, 0xb4, 0xf5, 0x02, 0x5d, 0x4b, 0xb5, 0x94, 0xb5, 0xa5, 0x5b, + 0x4d, 0x2c, 0xeb, 0x79, 0xdf, 0x03, 0x3f, 0x5c, 0xd0, 0x4a, 0x5e, 0x4e, 0x76, 0x9c, 0xf5, 0xef, + 0xca, 0x45, 0xa3, 0x57, 0xa8, 0x98, 0x73, 0xa7, 0x48, 0xb2, 0x54, 0x31, 0xe7, 0x35, 0x83, 0x5e, + 0x50, 0x7d, 0x7a, 0x83, 0xa7, 0x2e, 0x24, 0x3a, 0x80, 0x2b, 0xd1, 0xe8, 0x9a, 0xdd, 0x75, 0xd3, + 0x3b, 0x64, 0x46, 0x67, 0xb4, 0x4f, 0x41, 0xaa, 0x87, 0xfe, 0xff, 0x26, 0xeb, 0x8b, 0x91, 0xc3, + 0x93, 0x06, 0x97, 0xcd, 0xe9, 0xec, 0x64, 0x59, 0xf7, 0x89, 0xa1, 0x4d, 0x05, 0xce, 0xd4, 0x21, + 0x4c, 0x15, 0xb6, 0xb4, 0xa1, 0x4a, 0x1b, 0x9e, 0xb4, 0x20, 0xc9, 0x6c, 0xba, 0x24, 0xcd, 0x42, + 0xe7, 0x64, 0x7d, 0x0a, 0xa8, 0x2f, 0xc4, 0x9b, 0x69, 0x1d, 0x26, 0xd7, 0x37, 0x60, 0x22, 0x67, + 0xc9, 0x8d, 0xb5, 0xc6, 0x51, 0x72, 0xf6, 0x42, 0x5a, 0x0a, 0xac, 0x73, 0x94, 0x5c, 0xa2, 0xff, + 0x38, 0x4a, 0x6e, 0xfe, 0x03, 0x72, 0x94, 0x5c, 0x2a, 0x12, 0x91, 0xc5, 0x07, 0xe3, 0x28, 0x39, + 0xbb, 0xa2, 0x60, 0xef, 0x3f, 0x8e, 0x92, 0x53, 0xb7, 0x77, 0x1c, 0x25, 0xc7, 0x51, 0x72, 0xd2, + 0xf8, 0xb7, 0xce, 0x51, 0x72, 0x42, 0x08, 0xb9, 0xe4, 0xea, 0x63, 0x3f, 0x28, 0x5b, 0xc0, 0xb1, + 0xfa, 0xde, 0xf7, 0xee, 0x54, 0x55, 0xd4, 0x42, 0xba, 0xd7, 0xa1, 0x85, 0xa0, 0x85, 0xa4, 0xa3, + 0x85, 0xb4, 0x07, 0x9c, 0xbe, 0xf8, 0xd1, 0xb9, 0x9c, 0xe3, 0xe4, 0x50, 0x3b, 0x32, 0xa5, 0x76, + 0x70, 0x9c, 0x1c, 0x19, 0x30, 0xd6, 0x26, 0x92, 0x15, 0x66, 0x5c, 0x5f, 0xf1, 0x52, 0x45, 0x6d, + 0x47, 0xd2, 0xd9, 0x8a, 0x2d, 0xa6, 0x6d, 0x0d, 0xb5, 0x49, 0x5e, 0xb3, 0xfd, 0x89, 0x2a, 0x3d, + 0x61, 0xad, 0x4d, 0x5c, 0x6b, 0x13, 0xd8, 0xca, 0x44, 0x96, 0x51, 0xaf, 0xb2, 0x97, 0xd7, 0x2c, + 0xbb, 0x3b, 0x54, 0x72, 0x57, 0xa8, 0x9d, 0xdd, 0xa0, 0x23, 0x92, 0x7b, 0xf9, 0xf7, 0xdb, 0xbf, + 0x5f, 0x5e, 0x9f, 0xfd, 0xdf, 0xf2, 0xed, 0xd9, 0xe5, 0xc5, 0xfd, 0xe9, 0x3f, 0x4f, 0x2f, 0x6e, + 0x25, 0xf4, 0xf7, 0xfe, 0xbd, 0x2c, 0xec, 0x02, 0xb5, 0xb4, 0x27, 0x76, 0x5a, 0x6f, 0x1c, 0x5f, + 0x5e, 0x7c, 0x38, 0xfb, 0x28, 0xb7, 0x05, 0xf4, 0xe5, 0x4d, 0x7e, 0x7b, 0xe2, 0xd3, 0xa7, 0xf2, + 0xc5, 0x49, 0x21, 0x63, 0xbb, 0x4d, 0xef, 0x16, 0x6d, 0xd1, 0xd8, 0x87, 0x90, 0x50, 0xfe, 0xea, + 0x88, 0x4a, 0x9d, 0xff, 0xcb, 0x41, 0xb1, 0x58, 0x01, 0x14, 0x94, 0x43, 0x40, 0x76, 0x23, 0x10, + 0x8b, 0xb1, 0x1b, 0x21, 0x6b, 0xbb, 0x11, 0x86, 0xa6, 0x35, 0x55, 0xaf, 0x53, 0x91, 0x92, 0xa8, + 0x7a, 0x8d, 0xf9, 0x42, 0x4a, 0x42, 0x4a, 0x42, 0x4a, 0x42, 0x4a, 0x42, 0x4a, 0x42, 0x4a, 0x42, + 0x4a, 0x42, 0x4a, 0x42, 0x4a, 0x5a, 0x6d, 0x29, 0x29, 0xdd, 0x9a, 0x16, 0x69, 0x6c, 0x08, 0xd7, + 0xc6, 0x3c, 0xb6, 0x84, 0xaf, 0xe7, 0x60, 0x4b, 0xf8, 0xe4, 0x71, 0x2c, 0xbe, 0x27, 0xbc, 0x7f, + 0x9b, 0xfb, 0xd3, 0x76, 0xfb, 0x64, 0x65, 0xce, 0x78, 0x07, 0x69, 0x66, 0x65, 0xaa, 0x09, 0x32, + 0x5a, 0x02, 0x8c, 0x76, 0x4e, 0xe6, 0x2e, 0x39, 0x99, 0x92, 0xf1, 0x14, 0xfb, 0x53, 0xd9, 0x9f, + 0x4a, 0xc6, 0xa6, 0xa4, 0x88, 0xc0, 0xfe, 0xd4, 0xe9, 0x5f, 0x9b, 0xfd, 0xa9, 0xec, 0x4f, 0x35, + 0x7c, 0x50, 0xf6, 0xa7, 0xe6, 0xf2, 0xe9, 0xd8, 0x9f, 0x9a, 0xbe, 0xd1, 0x63, 0x7f, 0xea, 0xf2, + 0x6b, 0x0f, 0xec, 0x4f, 0xb5, 0x83, 0x82, 0xeb, 0xec, 0x4f, 0xcd, 0x9e, 0x12, 0xa2, 0x20, 0xa4, + 0xe6, 0xbd, 0x38, 0x5e, 0xd2, 0xc2, 0x71, 0x0a, 0x2a, 0x9b, 0x8d, 0xd2, 0x78, 0x09, 0xf7, 0x81, + 0xa9, 0xed, 0xf7, 0xa2, 0x18, 0x9e, 0xac, 0x6d, 0x5b, 0x40, 0x31, 0x3c, 0x9b, 0xd3, 0x23, 0x49, + 0x66, 0xae, 0xde, 0x68, 0x8e, 0xbc, 0xf0, 0xbb, 0x17, 0x3a, 0x8f, 0x61, 0xbd, 0xd9, 0x88, 0x92, + 0x0f, 0xea, 0xd1, 0xcb, 0x18, 0xdb, 0x14, 0x7a, 0x1c, 0x1f, 0x4e, 0x1a, 0x6a, 0xfa, 0xf0, 0xd5, + 0x14, 0x3a, 0x48, 0x51, 0x57, 0x5c, 0x69, 0x51, 0x5d, 0x73, 0x67, 0xb7, 0xd9, 0x8e, 0x6e, 0x4a, + 0x1d, 0xa4, 0x3a, 0xc0, 0xc5, 0xa3, 0xa5, 0x65, 0x2e, 0x75, 0x20, 0x73, 0xd8, 0x07, 0x07, 0x7d, + 0x90, 0x9b, 0xbe, 0x88, 0x49, 0xb5, 0x10, 0xed, 0x52, 0x70, 0x6b, 0x4d, 0xfe, 0x34, 0x4c, 0x9d, + 0x1d, 0x30, 0x32, 0x9b, 0xf8, 0xd8, 0xbe, 0x87, 0x8d, 0xc1, 0xc6, 0xa8, 0x8f, 0x97, 0x95, 0x58, + 0x1c, 0xbe, 0x39, 0xbd, 0xfe, 0xe7, 0xe9, 0xf5, 0x92, 0x2f, 0x0e, 0x77, 0x56, 0x19, 0x97, 0x77, + 0x75, 0x78, 0xe5, 0xd6, 0x4e, 0x33, 0x16, 0x44, 0xa4, 0x99, 0x88, 0x3b, 0xa2, 0x2a, 0x8e, 0xfc, + 0x4d, 0xab, 0x36, 0x81, 0xc2, 0x2a, 0x91, 0x82, 0x44, 0xa3, 0x15, 0x1c, 0x99, 0x04, 0x45, 0xa4, + 0xd8, 0xa1, 0x14, 0x64, 0x3e, 0xc5, 0x4e, 0xbf, 0x1e, 0x80, 0x49, 0x1d, 0x80, 0x09, 0xfb, 0xff, + 0xd5, 0x4f, 0x22, 0xb4, 0x63, 0x26, 0x3a, 0xd6, 0x2b, 0xd2, 0xb7, 0x14, 0xbd, 0x06, 0x90, 0x15, + 0x31, 0x16, 0xcb, 0x21, 0x2b, 0x76, 0x46, 0xb4, 0x40, 0xd5, 0x8b, 0x4e, 0x3b, 0x54, 0x50, 0x25, + 0xec, 0x5f, 0x89, 0xb0, 0xdf, 0xb8, 0xec, 0x85, 0x5b, 0xad, 0x86, 0x5e, 0x14, 0xc9, 0x45, 0xd7, + 0xbd, 0x06, 0x29, 0x78, 0x61, 0x7f, 0x8a, 0x4a, 0x4f, 0x55, 0x6b, 0x53, 0xd6, 0xda, 0xd4, 0xb5, + 0x32, 0x85, 0x65, 0xd4, 0x81, 0xec, 0x15, 0xbc, 0x30, 0x2f, 0xcc, 0x25, 0x01, 0xe6, 0x09, 0x40, + 0xbd, 0x67, 0x43, 0x16, 0xb5, 0x3d, 0xdf, 0xc0, 0x69, 0x1a, 0x96, 0x82, 0x1f, 0x7b, 0x67, 0x46, + 0x25, 0xe1, 0x85, 0xc0, 0x06, 0x6b, 0x8a, 0x35, 0xcd, 0xbb, 0x35, 0x35, 0x05, 0x25, 0x71, 0x60, + 0xb2, 0x04, 0x4e, 0xc2, 0x00, 0x25, 0x3e, 0xf5, 0x6d, 0x98, 0x00, 0x7b, 0xa6, 0xc0, 0x96, 0x49, + 0xb0, 0x6e, 0x1a, 0xac, 0x9b, 0x08, 0xab, 0xa6, 0x42, 0xc6, 0x64, 0x08, 0x99, 0x0e, 0x79, 0x20, + 0x1b, 0x1b, 0xaf, 0x7e, 0xc3, 0x91, 0x9d, 0xfd, 0xeb, 0x86, 0x3b, 0x94, 0xe7, 0xf5, 0xc1, 0x67, + 0xd1, 0x31, 0x24, 0x3b, 0xa7, 0x5e, 0xf5, 0xec, 0xf7, 0x92, 0x85, 0xbe, 0x1d, 0xeb, 0xe3, 0x77, + 0x16, 0xda, 0xbe, 0x72, 0xe3, 0xd8, 0x0b, 0x03, 0xf1, 0xee, 0xee, 0xdf, 0xe0, 0x5f, 0x1b, 0x1b, + 0x9f, 0x77, 0x9c, 0xc3, 0xbb, 0x5f, 0x9f, 0x8b, 0xce, 0xe1, 0x5d, 0xe7, 0xc7, 0x62, 0xfb, 0xff, + 0x3a, 0x3f, 0xef, 0x7e, 0xde, 0x71, 0x4a, 0xbd, 0x9f, 0xf7, 0x3e, 0xef, 0x38, 0x7b, 0x77, 0x9b, + 0x5f, 0xbe, 0x6c, 0x6d, 0xfe, 0x7c, 0xfb, 0xa2, 0x7e, 0xe1, 0x5f, 0x0a, 0xe2, 0x0f, 0x71, 0x27, + 0xda, 0xe2, 0xcb, 0x9b, 0x1c, 0x0d, 0xea, 0x7d, 0x06, 0xf5, 0xec, 0x41, 0xed, 0x3a, 0x0f, 0x65, + 0xe7, 0xc3, 0xdd, 0xcf, 0xe2, 0x9b, 0xd2, 0xcb, 0xd1, 0xe6, 0xcf, 0x83, 0x97, 0xd7, 0xbf, 0xfc, + 0x35, 0xe9, 0x63, 0xc5, 0x37, 0x07, 0x2f, 0x47, 0x53, 0xfe, 0x65, 0xff, 0xe5, 0x28, 0x61, 0x1b, + 0x7b, 0x2f, 0x1b, 0x63, 0x1f, 0x6d, 0xfd, 0x7e, 0x77, 0xda, 0x05, 0xa5, 0x29, 0x17, 0xbc, 0x9d, + 0x76, 0xc1, 0xdb, 0x29, 0x17, 0x4c, 0xfd, 0x4a, 0xbb, 0x53, 0x2e, 0xd8, 0x7b, 0xf9, 0x35, 0xf6, + 0xf9, 0x8d, 0xc9, 0x1f, 0xdd, 0x7f, 0xd9, 0xfc, 0x35, 0xed, 0xdf, 0x0e, 0x5e, 0x7e, 0x1d, 0x6d, + 0xe6, 0x60, 0x8a, 0xaf, 0x65, 0xeb, 0x7b, 0xbd, 0x64, 0x21, 0x35, 0xc7, 0x2c, 0xa5, 0x7b, 0xaa, + 0x91, 0x32, 0x48, 0xf1, 0x26, 0x96, 0x21, 0x96, 0x21, 0x96, 0xc9, 0x69, 0x2c, 0x63, 0x9c, 0xa2, + 0x3e, 0x1d, 0x47, 0x96, 0xc8, 0xe6, 0xc6, 0xfe, 0x93, 0x57, 0x6f, 0xc6, 0xf2, 0x66, 0xb7, 0xd7, + 0x30, 0x96, 0x17, 0xcb, 0x8b, 0xe5, 0x5d, 0x29, 0xcb, 0xdb, 0xf4, 0x83, 0xb8, 0xb8, 0x6f, 0xc1, + 0xf2, 0xee, 0x0b, 0x36, 0x79, 0xed, 0x06, 0x8f, 0xb9, 0x50, 0x90, 0x3e, 0xf9, 0x81, 0xf8, 0x44, + 0xb5, 0x64, 0x56, 0xc7, 0x9a, 0x6f, 0x6f, 0x49, 0xb0, 0xd8, 0xfe, 0x87, 0xd0, 0xad, 0xc4, 0x7e, + 0x3d, 0x38, 0xf1, 0x1f, 0xfd, 0x76, 0xe9, 0xa6, 0x1d, 0xf1, 0xfb, 0xbc, 0x58, 0xd0, 0x1e, 0x3e, + 0xb9, 0x3f, 0x72, 0xff, 0x4a, 0xf7, 0xf7, 0xf6, 0xde, 0xee, 0xe5, 0xf8, 0xb5, 0x12, 0xcf, 0x5b, + 0x6c, 0xc1, 0x74, 0x91, 0x54, 0xe8, 0xa4, 0x80, 0x7e, 0x7b, 0x42, 0x1b, 0x3c, 0xba, 0xe9, 0xce, + 0xdd, 0xff, 0x37, 0x3a, 0x8b, 0xd2, 0xbc, 0x9f, 0x4d, 0x92, 0x43, 0x42, 0xb7, 0xea, 0x37, 0x05, + 0x73, 0xed, 0xba, 0xed, 0x91, 0x1c, 0x92, 0x1e, 0xcb, 0x93, 0x1c, 0x42, 0x72, 0xc8, 0xf4, 0x86, + 0x84, 0xb2, 0xbf, 0xc6, 0x86, 0xaf, 0x48, 0x16, 0x98, 0xf0, 0x84, 0x27, 0xa8, 0x27, 0xa8, 0x27, + 0xa8, 0x97, 0x35, 0x20, 0xfd, 0x06, 0xdd, 0x4a, 0x25, 0x76, 0x1a, 0xf5, 0x30, 0x96, 0x1f, 0x57, + 0xfd, 0x7c, 0xb3, 0xfe, 0x2d, 0x84, 0x5f, 0xfb, 0x89, 0xf7, 0xe0, 0x36, 0x6b, 0xed, 0xb7, 0x5e, + 0x7c, 0x57, 0x7c, 0x2b, 0xdd, 0xbc, 0x9d, 0x40, 0x4b, 0xdc, 0x8a, 0xd9, 0xb4, 0x66, 0xf6, 0xad, + 0x9a, 0x6d, 0xeb, 0x96, 0x9a, 0x95, 0x4b, 0xcd, 0xda, 0xa5, 0x62, 0xf5, 0x2c, 0x85, 0xd1, 0xc2, + 0x23, 0x5e, 0x5c, 0xe2, 0x1c, 0x1b, 0xef, 0x2d, 0xb3, 0xe5, 0x04, 0xcd, 0xa7, 0xaf, 0xda, 0x7b, + 0xfd, 0x92, 0x98, 0x98, 0x7d, 0x0b, 0x4d, 0xdb, 0xd1, 0x3f, 0x7b, 0xff, 0xd9, 0x99, 0xa4, 0xeb, + 0xb6, 0xf5, 0xd0, 0x94, 0x44, 0xb4, 0x31, 0x31, 0xcd, 0xf6, 0x7d, 0x52, 0x10, 0xd4, 0x2c, 0xcd, + 0xe1, 0xd1, 0x57, 0x6f, 0x51, 0x37, 0x5d, 0xd4, 0xab, 0xb7, 0xa8, 0xa3, 0x2e, 0xe4, 0xf5, 0xaf, + 0xe5, 0xa3, 0xd5, 0xac, 0xe6, 0x73, 0x09, 0x4e, 0x9f, 0xf6, 0xd1, 0x69, 0xb6, 0xd9, 0xbd, 0x7f, + 0x0b, 0xab, 0xec, 0xbe, 0x0b, 0xbb, 0xc3, 0xee, 0xb0, 0x3b, 0xec, 0x0e, 0xbb, 0xc3, 0xee, 0xb0, + 0x3b, 0xec, 0x0e, 0xbb, 0xc3, 0xee, 0x4b, 0xcd, 0xee, 0xa1, 0x17, 0x87, 0x6e, 0x10, 0x3d, 0xf9, + 0xb1, 0xe3, 0xc6, 0xb1, 0xf7, 0xd4, 0x88, 0x23, 0x7b, 0x14, 0x3f, 0xe9, 0x66, 0x00, 0x37, 0xc0, + 0x0d, 0x70, 0x03, 0xdc, 0x82, 0xe3, 0xbd, 0xe9, 0x07, 0xf1, 0x3b, 0x8b, 0xa8, 0xbd, 0x07, 0x6a, + 0x83, 0xda, 0xa0, 0xf6, 0x52, 0xa2, 0xf6, 0xee, 0x1e, 0xa0, 0x0d, 0x68, 0x5b, 0x00, 0xed, 0xc8, + 0xab, 0x84, 0x5e, 0xec, 0xfc, 0xdb, 0x7b, 0xb6, 0xc7, 0xd7, 0x43, 0xf7, 0x00, 0xab, 0xc1, 0x6a, + 0xb0, 0x1a, 0xac, 0x96, 0x8c, 0xde, 0xeb, 0xcd, 0xd8, 0x0f, 0x1e, 0x9d, 0x86, 0x1b, 0x45, 0xed, + 0xe1, 0x63, 0xb3, 0x12, 0xcb, 0x2a, 0x78, 0x84, 0xf6, 0x2c, 0x77, 0xa4, 0xeb, 0xeb, 0x8d, 0x7b, + 0x85, 0xd1, 0xfb, 0xe0, 0x19, 0xf0, 0x0c, 0x78, 0x06, 0x3c, 0x83, 0xe0, 0x78, 0xb7, 0x52, 0xce, + 0x6f, 0xcc, 0x27, 0x1c, 0x5a, 0x68, 0xdb, 0x4a, 0x79, 0xbf, 0x14, 0x54, 0x97, 0x94, 0xca, 0xfd, + 0x8d, 0xfb, 0x65, 0x8b, 0xf7, 0xb0, 0x5d, 0x29, 0xad, 0x7f, 0xa3, 0xbc, 0x97, 0x01, 0xb4, 0x13, + 0x36, 0x5b, 0x56, 0x8c, 0xd2, 0x99, 0x0c, 0xfb, 0x4c, 0x06, 0xbd, 0xc9, 0x40, 0xf9, 0xc0, 0xa5, + 0x28, 0x1f, 0x68, 0xd9, 0x34, 0xac, 0x8e, 0xf2, 0x97, 0xa9, 0xdd, 0x76, 0xc2, 0x65, 0x0a, 0x06, + 0x11, 0xa8, 0x95, 0x72, 0x05, 0x9d, 0x4d, 0xfa, 0x22, 0x55, 0x0b, 0xe4, 0x5e, 0x87, 0x44, 0x0d, + 0xb3, 0x28, 0x76, 0x63, 0x0b, 0x85, 0x23, 0x3b, 0xcd, 0x66, 0x7c, 0xab, 0xf3, 0x2e, 0x5b, 0x9d, + 0x73, 0x14, 0x66, 0xb3, 0xd5, 0x99, 0xad, 0xce, 0x6c, 0x75, 0x46, 0x4c, 0x44, 0x4c, 0x44, 0x4c, + 0x64, 0xbb, 0xc4, 0x24, 0x13, 0xc3, 0x76, 0x89, 0xa1, 0x2f, 0x4e, 0x0e, 0x97, 0xfa, 0x7d, 0xc8, + 0xe1, 0xca, 0xec, 0xab, 0x67, 0xbb, 0x04, 0x5a, 0x8e, 0x9d, 0xe9, 0xc3, 0x56, 0x67, 0xd8, 0x1d, + 0x76, 0x87, 0xdd, 0x61, 0x77, 0xd8, 0x1d, 0x76, 0x87, 0xdd, 0x61, 0x77, 0xd8, 0x1d, 0x76, 0xcf, + 0x09, 0xbb, 0x57, 0xea, 0xcd, 0x20, 0xf6, 0x42, 0x8b, 0x99, 0xb6, 0xfd, 0x3b, 0xd8, 0x41, 0xeb, + 0x22, 0x68, 0x0d, 0x5a, 0x83, 0xd6, 0x59, 0x44, 0x6b, 0xe9, 0x45, 0xc2, 0x81, 0xe0, 0x50, 0xa9, + 0x78, 0x51, 0xe4, 0xb4, 0xfe, 0xcf, 0x46, 0x69, 0x86, 0x71, 0xf5, 0x61, 0xf4, 0x7e, 0x6f, 0x72, + 0x79, 0x76, 0x8c, 0x2d, 0xc3, 0x96, 0x86, 0x81, 0x4b, 0xcf, 0xd0, 0xa5, 0x65, 0xf0, 0x52, 0x37, + 0x7c, 0xa9, 0x1b, 0xc0, 0x54, 0x0d, 0xa1, 0x65, 0xb4, 0xb4, 0x34, 0x63, 0xac, 0x69, 0x0f, 0xd3, + 0x20, 0x6c, 0xbf, 0x94, 0x42, 0x0a, 0xb0, 0xcd, 0x0c, 0x60, 0xbb, 0x8a, 0x84, 0x7d, 0x65, 0x22, + 0x55, 0x85, 0x22, 0xe5, 0x70, 0x35, 0x6d, 0xc5, 0x62, 0x11, 0xa1, 0x6b, 0x0a, 0x0a, 0x46, 0xaa, + 0x4a, 0xc6, 0xa2, 0x87, 0x48, 0xf1, 0x5d, 0xa9, 0xb4, 0x7f, 0x50, 0x2a, 0xed, 0x1c, 0xbc, 0x3d, + 0xd8, 0x39, 0xdc, 0xdb, 0x2b, 0xee, 0x17, 0xf7, 0x96, 0x78, 0xd4, 0xac, 0xe5, 0xb3, 0xf5, 0xbc, + 0x24, 0xce, 0xdb, 0x38, 0x2e, 0xb2, 0xcb, 0xfe, 0xa1, 0xf7, 0xff, 0x79, 0x95, 0x14, 0x63, 0x8d, + 0xde, 0xfd, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, + 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x88, 0x35, 0x96, 0x34, 0xd6, 0x08, 0xbd, 0x38, 0xf4, 0xbd, + 0xaa, 0xd3, 0x8f, 0x01, 0xfe, 0xa7, 0xe9, 0x45, 0x69, 0x04, 0x1d, 0xd3, 0x6e, 0x4c, 0xf4, 0x41, + 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, 0xf4, 0x41, + 0xf4, 0x41, 0xf4, 0xb1, 0xa4, 0xd1, 0x47, 0xec, 0x3f, 0x79, 0xf5, 0x66, 0x9c, 0x7e, 0xf4, 0x31, + 0xed, 0xc6, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, + 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x44, 0x1f, 0x59, 0x88, 0x3e, 0x32, 0xbd, 0xed, 0xc4, 0x52, + 0x61, 0xd0, 0x7e, 0xfb, 0x56, 0x0b, 0x84, 0xb6, 0xeb, 0x5e, 0x6e, 0x5b, 0xda, 0x33, 0xd7, 0xf9, + 0xfa, 0x71, 0xd8, 0xac, 0xc4, 0x41, 0x17, 0x58, 0x6e, 0xda, 0xdf, 0xf5, 0xbe, 0xec, 0xba, 0xf7, + 0x37, 0xed, 0x2f, 0xf2, 0xb1, 0xf5, 0xe5, 0xba, 0x3f, 0xdf, 0x5f, 0xb7, 0xbf, 0xd4, 0xfd, 0x71, + 0xef, 0xeb, 0x70, 0xf6, 0xab, 0x2c, 0x2e, 0x72, 0xf6, 0x6b, 0x9a, 0xd1, 0x2d, 0xdb, 0x24, 0xb3, + 0x17, 0xbd, 0xb2, 0x4d, 0x92, 0xb3, 0x5f, 0x17, 0x10, 0x81, 0x52, 0x7b, 0x24, 0x4b, 0x11, 0x26, + 0xb5, 0x47, 0xb2, 0xfb, 0xea, 0x39, 0xfb, 0x75, 0x01, 0xad, 0x72, 0xf6, 0xab, 0x8c, 0xe3, 0xe3, + 0xec, 0x57, 0xb0, 0x1a, 0xac, 0x06, 0xab, 0xed, 0x8c, 0x77, 0xce, 0x7e, 0xe5, 0xec, 0x57, 0x3c, + 0x03, 0x9e, 0x01, 0xcf, 0x80, 0x67, 0x18, 0x1d, 0xef, 0x9c, 0xfd, 0x9a, 0xb6, 0xea, 0xc2, 0xd9, + 0xaf, 0x06, 0x37, 0xe2, 0xec, 0xd7, 0x05, 0x28, 0x46, 0x9c, 0xfd, 0x9a, 0xe9, 0xc9, 0xc0, 0xd9, + 0xaf, 0x9c, 0xfd, 0x8a, 0xf2, 0x27, 0xdc, 0xd2, 0x4a, 0x9f, 0xfd, 0xda, 0x39, 0xd2, 0x34, 0x2b, + 0x47, 0xbf, 0xae, 0x2d, 0xf0, 0x3d, 0x4a, 0xbf, 0x3f, 0xab, 0xef, 0xad, 0x20, 0x72, 0x48, 0xae, + 0x6a, 0xce, 0x8d, 0xd9, 0x38, 0xd1, 0x7f, 0xbb, 0x06, 0x6f, 0x56, 0xe8, 0x28, 0x60, 0xd1, 0x23, + 0x80, 0x85, 0xaa, 0x84, 0x8b, 0x1d, 0xf9, 0x2b, 0xa9, 0xb6, 0xc8, 0xab, 0x2b, 0xd2, 0x6a, 0x8a, + 0x35, 0xf5, 0xc4, 0x9a, 0x5a, 0x62, 0x45, 0x1d, 0x59, 0xac, 0xad, 0x95, 0xaa, 0xc2, 0x5d, 0x90, + 0xd6, 0x65, 0x07, 0x25, 0xef, 0x44, 0x23, 0x14, 0x61, 0x01, 0x56, 0x5c, 0x78, 0xe5, 0xb4, 0xef, + 0x75, 0x4e, 0xfb, 0xce, 0x17, 0x6e, 0x8b, 0x0b, 0xa6, 0x76, 0x85, 0x52, 0x1b, 0x02, 0xa9, 0x1d, + 0x61, 0xd4, 0xaa, 0x04, 0x6d, 0x55, 0x08, 0xb5, 0xa9, 0xf9, 0x58, 0xd7, 0x7a, 0x72, 0x2f, 0x78, + 0xde, 0x65, 0x79, 0x7d, 0xc5, 0xee, 0xa0, 0xde, 0x67, 0x50, 0x23, 0x5c, 0xae, 0x80, 0x70, 0x99, + 0x55, 0x21, 0xf0, 0x2e, 0x2b, 0x02, 0x96, 0x40, 0xb8, 0x5b, 0xa9, 0x07, 0x81, 0xd7, 0xce, 0x3d, + 0x75, 0xdc, 0xaf, 0xf5, 0x30, 0xb6, 0x10, 0xdb, 0x8c, 0xdf, 0x82, 0x28, 0x87, 0x28, 0x87, 0x28, + 0x67, 0xa5, 0xa2, 0x1c, 0x1b, 0x55, 0x21, 0x2c, 0x54, 0x81, 0xb0, 0xb4, 0xe7, 0xc6, 0x02, 0x0f, + 0xda, 0xdc, 0x63, 0x63, 0xbb, 0x3e, 0x90, 0xe5, 0x3d, 0x35, 0x69, 0x6c, 0xa7, 0xb0, 0x51, 0x7d, + 0xca, 0xe6, 0xde, 0x99, 0xb4, 0x5e, 0x69, 0x7a, 0x55, 0x16, 0x52, 0x79, 0xcb, 0x10, 0x68, 0x9a, + 0x04, 0x5a, 0xa9, 0xd5, 0x23, 0xcf, 0x2e, 0x81, 0x76, 0x6f, 0x01, 0x81, 0x42, 0xa0, 0x10, 0x28, + 0x04, 0x0a, 0x81, 0x42, 0xa0, 0x10, 0x28, 0x04, 0x0a, 0x81, 0x42, 0xa0, 0x2d, 0x3c, 0x7c, 0x70, + 0xfd, 0x5a, 0x33, 0xb4, 0xcc, 0xa0, 0xfd, 0x9b, 0x40, 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, + 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x68, 0x0b, 0x10, 0xeb, 0x0d, 0x2f, 0xb0, + 0x8b, 0xa0, 0x9d, 0x3b, 0xc0, 0x9f, 0xf0, 0x27, 0xfc, 0x09, 0x7f, 0xc2, 0x9f, 0xf0, 0x27, 0xfc, + 0x09, 0x7f, 0xc2, 0x9f, 0xf0, 0x67, 0x8b, 0x0e, 0xbb, 0xa7, 0x91, 0xd9, 0x45, 0xd0, 0xfe, 0x4d, + 0xa0, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0xd0, + 0x15, 0xa6, 0x50, 0x2f, 0x0c, 0xeb, 0x61, 0xe4, 0x84, 0x5e, 0xc5, 0xf3, 0xbf, 0x7b, 0x55, 0x79, + 0x02, 0x7d, 0x7d, 0x03, 0xe8, 0x13, 0xfa, 0x84, 0x3e, 0xa1, 0x4f, 0xe8, 0x13, 0xfa, 0x84, 0x3e, + 0xa1, 0x4f, 0xe8, 0x73, 0x85, 0xe9, 0xf3, 0xc9, 0x8b, 0x22, 0xf7, 0xd1, 0xb3, 0xc9, 0x9f, 0xe3, + 0xb7, 0x80, 0x40, 0x21, 0x50, 0x08, 0x14, 0x02, 0x85, 0x40, 0x21, 0x50, 0x08, 0x14, 0x02, 0x85, + 0x40, 0x21, 0xd0, 0xc8, 0x89, 0x3a, 0x2e, 0xd6, 0x16, 0x7d, 0xb6, 0x9b, 0x87, 0x3c, 0x21, 0x4f, + 0xc8, 0x13, 0xf2, 0x84, 0x3c, 0x21, 0x4f, 0xc8, 0x13, 0xf2, 0x84, 0x3c, 0x57, 0x98, 0x3c, 0xbb, + 0x47, 0xb3, 0x08, 0x03, 0x67, 0xbb, 0x55, 0x38, 0x13, 0xce, 0x84, 0x33, 0x57, 0x8a, 0x33, 0xa3, + 0x38, 0xf4, 0x83, 0x47, 0x1b, 0x27, 0x1a, 0xbc, 0x5b, 0x22, 0x9b, 0xdb, 0xcd, 0x81, 0x97, 0x37, + 0xbb, 0xbd, 0x86, 0xb1, 0xbc, 0x58, 0x5e, 0x2c, 0xef, 0x4a, 0x59, 0xde, 0xa6, 0x1f, 0xc4, 0xc5, + 0x7d, 0x0b, 0x96, 0x77, 0x9f, 0xf0, 0x9e, 0xf0, 0x9e, 0xf0, 0x3e, 0x13, 0xaf, 0x74, 0x7f, 0x6f, + 0xef, 0x2d, 0xf1, 0xfc, 0xf2, 0xc6, 0xf3, 0x1c, 0x4d, 0x3b, 0xf7, 0x68, 0x5a, 0x81, 0xb3, 0x84, + 0x17, 0x73, 0x46, 0x6c, 0xec, 0x56, 0xdc, 0x4a, 0x24, 0x77, 0x48, 0x6c, 0xb7, 0xbd, 0x8c, 0x9d, + 0x12, 0xbb, 0xc3, 0x29, 0xb1, 0x19, 0x40, 0x77, 0x4e, 0x89, 0x4d, 0xfe, 0x44, 0x62, 0xa7, 0xc4, + 0x56, 0x7a, 0x73, 0x40, 0x7e, 0xf3, 0x7c, 0xab, 0x5d, 0xd9, 0x98, 0xbe, 0x48, 0x4c, 0x4f, 0x4c, + 0x4f, 0x4c, 0x2f, 0xf1, 0xa4, 0x52, 0x06, 0xa4, 0xdf, 0x60, 0xa3, 0x1e, 0xc6, 0xf2, 0x43, 0xaa, + 0x37, 0x09, 0xda, 0xad, 0x0b, 0xbf, 0xec, 0x13, 0xef, 0xc1, 0x6d, 0xd6, 0xda, 0xef, 0xba, 0x74, + 0x28, 0xdd, 0xb8, 0x9d, 0xd8, 0x4a, 0xdc, 0x72, 0xd9, 0xb4, 0x60, 0xf6, 0x2d, 0x99, 0x6d, 0x8b, + 0x96, 0x9a, 0x65, 0x4b, 0xcd, 0xc2, 0xa5, 0x62, 0xe9, 0x2c, 0x45, 0xce, 0xc2, 0x23, 0x5e, 0x5c, + 0xd5, 0x9c, 0x68, 0xb4, 0x9c, 0xa0, 0xf9, 0xf4, 0xd5, 0x0b, 0x2d, 0x9e, 0x7e, 0xbb, 0x6f, 0xa1, + 0x69, 0x3b, 0x92, 0x67, 0xef, 0x3f, 0x3b, 0x93, 0x74, 0xdd, 0xb6, 0x04, 0x9a, 0x92, 0x6e, 0x36, + 0xa6, 0x9f, 0xd9, 0xbe, 0x4f, 0x0a, 0x1a, 0x9a, 0xa5, 0x39, 0x3c, 0xfa, 0xea, 0x2d, 0x4a, 0xa5, + 0x8b, 0x7a, 0xf5, 0x16, 0xa5, 0xd3, 0x85, 0xbc, 0xfe, 0xb5, 0x7c, 0xb4, 0x9a, 0xd5, 0xc3, 0x9c, + 0x05, 0xa7, 0x4f, 0x21, 0xf2, 0x2a, 0xa1, 0x17, 0x3b, 0xff, 0xf6, 0x9e, 0xed, 0x51, 0xfb, 0xd0, + 0x3d, 0xc0, 0x6b, 0xf0, 0x1a, 0xbc, 0x06, 0xaf, 0x05, 0xc7, 0x7b, 0x58, 0x6f, 0xc6, 0x7e, 0xf0, + 0xe8, 0x34, 0xdc, 0x28, 0x6a, 0x0f, 0x1f, 0x7b, 0x8c, 0x2d, 0x94, 0xc8, 0x95, 0x71, 0x8f, 0xd0, + 0x9e, 0xe5, 0x8e, 0x5b, 0xad, 0x86, 0x5e, 0x14, 0x59, 0xf4, 0x0a, 0xa3, 0xf7, 0xc1, 0x33, 0xe0, + 0x19, 0xf0, 0x0c, 0x78, 0x06, 0xc1, 0xf1, 0xee, 0x37, 0x2c, 0x59, 0x97, 0x11, 0x9f, 0x70, 0x68, + 0xa1, 0xed, 0x6e, 0xdf, 0xe4, 0x4e, 0x77, 0x19, 0xf4, 0xfc, 0xf7, 0x92, 0xc5, 0xbe, 0x1f, 0xf7, + 0xcb, 0x16, 0xef, 0x71, 0xe5, 0xc6, 0xb1, 0x17, 0x06, 0xd6, 0x5e, 0x47, 0xff, 0x46, 0xff, 0xda, + 0xd8, 0xf8, 0xbc, 0xe3, 0x1c, 0xde, 0xfd, 0xfa, 0x5c, 0x74, 0x0e, 0xef, 0x3a, 0x3f, 0x16, 0xdb, + 0xff, 0xd7, 0xf9, 0x79, 0xf7, 0xf3, 0x8e, 0x53, 0xea, 0xfd, 0xbc, 0xf7, 0x79, 0xc7, 0xd9, 0xbb, + 0xdb, 0xfc, 0xf2, 0x65, 0x6b, 0xf3, 0xe7, 0xdb, 0x17, 0xf5, 0x0b, 0xff, 0x52, 0xb0, 0xf6, 0x30, + 0x77, 0x6b, 0x39, 0xd2, 0x8c, 0xd2, 0x99, 0x0c, 0xfb, 0x4c, 0x06, 0xbd, 0xc9, 0xe0, 0x3a, 0x0f, + 0x65, 0xe7, 0xc3, 0xdd, 0xcf, 0xe2, 0x9b, 0xd2, 0xcb, 0xd1, 0xe6, 0xcf, 0x83, 0x97, 0xd7, 0xbf, + 0xfc, 0x35, 0xe9, 0x63, 0xc5, 0x37, 0x07, 0x2f, 0x47, 0x53, 0xfe, 0x65, 0xff, 0xe5, 0x28, 0x61, + 0x1b, 0x7b, 0x2f, 0x1b, 0x63, 0x1f, 0x6d, 0xfd, 0x7e, 0x77, 0xda, 0x05, 0xa5, 0x29, 0x17, 0xbc, + 0x9d, 0x76, 0xc1, 0xdb, 0x29, 0x17, 0x4c, 0xfd, 0x4a, 0xbb, 0x53, 0x2e, 0xd8, 0x7b, 0xf9, 0x35, + 0xf6, 0xf9, 0x8d, 0xc9, 0x1f, 0xdd, 0x7f, 0xd9, 0xfc, 0x35, 0xed, 0xdf, 0x0e, 0x5e, 0x7e, 0x1d, + 0x6d, 0xe6, 0xd0, 0x34, 0xac, 0x8e, 0xf2, 0x97, 0xa9, 0xe4, 0x01, 0xe1, 0xa4, 0xcb, 0x41, 0x04, + 0x6a, 0x25, 0xf9, 0xb2, 0x93, 0x73, 0xb8, 0xdd, 0xcd, 0x48, 0x5a, 0xa2, 0x1d, 0x59, 0x9d, 0xac, + 0x52, 0xf1, 0xd4, 0xad, 0x4e, 0xb3, 0x19, 0xcf, 0xdc, 0xda, 0x25, 0x73, 0x2b, 0x47, 0x61, 0x36, + 0x99, 0x5b, 0x64, 0x6e, 0x09, 0xb6, 0x4d, 0xe6, 0x16, 0x02, 0x22, 0x02, 0x22, 0x02, 0xa2, 0xb5, + 0xf1, 0x4e, 0xe6, 0x56, 0xea, 0xa2, 0x09, 0x99, 0x5b, 0xea, 0xf7, 0x21, 0x73, 0x2b, 0xb3, 0xaf, + 0x9e, 0xcc, 0x2d, 0xf4, 0x1b, 0x3b, 0xd3, 0x87, 0xcc, 0x2d, 0xf0, 0x1a, 0xbc, 0x06, 0xaf, 0x73, + 0x8c, 0xd7, 0x64, 0x6e, 0x91, 0xb9, 0x85, 0x67, 0xc0, 0x33, 0xe0, 0x19, 0xf0, 0x0c, 0xa3, 0xe3, + 0x9d, 0xcc, 0xad, 0xb4, 0x75, 0x17, 0x32, 0xb7, 0x0c, 0x6e, 0x44, 0xe6, 0xd6, 0x02, 0x34, 0x23, + 0x32, 0xb7, 0x32, 0x3d, 0x19, 0xc8, 0xdc, 0x22, 0x73, 0x0b, 0xe5, 0x4f, 0xb8, 0xa5, 0x95, 0xce, + 0xdc, 0x12, 0xa8, 0x9e, 0x27, 0xf7, 0x36, 0x28, 0x77, 0x98, 0xf4, 0xbd, 0x15, 0x44, 0x52, 0xdc, + 0xc2, 0x66, 0x25, 0xee, 0x1e, 0xf7, 0x50, 0xb8, 0x69, 0x7f, 0x99, 0xfb, 0xb2, 0xeb, 0xde, 0xdf, + 0xb4, 0xef, 0xf4, 0xb1, 0x75, 0xf7, 0xee, 0xcf, 0xf7, 0xb7, 0x9d, 0xbb, 0x2e, 0xaa, 0xca, 0xe2, + 0x5a, 0x8a, 0xe3, 0xa1, 0x15, 0x5d, 0xb7, 0x3a, 0xc4, 0x0c, 0x51, 0x0a, 0xe7, 0x7e, 0x14, 0x97, + 0xe3, 0xd8, 0x2c, 0x9f, 0xa8, 0xf0, 0xc9, 0x0f, 0x4e, 0x6b, 0x5e, 0x2b, 0x32, 0x8e, 0x0a, 0x47, + 0xeb, 0x41, 0xb3, 0x56, 0x33, 0x28, 0x38, 0xf9, 0xc9, 0xfd, 0x21, 0xd7, 0xd8, 0x65, 0x58, 0xf5, + 0x42, 0xaf, 0xfa, 0xfe, 0xb9, 0xdb, 0x54, 0xaa, 0xaf, 0x48, 0x68, 0xaa, 0xda, 0x99, 0xa2, 0x06, + 0x73, 0x53, 0x65, 0x4e, 0xea, 0x4d, 0x46, 0xf5, 0xa9, 0xa4, 0x76, 0x85, 0xe2, 0x1b, 0x35, 0x7d, + 0x93, 0xc2, 0x6f, 0x50, 0xad, 0x4f, 0x93, 0xf7, 0x8c, 0x42, 0xaf, 0x68, 0x66, 0x1e, 0x1b, 0x65, + 0x18, 0x6b, 0x66, 0x12, 0x6b, 0x67, 0x0c, 0x9b, 0xc8, 0xbb, 0xe6, 0xf2, 0xad, 0xa9, 0x3c, 0x2b, + 0x26, 0xbf, 0x8a, 0xc9, 0xab, 0x22, 0xf2, 0xa9, 0xdd, 0x79, 0xae, 0x9b, 0x59, 0x6b, 0x76, 0x1c, + 0x95, 0xc4, 0xf1, 0x53, 0x86, 0x6b, 0x27, 0xc6, 0x6b, 0x24, 0x12, 0x6b, 0x21, 0x72, 0x6b, 0x1e, + 0x52, 0x6b, 0x1b, 0xe2, 0x6b, 0x18, 0xe2, 0x6b, 0x15, 0xa2, 0x6b, 0x12, 0xe9, 0x12, 0xac, 0xf1, + 0x5a, 0x82, 0xdc, 0xf1, 0x4d, 0x86, 0x6b, 0xc5, 0x1a, 0xb8, 0xa2, 0xe1, 0x10, 0x62, 0x93, 0xfe, + 0x1a, 0xd4, 0x5f, 0x6f, 0xb5, 0x82, 0x8d, 0xc1, 0xc6, 0x60, 0x63, 0x94, 0xc6, 0x8b, 0x5f, 0xf5, + 0x82, 0xd8, 0x8f, 0x9f, 0x43, 0xef, 0x41, 0xc2, 0xd0, 0x18, 0x64, 0x86, 0x16, 0xce, 0xba, 0x5f, + 0xe5, 0xbd, 0x1b, 0x79, 0x72, 0x07, 0x33, 0x94, 0xcb, 0xe5, 0xfb, 0x9b, 0xd3, 0xeb, 0x7f, 0x9e, + 0x5e, 0xdf, 0xdf, 0xfe, 0x79, 0x75, 0x6a, 0x3a, 0x08, 0xdb, 0x69, 0xb0, 0x91, 0xc8, 0x9a, 0x83, + 0xf0, 0xee, 0xc6, 0xdb, 0xf2, 0x71, 0xf9, 0xf8, 0xa6, 0x90, 0x85, 0x0d, 0x9c, 0xc2, 0x4f, 0x76, + 0x5d, 0x3e, 0x39, 0xfb, 0xfd, 0x66, 0xd1, 0x27, 0x1b, 0xdc, 0xa5, 0x6d, 0x1b, 0x10, 0x0b, 0x26, + 0x8a, 0x05, 0xea, 0x9a, 0xb9, 0x82, 0x54, 0xb0, 0x26, 0xd8, 0x73, 0x3d, 0x2d, 0x53, 0x21, 0xfc, + 0xd1, 0x13, 0x2e, 0x8d, 0x84, 0x4a, 0x23, 0x61, 0x52, 0x4f, 0x88, 0x4c, 0xda, 0x7f, 0x9a, 0x23, + 0x4e, 0x68, 0xa4, 0x15, 0x94, 0x64, 0xa3, 0xf9, 0xca, 0x61, 0xb2, 0x31, 0x3b, 0x7f, 0x04, 0xce, + 0xfe, 0xc4, 0x9c, 0xbe, 0x55, 0xed, 0x53, 0xfd, 0xbe, 0x9c, 0xfd, 0xb8, 0xd3, 0x1f, 0x62, 0xc6, + 0x03, 0x24, 0x54, 0xe7, 0x94, 0xd4, 0xb8, 0x84, 0xea, 0x5b, 0x62, 0xb5, 0x4d, 0x05, 0xe6, 0xd5, + 0xa1, 0x5d, 0x15, 0xce, 0xb5, 0x21, 0x5c, 0x1b, 0xb6, 0xb5, 0xa0, 0x3a, 0xc3, 0x43, 0x7a, 0xbe, + 0xb7, 0x99, 0x31, 0x94, 0xd7, 0x14, 0x1e, 0x27, 0xe9, 0x63, 0xa8, 0x7c, 0xfd, 0xc2, 0xcc, 0xb9, + 0x34, 0xd9, 0x64, 0x4d, 0x7e, 0xd8, 0xf1, 0x47, 0x99, 0xf0, 0x18, 0x05, 0xb7, 0xe6, 0x86, 0x4f, + 0xd3, 0xd3, 0xb4, 0xfb, 0xe3, 0xbd, 0xfb, 0xb9, 0x29, 0x1d, 0x31, 0x7b, 0x46, 0xce, 0x9d, 0x89, + 0x49, 0x66, 0xe0, 0xc8, 0xcc, 0x9b, 0xf5, 0x65, 0x54, 0x26, 0x9d, 0xf2, 0x64, 0x53, 0x9e, 0x64, + 0x63, 0x93, 0xab, 0xf3, 0xd5, 0x85, 0x06, 0xe0, 0x3c, 0x95, 0xb8, 0xf3, 0xda, 0x92, 0x9b, 0xdf, + 0xce, 0xc7, 0x85, 0xcd, 0xef, 0x8e, 0x25, 0xf3, 0x3b, 0x6f, 0x10, 0xe4, 0xd8, 0x02, 0xcf, 0x19, + 0x24, 0x32, 0x46, 0x38, 0xe9, 0x12, 0x83, 0xea, 0xb9, 0x6c, 0x7a, 0xe7, 0xae, 0x29, 0xae, 0xa9, + 0x29, 0x4b, 0x78, 0x3a, 0x92, 0x9d, 0xd6, 0x70, 0x33, 0x55, 0xe5, 0x8c, 0x55, 0x38, 0x63, 0xd5, + 0x4d, 0x77, 0x38, 0xda, 0x09, 0xc9, 0xac, 0x87, 0x14, 0xed, 0xa7, 0xeb, 0xfc, 0x9f, 0x52, 0x61, + 0xae, 0x04, 0xdc, 0x9f, 0xc0, 0x38, 0xf9, 0x55, 0xf5, 0x89, 0xe5, 0x57, 0x15, 0x27, 0xd5, 0x0e, + 0x93, 0x8a, 0x49, 0x65, 0xa4, 0x46, 0xf7, 0xdf, 0x5a, 0xcd, 0x73, 0x1f, 0xd4, 0x94, 0xe7, 0xbe, + 0x65, 0x3f, 0x50, 0xb8, 0xe6, 0xaa, 0x3b, 0x6f, 0xb7, 0xb6, 0x3a, 0x40, 0xbf, 0xed, 0x57, 0xd3, + 0x9c, 0x95, 0x6a, 0x49, 0x25, 0x5a, 0xc9, 0x24, 0xda, 0x0e, 0x6f, 0x97, 0xb9, 0xb9, 0xd4, 0x73, + 0x53, 0x35, 0xf5, 0x43, 0xc5, 0x85, 0xe8, 0xbb, 0x12, 0x4d, 0x97, 0xa2, 0xed, 0x5a, 0x4c, 0x86, + 0xb1, 0xc8, 0x70, 0x36, 0x1d, 0xd6, 0x62, 0xc3, 0x5b, 0x6c, 0x98, 0x4b, 0x0d, 0xf7, 0x74, 0x16, + 0x2f, 0xb4, 0x17, 0x4c, 0xcd, 0x93, 0x31, 0x34, 0x93, 0x30, 0xec, 0xe4, 0x37, 0x86, 0x5e, 0xa4, + 0x69, 0x57, 0xfb, 0x25, 0x0e, 0x7a, 0x2d, 0x30, 0xd3, 0x99, 0xe9, 0xcc, 0xf4, 0xcc, 0xce, 0xf4, + 0xc8, 0xfb, 0xee, 0x85, 0x7e, 0xfc, 0x6c, 0x90, 0xcc, 0xdc, 0x6b, 0x81, 0x99, 0xce, 0x4c, 0x5f, + 0xca, 0x99, 0x6e, 0x96, 0xfc, 0x64, 0x92, 0xf4, 0x24, 0x93, 0xec, 0xd4, 0x7f, 0x90, 0xcb, 0xab, + 0xd3, 0x8b, 0xe3, 0xcb, 0x8b, 0x0f, 0x67, 0x1f, 0xef, 0xcb, 0xe7, 0xe5, 0xeb, 0x4f, 0xf7, 0x37, + 0xa7, 0xff, 0x3c, 0xbd, 0x3e, 0xbb, 0xfd, 0x53, 0x77, 0x24, 0x09, 0xa4, 0x39, 0x09, 0xe5, 0x6f, + 0x7d, 0x3a, 0xbb, 0xb8, 0xbc, 0x36, 0xc8, 0xcb, 0x7b, 0xb3, 0xe8, 0x07, 0xf8, 0xfd, 0xe2, 0x1f, + 0x17, 0x97, 0x7f, 0x5c, 0xe4, 0xf9, 0x11, 0xfe, 0x28, 0x5f, 0x5f, 0x9c, 0x5d, 0x7c, 0xcc, 0xf3, + 0x23, 0x7c, 0x2a, 0xff, 0x3f, 0xf9, 0x1e, 0x46, 0xc7, 0xd7, 0x67, 0xb7, 0x67, 0xc7, 0xe5, 0xf3, + 0xb4, 0x53, 0x54, 0xef, 0x6c, 0x5b, 0x7d, 0x2b, 0xf4, 0x13, 0x7b, 0x3f, 0x62, 0x7d, 0xf2, 0x69, + 0x5f, 0x0d, 0xf5, 0x40, 0x3d, 0xc4, 0x37, 0x99, 0x8d, 0x6f, 0x62, 0xff, 0xc9, 0x73, 0x2a, 0xa1, + 0xe7, 0xc6, 0x9e, 0x81, 0x62, 0x39, 0xd2, 0x0a, 0x33, 0x9e, 0x19, 0xbf, 0x94, 0x33, 0xbe, 0x35, + 0xca, 0x63, 0xbf, 0xf2, 0xef, 0x68, 0xbf, 0x64, 0x30, 0xed, 0x35, 0x6a, 0x39, 0x15, 0x7e, 0x0f, + 0x3a, 0x05, 0xbc, 0x0b, 0x81, 0x1b, 0xd4, 0x23, 0xaf, 0x52, 0x0f, 0xaa, 0x5a, 0x43, 0xcf, 0xac, + 0xfa, 0xbf, 0x59, 0x0d, 0x08, 0x81, 0xad, 0x50, 0x22, 0x05, 0x40, 0xa5, 0xaa, 0xef, 0x4b, 0x96, + 0x57, 0x7f, 0x31, 0xab, 0x88, 0x91, 0xb9, 0xae, 0x2d, 0xbe, 0x2b, 0x95, 0xf6, 0x0f, 0x4a, 0xa5, + 0x9d, 0x83, 0xb7, 0x07, 0x3b, 0x87, 0x7b, 0x7b, 0xc5, 0xfd, 0xe2, 0x5e, 0x86, 0x7a, 0x3b, 0xa5, + 0x8d, 0x24, 0x77, 0x59, 0xf0, 0xef, 0xcf, 0x0d, 0xcf, 0x31, 0x59, 0x8c, 0xec, 0x35, 0x80, 0x57, + 0xc7, 0xab, 0x2f, 0xa5, 0x57, 0x6f, 0x06, 0x7e, 0x3d, 0x30, 0xc1, 0x78, 0x8d, 0x6a, 0xb1, 0x66, + 0xd5, 0x60, 0x97, 0x61, 0x4f, 0xfc, 0x9b, 0x45, 0x3d, 0xf9, 0xd2, 0xef, 0xd4, 0x1d, 0x13, 0xb1, + 0x6f, 0xff, 0xbc, 0x3a, 0xbd, 0x3f, 0x3b, 0x59, 0xde, 0x2d, 0xbb, 0xe5, 0xb3, 0xa5, 0xdc, 0xaf, + 0x7b, 0xfa, 0xff, 0x5e, 0xdd, 0x2e, 0xe3, 0x73, 0x9d, 0x5f, 0x2e, 0xe5, 0xeb, 0xba, 0xbc, 0x65, + 0x6f, 0xf5, 0xe2, 0x90, 0x38, 0xbf, 0xe9, 0xed, 0x0a, 0x3b, 0xb1, 0x6d, 0xef, 0x6a, 0xed, 0xee, + 0xb4, 0x9e, 0x4b, 0xfb, 0x6a, 0xfb, 0xab, 0xb5, 0xf6, 0x55, 0x6b, 0xed, 0xa7, 0x56, 0xdb, 0x47, + 0xbd, 0xb0, 0x0d, 0x91, 0x43, 0x6f, 0xbf, 0x90, 0x28, 0xef, 0x79, 0xd2, 0x16, 0xc3, 0xf6, 0xd5, + 0xf9, 0xdc, 0x51, 0x39, 0x23, 0x90, 0x48, 0xb6, 0x41, 0xb2, 0x52, 0xab, 0x57, 0xfe, 0x3d, 0x7f, + 0x7f, 0x64, 0xe7, 0x63, 0x86, 0xdb, 0x23, 0x77, 0x64, 0xb6, 0x47, 0x46, 0xcf, 0xf9, 0xdc, 0x1b, + 0xd9, 0xfa, 0xde, 0x69, 0x6d, 0x8c, 0x4c, 0xb8, 0xa7, 0x4d, 0x6d, 0x2f, 0x5b, 0x56, 0xb6, 0x46, + 0xce, 0x1e, 0x00, 0xba, 0x32, 0xc2, 0xe2, 0xf7, 0x45, 0xce, 0x1c, 0x20, 0x32, 0x6e, 0x29, 0xf1, + 0xa6, 0xc8, 0xd8, 0x7f, 0xf2, 0xfe, 0xb7, 0x1e, 0x78, 0x8e, 0x52, 0xc1, 0xc5, 0x11, 0x7d, 0x7f, + 0x70, 0xf9, 0x72, 0xec, 0xe6, 0x4a, 0x36, 0xec, 0x4c, 0x55, 0xac, 0xec, 0x6d, 0x17, 0x49, 0x34, + 0x2c, 0xed, 0xd0, 0xa3, 0xfe, 0x3e, 0xae, 0x91, 0x01, 0xe8, 0x28, 0xd6, 0xe2, 0x53, 0x54, 0x64, + 0xf2, 0x5a, 0x21, 0xa5, 0xed, 0xd4, 0x13, 0xed, 0x09, 0xa5, 0x38, 0x0a, 0x2e, 0x08, 0x17, 0x84, + 0x0b, 0xc2, 0x05, 0xe1, 0x82, 0x2c, 0xb8, 0xa0, 0x1c, 0xd7, 0x34, 0x9a, 0x15, 0x18, 0x4f, 0x97, + 0x1c, 0x8e, 0xdb, 0x57, 0x99, 0x84, 0xed, 0xb3, 0xe3, 0xbb, 0x64, 0x71, 0x1d, 0x81, 0x7b, 0xf6, + 0x02, 0xf7, 0x6a, 0xfd, 0xc9, 0xf5, 0x83, 0x64, 0x2e, 0xaf, 0xdf, 0xb7, 0xc3, 0x17, 0x25, 0xe3, + 0xa7, 0x1d, 0x42, 0xf8, 0xbc, 0xf2, 0x53, 0x62, 0x87, 0xa4, 0x31, 0x3c, 0xd6, 0x15, 0x4f, 0x4a, + 0x2c, 0x9c, 0x7b, 0xc1, 0x63, 0xdb, 0x44, 0x26, 0x5b, 0xc9, 0x54, 0xab, 0x20, 0xaa, 0x01, 0x2e, + 0x7a, 0xa9, 0x32, 0xfd, 0x5c, 0x2b, 0xc5, 0xeb, 0x0c, 0x12, 0xa9, 0x5e, 0xd4, 0xea, 0xa1, 0xa6, + 0xde, 0x15, 0xbb, 0x7b, 0x6f, 0x53, 0xec, 0x0c, 0x21, 0xc6, 0xb9, 0x4b, 0x30, 0x62, 0x55, 0xcf, + 0xe8, 0x2c, 0x6c, 0x6c, 0x6c, 0x7c, 0x76, 0x9d, 0xff, 0x2d, 0x3b, 0xff, 0x77, 0xc7, 0x39, 0xbc, + 0xbf, 0x1b, 0xfa, 0xcb, 0x97, 0x2f, 0xce, 0xfd, 0xdd, 0xe6, 0xcf, 0x9d, 0x37, 0xfb, 0xc5, 0x97, + 0xcd, 0xdf, 0x06, 0xbf, 0xbf, 0xfb, 0xf2, 0x65, 0x6b, 0xf3, 0xaf, 0x3a, 0x57, 0xfd, 0xb6, 0xf9, + 0xeb, 0xcb, 0x97, 0xad, 0xf9, 0x16, 0xe4, 0xce, 0x42, 0xb4, 0xfe, 0xad, 0x1e, 0xc5, 0x6a, 0x6e, + 0xa7, 0x7f, 0x05, 0x3e, 0x07, 0x9f, 0x83, 0xcf, 0xc1, 0xe7, 0xe0, 0x73, 0xf0, 0x39, 0x4a, 0x3e, + 0xa7, 0x56, 0x7f, 0xf4, 0x03, 0xe7, 0xab, 0x1b, 0x04, 0x5e, 0x98, 0xdc, 0xef, 0x8c, 0x5c, 0x85, + 0xef, 0xc1, 0xf7, 0x8c, 0x2d, 0x24, 0x24, 0xcc, 0xc8, 0x4d, 0x28, 0xb2, 0xe9, 0x8d, 0xed, 0xa7, + 0x7a, 0x5c, 0x55, 0x1e, 0xda, 0xc3, 0x17, 0x31, 0xb2, 0x19, 0xd9, 0x8b, 0x1b, 0xd9, 0x8b, 0x55, + 0x55, 0x67, 0xac, 0x49, 0x26, 0x14, 0x48, 0x1b, 0xcd, 0x04, 0x65, 0xdf, 0xdb, 0x9f, 0xca, 0x46, + 0xd1, 0x77, 0xc4, 0xd1, 0x04, 0x59, 0x4d, 0x8d, 0xa6, 0x42, 0x4a, 0x53, 0xa3, 0x49, 0x3e, 0x13, + 0x8b, 0xc9, 0xdd, 0x0f, 0xfa, 0x41, 0xd5, 0xfb, 0xa1, 0x51, 0x8a, 0xba, 0x7d, 0x19, 0x8b, 0xc7, + 0x2a, 0x41, 0x20, 0x8b, 0xc7, 0xea, 0x1e, 0x7e, 0x3c, 0xc6, 0x59, 0x54, 0x1d, 0xea, 0xf6, 0x80, + 0xa7, 0x14, 0x35, 0x13, 0x73, 0xa9, 0x27, 0xa6, 0x72, 0x11, 0xea, 0x6f, 0x6e, 0x58, 0xfd, 0x8f, + 0x1b, 0x7a, 0x8e, 0x1f, 0xc4, 0x5e, 0x18, 0x36, 0x1b, 0x06, 0xc5, 0x9c, 0x26, 0xb4, 0x95, 0xf2, + 0x01, 0xfd, 0x0b, 0xda, 0x12, 0xae, 0x36, 0xd0, 0x4d, 0x07, 0xbc, 0xd8, 0xc0, 0x17, 0x9b, 0x00, + 0x22, 0x13, 0x41, 0x6d, 0x42, 0x68, 0x68, 0xbf, 0xeb, 0x46, 0x07, 0xf4, 0xbb, 0xdf, 0x1f, 0xcd, + 0xab, 0x47, 0xb6, 0x1a, 0xe1, 0xe8, 0xec, 0xd6, 0xd0, 0x88, 0x9f, 0x1b, 0x5e, 0xc4, 0xe1, 0xd9, + 0x1a, 0x93, 0xaa, 0xd3, 0x73, 0x2b, 0x77, 0x7c, 0x76, 0xc3, 0x0b, 0x2b, 0x5e, 0x10, 0xbb, 0x8f, + 0x9e, 0xc0, 0x9e, 0x7c, 0x93, 0x2d, 0xf9, 0x66, 0x05, 0x92, 0x7a, 0xff, 0x99, 0xef, 0x2c, 0x16, + 0x29, 0x98, 0x24, 0x64, 0x5e, 0xc6, 0x9a, 0x13, 0x2a, 0xa0, 0xd4, 0x6f, 0x4f, 0xb0, 0xb4, 0x8f, + 0xe1, 0x90, 0x1e, 0x7d, 0x05, 0x02, 0x85, 0x95, 0x6c, 0xbf, 0x82, 0xe2, 0x4e, 0x96, 0x5f, 0xc2, + 0xda, 0x62, 0xae, 0xbe, 0x4b, 0xeb, 0xa0, 0x70, 0x0d, 0x2c, 0xf4, 0x83, 0x28, 0x76, 0x83, 0xd8, + 0x9c, 0x36, 0x7a, 0x0d, 0x41, 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x07, 0xc4, + 0x01, 0x71, 0x4c, 0x20, 0x8e, 0xd8, 0x0b, 0xbf, 0xbb, 0x35, 0x09, 0xe4, 0xe8, 0xb6, 0x04, 0x73, + 0xc0, 0x1c, 0x30, 0x87, 0xf2, 0x98, 0x89, 0x62, 0x37, 0x76, 0x0c, 0x27, 0xd1, 0xba, 0x59, 0x25, + 0xe9, 0x7e, 0x13, 0x42, 0x15, 0xa5, 0xc1, 0x18, 0x30, 0x26, 0x9f, 0x18, 0x23, 0x5e, 0xa1, 0x1a, + 0xae, 0x49, 0x97, 0x6b, 0x9e, 0x0c, 0x46, 0xd9, 0x20, 0x75, 0xd5, 0xfd, 0x01, 0xcd, 0x40, 0x33, + 0xd0, 0x0c, 0x0a, 0x0a, 0xe8, 0x01, 0x7a, 0xa0, 0xa0, 0x40, 0x1a, 0x13, 0x49, 0xc3, 0x89, 0xfd, + 0x27, 0x4f, 0x04, 0x37, 0x3a, 0x2d, 0xc1, 0x1c, 0x30, 0x07, 0xcc, 0xa1, 0x3c, 0x66, 0xcc, 0x4e, + 0xe0, 0x42, 0x3f, 0x01, 0x62, 0x80, 0x18, 0xf4, 0x13, 0xa8, 0xa6, 0x4d, 0x35, 0x06, 0x13, 0x7d, + 0x00, 0x34, 0x7e, 0x00, 0xcb, 0xc0, 0x32, 0xb0, 0x0c, 0xfa, 0x09, 0xe8, 0x01, 0x7a, 0xa0, 0x9f, + 0x40, 0x1a, 0x13, 0x49, 0x43, 0x4a, 0x3f, 0xe9, 0xb5, 0x04, 0x73, 0xc0, 0x1c, 0x30, 0x07, 0xfa, + 0x09, 0x10, 0x03, 0xc4, 0xa0, 0x9f, 0x40, 0x35, 0xa6, 0x54, 0x63, 0x75, 0x5b, 0xb2, 0xe6, 0x71, + 0x92, 0xfd, 0xeb, 0x13, 0x17, 0xa0, 0x6a, 0x34, 0xa3, 0xd6, 0x1f, 0xdd, 0xaa, 0x18, 0xc6, 0x3b, + 0xf6, 0xd7, 0xa7, 0x1f, 0x05, 0xd0, 0x68, 0xde, 0xff, 0xbd, 0xdb, 0xfc, 0x59, 0xbf, 0xf5, 0x0c, + 0x1c, 0x77, 0xef, 0x57, 0x6b, 0x9e, 0x7e, 0x8d, 0x83, 0xf6, 0xd5, 0x54, 0x35, 0xb0, 0x07, 0x8c, + 0x54, 0x35, 0xa0, 0xaa, 0x01, 0xd1, 0x16, 0xd1, 0xd6, 0x6a, 0x44, 0x5b, 0x28, 0xbc, 0x04, 0x47, + 0x04, 0x47, 0x3a, 0xc1, 0x11, 0x0a, 0xef, 0x02, 0x63, 0x21, 0xaa, 0x1a, 0x40, 0x1c, 0x10, 0x07, + 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x07, 0xc4, 0x91, 0x51, 0xe2, 0xa0, 0xaa, 0x01, 0xcc, 0x01, + 0x73, 0x50, 0xd5, 0x60, 0xb8, 0x09, 0x56, 0x95, 0xc1, 0x98, 0x95, 0xc6, 0x18, 0x56, 0x95, 0x73, + 0xce, 0x35, 0x54, 0x35, 0x80, 0x66, 0xa0, 0x19, 0x14, 0x14, 0xd0, 0x03, 0xf4, 0x40, 0x41, 0x81, + 0x34, 0xac, 0x92, 0x06, 0x55, 0x0d, 0x60, 0x0e, 0x98, 0x83, 0xac, 0x7c, 0xf4, 0x13, 0x20, 0x06, + 0x88, 0x41, 0x3f, 0x59, 0x06, 0xaa, 0xa1, 0xaa, 0x01, 0x2c, 0x03, 0xcb, 0xa0, 0x9f, 0x80, 0x1e, + 0xa0, 0x07, 0xfa, 0x09, 0xa4, 0x61, 0x93, 0x34, 0xa8, 0x6a, 0x00, 0x73, 0xc0, 0x1c, 0xe8, 0x27, + 0xe8, 0x27, 0x40, 0x0c, 0x10, 0x83, 0x7e, 0x92, 0x35, 0xaa, 0x59, 0xc6, 0xaa, 0x06, 0x1a, 0x7b, + 0xf4, 0xd7, 0x67, 0xd6, 0x31, 0x38, 0x6b, 0x35, 0x98, 0x85, 0xd2, 0x05, 0x41, 0xd5, 0xfb, 0x61, + 0x50, 0xbb, 0xa0, 0x7d, 0xb9, 0x5e, 0xf1, 0x82, 0x1d, 0x8a, 0x17, 0xa4, 0xc9, 0x83, 0xab, 0x54, + 0xbc, 0x40, 0x9b, 0xf2, 0xfa, 0xef, 0xbb, 0x19, 0xb4, 0x4c, 0x8c, 0xc6, 0xeb, 0xee, 0x55, 0xe6, + 0x38, 0xd4, 0xb8, 0xb6, 0xfb, 0xb5, 0xf5, 0xb8, 0x4b, 0x00, 0x69, 0xbd, 0xa0, 0xf9, 0xe4, 0x85, + 0x1d, 0xeb, 0x6a, 0x8e, 0xb4, 0xc5, 0x92, 0x41, 0x1b, 0xa7, 0x41, 0xf3, 0xa9, 0xf5, 0x06, 0x53, + 0x8d, 0x0e, 0x04, 0xba, 0xb0, 0xe9, 0x07, 0xf1, 0xdb, 0x5d, 0x81, 0xde, 0x3b, 0x00, 0xe0, 0x01, + 0xf8, 0x15, 0x01, 0xf8, 0xd2, 0xee, 0x61, 0xe9, 0x70, 0xff, 0x60, 0xf7, 0x10, 0x6c, 0x5f, 0x18, + 0xb6, 0xdf, 0x65, 0x00, 0x46, 0xff, 0xed, 0x85, 0x81, 0x57, 0xd3, 0xa7, 0xd1, 0xee, 0xf5, 0xd4, + 0xd2, 0x02, 0x47, 0x33, 0x85, 0xa3, 0xd4, 0xd2, 0x42, 0xe3, 0xb7, 0x32, 0x89, 0xc4, 0x27, 0xd3, + 0xb4, 0x49, 0x45, 0x5e, 0x01, 0x79, 0x05, 0x10, 0x3d, 0x44, 0x9f, 0xf4, 0x15, 0x90, 0x57, 0xb0, + 0x40, 0x94, 0xa7, 0x96, 0x16, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, + 0x1c, 0x59, 0x25, 0x0e, 0x6a, 0x69, 0xc1, 0x1c, 0x30, 0x07, 0xb5, 0xb4, 0x86, 0x9b, 0x20, 0x97, + 0x11, 0x8c, 0x59, 0x69, 0x8c, 0x21, 0x97, 0x31, 0xe7, 0x5c, 0x43, 0x2d, 0x2d, 0x68, 0x06, 0x9a, + 0x41, 0x41, 0x01, 0x3d, 0x40, 0x0f, 0x14, 0x14, 0x48, 0xc3, 0x2a, 0x69, 0x50, 0x4b, 0x0b, 0xe6, + 0x80, 0x39, 0xd8, 0x0b, 0x8a, 0x7e, 0x02, 0xc4, 0x00, 0x31, 0xe8, 0x27, 0xcb, 0x40, 0x35, 0xd4, + 0xd2, 0x82, 0x65, 0x60, 0x19, 0xf4, 0x13, 0xd0, 0x03, 0xf4, 0x40, 0x3f, 0x81, 0x34, 0x6c, 0x92, + 0x06, 0xb5, 0xb4, 0x60, 0x0e, 0x98, 0x03, 0xfd, 0x04, 0xfd, 0x04, 0x88, 0x01, 0x62, 0xd0, 0x4f, + 0xb2, 0x46, 0x35, 0xcb, 0x58, 0x4b, 0x4b, 0x6b, 0x97, 0xfe, 0xfa, 0xcc, 0x6a, 0x5a, 0xff, 0xe8, + 0x34, 0x99, 0x81, 0x12, 0x06, 0x81, 0xaf, 0xc1, 0x2d, 0x7d, 0x3f, 0xd8, 0xbe, 0x9a, 0xf2, 0x05, + 0xf6, 0xc8, 0x90, 0xf2, 0x05, 0x94, 0x2f, 0x20, 0xac, 0x22, 0xac, 0x5a, 0x8d, 0xb0, 0x0a, 0x29, + 0x97, 0x28, 0x88, 0x28, 0x48, 0x27, 0x0a, 0x42, 0xca, 0x5d, 0x60, 0xd0, 0x43, 0xf9, 0x02, 0x88, + 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x32, 0x4a, 0x1c, 0x94, 0x2f, + 0x80, 0x39, 0x60, 0x0e, 0xca, 0x17, 0x0c, 0x37, 0xc1, 0xf2, 0x31, 0x18, 0xb3, 0xd2, 0x18, 0xc3, + 0xf2, 0x71, 0xce, 0xb9, 0x86, 0xf2, 0x05, 0xd0, 0x0c, 0x34, 0x83, 0x82, 0x02, 0x7a, 0x80, 0x1e, + 0x28, 0x28, 0x90, 0x86, 0x55, 0xd2, 0xa0, 0x7c, 0x01, 0xcc, 0x01, 0x73, 0x90, 0x7e, 0x8f, 0x7e, + 0x02, 0xc4, 0x00, 0x31, 0xe8, 0x27, 0xcb, 0x40, 0x35, 0x94, 0x2f, 0x80, 0x65, 0x60, 0x19, 0xf4, + 0x13, 0xd0, 0x03, 0xf4, 0x40, 0x3f, 0x81, 0x34, 0x6c, 0x92, 0x06, 0xe5, 0x0b, 0x60, 0x0e, 0x98, + 0x03, 0xfd, 0x04, 0xfd, 0x04, 0x88, 0x01, 0x62, 0xd0, 0x4f, 0xb2, 0x46, 0x35, 0xcb, 0x58, 0xbe, + 0x40, 0x63, 0x8f, 0xfe, 0xfa, 0xcc, 0xe2, 0x05, 0x17, 0xad, 0x06, 0x33, 0x50, 0xba, 0x20, 0xaa, + 0x3f, 0xc4, 0xff, 0x71, 0x43, 0xaf, 0x93, 0x4b, 0x19, 0x36, 0x1b, 0xb1, 0x7e, 0x21, 0x83, 0x09, + 0x6d, 0x51, 0xd6, 0xc0, 0x1e, 0x31, 0x52, 0xd6, 0x80, 0xb2, 0x06, 0x84, 0x5b, 0x84, 0x5b, 0xab, + 0x11, 0x6e, 0x21, 0xf1, 0x12, 0x1d, 0x11, 0x1d, 0xe9, 0x44, 0x47, 0x48, 0xbc, 0x0b, 0x0c, 0x86, + 0x28, 0x6b, 0x00, 0x71, 0x40, 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, 0x1c, 0x10, 0x47, 0x46, + 0x89, 0x83, 0xb2, 0x06, 0x30, 0x07, 0xcc, 0x41, 0x59, 0x83, 0xe1, 0x26, 0x58, 0x56, 0x06, 0x63, + 0x56, 0x1a, 0x63, 0x58, 0x56, 0xce, 0x39, 0xd7, 0x50, 0xd6, 0x00, 0x9a, 0x81, 0x66, 0x50, 0x50, + 0x40, 0x0f, 0xd0, 0x03, 0x05, 0x05, 0xd2, 0xb0, 0x4a, 0x1a, 0x94, 0x35, 0x80, 0x39, 0x60, 0x0e, + 0xd2, 0xf2, 0xd1, 0x4f, 0x80, 0x18, 0x20, 0x06, 0xfd, 0x64, 0x19, 0xa8, 0x86, 0xb2, 0x06, 0xb0, + 0x0c, 0x2c, 0x83, 0x7e, 0x02, 0x7a, 0x80, 0x1e, 0xe8, 0x27, 0x90, 0x86, 0x4d, 0xd2, 0xa0, 0xac, + 0x01, 0xcc, 0x01, 0x73, 0xa0, 0x9f, 0xa0, 0x9f, 0x00, 0x31, 0x40, 0x0c, 0xfa, 0x49, 0xd6, 0xa8, + 0x66, 0x19, 0xcb, 0x1a, 0x18, 0xef, 0xd8, 0x5f, 0x9f, 0x59, 0xe4, 0xe0, 0xa6, 0xdb, 0xfc, 0x59, + 0xbf, 0xf5, 0x0c, 0x54, 0x3c, 0x88, 0xeb, 0xb1, 0x46, 0xa6, 0xf3, 0xc0, 0x3f, 0xb6, 0x2f, 0xa7, + 0xae, 0x81, 0x3d, 0x64, 0xa4, 0xae, 0x01, 0x75, 0x0d, 0x88, 0xb7, 0x88, 0xb7, 0x56, 0x23, 0xde, + 0x42, 0xe3, 0x25, 0x3c, 0x22, 0x3c, 0xd2, 0x09, 0x8f, 0xd0, 0x78, 0x17, 0x18, 0x0d, 0x51, 0xd7, + 0x00, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x8e, 0x8c, 0x12, 0x07, + 0x75, 0x0d, 0x60, 0x0e, 0x98, 0x83, 0xba, 0x06, 0xc3, 0x4d, 0xb0, 0xae, 0x0c, 0xc6, 0xac, 0x34, + 0xc6, 0xb0, 0xae, 0x9c, 0x73, 0xae, 0xa1, 0xae, 0x01, 0x34, 0x03, 0xcd, 0xa0, 0xa0, 0x80, 0x1e, + 0xa0, 0x07, 0x0a, 0x0a, 0xa4, 0x61, 0x95, 0x34, 0xa8, 0x6b, 0x00, 0x73, 0xc0, 0x1c, 0xe4, 0xe5, + 0xa3, 0x9f, 0x00, 0x31, 0x40, 0x0c, 0xfa, 0xc9, 0x32, 0x50, 0x0d, 0x75, 0x0d, 0x60, 0x19, 0x58, + 0x06, 0xfd, 0x04, 0xf4, 0x00, 0x3d, 0xd0, 0x4f, 0x20, 0x0d, 0x9b, 0xa4, 0x41, 0x5d, 0x03, 0x98, + 0x03, 0xe6, 0x40, 0x3f, 0x41, 0x3f, 0x01, 0x62, 0x80, 0x18, 0xf4, 0x93, 0xac, 0x51, 0xcd, 0x32, + 0xd6, 0x35, 0xd0, 0xd9, 0xa4, 0xbf, 0x3e, 0xb3, 0x94, 0xc1, 0x6d, 0xbb, 0xc5, 0x0c, 0x94, 0x2f, + 0x68, 0x46, 0x5e, 0xa8, 0x5f, 0xbd, 0xa0, 0x7d, 0x35, 0xc5, 0x0b, 0xec, 0x71, 0x21, 0xc5, 0x0b, + 0x28, 0x5e, 0x40, 0x50, 0x45, 0x50, 0xb5, 0x1a, 0x41, 0x15, 0x42, 0x2e, 0x31, 0x10, 0x31, 0x90, + 0x4e, 0x0c, 0x84, 0x90, 0xbb, 0xc0, 0x90, 0x87, 0xe2, 0x05, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x40, + 0x1c, 0x10, 0x07, 0xc4, 0x01, 0x71, 0x64, 0x94, 0x38, 0x28, 0x5e, 0x00, 0x73, 0xc0, 0x1c, 0x14, + 0x2f, 0x18, 0x6e, 0x82, 0xc5, 0x63, 0x30, 0x66, 0xa5, 0x31, 0x86, 0xc5, 0xe3, 0x9c, 0x73, 0x0d, + 0xc5, 0x0b, 0xa0, 0x19, 0x68, 0x06, 0x05, 0x05, 0xf4, 0x00, 0x3d, 0x50, 0x50, 0x20, 0x0d, 0xab, + 0xa4, 0x41, 0xf1, 0x02, 0x98, 0x03, 0xe6, 0x20, 0xf9, 0x1e, 0xfd, 0x04, 0x88, 0x01, 0x62, 0xd0, + 0x4f, 0x96, 0x81, 0x6a, 0x28, 0x5e, 0x00, 0xcb, 0xc0, 0x32, 0xe8, 0x27, 0xa0, 0x07, 0xe8, 0x81, + 0x7e, 0x02, 0x69, 0xd8, 0x24, 0x0d, 0x8a, 0x17, 0xc0, 0x1c, 0x30, 0x07, 0xfa, 0x09, 0xfa, 0x09, + 0x10, 0x03, 0xc4, 0xa0, 0x9f, 0x64, 0x8d, 0x6a, 0x96, 0xb1, 0x78, 0x81, 0xc6, 0x1e, 0xfd, 0xf5, + 0x99, 0xb5, 0x0b, 0x7e, 0x6f, 0x35, 0x98, 0x81, 0xd2, 0x05, 0xff, 0x71, 0xfd, 0x58, 0xbf, 0x74, + 0x41, 0xfb, 0x6a, 0x4a, 0x17, 0xd8, 0xa3, 0x42, 0x4a, 0x17, 0x50, 0xba, 0x80, 0x90, 0x8a, 0x90, + 0x6a, 0x35, 0x42, 0x2a, 0x64, 0x5c, 0x22, 0x20, 0x22, 0x20, 0x9d, 0x08, 0x08, 0x19, 0x77, 0x81, + 0x01, 0x0f, 0xa5, 0x0b, 0x20, 0x0e, 0x88, 0x03, 0xe2, 0x80, 0x38, 0x20, 0x0e, 0x88, 0x03, 0xe2, + 0xc8, 0x28, 0x71, 0x50, 0xba, 0x00, 0xe6, 0x80, 0x39, 0x28, 0x5d, 0x30, 0xdc, 0x04, 0x4b, 0xc7, + 0x60, 0xcc, 0x4a, 0x63, 0x0c, 0x4b, 0xc7, 0x39, 0xe7, 0x1a, 0x4a, 0x17, 0x40, 0x33, 0xd0, 0x0c, + 0x0a, 0x0a, 0xe8, 0x01, 0x7a, 0xa0, 0xa0, 0x40, 0x1a, 0x56, 0x49, 0x83, 0xd2, 0x05, 0x30, 0x07, + 0xcc, 0x41, 0xea, 0x3d, 0xfa, 0x09, 0x10, 0x03, 0xc4, 0xa0, 0x9f, 0x2c, 0x03, 0xd5, 0x50, 0xba, + 0x00, 0x96, 0x81, 0x65, 0xd0, 0x4f, 0x40, 0x0f, 0xd0, 0x03, 0xfd, 0x04, 0xd2, 0xb0, 0x49, 0x1a, + 0x94, 0x2e, 0x80, 0x39, 0x60, 0x0e, 0xf4, 0x13, 0xf4, 0x13, 0x20, 0x06, 0x88, 0x41, 0x3f, 0xc9, + 0x1a, 0xd5, 0x2c, 0x63, 0xe9, 0x02, 0x8d, 0x3d, 0xfa, 0xeb, 0x33, 0x4b, 0x17, 0xfc, 0xd1, 0x6a, + 0xd0, 0x56, 0xe9, 0x82, 0x35, 0xc1, 0x9e, 0xd7, 0xed, 0x71, 0xcd, 0x9e, 0x4e, 0xd6, 0x27, 0xf3, + 0x9f, 0x70, 0xf6, 0x27, 0xe6, 0x3c, 0x7b, 0x8b, 0xc1, 0x3a, 0x49, 0xda, 0x55, 0x6f, 0x1e, 0x7e, + 0x15, 0xce, 0xfd, 0x28, 0x2e, 0xc7, 0x71, 0xb2, 0xdd, 0xf2, 0x2d, 0x97, 0x76, 0x5a, 0xf3, 0x5a, + 0xf4, 0xd4, 0xb2, 0x26, 0x41, 0xb3, 0x56, 0x7b, 0xb3, 0x96, 0xc4, 0x08, 0xab, 0x5f, 0x74, 0x19, + 0x56, 0xbd, 0xd0, 0xab, 0xbe, 0x7f, 0xee, 0x5e, 0x62, 0xd4, 0x21, 0x8a, 0x83, 0x40, 0xf9, 0xe5, + 0x27, 0x98, 0x5b, 0x53, 0xe7, 0xd2, 0xec, 0x21, 0x33, 0x7d, 0x20, 0x4c, 0xfe, 0x97, 0x29, 0x3d, + 0x91, 0xb4, 0x07, 0x94, 0x9e, 0x7c, 0xf2, 0x37, 0x1f, 0xff, 0x5e, 0x13, 0xbe, 0x53, 0xa1, 0x1a, + 0x44, 0x53, 0xbf, 0x48, 0x9f, 0x51, 0x5b, 0x1f, 0x9a, 0xf2, 0x3c, 0xb3, 0x2b, 0x88, 0xcc, 0x0d, + 0xcf, 0x92, 0x84, 0x5f, 0xc9, 0x2b, 0x7f, 0x24, 0x0d, 0x9e, 0x94, 0x83, 0x23, 0xe5, 0xe0, 0x47, + 0xa9, 0x32, 0x87, 0xda, 0x08, 0x9a, 0x57, 0x51, 0xa3, 0x50, 0xe9, 0xf5, 0xf9, 0x9c, 0x4e, 0xe8, + 0x75, 0x6b, 0xf7, 0xf3, 0xf3, 0x6c, 0x59, 0xa2, 0x52, 0x31, 0x89, 0xe3, 0x71, 0x95, 0xb8, 0x5b, + 0xbd, 0xf4, 0x8b, 0x6a, 0x14, 0xad, 0x1d, 0x2d, 0x6b, 0x47, 0xc5, 0x5a, 0xa5, 0x5b, 0xcc, 0xbc, + 0x51, 0xd2, 0x52, 0x2c, 0x85, 0xc8, 0x73, 0xc3, 0xca, 0xb7, 0xe4, 0x9d, 0xd7, 0xdf, 0x4c, 0xd1, + 0xb9, 0x2e, 0x61, 0x07, 0xa8, 0x51, 0xbc, 0xb2, 0xd0, 0xa3, 0x23, 0xec, 0xe8, 0xd7, 0x18, 0xd2, + 0x95, 0x6d, 0x8c, 0x65, 0x1a, 0x63, 0x59, 0xc6, 0xa8, 0x86, 0x90, 0x2c, 0x22, 0x2a, 0x8b, 0x2a, + 0x03, 0x07, 0x55, 0x7f, 0x72, 0xfd, 0xc0, 0x69, 0x3b, 0x75, 0x85, 0x97, 0xd6, 0xb3, 0x69, 0x0a, + 0xaa, 0x49, 0xe1, 0xdc, 0x0b, 0x1e, 0xdb, 0x4e, 0x59, 0x4d, 0xd6, 0xd0, 0x88, 0x31, 0x4c, 0x64, + 0x0b, 0x53, 0x59, 0xb5, 0x1f, 0x13, 0x6b, 0x5e, 0x2f, 0x10, 0xf0, 0xfe, 0xff, 0xec, 0x7d, 0xd9, + 0x72, 0xdb, 0x48, 0xd2, 0xee, 0xbd, 0x9e, 0x42, 0x81, 0x98, 0x0b, 0x69, 0xc6, 0x90, 0xb8, 0x53, + 0xf4, 0x8d, 0x43, 0x96, 0xd9, 0x6e, 0xc7, 0x68, 0x3b, 0x12, 0x3d, 0x7f, 0x74, 0x5b, 0x1c, 0x06, + 0x44, 0x96, 0x68, 0x9c, 0x06, 0x01, 0xfe, 0x40, 0x51, 0xc7, 0x6a, 0x9b, 0xef, 0x7e, 0x82, 0xfb, + 0x4e, 0xa2, 0xaa, 0xb2, 0x40, 0x00, 0xfc, 0x1c, 0x31, 0x63, 0xb5, 0x4c, 0x24, 0x51, 0x55, 0xb9, + 0x7c, 0x99, 0x95, 0x8b, 0x4c, 0x58, 0x5b, 0x25, 0xcc, 0x40, 0xb5, 0x65, 0xb9, 0x62, 0x7e, 0x8f, + 0x9b, 0xa6, 0xc9, 0x17, 0xac, 0x0b, 0x48, 0xc8, 0xbd, 0xc5, 0x39, 0xf3, 0x5d, 0x61, 0x11, 0x31, + 0x4e, 0x4e, 0x4e, 0xbe, 0x59, 0xe6, 0xdf, 0x97, 0xe6, 0x9f, 0x19, 0xb3, 0xd2, 0xa8, 0xcf, 0xfd, + 0xc7, 0xd3, 0x93, 0xd9, 0xa8, 0x9f, 0xfe, 0xcc, 0xbc, 0x2b, 0x65, 0xfb, 0xa7, 0x1f, 0x66, 0xbf, + 0xaf, 0x3f, 0x3d, 0x9d, 0x9d, 0xfe, 0x53, 0xe6, 0xa9, 0x0f, 0xa7, 0xbf, 0x9e, 0x9e, 0xce, 0xc2, + 0x6b, 0xba, 0x3a, 0xa9, 0xa6, 0x13, 0x72, 0xf6, 0x94, 0x9c, 0x3e, 0x25, 0xe7, 0x6f, 0xad, 0x13, + 0x28, 0xd9, 0x9e, 0x50, 0xa2, 0x6b, 0xa3, 0xca, 0x5d, 0xc8, 0xbc, 0x61, 0xf5, 0x46, 0x6f, 0x6f, + 0x3e, 0xbf, 0xc9, 0xc4, 0x5e, 0x28, 0xee, 0x3d, 0x16, 0x8c, 0x6c, 0x4f, 0x67, 0xbb, 0xc9, 0x58, + 0xc4, 0x3d, 0x74, 0xb9, 0xf9, 0x2d, 0x37, 0x38, 0x1f, 0x7b, 0x2b, 0xb2, 0xce, 0xfa, 0x16, 0xe7, + 0xf1, 0xbb, 0x17, 0x70, 0x93, 0xb9, 0xdc, 0xb7, 0x59, 0x10, 0xde, 0x7b, 0x5a, 0x78, 0x0a, 0x3e, + 0x14, 0x7c, 0xa8, 0x25, 0x66, 0x7a, 0x13, 0xf7, 0xa3, 0xe6, 0x9e, 0x15, 0xf3, 0xa5, 0xb2, 0xf0, + 0xa5, 0xe0, 0x4b, 0x89, 0x31, 0xaa, 0x68, 0xd4, 0x48, 0x2d, 0x8a, 0xa4, 0xc8, 0xb8, 0xd2, 0x0c, + 0xac, 0xc2, 0xc8, 0xea, 0x0c, 0x4d, 0x81, 0x67, 0x8e, 0xd1, 0x80, 0x58, 0xca, 0x2d, 0x54, 0x68, + 0x40, 0xec, 0xd8, 0x56, 0x40, 0xd0, 0x82, 0x78, 0x48, 0x06, 0xc9, 0x51, 0xf2, 0x62, 0x43, 0x25, + 0x3e, 0xe4, 0x62, 0x44, 0x2e, 0x4e, 0xa4, 0x62, 0x25, 0x27, 0x5e, 0x0a, 0xd1, 0x97, 0x63, 0xea, + 0xd6, 0x3c, 0xbe, 0xed, 0xb6, 0x09, 0x72, 0xa2, 0xb2, 0x17, 0x91, 0xee, 0x80, 0x94, 0x6f, 0x4f, + 0xea, 0xeb, 0x93, 0xfa, 0xfe, 0x5b, 0x63, 0x01, 0x3b, 0x2f, 0x84, 0xe9, 0x98, 0x52, 0x26, 0x1c, + 0x38, 0x00, 0xd2, 0xe3, 0x8b, 0x5e, 0x45, 0x2d, 0x3e, 0xa5, 0x04, 0x45, 0x0e, 0x45, 0x0e, 0x45, + 0x9e, 0x2c, 0x45, 0x1e, 0x4d, 0x4f, 0xc7, 0xee, 0x6b, 0xc1, 0xb4, 0x5a, 0x2d, 0x9f, 0x05, 0x04, + 0xa8, 0x71, 0x81, 0x1a, 0x74, 0x0e, 0x74, 0x0e, 0x74, 0x4e, 0xd4, 0xf2, 0x73, 0x2c, 0x79, 0x43, + 0xbc, 0x2a, 0x07, 0x92, 0xf7, 0x61, 0x2b, 0x84, 0xfe, 0x7b, 0x72, 0xf2, 0x2d, 0x63, 0x56, 0xea, + 0xbf, 0xbe, 0x65, 0xcd, 0x4a, 0x7d, 0xf4, 0x63, 0x76, 0xf8, 0xd7, 0xe8, 0xe7, 0xdc, 0xb7, 0x8c, + 0x59, 0x98, 0xfc, 0x5c, 0xfc, 0x96, 0x31, 0x8b, 0xf5, 0xd3, 0xa7, 0xa7, 0xb3, 0xd3, 0x9f, 0xf9, + 0xbe, 0xf8, 0x83, 0xff, 0x30, 0xa2, 0x4e, 0x11, 0x06, 0xde, 0x4e, 0x3a, 0xde, 0xb6, 0xbb, 0xaf, + 0x25, 0x52, 0x1b, 0x58, 0x82, 0x0d, 0x84, 0x0d, 0x84, 0x0d, 0xdc, 0x9b, 0xfc, 0xc4, 0xd6, 0x06, + 0x5a, 0xe6, 0xcb, 0xa5, 0xf9, 0x5b, 0xfd, 0x67, 0xf6, 0x5d, 0xa1, 0xff, 0xfe, 0xf4, 0x67, 0xb9, + 0xbf, 0xfc, 0xcb, 0x5f, 0xeb, 0x3e, 0x96, 0x7d, 0x57, 0xee, 0xbf, 0xdf, 0xf0, 0x2f, 0xa5, 0xfe, + 0xfb, 0x90, 0x34, 0x8a, 0xfd, 0x93, 0x95, 0x8f, 0x0e, 0x7e, 0x9f, 0xdb, 0xf4, 0x40, 0x61, 0xc3, + 0x03, 0xf9, 0x4d, 0x0f, 0xe4, 0x37, 0x3c, 0xb0, 0xf1, 0x95, 0x72, 0x1b, 0x1e, 0x28, 0xf6, 0x7f, + 0xad, 0x7c, 0xfe, 0x64, 0xfd, 0x47, 0x4b, 0xfd, 0xd3, 0x5f, 0x9b, 0xfe, 0xad, 0xdc, 0xff, 0xf5, + 0xfe, 0x14, 0x88, 0xe0, 0xd0, 0x11, 0x41, 0x2a, 0x2a, 0xb2, 0x5a, 0x6e, 0x70, 0x3e, 0x9f, 0xb3, + 0x31, 0xfb, 0x8f, 0xb7, 0x50, 0xb9, 0x25, 0xf2, 0xbb, 0x22, 0x32, 0x0a, 0x56, 0x3a, 0x72, 0xa9, + 0x1a, 0xb1, 0x94, 0x44, 0x4c, 0xb8, 0x91, 0xc5, 0x8d, 0xac, 0x76, 0x84, 0x33, 0x3d, 0x6f, 0x87, + 0x59, 0x2f, 0x3e, 0x7b, 0x91, 0x39, 0xf0, 0x09, 0x98, 0x29, 0x4b, 0x3c, 0x7b, 0x3f, 0x56, 0x2e, + 0x67, 0x67, 0x63, 0x4d, 0x71, 0x3e, 0x15, 0xb2, 0x18, 0xa8, 0x8c, 0x51, 0xdd, 0xa3, 0xb4, 0xbe, + 0x18, 0x3d, 0x1e, 0x71, 0xfa, 0x46, 0x0e, 0xca, 0x02, 0xca, 0x62, 0xeb, 0x1b, 0x22, 0x7d, 0x03, + 0xd1, 0x07, 0x44, 0x1f, 0x12, 0x18, 0x7d, 0x40, 0xfa, 0x06, 0x9c, 0x47, 0xc5, 0x70, 0x32, 0xd2, + 0x37, 0xa0, 0xc8, 0xa1, 0xc8, 0x91, 0xbe, 0x11, 0x85, 0xae, 0x41, 0xfa, 0x06, 0x74, 0x0e, 0x74, + 0x4e, 0x5c, 0x74, 0x0e, 0xd2, 0x37, 0x90, 0xbe, 0x01, 0xbc, 0xbd, 0x07, 0x1b, 0x88, 0xf4, 0x0d, + 0xd8, 0x40, 0xd8, 0x40, 0xa4, 0x6f, 0x68, 0xb6, 0x81, 0x48, 0xdf, 0x40, 0xfa, 0x06, 0x10, 0x01, + 0xd2, 0x37, 0x66, 0xcf, 0x53, 0xa4, 0x6f, 0x08, 0x74, 0x7e, 0x15, 0xdf, 0x14, 0xda, 0xf2, 0xfc, + 0x71, 0x67, 0x58, 0xc1, 0xb8, 0x64, 0xa2, 0xfb, 0x06, 0x85, 0x66, 0xf5, 0xb8, 0x74, 0x14, 0xde, + 0xc2, 0x6a, 0x86, 0xd0, 0xbd, 0xfc, 0x9a, 0x7e, 0xb3, 0x9f, 0xdc, 0xa0, 0xf1, 0xbb, 0x17, 0xf0, + 0xea, 0x90, 0x5a, 0xea, 0x9b, 0xf6, 0x2c, 0x34, 0xc9, 0xd1, 0xd0, 0xba, 0x27, 0x60, 0xfe, 0x2b, + 0xf3, 0x05, 0xba, 0xf6, 0x4c, 0x1e, 0x40, 0xc3, 0x1e, 0x34, 0xec, 0x99, 0x67, 0x21, 0x99, 0xa6, + 0xa7, 0xc3, 0xe7, 0xd0, 0xa8, 0x27, 0x42, 0x07, 0xf4, 0xa0, 0x1b, 0xf5, 0xc8, 0x06, 0x68, 0x66, + 0x29, 0x2d, 0x52, 0x3e, 0x25, 0x12, 0x43, 0xf7, 0x12, 0x63, 0x41, 0x62, 0xa8, 0xc8, 0x79, 0xc7, + 0x26, 0x31, 0x74, 0x22, 0x63, 0x31, 0xc8, 0x0b, 0x45, 0x63, 0x2f, 0x68, 0x8b, 0x34, 0x6a, 0x0b, + 0xf9, 0xcc, 0x50, 0xaa, 0x1b, 0x0e, 0x5c, 0x6e, 0xe0, 0x72, 0x63, 0x4f, 0xa2, 0x25, 0x1f, 0x06, + 0x3c, 0x8e, 0xc9, 0xe5, 0x06, 0xe5, 0xd5, 0x46, 0x45, 0x81, 0xc6, 0x78, 0x4d, 0x7b, 0x1f, 0x52, + 0x48, 0x9c, 0xfa, 0xb0, 0xb2, 0x47, 0x17, 0x04, 0xb4, 0xa8, 0xae, 0x81, 0xa6, 0x04, 0x93, 0x92, + 0x12, 0x31, 0xf9, 0x53, 0x57, 0x1b, 0xba, 0xf7, 0x2e, 0x46, 0x4c, 0x56, 0x3a, 0x34, 0x26, 0xc3, + 0x9d, 0x63, 0xa2, 0xee, 0x1c, 0x89, 0x44, 0x2e, 0x95, 0xd3, 0xbb, 0xbb, 0x9e, 0xcf, 0xd5, 0xe1, + 0xeb, 0x90, 0x8a, 0x24, 0x12, 0xf8, 0xc4, 0x5e, 0xac, 0x9e, 0x33, 0x84, 0x30, 0xc5, 0x3c, 0x00, + 0x30, 0x00, 0x30, 0x00, 0xb0, 0xb8, 0xf0, 0x99, 0x6e, 0xaf, 0xf3, 0x2c, 0x3c, 0x15, 0x65, 0x9d, + 0x08, 0x95, 0x30, 0xa6, 0x9b, 0x54, 0xb7, 0xac, 0x90, 0xc3, 0x98, 0xee, 0xd8, 0x1c, 0x41, 0xa9, + 0x58, 0xcc, 0x63, 0x2e, 0xf7, 0xfe, 0xf0, 0x4a, 0x6a, 0xd2, 0x88, 0xc6, 0x39, 0x00, 0xe3, 0xbf, + 0x63, 0xd4, 0xfc, 0x05, 0x9d, 0x1c, 0x34, 0x63, 0x2e, 0xc4, 0xeb, 0xf7, 0x20, 0xda, 0x88, 0xd7, + 0xc3, 0x5d, 0x81, 0xbb, 0x82, 0x78, 0x3d, 0xe2, 0xf5, 0x89, 0x0f, 0xa5, 0x22, 0x5e, 0x1f, 0x3d, + 0x93, 0x21, 0x5e, 0x8f, 0x78, 0x3d, 0xe2, 0xf5, 0x31, 0xf0, 0x7f, 0x11, 0xaf, 0x07, 0x00, 0x06, + 0x00, 0x3e, 0x34, 0x00, 0x8c, 0x78, 0xfd, 0x6a, 0xb0, 0x18, 0xf1, 0xfa, 0x3d, 0xa2, 0xcb, 0x63, + 0xc4, 0xeb, 0x11, 0xaf, 0xdf, 0x7b, 0x50, 0x6f, 0x8f, 0xf1, 0xfa, 0xe4, 0x55, 0xfb, 0x8a, 0x39, + 0x70, 0x89, 0x2e, 0xf6, 0x95, 0xbc, 0xba, 0xe8, 0x05, 0xc2, 0xe6, 0x55, 0x05, 0x87, 0xcd, 0x63, + 0x2f, 0x6f, 0xf4, 0xf6, 0xe6, 0xf3, 0x9b, 0xcc, 0x85, 0x02, 0x05, 0xe6, 0x5a, 0xc0, 0x59, 0xc3, + 0x9d, 0x48, 0x04, 0x73, 0x47, 0x51, 0x86, 0xbd, 0x28, 0xfa, 0x24, 0xd5, 0xd7, 0x8f, 0x23, 0x52, + 0xa9, 0x2f, 0xbd, 0x9e, 0x54, 0x3a, 0xeb, 0xa8, 0xba, 0x0e, 0x75, 0x4f, 0x29, 0x74, 0x2f, 0x29, + 0x5c, 0x71, 0x9d, 0x43, 0xc5, 0x35, 0xb9, 0xef, 0x16, 0x59, 0xc5, 0xb5, 0xe5, 0x37, 0xbf, 0xcb, + 0x54, 0x5c, 0x0f, 0x9f, 0x13, 0xab, 0xb8, 0xce, 0xa0, 0xe2, 0x1a, 0x15, 0xd7, 0x92, 0x41, 0x81, + 0xe9, 0x79, 0xb5, 0xbc, 0x8e, 0x65, 0xbb, 0xa6, 0x60, 0x27, 0x69, 0x99, 0x68, 0xbb, 0x71, 0xcd, + 0xdc, 0xf6, 0x50, 0xbd, 0x8b, 0xb9, 0xf9, 0x12, 0x18, 0x48, 0xc5, 0x8d, 0x57, 0x0d, 0x09, 0x4e, + 0x7c, 0xc4, 0xac, 0xe4, 0xf3, 0x04, 0xfe, 0xa0, 0x4c, 0x3c, 0x57, 0xc5, 0xed, 0xa6, 0xda, 0xb2, + 0x5c, 0x31, 0xbf, 0xc7, 0x4d, 0xd3, 0x84, 0x4c, 0xeb, 0x02, 0x12, 0x22, 0x7b, 0xef, 0x64, 0x9c, + 0x9c, 0x9c, 0x7c, 0xb3, 0xcc, 0xbf, 0x2f, 0xcd, 0x3f, 0x33, 0x66, 0xa5, 0x51, 0x9f, 0xfb, 0x8f, + 0xa7, 0x27, 0xb3, 0x51, 0x3f, 0xfd, 0x99, 0x79, 0x57, 0xca, 0xf6, 0x4f, 0x3f, 0xcc, 0x7e, 0x5f, + 0x7f, 0x7a, 0x3a, 0x3b, 0xfd, 0xa7, 0xcc, 0x53, 0x1f, 0x4e, 0x7f, 0x3d, 0x3d, 0x9d, 0x85, 0xd7, + 0x74, 0x75, 0x52, 0x4d, 0x07, 0x0f, 0x12, 0x1e, 0xe4, 0x3e, 0x3d, 0xc8, 0x24, 0xbb, 0x4d, 0xbb, + 0xa3, 0x4b, 0x5b, 0x9c, 0xa6, 0x23, 0x81, 0xe5, 0x84, 0x5d, 0x86, 0xc8, 0xeb, 0x1b, 0x5b, 0xbd, + 0xb6, 0xf5, 0x1e, 0xf1, 0xfa, 0xc5, 0xae, 0x2e, 0x65, 0xcd, 0x32, 0x8c, 0xb6, 0xdf, 0x6d, 0x9a, + 0x3b, 0x3a, 0x28, 0x4d, 0x45, 0x74, 0xfe, 0xc3, 0x1b, 0xb6, 0x64, 0xbb, 0x17, 0xb8, 0x13, 0xa4, + 0x87, 0x01, 0xe5, 0x4b, 0x20, 0xdc, 0xec, 0xb4, 0x3b, 0xdb, 0x6e, 0x57, 0xc3, 0x2a, 0x09, 0x61, + 0xa4, 0x2d, 0x2c, 0xf8, 0x6b, 0x90, 0xf4, 0xe8, 0xe5, 0x89, 0xd8, 0x71, 0x97, 0xff, 0x16, 0xb6, + 0xa1, 0x88, 0x58, 0x03, 0x91, 0x18, 0xb5, 0x5a, 0xdb, 0xc5, 0x0a, 0x89, 0xf6, 0xfe, 0x77, 0xb0, + 0x4a, 0xc4, 0x21, 0x80, 0x26, 0xf3, 0xb9, 0xfd, 0x62, 0x37, 0x2d, 0xce, 0x4c, 0xbb, 0x25, 0x1e, + 0x0a, 0x58, 0x7a, 0x3e, 0x35, 0x21, 0x81, 0xb0, 0x2c, 0x98, 0xca, 0xb8, 0x40, 0x48, 0x16, 0x8d, + 0x5b, 0x70, 0x40, 0x78, 0x4e, 0x8e, 0xe0, 0x5c, 0x9c, 0x10, 0x68, 0x2a, 0x84, 0xce, 0x62, 0xae, + 0xf5, 0xec, 0x30, 0x71, 0x49, 0x1b, 0x3f, 0x17, 0xb6, 0xa9, 0xdd, 0x2c, 0xdd, 0x68, 0xc0, 0x12, + 0x10, 0x4c, 0x08, 0xe6, 0xfe, 0x04, 0xf3, 0xd9, 0xf3, 0x1c, 0x66, 0xb9, 0x32, 0x92, 0x99, 0x8d, + 0x50, 0x32, 0x1d, 0x3b, 0xe0, 0xcc, 0x9d, 0x64, 0xf9, 0xb2, 0x40, 0x5c, 0x46, 0x57, 0x28, 0x40, + 0xec, 0x20, 0x76, 0x7b, 0x13, 0xbb, 0x9e, 0x3b, 0xf0, 0x68, 0x25, 0x84, 0x4e, 0xa0, 0x3a, 0x44, + 0xae, 0x1a, 0x44, 0xa1, 0xe4, 0x50, 0xa9, 0x0e, 0x46, 0xa5, 0xfe, 0x45, 0xad, 0xee, 0x05, 0x23, + 0xb9, 0xd6, 0x13, 0xc2, 0x48, 0x2e, 0x6d, 0xcc, 0x82, 0xd9, 0x35, 0xa8, 0x4b, 0x49, 0xf0, 0xec, + 0x9a, 0x23, 0xbd, 0xdf, 0x23, 0x28, 0x9a, 0x0a, 0x16, 0x8b, 0xb9, 0xbd, 0x0e, 0xf3, 0x47, 0xe1, + 0x65, 0x05, 0x93, 0x55, 0x90, 0x78, 0xb6, 0xea, 0xf6, 0x3a, 0x03, 0xec, 0xa0, 0xed, 0xb6, 0x10, + 0x97, 0x65, 0xc2, 0xb3, 0x55, 0x48, 0x5c, 0x95, 0x0e, 0xe3, 0x56, 0xcb, 0xe2, 0x96, 0x69, 0xf5, + 0xf8, 0x77, 0xe6, 0x72, 0xbb, 0x29, 0x96, 0xff, 0x37, 0x65, 0xce, 0x4d, 0x84, 0xc4, 0xc3, 0x0c, + 0x2f, 0x96, 0x13, 0x20, 0xce, 0x00, 0x87, 0x07, 0x71, 0x86, 0x5d, 0xdf, 0x29, 0x54, 0x8c, 0x28, + 0x53, 0x7c, 0x38, 0x2f, 0x96, 0x95, 0x7c, 0xbe, 0x02, 0xa9, 0x84, 0x54, 0xee, 0x4f, 0x2a, 0xe5, + 0x0a, 0xf7, 0x24, 0x0a, 0xf5, 0x24, 0x0b, 0xf3, 0x12, 0x9a, 0xb1, 0x97, 0x41, 0xc6, 0x9e, 0xe8, + 0x96, 0x29, 0x14, 0xc2, 0xc5, 0x3a, 0x67, 0x2f, 0x42, 0xdb, 0xc5, 0x7d, 0xcb, 0x0d, 0x86, 0x12, + 0x1d, 0xb0, 0x66, 0xcf, 0xb7, 0xf9, 0x9b, 0xb8, 0x25, 0x5b, 0x43, 0x03, 0xb7, 0x5a, 0xb0, 0x6b, + 0x40, 0x9b, 0xe2, 0x12, 0x1b, 0xcb, 0xec, 0xbd, 0xb9, 0xf4, 0xb2, 0x50, 0x3d, 0x1d, 0x51, 0xfb, + 0x84, 0x14, 0x28, 0x7a, 0xee, 0x46, 0x0a, 0x14, 0x6c, 0xd2, 0xc1, 0xd9, 0x24, 0xa4, 0x40, 0x01, + 0x2c, 0x42, 0x30, 0x01, 0x16, 0x65, 0x25, 0x13, 0x29, 0x50, 0x10, 0x3b, 0xa4, 0x40, 0x21, 0x05, + 0x8a, 0x72, 0xa5, 0xf2, 0x2b, 0x5e, 0xb3, 0x72, 0xa4, 0x40, 0x21, 0x05, 0x2a, 0x3c, 0xb3, 0x20, + 0x05, 0x0a, 0x29, 0x50, 0x48, 0x81, 0x22, 0x12, 0x4d, 0xa4, 0x40, 0xc9, 0x6f, 0x39, 0x52, 0xa0, + 0xc8, 0x5d, 0x15, 0xa4, 0x40, 0xc1, 0xe1, 0x81, 0xc3, 0x93, 0xd0, 0x38, 0x03, 0x52, 0xa0, 0x20, + 0x95, 0x07, 0x24, 0x95, 0x48, 0x81, 0x52, 0x91, 0xb2, 0x95, 0xc7, 0x91, 0x02, 0x25, 0xbd, 0x65, + 0x48, 0x81, 0x52, 0xb6, 0x5d, 0x48, 0x81, 0x82, 0x5d, 0x83, 0x5d, 0x43, 0x0a, 0x54, 0xd8, 0x14, + 0xa8, 0x04, 0x37, 0x32, 0xdb, 0xdd, 0x28, 0xec, 0x78, 0x63, 0x43, 0xb3, 0xcf, 0x7e, 0xb7, 0xb9, + 0xad, 0xc5, 0x77, 0xb8, 0xbe, 0x66, 0x8e, 0xdd, 0x64, 0x6e, 0xc0, 0x76, 0xf7, 0x34, 0x9b, 0x7c, + 0x30, 0x1e, 0xfd, 0xcc, 0xb6, 0xbf, 0xcd, 0x71, 0xac, 0xdb, 0x99, 0x4d, 0xde, 0x3d, 0xaa, 0x6e, + 0x66, 0xe3, 0xef, 0x0b, 0xc2, 0xe7, 0xf2, 0x4d, 0x9f, 0x48, 0x46, 0x47, 0xb3, 0xdd, 0xcc, 0x20, + 0x6b, 0xd3, 0xf6, 0x9f, 0xcd, 0xb7, 0x93, 0x59, 0x68, 0xf4, 0x74, 0xe8, 0x64, 0xbe, 0x5d, 0xfa, + 0x42, 0x52, 0x7f, 0x48, 0xb2, 0xd6, 0xde, 0xf0, 0x94, 0xd8, 0x6a, 0xd2, 0x05, 0xa7, 0x42, 0xb3, + 0xa4, 0x1e, 0x34, 0x25, 0x3a, 0x65, 0x3b, 0x6c, 0x37, 0xc7, 0x8d, 0xc7, 0x1d, 0xaa, 0xbb, 0xa3, + 0x22, 0x03, 0x4b, 0x33, 0xb2, 0x0a, 0x43, 0xd3, 0x30, 0xb6, 0x2a, 0x83, 0x93, 0x31, 0x3a, 0x19, + 0xc3, 0x93, 0x31, 0xbe, 0xa4, 0x57, 0x1e, 0xd9, 0xd8, 0xf9, 0x26, 0xb7, 0x5f, 0x19, 0xc1, 0xd4, + 0xf9, 0x11, 0x1d, 0xf5, 0xc1, 0x9d, 0x22, 0xf7, 0x3b, 0xd4, 0x01, 0x9c, 0xb8, 0xcd, 0xee, 0x94, + 0x17, 0x44, 0x2a, 0x81, 0x24, 0x17, 0x4c, 0x72, 0x01, 0x25, 0x17, 0x54, 0x39, 0x81, 0x55, 0x88, + 0x59, 0x1e, 0xd3, 0xce, 0xf0, 0x14, 0x8f, 0x17, 0x28, 0xc6, 0x0f, 0xd4, 0x37, 0x4e, 0x26, 0xd0, + 0x3b, 0x3e, 0x5f, 0xb3, 0x65, 0x71, 0x4b, 0x5d, 0x7d, 0x2d, 0x50, 0x83, 0xf2, 0x81, 0xf2, 0x81, + 0xf2, 0x91, 0xe2, 0x1b, 0xd1, 0x5c, 0xe0, 0x8d, 0xaa, 0xa7, 0xa2, 0x40, 0x43, 0x29, 0x83, 0x76, + 0xf2, 0x87, 0x60, 0x74, 0xf0, 0x54, 0x23, 0xdb, 0xae, 0xe5, 0xbf, 0x19, 0x04, 0x93, 0x70, 0xc7, + 0xbb, 0x53, 0x51, 0x9b, 0xe6, 0xfa, 0x2e, 0x2e, 0x1b, 0x23, 0x5c, 0x49, 0xb5, 0x93, 0x6d, 0x2e, + 0x30, 0x97, 0x7f, 0xa3, 0xa5, 0x14, 0xa8, 0xbb, 0xdc, 0x69, 0x27, 0x43, 0xd7, 0x60, 0xc2, 0x4a, + 0xc2, 0x4a, 0xc2, 0x4a, 0x52, 0xeb, 0x3d, 0x45, 0x7d, 0x77, 0xa8, 0xf3, 0xb5, 0xc7, 0x0c, 0x37, + 0xf9, 0x3b, 0x98, 0xfe, 0x22, 0x4c, 0x07, 0x05, 0xf9, 0x2d, 0x11, 0xd8, 0x0e, 0x15, 0x65, 0xad, + 0xae, 0xa4, 0x25, 0x95, 0x33, 0x02, 0x96, 0x08, 0x58, 0x8a, 0x8a, 0xbc, 0xb4, 0x32, 0x9d, 0x71, + 0x39, 0xb3, 0x5e, 0x7c, 0xf6, 0xa2, 0x52, 0xeb, 0x50, 0x96, 0x78, 0xf6, 0x7e, 0xac, 0x65, 0xce, + 0xce, 0xc6, 0x5a, 0xe3, 0x7c, 0x4e, 0xdc, 0x62, 0xa0, 0x40, 0xc2, 0xb5, 0x6c, 0xd9, 0x62, 0x9a, + 0x76, 0xb7, 0x70, 0xd9, 0xb8, 0x9f, 0xb2, 0x6a, 0x23, 0x07, 0xb5, 0x01, 0xb5, 0x11, 0xea, 0x2d, + 0x71, 0xcf, 0x01, 0x27, 0x0a, 0x4e, 0x14, 0x9c, 0xa8, 0xc3, 0xb9, 0xe7, 0x68, 0xb1, 0xa0, 0xe9, + 0xdb, 0x5d, 0x69, 0xe7, 0x68, 0x61, 0xcf, 0xe6, 0x89, 0x41, 0xf5, 0x40, 0xf5, 0x40, 0xf5, 0x1c, + 0x4a, 0xfc, 0x46, 0x42, 0xf3, 0xb0, 0x1f, 0x5d, 0x7b, 0x54, 0x4f, 0x6e, 0xb6, 0x64, 0x7c, 0x8a, + 0x95, 0x6d, 0x5b, 0x26, 0x08, 0x0d, 0x04, 0x0d, 0x04, 0x0d, 0x24, 0xc5, 0x37, 0x3d, 0xdb, 0xe5, + 0xa5, 0x02, 0x81, 0x06, 0x52, 0x69, 0xb8, 0x22, 0x57, 0x07, 0xb9, 0xfc, 0x87, 0xe0, 0x3e, 0x51, + 0xa5, 0x4e, 0x92, 0x58, 0xbd, 0xac, 0x90, 0x53, 0xac, 0xa3, 0x5c, 0xa1, 0x47, 0x50, 0x20, 0x48, + 0xc4, 0xce, 0x8b, 0x47, 0x60, 0xfd, 0x88, 0xfd, 0x11, 0x64, 0x2f, 0x0a, 0x85, 0x52, 0xb9, 0x50, + 0xc8, 0x94, 0xf3, 0xe5, 0x4c, 0xa5, 0x58, 0xcc, 0x96, 0xb2, 0xc5, 0x18, 0x9f, 0x0a, 0xae, 0xb2, + 0xd7, 0x43, 0x12, 0xd6, 0x22, 0x82, 0x22, 0x0c, 0x97, 0xd8, 0x80, 0x20, 0x80, 0x20, 0x88, 0xbf, + 0x6c, 0x7b, 0x47, 0xdb, 0x35, 0x7b, 0x01, 0x81, 0xf3, 0x33, 0xa6, 0x03, 0x85, 0x03, 0x85, 0x03, + 0x85, 0x03, 0x85, 0xb3, 0x45, 0xe1, 0x04, 0x41, 0x8f, 0x11, 0x45, 0x5c, 0xe6, 0x68, 0x41, 0xf1, + 0x40, 0xf1, 0x40, 0xf1, 0x20, 0xd8, 0x82, 0x60, 0x0b, 0x82, 0x2d, 0x08, 0xb6, 0x20, 0xd8, 0xb2, + 0x7b, 0x9b, 0x51, 0x61, 0x07, 0x30, 0x02, 0x30, 0x12, 0x3b, 0x30, 0x82, 0x0a, 0xbb, 0x35, 0xae, + 0x21, 0x2a, 0xec, 0xd6, 0x6f, 0x0c, 0x2a, 0xec, 0xa2, 0xb4, 0x94, 0xa8, 0xb0, 0x83, 0x95, 0x84, + 0x95, 0x44, 0x86, 0x56, 0x54, 0x7a, 0xe7, 0xd5, 0x72, 0x28, 0x54, 0xce, 0x88, 0x0c, 0xb4, 0x0d, + 0xb4, 0x0d, 0xb4, 0x8d, 0x1c, 0xfc, 0x4c, 0xe0, 0xcd, 0x44, 0xba, 0x0b, 0x7a, 0x43, 0xf4, 0x03, + 0x96, 0xdf, 0x11, 0xda, 0x5e, 0x86, 0xff, 0x66, 0x6f, 0x52, 0xb8, 0xef, 0x40, 0xe6, 0x18, 0x85, + 0x6d, 0x99, 0x2a, 0xc7, 0x71, 0xca, 0x9c, 0x66, 0x08, 0x95, 0x66, 0xae, 0x69, 0xe1, 0x7c, 0x3d, + 0xa2, 0x33, 0xf9, 0xdb, 0x48, 0x75, 0xcb, 0xee, 0xe5, 0x5d, 0x4c, 0x66, 0xc7, 0xee, 0x10, 0x8d, + 0xa7, 0xb7, 0x1d, 0xb5, 0x52, 0xab, 0x6e, 0xaf, 0xdd, 0x1e, 0x00, 0xdb, 0xdd, 0xad, 0xba, 0xc7, + 0x1f, 0x8c, 0x49, 0xab, 0x6e, 0xaf, 0x9d, 0xcc, 0x36, 0xdd, 0x5e, 0x3b, 0xb2, 0x16, 0xdd, 0x4d, + 0xcf, 0x0d, 0xbc, 0x10, 0x13, 0xdb, 0xe7, 0x7b, 0xd2, 0x0e, 0x1f, 0x48, 0x48, 0x83, 0x6e, 0xaf, + 0x9d, 0xce, 0xe6, 0xdc, 0x5e, 0x3b, 0x36, 0x8d, 0xb9, 0x05, 0xbb, 0x1c, 0xcb, 0x75, 0x37, 0x8e, + 0x7d, 0x5b, 0x6e, 0xaf, 0x7d, 0x98, 0x2d, 0xb9, 0xbd, 0xf6, 0xbe, 0xda, 0x71, 0x6b, 0x07, 0x5f, + 0x23, 0x63, 0x76, 0x3e, 0xd6, 0x78, 0x42, 0xed, 0x7a, 0x68, 0xe6, 0x11, 0x05, 0xcc, 0x61, 0x4d, + 0xee, 0xf9, 0x12, 0xc3, 0xfa, 0x67, 0x8f, 0x42, 0xbe, 0x20, 0x5f, 0x52, 0xf2, 0x25, 0xdc, 0xee, + 0x7e, 0xc2, 0x73, 0x0a, 0x7d, 0x60, 0x26, 0x14, 0x0e, 0xa4, 0xe5, 0xbd, 0xd7, 0x46, 0x1b, 0x18, + 0x55, 0xa6, 0x8f, 0x26, 0xb6, 0x24, 0xdd, 0x02, 0x46, 0x72, 0x06, 0x84, 0x1a, 0x5a, 0x22, 0x12, + 0x90, 0xf8, 0xc6, 0xcb, 0xbd, 0x36, 0x62, 0xe5, 0x51, 0x09, 0xd6, 0x7e, 0xe2, 0xe4, 0xb2, 0x02, + 0x37, 0x25, 0xf0, 0x62, 0x35, 0x6d, 0x47, 0x64, 0x84, 0xe3, 0x4e, 0xc6, 0x9b, 0x52, 0x54, 0x3c, + 0x14, 0x9a, 0xdc, 0x47, 0x65, 0xa1, 0xa4, 0x14, 0x4e, 0x7a, 0x21, 0xa5, 0x16, 0x56, 0x6d, 0x42, + 0xab, 0x4d, 0x78, 0xb5, 0x08, 0xb1, 0x9a, 0x30, 0x2b, 0x0a, 0xf5, 0x74, 0x45, 0xca, 0x97, 0x60, + 0x2b, 0xfc, 0x66, 0xb7, 0x98, 0xcb, 0x6d, 0xfe, 0x26, 0xd7, 0x9b, 0x71, 0xa3, 0xbd, 0x24, 0x48, + 0x1e, 0x36, 0xbe, 0x8c, 0x5f, 0xed, 0xa3, 0x15, 0x10, 0xb2, 0xf1, 0x64, 0xe1, 0x8f, 0x7f, 0x3c, + 0x5e, 0xdf, 0x7d, 0x6e, 0xfc, 0x76, 0x79, 0xf5, 0xe5, 0xfa, 0x4b, 0xed, 0x0f, 0x83, 0x32, 0xa1, + 0x3a, 0x50, 0xce, 0xb6, 0x9b, 0xff, 0xf3, 0x93, 0x8c, 0xd2, 0xc2, 0x06, 0x5c, 0xdf, 0x5d, 0x5d, + 0x5e, 0x97, 0x0c, 0x32, 0xe2, 0xfd, 0x77, 0x71, 0x5f, 0xf1, 0xe5, 0xd7, 0x4f, 0x5f, 0x6a, 0x87, + 0xb4, 0xe0, 0xe1, 0x11, 0x67, 0x0f, 0x69, 0xc5, 0xb7, 0xb5, 0xfb, 0x83, 0x3b, 0xe0, 0xf2, 0x21, + 0xad, 0xf8, 0xf1, 0x8f, 0xc7, 0x5a, 0xf5, 0xa6, 0xf1, 0xe9, 0xb2, 0x7a, 0x73, 0x77, 0x7b, 0x48, + 0x0b, 0xbf, 0xba, 0xbb, 0x7d, 0xbc, 0xbb, 0xae, 0x1e, 0x96, 0xbe, 0xae, 0xfd, 0x7e, 0xff, 0xf0, + 0xe5, 0x3f, 0x07, 0x27, 0xd1, 0xb9, 0x03, 0x93, 0xe8, 0xeb, 0xbb, 0xcf, 0x07, 0x77, 0xc6, 0x85, + 0x43, 0x5a, 0xf1, 0xbf, 0xab, 0x0f, 0xb7, 0xd5, 0xeb, 0x83, 0x3b, 0xe3, 0xe2, 0xc1, 0xad, 0x38, + 0x7f, 0x68, 0xf6, 0xe9, 0xe0, 0x4e, 0x38, 0x73, 0x48, 0x2b, 0xfe, 0xfa, 0x58, 0x7d, 0x38, 0xa4, + 0xf5, 0xde, 0x5c, 0x7e, 0x39, 0x28, 0x2d, 0x7d, 0x79, 0x4d, 0xb9, 0x5c, 0x12, 0x4a, 0xf5, 0xc4, + 0x56, 0xc7, 0x2b, 0x1c, 0xb7, 0x11, 0xb0, 0x57, 0xe6, 0x93, 0x5e, 0x3a, 0x4c, 0x29, 0xe2, 0xd2, + 0x61, 0xe7, 0x5e, 0xe1, 0xd2, 0x01, 0x97, 0x0e, 0x9b, 0x57, 0x44, 0x7f, 0xe9, 0x10, 0xbc, 0x05, + 0x8e, 0xd7, 0x36, 0x89, 0x44, 0x74, 0x5e, 0x4c, 0xb3, 0x05, 0x02, 0x5a, 0x55, 0xb7, 0xd7, 0x19, + 0x2c, 0x78, 0x6f, 0x8a, 0x34, 0xd2, 0x0b, 0x63, 0xc5, 0xea, 0x9f, 0x99, 0x0a, 0x97, 0x4c, 0x0f, + 0x9c, 0x66, 0xdc, 0x4d, 0x7f, 0x92, 0x1a, 0xf0, 0x27, 0xbf, 0x79, 0x32, 0xb5, 0x9c, 0xca, 0x97, + 0xe4, 0x54, 0x97, 0xe3, 0xa9, 0xab, 0xe8, 0x44, 0x86, 0x4a, 0xf4, 0x76, 0x26, 0xa9, 0x95, 0x9c, + 0xf2, 0x43, 0x05, 0x57, 0xec, 0x46, 0x59, 0x81, 0xc6, 0xea, 0x90, 0xc1, 0xa9, 0x50, 0xc7, 0x58, + 0x85, 0x29, 0x43, 0x6e, 0x2a, 0xa8, 0x0d, 0x15, 0x06, 0x15, 0x06, 0x15, 0x16, 0x37, 0x15, 0x36, + 0x15, 0xea, 0x38, 0xab, 0x30, 0x4e, 0xd2, 0x77, 0x57, 0x66, 0x8a, 0xea, 0xca, 0xee, 0xab, 0x2a, + 0xaf, 0x1c, 0x94, 0x17, 0x94, 0x57, 0x24, 0xca, 0x0b, 0x19, 0xc2, 0x08, 0xd6, 0x21, 0x58, 0x87, + 0x60, 0x5d, 0x48, 0x7e, 0x43, 0x86, 0x30, 0x32, 0x84, 0x69, 0xfe, 0x20, 0x43, 0x38, 0x9e, 0x47, + 0x8c, 0x0c, 0xe1, 0x94, 0x1f, 0x30, 0x32, 0x84, 0x0f, 0x61, 0xe1, 0xc8, 0x10, 0x3e, 0x1c, 0x89, + 0x46, 0x86, 0x70, 0xfa, 0xcf, 0x18, 0x19, 0xc2, 0xe9, 0x3f, 0x63, 0x64, 0x08, 0xa7, 0xde, 0x3e, + 0x21, 0x43, 0x38, 0xcd, 0x2b, 0x46, 0x86, 0x70, 0xca, 0x25, 0x18, 0x19, 0xc2, 0x74, 0x4f, 0x23, + 0x43, 0x78, 0x0b, 0x19, 0x5c, 0x3a, 0xc8, 0xed, 0x3e, 0x2e, 0x1d, 0x90, 0x21, 0x2c, 0x20, 0xa6, + 0xc8, 0x10, 0x16, 0x67, 0xd8, 0xf8, 0x65, 0x08, 0x4b, 0x4c, 0x0c, 0x90, 0xdf, 0x3b, 0xbd, 0x1d, + 0xf2, 0xc6, 0x13, 0x05, 0x26, 0x57, 0xe0, 0xc7, 0x92, 0x3c, 0x2f, 0x37, 0x60, 0x60, 0xfa, 0xb4, + 0xca, 0xa0, 0x81, 0x19, 0x11, 0x85, 0x81, 0x03, 0x53, 0x22, 0x52, 0x83, 0x07, 0x64, 0x37, 0x3f, + 0xb2, 0xd1, 0x17, 0x3b, 0x59, 0xda, 0x90, 0xca, 0x7f, 0x5a, 0xd7, 0xb7, 0x7e, 0xf4, 0x55, 0x8d, + 0xab, 0xd1, 0x57, 0x35, 0x1e, 0x27, 0x5f, 0x90, 0x88, 0xf9, 0x1a, 0x51, 0x37, 0x27, 0x9e, 0xf5, + 0xfb, 0x8d, 0xb2, 0x3f, 0xb1, 0x50, 0xde, 0x9a, 0x54, 0x9e, 0x9a, 0x74, 0x5f, 0xe2, 0x1c, 0xfa, + 0x12, 0x53, 0xa2, 0xc0, 0x03, 0xee, 0xfb, 0x2d, 0x60, 0xa3, 0x13, 0x3b, 0x21, 0x65, 0x71, 0xc9, + 0x46, 0x28, 0xd9, 0xdf, 0xad, 0xb3, 0xa5, 0x07, 0xad, 0x6c, 0x99, 0xda, 0xe1, 0xb3, 0x8e, 0xc7, + 0x99, 0x19, 0x30, 0xff, 0x95, 0x85, 0x68, 0x8c, 0x3e, 0x95, 0xd5, 0xa5, 0xe7, 0x30, 0xbe, 0x02, + 0xe3, 0x2b, 0xd6, 0x30, 0x94, 0xb8, 0x31, 0x5b, 0x7c, 0x1c, 0xcd, 0xf6, 0x61, 0xd4, 0xa4, 0x8c, + 0x9a, 0x70, 0xb3, 0x7d, 0xc9, 0xbe, 0xe2, 0x6a, 0xfd, 0xc4, 0xd1, 0x68, 0x7f, 0x2f, 0x31, 0x3d, + 0x34, 0xda, 0x0f, 0xf1, 0xe0, 0x77, 0x2f, 0xe0, 0xea, 0x35, 0x34, 0x43, 0x2a, 0xa8, 0xff, 0x43, + 0x09, 0xcd, 0x9e, 0x02, 0xe1, 0x49, 0xad, 0xff, 0x53, 0x90, 0x9b, 0x05, 0xc3, 0x52, 0x51, 0xa0, + 0x31, 0x5e, 0x8d, 0x5a, 0x3e, 0x3a, 0x65, 0xc5, 0x41, 0xd7, 0xb4, 0x5a, 0x2d, 0x9f, 0x05, 0x01, + 0x65, 0xdc, 0xbf, 0x42, 0x40, 0x8b, 0x64, 0xa7, 0xe8, 0x76, 0x6c, 0xcd, 0xce, 0xbd, 0x16, 0x08, + 0xf7, 0x6e, 0x65, 0x0f, 0x2f, 0x08, 0x69, 0xde, 0x5b, 0x9c, 0x33, 0xdf, 0x25, 0x2d, 0x84, 0x18, + 0x12, 0xfe, 0xef, 0xc9, 0xc9, 0xb7, 0x8c, 0x59, 0xa9, 0xff, 0xfa, 0x96, 0x35, 0x2b, 0xf5, 0xd1, + 0x8f, 0xd9, 0xe1, 0x5f, 0xa3, 0x9f, 0x73, 0xdf, 0x32, 0x66, 0x61, 0xf2, 0x73, 0xf1, 0x5b, 0xc6, + 0x2c, 0xd6, 0x4f, 0x9f, 0x9e, 0xce, 0x4e, 0x7f, 0xe6, 0xfb, 0xe2, 0x0f, 0xfe, 0x83, 0x2e, 0x3b, + 0xa0, 0x4e, 0x42, 0x89, 0x28, 0xa5, 0x42, 0x0f, 0x73, 0x96, 0xc0, 0x9c, 0x23, 0xe6, 0xb4, 0xcc, + 0x97, 0x4b, 0xf3, 0xb7, 0xfa, 0xcf, 0xec, 0xbb, 0x42, 0xff, 0xfd, 0xe9, 0xcf, 0x72, 0x7f, 0xf9, + 0x97, 0xbf, 0xd6, 0x7d, 0x2c, 0xfb, 0xae, 0xdc, 0x7f, 0xbf, 0xe1, 0x5f, 0x4a, 0xfd, 0xf7, 0x21, + 0x69, 0x14, 0xfb, 0x27, 0x2b, 0x1f, 0x1d, 0xfc, 0x3e, 0xb7, 0xe9, 0x81, 0xc2, 0x86, 0x07, 0xf2, + 0x9b, 0x1e, 0xc8, 0x6f, 0x78, 0x60, 0xe3, 0x2b, 0xe5, 0x36, 0x3c, 0x50, 0xec, 0xff, 0x5a, 0xf9, + 0xfc, 0xc9, 0xfa, 0x8f, 0x96, 0xfa, 0xa7, 0xbf, 0x36, 0xfd, 0x5b, 0xb9, 0xff, 0xeb, 0xfd, 0x69, + 0x0c, 0x45, 0xf5, 0x68, 0xbf, 0xef, 0xa1, 0xa8, 0x2a, 0x08, 0x2d, 0x7e, 0xcb, 0xeb, 0x58, 0xb6, + 0x6b, 0x0e, 0xa3, 0xa2, 0x84, 0x26, 0x9f, 0x40, 0x23, 0x18, 0xd7, 0xcc, 0x6d, 0x0f, 0xc3, 0xc0, + 0xb1, 0x33, 0xfa, 0x37, 0xb6, 0x4b, 0x96, 0x46, 0x43, 0xe4, 0x8b, 0x6d, 0x24, 0x3b, 0x2c, 0x7a, + 0x94, 0x6f, 0x93, 0xb0, 0x91, 0xee, 0x6f, 0xbe, 0xd5, 0xe4, 0xb6, 0xe7, 0x7e, 0xb2, 0xdb, 0xf6, + 0xf0, 0xd2, 0x39, 0x13, 0xc7, 0xdc, 0x44, 0xe3, 0xc6, 0xfa, 0x91, 0xb8, 0xa3, 0xca, 0x15, 0xf3, + 0x09, 0x3a, 0xac, 0xb8, 0x28, 0x64, 0x02, 0x8d, 0x43, 0x8d, 0x3d, 0x8c, 0x93, 0x93, 0x93, 0x6f, + 0x96, 0xf9, 0xf7, 0xa5, 0xf9, 0x67, 0xc6, 0xac, 0x34, 0xea, 0x73, 0xff, 0xf1, 0xf4, 0x64, 0x36, + 0xea, 0xa7, 0x3f, 0x33, 0xef, 0x4a, 0xd9, 0xfe, 0xe9, 0x87, 0xd9, 0xef, 0xeb, 0x03, 0x3c, 0xfc, + 0x4f, 0x99, 0xa7, 0x3e, 0x9c, 0xfe, 0x7a, 0x7a, 0x3a, 0x33, 0xf6, 0x6d, 0xd9, 0x8e, 0xa2, 0xfd, + 0xde, 0x68, 0xda, 0xdd, 0x8c, 0xaf, 0x4c, 0xba, 0x9e, 0x4f, 0x10, 0xb0, 0x9b, 0x27, 0x26, 0xdb, + 0x48, 0x84, 0xbd, 0x58, 0x3d, 0x67, 0x18, 0xbe, 0x29, 0x66, 0x0b, 0x88, 0xfe, 0x21, 0xfa, 0x87, + 0xe8, 0x9f, 0x18, 0xbf, 0x0c, 0xa4, 0xcf, 0x74, 0x7b, 0x9d, 0x67, 0xe6, 0x13, 0x04, 0x01, 0x4b, + 0x0a, 0x24, 0x1e, 0x2c, 0xb7, 0x1d, 0x8b, 0x20, 0x20, 0x25, 0xaa, 0x25, 0x86, 0x48, 0x53, 0x68, + 0x44, 0x45, 0x4f, 0x03, 0x20, 0x22, 0x40, 0xad, 0xa4, 0x68, 0x55, 0xd7, 0x11, 0x94, 0x8a, 0xc5, + 0x7c, 0x31, 0xc6, 0xc7, 0x00, 0xf8, 0xb2, 0xb2, 0xcd, 0xc1, 0xd0, 0xb4, 0x4d, 0x23, 0x80, 0xea, + 0x6d, 0xfb, 0x16, 0xe9, 0x01, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x08, 0xf1, 0x0b, 0xc9, 0x45, 0x5b, + 0x4a, 0xaf, 0x20, 0x49, 0x2f, 0xd2, 0x48, 0x23, 0x92, 0xe4, 0xf1, 0x81, 0xa4, 0x5d, 0x98, 0xa5, + 0x25, 0xea, 0x4d, 0x7c, 0x21, 0x96, 0x08, 0x26, 0xc3, 0xc5, 0x57, 0x22, 0x2f, 0xbe, 0x52, 0x1f, + 0x8e, 0x4b, 0x55, 0x95, 0xd9, 0x62, 0xce, 0xfe, 0xe2, 0x7f, 0x4a, 0x0d, 0x57, 0x11, 0xa8, 0x06, + 0x13, 0xc8, 0x7f, 0x96, 0xca, 0x3c, 0x54, 0xc9, 0x9c, 0x92, 0x04, 0xfb, 0x48, 0xc3, 0x45, 0x1a, + 0xae, 0x76, 0x70, 0x4e, 0x30, 0x11, 0x40, 0x65, 0x12, 0xc0, 0x9a, 0x09, 0x00, 0x43, 0x01, 0x8b, + 0x81, 0x9a, 0x98, 0x95, 0x68, 0x4a, 0xeb, 0x8a, 0x19, 0x09, 0xe4, 0xed, 0x43, 0x61, 0xc4, 0x4a, + 0x61, 0x48, 0xe7, 0xed, 0x4f, 0x0b, 0xc7, 0x09, 0xe6, 0xf7, 0x48, 0x97, 0xa0, 0x1f, 0x53, 0x8e, + 0xc0, 0x40, 0x08, 0x0d, 0x21, 0xb4, 0x68, 0x42, 0x68, 0xca, 0x23, 0x30, 0x24, 0xab, 0xc8, 0x36, + 0xb2, 0x9d, 0x54, 0x55, 0x19, 0xb1, 0x20, 0x92, 0x09, 0x24, 0xa5, 0x60, 0xd2, 0x0b, 0x28, 0xb5, + 0xa0, 0x6a, 0x13, 0x58, 0x6d, 0x82, 0xab, 0x45, 0x80, 0xd5, 0x7d, 0x7d, 0x82, 0xe0, 0x9c, 0xb2, + 0x60, 0x4f, 0x09, 0x91, 0xcd, 0xb8, 0x59, 0x61, 0x60, 0xa2, 0x59, 0x37, 0x8a, 0x3e, 0xad, 0x76, + 0xe1, 0xd7, 0xa1, 0x04, 0xf4, 0x29, 0x03, 0x5d, 0x4a, 0x41, 0xbb, 0x72, 0xd0, 0xae, 0x24, 0xb4, + 0x2a, 0x0b, 0x1a, 0xa5, 0x41, 0xa4, 0x3c, 0xd4, 0x7d, 0xf8, 0x9d, 0xfc, 0x4a, 0x3b, 0x4b, 0x67, + 0xc5, 0xee, 0x17, 0x09, 0x69, 0x6a, 0x99, 0xad, 0xb3, 0xb2, 0x21, 0x7a, 0x66, 0xec, 0x4c, 0xbf, + 0x46, 0xc3, 0xac, 0x9d, 0xc9, 0x9f, 0x9f, 0xe4, 0x14, 0x8f, 0x75, 0xce, 0xde, 0x21, 0x96, 0x91, + 0x08, 0x77, 0x82, 0x78, 0x26, 0x4f, 0x72, 0x37, 0x82, 0x7a, 0x56, 0x4f, 0x72, 0x77, 0x82, 0x74, + 0x86, 0x4f, 0xc2, 0x19, 0xa2, 0x8c, 0x9d, 0xd0, 0x36, 0xf3, 0x27, 0xb9, 0x1b, 0x42, 0x3e, 0x0b, + 0x28, 0xc9, 0xf6, 0x83, 0x7a, 0x46, 0x50, 0xc2, 0x35, 0x46, 0x0e, 0x3b, 0x41, 0x3f, 0x53, 0x28, + 0xe1, 0x3c, 0x51, 0xc0, 0x4e, 0xd0, 0xcf, 0x20, 0x4a, 0x38, 0x4f, 0x14, 0xb1, 0x13, 0xf4, 0x33, + 0x8b, 0x92, 0x6d, 0x47, 0xb1, 0x0f, 0xf4, 0x33, 0x8e, 0x92, 0xbb, 0x13, 0xb4, 0xb3, 0x8f, 0x92, + 0xbb, 0x0f, 0xb4, 0x33, 0x91, 0x12, 0xac, 0x21, 0xae, 0x75, 0x6c, 0x03, 0x29, 0xc5, 0x7a, 0xea, + 0x3a, 0x0e, 0x50, 0x14, 0xfc, 0x91, 0xcd, 0x56, 0x5a, 0x61, 0x09, 0xc2, 0x01, 0x2e, 0xc7, 0xb8, + 0xec, 0xc2, 0x65, 0xd7, 0xf8, 0x0b, 0x70, 0xd9, 0x95, 0x80, 0xcb, 0x2e, 0xfa, 0x19, 0x4e, 0xcb, + 0x6a, 0x80, 0x62, 0x96, 0xd3, 0x94, 0x26, 0xcd, 0x4c, 0x27, 0x42, 0xc5, 0xbe, 0xd7, 0x44, 0x0a, + 0xa2, 0x99, 0x4f, 0x33, 0x13, 0x43, 0x59, 0xc2, 0xb0, 0x66, 0x20, 0x94, 0x4c, 0x55, 0x03, 0xdd, + 0x8e, 0xab, 0x0c, 0x36, 0x24, 0xcb, 0x34, 0xa1, 0xce, 0x30, 0xc1, 0x60, 0xc3, 0x7d, 0x1a, 0x53, + 0xa4, 0x93, 0xc5, 0x40, 0x0b, 0xd2, 0x0f, 0x36, 0x94, 0xaf, 0xee, 0xd8, 0x68, 0x04, 0xcb, 0x34, + 0xe5, 0x9e, 0x4b, 0xd5, 0x1f, 0x53, 0x25, 0x82, 0x59, 0xb1, 0x98, 0x15, 0x0b, 0x95, 0x0a, 0x95, + 0x0a, 0x95, 0xaa, 0xaa, 0x52, 0xa7, 0x4a, 0x24, 0x89, 0x2a, 0x55, 0x68, 0x64, 0xe1, 0x6e, 0x7d, + 0x2a, 0x30, 0xca, 0x70, 0xe7, 0x69, 0x51, 0x29, 0xd3, 0x1c, 0x94, 0x29, 0x94, 0x69, 0xa2, 0x94, + 0x29, 0xca, 0x1d, 0x54, 0xc9, 0x21, 0x02, 0x8c, 0x08, 0x70, 0x64, 0xca, 0x82, 0x2e, 0x38, 0x78, + 0x8c, 0x72, 0x07, 0x94, 0x3b, 0xac, 0x7c, 0x0d, 0xca, 0x1d, 0x34, 0xc9, 0x48, 0x84, 0x3b, 0x81, + 0x72, 0x07, 0x94, 0x3b, 0x2c, 0xed, 0x04, 0xca, 0x1d, 0x50, 0xee, 0x70, 0x8c, 0x72, 0x87, 0x2d, + 0x1b, 0x82, 0x72, 0x07, 0x94, 0x3b, 0x6c, 0xd2, 0x18, 0x28, 0x77, 0x40, 0xb9, 0x03, 0xca, 0x1d, + 0xd6, 0xec, 0x04, 0xca, 0x1d, 0x50, 0xee, 0xb0, 0x76, 0x27, 0x50, 0xee, 0x80, 0x72, 0x07, 0x94, + 0x3b, 0xac, 0xec, 0x04, 0xca, 0x1d, 0x50, 0xee, 0x80, 0x72, 0x87, 0x3d, 0x53, 0x41, 0xb9, 0x83, + 0x02, 0x39, 0x5c, 0x76, 0xe1, 0xb2, 0x6b, 0xed, 0x17, 0xe0, 0xb2, 0x8b, 0x40, 0xf6, 0x51, 0xee, + 0xb0, 0x3f, 0x0a, 0x87, 0x56, 0xee, 0x30, 0xca, 0x9f, 0xda, 0x57, 0x1e, 0x59, 0xa4, 0xbd, 0x7a, + 0xff, 0xcd, 0xde, 0xe6, 0xf3, 0x48, 0x8e, 0x15, 0x05, 0xcc, 0xb8, 0xb6, 0x03, 0x7e, 0xc9, 0xb9, + 0x62, 0x03, 0xe0, 0x1b, 0xdb, 0xad, 0x3a, 0x6c, 0xa0, 0x33, 0x03, 0xe3, 0xfd, 0xb1, 0xdb, 0x73, + 0x1c, 0x85, 0xe4, 0xba, 0x1b, 0xeb, 0x07, 0x1d, 0xb1, 0x3b, 0xbf, 0xc5, 0x7c, 0xd6, 0xfa, 0xf8, + 0x36, 0x26, 0x15, 0xe9, 0x61, 0x11, 0xc9, 0x91, 0x6e, 0xf9, 0x31, 0x94, 0x32, 0x21, 0xfd, 0x5e, + 0x93, 0xbb, 0x93, 0xc0, 0xea, 0xf0, 0x3d, 0x1a, 0xd7, 0xa3, 0xf7, 0x68, 0x3c, 0x0c, 0xbf, 0xf8, + 0x71, 0xf8, 0xbd, 0x8d, 0xc7, 0xc9, 0xb7, 0x61, 0x88, 0x8d, 0xb6, 0x23, 0x8d, 0xc5, 0x80, 0x0a, + 0xa9, 0xdc, 0x58, 0xa5, 0x5c, 0x58, 0xe5, 0xc1, 0x14, 0x39, 0x0c, 0xa6, 0xd8, 0x27, 0x12, 0x4f, + 0xf3, 0x60, 0x0a, 0xa9, 0xb1, 0x4e, 0x2b, 0xcc, 0x22, 0x31, 0xde, 0x89, 0xc8, 0x6d, 0xc6, 0x40, + 0x8a, 0x68, 0xdc, 0x5c, 0x0c, 0xa4, 0x20, 0x74, 0x4b, 0x29, 0xe4, 0xe6, 0x38, 0xbd, 0xd3, 0x5c, + 0x75, 0x8c, 0xd9, 0xac, 0x10, 0xd0, 0x22, 0xd9, 0x29, 0xba, 0x1d, 0x5b, 0xb3, 0x73, 0xa4, 0x73, + 0x70, 0x57, 0xf6, 0xf0, 0x82, 0x90, 0x26, 0xf5, 0xc8, 0xd2, 0x29, 0xe1, 0xa4, 0xcd, 0xc7, 0x9d, + 0xfc, 0xa9, 0xc7, 0x29, 0xf2, 0xa6, 0x87, 0x39, 0x4b, 0x60, 0x4e, 0xcc, 0xd5, 0x4d, 0xf0, 0x5c, + 0x5d, 0x62, 0x51, 0xc5, 0x68, 0xed, 0xb1, 0x6a, 0x68, 0x79, 0x1d, 0xcb, 0x76, 0xcd, 0x61, 0x94, + 0x26, 0x66, 0x93, 0xb5, 0xaf, 0x99, 0xdb, 0x1e, 0xc6, 0x40, 0x62, 0x67, 0xf4, 0x6f, 0x6c, 0x57, + 0xc3, 0xe5, 0x18, 0xe9, 0x15, 0xe6, 0x94, 0xec, 0xb0, 0xd4, 0x45, 0xbd, 0xf8, 0x77, 0x85, 0xee, + 0x6f, 0xbe, 0xd5, 0xe4, 0xb6, 0xe7, 0x7e, 0xb2, 0xdb, 0xf6, 0x30, 0x1a, 0x9b, 0xa1, 0xbb, 0x08, + 0x23, 0x34, 0x27, 0x37, 0xd6, 0x8f, 0xc4, 0x1d, 0x55, 0xae, 0x98, 0x4f, 0xd0, 0x61, 0xc5, 0x45, + 0x21, 0xc7, 0x71, 0x96, 0xff, 0xc9, 0xc9, 0xc9, 0x37, 0xcb, 0xfc, 0xfb, 0xd2, 0xfc, 0x33, 0x63, + 0x56, 0x1a, 0xf5, 0xb9, 0xff, 0x78, 0x7a, 0x32, 0x1b, 0xf5, 0xd3, 0x9f, 0x99, 0x77, 0xa5, 0x6c, + 0xff, 0xf4, 0xc3, 0xec, 0xf7, 0xf5, 0x01, 0x1e, 0xfe, 0xa7, 0xcc, 0x53, 0x1f, 0x4e, 0x7f, 0x3d, + 0x3d, 0x9d, 0x61, 0x82, 0xbd, 0x06, 0xed, 0x62, 0x8c, 0x63, 0xea, 0x5d, 0xcf, 0x27, 0x08, 0xd8, + 0xcd, 0x13, 0x93, 0x1d, 0xcb, 0xc9, 0x5e, 0xac, 0x9e, 0x33, 0x0c, 0xdf, 0x14, 0xb3, 0x05, 0x44, + 0xff, 0x10, 0xfd, 0x43, 0xf4, 0x4f, 0x8c, 0x5f, 0x06, 0xd2, 0x67, 0xba, 0xbd, 0xce, 0x33, 0xf3, + 0x09, 0x82, 0x80, 0x25, 0x05, 0x12, 0x0f, 0x96, 0xdb, 0x8e, 0x45, 0x10, 0x90, 0x12, 0xd5, 0x52, + 0x27, 0xe4, 0x4d, 0xa0, 0x11, 0x15, 0x3d, 0x0d, 0x80, 0x88, 0x22, 0xe1, 0x92, 0x12, 0xad, 0xea, + 0x3a, 0x82, 0x52, 0xb1, 0x98, 0x2f, 0xc6, 0xf8, 0x18, 0x00, 0x5f, 0x56, 0xb6, 0x39, 0x18, 0x9a, + 0xb6, 0x69, 0x04, 0x50, 0x7d, 0x0e, 0xfe, 0x22, 0x3d, 0xc0, 0x0f, 0xc0, 0x0f, 0xc0, 0x0f, 0x21, + 0x7e, 0x21, 0xb9, 0x68, 0x4b, 0xe9, 0x15, 0x24, 0xe9, 0x45, 0x1a, 0x69, 0x44, 0x92, 0x3c, 0x3e, + 0x90, 0xb4, 0x0b, 0xb3, 0xb4, 0x44, 0xbd, 0x89, 0x2f, 0xc4, 0x12, 0xc1, 0x64, 0xb8, 0xf8, 0x4a, + 0xe4, 0xc5, 0x57, 0xea, 0xc3, 0x71, 0x07, 0x94, 0x8b, 0x2b, 0x5e, 0x8b, 0x20, 0x90, 0x87, 0x7b, + 0x44, 0xb8, 0x7f, 0x93, 0x5a, 0x02, 0x81, 0x1c, 0x29, 0xb9, 0x72, 0x01, 0xa5, 0xf2, 0x00, 0xa5, + 0x72, 0x00, 0xb9, 0xf4, 0xff, 0xb0, 0xfb, 0x27, 0xc9, 0x77, 0xa4, 0xfc, 0x66, 0x08, 0x65, 0x66, + 0x87, 0xcc, 0xd5, 0x0f, 0xc7, 0xbe, 0xbb, 0x99, 0x71, 0xfb, 0x27, 0x76, 0x6c, 0xb3, 0xe8, 0xf6, + 0x2a, 0x6e, 0xeb, 0xf6, 0x35, 0x6f, 0x5e, 0xc9, 0xfa, 0x7f, 0xd9, 0xb0, 0xb6, 0xb0, 0x6b, 0x12, + 0x5d, 0xcb, 0x16, 0x2e, 0xd8, 0x7a, 0xea, 0xeb, 0x17, 0xbd, 0xba, 0xa4, 0x35, 0xcb, 0x31, 0x3a, + 0xac, 0xe3, 0xf9, 0x9b, 0xab, 0x86, 0xa7, 0x30, 0x6c, 0xfc, 0xb9, 0x0d, 0x1b, 0xb2, 0x3d, 0x73, + 0x7f, 0xa7, 0xff, 0x1f, 0xc6, 0xbf, 0x9f, 0xf7, 0xdf, 0x83, 0xb7, 0x6d, 0x50, 0x30, 0xac, 0x7f, + 0x2e, 0xec, 0x7f, 0x0b, 0xfb, 0xd7, 0xcb, 0xfe, 0xf3, 0xe0, 0xbd, 0x89, 0x58, 0x70, 0x57, 0x26, + 0xbb, 0xd1, 0x9c, 0xec, 0xf9, 0x8e, 0x4d, 0x98, 0x6c, 0xeb, 0xf8, 0xf3, 0x3b, 0x16, 0x14, 0xae, + 0x44, 0x23, 0x74, 0xc0, 0x47, 0x24, 0xb0, 0x13, 0x9e, 0x01, 0x64, 0x03, 0x35, 0xd2, 0x01, 0x19, + 0xe9, 0xc0, 0x8b, 0x10, 0x83, 0xc4, 0x5b, 0x1f, 0x8f, 0x14, 0x44, 0xa8, 0x99, 0x55, 0x5b, 0xd4, + 0xf0, 0x56, 0x0d, 0x18, 0xa6, 0x22, 0x49, 0xa8, 0x02, 0x49, 0x98, 0x9d, 0x73, 0x60, 0xe7, 0x98, + 0xb1, 0x73, 0xd8, 0x8a, 0x1e, 0xa3, 0xfb, 0xfd, 0x2d, 0xb0, 0x9b, 0x96, 0x13, 0x7e, 0xfb, 0xa6, + 0xf7, 0x8f, 0x93, 0x27, 0xc3, 0x02, 0x72, 0xa1, 0x60, 0xb9, 0x70, 0x70, 0x5c, 0x26, 0x18, 0x2e, + 0xce, 0x6c, 0xaa, 0xc1, 0x6e, 0xe5, 0xe0, 0xb6, 0x72, 0x30, 0x5b, 0x8a, 0x19, 0xf5, 0xb8, 0x68, + 0xc2, 0xc1, 0xe8, 0xe9, 0x79, 0xf5, 0x6c, 0x97, 0x97, 0x44, 0xb2, 0x46, 0x26, 0xdc, 0x27, 0x10, + 0xde, 0x92, 0xbc, 0xd6, 0x96, 0x70, 0xd1, 0x55, 0xae, 0xad, 0x55, 0xef, 0xa0, 0x14, 0xaf, 0xa5, + 0x29, 0xee, 0x3f, 0x65, 0xee, 0x03, 0x55, 0xae, 0x99, 0xa9, 0xb6, 0x2c, 0x7b, 0x51, 0x28, 0x94, + 0xca, 0x85, 0x42, 0xa6, 0x9c, 0x2f, 0x67, 0x2a, 0xc5, 0x62, 0xb6, 0x24, 0xdb, 0xa6, 0x9e, 0x64, + 0x17, 0x35, 0x45, 0x65, 0xea, 0x54, 0xee, 0x72, 0x08, 0x4b, 0xee, 0xb3, 0xa1, 0xbf, 0xda, 0x12, + 0x37, 0x46, 0xd3, 0x27, 0x61, 0x8c, 0x60, 0x8c, 0x60, 0x8c, 0x60, 0x8c, 0x60, 0x8c, 0x60, 0x8c, + 0x12, 0x1a, 0x2b, 0x08, 0x71, 0xc9, 0x12, 0xd7, 0x88, 0xed, 0xd6, 0x70, 0xe8, 0xe6, 0x80, 0xed, + 0xcd, 0xe8, 0x31, 0xa5, 0x78, 0x6d, 0x10, 0x58, 0x6d, 0x16, 0x84, 0x89, 0xd8, 0x8e, 0x3f, 0x19, + 0x8f, 0x98, 0xed, 0x8e, 0xd7, 0x89, 0x77, 0xe0, 0x76, 0xfa, 0xf2, 0x88, 0xde, 0x12, 0x84, 0xbb, + 0x42, 0xb0, 0x42, 0x72, 0x63, 0x5e, 0xbb, 0x59, 0x25, 0xe2, 0xc0, 0x97, 0x70, 0x67, 0x58, 0xd9, + 0xce, 0xaf, 0x71, 0xf7, 0x35, 0x04, 0xd8, 0x2e, 0x7d, 0x0e, 0x47, 0x78, 0xb6, 0x8c, 0x9b, 0xd7, + 0x21, 0xdf, 0x83, 0x54, 0xa6, 0xc7, 0xa8, 0x60, 0x0f, 0xd1, 0xe4, 0x22, 0xb0, 0x11, 0x3b, 0x68, + 0xbc, 0xaf, 0x69, 0xb1, 0xe7, 0x5e, 0xdb, 0x64, 0x2e, 0xf7, 0x6d, 0x16, 0x84, 0xb7, 0x64, 0x8b, + 0x8f, 0xc1, 0xa0, 0xc1, 0xa0, 0xad, 0x67, 0xac, 0x80, 0xf9, 0xaf, 0xb6, 0xc8, 0x46, 0x2e, 0x32, + 0xd8, 0xe4, 0x71, 0x31, 0xd3, 0x96, 0x85, 0x69, 0x83, 0x69, 0x93, 0x65, 0x5c, 0x51, 0x70, 0xaf, + 0x06, 0xf6, 0x15, 0x59, 0x58, 0x9a, 0x95, 0x55, 0x58, 0x9a, 0x88, 0xb5, 0x55, 0x59, 0x9c, 0x8c, + 0xd5, 0xc9, 0x58, 0x9e, 0x8e, 0xf5, 0x25, 0x03, 0x57, 0x51, 0xf5, 0xd9, 0x64, 0xae, 0xf5, 0xec, + 0x08, 0xdc, 0x8b, 0x6c, 0xe4, 0x9c, 0x09, 0x21, 0xf5, 0xaa, 0xfd, 0x17, 0xcb, 0x09, 0x18, 0x0a, + 0xe7, 0x54, 0x85, 0x91, 0x4a, 0x28, 0xc9, 0x85, 0x93, 0x5c, 0x48, 0xe9, 0x85, 0x55, 0x4e, 0x68, + 0x15, 0x22, 0xfd, 0xc7, 0xb4, 0x25, 0x74, 0xcf, 0x9e, 0xe7, 0x30, 0xcb, 0xa5, 0xa8, 0x9f, 0xcb, + 0xc6, 0xb9, 0x76, 0x57, 0x10, 0x92, 0x6e, 0x09, 0xbc, 0x88, 0x80, 0x53, 0x28, 0x1d, 0x28, 0x1d, + 0x28, 0x9d, 0x15, 0xce, 0xb1, 0x5b, 0xcc, 0xe5, 0x36, 0x7f, 0xf3, 0xd9, 0x0b, 0x85, 0xe2, 0x51, + 0xe8, 0xa3, 0x60, 0x7c, 0x19, 0xbf, 0xca, 0x47, 0x2b, 0x20, 0xe0, 0xc1, 0xc9, 0x02, 0x3f, 0x55, + 0x3f, 0x7e, 0xfd, 0xdc, 0x78, 0xac, 0x3e, 0xfc, 0xe7, 0xcb, 0x55, 0x35, 0xf2, 0xf3, 0x3d, 0xd0, + 0xea, 0xb1, 0x69, 0xe0, 0x6c, 0x21, 0x4e, 0x75, 0xbe, 0x10, 0x54, 0x08, 0x15, 0x54, 0x93, 0xdf, + 0x1e, 0xa1, 0x31, 0x0e, 0x92, 0x26, 0x49, 0xd1, 0x14, 0x49, 0x9a, 0x20, 0x38, 0x9b, 0x70, 0x36, + 0xc5, 0x45, 0x5f, 0xda, 0x64, 0x4c, 0x4f, 0xde, 0x61, 0xd6, 0x8b, 0x9c, 0x99, 0x98, 0x9a, 0x87, + 0xb2, 0xc4, 0xb3, 0xf7, 0x63, 0x6d, 0x73, 0x76, 0x36, 0xd6, 0x18, 0xe7, 0x13, 0x69, 0xc3, 0x00, + 0x18, 0x29, 0xad, 0x91, 0x83, 0xd6, 0x80, 0xd6, 0x40, 0x88, 0x0a, 0xde, 0x22, 0xbc, 0x45, 0x78, + 0x8b, 0x08, 0x51, 0x21, 0x44, 0x05, 0xa5, 0x03, 0xa5, 0x83, 0x10, 0x15, 0x42, 0x54, 0x08, 0x51, + 0x2d, 0x87, 0xa8, 0x92, 0xd7, 0xe0, 0x48, 0x30, 0x63, 0x07, 0x3d, 0x8e, 0xd4, 0x59, 0x8f, 0x94, + 0xe5, 0x94, 0x7b, 0x1c, 0xdd, 0x8c, 0xbf, 0xa4, 0xf1, 0x69, 0x40, 0xf6, 0x51, 0x24, 0x54, 0x92, + 0xf8, 0x34, 0xcd, 0xc5, 0xac, 0x48, 0x74, 0xd7, 0xd0, 0x04, 0xce, 0x90, 0x9d, 0xa9, 0x1a, 0x2e, + 0x99, 0x94, 0x1d, 0x89, 0xe7, 0x65, 0x4e, 0x1e, 0xd4, 0x9c, 0x91, 0x99, 0x43, 0x46, 0x26, 0x39, + 0xc2, 0x4f, 0x7c, 0x46, 0xa6, 0xd5, 0xed, 0x9a, 0x63, 0x6b, 0x23, 0x19, 0xef, 0x9e, 0x52, 0xc0, + 0x45, 0x19, 0x42, 0xde, 0xa9, 0xbd, 0x28, 0x0b, 0xb8, 0xbf, 0xbd, 0x4f, 0xe1, 0x4e, 0x75, 0x7d, + 0x11, 0x83, 0xab, 0xad, 0x4e, 0xa0, 0x90, 0x7c, 0x3d, 0x78, 0x18, 0x32, 0x0e, 0x19, 0x87, 0x8c, + 0xc7, 0x5d, 0xc6, 0xed, 0x96, 0x92, 0x94, 0xdb, 0x2d, 0xc8, 0x39, 0xe4, 0x1c, 0x72, 0x1e, 0x6f, + 0x39, 0xef, 0xfa, 0xb6, 0x27, 0x54, 0xdd, 0xbe, 0xb2, 0x0f, 0x53, 0x0a, 0x90, 0x76, 0x48, 0x7b, + 0x6a, 0xa5, 0xbd, 0x67, 0xbb, 0xfc, 0x42, 0x41, 0xd8, 0x25, 0xee, 0x96, 0x14, 0xc7, 0x25, 0x2a, + 0xdc, 0xaf, 0x51, 0x8c, 0x47, 0x24, 0x9a, 0xc9, 0x47, 0x35, 0x0e, 0x91, 0x72, 0xfe, 0x9e, 0xc2, + 0x70, 0x1f, 0x92, 0xb1, 0x87, 0xd4, 0x5b, 0x9b, 0x2b, 0x16, 0x63, 0xb4, 0xb9, 0x11, 0xdd, 0x55, + 0xd6, 0x63, 0x61, 0x7c, 0xbd, 0xa6, 0x0a, 0xca, 0x1e, 0x3f, 0x0f, 0xc3, 0x0b, 0xc3, 0x0b, 0x98, + 0x1d, 0x3d, 0xcc, 0x26, 0x8d, 0xb9, 0x57, 0x7f, 0x0c, 0x15, 0x67, 0x78, 0x5b, 0x2f, 0x7f, 0xc9, + 0xe1, 0x35, 0x4d, 0xf6, 0x83, 0xbf, 0xe7, 0xcc, 0x61, 0x1d, 0xc6, 0xfd, 0x37, 0xd3, 0xe2, 0x5e, + 0xc7, 0x6e, 0xaa, 0xdd, 0x7a, 0x0c, 0x73, 0x68, 0x15, 0xae, 0x3d, 0xa8, 0xef, 0x3a, 0xea, 0x71, + 0xbb, 0xda, 0x1f, 0x5e, 0xf9, 0x9e, 0x8b, 0xdd, 0xd2, 0x1d, 0xef, 0xbe, 0xcc, 0x1f, 0xff, 0x60, + 0x44, 0xd8, 0x7d, 0x19, 0x1d, 0xd1, 0x70, 0x49, 0x89, 0x8e, 0x68, 0xa1, 0x9f, 0x39, 0xb0, 0x8e, + 0x68, 0x89, 0xee, 0x4a, 0xbb, 0xbb, 0xc7, 0xea, 0x56, 0x6d, 0xac, 0xd2, 0x99, 0xd6, 0xe5, 0xdd, + 0xdd, 0x4d, 0x69, 0x07, 0x1f, 0xc2, 0x0c, 0x31, 0xcc, 0x10, 0xc3, 0x0c, 0x31, 0x32, 0xfb, 0x16, + 0xe7, 0xa1, 0x4b, 0xa3, 0x12, 0x37, 0xd3, 0xe5, 0x5d, 0xd3, 0xea, 0x0d, 0xb5, 0x97, 0x20, 0xe0, + 0x5a, 0x26, 0x10, 0x36, 0x01, 0x48, 0xae, 0x36, 0x0e, 0xd3, 0x32, 0x8e, 0x31, 0x2d, 0x83, 0x0a, + 0xa5, 0x89, 0x57, 0x94, 0x09, 0x56, 0x90, 0xd1, 0x38, 0x43, 0xa2, 0xe5, 0xac, 0x92, 0xe5, 0xab, + 0x10, 0x49, 0x88, 0x24, 0x44, 0x32, 0x9c, 0x48, 0x0e, 0xac, 0x5d, 0x30, 0x64, 0x14, 0xd3, 0x6a, + 0xb5, 0x7c, 0x16, 0x04, 0xe2, 0xd2, 0xb9, 0x86, 0x06, 0x04, 0x0e, 0x02, 0x17, 0xb1, 0xc0, 0xd9, + 0x5d, 0x41, 0xee, 0x5b, 0x90, 0xb9, 0x8a, 0xc0, 0x33, 0xe3, 0x77, 0xd4, 0x3e, 0x35, 0x6a, 0xb6, + 0xb2, 0xd7, 0x82, 0xc4, 0xda, 0x56, 0x83, 0xfb, 0x72, 0x7d, 0x63, 0x38, 0xf3, 0x5d, 0xe9, 0x9b, + 0x75, 0xe3, 0xbf, 0x27, 0x27, 0xdf, 0x32, 0x66, 0xa5, 0xfe, 0xeb, 0x5b, 0xd6, 0xac, 0xd4, 0x47, + 0x3f, 0x66, 0x87, 0x7f, 0x8d, 0x7e, 0xce, 0x7d, 0xcb, 0x98, 0x85, 0xc9, 0xcf, 0xc5, 0x6f, 0x19, + 0xb3, 0x58, 0x3f, 0x7d, 0x7a, 0x3a, 0x3b, 0xfd, 0x99, 0xef, 0x8b, 0x3f, 0xf8, 0x0f, 0x43, 0xf7, + 0xdd, 0xe6, 0xbb, 0x08, 0x0f, 0xbd, 0x94, 0xf4, 0x43, 0xb7, 0xcc, 0x97, 0x4b, 0xf3, 0xb7, 0xfa, + 0xcf, 0xec, 0xbb, 0x42, 0xff, 0xfd, 0xe9, 0xcf, 0x72, 0x7f, 0xf9, 0x97, 0xbf, 0xd6, 0x7d, 0x2c, + 0xfb, 0xae, 0xdc, 0x7f, 0xbf, 0xe1, 0x5f, 0x4a, 0xfd, 0xf7, 0x21, 0x69, 0x14, 0xfb, 0x27, 0x2b, + 0x1f, 0x1d, 0xfc, 0x3e, 0xb7, 0xe9, 0x81, 0xc2, 0x86, 0x07, 0xf2, 0x9b, 0x1e, 0xc8, 0x6f, 0x78, + 0x60, 0xe3, 0x2b, 0xe5, 0x36, 0x3c, 0x50, 0xec, 0xff, 0x5a, 0xf9, 0xfc, 0xc9, 0xfa, 0x8f, 0x96, + 0xfa, 0xa7, 0xbf, 0x36, 0xfd, 0x5b, 0xb9, 0xff, 0xeb, 0xfd, 0x69, 0x04, 0x22, 0x80, 0xc1, 0x62, + 0xc3, 0xbf, 0x5c, 0xde, 0xd5, 0x38, 0xd1, 0x62, 0x80, 0xa9, 0xfe, 0x62, 0x6f, 0x02, 0xc3, 0x2c, + 0xa6, 0x4f, 0x20, 0x24, 0x86, 0x90, 0xd8, 0x02, 0x13, 0xc9, 0x21, 0xfa, 0xc1, 0x83, 0xe9, 0x98, + 0x58, 0x01, 0x18, 0x1f, 0x39, 0x8c, 0xc7, 0x9c, 0x0a, 0x2a, 0x46, 0x56, 0x67, 0x68, 0x55, 0xc6, + 0x26, 0x63, 0x70, 0x32, 0x46, 0x27, 0x61, 0x78, 0x71, 0x3c, 0x73, 0x1c, 0x65, 0xeb, 0xbf, 0xbf, + 0xd8, 0x9b, 0x69, 0x13, 0x74, 0xfe, 0x1b, 0xd3, 0x41, 0xef, 0x2c, 0x79, 0xc1, 0xa1, 0x12, 0x20, + 0x72, 0x41, 0x22, 0x17, 0x28, 0x52, 0xc1, 0x92, 0x13, 0x30, 0x49, 0x41, 0x93, 0x0f, 0x20, 0x6d, + 0xe4, 0x97, 0x9e, 0xed, 0xf2, 0x6c, 0x89, 0xa0, 0x59, 0x56, 0x49, 0x81, 0x84, 0x5a, 0x5d, 0x83, + 0x7c, 0x1c, 0x62, 0xe5, 0x45, 0x28, 0xea, 0x1c, 0x88, 0xd4, 0xca, 0x0a, 0x39, 0xa2, 0xba, 0x87, + 0x29, 0x3d, 0xc2, 0x14, 0x7d, 0x45, 0x76, 0x5e, 0x3c, 0x02, 0x82, 0x7a, 0x08, 0xdd, 0x47, 0x50, + 0x2a, 0x16, 0xf3, 0xc5, 0x18, 0x1f, 0xc3, 0xd1, 0x7e, 0x9e, 0xae, 0xc7, 0xb8, 0x4f, 0xe7, 0x00, + 0x21, 0x70, 0x15, 0xad, 0xb9, 0x80, 0x35, 0x86, 0x94, 0x80, 0x36, 0x80, 0x36, 0x80, 0x36, 0x84, + 0xf8, 0x25, 0xf5, 0xfd, 0x39, 0x6f, 0x6b, 0xf7, 0x8d, 0xcb, 0xaf, 0xb5, 0xdf, 0x1b, 0xb5, 0x3f, + 0xee, 0xab, 0x06, 0x45, 0x39, 0x5e, 0xa0, 0x8c, 0x8b, 0x68, 0xb0, 0xd1, 0xfa, 0x65, 0xde, 0x7c, + 0x2a, 0x1a, 0x7b, 0xb6, 0x57, 0xf5, 0xf8, 0x77, 0x41, 0x95, 0xb4, 0x57, 0xaf, 0x63, 0xb8, 0x41, + 0x60, 0xb0, 0x46, 0xa4, 0x60, 0xb1, 0x60, 0xb1, 0x60, 0xb1, 0x84, 0xf8, 0x45, 0xba, 0xda, 0x70, + 0xc5, 0x58, 0x5d, 0xa0, 0xe7, 0xb2, 0xe0, 0xc5, 0xe3, 0xe4, 0xb2, 0x6f, 0xf2, 0x43, 0x8c, 0xc6, + 0x80, 0x49, 0x06, 0x2e, 0xd5, 0x02, 0x96, 0x49, 0x2d, 0xd4, 0x46, 0x24, 0x9f, 0x50, 0xa1, 0x62, + 0xf4, 0xd7, 0x7a, 0x56, 0x5d, 0x19, 0xfd, 0x35, 0x16, 0x31, 0x4c, 0xfe, 0x92, 0x52, 0x15, 0x39, + 0xa8, 0x0a, 0xa8, 0x8a, 0xad, 0x6f, 0x88, 0x4b, 0x3f, 0x38, 0x35, 0x70, 0x6a, 0x12, 0xe9, 0xd4, + 0xe0, 0xd2, 0x6f, 0xfe, 0x45, 0x70, 0xe9, 0xa7, 0x16, 0xbd, 0xc3, 0xa5, 0x5f, 0x2c, 0x8e, 0x01, + 0x97, 0x7e, 0x6b, 0x91, 0x06, 0x2e, 0xfd, 0x80, 0x36, 0x80, 0x36, 0xf6, 0x89, 0x36, 0x70, 0xe9, + 0x27, 0x6c, 0x6e, 0x70, 0xe9, 0xa7, 0xc5, 0xea, 0x1c, 0xe3, 0xd2, 0x0f, 0x16, 0x0b, 0x16, 0x0b, + 0x16, 0x6b, 0x07, 0xbf, 0xe0, 0xd2, 0x6f, 0x89, 0x27, 0xf6, 0x79, 0xe9, 0x97, 0xbc, 0xc1, 0xaa, + 0x42, 0x81, 0x49, 0xcc, 0x55, 0x25, 0xe0, 0x34, 0x25, 0x0e, 0x53, 0x6e, 0xbd, 0x7a, 0xcb, 0xbb, + 0x83, 0xff, 0x0d, 0x4e, 0x3f, 0xf5, 0xc5, 0xc0, 0xd3, 0x02, 0x5c, 0x1d, 0x23, 0x53, 0x99, 0xff, + 0xca, 0x7c, 0x81, 0x6a, 0xe0, 0xc9, 0x03, 0x28, 0x06, 0x46, 0x31, 0xf0, 0x3c, 0x0b, 0xc9, 0xf4, + 0x21, 0x1e, 0x3e, 0x87, 0x52, 0xe0, 0x08, 0xb1, 0xec, 0x41, 0x97, 0x02, 0x8b, 0xf6, 0xa1, 0x5a, + 0x39, 0x67, 0xb9, 0xae, 0x29, 0x48, 0x21, 0xda, 0x8b, 0xbb, 0x86, 0x14, 0x22, 0x91, 0xf3, 0x8e, + 0x4d, 0x0a, 0xd1, 0x44, 0xc6, 0x62, 0x90, 0x43, 0x84, 0xd6, 0x01, 0xd0, 0x16, 0x69, 0xd4, 0x16, + 0xd2, 0x59, 0x44, 0xb2, 0x06, 0x94, 0xc8, 0x90, 0x22, 0x4e, 0x8a, 0x38, 0xe9, 0xc1, 0xc7, 0x49, + 0xbf, 0x7b, 0x01, 0xa7, 0x88, 0x92, 0x56, 0x14, 0x68, 0x48, 0xf5, 0xa9, 0x5c, 0xfe, 0x43, 0x90, + 0x45, 0xa4, 0xd4, 0xa1, 0x53, 0xe7, 0x0e, 0xd1, 0xee, 0x14, 0xdd, 0x8e, 0xad, 0xd9, 0x39, 0xa5, + 0x0e, 0xa0, 0x3b, 0xf7, 0xf0, 0x82, 0x90, 0xa6, 0x6a, 0xf3, 0xc8, 0x8d, 0x84, 0xe3, 0xde, 0x49, + 0x74, 0xd3, 0x9f, 0x3a, 0x09, 0xa5, 0xfe, 0xbb, 0x18, 0x33, 0x67, 0x09, 0xcc, 0x89, 0x8e, 0xa7, + 0x09, 0xea, 0x78, 0xaa, 0x59, 0x54, 0x8f, 0xf6, 0xfb, 0x1e, 0x8a, 0xaa, 0x82, 0xd0, 0xe2, 0xb7, + 0xbc, 0x8e, 0x65, 0xbb, 0xe6, 0xf0, 0x52, 0x88, 0xd0, 0xe4, 0x13, 0x68, 0x04, 0xe3, 0x9a, 0xb9, + 0xed, 0x61, 0x50, 0x23, 0x76, 0x46, 0x9f, 0x32, 0xe9, 0x9a, 0xc8, 0x17, 0xdb, 0x48, 0x76, 0x92, + 0x01, 0x9c, 0x25, 0xa6, 0xab, 0x21, 0x0b, 0x98, 0xd8, 0x90, 0x1e, 0x53, 0x27, 0x67, 0x47, 0x75, + 0x54, 0xb9, 0x62, 0x3e, 0x41, 0x87, 0x15, 0x17, 0x85, 0x4c, 0xa0, 0x71, 0xa8, 0xb1, 0x87, 0x71, + 0x72, 0x72, 0xf2, 0xcd, 0x32, 0xff, 0xbe, 0x34, 0xff, 0xcc, 0x98, 0x95, 0x46, 0x7d, 0xee, 0x3f, + 0x9e, 0x9e, 0xcc, 0x46, 0xfd, 0xf4, 0x67, 0xe6, 0x5d, 0x29, 0xdb, 0x3f, 0xfd, 0x30, 0xfb, 0x7d, + 0x7d, 0x80, 0x87, 0xff, 0x29, 0xf3, 0xd4, 0x87, 0xd3, 0x5f, 0x4f, 0x4f, 0x67, 0xc6, 0xbe, 0x2d, + 0x5b, 0x2a, 0x73, 0xf1, 0xad, 0x20, 0xf0, 0x9a, 0xf6, 0x30, 0x2b, 0x81, 0x28, 0x27, 0x7f, 0x85, + 0xa2, 0x64, 0x3c, 0x64, 0x6e, 0x90, 0xd2, 0x63, 0xf5, 0xe1, 0x3f, 0xd5, 0x07, 0x84, 0x02, 0x11, + 0x0a, 0x44, 0x28, 0x50, 0x8c, 0x5f, 0x98, 0xdb, 0xeb, 0x30, 0x7f, 0x94, 0x74, 0x44, 0x10, 0x11, + 0x2c, 0x28, 0xd0, 0x10, 0x1b, 0xaf, 0xbb, 0x1f, 0x6d, 0x68, 0x3f, 0xf7, 0xfc, 0x80, 0xab, 0xeb, + 0xc0, 0x31, 0x1d, 0x75, 0xcd, 0x27, 0x32, 0x42, 0x0e, 0x8a, 0x0f, 0x8a, 0x0f, 0x8a, 0x4f, 0x7a, + 0x04, 0xde, 0x46, 0xa5, 0x97, 0x8d, 0xb1, 0xc2, 0xea, 0x7a, 0x3e, 0x81, 0xba, 0x1a, 0x52, 0x51, + 0x57, 0x56, 0xd9, 0x5c, 0x1e, 0xaa, 0x0a, 0xaa, 0x0a, 0xaa, 0x4a, 0x5c, 0xfa, 0x4c, 0xb7, 0xd7, + 0x79, 0x0e, 0x9d, 0xe9, 0xba, 0x4d, 0x84, 0xd0, 0xfb, 0x41, 0x6f, 0x4c, 0x0b, 0xbd, 0x1f, 0xe2, + 0x73, 0x04, 0xe8, 0xfd, 0x90, 0xb8, 0x78, 0xd3, 0xc0, 0x0e, 0x31, 0x9f, 0x00, 0xb2, 0x8c, 0xe8, + 0xc0, 0xc3, 0x02, 0x6c, 0x01, 0x6c, 0x81, 0x87, 0xa5, 0x4f, 0x61, 0xbd, 0x32, 0x3f, 0x90, 0xad, + 0xb0, 0x5d, 0xd8, 0xaf, 0x09, 0x21, 0x75, 0x95, 0x55, 0x80, 0xba, 0x82, 0xba, 0x82, 0xba, 0x12, + 0xe3, 0x97, 0x9e, 0xed, 0xf2, 0x0b, 0x02, 0x65, 0x55, 0x84, 0x7f, 0x15, 0x0d, 0xb8, 0xcf, 0xc2, + 0xbf, 0xda, 0xf7, 0x11, 0x14, 0xe0, 0x5b, 0xed, 0xcd, 0xb7, 0x4a, 0x4d, 0xe7, 0x90, 0x71, 0x37, + 0x80, 0xf1, 0xdf, 0x31, 0x1a, 0x16, 0x80, 0xfe, 0xdf, 0x9a, 0x91, 0x16, 0x2a, 0xf7, 0xf6, 0x20, + 0xda, 0xa8, 0xdc, 0x83, 0x93, 0x02, 0x27, 0x05, 0x95, 0x7b, 0xd2, 0x34, 0x50, 0xb9, 0x17, 0xe9, + 0x4e, 0xd1, 0xed, 0xd8, 0x9a, 0x9d, 0x43, 0xe5, 0x1e, 0x2a, 0xf7, 0xe2, 0xcb, 0x9c, 0xa8, 0xdc, + 0x43, 0xe5, 0x1e, 0x2a, 0xf7, 0x68, 0x22, 0x1a, 0xc7, 0xa8, 0xdc, 0x8b, 0x40, 0x23, 0xa0, 0x72, + 0x2f, 0x8e, 0x21, 0x5e, 0x9d, 0x71, 0x46, 0x62, 0x43, 0x7a, 0x8c, 0xca, 0xbd, 0x28, 0x0e, 0x0b, + 0x95, 0x7b, 0x9b, 0x09, 0xa2, 0x72, 0x4f, 0xf7, 0xf7, 0xa2, 0x72, 0x0f, 0x95, 0x7b, 0x08, 0x05, + 0x22, 0x14, 0xa8, 0xc4, 0x2f, 0xa8, 0xdc, 0x13, 0x7a, 0x47, 0x54, 0xee, 0x41, 0xf1, 0x41, 0xf1, + 0xa5, 0x41, 0xf1, 0x1d, 0x48, 0x5e, 0xa9, 0xf7, 0xf2, 0x12, 0x30, 0x02, 0x85, 0x35, 0xa6, 0x03, + 0x45, 0x03, 0x45, 0x03, 0x45, 0x23, 0xc4, 0x2f, 0x3d, 0xdb, 0xe5, 0xa5, 0x02, 0x81, 0x9e, 0xb9, + 0x40, 0x4a, 0xa8, 0xd6, 0x60, 0x14, 0x4a, 0xee, 0xe2, 0x73, 0x04, 0xd9, 0x8b, 0x42, 0xa1, 0x54, + 0x2e, 0x14, 0x32, 0xe5, 0x7c, 0x39, 0x53, 0x29, 0x16, 0xb3, 0xa5, 0x2c, 0x2a, 0xf0, 0x12, 0x15, + 0x37, 0xea, 0x7a, 0x8e, 0x63, 0xda, 0x2e, 0x67, 0xfe, 0xab, 0xe5, 0x50, 0xf4, 0x0e, 0x98, 0x27, + 0x07, 0x18, 0x02, 0x18, 0x02, 0x18, 0x22, 0x0c, 0x43, 0xf2, 0x39, 0x02, 0x18, 0x52, 0x06, 0x0c, + 0x01, 0x0c, 0x39, 0x94, 0xca, 0x94, 0x5c, 0xa5, 0x50, 0x29, 0x95, 0x73, 0x15, 0x80, 0x8f, 0x84, + 0x81, 0x0f, 0xf4, 0x2b, 0x02, 0x60, 0x01, 0x60, 0x39, 0x46, 0xbf, 0x22, 0xf4, 0x2b, 0x02, 0x6a, + 0x39, 0x30, 0xd4, 0x82, 0x7e, 0x45, 0xc9, 0x03, 0x2c, 0xe8, 0x57, 0x04, 0xd8, 0x02, 0xd8, 0x92, + 0x02, 0xd8, 0x72, 0x20, 0xf7, 0xca, 0xbe, 0xe7, 0x71, 0xb3, 0xc5, 0x1c, 0xeb, 0x4d, 0x5d, 0x69, + 0xcd, 0xd1, 0x82, 0xc2, 0x81, 0xc2, 0x81, 0xc2, 0x11, 0xe2, 0x17, 0x04, 0x76, 0xe1, 0x22, 0xc1, + 0x45, 0x12, 0x3c, 0x02, 0x04, 0x76, 0x93, 0xe9, 0x27, 0x8d, 0xa0, 0x82, 0x1d, 0x74, 0xa9, 0xda, + 0x25, 0x2e, 0x13, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x11, 0x06, 0x20, 0x48, 0x70, 0x03, 0x00, + 0x01, 0x00, 0x11, 0x38, 0x02, 0x24, 0xb8, 0x25, 0x1d, 0x8a, 0x04, 0xdc, 0xb7, 0xf8, 0xa8, 0x62, + 0x49, 0x0d, 0x82, 0x4c, 0x08, 0x01, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x08, 0x43, 0x0f, 0x74, 0x5b, + 0x06, 0xf2, 0x00, 0xf2, 0x08, 0x7f, 0x04, 0xb9, 0x22, 0x80, 0x46, 0xa2, 0x80, 0x06, 0x46, 0x43, + 0x00, 0xac, 0x00, 0xac, 0x00, 0xac, 0x00, 0xac, 0x44, 0xed, 0xa3, 0x03, 0xac, 0xec, 0xfb, 0x08, + 0x30, 0x1a, 0x62, 0x7f, 0x50, 0x25, 0xad, 0xa3, 0x21, 0x46, 0x13, 0x15, 0x74, 0x4d, 0x86, 0x38, + 0x22, 0xdc, 0xad, 0x81, 0x61, 0x17, 0x6f, 0x75, 0x6f, 0x5c, 0xdb, 0x01, 0xbf, 0xe4, 0x5c, 0x2c, + 0x9d, 0x70, 0xa0, 0x91, 0xab, 0x0e, 0x1b, 0x18, 0xe9, 0x81, 0x7c, 0xb8, 0x3d, 0xc7, 0x11, 0x18, + 0x72, 0x71, 0x63, 0xfd, 0x90, 0x7f, 0xf8, 0xce, 0x6f, 0x31, 0x9f, 0xb5, 0x3e, 0xbe, 0x8d, 0x1f, + 0x25, 0xdd, 0x42, 0x49, 0x46, 0x53, 0x60, 0x30, 0x43, 0x68, 0x38, 0x88, 0xdf, 0x6b, 0x72, 0x77, + 0x8c, 0x10, 0x1e, 0x87, 0x24, 0x1b, 0xb7, 0xbc, 0xdb, 0x78, 0x1c, 0x91, 0x3a, 0xa2, 0xe1, 0xb9, + 0xed, 0x9f, 0xd8, 0xb1, 0x95, 0xa2, 0x5b, 0x28, 0xb3, 0x75, 0xdb, 0x17, 0xba, 0xf9, 0xf5, 0xb7, + 0xbc, 0x7a, 0xc8, 0xc1, 0x2b, 0x42, 0x83, 0x56, 0x42, 0x0e, 0x56, 0x09, 0x3d, 0x48, 0x45, 0xc4, + 0x1f, 0x11, 0xf7, 0x3b, 0x44, 0xfd, 0x0b, 0x69, 0x3f, 0x42, 0xda, 0x5f, 0x90, 0xf2, 0x0b, 0xd4, + 0x98, 0x39, 0xec, 0xe0, 0x12, 0xc3, 0xea, 0xf1, 0xef, 0x66, 0xc7, 0x0e, 0x3a, 0x16, 0x6f, 0x7e, + 0x0f, 0xbf, 0x87, 0xd3, 0x2e, 0x87, 0x0b, 0x8f, 0x87, 0xd5, 0xf7, 0x42, 0x28, 0x4a, 0xd8, 0x1d, + 0x96, 0x71, 0x7f, 0xe5, 0xdd, 0x5d, 0x59, 0xf7, 0x56, 0xd9, 0x9d, 0x55, 0x76, 0x5f, 0x95, 0xdc, + 0x55, 0x5a, 0x04, 0x20, 0xec, 0x7e, 0x4e, 0xcf, 0xab, 0xe9, 0xf5, 0x5c, 0xce, 0x7c, 0xa1, 0x9b, + 0x79, 0x89, 0x9b, 0x78, 0x49, 0x97, 0x52, 0x02, 0xf2, 0xa9, 0xb8, 0x8c, 0xaa, 0x81, 0x27, 0xc5, + 0xf8, 0x35, 0x85, 0xff, 0x21, 0x13, 0x3a, 0x54, 0x71, 0xf1, 0xa8, 0xb6, 0x8c, 0xee, 0xa6, 0x9b, + 0x64, 0x17, 0x35, 0xe1, 0xfe, 0x3a, 0x15, 0x52, 0x0b, 0x61, 0xd6, 0x99, 0x6b, 0x3d, 0x3b, 0xcc, + 0x74, 0x79, 0xd7, 0x1c, 0x58, 0x19, 0x71, 0xdb, 0xb4, 0x4c, 0x20, 0xa4, 0x2e, 0x92, 0x2c, 0x0f, + 0x82, 0x55, 0x83, 0x55, 0x23, 0xb3, 0x6a, 0xe2, 0xe5, 0x35, 0x82, 0xe5, 0x34, 0x94, 0x22, 0xda, + 0x92, 0x15, 0xcd, 0x16, 0x44, 0x12, 0x22, 0x09, 0x91, 0x24, 0x15, 0xc9, 0x81, 0xb5, 0x0b, 0x86, + 0x8c, 0x62, 0x8a, 0xce, 0xa0, 0x9c, 0x2e, 0x75, 0x0d, 0x0d, 0x08, 0x1c, 0x04, 0x2e, 0x62, 0x81, + 0x93, 0x1a, 0x55, 0x28, 0x33, 0x92, 0x50, 0x6e, 0xf4, 0xa0, 0xc2, 0x0c, 0x60, 0xc5, 0x51, 0x82, + 0x2a, 0x33, 0x98, 0x94, 0x27, 0xa0, 0xc4, 0x7e, 0x04, 0x60, 0x5d, 0xe7, 0x85, 0x8e, 0xda, 0xa1, + 0x97, 0x92, 0x7e, 0xe8, 0x18, 0xad, 0x97, 0x88, 0xd1, 0x7a, 0xf5, 0xb8, 0x7b, 0xff, 0xf1, 0xbd, + 0xa7, 0xd9, 0x7d, 0x69, 0xba, 0xe5, 0x96, 0xe6, 0x48, 0x60, 0x39, 0x61, 0x97, 0x21, 0xf2, 0xfa, + 0xc6, 0xd6, 0x6b, 0xa2, 0xf5, 0x57, 0x70, 0xeb, 0x17, 0xbb, 0xba, 0x94, 0x35, 0xcb, 0x30, 0xba, + 0xbe, 0xd7, 0x64, 0x41, 0xc0, 0x36, 0x43, 0xcc, 0xb9, 0x8e, 0x2d, 0x93, 0x8f, 0x6e, 0xd8, 0x8e, + 0xed, 0x57, 0x4e, 0x3b, 0x91, 0x62, 0x18, 0x64, 0x38, 0x8f, 0x04, 0x07, 0xef, 0xb3, 0x6d, 0xbb, + 0x42, 0x42, 0x3f, 0x61, 0xa8, 0x27, 0x0c, 0xed, 0x96, 0xa1, 0xdc, 0xf0, 0xc5, 0x89, 0x58, 0x70, + 0xd7, 0x25, 0xd1, 0xe4, 0xd4, 0xc2, 0xdf, 0x2e, 0x4e, 0x1e, 0x48, 0xc6, 0xfd, 0xe2, 0x0e, 0x26, + 0x90, 0xf5, 0x03, 0xf6, 0x7f, 0xc1, 0xb8, 0x9d, 0x49, 0x68, 0xd4, 0x70, 0xe8, 0x1b, 0xc6, 0xae, + 0x2d, 0x11, 0x20, 0x1a, 0x3c, 0x94, 0x0e, 0x9f, 0x33, 0x24, 0x93, 0xa5, 0xcf, 0xe9, 0x0c, 0xc7, + 0x84, 0x71, 0xf3, 0x3a, 0x1d, 0x66, 0xbd, 0xf8, 0xec, 0x45, 0xc6, 0xe5, 0x14, 0xe8, 0x2c, 0x32, + 0x40, 0xe4, 0x43, 0x7b, 0x7e, 0x76, 0x36, 0xc2, 0x1c, 0xe7, 0x03, 0x86, 0x8f, 0x30, 0x4c, 0x14, + 0x2e, 0x6b, 0x64, 0x65, 0x77, 0xc2, 0x64, 0x8f, 0x08, 0x6a, 0x79, 0x61, 0x6d, 0x0f, 0xc1, 0x4c, + 0xb0, 0x60, 0x86, 0xb5, 0x1a, 0xd3, 0x07, 0x2c, 0xbf, 0x1d, 0x88, 0xef, 0xf9, 0x34, 0x3d, 0x65, + 0xf0, 0xb4, 0xe0, 0x6e, 0xc9, 0x5d, 0x08, 0x4b, 0x17, 0x6d, 0xa8, 0x14, 0x6b, 0x28, 0xb0, 0xb3, + 0x2a, 0x5b, 0x93, 0xb1, 0x37, 0x19, 0x9b, 0xd3, 0xb0, 0xbb, 0xb8, 0x57, 0x2c, 0x11, 0x46, 0x92, + 0x2f, 0xb7, 0x98, 0x2f, 0xa7, 0xb6, 0xdd, 0xb6, 0x52, 0x20, 0x49, 0xeb, 0x0a, 0xa5, 0xb2, 0x73, + 0xa7, 0x4f, 0xab, 0x64, 0xe9, 0xce, 0x88, 0x28, 0x64, 0xeb, 0x4e, 0x89, 0x48, 0x65, 0xed, 0x8a, + 0x33, 0x91, 0xc0, 0xf6, 0x1a, 0xcd, 0x6e, 0xcf, 0xec, 0x05, 0x56, 0x9b, 0x8d, 0x23, 0x00, 0xf2, + 0xea, 0x71, 0x85, 0x12, 0x54, 0x25, 0x54, 0x65, 0xea, 0x54, 0xa5, 0x4c, 0x8a, 0xe0, 0x32, 0x8b, + 0xcb, 0x44, 0xdd, 0xd5, 0xaa, 0xd0, 0x14, 0x4a, 0xf1, 0x28, 0xaa, 0xce, 0x88, 0x4a, 0x9d, 0xa8, + 0x4a, 0xe2, 0x29, 0x4b, 0x9b, 0x14, 0xaa, 0xca, 0x48, 0xaa, 0xc9, 0xa8, 0xb7, 0x96, 0xbe, 0xc9, + 0x0e, 0xe9, 0x6e, 0x47, 0x54, 0xc8, 0x55, 0x8f, 0x95, 0x65, 0xee, 0x05, 0x12, 0x7d, 0xce, 0xd7, + 0xd8, 0xe5, 0x21, 0x1d, 0x58, 0x65, 0x58, 0x65, 0x58, 0x65, 0x58, 0x65, 0x58, 0x65, 0x58, 0x65, + 0x58, 0x65, 0x39, 0xab, 0xcc, 0x6d, 0xc7, 0xfe, 0x5b, 0xae, 0x12, 0x7b, 0xd1, 0x2c, 0xcf, 0x11, + 0x82, 0x5d, 0x86, 0x5d, 0x4e, 0x9d, 0x5d, 0xee, 0x32, 0xbf, 0xc9, 0x5c, 0x6e, 0xb5, 0x99, 0x82, + 0x61, 0x2e, 0xc2, 0x30, 0xc3, 0x30, 0xc7, 0xd5, 0x30, 0x67, 0x32, 0xb0, 0xc3, 0xfb, 0xb0, 0xc3, + 0x1d, 0xd6, 0xf1, 0xfc, 0xb7, 0x91, 0x63, 0x2b, 0x6f, 0x84, 0x17, 0xa8, 0xc0, 0x02, 0xc3, 0x02, + 0xa7, 0xce, 0x02, 0x4b, 0x77, 0x9a, 0x87, 0x5b, 0x0c, 0xeb, 0x0b, 0xb7, 0x18, 0xe6, 0x58, 0xcc, + 0x1c, 0x53, 0x78, 0xc6, 0x6b, 0x68, 0xc1, 0x34, 0xc3, 0x34, 0xc3, 0x39, 0x86, 0x73, 0x0c, 0xf3, + 0x0c, 0xe7, 0x18, 0xd6, 0x78, 0xe7, 0xb6, 0x8d, 0x2b, 0xb3, 0x24, 0xed, 0xef, 0xf0, 0x69, 0x58, + 0x5c, 0x58, 0x5c, 0xe4, 0xb9, 0x2e, 0xf3, 0xb7, 0x68, 0x9e, 0xab, 0x16, 0xe9, 0x16, 0xa9, 0x81, + 0x5a, 0x05, 0x1d, 0xa1, 0x6b, 0xa1, 0x20, 0xdb, 0x90, 0x6d, 0x04, 0xba, 0x80, 0xa4, 0x81, 0xa4, + 0x11, 0xe8, 0x02, 0xb4, 0x9e, 0x6c, 0x5b, 0xc0, 0x2d, 0x9f, 0x9b, 0xdc, 0x56, 0x01, 0xd8, 0x73, + 0x34, 0x60, 0x8a, 0x61, 0x8a, 0x53, 0x67, 0x8a, 0x07, 0x9c, 0xcd, 0xed, 0xe6, 0x5f, 0x41, 0xe4, + 0xf6, 0xf8, 0xab, 0x3b, 0xd2, 0x65, 0x86, 0x6b, 0xb9, 0x5e, 0xc0, 0x9a, 0x9e, 0xdb, 0x92, 0xea, + 0x8f, 0x04, 0xbb, 0x0e, 0xbb, 0x0e, 0xbb, 0x9e, 0x78, 0xbb, 0x9e, 0xa8, 0xa9, 0x28, 0xd3, 0xae, + 0x46, 0x93, 0x9f, 0x44, 0xa6, 0xee, 0xe8, 0xee, 0x93, 0x35, 0x9e, 0xaa, 0xb3, 0x3b, 0x7a, 0x20, + 0x56, 0xab, 0x2b, 0x55, 0x9b, 0x2b, 0x55, 0x8b, 0x2b, 0x56, 0x7b, 0xbb, 0xaf, 0xb6, 0x61, 0x2b, + 0x3c, 0x60, 0x84, 0x6a, 0xbf, 0xb1, 0xa6, 0x1b, 0xd7, 0xfd, 0xf8, 0xf9, 0x44, 0xb6, 0x1f, 0x9b, + 0x35, 0xf8, 0x52, 0x68, 0x28, 0x16, 0x04, 0xdf, 0xcd, 0xf1, 0x74, 0xa1, 0x9d, 0x1d, 0xc5, 0xe6, + 0x3e, 0x1b, 0x8f, 0x96, 0x62, 0xc1, 0x5b, 0x60, 0x72, 0xe6, 0x77, 0x12, 0xd9, 0x56, 0x6c, 0xfa, + 0xf2, 0x51, 0xb5, 0x16, 0x6b, 0x4e, 0x76, 0x3f, 0x64, 0x67, 0xb1, 0xf1, 0xe7, 0x89, 0x1b, 0x8b, + 0x65, 0xb4, 0x0d, 0x2e, 0xda, 0xc5, 0x0a, 0xb2, 0x0e, 0x53, 0x2c, 0xa6, 0x17, 0xed, 0x60, 0x15, + 0x1a, 0xfb, 0x15, 0xba, 0xc1, 0xd8, 0xa8, 0x99, 0xbc, 0x6c, 0x13, 0x7a, 0x89, 0x1e, 0xf4, 0x83, + 0xbd, 0x4b, 0x4f, 0x47, 0xec, 0xb0, 0x9c, 0xaa, 0xea, 0xe2, 0xc7, 0xb2, 0x2d, 0x76, 0x48, 0x4e, + 0xd6, 0x03, 0x4f, 0x53, 0xdf, 0x8c, 0xbe, 0xeb, 0x7b, 0xdc, 0x6b, 0x7a, 0x8e, 0x29, 0x3a, 0xdc, + 0x7b, 0xbe, 0xa1, 0xe4, 0x22, 0x05, 0x71, 0x69, 0xfd, 0x4f, 0x0e, 0xb2, 0x0a, 0x59, 0xdd, 0x9f, + 0xac, 0x32, 0xb7, 0xd7, 0x61, 0xbe, 0x68, 0x52, 0xe4, 0x54, 0x5e, 0x05, 0x66, 0x03, 0x1b, 0x55, + 0xb7, 0x37, 0xec, 0x06, 0xd4, 0x8f, 0x50, 0xc6, 0x7d, 0x8b, 0x33, 0xd3, 0xb1, 0x3b, 0x36, 0x17, + 0x97, 0xee, 0xb9, 0x67, 0x21, 0xa2, 0x10, 0xd1, 0xbd, 0x89, 0x68, 0xcf, 0x76, 0x79, 0xb6, 0x24, + 0x21, 0x9d, 0x25, 0x4c, 0x10, 0x24, 0x0d, 0x40, 0x1f, 0xf2, 0x04, 0xc1, 0x52, 0xb1, 0x98, 0xc7, + 0xc8, 0x40, 0x25, 0x5b, 0x14, 0xb0, 0x60, 0x00, 0x12, 0x65, 0xcd, 0xd1, 0xe2, 0xe3, 0xb0, 0x48, + 0xb0, 0x48, 0xb0, 0x48, 0xb0, 0x48, 0xb0, 0x48, 0xb0, 0x48, 0xd2, 0x16, 0x89, 0xdb, 0x1d, 0xe6, + 0xf5, 0x24, 0x6c, 0xd1, 0xe4, 0x41, 0x58, 0x21, 0x58, 0x21, 0x58, 0x21, 0x58, 0x21, 0x58, 0x21, + 0x58, 0x21, 0x89, 0x4f, 0xec, 0x2b, 0x2b, 0x62, 0x76, 0x3b, 0x7f, 0x3e, 0xbe, 0xb9, 0x95, 0xcd, + 0x6a, 0xd8, 0x3a, 0xd3, 0x2c, 0xcc, 0x10, 0x13, 0xa1, 0xe1, 0x25, 0x71, 0x19, 0x4d, 0x85, 0x1b, + 0x64, 0x02, 0xe6, 0xc6, 0x0d, 0x32, 0xa0, 0x1d, 0xa0, 0xdd, 0xfa, 0x93, 0xc3, 0x0d, 0x72, 0x78, + 0x69, 0xc5, 0x0d, 0x32, 0x64, 0x75, 0x9f, 0xb2, 0x8a, 0x1b, 0xe4, 0x8d, 0x5b, 0x83, 0x1b, 0x64, + 0x88, 0x28, 0x22, 0x25, 0x88, 0x94, 0x20, 0x52, 0x82, 0x48, 0x09, 0x85, 0x2d, 0xc2, 0x0d, 0x32, + 0x2c, 0x12, 0x2c, 0x12, 0x2c, 0x12, 0x2c, 0x12, 0x2c, 0x52, 0x3c, 0x2c, 0x12, 0x6e, 0x90, 0x61, + 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x60, 0x85, 0x34, 0x59, 0xa1, 0xb8, 0xdf, 0x20, 0x87, + 0x68, 0xaa, 0x10, 0xd7, 0xb2, 0xf8, 0x9d, 0x55, 0xea, 0xc7, 0x1b, 0xdb, 0x01, 0x3c, 0x06, 0xdf, + 0x1f, 0x47, 0x4f, 0xaa, 0x54, 0xd4, 0x6f, 0xbd, 0x22, 0x0f, 0x75, 0x35, 0x1e, 0xba, 0x8e, 0x3e, + 0x47, 0x56, 0x47, 0x9f, 0xd4, 0x12, 0xfa, 0xc8, 0xaa, 0xe7, 0x9f, 0x3d, 0x2f, 0x64, 0x47, 0xb3, + 0xf9, 0x0b, 0xbf, 0x50, 0x0d, 0xcc, 0x42, 0x2a, 0xdd, 0x28, 0x6a, 0xe8, 0xd3, 0x9a, 0xfc, 0xa0, + 0x3b, 0xef, 0x21, 0x34, 0x5c, 0x93, 0x6c, 0xff, 0x25, 0xd0, 0xee, 0x4b, 0xb6, 0xbd, 0x97, 0x20, + 0xa6, 0x13, 0x40, 0xa6, 0x32, 0x18, 0x4e, 0xb6, 0x89, 0x9f, 0x24, 0x66, 0x53, 0x01, 0x1d, 0x22, + 0x8d, 0x11, 0x65, 0xb0, 0x99, 0xea, 0x56, 0xa8, 0xb7, 0xcf, 0x52, 0xda, 0x1d, 0x22, 0xc8, 0x54, + 0xd7, 0x90, 0xcd, 0xd6, 0xec, 0xf9, 0x3e, 0x73, 0xb9, 0xd9, 0xb2, 0x38, 0x13, 0x53, 0xed, 0x2b, + 0x4f, 0x42, 0xc3, 0x43, 0xc3, 0x2f, 0xed, 0xf7, 0x80, 0x37, 0x4c, 0xcb, 0x6d, 0x85, 0xed, 0x61, + 0x3a, 0x6b, 0x9f, 0x1e, 0xe2, 0xb3, 0xf7, 0x16, 0xe7, 0xcc, 0x77, 0x43, 0xab, 0x6b, 0xe3, 0xbf, + 0xdf, 0x32, 0x66, 0xa5, 0xfe, 0xb3, 0xd0, 0x7f, 0x7a, 0x32, 0x47, 0x3f, 0xe6, 0xe6, 0x7f, 0xac, + 0x4d, 0x7e, 0x78, 0xbf, 0xf2, 0xc3, 0xc9, 0xd3, 0xd3, 0xd9, 0xf0, 0xe7, 0x7f, 0x9d, 0x7e, 0xf8, + 0xf3, 0xdb, 0xbf, 0xcc, 0xfa, 0xca, 0x27, 0xfe, 0x61, 0xec, 0x45, 0x7c, 0x5b, 0x5e, 0xc7, 0xb2, + 0x5d, 0x33, 0xd4, 0x1c, 0x87, 0xd9, 0xa9, 0xcc, 0x3d, 0x04, 0xa1, 0x85, 0xd0, 0x4a, 0xb3, 0x87, + 0xb0, 0xc8, 0x5e, 0x33, 0xb7, 0x3d, 0x74, 0x5e, 0x53, 0x01, 0xb0, 0xb2, 0x00, 0x58, 0x93, 0xad, + 0xc8, 0x15, 0xf3, 0x09, 0xc4, 0x53, 0x3a, 0x8c, 0xcc, 0xc9, 0xc9, 0xc9, 0x37, 0xcb, 0xfc, 0xfb, + 0xd2, 0xfc, 0x33, 0x63, 0x56, 0x1a, 0xf5, 0xb9, 0xff, 0x78, 0x7a, 0x32, 0x1b, 0xf5, 0xd3, 0x9f, + 0x99, 0x77, 0xa5, 0x6c, 0xff, 0xf4, 0xc3, 0xec, 0xf7, 0xf5, 0xa7, 0xa7, 0xb3, 0xd3, 0x7f, 0xca, + 0x3c, 0xf5, 0xe1, 0xf4, 0xd7, 0xd3, 0xd3, 0xd9, 0x7e, 0x2c, 0xcf, 0x77, 0x2f, 0xe0, 0x62, 0x66, + 0x67, 0xfa, 0x04, 0x6c, 0x0e, 0x6c, 0x0e, 0x6c, 0x0e, 0x6c, 0x0e, 0x6c, 0x0e, 0x6c, 0x8e, 0x90, + 0xcd, 0x71, 0xbc, 0xb6, 0xed, 0x9a, 0xcf, 0x96, 0xeb, 0x32, 0x3f, 0xbc, 0xdd, 0x59, 0x78, 0x0a, + 0xb6, 0x07, 0xb6, 0x67, 0x69, 0xbf, 0x43, 0x0f, 0x7b, 0x0b, 0x39, 0xdc, 0x4d, 0x8e, 0xb7, 0x3b, + 0x1e, 0x6f, 0x09, 0xb3, 0xf6, 0xfc, 0x43, 0xe0, 0x6c, 0x70, 0xf6, 0xfe, 0x38, 0x7b, 0xbf, 0xf7, + 0xdd, 0x9b, 0xaf, 0xea, 0xc3, 0x5d, 0x58, 0x73, 0xe6, 0xb8, 0x8c, 0x87, 0xee, 0x02, 0xbf, 0xf8, + 0x71, 0x34, 0x82, 0x47, 0x23, 0xf8, 0x30, 0x47, 0x1e, 0xa5, 0x8e, 0x45, 0x19, 0x7f, 0x7a, 0xcb, + 0xf8, 0x5f, 0x2c, 0x27, 0x40, 0x1d, 0x3f, 0x12, 0x6c, 0x55, 0x1d, 0xf7, 0xf4, 0xd7, 0xf1, 0xa3, + 0xc6, 0x17, 0xa2, 0x86, 0x5c, 0xf6, 0x10, 0x8f, 0x20, 0x97, 0x5d, 0x6f, 0xf4, 0x50, 0x22, 0xa4, + 0xaa, 0x14, 0x5a, 0xa5, 0xde, 0x32, 0xe4, 0xb2, 0x2b, 0xdb, 0x22, 0xd4, 0xf8, 0xc2, 0x22, 0xc1, + 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc1, 0x22, 0xc5, 0xc3, 0x22, 0xa1, 0xc6, 0x17, 0x56, 0x08, 0x56, + 0x08, 0x56, 0x08, 0x56, 0x08, 0x56, 0x48, 0x93, 0x15, 0x8a, 0x65, 0x8d, 0xef, 0xc2, 0xed, 0x1d, + 0x1a, 0x45, 0xe3, 0x86, 0x09, 0x37, 0x4c, 0xb8, 0x61, 0x02, 0xbc, 0x8b, 0x17, 0xbc, 0xc3, 0x0d, + 0x13, 0x44, 0x0d, 0xa2, 0x06, 0x4f, 0x0a, 0x9e, 0x14, 0x3c, 0x29, 0x78, 0x52, 0xb8, 0x61, 0x82, + 0x45, 0x82, 0x45, 0x82, 0x45, 0x82, 0x45, 0x82, 0x45, 0x4a, 0x90, 0x45, 0xc2, 0x0d, 0x13, 0xac, + 0x10, 0xac, 0x10, 0xac, 0x10, 0xac, 0x10, 0xac, 0x90, 0x26, 0x2b, 0x94, 0x80, 0x1b, 0xa6, 0x04, + 0x37, 0x92, 0x0d, 0x53, 0xe8, 0x76, 0xbc, 0xb1, 0x97, 0x6c, 0x6d, 0xf8, 0xb4, 0x60, 0x3b, 0xd9, + 0xa3, 0x2d, 0xeb, 0xdc, 0xb5, 0xbe, 0xb0, 0xeb, 0x32, 0xd6, 0xf6, 0xac, 0x5d, 0x5d, 0xc1, 0xe2, + 0x4b, 0xcf, 0x5e, 0x6d, 0xee, 0xb5, 0x8c, 0x81, 0x6d, 0xb3, 0x5d, 0xcb, 0x31, 0x5b, 0xec, 0xd5, + 0x5e, 0x63, 0xb1, 0xe7, 0x8a, 0x06, 0x17, 0x3f, 0xb8, 0xb4, 0xb4, 0xf5, 0x37, 0x7b, 0x1b, 0xb1, + 0xca, 0x36, 0x4c, 0x32, 0x8f, 0x3d, 0xbc, 0x2e, 0xdf, 0x84, 0x3d, 0x76, 0x61, 0x8c, 0xd0, 0x58, + 0x22, 0x34, 0x66, 0x58, 0xc6, 0x06, 0xd3, 0x97, 0x13, 0x64, 0x83, 0x4d, 0x37, 0x67, 0xbb, 0xca, + 0xfa, 0xc2, 0x95, 0xf3, 0x45, 0x5d, 0xb9, 0xb9, 0xe5, 0x88, 0x44, 0xe1, 0x60, 0xf4, 0x95, 0x9b, + 0x9b, 0x8f, 0x70, 0x5f, 0x1a, 0x6c, 0x49, 0xce, 0xce, 0x97, 0xff, 0x7b, 0xdb, 0x85, 0x7f, 0xb8, + 0x6a, 0x61, 0xc7, 0x6b, 0xdb, 0x4d, 0xcb, 0x31, 0x9b, 0xdf, 0x2d, 0xd7, 0x65, 0x4e, 0xb0, 0x9b, + 0xdf, 0x56, 0x9e, 0x00, 0xe7, 0xc5, 0x8e, 0xf3, 0x76, 0xd7, 0x0c, 0x8f, 0x0e, 0x4f, 0xa0, 0x68, + 0x78, 0xfc, 0x40, 0x32, 0xaa, 0x86, 0x43, 0x30, 0x83, 0xac, 0x77, 0xba, 0xff, 0x9c, 0x8e, 0xdd, + 0xcc, 0x42, 0x83, 0x28, 0x43, 0xe7, 0x74, 0x84, 0x2c, 0x40, 0x17, 0xb3, 0x5c, 0x92, 0xac, 0xb5, + 0xb7, 0xc0, 0x88, 0x00, 0xcb, 0xa5, 0x2f, 0x30, 0x12, 0x9e, 0x25, 0xf5, 0x04, 0x46, 0xc2, 0xb2, + 0xea, 0xf4, 0x01, 0xab, 0xd5, 0xb1, 0x5d, 0x33, 0x5c, 0x56, 0xdb, 0xc6, 0x53, 0x9f, 0x27, 0xf2, + 0x2e, 0x92, 0x76, 0x61, 0xa2, 0x4c, 0xad, 0xc2, 0xdc, 0x44, 0x4c, 0xae, 0xca, 0xec, 0x64, 0x4c, + 0x4f, 0xc6, 0xfc, 0x74, 0x42, 0x20, 0x19, 0x99, 0x10, 0x3c, 0x7b, 0xe1, 0xa8, 0xe1, 0x36, 0x46, + 0x37, 0xf9, 0x80, 0x9a, 0xc4, 0xf1, 0x4b, 0xcc, 0xd2, 0x9e, 0x3e, 0x2b, 0x36, 0x53, 0x5b, 0x7c, + 0x57, 0x45, 0xba, 0x03, 0xb6, 0x58, 0xd0, 0xf4, 0xed, 0x2e, 0x17, 0x19, 0xa5, 0xbf, 0xb2, 0xa1, + 0xf3, 0x44, 0xa0, 0x39, 0xa0, 0x39, 0x52, 0xab, 0x39, 0x42, 0x77, 0xed, 0xda, 0xa8, 0x2f, 0x2e, + 0x62, 0x20, 0xf3, 0xb6, 0xdb, 0x62, 0x3f, 0xe4, 0xa5, 0x7d, 0xf4, 0x38, 0xe4, 0x1c, 0x72, 0x9e, + 0x5a, 0x39, 0xef, 0xd9, 0x2e, 0xcf, 0xe7, 0x14, 0xe4, 0xbc, 0x2c, 0xf1, 0xa8, 0xdc, 0x7d, 0xe3, + 0xe4, 0x8f, 0x1c, 0x93, 0x1d, 0xab, 0xde, 0x3f, 0x2a, 0x0a, 0xf8, 0x0a, 0x19, 0xc5, 0xfb, 0xc8, + 0x29, 0x1d, 0x82, 0x0b, 0x36, 0x49, 0xf6, 0x5b, 0xdc, 0x5a, 0x85, 0x7b, 0x4a, 0x5d, 0x5b, 0x5b, + 0xc8, 0x55, 0x0a, 0x95, 0x52, 0x39, 0x57, 0x29, 0xc6, 0x68, 0x8f, 0x8f, 0xa2, 0x79, 0xaa, 0x1e, + 0x03, 0xf3, 0xbb, 0x14, 0x71, 0x1e, 0xb9, 0x20, 0xd2, 0xd6, 0x78, 0x2d, 0x35, 0x18, 0x67, 0x18, + 0xe7, 0xd4, 0x1a, 0x67, 0xbb, 0xc5, 0x5c, 0x6e, 0xf3, 0x37, 0x9f, 0xbd, 0xa8, 0x20, 0x71, 0x09, + 0xed, 0x67, 0x7c, 0x19, 0x7f, 0xf5, 0x47, 0x2b, 0x50, 0xe0, 0x9d, 0xc9, 0x42, 0xae, 0xef, 0x3e, + 0x7f, 0xb9, 0xba, 0xbc, 0x6e, 0x54, 0xaf, 0xab, 0x37, 0xd5, 0xdb, 0x5a, 0xe3, 0xfe, 0xe1, 0xae, + 0x76, 0x77, 0x75, 0x77, 0xdd, 0xa8, 0xfd, 0x71, 0x5f, 0x35, 0x54, 0xb2, 0x53, 0x02, 0x69, 0x18, + 0xa1, 0x06, 0x25, 0x16, 0x96, 0x37, 0x58, 0x4e, 0xa3, 0x5a, 0xfb, 0xbd, 0xfa, 0x70, 0x5b, 0xad, + 0x19, 0xfb, 0x30, 0xbf, 0x94, 0x0b, 0xb9, 0xab, 0xdd, 0x1a, 0x11, 0x9b, 0xb7, 0x7a, 0x6c, 0x72, + 0x82, 0xc4, 0xcc, 0x9b, 0xd7, 0x7d, 0xb6, 0x9a, 0x7f, 0x99, 0x1d, 0xaf, 0xa5, 0x64, 0xd7, 0xe6, + 0xc9, 0xc0, 0xa0, 0xc1, 0xa0, 0xa5, 0xd6, 0xa0, 0x2d, 0xb0, 0xfa, 0x7e, 0x23, 0xd2, 0x12, 0xcf, + 0xce, 0x15, 0xa7, 0xdf, 0xde, 0xdd, 0x56, 0x8d, 0x18, 0xa8, 0xa0, 0x61, 0xf9, 0x6e, 0xd3, 0xb1, + 0x82, 0x40, 0x5e, 0xff, 0xcc, 0xd1, 0x80, 0xf2, 0x81, 0xf2, 0x01, 0x9a, 0x8e, 0x3b, 0x9a, 0xae, + 0x3d, 0x7c, 0xf9, 0xf8, 0xb5, 0x76, 0xf9, 0xf0, 0x47, 0xe3, 0xe1, 0xb2, 0x56, 0x6d, 0x5c, 0x5d, + 0x5f, 0x3e, 0x3e, 0xa6, 0x04, 0x49, 0x0f, 0x96, 0x36, 0x5a, 0x55, 0xb9, 0x98, 0xf9, 0x9c, 0x64, + 0x28, 0x3d, 0x5b, 0x49, 0x21, 0x93, 0x96, 0x95, 0xe4, 0x53, 0xb3, 0x92, 0x8b, 0xd4, 0xac, 0xa4, + 0x92, 0x1a, 0x39, 0xc9, 0xa5, 0x66, 0x25, 0xf9, 0xd4, 0xac, 0xa4, 0x94, 0x9a, 0x95, 0x54, 0x52, + 0x23, 0xf1, 0xd9, 0xb4, 0xac, 0x23, 0x35, 0x07, 0x92, 0x49, 0x8f, 0x0e, 0x3e, 0x2b, 0xa6, 0x64, + 0x25, 0xc5, 0xd4, 0xc8, 0x7b, 0x29, 0x3d, 0x9a, 0x2b, 0x35, 0x2b, 0x29, 0xa6, 0x46, 0xe2, 0xb3, + 0xe9, 0x39, 0x94, 0x72, 0x6a, 0x56, 0x92, 0x4b, 0x93, 0xc8, 0xa7, 0xc6, 0x67, 0x4c, 0x51, 0x44, + 0x22, 0x2d, 0xdc, 0x95, 0x9e, 0x23, 0x51, 0x5b, 0xc9, 0x01, 0xdd, 0xba, 0x72, 0x16, 0x70, 0x33, + 0xb0, 0xdb, 0xae, 0xe5, 0xc8, 0xdf, 0x79, 0xcc, 0x13, 0xc1, 0xa5, 0xc7, 0x2e, 0x32, 0xb8, 0xf4, + 0xa0, 0x92, 0x88, 0xc8, 0x2f, 0x3d, 0xc4, 0x5b, 0x18, 0x2f, 0x33, 0x7a, 0xc8, 0x56, 0xc6, 0x9a, + 0x85, 0xde, 0xb7, 0x9f, 0xcd, 0xae, 0xef, 0x71, 0xaf, 0xe9, 0xa9, 0x88, 0xfd, 0x02, 0x19, 0x08, + 0x3e, 0x04, 0x1f, 0xb7, 0x9d, 0xdb, 0x85, 0x3f, 0x4e, 0xb7, 0x9d, 0x69, 0xcc, 0x1a, 0xbc, 0xab, + 0x7d, 0xcd, 0x27, 0x3f, 0x63, 0xf0, 0x2a, 0x5b, 0xc9, 0x25, 0x7e, 0x15, 0x8f, 0xb5, 0x9b, 0x6c, + 0x29, 0xf1, 0xab, 0xc8, 0x66, 0x32, 0x9f, 0xab, 0xc9, 0xe7, 0xa8, 0x4f, 0x5f, 0x73, 0xd5, 0x14, + 0x9c, 0xc5, 0xe7, 0x6a, 0xe3, 0xfa, 0xf2, 0x36, 0x05, 0x29, 0xc1, 0x5f, 0xaf, 0x6e, 0xd3, 0xc0, + 0x54, 0x57, 0xa9, 0x38, 0x8b, 0x14, 0x88, 0xc6, 0x5d, 0xed, 0x6b, 0x36, 0x05, 0xab, 0xb8, 0x2a, + 0x97, 0x2e, 0x52, 0xc1, 0x51, 0x69, 0x58, 0x44, 0x21, 0x0d, 0x1a, 0x2a, 0x9f, 0x0a, 0xdb, 0x9d, + 0x86, 0x45, 0x14, 0xd2, 0x81, 0x3f, 0xfe, 0x27, 0x0d, 0xf8, 0xe3, 0xaa, 0x70, 0x91, 0x0a, 0x64, + 0xde, 0xb8, 0xb9, 0xfe, 0x9c, 0x06, 0x47, 0xa9, 0x94, 0x7c, 0xe1, 0x28, 0xa4, 0xc2, 0x51, 0xca, + 0xa6, 0x60, 0x0d, 0x8f, 0xb5, 0x9b, 0x5c, 0xb1, 0x94, 0x02, 0x86, 0x52, 0x3a, 0x8b, 0xa4, 0x5f, + 0xe1, 0x91, 0xf6, 0x05, 0x14, 0x6c, 0x8a, 0x3e, 0x7d, 0x4e, 0xbe, 0x23, 0xef, 0x72, 0x77, 0xdc, + 0xf3, 0xf1, 0x0f, 0xa1, 0x66, 0xf3, 0x86, 0xdf, 0x84, 0x30, 0x13, 0x4b, 0x18, 0xff, 0xce, 0x7c, + 0x97, 0x49, 0x8c, 0x2c, 0x99, 0x3e, 0x89, 0xd6, 0x9c, 0x68, 0xcd, 0xa9, 0x28, 0x82, 0xc2, 0xad, + 0x39, 0x05, 0xbb, 0xc9, 0xae, 0x1c, 0xb8, 0x50, 0x57, 0x59, 0x49, 0x16, 0x96, 0x66, 0x65, 0x15, + 0x96, 0x26, 0x62, 0x6d, 0x55, 0x16, 0x27, 0x63, 0x75, 0x32, 0x96, 0xa7, 0x63, 0x7d, 0x49, 0xeb, + 0x26, 0x78, 0xf6, 0xa2, 0x22, 0x31, 0x7d, 0xd0, 0x72, 0x02, 0xb3, 0xc5, 0x1c, 0xeb, 0x4d, 0xfd, + 0x3a, 0x6c, 0x46, 0x4a, 0x72, 0xaf, 0xe7, 0xaa, 0x98, 0x33, 0xb2, 0x34, 0x14, 0xe7, 0xca, 0xc8, + 0x0a, 0x1f, 0x85, 0x10, 0x12, 0x0b, 0x23, 0x95, 0x50, 0x92, 0x0b, 0x27, 0xb9, 0x90, 0xd2, 0x0b, + 0xab, 0x1a, 0xf4, 0x95, 0x44, 0xfd, 0xf2, 0x57, 0xeb, 0x2b, 0x9c, 0x23, 0xdd, 0x3b, 0x6f, 0x59, + 0x8e, 0xca, 0x0a, 0x24, 0xd4, 0x7a, 0xe9, 0xd1, 0xf8, 0x41, 0xc7, 0x54, 0xbd, 0xf5, 0x88, 0x14, + 0xcc, 0x0a, 0x39, 0xa2, 0x5e, 0x7b, 0x53, 0x7a, 0x84, 0xfd, 0xe0, 0x08, 0x9c, 0xd8, 0xd9, 0x11, + 0x10, 0xf4, 0xe0, 0xd3, 0x7d, 0x04, 0x54, 0x3d, 0xf9, 0xb4, 0x9e, 0xc5, 0xd1, 0x7e, 0x9e, 0xae, + 0x47, 0xd4, 0x1b, 0x50, 0xa6, 0xf9, 0x49, 0xd3, 0xb1, 0x99, 0xcb, 0x4d, 0xcb, 0x09, 0xd4, 0x31, + 0xcc, 0x1c, 0x2d, 0x75, 0x10, 0x33, 0xed, 0xbb, 0x05, 0x2c, 0x03, 0x2c, 0x03, 0x2c, 0x23, 0xc9, + 0x39, 0xcc, 0xed, 0x75, 0x98, 0x6f, 0x49, 0x34, 0xb6, 0x5f, 0xeb, 0x8d, 0x17, 0x14, 0x68, 0xc8, + 0x0d, 0x0d, 0x50, 0xd0, 0x86, 0x5a, 0x7d, 0x46, 0xc9, 0x48, 0xa6, 0xce, 0x88, 0xe6, 0x24, 0x4a, + 0x28, 0x14, 0xda, 0x14, 0xdf, 0x2d, 0xa1, 0x56, 0x7a, 0x4e, 0xab, 0xab, 0xd0, 0x41, 0x6f, 0xf0, + 0x34, 0xe2, 0x46, 0x88, 0x1b, 0xa5, 0x2d, 0x6e, 0x24, 0x19, 0x52, 0xa5, 0x09, 0xad, 0x2a, 0x8a, + 0x0a, 0x10, 0x12, 0x10, 0xd2, 0xfe, 0x11, 0x92, 0xac, 0xe8, 0x4d, 0x09, 0x30, 0xd7, 0x7a, 0x76, + 0x58, 0x4b, 0xfd, 0xa8, 0x67, 0x48, 0x6b, 0x44, 0x50, 0xf1, 0x5c, 0xe6, 0x3c, 0xa0, 0x17, 0xcb, + 0x09, 0x98, 0x2a, 0x3d, 0xa2, 0xd6, 0xfb, 0xaa, 0xc2, 0x4e, 0x29, 0xf4, 0x9a, 0x84, 0x9f, 0x5a, + 0x09, 0x68, 0x53, 0x06, 0xda, 0x94, 0x82, 0x3e, 0xe5, 0x40, 0x14, 0x81, 0x51, 0xe4, 0x3d, 0x65, + 0xb7, 0x6a, 0x85, 0xf3, 0xe4, 0xcb, 0x30, 0x37, 0x5a, 0xe3, 0xec, 0x9e, 0x82, 0x54, 0x2a, 0x43, + 0x42, 0x02, 0xd7, 0xf3, 0xba, 0xb6, 0xdb, 0xa6, 0xd3, 0xa6, 0x53, 0x8a, 0x50, 0xa7, 0x50, 0xa7, + 0x50, 0xa7, 0x50, 0xa7, 0x89, 0x53, 0xa7, 0x91, 0xc2, 0x61, 0xc5, 0x68, 0x54, 0x24, 0x51, 0x29, + 0xc7, 0x69, 0x75, 0xa5, 0x42, 0x53, 0x0a, 0x21, 0x40, 0x89, 0x68, 0x8a, 0xcb, 0xec, 0xf6, 0xf7, + 0x67, 0xcf, 0x27, 0xb8, 0x0f, 0x99, 0x91, 0xda, 0xb3, 0x87, 0x9e, 0x83, 0x87, 0x0e, 0x0f, 0x3d, + 0x69, 0x1e, 0xfa, 0x44, 0x7a, 0xe8, 0x40, 0xe5, 0x94, 0x22, 0x0d, 0x08, 0xcc, 0x02, 0x04, 0x02, + 0x04, 0x1e, 0x3a, 0x08, 0x54, 0x15, 0xf3, 0x29, 0x21, 0xc5, 0x98, 0xf8, 0x46, 0x46, 0x56, 0x8a, + 0x91, 0x6b, 0x12, 0x7d, 0x72, 0x15, 0xa0, 0x43, 0x15, 0x68, 0x56, 0x09, 0xba, 0x54, 0x83, 0x76, + 0x15, 0xa1, 0x5d, 0x55, 0xe8, 0x57, 0x19, 0x34, 0xaa, 0x83, 0x48, 0x85, 0x50, 0x3b, 0x31, 0xd1, + 0x3b, 0x35, 0x53, 0x9c, 0x3f, 0xfd, 0x49, 0xc9, 0xcf, 0xa1, 0x3f, 0x25, 0x8a, 0x24, 0xc4, 0x66, + 0x2f, 0xe0, 0x5e, 0xc7, 0xe4, 0xce, 0x6b, 0xa0, 0x41, 0x49, 0xcf, 0x11, 0x8f, 0xb9, 0xa6, 0xce, + 0x25, 0x43, 0x53, 0x4b, 0xe4, 0x4e, 0x40, 0x4b, 0x53, 0x68, 0xe9, 0xe1, 0xc6, 0xa7, 0x54, 0x43, + 0x53, 0x81, 0xbd, 0x29, 0x41, 0xee, 0xbc, 0xd2, 0xb3, 0xd4, 0xb4, 0x2b, 0xa4, 0xf3, 0x4a, 0xcd, + 0x4c, 0xb4, 0x4a, 0x45, 0x1b, 0x0c, 0xd4, 0xa9, 0x64, 0x22, 0x50, 0x36, 0xba, 0x95, 0x4e, 0x64, + 0xca, 0x27, 0x32, 0x25, 0x14, 0x8d, 0x32, 0xa2, 0x55, 0x4a, 0xc4, 0xca, 0x49, 0x9b, 0x92, 0xd2, + 0xe5, 0xa1, 0x46, 0xe3, 0xb1, 0x46, 0xa4, 0xc2, 0xb4, 0xab, 0xb2, 0x28, 0x54, 0x5a, 0x84, 0xaa, + 0x2d, 0x2a, 0x15, 0x17, 0xb9, 0xaa, 0x8b, 0x5c, 0xe5, 0x45, 0xab, 0xfa, 0xf4, 0xa8, 0x40, 0x4d, + 0xaa, 0x50, 0xb7, 0x67, 0x1d, 0x0f, 0x4f, 0x7b, 0xe6, 0x3a, 0x9e, 0x73, 0xe7, 0x95, 0xd4, 0xf3, + 0xd6, 0x7f, 0xea, 0x1a, 0x4e, 0xdc, 0xf0, 0x7a, 0xb6, 0x7e, 0x23, 0x35, 0xf8, 0x12, 0xbd, 0x16, + 0x2a, 0x03, 0x0b, 0x05, 0x0b, 0x05, 0x0b, 0x75, 0x18, 0x16, 0x8a, 0x2c, 0x97, 0x68, 0xa7, 0xc4, + 0x38, 0xcc, 0x7a, 0x91, 0x6b, 0x9e, 0x2f, 0x0c, 0xb1, 0xcb, 0x1a, 0xbf, 0xe3, 0x7e, 0x6c, 0x64, + 0xcf, 0xce, 0xce, 0x03, 0x6e, 0x71, 0x76, 0x3e, 0x50, 0xc8, 0x87, 0x6d, 0xf4, 0xcc, 0xa0, 0xf7, + 0xcc, 0x75, 0xf2, 0xd1, 0xbc, 0xf1, 0x9b, 0x7e, 0x19, 0x8c, 0x20, 0x8c, 0x20, 0x8c, 0x20, 0x8c, + 0x20, 0x8c, 0x60, 0x3c, 0x8c, 0xe0, 0x54, 0x31, 0x1f, 0xb0, 0x31, 0x1c, 0x6e, 0x86, 0x7e, 0x33, + 0x38, 0xfa, 0x9a, 0x84, 0xc7, 0x29, 0x73, 0x30, 0x80, 0x30, 0x80, 0x30, 0x80, 0xb1, 0x30, 0x80, + 0xba, 0xae, 0x6e, 0x22, 0x09, 0x8d, 0xad, 0xf3, 0x12, 0x74, 0x33, 0xaf, 0x5e, 0x2f, 0x21, 0x32, + 0x6f, 0x21, 0x4a, 0xa5, 0xb9, 0x07, 0xe5, 0x19, 0xb5, 0x12, 0xdd, 0x9b, 0x32, 0xdd, 0x9b, 0x52, + 0xdd, 0x8f, 0x72, 0xd5, 0xab, 0x64, 0x35, 0x2b, 0xdb, 0xe8, 0xbc, 0x8e, 0x35, 0xb8, 0xd1, 0x57, + 0x2f, 0xed, 0x15, 0x02, 0x91, 0x17, 0x47, 0xc9, 0x3c, 0x7f, 0x8d, 0x67, 0x1f, 0x49, 0xc4, 0x6c, + 0x9d, 0x4d, 0xd4, 0x1c, 0x39, 0x83, 0x6d, 0x84, 0x6d, 0x84, 0x6d, 0x84, 0x6d, 0x84, 0x6d, 0x84, + 0x6d, 0x94, 0xde, 0x9b, 0x68, 0x8d, 0x22, 0xac, 0x21, 0xac, 0x21, 0xac, 0x21, 0xac, 0x21, 0xac, + 0xe1, 0xb2, 0xc4, 0xa9, 0x4e, 0x62, 0x10, 0x55, 0x8f, 0xf9, 0x08, 0xbe, 0x8a, 0x66, 0xb2, 0x43, + 0xd8, 0x3f, 0xd1, 0xe8, 0x8f, 0x63, 0xea, 0x49, 0x11, 0xc2, 0x28, 0xe6, 0x5d, 0xb4, 0x5f, 0x3b, + 0x19, 0x7b, 0x90, 0xcb, 0x16, 0xca, 0x85, 0x8b, 0x7c, 0xa9, 0x70, 0x11, 0xf1, 0x0b, 0x68, 0x18, + 0x8f, 0x10, 0x13, 0x35, 0xb3, 0xc8, 0x53, 0xd6, 0x8f, 0xbd, 0xf1, 0x54, 0x66, 0xdf, 0x3c, 0x55, + 0x3e, 0x20, 0x9e, 0x3a, 0x4a, 0xc7, 0xb7, 0xd4, 0xe1, 0x4c, 0xad, 0xb0, 0xd5, 0xeb, 0x98, 0xaf, + 0x23, 0xf2, 0xa6, 0x46, 0x5f, 0x07, 0x77, 0x0a, 0xee, 0x14, 0xdc, 0x29, 0xb8, 0x53, 0x70, 0xa7, + 0xe6, 0xfb, 0x6b, 0xda, 0xae, 0xe5, 0xbf, 0x45, 0xe8, 0x4f, 0x55, 0x92, 0x6a, 0x0e, 0x51, 0xde, + 0xb7, 0xe6, 0x7b, 0xe2, 0x50, 0xde, 0x37, 0xca, 0x39, 0x3c, 0xe0, 0xdc, 0xce, 0x68, 0x2a, 0x1c, + 0x50, 0xda, 0xb0, 0x57, 0xac, 0x84, 0xcc, 0xce, 0x04, 0x62, 0x21, 0x64, 0x76, 0xee, 0x11, 0xeb, + 0xa4, 0xbe, 0xb4, 0x21, 0x51, 0x35, 0x0d, 0xb1, 0x6e, 0x10, 0xf3, 0x6f, 0xf6, 0x36, 0x31, 0x71, + 0xc7, 0x5e, 0xcf, 0x3e, 0xd6, 0x97, 0x93, 0x64, 0x5c, 0xdb, 0x01, 0xbf, 0xe4, 0x5c, 0x53, 0x43, + 0x9a, 0x1b, 0xdb, 0xad, 0x3a, 0x6c, 0xa0, 0x71, 0x02, 0xe3, 0xfd, 0xb1, 0xdb, 0x73, 0x1c, 0x0d, + 0x78, 0xe3, 0xc6, 0xfa, 0xa1, 0xff, 0x4b, 0xee, 0xfc, 0x16, 0xf3, 0x59, 0xeb, 0xe3, 0xdb, 0xf8, + 0x2b, 0x62, 0xcd, 0x3f, 0x9a, 0xe1, 0x76, 0x1c, 0x60, 0xb6, 0xa1, 0xa5, 0x28, 0xc9, 0xef, 0x35, + 0xb9, 0x3b, 0x56, 0xd3, 0xb5, 0xf1, 0xab, 0x7f, 0x1a, 0xbe, 0x79, 0xe3, 0x6a, 0xf4, 0xa2, 0x8d, + 0xea, 0xf8, 0x45, 0x1b, 0xd7, 0x4e, 0xab, 0xdb, 0xb8, 0x1d, 0xbf, 0x5e, 0xa3, 0xe6, 0xbc, 0xd2, + 0xea, 0xbe, 0x3e, 0x7a, 0xa8, 0x26, 0x89, 0x27, 0xd3, 0xd4, 0x48, 0xd5, 0x6e, 0xd1, 0xf7, 0x4f, + 0xb5, 0x5b, 0xc4, 0x6d, 0x53, 0x33, 0x68, 0x70, 0x1d, 0x77, 0x07, 0x0b, 0x0d, 0xae, 0x93, 0xa6, + 0x9c, 0xc9, 0x9d, 0x20, 0x8d, 0x4e, 0x8f, 0x0e, 0x27, 0x67, 0xd5, 0xa9, 0xb1, 0x5b, 0x69, 0xd2, + 0xec, 0xb4, 0x65, 0xd7, 0x5a, 0xca, 0xac, 0x0f, 0xbd, 0x2d, 0x36, 0xf4, 0x3b, 0xf4, 0xbb, 0x36, + 0xfd, 0x4e, 0xde, 0x1e, 0xdb, 0x6a, 0x33, 0x7d, 0xed, 0xb1, 0x07, 0xc4, 0xf5, 0xb4, 0xc7, 0xce, + 0xa0, 0x3d, 0x36, 0xda, 0x63, 0xc7, 0x49, 0x11, 0x6d, 0x52, 0x48, 0x87, 0xd8, 0x1e, 0x5b, 0x5b, + 0x24, 0x7e, 0xca, 0xf1, 0x3d, 0xdb, 0xe5, 0xa5, 0x82, 0x0e, 0x86, 0x1f, 0xeb, 0x17, 0x0d, 0xb9, + 0xb6, 0x9a, 0xb3, 0xb2, 0x35, 0xde, 0x7b, 0x44, 0x91, 0x75, 0x1d, 0x55, 0xba, 0xdb, 0x24, 0x03, + 0x56, 0xf7, 0xf7, 0x44, 0x98, 0xe8, 0xaa, 0x33, 0xb1, 0x32, 0x8a, 0xe4, 0xe8, 0xa8, 0x8f, 0x3e, + 0x7b, 0x51, 0x28, 0x94, 0xca, 0x85, 0x42, 0xa6, 0x9c, 0x2f, 0x67, 0x2a, 0xc5, 0x62, 0xb6, 0x94, + 0x2d, 0xa6, 0x88, 0x1b, 0x12, 0x72, 0x81, 0x57, 0x8f, 0x6b, 0xb0, 0x9d, 0xd0, 0x6d, 0x6b, 0x7e, + 0xb7, 0x82, 0xc0, 0x0e, 0x4c, 0xc2, 0x78, 0xec, 0x8a, 0x29, 0x9c, 0xfb, 0x0e, 0x40, 0x6d, 0x40, + 0x6d, 0x40, 0x6d, 0x40, 0x6d, 0x52, 0x8e, 0xd7, 0xd6, 0x2d, 0x40, 0x53, 0x77, 0x80, 0xb8, 0x5b, + 0x02, 0x53, 0x4b, 0x76, 0xe5, 0x1a, 0x73, 0x60, 0xea, 0xc8, 0x36, 0x81, 0x4d, 0x80, 0x4d, 0x80, + 0x4d, 0x38, 0x74, 0x9b, 0xa0, 0x57, 0xc9, 0x2c, 0x18, 0x87, 0x82, 0x06, 0xda, 0x55, 0xb7, 0xd7, + 0x19, 0x6c, 0x50, 0xff, 0x00, 0x0c, 0x8f, 0x4e, 0xd7, 0x03, 0x2e, 0x07, 0xcc, 0x0b, 0xcc, 0x0b, + 0xcc, 0x0b, 0x5c, 0x8e, 0x38, 0x6a, 0x7e, 0xc7, 0x0a, 0xb8, 0xd9, 0xeb, 0xb6, 0x74, 0xf4, 0xe9, + 0x9f, 0x65, 0x05, 0xcd, 0x7d, 0x09, 0x6c, 0x01, 0x6c, 0x01, 0x6c, 0x01, 0x6c, 0x01, 0x2d, 0xc6, + 0xd4, 0x7c, 0xd1, 0x5b, 0xc0, 0x45, 0xef, 0xec, 0xc5, 0xa3, 0xbc, 0xe8, 0xcd, 0x46, 0x74, 0xdb, + 0x57, 0xc9, 0xe5, 0xf2, 0xf9, 0x72, 0x2e, 0x93, 0x2f, 0x5d, 0x14, 0x0b, 0xe5, 0x72, 0xf1, 0x22, + 0x73, 0x81, 0xab, 0xdf, 0x50, 0xcc, 0x90, 0xc2, 0xab, 0xdf, 0x55, 0x66, 0x28, 0xe3, 0xe6, 0x37, + 0x6a, 0xaa, 0x87, 0x70, 0xf3, 0xdb, 0xb1, 0x5c, 0xab, 0x3d, 0x2c, 0x69, 0x34, 0xad, 0x56, 0xcb, + 0x67, 0x41, 0xa0, 0x0f, 0x83, 0xaf, 0xf9, 0x2e, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, + 0x84, 0x65, 0x12, 0x60, 0x19, 0x34, 0xdf, 0x08, 0x6f, 0xfa, 0x42, 0xd8, 0x08, 0xd8, 0x08, 0xd8, + 0x08, 0xd8, 0x08, 0xd8, 0x88, 0xd8, 0xd9, 0x88, 0xae, 0xe7, 0x73, 0xb3, 0xc5, 0x82, 0xa6, 0x6f, + 0x77, 0xb5, 0x34, 0x01, 0x99, 0x9e, 0xd7, 0xca, 0x37, 0xc1, 0x2a, 0xc0, 0x2a, 0xc0, 0x2a, 0xc0, + 0x2a, 0xc0, 0x2a, 0xc4, 0xd3, 0x2a, 0xe8, 0xcc, 0xe7, 0x99, 0x7c, 0x01, 0x6c, 0x00, 0x6c, 0x00, + 0x6c, 0x00, 0x6c, 0x00, 0x6c, 0x40, 0x5c, 0x6d, 0x80, 0xe6, 0x90, 0xd1, 0xc2, 0xb7, 0xc0, 0x1a, + 0xc0, 0x1a, 0xc0, 0x1a, 0xc0, 0x1a, 0x24, 0x45, 0xc3, 0x1c, 0xa3, 0x7c, 0x80, 0xb0, 0x29, 0xe7, + 0x5b, 0xc0, 0x59, 0x27, 0x9a, 0x58, 0xd4, 0x9a, 0xef, 0x82, 0xed, 0x81, 0xed, 0x81, 0xed, 0x81, + 0xed, 0x49, 0x9a, 0x27, 0xa2, 0x81, 0xf6, 0x35, 0x73, 0xdb, 0xc3, 0xd6, 0x96, 0xc8, 0x2a, 0x8d, + 0x4e, 0xb5, 0xaf, 0x7c, 0x0d, 0xda, 0x07, 0x89, 0x1d, 0x7d, 0x0a, 0x73, 0x48, 0x73, 0x45, 0x74, + 0x0b, 0x8a, 0x9c, 0x6a, 0xfd, 0x70, 0xb0, 0xf6, 0x78, 0x7c, 0x81, 0x5e, 0x90, 0x3d, 0xfc, 0x12, + 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, 0xa0, 0x6b, + 0xa0, 0x6b, 0xa0, 0xeb, 0xd4, 0xa2, 0x6b, 0xce, 0x1d, 0x7d, 0xa8, 0x7a, 0x40, 0x1c, 0x68, 0x1a, + 0x68, 0x1a, 0x68, 0x1a, 0x68, 0x9a, 0x94, 0xe3, 0x7b, 0xb6, 0xcb, 0xb3, 0x25, 0x8d, 0x68, 0xba, + 0x84, 0xfe, 0x07, 0xc0, 0xd2, 0xc0, 0xd2, 0xa9, 0xc4, 0xd2, 0xa5, 0x62, 0x31, 0x0f, 0x34, 0x0d, + 0x34, 0x4d, 0x4a, 0x09, 0x63, 0x64, 0x57, 0xc7, 0xc8, 0x8e, 0xc6, 0xe7, 0xc5, 0x65, 0xcc, 0xe0, + 0xd1, 0x1e, 0x8f, 0x77, 0x32, 0xf9, 0x5c, 0xb9, 0x8a, 0x80, 0x76, 0xae, 0xb9, 0x96, 0x39, 0xe6, + 0x5a, 0xe6, 0x96, 0xd3, 0xce, 0x29, 0x57, 0x3d, 0x4d, 0x62, 0x21, 0xdd, 0x87, 0x70, 0x1a, 0x24, + 0x53, 0x37, 0xa5, 0xe7, 0x8a, 0xab, 0x69, 0x05, 0x79, 0x59, 0x96, 0x7b, 0x52, 0x92, 0x5f, 0xa8, + 0xf8, 0x24, 0x42, 0xfe, 0x90, 0x3b, 0x17, 0xf1, 0x5d, 0x95, 0xd8, 0x51, 0xc5, 0x21, 0xaf, 0x24, + 0x43, 0x5d, 0x15, 0xbb, 0xb4, 0x29, 0x0f, 0x6d, 0xa5, 0x08, 0x27, 0x11, 0x0f, 0x65, 0xa5, 0x0a, + 0x11, 0x91, 0x87, 0x82, 0xc8, 0x43, 0x3e, 0xf4, 0x43, 0x55, 0xa3, 0xd5, 0x46, 0xaa, 0x43, 0x52, + 0x8d, 0xa6, 0xd7, 0x73, 0x39, 0xf3, 0xd5, 0x7b, 0x76, 0xcd, 0x3a, 0xe6, 0x4f, 0x28, 0xaa, 0xc2, + 0x2b, 0x92, 0xe6, 0x89, 0x64, 0x51, 0x60, 0xca, 0xa8, 0xaf, 0x86, 0x28, 0x2f, 0x75, 0x54, 0x57, + 0x5b, 0x14, 0x57, 0x5b, 0xd4, 0x56, 0x4f, 0x94, 0x76, 0xbf, 0x2e, 0x06, 0xd5, 0x0c, 0x64, 0xe3, + 0xc5, 0xb7, 0x3a, 0xcc, 0x6c, 0xd9, 0x41, 0xd3, 0xf2, 0x5b, 0xf4, 0x43, 0xd5, 0x17, 0xc9, 0xd3, + 0x0e, 0x57, 0xcf, 0x50, 0x0f, 0x57, 0xcf, 0x24, 0x63, 0xb8, 0x3a, 0xf1, 0xf5, 0x0f, 0x06, 0xab, + 0x47, 0xab, 0x38, 0xe2, 0x19, 0x8a, 0x22, 0xbf, 0xc6, 0x59, 0x36, 0xfb, 0xa4, 0x1d, 0xac, 0x35, + 0x8c, 0x28, 0xd6, 0x74, 0x63, 0xa3, 0xe1, 0x5e, 0x4c, 0xe7, 0x0d, 0x8d, 0xe6, 0xf0, 0xbc, 0xee, + 0x1b, 0x99, 0x28, 0x42, 0xf1, 0x1a, 0x6e, 0x60, 0xb4, 0xde, 0xbc, 0x44, 0x75, 0xa4, 0xd1, 0x8d, + 0x14, 0x8e, 0xe4, 0x94, 0x63, 0x7a, 0x81, 0x51, 0x8f, 0x4b, 0x84, 0xfd, 0x1d, 0x15, 0xf6, 0x64, + 0xbe, 0xef, 0xf9, 0x26, 0xa1, 0x4e, 0x5b, 0x02, 0x9f, 0x53, 0xfa, 0x40, 0x9f, 0x40, 0x9f, 0x40, + 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x40, 0x9f, 0x63, + 0x74, 0xe8, 0xf5, 0xb8, 0x5e, 0xf8, 0x39, 0xf8, 0x02, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, + 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0xe0, 0x4f, 0x8d, 0x71, 0x4f, + 0x44, 0x3c, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, + 0x81, 0x38, 0x81, 0x38, 0x07, 0xb8, 0x50, 0x63, 0xac, 0x13, 0x51, 0x4e, 0x60, 0x4e, 0x60, 0x4e, + 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0x4e, 0x60, 0xce, 0x83, 0xc7, 0x9c, 0x8e, + 0x15, 0x70, 0xb3, 0xe9, 0x30, 0xcb, 0xa7, 0x07, 0x9d, 0x73, 0xb4, 0x81, 0x3a, 0x81, 0x3a, 0x81, + 0x3a, 0x0f, 0x0c, 0x75, 0xb6, 0x2c, 0xce, 0x4c, 0xcb, 0x6d, 0x99, 0xdc, 0x26, 0xed, 0xe4, 0xae, + 0xa3, 0xcb, 0xb2, 0x71, 0x6f, 0x71, 0xce, 0x7c, 0x97, 0x1c, 0x7c, 0x1a, 0x4f, 0x4f, 0xad, 0x9f, + 0x85, 0xbe, 0x39, 0xf8, 0x2b, 0x37, 0xf9, 0xab, 0x36, 0xfa, 0xeb, 0xfd, 0xc2, 0x5f, 0x27, 0x4f, + 0x4f, 0x67, 0x4f, 0x4f, 0xad, 0x7f, 0x9d, 0x7e, 0x38, 0xf9, 0xf3, 0xd7, 0xb7, 0xa7, 0xa7, 0x7f, + 0x3d, 0x3d, 0x99, 0xf5, 0x85, 0x4f, 0x9c, 0x1a, 0xb0, 0x61, 0x6b, 0x76, 0x98, 0x3b, 0xaf, 0xfa, + 0x2a, 0x64, 0xe7, 0x89, 0xc3, 0x8a, 0xc1, 0x8a, 0xc1, 0x8a, 0x21, 0x76, 0x82, 0xd8, 0x09, 0x62, + 0x27, 0x88, 0x9d, 0x20, 0x76, 0x82, 0xd8, 0xc9, 0xc1, 0xe3, 0xce, 0x9e, 0xfb, 0x97, 0xeb, 0xfd, + 0x3f, 0x57, 0x0f, 0xee, 0x9c, 0x10, 0x07, 0xee, 0x04, 0xee, 0x04, 0xee, 0x04, 0xee, 0x04, 0xee, + 0x04, 0xee, 0x04, 0xee, 0x04, 0xee, 0x04, 0xee, 0x4c, 0x2e, 0xee, 0x44, 0xaf, 0x6c, 0x91, 0x5e, + 0xc8, 0xc3, 0xfe, 0xc0, 0xe7, 0x44, 0x9d, 0x49, 0x8f, 0x25, 0xfb, 0x64, 0x5f, 0x4d, 0xbe, 0x7e, + 0x5f, 0x7d, 0xb2, 0x15, 0x1a, 0x02, 0x33, 0xd7, 0x7a, 0x76, 0x58, 0x8b, 0xae, 0x4b, 0xec, 0x84, + 0xa0, 0x6a, 0x83, 0x4c, 0xf6, 0x62, 0xf5, 0x9c, 0x21, 0x42, 0x7c, 0xb1, 0x9c, 0x80, 0x11, 0x35, + 0x9d, 0xcd, 0xa4, 0xbc, 0xe9, 0x2c, 0x41, 0x8f, 0x68, 0x5d, 0xfe, 0x4b, 0xf2, 0x1b, 0xcf, 0xaa, + 0xf7, 0x90, 0x8e, 0x87, 0x96, 0x27, 0xf3, 0x49, 0xa6, 0x9c, 0xf7, 0xec, 0x79, 0x0e, 0xb3, 0x28, + 0x02, 0x11, 0xd3, 0xbb, 0xdb, 0x6c, 0x02, 0x95, 0x69, 0xe0, 0x7a, 0x5e, 0xd7, 0x76, 0xdb, 0x74, + 0xda, 0x74, 0x4a, 0x11, 0xea, 0x14, 0xea, 0x14, 0xea, 0x14, 0xea, 0x34, 0x71, 0xea, 0x14, 0x33, + 0x5c, 0x36, 0xfa, 0x2d, 0x91, 0xcd, 0x6f, 0x39, 0xd2, 0xb8, 0xf7, 0xaa, 0x7b, 0xae, 0x7d, 0xaf, + 0x0d, 0xa9, 0xe9, 0x35, 0xa2, 0x4e, 0xa0, 0xd8, 0x59, 0x86, 0x3f, 0x11, 0x81, 0xd3, 0x90, 0x9c, + 0xb9, 0xa3, 0x34, 0x6b, 0x47, 0x72, 0x98, 0x87, 0xf4, 0x6c, 0x1d, 0x15, 0x43, 0x4f, 0x64, 0xd8, + 0x55, 0x0d, 0x39, 0x99, 0xe1, 0x26, 0x33, 0xd4, 0x74, 0x86, 0x59, 0xaf, 0xa6, 0x91, 0x1d, 0x9a, + 0x61, 0x58, 0x4e, 0x60, 0xb6, 0x98, 0x63, 0xbd, 0xa9, 0x0f, 0xa4, 0x9a, 0x91, 0x92, 0x1d, 0xec, + 0x33, 0x43, 0xe2, 0x19, 0xc5, 0xc1, 0x56, 0x19, 0xd5, 0xc1, 0x56, 0x19, 0x0c, 0xb6, 0xd2, 0x8d, + 0xaa, 0x31, 0xd8, 0x8a, 0x1a, 0x2d, 0x2f, 0xcc, 0x15, 0xcf, 0xe7, 0x54, 0x98, 0x66, 0x2c, 0x47, + 0x65, 0x05, 0x12, 0x34, 0xb7, 0x9b, 0x34, 0xd3, 0x41, 0x09, 0x7d, 0x4b, 0xda, 0x4c, 0x10, 0xe2, + 0xdb, 0x49, 0x1d, 0xf7, 0x54, 0x7d, 0x9a, 0x59, 0xaa, 0xb1, 0x3f, 0x82, 0x42, 0xae, 0x52, 0xa8, + 0x94, 0xca, 0xb9, 0x4a, 0x31, 0xc6, 0x67, 0xb1, 0x27, 0x5f, 0xb5, 0x1e, 0xe3, 0x79, 0x9a, 0x4d, + 0xc7, 0x66, 0x2e, 0x37, 0x2d, 0x27, 0x50, 0xc7, 0x30, 0x73, 0xb4, 0xd4, 0x41, 0x4c, 0xb5, 0xf6, + 0x7b, 0xf5, 0xe1, 0xb6, 0x5a, 0x03, 0x96, 0x01, 0x96, 0x01, 0x96, 0x91, 0xe5, 0x1c, 0xe6, 0xf6, + 0x3a, 0xcc, 0x1f, 0x45, 0x51, 0xd4, 0x01, 0x4d, 0xb6, 0xa0, 0x40, 0xa3, 0xea, 0xf6, 0x3a, 0x83, + 0x45, 0xf5, 0x63, 0xac, 0x0d, 0x6d, 0xd7, 0xbc, 0xc8, 0xe4, 0xb2, 0xff, 0x6b, 0x0e, 0xfb, 0xd6, + 0x10, 0xa8, 0xc4, 0x65, 0x82, 0x50, 0x66, 0x03, 0x79, 0x64, 0xfc, 0x3b, 0xf4, 0x98, 0x84, 0x1e, + 0x1b, 0xec, 0xdb, 0xc1, 0xa9, 0x30, 0x8a, 0x7c, 0x54, 0x82, 0xfc, 0x53, 0x78, 0x64, 0xf0, 0xc8, + 0x12, 0xe5, 0x91, 0xe9, 0xcb, 0xef, 0x84, 0x6f, 0x16, 0x19, 0x1a, 0x79, 0x76, 0xbc, 0xe6, 0x5f, + 0xa3, 0x59, 0x21, 0x34, 0x68, 0x64, 0x81, 0x20, 0xd0, 0x08, 0xd0, 0x08, 0xd0, 0x08, 0xd0, 0x08, + 0xd0, 0x08, 0xd0, 0x08, 0xd0, 0x08, 0xd0, 0xc8, 0x2e, 0x34, 0xd2, 0xf4, 0x9b, 0x94, 0x58, 0x64, + 0x8e, 0x1c, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, 0x90, 0x08, + 0x90, 0xc8, 0x2e, 0x24, 0xf2, 0xe2, 0x5b, 0xed, 0x81, 0x01, 0xa0, 0xbc, 0xa8, 0x59, 0xa6, 0x09, + 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0x02, 0x4c, 0xb2, + 0x0b, 0x93, 0xfc, 0x5f, 0xeb, 0xf9, 0x99, 0xf9, 0x94, 0x88, 0x64, 0x91, 0x22, 0xf0, 0x08, 0xf0, + 0x08, 0xf0, 0x08, 0xf0, 0x08, 0xf0, 0x08, 0xf0, 0x08, 0xf0, 0x08, 0xf0, 0xc8, 0x2e, 0x3c, 0xd2, + 0xb1, 0x9a, 0x66, 0xd3, 0x73, 0xb9, 0xef, 0x39, 0x94, 0xa0, 0x64, 0x0d, 0x59, 0x20, 0x13, 0x20, + 0x13, 0x20, 0x13, 0x20, 0x13, 0x20, 0x13, 0x20, 0x13, 0x20, 0x13, 0x20, 0x93, 0x30, 0xc8, 0xa4, + 0x6b, 0xf5, 0x02, 0x46, 0x8d, 0x4b, 0x16, 0x88, 0x02, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, + 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0xec, 0x42, 0x25, 0xde, 0x2b, 0xf3, 0x03, 0xfb, + 0x6f, 0x52, 0x50, 0xb2, 0x4c, 0x13, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, 0x98, 0x04, + 0x98, 0x04, 0x98, 0x04, 0x98, 0x64, 0x17, 0x26, 0xe9, 0x36, 0x03, 0xf3, 0xd9, 0xee, 0x52, 0x56, + 0xdd, 0x2c, 0x91, 0x04, 0x22, 0x41, 0x7b, 0x25, 0x45, 0x58, 0x72, 0xb8, 0xed, 0x95, 0x80, 0x4d, + 0x80, 0x4d, 0x80, 0x4d, 0x80, 0x4d, 0x0e, 0x16, 0x9b, 0x0c, 0x41, 0x04, 0x6b, 0x99, 0x01, 0x6b, + 0x7a, 0x6e, 0x8b, 0x0e, 0xa0, 0x2c, 0xd3, 0x05, 0x4a, 0x01, 0x4a, 0x01, 0x4a, 0x01, 0x4a, 0x01, + 0x4a, 0x01, 0x4a, 0x01, 0x4a, 0x01, 0x4a, 0x11, 0x43, 0x29, 0x01, 0x7b, 0x65, 0x3e, 0x73, 0xde, + 0xb4, 0xc1, 0x95, 0x8d, 0x5f, 0x00, 0xdc, 0x02, 0xdc, 0x02, 0xdc, 0x02, 0xdc, 0x02, 0xdc, 0x02, + 0xdc, 0x02, 0xdc, 0x02, 0xdc, 0x22, 0x86, 0x5b, 0x7a, 0xae, 0xf5, 0x6a, 0xd9, 0x8e, 0xf5, 0xec, + 0x30, 0x72, 0xc8, 0xb2, 0x8e, 0x36, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x0a, + 0xd0, 0x0a, 0xd0, 0x0a, 0xd0, 0x4a, 0x78, 0xb4, 0xd2, 0x73, 0x5b, 0xf4, 0xc9, 0xb3, 0x2b, 0x44, + 0x81, 0x4f, 0x90, 0x3d, 0x2b, 0x0f, 0x4d, 0x90, 0x3d, 0x0b, 0x54, 0x02, 0x54, 0x02, 0x54, 0x02, + 0x54, 0x72, 0x10, 0xa8, 0xc4, 0xeb, 0x71, 0xe2, 0x61, 0x7e, 0x2b, 0x14, 0x81, 0x47, 0x80, 0x47, + 0x80, 0x47, 0x80, 0x47, 0x80, 0x47, 0x80, 0x47, 0x80, 0x47, 0x80, 0x47, 0x76, 0xe2, 0x11, 0xda, + 0x71, 0x7e, 0x2b, 0x14, 0x81, 0x47, 0x70, 0x7f, 0xa3, 0x08, 0x4a, 0x70, 0x7f, 0x03, 0x64, 0x02, + 0x64, 0x02, 0x64, 0x02, 0x64, 0x72, 0x58, 0xc8, 0x84, 0x72, 0xb4, 0xdf, 0x12, 0x3d, 0xa0, 0x12, + 0xa0, 0x12, 0xa0, 0x12, 0xa0, 0x12, 0xa0, 0x12, 0xa0, 0x12, 0xa0, 0x12, 0xa0, 0x12, 0x01, 0x54, + 0xa2, 0xa3, 0x85, 0xfd, 0x06, 0xba, 0x40, 0x29, 0xb8, 0xcb, 0x91, 0x07, 0x28, 0xb8, 0xcb, 0x01, + 0x36, 0x01, 0x36, 0x01, 0x36, 0x01, 0x36, 0x39, 0x28, 0x6c, 0x42, 0xdb, 0xc4, 0x7e, 0x2d, 0x55, + 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x12, 0xe0, 0x92, + 0x9d, 0xb8, 0x84, 0xba, 0x65, 0xec, 0x1a, 0x9a, 0xc0, 0x24, 0xb8, 0xd1, 0x51, 0x04, 0x26, 0xb8, + 0xd1, 0x01, 0x3a, 0x01, 0x3a, 0x01, 0x3a, 0x01, 0x3a, 0x49, 0x28, 0x3a, 0x39, 0xd2, 0xc8, 0xa3, + 0xc6, 0xa5, 0xeb, 0x7a, 0xdc, 0x1a, 0x1c, 0x89, 0x14, 0x5b, 0x1a, 0x41, 0xf3, 0x3b, 0xeb, 0x58, + 0x5d, 0x8b, 0x7f, 0x1f, 0x68, 0xdc, 0x73, 0xaf, 0xcb, 0xdc, 0xe6, 0x10, 0x3d, 0x0c, 0x6d, 0x8e, + 0xed, 0x5a, 0x8e, 0xd9, 0x62, 0xaf, 0x76, 0x93, 0x9d, 0x2f, 0xff, 0xb7, 0xe3, 0xb5, 0xed, 0xa6, + 0xe5, 0x98, 0xcd, 0xef, 0x96, 0xeb, 0x32, 0x27, 0x38, 0x1f, 0xff, 0x70, 0xce, 0xf8, 0x77, 0xe6, + 0xbb, 0x8c, 0x9f, 0x07, 0xdc, 0xe2, 0x4c, 0xcc, 0x6c, 0x85, 0xdf, 0xac, 0x70, 0x9f, 0x0c, 0xb9, + 0x9d, 0xb2, 0xdb, 0xa8, 0x73, 0xfb, 0x04, 0x8c, 0x9e, 0x11, 0x70, 0xbf, 0xd7, 0xe4, 0xee, 0xd8, + 0x6e, 0xd6, 0xc6, 0x5f, 0xf5, 0x69, 0xf8, 0x4d, 0x8d, 0xab, 0x11, 0xe1, 0x46, 0x75, 0x42, 0xf8, + 0x88, 0x66, 0x7f, 0x43, 0xec, 0xad, 0x61, 0xbb, 0x2d, 0x16, 0x5e, 0x61, 0xce, 0x95, 0xb4, 0x0f, + 0x1e, 0x0b, 0x79, 0x76, 0x62, 0x5a, 0x54, 0x18, 0x1c, 0xcb, 0x80, 0x61, 0x45, 0xf0, 0x2b, 0x0b, + 0x76, 0x95, 0xc1, 0xad, 0x32, 0x98, 0x55, 0x07, 0xaf, 0xb4, 0x72, 0x2d, 0x0c, 0x46, 0xa7, 0x27, + 0xe7, 0x30, 0xeb, 0xc5, 0x67, 0x2f, 0x22, 0xa7, 0x36, 0x66, 0xc4, 0x6c, 0x59, 0xe0, 0x99, 0xfb, + 0xb1, 0xea, 0x38, 0x3b, 0x3b, 0x1f, 0x29, 0x8e, 0xf3, 0x11, 0xef, 0x47, 0x2a, 0xa3, 0x6d, 0x9f, + 0x05, 0x81, 0x8c, 0x94, 0x8e, 0x1e, 0x14, 0x93, 0xd3, 0x2c, 0xe4, 0x14, 0x72, 0xba, 0xfc, 0x3a, + 0x9f, 0x6c, 0x5f, 0xec, 0xe0, 0x9a, 0x13, 0xee, 0x10, 0xdc, 0xf9, 0x99, 0x6f, 0x39, 0x7c, 0x5e, + 0x70, 0xd7, 0xc4, 0x58, 0x58, 0x39, 0x1e, 0xa3, 0x12, 0x87, 0x21, 0x8a, 0xbf, 0xa8, 0xc6, 0x5d, + 0xc8, 0xe2, 0x2d, 0x64, 0x71, 0x16, 0xba, 0xf8, 0x8a, 0x5e, 0x64, 0x2f, 0x2a, 0x12, 0xd3, 0x07, + 0xbb, 0xdf, 0xdf, 0x82, 0x79, 0x68, 0xa9, 0x1e, 0xd8, 0x5c, 0xa1, 0x88, 0xb0, 0x26, 0xc2, 0x9a, + 0x08, 0x6b, 0x4a, 0x72, 0x8e, 0x38, 0xb2, 0xa4, 0x40, 0x9a, 0x1b, 0x91, 0xe7, 0xb9, 0xd7, 0x34, + 0xbb, 0x8e, 0xc5, 0x5f, 0x3c, 0xbf, 0xf3, 0xbe, 0xe9, 0x75, 0xba, 0x9e, 0xcb, 0x5c, 0x1e, 0xac, + 0xff, 0xf5, 0xe0, 0xb7, 0xdc, 0xb7, 0xdc, 0xa0, 0xc9, 0xec, 0x57, 0xe6, 0xbf, 0x9f, 0xfb, 0x79, + 0xf9, 0x9f, 0x96, 0x95, 0x46, 0xb0, 0xfc, 0x81, 0x89, 0xc3, 0xbb, 0xf4, 0x6b, 0x01, 0xfc, 0x4b, + 0x75, 0xb6, 0xd7, 0x76, 0xc0, 0x2f, 0x39, 0xf7, 0xd5, 0xce, 0xf7, 0xc6, 0x76, 0xab, 0x0e, 0x1b, + 0xb0, 0xf8, 0x00, 0x4b, 0xbb, 0x3d, 0xc7, 0x51, 0x38, 0x9d, 0x1b, 0xeb, 0x07, 0x1d, 0xb1, 0x3b, + 0xbf, 0xc5, 0x7c, 0xd6, 0xfa, 0xf8, 0x36, 0x26, 0x15, 0xe3, 0x7b, 0xb9, 0x39, 0x4e, 0x50, 0xb7, + 0x5b, 0xf3, 0xc4, 0x60, 0xb2, 0x60, 0xb2, 0x60, 0xb2, 0x0e, 0xd4, 0x64, 0x4d, 0x7f, 0x3b, 0x0c, + 0x91, 0x22, 0xf0, 0xaf, 0x27, 0x72, 0x3d, 0x8e, 0x07, 0x8d, 0x03, 0x59, 0xda, 0x02, 0xff, 0x42, + 0x71, 0x71, 0x8b, 0x33, 0xf9, 0x20, 0xc1, 0xe8, 0xf1, 0x88, 0x63, 0x04, 0x39, 0xc4, 0x08, 0x10, + 0x23, 0x40, 0x8c, 0x00, 0x80, 0x0b, 0x80, 0x0b, 0x80, 0x0b, 0x31, 0x02, 0xc4, 0x08, 0x10, 0x23, + 0x40, 0x8c, 0x00, 0x26, 0x0b, 0x26, 0x0b, 0x26, 0x0b, 0x31, 0x82, 0xd4, 0xc4, 0x08, 0x90, 0x1b, + 0xa8, 0xb0, 0x7b, 0xe4, 0xa9, 0x81, 0x5f, 0xc6, 0x74, 0x23, 0xcc, 0x3a, 0x5a, 0x5a, 0xa3, 0x69, + 0x05, 0x81, 0xdd, 0x76, 0x27, 0x60, 0x46, 0x30, 0x13, 0x69, 0x1b, 0x31, 0x64, 0x27, 0x21, 0x3b, + 0x49, 0x51, 0x03, 0x08, 0x67, 0x27, 0xcd, 0xf8, 0x4f, 0x3e, 0xf8, 0x38, 0x47, 0x03, 0x59, 0x4a, + 0x88, 0x40, 0xa6, 0x2d, 0x02, 0x29, 0x99, 0xc0, 0xb7, 0xc2, 0x38, 0x52, 0x89, 0x7c, 0x8a, 0xa2, + 0x02, 0xd7, 0x0d, 0xae, 0xdb, 0xfe, 0x5d, 0x37, 0x59, 0xd1, 0x9b, 0x59, 0x29, 0xc7, 0xf1, 0x9a, + 0xf2, 0xee, 0xc1, 0x7a, 0xab, 0x35, 0xa3, 0xa9, 0x78, 0x3a, 0x34, 0xc5, 0x71, 0xca, 0x22, 0x4a, + 0x29, 0xaa, 0x9a, 0x44, 0x96, 0x5a, 0x74, 0xb5, 0x89, 0xb0, 0x36, 0x51, 0xd6, 0x27, 0xd2, 0x6a, + 0xa2, 0xad, 0x28, 0xe2, 0x74, 0x51, 0x9a, 0x15, 0xce, 0x6b, 0xb1, 0xa6, 0xdd, 0xb1, 0x1c, 0xa5, + 0xda, 0xea, 0x15, 0x2b, 0x9a, 0x23, 0xa0, 0xb5, 0x52, 0x61, 0x9a, 0x27, 0x20, 0x4a, 0x53, 0xc1, + 0x3d, 0xf9, 0x43, 0x23, 0x5d, 0xc7, 0xd4, 0x15, 0xdd, 0xcb, 0xc7, 0x91, 0x7b, 0x47, 0x4b, 0x96, + 0xb8, 0xc2, 0x7b, 0xf3, 0x89, 0x67, 0xc8, 0xe8, 0xf7, 0xdf, 0x11, 0x1e, 0x15, 0x61, 0xe5, 0xf7, + 0xf2, 0x51, 0xe5, 0x71, 0x54, 0xfd, 0xa3, 0x78, 0x50, 0xa9, 0xef, 0xa9, 0x1c, 0x5d, 0x81, 0x55, + 0xe7, 0x42, 0x05, 0x26, 0xa7, 0xb0, 0x14, 0x6b, 0x62, 0x10, 0x23, 0xc2, 0x80, 0x74, 0x80, 0x74, + 0x80, 0x74, 0x31, 0x85, 0x74, 0xcc, 0xed, 0x75, 0x98, 0x4f, 0xe1, 0x7b, 0x2d, 0x80, 0xba, 0x02, + 0x01, 0xad, 0xaa, 0xdb, 0xeb, 0x0c, 0x16, 0xdb, 0x4f, 0xa0, 0x72, 0x6d, 0xb1, 0xa0, 0xe9, 0xdb, + 0x5d, 0x5a, 0x37, 0x79, 0x9e, 0x28, 0x94, 0x2a, 0x94, 0x2a, 0x94, 0x6a, 0x4c, 0x95, 0x6a, 0xc0, + 0x7d, 0xdb, 0x6d, 0x53, 0xea, 0xd3, 0x8b, 0x04, 0xea, 0x40, 0xb1, 0x36, 0x2e, 0x3b, 0x37, 0x55, + 0xa4, 0xbd, 0x0b, 0xf4, 0x1e, 0xf4, 0x1e, 0xf4, 0x5e, 0xe4, 0x7a, 0xaf, 0x67, 0xbb, 0x3c, 0x9f, + 0x23, 0xd4, 0x7b, 0x65, 0x84, 0xf1, 0xf6, 0xa2, 0xe0, 0x10, 0xc6, 0x8b, 0x2e, 0x8c, 0xa7, 0xeb, + 0xa8, 0x0a, 0xb9, 0x4a, 0xa1, 0x52, 0x2a, 0xe7, 0x2a, 0x45, 0xc4, 0xf3, 0x0e, 0x21, 0x9e, 0xb7, + 0x94, 0xce, 0x46, 0x07, 0xbc, 0x96, 0x09, 0x03, 0x82, 0x01, 0x82, 0x01, 0x82, 0xc5, 0x14, 0x82, + 0xa9, 0x27, 0xd4, 0xaf, 0xf8, 0x9e, 0x14, 0x20, 0x6c, 0x3e, 0xc1, 0x7e, 0x72, 0x78, 0xef, 0x97, + 0x33, 0x98, 0xe7, 0xff, 0x6d, 0x25, 0x9b, 0x79, 0xfe, 0x1f, 0xe7, 0x0a, 0xbc, 0xa6, 0xbf, 0x53, + 0xa8, 0xee, 0xda, 0xaf, 0xde, 0xee, 0x58, 0xdd, 0xae, 0xed, 0xb6, 0xe9, 0xf4, 0xf5, 0x84, 0x20, + 0xf4, 0x34, 0xf4, 0x34, 0xf4, 0x74, 0x4c, 0xf5, 0xb4, 0xdd, 0x62, 0x2e, 0xb7, 0xf9, 0x1b, 0xb1, + 0xae, 0x26, 0xc0, 0xfa, 0xc6, 0x97, 0xf1, 0xab, 0x7d, 0xb4, 0x02, 0x42, 0x5e, 0x9e, 0x2c, 0xfc, + 0xb7, 0x87, 0xcb, 0x9b, 0x6a, 0xe3, 0xe6, 0xf2, 0xfe, 0xfe, 0xcb, 0xed, 0xe7, 0xc6, 0xfd, 0xc3, + 0x5d, 0xed, 0xee, 0xea, 0xee, 0xda, 0xa0, 0xec, 0x66, 0x1f, 0x90, 0x79, 0xfb, 0xb4, 0x1e, 0xff, + 0xc2, 0x3e, 0x7c, 0xbc, 0xb9, 0x37, 0xe2, 0xe8, 0xeb, 0x6a, 0x5a, 0xee, 0xe5, 0x61, 0x2d, 0xf7, + 0xf3, 0x6f, 0xf7, 0x8d, 0xdf, 0x0e, 0x6d, 0xc1, 0xb5, 0x83, 0x5a, 0xf0, 0x61, 0x31, 0xf4, 0xd5, + 0xc7, 0x07, 0x23, 0x66, 0x61, 0x9e, 0x7a, 0x62, 0xa7, 0x88, 0xa8, 0xb8, 0x0b, 0x5e, 0x97, 0xeb, + 0x09, 0xf3, 0x2c, 0x13, 0x86, 0xfb, 0x00, 0xf7, 0x01, 0xee, 0x03, 0xc2, 0x3c, 0xb2, 0x61, 0x9e, + 0xa8, 0xfb, 0x28, 0xec, 0x57, 0x2d, 0x73, 0xdf, 0x7e, 0xee, 0x71, 0xcb, 0x7f, 0x33, 0x03, 0xc7, + 0xe3, 0x26, 0x71, 0xee, 0xc3, 0x5a, 0xea, 0x50, 0xd0, 0x50, 0xd0, 0x50, 0xd0, 0x71, 0x8d, 0xef, + 0x10, 0x67, 0x42, 0xa0, 0xa0, 0x49, 0xd6, 0xae, 0x69, 0xba, 0x5e, 0xcf, 0x65, 0x0b, 0xe5, 0xc2, + 0x45, 0xbe, 0x54, 0xb8, 0x40, 0x4a, 0x04, 0xf5, 0x99, 0x65, 0x74, 0x9f, 0x59, 0x19, 0x29, 0x11, + 0xd1, 0x7a, 0xdb, 0xfd, 0x84, 0x94, 0xc7, 0x2b, 0x36, 0xbf, 0x9a, 0xd2, 0xd1, 0xd0, 0xc6, 0x69, + 0x4b, 0xbb, 0xa2, 0xf3, 0xd9, 0xcf, 0x52, 0x7d, 0xb4, 0xe5, 0xf7, 0x5a, 0xa6, 0x13, 0xa3, 0x1a, + 0x36, 0x26, 0xc9, 0x07, 0x46, 0xf7, 0x45, 0x6d, 0xe0, 0x16, 0x2d, 0x3c, 0x74, 0xeb, 0xa8, 0xd4, + 0x76, 0x5f, 0x94, 0x1a, 0x67, 0xb9, 0x1f, 0x1d, 0x26, 0x37, 0x23, 0x60, 0xe5, 0x00, 0x64, 0x66, + 0x05, 0x10, 0x01, 0x5c, 0xe9, 0xd9, 0x01, 0xd0, 0x61, 0xd0, 0x61, 0xca, 0x3a, 0x0c, 0x6d, 0x88, + 0x10, 0x5b, 0x43, 0x6c, 0x0d, 0xb1, 0x35, 0x29, 0xce, 0x43, 0x1b, 0xa2, 0xd4, 0x47, 0xed, 0xd0, + 0x86, 0x08, 0x6d, 0x88, 0x10, 0xa3, 0x4b, 0x4c, 0x8c, 0x0e, 0x6d, 0x88, 0x00, 0xe9, 0x00, 0xe9, + 0x00, 0xe9, 0xa4, 0x39, 0x0f, 0x6d, 0x88, 0xb4, 0x28, 0x57, 0xb4, 0x21, 0x82, 0x52, 0x85, 0x52, + 0x3d, 0x54, 0xa5, 0x8a, 0x36, 0x44, 0x68, 0x43, 0x04, 0xbd, 0x07, 0xbd, 0x77, 0x68, 0x7a, 0x0f, + 0x6d, 0x88, 0xe2, 0x12, 0xc6, 0x43, 0x1b, 0x22, 0xb4, 0x21, 0x42, 0x1b, 0xa2, 0x83, 0x8a, 0xe7, + 0xa1, 0x0d, 0x11, 0x20, 0x18, 0x20, 0xd8, 0xa1, 0x43, 0x30, 0xb4, 0x21, 0x4a, 0x9a, 0xde, 0x46, + 0x1b, 0x22, 0xe8, 0x69, 0xe8, 0xe9, 0x43, 0xd3, 0xd3, 0x68, 0x43, 0x84, 0x36, 0x44, 0x68, 0x43, + 0x94, 0xda, 0xe5, 0xa2, 0x0d, 0x51, 0xea, 0x17, 0x8c, 0x36, 0x44, 0x7b, 0x0e, 0xf3, 0xa0, 0x0d, + 0x11, 0xda, 0x10, 0xc1, 0x7d, 0x80, 0xfb, 0x80, 0x30, 0x4f, 0x2c, 0xc3, 0x3c, 0x68, 0x43, 0x84, + 0x36, 0x44, 0x50, 0xd0, 0x50, 0xd0, 0x07, 0x1a, 0xdf, 0x41, 0x1b, 0xa2, 0xf0, 0x2f, 0x86, 0x36, + 0x44, 0x73, 0x5f, 0x80, 0x94, 0x08, 0xb4, 0x21, 0x22, 0xf7, 0x95, 0xd1, 0x86, 0x28, 0xa4, 0x7d, + 0x4b, 0x7c, 0x1b, 0xa2, 0x51, 0x67, 0x8b, 0xa8, 0x3a, 0x78, 0x1c, 0x69, 0x3c, 0x94, 0x01, 0x3c, + 0x92, 0x4d, 0xfc, 0x35, 0xae, 0xed, 0x80, 0x5f, 0x72, 0x2e, 0xd7, 0xec, 0x60, 0x60, 0x90, 0xaa, + 0x0e, 0x1b, 0xee, 0xad, 0xf1, 0xfe, 0xd8, 0xed, 0x39, 0x8e, 0x44, 0xab, 0x92, 0x1b, 0xeb, 0x87, + 0x3a, 0x91, 0x3b, 0xbf, 0xc5, 0x7c, 0xd6, 0xfa, 0xf8, 0x36, 0x26, 0xa1, 0x75, 0xc3, 0x15, 0xb9, + 0x7f, 0x7f, 0x5c, 0x6f, 0x48, 0x75, 0x92, 0xf1, 0x7b, 0x4d, 0xee, 0x8e, 0xf1, 0x5a, 0x6d, 0xfc, + 0x42, 0x9f, 0x86, 0xef, 0xd3, 0xb8, 0x1a, 0x7d, 0x5d, 0xe3, 0x72, 0xf6, 0x15, 0x47, 0x7a, 0x04, + 0x23, 0xdc, 0x27, 0x43, 0x9e, 0xa4, 0xec, 0x09, 0x46, 0x7c, 0x72, 0xe1, 0xf6, 0x72, 0xf7, 0xce, + 0x84, 0xd8, 0x15, 0xc3, 0xe3, 0xe1, 0xb7, 0x62, 0xe6, 0x37, 0xf2, 0xb0, 0x15, 0x56, 0x82, 0x30, + 0x53, 0xd8, 0x5d, 0x96, 0x71, 0x8b, 0x15, 0xdd, 0x5f, 0x59, 0x37, 0x57, 0xd9, 0x9d, 0x55, 0x76, + 0x5b, 0xd5, 0xdd, 0x53, 0x5a, 0x69, 0x14, 0x6d, 0xb6, 0x63, 0x34, 0x27, 0xdc, 0x21, 0xb8, 0xf3, + 0x93, 0x03, 0x1f, 0x3f, 0x2f, 0x6a, 0x67, 0xa5, 0x3c, 0x25, 0xe9, 0xc8, 0x8f, 0x4a, 0xa4, 0x87, + 0x28, 0xb2, 0xa3, 0x1a, 0xc9, 0x21, 0x8b, 0xdc, 0x90, 0x45, 0x6a, 0xe8, 0x22, 0x33, 0x7a, 0x31, + 0x9d, 0x6c, 0xff, 0xa9, 0xe5, 0x10, 0x68, 0xdb, 0xb7, 0xdc, 0x9e, 0x63, 0xf9, 0x36, 0x7f, 0x53, + 0xef, 0x06, 0xb7, 0x85, 0x36, 0xda, 0x5c, 0xa2, 0x45, 0xdc, 0xde, 0x83, 0xa4, 0x49, 0x6d, 0x73, + 0x49, 0x93, 0xe4, 0x46, 0x91, 0xdc, 0x46, 0x9b, 0xd4, 0x36, 0x5d, 0x60, 0xed, 0xe1, 0xcb, 0xc7, + 0xaf, 0xb5, 0xcb, 0x87, 0x3f, 0x1a, 0x8f, 0xd7, 0x77, 0xb5, 0xc6, 0xe7, 0x87, 0xcb, 0xdb, 0xaf, + 0xd7, 0x97, 0x0f, 0x5f, 0x6a, 0x7f, 0xa8, 0x32, 0x25, 0x61, 0x22, 0x1b, 0x71, 0x02, 0xdf, 0x60, + 0xcd, 0xa3, 0xe5, 0x66, 0xcf, 0x72, 0xc5, 0xcf, 0x04, 0xa1, 0xff, 0x77, 0xf1, 0x5d, 0x62, 0xee, + 0x2c, 0xed, 0x2b, 0x24, 0x59, 0xdf, 0xd1, 0x7e, 0x22, 0x8b, 0xfd, 0x18, 0x37, 0xaa, 0xe5, 0xdc, + 0x36, 0x3b, 0x41, 0xdb, 0xb4, 0x7a, 0xdc, 0x23, 0x40, 0x28, 0xf3, 0xd4, 0x80, 0x49, 0x80, 0x49, + 0x80, 0x49, 0x24, 0x39, 0xe7, 0xd9, 0xf3, 0x1c, 0x66, 0xb9, 0x14, 0x78, 0x24, 0x9b, 0x00, 0xf5, + 0xc3, 0x7e, 0x74, 0x59, 0x93, 0xb3, 0x16, 0x9d, 0x0a, 0x9a, 0x52, 0x84, 0x1a, 0x82, 0x1a, 0x82, + 0x1a, 0x92, 0xe4, 0x1c, 0xe5, 0x16, 0x41, 0x8a, 0xad, 0x81, 0xa2, 0xd5, 0x42, 0xdc, 0xb7, 0xdc, + 0xa0, 0x63, 0x73, 0x3a, 0x2d, 0x34, 0xa5, 0x08, 0x2d, 0x04, 0x2d, 0x04, 0x2d, 0x74, 0x38, 0x5a, + 0xe8, 0xd0, 0x2e, 0xc0, 0x3d, 0xee, 0x4a, 0x8d, 0x96, 0x12, 0xb8, 0x81, 0x16, 0xb8, 0x1a, 0x94, + 0x1b, 0xbf, 0xa2, 0x34, 0x76, 0x45, 0xf9, 0x7a, 0x2a, 0x87, 0xeb, 0x29, 0x5c, 0x4f, 0x85, 0x7c, + 0x4d, 0xe9, 0xeb, 0xa9, 0x67, 0xab, 0xf9, 0x57, 0xdb, 0xf7, 0x7a, 0x6e, 0xcb, 0x7c, 0x76, 0xbc, + 0xe6, 0x5f, 0x26, 0xf3, 0x7d, 0xcf, 0x0f, 0xd4, 0x01, 0xcf, 0x26, 0xc2, 0xc0, 0x3d, 0xc0, 0x3d, + 0xc0, 0x3d, 0x92, 0x9c, 0xd3, 0xf4, 0x7a, 0x2e, 0x67, 0xbe, 0xd2, 0x20, 0x93, 0x89, 0x28, 0x29, + 0xe4, 0x7f, 0x13, 0x65, 0xe4, 0x13, 0x94, 0x2d, 0x50, 0x66, 0xe0, 0x13, 0x67, 0x71, 0x53, 0xf7, + 0x1e, 0xd4, 0x91, 0xac, 0x4d, 0x70, 0xc1, 0x43, 0x9a, 0x50, 0xaf, 0xeb, 0x08, 0xb2, 0x17, 0x85, + 0x42, 0xa9, 0x5c, 0x28, 0x64, 0xca, 0xf9, 0x72, 0xa6, 0x52, 0x2c, 0x66, 0x4b, 0xd9, 0x62, 0x8c, + 0x4f, 0x65, 0x4f, 0x29, 0xeb, 0xf5, 0x18, 0x47, 0x64, 0x9a, 0x5e, 0x8b, 0x99, 0xaf, 0xb6, 0xe7, + 0x0c, 0xbd, 0x1c, 0x02, 0x7c, 0xb2, 0x4c, 0x10, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, + 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb8, 0x24, 0xe4, 0x36, 0x0f, 0xa3, 0x1a, 0x6c, 0x1c, 0xe3, + 0x20, 0x80, 0x25, 0x4b, 0xf4, 0x80, 0x4a, 0x80, 0x4a, 0x80, 0x4a, 0x80, 0x4a, 0x80, 0x4a, 0x80, + 0x4a, 0x80, 0x4a, 0x80, 0x4a, 0x04, 0x51, 0x49, 0xc0, 0x9a, 0x9e, 0xdb, 0x22, 0x84, 0x25, 0x13, + 0x82, 0xc0, 0x25, 0xc0, 0x25, 0xc0, 0x25, 0xc0, 0x25, 0xc0, 0x25, 0xc0, 0x25, 0xc0, 0x25, 0xc0, + 0x25, 0x61, 0x71, 0x49, 0xe0, 0xfa, 0x04, 0x60, 0x64, 0x40, 0x45, 0x0d, 0x81, 0x64, 0x81, 0x40, + 0x80, 0x40, 0x92, 0x86, 0x40, 0x64, 0x93, 0xbc, 0xa6, 0x04, 0xac, 0x57, 0xc2, 0x71, 0x3d, 0x03, + 0x62, 0x68, 0xe5, 0x1a, 0x46, 0x48, 0xf9, 0x5b, 0x97, 0x05, 0xe8, 0xe3, 0x4a, 0x41, 0x78, 0x49, + 0x82, 0x47, 0x3b, 0x8b, 0x26, 0xae, 0x4b, 0x3c, 0xd7, 0x62, 0x4d, 0xbb, 0x63, 0x39, 0x4a, 0x0e, + 0xc6, 0x8a, 0xc5, 0xcc, 0x11, 0xd0, 0x5a, 0x81, 0x59, 0x39, 0xb4, 0x87, 0x95, 0x3b, 0x8e, 0x1c, + 0x06, 0xe5, 0x26, 0xa5, 0x2b, 0x6c, 0x1e, 0x47, 0x85, 0xf9, 0xb8, 0xf2, 0xa0, 0xcd, 0x76, 0x03, + 0x6e, 0xb9, 0x9c, 0x0e, 0xb8, 0x4d, 0x08, 0x02, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, + 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0x01, 0xbc, 0xe9, 0x00, 0x6f, 0x9c, 0xf9, 0xaf, 0x96, + 0x43, 0x89, 0xde, 0xc6, 0x14, 0x01, 0xdf, 0x00, 0xdf, 0x00, 0xdf, 0x62, 0x07, 0xdf, 0x02, 0x6e, + 0x71, 0x93, 0x48, 0x48, 0x8f, 0x69, 0x2e, 0xfa, 0xa7, 0xa4, 0xbe, 0xba, 0x23, 0xdb, 0x60, 0xb8, + 0x96, 0xeb, 0xa9, 0xa5, 0xf2, 0x00, 0xc4, 0x65, 0x80, 0x0c, 0x0e, 0x7d, 0x2e, 0x93, 0xbe, 0x84, + 0x04, 0xe0, 0xba, 0x78, 0xe3, 0xba, 0x8e, 0x45, 0x38, 0x25, 0x73, 0x40, 0x0c, 0x68, 0x0e, 0x68, + 0x0e, 0x68, 0x0e, 0xc1, 0x38, 0x04, 0xe3, 0x10, 0x8c, 0x03, 0x8e, 0x43, 0x30, 0x0e, 0xa0, 0x4d, + 0x0b, 0x68, 0x33, 0xb9, 0xdd, 0x61, 0xa4, 0xc8, 0x6d, 0x44, 0x11, 0xf0, 0x0d, 0xf0, 0x0d, 0xf0, + 0x2d, 0x76, 0xf0, 0x6d, 0x20, 0x9b, 0xdc, 0x6e, 0xfe, 0x15, 0x90, 0x02, 0x38, 0x84, 0xe2, 0x10, + 0x8a, 0x03, 0x84, 0x43, 0x28, 0x0e, 0xa8, 0x2e, 0x16, 0xa8, 0x8e, 0x40, 0xb1, 0xcc, 0x00, 0x9d, + 0xed, 0x02, 0xcb, 0x01, 0xcb, 0x01, 0xcb, 0x21, 0x14, 0x87, 0x50, 0x1c, 0x42, 0x71, 0xc0, 0x71, + 0x08, 0xc5, 0x01, 0xb4, 0xe9, 0x01, 0x6d, 0xd4, 0xa1, 0xb8, 0x09, 0x45, 0xc0, 0x37, 0xc0, 0x37, + 0xc0, 0x37, 0x84, 0xe2, 0x10, 0x8a, 0x43, 0x28, 0x0e, 0x10, 0x0e, 0xa1, 0x38, 0xa0, 0xba, 0x08, + 0x9e, 0x94, 0x6d, 0x69, 0xa2, 0x38, 0xb8, 0x6e, 0x4a, 0x47, 0xd3, 0x00, 0xbb, 0xe1, 0xdc, 0xb7, + 0x73, 0x85, 0x7e, 0x43, 0xa3, 0x97, 0xe3, 0x7e, 0xaf, 0xc9, 0xdd, 0xc9, 0x08, 0xfb, 0xf1, 0x0b, + 0x7c, 0x1a, 0x7e, 0x7f, 0xe3, 0x6a, 0xf4, 0x75, 0x8d, 0x3b, 0xee, 0x36, 0xaa, 0x83, 0x2f, 0x8a, + 0x71, 0xfb, 0xa6, 0x17, 0xd6, 0x34, 0x9b, 0x9e, 0xef, 0x0f, 0xe7, 0x28, 0x9b, 0xcf, 0x23, 0xd1, + 0x53, 0x6c, 0xe6, 0xb4, 0x86, 0x26, 0x9a, 0x4b, 0xa2, 0xb5, 0x93, 0x22, 0x08, 0x47, 0x73, 0x49, + 0x34, 0x97, 0xd4, 0x80, 0x76, 0xd1, 0x5c, 0x72, 0xef, 0x28, 0x16, 0xcd, 0x25, 0x8f, 0xd1, 0x5c, + 0x32, 0x0c, 0x3a, 0x79, 0xe3, 0x8c, 0x1e, 0x9e, 0x0c, 0x89, 0x02, 0x9f, 0x00, 0x9f, 0x00, 0x9f, + 0x00, 0x9f, 0x00, 0x9f, 0x00, 0x9f, 0x00, 0x9f, 0x00, 0x9f, 0x08, 0xe0, 0x93, 0x9e, 0x3b, 0x06, + 0x13, 0xd6, 0xb3, 0xc3, 0xc8, 0x86, 0x86, 0x6d, 0xa4, 0x0c, 0xa4, 0x02, 0xa4, 0x02, 0xa4, 0x02, + 0xa4, 0x02, 0xa4, 0x02, 0xa4, 0x02, 0xa4, 0x02, 0xa4, 0x22, 0x8d, 0x54, 0x06, 0x36, 0x4b, 0x0b, + 0x50, 0x19, 0x11, 0x06, 0x4e, 0x01, 0x4e, 0x01, 0x4e, 0x01, 0x4e, 0x01, 0x4e, 0x01, 0x4e, 0x01, + 0x4e, 0x01, 0x4e, 0x09, 0xb9, 0xcd, 0x5d, 0x2f, 0xe0, 0xe6, 0x00, 0x53, 0x3c, 0x33, 0x82, 0xb1, + 0x62, 0x0b, 0xd4, 0x30, 0x5e, 0x0c, 0x88, 0xe4, 0xc0, 0x10, 0x09, 0xc6, 0x8b, 0xe9, 0x11, 0x4a, + 0x4a, 0xe1, 0xdc, 0x28, 0xa4, 0x28, 0xe7, 0xd0, 0x54, 0xce, 0x31, 0xdb, 0x5d, 0x94, 0x74, 0x2c, + 0xf1, 0x5e, 0x72, 0x2a, 0x72, 0xb3, 0x17, 0xa8, 0xe7, 0x90, 0x3b, 0x0f, 0x94, 0xe4, 0xa2, 0x24, + 0x17, 0xc5, 0x1b, 0xd1, 0x38, 0x4d, 0xea, 0xdf, 0x8f, 0x39, 0x63, 0x40, 0x71, 0x40, 0x71, 0x40, + 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x40, 0x71, 0x87, 0x87, 0xe2, 0x30, 0x70, + 0x6c, 0xaf, 0x38, 0x0e, 0x18, 0x0e, 0x8d, 0x55, 0x22, 0xc5, 0x6f, 0x18, 0x38, 0x76, 0x20, 0x20, + 0x0e, 0xad, 0x55, 0xd0, 0x5a, 0x05, 0xad, 0x55, 0x30, 0x70, 0x4c, 0xdd, 0x64, 0x60, 0xe0, 0x18, + 0xa2, 0x72, 0x88, 0xca, 0x21, 0x2a, 0x87, 0xa8, 0x1c, 0xa2, 0x72, 0x00, 0x74, 0x88, 0xca, 0x01, + 0xbd, 0xe9, 0x47, 0x6f, 0x98, 0x3c, 0x86, 0xa8, 0x1c, 0xa2, 0x72, 0x07, 0x83, 0xdf, 0xd0, 0xee, + 0x18, 0x31, 0x39, 0x40, 0x38, 0xc4, 0xe4, 0x80, 0xea, 0x52, 0x8c, 0xea, 0x30, 0x79, 0x0c, 0x31, + 0x39, 0xc4, 0xe4, 0x10, 0x93, 0x43, 0x4c, 0x0e, 0x31, 0x39, 0x00, 0x3a, 0xc4, 0xe4, 0x80, 0xde, + 0x92, 0x85, 0xde, 0x30, 0x82, 0x0c, 0x31, 0x39, 0xc4, 0xe4, 0x10, 0x93, 0x43, 0x4c, 0x0e, 0x31, + 0x39, 0x40, 0x38, 0xc4, 0xe4, 0x80, 0xea, 0xe2, 0x81, 0xea, 0x30, 0x82, 0x6c, 0x79, 0x04, 0x19, + 0x41, 0x6f, 0xa2, 0x63, 0xa1, 0x51, 0x64, 0xf7, 0x5e, 0xc0, 0x7f, 0x63, 0xcd, 0x8f, 0x2c, 0xd6, + 0x03, 0xc9, 0xba, 0x3e, 0x23, 0xec, 0xff, 0x34, 0x47, 0x0c, 0xed, 0x9f, 0xd0, 0xfe, 0x49, 0x11, + 0x84, 0xa3, 0xfd, 0x93, 0x0a, 0xf7, 0xa1, 0xfd, 0x93, 0x90, 0x90, 0xc2, 0x95, 0xc6, 0x75, 0x48, + 0xd4, 0xee, 0x34, 0xae, 0x43, 0xd2, 0xef, 0x4b, 0xe3, 0x3a, 0x04, 0xd7, 0x21, 0x70, 0x9c, 0x13, + 0xe3, 0x38, 0xa3, 0xfd, 0x13, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, 0x1c, 0x50, + 0x1c, 0x50, 0x1c, 0x50, 0xdc, 0xc1, 0xa1, 0x38, 0xb4, 0x7f, 0xda, 0x2b, 0x8e, 0x03, 0x86, 0x43, + 0x52, 0x4b, 0xa4, 0xf8, 0x0d, 0xed, 0x9f, 0x0e, 0x04, 0xc4, 0x21, 0xad, 0x05, 0x69, 0x2d, 0x48, + 0x6b, 0x41, 0xfb, 0x27, 0x75, 0x93, 0x81, 0xf6, 0x4f, 0x88, 0xca, 0x21, 0x2a, 0x87, 0xa8, 0x1c, + 0xa2, 0x72, 0x88, 0xca, 0x01, 0xd0, 0x21, 0x2a, 0x07, 0xf4, 0xa6, 0x1f, 0xbd, 0xa1, 0xfd, 0x13, + 0xa2, 0x72, 0x88, 0xca, 0x1d, 0x0c, 0x7e, 0x43, 0xa9, 0x19, 0x62, 0x72, 0x80, 0x70, 0x88, 0xc9, + 0x01, 0xd5, 0xa5, 0x18, 0xd5, 0xa1, 0xfd, 0x13, 0x62, 0x72, 0x88, 0xc9, 0x21, 0x26, 0x87, 0x98, + 0x1c, 0x62, 0x72, 0x00, 0x74, 0x88, 0xc9, 0x01, 0xbd, 0x25, 0x0b, 0xbd, 0xa1, 0xfd, 0x13, 0x62, + 0x72, 0x88, 0xc9, 0x21, 0x26, 0x87, 0x98, 0x1c, 0x62, 0x72, 0x80, 0x70, 0x88, 0xc9, 0x01, 0xd5, + 0xc5, 0x03, 0xd5, 0xa1, 0xfd, 0xd3, 0x4a, 0xfb, 0x27, 0xe5, 0xd6, 0x44, 0xc7, 0x62, 0xdd, 0x9f, + 0x7c, 0x16, 0xff, 0xe6, 0x4f, 0xff, 0x6b, 0xbe, 0x8e, 0xe5, 0x5d, 0xb1, 0xf1, 0xd3, 0x84, 0x10, + 0x9a, 0x3e, 0xa1, 0xe9, 0x93, 0x22, 0xf4, 0x46, 0xd3, 0x27, 0x15, 0xee, 0x43, 0xd3, 0x27, 0x38, + 0xcf, 0x70, 0x9e, 0x71, 0xf9, 0xa1, 0x04, 0xc4, 0x73, 0x70, 0x9c, 0xe5, 0x8e, 0x03, 0x77, 0x1f, + 0xb8, 0xfb, 0x80, 0x97, 0x9c, 0x18, 0x2f, 0x19, 0xbd, 0x9e, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, + 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x0e, 0x05, 0xbc, 0xa1, 0xc5, 0x13, + 0xe0, 0x1b, 0xe0, 0xdb, 0xe1, 0xc0, 0x37, 0xb4, 0x78, 0x3a, 0x10, 0x10, 0x87, 0xd4, 0x15, 0xa4, + 0xae, 0x20, 0x75, 0x05, 0x2d, 0x9e, 0xd4, 0x4d, 0x06, 0x5a, 0x3c, 0x01, 0xcd, 0x01, 0xcd, 0x21, + 0x18, 0x87, 0x60, 0x1c, 0x82, 0x71, 0xc0, 0x71, 0x08, 0xc6, 0x01, 0xb4, 0x69, 0x03, 0x6d, 0xe8, + 0xec, 0x04, 0xf8, 0x06, 0xf8, 0x76, 0x30, 0xf0, 0x0d, 0x55, 0x64, 0x08, 0xc5, 0x01, 0xc2, 0x21, + 0x14, 0x07, 0x54, 0x97, 0x62, 0x54, 0x87, 0xce, 0x4e, 0xc0, 0x72, 0xc0, 0x72, 0x08, 0xc5, 0x21, + 0x14, 0x87, 0x50, 0x1c, 0x70, 0x1c, 0x42, 0x71, 0x00, 0x6d, 0x89, 0x00, 0x6d, 0x68, 0xe8, 0x04, + 0xf8, 0x06, 0xf8, 0x86, 0x50, 0x1c, 0x42, 0x71, 0x08, 0xc5, 0x01, 0xc2, 0x21, 0x14, 0x07, 0x54, + 0x17, 0x0f, 0x54, 0x87, 0x86, 0x4e, 0xcb, 0x0d, 0x9d, 0xd4, 0x5a, 0x0e, 0x1d, 0x0b, 0x35, 0x73, + 0xfa, 0x3f, 0x23, 0x29, 0x8a, 0x71, 0x27, 0x27, 0xbf, 0x65, 0x9b, 0x9d, 0xa0, 0xad, 0xde, 0xc9, + 0x69, 0x42, 0x48, 0xad, 0x93, 0x53, 0x06, 0x9d, 0x9c, 0xa8, 0xb1, 0x38, 0x3a, 0x39, 0xe9, 0x56, + 0x7b, 0xca, 0xf0, 0x7a, 0xae, 0xdc, 0xc4, 0xb7, 0x5d, 0x95, 0x46, 0x4c, 0xd3, 0x50, 0xe8, 0x45, + 0x8c, 0x75, 0x4e, 0xc0, 0x5e, 0x99, 0xcf, 0x9c, 0x37, 0x93, 0xf9, 0xbe, 0xe7, 0xb3, 0x96, 0x39, + 0x81, 0xe9, 0xca, 0x4a, 0x68, 0x23, 0x65, 0x68, 0x25, 0x68, 0x25, 0x68, 0x25, 0x49, 0xce, 0x69, + 0x7a, 0x3d, 0x97, 0x33, 0x5f, 0xc9, 0xd5, 0x27, 0x70, 0xf1, 0x89, 0x5c, 0x70, 0x82, 0x28, 0x08, + 0xa5, 0xcb, 0x4d, 0xec, 0xbf, 0x51, 0xbb, 0xd8, 0x3a, 0x9c, 0x33, 0x02, 0x97, 0x9a, 0xd4, 0x95, + 0xd6, 0x75, 0x04, 0xfa, 0x5c, 0x67, 0x2d, 0xa7, 0xb2, 0x27, 0x17, 0xb5, 0x1e, 0x63, 0xa4, 0xc2, + 0x7d, 0xfb, 0xb9, 0xc7, 0x2d, 0xff, 0xcd, 0x0c, 0x1c, 0x8f, 0x9b, 0x6d, 0xdf, 0x72, 0x7b, 0x8e, + 0xe5, 0xdb, 0xfc, 0x4d, 0x1d, 0xab, 0x6c, 0xa1, 0x0d, 0xb4, 0x02, 0xb4, 0x02, 0xb4, 0x22, 0xc9, + 0x39, 0x76, 0x8b, 0xb9, 0xdc, 0xe6, 0x6f, 0x3e, 0x7b, 0xa1, 0x70, 0xa4, 0x14, 0x34, 0xb6, 0xf1, + 0x65, 0xfc, 0x2a, 0x1f, 0xad, 0x80, 0xf0, 0x6e, 0xb4, 0xf6, 0xf0, 0xe5, 0xe3, 0xd7, 0xda, 0xe5, + 0xc3, 0x1f, 0x8d, 0xc7, 0xeb, 0xbb, 0x5a, 0xe3, 0xf3, 0xc3, 0xe5, 0xed, 0xd7, 0xeb, 0xcb, 0x87, + 0x2f, 0xb5, 0x3f, 0x54, 0x99, 0x72, 0x68, 0xb8, 0x02, 0x92, 0x4b, 0x0e, 0x22, 0xcb, 0x3c, 0xbf, + 0xe6, 0xd1, 0x72, 0xb3, 0x67, 0xb9, 0xe2, 0x67, 0x23, 0x0e, 0x18, 0x44, 0xdb, 0x12, 0x73, 0x67, + 0x69, 0x5f, 0x21, 0xc9, 0xfa, 0x94, 0x28, 0xd4, 0xa3, 0xd6, 0x8b, 0xd1, 0xe0, 0x15, 0x3e, 0x0c, + 0xc2, 0x9a, 0x56, 0x8f, 0x7b, 0x04, 0x08, 0x65, 0x9e, 0x1a, 0x30, 0x09, 0x30, 0x09, 0x30, 0x89, + 0x24, 0xe7, 0x3c, 0x7b, 0x9e, 0xc3, 0x2c, 0x97, 0x02, 0x8f, 0x64, 0x13, 0xa0, 0x7e, 0xd8, 0x8f, + 0x2e, 0x6b, 0x72, 0xd6, 0xa2, 0x53, 0x41, 0x53, 0x8a, 0x50, 0x43, 0x50, 0x43, 0x50, 0x43, 0x92, + 0x9c, 0x73, 0x18, 0xd7, 0x4b, 0x13, 0x9d, 0xe1, 0xb3, 0xe6, 0x2b, 0x9d, 0x06, 0x1a, 0x52, 0x83, + 0xf6, 0x81, 0xf6, 0x81, 0xf6, 0x81, 0xf6, 0x09, 0xa1, 0x7d, 0xb8, 0x6f, 0xb9, 0x41, 0xc7, 0xe6, + 0x74, 0x1a, 0x68, 0x4a, 0x11, 0x5a, 0x08, 0x5a, 0x08, 0x5a, 0x08, 0x5a, 0x68, 0xcb, 0x3b, 0xf6, + 0x5c, 0xeb, 0xd5, 0xb2, 0x1d, 0xeb, 0xd9, 0x61, 0x74, 0xd9, 0x35, 0xeb, 0x88, 0x42, 0x17, 0x41, + 0x17, 0x41, 0x17, 0x49, 0x72, 0x0e, 0x12, 0x6b, 0x96, 0x5e, 0x04, 0x89, 0x35, 0x4a, 0x7f, 0x90, + 0x58, 0x13, 0xcb, 0x53, 0x49, 0x7b, 0x62, 0xcd, 0x91, 0x46, 0x1e, 0x55, 0xad, 0x29, 0xd1, 0x5a, + 0x4b, 0x22, 0x66, 0xb1, 0xc2, 0xef, 0x53, 0xb8, 0x4f, 0x86, 0xdc, 0x49, 0xd9, 0x1d, 0xd4, 0xb4, + 0x73, 0x02, 0xa6, 0x2e, 0x74, 0x9d, 0x4d, 0xb8, 0x73, 0xd8, 0xbd, 0xab, 0x21, 0x76, 0xd4, 0x18, + 0x1d, 0x7c, 0xd8, 0x8d, 0x5c, 0x18, 0x24, 0x11, 0xb6, 0xe6, 0x48, 0x70, 0xac, 0xf9, 0x0c, 0x0d, + 0x87, 0xec, 0xb8, 0x21, 0x83, 0x7e, 0x15, 0xd1, 0xae, 0x2c, 0xba, 0x55, 0x46, 0xb3, 0xca, 0xe8, + 0x55, 0x1d, 0xad, 0xd2, 0x4a, 0xb3, 0xe8, 0xd8, 0x70, 0xc3, 0x6a, 0x75, 0x6c, 0xd7, 0x14, 0x63, + 0xdb, 0x95, 0x53, 0x9f, 0x27, 0x22, 0xb8, 0x7f, 0x72, 0x18, 0x40, 0xda, 0xc5, 0x53, 0x71, 0xed, + 0x88, 0x5c, 0x3a, 0x55, 0x57, 0x8e, 0xcc, 0x85, 0x23, 0x73, 0xdd, 0xe8, 0x5c, 0x36, 0xbd, 0x60, + 0x41, 0xda, 0x35, 0x5b, 0xc7, 0xe8, 0xc3, 0xde, 0x0f, 0x32, 0xc7, 0x3f, 0x51, 0xdf, 0x05, 0x89, + 0x67, 0xab, 0x6e, 0xaf, 0x33, 0x58, 0x41, 0x5f, 0x17, 0xb4, 0x10, 0xd0, 0xd9, 0x2d, 0x16, 0x34, + 0x7d, 0xbb, 0x2b, 0x85, 0xbd, 0xe6, 0x1a, 0x7d, 0xcd, 0x88, 0x40, 0x73, 0x40, 0x73, 0xa4, 0x56, + 0x73, 0x48, 0x07, 0x96, 0x25, 0x03, 0xca, 0x7a, 0x64, 0xde, 0x76, 0x5b, 0xec, 0x87, 0xbc, 0xb4, + 0x8f, 0x1e, 0x87, 0x9c, 0x43, 0xce, 0x53, 0x2b, 0xe7, 0x3d, 0xdb, 0xe5, 0xf9, 0x9c, 0x82, 0x9c, + 0x97, 0x25, 0x1e, 0x55, 0x8b, 0xd0, 0x2a, 0x84, 0xaa, 0x29, 0x22, 0xb2, 0x54, 0x5d, 0xd8, 0x88, + 0x22, 0xb0, 0x94, 0x31, 0x3e, 0x95, 0xae, 0x79, 0x14, 0x91, 0x56, 0xea, 0xad, 0x2d, 0xe4, 0x2a, + 0x85, 0x4a, 0xa9, 0x9c, 0xab, 0x14, 0x63, 0xb4, 0xc7, 0x11, 0xc5, 0x31, 0xeb, 0x31, 0x30, 0xbf, + 0x8e, 0xed, 0xfe, 0xa5, 0xea, 0xab, 0xcf, 0xd1, 0x80, 0x21, 0x86, 0x21, 0x4e, 0xad, 0x21, 0x66, + 0x6e, 0xaf, 0xc3, 0x7c, 0x4b, 0xc2, 0xb3, 0x4c, 0x95, 0x97, 0xbe, 0x14, 0x6c, 0x1f, 0x45, 0x2d, + 0xe4, 0x95, 0xc7, 0x3a, 0x6a, 0x50, 0x23, 0x50, 0x23, 0xa9, 0x55, 0x23, 0x6a, 0xf5, 0xc2, 0x2a, + 0x75, 0xc2, 0x34, 0xf5, 0xc1, 0xd3, 0x85, 0x5c, 0xdf, 0x7d, 0xfe, 0x72, 0x75, 0x79, 0xdd, 0xa8, + 0x5e, 0x57, 0x6f, 0xaa, 0xb7, 0xb5, 0xc6, 0xfd, 0xc3, 0x5d, 0xed, 0xee, 0xea, 0xee, 0xba, 0x51, + 0xfb, 0xe3, 0xbe, 0x2a, 0xcb, 0x4f, 0x04, 0x25, 0xc1, 0x44, 0x65, 0xcf, 0x83, 0xe5, 0x34, 0xaa, + 0xb5, 0xdf, 0xab, 0x0f, 0xb7, 0xd5, 0x9a, 0xb1, 0x0f, 0xc4, 0x4e, 0xb9, 0x90, 0xbb, 0xda, 0x6d, + 0xd4, 0xf9, 0x4e, 0x75, 0xdd, 0xa2, 0xab, 0xc9, 0xbc, 0x79, 0xdd, 0x67, 0xab, 0xf9, 0x97, 0xd9, + 0xf1, 0x5a, 0x4a, 0x76, 0x6d, 0x9e, 0x0c, 0x0c, 0x1a, 0x0c, 0x5a, 0x6a, 0x0d, 0xda, 0x02, 0xab, + 0xef, 0xf7, 0x12, 0x4b, 0xe2, 0xd9, 0x4f, 0xec, 0xc5, 0xea, 0x39, 0xc3, 0x53, 0xba, 0xbd, 0xbb, + 0xad, 0x1a, 0x31, 0x50, 0x41, 0xbe, 0xc5, 0x99, 0xd9, 0x74, 0xac, 0x20, 0x90, 0xd7, 0x3f, 0x73, + 0x34, 0xa0, 0x7c, 0xa0, 0x7c, 0x80, 0xa6, 0xe3, 0x8e, 0xa6, 0x67, 0x5d, 0x76, 0x1e, 0x2e, 0x6b, + 0xd5, 0xc6, 0xd5, 0xf5, 0xe5, 0xe3, 0x63, 0x4a, 0x90, 0xf4, 0xb0, 0x0f, 0xcb, 0x70, 0x55, 0xe5, + 0x62, 0xe6, 0x73, 0x92, 0xa1, 0xf4, 0x6c, 0x25, 0x85, 0x4c, 0x5a, 0x56, 0x92, 0x4f, 0xcd, 0x4a, + 0x2e, 0x52, 0xb3, 0x92, 0x4a, 0x6a, 0xe4, 0x24, 0x97, 0x9a, 0x95, 0xe4, 0x53, 0xb3, 0x92, 0x52, + 0x6a, 0x56, 0x52, 0x49, 0x8d, 0xc4, 0x67, 0xd3, 0xb2, 0x8e, 0xd4, 0x1c, 0x48, 0x26, 0x3d, 0x3a, + 0x58, 0xa9, 0xbf, 0x5f, 0x9c, 0x56, 0x52, 0x4c, 0x8d, 0xbc, 0x97, 0xd2, 0xa3, 0xb9, 0x52, 0xb3, + 0x92, 0x62, 0x6a, 0x24, 0x3e, 0x9b, 0x9e, 0x43, 0x29, 0xa7, 0x66, 0x25, 0xb9, 0x34, 0x89, 0x7c, + 0x6a, 0x7c, 0xc6, 0x14, 0x45, 0x24, 0xd2, 0xc2, 0x5d, 0xe9, 0x39, 0x12, 0xb5, 0x95, 0x1c, 0xd0, + 0xad, 0x2b, 0x67, 0x01, 0x37, 0x03, 0xbb, 0xed, 0x5a, 0x8e, 0xfc, 0x9d, 0xc7, 0x3c, 0x11, 0x5c, + 0x7a, 0xec, 0x22, 0x83, 0x4b, 0x0f, 0x2a, 0x89, 0x88, 0xfc, 0xd2, 0x43, 0xbe, 0xbd, 0xaf, 0x64, + 0x5b, 0x5f, 0x4d, 0x42, 0xef, 0xdb, 0xcf, 0x66, 0xd7, 0xf7, 0xb8, 0xd7, 0xf4, 0x54, 0xc4, 0x7e, + 0x81, 0x0c, 0x04, 0x1f, 0x82, 0x8f, 0xdb, 0xce, 0xed, 0xc2, 0x1f, 0xa7, 0xdb, 0xce, 0x34, 0x66, + 0x0d, 0xde, 0xd5, 0xbe, 0xe6, 0x93, 0x9f, 0x31, 0x78, 0x95, 0xad, 0xe4, 0x12, 0xbf, 0x8a, 0xc7, + 0xda, 0x4d, 0xb6, 0x94, 0xf8, 0x55, 0x64, 0x33, 0x99, 0xcf, 0xd5, 0xe4, 0x73, 0xd4, 0xa7, 0xaf, + 0xb9, 0x6a, 0x0a, 0xce, 0xe2, 0x73, 0xb5, 0x71, 0x7d, 0x79, 0x9b, 0x82, 0x94, 0xe0, 0xaf, 0x57, + 0xb7, 0x69, 0x60, 0xaa, 0xab, 0x54, 0x9c, 0x45, 0x0a, 0x44, 0xe3, 0xae, 0xf6, 0x35, 0x9b, 0x82, + 0x55, 0x5c, 0x95, 0x4b, 0x17, 0xa9, 0xe0, 0xa8, 0x34, 0x2c, 0xa2, 0x90, 0x06, 0x0d, 0x95, 0x4f, + 0x85, 0xed, 0x4e, 0xc3, 0x22, 0x0a, 0xe9, 0xc0, 0x1f, 0xff, 0x93, 0x06, 0xfc, 0x71, 0x55, 0xb8, + 0x48, 0x05, 0x32, 0x6f, 0xdc, 0x5c, 0x7f, 0x4e, 0x83, 0xa3, 0x54, 0x4a, 0xbe, 0x70, 0x14, 0x52, + 0xe1, 0x28, 0x65, 0x53, 0xb0, 0x86, 0xc7, 0xda, 0x4d, 0xae, 0x58, 0x4a, 0x01, 0x43, 0x29, 0x9d, + 0x45, 0xd2, 0xaf, 0xf0, 0xd2, 0xda, 0x18, 0x58, 0xa0, 0x9d, 0x72, 0x88, 0x36, 0xbe, 0x47, 0x0a, + 0xbb, 0x63, 0xfc, 0x9b, 0xbd, 0x85, 0xed, 0x64, 0x66, 0x5c, 0xdb, 0x01, 0xbf, 0xe4, 0x3c, 0x5c, + 0x47, 0x56, 0xe3, 0xc6, 0x76, 0xab, 0x0e, 0xeb, 0x30, 0x77, 0xd8, 0x10, 0xc7, 0xed, 0x39, 0x4e, + 0x88, 0x7e, 0xc3, 0x37, 0xd6, 0x0f, 0xf1, 0x87, 0xee, 0xfc, 0x16, 0xf3, 0x59, 0xeb, 0xe3, 0xdb, + 0xf8, 0x11, 0xa5, 0x0d, 0x11, 0x64, 0x13, 0x0d, 0xec, 0x61, 0x84, 0xea, 0xcb, 0xbc, 0xbb, 0x57, + 0xf4, 0x76, 0x06, 0xdb, 0xcc, 0x36, 0xeb, 0xff, 0x65, 0xc3, 0xbe, 0x85, 0xdd, 0x2f, 0xc2, 0x7d, + 0x5a, 0xbf, 0xae, 0xd5, 0xb7, 0x5e, 0xf3, 0xc6, 0x86, 0xd7, 0x1d, 0xf7, 0x50, 0xb1, 0x9c, 0x61, + 0xc1, 0xe8, 0xe6, 0x1a, 0xc7, 0xd9, 0x7d, 0xd7, 0xca, 0x23, 0x1b, 0x76, 0x62, 0x7b, 0x1f, 0xeb, + 0x9d, 0x97, 0x76, 0x61, 0x2e, 0xe7, 0x04, 0x2f, 0xe1, 0xc2, 0x5e, 0xb6, 0x09, 0x5f, 0xaa, 0x09, + 0x5f, 0x9e, 0x89, 0x5f, 0x92, 0x89, 0x71, 0xe1, 0xae, 0x3e, 0xd1, 0x46, 0xa8, 0x7a, 0xfa, 0xe9, + 0xf6, 0x86, 0x28, 0x9b, 0x0f, 0xd9, 0xb6, 0x3c, 0x74, 0xbb, 0x72, 0x91, 0xbb, 0x59, 0xc9, 0xbb, + 0x58, 0xd1, 0xbb, 0x57, 0xe9, 0xbb, 0x56, 0xe9, 0xbb, 0x55, 0xf9, 0xbb, 0x54, 0x35, 0x2b, 0x18, + 0xb6, 0xcd, 0xb8, 0xd1, 0x9c, 0x9c, 0xa6, 0x60, 0x43, 0xfc, 0xf1, 0x73, 0x9a, 0x3b, 0xe2, 0x67, + 0xd0, 0x11, 0x9f, 0x8c, 0x15, 0xd5, 0x59, 0x32, 0x2d, 0x30, 0x76, 0xc5, 0x00, 0x9e, 0x0f, 0xfe, + 0xff, 0x7c, 0xcc, 0xd2, 0x11, 0x0e, 0xa3, 0x18, 0x76, 0x78, 0xb0, 0x5b, 0xe2, 0xd2, 0x37, 0x79, + 0x50, 0x4c, 0xfc, 0x32, 0x10, 0x3f, 0x88, 0xdf, 0xf2, 0xeb, 0x08, 0x67, 0xd1, 0xcc, 0x1a, 0x95, + 0x30, 0xeb, 0x45, 0x2c, 0x73, 0x66, 0x6a, 0x07, 0x04, 0x7a, 0xe8, 0x1a, 0xf7, 0x63, 0x09, 0x3f, + 0x3b, 0x1b, 0xb9, 0x99, 0xe7, 0x13, 0xe6, 0xc7, 0xd4, 0x18, 0x4c, 0x8d, 0x39, 0x10, 0x21, 0x15, + 0x9e, 0x1a, 0x83, 0xd9, 0x0f, 0xc7, 0x11, 0x31, 0xb9, 0x2a, 0xb3, 0x93, 0x31, 0x3d, 0x19, 0xf3, + 0xd3, 0x09, 0x81, 0x64, 0x3c, 0x15, 0xb3, 0x1f, 0x64, 0xf6, 0x42, 0x18, 0x4d, 0x2a, 0xa2, 0x4a, + 0xc8, 0x3a, 0x64, 0x3d, 0x81, 0xb2, 0xde, 0xb3, 0x5d, 0x9e, 0x2d, 0x29, 0xc8, 0x7a, 0x09, 0xf3, + 0x1f, 0xe4, 0xc8, 0x60, 0xfe, 0x83, 0xf6, 0xad, 0x2d, 0x15, 0x8b, 0x79, 0x8c, 0x7e, 0xd8, 0x8b, + 0xf5, 0x7d, 0x65, 0x6e, 0xcb, 0xf3, 0x95, 0xec, 0xef, 0x8c, 0x04, 0x2c, 0x30, 0x2c, 0x30, 0xd0, + 0x76, 0xf4, 0x68, 0x3b, 0x9d, 0x81, 0xed, 0xf8, 0x65, 0x67, 0x84, 0xf3, 0x34, 0x90, 0x9f, 0x11, + 0x05, 0x7b, 0x28, 0x67, 0x67, 0xdc, 0x0c, 0x88, 0xa4, 0x24, 0x35, 0x63, 0x35, 0x37, 0x42, 0x21, + 0x37, 0x63, 0x7b, 0xd4, 0x38, 0x54, 0x94, 0x38, 0x74, 0x0e, 0x46, 0x0e, 0x39, 0x18, 0xe4, 0x39, + 0x18, 0xfa, 0xd9, 0x6d, 0x8b, 0x66, 0x5e, 0xc3, 0x62, 0x47, 0x5b, 0x5e, 0x7a, 0xd7, 0xcb, 0xca, + 0xbf, 0xa4, 0xb1, 0x96, 0xb3, 0x37, 0xeb, 0x83, 0xc5, 0xe5, 0xcc, 0x5e, 0x7a, 0xf4, 0xd3, 0xf8, + 0xb5, 0x37, 0xbd, 0xae, 0x61, 0x07, 0x57, 0x5e, 0xa7, 0xeb, 0xb3, 0x20, 0x60, 0xad, 0xc7, 0xe1, + 0x2b, 0xaf, 0xb0, 0x82, 0x61, 0x07, 0xbf, 0x59, 0x7f, 0xb1, 0x07, 0xcf, 0x5b, 0x65, 0x93, 0xe5, + 0x65, 0x1a, 0xf3, 0xff, 0xb4, 0xf0, 0xd2, 0xf3, 0x2f, 0xdb, 0x3f, 0xea, 0xff, 0x7f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x46, 0xf8, 0xdd, 0x2e, 0x29, 0x99, 0x69, 0x01, } ) @@ -205093,8 +205116,8 @@ var ΛEnumTypes = map[string][]reflect.Type{ reflect.TypeOf((E_OpenconfigOspfv2_SrSidType)(0)), }, "/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/type": { - reflect.TypeOf((E_SegmentRoutingSidLabelRange_Tlv_Type)(0)), reflect.TypeOf((E_OpenconfigOspfTypes_OSPF_RI_SR_SID_LABEL_TLV_TYPES)(0)), + reflect.TypeOf((E_SegmentRoutingSidLabelRange_Tlv_Type)(0)), }, "/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/state/type": { reflect.TypeOf((E_OpenconfigOspfTypes_RI_LSA_TLV_TYPES)(0)), diff --git a/exampleocpath/ocpath.go b/exampleoc/ocpath.go similarity index 62% rename from exampleocpath/ocpath.go rename to exampleoc/ocpath.go index 13bf52726..47f1fd640 100644 --- a/exampleocpath/ocpath.go +++ b/exampleoc/ocpath.go @@ -1,14 +1,9 @@ /* -Package exampleocpath is a generated package which contains definitions +Package exampleoc is a generated package which contains definitions of structs which generate gNMI paths for a YANG schema. The generated paths are based on a compressed form of the schema. -NOTE WELL: This is an example code file that is distributed with ygot. -It should not be used within your application, as it WILL change, -without warning. Rather, you should generate structs directly from -OpenConfig models using the ygot package. - -This package was generated by github.com/openconfig/ygot +This package was generated by /usr/local/google/home/wenbli/gocode/src/github.com/openconfig/ygot/genutil/names.go using the following YANG input files: - public/release/models/network-instance/openconfig-network-instance.yang - public/release/models/optical-transport/openconfig-optical-amplifier.yang @@ -26,40 +21,40 @@ using the following YANG input files: - public/release/models/interfaces/openconfig-if-ethernet.yang - public/release/models/interfaces/openconfig-if-ip-ext.yang - public/release/models/relay-agent/openconfig-relay-agent.yang + - public/release/models/lldp/openconfig-lldp.yang Imported modules were sourced from: - public/... - deps/... */ -package exampleocpath +package exampleoc import ( - oc "github.com/openconfig/ygot/exampleoc" "github.com/openconfig/ygot/ygot" ) -// Acl represents the /openconfig-acl/acl YANG schema element. -type Acl struct { +// AclPath represents the /openconfig-acl/acl YANG schema element. +type AclPath struct { *ygot.NodePath } -// AclAny represents the wildcard version of the /openconfig-acl/acl YANG schema element. -type AclAny struct { +// AclPathAny represents the wildcard version of the /openconfig-acl/acl YANG schema element. +type AclPathAny struct { *ygot.NodePath } -// Acl_CounterCapability represents the /openconfig-acl/acl/state/counter-capability YANG schema element. -type Acl_CounterCapability struct { +// Acl_CounterCapabilityPath represents the /openconfig-acl/acl/state/counter-capability YANG schema element. +type Acl_CounterCapabilityPath struct { *ygot.NodePath } -// Acl_CounterCapabilityAny represents the wildcard version of the /openconfig-acl/acl/state/counter-capability YANG schema element. -type Acl_CounterCapabilityAny struct { +// Acl_CounterCapabilityPathAny represents the wildcard version of the /openconfig-acl/acl/state/counter-capability YANG schema element. +type Acl_CounterCapabilityPathAny struct { *ygot.NodePath } -// AclSetAny returns from Acl the path struct for its child "acl-set". -func (n *Acl) AclSetAny() *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAny returns from AclPath the path struct for its child "acl-set". +func (n *AclPath) AclSetAny() *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": "*", "type": "*"}, @@ -68,9 +63,9 @@ func (n *Acl) AclSetAny() *Acl_AclSetAny { } } -// AclSetAny returns from AclAny the path struct for its child "acl-set". -func (n *AclAny) AclSetAny() *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAny returns from AclPathAny the path struct for its child "acl-set". +func (n *AclPathAny) AclSetAny() *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": "*", "type": "*"}, @@ -79,9 +74,9 @@ func (n *AclAny) AclSetAny() *Acl_AclSetAny { } } -// AclSetAnyType returns from Acl the path struct for its child "acl-set". -func (n *Acl) AclSetAnyType(Name string) *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAnyType returns from AclPath the path struct for its child "acl-set". +func (n *AclPath) AclSetAnyType(Name string) *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": Name, "type": "*"}, @@ -90,9 +85,9 @@ func (n *Acl) AclSetAnyType(Name string) *Acl_AclSetAny { } } -// AclSetAnyType returns from AclAny the path struct for its child "acl-set". -func (n *AclAny) AclSetAnyType(Name string) *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAnyType returns from AclPathAny the path struct for its child "acl-set". +func (n *AclPathAny) AclSetAnyType(Name string) *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": Name, "type": "*"}, @@ -101,9 +96,9 @@ func (n *AclAny) AclSetAnyType(Name string) *Acl_AclSetAny { } } -// AclSetAnyName returns from Acl the path struct for its child "acl-set". -func (n *Acl) AclSetAnyName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAnyName returns from AclPath the path struct for its child "acl-set". +func (n *AclPath) AclSetAnyName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": "*", "type": Type}, @@ -112,9 +107,9 @@ func (n *Acl) AclSetAnyName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetAny { } } -// AclSetAnyName returns from AclAny the path struct for its child "acl-set". -func (n *AclAny) AclSetAnyName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSetAnyName returns from AclPathAny the path struct for its child "acl-set". +func (n *AclPathAny) AclSetAnyName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": "*", "type": Type}, @@ -123,9 +118,9 @@ func (n *AclAny) AclSetAnyName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetAny } } -// AclSet returns from Acl the path struct for its child "acl-set". -func (n *Acl) AclSet(Name string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSet { - return &Acl_AclSet{ +// AclSet returns from AclPath the path struct for its child "acl-set". +func (n *AclPath) AclSet(Name string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetPath { + return &Acl_AclSetPath{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": Name, "type": Type}, @@ -134,9 +129,9 @@ func (n *Acl) AclSet(Name string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSet } } -// AclSet returns from AclAny the path struct for its child "acl-set". -func (n *AclAny) AclSet(Name string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetAny { - return &Acl_AclSetAny{ +// AclSet returns from AclPathAny the path struct for its child "acl-set". +func (n *AclPathAny) AclSet(Name string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_AclSetPathAny { + return &Acl_AclSetPathAny{ NodePath: ygot.NewNodePath( []string{"acl-sets", "acl-set"}, map[string]interface{}{"name": Name, "type": Type}, @@ -145,9 +140,9 @@ func (n *AclAny) AclSet(Name string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_AclS } } -// CounterCapability returns from Acl the path struct for its child "counter-capability". -func (n *Acl) CounterCapability() *Acl_CounterCapability { - return &Acl_CounterCapability{ +// CounterCapability returns from AclPath the path struct for its child "counter-capability". +func (n *AclPath) CounterCapability() *Acl_CounterCapabilityPath { + return &Acl_CounterCapabilityPath{ NodePath: ygot.NewNodePath( []string{"state", "counter-capability"}, map[string]interface{}{}, @@ -156,9 +151,9 @@ func (n *Acl) CounterCapability() *Acl_CounterCapability { } } -// CounterCapability returns from AclAny the path struct for its child "counter-capability". -func (n *AclAny) CounterCapability() *Acl_CounterCapabilityAny { - return &Acl_CounterCapabilityAny{ +// CounterCapability returns from AclPathAny the path struct for its child "counter-capability". +func (n *AclPathAny) CounterCapability() *Acl_CounterCapabilityPathAny { + return &Acl_CounterCapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counter-capability"}, map[string]interface{}{}, @@ -167,9 +162,9 @@ func (n *AclAny) CounterCapability() *Acl_CounterCapabilityAny { } } -// InterfaceAny returns from Acl the path struct for its child "interface". -func (n *Acl) InterfaceAny() *Acl_InterfaceAny { - return &Acl_InterfaceAny{ +// InterfaceAny returns from AclPath the path struct for its child "interface". +func (n *AclPath) InterfaceAny() *Acl_InterfacePathAny { + return &Acl_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -178,9 +173,9 @@ func (n *Acl) InterfaceAny() *Acl_InterfaceAny { } } -// InterfaceAny returns from AclAny the path struct for its child "interface". -func (n *AclAny) InterfaceAny() *Acl_InterfaceAny { - return &Acl_InterfaceAny{ +// InterfaceAny returns from AclPathAny the path struct for its child "interface". +func (n *AclPathAny) InterfaceAny() *Acl_InterfacePathAny { + return &Acl_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -189,9 +184,9 @@ func (n *AclAny) InterfaceAny() *Acl_InterfaceAny { } } -// Interface returns from Acl the path struct for its child "interface". -func (n *Acl) Interface(Id string) *Acl_Interface { - return &Acl_Interface{ +// Interface returns from AclPath the path struct for its child "interface". +func (n *AclPath) Interface(Id string) *Acl_InterfacePath { + return &Acl_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -200,9 +195,9 @@ func (n *Acl) Interface(Id string) *Acl_Interface { } } -// Interface returns from AclAny the path struct for its child "interface". -func (n *AclAny) Interface(Id string) *Acl_InterfaceAny { - return &Acl_InterfaceAny{ +// Interface returns from AclPathAny the path struct for its child "interface". +func (n *AclPathAny) Interface(Id string) *Acl_InterfacePathAny { + return &Acl_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -211,49 +206,49 @@ func (n *AclAny) Interface(Id string) *Acl_InterfaceAny { } } -// Acl_AclSet represents the /openconfig-acl/acl/acl-sets/acl-set YANG schema element. -type Acl_AclSet struct { +// Acl_AclSetPath represents the /openconfig-acl/acl/acl-sets/acl-set YANG schema element. +type Acl_AclSetPath struct { *ygot.NodePath } -// Acl_AclSetAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set YANG schema element. -type Acl_AclSetAny struct { +// Acl_AclSetPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set YANG schema element. +type Acl_AclSetPathAny struct { *ygot.NodePath } -// Acl_AclSet_Description represents the /openconfig-acl/acl/acl-sets/acl-set/state/description YANG schema element. -type Acl_AclSet_Description struct { +// Acl_AclSet_DescriptionPath represents the /openconfig-acl/acl/acl-sets/acl-set/config/description YANG schema element. +type Acl_AclSet_DescriptionPath struct { *ygot.NodePath } -// Acl_AclSet_DescriptionAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/state/description YANG schema element. -type Acl_AclSet_DescriptionAny struct { +// Acl_AclSet_DescriptionPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/config/description YANG schema element. +type Acl_AclSet_DescriptionPathAny struct { *ygot.NodePath } -// Acl_AclSet_Name represents the /openconfig-acl/acl/acl-sets/acl-set/state/name YANG schema element. -type Acl_AclSet_Name struct { +// Acl_AclSet_NamePath represents the /openconfig-acl/acl/acl-sets/acl-set/config/name YANG schema element. +type Acl_AclSet_NamePath struct { *ygot.NodePath } -// Acl_AclSet_NameAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/state/name YANG schema element. -type Acl_AclSet_NameAny struct { +// Acl_AclSet_NamePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/config/name YANG schema element. +type Acl_AclSet_NamePathAny struct { *ygot.NodePath } -// Acl_AclSet_Type represents the /openconfig-acl/acl/acl-sets/acl-set/state/type YANG schema element. -type Acl_AclSet_Type struct { +// Acl_AclSet_TypePath represents the /openconfig-acl/acl/acl-sets/acl-set/config/type YANG schema element. +type Acl_AclSet_TypePath struct { *ygot.NodePath } -// Acl_AclSet_TypeAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/state/type YANG schema element. -type Acl_AclSet_TypeAny struct { +// Acl_AclSet_TypePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/config/type YANG schema element. +type Acl_AclSet_TypePathAny struct { *ygot.NodePath } -// AclEntryAny returns from Acl_AclSet the path struct for its child "acl-entry". -func (n *Acl_AclSet) AclEntryAny() *Acl_AclSet_AclEntryAny { - return &Acl_AclSet_AclEntryAny{ +// AclEntryAny returns from Acl_AclSetPath the path struct for its child "acl-entry". +func (n *Acl_AclSetPath) AclEntryAny() *Acl_AclSet_AclEntryPathAny { + return &Acl_AclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -262,9 +257,9 @@ func (n *Acl_AclSet) AclEntryAny() *Acl_AclSet_AclEntryAny { } } -// AclEntryAny returns from Acl_AclSetAny the path struct for its child "acl-entry". -func (n *Acl_AclSetAny) AclEntryAny() *Acl_AclSet_AclEntryAny { - return &Acl_AclSet_AclEntryAny{ +// AclEntryAny returns from Acl_AclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_AclSetPathAny) AclEntryAny() *Acl_AclSet_AclEntryPathAny { + return &Acl_AclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -273,9 +268,9 @@ func (n *Acl_AclSetAny) AclEntryAny() *Acl_AclSet_AclEntryAny { } } -// AclEntry returns from Acl_AclSet the path struct for its child "acl-entry". -func (n *Acl_AclSet) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntry { - return &Acl_AclSet_AclEntry{ +// AclEntry returns from Acl_AclSetPath the path struct for its child "acl-entry". +func (n *Acl_AclSetPath) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntryPath { + return &Acl_AclSet_AclEntryPath{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -284,9 +279,9 @@ func (n *Acl_AclSet) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntry { } } -// AclEntry returns from Acl_AclSetAny the path struct for its child "acl-entry". -func (n *Acl_AclSetAny) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntryAny { - return &Acl_AclSet_AclEntryAny{ +// AclEntry returns from Acl_AclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_AclSetPathAny) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntryPathAny { + return &Acl_AclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -295,125 +290,125 @@ func (n *Acl_AclSetAny) AclEntry(SequenceId uint32) *Acl_AclSet_AclEntryAny { } } -// Description returns from Acl_AclSet the path struct for its child "description". -func (n *Acl_AclSet) Description() *Acl_AclSet_Description { - return &Acl_AclSet_Description{ +// Description returns from Acl_AclSetPath the path struct for its child "description". +func (n *Acl_AclSetPath) Description() *Acl_AclSet_DescriptionPath { + return &Acl_AclSet_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Acl_AclSetAny the path struct for its child "description". -func (n *Acl_AclSetAny) Description() *Acl_AclSet_DescriptionAny { - return &Acl_AclSet_DescriptionAny{ +// Description returns from Acl_AclSetPathAny the path struct for its child "description". +func (n *Acl_AclSetPathAny) Description() *Acl_AclSet_DescriptionPathAny { + return &Acl_AclSet_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Name returns from Acl_AclSet the path struct for its child "name". -func (n *Acl_AclSet) Name() *Acl_AclSet_Name { - return &Acl_AclSet_Name{ +// Name returns from Acl_AclSetPath the path struct for its child "name". +func (n *Acl_AclSetPath) Name() *Acl_AclSet_NamePath { + return &Acl_AclSet_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Acl_AclSetAny the path struct for its child "name". -func (n *Acl_AclSetAny) Name() *Acl_AclSet_NameAny { - return &Acl_AclSet_NameAny{ +// Name returns from Acl_AclSetPathAny the path struct for its child "name". +func (n *Acl_AclSetPathAny) Name() *Acl_AclSet_NamePathAny { + return &Acl_AclSet_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_AclSet the path struct for its child "type". -func (n *Acl_AclSet) Type() *Acl_AclSet_Type { - return &Acl_AclSet_Type{ +// Type returns from Acl_AclSetPath the path struct for its child "type". +func (n *Acl_AclSetPath) Type() *Acl_AclSet_TypePath { + return &Acl_AclSet_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_AclSetAny the path struct for its child "type". -func (n *Acl_AclSetAny) Type() *Acl_AclSet_TypeAny { - return &Acl_AclSet_TypeAny{ +// Type returns from Acl_AclSetPathAny the path struct for its child "type". +func (n *Acl_AclSetPathAny) Type() *Acl_AclSet_TypePathAny { + return &Acl_AclSet_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Acl_AclSet_AclEntry represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry YANG schema element. -type Acl_AclSet_AclEntry struct { +// Acl_AclSet_AclEntryPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry YANG schema element. +type Acl_AclSet_AclEntryPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntryAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry YANG schema element. -type Acl_AclSet_AclEntryAny struct { +// Acl_AclSet_AclEntryPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry YANG schema element. +type Acl_AclSet_AclEntryPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Description represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/description YANG schema element. -type Acl_AclSet_AclEntry_Description struct { +// Acl_AclSet_AclEntry_DescriptionPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/config/description YANG schema element. +type Acl_AclSet_AclEntry_DescriptionPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_DescriptionAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/description YANG schema element. -type Acl_AclSet_AclEntry_DescriptionAny struct { +// Acl_AclSet_AclEntry_DescriptionPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/config/description YANG schema element. +type Acl_AclSet_AclEntry_DescriptionPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_MatchedOctets represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_AclSet_AclEntry_MatchedOctets struct { +// Acl_AclSet_AclEntry_MatchedOctetsPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_AclSet_AclEntry_MatchedOctetsPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_MatchedOctetsAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_AclSet_AclEntry_MatchedOctetsAny struct { +// Acl_AclSet_AclEntry_MatchedOctetsPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_AclSet_AclEntry_MatchedOctetsPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_MatchedPackets represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_AclSet_AclEntry_MatchedPackets struct { +// Acl_AclSet_AclEntry_MatchedPacketsPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_AclSet_AclEntry_MatchedPacketsPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_MatchedPacketsAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_AclSet_AclEntry_MatchedPacketsAny struct { +// Acl_AclSet_AclEntry_MatchedPacketsPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_AclSet_AclEntry_MatchedPacketsPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_SequenceId represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_AclSet_AclEntry_SequenceId struct { +// Acl_AclSet_AclEntry_SequenceIdPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/config/sequence-id YANG schema element. +type Acl_AclSet_AclEntry_SequenceIdPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_SequenceIdAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_AclSet_AclEntry_SequenceIdAny struct { +// Acl_AclSet_AclEntry_SequenceIdPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/config/sequence-id YANG schema element. +type Acl_AclSet_AclEntry_SequenceIdPathAny struct { *ygot.NodePath } -// Actions returns from Acl_AclSet_AclEntry the path struct for its child "actions". -func (n *Acl_AclSet_AclEntry) Actions() *Acl_AclSet_AclEntry_Actions { - return &Acl_AclSet_AclEntry_Actions{ +// Actions returns from Acl_AclSet_AclEntryPath the path struct for its child "actions". +func (n *Acl_AclSet_AclEntryPath) Actions() *Acl_AclSet_AclEntry_ActionsPath { + return &Acl_AclSet_AclEntry_ActionsPath{ NodePath: ygot.NewNodePath( []string{"actions"}, map[string]interface{}{}, @@ -422,9 +417,9 @@ func (n *Acl_AclSet_AclEntry) Actions() *Acl_AclSet_AclEntry_Actions { } } -// Actions returns from Acl_AclSet_AclEntryAny the path struct for its child "actions". -func (n *Acl_AclSet_AclEntryAny) Actions() *Acl_AclSet_AclEntry_ActionsAny { - return &Acl_AclSet_AclEntry_ActionsAny{ +// Actions returns from Acl_AclSet_AclEntryPathAny the path struct for its child "actions". +func (n *Acl_AclSet_AclEntryPathAny) Actions() *Acl_AclSet_AclEntry_ActionsPathAny { + return &Acl_AclSet_AclEntry_ActionsPathAny{ NodePath: ygot.NewNodePath( []string{"actions"}, map[string]interface{}{}, @@ -433,31 +428,31 @@ func (n *Acl_AclSet_AclEntryAny) Actions() *Acl_AclSet_AclEntry_ActionsAny { } } -// Description returns from Acl_AclSet_AclEntry the path struct for its child "description". -func (n *Acl_AclSet_AclEntry) Description() *Acl_AclSet_AclEntry_Description { - return &Acl_AclSet_AclEntry_Description{ +// Description returns from Acl_AclSet_AclEntryPath the path struct for its child "description". +func (n *Acl_AclSet_AclEntryPath) Description() *Acl_AclSet_AclEntry_DescriptionPath { + return &Acl_AclSet_AclEntry_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Acl_AclSet_AclEntryAny the path struct for its child "description". -func (n *Acl_AclSet_AclEntryAny) Description() *Acl_AclSet_AclEntry_DescriptionAny { - return &Acl_AclSet_AclEntry_DescriptionAny{ +// Description returns from Acl_AclSet_AclEntryPathAny the path struct for its child "description". +func (n *Acl_AclSet_AclEntryPathAny) Description() *Acl_AclSet_AclEntry_DescriptionPathAny { + return &Acl_AclSet_AclEntry_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// InputInterface returns from Acl_AclSet_AclEntry the path struct for its child "input-interface". -func (n *Acl_AclSet_AclEntry) InputInterface() *Acl_AclSet_AclEntry_InputInterface { - return &Acl_AclSet_AclEntry_InputInterface{ +// InputInterface returns from Acl_AclSet_AclEntryPath the path struct for its child "input-interface". +func (n *Acl_AclSet_AclEntryPath) InputInterface() *Acl_AclSet_AclEntry_InputInterfacePath { + return &Acl_AclSet_AclEntry_InputInterfacePath{ NodePath: ygot.NewNodePath( []string{"input-interface"}, map[string]interface{}{}, @@ -466,9 +461,9 @@ func (n *Acl_AclSet_AclEntry) InputInterface() *Acl_AclSet_AclEntry_InputInterfa } } -// InputInterface returns from Acl_AclSet_AclEntryAny the path struct for its child "input-interface". -func (n *Acl_AclSet_AclEntryAny) InputInterface() *Acl_AclSet_AclEntry_InputInterfaceAny { - return &Acl_AclSet_AclEntry_InputInterfaceAny{ +// InputInterface returns from Acl_AclSet_AclEntryPathAny the path struct for its child "input-interface". +func (n *Acl_AclSet_AclEntryPathAny) InputInterface() *Acl_AclSet_AclEntry_InputInterfacePathAny { + return &Acl_AclSet_AclEntry_InputInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"input-interface"}, map[string]interface{}{}, @@ -477,9 +472,9 @@ func (n *Acl_AclSet_AclEntryAny) InputInterface() *Acl_AclSet_AclEntry_InputInte } } -// Ipv4 returns from Acl_AclSet_AclEntry the path struct for its child "ipv4". -func (n *Acl_AclSet_AclEntry) Ipv4() *Acl_AclSet_AclEntry_Ipv4 { - return &Acl_AclSet_AclEntry_Ipv4{ +// Ipv4 returns from Acl_AclSet_AclEntryPath the path struct for its child "ipv4". +func (n *Acl_AclSet_AclEntryPath) Ipv4() *Acl_AclSet_AclEntry_Ipv4Path { + return &Acl_AclSet_AclEntry_Ipv4Path{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -488,9 +483,9 @@ func (n *Acl_AclSet_AclEntry) Ipv4() *Acl_AclSet_AclEntry_Ipv4 { } } -// Ipv4 returns from Acl_AclSet_AclEntryAny the path struct for its child "ipv4". -func (n *Acl_AclSet_AclEntryAny) Ipv4() *Acl_AclSet_AclEntry_Ipv4Any { - return &Acl_AclSet_AclEntry_Ipv4Any{ +// Ipv4 returns from Acl_AclSet_AclEntryPathAny the path struct for its child "ipv4". +func (n *Acl_AclSet_AclEntryPathAny) Ipv4() *Acl_AclSet_AclEntry_Ipv4PathAny { + return &Acl_AclSet_AclEntry_Ipv4PathAny{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -499,9 +494,9 @@ func (n *Acl_AclSet_AclEntryAny) Ipv4() *Acl_AclSet_AclEntry_Ipv4Any { } } -// Ipv6 returns from Acl_AclSet_AclEntry the path struct for its child "ipv6". -func (n *Acl_AclSet_AclEntry) Ipv6() *Acl_AclSet_AclEntry_Ipv6 { - return &Acl_AclSet_AclEntry_Ipv6{ +// Ipv6 returns from Acl_AclSet_AclEntryPath the path struct for its child "ipv6". +func (n *Acl_AclSet_AclEntryPath) Ipv6() *Acl_AclSet_AclEntry_Ipv6Path { + return &Acl_AclSet_AclEntry_Ipv6Path{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -510,9 +505,9 @@ func (n *Acl_AclSet_AclEntry) Ipv6() *Acl_AclSet_AclEntry_Ipv6 { } } -// Ipv6 returns from Acl_AclSet_AclEntryAny the path struct for its child "ipv6". -func (n *Acl_AclSet_AclEntryAny) Ipv6() *Acl_AclSet_AclEntry_Ipv6Any { - return &Acl_AclSet_AclEntry_Ipv6Any{ +// Ipv6 returns from Acl_AclSet_AclEntryPathAny the path struct for its child "ipv6". +func (n *Acl_AclSet_AclEntryPathAny) Ipv6() *Acl_AclSet_AclEntry_Ipv6PathAny { + return &Acl_AclSet_AclEntry_Ipv6PathAny{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -521,9 +516,9 @@ func (n *Acl_AclSet_AclEntryAny) Ipv6() *Acl_AclSet_AclEntry_Ipv6Any { } } -// L2 returns from Acl_AclSet_AclEntry the path struct for its child "l2". -func (n *Acl_AclSet_AclEntry) L2() *Acl_AclSet_AclEntry_L2 { - return &Acl_AclSet_AclEntry_L2{ +// L2 returns from Acl_AclSet_AclEntryPath the path struct for its child "l2". +func (n *Acl_AclSet_AclEntryPath) L2() *Acl_AclSet_AclEntry_L2Path { + return &Acl_AclSet_AclEntry_L2Path{ NodePath: ygot.NewNodePath( []string{"l2"}, map[string]interface{}{}, @@ -532,9 +527,9 @@ func (n *Acl_AclSet_AclEntry) L2() *Acl_AclSet_AclEntry_L2 { } } -// L2 returns from Acl_AclSet_AclEntryAny the path struct for its child "l2". -func (n *Acl_AclSet_AclEntryAny) L2() *Acl_AclSet_AclEntry_L2Any { - return &Acl_AclSet_AclEntry_L2Any{ +// L2 returns from Acl_AclSet_AclEntryPathAny the path struct for its child "l2". +func (n *Acl_AclSet_AclEntryPathAny) L2() *Acl_AclSet_AclEntry_L2PathAny { + return &Acl_AclSet_AclEntry_L2PathAny{ NodePath: ygot.NewNodePath( []string{"l2"}, map[string]interface{}{}, @@ -543,9 +538,9 @@ func (n *Acl_AclSet_AclEntryAny) L2() *Acl_AclSet_AclEntry_L2Any { } } -// MatchedOctets returns from Acl_AclSet_AclEntry the path struct for its child "matched-octets". -func (n *Acl_AclSet_AclEntry) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOctets { - return &Acl_AclSet_AclEntry_MatchedOctets{ +// MatchedOctets returns from Acl_AclSet_AclEntryPath the path struct for its child "matched-octets". +func (n *Acl_AclSet_AclEntryPath) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOctetsPath { + return &Acl_AclSet_AclEntry_MatchedOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -554,9 +549,9 @@ func (n *Acl_AclSet_AclEntry) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOctets } } -// MatchedOctets returns from Acl_AclSet_AclEntryAny the path struct for its child "matched-octets". -func (n *Acl_AclSet_AclEntryAny) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOctetsAny { - return &Acl_AclSet_AclEntry_MatchedOctetsAny{ +// MatchedOctets returns from Acl_AclSet_AclEntryPathAny the path struct for its child "matched-octets". +func (n *Acl_AclSet_AclEntryPathAny) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOctetsPathAny { + return &Acl_AclSet_AclEntry_MatchedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -565,9 +560,9 @@ func (n *Acl_AclSet_AclEntryAny) MatchedOctets() *Acl_AclSet_AclEntry_MatchedOct } } -// MatchedPackets returns from Acl_AclSet_AclEntry the path struct for its child "matched-packets". -func (n *Acl_AclSet_AclEntry) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPackets { - return &Acl_AclSet_AclEntry_MatchedPackets{ +// MatchedPackets returns from Acl_AclSet_AclEntryPath the path struct for its child "matched-packets". +func (n *Acl_AclSet_AclEntryPath) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPacketsPath { + return &Acl_AclSet_AclEntry_MatchedPacketsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -576,9 +571,9 @@ func (n *Acl_AclSet_AclEntry) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPacke } } -// MatchedPackets returns from Acl_AclSet_AclEntryAny the path struct for its child "matched-packets". -func (n *Acl_AclSet_AclEntryAny) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPacketsAny { - return &Acl_AclSet_AclEntry_MatchedPacketsAny{ +// MatchedPackets returns from Acl_AclSet_AclEntryPathAny the path struct for its child "matched-packets". +func (n *Acl_AclSet_AclEntryPathAny) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPacketsPathAny { + return &Acl_AclSet_AclEntry_MatchedPacketsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -587,31 +582,31 @@ func (n *Acl_AclSet_AclEntryAny) MatchedPackets() *Acl_AclSet_AclEntry_MatchedPa } } -// SequenceId returns from Acl_AclSet_AclEntry the path struct for its child "sequence-id". -func (n *Acl_AclSet_AclEntry) SequenceId() *Acl_AclSet_AclEntry_SequenceId { - return &Acl_AclSet_AclEntry_SequenceId{ +// SequenceId returns from Acl_AclSet_AclEntryPath the path struct for its child "sequence-id". +func (n *Acl_AclSet_AclEntryPath) SequenceId() *Acl_AclSet_AclEntry_SequenceIdPath { + return &Acl_AclSet_AclEntry_SequenceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "sequence-id"}, + []string{"config", "sequence-id"}, map[string]interface{}{}, n, ), } } -// SequenceId returns from Acl_AclSet_AclEntryAny the path struct for its child "sequence-id". -func (n *Acl_AclSet_AclEntryAny) SequenceId() *Acl_AclSet_AclEntry_SequenceIdAny { - return &Acl_AclSet_AclEntry_SequenceIdAny{ +// SequenceId returns from Acl_AclSet_AclEntryPathAny the path struct for its child "sequence-id". +func (n *Acl_AclSet_AclEntryPathAny) SequenceId() *Acl_AclSet_AclEntry_SequenceIdPathAny { + return &Acl_AclSet_AclEntry_SequenceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sequence-id"}, + []string{"config", "sequence-id"}, map[string]interface{}{}, n, ), } } -// Transport returns from Acl_AclSet_AclEntry the path struct for its child "transport". -func (n *Acl_AclSet_AclEntry) Transport() *Acl_AclSet_AclEntry_Transport { - return &Acl_AclSet_AclEntry_Transport{ +// Transport returns from Acl_AclSet_AclEntryPath the path struct for its child "transport". +func (n *Acl_AclSet_AclEntryPath) Transport() *Acl_AclSet_AclEntry_TransportPath { + return &Acl_AclSet_AclEntry_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -620,9 +615,9 @@ func (n *Acl_AclSet_AclEntry) Transport() *Acl_AclSet_AclEntry_Transport { } } -// Transport returns from Acl_AclSet_AclEntryAny the path struct for its child "transport". -func (n *Acl_AclSet_AclEntryAny) Transport() *Acl_AclSet_AclEntry_TransportAny { - return &Acl_AclSet_AclEntry_TransportAny{ +// Transport returns from Acl_AclSet_AclEntryPathAny the path struct for its child "transport". +func (n *Acl_AclSet_AclEntryPathAny) Transport() *Acl_AclSet_AclEntry_TransportPathAny { + return &Acl_AclSet_AclEntry_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -631,93 +626,93 @@ func (n *Acl_AclSet_AclEntryAny) Transport() *Acl_AclSet_AclEntry_TransportAny { } } -// Acl_AclSet_AclEntry_Actions represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions YANG schema element. -type Acl_AclSet_AclEntry_Actions struct { +// Acl_AclSet_AclEntry_ActionsPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions YANG schema element. +type Acl_AclSet_AclEntry_ActionsPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_ActionsAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions YANG schema element. -type Acl_AclSet_AclEntry_ActionsAny struct { +// Acl_AclSet_AclEntry_ActionsPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions YANG schema element. +type Acl_AclSet_AclEntry_ActionsPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Actions_ForwardingAction represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/state/forwarding-action YANG schema element. -type Acl_AclSet_AclEntry_Actions_ForwardingAction struct { +// Acl_AclSet_AclEntry_Actions_ForwardingActionPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/config/forwarding-action YANG schema element. +type Acl_AclSet_AclEntry_Actions_ForwardingActionPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Actions_ForwardingActionAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/state/forwarding-action YANG schema element. -type Acl_AclSet_AclEntry_Actions_ForwardingActionAny struct { +// Acl_AclSet_AclEntry_Actions_ForwardingActionPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/config/forwarding-action YANG schema element. +type Acl_AclSet_AclEntry_Actions_ForwardingActionPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Actions_LogAction represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/state/log-action YANG schema element. -type Acl_AclSet_AclEntry_Actions_LogAction struct { +// Acl_AclSet_AclEntry_Actions_LogActionPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/config/log-action YANG schema element. +type Acl_AclSet_AclEntry_Actions_LogActionPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Actions_LogActionAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/state/log-action YANG schema element. -type Acl_AclSet_AclEntry_Actions_LogActionAny struct { +// Acl_AclSet_AclEntry_Actions_LogActionPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/actions/config/log-action YANG schema element. +type Acl_AclSet_AclEntry_Actions_LogActionPathAny struct { *ygot.NodePath } -// ForwardingAction returns from Acl_AclSet_AclEntry_Actions the path struct for its child "forwarding-action". -func (n *Acl_AclSet_AclEntry_Actions) ForwardingAction() *Acl_AclSet_AclEntry_Actions_ForwardingAction { - return &Acl_AclSet_AclEntry_Actions_ForwardingAction{ +// ForwardingAction returns from Acl_AclSet_AclEntry_ActionsPath the path struct for its child "forwarding-action". +func (n *Acl_AclSet_AclEntry_ActionsPath) ForwardingAction() *Acl_AclSet_AclEntry_Actions_ForwardingActionPath { + return &Acl_AclSet_AclEntry_Actions_ForwardingActionPath{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-action"}, + []string{"config", "forwarding-action"}, map[string]interface{}{}, n, ), } } -// ForwardingAction returns from Acl_AclSet_AclEntry_ActionsAny the path struct for its child "forwarding-action". -func (n *Acl_AclSet_AclEntry_ActionsAny) ForwardingAction() *Acl_AclSet_AclEntry_Actions_ForwardingActionAny { - return &Acl_AclSet_AclEntry_Actions_ForwardingActionAny{ +// ForwardingAction returns from Acl_AclSet_AclEntry_ActionsPathAny the path struct for its child "forwarding-action". +func (n *Acl_AclSet_AclEntry_ActionsPathAny) ForwardingAction() *Acl_AclSet_AclEntry_Actions_ForwardingActionPathAny { + return &Acl_AclSet_AclEntry_Actions_ForwardingActionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-action"}, + []string{"config", "forwarding-action"}, map[string]interface{}{}, n, ), } } -// LogAction returns from Acl_AclSet_AclEntry_Actions the path struct for its child "log-action". -func (n *Acl_AclSet_AclEntry_Actions) LogAction() *Acl_AclSet_AclEntry_Actions_LogAction { - return &Acl_AclSet_AclEntry_Actions_LogAction{ +// LogAction returns from Acl_AclSet_AclEntry_ActionsPath the path struct for its child "log-action". +func (n *Acl_AclSet_AclEntry_ActionsPath) LogAction() *Acl_AclSet_AclEntry_Actions_LogActionPath { + return &Acl_AclSet_AclEntry_Actions_LogActionPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-action"}, + []string{"config", "log-action"}, map[string]interface{}{}, n, ), } } -// LogAction returns from Acl_AclSet_AclEntry_ActionsAny the path struct for its child "log-action". -func (n *Acl_AclSet_AclEntry_ActionsAny) LogAction() *Acl_AclSet_AclEntry_Actions_LogActionAny { - return &Acl_AclSet_AclEntry_Actions_LogActionAny{ +// LogAction returns from Acl_AclSet_AclEntry_ActionsPathAny the path struct for its child "log-action". +func (n *Acl_AclSet_AclEntry_ActionsPathAny) LogAction() *Acl_AclSet_AclEntry_Actions_LogActionPathAny { + return &Acl_AclSet_AclEntry_Actions_LogActionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-action"}, + []string{"config", "log-action"}, map[string]interface{}{}, n, ), } } -// Acl_AclSet_AclEntry_InputInterface represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface YANG schema element. -type Acl_AclSet_AclEntry_InputInterface struct { +// Acl_AclSet_AclEntry_InputInterfacePath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface YANG schema element. +type Acl_AclSet_AclEntry_InputInterfacePath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterfaceAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface YANG schema element. -type Acl_AclSet_AclEntry_InputInterfaceAny struct { +// Acl_AclSet_AclEntry_InputInterfacePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface YANG schema element. +type Acl_AclSet_AclEntry_InputInterfacePathAny struct { *ygot.NodePath } -// InterfaceRef returns from Acl_AclSet_AclEntry_InputInterface the path struct for its child "interface-ref". -func (n *Acl_AclSet_AclEntry_InputInterface) InterfaceRef() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef{ +// InterfaceRef returns from Acl_AclSet_AclEntry_InputInterfacePath the path struct for its child "interface-ref". +func (n *Acl_AclSet_AclEntry_InputInterfacePath) InterfaceRef() *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -726,9 +721,9 @@ func (n *Acl_AclSet_AclEntry_InputInterface) InterfaceRef() *Acl_AclSet_AclEntry } } -// InterfaceRef returns from Acl_AclSet_AclEntry_InputInterfaceAny the path struct for its child "interface-ref". -func (n *Acl_AclSet_AclEntry_InputInterfaceAny) InterfaceRef() *Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny{ +// InterfaceRef returns from Acl_AclSet_AclEntry_InputInterfacePathAny the path struct for its child "interface-ref". +func (n *Acl_AclSet_AclEntry_InputInterfacePathAny) InterfaceRef() *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -737,783 +732,783 @@ func (n *Acl_AclSet_AclEntry_InputInterfaceAny) InterfaceRef() *Acl_AclSet_AclEn } } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRef represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRef struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Interface represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/state/interface YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Interface struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/config/interface YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/state/interface YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfaceAny struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/config/interface YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Subinterface represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/state/subinterface YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Subinterface struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/config/subinterface YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/state/subinterface YANG schema element. -type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfaceAny struct { +// Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/input-interface/interface-ref/config/subinterface YANG schema element. +type Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRef the path struct for its child "interface". -func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRef) Interface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Interface { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Interface{ +// Interface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath the path struct for its child "interface". +func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath) Interface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePath { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny the path struct for its child "interface". -func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny) Interface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfaceAny { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfaceAny{ +// Interface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny the path struct for its child "interface". +func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny) Interface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePathAny { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRef the path struct for its child "subinterface". -func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRef) Subinterface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Subinterface { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_Subinterface{ +// Subinterface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath the path struct for its child "subinterface". +func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPath) Subinterface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePath { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny the path struct for its child "subinterface". -func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefAny) Subinterface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfaceAny { - return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Acl_AclSet_AclEntry_InputInterface_InterfaceRefPathAny) Subinterface() *Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePathAny { + return &Acl_AclSet_AclEntry_InputInterface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Acl_AclSet_AclEntry_Ipv4 represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4 YANG schema element. -type Acl_AclSet_AclEntry_Ipv4 struct { +// Acl_AclSet_AclEntry_Ipv4Path represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4 YANG schema element. +type Acl_AclSet_AclEntry_Ipv4Path struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4Any represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4 YANG schema element. -type Acl_AclSet_AclEntry_Ipv4Any struct { +// Acl_AclSet_AclEntry_Ipv4PathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4 YANG schema element. +type Acl_AclSet_AclEntry_Ipv4PathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_DestinationAddress represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/destination-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_DestinationAddress struct { +// Acl_AclSet_AclEntry_Ipv4_DestinationAddressPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/destination-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_DestinationAddressPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_DestinationAddressAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/destination-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_DestinationAddressAny struct { +// Acl_AclSet_AclEntry_Ipv4_DestinationAddressPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/destination-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_DestinationAddressPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_Dscp represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/dscp YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_Dscp struct { +// Acl_AclSet_AclEntry_Ipv4_DscpPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/dscp YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_DscpPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_DscpAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/dscp YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_DscpAny struct { +// Acl_AclSet_AclEntry_Ipv4_DscpPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/dscp YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_DscpPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_HopLimit represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/hop-limit YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_HopLimit struct { +// Acl_AclSet_AclEntry_Ipv4_HopLimitPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/hop-limit YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_HopLimitPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_HopLimitAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/hop-limit YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_HopLimitAny struct { +// Acl_AclSet_AclEntry_Ipv4_HopLimitPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/hop-limit YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_HopLimitPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_Protocol represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/protocol YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_Protocol struct { +// Acl_AclSet_AclEntry_Ipv4_ProtocolPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/protocol YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_ProtocolPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_ProtocolAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/protocol YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_ProtocolAny struct { +// Acl_AclSet_AclEntry_Ipv4_ProtocolPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/protocol YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_ProtocolPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_SourceAddress represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/source-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_SourceAddress struct { +// Acl_AclSet_AclEntry_Ipv4_SourceAddressPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/source-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_SourceAddressPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Ipv4_SourceAddressAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/state/source-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv4_SourceAddressAny struct { +// Acl_AclSet_AclEntry_Ipv4_SourceAddressPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv4/config/source-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv4_SourceAddressPathAny struct { *ygot.NodePath } -// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv4 the path struct for its child "destination-address". -func (n *Acl_AclSet_AclEntry_Ipv4) DestinationAddress() *Acl_AclSet_AclEntry_Ipv4_DestinationAddress { - return &Acl_AclSet_AclEntry_Ipv4_DestinationAddress{ +// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv4Path the path struct for its child "destination-address". +func (n *Acl_AclSet_AclEntry_Ipv4Path) DestinationAddress() *Acl_AclSet_AclEntry_Ipv4_DestinationAddressPath { + return &Acl_AclSet_AclEntry_Ipv4_DestinationAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv4Any the path struct for its child "destination-address". -func (n *Acl_AclSet_AclEntry_Ipv4Any) DestinationAddress() *Acl_AclSet_AclEntry_Ipv4_DestinationAddressAny { - return &Acl_AclSet_AclEntry_Ipv4_DestinationAddressAny{ +// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv4PathAny the path struct for its child "destination-address". +func (n *Acl_AclSet_AclEntry_Ipv4PathAny) DestinationAddress() *Acl_AclSet_AclEntry_Ipv4_DestinationAddressPathAny { + return &Acl_AclSet_AclEntry_Ipv4_DestinationAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// Dscp returns from Acl_AclSet_AclEntry_Ipv4 the path struct for its child "dscp". -func (n *Acl_AclSet_AclEntry_Ipv4) Dscp() *Acl_AclSet_AclEntry_Ipv4_Dscp { - return &Acl_AclSet_AclEntry_Ipv4_Dscp{ +// Dscp returns from Acl_AclSet_AclEntry_Ipv4Path the path struct for its child "dscp". +func (n *Acl_AclSet_AclEntry_Ipv4Path) Dscp() *Acl_AclSet_AclEntry_Ipv4_DscpPath { + return &Acl_AclSet_AclEntry_Ipv4_DscpPath{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, map[string]interface{}{}, n, ), } } -// Dscp returns from Acl_AclSet_AclEntry_Ipv4Any the path struct for its child "dscp". -func (n *Acl_AclSet_AclEntry_Ipv4Any) Dscp() *Acl_AclSet_AclEntry_Ipv4_DscpAny { - return &Acl_AclSet_AclEntry_Ipv4_DscpAny{ +// Dscp returns from Acl_AclSet_AclEntry_Ipv4PathAny the path struct for its child "dscp". +func (n *Acl_AclSet_AclEntry_Ipv4PathAny) Dscp() *Acl_AclSet_AclEntry_Ipv4_DscpPathAny { + return &Acl_AclSet_AclEntry_Ipv4_DscpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, + map[string]interface{}{}, + n, + ), + } +} + +// HopLimit returns from Acl_AclSet_AclEntry_Ipv4Path the path struct for its child "hop-limit". +func (n *Acl_AclSet_AclEntry_Ipv4Path) HopLimit() *Acl_AclSet_AclEntry_Ipv4_HopLimitPath { + return &Acl_AclSet_AclEntry_Ipv4_HopLimitPath{ + NodePath: ygot.NewNodePath( + []string{"config", "hop-limit"}, + map[string]interface{}{}, + n, + ), + } +} + +// HopLimit returns from Acl_AclSet_AclEntry_Ipv4PathAny the path struct for its child "hop-limit". +func (n *Acl_AclSet_AclEntry_Ipv4PathAny) HopLimit() *Acl_AclSet_AclEntry_Ipv4_HopLimitPathAny { + return &Acl_AclSet_AclEntry_Ipv4_HopLimitPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "hop-limit"}, + map[string]interface{}{}, + n, + ), + } +} + +// Protocol returns from Acl_AclSet_AclEntry_Ipv4Path the path struct for its child "protocol". +func (n *Acl_AclSet_AclEntry_Ipv4Path) Protocol() *Acl_AclSet_AclEntry_Ipv4_ProtocolPath { + return &Acl_AclSet_AclEntry_Ipv4_ProtocolPath{ + NodePath: ygot.NewNodePath( + []string{"config", "protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// Protocol returns from Acl_AclSet_AclEntry_Ipv4PathAny the path struct for its child "protocol". +func (n *Acl_AclSet_AclEntry_Ipv4PathAny) Protocol() *Acl_AclSet_AclEntry_Ipv4_ProtocolPathAny { + return &Acl_AclSet_AclEntry_Ipv4_ProtocolPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceAddress returns from Acl_AclSet_AclEntry_Ipv4Path the path struct for its child "source-address". +func (n *Acl_AclSet_AclEntry_Ipv4Path) SourceAddress() *Acl_AclSet_AclEntry_Ipv4_SourceAddressPath { + return &Acl_AclSet_AclEntry_Ipv4_SourceAddressPath{ + NodePath: ygot.NewNodePath( + []string{"config", "source-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceAddress returns from Acl_AclSet_AclEntry_Ipv4PathAny the path struct for its child "source-address". +func (n *Acl_AclSet_AclEntry_Ipv4PathAny) SourceAddress() *Acl_AclSet_AclEntry_Ipv4_SourceAddressPathAny { + return &Acl_AclSet_AclEntry_Ipv4_SourceAddressPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "source-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// Acl_AclSet_AclEntry_Ipv6Path represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6 YANG schema element. +type Acl_AclSet_AclEntry_Ipv6Path struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6PathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6 YANG schema element. +type Acl_AclSet_AclEntry_Ipv6PathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DestinationAddressPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/destination-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DestinationAddressPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DestinationAddressPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/destination-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DestinationAddressPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/destination-flow-label YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/destination-flow-label YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DscpPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/dscp YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DscpPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_DscpPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/dscp YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_DscpPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_HopLimitPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/hop-limit YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_HopLimitPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_HopLimitPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/hop-limit YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_HopLimitPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_ProtocolPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/protocol YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_ProtocolPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_ProtocolPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/protocol YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_ProtocolPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_SourceAddressPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/source-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_SourceAddressPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_SourceAddressPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/source-address YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_SourceAddressPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/source-flow-label YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/config/source-flow-label YANG schema element. +type Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPathAny struct { + *ygot.NodePath +} + +// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "destination-address". +func (n *Acl_AclSet_AclEntry_Ipv6Path) DestinationAddress() *Acl_AclSet_AclEntry_Ipv6_DestinationAddressPath { + return &Acl_AclSet_AclEntry_Ipv6_DestinationAddressPath{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "destination-address". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) DestinationAddress() *Acl_AclSet_AclEntry_Ipv6_DestinationAddressPathAny { + return &Acl_AclSet_AclEntry_Ipv6_DestinationAddressPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// DestinationFlowLabel returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "destination-flow-label". +func (n *Acl_AclSet_AclEntry_Ipv6Path) DestinationFlowLabel() *Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPath { + return &Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPath{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-flow-label"}, + map[string]interface{}{}, + n, + ), + } +} + +// DestinationFlowLabel returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "destination-flow-label". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) DestinationFlowLabel() *Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPathAny { + return &Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-flow-label"}, + map[string]interface{}{}, + n, + ), + } +} + +// Dscp returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "dscp". +func (n *Acl_AclSet_AclEntry_Ipv6Path) Dscp() *Acl_AclSet_AclEntry_Ipv6_DscpPath { + return &Acl_AclSet_AclEntry_Ipv6_DscpPath{ + NodePath: ygot.NewNodePath( + []string{"config", "dscp"}, + map[string]interface{}{}, + n, + ), + } +} + +// Dscp returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "dscp". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) Dscp() *Acl_AclSet_AclEntry_Ipv6_DscpPathAny { + return &Acl_AclSet_AclEntry_Ipv6_DscpPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "dscp"}, + map[string]interface{}{}, + n, + ), + } +} + +// HopLimit returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "hop-limit". +func (n *Acl_AclSet_AclEntry_Ipv6Path) HopLimit() *Acl_AclSet_AclEntry_Ipv6_HopLimitPath { + return &Acl_AclSet_AclEntry_Ipv6_HopLimitPath{ + NodePath: ygot.NewNodePath( + []string{"config", "hop-limit"}, + map[string]interface{}{}, + n, + ), + } +} + +// HopLimit returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "hop-limit". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) HopLimit() *Acl_AclSet_AclEntry_Ipv6_HopLimitPathAny { + return &Acl_AclSet_AclEntry_Ipv6_HopLimitPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "hop-limit"}, + map[string]interface{}{}, + n, + ), + } +} + +// Protocol returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "protocol". +func (n *Acl_AclSet_AclEntry_Ipv6Path) Protocol() *Acl_AclSet_AclEntry_Ipv6_ProtocolPath { + return &Acl_AclSet_AclEntry_Ipv6_ProtocolPath{ + NodePath: ygot.NewNodePath( + []string{"config", "protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// Protocol returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "protocol". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) Protocol() *Acl_AclSet_AclEntry_Ipv6_ProtocolPathAny { + return &Acl_AclSet_AclEntry_Ipv6_ProtocolPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceAddress returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "source-address". +func (n *Acl_AclSet_AclEntry_Ipv6Path) SourceAddress() *Acl_AclSet_AclEntry_Ipv6_SourceAddressPath { + return &Acl_AclSet_AclEntry_Ipv6_SourceAddressPath{ + NodePath: ygot.NewNodePath( + []string{"config", "source-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceAddress returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "source-address". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) SourceAddress() *Acl_AclSet_AclEntry_Ipv6_SourceAddressPathAny { + return &Acl_AclSet_AclEntry_Ipv6_SourceAddressPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "source-address"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceFlowLabel returns from Acl_AclSet_AclEntry_Ipv6Path the path struct for its child "source-flow-label". +func (n *Acl_AclSet_AclEntry_Ipv6Path) SourceFlowLabel() *Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPath { + return &Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPath{ + NodePath: ygot.NewNodePath( + []string{"config", "source-flow-label"}, + map[string]interface{}{}, + n, + ), + } +} + +// SourceFlowLabel returns from Acl_AclSet_AclEntry_Ipv6PathAny the path struct for its child "source-flow-label". +func (n *Acl_AclSet_AclEntry_Ipv6PathAny) SourceFlowLabel() *Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPathAny { + return &Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "source-flow-label"}, + map[string]interface{}{}, + n, + ), + } +} + +// Acl_AclSet_AclEntry_L2Path represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2 YANG schema element. +type Acl_AclSet_AclEntry_L2Path struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2PathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2 YANG schema element. +type Acl_AclSet_AclEntry_L2PathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_DestinationMacPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/destination-mac YANG schema element. +type Acl_AclSet_AclEntry_L2_DestinationMacPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_DestinationMacPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/destination-mac YANG schema element. +type Acl_AclSet_AclEntry_L2_DestinationMacPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_DestinationMacMaskPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/destination-mac-mask YANG schema element. +type Acl_AclSet_AclEntry_L2_DestinationMacMaskPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_DestinationMacMaskPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/destination-mac-mask YANG schema element. +type Acl_AclSet_AclEntry_L2_DestinationMacMaskPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_EthertypePath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/ethertype YANG schema element. +type Acl_AclSet_AclEntry_L2_EthertypePath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_EthertypePathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/ethertype YANG schema element. +type Acl_AclSet_AclEntry_L2_EthertypePathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_SourceMacPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/source-mac YANG schema element. +type Acl_AclSet_AclEntry_L2_SourceMacPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_SourceMacPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/source-mac YANG schema element. +type Acl_AclSet_AclEntry_L2_SourceMacPathAny struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_SourceMacMaskPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/source-mac-mask YANG schema element. +type Acl_AclSet_AclEntry_L2_SourceMacMaskPath struct { + *ygot.NodePath +} + +// Acl_AclSet_AclEntry_L2_SourceMacMaskPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/config/source-mac-mask YANG schema element. +type Acl_AclSet_AclEntry_L2_SourceMacMaskPathAny struct { + *ygot.NodePath +} + +// DestinationMac returns from Acl_AclSet_AclEntry_L2Path the path struct for its child "destination-mac". +func (n *Acl_AclSet_AclEntry_L2Path) DestinationMac() *Acl_AclSet_AclEntry_L2_DestinationMacPath { + return &Acl_AclSet_AclEntry_L2_DestinationMacPath{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-mac"}, + map[string]interface{}{}, + n, + ), + } +} + +// DestinationMac returns from Acl_AclSet_AclEntry_L2PathAny the path struct for its child "destination-mac". +func (n *Acl_AclSet_AclEntry_L2PathAny) DestinationMac() *Acl_AclSet_AclEntry_L2_DestinationMacPathAny { + return &Acl_AclSet_AclEntry_L2_DestinationMacPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "destination-mac"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from Acl_AclSet_AclEntry_Ipv4 the path struct for its child "hop-limit". -func (n *Acl_AclSet_AclEntry_Ipv4) HopLimit() *Acl_AclSet_AclEntry_Ipv4_HopLimit { - return &Acl_AclSet_AclEntry_Ipv4_HopLimit{ +// DestinationMacMask returns from Acl_AclSet_AclEntry_L2Path the path struct for its child "destination-mac-mask". +func (n *Acl_AclSet_AclEntry_L2Path) DestinationMacMask() *Acl_AclSet_AclEntry_L2_DestinationMacMaskPath { + return &Acl_AclSet_AclEntry_L2_DestinationMacMaskPath{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "destination-mac-mask"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from Acl_AclSet_AclEntry_Ipv4Any the path struct for its child "hop-limit". -func (n *Acl_AclSet_AclEntry_Ipv4Any) HopLimit() *Acl_AclSet_AclEntry_Ipv4_HopLimitAny { - return &Acl_AclSet_AclEntry_Ipv4_HopLimitAny{ +// DestinationMacMask returns from Acl_AclSet_AclEntry_L2PathAny the path struct for its child "destination-mac-mask". +func (n *Acl_AclSet_AclEntry_L2PathAny) DestinationMacMask() *Acl_AclSet_AclEntry_L2_DestinationMacMaskPathAny { + return &Acl_AclSet_AclEntry_L2_DestinationMacMaskPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "destination-mac-mask"}, map[string]interface{}{}, n, ), } } -// Protocol returns from Acl_AclSet_AclEntry_Ipv4 the path struct for its child "protocol". -func (n *Acl_AclSet_AclEntry_Ipv4) Protocol() *Acl_AclSet_AclEntry_Ipv4_Protocol { - return &Acl_AclSet_AclEntry_Ipv4_Protocol{ +// Ethertype returns from Acl_AclSet_AclEntry_L2Path the path struct for its child "ethertype". +func (n *Acl_AclSet_AclEntry_L2Path) Ethertype() *Acl_AclSet_AclEntry_L2_EthertypePath { + return &Acl_AclSet_AclEntry_L2_EthertypePath{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "ethertype"}, map[string]interface{}{}, n, ), } } -// Protocol returns from Acl_AclSet_AclEntry_Ipv4Any the path struct for its child "protocol". -func (n *Acl_AclSet_AclEntry_Ipv4Any) Protocol() *Acl_AclSet_AclEntry_Ipv4_ProtocolAny { - return &Acl_AclSet_AclEntry_Ipv4_ProtocolAny{ +// Ethertype returns from Acl_AclSet_AclEntry_L2PathAny the path struct for its child "ethertype". +func (n *Acl_AclSet_AclEntry_L2PathAny) Ethertype() *Acl_AclSet_AclEntry_L2_EthertypePathAny { + return &Acl_AclSet_AclEntry_L2_EthertypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "ethertype"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from Acl_AclSet_AclEntry_Ipv4 the path struct for its child "source-address". -func (n *Acl_AclSet_AclEntry_Ipv4) SourceAddress() *Acl_AclSet_AclEntry_Ipv4_SourceAddress { - return &Acl_AclSet_AclEntry_Ipv4_SourceAddress{ +// SourceMac returns from Acl_AclSet_AclEntry_L2Path the path struct for its child "source-mac". +func (n *Acl_AclSet_AclEntry_L2Path) SourceMac() *Acl_AclSet_AclEntry_L2_SourceMacPath { + return &Acl_AclSet_AclEntry_L2_SourceMacPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, - map[string]interface{}{}, - n, - ), - } -} - -// SourceAddress returns from Acl_AclSet_AclEntry_Ipv4Any the path struct for its child "source-address". -func (n *Acl_AclSet_AclEntry_Ipv4Any) SourceAddress() *Acl_AclSet_AclEntry_Ipv4_SourceAddressAny { - return &Acl_AclSet_AclEntry_Ipv4_SourceAddressAny{ - NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, - map[string]interface{}{}, - n, - ), - } -} - -// Acl_AclSet_AclEntry_Ipv6 represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6 YANG schema element. -type Acl_AclSet_AclEntry_Ipv6 struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6Any represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6 YANG schema element. -type Acl_AclSet_AclEntry_Ipv6Any struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_DestinationAddress represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/destination-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_DestinationAddress struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_DestinationAddressAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/destination-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_DestinationAddressAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabel represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/destination-flow-label YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabel struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/destination-flow-label YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_Dscp represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/dscp YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_Dscp struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_DscpAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/dscp YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_DscpAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_HopLimit represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/hop-limit YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_HopLimit struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_HopLimitAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/hop-limit YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_HopLimitAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_Protocol represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/protocol YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_Protocol struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_ProtocolAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/protocol YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_ProtocolAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_SourceAddress represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/source-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_SourceAddress struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_SourceAddressAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/source-address YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_SourceAddressAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_SourceFlowLabel represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/source-flow-label YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_SourceFlowLabel struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/ipv6/state/source-flow-label YANG schema element. -type Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelAny struct { - *ygot.NodePath -} - -// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "destination-address". -func (n *Acl_AclSet_AclEntry_Ipv6) DestinationAddress() *Acl_AclSet_AclEntry_Ipv6_DestinationAddress { - return &Acl_AclSet_AclEntry_Ipv6_DestinationAddress{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, - map[string]interface{}{}, - n, - ), - } -} - -// DestinationAddress returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "destination-address". -func (n *Acl_AclSet_AclEntry_Ipv6Any) DestinationAddress() *Acl_AclSet_AclEntry_Ipv6_DestinationAddressAny { - return &Acl_AclSet_AclEntry_Ipv6_DestinationAddressAny{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, - map[string]interface{}{}, - n, - ), - } -} - -// DestinationFlowLabel returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "destination-flow-label". -func (n *Acl_AclSet_AclEntry_Ipv6) DestinationFlowLabel() *Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabel { - return &Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabel{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-flow-label"}, - map[string]interface{}{}, - n, - ), - } -} - -// DestinationFlowLabel returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "destination-flow-label". -func (n *Acl_AclSet_AclEntry_Ipv6Any) DestinationFlowLabel() *Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelAny { - return &Acl_AclSet_AclEntry_Ipv6_DestinationFlowLabelAny{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-flow-label"}, - map[string]interface{}{}, - n, - ), - } -} - -// Dscp returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "dscp". -func (n *Acl_AclSet_AclEntry_Ipv6) Dscp() *Acl_AclSet_AclEntry_Ipv6_Dscp { - return &Acl_AclSet_AclEntry_Ipv6_Dscp{ - NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, - map[string]interface{}{}, - n, - ), - } -} - -// Dscp returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "dscp". -func (n *Acl_AclSet_AclEntry_Ipv6Any) Dscp() *Acl_AclSet_AclEntry_Ipv6_DscpAny { - return &Acl_AclSet_AclEntry_Ipv6_DscpAny{ - NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, - map[string]interface{}{}, - n, - ), - } -} - -// HopLimit returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "hop-limit". -func (n *Acl_AclSet_AclEntry_Ipv6) HopLimit() *Acl_AclSet_AclEntry_Ipv6_HopLimit { - return &Acl_AclSet_AclEntry_Ipv6_HopLimit{ - NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, - map[string]interface{}{}, - n, - ), - } -} - -// HopLimit returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "hop-limit". -func (n *Acl_AclSet_AclEntry_Ipv6Any) HopLimit() *Acl_AclSet_AclEntry_Ipv6_HopLimitAny { - return &Acl_AclSet_AclEntry_Ipv6_HopLimitAny{ - NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, - map[string]interface{}{}, - n, - ), - } -} - -// Protocol returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "protocol". -func (n *Acl_AclSet_AclEntry_Ipv6) Protocol() *Acl_AclSet_AclEntry_Ipv6_Protocol { - return &Acl_AclSet_AclEntry_Ipv6_Protocol{ - NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, - map[string]interface{}{}, - n, - ), - } -} - -// Protocol returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "protocol". -func (n *Acl_AclSet_AclEntry_Ipv6Any) Protocol() *Acl_AclSet_AclEntry_Ipv6_ProtocolAny { - return &Acl_AclSet_AclEntry_Ipv6_ProtocolAny{ - NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "source-mac"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "source-address". -func (n *Acl_AclSet_AclEntry_Ipv6) SourceAddress() *Acl_AclSet_AclEntry_Ipv6_SourceAddress { - return &Acl_AclSet_AclEntry_Ipv6_SourceAddress{ +// SourceMac returns from Acl_AclSet_AclEntry_L2PathAny the path struct for its child "source-mac". +func (n *Acl_AclSet_AclEntry_L2PathAny) SourceMac() *Acl_AclSet_AclEntry_L2_SourceMacPathAny { + return &Acl_AclSet_AclEntry_L2_SourceMacPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-mac"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "source-address". -func (n *Acl_AclSet_AclEntry_Ipv6Any) SourceAddress() *Acl_AclSet_AclEntry_Ipv6_SourceAddressAny { - return &Acl_AclSet_AclEntry_Ipv6_SourceAddressAny{ +// SourceMacMask returns from Acl_AclSet_AclEntry_L2Path the path struct for its child "source-mac-mask". +func (n *Acl_AclSet_AclEntry_L2Path) SourceMacMask() *Acl_AclSet_AclEntry_L2_SourceMacMaskPath { + return &Acl_AclSet_AclEntry_L2_SourceMacMaskPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-mac-mask"}, map[string]interface{}{}, n, ), } } -// SourceFlowLabel returns from Acl_AclSet_AclEntry_Ipv6 the path struct for its child "source-flow-label". -func (n *Acl_AclSet_AclEntry_Ipv6) SourceFlowLabel() *Acl_AclSet_AclEntry_Ipv6_SourceFlowLabel { - return &Acl_AclSet_AclEntry_Ipv6_SourceFlowLabel{ +// SourceMacMask returns from Acl_AclSet_AclEntry_L2PathAny the path struct for its child "source-mac-mask". +func (n *Acl_AclSet_AclEntry_L2PathAny) SourceMacMask() *Acl_AclSet_AclEntry_L2_SourceMacMaskPathAny { + return &Acl_AclSet_AclEntry_L2_SourceMacMaskPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-flow-label"}, + []string{"config", "source-mac-mask"}, map[string]interface{}{}, n, ), } } -// SourceFlowLabel returns from Acl_AclSet_AclEntry_Ipv6Any the path struct for its child "source-flow-label". -func (n *Acl_AclSet_AclEntry_Ipv6Any) SourceFlowLabel() *Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelAny { - return &Acl_AclSet_AclEntry_Ipv6_SourceFlowLabelAny{ - NodePath: ygot.NewNodePath( - []string{"state", "source-flow-label"}, - map[string]interface{}{}, - n, - ), - } -} - -// Acl_AclSet_AclEntry_L2 represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2 YANG schema element. -type Acl_AclSet_AclEntry_L2 struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_L2Any represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2 YANG schema element. -type Acl_AclSet_AclEntry_L2Any struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_L2_DestinationMac represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/destination-mac YANG schema element. -type Acl_AclSet_AclEntry_L2_DestinationMac struct { +// Acl_AclSet_AclEntry_TransportPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport YANG schema element. +type Acl_AclSet_AclEntry_TransportPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_DestinationMacAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/destination-mac YANG schema element. -type Acl_AclSet_AclEntry_L2_DestinationMacAny struct { +// Acl_AclSet_AclEntry_TransportPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport YANG schema element. +type Acl_AclSet_AclEntry_TransportPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_DestinationMacMask represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/destination-mac-mask YANG schema element. -type Acl_AclSet_AclEntry_L2_DestinationMacMask struct { +// Acl_AclSet_AclEntry_Transport_DestinationPortPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/destination-port YANG schema element. +type Acl_AclSet_AclEntry_Transport_DestinationPortPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_DestinationMacMaskAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/destination-mac-mask YANG schema element. -type Acl_AclSet_AclEntry_L2_DestinationMacMaskAny struct { +// Acl_AclSet_AclEntry_Transport_DestinationPortPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/destination-port YANG schema element. +type Acl_AclSet_AclEntry_Transport_DestinationPortPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_Ethertype represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/ethertype YANG schema element. -type Acl_AclSet_AclEntry_L2_Ethertype struct { +// Acl_AclSet_AclEntry_Transport_SourcePortPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/source-port YANG schema element. +type Acl_AclSet_AclEntry_Transport_SourcePortPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_EthertypeAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/ethertype YANG schema element. -type Acl_AclSet_AclEntry_L2_EthertypeAny struct { +// Acl_AclSet_AclEntry_Transport_SourcePortPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/source-port YANG schema element. +type Acl_AclSet_AclEntry_Transport_SourcePortPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_SourceMac represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/source-mac YANG schema element. -type Acl_AclSet_AclEntry_L2_SourceMac struct { +// Acl_AclSet_AclEntry_Transport_TcpFlagsPath represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/tcp-flags YANG schema element. +type Acl_AclSet_AclEntry_Transport_TcpFlagsPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_SourceMacAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/source-mac YANG schema element. -type Acl_AclSet_AclEntry_L2_SourceMacAny struct { +// Acl_AclSet_AclEntry_Transport_TcpFlagsPathAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/config/tcp-flags YANG schema element. +type Acl_AclSet_AclEntry_Transport_TcpFlagsPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_L2_SourceMacMask represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/source-mac-mask YANG schema element. -type Acl_AclSet_AclEntry_L2_SourceMacMask struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_L2_SourceMacMaskAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/l2/state/source-mac-mask YANG schema element. -type Acl_AclSet_AclEntry_L2_SourceMacMaskAny struct { - *ygot.NodePath -} - -// DestinationMac returns from Acl_AclSet_AclEntry_L2 the path struct for its child "destination-mac". -func (n *Acl_AclSet_AclEntry_L2) DestinationMac() *Acl_AclSet_AclEntry_L2_DestinationMac { - return &Acl_AclSet_AclEntry_L2_DestinationMac{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-mac"}, - map[string]interface{}{}, - n, - ), - } -} - -// DestinationMac returns from Acl_AclSet_AclEntry_L2Any the path struct for its child "destination-mac". -func (n *Acl_AclSet_AclEntry_L2Any) DestinationMac() *Acl_AclSet_AclEntry_L2_DestinationMacAny { - return &Acl_AclSet_AclEntry_L2_DestinationMacAny{ +// DestinationPort returns from Acl_AclSet_AclEntry_TransportPath the path struct for its child "destination-port". +func (n *Acl_AclSet_AclEntry_TransportPath) DestinationPort() *Acl_AclSet_AclEntry_Transport_DestinationPortPath { + return &Acl_AclSet_AclEntry_Transport_DestinationPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac"}, + []string{"config", "destination-port"}, map[string]interface{}{}, n, ), } } -// DestinationMacMask returns from Acl_AclSet_AclEntry_L2 the path struct for its child "destination-mac-mask". -func (n *Acl_AclSet_AclEntry_L2) DestinationMacMask() *Acl_AclSet_AclEntry_L2_DestinationMacMask { - return &Acl_AclSet_AclEntry_L2_DestinationMacMask{ +// DestinationPort returns from Acl_AclSet_AclEntry_TransportPathAny the path struct for its child "destination-port". +func (n *Acl_AclSet_AclEntry_TransportPathAny) DestinationPort() *Acl_AclSet_AclEntry_Transport_DestinationPortPathAny { + return &Acl_AclSet_AclEntry_Transport_DestinationPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac-mask"}, + []string{"config", "destination-port"}, map[string]interface{}{}, n, ), } } -// DestinationMacMask returns from Acl_AclSet_AclEntry_L2Any the path struct for its child "destination-mac-mask". -func (n *Acl_AclSet_AclEntry_L2Any) DestinationMacMask() *Acl_AclSet_AclEntry_L2_DestinationMacMaskAny { - return &Acl_AclSet_AclEntry_L2_DestinationMacMaskAny{ +// SourcePort returns from Acl_AclSet_AclEntry_TransportPath the path struct for its child "source-port". +func (n *Acl_AclSet_AclEntry_TransportPath) SourcePort() *Acl_AclSet_AclEntry_Transport_SourcePortPath { + return &Acl_AclSet_AclEntry_Transport_SourcePortPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac-mask"}, + []string{"config", "source-port"}, map[string]interface{}{}, n, ), } } -// Ethertype returns from Acl_AclSet_AclEntry_L2 the path struct for its child "ethertype". -func (n *Acl_AclSet_AclEntry_L2) Ethertype() *Acl_AclSet_AclEntry_L2_Ethertype { - return &Acl_AclSet_AclEntry_L2_Ethertype{ +// SourcePort returns from Acl_AclSet_AclEntry_TransportPathAny the path struct for its child "source-port". +func (n *Acl_AclSet_AclEntry_TransportPathAny) SourcePort() *Acl_AclSet_AclEntry_Transport_SourcePortPathAny { + return &Acl_AclSet_AclEntry_Transport_SourcePortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ethertype"}, + []string{"config", "source-port"}, map[string]interface{}{}, n, ), } } -// Ethertype returns from Acl_AclSet_AclEntry_L2Any the path struct for its child "ethertype". -func (n *Acl_AclSet_AclEntry_L2Any) Ethertype() *Acl_AclSet_AclEntry_L2_EthertypeAny { - return &Acl_AclSet_AclEntry_L2_EthertypeAny{ +// TcpFlags returns from Acl_AclSet_AclEntry_TransportPath the path struct for its child "tcp-flags". +func (n *Acl_AclSet_AclEntry_TransportPath) TcpFlags() *Acl_AclSet_AclEntry_Transport_TcpFlagsPath { + return &Acl_AclSet_AclEntry_Transport_TcpFlagsPath{ NodePath: ygot.NewNodePath( - []string{"state", "ethertype"}, + []string{"config", "tcp-flags"}, map[string]interface{}{}, n, ), } } -// SourceMac returns from Acl_AclSet_AclEntry_L2 the path struct for its child "source-mac". -func (n *Acl_AclSet_AclEntry_L2) SourceMac() *Acl_AclSet_AclEntry_L2_SourceMac { - return &Acl_AclSet_AclEntry_L2_SourceMac{ +// TcpFlags returns from Acl_AclSet_AclEntry_TransportPathAny the path struct for its child "tcp-flags". +func (n *Acl_AclSet_AclEntry_TransportPathAny) TcpFlags() *Acl_AclSet_AclEntry_Transport_TcpFlagsPathAny { + return &Acl_AclSet_AclEntry_Transport_TcpFlagsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-mac"}, + []string{"config", "tcp-flags"}, map[string]interface{}{}, n, ), } } -// SourceMac returns from Acl_AclSet_AclEntry_L2Any the path struct for its child "source-mac". -func (n *Acl_AclSet_AclEntry_L2Any) SourceMac() *Acl_AclSet_AclEntry_L2_SourceMacAny { - return &Acl_AclSet_AclEntry_L2_SourceMacAny{ - NodePath: ygot.NewNodePath( - []string{"state", "source-mac"}, - map[string]interface{}{}, - n, - ), - } -} - -// SourceMacMask returns from Acl_AclSet_AclEntry_L2 the path struct for its child "source-mac-mask". -func (n *Acl_AclSet_AclEntry_L2) SourceMacMask() *Acl_AclSet_AclEntry_L2_SourceMacMask { - return &Acl_AclSet_AclEntry_L2_SourceMacMask{ - NodePath: ygot.NewNodePath( - []string{"state", "source-mac-mask"}, - map[string]interface{}{}, - n, - ), - } -} - -// SourceMacMask returns from Acl_AclSet_AclEntry_L2Any the path struct for its child "source-mac-mask". -func (n *Acl_AclSet_AclEntry_L2Any) SourceMacMask() *Acl_AclSet_AclEntry_L2_SourceMacMaskAny { - return &Acl_AclSet_AclEntry_L2_SourceMacMaskAny{ - NodePath: ygot.NewNodePath( - []string{"state", "source-mac-mask"}, - map[string]interface{}{}, - n, - ), - } -} - -// Acl_AclSet_AclEntry_Transport represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport YANG schema element. -type Acl_AclSet_AclEntry_Transport struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_TransportAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport YANG schema element. -type Acl_AclSet_AclEntry_TransportAny struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Transport_DestinationPort represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/destination-port YANG schema element. -type Acl_AclSet_AclEntry_Transport_DestinationPort struct { +// Acl_InterfacePath represents the /openconfig-acl/acl/interfaces/interface YANG schema element. +type Acl_InterfacePath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Transport_DestinationPortAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/destination-port YANG schema element. -type Acl_AclSet_AclEntry_Transport_DestinationPortAny struct { +// Acl_InterfacePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface YANG schema element. +type Acl_InterfacePathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Transport_SourcePort represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/source-port YANG schema element. -type Acl_AclSet_AclEntry_Transport_SourcePort struct { +// Acl_Interface_IdPath represents the /openconfig-acl/acl/interfaces/interface/config/id YANG schema element. +type Acl_Interface_IdPath struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Transport_SourcePortAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/source-port YANG schema element. -type Acl_AclSet_AclEntry_Transport_SourcePortAny struct { +// Acl_Interface_IdPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/config/id YANG schema element. +type Acl_Interface_IdPathAny struct { *ygot.NodePath } -// Acl_AclSet_AclEntry_Transport_TcpFlags represents the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/tcp-flags YANG schema element. -type Acl_AclSet_AclEntry_Transport_TcpFlags struct { - *ygot.NodePath -} - -// Acl_AclSet_AclEntry_Transport_TcpFlagsAny represents the wildcard version of the /openconfig-acl/acl/acl-sets/acl-set/acl-entries/acl-entry/transport/state/tcp-flags YANG schema element. -type Acl_AclSet_AclEntry_Transport_TcpFlagsAny struct { - *ygot.NodePath -} - -// DestinationPort returns from Acl_AclSet_AclEntry_Transport the path struct for its child "destination-port". -func (n *Acl_AclSet_AclEntry_Transport) DestinationPort() *Acl_AclSet_AclEntry_Transport_DestinationPort { - return &Acl_AclSet_AclEntry_Transport_DestinationPort{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-port"}, - map[string]interface{}{}, - n, - ), - } -} - -// DestinationPort returns from Acl_AclSet_AclEntry_TransportAny the path struct for its child "destination-port". -func (n *Acl_AclSet_AclEntry_TransportAny) DestinationPort() *Acl_AclSet_AclEntry_Transport_DestinationPortAny { - return &Acl_AclSet_AclEntry_Transport_DestinationPortAny{ - NodePath: ygot.NewNodePath( - []string{"state", "destination-port"}, - map[string]interface{}{}, - n, - ), - } -} - -// SourcePort returns from Acl_AclSet_AclEntry_Transport the path struct for its child "source-port". -func (n *Acl_AclSet_AclEntry_Transport) SourcePort() *Acl_AclSet_AclEntry_Transport_SourcePort { - return &Acl_AclSet_AclEntry_Transport_SourcePort{ - NodePath: ygot.NewNodePath( - []string{"state", "source-port"}, - map[string]interface{}{}, - n, - ), - } -} - -// SourcePort returns from Acl_AclSet_AclEntry_TransportAny the path struct for its child "source-port". -func (n *Acl_AclSet_AclEntry_TransportAny) SourcePort() *Acl_AclSet_AclEntry_Transport_SourcePortAny { - return &Acl_AclSet_AclEntry_Transport_SourcePortAny{ - NodePath: ygot.NewNodePath( - []string{"state", "source-port"}, - map[string]interface{}{}, - n, - ), - } -} - -// TcpFlags returns from Acl_AclSet_AclEntry_Transport the path struct for its child "tcp-flags". -func (n *Acl_AclSet_AclEntry_Transport) TcpFlags() *Acl_AclSet_AclEntry_Transport_TcpFlags { - return &Acl_AclSet_AclEntry_Transport_TcpFlags{ - NodePath: ygot.NewNodePath( - []string{"state", "tcp-flags"}, - map[string]interface{}{}, - n, - ), - } -} - -// TcpFlags returns from Acl_AclSet_AclEntry_TransportAny the path struct for its child "tcp-flags". -func (n *Acl_AclSet_AclEntry_TransportAny) TcpFlags() *Acl_AclSet_AclEntry_Transport_TcpFlagsAny { - return &Acl_AclSet_AclEntry_Transport_TcpFlagsAny{ - NodePath: ygot.NewNodePath( - []string{"state", "tcp-flags"}, - map[string]interface{}{}, - n, - ), - } -} - -// Acl_Interface represents the /openconfig-acl/acl/interfaces/interface YANG schema element. -type Acl_Interface struct { - *ygot.NodePath -} - -// Acl_InterfaceAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface YANG schema element. -type Acl_InterfaceAny struct { - *ygot.NodePath -} - -// Acl_Interface_Id represents the /openconfig-acl/acl/interfaces/interface/state/id YANG schema element. -type Acl_Interface_Id struct { - *ygot.NodePath -} - -// Acl_Interface_IdAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/state/id YANG schema element. -type Acl_Interface_IdAny struct { - *ygot.NodePath -} - -// EgressAclSetAny returns from Acl_Interface the path struct for its child "egress-acl-set". -func (n *Acl_Interface) EgressAclSetAny() *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAny returns from Acl_InterfacePath the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePath) EgressAclSetAny() *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": "*", "type": "*"}, @@ -1522,9 +1517,9 @@ func (n *Acl_Interface) EgressAclSetAny() *Acl_Interface_EgressAclSetAny { } } -// EgressAclSetAny returns from Acl_InterfaceAny the path struct for its child "egress-acl-set". -func (n *Acl_InterfaceAny) EgressAclSetAny() *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAny returns from Acl_InterfacePathAny the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePathAny) EgressAclSetAny() *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": "*", "type": "*"}, @@ -1533,9 +1528,9 @@ func (n *Acl_InterfaceAny) EgressAclSetAny() *Acl_Interface_EgressAclSetAny { } } -// EgressAclSetAnyType returns from Acl_Interface the path struct for its child "egress-acl-set". -func (n *Acl_Interface) EgressAclSetAnyType(SetName string) *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAnyType returns from Acl_InterfacePath the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePath) EgressAclSetAnyType(SetName string) *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": "*"}, @@ -1544,9 +1539,9 @@ func (n *Acl_Interface) EgressAclSetAnyType(SetName string) *Acl_Interface_Egres } } -// EgressAclSetAnyType returns from Acl_InterfaceAny the path struct for its child "egress-acl-set". -func (n *Acl_InterfaceAny) EgressAclSetAnyType(SetName string) *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAnyType returns from Acl_InterfacePathAny the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePathAny) EgressAclSetAnyType(SetName string) *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": "*"}, @@ -1555,9 +1550,9 @@ func (n *Acl_InterfaceAny) EgressAclSetAnyType(SetName string) *Acl_Interface_Eg } } -// EgressAclSetAnySetName returns from Acl_Interface the path struct for its child "egress-acl-set". -func (n *Acl_Interface) EgressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAnySetName returns from Acl_InterfacePath the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePath) EgressAclSetAnySetName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": "*", "type": Type}, @@ -1566,9 +1561,9 @@ func (n *Acl_Interface) EgressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE) } } -// EgressAclSetAnySetName returns from Acl_InterfaceAny the path struct for its child "egress-acl-set". -func (n *Acl_InterfaceAny) EgressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSetAnySetName returns from Acl_InterfacePathAny the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePathAny) EgressAclSetAnySetName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": "*", "type": Type}, @@ -1577,9 +1572,9 @@ func (n *Acl_InterfaceAny) EgressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TY } } -// EgressAclSet returns from Acl_Interface the path struct for its child "egress-acl-set". -func (n *Acl_Interface) EgressAclSet(SetName string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSet { - return &Acl_Interface_EgressAclSet{ +// EgressAclSet returns from Acl_InterfacePath the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePath) EgressAclSet(SetName string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetPath { + return &Acl_Interface_EgressAclSetPath{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": Type}, @@ -1588,9 +1583,9 @@ func (n *Acl_Interface) EgressAclSet(SetName string, Type oc.E_OpenconfigAcl_ACL } } -// EgressAclSet returns from Acl_InterfaceAny the path struct for its child "egress-acl-set". -func (n *Acl_InterfaceAny) EgressAclSet(SetName string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetAny { - return &Acl_Interface_EgressAclSetAny{ +// EgressAclSet returns from Acl_InterfacePathAny the path struct for its child "egress-acl-set". +func (n *Acl_InterfacePathAny) EgressAclSet(SetName string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_EgressAclSetPathAny { + return &Acl_Interface_EgressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"egress-acl-sets", "egress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": Type}, @@ -1599,31 +1594,31 @@ func (n *Acl_InterfaceAny) EgressAclSet(SetName string, Type oc.E_OpenconfigAcl_ } } -// Id returns from Acl_Interface the path struct for its child "id". -func (n *Acl_Interface) Id() *Acl_Interface_Id { - return &Acl_Interface_Id{ +// Id returns from Acl_InterfacePath the path struct for its child "id". +func (n *Acl_InterfacePath) Id() *Acl_Interface_IdPath { + return &Acl_Interface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from Acl_InterfaceAny the path struct for its child "id". -func (n *Acl_InterfaceAny) Id() *Acl_Interface_IdAny { - return &Acl_Interface_IdAny{ +// Id returns from Acl_InterfacePathAny the path struct for its child "id". +func (n *Acl_InterfacePathAny) Id() *Acl_Interface_IdPathAny { + return &Acl_Interface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// IngressAclSetAny returns from Acl_Interface the path struct for its child "ingress-acl-set". -func (n *Acl_Interface) IngressAclSetAny() *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAny returns from Acl_InterfacePath the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePath) IngressAclSetAny() *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": "*", "type": "*"}, @@ -1632,9 +1627,9 @@ func (n *Acl_Interface) IngressAclSetAny() *Acl_Interface_IngressAclSetAny { } } -// IngressAclSetAny returns from Acl_InterfaceAny the path struct for its child "ingress-acl-set". -func (n *Acl_InterfaceAny) IngressAclSetAny() *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAny returns from Acl_InterfacePathAny the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePathAny) IngressAclSetAny() *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": "*", "type": "*"}, @@ -1643,9 +1638,9 @@ func (n *Acl_InterfaceAny) IngressAclSetAny() *Acl_Interface_IngressAclSetAny { } } -// IngressAclSetAnyType returns from Acl_Interface the path struct for its child "ingress-acl-set". -func (n *Acl_Interface) IngressAclSetAnyType(SetName string) *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAnyType returns from Acl_InterfacePath the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePath) IngressAclSetAnyType(SetName string) *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": "*"}, @@ -1654,9 +1649,9 @@ func (n *Acl_Interface) IngressAclSetAnyType(SetName string) *Acl_Interface_Ingr } } -// IngressAclSetAnyType returns from Acl_InterfaceAny the path struct for its child "ingress-acl-set". -func (n *Acl_InterfaceAny) IngressAclSetAnyType(SetName string) *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAnyType returns from Acl_InterfacePathAny the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePathAny) IngressAclSetAnyType(SetName string) *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": "*"}, @@ -1665,9 +1660,9 @@ func (n *Acl_InterfaceAny) IngressAclSetAnyType(SetName string) *Acl_Interface_I } } -// IngressAclSetAnySetName returns from Acl_Interface the path struct for its child "ingress-acl-set". -func (n *Acl_Interface) IngressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAnySetName returns from Acl_InterfacePath the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePath) IngressAclSetAnySetName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": "*", "type": Type}, @@ -1676,9 +1671,9 @@ func (n *Acl_Interface) IngressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE } } -// IngressAclSetAnySetName returns from Acl_InterfaceAny the path struct for its child "ingress-acl-set". -func (n *Acl_InterfaceAny) IngressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSetAnySetName returns from Acl_InterfacePathAny the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePathAny) IngressAclSetAnySetName(Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": "*", "type": Type}, @@ -1687,9 +1682,9 @@ func (n *Acl_InterfaceAny) IngressAclSetAnySetName(Type oc.E_OpenconfigAcl_ACL_T } } -// IngressAclSet returns from Acl_Interface the path struct for its child "ingress-acl-set". -func (n *Acl_Interface) IngressAclSet(SetName string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSet { - return &Acl_Interface_IngressAclSet{ +// IngressAclSet returns from Acl_InterfacePath the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePath) IngressAclSet(SetName string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetPath { + return &Acl_Interface_IngressAclSetPath{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": Type}, @@ -1698,9 +1693,9 @@ func (n *Acl_Interface) IngressAclSet(SetName string, Type oc.E_OpenconfigAcl_AC } } -// IngressAclSet returns from Acl_InterfaceAny the path struct for its child "ingress-acl-set". -func (n *Acl_InterfaceAny) IngressAclSet(SetName string, Type oc.E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetAny { - return &Acl_Interface_IngressAclSetAny{ +// IngressAclSet returns from Acl_InterfacePathAny the path struct for its child "ingress-acl-set". +func (n *Acl_InterfacePathAny) IngressAclSet(SetName string, Type E_OpenconfigAcl_ACL_TYPE) *Acl_Interface_IngressAclSetPathAny { + return &Acl_Interface_IngressAclSetPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-acl-sets", "ingress-acl-set"}, map[string]interface{}{"set-name": SetName, "type": Type}, @@ -1709,9 +1704,9 @@ func (n *Acl_InterfaceAny) IngressAclSet(SetName string, Type oc.E_OpenconfigAcl } } -// InterfaceRef returns from Acl_Interface the path struct for its child "interface-ref". -func (n *Acl_Interface) InterfaceRef() *Acl_Interface_InterfaceRef { - return &Acl_Interface_InterfaceRef{ +// InterfaceRef returns from Acl_InterfacePath the path struct for its child "interface-ref". +func (n *Acl_InterfacePath) InterfaceRef() *Acl_Interface_InterfaceRefPath { + return &Acl_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -1720,9 +1715,9 @@ func (n *Acl_Interface) InterfaceRef() *Acl_Interface_InterfaceRef { } } -// InterfaceRef returns from Acl_InterfaceAny the path struct for its child "interface-ref". -func (n *Acl_InterfaceAny) InterfaceRef() *Acl_Interface_InterfaceRefAny { - return &Acl_Interface_InterfaceRefAny{ +// InterfaceRef returns from Acl_InterfacePathAny the path struct for its child "interface-ref". +func (n *Acl_InterfacePathAny) InterfaceRef() *Acl_Interface_InterfaceRefPathAny { + return &Acl_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -1731,39 +1726,39 @@ func (n *Acl_InterfaceAny) InterfaceRef() *Acl_Interface_InterfaceRefAny { } } -// Acl_Interface_EgressAclSet represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set YANG schema element. -type Acl_Interface_EgressAclSet struct { +// Acl_Interface_EgressAclSetPath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set YANG schema element. +type Acl_Interface_EgressAclSetPath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSetAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set YANG schema element. -type Acl_Interface_EgressAclSetAny struct { +// Acl_Interface_EgressAclSetPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set YANG schema element. +type Acl_Interface_EgressAclSetPathAny struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_SetName represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/state/set-name YANG schema element. -type Acl_Interface_EgressAclSet_SetName struct { +// Acl_Interface_EgressAclSet_SetNamePath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/config/set-name YANG schema element. +type Acl_Interface_EgressAclSet_SetNamePath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_SetNameAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/state/set-name YANG schema element. -type Acl_Interface_EgressAclSet_SetNameAny struct { +// Acl_Interface_EgressAclSet_SetNamePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/config/set-name YANG schema element. +type Acl_Interface_EgressAclSet_SetNamePathAny struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_Type represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/state/type YANG schema element. -type Acl_Interface_EgressAclSet_Type struct { +// Acl_Interface_EgressAclSet_TypePath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/config/type YANG schema element. +type Acl_Interface_EgressAclSet_TypePath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_TypeAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/state/type YANG schema element. -type Acl_Interface_EgressAclSet_TypeAny struct { +// Acl_Interface_EgressAclSet_TypePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/config/type YANG schema element. +type Acl_Interface_EgressAclSet_TypePathAny struct { *ygot.NodePath } -// AclEntryAny returns from Acl_Interface_EgressAclSet the path struct for its child "acl-entry". -func (n *Acl_Interface_EgressAclSet) AclEntryAny() *Acl_Interface_EgressAclSet_AclEntryAny { - return &Acl_Interface_EgressAclSet_AclEntryAny{ +// AclEntryAny returns from Acl_Interface_EgressAclSetPath the path struct for its child "acl-entry". +func (n *Acl_Interface_EgressAclSetPath) AclEntryAny() *Acl_Interface_EgressAclSet_AclEntryPathAny { + return &Acl_Interface_EgressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -1772,9 +1767,9 @@ func (n *Acl_Interface_EgressAclSet) AclEntryAny() *Acl_Interface_EgressAclSet_A } } -// AclEntryAny returns from Acl_Interface_EgressAclSetAny the path struct for its child "acl-entry". -func (n *Acl_Interface_EgressAclSetAny) AclEntryAny() *Acl_Interface_EgressAclSet_AclEntryAny { - return &Acl_Interface_EgressAclSet_AclEntryAny{ +// AclEntryAny returns from Acl_Interface_EgressAclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_Interface_EgressAclSetPathAny) AclEntryAny() *Acl_Interface_EgressAclSet_AclEntryPathAny { + return &Acl_Interface_EgressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -1783,9 +1778,9 @@ func (n *Acl_Interface_EgressAclSetAny) AclEntryAny() *Acl_Interface_EgressAclSe } } -// AclEntry returns from Acl_Interface_EgressAclSet the path struct for its child "acl-entry". -func (n *Acl_Interface_EgressAclSet) AclEntry(SequenceId uint32) *Acl_Interface_EgressAclSet_AclEntry { - return &Acl_Interface_EgressAclSet_AclEntry{ +// AclEntry returns from Acl_Interface_EgressAclSetPath the path struct for its child "acl-entry". +func (n *Acl_Interface_EgressAclSetPath) AclEntry(SequenceId uint32) *Acl_Interface_EgressAclSet_AclEntryPath { + return &Acl_Interface_EgressAclSet_AclEntryPath{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -1794,9 +1789,9 @@ func (n *Acl_Interface_EgressAclSet) AclEntry(SequenceId uint32) *Acl_Interface_ } } -// AclEntry returns from Acl_Interface_EgressAclSetAny the path struct for its child "acl-entry". -func (n *Acl_Interface_EgressAclSetAny) AclEntry(SequenceId uint32) *Acl_Interface_EgressAclSet_AclEntryAny { - return &Acl_Interface_EgressAclSet_AclEntryAny{ +// AclEntry returns from Acl_Interface_EgressAclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_Interface_EgressAclSetPathAny) AclEntry(SequenceId uint32) *Acl_Interface_EgressAclSet_AclEntryPathAny { + return &Acl_Interface_EgressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -1805,93 +1800,93 @@ func (n *Acl_Interface_EgressAclSetAny) AclEntry(SequenceId uint32) *Acl_Interfa } } -// SetName returns from Acl_Interface_EgressAclSet the path struct for its child "set-name". -func (n *Acl_Interface_EgressAclSet) SetName() *Acl_Interface_EgressAclSet_SetName { - return &Acl_Interface_EgressAclSet_SetName{ +// SetName returns from Acl_Interface_EgressAclSetPath the path struct for its child "set-name". +func (n *Acl_Interface_EgressAclSetPath) SetName() *Acl_Interface_EgressAclSet_SetNamePath { + return &Acl_Interface_EgressAclSet_SetNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "set-name"}, + []string{"config", "set-name"}, map[string]interface{}{}, n, ), } } -// SetName returns from Acl_Interface_EgressAclSetAny the path struct for its child "set-name". -func (n *Acl_Interface_EgressAclSetAny) SetName() *Acl_Interface_EgressAclSet_SetNameAny { - return &Acl_Interface_EgressAclSet_SetNameAny{ +// SetName returns from Acl_Interface_EgressAclSetPathAny the path struct for its child "set-name". +func (n *Acl_Interface_EgressAclSetPathAny) SetName() *Acl_Interface_EgressAclSet_SetNamePathAny { + return &Acl_Interface_EgressAclSet_SetNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-name"}, + []string{"config", "set-name"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_Interface_EgressAclSet the path struct for its child "type". -func (n *Acl_Interface_EgressAclSet) Type() *Acl_Interface_EgressAclSet_Type { - return &Acl_Interface_EgressAclSet_Type{ +// Type returns from Acl_Interface_EgressAclSetPath the path struct for its child "type". +func (n *Acl_Interface_EgressAclSetPath) Type() *Acl_Interface_EgressAclSet_TypePath { + return &Acl_Interface_EgressAclSet_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_Interface_EgressAclSetAny the path struct for its child "type". -func (n *Acl_Interface_EgressAclSetAny) Type() *Acl_Interface_EgressAclSet_TypeAny { - return &Acl_Interface_EgressAclSet_TypeAny{ +// Type returns from Acl_Interface_EgressAclSetPathAny the path struct for its child "type". +func (n *Acl_Interface_EgressAclSetPathAny) Type() *Acl_Interface_EgressAclSet_TypePathAny { + return &Acl_Interface_EgressAclSet_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Acl_Interface_EgressAclSet_AclEntry represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry struct { +// Acl_Interface_EgressAclSet_AclEntryPath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry YANG schema element. +type Acl_Interface_EgressAclSet_AclEntryPath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntryAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry YANG schema element. -type Acl_Interface_EgressAclSet_AclEntryAny struct { +// Acl_Interface_EgressAclSet_AclEntryPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry YANG schema element. +type Acl_Interface_EgressAclSet_AclEntryPathAny struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_MatchedOctets represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_MatchedOctets struct { +// Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsAny struct { +// Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPathAny struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_MatchedPackets represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_MatchedPackets struct { +// Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsAny struct { +// Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPathAny struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_SequenceId represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_SequenceId struct { +// Acl_Interface_EgressAclSet_AclEntry_SequenceIdPath represents the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_SequenceIdPath struct { *ygot.NodePath } -// Acl_Interface_EgressAclSet_AclEntry_SequenceIdAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_Interface_EgressAclSet_AclEntry_SequenceIdAny struct { +// Acl_Interface_EgressAclSet_AclEntry_SequenceIdPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/egress-acl-sets/egress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. +type Acl_Interface_EgressAclSet_AclEntry_SequenceIdPathAny struct { *ygot.NodePath } -// MatchedOctets returns from Acl_Interface_EgressAclSet_AclEntry the path struct for its child "matched-octets". -func (n *Acl_Interface_EgressAclSet_AclEntry) MatchedOctets() *Acl_Interface_EgressAclSet_AclEntry_MatchedOctets { - return &Acl_Interface_EgressAclSet_AclEntry_MatchedOctets{ +// MatchedOctets returns from Acl_Interface_EgressAclSet_AclEntryPath the path struct for its child "matched-octets". +func (n *Acl_Interface_EgressAclSet_AclEntryPath) MatchedOctets() *Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPath { + return &Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -1900,9 +1895,9 @@ func (n *Acl_Interface_EgressAclSet_AclEntry) MatchedOctets() *Acl_Interface_Egr } } -// MatchedOctets returns from Acl_Interface_EgressAclSet_AclEntryAny the path struct for its child "matched-octets". -func (n *Acl_Interface_EgressAclSet_AclEntryAny) MatchedOctets() *Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsAny { - return &Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsAny{ +// MatchedOctets returns from Acl_Interface_EgressAclSet_AclEntryPathAny the path struct for its child "matched-octets". +func (n *Acl_Interface_EgressAclSet_AclEntryPathAny) MatchedOctets() *Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPathAny { + return &Acl_Interface_EgressAclSet_AclEntry_MatchedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -1911,9 +1906,9 @@ func (n *Acl_Interface_EgressAclSet_AclEntryAny) MatchedOctets() *Acl_Interface_ } } -// MatchedPackets returns from Acl_Interface_EgressAclSet_AclEntry the path struct for its child "matched-packets". -func (n *Acl_Interface_EgressAclSet_AclEntry) MatchedPackets() *Acl_Interface_EgressAclSet_AclEntry_MatchedPackets { - return &Acl_Interface_EgressAclSet_AclEntry_MatchedPackets{ +// MatchedPackets returns from Acl_Interface_EgressAclSet_AclEntryPath the path struct for its child "matched-packets". +func (n *Acl_Interface_EgressAclSet_AclEntryPath) MatchedPackets() *Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPath { + return &Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -1922,9 +1917,9 @@ func (n *Acl_Interface_EgressAclSet_AclEntry) MatchedPackets() *Acl_Interface_Eg } } -// MatchedPackets returns from Acl_Interface_EgressAclSet_AclEntryAny the path struct for its child "matched-packets". -func (n *Acl_Interface_EgressAclSet_AclEntryAny) MatchedPackets() *Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsAny { - return &Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsAny{ +// MatchedPackets returns from Acl_Interface_EgressAclSet_AclEntryPathAny the path struct for its child "matched-packets". +func (n *Acl_Interface_EgressAclSet_AclEntryPathAny) MatchedPackets() *Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPathAny { + return &Acl_Interface_EgressAclSet_AclEntry_MatchedPacketsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -1933,9 +1928,9 @@ func (n *Acl_Interface_EgressAclSet_AclEntryAny) MatchedPackets() *Acl_Interface } } -// SequenceId returns from Acl_Interface_EgressAclSet_AclEntry the path struct for its child "sequence-id". -func (n *Acl_Interface_EgressAclSet_AclEntry) SequenceId() *Acl_Interface_EgressAclSet_AclEntry_SequenceId { - return &Acl_Interface_EgressAclSet_AclEntry_SequenceId{ +// SequenceId returns from Acl_Interface_EgressAclSet_AclEntryPath the path struct for its child "sequence-id". +func (n *Acl_Interface_EgressAclSet_AclEntryPath) SequenceId() *Acl_Interface_EgressAclSet_AclEntry_SequenceIdPath { + return &Acl_Interface_EgressAclSet_AclEntry_SequenceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sequence-id"}, map[string]interface{}{}, @@ -1944,9 +1939,9 @@ func (n *Acl_Interface_EgressAclSet_AclEntry) SequenceId() *Acl_Interface_Egress } } -// SequenceId returns from Acl_Interface_EgressAclSet_AclEntryAny the path struct for its child "sequence-id". -func (n *Acl_Interface_EgressAclSet_AclEntryAny) SequenceId() *Acl_Interface_EgressAclSet_AclEntry_SequenceIdAny { - return &Acl_Interface_EgressAclSet_AclEntry_SequenceIdAny{ +// SequenceId returns from Acl_Interface_EgressAclSet_AclEntryPathAny the path struct for its child "sequence-id". +func (n *Acl_Interface_EgressAclSet_AclEntryPathAny) SequenceId() *Acl_Interface_EgressAclSet_AclEntry_SequenceIdPathAny { + return &Acl_Interface_EgressAclSet_AclEntry_SequenceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sequence-id"}, map[string]interface{}{}, @@ -1955,39 +1950,39 @@ func (n *Acl_Interface_EgressAclSet_AclEntryAny) SequenceId() *Acl_Interface_Egr } } -// Acl_Interface_IngressAclSet represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set YANG schema element. -type Acl_Interface_IngressAclSet struct { +// Acl_Interface_IngressAclSetPath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set YANG schema element. +type Acl_Interface_IngressAclSetPath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSetAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set YANG schema element. -type Acl_Interface_IngressAclSetAny struct { +// Acl_Interface_IngressAclSetPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set YANG schema element. +type Acl_Interface_IngressAclSetPathAny struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_SetName represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/state/set-name YANG schema element. -type Acl_Interface_IngressAclSet_SetName struct { +// Acl_Interface_IngressAclSet_SetNamePath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/config/set-name YANG schema element. +type Acl_Interface_IngressAclSet_SetNamePath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_SetNameAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/state/set-name YANG schema element. -type Acl_Interface_IngressAclSet_SetNameAny struct { +// Acl_Interface_IngressAclSet_SetNamePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/config/set-name YANG schema element. +type Acl_Interface_IngressAclSet_SetNamePathAny struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_Type represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/state/type YANG schema element. -type Acl_Interface_IngressAclSet_Type struct { +// Acl_Interface_IngressAclSet_TypePath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/config/type YANG schema element. +type Acl_Interface_IngressAclSet_TypePath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_TypeAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/state/type YANG schema element. -type Acl_Interface_IngressAclSet_TypeAny struct { +// Acl_Interface_IngressAclSet_TypePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/config/type YANG schema element. +type Acl_Interface_IngressAclSet_TypePathAny struct { *ygot.NodePath } -// AclEntryAny returns from Acl_Interface_IngressAclSet the path struct for its child "acl-entry". -func (n *Acl_Interface_IngressAclSet) AclEntryAny() *Acl_Interface_IngressAclSet_AclEntryAny { - return &Acl_Interface_IngressAclSet_AclEntryAny{ +// AclEntryAny returns from Acl_Interface_IngressAclSetPath the path struct for its child "acl-entry". +func (n *Acl_Interface_IngressAclSetPath) AclEntryAny() *Acl_Interface_IngressAclSet_AclEntryPathAny { + return &Acl_Interface_IngressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -1996,9 +1991,9 @@ func (n *Acl_Interface_IngressAclSet) AclEntryAny() *Acl_Interface_IngressAclSet } } -// AclEntryAny returns from Acl_Interface_IngressAclSetAny the path struct for its child "acl-entry". -func (n *Acl_Interface_IngressAclSetAny) AclEntryAny() *Acl_Interface_IngressAclSet_AclEntryAny { - return &Acl_Interface_IngressAclSet_AclEntryAny{ +// AclEntryAny returns from Acl_Interface_IngressAclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_Interface_IngressAclSetPathAny) AclEntryAny() *Acl_Interface_IngressAclSet_AclEntryPathAny { + return &Acl_Interface_IngressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": "*"}, @@ -2007,9 +2002,9 @@ func (n *Acl_Interface_IngressAclSetAny) AclEntryAny() *Acl_Interface_IngressAcl } } -// AclEntry returns from Acl_Interface_IngressAclSet the path struct for its child "acl-entry". -func (n *Acl_Interface_IngressAclSet) AclEntry(SequenceId uint32) *Acl_Interface_IngressAclSet_AclEntry { - return &Acl_Interface_IngressAclSet_AclEntry{ +// AclEntry returns from Acl_Interface_IngressAclSetPath the path struct for its child "acl-entry". +func (n *Acl_Interface_IngressAclSetPath) AclEntry(SequenceId uint32) *Acl_Interface_IngressAclSet_AclEntryPath { + return &Acl_Interface_IngressAclSet_AclEntryPath{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -2018,9 +2013,9 @@ func (n *Acl_Interface_IngressAclSet) AclEntry(SequenceId uint32) *Acl_Interface } } -// AclEntry returns from Acl_Interface_IngressAclSetAny the path struct for its child "acl-entry". -func (n *Acl_Interface_IngressAclSetAny) AclEntry(SequenceId uint32) *Acl_Interface_IngressAclSet_AclEntryAny { - return &Acl_Interface_IngressAclSet_AclEntryAny{ +// AclEntry returns from Acl_Interface_IngressAclSetPathAny the path struct for its child "acl-entry". +func (n *Acl_Interface_IngressAclSetPathAny) AclEntry(SequenceId uint32) *Acl_Interface_IngressAclSet_AclEntryPathAny { + return &Acl_Interface_IngressAclSet_AclEntryPathAny{ NodePath: ygot.NewNodePath( []string{"acl-entries", "acl-entry"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -2029,93 +2024,93 @@ func (n *Acl_Interface_IngressAclSetAny) AclEntry(SequenceId uint32) *Acl_Interf } } -// SetName returns from Acl_Interface_IngressAclSet the path struct for its child "set-name". -func (n *Acl_Interface_IngressAclSet) SetName() *Acl_Interface_IngressAclSet_SetName { - return &Acl_Interface_IngressAclSet_SetName{ +// SetName returns from Acl_Interface_IngressAclSetPath the path struct for its child "set-name". +func (n *Acl_Interface_IngressAclSetPath) SetName() *Acl_Interface_IngressAclSet_SetNamePath { + return &Acl_Interface_IngressAclSet_SetNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "set-name"}, + []string{"config", "set-name"}, map[string]interface{}{}, n, ), } } -// SetName returns from Acl_Interface_IngressAclSetAny the path struct for its child "set-name". -func (n *Acl_Interface_IngressAclSetAny) SetName() *Acl_Interface_IngressAclSet_SetNameAny { - return &Acl_Interface_IngressAclSet_SetNameAny{ +// SetName returns from Acl_Interface_IngressAclSetPathAny the path struct for its child "set-name". +func (n *Acl_Interface_IngressAclSetPathAny) SetName() *Acl_Interface_IngressAclSet_SetNamePathAny { + return &Acl_Interface_IngressAclSet_SetNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-name"}, + []string{"config", "set-name"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_Interface_IngressAclSet the path struct for its child "type". -func (n *Acl_Interface_IngressAclSet) Type() *Acl_Interface_IngressAclSet_Type { - return &Acl_Interface_IngressAclSet_Type{ +// Type returns from Acl_Interface_IngressAclSetPath the path struct for its child "type". +func (n *Acl_Interface_IngressAclSetPath) Type() *Acl_Interface_IngressAclSet_TypePath { + return &Acl_Interface_IngressAclSet_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from Acl_Interface_IngressAclSetAny the path struct for its child "type". -func (n *Acl_Interface_IngressAclSetAny) Type() *Acl_Interface_IngressAclSet_TypeAny { - return &Acl_Interface_IngressAclSet_TypeAny{ +// Type returns from Acl_Interface_IngressAclSetPathAny the path struct for its child "type". +func (n *Acl_Interface_IngressAclSetPathAny) Type() *Acl_Interface_IngressAclSet_TypePathAny { + return &Acl_Interface_IngressAclSet_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Acl_Interface_IngressAclSet_AclEntry represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry struct { +// Acl_Interface_IngressAclSet_AclEntryPath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry YANG schema element. +type Acl_Interface_IngressAclSet_AclEntryPath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntryAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry YANG schema element. -type Acl_Interface_IngressAclSet_AclEntryAny struct { +// Acl_Interface_IngressAclSet_AclEntryPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry YANG schema element. +type Acl_Interface_IngressAclSet_AclEntryPathAny struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_MatchedOctets represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_MatchedOctets struct { +// Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsAny struct { +// Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-octets YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPathAny struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_MatchedPackets represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_MatchedPackets struct { +// Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsAny struct { +// Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/matched-packets YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPathAny struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_SequenceId represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_SequenceId struct { +// Acl_Interface_IngressAclSet_AclEntry_SequenceIdPath represents the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_SequenceIdPath struct { *ygot.NodePath } -// Acl_Interface_IngressAclSet_AclEntry_SequenceIdAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. -type Acl_Interface_IngressAclSet_AclEntry_SequenceIdAny struct { +// Acl_Interface_IngressAclSet_AclEntry_SequenceIdPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/ingress-acl-sets/ingress-acl-set/acl-entries/acl-entry/state/sequence-id YANG schema element. +type Acl_Interface_IngressAclSet_AclEntry_SequenceIdPathAny struct { *ygot.NodePath } -// MatchedOctets returns from Acl_Interface_IngressAclSet_AclEntry the path struct for its child "matched-octets". -func (n *Acl_Interface_IngressAclSet_AclEntry) MatchedOctets() *Acl_Interface_IngressAclSet_AclEntry_MatchedOctets { - return &Acl_Interface_IngressAclSet_AclEntry_MatchedOctets{ +// MatchedOctets returns from Acl_Interface_IngressAclSet_AclEntryPath the path struct for its child "matched-octets". +func (n *Acl_Interface_IngressAclSet_AclEntryPath) MatchedOctets() *Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPath { + return &Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -2124,9 +2119,9 @@ func (n *Acl_Interface_IngressAclSet_AclEntry) MatchedOctets() *Acl_Interface_In } } -// MatchedOctets returns from Acl_Interface_IngressAclSet_AclEntryAny the path struct for its child "matched-octets". -func (n *Acl_Interface_IngressAclSet_AclEntryAny) MatchedOctets() *Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsAny { - return &Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsAny{ +// MatchedOctets returns from Acl_Interface_IngressAclSet_AclEntryPathAny the path struct for its child "matched-octets". +func (n *Acl_Interface_IngressAclSet_AclEntryPathAny) MatchedOctets() *Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPathAny { + return &Acl_Interface_IngressAclSet_AclEntry_MatchedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -2135,9 +2130,9 @@ func (n *Acl_Interface_IngressAclSet_AclEntryAny) MatchedOctets() *Acl_Interface } } -// MatchedPackets returns from Acl_Interface_IngressAclSet_AclEntry the path struct for its child "matched-packets". -func (n *Acl_Interface_IngressAclSet_AclEntry) MatchedPackets() *Acl_Interface_IngressAclSet_AclEntry_MatchedPackets { - return &Acl_Interface_IngressAclSet_AclEntry_MatchedPackets{ +// MatchedPackets returns from Acl_Interface_IngressAclSet_AclEntryPath the path struct for its child "matched-packets". +func (n *Acl_Interface_IngressAclSet_AclEntryPath) MatchedPackets() *Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPath { + return &Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -2146,9 +2141,9 @@ func (n *Acl_Interface_IngressAclSet_AclEntry) MatchedPackets() *Acl_Interface_I } } -// MatchedPackets returns from Acl_Interface_IngressAclSet_AclEntryAny the path struct for its child "matched-packets". -func (n *Acl_Interface_IngressAclSet_AclEntryAny) MatchedPackets() *Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsAny { - return &Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsAny{ +// MatchedPackets returns from Acl_Interface_IngressAclSet_AclEntryPathAny the path struct for its child "matched-packets". +func (n *Acl_Interface_IngressAclSet_AclEntryPathAny) MatchedPackets() *Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPathAny { + return &Acl_Interface_IngressAclSet_AclEntry_MatchedPacketsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-packets"}, map[string]interface{}{}, @@ -2157,9 +2152,9 @@ func (n *Acl_Interface_IngressAclSet_AclEntryAny) MatchedPackets() *Acl_Interfac } } -// SequenceId returns from Acl_Interface_IngressAclSet_AclEntry the path struct for its child "sequence-id". -func (n *Acl_Interface_IngressAclSet_AclEntry) SequenceId() *Acl_Interface_IngressAclSet_AclEntry_SequenceId { - return &Acl_Interface_IngressAclSet_AclEntry_SequenceId{ +// SequenceId returns from Acl_Interface_IngressAclSet_AclEntryPath the path struct for its child "sequence-id". +func (n *Acl_Interface_IngressAclSet_AclEntryPath) SequenceId() *Acl_Interface_IngressAclSet_AclEntry_SequenceIdPath { + return &Acl_Interface_IngressAclSet_AclEntry_SequenceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sequence-id"}, map[string]interface{}{}, @@ -2168,9 +2163,9 @@ func (n *Acl_Interface_IngressAclSet_AclEntry) SequenceId() *Acl_Interface_Ingre } } -// SequenceId returns from Acl_Interface_IngressAclSet_AclEntryAny the path struct for its child "sequence-id". -func (n *Acl_Interface_IngressAclSet_AclEntryAny) SequenceId() *Acl_Interface_IngressAclSet_AclEntry_SequenceIdAny { - return &Acl_Interface_IngressAclSet_AclEntry_SequenceIdAny{ +// SequenceId returns from Acl_Interface_IngressAclSet_AclEntryPathAny the path struct for its child "sequence-id". +func (n *Acl_Interface_IngressAclSet_AclEntryPathAny) SequenceId() *Acl_Interface_IngressAclSet_AclEntry_SequenceIdPathAny { + return &Acl_Interface_IngressAclSet_AclEntry_SequenceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sequence-id"}, map[string]interface{}{}, @@ -2179,93 +2174,93 @@ func (n *Acl_Interface_IngressAclSet_AclEntryAny) SequenceId() *Acl_Interface_In } } -// Acl_Interface_InterfaceRef represents the /openconfig-acl/acl/interfaces/interface/interface-ref YANG schema element. -type Acl_Interface_InterfaceRef struct { +// Acl_Interface_InterfaceRefPath represents the /openconfig-acl/acl/interfaces/interface/interface-ref YANG schema element. +type Acl_Interface_InterfaceRefPath struct { *ygot.NodePath } -// Acl_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref YANG schema element. -type Acl_Interface_InterfaceRefAny struct { +// Acl_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref YANG schema element. +type Acl_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// Acl_Interface_InterfaceRef_Interface represents the /openconfig-acl/acl/interfaces/interface/interface-ref/state/interface YANG schema element. -type Acl_Interface_InterfaceRef_Interface struct { +// Acl_Interface_InterfaceRef_InterfacePath represents the /openconfig-acl/acl/interfaces/interface/interface-ref/config/interface YANG schema element. +type Acl_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Acl_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref/state/interface YANG schema element. -type Acl_Interface_InterfaceRef_InterfaceAny struct { +// Acl_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref/config/interface YANG schema element. +type Acl_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Acl_Interface_InterfaceRef_Subinterface represents the /openconfig-acl/acl/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type Acl_Interface_InterfaceRef_Subinterface struct { +// Acl_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-acl/acl/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type Acl_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Acl_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type Acl_Interface_InterfaceRef_SubinterfaceAny struct { +// Acl_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-acl/acl/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type Acl_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Acl_Interface_InterfaceRef the path struct for its child "interface". -func (n *Acl_Interface_InterfaceRef) Interface() *Acl_Interface_InterfaceRef_Interface { - return &Acl_Interface_InterfaceRef_Interface{ +// Interface returns from Acl_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *Acl_Interface_InterfaceRefPath) Interface() *Acl_Interface_InterfaceRef_InterfacePath { + return &Acl_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Acl_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *Acl_Interface_InterfaceRefAny) Interface() *Acl_Interface_InterfaceRef_InterfaceAny { - return &Acl_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from Acl_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *Acl_Interface_InterfaceRefPathAny) Interface() *Acl_Interface_InterfaceRef_InterfacePathAny { + return &Acl_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Acl_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *Acl_Interface_InterfaceRef) Subinterface() *Acl_Interface_InterfaceRef_Subinterface { - return &Acl_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from Acl_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *Acl_Interface_InterfaceRefPath) Subinterface() *Acl_Interface_InterfaceRef_SubinterfacePath { + return &Acl_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Acl_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *Acl_Interface_InterfaceRefAny) Subinterface() *Acl_Interface_InterfaceRef_SubinterfaceAny { - return &Acl_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Acl_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Acl_Interface_InterfaceRefPathAny) Subinterface() *Acl_Interface_InterfaceRef_SubinterfacePathAny { + return &Acl_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Aps represents the /openconfig-transport-line-protection/aps YANG schema element. -type Aps struct { +// ApsPath represents the /openconfig-transport-line-protection/aps YANG schema element. +type ApsPath struct { *ygot.NodePath } -// ApsAny represents the wildcard version of the /openconfig-transport-line-protection/aps YANG schema element. -type ApsAny struct { +// ApsPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps YANG schema element. +type ApsPathAny struct { *ygot.NodePath } -// ApsModuleAny returns from Aps the path struct for its child "aps-module". -func (n *Aps) ApsModuleAny() *Aps_ApsModuleAny { - return &Aps_ApsModuleAny{ +// ApsModuleAny returns from ApsPath the path struct for its child "aps-module". +func (n *ApsPath) ApsModuleAny() *Aps_ApsModulePathAny { + return &Aps_ApsModulePathAny{ NodePath: ygot.NewNodePath( []string{"aps-modules", "aps-module"}, map[string]interface{}{"name": "*"}, @@ -2274,9 +2269,9 @@ func (n *Aps) ApsModuleAny() *Aps_ApsModuleAny { } } -// ApsModuleAny returns from ApsAny the path struct for its child "aps-module". -func (n *ApsAny) ApsModuleAny() *Aps_ApsModuleAny { - return &Aps_ApsModuleAny{ +// ApsModuleAny returns from ApsPathAny the path struct for its child "aps-module". +func (n *ApsPathAny) ApsModuleAny() *Aps_ApsModulePathAny { + return &Aps_ApsModulePathAny{ NodePath: ygot.NewNodePath( []string{"aps-modules", "aps-module"}, map[string]interface{}{"name": "*"}, @@ -2285,9 +2280,9 @@ func (n *ApsAny) ApsModuleAny() *Aps_ApsModuleAny { } } -// ApsModule returns from Aps the path struct for its child "aps-module". -func (n *Aps) ApsModule(Name string) *Aps_ApsModule { - return &Aps_ApsModule{ +// ApsModule returns from ApsPath the path struct for its child "aps-module". +func (n *ApsPath) ApsModule(Name string) *Aps_ApsModulePath { + return &Aps_ApsModulePath{ NodePath: ygot.NewNodePath( []string{"aps-modules", "aps-module"}, map[string]interface{}{"name": Name}, @@ -2296,9 +2291,9 @@ func (n *Aps) ApsModule(Name string) *Aps_ApsModule { } } -// ApsModule returns from ApsAny the path struct for its child "aps-module". -func (n *ApsAny) ApsModule(Name string) *Aps_ApsModuleAny { - return &Aps_ApsModuleAny{ +// ApsModule returns from ApsPathAny the path struct for its child "aps-module". +func (n *ApsPathAny) ApsModule(Name string) *Aps_ApsModulePathAny { + return &Aps_ApsModulePathAny{ NodePath: ygot.NewNodePath( []string{"aps-modules", "aps-module"}, map[string]interface{}{"name": Name}, @@ -2307,129 +2302,129 @@ func (n *ApsAny) ApsModule(Name string) *Aps_ApsModuleAny { } } -// Aps_ApsModule represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module YANG schema element. -type Aps_ApsModule struct { +// Aps_ApsModulePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module YANG schema element. +type Aps_ApsModulePath struct { *ygot.NodePath } -// Aps_ApsModuleAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module YANG schema element. -type Aps_ApsModuleAny struct { +// Aps_ApsModulePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module YANG schema element. +type Aps_ApsModulePathAny struct { *ygot.NodePath } -// Aps_ApsModule_ActivePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/active-path YANG schema element. -type Aps_ApsModule_ActivePath struct { +// Aps_ApsModule_ActivePathPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/active-path YANG schema element. +type Aps_ApsModule_ActivePathPath struct { *ygot.NodePath } -// Aps_ApsModule_ActivePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/active-path YANG schema element. -type Aps_ApsModule_ActivePathAny struct { +// Aps_ApsModule_ActivePathPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/active-path YANG schema element. +type Aps_ApsModule_ActivePathPathAny struct { *ygot.NodePath } -// Aps_ApsModule_ForceToPort represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/force-to-port YANG schema element. -type Aps_ApsModule_ForceToPort struct { +// Aps_ApsModule_ForceToPortPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/force-to-port YANG schema element. +type Aps_ApsModule_ForceToPortPath struct { *ygot.NodePath } -// Aps_ApsModule_ForceToPortAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/force-to-port YANG schema element. -type Aps_ApsModule_ForceToPortAny struct { +// Aps_ApsModule_ForceToPortPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/force-to-port YANG schema element. +type Aps_ApsModule_ForceToPortPathAny struct { *ygot.NodePath } -// Aps_ApsModule_HoldOffTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/hold-off-time YANG schema element. -type Aps_ApsModule_HoldOffTime struct { +// Aps_ApsModule_HoldOffTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/hold-off-time YANG schema element. +type Aps_ApsModule_HoldOffTimePath struct { *ygot.NodePath } -// Aps_ApsModule_HoldOffTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/hold-off-time YANG schema element. -type Aps_ApsModule_HoldOffTimeAny struct { +// Aps_ApsModule_HoldOffTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/hold-off-time YANG schema element. +type Aps_ApsModule_HoldOffTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Name represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/name YANG schema element. -type Aps_ApsModule_Name struct { +// Aps_ApsModule_NamePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/name YANG schema element. +type Aps_ApsModule_NamePath struct { *ygot.NodePath } -// Aps_ApsModule_NameAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/name YANG schema element. -type Aps_ApsModule_NameAny struct { +// Aps_ApsModule_NamePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/name YANG schema element. +type Aps_ApsModule_NamePathAny struct { *ygot.NodePath } -// Aps_ApsModule_PrimarySwitchHysteresis represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/primary-switch-hysteresis YANG schema element. -type Aps_ApsModule_PrimarySwitchHysteresis struct { +// Aps_ApsModule_PrimarySwitchHysteresisPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/primary-switch-hysteresis YANG schema element. +type Aps_ApsModule_PrimarySwitchHysteresisPath struct { *ygot.NodePath } -// Aps_ApsModule_PrimarySwitchHysteresisAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/primary-switch-hysteresis YANG schema element. -type Aps_ApsModule_PrimarySwitchHysteresisAny struct { +// Aps_ApsModule_PrimarySwitchHysteresisPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/primary-switch-hysteresis YANG schema element. +type Aps_ApsModule_PrimarySwitchHysteresisPathAny struct { *ygot.NodePath } -// Aps_ApsModule_PrimarySwitchThreshold represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/primary-switch-threshold YANG schema element. -type Aps_ApsModule_PrimarySwitchThreshold struct { +// Aps_ApsModule_PrimarySwitchThresholdPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/primary-switch-threshold YANG schema element. +type Aps_ApsModule_PrimarySwitchThresholdPath struct { *ygot.NodePath } -// Aps_ApsModule_PrimarySwitchThresholdAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/primary-switch-threshold YANG schema element. -type Aps_ApsModule_PrimarySwitchThresholdAny struct { +// Aps_ApsModule_PrimarySwitchThresholdPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/primary-switch-threshold YANG schema element. +type Aps_ApsModule_PrimarySwitchThresholdPathAny struct { *ygot.NodePath } -// Aps_ApsModule_RelativeSwitchThreshold represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/relative-switch-threshold YANG schema element. -type Aps_ApsModule_RelativeSwitchThreshold struct { +// Aps_ApsModule_RelativeSwitchThresholdPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/relative-switch-threshold YANG schema element. +type Aps_ApsModule_RelativeSwitchThresholdPath struct { *ygot.NodePath } -// Aps_ApsModule_RelativeSwitchThresholdAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/relative-switch-threshold YANG schema element. -type Aps_ApsModule_RelativeSwitchThresholdAny struct { +// Aps_ApsModule_RelativeSwitchThresholdPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/relative-switch-threshold YANG schema element. +type Aps_ApsModule_RelativeSwitchThresholdPathAny struct { *ygot.NodePath } -// Aps_ApsModule_RelativeSwitchThresholdOffset represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/relative-switch-threshold-offset YANG schema element. -type Aps_ApsModule_RelativeSwitchThresholdOffset struct { +// Aps_ApsModule_RelativeSwitchThresholdOffsetPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/relative-switch-threshold-offset YANG schema element. +type Aps_ApsModule_RelativeSwitchThresholdOffsetPath struct { *ygot.NodePath } -// Aps_ApsModule_RelativeSwitchThresholdOffsetAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/relative-switch-threshold-offset YANG schema element. -type Aps_ApsModule_RelativeSwitchThresholdOffsetAny struct { +// Aps_ApsModule_RelativeSwitchThresholdOffsetPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/relative-switch-threshold-offset YANG schema element. +type Aps_ApsModule_RelativeSwitchThresholdOffsetPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Revertive represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/revertive YANG schema element. -type Aps_ApsModule_Revertive struct { +// Aps_ApsModule_RevertivePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/revertive YANG schema element. +type Aps_ApsModule_RevertivePath struct { *ygot.NodePath } -// Aps_ApsModule_RevertiveAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/revertive YANG schema element. -type Aps_ApsModule_RevertiveAny struct { +// Aps_ApsModule_RevertivePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/revertive YANG schema element. +type Aps_ApsModule_RevertivePathAny struct { *ygot.NodePath } -// Aps_ApsModule_SecondarySwitchThreshold represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/secondary-switch-threshold YANG schema element. -type Aps_ApsModule_SecondarySwitchThreshold struct { +// Aps_ApsModule_SecondarySwitchThresholdPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/secondary-switch-threshold YANG schema element. +type Aps_ApsModule_SecondarySwitchThresholdPath struct { *ygot.NodePath } -// Aps_ApsModule_SecondarySwitchThresholdAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/secondary-switch-threshold YANG schema element. -type Aps_ApsModule_SecondarySwitchThresholdAny struct { +// Aps_ApsModule_SecondarySwitchThresholdPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/secondary-switch-threshold YANG schema element. +type Aps_ApsModule_SecondarySwitchThresholdPathAny struct { *ygot.NodePath } -// Aps_ApsModule_WaitToRestoreTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/wait-to-restore-time YANG schema element. -type Aps_ApsModule_WaitToRestoreTime struct { +// Aps_ApsModule_WaitToRestoreTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/wait-to-restore-time YANG schema element. +type Aps_ApsModule_WaitToRestoreTimePath struct { *ygot.NodePath } -// Aps_ApsModule_WaitToRestoreTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/state/wait-to-restore-time YANG schema element. -type Aps_ApsModule_WaitToRestoreTimeAny struct { +// Aps_ApsModule_WaitToRestoreTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/config/wait-to-restore-time YANG schema element. +type Aps_ApsModule_WaitToRestoreTimePathAny struct { *ygot.NodePath } -// ActivePath returns from Aps_ApsModule the path struct for its child "active-path". -func (n *Aps_ApsModule) ActivePath() *Aps_ApsModule_ActivePath { - return &Aps_ApsModule_ActivePath{ +// ActivePath returns from Aps_ApsModulePath the path struct for its child "active-path". +func (n *Aps_ApsModulePath) ActivePath() *Aps_ApsModule_ActivePathPath { + return &Aps_ApsModule_ActivePathPath{ NodePath: ygot.NewNodePath( []string{"state", "active-path"}, map[string]interface{}{}, @@ -2438,9 +2433,9 @@ func (n *Aps_ApsModule) ActivePath() *Aps_ApsModule_ActivePath { } } -// ActivePath returns from Aps_ApsModuleAny the path struct for its child "active-path". -func (n *Aps_ApsModuleAny) ActivePath() *Aps_ApsModule_ActivePathAny { - return &Aps_ApsModule_ActivePathAny{ +// ActivePath returns from Aps_ApsModulePathAny the path struct for its child "active-path". +func (n *Aps_ApsModulePathAny) ActivePath() *Aps_ApsModule_ActivePathPathAny { + return &Aps_ApsModule_ActivePathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-path"}, map[string]interface{}{}, @@ -2449,75 +2444,75 @@ func (n *Aps_ApsModuleAny) ActivePath() *Aps_ApsModule_ActivePathAny { } } -// ForceToPort returns from Aps_ApsModule the path struct for its child "force-to-port". -func (n *Aps_ApsModule) ForceToPort() *Aps_ApsModule_ForceToPort { - return &Aps_ApsModule_ForceToPort{ +// ForceToPort returns from Aps_ApsModulePath the path struct for its child "force-to-port". +func (n *Aps_ApsModulePath) ForceToPort() *Aps_ApsModule_ForceToPortPath { + return &Aps_ApsModule_ForceToPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "force-to-port"}, + []string{"config", "force-to-port"}, map[string]interface{}{}, n, ), } } -// ForceToPort returns from Aps_ApsModuleAny the path struct for its child "force-to-port". -func (n *Aps_ApsModuleAny) ForceToPort() *Aps_ApsModule_ForceToPortAny { - return &Aps_ApsModule_ForceToPortAny{ +// ForceToPort returns from Aps_ApsModulePathAny the path struct for its child "force-to-port". +func (n *Aps_ApsModulePathAny) ForceToPort() *Aps_ApsModule_ForceToPortPathAny { + return &Aps_ApsModule_ForceToPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "force-to-port"}, + []string{"config", "force-to-port"}, map[string]interface{}{}, n, ), } } -// HoldOffTime returns from Aps_ApsModule the path struct for its child "hold-off-time". -func (n *Aps_ApsModule) HoldOffTime() *Aps_ApsModule_HoldOffTime { - return &Aps_ApsModule_HoldOffTime{ +// HoldOffTime returns from Aps_ApsModulePath the path struct for its child "hold-off-time". +func (n *Aps_ApsModulePath) HoldOffTime() *Aps_ApsModule_HoldOffTimePath { + return &Aps_ApsModule_HoldOffTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-off-time"}, + []string{"config", "hold-off-time"}, map[string]interface{}{}, n, ), } } -// HoldOffTime returns from Aps_ApsModuleAny the path struct for its child "hold-off-time". -func (n *Aps_ApsModuleAny) HoldOffTime() *Aps_ApsModule_HoldOffTimeAny { - return &Aps_ApsModule_HoldOffTimeAny{ +// HoldOffTime returns from Aps_ApsModulePathAny the path struct for its child "hold-off-time". +func (n *Aps_ApsModulePathAny) HoldOffTime() *Aps_ApsModule_HoldOffTimePathAny { + return &Aps_ApsModule_HoldOffTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-off-time"}, + []string{"config", "hold-off-time"}, map[string]interface{}{}, n, ), } } -// Name returns from Aps_ApsModule the path struct for its child "name". -func (n *Aps_ApsModule) Name() *Aps_ApsModule_Name { - return &Aps_ApsModule_Name{ +// Name returns from Aps_ApsModulePath the path struct for its child "name". +func (n *Aps_ApsModulePath) Name() *Aps_ApsModule_NamePath { + return &Aps_ApsModule_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Aps_ApsModuleAny the path struct for its child "name". -func (n *Aps_ApsModuleAny) Name() *Aps_ApsModule_NameAny { - return &Aps_ApsModule_NameAny{ +// Name returns from Aps_ApsModulePathAny the path struct for its child "name". +func (n *Aps_ApsModulePathAny) Name() *Aps_ApsModule_NamePathAny { + return &Aps_ApsModule_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Ports returns from Aps_ApsModule the path struct for its child "ports". -func (n *Aps_ApsModule) Ports() *Aps_ApsModule_Ports { - return &Aps_ApsModule_Ports{ +// Ports returns from Aps_ApsModulePath the path struct for its child "ports". +func (n *Aps_ApsModulePath) Ports() *Aps_ApsModule_PortsPath { + return &Aps_ApsModule_PortsPath{ NodePath: ygot.NewNodePath( []string{"ports"}, map[string]interface{}{}, @@ -2526,9 +2521,9 @@ func (n *Aps_ApsModule) Ports() *Aps_ApsModule_Ports { } } -// Ports returns from Aps_ApsModuleAny the path struct for its child "ports". -func (n *Aps_ApsModuleAny) Ports() *Aps_ApsModule_PortsAny { - return &Aps_ApsModule_PortsAny{ +// Ports returns from Aps_ApsModulePathAny the path struct for its child "ports". +func (n *Aps_ApsModulePathAny) Ports() *Aps_ApsModule_PortsPathAny { + return &Aps_ApsModule_PortsPathAny{ NodePath: ygot.NewNodePath( []string{"ports"}, map[string]interface{}{}, @@ -2537,173 +2532,173 @@ func (n *Aps_ApsModuleAny) Ports() *Aps_ApsModule_PortsAny { } } -// PrimarySwitchHysteresis returns from Aps_ApsModule the path struct for its child "primary-switch-hysteresis". -func (n *Aps_ApsModule) PrimarySwitchHysteresis() *Aps_ApsModule_PrimarySwitchHysteresis { - return &Aps_ApsModule_PrimarySwitchHysteresis{ +// PrimarySwitchHysteresis returns from Aps_ApsModulePath the path struct for its child "primary-switch-hysteresis". +func (n *Aps_ApsModulePath) PrimarySwitchHysteresis() *Aps_ApsModule_PrimarySwitchHysteresisPath { + return &Aps_ApsModule_PrimarySwitchHysteresisPath{ NodePath: ygot.NewNodePath( - []string{"state", "primary-switch-hysteresis"}, + []string{"config", "primary-switch-hysteresis"}, map[string]interface{}{}, n, ), } } -// PrimarySwitchHysteresis returns from Aps_ApsModuleAny the path struct for its child "primary-switch-hysteresis". -func (n *Aps_ApsModuleAny) PrimarySwitchHysteresis() *Aps_ApsModule_PrimarySwitchHysteresisAny { - return &Aps_ApsModule_PrimarySwitchHysteresisAny{ +// PrimarySwitchHysteresis returns from Aps_ApsModulePathAny the path struct for its child "primary-switch-hysteresis". +func (n *Aps_ApsModulePathAny) PrimarySwitchHysteresis() *Aps_ApsModule_PrimarySwitchHysteresisPathAny { + return &Aps_ApsModule_PrimarySwitchHysteresisPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "primary-switch-hysteresis"}, + []string{"config", "primary-switch-hysteresis"}, map[string]interface{}{}, n, ), } } -// PrimarySwitchThreshold returns from Aps_ApsModule the path struct for its child "primary-switch-threshold". -func (n *Aps_ApsModule) PrimarySwitchThreshold() *Aps_ApsModule_PrimarySwitchThreshold { - return &Aps_ApsModule_PrimarySwitchThreshold{ +// PrimarySwitchThreshold returns from Aps_ApsModulePath the path struct for its child "primary-switch-threshold". +func (n *Aps_ApsModulePath) PrimarySwitchThreshold() *Aps_ApsModule_PrimarySwitchThresholdPath { + return &Aps_ApsModule_PrimarySwitchThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "primary-switch-threshold"}, + []string{"config", "primary-switch-threshold"}, map[string]interface{}{}, n, ), } } -// PrimarySwitchThreshold returns from Aps_ApsModuleAny the path struct for its child "primary-switch-threshold". -func (n *Aps_ApsModuleAny) PrimarySwitchThreshold() *Aps_ApsModule_PrimarySwitchThresholdAny { - return &Aps_ApsModule_PrimarySwitchThresholdAny{ +// PrimarySwitchThreshold returns from Aps_ApsModulePathAny the path struct for its child "primary-switch-threshold". +func (n *Aps_ApsModulePathAny) PrimarySwitchThreshold() *Aps_ApsModule_PrimarySwitchThresholdPathAny { + return &Aps_ApsModule_PrimarySwitchThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "primary-switch-threshold"}, + []string{"config", "primary-switch-threshold"}, map[string]interface{}{}, n, ), } } -// RelativeSwitchThreshold returns from Aps_ApsModule the path struct for its child "relative-switch-threshold". -func (n *Aps_ApsModule) RelativeSwitchThreshold() *Aps_ApsModule_RelativeSwitchThreshold { - return &Aps_ApsModule_RelativeSwitchThreshold{ +// RelativeSwitchThreshold returns from Aps_ApsModulePath the path struct for its child "relative-switch-threshold". +func (n *Aps_ApsModulePath) RelativeSwitchThreshold() *Aps_ApsModule_RelativeSwitchThresholdPath { + return &Aps_ApsModule_RelativeSwitchThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "relative-switch-threshold"}, + []string{"config", "relative-switch-threshold"}, map[string]interface{}{}, n, ), } } -// RelativeSwitchThreshold returns from Aps_ApsModuleAny the path struct for its child "relative-switch-threshold". -func (n *Aps_ApsModuleAny) RelativeSwitchThreshold() *Aps_ApsModule_RelativeSwitchThresholdAny { - return &Aps_ApsModule_RelativeSwitchThresholdAny{ +// RelativeSwitchThreshold returns from Aps_ApsModulePathAny the path struct for its child "relative-switch-threshold". +func (n *Aps_ApsModulePathAny) RelativeSwitchThreshold() *Aps_ApsModule_RelativeSwitchThresholdPathAny { + return &Aps_ApsModule_RelativeSwitchThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "relative-switch-threshold"}, + []string{"config", "relative-switch-threshold"}, map[string]interface{}{}, n, ), } } -// RelativeSwitchThresholdOffset returns from Aps_ApsModule the path struct for its child "relative-switch-threshold-offset". -func (n *Aps_ApsModule) RelativeSwitchThresholdOffset() *Aps_ApsModule_RelativeSwitchThresholdOffset { - return &Aps_ApsModule_RelativeSwitchThresholdOffset{ +// RelativeSwitchThresholdOffset returns from Aps_ApsModulePath the path struct for its child "relative-switch-threshold-offset". +func (n *Aps_ApsModulePath) RelativeSwitchThresholdOffset() *Aps_ApsModule_RelativeSwitchThresholdOffsetPath { + return &Aps_ApsModule_RelativeSwitchThresholdOffsetPath{ NodePath: ygot.NewNodePath( - []string{"state", "relative-switch-threshold-offset"}, + []string{"config", "relative-switch-threshold-offset"}, map[string]interface{}{}, n, ), } } -// RelativeSwitchThresholdOffset returns from Aps_ApsModuleAny the path struct for its child "relative-switch-threshold-offset". -func (n *Aps_ApsModuleAny) RelativeSwitchThresholdOffset() *Aps_ApsModule_RelativeSwitchThresholdOffsetAny { - return &Aps_ApsModule_RelativeSwitchThresholdOffsetAny{ +// RelativeSwitchThresholdOffset returns from Aps_ApsModulePathAny the path struct for its child "relative-switch-threshold-offset". +func (n *Aps_ApsModulePathAny) RelativeSwitchThresholdOffset() *Aps_ApsModule_RelativeSwitchThresholdOffsetPathAny { + return &Aps_ApsModule_RelativeSwitchThresholdOffsetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "relative-switch-threshold-offset"}, + []string{"config", "relative-switch-threshold-offset"}, map[string]interface{}{}, n, ), } } -// Revertive returns from Aps_ApsModule the path struct for its child "revertive". -func (n *Aps_ApsModule) Revertive() *Aps_ApsModule_Revertive { - return &Aps_ApsModule_Revertive{ +// Revertive returns from Aps_ApsModulePath the path struct for its child "revertive". +func (n *Aps_ApsModulePath) Revertive() *Aps_ApsModule_RevertivePath { + return &Aps_ApsModule_RevertivePath{ NodePath: ygot.NewNodePath( - []string{"state", "revertive"}, + []string{"config", "revertive"}, map[string]interface{}{}, n, ), } } -// Revertive returns from Aps_ApsModuleAny the path struct for its child "revertive". -func (n *Aps_ApsModuleAny) Revertive() *Aps_ApsModule_RevertiveAny { - return &Aps_ApsModule_RevertiveAny{ +// Revertive returns from Aps_ApsModulePathAny the path struct for its child "revertive". +func (n *Aps_ApsModulePathAny) Revertive() *Aps_ApsModule_RevertivePathAny { + return &Aps_ApsModule_RevertivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "revertive"}, + []string{"config", "revertive"}, map[string]interface{}{}, n, ), } } -// SecondarySwitchThreshold returns from Aps_ApsModule the path struct for its child "secondary-switch-threshold". -func (n *Aps_ApsModule) SecondarySwitchThreshold() *Aps_ApsModule_SecondarySwitchThreshold { - return &Aps_ApsModule_SecondarySwitchThreshold{ +// SecondarySwitchThreshold returns from Aps_ApsModulePath the path struct for its child "secondary-switch-threshold". +func (n *Aps_ApsModulePath) SecondarySwitchThreshold() *Aps_ApsModule_SecondarySwitchThresholdPath { + return &Aps_ApsModule_SecondarySwitchThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "secondary-switch-threshold"}, + []string{"config", "secondary-switch-threshold"}, map[string]interface{}{}, n, ), } } -// SecondarySwitchThreshold returns from Aps_ApsModuleAny the path struct for its child "secondary-switch-threshold". -func (n *Aps_ApsModuleAny) SecondarySwitchThreshold() *Aps_ApsModule_SecondarySwitchThresholdAny { - return &Aps_ApsModule_SecondarySwitchThresholdAny{ +// SecondarySwitchThreshold returns from Aps_ApsModulePathAny the path struct for its child "secondary-switch-threshold". +func (n *Aps_ApsModulePathAny) SecondarySwitchThreshold() *Aps_ApsModule_SecondarySwitchThresholdPathAny { + return &Aps_ApsModule_SecondarySwitchThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "secondary-switch-threshold"}, + []string{"config", "secondary-switch-threshold"}, map[string]interface{}{}, n, ), } } -// WaitToRestoreTime returns from Aps_ApsModule the path struct for its child "wait-to-restore-time". -func (n *Aps_ApsModule) WaitToRestoreTime() *Aps_ApsModule_WaitToRestoreTime { - return &Aps_ApsModule_WaitToRestoreTime{ +// WaitToRestoreTime returns from Aps_ApsModulePath the path struct for its child "wait-to-restore-time". +func (n *Aps_ApsModulePath) WaitToRestoreTime() *Aps_ApsModule_WaitToRestoreTimePath { + return &Aps_ApsModule_WaitToRestoreTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "wait-to-restore-time"}, + []string{"config", "wait-to-restore-time"}, map[string]interface{}{}, n, ), } } -// WaitToRestoreTime returns from Aps_ApsModuleAny the path struct for its child "wait-to-restore-time". -func (n *Aps_ApsModuleAny) WaitToRestoreTime() *Aps_ApsModule_WaitToRestoreTimeAny { - return &Aps_ApsModule_WaitToRestoreTimeAny{ +// WaitToRestoreTime returns from Aps_ApsModulePathAny the path struct for its child "wait-to-restore-time". +func (n *Aps_ApsModulePathAny) WaitToRestoreTime() *Aps_ApsModule_WaitToRestoreTimePathAny { + return &Aps_ApsModule_WaitToRestoreTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "wait-to-restore-time"}, + []string{"config", "wait-to-restore-time"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports YANG schema element. -type Aps_ApsModule_Ports struct { +// Aps_ApsModule_PortsPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports YANG schema element. +type Aps_ApsModule_PortsPath struct { *ygot.NodePath } -// Aps_ApsModule_PortsAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports YANG schema element. -type Aps_ApsModule_PortsAny struct { +// Aps_ApsModule_PortsPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports YANG schema element. +type Aps_ApsModule_PortsPathAny struct { *ygot.NodePath } -// CommonIn returns from Aps_ApsModule_Ports the path struct for its child "common-in". -func (n *Aps_ApsModule_Ports) CommonIn() *Aps_ApsModule_Ports_CommonIn { - return &Aps_ApsModule_Ports_CommonIn{ +// CommonIn returns from Aps_ApsModule_PortsPath the path struct for its child "common-in". +func (n *Aps_ApsModule_PortsPath) CommonIn() *Aps_ApsModule_Ports_CommonInPath { + return &Aps_ApsModule_Ports_CommonInPath{ NodePath: ygot.NewNodePath( []string{"common-in"}, map[string]interface{}{}, @@ -2712,9 +2707,9 @@ func (n *Aps_ApsModule_Ports) CommonIn() *Aps_ApsModule_Ports_CommonIn { } } -// CommonIn returns from Aps_ApsModule_PortsAny the path struct for its child "common-in". -func (n *Aps_ApsModule_PortsAny) CommonIn() *Aps_ApsModule_Ports_CommonInAny { - return &Aps_ApsModule_Ports_CommonInAny{ +// CommonIn returns from Aps_ApsModule_PortsPathAny the path struct for its child "common-in". +func (n *Aps_ApsModule_PortsPathAny) CommonIn() *Aps_ApsModule_Ports_CommonInPathAny { + return &Aps_ApsModule_Ports_CommonInPathAny{ NodePath: ygot.NewNodePath( []string{"common-in"}, map[string]interface{}{}, @@ -2723,9 +2718,9 @@ func (n *Aps_ApsModule_PortsAny) CommonIn() *Aps_ApsModule_Ports_CommonInAny { } } -// CommonOutput returns from Aps_ApsModule_Ports the path struct for its child "common-output". -func (n *Aps_ApsModule_Ports) CommonOutput() *Aps_ApsModule_Ports_CommonOutput { - return &Aps_ApsModule_Ports_CommonOutput{ +// CommonOutput returns from Aps_ApsModule_PortsPath the path struct for its child "common-output". +func (n *Aps_ApsModule_PortsPath) CommonOutput() *Aps_ApsModule_Ports_CommonOutputPath { + return &Aps_ApsModule_Ports_CommonOutputPath{ NodePath: ygot.NewNodePath( []string{"common-output"}, map[string]interface{}{}, @@ -2734,9 +2729,9 @@ func (n *Aps_ApsModule_Ports) CommonOutput() *Aps_ApsModule_Ports_CommonOutput { } } -// CommonOutput returns from Aps_ApsModule_PortsAny the path struct for its child "common-output". -func (n *Aps_ApsModule_PortsAny) CommonOutput() *Aps_ApsModule_Ports_CommonOutputAny { - return &Aps_ApsModule_Ports_CommonOutputAny{ +// CommonOutput returns from Aps_ApsModule_PortsPathAny the path struct for its child "common-output". +func (n *Aps_ApsModule_PortsPathAny) CommonOutput() *Aps_ApsModule_Ports_CommonOutputPathAny { + return &Aps_ApsModule_Ports_CommonOutputPathAny{ NodePath: ygot.NewNodePath( []string{"common-output"}, map[string]interface{}{}, @@ -2745,9 +2740,9 @@ func (n *Aps_ApsModule_PortsAny) CommonOutput() *Aps_ApsModule_Ports_CommonOutpu } } -// LinePrimaryIn returns from Aps_ApsModule_Ports the path struct for its child "line-primary-in". -func (n *Aps_ApsModule_Ports) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimaryIn { - return &Aps_ApsModule_Ports_LinePrimaryIn{ +// LinePrimaryIn returns from Aps_ApsModule_PortsPath the path struct for its child "line-primary-in". +func (n *Aps_ApsModule_PortsPath) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimaryInPath { + return &Aps_ApsModule_Ports_LinePrimaryInPath{ NodePath: ygot.NewNodePath( []string{"line-primary-in"}, map[string]interface{}{}, @@ -2756,9 +2751,9 @@ func (n *Aps_ApsModule_Ports) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimaryIn } } -// LinePrimaryIn returns from Aps_ApsModule_PortsAny the path struct for its child "line-primary-in". -func (n *Aps_ApsModule_PortsAny) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimaryInAny { - return &Aps_ApsModule_Ports_LinePrimaryInAny{ +// LinePrimaryIn returns from Aps_ApsModule_PortsPathAny the path struct for its child "line-primary-in". +func (n *Aps_ApsModule_PortsPathAny) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimaryInPathAny { + return &Aps_ApsModule_Ports_LinePrimaryInPathAny{ NodePath: ygot.NewNodePath( []string{"line-primary-in"}, map[string]interface{}{}, @@ -2767,9 +2762,9 @@ func (n *Aps_ApsModule_PortsAny) LinePrimaryIn() *Aps_ApsModule_Ports_LinePrimar } } -// LinePrimaryOut returns from Aps_ApsModule_Ports the path struct for its child "line-primary-out". -func (n *Aps_ApsModule_Ports) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrimaryOut { - return &Aps_ApsModule_Ports_LinePrimaryOut{ +// LinePrimaryOut returns from Aps_ApsModule_PortsPath the path struct for its child "line-primary-out". +func (n *Aps_ApsModule_PortsPath) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrimaryOutPath { + return &Aps_ApsModule_Ports_LinePrimaryOutPath{ NodePath: ygot.NewNodePath( []string{"line-primary-out"}, map[string]interface{}{}, @@ -2778,9 +2773,9 @@ func (n *Aps_ApsModule_Ports) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrimaryO } } -// LinePrimaryOut returns from Aps_ApsModule_PortsAny the path struct for its child "line-primary-out". -func (n *Aps_ApsModule_PortsAny) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrimaryOutAny { - return &Aps_ApsModule_Ports_LinePrimaryOutAny{ +// LinePrimaryOut returns from Aps_ApsModule_PortsPathAny the path struct for its child "line-primary-out". +func (n *Aps_ApsModule_PortsPathAny) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrimaryOutPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOutPathAny{ NodePath: ygot.NewNodePath( []string{"line-primary-out"}, map[string]interface{}{}, @@ -2789,9 +2784,9 @@ func (n *Aps_ApsModule_PortsAny) LinePrimaryOut() *Aps_ApsModule_Ports_LinePrima } } -// LineSecondaryIn returns from Aps_ApsModule_Ports the path struct for its child "line-secondary-in". -func (n *Aps_ApsModule_Ports) LineSecondaryIn() *Aps_ApsModule_Ports_LineSecondaryIn { - return &Aps_ApsModule_Ports_LineSecondaryIn{ +// LineSecondaryIn returns from Aps_ApsModule_PortsPath the path struct for its child "line-secondary-in". +func (n *Aps_ApsModule_PortsPath) LineSecondaryIn() *Aps_ApsModule_Ports_LineSecondaryInPath { + return &Aps_ApsModule_Ports_LineSecondaryInPath{ NodePath: ygot.NewNodePath( []string{"line-secondary-in"}, map[string]interface{}{}, @@ -2800,9 +2795,9 @@ func (n *Aps_ApsModule_Ports) LineSecondaryIn() *Aps_ApsModule_Ports_LineSeconda } } -// LineSecondaryIn returns from Aps_ApsModule_PortsAny the path struct for its child "line-secondary-in". -func (n *Aps_ApsModule_PortsAny) LineSecondaryIn() *Aps_ApsModule_Ports_LineSecondaryInAny { - return &Aps_ApsModule_Ports_LineSecondaryInAny{ +// LineSecondaryIn returns from Aps_ApsModule_PortsPathAny the path struct for its child "line-secondary-in". +func (n *Aps_ApsModule_PortsPathAny) LineSecondaryIn() *Aps_ApsModule_Ports_LineSecondaryInPathAny { + return &Aps_ApsModule_Ports_LineSecondaryInPathAny{ NodePath: ygot.NewNodePath( []string{"line-secondary-in"}, map[string]interface{}{}, @@ -2811,9 +2806,9 @@ func (n *Aps_ApsModule_PortsAny) LineSecondaryIn() *Aps_ApsModule_Ports_LineSeco } } -// LineSecondaryOut returns from Aps_ApsModule_Ports the path struct for its child "line-secondary-out". -func (n *Aps_ApsModule_Ports) LineSecondaryOut() *Aps_ApsModule_Ports_LineSecondaryOut { - return &Aps_ApsModule_Ports_LineSecondaryOut{ +// LineSecondaryOut returns from Aps_ApsModule_PortsPath the path struct for its child "line-secondary-out". +func (n *Aps_ApsModule_PortsPath) LineSecondaryOut() *Aps_ApsModule_Ports_LineSecondaryOutPath { + return &Aps_ApsModule_Ports_LineSecondaryOutPath{ NodePath: ygot.NewNodePath( []string{"line-secondary-out"}, map[string]interface{}{}, @@ -2822,9 +2817,9 @@ func (n *Aps_ApsModule_Ports) LineSecondaryOut() *Aps_ApsModule_Ports_LineSecond } } -// LineSecondaryOut returns from Aps_ApsModule_PortsAny the path struct for its child "line-secondary-out". -func (n *Aps_ApsModule_PortsAny) LineSecondaryOut() *Aps_ApsModule_Ports_LineSecondaryOutAny { - return &Aps_ApsModule_Ports_LineSecondaryOutAny{ +// LineSecondaryOut returns from Aps_ApsModule_PortsPathAny the path struct for its child "line-secondary-out". +func (n *Aps_ApsModule_PortsPathAny) LineSecondaryOut() *Aps_ApsModule_Ports_LineSecondaryOutPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOutPathAny{ NodePath: ygot.NewNodePath( []string{"line-secondary-out"}, map[string]interface{}{}, @@ -2833,49 +2828,49 @@ func (n *Aps_ApsModule_PortsAny) LineSecondaryOut() *Aps_ApsModule_Ports_LineSec } } -// Aps_ApsModule_Ports_CommonIn represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in YANG schema element. -type Aps_ApsModule_Ports_CommonIn struct { +// Aps_ApsModule_Ports_CommonInPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in YANG schema element. +type Aps_ApsModule_Ports_CommonInPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonInAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in YANG schema element. -type Aps_ApsModule_Ports_CommonInAny struct { +// Aps_ApsModule_Ports_CommonInPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in YANG schema element. +type Aps_ApsModule_Ports_CommonInPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonIn_Attenuation struct { +// Aps_ApsModule_Ports_CommonIn_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonIn_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonIn_AttenuationAny struct { +// Aps_ApsModule_Ports_CommonIn_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonIn_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_Enabled represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_CommonIn_Enabled struct { +// Aps_ApsModule_Ports_CommonIn_EnabledPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_CommonIn_EnabledPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_EnabledAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_CommonIn_EnabledAny struct { +// Aps_ApsModule_Ports_CommonIn_EnabledPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_CommonIn_EnabledPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonIn_TargetAttenuation struct { +// Aps_ApsModule_Ports_CommonIn_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonIn_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonIn_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_CommonIn_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonIn_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_CommonIn the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_CommonIn) Attenuation() *Aps_ApsModule_Ports_CommonIn_Attenuation { - return &Aps_ApsModule_Ports_CommonIn_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_CommonInPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_CommonInPath) Attenuation() *Aps_ApsModule_Ports_CommonIn_AttenuationPath { + return &Aps_ApsModule_Ports_CommonIn_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -2884,9 +2879,9 @@ func (n *Aps_ApsModule_Ports_CommonIn) Attenuation() *Aps_ApsModule_Ports_Common } } -// Attenuation returns from Aps_ApsModule_Ports_CommonInAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_CommonInAny) Attenuation() *Aps_ApsModule_Ports_CommonIn_AttenuationAny { - return &Aps_ApsModule_Ports_CommonIn_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_CommonInPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_CommonInPathAny) Attenuation() *Aps_ApsModule_Ports_CommonIn_AttenuationPathAny { + return &Aps_ApsModule_Ports_CommonIn_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -2895,31 +2890,31 @@ func (n *Aps_ApsModule_Ports_CommonInAny) Attenuation() *Aps_ApsModule_Ports_Com } } -// Enabled returns from Aps_ApsModule_Ports_CommonIn the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_CommonIn) Enabled() *Aps_ApsModule_Ports_CommonIn_Enabled { - return &Aps_ApsModule_Ports_CommonIn_Enabled{ +// Enabled returns from Aps_ApsModule_Ports_CommonInPath the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_CommonInPath) Enabled() *Aps_ApsModule_Ports_CommonIn_EnabledPath { + return &Aps_ApsModule_Ports_CommonIn_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Aps_ApsModule_Ports_CommonInAny the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_CommonInAny) Enabled() *Aps_ApsModule_Ports_CommonIn_EnabledAny { - return &Aps_ApsModule_Ports_CommonIn_EnabledAny{ +// Enabled returns from Aps_ApsModule_Ports_CommonInPathAny the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_CommonInPathAny) Enabled() *Aps_ApsModule_Ports_CommonIn_EnabledPathAny { + return &Aps_ApsModule_Ports_CommonIn_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// OpticalPower returns from Aps_ApsModule_Ports_CommonIn the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_CommonIn) OpticalPower() *Aps_ApsModule_Ports_CommonIn_OpticalPower { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_CommonInPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_CommonInPath) OpticalPower() *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -2928,9 +2923,9 @@ func (n *Aps_ApsModule_Ports_CommonIn) OpticalPower() *Aps_ApsModule_Ports_Commo } } -// OpticalPower returns from Aps_ApsModule_Ports_CommonInAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_CommonInAny) OpticalPower() *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_CommonInPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_CommonInPathAny) OpticalPower() *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -2939,111 +2934,111 @@ func (n *Aps_ApsModule_Ports_CommonInAny) OpticalPower() *Aps_ApsModule_Ports_Co } } -// TargetAttenuation returns from Aps_ApsModule_Ports_CommonIn the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_CommonIn) TargetAttenuation() *Aps_ApsModule_Ports_CommonIn_TargetAttenuation { - return &Aps_ApsModule_Ports_CommonIn_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_CommonInPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_CommonInPath) TargetAttenuation() *Aps_ApsModule_Ports_CommonIn_TargetAttenuationPath { + return &Aps_ApsModule_Ports_CommonIn_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_CommonInAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_CommonInAny) TargetAttenuation() *Aps_ApsModule_Ports_CommonIn_TargetAttenuationAny { - return &Aps_ApsModule_Ports_CommonIn_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_CommonInPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_CommonInPathAny) TargetAttenuation() *Aps_ApsModule_Ports_CommonIn_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_CommonIn_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_CommonIn_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPowerAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_Max struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_Min struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Avg() *Aps_ApsModule_Ports_CommonIn_OpticalPower_Avg { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3052,9 +3047,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Avg() *Aps_ApsModule_Ports_C } } -// Avg returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3063,9 +3058,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Avg() *Aps_ApsModule_Port } } -// Instant returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Instant() *Aps_ApsModule_Ports_CommonIn_OpticalPower_Instant { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3074,9 +3069,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Instant() *Aps_ApsModule_Por } } -// Instant returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3085,9 +3080,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Instant() *Aps_ApsModule_ } } -// Interval returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Interval() *Aps_ApsModule_Ports_CommonIn_OpticalPower_Interval { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3096,9 +3091,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Interval() *Aps_ApsModule_Po } } -// Interval returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3107,9 +3102,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Interval() *Aps_ApsModule } } -// Max returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Max() *Aps_ApsModule_Ports_CommonIn_OpticalPower_Max { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) Max() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3118,9 +3113,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Max() *Aps_ApsModule_Ports_C } } -// Max returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Max() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3129,9 +3124,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Max() *Aps_ApsModule_Port } } -// MaxTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) MaxTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3140,9 +3135,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) MaxTime() *Aps_ApsModule_Por } } -// MaxTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3151,9 +3146,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) MaxTime() *Aps_ApsModule_ } } -// Min returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Min() *Aps_ApsModule_Ports_CommonIn_OpticalPower_Min { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) Min() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3162,9 +3157,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) Min() *Aps_ApsModule_Ports_C } } -// Min returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Min() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3173,9 +3168,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) Min() *Aps_ApsModule_Port } } -// MinTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) MinTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3184,9 +3179,9 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPower) MinTime() *Aps_ApsModule_Por } } -// MinTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_CommonIn_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3195,39 +3190,39 @@ func (n *Aps_ApsModule_Ports_CommonIn_OpticalPowerAny) MinTime() *Aps_ApsModule_ } } -// Aps_ApsModule_Ports_CommonOutput represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output YANG schema element. -type Aps_ApsModule_Ports_CommonOutput struct { +// Aps_ApsModule_Ports_CommonOutputPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output YANG schema element. +type Aps_ApsModule_Ports_CommonOutputPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutputAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output YANG schema element. -type Aps_ApsModule_Ports_CommonOutputAny struct { +// Aps_ApsModule_Ports_CommonOutputPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output YANG schema element. +type Aps_ApsModule_Ports_CommonOutputPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_Attenuation struct { +// Aps_ApsModule_Ports_CommonOutput_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_AttenuationAny struct { +// Aps_ApsModule_Ports_CommonOutput_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_TargetAttenuation struct { +// Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_CommonOutput the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_CommonOutput) Attenuation() *Aps_ApsModule_Ports_CommonOutput_Attenuation { - return &Aps_ApsModule_Ports_CommonOutput_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_CommonOutputPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_CommonOutputPath) Attenuation() *Aps_ApsModule_Ports_CommonOutput_AttenuationPath { + return &Aps_ApsModule_Ports_CommonOutput_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3236,9 +3231,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput) Attenuation() *Aps_ApsModule_Ports_Co } } -// Attenuation returns from Aps_ApsModule_Ports_CommonOutputAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_CommonOutputAny) Attenuation() *Aps_ApsModule_Ports_CommonOutput_AttenuationAny { - return &Aps_ApsModule_Ports_CommonOutput_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_CommonOutputPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_CommonOutputPathAny) Attenuation() *Aps_ApsModule_Ports_CommonOutput_AttenuationPathAny { + return &Aps_ApsModule_Ports_CommonOutput_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3247,9 +3242,9 @@ func (n *Aps_ApsModule_Ports_CommonOutputAny) Attenuation() *Aps_ApsModule_Ports } } -// OpticalPower returns from Aps_ApsModule_Ports_CommonOutput the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_CommonOutput) OpticalPower() *Aps_ApsModule_Ports_CommonOutput_OpticalPower { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_CommonOutputPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_CommonOutputPath) OpticalPower() *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3258,9 +3253,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput) OpticalPower() *Aps_ApsModule_Ports_C } } -// OpticalPower returns from Aps_ApsModule_Ports_CommonOutputAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_CommonOutputAny) OpticalPower() *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_CommonOutputPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_CommonOutputPathAny) OpticalPower() *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3269,111 +3264,111 @@ func (n *Aps_ApsModule_Ports_CommonOutputAny) OpticalPower() *Aps_ApsModule_Port } } -// TargetAttenuation returns from Aps_ApsModule_Ports_CommonOutput the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_CommonOutput) TargetAttenuation() *Aps_ApsModule_Ports_CommonOutput_TargetAttenuation { - return &Aps_ApsModule_Ports_CommonOutput_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_CommonOutputPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_CommonOutputPath) TargetAttenuation() *Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPath { + return &Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_CommonOutputAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_CommonOutputAny) TargetAttenuation() *Aps_ApsModule_Ports_CommonOutput_TargetAttenuationAny { - return &Aps_ApsModule_Ports_CommonOutput_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_CommonOutputPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_CommonOutputPathAny) TargetAttenuation() *Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_CommonOutput_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_Max struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_Min struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/common-output/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Avg() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_Avg { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3382,9 +3377,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Avg() *Aps_ApsModule_Por } } -// Avg returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3393,9 +3388,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Avg() *Aps_ApsModule_ } } -// Instant returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Instant() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_Instant { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3404,9 +3399,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Instant() *Aps_ApsModule } } -// Instant returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3415,9 +3410,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Instant() *Aps_ApsMod } } -// Interval returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Interval() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_Interval { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3426,9 +3421,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Interval() *Aps_ApsModul } } -// Interval returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3437,9 +3432,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Interval() *Aps_ApsMo } } -// Max returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Max() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_Max { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) Max() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3448,9 +3443,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Max() *Aps_ApsModule_Por } } -// Max returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Max() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3459,9 +3454,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Max() *Aps_ApsModule_ } } -// MaxTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) MaxTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3470,9 +3465,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) MaxTime() *Aps_ApsModule } } -// MaxTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3481,9 +3476,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) MaxTime() *Aps_ApsMod } } -// Min returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Min() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_Min { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) Min() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3492,9 +3487,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) Min() *Aps_ApsModule_Por } } -// Min returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Min() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3503,9 +3498,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) Min() *Aps_ApsModule_ } } -// MinTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) MinTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3514,9 +3509,9 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPower) MinTime() *Aps_ApsModule } } -// MinTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_CommonOutput_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3525,49 +3520,49 @@ func (n *Aps_ApsModule_Ports_CommonOutput_OpticalPowerAny) MinTime() *Aps_ApsMod } } -// Aps_ApsModule_Ports_LinePrimaryIn represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn struct { +// Aps_ApsModule_Ports_LinePrimaryInPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryInPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryInAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryInAny struct { +// Aps_ApsModule_Ports_LinePrimaryInPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryInPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_Attenuation struct { +// Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_AttenuationAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_Enabled represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_Enabled struct { +// Aps_ApsModule_Ports_LinePrimaryIn_EnabledPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_EnabledPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_EnabledAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_EnabledAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_EnabledPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_EnabledPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuation struct { +// Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryIn the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryIn) Attenuation() *Aps_ApsModule_Ports_LinePrimaryIn_Attenuation { - return &Aps_ApsModule_Ports_LinePrimaryIn_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryInPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryInPath) Attenuation() *Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3576,9 +3571,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn) Attenuation() *Aps_ApsModule_Ports_L } } -// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryInAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryInAny) Attenuation() *Aps_ApsModule_Ports_LinePrimaryIn_AttenuationAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryInPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryInPathAny) Attenuation() *Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3587,31 +3582,31 @@ func (n *Aps_ApsModule_Ports_LinePrimaryInAny) Attenuation() *Aps_ApsModule_Port } } -// Enabled returns from Aps_ApsModule_Ports_LinePrimaryIn the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_LinePrimaryIn) Enabled() *Aps_ApsModule_Ports_LinePrimaryIn_Enabled { - return &Aps_ApsModule_Ports_LinePrimaryIn_Enabled{ +// Enabled returns from Aps_ApsModule_Ports_LinePrimaryInPath the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_LinePrimaryInPath) Enabled() *Aps_ApsModule_Ports_LinePrimaryIn_EnabledPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Aps_ApsModule_Ports_LinePrimaryInAny the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_LinePrimaryInAny) Enabled() *Aps_ApsModule_Ports_LinePrimaryIn_EnabledAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_EnabledAny{ +// Enabled returns from Aps_ApsModule_Ports_LinePrimaryInPathAny the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_LinePrimaryInPathAny) Enabled() *Aps_ApsModule_Ports_LinePrimaryIn_EnabledPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryIn the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LinePrimaryIn) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryInPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LinePrimaryInPath) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3620,9 +3615,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn) OpticalPower() *Aps_ApsModule_Ports_ } } -// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryInAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LinePrimaryInAny) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryInPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LinePrimaryInPathAny) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3631,111 +3626,111 @@ func (n *Aps_ApsModule_Ports_LinePrimaryInAny) OpticalPower() *Aps_ApsModule_Por } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryIn the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryIn) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuation { - return &Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryInPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryInPath) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryInAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryInAny) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryInPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryInPathAny) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Max struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Min struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Avg() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Avg { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3744,9 +3739,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Avg() *Aps_ApsModule_Po } } -// Avg returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -3755,9 +3750,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Avg() *Aps_ApsModule } } -// Instant returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Instant() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Instant { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3766,9 +3761,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Instant() *Aps_ApsModul } } -// Instant returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -3777,9 +3772,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Instant() *Aps_ApsMo } } -// Interval returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Interval() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Interval { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3788,9 +3783,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Interval() *Aps_ApsModu } } -// Interval returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -3799,9 +3794,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Interval() *Aps_ApsM } } -// Max returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Max() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Max { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) Max() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3810,9 +3805,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Max() *Aps_ApsModule_Po } } -// Max returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Max() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -3821,9 +3816,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Max() *Aps_ApsModule } } -// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) MaxTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3832,9 +3827,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) MaxTime() *Aps_ApsModul } } -// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -3843,9 +3838,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) MaxTime() *Aps_ApsMo } } -// Min returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Min() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Min { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) Min() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3854,9 +3849,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) Min() *Aps_ApsModule_Po } } -// Min returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Min() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -3865,9 +3860,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) Min() *Aps_ApsModule } } -// MinTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) MinTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3876,9 +3871,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower) MinTime() *Aps_ApsModul } } -// MinTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_LinePrimaryIn_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -3887,39 +3882,39 @@ func (n *Aps_ApsModule_Ports_LinePrimaryIn_OpticalPowerAny) MinTime() *Aps_ApsMo } } -// Aps_ApsModule_Ports_LinePrimaryOut represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut struct { +// Aps_ApsModule_Ports_LinePrimaryOutPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOutPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOutAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOutAny struct { +// Aps_ApsModule_Ports_LinePrimaryOutPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOutPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_Attenuation struct { +// Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_AttenuationAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuation struct { +// Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryOut the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryOut) Attenuation() *Aps_ApsModule_Ports_LinePrimaryOut_Attenuation { - return &Aps_ApsModule_Ports_LinePrimaryOut_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryOutPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPath) Attenuation() *Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3928,9 +3923,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut) Attenuation() *Aps_ApsModule_Ports_ } } -// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryOutAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryOutAny) Attenuation() *Aps_ApsModule_Ports_LinePrimaryOut_AttenuationAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_LinePrimaryOutPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPathAny) Attenuation() *Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -3939,9 +3934,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOutAny) Attenuation() *Aps_ApsModule_Por } } -// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryOut the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LinePrimaryOut) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryOutPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPath) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3950,9 +3945,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut) OpticalPower() *Aps_ApsModule_Ports } } -// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryOutAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LinePrimaryOutAny) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_LinePrimaryOutPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPathAny) OpticalPower() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -3961,111 +3956,111 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOutAny) OpticalPower() *Aps_ApsModule_Po } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryOut the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryOut) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuation { - return &Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryOutPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPath) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryOutAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LinePrimaryOutAny) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LinePrimaryOutPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LinePrimaryOutPathAny) TargetAttenuation() *Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Max struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Min struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-primary-out/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Avg() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Avg { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4074,9 +4069,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Avg() *Aps_ApsModule_P } } -// Avg returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4085,9 +4080,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Avg() *Aps_ApsModul } } -// Instant returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Instant() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Instant { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4096,9 +4091,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Instant() *Aps_ApsModu } } -// Instant returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4107,9 +4102,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Instant() *Aps_ApsM } } -// Interval returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Interval() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Interval { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4118,9 +4113,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Interval() *Aps_ApsMod } } -// Interval returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4129,9 +4124,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Interval() *Aps_Aps } } -// Max returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Max() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Max { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) Max() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4140,9 +4135,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Max() *Aps_ApsModule_P } } -// Max returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Max() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4151,9 +4146,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Max() *Aps_ApsModul } } -// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) MaxTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4162,9 +4157,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) MaxTime() *Aps_ApsModu } } -// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4173,9 +4168,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) MaxTime() *Aps_ApsM } } -// Min returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Min() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Min { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) Min() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4184,9 +4179,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) Min() *Aps_ApsModule_P } } -// Min returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Min() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4195,9 +4190,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) Min() *Aps_ApsModul } } -// MinTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) MinTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4206,9 +4201,9 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower) MinTime() *Aps_ApsModu } } -// MinTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_LinePrimaryOut_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4217,49 +4212,49 @@ func (n *Aps_ApsModule_Ports_LinePrimaryOut_OpticalPowerAny) MinTime() *Aps_ApsM } } -// Aps_ApsModule_Ports_LineSecondaryIn represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn struct { +// Aps_ApsModule_Ports_LineSecondaryInPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryInPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryInAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryInAny struct { +// Aps_ApsModule_Ports_LineSecondaryInPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryInPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_Attenuation struct { +// Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_AttenuationAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_Enabled represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_Enabled struct { +// Aps_ApsModule_Ports_LineSecondaryIn_EnabledPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_EnabledPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_EnabledAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/enabled YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_EnabledAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_EnabledPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/config/enabled YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_EnabledPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuation struct { +// Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryIn the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryIn) Attenuation() *Aps_ApsModule_Ports_LineSecondaryIn_Attenuation { - return &Aps_ApsModule_Ports_LineSecondaryIn_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryInPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryInPath) Attenuation() *Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -4268,9 +4263,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn) Attenuation() *Aps_ApsModule_Ports } } -// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryInAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryInAny) Attenuation() *Aps_ApsModule_Ports_LineSecondaryIn_AttenuationAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryInPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryInPathAny) Attenuation() *Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -4279,31 +4274,31 @@ func (n *Aps_ApsModule_Ports_LineSecondaryInAny) Attenuation() *Aps_ApsModule_Po } } -// Enabled returns from Aps_ApsModule_Ports_LineSecondaryIn the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_LineSecondaryIn) Enabled() *Aps_ApsModule_Ports_LineSecondaryIn_Enabled { - return &Aps_ApsModule_Ports_LineSecondaryIn_Enabled{ +// Enabled returns from Aps_ApsModule_Ports_LineSecondaryInPath the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_LineSecondaryInPath) Enabled() *Aps_ApsModule_Ports_LineSecondaryIn_EnabledPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Aps_ApsModule_Ports_LineSecondaryInAny the path struct for its child "enabled". -func (n *Aps_ApsModule_Ports_LineSecondaryInAny) Enabled() *Aps_ApsModule_Ports_LineSecondaryIn_EnabledAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_EnabledAny{ +// Enabled returns from Aps_ApsModule_Ports_LineSecondaryInPathAny the path struct for its child "enabled". +func (n *Aps_ApsModule_Ports_LineSecondaryInPathAny) Enabled() *Aps_ApsModule_Ports_LineSecondaryIn_EnabledPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryIn the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LineSecondaryIn) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryInPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LineSecondaryInPath) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -4312,9 +4307,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn) OpticalPower() *Aps_ApsModule_Port } } -// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryInAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LineSecondaryInAny) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryInPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LineSecondaryInPathAny) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -4323,111 +4318,111 @@ func (n *Aps_ApsModule_Ports_LineSecondaryInAny) OpticalPower() *Aps_ApsModule_P } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryIn the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryIn) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuation { - return &Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryInPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryInPath) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryInAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryInAny) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryInPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryInPathAny) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Max struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Min struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-in/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Avg() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Avg { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4436,9 +4431,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Avg() *Aps_ApsModule_ } } -// Avg returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4447,9 +4442,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Avg() *Aps_ApsModu } } -// Instant returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Instant() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Instant { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4458,9 +4453,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Instant() *Aps_ApsMod } } -// Instant returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4469,9 +4464,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Instant() *Aps_Aps } } -// Interval returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Interval() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Interval { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4480,9 +4475,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Interval() *Aps_ApsMo } } -// Interval returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4491,9 +4486,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Interval() *Aps_Ap } } -// Max returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Max() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Max { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) Max() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4502,9 +4497,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Max() *Aps_ApsModule_ } } -// Max returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Max() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4513,9 +4508,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Max() *Aps_ApsModu } } -// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) MaxTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4524,9 +4519,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) MaxTime() *Aps_ApsMod } } -// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4535,9 +4530,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) MaxTime() *Aps_Aps } } -// Min returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Min() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Min { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) Min() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4546,9 +4541,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) Min() *Aps_ApsModule_ } } -// Min returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Min() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4557,9 +4552,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) Min() *Aps_ApsModu } } -// MinTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) MinTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4568,9 +4563,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower) MinTime() *Aps_ApsMod } } -// MinTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_LineSecondaryIn_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4579,39 +4574,39 @@ func (n *Aps_ApsModule_Ports_LineSecondaryIn_OpticalPowerAny) MinTime() *Aps_Aps } } -// Aps_ApsModule_Ports_LineSecondaryOut represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut struct { +// Aps_ApsModule_Ports_LineSecondaryOutPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOutPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOutAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOutAny struct { +// Aps_ApsModule_Ports_LineSecondaryOutPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOutPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_Attenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_Attenuation struct { +// Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_AttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_AttenuationAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuation represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuation struct { +// Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/target-attenuation YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/config/target-attenuation YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPathAny struct { *ygot.NodePath } -// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryOut the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryOut) Attenuation() *Aps_ApsModule_Ports_LineSecondaryOut_Attenuation { - return &Aps_ApsModule_Ports_LineSecondaryOut_Attenuation{ +// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryOutPath the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPath) Attenuation() *Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPath{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -4620,9 +4615,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut) Attenuation() *Aps_ApsModule_Port } } -// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryOutAny the path struct for its child "attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryOutAny) Attenuation() *Aps_ApsModule_Ports_LineSecondaryOut_AttenuationAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_AttenuationAny{ +// Attenuation returns from Aps_ApsModule_Ports_LineSecondaryOutPathAny the path struct for its child "attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPathAny) Attenuation() *Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_AttenuationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attenuation"}, map[string]interface{}{}, @@ -4631,9 +4626,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOutAny) Attenuation() *Aps_ApsModule_P } } -// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryOut the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LineSecondaryOut) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower{ +// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryOutPath the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPath) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -4642,9 +4637,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut) OpticalPower() *Aps_ApsModule_Por } } -// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryOutAny the path struct for its child "optical-power". -func (n *Aps_ApsModule_Ports_LineSecondaryOutAny) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny{ +// OpticalPower returns from Aps_ApsModule_Ports_LineSecondaryOutPathAny the path struct for its child "optical-power". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPathAny) OpticalPower() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-power"}, map[string]interface{}{}, @@ -4653,111 +4648,111 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOutAny) OpticalPower() *Aps_ApsModule_ } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryOut the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryOut) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuation { - return &Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuation{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryOutPath the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPath) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryOutAny the path struct for its child "target-attenuation". -func (n *Aps_ApsModule_Ports_LineSecondaryOutAny) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationAny{ +// TargetAttenuation returns from Aps_ApsModule_Ports_LineSecondaryOutPathAny the path struct for its child "target-attenuation". +func (n *Aps_ApsModule_Ports_LineSecondaryOutPathAny) TargetAttenuation() *Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_TargetAttenuationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-attenuation"}, + []string{"config", "target-attenuation"}, map[string]interface{}{}, n, ), } } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Avg represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Avg struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/avg YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/avg YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Instant represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Instant struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/instant YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/instant YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Interval represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Interval struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/interval YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/interval YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Max represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Max struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTime struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimeAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/max-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Min represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Min struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPathAny struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTime represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTime struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePath represents the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePath struct { *ygot.NodePath } -// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimeAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min-time YANG schema element. -type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimeAny struct { +// Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePathAny represents the wildcard version of the /openconfig-transport-line-protection/aps/aps-modules/aps-module/ports/line-secondary-out/state/optical-power/min-time YANG schema element. +type Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Avg() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Avg { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Avg{ +// Avg returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) Avg() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4766,9 +4761,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Avg() *Aps_ApsModule } } -// Avg returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "avg". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Avg() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgAny{ +// Avg returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "avg". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) Avg() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -4777,9 +4772,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Avg() *Aps_ApsMod } } -// Instant returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Instant() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Instant { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Instant{ +// Instant returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) Instant() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4788,9 +4783,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Instant() *Aps_ApsMo } } -// Instant returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "instant". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Instant() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantAny{ +// Instant returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "instant". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) Instant() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -4799,9 +4794,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Instant() *Aps_Ap } } -// Interval returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Interval() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Interval { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Interval{ +// Interval returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) Interval() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4810,9 +4805,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Interval() *Aps_ApsM } } -// Interval returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "interval". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Interval() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalAny{ +// Interval returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "interval". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) Interval() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -4821,9 +4816,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Interval() *Aps_A } } -// Max returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Max() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Max { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Max{ +// Max returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) Max() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4832,9 +4827,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Max() *Aps_ApsModule } } -// Max returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "max". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Max() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxAny{ +// Max returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "max". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) Max() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -4843,9 +4838,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Max() *Aps_ApsMod } } -// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) MaxTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTime { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTime{ +// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) MaxTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4854,9 +4849,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) MaxTime() *Aps_ApsMo } } -// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "max-time". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) MaxTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimeAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimeAny{ +// MaxTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "max-time". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) MaxTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -4865,9 +4860,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) MaxTime() *Aps_Ap } } -// Min returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Min() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Min { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_Min{ +// Min returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) Min() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4876,9 +4871,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) Min() *Aps_ApsModule } } -// Min returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "min". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Min() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinAny{ +// Min returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "min". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) Min() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -4887,9 +4882,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) Min() *Aps_ApsMod } } -// MinTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) MinTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTime { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTime{ +// MinTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPath) MinTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePath { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4898,9 +4893,9 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower) MinTime() *Aps_ApsMo } } -// MinTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny the path struct for its child "min-time". -func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) MinTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimeAny { - return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimeAny{ +// MinTime returns from Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny the path struct for its child "min-time". +func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerPathAny) MinTime() *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePathAny { + return &Aps_ApsModule_Ports_LineSecondaryOut_OpticalPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -4909,19 +4904,19 @@ func (n *Aps_ApsModule_Ports_LineSecondaryOut_OpticalPowerAny) MinTime() *Aps_Ap } } -// Bgp represents the /openconfig-bgp/bgp YANG schema element. -type Bgp struct { +// BgpPath represents the /openconfig-bgp/bgp YANG schema element. +type BgpPath struct { *ygot.NodePath } -// BgpAny represents the wildcard version of the /openconfig-bgp/bgp YANG schema element. -type BgpAny struct { +// BgpPathAny represents the wildcard version of the /openconfig-bgp/bgp YANG schema element. +type BgpPathAny struct { *ygot.NodePath } -// Global returns from Bgp the path struct for its child "global". -func (n *Bgp) Global() *Bgp_Global { - return &Bgp_Global{ +// Global returns from BgpPath the path struct for its child "global". +func (n *BgpPath) Global() *Bgp_GlobalPath { + return &Bgp_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -4930,9 +4925,9 @@ func (n *Bgp) Global() *Bgp_Global { } } -// Global returns from BgpAny the path struct for its child "global". -func (n *BgpAny) Global() *Bgp_GlobalAny { - return &Bgp_GlobalAny{ +// Global returns from BgpPathAny the path struct for its child "global". +func (n *BgpPathAny) Global() *Bgp_GlobalPathAny { + return &Bgp_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -4941,9 +4936,9 @@ func (n *BgpAny) Global() *Bgp_GlobalAny { } } -// NeighborAny returns from Bgp the path struct for its child "neighbor". -func (n *Bgp) NeighborAny() *Bgp_NeighborAny { - return &Bgp_NeighborAny{ +// NeighborAny returns from BgpPath the path struct for its child "neighbor". +func (n *BgpPath) NeighborAny() *Bgp_NeighborPathAny { + return &Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -4952,9 +4947,9 @@ func (n *Bgp) NeighborAny() *Bgp_NeighborAny { } } -// NeighborAny returns from BgpAny the path struct for its child "neighbor". -func (n *BgpAny) NeighborAny() *Bgp_NeighborAny { - return &Bgp_NeighborAny{ +// NeighborAny returns from BgpPathAny the path struct for its child "neighbor". +func (n *BgpPathAny) NeighborAny() *Bgp_NeighborPathAny { + return &Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -4963,9 +4958,9 @@ func (n *BgpAny) NeighborAny() *Bgp_NeighborAny { } } -// Neighbor returns from Bgp the path struct for its child "neighbor". -func (n *Bgp) Neighbor(NeighborAddress string) *Bgp_Neighbor { - return &Bgp_Neighbor{ +// Neighbor returns from BgpPath the path struct for its child "neighbor". +func (n *BgpPath) Neighbor(NeighborAddress string) *Bgp_NeighborPath { + return &Bgp_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -4974,9 +4969,9 @@ func (n *Bgp) Neighbor(NeighborAddress string) *Bgp_Neighbor { } } -// Neighbor returns from BgpAny the path struct for its child "neighbor". -func (n *BgpAny) Neighbor(NeighborAddress string) *Bgp_NeighborAny { - return &Bgp_NeighborAny{ +// Neighbor returns from BgpPathAny the path struct for its child "neighbor". +func (n *BgpPathAny) Neighbor(NeighborAddress string) *Bgp_NeighborPathAny { + return &Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -4985,9 +4980,9 @@ func (n *BgpAny) Neighbor(NeighborAddress string) *Bgp_NeighborAny { } } -// PeerGroupAny returns from Bgp the path struct for its child "peer-group". -func (n *Bgp) PeerGroupAny() *Bgp_PeerGroupAny { - return &Bgp_PeerGroupAny{ +// PeerGroupAny returns from BgpPath the path struct for its child "peer-group". +func (n *BgpPath) PeerGroupAny() *Bgp_PeerGroupPathAny { + return &Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": "*"}, @@ -4996,9 +4991,9 @@ func (n *Bgp) PeerGroupAny() *Bgp_PeerGroupAny { } } -// PeerGroupAny returns from BgpAny the path struct for its child "peer-group". -func (n *BgpAny) PeerGroupAny() *Bgp_PeerGroupAny { - return &Bgp_PeerGroupAny{ +// PeerGroupAny returns from BgpPathAny the path struct for its child "peer-group". +func (n *BgpPathAny) PeerGroupAny() *Bgp_PeerGroupPathAny { + return &Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": "*"}, @@ -5007,9 +5002,9 @@ func (n *BgpAny) PeerGroupAny() *Bgp_PeerGroupAny { } } -// PeerGroup returns from Bgp the path struct for its child "peer-group". -func (n *Bgp) PeerGroup(PeerGroupName string) *Bgp_PeerGroup { - return &Bgp_PeerGroup{ +// PeerGroup returns from BgpPath the path struct for its child "peer-group". +func (n *BgpPath) PeerGroup(PeerGroupName string) *Bgp_PeerGroupPath { + return &Bgp_PeerGroupPath{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": PeerGroupName}, @@ -5018,9 +5013,9 @@ func (n *Bgp) PeerGroup(PeerGroupName string) *Bgp_PeerGroup { } } -// PeerGroup returns from BgpAny the path struct for its child "peer-group". -func (n *BgpAny) PeerGroup(PeerGroupName string) *Bgp_PeerGroupAny { - return &Bgp_PeerGroupAny{ +// PeerGroup returns from BgpPathAny the path struct for its child "peer-group". +func (n *BgpPathAny) PeerGroup(PeerGroupName string) *Bgp_PeerGroupPathAny { + return &Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": PeerGroupName}, @@ -5029,9 +5024,9 @@ func (n *BgpAny) PeerGroup(PeerGroupName string) *Bgp_PeerGroupAny { } } -// Rib returns from Bgp the path struct for its child "rib". -func (n *Bgp) Rib() *Bgp_Rib { - return &Bgp_Rib{ +// Rib returns from BgpPath the path struct for its child "rib". +func (n *BgpPath) Rib() *Bgp_RibPath { + return &Bgp_RibPath{ NodePath: ygot.NewNodePath( []string{"rib"}, map[string]interface{}{}, @@ -5040,9 +5035,9 @@ func (n *Bgp) Rib() *Bgp_Rib { } } -// Rib returns from BgpAny the path struct for its child "rib". -func (n *BgpAny) Rib() *Bgp_RibAny { - return &Bgp_RibAny{ +// Rib returns from BgpPathAny the path struct for its child "rib". +func (n *BgpPathAny) Rib() *Bgp_RibPathAny { + return &Bgp_RibPathAny{ NodePath: ygot.NewNodePath( []string{"rib"}, map[string]interface{}{}, @@ -5051,59 +5046,59 @@ func (n *BgpAny) Rib() *Bgp_RibAny { } } -// Bgp_Global represents the /openconfig-bgp/bgp/global YANG schema element. -type Bgp_Global struct { +// Bgp_GlobalPath represents the /openconfig-bgp/bgp/global YANG schema element. +type Bgp_GlobalPath struct { *ygot.NodePath } -// Bgp_GlobalAny represents the wildcard version of the /openconfig-bgp/bgp/global YANG schema element. -type Bgp_GlobalAny struct { +// Bgp_GlobalPathAny represents the wildcard version of the /openconfig-bgp/bgp/global YANG schema element. +type Bgp_GlobalPathAny struct { *ygot.NodePath } -// Bgp_Global_As represents the /openconfig-bgp/bgp/global/state/as YANG schema element. -type Bgp_Global_As struct { +// Bgp_Global_AsPath represents the /openconfig-bgp/bgp/global/config/as YANG schema element. +type Bgp_Global_AsPath struct { *ygot.NodePath } -// Bgp_Global_AsAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/as YANG schema element. -type Bgp_Global_AsAny struct { +// Bgp_Global_AsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/config/as YANG schema element. +type Bgp_Global_AsPathAny struct { *ygot.NodePath } -// Bgp_Global_RouterId represents the /openconfig-bgp/bgp/global/state/router-id YANG schema element. -type Bgp_Global_RouterId struct { +// Bgp_Global_RouterIdPath represents the /openconfig-bgp/bgp/global/config/router-id YANG schema element. +type Bgp_Global_RouterIdPath struct { *ygot.NodePath } -// Bgp_Global_RouterIdAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/router-id YANG schema element. -type Bgp_Global_RouterIdAny struct { +// Bgp_Global_RouterIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/config/router-id YANG schema element. +type Bgp_Global_RouterIdPathAny struct { *ygot.NodePath } -// Bgp_Global_TotalPaths represents the /openconfig-bgp/bgp/global/state/total-paths YANG schema element. -type Bgp_Global_TotalPaths struct { +// Bgp_Global_TotalPathsPath represents the /openconfig-bgp/bgp/global/state/total-paths YANG schema element. +type Bgp_Global_TotalPathsPath struct { *ygot.NodePath } -// Bgp_Global_TotalPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/total-paths YANG schema element. -type Bgp_Global_TotalPathsAny struct { +// Bgp_Global_TotalPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/total-paths YANG schema element. +type Bgp_Global_TotalPathsPathAny struct { *ygot.NodePath } -// Bgp_Global_TotalPrefixes represents the /openconfig-bgp/bgp/global/state/total-prefixes YANG schema element. -type Bgp_Global_TotalPrefixes struct { +// Bgp_Global_TotalPrefixesPath represents the /openconfig-bgp/bgp/global/state/total-prefixes YANG schema element. +type Bgp_Global_TotalPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_TotalPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/total-prefixes YANG schema element. -type Bgp_Global_TotalPrefixesAny struct { +// Bgp_Global_TotalPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/state/total-prefixes YANG schema element. +type Bgp_Global_TotalPrefixesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from Bgp_Global the path struct for its child "afi-safi". -func (n *Bgp_Global) AfiSafiAny() *Bgp_Global_AfiSafiAny { - return &Bgp_Global_AfiSafiAny{ +// AfiSafiAny returns from Bgp_GlobalPath the path struct for its child "afi-safi". +func (n *Bgp_GlobalPath) AfiSafiAny() *Bgp_Global_AfiSafiPathAny { + return &Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -5112,9 +5107,9 @@ func (n *Bgp_Global) AfiSafiAny() *Bgp_Global_AfiSafiAny { } } -// AfiSafiAny returns from Bgp_GlobalAny the path struct for its child "afi-safi". -func (n *Bgp_GlobalAny) AfiSafiAny() *Bgp_Global_AfiSafiAny { - return &Bgp_Global_AfiSafiAny{ +// AfiSafiAny returns from Bgp_GlobalPathAny the path struct for its child "afi-safi". +func (n *Bgp_GlobalPathAny) AfiSafiAny() *Bgp_Global_AfiSafiPathAny { + return &Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -5123,9 +5118,9 @@ func (n *Bgp_GlobalAny) AfiSafiAny() *Bgp_Global_AfiSafiAny { } } -// AfiSafi returns from Bgp_Global the path struct for its child "afi-safi". -func (n *Bgp_Global) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Global_AfiSafi { - return &Bgp_Global_AfiSafi{ +// AfiSafi returns from Bgp_GlobalPath the path struct for its child "afi-safi". +func (n *Bgp_GlobalPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Global_AfiSafiPath { + return &Bgp_Global_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -5134,9 +5129,9 @@ func (n *Bgp_Global) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) } } -// AfiSafi returns from Bgp_GlobalAny the path struct for its child "afi-safi". -func (n *Bgp_GlobalAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Global_AfiSafiAny { - return &Bgp_Global_AfiSafiAny{ +// AfiSafi returns from Bgp_GlobalPathAny the path struct for its child "afi-safi". +func (n *Bgp_GlobalPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Global_AfiSafiPathAny { + return &Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -5145,31 +5140,31 @@ func (n *Bgp_GlobalAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYP } } -// As returns from Bgp_Global the path struct for its child "as". -func (n *Bgp_Global) As() *Bgp_Global_As { - return &Bgp_Global_As{ +// As returns from Bgp_GlobalPath the path struct for its child "as". +func (n *Bgp_GlobalPath) As() *Bgp_Global_AsPath { + return &Bgp_Global_AsPath{ NodePath: ygot.NewNodePath( - []string{"state", "as"}, + []string{"config", "as"}, map[string]interface{}{}, n, ), } } -// As returns from Bgp_GlobalAny the path struct for its child "as". -func (n *Bgp_GlobalAny) As() *Bgp_Global_AsAny { - return &Bgp_Global_AsAny{ +// As returns from Bgp_GlobalPathAny the path struct for its child "as". +func (n *Bgp_GlobalPathAny) As() *Bgp_Global_AsPathAny { + return &Bgp_Global_AsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "as"}, + []string{"config", "as"}, map[string]interface{}{}, n, ), } } -// Confederation returns from Bgp_Global the path struct for its child "confederation". -func (n *Bgp_Global) Confederation() *Bgp_Global_Confederation { - return &Bgp_Global_Confederation{ +// Confederation returns from Bgp_GlobalPath the path struct for its child "confederation". +func (n *Bgp_GlobalPath) Confederation() *Bgp_Global_ConfederationPath { + return &Bgp_Global_ConfederationPath{ NodePath: ygot.NewNodePath( []string{"confederation"}, map[string]interface{}{}, @@ -5178,9 +5173,9 @@ func (n *Bgp_Global) Confederation() *Bgp_Global_Confederation { } } -// Confederation returns from Bgp_GlobalAny the path struct for its child "confederation". -func (n *Bgp_GlobalAny) Confederation() *Bgp_Global_ConfederationAny { - return &Bgp_Global_ConfederationAny{ +// Confederation returns from Bgp_GlobalPathAny the path struct for its child "confederation". +func (n *Bgp_GlobalPathAny) Confederation() *Bgp_Global_ConfederationPathAny { + return &Bgp_Global_ConfederationPathAny{ NodePath: ygot.NewNodePath( []string{"confederation"}, map[string]interface{}{}, @@ -5189,9 +5184,9 @@ func (n *Bgp_GlobalAny) Confederation() *Bgp_Global_ConfederationAny { } } -// DefaultRouteDistance returns from Bgp_Global the path struct for its child "default-route-distance". -func (n *Bgp_Global) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistance { - return &Bgp_Global_DefaultRouteDistance{ +// DefaultRouteDistance returns from Bgp_GlobalPath the path struct for its child "default-route-distance". +func (n *Bgp_GlobalPath) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistancePath { + return &Bgp_Global_DefaultRouteDistancePath{ NodePath: ygot.NewNodePath( []string{"default-route-distance"}, map[string]interface{}{}, @@ -5200,9 +5195,9 @@ func (n *Bgp_Global) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistance { } } -// DefaultRouteDistance returns from Bgp_GlobalAny the path struct for its child "default-route-distance". -func (n *Bgp_GlobalAny) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistanceAny { - return &Bgp_Global_DefaultRouteDistanceAny{ +// DefaultRouteDistance returns from Bgp_GlobalPathAny the path struct for its child "default-route-distance". +func (n *Bgp_GlobalPathAny) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistancePathAny { + return &Bgp_Global_DefaultRouteDistancePathAny{ NodePath: ygot.NewNodePath( []string{"default-route-distance"}, map[string]interface{}{}, @@ -5211,9 +5206,9 @@ func (n *Bgp_GlobalAny) DefaultRouteDistance() *Bgp_Global_DefaultRouteDistanceA } } -// DynamicNeighborPrefixAny returns from Bgp_Global the path struct for its child "dynamic-neighbor-prefix". -func (n *Bgp_Global) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPrefixAny { - return &Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefixAny returns from Bgp_GlobalPath the path struct for its child "dynamic-neighbor-prefix". +func (n *Bgp_GlobalPath) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPrefixPathAny { + return &Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": "*"}, @@ -5222,9 +5217,9 @@ func (n *Bgp_Global) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPrefi } } -// DynamicNeighborPrefixAny returns from Bgp_GlobalAny the path struct for its child "dynamic-neighbor-prefix". -func (n *Bgp_GlobalAny) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPrefixAny { - return &Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefixAny returns from Bgp_GlobalPathAny the path struct for its child "dynamic-neighbor-prefix". +func (n *Bgp_GlobalPathAny) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPrefixPathAny { + return &Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": "*"}, @@ -5233,9 +5228,9 @@ func (n *Bgp_GlobalAny) DynamicNeighborPrefixAny() *Bgp_Global_DynamicNeighborPr } } -// DynamicNeighborPrefix returns from Bgp_Global the path struct for its child "dynamic-neighbor-prefix". -func (n *Bgp_Global) DynamicNeighborPrefix(Prefix string) *Bgp_Global_DynamicNeighborPrefix { - return &Bgp_Global_DynamicNeighborPrefix{ +// DynamicNeighborPrefix returns from Bgp_GlobalPath the path struct for its child "dynamic-neighbor-prefix". +func (n *Bgp_GlobalPath) DynamicNeighborPrefix(Prefix string) *Bgp_Global_DynamicNeighborPrefixPath { + return &Bgp_Global_DynamicNeighborPrefixPath{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -5244,9 +5239,9 @@ func (n *Bgp_Global) DynamicNeighborPrefix(Prefix string) *Bgp_Global_DynamicNei } } -// DynamicNeighborPrefix returns from Bgp_GlobalAny the path struct for its child "dynamic-neighbor-prefix". -func (n *Bgp_GlobalAny) DynamicNeighborPrefix(Prefix string) *Bgp_Global_DynamicNeighborPrefixAny { - return &Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefix returns from Bgp_GlobalPathAny the path struct for its child "dynamic-neighbor-prefix". +func (n *Bgp_GlobalPathAny) DynamicNeighborPrefix(Prefix string) *Bgp_Global_DynamicNeighborPrefixPathAny { + return &Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -5255,9 +5250,9 @@ func (n *Bgp_GlobalAny) DynamicNeighborPrefix(Prefix string) *Bgp_Global_Dynamic } } -// GracefulRestart returns from Bgp_Global the path struct for its child "graceful-restart". -func (n *Bgp_Global) GracefulRestart() *Bgp_Global_GracefulRestart { - return &Bgp_Global_GracefulRestart{ +// GracefulRestart returns from Bgp_GlobalPath the path struct for its child "graceful-restart". +func (n *Bgp_GlobalPath) GracefulRestart() *Bgp_Global_GracefulRestartPath { + return &Bgp_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -5266,9 +5261,9 @@ func (n *Bgp_Global) GracefulRestart() *Bgp_Global_GracefulRestart { } } -// GracefulRestart returns from Bgp_GlobalAny the path struct for its child "graceful-restart". -func (n *Bgp_GlobalAny) GracefulRestart() *Bgp_Global_GracefulRestartAny { - return &Bgp_Global_GracefulRestartAny{ +// GracefulRestart returns from Bgp_GlobalPathAny the path struct for its child "graceful-restart". +func (n *Bgp_GlobalPathAny) GracefulRestart() *Bgp_Global_GracefulRestartPathAny { + return &Bgp_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -5277,9 +5272,9 @@ func (n *Bgp_GlobalAny) GracefulRestart() *Bgp_Global_GracefulRestartAny { } } -// RouteSelectionOptions returns from Bgp_Global the path struct for its child "route-selection-options". -func (n *Bgp_Global) RouteSelectionOptions() *Bgp_Global_RouteSelectionOptions { - return &Bgp_Global_RouteSelectionOptions{ +// RouteSelectionOptions returns from Bgp_GlobalPath the path struct for its child "route-selection-options". +func (n *Bgp_GlobalPath) RouteSelectionOptions() *Bgp_Global_RouteSelectionOptionsPath { + return &Bgp_Global_RouteSelectionOptionsPath{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -5288,9 +5283,9 @@ func (n *Bgp_Global) RouteSelectionOptions() *Bgp_Global_RouteSelectionOptions { } } -// RouteSelectionOptions returns from Bgp_GlobalAny the path struct for its child "route-selection-options". -func (n *Bgp_GlobalAny) RouteSelectionOptions() *Bgp_Global_RouteSelectionOptionsAny { - return &Bgp_Global_RouteSelectionOptionsAny{ +// RouteSelectionOptions returns from Bgp_GlobalPathAny the path struct for its child "route-selection-options". +func (n *Bgp_GlobalPathAny) RouteSelectionOptions() *Bgp_Global_RouteSelectionOptionsPathAny { + return &Bgp_Global_RouteSelectionOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -5299,31 +5294,31 @@ func (n *Bgp_GlobalAny) RouteSelectionOptions() *Bgp_Global_RouteSelectionOption } } -// RouterId returns from Bgp_Global the path struct for its child "router-id". -func (n *Bgp_Global) RouterId() *Bgp_Global_RouterId { - return &Bgp_Global_RouterId{ +// RouterId returns from Bgp_GlobalPath the path struct for its child "router-id". +func (n *Bgp_GlobalPath) RouterId() *Bgp_Global_RouterIdPath { + return &Bgp_Global_RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// RouterId returns from Bgp_GlobalAny the path struct for its child "router-id". -func (n *Bgp_GlobalAny) RouterId() *Bgp_Global_RouterIdAny { - return &Bgp_Global_RouterIdAny{ +// RouterId returns from Bgp_GlobalPathAny the path struct for its child "router-id". +func (n *Bgp_GlobalPathAny) RouterId() *Bgp_Global_RouterIdPathAny { + return &Bgp_Global_RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// TotalPaths returns from Bgp_Global the path struct for its child "total-paths". -func (n *Bgp_Global) TotalPaths() *Bgp_Global_TotalPaths { - return &Bgp_Global_TotalPaths{ +// TotalPaths returns from Bgp_GlobalPath the path struct for its child "total-paths". +func (n *Bgp_GlobalPath) TotalPaths() *Bgp_Global_TotalPathsPath { + return &Bgp_Global_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -5332,9 +5327,9 @@ func (n *Bgp_Global) TotalPaths() *Bgp_Global_TotalPaths { } } -// TotalPaths returns from Bgp_GlobalAny the path struct for its child "total-paths". -func (n *Bgp_GlobalAny) TotalPaths() *Bgp_Global_TotalPathsAny { - return &Bgp_Global_TotalPathsAny{ +// TotalPaths returns from Bgp_GlobalPathAny the path struct for its child "total-paths". +func (n *Bgp_GlobalPathAny) TotalPaths() *Bgp_Global_TotalPathsPathAny { + return &Bgp_Global_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -5343,9 +5338,9 @@ func (n *Bgp_GlobalAny) TotalPaths() *Bgp_Global_TotalPathsAny { } } -// TotalPrefixes returns from Bgp_Global the path struct for its child "total-prefixes". -func (n *Bgp_Global) TotalPrefixes() *Bgp_Global_TotalPrefixes { - return &Bgp_Global_TotalPrefixes{ +// TotalPrefixes returns from Bgp_GlobalPath the path struct for its child "total-prefixes". +func (n *Bgp_GlobalPath) TotalPrefixes() *Bgp_Global_TotalPrefixesPath { + return &Bgp_Global_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -5354,9 +5349,9 @@ func (n *Bgp_Global) TotalPrefixes() *Bgp_Global_TotalPrefixes { } } -// TotalPrefixes returns from Bgp_GlobalAny the path struct for its child "total-prefixes". -func (n *Bgp_GlobalAny) TotalPrefixes() *Bgp_Global_TotalPrefixesAny { - return &Bgp_Global_TotalPrefixesAny{ +// TotalPrefixes returns from Bgp_GlobalPathAny the path struct for its child "total-prefixes". +func (n *Bgp_GlobalPathAny) TotalPrefixes() *Bgp_Global_TotalPrefixesPathAny { + return &Bgp_Global_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -5365,9 +5360,9 @@ func (n *Bgp_GlobalAny) TotalPrefixes() *Bgp_Global_TotalPrefixesAny { } } -// UseMultiplePaths returns from Bgp_Global the path struct for its child "use-multiple-paths". -func (n *Bgp_Global) UseMultiplePaths() *Bgp_Global_UseMultiplePaths { - return &Bgp_Global_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_GlobalPath the path struct for its child "use-multiple-paths". +func (n *Bgp_GlobalPath) UseMultiplePaths() *Bgp_Global_UseMultiplePathsPath { + return &Bgp_Global_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -5376,9 +5371,9 @@ func (n *Bgp_Global) UseMultiplePaths() *Bgp_Global_UseMultiplePaths { } } -// UseMultiplePaths returns from Bgp_GlobalAny the path struct for its child "use-multiple-paths". -func (n *Bgp_GlobalAny) UseMultiplePaths() *Bgp_Global_UseMultiplePathsAny { - return &Bgp_Global_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_GlobalPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_GlobalPathAny) UseMultiplePaths() *Bgp_Global_UseMultiplePathsPathAny { + return &Bgp_Global_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -5387,59 +5382,59 @@ func (n *Bgp_GlobalAny) UseMultiplePaths() *Bgp_Global_UseMultiplePathsAny { } } -// Bgp_Global_AfiSafi represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi YANG schema element. -type Bgp_Global_AfiSafi struct { +// Bgp_Global_AfiSafiPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi YANG schema element. +type Bgp_Global_AfiSafiPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafiAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi YANG schema element. -type Bgp_Global_AfiSafiAny struct { +// Bgp_Global_AfiSafiPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi YANG schema element. +type Bgp_Global_AfiSafiPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AfiSafiName represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Global_AfiSafi_AfiSafiName struct { +// Bgp_Global_AfiSafi_AfiSafiNamePath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_Global_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Global_AfiSafi_AfiSafiNameAny struct { +// Bgp_Global_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_Global_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Enabled represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_Enabled struct { +// Bgp_Global_AfiSafi_EnabledPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_EnabledPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_EnabledAny struct { +// Bgp_Global_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_TotalPaths represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. -type Bgp_Global_AfiSafi_TotalPaths struct { +// Bgp_Global_AfiSafi_TotalPathsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. +type Bgp_Global_AfiSafi_TotalPathsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_TotalPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. -type Bgp_Global_AfiSafi_TotalPathsAny struct { +// Bgp_Global_AfiSafi_TotalPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. +type Bgp_Global_AfiSafi_TotalPathsPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_TotalPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. -type Bgp_Global_AfiSafi_TotalPrefixes struct { +// Bgp_Global_AfiSafi_TotalPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. +type Bgp_Global_AfiSafi_TotalPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_TotalPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. -type Bgp_Global_AfiSafi_TotalPrefixesAny struct { +// Bgp_Global_AfiSafi_TotalPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. +type Bgp_Global_AfiSafi_TotalPrefixesPathAny struct { *ygot.NodePath } -// AddPaths returns from Bgp_Global_AfiSafi the path struct for its child "add-paths". -func (n *Bgp_Global_AfiSafi) AddPaths() *Bgp_Global_AfiSafi_AddPaths { - return &Bgp_Global_AfiSafi_AddPaths{ +// AddPaths returns from Bgp_Global_AfiSafiPath the path struct for its child "add-paths". +func (n *Bgp_Global_AfiSafiPath) AddPaths() *Bgp_Global_AfiSafi_AddPathsPath { + return &Bgp_Global_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -5448,9 +5443,9 @@ func (n *Bgp_Global_AfiSafi) AddPaths() *Bgp_Global_AfiSafi_AddPaths { } } -// AddPaths returns from Bgp_Global_AfiSafiAny the path struct for its child "add-paths". -func (n *Bgp_Global_AfiSafiAny) AddPaths() *Bgp_Global_AfiSafi_AddPathsAny { - return &Bgp_Global_AfiSafi_AddPathsAny{ +// AddPaths returns from Bgp_Global_AfiSafiPathAny the path struct for its child "add-paths". +func (n *Bgp_Global_AfiSafiPathAny) AddPaths() *Bgp_Global_AfiSafi_AddPathsPathAny { + return &Bgp_Global_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -5459,53 +5454,53 @@ func (n *Bgp_Global_AfiSafiAny) AddPaths() *Bgp_Global_AfiSafi_AddPathsAny { } } -// AfiSafiName returns from Bgp_Global_AfiSafi the path struct for its child "afi-safi-name". -func (n *Bgp_Global_AfiSafi) AfiSafiName() *Bgp_Global_AfiSafi_AfiSafiName { - return &Bgp_Global_AfiSafi_AfiSafiName{ +// AfiSafiName returns from Bgp_Global_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *Bgp_Global_AfiSafiPath) AfiSafiName() *Bgp_Global_AfiSafi_AfiSafiNamePath { + return &Bgp_Global_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from Bgp_Global_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *Bgp_Global_AfiSafiAny) AfiSafiName() *Bgp_Global_AfiSafi_AfiSafiNameAny { - return &Bgp_Global_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from Bgp_Global_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *Bgp_Global_AfiSafiPathAny) AfiSafiName() *Bgp_Global_AfiSafi_AfiSafiNamePathAny { + return &Bgp_Global_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_AfiSafi the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafi) Enabled() *Bgp_Global_AfiSafi_Enabled { - return &Bgp_Global_AfiSafi_Enabled{ +// Enabled returns from Bgp_Global_AfiSafiPath the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafiPath) Enabled() *Bgp_Global_AfiSafi_EnabledPath { + return &Bgp_Global_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_AfiSafiAny the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafiAny) Enabled() *Bgp_Global_AfiSafi_EnabledAny { - return &Bgp_Global_AfiSafi_EnabledAny{ +// Enabled returns from Bgp_Global_AfiSafiPathAny the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafiPathAny) Enabled() *Bgp_Global_AfiSafi_EnabledPathAny { + return &Bgp_Global_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from Bgp_Global_AfiSafi the path struct for its child "graceful-restart". -func (n *Bgp_Global_AfiSafi) GracefulRestart() *Bgp_Global_AfiSafi_GracefulRestart { - return &Bgp_Global_AfiSafi_GracefulRestart{ +// GracefulRestart returns from Bgp_Global_AfiSafiPath the path struct for its child "graceful-restart". +func (n *Bgp_Global_AfiSafiPath) GracefulRestart() *Bgp_Global_AfiSafi_GracefulRestartPath { + return &Bgp_Global_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -5514,9 +5509,9 @@ func (n *Bgp_Global_AfiSafi) GracefulRestart() *Bgp_Global_AfiSafi_GracefulResta } } -// GracefulRestart returns from Bgp_Global_AfiSafiAny the path struct for its child "graceful-restart". -func (n *Bgp_Global_AfiSafiAny) GracefulRestart() *Bgp_Global_AfiSafi_GracefulRestartAny { - return &Bgp_Global_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from Bgp_Global_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *Bgp_Global_AfiSafiPathAny) GracefulRestart() *Bgp_Global_AfiSafi_GracefulRestartPathAny { + return &Bgp_Global_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -5525,9 +5520,9 @@ func (n *Bgp_Global_AfiSafiAny) GracefulRestart() *Bgp_Global_AfiSafi_GracefulRe } } -// Ipv4LabeledUnicast returns from Bgp_Global_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_Global_AfiSafi) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from Bgp_Global_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_Global_AfiSafiPath) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -5536,9 +5531,9 @@ func (n *Bgp_Global_AfiSafi) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4Labele } } -// Ipv4LabeledUnicast returns from Bgp_Global_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_Global_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_Global_AfiSafiPathAny) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -5547,9 +5542,9 @@ func (n *Bgp_Global_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_Global_AfiSafi_Ipv4Lab } } -// Ipv4Unicast returns from Bgp_Global_AfiSafi the path struct for its child "ipv4-unicast". -func (n *Bgp_Global_AfiSafi) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4Unicast { - return &Bgp_Global_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from Bgp_Global_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *Bgp_Global_AfiSafiPath) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4UnicastPath { + return &Bgp_Global_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -5558,9 +5553,9 @@ func (n *Bgp_Global_AfiSafi) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4Unicast { } } -// Ipv4Unicast returns from Bgp_Global_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *Bgp_Global_AfiSafiAny) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4UnicastAny { - return &Bgp_Global_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *Bgp_Global_AfiSafiPathAny) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4UnicastPathAny { + return &Bgp_Global_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -5569,9 +5564,9 @@ func (n *Bgp_Global_AfiSafiAny) Ipv4Unicast() *Bgp_Global_AfiSafi_Ipv4UnicastAny } } -// Ipv6LabeledUnicast returns from Bgp_Global_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_Global_AfiSafi) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from Bgp_Global_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_Global_AfiSafiPath) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -5580,9 +5575,9 @@ func (n *Bgp_Global_AfiSafi) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6Labele } } -// Ipv6LabeledUnicast returns from Bgp_Global_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_Global_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_Global_AfiSafiPathAny) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -5591,9 +5586,9 @@ func (n *Bgp_Global_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_Global_AfiSafi_Ipv6Lab } } -// Ipv6Unicast returns from Bgp_Global_AfiSafi the path struct for its child "ipv6-unicast". -func (n *Bgp_Global_AfiSafi) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6Unicast { - return &Bgp_Global_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from Bgp_Global_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *Bgp_Global_AfiSafiPath) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6UnicastPath { + return &Bgp_Global_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -5602,9 +5597,9 @@ func (n *Bgp_Global_AfiSafi) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6Unicast { } } -// Ipv6Unicast returns from Bgp_Global_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *Bgp_Global_AfiSafiAny) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6UnicastAny { - return &Bgp_Global_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *Bgp_Global_AfiSafiPathAny) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6UnicastPathAny { + return &Bgp_Global_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -5613,9 +5608,9 @@ func (n *Bgp_Global_AfiSafiAny) Ipv6Unicast() *Bgp_Global_AfiSafi_Ipv6UnicastAny } } -// L2VpnEvpn returns from Bgp_Global_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *Bgp_Global_AfiSafi) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpn { - return &Bgp_Global_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from Bgp_Global_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *Bgp_Global_AfiSafiPath) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpnPath { + return &Bgp_Global_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -5624,9 +5619,9 @@ func (n *Bgp_Global_AfiSafi) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpn { } } -// L2VpnEvpn returns from Bgp_Global_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *Bgp_Global_AfiSafiAny) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpnAny { - return &Bgp_Global_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *Bgp_Global_AfiSafiPathAny) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpnPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -5635,9 +5630,9 @@ func (n *Bgp_Global_AfiSafiAny) L2VpnEvpn() *Bgp_Global_AfiSafi_L2VpnEvpnAny { } } -// L2VpnVpls returns from Bgp_Global_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *Bgp_Global_AfiSafi) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVpls { - return &Bgp_Global_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from Bgp_Global_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *Bgp_Global_AfiSafiPath) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVplsPath { + return &Bgp_Global_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -5646,9 +5641,9 @@ func (n *Bgp_Global_AfiSafi) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVpls { } } -// L2VpnVpls returns from Bgp_Global_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *Bgp_Global_AfiSafiAny) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVplsAny { - return &Bgp_Global_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *Bgp_Global_AfiSafiPathAny) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVplsPathAny { + return &Bgp_Global_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -5657,9 +5652,9 @@ func (n *Bgp_Global_AfiSafiAny) L2VpnVpls() *Bgp_Global_AfiSafi_L2VpnVplsAny { } } -// L3VpnIpv4Multicast returns from Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_Global_AfiSafi) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_Global_AfiSafiPath) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -5668,9 +5663,9 @@ func (n *Bgp_Global_AfiSafi) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIpv4M } } -// L3VpnIpv4Multicast returns from Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_Global_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_Global_AfiSafiPathAny) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -5679,9 +5674,9 @@ func (n *Bgp_Global_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_Global_AfiSafi_L3VpnIp } } -// L3VpnIpv4Unicast returns from Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_Global_AfiSafi) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_Global_AfiSafiPath) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -5690,9 +5685,9 @@ func (n *Bgp_Global_AfiSafi) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4Uni } } -// L3VpnIpv4Unicast returns from Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_Global_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_Global_AfiSafiPathAny) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -5701,9 +5696,9 @@ func (n *Bgp_Global_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_Global_AfiSafi_L3VpnIpv4 } } -// L3VpnIpv6Multicast returns from Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_Global_AfiSafi) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_Global_AfiSafiPath) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -5712,9 +5707,9 @@ func (n *Bgp_Global_AfiSafi) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIpv6M } } -// L3VpnIpv6Multicast returns from Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_Global_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_Global_AfiSafiPathAny) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -5723,9 +5718,9 @@ func (n *Bgp_Global_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_Global_AfiSafi_L3VpnIp } } -// L3VpnIpv6Unicast returns from Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_Global_AfiSafi) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_Global_AfiSafiPath) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -5734,9 +5729,9 @@ func (n *Bgp_Global_AfiSafi) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6Uni } } -// L3VpnIpv6Unicast returns from Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_Global_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_Global_AfiSafiPathAny) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -5745,9 +5740,9 @@ func (n *Bgp_Global_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_Global_AfiSafi_L3VpnIpv6 } } -// RouteSelectionOptions returns from Bgp_Global_AfiSafi the path struct for its child "route-selection-options". -func (n *Bgp_Global_AfiSafi) RouteSelectionOptions() *Bgp_Global_AfiSafi_RouteSelectionOptions { - return &Bgp_Global_AfiSafi_RouteSelectionOptions{ +// RouteSelectionOptions returns from Bgp_Global_AfiSafiPath the path struct for its child "route-selection-options". +func (n *Bgp_Global_AfiSafiPath) RouteSelectionOptions() *Bgp_Global_AfiSafi_RouteSelectionOptionsPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptionsPath{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -5756,9 +5751,9 @@ func (n *Bgp_Global_AfiSafi) RouteSelectionOptions() *Bgp_Global_AfiSafi_RouteSe } } -// RouteSelectionOptions returns from Bgp_Global_AfiSafiAny the path struct for its child "route-selection-options". -func (n *Bgp_Global_AfiSafiAny) RouteSelectionOptions() *Bgp_Global_AfiSafi_RouteSelectionOptionsAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptionsAny{ +// RouteSelectionOptions returns from Bgp_Global_AfiSafiPathAny the path struct for its child "route-selection-options". +func (n *Bgp_Global_AfiSafiPathAny) RouteSelectionOptions() *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -5767,9 +5762,9 @@ func (n *Bgp_Global_AfiSafiAny) RouteSelectionOptions() *Bgp_Global_AfiSafi_Rout } } -// SrtePolicyIpv4 returns from Bgp_Global_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *Bgp_Global_AfiSafi) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyIpv4 { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from Bgp_Global_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *Bgp_Global_AfiSafiPath) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyIpv4Path { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -5778,9 +5773,9 @@ func (n *Bgp_Global_AfiSafi) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyIpv4 } } -// SrtePolicyIpv4 returns from Bgp_Global_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *Bgp_Global_AfiSafiAny) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyIpv4Any { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from Bgp_Global_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *Bgp_Global_AfiSafiPathAny) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -5789,9 +5784,9 @@ func (n *Bgp_Global_AfiSafiAny) SrtePolicyIpv4() *Bgp_Global_AfiSafi_SrtePolicyI } } -// SrtePolicyIpv6 returns from Bgp_Global_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *Bgp_Global_AfiSafi) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyIpv6 { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from Bgp_Global_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *Bgp_Global_AfiSafiPath) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyIpv6Path { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -5800,9 +5795,9 @@ func (n *Bgp_Global_AfiSafi) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyIpv6 } } -// SrtePolicyIpv6 returns from Bgp_Global_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *Bgp_Global_AfiSafiAny) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyIpv6Any { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from Bgp_Global_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *Bgp_Global_AfiSafiPathAny) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -5811,9 +5806,9 @@ func (n *Bgp_Global_AfiSafiAny) SrtePolicyIpv6() *Bgp_Global_AfiSafi_SrtePolicyI } } -// TotalPaths returns from Bgp_Global_AfiSafi the path struct for its child "total-paths". -func (n *Bgp_Global_AfiSafi) TotalPaths() *Bgp_Global_AfiSafi_TotalPaths { - return &Bgp_Global_AfiSafi_TotalPaths{ +// TotalPaths returns from Bgp_Global_AfiSafiPath the path struct for its child "total-paths". +func (n *Bgp_Global_AfiSafiPath) TotalPaths() *Bgp_Global_AfiSafi_TotalPathsPath { + return &Bgp_Global_AfiSafi_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -5822,9 +5817,9 @@ func (n *Bgp_Global_AfiSafi) TotalPaths() *Bgp_Global_AfiSafi_TotalPaths { } } -// TotalPaths returns from Bgp_Global_AfiSafiAny the path struct for its child "total-paths". -func (n *Bgp_Global_AfiSafiAny) TotalPaths() *Bgp_Global_AfiSafi_TotalPathsAny { - return &Bgp_Global_AfiSafi_TotalPathsAny{ +// TotalPaths returns from Bgp_Global_AfiSafiPathAny the path struct for its child "total-paths". +func (n *Bgp_Global_AfiSafiPathAny) TotalPaths() *Bgp_Global_AfiSafi_TotalPathsPathAny { + return &Bgp_Global_AfiSafi_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -5833,9 +5828,9 @@ func (n *Bgp_Global_AfiSafiAny) TotalPaths() *Bgp_Global_AfiSafi_TotalPathsAny { } } -// TotalPrefixes returns from Bgp_Global_AfiSafi the path struct for its child "total-prefixes". -func (n *Bgp_Global_AfiSafi) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixes { - return &Bgp_Global_AfiSafi_TotalPrefixes{ +// TotalPrefixes returns from Bgp_Global_AfiSafiPath the path struct for its child "total-prefixes". +func (n *Bgp_Global_AfiSafiPath) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixesPath { + return &Bgp_Global_AfiSafi_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -5844,9 +5839,9 @@ func (n *Bgp_Global_AfiSafi) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixes { } } -// TotalPrefixes returns from Bgp_Global_AfiSafiAny the path struct for its child "total-prefixes". -func (n *Bgp_Global_AfiSafiAny) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixesAny { - return &Bgp_Global_AfiSafi_TotalPrefixesAny{ +// TotalPrefixes returns from Bgp_Global_AfiSafiPathAny the path struct for its child "total-prefixes". +func (n *Bgp_Global_AfiSafiPathAny) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixesPathAny { + return &Bgp_Global_AfiSafi_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -5855,9 +5850,9 @@ func (n *Bgp_Global_AfiSafiAny) TotalPrefixes() *Bgp_Global_AfiSafi_TotalPrefixe } } -// UseMultiplePaths returns from Bgp_Global_AfiSafi the path struct for its child "use-multiple-paths". -func (n *Bgp_Global_AfiSafi) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultiplePaths { - return &Bgp_Global_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_Global_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *Bgp_Global_AfiSafiPath) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultiplePathsPath { + return &Bgp_Global_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -5866,9 +5861,9 @@ func (n *Bgp_Global_AfiSafi) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultipleP } } -// UseMultiplePaths returns from Bgp_Global_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *Bgp_Global_AfiSafiAny) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultiplePathsAny { - return &Bgp_Global_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_Global_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_Global_AfiSafiPathAny) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultiplePathsPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -5877,199 +5872,199 @@ func (n *Bgp_Global_AfiSafiAny) UseMultiplePaths() *Bgp_Global_AfiSafi_UseMultip } } -// Bgp_Global_AfiSafi_AddPaths represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_Global_AfiSafi_AddPaths struct { +// Bgp_Global_AfiSafi_AddPathsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_Global_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_Global_AfiSafi_AddPathsAny struct { +// Bgp_Global_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_Global_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_Receive represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_Receive struct { +// Bgp_Global_AfiSafi_AddPaths_ReceivePath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_ReceiveAny struct { +// Bgp_Global_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_Send represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_Send struct { +// Bgp_Global_AfiSafi_AddPaths_SendPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_SendAny struct { +// Bgp_Global_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_SendMax represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_SendMax struct { +// Bgp_Global_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_Global_AfiSafi_AddPaths_SendMaxAny struct { +// Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from Bgp_Global_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *Bgp_Global_AfiSafi_AddPaths) EligiblePrefixPolicy() *Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *Bgp_Global_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *Bgp_Global_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *Bgp_Global_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_Global_AfiSafi_AddPaths the path struct for its child "receive". -func (n *Bgp_Global_AfiSafi_AddPaths) Receive() *Bgp_Global_AfiSafi_AddPaths_Receive { - return &Bgp_Global_AfiSafi_AddPaths_Receive{ +// Receive returns from Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *Bgp_Global_AfiSafi_AddPathsPath) Receive() *Bgp_Global_AfiSafi_AddPaths_ReceivePath { + return &Bgp_Global_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *Bgp_Global_AfiSafi_AddPathsAny) Receive() *Bgp_Global_AfiSafi_AddPaths_ReceiveAny { - return &Bgp_Global_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *Bgp_Global_AfiSafi_AddPathsPathAny) Receive() *Bgp_Global_AfiSafi_AddPaths_ReceivePathAny { + return &Bgp_Global_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_Global_AfiSafi_AddPaths the path struct for its child "send". -func (n *Bgp_Global_AfiSafi_AddPaths) Send() *Bgp_Global_AfiSafi_AddPaths_Send { - return &Bgp_Global_AfiSafi_AddPaths_Send{ +// Send returns from Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *Bgp_Global_AfiSafi_AddPathsPath) Send() *Bgp_Global_AfiSafi_AddPaths_SendPath { + return &Bgp_Global_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *Bgp_Global_AfiSafi_AddPathsAny) Send() *Bgp_Global_AfiSafi_AddPaths_SendAny { - return &Bgp_Global_AfiSafi_AddPaths_SendAny{ +// Send returns from Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *Bgp_Global_AfiSafi_AddPathsPathAny) Send() *Bgp_Global_AfiSafi_AddPaths_SendPathAny { + return &Bgp_Global_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_Global_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *Bgp_Global_AfiSafi_AddPaths) SendMax() *Bgp_Global_AfiSafi_AddPaths_SendMax { - return &Bgp_Global_AfiSafi_AddPaths_SendMax{ +// SendMax returns from Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *Bgp_Global_AfiSafi_AddPathsPath) SendMax() *Bgp_Global_AfiSafi_AddPaths_SendMaxPath { + return &Bgp_Global_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *Bgp_Global_AfiSafi_AddPathsAny) SendMax() *Bgp_Global_AfiSafi_AddPaths_SendMaxAny { - return &Bgp_Global_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *Bgp_Global_AfiSafi_AddPathsPathAny) SendMax() *Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny { + return &Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_GracefulRestart represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_Global_AfiSafi_GracefulRestart struct { +// Bgp_Global_AfiSafi_GracefulRestartPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_Global_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_Global_AfiSafi_GracefulRestartAny struct { +// Bgp_Global_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_Global_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_GracefulRestart_Enabled struct { +// Bgp_Global_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_GracefulRestart_EnabledAny struct { +// Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_Global_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafi_GracefulRestart) Enabled() *Bgp_Global_AfiSafi_GracefulRestart_Enabled { - return &Bgp_Global_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from Bgp_Global_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafi_GracefulRestartPath) Enabled() *Bgp_Global_AfiSafi_GracefulRestart_EnabledPath { + return &Bgp_Global_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafi_GracefulRestartAny) Enabled() *Bgp_Global_AfiSafi_GracefulRestart_EnabledAny { - return &Bgp_Global_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_Global_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafi_GracefulRestartPathAny) Enabled() *Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny { + return &Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6078,9 +6073,9 @@ func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_Global_AfiSaf } } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6089,167 +6084,167 @@ func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_Global_Afi } } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv4Unicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast struct { +// Bgp_Global_AfiSafi_Ipv4UnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv4UnicastAny struct { +// Bgp_Global_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv4UnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6258,9 +6253,9 @@ func (n *Bgp_Global_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4U } } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6269,179 +6264,179 @@ func (n *Bgp_Global_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ip } } -// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_Global_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_Global_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_Global_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6450,9 +6445,9 @@ func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_Global_AfiSaf } } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6461,167 +6456,167 @@ func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_Global_Afi } } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv6Unicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast struct { +// Bgp_Global_AfiSafi_Ipv6UnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Global_AfiSafi_Ipv6UnicastAny struct { +// Bgp_Global_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Global_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv6UnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6630,9 +6625,9 @@ func (n *Bgp_Global_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6U } } -// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6641,179 +6636,179 @@ func (n *Bgp_Global_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_Ip } } -// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_Global_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_Global_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_Global_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_Global_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L2VpnEvpn represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn struct { +// Bgp_Global_AfiSafi_L2VpnEvpnPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpnAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L2VpnEvpnPath) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6822,9 +6817,9 @@ func (n *Bgp_Global_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnEv } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6833,157 +6828,157 @@ func (n *Bgp_Global_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_Global_AfiSafi_L2Vp } } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L2VpnVpls represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls struct { +// Bgp_Global_AfiSafi_L2VpnVplsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVplsAny struct { +// Bgp_Global_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L2VpnVplsPath) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -6992,9 +6987,9 @@ func (n *Bgp_Global_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnVp } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7003,157 +6998,157 @@ func (n *Bgp_Global_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_Global_AfiSafi_L2Vp } } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast struct { +// Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7162,9 +7157,9 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_Global_AfiSaf } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7173,157 +7168,157 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_Global_Afi } } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast struct { +// Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7332,9 +7327,9 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_Global_AfiSafi_ } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7343,157 +7338,157 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_Global_AfiSa } } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast struct { +// Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7502,9 +7497,9 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_Global_AfiSaf } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7513,157 +7508,157 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_Global_Afi } } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast struct { +// Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7672,9 +7667,9 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_Global_AfiSafi_ } } -// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -7683,359 +7678,359 @@ func (n *Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_Global_AfiSa } } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_RouteSelectionOptions represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions struct { +// Bgp_Global_AfiSafi_RouteSelectionOptionsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptionsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptionsAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/advertise-inactive-routes YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/advertise-inactive-routes YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/advertise-inactive-routes YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/advertise-inactive-routes YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/always-compare-med YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/always-compare-med YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/always-compare-med YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/always-compare-med YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/enable-aigp YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/enable-aigp YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/enable-aigp YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/enable-aigp YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/external-compare-router-id YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/external-compare-router-id YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/external-compare-router-id YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/external-compare-router-id YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-as-path-length YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-as-path-length YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-as-path-length YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-as-path-length YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny struct { +// Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny struct { *ygot.NodePath } -// AdvertiseInactiveRoutes returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "advertise-inactive-routes". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) AdvertiseInactiveRoutes() *Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes{ +// AdvertiseInactiveRoutes returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "advertise-inactive-routes". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) AdvertiseInactiveRoutes() *Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AdvertiseInactiveRoutes returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "advertise-inactive-routes". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) AdvertiseInactiveRoutes() *Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny{ +// AdvertiseInactiveRoutes returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "advertise-inactive-routes". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) AdvertiseInactiveRoutes() *Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "always-compare-med". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) AlwaysCompareMed() *Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed{ +// AlwaysCompareMed returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "always-compare-med". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) AlwaysCompareMed() *Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "always-compare-med". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) AlwaysCompareMed() *Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny{ +// AlwaysCompareMed returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "always-compare-med". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) AlwaysCompareMed() *Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "enable-aigp". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) EnableAigp() *Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp{ +// EnableAigp returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "enable-aigp". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) EnableAigp() *Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "enable-aigp". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) EnableAigp() *Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny{ +// EnableAigp returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "enable-aigp". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) EnableAigp() *Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "external-compare-router-id". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) ExternalCompareRouterId() *Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId{ +// ExternalCompareRouterId returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "external-compare-router-id". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) ExternalCompareRouterId() *Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "external-compare-router-id". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) ExternalCompareRouterId() *Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny{ +// ExternalCompareRouterId returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "external-compare-router-id". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) ExternalCompareRouterId() *Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "ignore-as-path-length". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) IgnoreAsPathLength() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength{ +// IgnoreAsPathLength returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "ignore-as-path-length". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) IgnoreAsPathLength() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "ignore-as-path-length". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) IgnoreAsPathLength() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny{ +// IgnoreAsPathLength returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "ignore-as-path-length". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) IgnoreAsPathLength() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "ignore-next-hop-igp-metric". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptions) IgnoreNextHopIgpMetric() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric{ +// IgnoreNextHopIgpMetric returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "ignore-next-hop-igp-metric". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPath) IgnoreNextHopIgpMetric() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "ignore-next-hop-igp-metric". -func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsAny) IgnoreNextHopIgpMetric() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny { - return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny{ +// IgnoreNextHopIgpMetric returns from Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "ignore-next-hop-igp-metric". +func (n *Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) IgnoreNextHopIgpMetric() *Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny { + return &Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_SrtePolicyIpv4 represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4 struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4Any struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -8044,9 +8039,9 @@ func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_Global_AfiSafi_Sr } } -// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -8055,157 +8050,157 @@ func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_Global_AfiSafi } } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_SrtePolicyIpv6 represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6 struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6Any struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -8214,9 +8209,9 @@ func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_Global_AfiSafi_Sr } } -// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -8225,167 +8220,167 @@ func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_Global_AfiSafi } } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_UseMultiplePaths represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths struct { +// Bgp_Global_AfiSafi_UseMultiplePathsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePathsAny struct { +// Bgp_Global_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Enabled struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPath) Ebgp() *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -8394,9 +8389,9 @@ func (n *Bgp_Global_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_Global_AfiSafi_UseMult } } -// Ebgp returns from Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_Global_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Ebgp() *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -8405,31 +8400,31 @@ func (n *Bgp_Global_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_Global_AfiSafi_UseM } } -// Enabled returns from Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths) Enabled() *Bgp_Global_AfiSafi_UseMultiplePaths_Enabled { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPath) Enabled() *Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_Global_AfiSafi_UseMultiplePathsAny) Enabled() *Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Enabled() *Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "ibgp". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths) Ibgp() *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp{ +// Ibgp returns from Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPath) Ibgp() *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -8438,9 +8433,9 @@ func (n *Bgp_Global_AfiSafi_UseMultiplePaths) Ibgp() *Bgp_Global_AfiSafi_UseMult } } -// Ibgp returns from Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *Bgp_Global_AfiSafi_UseMultiplePathsAny) Ibgp() *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny{ +// Ibgp returns from Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Ibgp() *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -8449,707 +8444,707 @@ func (n *Bgp_Global_AfiSafi_UseMultiplePathsAny) Ibgp() *Bgp_Global_AfiSafi_UseM } } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny) MaximumPaths() *Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_Confederation represents the /openconfig-bgp/bgp/global/confederation YANG schema element. -type Bgp_Global_Confederation struct { +// Bgp_Global_ConfederationPath represents the /openconfig-bgp/bgp/global/confederation YANG schema element. +type Bgp_Global_ConfederationPath struct { *ygot.NodePath } -// Bgp_Global_ConfederationAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation YANG schema element. -type Bgp_Global_ConfederationAny struct { +// Bgp_Global_ConfederationPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation YANG schema element. +type Bgp_Global_ConfederationPathAny struct { *ygot.NodePath } -// Bgp_Global_Confederation_Identifier represents the /openconfig-bgp/bgp/global/confederation/state/identifier YANG schema element. -type Bgp_Global_Confederation_Identifier struct { +// Bgp_Global_Confederation_IdentifierPath represents the /openconfig-bgp/bgp/global/confederation/config/identifier YANG schema element. +type Bgp_Global_Confederation_IdentifierPath struct { *ygot.NodePath } -// Bgp_Global_Confederation_IdentifierAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation/state/identifier YANG schema element. -type Bgp_Global_Confederation_IdentifierAny struct { +// Bgp_Global_Confederation_IdentifierPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation/config/identifier YANG schema element. +type Bgp_Global_Confederation_IdentifierPathAny struct { *ygot.NodePath } -// Bgp_Global_Confederation_MemberAs represents the /openconfig-bgp/bgp/global/confederation/state/member-as YANG schema element. -type Bgp_Global_Confederation_MemberAs struct { +// Bgp_Global_Confederation_MemberAsPath represents the /openconfig-bgp/bgp/global/confederation/config/member-as YANG schema element. +type Bgp_Global_Confederation_MemberAsPath struct { *ygot.NodePath } -// Bgp_Global_Confederation_MemberAsAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation/state/member-as YANG schema element. -type Bgp_Global_Confederation_MemberAsAny struct { +// Bgp_Global_Confederation_MemberAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/confederation/config/member-as YANG schema element. +type Bgp_Global_Confederation_MemberAsPathAny struct { *ygot.NodePath } -// Identifier returns from Bgp_Global_Confederation the path struct for its child "identifier". -func (n *Bgp_Global_Confederation) Identifier() *Bgp_Global_Confederation_Identifier { - return &Bgp_Global_Confederation_Identifier{ +// Identifier returns from Bgp_Global_ConfederationPath the path struct for its child "identifier". +func (n *Bgp_Global_ConfederationPath) Identifier() *Bgp_Global_Confederation_IdentifierPath { + return &Bgp_Global_Confederation_IdentifierPath{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// Identifier returns from Bgp_Global_ConfederationAny the path struct for its child "identifier". -func (n *Bgp_Global_ConfederationAny) Identifier() *Bgp_Global_Confederation_IdentifierAny { - return &Bgp_Global_Confederation_IdentifierAny{ +// Identifier returns from Bgp_Global_ConfederationPathAny the path struct for its child "identifier". +func (n *Bgp_Global_ConfederationPathAny) Identifier() *Bgp_Global_Confederation_IdentifierPathAny { + return &Bgp_Global_Confederation_IdentifierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// MemberAs returns from Bgp_Global_Confederation the path struct for its child "member-as". -func (n *Bgp_Global_Confederation) MemberAs() *Bgp_Global_Confederation_MemberAs { - return &Bgp_Global_Confederation_MemberAs{ +// MemberAs returns from Bgp_Global_ConfederationPath the path struct for its child "member-as". +func (n *Bgp_Global_ConfederationPath) MemberAs() *Bgp_Global_Confederation_MemberAsPath { + return &Bgp_Global_Confederation_MemberAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "member-as"}, + []string{"config", "member-as"}, map[string]interface{}{}, n, ), } } -// MemberAs returns from Bgp_Global_ConfederationAny the path struct for its child "member-as". -func (n *Bgp_Global_ConfederationAny) MemberAs() *Bgp_Global_Confederation_MemberAsAny { - return &Bgp_Global_Confederation_MemberAsAny{ +// MemberAs returns from Bgp_Global_ConfederationPathAny the path struct for its child "member-as". +func (n *Bgp_Global_ConfederationPathAny) MemberAs() *Bgp_Global_Confederation_MemberAsPathAny { + return &Bgp_Global_Confederation_MemberAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "member-as"}, + []string{"config", "member-as"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_DefaultRouteDistance represents the /openconfig-bgp/bgp/global/default-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistance struct { +// Bgp_Global_DefaultRouteDistancePath represents the /openconfig-bgp/bgp/global/default-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistancePath struct { *ygot.NodePath } -// Bgp_Global_DefaultRouteDistanceAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistanceAny struct { +// Bgp_Global_DefaultRouteDistancePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistancePathAny struct { *ygot.NodePath } -// Bgp_Global_DefaultRouteDistance_ExternalRouteDistance represents the /openconfig-bgp/bgp/global/default-route-distance/state/external-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistance_ExternalRouteDistance struct { +// Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath represents the /openconfig-bgp/bgp/global/default-route-distance/config/external-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath struct { *ygot.NodePath } -// Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance/state/external-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny struct { +// Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance/config/external-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny struct { *ygot.NodePath } -// Bgp_Global_DefaultRouteDistance_InternalRouteDistance represents the /openconfig-bgp/bgp/global/default-route-distance/state/internal-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistance_InternalRouteDistance struct { +// Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath represents the /openconfig-bgp/bgp/global/default-route-distance/config/internal-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath struct { *ygot.NodePath } -// Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance/state/internal-route-distance YANG schema element. -type Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny struct { +// Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/default-route-distance/config/internal-route-distance YANG schema element. +type Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny struct { *ygot.NodePath } -// ExternalRouteDistance returns from Bgp_Global_DefaultRouteDistance the path struct for its child "external-route-distance". -func (n *Bgp_Global_DefaultRouteDistance) ExternalRouteDistance() *Bgp_Global_DefaultRouteDistance_ExternalRouteDistance { - return &Bgp_Global_DefaultRouteDistance_ExternalRouteDistance{ +// ExternalRouteDistance returns from Bgp_Global_DefaultRouteDistancePath the path struct for its child "external-route-distance". +func (n *Bgp_Global_DefaultRouteDistancePath) ExternalRouteDistance() *Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath { + return &Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-distance"}, + []string{"config", "external-route-distance"}, map[string]interface{}{}, n, ), } } -// ExternalRouteDistance returns from Bgp_Global_DefaultRouteDistanceAny the path struct for its child "external-route-distance". -func (n *Bgp_Global_DefaultRouteDistanceAny) ExternalRouteDistance() *Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny { - return &Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny{ +// ExternalRouteDistance returns from Bgp_Global_DefaultRouteDistancePathAny the path struct for its child "external-route-distance". +func (n *Bgp_Global_DefaultRouteDistancePathAny) ExternalRouteDistance() *Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny { + return &Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-distance"}, + []string{"config", "external-route-distance"}, map[string]interface{}{}, n, ), } } -// InternalRouteDistance returns from Bgp_Global_DefaultRouteDistance the path struct for its child "internal-route-distance". -func (n *Bgp_Global_DefaultRouteDistance) InternalRouteDistance() *Bgp_Global_DefaultRouteDistance_InternalRouteDistance { - return &Bgp_Global_DefaultRouteDistance_InternalRouteDistance{ +// InternalRouteDistance returns from Bgp_Global_DefaultRouteDistancePath the path struct for its child "internal-route-distance". +func (n *Bgp_Global_DefaultRouteDistancePath) InternalRouteDistance() *Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath { + return &Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-distance"}, + []string{"config", "internal-route-distance"}, map[string]interface{}{}, n, ), } } -// InternalRouteDistance returns from Bgp_Global_DefaultRouteDistanceAny the path struct for its child "internal-route-distance". -func (n *Bgp_Global_DefaultRouteDistanceAny) InternalRouteDistance() *Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny { - return &Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny{ +// InternalRouteDistance returns from Bgp_Global_DefaultRouteDistancePathAny the path struct for its child "internal-route-distance". +func (n *Bgp_Global_DefaultRouteDistancePathAny) InternalRouteDistance() *Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny { + return &Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-distance"}, + []string{"config", "internal-route-distance"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_DynamicNeighborPrefix represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. -type Bgp_Global_DynamicNeighborPrefix struct { +// Bgp_Global_DynamicNeighborPrefixPath represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. +type Bgp_Global_DynamicNeighborPrefixPath struct { *ygot.NodePath } -// Bgp_Global_DynamicNeighborPrefixAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. -type Bgp_Global_DynamicNeighborPrefixAny struct { +// Bgp_Global_DynamicNeighborPrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. +type Bgp_Global_DynamicNeighborPrefixPathAny struct { *ygot.NodePath } -// Bgp_Global_DynamicNeighborPrefix_PeerGroup represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/peer-group YANG schema element. -type Bgp_Global_DynamicNeighborPrefix_PeerGroup struct { +// Bgp_Global_DynamicNeighborPrefix_PeerGroupPath represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/peer-group YANG schema element. +type Bgp_Global_DynamicNeighborPrefix_PeerGroupPath struct { *ygot.NodePath } -// Bgp_Global_DynamicNeighborPrefix_PeerGroupAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/peer-group YANG schema element. -type Bgp_Global_DynamicNeighborPrefix_PeerGroupAny struct { +// Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/peer-group YANG schema element. +type Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny struct { *ygot.NodePath } -// Bgp_Global_DynamicNeighborPrefix_Prefix represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/prefix YANG schema element. -type Bgp_Global_DynamicNeighborPrefix_Prefix struct { +// Bgp_Global_DynamicNeighborPrefix_PrefixPath represents the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/prefix YANG schema element. +type Bgp_Global_DynamicNeighborPrefix_PrefixPath struct { *ygot.NodePath } -// Bgp_Global_DynamicNeighborPrefix_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/prefix YANG schema element. -type Bgp_Global_DynamicNeighborPrefix_PrefixAny struct { +// Bgp_Global_DynamicNeighborPrefix_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/prefix YANG schema element. +type Bgp_Global_DynamicNeighborPrefix_PrefixPathAny struct { *ygot.NodePath } -// PeerGroup returns from Bgp_Global_DynamicNeighborPrefix the path struct for its child "peer-group". -func (n *Bgp_Global_DynamicNeighborPrefix) PeerGroup() *Bgp_Global_DynamicNeighborPrefix_PeerGroup { - return &Bgp_Global_DynamicNeighborPrefix_PeerGroup{ +// PeerGroup returns from Bgp_Global_DynamicNeighborPrefixPath the path struct for its child "peer-group". +func (n *Bgp_Global_DynamicNeighborPrefixPath) PeerGroup() *Bgp_Global_DynamicNeighborPrefix_PeerGroupPath { + return &Bgp_Global_DynamicNeighborPrefix_PeerGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from Bgp_Global_DynamicNeighborPrefixAny the path struct for its child "peer-group". -func (n *Bgp_Global_DynamicNeighborPrefixAny) PeerGroup() *Bgp_Global_DynamicNeighborPrefix_PeerGroupAny { - return &Bgp_Global_DynamicNeighborPrefix_PeerGroupAny{ +// PeerGroup returns from Bgp_Global_DynamicNeighborPrefixPathAny the path struct for its child "peer-group". +func (n *Bgp_Global_DynamicNeighborPrefixPathAny) PeerGroup() *Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny { + return &Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// Prefix returns from Bgp_Global_DynamicNeighborPrefix the path struct for its child "prefix". -func (n *Bgp_Global_DynamicNeighborPrefix) Prefix() *Bgp_Global_DynamicNeighborPrefix_Prefix { - return &Bgp_Global_DynamicNeighborPrefix_Prefix{ +// Prefix returns from Bgp_Global_DynamicNeighborPrefixPath the path struct for its child "prefix". +func (n *Bgp_Global_DynamicNeighborPrefixPath) Prefix() *Bgp_Global_DynamicNeighborPrefix_PrefixPath { + return &Bgp_Global_DynamicNeighborPrefix_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from Bgp_Global_DynamicNeighborPrefixAny the path struct for its child "prefix". -func (n *Bgp_Global_DynamicNeighborPrefixAny) Prefix() *Bgp_Global_DynamicNeighborPrefix_PrefixAny { - return &Bgp_Global_DynamicNeighborPrefix_PrefixAny{ +// Prefix returns from Bgp_Global_DynamicNeighborPrefixPathAny the path struct for its child "prefix". +func (n *Bgp_Global_DynamicNeighborPrefixPathAny) Prefix() *Bgp_Global_DynamicNeighborPrefix_PrefixPathAny { + return &Bgp_Global_DynamicNeighborPrefix_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_GracefulRestart represents the /openconfig-bgp/bgp/global/graceful-restart YANG schema element. -type Bgp_Global_GracefulRestart struct { +// Bgp_Global_GracefulRestartPath represents the /openconfig-bgp/bgp/global/graceful-restart YANG schema element. +type Bgp_Global_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_Global_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart YANG schema element. -type Bgp_Global_GracefulRestartAny struct { +// Bgp_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart YANG schema element. +type Bgp_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/global/graceful-restart/state/enabled YANG schema element. -type Bgp_Global_GracefulRestart_Enabled struct { +// Bgp_Global_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/global/graceful-restart/config/enabled YANG schema element. +type Bgp_Global_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/state/enabled YANG schema element. -type Bgp_Global_GracefulRestart_EnabledAny struct { +// Bgp_Global_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/config/enabled YANG schema element. +type Bgp_Global_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_HelperOnly represents the /openconfig-bgp/bgp/global/graceful-restart/state/helper-only YANG schema element. -type Bgp_Global_GracefulRestart_HelperOnly struct { +// Bgp_Global_GracefulRestart_HelperOnlyPath represents the /openconfig-bgp/bgp/global/graceful-restart/config/helper-only YANG schema element. +type Bgp_Global_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/state/helper-only YANG schema element. -type Bgp_Global_GracefulRestart_HelperOnlyAny struct { +// Bgp_Global_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/config/helper-only YANG schema element. +type Bgp_Global_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_RestartTime represents the /openconfig-bgp/bgp/global/graceful-restart/state/restart-time YANG schema element. -type Bgp_Global_GracefulRestart_RestartTime struct { +// Bgp_Global_GracefulRestart_RestartTimePath represents the /openconfig-bgp/bgp/global/graceful-restart/config/restart-time YANG schema element. +type Bgp_Global_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/state/restart-time YANG schema element. -type Bgp_Global_GracefulRestart_RestartTimeAny struct { +// Bgp_Global_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/config/restart-time YANG schema element. +type Bgp_Global_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_StaleRoutesTime represents the /openconfig-bgp/bgp/global/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_Global_GracefulRestart_StaleRoutesTime struct { +// Bgp_Global_GracefulRestart_StaleRoutesTimePath represents the /openconfig-bgp/bgp/global/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_Global_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// Bgp_Global_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_Global_GracefulRestart_StaleRoutesTimeAny struct { +// Bgp_Global_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/global/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_Global_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_Global_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_Global_GracefulRestart) Enabled() *Bgp_Global_GracefulRestart_Enabled { - return &Bgp_Global_GracefulRestart_Enabled{ +// Enabled returns from Bgp_Global_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_Global_GracefulRestartPath) Enabled() *Bgp_Global_GracefulRestart_EnabledPath { + return &Bgp_Global_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_Global_GracefulRestartAny) Enabled() *Bgp_Global_GracefulRestart_EnabledAny { - return &Bgp_Global_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_Global_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_Global_GracefulRestartPathAny) Enabled() *Bgp_Global_GracefulRestart_EnabledPathAny { + return &Bgp_Global_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_Global_GracefulRestart the path struct for its child "helper-only". -func (n *Bgp_Global_GracefulRestart) HelperOnly() *Bgp_Global_GracefulRestart_HelperOnly { - return &Bgp_Global_GracefulRestart_HelperOnly{ +// HelperOnly returns from Bgp_Global_GracefulRestartPath the path struct for its child "helper-only". +func (n *Bgp_Global_GracefulRestartPath) HelperOnly() *Bgp_Global_GracefulRestart_HelperOnlyPath { + return &Bgp_Global_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_Global_GracefulRestartAny the path struct for its child "helper-only". -func (n *Bgp_Global_GracefulRestartAny) HelperOnly() *Bgp_Global_GracefulRestart_HelperOnlyAny { - return &Bgp_Global_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from Bgp_Global_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *Bgp_Global_GracefulRestartPathAny) HelperOnly() *Bgp_Global_GracefulRestart_HelperOnlyPathAny { + return &Bgp_Global_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from Bgp_Global_GracefulRestart the path struct for its child "restart-time". -func (n *Bgp_Global_GracefulRestart) RestartTime() *Bgp_Global_GracefulRestart_RestartTime { - return &Bgp_Global_GracefulRestart_RestartTime{ +// RestartTime returns from Bgp_Global_GracefulRestartPath the path struct for its child "restart-time". +func (n *Bgp_Global_GracefulRestartPath) RestartTime() *Bgp_Global_GracefulRestart_RestartTimePath { + return &Bgp_Global_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from Bgp_Global_GracefulRestartAny the path struct for its child "restart-time". -func (n *Bgp_Global_GracefulRestartAny) RestartTime() *Bgp_Global_GracefulRestart_RestartTimeAny { - return &Bgp_Global_GracefulRestart_RestartTimeAny{ +// RestartTime returns from Bgp_Global_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *Bgp_Global_GracefulRestartPathAny) RestartTime() *Bgp_Global_GracefulRestart_RestartTimePathAny { + return &Bgp_Global_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_Global_GracefulRestart the path struct for its child "stale-routes-time". -func (n *Bgp_Global_GracefulRestart) StaleRoutesTime() *Bgp_Global_GracefulRestart_StaleRoutesTime { - return &Bgp_Global_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from Bgp_Global_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *Bgp_Global_GracefulRestartPath) StaleRoutesTime() *Bgp_Global_GracefulRestart_StaleRoutesTimePath { + return &Bgp_Global_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_Global_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *Bgp_Global_GracefulRestartAny) StaleRoutesTime() *Bgp_Global_GracefulRestart_StaleRoutesTimeAny { - return &Bgp_Global_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from Bgp_Global_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *Bgp_Global_GracefulRestartPathAny) StaleRoutesTime() *Bgp_Global_GracefulRestart_StaleRoutesTimePathAny { + return &Bgp_Global_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_RouteSelectionOptions represents the /openconfig-bgp/bgp/global/route-selection-options YANG schema element. -type Bgp_Global_RouteSelectionOptions struct { +// Bgp_Global_RouteSelectionOptionsPath represents the /openconfig-bgp/bgp/global/route-selection-options YANG schema element. +type Bgp_Global_RouteSelectionOptionsPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options YANG schema element. -type Bgp_Global_RouteSelectionOptionsAny struct { +// Bgp_Global_RouteSelectionOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options YANG schema element. +type Bgp_Global_RouteSelectionOptionsPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes represents the /openconfig-bgp/bgp/global/route-selection-options/state/advertise-inactive-routes YANG schema element. -type Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes struct { +// Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/advertise-inactive-routes YANG schema element. +type Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/advertise-inactive-routes YANG schema element. -type Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny struct { +// Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/advertise-inactive-routes YANG schema element. +type Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_AlwaysCompareMed represents the /openconfig-bgp/bgp/global/route-selection-options/state/always-compare-med YANG schema element. -type Bgp_Global_RouteSelectionOptions_AlwaysCompareMed struct { +// Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/always-compare-med YANG schema element. +type Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/always-compare-med YANG schema element. -type Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny struct { +// Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/always-compare-med YANG schema element. +type Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_EnableAigp represents the /openconfig-bgp/bgp/global/route-selection-options/state/enable-aigp YANG schema element. -type Bgp_Global_RouteSelectionOptions_EnableAigp struct { +// Bgp_Global_RouteSelectionOptions_EnableAigpPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/enable-aigp YANG schema element. +type Bgp_Global_RouteSelectionOptions_EnableAigpPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_EnableAigpAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/enable-aigp YANG schema element. -type Bgp_Global_RouteSelectionOptions_EnableAigpAny struct { +// Bgp_Global_RouteSelectionOptions_EnableAigpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/enable-aigp YANG schema element. +type Bgp_Global_RouteSelectionOptions_EnableAigpPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId represents the /openconfig-bgp/bgp/global/route-selection-options/state/external-compare-router-id YANG schema element. -type Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId struct { +// Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/external-compare-router-id YANG schema element. +type Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/external-compare-router-id YANG schema element. -type Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny struct { +// Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/external-compare-router-id YANG schema element. +type Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength represents the /openconfig-bgp/bgp/global/route-selection-options/state/ignore-as-path-length YANG schema element. -type Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength struct { +// Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/ignore-as-path-length YANG schema element. +type Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/ignore-as-path-length YANG schema element. -type Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny struct { +// Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/ignore-as-path-length YANG schema element. +type Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric represents the /openconfig-bgp/bgp/global/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric struct { +// Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath represents the /openconfig-bgp/bgp/global/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath struct { *ygot.NodePath } -// Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny struct { +// Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny struct { *ygot.NodePath } -// AdvertiseInactiveRoutes returns from Bgp_Global_RouteSelectionOptions the path struct for its child "advertise-inactive-routes". -func (n *Bgp_Global_RouteSelectionOptions) AdvertiseInactiveRoutes() *Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes { - return &Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes{ +// AdvertiseInactiveRoutes returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "advertise-inactive-routes". +func (n *Bgp_Global_RouteSelectionOptionsPath) AdvertiseInactiveRoutes() *Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath { + return &Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AdvertiseInactiveRoutes returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "advertise-inactive-routes". -func (n *Bgp_Global_RouteSelectionOptionsAny) AdvertiseInactiveRoutes() *Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny { - return &Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny{ +// AdvertiseInactiveRoutes returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "advertise-inactive-routes". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) AdvertiseInactiveRoutes() *Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny { + return &Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from Bgp_Global_RouteSelectionOptions the path struct for its child "always-compare-med". -func (n *Bgp_Global_RouteSelectionOptions) AlwaysCompareMed() *Bgp_Global_RouteSelectionOptions_AlwaysCompareMed { - return &Bgp_Global_RouteSelectionOptions_AlwaysCompareMed{ +// AlwaysCompareMed returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "always-compare-med". +func (n *Bgp_Global_RouteSelectionOptionsPath) AlwaysCompareMed() *Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath { + return &Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "always-compare-med". -func (n *Bgp_Global_RouteSelectionOptionsAny) AlwaysCompareMed() *Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny { - return &Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny{ +// AlwaysCompareMed returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "always-compare-med". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) AlwaysCompareMed() *Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny { + return &Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from Bgp_Global_RouteSelectionOptions the path struct for its child "enable-aigp". -func (n *Bgp_Global_RouteSelectionOptions) EnableAigp() *Bgp_Global_RouteSelectionOptions_EnableAigp { - return &Bgp_Global_RouteSelectionOptions_EnableAigp{ +// EnableAigp returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "enable-aigp". +func (n *Bgp_Global_RouteSelectionOptionsPath) EnableAigp() *Bgp_Global_RouteSelectionOptions_EnableAigpPath { + return &Bgp_Global_RouteSelectionOptions_EnableAigpPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "enable-aigp". -func (n *Bgp_Global_RouteSelectionOptionsAny) EnableAigp() *Bgp_Global_RouteSelectionOptions_EnableAigpAny { - return &Bgp_Global_RouteSelectionOptions_EnableAigpAny{ +// EnableAigp returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "enable-aigp". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) EnableAigp() *Bgp_Global_RouteSelectionOptions_EnableAigpPathAny { + return &Bgp_Global_RouteSelectionOptions_EnableAigpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from Bgp_Global_RouteSelectionOptions the path struct for its child "external-compare-router-id". -func (n *Bgp_Global_RouteSelectionOptions) ExternalCompareRouterId() *Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId { - return &Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId{ +// ExternalCompareRouterId returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "external-compare-router-id". +func (n *Bgp_Global_RouteSelectionOptionsPath) ExternalCompareRouterId() *Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath { + return &Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "external-compare-router-id". -func (n *Bgp_Global_RouteSelectionOptionsAny) ExternalCompareRouterId() *Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny { - return &Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny{ +// ExternalCompareRouterId returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "external-compare-router-id". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) ExternalCompareRouterId() *Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny { + return &Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from Bgp_Global_RouteSelectionOptions the path struct for its child "ignore-as-path-length". -func (n *Bgp_Global_RouteSelectionOptions) IgnoreAsPathLength() *Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength { - return &Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength{ +// IgnoreAsPathLength returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "ignore-as-path-length". +func (n *Bgp_Global_RouteSelectionOptionsPath) IgnoreAsPathLength() *Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath { + return &Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "ignore-as-path-length". -func (n *Bgp_Global_RouteSelectionOptionsAny) IgnoreAsPathLength() *Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny { - return &Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny{ +// IgnoreAsPathLength returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "ignore-as-path-length". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) IgnoreAsPathLength() *Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny { + return &Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from Bgp_Global_RouteSelectionOptions the path struct for its child "ignore-next-hop-igp-metric". -func (n *Bgp_Global_RouteSelectionOptions) IgnoreNextHopIgpMetric() *Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric { - return &Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric{ +// IgnoreNextHopIgpMetric returns from Bgp_Global_RouteSelectionOptionsPath the path struct for its child "ignore-next-hop-igp-metric". +func (n *Bgp_Global_RouteSelectionOptionsPath) IgnoreNextHopIgpMetric() *Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath { + return &Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from Bgp_Global_RouteSelectionOptionsAny the path struct for its child "ignore-next-hop-igp-metric". -func (n *Bgp_Global_RouteSelectionOptionsAny) IgnoreNextHopIgpMetric() *Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny { - return &Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny{ +// IgnoreNextHopIgpMetric returns from Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "ignore-next-hop-igp-metric". +func (n *Bgp_Global_RouteSelectionOptionsPathAny) IgnoreNextHopIgpMetric() *Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny { + return &Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_UseMultiplePaths represents the /openconfig-bgp/bgp/global/use-multiple-paths YANG schema element. -type Bgp_Global_UseMultiplePaths struct { +// Bgp_Global_UseMultiplePathsPath represents the /openconfig-bgp/bgp/global/use-multiple-paths YANG schema element. +type Bgp_Global_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths YANG schema element. -type Bgp_Global_UseMultiplePathsAny struct { +// Bgp_Global_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths YANG schema element. +type Bgp_Global_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/global/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Global_UseMultiplePaths_Enabled struct { +// Bgp_Global_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Global_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Global_UseMultiplePaths_EnabledAny struct { +// Bgp_Global_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Global_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_Global_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_Global_UseMultiplePaths) Ebgp() *Bgp_Global_UseMultiplePaths_Ebgp { - return &Bgp_Global_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_Global_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_Global_UseMultiplePathsPath) Ebgp() *Bgp_Global_UseMultiplePaths_EbgpPath { + return &Bgp_Global_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -9158,9 +9153,9 @@ func (n *Bgp_Global_UseMultiplePaths) Ebgp() *Bgp_Global_UseMultiplePaths_Ebgp { } } -// Ebgp returns from Bgp_Global_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_Global_UseMultiplePathsAny) Ebgp() *Bgp_Global_UseMultiplePaths_EbgpAny { - return &Bgp_Global_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_Global_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_Global_UseMultiplePathsPathAny) Ebgp() *Bgp_Global_UseMultiplePaths_EbgpPathAny { + return &Bgp_Global_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -9169,31 +9164,31 @@ func (n *Bgp_Global_UseMultiplePathsAny) Ebgp() *Bgp_Global_UseMultiplePaths_Ebg } } -// Enabled returns from Bgp_Global_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_Global_UseMultiplePaths) Enabled() *Bgp_Global_UseMultiplePaths_Enabled { - return &Bgp_Global_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_Global_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_Global_UseMultiplePathsPath) Enabled() *Bgp_Global_UseMultiplePaths_EnabledPath { + return &Bgp_Global_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Global_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_Global_UseMultiplePathsAny) Enabled() *Bgp_Global_UseMultiplePaths_EnabledAny { - return &Bgp_Global_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_Global_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_Global_UseMultiplePathsPathAny) Enabled() *Bgp_Global_UseMultiplePaths_EnabledPathAny { + return &Bgp_Global_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from Bgp_Global_UseMultiplePaths the path struct for its child "ibgp". -func (n *Bgp_Global_UseMultiplePaths) Ibgp() *Bgp_Global_UseMultiplePaths_Ibgp { - return &Bgp_Global_UseMultiplePaths_Ibgp{ +// Ibgp returns from Bgp_Global_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *Bgp_Global_UseMultiplePathsPath) Ibgp() *Bgp_Global_UseMultiplePaths_IbgpPath { + return &Bgp_Global_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -9202,9 +9197,9 @@ func (n *Bgp_Global_UseMultiplePaths) Ibgp() *Bgp_Global_UseMultiplePaths_Ibgp { } } -// Ibgp returns from Bgp_Global_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *Bgp_Global_UseMultiplePathsAny) Ibgp() *Bgp_Global_UseMultiplePaths_IbgpAny { - return &Bgp_Global_UseMultiplePaths_IbgpAny{ +// Ibgp returns from Bgp_Global_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *Bgp_Global_UseMultiplePathsPathAny) Ibgp() *Bgp_Global_UseMultiplePaths_IbgpPathAny { + return &Bgp_Global_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -9213,295 +9208,295 @@ func (n *Bgp_Global_UseMultiplePathsAny) Ibgp() *Bgp_Global_UseMultiplePaths_Ibg } } -// Bgp_Global_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp YANG schema element. -type Bgp_Global_UseMultiplePaths_Ebgp struct { +// Bgp_Global_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp YANG schema element. +type Bgp_Global_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp YANG schema element. -type Bgp_Global_UseMultiplePaths_EbgpAny struct { +// Bgp_Global_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp YANG schema element. +type Bgp_Global_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths struct { +// Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_Global_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_Global_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_Global_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_Global_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_Global_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_Global_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_Global_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_Global_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *Bgp_Global_UseMultiplePaths_Ebgp) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths { - return &Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from Bgp_Global_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_Global_UseMultiplePaths_EbgpPath) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_Global_UseMultiplePaths_EbgpAny) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_Global_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_Global_UseMultiplePaths_EbgpPathAny) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_Global_UseMultiplePaths_Ibgp represents the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp YANG schema element. -type Bgp_Global_UseMultiplePaths_Ibgp struct { +// Bgp_Global_UseMultiplePaths_IbgpPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp YANG schema element. +type Bgp_Global_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp YANG schema element. -type Bgp_Global_UseMultiplePaths_IbgpAny struct { +// Bgp_Global_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp YANG schema element. +type Bgp_Global_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths struct { +// Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/global/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from Bgp_Global_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *Bgp_Global_UseMultiplePaths_Ibgp) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths { - return &Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from Bgp_Global_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_Global_UseMultiplePaths_IbgpPath) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_Global_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_Global_UseMultiplePaths_IbgpAny) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_Global_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_Global_UseMultiplePaths_IbgpPathAny) MaximumPaths() *Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor represents the /openconfig-bgp/bgp/neighbors/neighbor YANG schema element. -type Bgp_Neighbor struct { +// Bgp_NeighborPath represents the /openconfig-bgp/bgp/neighbors/neighbor YANG schema element. +type Bgp_NeighborPath struct { *ygot.NodePath } -// Bgp_NeighborAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor YANG schema element. -type Bgp_NeighborAny struct { +// Bgp_NeighborPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor YANG schema element. +type Bgp_NeighborPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AuthPassword represents the /openconfig-bgp/bgp/neighbors/neighbor/state/auth-password YANG schema element. -type Bgp_Neighbor_AuthPassword struct { +// Bgp_Neighbor_AuthPasswordPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/auth-password YANG schema element. +type Bgp_Neighbor_AuthPasswordPath struct { *ygot.NodePath } -// Bgp_Neighbor_AuthPasswordAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/auth-password YANG schema element. -type Bgp_Neighbor_AuthPasswordAny struct { +// Bgp_Neighbor_AuthPasswordPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/auth-password YANG schema element. +type Bgp_Neighbor_AuthPasswordPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Description represents the /openconfig-bgp/bgp/neighbors/neighbor/state/description YANG schema element. -type Bgp_Neighbor_Description struct { +// Bgp_Neighbor_DescriptionPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/description YANG schema element. +type Bgp_Neighbor_DescriptionPath struct { *ygot.NodePath } -// Bgp_Neighbor_DescriptionAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/description YANG schema element. -type Bgp_Neighbor_DescriptionAny struct { +// Bgp_Neighbor_DescriptionPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/description YANG schema element. +type Bgp_Neighbor_DescriptionPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_DynamicallyConfigured represents the /openconfig-bgp/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. -type Bgp_Neighbor_DynamicallyConfigured struct { +// Bgp_Neighbor_DynamicallyConfiguredPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. +type Bgp_Neighbor_DynamicallyConfiguredPath struct { *ygot.NodePath } -// Bgp_Neighbor_DynamicallyConfiguredAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. -type Bgp_Neighbor_DynamicallyConfiguredAny struct { +// Bgp_Neighbor_DynamicallyConfiguredPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. +type Bgp_Neighbor_DynamicallyConfiguredPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/state/enabled YANG schema element. -type Bgp_Neighbor_Enabled struct { +// Bgp_Neighbor_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/enabled YANG schema element. +type Bgp_Neighbor_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/enabled YANG schema element. -type Bgp_Neighbor_EnabledAny struct { +// Bgp_Neighbor_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/enabled YANG schema element. +type Bgp_Neighbor_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_EstablishedTransitions represents the /openconfig-bgp/bgp/neighbors/neighbor/state/established-transitions YANG schema element. -type Bgp_Neighbor_EstablishedTransitions struct { +// Bgp_Neighbor_EstablishedTransitionsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/established-transitions YANG schema element. +type Bgp_Neighbor_EstablishedTransitionsPath struct { *ygot.NodePath } -// Bgp_Neighbor_EstablishedTransitionsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/established-transitions YANG schema element. -type Bgp_Neighbor_EstablishedTransitionsAny struct { +// Bgp_Neighbor_EstablishedTransitionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/established-transitions YANG schema element. +type Bgp_Neighbor_EstablishedTransitionsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_LastEstablished represents the /openconfig-bgp/bgp/neighbors/neighbor/state/last-established YANG schema element. -type Bgp_Neighbor_LastEstablished struct { +// Bgp_Neighbor_LastEstablishedPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/last-established YANG schema element. +type Bgp_Neighbor_LastEstablishedPath struct { *ygot.NodePath } -// Bgp_Neighbor_LastEstablishedAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/last-established YANG schema element. -type Bgp_Neighbor_LastEstablishedAny struct { +// Bgp_Neighbor_LastEstablishedPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/last-established YANG schema element. +type Bgp_Neighbor_LastEstablishedPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_LocalAs represents the /openconfig-bgp/bgp/neighbors/neighbor/state/local-as YANG schema element. -type Bgp_Neighbor_LocalAs struct { +// Bgp_Neighbor_LocalAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/local-as YANG schema element. +type Bgp_Neighbor_LocalAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_LocalAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/local-as YANG schema element. -type Bgp_Neighbor_LocalAsAny struct { +// Bgp_Neighbor_LocalAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/local-as YANG schema element. +type Bgp_Neighbor_LocalAsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_NeighborAddress represents the /openconfig-bgp/bgp/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Neighbor_NeighborAddress struct { +// Bgp_Neighbor_NeighborAddressPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/neighbor-address YANG schema element. +type Bgp_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// Bgp_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Neighbor_NeighborAddressAny struct { +// Bgp_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/neighbor-address YANG schema element. +type Bgp_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_PeerAs represents the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-as YANG schema element. -type Bgp_Neighbor_PeerAs struct { +// Bgp_Neighbor_PeerAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-as YANG schema element. +type Bgp_Neighbor_PeerAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_PeerAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-as YANG schema element. -type Bgp_Neighbor_PeerAsAny struct { +// Bgp_Neighbor_PeerAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-as YANG schema element. +type Bgp_Neighbor_PeerAsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_PeerGroup represents the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-group YANG schema element. -type Bgp_Neighbor_PeerGroup struct { +// Bgp_Neighbor_PeerGroupPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-group YANG schema element. +type Bgp_Neighbor_PeerGroupPath struct { *ygot.NodePath } -// Bgp_Neighbor_PeerGroupAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-group YANG schema element. -type Bgp_Neighbor_PeerGroupAny struct { +// Bgp_Neighbor_PeerGroupPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-group YANG schema element. +type Bgp_Neighbor_PeerGroupPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_PeerType represents the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-type YANG schema element. -type Bgp_Neighbor_PeerType struct { +// Bgp_Neighbor_PeerTypePath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-type YANG schema element. +type Bgp_Neighbor_PeerTypePath struct { *ygot.NodePath } -// Bgp_Neighbor_PeerTypeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/peer-type YANG schema element. -type Bgp_Neighbor_PeerTypeAny struct { +// Bgp_Neighbor_PeerTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/peer-type YANG schema element. +type Bgp_Neighbor_PeerTypePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_RemovePrivateAs represents the /openconfig-bgp/bgp/neighbors/neighbor/state/remove-private-as YANG schema element. -type Bgp_Neighbor_RemovePrivateAs struct { +// Bgp_Neighbor_RemovePrivateAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/remove-private-as YANG schema element. +type Bgp_Neighbor_RemovePrivateAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_RemovePrivateAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/remove-private-as YANG schema element. -type Bgp_Neighbor_RemovePrivateAsAny struct { +// Bgp_Neighbor_RemovePrivateAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/remove-private-as YANG schema element. +type Bgp_Neighbor_RemovePrivateAsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_RouteFlapDamping represents the /openconfig-bgp/bgp/neighbors/neighbor/state/route-flap-damping YANG schema element. -type Bgp_Neighbor_RouteFlapDamping struct { +// Bgp_Neighbor_RouteFlapDampingPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/route-flap-damping YANG schema element. +type Bgp_Neighbor_RouteFlapDampingPath struct { *ygot.NodePath } -// Bgp_Neighbor_RouteFlapDampingAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/route-flap-damping YANG schema element. -type Bgp_Neighbor_RouteFlapDampingAny struct { +// Bgp_Neighbor_RouteFlapDampingPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/route-flap-damping YANG schema element. +type Bgp_Neighbor_RouteFlapDampingPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_SendCommunity represents the /openconfig-bgp/bgp/neighbors/neighbor/state/send-community YANG schema element. -type Bgp_Neighbor_SendCommunity struct { +// Bgp_Neighbor_SendCommunityPath represents the /openconfig-bgp/bgp/neighbors/neighbor/config/send-community YANG schema element. +type Bgp_Neighbor_SendCommunityPath struct { *ygot.NodePath } -// Bgp_Neighbor_SendCommunityAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/send-community YANG schema element. -type Bgp_Neighbor_SendCommunityAny struct { +// Bgp_Neighbor_SendCommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/config/send-community YANG schema element. +type Bgp_Neighbor_SendCommunityPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_SessionState represents the /openconfig-bgp/bgp/neighbors/neighbor/state/session-state YANG schema element. -type Bgp_Neighbor_SessionState struct { +// Bgp_Neighbor_SessionStatePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/session-state YANG schema element. +type Bgp_Neighbor_SessionStatePath struct { *ygot.NodePath } -// Bgp_Neighbor_SessionStateAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/session-state YANG schema element. -type Bgp_Neighbor_SessionStateAny struct { +// Bgp_Neighbor_SessionStatePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/session-state YANG schema element. +type Bgp_Neighbor_SessionStatePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_SupportedCapabilities represents the /openconfig-bgp/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. -type Bgp_Neighbor_SupportedCapabilities struct { +// Bgp_Neighbor_SupportedCapabilitiesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. +type Bgp_Neighbor_SupportedCapabilitiesPath struct { *ygot.NodePath } -// Bgp_Neighbor_SupportedCapabilitiesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. -type Bgp_Neighbor_SupportedCapabilitiesAny struct { +// Bgp_Neighbor_SupportedCapabilitiesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. +type Bgp_Neighbor_SupportedCapabilitiesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from Bgp_Neighbor the path struct for its child "afi-safi". -func (n *Bgp_Neighbor) AfiSafiAny() *Bgp_Neighbor_AfiSafiAny { - return &Bgp_Neighbor_AfiSafiAny{ +// AfiSafiAny returns from Bgp_NeighborPath the path struct for its child "afi-safi". +func (n *Bgp_NeighborPath) AfiSafiAny() *Bgp_Neighbor_AfiSafiPathAny { + return &Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -9510,9 +9505,9 @@ func (n *Bgp_Neighbor) AfiSafiAny() *Bgp_Neighbor_AfiSafiAny { } } -// AfiSafiAny returns from Bgp_NeighborAny the path struct for its child "afi-safi". -func (n *Bgp_NeighborAny) AfiSafiAny() *Bgp_Neighbor_AfiSafiAny { - return &Bgp_Neighbor_AfiSafiAny{ +// AfiSafiAny returns from Bgp_NeighborPathAny the path struct for its child "afi-safi". +func (n *Bgp_NeighborPathAny) AfiSafiAny() *Bgp_Neighbor_AfiSafiPathAny { + return &Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -9521,9 +9516,9 @@ func (n *Bgp_NeighborAny) AfiSafiAny() *Bgp_Neighbor_AfiSafiAny { } } -// AfiSafi returns from Bgp_Neighbor the path struct for its child "afi-safi". -func (n *Bgp_Neighbor) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Neighbor_AfiSafi { - return &Bgp_Neighbor_AfiSafi{ +// AfiSafi returns from Bgp_NeighborPath the path struct for its child "afi-safi". +func (n *Bgp_NeighborPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Neighbor_AfiSafiPath { + return &Bgp_Neighbor_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -9532,9 +9527,9 @@ func (n *Bgp_Neighbor) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE } } -// AfiSafi returns from Bgp_NeighborAny the path struct for its child "afi-safi". -func (n *Bgp_NeighborAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Neighbor_AfiSafiAny { - return &Bgp_Neighbor_AfiSafiAny{ +// AfiSafi returns from Bgp_NeighborPathAny the path struct for its child "afi-safi". +func (n *Bgp_NeighborPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Neighbor_AfiSafiPathAny { + return &Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -9543,9 +9538,9 @@ func (n *Bgp_NeighborAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_T } } -// ApplyPolicy returns from Bgp_Neighbor the path struct for its child "apply-policy". -func (n *Bgp_Neighbor) ApplyPolicy() *Bgp_Neighbor_ApplyPolicy { - return &Bgp_Neighbor_ApplyPolicy{ +// ApplyPolicy returns from Bgp_NeighborPath the path struct for its child "apply-policy". +func (n *Bgp_NeighborPath) ApplyPolicy() *Bgp_Neighbor_ApplyPolicyPath { + return &Bgp_Neighbor_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -9554,9 +9549,9 @@ func (n *Bgp_Neighbor) ApplyPolicy() *Bgp_Neighbor_ApplyPolicy { } } -// ApplyPolicy returns from Bgp_NeighborAny the path struct for its child "apply-policy". -func (n *Bgp_NeighborAny) ApplyPolicy() *Bgp_Neighbor_ApplyPolicyAny { - return &Bgp_Neighbor_ApplyPolicyAny{ +// ApplyPolicy returns from Bgp_NeighborPathAny the path struct for its child "apply-policy". +func (n *Bgp_NeighborPathAny) ApplyPolicy() *Bgp_Neighbor_ApplyPolicyPathAny { + return &Bgp_Neighbor_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -9565,9 +9560,9 @@ func (n *Bgp_NeighborAny) ApplyPolicy() *Bgp_Neighbor_ApplyPolicyAny { } } -// AsPathOptions returns from Bgp_Neighbor the path struct for its child "as-path-options". -func (n *Bgp_Neighbor) AsPathOptions() *Bgp_Neighbor_AsPathOptions { - return &Bgp_Neighbor_AsPathOptions{ +// AsPathOptions returns from Bgp_NeighborPath the path struct for its child "as-path-options". +func (n *Bgp_NeighborPath) AsPathOptions() *Bgp_Neighbor_AsPathOptionsPath { + return &Bgp_Neighbor_AsPathOptionsPath{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -9576,9 +9571,9 @@ func (n *Bgp_Neighbor) AsPathOptions() *Bgp_Neighbor_AsPathOptions { } } -// AsPathOptions returns from Bgp_NeighborAny the path struct for its child "as-path-options". -func (n *Bgp_NeighborAny) AsPathOptions() *Bgp_Neighbor_AsPathOptionsAny { - return &Bgp_Neighbor_AsPathOptionsAny{ +// AsPathOptions returns from Bgp_NeighborPathAny the path struct for its child "as-path-options". +func (n *Bgp_NeighborPathAny) AsPathOptions() *Bgp_Neighbor_AsPathOptionsPathAny { + return &Bgp_Neighbor_AsPathOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -9587,53 +9582,53 @@ func (n *Bgp_NeighborAny) AsPathOptions() *Bgp_Neighbor_AsPathOptionsAny { } } -// AuthPassword returns from Bgp_Neighbor the path struct for its child "auth-password". -func (n *Bgp_Neighbor) AuthPassword() *Bgp_Neighbor_AuthPassword { - return &Bgp_Neighbor_AuthPassword{ +// AuthPassword returns from Bgp_NeighborPath the path struct for its child "auth-password". +func (n *Bgp_NeighborPath) AuthPassword() *Bgp_Neighbor_AuthPasswordPath { + return &Bgp_Neighbor_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from Bgp_NeighborAny the path struct for its child "auth-password". -func (n *Bgp_NeighborAny) AuthPassword() *Bgp_Neighbor_AuthPasswordAny { - return &Bgp_Neighbor_AuthPasswordAny{ +// AuthPassword returns from Bgp_NeighborPathAny the path struct for its child "auth-password". +func (n *Bgp_NeighborPathAny) AuthPassword() *Bgp_Neighbor_AuthPasswordPathAny { + return &Bgp_Neighbor_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// Description returns from Bgp_Neighbor the path struct for its child "description". -func (n *Bgp_Neighbor) Description() *Bgp_Neighbor_Description { - return &Bgp_Neighbor_Description{ +// Description returns from Bgp_NeighborPath the path struct for its child "description". +func (n *Bgp_NeighborPath) Description() *Bgp_Neighbor_DescriptionPath { + return &Bgp_Neighbor_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Bgp_NeighborAny the path struct for its child "description". -func (n *Bgp_NeighborAny) Description() *Bgp_Neighbor_DescriptionAny { - return &Bgp_Neighbor_DescriptionAny{ +// Description returns from Bgp_NeighborPathAny the path struct for its child "description". +func (n *Bgp_NeighborPathAny) Description() *Bgp_Neighbor_DescriptionPathAny { + return &Bgp_Neighbor_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// DynamicallyConfigured returns from Bgp_Neighbor the path struct for its child "dynamically-configured". -func (n *Bgp_Neighbor) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfigured { - return &Bgp_Neighbor_DynamicallyConfigured{ +// DynamicallyConfigured returns from Bgp_NeighborPath the path struct for its child "dynamically-configured". +func (n *Bgp_NeighborPath) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfiguredPath { + return &Bgp_Neighbor_DynamicallyConfiguredPath{ NodePath: ygot.NewNodePath( []string{"state", "dynamically-configured"}, map[string]interface{}{}, @@ -9642,9 +9637,9 @@ func (n *Bgp_Neighbor) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfigur } } -// DynamicallyConfigured returns from Bgp_NeighborAny the path struct for its child "dynamically-configured". -func (n *Bgp_NeighborAny) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfiguredAny { - return &Bgp_Neighbor_DynamicallyConfiguredAny{ +// DynamicallyConfigured returns from Bgp_NeighborPathAny the path struct for its child "dynamically-configured". +func (n *Bgp_NeighborPathAny) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfiguredPathAny { + return &Bgp_Neighbor_DynamicallyConfiguredPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dynamically-configured"}, map[string]interface{}{}, @@ -9653,9 +9648,9 @@ func (n *Bgp_NeighborAny) DynamicallyConfigured() *Bgp_Neighbor_DynamicallyConfi } } -// EbgpMultihop returns from Bgp_Neighbor the path struct for its child "ebgp-multihop". -func (n *Bgp_Neighbor) EbgpMultihop() *Bgp_Neighbor_EbgpMultihop { - return &Bgp_Neighbor_EbgpMultihop{ +// EbgpMultihop returns from Bgp_NeighborPath the path struct for its child "ebgp-multihop". +func (n *Bgp_NeighborPath) EbgpMultihop() *Bgp_Neighbor_EbgpMultihopPath { + return &Bgp_Neighbor_EbgpMultihopPath{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -9664,9 +9659,9 @@ func (n *Bgp_Neighbor) EbgpMultihop() *Bgp_Neighbor_EbgpMultihop { } } -// EbgpMultihop returns from Bgp_NeighborAny the path struct for its child "ebgp-multihop". -func (n *Bgp_NeighborAny) EbgpMultihop() *Bgp_Neighbor_EbgpMultihopAny { - return &Bgp_Neighbor_EbgpMultihopAny{ +// EbgpMultihop returns from Bgp_NeighborPathAny the path struct for its child "ebgp-multihop". +func (n *Bgp_NeighborPathAny) EbgpMultihop() *Bgp_Neighbor_EbgpMultihopPathAny { + return &Bgp_Neighbor_EbgpMultihopPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -9675,31 +9670,31 @@ func (n *Bgp_NeighborAny) EbgpMultihop() *Bgp_Neighbor_EbgpMultihopAny { } } -// Enabled returns from Bgp_Neighbor the path struct for its child "enabled". -func (n *Bgp_Neighbor) Enabled() *Bgp_Neighbor_Enabled { - return &Bgp_Neighbor_Enabled{ +// Enabled returns from Bgp_NeighborPath the path struct for its child "enabled". +func (n *Bgp_NeighborPath) Enabled() *Bgp_Neighbor_EnabledPath { + return &Bgp_Neighbor_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_NeighborAny the path struct for its child "enabled". -func (n *Bgp_NeighborAny) Enabled() *Bgp_Neighbor_EnabledAny { - return &Bgp_Neighbor_EnabledAny{ +// Enabled returns from Bgp_NeighborPathAny the path struct for its child "enabled". +func (n *Bgp_NeighborPathAny) Enabled() *Bgp_Neighbor_EnabledPathAny { + return &Bgp_Neighbor_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// ErrorHandling returns from Bgp_Neighbor the path struct for its child "error-handling". -func (n *Bgp_Neighbor) ErrorHandling() *Bgp_Neighbor_ErrorHandling { - return &Bgp_Neighbor_ErrorHandling{ +// ErrorHandling returns from Bgp_NeighborPath the path struct for its child "error-handling". +func (n *Bgp_NeighborPath) ErrorHandling() *Bgp_Neighbor_ErrorHandlingPath { + return &Bgp_Neighbor_ErrorHandlingPath{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -9708,9 +9703,9 @@ func (n *Bgp_Neighbor) ErrorHandling() *Bgp_Neighbor_ErrorHandling { } } -// ErrorHandling returns from Bgp_NeighborAny the path struct for its child "error-handling". -func (n *Bgp_NeighborAny) ErrorHandling() *Bgp_Neighbor_ErrorHandlingAny { - return &Bgp_Neighbor_ErrorHandlingAny{ +// ErrorHandling returns from Bgp_NeighborPathAny the path struct for its child "error-handling". +func (n *Bgp_NeighborPathAny) ErrorHandling() *Bgp_Neighbor_ErrorHandlingPathAny { + return &Bgp_Neighbor_ErrorHandlingPathAny{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -9719,9 +9714,9 @@ func (n *Bgp_NeighborAny) ErrorHandling() *Bgp_Neighbor_ErrorHandlingAny { } } -// EstablishedTransitions returns from Bgp_Neighbor the path struct for its child "established-transitions". -func (n *Bgp_Neighbor) EstablishedTransitions() *Bgp_Neighbor_EstablishedTransitions { - return &Bgp_Neighbor_EstablishedTransitions{ +// EstablishedTransitions returns from Bgp_NeighborPath the path struct for its child "established-transitions". +func (n *Bgp_NeighborPath) EstablishedTransitions() *Bgp_Neighbor_EstablishedTransitionsPath { + return &Bgp_Neighbor_EstablishedTransitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "established-transitions"}, map[string]interface{}{}, @@ -9730,9 +9725,9 @@ func (n *Bgp_Neighbor) EstablishedTransitions() *Bgp_Neighbor_EstablishedTransit } } -// EstablishedTransitions returns from Bgp_NeighborAny the path struct for its child "established-transitions". -func (n *Bgp_NeighborAny) EstablishedTransitions() *Bgp_Neighbor_EstablishedTransitionsAny { - return &Bgp_Neighbor_EstablishedTransitionsAny{ +// EstablishedTransitions returns from Bgp_NeighborPathAny the path struct for its child "established-transitions". +func (n *Bgp_NeighborPathAny) EstablishedTransitions() *Bgp_Neighbor_EstablishedTransitionsPathAny { + return &Bgp_Neighbor_EstablishedTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "established-transitions"}, map[string]interface{}{}, @@ -9741,9 +9736,9 @@ func (n *Bgp_NeighborAny) EstablishedTransitions() *Bgp_Neighbor_EstablishedTran } } -// GracefulRestart returns from Bgp_Neighbor the path struct for its child "graceful-restart". -func (n *Bgp_Neighbor) GracefulRestart() *Bgp_Neighbor_GracefulRestart { - return &Bgp_Neighbor_GracefulRestart{ +// GracefulRestart returns from Bgp_NeighborPath the path struct for its child "graceful-restart". +func (n *Bgp_NeighborPath) GracefulRestart() *Bgp_Neighbor_GracefulRestartPath { + return &Bgp_Neighbor_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -9752,9 +9747,9 @@ func (n *Bgp_Neighbor) GracefulRestart() *Bgp_Neighbor_GracefulRestart { } } -// GracefulRestart returns from Bgp_NeighborAny the path struct for its child "graceful-restart". -func (n *Bgp_NeighborAny) GracefulRestart() *Bgp_Neighbor_GracefulRestartAny { - return &Bgp_Neighbor_GracefulRestartAny{ +// GracefulRestart returns from Bgp_NeighborPathAny the path struct for its child "graceful-restart". +func (n *Bgp_NeighborPathAny) GracefulRestart() *Bgp_Neighbor_GracefulRestartPathAny { + return &Bgp_Neighbor_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -9763,9 +9758,9 @@ func (n *Bgp_NeighborAny) GracefulRestart() *Bgp_Neighbor_GracefulRestartAny { } } -// LastEstablished returns from Bgp_Neighbor the path struct for its child "last-established". -func (n *Bgp_Neighbor) LastEstablished() *Bgp_Neighbor_LastEstablished { - return &Bgp_Neighbor_LastEstablished{ +// LastEstablished returns from Bgp_NeighborPath the path struct for its child "last-established". +func (n *Bgp_NeighborPath) LastEstablished() *Bgp_Neighbor_LastEstablishedPath { + return &Bgp_Neighbor_LastEstablishedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-established"}, map[string]interface{}{}, @@ -9774,9 +9769,9 @@ func (n *Bgp_Neighbor) LastEstablished() *Bgp_Neighbor_LastEstablished { } } -// LastEstablished returns from Bgp_NeighborAny the path struct for its child "last-established". -func (n *Bgp_NeighborAny) LastEstablished() *Bgp_Neighbor_LastEstablishedAny { - return &Bgp_Neighbor_LastEstablishedAny{ +// LastEstablished returns from Bgp_NeighborPathAny the path struct for its child "last-established". +func (n *Bgp_NeighborPathAny) LastEstablished() *Bgp_Neighbor_LastEstablishedPathAny { + return &Bgp_Neighbor_LastEstablishedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-established"}, map[string]interface{}{}, @@ -9785,31 +9780,31 @@ func (n *Bgp_NeighborAny) LastEstablished() *Bgp_Neighbor_LastEstablishedAny { } } -// LocalAs returns from Bgp_Neighbor the path struct for its child "local-as". -func (n *Bgp_Neighbor) LocalAs() *Bgp_Neighbor_LocalAs { - return &Bgp_Neighbor_LocalAs{ +// LocalAs returns from Bgp_NeighborPath the path struct for its child "local-as". +func (n *Bgp_NeighborPath) LocalAs() *Bgp_Neighbor_LocalAsPath { + return &Bgp_Neighbor_LocalAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LocalAs returns from Bgp_NeighborAny the path struct for its child "local-as". -func (n *Bgp_NeighborAny) LocalAs() *Bgp_Neighbor_LocalAsAny { - return &Bgp_Neighbor_LocalAsAny{ +// LocalAs returns from Bgp_NeighborPathAny the path struct for its child "local-as". +func (n *Bgp_NeighborPathAny) LocalAs() *Bgp_Neighbor_LocalAsPathAny { + return &Bgp_Neighbor_LocalAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LoggingOptions returns from Bgp_Neighbor the path struct for its child "logging-options". -func (n *Bgp_Neighbor) LoggingOptions() *Bgp_Neighbor_LoggingOptions { - return &Bgp_Neighbor_LoggingOptions{ +// LoggingOptions returns from Bgp_NeighborPath the path struct for its child "logging-options". +func (n *Bgp_NeighborPath) LoggingOptions() *Bgp_Neighbor_LoggingOptionsPath { + return &Bgp_Neighbor_LoggingOptionsPath{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -9818,9 +9813,9 @@ func (n *Bgp_Neighbor) LoggingOptions() *Bgp_Neighbor_LoggingOptions { } } -// LoggingOptions returns from Bgp_NeighborAny the path struct for its child "logging-options". -func (n *Bgp_NeighborAny) LoggingOptions() *Bgp_Neighbor_LoggingOptionsAny { - return &Bgp_Neighbor_LoggingOptionsAny{ +// LoggingOptions returns from Bgp_NeighborPathAny the path struct for its child "logging-options". +func (n *Bgp_NeighborPathAny) LoggingOptions() *Bgp_Neighbor_LoggingOptionsPathAny { + return &Bgp_Neighbor_LoggingOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -9829,9 +9824,9 @@ func (n *Bgp_NeighborAny) LoggingOptions() *Bgp_Neighbor_LoggingOptionsAny { } } -// Messages returns from Bgp_Neighbor the path struct for its child "messages". -func (n *Bgp_Neighbor) Messages() *Bgp_Neighbor_Messages { - return &Bgp_Neighbor_Messages{ +// Messages returns from Bgp_NeighborPath the path struct for its child "messages". +func (n *Bgp_NeighborPath) Messages() *Bgp_Neighbor_MessagesPath { + return &Bgp_Neighbor_MessagesPath{ NodePath: ygot.NewNodePath( []string{"state", "messages"}, map[string]interface{}{}, @@ -9840,9 +9835,9 @@ func (n *Bgp_Neighbor) Messages() *Bgp_Neighbor_Messages { } } -// Messages returns from Bgp_NeighborAny the path struct for its child "messages". -func (n *Bgp_NeighborAny) Messages() *Bgp_Neighbor_MessagesAny { - return &Bgp_Neighbor_MessagesAny{ +// Messages returns from Bgp_NeighborPathAny the path struct for its child "messages". +func (n *Bgp_NeighborPathAny) Messages() *Bgp_Neighbor_MessagesPathAny { + return &Bgp_Neighbor_MessagesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "messages"}, map[string]interface{}{}, @@ -9851,97 +9846,97 @@ func (n *Bgp_NeighborAny) Messages() *Bgp_Neighbor_MessagesAny { } } -// NeighborAddress returns from Bgp_Neighbor the path struct for its child "neighbor-address". -func (n *Bgp_Neighbor) NeighborAddress() *Bgp_Neighbor_NeighborAddress { - return &Bgp_Neighbor_NeighborAddress{ +// NeighborAddress returns from Bgp_NeighborPath the path struct for its child "neighbor-address". +func (n *Bgp_NeighborPath) NeighborAddress() *Bgp_Neighbor_NeighborAddressPath { + return &Bgp_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-address"}, + []string{"config", "neighbor-address"}, map[string]interface{}{}, n, ), } } -// NeighborAddress returns from Bgp_NeighborAny the path struct for its child "neighbor-address". -func (n *Bgp_NeighborAny) NeighborAddress() *Bgp_Neighbor_NeighborAddressAny { - return &Bgp_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from Bgp_NeighborPathAny the path struct for its child "neighbor-address". +func (n *Bgp_NeighborPathAny) NeighborAddress() *Bgp_Neighbor_NeighborAddressPathAny { + return &Bgp_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-address"}, + []string{"config", "neighbor-address"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from Bgp_Neighbor the path struct for its child "peer-as". -func (n *Bgp_Neighbor) PeerAs() *Bgp_Neighbor_PeerAs { - return &Bgp_Neighbor_PeerAs{ +// PeerAs returns from Bgp_NeighborPath the path struct for its child "peer-as". +func (n *Bgp_NeighborPath) PeerAs() *Bgp_Neighbor_PeerAsPath { + return &Bgp_Neighbor_PeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from Bgp_NeighborAny the path struct for its child "peer-as". -func (n *Bgp_NeighborAny) PeerAs() *Bgp_Neighbor_PeerAsAny { - return &Bgp_Neighbor_PeerAsAny{ +// PeerAs returns from Bgp_NeighborPathAny the path struct for its child "peer-as". +func (n *Bgp_NeighborPathAny) PeerAs() *Bgp_Neighbor_PeerAsPathAny { + return &Bgp_Neighbor_PeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from Bgp_Neighbor the path struct for its child "peer-group". -func (n *Bgp_Neighbor) PeerGroup() *Bgp_Neighbor_PeerGroup { - return &Bgp_Neighbor_PeerGroup{ +// PeerGroup returns from Bgp_NeighborPath the path struct for its child "peer-group". +func (n *Bgp_NeighborPath) PeerGroup() *Bgp_Neighbor_PeerGroupPath { + return &Bgp_Neighbor_PeerGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from Bgp_NeighborAny the path struct for its child "peer-group". -func (n *Bgp_NeighborAny) PeerGroup() *Bgp_Neighbor_PeerGroupAny { - return &Bgp_Neighbor_PeerGroupAny{ +// PeerGroup returns from Bgp_NeighborPathAny the path struct for its child "peer-group". +func (n *Bgp_NeighborPathAny) PeerGroup() *Bgp_Neighbor_PeerGroupPathAny { + return &Bgp_Neighbor_PeerGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerType returns from Bgp_Neighbor the path struct for its child "peer-type". -func (n *Bgp_Neighbor) PeerType() *Bgp_Neighbor_PeerType { - return &Bgp_Neighbor_PeerType{ +// PeerType returns from Bgp_NeighborPath the path struct for its child "peer-type". +func (n *Bgp_NeighborPath) PeerType() *Bgp_Neighbor_PeerTypePath { + return &Bgp_Neighbor_PeerTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// PeerType returns from Bgp_NeighborAny the path struct for its child "peer-type". -func (n *Bgp_NeighborAny) PeerType() *Bgp_Neighbor_PeerTypeAny { - return &Bgp_Neighbor_PeerTypeAny{ +// PeerType returns from Bgp_NeighborPathAny the path struct for its child "peer-type". +func (n *Bgp_NeighborPathAny) PeerType() *Bgp_Neighbor_PeerTypePathAny { + return &Bgp_Neighbor_PeerTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// Queues returns from Bgp_Neighbor the path struct for its child "queues". -func (n *Bgp_Neighbor) Queues() *Bgp_Neighbor_Queues { - return &Bgp_Neighbor_Queues{ +// Queues returns from Bgp_NeighborPath the path struct for its child "queues". +func (n *Bgp_NeighborPath) Queues() *Bgp_Neighbor_QueuesPath { + return &Bgp_Neighbor_QueuesPath{ NodePath: ygot.NewNodePath( []string{"state", "queues"}, map[string]interface{}{}, @@ -9950,9 +9945,9 @@ func (n *Bgp_Neighbor) Queues() *Bgp_Neighbor_Queues { } } -// Queues returns from Bgp_NeighborAny the path struct for its child "queues". -func (n *Bgp_NeighborAny) Queues() *Bgp_Neighbor_QueuesAny { - return &Bgp_Neighbor_QueuesAny{ +// Queues returns from Bgp_NeighborPathAny the path struct for its child "queues". +func (n *Bgp_NeighborPathAny) Queues() *Bgp_Neighbor_QueuesPathAny { + return &Bgp_Neighbor_QueuesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "queues"}, map[string]interface{}{}, @@ -9961,53 +9956,53 @@ func (n *Bgp_NeighborAny) Queues() *Bgp_Neighbor_QueuesAny { } } -// RemovePrivateAs returns from Bgp_Neighbor the path struct for its child "remove-private-as". -func (n *Bgp_Neighbor) RemovePrivateAs() *Bgp_Neighbor_RemovePrivateAs { - return &Bgp_Neighbor_RemovePrivateAs{ +// RemovePrivateAs returns from Bgp_NeighborPath the path struct for its child "remove-private-as". +func (n *Bgp_NeighborPath) RemovePrivateAs() *Bgp_Neighbor_RemovePrivateAsPath { + return &Bgp_Neighbor_RemovePrivateAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from Bgp_NeighborAny the path struct for its child "remove-private-as". -func (n *Bgp_NeighborAny) RemovePrivateAs() *Bgp_Neighbor_RemovePrivateAsAny { - return &Bgp_Neighbor_RemovePrivateAsAny{ +// RemovePrivateAs returns from Bgp_NeighborPathAny the path struct for its child "remove-private-as". +func (n *Bgp_NeighborPathAny) RemovePrivateAs() *Bgp_Neighbor_RemovePrivateAsPathAny { + return &Bgp_Neighbor_RemovePrivateAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from Bgp_Neighbor the path struct for its child "route-flap-damping". -func (n *Bgp_Neighbor) RouteFlapDamping() *Bgp_Neighbor_RouteFlapDamping { - return &Bgp_Neighbor_RouteFlapDamping{ +// RouteFlapDamping returns from Bgp_NeighborPath the path struct for its child "route-flap-damping". +func (n *Bgp_NeighborPath) RouteFlapDamping() *Bgp_Neighbor_RouteFlapDampingPath { + return &Bgp_Neighbor_RouteFlapDampingPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from Bgp_NeighborAny the path struct for its child "route-flap-damping". -func (n *Bgp_NeighborAny) RouteFlapDamping() *Bgp_Neighbor_RouteFlapDampingAny { - return &Bgp_Neighbor_RouteFlapDampingAny{ +// RouteFlapDamping returns from Bgp_NeighborPathAny the path struct for its child "route-flap-damping". +func (n *Bgp_NeighborPathAny) RouteFlapDamping() *Bgp_Neighbor_RouteFlapDampingPathAny { + return &Bgp_Neighbor_RouteFlapDampingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteReflector returns from Bgp_Neighbor the path struct for its child "route-reflector". -func (n *Bgp_Neighbor) RouteReflector() *Bgp_Neighbor_RouteReflector { - return &Bgp_Neighbor_RouteReflector{ +// RouteReflector returns from Bgp_NeighborPath the path struct for its child "route-reflector". +func (n *Bgp_NeighborPath) RouteReflector() *Bgp_Neighbor_RouteReflectorPath { + return &Bgp_Neighbor_RouteReflectorPath{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -10016,9 +10011,9 @@ func (n *Bgp_Neighbor) RouteReflector() *Bgp_Neighbor_RouteReflector { } } -// RouteReflector returns from Bgp_NeighborAny the path struct for its child "route-reflector". -func (n *Bgp_NeighborAny) RouteReflector() *Bgp_Neighbor_RouteReflectorAny { - return &Bgp_Neighbor_RouteReflectorAny{ +// RouteReflector returns from Bgp_NeighborPathAny the path struct for its child "route-reflector". +func (n *Bgp_NeighborPathAny) RouteReflector() *Bgp_Neighbor_RouteReflectorPathAny { + return &Bgp_Neighbor_RouteReflectorPathAny{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -10027,31 +10022,31 @@ func (n *Bgp_NeighborAny) RouteReflector() *Bgp_Neighbor_RouteReflectorAny { } } -// SendCommunity returns from Bgp_Neighbor the path struct for its child "send-community". -func (n *Bgp_Neighbor) SendCommunity() *Bgp_Neighbor_SendCommunity { - return &Bgp_Neighbor_SendCommunity{ +// SendCommunity returns from Bgp_NeighborPath the path struct for its child "send-community". +func (n *Bgp_NeighborPath) SendCommunity() *Bgp_Neighbor_SendCommunityPath { + return &Bgp_Neighbor_SendCommunityPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SendCommunity returns from Bgp_NeighborAny the path struct for its child "send-community". -func (n *Bgp_NeighborAny) SendCommunity() *Bgp_Neighbor_SendCommunityAny { - return &Bgp_Neighbor_SendCommunityAny{ +// SendCommunity returns from Bgp_NeighborPathAny the path struct for its child "send-community". +func (n *Bgp_NeighborPathAny) SendCommunity() *Bgp_Neighbor_SendCommunityPathAny { + return &Bgp_Neighbor_SendCommunityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SessionState returns from Bgp_Neighbor the path struct for its child "session-state". -func (n *Bgp_Neighbor) SessionState() *Bgp_Neighbor_SessionState { - return &Bgp_Neighbor_SessionState{ +// SessionState returns from Bgp_NeighborPath the path struct for its child "session-state". +func (n *Bgp_NeighborPath) SessionState() *Bgp_Neighbor_SessionStatePath { + return &Bgp_Neighbor_SessionStatePath{ NodePath: ygot.NewNodePath( []string{"state", "session-state"}, map[string]interface{}{}, @@ -10060,9 +10055,9 @@ func (n *Bgp_Neighbor) SessionState() *Bgp_Neighbor_SessionState { } } -// SessionState returns from Bgp_NeighborAny the path struct for its child "session-state". -func (n *Bgp_NeighborAny) SessionState() *Bgp_Neighbor_SessionStateAny { - return &Bgp_Neighbor_SessionStateAny{ +// SessionState returns from Bgp_NeighborPathAny the path struct for its child "session-state". +func (n *Bgp_NeighborPathAny) SessionState() *Bgp_Neighbor_SessionStatePathAny { + return &Bgp_Neighbor_SessionStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "session-state"}, map[string]interface{}{}, @@ -10071,9 +10066,9 @@ func (n *Bgp_NeighborAny) SessionState() *Bgp_Neighbor_SessionStateAny { } } -// SupportedCapabilities returns from Bgp_Neighbor the path struct for its child "supported-capabilities". -func (n *Bgp_Neighbor) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabilities { - return &Bgp_Neighbor_SupportedCapabilities{ +// SupportedCapabilities returns from Bgp_NeighborPath the path struct for its child "supported-capabilities". +func (n *Bgp_NeighborPath) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabilitiesPath { + return &Bgp_Neighbor_SupportedCapabilitiesPath{ NodePath: ygot.NewNodePath( []string{"state", "supported-capabilities"}, map[string]interface{}{}, @@ -10082,9 +10077,9 @@ func (n *Bgp_Neighbor) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabiliti } } -// SupportedCapabilities returns from Bgp_NeighborAny the path struct for its child "supported-capabilities". -func (n *Bgp_NeighborAny) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabilitiesAny { - return &Bgp_Neighbor_SupportedCapabilitiesAny{ +// SupportedCapabilities returns from Bgp_NeighborPathAny the path struct for its child "supported-capabilities". +func (n *Bgp_NeighborPathAny) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabilitiesPathAny { + return &Bgp_Neighbor_SupportedCapabilitiesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "supported-capabilities"}, map[string]interface{}{}, @@ -10093,9 +10088,9 @@ func (n *Bgp_NeighborAny) SupportedCapabilities() *Bgp_Neighbor_SupportedCapabil } } -// Timers returns from Bgp_Neighbor the path struct for its child "timers". -func (n *Bgp_Neighbor) Timers() *Bgp_Neighbor_Timers { - return &Bgp_Neighbor_Timers{ +// Timers returns from Bgp_NeighborPath the path struct for its child "timers". +func (n *Bgp_NeighborPath) Timers() *Bgp_Neighbor_TimersPath { + return &Bgp_Neighbor_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -10104,9 +10099,9 @@ func (n *Bgp_Neighbor) Timers() *Bgp_Neighbor_Timers { } } -// Timers returns from Bgp_NeighborAny the path struct for its child "timers". -func (n *Bgp_NeighborAny) Timers() *Bgp_Neighbor_TimersAny { - return &Bgp_Neighbor_TimersAny{ +// Timers returns from Bgp_NeighborPathAny the path struct for its child "timers". +func (n *Bgp_NeighborPathAny) Timers() *Bgp_Neighbor_TimersPathAny { + return &Bgp_Neighbor_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -10115,9 +10110,9 @@ func (n *Bgp_NeighborAny) Timers() *Bgp_Neighbor_TimersAny { } } -// Transport returns from Bgp_Neighbor the path struct for its child "transport". -func (n *Bgp_Neighbor) Transport() *Bgp_Neighbor_Transport { - return &Bgp_Neighbor_Transport{ +// Transport returns from Bgp_NeighborPath the path struct for its child "transport". +func (n *Bgp_NeighborPath) Transport() *Bgp_Neighbor_TransportPath { + return &Bgp_Neighbor_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -10126,9 +10121,9 @@ func (n *Bgp_Neighbor) Transport() *Bgp_Neighbor_Transport { } } -// Transport returns from Bgp_NeighborAny the path struct for its child "transport". -func (n *Bgp_NeighborAny) Transport() *Bgp_Neighbor_TransportAny { - return &Bgp_Neighbor_TransportAny{ +// Transport returns from Bgp_NeighborPathAny the path struct for its child "transport". +func (n *Bgp_NeighborPathAny) Transport() *Bgp_Neighbor_TransportPathAny { + return &Bgp_Neighbor_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -10137,9 +10132,9 @@ func (n *Bgp_NeighborAny) Transport() *Bgp_Neighbor_TransportAny { } } -// UseMultiplePaths returns from Bgp_Neighbor the path struct for its child "use-multiple-paths". -func (n *Bgp_Neighbor) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePaths { - return &Bgp_Neighbor_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_NeighborPath the path struct for its child "use-multiple-paths". +func (n *Bgp_NeighborPath) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePathsPath { + return &Bgp_Neighbor_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -10148,9 +10143,9 @@ func (n *Bgp_Neighbor) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePaths { } } -// UseMultiplePaths returns from Bgp_NeighborAny the path struct for its child "use-multiple-paths". -func (n *Bgp_NeighborAny) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePathsAny { - return &Bgp_Neighbor_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_NeighborPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_NeighborPathAny) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePathsPathAny { + return &Bgp_Neighbor_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -10159,49 +10154,49 @@ func (n *Bgp_NeighborAny) UseMultiplePaths() *Bgp_Neighbor_UseMultiplePathsAny { } } -// Bgp_Neighbor_AfiSafi represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. -type Bgp_Neighbor_AfiSafi struct { +// Bgp_Neighbor_AfiSafiPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. +type Bgp_Neighbor_AfiSafiPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafiAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. -type Bgp_Neighbor_AfiSafiAny struct { +// Bgp_Neighbor_AfiSafiPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. +type Bgp_Neighbor_AfiSafiPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Active represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. -type Bgp_Neighbor_AfiSafi_Active struct { +// Bgp_Neighbor_AfiSafi_ActivePath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. +type Bgp_Neighbor_AfiSafi_ActivePath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ActiveAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. -type Bgp_Neighbor_AfiSafi_ActiveAny struct { +// Bgp_Neighbor_AfiSafi_ActivePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. +type Bgp_Neighbor_AfiSafi_ActivePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AfiSafiName represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Neighbor_AfiSafi_AfiSafiName struct { +// Bgp_Neighbor_AfiSafi_AfiSafiNamePath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_Neighbor_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Neighbor_AfiSafi_AfiSafiNameAny struct { +// Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_Enabled struct { +// Bgp_Neighbor_AfiSafi_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_EnabledAny struct { +// Bgp_Neighbor_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// Active returns from Bgp_Neighbor_AfiSafi the path struct for its child "active". -func (n *Bgp_Neighbor_AfiSafi) Active() *Bgp_Neighbor_AfiSafi_Active { - return &Bgp_Neighbor_AfiSafi_Active{ +// Active returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "active". +func (n *Bgp_Neighbor_AfiSafiPath) Active() *Bgp_Neighbor_AfiSafi_ActivePath { + return &Bgp_Neighbor_AfiSafi_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -10210,9 +10205,9 @@ func (n *Bgp_Neighbor_AfiSafi) Active() *Bgp_Neighbor_AfiSafi_Active { } } -// Active returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "active". -func (n *Bgp_Neighbor_AfiSafiAny) Active() *Bgp_Neighbor_AfiSafi_ActiveAny { - return &Bgp_Neighbor_AfiSafi_ActiveAny{ +// Active returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "active". +func (n *Bgp_Neighbor_AfiSafiPathAny) Active() *Bgp_Neighbor_AfiSafi_ActivePathAny { + return &Bgp_Neighbor_AfiSafi_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -10221,9 +10216,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Active() *Bgp_Neighbor_AfiSafi_ActiveAny { } } -// AddPaths returns from Bgp_Neighbor_AfiSafi the path struct for its child "add-paths". -func (n *Bgp_Neighbor_AfiSafi) AddPaths() *Bgp_Neighbor_AfiSafi_AddPaths { - return &Bgp_Neighbor_AfiSafi_AddPaths{ +// AddPaths returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "add-paths". +func (n *Bgp_Neighbor_AfiSafiPath) AddPaths() *Bgp_Neighbor_AfiSafi_AddPathsPath { + return &Bgp_Neighbor_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -10232,9 +10227,9 @@ func (n *Bgp_Neighbor_AfiSafi) AddPaths() *Bgp_Neighbor_AfiSafi_AddPaths { } } -// AddPaths returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "add-paths". -func (n *Bgp_Neighbor_AfiSafiAny) AddPaths() *Bgp_Neighbor_AfiSafi_AddPathsAny { - return &Bgp_Neighbor_AfiSafi_AddPathsAny{ +// AddPaths returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "add-paths". +func (n *Bgp_Neighbor_AfiSafiPathAny) AddPaths() *Bgp_Neighbor_AfiSafi_AddPathsPathAny { + return &Bgp_Neighbor_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -10243,31 +10238,31 @@ func (n *Bgp_Neighbor_AfiSafiAny) AddPaths() *Bgp_Neighbor_AfiSafi_AddPathsAny { } } -// AfiSafiName returns from Bgp_Neighbor_AfiSafi the path struct for its child "afi-safi-name". -func (n *Bgp_Neighbor_AfiSafi) AfiSafiName() *Bgp_Neighbor_AfiSafi_AfiSafiName { - return &Bgp_Neighbor_AfiSafi_AfiSafiName{ +// AfiSafiName returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *Bgp_Neighbor_AfiSafiPath) AfiSafiName() *Bgp_Neighbor_AfiSafi_AfiSafiNamePath { + return &Bgp_Neighbor_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *Bgp_Neighbor_AfiSafiAny) AfiSafiName() *Bgp_Neighbor_AfiSafi_AfiSafiNameAny { - return &Bgp_Neighbor_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *Bgp_Neighbor_AfiSafiPathAny) AfiSafiName() *Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny { + return &Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// ApplyPolicy returns from Bgp_Neighbor_AfiSafi the path struct for its child "apply-policy". -func (n *Bgp_Neighbor_AfiSafi) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy{ +// ApplyPolicy returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "apply-policy". +func (n *Bgp_Neighbor_AfiSafiPath) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicyPath { + return &Bgp_Neighbor_AfiSafi_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -10276,9 +10271,9 @@ func (n *Bgp_Neighbor_AfiSafi) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy { } } -// ApplyPolicy returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "apply-policy". -func (n *Bgp_Neighbor_AfiSafiAny) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicyAny { - return &Bgp_Neighbor_AfiSafi_ApplyPolicyAny{ +// ApplyPolicy returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "apply-policy". +func (n *Bgp_Neighbor_AfiSafiPathAny) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -10287,31 +10282,31 @@ func (n *Bgp_Neighbor_AfiSafiAny) ApplyPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolic } } -// Enabled returns from Bgp_Neighbor_AfiSafi the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafi) Enabled() *Bgp_Neighbor_AfiSafi_Enabled { - return &Bgp_Neighbor_AfiSafi_Enabled{ +// Enabled returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafiPath) Enabled() *Bgp_Neighbor_AfiSafi_EnabledPath { + return &Bgp_Neighbor_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafiAny) Enabled() *Bgp_Neighbor_AfiSafi_EnabledAny { - return &Bgp_Neighbor_AfiSafi_EnabledAny{ +// Enabled returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafiPathAny) Enabled() *Bgp_Neighbor_AfiSafi_EnabledPathAny { + return &Bgp_Neighbor_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from Bgp_Neighbor_AfiSafi the path struct for its child "graceful-restart". -func (n *Bgp_Neighbor_AfiSafi) GracefulRestart() *Bgp_Neighbor_AfiSafi_GracefulRestart { - return &Bgp_Neighbor_AfiSafi_GracefulRestart{ +// GracefulRestart returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "graceful-restart". +func (n *Bgp_Neighbor_AfiSafiPath) GracefulRestart() *Bgp_Neighbor_AfiSafi_GracefulRestartPath { + return &Bgp_Neighbor_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -10320,9 +10315,9 @@ func (n *Bgp_Neighbor_AfiSafi) GracefulRestart() *Bgp_Neighbor_AfiSafi_GracefulR } } -// GracefulRestart returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "graceful-restart". -func (n *Bgp_Neighbor_AfiSafiAny) GracefulRestart() *Bgp_Neighbor_AfiSafi_GracefulRestartAny { - return &Bgp_Neighbor_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *Bgp_Neighbor_AfiSafiPathAny) GracefulRestart() *Bgp_Neighbor_AfiSafi_GracefulRestartPathAny { + return &Bgp_Neighbor_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -10331,9 +10326,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) GracefulRestart() *Bgp_Neighbor_AfiSafi_Gracef } } -// Ipv4LabeledUnicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_Neighbor_AfiSafi) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -10342,9 +10337,9 @@ func (n *Bgp_Neighbor_AfiSafi) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv4La } } -// Ipv4LabeledUnicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -10353,9 +10348,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv } } -// Ipv4Unicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "ipv4-unicast". -func (n *Bgp_Neighbor_AfiSafi) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4Unicast { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4UnicastPath { + return &Bgp_Neighbor_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -10364,9 +10359,9 @@ func (n *Bgp_Neighbor_AfiSafi) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4Unicast { } } -// Ipv4Unicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4UnicastAny { - return &Bgp_Neighbor_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -10375,9 +10370,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Ipv4Unicast() *Bgp_Neighbor_AfiSafi_Ipv4Unicas } } -// Ipv6LabeledUnicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_Neighbor_AfiSafi) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -10386,9 +10381,9 @@ func (n *Bgp_Neighbor_AfiSafi) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv6La } } -// Ipv6LabeledUnicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -10397,9 +10392,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_Neighbor_AfiSafi_Ipv } } -// Ipv6Unicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "ipv6-unicast". -func (n *Bgp_Neighbor_AfiSafi) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6Unicast { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6UnicastPath { + return &Bgp_Neighbor_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -10408,9 +10403,9 @@ func (n *Bgp_Neighbor_AfiSafi) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6Unicast { } } -// Ipv6Unicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6UnicastAny { - return &Bgp_Neighbor_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -10419,9 +10414,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Ipv6Unicast() *Bgp_Neighbor_AfiSafi_Ipv6Unicas } } -// L2VpnEvpn returns from Bgp_Neighbor_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *Bgp_Neighbor_AfiSafi) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpn { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *Bgp_Neighbor_AfiSafiPath) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpnPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -10430,9 +10425,9 @@ func (n *Bgp_Neighbor_AfiSafi) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpn { } } -// L2VpnEvpn returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *Bgp_Neighbor_AfiSafiAny) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpnAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *Bgp_Neighbor_AfiSafiPathAny) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -10441,9 +10436,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L2VpnEvpn() *Bgp_Neighbor_AfiSafi_L2VpnEvpnAny } } -// L2VpnVpls returns from Bgp_Neighbor_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *Bgp_Neighbor_AfiSafi) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVpls { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *Bgp_Neighbor_AfiSafiPath) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVplsPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -10452,9 +10447,9 @@ func (n *Bgp_Neighbor_AfiSafi) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVpls { } } -// L2VpnVpls returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *Bgp_Neighbor_AfiSafiAny) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVplsAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *Bgp_Neighbor_AfiSafiPathAny) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -10463,9 +10458,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L2VpnVpls() *Bgp_Neighbor_AfiSafi_L2VpnVplsAny } } -// L3VpnIpv4Multicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_Neighbor_AfiSafiPath) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -10474,9 +10469,9 @@ func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3VpnI } } -// L3VpnIpv4Multicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -10485,9 +10480,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_Neighbor_AfiSafi_L3V } } -// L3VpnIpv4Unicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -10496,9 +10491,9 @@ func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv } } -// L3VpnIpv4Unicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -10507,9 +10502,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_Neighbor_AfiSafi_L3Vpn } } -// L3VpnIpv6Multicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_Neighbor_AfiSafiPath) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -10518,9 +10513,9 @@ func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3VpnI } } -// L3VpnIpv6Multicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -10529,9 +10524,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_Neighbor_AfiSafi_L3V } } -// L3VpnIpv6Unicast returns from Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_Neighbor_AfiSafiPath) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -10540,9 +10535,9 @@ func (n *Bgp_Neighbor_AfiSafi) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv } } -// L3VpnIpv6Unicast returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -10551,9 +10546,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_Neighbor_AfiSafi_L3Vpn } } -// Prefixes returns from Bgp_Neighbor_AfiSafi the path struct for its child "prefixes". -func (n *Bgp_Neighbor_AfiSafi) Prefixes() *Bgp_Neighbor_AfiSafi_Prefixes { - return &Bgp_Neighbor_AfiSafi_Prefixes{ +// Prefixes returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "prefixes". +func (n *Bgp_Neighbor_AfiSafiPath) Prefixes() *Bgp_Neighbor_AfiSafi_PrefixesPath { + return &Bgp_Neighbor_AfiSafi_PrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "prefixes"}, map[string]interface{}{}, @@ -10562,9 +10557,9 @@ func (n *Bgp_Neighbor_AfiSafi) Prefixes() *Bgp_Neighbor_AfiSafi_Prefixes { } } -// Prefixes returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "prefixes". -func (n *Bgp_Neighbor_AfiSafiAny) Prefixes() *Bgp_Neighbor_AfiSafi_PrefixesAny { - return &Bgp_Neighbor_AfiSafi_PrefixesAny{ +// Prefixes returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "prefixes". +func (n *Bgp_Neighbor_AfiSafiPathAny) Prefixes() *Bgp_Neighbor_AfiSafi_PrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_PrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefixes"}, map[string]interface{}{}, @@ -10573,9 +10568,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) Prefixes() *Bgp_Neighbor_AfiSafi_PrefixesAny { } } -// SrtePolicyIpv4 returns from Bgp_Neighbor_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *Bgp_Neighbor_AfiSafi) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *Bgp_Neighbor_AfiSafiPath) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -10584,9 +10579,9 @@ func (n *Bgp_Neighbor_AfiSafi) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePolicy } } -// SrtePolicyIpv4 returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *Bgp_Neighbor_AfiSafiPathAny) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -10595,9 +10590,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv4() *Bgp_Neighbor_AfiSafi_SrtePol } } -// SrtePolicyIpv6 returns from Bgp_Neighbor_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *Bgp_Neighbor_AfiSafi) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *Bgp_Neighbor_AfiSafiPath) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -10606,9 +10601,9 @@ func (n *Bgp_Neighbor_AfiSafi) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePolicy } } -// SrtePolicyIpv6 returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *Bgp_Neighbor_AfiSafiPathAny) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -10617,9 +10612,9 @@ func (n *Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv6() *Bgp_Neighbor_AfiSafi_SrtePol } } -// UseMultiplePaths returns from Bgp_Neighbor_AfiSafi the path struct for its child "use-multiple-paths". -func (n *Bgp_Neighbor_AfiSafi) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMultiplePaths { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_Neighbor_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *Bgp_Neighbor_AfiSafiPath) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMultiplePathsPath { + return &Bgp_Neighbor_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -10628,9 +10623,9 @@ func (n *Bgp_Neighbor_AfiSafi) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMulti } } -// UseMultiplePaths returns from Bgp_Neighbor_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *Bgp_Neighbor_AfiSafiAny) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMultiplePathsAny { - return &Bgp_Neighbor_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_Neighbor_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_Neighbor_AfiSafiPathAny) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny { + return &Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -10639,325 +10634,325 @@ func (n *Bgp_Neighbor_AfiSafiAny) UseMultiplePaths() *Bgp_Neighbor_AfiSafi_UseMu } } -// Bgp_Neighbor_AfiSafi_AddPaths represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths struct { +// Bgp_Neighbor_AfiSafi_AddPathsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPathsAny struct { +// Bgp_Neighbor_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_Receive represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_Receive struct { +// Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny struct { +// Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_Send represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_Send struct { +// Bgp_Neighbor_AfiSafi_AddPaths_SendPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_SendAny struct { +// Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_SendMax represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_SendMax struct { +// Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny struct { +// Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *Bgp_Neighbor_AfiSafi_AddPaths) EligiblePrefixPolicy() *Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *Bgp_Neighbor_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "receive". -func (n *Bgp_Neighbor_AfiSafi_AddPaths) Receive() *Bgp_Neighbor_AfiSafi_AddPaths_Receive { - return &Bgp_Neighbor_AfiSafi_AddPaths_Receive{ +// Receive returns from Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPath) Receive() *Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath { + return &Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *Bgp_Neighbor_AfiSafi_AddPathsAny) Receive() *Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny { - return &Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPathAny) Receive() *Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny { + return &Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "send". -func (n *Bgp_Neighbor_AfiSafi_AddPaths) Send() *Bgp_Neighbor_AfiSafi_AddPaths_Send { - return &Bgp_Neighbor_AfiSafi_AddPaths_Send{ +// Send returns from Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPath) Send() *Bgp_Neighbor_AfiSafi_AddPaths_SendPath { + return &Bgp_Neighbor_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *Bgp_Neighbor_AfiSafi_AddPathsAny) Send() *Bgp_Neighbor_AfiSafi_AddPaths_SendAny { - return &Bgp_Neighbor_AfiSafi_AddPaths_SendAny{ +// Send returns from Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPathAny) Send() *Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny { + return &Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *Bgp_Neighbor_AfiSafi_AddPaths) SendMax() *Bgp_Neighbor_AfiSafi_AddPaths_SendMax { - return &Bgp_Neighbor_AfiSafi_AddPaths_SendMax{ +// SendMax returns from Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPath) SendMax() *Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath { + return &Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *Bgp_Neighbor_AfiSafi_AddPathsAny) SendMax() *Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny { - return &Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *Bgp_Neighbor_AfiSafi_AddPathsPathAny) SendMax() *Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny { + return &Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_ApplyPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicyAny struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny struct { +// Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "default-export-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicy) DefaultExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPath) DefaultExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyAny) DefaultExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) DefaultExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "default-import-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicy) DefaultImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPath) DefaultImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyAny) DefaultImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) DefaultImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "export-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicy) ExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "export-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPath) ExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "export-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyAny) ExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) ExportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "import-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicy) ImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "import-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPath) ImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "import-policy". -func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyAny) ImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny { - return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) ImportPolicy() *Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny { + return &Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_GracefulRestart represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart struct { +// Bgp_Neighbor_AfiSafi_GracefulRestartPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestartAny struct { +// Bgp_Neighbor_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_Received represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_Received struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. -type Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny struct { +// Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. +type Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny struct { *ygot.NodePath } -// Advertised returns from Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "advertised". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestart) Advertised() *Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised{ +// Advertised returns from Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "advertised". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPath) Advertised() *Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath{ NodePath: ygot.NewNodePath( []string{"state", "advertised"}, map[string]interface{}{}, @@ -10966,9 +10961,9 @@ func (n *Bgp_Neighbor_AfiSafi_GracefulRestart) Advertised() *Bgp_Neighbor_AfiSaf } } -// Advertised returns from Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "advertised". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestartAny) Advertised() *Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny{ +// Advertised returns from Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "advertised". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Advertised() *Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "advertised"}, map[string]interface{}{}, @@ -10977,31 +10972,31 @@ func (n *Bgp_Neighbor_AfiSafi_GracefulRestartAny) Advertised() *Bgp_Neighbor_Afi } } -// Enabled returns from Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestart) Enabled() *Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPath) Enabled() *Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestartAny) Enabled() *Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Enabled() *Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Received returns from Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "received". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestart) Received() *Bgp_Neighbor_AfiSafi_GracefulRestart_Received { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_Received{ +// Received returns from Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "received". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPath) Received() *Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -11010,9 +11005,9 @@ func (n *Bgp_Neighbor_AfiSafi_GracefulRestart) Received() *Bgp_Neighbor_AfiSafi_ } } -// Received returns from Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "received". -func (n *Bgp_Neighbor_AfiSafi_GracefulRestartAny) Received() *Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny { - return &Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny{ +// Received returns from Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "received". +func (n *Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Received() *Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny { + return &Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -11021,19 +11016,19 @@ func (n *Bgp_Neighbor_AfiSafi_GracefulRestartAny) Received() *Bgp_Neighbor_AfiSa } } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11042,9 +11037,9 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_Neighbor_Af } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11053,167 +11048,167 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_Neighbor } } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast struct { +// Bgp_Neighbor_AfiSafi_Ipv4UnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4UnicastAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11222,9 +11217,9 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_I } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11233,179 +11228,179 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSaf } } -// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11414,9 +11409,9 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_Neighbor_Af } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11425,167 +11420,167 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_Neighbor } } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast struct { +// Bgp_Neighbor_AfiSafi_Ipv6UnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6UnicastAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11594,9 +11589,9 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_I } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11605,179 +11600,179 @@ func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSaf } } -// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpnPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpnAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpnPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11786,9 +11781,9 @@ func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2V } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11797,157 +11792,157 @@ func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_ } } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L2VpnVpls represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls struct { +// Bgp_Neighbor_AfiSafi_L2VpnVplsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVplsAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVplsPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11956,9 +11951,9 @@ func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2V } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -11967,157 +11962,157 @@ func (n *Bgp_Neighbor_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_ } } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12126,9 +12121,9 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_Neighbor_Af } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12137,157 +12132,157 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_Neighbor } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12296,9 +12291,9 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_Neighbor_AfiS } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12307,157 +12302,157 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_Neighbor_A } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12466,9 +12461,9 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_Neighbor_Af } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12477,157 +12472,157 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_Neighbor } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12636,9 +12631,9 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_Neighbor_AfiS } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12647,197 +12642,197 @@ func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_Neighbor_A } } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_Prefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes struct { +// Bgp_Neighbor_AfiSafi_PrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_PrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_PrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_PrefixesAny struct { +// Bgp_Neighbor_AfiSafi_PrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_PrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_Installed represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_Installed struct { +// Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny struct { +// Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_Received represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_Received struct { +// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny struct { +// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy struct { +// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny struct { +// Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_Sent represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_Sent struct { +// Bgp_Neighbor_AfiSafi_Prefixes_SentPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_SentPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_Prefixes_SentAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. -type Bgp_Neighbor_AfiSafi_Prefixes_SentAny struct { +// Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. +type Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny struct { *ygot.NodePath } -// Installed returns from Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "installed". -func (n *Bgp_Neighbor_AfiSafi_Prefixes) Installed() *Bgp_Neighbor_AfiSafi_Prefixes_Installed { - return &Bgp_Neighbor_AfiSafi_Prefixes_Installed{ +// Installed returns from Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "installed". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPath) Installed() *Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath { + return &Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath{ NodePath: ygot.NewNodePath( []string{"installed"}, map[string]interface{}{}, @@ -12846,9 +12841,9 @@ func (n *Bgp_Neighbor_AfiSafi_Prefixes) Installed() *Bgp_Neighbor_AfiSafi_Prefix } } -// Installed returns from Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "installed". -func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Installed() *Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny { - return &Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny{ +// Installed returns from Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "installed". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPathAny) Installed() *Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny { + return &Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny{ NodePath: ygot.NewNodePath( []string{"installed"}, map[string]interface{}{}, @@ -12857,9 +12852,9 @@ func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Installed() *Bgp_Neighbor_AfiSafi_Pre } } -// Received returns from Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "received". -func (n *Bgp_Neighbor_AfiSafi_Prefixes) Received() *Bgp_Neighbor_AfiSafi_Prefixes_Received { - return &Bgp_Neighbor_AfiSafi_Prefixes_Received{ +// Received returns from Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "received". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPath) Received() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath { + return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -12868,9 +12863,9 @@ func (n *Bgp_Neighbor_AfiSafi_Prefixes) Received() *Bgp_Neighbor_AfiSafi_Prefixe } } -// Received returns from Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "received". -func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Received() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny { - return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny{ +// Received returns from Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "received". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPathAny) Received() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny { + return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -12879,9 +12874,9 @@ func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Received() *Bgp_Neighbor_AfiSafi_Pref } } -// ReceivedPrePolicy returns from Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "received-pre-policy". -func (n *Bgp_Neighbor_AfiSafi_Prefixes) ReceivedPrePolicy() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy { - return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy{ +// ReceivedPrePolicy returns from Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "received-pre-policy". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPath) ReceivedPrePolicy() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath { + return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath{ NodePath: ygot.NewNodePath( []string{"received-pre-policy"}, map[string]interface{}{}, @@ -12890,9 +12885,9 @@ func (n *Bgp_Neighbor_AfiSafi_Prefixes) ReceivedPrePolicy() *Bgp_Neighbor_AfiSaf } } -// ReceivedPrePolicy returns from Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "received-pre-policy". -func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) ReceivedPrePolicy() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny { - return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny{ +// ReceivedPrePolicy returns from Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "received-pre-policy". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPathAny) ReceivedPrePolicy() *Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny { + return &Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"received-pre-policy"}, map[string]interface{}{}, @@ -12901,9 +12896,9 @@ func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) ReceivedPrePolicy() *Bgp_Neighbor_Afi } } -// Sent returns from Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "sent". -func (n *Bgp_Neighbor_AfiSafi_Prefixes) Sent() *Bgp_Neighbor_AfiSafi_Prefixes_Sent { - return &Bgp_Neighbor_AfiSafi_Prefixes_Sent{ +// Sent returns from Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "sent". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPath) Sent() *Bgp_Neighbor_AfiSafi_Prefixes_SentPath { + return &Bgp_Neighbor_AfiSafi_Prefixes_SentPath{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -12912,9 +12907,9 @@ func (n *Bgp_Neighbor_AfiSafi_Prefixes) Sent() *Bgp_Neighbor_AfiSafi_Prefixes_Se } } -// Sent returns from Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "sent". -func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Sent() *Bgp_Neighbor_AfiSafi_Prefixes_SentAny { - return &Bgp_Neighbor_AfiSafi_Prefixes_SentAny{ +// Sent returns from Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "sent". +func (n *Bgp_Neighbor_AfiSafi_PrefixesPathAny) Sent() *Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny { + return &Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -12923,19 +12918,19 @@ func (n *Bgp_Neighbor_AfiSafi_PrefixesAny) Sent() *Bgp_Neighbor_AfiSafi_Prefixes } } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12944,9 +12939,9 @@ func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_Neighbor_AfiSaf } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -12955,157 +12950,157 @@ func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_Neighbor_Afi } } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -13114,9 +13109,9 @@ func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_Neighbor_AfiSaf } } -// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -13125,167 +13120,167 @@ func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_Neighbor_Afi } } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePathsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePathsAny struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsPath) Ebgp() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -13294,9 +13289,9 @@ func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_Neighbor_AfiSafi_Use } } -// Ebgp returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny) Ebgp() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -13305,421 +13300,421 @@ func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_Neighbor_AfiSafi_ } } -// Enabled returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths) Enabled() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsPath) Enabled() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Enabled() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny) Enabled() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_ApplyPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy struct { +// Bgp_Neighbor_ApplyPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicyAny struct { +// Bgp_Neighbor_ApplyPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/default-export-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy struct { +// Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/default-export-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/default-export-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny struct { +// Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/default-export-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/default-import-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy struct { +// Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/default-import-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/default-import-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny struct { +// Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/default-import-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_ExportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/export-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_ExportPolicy struct { +// Bgp_Neighbor_ApplyPolicy_ExportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/export-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/export-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_ExportPolicyAny struct { +// Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/export-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_ImportPolicy represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/import-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_ImportPolicy struct { +// Bgp_Neighbor_ApplyPolicy_ImportPolicyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/import-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// Bgp_Neighbor_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/state/import-policy YANG schema element. -type Bgp_Neighbor_ApplyPolicy_ImportPolicyAny struct { +// Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/apply-policy/config/import-policy YANG schema element. +type Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from Bgp_Neighbor_ApplyPolicy the path struct for its child "default-export-policy". -func (n *Bgp_Neighbor_ApplyPolicy) DefaultExportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy { - return &Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from Bgp_Neighbor_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *Bgp_Neighbor_ApplyPolicyPath) DefaultExportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath { + return &Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from Bgp_Neighbor_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *Bgp_Neighbor_ApplyPolicyAny) DefaultExportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny { - return &Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *Bgp_Neighbor_ApplyPolicyPathAny) DefaultExportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny { + return &Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_Neighbor_ApplyPolicy the path struct for its child "default-import-policy". -func (n *Bgp_Neighbor_ApplyPolicy) DefaultImportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy { - return &Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from Bgp_Neighbor_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *Bgp_Neighbor_ApplyPolicyPath) DefaultImportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath { + return &Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_Neighbor_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *Bgp_Neighbor_ApplyPolicyAny) DefaultImportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny { - return &Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *Bgp_Neighbor_ApplyPolicyPathAny) DefaultImportPolicy() *Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny { + return &Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_Neighbor_ApplyPolicy the path struct for its child "export-policy". -func (n *Bgp_Neighbor_ApplyPolicy) ExportPolicy() *Bgp_Neighbor_ApplyPolicy_ExportPolicy { - return &Bgp_Neighbor_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from Bgp_Neighbor_ApplyPolicyPath the path struct for its child "export-policy". +func (n *Bgp_Neighbor_ApplyPolicyPath) ExportPolicy() *Bgp_Neighbor_ApplyPolicy_ExportPolicyPath { + return &Bgp_Neighbor_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_Neighbor_ApplyPolicyAny the path struct for its child "export-policy". -func (n *Bgp_Neighbor_ApplyPolicyAny) ExportPolicy() *Bgp_Neighbor_ApplyPolicy_ExportPolicyAny { - return &Bgp_Neighbor_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *Bgp_Neighbor_ApplyPolicyPathAny) ExportPolicy() *Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny { + return &Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_Neighbor_ApplyPolicy the path struct for its child "import-policy". -func (n *Bgp_Neighbor_ApplyPolicy) ImportPolicy() *Bgp_Neighbor_ApplyPolicy_ImportPolicy { - return &Bgp_Neighbor_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from Bgp_Neighbor_ApplyPolicyPath the path struct for its child "import-policy". +func (n *Bgp_Neighbor_ApplyPolicyPath) ImportPolicy() *Bgp_Neighbor_ApplyPolicy_ImportPolicyPath { + return &Bgp_Neighbor_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_Neighbor_ApplyPolicyAny the path struct for its child "import-policy". -func (n *Bgp_Neighbor_ApplyPolicyAny) ImportPolicy() *Bgp_Neighbor_ApplyPolicy_ImportPolicyAny { - return &Bgp_Neighbor_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *Bgp_Neighbor_ApplyPolicyPathAny) ImportPolicy() *Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny { + return &Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_AsPathOptions represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options YANG schema element. -type Bgp_Neighbor_AsPathOptions struct { +// Bgp_Neighbor_AsPathOptionsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options YANG schema element. +type Bgp_Neighbor_AsPathOptionsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options YANG schema element. -type Bgp_Neighbor_AsPathOptionsAny struct { +// Bgp_Neighbor_AsPathOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options YANG schema element. +type Bgp_Neighbor_AsPathOptionsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_AllowOwnAs represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/allow-own-as YANG schema element. -type Bgp_Neighbor_AsPathOptions_AllowOwnAs struct { +// Bgp_Neighbor_AsPathOptions_AllowOwnAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/allow-own-as YANG schema element. +type Bgp_Neighbor_AsPathOptions_AllowOwnAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_AllowOwnAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/allow-own-as YANG schema element. -type Bgp_Neighbor_AsPathOptions_AllowOwnAsAny struct { +// Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/allow-own-as YANG schema element. +type Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/disable-peer-as-filter YANG schema element. -type Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter struct { +// Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/disable-peer-as-filter YANG schema element. +type Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/disable-peer-as-filter YANG schema element. -type Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny struct { +// Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/disable-peer-as-filter YANG schema element. +type Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_ReplacePeerAs represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/replace-peer-as YANG schema element. -type Bgp_Neighbor_AsPathOptions_ReplacePeerAs struct { +// Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/replace-peer-as YANG schema element. +type Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/state/replace-peer-as YANG schema element. -type Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny struct { +// Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/as-path-options/config/replace-peer-as YANG schema element. +type Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny struct { *ygot.NodePath } -// AllowOwnAs returns from Bgp_Neighbor_AsPathOptions the path struct for its child "allow-own-as". -func (n *Bgp_Neighbor_AsPathOptions) AllowOwnAs() *Bgp_Neighbor_AsPathOptions_AllowOwnAs { - return &Bgp_Neighbor_AsPathOptions_AllowOwnAs{ +// AllowOwnAs returns from Bgp_Neighbor_AsPathOptionsPath the path struct for its child "allow-own-as". +func (n *Bgp_Neighbor_AsPathOptionsPath) AllowOwnAs() *Bgp_Neighbor_AsPathOptions_AllowOwnAsPath { + return &Bgp_Neighbor_AsPathOptions_AllowOwnAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// AllowOwnAs returns from Bgp_Neighbor_AsPathOptionsAny the path struct for its child "allow-own-as". -func (n *Bgp_Neighbor_AsPathOptionsAny) AllowOwnAs() *Bgp_Neighbor_AsPathOptions_AllowOwnAsAny { - return &Bgp_Neighbor_AsPathOptions_AllowOwnAsAny{ +// AllowOwnAs returns from Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "allow-own-as". +func (n *Bgp_Neighbor_AsPathOptionsPathAny) AllowOwnAs() *Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny { + return &Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from Bgp_Neighbor_AsPathOptions the path struct for its child "disable-peer-as-filter". -func (n *Bgp_Neighbor_AsPathOptions) DisablePeerAsFilter() *Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter { - return &Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter{ +// DisablePeerAsFilter returns from Bgp_Neighbor_AsPathOptionsPath the path struct for its child "disable-peer-as-filter". +func (n *Bgp_Neighbor_AsPathOptionsPath) DisablePeerAsFilter() *Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath { + return &Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from Bgp_Neighbor_AsPathOptionsAny the path struct for its child "disable-peer-as-filter". -func (n *Bgp_Neighbor_AsPathOptionsAny) DisablePeerAsFilter() *Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny { - return &Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny{ +// DisablePeerAsFilter returns from Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "disable-peer-as-filter". +func (n *Bgp_Neighbor_AsPathOptionsPathAny) DisablePeerAsFilter() *Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny { + return &Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from Bgp_Neighbor_AsPathOptions the path struct for its child "replace-peer-as". -func (n *Bgp_Neighbor_AsPathOptions) ReplacePeerAs() *Bgp_Neighbor_AsPathOptions_ReplacePeerAs { - return &Bgp_Neighbor_AsPathOptions_ReplacePeerAs{ +// ReplacePeerAs returns from Bgp_Neighbor_AsPathOptionsPath the path struct for its child "replace-peer-as". +func (n *Bgp_Neighbor_AsPathOptionsPath) ReplacePeerAs() *Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath { + return &Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from Bgp_Neighbor_AsPathOptionsAny the path struct for its child "replace-peer-as". -func (n *Bgp_Neighbor_AsPathOptionsAny) ReplacePeerAs() *Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny { - return &Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny{ +// ReplacePeerAs returns from Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "replace-peer-as". +func (n *Bgp_Neighbor_AsPathOptionsPathAny) ReplacePeerAs() *Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny { + return &Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_EbgpMultihop represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. -type Bgp_Neighbor_EbgpMultihop struct { +// Bgp_Neighbor_EbgpMultihopPath represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. +type Bgp_Neighbor_EbgpMultihopPath struct { *ygot.NodePath } -// Bgp_Neighbor_EbgpMultihopAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. -type Bgp_Neighbor_EbgpMultihopAny struct { +// Bgp_Neighbor_EbgpMultihopPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. +type Bgp_Neighbor_EbgpMultihopPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_EbgpMultihop_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/state/enabled YANG schema element. -type Bgp_Neighbor_EbgpMultihop_Enabled struct { +// Bgp_Neighbor_EbgpMultihop_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/config/enabled YANG schema element. +type Bgp_Neighbor_EbgpMultihop_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_EbgpMultihop_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/state/enabled YANG schema element. -type Bgp_Neighbor_EbgpMultihop_EnabledAny struct { +// Bgp_Neighbor_EbgpMultihop_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/config/enabled YANG schema element. +type Bgp_Neighbor_EbgpMultihop_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_EbgpMultihop_MultihopTtl represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/state/multihop-ttl YANG schema element. -type Bgp_Neighbor_EbgpMultihop_MultihopTtl struct { +// Bgp_Neighbor_EbgpMultihop_MultihopTtlPath represents the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/config/multihop-ttl YANG schema element. +type Bgp_Neighbor_EbgpMultihop_MultihopTtlPath struct { *ygot.NodePath } -// Bgp_Neighbor_EbgpMultihop_MultihopTtlAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/state/multihop-ttl YANG schema element. -type Bgp_Neighbor_EbgpMultihop_MultihopTtlAny struct { +// Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/ebgp-multihop/config/multihop-ttl YANG schema element. +type Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_Neighbor_EbgpMultihop the path struct for its child "enabled". -func (n *Bgp_Neighbor_EbgpMultihop) Enabled() *Bgp_Neighbor_EbgpMultihop_Enabled { - return &Bgp_Neighbor_EbgpMultihop_Enabled{ +// Enabled returns from Bgp_Neighbor_EbgpMultihopPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_EbgpMultihopPath) Enabled() *Bgp_Neighbor_EbgpMultihop_EnabledPath { + return &Bgp_Neighbor_EbgpMultihop_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_EbgpMultihopAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_EbgpMultihopAny) Enabled() *Bgp_Neighbor_EbgpMultihop_EnabledAny { - return &Bgp_Neighbor_EbgpMultihop_EnabledAny{ +// Enabled returns from Bgp_Neighbor_EbgpMultihopPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_EbgpMultihopPathAny) Enabled() *Bgp_Neighbor_EbgpMultihop_EnabledPathAny { + return &Bgp_Neighbor_EbgpMultihop_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from Bgp_Neighbor_EbgpMultihop the path struct for its child "multihop-ttl". -func (n *Bgp_Neighbor_EbgpMultihop) MultihopTtl() *Bgp_Neighbor_EbgpMultihop_MultihopTtl { - return &Bgp_Neighbor_EbgpMultihop_MultihopTtl{ +// MultihopTtl returns from Bgp_Neighbor_EbgpMultihopPath the path struct for its child "multihop-ttl". +func (n *Bgp_Neighbor_EbgpMultihopPath) MultihopTtl() *Bgp_Neighbor_EbgpMultihop_MultihopTtlPath { + return &Bgp_Neighbor_EbgpMultihop_MultihopTtlPath{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from Bgp_Neighbor_EbgpMultihopAny the path struct for its child "multihop-ttl". -func (n *Bgp_Neighbor_EbgpMultihopAny) MultihopTtl() *Bgp_Neighbor_EbgpMultihop_MultihopTtlAny { - return &Bgp_Neighbor_EbgpMultihop_MultihopTtlAny{ +// MultihopTtl returns from Bgp_Neighbor_EbgpMultihopPathAny the path struct for its child "multihop-ttl". +func (n *Bgp_Neighbor_EbgpMultihopPathAny) MultihopTtl() *Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny { + return &Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_ErrorHandling represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling YANG schema element. -type Bgp_Neighbor_ErrorHandling struct { +// Bgp_Neighbor_ErrorHandlingPath represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling YANG schema element. +type Bgp_Neighbor_ErrorHandlingPath struct { *ygot.NodePath } -// Bgp_Neighbor_ErrorHandlingAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling YANG schema element. -type Bgp_Neighbor_ErrorHandlingAny struct { +// Bgp_Neighbor_ErrorHandlingPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling YANG schema element. +type Bgp_Neighbor_ErrorHandlingPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. -type Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages struct { +// Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. +type Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath struct { *ygot.NodePath } -// Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. -type Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny struct { +// Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. +type Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_ErrorHandling_TreatAsWithdraw represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/treat-as-withdraw YANG schema element. -type Bgp_Neighbor_ErrorHandling_TreatAsWithdraw struct { +// Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath represents the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/config/treat-as-withdraw YANG schema element. +type Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath struct { *ygot.NodePath } -// Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/state/treat-as-withdraw YANG schema element. -type Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny struct { +// Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/error-handling/config/treat-as-withdraw YANG schema element. +type Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny struct { *ygot.NodePath } -// ErroneousUpdateMessages returns from Bgp_Neighbor_ErrorHandling the path struct for its child "erroneous-update-messages". -func (n *Bgp_Neighbor_ErrorHandling) ErroneousUpdateMessages() *Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages { - return &Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages{ +// ErroneousUpdateMessages returns from Bgp_Neighbor_ErrorHandlingPath the path struct for its child "erroneous-update-messages". +func (n *Bgp_Neighbor_ErrorHandlingPath) ErroneousUpdateMessages() *Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath { + return &Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath{ NodePath: ygot.NewNodePath( []string{"state", "erroneous-update-messages"}, map[string]interface{}{}, @@ -13728,9 +13723,9 @@ func (n *Bgp_Neighbor_ErrorHandling) ErroneousUpdateMessages() *Bgp_Neighbor_Err } } -// ErroneousUpdateMessages returns from Bgp_Neighbor_ErrorHandlingAny the path struct for its child "erroneous-update-messages". -func (n *Bgp_Neighbor_ErrorHandlingAny) ErroneousUpdateMessages() *Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny { - return &Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny{ +// ErroneousUpdateMessages returns from Bgp_Neighbor_ErrorHandlingPathAny the path struct for its child "erroneous-update-messages". +func (n *Bgp_Neighbor_ErrorHandlingPathAny) ErroneousUpdateMessages() *Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny { + return &Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "erroneous-update-messages"}, map[string]interface{}{}, @@ -13739,165 +13734,165 @@ func (n *Bgp_Neighbor_ErrorHandlingAny) ErroneousUpdateMessages() *Bgp_Neighbor_ } } -// TreatAsWithdraw returns from Bgp_Neighbor_ErrorHandling the path struct for its child "treat-as-withdraw". -func (n *Bgp_Neighbor_ErrorHandling) TreatAsWithdraw() *Bgp_Neighbor_ErrorHandling_TreatAsWithdraw { - return &Bgp_Neighbor_ErrorHandling_TreatAsWithdraw{ +// TreatAsWithdraw returns from Bgp_Neighbor_ErrorHandlingPath the path struct for its child "treat-as-withdraw". +func (n *Bgp_Neighbor_ErrorHandlingPath) TreatAsWithdraw() *Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath { + return &Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// TreatAsWithdraw returns from Bgp_Neighbor_ErrorHandlingAny the path struct for its child "treat-as-withdraw". -func (n *Bgp_Neighbor_ErrorHandlingAny) TreatAsWithdraw() *Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny { - return &Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny{ +// TreatAsWithdraw returns from Bgp_Neighbor_ErrorHandlingPathAny the path struct for its child "treat-as-withdraw". +func (n *Bgp_Neighbor_ErrorHandlingPathAny) TreatAsWithdraw() *Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny { + return &Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_GracefulRestart represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart YANG schema element. -type Bgp_Neighbor_GracefulRestart struct { +// Bgp_Neighbor_GracefulRestartPath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart YANG schema element. +type Bgp_Neighbor_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart YANG schema element. -type Bgp_Neighbor_GracefulRestartAny struct { +// Bgp_Neighbor_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart YANG schema element. +type Bgp_Neighbor_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/enabled YANG schema element. -type Bgp_Neighbor_GracefulRestart_Enabled struct { +// Bgp_Neighbor_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/enabled YANG schema element. +type Bgp_Neighbor_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/enabled YANG schema element. -type Bgp_Neighbor_GracefulRestart_EnabledAny struct { +// Bgp_Neighbor_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/enabled YANG schema element. +type Bgp_Neighbor_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_HelperOnly represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/helper-only YANG schema element. -type Bgp_Neighbor_GracefulRestart_HelperOnly struct { +// Bgp_Neighbor_GracefulRestart_HelperOnlyPath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/helper-only YANG schema element. +type Bgp_Neighbor_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/helper-only YANG schema element. -type Bgp_Neighbor_GracefulRestart_HelperOnlyAny struct { +// Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/helper-only YANG schema element. +type Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_LocalRestarting represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. -type Bgp_Neighbor_GracefulRestart_LocalRestarting struct { +// Bgp_Neighbor_GracefulRestart_LocalRestartingPath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. +type Bgp_Neighbor_GracefulRestart_LocalRestartingPath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_LocalRestartingAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. -type Bgp_Neighbor_GracefulRestart_LocalRestartingAny struct { +// Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. +type Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_Mode represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. -type Bgp_Neighbor_GracefulRestart_Mode struct { +// Bgp_Neighbor_GracefulRestart_ModePath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. +type Bgp_Neighbor_GracefulRestart_ModePath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_ModeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. -type Bgp_Neighbor_GracefulRestart_ModeAny struct { +// Bgp_Neighbor_GracefulRestart_ModePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. +type Bgp_Neighbor_GracefulRestart_ModePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_PeerRestartTime represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_PeerRestartTime struct { +// Bgp_Neighbor_GracefulRestart_PeerRestartTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_PeerRestartTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny struct { +// Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_PeerRestarting represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. -type Bgp_Neighbor_GracefulRestart_PeerRestarting struct { +// Bgp_Neighbor_GracefulRestart_PeerRestartingPath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. +type Bgp_Neighbor_GracefulRestart_PeerRestartingPath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_PeerRestartingAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. -type Bgp_Neighbor_GracefulRestart_PeerRestartingAny struct { +// Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. +type Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_RestartTime represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/restart-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_RestartTime struct { +// Bgp_Neighbor_GracefulRestart_RestartTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/restart-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/restart-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_RestartTimeAny struct { +// Bgp_Neighbor_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/restart-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_StaleRoutesTime represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_StaleRoutesTime struct { +// Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny struct { +// Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_Neighbor_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_Neighbor_GracefulRestart) Enabled() *Bgp_Neighbor_GracefulRestart_Enabled { - return &Bgp_Neighbor_GracefulRestart_Enabled{ +// Enabled returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_GracefulRestartPath) Enabled() *Bgp_Neighbor_GracefulRestart_EnabledPath { + return &Bgp_Neighbor_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_GracefulRestartAny) Enabled() *Bgp_Neighbor_GracefulRestart_EnabledAny { - return &Bgp_Neighbor_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_GracefulRestartPathAny) Enabled() *Bgp_Neighbor_GracefulRestart_EnabledPathAny { + return &Bgp_Neighbor_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_Neighbor_GracefulRestart the path struct for its child "helper-only". -func (n *Bgp_Neighbor_GracefulRestart) HelperOnly() *Bgp_Neighbor_GracefulRestart_HelperOnly { - return &Bgp_Neighbor_GracefulRestart_HelperOnly{ +// HelperOnly returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "helper-only". +func (n *Bgp_Neighbor_GracefulRestartPath) HelperOnly() *Bgp_Neighbor_GracefulRestart_HelperOnlyPath { + return &Bgp_Neighbor_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "helper-only". -func (n *Bgp_Neighbor_GracefulRestartAny) HelperOnly() *Bgp_Neighbor_GracefulRestart_HelperOnlyAny { - return &Bgp_Neighbor_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *Bgp_Neighbor_GracefulRestartPathAny) HelperOnly() *Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny { + return &Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// LocalRestarting returns from Bgp_Neighbor_GracefulRestart the path struct for its child "local-restarting". -func (n *Bgp_Neighbor_GracefulRestart) LocalRestarting() *Bgp_Neighbor_GracefulRestart_LocalRestarting { - return &Bgp_Neighbor_GracefulRestart_LocalRestarting{ +// LocalRestarting returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "local-restarting". +func (n *Bgp_Neighbor_GracefulRestartPath) LocalRestarting() *Bgp_Neighbor_GracefulRestart_LocalRestartingPath { + return &Bgp_Neighbor_GracefulRestart_LocalRestartingPath{ NodePath: ygot.NewNodePath( []string{"state", "local-restarting"}, map[string]interface{}{}, @@ -13906,9 +13901,9 @@ func (n *Bgp_Neighbor_GracefulRestart) LocalRestarting() *Bgp_Neighbor_GracefulR } } -// LocalRestarting returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "local-restarting". -func (n *Bgp_Neighbor_GracefulRestartAny) LocalRestarting() *Bgp_Neighbor_GracefulRestart_LocalRestartingAny { - return &Bgp_Neighbor_GracefulRestart_LocalRestartingAny{ +// LocalRestarting returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "local-restarting". +func (n *Bgp_Neighbor_GracefulRestartPathAny) LocalRestarting() *Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny { + return &Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-restarting"}, map[string]interface{}{}, @@ -13917,9 +13912,9 @@ func (n *Bgp_Neighbor_GracefulRestartAny) LocalRestarting() *Bgp_Neighbor_Gracef } } -// Mode returns from Bgp_Neighbor_GracefulRestart the path struct for its child "mode". -func (n *Bgp_Neighbor_GracefulRestart) Mode() *Bgp_Neighbor_GracefulRestart_Mode { - return &Bgp_Neighbor_GracefulRestart_Mode{ +// Mode returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "mode". +func (n *Bgp_Neighbor_GracefulRestartPath) Mode() *Bgp_Neighbor_GracefulRestart_ModePath { + return &Bgp_Neighbor_GracefulRestart_ModePath{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -13928,9 +13923,9 @@ func (n *Bgp_Neighbor_GracefulRestart) Mode() *Bgp_Neighbor_GracefulRestart_Mode } } -// Mode returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "mode". -func (n *Bgp_Neighbor_GracefulRestartAny) Mode() *Bgp_Neighbor_GracefulRestart_ModeAny { - return &Bgp_Neighbor_GracefulRestart_ModeAny{ +// Mode returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "mode". +func (n *Bgp_Neighbor_GracefulRestartPathAny) Mode() *Bgp_Neighbor_GracefulRestart_ModePathAny { + return &Bgp_Neighbor_GracefulRestart_ModePathAny{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -13939,9 +13934,9 @@ func (n *Bgp_Neighbor_GracefulRestartAny) Mode() *Bgp_Neighbor_GracefulRestart_M } } -// PeerRestartTime returns from Bgp_Neighbor_GracefulRestart the path struct for its child "peer-restart-time". -func (n *Bgp_Neighbor_GracefulRestart) PeerRestartTime() *Bgp_Neighbor_GracefulRestart_PeerRestartTime { - return &Bgp_Neighbor_GracefulRestart_PeerRestartTime{ +// PeerRestartTime returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "peer-restart-time". +func (n *Bgp_Neighbor_GracefulRestartPath) PeerRestartTime() *Bgp_Neighbor_GracefulRestart_PeerRestartTimePath { + return &Bgp_Neighbor_GracefulRestart_PeerRestartTimePath{ NodePath: ygot.NewNodePath( []string{"state", "peer-restart-time"}, map[string]interface{}{}, @@ -13950,9 +13945,9 @@ func (n *Bgp_Neighbor_GracefulRestart) PeerRestartTime() *Bgp_Neighbor_GracefulR } } -// PeerRestartTime returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "peer-restart-time". -func (n *Bgp_Neighbor_GracefulRestartAny) PeerRestartTime() *Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny { - return &Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny{ +// PeerRestartTime returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "peer-restart-time". +func (n *Bgp_Neighbor_GracefulRestartPathAny) PeerRestartTime() *Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny { + return &Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "peer-restart-time"}, map[string]interface{}{}, @@ -13961,9 +13956,9 @@ func (n *Bgp_Neighbor_GracefulRestartAny) PeerRestartTime() *Bgp_Neighbor_Gracef } } -// PeerRestarting returns from Bgp_Neighbor_GracefulRestart the path struct for its child "peer-restarting". -func (n *Bgp_Neighbor_GracefulRestart) PeerRestarting() *Bgp_Neighbor_GracefulRestart_PeerRestarting { - return &Bgp_Neighbor_GracefulRestart_PeerRestarting{ +// PeerRestarting returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "peer-restarting". +func (n *Bgp_Neighbor_GracefulRestartPath) PeerRestarting() *Bgp_Neighbor_GracefulRestart_PeerRestartingPath { + return &Bgp_Neighbor_GracefulRestart_PeerRestartingPath{ NodePath: ygot.NewNodePath( []string{"state", "peer-restarting"}, map[string]interface{}{}, @@ -13972,9 +13967,9 @@ func (n *Bgp_Neighbor_GracefulRestart) PeerRestarting() *Bgp_Neighbor_GracefulRe } } -// PeerRestarting returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "peer-restarting". -func (n *Bgp_Neighbor_GracefulRestartAny) PeerRestarting() *Bgp_Neighbor_GracefulRestart_PeerRestartingAny { - return &Bgp_Neighbor_GracefulRestart_PeerRestartingAny{ +// PeerRestarting returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "peer-restarting". +func (n *Bgp_Neighbor_GracefulRestartPathAny) PeerRestarting() *Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny { + return &Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "peer-restarting"}, map[string]interface{}{}, @@ -13983,105 +13978,105 @@ func (n *Bgp_Neighbor_GracefulRestartAny) PeerRestarting() *Bgp_Neighbor_Gracefu } } -// RestartTime returns from Bgp_Neighbor_GracefulRestart the path struct for its child "restart-time". -func (n *Bgp_Neighbor_GracefulRestart) RestartTime() *Bgp_Neighbor_GracefulRestart_RestartTime { - return &Bgp_Neighbor_GracefulRestart_RestartTime{ +// RestartTime returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "restart-time". +func (n *Bgp_Neighbor_GracefulRestartPath) RestartTime() *Bgp_Neighbor_GracefulRestart_RestartTimePath { + return &Bgp_Neighbor_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "restart-time". -func (n *Bgp_Neighbor_GracefulRestartAny) RestartTime() *Bgp_Neighbor_GracefulRestart_RestartTimeAny { - return &Bgp_Neighbor_GracefulRestart_RestartTimeAny{ +// RestartTime returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *Bgp_Neighbor_GracefulRestartPathAny) RestartTime() *Bgp_Neighbor_GracefulRestart_RestartTimePathAny { + return &Bgp_Neighbor_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_Neighbor_GracefulRestart the path struct for its child "stale-routes-time". -func (n *Bgp_Neighbor_GracefulRestart) StaleRoutesTime() *Bgp_Neighbor_GracefulRestart_StaleRoutesTime { - return &Bgp_Neighbor_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from Bgp_Neighbor_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *Bgp_Neighbor_GracefulRestartPath) StaleRoutesTime() *Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath { + return &Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_Neighbor_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *Bgp_Neighbor_GracefulRestartAny) StaleRoutesTime() *Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny { - return &Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *Bgp_Neighbor_GracefulRestartPathAny) StaleRoutesTime() *Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny { + return &Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_LoggingOptions represents the /openconfig-bgp/bgp/neighbors/neighbor/logging-options YANG schema element. -type Bgp_Neighbor_LoggingOptions struct { +// Bgp_Neighbor_LoggingOptionsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/logging-options YANG schema element. +type Bgp_Neighbor_LoggingOptionsPath struct { *ygot.NodePath } -// Bgp_Neighbor_LoggingOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/logging-options YANG schema element. -type Bgp_Neighbor_LoggingOptionsAny struct { +// Bgp_Neighbor_LoggingOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/logging-options YANG schema element. +type Bgp_Neighbor_LoggingOptionsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges represents the /openconfig-bgp/bgp/neighbors/neighbor/logging-options/state/log-neighbor-state-changes YANG schema element. -type Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges struct { +// Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/logging-options/config/log-neighbor-state-changes YANG schema element. +type Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath struct { *ygot.NodePath } -// Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/logging-options/state/log-neighbor-state-changes YANG schema element. -type Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny struct { +// Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/logging-options/config/log-neighbor-state-changes YANG schema element. +type Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny struct { *ygot.NodePath } -// LogNeighborStateChanges returns from Bgp_Neighbor_LoggingOptions the path struct for its child "log-neighbor-state-changes". -func (n *Bgp_Neighbor_LoggingOptions) LogNeighborStateChanges() *Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges { - return &Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges{ +// LogNeighborStateChanges returns from Bgp_Neighbor_LoggingOptionsPath the path struct for its child "log-neighbor-state-changes". +func (n *Bgp_Neighbor_LoggingOptionsPath) LogNeighborStateChanges() *Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath { + return &Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// LogNeighborStateChanges returns from Bgp_Neighbor_LoggingOptionsAny the path struct for its child "log-neighbor-state-changes". -func (n *Bgp_Neighbor_LoggingOptionsAny) LogNeighborStateChanges() *Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny { - return &Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny{ +// LogNeighborStateChanges returns from Bgp_Neighbor_LoggingOptionsPathAny the path struct for its child "log-neighbor-state-changes". +func (n *Bgp_Neighbor_LoggingOptionsPathAny) LogNeighborStateChanges() *Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny { + return &Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_Messages represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages YANG schema element. -type Bgp_Neighbor_Messages struct { +// Bgp_Neighbor_MessagesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages YANG schema element. +type Bgp_Neighbor_MessagesPath struct { *ygot.NodePath } -// Bgp_Neighbor_MessagesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages YANG schema element. -type Bgp_Neighbor_MessagesAny struct { +// Bgp_Neighbor_MessagesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages YANG schema element. +type Bgp_Neighbor_MessagesPathAny struct { *ygot.NodePath } -// Received returns from Bgp_Neighbor_Messages the path struct for its child "received". -func (n *Bgp_Neighbor_Messages) Received() *Bgp_Neighbor_Messages_Received { - return &Bgp_Neighbor_Messages_Received{ +// Received returns from Bgp_Neighbor_MessagesPath the path struct for its child "received". +func (n *Bgp_Neighbor_MessagesPath) Received() *Bgp_Neighbor_Messages_ReceivedPath { + return &Bgp_Neighbor_Messages_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -14090,9 +14085,9 @@ func (n *Bgp_Neighbor_Messages) Received() *Bgp_Neighbor_Messages_Received { } } -// Received returns from Bgp_Neighbor_MessagesAny the path struct for its child "received". -func (n *Bgp_Neighbor_MessagesAny) Received() *Bgp_Neighbor_Messages_ReceivedAny { - return &Bgp_Neighbor_Messages_ReceivedAny{ +// Received returns from Bgp_Neighbor_MessagesPathAny the path struct for its child "received". +func (n *Bgp_Neighbor_MessagesPathAny) Received() *Bgp_Neighbor_Messages_ReceivedPathAny { + return &Bgp_Neighbor_Messages_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -14101,9 +14096,9 @@ func (n *Bgp_Neighbor_MessagesAny) Received() *Bgp_Neighbor_Messages_ReceivedAny } } -// Sent returns from Bgp_Neighbor_Messages the path struct for its child "sent". -func (n *Bgp_Neighbor_Messages) Sent() *Bgp_Neighbor_Messages_Sent { - return &Bgp_Neighbor_Messages_Sent{ +// Sent returns from Bgp_Neighbor_MessagesPath the path struct for its child "sent". +func (n *Bgp_Neighbor_MessagesPath) Sent() *Bgp_Neighbor_Messages_SentPath { + return &Bgp_Neighbor_Messages_SentPath{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -14112,9 +14107,9 @@ func (n *Bgp_Neighbor_Messages) Sent() *Bgp_Neighbor_Messages_Sent { } } -// Sent returns from Bgp_Neighbor_MessagesAny the path struct for its child "sent". -func (n *Bgp_Neighbor_MessagesAny) Sent() *Bgp_Neighbor_Messages_SentAny { - return &Bgp_Neighbor_Messages_SentAny{ +// Sent returns from Bgp_Neighbor_MessagesPathAny the path struct for its child "sent". +func (n *Bgp_Neighbor_MessagesPathAny) Sent() *Bgp_Neighbor_Messages_SentPathAny { + return &Bgp_Neighbor_Messages_SentPathAny{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -14123,69 +14118,69 @@ func (n *Bgp_Neighbor_MessagesAny) Sent() *Bgp_Neighbor_Messages_SentAny { } } -// Bgp_Neighbor_Messages_Received represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received YANG schema element. -type Bgp_Neighbor_Messages_Received struct { +// Bgp_Neighbor_Messages_ReceivedPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received YANG schema element. +type Bgp_Neighbor_Messages_ReceivedPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_ReceivedAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received YANG schema element. -type Bgp_Neighbor_Messages_ReceivedAny struct { +// Bgp_Neighbor_Messages_ReceivedPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received YANG schema element. +type Bgp_Neighbor_Messages_ReceivedPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_NOTIFICATION represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. -type Bgp_Neighbor_Messages_Received_NOTIFICATION struct { +// Bgp_Neighbor_Messages_Received_NOTIFICATIONPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. +type Bgp_Neighbor_Messages_Received_NOTIFICATIONPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_NOTIFICATIONAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. -type Bgp_Neighbor_Messages_Received_NOTIFICATIONAny struct { +// Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. +type Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_UPDATE represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. -type Bgp_Neighbor_Messages_Received_UPDATE struct { +// Bgp_Neighbor_Messages_Received_UPDATEPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. +type Bgp_Neighbor_Messages_Received_UPDATEPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_UPDATEAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. -type Bgp_Neighbor_Messages_Received_UPDATEAny struct { +// Bgp_Neighbor_Messages_Received_UPDATEPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. +type Bgp_Neighbor_Messages_Received_UPDATEPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationErrorCode represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationErrorCode struct { +// Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny struct { +// Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode struct { +// Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny struct { +// Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationTime represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationTime struct { +// Bgp_Neighbor_Messages_Received_LastNotificationTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Received_LastNotificationTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. -type Bgp_Neighbor_Messages_Received_LastNotificationTimeAny struct { +// Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. +type Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny struct { *ygot.NodePath } -// NOTIFICATION returns from Bgp_Neighbor_Messages_Received the path struct for its child "NOTIFICATION". -func (n *Bgp_Neighbor_Messages_Received) NOTIFICATION() *Bgp_Neighbor_Messages_Received_NOTIFICATION { - return &Bgp_Neighbor_Messages_Received_NOTIFICATION{ +// NOTIFICATION returns from Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "NOTIFICATION". +func (n *Bgp_Neighbor_Messages_ReceivedPath) NOTIFICATION() *Bgp_Neighbor_Messages_Received_NOTIFICATIONPath { + return &Bgp_Neighbor_Messages_Received_NOTIFICATIONPath{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -14194,9 +14189,9 @@ func (n *Bgp_Neighbor_Messages_Received) NOTIFICATION() *Bgp_Neighbor_Messages_R } } -// NOTIFICATION returns from Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "NOTIFICATION". -func (n *Bgp_Neighbor_Messages_ReceivedAny) NOTIFICATION() *Bgp_Neighbor_Messages_Received_NOTIFICATIONAny { - return &Bgp_Neighbor_Messages_Received_NOTIFICATIONAny{ +// NOTIFICATION returns from Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "NOTIFICATION". +func (n *Bgp_Neighbor_Messages_ReceivedPathAny) NOTIFICATION() *Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny { + return &Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -14205,9 +14200,9 @@ func (n *Bgp_Neighbor_Messages_ReceivedAny) NOTIFICATION() *Bgp_Neighbor_Message } } -// UPDATE returns from Bgp_Neighbor_Messages_Received the path struct for its child "UPDATE". -func (n *Bgp_Neighbor_Messages_Received) UPDATE() *Bgp_Neighbor_Messages_Received_UPDATE { - return &Bgp_Neighbor_Messages_Received_UPDATE{ +// UPDATE returns from Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "UPDATE". +func (n *Bgp_Neighbor_Messages_ReceivedPath) UPDATE() *Bgp_Neighbor_Messages_Received_UPDATEPath { + return &Bgp_Neighbor_Messages_Received_UPDATEPath{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -14216,9 +14211,9 @@ func (n *Bgp_Neighbor_Messages_Received) UPDATE() *Bgp_Neighbor_Messages_Receive } } -// UPDATE returns from Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "UPDATE". -func (n *Bgp_Neighbor_Messages_ReceivedAny) UPDATE() *Bgp_Neighbor_Messages_Received_UPDATEAny { - return &Bgp_Neighbor_Messages_Received_UPDATEAny{ +// UPDATE returns from Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "UPDATE". +func (n *Bgp_Neighbor_Messages_ReceivedPathAny) UPDATE() *Bgp_Neighbor_Messages_Received_UPDATEPathAny { + return &Bgp_Neighbor_Messages_Received_UPDATEPathAny{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -14227,9 +14222,9 @@ func (n *Bgp_Neighbor_Messages_ReceivedAny) UPDATE() *Bgp_Neighbor_Messages_Rece } } -// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-error-code". -func (n *Bgp_Neighbor_Messages_Received) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorCode { - return &Bgp_Neighbor_Messages_Received_LastNotificationErrorCode{ +// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-error-code". +func (n *Bgp_Neighbor_Messages_ReceivedPath) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath { + return &Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -14238,9 +14233,9 @@ func (n *Bgp_Neighbor_Messages_Received) LastNotificationErrorCode() *Bgp_Neighb } } -// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-error-code". -func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny { - return &Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny{ +// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-error-code". +func (n *Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny { + return &Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -14249,9 +14244,9 @@ func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorCode() *Bgp_Nei } } -// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-error-subcode". -func (n *Bgp_Neighbor_Messages_Received) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode { - return &Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode{ +// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-error-subcode". +func (n *Bgp_Neighbor_Messages_ReceivedPath) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath { + return &Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -14260,9 +14255,9 @@ func (n *Bgp_Neighbor_Messages_Received) LastNotificationErrorSubcode() *Bgp_Nei } } -// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-error-subcode". -func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny { - return &Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny{ +// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-error-subcode". +func (n *Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny { + return &Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -14271,9 +14266,9 @@ func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorSubcode() *Bgp_ } } -// LastNotificationTime returns from Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-time". -func (n *Bgp_Neighbor_Messages_Received) LastNotificationTime() *Bgp_Neighbor_Messages_Received_LastNotificationTime { - return &Bgp_Neighbor_Messages_Received_LastNotificationTime{ +// LastNotificationTime returns from Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-time". +func (n *Bgp_Neighbor_Messages_ReceivedPath) LastNotificationTime() *Bgp_Neighbor_Messages_Received_LastNotificationTimePath { + return &Bgp_Neighbor_Messages_Received_LastNotificationTimePath{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -14282,9 +14277,9 @@ func (n *Bgp_Neighbor_Messages_Received) LastNotificationTime() *Bgp_Neighbor_Me } } -// LastNotificationTime returns from Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-time". -func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationTime() *Bgp_Neighbor_Messages_Received_LastNotificationTimeAny { - return &Bgp_Neighbor_Messages_Received_LastNotificationTimeAny{ +// LastNotificationTime returns from Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-time". +func (n *Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationTime() *Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny { + return &Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -14293,69 +14288,69 @@ func (n *Bgp_Neighbor_Messages_ReceivedAny) LastNotificationTime() *Bgp_Neighbor } } -// Bgp_Neighbor_Messages_Sent represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent YANG schema element. -type Bgp_Neighbor_Messages_Sent struct { +// Bgp_Neighbor_Messages_SentPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent YANG schema element. +type Bgp_Neighbor_Messages_SentPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_SentAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent YANG schema element. -type Bgp_Neighbor_Messages_SentAny struct { +// Bgp_Neighbor_Messages_SentPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent YANG schema element. +type Bgp_Neighbor_Messages_SentPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_NOTIFICATION represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. -type Bgp_Neighbor_Messages_Sent_NOTIFICATION struct { +// Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. +type Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. -type Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny struct { +// Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. +type Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_UPDATE represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. -type Bgp_Neighbor_Messages_Sent_UPDATE struct { +// Bgp_Neighbor_Messages_Sent_UPDATEPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. +type Bgp_Neighbor_Messages_Sent_UPDATEPath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_UPDATEAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. -type Bgp_Neighbor_Messages_Sent_UPDATEAny struct { +// Bgp_Neighbor_Messages_Sent_UPDATEPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. +type Bgp_Neighbor_Messages_Sent_UPDATEPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationTime represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationTime struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. -type Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny struct { +// Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. +type Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny struct { *ygot.NodePath } -// NOTIFICATION returns from Bgp_Neighbor_Messages_Sent the path struct for its child "NOTIFICATION". -func (n *Bgp_Neighbor_Messages_Sent) NOTIFICATION() *Bgp_Neighbor_Messages_Sent_NOTIFICATION { - return &Bgp_Neighbor_Messages_Sent_NOTIFICATION{ +// NOTIFICATION returns from Bgp_Neighbor_Messages_SentPath the path struct for its child "NOTIFICATION". +func (n *Bgp_Neighbor_Messages_SentPath) NOTIFICATION() *Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath { + return &Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -14364,9 +14359,9 @@ func (n *Bgp_Neighbor_Messages_Sent) NOTIFICATION() *Bgp_Neighbor_Messages_Sent_ } } -// NOTIFICATION returns from Bgp_Neighbor_Messages_SentAny the path struct for its child "NOTIFICATION". -func (n *Bgp_Neighbor_Messages_SentAny) NOTIFICATION() *Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny { - return &Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny{ +// NOTIFICATION returns from Bgp_Neighbor_Messages_SentPathAny the path struct for its child "NOTIFICATION". +func (n *Bgp_Neighbor_Messages_SentPathAny) NOTIFICATION() *Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny { + return &Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -14375,9 +14370,9 @@ func (n *Bgp_Neighbor_Messages_SentAny) NOTIFICATION() *Bgp_Neighbor_Messages_Se } } -// UPDATE returns from Bgp_Neighbor_Messages_Sent the path struct for its child "UPDATE". -func (n *Bgp_Neighbor_Messages_Sent) UPDATE() *Bgp_Neighbor_Messages_Sent_UPDATE { - return &Bgp_Neighbor_Messages_Sent_UPDATE{ +// UPDATE returns from Bgp_Neighbor_Messages_SentPath the path struct for its child "UPDATE". +func (n *Bgp_Neighbor_Messages_SentPath) UPDATE() *Bgp_Neighbor_Messages_Sent_UPDATEPath { + return &Bgp_Neighbor_Messages_Sent_UPDATEPath{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -14386,9 +14381,9 @@ func (n *Bgp_Neighbor_Messages_Sent) UPDATE() *Bgp_Neighbor_Messages_Sent_UPDATE } } -// UPDATE returns from Bgp_Neighbor_Messages_SentAny the path struct for its child "UPDATE". -func (n *Bgp_Neighbor_Messages_SentAny) UPDATE() *Bgp_Neighbor_Messages_Sent_UPDATEAny { - return &Bgp_Neighbor_Messages_Sent_UPDATEAny{ +// UPDATE returns from Bgp_Neighbor_Messages_SentPathAny the path struct for its child "UPDATE". +func (n *Bgp_Neighbor_Messages_SentPathAny) UPDATE() *Bgp_Neighbor_Messages_Sent_UPDATEPathAny { + return &Bgp_Neighbor_Messages_Sent_UPDATEPathAny{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -14397,9 +14392,9 @@ func (n *Bgp_Neighbor_Messages_SentAny) UPDATE() *Bgp_Neighbor_Messages_Sent_UPD } } -// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-error-code". -func (n *Bgp_Neighbor_Messages_Sent) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode { - return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode{ +// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-error-code". +func (n *Bgp_Neighbor_Messages_SentPath) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath { + return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -14408,9 +14403,9 @@ func (n *Bgp_Neighbor_Messages_Sent) LastNotificationErrorCode() *Bgp_Neighbor_M } } -// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-error-code". -func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny { - return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny{ +// LastNotificationErrorCode returns from Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-error-code". +func (n *Bgp_Neighbor_Messages_SentPathAny) LastNotificationErrorCode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny { + return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -14419,9 +14414,9 @@ func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationErrorCode() *Bgp_Neighbo } } -// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-error-subcode". -func (n *Bgp_Neighbor_Messages_Sent) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode { - return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode{ +// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-error-subcode". +func (n *Bgp_Neighbor_Messages_SentPath) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath { + return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -14430,9 +14425,9 @@ func (n *Bgp_Neighbor_Messages_Sent) LastNotificationErrorSubcode() *Bgp_Neighbo } } -// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-error-subcode". -func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny { - return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny{ +// LastNotificationErrorSubcode returns from Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-error-subcode". +func (n *Bgp_Neighbor_Messages_SentPathAny) LastNotificationErrorSubcode() *Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny { + return &Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -14441,9 +14436,9 @@ func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationErrorSubcode() *Bgp_Neig } } -// LastNotificationTime returns from Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-time". -func (n *Bgp_Neighbor_Messages_Sent) LastNotificationTime() *Bgp_Neighbor_Messages_Sent_LastNotificationTime { - return &Bgp_Neighbor_Messages_Sent_LastNotificationTime{ +// LastNotificationTime returns from Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-time". +func (n *Bgp_Neighbor_Messages_SentPath) LastNotificationTime() *Bgp_Neighbor_Messages_Sent_LastNotificationTimePath { + return &Bgp_Neighbor_Messages_Sent_LastNotificationTimePath{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -14452,9 +14447,9 @@ func (n *Bgp_Neighbor_Messages_Sent) LastNotificationTime() *Bgp_Neighbor_Messag } } -// LastNotificationTime returns from Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-time". -func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationTime() *Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny { - return &Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny{ +// LastNotificationTime returns from Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-time". +func (n *Bgp_Neighbor_Messages_SentPathAny) LastNotificationTime() *Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny { + return &Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -14463,39 +14458,39 @@ func (n *Bgp_Neighbor_Messages_SentAny) LastNotificationTime() *Bgp_Neighbor_Mes } } -// Bgp_Neighbor_Queues represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues YANG schema element. -type Bgp_Neighbor_Queues struct { +// Bgp_Neighbor_QueuesPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues YANG schema element. +type Bgp_Neighbor_QueuesPath struct { *ygot.NodePath } -// Bgp_Neighbor_QueuesAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues YANG schema element. -type Bgp_Neighbor_QueuesAny struct { +// Bgp_Neighbor_QueuesPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues YANG schema element. +type Bgp_Neighbor_QueuesPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Queues_Input represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/input YANG schema element. -type Bgp_Neighbor_Queues_Input struct { +// Bgp_Neighbor_Queues_InputPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/input YANG schema element. +type Bgp_Neighbor_Queues_InputPath struct { *ygot.NodePath } -// Bgp_Neighbor_Queues_InputAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/input YANG schema element. -type Bgp_Neighbor_Queues_InputAny struct { +// Bgp_Neighbor_Queues_InputPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/input YANG schema element. +type Bgp_Neighbor_Queues_InputPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Queues_Output represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/output YANG schema element. -type Bgp_Neighbor_Queues_Output struct { +// Bgp_Neighbor_Queues_OutputPath represents the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/output YANG schema element. +type Bgp_Neighbor_Queues_OutputPath struct { *ygot.NodePath } -// Bgp_Neighbor_Queues_OutputAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/output YANG schema element. -type Bgp_Neighbor_Queues_OutputAny struct { +// Bgp_Neighbor_Queues_OutputPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/state/queues/output YANG schema element. +type Bgp_Neighbor_Queues_OutputPathAny struct { *ygot.NodePath } -// Input returns from Bgp_Neighbor_Queues the path struct for its child "input". -func (n *Bgp_Neighbor_Queues) Input() *Bgp_Neighbor_Queues_Input { - return &Bgp_Neighbor_Queues_Input{ +// Input returns from Bgp_Neighbor_QueuesPath the path struct for its child "input". +func (n *Bgp_Neighbor_QueuesPath) Input() *Bgp_Neighbor_Queues_InputPath { + return &Bgp_Neighbor_Queues_InputPath{ NodePath: ygot.NewNodePath( []string{"input"}, map[string]interface{}{}, @@ -14504,9 +14499,9 @@ func (n *Bgp_Neighbor_Queues) Input() *Bgp_Neighbor_Queues_Input { } } -// Input returns from Bgp_Neighbor_QueuesAny the path struct for its child "input". -func (n *Bgp_Neighbor_QueuesAny) Input() *Bgp_Neighbor_Queues_InputAny { - return &Bgp_Neighbor_Queues_InputAny{ +// Input returns from Bgp_Neighbor_QueuesPathAny the path struct for its child "input". +func (n *Bgp_Neighbor_QueuesPathAny) Input() *Bgp_Neighbor_Queues_InputPathAny { + return &Bgp_Neighbor_Queues_InputPathAny{ NodePath: ygot.NewNodePath( []string{"input"}, map[string]interface{}{}, @@ -14515,9 +14510,9 @@ func (n *Bgp_Neighbor_QueuesAny) Input() *Bgp_Neighbor_Queues_InputAny { } } -// Output returns from Bgp_Neighbor_Queues the path struct for its child "output". -func (n *Bgp_Neighbor_Queues) Output() *Bgp_Neighbor_Queues_Output { - return &Bgp_Neighbor_Queues_Output{ +// Output returns from Bgp_Neighbor_QueuesPath the path struct for its child "output". +func (n *Bgp_Neighbor_QueuesPath) Output() *Bgp_Neighbor_Queues_OutputPath { + return &Bgp_Neighbor_Queues_OutputPath{ NodePath: ygot.NewNodePath( []string{"output"}, map[string]interface{}{}, @@ -14526,9 +14521,9 @@ func (n *Bgp_Neighbor_Queues) Output() *Bgp_Neighbor_Queues_Output { } } -// Output returns from Bgp_Neighbor_QueuesAny the path struct for its child "output". -func (n *Bgp_Neighbor_QueuesAny) Output() *Bgp_Neighbor_Queues_OutputAny { - return &Bgp_Neighbor_Queues_OutputAny{ +// Output returns from Bgp_Neighbor_QueuesPathAny the path struct for its child "output". +func (n *Bgp_Neighbor_QueuesPathAny) Output() *Bgp_Neighbor_Queues_OutputPathAny { + return &Bgp_Neighbor_Queues_OutputPathAny{ NodePath: ygot.NewNodePath( []string{"output"}, map[string]interface{}{}, @@ -14537,231 +14532,231 @@ func (n *Bgp_Neighbor_QueuesAny) Output() *Bgp_Neighbor_Queues_OutputAny { } } -// Bgp_Neighbor_RouteReflector represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector YANG schema element. -type Bgp_Neighbor_RouteReflector struct { +// Bgp_Neighbor_RouteReflectorPath represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector YANG schema element. +type Bgp_Neighbor_RouteReflectorPath struct { *ygot.NodePath } -// Bgp_Neighbor_RouteReflectorAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector YANG schema element. -type Bgp_Neighbor_RouteReflectorAny struct { +// Bgp_Neighbor_RouteReflectorPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector YANG schema element. +type Bgp_Neighbor_RouteReflectorPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_RouteReflector_RouteReflectorClient represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/state/route-reflector-client YANG schema element. -type Bgp_Neighbor_RouteReflector_RouteReflectorClient struct { +// Bgp_Neighbor_RouteReflector_RouteReflectorClientPath represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/config/route-reflector-client YANG schema element. +type Bgp_Neighbor_RouteReflector_RouteReflectorClientPath struct { *ygot.NodePath } -// Bgp_Neighbor_RouteReflector_RouteReflectorClientAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/state/route-reflector-client YANG schema element. -type Bgp_Neighbor_RouteReflector_RouteReflectorClientAny struct { +// Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/config/route-reflector-client YANG schema element. +type Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_RouteReflector_RouteReflectorClusterId represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/state/route-reflector-cluster-id YANG schema element. -type Bgp_Neighbor_RouteReflector_RouteReflectorClusterId struct { +// Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath represents the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/config/route-reflector-cluster-id YANG schema element. +type Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath struct { *ygot.NodePath } -// Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/state/route-reflector-cluster-id YANG schema element. -type Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny struct { +// Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/route-reflector/config/route-reflector-cluster-id YANG schema element. +type Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny struct { *ygot.NodePath } -// RouteReflectorClient returns from Bgp_Neighbor_RouteReflector the path struct for its child "route-reflector-client". -func (n *Bgp_Neighbor_RouteReflector) RouteReflectorClient() *Bgp_Neighbor_RouteReflector_RouteReflectorClient { - return &Bgp_Neighbor_RouteReflector_RouteReflectorClient{ +// RouteReflectorClient returns from Bgp_Neighbor_RouteReflectorPath the path struct for its child "route-reflector-client". +func (n *Bgp_Neighbor_RouteReflectorPath) RouteReflectorClient() *Bgp_Neighbor_RouteReflector_RouteReflectorClientPath { + return &Bgp_Neighbor_RouteReflector_RouteReflectorClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClient returns from Bgp_Neighbor_RouteReflectorAny the path struct for its child "route-reflector-client". -func (n *Bgp_Neighbor_RouteReflectorAny) RouteReflectorClient() *Bgp_Neighbor_RouteReflector_RouteReflectorClientAny { - return &Bgp_Neighbor_RouteReflector_RouteReflectorClientAny{ +// RouteReflectorClient returns from Bgp_Neighbor_RouteReflectorPathAny the path struct for its child "route-reflector-client". +func (n *Bgp_Neighbor_RouteReflectorPathAny) RouteReflectorClient() *Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny { + return &Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from Bgp_Neighbor_RouteReflector the path struct for its child "route-reflector-cluster-id". -func (n *Bgp_Neighbor_RouteReflector) RouteReflectorClusterId() *Bgp_Neighbor_RouteReflector_RouteReflectorClusterId { - return &Bgp_Neighbor_RouteReflector_RouteReflectorClusterId{ +// RouteReflectorClusterId returns from Bgp_Neighbor_RouteReflectorPath the path struct for its child "route-reflector-cluster-id". +func (n *Bgp_Neighbor_RouteReflectorPath) RouteReflectorClusterId() *Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath { + return &Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from Bgp_Neighbor_RouteReflectorAny the path struct for its child "route-reflector-cluster-id". -func (n *Bgp_Neighbor_RouteReflectorAny) RouteReflectorClusterId() *Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny { - return &Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny{ +// RouteReflectorClusterId returns from Bgp_Neighbor_RouteReflectorPathAny the path struct for its child "route-reflector-cluster-id". +func (n *Bgp_Neighbor_RouteReflectorPathAny) RouteReflectorClusterId() *Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny { + return &Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_Timers represents the /openconfig-bgp/bgp/neighbors/neighbor/timers YANG schema element. -type Bgp_Neighbor_Timers struct { +// Bgp_Neighbor_TimersPath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers YANG schema element. +type Bgp_Neighbor_TimersPath struct { *ygot.NodePath } -// Bgp_Neighbor_TimersAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers YANG schema element. -type Bgp_Neighbor_TimersAny struct { +// Bgp_Neighbor_TimersPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers YANG schema element. +type Bgp_Neighbor_TimersPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_ConnectRetry represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/connect-retry YANG schema element. -type Bgp_Neighbor_Timers_ConnectRetry struct { +// Bgp_Neighbor_Timers_ConnectRetryPath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/connect-retry YANG schema element. +type Bgp_Neighbor_Timers_ConnectRetryPath struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_ConnectRetryAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/connect-retry YANG schema element. -type Bgp_Neighbor_Timers_ConnectRetryAny struct { +// Bgp_Neighbor_Timers_ConnectRetryPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/connect-retry YANG schema element. +type Bgp_Neighbor_Timers_ConnectRetryPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_HoldTime represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/hold-time YANG schema element. -type Bgp_Neighbor_Timers_HoldTime struct { +// Bgp_Neighbor_Timers_HoldTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/hold-time YANG schema element. +type Bgp_Neighbor_Timers_HoldTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_HoldTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/hold-time YANG schema element. -type Bgp_Neighbor_Timers_HoldTimeAny struct { +// Bgp_Neighbor_Timers_HoldTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/hold-time YANG schema element. +type Bgp_Neighbor_Timers_HoldTimePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_KeepaliveInterval represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/keepalive-interval YANG schema element. -type Bgp_Neighbor_Timers_KeepaliveInterval struct { +// Bgp_Neighbor_Timers_KeepaliveIntervalPath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/keepalive-interval YANG schema element. +type Bgp_Neighbor_Timers_KeepaliveIntervalPath struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_KeepaliveIntervalAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/keepalive-interval YANG schema element. -type Bgp_Neighbor_Timers_KeepaliveIntervalAny struct { +// Bgp_Neighbor_Timers_KeepaliveIntervalPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/keepalive-interval YANG schema element. +type Bgp_Neighbor_Timers_KeepaliveIntervalPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_MinimumAdvertisementInterval represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/minimum-advertisement-interval YANG schema element. -type Bgp_Neighbor_Timers_MinimumAdvertisementInterval struct { +// Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/minimum-advertisement-interval YANG schema element. +type Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/minimum-advertisement-interval YANG schema element. -type Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny struct { +// Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/config/minimum-advertisement-interval YANG schema element. +type Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_NegotiatedHoldTime represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. -type Bgp_Neighbor_Timers_NegotiatedHoldTime struct { +// Bgp_Neighbor_Timers_NegotiatedHoldTimePath represents the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. +type Bgp_Neighbor_Timers_NegotiatedHoldTimePath struct { *ygot.NodePath } -// Bgp_Neighbor_Timers_NegotiatedHoldTimeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. -type Bgp_Neighbor_Timers_NegotiatedHoldTimeAny struct { +// Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. +type Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny struct { *ygot.NodePath } -// ConnectRetry returns from Bgp_Neighbor_Timers the path struct for its child "connect-retry". -func (n *Bgp_Neighbor_Timers) ConnectRetry() *Bgp_Neighbor_Timers_ConnectRetry { - return &Bgp_Neighbor_Timers_ConnectRetry{ +// ConnectRetry returns from Bgp_Neighbor_TimersPath the path struct for its child "connect-retry". +func (n *Bgp_Neighbor_TimersPath) ConnectRetry() *Bgp_Neighbor_Timers_ConnectRetryPath { + return &Bgp_Neighbor_Timers_ConnectRetryPath{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// ConnectRetry returns from Bgp_Neighbor_TimersAny the path struct for its child "connect-retry". -func (n *Bgp_Neighbor_TimersAny) ConnectRetry() *Bgp_Neighbor_Timers_ConnectRetryAny { - return &Bgp_Neighbor_Timers_ConnectRetryAny{ +// ConnectRetry returns from Bgp_Neighbor_TimersPathAny the path struct for its child "connect-retry". +func (n *Bgp_Neighbor_TimersPathAny) ConnectRetry() *Bgp_Neighbor_Timers_ConnectRetryPathAny { + return &Bgp_Neighbor_Timers_ConnectRetryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Bgp_Neighbor_Timers the path struct for its child "hold-time". -func (n *Bgp_Neighbor_Timers) HoldTime() *Bgp_Neighbor_Timers_HoldTime { - return &Bgp_Neighbor_Timers_HoldTime{ +// HoldTime returns from Bgp_Neighbor_TimersPath the path struct for its child "hold-time". +func (n *Bgp_Neighbor_TimersPath) HoldTime() *Bgp_Neighbor_Timers_HoldTimePath { + return &Bgp_Neighbor_Timers_HoldTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Bgp_Neighbor_TimersAny the path struct for its child "hold-time". -func (n *Bgp_Neighbor_TimersAny) HoldTime() *Bgp_Neighbor_Timers_HoldTimeAny { - return &Bgp_Neighbor_Timers_HoldTimeAny{ +// HoldTime returns from Bgp_Neighbor_TimersPathAny the path struct for its child "hold-time". +func (n *Bgp_Neighbor_TimersPathAny) HoldTime() *Bgp_Neighbor_Timers_HoldTimePathAny { + return &Bgp_Neighbor_Timers_HoldTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from Bgp_Neighbor_Timers the path struct for its child "keepalive-interval". -func (n *Bgp_Neighbor_Timers) KeepaliveInterval() *Bgp_Neighbor_Timers_KeepaliveInterval { - return &Bgp_Neighbor_Timers_KeepaliveInterval{ +// KeepaliveInterval returns from Bgp_Neighbor_TimersPath the path struct for its child "keepalive-interval". +func (n *Bgp_Neighbor_TimersPath) KeepaliveInterval() *Bgp_Neighbor_Timers_KeepaliveIntervalPath { + return &Bgp_Neighbor_Timers_KeepaliveIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from Bgp_Neighbor_TimersAny the path struct for its child "keepalive-interval". -func (n *Bgp_Neighbor_TimersAny) KeepaliveInterval() *Bgp_Neighbor_Timers_KeepaliveIntervalAny { - return &Bgp_Neighbor_Timers_KeepaliveIntervalAny{ +// KeepaliveInterval returns from Bgp_Neighbor_TimersPathAny the path struct for its child "keepalive-interval". +func (n *Bgp_Neighbor_TimersPathAny) KeepaliveInterval() *Bgp_Neighbor_Timers_KeepaliveIntervalPathAny { + return &Bgp_Neighbor_Timers_KeepaliveIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from Bgp_Neighbor_Timers the path struct for its child "minimum-advertisement-interval". -func (n *Bgp_Neighbor_Timers) MinimumAdvertisementInterval() *Bgp_Neighbor_Timers_MinimumAdvertisementInterval { - return &Bgp_Neighbor_Timers_MinimumAdvertisementInterval{ +// MinimumAdvertisementInterval returns from Bgp_Neighbor_TimersPath the path struct for its child "minimum-advertisement-interval". +func (n *Bgp_Neighbor_TimersPath) MinimumAdvertisementInterval() *Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath { + return &Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from Bgp_Neighbor_TimersAny the path struct for its child "minimum-advertisement-interval". -func (n *Bgp_Neighbor_TimersAny) MinimumAdvertisementInterval() *Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny { - return &Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny{ +// MinimumAdvertisementInterval returns from Bgp_Neighbor_TimersPathAny the path struct for its child "minimum-advertisement-interval". +func (n *Bgp_Neighbor_TimersPathAny) MinimumAdvertisementInterval() *Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny { + return &Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// NegotiatedHoldTime returns from Bgp_Neighbor_Timers the path struct for its child "negotiated-hold-time". -func (n *Bgp_Neighbor_Timers) NegotiatedHoldTime() *Bgp_Neighbor_Timers_NegotiatedHoldTime { - return &Bgp_Neighbor_Timers_NegotiatedHoldTime{ +// NegotiatedHoldTime returns from Bgp_Neighbor_TimersPath the path struct for its child "negotiated-hold-time". +func (n *Bgp_Neighbor_TimersPath) NegotiatedHoldTime() *Bgp_Neighbor_Timers_NegotiatedHoldTimePath { + return &Bgp_Neighbor_Timers_NegotiatedHoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-hold-time"}, map[string]interface{}{}, @@ -14770,9 +14765,9 @@ func (n *Bgp_Neighbor_Timers) NegotiatedHoldTime() *Bgp_Neighbor_Timers_Negotiat } } -// NegotiatedHoldTime returns from Bgp_Neighbor_TimersAny the path struct for its child "negotiated-hold-time". -func (n *Bgp_Neighbor_TimersAny) NegotiatedHoldTime() *Bgp_Neighbor_Timers_NegotiatedHoldTimeAny { - return &Bgp_Neighbor_Timers_NegotiatedHoldTimeAny{ +// NegotiatedHoldTime returns from Bgp_Neighbor_TimersPathAny the path struct for its child "negotiated-hold-time". +func (n *Bgp_Neighbor_TimersPathAny) NegotiatedHoldTime() *Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny { + return &Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-hold-time"}, map[string]interface{}{}, @@ -14781,111 +14776,111 @@ func (n *Bgp_Neighbor_TimersAny) NegotiatedHoldTime() *Bgp_Neighbor_Timers_Negot } } -// Bgp_Neighbor_Transport represents the /openconfig-bgp/bgp/neighbors/neighbor/transport YANG schema element. -type Bgp_Neighbor_Transport struct { +// Bgp_Neighbor_TransportPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport YANG schema element. +type Bgp_Neighbor_TransportPath struct { *ygot.NodePath } -// Bgp_Neighbor_TransportAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport YANG schema element. -type Bgp_Neighbor_TransportAny struct { +// Bgp_Neighbor_TransportPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport YANG schema element. +type Bgp_Neighbor_TransportPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_LocalAddress represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-address YANG schema element. -type Bgp_Neighbor_Transport_LocalAddress struct { +// Bgp_Neighbor_Transport_LocalAddressPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/local-address YANG schema element. +type Bgp_Neighbor_Transport_LocalAddressPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_LocalAddressAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-address YANG schema element. -type Bgp_Neighbor_Transport_LocalAddressAny struct { +// Bgp_Neighbor_Transport_LocalAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/local-address YANG schema element. +type Bgp_Neighbor_Transport_LocalAddressPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_LocalPort represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. -type Bgp_Neighbor_Transport_LocalPort struct { +// Bgp_Neighbor_Transport_LocalPortPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. +type Bgp_Neighbor_Transport_LocalPortPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_LocalPortAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. -type Bgp_Neighbor_Transport_LocalPortAny struct { +// Bgp_Neighbor_Transport_LocalPortPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. +type Bgp_Neighbor_Transport_LocalPortPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_MtuDiscovery represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/mtu-discovery YANG schema element. -type Bgp_Neighbor_Transport_MtuDiscovery struct { +// Bgp_Neighbor_Transport_MtuDiscoveryPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/mtu-discovery YANG schema element. +type Bgp_Neighbor_Transport_MtuDiscoveryPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_MtuDiscoveryAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/mtu-discovery YANG schema element. -type Bgp_Neighbor_Transport_MtuDiscoveryAny struct { +// Bgp_Neighbor_Transport_MtuDiscoveryPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/mtu-discovery YANG schema element. +type Bgp_Neighbor_Transport_MtuDiscoveryPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_PassiveMode represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/passive-mode YANG schema element. -type Bgp_Neighbor_Transport_PassiveMode struct { +// Bgp_Neighbor_Transport_PassiveModePath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/passive-mode YANG schema element. +type Bgp_Neighbor_Transport_PassiveModePath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_PassiveModeAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/passive-mode YANG schema element. -type Bgp_Neighbor_Transport_PassiveModeAny struct { +// Bgp_Neighbor_Transport_PassiveModePathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/passive-mode YANG schema element. +type Bgp_Neighbor_Transport_PassiveModePathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_RemoteAddress represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. -type Bgp_Neighbor_Transport_RemoteAddress struct { +// Bgp_Neighbor_Transport_RemoteAddressPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. +type Bgp_Neighbor_Transport_RemoteAddressPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_RemoteAddressAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. -type Bgp_Neighbor_Transport_RemoteAddressAny struct { +// Bgp_Neighbor_Transport_RemoteAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. +type Bgp_Neighbor_Transport_RemoteAddressPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_RemotePort represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. -type Bgp_Neighbor_Transport_RemotePort struct { +// Bgp_Neighbor_Transport_RemotePortPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. +type Bgp_Neighbor_Transport_RemotePortPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_RemotePortAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. -type Bgp_Neighbor_Transport_RemotePortAny struct { +// Bgp_Neighbor_Transport_RemotePortPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. +type Bgp_Neighbor_Transport_RemotePortPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_TcpMss represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/tcp-mss YANG schema element. -type Bgp_Neighbor_Transport_TcpMss struct { +// Bgp_Neighbor_Transport_TcpMssPath represents the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/tcp-mss YANG schema element. +type Bgp_Neighbor_Transport_TcpMssPath struct { *ygot.NodePath } -// Bgp_Neighbor_Transport_TcpMssAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/state/tcp-mss YANG schema element. -type Bgp_Neighbor_Transport_TcpMssAny struct { +// Bgp_Neighbor_Transport_TcpMssPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/transport/config/tcp-mss YANG schema element. +type Bgp_Neighbor_Transport_TcpMssPathAny struct { *ygot.NodePath } -// LocalAddress returns from Bgp_Neighbor_Transport the path struct for its child "local-address". -func (n *Bgp_Neighbor_Transport) LocalAddress() *Bgp_Neighbor_Transport_LocalAddress { - return &Bgp_Neighbor_Transport_LocalAddress{ +// LocalAddress returns from Bgp_Neighbor_TransportPath the path struct for its child "local-address". +func (n *Bgp_Neighbor_TransportPath) LocalAddress() *Bgp_Neighbor_Transport_LocalAddressPath { + return &Bgp_Neighbor_Transport_LocalAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from Bgp_Neighbor_TransportAny the path struct for its child "local-address". -func (n *Bgp_Neighbor_TransportAny) LocalAddress() *Bgp_Neighbor_Transport_LocalAddressAny { - return &Bgp_Neighbor_Transport_LocalAddressAny{ +// LocalAddress returns from Bgp_Neighbor_TransportPathAny the path struct for its child "local-address". +func (n *Bgp_Neighbor_TransportPathAny) LocalAddress() *Bgp_Neighbor_Transport_LocalAddressPathAny { + return &Bgp_Neighbor_Transport_LocalAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalPort returns from Bgp_Neighbor_Transport the path struct for its child "local-port". -func (n *Bgp_Neighbor_Transport) LocalPort() *Bgp_Neighbor_Transport_LocalPort { - return &Bgp_Neighbor_Transport_LocalPort{ +// LocalPort returns from Bgp_Neighbor_TransportPath the path struct for its child "local-port". +func (n *Bgp_Neighbor_TransportPath) LocalPort() *Bgp_Neighbor_Transport_LocalPortPath { + return &Bgp_Neighbor_Transport_LocalPortPath{ NodePath: ygot.NewNodePath( []string{"state", "local-port"}, map[string]interface{}{}, @@ -14894,9 +14889,9 @@ func (n *Bgp_Neighbor_Transport) LocalPort() *Bgp_Neighbor_Transport_LocalPort { } } -// LocalPort returns from Bgp_Neighbor_TransportAny the path struct for its child "local-port". -func (n *Bgp_Neighbor_TransportAny) LocalPort() *Bgp_Neighbor_Transport_LocalPortAny { - return &Bgp_Neighbor_Transport_LocalPortAny{ +// LocalPort returns from Bgp_Neighbor_TransportPathAny the path struct for its child "local-port". +func (n *Bgp_Neighbor_TransportPathAny) LocalPort() *Bgp_Neighbor_Transport_LocalPortPathAny { + return &Bgp_Neighbor_Transport_LocalPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-port"}, map[string]interface{}{}, @@ -14905,53 +14900,53 @@ func (n *Bgp_Neighbor_TransportAny) LocalPort() *Bgp_Neighbor_Transport_LocalPor } } -// MtuDiscovery returns from Bgp_Neighbor_Transport the path struct for its child "mtu-discovery". -func (n *Bgp_Neighbor_Transport) MtuDiscovery() *Bgp_Neighbor_Transport_MtuDiscovery { - return &Bgp_Neighbor_Transport_MtuDiscovery{ +// MtuDiscovery returns from Bgp_Neighbor_TransportPath the path struct for its child "mtu-discovery". +func (n *Bgp_Neighbor_TransportPath) MtuDiscovery() *Bgp_Neighbor_Transport_MtuDiscoveryPath { + return &Bgp_Neighbor_Transport_MtuDiscoveryPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from Bgp_Neighbor_TransportAny the path struct for its child "mtu-discovery". -func (n *Bgp_Neighbor_TransportAny) MtuDiscovery() *Bgp_Neighbor_Transport_MtuDiscoveryAny { - return &Bgp_Neighbor_Transport_MtuDiscoveryAny{ +// MtuDiscovery returns from Bgp_Neighbor_TransportPathAny the path struct for its child "mtu-discovery". +func (n *Bgp_Neighbor_TransportPathAny) MtuDiscovery() *Bgp_Neighbor_Transport_MtuDiscoveryPathAny { + return &Bgp_Neighbor_Transport_MtuDiscoveryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from Bgp_Neighbor_Transport the path struct for its child "passive-mode". -func (n *Bgp_Neighbor_Transport) PassiveMode() *Bgp_Neighbor_Transport_PassiveMode { - return &Bgp_Neighbor_Transport_PassiveMode{ +// PassiveMode returns from Bgp_Neighbor_TransportPath the path struct for its child "passive-mode". +func (n *Bgp_Neighbor_TransportPath) PassiveMode() *Bgp_Neighbor_Transport_PassiveModePath { + return &Bgp_Neighbor_Transport_PassiveModePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from Bgp_Neighbor_TransportAny the path struct for its child "passive-mode". -func (n *Bgp_Neighbor_TransportAny) PassiveMode() *Bgp_Neighbor_Transport_PassiveModeAny { - return &Bgp_Neighbor_Transport_PassiveModeAny{ +// PassiveMode returns from Bgp_Neighbor_TransportPathAny the path struct for its child "passive-mode". +func (n *Bgp_Neighbor_TransportPathAny) PassiveMode() *Bgp_Neighbor_Transport_PassiveModePathAny { + return &Bgp_Neighbor_Transport_PassiveModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// RemoteAddress returns from Bgp_Neighbor_Transport the path struct for its child "remote-address". -func (n *Bgp_Neighbor_Transport) RemoteAddress() *Bgp_Neighbor_Transport_RemoteAddress { - return &Bgp_Neighbor_Transport_RemoteAddress{ +// RemoteAddress returns from Bgp_Neighbor_TransportPath the path struct for its child "remote-address". +func (n *Bgp_Neighbor_TransportPath) RemoteAddress() *Bgp_Neighbor_Transport_RemoteAddressPath { + return &Bgp_Neighbor_Transport_RemoteAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -14960,9 +14955,9 @@ func (n *Bgp_Neighbor_Transport) RemoteAddress() *Bgp_Neighbor_Transport_RemoteA } } -// RemoteAddress returns from Bgp_Neighbor_TransportAny the path struct for its child "remote-address". -func (n *Bgp_Neighbor_TransportAny) RemoteAddress() *Bgp_Neighbor_Transport_RemoteAddressAny { - return &Bgp_Neighbor_Transport_RemoteAddressAny{ +// RemoteAddress returns from Bgp_Neighbor_TransportPathAny the path struct for its child "remote-address". +func (n *Bgp_Neighbor_TransportPathAny) RemoteAddress() *Bgp_Neighbor_Transport_RemoteAddressPathAny { + return &Bgp_Neighbor_Transport_RemoteAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -14971,9 +14966,9 @@ func (n *Bgp_Neighbor_TransportAny) RemoteAddress() *Bgp_Neighbor_Transport_Remo } } -// RemotePort returns from Bgp_Neighbor_Transport the path struct for its child "remote-port". -func (n *Bgp_Neighbor_Transport) RemotePort() *Bgp_Neighbor_Transport_RemotePort { - return &Bgp_Neighbor_Transport_RemotePort{ +// RemotePort returns from Bgp_Neighbor_TransportPath the path struct for its child "remote-port". +func (n *Bgp_Neighbor_TransportPath) RemotePort() *Bgp_Neighbor_Transport_RemotePortPath { + return &Bgp_Neighbor_Transport_RemotePortPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-port"}, map[string]interface{}{}, @@ -14982,9 +14977,9 @@ func (n *Bgp_Neighbor_Transport) RemotePort() *Bgp_Neighbor_Transport_RemotePort } } -// RemotePort returns from Bgp_Neighbor_TransportAny the path struct for its child "remote-port". -func (n *Bgp_Neighbor_TransportAny) RemotePort() *Bgp_Neighbor_Transport_RemotePortAny { - return &Bgp_Neighbor_Transport_RemotePortAny{ +// RemotePort returns from Bgp_Neighbor_TransportPathAny the path struct for its child "remote-port". +func (n *Bgp_Neighbor_TransportPathAny) RemotePort() *Bgp_Neighbor_Transport_RemotePortPathAny { + return &Bgp_Neighbor_Transport_RemotePortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-port"}, map[string]interface{}{}, @@ -14993,51 +14988,51 @@ func (n *Bgp_Neighbor_TransportAny) RemotePort() *Bgp_Neighbor_Transport_RemoteP } } -// TcpMss returns from Bgp_Neighbor_Transport the path struct for its child "tcp-mss". -func (n *Bgp_Neighbor_Transport) TcpMss() *Bgp_Neighbor_Transport_TcpMss { - return &Bgp_Neighbor_Transport_TcpMss{ +// TcpMss returns from Bgp_Neighbor_TransportPath the path struct for its child "tcp-mss". +func (n *Bgp_Neighbor_TransportPath) TcpMss() *Bgp_Neighbor_Transport_TcpMssPath { + return &Bgp_Neighbor_Transport_TcpMssPath{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from Bgp_Neighbor_TransportAny the path struct for its child "tcp-mss". -func (n *Bgp_Neighbor_TransportAny) TcpMss() *Bgp_Neighbor_Transport_TcpMssAny { - return &Bgp_Neighbor_Transport_TcpMssAny{ +// TcpMss returns from Bgp_Neighbor_TransportPathAny the path struct for its child "tcp-mss". +func (n *Bgp_Neighbor_TransportPathAny) TcpMss() *Bgp_Neighbor_Transport_TcpMssPathAny { + return &Bgp_Neighbor_Transport_TcpMssPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_UseMultiplePaths represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. -type Bgp_Neighbor_UseMultiplePaths struct { +// Bgp_Neighbor_UseMultiplePathsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. +type Bgp_Neighbor_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. -type Bgp_Neighbor_UseMultiplePathsAny struct { +// Bgp_Neighbor_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. +type Bgp_Neighbor_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_Enabled struct { +// Bgp_Neighbor_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/state/enabled YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_EnabledAny struct { +// Bgp_Neighbor_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/config/enabled YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_Neighbor_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_Neighbor_UseMultiplePaths) Ebgp() *Bgp_Neighbor_UseMultiplePaths_Ebgp { - return &Bgp_Neighbor_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_Neighbor_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_Neighbor_UseMultiplePathsPath) Ebgp() *Bgp_Neighbor_UseMultiplePaths_EbgpPath { + return &Bgp_Neighbor_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -15046,9 +15041,9 @@ func (n *Bgp_Neighbor_UseMultiplePaths) Ebgp() *Bgp_Neighbor_UseMultiplePaths_Eb } } -// Ebgp returns from Bgp_Neighbor_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_Neighbor_UseMultiplePathsAny) Ebgp() *Bgp_Neighbor_UseMultiplePaths_EbgpAny { - return &Bgp_Neighbor_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_Neighbor_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_Neighbor_UseMultiplePathsPathAny) Ebgp() *Bgp_Neighbor_UseMultiplePaths_EbgpPathAny { + return &Bgp_Neighbor_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -15057,193 +15052,193 @@ func (n *Bgp_Neighbor_UseMultiplePathsAny) Ebgp() *Bgp_Neighbor_UseMultiplePaths } } -// Enabled returns from Bgp_Neighbor_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_Neighbor_UseMultiplePaths) Enabled() *Bgp_Neighbor_UseMultiplePaths_Enabled { - return &Bgp_Neighbor_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_Neighbor_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_Neighbor_UseMultiplePathsPath) Enabled() *Bgp_Neighbor_UseMultiplePaths_EnabledPath { + return &Bgp_Neighbor_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_Neighbor_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_Neighbor_UseMultiplePathsAny) Enabled() *Bgp_Neighbor_UseMultiplePaths_EnabledAny { - return &Bgp_Neighbor_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_Neighbor_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_Neighbor_UseMultiplePathsPathAny) Enabled() *Bgp_Neighbor_UseMultiplePaths_EnabledPathAny { + return &Bgp_Neighbor_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Bgp_Neighbor_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_Ebgp struct { +// Bgp_Neighbor_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_EbgpAny struct { +// Bgp_Neighbor_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/neighbors/neighbor/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_Neighbor_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_Neighbor_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_Neighbor_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_Neighbor_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_Neighbor_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_Neighbor_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_Neighbor_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_Neighbor_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup represents the /openconfig-bgp/bgp/peer-groups/peer-group YANG schema element. -type Bgp_PeerGroup struct { +// Bgp_PeerGroupPath represents the /openconfig-bgp/bgp/peer-groups/peer-group YANG schema element. +type Bgp_PeerGroupPath struct { *ygot.NodePath } -// Bgp_PeerGroupAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group YANG schema element. -type Bgp_PeerGroupAny struct { +// Bgp_PeerGroupPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group YANG schema element. +type Bgp_PeerGroupPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AuthPassword represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/auth-password YANG schema element. -type Bgp_PeerGroup_AuthPassword struct { +// Bgp_PeerGroup_AuthPasswordPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/auth-password YANG schema element. +type Bgp_PeerGroup_AuthPasswordPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AuthPasswordAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/auth-password YANG schema element. -type Bgp_PeerGroup_AuthPasswordAny struct { +// Bgp_PeerGroup_AuthPasswordPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/auth-password YANG schema element. +type Bgp_PeerGroup_AuthPasswordPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Description represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/description YANG schema element. -type Bgp_PeerGroup_Description struct { +// Bgp_PeerGroup_DescriptionPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/description YANG schema element. +type Bgp_PeerGroup_DescriptionPath struct { *ygot.NodePath } -// Bgp_PeerGroup_DescriptionAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/description YANG schema element. -type Bgp_PeerGroup_DescriptionAny struct { +// Bgp_PeerGroup_DescriptionPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/description YANG schema element. +type Bgp_PeerGroup_DescriptionPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_LocalAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/local-as YANG schema element. -type Bgp_PeerGroup_LocalAs struct { +// Bgp_PeerGroup_LocalAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/local-as YANG schema element. +type Bgp_PeerGroup_LocalAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_LocalAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/local-as YANG schema element. -type Bgp_PeerGroup_LocalAsAny struct { +// Bgp_PeerGroup_LocalAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/local-as YANG schema element. +type Bgp_PeerGroup_LocalAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-as YANG schema element. -type Bgp_PeerGroup_PeerAs struct { +// Bgp_PeerGroup_PeerAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-as YANG schema element. +type Bgp_PeerGroup_PeerAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-as YANG schema element. -type Bgp_PeerGroup_PeerAsAny struct { +// Bgp_PeerGroup_PeerAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-as YANG schema element. +type Bgp_PeerGroup_PeerAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerGroupName represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-group-name YANG schema element. -type Bgp_PeerGroup_PeerGroupName struct { +// Bgp_PeerGroup_PeerGroupNamePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-group-name YANG schema element. +type Bgp_PeerGroup_PeerGroupNamePath struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerGroupNameAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-group-name YANG schema element. -type Bgp_PeerGroup_PeerGroupNameAny struct { +// Bgp_PeerGroup_PeerGroupNamePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-group-name YANG schema element. +type Bgp_PeerGroup_PeerGroupNamePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerType represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-type YANG schema element. -type Bgp_PeerGroup_PeerType struct { +// Bgp_PeerGroup_PeerTypePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-type YANG schema element. +type Bgp_PeerGroup_PeerTypePath struct { *ygot.NodePath } -// Bgp_PeerGroup_PeerTypeAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/peer-type YANG schema element. -type Bgp_PeerGroup_PeerTypeAny struct { +// Bgp_PeerGroup_PeerTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/peer-type YANG schema element. +type Bgp_PeerGroup_PeerTypePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_RemovePrivateAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/remove-private-as YANG schema element. -type Bgp_PeerGroup_RemovePrivateAs struct { +// Bgp_PeerGroup_RemovePrivateAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/remove-private-as YANG schema element. +type Bgp_PeerGroup_RemovePrivateAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_RemovePrivateAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/remove-private-as YANG schema element. -type Bgp_PeerGroup_RemovePrivateAsAny struct { +// Bgp_PeerGroup_RemovePrivateAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/remove-private-as YANG schema element. +type Bgp_PeerGroup_RemovePrivateAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteFlapDamping represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/route-flap-damping YANG schema element. -type Bgp_PeerGroup_RouteFlapDamping struct { +// Bgp_PeerGroup_RouteFlapDampingPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/route-flap-damping YANG schema element. +type Bgp_PeerGroup_RouteFlapDampingPath struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteFlapDampingAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/route-flap-damping YANG schema element. -type Bgp_PeerGroup_RouteFlapDampingAny struct { +// Bgp_PeerGroup_RouteFlapDampingPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/route-flap-damping YANG schema element. +type Bgp_PeerGroup_RouteFlapDampingPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_SendCommunity represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/send-community YANG schema element. -type Bgp_PeerGroup_SendCommunity struct { +// Bgp_PeerGroup_SendCommunityPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/config/send-community YANG schema element. +type Bgp_PeerGroup_SendCommunityPath struct { *ygot.NodePath } -// Bgp_PeerGroup_SendCommunityAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/send-community YANG schema element. -type Bgp_PeerGroup_SendCommunityAny struct { +// Bgp_PeerGroup_SendCommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/config/send-community YANG schema element. +type Bgp_PeerGroup_SendCommunityPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_TotalPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-paths YANG schema element. -type Bgp_PeerGroup_TotalPaths struct { +// Bgp_PeerGroup_TotalPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-paths YANG schema element. +type Bgp_PeerGroup_TotalPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_TotalPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-paths YANG schema element. -type Bgp_PeerGroup_TotalPathsAny struct { +// Bgp_PeerGroup_TotalPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-paths YANG schema element. +type Bgp_PeerGroup_TotalPathsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_TotalPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. -type Bgp_PeerGroup_TotalPrefixes struct { +// Bgp_PeerGroup_TotalPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. +type Bgp_PeerGroup_TotalPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_TotalPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. -type Bgp_PeerGroup_TotalPrefixesAny struct { +// Bgp_PeerGroup_TotalPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. +type Bgp_PeerGroup_TotalPrefixesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from Bgp_PeerGroup the path struct for its child "afi-safi". -func (n *Bgp_PeerGroup) AfiSafiAny() *Bgp_PeerGroup_AfiSafiAny { - return &Bgp_PeerGroup_AfiSafiAny{ +// AfiSafiAny returns from Bgp_PeerGroupPath the path struct for its child "afi-safi". +func (n *Bgp_PeerGroupPath) AfiSafiAny() *Bgp_PeerGroup_AfiSafiPathAny { + return &Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -15252,9 +15247,9 @@ func (n *Bgp_PeerGroup) AfiSafiAny() *Bgp_PeerGroup_AfiSafiAny { } } -// AfiSafiAny returns from Bgp_PeerGroupAny the path struct for its child "afi-safi". -func (n *Bgp_PeerGroupAny) AfiSafiAny() *Bgp_PeerGroup_AfiSafiAny { - return &Bgp_PeerGroup_AfiSafiAny{ +// AfiSafiAny returns from Bgp_PeerGroupPathAny the path struct for its child "afi-safi". +func (n *Bgp_PeerGroupPathAny) AfiSafiAny() *Bgp_PeerGroup_AfiSafiPathAny { + return &Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -15263,9 +15258,9 @@ func (n *Bgp_PeerGroupAny) AfiSafiAny() *Bgp_PeerGroup_AfiSafiAny { } } -// AfiSafi returns from Bgp_PeerGroup the path struct for its child "afi-safi". -func (n *Bgp_PeerGroup) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_PeerGroup_AfiSafi { - return &Bgp_PeerGroup_AfiSafi{ +// AfiSafi returns from Bgp_PeerGroupPath the path struct for its child "afi-safi". +func (n *Bgp_PeerGroupPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_PeerGroup_AfiSafiPath { + return &Bgp_PeerGroup_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -15274,9 +15269,9 @@ func (n *Bgp_PeerGroup) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYP } } -// AfiSafi returns from Bgp_PeerGroupAny the path struct for its child "afi-safi". -func (n *Bgp_PeerGroupAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_PeerGroup_AfiSafiAny { - return &Bgp_PeerGroup_AfiSafiAny{ +// AfiSafi returns from Bgp_PeerGroupPathAny the path struct for its child "afi-safi". +func (n *Bgp_PeerGroupPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_PeerGroup_AfiSafiPathAny { + return &Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -15285,9 +15280,9 @@ func (n *Bgp_PeerGroupAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_ } } -// ApplyPolicy returns from Bgp_PeerGroup the path struct for its child "apply-policy". -func (n *Bgp_PeerGroup) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicy { - return &Bgp_PeerGroup_ApplyPolicy{ +// ApplyPolicy returns from Bgp_PeerGroupPath the path struct for its child "apply-policy". +func (n *Bgp_PeerGroupPath) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicyPath { + return &Bgp_PeerGroup_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -15296,9 +15291,9 @@ func (n *Bgp_PeerGroup) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicy { } } -// ApplyPolicy returns from Bgp_PeerGroupAny the path struct for its child "apply-policy". -func (n *Bgp_PeerGroupAny) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicyAny { - return &Bgp_PeerGroup_ApplyPolicyAny{ +// ApplyPolicy returns from Bgp_PeerGroupPathAny the path struct for its child "apply-policy". +func (n *Bgp_PeerGroupPathAny) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicyPathAny { + return &Bgp_PeerGroup_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -15307,9 +15302,9 @@ func (n *Bgp_PeerGroupAny) ApplyPolicy() *Bgp_PeerGroup_ApplyPolicyAny { } } -// AsPathOptions returns from Bgp_PeerGroup the path struct for its child "as-path-options". -func (n *Bgp_PeerGroup) AsPathOptions() *Bgp_PeerGroup_AsPathOptions { - return &Bgp_PeerGroup_AsPathOptions{ +// AsPathOptions returns from Bgp_PeerGroupPath the path struct for its child "as-path-options". +func (n *Bgp_PeerGroupPath) AsPathOptions() *Bgp_PeerGroup_AsPathOptionsPath { + return &Bgp_PeerGroup_AsPathOptionsPath{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -15318,9 +15313,9 @@ func (n *Bgp_PeerGroup) AsPathOptions() *Bgp_PeerGroup_AsPathOptions { } } -// AsPathOptions returns from Bgp_PeerGroupAny the path struct for its child "as-path-options". -func (n *Bgp_PeerGroupAny) AsPathOptions() *Bgp_PeerGroup_AsPathOptionsAny { - return &Bgp_PeerGroup_AsPathOptionsAny{ +// AsPathOptions returns from Bgp_PeerGroupPathAny the path struct for its child "as-path-options". +func (n *Bgp_PeerGroupPathAny) AsPathOptions() *Bgp_PeerGroup_AsPathOptionsPathAny { + return &Bgp_PeerGroup_AsPathOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -15329,53 +15324,53 @@ func (n *Bgp_PeerGroupAny) AsPathOptions() *Bgp_PeerGroup_AsPathOptionsAny { } } -// AuthPassword returns from Bgp_PeerGroup the path struct for its child "auth-password". -func (n *Bgp_PeerGroup) AuthPassword() *Bgp_PeerGroup_AuthPassword { - return &Bgp_PeerGroup_AuthPassword{ +// AuthPassword returns from Bgp_PeerGroupPath the path struct for its child "auth-password". +func (n *Bgp_PeerGroupPath) AuthPassword() *Bgp_PeerGroup_AuthPasswordPath { + return &Bgp_PeerGroup_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from Bgp_PeerGroupAny the path struct for its child "auth-password". -func (n *Bgp_PeerGroupAny) AuthPassword() *Bgp_PeerGroup_AuthPasswordAny { - return &Bgp_PeerGroup_AuthPasswordAny{ +// AuthPassword returns from Bgp_PeerGroupPathAny the path struct for its child "auth-password". +func (n *Bgp_PeerGroupPathAny) AuthPassword() *Bgp_PeerGroup_AuthPasswordPathAny { + return &Bgp_PeerGroup_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// Description returns from Bgp_PeerGroup the path struct for its child "description". -func (n *Bgp_PeerGroup) Description() *Bgp_PeerGroup_Description { - return &Bgp_PeerGroup_Description{ +// Description returns from Bgp_PeerGroupPath the path struct for its child "description". +func (n *Bgp_PeerGroupPath) Description() *Bgp_PeerGroup_DescriptionPath { + return &Bgp_PeerGroup_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Bgp_PeerGroupAny the path struct for its child "description". -func (n *Bgp_PeerGroupAny) Description() *Bgp_PeerGroup_DescriptionAny { - return &Bgp_PeerGroup_DescriptionAny{ +// Description returns from Bgp_PeerGroupPathAny the path struct for its child "description". +func (n *Bgp_PeerGroupPathAny) Description() *Bgp_PeerGroup_DescriptionPathAny { + return &Bgp_PeerGroup_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// EbgpMultihop returns from Bgp_PeerGroup the path struct for its child "ebgp-multihop". -func (n *Bgp_PeerGroup) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihop { - return &Bgp_PeerGroup_EbgpMultihop{ +// EbgpMultihop returns from Bgp_PeerGroupPath the path struct for its child "ebgp-multihop". +func (n *Bgp_PeerGroupPath) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihopPath { + return &Bgp_PeerGroup_EbgpMultihopPath{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -15384,9 +15379,9 @@ func (n *Bgp_PeerGroup) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihop { } } -// EbgpMultihop returns from Bgp_PeerGroupAny the path struct for its child "ebgp-multihop". -func (n *Bgp_PeerGroupAny) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihopAny { - return &Bgp_PeerGroup_EbgpMultihopAny{ +// EbgpMultihop returns from Bgp_PeerGroupPathAny the path struct for its child "ebgp-multihop". +func (n *Bgp_PeerGroupPathAny) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihopPathAny { + return &Bgp_PeerGroup_EbgpMultihopPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -15395,9 +15390,9 @@ func (n *Bgp_PeerGroupAny) EbgpMultihop() *Bgp_PeerGroup_EbgpMultihopAny { } } -// ErrorHandling returns from Bgp_PeerGroup the path struct for its child "error-handling". -func (n *Bgp_PeerGroup) ErrorHandling() *Bgp_PeerGroup_ErrorHandling { - return &Bgp_PeerGroup_ErrorHandling{ +// ErrorHandling returns from Bgp_PeerGroupPath the path struct for its child "error-handling". +func (n *Bgp_PeerGroupPath) ErrorHandling() *Bgp_PeerGroup_ErrorHandlingPath { + return &Bgp_PeerGroup_ErrorHandlingPath{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -15406,9 +15401,9 @@ func (n *Bgp_PeerGroup) ErrorHandling() *Bgp_PeerGroup_ErrorHandling { } } -// ErrorHandling returns from Bgp_PeerGroupAny the path struct for its child "error-handling". -func (n *Bgp_PeerGroupAny) ErrorHandling() *Bgp_PeerGroup_ErrorHandlingAny { - return &Bgp_PeerGroup_ErrorHandlingAny{ +// ErrorHandling returns from Bgp_PeerGroupPathAny the path struct for its child "error-handling". +func (n *Bgp_PeerGroupPathAny) ErrorHandling() *Bgp_PeerGroup_ErrorHandlingPathAny { + return &Bgp_PeerGroup_ErrorHandlingPathAny{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -15417,9 +15412,9 @@ func (n *Bgp_PeerGroupAny) ErrorHandling() *Bgp_PeerGroup_ErrorHandlingAny { } } -// GracefulRestart returns from Bgp_PeerGroup the path struct for its child "graceful-restart". -func (n *Bgp_PeerGroup) GracefulRestart() *Bgp_PeerGroup_GracefulRestart { - return &Bgp_PeerGroup_GracefulRestart{ +// GracefulRestart returns from Bgp_PeerGroupPath the path struct for its child "graceful-restart". +func (n *Bgp_PeerGroupPath) GracefulRestart() *Bgp_PeerGroup_GracefulRestartPath { + return &Bgp_PeerGroup_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -15428,9 +15423,9 @@ func (n *Bgp_PeerGroup) GracefulRestart() *Bgp_PeerGroup_GracefulRestart { } } -// GracefulRestart returns from Bgp_PeerGroupAny the path struct for its child "graceful-restart". -func (n *Bgp_PeerGroupAny) GracefulRestart() *Bgp_PeerGroup_GracefulRestartAny { - return &Bgp_PeerGroup_GracefulRestartAny{ +// GracefulRestart returns from Bgp_PeerGroupPathAny the path struct for its child "graceful-restart". +func (n *Bgp_PeerGroupPathAny) GracefulRestart() *Bgp_PeerGroup_GracefulRestartPathAny { + return &Bgp_PeerGroup_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -15439,31 +15434,31 @@ func (n *Bgp_PeerGroupAny) GracefulRestart() *Bgp_PeerGroup_GracefulRestartAny { } } -// LocalAs returns from Bgp_PeerGroup the path struct for its child "local-as". -func (n *Bgp_PeerGroup) LocalAs() *Bgp_PeerGroup_LocalAs { - return &Bgp_PeerGroup_LocalAs{ +// LocalAs returns from Bgp_PeerGroupPath the path struct for its child "local-as". +func (n *Bgp_PeerGroupPath) LocalAs() *Bgp_PeerGroup_LocalAsPath { + return &Bgp_PeerGroup_LocalAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LocalAs returns from Bgp_PeerGroupAny the path struct for its child "local-as". -func (n *Bgp_PeerGroupAny) LocalAs() *Bgp_PeerGroup_LocalAsAny { - return &Bgp_PeerGroup_LocalAsAny{ +// LocalAs returns from Bgp_PeerGroupPathAny the path struct for its child "local-as". +func (n *Bgp_PeerGroupPathAny) LocalAs() *Bgp_PeerGroup_LocalAsPathAny { + return &Bgp_PeerGroup_LocalAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LoggingOptions returns from Bgp_PeerGroup the path struct for its child "logging-options". -func (n *Bgp_PeerGroup) LoggingOptions() *Bgp_PeerGroup_LoggingOptions { - return &Bgp_PeerGroup_LoggingOptions{ +// LoggingOptions returns from Bgp_PeerGroupPath the path struct for its child "logging-options". +func (n *Bgp_PeerGroupPath) LoggingOptions() *Bgp_PeerGroup_LoggingOptionsPath { + return &Bgp_PeerGroup_LoggingOptionsPath{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -15472,9 +15467,9 @@ func (n *Bgp_PeerGroup) LoggingOptions() *Bgp_PeerGroup_LoggingOptions { } } -// LoggingOptions returns from Bgp_PeerGroupAny the path struct for its child "logging-options". -func (n *Bgp_PeerGroupAny) LoggingOptions() *Bgp_PeerGroup_LoggingOptionsAny { - return &Bgp_PeerGroup_LoggingOptionsAny{ +// LoggingOptions returns from Bgp_PeerGroupPathAny the path struct for its child "logging-options". +func (n *Bgp_PeerGroupPathAny) LoggingOptions() *Bgp_PeerGroup_LoggingOptionsPathAny { + return &Bgp_PeerGroup_LoggingOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -15483,119 +15478,119 @@ func (n *Bgp_PeerGroupAny) LoggingOptions() *Bgp_PeerGroup_LoggingOptionsAny { } } -// PeerAs returns from Bgp_PeerGroup the path struct for its child "peer-as". -func (n *Bgp_PeerGroup) PeerAs() *Bgp_PeerGroup_PeerAs { - return &Bgp_PeerGroup_PeerAs{ +// PeerAs returns from Bgp_PeerGroupPath the path struct for its child "peer-as". +func (n *Bgp_PeerGroupPath) PeerAs() *Bgp_PeerGroup_PeerAsPath { + return &Bgp_PeerGroup_PeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from Bgp_PeerGroupAny the path struct for its child "peer-as". -func (n *Bgp_PeerGroupAny) PeerAs() *Bgp_PeerGroup_PeerAsAny { - return &Bgp_PeerGroup_PeerAsAny{ +// PeerAs returns from Bgp_PeerGroupPathAny the path struct for its child "peer-as". +func (n *Bgp_PeerGroupPathAny) PeerAs() *Bgp_PeerGroup_PeerAsPathAny { + return &Bgp_PeerGroup_PeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerGroupName returns from Bgp_PeerGroup the path struct for its child "peer-group-name". -func (n *Bgp_PeerGroup) PeerGroupName() *Bgp_PeerGroup_PeerGroupName { - return &Bgp_PeerGroup_PeerGroupName{ +// PeerGroupName returns from Bgp_PeerGroupPath the path struct for its child "peer-group-name". +func (n *Bgp_PeerGroupPath) PeerGroupName() *Bgp_PeerGroup_PeerGroupNamePath { + return &Bgp_PeerGroup_PeerGroupNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group-name"}, + []string{"config", "peer-group-name"}, map[string]interface{}{}, n, ), } } -// PeerGroupName returns from Bgp_PeerGroupAny the path struct for its child "peer-group-name". -func (n *Bgp_PeerGroupAny) PeerGroupName() *Bgp_PeerGroup_PeerGroupNameAny { - return &Bgp_PeerGroup_PeerGroupNameAny{ +// PeerGroupName returns from Bgp_PeerGroupPathAny the path struct for its child "peer-group-name". +func (n *Bgp_PeerGroupPathAny) PeerGroupName() *Bgp_PeerGroup_PeerGroupNamePathAny { + return &Bgp_PeerGroup_PeerGroupNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group-name"}, + []string{"config", "peer-group-name"}, map[string]interface{}{}, n, ), } } -// PeerType returns from Bgp_PeerGroup the path struct for its child "peer-type". -func (n *Bgp_PeerGroup) PeerType() *Bgp_PeerGroup_PeerType { - return &Bgp_PeerGroup_PeerType{ +// PeerType returns from Bgp_PeerGroupPath the path struct for its child "peer-type". +func (n *Bgp_PeerGroupPath) PeerType() *Bgp_PeerGroup_PeerTypePath { + return &Bgp_PeerGroup_PeerTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// PeerType returns from Bgp_PeerGroupAny the path struct for its child "peer-type". -func (n *Bgp_PeerGroupAny) PeerType() *Bgp_PeerGroup_PeerTypeAny { - return &Bgp_PeerGroup_PeerTypeAny{ +// PeerType returns from Bgp_PeerGroupPathAny the path struct for its child "peer-type". +func (n *Bgp_PeerGroupPathAny) PeerType() *Bgp_PeerGroup_PeerTypePathAny { + return &Bgp_PeerGroup_PeerTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from Bgp_PeerGroup the path struct for its child "remove-private-as". -func (n *Bgp_PeerGroup) RemovePrivateAs() *Bgp_PeerGroup_RemovePrivateAs { - return &Bgp_PeerGroup_RemovePrivateAs{ +// RemovePrivateAs returns from Bgp_PeerGroupPath the path struct for its child "remove-private-as". +func (n *Bgp_PeerGroupPath) RemovePrivateAs() *Bgp_PeerGroup_RemovePrivateAsPath { + return &Bgp_PeerGroup_RemovePrivateAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from Bgp_PeerGroupAny the path struct for its child "remove-private-as". -func (n *Bgp_PeerGroupAny) RemovePrivateAs() *Bgp_PeerGroup_RemovePrivateAsAny { - return &Bgp_PeerGroup_RemovePrivateAsAny{ +// RemovePrivateAs returns from Bgp_PeerGroupPathAny the path struct for its child "remove-private-as". +func (n *Bgp_PeerGroupPathAny) RemovePrivateAs() *Bgp_PeerGroup_RemovePrivateAsPathAny { + return &Bgp_PeerGroup_RemovePrivateAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from Bgp_PeerGroup the path struct for its child "route-flap-damping". -func (n *Bgp_PeerGroup) RouteFlapDamping() *Bgp_PeerGroup_RouteFlapDamping { - return &Bgp_PeerGroup_RouteFlapDamping{ +// RouteFlapDamping returns from Bgp_PeerGroupPath the path struct for its child "route-flap-damping". +func (n *Bgp_PeerGroupPath) RouteFlapDamping() *Bgp_PeerGroup_RouteFlapDampingPath { + return &Bgp_PeerGroup_RouteFlapDampingPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from Bgp_PeerGroupAny the path struct for its child "route-flap-damping". -func (n *Bgp_PeerGroupAny) RouteFlapDamping() *Bgp_PeerGroup_RouteFlapDampingAny { - return &Bgp_PeerGroup_RouteFlapDampingAny{ +// RouteFlapDamping returns from Bgp_PeerGroupPathAny the path struct for its child "route-flap-damping". +func (n *Bgp_PeerGroupPathAny) RouteFlapDamping() *Bgp_PeerGroup_RouteFlapDampingPathAny { + return &Bgp_PeerGroup_RouteFlapDampingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteReflector returns from Bgp_PeerGroup the path struct for its child "route-reflector". -func (n *Bgp_PeerGroup) RouteReflector() *Bgp_PeerGroup_RouteReflector { - return &Bgp_PeerGroup_RouteReflector{ +// RouteReflector returns from Bgp_PeerGroupPath the path struct for its child "route-reflector". +func (n *Bgp_PeerGroupPath) RouteReflector() *Bgp_PeerGroup_RouteReflectorPath { + return &Bgp_PeerGroup_RouteReflectorPath{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -15604,9 +15599,9 @@ func (n *Bgp_PeerGroup) RouteReflector() *Bgp_PeerGroup_RouteReflector { } } -// RouteReflector returns from Bgp_PeerGroupAny the path struct for its child "route-reflector". -func (n *Bgp_PeerGroupAny) RouteReflector() *Bgp_PeerGroup_RouteReflectorAny { - return &Bgp_PeerGroup_RouteReflectorAny{ +// RouteReflector returns from Bgp_PeerGroupPathAny the path struct for its child "route-reflector". +func (n *Bgp_PeerGroupPathAny) RouteReflector() *Bgp_PeerGroup_RouteReflectorPathAny { + return &Bgp_PeerGroup_RouteReflectorPathAny{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -15615,31 +15610,31 @@ func (n *Bgp_PeerGroupAny) RouteReflector() *Bgp_PeerGroup_RouteReflectorAny { } } -// SendCommunity returns from Bgp_PeerGroup the path struct for its child "send-community". -func (n *Bgp_PeerGroup) SendCommunity() *Bgp_PeerGroup_SendCommunity { - return &Bgp_PeerGroup_SendCommunity{ +// SendCommunity returns from Bgp_PeerGroupPath the path struct for its child "send-community". +func (n *Bgp_PeerGroupPath) SendCommunity() *Bgp_PeerGroup_SendCommunityPath { + return &Bgp_PeerGroup_SendCommunityPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SendCommunity returns from Bgp_PeerGroupAny the path struct for its child "send-community". -func (n *Bgp_PeerGroupAny) SendCommunity() *Bgp_PeerGroup_SendCommunityAny { - return &Bgp_PeerGroup_SendCommunityAny{ +// SendCommunity returns from Bgp_PeerGroupPathAny the path struct for its child "send-community". +func (n *Bgp_PeerGroupPathAny) SendCommunity() *Bgp_PeerGroup_SendCommunityPathAny { + return &Bgp_PeerGroup_SendCommunityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// Timers returns from Bgp_PeerGroup the path struct for its child "timers". -func (n *Bgp_PeerGroup) Timers() *Bgp_PeerGroup_Timers { - return &Bgp_PeerGroup_Timers{ +// Timers returns from Bgp_PeerGroupPath the path struct for its child "timers". +func (n *Bgp_PeerGroupPath) Timers() *Bgp_PeerGroup_TimersPath { + return &Bgp_PeerGroup_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -15648,9 +15643,9 @@ func (n *Bgp_PeerGroup) Timers() *Bgp_PeerGroup_Timers { } } -// Timers returns from Bgp_PeerGroupAny the path struct for its child "timers". -func (n *Bgp_PeerGroupAny) Timers() *Bgp_PeerGroup_TimersAny { - return &Bgp_PeerGroup_TimersAny{ +// Timers returns from Bgp_PeerGroupPathAny the path struct for its child "timers". +func (n *Bgp_PeerGroupPathAny) Timers() *Bgp_PeerGroup_TimersPathAny { + return &Bgp_PeerGroup_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -15659,9 +15654,9 @@ func (n *Bgp_PeerGroupAny) Timers() *Bgp_PeerGroup_TimersAny { } } -// TotalPaths returns from Bgp_PeerGroup the path struct for its child "total-paths". -func (n *Bgp_PeerGroup) TotalPaths() *Bgp_PeerGroup_TotalPaths { - return &Bgp_PeerGroup_TotalPaths{ +// TotalPaths returns from Bgp_PeerGroupPath the path struct for its child "total-paths". +func (n *Bgp_PeerGroupPath) TotalPaths() *Bgp_PeerGroup_TotalPathsPath { + return &Bgp_PeerGroup_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -15670,9 +15665,9 @@ func (n *Bgp_PeerGroup) TotalPaths() *Bgp_PeerGroup_TotalPaths { } } -// TotalPaths returns from Bgp_PeerGroupAny the path struct for its child "total-paths". -func (n *Bgp_PeerGroupAny) TotalPaths() *Bgp_PeerGroup_TotalPathsAny { - return &Bgp_PeerGroup_TotalPathsAny{ +// TotalPaths returns from Bgp_PeerGroupPathAny the path struct for its child "total-paths". +func (n *Bgp_PeerGroupPathAny) TotalPaths() *Bgp_PeerGroup_TotalPathsPathAny { + return &Bgp_PeerGroup_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -15681,9 +15676,9 @@ func (n *Bgp_PeerGroupAny) TotalPaths() *Bgp_PeerGroup_TotalPathsAny { } } -// TotalPrefixes returns from Bgp_PeerGroup the path struct for its child "total-prefixes". -func (n *Bgp_PeerGroup) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixes { - return &Bgp_PeerGroup_TotalPrefixes{ +// TotalPrefixes returns from Bgp_PeerGroupPath the path struct for its child "total-prefixes". +func (n *Bgp_PeerGroupPath) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixesPath { + return &Bgp_PeerGroup_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -15692,9 +15687,9 @@ func (n *Bgp_PeerGroup) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixes { } } -// TotalPrefixes returns from Bgp_PeerGroupAny the path struct for its child "total-prefixes". -func (n *Bgp_PeerGroupAny) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixesAny { - return &Bgp_PeerGroup_TotalPrefixesAny{ +// TotalPrefixes returns from Bgp_PeerGroupPathAny the path struct for its child "total-prefixes". +func (n *Bgp_PeerGroupPathAny) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixesPathAny { + return &Bgp_PeerGroup_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -15703,9 +15698,9 @@ func (n *Bgp_PeerGroupAny) TotalPrefixes() *Bgp_PeerGroup_TotalPrefixesAny { } } -// Transport returns from Bgp_PeerGroup the path struct for its child "transport". -func (n *Bgp_PeerGroup) Transport() *Bgp_PeerGroup_Transport { - return &Bgp_PeerGroup_Transport{ +// Transport returns from Bgp_PeerGroupPath the path struct for its child "transport". +func (n *Bgp_PeerGroupPath) Transport() *Bgp_PeerGroup_TransportPath { + return &Bgp_PeerGroup_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -15714,9 +15709,9 @@ func (n *Bgp_PeerGroup) Transport() *Bgp_PeerGroup_Transport { } } -// Transport returns from Bgp_PeerGroupAny the path struct for its child "transport". -func (n *Bgp_PeerGroupAny) Transport() *Bgp_PeerGroup_TransportAny { - return &Bgp_PeerGroup_TransportAny{ +// Transport returns from Bgp_PeerGroupPathAny the path struct for its child "transport". +func (n *Bgp_PeerGroupPathAny) Transport() *Bgp_PeerGroup_TransportPathAny { + return &Bgp_PeerGroup_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -15725,9 +15720,9 @@ func (n *Bgp_PeerGroupAny) Transport() *Bgp_PeerGroup_TransportAny { } } -// UseMultiplePaths returns from Bgp_PeerGroup the path struct for its child "use-multiple-paths". -func (n *Bgp_PeerGroup) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePaths { - return &Bgp_PeerGroup_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_PeerGroupPath the path struct for its child "use-multiple-paths". +func (n *Bgp_PeerGroupPath) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePathsPath { + return &Bgp_PeerGroup_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -15736,9 +15731,9 @@ func (n *Bgp_PeerGroup) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePaths { } } -// UseMultiplePaths returns from Bgp_PeerGroupAny the path struct for its child "use-multiple-paths". -func (n *Bgp_PeerGroupAny) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePathsAny { - return &Bgp_PeerGroup_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_PeerGroupPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_PeerGroupPathAny) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePathsPathAny { + return &Bgp_PeerGroup_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -15747,39 +15742,39 @@ func (n *Bgp_PeerGroupAny) UseMultiplePaths() *Bgp_PeerGroup_UseMultiplePathsAny } } -// Bgp_PeerGroup_AfiSafi represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. -type Bgp_PeerGroup_AfiSafi struct { +// Bgp_PeerGroup_AfiSafiPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. +type Bgp_PeerGroup_AfiSafiPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafiAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. -type Bgp_PeerGroup_AfiSafiAny struct { +// Bgp_PeerGroup_AfiSafiPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. +type Bgp_PeerGroup_AfiSafiPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AfiSafiName represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_PeerGroup_AfiSafi_AfiSafiName struct { +// Bgp_PeerGroup_AfiSafi_AfiSafiNamePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_PeerGroup_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_PeerGroup_AfiSafi_AfiSafiNameAny struct { +// Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_Enabled struct { +// Bgp_PeerGroup_AfiSafi_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_EnabledAny struct { +// Bgp_PeerGroup_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// AddPaths returns from Bgp_PeerGroup_AfiSafi the path struct for its child "add-paths". -func (n *Bgp_PeerGroup_AfiSafi) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPaths { - return &Bgp_PeerGroup_AfiSafi_AddPaths{ +// AddPaths returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "add-paths". +func (n *Bgp_PeerGroup_AfiSafiPath) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPathsPath { + return &Bgp_PeerGroup_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -15788,9 +15783,9 @@ func (n *Bgp_PeerGroup_AfiSafi) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPaths { } } -// AddPaths returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "add-paths". -func (n *Bgp_PeerGroup_AfiSafiAny) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPathsAny { - return &Bgp_PeerGroup_AfiSafi_AddPathsAny{ +// AddPaths returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "add-paths". +func (n *Bgp_PeerGroup_AfiSafiPathAny) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPathsPathAny { + return &Bgp_PeerGroup_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -15799,31 +15794,31 @@ func (n *Bgp_PeerGroup_AfiSafiAny) AddPaths() *Bgp_PeerGroup_AfiSafi_AddPathsAny } } -// AfiSafiName returns from Bgp_PeerGroup_AfiSafi the path struct for its child "afi-safi-name". -func (n *Bgp_PeerGroup_AfiSafi) AfiSafiName() *Bgp_PeerGroup_AfiSafi_AfiSafiName { - return &Bgp_PeerGroup_AfiSafi_AfiSafiName{ +// AfiSafiName returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *Bgp_PeerGroup_AfiSafiPath) AfiSafiName() *Bgp_PeerGroup_AfiSafi_AfiSafiNamePath { + return &Bgp_PeerGroup_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *Bgp_PeerGroup_AfiSafiAny) AfiSafiName() *Bgp_PeerGroup_AfiSafi_AfiSafiNameAny { - return &Bgp_PeerGroup_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *Bgp_PeerGroup_AfiSafiPathAny) AfiSafiName() *Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny { + return &Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// ApplyPolicy returns from Bgp_PeerGroup_AfiSafi the path struct for its child "apply-policy". -func (n *Bgp_PeerGroup_AfiSafi) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy{ +// ApplyPolicy returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "apply-policy". +func (n *Bgp_PeerGroup_AfiSafiPath) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicyPath { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -15832,9 +15827,9 @@ func (n *Bgp_PeerGroup_AfiSafi) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy } } -// ApplyPolicy returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "apply-policy". -func (n *Bgp_PeerGroup_AfiSafiAny) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicyAny { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicyAny{ +// ApplyPolicy returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "apply-policy". +func (n *Bgp_PeerGroup_AfiSafiPathAny) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -15843,31 +15838,31 @@ func (n *Bgp_PeerGroup_AfiSafiAny) ApplyPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPol } } -// Enabled returns from Bgp_PeerGroup_AfiSafi the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafi) Enabled() *Bgp_PeerGroup_AfiSafi_Enabled { - return &Bgp_PeerGroup_AfiSafi_Enabled{ +// Enabled returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafiPath) Enabled() *Bgp_PeerGroup_AfiSafi_EnabledPath { + return &Bgp_PeerGroup_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafiAny) Enabled() *Bgp_PeerGroup_AfiSafi_EnabledAny { - return &Bgp_PeerGroup_AfiSafi_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafiPathAny) Enabled() *Bgp_PeerGroup_AfiSafi_EnabledPathAny { + return &Bgp_PeerGroup_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from Bgp_PeerGroup_AfiSafi the path struct for its child "graceful-restart". -func (n *Bgp_PeerGroup_AfiSafi) GracefulRestart() *Bgp_PeerGroup_AfiSafi_GracefulRestart { - return &Bgp_PeerGroup_AfiSafi_GracefulRestart{ +// GracefulRestart returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "graceful-restart". +func (n *Bgp_PeerGroup_AfiSafiPath) GracefulRestart() *Bgp_PeerGroup_AfiSafi_GracefulRestartPath { + return &Bgp_PeerGroup_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -15876,9 +15871,9 @@ func (n *Bgp_PeerGroup_AfiSafi) GracefulRestart() *Bgp_PeerGroup_AfiSafi_Gracefu } } -// GracefulRestart returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "graceful-restart". -func (n *Bgp_PeerGroup_AfiSafiAny) GracefulRestart() *Bgp_PeerGroup_AfiSafi_GracefulRestartAny { - return &Bgp_PeerGroup_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *Bgp_PeerGroup_AfiSafiPathAny) GracefulRestart() *Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny { + return &Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -15887,9 +15882,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) GracefulRestart() *Bgp_PeerGroup_AfiSafi_Grac } } -// Ipv4LabeledUnicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_PeerGroup_AfiSafi) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -15898,9 +15893,9 @@ func (n *Bgp_PeerGroup_AfiSafi) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv4 } } -// Ipv4LabeledUnicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -15909,9 +15904,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) Ipv4LabeledUnicast() *Bgp_PeerGroup_AfiSafi_I } } -// Ipv4Unicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "ipv4-unicast". -func (n *Bgp_PeerGroup_AfiSafi) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -15920,9 +15915,9 @@ func (n *Bgp_PeerGroup_AfiSafi) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast } } -// Ipv4Unicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -15931,9 +15926,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) Ipv4Unicast() *Bgp_PeerGroup_AfiSafi_Ipv4Unic } } -// Ipv6LabeledUnicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_PeerGroup_AfiSafi) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -15942,9 +15937,9 @@ func (n *Bgp_PeerGroup_AfiSafi) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv6 } } -// Ipv6LabeledUnicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -15953,9 +15948,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) Ipv6LabeledUnicast() *Bgp_PeerGroup_AfiSafi_I } } -// Ipv6Unicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "ipv6-unicast". -func (n *Bgp_PeerGroup_AfiSafi) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -15964,9 +15959,9 @@ func (n *Bgp_PeerGroup_AfiSafi) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast } } -// Ipv6Unicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -15975,9 +15970,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) Ipv6Unicast() *Bgp_PeerGroup_AfiSafi_Ipv6Unic } } -// L2VpnEvpn returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *Bgp_PeerGroup_AfiSafi) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *Bgp_PeerGroup_AfiSafiPath) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -15986,9 +15981,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn { } } -// L2VpnEvpn returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *Bgp_PeerGroup_AfiSafiAny) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -15997,9 +15992,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L2VpnEvpn() *Bgp_PeerGroup_AfiSafi_L2VpnEvpnA } } -// L2VpnVpls returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *Bgp_PeerGroup_AfiSafi) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVpls { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *Bgp_PeerGroup_AfiSafiPath) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVplsPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -16008,9 +16003,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVpls { } } -// L2VpnVpls returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *Bgp_PeerGroup_AfiSafiAny) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVplsAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -16019,9 +16014,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L2VpnVpls() *Bgp_PeerGroup_AfiSafi_L2VpnVplsA } } -// L3VpnIpv4Multicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_PeerGroup_AfiSafiPath) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -16030,9 +16025,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L3Vp } } -// L3VpnIpv4Multicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -16041,9 +16036,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Multicast() *Bgp_PeerGroup_AfiSafi_L } } -// L3VpnIpv4Unicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -16052,9 +16047,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnI } } -// L3VpnIpv4Unicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -16063,9 +16058,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Unicast() *Bgp_PeerGroup_AfiSafi_L3V } } -// L3VpnIpv6Multicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_PeerGroup_AfiSafiPath) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -16074,9 +16069,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L3Vp } } -// L3VpnIpv6Multicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -16085,9 +16080,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Multicast() *Bgp_PeerGroup_AfiSafi_L } } -// L3VpnIpv6Unicast returns from Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_PeerGroup_AfiSafiPath) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -16096,9 +16091,9 @@ func (n *Bgp_PeerGroup_AfiSafi) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnI } } -// L3VpnIpv6Unicast returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -16107,9 +16102,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Unicast() *Bgp_PeerGroup_AfiSafi_L3V } } -// SrtePolicyIpv4 returns from Bgp_PeerGroup_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *Bgp_PeerGroup_AfiSafi) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *Bgp_PeerGroup_AfiSafiPath) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -16118,9 +16113,9 @@ func (n *Bgp_PeerGroup_AfiSafi) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrtePoli } } -// SrtePolicyIpv4 returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *Bgp_PeerGroup_AfiSafiPathAny) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -16129,9 +16124,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv4() *Bgp_PeerGroup_AfiSafi_SrteP } } -// SrtePolicyIpv6 returns from Bgp_PeerGroup_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *Bgp_PeerGroup_AfiSafi) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *Bgp_PeerGroup_AfiSafiPath) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -16140,9 +16135,9 @@ func (n *Bgp_PeerGroup_AfiSafi) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrtePoli } } -// SrtePolicyIpv6 returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *Bgp_PeerGroup_AfiSafiPathAny) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -16151,9 +16146,9 @@ func (n *Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv6() *Bgp_PeerGroup_AfiSafi_SrteP } } -// UseMultiplePaths returns from Bgp_PeerGroup_AfiSafi the path struct for its child "use-multiple-paths". -func (n *Bgp_PeerGroup_AfiSafi) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from Bgp_PeerGroup_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *Bgp_PeerGroup_AfiSafiPath) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -16162,9 +16157,9 @@ func (n *Bgp_PeerGroup_AfiSafi) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_UseMul } } -// UseMultiplePaths returns from Bgp_PeerGroup_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *Bgp_PeerGroup_AfiSafiAny) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *Bgp_PeerGroup_AfiSafiPathAny) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -16173,337 +16168,337 @@ func (n *Bgp_PeerGroup_AfiSafiAny) UseMultiplePaths() *Bgp_PeerGroup_AfiSafi_Use } } -// Bgp_PeerGroup_AfiSafi_AddPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths struct { +// Bgp_PeerGroup_AfiSafi_AddPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPathsAny struct { +// Bgp_PeerGroup_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_Receive represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_Receive struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_Send represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_Send struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_SendPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_SendAny struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_SendMax represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_SendMax struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny struct { +// Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *Bgp_PeerGroup_AfiSafi_AddPaths) EligiblePrefixPolicy() *Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *Bgp_PeerGroup_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "receive". -func (n *Bgp_PeerGroup_AfiSafi_AddPaths) Receive() *Bgp_PeerGroup_AfiSafi_AddPaths_Receive { - return &Bgp_PeerGroup_AfiSafi_AddPaths_Receive{ +// Receive returns from Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPath) Receive() *Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath { + return &Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *Bgp_PeerGroup_AfiSafi_AddPathsAny) Receive() *Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny { - return &Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPathAny) Receive() *Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny { + return &Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "send". -func (n *Bgp_PeerGroup_AfiSafi_AddPaths) Send() *Bgp_PeerGroup_AfiSafi_AddPaths_Send { - return &Bgp_PeerGroup_AfiSafi_AddPaths_Send{ +// Send returns from Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPath) Send() *Bgp_PeerGroup_AfiSafi_AddPaths_SendPath { + return &Bgp_PeerGroup_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *Bgp_PeerGroup_AfiSafi_AddPathsAny) Send() *Bgp_PeerGroup_AfiSafi_AddPaths_SendAny { - return &Bgp_PeerGroup_AfiSafi_AddPaths_SendAny{ +// Send returns from Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPathAny) Send() *Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny { + return &Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *Bgp_PeerGroup_AfiSafi_AddPaths) SendMax() *Bgp_PeerGroup_AfiSafi_AddPaths_SendMax { - return &Bgp_PeerGroup_AfiSafi_AddPaths_SendMax{ +// SendMax returns from Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPath) SendMax() *Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath { + return &Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *Bgp_PeerGroup_AfiSafi_AddPathsAny) SendMax() *Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny { - return &Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *Bgp_PeerGroup_AfiSafi_AddPathsPathAny) SendMax() *Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny { + return &Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny struct { +// Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "default-export-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicy) DefaultExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) DefaultExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) DefaultExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) DefaultExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "default-import-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicy) DefaultImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) DefaultImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) DefaultImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) DefaultImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "export-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicy) ExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "export-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) ExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "export-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) ExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) ExportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "import-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicy) ImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "import-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) ImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "import-policy". -func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) ImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny { - return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) ImportPolicy() *Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny { + return &Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_GracefulRestart represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_PeerGroup_AfiSafi_GracefulRestart struct { +// Bgp_PeerGroup_AfiSafi_GracefulRestartPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_PeerGroup_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. -type Bgp_PeerGroup_AfiSafi_GracefulRestartAny struct { +// Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. +type Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled struct { +// Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny struct { +// Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_PeerGroup_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafi_GracefulRestart) Enabled() *Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled { - return &Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from Bgp_PeerGroup_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafi_GracefulRestartPath) Enabled() *Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath { + return &Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafi_GracefulRestartAny) Enabled() *Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny { - return &Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny) Enabled() *Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny { + return &Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16512,9 +16507,9 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *Bgp_PeerGroup_ } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16523,167 +16518,167 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *Bgp_PeerGro } } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast struct { +// Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16692,9 +16687,9 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16703,179 +16698,179 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiS } } -// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16884,9 +16879,9 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *Bgp_PeerGroup_ } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -16895,167 +16890,167 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *Bgp_PeerGro } } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast struct { +// Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17064,9 +17059,9 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17075,179 +17070,179 @@ func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiS } } -// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17256,9 +17251,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17267,157 +17262,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny) PrefixLimit() *Bgp_PeerGroup_AfiSaf } } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVplsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVplsAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVplsPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17426,9 +17421,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17437,157 +17432,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L2VpnVplsAny) PrefixLimit() *Bgp_PeerGroup_AfiSaf } } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17596,9 +17591,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *Bgp_PeerGroup_ } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17607,157 +17602,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *Bgp_PeerGro } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17766,9 +17761,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *Bgp_PeerGroup_Af } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17777,157 +17772,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *Bgp_PeerGroup } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17936,9 +17931,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *Bgp_PeerGroup_ } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -17947,157 +17942,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *Bgp_PeerGro } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18106,9 +18101,9 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *Bgp_PeerGroup_Af } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18117,157 +18112,157 @@ func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *Bgp_PeerGroup } } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18276,9 +18271,9 @@ func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4) PrefixLimit() *Bgp_PeerGroup_AfiS } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18287,157 +18282,157 @@ func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *Bgp_PeerGroup_A } } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18446,9 +18441,9 @@ func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6) PrefixLimit() *Bgp_PeerGroup_AfiS } } -// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -18457,167 +18452,167 @@ func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *Bgp_PeerGroup_A } } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Ebgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -18626,9 +18621,9 @@ func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ebgp() *Bgp_PeerGroup_AfiSafi_U } } -// Ebgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Ebgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -18637,31 +18632,31 @@ func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ebgp() *Bgp_PeerGroup_AfiSaf } } -// Enabled returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Enabled() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Enabled() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Enabled() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Enabled() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "ibgp". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ibgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp{ +// Ibgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Ibgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -18670,9 +18665,9 @@ func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ibgp() *Bgp_PeerGroup_AfiSafi_U } } -// Ibgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ibgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny{ +// Ibgp returns from Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Ibgp() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -18681,1035 +18676,1035 @@ func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ibgp() *Bgp_PeerGroup_AfiSaf } } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny) MaximumPaths() *Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_ApplyPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy struct { +// Bgp_PeerGroup_ApplyPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicyAny struct { +// Bgp_PeerGroup_ApplyPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/default-export-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy struct { +// Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/default-export-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/default-export-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny struct { +// Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/default-export-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/default-import-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy struct { +// Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/default-import-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/default-import-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny struct { +// Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/default-import-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_ExportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/export-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_ExportPolicy struct { +// Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/export-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/export-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny struct { +// Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/export-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_ImportPolicy represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/import-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_ImportPolicy struct { +// Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/import-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/state/import-policy YANG schema element. -type Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny struct { +// Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/apply-policy/config/import-policy YANG schema element. +type Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from Bgp_PeerGroup_ApplyPolicy the path struct for its child "default-export-policy". -func (n *Bgp_PeerGroup_ApplyPolicy) DefaultExportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy { - return &Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPath) DefaultExportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath { + return &Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *Bgp_PeerGroup_ApplyPolicyAny) DefaultExportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny { - return &Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPathAny) DefaultExportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny { + return &Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_PeerGroup_ApplyPolicy the path struct for its child "default-import-policy". -func (n *Bgp_PeerGroup_ApplyPolicy) DefaultImportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy { - return &Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPath) DefaultImportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath { + return &Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *Bgp_PeerGroup_ApplyPolicyAny) DefaultImportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny { - return &Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPathAny) DefaultImportPolicy() *Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny { + return &Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_PeerGroup_ApplyPolicy the path struct for its child "export-policy". -func (n *Bgp_PeerGroup_ApplyPolicy) ExportPolicy() *Bgp_PeerGroup_ApplyPolicy_ExportPolicy { - return &Bgp_PeerGroup_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "export-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPath) ExportPolicy() *Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath { + return &Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "export-policy". -func (n *Bgp_PeerGroup_ApplyPolicyAny) ExportPolicy() *Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny { - return &Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPathAny) ExportPolicy() *Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny { + return &Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_PeerGroup_ApplyPolicy the path struct for its child "import-policy". -func (n *Bgp_PeerGroup_ApplyPolicy) ImportPolicy() *Bgp_PeerGroup_ApplyPolicy_ImportPolicy { - return &Bgp_PeerGroup_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "import-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPath) ImportPolicy() *Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath { + return &Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "import-policy". -func (n *Bgp_PeerGroup_ApplyPolicyAny) ImportPolicy() *Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny { - return &Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *Bgp_PeerGroup_ApplyPolicyPathAny) ImportPolicy() *Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny { + return &Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_AsPathOptions represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options YANG schema element. -type Bgp_PeerGroup_AsPathOptions struct { +// Bgp_PeerGroup_AsPathOptionsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options YANG schema element. +type Bgp_PeerGroup_AsPathOptionsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options YANG schema element. -type Bgp_PeerGroup_AsPathOptionsAny struct { +// Bgp_PeerGroup_AsPathOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options YANG schema element. +type Bgp_PeerGroup_AsPathOptionsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_AllowOwnAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/allow-own-as YANG schema element. -type Bgp_PeerGroup_AsPathOptions_AllowOwnAs struct { +// Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/allow-own-as YANG schema element. +type Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/allow-own-as YANG schema element. -type Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny struct { +// Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/allow-own-as YANG schema element. +type Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/disable-peer-as-filter YANG schema element. -type Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter struct { +// Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/disable-peer-as-filter YANG schema element. +type Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/disable-peer-as-filter YANG schema element. -type Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny struct { +// Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/disable-peer-as-filter YANG schema element. +type Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_ReplacePeerAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/replace-peer-as YANG schema element. -type Bgp_PeerGroup_AsPathOptions_ReplacePeerAs struct { +// Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/replace-peer-as YANG schema element. +type Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/state/replace-peer-as YANG schema element. -type Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny struct { +// Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/as-path-options/config/replace-peer-as YANG schema element. +type Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny struct { *ygot.NodePath } -// AllowOwnAs returns from Bgp_PeerGroup_AsPathOptions the path struct for its child "allow-own-as". -func (n *Bgp_PeerGroup_AsPathOptions) AllowOwnAs() *Bgp_PeerGroup_AsPathOptions_AllowOwnAs { - return &Bgp_PeerGroup_AsPathOptions_AllowOwnAs{ +// AllowOwnAs returns from Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "allow-own-as". +func (n *Bgp_PeerGroup_AsPathOptionsPath) AllowOwnAs() *Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath { + return &Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// AllowOwnAs returns from Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "allow-own-as". -func (n *Bgp_PeerGroup_AsPathOptionsAny) AllowOwnAs() *Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny { - return &Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny{ +// AllowOwnAs returns from Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "allow-own-as". +func (n *Bgp_PeerGroup_AsPathOptionsPathAny) AllowOwnAs() *Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny { + return &Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from Bgp_PeerGroup_AsPathOptions the path struct for its child "disable-peer-as-filter". -func (n *Bgp_PeerGroup_AsPathOptions) DisablePeerAsFilter() *Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter { - return &Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter{ +// DisablePeerAsFilter returns from Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "disable-peer-as-filter". +func (n *Bgp_PeerGroup_AsPathOptionsPath) DisablePeerAsFilter() *Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath { + return &Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "disable-peer-as-filter". -func (n *Bgp_PeerGroup_AsPathOptionsAny) DisablePeerAsFilter() *Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny { - return &Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny{ +// DisablePeerAsFilter returns from Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "disable-peer-as-filter". +func (n *Bgp_PeerGroup_AsPathOptionsPathAny) DisablePeerAsFilter() *Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny { + return &Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from Bgp_PeerGroup_AsPathOptions the path struct for its child "replace-peer-as". -func (n *Bgp_PeerGroup_AsPathOptions) ReplacePeerAs() *Bgp_PeerGroup_AsPathOptions_ReplacePeerAs { - return &Bgp_PeerGroup_AsPathOptions_ReplacePeerAs{ +// ReplacePeerAs returns from Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "replace-peer-as". +func (n *Bgp_PeerGroup_AsPathOptionsPath) ReplacePeerAs() *Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath { + return &Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "replace-peer-as". -func (n *Bgp_PeerGroup_AsPathOptionsAny) ReplacePeerAs() *Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny { - return &Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny{ +// ReplacePeerAs returns from Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "replace-peer-as". +func (n *Bgp_PeerGroup_AsPathOptionsPathAny) ReplacePeerAs() *Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny { + return &Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_EbgpMultihop represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. -type Bgp_PeerGroup_EbgpMultihop struct { +// Bgp_PeerGroup_EbgpMultihopPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. +type Bgp_PeerGroup_EbgpMultihopPath struct { *ygot.NodePath } -// Bgp_PeerGroup_EbgpMultihopAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. -type Bgp_PeerGroup_EbgpMultihopAny struct { +// Bgp_PeerGroup_EbgpMultihopPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. +type Bgp_PeerGroup_EbgpMultihopPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_EbgpMultihop_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/state/enabled YANG schema element. -type Bgp_PeerGroup_EbgpMultihop_Enabled struct { +// Bgp_PeerGroup_EbgpMultihop_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/config/enabled YANG schema element. +type Bgp_PeerGroup_EbgpMultihop_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_EbgpMultihop_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/state/enabled YANG schema element. -type Bgp_PeerGroup_EbgpMultihop_EnabledAny struct { +// Bgp_PeerGroup_EbgpMultihop_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/config/enabled YANG schema element. +type Bgp_PeerGroup_EbgpMultihop_EnabledPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_EbgpMultihop_MultihopTtl represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/state/multihop-ttl YANG schema element. -type Bgp_PeerGroup_EbgpMultihop_MultihopTtl struct { +// Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/config/multihop-ttl YANG schema element. +type Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath struct { *ygot.NodePath } -// Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/state/multihop-ttl YANG schema element. -type Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny struct { +// Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/ebgp-multihop/config/multihop-ttl YANG schema element. +type Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_PeerGroup_EbgpMultihop the path struct for its child "enabled". -func (n *Bgp_PeerGroup_EbgpMultihop) Enabled() *Bgp_PeerGroup_EbgpMultihop_Enabled { - return &Bgp_PeerGroup_EbgpMultihop_Enabled{ +// Enabled returns from Bgp_PeerGroup_EbgpMultihopPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_EbgpMultihopPath) Enabled() *Bgp_PeerGroup_EbgpMultihop_EnabledPath { + return &Bgp_PeerGroup_EbgpMultihop_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_EbgpMultihopAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_EbgpMultihopAny) Enabled() *Bgp_PeerGroup_EbgpMultihop_EnabledAny { - return &Bgp_PeerGroup_EbgpMultihop_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_EbgpMultihopPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_EbgpMultihopPathAny) Enabled() *Bgp_PeerGroup_EbgpMultihop_EnabledPathAny { + return &Bgp_PeerGroup_EbgpMultihop_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from Bgp_PeerGroup_EbgpMultihop the path struct for its child "multihop-ttl". -func (n *Bgp_PeerGroup_EbgpMultihop) MultihopTtl() *Bgp_PeerGroup_EbgpMultihop_MultihopTtl { - return &Bgp_PeerGroup_EbgpMultihop_MultihopTtl{ +// MultihopTtl returns from Bgp_PeerGroup_EbgpMultihopPath the path struct for its child "multihop-ttl". +func (n *Bgp_PeerGroup_EbgpMultihopPath) MultihopTtl() *Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath { + return &Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from Bgp_PeerGroup_EbgpMultihopAny the path struct for its child "multihop-ttl". -func (n *Bgp_PeerGroup_EbgpMultihopAny) MultihopTtl() *Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny { - return &Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny{ +// MultihopTtl returns from Bgp_PeerGroup_EbgpMultihopPathAny the path struct for its child "multihop-ttl". +func (n *Bgp_PeerGroup_EbgpMultihopPathAny) MultihopTtl() *Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny { + return &Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_ErrorHandling represents the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling YANG schema element. -type Bgp_PeerGroup_ErrorHandling struct { +// Bgp_PeerGroup_ErrorHandlingPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling YANG schema element. +type Bgp_PeerGroup_ErrorHandlingPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ErrorHandlingAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling YANG schema element. -type Bgp_PeerGroup_ErrorHandlingAny struct { +// Bgp_PeerGroup_ErrorHandlingPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling YANG schema element. +type Bgp_PeerGroup_ErrorHandlingPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw represents the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling/state/treat-as-withdraw YANG schema element. -type Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw struct { +// Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling/config/treat-as-withdraw YANG schema element. +type Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath struct { *ygot.NodePath } -// Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling/state/treat-as-withdraw YANG schema element. -type Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny struct { +// Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/error-handling/config/treat-as-withdraw YANG schema element. +type Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny struct { *ygot.NodePath } -// TreatAsWithdraw returns from Bgp_PeerGroup_ErrorHandling the path struct for its child "treat-as-withdraw". -func (n *Bgp_PeerGroup_ErrorHandling) TreatAsWithdraw() *Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw { - return &Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw{ +// TreatAsWithdraw returns from Bgp_PeerGroup_ErrorHandlingPath the path struct for its child "treat-as-withdraw". +func (n *Bgp_PeerGroup_ErrorHandlingPath) TreatAsWithdraw() *Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath { + return &Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// TreatAsWithdraw returns from Bgp_PeerGroup_ErrorHandlingAny the path struct for its child "treat-as-withdraw". -func (n *Bgp_PeerGroup_ErrorHandlingAny) TreatAsWithdraw() *Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny { - return &Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny{ +// TreatAsWithdraw returns from Bgp_PeerGroup_ErrorHandlingPathAny the path struct for its child "treat-as-withdraw". +func (n *Bgp_PeerGroup_ErrorHandlingPathAny) TreatAsWithdraw() *Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny { + return &Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_GracefulRestart represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart YANG schema element. -type Bgp_PeerGroup_GracefulRestart struct { +// Bgp_PeerGroup_GracefulRestartPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart YANG schema element. +type Bgp_PeerGroup_GracefulRestartPath struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestartAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart YANG schema element. -type Bgp_PeerGroup_GracefulRestartAny struct { +// Bgp_PeerGroup_GracefulRestartPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart YANG schema element. +type Bgp_PeerGroup_GracefulRestartPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/enabled YANG schema element. -type Bgp_PeerGroup_GracefulRestart_Enabled struct { +// Bgp_PeerGroup_GracefulRestart_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/enabled YANG schema element. +type Bgp_PeerGroup_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/enabled YANG schema element. -type Bgp_PeerGroup_GracefulRestart_EnabledAny struct { +// Bgp_PeerGroup_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/enabled YANG schema element. +type Bgp_PeerGroup_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_HelperOnly represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/helper-only YANG schema element. -type Bgp_PeerGroup_GracefulRestart_HelperOnly struct { +// Bgp_PeerGroup_GracefulRestart_HelperOnlyPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/helper-only YANG schema element. +type Bgp_PeerGroup_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/helper-only YANG schema element. -type Bgp_PeerGroup_GracefulRestart_HelperOnlyAny struct { +// Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/helper-only YANG schema element. +type Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_RestartTime represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/restart-time YANG schema element. -type Bgp_PeerGroup_GracefulRestart_RestartTime struct { +// Bgp_PeerGroup_GracefulRestart_RestartTimePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/restart-time YANG schema element. +type Bgp_PeerGroup_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/restart-time YANG schema element. -type Bgp_PeerGroup_GracefulRestart_RestartTimeAny struct { +// Bgp_PeerGroup_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/restart-time YANG schema element. +type Bgp_PeerGroup_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_StaleRoutesTime represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_PeerGroup_GracefulRestart_StaleRoutesTime struct { +// Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/state/stale-routes-time YANG schema element. -type Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny struct { +// Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/graceful-restart/config/stale-routes-time YANG schema element. +type Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from Bgp_PeerGroup_GracefulRestart the path struct for its child "enabled". -func (n *Bgp_PeerGroup_GracefulRestart) Enabled() *Bgp_PeerGroup_GracefulRestart_Enabled { - return &Bgp_PeerGroup_GracefulRestart_Enabled{ +// Enabled returns from Bgp_PeerGroup_GracefulRestartPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_GracefulRestartPath) Enabled() *Bgp_PeerGroup_GracefulRestart_EnabledPath { + return &Bgp_PeerGroup_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_GracefulRestartAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_GracefulRestartAny) Enabled() *Bgp_PeerGroup_GracefulRestart_EnabledAny { - return &Bgp_PeerGroup_GracefulRestart_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_GracefulRestartPathAny) Enabled() *Bgp_PeerGroup_GracefulRestart_EnabledPathAny { + return &Bgp_PeerGroup_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_PeerGroup_GracefulRestart the path struct for its child "helper-only". -func (n *Bgp_PeerGroup_GracefulRestart) HelperOnly() *Bgp_PeerGroup_GracefulRestart_HelperOnly { - return &Bgp_PeerGroup_GracefulRestart_HelperOnly{ +// HelperOnly returns from Bgp_PeerGroup_GracefulRestartPath the path struct for its child "helper-only". +func (n *Bgp_PeerGroup_GracefulRestartPath) HelperOnly() *Bgp_PeerGroup_GracefulRestart_HelperOnlyPath { + return &Bgp_PeerGroup_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from Bgp_PeerGroup_GracefulRestartAny the path struct for its child "helper-only". -func (n *Bgp_PeerGroup_GracefulRestartAny) HelperOnly() *Bgp_PeerGroup_GracefulRestart_HelperOnlyAny { - return &Bgp_PeerGroup_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *Bgp_PeerGroup_GracefulRestartPathAny) HelperOnly() *Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny { + return &Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from Bgp_PeerGroup_GracefulRestart the path struct for its child "restart-time". -func (n *Bgp_PeerGroup_GracefulRestart) RestartTime() *Bgp_PeerGroup_GracefulRestart_RestartTime { - return &Bgp_PeerGroup_GracefulRestart_RestartTime{ +// RestartTime returns from Bgp_PeerGroup_GracefulRestartPath the path struct for its child "restart-time". +func (n *Bgp_PeerGroup_GracefulRestartPath) RestartTime() *Bgp_PeerGroup_GracefulRestart_RestartTimePath { + return &Bgp_PeerGroup_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from Bgp_PeerGroup_GracefulRestartAny the path struct for its child "restart-time". -func (n *Bgp_PeerGroup_GracefulRestartAny) RestartTime() *Bgp_PeerGroup_GracefulRestart_RestartTimeAny { - return &Bgp_PeerGroup_GracefulRestart_RestartTimeAny{ +// RestartTime returns from Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *Bgp_PeerGroup_GracefulRestartPathAny) RestartTime() *Bgp_PeerGroup_GracefulRestart_RestartTimePathAny { + return &Bgp_PeerGroup_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_PeerGroup_GracefulRestart the path struct for its child "stale-routes-time". -func (n *Bgp_PeerGroup_GracefulRestart) StaleRoutesTime() *Bgp_PeerGroup_GracefulRestart_StaleRoutesTime { - return &Bgp_PeerGroup_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from Bgp_PeerGroup_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *Bgp_PeerGroup_GracefulRestartPath) StaleRoutesTime() *Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath { + return &Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from Bgp_PeerGroup_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *Bgp_PeerGroup_GracefulRestartAny) StaleRoutesTime() *Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny { - return &Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *Bgp_PeerGroup_GracefulRestartPathAny) StaleRoutesTime() *Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny { + return &Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_LoggingOptions represents the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options YANG schema element. -type Bgp_PeerGroup_LoggingOptions struct { +// Bgp_PeerGroup_LoggingOptionsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options YANG schema element. +type Bgp_PeerGroup_LoggingOptionsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_LoggingOptionsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options YANG schema element. -type Bgp_PeerGroup_LoggingOptionsAny struct { +// Bgp_PeerGroup_LoggingOptionsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options YANG schema element. +type Bgp_PeerGroup_LoggingOptionsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges represents the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options/state/log-neighbor-state-changes YANG schema element. -type Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges struct { +// Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options/config/log-neighbor-state-changes YANG schema element. +type Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath struct { *ygot.NodePath } -// Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options/state/log-neighbor-state-changes YANG schema element. -type Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny struct { +// Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/logging-options/config/log-neighbor-state-changes YANG schema element. +type Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny struct { *ygot.NodePath } -// LogNeighborStateChanges returns from Bgp_PeerGroup_LoggingOptions the path struct for its child "log-neighbor-state-changes". -func (n *Bgp_PeerGroup_LoggingOptions) LogNeighborStateChanges() *Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges { - return &Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges{ +// LogNeighborStateChanges returns from Bgp_PeerGroup_LoggingOptionsPath the path struct for its child "log-neighbor-state-changes". +func (n *Bgp_PeerGroup_LoggingOptionsPath) LogNeighborStateChanges() *Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath { + return &Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// LogNeighborStateChanges returns from Bgp_PeerGroup_LoggingOptionsAny the path struct for its child "log-neighbor-state-changes". -func (n *Bgp_PeerGroup_LoggingOptionsAny) LogNeighborStateChanges() *Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny { - return &Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny{ +// LogNeighborStateChanges returns from Bgp_PeerGroup_LoggingOptionsPathAny the path struct for its child "log-neighbor-state-changes". +func (n *Bgp_PeerGroup_LoggingOptionsPathAny) LogNeighborStateChanges() *Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny { + return &Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_RouteReflector represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector YANG schema element. -type Bgp_PeerGroup_RouteReflector struct { +// Bgp_PeerGroup_RouteReflectorPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector YANG schema element. +type Bgp_PeerGroup_RouteReflectorPath struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteReflectorAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector YANG schema element. -type Bgp_PeerGroup_RouteReflectorAny struct { +// Bgp_PeerGroup_RouteReflectorPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector YANG schema element. +type Bgp_PeerGroup_RouteReflectorPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteReflector_RouteReflectorClient represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-client YANG schema element. -type Bgp_PeerGroup_RouteReflector_RouteReflectorClient struct { +// Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-client YANG schema element. +type Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-client YANG schema element. -type Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny struct { +// Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-client YANG schema element. +type Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-cluster-id YANG schema element. -type Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId struct { +// Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-cluster-id YANG schema element. +type Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath struct { *ygot.NodePath } -// Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-cluster-id YANG schema element. -type Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny struct { +// Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-cluster-id YANG schema element. +type Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny struct { *ygot.NodePath } -// RouteReflectorClient returns from Bgp_PeerGroup_RouteReflector the path struct for its child "route-reflector-client". -func (n *Bgp_PeerGroup_RouteReflector) RouteReflectorClient() *Bgp_PeerGroup_RouteReflector_RouteReflectorClient { - return &Bgp_PeerGroup_RouteReflector_RouteReflectorClient{ +// RouteReflectorClient returns from Bgp_PeerGroup_RouteReflectorPath the path struct for its child "route-reflector-client". +func (n *Bgp_PeerGroup_RouteReflectorPath) RouteReflectorClient() *Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath { + return &Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClient returns from Bgp_PeerGroup_RouteReflectorAny the path struct for its child "route-reflector-client". -func (n *Bgp_PeerGroup_RouteReflectorAny) RouteReflectorClient() *Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny { - return &Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny{ +// RouteReflectorClient returns from Bgp_PeerGroup_RouteReflectorPathAny the path struct for its child "route-reflector-client". +func (n *Bgp_PeerGroup_RouteReflectorPathAny) RouteReflectorClient() *Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny { + return &Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from Bgp_PeerGroup_RouteReflector the path struct for its child "route-reflector-cluster-id". -func (n *Bgp_PeerGroup_RouteReflector) RouteReflectorClusterId() *Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId { - return &Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId{ +// RouteReflectorClusterId returns from Bgp_PeerGroup_RouteReflectorPath the path struct for its child "route-reflector-cluster-id". +func (n *Bgp_PeerGroup_RouteReflectorPath) RouteReflectorClusterId() *Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath { + return &Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from Bgp_PeerGroup_RouteReflectorAny the path struct for its child "route-reflector-cluster-id". -func (n *Bgp_PeerGroup_RouteReflectorAny) RouteReflectorClusterId() *Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny { - return &Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny{ +// RouteReflectorClusterId returns from Bgp_PeerGroup_RouteReflectorPathAny the path struct for its child "route-reflector-cluster-id". +func (n *Bgp_PeerGroup_RouteReflectorPathAny) RouteReflectorClusterId() *Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny { + return &Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_Timers represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers YANG schema element. -type Bgp_PeerGroup_Timers struct { +// Bgp_PeerGroup_TimersPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers YANG schema element. +type Bgp_PeerGroup_TimersPath struct { *ygot.NodePath } -// Bgp_PeerGroup_TimersAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers YANG schema element. -type Bgp_PeerGroup_TimersAny struct { +// Bgp_PeerGroup_TimersPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers YANG schema element. +type Bgp_PeerGroup_TimersPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_ConnectRetry represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/connect-retry YANG schema element. -type Bgp_PeerGroup_Timers_ConnectRetry struct { +// Bgp_PeerGroup_Timers_ConnectRetryPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/connect-retry YANG schema element. +type Bgp_PeerGroup_Timers_ConnectRetryPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_ConnectRetryAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/connect-retry YANG schema element. -type Bgp_PeerGroup_Timers_ConnectRetryAny struct { +// Bgp_PeerGroup_Timers_ConnectRetryPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/connect-retry YANG schema element. +type Bgp_PeerGroup_Timers_ConnectRetryPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_HoldTime represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/hold-time YANG schema element. -type Bgp_PeerGroup_Timers_HoldTime struct { +// Bgp_PeerGroup_Timers_HoldTimePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/hold-time YANG schema element. +type Bgp_PeerGroup_Timers_HoldTimePath struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_HoldTimeAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/hold-time YANG schema element. -type Bgp_PeerGroup_Timers_HoldTimeAny struct { +// Bgp_PeerGroup_Timers_HoldTimePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/hold-time YANG schema element. +type Bgp_PeerGroup_Timers_HoldTimePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_KeepaliveInterval represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/keepalive-interval YANG schema element. -type Bgp_PeerGroup_Timers_KeepaliveInterval struct { +// Bgp_PeerGroup_Timers_KeepaliveIntervalPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/keepalive-interval YANG schema element. +type Bgp_PeerGroup_Timers_KeepaliveIntervalPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_KeepaliveIntervalAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/keepalive-interval YANG schema element. -type Bgp_PeerGroup_Timers_KeepaliveIntervalAny struct { +// Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/keepalive-interval YANG schema element. +type Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_MinimumAdvertisementInterval represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/minimum-advertisement-interval YANG schema element. -type Bgp_PeerGroup_Timers_MinimumAdvertisementInterval struct { +// Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/minimum-advertisement-interval YANG schema element. +type Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/state/minimum-advertisement-interval YANG schema element. -type Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny struct { +// Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/timers/config/minimum-advertisement-interval YANG schema element. +type Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny struct { *ygot.NodePath } -// ConnectRetry returns from Bgp_PeerGroup_Timers the path struct for its child "connect-retry". -func (n *Bgp_PeerGroup_Timers) ConnectRetry() *Bgp_PeerGroup_Timers_ConnectRetry { - return &Bgp_PeerGroup_Timers_ConnectRetry{ +// ConnectRetry returns from Bgp_PeerGroup_TimersPath the path struct for its child "connect-retry". +func (n *Bgp_PeerGroup_TimersPath) ConnectRetry() *Bgp_PeerGroup_Timers_ConnectRetryPath { + return &Bgp_PeerGroup_Timers_ConnectRetryPath{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// ConnectRetry returns from Bgp_PeerGroup_TimersAny the path struct for its child "connect-retry". -func (n *Bgp_PeerGroup_TimersAny) ConnectRetry() *Bgp_PeerGroup_Timers_ConnectRetryAny { - return &Bgp_PeerGroup_Timers_ConnectRetryAny{ +// ConnectRetry returns from Bgp_PeerGroup_TimersPathAny the path struct for its child "connect-retry". +func (n *Bgp_PeerGroup_TimersPathAny) ConnectRetry() *Bgp_PeerGroup_Timers_ConnectRetryPathAny { + return &Bgp_PeerGroup_Timers_ConnectRetryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Bgp_PeerGroup_Timers the path struct for its child "hold-time". -func (n *Bgp_PeerGroup_Timers) HoldTime() *Bgp_PeerGroup_Timers_HoldTime { - return &Bgp_PeerGroup_Timers_HoldTime{ +// HoldTime returns from Bgp_PeerGroup_TimersPath the path struct for its child "hold-time". +func (n *Bgp_PeerGroup_TimersPath) HoldTime() *Bgp_PeerGroup_Timers_HoldTimePath { + return &Bgp_PeerGroup_Timers_HoldTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Bgp_PeerGroup_TimersAny the path struct for its child "hold-time". -func (n *Bgp_PeerGroup_TimersAny) HoldTime() *Bgp_PeerGroup_Timers_HoldTimeAny { - return &Bgp_PeerGroup_Timers_HoldTimeAny{ +// HoldTime returns from Bgp_PeerGroup_TimersPathAny the path struct for its child "hold-time". +func (n *Bgp_PeerGroup_TimersPathAny) HoldTime() *Bgp_PeerGroup_Timers_HoldTimePathAny { + return &Bgp_PeerGroup_Timers_HoldTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from Bgp_PeerGroup_Timers the path struct for its child "keepalive-interval". -func (n *Bgp_PeerGroup_Timers) KeepaliveInterval() *Bgp_PeerGroup_Timers_KeepaliveInterval { - return &Bgp_PeerGroup_Timers_KeepaliveInterval{ +// KeepaliveInterval returns from Bgp_PeerGroup_TimersPath the path struct for its child "keepalive-interval". +func (n *Bgp_PeerGroup_TimersPath) KeepaliveInterval() *Bgp_PeerGroup_Timers_KeepaliveIntervalPath { + return &Bgp_PeerGroup_Timers_KeepaliveIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from Bgp_PeerGroup_TimersAny the path struct for its child "keepalive-interval". -func (n *Bgp_PeerGroup_TimersAny) KeepaliveInterval() *Bgp_PeerGroup_Timers_KeepaliveIntervalAny { - return &Bgp_PeerGroup_Timers_KeepaliveIntervalAny{ +// KeepaliveInterval returns from Bgp_PeerGroup_TimersPathAny the path struct for its child "keepalive-interval". +func (n *Bgp_PeerGroup_TimersPathAny) KeepaliveInterval() *Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny { + return &Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from Bgp_PeerGroup_Timers the path struct for its child "minimum-advertisement-interval". -func (n *Bgp_PeerGroup_Timers) MinimumAdvertisementInterval() *Bgp_PeerGroup_Timers_MinimumAdvertisementInterval { - return &Bgp_PeerGroup_Timers_MinimumAdvertisementInterval{ +// MinimumAdvertisementInterval returns from Bgp_PeerGroup_TimersPath the path struct for its child "minimum-advertisement-interval". +func (n *Bgp_PeerGroup_TimersPath) MinimumAdvertisementInterval() *Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath { + return &Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from Bgp_PeerGroup_TimersAny the path struct for its child "minimum-advertisement-interval". -func (n *Bgp_PeerGroup_TimersAny) MinimumAdvertisementInterval() *Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny { - return &Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny{ +// MinimumAdvertisementInterval returns from Bgp_PeerGroup_TimersPathAny the path struct for its child "minimum-advertisement-interval". +func (n *Bgp_PeerGroup_TimersPathAny) MinimumAdvertisementInterval() *Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny { + return &Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_Transport represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport YANG schema element. -type Bgp_PeerGroup_Transport struct { +// Bgp_PeerGroup_TransportPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport YANG schema element. +type Bgp_PeerGroup_TransportPath struct { *ygot.NodePath } -// Bgp_PeerGroup_TransportAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport YANG schema element. -type Bgp_PeerGroup_TransportAny struct { +// Bgp_PeerGroup_TransportPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport YANG schema element. +type Bgp_PeerGroup_TransportPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_LocalAddress represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/local-address YANG schema element. -type Bgp_PeerGroup_Transport_LocalAddress struct { +// Bgp_PeerGroup_Transport_LocalAddressPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/local-address YANG schema element. +type Bgp_PeerGroup_Transport_LocalAddressPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_LocalAddressAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/local-address YANG schema element. -type Bgp_PeerGroup_Transport_LocalAddressAny struct { +// Bgp_PeerGroup_Transport_LocalAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/local-address YANG schema element. +type Bgp_PeerGroup_Transport_LocalAddressPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_MtuDiscovery represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/mtu-discovery YANG schema element. -type Bgp_PeerGroup_Transport_MtuDiscovery struct { +// Bgp_PeerGroup_Transport_MtuDiscoveryPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/mtu-discovery YANG schema element. +type Bgp_PeerGroup_Transport_MtuDiscoveryPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_MtuDiscoveryAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/mtu-discovery YANG schema element. -type Bgp_PeerGroup_Transport_MtuDiscoveryAny struct { +// Bgp_PeerGroup_Transport_MtuDiscoveryPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/mtu-discovery YANG schema element. +type Bgp_PeerGroup_Transport_MtuDiscoveryPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_PassiveMode represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/passive-mode YANG schema element. -type Bgp_PeerGroup_Transport_PassiveMode struct { +// Bgp_PeerGroup_Transport_PassiveModePath represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/passive-mode YANG schema element. +type Bgp_PeerGroup_Transport_PassiveModePath struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_PassiveModeAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/passive-mode YANG schema element. -type Bgp_PeerGroup_Transport_PassiveModeAny struct { +// Bgp_PeerGroup_Transport_PassiveModePathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/passive-mode YANG schema element. +type Bgp_PeerGroup_Transport_PassiveModePathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_TcpMss represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/tcp-mss YANG schema element. -type Bgp_PeerGroup_Transport_TcpMss struct { +// Bgp_PeerGroup_Transport_TcpMssPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/tcp-mss YANG schema element. +type Bgp_PeerGroup_Transport_TcpMssPath struct { *ygot.NodePath } -// Bgp_PeerGroup_Transport_TcpMssAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/state/tcp-mss YANG schema element. -type Bgp_PeerGroup_Transport_TcpMssAny struct { +// Bgp_PeerGroup_Transport_TcpMssPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/transport/config/tcp-mss YANG schema element. +type Bgp_PeerGroup_Transport_TcpMssPathAny struct { *ygot.NodePath } -// LocalAddress returns from Bgp_PeerGroup_Transport the path struct for its child "local-address". -func (n *Bgp_PeerGroup_Transport) LocalAddress() *Bgp_PeerGroup_Transport_LocalAddress { - return &Bgp_PeerGroup_Transport_LocalAddress{ +// LocalAddress returns from Bgp_PeerGroup_TransportPath the path struct for its child "local-address". +func (n *Bgp_PeerGroup_TransportPath) LocalAddress() *Bgp_PeerGroup_Transport_LocalAddressPath { + return &Bgp_PeerGroup_Transport_LocalAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from Bgp_PeerGroup_TransportAny the path struct for its child "local-address". -func (n *Bgp_PeerGroup_TransportAny) LocalAddress() *Bgp_PeerGroup_Transport_LocalAddressAny { - return &Bgp_PeerGroup_Transport_LocalAddressAny{ +// LocalAddress returns from Bgp_PeerGroup_TransportPathAny the path struct for its child "local-address". +func (n *Bgp_PeerGroup_TransportPathAny) LocalAddress() *Bgp_PeerGroup_Transport_LocalAddressPathAny { + return &Bgp_PeerGroup_Transport_LocalAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from Bgp_PeerGroup_Transport the path struct for its child "mtu-discovery". -func (n *Bgp_PeerGroup_Transport) MtuDiscovery() *Bgp_PeerGroup_Transport_MtuDiscovery { - return &Bgp_PeerGroup_Transport_MtuDiscovery{ +// MtuDiscovery returns from Bgp_PeerGroup_TransportPath the path struct for its child "mtu-discovery". +func (n *Bgp_PeerGroup_TransportPath) MtuDiscovery() *Bgp_PeerGroup_Transport_MtuDiscoveryPath { + return &Bgp_PeerGroup_Transport_MtuDiscoveryPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from Bgp_PeerGroup_TransportAny the path struct for its child "mtu-discovery". -func (n *Bgp_PeerGroup_TransportAny) MtuDiscovery() *Bgp_PeerGroup_Transport_MtuDiscoveryAny { - return &Bgp_PeerGroup_Transport_MtuDiscoveryAny{ +// MtuDiscovery returns from Bgp_PeerGroup_TransportPathAny the path struct for its child "mtu-discovery". +func (n *Bgp_PeerGroup_TransportPathAny) MtuDiscovery() *Bgp_PeerGroup_Transport_MtuDiscoveryPathAny { + return &Bgp_PeerGroup_Transport_MtuDiscoveryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from Bgp_PeerGroup_Transport the path struct for its child "passive-mode". -func (n *Bgp_PeerGroup_Transport) PassiveMode() *Bgp_PeerGroup_Transport_PassiveMode { - return &Bgp_PeerGroup_Transport_PassiveMode{ +// PassiveMode returns from Bgp_PeerGroup_TransportPath the path struct for its child "passive-mode". +func (n *Bgp_PeerGroup_TransportPath) PassiveMode() *Bgp_PeerGroup_Transport_PassiveModePath { + return &Bgp_PeerGroup_Transport_PassiveModePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from Bgp_PeerGroup_TransportAny the path struct for its child "passive-mode". -func (n *Bgp_PeerGroup_TransportAny) PassiveMode() *Bgp_PeerGroup_Transport_PassiveModeAny { - return &Bgp_PeerGroup_Transport_PassiveModeAny{ +// PassiveMode returns from Bgp_PeerGroup_TransportPathAny the path struct for its child "passive-mode". +func (n *Bgp_PeerGroup_TransportPathAny) PassiveMode() *Bgp_PeerGroup_Transport_PassiveModePathAny { + return &Bgp_PeerGroup_Transport_PassiveModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from Bgp_PeerGroup_Transport the path struct for its child "tcp-mss". -func (n *Bgp_PeerGroup_Transport) TcpMss() *Bgp_PeerGroup_Transport_TcpMss { - return &Bgp_PeerGroup_Transport_TcpMss{ +// TcpMss returns from Bgp_PeerGroup_TransportPath the path struct for its child "tcp-mss". +func (n *Bgp_PeerGroup_TransportPath) TcpMss() *Bgp_PeerGroup_Transport_TcpMssPath { + return &Bgp_PeerGroup_Transport_TcpMssPath{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from Bgp_PeerGroup_TransportAny the path struct for its child "tcp-mss". -func (n *Bgp_PeerGroup_TransportAny) TcpMss() *Bgp_PeerGroup_Transport_TcpMssAny { - return &Bgp_PeerGroup_Transport_TcpMssAny{ +// TcpMss returns from Bgp_PeerGroup_TransportPathAny the path struct for its child "tcp-mss". +func (n *Bgp_PeerGroup_TransportPathAny) TcpMss() *Bgp_PeerGroup_Transport_TcpMssPathAny { + return &Bgp_PeerGroup_Transport_TcpMssPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_UseMultiplePaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths struct { +// Bgp_PeerGroup_UseMultiplePathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePathsAny struct { +// Bgp_PeerGroup_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePathsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Enabled represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/state/enabled YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Enabled struct { +// Bgp_PeerGroup_UseMultiplePaths_EnabledPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/config/enabled YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/state/enabled YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_EnabledAny struct { +// Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/config/enabled YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from Bgp_PeerGroup_UseMultiplePaths the path struct for its child "ebgp". -func (n *Bgp_PeerGroup_UseMultiplePaths) Ebgp() *Bgp_PeerGroup_UseMultiplePaths_Ebgp { - return &Bgp_PeerGroup_UseMultiplePaths_Ebgp{ +// Ebgp returns from Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *Bgp_PeerGroup_UseMultiplePathsPath) Ebgp() *Bgp_PeerGroup_UseMultiplePaths_EbgpPath { + return &Bgp_PeerGroup_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -19718,9 +19713,9 @@ func (n *Bgp_PeerGroup_UseMultiplePaths) Ebgp() *Bgp_PeerGroup_UseMultiplePaths_ } } -// Ebgp returns from Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *Bgp_PeerGroup_UseMultiplePathsAny) Ebgp() *Bgp_PeerGroup_UseMultiplePaths_EbgpAny { - return &Bgp_PeerGroup_UseMultiplePaths_EbgpAny{ +// Ebgp returns from Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *Bgp_PeerGroup_UseMultiplePathsPathAny) Ebgp() *Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -19729,31 +19724,31 @@ func (n *Bgp_PeerGroup_UseMultiplePathsAny) Ebgp() *Bgp_PeerGroup_UseMultiplePat } } -// Enabled returns from Bgp_PeerGroup_UseMultiplePaths the path struct for its child "enabled". -func (n *Bgp_PeerGroup_UseMultiplePaths) Enabled() *Bgp_PeerGroup_UseMultiplePaths_Enabled { - return &Bgp_PeerGroup_UseMultiplePaths_Enabled{ +// Enabled returns from Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "enabled". +func (n *Bgp_PeerGroup_UseMultiplePathsPath) Enabled() *Bgp_PeerGroup_UseMultiplePaths_EnabledPath { + return &Bgp_PeerGroup_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "enabled". -func (n *Bgp_PeerGroup_UseMultiplePathsAny) Enabled() *Bgp_PeerGroup_UseMultiplePaths_EnabledAny { - return &Bgp_PeerGroup_UseMultiplePaths_EnabledAny{ +// Enabled returns from Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *Bgp_PeerGroup_UseMultiplePathsPathAny) Enabled() *Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from Bgp_PeerGroup_UseMultiplePaths the path struct for its child "ibgp". -func (n *Bgp_PeerGroup_UseMultiplePaths) Ibgp() *Bgp_PeerGroup_UseMultiplePaths_Ibgp { - return &Bgp_PeerGroup_UseMultiplePaths_Ibgp{ +// Ibgp returns from Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *Bgp_PeerGroup_UseMultiplePathsPath) Ibgp() *Bgp_PeerGroup_UseMultiplePaths_IbgpPath { + return &Bgp_PeerGroup_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -19762,9 +19757,9 @@ func (n *Bgp_PeerGroup_UseMultiplePaths) Ibgp() *Bgp_PeerGroup_UseMultiplePaths_ } } -// Ibgp returns from Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *Bgp_PeerGroup_UseMultiplePathsAny) Ibgp() *Bgp_PeerGroup_UseMultiplePaths_IbgpAny { - return &Bgp_PeerGroup_UseMultiplePaths_IbgpAny{ +// Ibgp returns from Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *Bgp_PeerGroup_UseMultiplePathsPathAny) Ibgp() *Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -19773,135 +19768,135 @@ func (n *Bgp_PeerGroup_UseMultiplePathsAny) Ibgp() *Bgp_PeerGroup_UseMultiplePat } } -// Bgp_PeerGroup_UseMultiplePaths_Ebgp represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ebgp struct { +// Bgp_PeerGroup_UseMultiplePaths_EbgpPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_EbgpAny struct { +// Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths struct { +// Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from Bgp_PeerGroup_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *Bgp_PeerGroup_UseMultiplePaths_Ebgp) AllowMultipleAs() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from Bgp_PeerGroup_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpPath) AllowMultipleAs() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from Bgp_PeerGroup_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpAny) AllowMultipleAs() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_UseMultiplePaths_Ebgp) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths { - return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpPath) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpAny) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_PeerGroup_UseMultiplePaths_Ibgp represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ibgp struct { +// Bgp_PeerGroup_UseMultiplePaths_IbgpPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_IbgpAny struct { +// Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths struct { +// Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-bgp/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_UseMultiplePaths_Ibgp) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths { - return &Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_UseMultiplePaths_IbgpPath) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *Bgp_PeerGroup_UseMultiplePaths_IbgpAny) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny) MaximumPaths() *Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// Bgp_Rib represents the /openconfig-bgp/bgp/rib YANG schema element. -type Bgp_Rib struct { +// Bgp_RibPath represents the /openconfig-bgp/bgp/rib YANG schema element. +type Bgp_RibPath struct { *ygot.NodePath } -// Bgp_RibAny represents the wildcard version of the /openconfig-bgp/bgp/rib YANG schema element. -type Bgp_RibAny struct { +// Bgp_RibPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib YANG schema element. +type Bgp_RibPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from Bgp_Rib the path struct for its child "afi-safi". -func (n *Bgp_Rib) AfiSafiAny() *Bgp_Rib_AfiSafiAny { - return &Bgp_Rib_AfiSafiAny{ +// AfiSafiAny returns from Bgp_RibPath the path struct for its child "afi-safi". +func (n *Bgp_RibPath) AfiSafiAny() *Bgp_Rib_AfiSafiPathAny { + return &Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -19910,9 +19905,9 @@ func (n *Bgp_Rib) AfiSafiAny() *Bgp_Rib_AfiSafiAny { } } -// AfiSafiAny returns from Bgp_RibAny the path struct for its child "afi-safi". -func (n *Bgp_RibAny) AfiSafiAny() *Bgp_Rib_AfiSafiAny { - return &Bgp_Rib_AfiSafiAny{ +// AfiSafiAny returns from Bgp_RibPathAny the path struct for its child "afi-safi". +func (n *Bgp_RibPathAny) AfiSafiAny() *Bgp_Rib_AfiSafiPathAny { + return &Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -19921,9 +19916,9 @@ func (n *Bgp_RibAny) AfiSafiAny() *Bgp_Rib_AfiSafiAny { } } -// AfiSafi returns from Bgp_Rib the path struct for its child "afi-safi". -func (n *Bgp_Rib) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Rib_AfiSafi { - return &Bgp_Rib_AfiSafi{ +// AfiSafi returns from Bgp_RibPath the path struct for its child "afi-safi". +func (n *Bgp_RibPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Rib_AfiSafiPath { + return &Bgp_Rib_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -19932,9 +19927,9 @@ func (n *Bgp_Rib) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bg } } -// AfiSafi returns from Bgp_RibAny the path struct for its child "afi-safi". -func (n *Bgp_RibAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Rib_AfiSafiAny { - return &Bgp_Rib_AfiSafiAny{ +// AfiSafi returns from Bgp_RibPathAny the path struct for its child "afi-safi". +func (n *Bgp_RibPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *Bgp_Rib_AfiSafiPathAny { + return &Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -19943,9 +19938,9 @@ func (n *Bgp_RibAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) } } -// AttrSetAny returns from Bgp_Rib the path struct for its child "attr-set". -func (n *Bgp_Rib) AttrSetAny() *Bgp_Rib_AttrSetAny { - return &Bgp_Rib_AttrSetAny{ +// AttrSetAny returns from Bgp_RibPath the path struct for its child "attr-set". +func (n *Bgp_RibPath) AttrSetAny() *Bgp_Rib_AttrSetPathAny { + return &Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": "*"}, @@ -19954,9 +19949,9 @@ func (n *Bgp_Rib) AttrSetAny() *Bgp_Rib_AttrSetAny { } } -// AttrSetAny returns from Bgp_RibAny the path struct for its child "attr-set". -func (n *Bgp_RibAny) AttrSetAny() *Bgp_Rib_AttrSetAny { - return &Bgp_Rib_AttrSetAny{ +// AttrSetAny returns from Bgp_RibPathAny the path struct for its child "attr-set". +func (n *Bgp_RibPathAny) AttrSetAny() *Bgp_Rib_AttrSetPathAny { + return &Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": "*"}, @@ -19965,9 +19960,9 @@ func (n *Bgp_RibAny) AttrSetAny() *Bgp_Rib_AttrSetAny { } } -// AttrSet returns from Bgp_Rib the path struct for its child "attr-set". -func (n *Bgp_Rib) AttrSet(Index uint64) *Bgp_Rib_AttrSet { - return &Bgp_Rib_AttrSet{ +// AttrSet returns from Bgp_RibPath the path struct for its child "attr-set". +func (n *Bgp_RibPath) AttrSet(Index uint64) *Bgp_Rib_AttrSetPath { + return &Bgp_Rib_AttrSetPath{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": Index}, @@ -19976,9 +19971,9 @@ func (n *Bgp_Rib) AttrSet(Index uint64) *Bgp_Rib_AttrSet { } } -// AttrSet returns from Bgp_RibAny the path struct for its child "attr-set". -func (n *Bgp_RibAny) AttrSet(Index uint64) *Bgp_Rib_AttrSetAny { - return &Bgp_Rib_AttrSetAny{ +// AttrSet returns from Bgp_RibPathAny the path struct for its child "attr-set". +func (n *Bgp_RibPathAny) AttrSet(Index uint64) *Bgp_Rib_AttrSetPathAny { + return &Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": Index}, @@ -19987,9 +19982,9 @@ func (n *Bgp_RibAny) AttrSet(Index uint64) *Bgp_Rib_AttrSetAny { } } -// CommunityAny returns from Bgp_Rib the path struct for its child "community". -func (n *Bgp_Rib) CommunityAny() *Bgp_Rib_CommunityAny { - return &Bgp_Rib_CommunityAny{ +// CommunityAny returns from Bgp_RibPath the path struct for its child "community". +func (n *Bgp_RibPath) CommunityAny() *Bgp_Rib_CommunityPathAny { + return &Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": "*"}, @@ -19998,9 +19993,9 @@ func (n *Bgp_Rib) CommunityAny() *Bgp_Rib_CommunityAny { } } -// CommunityAny returns from Bgp_RibAny the path struct for its child "community". -func (n *Bgp_RibAny) CommunityAny() *Bgp_Rib_CommunityAny { - return &Bgp_Rib_CommunityAny{ +// CommunityAny returns from Bgp_RibPathAny the path struct for its child "community". +func (n *Bgp_RibPathAny) CommunityAny() *Bgp_Rib_CommunityPathAny { + return &Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": "*"}, @@ -20009,9 +20004,9 @@ func (n *Bgp_RibAny) CommunityAny() *Bgp_Rib_CommunityAny { } } -// Community returns from Bgp_Rib the path struct for its child "community". -func (n *Bgp_Rib) Community(Index uint64) *Bgp_Rib_Community { - return &Bgp_Rib_Community{ +// Community returns from Bgp_RibPath the path struct for its child "community". +func (n *Bgp_RibPath) Community(Index uint64) *Bgp_Rib_CommunityPath { + return &Bgp_Rib_CommunityPath{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": Index}, @@ -20020,9 +20015,9 @@ func (n *Bgp_Rib) Community(Index uint64) *Bgp_Rib_Community { } } -// Community returns from Bgp_RibAny the path struct for its child "community". -func (n *Bgp_RibAny) Community(Index uint64) *Bgp_Rib_CommunityAny { - return &Bgp_Rib_CommunityAny{ +// Community returns from Bgp_RibPathAny the path struct for its child "community". +func (n *Bgp_RibPathAny) Community(Index uint64) *Bgp_Rib_CommunityPathAny { + return &Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": Index}, @@ -20031,9 +20026,9 @@ func (n *Bgp_RibAny) Community(Index uint64) *Bgp_Rib_CommunityAny { } } -// ExtCommunityAny returns from Bgp_Rib the path struct for its child "ext-community". -func (n *Bgp_Rib) ExtCommunityAny() *Bgp_Rib_ExtCommunityAny { - return &Bgp_Rib_ExtCommunityAny{ +// ExtCommunityAny returns from Bgp_RibPath the path struct for its child "ext-community". +func (n *Bgp_RibPath) ExtCommunityAny() *Bgp_Rib_ExtCommunityPathAny { + return &Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": "*"}, @@ -20042,9 +20037,9 @@ func (n *Bgp_Rib) ExtCommunityAny() *Bgp_Rib_ExtCommunityAny { } } -// ExtCommunityAny returns from Bgp_RibAny the path struct for its child "ext-community". -func (n *Bgp_RibAny) ExtCommunityAny() *Bgp_Rib_ExtCommunityAny { - return &Bgp_Rib_ExtCommunityAny{ +// ExtCommunityAny returns from Bgp_RibPathAny the path struct for its child "ext-community". +func (n *Bgp_RibPathAny) ExtCommunityAny() *Bgp_Rib_ExtCommunityPathAny { + return &Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": "*"}, @@ -20053,9 +20048,9 @@ func (n *Bgp_RibAny) ExtCommunityAny() *Bgp_Rib_ExtCommunityAny { } } -// ExtCommunity returns from Bgp_Rib the path struct for its child "ext-community". -func (n *Bgp_Rib) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunity { - return &Bgp_Rib_ExtCommunity{ +// ExtCommunity returns from Bgp_RibPath the path struct for its child "ext-community". +func (n *Bgp_RibPath) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunityPath { + return &Bgp_Rib_ExtCommunityPath{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": Index}, @@ -20064,9 +20059,9 @@ func (n *Bgp_Rib) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunity { } } -// ExtCommunity returns from Bgp_RibAny the path struct for its child "ext-community". -func (n *Bgp_RibAny) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunityAny { - return &Bgp_Rib_ExtCommunityAny{ +// ExtCommunity returns from Bgp_RibPathAny the path struct for its child "ext-community". +func (n *Bgp_RibPathAny) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunityPathAny { + return &Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": Index}, @@ -20075,29 +20070,29 @@ func (n *Bgp_RibAny) ExtCommunity(Index uint64) *Bgp_Rib_ExtCommunityAny { } } -// Bgp_Rib_AfiSafi represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi YANG schema element. -type Bgp_Rib_AfiSafi struct { +// Bgp_Rib_AfiSafiPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi YANG schema element. +type Bgp_Rib_AfiSafiPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafiAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi YANG schema element. -type Bgp_Rib_AfiSafiAny struct { +// Bgp_Rib_AfiSafiPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi YANG schema element. +type Bgp_Rib_AfiSafiPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_AfiSafiName represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Rib_AfiSafi_AfiSafiName struct { +// Bgp_Rib_AfiSafi_AfiSafiNamePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. +type Bgp_Rib_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type Bgp_Rib_AfiSafi_AfiSafiNameAny struct { +// Bgp_Rib_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. +type Bgp_Rib_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// AfiSafiName returns from Bgp_Rib_AfiSafi the path struct for its child "afi-safi-name". -func (n *Bgp_Rib_AfiSafi) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiName { - return &Bgp_Rib_AfiSafi_AfiSafiName{ +// AfiSafiName returns from Bgp_Rib_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *Bgp_Rib_AfiSafiPath) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiNamePath { + return &Bgp_Rib_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( []string{"state", "afi-safi-name"}, map[string]interface{}{}, @@ -20106,9 +20101,9 @@ func (n *Bgp_Rib_AfiSafi) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiName { } } -// AfiSafiName returns from Bgp_Rib_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *Bgp_Rib_AfiSafiAny) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiNameAny { - return &Bgp_Rib_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from Bgp_Rib_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *Bgp_Rib_AfiSafiPathAny) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiNamePathAny { + return &Bgp_Rib_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "afi-safi-name"}, map[string]interface{}{}, @@ -20117,9 +20112,9 @@ func (n *Bgp_Rib_AfiSafiAny) AfiSafiName() *Bgp_Rib_AfiSafi_AfiSafiNameAny { } } -// Ipv4SrtePolicy returns from Bgp_Rib_AfiSafi the path struct for its child "ipv4-srte-policy". -func (n *Bgp_Rib_AfiSafi) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy{ +// Ipv4SrtePolicy returns from Bgp_Rib_AfiSafiPath the path struct for its child "ipv4-srte-policy". +func (n *Bgp_Rib_AfiSafiPath) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath{ NodePath: ygot.NewNodePath( []string{"ipv4-srte-policy"}, map[string]interface{}{}, @@ -20128,9 +20123,9 @@ func (n *Bgp_Rib_AfiSafi) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy { } } -// Ipv4SrtePolicy returns from Bgp_Rib_AfiSafiAny the path struct for its child "ipv4-srte-policy". -func (n *Bgp_Rib_AfiSafiAny) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny{ +// Ipv4SrtePolicy returns from Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv4-srte-policy". +func (n *Bgp_Rib_AfiSafiPathAny) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-srte-policy"}, map[string]interface{}{}, @@ -20139,9 +20134,9 @@ func (n *Bgp_Rib_AfiSafiAny) Ipv4SrtePolicy() *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny } } -// Ipv4Unicast returns from Bgp_Rib_AfiSafi the path struct for its child "ipv4-unicast". -func (n *Bgp_Rib_AfiSafi) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4Unicast { - return &Bgp_Rib_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from Bgp_Rib_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *Bgp_Rib_AfiSafiPath) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4UnicastPath { + return &Bgp_Rib_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -20150,9 +20145,9 @@ func (n *Bgp_Rib_AfiSafi) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4Unicast { } } -// Ipv4Unicast returns from Bgp_Rib_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *Bgp_Rib_AfiSafiAny) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4UnicastAny { - return &Bgp_Rib_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *Bgp_Rib_AfiSafiPathAny) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4UnicastPathAny { + return &Bgp_Rib_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -20161,9 +20156,9 @@ func (n *Bgp_Rib_AfiSafiAny) Ipv4Unicast() *Bgp_Rib_AfiSafi_Ipv4UnicastAny { } } -// Ipv6SrtePolicy returns from Bgp_Rib_AfiSafi the path struct for its child "ipv6-srte-policy". -func (n *Bgp_Rib_AfiSafi) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy{ +// Ipv6SrtePolicy returns from Bgp_Rib_AfiSafiPath the path struct for its child "ipv6-srte-policy". +func (n *Bgp_Rib_AfiSafiPath) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath{ NodePath: ygot.NewNodePath( []string{"ipv6-srte-policy"}, map[string]interface{}{}, @@ -20172,9 +20167,9 @@ func (n *Bgp_Rib_AfiSafi) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy { } } -// Ipv6SrtePolicy returns from Bgp_Rib_AfiSafiAny the path struct for its child "ipv6-srte-policy". -func (n *Bgp_Rib_AfiSafiAny) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny{ +// Ipv6SrtePolicy returns from Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv6-srte-policy". +func (n *Bgp_Rib_AfiSafiPathAny) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-srte-policy"}, map[string]interface{}{}, @@ -20183,9 +20178,9 @@ func (n *Bgp_Rib_AfiSafiAny) Ipv6SrtePolicy() *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny } } -// Ipv6Unicast returns from Bgp_Rib_AfiSafi the path struct for its child "ipv6-unicast". -func (n *Bgp_Rib_AfiSafi) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6Unicast { - return &Bgp_Rib_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from Bgp_Rib_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *Bgp_Rib_AfiSafiPath) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6UnicastPath { + return &Bgp_Rib_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -20194,9 +20189,9 @@ func (n *Bgp_Rib_AfiSafi) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6Unicast { } } -// Ipv6Unicast returns from Bgp_Rib_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *Bgp_Rib_AfiSafiAny) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6UnicastAny { - return &Bgp_Rib_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *Bgp_Rib_AfiSafiPathAny) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6UnicastPathAny { + return &Bgp_Rib_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -20205,19 +20200,19 @@ func (n *Bgp_Rib_AfiSafiAny) Ipv6Unicast() *Bgp_Rib_AfiSafi_Ipv6UnicastAny { } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny struct { *ygot.NodePath } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -20226,9 +20221,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePolic } } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -20237,9 +20232,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4SrtePo } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -20248,9 +20243,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Srte } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -20259,9 +20254,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4S } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -20270,9 +20265,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy) Neighbor(NeighborAddress string) *Bgp_R } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -20281,19 +20276,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) Neighbor(NeighborAddress string) *Bg } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -20302,9 +20297,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv4 } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -20313,127 +20308,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_I } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -20442,9 +20437,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSa } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -20453,9 +20448,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) AttrIndex() *Bgp_Rib_Af } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -20464,9 +20459,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Color() *Bgp_Rib_AfiSafi_I } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -20475,9 +20470,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Color() *Bgp_Rib_AfiSaf } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -20486,9 +20481,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) CommunityIndex() *Bgp_Rib_ } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -20497,9 +20492,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) CommunityIndex() *Bgp_R } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -20508,9 +20503,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Endpoint() *Bgp_Rib_AfiSaf } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -20519,9 +20514,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Endpoint() *Bgp_Rib_Afi } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -20530,9 +20525,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ExtCommunityIndex() *Bgp_R } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -20541,9 +20536,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *Bg } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -20552,9 +20547,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) InvalidReason() *Bgp_Rib_A } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -20563,9 +20558,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) InvalidReason() *Bgp_Ri } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -20574,9 +20569,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) LastModified() *Bgp_Rib_Af } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -20585,9 +20580,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) LastModified() *Bgp_Rib } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -20596,9 +20591,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -20607,9 +20602,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSa } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -20618,9 +20613,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttributeAny() *Bgp } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -20629,9 +20624,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() * } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -20640,9 +20635,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttribute(AttrType } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -20651,9 +20646,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrTy } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -20662,9 +20657,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ValidRoute() *Bgp_Rib_AfiS } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -20673,89 +20668,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ValidRoute() *Bgp_Rib_A } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -20764,9 +20759,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -20775,9 +20770,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLe } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -20786,9 +20781,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrType( } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -20797,9 +20792,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrTy } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -20808,9 +20803,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -20819,9 +20814,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrVa } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -20830,9 +20825,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Extended( } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -20841,9 +20836,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Extend } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -20852,9 +20847,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Optional( } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -20863,9 +20858,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Option } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -20874,9 +20869,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Partial() } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -20885,9 +20880,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Partia } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -20896,9 +20891,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Transitiv } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -20907,29 +20902,29 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Transi } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -20938,9 +20933,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSaf } } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -20949,9 +20944,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPost() *Bgp_Rib_Afi } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -20960,9 +20955,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -20971,9 +20966,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiS } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -20982,9 +20977,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSa } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -20993,9 +20988,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPost() *Bgp_Rib_Af } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -21004,9 +20999,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSaf } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -21015,9 +21010,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPre() *Bgp_Rib_Afi } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -21026,9 +21021,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) NeighborAddress() *Bgp_Rib_Afi } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -21037,19 +21032,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) NeighborAddress() *Bgp_Rib_ } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -21058,9 +21053,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *Bgp_R } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -21069,137 +21064,137 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *Bg } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -21208,9 +21203,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -21219,9 +21214,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrInde } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) BestPath() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -21230,9 +21225,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -21241,9 +21236,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -21252,9 +21247,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *Bg } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -21263,9 +21258,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -21274,9 +21269,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIn } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -21285,9 +21280,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Communit } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -21296,9 +21291,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -21307,9 +21302,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -21318,9 +21313,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunit } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -21329,9 +21324,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommu } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -21340,9 +21335,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReas } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -21351,9 +21346,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidR } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -21362,9 +21357,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) LastModifie } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -21373,9 +21368,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -21384,9 +21379,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *B } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -21395,9 +21390,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -21406,9 +21401,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttr } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -21417,9 +21412,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownA } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -21428,9 +21423,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -21439,9 +21434,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownA } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -21450,9 +21445,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute( } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -21461,89 +21456,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRou } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -21552,9 +21547,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -21563,9 +21558,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -21574,9 +21569,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -21585,9 +21580,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -21596,9 +21591,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -21607,9 +21602,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -21618,9 +21613,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -21629,9 +21624,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -21640,9 +21635,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -21651,9 +21646,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -21662,9 +21657,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -21673,9 +21668,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -21684,9 +21679,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -21695,19 +21690,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -21716,9 +21711,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *Bgp_Ri } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -21727,127 +21722,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *Bgp } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -21856,9 +21851,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -21867,9 +21862,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -21878,9 +21873,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *Bgp } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -21889,9 +21884,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() * } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -21900,9 +21895,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityInd } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -21911,9 +21906,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Community } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -21922,9 +21917,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() * } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -21933,9 +21928,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint( } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -21944,9 +21939,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunity } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -21955,9 +21950,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommun } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -21966,9 +21961,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReaso } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -21977,9 +21972,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidRe } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -21988,9 +21983,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -21999,9 +21994,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModif } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -22010,9 +22005,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *Bg } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -22021,9 +22016,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -22032,9 +22027,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttri } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -22043,9 +22038,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -22054,9 +22049,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttri } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -22065,9 +22060,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAt } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -22076,9 +22071,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -22087,89 +22082,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRout } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -22178,9 +22173,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -22189,9 +22184,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -22200,9 +22195,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -22211,9 +22206,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -22222,9 +22217,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -22233,9 +22228,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -22244,9 +22239,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -22255,9 +22250,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -22266,9 +22261,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -22277,9 +22272,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -22288,9 +22283,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -22299,9 +22294,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -22310,9 +22305,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -22321,19 +22316,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -22342,9 +22337,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *Bgp_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -22353,127 +22348,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *B } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -22482,9 +22477,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex( } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -22493,9 +22488,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrInd } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -22504,9 +22499,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *B } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -22515,9 +22510,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -22526,9 +22521,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityI } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -22537,9 +22532,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Communi } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -22548,9 +22543,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -22559,9 +22554,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoin } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -22570,9 +22565,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommuni } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -22581,9 +22576,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtComm } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -22592,9 +22587,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidRea } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -22603,9 +22598,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Invalid } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -22614,9 +22609,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModifi } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -22625,9 +22620,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastMod } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -22636,9 +22631,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() * } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -22647,9 +22642,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId( } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -22658,9 +22653,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAtt } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -22669,9 +22664,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Unknown } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -22680,9 +22675,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAtt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -22691,9 +22686,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Unknown } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -22702,9 +22697,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -22713,89 +22708,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRo } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -22804,9 +22799,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -22815,9 +22810,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -22826,9 +22821,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -22837,9 +22832,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -22848,9 +22843,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -22859,9 +22854,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -22870,9 +22865,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -22881,9 +22876,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -22892,9 +22887,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -22903,9 +22898,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -22914,9 +22909,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -22925,9 +22920,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -22936,9 +22931,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -22947,19 +22942,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -22968,9 +22963,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *Bgp_R } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -22979,127 +22974,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *Bg } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -23108,9 +23103,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -23119,9 +23114,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrInde } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -23130,9 +23125,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *Bg } } -// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -23141,9 +23136,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -23152,9 +23147,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIn } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -23163,9 +23158,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Communit } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -23174,9 +23169,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -23185,9 +23180,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -23196,9 +23191,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunit } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -23207,9 +23202,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommu } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -23218,9 +23213,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReas } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -23229,9 +23224,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidR } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -23240,9 +23235,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModifie } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -23251,9 +23246,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -23262,9 +23257,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *B } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -23273,9 +23268,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -23284,9 +23279,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttr } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -23295,9 +23290,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownA } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -23306,9 +23301,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -23317,9 +23312,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownA } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -23328,9 +23323,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute( } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -23339,89 +23334,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRou } } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -23430,9 +23425,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -23441,9 +23436,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -23452,9 +23447,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -23463,9 +23458,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -23474,9 +23469,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -23485,9 +23480,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -23496,9 +23491,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -23507,9 +23502,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -23518,9 +23513,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -23529,9 +23524,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -23540,9 +23535,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -23551,9 +23546,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -23562,9 +23557,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -23573,19 +23568,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Bgp_Rib_AfiSafi_Ipv4Unicast represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast struct { +// Bgp_Rib_AfiSafi_Ipv4UnicastPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4UnicastAny struct { +// Bgp_Rib_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPath) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -23594,9 +23589,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocR } } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -23605,9 +23600,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) LocRib() *Bgp_Rib_AfiSafi_Ipv4Unicast_L } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPath) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -23616,9 +23611,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unicast } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -23627,9 +23622,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv4Unic } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPath) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -23638,9 +23633,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast) Neighbor(NeighborAddress string) *Bgp_Rib_ } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -23649,19 +23644,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4UnicastAny) Neighbor(NeighborAddress string) *Bgp_R } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -23670,9 +23665,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Uni } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -23681,127 +23676,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4 } } -// WithPrefix sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "prefix" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithPrefix(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithPrefix sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "prefix" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithPrefix(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "prefix", Prefix) return n } -// WithOrigin sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "origin" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithOrigin(Origin oc.Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin_Union) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithOrigin sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "origin" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithOrigin(Origin Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin_Union) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "origin", Origin) return n } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -23810,9 +23805,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_ } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -23821,9 +23816,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSa } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -23832,9 +23827,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) CommunityIndex() *Bgp_Rib_Afi } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -23843,9 +23838,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_ } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -23854,9 +23849,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_ } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -23865,9 +23860,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ExtCommunityIndex() *Bgp_R } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -23876,9 +23871,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) InvalidReason() *Bgp_Rib_AfiS } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -23887,9 +23882,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) InvalidReason() *Bgp_Rib_A } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -23898,9 +23893,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) LastModified() *Bgp_Rib_AfiSa } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -23909,9 +23904,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) LastModified() *Bgp_Rib_Af } } -// Origin returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "origin". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Origin() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin{ +// Origin returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "origin". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) Origin() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -23920,9 +23915,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Origin() *Bgp_Rib_AfiSafi_Ipv } } -// Origin returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "origin". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Origin() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny{ +// Origin returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "origin". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) Origin() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -23931,9 +23926,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Origin() *Bgp_Rib_AfiSafi_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -23942,9 +23937,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -23953,9 +23948,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -23964,9 +23959,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -23975,9 +23970,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Prefix() *Bgp_Rib_AfiSafi_ } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -23986,9 +23981,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttributeAny() *Bgp_Ri } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -23997,9 +23992,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttributeAny() *Bgp } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -24008,9 +24003,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttribute(AttrType uin } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -24019,9 +24014,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttribute(AttrType } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -24030,9 +24025,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -24041,89 +24036,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiS } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -24132,9 +24127,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrLen() *B } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -24143,9 +24138,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -24154,9 +24149,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrType() * } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -24165,9 +24160,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrType( } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -24176,9 +24171,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrValue() } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -24187,9 +24182,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrValue } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -24198,9 +24193,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Extended() * } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -24209,9 +24204,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Extended( } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -24220,9 +24215,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Optional() * } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -24231,9 +24226,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Optional( } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -24242,9 +24237,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Partial() *B } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -24253,9 +24248,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Partial() } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -24264,9 +24259,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Transitive() } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -24275,29 +24270,29 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Transitiv } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -24306,9 +24301,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_I } } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -24317,9 +24312,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSaf } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -24328,9 +24323,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ip } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -24339,9 +24334,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -24350,9 +24345,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_ } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -24361,9 +24356,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSa } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -24372,9 +24367,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_I } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -24383,9 +24378,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSaf } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -24394,9 +24389,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) NeighborAddress() *Bgp_Rib_AfiSaf } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -24405,19 +24400,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) NeighborAddress() *Bgp_Rib_Afi } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -24426,9 +24421,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -24437,9 +24432,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_R } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -24448,9 +24443,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefi } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -24459,9 +24454,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Pr } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -24470,9 +24465,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathI } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -24481,9 +24476,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(Pa } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -24492,9 +24487,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -24503,109 +24498,109 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) Route(Prefix stri } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -24614,9 +24609,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *B } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -24625,9 +24620,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) BestPath() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) BestPath() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -24636,9 +24631,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) BestPath() *Bg } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -24647,9 +24642,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -24658,9 +24653,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -24669,9 +24664,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -24680,9 +24675,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -24691,9 +24686,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunit } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -24702,9 +24697,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) InvalidReason( } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -24713,9 +24708,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReas } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -24724,9 +24719,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -24735,9 +24730,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) LastModifie } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -24746,9 +24741,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) PathId() *Bgp_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -24757,9 +24752,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *B } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -24768,9 +24763,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) Prefix() *Bgp_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -24779,9 +24774,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *B } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -24790,9 +24785,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribu } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -24801,9 +24796,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -24812,9 +24807,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribu } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -24823,9 +24818,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttr } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -24834,9 +24829,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() * } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -24845,89 +24840,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute( } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -24936,9 +24931,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -24947,9 +24942,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -24958,9 +24953,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -24969,9 +24964,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -24980,9 +24975,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -24991,9 +24986,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -25002,9 +24997,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -25013,9 +25008,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -25024,9 +25019,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -25035,9 +25030,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -25046,9 +25041,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -25057,9 +25052,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -25068,9 +25063,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -25079,19 +25074,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -25100,9 +25095,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_A } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -25111,9 +25106,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Ri } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -25122,9 +25117,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -25133,9 +25128,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Pre } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -25144,9 +25139,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -25155,9 +25150,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(Pat } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -25166,9 +25161,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -25177,99 +25172,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) Route(Prefix strin } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -25278,9 +25273,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *Bg } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -25289,9 +25284,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -25300,9 +25295,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex( } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -25311,9 +25306,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityInd } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -25322,9 +25317,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityInd } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -25333,9 +25328,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunity } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -25344,9 +25339,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -25355,9 +25350,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReaso } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -25366,9 +25361,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -25377,9 +25372,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -25388,9 +25383,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) PathId() *Bgp_R } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -25399,9 +25394,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *Bg } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -25410,9 +25405,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) Prefix() *Bgp_R } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -25421,9 +25416,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *Bg } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -25432,9 +25427,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribut } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -25443,9 +25438,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttri } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -25454,9 +25449,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribut } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -25465,9 +25460,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttri } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -25476,9 +25471,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *B } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -25487,89 +25482,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -25578,9 +25573,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -25589,9 +25584,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -25600,9 +25595,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -25611,9 +25606,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -25622,9 +25617,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -25633,9 +25628,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -25644,9 +25639,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -25655,9 +25650,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -25666,9 +25661,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -25677,9 +25672,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -25688,9 +25683,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -25699,9 +25694,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -25710,9 +25705,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -25721,19 +25716,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -25742,9 +25737,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -25753,9 +25748,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_ } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -25764,9 +25759,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Pref } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -25775,9 +25770,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(P } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -25786,9 +25781,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(Path } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -25797,9 +25792,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(P } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -25808,9 +25803,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) Route(Prefix string } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -25819,99 +25814,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix str } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -25920,9 +25915,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() * } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -25931,9 +25926,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex( } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -25942,9 +25937,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) CommunityInde } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -25953,9 +25948,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityI } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -25964,9 +25959,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityI } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -25975,9 +25970,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommuni } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -25986,9 +25981,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -25997,9 +25992,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidRea } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -26008,9 +26003,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) LastModified( } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -26019,9 +26014,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModifi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -26030,9 +26025,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) PathId() *Bgp } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -26041,9 +26036,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() * } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -26052,9 +26047,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *Bgp } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -26063,9 +26058,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() * } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -26074,9 +26069,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttrib } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -26085,9 +26080,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAtt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -26096,9 +26091,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttrib } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -26107,9 +26102,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAtt } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -26118,9 +26113,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -26129,89 +26124,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -26220,9 +26215,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -26231,9 +26226,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -26242,9 +26237,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -26253,9 +26248,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -26264,9 +26259,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -26275,9 +26270,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -26286,9 +26281,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -26297,9 +26292,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -26308,9 +26303,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -26319,9 +26314,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -26330,9 +26325,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -26341,9 +26336,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -26352,9 +26347,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -26363,19 +26358,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -26384,9 +26379,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -26395,9 +26390,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_R } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -26406,9 +26401,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefi } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -26417,9 +26412,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Pr } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -26428,9 +26423,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathI } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -26439,9 +26434,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(Pa } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -26450,9 +26445,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -26461,99 +26456,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix stri } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -26562,9 +26557,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *B } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -26573,9 +26568,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -26584,9 +26579,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -26595,9 +26590,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -26606,9 +26601,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -26617,9 +26612,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunit } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -26628,9 +26623,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason( } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -26639,9 +26634,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReas } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -26650,9 +26645,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -26661,9 +26656,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModifie } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -26672,9 +26667,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -26683,9 +26678,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *B } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -26694,9 +26689,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *Bgp_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -26705,9 +26700,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *B } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -26716,9 +26711,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribu } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -26727,9 +26722,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -26738,9 +26733,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribu } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -26749,9 +26744,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttr } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -26760,9 +26755,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() * } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -26771,89 +26766,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute( } } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -26862,9 +26857,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -26873,9 +26868,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -26884,9 +26879,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -26895,9 +26890,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -26906,9 +26901,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -26917,9 +26912,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -26928,9 +26923,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -26939,9 +26934,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -26950,9 +26945,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -26961,9 +26956,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -26972,9 +26967,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -26983,9 +26978,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -26994,9 +26989,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -27005,19 +27000,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny struct { *ygot.NodePath } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -27026,9 +27021,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePolic } } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -27037,9 +27032,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6SrtePo } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -27048,9 +27043,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Srte } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -27059,9 +27054,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6S } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -27070,9 +27065,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy) Neighbor(NeighborAddress string) *Bgp_R } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -27081,19 +27076,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) Neighbor(NeighborAddress string) *Bg } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -27102,9 +27097,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv6 } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -27113,127 +27108,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_I } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -27242,9 +27237,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSa } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -27253,9 +27248,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) AttrIndex() *Bgp_Rib_Af } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -27264,9 +27259,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Color() *Bgp_Rib_AfiSafi_I } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -27275,9 +27270,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Color() *Bgp_Rib_AfiSaf } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -27286,9 +27281,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) CommunityIndex() *Bgp_Rib_ } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -27297,9 +27292,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) CommunityIndex() *Bgp_R } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -27308,9 +27303,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Endpoint() *Bgp_Rib_AfiSaf } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -27319,9 +27314,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Endpoint() *Bgp_Rib_Afi } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -27330,9 +27325,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ExtCommunityIndex() *Bgp_R } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -27341,9 +27336,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *Bg } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -27352,9 +27347,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) InvalidReason() *Bgp_Rib_A } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -27363,9 +27358,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) InvalidReason() *Bgp_Ri } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -27374,9 +27369,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) LastModified() *Bgp_Rib_Af } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -27385,9 +27380,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) LastModified() *Bgp_Rib } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -27396,9 +27391,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -27407,9 +27402,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSa } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -27418,9 +27413,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttributeAny() *Bgp } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -27429,9 +27424,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() * } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -27440,9 +27435,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttribute(AttrType } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -27451,9 +27446,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrTy } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -27462,9 +27457,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ValidRoute() *Bgp_Rib_AfiS } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -27473,89 +27468,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ValidRoute() *Bgp_Rib_A } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -27564,9 +27559,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -27575,9 +27570,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLe } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -27586,9 +27581,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrType( } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -27597,9 +27592,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrTy } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -27608,9 +27603,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -27619,9 +27614,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrVa } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -27630,9 +27625,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Extended( } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -27641,9 +27636,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Extend } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -27652,9 +27647,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Optional( } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -27663,9 +27658,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Option } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -27674,9 +27669,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Partial() } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -27685,9 +27680,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Partia } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -27696,9 +27691,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Transitiv } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -27707,29 +27702,29 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Transi } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -27738,9 +27733,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSaf } } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -27749,9 +27744,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPost() *Bgp_Rib_Afi } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -27760,9 +27755,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -27771,9 +27766,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiS } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -27782,9 +27777,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSa } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -27793,9 +27788,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPost() *Bgp_Rib_Af } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -27804,9 +27799,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSaf } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -27815,9 +27810,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPre() *Bgp_Rib_Afi } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -27826,9 +27821,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) NeighborAddress() *Bgp_Rib_Afi } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -27837,19 +27832,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) NeighborAddress() *Bgp_Rib_ } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -27858,9 +27853,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *Bgp_R } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -27869,137 +27864,137 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *Bg } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -28008,9 +28003,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -28019,9 +28014,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrInde } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) BestPath() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -28030,9 +28025,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -28041,9 +28036,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -28052,9 +28047,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *Bg } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -28063,9 +28058,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -28074,9 +28069,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIn } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -28085,9 +28080,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Communit } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -28096,9 +28091,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -28107,9 +28102,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -28118,9 +28113,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunit } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -28129,9 +28124,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommu } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -28140,9 +28135,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReas } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -28151,9 +28146,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidR } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -28162,9 +28157,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) LastModifie } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -28173,9 +28168,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -28184,9 +28179,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *B } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -28195,9 +28190,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -28206,9 +28201,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttr } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -28217,9 +28212,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownA } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -28228,9 +28223,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -28239,9 +28234,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownA } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -28250,9 +28245,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute( } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -28261,89 +28256,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRou } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -28352,9 +28347,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -28363,9 +28358,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -28374,9 +28369,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -28385,9 +28380,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -28396,9 +28391,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -28407,9 +28402,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -28418,9 +28413,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -28429,9 +28424,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -28440,9 +28435,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -28451,9 +28446,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -28462,9 +28457,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -28473,9 +28468,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -28484,9 +28479,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -28495,19 +28490,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttri } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -28516,9 +28511,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *Bgp_Ri } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -28527,127 +28522,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *Bgp } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -28656,9 +28651,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -28667,9 +28662,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -28678,9 +28673,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *Bgp } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -28689,9 +28684,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() * } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -28700,9 +28695,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityInd } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -28711,9 +28706,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Community } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -28722,9 +28717,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() * } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -28733,9 +28728,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint( } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -28744,9 +28739,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunity } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -28755,9 +28750,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommun } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -28766,9 +28761,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReaso } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -28777,9 +28772,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidRe } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -28788,9 +28783,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -28799,9 +28794,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModif } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -28810,9 +28805,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *Bg } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -28821,9 +28816,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -28832,9 +28827,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttri } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -28843,9 +28838,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -28854,9 +28849,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttri } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -28865,9 +28860,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAt } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -28876,9 +28871,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -28887,89 +28882,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRout } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -28978,9 +28973,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -28989,9 +28984,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -29000,9 +28995,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -29011,9 +29006,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -29022,9 +29017,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -29033,9 +29028,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -29044,9 +29039,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -29055,9 +29050,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -29066,9 +29061,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -29077,9 +29072,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -29088,9 +29083,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -29099,9 +29094,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -29110,9 +29105,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -29121,19 +29116,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttrib } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -29142,9 +29137,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *Bgp_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -29153,127 +29148,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *B } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -29282,9 +29277,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex( } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -29293,9 +29288,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrInd } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -29304,9 +29299,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *B } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -29315,9 +29310,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -29326,9 +29321,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityI } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -29337,9 +29332,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Communi } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -29348,9 +29343,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -29359,9 +29354,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoin } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -29370,9 +29365,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommuni } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -29381,9 +29376,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtComm } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -29392,9 +29387,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidRea } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -29403,9 +29398,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Invalid } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -29414,9 +29409,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModifi } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -29425,9 +29420,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastMod } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -29436,9 +29431,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() * } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -29447,9 +29442,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId( } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -29458,9 +29453,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAtt } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -29469,9 +29464,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Unknown } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -29480,9 +29475,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAtt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -29491,9 +29486,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Unknown } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -29502,9 +29497,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -29513,89 +29508,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRo } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -29604,9 +29599,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -29615,9 +29610,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -29626,9 +29621,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -29637,9 +29632,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -29648,9 +29643,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -29659,9 +29654,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -29670,9 +29665,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -29681,9 +29676,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -29692,9 +29687,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -29703,9 +29698,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -29714,9 +29709,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -29725,9 +29720,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -29736,9 +29731,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -29747,19 +29742,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttr } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -29768,9 +29763,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *Bgp_R } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -29779,127 +29774,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *Bg } } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "endpoint" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithEndpoint sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "endpoint" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithEndpoint(Endpoint string) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "color" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithColor sets Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "color" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithColor(Color uint32) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -29908,9 +29903,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -29919,9 +29914,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrInde } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -29930,9 +29925,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *Bg } } -// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "color". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny{ +// Color returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "color". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Color() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -29941,9 +29936,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -29952,9 +29947,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIn } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -29963,9 +29958,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Communit } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -29974,9 +29969,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() } } -// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny{ +// Endpoint returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Endpoint() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -29985,9 +29980,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -29996,9 +29991,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunit } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -30007,9 +30002,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommu } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -30018,9 +30013,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReas } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -30029,9 +30024,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidR } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -30040,9 +30035,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModifie } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -30051,9 +30046,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -30062,9 +30057,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *B } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -30073,9 +30068,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -30084,9 +30079,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttr } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -30095,9 +30090,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownA } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -30106,9 +30101,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -30117,9 +30112,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownA } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -30128,9 +30123,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute( } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -30139,89 +30134,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRou } } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -30230,9 +30225,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -30241,9 +30236,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -30252,9 +30247,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -30263,9 +30258,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -30274,9 +30269,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -30285,9 +30280,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -30296,9 +30291,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -30307,9 +30302,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -30318,9 +30313,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -30329,9 +30324,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -30340,9 +30335,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -30351,9 +30346,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -30362,9 +30357,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -30373,19 +30368,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttri } } -// Bgp_Rib_AfiSafi_Ipv6Unicast represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast struct { +// Bgp_Rib_AfiSafi_Ipv6UnicastPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6UnicastAny struct { +// Bgp_Rib_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPath) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -30394,9 +30389,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocR } } -// LocRib returns from Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "loc-rib". -func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny{ +// LocRib returns from Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "loc-rib". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -30405,9 +30400,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) LocRib() *Bgp_Rib_AfiSafi_Ipv6Unicast_L } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPath) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -30416,9 +30411,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unicast } } -// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// NeighborAny returns from Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -30427,9 +30422,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) NeighborAny() *Bgp_Rib_AfiSafi_Ipv6Unic } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPath) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -30438,9 +30433,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast) Neighbor(NeighborAddress string) *Bgp_Rib_ } } -// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "neighbor". -func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// Neighbor returns from Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "neighbor". +func (n *Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) Neighbor(NeighborAddress string) *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -30449,19 +30444,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6UnicastAny) Neighbor(NeighborAddress string) *Bgp_R } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -30470,9 +30465,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Uni } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -30481,127 +30476,127 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6 } } -// WithPrefix sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "prefix" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithPrefix(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithPrefix sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "prefix" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithPrefix(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "prefix", Prefix) return n } -// WithOrigin sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "origin" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithOrigin(Origin oc.Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin_Union) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithOrigin sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "origin" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithOrigin(Origin Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin_Union) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "origin", Origin) return n } -// WithPathId sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "path-id" to the specified value. -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithPathId sets Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithPathId(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -30610,9 +30605,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) AttrIndex() *Bgp_Rib_AfiSafi_ } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -30621,9 +30616,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) AttrIndex() *Bgp_Rib_AfiSa } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -30632,9 +30627,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) CommunityIndex() *Bgp_Rib_Afi } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -30643,9 +30638,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) CommunityIndex() *Bgp_Rib_ } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -30654,9 +30649,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ExtCommunityIndex() *Bgp_Rib_ } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -30665,9 +30660,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ExtCommunityIndex() *Bgp_R } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -30676,9 +30671,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) InvalidReason() *Bgp_Rib_AfiS } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -30687,9 +30682,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) InvalidReason() *Bgp_Rib_A } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -30698,9 +30693,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) LastModified() *Bgp_Rib_AfiSa } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -30709,9 +30704,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) LastModified() *Bgp_Rib_Af } } -// Origin returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "origin". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Origin() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin{ +// Origin returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "origin". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) Origin() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -30720,9 +30715,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Origin() *Bgp_Rib_AfiSafi_Ipv } } -// Origin returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "origin". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Origin() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny{ +// Origin returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "origin". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) Origin() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -30731,9 +30726,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Origin() *Bgp_Rib_AfiSafi_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -30742,9 +30737,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) PathId() *Bgp_Rib_AfiSafi_Ipv } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -30753,9 +30748,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) PathId() *Bgp_Rib_AfiSafi_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -30764,9 +30759,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -30775,9 +30770,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Prefix() *Bgp_Rib_AfiSafi_ } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -30786,9 +30781,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttributeAny() *Bgp_Ri } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -30797,9 +30792,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttributeAny() *Bgp } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -30808,9 +30803,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttribute(AttrType uin } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -30819,9 +30814,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttribute(AttrType } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -30830,9 +30825,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ValidRoute() *Bgp_Rib_AfiSafi } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -30841,89 +30836,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ValidRoute() *Bgp_Rib_AfiS } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -30932,9 +30927,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrLen() *B } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -30943,9 +30938,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -30954,9 +30949,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrType() * } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -30965,9 +30960,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrType( } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -30976,9 +30971,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrValue() } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -30987,9 +30982,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrValue } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -30998,9 +30993,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Extended() * } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -31009,9 +31004,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Extended( } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -31020,9 +31015,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Optional() * } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -31031,9 +31026,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Optional( } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -31042,9 +31037,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Partial() *B } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -31053,9 +31048,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Partial() } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -31064,9 +31059,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Transitive() } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -31075,29 +31070,29 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Transitiv } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -31106,9 +31101,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPost() *Bgp_Rib_AfiSafi_I } } -// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibInPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -31117,9 +31112,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPost() *Bgp_Rib_AfiSaf } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -31128,9 +31123,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPre() *Bgp_Rib_AfiSafi_Ip } } -// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibInPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -31139,9 +31134,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPre() *Bgp_Rib_AfiSafi } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -31150,9 +31145,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPost() *Bgp_Rib_AfiSafi_ } } -// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibOutPost() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -31161,9 +31156,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPost() *Bgp_Rib_AfiSa } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -31172,9 +31167,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPre() *Bgp_Rib_AfiSafi_I } } -// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibOutPre() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -31183,9 +31178,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPre() *Bgp_Rib_AfiSaf } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -31194,9 +31189,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) NeighborAddress() *Bgp_Rib_AfiSaf } } -// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "neighbor-address". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "neighbor-address". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) NeighborAddress() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -31205,19 +31200,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) NeighborAddress() *Bgp_Rib_Afi } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -31226,9 +31221,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAny() *Bgp_Rib_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -31237,9 +31232,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAny() *Bgp_R } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -31248,9 +31243,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefi } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -31259,9 +31254,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Pr } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -31270,9 +31265,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathI } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -31281,9 +31276,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(Pa } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -31292,9 +31287,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -31303,109 +31298,109 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) Route(Prefix stri } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -31414,9 +31409,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *B } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -31425,9 +31420,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) BestPath() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) BestPath() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -31436,9 +31431,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) BestPath() *Bg } } -// BestPath returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -31447,9 +31442,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -31458,9 +31453,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -31469,9 +31464,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -31480,9 +31475,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -31491,9 +31486,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunit } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -31502,9 +31497,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) InvalidReason( } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -31513,9 +31508,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReas } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -31524,9 +31519,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -31535,9 +31530,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) LastModifie } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -31546,9 +31541,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) PathId() *Bgp_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -31557,9 +31552,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *B } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -31568,9 +31563,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) Prefix() *Bgp_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -31579,9 +31574,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *B } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -31590,9 +31585,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribu } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -31601,9 +31596,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -31612,9 +31607,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribu } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -31623,9 +31618,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttr } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -31634,9 +31629,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() * } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -31645,89 +31640,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute( } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -31736,9 +31731,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -31747,9 +31742,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -31758,9 +31753,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -31769,9 +31764,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -31780,9 +31775,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -31791,9 +31786,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -31802,9 +31797,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -31813,9 +31808,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -31824,9 +31819,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -31835,9 +31830,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -31846,9 +31841,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -31857,9 +31852,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -31868,9 +31863,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -31879,19 +31874,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribut } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -31900,9 +31895,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAny() *Bgp_Rib_A } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -31911,9 +31906,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAny() *Bgp_Ri } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -31922,9 +31917,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -31933,9 +31928,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Pre } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -31944,9 +31939,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -31955,9 +31950,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(Pat } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -31966,9 +31961,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -31977,99 +31972,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) Route(Prefix strin } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -32078,9 +32073,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *Bg } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -32089,9 +32084,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -32100,9 +32095,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex( } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -32111,9 +32106,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityInd } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -32122,9 +32117,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityInd } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -32133,9 +32128,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunity } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -32144,9 +32139,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -32155,9 +32150,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReaso } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -32166,9 +32161,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -32177,9 +32172,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -32188,9 +32183,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) PathId() *Bgp_R } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -32199,9 +32194,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *Bg } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -32210,9 +32205,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) Prefix() *Bgp_R } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -32221,9 +32216,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *Bg } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -32232,9 +32227,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribut } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -32243,9 +32238,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttri } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -32254,9 +32249,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribut } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -32265,9 +32260,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttri } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -32276,9 +32271,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *B } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -32287,89 +32282,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -32378,9 +32373,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -32389,9 +32384,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -32400,9 +32395,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -32411,9 +32406,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -32422,9 +32417,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -32433,9 +32428,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -32444,9 +32439,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -32455,9 +32450,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -32466,9 +32461,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -32477,9 +32472,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -32488,9 +32483,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -32499,9 +32494,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -32510,9 +32505,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -32521,19 +32516,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -32542,9 +32537,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAny() *Bgp_Rib } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -32553,9 +32548,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *Bgp_ } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -32564,9 +32559,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Pref } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -32575,9 +32570,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(P } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -32586,9 +32581,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(Path } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -32597,9 +32592,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(P } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -32608,9 +32603,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) Route(Prefix string } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -32619,99 +32614,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix str } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -32720,9 +32715,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() * } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -32731,9 +32726,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex( } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -32742,9 +32737,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) CommunityInde } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -32753,9 +32748,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityI } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -32764,9 +32759,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityI } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -32775,9 +32770,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommuni } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -32786,9 +32781,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -32797,9 +32792,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidRea } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -32808,9 +32803,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) LastModified( } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -32819,9 +32814,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModifi } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -32830,9 +32825,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) PathId() *Bgp } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -32841,9 +32836,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() * } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -32852,9 +32847,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *Bgp } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -32863,9 +32858,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() * } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -32874,9 +32869,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttrib } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -32885,9 +32880,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAtt } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -32896,9 +32891,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttrib } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -32907,9 +32902,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAtt } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -32918,9 +32913,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -32929,89 +32924,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -33020,9 +33015,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -33031,9 +33026,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -33042,9 +33037,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -33053,9 +33048,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -33064,9 +33059,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -33075,9 +33070,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -33086,9 +33081,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -33097,9 +33092,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -33108,9 +33103,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -33119,9 +33114,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -33130,9 +33125,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -33141,9 +33136,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -33152,9 +33147,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -33163,19 +33158,19 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribu } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -33184,9 +33179,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAny() *Bgp_Rib_ } } -// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -33195,9 +33190,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *Bgp_R } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -33206,9 +33201,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefi } } -// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPathId(Prefix string) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -33217,9 +33212,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Pr } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -33228,9 +33223,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathI } } -// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPrefix(PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -33239,9 +33234,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(Pa } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -33250,9 +33245,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, } } -// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// Route returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) Route(Prefix string, PathId uint32) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -33261,99 +33256,99 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix stri } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -33362,9 +33357,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *B } } -// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -33373,9 +33368,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -33384,9 +33379,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex } } -// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -33395,9 +33390,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -33406,9 +33401,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIn } } -// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -33417,9 +33412,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunit } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -33428,9 +33423,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason( } } -// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -33439,9 +33434,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReas } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -33450,9 +33445,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) LastModified() } } -// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -33461,9 +33456,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModifie } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -33472,9 +33467,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) PathId() *Bgp_ } } -// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -33483,9 +33478,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *B } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -33494,9 +33489,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *Bgp_ } } -// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "prefix". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny{ +// Prefix returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "prefix". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) Prefix() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -33505,9 +33500,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *B } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -33516,9 +33511,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribu } } -// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -33527,9 +33522,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttr } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -33538,9 +33533,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribu } } -// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -33549,9 +33544,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttr } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -33560,9 +33555,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() * } } -// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -33571,89 +33566,89 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute( } } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -33662,9 +33657,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -33673,9 +33668,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -33684,9 +33679,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -33695,9 +33690,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -33706,9 +33701,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -33717,9 +33712,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -33728,9 +33723,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -33739,9 +33734,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -33750,9 +33745,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -33761,9 +33756,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -33772,9 +33767,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -33783,9 +33778,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -33794,9 +33789,9 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -33805,109 +33800,109 @@ func (n *Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribut } } -// Bgp_Rib_AttrSet represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set YANG schema element. -type Bgp_Rib_AttrSet struct { +// Bgp_Rib_AttrSetPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set YANG schema element. +type Bgp_Rib_AttrSetPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSetAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set YANG schema element. -type Bgp_Rib_AttrSetAny struct { +// Bgp_Rib_AttrSetPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set YANG schema element. +type Bgp_Rib_AttrSetPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aigp represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. -type Bgp_Rib_AttrSet_Aigp struct { +// Bgp_Rib_AttrSet_AigpPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. +type Bgp_Rib_AttrSet_AigpPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AigpAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. -type Bgp_Rib_AttrSet_AigpAny struct { +// Bgp_Rib_AttrSet_AigpPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. +type Bgp_Rib_AttrSet_AigpPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AtomicAggregate represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. -type Bgp_Rib_AttrSet_AtomicAggregate struct { +// Bgp_Rib_AttrSet_AtomicAggregatePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. +type Bgp_Rib_AttrSet_AtomicAggregatePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AtomicAggregateAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. -type Bgp_Rib_AttrSet_AtomicAggregateAny struct { +// Bgp_Rib_AttrSet_AtomicAggregatePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. +type Bgp_Rib_AttrSet_AtomicAggregatePathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_ClusterList represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. -type Bgp_Rib_AttrSet_ClusterList struct { +// Bgp_Rib_AttrSet_ClusterListPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. +type Bgp_Rib_AttrSet_ClusterListPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_ClusterListAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. -type Bgp_Rib_AttrSet_ClusterListAny struct { +// Bgp_Rib_AttrSet_ClusterListPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. +type Bgp_Rib_AttrSet_ClusterListPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Index represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/index YANG schema element. -type Bgp_Rib_AttrSet_Index struct { +// Bgp_Rib_AttrSet_IndexPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/index YANG schema element. +type Bgp_Rib_AttrSet_IndexPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_IndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/index YANG schema element. -type Bgp_Rib_AttrSet_IndexAny struct { +// Bgp_Rib_AttrSet_IndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/index YANG schema element. +type Bgp_Rib_AttrSet_IndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_LocalPref represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. -type Bgp_Rib_AttrSet_LocalPref struct { +// Bgp_Rib_AttrSet_LocalPrefPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. +type Bgp_Rib_AttrSet_LocalPrefPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_LocalPrefAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. -type Bgp_Rib_AttrSet_LocalPrefAny struct { +// Bgp_Rib_AttrSet_LocalPrefPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. +type Bgp_Rib_AttrSet_LocalPrefPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Med represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/med YANG schema element. -type Bgp_Rib_AttrSet_Med struct { +// Bgp_Rib_AttrSet_MedPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/med YANG schema element. +type Bgp_Rib_AttrSet_MedPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_MedAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/med YANG schema element. -type Bgp_Rib_AttrSet_MedAny struct { +// Bgp_Rib_AttrSet_MedPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/med YANG schema element. +type Bgp_Rib_AttrSet_MedPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_NextHop represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. -type Bgp_Rib_AttrSet_NextHop struct { +// Bgp_Rib_AttrSet_NextHopPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. +type Bgp_Rib_AttrSet_NextHopPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_NextHopAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. -type Bgp_Rib_AttrSet_NextHopAny struct { +// Bgp_Rib_AttrSet_NextHopPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. +type Bgp_Rib_AttrSet_NextHopPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Origin represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. -type Bgp_Rib_AttrSet_Origin struct { +// Bgp_Rib_AttrSet_OriginPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. +type Bgp_Rib_AttrSet_OriginPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_OriginAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. -type Bgp_Rib_AttrSet_OriginAny struct { +// Bgp_Rib_AttrSet_OriginPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. +type Bgp_Rib_AttrSet_OriginPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_OriginatorId represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. -type Bgp_Rib_AttrSet_OriginatorId struct { +// Bgp_Rib_AttrSet_OriginatorIdPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. +type Bgp_Rib_AttrSet_OriginatorIdPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_OriginatorIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. -type Bgp_Rib_AttrSet_OriginatorIdAny struct { +// Bgp_Rib_AttrSet_OriginatorIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. +type Bgp_Rib_AttrSet_OriginatorIdPathAny struct { *ygot.NodePath } -// Aggregator returns from Bgp_Rib_AttrSet the path struct for its child "aggregator". -func (n *Bgp_Rib_AttrSet) Aggregator() *Bgp_Rib_AttrSet_Aggregator { - return &Bgp_Rib_AttrSet_Aggregator{ +// Aggregator returns from Bgp_Rib_AttrSetPath the path struct for its child "aggregator". +func (n *Bgp_Rib_AttrSetPath) Aggregator() *Bgp_Rib_AttrSet_AggregatorPath { + return &Bgp_Rib_AttrSet_AggregatorPath{ NodePath: ygot.NewNodePath( []string{"aggregator"}, map[string]interface{}{}, @@ -33916,9 +33911,9 @@ func (n *Bgp_Rib_AttrSet) Aggregator() *Bgp_Rib_AttrSet_Aggregator { } } -// Aggregator returns from Bgp_Rib_AttrSetAny the path struct for its child "aggregator". -func (n *Bgp_Rib_AttrSetAny) Aggregator() *Bgp_Rib_AttrSet_AggregatorAny { - return &Bgp_Rib_AttrSet_AggregatorAny{ +// Aggregator returns from Bgp_Rib_AttrSetPathAny the path struct for its child "aggregator". +func (n *Bgp_Rib_AttrSetPathAny) Aggregator() *Bgp_Rib_AttrSet_AggregatorPathAny { + return &Bgp_Rib_AttrSet_AggregatorPathAny{ NodePath: ygot.NewNodePath( []string{"aggregator"}, map[string]interface{}{}, @@ -33927,9 +33922,9 @@ func (n *Bgp_Rib_AttrSetAny) Aggregator() *Bgp_Rib_AttrSet_AggregatorAny { } } -// Aigp returns from Bgp_Rib_AttrSet the path struct for its child "aigp". -func (n *Bgp_Rib_AttrSet) Aigp() *Bgp_Rib_AttrSet_Aigp { - return &Bgp_Rib_AttrSet_Aigp{ +// Aigp returns from Bgp_Rib_AttrSetPath the path struct for its child "aigp". +func (n *Bgp_Rib_AttrSetPath) Aigp() *Bgp_Rib_AttrSet_AigpPath { + return &Bgp_Rib_AttrSet_AigpPath{ NodePath: ygot.NewNodePath( []string{"state", "aigp"}, map[string]interface{}{}, @@ -33938,9 +33933,9 @@ func (n *Bgp_Rib_AttrSet) Aigp() *Bgp_Rib_AttrSet_Aigp { } } -// Aigp returns from Bgp_Rib_AttrSetAny the path struct for its child "aigp". -func (n *Bgp_Rib_AttrSetAny) Aigp() *Bgp_Rib_AttrSet_AigpAny { - return &Bgp_Rib_AttrSet_AigpAny{ +// Aigp returns from Bgp_Rib_AttrSetPathAny the path struct for its child "aigp". +func (n *Bgp_Rib_AttrSetPathAny) Aigp() *Bgp_Rib_AttrSet_AigpPathAny { + return &Bgp_Rib_AttrSet_AigpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "aigp"}, map[string]interface{}{}, @@ -33949,9 +33944,9 @@ func (n *Bgp_Rib_AttrSetAny) Aigp() *Bgp_Rib_AttrSet_AigpAny { } } -// AtomicAggregate returns from Bgp_Rib_AttrSet the path struct for its child "atomic-aggregate". -func (n *Bgp_Rib_AttrSet) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregate { - return &Bgp_Rib_AttrSet_AtomicAggregate{ +// AtomicAggregate returns from Bgp_Rib_AttrSetPath the path struct for its child "atomic-aggregate". +func (n *Bgp_Rib_AttrSetPath) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregatePath { + return &Bgp_Rib_AttrSet_AtomicAggregatePath{ NodePath: ygot.NewNodePath( []string{"state", "atomic-aggregate"}, map[string]interface{}{}, @@ -33960,9 +33955,9 @@ func (n *Bgp_Rib_AttrSet) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregate { } } -// AtomicAggregate returns from Bgp_Rib_AttrSetAny the path struct for its child "atomic-aggregate". -func (n *Bgp_Rib_AttrSetAny) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregateAny { - return &Bgp_Rib_AttrSet_AtomicAggregateAny{ +// AtomicAggregate returns from Bgp_Rib_AttrSetPathAny the path struct for its child "atomic-aggregate". +func (n *Bgp_Rib_AttrSetPathAny) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregatePathAny { + return &Bgp_Rib_AttrSet_AtomicAggregatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "atomic-aggregate"}, map[string]interface{}{}, @@ -33971,9 +33966,9 @@ func (n *Bgp_Rib_AttrSetAny) AtomicAggregate() *Bgp_Rib_AttrSet_AtomicAggregateA } } -// ClusterList returns from Bgp_Rib_AttrSet the path struct for its child "cluster-list". -func (n *Bgp_Rib_AttrSet) ClusterList() *Bgp_Rib_AttrSet_ClusterList { - return &Bgp_Rib_AttrSet_ClusterList{ +// ClusterList returns from Bgp_Rib_AttrSetPath the path struct for its child "cluster-list". +func (n *Bgp_Rib_AttrSetPath) ClusterList() *Bgp_Rib_AttrSet_ClusterListPath { + return &Bgp_Rib_AttrSet_ClusterListPath{ NodePath: ygot.NewNodePath( []string{"state", "cluster-list"}, map[string]interface{}{}, @@ -33982,9 +33977,9 @@ func (n *Bgp_Rib_AttrSet) ClusterList() *Bgp_Rib_AttrSet_ClusterList { } } -// ClusterList returns from Bgp_Rib_AttrSetAny the path struct for its child "cluster-list". -func (n *Bgp_Rib_AttrSetAny) ClusterList() *Bgp_Rib_AttrSet_ClusterListAny { - return &Bgp_Rib_AttrSet_ClusterListAny{ +// ClusterList returns from Bgp_Rib_AttrSetPathAny the path struct for its child "cluster-list". +func (n *Bgp_Rib_AttrSetPathAny) ClusterList() *Bgp_Rib_AttrSet_ClusterListPathAny { + return &Bgp_Rib_AttrSet_ClusterListPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cluster-list"}, map[string]interface{}{}, @@ -33993,9 +33988,9 @@ func (n *Bgp_Rib_AttrSetAny) ClusterList() *Bgp_Rib_AttrSet_ClusterListAny { } } -// Index returns from Bgp_Rib_AttrSet the path struct for its child "index". -func (n *Bgp_Rib_AttrSet) Index() *Bgp_Rib_AttrSet_Index { - return &Bgp_Rib_AttrSet_Index{ +// Index returns from Bgp_Rib_AttrSetPath the path struct for its child "index". +func (n *Bgp_Rib_AttrSetPath) Index() *Bgp_Rib_AttrSet_IndexPath { + return &Bgp_Rib_AttrSet_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -34004,9 +33999,9 @@ func (n *Bgp_Rib_AttrSet) Index() *Bgp_Rib_AttrSet_Index { } } -// Index returns from Bgp_Rib_AttrSetAny the path struct for its child "index". -func (n *Bgp_Rib_AttrSetAny) Index() *Bgp_Rib_AttrSet_IndexAny { - return &Bgp_Rib_AttrSet_IndexAny{ +// Index returns from Bgp_Rib_AttrSetPathAny the path struct for its child "index". +func (n *Bgp_Rib_AttrSetPathAny) Index() *Bgp_Rib_AttrSet_IndexPathAny { + return &Bgp_Rib_AttrSet_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -34015,9 +34010,9 @@ func (n *Bgp_Rib_AttrSetAny) Index() *Bgp_Rib_AttrSet_IndexAny { } } -// LocalPref returns from Bgp_Rib_AttrSet the path struct for its child "local-pref". -func (n *Bgp_Rib_AttrSet) LocalPref() *Bgp_Rib_AttrSet_LocalPref { - return &Bgp_Rib_AttrSet_LocalPref{ +// LocalPref returns from Bgp_Rib_AttrSetPath the path struct for its child "local-pref". +func (n *Bgp_Rib_AttrSetPath) LocalPref() *Bgp_Rib_AttrSet_LocalPrefPath { + return &Bgp_Rib_AttrSet_LocalPrefPath{ NodePath: ygot.NewNodePath( []string{"state", "local-pref"}, map[string]interface{}{}, @@ -34026,9 +34021,9 @@ func (n *Bgp_Rib_AttrSet) LocalPref() *Bgp_Rib_AttrSet_LocalPref { } } -// LocalPref returns from Bgp_Rib_AttrSetAny the path struct for its child "local-pref". -func (n *Bgp_Rib_AttrSetAny) LocalPref() *Bgp_Rib_AttrSet_LocalPrefAny { - return &Bgp_Rib_AttrSet_LocalPrefAny{ +// LocalPref returns from Bgp_Rib_AttrSetPathAny the path struct for its child "local-pref". +func (n *Bgp_Rib_AttrSetPathAny) LocalPref() *Bgp_Rib_AttrSet_LocalPrefPathAny { + return &Bgp_Rib_AttrSet_LocalPrefPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-pref"}, map[string]interface{}{}, @@ -34037,9 +34032,9 @@ func (n *Bgp_Rib_AttrSetAny) LocalPref() *Bgp_Rib_AttrSet_LocalPrefAny { } } -// Med returns from Bgp_Rib_AttrSet the path struct for its child "med". -func (n *Bgp_Rib_AttrSet) Med() *Bgp_Rib_AttrSet_Med { - return &Bgp_Rib_AttrSet_Med{ +// Med returns from Bgp_Rib_AttrSetPath the path struct for its child "med". +func (n *Bgp_Rib_AttrSetPath) Med() *Bgp_Rib_AttrSet_MedPath { + return &Bgp_Rib_AttrSet_MedPath{ NodePath: ygot.NewNodePath( []string{"state", "med"}, map[string]interface{}{}, @@ -34048,9 +34043,9 @@ func (n *Bgp_Rib_AttrSet) Med() *Bgp_Rib_AttrSet_Med { } } -// Med returns from Bgp_Rib_AttrSetAny the path struct for its child "med". -func (n *Bgp_Rib_AttrSetAny) Med() *Bgp_Rib_AttrSet_MedAny { - return &Bgp_Rib_AttrSet_MedAny{ +// Med returns from Bgp_Rib_AttrSetPathAny the path struct for its child "med". +func (n *Bgp_Rib_AttrSetPathAny) Med() *Bgp_Rib_AttrSet_MedPathAny { + return &Bgp_Rib_AttrSet_MedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "med"}, map[string]interface{}{}, @@ -34059,9 +34054,9 @@ func (n *Bgp_Rib_AttrSetAny) Med() *Bgp_Rib_AttrSet_MedAny { } } -// NextHop returns from Bgp_Rib_AttrSet the path struct for its child "next-hop". -func (n *Bgp_Rib_AttrSet) NextHop() *Bgp_Rib_AttrSet_NextHop { - return &Bgp_Rib_AttrSet_NextHop{ +// NextHop returns from Bgp_Rib_AttrSetPath the path struct for its child "next-hop". +func (n *Bgp_Rib_AttrSetPath) NextHop() *Bgp_Rib_AttrSet_NextHopPath { + return &Bgp_Rib_AttrSet_NextHopPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop"}, map[string]interface{}{}, @@ -34070,9 +34065,9 @@ func (n *Bgp_Rib_AttrSet) NextHop() *Bgp_Rib_AttrSet_NextHop { } } -// NextHop returns from Bgp_Rib_AttrSetAny the path struct for its child "next-hop". -func (n *Bgp_Rib_AttrSetAny) NextHop() *Bgp_Rib_AttrSet_NextHopAny { - return &Bgp_Rib_AttrSet_NextHopAny{ +// NextHop returns from Bgp_Rib_AttrSetPathAny the path struct for its child "next-hop". +func (n *Bgp_Rib_AttrSetPathAny) NextHop() *Bgp_Rib_AttrSet_NextHopPathAny { + return &Bgp_Rib_AttrSet_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop"}, map[string]interface{}{}, @@ -34081,9 +34076,9 @@ func (n *Bgp_Rib_AttrSetAny) NextHop() *Bgp_Rib_AttrSet_NextHopAny { } } -// Origin returns from Bgp_Rib_AttrSet the path struct for its child "origin". -func (n *Bgp_Rib_AttrSet) Origin() *Bgp_Rib_AttrSet_Origin { - return &Bgp_Rib_AttrSet_Origin{ +// Origin returns from Bgp_Rib_AttrSetPath the path struct for its child "origin". +func (n *Bgp_Rib_AttrSetPath) Origin() *Bgp_Rib_AttrSet_OriginPath { + return &Bgp_Rib_AttrSet_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -34092,9 +34087,9 @@ func (n *Bgp_Rib_AttrSet) Origin() *Bgp_Rib_AttrSet_Origin { } } -// Origin returns from Bgp_Rib_AttrSetAny the path struct for its child "origin". -func (n *Bgp_Rib_AttrSetAny) Origin() *Bgp_Rib_AttrSet_OriginAny { - return &Bgp_Rib_AttrSet_OriginAny{ +// Origin returns from Bgp_Rib_AttrSetPathAny the path struct for its child "origin". +func (n *Bgp_Rib_AttrSetPathAny) Origin() *Bgp_Rib_AttrSet_OriginPathAny { + return &Bgp_Rib_AttrSet_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -34103,9 +34098,9 @@ func (n *Bgp_Rib_AttrSetAny) Origin() *Bgp_Rib_AttrSet_OriginAny { } } -// OriginatorId returns from Bgp_Rib_AttrSet the path struct for its child "originator-id". -func (n *Bgp_Rib_AttrSet) OriginatorId() *Bgp_Rib_AttrSet_OriginatorId { - return &Bgp_Rib_AttrSet_OriginatorId{ +// OriginatorId returns from Bgp_Rib_AttrSetPath the path struct for its child "originator-id". +func (n *Bgp_Rib_AttrSetPath) OriginatorId() *Bgp_Rib_AttrSet_OriginatorIdPath { + return &Bgp_Rib_AttrSet_OriginatorIdPath{ NodePath: ygot.NewNodePath( []string{"state", "originator-id"}, map[string]interface{}{}, @@ -34114,9 +34109,9 @@ func (n *Bgp_Rib_AttrSet) OriginatorId() *Bgp_Rib_AttrSet_OriginatorId { } } -// OriginatorId returns from Bgp_Rib_AttrSetAny the path struct for its child "originator-id". -func (n *Bgp_Rib_AttrSetAny) OriginatorId() *Bgp_Rib_AttrSet_OriginatorIdAny { - return &Bgp_Rib_AttrSet_OriginatorIdAny{ +// OriginatorId returns from Bgp_Rib_AttrSetPathAny the path struct for its child "originator-id". +func (n *Bgp_Rib_AttrSetPathAny) OriginatorId() *Bgp_Rib_AttrSet_OriginatorIdPathAny { + return &Bgp_Rib_AttrSet_OriginatorIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "originator-id"}, map[string]interface{}{}, @@ -34125,9 +34120,9 @@ func (n *Bgp_Rib_AttrSetAny) OriginatorId() *Bgp_Rib_AttrSet_OriginatorIdAny { } } -// TunnelEncapsulation returns from Bgp_Rib_AttrSet the path struct for its child "tunnel-encapsulation". -func (n *Bgp_Rib_AttrSet) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncapsulation { - return &Bgp_Rib_AttrSet_TunnelEncapsulation{ +// TunnelEncapsulation returns from Bgp_Rib_AttrSetPath the path struct for its child "tunnel-encapsulation". +func (n *Bgp_Rib_AttrSetPath) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncapsulationPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulationPath{ NodePath: ygot.NewNodePath( []string{"tunnel-encapsulation"}, map[string]interface{}{}, @@ -34136,9 +34131,9 @@ func (n *Bgp_Rib_AttrSet) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncapsula } } -// TunnelEncapsulation returns from Bgp_Rib_AttrSetAny the path struct for its child "tunnel-encapsulation". -func (n *Bgp_Rib_AttrSetAny) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncapsulationAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulationAny{ +// TunnelEncapsulation returns from Bgp_Rib_AttrSetPathAny the path struct for its child "tunnel-encapsulation". +func (n *Bgp_Rib_AttrSetPathAny) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncapsulationPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulationPathAny{ NodePath: ygot.NewNodePath( []string{"tunnel-encapsulation"}, map[string]interface{}{}, @@ -34147,49 +34142,49 @@ func (n *Bgp_Rib_AttrSetAny) TunnelEncapsulation() *Bgp_Rib_AttrSet_TunnelEncaps } } -// Bgp_Rib_AttrSet_Aggregator represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. -type Bgp_Rib_AttrSet_Aggregator struct { +// Bgp_Rib_AttrSet_AggregatorPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. +type Bgp_Rib_AttrSet_AggregatorPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AggregatorAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. -type Bgp_Rib_AttrSet_AggregatorAny struct { +// Bgp_Rib_AttrSet_AggregatorPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. +type Bgp_Rib_AttrSet_AggregatorPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_Address represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_Address struct { +// Bgp_Rib_AttrSet_Aggregator_AddressPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_AddressPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_AddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_AddressAny struct { +// Bgp_Rib_AttrSet_Aggregator_AddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_AddressPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_As represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_As struct { +// Bgp_Rib_AttrSet_Aggregator_AsPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_AsPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_AsAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_AsAny struct { +// Bgp_Rib_AttrSet_Aggregator_AsPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_AsPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_As4 represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_As4 struct { +// Bgp_Rib_AttrSet_Aggregator_As4Path represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_As4Path struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_Aggregator_As4Any represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. -type Bgp_Rib_AttrSet_Aggregator_As4Any struct { +// Bgp_Rib_AttrSet_Aggregator_As4PathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. +type Bgp_Rib_AttrSet_Aggregator_As4PathAny struct { *ygot.NodePath } -// Address returns from Bgp_Rib_AttrSet_Aggregator the path struct for its child "address". -func (n *Bgp_Rib_AttrSet_Aggregator) Address() *Bgp_Rib_AttrSet_Aggregator_Address { - return &Bgp_Rib_AttrSet_Aggregator_Address{ +// Address returns from Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "address". +func (n *Bgp_Rib_AttrSet_AggregatorPath) Address() *Bgp_Rib_AttrSet_Aggregator_AddressPath { + return &Bgp_Rib_AttrSet_Aggregator_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -34198,9 +34193,9 @@ func (n *Bgp_Rib_AttrSet_Aggregator) Address() *Bgp_Rib_AttrSet_Aggregator_Addre } } -// Address returns from Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "address". -func (n *Bgp_Rib_AttrSet_AggregatorAny) Address() *Bgp_Rib_AttrSet_Aggregator_AddressAny { - return &Bgp_Rib_AttrSet_Aggregator_AddressAny{ +// Address returns from Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "address". +func (n *Bgp_Rib_AttrSet_AggregatorPathAny) Address() *Bgp_Rib_AttrSet_Aggregator_AddressPathAny { + return &Bgp_Rib_AttrSet_Aggregator_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -34209,9 +34204,9 @@ func (n *Bgp_Rib_AttrSet_AggregatorAny) Address() *Bgp_Rib_AttrSet_Aggregator_Ad } } -// As returns from Bgp_Rib_AttrSet_Aggregator the path struct for its child "as". -func (n *Bgp_Rib_AttrSet_Aggregator) As() *Bgp_Rib_AttrSet_Aggregator_As { - return &Bgp_Rib_AttrSet_Aggregator_As{ +// As returns from Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "as". +func (n *Bgp_Rib_AttrSet_AggregatorPath) As() *Bgp_Rib_AttrSet_Aggregator_AsPath { + return &Bgp_Rib_AttrSet_Aggregator_AsPath{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -34220,9 +34215,9 @@ func (n *Bgp_Rib_AttrSet_Aggregator) As() *Bgp_Rib_AttrSet_Aggregator_As { } } -// As returns from Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "as". -func (n *Bgp_Rib_AttrSet_AggregatorAny) As() *Bgp_Rib_AttrSet_Aggregator_AsAny { - return &Bgp_Rib_AttrSet_Aggregator_AsAny{ +// As returns from Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "as". +func (n *Bgp_Rib_AttrSet_AggregatorPathAny) As() *Bgp_Rib_AttrSet_Aggregator_AsPathAny { + return &Bgp_Rib_AttrSet_Aggregator_AsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -34231,9 +34226,9 @@ func (n *Bgp_Rib_AttrSet_AggregatorAny) As() *Bgp_Rib_AttrSet_Aggregator_AsAny { } } -// As4 returns from Bgp_Rib_AttrSet_Aggregator the path struct for its child "as4". -func (n *Bgp_Rib_AttrSet_Aggregator) As4() *Bgp_Rib_AttrSet_Aggregator_As4 { - return &Bgp_Rib_AttrSet_Aggregator_As4{ +// As4 returns from Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "as4". +func (n *Bgp_Rib_AttrSet_AggregatorPath) As4() *Bgp_Rib_AttrSet_Aggregator_As4Path { + return &Bgp_Rib_AttrSet_Aggregator_As4Path{ NodePath: ygot.NewNodePath( []string{"state", "as4"}, map[string]interface{}{}, @@ -34242,9 +34237,9 @@ func (n *Bgp_Rib_AttrSet_Aggregator) As4() *Bgp_Rib_AttrSet_Aggregator_As4 { } } -// As4 returns from Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "as4". -func (n *Bgp_Rib_AttrSet_AggregatorAny) As4() *Bgp_Rib_AttrSet_Aggregator_As4Any { - return &Bgp_Rib_AttrSet_Aggregator_As4Any{ +// As4 returns from Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "as4". +func (n *Bgp_Rib_AttrSet_AggregatorPathAny) As4() *Bgp_Rib_AttrSet_Aggregator_As4PathAny { + return &Bgp_Rib_AttrSet_Aggregator_As4PathAny{ NodePath: ygot.NewNodePath( []string{"state", "as4"}, map[string]interface{}{}, @@ -34253,39 +34248,39 @@ func (n *Bgp_Rib_AttrSet_AggregatorAny) As4() *Bgp_Rib_AttrSet_Aggregator_As4Any } } -// Bgp_Rib_AttrSet_As4Segment represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. -type Bgp_Rib_AttrSet_As4Segment struct { +// Bgp_Rib_AttrSet_As4SegmentPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. +type Bgp_Rib_AttrSet_As4SegmentPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_As4SegmentAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. -type Bgp_Rib_AttrSet_As4SegmentAny struct { +// Bgp_Rib_AttrSet_As4SegmentPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. +type Bgp_Rib_AttrSet_As4SegmentPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_As4Segment_Member represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. -type Bgp_Rib_AttrSet_As4Segment_Member struct { +// Bgp_Rib_AttrSet_As4Segment_MemberPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. +type Bgp_Rib_AttrSet_As4Segment_MemberPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_As4Segment_MemberAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. -type Bgp_Rib_AttrSet_As4Segment_MemberAny struct { +// Bgp_Rib_AttrSet_As4Segment_MemberPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. +type Bgp_Rib_AttrSet_As4Segment_MemberPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_As4Segment_Type represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_As4Segment_Type struct { +// Bgp_Rib_AttrSet_As4Segment_TypePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_As4Segment_TypePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_As4Segment_TypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_As4Segment_TypeAny struct { +// Bgp_Rib_AttrSet_As4Segment_TypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_As4Segment_TypePathAny struct { *ygot.NodePath } -// Member returns from Bgp_Rib_AttrSet_As4Segment the path struct for its child "member". -func (n *Bgp_Rib_AttrSet_As4Segment) Member() *Bgp_Rib_AttrSet_As4Segment_Member { - return &Bgp_Rib_AttrSet_As4Segment_Member{ +// Member returns from Bgp_Rib_AttrSet_As4SegmentPath the path struct for its child "member". +func (n *Bgp_Rib_AttrSet_As4SegmentPath) Member() *Bgp_Rib_AttrSet_As4Segment_MemberPath { + return &Bgp_Rib_AttrSet_As4Segment_MemberPath{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -34294,9 +34289,9 @@ func (n *Bgp_Rib_AttrSet_As4Segment) Member() *Bgp_Rib_AttrSet_As4Segment_Member } } -// Member returns from Bgp_Rib_AttrSet_As4SegmentAny the path struct for its child "member". -func (n *Bgp_Rib_AttrSet_As4SegmentAny) Member() *Bgp_Rib_AttrSet_As4Segment_MemberAny { - return &Bgp_Rib_AttrSet_As4Segment_MemberAny{ +// Member returns from Bgp_Rib_AttrSet_As4SegmentPathAny the path struct for its child "member". +func (n *Bgp_Rib_AttrSet_As4SegmentPathAny) Member() *Bgp_Rib_AttrSet_As4Segment_MemberPathAny { + return &Bgp_Rib_AttrSet_As4Segment_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -34305,9 +34300,9 @@ func (n *Bgp_Rib_AttrSet_As4SegmentAny) Member() *Bgp_Rib_AttrSet_As4Segment_Mem } } -// Type returns from Bgp_Rib_AttrSet_As4Segment the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_As4Segment) Type() *Bgp_Rib_AttrSet_As4Segment_Type { - return &Bgp_Rib_AttrSet_As4Segment_Type{ +// Type returns from Bgp_Rib_AttrSet_As4SegmentPath the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_As4SegmentPath) Type() *Bgp_Rib_AttrSet_As4Segment_TypePath { + return &Bgp_Rib_AttrSet_As4Segment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34316,9 +34311,9 @@ func (n *Bgp_Rib_AttrSet_As4Segment) Type() *Bgp_Rib_AttrSet_As4Segment_Type { } } -// Type returns from Bgp_Rib_AttrSet_As4SegmentAny the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_As4SegmentAny) Type() *Bgp_Rib_AttrSet_As4Segment_TypeAny { - return &Bgp_Rib_AttrSet_As4Segment_TypeAny{ +// Type returns from Bgp_Rib_AttrSet_As4SegmentPathAny the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_As4SegmentPathAny) Type() *Bgp_Rib_AttrSet_As4Segment_TypePathAny { + return &Bgp_Rib_AttrSet_As4Segment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34327,39 +34322,39 @@ func (n *Bgp_Rib_AttrSet_As4SegmentAny) Type() *Bgp_Rib_AttrSet_As4Segment_TypeA } } -// Bgp_Rib_AttrSet_AsSegment represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. -type Bgp_Rib_AttrSet_AsSegment struct { +// Bgp_Rib_AttrSet_AsSegmentPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. +type Bgp_Rib_AttrSet_AsSegmentPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AsSegmentAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. -type Bgp_Rib_AttrSet_AsSegmentAny struct { +// Bgp_Rib_AttrSet_AsSegmentPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. +type Bgp_Rib_AttrSet_AsSegmentPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AsSegment_Member represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. -type Bgp_Rib_AttrSet_AsSegment_Member struct { +// Bgp_Rib_AttrSet_AsSegment_MemberPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. +type Bgp_Rib_AttrSet_AsSegment_MemberPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AsSegment_MemberAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. -type Bgp_Rib_AttrSet_AsSegment_MemberAny struct { +// Bgp_Rib_AttrSet_AsSegment_MemberPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. +type Bgp_Rib_AttrSet_AsSegment_MemberPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AsSegment_Type represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_AsSegment_Type struct { +// Bgp_Rib_AttrSet_AsSegment_TypePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_AsSegment_TypePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_AsSegment_TypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_AsSegment_TypeAny struct { +// Bgp_Rib_AttrSet_AsSegment_TypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_AsSegment_TypePathAny struct { *ygot.NodePath } -// Member returns from Bgp_Rib_AttrSet_AsSegment the path struct for its child "member". -func (n *Bgp_Rib_AttrSet_AsSegment) Member() *Bgp_Rib_AttrSet_AsSegment_Member { - return &Bgp_Rib_AttrSet_AsSegment_Member{ +// Member returns from Bgp_Rib_AttrSet_AsSegmentPath the path struct for its child "member". +func (n *Bgp_Rib_AttrSet_AsSegmentPath) Member() *Bgp_Rib_AttrSet_AsSegment_MemberPath { + return &Bgp_Rib_AttrSet_AsSegment_MemberPath{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -34368,9 +34363,9 @@ func (n *Bgp_Rib_AttrSet_AsSegment) Member() *Bgp_Rib_AttrSet_AsSegment_Member { } } -// Member returns from Bgp_Rib_AttrSet_AsSegmentAny the path struct for its child "member". -func (n *Bgp_Rib_AttrSet_AsSegmentAny) Member() *Bgp_Rib_AttrSet_AsSegment_MemberAny { - return &Bgp_Rib_AttrSet_AsSegment_MemberAny{ +// Member returns from Bgp_Rib_AttrSet_AsSegmentPathAny the path struct for its child "member". +func (n *Bgp_Rib_AttrSet_AsSegmentPathAny) Member() *Bgp_Rib_AttrSet_AsSegment_MemberPathAny { + return &Bgp_Rib_AttrSet_AsSegment_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -34379,9 +34374,9 @@ func (n *Bgp_Rib_AttrSet_AsSegmentAny) Member() *Bgp_Rib_AttrSet_AsSegment_Membe } } -// Type returns from Bgp_Rib_AttrSet_AsSegment the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_AsSegment) Type() *Bgp_Rib_AttrSet_AsSegment_Type { - return &Bgp_Rib_AttrSet_AsSegment_Type{ +// Type returns from Bgp_Rib_AttrSet_AsSegmentPath the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_AsSegmentPath) Type() *Bgp_Rib_AttrSet_AsSegment_TypePath { + return &Bgp_Rib_AttrSet_AsSegment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34390,9 +34385,9 @@ func (n *Bgp_Rib_AttrSet_AsSegment) Type() *Bgp_Rib_AttrSet_AsSegment_Type { } } -// Type returns from Bgp_Rib_AttrSet_AsSegmentAny the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_AsSegmentAny) Type() *Bgp_Rib_AttrSet_AsSegment_TypeAny { - return &Bgp_Rib_AttrSet_AsSegment_TypeAny{ +// Type returns from Bgp_Rib_AttrSet_AsSegmentPathAny the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_AsSegmentPathAny) Type() *Bgp_Rib_AttrSet_AsSegment_TypePathAny { + return &Bgp_Rib_AttrSet_AsSegment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34401,19 +34396,19 @@ func (n *Bgp_Rib_AttrSet_AsSegmentAny) Type() *Bgp_Rib_AttrSet_AsSegment_TypeAny } } -// Bgp_Rib_AttrSet_TunnelEncapsulation represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation struct { +// Bgp_Rib_AttrSet_TunnelEncapsulationPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulationPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulationAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulationAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulationPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulationPathAny struct { *ygot.NodePath } -// TunnelAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation the path struct for its child "tunnel". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation) TunnelAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// TunnelAny returns from Bgp_Rib_AttrSet_TunnelEncapsulationPath the path struct for its child "tunnel". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulationPath) TunnelAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": "*"}, @@ -34422,9 +34417,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation) TunnelAny() *Bgp_Rib_AttrSet_Tunne } } -// TunnelAny returns from Bgp_Rib_AttrSet_TunnelEncapsulationAny the path struct for its child "tunnel". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulationAny) TunnelAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// TunnelAny returns from Bgp_Rib_AttrSet_TunnelEncapsulationPathAny the path struct for its child "tunnel". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulationPathAny) TunnelAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": "*"}, @@ -34433,9 +34428,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulationAny) TunnelAny() *Bgp_Rib_AttrSet_Tu } } -// Tunnel returns from Bgp_Rib_AttrSet_TunnelEncapsulation the path struct for its child "tunnel". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation) Tunnel(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel{ +// Tunnel returns from Bgp_Rib_AttrSet_TunnelEncapsulationPath the path struct for its child "tunnel". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulationPath) Tunnel(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": Type}, @@ -34444,9 +34439,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation) Tunnel(Type oc.E_OpenconfigRibBgpT } } -// Tunnel returns from Bgp_Rib_AttrSet_TunnelEncapsulationAny the path struct for its child "tunnel". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulationAny) Tunnel(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// Tunnel returns from Bgp_Rib_AttrSet_TunnelEncapsulationPathAny the path struct for its child "tunnel". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulationPathAny) Tunnel(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": Type}, @@ -34455,29 +34450,29 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulationAny) Tunnel(Type oc.E_OpenconfigRibB } } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny struct { *ygot.NodePath } -// SubtlvAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "subtlv". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) SubtlvAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// SubtlvAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "subtlv". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) SubtlvAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -34486,9 +34481,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) SubtlvAny() *Bgp_Rib_AttrSe } } -// SubtlvAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "subtlv". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) SubtlvAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// SubtlvAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "subtlv". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) SubtlvAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -34497,9 +34492,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) SubtlvAny() *Bgp_Rib_Att } } -// Subtlv returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "subtlv". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Subtlv(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv{ +// Subtlv returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "subtlv". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) Subtlv(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -34508,9 +34503,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Subtlv(Type oc.E_Openconfig } } -// Subtlv returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "subtlv". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Subtlv(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// Subtlv returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "subtlv". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) Subtlv(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -34519,9 +34514,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Subtlv(Type oc.E_Opencon } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34530,9 +34525,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Type() *Bgp_Rib_AttrSet_Tun } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34541,59 +34536,59 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Type() *Bgp_Rib_AttrSet_ } } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny struct { *ygot.NodePath } -// BindingSid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "binding-sid". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) BindingSid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid{ +// BindingSid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "binding-sid". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) BindingSid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath{ NodePath: ygot.NewNodePath( []string{"state", "binding-sid"}, map[string]interface{}{}, @@ -34602,9 +34597,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) BindingSid() *Bgp_Ri } } -// BindingSid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "binding-sid". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) BindingSid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny{ +// BindingSid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "binding-sid". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) BindingSid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "binding-sid"}, map[string]interface{}{}, @@ -34613,9 +34608,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) BindingSid() *Bgp } } -// Colors returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "colors". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Colors() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors{ +// Colors returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "colors". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Colors() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath{ NodePath: ygot.NewNodePath( []string{"state", "colors"}, map[string]interface{}{}, @@ -34624,9 +34619,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Colors() *Bgp_Rib_At } } -// Colors returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "colors". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Colors() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny{ +// Colors returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "colors". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Colors() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "colors"}, map[string]interface{}{}, @@ -34635,9 +34630,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Colors() *Bgp_Rib } } -// Preference returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "preference". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Preference() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference{ +// Preference returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "preference". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Preference() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -34646,9 +34641,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Preference() *Bgp_Ri } } -// Preference returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "preference". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Preference() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny{ +// Preference returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "preference". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Preference() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -34657,9 +34652,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Preference() *Bgp } } -// RemoteEndpointAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "remote-endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpointAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpointAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "remote-endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) RemoteEndpointAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": "*"}, @@ -34668,9 +34663,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpointAny() } } -// RemoteEndpointAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "remote-endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpointAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpointAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "remote-endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) RemoteEndpointAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": "*"}, @@ -34679,9 +34674,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpointAny } } -// RemoteEndpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "remote-endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpoint(Endpoint string) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint{ +// RemoteEndpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "remote-endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) RemoteEndpoint(Endpoint string) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": Endpoint}, @@ -34690,9 +34685,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpoint(Endpo } } -// RemoteEndpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "remote-endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpoint(Endpoint string) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "remote-endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) RemoteEndpoint(Endpoint string) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": Endpoint}, @@ -34701,9 +34696,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpoint(En } } -// SegmentListAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "segment-list". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentListAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentListAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "segment-list". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) SegmentListAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": "*"}, @@ -34712,9 +34707,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentListAny() *Bg } } -// SegmentListAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "segment-list". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentListAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentListAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "segment-list". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) SegmentListAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": "*"}, @@ -34723,9 +34718,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentListAny() } } -// SegmentList returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "segment-list". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentList(InstanceId uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList{ +// SegmentList returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "segment-list". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) SegmentList(InstanceId uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": InstanceId}, @@ -34734,9 +34729,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentList(Instance } } -// SegmentList returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "segment-list". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentList(InstanceId uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentList returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "segment-list". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) SegmentList(InstanceId uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": InstanceId}, @@ -34745,9 +34740,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentList(Insta } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34756,9 +34751,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Type() *Bgp_Rib_Attr } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -34767,39 +34762,39 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Type() *Bgp_Rib_A } } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny struct { *ygot.NodePath } -// As returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint the path struct for its child "as". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) As() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As{ +// As returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath the path struct for its child "as". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath) As() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -34808,9 +34803,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) As() } } -// As returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny the path struct for its child "as". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) As() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny{ +// As returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny the path struct for its child "as". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny) As() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -34819,9 +34814,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) As } } -// Endpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint the path struct for its child "endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) Endpoint() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint{ +// Endpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath the path struct for its child "endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath) Endpoint() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -34830,9 +34825,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) Endpo } } -// Endpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny the path struct for its child "endpoint". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) Endpoint() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny{ +// Endpoint returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny the path struct for its child "endpoint". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny) Endpoint() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -34841,39 +34836,39 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) En } } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny struct { *ygot.NodePath } -// InstanceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "instance-id". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) InstanceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId{ +// InstanceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "instance-id". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) InstanceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -34882,9 +34877,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Instance } } -// InstanceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "instance-id". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) InstanceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny{ +// InstanceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "instance-id". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) InstanceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -34893,9 +34888,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Insta } } -// SegmentAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "segment". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) SegmentAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// SegmentAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "segment". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) SegmentAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": "*"}, @@ -34904,9 +34899,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) SegmentA } } -// SegmentAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "segment". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) SegmentAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// SegmentAny returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "segment". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) SegmentAny() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": "*"}, @@ -34915,9 +34910,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Segme } } -// Segment returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "segment". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Segment(Index uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment{ +// Segment returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "segment". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) Segment(Index uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": Index}, @@ -34926,9 +34921,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Segment( } } -// Segment returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "segment". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Segment(Index uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// Segment returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "segment". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) Segment(Index uint64) *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": Index}, @@ -34937,9 +34932,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Segme } } -// Weight returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "weight". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Weight() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight{ +// Weight returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "weight". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) Weight() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -34948,9 +34943,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Weight() } } -// Weight returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "weight". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Weight() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny{ +// Weight returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "weight". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) Weight() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -34959,129 +34954,129 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Weigh } } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath represents the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath struct { *ygot.NodePath } -// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. -type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny struct { +// Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. +type Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny struct { *ygot.NodePath } -// Index returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "index". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Index() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index{ +// Index returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "index". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Index() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35090,9 +35085,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// Index returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "index". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Index() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny{ +// Index returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "index". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Index() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35101,9 +35096,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// LocalInterfaceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-interface-id". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalInterfaceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId{ +// LocalInterfaceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-interface-id". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalInterfaceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "local-interface-id"}, map[string]interface{}{}, @@ -35112,9 +35107,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// LocalInterfaceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-interface-id". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalInterfaceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny{ +// LocalInterfaceId returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-interface-id". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalInterfaceId() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-interface-id"}, map[string]interface{}{}, @@ -35123,9 +35118,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// LocalIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-ipv4-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address{ +// LocalIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-ipv4-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-address"}, map[string]interface{}{}, @@ -35134,9 +35129,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// LocalIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-ipv4-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny{ +// LocalIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-ipv4-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-address"}, map[string]interface{}{}, @@ -35145,9 +35140,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// LocalIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-ipv6-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address{ +// LocalIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-ipv6-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-address"}, map[string]interface{}{}, @@ -35156,9 +35151,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// LocalIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-ipv6-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny{ +// LocalIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-ipv6-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-address"}, map[string]interface{}{}, @@ -35167,9 +35162,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// MplsBos returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-bos". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsBos() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos{ +// MplsBos returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-bos". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsBos() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-bos"}, map[string]interface{}{}, @@ -35178,9 +35173,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// MplsBos returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-bos". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsBos() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny{ +// MplsBos returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-bos". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsBos() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-bos"}, map[string]interface{}{}, @@ -35189,9 +35184,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// MplsTc returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-tc". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsTc() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc{ +// MplsTc returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-tc". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsTc() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -35200,9 +35195,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// MplsTc returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-tc". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsTc() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny{ +// MplsTc returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-tc". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsTc() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -35211,9 +35206,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// MplsTtl returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-ttl". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsTtl() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl{ +// MplsTtl returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-ttl". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsTtl() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -35222,9 +35217,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// MplsTtl returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-ttl". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsTtl() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny{ +// MplsTtl returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-ttl". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsTtl() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -35233,9 +35228,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// RemoteIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "remote-ipv4-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) RemoteIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address{ +// RemoteIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "remote-ipv4-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) RemoteIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv4-address"}, map[string]interface{}{}, @@ -35244,9 +35239,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// RemoteIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "remote-ipv4-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) RemoteIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny{ +// RemoteIpv4Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "remote-ipv4-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) RemoteIpv4Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv4-address"}, map[string]interface{}{}, @@ -35255,9 +35250,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// RemoteIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "remote-ipv6-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) RemoteIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address{ +// RemoteIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "remote-ipv6-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) RemoteIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv6-address"}, map[string]interface{}{}, @@ -35266,9 +35261,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// RemoteIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "remote-ipv6-address". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) RemoteIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny{ +// RemoteIpv6Address returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "remote-ipv6-address". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) RemoteIpv6Address() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv6-address"}, map[string]interface{}{}, @@ -35277,9 +35272,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// Sid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "sid". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Sid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid{ +// Sid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "sid". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Sid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath{ NodePath: ygot.NewNodePath( []string{"state", "sid"}, map[string]interface{}{}, @@ -35288,9 +35283,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// Sid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "sid". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Sid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny{ +// Sid returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "sid". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Sid() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid"}, map[string]interface{}{}, @@ -35299,9 +35294,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -35310,9 +35305,9 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) } } -// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "type". -func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny { - return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny{ +// Type returns from Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "type". +func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Type() *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny { + return &Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -35321,39 +35316,39 @@ func (n *Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAn } } -// Bgp_Rib_Community represents the /openconfig-bgp/bgp/rib/communities/community YANG schema element. -type Bgp_Rib_Community struct { +// Bgp_Rib_CommunityPath represents the /openconfig-bgp/bgp/rib/communities/community YANG schema element. +type Bgp_Rib_CommunityPath struct { *ygot.NodePath } -// Bgp_Rib_CommunityAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community YANG schema element. -type Bgp_Rib_CommunityAny struct { +// Bgp_Rib_CommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community YANG schema element. +type Bgp_Rib_CommunityPathAny struct { *ygot.NodePath } -// Bgp_Rib_Community_Community represents the /openconfig-bgp/bgp/rib/communities/community/state/community YANG schema element. -type Bgp_Rib_Community_Community struct { +// Bgp_Rib_Community_CommunityPath represents the /openconfig-bgp/bgp/rib/communities/community/state/community YANG schema element. +type Bgp_Rib_Community_CommunityPath struct { *ygot.NodePath } -// Bgp_Rib_Community_CommunityAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community/state/community YANG schema element. -type Bgp_Rib_Community_CommunityAny struct { +// Bgp_Rib_Community_CommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community/state/community YANG schema element. +type Bgp_Rib_Community_CommunityPathAny struct { *ygot.NodePath } -// Bgp_Rib_Community_Index represents the /openconfig-bgp/bgp/rib/communities/community/state/index YANG schema element. -type Bgp_Rib_Community_Index struct { +// Bgp_Rib_Community_IndexPath represents the /openconfig-bgp/bgp/rib/communities/community/state/index YANG schema element. +type Bgp_Rib_Community_IndexPath struct { *ygot.NodePath } -// Bgp_Rib_Community_IndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community/state/index YANG schema element. -type Bgp_Rib_Community_IndexAny struct { +// Bgp_Rib_Community_IndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/communities/community/state/index YANG schema element. +type Bgp_Rib_Community_IndexPathAny struct { *ygot.NodePath } -// Community returns from Bgp_Rib_Community the path struct for its child "community". -func (n *Bgp_Rib_Community) Community() *Bgp_Rib_Community_Community { - return &Bgp_Rib_Community_Community{ +// Community returns from Bgp_Rib_CommunityPath the path struct for its child "community". +func (n *Bgp_Rib_CommunityPath) Community() *Bgp_Rib_Community_CommunityPath { + return &Bgp_Rib_Community_CommunityPath{ NodePath: ygot.NewNodePath( []string{"state", "community"}, map[string]interface{}{}, @@ -35362,9 +35357,9 @@ func (n *Bgp_Rib_Community) Community() *Bgp_Rib_Community_Community { } } -// Community returns from Bgp_Rib_CommunityAny the path struct for its child "community". -func (n *Bgp_Rib_CommunityAny) Community() *Bgp_Rib_Community_CommunityAny { - return &Bgp_Rib_Community_CommunityAny{ +// Community returns from Bgp_Rib_CommunityPathAny the path struct for its child "community". +func (n *Bgp_Rib_CommunityPathAny) Community() *Bgp_Rib_Community_CommunityPathAny { + return &Bgp_Rib_Community_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community"}, map[string]interface{}{}, @@ -35373,9 +35368,9 @@ func (n *Bgp_Rib_CommunityAny) Community() *Bgp_Rib_Community_CommunityAny { } } -// Index returns from Bgp_Rib_Community the path struct for its child "index". -func (n *Bgp_Rib_Community) Index() *Bgp_Rib_Community_Index { - return &Bgp_Rib_Community_Index{ +// Index returns from Bgp_Rib_CommunityPath the path struct for its child "index". +func (n *Bgp_Rib_CommunityPath) Index() *Bgp_Rib_Community_IndexPath { + return &Bgp_Rib_Community_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35384,9 +35379,9 @@ func (n *Bgp_Rib_Community) Index() *Bgp_Rib_Community_Index { } } -// Index returns from Bgp_Rib_CommunityAny the path struct for its child "index". -func (n *Bgp_Rib_CommunityAny) Index() *Bgp_Rib_Community_IndexAny { - return &Bgp_Rib_Community_IndexAny{ +// Index returns from Bgp_Rib_CommunityPathAny the path struct for its child "index". +func (n *Bgp_Rib_CommunityPathAny) Index() *Bgp_Rib_Community_IndexPathAny { + return &Bgp_Rib_Community_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35395,39 +35390,39 @@ func (n *Bgp_Rib_CommunityAny) Index() *Bgp_Rib_Community_IndexAny { } } -// Bgp_Rib_ExtCommunity represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community YANG schema element. -type Bgp_Rib_ExtCommunity struct { +// Bgp_Rib_ExtCommunityPath represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community YANG schema element. +type Bgp_Rib_ExtCommunityPath struct { *ygot.NodePath } -// Bgp_Rib_ExtCommunityAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community YANG schema element. -type Bgp_Rib_ExtCommunityAny struct { +// Bgp_Rib_ExtCommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community YANG schema element. +type Bgp_Rib_ExtCommunityPathAny struct { *ygot.NodePath } -// Bgp_Rib_ExtCommunity_ExtCommunity represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. -type Bgp_Rib_ExtCommunity_ExtCommunity struct { +// Bgp_Rib_ExtCommunity_ExtCommunityPath represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. +type Bgp_Rib_ExtCommunity_ExtCommunityPath struct { *ygot.NodePath } -// Bgp_Rib_ExtCommunity_ExtCommunityAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. -type Bgp_Rib_ExtCommunity_ExtCommunityAny struct { +// Bgp_Rib_ExtCommunity_ExtCommunityPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. +type Bgp_Rib_ExtCommunity_ExtCommunityPathAny struct { *ygot.NodePath } -// Bgp_Rib_ExtCommunity_Index represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/index YANG schema element. -type Bgp_Rib_ExtCommunity_Index struct { +// Bgp_Rib_ExtCommunity_IndexPath represents the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/index YANG schema element. +type Bgp_Rib_ExtCommunity_IndexPath struct { *ygot.NodePath } -// Bgp_Rib_ExtCommunity_IndexAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/index YANG schema element. -type Bgp_Rib_ExtCommunity_IndexAny struct { +// Bgp_Rib_ExtCommunity_IndexPathAny represents the wildcard version of the /openconfig-bgp/bgp/rib/ext-communities/ext-community/state/index YANG schema element. +type Bgp_Rib_ExtCommunity_IndexPathAny struct { *ygot.NodePath } -// ExtCommunity returns from Bgp_Rib_ExtCommunity the path struct for its child "ext-community". -func (n *Bgp_Rib_ExtCommunity) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommunity { - return &Bgp_Rib_ExtCommunity_ExtCommunity{ +// ExtCommunity returns from Bgp_Rib_ExtCommunityPath the path struct for its child "ext-community". +func (n *Bgp_Rib_ExtCommunityPath) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommunityPath { + return &Bgp_Rib_ExtCommunity_ExtCommunityPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community"}, map[string]interface{}{}, @@ -35436,9 +35431,9 @@ func (n *Bgp_Rib_ExtCommunity) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommunity } } -// ExtCommunity returns from Bgp_Rib_ExtCommunityAny the path struct for its child "ext-community". -func (n *Bgp_Rib_ExtCommunityAny) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommunityAny { - return &Bgp_Rib_ExtCommunity_ExtCommunityAny{ +// ExtCommunity returns from Bgp_Rib_ExtCommunityPathAny the path struct for its child "ext-community". +func (n *Bgp_Rib_ExtCommunityPathAny) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommunityPathAny { + return &Bgp_Rib_ExtCommunity_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community"}, map[string]interface{}{}, @@ -35447,9 +35442,9 @@ func (n *Bgp_Rib_ExtCommunityAny) ExtCommunity() *Bgp_Rib_ExtCommunity_ExtCommun } } -// Index returns from Bgp_Rib_ExtCommunity the path struct for its child "index". -func (n *Bgp_Rib_ExtCommunity) Index() *Bgp_Rib_ExtCommunity_Index { - return &Bgp_Rib_ExtCommunity_Index{ +// Index returns from Bgp_Rib_ExtCommunityPath the path struct for its child "index". +func (n *Bgp_Rib_ExtCommunityPath) Index() *Bgp_Rib_ExtCommunity_IndexPath { + return &Bgp_Rib_ExtCommunity_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35458,9 +35453,9 @@ func (n *Bgp_Rib_ExtCommunity) Index() *Bgp_Rib_ExtCommunity_Index { } } -// Index returns from Bgp_Rib_ExtCommunityAny the path struct for its child "index". -func (n *Bgp_Rib_ExtCommunityAny) Index() *Bgp_Rib_ExtCommunity_IndexAny { - return &Bgp_Rib_ExtCommunity_IndexAny{ +// Index returns from Bgp_Rib_ExtCommunityPathAny the path struct for its child "index". +func (n *Bgp_Rib_ExtCommunityPathAny) Index() *Bgp_Rib_ExtCommunity_IndexPathAny { + return &Bgp_Rib_ExtCommunity_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -35469,219 +35464,219 @@ func (n *Bgp_Rib_ExtCommunityAny) Index() *Bgp_Rib_ExtCommunity_IndexAny { } } -// Component represents the /openconfig-platform/components/component YANG schema element. -type Component struct { +// ComponentPath represents the /openconfig-platform/components/component YANG schema element. +type ComponentPath struct { *ygot.NodePath } -// ComponentAny represents the wildcard version of the /openconfig-platform/components/component YANG schema element. -type ComponentAny struct { +// ComponentPathAny represents the wildcard version of the /openconfig-platform/components/component YANG schema element. +type ComponentPathAny struct { *ygot.NodePath } -// Component_AllocatedPower represents the /openconfig-platform/components/component/state/allocated-power YANG schema element. -type Component_AllocatedPower struct { +// Component_AllocatedPowerPath represents the /openconfig-platform/components/component/state/allocated-power YANG schema element. +type Component_AllocatedPowerPath struct { *ygot.NodePath } -// Component_AllocatedPowerAny represents the wildcard version of the /openconfig-platform/components/component/state/allocated-power YANG schema element. -type Component_AllocatedPowerAny struct { +// Component_AllocatedPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/state/allocated-power YANG schema element. +type Component_AllocatedPowerPathAny struct { *ygot.NodePath } -// Component_Description represents the /openconfig-platform/components/component/state/description YANG schema element. -type Component_Description struct { +// Component_DescriptionPath represents the /openconfig-platform/components/component/state/description YANG schema element. +type Component_DescriptionPath struct { *ygot.NodePath } -// Component_DescriptionAny represents the wildcard version of the /openconfig-platform/components/component/state/description YANG schema element. -type Component_DescriptionAny struct { +// Component_DescriptionPathAny represents the wildcard version of the /openconfig-platform/components/component/state/description YANG schema element. +type Component_DescriptionPathAny struct { *ygot.NodePath } -// Component_Empty represents the /openconfig-platform/components/component/state/empty YANG schema element. -type Component_Empty struct { +// Component_EmptyPath represents the /openconfig-platform/components/component/state/empty YANG schema element. +type Component_EmptyPath struct { *ygot.NodePath } -// Component_EmptyAny represents the wildcard version of the /openconfig-platform/components/component/state/empty YANG schema element. -type Component_EmptyAny struct { +// Component_EmptyPathAny represents the wildcard version of the /openconfig-platform/components/component/state/empty YANG schema element. +type Component_EmptyPathAny struct { *ygot.NodePath } -// Component_EquipmentFailure represents the /openconfig-platform/components/component/state/equipment-failure YANG schema element. -type Component_EquipmentFailure struct { +// Component_EquipmentFailurePath represents the /openconfig-platform/components/component/state/equipment-failure YANG schema element. +type Component_EquipmentFailurePath struct { *ygot.NodePath } -// Component_EquipmentFailureAny represents the wildcard version of the /openconfig-platform/components/component/state/equipment-failure YANG schema element. -type Component_EquipmentFailureAny struct { +// Component_EquipmentFailurePathAny represents the wildcard version of the /openconfig-platform/components/component/state/equipment-failure YANG schema element. +type Component_EquipmentFailurePathAny struct { *ygot.NodePath } -// Component_EquipmentMismatch represents the /openconfig-platform/components/component/state/equipment-mismatch YANG schema element. -type Component_EquipmentMismatch struct { +// Component_EquipmentMismatchPath represents the /openconfig-platform/components/component/state/equipment-mismatch YANG schema element. +type Component_EquipmentMismatchPath struct { *ygot.NodePath } -// Component_EquipmentMismatchAny represents the wildcard version of the /openconfig-platform/components/component/state/equipment-mismatch YANG schema element. -type Component_EquipmentMismatchAny struct { +// Component_EquipmentMismatchPathAny represents the wildcard version of the /openconfig-platform/components/component/state/equipment-mismatch YANG schema element. +type Component_EquipmentMismatchPathAny struct { *ygot.NodePath } -// Component_FirmwareVersion represents the /openconfig-platform/components/component/state/firmware-version YANG schema element. -type Component_FirmwareVersion struct { +// Component_FirmwareVersionPath represents the /openconfig-platform/components/component/state/firmware-version YANG schema element. +type Component_FirmwareVersionPath struct { *ygot.NodePath } -// Component_FirmwareVersionAny represents the wildcard version of the /openconfig-platform/components/component/state/firmware-version YANG schema element. -type Component_FirmwareVersionAny struct { +// Component_FirmwareVersionPathAny represents the wildcard version of the /openconfig-platform/components/component/state/firmware-version YANG schema element. +type Component_FirmwareVersionPathAny struct { *ygot.NodePath } -// Component_HardwareVersion represents the /openconfig-platform/components/component/state/hardware-version YANG schema element. -type Component_HardwareVersion struct { +// Component_HardwareVersionPath represents the /openconfig-platform/components/component/state/hardware-version YANG schema element. +type Component_HardwareVersionPath struct { *ygot.NodePath } -// Component_HardwareVersionAny represents the wildcard version of the /openconfig-platform/components/component/state/hardware-version YANG schema element. -type Component_HardwareVersionAny struct { +// Component_HardwareVersionPathAny represents the wildcard version of the /openconfig-platform/components/component/state/hardware-version YANG schema element. +type Component_HardwareVersionPathAny struct { *ygot.NodePath } -// Component_Id represents the /openconfig-platform/components/component/state/id YANG schema element. -type Component_Id struct { +// Component_IdPath represents the /openconfig-platform/components/component/state/id YANG schema element. +type Component_IdPath struct { *ygot.NodePath } -// Component_IdAny represents the wildcard version of the /openconfig-platform/components/component/state/id YANG schema element. -type Component_IdAny struct { +// Component_IdPathAny represents the wildcard version of the /openconfig-platform/components/component/state/id YANG schema element. +type Component_IdPathAny struct { *ygot.NodePath } -// Component_Location represents the /openconfig-platform/components/component/state/location YANG schema element. -type Component_Location struct { +// Component_LocationPath represents the /openconfig-platform/components/component/state/location YANG schema element. +type Component_LocationPath struct { *ygot.NodePath } -// Component_LocationAny represents the wildcard version of the /openconfig-platform/components/component/state/location YANG schema element. -type Component_LocationAny struct { +// Component_LocationPathAny represents the wildcard version of the /openconfig-platform/components/component/state/location YANG schema element. +type Component_LocationPathAny struct { *ygot.NodePath } -// Component_MfgDate represents the /openconfig-platform/components/component/state/mfg-date YANG schema element. -type Component_MfgDate struct { +// Component_MfgDatePath represents the /openconfig-platform/components/component/state/mfg-date YANG schema element. +type Component_MfgDatePath struct { *ygot.NodePath } -// Component_MfgDateAny represents the wildcard version of the /openconfig-platform/components/component/state/mfg-date YANG schema element. -type Component_MfgDateAny struct { +// Component_MfgDatePathAny represents the wildcard version of the /openconfig-platform/components/component/state/mfg-date YANG schema element. +type Component_MfgDatePathAny struct { *ygot.NodePath } -// Component_MfgName represents the /openconfig-platform/components/component/state/mfg-name YANG schema element. -type Component_MfgName struct { +// Component_MfgNamePath represents the /openconfig-platform/components/component/state/mfg-name YANG schema element. +type Component_MfgNamePath struct { *ygot.NodePath } -// Component_MfgNameAny represents the wildcard version of the /openconfig-platform/components/component/state/mfg-name YANG schema element. -type Component_MfgNameAny struct { +// Component_MfgNamePathAny represents the wildcard version of the /openconfig-platform/components/component/state/mfg-name YANG schema element. +type Component_MfgNamePathAny struct { *ygot.NodePath } -// Component_Name represents the /openconfig-platform/components/component/state/name YANG schema element. -type Component_Name struct { +// Component_NamePath represents the /openconfig-platform/components/component/config/name YANG schema element. +type Component_NamePath struct { *ygot.NodePath } -// Component_NameAny represents the wildcard version of the /openconfig-platform/components/component/state/name YANG schema element. -type Component_NameAny struct { +// Component_NamePathAny represents the wildcard version of the /openconfig-platform/components/component/config/name YANG schema element. +type Component_NamePathAny struct { *ygot.NodePath } -// Component_OperStatus represents the /openconfig-platform/components/component/state/oper-status YANG schema element. -type Component_OperStatus struct { +// Component_OperStatusPath represents the /openconfig-platform/components/component/state/oper-status YANG schema element. +type Component_OperStatusPath struct { *ygot.NodePath } -// Component_OperStatusAny represents the wildcard version of the /openconfig-platform/components/component/state/oper-status YANG schema element. -type Component_OperStatusAny struct { +// Component_OperStatusPathAny represents the wildcard version of the /openconfig-platform/components/component/state/oper-status YANG schema element. +type Component_OperStatusPathAny struct { *ygot.NodePath } -// Component_Parent represents the /openconfig-platform/components/component/state/parent YANG schema element. -type Component_Parent struct { +// Component_ParentPath represents the /openconfig-platform/components/component/state/parent YANG schema element. +type Component_ParentPath struct { *ygot.NodePath } -// Component_ParentAny represents the wildcard version of the /openconfig-platform/components/component/state/parent YANG schema element. -type Component_ParentAny struct { +// Component_ParentPathAny represents the wildcard version of the /openconfig-platform/components/component/state/parent YANG schema element. +type Component_ParentPathAny struct { *ygot.NodePath } -// Component_PartNo represents the /openconfig-platform/components/component/state/part-no YANG schema element. -type Component_PartNo struct { +// Component_PartNoPath represents the /openconfig-platform/components/component/state/part-no YANG schema element. +type Component_PartNoPath struct { *ygot.NodePath } -// Component_PartNoAny represents the wildcard version of the /openconfig-platform/components/component/state/part-no YANG schema element. -type Component_PartNoAny struct { +// Component_PartNoPathAny represents the wildcard version of the /openconfig-platform/components/component/state/part-no YANG schema element. +type Component_PartNoPathAny struct { *ygot.NodePath } -// Component_Removable represents the /openconfig-platform/components/component/state/removable YANG schema element. -type Component_Removable struct { +// Component_RemovablePath represents the /openconfig-platform/components/component/state/removable YANG schema element. +type Component_RemovablePath struct { *ygot.NodePath } -// Component_RemovableAny represents the wildcard version of the /openconfig-platform/components/component/state/removable YANG schema element. -type Component_RemovableAny struct { +// Component_RemovablePathAny represents the wildcard version of the /openconfig-platform/components/component/state/removable YANG schema element. +type Component_RemovablePathAny struct { *ygot.NodePath } -// Component_SerialNo represents the /openconfig-platform/components/component/state/serial-no YANG schema element. -type Component_SerialNo struct { +// Component_SerialNoPath represents the /openconfig-platform/components/component/state/serial-no YANG schema element. +type Component_SerialNoPath struct { *ygot.NodePath } -// Component_SerialNoAny represents the wildcard version of the /openconfig-platform/components/component/state/serial-no YANG schema element. -type Component_SerialNoAny struct { +// Component_SerialNoPathAny represents the wildcard version of the /openconfig-platform/components/component/state/serial-no YANG schema element. +type Component_SerialNoPathAny struct { *ygot.NodePath } -// Component_SoftwareVersion represents the /openconfig-platform/components/component/state/software-version YANG schema element. -type Component_SoftwareVersion struct { +// Component_SoftwareVersionPath represents the /openconfig-platform/components/component/state/software-version YANG schema element. +type Component_SoftwareVersionPath struct { *ygot.NodePath } -// Component_SoftwareVersionAny represents the wildcard version of the /openconfig-platform/components/component/state/software-version YANG schema element. -type Component_SoftwareVersionAny struct { +// Component_SoftwareVersionPathAny represents the wildcard version of the /openconfig-platform/components/component/state/software-version YANG schema element. +type Component_SoftwareVersionPathAny struct { *ygot.NodePath } -// Component_Type represents the /openconfig-platform/components/component/state/type YANG schema element. -type Component_Type struct { +// Component_TypePath represents the /openconfig-platform/components/component/state/type YANG schema element. +type Component_TypePath struct { *ygot.NodePath } -// Component_TypeAny represents the wildcard version of the /openconfig-platform/components/component/state/type YANG schema element. -type Component_TypeAny struct { +// Component_TypePathAny represents the wildcard version of the /openconfig-platform/components/component/state/type YANG schema element. +type Component_TypePathAny struct { *ygot.NodePath } -// Component_UsedPower represents the /openconfig-platform/components/component/state/used-power YANG schema element. -type Component_UsedPower struct { +// Component_UsedPowerPath represents the /openconfig-platform/components/component/state/used-power YANG schema element. +type Component_UsedPowerPath struct { *ygot.NodePath } -// Component_UsedPowerAny represents the wildcard version of the /openconfig-platform/components/component/state/used-power YANG schema element. -type Component_UsedPowerAny struct { +// Component_UsedPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/state/used-power YANG schema element. +type Component_UsedPowerPathAny struct { *ygot.NodePath } -// AllocatedPower returns from Component the path struct for its child "allocated-power". -func (n *Component) AllocatedPower() *Component_AllocatedPower { - return &Component_AllocatedPower{ +// AllocatedPower returns from ComponentPath the path struct for its child "allocated-power". +func (n *ComponentPath) AllocatedPower() *Component_AllocatedPowerPath { + return &Component_AllocatedPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "allocated-power"}, map[string]interface{}{}, @@ -35690,9 +35685,9 @@ func (n *Component) AllocatedPower() *Component_AllocatedPower { } } -// AllocatedPower returns from ComponentAny the path struct for its child "allocated-power". -func (n *ComponentAny) AllocatedPower() *Component_AllocatedPowerAny { - return &Component_AllocatedPowerAny{ +// AllocatedPower returns from ComponentPathAny the path struct for its child "allocated-power". +func (n *ComponentPathAny) AllocatedPower() *Component_AllocatedPowerPathAny { + return &Component_AllocatedPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "allocated-power"}, map[string]interface{}{}, @@ -35701,9 +35696,9 @@ func (n *ComponentAny) AllocatedPower() *Component_AllocatedPowerAny { } } -// Backplane returns from Component the path struct for its child "backplane". -func (n *Component) Backplane() *Component_Backplane { - return &Component_Backplane{ +// Backplane returns from ComponentPath the path struct for its child "backplane". +func (n *ComponentPath) Backplane() *Component_BackplanePath { + return &Component_BackplanePath{ NodePath: ygot.NewNodePath( []string{"backplane"}, map[string]interface{}{}, @@ -35712,9 +35707,9 @@ func (n *Component) Backplane() *Component_Backplane { } } -// Backplane returns from ComponentAny the path struct for its child "backplane". -func (n *ComponentAny) Backplane() *Component_BackplaneAny { - return &Component_BackplaneAny{ +// Backplane returns from ComponentPathAny the path struct for its child "backplane". +func (n *ComponentPathAny) Backplane() *Component_BackplanePathAny { + return &Component_BackplanePathAny{ NodePath: ygot.NewNodePath( []string{"backplane"}, map[string]interface{}{}, @@ -35723,9 +35718,9 @@ func (n *ComponentAny) Backplane() *Component_BackplaneAny { } } -// Chassis returns from Component the path struct for its child "chassis". -func (n *Component) Chassis() *Component_Chassis { - return &Component_Chassis{ +// Chassis returns from ComponentPath the path struct for its child "chassis". +func (n *ComponentPath) Chassis() *Component_ChassisPath { + return &Component_ChassisPath{ NodePath: ygot.NewNodePath( []string{"chassis"}, map[string]interface{}{}, @@ -35734,9 +35729,9 @@ func (n *Component) Chassis() *Component_Chassis { } } -// Chassis returns from ComponentAny the path struct for its child "chassis". -func (n *ComponentAny) Chassis() *Component_ChassisAny { - return &Component_ChassisAny{ +// Chassis returns from ComponentPathAny the path struct for its child "chassis". +func (n *ComponentPathAny) Chassis() *Component_ChassisPathAny { + return &Component_ChassisPathAny{ NodePath: ygot.NewNodePath( []string{"chassis"}, map[string]interface{}{}, @@ -35745,9 +35740,9 @@ func (n *ComponentAny) Chassis() *Component_ChassisAny { } } -// Cpu returns from Component the path struct for its child "cpu". -func (n *Component) Cpu() *Component_Cpu { - return &Component_Cpu{ +// Cpu returns from ComponentPath the path struct for its child "cpu". +func (n *ComponentPath) Cpu() *Component_CpuPath { + return &Component_CpuPath{ NodePath: ygot.NewNodePath( []string{"cpu"}, map[string]interface{}{}, @@ -35756,9 +35751,9 @@ func (n *Component) Cpu() *Component_Cpu { } } -// Cpu returns from ComponentAny the path struct for its child "cpu". -func (n *ComponentAny) Cpu() *Component_CpuAny { - return &Component_CpuAny{ +// Cpu returns from ComponentPathAny the path struct for its child "cpu". +func (n *ComponentPathAny) Cpu() *Component_CpuPathAny { + return &Component_CpuPathAny{ NodePath: ygot.NewNodePath( []string{"cpu"}, map[string]interface{}{}, @@ -35767,9 +35762,9 @@ func (n *ComponentAny) Cpu() *Component_CpuAny { } } -// Description returns from Component the path struct for its child "description". -func (n *Component) Description() *Component_Description { - return &Component_Description{ +// Description returns from ComponentPath the path struct for its child "description". +func (n *ComponentPath) Description() *Component_DescriptionPath { + return &Component_DescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -35778,9 +35773,9 @@ func (n *Component) Description() *Component_Description { } } -// Description returns from ComponentAny the path struct for its child "description". -func (n *ComponentAny) Description() *Component_DescriptionAny { - return &Component_DescriptionAny{ +// Description returns from ComponentPathAny the path struct for its child "description". +func (n *ComponentPathAny) Description() *Component_DescriptionPathAny { + return &Component_DescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -35789,9 +35784,9 @@ func (n *ComponentAny) Description() *Component_DescriptionAny { } } -// Empty returns from Component the path struct for its child "empty". -func (n *Component) Empty() *Component_Empty { - return &Component_Empty{ +// Empty returns from ComponentPath the path struct for its child "empty". +func (n *ComponentPath) Empty() *Component_EmptyPath { + return &Component_EmptyPath{ NodePath: ygot.NewNodePath( []string{"state", "empty"}, map[string]interface{}{}, @@ -35800,9 +35795,9 @@ func (n *Component) Empty() *Component_Empty { } } -// Empty returns from ComponentAny the path struct for its child "empty". -func (n *ComponentAny) Empty() *Component_EmptyAny { - return &Component_EmptyAny{ +// Empty returns from ComponentPathAny the path struct for its child "empty". +func (n *ComponentPathAny) Empty() *Component_EmptyPathAny { + return &Component_EmptyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "empty"}, map[string]interface{}{}, @@ -35811,9 +35806,9 @@ func (n *ComponentAny) Empty() *Component_EmptyAny { } } -// EquipmentFailure returns from Component the path struct for its child "equipment-failure". -func (n *Component) EquipmentFailure() *Component_EquipmentFailure { - return &Component_EquipmentFailure{ +// EquipmentFailure returns from ComponentPath the path struct for its child "equipment-failure". +func (n *ComponentPath) EquipmentFailure() *Component_EquipmentFailurePath { + return &Component_EquipmentFailurePath{ NodePath: ygot.NewNodePath( []string{"state", "equipment-failure"}, map[string]interface{}{}, @@ -35822,9 +35817,9 @@ func (n *Component) EquipmentFailure() *Component_EquipmentFailure { } } -// EquipmentFailure returns from ComponentAny the path struct for its child "equipment-failure". -func (n *ComponentAny) EquipmentFailure() *Component_EquipmentFailureAny { - return &Component_EquipmentFailureAny{ +// EquipmentFailure returns from ComponentPathAny the path struct for its child "equipment-failure". +func (n *ComponentPathAny) EquipmentFailure() *Component_EquipmentFailurePathAny { + return &Component_EquipmentFailurePathAny{ NodePath: ygot.NewNodePath( []string{"state", "equipment-failure"}, map[string]interface{}{}, @@ -35833,9 +35828,9 @@ func (n *ComponentAny) EquipmentFailure() *Component_EquipmentFailureAny { } } -// EquipmentMismatch returns from Component the path struct for its child "equipment-mismatch". -func (n *Component) EquipmentMismatch() *Component_EquipmentMismatch { - return &Component_EquipmentMismatch{ +// EquipmentMismatch returns from ComponentPath the path struct for its child "equipment-mismatch". +func (n *ComponentPath) EquipmentMismatch() *Component_EquipmentMismatchPath { + return &Component_EquipmentMismatchPath{ NodePath: ygot.NewNodePath( []string{"state", "equipment-mismatch"}, map[string]interface{}{}, @@ -35844,9 +35839,9 @@ func (n *Component) EquipmentMismatch() *Component_EquipmentMismatch { } } -// EquipmentMismatch returns from ComponentAny the path struct for its child "equipment-mismatch". -func (n *ComponentAny) EquipmentMismatch() *Component_EquipmentMismatchAny { - return &Component_EquipmentMismatchAny{ +// EquipmentMismatch returns from ComponentPathAny the path struct for its child "equipment-mismatch". +func (n *ComponentPathAny) EquipmentMismatch() *Component_EquipmentMismatchPathAny { + return &Component_EquipmentMismatchPathAny{ NodePath: ygot.NewNodePath( []string{"state", "equipment-mismatch"}, map[string]interface{}{}, @@ -35855,9 +35850,9 @@ func (n *ComponentAny) EquipmentMismatch() *Component_EquipmentMismatchAny { } } -// Fabric returns from Component the path struct for its child "fabric". -func (n *Component) Fabric() *Component_Fabric { - return &Component_Fabric{ +// Fabric returns from ComponentPath the path struct for its child "fabric". +func (n *ComponentPath) Fabric() *Component_FabricPath { + return &Component_FabricPath{ NodePath: ygot.NewNodePath( []string{"fabric"}, map[string]interface{}{}, @@ -35866,9 +35861,9 @@ func (n *Component) Fabric() *Component_Fabric { } } -// Fabric returns from ComponentAny the path struct for its child "fabric". -func (n *ComponentAny) Fabric() *Component_FabricAny { - return &Component_FabricAny{ +// Fabric returns from ComponentPathAny the path struct for its child "fabric". +func (n *ComponentPathAny) Fabric() *Component_FabricPathAny { + return &Component_FabricPathAny{ NodePath: ygot.NewNodePath( []string{"fabric"}, map[string]interface{}{}, @@ -35877,9 +35872,9 @@ func (n *ComponentAny) Fabric() *Component_FabricAny { } } -// Fan returns from Component the path struct for its child "fan". -func (n *Component) Fan() *Component_Fan { - return &Component_Fan{ +// Fan returns from ComponentPath the path struct for its child "fan". +func (n *ComponentPath) Fan() *Component_FanPath { + return &Component_FanPath{ NodePath: ygot.NewNodePath( []string{"fan"}, map[string]interface{}{}, @@ -35888,9 +35883,9 @@ func (n *Component) Fan() *Component_Fan { } } -// Fan returns from ComponentAny the path struct for its child "fan". -func (n *ComponentAny) Fan() *Component_FanAny { - return &Component_FanAny{ +// Fan returns from ComponentPathAny the path struct for its child "fan". +func (n *ComponentPathAny) Fan() *Component_FanPathAny { + return &Component_FanPathAny{ NodePath: ygot.NewNodePath( []string{"fan"}, map[string]interface{}{}, @@ -35899,9 +35894,9 @@ func (n *ComponentAny) Fan() *Component_FanAny { } } -// FirmwareVersion returns from Component the path struct for its child "firmware-version". -func (n *Component) FirmwareVersion() *Component_FirmwareVersion { - return &Component_FirmwareVersion{ +// FirmwareVersion returns from ComponentPath the path struct for its child "firmware-version". +func (n *ComponentPath) FirmwareVersion() *Component_FirmwareVersionPath { + return &Component_FirmwareVersionPath{ NodePath: ygot.NewNodePath( []string{"state", "firmware-version"}, map[string]interface{}{}, @@ -35910,9 +35905,9 @@ func (n *Component) FirmwareVersion() *Component_FirmwareVersion { } } -// FirmwareVersion returns from ComponentAny the path struct for its child "firmware-version". -func (n *ComponentAny) FirmwareVersion() *Component_FirmwareVersionAny { - return &Component_FirmwareVersionAny{ +// FirmwareVersion returns from ComponentPathAny the path struct for its child "firmware-version". +func (n *ComponentPathAny) FirmwareVersion() *Component_FirmwareVersionPathAny { + return &Component_FirmwareVersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "firmware-version"}, map[string]interface{}{}, @@ -35921,9 +35916,9 @@ func (n *ComponentAny) FirmwareVersion() *Component_FirmwareVersionAny { } } -// HardwareVersion returns from Component the path struct for its child "hardware-version". -func (n *Component) HardwareVersion() *Component_HardwareVersion { - return &Component_HardwareVersion{ +// HardwareVersion returns from ComponentPath the path struct for its child "hardware-version". +func (n *ComponentPath) HardwareVersion() *Component_HardwareVersionPath { + return &Component_HardwareVersionPath{ NodePath: ygot.NewNodePath( []string{"state", "hardware-version"}, map[string]interface{}{}, @@ -35932,9 +35927,9 @@ func (n *Component) HardwareVersion() *Component_HardwareVersion { } } -// HardwareVersion returns from ComponentAny the path struct for its child "hardware-version". -func (n *ComponentAny) HardwareVersion() *Component_HardwareVersionAny { - return &Component_HardwareVersionAny{ +// HardwareVersion returns from ComponentPathAny the path struct for its child "hardware-version". +func (n *ComponentPathAny) HardwareVersion() *Component_HardwareVersionPathAny { + return &Component_HardwareVersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hardware-version"}, map[string]interface{}{}, @@ -35943,9 +35938,9 @@ func (n *ComponentAny) HardwareVersion() *Component_HardwareVersionAny { } } -// Id returns from Component the path struct for its child "id". -func (n *Component) Id() *Component_Id { - return &Component_Id{ +// Id returns from ComponentPath the path struct for its child "id". +func (n *ComponentPath) Id() *Component_IdPath { + return &Component_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -35954,9 +35949,9 @@ func (n *Component) Id() *Component_Id { } } -// Id returns from ComponentAny the path struct for its child "id". -func (n *ComponentAny) Id() *Component_IdAny { - return &Component_IdAny{ +// Id returns from ComponentPathAny the path struct for its child "id". +func (n *ComponentPathAny) Id() *Component_IdPathAny { + return &Component_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -35965,9 +35960,9 @@ func (n *ComponentAny) Id() *Component_IdAny { } } -// IntegratedCircuit returns from Component the path struct for its child "integrated-circuit". -func (n *Component) IntegratedCircuit() *Component_IntegratedCircuit { - return &Component_IntegratedCircuit{ +// IntegratedCircuit returns from ComponentPath the path struct for its child "integrated-circuit". +func (n *ComponentPath) IntegratedCircuit() *Component_IntegratedCircuitPath { + return &Component_IntegratedCircuitPath{ NodePath: ygot.NewNodePath( []string{"integrated-circuit"}, map[string]interface{}{}, @@ -35976,9 +35971,9 @@ func (n *Component) IntegratedCircuit() *Component_IntegratedCircuit { } } -// IntegratedCircuit returns from ComponentAny the path struct for its child "integrated-circuit". -func (n *ComponentAny) IntegratedCircuit() *Component_IntegratedCircuitAny { - return &Component_IntegratedCircuitAny{ +// IntegratedCircuit returns from ComponentPathAny the path struct for its child "integrated-circuit". +func (n *ComponentPathAny) IntegratedCircuit() *Component_IntegratedCircuitPathAny { + return &Component_IntegratedCircuitPathAny{ NodePath: ygot.NewNodePath( []string{"integrated-circuit"}, map[string]interface{}{}, @@ -35987,9 +35982,9 @@ func (n *ComponentAny) IntegratedCircuit() *Component_IntegratedCircuitAny { } } -// Location returns from Component the path struct for its child "location". -func (n *Component) Location() *Component_Location { - return &Component_Location{ +// Location returns from ComponentPath the path struct for its child "location". +func (n *ComponentPath) Location() *Component_LocationPath { + return &Component_LocationPath{ NodePath: ygot.NewNodePath( []string{"state", "location"}, map[string]interface{}{}, @@ -35998,9 +35993,9 @@ func (n *Component) Location() *Component_Location { } } -// Location returns from ComponentAny the path struct for its child "location". -func (n *ComponentAny) Location() *Component_LocationAny { - return &Component_LocationAny{ +// Location returns from ComponentPathAny the path struct for its child "location". +func (n *ComponentPathAny) Location() *Component_LocationPathAny { + return &Component_LocationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "location"}, map[string]interface{}{}, @@ -36009,9 +36004,9 @@ func (n *ComponentAny) Location() *Component_LocationAny { } } -// Memory returns from Component the path struct for its child "memory". -func (n *Component) Memory() *Component_Memory { - return &Component_Memory{ +// Memory returns from ComponentPath the path struct for its child "memory". +func (n *ComponentPath) Memory() *Component_MemoryPath { + return &Component_MemoryPath{ NodePath: ygot.NewNodePath( []string{"state", "memory"}, map[string]interface{}{}, @@ -36020,9 +36015,9 @@ func (n *Component) Memory() *Component_Memory { } } -// Memory returns from ComponentAny the path struct for its child "memory". -func (n *ComponentAny) Memory() *Component_MemoryAny { - return &Component_MemoryAny{ +// Memory returns from ComponentPathAny the path struct for its child "memory". +func (n *ComponentPathAny) Memory() *Component_MemoryPathAny { + return &Component_MemoryPathAny{ NodePath: ygot.NewNodePath( []string{"state", "memory"}, map[string]interface{}{}, @@ -36031,9 +36026,9 @@ func (n *ComponentAny) Memory() *Component_MemoryAny { } } -// MfgDate returns from Component the path struct for its child "mfg-date". -func (n *Component) MfgDate() *Component_MfgDate { - return &Component_MfgDate{ +// MfgDate returns from ComponentPath the path struct for its child "mfg-date". +func (n *ComponentPath) MfgDate() *Component_MfgDatePath { + return &Component_MfgDatePath{ NodePath: ygot.NewNodePath( []string{"state", "mfg-date"}, map[string]interface{}{}, @@ -36042,9 +36037,9 @@ func (n *Component) MfgDate() *Component_MfgDate { } } -// MfgDate returns from ComponentAny the path struct for its child "mfg-date". -func (n *ComponentAny) MfgDate() *Component_MfgDateAny { - return &Component_MfgDateAny{ +// MfgDate returns from ComponentPathAny the path struct for its child "mfg-date". +func (n *ComponentPathAny) MfgDate() *Component_MfgDatePathAny { + return &Component_MfgDatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "mfg-date"}, map[string]interface{}{}, @@ -36053,9 +36048,9 @@ func (n *ComponentAny) MfgDate() *Component_MfgDateAny { } } -// MfgName returns from Component the path struct for its child "mfg-name". -func (n *Component) MfgName() *Component_MfgName { - return &Component_MfgName{ +// MfgName returns from ComponentPath the path struct for its child "mfg-name". +func (n *ComponentPath) MfgName() *Component_MfgNamePath { + return &Component_MfgNamePath{ NodePath: ygot.NewNodePath( []string{"state", "mfg-name"}, map[string]interface{}{}, @@ -36064,9 +36059,9 @@ func (n *Component) MfgName() *Component_MfgName { } } -// MfgName returns from ComponentAny the path struct for its child "mfg-name". -func (n *ComponentAny) MfgName() *Component_MfgNameAny { - return &Component_MfgNameAny{ +// MfgName returns from ComponentPathAny the path struct for its child "mfg-name". +func (n *ComponentPathAny) MfgName() *Component_MfgNamePathAny { + return &Component_MfgNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "mfg-name"}, map[string]interface{}{}, @@ -36075,31 +36070,31 @@ func (n *ComponentAny) MfgName() *Component_MfgNameAny { } } -// Name returns from Component the path struct for its child "name". -func (n *Component) Name() *Component_Name { - return &Component_Name{ +// Name returns from ComponentPath the path struct for its child "name". +func (n *ComponentPath) Name() *Component_NamePath { + return &Component_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from ComponentAny the path struct for its child "name". -func (n *ComponentAny) Name() *Component_NameAny { - return &Component_NameAny{ +// Name returns from ComponentPathAny the path struct for its child "name". +func (n *ComponentPathAny) Name() *Component_NamePathAny { + return &Component_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// OperStatus returns from Component the path struct for its child "oper-status". -func (n *Component) OperStatus() *Component_OperStatus { - return &Component_OperStatus{ +// OperStatus returns from ComponentPath the path struct for its child "oper-status". +func (n *ComponentPath) OperStatus() *Component_OperStatusPath { + return &Component_OperStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -36108,9 +36103,9 @@ func (n *Component) OperStatus() *Component_OperStatus { } } -// OperStatus returns from ComponentAny the path struct for its child "oper-status". -func (n *ComponentAny) OperStatus() *Component_OperStatusAny { - return &Component_OperStatusAny{ +// OperStatus returns from ComponentPathAny the path struct for its child "oper-status". +func (n *ComponentPathAny) OperStatus() *Component_OperStatusPathAny { + return &Component_OperStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -36119,9 +36114,9 @@ func (n *ComponentAny) OperStatus() *Component_OperStatusAny { } } -// OpticalChannel returns from Component the path struct for its child "optical-channel". -func (n *Component) OpticalChannel() *Component_OpticalChannel { - return &Component_OpticalChannel{ +// OpticalChannel returns from ComponentPath the path struct for its child "optical-channel". +func (n *ComponentPath) OpticalChannel() *Component_OpticalChannelPath { + return &Component_OpticalChannelPath{ NodePath: ygot.NewNodePath( []string{"optical-channel"}, map[string]interface{}{}, @@ -36130,9 +36125,9 @@ func (n *Component) OpticalChannel() *Component_OpticalChannel { } } -// OpticalChannel returns from ComponentAny the path struct for its child "optical-channel". -func (n *ComponentAny) OpticalChannel() *Component_OpticalChannelAny { - return &Component_OpticalChannelAny{ +// OpticalChannel returns from ComponentPathAny the path struct for its child "optical-channel". +func (n *ComponentPathAny) OpticalChannel() *Component_OpticalChannelPathAny { + return &Component_OpticalChannelPathAny{ NodePath: ygot.NewNodePath( []string{"optical-channel"}, map[string]interface{}{}, @@ -36141,9 +36136,9 @@ func (n *ComponentAny) OpticalChannel() *Component_OpticalChannelAny { } } -// Parent returns from Component the path struct for its child "parent". -func (n *Component) Parent() *Component_Parent { - return &Component_Parent{ +// Parent returns from ComponentPath the path struct for its child "parent". +func (n *ComponentPath) Parent() *Component_ParentPath { + return &Component_ParentPath{ NodePath: ygot.NewNodePath( []string{"state", "parent"}, map[string]interface{}{}, @@ -36152,9 +36147,9 @@ func (n *Component) Parent() *Component_Parent { } } -// Parent returns from ComponentAny the path struct for its child "parent". -func (n *ComponentAny) Parent() *Component_ParentAny { - return &Component_ParentAny{ +// Parent returns from ComponentPathAny the path struct for its child "parent". +func (n *ComponentPathAny) Parent() *Component_ParentPathAny { + return &Component_ParentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "parent"}, map[string]interface{}{}, @@ -36163,9 +36158,9 @@ func (n *ComponentAny) Parent() *Component_ParentAny { } } -// PartNo returns from Component the path struct for its child "part-no". -func (n *Component) PartNo() *Component_PartNo { - return &Component_PartNo{ +// PartNo returns from ComponentPath the path struct for its child "part-no". +func (n *ComponentPath) PartNo() *Component_PartNoPath { + return &Component_PartNoPath{ NodePath: ygot.NewNodePath( []string{"state", "part-no"}, map[string]interface{}{}, @@ -36174,9 +36169,9 @@ func (n *Component) PartNo() *Component_PartNo { } } -// PartNo returns from ComponentAny the path struct for its child "part-no". -func (n *ComponentAny) PartNo() *Component_PartNoAny { - return &Component_PartNoAny{ +// PartNo returns from ComponentPathAny the path struct for its child "part-no". +func (n *ComponentPathAny) PartNo() *Component_PartNoPathAny { + return &Component_PartNoPathAny{ NodePath: ygot.NewNodePath( []string{"state", "part-no"}, map[string]interface{}{}, @@ -36185,9 +36180,9 @@ func (n *ComponentAny) PartNo() *Component_PartNoAny { } } -// Port returns from Component the path struct for its child "port". -func (n *Component) Port() *Component_Port { - return &Component_Port{ +// Port returns from ComponentPath the path struct for its child "port". +func (n *ComponentPath) Port() *Component_PortPath { + return &Component_PortPath{ NodePath: ygot.NewNodePath( []string{"port"}, map[string]interface{}{}, @@ -36196,9 +36191,9 @@ func (n *Component) Port() *Component_Port { } } -// Port returns from ComponentAny the path struct for its child "port". -func (n *ComponentAny) Port() *Component_PortAny { - return &Component_PortAny{ +// Port returns from ComponentPathAny the path struct for its child "port". +func (n *ComponentPathAny) Port() *Component_PortPathAny { + return &Component_PortPathAny{ NodePath: ygot.NewNodePath( []string{"port"}, map[string]interface{}{}, @@ -36207,9 +36202,9 @@ func (n *ComponentAny) Port() *Component_PortAny { } } -// PowerSupply returns from Component the path struct for its child "power-supply". -func (n *Component) PowerSupply() *Component_PowerSupply { - return &Component_PowerSupply{ +// PowerSupply returns from ComponentPath the path struct for its child "power-supply". +func (n *ComponentPath) PowerSupply() *Component_PowerSupplyPath { + return &Component_PowerSupplyPath{ NodePath: ygot.NewNodePath( []string{"power-supply"}, map[string]interface{}{}, @@ -36218,9 +36213,9 @@ func (n *Component) PowerSupply() *Component_PowerSupply { } } -// PowerSupply returns from ComponentAny the path struct for its child "power-supply". -func (n *ComponentAny) PowerSupply() *Component_PowerSupplyAny { - return &Component_PowerSupplyAny{ +// PowerSupply returns from ComponentPathAny the path struct for its child "power-supply". +func (n *ComponentPathAny) PowerSupply() *Component_PowerSupplyPathAny { + return &Component_PowerSupplyPathAny{ NodePath: ygot.NewNodePath( []string{"power-supply"}, map[string]interface{}{}, @@ -36229,9 +36224,9 @@ func (n *ComponentAny) PowerSupply() *Component_PowerSupplyAny { } } -// PropertyAny returns from Component the path struct for its child "property". -func (n *Component) PropertyAny() *Component_PropertyAny { - return &Component_PropertyAny{ +// PropertyAny returns from ComponentPath the path struct for its child "property". +func (n *ComponentPath) PropertyAny() *Component_PropertyPathAny { + return &Component_PropertyPathAny{ NodePath: ygot.NewNodePath( []string{"properties", "property"}, map[string]interface{}{"name": "*"}, @@ -36240,9 +36235,9 @@ func (n *Component) PropertyAny() *Component_PropertyAny { } } -// PropertyAny returns from ComponentAny the path struct for its child "property". -func (n *ComponentAny) PropertyAny() *Component_PropertyAny { - return &Component_PropertyAny{ +// PropertyAny returns from ComponentPathAny the path struct for its child "property". +func (n *ComponentPathAny) PropertyAny() *Component_PropertyPathAny { + return &Component_PropertyPathAny{ NodePath: ygot.NewNodePath( []string{"properties", "property"}, map[string]interface{}{"name": "*"}, @@ -36251,9 +36246,9 @@ func (n *ComponentAny) PropertyAny() *Component_PropertyAny { } } -// Property returns from Component the path struct for its child "property". -func (n *Component) Property(Name string) *Component_Property { - return &Component_Property{ +// Property returns from ComponentPath the path struct for its child "property". +func (n *ComponentPath) Property(Name string) *Component_PropertyPath { + return &Component_PropertyPath{ NodePath: ygot.NewNodePath( []string{"properties", "property"}, map[string]interface{}{"name": Name}, @@ -36262,9 +36257,9 @@ func (n *Component) Property(Name string) *Component_Property { } } -// Property returns from ComponentAny the path struct for its child "property". -func (n *ComponentAny) Property(Name string) *Component_PropertyAny { - return &Component_PropertyAny{ +// Property returns from ComponentPathAny the path struct for its child "property". +func (n *ComponentPathAny) Property(Name string) *Component_PropertyPathAny { + return &Component_PropertyPathAny{ NodePath: ygot.NewNodePath( []string{"properties", "property"}, map[string]interface{}{"name": Name}, @@ -36273,9 +36268,9 @@ func (n *ComponentAny) Property(Name string) *Component_PropertyAny { } } -// Removable returns from Component the path struct for its child "removable". -func (n *Component) Removable() *Component_Removable { - return &Component_Removable{ +// Removable returns from ComponentPath the path struct for its child "removable". +func (n *ComponentPath) Removable() *Component_RemovablePath { + return &Component_RemovablePath{ NodePath: ygot.NewNodePath( []string{"state", "removable"}, map[string]interface{}{}, @@ -36284,9 +36279,9 @@ func (n *Component) Removable() *Component_Removable { } } -// Removable returns from ComponentAny the path struct for its child "removable". -func (n *ComponentAny) Removable() *Component_RemovableAny { - return &Component_RemovableAny{ +// Removable returns from ComponentPathAny the path struct for its child "removable". +func (n *ComponentPathAny) Removable() *Component_RemovablePathAny { + return &Component_RemovablePathAny{ NodePath: ygot.NewNodePath( []string{"state", "removable"}, map[string]interface{}{}, @@ -36295,9 +36290,9 @@ func (n *ComponentAny) Removable() *Component_RemovableAny { } } -// SerialNo returns from Component the path struct for its child "serial-no". -func (n *Component) SerialNo() *Component_SerialNo { - return &Component_SerialNo{ +// SerialNo returns from ComponentPath the path struct for its child "serial-no". +func (n *ComponentPath) SerialNo() *Component_SerialNoPath { + return &Component_SerialNoPath{ NodePath: ygot.NewNodePath( []string{"state", "serial-no"}, map[string]interface{}{}, @@ -36306,9 +36301,9 @@ func (n *Component) SerialNo() *Component_SerialNo { } } -// SerialNo returns from ComponentAny the path struct for its child "serial-no". -func (n *ComponentAny) SerialNo() *Component_SerialNoAny { - return &Component_SerialNoAny{ +// SerialNo returns from ComponentPathAny the path struct for its child "serial-no". +func (n *ComponentPathAny) SerialNo() *Component_SerialNoPathAny { + return &Component_SerialNoPathAny{ NodePath: ygot.NewNodePath( []string{"state", "serial-no"}, map[string]interface{}{}, @@ -36317,9 +36312,9 @@ func (n *ComponentAny) SerialNo() *Component_SerialNoAny { } } -// SoftwareVersion returns from Component the path struct for its child "software-version". -func (n *Component) SoftwareVersion() *Component_SoftwareVersion { - return &Component_SoftwareVersion{ +// SoftwareVersion returns from ComponentPath the path struct for its child "software-version". +func (n *ComponentPath) SoftwareVersion() *Component_SoftwareVersionPath { + return &Component_SoftwareVersionPath{ NodePath: ygot.NewNodePath( []string{"state", "software-version"}, map[string]interface{}{}, @@ -36328,9 +36323,9 @@ func (n *Component) SoftwareVersion() *Component_SoftwareVersion { } } -// SoftwareVersion returns from ComponentAny the path struct for its child "software-version". -func (n *ComponentAny) SoftwareVersion() *Component_SoftwareVersionAny { - return &Component_SoftwareVersionAny{ +// SoftwareVersion returns from ComponentPathAny the path struct for its child "software-version". +func (n *ComponentPathAny) SoftwareVersion() *Component_SoftwareVersionPathAny { + return &Component_SoftwareVersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "software-version"}, map[string]interface{}{}, @@ -36339,9 +36334,9 @@ func (n *ComponentAny) SoftwareVersion() *Component_SoftwareVersionAny { } } -// Storage returns from Component the path struct for its child "storage". -func (n *Component) Storage() *Component_Storage { - return &Component_Storage{ +// Storage returns from ComponentPath the path struct for its child "storage". +func (n *ComponentPath) Storage() *Component_StoragePath { + return &Component_StoragePath{ NodePath: ygot.NewNodePath( []string{"storage"}, map[string]interface{}{}, @@ -36350,9 +36345,9 @@ func (n *Component) Storage() *Component_Storage { } } -// Storage returns from ComponentAny the path struct for its child "storage". -func (n *ComponentAny) Storage() *Component_StorageAny { - return &Component_StorageAny{ +// Storage returns from ComponentPathAny the path struct for its child "storage". +func (n *ComponentPathAny) Storage() *Component_StoragePathAny { + return &Component_StoragePathAny{ NodePath: ygot.NewNodePath( []string{"storage"}, map[string]interface{}{}, @@ -36361,9 +36356,9 @@ func (n *ComponentAny) Storage() *Component_StorageAny { } } -// SubcomponentAny returns from Component the path struct for its child "subcomponent". -func (n *Component) SubcomponentAny() *Component_SubcomponentAny { - return &Component_SubcomponentAny{ +// SubcomponentAny returns from ComponentPath the path struct for its child "subcomponent". +func (n *ComponentPath) SubcomponentAny() *Component_SubcomponentPathAny { + return &Component_SubcomponentPathAny{ NodePath: ygot.NewNodePath( []string{"subcomponents", "subcomponent"}, map[string]interface{}{"name": "*"}, @@ -36372,9 +36367,9 @@ func (n *Component) SubcomponentAny() *Component_SubcomponentAny { } } -// SubcomponentAny returns from ComponentAny the path struct for its child "subcomponent". -func (n *ComponentAny) SubcomponentAny() *Component_SubcomponentAny { - return &Component_SubcomponentAny{ +// SubcomponentAny returns from ComponentPathAny the path struct for its child "subcomponent". +func (n *ComponentPathAny) SubcomponentAny() *Component_SubcomponentPathAny { + return &Component_SubcomponentPathAny{ NodePath: ygot.NewNodePath( []string{"subcomponents", "subcomponent"}, map[string]interface{}{"name": "*"}, @@ -36383,9 +36378,9 @@ func (n *ComponentAny) SubcomponentAny() *Component_SubcomponentAny { } } -// Subcomponent returns from Component the path struct for its child "subcomponent". -func (n *Component) Subcomponent(Name string) *Component_Subcomponent { - return &Component_Subcomponent{ +// Subcomponent returns from ComponentPath the path struct for its child "subcomponent". +func (n *ComponentPath) Subcomponent(Name string) *Component_SubcomponentPath { + return &Component_SubcomponentPath{ NodePath: ygot.NewNodePath( []string{"subcomponents", "subcomponent"}, map[string]interface{}{"name": Name}, @@ -36394,9 +36389,9 @@ func (n *Component) Subcomponent(Name string) *Component_Subcomponent { } } -// Subcomponent returns from ComponentAny the path struct for its child "subcomponent". -func (n *ComponentAny) Subcomponent(Name string) *Component_SubcomponentAny { - return &Component_SubcomponentAny{ +// Subcomponent returns from ComponentPathAny the path struct for its child "subcomponent". +func (n *ComponentPathAny) Subcomponent(Name string) *Component_SubcomponentPathAny { + return &Component_SubcomponentPathAny{ NodePath: ygot.NewNodePath( []string{"subcomponents", "subcomponent"}, map[string]interface{}{"name": Name}, @@ -36405,9 +36400,9 @@ func (n *ComponentAny) Subcomponent(Name string) *Component_SubcomponentAny { } } -// Temperature returns from Component the path struct for its child "temperature". -func (n *Component) Temperature() *Component_Temperature { - return &Component_Temperature{ +// Temperature returns from ComponentPath the path struct for its child "temperature". +func (n *ComponentPath) Temperature() *Component_TemperaturePath { + return &Component_TemperaturePath{ NodePath: ygot.NewNodePath( []string{"state", "temperature"}, map[string]interface{}{}, @@ -36416,9 +36411,9 @@ func (n *Component) Temperature() *Component_Temperature { } } -// Temperature returns from ComponentAny the path struct for its child "temperature". -func (n *ComponentAny) Temperature() *Component_TemperatureAny { - return &Component_TemperatureAny{ +// Temperature returns from ComponentPathAny the path struct for its child "temperature". +func (n *ComponentPathAny) Temperature() *Component_TemperaturePathAny { + return &Component_TemperaturePathAny{ NodePath: ygot.NewNodePath( []string{"state", "temperature"}, map[string]interface{}{}, @@ -36427,9 +36422,9 @@ func (n *ComponentAny) Temperature() *Component_TemperatureAny { } } -// Transceiver returns from Component the path struct for its child "transceiver". -func (n *Component) Transceiver() *Component_Transceiver { - return &Component_Transceiver{ +// Transceiver returns from ComponentPath the path struct for its child "transceiver". +func (n *ComponentPath) Transceiver() *Component_TransceiverPath { + return &Component_TransceiverPath{ NodePath: ygot.NewNodePath( []string{"transceiver"}, map[string]interface{}{}, @@ -36438,9 +36433,9 @@ func (n *Component) Transceiver() *Component_Transceiver { } } -// Transceiver returns from ComponentAny the path struct for its child "transceiver". -func (n *ComponentAny) Transceiver() *Component_TransceiverAny { - return &Component_TransceiverAny{ +// Transceiver returns from ComponentPathAny the path struct for its child "transceiver". +func (n *ComponentPathAny) Transceiver() *Component_TransceiverPathAny { + return &Component_TransceiverPathAny{ NodePath: ygot.NewNodePath( []string{"transceiver"}, map[string]interface{}{}, @@ -36449,9 +36444,9 @@ func (n *ComponentAny) Transceiver() *Component_TransceiverAny { } } -// Type returns from Component the path struct for its child "type". -func (n *Component) Type() *Component_Type { - return &Component_Type{ +// Type returns from ComponentPath the path struct for its child "type". +func (n *ComponentPath) Type() *Component_TypePath { + return &Component_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -36460,9 +36455,9 @@ func (n *Component) Type() *Component_Type { } } -// Type returns from ComponentAny the path struct for its child "type". -func (n *ComponentAny) Type() *Component_TypeAny { - return &Component_TypeAny{ +// Type returns from ComponentPathAny the path struct for its child "type". +func (n *ComponentPathAny) Type() *Component_TypePathAny { + return &Component_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -36471,9 +36466,9 @@ func (n *ComponentAny) Type() *Component_TypeAny { } } -// UsedPower returns from Component the path struct for its child "used-power". -func (n *Component) UsedPower() *Component_UsedPower { - return &Component_UsedPower{ +// UsedPower returns from ComponentPath the path struct for its child "used-power". +func (n *ComponentPath) UsedPower() *Component_UsedPowerPath { + return &Component_UsedPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "used-power"}, map[string]interface{}{}, @@ -36482,9 +36477,9 @@ func (n *Component) UsedPower() *Component_UsedPower { } } -// UsedPower returns from ComponentAny the path struct for its child "used-power". -func (n *ComponentAny) UsedPower() *Component_UsedPowerAny { - return &Component_UsedPowerAny{ +// UsedPower returns from ComponentPathAny the path struct for its child "used-power". +func (n *ComponentPathAny) UsedPower() *Component_UsedPowerPathAny { + return &Component_UsedPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "used-power"}, map[string]interface{}{}, @@ -36493,99 +36488,99 @@ func (n *ComponentAny) UsedPower() *Component_UsedPowerAny { } } -// Component_Backplane represents the /openconfig-platform/components/component/backplane YANG schema element. -type Component_Backplane struct { +// Component_BackplanePath represents the /openconfig-platform/components/component/backplane YANG schema element. +type Component_BackplanePath struct { *ygot.NodePath } -// Component_BackplaneAny represents the wildcard version of the /openconfig-platform/components/component/backplane YANG schema element. -type Component_BackplaneAny struct { +// Component_BackplanePathAny represents the wildcard version of the /openconfig-platform/components/component/backplane YANG schema element. +type Component_BackplanePathAny struct { *ygot.NodePath } -// Component_Chassis represents the /openconfig-platform/components/component/chassis YANG schema element. -type Component_Chassis struct { +// Component_ChassisPath represents the /openconfig-platform/components/component/chassis YANG schema element. +type Component_ChassisPath struct { *ygot.NodePath } -// Component_ChassisAny represents the wildcard version of the /openconfig-platform/components/component/chassis YANG schema element. -type Component_ChassisAny struct { +// Component_ChassisPathAny represents the wildcard version of the /openconfig-platform/components/component/chassis YANG schema element. +type Component_ChassisPathAny struct { *ygot.NodePath } -// Component_Cpu represents the /openconfig-platform/components/component/cpu YANG schema element. -type Component_Cpu struct { +// Component_CpuPath represents the /openconfig-platform/components/component/cpu YANG schema element. +type Component_CpuPath struct { *ygot.NodePath } -// Component_CpuAny represents the wildcard version of the /openconfig-platform/components/component/cpu YANG schema element. -type Component_CpuAny struct { +// Component_CpuPathAny represents the wildcard version of the /openconfig-platform/components/component/cpu YANG schema element. +type Component_CpuPathAny struct { *ygot.NodePath } -// Component_Fabric represents the /openconfig-platform/components/component/fabric YANG schema element. -type Component_Fabric struct { +// Component_FabricPath represents the /openconfig-platform/components/component/fabric YANG schema element. +type Component_FabricPath struct { *ygot.NodePath } -// Component_FabricAny represents the wildcard version of the /openconfig-platform/components/component/fabric YANG schema element. -type Component_FabricAny struct { +// Component_FabricPathAny represents the wildcard version of the /openconfig-platform/components/component/fabric YANG schema element. +type Component_FabricPathAny struct { *ygot.NodePath } -// Component_Fan represents the /openconfig-platform/components/component/fan YANG schema element. -type Component_Fan struct { +// Component_FanPath represents the /openconfig-platform/components/component/fan YANG schema element. +type Component_FanPath struct { *ygot.NodePath } -// Component_FanAny represents the wildcard version of the /openconfig-platform/components/component/fan YANG schema element. -type Component_FanAny struct { +// Component_FanPathAny represents the wildcard version of the /openconfig-platform/components/component/fan YANG schema element. +type Component_FanPathAny struct { *ygot.NodePath } -// Component_IntegratedCircuit represents the /openconfig-platform/components/component/integrated-circuit YANG schema element. -type Component_IntegratedCircuit struct { +// Component_IntegratedCircuitPath represents the /openconfig-platform/components/component/integrated-circuit YANG schema element. +type Component_IntegratedCircuitPath struct { *ygot.NodePath } -// Component_IntegratedCircuitAny represents the wildcard version of the /openconfig-platform/components/component/integrated-circuit YANG schema element. -type Component_IntegratedCircuitAny struct { +// Component_IntegratedCircuitPathAny represents the wildcard version of the /openconfig-platform/components/component/integrated-circuit YANG schema element. +type Component_IntegratedCircuitPathAny struct { *ygot.NodePath } -// Component_Memory represents the /openconfig-platform/components/component/state/memory YANG schema element. -type Component_Memory struct { +// Component_MemoryPath represents the /openconfig-platform/components/component/state/memory YANG schema element. +type Component_MemoryPath struct { *ygot.NodePath } -// Component_MemoryAny represents the wildcard version of the /openconfig-platform/components/component/state/memory YANG schema element. -type Component_MemoryAny struct { +// Component_MemoryPathAny represents the wildcard version of the /openconfig-platform/components/component/state/memory YANG schema element. +type Component_MemoryPathAny struct { *ygot.NodePath } -// Component_Memory_Available represents the /openconfig-platform/components/component/state/memory/available YANG schema element. -type Component_Memory_Available struct { +// Component_Memory_AvailablePath represents the /openconfig-platform/components/component/state/memory/available YANG schema element. +type Component_Memory_AvailablePath struct { *ygot.NodePath } -// Component_Memory_AvailableAny represents the wildcard version of the /openconfig-platform/components/component/state/memory/available YANG schema element. -type Component_Memory_AvailableAny struct { +// Component_Memory_AvailablePathAny represents the wildcard version of the /openconfig-platform/components/component/state/memory/available YANG schema element. +type Component_Memory_AvailablePathAny struct { *ygot.NodePath } -// Component_Memory_Utilized represents the /openconfig-platform/components/component/state/memory/utilized YANG schema element. -type Component_Memory_Utilized struct { +// Component_Memory_UtilizedPath represents the /openconfig-platform/components/component/state/memory/utilized YANG schema element. +type Component_Memory_UtilizedPath struct { *ygot.NodePath } -// Component_Memory_UtilizedAny represents the wildcard version of the /openconfig-platform/components/component/state/memory/utilized YANG schema element. -type Component_Memory_UtilizedAny struct { +// Component_Memory_UtilizedPathAny represents the wildcard version of the /openconfig-platform/components/component/state/memory/utilized YANG schema element. +type Component_Memory_UtilizedPathAny struct { *ygot.NodePath } -// Available returns from Component_Memory the path struct for its child "available". -func (n *Component_Memory) Available() *Component_Memory_Available { - return &Component_Memory_Available{ +// Available returns from Component_MemoryPath the path struct for its child "available". +func (n *Component_MemoryPath) Available() *Component_Memory_AvailablePath { + return &Component_Memory_AvailablePath{ NodePath: ygot.NewNodePath( []string{"available"}, map[string]interface{}{}, @@ -36594,9 +36589,9 @@ func (n *Component_Memory) Available() *Component_Memory_Available { } } -// Available returns from Component_MemoryAny the path struct for its child "available". -func (n *Component_MemoryAny) Available() *Component_Memory_AvailableAny { - return &Component_Memory_AvailableAny{ +// Available returns from Component_MemoryPathAny the path struct for its child "available". +func (n *Component_MemoryPathAny) Available() *Component_Memory_AvailablePathAny { + return &Component_Memory_AvailablePathAny{ NodePath: ygot.NewNodePath( []string{"available"}, map[string]interface{}{}, @@ -36605,9 +36600,9 @@ func (n *Component_MemoryAny) Available() *Component_Memory_AvailableAny { } } -// Utilized returns from Component_Memory the path struct for its child "utilized". -func (n *Component_Memory) Utilized() *Component_Memory_Utilized { - return &Component_Memory_Utilized{ +// Utilized returns from Component_MemoryPath the path struct for its child "utilized". +func (n *Component_MemoryPath) Utilized() *Component_Memory_UtilizedPath { + return &Component_Memory_UtilizedPath{ NodePath: ygot.NewNodePath( []string{"utilized"}, map[string]interface{}{}, @@ -36616,9 +36611,9 @@ func (n *Component_Memory) Utilized() *Component_Memory_Utilized { } } -// Utilized returns from Component_MemoryAny the path struct for its child "utilized". -func (n *Component_MemoryAny) Utilized() *Component_Memory_UtilizedAny { - return &Component_Memory_UtilizedAny{ +// Utilized returns from Component_MemoryPathAny the path struct for its child "utilized". +func (n *Component_MemoryPathAny) Utilized() *Component_Memory_UtilizedPathAny { + return &Component_Memory_UtilizedPathAny{ NodePath: ygot.NewNodePath( []string{"utilized"}, map[string]interface{}{}, @@ -36627,69 +36622,69 @@ func (n *Component_MemoryAny) Utilized() *Component_Memory_UtilizedAny { } } -// Component_OpticalChannel represents the /openconfig-platform/components/component/optical-channel YANG schema element. -type Component_OpticalChannel struct { +// Component_OpticalChannelPath represents the /openconfig-platform/components/component/optical-channel YANG schema element. +type Component_OpticalChannelPath struct { *ygot.NodePath } -// Component_OpticalChannelAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel YANG schema element. -type Component_OpticalChannelAny struct { +// Component_OpticalChannelPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel YANG schema element. +type Component_OpticalChannelPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_Frequency represents the /openconfig-platform/components/component/optical-channel/state/frequency YANG schema element. -type Component_OpticalChannel_Frequency struct { +// Component_OpticalChannel_FrequencyPath represents the /openconfig-platform/components/component/optical-channel/config/frequency YANG schema element. +type Component_OpticalChannel_FrequencyPath struct { *ygot.NodePath } -// Component_OpticalChannel_FrequencyAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/frequency YANG schema element. -type Component_OpticalChannel_FrequencyAny struct { +// Component_OpticalChannel_FrequencyPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/config/frequency YANG schema element. +type Component_OpticalChannel_FrequencyPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_GroupId represents the /openconfig-platform/components/component/optical-channel/state/group-id YANG schema element. -type Component_OpticalChannel_GroupId struct { +// Component_OpticalChannel_GroupIdPath represents the /openconfig-platform/components/component/optical-channel/state/group-id YANG schema element. +type Component_OpticalChannel_GroupIdPath struct { *ygot.NodePath } -// Component_OpticalChannel_GroupIdAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/group-id YANG schema element. -type Component_OpticalChannel_GroupIdAny struct { +// Component_OpticalChannel_GroupIdPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/group-id YANG schema element. +type Component_OpticalChannel_GroupIdPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LinePort represents the /openconfig-platform/components/component/optical-channel/state/line-port YANG schema element. -type Component_OpticalChannel_LinePort struct { +// Component_OpticalChannel_LinePortPath represents the /openconfig-platform/components/component/optical-channel/config/line-port YANG schema element. +type Component_OpticalChannel_LinePortPath struct { *ygot.NodePath } -// Component_OpticalChannel_LinePortAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/line-port YANG schema element. -type Component_OpticalChannel_LinePortAny struct { +// Component_OpticalChannel_LinePortPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/config/line-port YANG schema element. +type Component_OpticalChannel_LinePortPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OperationalMode represents the /openconfig-platform/components/component/optical-channel/state/operational-mode YANG schema element. -type Component_OpticalChannel_OperationalMode struct { +// Component_OpticalChannel_OperationalModePath represents the /openconfig-platform/components/component/optical-channel/config/operational-mode YANG schema element. +type Component_OpticalChannel_OperationalModePath struct { *ygot.NodePath } -// Component_OpticalChannel_OperationalModeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/operational-mode YANG schema element. -type Component_OpticalChannel_OperationalModeAny struct { +// Component_OpticalChannel_OperationalModePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/config/operational-mode YANG schema element. +type Component_OpticalChannel_OperationalModePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_TargetOutputPower represents the /openconfig-platform/components/component/optical-channel/state/target-output-power YANG schema element. -type Component_OpticalChannel_TargetOutputPower struct { +// Component_OpticalChannel_TargetOutputPowerPath represents the /openconfig-platform/components/component/optical-channel/config/target-output-power YANG schema element. +type Component_OpticalChannel_TargetOutputPowerPath struct { *ygot.NodePath } -// Component_OpticalChannel_TargetOutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/target-output-power YANG schema element. -type Component_OpticalChannel_TargetOutputPowerAny struct { +// Component_OpticalChannel_TargetOutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/config/target-output-power YANG schema element. +type Component_OpticalChannel_TargetOutputPowerPathAny struct { *ygot.NodePath } -// ChromaticDispersion returns from Component_OpticalChannel the path struct for its child "chromatic-dispersion". -func (n *Component_OpticalChannel) ChromaticDispersion() *Component_OpticalChannel_ChromaticDispersion { - return &Component_OpticalChannel_ChromaticDispersion{ +// ChromaticDispersion returns from Component_OpticalChannelPath the path struct for its child "chromatic-dispersion". +func (n *Component_OpticalChannelPath) ChromaticDispersion() *Component_OpticalChannel_ChromaticDispersionPath { + return &Component_OpticalChannel_ChromaticDispersionPath{ NodePath: ygot.NewNodePath( []string{"state", "chromatic-dispersion"}, map[string]interface{}{}, @@ -36698,9 +36693,9 @@ func (n *Component_OpticalChannel) ChromaticDispersion() *Component_OpticalChann } } -// ChromaticDispersion returns from Component_OpticalChannelAny the path struct for its child "chromatic-dispersion". -func (n *Component_OpticalChannelAny) ChromaticDispersion() *Component_OpticalChannel_ChromaticDispersionAny { - return &Component_OpticalChannel_ChromaticDispersionAny{ +// ChromaticDispersion returns from Component_OpticalChannelPathAny the path struct for its child "chromatic-dispersion". +func (n *Component_OpticalChannelPathAny) ChromaticDispersion() *Component_OpticalChannel_ChromaticDispersionPathAny { + return &Component_OpticalChannel_ChromaticDispersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "chromatic-dispersion"}, map[string]interface{}{}, @@ -36709,31 +36704,31 @@ func (n *Component_OpticalChannelAny) ChromaticDispersion() *Component_OpticalCh } } -// Frequency returns from Component_OpticalChannel the path struct for its child "frequency". -func (n *Component_OpticalChannel) Frequency() *Component_OpticalChannel_Frequency { - return &Component_OpticalChannel_Frequency{ +// Frequency returns from Component_OpticalChannelPath the path struct for its child "frequency". +func (n *Component_OpticalChannelPath) Frequency() *Component_OpticalChannel_FrequencyPath { + return &Component_OpticalChannel_FrequencyPath{ NodePath: ygot.NewNodePath( - []string{"state", "frequency"}, + []string{"config", "frequency"}, map[string]interface{}{}, n, ), } } -// Frequency returns from Component_OpticalChannelAny the path struct for its child "frequency". -func (n *Component_OpticalChannelAny) Frequency() *Component_OpticalChannel_FrequencyAny { - return &Component_OpticalChannel_FrequencyAny{ +// Frequency returns from Component_OpticalChannelPathAny the path struct for its child "frequency". +func (n *Component_OpticalChannelPathAny) Frequency() *Component_OpticalChannel_FrequencyPathAny { + return &Component_OpticalChannel_FrequencyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "frequency"}, + []string{"config", "frequency"}, map[string]interface{}{}, n, ), } } -// GroupId returns from Component_OpticalChannel the path struct for its child "group-id". -func (n *Component_OpticalChannel) GroupId() *Component_OpticalChannel_GroupId { - return &Component_OpticalChannel_GroupId{ +// GroupId returns from Component_OpticalChannelPath the path struct for its child "group-id". +func (n *Component_OpticalChannelPath) GroupId() *Component_OpticalChannel_GroupIdPath { + return &Component_OpticalChannel_GroupIdPath{ NodePath: ygot.NewNodePath( []string{"state", "group-id"}, map[string]interface{}{}, @@ -36742,9 +36737,9 @@ func (n *Component_OpticalChannel) GroupId() *Component_OpticalChannel_GroupId { } } -// GroupId returns from Component_OpticalChannelAny the path struct for its child "group-id". -func (n *Component_OpticalChannelAny) GroupId() *Component_OpticalChannel_GroupIdAny { - return &Component_OpticalChannel_GroupIdAny{ +// GroupId returns from Component_OpticalChannelPathAny the path struct for its child "group-id". +func (n *Component_OpticalChannelPathAny) GroupId() *Component_OpticalChannel_GroupIdPathAny { + return &Component_OpticalChannel_GroupIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "group-id"}, map[string]interface{}{}, @@ -36753,9 +36748,9 @@ func (n *Component_OpticalChannelAny) GroupId() *Component_OpticalChannel_GroupI } } -// InputPower returns from Component_OpticalChannel the path struct for its child "input-power". -func (n *Component_OpticalChannel) InputPower() *Component_OpticalChannel_InputPower { - return &Component_OpticalChannel_InputPower{ +// InputPower returns from Component_OpticalChannelPath the path struct for its child "input-power". +func (n *Component_OpticalChannelPath) InputPower() *Component_OpticalChannel_InputPowerPath { + return &Component_OpticalChannel_InputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -36764,9 +36759,9 @@ func (n *Component_OpticalChannel) InputPower() *Component_OpticalChannel_InputP } } -// InputPower returns from Component_OpticalChannelAny the path struct for its child "input-power". -func (n *Component_OpticalChannelAny) InputPower() *Component_OpticalChannel_InputPowerAny { - return &Component_OpticalChannel_InputPowerAny{ +// InputPower returns from Component_OpticalChannelPathAny the path struct for its child "input-power". +func (n *Component_OpticalChannelPathAny) InputPower() *Component_OpticalChannel_InputPowerPathAny { + return &Component_OpticalChannel_InputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -36775,9 +36770,9 @@ func (n *Component_OpticalChannelAny) InputPower() *Component_OpticalChannel_Inp } } -// LaserBiasCurrent returns from Component_OpticalChannel the path struct for its child "laser-bias-current". -func (n *Component_OpticalChannel) LaserBiasCurrent() *Component_OpticalChannel_LaserBiasCurrent { - return &Component_OpticalChannel_LaserBiasCurrent{ +// LaserBiasCurrent returns from Component_OpticalChannelPath the path struct for its child "laser-bias-current". +func (n *Component_OpticalChannelPath) LaserBiasCurrent() *Component_OpticalChannel_LaserBiasCurrentPath { + return &Component_OpticalChannel_LaserBiasCurrentPath{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -36786,9 +36781,9 @@ func (n *Component_OpticalChannel) LaserBiasCurrent() *Component_OpticalChannel_ } } -// LaserBiasCurrent returns from Component_OpticalChannelAny the path struct for its child "laser-bias-current". -func (n *Component_OpticalChannelAny) LaserBiasCurrent() *Component_OpticalChannel_LaserBiasCurrentAny { - return &Component_OpticalChannel_LaserBiasCurrentAny{ +// LaserBiasCurrent returns from Component_OpticalChannelPathAny the path struct for its child "laser-bias-current". +func (n *Component_OpticalChannelPathAny) LaserBiasCurrent() *Component_OpticalChannel_LaserBiasCurrentPathAny { + return &Component_OpticalChannel_LaserBiasCurrentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -36797,53 +36792,53 @@ func (n *Component_OpticalChannelAny) LaserBiasCurrent() *Component_OpticalChann } } -// LinePort returns from Component_OpticalChannel the path struct for its child "line-port". -func (n *Component_OpticalChannel) LinePort() *Component_OpticalChannel_LinePort { - return &Component_OpticalChannel_LinePort{ +// LinePort returns from Component_OpticalChannelPath the path struct for its child "line-port". +func (n *Component_OpticalChannelPath) LinePort() *Component_OpticalChannel_LinePortPath { + return &Component_OpticalChannel_LinePortPath{ NodePath: ygot.NewNodePath( - []string{"state", "line-port"}, + []string{"config", "line-port"}, map[string]interface{}{}, n, ), } } -// LinePort returns from Component_OpticalChannelAny the path struct for its child "line-port". -func (n *Component_OpticalChannelAny) LinePort() *Component_OpticalChannel_LinePortAny { - return &Component_OpticalChannel_LinePortAny{ +// LinePort returns from Component_OpticalChannelPathAny the path struct for its child "line-port". +func (n *Component_OpticalChannelPathAny) LinePort() *Component_OpticalChannel_LinePortPathAny { + return &Component_OpticalChannel_LinePortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "line-port"}, + []string{"config", "line-port"}, map[string]interface{}{}, n, ), } } -// OperationalMode returns from Component_OpticalChannel the path struct for its child "operational-mode". -func (n *Component_OpticalChannel) OperationalMode() *Component_OpticalChannel_OperationalMode { - return &Component_OpticalChannel_OperationalMode{ +// OperationalMode returns from Component_OpticalChannelPath the path struct for its child "operational-mode". +func (n *Component_OpticalChannelPath) OperationalMode() *Component_OpticalChannel_OperationalModePath { + return &Component_OpticalChannel_OperationalModePath{ NodePath: ygot.NewNodePath( - []string{"state", "operational-mode"}, + []string{"config", "operational-mode"}, map[string]interface{}{}, n, ), } } -// OperationalMode returns from Component_OpticalChannelAny the path struct for its child "operational-mode". -func (n *Component_OpticalChannelAny) OperationalMode() *Component_OpticalChannel_OperationalModeAny { - return &Component_OpticalChannel_OperationalModeAny{ +// OperationalMode returns from Component_OpticalChannelPathAny the path struct for its child "operational-mode". +func (n *Component_OpticalChannelPathAny) OperationalMode() *Component_OpticalChannel_OperationalModePathAny { + return &Component_OpticalChannel_OperationalModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "operational-mode"}, + []string{"config", "operational-mode"}, map[string]interface{}{}, n, ), } } -// OutputPower returns from Component_OpticalChannel the path struct for its child "output-power". -func (n *Component_OpticalChannel) OutputPower() *Component_OpticalChannel_OutputPower { - return &Component_OpticalChannel_OutputPower{ +// OutputPower returns from Component_OpticalChannelPath the path struct for its child "output-power". +func (n *Component_OpticalChannelPath) OutputPower() *Component_OpticalChannel_OutputPowerPath { + return &Component_OpticalChannel_OutputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -36852,9 +36847,9 @@ func (n *Component_OpticalChannel) OutputPower() *Component_OpticalChannel_Outpu } } -// OutputPower returns from Component_OpticalChannelAny the path struct for its child "output-power". -func (n *Component_OpticalChannelAny) OutputPower() *Component_OpticalChannel_OutputPowerAny { - return &Component_OpticalChannel_OutputPowerAny{ +// OutputPower returns from Component_OpticalChannelPathAny the path struct for its child "output-power". +func (n *Component_OpticalChannelPathAny) OutputPower() *Component_OpticalChannel_OutputPowerPathAny { + return &Component_OpticalChannel_OutputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -36863,9 +36858,9 @@ func (n *Component_OpticalChannelAny) OutputPower() *Component_OpticalChannel_Ou } } -// PolarizationDependentLoss returns from Component_OpticalChannel the path struct for its child "polarization-dependent-loss". -func (n *Component_OpticalChannel) PolarizationDependentLoss() *Component_OpticalChannel_PolarizationDependentLoss { - return &Component_OpticalChannel_PolarizationDependentLoss{ +// PolarizationDependentLoss returns from Component_OpticalChannelPath the path struct for its child "polarization-dependent-loss". +func (n *Component_OpticalChannelPath) PolarizationDependentLoss() *Component_OpticalChannel_PolarizationDependentLossPath { + return &Component_OpticalChannel_PolarizationDependentLossPath{ NodePath: ygot.NewNodePath( []string{"state", "polarization-dependent-loss"}, map[string]interface{}{}, @@ -36874,9 +36869,9 @@ func (n *Component_OpticalChannel) PolarizationDependentLoss() *Component_Optica } } -// PolarizationDependentLoss returns from Component_OpticalChannelAny the path struct for its child "polarization-dependent-loss". -func (n *Component_OpticalChannelAny) PolarizationDependentLoss() *Component_OpticalChannel_PolarizationDependentLossAny { - return &Component_OpticalChannel_PolarizationDependentLossAny{ +// PolarizationDependentLoss returns from Component_OpticalChannelPathAny the path struct for its child "polarization-dependent-loss". +func (n *Component_OpticalChannelPathAny) PolarizationDependentLoss() *Component_OpticalChannel_PolarizationDependentLossPathAny { + return &Component_OpticalChannel_PolarizationDependentLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "polarization-dependent-loss"}, map[string]interface{}{}, @@ -36885,9 +36880,9 @@ func (n *Component_OpticalChannelAny) PolarizationDependentLoss() *Component_Opt } } -// PolarizationModeDispersion returns from Component_OpticalChannel the path struct for its child "polarization-mode-dispersion". -func (n *Component_OpticalChannel) PolarizationModeDispersion() *Component_OpticalChannel_PolarizationModeDispersion { - return &Component_OpticalChannel_PolarizationModeDispersion{ +// PolarizationModeDispersion returns from Component_OpticalChannelPath the path struct for its child "polarization-mode-dispersion". +func (n *Component_OpticalChannelPath) PolarizationModeDispersion() *Component_OpticalChannel_PolarizationModeDispersionPath { + return &Component_OpticalChannel_PolarizationModeDispersionPath{ NodePath: ygot.NewNodePath( []string{"state", "polarization-mode-dispersion"}, map[string]interface{}{}, @@ -36896,9 +36891,9 @@ func (n *Component_OpticalChannel) PolarizationModeDispersion() *Component_Optic } } -// PolarizationModeDispersion returns from Component_OpticalChannelAny the path struct for its child "polarization-mode-dispersion". -func (n *Component_OpticalChannelAny) PolarizationModeDispersion() *Component_OpticalChannel_PolarizationModeDispersionAny { - return &Component_OpticalChannel_PolarizationModeDispersionAny{ +// PolarizationModeDispersion returns from Component_OpticalChannelPathAny the path struct for its child "polarization-mode-dispersion". +func (n *Component_OpticalChannelPathAny) PolarizationModeDispersion() *Component_OpticalChannel_PolarizationModeDispersionPathAny { + return &Component_OpticalChannel_PolarizationModeDispersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "polarization-mode-dispersion"}, map[string]interface{}{}, @@ -36907,9 +36902,9 @@ func (n *Component_OpticalChannelAny) PolarizationModeDispersion() *Component_Op } } -// SecondOrderPolarizationModeDispersion returns from Component_OpticalChannel the path struct for its child "second-order-polarization-mode-dispersion". -func (n *Component_OpticalChannel) SecondOrderPolarizationModeDispersion() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion{ +// SecondOrderPolarizationModeDispersion returns from Component_OpticalChannelPath the path struct for its child "second-order-polarization-mode-dispersion". +func (n *Component_OpticalChannelPath) SecondOrderPolarizationModeDispersion() *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath{ NodePath: ygot.NewNodePath( []string{"state", "second-order-polarization-mode-dispersion"}, map[string]interface{}{}, @@ -36918,9 +36913,9 @@ func (n *Component_OpticalChannel) SecondOrderPolarizationModeDispersion() *Comp } } -// SecondOrderPolarizationModeDispersion returns from Component_OpticalChannelAny the path struct for its child "second-order-polarization-mode-dispersion". -func (n *Component_OpticalChannelAny) SecondOrderPolarizationModeDispersion() *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny{ +// SecondOrderPolarizationModeDispersion returns from Component_OpticalChannelPathAny the path struct for its child "second-order-polarization-mode-dispersion". +func (n *Component_OpticalChannelPathAny) SecondOrderPolarizationModeDispersion() *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "second-order-polarization-mode-dispersion"}, map[string]interface{}{}, @@ -36929,111 +36924,111 @@ func (n *Component_OpticalChannelAny) SecondOrderPolarizationModeDispersion() *C } } -// TargetOutputPower returns from Component_OpticalChannel the path struct for its child "target-output-power". -func (n *Component_OpticalChannel) TargetOutputPower() *Component_OpticalChannel_TargetOutputPower { - return &Component_OpticalChannel_TargetOutputPower{ +// TargetOutputPower returns from Component_OpticalChannelPath the path struct for its child "target-output-power". +func (n *Component_OpticalChannelPath) TargetOutputPower() *Component_OpticalChannel_TargetOutputPowerPath { + return &Component_OpticalChannel_TargetOutputPowerPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// TargetOutputPower returns from Component_OpticalChannelAny the path struct for its child "target-output-power". -func (n *Component_OpticalChannelAny) TargetOutputPower() *Component_OpticalChannel_TargetOutputPowerAny { - return &Component_OpticalChannel_TargetOutputPowerAny{ +// TargetOutputPower returns from Component_OpticalChannelPathAny the path struct for its child "target-output-power". +func (n *Component_OpticalChannelPathAny) TargetOutputPower() *Component_OpticalChannel_TargetOutputPowerPathAny { + return &Component_OpticalChannel_TargetOutputPowerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// Component_OpticalChannel_ChromaticDispersion represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion YANG schema element. -type Component_OpticalChannel_ChromaticDispersion struct { +// Component_OpticalChannel_ChromaticDispersionPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion YANG schema element. +type Component_OpticalChannel_ChromaticDispersionPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersionAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion YANG schema element. -type Component_OpticalChannel_ChromaticDispersionAny struct { +// Component_OpticalChannel_ChromaticDispersionPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion YANG schema element. +type Component_OpticalChannel_ChromaticDispersionPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_Avg represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/avg YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_Avg struct { +// Component_OpticalChannel_ChromaticDispersion_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/avg YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/avg YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_AvgAny struct { +// Component_OpticalChannel_ChromaticDispersion_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/avg YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_Instant represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/instant YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_Instant struct { +// Component_OpticalChannel_ChromaticDispersion_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/instant YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/instant YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_InstantAny struct { +// Component_OpticalChannel_ChromaticDispersion_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/instant YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_Interval represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/interval YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_Interval struct { +// Component_OpticalChannel_ChromaticDispersion_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/interval YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/interval YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_IntervalAny struct { +// Component_OpticalChannel_ChromaticDispersion_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/interval YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_Max represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_Max struct { +// Component_OpticalChannel_ChromaticDispersion_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MaxAny struct { +// Component_OpticalChannel_ChromaticDispersion_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max-time YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MaxTime struct { +// Component_OpticalChannel_ChromaticDispersion_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max-time YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max-time YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MaxTimeAny struct { +// Component_OpticalChannel_ChromaticDispersion_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/max-time YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_Min represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_Min struct { +// Component_OpticalChannel_ChromaticDispersion_MinPath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MinAny struct { +// Component_OpticalChannel_ChromaticDispersion_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MinTime represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min-time YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MinTime struct { +// Component_OpticalChannel_ChromaticDispersion_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min-time YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_ChromaticDispersion_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min-time YANG schema element. -type Component_OpticalChannel_ChromaticDispersion_MinTimeAny struct { +// Component_OpticalChannel_ChromaticDispersion_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/chromatic-dispersion/min-time YANG schema element. +type Component_OpticalChannel_ChromaticDispersion_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "avg". -func (n *Component_OpticalChannel_ChromaticDispersion) Avg() *Component_OpticalChannel_ChromaticDispersion_Avg { - return &Component_OpticalChannel_ChromaticDispersion_Avg{ +// Avg returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "avg". +func (n *Component_OpticalChannel_ChromaticDispersionPath) Avg() *Component_OpticalChannel_ChromaticDispersion_AvgPath { + return &Component_OpticalChannel_ChromaticDispersion_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37042,9 +37037,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) Avg() *Component_OpticalC } } -// Avg returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "avg". -func (n *Component_OpticalChannel_ChromaticDispersionAny) Avg() *Component_OpticalChannel_ChromaticDispersion_AvgAny { - return &Component_OpticalChannel_ChromaticDispersion_AvgAny{ +// Avg returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) Avg() *Component_OpticalChannel_ChromaticDispersion_AvgPathAny { + return &Component_OpticalChannel_ChromaticDispersion_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37053,9 +37048,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) Avg() *Component_Optic } } -// Instant returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "instant". -func (n *Component_OpticalChannel_ChromaticDispersion) Instant() *Component_OpticalChannel_ChromaticDispersion_Instant { - return &Component_OpticalChannel_ChromaticDispersion_Instant{ +// Instant returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "instant". +func (n *Component_OpticalChannel_ChromaticDispersionPath) Instant() *Component_OpticalChannel_ChromaticDispersion_InstantPath { + return &Component_OpticalChannel_ChromaticDispersion_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37064,9 +37059,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) Instant() *Component_Opti } } -// Instant returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "instant". -func (n *Component_OpticalChannel_ChromaticDispersionAny) Instant() *Component_OpticalChannel_ChromaticDispersion_InstantAny { - return &Component_OpticalChannel_ChromaticDispersion_InstantAny{ +// Instant returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) Instant() *Component_OpticalChannel_ChromaticDispersion_InstantPathAny { + return &Component_OpticalChannel_ChromaticDispersion_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37075,9 +37070,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) Instant() *Component_O } } -// Interval returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "interval". -func (n *Component_OpticalChannel_ChromaticDispersion) Interval() *Component_OpticalChannel_ChromaticDispersion_Interval { - return &Component_OpticalChannel_ChromaticDispersion_Interval{ +// Interval returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "interval". +func (n *Component_OpticalChannel_ChromaticDispersionPath) Interval() *Component_OpticalChannel_ChromaticDispersion_IntervalPath { + return &Component_OpticalChannel_ChromaticDispersion_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37086,9 +37081,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) Interval() *Component_Opt } } -// Interval returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "interval". -func (n *Component_OpticalChannel_ChromaticDispersionAny) Interval() *Component_OpticalChannel_ChromaticDispersion_IntervalAny { - return &Component_OpticalChannel_ChromaticDispersion_IntervalAny{ +// Interval returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) Interval() *Component_OpticalChannel_ChromaticDispersion_IntervalPathAny { + return &Component_OpticalChannel_ChromaticDispersion_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37097,9 +37092,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) Interval() *Component_ } } -// Max returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "max". -func (n *Component_OpticalChannel_ChromaticDispersion) Max() *Component_OpticalChannel_ChromaticDispersion_Max { - return &Component_OpticalChannel_ChromaticDispersion_Max{ +// Max returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "max". +func (n *Component_OpticalChannel_ChromaticDispersionPath) Max() *Component_OpticalChannel_ChromaticDispersion_MaxPath { + return &Component_OpticalChannel_ChromaticDispersion_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37108,9 +37103,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) Max() *Component_OpticalC } } -// Max returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "max". -func (n *Component_OpticalChannel_ChromaticDispersionAny) Max() *Component_OpticalChannel_ChromaticDispersion_MaxAny { - return &Component_OpticalChannel_ChromaticDispersion_MaxAny{ +// Max returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) Max() *Component_OpticalChannel_ChromaticDispersion_MaxPathAny { + return &Component_OpticalChannel_ChromaticDispersion_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37119,9 +37114,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) Max() *Component_Optic } } -// MaxTime returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "max-time". -func (n *Component_OpticalChannel_ChromaticDispersion) MaxTime() *Component_OpticalChannel_ChromaticDispersion_MaxTime { - return &Component_OpticalChannel_ChromaticDispersion_MaxTime{ +// MaxTime returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_ChromaticDispersionPath) MaxTime() *Component_OpticalChannel_ChromaticDispersion_MaxTimePath { + return &Component_OpticalChannel_ChromaticDispersion_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37130,9 +37125,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) MaxTime() *Component_Opti } } -// MaxTime returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_ChromaticDispersionAny) MaxTime() *Component_OpticalChannel_ChromaticDispersion_MaxTimeAny { - return &Component_OpticalChannel_ChromaticDispersion_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) MaxTime() *Component_OpticalChannel_ChromaticDispersion_MaxTimePathAny { + return &Component_OpticalChannel_ChromaticDispersion_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37141,9 +37136,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) MaxTime() *Component_O } } -// Min returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "min". -func (n *Component_OpticalChannel_ChromaticDispersion) Min() *Component_OpticalChannel_ChromaticDispersion_Min { - return &Component_OpticalChannel_ChromaticDispersion_Min{ +// Min returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "min". +func (n *Component_OpticalChannel_ChromaticDispersionPath) Min() *Component_OpticalChannel_ChromaticDispersion_MinPath { + return &Component_OpticalChannel_ChromaticDispersion_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37152,9 +37147,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) Min() *Component_OpticalC } } -// Min returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "min". -func (n *Component_OpticalChannel_ChromaticDispersionAny) Min() *Component_OpticalChannel_ChromaticDispersion_MinAny { - return &Component_OpticalChannel_ChromaticDispersion_MinAny{ +// Min returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) Min() *Component_OpticalChannel_ChromaticDispersion_MinPathAny { + return &Component_OpticalChannel_ChromaticDispersion_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37163,9 +37158,9 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) Min() *Component_Optic } } -// MinTime returns from Component_OpticalChannel_ChromaticDispersion the path struct for its child "min-time". -func (n *Component_OpticalChannel_ChromaticDispersion) MinTime() *Component_OpticalChannel_ChromaticDispersion_MinTime { - return &Component_OpticalChannel_ChromaticDispersion_MinTime{ +// MinTime returns from Component_OpticalChannel_ChromaticDispersionPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_ChromaticDispersionPath) MinTime() *Component_OpticalChannel_ChromaticDispersion_MinTimePath { + return &Component_OpticalChannel_ChromaticDispersion_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37174,9 +37169,9 @@ func (n *Component_OpticalChannel_ChromaticDispersion) MinTime() *Component_Opti } } -// MinTime returns from Component_OpticalChannel_ChromaticDispersionAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_ChromaticDispersionAny) MinTime() *Component_OpticalChannel_ChromaticDispersion_MinTimeAny { - return &Component_OpticalChannel_ChromaticDispersion_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_ChromaticDispersionPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_ChromaticDispersionPathAny) MinTime() *Component_OpticalChannel_ChromaticDispersion_MinTimePathAny { + return &Component_OpticalChannel_ChromaticDispersion_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37185,89 +37180,89 @@ func (n *Component_OpticalChannel_ChromaticDispersionAny) MinTime() *Component_O } } -// Component_OpticalChannel_InputPower represents the /openconfig-platform/components/component/optical-channel/state/input-power YANG schema element. -type Component_OpticalChannel_InputPower struct { +// Component_OpticalChannel_InputPowerPath represents the /openconfig-platform/components/component/optical-channel/state/input-power YANG schema element. +type Component_OpticalChannel_InputPowerPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPowerAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power YANG schema element. -type Component_OpticalChannel_InputPowerAny struct { +// Component_OpticalChannel_InputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power YANG schema element. +type Component_OpticalChannel_InputPowerPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_Avg represents the /openconfig-platform/components/component/optical-channel/state/input-power/avg YANG schema element. -type Component_OpticalChannel_InputPower_Avg struct { +// Component_OpticalChannel_InputPower_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/input-power/avg YANG schema element. +type Component_OpticalChannel_InputPower_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/avg YANG schema element. -type Component_OpticalChannel_InputPower_AvgAny struct { +// Component_OpticalChannel_InputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/avg YANG schema element. +type Component_OpticalChannel_InputPower_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_Instant represents the /openconfig-platform/components/component/optical-channel/state/input-power/instant YANG schema element. -type Component_OpticalChannel_InputPower_Instant struct { +// Component_OpticalChannel_InputPower_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/input-power/instant YANG schema element. +type Component_OpticalChannel_InputPower_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/instant YANG schema element. -type Component_OpticalChannel_InputPower_InstantAny struct { +// Component_OpticalChannel_InputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/instant YANG schema element. +type Component_OpticalChannel_InputPower_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_Interval represents the /openconfig-platform/components/component/optical-channel/state/input-power/interval YANG schema element. -type Component_OpticalChannel_InputPower_Interval struct { +// Component_OpticalChannel_InputPower_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/input-power/interval YANG schema element. +type Component_OpticalChannel_InputPower_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/interval YANG schema element. -type Component_OpticalChannel_InputPower_IntervalAny struct { +// Component_OpticalChannel_InputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/interval YANG schema element. +type Component_OpticalChannel_InputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_Max represents the /openconfig-platform/components/component/optical-channel/state/input-power/max YANG schema element. -type Component_OpticalChannel_InputPower_Max struct { +// Component_OpticalChannel_InputPower_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/input-power/max YANG schema element. +type Component_OpticalChannel_InputPower_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/max YANG schema element. -type Component_OpticalChannel_InputPower_MaxAny struct { +// Component_OpticalChannel_InputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/max YANG schema element. +type Component_OpticalChannel_InputPower_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/input-power/max-time YANG schema element. -type Component_OpticalChannel_InputPower_MaxTime struct { +// Component_OpticalChannel_InputPower_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/input-power/max-time YANG schema element. +type Component_OpticalChannel_InputPower_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/max-time YANG schema element. -type Component_OpticalChannel_InputPower_MaxTimeAny struct { +// Component_OpticalChannel_InputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/max-time YANG schema element. +type Component_OpticalChannel_InputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_Min represents the /openconfig-platform/components/component/optical-channel/state/input-power/min YANG schema element. -type Component_OpticalChannel_InputPower_Min struct { +// Component_OpticalChannel_InputPower_MinPath represents the /openconfig-platform/components/component/optical-channel/state/input-power/min YANG schema element. +type Component_OpticalChannel_InputPower_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/min YANG schema element. -type Component_OpticalChannel_InputPower_MinAny struct { +// Component_OpticalChannel_InputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/min YANG schema element. +type Component_OpticalChannel_InputPower_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MinTime represents the /openconfig-platform/components/component/optical-channel/state/input-power/min-time YANG schema element. -type Component_OpticalChannel_InputPower_MinTime struct { +// Component_OpticalChannel_InputPower_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/input-power/min-time YANG schema element. +type Component_OpticalChannel_InputPower_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_InputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/min-time YANG schema element. -type Component_OpticalChannel_InputPower_MinTimeAny struct { +// Component_OpticalChannel_InputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/input-power/min-time YANG schema element. +type Component_OpticalChannel_InputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_InputPower the path struct for its child "avg". -func (n *Component_OpticalChannel_InputPower) Avg() *Component_OpticalChannel_InputPower_Avg { - return &Component_OpticalChannel_InputPower_Avg{ +// Avg returns from Component_OpticalChannel_InputPowerPath the path struct for its child "avg". +func (n *Component_OpticalChannel_InputPowerPath) Avg() *Component_OpticalChannel_InputPower_AvgPath { + return &Component_OpticalChannel_InputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37276,9 +37271,9 @@ func (n *Component_OpticalChannel_InputPower) Avg() *Component_OpticalChannel_In } } -// Avg returns from Component_OpticalChannel_InputPowerAny the path struct for its child "avg". -func (n *Component_OpticalChannel_InputPowerAny) Avg() *Component_OpticalChannel_InputPower_AvgAny { - return &Component_OpticalChannel_InputPower_AvgAny{ +// Avg returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_InputPowerPathAny) Avg() *Component_OpticalChannel_InputPower_AvgPathAny { + return &Component_OpticalChannel_InputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37287,9 +37282,9 @@ func (n *Component_OpticalChannel_InputPowerAny) Avg() *Component_OpticalChannel } } -// Instant returns from Component_OpticalChannel_InputPower the path struct for its child "instant". -func (n *Component_OpticalChannel_InputPower) Instant() *Component_OpticalChannel_InputPower_Instant { - return &Component_OpticalChannel_InputPower_Instant{ +// Instant returns from Component_OpticalChannel_InputPowerPath the path struct for its child "instant". +func (n *Component_OpticalChannel_InputPowerPath) Instant() *Component_OpticalChannel_InputPower_InstantPath { + return &Component_OpticalChannel_InputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37298,9 +37293,9 @@ func (n *Component_OpticalChannel_InputPower) Instant() *Component_OpticalChanne } } -// Instant returns from Component_OpticalChannel_InputPowerAny the path struct for its child "instant". -func (n *Component_OpticalChannel_InputPowerAny) Instant() *Component_OpticalChannel_InputPower_InstantAny { - return &Component_OpticalChannel_InputPower_InstantAny{ +// Instant returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_InputPowerPathAny) Instant() *Component_OpticalChannel_InputPower_InstantPathAny { + return &Component_OpticalChannel_InputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37309,9 +37304,9 @@ func (n *Component_OpticalChannel_InputPowerAny) Instant() *Component_OpticalCha } } -// Interval returns from Component_OpticalChannel_InputPower the path struct for its child "interval". -func (n *Component_OpticalChannel_InputPower) Interval() *Component_OpticalChannel_InputPower_Interval { - return &Component_OpticalChannel_InputPower_Interval{ +// Interval returns from Component_OpticalChannel_InputPowerPath the path struct for its child "interval". +func (n *Component_OpticalChannel_InputPowerPath) Interval() *Component_OpticalChannel_InputPower_IntervalPath { + return &Component_OpticalChannel_InputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37320,9 +37315,9 @@ func (n *Component_OpticalChannel_InputPower) Interval() *Component_OpticalChann } } -// Interval returns from Component_OpticalChannel_InputPowerAny the path struct for its child "interval". -func (n *Component_OpticalChannel_InputPowerAny) Interval() *Component_OpticalChannel_InputPower_IntervalAny { - return &Component_OpticalChannel_InputPower_IntervalAny{ +// Interval returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_InputPowerPathAny) Interval() *Component_OpticalChannel_InputPower_IntervalPathAny { + return &Component_OpticalChannel_InputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37331,9 +37326,9 @@ func (n *Component_OpticalChannel_InputPowerAny) Interval() *Component_OpticalCh } } -// Max returns from Component_OpticalChannel_InputPower the path struct for its child "max". -func (n *Component_OpticalChannel_InputPower) Max() *Component_OpticalChannel_InputPower_Max { - return &Component_OpticalChannel_InputPower_Max{ +// Max returns from Component_OpticalChannel_InputPowerPath the path struct for its child "max". +func (n *Component_OpticalChannel_InputPowerPath) Max() *Component_OpticalChannel_InputPower_MaxPath { + return &Component_OpticalChannel_InputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37342,9 +37337,9 @@ func (n *Component_OpticalChannel_InputPower) Max() *Component_OpticalChannel_In } } -// Max returns from Component_OpticalChannel_InputPowerAny the path struct for its child "max". -func (n *Component_OpticalChannel_InputPowerAny) Max() *Component_OpticalChannel_InputPower_MaxAny { - return &Component_OpticalChannel_InputPower_MaxAny{ +// Max returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_InputPowerPathAny) Max() *Component_OpticalChannel_InputPower_MaxPathAny { + return &Component_OpticalChannel_InputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37353,9 +37348,9 @@ func (n *Component_OpticalChannel_InputPowerAny) Max() *Component_OpticalChannel } } -// MaxTime returns from Component_OpticalChannel_InputPower the path struct for its child "max-time". -func (n *Component_OpticalChannel_InputPower) MaxTime() *Component_OpticalChannel_InputPower_MaxTime { - return &Component_OpticalChannel_InputPower_MaxTime{ +// MaxTime returns from Component_OpticalChannel_InputPowerPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_InputPowerPath) MaxTime() *Component_OpticalChannel_InputPower_MaxTimePath { + return &Component_OpticalChannel_InputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37364,9 +37359,9 @@ func (n *Component_OpticalChannel_InputPower) MaxTime() *Component_OpticalChanne } } -// MaxTime returns from Component_OpticalChannel_InputPowerAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_InputPowerAny) MaxTime() *Component_OpticalChannel_InputPower_MaxTimeAny { - return &Component_OpticalChannel_InputPower_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_InputPowerPathAny) MaxTime() *Component_OpticalChannel_InputPower_MaxTimePathAny { + return &Component_OpticalChannel_InputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37375,9 +37370,9 @@ func (n *Component_OpticalChannel_InputPowerAny) MaxTime() *Component_OpticalCha } } -// Min returns from Component_OpticalChannel_InputPower the path struct for its child "min". -func (n *Component_OpticalChannel_InputPower) Min() *Component_OpticalChannel_InputPower_Min { - return &Component_OpticalChannel_InputPower_Min{ +// Min returns from Component_OpticalChannel_InputPowerPath the path struct for its child "min". +func (n *Component_OpticalChannel_InputPowerPath) Min() *Component_OpticalChannel_InputPower_MinPath { + return &Component_OpticalChannel_InputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37386,9 +37381,9 @@ func (n *Component_OpticalChannel_InputPower) Min() *Component_OpticalChannel_In } } -// Min returns from Component_OpticalChannel_InputPowerAny the path struct for its child "min". -func (n *Component_OpticalChannel_InputPowerAny) Min() *Component_OpticalChannel_InputPower_MinAny { - return &Component_OpticalChannel_InputPower_MinAny{ +// Min returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_InputPowerPathAny) Min() *Component_OpticalChannel_InputPower_MinPathAny { + return &Component_OpticalChannel_InputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37397,9 +37392,9 @@ func (n *Component_OpticalChannel_InputPowerAny) Min() *Component_OpticalChannel } } -// MinTime returns from Component_OpticalChannel_InputPower the path struct for its child "min-time". -func (n *Component_OpticalChannel_InputPower) MinTime() *Component_OpticalChannel_InputPower_MinTime { - return &Component_OpticalChannel_InputPower_MinTime{ +// MinTime returns from Component_OpticalChannel_InputPowerPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_InputPowerPath) MinTime() *Component_OpticalChannel_InputPower_MinTimePath { + return &Component_OpticalChannel_InputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37408,9 +37403,9 @@ func (n *Component_OpticalChannel_InputPower) MinTime() *Component_OpticalChanne } } -// MinTime returns from Component_OpticalChannel_InputPowerAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_InputPowerAny) MinTime() *Component_OpticalChannel_InputPower_MinTimeAny { - return &Component_OpticalChannel_InputPower_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_InputPowerPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_InputPowerPathAny) MinTime() *Component_OpticalChannel_InputPower_MinTimePathAny { + return &Component_OpticalChannel_InputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37419,89 +37414,89 @@ func (n *Component_OpticalChannel_InputPowerAny) MinTime() *Component_OpticalCha } } -// Component_OpticalChannel_LaserBiasCurrent represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent struct { +// Component_OpticalChannel_LaserBiasCurrentPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current YANG schema element. +type Component_OpticalChannel_LaserBiasCurrentPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrentAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current YANG schema element. -type Component_OpticalChannel_LaserBiasCurrentAny struct { +// Component_OpticalChannel_LaserBiasCurrentPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current YANG schema element. +type Component_OpticalChannel_LaserBiasCurrentPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_Avg represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/avg YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_Avg struct { +// Component_OpticalChannel_LaserBiasCurrent_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/avg YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/avg YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_AvgAny struct { +// Component_OpticalChannel_LaserBiasCurrent_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/avg YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_Instant represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/instant YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_Instant struct { +// Component_OpticalChannel_LaserBiasCurrent_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/instant YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/instant YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_InstantAny struct { +// Component_OpticalChannel_LaserBiasCurrent_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/instant YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_Interval represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/interval YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_Interval struct { +// Component_OpticalChannel_LaserBiasCurrent_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/interval YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/interval YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_IntervalAny struct { +// Component_OpticalChannel_LaserBiasCurrent_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/interval YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_Max represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_Max struct { +// Component_OpticalChannel_LaserBiasCurrent_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MaxAny struct { +// Component_OpticalChannel_LaserBiasCurrent_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max-time YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MaxTime struct { +// Component_OpticalChannel_LaserBiasCurrent_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max-time YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max-time YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MaxTimeAny struct { +// Component_OpticalChannel_LaserBiasCurrent_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/max-time YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_Min represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_Min struct { +// Component_OpticalChannel_LaserBiasCurrent_MinPath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MinAny struct { +// Component_OpticalChannel_LaserBiasCurrent_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MinTime represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min-time YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MinTime struct { +// Component_OpticalChannel_LaserBiasCurrent_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min-time YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_LaserBiasCurrent_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min-time YANG schema element. -type Component_OpticalChannel_LaserBiasCurrent_MinTimeAny struct { +// Component_OpticalChannel_LaserBiasCurrent_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/laser-bias-current/min-time YANG schema element. +type Component_OpticalChannel_LaserBiasCurrent_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "avg". -func (n *Component_OpticalChannel_LaserBiasCurrent) Avg() *Component_OpticalChannel_LaserBiasCurrent_Avg { - return &Component_OpticalChannel_LaserBiasCurrent_Avg{ +// Avg returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "avg". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) Avg() *Component_OpticalChannel_LaserBiasCurrent_AvgPath { + return &Component_OpticalChannel_LaserBiasCurrent_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37510,9 +37505,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) Avg() *Component_OpticalChan } } -// Avg returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "avg". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) Avg() *Component_OpticalChannel_LaserBiasCurrent_AvgAny { - return &Component_OpticalChannel_LaserBiasCurrent_AvgAny{ +// Avg returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) Avg() *Component_OpticalChannel_LaserBiasCurrent_AvgPathAny { + return &Component_OpticalChannel_LaserBiasCurrent_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37521,9 +37516,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) Avg() *Component_OpticalC } } -// Instant returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "instant". -func (n *Component_OpticalChannel_LaserBiasCurrent) Instant() *Component_OpticalChannel_LaserBiasCurrent_Instant { - return &Component_OpticalChannel_LaserBiasCurrent_Instant{ +// Instant returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "instant". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) Instant() *Component_OpticalChannel_LaserBiasCurrent_InstantPath { + return &Component_OpticalChannel_LaserBiasCurrent_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37532,9 +37527,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) Instant() *Component_Optical } } -// Instant returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "instant". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) Instant() *Component_OpticalChannel_LaserBiasCurrent_InstantAny { - return &Component_OpticalChannel_LaserBiasCurrent_InstantAny{ +// Instant returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) Instant() *Component_OpticalChannel_LaserBiasCurrent_InstantPathAny { + return &Component_OpticalChannel_LaserBiasCurrent_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37543,9 +37538,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) Instant() *Component_Opti } } -// Interval returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "interval". -func (n *Component_OpticalChannel_LaserBiasCurrent) Interval() *Component_OpticalChannel_LaserBiasCurrent_Interval { - return &Component_OpticalChannel_LaserBiasCurrent_Interval{ +// Interval returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "interval". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) Interval() *Component_OpticalChannel_LaserBiasCurrent_IntervalPath { + return &Component_OpticalChannel_LaserBiasCurrent_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37554,9 +37549,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) Interval() *Component_Optica } } -// Interval returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "interval". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) Interval() *Component_OpticalChannel_LaserBiasCurrent_IntervalAny { - return &Component_OpticalChannel_LaserBiasCurrent_IntervalAny{ +// Interval returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) Interval() *Component_OpticalChannel_LaserBiasCurrent_IntervalPathAny { + return &Component_OpticalChannel_LaserBiasCurrent_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37565,9 +37560,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) Interval() *Component_Opt } } -// Max returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "max". -func (n *Component_OpticalChannel_LaserBiasCurrent) Max() *Component_OpticalChannel_LaserBiasCurrent_Max { - return &Component_OpticalChannel_LaserBiasCurrent_Max{ +// Max returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "max". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) Max() *Component_OpticalChannel_LaserBiasCurrent_MaxPath { + return &Component_OpticalChannel_LaserBiasCurrent_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37576,9 +37571,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) Max() *Component_OpticalChan } } -// Max returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "max". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) Max() *Component_OpticalChannel_LaserBiasCurrent_MaxAny { - return &Component_OpticalChannel_LaserBiasCurrent_MaxAny{ +// Max returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) Max() *Component_OpticalChannel_LaserBiasCurrent_MaxPathAny { + return &Component_OpticalChannel_LaserBiasCurrent_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37587,9 +37582,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) Max() *Component_OpticalC } } -// MaxTime returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "max-time". -func (n *Component_OpticalChannel_LaserBiasCurrent) MaxTime() *Component_OpticalChannel_LaserBiasCurrent_MaxTime { - return &Component_OpticalChannel_LaserBiasCurrent_MaxTime{ +// MaxTime returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) MaxTime() *Component_OpticalChannel_LaserBiasCurrent_MaxTimePath { + return &Component_OpticalChannel_LaserBiasCurrent_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37598,9 +37593,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) MaxTime() *Component_Optical } } -// MaxTime returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) MaxTime() *Component_OpticalChannel_LaserBiasCurrent_MaxTimeAny { - return &Component_OpticalChannel_LaserBiasCurrent_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) MaxTime() *Component_OpticalChannel_LaserBiasCurrent_MaxTimePathAny { + return &Component_OpticalChannel_LaserBiasCurrent_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37609,9 +37604,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) MaxTime() *Component_Opti } } -// Min returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "min". -func (n *Component_OpticalChannel_LaserBiasCurrent) Min() *Component_OpticalChannel_LaserBiasCurrent_Min { - return &Component_OpticalChannel_LaserBiasCurrent_Min{ +// Min returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "min". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) Min() *Component_OpticalChannel_LaserBiasCurrent_MinPath { + return &Component_OpticalChannel_LaserBiasCurrent_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37620,9 +37615,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) Min() *Component_OpticalChan } } -// Min returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "min". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) Min() *Component_OpticalChannel_LaserBiasCurrent_MinAny { - return &Component_OpticalChannel_LaserBiasCurrent_MinAny{ +// Min returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) Min() *Component_OpticalChannel_LaserBiasCurrent_MinPathAny { + return &Component_OpticalChannel_LaserBiasCurrent_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37631,9 +37626,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) Min() *Component_OpticalC } } -// MinTime returns from Component_OpticalChannel_LaserBiasCurrent the path struct for its child "min-time". -func (n *Component_OpticalChannel_LaserBiasCurrent) MinTime() *Component_OpticalChannel_LaserBiasCurrent_MinTime { - return &Component_OpticalChannel_LaserBiasCurrent_MinTime{ +// MinTime returns from Component_OpticalChannel_LaserBiasCurrentPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_LaserBiasCurrentPath) MinTime() *Component_OpticalChannel_LaserBiasCurrent_MinTimePath { + return &Component_OpticalChannel_LaserBiasCurrent_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37642,9 +37637,9 @@ func (n *Component_OpticalChannel_LaserBiasCurrent) MinTime() *Component_Optical } } -// MinTime returns from Component_OpticalChannel_LaserBiasCurrentAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_LaserBiasCurrentAny) MinTime() *Component_OpticalChannel_LaserBiasCurrent_MinTimeAny { - return &Component_OpticalChannel_LaserBiasCurrent_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_LaserBiasCurrentPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_LaserBiasCurrentPathAny) MinTime() *Component_OpticalChannel_LaserBiasCurrent_MinTimePathAny { + return &Component_OpticalChannel_LaserBiasCurrent_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37653,89 +37648,89 @@ func (n *Component_OpticalChannel_LaserBiasCurrentAny) MinTime() *Component_Opti } } -// Component_OpticalChannel_OutputPower represents the /openconfig-platform/components/component/optical-channel/state/output-power YANG schema element. -type Component_OpticalChannel_OutputPower struct { +// Component_OpticalChannel_OutputPowerPath represents the /openconfig-platform/components/component/optical-channel/state/output-power YANG schema element. +type Component_OpticalChannel_OutputPowerPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power YANG schema element. -type Component_OpticalChannel_OutputPowerAny struct { +// Component_OpticalChannel_OutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power YANG schema element. +type Component_OpticalChannel_OutputPowerPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_Avg represents the /openconfig-platform/components/component/optical-channel/state/output-power/avg YANG schema element. -type Component_OpticalChannel_OutputPower_Avg struct { +// Component_OpticalChannel_OutputPower_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/output-power/avg YANG schema element. +type Component_OpticalChannel_OutputPower_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/avg YANG schema element. -type Component_OpticalChannel_OutputPower_AvgAny struct { +// Component_OpticalChannel_OutputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/avg YANG schema element. +type Component_OpticalChannel_OutputPower_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_Instant represents the /openconfig-platform/components/component/optical-channel/state/output-power/instant YANG schema element. -type Component_OpticalChannel_OutputPower_Instant struct { +// Component_OpticalChannel_OutputPower_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/output-power/instant YANG schema element. +type Component_OpticalChannel_OutputPower_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/instant YANG schema element. -type Component_OpticalChannel_OutputPower_InstantAny struct { +// Component_OpticalChannel_OutputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/instant YANG schema element. +type Component_OpticalChannel_OutputPower_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_Interval represents the /openconfig-platform/components/component/optical-channel/state/output-power/interval YANG schema element. -type Component_OpticalChannel_OutputPower_Interval struct { +// Component_OpticalChannel_OutputPower_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/output-power/interval YANG schema element. +type Component_OpticalChannel_OutputPower_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/interval YANG schema element. -type Component_OpticalChannel_OutputPower_IntervalAny struct { +// Component_OpticalChannel_OutputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/interval YANG schema element. +type Component_OpticalChannel_OutputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_Max represents the /openconfig-platform/components/component/optical-channel/state/output-power/max YANG schema element. -type Component_OpticalChannel_OutputPower_Max struct { +// Component_OpticalChannel_OutputPower_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/output-power/max YANG schema element. +type Component_OpticalChannel_OutputPower_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/max YANG schema element. -type Component_OpticalChannel_OutputPower_MaxAny struct { +// Component_OpticalChannel_OutputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/max YANG schema element. +type Component_OpticalChannel_OutputPower_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/output-power/max-time YANG schema element. -type Component_OpticalChannel_OutputPower_MaxTime struct { +// Component_OpticalChannel_OutputPower_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/output-power/max-time YANG schema element. +type Component_OpticalChannel_OutputPower_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/max-time YANG schema element. -type Component_OpticalChannel_OutputPower_MaxTimeAny struct { +// Component_OpticalChannel_OutputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/max-time YANG schema element. +type Component_OpticalChannel_OutputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_Min represents the /openconfig-platform/components/component/optical-channel/state/output-power/min YANG schema element. -type Component_OpticalChannel_OutputPower_Min struct { +// Component_OpticalChannel_OutputPower_MinPath represents the /openconfig-platform/components/component/optical-channel/state/output-power/min YANG schema element. +type Component_OpticalChannel_OutputPower_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/min YANG schema element. -type Component_OpticalChannel_OutputPower_MinAny struct { +// Component_OpticalChannel_OutputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/min YANG schema element. +type Component_OpticalChannel_OutputPower_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MinTime represents the /openconfig-platform/components/component/optical-channel/state/output-power/min-time YANG schema element. -type Component_OpticalChannel_OutputPower_MinTime struct { +// Component_OpticalChannel_OutputPower_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/output-power/min-time YANG schema element. +type Component_OpticalChannel_OutputPower_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_OutputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/min-time YANG schema element. -type Component_OpticalChannel_OutputPower_MinTimeAny struct { +// Component_OpticalChannel_OutputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/output-power/min-time YANG schema element. +type Component_OpticalChannel_OutputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_OutputPower the path struct for its child "avg". -func (n *Component_OpticalChannel_OutputPower) Avg() *Component_OpticalChannel_OutputPower_Avg { - return &Component_OpticalChannel_OutputPower_Avg{ +// Avg returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "avg". +func (n *Component_OpticalChannel_OutputPowerPath) Avg() *Component_OpticalChannel_OutputPower_AvgPath { + return &Component_OpticalChannel_OutputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37744,9 +37739,9 @@ func (n *Component_OpticalChannel_OutputPower) Avg() *Component_OpticalChannel_O } } -// Avg returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "avg". -func (n *Component_OpticalChannel_OutputPowerAny) Avg() *Component_OpticalChannel_OutputPower_AvgAny { - return &Component_OpticalChannel_OutputPower_AvgAny{ +// Avg returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_OutputPowerPathAny) Avg() *Component_OpticalChannel_OutputPower_AvgPathAny { + return &Component_OpticalChannel_OutputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37755,9 +37750,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) Avg() *Component_OpticalChanne } } -// Instant returns from Component_OpticalChannel_OutputPower the path struct for its child "instant". -func (n *Component_OpticalChannel_OutputPower) Instant() *Component_OpticalChannel_OutputPower_Instant { - return &Component_OpticalChannel_OutputPower_Instant{ +// Instant returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "instant". +func (n *Component_OpticalChannel_OutputPowerPath) Instant() *Component_OpticalChannel_OutputPower_InstantPath { + return &Component_OpticalChannel_OutputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37766,9 +37761,9 @@ func (n *Component_OpticalChannel_OutputPower) Instant() *Component_OpticalChann } } -// Instant returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "instant". -func (n *Component_OpticalChannel_OutputPowerAny) Instant() *Component_OpticalChannel_OutputPower_InstantAny { - return &Component_OpticalChannel_OutputPower_InstantAny{ +// Instant returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_OutputPowerPathAny) Instant() *Component_OpticalChannel_OutputPower_InstantPathAny { + return &Component_OpticalChannel_OutputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -37777,9 +37772,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) Instant() *Component_OpticalCh } } -// Interval returns from Component_OpticalChannel_OutputPower the path struct for its child "interval". -func (n *Component_OpticalChannel_OutputPower) Interval() *Component_OpticalChannel_OutputPower_Interval { - return &Component_OpticalChannel_OutputPower_Interval{ +// Interval returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "interval". +func (n *Component_OpticalChannel_OutputPowerPath) Interval() *Component_OpticalChannel_OutputPower_IntervalPath { + return &Component_OpticalChannel_OutputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37788,9 +37783,9 @@ func (n *Component_OpticalChannel_OutputPower) Interval() *Component_OpticalChan } } -// Interval returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "interval". -func (n *Component_OpticalChannel_OutputPowerAny) Interval() *Component_OpticalChannel_OutputPower_IntervalAny { - return &Component_OpticalChannel_OutputPower_IntervalAny{ +// Interval returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_OutputPowerPathAny) Interval() *Component_OpticalChannel_OutputPower_IntervalPathAny { + return &Component_OpticalChannel_OutputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -37799,9 +37794,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) Interval() *Component_OpticalC } } -// Max returns from Component_OpticalChannel_OutputPower the path struct for its child "max". -func (n *Component_OpticalChannel_OutputPower) Max() *Component_OpticalChannel_OutputPower_Max { - return &Component_OpticalChannel_OutputPower_Max{ +// Max returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "max". +func (n *Component_OpticalChannel_OutputPowerPath) Max() *Component_OpticalChannel_OutputPower_MaxPath { + return &Component_OpticalChannel_OutputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37810,9 +37805,9 @@ func (n *Component_OpticalChannel_OutputPower) Max() *Component_OpticalChannel_O } } -// Max returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "max". -func (n *Component_OpticalChannel_OutputPowerAny) Max() *Component_OpticalChannel_OutputPower_MaxAny { - return &Component_OpticalChannel_OutputPower_MaxAny{ +// Max returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_OutputPowerPathAny) Max() *Component_OpticalChannel_OutputPower_MaxPathAny { + return &Component_OpticalChannel_OutputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -37821,9 +37816,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) Max() *Component_OpticalChanne } } -// MaxTime returns from Component_OpticalChannel_OutputPower the path struct for its child "max-time". -func (n *Component_OpticalChannel_OutputPower) MaxTime() *Component_OpticalChannel_OutputPower_MaxTime { - return &Component_OpticalChannel_OutputPower_MaxTime{ +// MaxTime returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_OutputPowerPath) MaxTime() *Component_OpticalChannel_OutputPower_MaxTimePath { + return &Component_OpticalChannel_OutputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37832,9 +37827,9 @@ func (n *Component_OpticalChannel_OutputPower) MaxTime() *Component_OpticalChann } } -// MaxTime returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_OutputPowerAny) MaxTime() *Component_OpticalChannel_OutputPower_MaxTimeAny { - return &Component_OpticalChannel_OutputPower_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_OutputPowerPathAny) MaxTime() *Component_OpticalChannel_OutputPower_MaxTimePathAny { + return &Component_OpticalChannel_OutputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -37843,9 +37838,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) MaxTime() *Component_OpticalCh } } -// Min returns from Component_OpticalChannel_OutputPower the path struct for its child "min". -func (n *Component_OpticalChannel_OutputPower) Min() *Component_OpticalChannel_OutputPower_Min { - return &Component_OpticalChannel_OutputPower_Min{ +// Min returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "min". +func (n *Component_OpticalChannel_OutputPowerPath) Min() *Component_OpticalChannel_OutputPower_MinPath { + return &Component_OpticalChannel_OutputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37854,9 +37849,9 @@ func (n *Component_OpticalChannel_OutputPower) Min() *Component_OpticalChannel_O } } -// Min returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "min". -func (n *Component_OpticalChannel_OutputPowerAny) Min() *Component_OpticalChannel_OutputPower_MinAny { - return &Component_OpticalChannel_OutputPower_MinAny{ +// Min returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_OutputPowerPathAny) Min() *Component_OpticalChannel_OutputPower_MinPathAny { + return &Component_OpticalChannel_OutputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -37865,9 +37860,9 @@ func (n *Component_OpticalChannel_OutputPowerAny) Min() *Component_OpticalChanne } } -// MinTime returns from Component_OpticalChannel_OutputPower the path struct for its child "min-time". -func (n *Component_OpticalChannel_OutputPower) MinTime() *Component_OpticalChannel_OutputPower_MinTime { - return &Component_OpticalChannel_OutputPower_MinTime{ +// MinTime returns from Component_OpticalChannel_OutputPowerPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_OutputPowerPath) MinTime() *Component_OpticalChannel_OutputPower_MinTimePath { + return &Component_OpticalChannel_OutputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37876,9 +37871,9 @@ func (n *Component_OpticalChannel_OutputPower) MinTime() *Component_OpticalChann } } -// MinTime returns from Component_OpticalChannel_OutputPowerAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_OutputPowerAny) MinTime() *Component_OpticalChannel_OutputPower_MinTimeAny { - return &Component_OpticalChannel_OutputPower_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_OutputPowerPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_OutputPowerPathAny) MinTime() *Component_OpticalChannel_OutputPower_MinTimePathAny { + return &Component_OpticalChannel_OutputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -37887,89 +37882,89 @@ func (n *Component_OpticalChannel_OutputPowerAny) MinTime() *Component_OpticalCh } } -// Component_OpticalChannel_PolarizationDependentLoss represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss struct { +// Component_OpticalChannel_PolarizationDependentLossPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss YANG schema element. +type Component_OpticalChannel_PolarizationDependentLossPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLossAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss YANG schema element. -type Component_OpticalChannel_PolarizationDependentLossAny struct { +// Component_OpticalChannel_PolarizationDependentLossPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss YANG schema element. +type Component_OpticalChannel_PolarizationDependentLossPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_Avg represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/avg YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_Avg struct { +// Component_OpticalChannel_PolarizationDependentLoss_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/avg YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/avg YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_AvgAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/avg YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_Instant represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/instant YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_Instant struct { +// Component_OpticalChannel_PolarizationDependentLoss_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/instant YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/instant YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_InstantAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/instant YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_Interval represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/interval YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_Interval struct { +// Component_OpticalChannel_PolarizationDependentLoss_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/interval YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/interval YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_IntervalAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/interval YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_Max represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_Max struct { +// Component_OpticalChannel_PolarizationDependentLoss_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MaxAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max-time YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MaxTime struct { +// Component_OpticalChannel_PolarizationDependentLoss_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max-time YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max-time YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MaxTimeAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/max-time YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_Min represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_Min struct { +// Component_OpticalChannel_PolarizationDependentLoss_MinPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MinAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MinTime represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min-time YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MinTime struct { +// Component_OpticalChannel_PolarizationDependentLoss_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min-time YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationDependentLoss_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min-time YANG schema element. -type Component_OpticalChannel_PolarizationDependentLoss_MinTimeAny struct { +// Component_OpticalChannel_PolarizationDependentLoss_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-dependent-loss/min-time YANG schema element. +type Component_OpticalChannel_PolarizationDependentLoss_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "avg". -func (n *Component_OpticalChannel_PolarizationDependentLoss) Avg() *Component_OpticalChannel_PolarizationDependentLoss_Avg { - return &Component_OpticalChannel_PolarizationDependentLoss_Avg{ +// Avg returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "avg". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) Avg() *Component_OpticalChannel_PolarizationDependentLoss_AvgPath { + return &Component_OpticalChannel_PolarizationDependentLoss_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37978,9 +37973,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) Avg() *Component_Op } } -// Avg returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "avg". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) Avg() *Component_OpticalChannel_PolarizationDependentLoss_AvgAny { - return &Component_OpticalChannel_PolarizationDependentLoss_AvgAny{ +// Avg returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) Avg() *Component_OpticalChannel_PolarizationDependentLoss_AvgPathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -37989,9 +37984,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) Avg() *Component } } -// Instant returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "instant". -func (n *Component_OpticalChannel_PolarizationDependentLoss) Instant() *Component_OpticalChannel_PolarizationDependentLoss_Instant { - return &Component_OpticalChannel_PolarizationDependentLoss_Instant{ +// Instant returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "instant". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) Instant() *Component_OpticalChannel_PolarizationDependentLoss_InstantPath { + return &Component_OpticalChannel_PolarizationDependentLoss_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38000,9 +37995,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) Instant() *Componen } } -// Instant returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "instant". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) Instant() *Component_OpticalChannel_PolarizationDependentLoss_InstantAny { - return &Component_OpticalChannel_PolarizationDependentLoss_InstantAny{ +// Instant returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) Instant() *Component_OpticalChannel_PolarizationDependentLoss_InstantPathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38011,9 +38006,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) Instant() *Compo } } -// Interval returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "interval". -func (n *Component_OpticalChannel_PolarizationDependentLoss) Interval() *Component_OpticalChannel_PolarizationDependentLoss_Interval { - return &Component_OpticalChannel_PolarizationDependentLoss_Interval{ +// Interval returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "interval". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) Interval() *Component_OpticalChannel_PolarizationDependentLoss_IntervalPath { + return &Component_OpticalChannel_PolarizationDependentLoss_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38022,9 +38017,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) Interval() *Compone } } -// Interval returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "interval". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) Interval() *Component_OpticalChannel_PolarizationDependentLoss_IntervalAny { - return &Component_OpticalChannel_PolarizationDependentLoss_IntervalAny{ +// Interval returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) Interval() *Component_OpticalChannel_PolarizationDependentLoss_IntervalPathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38033,9 +38028,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) Interval() *Comp } } -// Max returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "max". -func (n *Component_OpticalChannel_PolarizationDependentLoss) Max() *Component_OpticalChannel_PolarizationDependentLoss_Max { - return &Component_OpticalChannel_PolarizationDependentLoss_Max{ +// Max returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "max". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) Max() *Component_OpticalChannel_PolarizationDependentLoss_MaxPath { + return &Component_OpticalChannel_PolarizationDependentLoss_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38044,9 +38039,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) Max() *Component_Op } } -// Max returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "max". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) Max() *Component_OpticalChannel_PolarizationDependentLoss_MaxAny { - return &Component_OpticalChannel_PolarizationDependentLoss_MaxAny{ +// Max returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) Max() *Component_OpticalChannel_PolarizationDependentLoss_MaxPathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38055,9 +38050,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) Max() *Component } } -// MaxTime returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "max-time". -func (n *Component_OpticalChannel_PolarizationDependentLoss) MaxTime() *Component_OpticalChannel_PolarizationDependentLoss_MaxTime { - return &Component_OpticalChannel_PolarizationDependentLoss_MaxTime{ +// MaxTime returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) MaxTime() *Component_OpticalChannel_PolarizationDependentLoss_MaxTimePath { + return &Component_OpticalChannel_PolarizationDependentLoss_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38066,9 +38061,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) MaxTime() *Componen } } -// MaxTime returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) MaxTime() *Component_OpticalChannel_PolarizationDependentLoss_MaxTimeAny { - return &Component_OpticalChannel_PolarizationDependentLoss_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) MaxTime() *Component_OpticalChannel_PolarizationDependentLoss_MaxTimePathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38077,9 +38072,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) MaxTime() *Compo } } -// Min returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "min". -func (n *Component_OpticalChannel_PolarizationDependentLoss) Min() *Component_OpticalChannel_PolarizationDependentLoss_Min { - return &Component_OpticalChannel_PolarizationDependentLoss_Min{ +// Min returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "min". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) Min() *Component_OpticalChannel_PolarizationDependentLoss_MinPath { + return &Component_OpticalChannel_PolarizationDependentLoss_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38088,9 +38083,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) Min() *Component_Op } } -// Min returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "min". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) Min() *Component_OpticalChannel_PolarizationDependentLoss_MinAny { - return &Component_OpticalChannel_PolarizationDependentLoss_MinAny{ +// Min returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) Min() *Component_OpticalChannel_PolarizationDependentLoss_MinPathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38099,9 +38094,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) Min() *Component } } -// MinTime returns from Component_OpticalChannel_PolarizationDependentLoss the path struct for its child "min-time". -func (n *Component_OpticalChannel_PolarizationDependentLoss) MinTime() *Component_OpticalChannel_PolarizationDependentLoss_MinTime { - return &Component_OpticalChannel_PolarizationDependentLoss_MinTime{ +// MinTime returns from Component_OpticalChannel_PolarizationDependentLossPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_PolarizationDependentLossPath) MinTime() *Component_OpticalChannel_PolarizationDependentLoss_MinTimePath { + return &Component_OpticalChannel_PolarizationDependentLoss_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38110,9 +38105,9 @@ func (n *Component_OpticalChannel_PolarizationDependentLoss) MinTime() *Componen } } -// MinTime returns from Component_OpticalChannel_PolarizationDependentLossAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_PolarizationDependentLossAny) MinTime() *Component_OpticalChannel_PolarizationDependentLoss_MinTimeAny { - return &Component_OpticalChannel_PolarizationDependentLoss_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_PolarizationDependentLossPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_PolarizationDependentLossPathAny) MinTime() *Component_OpticalChannel_PolarizationDependentLoss_MinTimePathAny { + return &Component_OpticalChannel_PolarizationDependentLoss_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38121,89 +38116,89 @@ func (n *Component_OpticalChannel_PolarizationDependentLossAny) MinTime() *Compo } } -// Component_OpticalChannel_PolarizationModeDispersion represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion struct { +// Component_OpticalChannel_PolarizationModeDispersionPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersionPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersionAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersionAny struct { +// Component_OpticalChannel_PolarizationModeDispersionPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersionPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_Avg represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/avg YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_Avg struct { +// Component_OpticalChannel_PolarizationModeDispersion_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/avg YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/avg YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_AvgAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/avg YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_Instant represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/instant YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_Instant struct { +// Component_OpticalChannel_PolarizationModeDispersion_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/instant YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/instant YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_InstantAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/instant YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_Interval represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/interval YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_Interval struct { +// Component_OpticalChannel_PolarizationModeDispersion_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/interval YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/interval YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_IntervalAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/interval YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_Max represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_Max struct { +// Component_OpticalChannel_PolarizationModeDispersion_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MaxAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max-time YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MaxTime struct { +// Component_OpticalChannel_PolarizationModeDispersion_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max-time YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max-time YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MaxTimeAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/max-time YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_Min represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_Min struct { +// Component_OpticalChannel_PolarizationModeDispersion_MinPath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MinAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MinTime represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min-time YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MinTime struct { +// Component_OpticalChannel_PolarizationModeDispersion_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min-time YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_PolarizationModeDispersion_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min-time YANG schema element. -type Component_OpticalChannel_PolarizationModeDispersion_MinTimeAny struct { +// Component_OpticalChannel_PolarizationModeDispersion_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/polarization-mode-dispersion/min-time YANG schema element. +type Component_OpticalChannel_PolarizationModeDispersion_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "avg". -func (n *Component_OpticalChannel_PolarizationModeDispersion) Avg() *Component_OpticalChannel_PolarizationModeDispersion_Avg { - return &Component_OpticalChannel_PolarizationModeDispersion_Avg{ +// Avg returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "avg". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) Avg() *Component_OpticalChannel_PolarizationModeDispersion_AvgPath { + return &Component_OpticalChannel_PolarizationModeDispersion_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38212,9 +38207,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) Avg() *Component_O } } -// Avg returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "avg". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Avg() *Component_OpticalChannel_PolarizationModeDispersion_AvgAny { - return &Component_OpticalChannel_PolarizationModeDispersion_AvgAny{ +// Avg returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) Avg() *Component_OpticalChannel_PolarizationModeDispersion_AvgPathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38223,9 +38218,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Avg() *Componen } } -// Instant returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "instant". -func (n *Component_OpticalChannel_PolarizationModeDispersion) Instant() *Component_OpticalChannel_PolarizationModeDispersion_Instant { - return &Component_OpticalChannel_PolarizationModeDispersion_Instant{ +// Instant returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "instant". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) Instant() *Component_OpticalChannel_PolarizationModeDispersion_InstantPath { + return &Component_OpticalChannel_PolarizationModeDispersion_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38234,9 +38229,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) Instant() *Compone } } -// Instant returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "instant". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Instant() *Component_OpticalChannel_PolarizationModeDispersion_InstantAny { - return &Component_OpticalChannel_PolarizationModeDispersion_InstantAny{ +// Instant returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) Instant() *Component_OpticalChannel_PolarizationModeDispersion_InstantPathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38245,9 +38240,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Instant() *Comp } } -// Interval returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "interval". -func (n *Component_OpticalChannel_PolarizationModeDispersion) Interval() *Component_OpticalChannel_PolarizationModeDispersion_Interval { - return &Component_OpticalChannel_PolarizationModeDispersion_Interval{ +// Interval returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "interval". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) Interval() *Component_OpticalChannel_PolarizationModeDispersion_IntervalPath { + return &Component_OpticalChannel_PolarizationModeDispersion_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38256,9 +38251,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) Interval() *Compon } } -// Interval returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "interval". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Interval() *Component_OpticalChannel_PolarizationModeDispersion_IntervalAny { - return &Component_OpticalChannel_PolarizationModeDispersion_IntervalAny{ +// Interval returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) Interval() *Component_OpticalChannel_PolarizationModeDispersion_IntervalPathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38267,9 +38262,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Interval() *Com } } -// Max returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "max". -func (n *Component_OpticalChannel_PolarizationModeDispersion) Max() *Component_OpticalChannel_PolarizationModeDispersion_Max { - return &Component_OpticalChannel_PolarizationModeDispersion_Max{ +// Max returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "max". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) Max() *Component_OpticalChannel_PolarizationModeDispersion_MaxPath { + return &Component_OpticalChannel_PolarizationModeDispersion_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38278,9 +38273,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) Max() *Component_O } } -// Max returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "max". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Max() *Component_OpticalChannel_PolarizationModeDispersion_MaxAny { - return &Component_OpticalChannel_PolarizationModeDispersion_MaxAny{ +// Max returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) Max() *Component_OpticalChannel_PolarizationModeDispersion_MaxPathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38289,9 +38284,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Max() *Componen } } -// MaxTime returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "max-time". -func (n *Component_OpticalChannel_PolarizationModeDispersion) MaxTime() *Component_OpticalChannel_PolarizationModeDispersion_MaxTime { - return &Component_OpticalChannel_PolarizationModeDispersion_MaxTime{ +// MaxTime returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) MaxTime() *Component_OpticalChannel_PolarizationModeDispersion_MaxTimePath { + return &Component_OpticalChannel_PolarizationModeDispersion_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38300,9 +38295,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) MaxTime() *Compone } } -// MaxTime returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) MaxTime() *Component_OpticalChannel_PolarizationModeDispersion_MaxTimeAny { - return &Component_OpticalChannel_PolarizationModeDispersion_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) MaxTime() *Component_OpticalChannel_PolarizationModeDispersion_MaxTimePathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38311,9 +38306,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) MaxTime() *Comp } } -// Min returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "min". -func (n *Component_OpticalChannel_PolarizationModeDispersion) Min() *Component_OpticalChannel_PolarizationModeDispersion_Min { - return &Component_OpticalChannel_PolarizationModeDispersion_Min{ +// Min returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "min". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) Min() *Component_OpticalChannel_PolarizationModeDispersion_MinPath { + return &Component_OpticalChannel_PolarizationModeDispersion_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38322,9 +38317,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) Min() *Component_O } } -// Min returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "min". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Min() *Component_OpticalChannel_PolarizationModeDispersion_MinAny { - return &Component_OpticalChannel_PolarizationModeDispersion_MinAny{ +// Min returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) Min() *Component_OpticalChannel_PolarizationModeDispersion_MinPathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38333,9 +38328,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) Min() *Componen } } -// MinTime returns from Component_OpticalChannel_PolarizationModeDispersion the path struct for its child "min-time". -func (n *Component_OpticalChannel_PolarizationModeDispersion) MinTime() *Component_OpticalChannel_PolarizationModeDispersion_MinTime { - return &Component_OpticalChannel_PolarizationModeDispersion_MinTime{ +// MinTime returns from Component_OpticalChannel_PolarizationModeDispersionPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_PolarizationModeDispersionPath) MinTime() *Component_OpticalChannel_PolarizationModeDispersion_MinTimePath { + return &Component_OpticalChannel_PolarizationModeDispersion_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38344,9 +38339,9 @@ func (n *Component_OpticalChannel_PolarizationModeDispersion) MinTime() *Compone } } -// MinTime returns from Component_OpticalChannel_PolarizationModeDispersionAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_PolarizationModeDispersionAny) MinTime() *Component_OpticalChannel_PolarizationModeDispersion_MinTimeAny { - return &Component_OpticalChannel_PolarizationModeDispersion_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_PolarizationModeDispersionPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_PolarizationModeDispersionPathAny) MinTime() *Component_OpticalChannel_PolarizationModeDispersion_MinTimePathAny { + return &Component_OpticalChannel_PolarizationModeDispersion_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38355,89 +38350,89 @@ func (n *Component_OpticalChannel_PolarizationModeDispersionAny) MinTime() *Comp } } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Avg represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/avg YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Avg struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/avg YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/avg YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/avg YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Instant represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/instant YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Instant struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/instant YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/instant YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/instant YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Interval represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/interval YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Interval struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/interval YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/interval YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/interval YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Max represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Max struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTime represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max-time YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTime struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max-time YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max-time YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimeAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/max-time YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Min represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Min struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPathAny struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTime represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min-time YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTime struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePath represents the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min-time YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePath struct { *ygot.NodePath } -// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min-time YANG schema element. -type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimeAny struct { +// Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/optical-channel/state/second-order-polarization-mode-dispersion/min-time YANG schema element. +type Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "avg". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Avg() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Avg { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Avg{ +// Avg returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "avg". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) Avg() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38446,9 +38441,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Avg() * } } -// Avg returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "avg". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Avg() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgAny{ +// Avg returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "avg". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) Avg() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38457,9 +38452,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Avg( } } -// Instant returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "instant". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Instant() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Instant { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Instant{ +// Instant returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "instant". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) Instant() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38468,9 +38463,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Instant } } -// Instant returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "instant". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Instant() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantAny{ +// Instant returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "instant". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) Instant() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38479,9 +38474,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Inst } } -// Interval returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "interval". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Interval() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Interval { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Interval{ +// Interval returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "interval". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) Interval() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38490,9 +38485,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Interva } } -// Interval returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "interval". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Interval() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalAny{ +// Interval returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "interval". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) Interval() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -38501,9 +38496,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Inte } } -// Max returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "max". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Max() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Max { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Max{ +// Max returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "max". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) Max() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38512,9 +38507,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Max() * } } -// Max returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "max". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Max() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxAny{ +// Max returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "max". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) Max() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -38523,9 +38518,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Max( } } -// MaxTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "max-time". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) MaxTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTime { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTime{ +// MaxTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "max-time". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) MaxTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38534,9 +38529,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) MaxTime } } -// MaxTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "max-time". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) MaxTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimeAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimeAny{ +// MaxTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "max-time". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) MaxTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -38545,9 +38540,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) MaxT } } -// Min returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "min". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Min() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Min { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_Min{ +// Min returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "min". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) Min() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38556,9 +38551,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) Min() * } } -// Min returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "min". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Min() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinAny{ +// Min returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "min". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) Min() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -38567,9 +38562,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) Min( } } -// MinTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersion the path struct for its child "min-time". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) MinTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTime { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTime{ +// MinTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath the path struct for its child "min-time". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPath) MinTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePath { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38578,9 +38573,9 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersion) MinTime } } -// MinTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny the path struct for its child "min-time". -func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) MinTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimeAny { - return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimeAny{ +// MinTime returns from Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny the path struct for its child "min-time". +func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionPathAny) MinTime() *Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePathAny { + return &Component_OpticalChannel_SecondOrderPolarizationModeDispersion_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -38589,19 +38584,19 @@ func (n *Component_OpticalChannel_SecondOrderPolarizationModeDispersionAny) MinT } } -// Component_Port represents the /openconfig-platform/components/component/port YANG schema element. -type Component_Port struct { +// Component_PortPath represents the /openconfig-platform/components/component/port YANG schema element. +type Component_PortPath struct { *ygot.NodePath } -// Component_PortAny represents the wildcard version of the /openconfig-platform/components/component/port YANG schema element. -type Component_PortAny struct { +// Component_PortPathAny represents the wildcard version of the /openconfig-platform/components/component/port YANG schema element. +type Component_PortPathAny struct { *ygot.NodePath } -// BreakoutMode returns from Component_Port the path struct for its child "breakout-mode". -func (n *Component_Port) BreakoutMode() *Component_Port_BreakoutMode { - return &Component_Port_BreakoutMode{ +// BreakoutMode returns from Component_PortPath the path struct for its child "breakout-mode". +func (n *Component_PortPath) BreakoutMode() *Component_Port_BreakoutModePath { + return &Component_Port_BreakoutModePath{ NodePath: ygot.NewNodePath( []string{"breakout-mode"}, map[string]interface{}{}, @@ -38610,9 +38605,9 @@ func (n *Component_Port) BreakoutMode() *Component_Port_BreakoutMode { } } -// BreakoutMode returns from Component_PortAny the path struct for its child "breakout-mode". -func (n *Component_PortAny) BreakoutMode() *Component_Port_BreakoutModeAny { - return &Component_Port_BreakoutModeAny{ +// BreakoutMode returns from Component_PortPathAny the path struct for its child "breakout-mode". +func (n *Component_PortPathAny) BreakoutMode() *Component_Port_BreakoutModePathAny { + return &Component_Port_BreakoutModePathAny{ NodePath: ygot.NewNodePath( []string{"breakout-mode"}, map[string]interface{}{}, @@ -38621,9 +38616,9 @@ func (n *Component_PortAny) BreakoutMode() *Component_Port_BreakoutModeAny { } } -// OpticalPort returns from Component_Port the path struct for its child "optical-port". -func (n *Component_Port) OpticalPort() *Component_Port_OpticalPort { - return &Component_Port_OpticalPort{ +// OpticalPort returns from Component_PortPath the path struct for its child "optical-port". +func (n *Component_PortPath) OpticalPort() *Component_Port_OpticalPortPath { + return &Component_Port_OpticalPortPath{ NodePath: ygot.NewNodePath( []string{"optical-port"}, map[string]interface{}{}, @@ -38632,9 +38627,9 @@ func (n *Component_Port) OpticalPort() *Component_Port_OpticalPort { } } -// OpticalPort returns from Component_PortAny the path struct for its child "optical-port". -func (n *Component_PortAny) OpticalPort() *Component_Port_OpticalPortAny { - return &Component_Port_OpticalPortAny{ +// OpticalPort returns from Component_PortPathAny the path struct for its child "optical-port". +func (n *Component_PortPathAny) OpticalPort() *Component_Port_OpticalPortPathAny { + return &Component_Port_OpticalPortPathAny{ NodePath: ygot.NewNodePath( []string{"optical-port"}, map[string]interface{}{}, @@ -38643,145 +38638,145 @@ func (n *Component_PortAny) OpticalPort() *Component_Port_OpticalPortAny { } } -// Component_Port_BreakoutMode represents the /openconfig-platform/components/component/port/breakout-mode YANG schema element. -type Component_Port_BreakoutMode struct { +// Component_Port_BreakoutModePath represents the /openconfig-platform/components/component/port/breakout-mode YANG schema element. +type Component_Port_BreakoutModePath struct { *ygot.NodePath } -// Component_Port_BreakoutModeAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode YANG schema element. -type Component_Port_BreakoutModeAny struct { +// Component_Port_BreakoutModePathAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode YANG schema element. +type Component_Port_BreakoutModePathAny struct { *ygot.NodePath } -// Component_Port_BreakoutMode_ChannelSpeed represents the /openconfig-platform/components/component/port/breakout-mode/state/channel-speed YANG schema element. -type Component_Port_BreakoutMode_ChannelSpeed struct { +// Component_Port_BreakoutMode_ChannelSpeedPath represents the /openconfig-platform/components/component/port/breakout-mode/config/channel-speed YANG schema element. +type Component_Port_BreakoutMode_ChannelSpeedPath struct { *ygot.NodePath } -// Component_Port_BreakoutMode_ChannelSpeedAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode/state/channel-speed YANG schema element. -type Component_Port_BreakoutMode_ChannelSpeedAny struct { +// Component_Port_BreakoutMode_ChannelSpeedPathAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode/config/channel-speed YANG schema element. +type Component_Port_BreakoutMode_ChannelSpeedPathAny struct { *ygot.NodePath } -// Component_Port_BreakoutMode_NumChannels represents the /openconfig-platform/components/component/port/breakout-mode/state/num-channels YANG schema element. -type Component_Port_BreakoutMode_NumChannels struct { +// Component_Port_BreakoutMode_NumChannelsPath represents the /openconfig-platform/components/component/port/breakout-mode/config/num-channels YANG schema element. +type Component_Port_BreakoutMode_NumChannelsPath struct { *ygot.NodePath } -// Component_Port_BreakoutMode_NumChannelsAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode/state/num-channels YANG schema element. -type Component_Port_BreakoutMode_NumChannelsAny struct { +// Component_Port_BreakoutMode_NumChannelsPathAny represents the wildcard version of the /openconfig-platform/components/component/port/breakout-mode/config/num-channels YANG schema element. +type Component_Port_BreakoutMode_NumChannelsPathAny struct { *ygot.NodePath } -// ChannelSpeed returns from Component_Port_BreakoutMode the path struct for its child "channel-speed". -func (n *Component_Port_BreakoutMode) ChannelSpeed() *Component_Port_BreakoutMode_ChannelSpeed { - return &Component_Port_BreakoutMode_ChannelSpeed{ +// ChannelSpeed returns from Component_Port_BreakoutModePath the path struct for its child "channel-speed". +func (n *Component_Port_BreakoutModePath) ChannelSpeed() *Component_Port_BreakoutMode_ChannelSpeedPath { + return &Component_Port_BreakoutMode_ChannelSpeedPath{ NodePath: ygot.NewNodePath( - []string{"state", "channel-speed"}, + []string{"config", "channel-speed"}, map[string]interface{}{}, n, ), } } -// ChannelSpeed returns from Component_Port_BreakoutModeAny the path struct for its child "channel-speed". -func (n *Component_Port_BreakoutModeAny) ChannelSpeed() *Component_Port_BreakoutMode_ChannelSpeedAny { - return &Component_Port_BreakoutMode_ChannelSpeedAny{ +// ChannelSpeed returns from Component_Port_BreakoutModePathAny the path struct for its child "channel-speed". +func (n *Component_Port_BreakoutModePathAny) ChannelSpeed() *Component_Port_BreakoutMode_ChannelSpeedPathAny { + return &Component_Port_BreakoutMode_ChannelSpeedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "channel-speed"}, + []string{"config", "channel-speed"}, map[string]interface{}{}, n, ), } } -// NumChannels returns from Component_Port_BreakoutMode the path struct for its child "num-channels". -func (n *Component_Port_BreakoutMode) NumChannels() *Component_Port_BreakoutMode_NumChannels { - return &Component_Port_BreakoutMode_NumChannels{ +// NumChannels returns from Component_Port_BreakoutModePath the path struct for its child "num-channels". +func (n *Component_Port_BreakoutModePath) NumChannels() *Component_Port_BreakoutMode_NumChannelsPath { + return &Component_Port_BreakoutMode_NumChannelsPath{ NodePath: ygot.NewNodePath( - []string{"state", "num-channels"}, + []string{"config", "num-channels"}, map[string]interface{}{}, n, ), } } -// NumChannels returns from Component_Port_BreakoutModeAny the path struct for its child "num-channels". -func (n *Component_Port_BreakoutModeAny) NumChannels() *Component_Port_BreakoutMode_NumChannelsAny { - return &Component_Port_BreakoutMode_NumChannelsAny{ +// NumChannels returns from Component_Port_BreakoutModePathAny the path struct for its child "num-channels". +func (n *Component_Port_BreakoutModePathAny) NumChannels() *Component_Port_BreakoutMode_NumChannelsPathAny { + return &Component_Port_BreakoutMode_NumChannelsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "num-channels"}, + []string{"config", "num-channels"}, map[string]interface{}{}, n, ), } } -// Component_Port_OpticalPort represents the /openconfig-platform/components/component/port/optical-port YANG schema element. -type Component_Port_OpticalPort struct { +// Component_Port_OpticalPortPath represents the /openconfig-platform/components/component/port/optical-port YANG schema element. +type Component_Port_OpticalPortPath struct { *ygot.NodePath } -// Component_Port_OpticalPortAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port YANG schema element. -type Component_Port_OpticalPortAny struct { +// Component_Port_OpticalPortPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port YANG schema element. +type Component_Port_OpticalPortPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_AdminState represents the /openconfig-platform/components/component/port/optical-port/state/admin-state YANG schema element. -type Component_Port_OpticalPort_AdminState struct { +// Component_Port_OpticalPort_AdminStatePath represents the /openconfig-platform/components/component/port/optical-port/config/admin-state YANG schema element. +type Component_Port_OpticalPort_AdminStatePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_AdminStateAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/admin-state YANG schema element. -type Component_Port_OpticalPort_AdminStateAny struct { +// Component_Port_OpticalPort_AdminStatePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/config/admin-state YANG schema element. +type Component_Port_OpticalPort_AdminStatePathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OpticalPortType represents the /openconfig-platform/components/component/port/optical-port/state/optical-port-type YANG schema element. -type Component_Port_OpticalPort_OpticalPortType struct { +// Component_Port_OpticalPort_OpticalPortTypePath represents the /openconfig-platform/components/component/port/optical-port/state/optical-port-type YANG schema element. +type Component_Port_OpticalPort_OpticalPortTypePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OpticalPortTypeAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/optical-port-type YANG schema element. -type Component_Port_OpticalPort_OpticalPortTypeAny struct { +// Component_Port_OpticalPort_OpticalPortTypePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/optical-port-type YANG schema element. +type Component_Port_OpticalPort_OpticalPortTypePathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_Tilt represents the /openconfig-platform/components/component/port/optical-port/state/tilt YANG schema element. -type Component_Port_OpticalPort_Tilt struct { +// Component_Port_OpticalPort_TiltPath represents the /openconfig-platform/components/component/port/optical-port/state/tilt YANG schema element. +type Component_Port_OpticalPort_TiltPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_TiltAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/tilt YANG schema element. -type Component_Port_OpticalPort_TiltAny struct { +// Component_Port_OpticalPort_TiltPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/tilt YANG schema element. +type Component_Port_OpticalPort_TiltPathAny struct { *ygot.NodePath } -// AdminState returns from Component_Port_OpticalPort the path struct for its child "admin-state". -func (n *Component_Port_OpticalPort) AdminState() *Component_Port_OpticalPort_AdminState { - return &Component_Port_OpticalPort_AdminState{ +// AdminState returns from Component_Port_OpticalPortPath the path struct for its child "admin-state". +func (n *Component_Port_OpticalPortPath) AdminState() *Component_Port_OpticalPort_AdminStatePath { + return &Component_Port_OpticalPort_AdminStatePath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-state"}, + []string{"config", "admin-state"}, map[string]interface{}{}, n, ), } } -// AdminState returns from Component_Port_OpticalPortAny the path struct for its child "admin-state". -func (n *Component_Port_OpticalPortAny) AdminState() *Component_Port_OpticalPort_AdminStateAny { - return &Component_Port_OpticalPort_AdminStateAny{ +// AdminState returns from Component_Port_OpticalPortPathAny the path struct for its child "admin-state". +func (n *Component_Port_OpticalPortPathAny) AdminState() *Component_Port_OpticalPort_AdminStatePathAny { + return &Component_Port_OpticalPort_AdminStatePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-state"}, + []string{"config", "admin-state"}, map[string]interface{}{}, n, ), } } -// InputPower returns from Component_Port_OpticalPort the path struct for its child "input-power". -func (n *Component_Port_OpticalPort) InputPower() *Component_Port_OpticalPort_InputPower { - return &Component_Port_OpticalPort_InputPower{ +// InputPower returns from Component_Port_OpticalPortPath the path struct for its child "input-power". +func (n *Component_Port_OpticalPortPath) InputPower() *Component_Port_OpticalPort_InputPowerPath { + return &Component_Port_OpticalPort_InputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -38790,9 +38785,9 @@ func (n *Component_Port_OpticalPort) InputPower() *Component_Port_OpticalPort_In } } -// InputPower returns from Component_Port_OpticalPortAny the path struct for its child "input-power". -func (n *Component_Port_OpticalPortAny) InputPower() *Component_Port_OpticalPort_InputPowerAny { - return &Component_Port_OpticalPort_InputPowerAny{ +// InputPower returns from Component_Port_OpticalPortPathAny the path struct for its child "input-power". +func (n *Component_Port_OpticalPortPathAny) InputPower() *Component_Port_OpticalPort_InputPowerPathAny { + return &Component_Port_OpticalPort_InputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -38801,9 +38796,9 @@ func (n *Component_Port_OpticalPortAny) InputPower() *Component_Port_OpticalPort } } -// OpticalPortType returns from Component_Port_OpticalPort the path struct for its child "optical-port-type". -func (n *Component_Port_OpticalPort) OpticalPortType() *Component_Port_OpticalPort_OpticalPortType { - return &Component_Port_OpticalPort_OpticalPortType{ +// OpticalPortType returns from Component_Port_OpticalPortPath the path struct for its child "optical-port-type". +func (n *Component_Port_OpticalPortPath) OpticalPortType() *Component_Port_OpticalPort_OpticalPortTypePath { + return &Component_Port_OpticalPort_OpticalPortTypePath{ NodePath: ygot.NewNodePath( []string{"state", "optical-port-type"}, map[string]interface{}{}, @@ -38812,9 +38807,9 @@ func (n *Component_Port_OpticalPort) OpticalPortType() *Component_Port_OpticalPo } } -// OpticalPortType returns from Component_Port_OpticalPortAny the path struct for its child "optical-port-type". -func (n *Component_Port_OpticalPortAny) OpticalPortType() *Component_Port_OpticalPort_OpticalPortTypeAny { - return &Component_Port_OpticalPort_OpticalPortTypeAny{ +// OpticalPortType returns from Component_Port_OpticalPortPathAny the path struct for its child "optical-port-type". +func (n *Component_Port_OpticalPortPathAny) OpticalPortType() *Component_Port_OpticalPort_OpticalPortTypePathAny { + return &Component_Port_OpticalPort_OpticalPortTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-port-type"}, map[string]interface{}{}, @@ -38823,9 +38818,9 @@ func (n *Component_Port_OpticalPortAny) OpticalPortType() *Component_Port_Optica } } -// OutputPower returns from Component_Port_OpticalPort the path struct for its child "output-power". -func (n *Component_Port_OpticalPort) OutputPower() *Component_Port_OpticalPort_OutputPower { - return &Component_Port_OpticalPort_OutputPower{ +// OutputPower returns from Component_Port_OpticalPortPath the path struct for its child "output-power". +func (n *Component_Port_OpticalPortPath) OutputPower() *Component_Port_OpticalPort_OutputPowerPath { + return &Component_Port_OpticalPort_OutputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -38834,9 +38829,9 @@ func (n *Component_Port_OpticalPort) OutputPower() *Component_Port_OpticalPort_O } } -// OutputPower returns from Component_Port_OpticalPortAny the path struct for its child "output-power". -func (n *Component_Port_OpticalPortAny) OutputPower() *Component_Port_OpticalPort_OutputPowerAny { - return &Component_Port_OpticalPort_OutputPowerAny{ +// OutputPower returns from Component_Port_OpticalPortPathAny the path struct for its child "output-power". +func (n *Component_Port_OpticalPortPathAny) OutputPower() *Component_Port_OpticalPort_OutputPowerPathAny { + return &Component_Port_OpticalPort_OutputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -38845,9 +38840,9 @@ func (n *Component_Port_OpticalPortAny) OutputPower() *Component_Port_OpticalPor } } -// Tilt returns from Component_Port_OpticalPort the path struct for its child "tilt". -func (n *Component_Port_OpticalPort) Tilt() *Component_Port_OpticalPort_Tilt { - return &Component_Port_OpticalPort_Tilt{ +// Tilt returns from Component_Port_OpticalPortPath the path struct for its child "tilt". +func (n *Component_Port_OpticalPortPath) Tilt() *Component_Port_OpticalPort_TiltPath { + return &Component_Port_OpticalPort_TiltPath{ NodePath: ygot.NewNodePath( []string{"state", "tilt"}, map[string]interface{}{}, @@ -38856,9 +38851,9 @@ func (n *Component_Port_OpticalPort) Tilt() *Component_Port_OpticalPort_Tilt { } } -// Tilt returns from Component_Port_OpticalPortAny the path struct for its child "tilt". -func (n *Component_Port_OpticalPortAny) Tilt() *Component_Port_OpticalPort_TiltAny { - return &Component_Port_OpticalPort_TiltAny{ +// Tilt returns from Component_Port_OpticalPortPathAny the path struct for its child "tilt". +func (n *Component_Port_OpticalPortPathAny) Tilt() *Component_Port_OpticalPort_TiltPathAny { + return &Component_Port_OpticalPort_TiltPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tilt"}, map[string]interface{}{}, @@ -38867,89 +38862,89 @@ func (n *Component_Port_OpticalPortAny) Tilt() *Component_Port_OpticalPort_TiltA } } -// Component_Port_OpticalPort_InputPower represents the /openconfig-platform/components/component/port/optical-port/state/input-power YANG schema element. -type Component_Port_OpticalPort_InputPower struct { +// Component_Port_OpticalPort_InputPowerPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power YANG schema element. +type Component_Port_OpticalPort_InputPowerPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPowerAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power YANG schema element. -type Component_Port_OpticalPort_InputPowerAny struct { +// Component_Port_OpticalPort_InputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power YANG schema element. +type Component_Port_OpticalPort_InputPowerPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_Avg represents the /openconfig-platform/components/component/port/optical-port/state/input-power/avg YANG schema element. -type Component_Port_OpticalPort_InputPower_Avg struct { +// Component_Port_OpticalPort_InputPower_AvgPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/avg YANG schema element. +type Component_Port_OpticalPort_InputPower_AvgPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/avg YANG schema element. -type Component_Port_OpticalPort_InputPower_AvgAny struct { +// Component_Port_OpticalPort_InputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/avg YANG schema element. +type Component_Port_OpticalPort_InputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_Instant represents the /openconfig-platform/components/component/port/optical-port/state/input-power/instant YANG schema element. -type Component_Port_OpticalPort_InputPower_Instant struct { +// Component_Port_OpticalPort_InputPower_InstantPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/instant YANG schema element. +type Component_Port_OpticalPort_InputPower_InstantPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/instant YANG schema element. -type Component_Port_OpticalPort_InputPower_InstantAny struct { +// Component_Port_OpticalPort_InputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/instant YANG schema element. +type Component_Port_OpticalPort_InputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_Interval represents the /openconfig-platform/components/component/port/optical-port/state/input-power/interval YANG schema element. -type Component_Port_OpticalPort_InputPower_Interval struct { +// Component_Port_OpticalPort_InputPower_IntervalPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/interval YANG schema element. +type Component_Port_OpticalPort_InputPower_IntervalPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/interval YANG schema element. -type Component_Port_OpticalPort_InputPower_IntervalAny struct { +// Component_Port_OpticalPort_InputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/interval YANG schema element. +type Component_Port_OpticalPort_InputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_Max represents the /openconfig-platform/components/component/port/optical-port/state/input-power/max YANG schema element. -type Component_Port_OpticalPort_InputPower_Max struct { +// Component_Port_OpticalPort_InputPower_MaxPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/max YANG schema element. +type Component_Port_OpticalPort_InputPower_MaxPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/max YANG schema element. -type Component_Port_OpticalPort_InputPower_MaxAny struct { +// Component_Port_OpticalPort_InputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/max YANG schema element. +type Component_Port_OpticalPort_InputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MaxTime represents the /openconfig-platform/components/component/port/optical-port/state/input-power/max-time YANG schema element. -type Component_Port_OpticalPort_InputPower_MaxTime struct { +// Component_Port_OpticalPort_InputPower_MaxTimePath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/max-time YANG schema element. +type Component_Port_OpticalPort_InputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/max-time YANG schema element. -type Component_Port_OpticalPort_InputPower_MaxTimeAny struct { +// Component_Port_OpticalPort_InputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/max-time YANG schema element. +type Component_Port_OpticalPort_InputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_Min represents the /openconfig-platform/components/component/port/optical-port/state/input-power/min YANG schema element. -type Component_Port_OpticalPort_InputPower_Min struct { +// Component_Port_OpticalPort_InputPower_MinPath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/min YANG schema element. +type Component_Port_OpticalPort_InputPower_MinPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/min YANG schema element. -type Component_Port_OpticalPort_InputPower_MinAny struct { +// Component_Port_OpticalPort_InputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/min YANG schema element. +type Component_Port_OpticalPort_InputPower_MinPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MinTime represents the /openconfig-platform/components/component/port/optical-port/state/input-power/min-time YANG schema element. -type Component_Port_OpticalPort_InputPower_MinTime struct { +// Component_Port_OpticalPort_InputPower_MinTimePath represents the /openconfig-platform/components/component/port/optical-port/state/input-power/min-time YANG schema element. +type Component_Port_OpticalPort_InputPower_MinTimePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_InputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/min-time YANG schema element. -type Component_Port_OpticalPort_InputPower_MinTimeAny struct { +// Component_Port_OpticalPort_InputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/input-power/min-time YANG schema element. +type Component_Port_OpticalPort_InputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Port_OpticalPort_InputPower the path struct for its child "avg". -func (n *Component_Port_OpticalPort_InputPower) Avg() *Component_Port_OpticalPort_InputPower_Avg { - return &Component_Port_OpticalPort_InputPower_Avg{ +// Avg returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "avg". +func (n *Component_Port_OpticalPort_InputPowerPath) Avg() *Component_Port_OpticalPort_InputPower_AvgPath { + return &Component_Port_OpticalPort_InputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38958,9 +38953,9 @@ func (n *Component_Port_OpticalPort_InputPower) Avg() *Component_Port_OpticalPor } } -// Avg returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "avg". -func (n *Component_Port_OpticalPort_InputPowerAny) Avg() *Component_Port_OpticalPort_InputPower_AvgAny { - return &Component_Port_OpticalPort_InputPower_AvgAny{ +// Avg returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "avg". +func (n *Component_Port_OpticalPort_InputPowerPathAny) Avg() *Component_Port_OpticalPort_InputPower_AvgPathAny { + return &Component_Port_OpticalPort_InputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -38969,9 +38964,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) Avg() *Component_Port_Optical } } -// Instant returns from Component_Port_OpticalPort_InputPower the path struct for its child "instant". -func (n *Component_Port_OpticalPort_InputPower) Instant() *Component_Port_OpticalPort_InputPower_Instant { - return &Component_Port_OpticalPort_InputPower_Instant{ +// Instant returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "instant". +func (n *Component_Port_OpticalPort_InputPowerPath) Instant() *Component_Port_OpticalPort_InputPower_InstantPath { + return &Component_Port_OpticalPort_InputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38980,9 +38975,9 @@ func (n *Component_Port_OpticalPort_InputPower) Instant() *Component_Port_Optica } } -// Instant returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "instant". -func (n *Component_Port_OpticalPort_InputPowerAny) Instant() *Component_Port_OpticalPort_InputPower_InstantAny { - return &Component_Port_OpticalPort_InputPower_InstantAny{ +// Instant returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "instant". +func (n *Component_Port_OpticalPort_InputPowerPathAny) Instant() *Component_Port_OpticalPort_InputPower_InstantPathAny { + return &Component_Port_OpticalPort_InputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -38991,9 +38986,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) Instant() *Component_Port_Opt } } -// Interval returns from Component_Port_OpticalPort_InputPower the path struct for its child "interval". -func (n *Component_Port_OpticalPort_InputPower) Interval() *Component_Port_OpticalPort_InputPower_Interval { - return &Component_Port_OpticalPort_InputPower_Interval{ +// Interval returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "interval". +func (n *Component_Port_OpticalPort_InputPowerPath) Interval() *Component_Port_OpticalPort_InputPower_IntervalPath { + return &Component_Port_OpticalPort_InputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39002,9 +38997,9 @@ func (n *Component_Port_OpticalPort_InputPower) Interval() *Component_Port_Optic } } -// Interval returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "interval". -func (n *Component_Port_OpticalPort_InputPowerAny) Interval() *Component_Port_OpticalPort_InputPower_IntervalAny { - return &Component_Port_OpticalPort_InputPower_IntervalAny{ +// Interval returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "interval". +func (n *Component_Port_OpticalPort_InputPowerPathAny) Interval() *Component_Port_OpticalPort_InputPower_IntervalPathAny { + return &Component_Port_OpticalPort_InputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39013,9 +39008,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) Interval() *Component_Port_Op } } -// Max returns from Component_Port_OpticalPort_InputPower the path struct for its child "max". -func (n *Component_Port_OpticalPort_InputPower) Max() *Component_Port_OpticalPort_InputPower_Max { - return &Component_Port_OpticalPort_InputPower_Max{ +// Max returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "max". +func (n *Component_Port_OpticalPort_InputPowerPath) Max() *Component_Port_OpticalPort_InputPower_MaxPath { + return &Component_Port_OpticalPort_InputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39024,9 +39019,9 @@ func (n *Component_Port_OpticalPort_InputPower) Max() *Component_Port_OpticalPor } } -// Max returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "max". -func (n *Component_Port_OpticalPort_InputPowerAny) Max() *Component_Port_OpticalPort_InputPower_MaxAny { - return &Component_Port_OpticalPort_InputPower_MaxAny{ +// Max returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "max". +func (n *Component_Port_OpticalPort_InputPowerPathAny) Max() *Component_Port_OpticalPort_InputPower_MaxPathAny { + return &Component_Port_OpticalPort_InputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39035,9 +39030,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) Max() *Component_Port_Optical } } -// MaxTime returns from Component_Port_OpticalPort_InputPower the path struct for its child "max-time". -func (n *Component_Port_OpticalPort_InputPower) MaxTime() *Component_Port_OpticalPort_InputPower_MaxTime { - return &Component_Port_OpticalPort_InputPower_MaxTime{ +// MaxTime returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "max-time". +func (n *Component_Port_OpticalPort_InputPowerPath) MaxTime() *Component_Port_OpticalPort_InputPower_MaxTimePath { + return &Component_Port_OpticalPort_InputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39046,9 +39041,9 @@ func (n *Component_Port_OpticalPort_InputPower) MaxTime() *Component_Port_Optica } } -// MaxTime returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "max-time". -func (n *Component_Port_OpticalPort_InputPowerAny) MaxTime() *Component_Port_OpticalPort_InputPower_MaxTimeAny { - return &Component_Port_OpticalPort_InputPower_MaxTimeAny{ +// MaxTime returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "max-time". +func (n *Component_Port_OpticalPort_InputPowerPathAny) MaxTime() *Component_Port_OpticalPort_InputPower_MaxTimePathAny { + return &Component_Port_OpticalPort_InputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39057,9 +39052,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) MaxTime() *Component_Port_Opt } } -// Min returns from Component_Port_OpticalPort_InputPower the path struct for its child "min". -func (n *Component_Port_OpticalPort_InputPower) Min() *Component_Port_OpticalPort_InputPower_Min { - return &Component_Port_OpticalPort_InputPower_Min{ +// Min returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "min". +func (n *Component_Port_OpticalPort_InputPowerPath) Min() *Component_Port_OpticalPort_InputPower_MinPath { + return &Component_Port_OpticalPort_InputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39068,9 +39063,9 @@ func (n *Component_Port_OpticalPort_InputPower) Min() *Component_Port_OpticalPor } } -// Min returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "min". -func (n *Component_Port_OpticalPort_InputPowerAny) Min() *Component_Port_OpticalPort_InputPower_MinAny { - return &Component_Port_OpticalPort_InputPower_MinAny{ +// Min returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "min". +func (n *Component_Port_OpticalPort_InputPowerPathAny) Min() *Component_Port_OpticalPort_InputPower_MinPathAny { + return &Component_Port_OpticalPort_InputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39079,9 +39074,9 @@ func (n *Component_Port_OpticalPort_InputPowerAny) Min() *Component_Port_Optical } } -// MinTime returns from Component_Port_OpticalPort_InputPower the path struct for its child "min-time". -func (n *Component_Port_OpticalPort_InputPower) MinTime() *Component_Port_OpticalPort_InputPower_MinTime { - return &Component_Port_OpticalPort_InputPower_MinTime{ +// MinTime returns from Component_Port_OpticalPort_InputPowerPath the path struct for its child "min-time". +func (n *Component_Port_OpticalPort_InputPowerPath) MinTime() *Component_Port_OpticalPort_InputPower_MinTimePath { + return &Component_Port_OpticalPort_InputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39090,9 +39085,9 @@ func (n *Component_Port_OpticalPort_InputPower) MinTime() *Component_Port_Optica } } -// MinTime returns from Component_Port_OpticalPort_InputPowerAny the path struct for its child "min-time". -func (n *Component_Port_OpticalPort_InputPowerAny) MinTime() *Component_Port_OpticalPort_InputPower_MinTimeAny { - return &Component_Port_OpticalPort_InputPower_MinTimeAny{ +// MinTime returns from Component_Port_OpticalPort_InputPowerPathAny the path struct for its child "min-time". +func (n *Component_Port_OpticalPort_InputPowerPathAny) MinTime() *Component_Port_OpticalPort_InputPower_MinTimePathAny { + return &Component_Port_OpticalPort_InputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39101,89 +39096,89 @@ func (n *Component_Port_OpticalPort_InputPowerAny) MinTime() *Component_Port_Opt } } -// Component_Port_OpticalPort_OutputPower represents the /openconfig-platform/components/component/port/optical-port/state/output-power YANG schema element. -type Component_Port_OpticalPort_OutputPower struct { +// Component_Port_OpticalPort_OutputPowerPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power YANG schema element. +type Component_Port_OpticalPort_OutputPowerPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power YANG schema element. -type Component_Port_OpticalPort_OutputPowerAny struct { +// Component_Port_OpticalPort_OutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power YANG schema element. +type Component_Port_OpticalPort_OutputPowerPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_Avg represents the /openconfig-platform/components/component/port/optical-port/state/output-power/avg YANG schema element. -type Component_Port_OpticalPort_OutputPower_Avg struct { +// Component_Port_OpticalPort_OutputPower_AvgPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/avg YANG schema element. +type Component_Port_OpticalPort_OutputPower_AvgPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/avg YANG schema element. -type Component_Port_OpticalPort_OutputPower_AvgAny struct { +// Component_Port_OpticalPort_OutputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/avg YANG schema element. +type Component_Port_OpticalPort_OutputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_Instant represents the /openconfig-platform/components/component/port/optical-port/state/output-power/instant YANG schema element. -type Component_Port_OpticalPort_OutputPower_Instant struct { +// Component_Port_OpticalPort_OutputPower_InstantPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/instant YANG schema element. +type Component_Port_OpticalPort_OutputPower_InstantPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/instant YANG schema element. -type Component_Port_OpticalPort_OutputPower_InstantAny struct { +// Component_Port_OpticalPort_OutputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/instant YANG schema element. +type Component_Port_OpticalPort_OutputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_Interval represents the /openconfig-platform/components/component/port/optical-port/state/output-power/interval YANG schema element. -type Component_Port_OpticalPort_OutputPower_Interval struct { +// Component_Port_OpticalPort_OutputPower_IntervalPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/interval YANG schema element. +type Component_Port_OpticalPort_OutputPower_IntervalPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/interval YANG schema element. -type Component_Port_OpticalPort_OutputPower_IntervalAny struct { +// Component_Port_OpticalPort_OutputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/interval YANG schema element. +type Component_Port_OpticalPort_OutputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_Max represents the /openconfig-platform/components/component/port/optical-port/state/output-power/max YANG schema element. -type Component_Port_OpticalPort_OutputPower_Max struct { +// Component_Port_OpticalPort_OutputPower_MaxPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/max YANG schema element. +type Component_Port_OpticalPort_OutputPower_MaxPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/max YANG schema element. -type Component_Port_OpticalPort_OutputPower_MaxAny struct { +// Component_Port_OpticalPort_OutputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/max YANG schema element. +type Component_Port_OpticalPort_OutputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MaxTime represents the /openconfig-platform/components/component/port/optical-port/state/output-power/max-time YANG schema element. -type Component_Port_OpticalPort_OutputPower_MaxTime struct { +// Component_Port_OpticalPort_OutputPower_MaxTimePath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/max-time YANG schema element. +type Component_Port_OpticalPort_OutputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/max-time YANG schema element. -type Component_Port_OpticalPort_OutputPower_MaxTimeAny struct { +// Component_Port_OpticalPort_OutputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/max-time YANG schema element. +type Component_Port_OpticalPort_OutputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_Min represents the /openconfig-platform/components/component/port/optical-port/state/output-power/min YANG schema element. -type Component_Port_OpticalPort_OutputPower_Min struct { +// Component_Port_OpticalPort_OutputPower_MinPath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/min YANG schema element. +type Component_Port_OpticalPort_OutputPower_MinPath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/min YANG schema element. -type Component_Port_OpticalPort_OutputPower_MinAny struct { +// Component_Port_OpticalPort_OutputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/min YANG schema element. +type Component_Port_OpticalPort_OutputPower_MinPathAny struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MinTime represents the /openconfig-platform/components/component/port/optical-port/state/output-power/min-time YANG schema element. -type Component_Port_OpticalPort_OutputPower_MinTime struct { +// Component_Port_OpticalPort_OutputPower_MinTimePath represents the /openconfig-platform/components/component/port/optical-port/state/output-power/min-time YANG schema element. +type Component_Port_OpticalPort_OutputPower_MinTimePath struct { *ygot.NodePath } -// Component_Port_OpticalPort_OutputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/min-time YANG schema element. -type Component_Port_OpticalPort_OutputPower_MinTimeAny struct { +// Component_Port_OpticalPort_OutputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/port/optical-port/state/output-power/min-time YANG schema element. +type Component_Port_OpticalPort_OutputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Port_OpticalPort_OutputPower the path struct for its child "avg". -func (n *Component_Port_OpticalPort_OutputPower) Avg() *Component_Port_OpticalPort_OutputPower_Avg { - return &Component_Port_OpticalPort_OutputPower_Avg{ +// Avg returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "avg". +func (n *Component_Port_OpticalPort_OutputPowerPath) Avg() *Component_Port_OpticalPort_OutputPower_AvgPath { + return &Component_Port_OpticalPort_OutputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -39192,9 +39187,9 @@ func (n *Component_Port_OpticalPort_OutputPower) Avg() *Component_Port_OpticalPo } } -// Avg returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "avg". -func (n *Component_Port_OpticalPort_OutputPowerAny) Avg() *Component_Port_OpticalPort_OutputPower_AvgAny { - return &Component_Port_OpticalPort_OutputPower_AvgAny{ +// Avg returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "avg". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) Avg() *Component_Port_OpticalPort_OutputPower_AvgPathAny { + return &Component_Port_OpticalPort_OutputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -39203,9 +39198,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) Avg() *Component_Port_Optica } } -// Instant returns from Component_Port_OpticalPort_OutputPower the path struct for its child "instant". -func (n *Component_Port_OpticalPort_OutputPower) Instant() *Component_Port_OpticalPort_OutputPower_Instant { - return &Component_Port_OpticalPort_OutputPower_Instant{ +// Instant returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "instant". +func (n *Component_Port_OpticalPort_OutputPowerPath) Instant() *Component_Port_OpticalPort_OutputPower_InstantPath { + return &Component_Port_OpticalPort_OutputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -39214,9 +39209,9 @@ func (n *Component_Port_OpticalPort_OutputPower) Instant() *Component_Port_Optic } } -// Instant returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "instant". -func (n *Component_Port_OpticalPort_OutputPowerAny) Instant() *Component_Port_OpticalPort_OutputPower_InstantAny { - return &Component_Port_OpticalPort_OutputPower_InstantAny{ +// Instant returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "instant". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) Instant() *Component_Port_OpticalPort_OutputPower_InstantPathAny { + return &Component_Port_OpticalPort_OutputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -39225,9 +39220,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) Instant() *Component_Port_Op } } -// Interval returns from Component_Port_OpticalPort_OutputPower the path struct for its child "interval". -func (n *Component_Port_OpticalPort_OutputPower) Interval() *Component_Port_OpticalPort_OutputPower_Interval { - return &Component_Port_OpticalPort_OutputPower_Interval{ +// Interval returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "interval". +func (n *Component_Port_OpticalPort_OutputPowerPath) Interval() *Component_Port_OpticalPort_OutputPower_IntervalPath { + return &Component_Port_OpticalPort_OutputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39236,9 +39231,9 @@ func (n *Component_Port_OpticalPort_OutputPower) Interval() *Component_Port_Opti } } -// Interval returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "interval". -func (n *Component_Port_OpticalPort_OutputPowerAny) Interval() *Component_Port_OpticalPort_OutputPower_IntervalAny { - return &Component_Port_OpticalPort_OutputPower_IntervalAny{ +// Interval returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "interval". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) Interval() *Component_Port_OpticalPort_OutputPower_IntervalPathAny { + return &Component_Port_OpticalPort_OutputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39247,9 +39242,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) Interval() *Component_Port_O } } -// Max returns from Component_Port_OpticalPort_OutputPower the path struct for its child "max". -func (n *Component_Port_OpticalPort_OutputPower) Max() *Component_Port_OpticalPort_OutputPower_Max { - return &Component_Port_OpticalPort_OutputPower_Max{ +// Max returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "max". +func (n *Component_Port_OpticalPort_OutputPowerPath) Max() *Component_Port_OpticalPort_OutputPower_MaxPath { + return &Component_Port_OpticalPort_OutputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39258,9 +39253,9 @@ func (n *Component_Port_OpticalPort_OutputPower) Max() *Component_Port_OpticalPo } } -// Max returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "max". -func (n *Component_Port_OpticalPort_OutputPowerAny) Max() *Component_Port_OpticalPort_OutputPower_MaxAny { - return &Component_Port_OpticalPort_OutputPower_MaxAny{ +// Max returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "max". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) Max() *Component_Port_OpticalPort_OutputPower_MaxPathAny { + return &Component_Port_OpticalPort_OutputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39269,9 +39264,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) Max() *Component_Port_Optica } } -// MaxTime returns from Component_Port_OpticalPort_OutputPower the path struct for its child "max-time". -func (n *Component_Port_OpticalPort_OutputPower) MaxTime() *Component_Port_OpticalPort_OutputPower_MaxTime { - return &Component_Port_OpticalPort_OutputPower_MaxTime{ +// MaxTime returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "max-time". +func (n *Component_Port_OpticalPort_OutputPowerPath) MaxTime() *Component_Port_OpticalPort_OutputPower_MaxTimePath { + return &Component_Port_OpticalPort_OutputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39280,9 +39275,9 @@ func (n *Component_Port_OpticalPort_OutputPower) MaxTime() *Component_Port_Optic } } -// MaxTime returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "max-time". -func (n *Component_Port_OpticalPort_OutputPowerAny) MaxTime() *Component_Port_OpticalPort_OutputPower_MaxTimeAny { - return &Component_Port_OpticalPort_OutputPower_MaxTimeAny{ +// MaxTime returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "max-time". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) MaxTime() *Component_Port_OpticalPort_OutputPower_MaxTimePathAny { + return &Component_Port_OpticalPort_OutputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39291,9 +39286,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) MaxTime() *Component_Port_Op } } -// Min returns from Component_Port_OpticalPort_OutputPower the path struct for its child "min". -func (n *Component_Port_OpticalPort_OutputPower) Min() *Component_Port_OpticalPort_OutputPower_Min { - return &Component_Port_OpticalPort_OutputPower_Min{ +// Min returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "min". +func (n *Component_Port_OpticalPort_OutputPowerPath) Min() *Component_Port_OpticalPort_OutputPower_MinPath { + return &Component_Port_OpticalPort_OutputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39302,9 +39297,9 @@ func (n *Component_Port_OpticalPort_OutputPower) Min() *Component_Port_OpticalPo } } -// Min returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "min". -func (n *Component_Port_OpticalPort_OutputPowerAny) Min() *Component_Port_OpticalPort_OutputPower_MinAny { - return &Component_Port_OpticalPort_OutputPower_MinAny{ +// Min returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "min". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) Min() *Component_Port_OpticalPort_OutputPower_MinPathAny { + return &Component_Port_OpticalPort_OutputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39313,9 +39308,9 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) Min() *Component_Port_Optica } } -// MinTime returns from Component_Port_OpticalPort_OutputPower the path struct for its child "min-time". -func (n *Component_Port_OpticalPort_OutputPower) MinTime() *Component_Port_OpticalPort_OutputPower_MinTime { - return &Component_Port_OpticalPort_OutputPower_MinTime{ +// MinTime returns from Component_Port_OpticalPort_OutputPowerPath the path struct for its child "min-time". +func (n *Component_Port_OpticalPort_OutputPowerPath) MinTime() *Component_Port_OpticalPort_OutputPower_MinTimePath { + return &Component_Port_OpticalPort_OutputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39324,9 +39319,9 @@ func (n *Component_Port_OpticalPort_OutputPower) MinTime() *Component_Port_Optic } } -// MinTime returns from Component_Port_OpticalPort_OutputPowerAny the path struct for its child "min-time". -func (n *Component_Port_OpticalPort_OutputPowerAny) MinTime() *Component_Port_OpticalPort_OutputPower_MinTimeAny { - return &Component_Port_OpticalPort_OutputPower_MinTimeAny{ +// MinTime returns from Component_Port_OpticalPort_OutputPowerPathAny the path struct for its child "min-time". +func (n *Component_Port_OpticalPort_OutputPowerPathAny) MinTime() *Component_Port_OpticalPort_OutputPower_MinTimePathAny { + return &Component_Port_OpticalPort_OutputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39335,59 +39330,59 @@ func (n *Component_Port_OpticalPort_OutputPowerAny) MinTime() *Component_Port_Op } } -// Component_PowerSupply represents the /openconfig-platform/components/component/power-supply YANG schema element. -type Component_PowerSupply struct { +// Component_PowerSupplyPath represents the /openconfig-platform/components/component/power-supply YANG schema element. +type Component_PowerSupplyPath struct { *ygot.NodePath } -// Component_PowerSupplyAny represents the wildcard version of the /openconfig-platform/components/component/power-supply YANG schema element. -type Component_PowerSupplyAny struct { +// Component_PowerSupplyPathAny represents the wildcard version of the /openconfig-platform/components/component/power-supply YANG schema element. +type Component_PowerSupplyPathAny struct { *ygot.NodePath } -// Component_Property represents the /openconfig-platform/components/component/properties/property YANG schema element. -type Component_Property struct { +// Component_PropertyPath represents the /openconfig-platform/components/component/properties/property YANG schema element. +type Component_PropertyPath struct { *ygot.NodePath } -// Component_PropertyAny represents the wildcard version of the /openconfig-platform/components/component/properties/property YANG schema element. -type Component_PropertyAny struct { +// Component_PropertyPathAny represents the wildcard version of the /openconfig-platform/components/component/properties/property YANG schema element. +type Component_PropertyPathAny struct { *ygot.NodePath } -// Component_Property_Configurable represents the /openconfig-platform/components/component/properties/property/state/configurable YANG schema element. -type Component_Property_Configurable struct { +// Component_Property_ConfigurablePath represents the /openconfig-platform/components/component/properties/property/state/configurable YANG schema element. +type Component_Property_ConfigurablePath struct { *ygot.NodePath } -// Component_Property_ConfigurableAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/state/configurable YANG schema element. -type Component_Property_ConfigurableAny struct { +// Component_Property_ConfigurablePathAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/state/configurable YANG schema element. +type Component_Property_ConfigurablePathAny struct { *ygot.NodePath } -// Component_Property_Name represents the /openconfig-platform/components/component/properties/property/state/name YANG schema element. -type Component_Property_Name struct { +// Component_Property_NamePath represents the /openconfig-platform/components/component/properties/property/config/name YANG schema element. +type Component_Property_NamePath struct { *ygot.NodePath } -// Component_Property_NameAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/state/name YANG schema element. -type Component_Property_NameAny struct { +// Component_Property_NamePathAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/config/name YANG schema element. +type Component_Property_NamePathAny struct { *ygot.NodePath } -// Component_Property_Value represents the /openconfig-platform/components/component/properties/property/state/value YANG schema element. -type Component_Property_Value struct { +// Component_Property_ValuePath represents the /openconfig-platform/components/component/properties/property/config/value YANG schema element. +type Component_Property_ValuePath struct { *ygot.NodePath } -// Component_Property_ValueAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/state/value YANG schema element. -type Component_Property_ValueAny struct { +// Component_Property_ValuePathAny represents the wildcard version of the /openconfig-platform/components/component/properties/property/config/value YANG schema element. +type Component_Property_ValuePathAny struct { *ygot.NodePath } -// Configurable returns from Component_Property the path struct for its child "configurable". -func (n *Component_Property) Configurable() *Component_Property_Configurable { - return &Component_Property_Configurable{ +// Configurable returns from Component_PropertyPath the path struct for its child "configurable". +func (n *Component_PropertyPath) Configurable() *Component_Property_ConfigurablePath { + return &Component_Property_ConfigurablePath{ NodePath: ygot.NewNodePath( []string{"state", "configurable"}, map[string]interface{}{}, @@ -39396,9 +39391,9 @@ func (n *Component_Property) Configurable() *Component_Property_Configurable { } } -// Configurable returns from Component_PropertyAny the path struct for its child "configurable". -func (n *Component_PropertyAny) Configurable() *Component_Property_ConfigurableAny { - return &Component_Property_ConfigurableAny{ +// Configurable returns from Component_PropertyPathAny the path struct for its child "configurable". +func (n *Component_PropertyPathAny) Configurable() *Component_Property_ConfigurablePathAny { + return &Component_Property_ConfigurablePathAny{ NodePath: ygot.NewNodePath( []string{"state", "configurable"}, map[string]interface{}{}, @@ -39407,215 +39402,215 @@ func (n *Component_PropertyAny) Configurable() *Component_Property_ConfigurableA } } -// Name returns from Component_Property the path struct for its child "name". -func (n *Component_Property) Name() *Component_Property_Name { - return &Component_Property_Name{ +// Name returns from Component_PropertyPath the path struct for its child "name". +func (n *Component_PropertyPath) Name() *Component_Property_NamePath { + return &Component_Property_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Component_PropertyAny the path struct for its child "name". -func (n *Component_PropertyAny) Name() *Component_Property_NameAny { - return &Component_Property_NameAny{ +// Name returns from Component_PropertyPathAny the path struct for its child "name". +func (n *Component_PropertyPathAny) Name() *Component_Property_NamePathAny { + return &Component_Property_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Value returns from Component_Property the path struct for its child "value". -func (n *Component_Property) Value() *Component_Property_Value { - return &Component_Property_Value{ +// Value returns from Component_PropertyPath the path struct for its child "value". +func (n *Component_PropertyPath) Value() *Component_Property_ValuePath { + return &Component_Property_ValuePath{ NodePath: ygot.NewNodePath( - []string{"state", "value"}, + []string{"config", "value"}, map[string]interface{}{}, n, ), } } -// Value returns from Component_PropertyAny the path struct for its child "value". -func (n *Component_PropertyAny) Value() *Component_Property_ValueAny { - return &Component_Property_ValueAny{ +// Value returns from Component_PropertyPathAny the path struct for its child "value". +func (n *Component_PropertyPathAny) Value() *Component_Property_ValuePathAny { + return &Component_Property_ValuePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "value"}, + []string{"config", "value"}, map[string]interface{}{}, n, ), } } -// Component_Storage represents the /openconfig-platform/components/component/storage YANG schema element. -type Component_Storage struct { +// Component_StoragePath represents the /openconfig-platform/components/component/storage YANG schema element. +type Component_StoragePath struct { *ygot.NodePath } -// Component_StorageAny represents the wildcard version of the /openconfig-platform/components/component/storage YANG schema element. -type Component_StorageAny struct { +// Component_StoragePathAny represents the wildcard version of the /openconfig-platform/components/component/storage YANG schema element. +type Component_StoragePathAny struct { *ygot.NodePath } -// Component_Subcomponent represents the /openconfig-platform/components/component/subcomponents/subcomponent YANG schema element. -type Component_Subcomponent struct { +// Component_SubcomponentPath represents the /openconfig-platform/components/component/subcomponents/subcomponent YANG schema element. +type Component_SubcomponentPath struct { *ygot.NodePath } -// Component_SubcomponentAny represents the wildcard version of the /openconfig-platform/components/component/subcomponents/subcomponent YANG schema element. -type Component_SubcomponentAny struct { +// Component_SubcomponentPathAny represents the wildcard version of the /openconfig-platform/components/component/subcomponents/subcomponent YANG schema element. +type Component_SubcomponentPathAny struct { *ygot.NodePath } -// Component_Subcomponent_Name represents the /openconfig-platform/components/component/subcomponents/subcomponent/state/name YANG schema element. -type Component_Subcomponent_Name struct { +// Component_Subcomponent_NamePath represents the /openconfig-platform/components/component/subcomponents/subcomponent/config/name YANG schema element. +type Component_Subcomponent_NamePath struct { *ygot.NodePath } -// Component_Subcomponent_NameAny represents the wildcard version of the /openconfig-platform/components/component/subcomponents/subcomponent/state/name YANG schema element. -type Component_Subcomponent_NameAny struct { +// Component_Subcomponent_NamePathAny represents the wildcard version of the /openconfig-platform/components/component/subcomponents/subcomponent/config/name YANG schema element. +type Component_Subcomponent_NamePathAny struct { *ygot.NodePath } -// Name returns from Component_Subcomponent the path struct for its child "name". -func (n *Component_Subcomponent) Name() *Component_Subcomponent_Name { - return &Component_Subcomponent_Name{ +// Name returns from Component_SubcomponentPath the path struct for its child "name". +func (n *Component_SubcomponentPath) Name() *Component_Subcomponent_NamePath { + return &Component_Subcomponent_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Component_SubcomponentAny the path struct for its child "name". -func (n *Component_SubcomponentAny) Name() *Component_Subcomponent_NameAny { - return &Component_Subcomponent_NameAny{ +// Name returns from Component_SubcomponentPathAny the path struct for its child "name". +func (n *Component_SubcomponentPathAny) Name() *Component_Subcomponent_NamePathAny { + return &Component_Subcomponent_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Component_Temperature represents the /openconfig-platform/components/component/state/temperature YANG schema element. -type Component_Temperature struct { +// Component_TemperaturePath represents the /openconfig-platform/components/component/state/temperature YANG schema element. +type Component_TemperaturePath struct { *ygot.NodePath } -// Component_TemperatureAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature YANG schema element. -type Component_TemperatureAny struct { +// Component_TemperaturePathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature YANG schema element. +type Component_TemperaturePathAny struct { *ygot.NodePath } -// Component_Temperature_AlarmSeverity represents the /openconfig-platform/components/component/state/temperature/alarm-severity YANG schema element. -type Component_Temperature_AlarmSeverity struct { +// Component_Temperature_AlarmSeverityPath represents the /openconfig-platform/components/component/state/temperature/alarm-severity YANG schema element. +type Component_Temperature_AlarmSeverityPath struct { *ygot.NodePath } -// Component_Temperature_AlarmSeverityAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-severity YANG schema element. -type Component_Temperature_AlarmSeverityAny struct { +// Component_Temperature_AlarmSeverityPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-severity YANG schema element. +type Component_Temperature_AlarmSeverityPathAny struct { *ygot.NodePath } -// Component_Temperature_AlarmStatus represents the /openconfig-platform/components/component/state/temperature/alarm-status YANG schema element. -type Component_Temperature_AlarmStatus struct { +// Component_Temperature_AlarmStatusPath represents the /openconfig-platform/components/component/state/temperature/alarm-status YANG schema element. +type Component_Temperature_AlarmStatusPath struct { *ygot.NodePath } -// Component_Temperature_AlarmStatusAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-status YANG schema element. -type Component_Temperature_AlarmStatusAny struct { +// Component_Temperature_AlarmStatusPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-status YANG schema element. +type Component_Temperature_AlarmStatusPathAny struct { *ygot.NodePath } -// Component_Temperature_AlarmThreshold represents the /openconfig-platform/components/component/state/temperature/alarm-threshold YANG schema element. -type Component_Temperature_AlarmThreshold struct { +// Component_Temperature_AlarmThresholdPath represents the /openconfig-platform/components/component/state/temperature/alarm-threshold YANG schema element. +type Component_Temperature_AlarmThresholdPath struct { *ygot.NodePath } -// Component_Temperature_AlarmThresholdAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-threshold YANG schema element. -type Component_Temperature_AlarmThresholdAny struct { +// Component_Temperature_AlarmThresholdPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/alarm-threshold YANG schema element. +type Component_Temperature_AlarmThresholdPathAny struct { *ygot.NodePath } -// Component_Temperature_Avg represents the /openconfig-platform/components/component/state/temperature/avg YANG schema element. -type Component_Temperature_Avg struct { +// Component_Temperature_AvgPath represents the /openconfig-platform/components/component/state/temperature/avg YANG schema element. +type Component_Temperature_AvgPath struct { *ygot.NodePath } -// Component_Temperature_AvgAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/avg YANG schema element. -type Component_Temperature_AvgAny struct { +// Component_Temperature_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/avg YANG schema element. +type Component_Temperature_AvgPathAny struct { *ygot.NodePath } -// Component_Temperature_Instant represents the /openconfig-platform/components/component/state/temperature/instant YANG schema element. -type Component_Temperature_Instant struct { +// Component_Temperature_InstantPath represents the /openconfig-platform/components/component/state/temperature/instant YANG schema element. +type Component_Temperature_InstantPath struct { *ygot.NodePath } -// Component_Temperature_InstantAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/instant YANG schema element. -type Component_Temperature_InstantAny struct { +// Component_Temperature_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/instant YANG schema element. +type Component_Temperature_InstantPathAny struct { *ygot.NodePath } -// Component_Temperature_Interval represents the /openconfig-platform/components/component/state/temperature/interval YANG schema element. -type Component_Temperature_Interval struct { +// Component_Temperature_IntervalPath represents the /openconfig-platform/components/component/state/temperature/interval YANG schema element. +type Component_Temperature_IntervalPath struct { *ygot.NodePath } -// Component_Temperature_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/interval YANG schema element. -type Component_Temperature_IntervalAny struct { +// Component_Temperature_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/interval YANG schema element. +type Component_Temperature_IntervalPathAny struct { *ygot.NodePath } -// Component_Temperature_Max represents the /openconfig-platform/components/component/state/temperature/max YANG schema element. -type Component_Temperature_Max struct { +// Component_Temperature_MaxPath represents the /openconfig-platform/components/component/state/temperature/max YANG schema element. +type Component_Temperature_MaxPath struct { *ygot.NodePath } -// Component_Temperature_MaxAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/max YANG schema element. -type Component_Temperature_MaxAny struct { +// Component_Temperature_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/max YANG schema element. +type Component_Temperature_MaxPathAny struct { *ygot.NodePath } -// Component_Temperature_MaxTime represents the /openconfig-platform/components/component/state/temperature/max-time YANG schema element. -type Component_Temperature_MaxTime struct { +// Component_Temperature_MaxTimePath represents the /openconfig-platform/components/component/state/temperature/max-time YANG schema element. +type Component_Temperature_MaxTimePath struct { *ygot.NodePath } -// Component_Temperature_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/max-time YANG schema element. -type Component_Temperature_MaxTimeAny struct { +// Component_Temperature_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/max-time YANG schema element. +type Component_Temperature_MaxTimePathAny struct { *ygot.NodePath } -// Component_Temperature_Min represents the /openconfig-platform/components/component/state/temperature/min YANG schema element. -type Component_Temperature_Min struct { +// Component_Temperature_MinPath represents the /openconfig-platform/components/component/state/temperature/min YANG schema element. +type Component_Temperature_MinPath struct { *ygot.NodePath } -// Component_Temperature_MinAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/min YANG schema element. -type Component_Temperature_MinAny struct { +// Component_Temperature_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/min YANG schema element. +type Component_Temperature_MinPathAny struct { *ygot.NodePath } -// Component_Temperature_MinTime represents the /openconfig-platform/components/component/state/temperature/min-time YANG schema element. -type Component_Temperature_MinTime struct { +// Component_Temperature_MinTimePath represents the /openconfig-platform/components/component/state/temperature/min-time YANG schema element. +type Component_Temperature_MinTimePath struct { *ygot.NodePath } -// Component_Temperature_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/min-time YANG schema element. -type Component_Temperature_MinTimeAny struct { +// Component_Temperature_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/state/temperature/min-time YANG schema element. +type Component_Temperature_MinTimePathAny struct { *ygot.NodePath } -// AlarmSeverity returns from Component_Temperature the path struct for its child "alarm-severity". -func (n *Component_Temperature) AlarmSeverity() *Component_Temperature_AlarmSeverity { - return &Component_Temperature_AlarmSeverity{ +// AlarmSeverity returns from Component_TemperaturePath the path struct for its child "alarm-severity". +func (n *Component_TemperaturePath) AlarmSeverity() *Component_Temperature_AlarmSeverityPath { + return &Component_Temperature_AlarmSeverityPath{ NodePath: ygot.NewNodePath( []string{"alarm-severity"}, map[string]interface{}{}, @@ -39624,9 +39619,9 @@ func (n *Component_Temperature) AlarmSeverity() *Component_Temperature_AlarmSeve } } -// AlarmSeverity returns from Component_TemperatureAny the path struct for its child "alarm-severity". -func (n *Component_TemperatureAny) AlarmSeverity() *Component_Temperature_AlarmSeverityAny { - return &Component_Temperature_AlarmSeverityAny{ +// AlarmSeverity returns from Component_TemperaturePathAny the path struct for its child "alarm-severity". +func (n *Component_TemperaturePathAny) AlarmSeverity() *Component_Temperature_AlarmSeverityPathAny { + return &Component_Temperature_AlarmSeverityPathAny{ NodePath: ygot.NewNodePath( []string{"alarm-severity"}, map[string]interface{}{}, @@ -39635,9 +39630,9 @@ func (n *Component_TemperatureAny) AlarmSeverity() *Component_Temperature_AlarmS } } -// AlarmStatus returns from Component_Temperature the path struct for its child "alarm-status". -func (n *Component_Temperature) AlarmStatus() *Component_Temperature_AlarmStatus { - return &Component_Temperature_AlarmStatus{ +// AlarmStatus returns from Component_TemperaturePath the path struct for its child "alarm-status". +func (n *Component_TemperaturePath) AlarmStatus() *Component_Temperature_AlarmStatusPath { + return &Component_Temperature_AlarmStatusPath{ NodePath: ygot.NewNodePath( []string{"alarm-status"}, map[string]interface{}{}, @@ -39646,9 +39641,9 @@ func (n *Component_Temperature) AlarmStatus() *Component_Temperature_AlarmStatus } } -// AlarmStatus returns from Component_TemperatureAny the path struct for its child "alarm-status". -func (n *Component_TemperatureAny) AlarmStatus() *Component_Temperature_AlarmStatusAny { - return &Component_Temperature_AlarmStatusAny{ +// AlarmStatus returns from Component_TemperaturePathAny the path struct for its child "alarm-status". +func (n *Component_TemperaturePathAny) AlarmStatus() *Component_Temperature_AlarmStatusPathAny { + return &Component_Temperature_AlarmStatusPathAny{ NodePath: ygot.NewNodePath( []string{"alarm-status"}, map[string]interface{}{}, @@ -39657,9 +39652,9 @@ func (n *Component_TemperatureAny) AlarmStatus() *Component_Temperature_AlarmSta } } -// AlarmThreshold returns from Component_Temperature the path struct for its child "alarm-threshold". -func (n *Component_Temperature) AlarmThreshold() *Component_Temperature_AlarmThreshold { - return &Component_Temperature_AlarmThreshold{ +// AlarmThreshold returns from Component_TemperaturePath the path struct for its child "alarm-threshold". +func (n *Component_TemperaturePath) AlarmThreshold() *Component_Temperature_AlarmThresholdPath { + return &Component_Temperature_AlarmThresholdPath{ NodePath: ygot.NewNodePath( []string{"alarm-threshold"}, map[string]interface{}{}, @@ -39668,9 +39663,9 @@ func (n *Component_Temperature) AlarmThreshold() *Component_Temperature_AlarmThr } } -// AlarmThreshold returns from Component_TemperatureAny the path struct for its child "alarm-threshold". -func (n *Component_TemperatureAny) AlarmThreshold() *Component_Temperature_AlarmThresholdAny { - return &Component_Temperature_AlarmThresholdAny{ +// AlarmThreshold returns from Component_TemperaturePathAny the path struct for its child "alarm-threshold". +func (n *Component_TemperaturePathAny) AlarmThreshold() *Component_Temperature_AlarmThresholdPathAny { + return &Component_Temperature_AlarmThresholdPathAny{ NodePath: ygot.NewNodePath( []string{"alarm-threshold"}, map[string]interface{}{}, @@ -39679,9 +39674,9 @@ func (n *Component_TemperatureAny) AlarmThreshold() *Component_Temperature_Alarm } } -// Avg returns from Component_Temperature the path struct for its child "avg". -func (n *Component_Temperature) Avg() *Component_Temperature_Avg { - return &Component_Temperature_Avg{ +// Avg returns from Component_TemperaturePath the path struct for its child "avg". +func (n *Component_TemperaturePath) Avg() *Component_Temperature_AvgPath { + return &Component_Temperature_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -39690,9 +39685,9 @@ func (n *Component_Temperature) Avg() *Component_Temperature_Avg { } } -// Avg returns from Component_TemperatureAny the path struct for its child "avg". -func (n *Component_TemperatureAny) Avg() *Component_Temperature_AvgAny { - return &Component_Temperature_AvgAny{ +// Avg returns from Component_TemperaturePathAny the path struct for its child "avg". +func (n *Component_TemperaturePathAny) Avg() *Component_Temperature_AvgPathAny { + return &Component_Temperature_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -39701,9 +39696,9 @@ func (n *Component_TemperatureAny) Avg() *Component_Temperature_AvgAny { } } -// Instant returns from Component_Temperature the path struct for its child "instant". -func (n *Component_Temperature) Instant() *Component_Temperature_Instant { - return &Component_Temperature_Instant{ +// Instant returns from Component_TemperaturePath the path struct for its child "instant". +func (n *Component_TemperaturePath) Instant() *Component_Temperature_InstantPath { + return &Component_Temperature_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -39712,9 +39707,9 @@ func (n *Component_Temperature) Instant() *Component_Temperature_Instant { } } -// Instant returns from Component_TemperatureAny the path struct for its child "instant". -func (n *Component_TemperatureAny) Instant() *Component_Temperature_InstantAny { - return &Component_Temperature_InstantAny{ +// Instant returns from Component_TemperaturePathAny the path struct for its child "instant". +func (n *Component_TemperaturePathAny) Instant() *Component_Temperature_InstantPathAny { + return &Component_Temperature_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -39723,9 +39718,9 @@ func (n *Component_TemperatureAny) Instant() *Component_Temperature_InstantAny { } } -// Interval returns from Component_Temperature the path struct for its child "interval". -func (n *Component_Temperature) Interval() *Component_Temperature_Interval { - return &Component_Temperature_Interval{ +// Interval returns from Component_TemperaturePath the path struct for its child "interval". +func (n *Component_TemperaturePath) Interval() *Component_Temperature_IntervalPath { + return &Component_Temperature_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39734,9 +39729,9 @@ func (n *Component_Temperature) Interval() *Component_Temperature_Interval { } } -// Interval returns from Component_TemperatureAny the path struct for its child "interval". -func (n *Component_TemperatureAny) Interval() *Component_Temperature_IntervalAny { - return &Component_Temperature_IntervalAny{ +// Interval returns from Component_TemperaturePathAny the path struct for its child "interval". +func (n *Component_TemperaturePathAny) Interval() *Component_Temperature_IntervalPathAny { + return &Component_Temperature_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -39745,9 +39740,9 @@ func (n *Component_TemperatureAny) Interval() *Component_Temperature_IntervalAny } } -// Max returns from Component_Temperature the path struct for its child "max". -func (n *Component_Temperature) Max() *Component_Temperature_Max { - return &Component_Temperature_Max{ +// Max returns from Component_TemperaturePath the path struct for its child "max". +func (n *Component_TemperaturePath) Max() *Component_Temperature_MaxPath { + return &Component_Temperature_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39756,9 +39751,9 @@ func (n *Component_Temperature) Max() *Component_Temperature_Max { } } -// Max returns from Component_TemperatureAny the path struct for its child "max". -func (n *Component_TemperatureAny) Max() *Component_Temperature_MaxAny { - return &Component_Temperature_MaxAny{ +// Max returns from Component_TemperaturePathAny the path struct for its child "max". +func (n *Component_TemperaturePathAny) Max() *Component_Temperature_MaxPathAny { + return &Component_Temperature_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -39767,9 +39762,9 @@ func (n *Component_TemperatureAny) Max() *Component_Temperature_MaxAny { } } -// MaxTime returns from Component_Temperature the path struct for its child "max-time". -func (n *Component_Temperature) MaxTime() *Component_Temperature_MaxTime { - return &Component_Temperature_MaxTime{ +// MaxTime returns from Component_TemperaturePath the path struct for its child "max-time". +func (n *Component_TemperaturePath) MaxTime() *Component_Temperature_MaxTimePath { + return &Component_Temperature_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39778,9 +39773,9 @@ func (n *Component_Temperature) MaxTime() *Component_Temperature_MaxTime { } } -// MaxTime returns from Component_TemperatureAny the path struct for its child "max-time". -func (n *Component_TemperatureAny) MaxTime() *Component_Temperature_MaxTimeAny { - return &Component_Temperature_MaxTimeAny{ +// MaxTime returns from Component_TemperaturePathAny the path struct for its child "max-time". +func (n *Component_TemperaturePathAny) MaxTime() *Component_Temperature_MaxTimePathAny { + return &Component_Temperature_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -39789,9 +39784,9 @@ func (n *Component_TemperatureAny) MaxTime() *Component_Temperature_MaxTimeAny { } } -// Min returns from Component_Temperature the path struct for its child "min". -func (n *Component_Temperature) Min() *Component_Temperature_Min { - return &Component_Temperature_Min{ +// Min returns from Component_TemperaturePath the path struct for its child "min". +func (n *Component_TemperaturePath) Min() *Component_Temperature_MinPath { + return &Component_Temperature_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39800,9 +39795,9 @@ func (n *Component_Temperature) Min() *Component_Temperature_Min { } } -// Min returns from Component_TemperatureAny the path struct for its child "min". -func (n *Component_TemperatureAny) Min() *Component_Temperature_MinAny { - return &Component_Temperature_MinAny{ +// Min returns from Component_TemperaturePathAny the path struct for its child "min". +func (n *Component_TemperaturePathAny) Min() *Component_Temperature_MinPathAny { + return &Component_Temperature_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -39811,9 +39806,9 @@ func (n *Component_TemperatureAny) Min() *Component_Temperature_MinAny { } } -// MinTime returns from Component_Temperature the path struct for its child "min-time". -func (n *Component_Temperature) MinTime() *Component_Temperature_MinTime { - return &Component_Temperature_MinTime{ +// MinTime returns from Component_TemperaturePath the path struct for its child "min-time". +func (n *Component_TemperaturePath) MinTime() *Component_Temperature_MinTimePath { + return &Component_Temperature_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39822,9 +39817,9 @@ func (n *Component_Temperature) MinTime() *Component_Temperature_MinTime { } } -// MinTime returns from Component_TemperatureAny the path struct for its child "min-time". -func (n *Component_TemperatureAny) MinTime() *Component_Temperature_MinTimeAny { - return &Component_Temperature_MinTimeAny{ +// MinTime returns from Component_TemperaturePathAny the path struct for its child "min-time". +func (n *Component_TemperaturePathAny) MinTime() *Component_Temperature_MinTimePathAny { + return &Component_Temperature_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -39833,229 +39828,229 @@ func (n *Component_TemperatureAny) MinTime() *Component_Temperature_MinTimeAny { } } -// Component_Transceiver represents the /openconfig-platform/components/component/transceiver YANG schema element. -type Component_Transceiver struct { +// Component_TransceiverPath represents the /openconfig-platform/components/component/transceiver YANG schema element. +type Component_TransceiverPath struct { *ygot.NodePath } -// Component_TransceiverAny represents the wildcard version of the /openconfig-platform/components/component/transceiver YANG schema element. -type Component_TransceiverAny struct { +// Component_TransceiverPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver YANG schema element. +type Component_TransceiverPathAny struct { *ygot.NodePath } -// Component_Transceiver_ConnectorType represents the /openconfig-platform/components/component/transceiver/state/connector-type YANG schema element. -type Component_Transceiver_ConnectorType struct { +// Component_Transceiver_ConnectorTypePath represents the /openconfig-platform/components/component/transceiver/state/connector-type YANG schema element. +type Component_Transceiver_ConnectorTypePath struct { *ygot.NodePath } -// Component_Transceiver_ConnectorTypeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/connector-type YANG schema element. -type Component_Transceiver_ConnectorTypeAny struct { +// Component_Transceiver_ConnectorTypePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/connector-type YANG schema element. +type Component_Transceiver_ConnectorTypePathAny struct { *ygot.NodePath } -// Component_Transceiver_DateCode represents the /openconfig-platform/components/component/transceiver/state/date-code YANG schema element. -type Component_Transceiver_DateCode struct { +// Component_Transceiver_DateCodePath represents the /openconfig-platform/components/component/transceiver/state/date-code YANG schema element. +type Component_Transceiver_DateCodePath struct { *ygot.NodePath } -// Component_Transceiver_DateCodeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/date-code YANG schema element. -type Component_Transceiver_DateCodeAny struct { +// Component_Transceiver_DateCodePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/date-code YANG schema element. +type Component_Transceiver_DateCodePathAny struct { *ygot.NodePath } -// Component_Transceiver_Enabled represents the /openconfig-platform/components/component/transceiver/state/enabled YANG schema element. -type Component_Transceiver_Enabled struct { +// Component_Transceiver_EnabledPath represents the /openconfig-platform/components/component/transceiver/config/enabled YANG schema element. +type Component_Transceiver_EnabledPath struct { *ygot.NodePath } -// Component_Transceiver_EnabledAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/enabled YANG schema element. -type Component_Transceiver_EnabledAny struct { +// Component_Transceiver_EnabledPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/config/enabled YANG schema element. +type Component_Transceiver_EnabledPathAny struct { *ygot.NodePath } -// Component_Transceiver_EthernetPmd represents the /openconfig-platform/components/component/transceiver/state/ethernet-pmd YANG schema element. -type Component_Transceiver_EthernetPmd struct { +// Component_Transceiver_EthernetPmdPath represents the /openconfig-platform/components/component/transceiver/state/ethernet-pmd YANG schema element. +type Component_Transceiver_EthernetPmdPath struct { *ygot.NodePath } -// Component_Transceiver_EthernetPmdAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/ethernet-pmd YANG schema element. -type Component_Transceiver_EthernetPmdAny struct { +// Component_Transceiver_EthernetPmdPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/ethernet-pmd YANG schema element. +type Component_Transceiver_EthernetPmdPathAny struct { *ygot.NodePath } -// Component_Transceiver_EthernetPmdPreconf represents the /openconfig-platform/components/component/transceiver/state/ethernet-pmd-preconf YANG schema element. -type Component_Transceiver_EthernetPmdPreconf struct { +// Component_Transceiver_EthernetPmdPreconfPath represents the /openconfig-platform/components/component/transceiver/config/ethernet-pmd-preconf YANG schema element. +type Component_Transceiver_EthernetPmdPreconfPath struct { *ygot.NodePath } -// Component_Transceiver_EthernetPmdPreconfAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/ethernet-pmd-preconf YANG schema element. -type Component_Transceiver_EthernetPmdPreconfAny struct { +// Component_Transceiver_EthernetPmdPreconfPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/config/ethernet-pmd-preconf YANG schema element. +type Component_Transceiver_EthernetPmdPreconfPathAny struct { *ygot.NodePath } -// Component_Transceiver_FaultCondition represents the /openconfig-platform/components/component/transceiver/state/fault-condition YANG schema element. -type Component_Transceiver_FaultCondition struct { +// Component_Transceiver_FaultConditionPath represents the /openconfig-platform/components/component/transceiver/state/fault-condition YANG schema element. +type Component_Transceiver_FaultConditionPath struct { *ygot.NodePath } -// Component_Transceiver_FaultConditionAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fault-condition YANG schema element. -type Component_Transceiver_FaultConditionAny struct { +// Component_Transceiver_FaultConditionPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fault-condition YANG schema element. +type Component_Transceiver_FaultConditionPathAny struct { *ygot.NodePath } -// Component_Transceiver_FecCorrectedBits represents the /openconfig-platform/components/component/transceiver/state/fec-corrected-bits YANG schema element. -type Component_Transceiver_FecCorrectedBits struct { +// Component_Transceiver_FecCorrectedBitsPath represents the /openconfig-platform/components/component/transceiver/state/fec-corrected-bits YANG schema element. +type Component_Transceiver_FecCorrectedBitsPath struct { *ygot.NodePath } -// Component_Transceiver_FecCorrectedBitsAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-corrected-bits YANG schema element. -type Component_Transceiver_FecCorrectedBitsAny struct { +// Component_Transceiver_FecCorrectedBitsPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-corrected-bits YANG schema element. +type Component_Transceiver_FecCorrectedBitsPathAny struct { *ygot.NodePath } -// Component_Transceiver_FecCorrectedBytes represents the /openconfig-platform/components/component/transceiver/state/fec-corrected-bytes YANG schema element. -type Component_Transceiver_FecCorrectedBytes struct { +// Component_Transceiver_FecCorrectedBytesPath represents the /openconfig-platform/components/component/transceiver/state/fec-corrected-bytes YANG schema element. +type Component_Transceiver_FecCorrectedBytesPath struct { *ygot.NodePath } -// Component_Transceiver_FecCorrectedBytesAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-corrected-bytes YANG schema element. -type Component_Transceiver_FecCorrectedBytesAny struct { +// Component_Transceiver_FecCorrectedBytesPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-corrected-bytes YANG schema element. +type Component_Transceiver_FecCorrectedBytesPathAny struct { *ygot.NodePath } -// Component_Transceiver_FecMode represents the /openconfig-platform/components/component/transceiver/state/fec-mode YANG schema element. -type Component_Transceiver_FecMode struct { +// Component_Transceiver_FecModePath represents the /openconfig-platform/components/component/transceiver/config/fec-mode YANG schema element. +type Component_Transceiver_FecModePath struct { *ygot.NodePath } -// Component_Transceiver_FecModeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-mode YANG schema element. -type Component_Transceiver_FecModeAny struct { +// Component_Transceiver_FecModePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/config/fec-mode YANG schema element. +type Component_Transceiver_FecModePathAny struct { *ygot.NodePath } -// Component_Transceiver_FecStatus represents the /openconfig-platform/components/component/transceiver/state/fec-status YANG schema element. -type Component_Transceiver_FecStatus struct { +// Component_Transceiver_FecStatusPath represents the /openconfig-platform/components/component/transceiver/state/fec-status YANG schema element. +type Component_Transceiver_FecStatusPath struct { *ygot.NodePath } -// Component_Transceiver_FecStatusAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-status YANG schema element. -type Component_Transceiver_FecStatusAny struct { +// Component_Transceiver_FecStatusPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-status YANG schema element. +type Component_Transceiver_FecStatusPathAny struct { *ygot.NodePath } -// Component_Transceiver_FecUncorrectableBlocks represents the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-blocks YANG schema element. -type Component_Transceiver_FecUncorrectableBlocks struct { +// Component_Transceiver_FecUncorrectableBlocksPath represents the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-blocks YANG schema element. +type Component_Transceiver_FecUncorrectableBlocksPath struct { *ygot.NodePath } -// Component_Transceiver_FecUncorrectableBlocksAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-blocks YANG schema element. -type Component_Transceiver_FecUncorrectableBlocksAny struct { +// Component_Transceiver_FecUncorrectableBlocksPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-blocks YANG schema element. +type Component_Transceiver_FecUncorrectableBlocksPathAny struct { *ygot.NodePath } -// Component_Transceiver_FecUncorrectableWords represents the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-words YANG schema element. -type Component_Transceiver_FecUncorrectableWords struct { +// Component_Transceiver_FecUncorrectableWordsPath represents the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-words YANG schema element. +type Component_Transceiver_FecUncorrectableWordsPath struct { *ygot.NodePath } -// Component_Transceiver_FecUncorrectableWordsAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-words YANG schema element. -type Component_Transceiver_FecUncorrectableWordsAny struct { +// Component_Transceiver_FecUncorrectableWordsPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/fec-uncorrectable-words YANG schema element. +type Component_Transceiver_FecUncorrectableWordsPathAny struct { *ygot.NodePath } -// Component_Transceiver_FormFactor represents the /openconfig-platform/components/component/transceiver/state/form-factor YANG schema element. -type Component_Transceiver_FormFactor struct { +// Component_Transceiver_FormFactorPath represents the /openconfig-platform/components/component/transceiver/state/form-factor YANG schema element. +type Component_Transceiver_FormFactorPath struct { *ygot.NodePath } -// Component_Transceiver_FormFactorAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/form-factor YANG schema element. -type Component_Transceiver_FormFactorAny struct { +// Component_Transceiver_FormFactorPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/form-factor YANG schema element. +type Component_Transceiver_FormFactorPathAny struct { *ygot.NodePath } -// Component_Transceiver_FormFactorPreconf represents the /openconfig-platform/components/component/transceiver/state/form-factor-preconf YANG schema element. -type Component_Transceiver_FormFactorPreconf struct { +// Component_Transceiver_FormFactorPreconfPath represents the /openconfig-platform/components/component/transceiver/config/form-factor-preconf YANG schema element. +type Component_Transceiver_FormFactorPreconfPath struct { *ygot.NodePath } -// Component_Transceiver_FormFactorPreconfAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/form-factor-preconf YANG schema element. -type Component_Transceiver_FormFactorPreconfAny struct { +// Component_Transceiver_FormFactorPreconfPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/config/form-factor-preconf YANG schema element. +type Component_Transceiver_FormFactorPreconfPathAny struct { *ygot.NodePath } -// Component_Transceiver_OtnComplianceCode represents the /openconfig-platform/components/component/transceiver/state/otn-compliance-code YANG schema element. -type Component_Transceiver_OtnComplianceCode struct { +// Component_Transceiver_OtnComplianceCodePath represents the /openconfig-platform/components/component/transceiver/state/otn-compliance-code YANG schema element. +type Component_Transceiver_OtnComplianceCodePath struct { *ygot.NodePath } -// Component_Transceiver_OtnComplianceCodeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/otn-compliance-code YANG schema element. -type Component_Transceiver_OtnComplianceCodeAny struct { +// Component_Transceiver_OtnComplianceCodePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/otn-compliance-code YANG schema element. +type Component_Transceiver_OtnComplianceCodePathAny struct { *ygot.NodePath } -// Component_Transceiver_Present represents the /openconfig-platform/components/component/transceiver/state/present YANG schema element. -type Component_Transceiver_Present struct { +// Component_Transceiver_PresentPath represents the /openconfig-platform/components/component/transceiver/state/present YANG schema element. +type Component_Transceiver_PresentPath struct { *ygot.NodePath } -// Component_Transceiver_PresentAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/present YANG schema element. -type Component_Transceiver_PresentAny struct { +// Component_Transceiver_PresentPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/present YANG schema element. +type Component_Transceiver_PresentPathAny struct { *ygot.NodePath } -// Component_Transceiver_SerialNo represents the /openconfig-platform/components/component/transceiver/state/serial-no YANG schema element. -type Component_Transceiver_SerialNo struct { +// Component_Transceiver_SerialNoPath represents the /openconfig-platform/components/component/transceiver/state/serial-no YANG schema element. +type Component_Transceiver_SerialNoPath struct { *ygot.NodePath } -// Component_Transceiver_SerialNoAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/serial-no YANG schema element. -type Component_Transceiver_SerialNoAny struct { +// Component_Transceiver_SerialNoPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/serial-no YANG schema element. +type Component_Transceiver_SerialNoPathAny struct { *ygot.NodePath } -// Component_Transceiver_SonetSdhComplianceCode represents the /openconfig-platform/components/component/transceiver/state/sonet-sdh-compliance-code YANG schema element. -type Component_Transceiver_SonetSdhComplianceCode struct { +// Component_Transceiver_SonetSdhComplianceCodePath represents the /openconfig-platform/components/component/transceiver/state/sonet-sdh-compliance-code YANG schema element. +type Component_Transceiver_SonetSdhComplianceCodePath struct { *ygot.NodePath } -// Component_Transceiver_SonetSdhComplianceCodeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/sonet-sdh-compliance-code YANG schema element. -type Component_Transceiver_SonetSdhComplianceCodeAny struct { +// Component_Transceiver_SonetSdhComplianceCodePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/sonet-sdh-compliance-code YANG schema element. +type Component_Transceiver_SonetSdhComplianceCodePathAny struct { *ygot.NodePath } -// Component_Transceiver_Vendor represents the /openconfig-platform/components/component/transceiver/state/vendor YANG schema element. -type Component_Transceiver_Vendor struct { +// Component_Transceiver_VendorPath represents the /openconfig-platform/components/component/transceiver/state/vendor YANG schema element. +type Component_Transceiver_VendorPath struct { *ygot.NodePath } -// Component_Transceiver_VendorAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor YANG schema element. -type Component_Transceiver_VendorAny struct { +// Component_Transceiver_VendorPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor YANG schema element. +type Component_Transceiver_VendorPathAny struct { *ygot.NodePath } -// Component_Transceiver_VendorPart represents the /openconfig-platform/components/component/transceiver/state/vendor-part YANG schema element. -type Component_Transceiver_VendorPart struct { +// Component_Transceiver_VendorPartPath represents the /openconfig-platform/components/component/transceiver/state/vendor-part YANG schema element. +type Component_Transceiver_VendorPartPath struct { *ygot.NodePath } -// Component_Transceiver_VendorPartAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor-part YANG schema element. -type Component_Transceiver_VendorPartAny struct { +// Component_Transceiver_VendorPartPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor-part YANG schema element. +type Component_Transceiver_VendorPartPathAny struct { *ygot.NodePath } -// Component_Transceiver_VendorRev represents the /openconfig-platform/components/component/transceiver/state/vendor-rev YANG schema element. -type Component_Transceiver_VendorRev struct { +// Component_Transceiver_VendorRevPath represents the /openconfig-platform/components/component/transceiver/state/vendor-rev YANG schema element. +type Component_Transceiver_VendorRevPath struct { *ygot.NodePath } -// Component_Transceiver_VendorRevAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor-rev YANG schema element. -type Component_Transceiver_VendorRevAny struct { +// Component_Transceiver_VendorRevPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/vendor-rev YANG schema element. +type Component_Transceiver_VendorRevPathAny struct { *ygot.NodePath } -// ChannelAny returns from Component_Transceiver the path struct for its child "channel". -func (n *Component_Transceiver) ChannelAny() *Component_Transceiver_ChannelAny { - return &Component_Transceiver_ChannelAny{ +// ChannelAny returns from Component_TransceiverPath the path struct for its child "channel". +func (n *Component_TransceiverPath) ChannelAny() *Component_Transceiver_ChannelPathAny { + return &Component_Transceiver_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"physical-channels", "channel"}, map[string]interface{}{"index": "*"}, @@ -40064,9 +40059,9 @@ func (n *Component_Transceiver) ChannelAny() *Component_Transceiver_ChannelAny { } } -// ChannelAny returns from Component_TransceiverAny the path struct for its child "channel". -func (n *Component_TransceiverAny) ChannelAny() *Component_Transceiver_ChannelAny { - return &Component_Transceiver_ChannelAny{ +// ChannelAny returns from Component_TransceiverPathAny the path struct for its child "channel". +func (n *Component_TransceiverPathAny) ChannelAny() *Component_Transceiver_ChannelPathAny { + return &Component_Transceiver_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"physical-channels", "channel"}, map[string]interface{}{"index": "*"}, @@ -40075,9 +40070,9 @@ func (n *Component_TransceiverAny) ChannelAny() *Component_Transceiver_ChannelAn } } -// Channel returns from Component_Transceiver the path struct for its child "channel". -func (n *Component_Transceiver) Channel(Index uint16) *Component_Transceiver_Channel { - return &Component_Transceiver_Channel{ +// Channel returns from Component_TransceiverPath the path struct for its child "channel". +func (n *Component_TransceiverPath) Channel(Index uint16) *Component_Transceiver_ChannelPath { + return &Component_Transceiver_ChannelPath{ NodePath: ygot.NewNodePath( []string{"physical-channels", "channel"}, map[string]interface{}{"index": Index}, @@ -40086,9 +40081,9 @@ func (n *Component_Transceiver) Channel(Index uint16) *Component_Transceiver_Cha } } -// Channel returns from Component_TransceiverAny the path struct for its child "channel". -func (n *Component_TransceiverAny) Channel(Index uint16) *Component_Transceiver_ChannelAny { - return &Component_Transceiver_ChannelAny{ +// Channel returns from Component_TransceiverPathAny the path struct for its child "channel". +func (n *Component_TransceiverPathAny) Channel(Index uint16) *Component_Transceiver_ChannelPathAny { + return &Component_Transceiver_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"physical-channels", "channel"}, map[string]interface{}{"index": Index}, @@ -40097,9 +40092,9 @@ func (n *Component_TransceiverAny) Channel(Index uint16) *Component_Transceiver_ } } -// ConnectorType returns from Component_Transceiver the path struct for its child "connector-type". -func (n *Component_Transceiver) ConnectorType() *Component_Transceiver_ConnectorType { - return &Component_Transceiver_ConnectorType{ +// ConnectorType returns from Component_TransceiverPath the path struct for its child "connector-type". +func (n *Component_TransceiverPath) ConnectorType() *Component_Transceiver_ConnectorTypePath { + return &Component_Transceiver_ConnectorTypePath{ NodePath: ygot.NewNodePath( []string{"state", "connector-type"}, map[string]interface{}{}, @@ -40108,9 +40103,9 @@ func (n *Component_Transceiver) ConnectorType() *Component_Transceiver_Connector } } -// ConnectorType returns from Component_TransceiverAny the path struct for its child "connector-type". -func (n *Component_TransceiverAny) ConnectorType() *Component_Transceiver_ConnectorTypeAny { - return &Component_Transceiver_ConnectorTypeAny{ +// ConnectorType returns from Component_TransceiverPathAny the path struct for its child "connector-type". +func (n *Component_TransceiverPathAny) ConnectorType() *Component_Transceiver_ConnectorTypePathAny { + return &Component_Transceiver_ConnectorTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "connector-type"}, map[string]interface{}{}, @@ -40119,9 +40114,9 @@ func (n *Component_TransceiverAny) ConnectorType() *Component_Transceiver_Connec } } -// DateCode returns from Component_Transceiver the path struct for its child "date-code". -func (n *Component_Transceiver) DateCode() *Component_Transceiver_DateCode { - return &Component_Transceiver_DateCode{ +// DateCode returns from Component_TransceiverPath the path struct for its child "date-code". +func (n *Component_TransceiverPath) DateCode() *Component_Transceiver_DateCodePath { + return &Component_Transceiver_DateCodePath{ NodePath: ygot.NewNodePath( []string{"state", "date-code"}, map[string]interface{}{}, @@ -40130,9 +40125,9 @@ func (n *Component_Transceiver) DateCode() *Component_Transceiver_DateCode { } } -// DateCode returns from Component_TransceiverAny the path struct for its child "date-code". -func (n *Component_TransceiverAny) DateCode() *Component_Transceiver_DateCodeAny { - return &Component_Transceiver_DateCodeAny{ +// DateCode returns from Component_TransceiverPathAny the path struct for its child "date-code". +func (n *Component_TransceiverPathAny) DateCode() *Component_Transceiver_DateCodePathAny { + return &Component_Transceiver_DateCodePathAny{ NodePath: ygot.NewNodePath( []string{"state", "date-code"}, map[string]interface{}{}, @@ -40141,31 +40136,31 @@ func (n *Component_TransceiverAny) DateCode() *Component_Transceiver_DateCodeAny } } -// Enabled returns from Component_Transceiver the path struct for its child "enabled". -func (n *Component_Transceiver) Enabled() *Component_Transceiver_Enabled { - return &Component_Transceiver_Enabled{ +// Enabled returns from Component_TransceiverPath the path struct for its child "enabled". +func (n *Component_TransceiverPath) Enabled() *Component_Transceiver_EnabledPath { + return &Component_Transceiver_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Component_TransceiverAny the path struct for its child "enabled". -func (n *Component_TransceiverAny) Enabled() *Component_Transceiver_EnabledAny { - return &Component_Transceiver_EnabledAny{ +// Enabled returns from Component_TransceiverPathAny the path struct for its child "enabled". +func (n *Component_TransceiverPathAny) Enabled() *Component_Transceiver_EnabledPathAny { + return &Component_Transceiver_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// EthernetPmd returns from Component_Transceiver the path struct for its child "ethernet-pmd". -func (n *Component_Transceiver) EthernetPmd() *Component_Transceiver_EthernetPmd { - return &Component_Transceiver_EthernetPmd{ +// EthernetPmd returns from Component_TransceiverPath the path struct for its child "ethernet-pmd". +func (n *Component_TransceiverPath) EthernetPmd() *Component_Transceiver_EthernetPmdPath { + return &Component_Transceiver_EthernetPmdPath{ NodePath: ygot.NewNodePath( []string{"state", "ethernet-pmd"}, map[string]interface{}{}, @@ -40174,9 +40169,9 @@ func (n *Component_Transceiver) EthernetPmd() *Component_Transceiver_EthernetPmd } } -// EthernetPmd returns from Component_TransceiverAny the path struct for its child "ethernet-pmd". -func (n *Component_TransceiverAny) EthernetPmd() *Component_Transceiver_EthernetPmdAny { - return &Component_Transceiver_EthernetPmdAny{ +// EthernetPmd returns from Component_TransceiverPathAny the path struct for its child "ethernet-pmd". +func (n *Component_TransceiverPathAny) EthernetPmd() *Component_Transceiver_EthernetPmdPathAny { + return &Component_Transceiver_EthernetPmdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ethernet-pmd"}, map[string]interface{}{}, @@ -40185,31 +40180,31 @@ func (n *Component_TransceiverAny) EthernetPmd() *Component_Transceiver_Ethernet } } -// EthernetPmdPreconf returns from Component_Transceiver the path struct for its child "ethernet-pmd-preconf". -func (n *Component_Transceiver) EthernetPmdPreconf() *Component_Transceiver_EthernetPmdPreconf { - return &Component_Transceiver_EthernetPmdPreconf{ +// EthernetPmdPreconf returns from Component_TransceiverPath the path struct for its child "ethernet-pmd-preconf". +func (n *Component_TransceiverPath) EthernetPmdPreconf() *Component_Transceiver_EthernetPmdPreconfPath { + return &Component_Transceiver_EthernetPmdPreconfPath{ NodePath: ygot.NewNodePath( - []string{"state", "ethernet-pmd-preconf"}, + []string{"config", "ethernet-pmd-preconf"}, map[string]interface{}{}, n, ), } } -// EthernetPmdPreconf returns from Component_TransceiverAny the path struct for its child "ethernet-pmd-preconf". -func (n *Component_TransceiverAny) EthernetPmdPreconf() *Component_Transceiver_EthernetPmdPreconfAny { - return &Component_Transceiver_EthernetPmdPreconfAny{ +// EthernetPmdPreconf returns from Component_TransceiverPathAny the path struct for its child "ethernet-pmd-preconf". +func (n *Component_TransceiverPathAny) EthernetPmdPreconf() *Component_Transceiver_EthernetPmdPreconfPathAny { + return &Component_Transceiver_EthernetPmdPreconfPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ethernet-pmd-preconf"}, + []string{"config", "ethernet-pmd-preconf"}, map[string]interface{}{}, n, ), } } -// FaultCondition returns from Component_Transceiver the path struct for its child "fault-condition". -func (n *Component_Transceiver) FaultCondition() *Component_Transceiver_FaultCondition { - return &Component_Transceiver_FaultCondition{ +// FaultCondition returns from Component_TransceiverPath the path struct for its child "fault-condition". +func (n *Component_TransceiverPath) FaultCondition() *Component_Transceiver_FaultConditionPath { + return &Component_Transceiver_FaultConditionPath{ NodePath: ygot.NewNodePath( []string{"state", "fault-condition"}, map[string]interface{}{}, @@ -40218,9 +40213,9 @@ func (n *Component_Transceiver) FaultCondition() *Component_Transceiver_FaultCon } } -// FaultCondition returns from Component_TransceiverAny the path struct for its child "fault-condition". -func (n *Component_TransceiverAny) FaultCondition() *Component_Transceiver_FaultConditionAny { - return &Component_Transceiver_FaultConditionAny{ +// FaultCondition returns from Component_TransceiverPathAny the path struct for its child "fault-condition". +func (n *Component_TransceiverPathAny) FaultCondition() *Component_Transceiver_FaultConditionPathAny { + return &Component_Transceiver_FaultConditionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fault-condition"}, map[string]interface{}{}, @@ -40229,9 +40224,9 @@ func (n *Component_TransceiverAny) FaultCondition() *Component_Transceiver_Fault } } -// FecCorrectedBits returns from Component_Transceiver the path struct for its child "fec-corrected-bits". -func (n *Component_Transceiver) FecCorrectedBits() *Component_Transceiver_FecCorrectedBits { - return &Component_Transceiver_FecCorrectedBits{ +// FecCorrectedBits returns from Component_TransceiverPath the path struct for its child "fec-corrected-bits". +func (n *Component_TransceiverPath) FecCorrectedBits() *Component_Transceiver_FecCorrectedBitsPath { + return &Component_Transceiver_FecCorrectedBitsPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bits"}, map[string]interface{}{}, @@ -40240,9 +40235,9 @@ func (n *Component_Transceiver) FecCorrectedBits() *Component_Transceiver_FecCor } } -// FecCorrectedBits returns from Component_TransceiverAny the path struct for its child "fec-corrected-bits". -func (n *Component_TransceiverAny) FecCorrectedBits() *Component_Transceiver_FecCorrectedBitsAny { - return &Component_Transceiver_FecCorrectedBitsAny{ +// FecCorrectedBits returns from Component_TransceiverPathAny the path struct for its child "fec-corrected-bits". +func (n *Component_TransceiverPathAny) FecCorrectedBits() *Component_Transceiver_FecCorrectedBitsPathAny { + return &Component_Transceiver_FecCorrectedBitsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bits"}, map[string]interface{}{}, @@ -40251,9 +40246,9 @@ func (n *Component_TransceiverAny) FecCorrectedBits() *Component_Transceiver_Fec } } -// FecCorrectedBytes returns from Component_Transceiver the path struct for its child "fec-corrected-bytes". -func (n *Component_Transceiver) FecCorrectedBytes() *Component_Transceiver_FecCorrectedBytes { - return &Component_Transceiver_FecCorrectedBytes{ +// FecCorrectedBytes returns from Component_TransceiverPath the path struct for its child "fec-corrected-bytes". +func (n *Component_TransceiverPath) FecCorrectedBytes() *Component_Transceiver_FecCorrectedBytesPath { + return &Component_Transceiver_FecCorrectedBytesPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bytes"}, map[string]interface{}{}, @@ -40262,9 +40257,9 @@ func (n *Component_Transceiver) FecCorrectedBytes() *Component_Transceiver_FecCo } } -// FecCorrectedBytes returns from Component_TransceiverAny the path struct for its child "fec-corrected-bytes". -func (n *Component_TransceiverAny) FecCorrectedBytes() *Component_Transceiver_FecCorrectedBytesAny { - return &Component_Transceiver_FecCorrectedBytesAny{ +// FecCorrectedBytes returns from Component_TransceiverPathAny the path struct for its child "fec-corrected-bytes". +func (n *Component_TransceiverPathAny) FecCorrectedBytes() *Component_Transceiver_FecCorrectedBytesPathAny { + return &Component_Transceiver_FecCorrectedBytesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bytes"}, map[string]interface{}{}, @@ -40273,31 +40268,31 @@ func (n *Component_TransceiverAny) FecCorrectedBytes() *Component_Transceiver_Fe } } -// FecMode returns from Component_Transceiver the path struct for its child "fec-mode". -func (n *Component_Transceiver) FecMode() *Component_Transceiver_FecMode { - return &Component_Transceiver_FecMode{ +// FecMode returns from Component_TransceiverPath the path struct for its child "fec-mode". +func (n *Component_TransceiverPath) FecMode() *Component_Transceiver_FecModePath { + return &Component_Transceiver_FecModePath{ NodePath: ygot.NewNodePath( - []string{"state", "fec-mode"}, + []string{"config", "fec-mode"}, map[string]interface{}{}, n, ), } } -// FecMode returns from Component_TransceiverAny the path struct for its child "fec-mode". -func (n *Component_TransceiverAny) FecMode() *Component_Transceiver_FecModeAny { - return &Component_Transceiver_FecModeAny{ +// FecMode returns from Component_TransceiverPathAny the path struct for its child "fec-mode". +func (n *Component_TransceiverPathAny) FecMode() *Component_Transceiver_FecModePathAny { + return &Component_Transceiver_FecModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "fec-mode"}, + []string{"config", "fec-mode"}, map[string]interface{}{}, n, ), } } -// FecStatus returns from Component_Transceiver the path struct for its child "fec-status". -func (n *Component_Transceiver) FecStatus() *Component_Transceiver_FecStatus { - return &Component_Transceiver_FecStatus{ +// FecStatus returns from Component_TransceiverPath the path struct for its child "fec-status". +func (n *Component_TransceiverPath) FecStatus() *Component_Transceiver_FecStatusPath { + return &Component_Transceiver_FecStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-status"}, map[string]interface{}{}, @@ -40306,9 +40301,9 @@ func (n *Component_Transceiver) FecStatus() *Component_Transceiver_FecStatus { } } -// FecStatus returns from Component_TransceiverAny the path struct for its child "fec-status". -func (n *Component_TransceiverAny) FecStatus() *Component_Transceiver_FecStatusAny { - return &Component_Transceiver_FecStatusAny{ +// FecStatus returns from Component_TransceiverPathAny the path struct for its child "fec-status". +func (n *Component_TransceiverPathAny) FecStatus() *Component_Transceiver_FecStatusPathAny { + return &Component_Transceiver_FecStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-status"}, map[string]interface{}{}, @@ -40317,9 +40312,9 @@ func (n *Component_TransceiverAny) FecStatus() *Component_Transceiver_FecStatusA } } -// FecUncorrectableBlocks returns from Component_Transceiver the path struct for its child "fec-uncorrectable-blocks". -func (n *Component_Transceiver) FecUncorrectableBlocks() *Component_Transceiver_FecUncorrectableBlocks { - return &Component_Transceiver_FecUncorrectableBlocks{ +// FecUncorrectableBlocks returns from Component_TransceiverPath the path struct for its child "fec-uncorrectable-blocks". +func (n *Component_TransceiverPath) FecUncorrectableBlocks() *Component_Transceiver_FecUncorrectableBlocksPath { + return &Component_Transceiver_FecUncorrectableBlocksPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-blocks"}, map[string]interface{}{}, @@ -40328,9 +40323,9 @@ func (n *Component_Transceiver) FecUncorrectableBlocks() *Component_Transceiver_ } } -// FecUncorrectableBlocks returns from Component_TransceiverAny the path struct for its child "fec-uncorrectable-blocks". -func (n *Component_TransceiverAny) FecUncorrectableBlocks() *Component_Transceiver_FecUncorrectableBlocksAny { - return &Component_Transceiver_FecUncorrectableBlocksAny{ +// FecUncorrectableBlocks returns from Component_TransceiverPathAny the path struct for its child "fec-uncorrectable-blocks". +func (n *Component_TransceiverPathAny) FecUncorrectableBlocks() *Component_Transceiver_FecUncorrectableBlocksPathAny { + return &Component_Transceiver_FecUncorrectableBlocksPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-blocks"}, map[string]interface{}{}, @@ -40339,9 +40334,9 @@ func (n *Component_TransceiverAny) FecUncorrectableBlocks() *Component_Transceiv } } -// FecUncorrectableWords returns from Component_Transceiver the path struct for its child "fec-uncorrectable-words". -func (n *Component_Transceiver) FecUncorrectableWords() *Component_Transceiver_FecUncorrectableWords { - return &Component_Transceiver_FecUncorrectableWords{ +// FecUncorrectableWords returns from Component_TransceiverPath the path struct for its child "fec-uncorrectable-words". +func (n *Component_TransceiverPath) FecUncorrectableWords() *Component_Transceiver_FecUncorrectableWordsPath { + return &Component_Transceiver_FecUncorrectableWordsPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-words"}, map[string]interface{}{}, @@ -40350,9 +40345,9 @@ func (n *Component_Transceiver) FecUncorrectableWords() *Component_Transceiver_F } } -// FecUncorrectableWords returns from Component_TransceiverAny the path struct for its child "fec-uncorrectable-words". -func (n *Component_TransceiverAny) FecUncorrectableWords() *Component_Transceiver_FecUncorrectableWordsAny { - return &Component_Transceiver_FecUncorrectableWordsAny{ +// FecUncorrectableWords returns from Component_TransceiverPathAny the path struct for its child "fec-uncorrectable-words". +func (n *Component_TransceiverPathAny) FecUncorrectableWords() *Component_Transceiver_FecUncorrectableWordsPathAny { + return &Component_Transceiver_FecUncorrectableWordsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-words"}, map[string]interface{}{}, @@ -40361,9 +40356,9 @@ func (n *Component_TransceiverAny) FecUncorrectableWords() *Component_Transceive } } -// FormFactor returns from Component_Transceiver the path struct for its child "form-factor". -func (n *Component_Transceiver) FormFactor() *Component_Transceiver_FormFactor { - return &Component_Transceiver_FormFactor{ +// FormFactor returns from Component_TransceiverPath the path struct for its child "form-factor". +func (n *Component_TransceiverPath) FormFactor() *Component_Transceiver_FormFactorPath { + return &Component_Transceiver_FormFactorPath{ NodePath: ygot.NewNodePath( []string{"state", "form-factor"}, map[string]interface{}{}, @@ -40372,9 +40367,9 @@ func (n *Component_Transceiver) FormFactor() *Component_Transceiver_FormFactor { } } -// FormFactor returns from Component_TransceiverAny the path struct for its child "form-factor". -func (n *Component_TransceiverAny) FormFactor() *Component_Transceiver_FormFactorAny { - return &Component_Transceiver_FormFactorAny{ +// FormFactor returns from Component_TransceiverPathAny the path struct for its child "form-factor". +func (n *Component_TransceiverPathAny) FormFactor() *Component_Transceiver_FormFactorPathAny { + return &Component_Transceiver_FormFactorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "form-factor"}, map[string]interface{}{}, @@ -40383,31 +40378,31 @@ func (n *Component_TransceiverAny) FormFactor() *Component_Transceiver_FormFacto } } -// FormFactorPreconf returns from Component_Transceiver the path struct for its child "form-factor-preconf". -func (n *Component_Transceiver) FormFactorPreconf() *Component_Transceiver_FormFactorPreconf { - return &Component_Transceiver_FormFactorPreconf{ +// FormFactorPreconf returns from Component_TransceiverPath the path struct for its child "form-factor-preconf". +func (n *Component_TransceiverPath) FormFactorPreconf() *Component_Transceiver_FormFactorPreconfPath { + return &Component_Transceiver_FormFactorPreconfPath{ NodePath: ygot.NewNodePath( - []string{"state", "form-factor-preconf"}, + []string{"config", "form-factor-preconf"}, map[string]interface{}{}, n, ), } } -// FormFactorPreconf returns from Component_TransceiverAny the path struct for its child "form-factor-preconf". -func (n *Component_TransceiverAny) FormFactorPreconf() *Component_Transceiver_FormFactorPreconfAny { - return &Component_Transceiver_FormFactorPreconfAny{ +// FormFactorPreconf returns from Component_TransceiverPathAny the path struct for its child "form-factor-preconf". +func (n *Component_TransceiverPathAny) FormFactorPreconf() *Component_Transceiver_FormFactorPreconfPathAny { + return &Component_Transceiver_FormFactorPreconfPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "form-factor-preconf"}, + []string{"config", "form-factor-preconf"}, map[string]interface{}{}, n, ), } } -// InputPower returns from Component_Transceiver the path struct for its child "input-power". -func (n *Component_Transceiver) InputPower() *Component_Transceiver_InputPower { - return &Component_Transceiver_InputPower{ +// InputPower returns from Component_TransceiverPath the path struct for its child "input-power". +func (n *Component_TransceiverPath) InputPower() *Component_Transceiver_InputPowerPath { + return &Component_Transceiver_InputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -40416,9 +40411,9 @@ func (n *Component_Transceiver) InputPower() *Component_Transceiver_InputPower { } } -// InputPower returns from Component_TransceiverAny the path struct for its child "input-power". -func (n *Component_TransceiverAny) InputPower() *Component_Transceiver_InputPowerAny { - return &Component_Transceiver_InputPowerAny{ +// InputPower returns from Component_TransceiverPathAny the path struct for its child "input-power". +func (n *Component_TransceiverPathAny) InputPower() *Component_Transceiver_InputPowerPathAny { + return &Component_Transceiver_InputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -40427,9 +40422,9 @@ func (n *Component_TransceiverAny) InputPower() *Component_Transceiver_InputPowe } } -// LaserBiasCurrent returns from Component_Transceiver the path struct for its child "laser-bias-current". -func (n *Component_Transceiver) LaserBiasCurrent() *Component_Transceiver_LaserBiasCurrent { - return &Component_Transceiver_LaserBiasCurrent{ +// LaserBiasCurrent returns from Component_TransceiverPath the path struct for its child "laser-bias-current". +func (n *Component_TransceiverPath) LaserBiasCurrent() *Component_Transceiver_LaserBiasCurrentPath { + return &Component_Transceiver_LaserBiasCurrentPath{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -40438,9 +40433,9 @@ func (n *Component_Transceiver) LaserBiasCurrent() *Component_Transceiver_LaserB } } -// LaserBiasCurrent returns from Component_TransceiverAny the path struct for its child "laser-bias-current". -func (n *Component_TransceiverAny) LaserBiasCurrent() *Component_Transceiver_LaserBiasCurrentAny { - return &Component_Transceiver_LaserBiasCurrentAny{ +// LaserBiasCurrent returns from Component_TransceiverPathAny the path struct for its child "laser-bias-current". +func (n *Component_TransceiverPathAny) LaserBiasCurrent() *Component_Transceiver_LaserBiasCurrentPathAny { + return &Component_Transceiver_LaserBiasCurrentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -40449,9 +40444,9 @@ func (n *Component_TransceiverAny) LaserBiasCurrent() *Component_Transceiver_Las } } -// OtnComplianceCode returns from Component_Transceiver the path struct for its child "otn-compliance-code". -func (n *Component_Transceiver) OtnComplianceCode() *Component_Transceiver_OtnComplianceCode { - return &Component_Transceiver_OtnComplianceCode{ +// OtnComplianceCode returns from Component_TransceiverPath the path struct for its child "otn-compliance-code". +func (n *Component_TransceiverPath) OtnComplianceCode() *Component_Transceiver_OtnComplianceCodePath { + return &Component_Transceiver_OtnComplianceCodePath{ NodePath: ygot.NewNodePath( []string{"state", "otn-compliance-code"}, map[string]interface{}{}, @@ -40460,9 +40455,9 @@ func (n *Component_Transceiver) OtnComplianceCode() *Component_Transceiver_OtnCo } } -// OtnComplianceCode returns from Component_TransceiverAny the path struct for its child "otn-compliance-code". -func (n *Component_TransceiverAny) OtnComplianceCode() *Component_Transceiver_OtnComplianceCodeAny { - return &Component_Transceiver_OtnComplianceCodeAny{ +// OtnComplianceCode returns from Component_TransceiverPathAny the path struct for its child "otn-compliance-code". +func (n *Component_TransceiverPathAny) OtnComplianceCode() *Component_Transceiver_OtnComplianceCodePathAny { + return &Component_Transceiver_OtnComplianceCodePathAny{ NodePath: ygot.NewNodePath( []string{"state", "otn-compliance-code"}, map[string]interface{}{}, @@ -40471,9 +40466,9 @@ func (n *Component_TransceiverAny) OtnComplianceCode() *Component_Transceiver_Ot } } -// OutputPower returns from Component_Transceiver the path struct for its child "output-power". -func (n *Component_Transceiver) OutputPower() *Component_Transceiver_OutputPower { - return &Component_Transceiver_OutputPower{ +// OutputPower returns from Component_TransceiverPath the path struct for its child "output-power". +func (n *Component_TransceiverPath) OutputPower() *Component_Transceiver_OutputPowerPath { + return &Component_Transceiver_OutputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -40482,9 +40477,9 @@ func (n *Component_Transceiver) OutputPower() *Component_Transceiver_OutputPower } } -// OutputPower returns from Component_TransceiverAny the path struct for its child "output-power". -func (n *Component_TransceiverAny) OutputPower() *Component_Transceiver_OutputPowerAny { - return &Component_Transceiver_OutputPowerAny{ +// OutputPower returns from Component_TransceiverPathAny the path struct for its child "output-power". +func (n *Component_TransceiverPathAny) OutputPower() *Component_Transceiver_OutputPowerPathAny { + return &Component_Transceiver_OutputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -40493,9 +40488,9 @@ func (n *Component_TransceiverAny) OutputPower() *Component_Transceiver_OutputPo } } -// PostFecBer returns from Component_Transceiver the path struct for its child "post-fec-ber". -func (n *Component_Transceiver) PostFecBer() *Component_Transceiver_PostFecBer { - return &Component_Transceiver_PostFecBer{ +// PostFecBer returns from Component_TransceiverPath the path struct for its child "post-fec-ber". +func (n *Component_TransceiverPath) PostFecBer() *Component_Transceiver_PostFecBerPath { + return &Component_Transceiver_PostFecBerPath{ NodePath: ygot.NewNodePath( []string{"state", "post-fec-ber"}, map[string]interface{}{}, @@ -40504,9 +40499,9 @@ func (n *Component_Transceiver) PostFecBer() *Component_Transceiver_PostFecBer { } } -// PostFecBer returns from Component_TransceiverAny the path struct for its child "post-fec-ber". -func (n *Component_TransceiverAny) PostFecBer() *Component_Transceiver_PostFecBerAny { - return &Component_Transceiver_PostFecBerAny{ +// PostFecBer returns from Component_TransceiverPathAny the path struct for its child "post-fec-ber". +func (n *Component_TransceiverPathAny) PostFecBer() *Component_Transceiver_PostFecBerPathAny { + return &Component_Transceiver_PostFecBerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "post-fec-ber"}, map[string]interface{}{}, @@ -40515,9 +40510,9 @@ func (n *Component_TransceiverAny) PostFecBer() *Component_Transceiver_PostFecBe } } -// PreFecBer returns from Component_Transceiver the path struct for its child "pre-fec-ber". -func (n *Component_Transceiver) PreFecBer() *Component_Transceiver_PreFecBer { - return &Component_Transceiver_PreFecBer{ +// PreFecBer returns from Component_TransceiverPath the path struct for its child "pre-fec-ber". +func (n *Component_TransceiverPath) PreFecBer() *Component_Transceiver_PreFecBerPath { + return &Component_Transceiver_PreFecBerPath{ NodePath: ygot.NewNodePath( []string{"state", "pre-fec-ber"}, map[string]interface{}{}, @@ -40526,9 +40521,9 @@ func (n *Component_Transceiver) PreFecBer() *Component_Transceiver_PreFecBer { } } -// PreFecBer returns from Component_TransceiverAny the path struct for its child "pre-fec-ber". -func (n *Component_TransceiverAny) PreFecBer() *Component_Transceiver_PreFecBerAny { - return &Component_Transceiver_PreFecBerAny{ +// PreFecBer returns from Component_TransceiverPathAny the path struct for its child "pre-fec-ber". +func (n *Component_TransceiverPathAny) PreFecBer() *Component_Transceiver_PreFecBerPathAny { + return &Component_Transceiver_PreFecBerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pre-fec-ber"}, map[string]interface{}{}, @@ -40537,9 +40532,9 @@ func (n *Component_TransceiverAny) PreFecBer() *Component_Transceiver_PreFecBerA } } -// Present returns from Component_Transceiver the path struct for its child "present". -func (n *Component_Transceiver) Present() *Component_Transceiver_Present { - return &Component_Transceiver_Present{ +// Present returns from Component_TransceiverPath the path struct for its child "present". +func (n *Component_TransceiverPath) Present() *Component_Transceiver_PresentPath { + return &Component_Transceiver_PresentPath{ NodePath: ygot.NewNodePath( []string{"state", "present"}, map[string]interface{}{}, @@ -40548,9 +40543,9 @@ func (n *Component_Transceiver) Present() *Component_Transceiver_Present { } } -// Present returns from Component_TransceiverAny the path struct for its child "present". -func (n *Component_TransceiverAny) Present() *Component_Transceiver_PresentAny { - return &Component_Transceiver_PresentAny{ +// Present returns from Component_TransceiverPathAny the path struct for its child "present". +func (n *Component_TransceiverPathAny) Present() *Component_Transceiver_PresentPathAny { + return &Component_Transceiver_PresentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "present"}, map[string]interface{}{}, @@ -40559,9 +40554,9 @@ func (n *Component_TransceiverAny) Present() *Component_Transceiver_PresentAny { } } -// SerialNo returns from Component_Transceiver the path struct for its child "serial-no". -func (n *Component_Transceiver) SerialNo() *Component_Transceiver_SerialNo { - return &Component_Transceiver_SerialNo{ +// SerialNo returns from Component_TransceiverPath the path struct for its child "serial-no". +func (n *Component_TransceiverPath) SerialNo() *Component_Transceiver_SerialNoPath { + return &Component_Transceiver_SerialNoPath{ NodePath: ygot.NewNodePath( []string{"state", "serial-no"}, map[string]interface{}{}, @@ -40570,9 +40565,9 @@ func (n *Component_Transceiver) SerialNo() *Component_Transceiver_SerialNo { } } -// SerialNo returns from Component_TransceiverAny the path struct for its child "serial-no". -func (n *Component_TransceiverAny) SerialNo() *Component_Transceiver_SerialNoAny { - return &Component_Transceiver_SerialNoAny{ +// SerialNo returns from Component_TransceiverPathAny the path struct for its child "serial-no". +func (n *Component_TransceiverPathAny) SerialNo() *Component_Transceiver_SerialNoPathAny { + return &Component_Transceiver_SerialNoPathAny{ NodePath: ygot.NewNodePath( []string{"state", "serial-no"}, map[string]interface{}{}, @@ -40581,9 +40576,9 @@ func (n *Component_TransceiverAny) SerialNo() *Component_Transceiver_SerialNoAny } } -// SonetSdhComplianceCode returns from Component_Transceiver the path struct for its child "sonet-sdh-compliance-code". -func (n *Component_Transceiver) SonetSdhComplianceCode() *Component_Transceiver_SonetSdhComplianceCode { - return &Component_Transceiver_SonetSdhComplianceCode{ +// SonetSdhComplianceCode returns from Component_TransceiverPath the path struct for its child "sonet-sdh-compliance-code". +func (n *Component_TransceiverPath) SonetSdhComplianceCode() *Component_Transceiver_SonetSdhComplianceCodePath { + return &Component_Transceiver_SonetSdhComplianceCodePath{ NodePath: ygot.NewNodePath( []string{"state", "sonet-sdh-compliance-code"}, map[string]interface{}{}, @@ -40592,9 +40587,9 @@ func (n *Component_Transceiver) SonetSdhComplianceCode() *Component_Transceiver_ } } -// SonetSdhComplianceCode returns from Component_TransceiverAny the path struct for its child "sonet-sdh-compliance-code". -func (n *Component_TransceiverAny) SonetSdhComplianceCode() *Component_Transceiver_SonetSdhComplianceCodeAny { - return &Component_Transceiver_SonetSdhComplianceCodeAny{ +// SonetSdhComplianceCode returns from Component_TransceiverPathAny the path struct for its child "sonet-sdh-compliance-code". +func (n *Component_TransceiverPathAny) SonetSdhComplianceCode() *Component_Transceiver_SonetSdhComplianceCodePathAny { + return &Component_Transceiver_SonetSdhComplianceCodePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sonet-sdh-compliance-code"}, map[string]interface{}{}, @@ -40603,9 +40598,9 @@ func (n *Component_TransceiverAny) SonetSdhComplianceCode() *Component_Transceiv } } -// Vendor returns from Component_Transceiver the path struct for its child "vendor". -func (n *Component_Transceiver) Vendor() *Component_Transceiver_Vendor { - return &Component_Transceiver_Vendor{ +// Vendor returns from Component_TransceiverPath the path struct for its child "vendor". +func (n *Component_TransceiverPath) Vendor() *Component_Transceiver_VendorPath { + return &Component_Transceiver_VendorPath{ NodePath: ygot.NewNodePath( []string{"state", "vendor"}, map[string]interface{}{}, @@ -40614,9 +40609,9 @@ func (n *Component_Transceiver) Vendor() *Component_Transceiver_Vendor { } } -// Vendor returns from Component_TransceiverAny the path struct for its child "vendor". -func (n *Component_TransceiverAny) Vendor() *Component_Transceiver_VendorAny { - return &Component_Transceiver_VendorAny{ +// Vendor returns from Component_TransceiverPathAny the path struct for its child "vendor". +func (n *Component_TransceiverPathAny) Vendor() *Component_Transceiver_VendorPathAny { + return &Component_Transceiver_VendorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "vendor"}, map[string]interface{}{}, @@ -40625,9 +40620,9 @@ func (n *Component_TransceiverAny) Vendor() *Component_Transceiver_VendorAny { } } -// VendorPart returns from Component_Transceiver the path struct for its child "vendor-part". -func (n *Component_Transceiver) VendorPart() *Component_Transceiver_VendorPart { - return &Component_Transceiver_VendorPart{ +// VendorPart returns from Component_TransceiverPath the path struct for its child "vendor-part". +func (n *Component_TransceiverPath) VendorPart() *Component_Transceiver_VendorPartPath { + return &Component_Transceiver_VendorPartPath{ NodePath: ygot.NewNodePath( []string{"state", "vendor-part"}, map[string]interface{}{}, @@ -40636,9 +40631,9 @@ func (n *Component_Transceiver) VendorPart() *Component_Transceiver_VendorPart { } } -// VendorPart returns from Component_TransceiverAny the path struct for its child "vendor-part". -func (n *Component_TransceiverAny) VendorPart() *Component_Transceiver_VendorPartAny { - return &Component_Transceiver_VendorPartAny{ +// VendorPart returns from Component_TransceiverPathAny the path struct for its child "vendor-part". +func (n *Component_TransceiverPathAny) VendorPart() *Component_Transceiver_VendorPartPathAny { + return &Component_Transceiver_VendorPartPathAny{ NodePath: ygot.NewNodePath( []string{"state", "vendor-part"}, map[string]interface{}{}, @@ -40647,9 +40642,9 @@ func (n *Component_TransceiverAny) VendorPart() *Component_Transceiver_VendorPar } } -// VendorRev returns from Component_Transceiver the path struct for its child "vendor-rev". -func (n *Component_Transceiver) VendorRev() *Component_Transceiver_VendorRev { - return &Component_Transceiver_VendorRev{ +// VendorRev returns from Component_TransceiverPath the path struct for its child "vendor-rev". +func (n *Component_TransceiverPath) VendorRev() *Component_Transceiver_VendorRevPath { + return &Component_Transceiver_VendorRevPath{ NodePath: ygot.NewNodePath( []string{"state", "vendor-rev"}, map[string]interface{}{}, @@ -40658,9 +40653,9 @@ func (n *Component_Transceiver) VendorRev() *Component_Transceiver_VendorRev { } } -// VendorRev returns from Component_TransceiverAny the path struct for its child "vendor-rev". -func (n *Component_TransceiverAny) VendorRev() *Component_Transceiver_VendorRevAny { - return &Component_Transceiver_VendorRevAny{ +// VendorRev returns from Component_TransceiverPathAny the path struct for its child "vendor-rev". +func (n *Component_TransceiverPathAny) VendorRev() *Component_Transceiver_VendorRevPathAny { + return &Component_Transceiver_VendorRevPathAny{ NodePath: ygot.NewNodePath( []string{"state", "vendor-rev"}, map[string]interface{}{}, @@ -40669,113 +40664,113 @@ func (n *Component_TransceiverAny) VendorRev() *Component_Transceiver_VendorRevA } } -// Component_Transceiver_Channel represents the /openconfig-platform/components/component/transceiver/physical-channels/channel YANG schema element. -type Component_Transceiver_Channel struct { +// Component_Transceiver_ChannelPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel YANG schema element. +type Component_Transceiver_ChannelPath struct { *ygot.NodePath } -// Component_Transceiver_ChannelAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel YANG schema element. -type Component_Transceiver_ChannelAny struct { +// Component_Transceiver_ChannelPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel YANG schema element. +type Component_Transceiver_ChannelPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_Description represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/description YANG schema element. -type Component_Transceiver_Channel_Description struct { +// Component_Transceiver_Channel_DescriptionPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/description YANG schema element. +type Component_Transceiver_Channel_DescriptionPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_DescriptionAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/description YANG schema element. -type Component_Transceiver_Channel_DescriptionAny struct { +// Component_Transceiver_Channel_DescriptionPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/description YANG schema element. +type Component_Transceiver_Channel_DescriptionPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_Index represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/index YANG schema element. -type Component_Transceiver_Channel_Index struct { +// Component_Transceiver_Channel_IndexPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/index YANG schema element. +type Component_Transceiver_Channel_IndexPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_IndexAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/index YANG schema element. -type Component_Transceiver_Channel_IndexAny struct { +// Component_Transceiver_Channel_IndexPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/index YANG schema element. +type Component_Transceiver_Channel_IndexPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputFrequency represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-frequency YANG schema element. -type Component_Transceiver_Channel_OutputFrequency struct { +// Component_Transceiver_Channel_OutputFrequencyPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-frequency YANG schema element. +type Component_Transceiver_Channel_OutputFrequencyPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputFrequencyAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-frequency YANG schema element. -type Component_Transceiver_Channel_OutputFrequencyAny struct { +// Component_Transceiver_Channel_OutputFrequencyPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-frequency YANG schema element. +type Component_Transceiver_Channel_OutputFrequencyPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_TargetOutputPower represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/target-output-power YANG schema element. -type Component_Transceiver_Channel_TargetOutputPower struct { +// Component_Transceiver_Channel_TargetOutputPowerPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/target-output-power YANG schema element. +type Component_Transceiver_Channel_TargetOutputPowerPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_TargetOutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/target-output-power YANG schema element. -type Component_Transceiver_Channel_TargetOutputPowerAny struct { +// Component_Transceiver_Channel_TargetOutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/target-output-power YANG schema element. +type Component_Transceiver_Channel_TargetOutputPowerPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_TxLaser represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/tx-laser YANG schema element. -type Component_Transceiver_Channel_TxLaser struct { +// Component_Transceiver_Channel_TxLaserPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/tx-laser YANG schema element. +type Component_Transceiver_Channel_TxLaserPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_TxLaserAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/tx-laser YANG schema element. -type Component_Transceiver_Channel_TxLaserAny struct { +// Component_Transceiver_Channel_TxLaserPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/config/tx-laser YANG schema element. +type Component_Transceiver_Channel_TxLaserPathAny struct { *ygot.NodePath } -// Description returns from Component_Transceiver_Channel the path struct for its child "description". -func (n *Component_Transceiver_Channel) Description() *Component_Transceiver_Channel_Description { - return &Component_Transceiver_Channel_Description{ +// Description returns from Component_Transceiver_ChannelPath the path struct for its child "description". +func (n *Component_Transceiver_ChannelPath) Description() *Component_Transceiver_Channel_DescriptionPath { + return &Component_Transceiver_Channel_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Component_Transceiver_ChannelAny the path struct for its child "description". -func (n *Component_Transceiver_ChannelAny) Description() *Component_Transceiver_Channel_DescriptionAny { - return &Component_Transceiver_Channel_DescriptionAny{ +// Description returns from Component_Transceiver_ChannelPathAny the path struct for its child "description". +func (n *Component_Transceiver_ChannelPathAny) Description() *Component_Transceiver_Channel_DescriptionPathAny { + return &Component_Transceiver_Channel_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Index returns from Component_Transceiver_Channel the path struct for its child "index". -func (n *Component_Transceiver_Channel) Index() *Component_Transceiver_Channel_Index { - return &Component_Transceiver_Channel_Index{ +// Index returns from Component_Transceiver_ChannelPath the path struct for its child "index". +func (n *Component_Transceiver_ChannelPath) Index() *Component_Transceiver_Channel_IndexPath { + return &Component_Transceiver_Channel_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from Component_Transceiver_ChannelAny the path struct for its child "index". -func (n *Component_Transceiver_ChannelAny) Index() *Component_Transceiver_Channel_IndexAny { - return &Component_Transceiver_Channel_IndexAny{ +// Index returns from Component_Transceiver_ChannelPathAny the path struct for its child "index". +func (n *Component_Transceiver_ChannelPathAny) Index() *Component_Transceiver_Channel_IndexPathAny { + return &Component_Transceiver_Channel_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// InputPower returns from Component_Transceiver_Channel the path struct for its child "input-power". -func (n *Component_Transceiver_Channel) InputPower() *Component_Transceiver_Channel_InputPower { - return &Component_Transceiver_Channel_InputPower{ +// InputPower returns from Component_Transceiver_ChannelPath the path struct for its child "input-power". +func (n *Component_Transceiver_ChannelPath) InputPower() *Component_Transceiver_Channel_InputPowerPath { + return &Component_Transceiver_Channel_InputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -40784,9 +40779,9 @@ func (n *Component_Transceiver_Channel) InputPower() *Component_Transceiver_Chan } } -// InputPower returns from Component_Transceiver_ChannelAny the path struct for its child "input-power". -func (n *Component_Transceiver_ChannelAny) InputPower() *Component_Transceiver_Channel_InputPowerAny { - return &Component_Transceiver_Channel_InputPowerAny{ +// InputPower returns from Component_Transceiver_ChannelPathAny the path struct for its child "input-power". +func (n *Component_Transceiver_ChannelPathAny) InputPower() *Component_Transceiver_Channel_InputPowerPathAny { + return &Component_Transceiver_Channel_InputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -40795,9 +40790,9 @@ func (n *Component_Transceiver_ChannelAny) InputPower() *Component_Transceiver_C } } -// LaserBiasCurrent returns from Component_Transceiver_Channel the path struct for its child "laser-bias-current". -func (n *Component_Transceiver_Channel) LaserBiasCurrent() *Component_Transceiver_Channel_LaserBiasCurrent { - return &Component_Transceiver_Channel_LaserBiasCurrent{ +// LaserBiasCurrent returns from Component_Transceiver_ChannelPath the path struct for its child "laser-bias-current". +func (n *Component_Transceiver_ChannelPath) LaserBiasCurrent() *Component_Transceiver_Channel_LaserBiasCurrentPath { + return &Component_Transceiver_Channel_LaserBiasCurrentPath{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -40806,9 +40801,9 @@ func (n *Component_Transceiver_Channel) LaserBiasCurrent() *Component_Transceive } } -// LaserBiasCurrent returns from Component_Transceiver_ChannelAny the path struct for its child "laser-bias-current". -func (n *Component_Transceiver_ChannelAny) LaserBiasCurrent() *Component_Transceiver_Channel_LaserBiasCurrentAny { - return &Component_Transceiver_Channel_LaserBiasCurrentAny{ +// LaserBiasCurrent returns from Component_Transceiver_ChannelPathAny the path struct for its child "laser-bias-current". +func (n *Component_Transceiver_ChannelPathAny) LaserBiasCurrent() *Component_Transceiver_Channel_LaserBiasCurrentPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -40817,9 +40812,9 @@ func (n *Component_Transceiver_ChannelAny) LaserBiasCurrent() *Component_Transce } } -// OutputFrequency returns from Component_Transceiver_Channel the path struct for its child "output-frequency". -func (n *Component_Transceiver_Channel) OutputFrequency() *Component_Transceiver_Channel_OutputFrequency { - return &Component_Transceiver_Channel_OutputFrequency{ +// OutputFrequency returns from Component_Transceiver_ChannelPath the path struct for its child "output-frequency". +func (n *Component_Transceiver_ChannelPath) OutputFrequency() *Component_Transceiver_Channel_OutputFrequencyPath { + return &Component_Transceiver_Channel_OutputFrequencyPath{ NodePath: ygot.NewNodePath( []string{"state", "output-frequency"}, map[string]interface{}{}, @@ -40828,9 +40823,9 @@ func (n *Component_Transceiver_Channel) OutputFrequency() *Component_Transceiver } } -// OutputFrequency returns from Component_Transceiver_ChannelAny the path struct for its child "output-frequency". -func (n *Component_Transceiver_ChannelAny) OutputFrequency() *Component_Transceiver_Channel_OutputFrequencyAny { - return &Component_Transceiver_Channel_OutputFrequencyAny{ +// OutputFrequency returns from Component_Transceiver_ChannelPathAny the path struct for its child "output-frequency". +func (n *Component_Transceiver_ChannelPathAny) OutputFrequency() *Component_Transceiver_Channel_OutputFrequencyPathAny { + return &Component_Transceiver_Channel_OutputFrequencyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-frequency"}, map[string]interface{}{}, @@ -40839,9 +40834,9 @@ func (n *Component_Transceiver_ChannelAny) OutputFrequency() *Component_Transcei } } -// OutputPower returns from Component_Transceiver_Channel the path struct for its child "output-power". -func (n *Component_Transceiver_Channel) OutputPower() *Component_Transceiver_Channel_OutputPower { - return &Component_Transceiver_Channel_OutputPower{ +// OutputPower returns from Component_Transceiver_ChannelPath the path struct for its child "output-power". +func (n *Component_Transceiver_ChannelPath) OutputPower() *Component_Transceiver_Channel_OutputPowerPath { + return &Component_Transceiver_Channel_OutputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -40850,9 +40845,9 @@ func (n *Component_Transceiver_Channel) OutputPower() *Component_Transceiver_Cha } } -// OutputPower returns from Component_Transceiver_ChannelAny the path struct for its child "output-power". -func (n *Component_Transceiver_ChannelAny) OutputPower() *Component_Transceiver_Channel_OutputPowerAny { - return &Component_Transceiver_Channel_OutputPowerAny{ +// OutputPower returns from Component_Transceiver_ChannelPathAny the path struct for its child "output-power". +func (n *Component_Transceiver_ChannelPathAny) OutputPower() *Component_Transceiver_Channel_OutputPowerPathAny { + return &Component_Transceiver_Channel_OutputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -40861,133 +40856,133 @@ func (n *Component_Transceiver_ChannelAny) OutputPower() *Component_Transceiver_ } } -// TargetOutputPower returns from Component_Transceiver_Channel the path struct for its child "target-output-power". -func (n *Component_Transceiver_Channel) TargetOutputPower() *Component_Transceiver_Channel_TargetOutputPower { - return &Component_Transceiver_Channel_TargetOutputPower{ +// TargetOutputPower returns from Component_Transceiver_ChannelPath the path struct for its child "target-output-power". +func (n *Component_Transceiver_ChannelPath) TargetOutputPower() *Component_Transceiver_Channel_TargetOutputPowerPath { + return &Component_Transceiver_Channel_TargetOutputPowerPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// TargetOutputPower returns from Component_Transceiver_ChannelAny the path struct for its child "target-output-power". -func (n *Component_Transceiver_ChannelAny) TargetOutputPower() *Component_Transceiver_Channel_TargetOutputPowerAny { - return &Component_Transceiver_Channel_TargetOutputPowerAny{ +// TargetOutputPower returns from Component_Transceiver_ChannelPathAny the path struct for its child "target-output-power". +func (n *Component_Transceiver_ChannelPathAny) TargetOutputPower() *Component_Transceiver_Channel_TargetOutputPowerPathAny { + return &Component_Transceiver_Channel_TargetOutputPowerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// TxLaser returns from Component_Transceiver_Channel the path struct for its child "tx-laser". -func (n *Component_Transceiver_Channel) TxLaser() *Component_Transceiver_Channel_TxLaser { - return &Component_Transceiver_Channel_TxLaser{ +// TxLaser returns from Component_Transceiver_ChannelPath the path struct for its child "tx-laser". +func (n *Component_Transceiver_ChannelPath) TxLaser() *Component_Transceiver_Channel_TxLaserPath { + return &Component_Transceiver_Channel_TxLaserPath{ NodePath: ygot.NewNodePath( - []string{"state", "tx-laser"}, + []string{"config", "tx-laser"}, map[string]interface{}{}, n, ), } } -// TxLaser returns from Component_Transceiver_ChannelAny the path struct for its child "tx-laser". -func (n *Component_Transceiver_ChannelAny) TxLaser() *Component_Transceiver_Channel_TxLaserAny { - return &Component_Transceiver_Channel_TxLaserAny{ +// TxLaser returns from Component_Transceiver_ChannelPathAny the path struct for its child "tx-laser". +func (n *Component_Transceiver_ChannelPathAny) TxLaser() *Component_Transceiver_Channel_TxLaserPathAny { + return &Component_Transceiver_Channel_TxLaserPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tx-laser"}, + []string{"config", "tx-laser"}, map[string]interface{}{}, n, ), } } -// Component_Transceiver_Channel_InputPower represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power YANG schema element. -type Component_Transceiver_Channel_InputPower struct { +// Component_Transceiver_Channel_InputPowerPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power YANG schema element. +type Component_Transceiver_Channel_InputPowerPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPowerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power YANG schema element. -type Component_Transceiver_Channel_InputPowerAny struct { +// Component_Transceiver_Channel_InputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power YANG schema element. +type Component_Transceiver_Channel_InputPowerPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_Avg represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/avg YANG schema element. -type Component_Transceiver_Channel_InputPower_Avg struct { +// Component_Transceiver_Channel_InputPower_AvgPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/avg YANG schema element. +type Component_Transceiver_Channel_InputPower_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/avg YANG schema element. -type Component_Transceiver_Channel_InputPower_AvgAny struct { +// Component_Transceiver_Channel_InputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/avg YANG schema element. +type Component_Transceiver_Channel_InputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_Instant represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/instant YANG schema element. -type Component_Transceiver_Channel_InputPower_Instant struct { +// Component_Transceiver_Channel_InputPower_InstantPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/instant YANG schema element. +type Component_Transceiver_Channel_InputPower_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/instant YANG schema element. -type Component_Transceiver_Channel_InputPower_InstantAny struct { +// Component_Transceiver_Channel_InputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/instant YANG schema element. +type Component_Transceiver_Channel_InputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_Interval represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/interval YANG schema element. -type Component_Transceiver_Channel_InputPower_Interval struct { +// Component_Transceiver_Channel_InputPower_IntervalPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/interval YANG schema element. +type Component_Transceiver_Channel_InputPower_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/interval YANG schema element. -type Component_Transceiver_Channel_InputPower_IntervalAny struct { +// Component_Transceiver_Channel_InputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/interval YANG schema element. +type Component_Transceiver_Channel_InputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_Max represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max YANG schema element. -type Component_Transceiver_Channel_InputPower_Max struct { +// Component_Transceiver_Channel_InputPower_MaxPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max YANG schema element. +type Component_Transceiver_Channel_InputPower_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max YANG schema element. -type Component_Transceiver_Channel_InputPower_MaxAny struct { +// Component_Transceiver_Channel_InputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max YANG schema element. +type Component_Transceiver_Channel_InputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MaxTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max-time YANG schema element. -type Component_Transceiver_Channel_InputPower_MaxTime struct { +// Component_Transceiver_Channel_InputPower_MaxTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max-time YANG schema element. +type Component_Transceiver_Channel_InputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max-time YANG schema element. -type Component_Transceiver_Channel_InputPower_MaxTimeAny struct { +// Component_Transceiver_Channel_InputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/max-time YANG schema element. +type Component_Transceiver_Channel_InputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_Min represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min YANG schema element. -type Component_Transceiver_Channel_InputPower_Min struct { +// Component_Transceiver_Channel_InputPower_MinPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min YANG schema element. +type Component_Transceiver_Channel_InputPower_MinPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min YANG schema element. -type Component_Transceiver_Channel_InputPower_MinAny struct { +// Component_Transceiver_Channel_InputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min YANG schema element. +type Component_Transceiver_Channel_InputPower_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MinTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min-time YANG schema element. -type Component_Transceiver_Channel_InputPower_MinTime struct { +// Component_Transceiver_Channel_InputPower_MinTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min-time YANG schema element. +type Component_Transceiver_Channel_InputPower_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_InputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min-time YANG schema element. -type Component_Transceiver_Channel_InputPower_MinTimeAny struct { +// Component_Transceiver_Channel_InputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/input-power/min-time YANG schema element. +type Component_Transceiver_Channel_InputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_Channel_InputPower the path struct for its child "avg". -func (n *Component_Transceiver_Channel_InputPower) Avg() *Component_Transceiver_Channel_InputPower_Avg { - return &Component_Transceiver_Channel_InputPower_Avg{ +// Avg returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "avg". +func (n *Component_Transceiver_Channel_InputPowerPath) Avg() *Component_Transceiver_Channel_InputPower_AvgPath { + return &Component_Transceiver_Channel_InputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -40996,9 +40991,9 @@ func (n *Component_Transceiver_Channel_InputPower) Avg() *Component_Transceiver_ } } -// Avg returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "avg". -func (n *Component_Transceiver_Channel_InputPowerAny) Avg() *Component_Transceiver_Channel_InputPower_AvgAny { - return &Component_Transceiver_Channel_InputPower_AvgAny{ +// Avg returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_Channel_InputPowerPathAny) Avg() *Component_Transceiver_Channel_InputPower_AvgPathAny { + return &Component_Transceiver_Channel_InputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41007,9 +41002,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) Avg() *Component_Transceiv } } -// Instant returns from Component_Transceiver_Channel_InputPower the path struct for its child "instant". -func (n *Component_Transceiver_Channel_InputPower) Instant() *Component_Transceiver_Channel_InputPower_Instant { - return &Component_Transceiver_Channel_InputPower_Instant{ +// Instant returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "instant". +func (n *Component_Transceiver_Channel_InputPowerPath) Instant() *Component_Transceiver_Channel_InputPower_InstantPath { + return &Component_Transceiver_Channel_InputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41018,9 +41013,9 @@ func (n *Component_Transceiver_Channel_InputPower) Instant() *Component_Transcei } } -// Instant returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "instant". -func (n *Component_Transceiver_Channel_InputPowerAny) Instant() *Component_Transceiver_Channel_InputPower_InstantAny { - return &Component_Transceiver_Channel_InputPower_InstantAny{ +// Instant returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_Channel_InputPowerPathAny) Instant() *Component_Transceiver_Channel_InputPower_InstantPathAny { + return &Component_Transceiver_Channel_InputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41029,9 +41024,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) Instant() *Component_Trans } } -// Interval returns from Component_Transceiver_Channel_InputPower the path struct for its child "interval". -func (n *Component_Transceiver_Channel_InputPower) Interval() *Component_Transceiver_Channel_InputPower_Interval { - return &Component_Transceiver_Channel_InputPower_Interval{ +// Interval returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "interval". +func (n *Component_Transceiver_Channel_InputPowerPath) Interval() *Component_Transceiver_Channel_InputPower_IntervalPath { + return &Component_Transceiver_Channel_InputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41040,9 +41035,9 @@ func (n *Component_Transceiver_Channel_InputPower) Interval() *Component_Transce } } -// Interval returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "interval". -func (n *Component_Transceiver_Channel_InputPowerAny) Interval() *Component_Transceiver_Channel_InputPower_IntervalAny { - return &Component_Transceiver_Channel_InputPower_IntervalAny{ +// Interval returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_Channel_InputPowerPathAny) Interval() *Component_Transceiver_Channel_InputPower_IntervalPathAny { + return &Component_Transceiver_Channel_InputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41051,9 +41046,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) Interval() *Component_Tran } } -// Max returns from Component_Transceiver_Channel_InputPower the path struct for its child "max". -func (n *Component_Transceiver_Channel_InputPower) Max() *Component_Transceiver_Channel_InputPower_Max { - return &Component_Transceiver_Channel_InputPower_Max{ +// Max returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "max". +func (n *Component_Transceiver_Channel_InputPowerPath) Max() *Component_Transceiver_Channel_InputPower_MaxPath { + return &Component_Transceiver_Channel_InputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41062,9 +41057,9 @@ func (n *Component_Transceiver_Channel_InputPower) Max() *Component_Transceiver_ } } -// Max returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "max". -func (n *Component_Transceiver_Channel_InputPowerAny) Max() *Component_Transceiver_Channel_InputPower_MaxAny { - return &Component_Transceiver_Channel_InputPower_MaxAny{ +// Max returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "max". +func (n *Component_Transceiver_Channel_InputPowerPathAny) Max() *Component_Transceiver_Channel_InputPower_MaxPathAny { + return &Component_Transceiver_Channel_InputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41073,9 +41068,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) Max() *Component_Transceiv } } -// MaxTime returns from Component_Transceiver_Channel_InputPower the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_InputPower) MaxTime() *Component_Transceiver_Channel_InputPower_MaxTime { - return &Component_Transceiver_Channel_InputPower_MaxTime{ +// MaxTime returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_InputPowerPath) MaxTime() *Component_Transceiver_Channel_InputPower_MaxTimePath { + return &Component_Transceiver_Channel_InputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41084,9 +41079,9 @@ func (n *Component_Transceiver_Channel_InputPower) MaxTime() *Component_Transcei } } -// MaxTime returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_InputPowerAny) MaxTime() *Component_Transceiver_Channel_InputPower_MaxTimeAny { - return &Component_Transceiver_Channel_InputPower_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_InputPowerPathAny) MaxTime() *Component_Transceiver_Channel_InputPower_MaxTimePathAny { + return &Component_Transceiver_Channel_InputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41095,9 +41090,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) MaxTime() *Component_Trans } } -// Min returns from Component_Transceiver_Channel_InputPower the path struct for its child "min". -func (n *Component_Transceiver_Channel_InputPower) Min() *Component_Transceiver_Channel_InputPower_Min { - return &Component_Transceiver_Channel_InputPower_Min{ +// Min returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "min". +func (n *Component_Transceiver_Channel_InputPowerPath) Min() *Component_Transceiver_Channel_InputPower_MinPath { + return &Component_Transceiver_Channel_InputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41106,9 +41101,9 @@ func (n *Component_Transceiver_Channel_InputPower) Min() *Component_Transceiver_ } } -// Min returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "min". -func (n *Component_Transceiver_Channel_InputPowerAny) Min() *Component_Transceiver_Channel_InputPower_MinAny { - return &Component_Transceiver_Channel_InputPower_MinAny{ +// Min returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "min". +func (n *Component_Transceiver_Channel_InputPowerPathAny) Min() *Component_Transceiver_Channel_InputPower_MinPathAny { + return &Component_Transceiver_Channel_InputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41117,9 +41112,9 @@ func (n *Component_Transceiver_Channel_InputPowerAny) Min() *Component_Transceiv } } -// MinTime returns from Component_Transceiver_Channel_InputPower the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_InputPower) MinTime() *Component_Transceiver_Channel_InputPower_MinTime { - return &Component_Transceiver_Channel_InputPower_MinTime{ +// MinTime returns from Component_Transceiver_Channel_InputPowerPath the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_InputPowerPath) MinTime() *Component_Transceiver_Channel_InputPower_MinTimePath { + return &Component_Transceiver_Channel_InputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41128,9 +41123,9 @@ func (n *Component_Transceiver_Channel_InputPower) MinTime() *Component_Transcei } } -// MinTime returns from Component_Transceiver_Channel_InputPowerAny the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_InputPowerAny) MinTime() *Component_Transceiver_Channel_InputPower_MinTimeAny { - return &Component_Transceiver_Channel_InputPower_MinTimeAny{ +// MinTime returns from Component_Transceiver_Channel_InputPowerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_InputPowerPathAny) MinTime() *Component_Transceiver_Channel_InputPower_MinTimePathAny { + return &Component_Transceiver_Channel_InputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41139,89 +41134,89 @@ func (n *Component_Transceiver_Channel_InputPowerAny) MinTime() *Component_Trans } } -// Component_Transceiver_Channel_LaserBiasCurrent represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent struct { +// Component_Transceiver_Channel_LaserBiasCurrentPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrentPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrentAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrentAny struct { +// Component_Transceiver_Channel_LaserBiasCurrentPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrentPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_Avg represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/avg YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_Avg struct { +// Component_Transceiver_Channel_LaserBiasCurrent_AvgPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/avg YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/avg YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_AvgAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/avg YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_Instant represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/instant YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_Instant struct { +// Component_Transceiver_Channel_LaserBiasCurrent_InstantPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/instant YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/instant YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_InstantAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/instant YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_Interval represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/interval YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_Interval struct { +// Component_Transceiver_Channel_LaserBiasCurrent_IntervalPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/interval YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/interval YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_IntervalAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/interval YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_Max represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_Max struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MaxPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MaxAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MaxTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max-time YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MaxTime struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max-time YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max-time YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MaxTimeAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/max-time YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_Min represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_Min struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MinPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MinPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MinAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MinTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min-time YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MinTime struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MinTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min-time YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_LaserBiasCurrent_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min-time YANG schema element. -type Component_Transceiver_Channel_LaserBiasCurrent_MinTimeAny struct { +// Component_Transceiver_Channel_LaserBiasCurrent_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/laser-bias-current/min-time YANG schema element. +type Component_Transceiver_Channel_LaserBiasCurrent_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "avg". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) Avg() *Component_Transceiver_Channel_LaserBiasCurrent_Avg { - return &Component_Transceiver_Channel_LaserBiasCurrent_Avg{ +// Avg returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "avg". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) Avg() *Component_Transceiver_Channel_LaserBiasCurrent_AvgPath { + return &Component_Transceiver_Channel_LaserBiasCurrent_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41230,9 +41225,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) Avg() *Component_Transc } } -// Avg returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "avg". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Avg() *Component_Transceiver_Channel_LaserBiasCurrent_AvgAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_AvgAny{ +// Avg returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "avg". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) Avg() *Component_Transceiver_Channel_LaserBiasCurrent_AvgPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41241,9 +41236,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Avg() *Component_Tra } } -// Instant returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "instant". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) Instant() *Component_Transceiver_Channel_LaserBiasCurrent_Instant { - return &Component_Transceiver_Channel_LaserBiasCurrent_Instant{ +// Instant returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "instant". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) Instant() *Component_Transceiver_Channel_LaserBiasCurrent_InstantPath { + return &Component_Transceiver_Channel_LaserBiasCurrent_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41252,9 +41247,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) Instant() *Component_Tr } } -// Instant returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "instant". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Instant() *Component_Transceiver_Channel_LaserBiasCurrent_InstantAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_InstantAny{ +// Instant returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "instant". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) Instant() *Component_Transceiver_Channel_LaserBiasCurrent_InstantPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41263,9 +41258,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Instant() *Component } } -// Interval returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "interval". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) Interval() *Component_Transceiver_Channel_LaserBiasCurrent_Interval { - return &Component_Transceiver_Channel_LaserBiasCurrent_Interval{ +// Interval returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "interval". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) Interval() *Component_Transceiver_Channel_LaserBiasCurrent_IntervalPath { + return &Component_Transceiver_Channel_LaserBiasCurrent_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41274,9 +41269,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) Interval() *Component_T } } -// Interval returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "interval". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Interval() *Component_Transceiver_Channel_LaserBiasCurrent_IntervalAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_IntervalAny{ +// Interval returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "interval". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) Interval() *Component_Transceiver_Channel_LaserBiasCurrent_IntervalPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41285,9 +41280,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Interval() *Componen } } -// Max returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "max". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) Max() *Component_Transceiver_Channel_LaserBiasCurrent_Max { - return &Component_Transceiver_Channel_LaserBiasCurrent_Max{ +// Max returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "max". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) Max() *Component_Transceiver_Channel_LaserBiasCurrent_MaxPath { + return &Component_Transceiver_Channel_LaserBiasCurrent_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41296,9 +41291,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) Max() *Component_Transc } } -// Max returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "max". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Max() *Component_Transceiver_Channel_LaserBiasCurrent_MaxAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_MaxAny{ +// Max returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "max". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) Max() *Component_Transceiver_Channel_LaserBiasCurrent_MaxPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41307,9 +41302,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Max() *Component_Tra } } -// MaxTime returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) MaxTime() *Component_Transceiver_Channel_LaserBiasCurrent_MaxTime { - return &Component_Transceiver_Channel_LaserBiasCurrent_MaxTime{ +// MaxTime returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) MaxTime() *Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePath { + return &Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41318,9 +41313,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) MaxTime() *Component_Tr } } -// MaxTime returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) MaxTime() *Component_Transceiver_Channel_LaserBiasCurrent_MaxTimeAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) MaxTime() *Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41329,9 +41324,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) MaxTime() *Component } } -// Min returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "min". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) Min() *Component_Transceiver_Channel_LaserBiasCurrent_Min { - return &Component_Transceiver_Channel_LaserBiasCurrent_Min{ +// Min returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "min". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) Min() *Component_Transceiver_Channel_LaserBiasCurrent_MinPath { + return &Component_Transceiver_Channel_LaserBiasCurrent_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41340,9 +41335,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) Min() *Component_Transc } } -// Min returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "min". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Min() *Component_Transceiver_Channel_LaserBiasCurrent_MinAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_MinAny{ +// Min returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "min". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) Min() *Component_Transceiver_Channel_LaserBiasCurrent_MinPathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41351,9 +41346,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) Min() *Component_Tra } } -// MinTime returns from Component_Transceiver_Channel_LaserBiasCurrent the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_LaserBiasCurrent) MinTime() *Component_Transceiver_Channel_LaserBiasCurrent_MinTime { - return &Component_Transceiver_Channel_LaserBiasCurrent_MinTime{ +// MinTime returns from Component_Transceiver_Channel_LaserBiasCurrentPath the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPath) MinTime() *Component_Transceiver_Channel_LaserBiasCurrent_MinTimePath { + return &Component_Transceiver_Channel_LaserBiasCurrent_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41362,9 +41357,9 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrent) MinTime() *Component_Tr } } -// MinTime returns from Component_Transceiver_Channel_LaserBiasCurrentAny the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) MinTime() *Component_Transceiver_Channel_LaserBiasCurrent_MinTimeAny { - return &Component_Transceiver_Channel_LaserBiasCurrent_MinTimeAny{ +// MinTime returns from Component_Transceiver_Channel_LaserBiasCurrentPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_LaserBiasCurrentPathAny) MinTime() *Component_Transceiver_Channel_LaserBiasCurrent_MinTimePathAny { + return &Component_Transceiver_Channel_LaserBiasCurrent_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41373,89 +41368,89 @@ func (n *Component_Transceiver_Channel_LaserBiasCurrentAny) MinTime() *Component } } -// Component_Transceiver_Channel_OutputPower represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power YANG schema element. -type Component_Transceiver_Channel_OutputPower struct { +// Component_Transceiver_Channel_OutputPowerPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power YANG schema element. +type Component_Transceiver_Channel_OutputPowerPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power YANG schema element. -type Component_Transceiver_Channel_OutputPowerAny struct { +// Component_Transceiver_Channel_OutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power YANG schema element. +type Component_Transceiver_Channel_OutputPowerPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_Avg represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/avg YANG schema element. -type Component_Transceiver_Channel_OutputPower_Avg struct { +// Component_Transceiver_Channel_OutputPower_AvgPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/avg YANG schema element. +type Component_Transceiver_Channel_OutputPower_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/avg YANG schema element. -type Component_Transceiver_Channel_OutputPower_AvgAny struct { +// Component_Transceiver_Channel_OutputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/avg YANG schema element. +type Component_Transceiver_Channel_OutputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_Instant represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/instant YANG schema element. -type Component_Transceiver_Channel_OutputPower_Instant struct { +// Component_Transceiver_Channel_OutputPower_InstantPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/instant YANG schema element. +type Component_Transceiver_Channel_OutputPower_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/instant YANG schema element. -type Component_Transceiver_Channel_OutputPower_InstantAny struct { +// Component_Transceiver_Channel_OutputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/instant YANG schema element. +type Component_Transceiver_Channel_OutputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_Interval represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/interval YANG schema element. -type Component_Transceiver_Channel_OutputPower_Interval struct { +// Component_Transceiver_Channel_OutputPower_IntervalPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/interval YANG schema element. +type Component_Transceiver_Channel_OutputPower_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/interval YANG schema element. -type Component_Transceiver_Channel_OutputPower_IntervalAny struct { +// Component_Transceiver_Channel_OutputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/interval YANG schema element. +type Component_Transceiver_Channel_OutputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_Max represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max YANG schema element. -type Component_Transceiver_Channel_OutputPower_Max struct { +// Component_Transceiver_Channel_OutputPower_MaxPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max YANG schema element. +type Component_Transceiver_Channel_OutputPower_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max YANG schema element. -type Component_Transceiver_Channel_OutputPower_MaxAny struct { +// Component_Transceiver_Channel_OutputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max YANG schema element. +type Component_Transceiver_Channel_OutputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MaxTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max-time YANG schema element. -type Component_Transceiver_Channel_OutputPower_MaxTime struct { +// Component_Transceiver_Channel_OutputPower_MaxTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max-time YANG schema element. +type Component_Transceiver_Channel_OutputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max-time YANG schema element. -type Component_Transceiver_Channel_OutputPower_MaxTimeAny struct { +// Component_Transceiver_Channel_OutputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/max-time YANG schema element. +type Component_Transceiver_Channel_OutputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_Min represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min YANG schema element. -type Component_Transceiver_Channel_OutputPower_Min struct { +// Component_Transceiver_Channel_OutputPower_MinPath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min YANG schema element. +type Component_Transceiver_Channel_OutputPower_MinPath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min YANG schema element. -type Component_Transceiver_Channel_OutputPower_MinAny struct { +// Component_Transceiver_Channel_OutputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min YANG schema element. +type Component_Transceiver_Channel_OutputPower_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MinTime represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min-time YANG schema element. -type Component_Transceiver_Channel_OutputPower_MinTime struct { +// Component_Transceiver_Channel_OutputPower_MinTimePath represents the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min-time YANG schema element. +type Component_Transceiver_Channel_OutputPower_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_Channel_OutputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min-time YANG schema element. -type Component_Transceiver_Channel_OutputPower_MinTimeAny struct { +// Component_Transceiver_Channel_OutputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/physical-channels/channel/state/output-power/min-time YANG schema element. +type Component_Transceiver_Channel_OutputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_Channel_OutputPower the path struct for its child "avg". -func (n *Component_Transceiver_Channel_OutputPower) Avg() *Component_Transceiver_Channel_OutputPower_Avg { - return &Component_Transceiver_Channel_OutputPower_Avg{ +// Avg returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "avg". +func (n *Component_Transceiver_Channel_OutputPowerPath) Avg() *Component_Transceiver_Channel_OutputPower_AvgPath { + return &Component_Transceiver_Channel_OutputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41464,9 +41459,9 @@ func (n *Component_Transceiver_Channel_OutputPower) Avg() *Component_Transceiver } } -// Avg returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "avg". -func (n *Component_Transceiver_Channel_OutputPowerAny) Avg() *Component_Transceiver_Channel_OutputPower_AvgAny { - return &Component_Transceiver_Channel_OutputPower_AvgAny{ +// Avg returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) Avg() *Component_Transceiver_Channel_OutputPower_AvgPathAny { + return &Component_Transceiver_Channel_OutputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41475,9 +41470,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) Avg() *Component_Transcei } } -// Instant returns from Component_Transceiver_Channel_OutputPower the path struct for its child "instant". -func (n *Component_Transceiver_Channel_OutputPower) Instant() *Component_Transceiver_Channel_OutputPower_Instant { - return &Component_Transceiver_Channel_OutputPower_Instant{ +// Instant returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "instant". +func (n *Component_Transceiver_Channel_OutputPowerPath) Instant() *Component_Transceiver_Channel_OutputPower_InstantPath { + return &Component_Transceiver_Channel_OutputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41486,9 +41481,9 @@ func (n *Component_Transceiver_Channel_OutputPower) Instant() *Component_Transce } } -// Instant returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "instant". -func (n *Component_Transceiver_Channel_OutputPowerAny) Instant() *Component_Transceiver_Channel_OutputPower_InstantAny { - return &Component_Transceiver_Channel_OutputPower_InstantAny{ +// Instant returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) Instant() *Component_Transceiver_Channel_OutputPower_InstantPathAny { + return &Component_Transceiver_Channel_OutputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41497,9 +41492,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) Instant() *Component_Tran } } -// Interval returns from Component_Transceiver_Channel_OutputPower the path struct for its child "interval". -func (n *Component_Transceiver_Channel_OutputPower) Interval() *Component_Transceiver_Channel_OutputPower_Interval { - return &Component_Transceiver_Channel_OutputPower_Interval{ +// Interval returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "interval". +func (n *Component_Transceiver_Channel_OutputPowerPath) Interval() *Component_Transceiver_Channel_OutputPower_IntervalPath { + return &Component_Transceiver_Channel_OutputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41508,9 +41503,9 @@ func (n *Component_Transceiver_Channel_OutputPower) Interval() *Component_Transc } } -// Interval returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "interval". -func (n *Component_Transceiver_Channel_OutputPowerAny) Interval() *Component_Transceiver_Channel_OutputPower_IntervalAny { - return &Component_Transceiver_Channel_OutputPower_IntervalAny{ +// Interval returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) Interval() *Component_Transceiver_Channel_OutputPower_IntervalPathAny { + return &Component_Transceiver_Channel_OutputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41519,9 +41514,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) Interval() *Component_Tra } } -// Max returns from Component_Transceiver_Channel_OutputPower the path struct for its child "max". -func (n *Component_Transceiver_Channel_OutputPower) Max() *Component_Transceiver_Channel_OutputPower_Max { - return &Component_Transceiver_Channel_OutputPower_Max{ +// Max returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "max". +func (n *Component_Transceiver_Channel_OutputPowerPath) Max() *Component_Transceiver_Channel_OutputPower_MaxPath { + return &Component_Transceiver_Channel_OutputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41530,9 +41525,9 @@ func (n *Component_Transceiver_Channel_OutputPower) Max() *Component_Transceiver } } -// Max returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "max". -func (n *Component_Transceiver_Channel_OutputPowerAny) Max() *Component_Transceiver_Channel_OutputPower_MaxAny { - return &Component_Transceiver_Channel_OutputPower_MaxAny{ +// Max returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "max". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) Max() *Component_Transceiver_Channel_OutputPower_MaxPathAny { + return &Component_Transceiver_Channel_OutputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41541,9 +41536,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) Max() *Component_Transcei } } -// MaxTime returns from Component_Transceiver_Channel_OutputPower the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_OutputPower) MaxTime() *Component_Transceiver_Channel_OutputPower_MaxTime { - return &Component_Transceiver_Channel_OutputPower_MaxTime{ +// MaxTime returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_OutputPowerPath) MaxTime() *Component_Transceiver_Channel_OutputPower_MaxTimePath { + return &Component_Transceiver_Channel_OutputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41552,9 +41547,9 @@ func (n *Component_Transceiver_Channel_OutputPower) MaxTime() *Component_Transce } } -// MaxTime returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "max-time". -func (n *Component_Transceiver_Channel_OutputPowerAny) MaxTime() *Component_Transceiver_Channel_OutputPower_MaxTimeAny { - return &Component_Transceiver_Channel_OutputPower_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) MaxTime() *Component_Transceiver_Channel_OutputPower_MaxTimePathAny { + return &Component_Transceiver_Channel_OutputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41563,9 +41558,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) MaxTime() *Component_Tran } } -// Min returns from Component_Transceiver_Channel_OutputPower the path struct for its child "min". -func (n *Component_Transceiver_Channel_OutputPower) Min() *Component_Transceiver_Channel_OutputPower_Min { - return &Component_Transceiver_Channel_OutputPower_Min{ +// Min returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "min". +func (n *Component_Transceiver_Channel_OutputPowerPath) Min() *Component_Transceiver_Channel_OutputPower_MinPath { + return &Component_Transceiver_Channel_OutputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41574,9 +41569,9 @@ func (n *Component_Transceiver_Channel_OutputPower) Min() *Component_Transceiver } } -// Min returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "min". -func (n *Component_Transceiver_Channel_OutputPowerAny) Min() *Component_Transceiver_Channel_OutputPower_MinAny { - return &Component_Transceiver_Channel_OutputPower_MinAny{ +// Min returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "min". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) Min() *Component_Transceiver_Channel_OutputPower_MinPathAny { + return &Component_Transceiver_Channel_OutputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41585,9 +41580,9 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) Min() *Component_Transcei } } -// MinTime returns from Component_Transceiver_Channel_OutputPower the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_OutputPower) MinTime() *Component_Transceiver_Channel_OutputPower_MinTime { - return &Component_Transceiver_Channel_OutputPower_MinTime{ +// MinTime returns from Component_Transceiver_Channel_OutputPowerPath the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_OutputPowerPath) MinTime() *Component_Transceiver_Channel_OutputPower_MinTimePath { + return &Component_Transceiver_Channel_OutputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41596,9 +41591,9 @@ func (n *Component_Transceiver_Channel_OutputPower) MinTime() *Component_Transce } } -// MinTime returns from Component_Transceiver_Channel_OutputPowerAny the path struct for its child "min-time". -func (n *Component_Transceiver_Channel_OutputPowerAny) MinTime() *Component_Transceiver_Channel_OutputPower_MinTimeAny { - return &Component_Transceiver_Channel_OutputPower_MinTimeAny{ +// MinTime returns from Component_Transceiver_Channel_OutputPowerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_Channel_OutputPowerPathAny) MinTime() *Component_Transceiver_Channel_OutputPower_MinTimePathAny { + return &Component_Transceiver_Channel_OutputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41607,89 +41602,89 @@ func (n *Component_Transceiver_Channel_OutputPowerAny) MinTime() *Component_Tran } } -// Component_Transceiver_InputPower represents the /openconfig-platform/components/component/transceiver/state/input-power YANG schema element. -type Component_Transceiver_InputPower struct { +// Component_Transceiver_InputPowerPath represents the /openconfig-platform/components/component/transceiver/state/input-power YANG schema element. +type Component_Transceiver_InputPowerPath struct { *ygot.NodePath } -// Component_Transceiver_InputPowerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power YANG schema element. -type Component_Transceiver_InputPowerAny struct { +// Component_Transceiver_InputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power YANG schema element. +type Component_Transceiver_InputPowerPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_Avg represents the /openconfig-platform/components/component/transceiver/state/input-power/avg YANG schema element. -type Component_Transceiver_InputPower_Avg struct { +// Component_Transceiver_InputPower_AvgPath represents the /openconfig-platform/components/component/transceiver/state/input-power/avg YANG schema element. +type Component_Transceiver_InputPower_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/avg YANG schema element. -type Component_Transceiver_InputPower_AvgAny struct { +// Component_Transceiver_InputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/avg YANG schema element. +type Component_Transceiver_InputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_Instant represents the /openconfig-platform/components/component/transceiver/state/input-power/instant YANG schema element. -type Component_Transceiver_InputPower_Instant struct { +// Component_Transceiver_InputPower_InstantPath represents the /openconfig-platform/components/component/transceiver/state/input-power/instant YANG schema element. +type Component_Transceiver_InputPower_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/instant YANG schema element. -type Component_Transceiver_InputPower_InstantAny struct { +// Component_Transceiver_InputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/instant YANG schema element. +type Component_Transceiver_InputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_Interval represents the /openconfig-platform/components/component/transceiver/state/input-power/interval YANG schema element. -type Component_Transceiver_InputPower_Interval struct { +// Component_Transceiver_InputPower_IntervalPath represents the /openconfig-platform/components/component/transceiver/state/input-power/interval YANG schema element. +type Component_Transceiver_InputPower_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/interval YANG schema element. -type Component_Transceiver_InputPower_IntervalAny struct { +// Component_Transceiver_InputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/interval YANG schema element. +type Component_Transceiver_InputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_Max represents the /openconfig-platform/components/component/transceiver/state/input-power/max YANG schema element. -type Component_Transceiver_InputPower_Max struct { +// Component_Transceiver_InputPower_MaxPath represents the /openconfig-platform/components/component/transceiver/state/input-power/max YANG schema element. +type Component_Transceiver_InputPower_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/max YANG schema element. -type Component_Transceiver_InputPower_MaxAny struct { +// Component_Transceiver_InputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/max YANG schema element. +type Component_Transceiver_InputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MaxTime represents the /openconfig-platform/components/component/transceiver/state/input-power/max-time YANG schema element. -type Component_Transceiver_InputPower_MaxTime struct { +// Component_Transceiver_InputPower_MaxTimePath represents the /openconfig-platform/components/component/transceiver/state/input-power/max-time YANG schema element. +type Component_Transceiver_InputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/max-time YANG schema element. -type Component_Transceiver_InputPower_MaxTimeAny struct { +// Component_Transceiver_InputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/max-time YANG schema element. +type Component_Transceiver_InputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_Min represents the /openconfig-platform/components/component/transceiver/state/input-power/min YANG schema element. -type Component_Transceiver_InputPower_Min struct { +// Component_Transceiver_InputPower_MinPath represents the /openconfig-platform/components/component/transceiver/state/input-power/min YANG schema element. +type Component_Transceiver_InputPower_MinPath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/min YANG schema element. -type Component_Transceiver_InputPower_MinAny struct { +// Component_Transceiver_InputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/min YANG schema element. +type Component_Transceiver_InputPower_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MinTime represents the /openconfig-platform/components/component/transceiver/state/input-power/min-time YANG schema element. -type Component_Transceiver_InputPower_MinTime struct { +// Component_Transceiver_InputPower_MinTimePath represents the /openconfig-platform/components/component/transceiver/state/input-power/min-time YANG schema element. +type Component_Transceiver_InputPower_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_InputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/min-time YANG schema element. -type Component_Transceiver_InputPower_MinTimeAny struct { +// Component_Transceiver_InputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/input-power/min-time YANG schema element. +type Component_Transceiver_InputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_InputPower the path struct for its child "avg". -func (n *Component_Transceiver_InputPower) Avg() *Component_Transceiver_InputPower_Avg { - return &Component_Transceiver_InputPower_Avg{ +// Avg returns from Component_Transceiver_InputPowerPath the path struct for its child "avg". +func (n *Component_Transceiver_InputPowerPath) Avg() *Component_Transceiver_InputPower_AvgPath { + return &Component_Transceiver_InputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41698,9 +41693,9 @@ func (n *Component_Transceiver_InputPower) Avg() *Component_Transceiver_InputPow } } -// Avg returns from Component_Transceiver_InputPowerAny the path struct for its child "avg". -func (n *Component_Transceiver_InputPowerAny) Avg() *Component_Transceiver_InputPower_AvgAny { - return &Component_Transceiver_InputPower_AvgAny{ +// Avg returns from Component_Transceiver_InputPowerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_InputPowerPathAny) Avg() *Component_Transceiver_InputPower_AvgPathAny { + return &Component_Transceiver_InputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41709,9 +41704,9 @@ func (n *Component_Transceiver_InputPowerAny) Avg() *Component_Transceiver_Input } } -// Instant returns from Component_Transceiver_InputPower the path struct for its child "instant". -func (n *Component_Transceiver_InputPower) Instant() *Component_Transceiver_InputPower_Instant { - return &Component_Transceiver_InputPower_Instant{ +// Instant returns from Component_Transceiver_InputPowerPath the path struct for its child "instant". +func (n *Component_Transceiver_InputPowerPath) Instant() *Component_Transceiver_InputPower_InstantPath { + return &Component_Transceiver_InputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41720,9 +41715,9 @@ func (n *Component_Transceiver_InputPower) Instant() *Component_Transceiver_Inpu } } -// Instant returns from Component_Transceiver_InputPowerAny the path struct for its child "instant". -func (n *Component_Transceiver_InputPowerAny) Instant() *Component_Transceiver_InputPower_InstantAny { - return &Component_Transceiver_InputPower_InstantAny{ +// Instant returns from Component_Transceiver_InputPowerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_InputPowerPathAny) Instant() *Component_Transceiver_InputPower_InstantPathAny { + return &Component_Transceiver_InputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41731,9 +41726,9 @@ func (n *Component_Transceiver_InputPowerAny) Instant() *Component_Transceiver_I } } -// Interval returns from Component_Transceiver_InputPower the path struct for its child "interval". -func (n *Component_Transceiver_InputPower) Interval() *Component_Transceiver_InputPower_Interval { - return &Component_Transceiver_InputPower_Interval{ +// Interval returns from Component_Transceiver_InputPowerPath the path struct for its child "interval". +func (n *Component_Transceiver_InputPowerPath) Interval() *Component_Transceiver_InputPower_IntervalPath { + return &Component_Transceiver_InputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41742,9 +41737,9 @@ func (n *Component_Transceiver_InputPower) Interval() *Component_Transceiver_Inp } } -// Interval returns from Component_Transceiver_InputPowerAny the path struct for its child "interval". -func (n *Component_Transceiver_InputPowerAny) Interval() *Component_Transceiver_InputPower_IntervalAny { - return &Component_Transceiver_InputPower_IntervalAny{ +// Interval returns from Component_Transceiver_InputPowerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_InputPowerPathAny) Interval() *Component_Transceiver_InputPower_IntervalPathAny { + return &Component_Transceiver_InputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41753,9 +41748,9 @@ func (n *Component_Transceiver_InputPowerAny) Interval() *Component_Transceiver_ } } -// Max returns from Component_Transceiver_InputPower the path struct for its child "max". -func (n *Component_Transceiver_InputPower) Max() *Component_Transceiver_InputPower_Max { - return &Component_Transceiver_InputPower_Max{ +// Max returns from Component_Transceiver_InputPowerPath the path struct for its child "max". +func (n *Component_Transceiver_InputPowerPath) Max() *Component_Transceiver_InputPower_MaxPath { + return &Component_Transceiver_InputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41764,9 +41759,9 @@ func (n *Component_Transceiver_InputPower) Max() *Component_Transceiver_InputPow } } -// Max returns from Component_Transceiver_InputPowerAny the path struct for its child "max". -func (n *Component_Transceiver_InputPowerAny) Max() *Component_Transceiver_InputPower_MaxAny { - return &Component_Transceiver_InputPower_MaxAny{ +// Max returns from Component_Transceiver_InputPowerPathAny the path struct for its child "max". +func (n *Component_Transceiver_InputPowerPathAny) Max() *Component_Transceiver_InputPower_MaxPathAny { + return &Component_Transceiver_InputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41775,9 +41770,9 @@ func (n *Component_Transceiver_InputPowerAny) Max() *Component_Transceiver_Input } } -// MaxTime returns from Component_Transceiver_InputPower the path struct for its child "max-time". -func (n *Component_Transceiver_InputPower) MaxTime() *Component_Transceiver_InputPower_MaxTime { - return &Component_Transceiver_InputPower_MaxTime{ +// MaxTime returns from Component_Transceiver_InputPowerPath the path struct for its child "max-time". +func (n *Component_Transceiver_InputPowerPath) MaxTime() *Component_Transceiver_InputPower_MaxTimePath { + return &Component_Transceiver_InputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41786,9 +41781,9 @@ func (n *Component_Transceiver_InputPower) MaxTime() *Component_Transceiver_Inpu } } -// MaxTime returns from Component_Transceiver_InputPowerAny the path struct for its child "max-time". -func (n *Component_Transceiver_InputPowerAny) MaxTime() *Component_Transceiver_InputPower_MaxTimeAny { - return &Component_Transceiver_InputPower_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_InputPowerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_InputPowerPathAny) MaxTime() *Component_Transceiver_InputPower_MaxTimePathAny { + return &Component_Transceiver_InputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -41797,9 +41792,9 @@ func (n *Component_Transceiver_InputPowerAny) MaxTime() *Component_Transceiver_I } } -// Min returns from Component_Transceiver_InputPower the path struct for its child "min". -func (n *Component_Transceiver_InputPower) Min() *Component_Transceiver_InputPower_Min { - return &Component_Transceiver_InputPower_Min{ +// Min returns from Component_Transceiver_InputPowerPath the path struct for its child "min". +func (n *Component_Transceiver_InputPowerPath) Min() *Component_Transceiver_InputPower_MinPath { + return &Component_Transceiver_InputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41808,9 +41803,9 @@ func (n *Component_Transceiver_InputPower) Min() *Component_Transceiver_InputPow } } -// Min returns from Component_Transceiver_InputPowerAny the path struct for its child "min". -func (n *Component_Transceiver_InputPowerAny) Min() *Component_Transceiver_InputPower_MinAny { - return &Component_Transceiver_InputPower_MinAny{ +// Min returns from Component_Transceiver_InputPowerPathAny the path struct for its child "min". +func (n *Component_Transceiver_InputPowerPathAny) Min() *Component_Transceiver_InputPower_MinPathAny { + return &Component_Transceiver_InputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -41819,9 +41814,9 @@ func (n *Component_Transceiver_InputPowerAny) Min() *Component_Transceiver_Input } } -// MinTime returns from Component_Transceiver_InputPower the path struct for its child "min-time". -func (n *Component_Transceiver_InputPower) MinTime() *Component_Transceiver_InputPower_MinTime { - return &Component_Transceiver_InputPower_MinTime{ +// MinTime returns from Component_Transceiver_InputPowerPath the path struct for its child "min-time". +func (n *Component_Transceiver_InputPowerPath) MinTime() *Component_Transceiver_InputPower_MinTimePath { + return &Component_Transceiver_InputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41830,9 +41825,9 @@ func (n *Component_Transceiver_InputPower) MinTime() *Component_Transceiver_Inpu } } -// MinTime returns from Component_Transceiver_InputPowerAny the path struct for its child "min-time". -func (n *Component_Transceiver_InputPowerAny) MinTime() *Component_Transceiver_InputPower_MinTimeAny { - return &Component_Transceiver_InputPower_MinTimeAny{ +// MinTime returns from Component_Transceiver_InputPowerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_InputPowerPathAny) MinTime() *Component_Transceiver_InputPower_MinTimePathAny { + return &Component_Transceiver_InputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -41841,89 +41836,89 @@ func (n *Component_Transceiver_InputPowerAny) MinTime() *Component_Transceiver_I } } -// Component_Transceiver_LaserBiasCurrent represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current YANG schema element. -type Component_Transceiver_LaserBiasCurrent struct { +// Component_Transceiver_LaserBiasCurrentPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current YANG schema element. +type Component_Transceiver_LaserBiasCurrentPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrentAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current YANG schema element. -type Component_Transceiver_LaserBiasCurrentAny struct { +// Component_Transceiver_LaserBiasCurrentPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current YANG schema element. +type Component_Transceiver_LaserBiasCurrentPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_Avg represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/avg YANG schema element. -type Component_Transceiver_LaserBiasCurrent_Avg struct { +// Component_Transceiver_LaserBiasCurrent_AvgPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/avg YANG schema element. +type Component_Transceiver_LaserBiasCurrent_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/avg YANG schema element. -type Component_Transceiver_LaserBiasCurrent_AvgAny struct { +// Component_Transceiver_LaserBiasCurrent_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/avg YANG schema element. +type Component_Transceiver_LaserBiasCurrent_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_Instant represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/instant YANG schema element. -type Component_Transceiver_LaserBiasCurrent_Instant struct { +// Component_Transceiver_LaserBiasCurrent_InstantPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/instant YANG schema element. +type Component_Transceiver_LaserBiasCurrent_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/instant YANG schema element. -type Component_Transceiver_LaserBiasCurrent_InstantAny struct { +// Component_Transceiver_LaserBiasCurrent_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/instant YANG schema element. +type Component_Transceiver_LaserBiasCurrent_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_Interval represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/interval YANG schema element. -type Component_Transceiver_LaserBiasCurrent_Interval struct { +// Component_Transceiver_LaserBiasCurrent_IntervalPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/interval YANG schema element. +type Component_Transceiver_LaserBiasCurrent_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/interval YANG schema element. -type Component_Transceiver_LaserBiasCurrent_IntervalAny struct { +// Component_Transceiver_LaserBiasCurrent_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/interval YANG schema element. +type Component_Transceiver_LaserBiasCurrent_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_Max represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max YANG schema element. -type Component_Transceiver_LaserBiasCurrent_Max struct { +// Component_Transceiver_LaserBiasCurrent_MaxPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MaxAny struct { +// Component_Transceiver_LaserBiasCurrent_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MaxTime represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max-time YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MaxTime struct { +// Component_Transceiver_LaserBiasCurrent_MaxTimePath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max-time YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max-time YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MaxTimeAny struct { +// Component_Transceiver_LaserBiasCurrent_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/max-time YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_Min represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min YANG schema element. -type Component_Transceiver_LaserBiasCurrent_Min struct { +// Component_Transceiver_LaserBiasCurrent_MinPath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MinPath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MinAny struct { +// Component_Transceiver_LaserBiasCurrent_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MinTime represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min-time YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MinTime struct { +// Component_Transceiver_LaserBiasCurrent_MinTimePath represents the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min-time YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_LaserBiasCurrent_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min-time YANG schema element. -type Component_Transceiver_LaserBiasCurrent_MinTimeAny struct { +// Component_Transceiver_LaserBiasCurrent_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/laser-bias-current/min-time YANG schema element. +type Component_Transceiver_LaserBiasCurrent_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "avg". -func (n *Component_Transceiver_LaserBiasCurrent) Avg() *Component_Transceiver_LaserBiasCurrent_Avg { - return &Component_Transceiver_LaserBiasCurrent_Avg{ +// Avg returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "avg". +func (n *Component_Transceiver_LaserBiasCurrentPath) Avg() *Component_Transceiver_LaserBiasCurrent_AvgPath { + return &Component_Transceiver_LaserBiasCurrent_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41932,9 +41927,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) Avg() *Component_Transceiver_La } } -// Avg returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "avg". -func (n *Component_Transceiver_LaserBiasCurrentAny) Avg() *Component_Transceiver_LaserBiasCurrent_AvgAny { - return &Component_Transceiver_LaserBiasCurrent_AvgAny{ +// Avg returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "avg". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) Avg() *Component_Transceiver_LaserBiasCurrent_AvgPathAny { + return &Component_Transceiver_LaserBiasCurrent_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -41943,9 +41938,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) Avg() *Component_Transceiver } } -// Instant returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "instant". -func (n *Component_Transceiver_LaserBiasCurrent) Instant() *Component_Transceiver_LaserBiasCurrent_Instant { - return &Component_Transceiver_LaserBiasCurrent_Instant{ +// Instant returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "instant". +func (n *Component_Transceiver_LaserBiasCurrentPath) Instant() *Component_Transceiver_LaserBiasCurrent_InstantPath { + return &Component_Transceiver_LaserBiasCurrent_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41954,9 +41949,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) Instant() *Component_Transceive } } -// Instant returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "instant". -func (n *Component_Transceiver_LaserBiasCurrentAny) Instant() *Component_Transceiver_LaserBiasCurrent_InstantAny { - return &Component_Transceiver_LaserBiasCurrent_InstantAny{ +// Instant returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "instant". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) Instant() *Component_Transceiver_LaserBiasCurrent_InstantPathAny { + return &Component_Transceiver_LaserBiasCurrent_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -41965,9 +41960,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) Instant() *Component_Transce } } -// Interval returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "interval". -func (n *Component_Transceiver_LaserBiasCurrent) Interval() *Component_Transceiver_LaserBiasCurrent_Interval { - return &Component_Transceiver_LaserBiasCurrent_Interval{ +// Interval returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "interval". +func (n *Component_Transceiver_LaserBiasCurrentPath) Interval() *Component_Transceiver_LaserBiasCurrent_IntervalPath { + return &Component_Transceiver_LaserBiasCurrent_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41976,9 +41971,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) Interval() *Component_Transceiv } } -// Interval returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "interval". -func (n *Component_Transceiver_LaserBiasCurrentAny) Interval() *Component_Transceiver_LaserBiasCurrent_IntervalAny { - return &Component_Transceiver_LaserBiasCurrent_IntervalAny{ +// Interval returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "interval". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) Interval() *Component_Transceiver_LaserBiasCurrent_IntervalPathAny { + return &Component_Transceiver_LaserBiasCurrent_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -41987,9 +41982,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) Interval() *Component_Transc } } -// Max returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "max". -func (n *Component_Transceiver_LaserBiasCurrent) Max() *Component_Transceiver_LaserBiasCurrent_Max { - return &Component_Transceiver_LaserBiasCurrent_Max{ +// Max returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "max". +func (n *Component_Transceiver_LaserBiasCurrentPath) Max() *Component_Transceiver_LaserBiasCurrent_MaxPath { + return &Component_Transceiver_LaserBiasCurrent_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -41998,9 +41993,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) Max() *Component_Transceiver_La } } -// Max returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "max". -func (n *Component_Transceiver_LaserBiasCurrentAny) Max() *Component_Transceiver_LaserBiasCurrent_MaxAny { - return &Component_Transceiver_LaserBiasCurrent_MaxAny{ +// Max returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "max". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) Max() *Component_Transceiver_LaserBiasCurrent_MaxPathAny { + return &Component_Transceiver_LaserBiasCurrent_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42009,9 +42004,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) Max() *Component_Transceiver } } -// MaxTime returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "max-time". -func (n *Component_Transceiver_LaserBiasCurrent) MaxTime() *Component_Transceiver_LaserBiasCurrent_MaxTime { - return &Component_Transceiver_LaserBiasCurrent_MaxTime{ +// MaxTime returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "max-time". +func (n *Component_Transceiver_LaserBiasCurrentPath) MaxTime() *Component_Transceiver_LaserBiasCurrent_MaxTimePath { + return &Component_Transceiver_LaserBiasCurrent_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42020,9 +42015,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) MaxTime() *Component_Transceive } } -// MaxTime returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "max-time". -func (n *Component_Transceiver_LaserBiasCurrentAny) MaxTime() *Component_Transceiver_LaserBiasCurrent_MaxTimeAny { - return &Component_Transceiver_LaserBiasCurrent_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) MaxTime() *Component_Transceiver_LaserBiasCurrent_MaxTimePathAny { + return &Component_Transceiver_LaserBiasCurrent_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42031,9 +42026,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) MaxTime() *Component_Transce } } -// Min returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "min". -func (n *Component_Transceiver_LaserBiasCurrent) Min() *Component_Transceiver_LaserBiasCurrent_Min { - return &Component_Transceiver_LaserBiasCurrent_Min{ +// Min returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "min". +func (n *Component_Transceiver_LaserBiasCurrentPath) Min() *Component_Transceiver_LaserBiasCurrent_MinPath { + return &Component_Transceiver_LaserBiasCurrent_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42042,9 +42037,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) Min() *Component_Transceiver_La } } -// Min returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "min". -func (n *Component_Transceiver_LaserBiasCurrentAny) Min() *Component_Transceiver_LaserBiasCurrent_MinAny { - return &Component_Transceiver_LaserBiasCurrent_MinAny{ +// Min returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "min". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) Min() *Component_Transceiver_LaserBiasCurrent_MinPathAny { + return &Component_Transceiver_LaserBiasCurrent_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42053,9 +42048,9 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) Min() *Component_Transceiver } } -// MinTime returns from Component_Transceiver_LaserBiasCurrent the path struct for its child "min-time". -func (n *Component_Transceiver_LaserBiasCurrent) MinTime() *Component_Transceiver_LaserBiasCurrent_MinTime { - return &Component_Transceiver_LaserBiasCurrent_MinTime{ +// MinTime returns from Component_Transceiver_LaserBiasCurrentPath the path struct for its child "min-time". +func (n *Component_Transceiver_LaserBiasCurrentPath) MinTime() *Component_Transceiver_LaserBiasCurrent_MinTimePath { + return &Component_Transceiver_LaserBiasCurrent_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42064,9 +42059,9 @@ func (n *Component_Transceiver_LaserBiasCurrent) MinTime() *Component_Transceive } } -// MinTime returns from Component_Transceiver_LaserBiasCurrentAny the path struct for its child "min-time". -func (n *Component_Transceiver_LaserBiasCurrentAny) MinTime() *Component_Transceiver_LaserBiasCurrent_MinTimeAny { - return &Component_Transceiver_LaserBiasCurrent_MinTimeAny{ +// MinTime returns from Component_Transceiver_LaserBiasCurrentPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_LaserBiasCurrentPathAny) MinTime() *Component_Transceiver_LaserBiasCurrent_MinTimePathAny { + return &Component_Transceiver_LaserBiasCurrent_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42075,89 +42070,89 @@ func (n *Component_Transceiver_LaserBiasCurrentAny) MinTime() *Component_Transce } } -// Component_Transceiver_OutputPower represents the /openconfig-platform/components/component/transceiver/state/output-power YANG schema element. -type Component_Transceiver_OutputPower struct { +// Component_Transceiver_OutputPowerPath represents the /openconfig-platform/components/component/transceiver/state/output-power YANG schema element. +type Component_Transceiver_OutputPowerPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPowerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power YANG schema element. -type Component_Transceiver_OutputPowerAny struct { +// Component_Transceiver_OutputPowerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power YANG schema element. +type Component_Transceiver_OutputPowerPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_Avg represents the /openconfig-platform/components/component/transceiver/state/output-power/avg YANG schema element. -type Component_Transceiver_OutputPower_Avg struct { +// Component_Transceiver_OutputPower_AvgPath represents the /openconfig-platform/components/component/transceiver/state/output-power/avg YANG schema element. +type Component_Transceiver_OutputPower_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/avg YANG schema element. -type Component_Transceiver_OutputPower_AvgAny struct { +// Component_Transceiver_OutputPower_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/avg YANG schema element. +type Component_Transceiver_OutputPower_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_Instant represents the /openconfig-platform/components/component/transceiver/state/output-power/instant YANG schema element. -type Component_Transceiver_OutputPower_Instant struct { +// Component_Transceiver_OutputPower_InstantPath represents the /openconfig-platform/components/component/transceiver/state/output-power/instant YANG schema element. +type Component_Transceiver_OutputPower_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/instant YANG schema element. -type Component_Transceiver_OutputPower_InstantAny struct { +// Component_Transceiver_OutputPower_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/instant YANG schema element. +type Component_Transceiver_OutputPower_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_Interval represents the /openconfig-platform/components/component/transceiver/state/output-power/interval YANG schema element. -type Component_Transceiver_OutputPower_Interval struct { +// Component_Transceiver_OutputPower_IntervalPath represents the /openconfig-platform/components/component/transceiver/state/output-power/interval YANG schema element. +type Component_Transceiver_OutputPower_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/interval YANG schema element. -type Component_Transceiver_OutputPower_IntervalAny struct { +// Component_Transceiver_OutputPower_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/interval YANG schema element. +type Component_Transceiver_OutputPower_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_Max represents the /openconfig-platform/components/component/transceiver/state/output-power/max YANG schema element. -type Component_Transceiver_OutputPower_Max struct { +// Component_Transceiver_OutputPower_MaxPath represents the /openconfig-platform/components/component/transceiver/state/output-power/max YANG schema element. +type Component_Transceiver_OutputPower_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/max YANG schema element. -type Component_Transceiver_OutputPower_MaxAny struct { +// Component_Transceiver_OutputPower_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/max YANG schema element. +type Component_Transceiver_OutputPower_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MaxTime represents the /openconfig-platform/components/component/transceiver/state/output-power/max-time YANG schema element. -type Component_Transceiver_OutputPower_MaxTime struct { +// Component_Transceiver_OutputPower_MaxTimePath represents the /openconfig-platform/components/component/transceiver/state/output-power/max-time YANG schema element. +type Component_Transceiver_OutputPower_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/max-time YANG schema element. -type Component_Transceiver_OutputPower_MaxTimeAny struct { +// Component_Transceiver_OutputPower_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/max-time YANG schema element. +type Component_Transceiver_OutputPower_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_Min represents the /openconfig-platform/components/component/transceiver/state/output-power/min YANG schema element. -type Component_Transceiver_OutputPower_Min struct { +// Component_Transceiver_OutputPower_MinPath represents the /openconfig-platform/components/component/transceiver/state/output-power/min YANG schema element. +type Component_Transceiver_OutputPower_MinPath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/min YANG schema element. -type Component_Transceiver_OutputPower_MinAny struct { +// Component_Transceiver_OutputPower_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/min YANG schema element. +type Component_Transceiver_OutputPower_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MinTime represents the /openconfig-platform/components/component/transceiver/state/output-power/min-time YANG schema element. -type Component_Transceiver_OutputPower_MinTime struct { +// Component_Transceiver_OutputPower_MinTimePath represents the /openconfig-platform/components/component/transceiver/state/output-power/min-time YANG schema element. +type Component_Transceiver_OutputPower_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_OutputPower_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/min-time YANG schema element. -type Component_Transceiver_OutputPower_MinTimeAny struct { +// Component_Transceiver_OutputPower_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/output-power/min-time YANG schema element. +type Component_Transceiver_OutputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_OutputPower the path struct for its child "avg". -func (n *Component_Transceiver_OutputPower) Avg() *Component_Transceiver_OutputPower_Avg { - return &Component_Transceiver_OutputPower_Avg{ +// Avg returns from Component_Transceiver_OutputPowerPath the path struct for its child "avg". +func (n *Component_Transceiver_OutputPowerPath) Avg() *Component_Transceiver_OutputPower_AvgPath { + return &Component_Transceiver_OutputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42166,9 +42161,9 @@ func (n *Component_Transceiver_OutputPower) Avg() *Component_Transceiver_OutputP } } -// Avg returns from Component_Transceiver_OutputPowerAny the path struct for its child "avg". -func (n *Component_Transceiver_OutputPowerAny) Avg() *Component_Transceiver_OutputPower_AvgAny { - return &Component_Transceiver_OutputPower_AvgAny{ +// Avg returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_OutputPowerPathAny) Avg() *Component_Transceiver_OutputPower_AvgPathAny { + return &Component_Transceiver_OutputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42177,9 +42172,9 @@ func (n *Component_Transceiver_OutputPowerAny) Avg() *Component_Transceiver_Outp } } -// Instant returns from Component_Transceiver_OutputPower the path struct for its child "instant". -func (n *Component_Transceiver_OutputPower) Instant() *Component_Transceiver_OutputPower_Instant { - return &Component_Transceiver_OutputPower_Instant{ +// Instant returns from Component_Transceiver_OutputPowerPath the path struct for its child "instant". +func (n *Component_Transceiver_OutputPowerPath) Instant() *Component_Transceiver_OutputPower_InstantPath { + return &Component_Transceiver_OutputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42188,9 +42183,9 @@ func (n *Component_Transceiver_OutputPower) Instant() *Component_Transceiver_Out } } -// Instant returns from Component_Transceiver_OutputPowerAny the path struct for its child "instant". -func (n *Component_Transceiver_OutputPowerAny) Instant() *Component_Transceiver_OutputPower_InstantAny { - return &Component_Transceiver_OutputPower_InstantAny{ +// Instant returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_OutputPowerPathAny) Instant() *Component_Transceiver_OutputPower_InstantPathAny { + return &Component_Transceiver_OutputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42199,9 +42194,9 @@ func (n *Component_Transceiver_OutputPowerAny) Instant() *Component_Transceiver_ } } -// Interval returns from Component_Transceiver_OutputPower the path struct for its child "interval". -func (n *Component_Transceiver_OutputPower) Interval() *Component_Transceiver_OutputPower_Interval { - return &Component_Transceiver_OutputPower_Interval{ +// Interval returns from Component_Transceiver_OutputPowerPath the path struct for its child "interval". +func (n *Component_Transceiver_OutputPowerPath) Interval() *Component_Transceiver_OutputPower_IntervalPath { + return &Component_Transceiver_OutputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42210,9 +42205,9 @@ func (n *Component_Transceiver_OutputPower) Interval() *Component_Transceiver_Ou } } -// Interval returns from Component_Transceiver_OutputPowerAny the path struct for its child "interval". -func (n *Component_Transceiver_OutputPowerAny) Interval() *Component_Transceiver_OutputPower_IntervalAny { - return &Component_Transceiver_OutputPower_IntervalAny{ +// Interval returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_OutputPowerPathAny) Interval() *Component_Transceiver_OutputPower_IntervalPathAny { + return &Component_Transceiver_OutputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42221,9 +42216,9 @@ func (n *Component_Transceiver_OutputPowerAny) Interval() *Component_Transceiver } } -// Max returns from Component_Transceiver_OutputPower the path struct for its child "max". -func (n *Component_Transceiver_OutputPower) Max() *Component_Transceiver_OutputPower_Max { - return &Component_Transceiver_OutputPower_Max{ +// Max returns from Component_Transceiver_OutputPowerPath the path struct for its child "max". +func (n *Component_Transceiver_OutputPowerPath) Max() *Component_Transceiver_OutputPower_MaxPath { + return &Component_Transceiver_OutputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42232,9 +42227,9 @@ func (n *Component_Transceiver_OutputPower) Max() *Component_Transceiver_OutputP } } -// Max returns from Component_Transceiver_OutputPowerAny the path struct for its child "max". -func (n *Component_Transceiver_OutputPowerAny) Max() *Component_Transceiver_OutputPower_MaxAny { - return &Component_Transceiver_OutputPower_MaxAny{ +// Max returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "max". +func (n *Component_Transceiver_OutputPowerPathAny) Max() *Component_Transceiver_OutputPower_MaxPathAny { + return &Component_Transceiver_OutputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42243,9 +42238,9 @@ func (n *Component_Transceiver_OutputPowerAny) Max() *Component_Transceiver_Outp } } -// MaxTime returns from Component_Transceiver_OutputPower the path struct for its child "max-time". -func (n *Component_Transceiver_OutputPower) MaxTime() *Component_Transceiver_OutputPower_MaxTime { - return &Component_Transceiver_OutputPower_MaxTime{ +// MaxTime returns from Component_Transceiver_OutputPowerPath the path struct for its child "max-time". +func (n *Component_Transceiver_OutputPowerPath) MaxTime() *Component_Transceiver_OutputPower_MaxTimePath { + return &Component_Transceiver_OutputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42254,9 +42249,9 @@ func (n *Component_Transceiver_OutputPower) MaxTime() *Component_Transceiver_Out } } -// MaxTime returns from Component_Transceiver_OutputPowerAny the path struct for its child "max-time". -func (n *Component_Transceiver_OutputPowerAny) MaxTime() *Component_Transceiver_OutputPower_MaxTimeAny { - return &Component_Transceiver_OutputPower_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_OutputPowerPathAny) MaxTime() *Component_Transceiver_OutputPower_MaxTimePathAny { + return &Component_Transceiver_OutputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42265,9 +42260,9 @@ func (n *Component_Transceiver_OutputPowerAny) MaxTime() *Component_Transceiver_ } } -// Min returns from Component_Transceiver_OutputPower the path struct for its child "min". -func (n *Component_Transceiver_OutputPower) Min() *Component_Transceiver_OutputPower_Min { - return &Component_Transceiver_OutputPower_Min{ +// Min returns from Component_Transceiver_OutputPowerPath the path struct for its child "min". +func (n *Component_Transceiver_OutputPowerPath) Min() *Component_Transceiver_OutputPower_MinPath { + return &Component_Transceiver_OutputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42276,9 +42271,9 @@ func (n *Component_Transceiver_OutputPower) Min() *Component_Transceiver_OutputP } } -// Min returns from Component_Transceiver_OutputPowerAny the path struct for its child "min". -func (n *Component_Transceiver_OutputPowerAny) Min() *Component_Transceiver_OutputPower_MinAny { - return &Component_Transceiver_OutputPower_MinAny{ +// Min returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "min". +func (n *Component_Transceiver_OutputPowerPathAny) Min() *Component_Transceiver_OutputPower_MinPathAny { + return &Component_Transceiver_OutputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42287,9 +42282,9 @@ func (n *Component_Transceiver_OutputPowerAny) Min() *Component_Transceiver_Outp } } -// MinTime returns from Component_Transceiver_OutputPower the path struct for its child "min-time". -func (n *Component_Transceiver_OutputPower) MinTime() *Component_Transceiver_OutputPower_MinTime { - return &Component_Transceiver_OutputPower_MinTime{ +// MinTime returns from Component_Transceiver_OutputPowerPath the path struct for its child "min-time". +func (n *Component_Transceiver_OutputPowerPath) MinTime() *Component_Transceiver_OutputPower_MinTimePath { + return &Component_Transceiver_OutputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42298,9 +42293,9 @@ func (n *Component_Transceiver_OutputPower) MinTime() *Component_Transceiver_Out } } -// MinTime returns from Component_Transceiver_OutputPowerAny the path struct for its child "min-time". -func (n *Component_Transceiver_OutputPowerAny) MinTime() *Component_Transceiver_OutputPower_MinTimeAny { - return &Component_Transceiver_OutputPower_MinTimeAny{ +// MinTime returns from Component_Transceiver_OutputPowerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_OutputPowerPathAny) MinTime() *Component_Transceiver_OutputPower_MinTimePathAny { + return &Component_Transceiver_OutputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42309,89 +42304,89 @@ func (n *Component_Transceiver_OutputPowerAny) MinTime() *Component_Transceiver_ } } -// Component_Transceiver_PostFecBer represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber YANG schema element. -type Component_Transceiver_PostFecBer struct { +// Component_Transceiver_PostFecBerPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber YANG schema element. +type Component_Transceiver_PostFecBerPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber YANG schema element. -type Component_Transceiver_PostFecBerAny struct { +// Component_Transceiver_PostFecBerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber YANG schema element. +type Component_Transceiver_PostFecBerPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_Avg represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/avg YANG schema element. -type Component_Transceiver_PostFecBer_Avg struct { +// Component_Transceiver_PostFecBer_AvgPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/avg YANG schema element. +type Component_Transceiver_PostFecBer_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/avg YANG schema element. -type Component_Transceiver_PostFecBer_AvgAny struct { +// Component_Transceiver_PostFecBer_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/avg YANG schema element. +type Component_Transceiver_PostFecBer_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_Instant represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/instant YANG schema element. -type Component_Transceiver_PostFecBer_Instant struct { +// Component_Transceiver_PostFecBer_InstantPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/instant YANG schema element. +type Component_Transceiver_PostFecBer_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/instant YANG schema element. -type Component_Transceiver_PostFecBer_InstantAny struct { +// Component_Transceiver_PostFecBer_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/instant YANG schema element. +type Component_Transceiver_PostFecBer_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_Interval represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/interval YANG schema element. -type Component_Transceiver_PostFecBer_Interval struct { +// Component_Transceiver_PostFecBer_IntervalPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/interval YANG schema element. +type Component_Transceiver_PostFecBer_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/interval YANG schema element. -type Component_Transceiver_PostFecBer_IntervalAny struct { +// Component_Transceiver_PostFecBer_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/interval YANG schema element. +type Component_Transceiver_PostFecBer_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_Max represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max YANG schema element. -type Component_Transceiver_PostFecBer_Max struct { +// Component_Transceiver_PostFecBer_MaxPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max YANG schema element. +type Component_Transceiver_PostFecBer_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max YANG schema element. -type Component_Transceiver_PostFecBer_MaxAny struct { +// Component_Transceiver_PostFecBer_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max YANG schema element. +type Component_Transceiver_PostFecBer_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MaxTime represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max-time YANG schema element. -type Component_Transceiver_PostFecBer_MaxTime struct { +// Component_Transceiver_PostFecBer_MaxTimePath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max-time YANG schema element. +type Component_Transceiver_PostFecBer_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max-time YANG schema element. -type Component_Transceiver_PostFecBer_MaxTimeAny struct { +// Component_Transceiver_PostFecBer_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/max-time YANG schema element. +type Component_Transceiver_PostFecBer_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_Min represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min YANG schema element. -type Component_Transceiver_PostFecBer_Min struct { +// Component_Transceiver_PostFecBer_MinPath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min YANG schema element. +type Component_Transceiver_PostFecBer_MinPath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min YANG schema element. -type Component_Transceiver_PostFecBer_MinAny struct { +// Component_Transceiver_PostFecBer_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min YANG schema element. +type Component_Transceiver_PostFecBer_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MinTime represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min-time YANG schema element. -type Component_Transceiver_PostFecBer_MinTime struct { +// Component_Transceiver_PostFecBer_MinTimePath represents the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min-time YANG schema element. +type Component_Transceiver_PostFecBer_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_PostFecBer_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min-time YANG schema element. -type Component_Transceiver_PostFecBer_MinTimeAny struct { +// Component_Transceiver_PostFecBer_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/post-fec-ber/min-time YANG schema element. +type Component_Transceiver_PostFecBer_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_PostFecBer the path struct for its child "avg". -func (n *Component_Transceiver_PostFecBer) Avg() *Component_Transceiver_PostFecBer_Avg { - return &Component_Transceiver_PostFecBer_Avg{ +// Avg returns from Component_Transceiver_PostFecBerPath the path struct for its child "avg". +func (n *Component_Transceiver_PostFecBerPath) Avg() *Component_Transceiver_PostFecBer_AvgPath { + return &Component_Transceiver_PostFecBer_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42400,9 +42395,9 @@ func (n *Component_Transceiver_PostFecBer) Avg() *Component_Transceiver_PostFecB } } -// Avg returns from Component_Transceiver_PostFecBerAny the path struct for its child "avg". -func (n *Component_Transceiver_PostFecBerAny) Avg() *Component_Transceiver_PostFecBer_AvgAny { - return &Component_Transceiver_PostFecBer_AvgAny{ +// Avg returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_PostFecBerPathAny) Avg() *Component_Transceiver_PostFecBer_AvgPathAny { + return &Component_Transceiver_PostFecBer_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42411,9 +42406,9 @@ func (n *Component_Transceiver_PostFecBerAny) Avg() *Component_Transceiver_PostF } } -// Instant returns from Component_Transceiver_PostFecBer the path struct for its child "instant". -func (n *Component_Transceiver_PostFecBer) Instant() *Component_Transceiver_PostFecBer_Instant { - return &Component_Transceiver_PostFecBer_Instant{ +// Instant returns from Component_Transceiver_PostFecBerPath the path struct for its child "instant". +func (n *Component_Transceiver_PostFecBerPath) Instant() *Component_Transceiver_PostFecBer_InstantPath { + return &Component_Transceiver_PostFecBer_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42422,9 +42417,9 @@ func (n *Component_Transceiver_PostFecBer) Instant() *Component_Transceiver_Post } } -// Instant returns from Component_Transceiver_PostFecBerAny the path struct for its child "instant". -func (n *Component_Transceiver_PostFecBerAny) Instant() *Component_Transceiver_PostFecBer_InstantAny { - return &Component_Transceiver_PostFecBer_InstantAny{ +// Instant returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_PostFecBerPathAny) Instant() *Component_Transceiver_PostFecBer_InstantPathAny { + return &Component_Transceiver_PostFecBer_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42433,9 +42428,9 @@ func (n *Component_Transceiver_PostFecBerAny) Instant() *Component_Transceiver_P } } -// Interval returns from Component_Transceiver_PostFecBer the path struct for its child "interval". -func (n *Component_Transceiver_PostFecBer) Interval() *Component_Transceiver_PostFecBer_Interval { - return &Component_Transceiver_PostFecBer_Interval{ +// Interval returns from Component_Transceiver_PostFecBerPath the path struct for its child "interval". +func (n *Component_Transceiver_PostFecBerPath) Interval() *Component_Transceiver_PostFecBer_IntervalPath { + return &Component_Transceiver_PostFecBer_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42444,9 +42439,9 @@ func (n *Component_Transceiver_PostFecBer) Interval() *Component_Transceiver_Pos } } -// Interval returns from Component_Transceiver_PostFecBerAny the path struct for its child "interval". -func (n *Component_Transceiver_PostFecBerAny) Interval() *Component_Transceiver_PostFecBer_IntervalAny { - return &Component_Transceiver_PostFecBer_IntervalAny{ +// Interval returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_PostFecBerPathAny) Interval() *Component_Transceiver_PostFecBer_IntervalPathAny { + return &Component_Transceiver_PostFecBer_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42455,9 +42450,9 @@ func (n *Component_Transceiver_PostFecBerAny) Interval() *Component_Transceiver_ } } -// Max returns from Component_Transceiver_PostFecBer the path struct for its child "max". -func (n *Component_Transceiver_PostFecBer) Max() *Component_Transceiver_PostFecBer_Max { - return &Component_Transceiver_PostFecBer_Max{ +// Max returns from Component_Transceiver_PostFecBerPath the path struct for its child "max". +func (n *Component_Transceiver_PostFecBerPath) Max() *Component_Transceiver_PostFecBer_MaxPath { + return &Component_Transceiver_PostFecBer_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42466,9 +42461,9 @@ func (n *Component_Transceiver_PostFecBer) Max() *Component_Transceiver_PostFecB } } -// Max returns from Component_Transceiver_PostFecBerAny the path struct for its child "max". -func (n *Component_Transceiver_PostFecBerAny) Max() *Component_Transceiver_PostFecBer_MaxAny { - return &Component_Transceiver_PostFecBer_MaxAny{ +// Max returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "max". +func (n *Component_Transceiver_PostFecBerPathAny) Max() *Component_Transceiver_PostFecBer_MaxPathAny { + return &Component_Transceiver_PostFecBer_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42477,9 +42472,9 @@ func (n *Component_Transceiver_PostFecBerAny) Max() *Component_Transceiver_PostF } } -// MaxTime returns from Component_Transceiver_PostFecBer the path struct for its child "max-time". -func (n *Component_Transceiver_PostFecBer) MaxTime() *Component_Transceiver_PostFecBer_MaxTime { - return &Component_Transceiver_PostFecBer_MaxTime{ +// MaxTime returns from Component_Transceiver_PostFecBerPath the path struct for its child "max-time". +func (n *Component_Transceiver_PostFecBerPath) MaxTime() *Component_Transceiver_PostFecBer_MaxTimePath { + return &Component_Transceiver_PostFecBer_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42488,9 +42483,9 @@ func (n *Component_Transceiver_PostFecBer) MaxTime() *Component_Transceiver_Post } } -// MaxTime returns from Component_Transceiver_PostFecBerAny the path struct for its child "max-time". -func (n *Component_Transceiver_PostFecBerAny) MaxTime() *Component_Transceiver_PostFecBer_MaxTimeAny { - return &Component_Transceiver_PostFecBer_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_PostFecBerPathAny) MaxTime() *Component_Transceiver_PostFecBer_MaxTimePathAny { + return &Component_Transceiver_PostFecBer_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42499,9 +42494,9 @@ func (n *Component_Transceiver_PostFecBerAny) MaxTime() *Component_Transceiver_P } } -// Min returns from Component_Transceiver_PostFecBer the path struct for its child "min". -func (n *Component_Transceiver_PostFecBer) Min() *Component_Transceiver_PostFecBer_Min { - return &Component_Transceiver_PostFecBer_Min{ +// Min returns from Component_Transceiver_PostFecBerPath the path struct for its child "min". +func (n *Component_Transceiver_PostFecBerPath) Min() *Component_Transceiver_PostFecBer_MinPath { + return &Component_Transceiver_PostFecBer_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42510,9 +42505,9 @@ func (n *Component_Transceiver_PostFecBer) Min() *Component_Transceiver_PostFecB } } -// Min returns from Component_Transceiver_PostFecBerAny the path struct for its child "min". -func (n *Component_Transceiver_PostFecBerAny) Min() *Component_Transceiver_PostFecBer_MinAny { - return &Component_Transceiver_PostFecBer_MinAny{ +// Min returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "min". +func (n *Component_Transceiver_PostFecBerPathAny) Min() *Component_Transceiver_PostFecBer_MinPathAny { + return &Component_Transceiver_PostFecBer_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42521,9 +42516,9 @@ func (n *Component_Transceiver_PostFecBerAny) Min() *Component_Transceiver_PostF } } -// MinTime returns from Component_Transceiver_PostFecBer the path struct for its child "min-time". -func (n *Component_Transceiver_PostFecBer) MinTime() *Component_Transceiver_PostFecBer_MinTime { - return &Component_Transceiver_PostFecBer_MinTime{ +// MinTime returns from Component_Transceiver_PostFecBerPath the path struct for its child "min-time". +func (n *Component_Transceiver_PostFecBerPath) MinTime() *Component_Transceiver_PostFecBer_MinTimePath { + return &Component_Transceiver_PostFecBer_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42532,9 +42527,9 @@ func (n *Component_Transceiver_PostFecBer) MinTime() *Component_Transceiver_Post } } -// MinTime returns from Component_Transceiver_PostFecBerAny the path struct for its child "min-time". -func (n *Component_Transceiver_PostFecBerAny) MinTime() *Component_Transceiver_PostFecBer_MinTimeAny { - return &Component_Transceiver_PostFecBer_MinTimeAny{ +// MinTime returns from Component_Transceiver_PostFecBerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_PostFecBerPathAny) MinTime() *Component_Transceiver_PostFecBer_MinTimePathAny { + return &Component_Transceiver_PostFecBer_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42543,89 +42538,89 @@ func (n *Component_Transceiver_PostFecBerAny) MinTime() *Component_Transceiver_P } } -// Component_Transceiver_PreFecBer represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber YANG schema element. -type Component_Transceiver_PreFecBer struct { +// Component_Transceiver_PreFecBerPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber YANG schema element. +type Component_Transceiver_PreFecBerPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBerAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber YANG schema element. -type Component_Transceiver_PreFecBerAny struct { +// Component_Transceiver_PreFecBerPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber YANG schema element. +type Component_Transceiver_PreFecBerPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_Avg represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/avg YANG schema element. -type Component_Transceiver_PreFecBer_Avg struct { +// Component_Transceiver_PreFecBer_AvgPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/avg YANG schema element. +type Component_Transceiver_PreFecBer_AvgPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_AvgAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/avg YANG schema element. -type Component_Transceiver_PreFecBer_AvgAny struct { +// Component_Transceiver_PreFecBer_AvgPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/avg YANG schema element. +type Component_Transceiver_PreFecBer_AvgPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_Instant represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/instant YANG schema element. -type Component_Transceiver_PreFecBer_Instant struct { +// Component_Transceiver_PreFecBer_InstantPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/instant YANG schema element. +type Component_Transceiver_PreFecBer_InstantPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_InstantAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/instant YANG schema element. -type Component_Transceiver_PreFecBer_InstantAny struct { +// Component_Transceiver_PreFecBer_InstantPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/instant YANG schema element. +type Component_Transceiver_PreFecBer_InstantPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_Interval represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/interval YANG schema element. -type Component_Transceiver_PreFecBer_Interval struct { +// Component_Transceiver_PreFecBer_IntervalPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/interval YANG schema element. +type Component_Transceiver_PreFecBer_IntervalPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_IntervalAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/interval YANG schema element. -type Component_Transceiver_PreFecBer_IntervalAny struct { +// Component_Transceiver_PreFecBer_IntervalPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/interval YANG schema element. +type Component_Transceiver_PreFecBer_IntervalPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_Max represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max YANG schema element. -type Component_Transceiver_PreFecBer_Max struct { +// Component_Transceiver_PreFecBer_MaxPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max YANG schema element. +type Component_Transceiver_PreFecBer_MaxPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MaxAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max YANG schema element. -type Component_Transceiver_PreFecBer_MaxAny struct { +// Component_Transceiver_PreFecBer_MaxPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max YANG schema element. +type Component_Transceiver_PreFecBer_MaxPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MaxTime represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max-time YANG schema element. -type Component_Transceiver_PreFecBer_MaxTime struct { +// Component_Transceiver_PreFecBer_MaxTimePath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max-time YANG schema element. +type Component_Transceiver_PreFecBer_MaxTimePath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MaxTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max-time YANG schema element. -type Component_Transceiver_PreFecBer_MaxTimeAny struct { +// Component_Transceiver_PreFecBer_MaxTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/max-time YANG schema element. +type Component_Transceiver_PreFecBer_MaxTimePathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_Min represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min YANG schema element. -type Component_Transceiver_PreFecBer_Min struct { +// Component_Transceiver_PreFecBer_MinPath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min YANG schema element. +type Component_Transceiver_PreFecBer_MinPath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MinAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min YANG schema element. -type Component_Transceiver_PreFecBer_MinAny struct { +// Component_Transceiver_PreFecBer_MinPathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min YANG schema element. +type Component_Transceiver_PreFecBer_MinPathAny struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MinTime represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min-time YANG schema element. -type Component_Transceiver_PreFecBer_MinTime struct { +// Component_Transceiver_PreFecBer_MinTimePath represents the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min-time YANG schema element. +type Component_Transceiver_PreFecBer_MinTimePath struct { *ygot.NodePath } -// Component_Transceiver_PreFecBer_MinTimeAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min-time YANG schema element. -type Component_Transceiver_PreFecBer_MinTimeAny struct { +// Component_Transceiver_PreFecBer_MinTimePathAny represents the wildcard version of the /openconfig-platform/components/component/transceiver/state/pre-fec-ber/min-time YANG schema element. +type Component_Transceiver_PreFecBer_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from Component_Transceiver_PreFecBer the path struct for its child "avg". -func (n *Component_Transceiver_PreFecBer) Avg() *Component_Transceiver_PreFecBer_Avg { - return &Component_Transceiver_PreFecBer_Avg{ +// Avg returns from Component_Transceiver_PreFecBerPath the path struct for its child "avg". +func (n *Component_Transceiver_PreFecBerPath) Avg() *Component_Transceiver_PreFecBer_AvgPath { + return &Component_Transceiver_PreFecBer_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42634,9 +42629,9 @@ func (n *Component_Transceiver_PreFecBer) Avg() *Component_Transceiver_PreFecBer } } -// Avg returns from Component_Transceiver_PreFecBerAny the path struct for its child "avg". -func (n *Component_Transceiver_PreFecBerAny) Avg() *Component_Transceiver_PreFecBer_AvgAny { - return &Component_Transceiver_PreFecBer_AvgAny{ +// Avg returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "avg". +func (n *Component_Transceiver_PreFecBerPathAny) Avg() *Component_Transceiver_PreFecBer_AvgPathAny { + return &Component_Transceiver_PreFecBer_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -42645,9 +42640,9 @@ func (n *Component_Transceiver_PreFecBerAny) Avg() *Component_Transceiver_PreFec } } -// Instant returns from Component_Transceiver_PreFecBer the path struct for its child "instant". -func (n *Component_Transceiver_PreFecBer) Instant() *Component_Transceiver_PreFecBer_Instant { - return &Component_Transceiver_PreFecBer_Instant{ +// Instant returns from Component_Transceiver_PreFecBerPath the path struct for its child "instant". +func (n *Component_Transceiver_PreFecBerPath) Instant() *Component_Transceiver_PreFecBer_InstantPath { + return &Component_Transceiver_PreFecBer_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42656,9 +42651,9 @@ func (n *Component_Transceiver_PreFecBer) Instant() *Component_Transceiver_PreFe } } -// Instant returns from Component_Transceiver_PreFecBerAny the path struct for its child "instant". -func (n *Component_Transceiver_PreFecBerAny) Instant() *Component_Transceiver_PreFecBer_InstantAny { - return &Component_Transceiver_PreFecBer_InstantAny{ +// Instant returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "instant". +func (n *Component_Transceiver_PreFecBerPathAny) Instant() *Component_Transceiver_PreFecBer_InstantPathAny { + return &Component_Transceiver_PreFecBer_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -42667,9 +42662,9 @@ func (n *Component_Transceiver_PreFecBerAny) Instant() *Component_Transceiver_Pr } } -// Interval returns from Component_Transceiver_PreFecBer the path struct for its child "interval". -func (n *Component_Transceiver_PreFecBer) Interval() *Component_Transceiver_PreFecBer_Interval { - return &Component_Transceiver_PreFecBer_Interval{ +// Interval returns from Component_Transceiver_PreFecBerPath the path struct for its child "interval". +func (n *Component_Transceiver_PreFecBerPath) Interval() *Component_Transceiver_PreFecBer_IntervalPath { + return &Component_Transceiver_PreFecBer_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42678,9 +42673,9 @@ func (n *Component_Transceiver_PreFecBer) Interval() *Component_Transceiver_PreF } } -// Interval returns from Component_Transceiver_PreFecBerAny the path struct for its child "interval". -func (n *Component_Transceiver_PreFecBerAny) Interval() *Component_Transceiver_PreFecBer_IntervalAny { - return &Component_Transceiver_PreFecBer_IntervalAny{ +// Interval returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "interval". +func (n *Component_Transceiver_PreFecBerPathAny) Interval() *Component_Transceiver_PreFecBer_IntervalPathAny { + return &Component_Transceiver_PreFecBer_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -42689,9 +42684,9 @@ func (n *Component_Transceiver_PreFecBerAny) Interval() *Component_Transceiver_P } } -// Max returns from Component_Transceiver_PreFecBer the path struct for its child "max". -func (n *Component_Transceiver_PreFecBer) Max() *Component_Transceiver_PreFecBer_Max { - return &Component_Transceiver_PreFecBer_Max{ +// Max returns from Component_Transceiver_PreFecBerPath the path struct for its child "max". +func (n *Component_Transceiver_PreFecBerPath) Max() *Component_Transceiver_PreFecBer_MaxPath { + return &Component_Transceiver_PreFecBer_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42700,9 +42695,9 @@ func (n *Component_Transceiver_PreFecBer) Max() *Component_Transceiver_PreFecBer } } -// Max returns from Component_Transceiver_PreFecBerAny the path struct for its child "max". -func (n *Component_Transceiver_PreFecBerAny) Max() *Component_Transceiver_PreFecBer_MaxAny { - return &Component_Transceiver_PreFecBer_MaxAny{ +// Max returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "max". +func (n *Component_Transceiver_PreFecBerPathAny) Max() *Component_Transceiver_PreFecBer_MaxPathAny { + return &Component_Transceiver_PreFecBer_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -42711,9 +42706,9 @@ func (n *Component_Transceiver_PreFecBerAny) Max() *Component_Transceiver_PreFec } } -// MaxTime returns from Component_Transceiver_PreFecBer the path struct for its child "max-time". -func (n *Component_Transceiver_PreFecBer) MaxTime() *Component_Transceiver_PreFecBer_MaxTime { - return &Component_Transceiver_PreFecBer_MaxTime{ +// MaxTime returns from Component_Transceiver_PreFecBerPath the path struct for its child "max-time". +func (n *Component_Transceiver_PreFecBerPath) MaxTime() *Component_Transceiver_PreFecBer_MaxTimePath { + return &Component_Transceiver_PreFecBer_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42722,9 +42717,9 @@ func (n *Component_Transceiver_PreFecBer) MaxTime() *Component_Transceiver_PreFe } } -// MaxTime returns from Component_Transceiver_PreFecBerAny the path struct for its child "max-time". -func (n *Component_Transceiver_PreFecBerAny) MaxTime() *Component_Transceiver_PreFecBer_MaxTimeAny { - return &Component_Transceiver_PreFecBer_MaxTimeAny{ +// MaxTime returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "max-time". +func (n *Component_Transceiver_PreFecBerPathAny) MaxTime() *Component_Transceiver_PreFecBer_MaxTimePathAny { + return &Component_Transceiver_PreFecBer_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -42733,9 +42728,9 @@ func (n *Component_Transceiver_PreFecBerAny) MaxTime() *Component_Transceiver_Pr } } -// Min returns from Component_Transceiver_PreFecBer the path struct for its child "min". -func (n *Component_Transceiver_PreFecBer) Min() *Component_Transceiver_PreFecBer_Min { - return &Component_Transceiver_PreFecBer_Min{ +// Min returns from Component_Transceiver_PreFecBerPath the path struct for its child "min". +func (n *Component_Transceiver_PreFecBerPath) Min() *Component_Transceiver_PreFecBer_MinPath { + return &Component_Transceiver_PreFecBer_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42744,9 +42739,9 @@ func (n *Component_Transceiver_PreFecBer) Min() *Component_Transceiver_PreFecBer } } -// Min returns from Component_Transceiver_PreFecBerAny the path struct for its child "min". -func (n *Component_Transceiver_PreFecBerAny) Min() *Component_Transceiver_PreFecBer_MinAny { - return &Component_Transceiver_PreFecBer_MinAny{ +// Min returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "min". +func (n *Component_Transceiver_PreFecBerPathAny) Min() *Component_Transceiver_PreFecBer_MinPathAny { + return &Component_Transceiver_PreFecBer_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -42755,9 +42750,9 @@ func (n *Component_Transceiver_PreFecBerAny) Min() *Component_Transceiver_PreFec } } -// MinTime returns from Component_Transceiver_PreFecBer the path struct for its child "min-time". -func (n *Component_Transceiver_PreFecBer) MinTime() *Component_Transceiver_PreFecBer_MinTime { - return &Component_Transceiver_PreFecBer_MinTime{ +// MinTime returns from Component_Transceiver_PreFecBerPath the path struct for its child "min-time". +func (n *Component_Transceiver_PreFecBerPath) MinTime() *Component_Transceiver_PreFecBer_MinTimePath { + return &Component_Transceiver_PreFecBer_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42766,9 +42761,9 @@ func (n *Component_Transceiver_PreFecBer) MinTime() *Component_Transceiver_PreFe } } -// MinTime returns from Component_Transceiver_PreFecBerAny the path struct for its child "min-time". -func (n *Component_Transceiver_PreFecBerAny) MinTime() *Component_Transceiver_PreFecBer_MinTimeAny { - return &Component_Transceiver_PreFecBer_MinTimeAny{ +// MinTime returns from Component_Transceiver_PreFecBerPathAny the path struct for its child "min-time". +func (n *Component_Transceiver_PreFecBerPathAny) MinTime() *Component_Transceiver_PreFecBer_MinTimePathAny { + return &Component_Transceiver_PreFecBer_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -42777,169 +42772,388 @@ func (n *Component_Transceiver_PreFecBerAny) MinTime() *Component_Transceiver_Pr } } -// Interface represents the /openconfig-interfaces/interfaces/interface YANG schema element. -type Interface struct { +// DevicePath represents the /device YANG schema element. +type DevicePath struct { + *ygot.DeviceRootBase +} + +// DeviceRoot returns a new path object from which YANG paths can be constructed. +func DeviceRoot(id string) *DevicePath { + return &DevicePath{ygot.NewDeviceRootBase(id)} +} + +// Acl returns from DevicePath the path struct for its child "acl". +func (n *DevicePath) Acl() *AclPath { + return &AclPath{ + NodePath: ygot.NewNodePath( + []string{"acl"}, + map[string]interface{}{}, + n, + ), + } +} + +// Aps returns from DevicePath the path struct for its child "aps". +func (n *DevicePath) Aps() *ApsPath { + return &ApsPath{ + NodePath: ygot.NewNodePath( + []string{"aps"}, + map[string]interface{}{}, + n, + ), + } +} + +// Bgp returns from DevicePath the path struct for its child "bgp". +func (n *DevicePath) Bgp() *BgpPath { + return &BgpPath{ + NodePath: ygot.NewNodePath( + []string{"bgp"}, + map[string]interface{}{}, + n, + ), + } +} + +// ComponentAny returns from DevicePath the path struct for its child "component". +func (n *DevicePath) ComponentAny() *ComponentPathAny { + return &ComponentPathAny{ + NodePath: ygot.NewNodePath( + []string{"components", "component"}, + map[string]interface{}{"name": "*"}, + n, + ), + } +} + +// Component returns from DevicePath the path struct for its child "component". +func (n *DevicePath) Component(Name string) *ComponentPath { + return &ComponentPath{ + NodePath: ygot.NewNodePath( + []string{"components", "component"}, + map[string]interface{}{"name": Name}, + n, + ), + } +} + +// InterfaceAny returns from DevicePath the path struct for its child "interface". +func (n *DevicePath) InterfaceAny() *InterfacePathAny { + return &InterfacePathAny{ + NodePath: ygot.NewNodePath( + []string{"interfaces", "interface"}, + map[string]interface{}{"name": "*"}, + n, + ), + } +} + +// Interface returns from DevicePath the path struct for its child "interface". +func (n *DevicePath) Interface(Name string) *InterfacePath { + return &InterfacePath{ + NodePath: ygot.NewNodePath( + []string{"interfaces", "interface"}, + map[string]interface{}{"name": Name}, + n, + ), + } +} + +// Lacp returns from DevicePath the path struct for its child "lacp". +func (n *DevicePath) Lacp() *LacpPath { + return &LacpPath{ + NodePath: ygot.NewNodePath( + []string{"lacp"}, + map[string]interface{}{}, + n, + ), + } +} + +// Lldp returns from DevicePath the path struct for its child "lldp". +func (n *DevicePath) Lldp() *LldpPath { + return &LldpPath{ + NodePath: ygot.NewNodePath( + []string{"lldp"}, + map[string]interface{}{}, + n, + ), + } +} + +// LocalRoutes returns from DevicePath the path struct for its child "local-routes". +func (n *DevicePath) LocalRoutes() *LocalRoutesPath { + return &LocalRoutesPath{ + NodePath: ygot.NewNodePath( + []string{"local-routes"}, + map[string]interface{}{}, + n, + ), + } +} + +// Messages returns from DevicePath the path struct for its child "messages". +func (n *DevicePath) Messages() *MessagesPath { + return &MessagesPath{ + NodePath: ygot.NewNodePath( + []string{"messages"}, + map[string]interface{}{}, + n, + ), + } +} + +// NetworkInstanceAny returns from DevicePath the path struct for its child "network-instance". +func (n *DevicePath) NetworkInstanceAny() *NetworkInstancePathAny { + return &NetworkInstancePathAny{ + NodePath: ygot.NewNodePath( + []string{"network-instances", "network-instance"}, + map[string]interface{}{"name": "*"}, + n, + ), + } +} + +// NetworkInstance returns from DevicePath the path struct for its child "network-instance". +func (n *DevicePath) NetworkInstance(Name string) *NetworkInstancePath { + return &NetworkInstancePath{ + NodePath: ygot.NewNodePath( + []string{"network-instances", "network-instance"}, + map[string]interface{}{"name": Name}, + n, + ), + } +} + +// OpticalAmplifier returns from DevicePath the path struct for its child "optical-amplifier". +func (n *DevicePath) OpticalAmplifier() *OpticalAmplifierPath { + return &OpticalAmplifierPath{ + NodePath: ygot.NewNodePath( + []string{"optical-amplifier"}, + map[string]interface{}{}, + n, + ), + } +} + +// RelayAgent returns from DevicePath the path struct for its child "relay-agent". +func (n *DevicePath) RelayAgent() *RelayAgentPath { + return &RelayAgentPath{ + NodePath: ygot.NewNodePath( + []string{"relay-agent"}, + map[string]interface{}{}, + n, + ), + } +} + +// RoutingPolicy returns from DevicePath the path struct for its child "routing-policy". +func (n *DevicePath) RoutingPolicy() *RoutingPolicyPath { + return &RoutingPolicyPath{ + NodePath: ygot.NewNodePath( + []string{"routing-policy"}, + map[string]interface{}{}, + n, + ), + } +} + +// Stp returns from DevicePath the path struct for its child "stp". +func (n *DevicePath) Stp() *StpPath { + return &StpPath{ + NodePath: ygot.NewNodePath( + []string{"stp"}, + map[string]interface{}{}, + n, + ), + } +} + +// System returns from DevicePath the path struct for its child "system". +func (n *DevicePath) System() *SystemPath { + return &SystemPath{ + NodePath: ygot.NewNodePath( + []string{"system"}, + map[string]interface{}{}, + n, + ), + } +} + +// TerminalDevice returns from DevicePath the path struct for its child "terminal-device". +func (n *DevicePath) TerminalDevice() *TerminalDevicePath { + return &TerminalDevicePath{ + NodePath: ygot.NewNodePath( + []string{"terminal-device"}, + map[string]interface{}{}, + n, + ), + } +} + +// InterfacePath represents the /openconfig-interfaces/interfaces/interface YANG schema element. +type InterfacePath struct { *ygot.NodePath } -// InterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface YANG schema element. -type InterfaceAny struct { +// InterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface YANG schema element. +type InterfacePathAny struct { *ygot.NodePath } -// Interface_AdminStatus represents the /openconfig-interfaces/interfaces/interface/state/admin-status YANG schema element. -type Interface_AdminStatus struct { +// Interface_AdminStatusPath represents the /openconfig-interfaces/interfaces/interface/state/admin-status YANG schema element. +type Interface_AdminStatusPath struct { *ygot.NodePath } -// Interface_AdminStatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/admin-status YANG schema element. -type Interface_AdminStatusAny struct { +// Interface_AdminStatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/admin-status YANG schema element. +type Interface_AdminStatusPathAny struct { *ygot.NodePath } -// Interface_Description represents the /openconfig-interfaces/interfaces/interface/state/description YANG schema element. -type Interface_Description struct { +// Interface_DescriptionPath represents the /openconfig-interfaces/interfaces/interface/config/description YANG schema element. +type Interface_DescriptionPath struct { *ygot.NodePath } -// Interface_DescriptionAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/description YANG schema element. -type Interface_DescriptionAny struct { +// Interface_DescriptionPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/description YANG schema element. +type Interface_DescriptionPathAny struct { *ygot.NodePath } -// Interface_Enabled represents the /openconfig-interfaces/interfaces/interface/state/enabled YANG schema element. -type Interface_Enabled struct { +// Interface_EnabledPath represents the /openconfig-interfaces/interfaces/interface/config/enabled YANG schema element. +type Interface_EnabledPath struct { *ygot.NodePath } -// Interface_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/enabled YANG schema element. -type Interface_EnabledAny struct { +// Interface_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/enabled YANG schema element. +type Interface_EnabledPathAny struct { *ygot.NodePath } -// Interface_HardwarePort represents the /openconfig-interfaces/interfaces/interface/state/hardware-port YANG schema element. -type Interface_HardwarePort struct { +// Interface_HardwarePortPath represents the /openconfig-interfaces/interfaces/interface/state/hardware-port YANG schema element. +type Interface_HardwarePortPath struct { *ygot.NodePath } -// Interface_HardwarePortAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/hardware-port YANG schema element. -type Interface_HardwarePortAny struct { +// Interface_HardwarePortPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/hardware-port YANG schema element. +type Interface_HardwarePortPathAny struct { *ygot.NodePath } -// Interface_Ifindex represents the /openconfig-interfaces/interfaces/interface/state/ifindex YANG schema element. -type Interface_Ifindex struct { +// Interface_IfindexPath represents the /openconfig-interfaces/interfaces/interface/state/ifindex YANG schema element. +type Interface_IfindexPath struct { *ygot.NodePath } -// Interface_IfindexAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/ifindex YANG schema element. -type Interface_IfindexAny struct { +// Interface_IfindexPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/ifindex YANG schema element. +type Interface_IfindexPathAny struct { *ygot.NodePath } -// Interface_LastChange represents the /openconfig-interfaces/interfaces/interface/state/last-change YANG schema element. -type Interface_LastChange struct { +// Interface_LastChangePath represents the /openconfig-interfaces/interfaces/interface/state/last-change YANG schema element. +type Interface_LastChangePath struct { *ygot.NodePath } -// Interface_LastChangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/last-change YANG schema element. -type Interface_LastChangeAny struct { +// Interface_LastChangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/last-change YANG schema element. +type Interface_LastChangePathAny struct { *ygot.NodePath } -// Interface_Logical represents the /openconfig-interfaces/interfaces/interface/state/logical YANG schema element. -type Interface_Logical struct { +// Interface_LogicalPath represents the /openconfig-interfaces/interfaces/interface/state/logical YANG schema element. +type Interface_LogicalPath struct { *ygot.NodePath } -// Interface_LogicalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/logical YANG schema element. -type Interface_LogicalAny struct { +// Interface_LogicalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/logical YANG schema element. +type Interface_LogicalPathAny struct { *ygot.NodePath } -// Interface_LoopbackMode represents the /openconfig-interfaces/interfaces/interface/state/loopback-mode YANG schema element. -type Interface_LoopbackMode struct { +// Interface_LoopbackModePath represents the /openconfig-interfaces/interfaces/interface/config/loopback-mode YANG schema element. +type Interface_LoopbackModePath struct { *ygot.NodePath } -// Interface_LoopbackModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/loopback-mode YANG schema element. -type Interface_LoopbackModeAny struct { +// Interface_LoopbackModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/loopback-mode YANG schema element. +type Interface_LoopbackModePathAny struct { *ygot.NodePath } -// Interface_Mtu represents the /openconfig-interfaces/interfaces/interface/state/mtu YANG schema element. -type Interface_Mtu struct { +// Interface_MtuPath represents the /openconfig-interfaces/interfaces/interface/config/mtu YANG schema element. +type Interface_MtuPath struct { *ygot.NodePath } -// Interface_MtuAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/mtu YANG schema element. -type Interface_MtuAny struct { +// Interface_MtuPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/mtu YANG schema element. +type Interface_MtuPathAny struct { *ygot.NodePath } -// Interface_Name represents the /openconfig-interfaces/interfaces/interface/state/name YANG schema element. -type Interface_Name struct { +// Interface_NamePath represents the /openconfig-interfaces/interfaces/interface/config/name YANG schema element. +type Interface_NamePath struct { *ygot.NodePath } -// Interface_NameAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/name YANG schema element. -type Interface_NameAny struct { +// Interface_NamePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/name YANG schema element. +type Interface_NamePathAny struct { *ygot.NodePath } -// Interface_OperStatus represents the /openconfig-interfaces/interfaces/interface/state/oper-status YANG schema element. -type Interface_OperStatus struct { +// Interface_OperStatusPath represents the /openconfig-interfaces/interfaces/interface/state/oper-status YANG schema element. +type Interface_OperStatusPath struct { *ygot.NodePath } -// Interface_OperStatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/oper-status YANG schema element. -type Interface_OperStatusAny struct { +// Interface_OperStatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/oper-status YANG schema element. +type Interface_OperStatusPathAny struct { *ygot.NodePath } -// Interface_PhysicalChannel represents the /openconfig-interfaces/interfaces/interface/state/physical-channel YANG schema element. -type Interface_PhysicalChannel struct { +// Interface_PhysicalChannelPath represents the /openconfig-interfaces/interfaces/interface/state/physical-channel YANG schema element. +type Interface_PhysicalChannelPath struct { *ygot.NodePath } -// Interface_PhysicalChannelAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/physical-channel YANG schema element. -type Interface_PhysicalChannelAny struct { +// Interface_PhysicalChannelPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/physical-channel YANG schema element. +type Interface_PhysicalChannelPathAny struct { *ygot.NodePath } -// Interface_Tpid represents the /openconfig-interfaces/interfaces/interface/state/tpid YANG schema element. -type Interface_Tpid struct { +// Interface_TpidPath represents the /openconfig-interfaces/interfaces/interface/config/tpid YANG schema element. +type Interface_TpidPath struct { *ygot.NodePath } -// Interface_TpidAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/tpid YANG schema element. -type Interface_TpidAny struct { +// Interface_TpidPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/tpid YANG schema element. +type Interface_TpidPathAny struct { *ygot.NodePath } -// Interface_Transceiver represents the /openconfig-interfaces/interfaces/interface/state/transceiver YANG schema element. -type Interface_Transceiver struct { +// Interface_TransceiverPath represents the /openconfig-interfaces/interfaces/interface/state/transceiver YANG schema element. +type Interface_TransceiverPath struct { *ygot.NodePath } -// Interface_TransceiverAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/transceiver YANG schema element. -type Interface_TransceiverAny struct { +// Interface_TransceiverPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/transceiver YANG schema element. +type Interface_TransceiverPathAny struct { *ygot.NodePath } -// Interface_Type represents the /openconfig-interfaces/interfaces/interface/state/type YANG schema element. -type Interface_Type struct { +// Interface_TypePath represents the /openconfig-interfaces/interfaces/interface/config/type YANG schema element. +type Interface_TypePath struct { *ygot.NodePath } -// Interface_TypeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/type YANG schema element. -type Interface_TypeAny struct { +// Interface_TypePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/config/type YANG schema element. +type Interface_TypePathAny struct { *ygot.NodePath } -// AdminStatus returns from Interface the path struct for its child "admin-status". -func (n *Interface) AdminStatus() *Interface_AdminStatus { - return &Interface_AdminStatus{ +// AdminStatus returns from InterfacePath the path struct for its child "admin-status". +func (n *InterfacePath) AdminStatus() *Interface_AdminStatusPath { + return &Interface_AdminStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-status"}, map[string]interface{}{}, @@ -42948,9 +43162,9 @@ func (n *Interface) AdminStatus() *Interface_AdminStatus { } } -// AdminStatus returns from InterfaceAny the path struct for its child "admin-status". -func (n *InterfaceAny) AdminStatus() *Interface_AdminStatusAny { - return &Interface_AdminStatusAny{ +// AdminStatus returns from InterfacePathAny the path struct for its child "admin-status". +func (n *InterfacePathAny) AdminStatus() *Interface_AdminStatusPathAny { + return &Interface_AdminStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-status"}, map[string]interface{}{}, @@ -42959,9 +43173,9 @@ func (n *InterfaceAny) AdminStatus() *Interface_AdminStatusAny { } } -// Aggregation returns from Interface the path struct for its child "aggregation". -func (n *Interface) Aggregation() *Interface_Aggregation { - return &Interface_Aggregation{ +// Aggregation returns from InterfacePath the path struct for its child "aggregation". +func (n *InterfacePath) Aggregation() *Interface_AggregationPath { + return &Interface_AggregationPath{ NodePath: ygot.NewNodePath( []string{"aggregation"}, map[string]interface{}{}, @@ -42970,9 +43184,9 @@ func (n *Interface) Aggregation() *Interface_Aggregation { } } -// Aggregation returns from InterfaceAny the path struct for its child "aggregation". -func (n *InterfaceAny) Aggregation() *Interface_AggregationAny { - return &Interface_AggregationAny{ +// Aggregation returns from InterfacePathAny the path struct for its child "aggregation". +func (n *InterfacePathAny) Aggregation() *Interface_AggregationPathAny { + return &Interface_AggregationPathAny{ NodePath: ygot.NewNodePath( []string{"aggregation"}, map[string]interface{}{}, @@ -42981,9 +43195,9 @@ func (n *InterfaceAny) Aggregation() *Interface_AggregationAny { } } -// Counters returns from Interface the path struct for its child "counters". -func (n *Interface) Counters() *Interface_Counters { - return &Interface_Counters{ +// Counters returns from InterfacePath the path struct for its child "counters". +func (n *InterfacePath) Counters() *Interface_CountersPath { + return &Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -42992,9 +43206,9 @@ func (n *Interface) Counters() *Interface_Counters { } } -// Counters returns from InterfaceAny the path struct for its child "counters". -func (n *InterfaceAny) Counters() *Interface_CountersAny { - return &Interface_CountersAny{ +// Counters returns from InterfacePathAny the path struct for its child "counters". +func (n *InterfacePathAny) Counters() *Interface_CountersPathAny { + return &Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -43003,53 +43217,53 @@ func (n *InterfaceAny) Counters() *Interface_CountersAny { } } -// Description returns from Interface the path struct for its child "description". -func (n *Interface) Description() *Interface_Description { - return &Interface_Description{ +// Description returns from InterfacePath the path struct for its child "description". +func (n *InterfacePath) Description() *Interface_DescriptionPath { + return &Interface_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from InterfaceAny the path struct for its child "description". -func (n *InterfaceAny) Description() *Interface_DescriptionAny { - return &Interface_DescriptionAny{ +// Description returns from InterfacePathAny the path struct for its child "description". +func (n *InterfacePathAny) Description() *Interface_DescriptionPathAny { + return &Interface_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface the path struct for its child "enabled". -func (n *Interface) Enabled() *Interface_Enabled { - return &Interface_Enabled{ +// Enabled returns from InterfacePath the path struct for its child "enabled". +func (n *InterfacePath) Enabled() *Interface_EnabledPath { + return &Interface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from InterfaceAny the path struct for its child "enabled". -func (n *InterfaceAny) Enabled() *Interface_EnabledAny { - return &Interface_EnabledAny{ +// Enabled returns from InterfacePathAny the path struct for its child "enabled". +func (n *InterfacePathAny) Enabled() *Interface_EnabledPathAny { + return &Interface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ethernet returns from Interface the path struct for its child "ethernet". -func (n *Interface) Ethernet() *Interface_Ethernet { - return &Interface_Ethernet{ +// Ethernet returns from InterfacePath the path struct for its child "ethernet". +func (n *InterfacePath) Ethernet() *Interface_EthernetPath { + return &Interface_EthernetPath{ NodePath: ygot.NewNodePath( []string{"ethernet"}, map[string]interface{}{}, @@ -43058,9 +43272,9 @@ func (n *Interface) Ethernet() *Interface_Ethernet { } } -// Ethernet returns from InterfaceAny the path struct for its child "ethernet". -func (n *InterfaceAny) Ethernet() *Interface_EthernetAny { - return &Interface_EthernetAny{ +// Ethernet returns from InterfacePathAny the path struct for its child "ethernet". +func (n *InterfacePathAny) Ethernet() *Interface_EthernetPathAny { + return &Interface_EthernetPathAny{ NodePath: ygot.NewNodePath( []string{"ethernet"}, map[string]interface{}{}, @@ -43069,9 +43283,9 @@ func (n *InterfaceAny) Ethernet() *Interface_EthernetAny { } } -// HardwarePort returns from Interface the path struct for its child "hardware-port". -func (n *Interface) HardwarePort() *Interface_HardwarePort { - return &Interface_HardwarePort{ +// HardwarePort returns from InterfacePath the path struct for its child "hardware-port". +func (n *InterfacePath) HardwarePort() *Interface_HardwarePortPath { + return &Interface_HardwarePortPath{ NodePath: ygot.NewNodePath( []string{"state", "hardware-port"}, map[string]interface{}{}, @@ -43080,9 +43294,9 @@ func (n *Interface) HardwarePort() *Interface_HardwarePort { } } -// HardwarePort returns from InterfaceAny the path struct for its child "hardware-port". -func (n *InterfaceAny) HardwarePort() *Interface_HardwarePortAny { - return &Interface_HardwarePortAny{ +// HardwarePort returns from InterfacePathAny the path struct for its child "hardware-port". +func (n *InterfacePathAny) HardwarePort() *Interface_HardwarePortPathAny { + return &Interface_HardwarePortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hardware-port"}, map[string]interface{}{}, @@ -43091,9 +43305,9 @@ func (n *InterfaceAny) HardwarePort() *Interface_HardwarePortAny { } } -// HoldTime returns from Interface the path struct for its child "hold-time". -func (n *Interface) HoldTime() *Interface_HoldTime { - return &Interface_HoldTime{ +// HoldTime returns from InterfacePath the path struct for its child "hold-time". +func (n *InterfacePath) HoldTime() *Interface_HoldTimePath { + return &Interface_HoldTimePath{ NodePath: ygot.NewNodePath( []string{"hold-time"}, map[string]interface{}{}, @@ -43102,9 +43316,9 @@ func (n *Interface) HoldTime() *Interface_HoldTime { } } -// HoldTime returns from InterfaceAny the path struct for its child "hold-time". -func (n *InterfaceAny) HoldTime() *Interface_HoldTimeAny { - return &Interface_HoldTimeAny{ +// HoldTime returns from InterfacePathAny the path struct for its child "hold-time". +func (n *InterfacePathAny) HoldTime() *Interface_HoldTimePathAny { + return &Interface_HoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"hold-time"}, map[string]interface{}{}, @@ -43113,9 +43327,9 @@ func (n *InterfaceAny) HoldTime() *Interface_HoldTimeAny { } } -// Ifindex returns from Interface the path struct for its child "ifindex". -func (n *Interface) Ifindex() *Interface_Ifindex { - return &Interface_Ifindex{ +// Ifindex returns from InterfacePath the path struct for its child "ifindex". +func (n *InterfacePath) Ifindex() *Interface_IfindexPath { + return &Interface_IfindexPath{ NodePath: ygot.NewNodePath( []string{"state", "ifindex"}, map[string]interface{}{}, @@ -43124,9 +43338,9 @@ func (n *Interface) Ifindex() *Interface_Ifindex { } } -// Ifindex returns from InterfaceAny the path struct for its child "ifindex". -func (n *InterfaceAny) Ifindex() *Interface_IfindexAny { - return &Interface_IfindexAny{ +// Ifindex returns from InterfacePathAny the path struct for its child "ifindex". +func (n *InterfacePathAny) Ifindex() *Interface_IfindexPathAny { + return &Interface_IfindexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ifindex"}, map[string]interface{}{}, @@ -43135,9 +43349,9 @@ func (n *InterfaceAny) Ifindex() *Interface_IfindexAny { } } -// LastChange returns from Interface the path struct for its child "last-change". -func (n *Interface) LastChange() *Interface_LastChange { - return &Interface_LastChange{ +// LastChange returns from InterfacePath the path struct for its child "last-change". +func (n *InterfacePath) LastChange() *Interface_LastChangePath { + return &Interface_LastChangePath{ NodePath: ygot.NewNodePath( []string{"state", "last-change"}, map[string]interface{}{}, @@ -43146,9 +43360,9 @@ func (n *Interface) LastChange() *Interface_LastChange { } } -// LastChange returns from InterfaceAny the path struct for its child "last-change". -func (n *InterfaceAny) LastChange() *Interface_LastChangeAny { - return &Interface_LastChangeAny{ +// LastChange returns from InterfacePathAny the path struct for its child "last-change". +func (n *InterfacePathAny) LastChange() *Interface_LastChangePathAny { + return &Interface_LastChangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-change"}, map[string]interface{}{}, @@ -43157,9 +43371,9 @@ func (n *InterfaceAny) LastChange() *Interface_LastChangeAny { } } -// Logical returns from Interface the path struct for its child "logical". -func (n *Interface) Logical() *Interface_Logical { - return &Interface_Logical{ +// Logical returns from InterfacePath the path struct for its child "logical". +func (n *InterfacePath) Logical() *Interface_LogicalPath { + return &Interface_LogicalPath{ NodePath: ygot.NewNodePath( []string{"state", "logical"}, map[string]interface{}{}, @@ -43168,9 +43382,9 @@ func (n *Interface) Logical() *Interface_Logical { } } -// Logical returns from InterfaceAny the path struct for its child "logical". -func (n *InterfaceAny) Logical() *Interface_LogicalAny { - return &Interface_LogicalAny{ +// Logical returns from InterfacePathAny the path struct for its child "logical". +func (n *InterfacePathAny) Logical() *Interface_LogicalPathAny { + return &Interface_LogicalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "logical"}, map[string]interface{}{}, @@ -43179,75 +43393,75 @@ func (n *InterfaceAny) Logical() *Interface_LogicalAny { } } -// LoopbackMode returns from Interface the path struct for its child "loopback-mode". -func (n *Interface) LoopbackMode() *Interface_LoopbackMode { - return &Interface_LoopbackMode{ +// LoopbackMode returns from InterfacePath the path struct for its child "loopback-mode". +func (n *InterfacePath) LoopbackMode() *Interface_LoopbackModePath { + return &Interface_LoopbackModePath{ NodePath: ygot.NewNodePath( - []string{"state", "loopback-mode"}, + []string{"config", "loopback-mode"}, map[string]interface{}{}, n, ), } } -// LoopbackMode returns from InterfaceAny the path struct for its child "loopback-mode". -func (n *InterfaceAny) LoopbackMode() *Interface_LoopbackModeAny { - return &Interface_LoopbackModeAny{ +// LoopbackMode returns from InterfacePathAny the path struct for its child "loopback-mode". +func (n *InterfacePathAny) LoopbackMode() *Interface_LoopbackModePathAny { + return &Interface_LoopbackModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "loopback-mode"}, + []string{"config", "loopback-mode"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface the path struct for its child "mtu". -func (n *Interface) Mtu() *Interface_Mtu { - return &Interface_Mtu{ +// Mtu returns from InterfacePath the path struct for its child "mtu". +func (n *InterfacePath) Mtu() *Interface_MtuPath { + return &Interface_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from InterfaceAny the path struct for its child "mtu". -func (n *InterfaceAny) Mtu() *Interface_MtuAny { - return &Interface_MtuAny{ +// Mtu returns from InterfacePathAny the path struct for its child "mtu". +func (n *InterfacePathAny) Mtu() *Interface_MtuPathAny { + return &Interface_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Name returns from Interface the path struct for its child "name". -func (n *Interface) Name() *Interface_Name { - return &Interface_Name{ +// Name returns from InterfacePath the path struct for its child "name". +func (n *InterfacePath) Name() *Interface_NamePath { + return &Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from InterfaceAny the path struct for its child "name". -func (n *InterfaceAny) Name() *Interface_NameAny { - return &Interface_NameAny{ +// Name returns from InterfacePathAny the path struct for its child "name". +func (n *InterfacePathAny) Name() *Interface_NamePathAny { + return &Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// OperStatus returns from Interface the path struct for its child "oper-status". -func (n *Interface) OperStatus() *Interface_OperStatus { - return &Interface_OperStatus{ +// OperStatus returns from InterfacePath the path struct for its child "oper-status". +func (n *InterfacePath) OperStatus() *Interface_OperStatusPath { + return &Interface_OperStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -43256,9 +43470,9 @@ func (n *Interface) OperStatus() *Interface_OperStatus { } } -// OperStatus returns from InterfaceAny the path struct for its child "oper-status". -func (n *InterfaceAny) OperStatus() *Interface_OperStatusAny { - return &Interface_OperStatusAny{ +// OperStatus returns from InterfacePathAny the path struct for its child "oper-status". +func (n *InterfacePathAny) OperStatus() *Interface_OperStatusPathAny { + return &Interface_OperStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -43267,9 +43481,9 @@ func (n *InterfaceAny) OperStatus() *Interface_OperStatusAny { } } -// PhysicalChannel returns from Interface the path struct for its child "physical-channel". -func (n *Interface) PhysicalChannel() *Interface_PhysicalChannel { - return &Interface_PhysicalChannel{ +// PhysicalChannel returns from InterfacePath the path struct for its child "physical-channel". +func (n *InterfacePath) PhysicalChannel() *Interface_PhysicalChannelPath { + return &Interface_PhysicalChannelPath{ NodePath: ygot.NewNodePath( []string{"state", "physical-channel"}, map[string]interface{}{}, @@ -43278,9 +43492,9 @@ func (n *Interface) PhysicalChannel() *Interface_PhysicalChannel { } } -// PhysicalChannel returns from InterfaceAny the path struct for its child "physical-channel". -func (n *InterfaceAny) PhysicalChannel() *Interface_PhysicalChannelAny { - return &Interface_PhysicalChannelAny{ +// PhysicalChannel returns from InterfacePathAny the path struct for its child "physical-channel". +func (n *InterfacePathAny) PhysicalChannel() *Interface_PhysicalChannelPathAny { + return &Interface_PhysicalChannelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "physical-channel"}, map[string]interface{}{}, @@ -43289,9 +43503,9 @@ func (n *InterfaceAny) PhysicalChannel() *Interface_PhysicalChannelAny { } } -// RoutedVlan returns from Interface the path struct for its child "routed-vlan". -func (n *Interface) RoutedVlan() *Interface_RoutedVlan { - return &Interface_RoutedVlan{ +// RoutedVlan returns from InterfacePath the path struct for its child "routed-vlan". +func (n *InterfacePath) RoutedVlan() *Interface_RoutedVlanPath { + return &Interface_RoutedVlanPath{ NodePath: ygot.NewNodePath( []string{"routed-vlan"}, map[string]interface{}{}, @@ -43300,9 +43514,9 @@ func (n *Interface) RoutedVlan() *Interface_RoutedVlan { } } -// RoutedVlan returns from InterfaceAny the path struct for its child "routed-vlan". -func (n *InterfaceAny) RoutedVlan() *Interface_RoutedVlanAny { - return &Interface_RoutedVlanAny{ +// RoutedVlan returns from InterfacePathAny the path struct for its child "routed-vlan". +func (n *InterfacePathAny) RoutedVlan() *Interface_RoutedVlanPathAny { + return &Interface_RoutedVlanPathAny{ NodePath: ygot.NewNodePath( []string{"routed-vlan"}, map[string]interface{}{}, @@ -43311,9 +43525,9 @@ func (n *InterfaceAny) RoutedVlan() *Interface_RoutedVlanAny { } } -// Sonet returns from Interface the path struct for its child "sonet". -func (n *Interface) Sonet() *Interface_Sonet { - return &Interface_Sonet{ +// Sonet returns from InterfacePath the path struct for its child "sonet". +func (n *InterfacePath) Sonet() *Interface_SonetPath { + return &Interface_SonetPath{ NodePath: ygot.NewNodePath( []string{"sonet"}, map[string]interface{}{}, @@ -43322,9 +43536,9 @@ func (n *Interface) Sonet() *Interface_Sonet { } } -// Sonet returns from InterfaceAny the path struct for its child "sonet". -func (n *InterfaceAny) Sonet() *Interface_SonetAny { - return &Interface_SonetAny{ +// Sonet returns from InterfacePathAny the path struct for its child "sonet". +func (n *InterfacePathAny) Sonet() *Interface_SonetPathAny { + return &Interface_SonetPathAny{ NodePath: ygot.NewNodePath( []string{"sonet"}, map[string]interface{}{}, @@ -43333,9 +43547,9 @@ func (n *InterfaceAny) Sonet() *Interface_SonetAny { } } -// SubinterfaceAny returns from Interface the path struct for its child "subinterface". -func (n *Interface) SubinterfaceAny() *Interface_SubinterfaceAny { - return &Interface_SubinterfaceAny{ +// SubinterfaceAny returns from InterfacePath the path struct for its child "subinterface". +func (n *InterfacePath) SubinterfaceAny() *Interface_SubinterfacePathAny { + return &Interface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"subinterfaces", "subinterface"}, map[string]interface{}{"index": "*"}, @@ -43344,9 +43558,9 @@ func (n *Interface) SubinterfaceAny() *Interface_SubinterfaceAny { } } -// SubinterfaceAny returns from InterfaceAny the path struct for its child "subinterface". -func (n *InterfaceAny) SubinterfaceAny() *Interface_SubinterfaceAny { - return &Interface_SubinterfaceAny{ +// SubinterfaceAny returns from InterfacePathAny the path struct for its child "subinterface". +func (n *InterfacePathAny) SubinterfaceAny() *Interface_SubinterfacePathAny { + return &Interface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"subinterfaces", "subinterface"}, map[string]interface{}{"index": "*"}, @@ -43355,9 +43569,9 @@ func (n *InterfaceAny) SubinterfaceAny() *Interface_SubinterfaceAny { } } -// Subinterface returns from Interface the path struct for its child "subinterface". -func (n *Interface) Subinterface(Index uint32) *Interface_Subinterface { - return &Interface_Subinterface{ +// Subinterface returns from InterfacePath the path struct for its child "subinterface". +func (n *InterfacePath) Subinterface(Index uint32) *Interface_SubinterfacePath { + return &Interface_SubinterfacePath{ NodePath: ygot.NewNodePath( []string{"subinterfaces", "subinterface"}, map[string]interface{}{"index": Index}, @@ -43366,9 +43580,9 @@ func (n *Interface) Subinterface(Index uint32) *Interface_Subinterface { } } -// Subinterface returns from InterfaceAny the path struct for its child "subinterface". -func (n *InterfaceAny) Subinterface(Index uint32) *Interface_SubinterfaceAny { - return &Interface_SubinterfaceAny{ +// Subinterface returns from InterfacePathAny the path struct for its child "subinterface". +func (n *InterfacePathAny) Subinterface(Index uint32) *Interface_SubinterfacePathAny { + return &Interface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"subinterfaces", "subinterface"}, map[string]interface{}{"index": Index}, @@ -43377,31 +43591,31 @@ func (n *InterfaceAny) Subinterface(Index uint32) *Interface_SubinterfaceAny { } } -// Tpid returns from Interface the path struct for its child "tpid". -func (n *Interface) Tpid() *Interface_Tpid { - return &Interface_Tpid{ +// Tpid returns from InterfacePath the path struct for its child "tpid". +func (n *InterfacePath) Tpid() *Interface_TpidPath { + return &Interface_TpidPath{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// Tpid returns from InterfaceAny the path struct for its child "tpid". -func (n *InterfaceAny) Tpid() *Interface_TpidAny { - return &Interface_TpidAny{ +// Tpid returns from InterfacePathAny the path struct for its child "tpid". +func (n *InterfacePathAny) Tpid() *Interface_TpidPathAny { + return &Interface_TpidPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// Transceiver returns from Interface the path struct for its child "transceiver". -func (n *Interface) Transceiver() *Interface_Transceiver { - return &Interface_Transceiver{ +// Transceiver returns from InterfacePath the path struct for its child "transceiver". +func (n *InterfacePath) Transceiver() *Interface_TransceiverPath { + return &Interface_TransceiverPath{ NodePath: ygot.NewNodePath( []string{"state", "transceiver"}, map[string]interface{}{}, @@ -43410,9 +43624,9 @@ func (n *Interface) Transceiver() *Interface_Transceiver { } } -// Transceiver returns from InterfaceAny the path struct for its child "transceiver". -func (n *InterfaceAny) Transceiver() *Interface_TransceiverAny { - return &Interface_TransceiverAny{ +// Transceiver returns from InterfacePathAny the path struct for its child "transceiver". +func (n *InterfacePathAny) Transceiver() *Interface_TransceiverPathAny { + return &Interface_TransceiverPathAny{ NodePath: ygot.NewNodePath( []string{"state", "transceiver"}, map[string]interface{}{}, @@ -43421,81 +43635,81 @@ func (n *InterfaceAny) Transceiver() *Interface_TransceiverAny { } } -// Type returns from Interface the path struct for its child "type". -func (n *Interface) Type() *Interface_Type { - return &Interface_Type{ +// Type returns from InterfacePath the path struct for its child "type". +func (n *InterfacePath) Type() *Interface_TypePath { + return &Interface_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from InterfaceAny the path struct for its child "type". -func (n *InterfaceAny) Type() *Interface_TypeAny { - return &Interface_TypeAny{ +// Type returns from InterfacePathAny the path struct for its child "type". +func (n *InterfacePathAny) Type() *Interface_TypePathAny { + return &Interface_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Interface_Aggregation represents the /openconfig-interfaces/interfaces/interface/aggregation YANG schema element. -type Interface_Aggregation struct { +// Interface_AggregationPath represents the /openconfig-interfaces/interfaces/interface/aggregation YANG schema element. +type Interface_AggregationPath struct { *ygot.NodePath } -// Interface_AggregationAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation YANG schema element. -type Interface_AggregationAny struct { +// Interface_AggregationPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation YANG schema element. +type Interface_AggregationPathAny struct { *ygot.NodePath } -// Interface_Aggregation_LagSpeed represents the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-speed YANG schema element. -type Interface_Aggregation_LagSpeed struct { +// Interface_Aggregation_LagSpeedPath represents the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-speed YANG schema element. +type Interface_Aggregation_LagSpeedPath struct { *ygot.NodePath } -// Interface_Aggregation_LagSpeedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-speed YANG schema element. -type Interface_Aggregation_LagSpeedAny struct { +// Interface_Aggregation_LagSpeedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-speed YANG schema element. +type Interface_Aggregation_LagSpeedPathAny struct { *ygot.NodePath } -// Interface_Aggregation_LagType represents the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-type YANG schema element. -type Interface_Aggregation_LagType struct { +// Interface_Aggregation_LagTypePath represents the /openconfig-interfaces/interfaces/interface/aggregation/config/lag-type YANG schema element. +type Interface_Aggregation_LagTypePath struct { *ygot.NodePath } -// Interface_Aggregation_LagTypeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/lag-type YANG schema element. -type Interface_Aggregation_LagTypeAny struct { +// Interface_Aggregation_LagTypePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/config/lag-type YANG schema element. +type Interface_Aggregation_LagTypePathAny struct { *ygot.NodePath } -// Interface_Aggregation_Member represents the /openconfig-interfaces/interfaces/interface/aggregation/state/member YANG schema element. -type Interface_Aggregation_Member struct { +// Interface_Aggregation_MemberPath represents the /openconfig-interfaces/interfaces/interface/aggregation/state/member YANG schema element. +type Interface_Aggregation_MemberPath struct { *ygot.NodePath } -// Interface_Aggregation_MemberAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/member YANG schema element. -type Interface_Aggregation_MemberAny struct { +// Interface_Aggregation_MemberPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/member YANG schema element. +type Interface_Aggregation_MemberPathAny struct { *ygot.NodePath } -// Interface_Aggregation_MinLinks represents the /openconfig-interfaces/interfaces/interface/aggregation/state/min-links YANG schema element. -type Interface_Aggregation_MinLinks struct { +// Interface_Aggregation_MinLinksPath represents the /openconfig-interfaces/interfaces/interface/aggregation/config/min-links YANG schema element. +type Interface_Aggregation_MinLinksPath struct { *ygot.NodePath } -// Interface_Aggregation_MinLinksAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/state/min-links YANG schema element. -type Interface_Aggregation_MinLinksAny struct { +// Interface_Aggregation_MinLinksPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/config/min-links YANG schema element. +type Interface_Aggregation_MinLinksPathAny struct { *ygot.NodePath } -// LagSpeed returns from Interface_Aggregation the path struct for its child "lag-speed". -func (n *Interface_Aggregation) LagSpeed() *Interface_Aggregation_LagSpeed { - return &Interface_Aggregation_LagSpeed{ +// LagSpeed returns from Interface_AggregationPath the path struct for its child "lag-speed". +func (n *Interface_AggregationPath) LagSpeed() *Interface_Aggregation_LagSpeedPath { + return &Interface_Aggregation_LagSpeedPath{ NodePath: ygot.NewNodePath( []string{"state", "lag-speed"}, map[string]interface{}{}, @@ -43504,9 +43718,9 @@ func (n *Interface_Aggregation) LagSpeed() *Interface_Aggregation_LagSpeed { } } -// LagSpeed returns from Interface_AggregationAny the path struct for its child "lag-speed". -func (n *Interface_AggregationAny) LagSpeed() *Interface_Aggregation_LagSpeedAny { - return &Interface_Aggregation_LagSpeedAny{ +// LagSpeed returns from Interface_AggregationPathAny the path struct for its child "lag-speed". +func (n *Interface_AggregationPathAny) LagSpeed() *Interface_Aggregation_LagSpeedPathAny { + return &Interface_Aggregation_LagSpeedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "lag-speed"}, map[string]interface{}{}, @@ -43515,31 +43729,31 @@ func (n *Interface_AggregationAny) LagSpeed() *Interface_Aggregation_LagSpeedAny } } -// LagType returns from Interface_Aggregation the path struct for its child "lag-type". -func (n *Interface_Aggregation) LagType() *Interface_Aggregation_LagType { - return &Interface_Aggregation_LagType{ +// LagType returns from Interface_AggregationPath the path struct for its child "lag-type". +func (n *Interface_AggregationPath) LagType() *Interface_Aggregation_LagTypePath { + return &Interface_Aggregation_LagTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "lag-type"}, + []string{"config", "lag-type"}, map[string]interface{}{}, n, ), } } -// LagType returns from Interface_AggregationAny the path struct for its child "lag-type". -func (n *Interface_AggregationAny) LagType() *Interface_Aggregation_LagTypeAny { - return &Interface_Aggregation_LagTypeAny{ +// LagType returns from Interface_AggregationPathAny the path struct for its child "lag-type". +func (n *Interface_AggregationPathAny) LagType() *Interface_Aggregation_LagTypePathAny { + return &Interface_Aggregation_LagTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lag-type"}, + []string{"config", "lag-type"}, map[string]interface{}{}, n, ), } } -// Member returns from Interface_Aggregation the path struct for its child "member". -func (n *Interface_Aggregation) Member() *Interface_Aggregation_Member { - return &Interface_Aggregation_Member{ +// Member returns from Interface_AggregationPath the path struct for its child "member". +func (n *Interface_AggregationPath) Member() *Interface_Aggregation_MemberPath { + return &Interface_Aggregation_MemberPath{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -43548,9 +43762,9 @@ func (n *Interface_Aggregation) Member() *Interface_Aggregation_Member { } } -// Member returns from Interface_AggregationAny the path struct for its child "member". -func (n *Interface_AggregationAny) Member() *Interface_Aggregation_MemberAny { - return &Interface_Aggregation_MemberAny{ +// Member returns from Interface_AggregationPathAny the path struct for its child "member". +func (n *Interface_AggregationPathAny) Member() *Interface_Aggregation_MemberPathAny { + return &Interface_Aggregation_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -43559,31 +43773,31 @@ func (n *Interface_AggregationAny) Member() *Interface_Aggregation_MemberAny { } } -// MinLinks returns from Interface_Aggregation the path struct for its child "min-links". -func (n *Interface_Aggregation) MinLinks() *Interface_Aggregation_MinLinks { - return &Interface_Aggregation_MinLinks{ +// MinLinks returns from Interface_AggregationPath the path struct for its child "min-links". +func (n *Interface_AggregationPath) MinLinks() *Interface_Aggregation_MinLinksPath { + return &Interface_Aggregation_MinLinksPath{ NodePath: ygot.NewNodePath( - []string{"state", "min-links"}, + []string{"config", "min-links"}, map[string]interface{}{}, n, ), } } -// MinLinks returns from Interface_AggregationAny the path struct for its child "min-links". -func (n *Interface_AggregationAny) MinLinks() *Interface_Aggregation_MinLinksAny { - return &Interface_Aggregation_MinLinksAny{ +// MinLinks returns from Interface_AggregationPathAny the path struct for its child "min-links". +func (n *Interface_AggregationPathAny) MinLinks() *Interface_Aggregation_MinLinksPathAny { + return &Interface_Aggregation_MinLinksPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "min-links"}, + []string{"config", "min-links"}, map[string]interface{}{}, n, ), } } -// SwitchedVlan returns from Interface_Aggregation the path struct for its child "switched-vlan". -func (n *Interface_Aggregation) SwitchedVlan() *Interface_Aggregation_SwitchedVlan { - return &Interface_Aggregation_SwitchedVlan{ +// SwitchedVlan returns from Interface_AggregationPath the path struct for its child "switched-vlan". +func (n *Interface_AggregationPath) SwitchedVlan() *Interface_Aggregation_SwitchedVlanPath { + return &Interface_Aggregation_SwitchedVlanPath{ NodePath: ygot.NewNodePath( []string{"switched-vlan"}, map[string]interface{}{}, @@ -43592,9 +43806,9 @@ func (n *Interface_Aggregation) SwitchedVlan() *Interface_Aggregation_SwitchedVl } } -// SwitchedVlan returns from Interface_AggregationAny the path struct for its child "switched-vlan". -func (n *Interface_AggregationAny) SwitchedVlan() *Interface_Aggregation_SwitchedVlanAny { - return &Interface_Aggregation_SwitchedVlanAny{ +// SwitchedVlan returns from Interface_AggregationPathAny the path struct for its child "switched-vlan". +func (n *Interface_AggregationPathAny) SwitchedVlan() *Interface_Aggregation_SwitchedVlanPathAny { + return &Interface_Aggregation_SwitchedVlanPathAny{ NodePath: ygot.NewNodePath( []string{"switched-vlan"}, map[string]interface{}{}, @@ -43603,337 +43817,337 @@ func (n *Interface_AggregationAny) SwitchedVlan() *Interface_Aggregation_Switche } } -// Interface_Aggregation_SwitchedVlan represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlan struct { +// Interface_Aggregation_SwitchedVlanPath represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlanPath struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlanAny struct { +// Interface_Aggregation_SwitchedVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlanPathAny struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_AccessVlan represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/access-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlan_AccessVlan struct { +// Interface_Aggregation_SwitchedVlan_AccessVlanPath represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/access-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlan_AccessVlanPath struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_AccessVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/access-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlan_AccessVlanAny struct { +// Interface_Aggregation_SwitchedVlan_AccessVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/access-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlan_AccessVlanPathAny struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_InterfaceMode represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/interface-mode YANG schema element. -type Interface_Aggregation_SwitchedVlan_InterfaceMode struct { +// Interface_Aggregation_SwitchedVlan_InterfaceModePath represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/interface-mode YANG schema element. +type Interface_Aggregation_SwitchedVlan_InterfaceModePath struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_InterfaceModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/interface-mode YANG schema element. -type Interface_Aggregation_SwitchedVlan_InterfaceModeAny struct { +// Interface_Aggregation_SwitchedVlan_InterfaceModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/interface-mode YANG schema element. +type Interface_Aggregation_SwitchedVlan_InterfaceModePathAny struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_NativeVlan represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/native-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlan_NativeVlan struct { +// Interface_Aggregation_SwitchedVlan_NativeVlanPath represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/native-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlan_NativeVlanPath struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_NativeVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/native-vlan YANG schema element. -type Interface_Aggregation_SwitchedVlan_NativeVlanAny struct { +// Interface_Aggregation_SwitchedVlan_NativeVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/native-vlan YANG schema element. +type Interface_Aggregation_SwitchedVlan_NativeVlanPathAny struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_TrunkVlans represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/trunk-vlans YANG schema element. -type Interface_Aggregation_SwitchedVlan_TrunkVlans struct { +// Interface_Aggregation_SwitchedVlan_TrunkVlansPath represents the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/trunk-vlans YANG schema element. +type Interface_Aggregation_SwitchedVlan_TrunkVlansPath struct { *ygot.NodePath } -// Interface_Aggregation_SwitchedVlan_TrunkVlansAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/state/trunk-vlans YANG schema element. -type Interface_Aggregation_SwitchedVlan_TrunkVlansAny struct { +// Interface_Aggregation_SwitchedVlan_TrunkVlansPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/aggregation/switched-vlan/config/trunk-vlans YANG schema element. +type Interface_Aggregation_SwitchedVlan_TrunkVlansPathAny struct { *ygot.NodePath } -// AccessVlan returns from Interface_Aggregation_SwitchedVlan the path struct for its child "access-vlan". -func (n *Interface_Aggregation_SwitchedVlan) AccessVlan() *Interface_Aggregation_SwitchedVlan_AccessVlan { - return &Interface_Aggregation_SwitchedVlan_AccessVlan{ +// AccessVlan returns from Interface_Aggregation_SwitchedVlanPath the path struct for its child "access-vlan". +func (n *Interface_Aggregation_SwitchedVlanPath) AccessVlan() *Interface_Aggregation_SwitchedVlan_AccessVlanPath { + return &Interface_Aggregation_SwitchedVlan_AccessVlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "access-vlan"}, + []string{"config", "access-vlan"}, map[string]interface{}{}, n, ), } } -// AccessVlan returns from Interface_Aggregation_SwitchedVlanAny the path struct for its child "access-vlan". -func (n *Interface_Aggregation_SwitchedVlanAny) AccessVlan() *Interface_Aggregation_SwitchedVlan_AccessVlanAny { - return &Interface_Aggregation_SwitchedVlan_AccessVlanAny{ +// AccessVlan returns from Interface_Aggregation_SwitchedVlanPathAny the path struct for its child "access-vlan". +func (n *Interface_Aggregation_SwitchedVlanPathAny) AccessVlan() *Interface_Aggregation_SwitchedVlan_AccessVlanPathAny { + return &Interface_Aggregation_SwitchedVlan_AccessVlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "access-vlan"}, + []string{"config", "access-vlan"}, map[string]interface{}{}, n, ), } } -// InterfaceMode returns from Interface_Aggregation_SwitchedVlan the path struct for its child "interface-mode". -func (n *Interface_Aggregation_SwitchedVlan) InterfaceMode() *Interface_Aggregation_SwitchedVlan_InterfaceMode { - return &Interface_Aggregation_SwitchedVlan_InterfaceMode{ +// InterfaceMode returns from Interface_Aggregation_SwitchedVlanPath the path struct for its child "interface-mode". +func (n *Interface_Aggregation_SwitchedVlanPath) InterfaceMode() *Interface_Aggregation_SwitchedVlan_InterfaceModePath { + return &Interface_Aggregation_SwitchedVlan_InterfaceModePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-mode"}, + []string{"config", "interface-mode"}, map[string]interface{}{}, n, ), } } -// InterfaceMode returns from Interface_Aggregation_SwitchedVlanAny the path struct for its child "interface-mode". -func (n *Interface_Aggregation_SwitchedVlanAny) InterfaceMode() *Interface_Aggregation_SwitchedVlan_InterfaceModeAny { - return &Interface_Aggregation_SwitchedVlan_InterfaceModeAny{ +// InterfaceMode returns from Interface_Aggregation_SwitchedVlanPathAny the path struct for its child "interface-mode". +func (n *Interface_Aggregation_SwitchedVlanPathAny) InterfaceMode() *Interface_Aggregation_SwitchedVlan_InterfaceModePathAny { + return &Interface_Aggregation_SwitchedVlan_InterfaceModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-mode"}, + []string{"config", "interface-mode"}, map[string]interface{}{}, n, ), } } -// NativeVlan returns from Interface_Aggregation_SwitchedVlan the path struct for its child "native-vlan". -func (n *Interface_Aggregation_SwitchedVlan) NativeVlan() *Interface_Aggregation_SwitchedVlan_NativeVlan { - return &Interface_Aggregation_SwitchedVlan_NativeVlan{ +// NativeVlan returns from Interface_Aggregation_SwitchedVlanPath the path struct for its child "native-vlan". +func (n *Interface_Aggregation_SwitchedVlanPath) NativeVlan() *Interface_Aggregation_SwitchedVlan_NativeVlanPath { + return &Interface_Aggregation_SwitchedVlan_NativeVlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "native-vlan"}, + []string{"config", "native-vlan"}, map[string]interface{}{}, n, ), } } -// NativeVlan returns from Interface_Aggregation_SwitchedVlanAny the path struct for its child "native-vlan". -func (n *Interface_Aggregation_SwitchedVlanAny) NativeVlan() *Interface_Aggregation_SwitchedVlan_NativeVlanAny { - return &Interface_Aggregation_SwitchedVlan_NativeVlanAny{ +// NativeVlan returns from Interface_Aggregation_SwitchedVlanPathAny the path struct for its child "native-vlan". +func (n *Interface_Aggregation_SwitchedVlanPathAny) NativeVlan() *Interface_Aggregation_SwitchedVlan_NativeVlanPathAny { + return &Interface_Aggregation_SwitchedVlan_NativeVlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "native-vlan"}, + []string{"config", "native-vlan"}, map[string]interface{}{}, n, ), } } -// TrunkVlans returns from Interface_Aggregation_SwitchedVlan the path struct for its child "trunk-vlans". -func (n *Interface_Aggregation_SwitchedVlan) TrunkVlans() *Interface_Aggregation_SwitchedVlan_TrunkVlans { - return &Interface_Aggregation_SwitchedVlan_TrunkVlans{ +// TrunkVlans returns from Interface_Aggregation_SwitchedVlanPath the path struct for its child "trunk-vlans". +func (n *Interface_Aggregation_SwitchedVlanPath) TrunkVlans() *Interface_Aggregation_SwitchedVlan_TrunkVlansPath { + return &Interface_Aggregation_SwitchedVlan_TrunkVlansPath{ NodePath: ygot.NewNodePath( - []string{"state", "trunk-vlans"}, + []string{"config", "trunk-vlans"}, map[string]interface{}{}, n, ), } } -// TrunkVlans returns from Interface_Aggregation_SwitchedVlanAny the path struct for its child "trunk-vlans". -func (n *Interface_Aggregation_SwitchedVlanAny) TrunkVlans() *Interface_Aggregation_SwitchedVlan_TrunkVlansAny { - return &Interface_Aggregation_SwitchedVlan_TrunkVlansAny{ +// TrunkVlans returns from Interface_Aggregation_SwitchedVlanPathAny the path struct for its child "trunk-vlans". +func (n *Interface_Aggregation_SwitchedVlanPathAny) TrunkVlans() *Interface_Aggregation_SwitchedVlan_TrunkVlansPathAny { + return &Interface_Aggregation_SwitchedVlan_TrunkVlansPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trunk-vlans"}, + []string{"config", "trunk-vlans"}, map[string]interface{}{}, n, ), } } -// Interface_Counters represents the /openconfig-interfaces/interfaces/interface/state/counters YANG schema element. -type Interface_Counters struct { +// Interface_CountersPath represents the /openconfig-interfaces/interfaces/interface/state/counters YANG schema element. +type Interface_CountersPath struct { *ygot.NodePath } -// Interface_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters YANG schema element. -type Interface_CountersAny struct { +// Interface_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters YANG schema element. +type Interface_CountersPathAny struct { *ygot.NodePath } -// Interface_Counters_CarrierTransitions represents the /openconfig-interfaces/interfaces/interface/state/counters/carrier-transitions YANG schema element. -type Interface_Counters_CarrierTransitions struct { +// Interface_Counters_CarrierTransitionsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/carrier-transitions YANG schema element. +type Interface_Counters_CarrierTransitionsPath struct { *ygot.NodePath } -// Interface_Counters_CarrierTransitionsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/carrier-transitions YANG schema element. -type Interface_Counters_CarrierTransitionsAny struct { +// Interface_Counters_CarrierTransitionsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/carrier-transitions YANG schema element. +type Interface_Counters_CarrierTransitionsPathAny struct { *ygot.NodePath } -// Interface_Counters_InBroadcastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/in-broadcast-pkts YANG schema element. -type Interface_Counters_InBroadcastPkts struct { +// Interface_Counters_InBroadcastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-broadcast-pkts YANG schema element. +type Interface_Counters_InBroadcastPktsPath struct { *ygot.NodePath } -// Interface_Counters_InBroadcastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-broadcast-pkts YANG schema element. -type Interface_Counters_InBroadcastPktsAny struct { +// Interface_Counters_InBroadcastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-broadcast-pkts YANG schema element. +type Interface_Counters_InBroadcastPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_InDiscards represents the /openconfig-interfaces/interfaces/interface/state/counters/in-discards YANG schema element. -type Interface_Counters_InDiscards struct { +// Interface_Counters_InDiscardsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-discards YANG schema element. +type Interface_Counters_InDiscardsPath struct { *ygot.NodePath } -// Interface_Counters_InDiscardsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-discards YANG schema element. -type Interface_Counters_InDiscardsAny struct { +// Interface_Counters_InDiscardsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-discards YANG schema element. +type Interface_Counters_InDiscardsPathAny struct { *ygot.NodePath } -// Interface_Counters_InErrors represents the /openconfig-interfaces/interfaces/interface/state/counters/in-errors YANG schema element. -type Interface_Counters_InErrors struct { +// Interface_Counters_InErrorsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-errors YANG schema element. +type Interface_Counters_InErrorsPath struct { *ygot.NodePath } -// Interface_Counters_InErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-errors YANG schema element. -type Interface_Counters_InErrorsAny struct { +// Interface_Counters_InErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-errors YANG schema element. +type Interface_Counters_InErrorsPathAny struct { *ygot.NodePath } -// Interface_Counters_InFcsErrors represents the /openconfig-interfaces/interfaces/interface/state/counters/in-fcs-errors YANG schema element. -type Interface_Counters_InFcsErrors struct { +// Interface_Counters_InFcsErrorsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-fcs-errors YANG schema element. +type Interface_Counters_InFcsErrorsPath struct { *ygot.NodePath } -// Interface_Counters_InFcsErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-fcs-errors YANG schema element. -type Interface_Counters_InFcsErrorsAny struct { +// Interface_Counters_InFcsErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-fcs-errors YANG schema element. +type Interface_Counters_InFcsErrorsPathAny struct { *ygot.NodePath } -// Interface_Counters_InMulticastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/in-multicast-pkts YANG schema element. -type Interface_Counters_InMulticastPkts struct { +// Interface_Counters_InMulticastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-multicast-pkts YANG schema element. +type Interface_Counters_InMulticastPktsPath struct { *ygot.NodePath } -// Interface_Counters_InMulticastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-multicast-pkts YANG schema element. -type Interface_Counters_InMulticastPktsAny struct { +// Interface_Counters_InMulticastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-multicast-pkts YANG schema element. +type Interface_Counters_InMulticastPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/state/counters/in-octets YANG schema element. -type Interface_Counters_InOctets struct { +// Interface_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-octets YANG schema element. +type Interface_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-octets YANG schema element. -type Interface_Counters_InOctetsAny struct { +// Interface_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-octets YANG schema element. +type Interface_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/in-pkts YANG schema element. -type Interface_Counters_InPkts struct { +// Interface_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-pkts YANG schema element. +type Interface_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-pkts YANG schema element. -type Interface_Counters_InPktsAny struct { +// Interface_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-pkts YANG schema element. +type Interface_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_InUnicastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/in-unicast-pkts YANG schema element. -type Interface_Counters_InUnicastPkts struct { +// Interface_Counters_InUnicastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-unicast-pkts YANG schema element. +type Interface_Counters_InUnicastPktsPath struct { *ygot.NodePath } -// Interface_Counters_InUnicastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-unicast-pkts YANG schema element. -type Interface_Counters_InUnicastPktsAny struct { +// Interface_Counters_InUnicastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-unicast-pkts YANG schema element. +type Interface_Counters_InUnicastPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_InUnknownProtos represents the /openconfig-interfaces/interfaces/interface/state/counters/in-unknown-protos YANG schema element. -type Interface_Counters_InUnknownProtos struct { +// Interface_Counters_InUnknownProtosPath represents the /openconfig-interfaces/interfaces/interface/state/counters/in-unknown-protos YANG schema element. +type Interface_Counters_InUnknownProtosPath struct { *ygot.NodePath } -// Interface_Counters_InUnknownProtosAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-unknown-protos YANG schema element. -type Interface_Counters_InUnknownProtosAny struct { +// Interface_Counters_InUnknownProtosPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/in-unknown-protos YANG schema element. +type Interface_Counters_InUnknownProtosPathAny struct { *ygot.NodePath } -// Interface_Counters_LastClear represents the /openconfig-interfaces/interfaces/interface/state/counters/last-clear YANG schema element. -type Interface_Counters_LastClear struct { +// Interface_Counters_LastClearPath represents the /openconfig-interfaces/interfaces/interface/state/counters/last-clear YANG schema element. +type Interface_Counters_LastClearPath struct { *ygot.NodePath } -// Interface_Counters_LastClearAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/last-clear YANG schema element. -type Interface_Counters_LastClearAny struct { +// Interface_Counters_LastClearPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/last-clear YANG schema element. +type Interface_Counters_LastClearPathAny struct { *ygot.NodePath } -// Interface_Counters_OutBroadcastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/out-broadcast-pkts YANG schema element. -type Interface_Counters_OutBroadcastPkts struct { +// Interface_Counters_OutBroadcastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-broadcast-pkts YANG schema element. +type Interface_Counters_OutBroadcastPktsPath struct { *ygot.NodePath } -// Interface_Counters_OutBroadcastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-broadcast-pkts YANG schema element. -type Interface_Counters_OutBroadcastPktsAny struct { +// Interface_Counters_OutBroadcastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-broadcast-pkts YANG schema element. +type Interface_Counters_OutBroadcastPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutDiscards represents the /openconfig-interfaces/interfaces/interface/state/counters/out-discards YANG schema element. -type Interface_Counters_OutDiscards struct { +// Interface_Counters_OutDiscardsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-discards YANG schema element. +type Interface_Counters_OutDiscardsPath struct { *ygot.NodePath } -// Interface_Counters_OutDiscardsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-discards YANG schema element. -type Interface_Counters_OutDiscardsAny struct { +// Interface_Counters_OutDiscardsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-discards YANG schema element. +type Interface_Counters_OutDiscardsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutErrors represents the /openconfig-interfaces/interfaces/interface/state/counters/out-errors YANG schema element. -type Interface_Counters_OutErrors struct { +// Interface_Counters_OutErrorsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-errors YANG schema element. +type Interface_Counters_OutErrorsPath struct { *ygot.NodePath } -// Interface_Counters_OutErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-errors YANG schema element. -type Interface_Counters_OutErrorsAny struct { +// Interface_Counters_OutErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-errors YANG schema element. +type Interface_Counters_OutErrorsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutMulticastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/out-multicast-pkts YANG schema element. -type Interface_Counters_OutMulticastPkts struct { +// Interface_Counters_OutMulticastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-multicast-pkts YANG schema element. +type Interface_Counters_OutMulticastPktsPath struct { *ygot.NodePath } -// Interface_Counters_OutMulticastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-multicast-pkts YANG schema element. -type Interface_Counters_OutMulticastPktsAny struct { +// Interface_Counters_OutMulticastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-multicast-pkts YANG schema element. +type Interface_Counters_OutMulticastPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/state/counters/out-octets YANG schema element. -type Interface_Counters_OutOctets struct { +// Interface_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-octets YANG schema element. +type Interface_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-octets YANG schema element. -type Interface_Counters_OutOctetsAny struct { +// Interface_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-octets YANG schema element. +type Interface_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/out-pkts YANG schema element. -type Interface_Counters_OutPkts struct { +// Interface_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-pkts YANG schema element. +type Interface_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-pkts YANG schema element. -type Interface_Counters_OutPktsAny struct { +// Interface_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-pkts YANG schema element. +type Interface_Counters_OutPktsPathAny struct { *ygot.NodePath } -// Interface_Counters_OutUnicastPkts represents the /openconfig-interfaces/interfaces/interface/state/counters/out-unicast-pkts YANG schema element. -type Interface_Counters_OutUnicastPkts struct { +// Interface_Counters_OutUnicastPktsPath represents the /openconfig-interfaces/interfaces/interface/state/counters/out-unicast-pkts YANG schema element. +type Interface_Counters_OutUnicastPktsPath struct { *ygot.NodePath } -// Interface_Counters_OutUnicastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-unicast-pkts YANG schema element. -type Interface_Counters_OutUnicastPktsAny struct { +// Interface_Counters_OutUnicastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/state/counters/out-unicast-pkts YANG schema element. +type Interface_Counters_OutUnicastPktsPathAny struct { *ygot.NodePath } -// CarrierTransitions returns from Interface_Counters the path struct for its child "carrier-transitions". -func (n *Interface_Counters) CarrierTransitions() *Interface_Counters_CarrierTransitions { - return &Interface_Counters_CarrierTransitions{ +// CarrierTransitions returns from Interface_CountersPath the path struct for its child "carrier-transitions". +func (n *Interface_CountersPath) CarrierTransitions() *Interface_Counters_CarrierTransitionsPath { + return &Interface_Counters_CarrierTransitionsPath{ NodePath: ygot.NewNodePath( []string{"carrier-transitions"}, map[string]interface{}{}, @@ -43942,9 +44156,9 @@ func (n *Interface_Counters) CarrierTransitions() *Interface_Counters_CarrierTra } } -// CarrierTransitions returns from Interface_CountersAny the path struct for its child "carrier-transitions". -func (n *Interface_CountersAny) CarrierTransitions() *Interface_Counters_CarrierTransitionsAny { - return &Interface_Counters_CarrierTransitionsAny{ +// CarrierTransitions returns from Interface_CountersPathAny the path struct for its child "carrier-transitions". +func (n *Interface_CountersPathAny) CarrierTransitions() *Interface_Counters_CarrierTransitionsPathAny { + return &Interface_Counters_CarrierTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"carrier-transitions"}, map[string]interface{}{}, @@ -43953,9 +44167,9 @@ func (n *Interface_CountersAny) CarrierTransitions() *Interface_Counters_Carrier } } -// InBroadcastPkts returns from Interface_Counters the path struct for its child "in-broadcast-pkts". -func (n *Interface_Counters) InBroadcastPkts() *Interface_Counters_InBroadcastPkts { - return &Interface_Counters_InBroadcastPkts{ +// InBroadcastPkts returns from Interface_CountersPath the path struct for its child "in-broadcast-pkts". +func (n *Interface_CountersPath) InBroadcastPkts() *Interface_Counters_InBroadcastPktsPath { + return &Interface_Counters_InBroadcastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-broadcast-pkts"}, map[string]interface{}{}, @@ -43964,9 +44178,9 @@ func (n *Interface_Counters) InBroadcastPkts() *Interface_Counters_InBroadcastPk } } -// InBroadcastPkts returns from Interface_CountersAny the path struct for its child "in-broadcast-pkts". -func (n *Interface_CountersAny) InBroadcastPkts() *Interface_Counters_InBroadcastPktsAny { - return &Interface_Counters_InBroadcastPktsAny{ +// InBroadcastPkts returns from Interface_CountersPathAny the path struct for its child "in-broadcast-pkts". +func (n *Interface_CountersPathAny) InBroadcastPkts() *Interface_Counters_InBroadcastPktsPathAny { + return &Interface_Counters_InBroadcastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-broadcast-pkts"}, map[string]interface{}{}, @@ -43975,9 +44189,9 @@ func (n *Interface_CountersAny) InBroadcastPkts() *Interface_Counters_InBroadcas } } -// InDiscards returns from Interface_Counters the path struct for its child "in-discards". -func (n *Interface_Counters) InDiscards() *Interface_Counters_InDiscards { - return &Interface_Counters_InDiscards{ +// InDiscards returns from Interface_CountersPath the path struct for its child "in-discards". +func (n *Interface_CountersPath) InDiscards() *Interface_Counters_InDiscardsPath { + return &Interface_Counters_InDiscardsPath{ NodePath: ygot.NewNodePath( []string{"in-discards"}, map[string]interface{}{}, @@ -43986,9 +44200,9 @@ func (n *Interface_Counters) InDiscards() *Interface_Counters_InDiscards { } } -// InDiscards returns from Interface_CountersAny the path struct for its child "in-discards". -func (n *Interface_CountersAny) InDiscards() *Interface_Counters_InDiscardsAny { - return &Interface_Counters_InDiscardsAny{ +// InDiscards returns from Interface_CountersPathAny the path struct for its child "in-discards". +func (n *Interface_CountersPathAny) InDiscards() *Interface_Counters_InDiscardsPathAny { + return &Interface_Counters_InDiscardsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discards"}, map[string]interface{}{}, @@ -43997,9 +44211,9 @@ func (n *Interface_CountersAny) InDiscards() *Interface_Counters_InDiscardsAny { } } -// InErrors returns from Interface_Counters the path struct for its child "in-errors". -func (n *Interface_Counters) InErrors() *Interface_Counters_InErrors { - return &Interface_Counters_InErrors{ +// InErrors returns from Interface_CountersPath the path struct for its child "in-errors". +func (n *Interface_CountersPath) InErrors() *Interface_Counters_InErrorsPath { + return &Interface_Counters_InErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-errors"}, map[string]interface{}{}, @@ -44008,9 +44222,9 @@ func (n *Interface_Counters) InErrors() *Interface_Counters_InErrors { } } -// InErrors returns from Interface_CountersAny the path struct for its child "in-errors". -func (n *Interface_CountersAny) InErrors() *Interface_Counters_InErrorsAny { - return &Interface_Counters_InErrorsAny{ +// InErrors returns from Interface_CountersPathAny the path struct for its child "in-errors". +func (n *Interface_CountersPathAny) InErrors() *Interface_Counters_InErrorsPathAny { + return &Interface_Counters_InErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-errors"}, map[string]interface{}{}, @@ -44019,9 +44233,9 @@ func (n *Interface_CountersAny) InErrors() *Interface_Counters_InErrorsAny { } } -// InFcsErrors returns from Interface_Counters the path struct for its child "in-fcs-errors". -func (n *Interface_Counters) InFcsErrors() *Interface_Counters_InFcsErrors { - return &Interface_Counters_InFcsErrors{ +// InFcsErrors returns from Interface_CountersPath the path struct for its child "in-fcs-errors". +func (n *Interface_CountersPath) InFcsErrors() *Interface_Counters_InFcsErrorsPath { + return &Interface_Counters_InFcsErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-fcs-errors"}, map[string]interface{}{}, @@ -44030,9 +44244,9 @@ func (n *Interface_Counters) InFcsErrors() *Interface_Counters_InFcsErrors { } } -// InFcsErrors returns from Interface_CountersAny the path struct for its child "in-fcs-errors". -func (n *Interface_CountersAny) InFcsErrors() *Interface_Counters_InFcsErrorsAny { - return &Interface_Counters_InFcsErrorsAny{ +// InFcsErrors returns from Interface_CountersPathAny the path struct for its child "in-fcs-errors". +func (n *Interface_CountersPathAny) InFcsErrors() *Interface_Counters_InFcsErrorsPathAny { + return &Interface_Counters_InFcsErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-fcs-errors"}, map[string]interface{}{}, @@ -44041,9 +44255,9 @@ func (n *Interface_CountersAny) InFcsErrors() *Interface_Counters_InFcsErrorsAny } } -// InMulticastPkts returns from Interface_Counters the path struct for its child "in-multicast-pkts". -func (n *Interface_Counters) InMulticastPkts() *Interface_Counters_InMulticastPkts { - return &Interface_Counters_InMulticastPkts{ +// InMulticastPkts returns from Interface_CountersPath the path struct for its child "in-multicast-pkts". +func (n *Interface_CountersPath) InMulticastPkts() *Interface_Counters_InMulticastPktsPath { + return &Interface_Counters_InMulticastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-multicast-pkts"}, map[string]interface{}{}, @@ -44052,9 +44266,9 @@ func (n *Interface_Counters) InMulticastPkts() *Interface_Counters_InMulticastPk } } -// InMulticastPkts returns from Interface_CountersAny the path struct for its child "in-multicast-pkts". -func (n *Interface_CountersAny) InMulticastPkts() *Interface_Counters_InMulticastPktsAny { - return &Interface_Counters_InMulticastPktsAny{ +// InMulticastPkts returns from Interface_CountersPathAny the path struct for its child "in-multicast-pkts". +func (n *Interface_CountersPathAny) InMulticastPkts() *Interface_Counters_InMulticastPktsPathAny { + return &Interface_Counters_InMulticastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-multicast-pkts"}, map[string]interface{}{}, @@ -44063,9 +44277,9 @@ func (n *Interface_CountersAny) InMulticastPkts() *Interface_Counters_InMulticas } } -// InOctets returns from Interface_Counters the path struct for its child "in-octets". -func (n *Interface_Counters) InOctets() *Interface_Counters_InOctets { - return &Interface_Counters_InOctets{ +// InOctets returns from Interface_CountersPath the path struct for its child "in-octets". +func (n *Interface_CountersPath) InOctets() *Interface_Counters_InOctetsPath { + return &Interface_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -44074,9 +44288,9 @@ func (n *Interface_Counters) InOctets() *Interface_Counters_InOctets { } } -// InOctets returns from Interface_CountersAny the path struct for its child "in-octets". -func (n *Interface_CountersAny) InOctets() *Interface_Counters_InOctetsAny { - return &Interface_Counters_InOctetsAny{ +// InOctets returns from Interface_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_CountersPathAny) InOctets() *Interface_Counters_InOctetsPathAny { + return &Interface_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -44085,9 +44299,9 @@ func (n *Interface_CountersAny) InOctets() *Interface_Counters_InOctetsAny { } } -// InPkts returns from Interface_Counters the path struct for its child "in-pkts". -func (n *Interface_Counters) InPkts() *Interface_Counters_InPkts { - return &Interface_Counters_InPkts{ +// InPkts returns from Interface_CountersPath the path struct for its child "in-pkts". +func (n *Interface_CountersPath) InPkts() *Interface_Counters_InPktsPath { + return &Interface_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -44096,9 +44310,9 @@ func (n *Interface_Counters) InPkts() *Interface_Counters_InPkts { } } -// InPkts returns from Interface_CountersAny the path struct for its child "in-pkts". -func (n *Interface_CountersAny) InPkts() *Interface_Counters_InPktsAny { - return &Interface_Counters_InPktsAny{ +// InPkts returns from Interface_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_CountersPathAny) InPkts() *Interface_Counters_InPktsPathAny { + return &Interface_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -44107,9 +44321,9 @@ func (n *Interface_CountersAny) InPkts() *Interface_Counters_InPktsAny { } } -// InUnicastPkts returns from Interface_Counters the path struct for its child "in-unicast-pkts". -func (n *Interface_Counters) InUnicastPkts() *Interface_Counters_InUnicastPkts { - return &Interface_Counters_InUnicastPkts{ +// InUnicastPkts returns from Interface_CountersPath the path struct for its child "in-unicast-pkts". +func (n *Interface_CountersPath) InUnicastPkts() *Interface_Counters_InUnicastPktsPath { + return &Interface_Counters_InUnicastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-unicast-pkts"}, map[string]interface{}{}, @@ -44118,9 +44332,9 @@ func (n *Interface_Counters) InUnicastPkts() *Interface_Counters_InUnicastPkts { } } -// InUnicastPkts returns from Interface_CountersAny the path struct for its child "in-unicast-pkts". -func (n *Interface_CountersAny) InUnicastPkts() *Interface_Counters_InUnicastPktsAny { - return &Interface_Counters_InUnicastPktsAny{ +// InUnicastPkts returns from Interface_CountersPathAny the path struct for its child "in-unicast-pkts". +func (n *Interface_CountersPathAny) InUnicastPkts() *Interface_Counters_InUnicastPktsPathAny { + return &Interface_Counters_InUnicastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-unicast-pkts"}, map[string]interface{}{}, @@ -44129,9 +44343,9 @@ func (n *Interface_CountersAny) InUnicastPkts() *Interface_Counters_InUnicastPkt } } -// InUnknownProtos returns from Interface_Counters the path struct for its child "in-unknown-protos". -func (n *Interface_Counters) InUnknownProtos() *Interface_Counters_InUnknownProtos { - return &Interface_Counters_InUnknownProtos{ +// InUnknownProtos returns from Interface_CountersPath the path struct for its child "in-unknown-protos". +func (n *Interface_CountersPath) InUnknownProtos() *Interface_Counters_InUnknownProtosPath { + return &Interface_Counters_InUnknownProtosPath{ NodePath: ygot.NewNodePath( []string{"in-unknown-protos"}, map[string]interface{}{}, @@ -44140,9 +44354,9 @@ func (n *Interface_Counters) InUnknownProtos() *Interface_Counters_InUnknownProt } } -// InUnknownProtos returns from Interface_CountersAny the path struct for its child "in-unknown-protos". -func (n *Interface_CountersAny) InUnknownProtos() *Interface_Counters_InUnknownProtosAny { - return &Interface_Counters_InUnknownProtosAny{ +// InUnknownProtos returns from Interface_CountersPathAny the path struct for its child "in-unknown-protos". +func (n *Interface_CountersPathAny) InUnknownProtos() *Interface_Counters_InUnknownProtosPathAny { + return &Interface_Counters_InUnknownProtosPathAny{ NodePath: ygot.NewNodePath( []string{"in-unknown-protos"}, map[string]interface{}{}, @@ -44151,9 +44365,9 @@ func (n *Interface_CountersAny) InUnknownProtos() *Interface_Counters_InUnknownP } } -// LastClear returns from Interface_Counters the path struct for its child "last-clear". -func (n *Interface_Counters) LastClear() *Interface_Counters_LastClear { - return &Interface_Counters_LastClear{ +// LastClear returns from Interface_CountersPath the path struct for its child "last-clear". +func (n *Interface_CountersPath) LastClear() *Interface_Counters_LastClearPath { + return &Interface_Counters_LastClearPath{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -44162,9 +44376,9 @@ func (n *Interface_Counters) LastClear() *Interface_Counters_LastClear { } } -// LastClear returns from Interface_CountersAny the path struct for its child "last-clear". -func (n *Interface_CountersAny) LastClear() *Interface_Counters_LastClearAny { - return &Interface_Counters_LastClearAny{ +// LastClear returns from Interface_CountersPathAny the path struct for its child "last-clear". +func (n *Interface_CountersPathAny) LastClear() *Interface_Counters_LastClearPathAny { + return &Interface_Counters_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -44173,9 +44387,9 @@ func (n *Interface_CountersAny) LastClear() *Interface_Counters_LastClearAny { } } -// OutBroadcastPkts returns from Interface_Counters the path struct for its child "out-broadcast-pkts". -func (n *Interface_Counters) OutBroadcastPkts() *Interface_Counters_OutBroadcastPkts { - return &Interface_Counters_OutBroadcastPkts{ +// OutBroadcastPkts returns from Interface_CountersPath the path struct for its child "out-broadcast-pkts". +func (n *Interface_CountersPath) OutBroadcastPkts() *Interface_Counters_OutBroadcastPktsPath { + return &Interface_Counters_OutBroadcastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-broadcast-pkts"}, map[string]interface{}{}, @@ -44184,9 +44398,9 @@ func (n *Interface_Counters) OutBroadcastPkts() *Interface_Counters_OutBroadcast } } -// OutBroadcastPkts returns from Interface_CountersAny the path struct for its child "out-broadcast-pkts". -func (n *Interface_CountersAny) OutBroadcastPkts() *Interface_Counters_OutBroadcastPktsAny { - return &Interface_Counters_OutBroadcastPktsAny{ +// OutBroadcastPkts returns from Interface_CountersPathAny the path struct for its child "out-broadcast-pkts". +func (n *Interface_CountersPathAny) OutBroadcastPkts() *Interface_Counters_OutBroadcastPktsPathAny { + return &Interface_Counters_OutBroadcastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-broadcast-pkts"}, map[string]interface{}{}, @@ -44195,9 +44409,9 @@ func (n *Interface_CountersAny) OutBroadcastPkts() *Interface_Counters_OutBroadc } } -// OutDiscards returns from Interface_Counters the path struct for its child "out-discards". -func (n *Interface_Counters) OutDiscards() *Interface_Counters_OutDiscards { - return &Interface_Counters_OutDiscards{ +// OutDiscards returns from Interface_CountersPath the path struct for its child "out-discards". +func (n *Interface_CountersPath) OutDiscards() *Interface_Counters_OutDiscardsPath { + return &Interface_Counters_OutDiscardsPath{ NodePath: ygot.NewNodePath( []string{"out-discards"}, map[string]interface{}{}, @@ -44206,9 +44420,9 @@ func (n *Interface_Counters) OutDiscards() *Interface_Counters_OutDiscards { } } -// OutDiscards returns from Interface_CountersAny the path struct for its child "out-discards". -func (n *Interface_CountersAny) OutDiscards() *Interface_Counters_OutDiscardsAny { - return &Interface_Counters_OutDiscardsAny{ +// OutDiscards returns from Interface_CountersPathAny the path struct for its child "out-discards". +func (n *Interface_CountersPathAny) OutDiscards() *Interface_Counters_OutDiscardsPathAny { + return &Interface_Counters_OutDiscardsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discards"}, map[string]interface{}{}, @@ -44217,9 +44431,9 @@ func (n *Interface_CountersAny) OutDiscards() *Interface_Counters_OutDiscardsAny } } -// OutErrors returns from Interface_Counters the path struct for its child "out-errors". -func (n *Interface_Counters) OutErrors() *Interface_Counters_OutErrors { - return &Interface_Counters_OutErrors{ +// OutErrors returns from Interface_CountersPath the path struct for its child "out-errors". +func (n *Interface_CountersPath) OutErrors() *Interface_Counters_OutErrorsPath { + return &Interface_Counters_OutErrorsPath{ NodePath: ygot.NewNodePath( []string{"out-errors"}, map[string]interface{}{}, @@ -44228,9 +44442,9 @@ func (n *Interface_Counters) OutErrors() *Interface_Counters_OutErrors { } } -// OutErrors returns from Interface_CountersAny the path struct for its child "out-errors". -func (n *Interface_CountersAny) OutErrors() *Interface_Counters_OutErrorsAny { - return &Interface_Counters_OutErrorsAny{ +// OutErrors returns from Interface_CountersPathAny the path struct for its child "out-errors". +func (n *Interface_CountersPathAny) OutErrors() *Interface_Counters_OutErrorsPathAny { + return &Interface_Counters_OutErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"out-errors"}, map[string]interface{}{}, @@ -44239,9 +44453,9 @@ func (n *Interface_CountersAny) OutErrors() *Interface_Counters_OutErrorsAny { } } -// OutMulticastPkts returns from Interface_Counters the path struct for its child "out-multicast-pkts". -func (n *Interface_Counters) OutMulticastPkts() *Interface_Counters_OutMulticastPkts { - return &Interface_Counters_OutMulticastPkts{ +// OutMulticastPkts returns from Interface_CountersPath the path struct for its child "out-multicast-pkts". +func (n *Interface_CountersPath) OutMulticastPkts() *Interface_Counters_OutMulticastPktsPath { + return &Interface_Counters_OutMulticastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-multicast-pkts"}, map[string]interface{}{}, @@ -44250,9 +44464,9 @@ func (n *Interface_Counters) OutMulticastPkts() *Interface_Counters_OutMulticast } } -// OutMulticastPkts returns from Interface_CountersAny the path struct for its child "out-multicast-pkts". -func (n *Interface_CountersAny) OutMulticastPkts() *Interface_Counters_OutMulticastPktsAny { - return &Interface_Counters_OutMulticastPktsAny{ +// OutMulticastPkts returns from Interface_CountersPathAny the path struct for its child "out-multicast-pkts". +func (n *Interface_CountersPathAny) OutMulticastPkts() *Interface_Counters_OutMulticastPktsPathAny { + return &Interface_Counters_OutMulticastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-multicast-pkts"}, map[string]interface{}{}, @@ -44261,9 +44475,9 @@ func (n *Interface_CountersAny) OutMulticastPkts() *Interface_Counters_OutMultic } } -// OutOctets returns from Interface_Counters the path struct for its child "out-octets". -func (n *Interface_Counters) OutOctets() *Interface_Counters_OutOctets { - return &Interface_Counters_OutOctets{ +// OutOctets returns from Interface_CountersPath the path struct for its child "out-octets". +func (n *Interface_CountersPath) OutOctets() *Interface_Counters_OutOctetsPath { + return &Interface_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -44272,9 +44486,9 @@ func (n *Interface_Counters) OutOctets() *Interface_Counters_OutOctets { } } -// OutOctets returns from Interface_CountersAny the path struct for its child "out-octets". -func (n *Interface_CountersAny) OutOctets() *Interface_Counters_OutOctetsAny { - return &Interface_Counters_OutOctetsAny{ +// OutOctets returns from Interface_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_CountersPathAny) OutOctets() *Interface_Counters_OutOctetsPathAny { + return &Interface_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -44283,9 +44497,9 @@ func (n *Interface_CountersAny) OutOctets() *Interface_Counters_OutOctetsAny { } } -// OutPkts returns from Interface_Counters the path struct for its child "out-pkts". -func (n *Interface_Counters) OutPkts() *Interface_Counters_OutPkts { - return &Interface_Counters_OutPkts{ +// OutPkts returns from Interface_CountersPath the path struct for its child "out-pkts". +func (n *Interface_CountersPath) OutPkts() *Interface_Counters_OutPktsPath { + return &Interface_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -44294,9 +44508,9 @@ func (n *Interface_Counters) OutPkts() *Interface_Counters_OutPkts { } } -// OutPkts returns from Interface_CountersAny the path struct for its child "out-pkts". -func (n *Interface_CountersAny) OutPkts() *Interface_Counters_OutPktsAny { - return &Interface_Counters_OutPktsAny{ +// OutPkts returns from Interface_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_CountersPathAny) OutPkts() *Interface_Counters_OutPktsPathAny { + return &Interface_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -44305,9 +44519,9 @@ func (n *Interface_CountersAny) OutPkts() *Interface_Counters_OutPktsAny { } } -// OutUnicastPkts returns from Interface_Counters the path struct for its child "out-unicast-pkts". -func (n *Interface_Counters) OutUnicastPkts() *Interface_Counters_OutUnicastPkts { - return &Interface_Counters_OutUnicastPkts{ +// OutUnicastPkts returns from Interface_CountersPath the path struct for its child "out-unicast-pkts". +func (n *Interface_CountersPath) OutUnicastPkts() *Interface_Counters_OutUnicastPktsPath { + return &Interface_Counters_OutUnicastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-unicast-pkts"}, map[string]interface{}{}, @@ -44316,9 +44530,9 @@ func (n *Interface_Counters) OutUnicastPkts() *Interface_Counters_OutUnicastPkts } } -// OutUnicastPkts returns from Interface_CountersAny the path struct for its child "out-unicast-pkts". -func (n *Interface_CountersAny) OutUnicastPkts() *Interface_Counters_OutUnicastPktsAny { - return &Interface_Counters_OutUnicastPktsAny{ +// OutUnicastPkts returns from Interface_CountersPathAny the path struct for its child "out-unicast-pkts". +func (n *Interface_CountersPathAny) OutUnicastPkts() *Interface_Counters_OutUnicastPktsPathAny { + return &Interface_Counters_OutUnicastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-unicast-pkts"}, map[string]interface{}{}, @@ -44327,153 +44541,153 @@ func (n *Interface_CountersAny) OutUnicastPkts() *Interface_Counters_OutUnicastP } } -// Interface_Ethernet represents the /openconfig-interfaces/interfaces/interface/ethernet YANG schema element. -type Interface_Ethernet struct { +// Interface_EthernetPath represents the /openconfig-interfaces/interfaces/interface/ethernet YANG schema element. +type Interface_EthernetPath struct { *ygot.NodePath } -// Interface_EthernetAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet YANG schema element. -type Interface_EthernetAny struct { +// Interface_EthernetPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet YANG schema element. +type Interface_EthernetPathAny struct { *ygot.NodePath } -// Interface_Ethernet_AggregateId represents the /openconfig-interfaces/interfaces/interface/ethernet/state/aggregate-id YANG schema element. -type Interface_Ethernet_AggregateId struct { +// Interface_Ethernet_AggregateIdPath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/aggregate-id YANG schema element. +type Interface_Ethernet_AggregateIdPath struct { *ygot.NodePath } -// Interface_Ethernet_AggregateIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/aggregate-id YANG schema element. -type Interface_Ethernet_AggregateIdAny struct { +// Interface_Ethernet_AggregateIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/aggregate-id YANG schema element. +type Interface_Ethernet_AggregateIdPathAny struct { *ygot.NodePath } -// Interface_Ethernet_AutoNegotiate represents the /openconfig-interfaces/interfaces/interface/ethernet/state/auto-negotiate YANG schema element. -type Interface_Ethernet_AutoNegotiate struct { +// Interface_Ethernet_AutoNegotiatePath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/auto-negotiate YANG schema element. +type Interface_Ethernet_AutoNegotiatePath struct { *ygot.NodePath } -// Interface_Ethernet_AutoNegotiateAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/auto-negotiate YANG schema element. -type Interface_Ethernet_AutoNegotiateAny struct { +// Interface_Ethernet_AutoNegotiatePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/auto-negotiate YANG schema element. +type Interface_Ethernet_AutoNegotiatePathAny struct { *ygot.NodePath } -// Interface_Ethernet_DuplexMode represents the /openconfig-interfaces/interfaces/interface/ethernet/state/duplex-mode YANG schema element. -type Interface_Ethernet_DuplexMode struct { +// Interface_Ethernet_DuplexModePath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/duplex-mode YANG schema element. +type Interface_Ethernet_DuplexModePath struct { *ygot.NodePath } -// Interface_Ethernet_DuplexModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/duplex-mode YANG schema element. -type Interface_Ethernet_DuplexModeAny struct { +// Interface_Ethernet_DuplexModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/duplex-mode YANG schema element. +type Interface_Ethernet_DuplexModePathAny struct { *ygot.NodePath } -// Interface_Ethernet_EnableFlowControl represents the /openconfig-interfaces/interfaces/interface/ethernet/state/enable-flow-control YANG schema element. -type Interface_Ethernet_EnableFlowControl struct { +// Interface_Ethernet_EnableFlowControlPath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/enable-flow-control YANG schema element. +type Interface_Ethernet_EnableFlowControlPath struct { *ygot.NodePath } -// Interface_Ethernet_EnableFlowControlAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/enable-flow-control YANG schema element. -type Interface_Ethernet_EnableFlowControlAny struct { +// Interface_Ethernet_EnableFlowControlPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/enable-flow-control YANG schema element. +type Interface_Ethernet_EnableFlowControlPathAny struct { *ygot.NodePath } -// Interface_Ethernet_HwMacAddress represents the /openconfig-interfaces/interfaces/interface/ethernet/state/hw-mac-address YANG schema element. -type Interface_Ethernet_HwMacAddress struct { +// Interface_Ethernet_HwMacAddressPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/hw-mac-address YANG schema element. +type Interface_Ethernet_HwMacAddressPath struct { *ygot.NodePath } -// Interface_Ethernet_HwMacAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/hw-mac-address YANG schema element. -type Interface_Ethernet_HwMacAddressAny struct { +// Interface_Ethernet_HwMacAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/hw-mac-address YANG schema element. +type Interface_Ethernet_HwMacAddressPathAny struct { *ygot.NodePath } -// Interface_Ethernet_MacAddress represents the /openconfig-interfaces/interfaces/interface/ethernet/state/mac-address YANG schema element. -type Interface_Ethernet_MacAddress struct { +// Interface_Ethernet_MacAddressPath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/mac-address YANG schema element. +type Interface_Ethernet_MacAddressPath struct { *ygot.NodePath } -// Interface_Ethernet_MacAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/mac-address YANG schema element. -type Interface_Ethernet_MacAddressAny struct { +// Interface_Ethernet_MacAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/mac-address YANG schema element. +type Interface_Ethernet_MacAddressPathAny struct { *ygot.NodePath } -// Interface_Ethernet_NegotiatedDuplexMode represents the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-duplex-mode YANG schema element. -type Interface_Ethernet_NegotiatedDuplexMode struct { +// Interface_Ethernet_NegotiatedDuplexModePath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-duplex-mode YANG schema element. +type Interface_Ethernet_NegotiatedDuplexModePath struct { *ygot.NodePath } -// Interface_Ethernet_NegotiatedDuplexModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-duplex-mode YANG schema element. -type Interface_Ethernet_NegotiatedDuplexModeAny struct { +// Interface_Ethernet_NegotiatedDuplexModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-duplex-mode YANG schema element. +type Interface_Ethernet_NegotiatedDuplexModePathAny struct { *ygot.NodePath } -// Interface_Ethernet_NegotiatedPortSpeed represents the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-port-speed YANG schema element. -type Interface_Ethernet_NegotiatedPortSpeed struct { +// Interface_Ethernet_NegotiatedPortSpeedPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-port-speed YANG schema element. +type Interface_Ethernet_NegotiatedPortSpeedPath struct { *ygot.NodePath } -// Interface_Ethernet_NegotiatedPortSpeedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-port-speed YANG schema element. -type Interface_Ethernet_NegotiatedPortSpeedAny struct { +// Interface_Ethernet_NegotiatedPortSpeedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/negotiated-port-speed YANG schema element. +type Interface_Ethernet_NegotiatedPortSpeedPathAny struct { *ygot.NodePath } -// Interface_Ethernet_PortSpeed represents the /openconfig-interfaces/interfaces/interface/ethernet/state/port-speed YANG schema element. -type Interface_Ethernet_PortSpeed struct { +// Interface_Ethernet_PortSpeedPath represents the /openconfig-interfaces/interfaces/interface/ethernet/config/port-speed YANG schema element. +type Interface_Ethernet_PortSpeedPath struct { *ygot.NodePath } -// Interface_Ethernet_PortSpeedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/port-speed YANG schema element. -type Interface_Ethernet_PortSpeedAny struct { +// Interface_Ethernet_PortSpeedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/config/port-speed YANG schema element. +type Interface_Ethernet_PortSpeedPathAny struct { *ygot.NodePath } -// AggregateId returns from Interface_Ethernet the path struct for its child "aggregate-id". -func (n *Interface_Ethernet) AggregateId() *Interface_Ethernet_AggregateId { - return &Interface_Ethernet_AggregateId{ +// AggregateId returns from Interface_EthernetPath the path struct for its child "aggregate-id". +func (n *Interface_EthernetPath) AggregateId() *Interface_Ethernet_AggregateIdPath { + return &Interface_Ethernet_AggregateIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "aggregate-id"}, + []string{"config", "aggregate-id"}, map[string]interface{}{}, n, ), } } -// AggregateId returns from Interface_EthernetAny the path struct for its child "aggregate-id". -func (n *Interface_EthernetAny) AggregateId() *Interface_Ethernet_AggregateIdAny { - return &Interface_Ethernet_AggregateIdAny{ +// AggregateId returns from Interface_EthernetPathAny the path struct for its child "aggregate-id". +func (n *Interface_EthernetPathAny) AggregateId() *Interface_Ethernet_AggregateIdPathAny { + return &Interface_Ethernet_AggregateIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "aggregate-id"}, + []string{"config", "aggregate-id"}, map[string]interface{}{}, n, ), } } -// AutoNegotiate returns from Interface_Ethernet the path struct for its child "auto-negotiate". -func (n *Interface_Ethernet) AutoNegotiate() *Interface_Ethernet_AutoNegotiate { - return &Interface_Ethernet_AutoNegotiate{ +// AutoNegotiate returns from Interface_EthernetPath the path struct for its child "auto-negotiate". +func (n *Interface_EthernetPath) AutoNegotiate() *Interface_Ethernet_AutoNegotiatePath { + return &Interface_Ethernet_AutoNegotiatePath{ NodePath: ygot.NewNodePath( - []string{"state", "auto-negotiate"}, + []string{"config", "auto-negotiate"}, map[string]interface{}{}, n, ), } } -// AutoNegotiate returns from Interface_EthernetAny the path struct for its child "auto-negotiate". -func (n *Interface_EthernetAny) AutoNegotiate() *Interface_Ethernet_AutoNegotiateAny { - return &Interface_Ethernet_AutoNegotiateAny{ +// AutoNegotiate returns from Interface_EthernetPathAny the path struct for its child "auto-negotiate". +func (n *Interface_EthernetPathAny) AutoNegotiate() *Interface_Ethernet_AutoNegotiatePathAny { + return &Interface_Ethernet_AutoNegotiatePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auto-negotiate"}, + []string{"config", "auto-negotiate"}, map[string]interface{}{}, n, ), } } -// Counters returns from Interface_Ethernet the path struct for its child "counters". -func (n *Interface_Ethernet) Counters() *Interface_Ethernet_Counters { - return &Interface_Ethernet_Counters{ +// Counters returns from Interface_EthernetPath the path struct for its child "counters". +func (n *Interface_EthernetPath) Counters() *Interface_Ethernet_CountersPath { + return &Interface_Ethernet_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -44482,9 +44696,9 @@ func (n *Interface_Ethernet) Counters() *Interface_Ethernet_Counters { } } -// Counters returns from Interface_EthernetAny the path struct for its child "counters". -func (n *Interface_EthernetAny) Counters() *Interface_Ethernet_CountersAny { - return &Interface_Ethernet_CountersAny{ +// Counters returns from Interface_EthernetPathAny the path struct for its child "counters". +func (n *Interface_EthernetPathAny) Counters() *Interface_Ethernet_CountersPathAny { + return &Interface_Ethernet_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -44493,53 +44707,53 @@ func (n *Interface_EthernetAny) Counters() *Interface_Ethernet_CountersAny { } } -// DuplexMode returns from Interface_Ethernet the path struct for its child "duplex-mode". -func (n *Interface_Ethernet) DuplexMode() *Interface_Ethernet_DuplexMode { - return &Interface_Ethernet_DuplexMode{ +// DuplexMode returns from Interface_EthernetPath the path struct for its child "duplex-mode". +func (n *Interface_EthernetPath) DuplexMode() *Interface_Ethernet_DuplexModePath { + return &Interface_Ethernet_DuplexModePath{ NodePath: ygot.NewNodePath( - []string{"state", "duplex-mode"}, + []string{"config", "duplex-mode"}, map[string]interface{}{}, n, ), } } -// DuplexMode returns from Interface_EthernetAny the path struct for its child "duplex-mode". -func (n *Interface_EthernetAny) DuplexMode() *Interface_Ethernet_DuplexModeAny { - return &Interface_Ethernet_DuplexModeAny{ +// DuplexMode returns from Interface_EthernetPathAny the path struct for its child "duplex-mode". +func (n *Interface_EthernetPathAny) DuplexMode() *Interface_Ethernet_DuplexModePathAny { + return &Interface_Ethernet_DuplexModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "duplex-mode"}, + []string{"config", "duplex-mode"}, map[string]interface{}{}, n, ), } } -// EnableFlowControl returns from Interface_Ethernet the path struct for its child "enable-flow-control". -func (n *Interface_Ethernet) EnableFlowControl() *Interface_Ethernet_EnableFlowControl { - return &Interface_Ethernet_EnableFlowControl{ +// EnableFlowControl returns from Interface_EthernetPath the path struct for its child "enable-flow-control". +func (n *Interface_EthernetPath) EnableFlowControl() *Interface_Ethernet_EnableFlowControlPath { + return &Interface_Ethernet_EnableFlowControlPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-flow-control"}, + []string{"config", "enable-flow-control"}, map[string]interface{}{}, n, ), } } -// EnableFlowControl returns from Interface_EthernetAny the path struct for its child "enable-flow-control". -func (n *Interface_EthernetAny) EnableFlowControl() *Interface_Ethernet_EnableFlowControlAny { - return &Interface_Ethernet_EnableFlowControlAny{ +// EnableFlowControl returns from Interface_EthernetPathAny the path struct for its child "enable-flow-control". +func (n *Interface_EthernetPathAny) EnableFlowControl() *Interface_Ethernet_EnableFlowControlPathAny { + return &Interface_Ethernet_EnableFlowControlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-flow-control"}, + []string{"config", "enable-flow-control"}, map[string]interface{}{}, n, ), } } -// HwMacAddress returns from Interface_Ethernet the path struct for its child "hw-mac-address". -func (n *Interface_Ethernet) HwMacAddress() *Interface_Ethernet_HwMacAddress { - return &Interface_Ethernet_HwMacAddress{ +// HwMacAddress returns from Interface_EthernetPath the path struct for its child "hw-mac-address". +func (n *Interface_EthernetPath) HwMacAddress() *Interface_Ethernet_HwMacAddressPath { + return &Interface_Ethernet_HwMacAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "hw-mac-address"}, map[string]interface{}{}, @@ -44548,9 +44762,9 @@ func (n *Interface_Ethernet) HwMacAddress() *Interface_Ethernet_HwMacAddress { } } -// HwMacAddress returns from Interface_EthernetAny the path struct for its child "hw-mac-address". -func (n *Interface_EthernetAny) HwMacAddress() *Interface_Ethernet_HwMacAddressAny { - return &Interface_Ethernet_HwMacAddressAny{ +// HwMacAddress returns from Interface_EthernetPathAny the path struct for its child "hw-mac-address". +func (n *Interface_EthernetPathAny) HwMacAddress() *Interface_Ethernet_HwMacAddressPathAny { + return &Interface_Ethernet_HwMacAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hw-mac-address"}, map[string]interface{}{}, @@ -44559,31 +44773,31 @@ func (n *Interface_EthernetAny) HwMacAddress() *Interface_Ethernet_HwMacAddressA } } -// MacAddress returns from Interface_Ethernet the path struct for its child "mac-address". -func (n *Interface_Ethernet) MacAddress() *Interface_Ethernet_MacAddress { - return &Interface_Ethernet_MacAddress{ +// MacAddress returns from Interface_EthernetPath the path struct for its child "mac-address". +func (n *Interface_EthernetPath) MacAddress() *Interface_Ethernet_MacAddressPath { + return &Interface_Ethernet_MacAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// MacAddress returns from Interface_EthernetAny the path struct for its child "mac-address". -func (n *Interface_EthernetAny) MacAddress() *Interface_Ethernet_MacAddressAny { - return &Interface_Ethernet_MacAddressAny{ +// MacAddress returns from Interface_EthernetPathAny the path struct for its child "mac-address". +func (n *Interface_EthernetPathAny) MacAddress() *Interface_Ethernet_MacAddressPathAny { + return &Interface_Ethernet_MacAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// NegotiatedDuplexMode returns from Interface_Ethernet the path struct for its child "negotiated-duplex-mode". -func (n *Interface_Ethernet) NegotiatedDuplexMode() *Interface_Ethernet_NegotiatedDuplexMode { - return &Interface_Ethernet_NegotiatedDuplexMode{ +// NegotiatedDuplexMode returns from Interface_EthernetPath the path struct for its child "negotiated-duplex-mode". +func (n *Interface_EthernetPath) NegotiatedDuplexMode() *Interface_Ethernet_NegotiatedDuplexModePath { + return &Interface_Ethernet_NegotiatedDuplexModePath{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-duplex-mode"}, map[string]interface{}{}, @@ -44592,9 +44806,9 @@ func (n *Interface_Ethernet) NegotiatedDuplexMode() *Interface_Ethernet_Negotiat } } -// NegotiatedDuplexMode returns from Interface_EthernetAny the path struct for its child "negotiated-duplex-mode". -func (n *Interface_EthernetAny) NegotiatedDuplexMode() *Interface_Ethernet_NegotiatedDuplexModeAny { - return &Interface_Ethernet_NegotiatedDuplexModeAny{ +// NegotiatedDuplexMode returns from Interface_EthernetPathAny the path struct for its child "negotiated-duplex-mode". +func (n *Interface_EthernetPathAny) NegotiatedDuplexMode() *Interface_Ethernet_NegotiatedDuplexModePathAny { + return &Interface_Ethernet_NegotiatedDuplexModePathAny{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-duplex-mode"}, map[string]interface{}{}, @@ -44603,9 +44817,9 @@ func (n *Interface_EthernetAny) NegotiatedDuplexMode() *Interface_Ethernet_Negot } } -// NegotiatedPortSpeed returns from Interface_Ethernet the path struct for its child "negotiated-port-speed". -func (n *Interface_Ethernet) NegotiatedPortSpeed() *Interface_Ethernet_NegotiatedPortSpeed { - return &Interface_Ethernet_NegotiatedPortSpeed{ +// NegotiatedPortSpeed returns from Interface_EthernetPath the path struct for its child "negotiated-port-speed". +func (n *Interface_EthernetPath) NegotiatedPortSpeed() *Interface_Ethernet_NegotiatedPortSpeedPath { + return &Interface_Ethernet_NegotiatedPortSpeedPath{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-port-speed"}, map[string]interface{}{}, @@ -44614,9 +44828,9 @@ func (n *Interface_Ethernet) NegotiatedPortSpeed() *Interface_Ethernet_Negotiate } } -// NegotiatedPortSpeed returns from Interface_EthernetAny the path struct for its child "negotiated-port-speed". -func (n *Interface_EthernetAny) NegotiatedPortSpeed() *Interface_Ethernet_NegotiatedPortSpeedAny { - return &Interface_Ethernet_NegotiatedPortSpeedAny{ +// NegotiatedPortSpeed returns from Interface_EthernetPathAny the path struct for its child "negotiated-port-speed". +func (n *Interface_EthernetPathAny) NegotiatedPortSpeed() *Interface_Ethernet_NegotiatedPortSpeedPathAny { + return &Interface_Ethernet_NegotiatedPortSpeedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-port-speed"}, map[string]interface{}{}, @@ -44625,31 +44839,31 @@ func (n *Interface_EthernetAny) NegotiatedPortSpeed() *Interface_Ethernet_Negoti } } -// PortSpeed returns from Interface_Ethernet the path struct for its child "port-speed". -func (n *Interface_Ethernet) PortSpeed() *Interface_Ethernet_PortSpeed { - return &Interface_Ethernet_PortSpeed{ +// PortSpeed returns from Interface_EthernetPath the path struct for its child "port-speed". +func (n *Interface_EthernetPath) PortSpeed() *Interface_Ethernet_PortSpeedPath { + return &Interface_Ethernet_PortSpeedPath{ NodePath: ygot.NewNodePath( - []string{"state", "port-speed"}, + []string{"config", "port-speed"}, map[string]interface{}{}, n, ), } } -// PortSpeed returns from Interface_EthernetAny the path struct for its child "port-speed". -func (n *Interface_EthernetAny) PortSpeed() *Interface_Ethernet_PortSpeedAny { - return &Interface_Ethernet_PortSpeedAny{ +// PortSpeed returns from Interface_EthernetPathAny the path struct for its child "port-speed". +func (n *Interface_EthernetPathAny) PortSpeed() *Interface_Ethernet_PortSpeedPathAny { + return &Interface_Ethernet_PortSpeedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port-speed"}, + []string{"config", "port-speed"}, map[string]interface{}{}, n, ), } } -// SwitchedVlan returns from Interface_Ethernet the path struct for its child "switched-vlan". -func (n *Interface_Ethernet) SwitchedVlan() *Interface_Ethernet_SwitchedVlan { - return &Interface_Ethernet_SwitchedVlan{ +// SwitchedVlan returns from Interface_EthernetPath the path struct for its child "switched-vlan". +func (n *Interface_EthernetPath) SwitchedVlan() *Interface_Ethernet_SwitchedVlanPath { + return &Interface_Ethernet_SwitchedVlanPath{ NodePath: ygot.NewNodePath( []string{"switched-vlan"}, map[string]interface{}{}, @@ -44658,9 +44872,9 @@ func (n *Interface_Ethernet) SwitchedVlan() *Interface_Ethernet_SwitchedVlan { } } -// SwitchedVlan returns from Interface_EthernetAny the path struct for its child "switched-vlan". -func (n *Interface_EthernetAny) SwitchedVlan() *Interface_Ethernet_SwitchedVlanAny { - return &Interface_Ethernet_SwitchedVlanAny{ +// SwitchedVlan returns from Interface_EthernetPathAny the path struct for its child "switched-vlan". +func (n *Interface_EthernetPathAny) SwitchedVlan() *Interface_Ethernet_SwitchedVlanPathAny { + return &Interface_Ethernet_SwitchedVlanPathAny{ NodePath: ygot.NewNodePath( []string{"switched-vlan"}, map[string]interface{}{}, @@ -44669,139 +44883,139 @@ func (n *Interface_EthernetAny) SwitchedVlan() *Interface_Ethernet_SwitchedVlanA } } -// Interface_Ethernet_Counters represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters YANG schema element. -type Interface_Ethernet_Counters struct { +// Interface_Ethernet_CountersPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters YANG schema element. +type Interface_Ethernet_CountersPath struct { *ygot.NodePath } -// Interface_Ethernet_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters YANG schema element. -type Interface_Ethernet_CountersAny struct { +// Interface_Ethernet_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters YANG schema element. +type Interface_Ethernet_CountersPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_In_8021QFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-8021q-frames YANG schema element. -type Interface_Ethernet_Counters_In_8021QFrames struct { +// Interface_Ethernet_Counters_In_8021QFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-8021q-frames YANG schema element. +type Interface_Ethernet_Counters_In_8021QFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_In_8021QFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-8021q-frames YANG schema element. -type Interface_Ethernet_Counters_In_8021QFramesAny struct { +// Interface_Ethernet_Counters_In_8021QFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-8021q-frames YANG schema element. +type Interface_Ethernet_Counters_In_8021QFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InBlockErrors represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-block-errors YANG schema element. -type Interface_Ethernet_Counters_InBlockErrors struct { +// Interface_Ethernet_Counters_InBlockErrorsPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-block-errors YANG schema element. +type Interface_Ethernet_Counters_InBlockErrorsPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InBlockErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-block-errors YANG schema element. -type Interface_Ethernet_Counters_InBlockErrorsAny struct { +// Interface_Ethernet_Counters_InBlockErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-block-errors YANG schema element. +type Interface_Ethernet_Counters_InBlockErrorsPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InCrcErrors represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-crc-errors YANG schema element. -type Interface_Ethernet_Counters_InCrcErrors struct { +// Interface_Ethernet_Counters_InCrcErrorsPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-crc-errors YANG schema element. +type Interface_Ethernet_Counters_InCrcErrorsPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InCrcErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-crc-errors YANG schema element. -type Interface_Ethernet_Counters_InCrcErrorsAny struct { +// Interface_Ethernet_Counters_InCrcErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-crc-errors YANG schema element. +type Interface_Ethernet_Counters_InCrcErrorsPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InFragmentFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-fragment-frames YANG schema element. -type Interface_Ethernet_Counters_InFragmentFrames struct { +// Interface_Ethernet_Counters_InFragmentFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-fragment-frames YANG schema element. +type Interface_Ethernet_Counters_InFragmentFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InFragmentFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-fragment-frames YANG schema element. -type Interface_Ethernet_Counters_InFragmentFramesAny struct { +// Interface_Ethernet_Counters_InFragmentFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-fragment-frames YANG schema element. +type Interface_Ethernet_Counters_InFragmentFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InJabberFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-jabber-frames YANG schema element. -type Interface_Ethernet_Counters_InJabberFrames struct { +// Interface_Ethernet_Counters_InJabberFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-jabber-frames YANG schema element. +type Interface_Ethernet_Counters_InJabberFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InJabberFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-jabber-frames YANG schema element. -type Interface_Ethernet_Counters_InJabberFramesAny struct { +// Interface_Ethernet_Counters_InJabberFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-jabber-frames YANG schema element. +type Interface_Ethernet_Counters_InJabberFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InMacControlFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-control-frames YANG schema element. -type Interface_Ethernet_Counters_InMacControlFrames struct { +// Interface_Ethernet_Counters_InMacControlFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-control-frames YANG schema element. +type Interface_Ethernet_Counters_InMacControlFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InMacControlFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-control-frames YANG schema element. -type Interface_Ethernet_Counters_InMacControlFramesAny struct { +// Interface_Ethernet_Counters_InMacControlFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-control-frames YANG schema element. +type Interface_Ethernet_Counters_InMacControlFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InMacPauseFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-pause-frames YANG schema element. -type Interface_Ethernet_Counters_InMacPauseFrames struct { +// Interface_Ethernet_Counters_InMacPauseFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-pause-frames YANG schema element. +type Interface_Ethernet_Counters_InMacPauseFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InMacPauseFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-pause-frames YANG schema element. -type Interface_Ethernet_Counters_InMacPauseFramesAny struct { +// Interface_Ethernet_Counters_InMacPauseFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-mac-pause-frames YANG schema element. +type Interface_Ethernet_Counters_InMacPauseFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InOversizeFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-oversize-frames YANG schema element. -type Interface_Ethernet_Counters_InOversizeFrames struct { +// Interface_Ethernet_Counters_InOversizeFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-oversize-frames YANG schema element. +type Interface_Ethernet_Counters_InOversizeFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InOversizeFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-oversize-frames YANG schema element. -type Interface_Ethernet_Counters_InOversizeFramesAny struct { +// Interface_Ethernet_Counters_InOversizeFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-oversize-frames YANG schema element. +type Interface_Ethernet_Counters_InOversizeFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InUndersizeFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-undersize-frames YANG schema element. -type Interface_Ethernet_Counters_InUndersizeFrames struct { +// Interface_Ethernet_Counters_InUndersizeFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-undersize-frames YANG schema element. +type Interface_Ethernet_Counters_InUndersizeFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_InUndersizeFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-undersize-frames YANG schema element. -type Interface_Ethernet_Counters_InUndersizeFramesAny struct { +// Interface_Ethernet_Counters_InUndersizeFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/in-undersize-frames YANG schema element. +type Interface_Ethernet_Counters_InUndersizeFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_Out_8021QFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-8021q-frames YANG schema element. -type Interface_Ethernet_Counters_Out_8021QFrames struct { +// Interface_Ethernet_Counters_Out_8021QFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-8021q-frames YANG schema element. +type Interface_Ethernet_Counters_Out_8021QFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_Out_8021QFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-8021q-frames YANG schema element. -type Interface_Ethernet_Counters_Out_8021QFramesAny struct { +// Interface_Ethernet_Counters_Out_8021QFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-8021q-frames YANG schema element. +type Interface_Ethernet_Counters_Out_8021QFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_OutMacControlFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-control-frames YANG schema element. -type Interface_Ethernet_Counters_OutMacControlFrames struct { +// Interface_Ethernet_Counters_OutMacControlFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-control-frames YANG schema element. +type Interface_Ethernet_Counters_OutMacControlFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_OutMacControlFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-control-frames YANG schema element. -type Interface_Ethernet_Counters_OutMacControlFramesAny struct { +// Interface_Ethernet_Counters_OutMacControlFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-control-frames YANG schema element. +type Interface_Ethernet_Counters_OutMacControlFramesPathAny struct { *ygot.NodePath } -// Interface_Ethernet_Counters_OutMacPauseFrames represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-pause-frames YANG schema element. -type Interface_Ethernet_Counters_OutMacPauseFrames struct { +// Interface_Ethernet_Counters_OutMacPauseFramesPath represents the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-pause-frames YANG schema element. +type Interface_Ethernet_Counters_OutMacPauseFramesPath struct { *ygot.NodePath } -// Interface_Ethernet_Counters_OutMacPauseFramesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-pause-frames YANG schema element. -type Interface_Ethernet_Counters_OutMacPauseFramesAny struct { +// Interface_Ethernet_Counters_OutMacPauseFramesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/state/counters/out-mac-pause-frames YANG schema element. +type Interface_Ethernet_Counters_OutMacPauseFramesPathAny struct { *ygot.NodePath } -// In_8021QFrames returns from Interface_Ethernet_Counters the path struct for its child "in-8021q-frames". -func (n *Interface_Ethernet_Counters) In_8021QFrames() *Interface_Ethernet_Counters_In_8021QFrames { - return &Interface_Ethernet_Counters_In_8021QFrames{ +// In_8021QFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-8021q-frames". +func (n *Interface_Ethernet_CountersPath) In_8021QFrames() *Interface_Ethernet_Counters_In_8021QFramesPath { + return &Interface_Ethernet_Counters_In_8021QFramesPath{ NodePath: ygot.NewNodePath( []string{"in-8021q-frames"}, map[string]interface{}{}, @@ -44810,9 +45024,9 @@ func (n *Interface_Ethernet_Counters) In_8021QFrames() *Interface_Ethernet_Count } } -// In_8021QFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-8021q-frames". -func (n *Interface_Ethernet_CountersAny) In_8021QFrames() *Interface_Ethernet_Counters_In_8021QFramesAny { - return &Interface_Ethernet_Counters_In_8021QFramesAny{ +// In_8021QFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-8021q-frames". +func (n *Interface_Ethernet_CountersPathAny) In_8021QFrames() *Interface_Ethernet_Counters_In_8021QFramesPathAny { + return &Interface_Ethernet_Counters_In_8021QFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-8021q-frames"}, map[string]interface{}{}, @@ -44821,9 +45035,9 @@ func (n *Interface_Ethernet_CountersAny) In_8021QFrames() *Interface_Ethernet_Co } } -// InBlockErrors returns from Interface_Ethernet_Counters the path struct for its child "in-block-errors". -func (n *Interface_Ethernet_Counters) InBlockErrors() *Interface_Ethernet_Counters_InBlockErrors { - return &Interface_Ethernet_Counters_InBlockErrors{ +// InBlockErrors returns from Interface_Ethernet_CountersPath the path struct for its child "in-block-errors". +func (n *Interface_Ethernet_CountersPath) InBlockErrors() *Interface_Ethernet_Counters_InBlockErrorsPath { + return &Interface_Ethernet_Counters_InBlockErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-block-errors"}, map[string]interface{}{}, @@ -44832,9 +45046,9 @@ func (n *Interface_Ethernet_Counters) InBlockErrors() *Interface_Ethernet_Counte } } -// InBlockErrors returns from Interface_Ethernet_CountersAny the path struct for its child "in-block-errors". -func (n *Interface_Ethernet_CountersAny) InBlockErrors() *Interface_Ethernet_Counters_InBlockErrorsAny { - return &Interface_Ethernet_Counters_InBlockErrorsAny{ +// InBlockErrors returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-block-errors". +func (n *Interface_Ethernet_CountersPathAny) InBlockErrors() *Interface_Ethernet_Counters_InBlockErrorsPathAny { + return &Interface_Ethernet_Counters_InBlockErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-block-errors"}, map[string]interface{}{}, @@ -44843,9 +45057,9 @@ func (n *Interface_Ethernet_CountersAny) InBlockErrors() *Interface_Ethernet_Cou } } -// InCrcErrors returns from Interface_Ethernet_Counters the path struct for its child "in-crc-errors". -func (n *Interface_Ethernet_Counters) InCrcErrors() *Interface_Ethernet_Counters_InCrcErrors { - return &Interface_Ethernet_Counters_InCrcErrors{ +// InCrcErrors returns from Interface_Ethernet_CountersPath the path struct for its child "in-crc-errors". +func (n *Interface_Ethernet_CountersPath) InCrcErrors() *Interface_Ethernet_Counters_InCrcErrorsPath { + return &Interface_Ethernet_Counters_InCrcErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-crc-errors"}, map[string]interface{}{}, @@ -44854,9 +45068,9 @@ func (n *Interface_Ethernet_Counters) InCrcErrors() *Interface_Ethernet_Counters } } -// InCrcErrors returns from Interface_Ethernet_CountersAny the path struct for its child "in-crc-errors". -func (n *Interface_Ethernet_CountersAny) InCrcErrors() *Interface_Ethernet_Counters_InCrcErrorsAny { - return &Interface_Ethernet_Counters_InCrcErrorsAny{ +// InCrcErrors returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-crc-errors". +func (n *Interface_Ethernet_CountersPathAny) InCrcErrors() *Interface_Ethernet_Counters_InCrcErrorsPathAny { + return &Interface_Ethernet_Counters_InCrcErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-crc-errors"}, map[string]interface{}{}, @@ -44865,9 +45079,9 @@ func (n *Interface_Ethernet_CountersAny) InCrcErrors() *Interface_Ethernet_Count } } -// InFragmentFrames returns from Interface_Ethernet_Counters the path struct for its child "in-fragment-frames". -func (n *Interface_Ethernet_Counters) InFragmentFrames() *Interface_Ethernet_Counters_InFragmentFrames { - return &Interface_Ethernet_Counters_InFragmentFrames{ +// InFragmentFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-fragment-frames". +func (n *Interface_Ethernet_CountersPath) InFragmentFrames() *Interface_Ethernet_Counters_InFragmentFramesPath { + return &Interface_Ethernet_Counters_InFragmentFramesPath{ NodePath: ygot.NewNodePath( []string{"in-fragment-frames"}, map[string]interface{}{}, @@ -44876,9 +45090,9 @@ func (n *Interface_Ethernet_Counters) InFragmentFrames() *Interface_Ethernet_Cou } } -// InFragmentFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-fragment-frames". -func (n *Interface_Ethernet_CountersAny) InFragmentFrames() *Interface_Ethernet_Counters_InFragmentFramesAny { - return &Interface_Ethernet_Counters_InFragmentFramesAny{ +// InFragmentFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-fragment-frames". +func (n *Interface_Ethernet_CountersPathAny) InFragmentFrames() *Interface_Ethernet_Counters_InFragmentFramesPathAny { + return &Interface_Ethernet_Counters_InFragmentFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-fragment-frames"}, map[string]interface{}{}, @@ -44887,9 +45101,9 @@ func (n *Interface_Ethernet_CountersAny) InFragmentFrames() *Interface_Ethernet_ } } -// InJabberFrames returns from Interface_Ethernet_Counters the path struct for its child "in-jabber-frames". -func (n *Interface_Ethernet_Counters) InJabberFrames() *Interface_Ethernet_Counters_InJabberFrames { - return &Interface_Ethernet_Counters_InJabberFrames{ +// InJabberFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-jabber-frames". +func (n *Interface_Ethernet_CountersPath) InJabberFrames() *Interface_Ethernet_Counters_InJabberFramesPath { + return &Interface_Ethernet_Counters_InJabberFramesPath{ NodePath: ygot.NewNodePath( []string{"in-jabber-frames"}, map[string]interface{}{}, @@ -44898,9 +45112,9 @@ func (n *Interface_Ethernet_Counters) InJabberFrames() *Interface_Ethernet_Count } } -// InJabberFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-jabber-frames". -func (n *Interface_Ethernet_CountersAny) InJabberFrames() *Interface_Ethernet_Counters_InJabberFramesAny { - return &Interface_Ethernet_Counters_InJabberFramesAny{ +// InJabberFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-jabber-frames". +func (n *Interface_Ethernet_CountersPathAny) InJabberFrames() *Interface_Ethernet_Counters_InJabberFramesPathAny { + return &Interface_Ethernet_Counters_InJabberFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-jabber-frames"}, map[string]interface{}{}, @@ -44909,9 +45123,9 @@ func (n *Interface_Ethernet_CountersAny) InJabberFrames() *Interface_Ethernet_Co } } -// InMacControlFrames returns from Interface_Ethernet_Counters the path struct for its child "in-mac-control-frames". -func (n *Interface_Ethernet_Counters) InMacControlFrames() *Interface_Ethernet_Counters_InMacControlFrames { - return &Interface_Ethernet_Counters_InMacControlFrames{ +// InMacControlFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-mac-control-frames". +func (n *Interface_Ethernet_CountersPath) InMacControlFrames() *Interface_Ethernet_Counters_InMacControlFramesPath { + return &Interface_Ethernet_Counters_InMacControlFramesPath{ NodePath: ygot.NewNodePath( []string{"in-mac-control-frames"}, map[string]interface{}{}, @@ -44920,9 +45134,9 @@ func (n *Interface_Ethernet_Counters) InMacControlFrames() *Interface_Ethernet_C } } -// InMacControlFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-mac-control-frames". -func (n *Interface_Ethernet_CountersAny) InMacControlFrames() *Interface_Ethernet_Counters_InMacControlFramesAny { - return &Interface_Ethernet_Counters_InMacControlFramesAny{ +// InMacControlFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-mac-control-frames". +func (n *Interface_Ethernet_CountersPathAny) InMacControlFrames() *Interface_Ethernet_Counters_InMacControlFramesPathAny { + return &Interface_Ethernet_Counters_InMacControlFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-mac-control-frames"}, map[string]interface{}{}, @@ -44931,9 +45145,9 @@ func (n *Interface_Ethernet_CountersAny) InMacControlFrames() *Interface_Etherne } } -// InMacPauseFrames returns from Interface_Ethernet_Counters the path struct for its child "in-mac-pause-frames". -func (n *Interface_Ethernet_Counters) InMacPauseFrames() *Interface_Ethernet_Counters_InMacPauseFrames { - return &Interface_Ethernet_Counters_InMacPauseFrames{ +// InMacPauseFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-mac-pause-frames". +func (n *Interface_Ethernet_CountersPath) InMacPauseFrames() *Interface_Ethernet_Counters_InMacPauseFramesPath { + return &Interface_Ethernet_Counters_InMacPauseFramesPath{ NodePath: ygot.NewNodePath( []string{"in-mac-pause-frames"}, map[string]interface{}{}, @@ -44942,9 +45156,9 @@ func (n *Interface_Ethernet_Counters) InMacPauseFrames() *Interface_Ethernet_Cou } } -// InMacPauseFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-mac-pause-frames". -func (n *Interface_Ethernet_CountersAny) InMacPauseFrames() *Interface_Ethernet_Counters_InMacPauseFramesAny { - return &Interface_Ethernet_Counters_InMacPauseFramesAny{ +// InMacPauseFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-mac-pause-frames". +func (n *Interface_Ethernet_CountersPathAny) InMacPauseFrames() *Interface_Ethernet_Counters_InMacPauseFramesPathAny { + return &Interface_Ethernet_Counters_InMacPauseFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-mac-pause-frames"}, map[string]interface{}{}, @@ -44953,9 +45167,9 @@ func (n *Interface_Ethernet_CountersAny) InMacPauseFrames() *Interface_Ethernet_ } } -// InOversizeFrames returns from Interface_Ethernet_Counters the path struct for its child "in-oversize-frames". -func (n *Interface_Ethernet_Counters) InOversizeFrames() *Interface_Ethernet_Counters_InOversizeFrames { - return &Interface_Ethernet_Counters_InOversizeFrames{ +// InOversizeFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-oversize-frames". +func (n *Interface_Ethernet_CountersPath) InOversizeFrames() *Interface_Ethernet_Counters_InOversizeFramesPath { + return &Interface_Ethernet_Counters_InOversizeFramesPath{ NodePath: ygot.NewNodePath( []string{"in-oversize-frames"}, map[string]interface{}{}, @@ -44964,9 +45178,9 @@ func (n *Interface_Ethernet_Counters) InOversizeFrames() *Interface_Ethernet_Cou } } -// InOversizeFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-oversize-frames". -func (n *Interface_Ethernet_CountersAny) InOversizeFrames() *Interface_Ethernet_Counters_InOversizeFramesAny { - return &Interface_Ethernet_Counters_InOversizeFramesAny{ +// InOversizeFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-oversize-frames". +func (n *Interface_Ethernet_CountersPathAny) InOversizeFrames() *Interface_Ethernet_Counters_InOversizeFramesPathAny { + return &Interface_Ethernet_Counters_InOversizeFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-oversize-frames"}, map[string]interface{}{}, @@ -44975,9 +45189,9 @@ func (n *Interface_Ethernet_CountersAny) InOversizeFrames() *Interface_Ethernet_ } } -// InUndersizeFrames returns from Interface_Ethernet_Counters the path struct for its child "in-undersize-frames". -func (n *Interface_Ethernet_Counters) InUndersizeFrames() *Interface_Ethernet_Counters_InUndersizeFrames { - return &Interface_Ethernet_Counters_InUndersizeFrames{ +// InUndersizeFrames returns from Interface_Ethernet_CountersPath the path struct for its child "in-undersize-frames". +func (n *Interface_Ethernet_CountersPath) InUndersizeFrames() *Interface_Ethernet_Counters_InUndersizeFramesPath { + return &Interface_Ethernet_Counters_InUndersizeFramesPath{ NodePath: ygot.NewNodePath( []string{"in-undersize-frames"}, map[string]interface{}{}, @@ -44986,9 +45200,9 @@ func (n *Interface_Ethernet_Counters) InUndersizeFrames() *Interface_Ethernet_Co } } -// InUndersizeFrames returns from Interface_Ethernet_CountersAny the path struct for its child "in-undersize-frames". -func (n *Interface_Ethernet_CountersAny) InUndersizeFrames() *Interface_Ethernet_Counters_InUndersizeFramesAny { - return &Interface_Ethernet_Counters_InUndersizeFramesAny{ +// InUndersizeFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "in-undersize-frames". +func (n *Interface_Ethernet_CountersPathAny) InUndersizeFrames() *Interface_Ethernet_Counters_InUndersizeFramesPathAny { + return &Interface_Ethernet_Counters_InUndersizeFramesPathAny{ NodePath: ygot.NewNodePath( []string{"in-undersize-frames"}, map[string]interface{}{}, @@ -44997,9 +45211,9 @@ func (n *Interface_Ethernet_CountersAny) InUndersizeFrames() *Interface_Ethernet } } -// Out_8021QFrames returns from Interface_Ethernet_Counters the path struct for its child "out-8021q-frames". -func (n *Interface_Ethernet_Counters) Out_8021QFrames() *Interface_Ethernet_Counters_Out_8021QFrames { - return &Interface_Ethernet_Counters_Out_8021QFrames{ +// Out_8021QFrames returns from Interface_Ethernet_CountersPath the path struct for its child "out-8021q-frames". +func (n *Interface_Ethernet_CountersPath) Out_8021QFrames() *Interface_Ethernet_Counters_Out_8021QFramesPath { + return &Interface_Ethernet_Counters_Out_8021QFramesPath{ NodePath: ygot.NewNodePath( []string{"out-8021q-frames"}, map[string]interface{}{}, @@ -45008,9 +45222,9 @@ func (n *Interface_Ethernet_Counters) Out_8021QFrames() *Interface_Ethernet_Coun } } -// Out_8021QFrames returns from Interface_Ethernet_CountersAny the path struct for its child "out-8021q-frames". -func (n *Interface_Ethernet_CountersAny) Out_8021QFrames() *Interface_Ethernet_Counters_Out_8021QFramesAny { - return &Interface_Ethernet_Counters_Out_8021QFramesAny{ +// Out_8021QFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "out-8021q-frames". +func (n *Interface_Ethernet_CountersPathAny) Out_8021QFrames() *Interface_Ethernet_Counters_Out_8021QFramesPathAny { + return &Interface_Ethernet_Counters_Out_8021QFramesPathAny{ NodePath: ygot.NewNodePath( []string{"out-8021q-frames"}, map[string]interface{}{}, @@ -45019,9 +45233,9 @@ func (n *Interface_Ethernet_CountersAny) Out_8021QFrames() *Interface_Ethernet_C } } -// OutMacControlFrames returns from Interface_Ethernet_Counters the path struct for its child "out-mac-control-frames". -func (n *Interface_Ethernet_Counters) OutMacControlFrames() *Interface_Ethernet_Counters_OutMacControlFrames { - return &Interface_Ethernet_Counters_OutMacControlFrames{ +// OutMacControlFrames returns from Interface_Ethernet_CountersPath the path struct for its child "out-mac-control-frames". +func (n *Interface_Ethernet_CountersPath) OutMacControlFrames() *Interface_Ethernet_Counters_OutMacControlFramesPath { + return &Interface_Ethernet_Counters_OutMacControlFramesPath{ NodePath: ygot.NewNodePath( []string{"out-mac-control-frames"}, map[string]interface{}{}, @@ -45030,9 +45244,9 @@ func (n *Interface_Ethernet_Counters) OutMacControlFrames() *Interface_Ethernet_ } } -// OutMacControlFrames returns from Interface_Ethernet_CountersAny the path struct for its child "out-mac-control-frames". -func (n *Interface_Ethernet_CountersAny) OutMacControlFrames() *Interface_Ethernet_Counters_OutMacControlFramesAny { - return &Interface_Ethernet_Counters_OutMacControlFramesAny{ +// OutMacControlFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "out-mac-control-frames". +func (n *Interface_Ethernet_CountersPathAny) OutMacControlFrames() *Interface_Ethernet_Counters_OutMacControlFramesPathAny { + return &Interface_Ethernet_Counters_OutMacControlFramesPathAny{ NodePath: ygot.NewNodePath( []string{"out-mac-control-frames"}, map[string]interface{}{}, @@ -45041,9 +45255,9 @@ func (n *Interface_Ethernet_CountersAny) OutMacControlFrames() *Interface_Ethern } } -// OutMacPauseFrames returns from Interface_Ethernet_Counters the path struct for its child "out-mac-pause-frames". -func (n *Interface_Ethernet_Counters) OutMacPauseFrames() *Interface_Ethernet_Counters_OutMacPauseFrames { - return &Interface_Ethernet_Counters_OutMacPauseFrames{ +// OutMacPauseFrames returns from Interface_Ethernet_CountersPath the path struct for its child "out-mac-pause-frames". +func (n *Interface_Ethernet_CountersPath) OutMacPauseFrames() *Interface_Ethernet_Counters_OutMacPauseFramesPath { + return &Interface_Ethernet_Counters_OutMacPauseFramesPath{ NodePath: ygot.NewNodePath( []string{"out-mac-pause-frames"}, map[string]interface{}{}, @@ -45052,9 +45266,9 @@ func (n *Interface_Ethernet_Counters) OutMacPauseFrames() *Interface_Ethernet_Co } } -// OutMacPauseFrames returns from Interface_Ethernet_CountersAny the path struct for its child "out-mac-pause-frames". -func (n *Interface_Ethernet_CountersAny) OutMacPauseFrames() *Interface_Ethernet_Counters_OutMacPauseFramesAny { - return &Interface_Ethernet_Counters_OutMacPauseFramesAny{ +// OutMacPauseFrames returns from Interface_Ethernet_CountersPathAny the path struct for its child "out-mac-pause-frames". +func (n *Interface_Ethernet_CountersPathAny) OutMacPauseFrames() *Interface_Ethernet_Counters_OutMacPauseFramesPathAny { + return &Interface_Ethernet_Counters_OutMacPauseFramesPathAny{ NodePath: ygot.NewNodePath( []string{"out-mac-pause-frames"}, map[string]interface{}{}, @@ -45063,241 +45277,241 @@ func (n *Interface_Ethernet_CountersAny) OutMacPauseFrames() *Interface_Ethernet } } -// Interface_Ethernet_SwitchedVlan represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlan struct { +// Interface_Ethernet_SwitchedVlanPath represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlanPath struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlanAny struct { +// Interface_Ethernet_SwitchedVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlanPathAny struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_AccessVlan represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/access-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlan_AccessVlan struct { +// Interface_Ethernet_SwitchedVlan_AccessVlanPath represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/access-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlan_AccessVlanPath struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_AccessVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/access-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlan_AccessVlanAny struct { +// Interface_Ethernet_SwitchedVlan_AccessVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/access-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlan_AccessVlanPathAny struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_InterfaceMode represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/interface-mode YANG schema element. -type Interface_Ethernet_SwitchedVlan_InterfaceMode struct { +// Interface_Ethernet_SwitchedVlan_InterfaceModePath represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/interface-mode YANG schema element. +type Interface_Ethernet_SwitchedVlan_InterfaceModePath struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_InterfaceModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/interface-mode YANG schema element. -type Interface_Ethernet_SwitchedVlan_InterfaceModeAny struct { +// Interface_Ethernet_SwitchedVlan_InterfaceModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/interface-mode YANG schema element. +type Interface_Ethernet_SwitchedVlan_InterfaceModePathAny struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_NativeVlan represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/native-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlan_NativeVlan struct { +// Interface_Ethernet_SwitchedVlan_NativeVlanPath represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/native-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlan_NativeVlanPath struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_NativeVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/native-vlan YANG schema element. -type Interface_Ethernet_SwitchedVlan_NativeVlanAny struct { +// Interface_Ethernet_SwitchedVlan_NativeVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/native-vlan YANG schema element. +type Interface_Ethernet_SwitchedVlan_NativeVlanPathAny struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_TrunkVlans represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/trunk-vlans YANG schema element. -type Interface_Ethernet_SwitchedVlan_TrunkVlans struct { +// Interface_Ethernet_SwitchedVlan_TrunkVlansPath represents the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/trunk-vlans YANG schema element. +type Interface_Ethernet_SwitchedVlan_TrunkVlansPath struct { *ygot.NodePath } -// Interface_Ethernet_SwitchedVlan_TrunkVlansAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/state/trunk-vlans YANG schema element. -type Interface_Ethernet_SwitchedVlan_TrunkVlansAny struct { +// Interface_Ethernet_SwitchedVlan_TrunkVlansPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/ethernet/switched-vlan/config/trunk-vlans YANG schema element. +type Interface_Ethernet_SwitchedVlan_TrunkVlansPathAny struct { *ygot.NodePath } -// AccessVlan returns from Interface_Ethernet_SwitchedVlan the path struct for its child "access-vlan". -func (n *Interface_Ethernet_SwitchedVlan) AccessVlan() *Interface_Ethernet_SwitchedVlan_AccessVlan { - return &Interface_Ethernet_SwitchedVlan_AccessVlan{ +// AccessVlan returns from Interface_Ethernet_SwitchedVlanPath the path struct for its child "access-vlan". +func (n *Interface_Ethernet_SwitchedVlanPath) AccessVlan() *Interface_Ethernet_SwitchedVlan_AccessVlanPath { + return &Interface_Ethernet_SwitchedVlan_AccessVlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "access-vlan"}, + []string{"config", "access-vlan"}, map[string]interface{}{}, n, ), } } -// AccessVlan returns from Interface_Ethernet_SwitchedVlanAny the path struct for its child "access-vlan". -func (n *Interface_Ethernet_SwitchedVlanAny) AccessVlan() *Interface_Ethernet_SwitchedVlan_AccessVlanAny { - return &Interface_Ethernet_SwitchedVlan_AccessVlanAny{ +// AccessVlan returns from Interface_Ethernet_SwitchedVlanPathAny the path struct for its child "access-vlan". +func (n *Interface_Ethernet_SwitchedVlanPathAny) AccessVlan() *Interface_Ethernet_SwitchedVlan_AccessVlanPathAny { + return &Interface_Ethernet_SwitchedVlan_AccessVlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "access-vlan"}, + []string{"config", "access-vlan"}, map[string]interface{}{}, n, ), } } -// InterfaceMode returns from Interface_Ethernet_SwitchedVlan the path struct for its child "interface-mode". -func (n *Interface_Ethernet_SwitchedVlan) InterfaceMode() *Interface_Ethernet_SwitchedVlan_InterfaceMode { - return &Interface_Ethernet_SwitchedVlan_InterfaceMode{ +// InterfaceMode returns from Interface_Ethernet_SwitchedVlanPath the path struct for its child "interface-mode". +func (n *Interface_Ethernet_SwitchedVlanPath) InterfaceMode() *Interface_Ethernet_SwitchedVlan_InterfaceModePath { + return &Interface_Ethernet_SwitchedVlan_InterfaceModePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-mode"}, + []string{"config", "interface-mode"}, map[string]interface{}{}, n, ), } } -// InterfaceMode returns from Interface_Ethernet_SwitchedVlanAny the path struct for its child "interface-mode". -func (n *Interface_Ethernet_SwitchedVlanAny) InterfaceMode() *Interface_Ethernet_SwitchedVlan_InterfaceModeAny { - return &Interface_Ethernet_SwitchedVlan_InterfaceModeAny{ +// InterfaceMode returns from Interface_Ethernet_SwitchedVlanPathAny the path struct for its child "interface-mode". +func (n *Interface_Ethernet_SwitchedVlanPathAny) InterfaceMode() *Interface_Ethernet_SwitchedVlan_InterfaceModePathAny { + return &Interface_Ethernet_SwitchedVlan_InterfaceModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-mode"}, + []string{"config", "interface-mode"}, map[string]interface{}{}, n, ), } } -// NativeVlan returns from Interface_Ethernet_SwitchedVlan the path struct for its child "native-vlan". -func (n *Interface_Ethernet_SwitchedVlan) NativeVlan() *Interface_Ethernet_SwitchedVlan_NativeVlan { - return &Interface_Ethernet_SwitchedVlan_NativeVlan{ +// NativeVlan returns from Interface_Ethernet_SwitchedVlanPath the path struct for its child "native-vlan". +func (n *Interface_Ethernet_SwitchedVlanPath) NativeVlan() *Interface_Ethernet_SwitchedVlan_NativeVlanPath { + return &Interface_Ethernet_SwitchedVlan_NativeVlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "native-vlan"}, + []string{"config", "native-vlan"}, map[string]interface{}{}, n, ), } } -// NativeVlan returns from Interface_Ethernet_SwitchedVlanAny the path struct for its child "native-vlan". -func (n *Interface_Ethernet_SwitchedVlanAny) NativeVlan() *Interface_Ethernet_SwitchedVlan_NativeVlanAny { - return &Interface_Ethernet_SwitchedVlan_NativeVlanAny{ +// NativeVlan returns from Interface_Ethernet_SwitchedVlanPathAny the path struct for its child "native-vlan". +func (n *Interface_Ethernet_SwitchedVlanPathAny) NativeVlan() *Interface_Ethernet_SwitchedVlan_NativeVlanPathAny { + return &Interface_Ethernet_SwitchedVlan_NativeVlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "native-vlan"}, + []string{"config", "native-vlan"}, map[string]interface{}{}, n, ), } } -// TrunkVlans returns from Interface_Ethernet_SwitchedVlan the path struct for its child "trunk-vlans". -func (n *Interface_Ethernet_SwitchedVlan) TrunkVlans() *Interface_Ethernet_SwitchedVlan_TrunkVlans { - return &Interface_Ethernet_SwitchedVlan_TrunkVlans{ +// TrunkVlans returns from Interface_Ethernet_SwitchedVlanPath the path struct for its child "trunk-vlans". +func (n *Interface_Ethernet_SwitchedVlanPath) TrunkVlans() *Interface_Ethernet_SwitchedVlan_TrunkVlansPath { + return &Interface_Ethernet_SwitchedVlan_TrunkVlansPath{ NodePath: ygot.NewNodePath( - []string{"state", "trunk-vlans"}, + []string{"config", "trunk-vlans"}, map[string]interface{}{}, n, ), } } -// TrunkVlans returns from Interface_Ethernet_SwitchedVlanAny the path struct for its child "trunk-vlans". -func (n *Interface_Ethernet_SwitchedVlanAny) TrunkVlans() *Interface_Ethernet_SwitchedVlan_TrunkVlansAny { - return &Interface_Ethernet_SwitchedVlan_TrunkVlansAny{ +// TrunkVlans returns from Interface_Ethernet_SwitchedVlanPathAny the path struct for its child "trunk-vlans". +func (n *Interface_Ethernet_SwitchedVlanPathAny) TrunkVlans() *Interface_Ethernet_SwitchedVlan_TrunkVlansPathAny { + return &Interface_Ethernet_SwitchedVlan_TrunkVlansPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trunk-vlans"}, + []string{"config", "trunk-vlans"}, map[string]interface{}{}, n, ), } } -// Interface_HoldTime represents the /openconfig-interfaces/interfaces/interface/hold-time YANG schema element. -type Interface_HoldTime struct { +// Interface_HoldTimePath represents the /openconfig-interfaces/interfaces/interface/hold-time YANG schema element. +type Interface_HoldTimePath struct { *ygot.NodePath } -// Interface_HoldTimeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time YANG schema element. -type Interface_HoldTimeAny struct { +// Interface_HoldTimePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time YANG schema element. +type Interface_HoldTimePathAny struct { *ygot.NodePath } -// Interface_HoldTime_Down represents the /openconfig-interfaces/interfaces/interface/hold-time/state/down YANG schema element. -type Interface_HoldTime_Down struct { +// Interface_HoldTime_DownPath represents the /openconfig-interfaces/interfaces/interface/hold-time/config/down YANG schema element. +type Interface_HoldTime_DownPath struct { *ygot.NodePath } -// Interface_HoldTime_DownAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time/state/down YANG schema element. -type Interface_HoldTime_DownAny struct { +// Interface_HoldTime_DownPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time/config/down YANG schema element. +type Interface_HoldTime_DownPathAny struct { *ygot.NodePath } -// Interface_HoldTime_Up represents the /openconfig-interfaces/interfaces/interface/hold-time/state/up YANG schema element. -type Interface_HoldTime_Up struct { +// Interface_HoldTime_UpPath represents the /openconfig-interfaces/interfaces/interface/hold-time/config/up YANG schema element. +type Interface_HoldTime_UpPath struct { *ygot.NodePath } -// Interface_HoldTime_UpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time/state/up YANG schema element. -type Interface_HoldTime_UpAny struct { +// Interface_HoldTime_UpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/hold-time/config/up YANG schema element. +type Interface_HoldTime_UpPathAny struct { *ygot.NodePath } -// Down returns from Interface_HoldTime the path struct for its child "down". -func (n *Interface_HoldTime) Down() *Interface_HoldTime_Down { - return &Interface_HoldTime_Down{ +// Down returns from Interface_HoldTimePath the path struct for its child "down". +func (n *Interface_HoldTimePath) Down() *Interface_HoldTime_DownPath { + return &Interface_HoldTime_DownPath{ NodePath: ygot.NewNodePath( - []string{"state", "down"}, + []string{"config", "down"}, map[string]interface{}{}, n, ), } } -// Down returns from Interface_HoldTimeAny the path struct for its child "down". -func (n *Interface_HoldTimeAny) Down() *Interface_HoldTime_DownAny { - return &Interface_HoldTime_DownAny{ +// Down returns from Interface_HoldTimePathAny the path struct for its child "down". +func (n *Interface_HoldTimePathAny) Down() *Interface_HoldTime_DownPathAny { + return &Interface_HoldTime_DownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "down"}, + []string{"config", "down"}, map[string]interface{}{}, n, ), } } -// Up returns from Interface_HoldTime the path struct for its child "up". -func (n *Interface_HoldTime) Up() *Interface_HoldTime_Up { - return &Interface_HoldTime_Up{ +// Up returns from Interface_HoldTimePath the path struct for its child "up". +func (n *Interface_HoldTimePath) Up() *Interface_HoldTime_UpPath { + return &Interface_HoldTime_UpPath{ NodePath: ygot.NewNodePath( - []string{"state", "up"}, + []string{"config", "up"}, map[string]interface{}{}, n, ), } } -// Up returns from Interface_HoldTimeAny the path struct for its child "up". -func (n *Interface_HoldTimeAny) Up() *Interface_HoldTime_UpAny { - return &Interface_HoldTime_UpAny{ +// Up returns from Interface_HoldTimePathAny the path struct for its child "up". +func (n *Interface_HoldTimePathAny) Up() *Interface_HoldTime_UpPathAny { + return &Interface_HoldTime_UpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "up"}, + []string{"config", "up"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan represents the /openconfig-interfaces/interfaces/interface/routed-vlan YANG schema element. -type Interface_RoutedVlan struct { +// Interface_RoutedVlanPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan YANG schema element. +type Interface_RoutedVlanPath struct { *ygot.NodePath } -// Interface_RoutedVlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan YANG schema element. -type Interface_RoutedVlanAny struct { +// Interface_RoutedVlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan YANG schema element. +type Interface_RoutedVlanPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Vlan represents the /openconfig-interfaces/interfaces/interface/routed-vlan/state/vlan YANG schema element. -type Interface_RoutedVlan_Vlan struct { +// Interface_RoutedVlan_VlanPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/config/vlan YANG schema element. +type Interface_RoutedVlan_VlanPath struct { *ygot.NodePath } -// Interface_RoutedVlan_VlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/state/vlan YANG schema element. -type Interface_RoutedVlan_VlanAny struct { +// Interface_RoutedVlan_VlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/config/vlan YANG schema element. +type Interface_RoutedVlan_VlanPathAny struct { *ygot.NodePath } -// Ipv4 returns from Interface_RoutedVlan the path struct for its child "ipv4". -func (n *Interface_RoutedVlan) Ipv4() *Interface_RoutedVlan_Ipv4 { - return &Interface_RoutedVlan_Ipv4{ +// Ipv4 returns from Interface_RoutedVlanPath the path struct for its child "ipv4". +func (n *Interface_RoutedVlanPath) Ipv4() *Interface_RoutedVlan_Ipv4Path { + return &Interface_RoutedVlan_Ipv4Path{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -45306,9 +45520,9 @@ func (n *Interface_RoutedVlan) Ipv4() *Interface_RoutedVlan_Ipv4 { } } -// Ipv4 returns from Interface_RoutedVlanAny the path struct for its child "ipv4". -func (n *Interface_RoutedVlanAny) Ipv4() *Interface_RoutedVlan_Ipv4Any { - return &Interface_RoutedVlan_Ipv4Any{ +// Ipv4 returns from Interface_RoutedVlanPathAny the path struct for its child "ipv4". +func (n *Interface_RoutedVlanPathAny) Ipv4() *Interface_RoutedVlan_Ipv4PathAny { + return &Interface_RoutedVlan_Ipv4PathAny{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -45317,9 +45531,9 @@ func (n *Interface_RoutedVlanAny) Ipv4() *Interface_RoutedVlan_Ipv4Any { } } -// Ipv6 returns from Interface_RoutedVlan the path struct for its child "ipv6". -func (n *Interface_RoutedVlan) Ipv6() *Interface_RoutedVlan_Ipv6 { - return &Interface_RoutedVlan_Ipv6{ +// Ipv6 returns from Interface_RoutedVlanPath the path struct for its child "ipv6". +func (n *Interface_RoutedVlanPath) Ipv6() *Interface_RoutedVlan_Ipv6Path { + return &Interface_RoutedVlan_Ipv6Path{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -45328,9 +45542,9 @@ func (n *Interface_RoutedVlan) Ipv6() *Interface_RoutedVlan_Ipv6 { } } -// Ipv6 returns from Interface_RoutedVlanAny the path struct for its child "ipv6". -func (n *Interface_RoutedVlanAny) Ipv6() *Interface_RoutedVlan_Ipv6Any { - return &Interface_RoutedVlan_Ipv6Any{ +// Ipv6 returns from Interface_RoutedVlanPathAny the path struct for its child "ipv6". +func (n *Interface_RoutedVlanPathAny) Ipv6() *Interface_RoutedVlan_Ipv6PathAny { + return &Interface_RoutedVlan_Ipv6PathAny{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -45339,71 +45553,71 @@ func (n *Interface_RoutedVlanAny) Ipv6() *Interface_RoutedVlan_Ipv6Any { } } -// Vlan returns from Interface_RoutedVlan the path struct for its child "vlan". -func (n *Interface_RoutedVlan) Vlan() *Interface_RoutedVlan_Vlan { - return &Interface_RoutedVlan_Vlan{ +// Vlan returns from Interface_RoutedVlanPath the path struct for its child "vlan". +func (n *Interface_RoutedVlanPath) Vlan() *Interface_RoutedVlan_VlanPath { + return &Interface_RoutedVlan_VlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// Vlan returns from Interface_RoutedVlanAny the path struct for its child "vlan". -func (n *Interface_RoutedVlanAny) Vlan() *Interface_RoutedVlan_VlanAny { - return &Interface_RoutedVlan_VlanAny{ +// Vlan returns from Interface_RoutedVlanPathAny the path struct for its child "vlan". +func (n *Interface_RoutedVlanPathAny) Vlan() *Interface_RoutedVlan_VlanPathAny { + return &Interface_RoutedVlan_VlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv4 represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4 YANG schema element. -type Interface_RoutedVlan_Ipv4 struct { +// Interface_RoutedVlan_Ipv4Path represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4 YANG schema element. +type Interface_RoutedVlan_Ipv4Path struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4Any represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4 YANG schema element. -type Interface_RoutedVlan_Ipv4Any struct { +// Interface_RoutedVlan_Ipv4PathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4 YANG schema element. +type Interface_RoutedVlan_Ipv4PathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_DhcpClient represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/dhcp-client YANG schema element. -type Interface_RoutedVlan_Ipv4_DhcpClient struct { +// Interface_RoutedVlan_Ipv4_DhcpClientPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/dhcp-client YANG schema element. +type Interface_RoutedVlan_Ipv4_DhcpClientPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_DhcpClientAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/dhcp-client YANG schema element. -type Interface_RoutedVlan_Ipv4_DhcpClientAny struct { +// Interface_RoutedVlan_Ipv4_DhcpClientPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/dhcp-client YANG schema element. +type Interface_RoutedVlan_Ipv4_DhcpClientPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Enabled represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv4_Enabled struct { +// Interface_RoutedVlan_Ipv4_EnabledPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv4_EnabledPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv4_EnabledAny struct { +// Interface_RoutedVlan_Ipv4_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv4_EnabledPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Mtu represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/mtu YANG schema element. -type Interface_RoutedVlan_Ipv4_Mtu struct { +// Interface_RoutedVlan_Ipv4_MtuPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/mtu YANG schema element. +type Interface_RoutedVlan_Ipv4_MtuPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_MtuAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/mtu YANG schema element. -type Interface_RoutedVlan_Ipv4_MtuAny struct { +// Interface_RoutedVlan_Ipv4_MtuPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/config/mtu YANG schema element. +type Interface_RoutedVlan_Ipv4_MtuPathAny struct { *ygot.NodePath } -// AddressAny returns from Interface_RoutedVlan_Ipv4 the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv4) AddressAny() *Interface_RoutedVlan_Ipv4_AddressAny { - return &Interface_RoutedVlan_Ipv4_AddressAny{ +// AddressAny returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv4Path) AddressAny() *Interface_RoutedVlan_Ipv4_AddressPathAny { + return &Interface_RoutedVlan_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -45412,9 +45626,9 @@ func (n *Interface_RoutedVlan_Ipv4) AddressAny() *Interface_RoutedVlan_Ipv4_Addr } } -// AddressAny returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv4Any) AddressAny() *Interface_RoutedVlan_Ipv4_AddressAny { - return &Interface_RoutedVlan_Ipv4_AddressAny{ +// AddressAny returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv4PathAny) AddressAny() *Interface_RoutedVlan_Ipv4_AddressPathAny { + return &Interface_RoutedVlan_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -45423,9 +45637,9 @@ func (n *Interface_RoutedVlan_Ipv4Any) AddressAny() *Interface_RoutedVlan_Ipv4_A } } -// Address returns from Interface_RoutedVlan_Ipv4 the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv4) Address(Ip string) *Interface_RoutedVlan_Ipv4_Address { - return &Interface_RoutedVlan_Ipv4_Address{ +// Address returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv4Path) Address(Ip string) *Interface_RoutedVlan_Ipv4_AddressPath { + return &Interface_RoutedVlan_Ipv4_AddressPath{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -45434,9 +45648,9 @@ func (n *Interface_RoutedVlan_Ipv4) Address(Ip string) *Interface_RoutedVlan_Ipv } } -// Address returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv4Any) Address(Ip string) *Interface_RoutedVlan_Ipv4_AddressAny { - return &Interface_RoutedVlan_Ipv4_AddressAny{ +// Address returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv4PathAny) Address(Ip string) *Interface_RoutedVlan_Ipv4_AddressPathAny { + return &Interface_RoutedVlan_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -45445,9 +45659,9 @@ func (n *Interface_RoutedVlan_Ipv4Any) Address(Ip string) *Interface_RoutedVlan_ } } -// Counters returns from Interface_RoutedVlan_Ipv4 the path struct for its child "counters". -func (n *Interface_RoutedVlan_Ipv4) Counters() *Interface_RoutedVlan_Ipv4_Counters { - return &Interface_RoutedVlan_Ipv4_Counters{ +// Counters returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "counters". +func (n *Interface_RoutedVlan_Ipv4Path) Counters() *Interface_RoutedVlan_Ipv4_CountersPath { + return &Interface_RoutedVlan_Ipv4_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -45456,9 +45670,9 @@ func (n *Interface_RoutedVlan_Ipv4) Counters() *Interface_RoutedVlan_Ipv4_Counte } } -// Counters returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "counters". -func (n *Interface_RoutedVlan_Ipv4Any) Counters() *Interface_RoutedVlan_Ipv4_CountersAny { - return &Interface_RoutedVlan_Ipv4_CountersAny{ +// Counters returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "counters". +func (n *Interface_RoutedVlan_Ipv4PathAny) Counters() *Interface_RoutedVlan_Ipv4_CountersPathAny { + return &Interface_RoutedVlan_Ipv4_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -45467,75 +45681,75 @@ func (n *Interface_RoutedVlan_Ipv4Any) Counters() *Interface_RoutedVlan_Ipv4_Cou } } -// DhcpClient returns from Interface_RoutedVlan_Ipv4 the path struct for its child "dhcp-client". -func (n *Interface_RoutedVlan_Ipv4) DhcpClient() *Interface_RoutedVlan_Ipv4_DhcpClient { - return &Interface_RoutedVlan_Ipv4_DhcpClient{ +// DhcpClient returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "dhcp-client". +func (n *Interface_RoutedVlan_Ipv4Path) DhcpClient() *Interface_RoutedVlan_Ipv4_DhcpClientPath { + return &Interface_RoutedVlan_Ipv4_DhcpClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DhcpClient returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "dhcp-client". -func (n *Interface_RoutedVlan_Ipv4Any) DhcpClient() *Interface_RoutedVlan_Ipv4_DhcpClientAny { - return &Interface_RoutedVlan_Ipv4_DhcpClientAny{ +// DhcpClient returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "dhcp-client". +func (n *Interface_RoutedVlan_Ipv4PathAny) DhcpClient() *Interface_RoutedVlan_Ipv4_DhcpClientPathAny { + return &Interface_RoutedVlan_Ipv4_DhcpClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv4 the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv4) Enabled() *Interface_RoutedVlan_Ipv4_Enabled { - return &Interface_RoutedVlan_Ipv4_Enabled{ +// Enabled returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv4Path) Enabled() *Interface_RoutedVlan_Ipv4_EnabledPath { + return &Interface_RoutedVlan_Ipv4_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv4Any) Enabled() *Interface_RoutedVlan_Ipv4_EnabledAny { - return &Interface_RoutedVlan_Ipv4_EnabledAny{ +// Enabled returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv4PathAny) Enabled() *Interface_RoutedVlan_Ipv4_EnabledPathAny { + return &Interface_RoutedVlan_Ipv4_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_RoutedVlan_Ipv4 the path struct for its child "mtu". -func (n *Interface_RoutedVlan_Ipv4) Mtu() *Interface_RoutedVlan_Ipv4_Mtu { - return &Interface_RoutedVlan_Ipv4_Mtu{ +// Mtu returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "mtu". +func (n *Interface_RoutedVlan_Ipv4Path) Mtu() *Interface_RoutedVlan_Ipv4_MtuPath { + return &Interface_RoutedVlan_Ipv4_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "mtu". -func (n *Interface_RoutedVlan_Ipv4Any) Mtu() *Interface_RoutedVlan_Ipv4_MtuAny { - return &Interface_RoutedVlan_Ipv4_MtuAny{ +// Mtu returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "mtu". +func (n *Interface_RoutedVlan_Ipv4PathAny) Mtu() *Interface_RoutedVlan_Ipv4_MtuPathAny { + return &Interface_RoutedVlan_Ipv4_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from Interface_RoutedVlan_Ipv4 the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv4) NeighborAny() *Interface_RoutedVlan_Ipv4_NeighborAny { - return &Interface_RoutedVlan_Ipv4_NeighborAny{ +// NeighborAny returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv4Path) NeighborAny() *Interface_RoutedVlan_Ipv4_NeighborPathAny { + return &Interface_RoutedVlan_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -45544,9 +45758,9 @@ func (n *Interface_RoutedVlan_Ipv4) NeighborAny() *Interface_RoutedVlan_Ipv4_Nei } } -// NeighborAny returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv4Any) NeighborAny() *Interface_RoutedVlan_Ipv4_NeighborAny { - return &Interface_RoutedVlan_Ipv4_NeighborAny{ +// NeighborAny returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv4PathAny) NeighborAny() *Interface_RoutedVlan_Ipv4_NeighborPathAny { + return &Interface_RoutedVlan_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -45555,9 +45769,9 @@ func (n *Interface_RoutedVlan_Ipv4Any) NeighborAny() *Interface_RoutedVlan_Ipv4_ } } -// Neighbor returns from Interface_RoutedVlan_Ipv4 the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv4) Neighbor(Ip string) *Interface_RoutedVlan_Ipv4_Neighbor { - return &Interface_RoutedVlan_Ipv4_Neighbor{ +// Neighbor returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv4Path) Neighbor(Ip string) *Interface_RoutedVlan_Ipv4_NeighborPath { + return &Interface_RoutedVlan_Ipv4_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -45566,9 +45780,9 @@ func (n *Interface_RoutedVlan_Ipv4) Neighbor(Ip string) *Interface_RoutedVlan_Ip } } -// Neighbor returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv4Any) Neighbor(Ip string) *Interface_RoutedVlan_Ipv4_NeighborAny { - return &Interface_RoutedVlan_Ipv4_NeighborAny{ +// Neighbor returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv4PathAny) Neighbor(Ip string) *Interface_RoutedVlan_Ipv4_NeighborPathAny { + return &Interface_RoutedVlan_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -45577,9 +45791,9 @@ func (n *Interface_RoutedVlan_Ipv4Any) Neighbor(Ip string) *Interface_RoutedVlan } } -// ProxyArp returns from Interface_RoutedVlan_Ipv4 the path struct for its child "proxy-arp". -func (n *Interface_RoutedVlan_Ipv4) ProxyArp() *Interface_RoutedVlan_Ipv4_ProxyArp { - return &Interface_RoutedVlan_Ipv4_ProxyArp{ +// ProxyArp returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "proxy-arp". +func (n *Interface_RoutedVlan_Ipv4Path) ProxyArp() *Interface_RoutedVlan_Ipv4_ProxyArpPath { + return &Interface_RoutedVlan_Ipv4_ProxyArpPath{ NodePath: ygot.NewNodePath( []string{"proxy-arp"}, map[string]interface{}{}, @@ -45588,9 +45802,9 @@ func (n *Interface_RoutedVlan_Ipv4) ProxyArp() *Interface_RoutedVlan_Ipv4_ProxyA } } -// ProxyArp returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "proxy-arp". -func (n *Interface_RoutedVlan_Ipv4Any) ProxyArp() *Interface_RoutedVlan_Ipv4_ProxyArpAny { - return &Interface_RoutedVlan_Ipv4_ProxyArpAny{ +// ProxyArp returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "proxy-arp". +func (n *Interface_RoutedVlan_Ipv4PathAny) ProxyArp() *Interface_RoutedVlan_Ipv4_ProxyArpPathAny { + return &Interface_RoutedVlan_Ipv4_ProxyArpPathAny{ NodePath: ygot.NewNodePath( []string{"proxy-arp"}, map[string]interface{}{}, @@ -45599,9 +45813,9 @@ func (n *Interface_RoutedVlan_Ipv4Any) ProxyArp() *Interface_RoutedVlan_Ipv4_Pro } } -// Unnumbered returns from Interface_RoutedVlan_Ipv4 the path struct for its child "unnumbered". -func (n *Interface_RoutedVlan_Ipv4) Unnumbered() *Interface_RoutedVlan_Ipv4_Unnumbered { - return &Interface_RoutedVlan_Ipv4_Unnumbered{ +// Unnumbered returns from Interface_RoutedVlan_Ipv4Path the path struct for its child "unnumbered". +func (n *Interface_RoutedVlan_Ipv4Path) Unnumbered() *Interface_RoutedVlan_Ipv4_UnnumberedPath { + return &Interface_RoutedVlan_Ipv4_UnnumberedPath{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -45610,9 +45824,9 @@ func (n *Interface_RoutedVlan_Ipv4) Unnumbered() *Interface_RoutedVlan_Ipv4_Unnu } } -// Unnumbered returns from Interface_RoutedVlan_Ipv4Any the path struct for its child "unnumbered". -func (n *Interface_RoutedVlan_Ipv4Any) Unnumbered() *Interface_RoutedVlan_Ipv4_UnnumberedAny { - return &Interface_RoutedVlan_Ipv4_UnnumberedAny{ +// Unnumbered returns from Interface_RoutedVlan_Ipv4PathAny the path struct for its child "unnumbered". +func (n *Interface_RoutedVlan_Ipv4PathAny) Unnumbered() *Interface_RoutedVlan_Ipv4_UnnumberedPathAny { + return &Interface_RoutedVlan_Ipv4_UnnumberedPathAny{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -45621,71 +45835,71 @@ func (n *Interface_RoutedVlan_Ipv4Any) Unnumbered() *Interface_RoutedVlan_Ipv4_U } } -// Interface_RoutedVlan_Ipv4_Address represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address YANG schema element. -type Interface_RoutedVlan_Ipv4_Address struct { +// Interface_RoutedVlan_Ipv4_AddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address YANG schema element. +type Interface_RoutedVlan_Ipv4_AddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_AddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address YANG schema element. -type Interface_RoutedVlan_Ipv4_AddressAny struct { +// Interface_RoutedVlan_Ipv4_AddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address YANG schema element. +type Interface_RoutedVlan_Ipv4_AddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_Ip represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_Ip struct { +// Interface_RoutedVlan_Ipv4_Address_IpPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_IpPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_IpAny struct { +// Interface_RoutedVlan_Ipv4_Address_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_IpPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_Origin represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_Origin struct { +// Interface_RoutedVlan_Ipv4_Address_OriginPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_OriginPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_OriginAny struct { +// Interface_RoutedVlan_Ipv4_Address_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_OriginPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_PrefixLength represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/prefix-length YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_PrefixLength struct { +// Interface_RoutedVlan_Ipv4_Address_PrefixLengthPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/config/prefix-length YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_PrefixLengthPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_PrefixLengthAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/state/prefix-length YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_PrefixLengthAny struct { +// Interface_RoutedVlan_Ipv4_Address_PrefixLengthPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/config/prefix-length YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_PrefixLengthPathAny struct { *ygot.NodePath } -// Ip returns from Interface_RoutedVlan_Ipv4_Address the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv4_Address) Ip() *Interface_RoutedVlan_Ipv4_Address_Ip { - return &Interface_RoutedVlan_Ipv4_Address_Ip{ +// Ip returns from Interface_RoutedVlan_Ipv4_AddressPath the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv4_AddressPath) Ip() *Interface_RoutedVlan_Ipv4_Address_IpPath { + return &Interface_RoutedVlan_Ipv4_Address_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_RoutedVlan_Ipv4_AddressAny the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv4_AddressAny) Ip() *Interface_RoutedVlan_Ipv4_Address_IpAny { - return &Interface_RoutedVlan_Ipv4_Address_IpAny{ +// Ip returns from Interface_RoutedVlan_Ipv4_AddressPathAny the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv4_AddressPathAny) Ip() *Interface_RoutedVlan_Ipv4_Address_IpPathAny { + return &Interface_RoutedVlan_Ipv4_Address_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_RoutedVlan_Ipv4_Address the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv4_Address) Origin() *Interface_RoutedVlan_Ipv4_Address_Origin { - return &Interface_RoutedVlan_Ipv4_Address_Origin{ +// Origin returns from Interface_RoutedVlan_Ipv4_AddressPath the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv4_AddressPath) Origin() *Interface_RoutedVlan_Ipv4_Address_OriginPath { + return &Interface_RoutedVlan_Ipv4_Address_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -45694,9 +45908,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address) Origin() *Interface_RoutedVlan_Ipv4_ } } -// Origin returns from Interface_RoutedVlan_Ipv4_AddressAny the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv4_AddressAny) Origin() *Interface_RoutedVlan_Ipv4_Address_OriginAny { - return &Interface_RoutedVlan_Ipv4_Address_OriginAny{ +// Origin returns from Interface_RoutedVlan_Ipv4_AddressPathAny the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv4_AddressPathAny) Origin() *Interface_RoutedVlan_Ipv4_Address_OriginPathAny { + return &Interface_RoutedVlan_Ipv4_Address_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -45705,31 +45919,31 @@ func (n *Interface_RoutedVlan_Ipv4_AddressAny) Origin() *Interface_RoutedVlan_Ip } } -// PrefixLength returns from Interface_RoutedVlan_Ipv4_Address the path struct for its child "prefix-length". -func (n *Interface_RoutedVlan_Ipv4_Address) PrefixLength() *Interface_RoutedVlan_Ipv4_Address_PrefixLength { - return &Interface_RoutedVlan_Ipv4_Address_PrefixLength{ +// PrefixLength returns from Interface_RoutedVlan_Ipv4_AddressPath the path struct for its child "prefix-length". +func (n *Interface_RoutedVlan_Ipv4_AddressPath) PrefixLength() *Interface_RoutedVlan_Ipv4_Address_PrefixLengthPath { + return &Interface_RoutedVlan_Ipv4_Address_PrefixLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// PrefixLength returns from Interface_RoutedVlan_Ipv4_AddressAny the path struct for its child "prefix-length". -func (n *Interface_RoutedVlan_Ipv4_AddressAny) PrefixLength() *Interface_RoutedVlan_Ipv4_Address_PrefixLengthAny { - return &Interface_RoutedVlan_Ipv4_Address_PrefixLengthAny{ +// PrefixLength returns from Interface_RoutedVlan_Ipv4_AddressPathAny the path struct for its child "prefix-length". +func (n *Interface_RoutedVlan_Ipv4_AddressPathAny) PrefixLength() *Interface_RoutedVlan_Ipv4_Address_PrefixLengthPathAny { + return &Interface_RoutedVlan_Ipv4_Address_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// VrrpGroupAny returns from Interface_RoutedVlan_Ipv4_Address the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv4_Address) VrrpGroupAny() *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_RoutedVlan_Ipv4_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv4_AddressPath) VrrpGroupAny() *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -45738,9 +45952,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address) VrrpGroupAny() *Interface_RoutedVlan } } -// VrrpGroupAny returns from Interface_RoutedVlan_Ipv4_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv4_AddressAny) VrrpGroupAny() *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_RoutedVlan_Ipv4_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv4_AddressPathAny) VrrpGroupAny() *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -45749,9 +45963,9 @@ func (n *Interface_RoutedVlan_Ipv4_AddressAny) VrrpGroupAny() *Interface_RoutedV } } -// VrrpGroup returns from Interface_RoutedVlan_Ipv4_Address the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv4_Address) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv4_Address_VrrpGroup { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup{ +// VrrpGroup returns from Interface_RoutedVlan_Ipv4_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv4_AddressPath) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -45760,9 +45974,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address) VrrpGroup(VirtualRouterId uint8) *In } } -// VrrpGroup returns from Interface_RoutedVlan_Ipv4_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv4_AddressAny) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny{ +// VrrpGroup returns from Interface_RoutedVlan_Ipv4_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv4_AddressPathAny) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -45771,143 +45985,143 @@ func (n *Interface_RoutedVlan_Ipv4_AddressAny) VrrpGroup(VirtualRouterId uint8) } } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptMode represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptMode struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModeAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementInterval represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementInterval struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriority represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriority struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Preempt represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Preempt struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelay represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelay struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Priority represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Priority struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddress represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddress struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterId represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterId struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny struct { *ygot.NodePath } -// AcceptMode returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "accept-mode". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) AcceptMode() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptMode { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptMode{ +// AcceptMode returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "accept-mode". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) AcceptMode() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePath{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AcceptMode returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "accept-mode". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) AcceptMode() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModeAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModeAny{ +// AcceptMode returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "accept-mode". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) AcceptMode() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AcceptModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "advertisement-interval". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) AdvertisementInterval() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementInterval { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementInterval{ +// AdvertisementInterval returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "advertisement-interval". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) AdvertisementInterval() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "advertisement-interval". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) AdvertisementInterval() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny{ +// AdvertisementInterval returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "advertisement-interval". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) AdvertisementInterval() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// CurrentPriority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "current-priority". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) CurrentPriority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriority { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriority{ +// CurrentPriority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "current-priority". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) CurrentPriority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -45916,9 +46130,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) CurrentPriority() *Interfa } } -// CurrentPriority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "current-priority". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) CurrentPriority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityAny{ +// CurrentPriority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "current-priority". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) CurrentPriority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -45927,9 +46141,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) CurrentPriority() *Inte } } -// InterfaceTracking returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "interface-tracking". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) InterfaceTracking() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking{ +// InterfaceTracking returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "interface-tracking". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) InterfaceTracking() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -45938,9 +46152,9 @@ func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) InterfaceTracking() *Inter } } -// InterfaceTracking returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "interface-tracking". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) InterfaceTracking() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny{ +// InterfaceTracking returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "interface-tracking". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) InterfaceTracking() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -45949,323 +46163,323 @@ func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) InterfaceTracking() *In } } -// Preempt returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "preempt". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) Preempt() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Preempt { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Preempt{ +// Preempt returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "preempt". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) Preempt() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// Preempt returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "preempt". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) Preempt() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptAny{ +// Preempt returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "preempt". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) Preempt() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "preempt-delay". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) PreemptDelay() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelay { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelay{ +// PreemptDelay returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "preempt-delay". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) PreemptDelay() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "preempt-delay". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) PreemptDelay() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayAny{ +// PreemptDelay returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "preempt-delay". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) PreemptDelay() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PreemptDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "priority". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) Priority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Priority { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_Priority{ +// Priority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "priority". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) Priority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "priority". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) Priority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityAny{ +// Priority returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "priority". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) Priority() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "virtual-address". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) VirtualAddress() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddress { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddress{ +// VirtualAddress returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "virtual-address". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) VirtualAddress() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "virtual-address". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) VirtualAddress() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressAny{ +// VirtualAddress returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "virtual-address". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) VirtualAddress() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup the path struct for its child "virtual-router-id". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup) VirtualRouterId() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterId { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterId{ +// VirtualRouterId returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath the path struct for its child "virtual-router-id". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPath) VirtualRouterId() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny the path struct for its child "virtual-router-id". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupAny) VirtualRouterId() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdAny{ +// VirtualRouterId returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny the path struct for its child "virtual-router-id". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroupPathAny) VirtualRouterId() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny struct { +// Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny struct { *ygot.NodePath } -// PriorityDecrement returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking the path struct for its child "priority-decrement". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking) PriorityDecrement() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement{ +// PriorityDecrement returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "priority-decrement". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath) PriorityDecrement() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// PriorityDecrement returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "priority-decrement". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny) PriorityDecrement() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny{ +// PriorityDecrement returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "priority-decrement". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny) PriorityDecrement() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking the path struct for its child "track-interface". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking) TrackInterface() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface{ +// TrackInterface returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "track-interface". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPath) TrackInterface() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "track-interface". -func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingAny) TrackInterface() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny { - return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny{ +// TrackInterface returns from Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "track-interface". +func (n *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny) TrackInterface() *Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny { + return &Interface_RoutedVlan_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv4_Counters represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters struct { +// Interface_RoutedVlan_Ipv4_CountersPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters YANG schema element. +type Interface_RoutedVlan_Ipv4_CountersPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters YANG schema element. -type Interface_RoutedVlan_Ipv4_CountersAny struct { +// Interface_RoutedVlan_Ipv4_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters YANG schema element. +type Interface_RoutedVlan_Ipv4_CountersPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InDiscardedPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InErrorPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InErrorPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InErrorPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InForwardedOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InForwardedOctets struct { +// Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InForwardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InForwardedPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InOctets struct { +// Interface_RoutedVlan_Ipv4_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InOctetsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_InPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/in-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutErrorPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutErrorPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctets struct { +// Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutForwardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutForwardedPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutOctets struct { +// Interface_RoutedVlan_Ipv4_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-octets YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutOctetsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-octets YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutPkts struct { +// Interface_RoutedVlan_Ipv4_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-pkts YANG schema element. -type Interface_RoutedVlan_Ipv4_Counters_OutPktsAny struct { +// Interface_RoutedVlan_Ipv4_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/state/counters/out-pkts YANG schema element. +type Interface_RoutedVlan_Ipv4_Counters_OutPktsPathAny struct { *ygot.NodePath } -// InDiscardedPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) InDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InDiscardedPkts { - return &Interface_RoutedVlan_Ipv4_Counters_InDiscardedPkts{ +// InDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -46274,9 +46488,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InDiscardedPkts() *Interface_Routed } } -// InDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsAny{ +// InDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -46285,9 +46499,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InDiscardedPkts() *Interface_Rou } } -// InErrorPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-error-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) InErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_InErrorPkts { - return &Interface_RoutedVlan_Ipv4_Counters_InErrorPkts{ +// InErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-error-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -46296,9 +46510,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InErrorPkts() *Interface_RoutedVlan } } -// InErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-error-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_InErrorPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InErrorPktsAny{ +// InErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-error-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -46307,9 +46521,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InErrorPkts() *Interface_RoutedV } } -// InForwardedOctets returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv4_Counters) InForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_InForwardedOctets { - return &Interface_RoutedVlan_Ipv4_Counters_InForwardedOctets{ +// InForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -46318,9 +46532,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InForwardedOctets() *Interface_Rout } } -// InForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsAny{ +// InForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -46329,9 +46543,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InForwardedOctets() *Interface_R } } -// InForwardedPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) InForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InForwardedPkts { - return &Interface_RoutedVlan_Ipv4_Counters_InForwardedPkts{ +// InForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -46340,9 +46554,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InForwardedPkts() *Interface_Routed } } -// InForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsAny{ +// InForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -46351,9 +46565,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InForwardedPkts() *Interface_Rou } } -// InOctets returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-octets". -func (n *Interface_RoutedVlan_Ipv4_Counters) InOctets() *Interface_RoutedVlan_Ipv4_Counters_InOctets { - return &Interface_RoutedVlan_Ipv4_Counters_InOctets{ +// InOctets returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InOctets() *Interface_RoutedVlan_Ipv4_Counters_InOctetsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -46362,9 +46576,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InOctets() *Interface_RoutedVlan_Ip } } -// InOctets returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-octets". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InOctets() *Interface_RoutedVlan_Ipv4_Counters_InOctetsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InOctetsAny{ +// InOctets returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InOctets() *Interface_RoutedVlan_Ipv4_Counters_InOctetsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -46373,9 +46587,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InOctets() *Interface_RoutedVlan } } -// InPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "in-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) InPkts() *Interface_RoutedVlan_Ipv4_Counters_InPkts { - return &Interface_RoutedVlan_Ipv4_Counters_InPkts{ +// InPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "in-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) InPkts() *Interface_RoutedVlan_Ipv4_Counters_InPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -46384,9 +46598,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) InPkts() *Interface_RoutedVlan_Ipv4 } } -// InPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "in-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) InPkts() *Interface_RoutedVlan_Ipv4_Counters_InPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_InPktsAny{ +// InPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) InPkts() *Interface_RoutedVlan_Ipv4_Counters_InPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -46395,9 +46609,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) InPkts() *Interface_RoutedVlan_I } } -// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPkts { - return &Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPkts{ +// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -46406,9 +46620,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutDiscardedPkts() *Interface_Route } } -// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsAny{ +// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutDiscardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -46417,9 +46631,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutDiscardedPkts() *Interface_Ro } } -// OutErrorPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-error-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_OutErrorPkts { - return &Interface_RoutedVlan_Ipv4_Counters_OutErrorPkts{ +// OutErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-error-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -46428,9 +46642,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutErrorPkts() *Interface_RoutedVla } } -// OutErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-error-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsAny{ +// OutErrorPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-error-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutErrorPkts() *Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -46439,9 +46653,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutErrorPkts() *Interface_Routed } } -// OutForwardedOctets returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctets { - return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctets{ +// OutForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -46450,9 +46664,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutForwardedOctets() *Interface_Rou } } -// OutForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsAny{ +// OutForwardedOctets returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutForwardedOctets() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -46461,9 +46675,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutForwardedOctets() *Interface_ } } -// OutForwardedPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedPkts { - return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedPkts{ +// OutForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -46472,9 +46686,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutForwardedPkts() *Interface_Route } } -// OutForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsAny{ +// OutForwardedPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutForwardedPkts() *Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -46483,9 +46697,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutForwardedPkts() *Interface_Ro } } -// OutOctets returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-octets". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutOctets() *Interface_RoutedVlan_Ipv4_Counters_OutOctets { - return &Interface_RoutedVlan_Ipv4_Counters_OutOctets{ +// OutOctets returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutOctets() *Interface_RoutedVlan_Ipv4_Counters_OutOctetsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -46494,9 +46708,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutOctets() *Interface_RoutedVlan_I } } -// OutOctets returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-octets". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutOctets() *Interface_RoutedVlan_Ipv4_Counters_OutOctetsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutOctetsAny{ +// OutOctets returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutOctets() *Interface_RoutedVlan_Ipv4_Counters_OutOctetsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -46505,9 +46719,9 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutOctets() *Interface_RoutedVla } } -// OutPkts returns from Interface_RoutedVlan_Ipv4_Counters the path struct for its child "out-pkts". -func (n *Interface_RoutedVlan_Ipv4_Counters) OutPkts() *Interface_RoutedVlan_Ipv4_Counters_OutPkts { - return &Interface_RoutedVlan_Ipv4_Counters_OutPkts{ +// OutPkts returns from Interface_RoutedVlan_Ipv4_CountersPath the path struct for its child "out-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPath) OutPkts() *Interface_RoutedVlan_Ipv4_Counters_OutPktsPath { + return &Interface_RoutedVlan_Ipv4_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -46516,9 +46730,9 @@ func (n *Interface_RoutedVlan_Ipv4_Counters) OutPkts() *Interface_RoutedVlan_Ipv } } -// OutPkts returns from Interface_RoutedVlan_Ipv4_CountersAny the path struct for its child "out-pkts". -func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutPkts() *Interface_RoutedVlan_Ipv4_Counters_OutPktsAny { - return &Interface_RoutedVlan_Ipv4_Counters_OutPktsAny{ +// OutPkts returns from Interface_RoutedVlan_Ipv4_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_RoutedVlan_Ipv4_CountersPathAny) OutPkts() *Interface_RoutedVlan_Ipv4_Counters_OutPktsPathAny { + return &Interface_RoutedVlan_Ipv4_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -46527,93 +46741,93 @@ func (n *Interface_RoutedVlan_Ipv4_CountersAny) OutPkts() *Interface_RoutedVlan_ } } -// Interface_RoutedVlan_Ipv4_Neighbor represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor struct { +// Interface_RoutedVlan_Ipv4_NeighborPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor YANG schema element. +type Interface_RoutedVlan_Ipv4_NeighborPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_NeighborAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor YANG schema element. -type Interface_RoutedVlan_Ipv4_NeighborAny struct { +// Interface_RoutedVlan_Ipv4_NeighborPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor YANG schema element. +type Interface_RoutedVlan_Ipv4_NeighborPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_Ip represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_Ip struct { +// Interface_RoutedVlan_Ipv4_Neighbor_IpPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_IpPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_IpAny struct { +// Interface_RoutedVlan_Ipv4_Neighbor_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_IpPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddress represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddress struct { +// Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressAny struct { +// Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_Origin represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_Origin struct { +// Interface_RoutedVlan_Ipv4_Neighbor_OriginPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_OriginPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Neighbor_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv4_Neighbor_OriginAny struct { +// Interface_RoutedVlan_Ipv4_Neighbor_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/neighbors/neighbor/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv4_Neighbor_OriginPathAny struct { *ygot.NodePath } -// Ip returns from Interface_RoutedVlan_Ipv4_Neighbor the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv4_Neighbor) Ip() *Interface_RoutedVlan_Ipv4_Neighbor_Ip { - return &Interface_RoutedVlan_Ipv4_Neighbor_Ip{ +// Ip returns from Interface_RoutedVlan_Ipv4_NeighborPath the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv4_NeighborPath) Ip() *Interface_RoutedVlan_Ipv4_Neighbor_IpPath { + return &Interface_RoutedVlan_Ipv4_Neighbor_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_RoutedVlan_Ipv4_NeighborAny the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv4_NeighborAny) Ip() *Interface_RoutedVlan_Ipv4_Neighbor_IpAny { - return &Interface_RoutedVlan_Ipv4_Neighbor_IpAny{ +// Ip returns from Interface_RoutedVlan_Ipv4_NeighborPathAny the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv4_NeighborPathAny) Ip() *Interface_RoutedVlan_Ipv4_Neighbor_IpPathAny { + return &Interface_RoutedVlan_Ipv4_Neighbor_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_RoutedVlan_Ipv4_Neighbor the path struct for its child "link-layer-address". -func (n *Interface_RoutedVlan_Ipv4_Neighbor) LinkLayerAddress() *Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddress { - return &Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddress{ +// LinkLayerAddress returns from Interface_RoutedVlan_Ipv4_NeighborPath the path struct for its child "link-layer-address". +func (n *Interface_RoutedVlan_Ipv4_NeighborPath) LinkLayerAddress() *Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPath { + return &Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_RoutedVlan_Ipv4_NeighborAny the path struct for its child "link-layer-address". -func (n *Interface_RoutedVlan_Ipv4_NeighborAny) LinkLayerAddress() *Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressAny { - return &Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressAny{ +// LinkLayerAddress returns from Interface_RoutedVlan_Ipv4_NeighborPathAny the path struct for its child "link-layer-address". +func (n *Interface_RoutedVlan_Ipv4_NeighborPathAny) LinkLayerAddress() *Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPathAny { + return &Interface_RoutedVlan_Ipv4_Neighbor_LinkLayerAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_RoutedVlan_Ipv4_Neighbor the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv4_Neighbor) Origin() *Interface_RoutedVlan_Ipv4_Neighbor_Origin { - return &Interface_RoutedVlan_Ipv4_Neighbor_Origin{ +// Origin returns from Interface_RoutedVlan_Ipv4_NeighborPath the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv4_NeighborPath) Origin() *Interface_RoutedVlan_Ipv4_Neighbor_OriginPath { + return &Interface_RoutedVlan_Ipv4_Neighbor_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -46622,9 +46836,9 @@ func (n *Interface_RoutedVlan_Ipv4_Neighbor) Origin() *Interface_RoutedVlan_Ipv4 } } -// Origin returns from Interface_RoutedVlan_Ipv4_NeighborAny the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv4_NeighborAny) Origin() *Interface_RoutedVlan_Ipv4_Neighbor_OriginAny { - return &Interface_RoutedVlan_Ipv4_Neighbor_OriginAny{ +// Origin returns from Interface_RoutedVlan_Ipv4_NeighborPathAny the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv4_NeighborPathAny) Origin() *Interface_RoutedVlan_Ipv4_Neighbor_OriginPathAny { + return &Interface_RoutedVlan_Ipv4_Neighbor_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -46633,93 +46847,93 @@ func (n *Interface_RoutedVlan_Ipv4_NeighborAny) Origin() *Interface_RoutedVlan_I } } -// Interface_RoutedVlan_Ipv4_ProxyArp represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp YANG schema element. -type Interface_RoutedVlan_Ipv4_ProxyArp struct { +// Interface_RoutedVlan_Ipv4_ProxyArpPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp YANG schema element. +type Interface_RoutedVlan_Ipv4_ProxyArpPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_ProxyArpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp YANG schema element. -type Interface_RoutedVlan_Ipv4_ProxyArpAny struct { +// Interface_RoutedVlan_Ipv4_ProxyArpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp YANG schema element. +type Interface_RoutedVlan_Ipv4_ProxyArpPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_ProxyArp_Mode represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp/state/mode YANG schema element. -type Interface_RoutedVlan_Ipv4_ProxyArp_Mode struct { +// Interface_RoutedVlan_Ipv4_ProxyArp_ModePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp/config/mode YANG schema element. +type Interface_RoutedVlan_Ipv4_ProxyArp_ModePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_ProxyArp_ModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp/state/mode YANG schema element. -type Interface_RoutedVlan_Ipv4_ProxyArp_ModeAny struct { +// Interface_RoutedVlan_Ipv4_ProxyArp_ModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/proxy-arp/config/mode YANG schema element. +type Interface_RoutedVlan_Ipv4_ProxyArp_ModePathAny struct { *ygot.NodePath } -// Mode returns from Interface_RoutedVlan_Ipv4_ProxyArp the path struct for its child "mode". -func (n *Interface_RoutedVlan_Ipv4_ProxyArp) Mode() *Interface_RoutedVlan_Ipv4_ProxyArp_Mode { - return &Interface_RoutedVlan_Ipv4_ProxyArp_Mode{ +// Mode returns from Interface_RoutedVlan_Ipv4_ProxyArpPath the path struct for its child "mode". +func (n *Interface_RoutedVlan_Ipv4_ProxyArpPath) Mode() *Interface_RoutedVlan_Ipv4_ProxyArp_ModePath { + return &Interface_RoutedVlan_Ipv4_ProxyArp_ModePath{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Mode returns from Interface_RoutedVlan_Ipv4_ProxyArpAny the path struct for its child "mode". -func (n *Interface_RoutedVlan_Ipv4_ProxyArpAny) Mode() *Interface_RoutedVlan_Ipv4_ProxyArp_ModeAny { - return &Interface_RoutedVlan_Ipv4_ProxyArp_ModeAny{ +// Mode returns from Interface_RoutedVlan_Ipv4_ProxyArpPathAny the path struct for its child "mode". +func (n *Interface_RoutedVlan_Ipv4_ProxyArpPathAny) Mode() *Interface_RoutedVlan_Ipv4_ProxyArp_ModePathAny { + return &Interface_RoutedVlan_Ipv4_ProxyArp_ModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv4_Unnumbered represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered struct { +// Interface_RoutedVlan_Ipv4_UnnumberedPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered YANG schema element. +type Interface_RoutedVlan_Ipv4_UnnumberedPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_UnnumberedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered YANG schema element. -type Interface_RoutedVlan_Ipv4_UnnumberedAny struct { +// Interface_RoutedVlan_Ipv4_UnnumberedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered YANG schema element. +type Interface_RoutedVlan_Ipv4_UnnumberedPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_Enabled represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_Enabled struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_EnabledAny struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Interface_RoutedVlan_Ipv4_Unnumbered the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered) Enabled() *Interface_RoutedVlan_Ipv4_Unnumbered_Enabled { - return &Interface_RoutedVlan_Ipv4_Unnumbered_Enabled{ +// Enabled returns from Interface_RoutedVlan_Ipv4_UnnumberedPath the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv4_UnnumberedPath) Enabled() *Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPath { + return &Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv4_UnnumberedAny the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv4_UnnumberedAny) Enabled() *Interface_RoutedVlan_Ipv4_Unnumbered_EnabledAny { - return &Interface_RoutedVlan_Ipv4_Unnumbered_EnabledAny{ +// Enabled returns from Interface_RoutedVlan_Ipv4_UnnumberedPathAny the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv4_UnnumberedPathAny) Enabled() *Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPathAny { + return &Interface_RoutedVlan_Ipv4_Unnumbered_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from Interface_RoutedVlan_Ipv4_Unnumbered the path struct for its child "interface-ref". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered) InterfaceRef() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef{ +// InterfaceRef returns from Interface_RoutedVlan_Ipv4_UnnumberedPath the path struct for its child "interface-ref". +func (n *Interface_RoutedVlan_Ipv4_UnnumberedPath) InterfaceRef() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -46728,9 +46942,9 @@ func (n *Interface_RoutedVlan_Ipv4_Unnumbered) InterfaceRef() *Interface_RoutedV } } -// InterfaceRef returns from Interface_RoutedVlan_Ipv4_UnnumberedAny the path struct for its child "interface-ref". -func (n *Interface_RoutedVlan_Ipv4_UnnumberedAny) InterfaceRef() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny{ +// InterfaceRef returns from Interface_RoutedVlan_Ipv4_UnnumberedPathAny the path struct for its child "interface-ref". +func (n *Interface_RoutedVlan_Ipv4_UnnumberedPathAny) InterfaceRef() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -46739,133 +46953,133 @@ func (n *Interface_RoutedVlan_Ipv4_UnnumberedAny) InterfaceRef() *Interface_Rout } } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Interface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Interface struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfaceAny struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Subinterface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Subinterface struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny struct { +// Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv4/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef the path struct for its child "interface". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef) Interface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Interface { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Interface{ +// Interface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath the path struct for its child "interface". +func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath) Interface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePath { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny the path struct for its child "interface". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny) Interface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfaceAny { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfaceAny{ +// Interface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny the path struct for its child "interface". +func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny) Interface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef the path struct for its child "subinterface". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef) Subinterface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Subinterface { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_Subinterface{ +// Subinterface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath the path struct for its child "subinterface". +func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPath) Subinterface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny the path struct for its child "subinterface". -func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefAny) Subinterface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny { - return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRefPathAny) Subinterface() *Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny { + return &Interface_RoutedVlan_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv6 represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6 YANG schema element. -type Interface_RoutedVlan_Ipv6 struct { +// Interface_RoutedVlan_Ipv6Path represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6 YANG schema element. +type Interface_RoutedVlan_Ipv6Path struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6Any represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6 YANG schema element. -type Interface_RoutedVlan_Ipv6Any struct { +// Interface_RoutedVlan_Ipv6PathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6 YANG schema element. +type Interface_RoutedVlan_Ipv6PathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_DhcpClient represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/dhcp-client YANG schema element. -type Interface_RoutedVlan_Ipv6_DhcpClient struct { +// Interface_RoutedVlan_Ipv6_DhcpClientPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/dhcp-client YANG schema element. +type Interface_RoutedVlan_Ipv6_DhcpClientPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_DhcpClientAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/dhcp-client YANG schema element. -type Interface_RoutedVlan_Ipv6_DhcpClientAny struct { +// Interface_RoutedVlan_Ipv6_DhcpClientPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/dhcp-client YANG schema element. +type Interface_RoutedVlan_Ipv6_DhcpClientPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_DupAddrDetectTransmits represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/dup-addr-detect-transmits YANG schema element. -type Interface_RoutedVlan_Ipv6_DupAddrDetectTransmits struct { +// Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/dup-addr-detect-transmits YANG schema element. +type Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/dup-addr-detect-transmits YANG schema element. -type Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsAny struct { +// Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/dup-addr-detect-transmits YANG schema element. +type Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Enabled represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv6_Enabled struct { +// Interface_RoutedVlan_Ipv6_EnabledPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv6_EnabledPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv6_EnabledAny struct { +// Interface_RoutedVlan_Ipv6_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv6_EnabledPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Mtu represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/mtu YANG schema element. -type Interface_RoutedVlan_Ipv6_Mtu struct { +// Interface_RoutedVlan_Ipv6_MtuPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/mtu YANG schema element. +type Interface_RoutedVlan_Ipv6_MtuPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_MtuAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/mtu YANG schema element. -type Interface_RoutedVlan_Ipv6_MtuAny struct { +// Interface_RoutedVlan_Ipv6_MtuPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/config/mtu YANG schema element. +type Interface_RoutedVlan_Ipv6_MtuPathAny struct { *ygot.NodePath } -// AddressAny returns from Interface_RoutedVlan_Ipv6 the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv6) AddressAny() *Interface_RoutedVlan_Ipv6_AddressAny { - return &Interface_RoutedVlan_Ipv6_AddressAny{ +// AddressAny returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv6Path) AddressAny() *Interface_RoutedVlan_Ipv6_AddressPathAny { + return &Interface_RoutedVlan_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -46874,9 +47088,9 @@ func (n *Interface_RoutedVlan_Ipv6) AddressAny() *Interface_RoutedVlan_Ipv6_Addr } } -// AddressAny returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv6Any) AddressAny() *Interface_RoutedVlan_Ipv6_AddressAny { - return &Interface_RoutedVlan_Ipv6_AddressAny{ +// AddressAny returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv6PathAny) AddressAny() *Interface_RoutedVlan_Ipv6_AddressPathAny { + return &Interface_RoutedVlan_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -46885,9 +47099,9 @@ func (n *Interface_RoutedVlan_Ipv6Any) AddressAny() *Interface_RoutedVlan_Ipv6_A } } -// Address returns from Interface_RoutedVlan_Ipv6 the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv6) Address(Ip string) *Interface_RoutedVlan_Ipv6_Address { - return &Interface_RoutedVlan_Ipv6_Address{ +// Address returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv6Path) Address(Ip string) *Interface_RoutedVlan_Ipv6_AddressPath { + return &Interface_RoutedVlan_Ipv6_AddressPath{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -46896,9 +47110,9 @@ func (n *Interface_RoutedVlan_Ipv6) Address(Ip string) *Interface_RoutedVlan_Ipv } } -// Address returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "address". -func (n *Interface_RoutedVlan_Ipv6Any) Address(Ip string) *Interface_RoutedVlan_Ipv6_AddressAny { - return &Interface_RoutedVlan_Ipv6_AddressAny{ +// Address returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "address". +func (n *Interface_RoutedVlan_Ipv6PathAny) Address(Ip string) *Interface_RoutedVlan_Ipv6_AddressPathAny { + return &Interface_RoutedVlan_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -46907,9 +47121,9 @@ func (n *Interface_RoutedVlan_Ipv6Any) Address(Ip string) *Interface_RoutedVlan_ } } -// Counters returns from Interface_RoutedVlan_Ipv6 the path struct for its child "counters". -func (n *Interface_RoutedVlan_Ipv6) Counters() *Interface_RoutedVlan_Ipv6_Counters { - return &Interface_RoutedVlan_Ipv6_Counters{ +// Counters returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "counters". +func (n *Interface_RoutedVlan_Ipv6Path) Counters() *Interface_RoutedVlan_Ipv6_CountersPath { + return &Interface_RoutedVlan_Ipv6_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -46918,9 +47132,9 @@ func (n *Interface_RoutedVlan_Ipv6) Counters() *Interface_RoutedVlan_Ipv6_Counte } } -// Counters returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "counters". -func (n *Interface_RoutedVlan_Ipv6Any) Counters() *Interface_RoutedVlan_Ipv6_CountersAny { - return &Interface_RoutedVlan_Ipv6_CountersAny{ +// Counters returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "counters". +func (n *Interface_RoutedVlan_Ipv6PathAny) Counters() *Interface_RoutedVlan_Ipv6_CountersPathAny { + return &Interface_RoutedVlan_Ipv6_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -46929,97 +47143,97 @@ func (n *Interface_RoutedVlan_Ipv6Any) Counters() *Interface_RoutedVlan_Ipv6_Cou } } -// DhcpClient returns from Interface_RoutedVlan_Ipv6 the path struct for its child "dhcp-client". -func (n *Interface_RoutedVlan_Ipv6) DhcpClient() *Interface_RoutedVlan_Ipv6_DhcpClient { - return &Interface_RoutedVlan_Ipv6_DhcpClient{ +// DhcpClient returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "dhcp-client". +func (n *Interface_RoutedVlan_Ipv6Path) DhcpClient() *Interface_RoutedVlan_Ipv6_DhcpClientPath { + return &Interface_RoutedVlan_Ipv6_DhcpClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DhcpClient returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "dhcp-client". -func (n *Interface_RoutedVlan_Ipv6Any) DhcpClient() *Interface_RoutedVlan_Ipv6_DhcpClientAny { - return &Interface_RoutedVlan_Ipv6_DhcpClientAny{ +// DhcpClient returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "dhcp-client". +func (n *Interface_RoutedVlan_Ipv6PathAny) DhcpClient() *Interface_RoutedVlan_Ipv6_DhcpClientPathAny { + return &Interface_RoutedVlan_Ipv6_DhcpClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DupAddrDetectTransmits returns from Interface_RoutedVlan_Ipv6 the path struct for its child "dup-addr-detect-transmits". -func (n *Interface_RoutedVlan_Ipv6) DupAddrDetectTransmits() *Interface_RoutedVlan_Ipv6_DupAddrDetectTransmits { - return &Interface_RoutedVlan_Ipv6_DupAddrDetectTransmits{ +// DupAddrDetectTransmits returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "dup-addr-detect-transmits". +func (n *Interface_RoutedVlan_Ipv6Path) DupAddrDetectTransmits() *Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPath { + return &Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPath{ NodePath: ygot.NewNodePath( - []string{"state", "dup-addr-detect-transmits"}, + []string{"config", "dup-addr-detect-transmits"}, map[string]interface{}{}, n, ), } } -// DupAddrDetectTransmits returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "dup-addr-detect-transmits". -func (n *Interface_RoutedVlan_Ipv6Any) DupAddrDetectTransmits() *Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsAny { - return &Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsAny{ +// DupAddrDetectTransmits returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "dup-addr-detect-transmits". +func (n *Interface_RoutedVlan_Ipv6PathAny) DupAddrDetectTransmits() *Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPathAny { + return &Interface_RoutedVlan_Ipv6_DupAddrDetectTransmitsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dup-addr-detect-transmits"}, + []string{"config", "dup-addr-detect-transmits"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv6 the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv6) Enabled() *Interface_RoutedVlan_Ipv6_Enabled { - return &Interface_RoutedVlan_Ipv6_Enabled{ +// Enabled returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv6Path) Enabled() *Interface_RoutedVlan_Ipv6_EnabledPath { + return &Interface_RoutedVlan_Ipv6_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv6Any) Enabled() *Interface_RoutedVlan_Ipv6_EnabledAny { - return &Interface_RoutedVlan_Ipv6_EnabledAny{ +// Enabled returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv6PathAny) Enabled() *Interface_RoutedVlan_Ipv6_EnabledPathAny { + return &Interface_RoutedVlan_Ipv6_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_RoutedVlan_Ipv6 the path struct for its child "mtu". -func (n *Interface_RoutedVlan_Ipv6) Mtu() *Interface_RoutedVlan_Ipv6_Mtu { - return &Interface_RoutedVlan_Ipv6_Mtu{ +// Mtu returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "mtu". +func (n *Interface_RoutedVlan_Ipv6Path) Mtu() *Interface_RoutedVlan_Ipv6_MtuPath { + return &Interface_RoutedVlan_Ipv6_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "mtu". -func (n *Interface_RoutedVlan_Ipv6Any) Mtu() *Interface_RoutedVlan_Ipv6_MtuAny { - return &Interface_RoutedVlan_Ipv6_MtuAny{ +// Mtu returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "mtu". +func (n *Interface_RoutedVlan_Ipv6PathAny) Mtu() *Interface_RoutedVlan_Ipv6_MtuPathAny { + return &Interface_RoutedVlan_Ipv6_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from Interface_RoutedVlan_Ipv6 the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv6) NeighborAny() *Interface_RoutedVlan_Ipv6_NeighborAny { - return &Interface_RoutedVlan_Ipv6_NeighborAny{ +// NeighborAny returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv6Path) NeighborAny() *Interface_RoutedVlan_Ipv6_NeighborPathAny { + return &Interface_RoutedVlan_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -47028,9 +47242,9 @@ func (n *Interface_RoutedVlan_Ipv6) NeighborAny() *Interface_RoutedVlan_Ipv6_Nei } } -// NeighborAny returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv6Any) NeighborAny() *Interface_RoutedVlan_Ipv6_NeighborAny { - return &Interface_RoutedVlan_Ipv6_NeighborAny{ +// NeighborAny returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv6PathAny) NeighborAny() *Interface_RoutedVlan_Ipv6_NeighborPathAny { + return &Interface_RoutedVlan_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -47039,9 +47253,9 @@ func (n *Interface_RoutedVlan_Ipv6Any) NeighborAny() *Interface_RoutedVlan_Ipv6_ } } -// Neighbor returns from Interface_RoutedVlan_Ipv6 the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv6) Neighbor(Ip string) *Interface_RoutedVlan_Ipv6_Neighbor { - return &Interface_RoutedVlan_Ipv6_Neighbor{ +// Neighbor returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv6Path) Neighbor(Ip string) *Interface_RoutedVlan_Ipv6_NeighborPath { + return &Interface_RoutedVlan_Ipv6_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -47050,9 +47264,9 @@ func (n *Interface_RoutedVlan_Ipv6) Neighbor(Ip string) *Interface_RoutedVlan_Ip } } -// Neighbor returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "neighbor". -func (n *Interface_RoutedVlan_Ipv6Any) Neighbor(Ip string) *Interface_RoutedVlan_Ipv6_NeighborAny { - return &Interface_RoutedVlan_Ipv6_NeighborAny{ +// Neighbor returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "neighbor". +func (n *Interface_RoutedVlan_Ipv6PathAny) Neighbor(Ip string) *Interface_RoutedVlan_Ipv6_NeighborPathAny { + return &Interface_RoutedVlan_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -47061,9 +47275,9 @@ func (n *Interface_RoutedVlan_Ipv6Any) Neighbor(Ip string) *Interface_RoutedVlan } } -// RouterAdvertisement returns from Interface_RoutedVlan_Ipv6 the path struct for its child "router-advertisement". -func (n *Interface_RoutedVlan_Ipv6) RouterAdvertisement() *Interface_RoutedVlan_Ipv6_RouterAdvertisement { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement{ +// RouterAdvertisement returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "router-advertisement". +func (n *Interface_RoutedVlan_Ipv6Path) RouterAdvertisement() *Interface_RoutedVlan_Ipv6_RouterAdvertisementPath { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisementPath{ NodePath: ygot.NewNodePath( []string{"router-advertisement"}, map[string]interface{}{}, @@ -47072,9 +47286,9 @@ func (n *Interface_RoutedVlan_Ipv6) RouterAdvertisement() *Interface_RoutedVlan_ } } -// RouterAdvertisement returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "router-advertisement". -func (n *Interface_RoutedVlan_Ipv6Any) RouterAdvertisement() *Interface_RoutedVlan_Ipv6_RouterAdvertisementAny { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisementAny{ +// RouterAdvertisement returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "router-advertisement". +func (n *Interface_RoutedVlan_Ipv6PathAny) RouterAdvertisement() *Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny{ NodePath: ygot.NewNodePath( []string{"router-advertisement"}, map[string]interface{}{}, @@ -47083,9 +47297,9 @@ func (n *Interface_RoutedVlan_Ipv6Any) RouterAdvertisement() *Interface_RoutedVl } } -// Unnumbered returns from Interface_RoutedVlan_Ipv6 the path struct for its child "unnumbered". -func (n *Interface_RoutedVlan_Ipv6) Unnumbered() *Interface_RoutedVlan_Ipv6_Unnumbered { - return &Interface_RoutedVlan_Ipv6_Unnumbered{ +// Unnumbered returns from Interface_RoutedVlan_Ipv6Path the path struct for its child "unnumbered". +func (n *Interface_RoutedVlan_Ipv6Path) Unnumbered() *Interface_RoutedVlan_Ipv6_UnnumberedPath { + return &Interface_RoutedVlan_Ipv6_UnnumberedPath{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -47094,9 +47308,9 @@ func (n *Interface_RoutedVlan_Ipv6) Unnumbered() *Interface_RoutedVlan_Ipv6_Unnu } } -// Unnumbered returns from Interface_RoutedVlan_Ipv6Any the path struct for its child "unnumbered". -func (n *Interface_RoutedVlan_Ipv6Any) Unnumbered() *Interface_RoutedVlan_Ipv6_UnnumberedAny { - return &Interface_RoutedVlan_Ipv6_UnnumberedAny{ +// Unnumbered returns from Interface_RoutedVlan_Ipv6PathAny the path struct for its child "unnumbered". +func (n *Interface_RoutedVlan_Ipv6PathAny) Unnumbered() *Interface_RoutedVlan_Ipv6_UnnumberedPathAny { + return &Interface_RoutedVlan_Ipv6_UnnumberedPathAny{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -47105,81 +47319,81 @@ func (n *Interface_RoutedVlan_Ipv6Any) Unnumbered() *Interface_RoutedVlan_Ipv6_U } } -// Interface_RoutedVlan_Ipv6_Address represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address YANG schema element. -type Interface_RoutedVlan_Ipv6_Address struct { +// Interface_RoutedVlan_Ipv6_AddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address YANG schema element. +type Interface_RoutedVlan_Ipv6_AddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_AddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address YANG schema element. -type Interface_RoutedVlan_Ipv6_AddressAny struct { +// Interface_RoutedVlan_Ipv6_AddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address YANG schema element. +type Interface_RoutedVlan_Ipv6_AddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_Ip represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_Ip struct { +// Interface_RoutedVlan_Ipv6_Address_IpPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_IpPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_IpAny struct { +// Interface_RoutedVlan_Ipv6_Address_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_IpPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_Origin represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_Origin struct { +// Interface_RoutedVlan_Ipv6_Address_OriginPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_OriginPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_OriginAny struct { +// Interface_RoutedVlan_Ipv6_Address_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_OriginPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_PrefixLength represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/prefix-length YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_PrefixLength struct { +// Interface_RoutedVlan_Ipv6_Address_PrefixLengthPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/config/prefix-length YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_PrefixLengthPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_PrefixLengthAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/prefix-length YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_PrefixLengthAny struct { +// Interface_RoutedVlan_Ipv6_Address_PrefixLengthPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/config/prefix-length YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_PrefixLengthPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_Status represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/status YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_Status struct { +// Interface_RoutedVlan_Ipv6_Address_StatusPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/status YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_StatusPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_StatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/status YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_StatusAny struct { +// Interface_RoutedVlan_Ipv6_Address_StatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/state/status YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_StatusPathAny struct { *ygot.NodePath } -// Ip returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv6_Address) Ip() *Interface_RoutedVlan_Ipv6_Address_Ip { - return &Interface_RoutedVlan_Ipv6_Address_Ip{ +// Ip returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) Ip() *Interface_RoutedVlan_Ipv6_Address_IpPath { + return &Interface_RoutedVlan_Ipv6_Address_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) Ip() *Interface_RoutedVlan_Ipv6_Address_IpAny { - return &Interface_RoutedVlan_Ipv6_Address_IpAny{ +// Ip returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) Ip() *Interface_RoutedVlan_Ipv6_Address_IpPathAny { + return &Interface_RoutedVlan_Ipv6_Address_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv6_Address) Origin() *Interface_RoutedVlan_Ipv6_Address_Origin { - return &Interface_RoutedVlan_Ipv6_Address_Origin{ +// Origin returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) Origin() *Interface_RoutedVlan_Ipv6_Address_OriginPath { + return &Interface_RoutedVlan_Ipv6_Address_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -47188,9 +47402,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address) Origin() *Interface_RoutedVlan_Ipv6_ } } -// Origin returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) Origin() *Interface_RoutedVlan_Ipv6_Address_OriginAny { - return &Interface_RoutedVlan_Ipv6_Address_OriginAny{ +// Origin returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) Origin() *Interface_RoutedVlan_Ipv6_Address_OriginPathAny { + return &Interface_RoutedVlan_Ipv6_Address_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -47199,31 +47413,31 @@ func (n *Interface_RoutedVlan_Ipv6_AddressAny) Origin() *Interface_RoutedVlan_Ip } } -// PrefixLength returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "prefix-length". -func (n *Interface_RoutedVlan_Ipv6_Address) PrefixLength() *Interface_RoutedVlan_Ipv6_Address_PrefixLength { - return &Interface_RoutedVlan_Ipv6_Address_PrefixLength{ +// PrefixLength returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "prefix-length". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) PrefixLength() *Interface_RoutedVlan_Ipv6_Address_PrefixLengthPath { + return &Interface_RoutedVlan_Ipv6_Address_PrefixLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// PrefixLength returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "prefix-length". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) PrefixLength() *Interface_RoutedVlan_Ipv6_Address_PrefixLengthAny { - return &Interface_RoutedVlan_Ipv6_Address_PrefixLengthAny{ +// PrefixLength returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "prefix-length". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) PrefixLength() *Interface_RoutedVlan_Ipv6_Address_PrefixLengthPathAny { + return &Interface_RoutedVlan_Ipv6_Address_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// Status returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "status". -func (n *Interface_RoutedVlan_Ipv6_Address) Status() *Interface_RoutedVlan_Ipv6_Address_Status { - return &Interface_RoutedVlan_Ipv6_Address_Status{ +// Status returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "status". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) Status() *Interface_RoutedVlan_Ipv6_Address_StatusPath { + return &Interface_RoutedVlan_Ipv6_Address_StatusPath{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -47232,9 +47446,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address) Status() *Interface_RoutedVlan_Ipv6_ } } -// Status returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "status". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) Status() *Interface_RoutedVlan_Ipv6_Address_StatusAny { - return &Interface_RoutedVlan_Ipv6_Address_StatusAny{ +// Status returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "status". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) Status() *Interface_RoutedVlan_Ipv6_Address_StatusPathAny { + return &Interface_RoutedVlan_Ipv6_Address_StatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -47243,9 +47457,9 @@ func (n *Interface_RoutedVlan_Ipv6_AddressAny) Status() *Interface_RoutedVlan_Ip } } -// VrrpGroupAny returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv6_Address) VrrpGroupAny() *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) VrrpGroupAny() *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -47254,9 +47468,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address) VrrpGroupAny() *Interface_RoutedVlan } } -// VrrpGroupAny returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) VrrpGroupAny() *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) VrrpGroupAny() *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -47265,9 +47479,9 @@ func (n *Interface_RoutedVlan_Ipv6_AddressAny) VrrpGroupAny() *Interface_RoutedV } } -// VrrpGroup returns from Interface_RoutedVlan_Ipv6_Address the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv6_Address) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv6_Address_VrrpGroup { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup{ +// VrrpGroup returns from Interface_RoutedVlan_Ipv6_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv6_AddressPath) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -47276,9 +47490,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address) VrrpGroup(VirtualRouterId uint8) *In } } -// VrrpGroup returns from Interface_RoutedVlan_Ipv6_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_RoutedVlan_Ipv6_AddressAny) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny{ +// VrrpGroup returns from Interface_RoutedVlan_Ipv6_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_RoutedVlan_Ipv6_AddressPathAny) VrrpGroup(VirtualRouterId uint8) *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -47287,153 +47501,153 @@ func (n *Interface_RoutedVlan_Ipv6_AddressAny) VrrpGroup(VirtualRouterId uint8) } } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptMode represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptMode struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModeAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementInterval represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementInterval struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriority represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriority struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Preempt represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Preempt struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelay represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelay struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Priority represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Priority struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddress represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddress struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocal represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-link-local YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocal struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-link-local YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-link-local YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-link-local YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterId represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterId struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny struct { *ygot.NodePath } -// AcceptMode returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "accept-mode". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) AcceptMode() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptMode { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptMode{ +// AcceptMode returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "accept-mode". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) AcceptMode() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePath{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AcceptMode returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "accept-mode". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) AcceptMode() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModeAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModeAny{ +// AcceptMode returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "accept-mode". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) AcceptMode() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AcceptModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "advertisement-interval". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) AdvertisementInterval() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementInterval { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementInterval{ +// AdvertisementInterval returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "advertisement-interval". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) AdvertisementInterval() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "advertisement-interval". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) AdvertisementInterval() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny{ +// AdvertisementInterval returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "advertisement-interval". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) AdvertisementInterval() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// CurrentPriority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "current-priority". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) CurrentPriority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriority { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriority{ +// CurrentPriority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "current-priority". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) CurrentPriority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -47442,9 +47656,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) CurrentPriority() *Interfa } } -// CurrentPriority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "current-priority". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) CurrentPriority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityAny{ +// CurrentPriority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "current-priority". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) CurrentPriority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -47453,9 +47667,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) CurrentPriority() *Inte } } -// InterfaceTracking returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "interface-tracking". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) InterfaceTracking() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking{ +// InterfaceTracking returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "interface-tracking". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) InterfaceTracking() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -47464,9 +47678,9 @@ func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) InterfaceTracking() *Inter } } -// InterfaceTracking returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "interface-tracking". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) InterfaceTracking() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny{ +// InterfaceTracking returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "interface-tracking". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) InterfaceTracking() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -47475,345 +47689,345 @@ func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) InterfaceTracking() *In } } -// Preempt returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "preempt". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) Preempt() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Preempt { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Preempt{ +// Preempt returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "preempt". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) Preempt() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// Preempt returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "preempt". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) Preempt() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptAny{ +// Preempt returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "preempt". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) Preempt() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "preempt-delay". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) PreemptDelay() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelay { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelay{ +// PreemptDelay returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "preempt-delay". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) PreemptDelay() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "preempt-delay". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) PreemptDelay() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayAny{ +// PreemptDelay returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "preempt-delay". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) PreemptDelay() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PreemptDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "priority". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) Priority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Priority { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_Priority{ +// Priority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "priority". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) Priority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "priority". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) Priority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityAny{ +// Priority returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "priority". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) Priority() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "virtual-address". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) VirtualAddress() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddress { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddress{ +// VirtualAddress returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-address". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) VirtualAddress() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-address". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) VirtualAddress() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressAny{ +// VirtualAddress returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-address". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) VirtualAddress() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualLinkLocal returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "virtual-link-local". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) VirtualLinkLocal() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocal { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocal{ +// VirtualLinkLocal returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-link-local". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) VirtualLinkLocal() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-link-local"}, + []string{"config", "virtual-link-local"}, map[string]interface{}{}, n, ), } } -// VirtualLinkLocal returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-link-local". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) VirtualLinkLocal() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny{ +// VirtualLinkLocal returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-link-local". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) VirtualLinkLocal() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-link-local"}, + []string{"config", "virtual-link-local"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup the path struct for its child "virtual-router-id". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup) VirtualRouterId() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterId { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterId{ +// VirtualRouterId returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-router-id". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPath) VirtualRouterId() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-router-id". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupAny) VirtualRouterId() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdAny{ +// VirtualRouterId returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-router-id". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroupPathAny) VirtualRouterId() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny struct { +// Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny struct { *ygot.NodePath } -// PriorityDecrement returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking the path struct for its child "priority-decrement". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking) PriorityDecrement() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement{ +// PriorityDecrement returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "priority-decrement". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath) PriorityDecrement() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// PriorityDecrement returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "priority-decrement". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny) PriorityDecrement() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny{ +// PriorityDecrement returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "priority-decrement". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny) PriorityDecrement() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking the path struct for its child "track-interface". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking) TrackInterface() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface{ +// TrackInterface returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "track-interface". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPath) TrackInterface() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "track-interface". -func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingAny) TrackInterface() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny { - return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny{ +// TrackInterface returns from Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "track-interface". +func (n *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny) TrackInterface() *Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny { + return &Interface_RoutedVlan_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv6_Counters represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters struct { +// Interface_RoutedVlan_Ipv6_CountersPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters YANG schema element. +type Interface_RoutedVlan_Ipv6_CountersPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters YANG schema element. -type Interface_RoutedVlan_Ipv6_CountersAny struct { +// Interface_RoutedVlan_Ipv6_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters YANG schema element. +type Interface_RoutedVlan_Ipv6_CountersPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InDiscardedPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InErrorPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InErrorPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InErrorPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InForwardedOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InForwardedOctets struct { +// Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InForwardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InForwardedPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InOctets struct { +// Interface_RoutedVlan_Ipv6_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InOctetsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_InPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/in-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-discarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-discarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutErrorPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutErrorPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-error-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-error-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctets struct { +// Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutForwardedPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutForwardedPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-forwarded-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutOctets struct { +// Interface_RoutedVlan_Ipv6_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-octets YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutOctetsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-octets YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutPkts struct { +// Interface_RoutedVlan_Ipv6_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-pkts YANG schema element. -type Interface_RoutedVlan_Ipv6_Counters_OutPktsAny struct { +// Interface_RoutedVlan_Ipv6_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/state/counters/out-pkts YANG schema element. +type Interface_RoutedVlan_Ipv6_Counters_OutPktsPathAny struct { *ygot.NodePath } -// InDiscardedPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) InDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InDiscardedPkts { - return &Interface_RoutedVlan_Ipv6_Counters_InDiscardedPkts{ +// InDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -47822,9 +48036,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InDiscardedPkts() *Interface_Routed } } -// InDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsAny{ +// InDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -47833,9 +48047,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InDiscardedPkts() *Interface_Rou } } -// InErrorPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-error-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) InErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_InErrorPkts { - return &Interface_RoutedVlan_Ipv6_Counters_InErrorPkts{ +// InErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-error-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -47844,9 +48058,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InErrorPkts() *Interface_RoutedVlan } } -// InErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-error-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_InErrorPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InErrorPktsAny{ +// InErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-error-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -47855,9 +48069,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InErrorPkts() *Interface_RoutedV } } -// InForwardedOctets returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv6_Counters) InForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_InForwardedOctets { - return &Interface_RoutedVlan_Ipv6_Counters_InForwardedOctets{ +// InForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -47866,9 +48080,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InForwardedOctets() *Interface_Rout } } -// InForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsAny{ +// InForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -47877,9 +48091,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InForwardedOctets() *Interface_R } } -// InForwardedPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) InForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InForwardedPkts { - return &Interface_RoutedVlan_Ipv6_Counters_InForwardedPkts{ +// InForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -47888,9 +48102,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InForwardedPkts() *Interface_Routed } } -// InForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsAny{ +// InForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -47899,9 +48113,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InForwardedPkts() *Interface_Rou } } -// InOctets returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-octets". -func (n *Interface_RoutedVlan_Ipv6_Counters) InOctets() *Interface_RoutedVlan_Ipv6_Counters_InOctets { - return &Interface_RoutedVlan_Ipv6_Counters_InOctets{ +// InOctets returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InOctets() *Interface_RoutedVlan_Ipv6_Counters_InOctetsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -47910,9 +48124,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InOctets() *Interface_RoutedVlan_Ip } } -// InOctets returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-octets". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InOctets() *Interface_RoutedVlan_Ipv6_Counters_InOctetsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InOctetsAny{ +// InOctets returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InOctets() *Interface_RoutedVlan_Ipv6_Counters_InOctetsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -47921,9 +48135,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InOctets() *Interface_RoutedVlan } } -// InPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "in-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) InPkts() *Interface_RoutedVlan_Ipv6_Counters_InPkts { - return &Interface_RoutedVlan_Ipv6_Counters_InPkts{ +// InPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "in-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) InPkts() *Interface_RoutedVlan_Ipv6_Counters_InPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -47932,9 +48146,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) InPkts() *Interface_RoutedVlan_Ipv6 } } -// InPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "in-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) InPkts() *Interface_RoutedVlan_Ipv6_Counters_InPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_InPktsAny{ +// InPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) InPkts() *Interface_RoutedVlan_Ipv6_Counters_InPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -47943,9 +48157,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) InPkts() *Interface_RoutedVlan_I } } -// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPkts { - return &Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPkts{ +// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -47954,9 +48168,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutDiscardedPkts() *Interface_Route } } -// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-discarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsAny{ +// OutDiscardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-discarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutDiscardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -47965,9 +48179,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutDiscardedPkts() *Interface_Ro } } -// OutErrorPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-error-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_OutErrorPkts { - return &Interface_RoutedVlan_Ipv6_Counters_OutErrorPkts{ +// OutErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-error-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -47976,9 +48190,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutErrorPkts() *Interface_RoutedVla } } -// OutErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-error-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsAny{ +// OutErrorPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-error-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutErrorPkts() *Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -47987,9 +48201,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutErrorPkts() *Interface_Routed } } -// OutForwardedOctets returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctets { - return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctets{ +// OutForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -47998,9 +48212,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutForwardedOctets() *Interface_Rou } } -// OutForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-forwarded-octets". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsAny{ +// OutForwardedOctets returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-forwarded-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutForwardedOctets() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -48009,9 +48223,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutForwardedOctets() *Interface_ } } -// OutForwardedPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedPkts { - return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedPkts{ +// OutForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -48020,9 +48234,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutForwardedPkts() *Interface_Route } } -// OutForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-forwarded-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsAny{ +// OutForwardedPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-forwarded-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutForwardedPkts() *Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -48031,9 +48245,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutForwardedPkts() *Interface_Ro } } -// OutOctets returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-octets". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutOctets() *Interface_RoutedVlan_Ipv6_Counters_OutOctets { - return &Interface_RoutedVlan_Ipv6_Counters_OutOctets{ +// OutOctets returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutOctets() *Interface_RoutedVlan_Ipv6_Counters_OutOctetsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -48042,9 +48256,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutOctets() *Interface_RoutedVlan_I } } -// OutOctets returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-octets". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutOctets() *Interface_RoutedVlan_Ipv6_Counters_OutOctetsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutOctetsAny{ +// OutOctets returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutOctets() *Interface_RoutedVlan_Ipv6_Counters_OutOctetsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -48053,9 +48267,9 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutOctets() *Interface_RoutedVla } } -// OutPkts returns from Interface_RoutedVlan_Ipv6_Counters the path struct for its child "out-pkts". -func (n *Interface_RoutedVlan_Ipv6_Counters) OutPkts() *Interface_RoutedVlan_Ipv6_Counters_OutPkts { - return &Interface_RoutedVlan_Ipv6_Counters_OutPkts{ +// OutPkts returns from Interface_RoutedVlan_Ipv6_CountersPath the path struct for its child "out-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPath) OutPkts() *Interface_RoutedVlan_Ipv6_Counters_OutPktsPath { + return &Interface_RoutedVlan_Ipv6_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -48064,9 +48278,9 @@ func (n *Interface_RoutedVlan_Ipv6_Counters) OutPkts() *Interface_RoutedVlan_Ipv } } -// OutPkts returns from Interface_RoutedVlan_Ipv6_CountersAny the path struct for its child "out-pkts". -func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutPkts() *Interface_RoutedVlan_Ipv6_Counters_OutPktsAny { - return &Interface_RoutedVlan_Ipv6_Counters_OutPktsAny{ +// OutPkts returns from Interface_RoutedVlan_Ipv6_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_RoutedVlan_Ipv6_CountersPathAny) OutPkts() *Interface_RoutedVlan_Ipv6_Counters_OutPktsPathAny { + return &Interface_RoutedVlan_Ipv6_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -48075,91 +48289,91 @@ func (n *Interface_RoutedVlan_Ipv6_CountersAny) OutPkts() *Interface_RoutedVlan_ } } -// Interface_RoutedVlan_Ipv6_Neighbor represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor struct { +// Interface_RoutedVlan_Ipv6_NeighborPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor YANG schema element. +type Interface_RoutedVlan_Ipv6_NeighborPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_NeighborAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor YANG schema element. -type Interface_RoutedVlan_Ipv6_NeighborAny struct { +// Interface_RoutedVlan_Ipv6_NeighborPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor YANG schema element. +type Interface_RoutedVlan_Ipv6_NeighborPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_Ip represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_Ip struct { +// Interface_RoutedVlan_Ipv6_Neighbor_IpPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_IpPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/ip YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_IpAny struct { +// Interface_RoutedVlan_Ipv6_Neighbor_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/config/ip YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_IpPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_IsRouter represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/is-router YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_IsRouter struct { +// Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/is-router YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_IsRouterAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/is-router YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_IsRouterAny struct { +// Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/is-router YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddress represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddress struct { +// Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressAny struct { +// Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_NeighborState represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_NeighborState struct { +// Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_NeighborStateAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_NeighborStateAny struct { +// Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_Origin represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_Origin struct { +// Interface_RoutedVlan_Ipv6_Neighbor_OriginPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_OriginPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Neighbor_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/origin YANG schema element. -type Interface_RoutedVlan_Ipv6_Neighbor_OriginAny struct { +// Interface_RoutedVlan_Ipv6_Neighbor_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/neighbors/neighbor/state/origin YANG schema element. +type Interface_RoutedVlan_Ipv6_Neighbor_OriginPathAny struct { *ygot.NodePath } -// Ip returns from Interface_RoutedVlan_Ipv6_Neighbor the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv6_Neighbor) Ip() *Interface_RoutedVlan_Ipv6_Neighbor_Ip { - return &Interface_RoutedVlan_Ipv6_Neighbor_Ip{ +// Ip returns from Interface_RoutedVlan_Ipv6_NeighborPath the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv6_NeighborPath) Ip() *Interface_RoutedVlan_Ipv6_Neighbor_IpPath { + return &Interface_RoutedVlan_Ipv6_Neighbor_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_RoutedVlan_Ipv6_NeighborAny the path struct for its child "ip". -func (n *Interface_RoutedVlan_Ipv6_NeighborAny) Ip() *Interface_RoutedVlan_Ipv6_Neighbor_IpAny { - return &Interface_RoutedVlan_Ipv6_Neighbor_IpAny{ +// Ip returns from Interface_RoutedVlan_Ipv6_NeighborPathAny the path struct for its child "ip". +func (n *Interface_RoutedVlan_Ipv6_NeighborPathAny) Ip() *Interface_RoutedVlan_Ipv6_Neighbor_IpPathAny { + return &Interface_RoutedVlan_Ipv6_Neighbor_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// IsRouter returns from Interface_RoutedVlan_Ipv6_Neighbor the path struct for its child "is-router". -func (n *Interface_RoutedVlan_Ipv6_Neighbor) IsRouter() *Interface_RoutedVlan_Ipv6_Neighbor_IsRouter { - return &Interface_RoutedVlan_Ipv6_Neighbor_IsRouter{ +// IsRouter returns from Interface_RoutedVlan_Ipv6_NeighborPath the path struct for its child "is-router". +func (n *Interface_RoutedVlan_Ipv6_NeighborPath) IsRouter() *Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPath { + return &Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "is-router"}, map[string]interface{}{}, @@ -48168,9 +48382,9 @@ func (n *Interface_RoutedVlan_Ipv6_Neighbor) IsRouter() *Interface_RoutedVlan_Ip } } -// IsRouter returns from Interface_RoutedVlan_Ipv6_NeighborAny the path struct for its child "is-router". -func (n *Interface_RoutedVlan_Ipv6_NeighborAny) IsRouter() *Interface_RoutedVlan_Ipv6_Neighbor_IsRouterAny { - return &Interface_RoutedVlan_Ipv6_Neighbor_IsRouterAny{ +// IsRouter returns from Interface_RoutedVlan_Ipv6_NeighborPathAny the path struct for its child "is-router". +func (n *Interface_RoutedVlan_Ipv6_NeighborPathAny) IsRouter() *Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPathAny { + return &Interface_RoutedVlan_Ipv6_Neighbor_IsRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "is-router"}, map[string]interface{}{}, @@ -48179,31 +48393,31 @@ func (n *Interface_RoutedVlan_Ipv6_NeighborAny) IsRouter() *Interface_RoutedVlan } } -// LinkLayerAddress returns from Interface_RoutedVlan_Ipv6_Neighbor the path struct for its child "link-layer-address". -func (n *Interface_RoutedVlan_Ipv6_Neighbor) LinkLayerAddress() *Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddress { - return &Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddress{ +// LinkLayerAddress returns from Interface_RoutedVlan_Ipv6_NeighborPath the path struct for its child "link-layer-address". +func (n *Interface_RoutedVlan_Ipv6_NeighborPath) LinkLayerAddress() *Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPath { + return &Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_RoutedVlan_Ipv6_NeighborAny the path struct for its child "link-layer-address". -func (n *Interface_RoutedVlan_Ipv6_NeighborAny) LinkLayerAddress() *Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressAny { - return &Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressAny{ +// LinkLayerAddress returns from Interface_RoutedVlan_Ipv6_NeighborPathAny the path struct for its child "link-layer-address". +func (n *Interface_RoutedVlan_Ipv6_NeighborPathAny) LinkLayerAddress() *Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPathAny { + return &Interface_RoutedVlan_Ipv6_Neighbor_LinkLayerAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// NeighborState returns from Interface_RoutedVlan_Ipv6_Neighbor the path struct for its child "neighbor-state". -func (n *Interface_RoutedVlan_Ipv6_Neighbor) NeighborState() *Interface_RoutedVlan_Ipv6_Neighbor_NeighborState { - return &Interface_RoutedVlan_Ipv6_Neighbor_NeighborState{ +// NeighborState returns from Interface_RoutedVlan_Ipv6_NeighborPath the path struct for its child "neighbor-state". +func (n *Interface_RoutedVlan_Ipv6_NeighborPath) NeighborState() *Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePath { + return &Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-state"}, map[string]interface{}{}, @@ -48212,9 +48426,9 @@ func (n *Interface_RoutedVlan_Ipv6_Neighbor) NeighborState() *Interface_RoutedVl } } -// NeighborState returns from Interface_RoutedVlan_Ipv6_NeighborAny the path struct for its child "neighbor-state". -func (n *Interface_RoutedVlan_Ipv6_NeighborAny) NeighborState() *Interface_RoutedVlan_Ipv6_Neighbor_NeighborStateAny { - return &Interface_RoutedVlan_Ipv6_Neighbor_NeighborStateAny{ +// NeighborState returns from Interface_RoutedVlan_Ipv6_NeighborPathAny the path struct for its child "neighbor-state". +func (n *Interface_RoutedVlan_Ipv6_NeighborPathAny) NeighborState() *Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePathAny { + return &Interface_RoutedVlan_Ipv6_Neighbor_NeighborStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-state"}, map[string]interface{}{}, @@ -48223,9 +48437,9 @@ func (n *Interface_RoutedVlan_Ipv6_NeighborAny) NeighborState() *Interface_Route } } -// Origin returns from Interface_RoutedVlan_Ipv6_Neighbor the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv6_Neighbor) Origin() *Interface_RoutedVlan_Ipv6_Neighbor_Origin { - return &Interface_RoutedVlan_Ipv6_Neighbor_Origin{ +// Origin returns from Interface_RoutedVlan_Ipv6_NeighborPath the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv6_NeighborPath) Origin() *Interface_RoutedVlan_Ipv6_Neighbor_OriginPath { + return &Interface_RoutedVlan_Ipv6_Neighbor_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -48234,9 +48448,9 @@ func (n *Interface_RoutedVlan_Ipv6_Neighbor) Origin() *Interface_RoutedVlan_Ipv6 } } -// Origin returns from Interface_RoutedVlan_Ipv6_NeighborAny the path struct for its child "origin". -func (n *Interface_RoutedVlan_Ipv6_NeighborAny) Origin() *Interface_RoutedVlan_Ipv6_Neighbor_OriginAny { - return &Interface_RoutedVlan_Ipv6_Neighbor_OriginAny{ +// Origin returns from Interface_RoutedVlan_Ipv6_NeighborPathAny the path struct for its child "origin". +func (n *Interface_RoutedVlan_Ipv6_NeighborPathAny) Origin() *Interface_RoutedVlan_Ipv6_Neighbor_OriginPathAny { + return &Interface_RoutedVlan_Ipv6_Neighbor_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -48245,157 +48459,157 @@ func (n *Interface_RoutedVlan_Ipv6_NeighborAny) Origin() *Interface_RoutedVlan_I } } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisementPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisementPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisementAny struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_Interval represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/interval YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_Interval struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/interval YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/interval YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalAny struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/interval YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_Lifetime represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/lifetime YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_Lifetime struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/lifetime YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/lifetime YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimeAny struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/lifetime YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_Suppress represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/suppress YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_Suppress struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/suppress YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/state/suppress YANG schema element. -type Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressAny struct { +// Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/router-advertisement/config/suppress YANG schema element. +type Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPathAny struct { *ygot.NodePath } -// Interval returns from Interface_RoutedVlan_Ipv6_RouterAdvertisement the path struct for its child "interval". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisement) Interval() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_Interval { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_Interval{ +// Interval returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPath the path struct for its child "interval". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPath) Interval() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPath { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// Interval returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementAny the path struct for its child "interval". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementAny) Interval() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalAny { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalAny{ +// Interval returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny the path struct for its child "interval". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny) Interval() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPathAny { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_IntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// Lifetime returns from Interface_RoutedVlan_Ipv6_RouterAdvertisement the path struct for its child "lifetime". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisement) Lifetime() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_Lifetime { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_Lifetime{ +// Lifetime returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPath the path struct for its child "lifetime". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPath) Lifetime() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePath { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePath{ NodePath: ygot.NewNodePath( - []string{"state", "lifetime"}, + []string{"config", "lifetime"}, map[string]interface{}{}, n, ), } } -// Lifetime returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementAny the path struct for its child "lifetime". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementAny) Lifetime() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimeAny { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimeAny{ +// Lifetime returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny the path struct for its child "lifetime". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny) Lifetime() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePathAny { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_LifetimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lifetime"}, + []string{"config", "lifetime"}, map[string]interface{}{}, n, ), } } -// Suppress returns from Interface_RoutedVlan_Ipv6_RouterAdvertisement the path struct for its child "suppress". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisement) Suppress() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_Suppress { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_Suppress{ +// Suppress returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPath the path struct for its child "suppress". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPath) Suppress() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPath { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPath{ NodePath: ygot.NewNodePath( - []string{"state", "suppress"}, + []string{"config", "suppress"}, map[string]interface{}{}, n, ), } } -// Suppress returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementAny the path struct for its child "suppress". -func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementAny) Suppress() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressAny { - return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressAny{ +// Suppress returns from Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny the path struct for its child "suppress". +func (n *Interface_RoutedVlan_Ipv6_RouterAdvertisementPathAny) Suppress() *Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPathAny { + return &Interface_RoutedVlan_Ipv6_RouterAdvertisement_SuppressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "suppress"}, + []string{"config", "suppress"}, map[string]interface{}{}, n, ), } } -// Interface_RoutedVlan_Ipv6_Unnumbered represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered struct { +// Interface_RoutedVlan_Ipv6_UnnumberedPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered YANG schema element. +type Interface_RoutedVlan_Ipv6_UnnumberedPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_UnnumberedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered YANG schema element. -type Interface_RoutedVlan_Ipv6_UnnumberedAny struct { +// Interface_RoutedVlan_Ipv6_UnnumberedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered YANG schema element. +type Interface_RoutedVlan_Ipv6_UnnumberedPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_Enabled represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_Enabled struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/state/enabled YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_EnabledAny struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/config/enabled YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Interface_RoutedVlan_Ipv6_Unnumbered the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered) Enabled() *Interface_RoutedVlan_Ipv6_Unnumbered_Enabled { - return &Interface_RoutedVlan_Ipv6_Unnumbered_Enabled{ +// Enabled returns from Interface_RoutedVlan_Ipv6_UnnumberedPath the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv6_UnnumberedPath) Enabled() *Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPath { + return &Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_RoutedVlan_Ipv6_UnnumberedAny the path struct for its child "enabled". -func (n *Interface_RoutedVlan_Ipv6_UnnumberedAny) Enabled() *Interface_RoutedVlan_Ipv6_Unnumbered_EnabledAny { - return &Interface_RoutedVlan_Ipv6_Unnumbered_EnabledAny{ +// Enabled returns from Interface_RoutedVlan_Ipv6_UnnumberedPathAny the path struct for its child "enabled". +func (n *Interface_RoutedVlan_Ipv6_UnnumberedPathAny) Enabled() *Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPathAny { + return &Interface_RoutedVlan_Ipv6_Unnumbered_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from Interface_RoutedVlan_Ipv6_Unnumbered the path struct for its child "interface-ref". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered) InterfaceRef() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef{ +// InterfaceRef returns from Interface_RoutedVlan_Ipv6_UnnumberedPath the path struct for its child "interface-ref". +func (n *Interface_RoutedVlan_Ipv6_UnnumberedPath) InterfaceRef() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -48404,9 +48618,9 @@ func (n *Interface_RoutedVlan_Ipv6_Unnumbered) InterfaceRef() *Interface_RoutedV } } -// InterfaceRef returns from Interface_RoutedVlan_Ipv6_UnnumberedAny the path struct for its child "interface-ref". -func (n *Interface_RoutedVlan_Ipv6_UnnumberedAny) InterfaceRef() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny{ +// InterfaceRef returns from Interface_RoutedVlan_Ipv6_UnnumberedPathAny the path struct for its child "interface-ref". +func (n *Interface_RoutedVlan_Ipv6_UnnumberedPathAny) InterfaceRef() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -48415,193 +48629,193 @@ func (n *Interface_RoutedVlan_Ipv6_UnnumberedAny) InterfaceRef() *Interface_Rout } } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Interface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Interface struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfaceAny struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Subinterface represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Subinterface struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath represents the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny struct { +// Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/routed-vlan/ipv6/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef the path struct for its child "interface". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef) Interface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Interface { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Interface{ +// Interface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath the path struct for its child "interface". +func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath) Interface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePath { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny the path struct for its child "interface". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny) Interface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfaceAny { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfaceAny{ +// Interface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny the path struct for its child "interface". +func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny) Interface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef the path struct for its child "subinterface". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef) Subinterface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Subinterface { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_Subinterface{ +// Subinterface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath the path struct for its child "subinterface". +func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPath) Subinterface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny the path struct for its child "subinterface". -func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefAny) Subinterface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny { - return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRefPathAny) Subinterface() *Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny { + return &Interface_RoutedVlan_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Interface_Sonet represents the /openconfig-interfaces/interfaces/interface/sonet YANG schema element. -type Interface_Sonet struct { +// Interface_SonetPath represents the /openconfig-interfaces/interfaces/interface/sonet YANG schema element. +type Interface_SonetPath struct { *ygot.NodePath } -// Interface_SonetAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/sonet YANG schema element. -type Interface_SonetAny struct { +// Interface_SonetPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/sonet YANG schema element. +type Interface_SonetPathAny struct { *ygot.NodePath } -// Interface_Subinterface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface YANG schema element. -type Interface_Subinterface struct { +// Interface_SubinterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface YANG schema element. +type Interface_SubinterfacePath struct { *ygot.NodePath } -// Interface_SubinterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface YANG schema element. -type Interface_SubinterfaceAny struct { +// Interface_SubinterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface YANG schema element. +type Interface_SubinterfacePathAny struct { *ygot.NodePath } -// Interface_Subinterface_AdminStatus represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/admin-status YANG schema element. -type Interface_Subinterface_AdminStatus struct { +// Interface_Subinterface_AdminStatusPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/admin-status YANG schema element. +type Interface_Subinterface_AdminStatusPath struct { *ygot.NodePath } -// Interface_Subinterface_AdminStatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/admin-status YANG schema element. -type Interface_Subinterface_AdminStatusAny struct { +// Interface_Subinterface_AdminStatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/admin-status YANG schema element. +type Interface_Subinterface_AdminStatusPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Description represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/description YANG schema element. -type Interface_Subinterface_Description struct { +// Interface_Subinterface_DescriptionPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/description YANG schema element. +type Interface_Subinterface_DescriptionPath struct { *ygot.NodePath } -// Interface_Subinterface_DescriptionAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/description YANG schema element. -type Interface_Subinterface_DescriptionAny struct { +// Interface_Subinterface_DescriptionPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/description YANG schema element. +type Interface_Subinterface_DescriptionPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Enabled represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/enabled YANG schema element. -type Interface_Subinterface_Enabled struct { +// Interface_Subinterface_EnabledPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/enabled YANG schema element. +type Interface_Subinterface_EnabledPath struct { *ygot.NodePath } -// Interface_Subinterface_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/enabled YANG schema element. -type Interface_Subinterface_EnabledAny struct { +// Interface_Subinterface_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/enabled YANG schema element. +type Interface_Subinterface_EnabledPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ifindex represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/ifindex YANG schema element. -type Interface_Subinterface_Ifindex struct { +// Interface_Subinterface_IfindexPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/ifindex YANG schema element. +type Interface_Subinterface_IfindexPath struct { *ygot.NodePath } -// Interface_Subinterface_IfindexAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/ifindex YANG schema element. -type Interface_Subinterface_IfindexAny struct { +// Interface_Subinterface_IfindexPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/ifindex YANG schema element. +type Interface_Subinterface_IfindexPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Index represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/index YANG schema element. -type Interface_Subinterface_Index struct { +// Interface_Subinterface_IndexPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/index YANG schema element. +type Interface_Subinterface_IndexPath struct { *ygot.NodePath } -// Interface_Subinterface_IndexAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/index YANG schema element. -type Interface_Subinterface_IndexAny struct { +// Interface_Subinterface_IndexPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/config/index YANG schema element. +type Interface_Subinterface_IndexPathAny struct { *ygot.NodePath } -// Interface_Subinterface_LastChange represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/last-change YANG schema element. -type Interface_Subinterface_LastChange struct { +// Interface_Subinterface_LastChangePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/last-change YANG schema element. +type Interface_Subinterface_LastChangePath struct { *ygot.NodePath } -// Interface_Subinterface_LastChangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/last-change YANG schema element. -type Interface_Subinterface_LastChangeAny struct { +// Interface_Subinterface_LastChangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/last-change YANG schema element. +type Interface_Subinterface_LastChangePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Logical represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/logical YANG schema element. -type Interface_Subinterface_Logical struct { +// Interface_Subinterface_LogicalPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/logical YANG schema element. +type Interface_Subinterface_LogicalPath struct { *ygot.NodePath } -// Interface_Subinterface_LogicalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/logical YANG schema element. -type Interface_Subinterface_LogicalAny struct { +// Interface_Subinterface_LogicalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/logical YANG schema element. +type Interface_Subinterface_LogicalPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Name represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/name YANG schema element. -type Interface_Subinterface_Name struct { +// Interface_Subinterface_NamePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/name YANG schema element. +type Interface_Subinterface_NamePath struct { *ygot.NodePath } -// Interface_Subinterface_NameAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/name YANG schema element. -type Interface_Subinterface_NameAny struct { +// Interface_Subinterface_NamePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/name YANG schema element. +type Interface_Subinterface_NamePathAny struct { *ygot.NodePath } -// Interface_Subinterface_OperStatus represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/oper-status YANG schema element. -type Interface_Subinterface_OperStatus struct { +// Interface_Subinterface_OperStatusPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/oper-status YANG schema element. +type Interface_Subinterface_OperStatusPath struct { *ygot.NodePath } -// Interface_Subinterface_OperStatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/oper-status YANG schema element. -type Interface_Subinterface_OperStatusAny struct { +// Interface_Subinterface_OperStatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/oper-status YANG schema element. +type Interface_Subinterface_OperStatusPathAny struct { *ygot.NodePath } -// AdminStatus returns from Interface_Subinterface the path struct for its child "admin-status". -func (n *Interface_Subinterface) AdminStatus() *Interface_Subinterface_AdminStatus { - return &Interface_Subinterface_AdminStatus{ +// AdminStatus returns from Interface_SubinterfacePath the path struct for its child "admin-status". +func (n *Interface_SubinterfacePath) AdminStatus() *Interface_Subinterface_AdminStatusPath { + return &Interface_Subinterface_AdminStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-status"}, map[string]interface{}{}, @@ -48610,9 +48824,9 @@ func (n *Interface_Subinterface) AdminStatus() *Interface_Subinterface_AdminStat } } -// AdminStatus returns from Interface_SubinterfaceAny the path struct for its child "admin-status". -func (n *Interface_SubinterfaceAny) AdminStatus() *Interface_Subinterface_AdminStatusAny { - return &Interface_Subinterface_AdminStatusAny{ +// AdminStatus returns from Interface_SubinterfacePathAny the path struct for its child "admin-status". +func (n *Interface_SubinterfacePathAny) AdminStatus() *Interface_Subinterface_AdminStatusPathAny { + return &Interface_Subinterface_AdminStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-status"}, map[string]interface{}{}, @@ -48621,9 +48835,9 @@ func (n *Interface_SubinterfaceAny) AdminStatus() *Interface_Subinterface_AdminS } } -// Counters returns from Interface_Subinterface the path struct for its child "counters". -func (n *Interface_Subinterface) Counters() *Interface_Subinterface_Counters { - return &Interface_Subinterface_Counters{ +// Counters returns from Interface_SubinterfacePath the path struct for its child "counters". +func (n *Interface_SubinterfacePath) Counters() *Interface_Subinterface_CountersPath { + return &Interface_Subinterface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -48632,9 +48846,9 @@ func (n *Interface_Subinterface) Counters() *Interface_Subinterface_Counters { } } -// Counters returns from Interface_SubinterfaceAny the path struct for its child "counters". -func (n *Interface_SubinterfaceAny) Counters() *Interface_Subinterface_CountersAny { - return &Interface_Subinterface_CountersAny{ +// Counters returns from Interface_SubinterfacePathAny the path struct for its child "counters". +func (n *Interface_SubinterfacePathAny) Counters() *Interface_Subinterface_CountersPathAny { + return &Interface_Subinterface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -48643,53 +48857,53 @@ func (n *Interface_SubinterfaceAny) Counters() *Interface_Subinterface_CountersA } } -// Description returns from Interface_Subinterface the path struct for its child "description". -func (n *Interface_Subinterface) Description() *Interface_Subinterface_Description { - return &Interface_Subinterface_Description{ +// Description returns from Interface_SubinterfacePath the path struct for its child "description". +func (n *Interface_SubinterfacePath) Description() *Interface_Subinterface_DescriptionPath { + return &Interface_Subinterface_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from Interface_SubinterfaceAny the path struct for its child "description". -func (n *Interface_SubinterfaceAny) Description() *Interface_Subinterface_DescriptionAny { - return &Interface_Subinterface_DescriptionAny{ +// Description returns from Interface_SubinterfacePathAny the path struct for its child "description". +func (n *Interface_SubinterfacePathAny) Description() *Interface_Subinterface_DescriptionPathAny { + return &Interface_Subinterface_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface the path struct for its child "enabled". -func (n *Interface_Subinterface) Enabled() *Interface_Subinterface_Enabled { - return &Interface_Subinterface_Enabled{ +// Enabled returns from Interface_SubinterfacePath the path struct for its child "enabled". +func (n *Interface_SubinterfacePath) Enabled() *Interface_Subinterface_EnabledPath { + return &Interface_Subinterface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_SubinterfaceAny the path struct for its child "enabled". -func (n *Interface_SubinterfaceAny) Enabled() *Interface_Subinterface_EnabledAny { - return &Interface_Subinterface_EnabledAny{ +// Enabled returns from Interface_SubinterfacePathAny the path struct for its child "enabled". +func (n *Interface_SubinterfacePathAny) Enabled() *Interface_Subinterface_EnabledPathAny { + return &Interface_Subinterface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ifindex returns from Interface_Subinterface the path struct for its child "ifindex". -func (n *Interface_Subinterface) Ifindex() *Interface_Subinterface_Ifindex { - return &Interface_Subinterface_Ifindex{ +// Ifindex returns from Interface_SubinterfacePath the path struct for its child "ifindex". +func (n *Interface_SubinterfacePath) Ifindex() *Interface_Subinterface_IfindexPath { + return &Interface_Subinterface_IfindexPath{ NodePath: ygot.NewNodePath( []string{"state", "ifindex"}, map[string]interface{}{}, @@ -48698,9 +48912,9 @@ func (n *Interface_Subinterface) Ifindex() *Interface_Subinterface_Ifindex { } } -// Ifindex returns from Interface_SubinterfaceAny the path struct for its child "ifindex". -func (n *Interface_SubinterfaceAny) Ifindex() *Interface_Subinterface_IfindexAny { - return &Interface_Subinterface_IfindexAny{ +// Ifindex returns from Interface_SubinterfacePathAny the path struct for its child "ifindex". +func (n *Interface_SubinterfacePathAny) Ifindex() *Interface_Subinterface_IfindexPathAny { + return &Interface_Subinterface_IfindexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ifindex"}, map[string]interface{}{}, @@ -48709,31 +48923,31 @@ func (n *Interface_SubinterfaceAny) Ifindex() *Interface_Subinterface_IfindexAny } } -// Index returns from Interface_Subinterface the path struct for its child "index". -func (n *Interface_Subinterface) Index() *Interface_Subinterface_Index { - return &Interface_Subinterface_Index{ +// Index returns from Interface_SubinterfacePath the path struct for its child "index". +func (n *Interface_SubinterfacePath) Index() *Interface_Subinterface_IndexPath { + return &Interface_Subinterface_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from Interface_SubinterfaceAny the path struct for its child "index". -func (n *Interface_SubinterfaceAny) Index() *Interface_Subinterface_IndexAny { - return &Interface_Subinterface_IndexAny{ +// Index returns from Interface_SubinterfacePathAny the path struct for its child "index". +func (n *Interface_SubinterfacePathAny) Index() *Interface_Subinterface_IndexPathAny { + return &Interface_Subinterface_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Ipv4 returns from Interface_Subinterface the path struct for its child "ipv4". -func (n *Interface_Subinterface) Ipv4() *Interface_Subinterface_Ipv4 { - return &Interface_Subinterface_Ipv4{ +// Ipv4 returns from Interface_SubinterfacePath the path struct for its child "ipv4". +func (n *Interface_SubinterfacePath) Ipv4() *Interface_Subinterface_Ipv4Path { + return &Interface_Subinterface_Ipv4Path{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -48742,9 +48956,9 @@ func (n *Interface_Subinterface) Ipv4() *Interface_Subinterface_Ipv4 { } } -// Ipv4 returns from Interface_SubinterfaceAny the path struct for its child "ipv4". -func (n *Interface_SubinterfaceAny) Ipv4() *Interface_Subinterface_Ipv4Any { - return &Interface_Subinterface_Ipv4Any{ +// Ipv4 returns from Interface_SubinterfacePathAny the path struct for its child "ipv4". +func (n *Interface_SubinterfacePathAny) Ipv4() *Interface_Subinterface_Ipv4PathAny { + return &Interface_Subinterface_Ipv4PathAny{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -48753,9 +48967,9 @@ func (n *Interface_SubinterfaceAny) Ipv4() *Interface_Subinterface_Ipv4Any { } } -// Ipv6 returns from Interface_Subinterface the path struct for its child "ipv6". -func (n *Interface_Subinterface) Ipv6() *Interface_Subinterface_Ipv6 { - return &Interface_Subinterface_Ipv6{ +// Ipv6 returns from Interface_SubinterfacePath the path struct for its child "ipv6". +func (n *Interface_SubinterfacePath) Ipv6() *Interface_Subinterface_Ipv6Path { + return &Interface_Subinterface_Ipv6Path{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -48764,9 +48978,9 @@ func (n *Interface_Subinterface) Ipv6() *Interface_Subinterface_Ipv6 { } } -// Ipv6 returns from Interface_SubinterfaceAny the path struct for its child "ipv6". -func (n *Interface_SubinterfaceAny) Ipv6() *Interface_Subinterface_Ipv6Any { - return &Interface_Subinterface_Ipv6Any{ +// Ipv6 returns from Interface_SubinterfacePathAny the path struct for its child "ipv6". +func (n *Interface_SubinterfacePathAny) Ipv6() *Interface_Subinterface_Ipv6PathAny { + return &Interface_Subinterface_Ipv6PathAny{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -48775,9 +48989,9 @@ func (n *Interface_SubinterfaceAny) Ipv6() *Interface_Subinterface_Ipv6Any { } } -// LastChange returns from Interface_Subinterface the path struct for its child "last-change". -func (n *Interface_Subinterface) LastChange() *Interface_Subinterface_LastChange { - return &Interface_Subinterface_LastChange{ +// LastChange returns from Interface_SubinterfacePath the path struct for its child "last-change". +func (n *Interface_SubinterfacePath) LastChange() *Interface_Subinterface_LastChangePath { + return &Interface_Subinterface_LastChangePath{ NodePath: ygot.NewNodePath( []string{"state", "last-change"}, map[string]interface{}{}, @@ -48786,9 +49000,9 @@ func (n *Interface_Subinterface) LastChange() *Interface_Subinterface_LastChange } } -// LastChange returns from Interface_SubinterfaceAny the path struct for its child "last-change". -func (n *Interface_SubinterfaceAny) LastChange() *Interface_Subinterface_LastChangeAny { - return &Interface_Subinterface_LastChangeAny{ +// LastChange returns from Interface_SubinterfacePathAny the path struct for its child "last-change". +func (n *Interface_SubinterfacePathAny) LastChange() *Interface_Subinterface_LastChangePathAny { + return &Interface_Subinterface_LastChangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-change"}, map[string]interface{}{}, @@ -48797,9 +49011,9 @@ func (n *Interface_SubinterfaceAny) LastChange() *Interface_Subinterface_LastCha } } -// Logical returns from Interface_Subinterface the path struct for its child "logical". -func (n *Interface_Subinterface) Logical() *Interface_Subinterface_Logical { - return &Interface_Subinterface_Logical{ +// Logical returns from Interface_SubinterfacePath the path struct for its child "logical". +func (n *Interface_SubinterfacePath) Logical() *Interface_Subinterface_LogicalPath { + return &Interface_Subinterface_LogicalPath{ NodePath: ygot.NewNodePath( []string{"state", "logical"}, map[string]interface{}{}, @@ -48808,9 +49022,9 @@ func (n *Interface_Subinterface) Logical() *Interface_Subinterface_Logical { } } -// Logical returns from Interface_SubinterfaceAny the path struct for its child "logical". -func (n *Interface_SubinterfaceAny) Logical() *Interface_Subinterface_LogicalAny { - return &Interface_Subinterface_LogicalAny{ +// Logical returns from Interface_SubinterfacePathAny the path struct for its child "logical". +func (n *Interface_SubinterfacePathAny) Logical() *Interface_Subinterface_LogicalPathAny { + return &Interface_Subinterface_LogicalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "logical"}, map[string]interface{}{}, @@ -48819,9 +49033,9 @@ func (n *Interface_SubinterfaceAny) Logical() *Interface_Subinterface_LogicalAny } } -// Name returns from Interface_Subinterface the path struct for its child "name". -func (n *Interface_Subinterface) Name() *Interface_Subinterface_Name { - return &Interface_Subinterface_Name{ +// Name returns from Interface_SubinterfacePath the path struct for its child "name". +func (n *Interface_SubinterfacePath) Name() *Interface_Subinterface_NamePath { + return &Interface_Subinterface_NamePath{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -48830,9 +49044,9 @@ func (n *Interface_Subinterface) Name() *Interface_Subinterface_Name { } } -// Name returns from Interface_SubinterfaceAny the path struct for its child "name". -func (n *Interface_SubinterfaceAny) Name() *Interface_Subinterface_NameAny { - return &Interface_Subinterface_NameAny{ +// Name returns from Interface_SubinterfacePathAny the path struct for its child "name". +func (n *Interface_SubinterfacePathAny) Name() *Interface_Subinterface_NamePathAny { + return &Interface_Subinterface_NamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -48841,9 +49055,9 @@ func (n *Interface_SubinterfaceAny) Name() *Interface_Subinterface_NameAny { } } -// OperStatus returns from Interface_Subinterface the path struct for its child "oper-status". -func (n *Interface_Subinterface) OperStatus() *Interface_Subinterface_OperStatus { - return &Interface_Subinterface_OperStatus{ +// OperStatus returns from Interface_SubinterfacePath the path struct for its child "oper-status". +func (n *Interface_SubinterfacePath) OperStatus() *Interface_Subinterface_OperStatusPath { + return &Interface_Subinterface_OperStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -48852,9 +49066,9 @@ func (n *Interface_Subinterface) OperStatus() *Interface_Subinterface_OperStatus } } -// OperStatus returns from Interface_SubinterfaceAny the path struct for its child "oper-status". -func (n *Interface_SubinterfaceAny) OperStatus() *Interface_Subinterface_OperStatusAny { - return &Interface_Subinterface_OperStatusAny{ +// OperStatus returns from Interface_SubinterfacePathAny the path struct for its child "oper-status". +func (n *Interface_SubinterfacePathAny) OperStatus() *Interface_Subinterface_OperStatusPathAny { + return &Interface_Subinterface_OperStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -48863,9 +49077,9 @@ func (n *Interface_SubinterfaceAny) OperStatus() *Interface_Subinterface_OperSta } } -// Vlan returns from Interface_Subinterface the path struct for its child "vlan". -func (n *Interface_Subinterface) Vlan() *Interface_Subinterface_Vlan { - return &Interface_Subinterface_Vlan{ +// Vlan returns from Interface_SubinterfacePath the path struct for its child "vlan". +func (n *Interface_SubinterfacePath) Vlan() *Interface_Subinterface_VlanPath { + return &Interface_Subinterface_VlanPath{ NodePath: ygot.NewNodePath( []string{"vlan"}, map[string]interface{}{}, @@ -48874,9 +49088,9 @@ func (n *Interface_Subinterface) Vlan() *Interface_Subinterface_Vlan { } } -// Vlan returns from Interface_SubinterfaceAny the path struct for its child "vlan". -func (n *Interface_SubinterfaceAny) Vlan() *Interface_Subinterface_VlanAny { - return &Interface_Subinterface_VlanAny{ +// Vlan returns from Interface_SubinterfacePathAny the path struct for its child "vlan". +func (n *Interface_SubinterfacePathAny) Vlan() *Interface_Subinterface_VlanPathAny { + return &Interface_Subinterface_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"vlan"}, map[string]interface{}{}, @@ -48885,199 +49099,199 @@ func (n *Interface_SubinterfaceAny) Vlan() *Interface_Subinterface_VlanAny { } } -// Interface_Subinterface_Counters represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters YANG schema element. -type Interface_Subinterface_Counters struct { +// Interface_Subinterface_CountersPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters YANG schema element. +type Interface_Subinterface_CountersPath struct { *ygot.NodePath } -// Interface_Subinterface_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters YANG schema element. -type Interface_Subinterface_CountersAny struct { +// Interface_Subinterface_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters YANG schema element. +type Interface_Subinterface_CountersPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_CarrierTransitions represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/carrier-transitions YANG schema element. -type Interface_Subinterface_Counters_CarrierTransitions struct { +// Interface_Subinterface_Counters_CarrierTransitionsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/carrier-transitions YANG schema element. +type Interface_Subinterface_Counters_CarrierTransitionsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_CarrierTransitionsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/carrier-transitions YANG schema element. -type Interface_Subinterface_Counters_CarrierTransitionsAny struct { +// Interface_Subinterface_Counters_CarrierTransitionsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/carrier-transitions YANG schema element. +type Interface_Subinterface_Counters_CarrierTransitionsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InBroadcastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-broadcast-pkts YANG schema element. -type Interface_Subinterface_Counters_InBroadcastPkts struct { +// Interface_Subinterface_Counters_InBroadcastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-broadcast-pkts YANG schema element. +type Interface_Subinterface_Counters_InBroadcastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InBroadcastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-broadcast-pkts YANG schema element. -type Interface_Subinterface_Counters_InBroadcastPktsAny struct { +// Interface_Subinterface_Counters_InBroadcastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-broadcast-pkts YANG schema element. +type Interface_Subinterface_Counters_InBroadcastPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InDiscards represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-discards YANG schema element. -type Interface_Subinterface_Counters_InDiscards struct { +// Interface_Subinterface_Counters_InDiscardsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-discards YANG schema element. +type Interface_Subinterface_Counters_InDiscardsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InDiscardsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-discards YANG schema element. -type Interface_Subinterface_Counters_InDiscardsAny struct { +// Interface_Subinterface_Counters_InDiscardsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-discards YANG schema element. +type Interface_Subinterface_Counters_InDiscardsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InErrors represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-errors YANG schema element. -type Interface_Subinterface_Counters_InErrors struct { +// Interface_Subinterface_Counters_InErrorsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-errors YANG schema element. +type Interface_Subinterface_Counters_InErrorsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-errors YANG schema element. -type Interface_Subinterface_Counters_InErrorsAny struct { +// Interface_Subinterface_Counters_InErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-errors YANG schema element. +type Interface_Subinterface_Counters_InErrorsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InFcsErrors represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-fcs-errors YANG schema element. -type Interface_Subinterface_Counters_InFcsErrors struct { +// Interface_Subinterface_Counters_InFcsErrorsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-fcs-errors YANG schema element. +type Interface_Subinterface_Counters_InFcsErrorsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InFcsErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-fcs-errors YANG schema element. -type Interface_Subinterface_Counters_InFcsErrorsAny struct { +// Interface_Subinterface_Counters_InFcsErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-fcs-errors YANG schema element. +type Interface_Subinterface_Counters_InFcsErrorsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InMulticastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-multicast-pkts YANG schema element. -type Interface_Subinterface_Counters_InMulticastPkts struct { +// Interface_Subinterface_Counters_InMulticastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-multicast-pkts YANG schema element. +type Interface_Subinterface_Counters_InMulticastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InMulticastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-multicast-pkts YANG schema element. -type Interface_Subinterface_Counters_InMulticastPktsAny struct { +// Interface_Subinterface_Counters_InMulticastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-multicast-pkts YANG schema element. +type Interface_Subinterface_Counters_InMulticastPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Counters_InOctets struct { +// Interface_Subinterface_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Counters_InOctetsAny struct { +// Interface_Subinterface_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Counters_InPkts struct { +// Interface_Subinterface_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Counters_InPktsAny struct { +// Interface_Subinterface_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InUnicastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unicast-pkts YANG schema element. -type Interface_Subinterface_Counters_InUnicastPkts struct { +// Interface_Subinterface_Counters_InUnicastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unicast-pkts YANG schema element. +type Interface_Subinterface_Counters_InUnicastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InUnicastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unicast-pkts YANG schema element. -type Interface_Subinterface_Counters_InUnicastPktsAny struct { +// Interface_Subinterface_Counters_InUnicastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unicast-pkts YANG schema element. +type Interface_Subinterface_Counters_InUnicastPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InUnknownProtos represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unknown-protos YANG schema element. -type Interface_Subinterface_Counters_InUnknownProtos struct { +// Interface_Subinterface_Counters_InUnknownProtosPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unknown-protos YANG schema element. +type Interface_Subinterface_Counters_InUnknownProtosPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_InUnknownProtosAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unknown-protos YANG schema element. -type Interface_Subinterface_Counters_InUnknownProtosAny struct { +// Interface_Subinterface_Counters_InUnknownProtosPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/in-unknown-protos YANG schema element. +type Interface_Subinterface_Counters_InUnknownProtosPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_LastClear represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/last-clear YANG schema element. -type Interface_Subinterface_Counters_LastClear struct { +// Interface_Subinterface_Counters_LastClearPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/last-clear YANG schema element. +type Interface_Subinterface_Counters_LastClearPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_LastClearAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/last-clear YANG schema element. -type Interface_Subinterface_Counters_LastClearAny struct { +// Interface_Subinterface_Counters_LastClearPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/last-clear YANG schema element. +type Interface_Subinterface_Counters_LastClearPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutBroadcastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-broadcast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutBroadcastPkts struct { +// Interface_Subinterface_Counters_OutBroadcastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-broadcast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutBroadcastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutBroadcastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-broadcast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutBroadcastPktsAny struct { +// Interface_Subinterface_Counters_OutBroadcastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-broadcast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutBroadcastPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutDiscards represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-discards YANG schema element. -type Interface_Subinterface_Counters_OutDiscards struct { +// Interface_Subinterface_Counters_OutDiscardsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-discards YANG schema element. +type Interface_Subinterface_Counters_OutDiscardsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutDiscardsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-discards YANG schema element. -type Interface_Subinterface_Counters_OutDiscardsAny struct { +// Interface_Subinterface_Counters_OutDiscardsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-discards YANG schema element. +type Interface_Subinterface_Counters_OutDiscardsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutErrors represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-errors YANG schema element. -type Interface_Subinterface_Counters_OutErrors struct { +// Interface_Subinterface_Counters_OutErrorsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-errors YANG schema element. +type Interface_Subinterface_Counters_OutErrorsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutErrorsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-errors YANG schema element. -type Interface_Subinterface_Counters_OutErrorsAny struct { +// Interface_Subinterface_Counters_OutErrorsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-errors YANG schema element. +type Interface_Subinterface_Counters_OutErrorsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutMulticastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-multicast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutMulticastPkts struct { +// Interface_Subinterface_Counters_OutMulticastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-multicast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutMulticastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutMulticastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-multicast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutMulticastPktsAny struct { +// Interface_Subinterface_Counters_OutMulticastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-multicast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutMulticastPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Counters_OutOctets struct { +// Interface_Subinterface_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Counters_OutOctetsAny struct { +// Interface_Subinterface_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Counters_OutPkts struct { +// Interface_Subinterface_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Counters_OutPktsAny struct { +// Interface_Subinterface_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Counters_OutPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutUnicastPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-unicast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutUnicastPkts struct { +// Interface_Subinterface_Counters_OutUnicastPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-unicast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutUnicastPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Counters_OutUnicastPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-unicast-pkts YANG schema element. -type Interface_Subinterface_Counters_OutUnicastPktsAny struct { +// Interface_Subinterface_Counters_OutUnicastPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/state/counters/out-unicast-pkts YANG schema element. +type Interface_Subinterface_Counters_OutUnicastPktsPathAny struct { *ygot.NodePath } -// CarrierTransitions returns from Interface_Subinterface_Counters the path struct for its child "carrier-transitions". -func (n *Interface_Subinterface_Counters) CarrierTransitions() *Interface_Subinterface_Counters_CarrierTransitions { - return &Interface_Subinterface_Counters_CarrierTransitions{ +// CarrierTransitions returns from Interface_Subinterface_CountersPath the path struct for its child "carrier-transitions". +func (n *Interface_Subinterface_CountersPath) CarrierTransitions() *Interface_Subinterface_Counters_CarrierTransitionsPath { + return &Interface_Subinterface_Counters_CarrierTransitionsPath{ NodePath: ygot.NewNodePath( []string{"carrier-transitions"}, map[string]interface{}{}, @@ -49086,9 +49300,9 @@ func (n *Interface_Subinterface_Counters) CarrierTransitions() *Interface_Subint } } -// CarrierTransitions returns from Interface_Subinterface_CountersAny the path struct for its child "carrier-transitions". -func (n *Interface_Subinterface_CountersAny) CarrierTransitions() *Interface_Subinterface_Counters_CarrierTransitionsAny { - return &Interface_Subinterface_Counters_CarrierTransitionsAny{ +// CarrierTransitions returns from Interface_Subinterface_CountersPathAny the path struct for its child "carrier-transitions". +func (n *Interface_Subinterface_CountersPathAny) CarrierTransitions() *Interface_Subinterface_Counters_CarrierTransitionsPathAny { + return &Interface_Subinterface_Counters_CarrierTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"carrier-transitions"}, map[string]interface{}{}, @@ -49097,9 +49311,9 @@ func (n *Interface_Subinterface_CountersAny) CarrierTransitions() *Interface_Sub } } -// InBroadcastPkts returns from Interface_Subinterface_Counters the path struct for its child "in-broadcast-pkts". -func (n *Interface_Subinterface_Counters) InBroadcastPkts() *Interface_Subinterface_Counters_InBroadcastPkts { - return &Interface_Subinterface_Counters_InBroadcastPkts{ +// InBroadcastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "in-broadcast-pkts". +func (n *Interface_Subinterface_CountersPath) InBroadcastPkts() *Interface_Subinterface_Counters_InBroadcastPktsPath { + return &Interface_Subinterface_Counters_InBroadcastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-broadcast-pkts"}, map[string]interface{}{}, @@ -49108,9 +49322,9 @@ func (n *Interface_Subinterface_Counters) InBroadcastPkts() *Interface_Subinterf } } -// InBroadcastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "in-broadcast-pkts". -func (n *Interface_Subinterface_CountersAny) InBroadcastPkts() *Interface_Subinterface_Counters_InBroadcastPktsAny { - return &Interface_Subinterface_Counters_InBroadcastPktsAny{ +// InBroadcastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-broadcast-pkts". +func (n *Interface_Subinterface_CountersPathAny) InBroadcastPkts() *Interface_Subinterface_Counters_InBroadcastPktsPathAny { + return &Interface_Subinterface_Counters_InBroadcastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-broadcast-pkts"}, map[string]interface{}{}, @@ -49119,9 +49333,9 @@ func (n *Interface_Subinterface_CountersAny) InBroadcastPkts() *Interface_Subint } } -// InDiscards returns from Interface_Subinterface_Counters the path struct for its child "in-discards". -func (n *Interface_Subinterface_Counters) InDiscards() *Interface_Subinterface_Counters_InDiscards { - return &Interface_Subinterface_Counters_InDiscards{ +// InDiscards returns from Interface_Subinterface_CountersPath the path struct for its child "in-discards". +func (n *Interface_Subinterface_CountersPath) InDiscards() *Interface_Subinterface_Counters_InDiscardsPath { + return &Interface_Subinterface_Counters_InDiscardsPath{ NodePath: ygot.NewNodePath( []string{"in-discards"}, map[string]interface{}{}, @@ -49130,9 +49344,9 @@ func (n *Interface_Subinterface_Counters) InDiscards() *Interface_Subinterface_C } } -// InDiscards returns from Interface_Subinterface_CountersAny the path struct for its child "in-discards". -func (n *Interface_Subinterface_CountersAny) InDiscards() *Interface_Subinterface_Counters_InDiscardsAny { - return &Interface_Subinterface_Counters_InDiscardsAny{ +// InDiscards returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-discards". +func (n *Interface_Subinterface_CountersPathAny) InDiscards() *Interface_Subinterface_Counters_InDiscardsPathAny { + return &Interface_Subinterface_Counters_InDiscardsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discards"}, map[string]interface{}{}, @@ -49141,9 +49355,9 @@ func (n *Interface_Subinterface_CountersAny) InDiscards() *Interface_Subinterfac } } -// InErrors returns from Interface_Subinterface_Counters the path struct for its child "in-errors". -func (n *Interface_Subinterface_Counters) InErrors() *Interface_Subinterface_Counters_InErrors { - return &Interface_Subinterface_Counters_InErrors{ +// InErrors returns from Interface_Subinterface_CountersPath the path struct for its child "in-errors". +func (n *Interface_Subinterface_CountersPath) InErrors() *Interface_Subinterface_Counters_InErrorsPath { + return &Interface_Subinterface_Counters_InErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-errors"}, map[string]interface{}{}, @@ -49152,9 +49366,9 @@ func (n *Interface_Subinterface_Counters) InErrors() *Interface_Subinterface_Cou } } -// InErrors returns from Interface_Subinterface_CountersAny the path struct for its child "in-errors". -func (n *Interface_Subinterface_CountersAny) InErrors() *Interface_Subinterface_Counters_InErrorsAny { - return &Interface_Subinterface_Counters_InErrorsAny{ +// InErrors returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-errors". +func (n *Interface_Subinterface_CountersPathAny) InErrors() *Interface_Subinterface_Counters_InErrorsPathAny { + return &Interface_Subinterface_Counters_InErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-errors"}, map[string]interface{}{}, @@ -49163,9 +49377,9 @@ func (n *Interface_Subinterface_CountersAny) InErrors() *Interface_Subinterface_ } } -// InFcsErrors returns from Interface_Subinterface_Counters the path struct for its child "in-fcs-errors". -func (n *Interface_Subinterface_Counters) InFcsErrors() *Interface_Subinterface_Counters_InFcsErrors { - return &Interface_Subinterface_Counters_InFcsErrors{ +// InFcsErrors returns from Interface_Subinterface_CountersPath the path struct for its child "in-fcs-errors". +func (n *Interface_Subinterface_CountersPath) InFcsErrors() *Interface_Subinterface_Counters_InFcsErrorsPath { + return &Interface_Subinterface_Counters_InFcsErrorsPath{ NodePath: ygot.NewNodePath( []string{"in-fcs-errors"}, map[string]interface{}{}, @@ -49174,9 +49388,9 @@ func (n *Interface_Subinterface_Counters) InFcsErrors() *Interface_Subinterface_ } } -// InFcsErrors returns from Interface_Subinterface_CountersAny the path struct for its child "in-fcs-errors". -func (n *Interface_Subinterface_CountersAny) InFcsErrors() *Interface_Subinterface_Counters_InFcsErrorsAny { - return &Interface_Subinterface_Counters_InFcsErrorsAny{ +// InFcsErrors returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-fcs-errors". +func (n *Interface_Subinterface_CountersPathAny) InFcsErrors() *Interface_Subinterface_Counters_InFcsErrorsPathAny { + return &Interface_Subinterface_Counters_InFcsErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"in-fcs-errors"}, map[string]interface{}{}, @@ -49185,9 +49399,9 @@ func (n *Interface_Subinterface_CountersAny) InFcsErrors() *Interface_Subinterfa } } -// InMulticastPkts returns from Interface_Subinterface_Counters the path struct for its child "in-multicast-pkts". -func (n *Interface_Subinterface_Counters) InMulticastPkts() *Interface_Subinterface_Counters_InMulticastPkts { - return &Interface_Subinterface_Counters_InMulticastPkts{ +// InMulticastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "in-multicast-pkts". +func (n *Interface_Subinterface_CountersPath) InMulticastPkts() *Interface_Subinterface_Counters_InMulticastPktsPath { + return &Interface_Subinterface_Counters_InMulticastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-multicast-pkts"}, map[string]interface{}{}, @@ -49196,9 +49410,9 @@ func (n *Interface_Subinterface_Counters) InMulticastPkts() *Interface_Subinterf } } -// InMulticastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "in-multicast-pkts". -func (n *Interface_Subinterface_CountersAny) InMulticastPkts() *Interface_Subinterface_Counters_InMulticastPktsAny { - return &Interface_Subinterface_Counters_InMulticastPktsAny{ +// InMulticastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-multicast-pkts". +func (n *Interface_Subinterface_CountersPathAny) InMulticastPkts() *Interface_Subinterface_Counters_InMulticastPktsPathAny { + return &Interface_Subinterface_Counters_InMulticastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-multicast-pkts"}, map[string]interface{}{}, @@ -49207,9 +49421,9 @@ func (n *Interface_Subinterface_CountersAny) InMulticastPkts() *Interface_Subint } } -// InOctets returns from Interface_Subinterface_Counters the path struct for its child "in-octets". -func (n *Interface_Subinterface_Counters) InOctets() *Interface_Subinterface_Counters_InOctets { - return &Interface_Subinterface_Counters_InOctets{ +// InOctets returns from Interface_Subinterface_CountersPath the path struct for its child "in-octets". +func (n *Interface_Subinterface_CountersPath) InOctets() *Interface_Subinterface_Counters_InOctetsPath { + return &Interface_Subinterface_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -49218,9 +49432,9 @@ func (n *Interface_Subinterface_Counters) InOctets() *Interface_Subinterface_Cou } } -// InOctets returns from Interface_Subinterface_CountersAny the path struct for its child "in-octets". -func (n *Interface_Subinterface_CountersAny) InOctets() *Interface_Subinterface_Counters_InOctetsAny { - return &Interface_Subinterface_Counters_InOctetsAny{ +// InOctets returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_Subinterface_CountersPathAny) InOctets() *Interface_Subinterface_Counters_InOctetsPathAny { + return &Interface_Subinterface_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -49229,9 +49443,9 @@ func (n *Interface_Subinterface_CountersAny) InOctets() *Interface_Subinterface_ } } -// InPkts returns from Interface_Subinterface_Counters the path struct for its child "in-pkts". -func (n *Interface_Subinterface_Counters) InPkts() *Interface_Subinterface_Counters_InPkts { - return &Interface_Subinterface_Counters_InPkts{ +// InPkts returns from Interface_Subinterface_CountersPath the path struct for its child "in-pkts". +func (n *Interface_Subinterface_CountersPath) InPkts() *Interface_Subinterface_Counters_InPktsPath { + return &Interface_Subinterface_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -49240,9 +49454,9 @@ func (n *Interface_Subinterface_Counters) InPkts() *Interface_Subinterface_Count } } -// InPkts returns from Interface_Subinterface_CountersAny the path struct for its child "in-pkts". -func (n *Interface_Subinterface_CountersAny) InPkts() *Interface_Subinterface_Counters_InPktsAny { - return &Interface_Subinterface_Counters_InPktsAny{ +// InPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_Subinterface_CountersPathAny) InPkts() *Interface_Subinterface_Counters_InPktsPathAny { + return &Interface_Subinterface_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -49251,9 +49465,9 @@ func (n *Interface_Subinterface_CountersAny) InPkts() *Interface_Subinterface_Co } } -// InUnicastPkts returns from Interface_Subinterface_Counters the path struct for its child "in-unicast-pkts". -func (n *Interface_Subinterface_Counters) InUnicastPkts() *Interface_Subinterface_Counters_InUnicastPkts { - return &Interface_Subinterface_Counters_InUnicastPkts{ +// InUnicastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "in-unicast-pkts". +func (n *Interface_Subinterface_CountersPath) InUnicastPkts() *Interface_Subinterface_Counters_InUnicastPktsPath { + return &Interface_Subinterface_Counters_InUnicastPktsPath{ NodePath: ygot.NewNodePath( []string{"in-unicast-pkts"}, map[string]interface{}{}, @@ -49262,9 +49476,9 @@ func (n *Interface_Subinterface_Counters) InUnicastPkts() *Interface_Subinterfac } } -// InUnicastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "in-unicast-pkts". -func (n *Interface_Subinterface_CountersAny) InUnicastPkts() *Interface_Subinterface_Counters_InUnicastPktsAny { - return &Interface_Subinterface_Counters_InUnicastPktsAny{ +// InUnicastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-unicast-pkts". +func (n *Interface_Subinterface_CountersPathAny) InUnicastPkts() *Interface_Subinterface_Counters_InUnicastPktsPathAny { + return &Interface_Subinterface_Counters_InUnicastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-unicast-pkts"}, map[string]interface{}{}, @@ -49273,9 +49487,9 @@ func (n *Interface_Subinterface_CountersAny) InUnicastPkts() *Interface_Subinter } } -// InUnknownProtos returns from Interface_Subinterface_Counters the path struct for its child "in-unknown-protos". -func (n *Interface_Subinterface_Counters) InUnknownProtos() *Interface_Subinterface_Counters_InUnknownProtos { - return &Interface_Subinterface_Counters_InUnknownProtos{ +// InUnknownProtos returns from Interface_Subinterface_CountersPath the path struct for its child "in-unknown-protos". +func (n *Interface_Subinterface_CountersPath) InUnknownProtos() *Interface_Subinterface_Counters_InUnknownProtosPath { + return &Interface_Subinterface_Counters_InUnknownProtosPath{ NodePath: ygot.NewNodePath( []string{"in-unknown-protos"}, map[string]interface{}{}, @@ -49284,9 +49498,9 @@ func (n *Interface_Subinterface_Counters) InUnknownProtos() *Interface_Subinterf } } -// InUnknownProtos returns from Interface_Subinterface_CountersAny the path struct for its child "in-unknown-protos". -func (n *Interface_Subinterface_CountersAny) InUnknownProtos() *Interface_Subinterface_Counters_InUnknownProtosAny { - return &Interface_Subinterface_Counters_InUnknownProtosAny{ +// InUnknownProtos returns from Interface_Subinterface_CountersPathAny the path struct for its child "in-unknown-protos". +func (n *Interface_Subinterface_CountersPathAny) InUnknownProtos() *Interface_Subinterface_Counters_InUnknownProtosPathAny { + return &Interface_Subinterface_Counters_InUnknownProtosPathAny{ NodePath: ygot.NewNodePath( []string{"in-unknown-protos"}, map[string]interface{}{}, @@ -49295,9 +49509,9 @@ func (n *Interface_Subinterface_CountersAny) InUnknownProtos() *Interface_Subint } } -// LastClear returns from Interface_Subinterface_Counters the path struct for its child "last-clear". -func (n *Interface_Subinterface_Counters) LastClear() *Interface_Subinterface_Counters_LastClear { - return &Interface_Subinterface_Counters_LastClear{ +// LastClear returns from Interface_Subinterface_CountersPath the path struct for its child "last-clear". +func (n *Interface_Subinterface_CountersPath) LastClear() *Interface_Subinterface_Counters_LastClearPath { + return &Interface_Subinterface_Counters_LastClearPath{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -49306,9 +49520,9 @@ func (n *Interface_Subinterface_Counters) LastClear() *Interface_Subinterface_Co } } -// LastClear returns from Interface_Subinterface_CountersAny the path struct for its child "last-clear". -func (n *Interface_Subinterface_CountersAny) LastClear() *Interface_Subinterface_Counters_LastClearAny { - return &Interface_Subinterface_Counters_LastClearAny{ +// LastClear returns from Interface_Subinterface_CountersPathAny the path struct for its child "last-clear". +func (n *Interface_Subinterface_CountersPathAny) LastClear() *Interface_Subinterface_Counters_LastClearPathAny { + return &Interface_Subinterface_Counters_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -49317,9 +49531,9 @@ func (n *Interface_Subinterface_CountersAny) LastClear() *Interface_Subinterface } } -// OutBroadcastPkts returns from Interface_Subinterface_Counters the path struct for its child "out-broadcast-pkts". -func (n *Interface_Subinterface_Counters) OutBroadcastPkts() *Interface_Subinterface_Counters_OutBroadcastPkts { - return &Interface_Subinterface_Counters_OutBroadcastPkts{ +// OutBroadcastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "out-broadcast-pkts". +func (n *Interface_Subinterface_CountersPath) OutBroadcastPkts() *Interface_Subinterface_Counters_OutBroadcastPktsPath { + return &Interface_Subinterface_Counters_OutBroadcastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-broadcast-pkts"}, map[string]interface{}{}, @@ -49328,9 +49542,9 @@ func (n *Interface_Subinterface_Counters) OutBroadcastPkts() *Interface_Subinter } } -// OutBroadcastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "out-broadcast-pkts". -func (n *Interface_Subinterface_CountersAny) OutBroadcastPkts() *Interface_Subinterface_Counters_OutBroadcastPktsAny { - return &Interface_Subinterface_Counters_OutBroadcastPktsAny{ +// OutBroadcastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-broadcast-pkts". +func (n *Interface_Subinterface_CountersPathAny) OutBroadcastPkts() *Interface_Subinterface_Counters_OutBroadcastPktsPathAny { + return &Interface_Subinterface_Counters_OutBroadcastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-broadcast-pkts"}, map[string]interface{}{}, @@ -49339,9 +49553,9 @@ func (n *Interface_Subinterface_CountersAny) OutBroadcastPkts() *Interface_Subin } } -// OutDiscards returns from Interface_Subinterface_Counters the path struct for its child "out-discards". -func (n *Interface_Subinterface_Counters) OutDiscards() *Interface_Subinterface_Counters_OutDiscards { - return &Interface_Subinterface_Counters_OutDiscards{ +// OutDiscards returns from Interface_Subinterface_CountersPath the path struct for its child "out-discards". +func (n *Interface_Subinterface_CountersPath) OutDiscards() *Interface_Subinterface_Counters_OutDiscardsPath { + return &Interface_Subinterface_Counters_OutDiscardsPath{ NodePath: ygot.NewNodePath( []string{"out-discards"}, map[string]interface{}{}, @@ -49350,9 +49564,9 @@ func (n *Interface_Subinterface_Counters) OutDiscards() *Interface_Subinterface_ } } -// OutDiscards returns from Interface_Subinterface_CountersAny the path struct for its child "out-discards". -func (n *Interface_Subinterface_CountersAny) OutDiscards() *Interface_Subinterface_Counters_OutDiscardsAny { - return &Interface_Subinterface_Counters_OutDiscardsAny{ +// OutDiscards returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-discards". +func (n *Interface_Subinterface_CountersPathAny) OutDiscards() *Interface_Subinterface_Counters_OutDiscardsPathAny { + return &Interface_Subinterface_Counters_OutDiscardsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discards"}, map[string]interface{}{}, @@ -49361,9 +49575,9 @@ func (n *Interface_Subinterface_CountersAny) OutDiscards() *Interface_Subinterfa } } -// OutErrors returns from Interface_Subinterface_Counters the path struct for its child "out-errors". -func (n *Interface_Subinterface_Counters) OutErrors() *Interface_Subinterface_Counters_OutErrors { - return &Interface_Subinterface_Counters_OutErrors{ +// OutErrors returns from Interface_Subinterface_CountersPath the path struct for its child "out-errors". +func (n *Interface_Subinterface_CountersPath) OutErrors() *Interface_Subinterface_Counters_OutErrorsPath { + return &Interface_Subinterface_Counters_OutErrorsPath{ NodePath: ygot.NewNodePath( []string{"out-errors"}, map[string]interface{}{}, @@ -49372,9 +49586,9 @@ func (n *Interface_Subinterface_Counters) OutErrors() *Interface_Subinterface_Co } } -// OutErrors returns from Interface_Subinterface_CountersAny the path struct for its child "out-errors". -func (n *Interface_Subinterface_CountersAny) OutErrors() *Interface_Subinterface_Counters_OutErrorsAny { - return &Interface_Subinterface_Counters_OutErrorsAny{ +// OutErrors returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-errors". +func (n *Interface_Subinterface_CountersPathAny) OutErrors() *Interface_Subinterface_Counters_OutErrorsPathAny { + return &Interface_Subinterface_Counters_OutErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"out-errors"}, map[string]interface{}{}, @@ -49383,9 +49597,9 @@ func (n *Interface_Subinterface_CountersAny) OutErrors() *Interface_Subinterface } } -// OutMulticastPkts returns from Interface_Subinterface_Counters the path struct for its child "out-multicast-pkts". -func (n *Interface_Subinterface_Counters) OutMulticastPkts() *Interface_Subinterface_Counters_OutMulticastPkts { - return &Interface_Subinterface_Counters_OutMulticastPkts{ +// OutMulticastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "out-multicast-pkts". +func (n *Interface_Subinterface_CountersPath) OutMulticastPkts() *Interface_Subinterface_Counters_OutMulticastPktsPath { + return &Interface_Subinterface_Counters_OutMulticastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-multicast-pkts"}, map[string]interface{}{}, @@ -49394,9 +49608,9 @@ func (n *Interface_Subinterface_Counters) OutMulticastPkts() *Interface_Subinter } } -// OutMulticastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "out-multicast-pkts". -func (n *Interface_Subinterface_CountersAny) OutMulticastPkts() *Interface_Subinterface_Counters_OutMulticastPktsAny { - return &Interface_Subinterface_Counters_OutMulticastPktsAny{ +// OutMulticastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-multicast-pkts". +func (n *Interface_Subinterface_CountersPathAny) OutMulticastPkts() *Interface_Subinterface_Counters_OutMulticastPktsPathAny { + return &Interface_Subinterface_Counters_OutMulticastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-multicast-pkts"}, map[string]interface{}{}, @@ -49405,9 +49619,9 @@ func (n *Interface_Subinterface_CountersAny) OutMulticastPkts() *Interface_Subin } } -// OutOctets returns from Interface_Subinterface_Counters the path struct for its child "out-octets". -func (n *Interface_Subinterface_Counters) OutOctets() *Interface_Subinterface_Counters_OutOctets { - return &Interface_Subinterface_Counters_OutOctets{ +// OutOctets returns from Interface_Subinterface_CountersPath the path struct for its child "out-octets". +func (n *Interface_Subinterface_CountersPath) OutOctets() *Interface_Subinterface_Counters_OutOctetsPath { + return &Interface_Subinterface_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -49416,9 +49630,9 @@ func (n *Interface_Subinterface_Counters) OutOctets() *Interface_Subinterface_Co } } -// OutOctets returns from Interface_Subinterface_CountersAny the path struct for its child "out-octets". -func (n *Interface_Subinterface_CountersAny) OutOctets() *Interface_Subinterface_Counters_OutOctetsAny { - return &Interface_Subinterface_Counters_OutOctetsAny{ +// OutOctets returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_Subinterface_CountersPathAny) OutOctets() *Interface_Subinterface_Counters_OutOctetsPathAny { + return &Interface_Subinterface_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -49427,9 +49641,9 @@ func (n *Interface_Subinterface_CountersAny) OutOctets() *Interface_Subinterface } } -// OutPkts returns from Interface_Subinterface_Counters the path struct for its child "out-pkts". -func (n *Interface_Subinterface_Counters) OutPkts() *Interface_Subinterface_Counters_OutPkts { - return &Interface_Subinterface_Counters_OutPkts{ +// OutPkts returns from Interface_Subinterface_CountersPath the path struct for its child "out-pkts". +func (n *Interface_Subinterface_CountersPath) OutPkts() *Interface_Subinterface_Counters_OutPktsPath { + return &Interface_Subinterface_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -49438,9 +49652,9 @@ func (n *Interface_Subinterface_Counters) OutPkts() *Interface_Subinterface_Coun } } -// OutPkts returns from Interface_Subinterface_CountersAny the path struct for its child "out-pkts". -func (n *Interface_Subinterface_CountersAny) OutPkts() *Interface_Subinterface_Counters_OutPktsAny { - return &Interface_Subinterface_Counters_OutPktsAny{ +// OutPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_Subinterface_CountersPathAny) OutPkts() *Interface_Subinterface_Counters_OutPktsPathAny { + return &Interface_Subinterface_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -49449,9 +49663,9 @@ func (n *Interface_Subinterface_CountersAny) OutPkts() *Interface_Subinterface_C } } -// OutUnicastPkts returns from Interface_Subinterface_Counters the path struct for its child "out-unicast-pkts". -func (n *Interface_Subinterface_Counters) OutUnicastPkts() *Interface_Subinterface_Counters_OutUnicastPkts { - return &Interface_Subinterface_Counters_OutUnicastPkts{ +// OutUnicastPkts returns from Interface_Subinterface_CountersPath the path struct for its child "out-unicast-pkts". +func (n *Interface_Subinterface_CountersPath) OutUnicastPkts() *Interface_Subinterface_Counters_OutUnicastPktsPath { + return &Interface_Subinterface_Counters_OutUnicastPktsPath{ NodePath: ygot.NewNodePath( []string{"out-unicast-pkts"}, map[string]interface{}{}, @@ -49460,9 +49674,9 @@ func (n *Interface_Subinterface_Counters) OutUnicastPkts() *Interface_Subinterfa } } -// OutUnicastPkts returns from Interface_Subinterface_CountersAny the path struct for its child "out-unicast-pkts". -func (n *Interface_Subinterface_CountersAny) OutUnicastPkts() *Interface_Subinterface_Counters_OutUnicastPktsAny { - return &Interface_Subinterface_Counters_OutUnicastPktsAny{ +// OutUnicastPkts returns from Interface_Subinterface_CountersPathAny the path struct for its child "out-unicast-pkts". +func (n *Interface_Subinterface_CountersPathAny) OutUnicastPkts() *Interface_Subinterface_Counters_OutUnicastPktsPathAny { + return &Interface_Subinterface_Counters_OutUnicastPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-unicast-pkts"}, map[string]interface{}{}, @@ -49471,49 +49685,49 @@ func (n *Interface_Subinterface_CountersAny) OutUnicastPkts() *Interface_Subinte } } -// Interface_Subinterface_Ipv4 represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4 YANG schema element. -type Interface_Subinterface_Ipv4 struct { +// Interface_Subinterface_Ipv4Path represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4 YANG schema element. +type Interface_Subinterface_Ipv4Path struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4Any represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4 YANG schema element. -type Interface_Subinterface_Ipv4Any struct { +// Interface_Subinterface_Ipv4PathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4 YANG schema element. +type Interface_Subinterface_Ipv4PathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_DhcpClient represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/dhcp-client YANG schema element. -type Interface_Subinterface_Ipv4_DhcpClient struct { +// Interface_Subinterface_Ipv4_DhcpClientPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/dhcp-client YANG schema element. +type Interface_Subinterface_Ipv4_DhcpClientPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_DhcpClientAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/dhcp-client YANG schema element. -type Interface_Subinterface_Ipv4_DhcpClientAny struct { +// Interface_Subinterface_Ipv4_DhcpClientPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/dhcp-client YANG schema element. +type Interface_Subinterface_Ipv4_DhcpClientPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Enabled represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/enabled YANG schema element. -type Interface_Subinterface_Ipv4_Enabled struct { +// Interface_Subinterface_Ipv4_EnabledPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/enabled YANG schema element. +type Interface_Subinterface_Ipv4_EnabledPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/enabled YANG schema element. -type Interface_Subinterface_Ipv4_EnabledAny struct { +// Interface_Subinterface_Ipv4_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/enabled YANG schema element. +type Interface_Subinterface_Ipv4_EnabledPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Mtu represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/mtu YANG schema element. -type Interface_Subinterface_Ipv4_Mtu struct { +// Interface_Subinterface_Ipv4_MtuPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/mtu YANG schema element. +type Interface_Subinterface_Ipv4_MtuPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_MtuAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/mtu YANG schema element. -type Interface_Subinterface_Ipv4_MtuAny struct { +// Interface_Subinterface_Ipv4_MtuPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/config/mtu YANG schema element. +type Interface_Subinterface_Ipv4_MtuPathAny struct { *ygot.NodePath } -// AddressAny returns from Interface_Subinterface_Ipv4 the path struct for its child "address". -func (n *Interface_Subinterface_Ipv4) AddressAny() *Interface_Subinterface_Ipv4_AddressAny { - return &Interface_Subinterface_Ipv4_AddressAny{ +// AddressAny returns from Interface_Subinterface_Ipv4Path the path struct for its child "address". +func (n *Interface_Subinterface_Ipv4Path) AddressAny() *Interface_Subinterface_Ipv4_AddressPathAny { + return &Interface_Subinterface_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -49522,9 +49736,9 @@ func (n *Interface_Subinterface_Ipv4) AddressAny() *Interface_Subinterface_Ipv4_ } } -// AddressAny returns from Interface_Subinterface_Ipv4Any the path struct for its child "address". -func (n *Interface_Subinterface_Ipv4Any) AddressAny() *Interface_Subinterface_Ipv4_AddressAny { - return &Interface_Subinterface_Ipv4_AddressAny{ +// AddressAny returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "address". +func (n *Interface_Subinterface_Ipv4PathAny) AddressAny() *Interface_Subinterface_Ipv4_AddressPathAny { + return &Interface_Subinterface_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -49533,9 +49747,9 @@ func (n *Interface_Subinterface_Ipv4Any) AddressAny() *Interface_Subinterface_Ip } } -// Address returns from Interface_Subinterface_Ipv4 the path struct for its child "address". -func (n *Interface_Subinterface_Ipv4) Address(Ip string) *Interface_Subinterface_Ipv4_Address { - return &Interface_Subinterface_Ipv4_Address{ +// Address returns from Interface_Subinterface_Ipv4Path the path struct for its child "address". +func (n *Interface_Subinterface_Ipv4Path) Address(Ip string) *Interface_Subinterface_Ipv4_AddressPath { + return &Interface_Subinterface_Ipv4_AddressPath{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -49544,9 +49758,9 @@ func (n *Interface_Subinterface_Ipv4) Address(Ip string) *Interface_Subinterface } } -// Address returns from Interface_Subinterface_Ipv4Any the path struct for its child "address". -func (n *Interface_Subinterface_Ipv4Any) Address(Ip string) *Interface_Subinterface_Ipv4_AddressAny { - return &Interface_Subinterface_Ipv4_AddressAny{ +// Address returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "address". +func (n *Interface_Subinterface_Ipv4PathAny) Address(Ip string) *Interface_Subinterface_Ipv4_AddressPathAny { + return &Interface_Subinterface_Ipv4_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -49555,9 +49769,9 @@ func (n *Interface_Subinterface_Ipv4Any) Address(Ip string) *Interface_Subinterf } } -// Counters returns from Interface_Subinterface_Ipv4 the path struct for its child "counters". -func (n *Interface_Subinterface_Ipv4) Counters() *Interface_Subinterface_Ipv4_Counters { - return &Interface_Subinterface_Ipv4_Counters{ +// Counters returns from Interface_Subinterface_Ipv4Path the path struct for its child "counters". +func (n *Interface_Subinterface_Ipv4Path) Counters() *Interface_Subinterface_Ipv4_CountersPath { + return &Interface_Subinterface_Ipv4_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -49566,9 +49780,9 @@ func (n *Interface_Subinterface_Ipv4) Counters() *Interface_Subinterface_Ipv4_Co } } -// Counters returns from Interface_Subinterface_Ipv4Any the path struct for its child "counters". -func (n *Interface_Subinterface_Ipv4Any) Counters() *Interface_Subinterface_Ipv4_CountersAny { - return &Interface_Subinterface_Ipv4_CountersAny{ +// Counters returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "counters". +func (n *Interface_Subinterface_Ipv4PathAny) Counters() *Interface_Subinterface_Ipv4_CountersPathAny { + return &Interface_Subinterface_Ipv4_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -49577,75 +49791,75 @@ func (n *Interface_Subinterface_Ipv4Any) Counters() *Interface_Subinterface_Ipv4 } } -// DhcpClient returns from Interface_Subinterface_Ipv4 the path struct for its child "dhcp-client". -func (n *Interface_Subinterface_Ipv4) DhcpClient() *Interface_Subinterface_Ipv4_DhcpClient { - return &Interface_Subinterface_Ipv4_DhcpClient{ +// DhcpClient returns from Interface_Subinterface_Ipv4Path the path struct for its child "dhcp-client". +func (n *Interface_Subinterface_Ipv4Path) DhcpClient() *Interface_Subinterface_Ipv4_DhcpClientPath { + return &Interface_Subinterface_Ipv4_DhcpClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DhcpClient returns from Interface_Subinterface_Ipv4Any the path struct for its child "dhcp-client". -func (n *Interface_Subinterface_Ipv4Any) DhcpClient() *Interface_Subinterface_Ipv4_DhcpClientAny { - return &Interface_Subinterface_Ipv4_DhcpClientAny{ +// DhcpClient returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "dhcp-client". +func (n *Interface_Subinterface_Ipv4PathAny) DhcpClient() *Interface_Subinterface_Ipv4_DhcpClientPathAny { + return &Interface_Subinterface_Ipv4_DhcpClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv4 the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv4) Enabled() *Interface_Subinterface_Ipv4_Enabled { - return &Interface_Subinterface_Ipv4_Enabled{ +// Enabled returns from Interface_Subinterface_Ipv4Path the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv4Path) Enabled() *Interface_Subinterface_Ipv4_EnabledPath { + return &Interface_Subinterface_Ipv4_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv4Any the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv4Any) Enabled() *Interface_Subinterface_Ipv4_EnabledAny { - return &Interface_Subinterface_Ipv4_EnabledAny{ +// Enabled returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv4PathAny) Enabled() *Interface_Subinterface_Ipv4_EnabledPathAny { + return &Interface_Subinterface_Ipv4_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_Subinterface_Ipv4 the path struct for its child "mtu". -func (n *Interface_Subinterface_Ipv4) Mtu() *Interface_Subinterface_Ipv4_Mtu { - return &Interface_Subinterface_Ipv4_Mtu{ +// Mtu returns from Interface_Subinterface_Ipv4Path the path struct for its child "mtu". +func (n *Interface_Subinterface_Ipv4Path) Mtu() *Interface_Subinterface_Ipv4_MtuPath { + return &Interface_Subinterface_Ipv4_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_Subinterface_Ipv4Any the path struct for its child "mtu". -func (n *Interface_Subinterface_Ipv4Any) Mtu() *Interface_Subinterface_Ipv4_MtuAny { - return &Interface_Subinterface_Ipv4_MtuAny{ +// Mtu returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "mtu". +func (n *Interface_Subinterface_Ipv4PathAny) Mtu() *Interface_Subinterface_Ipv4_MtuPathAny { + return &Interface_Subinterface_Ipv4_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from Interface_Subinterface_Ipv4 the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv4) NeighborAny() *Interface_Subinterface_Ipv4_NeighborAny { - return &Interface_Subinterface_Ipv4_NeighborAny{ +// NeighborAny returns from Interface_Subinterface_Ipv4Path the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv4Path) NeighborAny() *Interface_Subinterface_Ipv4_NeighborPathAny { + return &Interface_Subinterface_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -49654,9 +49868,9 @@ func (n *Interface_Subinterface_Ipv4) NeighborAny() *Interface_Subinterface_Ipv4 } } -// NeighborAny returns from Interface_Subinterface_Ipv4Any the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv4Any) NeighborAny() *Interface_Subinterface_Ipv4_NeighborAny { - return &Interface_Subinterface_Ipv4_NeighborAny{ +// NeighborAny returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv4PathAny) NeighborAny() *Interface_Subinterface_Ipv4_NeighborPathAny { + return &Interface_Subinterface_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -49665,9 +49879,9 @@ func (n *Interface_Subinterface_Ipv4Any) NeighborAny() *Interface_Subinterface_I } } -// Neighbor returns from Interface_Subinterface_Ipv4 the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv4) Neighbor(Ip string) *Interface_Subinterface_Ipv4_Neighbor { - return &Interface_Subinterface_Ipv4_Neighbor{ +// Neighbor returns from Interface_Subinterface_Ipv4Path the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv4Path) Neighbor(Ip string) *Interface_Subinterface_Ipv4_NeighborPath { + return &Interface_Subinterface_Ipv4_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -49676,9 +49890,9 @@ func (n *Interface_Subinterface_Ipv4) Neighbor(Ip string) *Interface_Subinterfac } } -// Neighbor returns from Interface_Subinterface_Ipv4Any the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv4Any) Neighbor(Ip string) *Interface_Subinterface_Ipv4_NeighborAny { - return &Interface_Subinterface_Ipv4_NeighborAny{ +// Neighbor returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv4PathAny) Neighbor(Ip string) *Interface_Subinterface_Ipv4_NeighborPathAny { + return &Interface_Subinterface_Ipv4_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -49687,9 +49901,9 @@ func (n *Interface_Subinterface_Ipv4Any) Neighbor(Ip string) *Interface_Subinter } } -// ProxyArp returns from Interface_Subinterface_Ipv4 the path struct for its child "proxy-arp". -func (n *Interface_Subinterface_Ipv4) ProxyArp() *Interface_Subinterface_Ipv4_ProxyArp { - return &Interface_Subinterface_Ipv4_ProxyArp{ +// ProxyArp returns from Interface_Subinterface_Ipv4Path the path struct for its child "proxy-arp". +func (n *Interface_Subinterface_Ipv4Path) ProxyArp() *Interface_Subinterface_Ipv4_ProxyArpPath { + return &Interface_Subinterface_Ipv4_ProxyArpPath{ NodePath: ygot.NewNodePath( []string{"proxy-arp"}, map[string]interface{}{}, @@ -49698,9 +49912,9 @@ func (n *Interface_Subinterface_Ipv4) ProxyArp() *Interface_Subinterface_Ipv4_Pr } } -// ProxyArp returns from Interface_Subinterface_Ipv4Any the path struct for its child "proxy-arp". -func (n *Interface_Subinterface_Ipv4Any) ProxyArp() *Interface_Subinterface_Ipv4_ProxyArpAny { - return &Interface_Subinterface_Ipv4_ProxyArpAny{ +// ProxyArp returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "proxy-arp". +func (n *Interface_Subinterface_Ipv4PathAny) ProxyArp() *Interface_Subinterface_Ipv4_ProxyArpPathAny { + return &Interface_Subinterface_Ipv4_ProxyArpPathAny{ NodePath: ygot.NewNodePath( []string{"proxy-arp"}, map[string]interface{}{}, @@ -49709,9 +49923,9 @@ func (n *Interface_Subinterface_Ipv4Any) ProxyArp() *Interface_Subinterface_Ipv4 } } -// Unnumbered returns from Interface_Subinterface_Ipv4 the path struct for its child "unnumbered". -func (n *Interface_Subinterface_Ipv4) Unnumbered() *Interface_Subinterface_Ipv4_Unnumbered { - return &Interface_Subinterface_Ipv4_Unnumbered{ +// Unnumbered returns from Interface_Subinterface_Ipv4Path the path struct for its child "unnumbered". +func (n *Interface_Subinterface_Ipv4Path) Unnumbered() *Interface_Subinterface_Ipv4_UnnumberedPath { + return &Interface_Subinterface_Ipv4_UnnumberedPath{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -49720,9 +49934,9 @@ func (n *Interface_Subinterface_Ipv4) Unnumbered() *Interface_Subinterface_Ipv4_ } } -// Unnumbered returns from Interface_Subinterface_Ipv4Any the path struct for its child "unnumbered". -func (n *Interface_Subinterface_Ipv4Any) Unnumbered() *Interface_Subinterface_Ipv4_UnnumberedAny { - return &Interface_Subinterface_Ipv4_UnnumberedAny{ +// Unnumbered returns from Interface_Subinterface_Ipv4PathAny the path struct for its child "unnumbered". +func (n *Interface_Subinterface_Ipv4PathAny) Unnumbered() *Interface_Subinterface_Ipv4_UnnumberedPathAny { + return &Interface_Subinterface_Ipv4_UnnumberedPathAny{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -49731,71 +49945,71 @@ func (n *Interface_Subinterface_Ipv4Any) Unnumbered() *Interface_Subinterface_Ip } } -// Interface_Subinterface_Ipv4_Address represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address YANG schema element. -type Interface_Subinterface_Ipv4_Address struct { +// Interface_Subinterface_Ipv4_AddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address YANG schema element. +type Interface_Subinterface_Ipv4_AddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_AddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address YANG schema element. -type Interface_Subinterface_Ipv4_AddressAny struct { +// Interface_Subinterface_Ipv4_AddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address YANG schema element. +type Interface_Subinterface_Ipv4_AddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_Ip represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/ip YANG schema element. -type Interface_Subinterface_Ipv4_Address_Ip struct { +// Interface_Subinterface_Ipv4_Address_IpPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/config/ip YANG schema element. +type Interface_Subinterface_Ipv4_Address_IpPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/ip YANG schema element. -type Interface_Subinterface_Ipv4_Address_IpAny struct { +// Interface_Subinterface_Ipv4_Address_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/config/ip YANG schema element. +type Interface_Subinterface_Ipv4_Address_IpPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_Origin represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/origin YANG schema element. -type Interface_Subinterface_Ipv4_Address_Origin struct { +// Interface_Subinterface_Ipv4_Address_OriginPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/origin YANG schema element. +type Interface_Subinterface_Ipv4_Address_OriginPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/origin YANG schema element. -type Interface_Subinterface_Ipv4_Address_OriginAny struct { +// Interface_Subinterface_Ipv4_Address_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/origin YANG schema element. +type Interface_Subinterface_Ipv4_Address_OriginPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_PrefixLength represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/prefix-length YANG schema element. -type Interface_Subinterface_Ipv4_Address_PrefixLength struct { +// Interface_Subinterface_Ipv4_Address_PrefixLengthPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/config/prefix-length YANG schema element. +type Interface_Subinterface_Ipv4_Address_PrefixLengthPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_PrefixLengthAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/state/prefix-length YANG schema element. -type Interface_Subinterface_Ipv4_Address_PrefixLengthAny struct { +// Interface_Subinterface_Ipv4_Address_PrefixLengthPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/config/prefix-length YANG schema element. +type Interface_Subinterface_Ipv4_Address_PrefixLengthPathAny struct { *ygot.NodePath } -// Ip returns from Interface_Subinterface_Ipv4_Address the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv4_Address) Ip() *Interface_Subinterface_Ipv4_Address_Ip { - return &Interface_Subinterface_Ipv4_Address_Ip{ +// Ip returns from Interface_Subinterface_Ipv4_AddressPath the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv4_AddressPath) Ip() *Interface_Subinterface_Ipv4_Address_IpPath { + return &Interface_Subinterface_Ipv4_Address_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_Subinterface_Ipv4_AddressAny the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv4_AddressAny) Ip() *Interface_Subinterface_Ipv4_Address_IpAny { - return &Interface_Subinterface_Ipv4_Address_IpAny{ +// Ip returns from Interface_Subinterface_Ipv4_AddressPathAny the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv4_AddressPathAny) Ip() *Interface_Subinterface_Ipv4_Address_IpPathAny { + return &Interface_Subinterface_Ipv4_Address_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_Subinterface_Ipv4_Address the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv4_Address) Origin() *Interface_Subinterface_Ipv4_Address_Origin { - return &Interface_Subinterface_Ipv4_Address_Origin{ +// Origin returns from Interface_Subinterface_Ipv4_AddressPath the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv4_AddressPath) Origin() *Interface_Subinterface_Ipv4_Address_OriginPath { + return &Interface_Subinterface_Ipv4_Address_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -49804,9 +50018,9 @@ func (n *Interface_Subinterface_Ipv4_Address) Origin() *Interface_Subinterface_I } } -// Origin returns from Interface_Subinterface_Ipv4_AddressAny the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv4_AddressAny) Origin() *Interface_Subinterface_Ipv4_Address_OriginAny { - return &Interface_Subinterface_Ipv4_Address_OriginAny{ +// Origin returns from Interface_Subinterface_Ipv4_AddressPathAny the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv4_AddressPathAny) Origin() *Interface_Subinterface_Ipv4_Address_OriginPathAny { + return &Interface_Subinterface_Ipv4_Address_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -49815,31 +50029,31 @@ func (n *Interface_Subinterface_Ipv4_AddressAny) Origin() *Interface_Subinterfac } } -// PrefixLength returns from Interface_Subinterface_Ipv4_Address the path struct for its child "prefix-length". -func (n *Interface_Subinterface_Ipv4_Address) PrefixLength() *Interface_Subinterface_Ipv4_Address_PrefixLength { - return &Interface_Subinterface_Ipv4_Address_PrefixLength{ +// PrefixLength returns from Interface_Subinterface_Ipv4_AddressPath the path struct for its child "prefix-length". +func (n *Interface_Subinterface_Ipv4_AddressPath) PrefixLength() *Interface_Subinterface_Ipv4_Address_PrefixLengthPath { + return &Interface_Subinterface_Ipv4_Address_PrefixLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// PrefixLength returns from Interface_Subinterface_Ipv4_AddressAny the path struct for its child "prefix-length". -func (n *Interface_Subinterface_Ipv4_AddressAny) PrefixLength() *Interface_Subinterface_Ipv4_Address_PrefixLengthAny { - return &Interface_Subinterface_Ipv4_Address_PrefixLengthAny{ +// PrefixLength returns from Interface_Subinterface_Ipv4_AddressPathAny the path struct for its child "prefix-length". +func (n *Interface_Subinterface_Ipv4_AddressPathAny) PrefixLength() *Interface_Subinterface_Ipv4_Address_PrefixLengthPathAny { + return &Interface_Subinterface_Ipv4_Address_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// VrrpGroupAny returns from Interface_Subinterface_Ipv4_Address the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv4_Address) VrrpGroupAny() *Interface_Subinterface_Ipv4_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_Subinterface_Ipv4_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv4_AddressPath) VrrpGroupAny() *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -49848,9 +50062,9 @@ func (n *Interface_Subinterface_Ipv4_Address) VrrpGroupAny() *Interface_Subinter } } -// VrrpGroupAny returns from Interface_Subinterface_Ipv4_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv4_AddressAny) VrrpGroupAny() *Interface_Subinterface_Ipv4_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_Subinterface_Ipv4_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv4_AddressPathAny) VrrpGroupAny() *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -49859,9 +50073,9 @@ func (n *Interface_Subinterface_Ipv4_AddressAny) VrrpGroupAny() *Interface_Subin } } -// VrrpGroup returns from Interface_Subinterface_Ipv4_Address the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv4_Address) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv4_Address_VrrpGroup { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup{ +// VrrpGroup returns from Interface_Subinterface_Ipv4_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv4_AddressPath) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv4_Address_VrrpGroupPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroupPath{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -49870,9 +50084,9 @@ func (n *Interface_Subinterface_Ipv4_Address) VrrpGroup(VirtualRouterId uint8) * } } -// VrrpGroup returns from Interface_Subinterface_Ipv4_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv4_AddressAny) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv4_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroupAny{ +// VrrpGroup returns from Interface_Subinterface_Ipv4_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv4_AddressPathAny) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -49881,143 +50095,143 @@ func (n *Interface_Subinterface_Ipv4_AddressAny) VrrpGroup(VirtualRouterId uint8 } } -// Interface_Subinterface_Ipv4_Address_VrrpGroup represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroupPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroupPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroupAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroupAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptMode represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptMode struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModeAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementInterval represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementInterval struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriority represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriority struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_Preempt represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_Preempt struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelay represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelay struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_Priority represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_Priority struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddress represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddress struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterId struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny struct { *ygot.NodePath } -// AcceptMode returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "accept-mode". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) AcceptMode() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptMode { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptMode{ +// AcceptMode returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "accept-mode". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) AcceptMode() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePath{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AcceptMode returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "accept-mode". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) AcceptMode() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModeAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModeAny{ +// AcceptMode returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "accept-mode". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) AcceptMode() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AcceptModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "advertisement-interval". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) AdvertisementInterval() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementInterval { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementInterval{ +// AdvertisementInterval returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "advertisement-interval". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) AdvertisementInterval() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "advertisement-interval". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) AdvertisementInterval() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalAny{ +// AdvertisementInterval returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "advertisement-interval". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) AdvertisementInterval() *Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_AdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// CurrentPriority returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "current-priority". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) CurrentPriority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriority { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriority{ +// CurrentPriority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "current-priority". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) CurrentPriority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -50026,9 +50240,9 @@ func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) CurrentPriority() *Inter } } -// CurrentPriority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "current-priority". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) CurrentPriority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityAny{ +// CurrentPriority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "current-priority". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) CurrentPriority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_CurrentPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -50037,9 +50251,9 @@ func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) CurrentPriority() *In } } -// InterfaceTracking returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "interface-tracking". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) InterfaceTracking() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking{ +// InterfaceTracking returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "interface-tracking". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) InterfaceTracking() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -50048,9 +50262,9 @@ func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) InterfaceTracking() *Int } } -// InterfaceTracking returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "interface-tracking". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) InterfaceTracking() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny{ +// InterfaceTracking returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "interface-tracking". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) InterfaceTracking() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -50059,323 +50273,323 @@ func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) InterfaceTracking() * } } -// Preempt returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "preempt". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) Preempt() *Interface_Subinterface_Ipv4_Address_VrrpGroup_Preempt { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_Preempt{ +// Preempt returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "preempt". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) Preempt() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// Preempt returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "preempt". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) Preempt() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptAny{ +// Preempt returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "preempt". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) Preempt() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "preempt-delay". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) PreemptDelay() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelay { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelay{ +// PreemptDelay returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "preempt-delay". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) PreemptDelay() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "preempt-delay". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) PreemptDelay() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayAny{ +// PreemptDelay returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "preempt-delay". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) PreemptDelay() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PreemptDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "priority". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) Priority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_Priority { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_Priority{ +// Priority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "priority". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) Priority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "priority". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) Priority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityAny{ +// Priority returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "priority". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) Priority() *Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "virtual-address". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) VirtualAddress() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddress { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddress{ +// VirtualAddress returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "virtual-address". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) VirtualAddress() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "virtual-address". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) VirtualAddress() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressAny{ +// VirtualAddress returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "virtual-address". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) VirtualAddress() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_Subinterface_Ipv4_Address_VrrpGroup the path struct for its child "virtual-router-id". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup) VirtualRouterId() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterId { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterId{ +// VirtualRouterId returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPath the path struct for its child "virtual-router-id". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPath) VirtualRouterId() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_Subinterface_Ipv4_Address_VrrpGroupAny the path struct for its child "virtual-router-id". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupAny) VirtualRouterId() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdAny{ +// VirtualRouterId returns from Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny the path struct for its child "virtual-router-id". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroupPathAny) VirtualRouterId() *Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_VirtualRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny struct { +// Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny struct { *ygot.NodePath } -// PriorityDecrement returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking the path struct for its child "priority-decrement". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking) PriorityDecrement() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrement{ +// PriorityDecrement returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "priority-decrement". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath) PriorityDecrement() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// PriorityDecrement returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "priority-decrement". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny) PriorityDecrement() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny{ +// PriorityDecrement returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "priority-decrement". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny) PriorityDecrement() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking the path struct for its child "track-interface". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking) TrackInterface() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterface{ +// TrackInterface returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "track-interface". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPath) TrackInterface() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "track-interface". -func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingAny) TrackInterface() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny { - return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny{ +// TrackInterface returns from Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "track-interface". +func (n *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTrackingPathAny) TrackInterface() *Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny { + return &Interface_Subinterface_Ipv4_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv4_Counters represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters YANG schema element. -type Interface_Subinterface_Ipv4_Counters struct { +// Interface_Subinterface_Ipv4_CountersPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters YANG schema element. +type Interface_Subinterface_Ipv4_CountersPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters YANG schema element. -type Interface_Subinterface_Ipv4_CountersAny struct { +// Interface_Subinterface_Ipv4_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters YANG schema element. +type Interface_Subinterface_Ipv4_CountersPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InDiscardedPkts struct { +// Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InDiscardedPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InErrorPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-error-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InErrorPkts struct { +// Interface_Subinterface_Ipv4_Counters_InErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-error-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InErrorPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-error-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InErrorPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_InErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-error-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InErrorPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InForwardedOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InForwardedOctets struct { +// Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InForwardedOctetsAny struct { +// Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InForwardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InForwardedPkts struct { +// Interface_Subinterface_Ipv4_Counters_InForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InForwardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InForwardedPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_InForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InOctets struct { +// Interface_Subinterface_Ipv4_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InOctetsAny struct { +// Interface_Subinterface_Ipv4_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InPkts struct { +// Interface_Subinterface_Ipv4_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_InPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutDiscardedPkts struct { +// Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutErrorPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-error-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutErrorPkts struct { +// Interface_Subinterface_Ipv4_Counters_OutErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-error-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutErrorPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-error-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutErrorPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-error-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutErrorPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutForwardedOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutForwardedOctets struct { +// Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutForwardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutForwardedPkts struct { +// Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutForwardedPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutOctets struct { +// Interface_Subinterface_Ipv4_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutOctetsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutPkts struct { +// Interface_Subinterface_Ipv4_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Ipv4_Counters_OutPktsAny struct { +// Interface_Subinterface_Ipv4_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Ipv4_Counters_OutPktsPathAny struct { *ygot.NodePath } -// InDiscardedPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-discarded-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) InDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_InDiscardedPkts { - return &Interface_Subinterface_Ipv4_Counters_InDiscardedPkts{ +// InDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-discarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) InDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPath { + return &Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -50384,9 +50598,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InDiscardedPkts() *Interface_Subi } } -// InDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-discarded-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) InDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_InDiscardedPktsAny { - return &Interface_Subinterface_Ipv4_Counters_InDiscardedPktsAny{ +// InDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-discarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -50395,9 +50609,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InDiscardedPkts() *Interface_S } } -// InErrorPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-error-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) InErrorPkts() *Interface_Subinterface_Ipv4_Counters_InErrorPkts { - return &Interface_Subinterface_Ipv4_Counters_InErrorPkts{ +// InErrorPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-error-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) InErrorPkts() *Interface_Subinterface_Ipv4_Counters_InErrorPktsPath { + return &Interface_Subinterface_Ipv4_Counters_InErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -50406,9 +50620,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InErrorPkts() *Interface_Subinter } } -// InErrorPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-error-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) InErrorPkts() *Interface_Subinterface_Ipv4_Counters_InErrorPktsAny { - return &Interface_Subinterface_Ipv4_Counters_InErrorPktsAny{ +// InErrorPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-error-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InErrorPkts() *Interface_Subinterface_Ipv4_Counters_InErrorPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -50417,9 +50631,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InErrorPkts() *Interface_Subin } } -// InForwardedOctets returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-forwarded-octets". -func (n *Interface_Subinterface_Ipv4_Counters) InForwardedOctets() *Interface_Subinterface_Ipv4_Counters_InForwardedOctets { - return &Interface_Subinterface_Ipv4_Counters_InForwardedOctets{ +// InForwardedOctets returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-forwarded-octets". +func (n *Interface_Subinterface_Ipv4_CountersPath) InForwardedOctets() *Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPath { + return &Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -50428,9 +50642,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InForwardedOctets() *Interface_Su } } -// InForwardedOctets returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-forwarded-octets". -func (n *Interface_Subinterface_Ipv4_CountersAny) InForwardedOctets() *Interface_Subinterface_Ipv4_Counters_InForwardedOctetsAny { - return &Interface_Subinterface_Ipv4_Counters_InForwardedOctetsAny{ +// InForwardedOctets returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-forwarded-octets". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InForwardedOctets() *Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -50439,9 +50653,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InForwardedOctets() *Interface } } -// InForwardedPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-forwarded-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) InForwardedPkts() *Interface_Subinterface_Ipv4_Counters_InForwardedPkts { - return &Interface_Subinterface_Ipv4_Counters_InForwardedPkts{ +// InForwardedPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-forwarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) InForwardedPkts() *Interface_Subinterface_Ipv4_Counters_InForwardedPktsPath { + return &Interface_Subinterface_Ipv4_Counters_InForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -50450,9 +50664,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InForwardedPkts() *Interface_Subi } } -// InForwardedPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-forwarded-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) InForwardedPkts() *Interface_Subinterface_Ipv4_Counters_InForwardedPktsAny { - return &Interface_Subinterface_Ipv4_Counters_InForwardedPktsAny{ +// InForwardedPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-forwarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InForwardedPkts() *Interface_Subinterface_Ipv4_Counters_InForwardedPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -50461,9 +50675,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InForwardedPkts() *Interface_S } } -// InOctets returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-octets". -func (n *Interface_Subinterface_Ipv4_Counters) InOctets() *Interface_Subinterface_Ipv4_Counters_InOctets { - return &Interface_Subinterface_Ipv4_Counters_InOctets{ +// InOctets returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-octets". +func (n *Interface_Subinterface_Ipv4_CountersPath) InOctets() *Interface_Subinterface_Ipv4_Counters_InOctetsPath { + return &Interface_Subinterface_Ipv4_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -50472,9 +50686,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InOctets() *Interface_Subinterfac } } -// InOctets returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-octets". -func (n *Interface_Subinterface_Ipv4_CountersAny) InOctets() *Interface_Subinterface_Ipv4_Counters_InOctetsAny { - return &Interface_Subinterface_Ipv4_Counters_InOctetsAny{ +// InOctets returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InOctets() *Interface_Subinterface_Ipv4_Counters_InOctetsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -50483,9 +50697,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InOctets() *Interface_Subinter } } -// InPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "in-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) InPkts() *Interface_Subinterface_Ipv4_Counters_InPkts { - return &Interface_Subinterface_Ipv4_Counters_InPkts{ +// InPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "in-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) InPkts() *Interface_Subinterface_Ipv4_Counters_InPktsPath { + return &Interface_Subinterface_Ipv4_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -50494,9 +50708,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) InPkts() *Interface_Subinterface_ } } -// InPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "in-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) InPkts() *Interface_Subinterface_Ipv4_Counters_InPktsAny { - return &Interface_Subinterface_Ipv4_Counters_InPktsAny{ +// InPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) InPkts() *Interface_Subinterface_Ipv4_Counters_InPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -50505,9 +50719,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) InPkts() *Interface_Subinterfa } } -// OutDiscardedPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-discarded-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) OutDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_OutDiscardedPkts { - return &Interface_Subinterface_Ipv4_Counters_OutDiscardedPkts{ +// OutDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-discarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPath { + return &Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -50516,9 +50730,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutDiscardedPkts() *Interface_Sub } } -// OutDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-discarded-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsAny { - return &Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsAny{ +// OutDiscardedPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-discarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutDiscardedPkts() *Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -50527,9 +50741,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutDiscardedPkts() *Interface_ } } -// OutErrorPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-error-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) OutErrorPkts() *Interface_Subinterface_Ipv4_Counters_OutErrorPkts { - return &Interface_Subinterface_Ipv4_Counters_OutErrorPkts{ +// OutErrorPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-error-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutErrorPkts() *Interface_Subinterface_Ipv4_Counters_OutErrorPktsPath { + return &Interface_Subinterface_Ipv4_Counters_OutErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -50538,9 +50752,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutErrorPkts() *Interface_Subinte } } -// OutErrorPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-error-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutErrorPkts() *Interface_Subinterface_Ipv4_Counters_OutErrorPktsAny { - return &Interface_Subinterface_Ipv4_Counters_OutErrorPktsAny{ +// OutErrorPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-error-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutErrorPkts() *Interface_Subinterface_Ipv4_Counters_OutErrorPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -50549,9 +50763,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutErrorPkts() *Interface_Subi } } -// OutForwardedOctets returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-forwarded-octets". -func (n *Interface_Subinterface_Ipv4_Counters) OutForwardedOctets() *Interface_Subinterface_Ipv4_Counters_OutForwardedOctets { - return &Interface_Subinterface_Ipv4_Counters_OutForwardedOctets{ +// OutForwardedOctets returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-forwarded-octets". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutForwardedOctets() *Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPath { + return &Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -50560,9 +50774,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutForwardedOctets() *Interface_S } } -// OutForwardedOctets returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-forwarded-octets". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutForwardedOctets() *Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsAny { - return &Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsAny{ +// OutForwardedOctets returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-forwarded-octets". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutForwardedOctets() *Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -50571,9 +50785,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutForwardedOctets() *Interfac } } -// OutForwardedPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-forwarded-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) OutForwardedPkts() *Interface_Subinterface_Ipv4_Counters_OutForwardedPkts { - return &Interface_Subinterface_Ipv4_Counters_OutForwardedPkts{ +// OutForwardedPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-forwarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutForwardedPkts() *Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPath { + return &Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -50582,9 +50796,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutForwardedPkts() *Interface_Sub } } -// OutForwardedPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-forwarded-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutForwardedPkts() *Interface_Subinterface_Ipv4_Counters_OutForwardedPktsAny { - return &Interface_Subinterface_Ipv4_Counters_OutForwardedPktsAny{ +// OutForwardedPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-forwarded-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutForwardedPkts() *Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -50593,9 +50807,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutForwardedPkts() *Interface_ } } -// OutOctets returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-octets". -func (n *Interface_Subinterface_Ipv4_Counters) OutOctets() *Interface_Subinterface_Ipv4_Counters_OutOctets { - return &Interface_Subinterface_Ipv4_Counters_OutOctets{ +// OutOctets returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-octets". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutOctets() *Interface_Subinterface_Ipv4_Counters_OutOctetsPath { + return &Interface_Subinterface_Ipv4_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -50604,9 +50818,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutOctets() *Interface_Subinterfa } } -// OutOctets returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-octets". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutOctets() *Interface_Subinterface_Ipv4_Counters_OutOctetsAny { - return &Interface_Subinterface_Ipv4_Counters_OutOctetsAny{ +// OutOctets returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutOctets() *Interface_Subinterface_Ipv4_Counters_OutOctetsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -50615,9 +50829,9 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutOctets() *Interface_Subinte } } -// OutPkts returns from Interface_Subinterface_Ipv4_Counters the path struct for its child "out-pkts". -func (n *Interface_Subinterface_Ipv4_Counters) OutPkts() *Interface_Subinterface_Ipv4_Counters_OutPkts { - return &Interface_Subinterface_Ipv4_Counters_OutPkts{ +// OutPkts returns from Interface_Subinterface_Ipv4_CountersPath the path struct for its child "out-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPath) OutPkts() *Interface_Subinterface_Ipv4_Counters_OutPktsPath { + return &Interface_Subinterface_Ipv4_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -50626,9 +50840,9 @@ func (n *Interface_Subinterface_Ipv4_Counters) OutPkts() *Interface_Subinterface } } -// OutPkts returns from Interface_Subinterface_Ipv4_CountersAny the path struct for its child "out-pkts". -func (n *Interface_Subinterface_Ipv4_CountersAny) OutPkts() *Interface_Subinterface_Ipv4_Counters_OutPktsAny { - return &Interface_Subinterface_Ipv4_Counters_OutPktsAny{ +// OutPkts returns from Interface_Subinterface_Ipv4_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_Subinterface_Ipv4_CountersPathAny) OutPkts() *Interface_Subinterface_Ipv4_Counters_OutPktsPathAny { + return &Interface_Subinterface_Ipv4_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -50637,93 +50851,93 @@ func (n *Interface_Subinterface_Ipv4_CountersAny) OutPkts() *Interface_Subinterf } } -// Interface_Subinterface_Ipv4_Neighbor represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor struct { +// Interface_Subinterface_Ipv4_NeighborPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor YANG schema element. +type Interface_Subinterface_Ipv4_NeighborPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_NeighborAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor YANG schema element. -type Interface_Subinterface_Ipv4_NeighborAny struct { +// Interface_Subinterface_Ipv4_NeighborPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor YANG schema element. +type Interface_Subinterface_Ipv4_NeighborPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_Ip represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/ip YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_Ip struct { +// Interface_Subinterface_Ipv4_Neighbor_IpPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/config/ip YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_IpPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/ip YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_IpAny struct { +// Interface_Subinterface_Ipv4_Neighbor_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/config/ip YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_IpPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddress represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddress struct { +// Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressAny struct { +// Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_Origin represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/origin YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_Origin struct { +// Interface_Subinterface_Ipv4_Neighbor_OriginPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/origin YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_OriginPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Neighbor_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/origin YANG schema element. -type Interface_Subinterface_Ipv4_Neighbor_OriginAny struct { +// Interface_Subinterface_Ipv4_Neighbor_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/neighbors/neighbor/state/origin YANG schema element. +type Interface_Subinterface_Ipv4_Neighbor_OriginPathAny struct { *ygot.NodePath } -// Ip returns from Interface_Subinterface_Ipv4_Neighbor the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv4_Neighbor) Ip() *Interface_Subinterface_Ipv4_Neighbor_Ip { - return &Interface_Subinterface_Ipv4_Neighbor_Ip{ +// Ip returns from Interface_Subinterface_Ipv4_NeighborPath the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv4_NeighborPath) Ip() *Interface_Subinterface_Ipv4_Neighbor_IpPath { + return &Interface_Subinterface_Ipv4_Neighbor_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_Subinterface_Ipv4_NeighborAny the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv4_NeighborAny) Ip() *Interface_Subinterface_Ipv4_Neighbor_IpAny { - return &Interface_Subinterface_Ipv4_Neighbor_IpAny{ +// Ip returns from Interface_Subinterface_Ipv4_NeighborPathAny the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv4_NeighborPathAny) Ip() *Interface_Subinterface_Ipv4_Neighbor_IpPathAny { + return &Interface_Subinterface_Ipv4_Neighbor_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_Subinterface_Ipv4_Neighbor the path struct for its child "link-layer-address". -func (n *Interface_Subinterface_Ipv4_Neighbor) LinkLayerAddress() *Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddress { - return &Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddress{ +// LinkLayerAddress returns from Interface_Subinterface_Ipv4_NeighborPath the path struct for its child "link-layer-address". +func (n *Interface_Subinterface_Ipv4_NeighborPath) LinkLayerAddress() *Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPath { + return &Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_Subinterface_Ipv4_NeighborAny the path struct for its child "link-layer-address". -func (n *Interface_Subinterface_Ipv4_NeighborAny) LinkLayerAddress() *Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressAny { - return &Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressAny{ +// LinkLayerAddress returns from Interface_Subinterface_Ipv4_NeighborPathAny the path struct for its child "link-layer-address". +func (n *Interface_Subinterface_Ipv4_NeighborPathAny) LinkLayerAddress() *Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPathAny { + return &Interface_Subinterface_Ipv4_Neighbor_LinkLayerAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_Subinterface_Ipv4_Neighbor the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv4_Neighbor) Origin() *Interface_Subinterface_Ipv4_Neighbor_Origin { - return &Interface_Subinterface_Ipv4_Neighbor_Origin{ +// Origin returns from Interface_Subinterface_Ipv4_NeighborPath the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv4_NeighborPath) Origin() *Interface_Subinterface_Ipv4_Neighbor_OriginPath { + return &Interface_Subinterface_Ipv4_Neighbor_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -50732,9 +50946,9 @@ func (n *Interface_Subinterface_Ipv4_Neighbor) Origin() *Interface_Subinterface_ } } -// Origin returns from Interface_Subinterface_Ipv4_NeighborAny the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv4_NeighborAny) Origin() *Interface_Subinterface_Ipv4_Neighbor_OriginAny { - return &Interface_Subinterface_Ipv4_Neighbor_OriginAny{ +// Origin returns from Interface_Subinterface_Ipv4_NeighborPathAny the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv4_NeighborPathAny) Origin() *Interface_Subinterface_Ipv4_Neighbor_OriginPathAny { + return &Interface_Subinterface_Ipv4_Neighbor_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -50743,93 +50957,93 @@ func (n *Interface_Subinterface_Ipv4_NeighborAny) Origin() *Interface_Subinterfa } } -// Interface_Subinterface_Ipv4_ProxyArp represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp YANG schema element. -type Interface_Subinterface_Ipv4_ProxyArp struct { +// Interface_Subinterface_Ipv4_ProxyArpPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp YANG schema element. +type Interface_Subinterface_Ipv4_ProxyArpPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_ProxyArpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp YANG schema element. -type Interface_Subinterface_Ipv4_ProxyArpAny struct { +// Interface_Subinterface_Ipv4_ProxyArpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp YANG schema element. +type Interface_Subinterface_Ipv4_ProxyArpPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_ProxyArp_Mode represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp/state/mode YANG schema element. -type Interface_Subinterface_Ipv4_ProxyArp_Mode struct { +// Interface_Subinterface_Ipv4_ProxyArp_ModePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp/config/mode YANG schema element. +type Interface_Subinterface_Ipv4_ProxyArp_ModePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_ProxyArp_ModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp/state/mode YANG schema element. -type Interface_Subinterface_Ipv4_ProxyArp_ModeAny struct { +// Interface_Subinterface_Ipv4_ProxyArp_ModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/proxy-arp/config/mode YANG schema element. +type Interface_Subinterface_Ipv4_ProxyArp_ModePathAny struct { *ygot.NodePath } -// Mode returns from Interface_Subinterface_Ipv4_ProxyArp the path struct for its child "mode". -func (n *Interface_Subinterface_Ipv4_ProxyArp) Mode() *Interface_Subinterface_Ipv4_ProxyArp_Mode { - return &Interface_Subinterface_Ipv4_ProxyArp_Mode{ +// Mode returns from Interface_Subinterface_Ipv4_ProxyArpPath the path struct for its child "mode". +func (n *Interface_Subinterface_Ipv4_ProxyArpPath) Mode() *Interface_Subinterface_Ipv4_ProxyArp_ModePath { + return &Interface_Subinterface_Ipv4_ProxyArp_ModePath{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Mode returns from Interface_Subinterface_Ipv4_ProxyArpAny the path struct for its child "mode". -func (n *Interface_Subinterface_Ipv4_ProxyArpAny) Mode() *Interface_Subinterface_Ipv4_ProxyArp_ModeAny { - return &Interface_Subinterface_Ipv4_ProxyArp_ModeAny{ +// Mode returns from Interface_Subinterface_Ipv4_ProxyArpPathAny the path struct for its child "mode". +func (n *Interface_Subinterface_Ipv4_ProxyArpPathAny) Mode() *Interface_Subinterface_Ipv4_ProxyArp_ModePathAny { + return &Interface_Subinterface_Ipv4_ProxyArp_ModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv4_Unnumbered represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered struct { +// Interface_Subinterface_Ipv4_UnnumberedPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered YANG schema element. +type Interface_Subinterface_Ipv4_UnnumberedPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_UnnumberedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered YANG schema element. -type Interface_Subinterface_Ipv4_UnnumberedAny struct { +// Interface_Subinterface_Ipv4_UnnumberedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered YANG schema element. +type Interface_Subinterface_Ipv4_UnnumberedPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_Enabled represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/state/enabled YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_Enabled struct { +// Interface_Subinterface_Ipv4_Unnumbered_EnabledPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/config/enabled YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_EnabledPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/state/enabled YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_EnabledAny struct { +// Interface_Subinterface_Ipv4_Unnumbered_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/config/enabled YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Interface_Subinterface_Ipv4_Unnumbered the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv4_Unnumbered) Enabled() *Interface_Subinterface_Ipv4_Unnumbered_Enabled { - return &Interface_Subinterface_Ipv4_Unnumbered_Enabled{ +// Enabled returns from Interface_Subinterface_Ipv4_UnnumberedPath the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv4_UnnumberedPath) Enabled() *Interface_Subinterface_Ipv4_Unnumbered_EnabledPath { + return &Interface_Subinterface_Ipv4_Unnumbered_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv4_UnnumberedAny the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv4_UnnumberedAny) Enabled() *Interface_Subinterface_Ipv4_Unnumbered_EnabledAny { - return &Interface_Subinterface_Ipv4_Unnumbered_EnabledAny{ +// Enabled returns from Interface_Subinterface_Ipv4_UnnumberedPathAny the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv4_UnnumberedPathAny) Enabled() *Interface_Subinterface_Ipv4_Unnumbered_EnabledPathAny { + return &Interface_Subinterface_Ipv4_Unnumbered_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from Interface_Subinterface_Ipv4_Unnumbered the path struct for its child "interface-ref". -func (n *Interface_Subinterface_Ipv4_Unnumbered) InterfaceRef() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef{ +// InterfaceRef returns from Interface_Subinterface_Ipv4_UnnumberedPath the path struct for its child "interface-ref". +func (n *Interface_Subinterface_Ipv4_UnnumberedPath) InterfaceRef() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -50838,9 +51052,9 @@ func (n *Interface_Subinterface_Ipv4_Unnumbered) InterfaceRef() *Interface_Subin } } -// InterfaceRef returns from Interface_Subinterface_Ipv4_UnnumberedAny the path struct for its child "interface-ref". -func (n *Interface_Subinterface_Ipv4_UnnumberedAny) InterfaceRef() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny{ +// InterfaceRef returns from Interface_Subinterface_Ipv4_UnnumberedPathAny the path struct for its child "interface-ref". +func (n *Interface_Subinterface_Ipv4_UnnumberedPathAny) InterfaceRef() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -50849,133 +51063,133 @@ func (n *Interface_Subinterface_Ipv4_UnnumberedAny) InterfaceRef() *Interface_Su } } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Interface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Interface struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfaceAny struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Subinterface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Subinterface struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny struct { +// Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv4/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef the path struct for its child "interface". -func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef) Interface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Interface { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Interface{ +// Interface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath the path struct for its child "interface". +func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath) Interface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePath { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny the path struct for its child "interface". -func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny) Interface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfaceAny { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfaceAny{ +// Interface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny the path struct for its child "interface". +func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny) Interface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef the path struct for its child "subinterface". -func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef) Subinterface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Subinterface { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_Subinterface{ +// Subinterface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath the path struct for its child "subinterface". +func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPath) Subinterface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny the path struct for its child "subinterface". -func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefAny) Subinterface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny { - return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRefPathAny) Subinterface() *Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny { + return &Interface_Subinterface_Ipv4_Unnumbered_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv6 represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6 YANG schema element. -type Interface_Subinterface_Ipv6 struct { +// Interface_Subinterface_Ipv6Path represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6 YANG schema element. +type Interface_Subinterface_Ipv6Path struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6Any represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6 YANG schema element. -type Interface_Subinterface_Ipv6Any struct { +// Interface_Subinterface_Ipv6PathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6 YANG schema element. +type Interface_Subinterface_Ipv6PathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_DhcpClient represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/dhcp-client YANG schema element. -type Interface_Subinterface_Ipv6_DhcpClient struct { +// Interface_Subinterface_Ipv6_DhcpClientPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/dhcp-client YANG schema element. +type Interface_Subinterface_Ipv6_DhcpClientPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_DhcpClientAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/dhcp-client YANG schema element. -type Interface_Subinterface_Ipv6_DhcpClientAny struct { +// Interface_Subinterface_Ipv6_DhcpClientPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/dhcp-client YANG schema element. +type Interface_Subinterface_Ipv6_DhcpClientPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_DupAddrDetectTransmits represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/dup-addr-detect-transmits YANG schema element. -type Interface_Subinterface_Ipv6_DupAddrDetectTransmits struct { +// Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/dup-addr-detect-transmits YANG schema element. +type Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_DupAddrDetectTransmitsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/dup-addr-detect-transmits YANG schema element. -type Interface_Subinterface_Ipv6_DupAddrDetectTransmitsAny struct { +// Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/dup-addr-detect-transmits YANG schema element. +type Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Enabled represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/enabled YANG schema element. -type Interface_Subinterface_Ipv6_Enabled struct { +// Interface_Subinterface_Ipv6_EnabledPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/enabled YANG schema element. +type Interface_Subinterface_Ipv6_EnabledPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/enabled YANG schema element. -type Interface_Subinterface_Ipv6_EnabledAny struct { +// Interface_Subinterface_Ipv6_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/enabled YANG schema element. +type Interface_Subinterface_Ipv6_EnabledPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Mtu represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/mtu YANG schema element. -type Interface_Subinterface_Ipv6_Mtu struct { +// Interface_Subinterface_Ipv6_MtuPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/mtu YANG schema element. +type Interface_Subinterface_Ipv6_MtuPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_MtuAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/mtu YANG schema element. -type Interface_Subinterface_Ipv6_MtuAny struct { +// Interface_Subinterface_Ipv6_MtuPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/config/mtu YANG schema element. +type Interface_Subinterface_Ipv6_MtuPathAny struct { *ygot.NodePath } -// AddressAny returns from Interface_Subinterface_Ipv6 the path struct for its child "address". -func (n *Interface_Subinterface_Ipv6) AddressAny() *Interface_Subinterface_Ipv6_AddressAny { - return &Interface_Subinterface_Ipv6_AddressAny{ +// AddressAny returns from Interface_Subinterface_Ipv6Path the path struct for its child "address". +func (n *Interface_Subinterface_Ipv6Path) AddressAny() *Interface_Subinterface_Ipv6_AddressPathAny { + return &Interface_Subinterface_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -50984,9 +51198,9 @@ func (n *Interface_Subinterface_Ipv6) AddressAny() *Interface_Subinterface_Ipv6_ } } -// AddressAny returns from Interface_Subinterface_Ipv6Any the path struct for its child "address". -func (n *Interface_Subinterface_Ipv6Any) AddressAny() *Interface_Subinterface_Ipv6_AddressAny { - return &Interface_Subinterface_Ipv6_AddressAny{ +// AddressAny returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "address". +func (n *Interface_Subinterface_Ipv6PathAny) AddressAny() *Interface_Subinterface_Ipv6_AddressPathAny { + return &Interface_Subinterface_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": "*"}, @@ -50995,9 +51209,9 @@ func (n *Interface_Subinterface_Ipv6Any) AddressAny() *Interface_Subinterface_Ip } } -// Address returns from Interface_Subinterface_Ipv6 the path struct for its child "address". -func (n *Interface_Subinterface_Ipv6) Address(Ip string) *Interface_Subinterface_Ipv6_Address { - return &Interface_Subinterface_Ipv6_Address{ +// Address returns from Interface_Subinterface_Ipv6Path the path struct for its child "address". +func (n *Interface_Subinterface_Ipv6Path) Address(Ip string) *Interface_Subinterface_Ipv6_AddressPath { + return &Interface_Subinterface_Ipv6_AddressPath{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -51006,9 +51220,9 @@ func (n *Interface_Subinterface_Ipv6) Address(Ip string) *Interface_Subinterface } } -// Address returns from Interface_Subinterface_Ipv6Any the path struct for its child "address". -func (n *Interface_Subinterface_Ipv6Any) Address(Ip string) *Interface_Subinterface_Ipv6_AddressAny { - return &Interface_Subinterface_Ipv6_AddressAny{ +// Address returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "address". +func (n *Interface_Subinterface_Ipv6PathAny) Address(Ip string) *Interface_Subinterface_Ipv6_AddressPathAny { + return &Interface_Subinterface_Ipv6_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"addresses", "address"}, map[string]interface{}{"ip": Ip}, @@ -51017,9 +51231,9 @@ func (n *Interface_Subinterface_Ipv6Any) Address(Ip string) *Interface_Subinterf } } -// Autoconf returns from Interface_Subinterface_Ipv6 the path struct for its child "autoconf". -func (n *Interface_Subinterface_Ipv6) Autoconf() *Interface_Subinterface_Ipv6_Autoconf { - return &Interface_Subinterface_Ipv6_Autoconf{ +// Autoconf returns from Interface_Subinterface_Ipv6Path the path struct for its child "autoconf". +func (n *Interface_Subinterface_Ipv6Path) Autoconf() *Interface_Subinterface_Ipv6_AutoconfPath { + return &Interface_Subinterface_Ipv6_AutoconfPath{ NodePath: ygot.NewNodePath( []string{"autoconf"}, map[string]interface{}{}, @@ -51028,9 +51242,9 @@ func (n *Interface_Subinterface_Ipv6) Autoconf() *Interface_Subinterface_Ipv6_Au } } -// Autoconf returns from Interface_Subinterface_Ipv6Any the path struct for its child "autoconf". -func (n *Interface_Subinterface_Ipv6Any) Autoconf() *Interface_Subinterface_Ipv6_AutoconfAny { - return &Interface_Subinterface_Ipv6_AutoconfAny{ +// Autoconf returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "autoconf". +func (n *Interface_Subinterface_Ipv6PathAny) Autoconf() *Interface_Subinterface_Ipv6_AutoconfPathAny { + return &Interface_Subinterface_Ipv6_AutoconfPathAny{ NodePath: ygot.NewNodePath( []string{"autoconf"}, map[string]interface{}{}, @@ -51039,9 +51253,9 @@ func (n *Interface_Subinterface_Ipv6Any) Autoconf() *Interface_Subinterface_Ipv6 } } -// Counters returns from Interface_Subinterface_Ipv6 the path struct for its child "counters". -func (n *Interface_Subinterface_Ipv6) Counters() *Interface_Subinterface_Ipv6_Counters { - return &Interface_Subinterface_Ipv6_Counters{ +// Counters returns from Interface_Subinterface_Ipv6Path the path struct for its child "counters". +func (n *Interface_Subinterface_Ipv6Path) Counters() *Interface_Subinterface_Ipv6_CountersPath { + return &Interface_Subinterface_Ipv6_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -51050,9 +51264,9 @@ func (n *Interface_Subinterface_Ipv6) Counters() *Interface_Subinterface_Ipv6_Co } } -// Counters returns from Interface_Subinterface_Ipv6Any the path struct for its child "counters". -func (n *Interface_Subinterface_Ipv6Any) Counters() *Interface_Subinterface_Ipv6_CountersAny { - return &Interface_Subinterface_Ipv6_CountersAny{ +// Counters returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "counters". +func (n *Interface_Subinterface_Ipv6PathAny) Counters() *Interface_Subinterface_Ipv6_CountersPathAny { + return &Interface_Subinterface_Ipv6_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -51061,97 +51275,97 @@ func (n *Interface_Subinterface_Ipv6Any) Counters() *Interface_Subinterface_Ipv6 } } -// DhcpClient returns from Interface_Subinterface_Ipv6 the path struct for its child "dhcp-client". -func (n *Interface_Subinterface_Ipv6) DhcpClient() *Interface_Subinterface_Ipv6_DhcpClient { - return &Interface_Subinterface_Ipv6_DhcpClient{ +// DhcpClient returns from Interface_Subinterface_Ipv6Path the path struct for its child "dhcp-client". +func (n *Interface_Subinterface_Ipv6Path) DhcpClient() *Interface_Subinterface_Ipv6_DhcpClientPath { + return &Interface_Subinterface_Ipv6_DhcpClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DhcpClient returns from Interface_Subinterface_Ipv6Any the path struct for its child "dhcp-client". -func (n *Interface_Subinterface_Ipv6Any) DhcpClient() *Interface_Subinterface_Ipv6_DhcpClientAny { - return &Interface_Subinterface_Ipv6_DhcpClientAny{ +// DhcpClient returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "dhcp-client". +func (n *Interface_Subinterface_Ipv6PathAny) DhcpClient() *Interface_Subinterface_Ipv6_DhcpClientPathAny { + return &Interface_Subinterface_Ipv6_DhcpClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dhcp-client"}, + []string{"config", "dhcp-client"}, map[string]interface{}{}, n, ), } } -// DupAddrDetectTransmits returns from Interface_Subinterface_Ipv6 the path struct for its child "dup-addr-detect-transmits". -func (n *Interface_Subinterface_Ipv6) DupAddrDetectTransmits() *Interface_Subinterface_Ipv6_DupAddrDetectTransmits { - return &Interface_Subinterface_Ipv6_DupAddrDetectTransmits{ +// DupAddrDetectTransmits returns from Interface_Subinterface_Ipv6Path the path struct for its child "dup-addr-detect-transmits". +func (n *Interface_Subinterface_Ipv6Path) DupAddrDetectTransmits() *Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPath { + return &Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPath{ NodePath: ygot.NewNodePath( - []string{"state", "dup-addr-detect-transmits"}, + []string{"config", "dup-addr-detect-transmits"}, map[string]interface{}{}, n, ), } } -// DupAddrDetectTransmits returns from Interface_Subinterface_Ipv6Any the path struct for its child "dup-addr-detect-transmits". -func (n *Interface_Subinterface_Ipv6Any) DupAddrDetectTransmits() *Interface_Subinterface_Ipv6_DupAddrDetectTransmitsAny { - return &Interface_Subinterface_Ipv6_DupAddrDetectTransmitsAny{ +// DupAddrDetectTransmits returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "dup-addr-detect-transmits". +func (n *Interface_Subinterface_Ipv6PathAny) DupAddrDetectTransmits() *Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPathAny { + return &Interface_Subinterface_Ipv6_DupAddrDetectTransmitsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dup-addr-detect-transmits"}, + []string{"config", "dup-addr-detect-transmits"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv6 the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv6) Enabled() *Interface_Subinterface_Ipv6_Enabled { - return &Interface_Subinterface_Ipv6_Enabled{ +// Enabled returns from Interface_Subinterface_Ipv6Path the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv6Path) Enabled() *Interface_Subinterface_Ipv6_EnabledPath { + return &Interface_Subinterface_Ipv6_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv6Any the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv6Any) Enabled() *Interface_Subinterface_Ipv6_EnabledAny { - return &Interface_Subinterface_Ipv6_EnabledAny{ +// Enabled returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv6PathAny) Enabled() *Interface_Subinterface_Ipv6_EnabledPathAny { + return &Interface_Subinterface_Ipv6_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_Subinterface_Ipv6 the path struct for its child "mtu". -func (n *Interface_Subinterface_Ipv6) Mtu() *Interface_Subinterface_Ipv6_Mtu { - return &Interface_Subinterface_Ipv6_Mtu{ +// Mtu returns from Interface_Subinterface_Ipv6Path the path struct for its child "mtu". +func (n *Interface_Subinterface_Ipv6Path) Mtu() *Interface_Subinterface_Ipv6_MtuPath { + return &Interface_Subinterface_Ipv6_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from Interface_Subinterface_Ipv6Any the path struct for its child "mtu". -func (n *Interface_Subinterface_Ipv6Any) Mtu() *Interface_Subinterface_Ipv6_MtuAny { - return &Interface_Subinterface_Ipv6_MtuAny{ +// Mtu returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "mtu". +func (n *Interface_Subinterface_Ipv6PathAny) Mtu() *Interface_Subinterface_Ipv6_MtuPathAny { + return &Interface_Subinterface_Ipv6_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from Interface_Subinterface_Ipv6 the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv6) NeighborAny() *Interface_Subinterface_Ipv6_NeighborAny { - return &Interface_Subinterface_Ipv6_NeighborAny{ +// NeighborAny returns from Interface_Subinterface_Ipv6Path the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv6Path) NeighborAny() *Interface_Subinterface_Ipv6_NeighborPathAny { + return &Interface_Subinterface_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -51160,9 +51374,9 @@ func (n *Interface_Subinterface_Ipv6) NeighborAny() *Interface_Subinterface_Ipv6 } } -// NeighborAny returns from Interface_Subinterface_Ipv6Any the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv6Any) NeighborAny() *Interface_Subinterface_Ipv6_NeighborAny { - return &Interface_Subinterface_Ipv6_NeighborAny{ +// NeighborAny returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv6PathAny) NeighborAny() *Interface_Subinterface_Ipv6_NeighborPathAny { + return &Interface_Subinterface_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": "*"}, @@ -51171,9 +51385,9 @@ func (n *Interface_Subinterface_Ipv6Any) NeighborAny() *Interface_Subinterface_I } } -// Neighbor returns from Interface_Subinterface_Ipv6 the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv6) Neighbor(Ip string) *Interface_Subinterface_Ipv6_Neighbor { - return &Interface_Subinterface_Ipv6_Neighbor{ +// Neighbor returns from Interface_Subinterface_Ipv6Path the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv6Path) Neighbor(Ip string) *Interface_Subinterface_Ipv6_NeighborPath { + return &Interface_Subinterface_Ipv6_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -51182,9 +51396,9 @@ func (n *Interface_Subinterface_Ipv6) Neighbor(Ip string) *Interface_Subinterfac } } -// Neighbor returns from Interface_Subinterface_Ipv6Any the path struct for its child "neighbor". -func (n *Interface_Subinterface_Ipv6Any) Neighbor(Ip string) *Interface_Subinterface_Ipv6_NeighborAny { - return &Interface_Subinterface_Ipv6_NeighborAny{ +// Neighbor returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "neighbor". +func (n *Interface_Subinterface_Ipv6PathAny) Neighbor(Ip string) *Interface_Subinterface_Ipv6_NeighborPathAny { + return &Interface_Subinterface_Ipv6_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"ip": Ip}, @@ -51193,9 +51407,9 @@ func (n *Interface_Subinterface_Ipv6Any) Neighbor(Ip string) *Interface_Subinter } } -// RouterAdvertisement returns from Interface_Subinterface_Ipv6 the path struct for its child "router-advertisement". -func (n *Interface_Subinterface_Ipv6) RouterAdvertisement() *Interface_Subinterface_Ipv6_RouterAdvertisement { - return &Interface_Subinterface_Ipv6_RouterAdvertisement{ +// RouterAdvertisement returns from Interface_Subinterface_Ipv6Path the path struct for its child "router-advertisement". +func (n *Interface_Subinterface_Ipv6Path) RouterAdvertisement() *Interface_Subinterface_Ipv6_RouterAdvertisementPath { + return &Interface_Subinterface_Ipv6_RouterAdvertisementPath{ NodePath: ygot.NewNodePath( []string{"router-advertisement"}, map[string]interface{}{}, @@ -51204,9 +51418,9 @@ func (n *Interface_Subinterface_Ipv6) RouterAdvertisement() *Interface_Subinterf } } -// RouterAdvertisement returns from Interface_Subinterface_Ipv6Any the path struct for its child "router-advertisement". -func (n *Interface_Subinterface_Ipv6Any) RouterAdvertisement() *Interface_Subinterface_Ipv6_RouterAdvertisementAny { - return &Interface_Subinterface_Ipv6_RouterAdvertisementAny{ +// RouterAdvertisement returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "router-advertisement". +func (n *Interface_Subinterface_Ipv6PathAny) RouterAdvertisement() *Interface_Subinterface_Ipv6_RouterAdvertisementPathAny { + return &Interface_Subinterface_Ipv6_RouterAdvertisementPathAny{ NodePath: ygot.NewNodePath( []string{"router-advertisement"}, map[string]interface{}{}, @@ -51215,9 +51429,9 @@ func (n *Interface_Subinterface_Ipv6Any) RouterAdvertisement() *Interface_Subint } } -// Unnumbered returns from Interface_Subinterface_Ipv6 the path struct for its child "unnumbered". -func (n *Interface_Subinterface_Ipv6) Unnumbered() *Interface_Subinterface_Ipv6_Unnumbered { - return &Interface_Subinterface_Ipv6_Unnumbered{ +// Unnumbered returns from Interface_Subinterface_Ipv6Path the path struct for its child "unnumbered". +func (n *Interface_Subinterface_Ipv6Path) Unnumbered() *Interface_Subinterface_Ipv6_UnnumberedPath { + return &Interface_Subinterface_Ipv6_UnnumberedPath{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -51226,9 +51440,9 @@ func (n *Interface_Subinterface_Ipv6) Unnumbered() *Interface_Subinterface_Ipv6_ } } -// Unnumbered returns from Interface_Subinterface_Ipv6Any the path struct for its child "unnumbered". -func (n *Interface_Subinterface_Ipv6Any) Unnumbered() *Interface_Subinterface_Ipv6_UnnumberedAny { - return &Interface_Subinterface_Ipv6_UnnumberedAny{ +// Unnumbered returns from Interface_Subinterface_Ipv6PathAny the path struct for its child "unnumbered". +func (n *Interface_Subinterface_Ipv6PathAny) Unnumbered() *Interface_Subinterface_Ipv6_UnnumberedPathAny { + return &Interface_Subinterface_Ipv6_UnnumberedPathAny{ NodePath: ygot.NewNodePath( []string{"unnumbered"}, map[string]interface{}{}, @@ -51237,81 +51451,81 @@ func (n *Interface_Subinterface_Ipv6Any) Unnumbered() *Interface_Subinterface_Ip } } -// Interface_Subinterface_Ipv6_Address represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address YANG schema element. -type Interface_Subinterface_Ipv6_Address struct { +// Interface_Subinterface_Ipv6_AddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address YANG schema element. +type Interface_Subinterface_Ipv6_AddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_AddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address YANG schema element. -type Interface_Subinterface_Ipv6_AddressAny struct { +// Interface_Subinterface_Ipv6_AddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address YANG schema element. +type Interface_Subinterface_Ipv6_AddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_Ip represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/ip YANG schema element. -type Interface_Subinterface_Ipv6_Address_Ip struct { +// Interface_Subinterface_Ipv6_Address_IpPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/config/ip YANG schema element. +type Interface_Subinterface_Ipv6_Address_IpPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/ip YANG schema element. -type Interface_Subinterface_Ipv6_Address_IpAny struct { +// Interface_Subinterface_Ipv6_Address_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/config/ip YANG schema element. +type Interface_Subinterface_Ipv6_Address_IpPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_Origin represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/origin YANG schema element. -type Interface_Subinterface_Ipv6_Address_Origin struct { +// Interface_Subinterface_Ipv6_Address_OriginPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/origin YANG schema element. +type Interface_Subinterface_Ipv6_Address_OriginPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/origin YANG schema element. -type Interface_Subinterface_Ipv6_Address_OriginAny struct { +// Interface_Subinterface_Ipv6_Address_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/origin YANG schema element. +type Interface_Subinterface_Ipv6_Address_OriginPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_PrefixLength represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/prefix-length YANG schema element. -type Interface_Subinterface_Ipv6_Address_PrefixLength struct { +// Interface_Subinterface_Ipv6_Address_PrefixLengthPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/config/prefix-length YANG schema element. +type Interface_Subinterface_Ipv6_Address_PrefixLengthPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_PrefixLengthAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/prefix-length YANG schema element. -type Interface_Subinterface_Ipv6_Address_PrefixLengthAny struct { +// Interface_Subinterface_Ipv6_Address_PrefixLengthPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/config/prefix-length YANG schema element. +type Interface_Subinterface_Ipv6_Address_PrefixLengthPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_Status represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/status YANG schema element. -type Interface_Subinterface_Ipv6_Address_Status struct { +// Interface_Subinterface_Ipv6_Address_StatusPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/status YANG schema element. +type Interface_Subinterface_Ipv6_Address_StatusPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_StatusAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/status YANG schema element. -type Interface_Subinterface_Ipv6_Address_StatusAny struct { +// Interface_Subinterface_Ipv6_Address_StatusPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/state/status YANG schema element. +type Interface_Subinterface_Ipv6_Address_StatusPathAny struct { *ygot.NodePath } -// Ip returns from Interface_Subinterface_Ipv6_Address the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv6_Address) Ip() *Interface_Subinterface_Ipv6_Address_Ip { - return &Interface_Subinterface_Ipv6_Address_Ip{ +// Ip returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv6_AddressPath) Ip() *Interface_Subinterface_Ipv6_Address_IpPath { + return &Interface_Subinterface_Ipv6_Address_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv6_AddressAny) Ip() *Interface_Subinterface_Ipv6_Address_IpAny { - return &Interface_Subinterface_Ipv6_Address_IpAny{ +// Ip returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) Ip() *Interface_Subinterface_Ipv6_Address_IpPathAny { + return &Interface_Subinterface_Ipv6_Address_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Origin returns from Interface_Subinterface_Ipv6_Address the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv6_Address) Origin() *Interface_Subinterface_Ipv6_Address_Origin { - return &Interface_Subinterface_Ipv6_Address_Origin{ +// Origin returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv6_AddressPath) Origin() *Interface_Subinterface_Ipv6_Address_OriginPath { + return &Interface_Subinterface_Ipv6_Address_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -51320,9 +51534,9 @@ func (n *Interface_Subinterface_Ipv6_Address) Origin() *Interface_Subinterface_I } } -// Origin returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv6_AddressAny) Origin() *Interface_Subinterface_Ipv6_Address_OriginAny { - return &Interface_Subinterface_Ipv6_Address_OriginAny{ +// Origin returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) Origin() *Interface_Subinterface_Ipv6_Address_OriginPathAny { + return &Interface_Subinterface_Ipv6_Address_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -51331,31 +51545,31 @@ func (n *Interface_Subinterface_Ipv6_AddressAny) Origin() *Interface_Subinterfac } } -// PrefixLength returns from Interface_Subinterface_Ipv6_Address the path struct for its child "prefix-length". -func (n *Interface_Subinterface_Ipv6_Address) PrefixLength() *Interface_Subinterface_Ipv6_Address_PrefixLength { - return &Interface_Subinterface_Ipv6_Address_PrefixLength{ +// PrefixLength returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "prefix-length". +func (n *Interface_Subinterface_Ipv6_AddressPath) PrefixLength() *Interface_Subinterface_Ipv6_Address_PrefixLengthPath { + return &Interface_Subinterface_Ipv6_Address_PrefixLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// PrefixLength returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "prefix-length". -func (n *Interface_Subinterface_Ipv6_AddressAny) PrefixLength() *Interface_Subinterface_Ipv6_Address_PrefixLengthAny { - return &Interface_Subinterface_Ipv6_Address_PrefixLengthAny{ +// PrefixLength returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "prefix-length". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) PrefixLength() *Interface_Subinterface_Ipv6_Address_PrefixLengthPathAny { + return &Interface_Subinterface_Ipv6_Address_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-length"}, + []string{"config", "prefix-length"}, map[string]interface{}{}, n, ), } } -// Status returns from Interface_Subinterface_Ipv6_Address the path struct for its child "status". -func (n *Interface_Subinterface_Ipv6_Address) Status() *Interface_Subinterface_Ipv6_Address_Status { - return &Interface_Subinterface_Ipv6_Address_Status{ +// Status returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "status". +func (n *Interface_Subinterface_Ipv6_AddressPath) Status() *Interface_Subinterface_Ipv6_Address_StatusPath { + return &Interface_Subinterface_Ipv6_Address_StatusPath{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -51364,9 +51578,9 @@ func (n *Interface_Subinterface_Ipv6_Address) Status() *Interface_Subinterface_I } } -// Status returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "status". -func (n *Interface_Subinterface_Ipv6_AddressAny) Status() *Interface_Subinterface_Ipv6_Address_StatusAny { - return &Interface_Subinterface_Ipv6_Address_StatusAny{ +// Status returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "status". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) Status() *Interface_Subinterface_Ipv6_Address_StatusPathAny { + return &Interface_Subinterface_Ipv6_Address_StatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -51375,9 +51589,9 @@ func (n *Interface_Subinterface_Ipv6_AddressAny) Status() *Interface_Subinterfac } } -// VrrpGroupAny returns from Interface_Subinterface_Ipv6_Address the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv6_Address) VrrpGroupAny() *Interface_Subinterface_Ipv6_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv6_AddressPath) VrrpGroupAny() *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -51386,9 +51600,9 @@ func (n *Interface_Subinterface_Ipv6_Address) VrrpGroupAny() *Interface_Subinter } } -// VrrpGroupAny returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv6_AddressAny) VrrpGroupAny() *Interface_Subinterface_Ipv6_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroupAny{ +// VrrpGroupAny returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) VrrpGroupAny() *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": "*"}, @@ -51397,9 +51611,9 @@ func (n *Interface_Subinterface_Ipv6_AddressAny) VrrpGroupAny() *Interface_Subin } } -// VrrpGroup returns from Interface_Subinterface_Ipv6_Address the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv6_Address) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv6_Address_VrrpGroup { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup{ +// VrrpGroup returns from Interface_Subinterface_Ipv6_AddressPath the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv6_AddressPath) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv6_Address_VrrpGroupPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroupPath{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -51408,9 +51622,9 @@ func (n *Interface_Subinterface_Ipv6_Address) VrrpGroup(VirtualRouterId uint8) * } } -// VrrpGroup returns from Interface_Subinterface_Ipv6_AddressAny the path struct for its child "vrrp-group". -func (n *Interface_Subinterface_Ipv6_AddressAny) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv6_Address_VrrpGroupAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroupAny{ +// VrrpGroup returns from Interface_Subinterface_Ipv6_AddressPathAny the path struct for its child "vrrp-group". +func (n *Interface_Subinterface_Ipv6_AddressPathAny) VrrpGroup(VirtualRouterId uint8) *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny{ NodePath: ygot.NewNodePath( []string{"vrrp", "vrrp-group"}, map[string]interface{}{"virtual-router-id": VirtualRouterId}, @@ -51419,153 +51633,153 @@ func (n *Interface_Subinterface_Ipv6_AddressAny) VrrpGroup(VirtualRouterId uint8 } } -// Interface_Subinterface_Ipv6_Address_VrrpGroup represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroupPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroupPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroupAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroupAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptMode represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptMode struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/accept-mode YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModeAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/accept-mode YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementInterval represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementInterval struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/advertisement-interval YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/advertisement-interval YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriority represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriority struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/current-priority YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_Preempt represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_Preempt struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/preempt YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/preempt YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelay represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelay struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/preempt-delay YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/preempt-delay YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_Priority represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_Priority struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/priority YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/priority YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddress represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddress struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-address YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-address YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocal represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-link-local YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocal struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-link-local YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-link-local YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-link-local YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterId struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/state/virtual-router-id YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/config/virtual-router-id YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny struct { *ygot.NodePath } -// AcceptMode returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "accept-mode". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) AcceptMode() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptMode { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptMode{ +// AcceptMode returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "accept-mode". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) AcceptMode() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePath{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AcceptMode returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "accept-mode". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) AcceptMode() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModeAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModeAny{ +// AcceptMode returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "accept-mode". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) AcceptMode() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AcceptModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "accept-mode"}, + []string{"config", "accept-mode"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "advertisement-interval". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) AdvertisementInterval() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementInterval { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementInterval{ +// AdvertisementInterval returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "advertisement-interval". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) AdvertisementInterval() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// AdvertisementInterval returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "advertisement-interval". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) AdvertisementInterval() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalAny{ +// AdvertisementInterval returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "advertisement-interval". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) AdvertisementInterval() *Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_AdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertisement-interval"}, + []string{"config", "advertisement-interval"}, map[string]interface{}{}, n, ), } } -// CurrentPriority returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "current-priority". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) CurrentPriority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriority { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriority{ +// CurrentPriority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "current-priority". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) CurrentPriority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -51574,9 +51788,9 @@ func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) CurrentPriority() *Inter } } -// CurrentPriority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "current-priority". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) CurrentPriority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityAny{ +// CurrentPriority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "current-priority". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) CurrentPriority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_CurrentPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "current-priority"}, map[string]interface{}{}, @@ -51585,9 +51799,9 @@ func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) CurrentPriority() *In } } -// InterfaceTracking returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "interface-tracking". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) InterfaceTracking() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking{ +// InterfaceTracking returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "interface-tracking". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) InterfaceTracking() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -51596,9 +51810,9 @@ func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) InterfaceTracking() *Int } } -// InterfaceTracking returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "interface-tracking". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) InterfaceTracking() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny{ +// InterfaceTracking returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "interface-tracking". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) InterfaceTracking() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny{ NodePath: ygot.NewNodePath( []string{"interface-tracking"}, map[string]interface{}{}, @@ -51607,483 +51821,483 @@ func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) InterfaceTracking() * } } -// Preempt returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "preempt". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) Preempt() *Interface_Subinterface_Ipv6_Address_VrrpGroup_Preempt { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_Preempt{ +// Preempt returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "preempt". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) Preempt() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// Preempt returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "preempt". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) Preempt() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptAny{ +// Preempt returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "preempt". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) Preempt() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt"}, + []string{"config", "preempt"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "preempt-delay". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) PreemptDelay() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelay { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelay{ +// PreemptDelay returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "preempt-delay". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) PreemptDelay() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// PreemptDelay returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "preempt-delay". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) PreemptDelay() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayAny{ +// PreemptDelay returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "preempt-delay". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) PreemptDelay() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PreemptDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preempt-delay"}, + []string{"config", "preempt-delay"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "priority". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) Priority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_Priority { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_Priority{ +// Priority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "priority". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) Priority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "priority". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) Priority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityAny{ +// Priority returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "priority". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) Priority() *Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "virtual-address". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) VirtualAddress() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddress { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddress{ +// VirtualAddress returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-address". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) VirtualAddress() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualAddress returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-address". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) VirtualAddress() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressAny{ +// VirtualAddress returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-address". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) VirtualAddress() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-address"}, + []string{"config", "virtual-address"}, map[string]interface{}{}, n, ), } } -// VirtualLinkLocal returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "virtual-link-local". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) VirtualLinkLocal() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocal { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocal{ +// VirtualLinkLocal returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-link-local". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) VirtualLinkLocal() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-link-local"}, + []string{"config", "virtual-link-local"}, map[string]interface{}{}, n, ), } } -// VirtualLinkLocal returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-link-local". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) VirtualLinkLocal() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalAny{ +// VirtualLinkLocal returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-link-local". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) VirtualLinkLocal() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualLinkLocalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-link-local"}, + []string{"config", "virtual-link-local"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_Subinterface_Ipv6_Address_VrrpGroup the path struct for its child "virtual-router-id". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup) VirtualRouterId() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterId { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterId{ +// VirtualRouterId returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPath the path struct for its child "virtual-router-id". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPath) VirtualRouterId() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// VirtualRouterId returns from Interface_Subinterface_Ipv6_Address_VrrpGroupAny the path struct for its child "virtual-router-id". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupAny) VirtualRouterId() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdAny{ +// VirtualRouterId returns from Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny the path struct for its child "virtual-router-id". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroupPathAny) VirtualRouterId() *Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_VirtualRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-router-id"}, + []string{"config", "virtual-router-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/priority-decrement YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/priority-decrement YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/state/track-interface YANG schema element. -type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny struct { +// Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/addresses/address/vrrp/vrrp-group/interface-tracking/config/track-interface YANG schema element. +type Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny struct { *ygot.NodePath } -// PriorityDecrement returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking the path struct for its child "priority-decrement". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking) PriorityDecrement() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrement{ +// PriorityDecrement returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "priority-decrement". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath) PriorityDecrement() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// PriorityDecrement returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "priority-decrement". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny) PriorityDecrement() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementAny{ +// PriorityDecrement returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "priority-decrement". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny) PriorityDecrement() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_PriorityDecrementPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority-decrement"}, + []string{"config", "priority-decrement"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking the path struct for its child "track-interface". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking) TrackInterface() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterface{ +// TrackInterface returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath the path struct for its child "track-interface". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPath) TrackInterface() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// TrackInterface returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny the path struct for its child "track-interface". -func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingAny) TrackInterface() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny { - return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfaceAny{ +// TrackInterface returns from Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny the path struct for its child "track-interface". +func (n *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTrackingPathAny) TrackInterface() *Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny { + return &Interface_Subinterface_Ipv6_Address_VrrpGroup_InterfaceTracking_TrackInterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "track-interface"}, + []string{"config", "track-interface"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv6_Autoconf represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf struct { +// Interface_Subinterface_Ipv6_AutoconfPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf YANG schema element. +type Interface_Subinterface_Ipv6_AutoconfPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_AutoconfAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf YANG schema element. -type Interface_Subinterface_Ipv6_AutoconfAny struct { +// Interface_Subinterface_Ipv6_AutoconfPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf YANG schema element. +type Interface_Subinterface_Ipv6_AutoconfPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddresses represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/create-global-addresses YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddresses struct { +// Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/create-global-addresses YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/create-global-addresses YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesAny struct { +// Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/create-global-addresses YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddresses represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/create-temporary-addresses YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddresses struct { +// Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/create-temporary-addresses YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/create-temporary-addresses YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesAny struct { +// Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/create-temporary-addresses YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetime represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/temporary-preferred-lifetime YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetime struct { +// Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/temporary-preferred-lifetime YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/temporary-preferred-lifetime YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimeAny struct { +// Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/temporary-preferred-lifetime YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetime represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/temporary-valid-lifetime YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetime struct { +// Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/temporary-valid-lifetime YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/state/temporary-valid-lifetime YANG schema element. -type Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimeAny struct { +// Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/autoconf/config/temporary-valid-lifetime YANG schema element. +type Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePathAny struct { *ygot.NodePath } -// CreateGlobalAddresses returns from Interface_Subinterface_Ipv6_Autoconf the path struct for its child "create-global-addresses". -func (n *Interface_Subinterface_Ipv6_Autoconf) CreateGlobalAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddresses { - return &Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddresses{ +// CreateGlobalAddresses returns from Interface_Subinterface_Ipv6_AutoconfPath the path struct for its child "create-global-addresses". +func (n *Interface_Subinterface_Ipv6_AutoconfPath) CreateGlobalAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPath { + return &Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPath{ NodePath: ygot.NewNodePath( - []string{"state", "create-global-addresses"}, + []string{"config", "create-global-addresses"}, map[string]interface{}{}, n, ), } } -// CreateGlobalAddresses returns from Interface_Subinterface_Ipv6_AutoconfAny the path struct for its child "create-global-addresses". -func (n *Interface_Subinterface_Ipv6_AutoconfAny) CreateGlobalAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesAny { - return &Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesAny{ +// CreateGlobalAddresses returns from Interface_Subinterface_Ipv6_AutoconfPathAny the path struct for its child "create-global-addresses". +func (n *Interface_Subinterface_Ipv6_AutoconfPathAny) CreateGlobalAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPathAny { + return &Interface_Subinterface_Ipv6_Autoconf_CreateGlobalAddressesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "create-global-addresses"}, + []string{"config", "create-global-addresses"}, map[string]interface{}{}, n, ), } } -// CreateTemporaryAddresses returns from Interface_Subinterface_Ipv6_Autoconf the path struct for its child "create-temporary-addresses". -func (n *Interface_Subinterface_Ipv6_Autoconf) CreateTemporaryAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddresses { - return &Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddresses{ +// CreateTemporaryAddresses returns from Interface_Subinterface_Ipv6_AutoconfPath the path struct for its child "create-temporary-addresses". +func (n *Interface_Subinterface_Ipv6_AutoconfPath) CreateTemporaryAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPath { + return &Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPath{ NodePath: ygot.NewNodePath( - []string{"state", "create-temporary-addresses"}, + []string{"config", "create-temporary-addresses"}, map[string]interface{}{}, n, ), } } -// CreateTemporaryAddresses returns from Interface_Subinterface_Ipv6_AutoconfAny the path struct for its child "create-temporary-addresses". -func (n *Interface_Subinterface_Ipv6_AutoconfAny) CreateTemporaryAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesAny { - return &Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesAny{ +// CreateTemporaryAddresses returns from Interface_Subinterface_Ipv6_AutoconfPathAny the path struct for its child "create-temporary-addresses". +func (n *Interface_Subinterface_Ipv6_AutoconfPathAny) CreateTemporaryAddresses() *Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPathAny { + return &Interface_Subinterface_Ipv6_Autoconf_CreateTemporaryAddressesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "create-temporary-addresses"}, + []string{"config", "create-temporary-addresses"}, map[string]interface{}{}, n, ), } } -// TemporaryPreferredLifetime returns from Interface_Subinterface_Ipv6_Autoconf the path struct for its child "temporary-preferred-lifetime". -func (n *Interface_Subinterface_Ipv6_Autoconf) TemporaryPreferredLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetime { - return &Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetime{ +// TemporaryPreferredLifetime returns from Interface_Subinterface_Ipv6_AutoconfPath the path struct for its child "temporary-preferred-lifetime". +func (n *Interface_Subinterface_Ipv6_AutoconfPath) TemporaryPreferredLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePath { + return &Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePath{ NodePath: ygot.NewNodePath( - []string{"state", "temporary-preferred-lifetime"}, + []string{"config", "temporary-preferred-lifetime"}, map[string]interface{}{}, n, ), } } -// TemporaryPreferredLifetime returns from Interface_Subinterface_Ipv6_AutoconfAny the path struct for its child "temporary-preferred-lifetime". -func (n *Interface_Subinterface_Ipv6_AutoconfAny) TemporaryPreferredLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimeAny { - return &Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimeAny{ +// TemporaryPreferredLifetime returns from Interface_Subinterface_Ipv6_AutoconfPathAny the path struct for its child "temporary-preferred-lifetime". +func (n *Interface_Subinterface_Ipv6_AutoconfPathAny) TemporaryPreferredLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePathAny { + return &Interface_Subinterface_Ipv6_Autoconf_TemporaryPreferredLifetimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "temporary-preferred-lifetime"}, + []string{"config", "temporary-preferred-lifetime"}, map[string]interface{}{}, n, ), } } -// TemporaryValidLifetime returns from Interface_Subinterface_Ipv6_Autoconf the path struct for its child "temporary-valid-lifetime". -func (n *Interface_Subinterface_Ipv6_Autoconf) TemporaryValidLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetime { - return &Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetime{ +// TemporaryValidLifetime returns from Interface_Subinterface_Ipv6_AutoconfPath the path struct for its child "temporary-valid-lifetime". +func (n *Interface_Subinterface_Ipv6_AutoconfPath) TemporaryValidLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePath { + return &Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePath{ NodePath: ygot.NewNodePath( - []string{"state", "temporary-valid-lifetime"}, + []string{"config", "temporary-valid-lifetime"}, map[string]interface{}{}, n, ), } } -// TemporaryValidLifetime returns from Interface_Subinterface_Ipv6_AutoconfAny the path struct for its child "temporary-valid-lifetime". -func (n *Interface_Subinterface_Ipv6_AutoconfAny) TemporaryValidLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimeAny { - return &Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimeAny{ +// TemporaryValidLifetime returns from Interface_Subinterface_Ipv6_AutoconfPathAny the path struct for its child "temporary-valid-lifetime". +func (n *Interface_Subinterface_Ipv6_AutoconfPathAny) TemporaryValidLifetime() *Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePathAny { + return &Interface_Subinterface_Ipv6_Autoconf_TemporaryValidLifetimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "temporary-valid-lifetime"}, + []string{"config", "temporary-valid-lifetime"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv6_Counters represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters YANG schema element. -type Interface_Subinterface_Ipv6_Counters struct { +// Interface_Subinterface_Ipv6_CountersPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters YANG schema element. +type Interface_Subinterface_Ipv6_CountersPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_CountersAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters YANG schema element. -type Interface_Subinterface_Ipv6_CountersAny struct { +// Interface_Subinterface_Ipv6_CountersPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters YANG schema element. +type Interface_Subinterface_Ipv6_CountersPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InDiscardedPkts struct { +// Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InDiscardedPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InErrorPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-error-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InErrorPkts struct { +// Interface_Subinterface_Ipv6_Counters_InErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-error-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InErrorPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-error-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InErrorPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_InErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-error-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InErrorPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InForwardedOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InForwardedOctets struct { +// Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InForwardedOctetsAny struct { +// Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InForwardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InForwardedPkts struct { +// Interface_Subinterface_Ipv6_Counters_InForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InForwardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InForwardedPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_InForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InOctets struct { +// Interface_Subinterface_Ipv6_Counters_InOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InOctetsAny struct { +// Interface_Subinterface_Ipv6_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InPkts struct { +// Interface_Subinterface_Ipv6_Counters_InPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_InPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_InPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_InPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/in-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_InPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutDiscardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutDiscardedPkts struct { +// Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-discarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-discarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutErrorPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-error-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutErrorPkts struct { +// Interface_Subinterface_Ipv6_Counters_OutErrorPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-error-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutErrorPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutErrorPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-error-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutErrorPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutErrorPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-error-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutErrorPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutForwardedOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutForwardedOctets struct { +// Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutForwardedPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutForwardedPkts struct { +// Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutForwardedPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutForwardedPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-forwarded-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutOctets represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutOctets struct { +// Interface_Subinterface_Ipv6_Counters_OutOctetsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutOctetsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutOctetsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-octets YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutOctetsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-octets YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutPkts represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutPkts struct { +// Interface_Subinterface_Ipv6_Counters_OutPktsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutPktsPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Counters_OutPktsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-pkts YANG schema element. -type Interface_Subinterface_Ipv6_Counters_OutPktsAny struct { +// Interface_Subinterface_Ipv6_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/state/counters/out-pkts YANG schema element. +type Interface_Subinterface_Ipv6_Counters_OutPktsPathAny struct { *ygot.NodePath } -// InDiscardedPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-discarded-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) InDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_InDiscardedPkts { - return &Interface_Subinterface_Ipv6_Counters_InDiscardedPkts{ +// InDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-discarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) InDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPath { + return &Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -52092,9 +52306,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InDiscardedPkts() *Interface_Subi } } -// InDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-discarded-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) InDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_InDiscardedPktsAny { - return &Interface_Subinterface_Ipv6_Counters_InDiscardedPktsAny{ +// InDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-discarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-discarded-pkts"}, map[string]interface{}{}, @@ -52103,9 +52317,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InDiscardedPkts() *Interface_S } } -// InErrorPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-error-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) InErrorPkts() *Interface_Subinterface_Ipv6_Counters_InErrorPkts { - return &Interface_Subinterface_Ipv6_Counters_InErrorPkts{ +// InErrorPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-error-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) InErrorPkts() *Interface_Subinterface_Ipv6_Counters_InErrorPktsPath { + return &Interface_Subinterface_Ipv6_Counters_InErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -52114,9 +52328,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InErrorPkts() *Interface_Subinter } } -// InErrorPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-error-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) InErrorPkts() *Interface_Subinterface_Ipv6_Counters_InErrorPktsAny { - return &Interface_Subinterface_Ipv6_Counters_InErrorPktsAny{ +// InErrorPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-error-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InErrorPkts() *Interface_Subinterface_Ipv6_Counters_InErrorPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-error-pkts"}, map[string]interface{}{}, @@ -52125,9 +52339,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InErrorPkts() *Interface_Subin } } -// InForwardedOctets returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-forwarded-octets". -func (n *Interface_Subinterface_Ipv6_Counters) InForwardedOctets() *Interface_Subinterface_Ipv6_Counters_InForwardedOctets { - return &Interface_Subinterface_Ipv6_Counters_InForwardedOctets{ +// InForwardedOctets returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-forwarded-octets". +func (n *Interface_Subinterface_Ipv6_CountersPath) InForwardedOctets() *Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPath { + return &Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -52136,9 +52350,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InForwardedOctets() *Interface_Su } } -// InForwardedOctets returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-forwarded-octets". -func (n *Interface_Subinterface_Ipv6_CountersAny) InForwardedOctets() *Interface_Subinterface_Ipv6_Counters_InForwardedOctetsAny { - return &Interface_Subinterface_Ipv6_Counters_InForwardedOctetsAny{ +// InForwardedOctets returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-forwarded-octets". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InForwardedOctets() *Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-octets"}, map[string]interface{}{}, @@ -52147,9 +52361,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InForwardedOctets() *Interface } } -// InForwardedPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-forwarded-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) InForwardedPkts() *Interface_Subinterface_Ipv6_Counters_InForwardedPkts { - return &Interface_Subinterface_Ipv6_Counters_InForwardedPkts{ +// InForwardedPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-forwarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) InForwardedPkts() *Interface_Subinterface_Ipv6_Counters_InForwardedPktsPath { + return &Interface_Subinterface_Ipv6_Counters_InForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -52158,9 +52372,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InForwardedPkts() *Interface_Subi } } -// InForwardedPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-forwarded-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) InForwardedPkts() *Interface_Subinterface_Ipv6_Counters_InForwardedPktsAny { - return &Interface_Subinterface_Ipv6_Counters_InForwardedPktsAny{ +// InForwardedPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-forwarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InForwardedPkts() *Interface_Subinterface_Ipv6_Counters_InForwardedPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-forwarded-pkts"}, map[string]interface{}{}, @@ -52169,9 +52383,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InForwardedPkts() *Interface_S } } -// InOctets returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-octets". -func (n *Interface_Subinterface_Ipv6_Counters) InOctets() *Interface_Subinterface_Ipv6_Counters_InOctets { - return &Interface_Subinterface_Ipv6_Counters_InOctets{ +// InOctets returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-octets". +func (n *Interface_Subinterface_Ipv6_CountersPath) InOctets() *Interface_Subinterface_Ipv6_Counters_InOctetsPath { + return &Interface_Subinterface_Ipv6_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -52180,9 +52394,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InOctets() *Interface_Subinterfac } } -// InOctets returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-octets". -func (n *Interface_Subinterface_Ipv6_CountersAny) InOctets() *Interface_Subinterface_Ipv6_Counters_InOctetsAny { - return &Interface_Subinterface_Ipv6_Counters_InOctetsAny{ +// InOctets returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-octets". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InOctets() *Interface_Subinterface_Ipv6_Counters_InOctetsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -52191,9 +52405,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InOctets() *Interface_Subinter } } -// InPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "in-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) InPkts() *Interface_Subinterface_Ipv6_Counters_InPkts { - return &Interface_Subinterface_Ipv6_Counters_InPkts{ +// InPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "in-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) InPkts() *Interface_Subinterface_Ipv6_Counters_InPktsPath { + return &Interface_Subinterface_Ipv6_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -52202,9 +52416,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) InPkts() *Interface_Subinterface_ } } -// InPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "in-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) InPkts() *Interface_Subinterface_Ipv6_Counters_InPktsAny { - return &Interface_Subinterface_Ipv6_Counters_InPktsAny{ +// InPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "in-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) InPkts() *Interface_Subinterface_Ipv6_Counters_InPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -52213,9 +52427,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) InPkts() *Interface_Subinterfa } } -// OutDiscardedPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-discarded-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) OutDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_OutDiscardedPkts { - return &Interface_Subinterface_Ipv6_Counters_OutDiscardedPkts{ +// OutDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-discarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPath { + return &Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -52224,9 +52438,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutDiscardedPkts() *Interface_Sub } } -// OutDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-discarded-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsAny { - return &Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsAny{ +// OutDiscardedPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-discarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutDiscardedPkts() *Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutDiscardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-discarded-pkts"}, map[string]interface{}{}, @@ -52235,9 +52449,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutDiscardedPkts() *Interface_ } } -// OutErrorPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-error-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) OutErrorPkts() *Interface_Subinterface_Ipv6_Counters_OutErrorPkts { - return &Interface_Subinterface_Ipv6_Counters_OutErrorPkts{ +// OutErrorPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-error-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutErrorPkts() *Interface_Subinterface_Ipv6_Counters_OutErrorPktsPath { + return &Interface_Subinterface_Ipv6_Counters_OutErrorPktsPath{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -52246,9 +52460,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutErrorPkts() *Interface_Subinte } } -// OutErrorPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-error-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutErrorPkts() *Interface_Subinterface_Ipv6_Counters_OutErrorPktsAny { - return &Interface_Subinterface_Ipv6_Counters_OutErrorPktsAny{ +// OutErrorPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-error-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutErrorPkts() *Interface_Subinterface_Ipv6_Counters_OutErrorPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutErrorPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-error-pkts"}, map[string]interface{}{}, @@ -52257,9 +52471,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutErrorPkts() *Interface_Subi } } -// OutForwardedOctets returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-forwarded-octets". -func (n *Interface_Subinterface_Ipv6_Counters) OutForwardedOctets() *Interface_Subinterface_Ipv6_Counters_OutForwardedOctets { - return &Interface_Subinterface_Ipv6_Counters_OutForwardedOctets{ +// OutForwardedOctets returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-forwarded-octets". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutForwardedOctets() *Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPath { + return &Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -52268,9 +52482,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutForwardedOctets() *Interface_S } } -// OutForwardedOctets returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-forwarded-octets". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutForwardedOctets() *Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsAny { - return &Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsAny{ +// OutForwardedOctets returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-forwarded-octets". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutForwardedOctets() *Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutForwardedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-octets"}, map[string]interface{}{}, @@ -52279,9 +52493,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutForwardedOctets() *Interfac } } -// OutForwardedPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-forwarded-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) OutForwardedPkts() *Interface_Subinterface_Ipv6_Counters_OutForwardedPkts { - return &Interface_Subinterface_Ipv6_Counters_OutForwardedPkts{ +// OutForwardedPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-forwarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutForwardedPkts() *Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPath { + return &Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPath{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -52290,9 +52504,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutForwardedPkts() *Interface_Sub } } -// OutForwardedPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-forwarded-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutForwardedPkts() *Interface_Subinterface_Ipv6_Counters_OutForwardedPktsAny { - return &Interface_Subinterface_Ipv6_Counters_OutForwardedPktsAny{ +// OutForwardedPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-forwarded-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutForwardedPkts() *Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutForwardedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-forwarded-pkts"}, map[string]interface{}{}, @@ -52301,9 +52515,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutForwardedPkts() *Interface_ } } -// OutOctets returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-octets". -func (n *Interface_Subinterface_Ipv6_Counters) OutOctets() *Interface_Subinterface_Ipv6_Counters_OutOctets { - return &Interface_Subinterface_Ipv6_Counters_OutOctets{ +// OutOctets returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-octets". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutOctets() *Interface_Subinterface_Ipv6_Counters_OutOctetsPath { + return &Interface_Subinterface_Ipv6_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -52312,9 +52526,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutOctets() *Interface_Subinterfa } } -// OutOctets returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-octets". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutOctets() *Interface_Subinterface_Ipv6_Counters_OutOctetsAny { - return &Interface_Subinterface_Ipv6_Counters_OutOctetsAny{ +// OutOctets returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-octets". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutOctets() *Interface_Subinterface_Ipv6_Counters_OutOctetsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -52323,9 +52537,9 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutOctets() *Interface_Subinte } } -// OutPkts returns from Interface_Subinterface_Ipv6_Counters the path struct for its child "out-pkts". -func (n *Interface_Subinterface_Ipv6_Counters) OutPkts() *Interface_Subinterface_Ipv6_Counters_OutPkts { - return &Interface_Subinterface_Ipv6_Counters_OutPkts{ +// OutPkts returns from Interface_Subinterface_Ipv6_CountersPath the path struct for its child "out-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPath) OutPkts() *Interface_Subinterface_Ipv6_Counters_OutPktsPath { + return &Interface_Subinterface_Ipv6_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -52334,9 +52548,9 @@ func (n *Interface_Subinterface_Ipv6_Counters) OutPkts() *Interface_Subinterface } } -// OutPkts returns from Interface_Subinterface_Ipv6_CountersAny the path struct for its child "out-pkts". -func (n *Interface_Subinterface_Ipv6_CountersAny) OutPkts() *Interface_Subinterface_Ipv6_Counters_OutPktsAny { - return &Interface_Subinterface_Ipv6_Counters_OutPktsAny{ +// OutPkts returns from Interface_Subinterface_Ipv6_CountersPathAny the path struct for its child "out-pkts". +func (n *Interface_Subinterface_Ipv6_CountersPathAny) OutPkts() *Interface_Subinterface_Ipv6_Counters_OutPktsPathAny { + return &Interface_Subinterface_Ipv6_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -52345,91 +52559,91 @@ func (n *Interface_Subinterface_Ipv6_CountersAny) OutPkts() *Interface_Subinterf } } -// Interface_Subinterface_Ipv6_Neighbor represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor struct { +// Interface_Subinterface_Ipv6_NeighborPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor YANG schema element. +type Interface_Subinterface_Ipv6_NeighborPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_NeighborAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor YANG schema element. -type Interface_Subinterface_Ipv6_NeighborAny struct { +// Interface_Subinterface_Ipv6_NeighborPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor YANG schema element. +type Interface_Subinterface_Ipv6_NeighborPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_Ip represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/ip YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_Ip struct { +// Interface_Subinterface_Ipv6_Neighbor_IpPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/config/ip YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_IpPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_IpAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/ip YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_IpAny struct { +// Interface_Subinterface_Ipv6_Neighbor_IpPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/config/ip YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_IpPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_IsRouter represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/is-router YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_IsRouter struct { +// Interface_Subinterface_Ipv6_Neighbor_IsRouterPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/is-router YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_IsRouterPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_IsRouterAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/is-router YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_IsRouterAny struct { +// Interface_Subinterface_Ipv6_Neighbor_IsRouterPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/is-router YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_IsRouterPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddress represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddress struct { +// Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/link-layer-address YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressAny struct { +// Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/config/link-layer-address YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_NeighborState represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_NeighborState struct { +// Interface_Subinterface_Ipv6_Neighbor_NeighborStatePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_NeighborStatePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_NeighborStateAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_NeighborStateAny struct { +// Interface_Subinterface_Ipv6_Neighbor_NeighborStatePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/neighbor-state YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_NeighborStatePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_Origin represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/origin YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_Origin struct { +// Interface_Subinterface_Ipv6_Neighbor_OriginPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/origin YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_OriginPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Neighbor_OriginAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/origin YANG schema element. -type Interface_Subinterface_Ipv6_Neighbor_OriginAny struct { +// Interface_Subinterface_Ipv6_Neighbor_OriginPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/neighbors/neighbor/state/origin YANG schema element. +type Interface_Subinterface_Ipv6_Neighbor_OriginPathAny struct { *ygot.NodePath } -// Ip returns from Interface_Subinterface_Ipv6_Neighbor the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv6_Neighbor) Ip() *Interface_Subinterface_Ipv6_Neighbor_Ip { - return &Interface_Subinterface_Ipv6_Neighbor_Ip{ +// Ip returns from Interface_Subinterface_Ipv6_NeighborPath the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv6_NeighborPath) Ip() *Interface_Subinterface_Ipv6_Neighbor_IpPath { + return &Interface_Subinterface_Ipv6_Neighbor_IpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// Ip returns from Interface_Subinterface_Ipv6_NeighborAny the path struct for its child "ip". -func (n *Interface_Subinterface_Ipv6_NeighborAny) Ip() *Interface_Subinterface_Ipv6_Neighbor_IpAny { - return &Interface_Subinterface_Ipv6_Neighbor_IpAny{ +// Ip returns from Interface_Subinterface_Ipv6_NeighborPathAny the path struct for its child "ip". +func (n *Interface_Subinterface_Ipv6_NeighborPathAny) Ip() *Interface_Subinterface_Ipv6_Neighbor_IpPathAny { + return &Interface_Subinterface_Ipv6_Neighbor_IpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip"}, + []string{"config", "ip"}, map[string]interface{}{}, n, ), } } -// IsRouter returns from Interface_Subinterface_Ipv6_Neighbor the path struct for its child "is-router". -func (n *Interface_Subinterface_Ipv6_Neighbor) IsRouter() *Interface_Subinterface_Ipv6_Neighbor_IsRouter { - return &Interface_Subinterface_Ipv6_Neighbor_IsRouter{ +// IsRouter returns from Interface_Subinterface_Ipv6_NeighborPath the path struct for its child "is-router". +func (n *Interface_Subinterface_Ipv6_NeighborPath) IsRouter() *Interface_Subinterface_Ipv6_Neighbor_IsRouterPath { + return &Interface_Subinterface_Ipv6_Neighbor_IsRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "is-router"}, map[string]interface{}{}, @@ -52438,9 +52652,9 @@ func (n *Interface_Subinterface_Ipv6_Neighbor) IsRouter() *Interface_Subinterfac } } -// IsRouter returns from Interface_Subinterface_Ipv6_NeighborAny the path struct for its child "is-router". -func (n *Interface_Subinterface_Ipv6_NeighborAny) IsRouter() *Interface_Subinterface_Ipv6_Neighbor_IsRouterAny { - return &Interface_Subinterface_Ipv6_Neighbor_IsRouterAny{ +// IsRouter returns from Interface_Subinterface_Ipv6_NeighborPathAny the path struct for its child "is-router". +func (n *Interface_Subinterface_Ipv6_NeighborPathAny) IsRouter() *Interface_Subinterface_Ipv6_Neighbor_IsRouterPathAny { + return &Interface_Subinterface_Ipv6_Neighbor_IsRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "is-router"}, map[string]interface{}{}, @@ -52449,31 +52663,31 @@ func (n *Interface_Subinterface_Ipv6_NeighborAny) IsRouter() *Interface_Subinter } } -// LinkLayerAddress returns from Interface_Subinterface_Ipv6_Neighbor the path struct for its child "link-layer-address". -func (n *Interface_Subinterface_Ipv6_Neighbor) LinkLayerAddress() *Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddress { - return &Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddress{ +// LinkLayerAddress returns from Interface_Subinterface_Ipv6_NeighborPath the path struct for its child "link-layer-address". +func (n *Interface_Subinterface_Ipv6_NeighborPath) LinkLayerAddress() *Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPath { + return &Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// LinkLayerAddress returns from Interface_Subinterface_Ipv6_NeighborAny the path struct for its child "link-layer-address". -func (n *Interface_Subinterface_Ipv6_NeighborAny) LinkLayerAddress() *Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressAny { - return &Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressAny{ +// LinkLayerAddress returns from Interface_Subinterface_Ipv6_NeighborPathAny the path struct for its child "link-layer-address". +func (n *Interface_Subinterface_Ipv6_NeighborPathAny) LinkLayerAddress() *Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPathAny { + return &Interface_Subinterface_Ipv6_Neighbor_LinkLayerAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-layer-address"}, + []string{"config", "link-layer-address"}, map[string]interface{}{}, n, ), } } -// NeighborState returns from Interface_Subinterface_Ipv6_Neighbor the path struct for its child "neighbor-state". -func (n *Interface_Subinterface_Ipv6_Neighbor) NeighborState() *Interface_Subinterface_Ipv6_Neighbor_NeighborState { - return &Interface_Subinterface_Ipv6_Neighbor_NeighborState{ +// NeighborState returns from Interface_Subinterface_Ipv6_NeighborPath the path struct for its child "neighbor-state". +func (n *Interface_Subinterface_Ipv6_NeighborPath) NeighborState() *Interface_Subinterface_Ipv6_Neighbor_NeighborStatePath { + return &Interface_Subinterface_Ipv6_Neighbor_NeighborStatePath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-state"}, map[string]interface{}{}, @@ -52482,9 +52696,9 @@ func (n *Interface_Subinterface_Ipv6_Neighbor) NeighborState() *Interface_Subint } } -// NeighborState returns from Interface_Subinterface_Ipv6_NeighborAny the path struct for its child "neighbor-state". -func (n *Interface_Subinterface_Ipv6_NeighborAny) NeighborState() *Interface_Subinterface_Ipv6_Neighbor_NeighborStateAny { - return &Interface_Subinterface_Ipv6_Neighbor_NeighborStateAny{ +// NeighborState returns from Interface_Subinterface_Ipv6_NeighborPathAny the path struct for its child "neighbor-state". +func (n *Interface_Subinterface_Ipv6_NeighborPathAny) NeighborState() *Interface_Subinterface_Ipv6_Neighbor_NeighborStatePathAny { + return &Interface_Subinterface_Ipv6_Neighbor_NeighborStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-state"}, map[string]interface{}{}, @@ -52493,9 +52707,9 @@ func (n *Interface_Subinterface_Ipv6_NeighborAny) NeighborState() *Interface_Sub } } -// Origin returns from Interface_Subinterface_Ipv6_Neighbor the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv6_Neighbor) Origin() *Interface_Subinterface_Ipv6_Neighbor_Origin { - return &Interface_Subinterface_Ipv6_Neighbor_Origin{ +// Origin returns from Interface_Subinterface_Ipv6_NeighborPath the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv6_NeighborPath) Origin() *Interface_Subinterface_Ipv6_Neighbor_OriginPath { + return &Interface_Subinterface_Ipv6_Neighbor_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -52504,9 +52718,9 @@ func (n *Interface_Subinterface_Ipv6_Neighbor) Origin() *Interface_Subinterface_ } } -// Origin returns from Interface_Subinterface_Ipv6_NeighborAny the path struct for its child "origin". -func (n *Interface_Subinterface_Ipv6_NeighborAny) Origin() *Interface_Subinterface_Ipv6_Neighbor_OriginAny { - return &Interface_Subinterface_Ipv6_Neighbor_OriginAny{ +// Origin returns from Interface_Subinterface_Ipv6_NeighborPathAny the path struct for its child "origin". +func (n *Interface_Subinterface_Ipv6_NeighborPathAny) Origin() *Interface_Subinterface_Ipv6_Neighbor_OriginPathAny { + return &Interface_Subinterface_Ipv6_Neighbor_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -52515,157 +52729,157 @@ func (n *Interface_Subinterface_Ipv6_NeighborAny) Origin() *Interface_Subinterfa } } -// Interface_Subinterface_Ipv6_RouterAdvertisement represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement struct { +// Interface_Subinterface_Ipv6_RouterAdvertisementPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisementPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisementAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisementAny struct { +// Interface_Subinterface_Ipv6_RouterAdvertisementPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisementPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_Interval represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/interval YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_Interval struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/interval YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/interval YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalAny struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/interval YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_Lifetime represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/lifetime YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_Lifetime struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/lifetime YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/lifetime YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimeAny struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/lifetime YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_Suppress represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/suppress YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_Suppress struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/suppress YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/state/suppress YANG schema element. -type Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressAny struct { +// Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/router-advertisement/config/suppress YANG schema element. +type Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPathAny struct { *ygot.NodePath } -// Interval returns from Interface_Subinterface_Ipv6_RouterAdvertisement the path struct for its child "interval". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisement) Interval() *Interface_Subinterface_Ipv6_RouterAdvertisement_Interval { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_Interval{ +// Interval returns from Interface_Subinterface_Ipv6_RouterAdvertisementPath the path struct for its child "interval". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPath) Interval() *Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPath { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// Interval returns from Interface_Subinterface_Ipv6_RouterAdvertisementAny the path struct for its child "interval". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisementAny) Interval() *Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalAny { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalAny{ +// Interval returns from Interface_Subinterface_Ipv6_RouterAdvertisementPathAny the path struct for its child "interval". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPathAny) Interval() *Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPathAny { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_IntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// Lifetime returns from Interface_Subinterface_Ipv6_RouterAdvertisement the path struct for its child "lifetime". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisement) Lifetime() *Interface_Subinterface_Ipv6_RouterAdvertisement_Lifetime { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_Lifetime{ +// Lifetime returns from Interface_Subinterface_Ipv6_RouterAdvertisementPath the path struct for its child "lifetime". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPath) Lifetime() *Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePath { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePath{ NodePath: ygot.NewNodePath( - []string{"state", "lifetime"}, + []string{"config", "lifetime"}, map[string]interface{}{}, n, ), } } -// Lifetime returns from Interface_Subinterface_Ipv6_RouterAdvertisementAny the path struct for its child "lifetime". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisementAny) Lifetime() *Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimeAny { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimeAny{ +// Lifetime returns from Interface_Subinterface_Ipv6_RouterAdvertisementPathAny the path struct for its child "lifetime". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPathAny) Lifetime() *Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePathAny { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_LifetimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lifetime"}, + []string{"config", "lifetime"}, map[string]interface{}{}, n, ), } } -// Suppress returns from Interface_Subinterface_Ipv6_RouterAdvertisement the path struct for its child "suppress". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisement) Suppress() *Interface_Subinterface_Ipv6_RouterAdvertisement_Suppress { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_Suppress{ +// Suppress returns from Interface_Subinterface_Ipv6_RouterAdvertisementPath the path struct for its child "suppress". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPath) Suppress() *Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPath { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPath{ NodePath: ygot.NewNodePath( - []string{"state", "suppress"}, + []string{"config", "suppress"}, map[string]interface{}{}, n, ), } } -// Suppress returns from Interface_Subinterface_Ipv6_RouterAdvertisementAny the path struct for its child "suppress". -func (n *Interface_Subinterface_Ipv6_RouterAdvertisementAny) Suppress() *Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressAny { - return &Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressAny{ +// Suppress returns from Interface_Subinterface_Ipv6_RouterAdvertisementPathAny the path struct for its child "suppress". +func (n *Interface_Subinterface_Ipv6_RouterAdvertisementPathAny) Suppress() *Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPathAny { + return &Interface_Subinterface_Ipv6_RouterAdvertisement_SuppressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "suppress"}, + []string{"config", "suppress"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Ipv6_Unnumbered represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered struct { +// Interface_Subinterface_Ipv6_UnnumberedPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered YANG schema element. +type Interface_Subinterface_Ipv6_UnnumberedPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_UnnumberedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered YANG schema element. -type Interface_Subinterface_Ipv6_UnnumberedAny struct { +// Interface_Subinterface_Ipv6_UnnumberedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered YANG schema element. +type Interface_Subinterface_Ipv6_UnnumberedPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_Enabled represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/state/enabled YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_Enabled struct { +// Interface_Subinterface_Ipv6_Unnumbered_EnabledPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/config/enabled YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_EnabledPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_EnabledAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/state/enabled YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_EnabledAny struct { +// Interface_Subinterface_Ipv6_Unnumbered_EnabledPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/config/enabled YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from Interface_Subinterface_Ipv6_Unnumbered the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv6_Unnumbered) Enabled() *Interface_Subinterface_Ipv6_Unnumbered_Enabled { - return &Interface_Subinterface_Ipv6_Unnumbered_Enabled{ +// Enabled returns from Interface_Subinterface_Ipv6_UnnumberedPath the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv6_UnnumberedPath) Enabled() *Interface_Subinterface_Ipv6_Unnumbered_EnabledPath { + return &Interface_Subinterface_Ipv6_Unnumbered_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Interface_Subinterface_Ipv6_UnnumberedAny the path struct for its child "enabled". -func (n *Interface_Subinterface_Ipv6_UnnumberedAny) Enabled() *Interface_Subinterface_Ipv6_Unnumbered_EnabledAny { - return &Interface_Subinterface_Ipv6_Unnumbered_EnabledAny{ +// Enabled returns from Interface_Subinterface_Ipv6_UnnumberedPathAny the path struct for its child "enabled". +func (n *Interface_Subinterface_Ipv6_UnnumberedPathAny) Enabled() *Interface_Subinterface_Ipv6_Unnumbered_EnabledPathAny { + return &Interface_Subinterface_Ipv6_Unnumbered_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from Interface_Subinterface_Ipv6_Unnumbered the path struct for its child "interface-ref". -func (n *Interface_Subinterface_Ipv6_Unnumbered) InterfaceRef() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef{ +// InterfaceRef returns from Interface_Subinterface_Ipv6_UnnumberedPath the path struct for its child "interface-ref". +func (n *Interface_Subinterface_Ipv6_UnnumberedPath) InterfaceRef() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -52674,9 +52888,9 @@ func (n *Interface_Subinterface_Ipv6_Unnumbered) InterfaceRef() *Interface_Subin } } -// InterfaceRef returns from Interface_Subinterface_Ipv6_UnnumberedAny the path struct for its child "interface-ref". -func (n *Interface_Subinterface_Ipv6_UnnumberedAny) InterfaceRef() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny{ +// InterfaceRef returns from Interface_Subinterface_Ipv6_UnnumberedPathAny the path struct for its child "interface-ref". +func (n *Interface_Subinterface_Ipv6_UnnumberedPathAny) InterfaceRef() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -52685,103 +52899,103 @@ func (n *Interface_Subinterface_Ipv6_UnnumberedAny) InterfaceRef() *Interface_Su } } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Interface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Interface struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/state/interface YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfaceAny struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/config/interface YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Subinterface represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Subinterface struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/state/subinterface YANG schema element. -type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny struct { +// Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/ipv6/unnumbered/interface-ref/config/subinterface YANG schema element. +type Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef the path struct for its child "interface". -func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef) Interface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Interface { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Interface{ +// Interface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath the path struct for its child "interface". +func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath) Interface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePath { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny the path struct for its child "interface". -func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny) Interface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfaceAny { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfaceAny{ +// Interface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny the path struct for its child "interface". +func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny) Interface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef the path struct for its child "subinterface". -func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef) Subinterface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Subinterface { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_Subinterface{ +// Subinterface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath the path struct for its child "subinterface". +func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPath) Subinterface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny the path struct for its child "subinterface". -func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefAny) Subinterface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny { - return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRefPathAny) Subinterface() *Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny { + return &Interface_Subinterface_Ipv6_Unnumbered_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan YANG schema element. -type Interface_Subinterface_Vlan struct { +// Interface_Subinterface_VlanPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan YANG schema element. +type Interface_Subinterface_VlanPath struct { *ygot.NodePath } -// Interface_Subinterface_VlanAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan YANG schema element. -type Interface_Subinterface_VlanAny struct { +// Interface_Subinterface_VlanPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan YANG schema element. +type Interface_Subinterface_VlanPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_VlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_VlanId struct { +// Interface_Subinterface_Vlan_VlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_VlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_VlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_VlanIdAny struct { +// Interface_Subinterface_Vlan_VlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_VlanIdPathAny struct { *ygot.NodePath } -// EgressMapping returns from Interface_Subinterface_Vlan the path struct for its child "egress-mapping". -func (n *Interface_Subinterface_Vlan) EgressMapping() *Interface_Subinterface_Vlan_EgressMapping { - return &Interface_Subinterface_Vlan_EgressMapping{ +// EgressMapping returns from Interface_Subinterface_VlanPath the path struct for its child "egress-mapping". +func (n *Interface_Subinterface_VlanPath) EgressMapping() *Interface_Subinterface_Vlan_EgressMappingPath { + return &Interface_Subinterface_Vlan_EgressMappingPath{ NodePath: ygot.NewNodePath( []string{"egress-mapping"}, map[string]interface{}{}, @@ -52790,9 +53004,9 @@ func (n *Interface_Subinterface_Vlan) EgressMapping() *Interface_Subinterface_Vl } } -// EgressMapping returns from Interface_Subinterface_VlanAny the path struct for its child "egress-mapping". -func (n *Interface_Subinterface_VlanAny) EgressMapping() *Interface_Subinterface_Vlan_EgressMappingAny { - return &Interface_Subinterface_Vlan_EgressMappingAny{ +// EgressMapping returns from Interface_Subinterface_VlanPathAny the path struct for its child "egress-mapping". +func (n *Interface_Subinterface_VlanPathAny) EgressMapping() *Interface_Subinterface_Vlan_EgressMappingPathAny { + return &Interface_Subinterface_Vlan_EgressMappingPathAny{ NodePath: ygot.NewNodePath( []string{"egress-mapping"}, map[string]interface{}{}, @@ -52801,9 +53015,9 @@ func (n *Interface_Subinterface_VlanAny) EgressMapping() *Interface_Subinterface } } -// IngressMapping returns from Interface_Subinterface_Vlan the path struct for its child "ingress-mapping". -func (n *Interface_Subinterface_Vlan) IngressMapping() *Interface_Subinterface_Vlan_IngressMapping { - return &Interface_Subinterface_Vlan_IngressMapping{ +// IngressMapping returns from Interface_Subinterface_VlanPath the path struct for its child "ingress-mapping". +func (n *Interface_Subinterface_VlanPath) IngressMapping() *Interface_Subinterface_Vlan_IngressMappingPath { + return &Interface_Subinterface_Vlan_IngressMappingPath{ NodePath: ygot.NewNodePath( []string{"ingress-mapping"}, map[string]interface{}{}, @@ -52812,9 +53026,9 @@ func (n *Interface_Subinterface_Vlan) IngressMapping() *Interface_Subinterface_V } } -// IngressMapping returns from Interface_Subinterface_VlanAny the path struct for its child "ingress-mapping". -func (n *Interface_Subinterface_VlanAny) IngressMapping() *Interface_Subinterface_Vlan_IngressMappingAny { - return &Interface_Subinterface_Vlan_IngressMappingAny{ +// IngressMapping returns from Interface_Subinterface_VlanPathAny the path struct for its child "ingress-mapping". +func (n *Interface_Subinterface_VlanPathAny) IngressMapping() *Interface_Subinterface_Vlan_IngressMappingPathAny { + return &Interface_Subinterface_Vlan_IngressMappingPathAny{ NodePath: ygot.NewNodePath( []string{"ingress-mapping"}, map[string]interface{}{}, @@ -52823,9 +53037,9 @@ func (n *Interface_Subinterface_VlanAny) IngressMapping() *Interface_Subinterfac } } -// Match returns from Interface_Subinterface_Vlan the path struct for its child "match". -func (n *Interface_Subinterface_Vlan) Match() *Interface_Subinterface_Vlan_Match { - return &Interface_Subinterface_Vlan_Match{ +// Match returns from Interface_Subinterface_VlanPath the path struct for its child "match". +func (n *Interface_Subinterface_VlanPath) Match() *Interface_Subinterface_Vlan_MatchPath { + return &Interface_Subinterface_Vlan_MatchPath{ NodePath: ygot.NewNodePath( []string{"match"}, map[string]interface{}{}, @@ -52834,9 +53048,9 @@ func (n *Interface_Subinterface_Vlan) Match() *Interface_Subinterface_Vlan_Match } } -// Match returns from Interface_Subinterface_VlanAny the path struct for its child "match". -func (n *Interface_Subinterface_VlanAny) Match() *Interface_Subinterface_Vlan_MatchAny { - return &Interface_Subinterface_Vlan_MatchAny{ +// Match returns from Interface_Subinterface_VlanPathAny the path struct for its child "match". +func (n *Interface_Subinterface_VlanPathAny) Match() *Interface_Subinterface_Vlan_MatchPathAny { + return &Interface_Subinterface_Vlan_MatchPathAny{ NodePath: ygot.NewNodePath( []string{"match"}, map[string]interface{}{}, @@ -52845,253 +53059,253 @@ func (n *Interface_Subinterface_VlanAny) Match() *Interface_Subinterface_Vlan_Ma } } -// VlanId returns from Interface_Subinterface_Vlan the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan) VlanId() *Interface_Subinterface_Vlan_VlanId { - return &Interface_Subinterface_Vlan_VlanId{ +// VlanId returns from Interface_Subinterface_VlanPath the path struct for its child "vlan-id". +func (n *Interface_Subinterface_VlanPath) VlanId() *Interface_Subinterface_Vlan_VlanIdPath { + return &Interface_Subinterface_Vlan_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_VlanAny the path struct for its child "vlan-id". -func (n *Interface_Subinterface_VlanAny) VlanId() *Interface_Subinterface_Vlan_VlanIdAny { - return &Interface_Subinterface_Vlan_VlanIdAny{ +// VlanId returns from Interface_Subinterface_VlanPathAny the path struct for its child "vlan-id". +func (n *Interface_Subinterface_VlanPathAny) VlanId() *Interface_Subinterface_Vlan_VlanIdPathAny { + return &Interface_Subinterface_Vlan_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_EgressMapping represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping struct { +// Interface_Subinterface_Vlan_EgressMappingPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping YANG schema element. +type Interface_Subinterface_Vlan_EgressMappingPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMappingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping YANG schema element. -type Interface_Subinterface_Vlan_EgressMappingAny struct { +// Interface_Subinterface_Vlan_EgressMappingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping YANG schema element. +type Interface_Subinterface_Vlan_EgressMappingPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_Tpid represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/tpid YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_Tpid struct { +// Interface_Subinterface_Vlan_EgressMapping_TpidPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/tpid YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_TpidPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_TpidAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/tpid YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_TpidAny struct { +// Interface_Subinterface_Vlan_EgressMapping_TpidPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/tpid YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_TpidPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_VlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_VlanId struct { +// Interface_Subinterface_Vlan_EgressMapping_VlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_VlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_VlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_VlanIdAny struct { +// Interface_Subinterface_Vlan_EgressMapping_VlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_VlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_VlanStackAction represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/vlan-stack-action YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_VlanStackAction struct { +// Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/vlan-stack-action YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_EgressMapping_VlanStackActionAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/state/vlan-stack-action YANG schema element. -type Interface_Subinterface_Vlan_EgressMapping_VlanStackActionAny struct { +// Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/egress-mapping/config/vlan-stack-action YANG schema element. +type Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPathAny struct { *ygot.NodePath } -// Tpid returns from Interface_Subinterface_Vlan_EgressMapping the path struct for its child "tpid". -func (n *Interface_Subinterface_Vlan_EgressMapping) Tpid() *Interface_Subinterface_Vlan_EgressMapping_Tpid { - return &Interface_Subinterface_Vlan_EgressMapping_Tpid{ +// Tpid returns from Interface_Subinterface_Vlan_EgressMappingPath the path struct for its child "tpid". +func (n *Interface_Subinterface_Vlan_EgressMappingPath) Tpid() *Interface_Subinterface_Vlan_EgressMapping_TpidPath { + return &Interface_Subinterface_Vlan_EgressMapping_TpidPath{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// Tpid returns from Interface_Subinterface_Vlan_EgressMappingAny the path struct for its child "tpid". -func (n *Interface_Subinterface_Vlan_EgressMappingAny) Tpid() *Interface_Subinterface_Vlan_EgressMapping_TpidAny { - return &Interface_Subinterface_Vlan_EgressMapping_TpidAny{ +// Tpid returns from Interface_Subinterface_Vlan_EgressMappingPathAny the path struct for its child "tpid". +func (n *Interface_Subinterface_Vlan_EgressMappingPathAny) Tpid() *Interface_Subinterface_Vlan_EgressMapping_TpidPathAny { + return &Interface_Subinterface_Vlan_EgressMapping_TpidPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_Vlan_EgressMapping the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_EgressMapping) VlanId() *Interface_Subinterface_Vlan_EgressMapping_VlanId { - return &Interface_Subinterface_Vlan_EgressMapping_VlanId{ +// VlanId returns from Interface_Subinterface_Vlan_EgressMappingPath the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_EgressMappingPath) VlanId() *Interface_Subinterface_Vlan_EgressMapping_VlanIdPath { + return &Interface_Subinterface_Vlan_EgressMapping_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_Vlan_EgressMappingAny the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_EgressMappingAny) VlanId() *Interface_Subinterface_Vlan_EgressMapping_VlanIdAny { - return &Interface_Subinterface_Vlan_EgressMapping_VlanIdAny{ +// VlanId returns from Interface_Subinterface_Vlan_EgressMappingPathAny the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_EgressMappingPathAny) VlanId() *Interface_Subinterface_Vlan_EgressMapping_VlanIdPathAny { + return &Interface_Subinterface_Vlan_EgressMapping_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanStackAction returns from Interface_Subinterface_Vlan_EgressMapping the path struct for its child "vlan-stack-action". -func (n *Interface_Subinterface_Vlan_EgressMapping) VlanStackAction() *Interface_Subinterface_Vlan_EgressMapping_VlanStackAction { - return &Interface_Subinterface_Vlan_EgressMapping_VlanStackAction{ +// VlanStackAction returns from Interface_Subinterface_Vlan_EgressMappingPath the path struct for its child "vlan-stack-action". +func (n *Interface_Subinterface_Vlan_EgressMappingPath) VlanStackAction() *Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPath { + return &Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-stack-action"}, + []string{"config", "vlan-stack-action"}, map[string]interface{}{}, n, ), } } -// VlanStackAction returns from Interface_Subinterface_Vlan_EgressMappingAny the path struct for its child "vlan-stack-action". -func (n *Interface_Subinterface_Vlan_EgressMappingAny) VlanStackAction() *Interface_Subinterface_Vlan_EgressMapping_VlanStackActionAny { - return &Interface_Subinterface_Vlan_EgressMapping_VlanStackActionAny{ +// VlanStackAction returns from Interface_Subinterface_Vlan_EgressMappingPathAny the path struct for its child "vlan-stack-action". +func (n *Interface_Subinterface_Vlan_EgressMappingPathAny) VlanStackAction() *Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPathAny { + return &Interface_Subinterface_Vlan_EgressMapping_VlanStackActionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-stack-action"}, + []string{"config", "vlan-stack-action"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_IngressMapping represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping struct { +// Interface_Subinterface_Vlan_IngressMappingPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping YANG schema element. +type Interface_Subinterface_Vlan_IngressMappingPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMappingAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping YANG schema element. -type Interface_Subinterface_Vlan_IngressMappingAny struct { +// Interface_Subinterface_Vlan_IngressMappingPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping YANG schema element. +type Interface_Subinterface_Vlan_IngressMappingPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_Tpid represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/tpid YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_Tpid struct { +// Interface_Subinterface_Vlan_IngressMapping_TpidPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/tpid YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_TpidPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_TpidAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/tpid YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_TpidAny struct { +// Interface_Subinterface_Vlan_IngressMapping_TpidPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/tpid YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_TpidPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_VlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_VlanId struct { +// Interface_Subinterface_Vlan_IngressMapping_VlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_VlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_VlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_VlanIdAny struct { +// Interface_Subinterface_Vlan_IngressMapping_VlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_VlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_VlanStackAction represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/vlan-stack-action YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_VlanStackAction struct { +// Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/vlan-stack-action YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_IngressMapping_VlanStackActionAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/state/vlan-stack-action YANG schema element. -type Interface_Subinterface_Vlan_IngressMapping_VlanStackActionAny struct { +// Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/ingress-mapping/config/vlan-stack-action YANG schema element. +type Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPathAny struct { *ygot.NodePath } -// Tpid returns from Interface_Subinterface_Vlan_IngressMapping the path struct for its child "tpid". -func (n *Interface_Subinterface_Vlan_IngressMapping) Tpid() *Interface_Subinterface_Vlan_IngressMapping_Tpid { - return &Interface_Subinterface_Vlan_IngressMapping_Tpid{ +// Tpid returns from Interface_Subinterface_Vlan_IngressMappingPath the path struct for its child "tpid". +func (n *Interface_Subinterface_Vlan_IngressMappingPath) Tpid() *Interface_Subinterface_Vlan_IngressMapping_TpidPath { + return &Interface_Subinterface_Vlan_IngressMapping_TpidPath{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// Tpid returns from Interface_Subinterface_Vlan_IngressMappingAny the path struct for its child "tpid". -func (n *Interface_Subinterface_Vlan_IngressMappingAny) Tpid() *Interface_Subinterface_Vlan_IngressMapping_TpidAny { - return &Interface_Subinterface_Vlan_IngressMapping_TpidAny{ +// Tpid returns from Interface_Subinterface_Vlan_IngressMappingPathAny the path struct for its child "tpid". +func (n *Interface_Subinterface_Vlan_IngressMappingPathAny) Tpid() *Interface_Subinterface_Vlan_IngressMapping_TpidPathAny { + return &Interface_Subinterface_Vlan_IngressMapping_TpidPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tpid"}, + []string{"config", "tpid"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_Vlan_IngressMapping the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_IngressMapping) VlanId() *Interface_Subinterface_Vlan_IngressMapping_VlanId { - return &Interface_Subinterface_Vlan_IngressMapping_VlanId{ +// VlanId returns from Interface_Subinterface_Vlan_IngressMappingPath the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_IngressMappingPath) VlanId() *Interface_Subinterface_Vlan_IngressMapping_VlanIdPath { + return &Interface_Subinterface_Vlan_IngressMapping_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_Vlan_IngressMappingAny the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_IngressMappingAny) VlanId() *Interface_Subinterface_Vlan_IngressMapping_VlanIdAny { - return &Interface_Subinterface_Vlan_IngressMapping_VlanIdAny{ +// VlanId returns from Interface_Subinterface_Vlan_IngressMappingPathAny the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_IngressMappingPathAny) VlanId() *Interface_Subinterface_Vlan_IngressMapping_VlanIdPathAny { + return &Interface_Subinterface_Vlan_IngressMapping_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanStackAction returns from Interface_Subinterface_Vlan_IngressMapping the path struct for its child "vlan-stack-action". -func (n *Interface_Subinterface_Vlan_IngressMapping) VlanStackAction() *Interface_Subinterface_Vlan_IngressMapping_VlanStackAction { - return &Interface_Subinterface_Vlan_IngressMapping_VlanStackAction{ +// VlanStackAction returns from Interface_Subinterface_Vlan_IngressMappingPath the path struct for its child "vlan-stack-action". +func (n *Interface_Subinterface_Vlan_IngressMappingPath) VlanStackAction() *Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPath { + return &Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-stack-action"}, + []string{"config", "vlan-stack-action"}, map[string]interface{}{}, n, ), } } -// VlanStackAction returns from Interface_Subinterface_Vlan_IngressMappingAny the path struct for its child "vlan-stack-action". -func (n *Interface_Subinterface_Vlan_IngressMappingAny) VlanStackAction() *Interface_Subinterface_Vlan_IngressMapping_VlanStackActionAny { - return &Interface_Subinterface_Vlan_IngressMapping_VlanStackActionAny{ +// VlanStackAction returns from Interface_Subinterface_Vlan_IngressMappingPathAny the path struct for its child "vlan-stack-action". +func (n *Interface_Subinterface_Vlan_IngressMappingPathAny) VlanStackAction() *Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPathAny { + return &Interface_Subinterface_Vlan_IngressMapping_VlanStackActionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-stack-action"}, + []string{"config", "vlan-stack-action"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match YANG schema element. -type Interface_Subinterface_Vlan_Match struct { +// Interface_Subinterface_Vlan_MatchPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match YANG schema element. +type Interface_Subinterface_Vlan_MatchPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_MatchAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match YANG schema element. -type Interface_Subinterface_Vlan_MatchAny struct { +// Interface_Subinterface_Vlan_MatchPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match YANG schema element. +type Interface_Subinterface_Vlan_MatchPathAny struct { *ygot.NodePath } -// DoubleTagged returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged". -func (n *Interface_Subinterface_Vlan_Match) DoubleTagged() *Interface_Subinterface_Vlan_Match_DoubleTagged { - return &Interface_Subinterface_Vlan_Match_DoubleTagged{ +// DoubleTagged returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTagged() *Interface_Subinterface_Vlan_Match_DoubleTaggedPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedPath{ NodePath: ygot.NewNodePath( []string{"double-tagged"}, map[string]interface{}{}, @@ -53100,9 +53314,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTagged() *Interface_Subinterfa } } -// DoubleTagged returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTagged() *Interface_Subinterface_Vlan_Match_DoubleTaggedAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedAny{ +// DoubleTagged returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTagged() *Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged"}, map[string]interface{}{}, @@ -53111,9 +53325,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTagged() *Interface_Subinte } } -// DoubleTaggedInnerList returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged-inner-list". -func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerList() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList{ +// DoubleTaggedInnerList returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged-inner-list". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTaggedInnerList() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-list"}, map[string]interface{}{}, @@ -53122,9 +53336,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerList() *Interface_S } } -// DoubleTaggedInnerList returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged-inner-list". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerList() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny{ +// DoubleTaggedInnerList returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged-inner-list". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTaggedInnerList() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-list"}, map[string]interface{}{}, @@ -53133,9 +53347,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerList() *Interfac } } -// DoubleTaggedInnerOuterRange returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged-inner-outer-range". -func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange{ +// DoubleTaggedInnerOuterRange returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged-inner-outer-range". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTaggedInnerOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-outer-range"}, map[string]interface{}{}, @@ -53144,9 +53358,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerOuterRange() *Inter } } -// DoubleTaggedInnerOuterRange returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged-inner-outer-range". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny{ +// DoubleTaggedInnerOuterRange returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged-inner-outer-range". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTaggedInnerOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-outer-range"}, map[string]interface{}{}, @@ -53155,9 +53369,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerOuterRange() *In } } -// DoubleTaggedInnerRange returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged-inner-range". -func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange{ +// DoubleTaggedInnerRange returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged-inner-range". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTaggedInnerRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-range"}, map[string]interface{}{}, @@ -53166,9 +53380,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedInnerRange() *Interface_ } } -// DoubleTaggedInnerRange returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged-inner-range". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny{ +// DoubleTaggedInnerRange returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged-inner-range". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTaggedInnerRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged-inner-range"}, map[string]interface{}{}, @@ -53177,9 +53391,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedInnerRange() *Interfa } } -// DoubleTaggedOuterList returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged-outer-list". -func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedOuterList() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList{ +// DoubleTaggedOuterList returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged-outer-list". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTaggedOuterList() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath{ NodePath: ygot.NewNodePath( []string{"double-tagged-outer-list"}, map[string]interface{}{}, @@ -53188,9 +53402,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedOuterList() *Interface_S } } -// DoubleTaggedOuterList returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged-outer-list". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedOuterList() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny{ +// DoubleTaggedOuterList returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged-outer-list". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTaggedOuterList() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged-outer-list"}, map[string]interface{}{}, @@ -53199,9 +53413,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedOuterList() *Interfac } } -// DoubleTaggedOuterRange returns from Interface_Subinterface_Vlan_Match the path struct for its child "double-tagged-outer-range". -func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange{ +// DoubleTaggedOuterRange returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "double-tagged-outer-range". +func (n *Interface_Subinterface_Vlan_MatchPath) DoubleTaggedOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath{ NodePath: ygot.NewNodePath( []string{"double-tagged-outer-range"}, map[string]interface{}{}, @@ -53210,9 +53424,9 @@ func (n *Interface_Subinterface_Vlan_Match) DoubleTaggedOuterRange() *Interface_ } } -// DoubleTaggedOuterRange returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "double-tagged-outer-range". -func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny{ +// DoubleTaggedOuterRange returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "double-tagged-outer-range". +func (n *Interface_Subinterface_Vlan_MatchPathAny) DoubleTaggedOuterRange() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny{ NodePath: ygot.NewNodePath( []string{"double-tagged-outer-range"}, map[string]interface{}{}, @@ -53221,9 +53435,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) DoubleTaggedOuterRange() *Interfa } } -// SingleTagged returns from Interface_Subinterface_Vlan_Match the path struct for its child "single-tagged". -func (n *Interface_Subinterface_Vlan_Match) SingleTagged() *Interface_Subinterface_Vlan_Match_SingleTagged { - return &Interface_Subinterface_Vlan_Match_SingleTagged{ +// SingleTagged returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "single-tagged". +func (n *Interface_Subinterface_Vlan_MatchPath) SingleTagged() *Interface_Subinterface_Vlan_Match_SingleTaggedPath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedPath{ NodePath: ygot.NewNodePath( []string{"single-tagged"}, map[string]interface{}{}, @@ -53232,9 +53446,9 @@ func (n *Interface_Subinterface_Vlan_Match) SingleTagged() *Interface_Subinterfa } } -// SingleTagged returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "single-tagged". -func (n *Interface_Subinterface_Vlan_MatchAny) SingleTagged() *Interface_Subinterface_Vlan_Match_SingleTaggedAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedAny{ +// SingleTagged returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "single-tagged". +func (n *Interface_Subinterface_Vlan_MatchPathAny) SingleTagged() *Interface_Subinterface_Vlan_Match_SingleTaggedPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedPathAny{ NodePath: ygot.NewNodePath( []string{"single-tagged"}, map[string]interface{}{}, @@ -53243,9 +53457,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) SingleTagged() *Interface_Subinte } } -// SingleTaggedList returns from Interface_Subinterface_Vlan_Match the path struct for its child "single-tagged-list". -func (n *Interface_Subinterface_Vlan_Match) SingleTaggedList() *Interface_Subinterface_Vlan_Match_SingleTaggedList { - return &Interface_Subinterface_Vlan_Match_SingleTaggedList{ +// SingleTaggedList returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "single-tagged-list". +func (n *Interface_Subinterface_Vlan_MatchPath) SingleTaggedList() *Interface_Subinterface_Vlan_Match_SingleTaggedListPath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedListPath{ NodePath: ygot.NewNodePath( []string{"single-tagged-list"}, map[string]interface{}{}, @@ -53254,9 +53468,9 @@ func (n *Interface_Subinterface_Vlan_Match) SingleTaggedList() *Interface_Subint } } -// SingleTaggedList returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "single-tagged-list". -func (n *Interface_Subinterface_Vlan_MatchAny) SingleTaggedList() *Interface_Subinterface_Vlan_Match_SingleTaggedListAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedListAny{ +// SingleTaggedList returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "single-tagged-list". +func (n *Interface_Subinterface_Vlan_MatchPathAny) SingleTaggedList() *Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny{ NodePath: ygot.NewNodePath( []string{"single-tagged-list"}, map[string]interface{}{}, @@ -53265,9 +53479,9 @@ func (n *Interface_Subinterface_Vlan_MatchAny) SingleTaggedList() *Interface_Sub } } -// SingleTaggedRange returns from Interface_Subinterface_Vlan_Match the path struct for its child "single-tagged-range". -func (n *Interface_Subinterface_Vlan_Match) SingleTaggedRange() *Interface_Subinterface_Vlan_Match_SingleTaggedRange { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRange{ +// SingleTaggedRange returns from Interface_Subinterface_Vlan_MatchPath the path struct for its child "single-tagged-range". +func (n *Interface_Subinterface_Vlan_MatchPath) SingleTaggedRange() *Interface_Subinterface_Vlan_Match_SingleTaggedRangePath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRangePath{ NodePath: ygot.NewNodePath( []string{"single-tagged-range"}, map[string]interface{}{}, @@ -53276,9 +53490,9 @@ func (n *Interface_Subinterface_Vlan_Match) SingleTaggedRange() *Interface_Subin } } -// SingleTaggedRange returns from Interface_Subinterface_Vlan_MatchAny the path struct for its child "single-tagged-range". -func (n *Interface_Subinterface_Vlan_MatchAny) SingleTaggedRange() *Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny{ +// SingleTaggedRange returns from Interface_Subinterface_Vlan_MatchPathAny the path struct for its child "single-tagged-range". +func (n *Interface_Subinterface_Vlan_MatchPathAny) SingleTaggedRange() *Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny{ NodePath: ygot.NewNodePath( []string{"single-tagged-range"}, map[string]interface{}{}, @@ -53287,759 +53501,759 @@ func (n *Interface_Subinterface_Vlan_MatchAny) SingleTaggedRange() *Interface_Su } } -// Interface_Subinterface_Vlan_Match_DoubleTagged represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTagged struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPathAny struct { *ygot.NodePath } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTagged the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTagged) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanId{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedPath the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedPath) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedAny the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdAny{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTagged_InnerVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTagged the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTagged) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanId{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedPath the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedPath) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedAny the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdAny{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedPathAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTagged_OuterVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIds represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/state/inner-vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIds struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/config/inner-vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/state/inner-vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/config/inner-vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-list/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPathAny struct { *ygot.NodePath } -// InnerVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList the path struct for its child "inner-vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList) InnerVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIds { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIds{ +// InnerVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath the path struct for its child "inner-vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath) InnerVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-ids"}, + []string{"config", "inner-vlan-ids"}, map[string]interface{}{}, n, ), } } -// InnerVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny the path struct for its child "inner-vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny) InnerVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsAny{ +// InnerVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny the path struct for its child "inner-vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny) InnerVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_InnerVlanIdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-ids"}, + []string{"config", "inner-vlan-ids"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanId{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPath) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdAny{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerListPathAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerList_OuterVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/inner-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/inner-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/inner-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/inner-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/inner-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/inner-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/inner-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/inner-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/outer-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/outer-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/outer-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/outer-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/outer-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/outer-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/state/outer-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-outer-range/config/outer-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPathAny struct { *ygot.NodePath } -// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange the path struct for its child "inner-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanId{ +// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath the path struct for its child "inner-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-high-vlan-id"}, + []string{"config", "inner-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny the path struct for its child "inner-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdAny{ +// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny the path struct for its child "inner-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerHighVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-high-vlan-id"}, + []string{"config", "inner-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange the path struct for its child "inner-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanId{ +// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath the path struct for its child "inner-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-low-vlan-id"}, + []string{"config", "inner-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny the path struct for its child "inner-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdAny{ +// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny the path struct for its child "inner-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_InnerLowVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-low-vlan-id"}, + []string{"config", "inner-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange the path struct for its child "outer-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanId{ +// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath the path struct for its child "outer-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-high-vlan-id"}, + []string{"config", "outer-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny the path struct for its child "outer-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdAny{ +// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny the path struct for its child "outer-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterHighVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-high-vlan-id"}, + []string{"config", "outer-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange the path struct for its child "outer-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanId{ +// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath the path struct for its child "outer-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePath) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-low-vlan-id"}, + []string{"config", "outer-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny the path struct for its child "outer-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangeAny) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdAny{ +// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny the path struct for its child "outer-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRangePathAny) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerOuterRange_OuterLowVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-low-vlan-id"}, + []string{"config", "outer-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/inner-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/inner-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/inner-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/inner-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/inner-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/inner-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/inner-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/inner-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/state/outer-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-inner-range/config/outer-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPathAny struct { *ygot.NodePath } -// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange the path struct for its child "inner-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanId{ +// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath the path struct for its child "inner-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-high-vlan-id"}, + []string{"config", "inner-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny the path struct for its child "inner-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdAny{ +// InnerHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny the path struct for its child "inner-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny) InnerHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerHighVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-high-vlan-id"}, + []string{"config", "inner-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange the path struct for its child "inner-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanId{ +// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath the path struct for its child "inner-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-low-vlan-id"}, + []string{"config", "inner-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny the path struct for its child "inner-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdAny{ +// InnerLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny the path struct for its child "inner-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny) InnerLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_InnerLowVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-low-vlan-id"}, + []string{"config", "inner-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanId{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePath) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny the path struct for its child "outer-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangeAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdAny{ +// OuterVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny the path struct for its child "outer-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRangePathAny) OuterVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedInnerRange_OuterVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-id"}, + []string{"config", "outer-vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIds represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/state/outer-vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIds struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/config/outer-vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/state/outer-vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-list/config/outer-vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPathAny struct { *ygot.NodePath } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanId{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdAny{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_InnerVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList the path struct for its child "outer-vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList) OuterVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIds { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIds{ +// OuterVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath the path struct for its child "outer-vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPath) OuterVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-ids"}, + []string{"config", "outer-vlan-ids"}, map[string]interface{}{}, n, ), } } -// OuterVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny the path struct for its child "outer-vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListAny) OuterVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsAny{ +// OuterVlanIds returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny the path struct for its child "outer-vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterListPathAny) OuterVlanIds() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterList_OuterVlanIdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-vlan-ids"}, + []string{"config", "outer-vlan-ids"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/inner-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/inner-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/outer-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/outer-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/outer-high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/outer-high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/outer-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanId struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/outer-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/state/outer-low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/double-tagged-outer-range/config/outer-low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPathAny struct { *ygot.NodePath } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanId{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny the path struct for its child "inner-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdAny{ +// InnerVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny the path struct for its child "inner-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny) InnerVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_InnerVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "inner-vlan-id"}, + []string{"config", "inner-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange the path struct for its child "outer-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanId{ +// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath the path struct for its child "outer-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-high-vlan-id"}, + []string{"config", "outer-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny the path struct for its child "outer-high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdAny{ +// OuterHighVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny the path struct for its child "outer-high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny) OuterHighVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterHighVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-high-vlan-id"}, + []string{"config", "outer-high-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange the path struct for its child "outer-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanId { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanId{ +// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath the path struct for its child "outer-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePath) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPath { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "outer-low-vlan-id"}, + []string{"config", "outer-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny the path struct for its child "outer-low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangeAny) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdAny { - return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdAny{ +// OuterLowVlanId returns from Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny the path struct for its child "outer-low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRangePathAny) OuterLowVlanId() *Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_DoubleTaggedOuterRange_OuterLowVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "outer-low-vlan-id"}, + []string{"config", "outer-low-vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_SingleTagged represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTagged struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTagged_VlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTagged_VlanId struct { +// Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged/state/vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdAny struct { +// Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged/config/vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPathAny struct { *ygot.NodePath } -// VlanId returns from Interface_Subinterface_Vlan_Match_SingleTagged the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTagged) VlanId() *Interface_Subinterface_Vlan_Match_SingleTagged_VlanId { - return &Interface_Subinterface_Vlan_Match_SingleTagged_VlanId{ +// VlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedPath the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedPath) VlanId() *Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPath { + return &Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedAny the path struct for its child "vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedAny) VlanId() *Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdAny { - return &Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdAny{ +// VlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedPathAny the path struct for its child "vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedPathAny) VlanId() *Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTagged_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_SingleTaggedList represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedList struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedListPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedListPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedListAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedListAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIds represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list/state/vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIds struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list/config/vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list/state/vlan-ids YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-list/config/vlan-ids YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPathAny struct { *ygot.NodePath } -// VlanIds returns from Interface_Subinterface_Vlan_Match_SingleTaggedList the path struct for its child "vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedList) VlanIds() *Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIds { - return &Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIds{ +// VlanIds returns from Interface_Subinterface_Vlan_Match_SingleTaggedListPath the path struct for its child "vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedListPath) VlanIds() *Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-ids"}, + []string{"config", "vlan-ids"}, map[string]interface{}{}, n, ), } } -// VlanIds returns from Interface_Subinterface_Vlan_Match_SingleTaggedListAny the path struct for its child "vlan-ids". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedListAny) VlanIds() *Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsAny{ +// VlanIds returns from Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny the path struct for its child "vlan-ids". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedListPathAny) VlanIds() *Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedList_VlanIdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-ids"}, + []string{"config", "vlan-ids"}, map[string]interface{}{}, n, ), } } -// Interface_Subinterface_Vlan_Match_SingleTaggedRange represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRange struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRangePath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRangePath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/state/high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanId struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/config/high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/state/high-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/config/high-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPathAny struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanId represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/state/low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanId struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPath represents the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/config/low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPath struct { *ygot.NodePath } -// Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/state/low-vlan-id YANG schema element. -type Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdAny struct { +// Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPathAny represents the wildcard version of the /openconfig-interfaces/interfaces/interface/subinterfaces/subinterface/vlan/match/single-tagged-range/config/low-vlan-id YANG schema element. +type Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPathAny struct { *ygot.NodePath } -// HighVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRange the path struct for its child "high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRange) HighVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanId { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanId{ +// HighVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangePath the path struct for its child "high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangePath) HighVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "high-vlan-id"}, + []string{"config", "high-vlan-id"}, map[string]interface{}{}, n, ), } } -// HighVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny the path struct for its child "high-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny) HighVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdAny{ +// HighVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny the path struct for its child "high-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny) HighVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_HighVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "high-vlan-id"}, + []string{"config", "high-vlan-id"}, map[string]interface{}{}, n, ), } } -// LowVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRange the path struct for its child "low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRange) LowVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanId { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanId{ +// LowVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangePath the path struct for its child "low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangePath) LowVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPath { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "low-vlan-id"}, + []string{"config", "low-vlan-id"}, map[string]interface{}{}, n, ), } } -// LowVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny the path struct for its child "low-vlan-id". -func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangeAny) LowVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdAny { - return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdAny{ +// LowVlanId returns from Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny the path struct for its child "low-vlan-id". +func (n *Interface_Subinterface_Vlan_Match_SingleTaggedRangePathAny) LowVlanId() *Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPathAny { + return &Interface_Subinterface_Vlan_Match_SingleTaggedRange_LowVlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "low-vlan-id"}, + []string{"config", "low-vlan-id"}, map[string]interface{}{}, n, ), } } -// Lacp represents the /openconfig-lacp/lacp YANG schema element. -type Lacp struct { +// LacpPath represents the /openconfig-lacp/lacp YANG schema element. +type LacpPath struct { *ygot.NodePath } -// LacpAny represents the wildcard version of the /openconfig-lacp/lacp YANG schema element. -type LacpAny struct { +// LacpPathAny represents the wildcard version of the /openconfig-lacp/lacp YANG schema element. +type LacpPathAny struct { *ygot.NodePath } -// Lacp_SystemPriority represents the /openconfig-lacp/lacp/state/system-priority YANG schema element. -type Lacp_SystemPriority struct { +// Lacp_SystemPriorityPath represents the /openconfig-lacp/lacp/config/system-priority YANG schema element. +type Lacp_SystemPriorityPath struct { *ygot.NodePath } -// Lacp_SystemPriorityAny represents the wildcard version of the /openconfig-lacp/lacp/state/system-priority YANG schema element. -type Lacp_SystemPriorityAny struct { +// Lacp_SystemPriorityPathAny represents the wildcard version of the /openconfig-lacp/lacp/config/system-priority YANG schema element. +type Lacp_SystemPriorityPathAny struct { *ygot.NodePath } -// InterfaceAny returns from Lacp the path struct for its child "interface". -func (n *Lacp) InterfaceAny() *Lacp_InterfaceAny { - return &Lacp_InterfaceAny{ +// InterfaceAny returns from LacpPath the path struct for its child "interface". +func (n *LacpPath) InterfaceAny() *Lacp_InterfacePathAny { + return &Lacp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -54048,9 +54262,9 @@ func (n *Lacp) InterfaceAny() *Lacp_InterfaceAny { } } -// InterfaceAny returns from LacpAny the path struct for its child "interface". -func (n *LacpAny) InterfaceAny() *Lacp_InterfaceAny { - return &Lacp_InterfaceAny{ +// InterfaceAny returns from LacpPathAny the path struct for its child "interface". +func (n *LacpPathAny) InterfaceAny() *Lacp_InterfacePathAny { + return &Lacp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -54059,9 +54273,9 @@ func (n *LacpAny) InterfaceAny() *Lacp_InterfaceAny { } } -// Interface returns from Lacp the path struct for its child "interface". -func (n *Lacp) Interface(Name string) *Lacp_Interface { - return &Lacp_Interface{ +// Interface returns from LacpPath the path struct for its child "interface". +func (n *LacpPath) Interface(Name string) *Lacp_InterfacePath { + return &Lacp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -54070,9 +54284,9 @@ func (n *Lacp) Interface(Name string) *Lacp_Interface { } } -// Interface returns from LacpAny the path struct for its child "interface". -func (n *LacpAny) Interface(Name string) *Lacp_InterfaceAny { - return &Lacp_InterfaceAny{ +// Interface returns from LacpPathAny the path struct for its child "interface". +func (n *LacpPathAny) Interface(Name string) *Lacp_InterfacePathAny { + return &Lacp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -54081,135 +54295,135 @@ func (n *LacpAny) Interface(Name string) *Lacp_InterfaceAny { } } -// SystemPriority returns from Lacp the path struct for its child "system-priority". -func (n *Lacp) SystemPriority() *Lacp_SystemPriority { - return &Lacp_SystemPriority{ +// SystemPriority returns from LacpPath the path struct for its child "system-priority". +func (n *LacpPath) SystemPriority() *Lacp_SystemPriorityPath { + return &Lacp_SystemPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "system-priority"}, + []string{"config", "system-priority"}, map[string]interface{}{}, n, ), } } -// SystemPriority returns from LacpAny the path struct for its child "system-priority". -func (n *LacpAny) SystemPriority() *Lacp_SystemPriorityAny { - return &Lacp_SystemPriorityAny{ +// SystemPriority returns from LacpPathAny the path struct for its child "system-priority". +func (n *LacpPathAny) SystemPriority() *Lacp_SystemPriorityPathAny { + return &Lacp_SystemPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "system-priority"}, + []string{"config", "system-priority"}, map[string]interface{}{}, n, ), } } -// Lacp_Interface represents the /openconfig-lacp/lacp/interfaces/interface YANG schema element. -type Lacp_Interface struct { +// Lacp_InterfacePath represents the /openconfig-lacp/lacp/interfaces/interface YANG schema element. +type Lacp_InterfacePath struct { *ygot.NodePath } -// Lacp_InterfaceAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface YANG schema element. -type Lacp_InterfaceAny struct { +// Lacp_InterfacePathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface YANG schema element. +type Lacp_InterfacePathAny struct { *ygot.NodePath } -// Lacp_Interface_Interval represents the /openconfig-lacp/lacp/interfaces/interface/state/interval YANG schema element. -type Lacp_Interface_Interval struct { +// Lacp_Interface_IntervalPath represents the /openconfig-lacp/lacp/interfaces/interface/config/interval YANG schema element. +type Lacp_Interface_IntervalPath struct { *ygot.NodePath } -// Lacp_Interface_IntervalAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/state/interval YANG schema element. -type Lacp_Interface_IntervalAny struct { +// Lacp_Interface_IntervalPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/config/interval YANG schema element. +type Lacp_Interface_IntervalPathAny struct { *ygot.NodePath } -// Lacp_Interface_LacpMode represents the /openconfig-lacp/lacp/interfaces/interface/state/lacp-mode YANG schema element. -type Lacp_Interface_LacpMode struct { +// Lacp_Interface_LacpModePath represents the /openconfig-lacp/lacp/interfaces/interface/config/lacp-mode YANG schema element. +type Lacp_Interface_LacpModePath struct { *ygot.NodePath } -// Lacp_Interface_LacpModeAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/state/lacp-mode YANG schema element. -type Lacp_Interface_LacpModeAny struct { +// Lacp_Interface_LacpModePathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/config/lacp-mode YANG schema element. +type Lacp_Interface_LacpModePathAny struct { *ygot.NodePath } -// Lacp_Interface_Name represents the /openconfig-lacp/lacp/interfaces/interface/state/name YANG schema element. -type Lacp_Interface_Name struct { +// Lacp_Interface_NamePath represents the /openconfig-lacp/lacp/interfaces/interface/config/name YANG schema element. +type Lacp_Interface_NamePath struct { *ygot.NodePath } -// Lacp_Interface_NameAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/state/name YANG schema element. -type Lacp_Interface_NameAny struct { +// Lacp_Interface_NamePathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/config/name YANG schema element. +type Lacp_Interface_NamePathAny struct { *ygot.NodePath } -// Lacp_Interface_SystemIdMac represents the /openconfig-lacp/lacp/interfaces/interface/state/system-id-mac YANG schema element. -type Lacp_Interface_SystemIdMac struct { +// Lacp_Interface_SystemIdMacPath represents the /openconfig-lacp/lacp/interfaces/interface/config/system-id-mac YANG schema element. +type Lacp_Interface_SystemIdMacPath struct { *ygot.NodePath } -// Lacp_Interface_SystemIdMacAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/state/system-id-mac YANG schema element. -type Lacp_Interface_SystemIdMacAny struct { +// Lacp_Interface_SystemIdMacPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/config/system-id-mac YANG schema element. +type Lacp_Interface_SystemIdMacPathAny struct { *ygot.NodePath } -// Lacp_Interface_SystemPriority represents the /openconfig-lacp/lacp/interfaces/interface/state/system-priority YANG schema element. -type Lacp_Interface_SystemPriority struct { +// Lacp_Interface_SystemPriorityPath represents the /openconfig-lacp/lacp/interfaces/interface/config/system-priority YANG schema element. +type Lacp_Interface_SystemPriorityPath struct { *ygot.NodePath } -// Lacp_Interface_SystemPriorityAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/state/system-priority YANG schema element. -type Lacp_Interface_SystemPriorityAny struct { +// Lacp_Interface_SystemPriorityPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/config/system-priority YANG schema element. +type Lacp_Interface_SystemPriorityPathAny struct { *ygot.NodePath } -// Interval returns from Lacp_Interface the path struct for its child "interval". -func (n *Lacp_Interface) Interval() *Lacp_Interface_Interval { - return &Lacp_Interface_Interval{ +// Interval returns from Lacp_InterfacePath the path struct for its child "interval". +func (n *Lacp_InterfacePath) Interval() *Lacp_Interface_IntervalPath { + return &Lacp_Interface_IntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// Interval returns from Lacp_InterfaceAny the path struct for its child "interval". -func (n *Lacp_InterfaceAny) Interval() *Lacp_Interface_IntervalAny { - return &Lacp_Interface_IntervalAny{ +// Interval returns from Lacp_InterfacePathAny the path struct for its child "interval". +func (n *Lacp_InterfacePathAny) Interval() *Lacp_Interface_IntervalPathAny { + return &Lacp_Interface_IntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interval"}, + []string{"config", "interval"}, map[string]interface{}{}, n, ), } } -// LacpMode returns from Lacp_Interface the path struct for its child "lacp-mode". -func (n *Lacp_Interface) LacpMode() *Lacp_Interface_LacpMode { - return &Lacp_Interface_LacpMode{ +// LacpMode returns from Lacp_InterfacePath the path struct for its child "lacp-mode". +func (n *Lacp_InterfacePath) LacpMode() *Lacp_Interface_LacpModePath { + return &Lacp_Interface_LacpModePath{ NodePath: ygot.NewNodePath( - []string{"state", "lacp-mode"}, + []string{"config", "lacp-mode"}, map[string]interface{}{}, n, ), } } -// LacpMode returns from Lacp_InterfaceAny the path struct for its child "lacp-mode". -func (n *Lacp_InterfaceAny) LacpMode() *Lacp_Interface_LacpModeAny { - return &Lacp_Interface_LacpModeAny{ +// LacpMode returns from Lacp_InterfacePathAny the path struct for its child "lacp-mode". +func (n *Lacp_InterfacePathAny) LacpMode() *Lacp_Interface_LacpModePathAny { + return &Lacp_Interface_LacpModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lacp-mode"}, + []string{"config", "lacp-mode"}, map[string]interface{}{}, n, ), } } -// MemberAny returns from Lacp_Interface the path struct for its child "member". -func (n *Lacp_Interface) MemberAny() *Lacp_Interface_MemberAny { - return &Lacp_Interface_MemberAny{ +// MemberAny returns from Lacp_InterfacePath the path struct for its child "member". +func (n *Lacp_InterfacePath) MemberAny() *Lacp_Interface_MemberPathAny { + return &Lacp_Interface_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"members", "member"}, map[string]interface{}{"interface": "*"}, @@ -54218,9 +54432,9 @@ func (n *Lacp_Interface) MemberAny() *Lacp_Interface_MemberAny { } } -// MemberAny returns from Lacp_InterfaceAny the path struct for its child "member". -func (n *Lacp_InterfaceAny) MemberAny() *Lacp_Interface_MemberAny { - return &Lacp_Interface_MemberAny{ +// MemberAny returns from Lacp_InterfacePathAny the path struct for its child "member". +func (n *Lacp_InterfacePathAny) MemberAny() *Lacp_Interface_MemberPathAny { + return &Lacp_Interface_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"members", "member"}, map[string]interface{}{"interface": "*"}, @@ -54229,9 +54443,9 @@ func (n *Lacp_InterfaceAny) MemberAny() *Lacp_Interface_MemberAny { } } -// Member returns from Lacp_Interface the path struct for its child "member". -func (n *Lacp_Interface) Member(Interface string) *Lacp_Interface_Member { - return &Lacp_Interface_Member{ +// Member returns from Lacp_InterfacePath the path struct for its child "member". +func (n *Lacp_InterfacePath) Member(Interface string) *Lacp_Interface_MemberPath { + return &Lacp_Interface_MemberPath{ NodePath: ygot.NewNodePath( []string{"members", "member"}, map[string]interface{}{"interface": Interface}, @@ -54240,9 +54454,9 @@ func (n *Lacp_Interface) Member(Interface string) *Lacp_Interface_Member { } } -// Member returns from Lacp_InterfaceAny the path struct for its child "member". -func (n *Lacp_InterfaceAny) Member(Interface string) *Lacp_Interface_MemberAny { - return &Lacp_Interface_MemberAny{ +// Member returns from Lacp_InterfacePathAny the path struct for its child "member". +func (n *Lacp_InterfacePathAny) Member(Interface string) *Lacp_Interface_MemberPathAny { + return &Lacp_Interface_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"members", "member"}, map[string]interface{}{"interface": Interface}, @@ -54251,215 +54465,215 @@ func (n *Lacp_InterfaceAny) Member(Interface string) *Lacp_Interface_MemberAny { } } -// Name returns from Lacp_Interface the path struct for its child "name". -func (n *Lacp_Interface) Name() *Lacp_Interface_Name { - return &Lacp_Interface_Name{ +// Name returns from Lacp_InterfacePath the path struct for its child "name". +func (n *Lacp_InterfacePath) Name() *Lacp_Interface_NamePath { + return &Lacp_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Lacp_InterfaceAny the path struct for its child "name". -func (n *Lacp_InterfaceAny) Name() *Lacp_Interface_NameAny { - return &Lacp_Interface_NameAny{ +// Name returns from Lacp_InterfacePathAny the path struct for its child "name". +func (n *Lacp_InterfacePathAny) Name() *Lacp_Interface_NamePathAny { + return &Lacp_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// SystemIdMac returns from Lacp_Interface the path struct for its child "system-id-mac". -func (n *Lacp_Interface) SystemIdMac() *Lacp_Interface_SystemIdMac { - return &Lacp_Interface_SystemIdMac{ +// SystemIdMac returns from Lacp_InterfacePath the path struct for its child "system-id-mac". +func (n *Lacp_InterfacePath) SystemIdMac() *Lacp_Interface_SystemIdMacPath { + return &Lacp_Interface_SystemIdMacPath{ NodePath: ygot.NewNodePath( - []string{"state", "system-id-mac"}, + []string{"config", "system-id-mac"}, map[string]interface{}{}, n, ), } } -// SystemIdMac returns from Lacp_InterfaceAny the path struct for its child "system-id-mac". -func (n *Lacp_InterfaceAny) SystemIdMac() *Lacp_Interface_SystemIdMacAny { - return &Lacp_Interface_SystemIdMacAny{ +// SystemIdMac returns from Lacp_InterfacePathAny the path struct for its child "system-id-mac". +func (n *Lacp_InterfacePathAny) SystemIdMac() *Lacp_Interface_SystemIdMacPathAny { + return &Lacp_Interface_SystemIdMacPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "system-id-mac"}, + []string{"config", "system-id-mac"}, map[string]interface{}{}, n, ), } } -// SystemPriority returns from Lacp_Interface the path struct for its child "system-priority". -func (n *Lacp_Interface) SystemPriority() *Lacp_Interface_SystemPriority { - return &Lacp_Interface_SystemPriority{ +// SystemPriority returns from Lacp_InterfacePath the path struct for its child "system-priority". +func (n *Lacp_InterfacePath) SystemPriority() *Lacp_Interface_SystemPriorityPath { + return &Lacp_Interface_SystemPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "system-priority"}, + []string{"config", "system-priority"}, map[string]interface{}{}, n, ), } } -// SystemPriority returns from Lacp_InterfaceAny the path struct for its child "system-priority". -func (n *Lacp_InterfaceAny) SystemPriority() *Lacp_Interface_SystemPriorityAny { - return &Lacp_Interface_SystemPriorityAny{ +// SystemPriority returns from Lacp_InterfacePathAny the path struct for its child "system-priority". +func (n *Lacp_InterfacePathAny) SystemPriority() *Lacp_Interface_SystemPriorityPathAny { + return &Lacp_Interface_SystemPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "system-priority"}, + []string{"config", "system-priority"}, map[string]interface{}{}, n, ), } } -// Lacp_Interface_Member represents the /openconfig-lacp/lacp/interfaces/interface/members/member YANG schema element. -type Lacp_Interface_Member struct { +// Lacp_Interface_MemberPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member YANG schema element. +type Lacp_Interface_MemberPath struct { *ygot.NodePath } -// Lacp_Interface_MemberAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member YANG schema element. -type Lacp_Interface_MemberAny struct { +// Lacp_Interface_MemberPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member YANG schema element. +type Lacp_Interface_MemberPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Activity represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/activity YANG schema element. -type Lacp_Interface_Member_Activity struct { +// Lacp_Interface_Member_ActivityPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/activity YANG schema element. +type Lacp_Interface_Member_ActivityPath struct { *ygot.NodePath } -// Lacp_Interface_Member_ActivityAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/activity YANG schema element. -type Lacp_Interface_Member_ActivityAny struct { +// Lacp_Interface_Member_ActivityPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/activity YANG schema element. +type Lacp_Interface_Member_ActivityPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Aggregatable represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/aggregatable YANG schema element. -type Lacp_Interface_Member_Aggregatable struct { +// Lacp_Interface_Member_AggregatablePath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/aggregatable YANG schema element. +type Lacp_Interface_Member_AggregatablePath struct { *ygot.NodePath } -// Lacp_Interface_Member_AggregatableAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/aggregatable YANG schema element. -type Lacp_Interface_Member_AggregatableAny struct { +// Lacp_Interface_Member_AggregatablePathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/aggregatable YANG schema element. +type Lacp_Interface_Member_AggregatablePathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Collecting represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/collecting YANG schema element. -type Lacp_Interface_Member_Collecting struct { +// Lacp_Interface_Member_CollectingPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/collecting YANG schema element. +type Lacp_Interface_Member_CollectingPath struct { *ygot.NodePath } -// Lacp_Interface_Member_CollectingAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/collecting YANG schema element. -type Lacp_Interface_Member_CollectingAny struct { +// Lacp_Interface_Member_CollectingPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/collecting YANG schema element. +type Lacp_Interface_Member_CollectingPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Distributing represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/distributing YANG schema element. -type Lacp_Interface_Member_Distributing struct { +// Lacp_Interface_Member_DistributingPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/distributing YANG schema element. +type Lacp_Interface_Member_DistributingPath struct { *ygot.NodePath } -// Lacp_Interface_Member_DistributingAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/distributing YANG schema element. -type Lacp_Interface_Member_DistributingAny struct { +// Lacp_Interface_Member_DistributingPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/distributing YANG schema element. +type Lacp_Interface_Member_DistributingPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Interface represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/interface YANG schema element. -type Lacp_Interface_Member_Interface struct { +// Lacp_Interface_Member_InterfacePath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/interface YANG schema element. +type Lacp_Interface_Member_InterfacePath struct { *ygot.NodePath } -// Lacp_Interface_Member_InterfaceAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/interface YANG schema element. -type Lacp_Interface_Member_InterfaceAny struct { +// Lacp_Interface_Member_InterfacePathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/interface YANG schema element. +type Lacp_Interface_Member_InterfacePathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_OperKey represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/oper-key YANG schema element. -type Lacp_Interface_Member_OperKey struct { +// Lacp_Interface_Member_OperKeyPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/oper-key YANG schema element. +type Lacp_Interface_Member_OperKeyPath struct { *ygot.NodePath } -// Lacp_Interface_Member_OperKeyAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/oper-key YANG schema element. -type Lacp_Interface_Member_OperKeyAny struct { +// Lacp_Interface_Member_OperKeyPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/oper-key YANG schema element. +type Lacp_Interface_Member_OperKeyPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerId represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-id YANG schema element. -type Lacp_Interface_Member_PartnerId struct { +// Lacp_Interface_Member_PartnerIdPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-id YANG schema element. +type Lacp_Interface_Member_PartnerIdPath struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerIdAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-id YANG schema element. -type Lacp_Interface_Member_PartnerIdAny struct { +// Lacp_Interface_Member_PartnerIdPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-id YANG schema element. +type Lacp_Interface_Member_PartnerIdPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerKey represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-key YANG schema element. -type Lacp_Interface_Member_PartnerKey struct { +// Lacp_Interface_Member_PartnerKeyPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-key YANG schema element. +type Lacp_Interface_Member_PartnerKeyPath struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerKeyAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-key YANG schema element. -type Lacp_Interface_Member_PartnerKeyAny struct { +// Lacp_Interface_Member_PartnerKeyPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-key YANG schema element. +type Lacp_Interface_Member_PartnerKeyPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerPortNum represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-port-num YANG schema element. -type Lacp_Interface_Member_PartnerPortNum struct { +// Lacp_Interface_Member_PartnerPortNumPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-port-num YANG schema element. +type Lacp_Interface_Member_PartnerPortNumPath struct { *ygot.NodePath } -// Lacp_Interface_Member_PartnerPortNumAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-port-num YANG schema element. -type Lacp_Interface_Member_PartnerPortNumAny struct { +// Lacp_Interface_Member_PartnerPortNumPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/partner-port-num YANG schema element. +type Lacp_Interface_Member_PartnerPortNumPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_PortNum represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/port-num YANG schema element. -type Lacp_Interface_Member_PortNum struct { +// Lacp_Interface_Member_PortNumPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/port-num YANG schema element. +type Lacp_Interface_Member_PortNumPath struct { *ygot.NodePath } -// Lacp_Interface_Member_PortNumAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/port-num YANG schema element. -type Lacp_Interface_Member_PortNumAny struct { +// Lacp_Interface_Member_PortNumPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/port-num YANG schema element. +type Lacp_Interface_Member_PortNumPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Synchronization represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/synchronization YANG schema element. -type Lacp_Interface_Member_Synchronization struct { +// Lacp_Interface_Member_SynchronizationPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/synchronization YANG schema element. +type Lacp_Interface_Member_SynchronizationPath struct { *ygot.NodePath } -// Lacp_Interface_Member_SynchronizationAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/synchronization YANG schema element. -type Lacp_Interface_Member_SynchronizationAny struct { +// Lacp_Interface_Member_SynchronizationPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/synchronization YANG schema element. +type Lacp_Interface_Member_SynchronizationPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_SystemId represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/system-id YANG schema element. -type Lacp_Interface_Member_SystemId struct { +// Lacp_Interface_Member_SystemIdPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/system-id YANG schema element. +type Lacp_Interface_Member_SystemIdPath struct { *ygot.NodePath } -// Lacp_Interface_Member_SystemIdAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/system-id YANG schema element. -type Lacp_Interface_Member_SystemIdAny struct { +// Lacp_Interface_Member_SystemIdPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/system-id YANG schema element. +type Lacp_Interface_Member_SystemIdPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Timeout represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/timeout YANG schema element. -type Lacp_Interface_Member_Timeout struct { +// Lacp_Interface_Member_TimeoutPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/timeout YANG schema element. +type Lacp_Interface_Member_TimeoutPath struct { *ygot.NodePath } -// Lacp_Interface_Member_TimeoutAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/timeout YANG schema element. -type Lacp_Interface_Member_TimeoutAny struct { +// Lacp_Interface_Member_TimeoutPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/timeout YANG schema element. +type Lacp_Interface_Member_TimeoutPathAny struct { *ygot.NodePath } -// Activity returns from Lacp_Interface_Member the path struct for its child "activity". -func (n *Lacp_Interface_Member) Activity() *Lacp_Interface_Member_Activity { - return &Lacp_Interface_Member_Activity{ +// Activity returns from Lacp_Interface_MemberPath the path struct for its child "activity". +func (n *Lacp_Interface_MemberPath) Activity() *Lacp_Interface_Member_ActivityPath { + return &Lacp_Interface_Member_ActivityPath{ NodePath: ygot.NewNodePath( []string{"state", "activity"}, map[string]interface{}{}, @@ -54468,9 +54682,9 @@ func (n *Lacp_Interface_Member) Activity() *Lacp_Interface_Member_Activity { } } -// Activity returns from Lacp_Interface_MemberAny the path struct for its child "activity". -func (n *Lacp_Interface_MemberAny) Activity() *Lacp_Interface_Member_ActivityAny { - return &Lacp_Interface_Member_ActivityAny{ +// Activity returns from Lacp_Interface_MemberPathAny the path struct for its child "activity". +func (n *Lacp_Interface_MemberPathAny) Activity() *Lacp_Interface_Member_ActivityPathAny { + return &Lacp_Interface_Member_ActivityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "activity"}, map[string]interface{}{}, @@ -54479,9 +54693,9 @@ func (n *Lacp_Interface_MemberAny) Activity() *Lacp_Interface_Member_ActivityAny } } -// Aggregatable returns from Lacp_Interface_Member the path struct for its child "aggregatable". -func (n *Lacp_Interface_Member) Aggregatable() *Lacp_Interface_Member_Aggregatable { - return &Lacp_Interface_Member_Aggregatable{ +// Aggregatable returns from Lacp_Interface_MemberPath the path struct for its child "aggregatable". +func (n *Lacp_Interface_MemberPath) Aggregatable() *Lacp_Interface_Member_AggregatablePath { + return &Lacp_Interface_Member_AggregatablePath{ NodePath: ygot.NewNodePath( []string{"state", "aggregatable"}, map[string]interface{}{}, @@ -54490,9 +54704,9 @@ func (n *Lacp_Interface_Member) Aggregatable() *Lacp_Interface_Member_Aggregatab } } -// Aggregatable returns from Lacp_Interface_MemberAny the path struct for its child "aggregatable". -func (n *Lacp_Interface_MemberAny) Aggregatable() *Lacp_Interface_Member_AggregatableAny { - return &Lacp_Interface_Member_AggregatableAny{ +// Aggregatable returns from Lacp_Interface_MemberPathAny the path struct for its child "aggregatable". +func (n *Lacp_Interface_MemberPathAny) Aggregatable() *Lacp_Interface_Member_AggregatablePathAny { + return &Lacp_Interface_Member_AggregatablePathAny{ NodePath: ygot.NewNodePath( []string{"state", "aggregatable"}, map[string]interface{}{}, @@ -54501,9 +54715,9 @@ func (n *Lacp_Interface_MemberAny) Aggregatable() *Lacp_Interface_Member_Aggrega } } -// Collecting returns from Lacp_Interface_Member the path struct for its child "collecting". -func (n *Lacp_Interface_Member) Collecting() *Lacp_Interface_Member_Collecting { - return &Lacp_Interface_Member_Collecting{ +// Collecting returns from Lacp_Interface_MemberPath the path struct for its child "collecting". +func (n *Lacp_Interface_MemberPath) Collecting() *Lacp_Interface_Member_CollectingPath { + return &Lacp_Interface_Member_CollectingPath{ NodePath: ygot.NewNodePath( []string{"state", "collecting"}, map[string]interface{}{}, @@ -54512,9 +54726,9 @@ func (n *Lacp_Interface_Member) Collecting() *Lacp_Interface_Member_Collecting { } } -// Collecting returns from Lacp_Interface_MemberAny the path struct for its child "collecting". -func (n *Lacp_Interface_MemberAny) Collecting() *Lacp_Interface_Member_CollectingAny { - return &Lacp_Interface_Member_CollectingAny{ +// Collecting returns from Lacp_Interface_MemberPathAny the path struct for its child "collecting". +func (n *Lacp_Interface_MemberPathAny) Collecting() *Lacp_Interface_Member_CollectingPathAny { + return &Lacp_Interface_Member_CollectingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "collecting"}, map[string]interface{}{}, @@ -54523,9 +54737,9 @@ func (n *Lacp_Interface_MemberAny) Collecting() *Lacp_Interface_Member_Collectin } } -// Counters returns from Lacp_Interface_Member the path struct for its child "counters". -func (n *Lacp_Interface_Member) Counters() *Lacp_Interface_Member_Counters { - return &Lacp_Interface_Member_Counters{ +// Counters returns from Lacp_Interface_MemberPath the path struct for its child "counters". +func (n *Lacp_Interface_MemberPath) Counters() *Lacp_Interface_Member_CountersPath { + return &Lacp_Interface_Member_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -54534,9 +54748,9 @@ func (n *Lacp_Interface_Member) Counters() *Lacp_Interface_Member_Counters { } } -// Counters returns from Lacp_Interface_MemberAny the path struct for its child "counters". -func (n *Lacp_Interface_MemberAny) Counters() *Lacp_Interface_Member_CountersAny { - return &Lacp_Interface_Member_CountersAny{ +// Counters returns from Lacp_Interface_MemberPathAny the path struct for its child "counters". +func (n *Lacp_Interface_MemberPathAny) Counters() *Lacp_Interface_Member_CountersPathAny { + return &Lacp_Interface_Member_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -54545,9 +54759,9 @@ func (n *Lacp_Interface_MemberAny) Counters() *Lacp_Interface_Member_CountersAny } } -// Distributing returns from Lacp_Interface_Member the path struct for its child "distributing". -func (n *Lacp_Interface_Member) Distributing() *Lacp_Interface_Member_Distributing { - return &Lacp_Interface_Member_Distributing{ +// Distributing returns from Lacp_Interface_MemberPath the path struct for its child "distributing". +func (n *Lacp_Interface_MemberPath) Distributing() *Lacp_Interface_Member_DistributingPath { + return &Lacp_Interface_Member_DistributingPath{ NodePath: ygot.NewNodePath( []string{"state", "distributing"}, map[string]interface{}{}, @@ -54556,9 +54770,9 @@ func (n *Lacp_Interface_Member) Distributing() *Lacp_Interface_Member_Distributi } } -// Distributing returns from Lacp_Interface_MemberAny the path struct for its child "distributing". -func (n *Lacp_Interface_MemberAny) Distributing() *Lacp_Interface_Member_DistributingAny { - return &Lacp_Interface_Member_DistributingAny{ +// Distributing returns from Lacp_Interface_MemberPathAny the path struct for its child "distributing". +func (n *Lacp_Interface_MemberPathAny) Distributing() *Lacp_Interface_Member_DistributingPathAny { + return &Lacp_Interface_Member_DistributingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "distributing"}, map[string]interface{}{}, @@ -54567,9 +54781,9 @@ func (n *Lacp_Interface_MemberAny) Distributing() *Lacp_Interface_Member_Distrib } } -// Interface returns from Lacp_Interface_Member the path struct for its child "interface". -func (n *Lacp_Interface_Member) Interface() *Lacp_Interface_Member_Interface { - return &Lacp_Interface_Member_Interface{ +// Interface returns from Lacp_Interface_MemberPath the path struct for its child "interface". +func (n *Lacp_Interface_MemberPath) Interface() *Lacp_Interface_Member_InterfacePath { + return &Lacp_Interface_Member_InterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -54578,9 +54792,9 @@ func (n *Lacp_Interface_Member) Interface() *Lacp_Interface_Member_Interface { } } -// Interface returns from Lacp_Interface_MemberAny the path struct for its child "interface". -func (n *Lacp_Interface_MemberAny) Interface() *Lacp_Interface_Member_InterfaceAny { - return &Lacp_Interface_Member_InterfaceAny{ +// Interface returns from Lacp_Interface_MemberPathAny the path struct for its child "interface". +func (n *Lacp_Interface_MemberPathAny) Interface() *Lacp_Interface_Member_InterfacePathAny { + return &Lacp_Interface_Member_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -54589,9 +54803,9 @@ func (n *Lacp_Interface_MemberAny) Interface() *Lacp_Interface_Member_InterfaceA } } -// OperKey returns from Lacp_Interface_Member the path struct for its child "oper-key". -func (n *Lacp_Interface_Member) OperKey() *Lacp_Interface_Member_OperKey { - return &Lacp_Interface_Member_OperKey{ +// OperKey returns from Lacp_Interface_MemberPath the path struct for its child "oper-key". +func (n *Lacp_Interface_MemberPath) OperKey() *Lacp_Interface_Member_OperKeyPath { + return &Lacp_Interface_Member_OperKeyPath{ NodePath: ygot.NewNodePath( []string{"state", "oper-key"}, map[string]interface{}{}, @@ -54600,9 +54814,9 @@ func (n *Lacp_Interface_Member) OperKey() *Lacp_Interface_Member_OperKey { } } -// OperKey returns from Lacp_Interface_MemberAny the path struct for its child "oper-key". -func (n *Lacp_Interface_MemberAny) OperKey() *Lacp_Interface_Member_OperKeyAny { - return &Lacp_Interface_Member_OperKeyAny{ +// OperKey returns from Lacp_Interface_MemberPathAny the path struct for its child "oper-key". +func (n *Lacp_Interface_MemberPathAny) OperKey() *Lacp_Interface_Member_OperKeyPathAny { + return &Lacp_Interface_Member_OperKeyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oper-key"}, map[string]interface{}{}, @@ -54611,9 +54825,9 @@ func (n *Lacp_Interface_MemberAny) OperKey() *Lacp_Interface_Member_OperKeyAny { } } -// PartnerId returns from Lacp_Interface_Member the path struct for its child "partner-id". -func (n *Lacp_Interface_Member) PartnerId() *Lacp_Interface_Member_PartnerId { - return &Lacp_Interface_Member_PartnerId{ +// PartnerId returns from Lacp_Interface_MemberPath the path struct for its child "partner-id". +func (n *Lacp_Interface_MemberPath) PartnerId() *Lacp_Interface_Member_PartnerIdPath { + return &Lacp_Interface_Member_PartnerIdPath{ NodePath: ygot.NewNodePath( []string{"state", "partner-id"}, map[string]interface{}{}, @@ -54622,9 +54836,9 @@ func (n *Lacp_Interface_Member) PartnerId() *Lacp_Interface_Member_PartnerId { } } -// PartnerId returns from Lacp_Interface_MemberAny the path struct for its child "partner-id". -func (n *Lacp_Interface_MemberAny) PartnerId() *Lacp_Interface_Member_PartnerIdAny { - return &Lacp_Interface_Member_PartnerIdAny{ +// PartnerId returns from Lacp_Interface_MemberPathAny the path struct for its child "partner-id". +func (n *Lacp_Interface_MemberPathAny) PartnerId() *Lacp_Interface_Member_PartnerIdPathAny { + return &Lacp_Interface_Member_PartnerIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partner-id"}, map[string]interface{}{}, @@ -54633,9 +54847,9 @@ func (n *Lacp_Interface_MemberAny) PartnerId() *Lacp_Interface_Member_PartnerIdA } } -// PartnerKey returns from Lacp_Interface_Member the path struct for its child "partner-key". -func (n *Lacp_Interface_Member) PartnerKey() *Lacp_Interface_Member_PartnerKey { - return &Lacp_Interface_Member_PartnerKey{ +// PartnerKey returns from Lacp_Interface_MemberPath the path struct for its child "partner-key". +func (n *Lacp_Interface_MemberPath) PartnerKey() *Lacp_Interface_Member_PartnerKeyPath { + return &Lacp_Interface_Member_PartnerKeyPath{ NodePath: ygot.NewNodePath( []string{"state", "partner-key"}, map[string]interface{}{}, @@ -54644,9 +54858,9 @@ func (n *Lacp_Interface_Member) PartnerKey() *Lacp_Interface_Member_PartnerKey { } } -// PartnerKey returns from Lacp_Interface_MemberAny the path struct for its child "partner-key". -func (n *Lacp_Interface_MemberAny) PartnerKey() *Lacp_Interface_Member_PartnerKeyAny { - return &Lacp_Interface_Member_PartnerKeyAny{ +// PartnerKey returns from Lacp_Interface_MemberPathAny the path struct for its child "partner-key". +func (n *Lacp_Interface_MemberPathAny) PartnerKey() *Lacp_Interface_Member_PartnerKeyPathAny { + return &Lacp_Interface_Member_PartnerKeyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partner-key"}, map[string]interface{}{}, @@ -54655,9 +54869,9 @@ func (n *Lacp_Interface_MemberAny) PartnerKey() *Lacp_Interface_Member_PartnerKe } } -// PartnerPortNum returns from Lacp_Interface_Member the path struct for its child "partner-port-num". -func (n *Lacp_Interface_Member) PartnerPortNum() *Lacp_Interface_Member_PartnerPortNum { - return &Lacp_Interface_Member_PartnerPortNum{ +// PartnerPortNum returns from Lacp_Interface_MemberPath the path struct for its child "partner-port-num". +func (n *Lacp_Interface_MemberPath) PartnerPortNum() *Lacp_Interface_Member_PartnerPortNumPath { + return &Lacp_Interface_Member_PartnerPortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "partner-port-num"}, map[string]interface{}{}, @@ -54666,9 +54880,9 @@ func (n *Lacp_Interface_Member) PartnerPortNum() *Lacp_Interface_Member_PartnerP } } -// PartnerPortNum returns from Lacp_Interface_MemberAny the path struct for its child "partner-port-num". -func (n *Lacp_Interface_MemberAny) PartnerPortNum() *Lacp_Interface_Member_PartnerPortNumAny { - return &Lacp_Interface_Member_PartnerPortNumAny{ +// PartnerPortNum returns from Lacp_Interface_MemberPathAny the path struct for its child "partner-port-num". +func (n *Lacp_Interface_MemberPathAny) PartnerPortNum() *Lacp_Interface_Member_PartnerPortNumPathAny { + return &Lacp_Interface_Member_PartnerPortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partner-port-num"}, map[string]interface{}{}, @@ -54677,9 +54891,9 @@ func (n *Lacp_Interface_MemberAny) PartnerPortNum() *Lacp_Interface_Member_Partn } } -// PortNum returns from Lacp_Interface_Member the path struct for its child "port-num". -func (n *Lacp_Interface_Member) PortNum() *Lacp_Interface_Member_PortNum { - return &Lacp_Interface_Member_PortNum{ +// PortNum returns from Lacp_Interface_MemberPath the path struct for its child "port-num". +func (n *Lacp_Interface_MemberPath) PortNum() *Lacp_Interface_Member_PortNumPath { + return &Lacp_Interface_Member_PortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -54688,9 +54902,9 @@ func (n *Lacp_Interface_Member) PortNum() *Lacp_Interface_Member_PortNum { } } -// PortNum returns from Lacp_Interface_MemberAny the path struct for its child "port-num". -func (n *Lacp_Interface_MemberAny) PortNum() *Lacp_Interface_Member_PortNumAny { - return &Lacp_Interface_Member_PortNumAny{ +// PortNum returns from Lacp_Interface_MemberPathAny the path struct for its child "port-num". +func (n *Lacp_Interface_MemberPathAny) PortNum() *Lacp_Interface_Member_PortNumPathAny { + return &Lacp_Interface_Member_PortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -54699,9 +54913,9 @@ func (n *Lacp_Interface_MemberAny) PortNum() *Lacp_Interface_Member_PortNumAny { } } -// Synchronization returns from Lacp_Interface_Member the path struct for its child "synchronization". -func (n *Lacp_Interface_Member) Synchronization() *Lacp_Interface_Member_Synchronization { - return &Lacp_Interface_Member_Synchronization{ +// Synchronization returns from Lacp_Interface_MemberPath the path struct for its child "synchronization". +func (n *Lacp_Interface_MemberPath) Synchronization() *Lacp_Interface_Member_SynchronizationPath { + return &Lacp_Interface_Member_SynchronizationPath{ NodePath: ygot.NewNodePath( []string{"state", "synchronization"}, map[string]interface{}{}, @@ -54710,9 +54924,9 @@ func (n *Lacp_Interface_Member) Synchronization() *Lacp_Interface_Member_Synchro } } -// Synchronization returns from Lacp_Interface_MemberAny the path struct for its child "synchronization". -func (n *Lacp_Interface_MemberAny) Synchronization() *Lacp_Interface_Member_SynchronizationAny { - return &Lacp_Interface_Member_SynchronizationAny{ +// Synchronization returns from Lacp_Interface_MemberPathAny the path struct for its child "synchronization". +func (n *Lacp_Interface_MemberPathAny) Synchronization() *Lacp_Interface_Member_SynchronizationPathAny { + return &Lacp_Interface_Member_SynchronizationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "synchronization"}, map[string]interface{}{}, @@ -54721,9 +54935,9 @@ func (n *Lacp_Interface_MemberAny) Synchronization() *Lacp_Interface_Member_Sync } } -// SystemId returns from Lacp_Interface_Member the path struct for its child "system-id". -func (n *Lacp_Interface_Member) SystemId() *Lacp_Interface_Member_SystemId { - return &Lacp_Interface_Member_SystemId{ +// SystemId returns from Lacp_Interface_MemberPath the path struct for its child "system-id". +func (n *Lacp_Interface_MemberPath) SystemId() *Lacp_Interface_Member_SystemIdPath { + return &Lacp_Interface_Member_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -54732,9 +54946,9 @@ func (n *Lacp_Interface_Member) SystemId() *Lacp_Interface_Member_SystemId { } } -// SystemId returns from Lacp_Interface_MemberAny the path struct for its child "system-id". -func (n *Lacp_Interface_MemberAny) SystemId() *Lacp_Interface_Member_SystemIdAny { - return &Lacp_Interface_Member_SystemIdAny{ +// SystemId returns from Lacp_Interface_MemberPathAny the path struct for its child "system-id". +func (n *Lacp_Interface_MemberPathAny) SystemId() *Lacp_Interface_Member_SystemIdPathAny { + return &Lacp_Interface_Member_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -54743,9 +54957,9 @@ func (n *Lacp_Interface_MemberAny) SystemId() *Lacp_Interface_Member_SystemIdAny } } -// Timeout returns from Lacp_Interface_Member the path struct for its child "timeout". -func (n *Lacp_Interface_Member) Timeout() *Lacp_Interface_Member_Timeout { - return &Lacp_Interface_Member_Timeout{ +// Timeout returns from Lacp_Interface_MemberPath the path struct for its child "timeout". +func (n *Lacp_Interface_MemberPath) Timeout() *Lacp_Interface_Member_TimeoutPath { + return &Lacp_Interface_Member_TimeoutPath{ NodePath: ygot.NewNodePath( []string{"state", "timeout"}, map[string]interface{}{}, @@ -54754,9 +54968,9 @@ func (n *Lacp_Interface_Member) Timeout() *Lacp_Interface_Member_Timeout { } } -// Timeout returns from Lacp_Interface_MemberAny the path struct for its child "timeout". -func (n *Lacp_Interface_MemberAny) Timeout() *Lacp_Interface_Member_TimeoutAny { - return &Lacp_Interface_Member_TimeoutAny{ +// Timeout returns from Lacp_Interface_MemberPathAny the path struct for its child "timeout". +func (n *Lacp_Interface_MemberPathAny) Timeout() *Lacp_Interface_Member_TimeoutPathAny { + return &Lacp_Interface_Member_TimeoutPathAny{ NodePath: ygot.NewNodePath( []string{"state", "timeout"}, map[string]interface{}{}, @@ -54765,79 +54979,79 @@ func (n *Lacp_Interface_MemberAny) Timeout() *Lacp_Interface_Member_TimeoutAny { } } -// Lacp_Interface_Member_Counters represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters YANG schema element. -type Lacp_Interface_Member_Counters struct { +// Lacp_Interface_Member_CountersPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters YANG schema element. +type Lacp_Interface_Member_CountersPath struct { *ygot.NodePath } -// Lacp_Interface_Member_CountersAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters YANG schema element. -type Lacp_Interface_Member_CountersAny struct { +// Lacp_Interface_Member_CountersPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters YANG schema element. +type Lacp_Interface_Member_CountersPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpErrors represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpErrors struct { +// Lacp_Interface_Member_Counters_LacpErrorsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpErrorsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpErrorsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpErrorsAny struct { +// Lacp_Interface_Member_Counters_LacpErrorsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpErrorsPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpInPkts represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-in-pkts YANG schema element. -type Lacp_Interface_Member_Counters_LacpInPkts struct { +// Lacp_Interface_Member_Counters_LacpInPktsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-in-pkts YANG schema element. +type Lacp_Interface_Member_Counters_LacpInPktsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpInPktsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-in-pkts YANG schema element. -type Lacp_Interface_Member_Counters_LacpInPktsAny struct { +// Lacp_Interface_Member_Counters_LacpInPktsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-in-pkts YANG schema element. +type Lacp_Interface_Member_Counters_LacpInPktsPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpOutPkts represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-out-pkts YANG schema element. -type Lacp_Interface_Member_Counters_LacpOutPkts struct { +// Lacp_Interface_Member_Counters_LacpOutPktsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-out-pkts YANG schema element. +type Lacp_Interface_Member_Counters_LacpOutPktsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpOutPktsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-out-pkts YANG schema element. -type Lacp_Interface_Member_Counters_LacpOutPktsAny struct { +// Lacp_Interface_Member_Counters_LacpOutPktsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-out-pkts YANG schema element. +type Lacp_Interface_Member_Counters_LacpOutPktsPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpRxErrors represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-rx-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpRxErrors struct { +// Lacp_Interface_Member_Counters_LacpRxErrorsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-rx-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpRxErrorsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpRxErrorsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-rx-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpRxErrorsAny struct { +// Lacp_Interface_Member_Counters_LacpRxErrorsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-rx-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpRxErrorsPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpTxErrors represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-tx-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpTxErrors struct { +// Lacp_Interface_Member_Counters_LacpTxErrorsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-tx-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpTxErrorsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpTxErrorsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-tx-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpTxErrorsAny struct { +// Lacp_Interface_Member_Counters_LacpTxErrorsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-tx-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpTxErrorsPathAny struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpUnknownErrors represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-unknown-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpUnknownErrors struct { +// Lacp_Interface_Member_Counters_LacpUnknownErrorsPath represents the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-unknown-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpUnknownErrorsPath struct { *ygot.NodePath } -// Lacp_Interface_Member_Counters_LacpUnknownErrorsAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-unknown-errors YANG schema element. -type Lacp_Interface_Member_Counters_LacpUnknownErrorsAny struct { +// Lacp_Interface_Member_Counters_LacpUnknownErrorsPathAny represents the wildcard version of the /openconfig-lacp/lacp/interfaces/interface/members/member/state/counters/lacp-unknown-errors YANG schema element. +type Lacp_Interface_Member_Counters_LacpUnknownErrorsPathAny struct { *ygot.NodePath } -// LacpErrors returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-errors". -func (n *Lacp_Interface_Member_Counters) LacpErrors() *Lacp_Interface_Member_Counters_LacpErrors { - return &Lacp_Interface_Member_Counters_LacpErrors{ +// LacpErrors returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-errors". +func (n *Lacp_Interface_Member_CountersPath) LacpErrors() *Lacp_Interface_Member_Counters_LacpErrorsPath { + return &Lacp_Interface_Member_Counters_LacpErrorsPath{ NodePath: ygot.NewNodePath( []string{"lacp-errors"}, map[string]interface{}{}, @@ -54846,9 +55060,9 @@ func (n *Lacp_Interface_Member_Counters) LacpErrors() *Lacp_Interface_Member_Cou } } -// LacpErrors returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-errors". -func (n *Lacp_Interface_Member_CountersAny) LacpErrors() *Lacp_Interface_Member_Counters_LacpErrorsAny { - return &Lacp_Interface_Member_Counters_LacpErrorsAny{ +// LacpErrors returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-errors". +func (n *Lacp_Interface_Member_CountersPathAny) LacpErrors() *Lacp_Interface_Member_Counters_LacpErrorsPathAny { + return &Lacp_Interface_Member_Counters_LacpErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-errors"}, map[string]interface{}{}, @@ -54857,9 +55071,9 @@ func (n *Lacp_Interface_Member_CountersAny) LacpErrors() *Lacp_Interface_Member_ } } -// LacpInPkts returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-in-pkts". -func (n *Lacp_Interface_Member_Counters) LacpInPkts() *Lacp_Interface_Member_Counters_LacpInPkts { - return &Lacp_Interface_Member_Counters_LacpInPkts{ +// LacpInPkts returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-in-pkts". +func (n *Lacp_Interface_Member_CountersPath) LacpInPkts() *Lacp_Interface_Member_Counters_LacpInPktsPath { + return &Lacp_Interface_Member_Counters_LacpInPktsPath{ NodePath: ygot.NewNodePath( []string{"lacp-in-pkts"}, map[string]interface{}{}, @@ -54868,9 +55082,9 @@ func (n *Lacp_Interface_Member_Counters) LacpInPkts() *Lacp_Interface_Member_Cou } } -// LacpInPkts returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-in-pkts". -func (n *Lacp_Interface_Member_CountersAny) LacpInPkts() *Lacp_Interface_Member_Counters_LacpInPktsAny { - return &Lacp_Interface_Member_Counters_LacpInPktsAny{ +// LacpInPkts returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-in-pkts". +func (n *Lacp_Interface_Member_CountersPathAny) LacpInPkts() *Lacp_Interface_Member_Counters_LacpInPktsPathAny { + return &Lacp_Interface_Member_Counters_LacpInPktsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-in-pkts"}, map[string]interface{}{}, @@ -54879,9 +55093,9 @@ func (n *Lacp_Interface_Member_CountersAny) LacpInPkts() *Lacp_Interface_Member_ } } -// LacpOutPkts returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-out-pkts". -func (n *Lacp_Interface_Member_Counters) LacpOutPkts() *Lacp_Interface_Member_Counters_LacpOutPkts { - return &Lacp_Interface_Member_Counters_LacpOutPkts{ +// LacpOutPkts returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-out-pkts". +func (n *Lacp_Interface_Member_CountersPath) LacpOutPkts() *Lacp_Interface_Member_Counters_LacpOutPktsPath { + return &Lacp_Interface_Member_Counters_LacpOutPktsPath{ NodePath: ygot.NewNodePath( []string{"lacp-out-pkts"}, map[string]interface{}{}, @@ -54890,9 +55104,9 @@ func (n *Lacp_Interface_Member_Counters) LacpOutPkts() *Lacp_Interface_Member_Co } } -// LacpOutPkts returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-out-pkts". -func (n *Lacp_Interface_Member_CountersAny) LacpOutPkts() *Lacp_Interface_Member_Counters_LacpOutPktsAny { - return &Lacp_Interface_Member_Counters_LacpOutPktsAny{ +// LacpOutPkts returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-out-pkts". +func (n *Lacp_Interface_Member_CountersPathAny) LacpOutPkts() *Lacp_Interface_Member_Counters_LacpOutPktsPathAny { + return &Lacp_Interface_Member_Counters_LacpOutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-out-pkts"}, map[string]interface{}{}, @@ -54901,9 +55115,9 @@ func (n *Lacp_Interface_Member_CountersAny) LacpOutPkts() *Lacp_Interface_Member } } -// LacpRxErrors returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-rx-errors". -func (n *Lacp_Interface_Member_Counters) LacpRxErrors() *Lacp_Interface_Member_Counters_LacpRxErrors { - return &Lacp_Interface_Member_Counters_LacpRxErrors{ +// LacpRxErrors returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-rx-errors". +func (n *Lacp_Interface_Member_CountersPath) LacpRxErrors() *Lacp_Interface_Member_Counters_LacpRxErrorsPath { + return &Lacp_Interface_Member_Counters_LacpRxErrorsPath{ NodePath: ygot.NewNodePath( []string{"lacp-rx-errors"}, map[string]interface{}{}, @@ -54912,9 +55126,9 @@ func (n *Lacp_Interface_Member_Counters) LacpRxErrors() *Lacp_Interface_Member_C } } -// LacpRxErrors returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-rx-errors". -func (n *Lacp_Interface_Member_CountersAny) LacpRxErrors() *Lacp_Interface_Member_Counters_LacpRxErrorsAny { - return &Lacp_Interface_Member_Counters_LacpRxErrorsAny{ +// LacpRxErrors returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-rx-errors". +func (n *Lacp_Interface_Member_CountersPathAny) LacpRxErrors() *Lacp_Interface_Member_Counters_LacpRxErrorsPathAny { + return &Lacp_Interface_Member_Counters_LacpRxErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-rx-errors"}, map[string]interface{}{}, @@ -54923,9 +55137,9 @@ func (n *Lacp_Interface_Member_CountersAny) LacpRxErrors() *Lacp_Interface_Membe } } -// LacpTxErrors returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-tx-errors". -func (n *Lacp_Interface_Member_Counters) LacpTxErrors() *Lacp_Interface_Member_Counters_LacpTxErrors { - return &Lacp_Interface_Member_Counters_LacpTxErrors{ +// LacpTxErrors returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-tx-errors". +func (n *Lacp_Interface_Member_CountersPath) LacpTxErrors() *Lacp_Interface_Member_Counters_LacpTxErrorsPath { + return &Lacp_Interface_Member_Counters_LacpTxErrorsPath{ NodePath: ygot.NewNodePath( []string{"lacp-tx-errors"}, map[string]interface{}{}, @@ -54934,9 +55148,9 @@ func (n *Lacp_Interface_Member_Counters) LacpTxErrors() *Lacp_Interface_Member_C } } -// LacpTxErrors returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-tx-errors". -func (n *Lacp_Interface_Member_CountersAny) LacpTxErrors() *Lacp_Interface_Member_Counters_LacpTxErrorsAny { - return &Lacp_Interface_Member_Counters_LacpTxErrorsAny{ +// LacpTxErrors returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-tx-errors". +func (n *Lacp_Interface_Member_CountersPathAny) LacpTxErrors() *Lacp_Interface_Member_Counters_LacpTxErrorsPathAny { + return &Lacp_Interface_Member_Counters_LacpTxErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-tx-errors"}, map[string]interface{}{}, @@ -54945,9 +55159,9 @@ func (n *Lacp_Interface_Member_CountersAny) LacpTxErrors() *Lacp_Interface_Membe } } -// LacpUnknownErrors returns from Lacp_Interface_Member_Counters the path struct for its child "lacp-unknown-errors". -func (n *Lacp_Interface_Member_Counters) LacpUnknownErrors() *Lacp_Interface_Member_Counters_LacpUnknownErrors { - return &Lacp_Interface_Member_Counters_LacpUnknownErrors{ +// LacpUnknownErrors returns from Lacp_Interface_Member_CountersPath the path struct for its child "lacp-unknown-errors". +func (n *Lacp_Interface_Member_CountersPath) LacpUnknownErrors() *Lacp_Interface_Member_Counters_LacpUnknownErrorsPath { + return &Lacp_Interface_Member_Counters_LacpUnknownErrorsPath{ NodePath: ygot.NewNodePath( []string{"lacp-unknown-errors"}, map[string]interface{}{}, @@ -54956,9 +55170,9 @@ func (n *Lacp_Interface_Member_Counters) LacpUnknownErrors() *Lacp_Interface_Mem } } -// LacpUnknownErrors returns from Lacp_Interface_Member_CountersAny the path struct for its child "lacp-unknown-errors". -func (n *Lacp_Interface_Member_CountersAny) LacpUnknownErrors() *Lacp_Interface_Member_Counters_LacpUnknownErrorsAny { - return &Lacp_Interface_Member_Counters_LacpUnknownErrorsAny{ +// LacpUnknownErrors returns from Lacp_Interface_Member_CountersPathAny the path struct for its child "lacp-unknown-errors". +func (n *Lacp_Interface_Member_CountersPathAny) LacpUnknownErrors() *Lacp_Interface_Member_Counters_LacpUnknownErrorsPathAny { + return &Lacp_Interface_Member_Counters_LacpUnknownErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"lacp-unknown-errors"}, map[string]interface{}{}, @@ -54967,133 +55181,133 @@ func (n *Lacp_Interface_Member_CountersAny) LacpUnknownErrors() *Lacp_Interface_ } } -// Lldp represents the /openconfig-lldp/lldp YANG schema element. -type Lldp struct { +// LldpPath represents the /openconfig-lldp/lldp YANG schema element. +type LldpPath struct { *ygot.NodePath } -// LldpAny represents the wildcard version of the /openconfig-lldp/lldp YANG schema element. -type LldpAny struct { +// LldpPathAny represents the wildcard version of the /openconfig-lldp/lldp YANG schema element. +type LldpPathAny struct { *ygot.NodePath } -// Lldp_ChassisId represents the /openconfig-lldp/lldp/state/chassis-id YANG schema element. -type Lldp_ChassisId struct { +// Lldp_ChassisIdPath represents the /openconfig-lldp/lldp/config/chassis-id YANG schema element. +type Lldp_ChassisIdPath struct { *ygot.NodePath } -// Lldp_ChassisIdAny represents the wildcard version of the /openconfig-lldp/lldp/state/chassis-id YANG schema element. -type Lldp_ChassisIdAny struct { +// Lldp_ChassisIdPathAny represents the wildcard version of the /openconfig-lldp/lldp/config/chassis-id YANG schema element. +type Lldp_ChassisIdPathAny struct { *ygot.NodePath } -// Lldp_ChassisIdType represents the /openconfig-lldp/lldp/state/chassis-id-type YANG schema element. -type Lldp_ChassisIdType struct { +// Lldp_ChassisIdTypePath represents the /openconfig-lldp/lldp/config/chassis-id-type YANG schema element. +type Lldp_ChassisIdTypePath struct { *ygot.NodePath } -// Lldp_ChassisIdTypeAny represents the wildcard version of the /openconfig-lldp/lldp/state/chassis-id-type YANG schema element. -type Lldp_ChassisIdTypeAny struct { +// Lldp_ChassisIdTypePathAny represents the wildcard version of the /openconfig-lldp/lldp/config/chassis-id-type YANG schema element. +type Lldp_ChassisIdTypePathAny struct { *ygot.NodePath } -// Lldp_Enabled represents the /openconfig-lldp/lldp/state/enabled YANG schema element. -type Lldp_Enabled struct { +// Lldp_EnabledPath represents the /openconfig-lldp/lldp/config/enabled YANG schema element. +type Lldp_EnabledPath struct { *ygot.NodePath } -// Lldp_EnabledAny represents the wildcard version of the /openconfig-lldp/lldp/state/enabled YANG schema element. -type Lldp_EnabledAny struct { +// Lldp_EnabledPathAny represents the wildcard version of the /openconfig-lldp/lldp/config/enabled YANG schema element. +type Lldp_EnabledPathAny struct { *ygot.NodePath } -// Lldp_HelloTimer represents the /openconfig-lldp/lldp/state/hello-timer YANG schema element. -type Lldp_HelloTimer struct { +// Lldp_HelloTimerPath represents the /openconfig-lldp/lldp/config/hello-timer YANG schema element. +type Lldp_HelloTimerPath struct { *ygot.NodePath } -// Lldp_HelloTimerAny represents the wildcard version of the /openconfig-lldp/lldp/state/hello-timer YANG schema element. -type Lldp_HelloTimerAny struct { +// Lldp_HelloTimerPathAny represents the wildcard version of the /openconfig-lldp/lldp/config/hello-timer YANG schema element. +type Lldp_HelloTimerPathAny struct { *ygot.NodePath } -// Lldp_SuppressTlvAdvertisement represents the /openconfig-lldp/lldp/state/suppress-tlv-advertisement YANG schema element. -type Lldp_SuppressTlvAdvertisement struct { +// Lldp_SuppressTlvAdvertisementPath represents the /openconfig-lldp/lldp/config/suppress-tlv-advertisement YANG schema element. +type Lldp_SuppressTlvAdvertisementPath struct { *ygot.NodePath } -// Lldp_SuppressTlvAdvertisementAny represents the wildcard version of the /openconfig-lldp/lldp/state/suppress-tlv-advertisement YANG schema element. -type Lldp_SuppressTlvAdvertisementAny struct { +// Lldp_SuppressTlvAdvertisementPathAny represents the wildcard version of the /openconfig-lldp/lldp/config/suppress-tlv-advertisement YANG schema element. +type Lldp_SuppressTlvAdvertisementPathAny struct { *ygot.NodePath } -// Lldp_SystemDescription represents the /openconfig-lldp/lldp/state/system-description YANG schema element. -type Lldp_SystemDescription struct { +// Lldp_SystemDescriptionPath represents the /openconfig-lldp/lldp/config/system-description YANG schema element. +type Lldp_SystemDescriptionPath struct { *ygot.NodePath } -// Lldp_SystemDescriptionAny represents the wildcard version of the /openconfig-lldp/lldp/state/system-description YANG schema element. -type Lldp_SystemDescriptionAny struct { +// Lldp_SystemDescriptionPathAny represents the wildcard version of the /openconfig-lldp/lldp/config/system-description YANG schema element. +type Lldp_SystemDescriptionPathAny struct { *ygot.NodePath } -// Lldp_SystemName represents the /openconfig-lldp/lldp/state/system-name YANG schema element. -type Lldp_SystemName struct { +// Lldp_SystemNamePath represents the /openconfig-lldp/lldp/config/system-name YANG schema element. +type Lldp_SystemNamePath struct { *ygot.NodePath } -// Lldp_SystemNameAny represents the wildcard version of the /openconfig-lldp/lldp/state/system-name YANG schema element. -type Lldp_SystemNameAny struct { +// Lldp_SystemNamePathAny represents the wildcard version of the /openconfig-lldp/lldp/config/system-name YANG schema element. +type Lldp_SystemNamePathAny struct { *ygot.NodePath } -// ChassisId returns from Lldp the path struct for its child "chassis-id". -func (n *Lldp) ChassisId() *Lldp_ChassisId { - return &Lldp_ChassisId{ +// ChassisId returns from LldpPath the path struct for its child "chassis-id". +func (n *LldpPath) ChassisId() *Lldp_ChassisIdPath { + return &Lldp_ChassisIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "chassis-id"}, + []string{"config", "chassis-id"}, map[string]interface{}{}, n, ), } } -// ChassisId returns from LldpAny the path struct for its child "chassis-id". -func (n *LldpAny) ChassisId() *Lldp_ChassisIdAny { - return &Lldp_ChassisIdAny{ +// ChassisId returns from LldpPathAny the path struct for its child "chassis-id". +func (n *LldpPathAny) ChassisId() *Lldp_ChassisIdPathAny { + return &Lldp_ChassisIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "chassis-id"}, + []string{"config", "chassis-id"}, map[string]interface{}{}, n, ), } } -// ChassisIdType returns from Lldp the path struct for its child "chassis-id-type". -func (n *Lldp) ChassisIdType() *Lldp_ChassisIdType { - return &Lldp_ChassisIdType{ +// ChassisIdType returns from LldpPath the path struct for its child "chassis-id-type". +func (n *LldpPath) ChassisIdType() *Lldp_ChassisIdTypePath { + return &Lldp_ChassisIdTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "chassis-id-type"}, + []string{"config", "chassis-id-type"}, map[string]interface{}{}, n, ), } } -// ChassisIdType returns from LldpAny the path struct for its child "chassis-id-type". -func (n *LldpAny) ChassisIdType() *Lldp_ChassisIdTypeAny { - return &Lldp_ChassisIdTypeAny{ +// ChassisIdType returns from LldpPathAny the path struct for its child "chassis-id-type". +func (n *LldpPathAny) ChassisIdType() *Lldp_ChassisIdTypePathAny { + return &Lldp_ChassisIdTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "chassis-id-type"}, + []string{"config", "chassis-id-type"}, map[string]interface{}{}, n, ), } } -// Counters returns from Lldp the path struct for its child "counters". -func (n *Lldp) Counters() *Lldp_Counters { - return &Lldp_Counters{ +// Counters returns from LldpPath the path struct for its child "counters". +func (n *LldpPath) Counters() *Lldp_CountersPath { + return &Lldp_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -55102,9 +55316,9 @@ func (n *Lldp) Counters() *Lldp_Counters { } } -// Counters returns from LldpAny the path struct for its child "counters". -func (n *LldpAny) Counters() *Lldp_CountersAny { - return &Lldp_CountersAny{ +// Counters returns from LldpPathAny the path struct for its child "counters". +func (n *LldpPathAny) Counters() *Lldp_CountersPathAny { + return &Lldp_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -55113,53 +55327,53 @@ func (n *LldpAny) Counters() *Lldp_CountersAny { } } -// Enabled returns from Lldp the path struct for its child "enabled". -func (n *Lldp) Enabled() *Lldp_Enabled { - return &Lldp_Enabled{ +// Enabled returns from LldpPath the path struct for its child "enabled". +func (n *LldpPath) Enabled() *Lldp_EnabledPath { + return &Lldp_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from LldpAny the path struct for its child "enabled". -func (n *LldpAny) Enabled() *Lldp_EnabledAny { - return &Lldp_EnabledAny{ +// Enabled returns from LldpPathAny the path struct for its child "enabled". +func (n *LldpPathAny) Enabled() *Lldp_EnabledPathAny { + return &Lldp_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelloTimer returns from Lldp the path struct for its child "hello-timer". -func (n *Lldp) HelloTimer() *Lldp_HelloTimer { - return &Lldp_HelloTimer{ +// HelloTimer returns from LldpPath the path struct for its child "hello-timer". +func (n *LldpPath) HelloTimer() *Lldp_HelloTimerPath { + return &Lldp_HelloTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-timer"}, + []string{"config", "hello-timer"}, map[string]interface{}{}, n, ), } } -// HelloTimer returns from LldpAny the path struct for its child "hello-timer". -func (n *LldpAny) HelloTimer() *Lldp_HelloTimerAny { - return &Lldp_HelloTimerAny{ +// HelloTimer returns from LldpPathAny the path struct for its child "hello-timer". +func (n *LldpPathAny) HelloTimer() *Lldp_HelloTimerPathAny { + return &Lldp_HelloTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-timer"}, + []string{"config", "hello-timer"}, map[string]interface{}{}, n, ), } } -// InterfaceAny returns from Lldp the path struct for its child "interface". -func (n *Lldp) InterfaceAny() *Lldp_InterfaceAny { - return &Lldp_InterfaceAny{ +// InterfaceAny returns from LldpPath the path struct for its child "interface". +func (n *LldpPath) InterfaceAny() *Lldp_InterfacePathAny { + return &Lldp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -55168,9 +55382,9 @@ func (n *Lldp) InterfaceAny() *Lldp_InterfaceAny { } } -// InterfaceAny returns from LldpAny the path struct for its child "interface". -func (n *LldpAny) InterfaceAny() *Lldp_InterfaceAny { - return &Lldp_InterfaceAny{ +// InterfaceAny returns from LldpPathAny the path struct for its child "interface". +func (n *LldpPathAny) InterfaceAny() *Lldp_InterfacePathAny { + return &Lldp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -55179,9 +55393,9 @@ func (n *LldpAny) InterfaceAny() *Lldp_InterfaceAny { } } -// Interface returns from Lldp the path struct for its child "interface". -func (n *Lldp) Interface(Name string) *Lldp_Interface { - return &Lldp_Interface{ +// Interface returns from LldpPath the path struct for its child "interface". +func (n *LldpPath) Interface(Name string) *Lldp_InterfacePath { + return &Lldp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -55190,9 +55404,9 @@ func (n *Lldp) Interface(Name string) *Lldp_Interface { } } -// Interface returns from LldpAny the path struct for its child "interface". -func (n *LldpAny) Interface(Name string) *Lldp_InterfaceAny { - return &Lldp_InterfaceAny{ +// Interface returns from LldpPathAny the path struct for its child "interface". +func (n *LldpPathAny) Interface(Name string) *Lldp_InterfacePathAny { + return &Lldp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -55201,175 +55415,175 @@ func (n *LldpAny) Interface(Name string) *Lldp_InterfaceAny { } } -// SuppressTlvAdvertisement returns from Lldp the path struct for its child "suppress-tlv-advertisement". -func (n *Lldp) SuppressTlvAdvertisement() *Lldp_SuppressTlvAdvertisement { - return &Lldp_SuppressTlvAdvertisement{ +// SuppressTlvAdvertisement returns from LldpPath the path struct for its child "suppress-tlv-advertisement". +func (n *LldpPath) SuppressTlvAdvertisement() *Lldp_SuppressTlvAdvertisementPath { + return &Lldp_SuppressTlvAdvertisementPath{ NodePath: ygot.NewNodePath( - []string{"state", "suppress-tlv-advertisement"}, + []string{"config", "suppress-tlv-advertisement"}, map[string]interface{}{}, n, ), } } -// SuppressTlvAdvertisement returns from LldpAny the path struct for its child "suppress-tlv-advertisement". -func (n *LldpAny) SuppressTlvAdvertisement() *Lldp_SuppressTlvAdvertisementAny { - return &Lldp_SuppressTlvAdvertisementAny{ +// SuppressTlvAdvertisement returns from LldpPathAny the path struct for its child "suppress-tlv-advertisement". +func (n *LldpPathAny) SuppressTlvAdvertisement() *Lldp_SuppressTlvAdvertisementPathAny { + return &Lldp_SuppressTlvAdvertisementPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "suppress-tlv-advertisement"}, + []string{"config", "suppress-tlv-advertisement"}, map[string]interface{}{}, n, ), } } -// SystemDescription returns from Lldp the path struct for its child "system-description". -func (n *Lldp) SystemDescription() *Lldp_SystemDescription { - return &Lldp_SystemDescription{ +// SystemDescription returns from LldpPath the path struct for its child "system-description". +func (n *LldpPath) SystemDescription() *Lldp_SystemDescriptionPath { + return &Lldp_SystemDescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "system-description"}, + []string{"config", "system-description"}, map[string]interface{}{}, n, ), } } -// SystemDescription returns from LldpAny the path struct for its child "system-description". -func (n *LldpAny) SystemDescription() *Lldp_SystemDescriptionAny { - return &Lldp_SystemDescriptionAny{ +// SystemDescription returns from LldpPathAny the path struct for its child "system-description". +func (n *LldpPathAny) SystemDescription() *Lldp_SystemDescriptionPathAny { + return &Lldp_SystemDescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "system-description"}, + []string{"config", "system-description"}, map[string]interface{}{}, n, ), } } -// SystemName returns from Lldp the path struct for its child "system-name". -func (n *Lldp) SystemName() *Lldp_SystemName { - return &Lldp_SystemName{ +// SystemName returns from LldpPath the path struct for its child "system-name". +func (n *LldpPath) SystemName() *Lldp_SystemNamePath { + return &Lldp_SystemNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "system-name"}, + []string{"config", "system-name"}, map[string]interface{}{}, n, ), } } -// SystemName returns from LldpAny the path struct for its child "system-name". -func (n *LldpAny) SystemName() *Lldp_SystemNameAny { - return &Lldp_SystemNameAny{ +// SystemName returns from LldpPathAny the path struct for its child "system-name". +func (n *LldpPathAny) SystemName() *Lldp_SystemNamePathAny { + return &Lldp_SystemNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "system-name"}, + []string{"config", "system-name"}, map[string]interface{}{}, n, ), } } -// Lldp_Counters represents the /openconfig-lldp/lldp/state/counters YANG schema element. -type Lldp_Counters struct { +// Lldp_CountersPath represents the /openconfig-lldp/lldp/state/counters YANG schema element. +type Lldp_CountersPath struct { *ygot.NodePath } -// Lldp_CountersAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters YANG schema element. -type Lldp_CountersAny struct { +// Lldp_CountersPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters YANG schema element. +type Lldp_CountersPathAny struct { *ygot.NodePath } -// Lldp_Counters_EntriesAgedOut represents the /openconfig-lldp/lldp/state/counters/entries-aged-out YANG schema element. -type Lldp_Counters_EntriesAgedOut struct { +// Lldp_Counters_EntriesAgedOutPath represents the /openconfig-lldp/lldp/state/counters/entries-aged-out YANG schema element. +type Lldp_Counters_EntriesAgedOutPath struct { *ygot.NodePath } -// Lldp_Counters_EntriesAgedOutAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/entries-aged-out YANG schema element. -type Lldp_Counters_EntriesAgedOutAny struct { +// Lldp_Counters_EntriesAgedOutPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/entries-aged-out YANG schema element. +type Lldp_Counters_EntriesAgedOutPathAny struct { *ygot.NodePath } -// Lldp_Counters_FrameDiscard represents the /openconfig-lldp/lldp/state/counters/frame-discard YANG schema element. -type Lldp_Counters_FrameDiscard struct { +// Lldp_Counters_FrameDiscardPath represents the /openconfig-lldp/lldp/state/counters/frame-discard YANG schema element. +type Lldp_Counters_FrameDiscardPath struct { *ygot.NodePath } -// Lldp_Counters_FrameDiscardAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-discard YANG schema element. -type Lldp_Counters_FrameDiscardAny struct { +// Lldp_Counters_FrameDiscardPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-discard YANG schema element. +type Lldp_Counters_FrameDiscardPathAny struct { *ygot.NodePath } -// Lldp_Counters_FrameErrorIn represents the /openconfig-lldp/lldp/state/counters/frame-error-in YANG schema element. -type Lldp_Counters_FrameErrorIn struct { +// Lldp_Counters_FrameErrorInPath represents the /openconfig-lldp/lldp/state/counters/frame-error-in YANG schema element. +type Lldp_Counters_FrameErrorInPath struct { *ygot.NodePath } -// Lldp_Counters_FrameErrorInAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-error-in YANG schema element. -type Lldp_Counters_FrameErrorInAny struct { +// Lldp_Counters_FrameErrorInPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-error-in YANG schema element. +type Lldp_Counters_FrameErrorInPathAny struct { *ygot.NodePath } -// Lldp_Counters_FrameIn represents the /openconfig-lldp/lldp/state/counters/frame-in YANG schema element. -type Lldp_Counters_FrameIn struct { +// Lldp_Counters_FrameInPath represents the /openconfig-lldp/lldp/state/counters/frame-in YANG schema element. +type Lldp_Counters_FrameInPath struct { *ygot.NodePath } -// Lldp_Counters_FrameInAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-in YANG schema element. -type Lldp_Counters_FrameInAny struct { +// Lldp_Counters_FrameInPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-in YANG schema element. +type Lldp_Counters_FrameInPathAny struct { *ygot.NodePath } -// Lldp_Counters_FrameOut represents the /openconfig-lldp/lldp/state/counters/frame-out YANG schema element. -type Lldp_Counters_FrameOut struct { +// Lldp_Counters_FrameOutPath represents the /openconfig-lldp/lldp/state/counters/frame-out YANG schema element. +type Lldp_Counters_FrameOutPath struct { *ygot.NodePath } -// Lldp_Counters_FrameOutAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-out YANG schema element. -type Lldp_Counters_FrameOutAny struct { +// Lldp_Counters_FrameOutPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/frame-out YANG schema element. +type Lldp_Counters_FrameOutPathAny struct { *ygot.NodePath } -// Lldp_Counters_LastClear represents the /openconfig-lldp/lldp/state/counters/last-clear YANG schema element. -type Lldp_Counters_LastClear struct { +// Lldp_Counters_LastClearPath represents the /openconfig-lldp/lldp/state/counters/last-clear YANG schema element. +type Lldp_Counters_LastClearPath struct { *ygot.NodePath } -// Lldp_Counters_LastClearAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/last-clear YANG schema element. -type Lldp_Counters_LastClearAny struct { +// Lldp_Counters_LastClearPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/last-clear YANG schema element. +type Lldp_Counters_LastClearPathAny struct { *ygot.NodePath } -// Lldp_Counters_TlvAccepted represents the /openconfig-lldp/lldp/state/counters/tlv-accepted YANG schema element. -type Lldp_Counters_TlvAccepted struct { +// Lldp_Counters_TlvAcceptedPath represents the /openconfig-lldp/lldp/state/counters/tlv-accepted YANG schema element. +type Lldp_Counters_TlvAcceptedPath struct { *ygot.NodePath } -// Lldp_Counters_TlvAcceptedAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-accepted YANG schema element. -type Lldp_Counters_TlvAcceptedAny struct { +// Lldp_Counters_TlvAcceptedPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-accepted YANG schema element. +type Lldp_Counters_TlvAcceptedPathAny struct { *ygot.NodePath } -// Lldp_Counters_TlvDiscard represents the /openconfig-lldp/lldp/state/counters/tlv-discard YANG schema element. -type Lldp_Counters_TlvDiscard struct { +// Lldp_Counters_TlvDiscardPath represents the /openconfig-lldp/lldp/state/counters/tlv-discard YANG schema element. +type Lldp_Counters_TlvDiscardPath struct { *ygot.NodePath } -// Lldp_Counters_TlvDiscardAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-discard YANG schema element. -type Lldp_Counters_TlvDiscardAny struct { +// Lldp_Counters_TlvDiscardPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-discard YANG schema element. +type Lldp_Counters_TlvDiscardPathAny struct { *ygot.NodePath } -// Lldp_Counters_TlvUnknown represents the /openconfig-lldp/lldp/state/counters/tlv-unknown YANG schema element. -type Lldp_Counters_TlvUnknown struct { +// Lldp_Counters_TlvUnknownPath represents the /openconfig-lldp/lldp/state/counters/tlv-unknown YANG schema element. +type Lldp_Counters_TlvUnknownPath struct { *ygot.NodePath } -// Lldp_Counters_TlvUnknownAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-unknown YANG schema element. -type Lldp_Counters_TlvUnknownAny struct { +// Lldp_Counters_TlvUnknownPathAny represents the wildcard version of the /openconfig-lldp/lldp/state/counters/tlv-unknown YANG schema element. +type Lldp_Counters_TlvUnknownPathAny struct { *ygot.NodePath } -// EntriesAgedOut returns from Lldp_Counters the path struct for its child "entries-aged-out". -func (n *Lldp_Counters) EntriesAgedOut() *Lldp_Counters_EntriesAgedOut { - return &Lldp_Counters_EntriesAgedOut{ +// EntriesAgedOut returns from Lldp_CountersPath the path struct for its child "entries-aged-out". +func (n *Lldp_CountersPath) EntriesAgedOut() *Lldp_Counters_EntriesAgedOutPath { + return &Lldp_Counters_EntriesAgedOutPath{ NodePath: ygot.NewNodePath( []string{"entries-aged-out"}, map[string]interface{}{}, @@ -55378,9 +55592,9 @@ func (n *Lldp_Counters) EntriesAgedOut() *Lldp_Counters_EntriesAgedOut { } } -// EntriesAgedOut returns from Lldp_CountersAny the path struct for its child "entries-aged-out". -func (n *Lldp_CountersAny) EntriesAgedOut() *Lldp_Counters_EntriesAgedOutAny { - return &Lldp_Counters_EntriesAgedOutAny{ +// EntriesAgedOut returns from Lldp_CountersPathAny the path struct for its child "entries-aged-out". +func (n *Lldp_CountersPathAny) EntriesAgedOut() *Lldp_Counters_EntriesAgedOutPathAny { + return &Lldp_Counters_EntriesAgedOutPathAny{ NodePath: ygot.NewNodePath( []string{"entries-aged-out"}, map[string]interface{}{}, @@ -55389,9 +55603,9 @@ func (n *Lldp_CountersAny) EntriesAgedOut() *Lldp_Counters_EntriesAgedOutAny { } } -// FrameDiscard returns from Lldp_Counters the path struct for its child "frame-discard". -func (n *Lldp_Counters) FrameDiscard() *Lldp_Counters_FrameDiscard { - return &Lldp_Counters_FrameDiscard{ +// FrameDiscard returns from Lldp_CountersPath the path struct for its child "frame-discard". +func (n *Lldp_CountersPath) FrameDiscard() *Lldp_Counters_FrameDiscardPath { + return &Lldp_Counters_FrameDiscardPath{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -55400,9 +55614,9 @@ func (n *Lldp_Counters) FrameDiscard() *Lldp_Counters_FrameDiscard { } } -// FrameDiscard returns from Lldp_CountersAny the path struct for its child "frame-discard". -func (n *Lldp_CountersAny) FrameDiscard() *Lldp_Counters_FrameDiscardAny { - return &Lldp_Counters_FrameDiscardAny{ +// FrameDiscard returns from Lldp_CountersPathAny the path struct for its child "frame-discard". +func (n *Lldp_CountersPathAny) FrameDiscard() *Lldp_Counters_FrameDiscardPathAny { + return &Lldp_Counters_FrameDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -55411,9 +55625,9 @@ func (n *Lldp_CountersAny) FrameDiscard() *Lldp_Counters_FrameDiscardAny { } } -// FrameErrorIn returns from Lldp_Counters the path struct for its child "frame-error-in". -func (n *Lldp_Counters) FrameErrorIn() *Lldp_Counters_FrameErrorIn { - return &Lldp_Counters_FrameErrorIn{ +// FrameErrorIn returns from Lldp_CountersPath the path struct for its child "frame-error-in". +func (n *Lldp_CountersPath) FrameErrorIn() *Lldp_Counters_FrameErrorInPath { + return &Lldp_Counters_FrameErrorInPath{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -55422,9 +55636,9 @@ func (n *Lldp_Counters) FrameErrorIn() *Lldp_Counters_FrameErrorIn { } } -// FrameErrorIn returns from Lldp_CountersAny the path struct for its child "frame-error-in". -func (n *Lldp_CountersAny) FrameErrorIn() *Lldp_Counters_FrameErrorInAny { - return &Lldp_Counters_FrameErrorInAny{ +// FrameErrorIn returns from Lldp_CountersPathAny the path struct for its child "frame-error-in". +func (n *Lldp_CountersPathAny) FrameErrorIn() *Lldp_Counters_FrameErrorInPathAny { + return &Lldp_Counters_FrameErrorInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -55433,9 +55647,9 @@ func (n *Lldp_CountersAny) FrameErrorIn() *Lldp_Counters_FrameErrorInAny { } } -// FrameIn returns from Lldp_Counters the path struct for its child "frame-in". -func (n *Lldp_Counters) FrameIn() *Lldp_Counters_FrameIn { - return &Lldp_Counters_FrameIn{ +// FrameIn returns from Lldp_CountersPath the path struct for its child "frame-in". +func (n *Lldp_CountersPath) FrameIn() *Lldp_Counters_FrameInPath { + return &Lldp_Counters_FrameInPath{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -55444,9 +55658,9 @@ func (n *Lldp_Counters) FrameIn() *Lldp_Counters_FrameIn { } } -// FrameIn returns from Lldp_CountersAny the path struct for its child "frame-in". -func (n *Lldp_CountersAny) FrameIn() *Lldp_Counters_FrameInAny { - return &Lldp_Counters_FrameInAny{ +// FrameIn returns from Lldp_CountersPathAny the path struct for its child "frame-in". +func (n *Lldp_CountersPathAny) FrameIn() *Lldp_Counters_FrameInPathAny { + return &Lldp_Counters_FrameInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -55455,9 +55669,9 @@ func (n *Lldp_CountersAny) FrameIn() *Lldp_Counters_FrameInAny { } } -// FrameOut returns from Lldp_Counters the path struct for its child "frame-out". -func (n *Lldp_Counters) FrameOut() *Lldp_Counters_FrameOut { - return &Lldp_Counters_FrameOut{ +// FrameOut returns from Lldp_CountersPath the path struct for its child "frame-out". +func (n *Lldp_CountersPath) FrameOut() *Lldp_Counters_FrameOutPath { + return &Lldp_Counters_FrameOutPath{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -55466,9 +55680,9 @@ func (n *Lldp_Counters) FrameOut() *Lldp_Counters_FrameOut { } } -// FrameOut returns from Lldp_CountersAny the path struct for its child "frame-out". -func (n *Lldp_CountersAny) FrameOut() *Lldp_Counters_FrameOutAny { - return &Lldp_Counters_FrameOutAny{ +// FrameOut returns from Lldp_CountersPathAny the path struct for its child "frame-out". +func (n *Lldp_CountersPathAny) FrameOut() *Lldp_Counters_FrameOutPathAny { + return &Lldp_Counters_FrameOutPathAny{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -55477,9 +55691,9 @@ func (n *Lldp_CountersAny) FrameOut() *Lldp_Counters_FrameOutAny { } } -// LastClear returns from Lldp_Counters the path struct for its child "last-clear". -func (n *Lldp_Counters) LastClear() *Lldp_Counters_LastClear { - return &Lldp_Counters_LastClear{ +// LastClear returns from Lldp_CountersPath the path struct for its child "last-clear". +func (n *Lldp_CountersPath) LastClear() *Lldp_Counters_LastClearPath { + return &Lldp_Counters_LastClearPath{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -55488,9 +55702,9 @@ func (n *Lldp_Counters) LastClear() *Lldp_Counters_LastClear { } } -// LastClear returns from Lldp_CountersAny the path struct for its child "last-clear". -func (n *Lldp_CountersAny) LastClear() *Lldp_Counters_LastClearAny { - return &Lldp_Counters_LastClearAny{ +// LastClear returns from Lldp_CountersPathAny the path struct for its child "last-clear". +func (n *Lldp_CountersPathAny) LastClear() *Lldp_Counters_LastClearPathAny { + return &Lldp_Counters_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -55499,9 +55713,9 @@ func (n *Lldp_CountersAny) LastClear() *Lldp_Counters_LastClearAny { } } -// TlvAccepted returns from Lldp_Counters the path struct for its child "tlv-accepted". -func (n *Lldp_Counters) TlvAccepted() *Lldp_Counters_TlvAccepted { - return &Lldp_Counters_TlvAccepted{ +// TlvAccepted returns from Lldp_CountersPath the path struct for its child "tlv-accepted". +func (n *Lldp_CountersPath) TlvAccepted() *Lldp_Counters_TlvAcceptedPath { + return &Lldp_Counters_TlvAcceptedPath{ NodePath: ygot.NewNodePath( []string{"tlv-accepted"}, map[string]interface{}{}, @@ -55510,9 +55724,9 @@ func (n *Lldp_Counters) TlvAccepted() *Lldp_Counters_TlvAccepted { } } -// TlvAccepted returns from Lldp_CountersAny the path struct for its child "tlv-accepted". -func (n *Lldp_CountersAny) TlvAccepted() *Lldp_Counters_TlvAcceptedAny { - return &Lldp_Counters_TlvAcceptedAny{ +// TlvAccepted returns from Lldp_CountersPathAny the path struct for its child "tlv-accepted". +func (n *Lldp_CountersPathAny) TlvAccepted() *Lldp_Counters_TlvAcceptedPathAny { + return &Lldp_Counters_TlvAcceptedPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-accepted"}, map[string]interface{}{}, @@ -55521,9 +55735,9 @@ func (n *Lldp_CountersAny) TlvAccepted() *Lldp_Counters_TlvAcceptedAny { } } -// TlvDiscard returns from Lldp_Counters the path struct for its child "tlv-discard". -func (n *Lldp_Counters) TlvDiscard() *Lldp_Counters_TlvDiscard { - return &Lldp_Counters_TlvDiscard{ +// TlvDiscard returns from Lldp_CountersPath the path struct for its child "tlv-discard". +func (n *Lldp_CountersPath) TlvDiscard() *Lldp_Counters_TlvDiscardPath { + return &Lldp_Counters_TlvDiscardPath{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -55532,9 +55746,9 @@ func (n *Lldp_Counters) TlvDiscard() *Lldp_Counters_TlvDiscard { } } -// TlvDiscard returns from Lldp_CountersAny the path struct for its child "tlv-discard". -func (n *Lldp_CountersAny) TlvDiscard() *Lldp_Counters_TlvDiscardAny { - return &Lldp_Counters_TlvDiscardAny{ +// TlvDiscard returns from Lldp_CountersPathAny the path struct for its child "tlv-discard". +func (n *Lldp_CountersPathAny) TlvDiscard() *Lldp_Counters_TlvDiscardPathAny { + return &Lldp_Counters_TlvDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -55543,9 +55757,9 @@ func (n *Lldp_CountersAny) TlvDiscard() *Lldp_Counters_TlvDiscardAny { } } -// TlvUnknown returns from Lldp_Counters the path struct for its child "tlv-unknown". -func (n *Lldp_Counters) TlvUnknown() *Lldp_Counters_TlvUnknown { - return &Lldp_Counters_TlvUnknown{ +// TlvUnknown returns from Lldp_CountersPath the path struct for its child "tlv-unknown". +func (n *Lldp_CountersPath) TlvUnknown() *Lldp_Counters_TlvUnknownPath { + return &Lldp_Counters_TlvUnknownPath{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -55554,9 +55768,9 @@ func (n *Lldp_Counters) TlvUnknown() *Lldp_Counters_TlvUnknown { } } -// TlvUnknown returns from Lldp_CountersAny the path struct for its child "tlv-unknown". -func (n *Lldp_CountersAny) TlvUnknown() *Lldp_Counters_TlvUnknownAny { - return &Lldp_Counters_TlvUnknownAny{ +// TlvUnknown returns from Lldp_CountersPathAny the path struct for its child "tlv-unknown". +func (n *Lldp_CountersPathAny) TlvUnknown() *Lldp_Counters_TlvUnknownPathAny { + return &Lldp_Counters_TlvUnknownPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -55565,39 +55779,39 @@ func (n *Lldp_CountersAny) TlvUnknown() *Lldp_Counters_TlvUnknownAny { } } -// Lldp_Interface represents the /openconfig-lldp/lldp/interfaces/interface YANG schema element. -type Lldp_Interface struct { +// Lldp_InterfacePath represents the /openconfig-lldp/lldp/interfaces/interface YANG schema element. +type Lldp_InterfacePath struct { *ygot.NodePath } -// Lldp_InterfaceAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface YANG schema element. -type Lldp_InterfaceAny struct { +// Lldp_InterfacePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface YANG schema element. +type Lldp_InterfacePathAny struct { *ygot.NodePath } -// Lldp_Interface_Enabled represents the /openconfig-lldp/lldp/interfaces/interface/state/enabled YANG schema element. -type Lldp_Interface_Enabled struct { +// Lldp_Interface_EnabledPath represents the /openconfig-lldp/lldp/interfaces/interface/config/enabled YANG schema element. +type Lldp_Interface_EnabledPath struct { *ygot.NodePath } -// Lldp_Interface_EnabledAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/enabled YANG schema element. -type Lldp_Interface_EnabledAny struct { +// Lldp_Interface_EnabledPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/config/enabled YANG schema element. +type Lldp_Interface_EnabledPathAny struct { *ygot.NodePath } -// Lldp_Interface_Name represents the /openconfig-lldp/lldp/interfaces/interface/state/name YANG schema element. -type Lldp_Interface_Name struct { +// Lldp_Interface_NamePath represents the /openconfig-lldp/lldp/interfaces/interface/config/name YANG schema element. +type Lldp_Interface_NamePath struct { *ygot.NodePath } -// Lldp_Interface_NameAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/name YANG schema element. -type Lldp_Interface_NameAny struct { +// Lldp_Interface_NamePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/config/name YANG schema element. +type Lldp_Interface_NamePathAny struct { *ygot.NodePath } -// Counters returns from Lldp_Interface the path struct for its child "counters". -func (n *Lldp_Interface) Counters() *Lldp_Interface_Counters { - return &Lldp_Interface_Counters{ +// Counters returns from Lldp_InterfacePath the path struct for its child "counters". +func (n *Lldp_InterfacePath) Counters() *Lldp_Interface_CountersPath { + return &Lldp_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -55606,9 +55820,9 @@ func (n *Lldp_Interface) Counters() *Lldp_Interface_Counters { } } -// Counters returns from Lldp_InterfaceAny the path struct for its child "counters". -func (n *Lldp_InterfaceAny) Counters() *Lldp_Interface_CountersAny { - return &Lldp_Interface_CountersAny{ +// Counters returns from Lldp_InterfacePathAny the path struct for its child "counters". +func (n *Lldp_InterfacePathAny) Counters() *Lldp_Interface_CountersPathAny { + return &Lldp_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -55617,53 +55831,53 @@ func (n *Lldp_InterfaceAny) Counters() *Lldp_Interface_CountersAny { } } -// Enabled returns from Lldp_Interface the path struct for its child "enabled". -func (n *Lldp_Interface) Enabled() *Lldp_Interface_Enabled { - return &Lldp_Interface_Enabled{ +// Enabled returns from Lldp_InterfacePath the path struct for its child "enabled". +func (n *Lldp_InterfacePath) Enabled() *Lldp_Interface_EnabledPath { + return &Lldp_Interface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Lldp_InterfaceAny the path struct for its child "enabled". -func (n *Lldp_InterfaceAny) Enabled() *Lldp_Interface_EnabledAny { - return &Lldp_Interface_EnabledAny{ +// Enabled returns from Lldp_InterfacePathAny the path struct for its child "enabled". +func (n *Lldp_InterfacePathAny) Enabled() *Lldp_Interface_EnabledPathAny { + return &Lldp_Interface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Name returns from Lldp_Interface the path struct for its child "name". -func (n *Lldp_Interface) Name() *Lldp_Interface_Name { - return &Lldp_Interface_Name{ +// Name returns from Lldp_InterfacePath the path struct for its child "name". +func (n *Lldp_InterfacePath) Name() *Lldp_Interface_NamePath { + return &Lldp_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Lldp_InterfaceAny the path struct for its child "name". -func (n *Lldp_InterfaceAny) Name() *Lldp_Interface_NameAny { - return &Lldp_Interface_NameAny{ +// Name returns from Lldp_InterfacePathAny the path struct for its child "name". +func (n *Lldp_InterfacePathAny) Name() *Lldp_Interface_NamePathAny { + return &Lldp_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from Lldp_Interface the path struct for its child "neighbor". -func (n *Lldp_Interface) NeighborAny() *Lldp_Interface_NeighborAny { - return &Lldp_Interface_NeighborAny{ +// NeighborAny returns from Lldp_InterfacePath the path struct for its child "neighbor". +func (n *Lldp_InterfacePath) NeighborAny() *Lldp_Interface_NeighborPathAny { + return &Lldp_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": "*"}, @@ -55672,9 +55886,9 @@ func (n *Lldp_Interface) NeighborAny() *Lldp_Interface_NeighborAny { } } -// NeighborAny returns from Lldp_InterfaceAny the path struct for its child "neighbor". -func (n *Lldp_InterfaceAny) NeighborAny() *Lldp_Interface_NeighborAny { - return &Lldp_Interface_NeighborAny{ +// NeighborAny returns from Lldp_InterfacePathAny the path struct for its child "neighbor". +func (n *Lldp_InterfacePathAny) NeighborAny() *Lldp_Interface_NeighborPathAny { + return &Lldp_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": "*"}, @@ -55683,9 +55897,9 @@ func (n *Lldp_InterfaceAny) NeighborAny() *Lldp_Interface_NeighborAny { } } -// Neighbor returns from Lldp_Interface the path struct for its child "neighbor". -func (n *Lldp_Interface) Neighbor(Id string) *Lldp_Interface_Neighbor { - return &Lldp_Interface_Neighbor{ +// Neighbor returns from Lldp_InterfacePath the path struct for its child "neighbor". +func (n *Lldp_InterfacePath) Neighbor(Id string) *Lldp_Interface_NeighborPath { + return &Lldp_Interface_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": Id}, @@ -55694,9 +55908,9 @@ func (n *Lldp_Interface) Neighbor(Id string) *Lldp_Interface_Neighbor { } } -// Neighbor returns from Lldp_InterfaceAny the path struct for its child "neighbor". -func (n *Lldp_InterfaceAny) Neighbor(Id string) *Lldp_Interface_NeighborAny { - return &Lldp_Interface_NeighborAny{ +// Neighbor returns from Lldp_InterfacePathAny the path struct for its child "neighbor". +func (n *Lldp_InterfacePathAny) Neighbor(Id string) *Lldp_Interface_NeighborPathAny { + return &Lldp_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": Id}, @@ -55705,99 +55919,99 @@ func (n *Lldp_InterfaceAny) Neighbor(Id string) *Lldp_Interface_NeighborAny { } } -// Lldp_Interface_Counters represents the /openconfig-lldp/lldp/interfaces/interface/state/counters YANG schema element. -type Lldp_Interface_Counters struct { +// Lldp_Interface_CountersPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters YANG schema element. +type Lldp_Interface_CountersPath struct { *ygot.NodePath } -// Lldp_Interface_CountersAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters YANG schema element. -type Lldp_Interface_CountersAny struct { +// Lldp_Interface_CountersPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters YANG schema element. +type Lldp_Interface_CountersPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameDiscard represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-discard YANG schema element. -type Lldp_Interface_Counters_FrameDiscard struct { +// Lldp_Interface_Counters_FrameDiscardPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-discard YANG schema element. +type Lldp_Interface_Counters_FrameDiscardPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameDiscardAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-discard YANG schema element. -type Lldp_Interface_Counters_FrameDiscardAny struct { +// Lldp_Interface_Counters_FrameDiscardPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-discard YANG schema element. +type Lldp_Interface_Counters_FrameDiscardPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameErrorIn represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-in YANG schema element. -type Lldp_Interface_Counters_FrameErrorIn struct { +// Lldp_Interface_Counters_FrameErrorInPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-in YANG schema element. +type Lldp_Interface_Counters_FrameErrorInPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameErrorInAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-in YANG schema element. -type Lldp_Interface_Counters_FrameErrorInAny struct { +// Lldp_Interface_Counters_FrameErrorInPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-in YANG schema element. +type Lldp_Interface_Counters_FrameErrorInPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameErrorOut represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-out YANG schema element. -type Lldp_Interface_Counters_FrameErrorOut struct { +// Lldp_Interface_Counters_FrameErrorOutPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-out YANG schema element. +type Lldp_Interface_Counters_FrameErrorOutPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameErrorOutAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-out YANG schema element. -type Lldp_Interface_Counters_FrameErrorOutAny struct { +// Lldp_Interface_Counters_FrameErrorOutPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-error-out YANG schema element. +type Lldp_Interface_Counters_FrameErrorOutPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameIn represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-in YANG schema element. -type Lldp_Interface_Counters_FrameIn struct { +// Lldp_Interface_Counters_FrameInPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-in YANG schema element. +type Lldp_Interface_Counters_FrameInPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameInAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-in YANG schema element. -type Lldp_Interface_Counters_FrameInAny struct { +// Lldp_Interface_Counters_FrameInPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-in YANG schema element. +type Lldp_Interface_Counters_FrameInPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameOut represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-out YANG schema element. -type Lldp_Interface_Counters_FrameOut struct { +// Lldp_Interface_Counters_FrameOutPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-out YANG schema element. +type Lldp_Interface_Counters_FrameOutPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_FrameOutAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-out YANG schema element. -type Lldp_Interface_Counters_FrameOutAny struct { +// Lldp_Interface_Counters_FrameOutPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/frame-out YANG schema element. +type Lldp_Interface_Counters_FrameOutPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_LastClear represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/last-clear YANG schema element. -type Lldp_Interface_Counters_LastClear struct { +// Lldp_Interface_Counters_LastClearPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/last-clear YANG schema element. +type Lldp_Interface_Counters_LastClearPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_LastClearAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/last-clear YANG schema element. -type Lldp_Interface_Counters_LastClearAny struct { +// Lldp_Interface_Counters_LastClearPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/last-clear YANG schema element. +type Lldp_Interface_Counters_LastClearPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_TlvDiscard represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-discard YANG schema element. -type Lldp_Interface_Counters_TlvDiscard struct { +// Lldp_Interface_Counters_TlvDiscardPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-discard YANG schema element. +type Lldp_Interface_Counters_TlvDiscardPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_TlvDiscardAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-discard YANG schema element. -type Lldp_Interface_Counters_TlvDiscardAny struct { +// Lldp_Interface_Counters_TlvDiscardPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-discard YANG schema element. +type Lldp_Interface_Counters_TlvDiscardPathAny struct { *ygot.NodePath } -// Lldp_Interface_Counters_TlvUnknown represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-unknown YANG schema element. -type Lldp_Interface_Counters_TlvUnknown struct { +// Lldp_Interface_Counters_TlvUnknownPath represents the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-unknown YANG schema element. +type Lldp_Interface_Counters_TlvUnknownPath struct { *ygot.NodePath } -// Lldp_Interface_Counters_TlvUnknownAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-unknown YANG schema element. -type Lldp_Interface_Counters_TlvUnknownAny struct { +// Lldp_Interface_Counters_TlvUnknownPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/state/counters/tlv-unknown YANG schema element. +type Lldp_Interface_Counters_TlvUnknownPathAny struct { *ygot.NodePath } -// FrameDiscard returns from Lldp_Interface_Counters the path struct for its child "frame-discard". -func (n *Lldp_Interface_Counters) FrameDiscard() *Lldp_Interface_Counters_FrameDiscard { - return &Lldp_Interface_Counters_FrameDiscard{ +// FrameDiscard returns from Lldp_Interface_CountersPath the path struct for its child "frame-discard". +func (n *Lldp_Interface_CountersPath) FrameDiscard() *Lldp_Interface_Counters_FrameDiscardPath { + return &Lldp_Interface_Counters_FrameDiscardPath{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -55806,9 +56020,9 @@ func (n *Lldp_Interface_Counters) FrameDiscard() *Lldp_Interface_Counters_FrameD } } -// FrameDiscard returns from Lldp_Interface_CountersAny the path struct for its child "frame-discard". -func (n *Lldp_Interface_CountersAny) FrameDiscard() *Lldp_Interface_Counters_FrameDiscardAny { - return &Lldp_Interface_Counters_FrameDiscardAny{ +// FrameDiscard returns from Lldp_Interface_CountersPathAny the path struct for its child "frame-discard". +func (n *Lldp_Interface_CountersPathAny) FrameDiscard() *Lldp_Interface_Counters_FrameDiscardPathAny { + return &Lldp_Interface_Counters_FrameDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -55817,9 +56031,9 @@ func (n *Lldp_Interface_CountersAny) FrameDiscard() *Lldp_Interface_Counters_Fra } } -// FrameErrorIn returns from Lldp_Interface_Counters the path struct for its child "frame-error-in". -func (n *Lldp_Interface_Counters) FrameErrorIn() *Lldp_Interface_Counters_FrameErrorIn { - return &Lldp_Interface_Counters_FrameErrorIn{ +// FrameErrorIn returns from Lldp_Interface_CountersPath the path struct for its child "frame-error-in". +func (n *Lldp_Interface_CountersPath) FrameErrorIn() *Lldp_Interface_Counters_FrameErrorInPath { + return &Lldp_Interface_Counters_FrameErrorInPath{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -55828,9 +56042,9 @@ func (n *Lldp_Interface_Counters) FrameErrorIn() *Lldp_Interface_Counters_FrameE } } -// FrameErrorIn returns from Lldp_Interface_CountersAny the path struct for its child "frame-error-in". -func (n *Lldp_Interface_CountersAny) FrameErrorIn() *Lldp_Interface_Counters_FrameErrorInAny { - return &Lldp_Interface_Counters_FrameErrorInAny{ +// FrameErrorIn returns from Lldp_Interface_CountersPathAny the path struct for its child "frame-error-in". +func (n *Lldp_Interface_CountersPathAny) FrameErrorIn() *Lldp_Interface_Counters_FrameErrorInPathAny { + return &Lldp_Interface_Counters_FrameErrorInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -55839,9 +56053,9 @@ func (n *Lldp_Interface_CountersAny) FrameErrorIn() *Lldp_Interface_Counters_Fra } } -// FrameErrorOut returns from Lldp_Interface_Counters the path struct for its child "frame-error-out". -func (n *Lldp_Interface_Counters) FrameErrorOut() *Lldp_Interface_Counters_FrameErrorOut { - return &Lldp_Interface_Counters_FrameErrorOut{ +// FrameErrorOut returns from Lldp_Interface_CountersPath the path struct for its child "frame-error-out". +func (n *Lldp_Interface_CountersPath) FrameErrorOut() *Lldp_Interface_Counters_FrameErrorOutPath { + return &Lldp_Interface_Counters_FrameErrorOutPath{ NodePath: ygot.NewNodePath( []string{"frame-error-out"}, map[string]interface{}{}, @@ -55850,9 +56064,9 @@ func (n *Lldp_Interface_Counters) FrameErrorOut() *Lldp_Interface_Counters_Frame } } -// FrameErrorOut returns from Lldp_Interface_CountersAny the path struct for its child "frame-error-out". -func (n *Lldp_Interface_CountersAny) FrameErrorOut() *Lldp_Interface_Counters_FrameErrorOutAny { - return &Lldp_Interface_Counters_FrameErrorOutAny{ +// FrameErrorOut returns from Lldp_Interface_CountersPathAny the path struct for its child "frame-error-out". +func (n *Lldp_Interface_CountersPathAny) FrameErrorOut() *Lldp_Interface_Counters_FrameErrorOutPathAny { + return &Lldp_Interface_Counters_FrameErrorOutPathAny{ NodePath: ygot.NewNodePath( []string{"frame-error-out"}, map[string]interface{}{}, @@ -55861,9 +56075,9 @@ func (n *Lldp_Interface_CountersAny) FrameErrorOut() *Lldp_Interface_Counters_Fr } } -// FrameIn returns from Lldp_Interface_Counters the path struct for its child "frame-in". -func (n *Lldp_Interface_Counters) FrameIn() *Lldp_Interface_Counters_FrameIn { - return &Lldp_Interface_Counters_FrameIn{ +// FrameIn returns from Lldp_Interface_CountersPath the path struct for its child "frame-in". +func (n *Lldp_Interface_CountersPath) FrameIn() *Lldp_Interface_Counters_FrameInPath { + return &Lldp_Interface_Counters_FrameInPath{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -55872,9 +56086,9 @@ func (n *Lldp_Interface_Counters) FrameIn() *Lldp_Interface_Counters_FrameIn { } } -// FrameIn returns from Lldp_Interface_CountersAny the path struct for its child "frame-in". -func (n *Lldp_Interface_CountersAny) FrameIn() *Lldp_Interface_Counters_FrameInAny { - return &Lldp_Interface_Counters_FrameInAny{ +// FrameIn returns from Lldp_Interface_CountersPathAny the path struct for its child "frame-in". +func (n *Lldp_Interface_CountersPathAny) FrameIn() *Lldp_Interface_Counters_FrameInPathAny { + return &Lldp_Interface_Counters_FrameInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -55883,9 +56097,9 @@ func (n *Lldp_Interface_CountersAny) FrameIn() *Lldp_Interface_Counters_FrameInA } } -// FrameOut returns from Lldp_Interface_Counters the path struct for its child "frame-out". -func (n *Lldp_Interface_Counters) FrameOut() *Lldp_Interface_Counters_FrameOut { - return &Lldp_Interface_Counters_FrameOut{ +// FrameOut returns from Lldp_Interface_CountersPath the path struct for its child "frame-out". +func (n *Lldp_Interface_CountersPath) FrameOut() *Lldp_Interface_Counters_FrameOutPath { + return &Lldp_Interface_Counters_FrameOutPath{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -55894,9 +56108,9 @@ func (n *Lldp_Interface_Counters) FrameOut() *Lldp_Interface_Counters_FrameOut { } } -// FrameOut returns from Lldp_Interface_CountersAny the path struct for its child "frame-out". -func (n *Lldp_Interface_CountersAny) FrameOut() *Lldp_Interface_Counters_FrameOutAny { - return &Lldp_Interface_Counters_FrameOutAny{ +// FrameOut returns from Lldp_Interface_CountersPathAny the path struct for its child "frame-out". +func (n *Lldp_Interface_CountersPathAny) FrameOut() *Lldp_Interface_Counters_FrameOutPathAny { + return &Lldp_Interface_Counters_FrameOutPathAny{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -55905,9 +56119,9 @@ func (n *Lldp_Interface_CountersAny) FrameOut() *Lldp_Interface_Counters_FrameOu } } -// LastClear returns from Lldp_Interface_Counters the path struct for its child "last-clear". -func (n *Lldp_Interface_Counters) LastClear() *Lldp_Interface_Counters_LastClear { - return &Lldp_Interface_Counters_LastClear{ +// LastClear returns from Lldp_Interface_CountersPath the path struct for its child "last-clear". +func (n *Lldp_Interface_CountersPath) LastClear() *Lldp_Interface_Counters_LastClearPath { + return &Lldp_Interface_Counters_LastClearPath{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -55916,9 +56130,9 @@ func (n *Lldp_Interface_Counters) LastClear() *Lldp_Interface_Counters_LastClear } } -// LastClear returns from Lldp_Interface_CountersAny the path struct for its child "last-clear". -func (n *Lldp_Interface_CountersAny) LastClear() *Lldp_Interface_Counters_LastClearAny { - return &Lldp_Interface_Counters_LastClearAny{ +// LastClear returns from Lldp_Interface_CountersPathAny the path struct for its child "last-clear". +func (n *Lldp_Interface_CountersPathAny) LastClear() *Lldp_Interface_Counters_LastClearPathAny { + return &Lldp_Interface_Counters_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -55927,9 +56141,9 @@ func (n *Lldp_Interface_CountersAny) LastClear() *Lldp_Interface_Counters_LastCl } } -// TlvDiscard returns from Lldp_Interface_Counters the path struct for its child "tlv-discard". -func (n *Lldp_Interface_Counters) TlvDiscard() *Lldp_Interface_Counters_TlvDiscard { - return &Lldp_Interface_Counters_TlvDiscard{ +// TlvDiscard returns from Lldp_Interface_CountersPath the path struct for its child "tlv-discard". +func (n *Lldp_Interface_CountersPath) TlvDiscard() *Lldp_Interface_Counters_TlvDiscardPath { + return &Lldp_Interface_Counters_TlvDiscardPath{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -55938,9 +56152,9 @@ func (n *Lldp_Interface_Counters) TlvDiscard() *Lldp_Interface_Counters_TlvDisca } } -// TlvDiscard returns from Lldp_Interface_CountersAny the path struct for its child "tlv-discard". -func (n *Lldp_Interface_CountersAny) TlvDiscard() *Lldp_Interface_Counters_TlvDiscardAny { - return &Lldp_Interface_Counters_TlvDiscardAny{ +// TlvDiscard returns from Lldp_Interface_CountersPathAny the path struct for its child "tlv-discard". +func (n *Lldp_Interface_CountersPathAny) TlvDiscard() *Lldp_Interface_Counters_TlvDiscardPathAny { + return &Lldp_Interface_Counters_TlvDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -55949,9 +56163,9 @@ func (n *Lldp_Interface_CountersAny) TlvDiscard() *Lldp_Interface_Counters_TlvDi } } -// TlvUnknown returns from Lldp_Interface_Counters the path struct for its child "tlv-unknown". -func (n *Lldp_Interface_Counters) TlvUnknown() *Lldp_Interface_Counters_TlvUnknown { - return &Lldp_Interface_Counters_TlvUnknown{ +// TlvUnknown returns from Lldp_Interface_CountersPath the path struct for its child "tlv-unknown". +func (n *Lldp_Interface_CountersPath) TlvUnknown() *Lldp_Interface_Counters_TlvUnknownPath { + return &Lldp_Interface_Counters_TlvUnknownPath{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -55960,9 +56174,9 @@ func (n *Lldp_Interface_Counters) TlvUnknown() *Lldp_Interface_Counters_TlvUnkno } } -// TlvUnknown returns from Lldp_Interface_CountersAny the path struct for its child "tlv-unknown". -func (n *Lldp_Interface_CountersAny) TlvUnknown() *Lldp_Interface_Counters_TlvUnknownAny { - return &Lldp_Interface_Counters_TlvUnknownAny{ +// TlvUnknown returns from Lldp_Interface_CountersPathAny the path struct for its child "tlv-unknown". +func (n *Lldp_Interface_CountersPathAny) TlvUnknown() *Lldp_Interface_Counters_TlvUnknownPathAny { + return &Lldp_Interface_Counters_TlvUnknownPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -55971,149 +56185,149 @@ func (n *Lldp_Interface_CountersAny) TlvUnknown() *Lldp_Interface_Counters_TlvUn } } -// Lldp_Interface_Neighbor represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor YANG schema element. -type Lldp_Interface_Neighbor struct { +// Lldp_Interface_NeighborPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor YANG schema element. +type Lldp_Interface_NeighborPath struct { *ygot.NodePath } -// Lldp_Interface_NeighborAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor YANG schema element. -type Lldp_Interface_NeighborAny struct { +// Lldp_Interface_NeighborPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor YANG schema element. +type Lldp_Interface_NeighborPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Age represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/age YANG schema element. -type Lldp_Interface_Neighbor_Age struct { +// Lldp_Interface_Neighbor_AgePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/age YANG schema element. +type Lldp_Interface_Neighbor_AgePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_AgeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/age YANG schema element. -type Lldp_Interface_Neighbor_AgeAny struct { +// Lldp_Interface_Neighbor_AgePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/age YANG schema element. +type Lldp_Interface_Neighbor_AgePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ChassisId represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id YANG schema element. -type Lldp_Interface_Neighbor_ChassisId struct { +// Lldp_Interface_Neighbor_ChassisIdPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id YANG schema element. +type Lldp_Interface_Neighbor_ChassisIdPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ChassisIdAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id YANG schema element. -type Lldp_Interface_Neighbor_ChassisIdAny struct { +// Lldp_Interface_Neighbor_ChassisIdPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id YANG schema element. +type Lldp_Interface_Neighbor_ChassisIdPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ChassisIdType represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id-type YANG schema element. -type Lldp_Interface_Neighbor_ChassisIdType struct { +// Lldp_Interface_Neighbor_ChassisIdTypePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id-type YANG schema element. +type Lldp_Interface_Neighbor_ChassisIdTypePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ChassisIdTypeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id-type YANG schema element. -type Lldp_Interface_Neighbor_ChassisIdTypeAny struct { +// Lldp_Interface_Neighbor_ChassisIdTypePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id-type YANG schema element. +type Lldp_Interface_Neighbor_ChassisIdTypePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Id represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/id YANG schema element. -type Lldp_Interface_Neighbor_Id struct { +// Lldp_Interface_Neighbor_IdPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/id YANG schema element. +type Lldp_Interface_Neighbor_IdPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_IdAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/id YANG schema element. -type Lldp_Interface_Neighbor_IdAny struct { +// Lldp_Interface_Neighbor_IdPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/id YANG schema element. +type Lldp_Interface_Neighbor_IdPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_LastUpdate represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/last-update YANG schema element. -type Lldp_Interface_Neighbor_LastUpdate struct { +// Lldp_Interface_Neighbor_LastUpdatePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/last-update YANG schema element. +type Lldp_Interface_Neighbor_LastUpdatePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_LastUpdateAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/last-update YANG schema element. -type Lldp_Interface_Neighbor_LastUpdateAny struct { +// Lldp_Interface_Neighbor_LastUpdatePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/last-update YANG schema element. +type Lldp_Interface_Neighbor_LastUpdatePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ManagementAddress represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address YANG schema element. -type Lldp_Interface_Neighbor_ManagementAddress struct { +// Lldp_Interface_Neighbor_ManagementAddressPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address YANG schema element. +type Lldp_Interface_Neighbor_ManagementAddressPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ManagementAddressAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address YANG schema element. -type Lldp_Interface_Neighbor_ManagementAddressAny struct { +// Lldp_Interface_Neighbor_ManagementAddressPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address YANG schema element. +type Lldp_Interface_Neighbor_ManagementAddressPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ManagementAddressType represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address-type YANG schema element. -type Lldp_Interface_Neighbor_ManagementAddressType struct { +// Lldp_Interface_Neighbor_ManagementAddressTypePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address-type YANG schema element. +type Lldp_Interface_Neighbor_ManagementAddressTypePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_ManagementAddressTypeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address-type YANG schema element. -type Lldp_Interface_Neighbor_ManagementAddressTypeAny struct { +// Lldp_Interface_Neighbor_ManagementAddressTypePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/management-address-type YANG schema element. +type Lldp_Interface_Neighbor_ManagementAddressTypePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortDescription represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-description YANG schema element. -type Lldp_Interface_Neighbor_PortDescription struct { +// Lldp_Interface_Neighbor_PortDescriptionPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-description YANG schema element. +type Lldp_Interface_Neighbor_PortDescriptionPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortDescriptionAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-description YANG schema element. -type Lldp_Interface_Neighbor_PortDescriptionAny struct { +// Lldp_Interface_Neighbor_PortDescriptionPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-description YANG schema element. +type Lldp_Interface_Neighbor_PortDescriptionPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortId represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id YANG schema element. -type Lldp_Interface_Neighbor_PortId struct { +// Lldp_Interface_Neighbor_PortIdPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id YANG schema element. +type Lldp_Interface_Neighbor_PortIdPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortIdAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id YANG schema element. -type Lldp_Interface_Neighbor_PortIdAny struct { +// Lldp_Interface_Neighbor_PortIdPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id YANG schema element. +type Lldp_Interface_Neighbor_PortIdPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortIdType represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id-type YANG schema element. -type Lldp_Interface_Neighbor_PortIdType struct { +// Lldp_Interface_Neighbor_PortIdTypePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id-type YANG schema element. +type Lldp_Interface_Neighbor_PortIdTypePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_PortIdTypeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id-type YANG schema element. -type Lldp_Interface_Neighbor_PortIdTypeAny struct { +// Lldp_Interface_Neighbor_PortIdTypePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/port-id-type YANG schema element. +type Lldp_Interface_Neighbor_PortIdTypePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_SystemDescription represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-description YANG schema element. -type Lldp_Interface_Neighbor_SystemDescription struct { +// Lldp_Interface_Neighbor_SystemDescriptionPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-description YANG schema element. +type Lldp_Interface_Neighbor_SystemDescriptionPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_SystemDescriptionAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-description YANG schema element. -type Lldp_Interface_Neighbor_SystemDescriptionAny struct { +// Lldp_Interface_Neighbor_SystemDescriptionPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-description YANG schema element. +type Lldp_Interface_Neighbor_SystemDescriptionPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_SystemName represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-name YANG schema element. -type Lldp_Interface_Neighbor_SystemName struct { +// Lldp_Interface_Neighbor_SystemNamePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-name YANG schema element. +type Lldp_Interface_Neighbor_SystemNamePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_SystemNameAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-name YANG schema element. -type Lldp_Interface_Neighbor_SystemNameAny struct { +// Lldp_Interface_Neighbor_SystemNamePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/system-name YANG schema element. +type Lldp_Interface_Neighbor_SystemNamePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Ttl represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/ttl YANG schema element. -type Lldp_Interface_Neighbor_Ttl struct { +// Lldp_Interface_Neighbor_TtlPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/ttl YANG schema element. +type Lldp_Interface_Neighbor_TtlPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_TtlAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/ttl YANG schema element. -type Lldp_Interface_Neighbor_TtlAny struct { +// Lldp_Interface_Neighbor_TtlPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/state/ttl YANG schema element. +type Lldp_Interface_Neighbor_TtlPathAny struct { *ygot.NodePath } -// Age returns from Lldp_Interface_Neighbor the path struct for its child "age". -func (n *Lldp_Interface_Neighbor) Age() *Lldp_Interface_Neighbor_Age { - return &Lldp_Interface_Neighbor_Age{ +// Age returns from Lldp_Interface_NeighborPath the path struct for its child "age". +func (n *Lldp_Interface_NeighborPath) Age() *Lldp_Interface_Neighbor_AgePath { + return &Lldp_Interface_Neighbor_AgePath{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -56122,9 +56336,9 @@ func (n *Lldp_Interface_Neighbor) Age() *Lldp_Interface_Neighbor_Age { } } -// Age returns from Lldp_Interface_NeighborAny the path struct for its child "age". -func (n *Lldp_Interface_NeighborAny) Age() *Lldp_Interface_Neighbor_AgeAny { - return &Lldp_Interface_Neighbor_AgeAny{ +// Age returns from Lldp_Interface_NeighborPathAny the path struct for its child "age". +func (n *Lldp_Interface_NeighborPathAny) Age() *Lldp_Interface_Neighbor_AgePathAny { + return &Lldp_Interface_Neighbor_AgePathAny{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -56133,9 +56347,9 @@ func (n *Lldp_Interface_NeighborAny) Age() *Lldp_Interface_Neighbor_AgeAny { } } -// CapabilityAny returns from Lldp_Interface_Neighbor the path struct for its child "capability". -func (n *Lldp_Interface_Neighbor) CapabilityAny() *Lldp_Interface_Neighbor_CapabilityAny { - return &Lldp_Interface_Neighbor_CapabilityAny{ +// CapabilityAny returns from Lldp_Interface_NeighborPath the path struct for its child "capability". +func (n *Lldp_Interface_NeighborPath) CapabilityAny() *Lldp_Interface_Neighbor_CapabilityPathAny { + return &Lldp_Interface_Neighbor_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"capabilities", "capability"}, map[string]interface{}{"name": "*"}, @@ -56144,9 +56358,9 @@ func (n *Lldp_Interface_Neighbor) CapabilityAny() *Lldp_Interface_Neighbor_Capab } } -// CapabilityAny returns from Lldp_Interface_NeighborAny the path struct for its child "capability". -func (n *Lldp_Interface_NeighborAny) CapabilityAny() *Lldp_Interface_Neighbor_CapabilityAny { - return &Lldp_Interface_Neighbor_CapabilityAny{ +// CapabilityAny returns from Lldp_Interface_NeighborPathAny the path struct for its child "capability". +func (n *Lldp_Interface_NeighborPathAny) CapabilityAny() *Lldp_Interface_Neighbor_CapabilityPathAny { + return &Lldp_Interface_Neighbor_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"capabilities", "capability"}, map[string]interface{}{"name": "*"}, @@ -56155,9 +56369,9 @@ func (n *Lldp_Interface_NeighborAny) CapabilityAny() *Lldp_Interface_Neighbor_Ca } } -// Capability returns from Lldp_Interface_Neighbor the path struct for its child "capability". -func (n *Lldp_Interface_Neighbor) Capability(Name oc.E_OpenconfigLldpTypes_LLDP_SYSTEM_CAPABILITY) *Lldp_Interface_Neighbor_Capability { - return &Lldp_Interface_Neighbor_Capability{ +// Capability returns from Lldp_Interface_NeighborPath the path struct for its child "capability". +func (n *Lldp_Interface_NeighborPath) Capability(Name E_OpenconfigLldpTypes_LLDP_SYSTEM_CAPABILITY) *Lldp_Interface_Neighbor_CapabilityPath { + return &Lldp_Interface_Neighbor_CapabilityPath{ NodePath: ygot.NewNodePath( []string{"capabilities", "capability"}, map[string]interface{}{"name": Name}, @@ -56166,9 +56380,9 @@ func (n *Lldp_Interface_Neighbor) Capability(Name oc.E_OpenconfigLldpTypes_LLDP_ } } -// Capability returns from Lldp_Interface_NeighborAny the path struct for its child "capability". -func (n *Lldp_Interface_NeighborAny) Capability(Name oc.E_OpenconfigLldpTypes_LLDP_SYSTEM_CAPABILITY) *Lldp_Interface_Neighbor_CapabilityAny { - return &Lldp_Interface_Neighbor_CapabilityAny{ +// Capability returns from Lldp_Interface_NeighborPathAny the path struct for its child "capability". +func (n *Lldp_Interface_NeighborPathAny) Capability(Name E_OpenconfigLldpTypes_LLDP_SYSTEM_CAPABILITY) *Lldp_Interface_Neighbor_CapabilityPathAny { + return &Lldp_Interface_Neighbor_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"capabilities", "capability"}, map[string]interface{}{"name": Name}, @@ -56177,9 +56391,9 @@ func (n *Lldp_Interface_NeighborAny) Capability(Name oc.E_OpenconfigLldpTypes_LL } } -// ChassisId returns from Lldp_Interface_Neighbor the path struct for its child "chassis-id". -func (n *Lldp_Interface_Neighbor) ChassisId() *Lldp_Interface_Neighbor_ChassisId { - return &Lldp_Interface_Neighbor_ChassisId{ +// ChassisId returns from Lldp_Interface_NeighborPath the path struct for its child "chassis-id". +func (n *Lldp_Interface_NeighborPath) ChassisId() *Lldp_Interface_Neighbor_ChassisIdPath { + return &Lldp_Interface_Neighbor_ChassisIdPath{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id"}, map[string]interface{}{}, @@ -56188,9 +56402,9 @@ func (n *Lldp_Interface_Neighbor) ChassisId() *Lldp_Interface_Neighbor_ChassisId } } -// ChassisId returns from Lldp_Interface_NeighborAny the path struct for its child "chassis-id". -func (n *Lldp_Interface_NeighborAny) ChassisId() *Lldp_Interface_Neighbor_ChassisIdAny { - return &Lldp_Interface_Neighbor_ChassisIdAny{ +// ChassisId returns from Lldp_Interface_NeighborPathAny the path struct for its child "chassis-id". +func (n *Lldp_Interface_NeighborPathAny) ChassisId() *Lldp_Interface_Neighbor_ChassisIdPathAny { + return &Lldp_Interface_Neighbor_ChassisIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id"}, map[string]interface{}{}, @@ -56199,9 +56413,9 @@ func (n *Lldp_Interface_NeighborAny) ChassisId() *Lldp_Interface_Neighbor_Chassi } } -// ChassisIdType returns from Lldp_Interface_Neighbor the path struct for its child "chassis-id-type". -func (n *Lldp_Interface_Neighbor) ChassisIdType() *Lldp_Interface_Neighbor_ChassisIdType { - return &Lldp_Interface_Neighbor_ChassisIdType{ +// ChassisIdType returns from Lldp_Interface_NeighborPath the path struct for its child "chassis-id-type". +func (n *Lldp_Interface_NeighborPath) ChassisIdType() *Lldp_Interface_Neighbor_ChassisIdTypePath { + return &Lldp_Interface_Neighbor_ChassisIdTypePath{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id-type"}, map[string]interface{}{}, @@ -56210,9 +56424,9 @@ func (n *Lldp_Interface_Neighbor) ChassisIdType() *Lldp_Interface_Neighbor_Chass } } -// ChassisIdType returns from Lldp_Interface_NeighborAny the path struct for its child "chassis-id-type". -func (n *Lldp_Interface_NeighborAny) ChassisIdType() *Lldp_Interface_Neighbor_ChassisIdTypeAny { - return &Lldp_Interface_Neighbor_ChassisIdTypeAny{ +// ChassisIdType returns from Lldp_Interface_NeighborPathAny the path struct for its child "chassis-id-type". +func (n *Lldp_Interface_NeighborPathAny) ChassisIdType() *Lldp_Interface_Neighbor_ChassisIdTypePathAny { + return &Lldp_Interface_Neighbor_ChassisIdTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id-type"}, map[string]interface{}{}, @@ -56221,9 +56435,9 @@ func (n *Lldp_Interface_NeighborAny) ChassisIdType() *Lldp_Interface_Neighbor_Ch } } -// Id returns from Lldp_Interface_Neighbor the path struct for its child "id". -func (n *Lldp_Interface_Neighbor) Id() *Lldp_Interface_Neighbor_Id { - return &Lldp_Interface_Neighbor_Id{ +// Id returns from Lldp_Interface_NeighborPath the path struct for its child "id". +func (n *Lldp_Interface_NeighborPath) Id() *Lldp_Interface_Neighbor_IdPath { + return &Lldp_Interface_Neighbor_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -56232,9 +56446,9 @@ func (n *Lldp_Interface_Neighbor) Id() *Lldp_Interface_Neighbor_Id { } } -// Id returns from Lldp_Interface_NeighborAny the path struct for its child "id". -func (n *Lldp_Interface_NeighborAny) Id() *Lldp_Interface_Neighbor_IdAny { - return &Lldp_Interface_Neighbor_IdAny{ +// Id returns from Lldp_Interface_NeighborPathAny the path struct for its child "id". +func (n *Lldp_Interface_NeighborPathAny) Id() *Lldp_Interface_Neighbor_IdPathAny { + return &Lldp_Interface_Neighbor_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -56243,9 +56457,9 @@ func (n *Lldp_Interface_NeighborAny) Id() *Lldp_Interface_Neighbor_IdAny { } } -// LastUpdate returns from Lldp_Interface_Neighbor the path struct for its child "last-update". -func (n *Lldp_Interface_Neighbor) LastUpdate() *Lldp_Interface_Neighbor_LastUpdate { - return &Lldp_Interface_Neighbor_LastUpdate{ +// LastUpdate returns from Lldp_Interface_NeighborPath the path struct for its child "last-update". +func (n *Lldp_Interface_NeighborPath) LastUpdate() *Lldp_Interface_Neighbor_LastUpdatePath { + return &Lldp_Interface_Neighbor_LastUpdatePath{ NodePath: ygot.NewNodePath( []string{"state", "last-update"}, map[string]interface{}{}, @@ -56254,9 +56468,9 @@ func (n *Lldp_Interface_Neighbor) LastUpdate() *Lldp_Interface_Neighbor_LastUpda } } -// LastUpdate returns from Lldp_Interface_NeighborAny the path struct for its child "last-update". -func (n *Lldp_Interface_NeighborAny) LastUpdate() *Lldp_Interface_Neighbor_LastUpdateAny { - return &Lldp_Interface_Neighbor_LastUpdateAny{ +// LastUpdate returns from Lldp_Interface_NeighborPathAny the path struct for its child "last-update". +func (n *Lldp_Interface_NeighborPathAny) LastUpdate() *Lldp_Interface_Neighbor_LastUpdatePathAny { + return &Lldp_Interface_Neighbor_LastUpdatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-update"}, map[string]interface{}{}, @@ -56265,9 +56479,9 @@ func (n *Lldp_Interface_NeighborAny) LastUpdate() *Lldp_Interface_Neighbor_LastU } } -// ManagementAddress returns from Lldp_Interface_Neighbor the path struct for its child "management-address". -func (n *Lldp_Interface_Neighbor) ManagementAddress() *Lldp_Interface_Neighbor_ManagementAddress { - return &Lldp_Interface_Neighbor_ManagementAddress{ +// ManagementAddress returns from Lldp_Interface_NeighborPath the path struct for its child "management-address". +func (n *Lldp_Interface_NeighborPath) ManagementAddress() *Lldp_Interface_Neighbor_ManagementAddressPath { + return &Lldp_Interface_Neighbor_ManagementAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "management-address"}, map[string]interface{}{}, @@ -56276,9 +56490,9 @@ func (n *Lldp_Interface_Neighbor) ManagementAddress() *Lldp_Interface_Neighbor_M } } -// ManagementAddress returns from Lldp_Interface_NeighborAny the path struct for its child "management-address". -func (n *Lldp_Interface_NeighborAny) ManagementAddress() *Lldp_Interface_Neighbor_ManagementAddressAny { - return &Lldp_Interface_Neighbor_ManagementAddressAny{ +// ManagementAddress returns from Lldp_Interface_NeighborPathAny the path struct for its child "management-address". +func (n *Lldp_Interface_NeighborPathAny) ManagementAddress() *Lldp_Interface_Neighbor_ManagementAddressPathAny { + return &Lldp_Interface_Neighbor_ManagementAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "management-address"}, map[string]interface{}{}, @@ -56287,9 +56501,9 @@ func (n *Lldp_Interface_NeighborAny) ManagementAddress() *Lldp_Interface_Neighbo } } -// ManagementAddressType returns from Lldp_Interface_Neighbor the path struct for its child "management-address-type". -func (n *Lldp_Interface_Neighbor) ManagementAddressType() *Lldp_Interface_Neighbor_ManagementAddressType { - return &Lldp_Interface_Neighbor_ManagementAddressType{ +// ManagementAddressType returns from Lldp_Interface_NeighborPath the path struct for its child "management-address-type". +func (n *Lldp_Interface_NeighborPath) ManagementAddressType() *Lldp_Interface_Neighbor_ManagementAddressTypePath { + return &Lldp_Interface_Neighbor_ManagementAddressTypePath{ NodePath: ygot.NewNodePath( []string{"state", "management-address-type"}, map[string]interface{}{}, @@ -56298,9 +56512,9 @@ func (n *Lldp_Interface_Neighbor) ManagementAddressType() *Lldp_Interface_Neighb } } -// ManagementAddressType returns from Lldp_Interface_NeighborAny the path struct for its child "management-address-type". -func (n *Lldp_Interface_NeighborAny) ManagementAddressType() *Lldp_Interface_Neighbor_ManagementAddressTypeAny { - return &Lldp_Interface_Neighbor_ManagementAddressTypeAny{ +// ManagementAddressType returns from Lldp_Interface_NeighborPathAny the path struct for its child "management-address-type". +func (n *Lldp_Interface_NeighborPathAny) ManagementAddressType() *Lldp_Interface_Neighbor_ManagementAddressTypePathAny { + return &Lldp_Interface_Neighbor_ManagementAddressTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "management-address-type"}, map[string]interface{}{}, @@ -56309,9 +56523,9 @@ func (n *Lldp_Interface_NeighborAny) ManagementAddressType() *Lldp_Interface_Nei } } -// PortDescription returns from Lldp_Interface_Neighbor the path struct for its child "port-description". -func (n *Lldp_Interface_Neighbor) PortDescription() *Lldp_Interface_Neighbor_PortDescription { - return &Lldp_Interface_Neighbor_PortDescription{ +// PortDescription returns from Lldp_Interface_NeighborPath the path struct for its child "port-description". +func (n *Lldp_Interface_NeighborPath) PortDescription() *Lldp_Interface_Neighbor_PortDescriptionPath { + return &Lldp_Interface_Neighbor_PortDescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "port-description"}, map[string]interface{}{}, @@ -56320,9 +56534,9 @@ func (n *Lldp_Interface_Neighbor) PortDescription() *Lldp_Interface_Neighbor_Por } } -// PortDescription returns from Lldp_Interface_NeighborAny the path struct for its child "port-description". -func (n *Lldp_Interface_NeighborAny) PortDescription() *Lldp_Interface_Neighbor_PortDescriptionAny { - return &Lldp_Interface_Neighbor_PortDescriptionAny{ +// PortDescription returns from Lldp_Interface_NeighborPathAny the path struct for its child "port-description". +func (n *Lldp_Interface_NeighborPathAny) PortDescription() *Lldp_Interface_Neighbor_PortDescriptionPathAny { + return &Lldp_Interface_Neighbor_PortDescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-description"}, map[string]interface{}{}, @@ -56331,9 +56545,9 @@ func (n *Lldp_Interface_NeighborAny) PortDescription() *Lldp_Interface_Neighbor_ } } -// PortId returns from Lldp_Interface_Neighbor the path struct for its child "port-id". -func (n *Lldp_Interface_Neighbor) PortId() *Lldp_Interface_Neighbor_PortId { - return &Lldp_Interface_Neighbor_PortId{ +// PortId returns from Lldp_Interface_NeighborPath the path struct for its child "port-id". +func (n *Lldp_Interface_NeighborPath) PortId() *Lldp_Interface_Neighbor_PortIdPath { + return &Lldp_Interface_Neighbor_PortIdPath{ NodePath: ygot.NewNodePath( []string{"state", "port-id"}, map[string]interface{}{}, @@ -56342,9 +56556,9 @@ func (n *Lldp_Interface_Neighbor) PortId() *Lldp_Interface_Neighbor_PortId { } } -// PortId returns from Lldp_Interface_NeighborAny the path struct for its child "port-id". -func (n *Lldp_Interface_NeighborAny) PortId() *Lldp_Interface_Neighbor_PortIdAny { - return &Lldp_Interface_Neighbor_PortIdAny{ +// PortId returns from Lldp_Interface_NeighborPathAny the path struct for its child "port-id". +func (n *Lldp_Interface_NeighborPathAny) PortId() *Lldp_Interface_Neighbor_PortIdPathAny { + return &Lldp_Interface_Neighbor_PortIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-id"}, map[string]interface{}{}, @@ -56353,9 +56567,9 @@ func (n *Lldp_Interface_NeighborAny) PortId() *Lldp_Interface_Neighbor_PortIdAny } } -// PortIdType returns from Lldp_Interface_Neighbor the path struct for its child "port-id-type". -func (n *Lldp_Interface_Neighbor) PortIdType() *Lldp_Interface_Neighbor_PortIdType { - return &Lldp_Interface_Neighbor_PortIdType{ +// PortIdType returns from Lldp_Interface_NeighborPath the path struct for its child "port-id-type". +func (n *Lldp_Interface_NeighborPath) PortIdType() *Lldp_Interface_Neighbor_PortIdTypePath { + return &Lldp_Interface_Neighbor_PortIdTypePath{ NodePath: ygot.NewNodePath( []string{"state", "port-id-type"}, map[string]interface{}{}, @@ -56364,9 +56578,9 @@ func (n *Lldp_Interface_Neighbor) PortIdType() *Lldp_Interface_Neighbor_PortIdTy } } -// PortIdType returns from Lldp_Interface_NeighborAny the path struct for its child "port-id-type". -func (n *Lldp_Interface_NeighborAny) PortIdType() *Lldp_Interface_Neighbor_PortIdTypeAny { - return &Lldp_Interface_Neighbor_PortIdTypeAny{ +// PortIdType returns from Lldp_Interface_NeighborPathAny the path struct for its child "port-id-type". +func (n *Lldp_Interface_NeighborPathAny) PortIdType() *Lldp_Interface_Neighbor_PortIdTypePathAny { + return &Lldp_Interface_Neighbor_PortIdTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-id-type"}, map[string]interface{}{}, @@ -56375,9 +56589,9 @@ func (n *Lldp_Interface_NeighborAny) PortIdType() *Lldp_Interface_Neighbor_PortI } } -// SystemDescription returns from Lldp_Interface_Neighbor the path struct for its child "system-description". -func (n *Lldp_Interface_Neighbor) SystemDescription() *Lldp_Interface_Neighbor_SystemDescription { - return &Lldp_Interface_Neighbor_SystemDescription{ +// SystemDescription returns from Lldp_Interface_NeighborPath the path struct for its child "system-description". +func (n *Lldp_Interface_NeighborPath) SystemDescription() *Lldp_Interface_Neighbor_SystemDescriptionPath { + return &Lldp_Interface_Neighbor_SystemDescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "system-description"}, map[string]interface{}{}, @@ -56386,9 +56600,9 @@ func (n *Lldp_Interface_Neighbor) SystemDescription() *Lldp_Interface_Neighbor_S } } -// SystemDescription returns from Lldp_Interface_NeighborAny the path struct for its child "system-description". -func (n *Lldp_Interface_NeighborAny) SystemDescription() *Lldp_Interface_Neighbor_SystemDescriptionAny { - return &Lldp_Interface_Neighbor_SystemDescriptionAny{ +// SystemDescription returns from Lldp_Interface_NeighborPathAny the path struct for its child "system-description". +func (n *Lldp_Interface_NeighborPathAny) SystemDescription() *Lldp_Interface_Neighbor_SystemDescriptionPathAny { + return &Lldp_Interface_Neighbor_SystemDescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-description"}, map[string]interface{}{}, @@ -56397,9 +56611,9 @@ func (n *Lldp_Interface_NeighborAny) SystemDescription() *Lldp_Interface_Neighbo } } -// SystemName returns from Lldp_Interface_Neighbor the path struct for its child "system-name". -func (n *Lldp_Interface_Neighbor) SystemName() *Lldp_Interface_Neighbor_SystemName { - return &Lldp_Interface_Neighbor_SystemName{ +// SystemName returns from Lldp_Interface_NeighborPath the path struct for its child "system-name". +func (n *Lldp_Interface_NeighborPath) SystemName() *Lldp_Interface_Neighbor_SystemNamePath { + return &Lldp_Interface_Neighbor_SystemNamePath{ NodePath: ygot.NewNodePath( []string{"state", "system-name"}, map[string]interface{}{}, @@ -56408,9 +56622,9 @@ func (n *Lldp_Interface_Neighbor) SystemName() *Lldp_Interface_Neighbor_SystemNa } } -// SystemName returns from Lldp_Interface_NeighborAny the path struct for its child "system-name". -func (n *Lldp_Interface_NeighborAny) SystemName() *Lldp_Interface_Neighbor_SystemNameAny { - return &Lldp_Interface_Neighbor_SystemNameAny{ +// SystemName returns from Lldp_Interface_NeighborPathAny the path struct for its child "system-name". +func (n *Lldp_Interface_NeighborPathAny) SystemName() *Lldp_Interface_Neighbor_SystemNamePathAny { + return &Lldp_Interface_Neighbor_SystemNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-name"}, map[string]interface{}{}, @@ -56419,9 +56633,9 @@ func (n *Lldp_Interface_NeighborAny) SystemName() *Lldp_Interface_Neighbor_Syste } } -// TlvAny returns from Lldp_Interface_Neighbor the path struct for its child "tlv". -func (n *Lldp_Interface_Neighbor) TlvAny() *Lldp_Interface_Neighbor_TlvAny { - return &Lldp_Interface_Neighbor_TlvAny{ +// TlvAny returns from Lldp_Interface_NeighborPath the path struct for its child "tlv". +func (n *Lldp_Interface_NeighborPath) TlvAny() *Lldp_Interface_Neighbor_TlvPathAny { + return &Lldp_Interface_Neighbor_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"custom-tlvs", "tlv"}, map[string]interface{}{"type": "*", "oui": "*", "oui-subtype": "*"}, @@ -56430,9 +56644,9 @@ func (n *Lldp_Interface_Neighbor) TlvAny() *Lldp_Interface_Neighbor_TlvAny { } } -// TlvAny returns from Lldp_Interface_NeighborAny the path struct for its child "tlv". -func (n *Lldp_Interface_NeighborAny) TlvAny() *Lldp_Interface_Neighbor_TlvAny { - return &Lldp_Interface_Neighbor_TlvAny{ +// TlvAny returns from Lldp_Interface_NeighborPathAny the path struct for its child "tlv". +func (n *Lldp_Interface_NeighborPathAny) TlvAny() *Lldp_Interface_Neighbor_TlvPathAny { + return &Lldp_Interface_Neighbor_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"custom-tlvs", "tlv"}, map[string]interface{}{"type": "*", "oui": "*", "oui-subtype": "*"}, @@ -56441,27 +56655,27 @@ func (n *Lldp_Interface_NeighborAny) TlvAny() *Lldp_Interface_Neighbor_TlvAny { } } -// WithType sets Lldp_Interface_Neighbor_TlvAny's key "type" to the specified value. -func (n *Lldp_Interface_Neighbor_TlvAny) WithType(Type int32) *Lldp_Interface_Neighbor_TlvAny { +// WithType sets Lldp_Interface_Neighbor_TlvPathAny's key "type" to the specified value. +func (n *Lldp_Interface_Neighbor_TlvPathAny) WithType(Type int32) *Lldp_Interface_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "type", Type) return n } -// WithOui sets Lldp_Interface_Neighbor_TlvAny's key "oui" to the specified value. -func (n *Lldp_Interface_Neighbor_TlvAny) WithOui(Oui string) *Lldp_Interface_Neighbor_TlvAny { +// WithOui sets Lldp_Interface_Neighbor_TlvPathAny's key "oui" to the specified value. +func (n *Lldp_Interface_Neighbor_TlvPathAny) WithOui(Oui string) *Lldp_Interface_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "oui", Oui) return n } -// WithOuiSubtype sets Lldp_Interface_Neighbor_TlvAny's key "oui-subtype" to the specified value. -func (n *Lldp_Interface_Neighbor_TlvAny) WithOuiSubtype(OuiSubtype string) *Lldp_Interface_Neighbor_TlvAny { +// WithOuiSubtype sets Lldp_Interface_Neighbor_TlvPathAny's key "oui-subtype" to the specified value. +func (n *Lldp_Interface_Neighbor_TlvPathAny) WithOuiSubtype(OuiSubtype string) *Lldp_Interface_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "oui-subtype", OuiSubtype) return n } -// Ttl returns from Lldp_Interface_Neighbor the path struct for its child "ttl". -func (n *Lldp_Interface_Neighbor) Ttl() *Lldp_Interface_Neighbor_Ttl { - return &Lldp_Interface_Neighbor_Ttl{ +// Ttl returns from Lldp_Interface_NeighborPath the path struct for its child "ttl". +func (n *Lldp_Interface_NeighborPath) Ttl() *Lldp_Interface_Neighbor_TtlPath { + return &Lldp_Interface_Neighbor_TtlPath{ NodePath: ygot.NewNodePath( []string{"state", "ttl"}, map[string]interface{}{}, @@ -56470,9 +56684,9 @@ func (n *Lldp_Interface_Neighbor) Ttl() *Lldp_Interface_Neighbor_Ttl { } } -// Ttl returns from Lldp_Interface_NeighborAny the path struct for its child "ttl". -func (n *Lldp_Interface_NeighborAny) Ttl() *Lldp_Interface_Neighbor_TtlAny { - return &Lldp_Interface_Neighbor_TtlAny{ +// Ttl returns from Lldp_Interface_NeighborPathAny the path struct for its child "ttl". +func (n *Lldp_Interface_NeighborPathAny) Ttl() *Lldp_Interface_Neighbor_TtlPathAny { + return &Lldp_Interface_Neighbor_TtlPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ttl"}, map[string]interface{}{}, @@ -56481,39 +56695,39 @@ func (n *Lldp_Interface_NeighborAny) Ttl() *Lldp_Interface_Neighbor_TtlAny { } } -// Lldp_Interface_Neighbor_Capability represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability YANG schema element. -type Lldp_Interface_Neighbor_Capability struct { +// Lldp_Interface_Neighbor_CapabilityPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability YANG schema element. +type Lldp_Interface_Neighbor_CapabilityPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_CapabilityAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability YANG schema element. -type Lldp_Interface_Neighbor_CapabilityAny struct { +// Lldp_Interface_Neighbor_CapabilityPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability YANG schema element. +type Lldp_Interface_Neighbor_CapabilityPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Capability_Enabled represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/enabled YANG schema element. -type Lldp_Interface_Neighbor_Capability_Enabled struct { +// Lldp_Interface_Neighbor_Capability_EnabledPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/enabled YANG schema element. +type Lldp_Interface_Neighbor_Capability_EnabledPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Capability_EnabledAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/enabled YANG schema element. -type Lldp_Interface_Neighbor_Capability_EnabledAny struct { +// Lldp_Interface_Neighbor_Capability_EnabledPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/enabled YANG schema element. +type Lldp_Interface_Neighbor_Capability_EnabledPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Capability_Name represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/name YANG schema element. -type Lldp_Interface_Neighbor_Capability_Name struct { +// Lldp_Interface_Neighbor_Capability_NamePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/name YANG schema element. +type Lldp_Interface_Neighbor_Capability_NamePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Capability_NameAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/name YANG schema element. -type Lldp_Interface_Neighbor_Capability_NameAny struct { +// Lldp_Interface_Neighbor_Capability_NamePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/capabilities/capability/state/name YANG schema element. +type Lldp_Interface_Neighbor_Capability_NamePathAny struct { *ygot.NodePath } -// Enabled returns from Lldp_Interface_Neighbor_Capability the path struct for its child "enabled". -func (n *Lldp_Interface_Neighbor_Capability) Enabled() *Lldp_Interface_Neighbor_Capability_Enabled { - return &Lldp_Interface_Neighbor_Capability_Enabled{ +// Enabled returns from Lldp_Interface_Neighbor_CapabilityPath the path struct for its child "enabled". +func (n *Lldp_Interface_Neighbor_CapabilityPath) Enabled() *Lldp_Interface_Neighbor_Capability_EnabledPath { + return &Lldp_Interface_Neighbor_Capability_EnabledPath{ NodePath: ygot.NewNodePath( []string{"state", "enabled"}, map[string]interface{}{}, @@ -56522,9 +56736,9 @@ func (n *Lldp_Interface_Neighbor_Capability) Enabled() *Lldp_Interface_Neighbor_ } } -// Enabled returns from Lldp_Interface_Neighbor_CapabilityAny the path struct for its child "enabled". -func (n *Lldp_Interface_Neighbor_CapabilityAny) Enabled() *Lldp_Interface_Neighbor_Capability_EnabledAny { - return &Lldp_Interface_Neighbor_Capability_EnabledAny{ +// Enabled returns from Lldp_Interface_Neighbor_CapabilityPathAny the path struct for its child "enabled". +func (n *Lldp_Interface_Neighbor_CapabilityPathAny) Enabled() *Lldp_Interface_Neighbor_Capability_EnabledPathAny { + return &Lldp_Interface_Neighbor_Capability_EnabledPathAny{ NodePath: ygot.NewNodePath( []string{"state", "enabled"}, map[string]interface{}{}, @@ -56533,9 +56747,9 @@ func (n *Lldp_Interface_Neighbor_CapabilityAny) Enabled() *Lldp_Interface_Neighb } } -// Name returns from Lldp_Interface_Neighbor_Capability the path struct for its child "name". -func (n *Lldp_Interface_Neighbor_Capability) Name() *Lldp_Interface_Neighbor_Capability_Name { - return &Lldp_Interface_Neighbor_Capability_Name{ +// Name returns from Lldp_Interface_Neighbor_CapabilityPath the path struct for its child "name". +func (n *Lldp_Interface_Neighbor_CapabilityPath) Name() *Lldp_Interface_Neighbor_Capability_NamePath { + return &Lldp_Interface_Neighbor_Capability_NamePath{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -56544,9 +56758,9 @@ func (n *Lldp_Interface_Neighbor_Capability) Name() *Lldp_Interface_Neighbor_Cap } } -// Name returns from Lldp_Interface_Neighbor_CapabilityAny the path struct for its child "name". -func (n *Lldp_Interface_Neighbor_CapabilityAny) Name() *Lldp_Interface_Neighbor_Capability_NameAny { - return &Lldp_Interface_Neighbor_Capability_NameAny{ +// Name returns from Lldp_Interface_Neighbor_CapabilityPathAny the path struct for its child "name". +func (n *Lldp_Interface_Neighbor_CapabilityPathAny) Name() *Lldp_Interface_Neighbor_Capability_NamePathAny { + return &Lldp_Interface_Neighbor_Capability_NamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -56555,59 +56769,59 @@ func (n *Lldp_Interface_Neighbor_CapabilityAny) Name() *Lldp_Interface_Neighbor_ } } -// Lldp_Interface_Neighbor_Tlv represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv YANG schema element. -type Lldp_Interface_Neighbor_Tlv struct { +// Lldp_Interface_Neighbor_TlvPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv YANG schema element. +type Lldp_Interface_Neighbor_TlvPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_TlvAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv YANG schema element. -type Lldp_Interface_Neighbor_TlvAny struct { +// Lldp_Interface_Neighbor_TlvPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv YANG schema element. +type Lldp_Interface_Neighbor_TlvPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_Oui represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. -type Lldp_Interface_Neighbor_Tlv_Oui struct { +// Lldp_Interface_Neighbor_Tlv_OuiPath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. +type Lldp_Interface_Neighbor_Tlv_OuiPath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_OuiAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. -type Lldp_Interface_Neighbor_Tlv_OuiAny struct { +// Lldp_Interface_Neighbor_Tlv_OuiPathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. +type Lldp_Interface_Neighbor_Tlv_OuiPathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_OuiSubtype represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. -type Lldp_Interface_Neighbor_Tlv_OuiSubtype struct { +// Lldp_Interface_Neighbor_Tlv_OuiSubtypePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. +type Lldp_Interface_Neighbor_Tlv_OuiSubtypePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_OuiSubtypeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. -type Lldp_Interface_Neighbor_Tlv_OuiSubtypeAny struct { +// Lldp_Interface_Neighbor_Tlv_OuiSubtypePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. +type Lldp_Interface_Neighbor_Tlv_OuiSubtypePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_Type represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. -type Lldp_Interface_Neighbor_Tlv_Type struct { +// Lldp_Interface_Neighbor_Tlv_TypePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. +type Lldp_Interface_Neighbor_Tlv_TypePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_TypeAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. -type Lldp_Interface_Neighbor_Tlv_TypeAny struct { +// Lldp_Interface_Neighbor_Tlv_TypePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. +type Lldp_Interface_Neighbor_Tlv_TypePathAny struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_Value represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. -type Lldp_Interface_Neighbor_Tlv_Value struct { +// Lldp_Interface_Neighbor_Tlv_ValuePath represents the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. +type Lldp_Interface_Neighbor_Tlv_ValuePath struct { *ygot.NodePath } -// Lldp_Interface_Neighbor_Tlv_ValueAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. -type Lldp_Interface_Neighbor_Tlv_ValueAny struct { +// Lldp_Interface_Neighbor_Tlv_ValuePathAny represents the wildcard version of the /openconfig-lldp/lldp/interfaces/interface/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. +type Lldp_Interface_Neighbor_Tlv_ValuePathAny struct { *ygot.NodePath } -// Oui returns from Lldp_Interface_Neighbor_Tlv the path struct for its child "oui". -func (n *Lldp_Interface_Neighbor_Tlv) Oui() *Lldp_Interface_Neighbor_Tlv_Oui { - return &Lldp_Interface_Neighbor_Tlv_Oui{ +// Oui returns from Lldp_Interface_Neighbor_TlvPath the path struct for its child "oui". +func (n *Lldp_Interface_Neighbor_TlvPath) Oui() *Lldp_Interface_Neighbor_Tlv_OuiPath { + return &Lldp_Interface_Neighbor_Tlv_OuiPath{ NodePath: ygot.NewNodePath( []string{"state", "oui"}, map[string]interface{}{}, @@ -56616,9 +56830,9 @@ func (n *Lldp_Interface_Neighbor_Tlv) Oui() *Lldp_Interface_Neighbor_Tlv_Oui { } } -// Oui returns from Lldp_Interface_Neighbor_TlvAny the path struct for its child "oui". -func (n *Lldp_Interface_Neighbor_TlvAny) Oui() *Lldp_Interface_Neighbor_Tlv_OuiAny { - return &Lldp_Interface_Neighbor_Tlv_OuiAny{ +// Oui returns from Lldp_Interface_Neighbor_TlvPathAny the path struct for its child "oui". +func (n *Lldp_Interface_Neighbor_TlvPathAny) Oui() *Lldp_Interface_Neighbor_Tlv_OuiPathAny { + return &Lldp_Interface_Neighbor_Tlv_OuiPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oui"}, map[string]interface{}{}, @@ -56627,9 +56841,9 @@ func (n *Lldp_Interface_Neighbor_TlvAny) Oui() *Lldp_Interface_Neighbor_Tlv_OuiA } } -// OuiSubtype returns from Lldp_Interface_Neighbor_Tlv the path struct for its child "oui-subtype". -func (n *Lldp_Interface_Neighbor_Tlv) OuiSubtype() *Lldp_Interface_Neighbor_Tlv_OuiSubtype { - return &Lldp_Interface_Neighbor_Tlv_OuiSubtype{ +// OuiSubtype returns from Lldp_Interface_Neighbor_TlvPath the path struct for its child "oui-subtype". +func (n *Lldp_Interface_Neighbor_TlvPath) OuiSubtype() *Lldp_Interface_Neighbor_Tlv_OuiSubtypePath { + return &Lldp_Interface_Neighbor_Tlv_OuiSubtypePath{ NodePath: ygot.NewNodePath( []string{"state", "oui-subtype"}, map[string]interface{}{}, @@ -56638,9 +56852,9 @@ func (n *Lldp_Interface_Neighbor_Tlv) OuiSubtype() *Lldp_Interface_Neighbor_Tlv_ } } -// OuiSubtype returns from Lldp_Interface_Neighbor_TlvAny the path struct for its child "oui-subtype". -func (n *Lldp_Interface_Neighbor_TlvAny) OuiSubtype() *Lldp_Interface_Neighbor_Tlv_OuiSubtypeAny { - return &Lldp_Interface_Neighbor_Tlv_OuiSubtypeAny{ +// OuiSubtype returns from Lldp_Interface_Neighbor_TlvPathAny the path struct for its child "oui-subtype". +func (n *Lldp_Interface_Neighbor_TlvPathAny) OuiSubtype() *Lldp_Interface_Neighbor_Tlv_OuiSubtypePathAny { + return &Lldp_Interface_Neighbor_Tlv_OuiSubtypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "oui-subtype"}, map[string]interface{}{}, @@ -56649,9 +56863,9 @@ func (n *Lldp_Interface_Neighbor_TlvAny) OuiSubtype() *Lldp_Interface_Neighbor_T } } -// Type returns from Lldp_Interface_Neighbor_Tlv the path struct for its child "type". -func (n *Lldp_Interface_Neighbor_Tlv) Type() *Lldp_Interface_Neighbor_Tlv_Type { - return &Lldp_Interface_Neighbor_Tlv_Type{ +// Type returns from Lldp_Interface_Neighbor_TlvPath the path struct for its child "type". +func (n *Lldp_Interface_Neighbor_TlvPath) Type() *Lldp_Interface_Neighbor_Tlv_TypePath { + return &Lldp_Interface_Neighbor_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -56660,9 +56874,9 @@ func (n *Lldp_Interface_Neighbor_Tlv) Type() *Lldp_Interface_Neighbor_Tlv_Type { } } -// Type returns from Lldp_Interface_Neighbor_TlvAny the path struct for its child "type". -func (n *Lldp_Interface_Neighbor_TlvAny) Type() *Lldp_Interface_Neighbor_Tlv_TypeAny { - return &Lldp_Interface_Neighbor_Tlv_TypeAny{ +// Type returns from Lldp_Interface_Neighbor_TlvPathAny the path struct for its child "type". +func (n *Lldp_Interface_Neighbor_TlvPathAny) Type() *Lldp_Interface_Neighbor_Tlv_TypePathAny { + return &Lldp_Interface_Neighbor_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -56671,9 +56885,9 @@ func (n *Lldp_Interface_Neighbor_TlvAny) Type() *Lldp_Interface_Neighbor_Tlv_Typ } } -// Value returns from Lldp_Interface_Neighbor_Tlv the path struct for its child "value". -func (n *Lldp_Interface_Neighbor_Tlv) Value() *Lldp_Interface_Neighbor_Tlv_Value { - return &Lldp_Interface_Neighbor_Tlv_Value{ +// Value returns from Lldp_Interface_Neighbor_TlvPath the path struct for its child "value". +func (n *Lldp_Interface_Neighbor_TlvPath) Value() *Lldp_Interface_Neighbor_Tlv_ValuePath { + return &Lldp_Interface_Neighbor_Tlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -56682,9 +56896,9 @@ func (n *Lldp_Interface_Neighbor_Tlv) Value() *Lldp_Interface_Neighbor_Tlv_Value } } -// Value returns from Lldp_Interface_Neighbor_TlvAny the path struct for its child "value". -func (n *Lldp_Interface_Neighbor_TlvAny) Value() *Lldp_Interface_Neighbor_Tlv_ValueAny { - return &Lldp_Interface_Neighbor_Tlv_ValueAny{ +// Value returns from Lldp_Interface_Neighbor_TlvPathAny the path struct for its child "value". +func (n *Lldp_Interface_Neighbor_TlvPathAny) Value() *Lldp_Interface_Neighbor_Tlv_ValuePathAny { + return &Lldp_Interface_Neighbor_Tlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -56693,19 +56907,19 @@ func (n *Lldp_Interface_Neighbor_TlvAny) Value() *Lldp_Interface_Neighbor_Tlv_Va } } -// LocalRoutes represents the /openconfig-local-routing/local-routes YANG schema element. -type LocalRoutes struct { +// LocalRoutesPath represents the /openconfig-local-routing/local-routes YANG schema element. +type LocalRoutesPath struct { *ygot.NodePath } -// LocalRoutesAny represents the wildcard version of the /openconfig-local-routing/local-routes YANG schema element. -type LocalRoutesAny struct { +// LocalRoutesPathAny represents the wildcard version of the /openconfig-local-routing/local-routes YANG schema element. +type LocalRoutesPathAny struct { *ygot.NodePath } -// AggregateAny returns from LocalRoutes the path struct for its child "aggregate". -func (n *LocalRoutes) AggregateAny() *LocalRoutes_AggregateAny { - return &LocalRoutes_AggregateAny{ +// AggregateAny returns from LocalRoutesPath the path struct for its child "aggregate". +func (n *LocalRoutesPath) AggregateAny() *LocalRoutes_AggregatePathAny { + return &LocalRoutes_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": "*"}, @@ -56714,9 +56928,9 @@ func (n *LocalRoutes) AggregateAny() *LocalRoutes_AggregateAny { } } -// AggregateAny returns from LocalRoutesAny the path struct for its child "aggregate". -func (n *LocalRoutesAny) AggregateAny() *LocalRoutes_AggregateAny { - return &LocalRoutes_AggregateAny{ +// AggregateAny returns from LocalRoutesPathAny the path struct for its child "aggregate". +func (n *LocalRoutesPathAny) AggregateAny() *LocalRoutes_AggregatePathAny { + return &LocalRoutes_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": "*"}, @@ -56725,9 +56939,9 @@ func (n *LocalRoutesAny) AggregateAny() *LocalRoutes_AggregateAny { } } -// Aggregate returns from LocalRoutes the path struct for its child "aggregate". -func (n *LocalRoutes) Aggregate(Prefix string) *LocalRoutes_Aggregate { - return &LocalRoutes_Aggregate{ +// Aggregate returns from LocalRoutesPath the path struct for its child "aggregate". +func (n *LocalRoutesPath) Aggregate(Prefix string) *LocalRoutes_AggregatePath { + return &LocalRoutes_AggregatePath{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": Prefix}, @@ -56736,9 +56950,9 @@ func (n *LocalRoutes) Aggregate(Prefix string) *LocalRoutes_Aggregate { } } -// Aggregate returns from LocalRoutesAny the path struct for its child "aggregate". -func (n *LocalRoutesAny) Aggregate(Prefix string) *LocalRoutes_AggregateAny { - return &LocalRoutes_AggregateAny{ +// Aggregate returns from LocalRoutesPathAny the path struct for its child "aggregate". +func (n *LocalRoutesPathAny) Aggregate(Prefix string) *LocalRoutes_AggregatePathAny { + return &LocalRoutes_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": Prefix}, @@ -56747,9 +56961,9 @@ func (n *LocalRoutesAny) Aggregate(Prefix string) *LocalRoutes_AggregateAny { } } -// StaticAny returns from LocalRoutes the path struct for its child "static". -func (n *LocalRoutes) StaticAny() *LocalRoutes_StaticAny { - return &LocalRoutes_StaticAny{ +// StaticAny returns from LocalRoutesPath the path struct for its child "static". +func (n *LocalRoutesPath) StaticAny() *LocalRoutes_StaticPathAny { + return &LocalRoutes_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": "*"}, @@ -56758,9 +56972,9 @@ func (n *LocalRoutes) StaticAny() *LocalRoutes_StaticAny { } } -// StaticAny returns from LocalRoutesAny the path struct for its child "static". -func (n *LocalRoutesAny) StaticAny() *LocalRoutes_StaticAny { - return &LocalRoutes_StaticAny{ +// StaticAny returns from LocalRoutesPathAny the path struct for its child "static". +func (n *LocalRoutesPathAny) StaticAny() *LocalRoutes_StaticPathAny { + return &LocalRoutes_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": "*"}, @@ -56769,9 +56983,9 @@ func (n *LocalRoutesAny) StaticAny() *LocalRoutes_StaticAny { } } -// Static returns from LocalRoutes the path struct for its child "static". -func (n *LocalRoutes) Static(Prefix string) *LocalRoutes_Static { - return &LocalRoutes_Static{ +// Static returns from LocalRoutesPath the path struct for its child "static". +func (n *LocalRoutesPath) Static(Prefix string) *LocalRoutes_StaticPath { + return &LocalRoutes_StaticPath{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": Prefix}, @@ -56780,9 +56994,9 @@ func (n *LocalRoutes) Static(Prefix string) *LocalRoutes_Static { } } -// Static returns from LocalRoutesAny the path struct for its child "static". -func (n *LocalRoutesAny) Static(Prefix string) *LocalRoutes_StaticAny { - return &LocalRoutes_StaticAny{ +// Static returns from LocalRoutesPathAny the path struct for its child "static". +func (n *LocalRoutesPathAny) Static(Prefix string) *LocalRoutes_StaticPathAny { + return &LocalRoutes_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": Prefix}, @@ -56791,209 +57005,209 @@ func (n *LocalRoutesAny) Static(Prefix string) *LocalRoutes_StaticAny { } } -// LocalRoutes_Aggregate represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate YANG schema element. -type LocalRoutes_Aggregate struct { +// LocalRoutes_AggregatePath represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate YANG schema element. +type LocalRoutes_AggregatePath struct { *ygot.NodePath } -// LocalRoutes_AggregateAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate YANG schema element. -type LocalRoutes_AggregateAny struct { +// LocalRoutes_AggregatePathAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate YANG schema element. +type LocalRoutes_AggregatePathAny struct { *ygot.NodePath } -// LocalRoutes_Aggregate_Description represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/description YANG schema element. -type LocalRoutes_Aggregate_Description struct { +// LocalRoutes_Aggregate_DescriptionPath represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/description YANG schema element. +type LocalRoutes_Aggregate_DescriptionPath struct { *ygot.NodePath } -// LocalRoutes_Aggregate_DescriptionAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/description YANG schema element. -type LocalRoutes_Aggregate_DescriptionAny struct { +// LocalRoutes_Aggregate_DescriptionPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/description YANG schema element. +type LocalRoutes_Aggregate_DescriptionPathAny struct { *ygot.NodePath } -// LocalRoutes_Aggregate_Discard represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/discard YANG schema element. -type LocalRoutes_Aggregate_Discard struct { +// LocalRoutes_Aggregate_DiscardPath represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/discard YANG schema element. +type LocalRoutes_Aggregate_DiscardPath struct { *ygot.NodePath } -// LocalRoutes_Aggregate_DiscardAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/discard YANG schema element. -type LocalRoutes_Aggregate_DiscardAny struct { +// LocalRoutes_Aggregate_DiscardPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/discard YANG schema element. +type LocalRoutes_Aggregate_DiscardPathAny struct { *ygot.NodePath } -// LocalRoutes_Aggregate_Prefix represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/prefix YANG schema element. -type LocalRoutes_Aggregate_Prefix struct { +// LocalRoutes_Aggregate_PrefixPath represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/prefix YANG schema element. +type LocalRoutes_Aggregate_PrefixPath struct { *ygot.NodePath } -// LocalRoutes_Aggregate_PrefixAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/prefix YANG schema element. -type LocalRoutes_Aggregate_PrefixAny struct { +// LocalRoutes_Aggregate_PrefixPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/prefix YANG schema element. +type LocalRoutes_Aggregate_PrefixPathAny struct { *ygot.NodePath } -// LocalRoutes_Aggregate_SetTag represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/set-tag YANG schema element. -type LocalRoutes_Aggregate_SetTag struct { +// LocalRoutes_Aggregate_SetTagPath represents the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/set-tag YANG schema element. +type LocalRoutes_Aggregate_SetTagPath struct { *ygot.NodePath } -// LocalRoutes_Aggregate_SetTagAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/state/set-tag YANG schema element. -type LocalRoutes_Aggregate_SetTagAny struct { +// LocalRoutes_Aggregate_SetTagPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/local-aggregates/aggregate/config/set-tag YANG schema element. +type LocalRoutes_Aggregate_SetTagPathAny struct { *ygot.NodePath } -// Description returns from LocalRoutes_Aggregate the path struct for its child "description". -func (n *LocalRoutes_Aggregate) Description() *LocalRoutes_Aggregate_Description { - return &LocalRoutes_Aggregate_Description{ +// Description returns from LocalRoutes_AggregatePath the path struct for its child "description". +func (n *LocalRoutes_AggregatePath) Description() *LocalRoutes_Aggregate_DescriptionPath { + return &LocalRoutes_Aggregate_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from LocalRoutes_AggregateAny the path struct for its child "description". -func (n *LocalRoutes_AggregateAny) Description() *LocalRoutes_Aggregate_DescriptionAny { - return &LocalRoutes_Aggregate_DescriptionAny{ +// Description returns from LocalRoutes_AggregatePathAny the path struct for its child "description". +func (n *LocalRoutes_AggregatePathAny) Description() *LocalRoutes_Aggregate_DescriptionPathAny { + return &LocalRoutes_Aggregate_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Discard returns from LocalRoutes_Aggregate the path struct for its child "discard". -func (n *LocalRoutes_Aggregate) Discard() *LocalRoutes_Aggregate_Discard { - return &LocalRoutes_Aggregate_Discard{ +// Discard returns from LocalRoutes_AggregatePath the path struct for its child "discard". +func (n *LocalRoutes_AggregatePath) Discard() *LocalRoutes_Aggregate_DiscardPath { + return &LocalRoutes_Aggregate_DiscardPath{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// Discard returns from LocalRoutes_AggregateAny the path struct for its child "discard". -func (n *LocalRoutes_AggregateAny) Discard() *LocalRoutes_Aggregate_DiscardAny { - return &LocalRoutes_Aggregate_DiscardAny{ +// Discard returns from LocalRoutes_AggregatePathAny the path struct for its child "discard". +func (n *LocalRoutes_AggregatePathAny) Discard() *LocalRoutes_Aggregate_DiscardPathAny { + return &LocalRoutes_Aggregate_DiscardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// Prefix returns from LocalRoutes_Aggregate the path struct for its child "prefix". -func (n *LocalRoutes_Aggregate) Prefix() *LocalRoutes_Aggregate_Prefix { - return &LocalRoutes_Aggregate_Prefix{ +// Prefix returns from LocalRoutes_AggregatePath the path struct for its child "prefix". +func (n *LocalRoutes_AggregatePath) Prefix() *LocalRoutes_Aggregate_PrefixPath { + return &LocalRoutes_Aggregate_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from LocalRoutes_AggregateAny the path struct for its child "prefix". -func (n *LocalRoutes_AggregateAny) Prefix() *LocalRoutes_Aggregate_PrefixAny { - return &LocalRoutes_Aggregate_PrefixAny{ +// Prefix returns from LocalRoutes_AggregatePathAny the path struct for its child "prefix". +func (n *LocalRoutes_AggregatePathAny) Prefix() *LocalRoutes_Aggregate_PrefixPathAny { + return &LocalRoutes_Aggregate_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// SetTag returns from LocalRoutes_Aggregate the path struct for its child "set-tag". -func (n *LocalRoutes_Aggregate) SetTag() *LocalRoutes_Aggregate_SetTag { - return &LocalRoutes_Aggregate_SetTag{ +// SetTag returns from LocalRoutes_AggregatePath the path struct for its child "set-tag". +func (n *LocalRoutes_AggregatePath) SetTag() *LocalRoutes_Aggregate_SetTagPath { + return &LocalRoutes_Aggregate_SetTagPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// SetTag returns from LocalRoutes_AggregateAny the path struct for its child "set-tag". -func (n *LocalRoutes_AggregateAny) SetTag() *LocalRoutes_Aggregate_SetTagAny { - return &LocalRoutes_Aggregate_SetTagAny{ +// SetTag returns from LocalRoutes_AggregatePathAny the path struct for its child "set-tag". +func (n *LocalRoutes_AggregatePathAny) SetTag() *LocalRoutes_Aggregate_SetTagPathAny { + return &LocalRoutes_Aggregate_SetTagPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// LocalRoutes_Static represents the /openconfig-local-routing/local-routes/static-routes/static YANG schema element. -type LocalRoutes_Static struct { +// LocalRoutes_StaticPath represents the /openconfig-local-routing/local-routes/static-routes/static YANG schema element. +type LocalRoutes_StaticPath struct { *ygot.NodePath } -// LocalRoutes_StaticAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static YANG schema element. -type LocalRoutes_StaticAny struct { +// LocalRoutes_StaticPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static YANG schema element. +type LocalRoutes_StaticPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_Description represents the /openconfig-local-routing/local-routes/static-routes/static/state/description YANG schema element. -type LocalRoutes_Static_Description struct { +// LocalRoutes_Static_DescriptionPath represents the /openconfig-local-routing/local-routes/static-routes/static/config/description YANG schema element. +type LocalRoutes_Static_DescriptionPath struct { *ygot.NodePath } -// LocalRoutes_Static_DescriptionAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/state/description YANG schema element. -type LocalRoutes_Static_DescriptionAny struct { +// LocalRoutes_Static_DescriptionPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/config/description YANG schema element. +type LocalRoutes_Static_DescriptionPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_Prefix represents the /openconfig-local-routing/local-routes/static-routes/static/state/prefix YANG schema element. -type LocalRoutes_Static_Prefix struct { +// LocalRoutes_Static_PrefixPath represents the /openconfig-local-routing/local-routes/static-routes/static/config/prefix YANG schema element. +type LocalRoutes_Static_PrefixPath struct { *ygot.NodePath } -// LocalRoutes_Static_PrefixAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/state/prefix YANG schema element. -type LocalRoutes_Static_PrefixAny struct { +// LocalRoutes_Static_PrefixPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/config/prefix YANG schema element. +type LocalRoutes_Static_PrefixPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_SetTag represents the /openconfig-local-routing/local-routes/static-routes/static/state/set-tag YANG schema element. -type LocalRoutes_Static_SetTag struct { +// LocalRoutes_Static_SetTagPath represents the /openconfig-local-routing/local-routes/static-routes/static/config/set-tag YANG schema element. +type LocalRoutes_Static_SetTagPath struct { *ygot.NodePath } -// LocalRoutes_Static_SetTagAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/state/set-tag YANG schema element. -type LocalRoutes_Static_SetTagAny struct { +// LocalRoutes_Static_SetTagPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/config/set-tag YANG schema element. +type LocalRoutes_Static_SetTagPathAny struct { *ygot.NodePath } -// Description returns from LocalRoutes_Static the path struct for its child "description". -func (n *LocalRoutes_Static) Description() *LocalRoutes_Static_Description { - return &LocalRoutes_Static_Description{ +// Description returns from LocalRoutes_StaticPath the path struct for its child "description". +func (n *LocalRoutes_StaticPath) Description() *LocalRoutes_Static_DescriptionPath { + return &LocalRoutes_Static_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from LocalRoutes_StaticAny the path struct for its child "description". -func (n *LocalRoutes_StaticAny) Description() *LocalRoutes_Static_DescriptionAny { - return &LocalRoutes_Static_DescriptionAny{ +// Description returns from LocalRoutes_StaticPathAny the path struct for its child "description". +func (n *LocalRoutes_StaticPathAny) Description() *LocalRoutes_Static_DescriptionPathAny { + return &LocalRoutes_Static_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// NextHopAny returns from LocalRoutes_Static the path struct for its child "next-hop". -func (n *LocalRoutes_Static) NextHopAny() *LocalRoutes_Static_NextHopAny { - return &LocalRoutes_Static_NextHopAny{ +// NextHopAny returns from LocalRoutes_StaticPath the path struct for its child "next-hop". +func (n *LocalRoutes_StaticPath) NextHopAny() *LocalRoutes_Static_NextHopPathAny { + return &LocalRoutes_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -57002,9 +57216,9 @@ func (n *LocalRoutes_Static) NextHopAny() *LocalRoutes_Static_NextHopAny { } } -// NextHopAny returns from LocalRoutes_StaticAny the path struct for its child "next-hop". -func (n *LocalRoutes_StaticAny) NextHopAny() *LocalRoutes_Static_NextHopAny { - return &LocalRoutes_Static_NextHopAny{ +// NextHopAny returns from LocalRoutes_StaticPathAny the path struct for its child "next-hop". +func (n *LocalRoutes_StaticPathAny) NextHopAny() *LocalRoutes_Static_NextHopPathAny { + return &LocalRoutes_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -57013,9 +57227,9 @@ func (n *LocalRoutes_StaticAny) NextHopAny() *LocalRoutes_Static_NextHopAny { } } -// NextHop returns from LocalRoutes_Static the path struct for its child "next-hop". -func (n *LocalRoutes_Static) NextHop(Index string) *LocalRoutes_Static_NextHop { - return &LocalRoutes_Static_NextHop{ +// NextHop returns from LocalRoutes_StaticPath the path struct for its child "next-hop". +func (n *LocalRoutes_StaticPath) NextHop(Index string) *LocalRoutes_Static_NextHopPath { + return &LocalRoutes_Static_NextHopPath{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -57024,9 +57238,9 @@ func (n *LocalRoutes_Static) NextHop(Index string) *LocalRoutes_Static_NextHop { } } -// NextHop returns from LocalRoutes_StaticAny the path struct for its child "next-hop". -func (n *LocalRoutes_StaticAny) NextHop(Index string) *LocalRoutes_Static_NextHopAny { - return &LocalRoutes_Static_NextHopAny{ +// NextHop returns from LocalRoutes_StaticPathAny the path struct for its child "next-hop". +func (n *LocalRoutes_StaticPathAny) NextHop(Index string) *LocalRoutes_Static_NextHopPathAny { + return &LocalRoutes_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -57035,125 +57249,125 @@ func (n *LocalRoutes_StaticAny) NextHop(Index string) *LocalRoutes_Static_NextHo } } -// Prefix returns from LocalRoutes_Static the path struct for its child "prefix". -func (n *LocalRoutes_Static) Prefix() *LocalRoutes_Static_Prefix { - return &LocalRoutes_Static_Prefix{ +// Prefix returns from LocalRoutes_StaticPath the path struct for its child "prefix". +func (n *LocalRoutes_StaticPath) Prefix() *LocalRoutes_Static_PrefixPath { + return &LocalRoutes_Static_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from LocalRoutes_StaticAny the path struct for its child "prefix". -func (n *LocalRoutes_StaticAny) Prefix() *LocalRoutes_Static_PrefixAny { - return &LocalRoutes_Static_PrefixAny{ +// Prefix returns from LocalRoutes_StaticPathAny the path struct for its child "prefix". +func (n *LocalRoutes_StaticPathAny) Prefix() *LocalRoutes_Static_PrefixPathAny { + return &LocalRoutes_Static_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// SetTag returns from LocalRoutes_Static the path struct for its child "set-tag". -func (n *LocalRoutes_Static) SetTag() *LocalRoutes_Static_SetTag { - return &LocalRoutes_Static_SetTag{ +// SetTag returns from LocalRoutes_StaticPath the path struct for its child "set-tag". +func (n *LocalRoutes_StaticPath) SetTag() *LocalRoutes_Static_SetTagPath { + return &LocalRoutes_Static_SetTagPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// SetTag returns from LocalRoutes_StaticAny the path struct for its child "set-tag". -func (n *LocalRoutes_StaticAny) SetTag() *LocalRoutes_Static_SetTagAny { - return &LocalRoutes_Static_SetTagAny{ +// SetTag returns from LocalRoutes_StaticPathAny the path struct for its child "set-tag". +func (n *LocalRoutes_StaticPathAny) SetTag() *LocalRoutes_Static_SetTagPathAny { + return &LocalRoutes_Static_SetTagPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// LocalRoutes_Static_NextHop represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop YANG schema element. -type LocalRoutes_Static_NextHop struct { +// LocalRoutes_Static_NextHopPath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop YANG schema element. +type LocalRoutes_Static_NextHopPath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHopAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop YANG schema element. -type LocalRoutes_Static_NextHopAny struct { +// LocalRoutes_Static_NextHopPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop YANG schema element. +type LocalRoutes_Static_NextHopPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_Index represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/index YANG schema element. -type LocalRoutes_Static_NextHop_Index struct { +// LocalRoutes_Static_NextHop_IndexPath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/index YANG schema element. +type LocalRoutes_Static_NextHop_IndexPath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_IndexAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/index YANG schema element. -type LocalRoutes_Static_NextHop_IndexAny struct { +// LocalRoutes_Static_NextHop_IndexPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/index YANG schema element. +type LocalRoutes_Static_NextHop_IndexPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_Metric represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/metric YANG schema element. -type LocalRoutes_Static_NextHop_Metric struct { +// LocalRoutes_Static_NextHop_MetricPath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/metric YANG schema element. +type LocalRoutes_Static_NextHop_MetricPath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_MetricAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/metric YANG schema element. -type LocalRoutes_Static_NextHop_MetricAny struct { +// LocalRoutes_Static_NextHop_MetricPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/metric YANG schema element. +type LocalRoutes_Static_NextHop_MetricPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_NextHop represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/next-hop YANG schema element. -type LocalRoutes_Static_NextHop_NextHop struct { +// LocalRoutes_Static_NextHop_NextHopPath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/next-hop YANG schema element. +type LocalRoutes_Static_NextHop_NextHopPath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_NextHopAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/next-hop YANG schema element. -type LocalRoutes_Static_NextHop_NextHopAny struct { +// LocalRoutes_Static_NextHop_NextHopPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/next-hop YANG schema element. +type LocalRoutes_Static_NextHop_NextHopPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_Recurse represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/recurse YANG schema element. -type LocalRoutes_Static_NextHop_Recurse struct { +// LocalRoutes_Static_NextHop_RecursePath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/recurse YANG schema element. +type LocalRoutes_Static_NextHop_RecursePath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_RecurseAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/state/recurse YANG schema element. -type LocalRoutes_Static_NextHop_RecurseAny struct { +// LocalRoutes_Static_NextHop_RecursePathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/config/recurse YANG schema element. +type LocalRoutes_Static_NextHop_RecursePathAny struct { *ygot.NodePath } -// Index returns from LocalRoutes_Static_NextHop the path struct for its child "index". -func (n *LocalRoutes_Static_NextHop) Index() *LocalRoutes_Static_NextHop_Index { - return &LocalRoutes_Static_NextHop_Index{ +// Index returns from LocalRoutes_Static_NextHopPath the path struct for its child "index". +func (n *LocalRoutes_Static_NextHopPath) Index() *LocalRoutes_Static_NextHop_IndexPath { + return &LocalRoutes_Static_NextHop_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from LocalRoutes_Static_NextHopAny the path struct for its child "index". -func (n *LocalRoutes_Static_NextHopAny) Index() *LocalRoutes_Static_NextHop_IndexAny { - return &LocalRoutes_Static_NextHop_IndexAny{ +// Index returns from LocalRoutes_Static_NextHopPathAny the path struct for its child "index". +func (n *LocalRoutes_Static_NextHopPathAny) Index() *LocalRoutes_Static_NextHop_IndexPathAny { + return &LocalRoutes_Static_NextHop_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from LocalRoutes_Static_NextHop the path struct for its child "interface-ref". -func (n *LocalRoutes_Static_NextHop) InterfaceRef() *LocalRoutes_Static_NextHop_InterfaceRef { - return &LocalRoutes_Static_NextHop_InterfaceRef{ +// InterfaceRef returns from LocalRoutes_Static_NextHopPath the path struct for its child "interface-ref". +func (n *LocalRoutes_Static_NextHopPath) InterfaceRef() *LocalRoutes_Static_NextHop_InterfaceRefPath { + return &LocalRoutes_Static_NextHop_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -57162,9 +57376,9 @@ func (n *LocalRoutes_Static_NextHop) InterfaceRef() *LocalRoutes_Static_NextHop_ } } -// InterfaceRef returns from LocalRoutes_Static_NextHopAny the path struct for its child "interface-ref". -func (n *LocalRoutes_Static_NextHopAny) InterfaceRef() *LocalRoutes_Static_NextHop_InterfaceRefAny { - return &LocalRoutes_Static_NextHop_InterfaceRefAny{ +// InterfaceRef returns from LocalRoutes_Static_NextHopPathAny the path struct for its child "interface-ref". +func (n *LocalRoutes_Static_NextHopPathAny) InterfaceRef() *LocalRoutes_Static_NextHop_InterfaceRefPathAny { + return &LocalRoutes_Static_NextHop_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -57173,169 +57387,169 @@ func (n *LocalRoutes_Static_NextHopAny) InterfaceRef() *LocalRoutes_Static_NextH } } -// Metric returns from LocalRoutes_Static_NextHop the path struct for its child "metric". -func (n *LocalRoutes_Static_NextHop) Metric() *LocalRoutes_Static_NextHop_Metric { - return &LocalRoutes_Static_NextHop_Metric{ +// Metric returns from LocalRoutes_Static_NextHopPath the path struct for its child "metric". +func (n *LocalRoutes_Static_NextHopPath) Metric() *LocalRoutes_Static_NextHop_MetricPath { + return &LocalRoutes_Static_NextHop_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from LocalRoutes_Static_NextHopAny the path struct for its child "metric". -func (n *LocalRoutes_Static_NextHopAny) Metric() *LocalRoutes_Static_NextHop_MetricAny { - return &LocalRoutes_Static_NextHop_MetricAny{ +// Metric returns from LocalRoutes_Static_NextHopPathAny the path struct for its child "metric". +func (n *LocalRoutes_Static_NextHopPathAny) Metric() *LocalRoutes_Static_NextHop_MetricPathAny { + return &LocalRoutes_Static_NextHop_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// NextHop returns from LocalRoutes_Static_NextHop the path struct for its child "next-hop". -func (n *LocalRoutes_Static_NextHop) NextHop() *LocalRoutes_Static_NextHop_NextHop { - return &LocalRoutes_Static_NextHop_NextHop{ +// NextHop returns from LocalRoutes_Static_NextHopPath the path struct for its child "next-hop". +func (n *LocalRoutes_Static_NextHopPath) NextHop() *LocalRoutes_Static_NextHop_NextHopPath { + return &LocalRoutes_Static_NextHop_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from LocalRoutes_Static_NextHopAny the path struct for its child "next-hop". -func (n *LocalRoutes_Static_NextHopAny) NextHop() *LocalRoutes_Static_NextHop_NextHopAny { - return &LocalRoutes_Static_NextHop_NextHopAny{ +// NextHop returns from LocalRoutes_Static_NextHopPathAny the path struct for its child "next-hop". +func (n *LocalRoutes_Static_NextHopPathAny) NextHop() *LocalRoutes_Static_NextHop_NextHopPathAny { + return &LocalRoutes_Static_NextHop_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// Recurse returns from LocalRoutes_Static_NextHop the path struct for its child "recurse". -func (n *LocalRoutes_Static_NextHop) Recurse() *LocalRoutes_Static_NextHop_Recurse { - return &LocalRoutes_Static_NextHop_Recurse{ +// Recurse returns from LocalRoutes_Static_NextHopPath the path struct for its child "recurse". +func (n *LocalRoutes_Static_NextHopPath) Recurse() *LocalRoutes_Static_NextHop_RecursePath { + return &LocalRoutes_Static_NextHop_RecursePath{ NodePath: ygot.NewNodePath( - []string{"state", "recurse"}, + []string{"config", "recurse"}, map[string]interface{}{}, n, ), } } -// Recurse returns from LocalRoutes_Static_NextHopAny the path struct for its child "recurse". -func (n *LocalRoutes_Static_NextHopAny) Recurse() *LocalRoutes_Static_NextHop_RecurseAny { - return &LocalRoutes_Static_NextHop_RecurseAny{ +// Recurse returns from LocalRoutes_Static_NextHopPathAny the path struct for its child "recurse". +func (n *LocalRoutes_Static_NextHopPathAny) Recurse() *LocalRoutes_Static_NextHop_RecursePathAny { + return &LocalRoutes_Static_NextHop_RecursePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "recurse"}, + []string{"config", "recurse"}, map[string]interface{}{}, n, ), } } -// LocalRoutes_Static_NextHop_InterfaceRef represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRef struct { +// LocalRoutes_Static_NextHop_InterfaceRefPath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRefPath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_InterfaceRefAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRefAny struct { +// LocalRoutes_Static_NextHop_InterfaceRefPathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRefPathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_InterfaceRef_Interface represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRef_Interface struct { +// LocalRoutes_Static_NextHop_InterfaceRef_InterfacePath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRef_InterfaceAny struct { +// LocalRoutes_Static_NextHop_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_InterfaceRef_Subinterface represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRef_Subinterface struct { +// LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePath represents the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// LocalRoutes_Static_NextHop_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type LocalRoutes_Static_NextHop_InterfaceRef_SubinterfaceAny struct { +// LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-local-routing/local-routes/static-routes/static/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from LocalRoutes_Static_NextHop_InterfaceRef the path struct for its child "interface". -func (n *LocalRoutes_Static_NextHop_InterfaceRef) Interface() *LocalRoutes_Static_NextHop_InterfaceRef_Interface { - return &LocalRoutes_Static_NextHop_InterfaceRef_Interface{ +// Interface returns from LocalRoutes_Static_NextHop_InterfaceRefPath the path struct for its child "interface". +func (n *LocalRoutes_Static_NextHop_InterfaceRefPath) Interface() *LocalRoutes_Static_NextHop_InterfaceRef_InterfacePath { + return &LocalRoutes_Static_NextHop_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from LocalRoutes_Static_NextHop_InterfaceRefAny the path struct for its child "interface". -func (n *LocalRoutes_Static_NextHop_InterfaceRefAny) Interface() *LocalRoutes_Static_NextHop_InterfaceRef_InterfaceAny { - return &LocalRoutes_Static_NextHop_InterfaceRef_InterfaceAny{ +// Interface returns from LocalRoutes_Static_NextHop_InterfaceRefPathAny the path struct for its child "interface". +func (n *LocalRoutes_Static_NextHop_InterfaceRefPathAny) Interface() *LocalRoutes_Static_NextHop_InterfaceRef_InterfacePathAny { + return &LocalRoutes_Static_NextHop_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from LocalRoutes_Static_NextHop_InterfaceRef the path struct for its child "subinterface". -func (n *LocalRoutes_Static_NextHop_InterfaceRef) Subinterface() *LocalRoutes_Static_NextHop_InterfaceRef_Subinterface { - return &LocalRoutes_Static_NextHop_InterfaceRef_Subinterface{ +// Subinterface returns from LocalRoutes_Static_NextHop_InterfaceRefPath the path struct for its child "subinterface". +func (n *LocalRoutes_Static_NextHop_InterfaceRefPath) Subinterface() *LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePath { + return &LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from LocalRoutes_Static_NextHop_InterfaceRefAny the path struct for its child "subinterface". -func (n *LocalRoutes_Static_NextHop_InterfaceRefAny) Subinterface() *LocalRoutes_Static_NextHop_InterfaceRef_SubinterfaceAny { - return &LocalRoutes_Static_NextHop_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from LocalRoutes_Static_NextHop_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *LocalRoutes_Static_NextHop_InterfaceRefPathAny) Subinterface() *LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePathAny { + return &LocalRoutes_Static_NextHop_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Messages represents the /openconfig-messages/messages YANG schema element. -type Messages struct { +// MessagesPath represents the /openconfig-messages/messages YANG schema element. +type MessagesPath struct { *ygot.NodePath } -// MessagesAny represents the wildcard version of the /openconfig-messages/messages YANG schema element. -type MessagesAny struct { +// MessagesPathAny represents the wildcard version of the /openconfig-messages/messages YANG schema element. +type MessagesPathAny struct { *ygot.NodePath } -// Messages_Severity represents the /openconfig-messages/messages/state/severity YANG schema element. -type Messages_Severity struct { +// Messages_SeverityPath represents the /openconfig-messages/messages/config/severity YANG schema element. +type Messages_SeverityPath struct { *ygot.NodePath } -// Messages_SeverityAny represents the wildcard version of the /openconfig-messages/messages/state/severity YANG schema element. -type Messages_SeverityAny struct { +// Messages_SeverityPathAny represents the wildcard version of the /openconfig-messages/messages/config/severity YANG schema element. +type Messages_SeverityPathAny struct { *ygot.NodePath } -// DebugServiceAny returns from Messages the path struct for its child "debug-service". -func (n *Messages) DebugServiceAny() *Messages_DebugServiceAny { - return &Messages_DebugServiceAny{ +// DebugServiceAny returns from MessagesPath the path struct for its child "debug-service". +func (n *MessagesPath) DebugServiceAny() *Messages_DebugServicePathAny { + return &Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": "*"}, @@ -57344,9 +57558,9 @@ func (n *Messages) DebugServiceAny() *Messages_DebugServiceAny { } } -// DebugServiceAny returns from MessagesAny the path struct for its child "debug-service". -func (n *MessagesAny) DebugServiceAny() *Messages_DebugServiceAny { - return &Messages_DebugServiceAny{ +// DebugServiceAny returns from MessagesPathAny the path struct for its child "debug-service". +func (n *MessagesPathAny) DebugServiceAny() *Messages_DebugServicePathAny { + return &Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": "*"}, @@ -57355,9 +57569,9 @@ func (n *MessagesAny) DebugServiceAny() *Messages_DebugServiceAny { } } -// DebugService returns from Messages the path struct for its child "debug-service". -func (n *Messages) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE) *Messages_DebugService { - return &Messages_DebugService{ +// DebugService returns from MessagesPath the path struct for its child "debug-service". +func (n *MessagesPath) DebugService(Service E_OpenconfigMessages_DEBUG_SERVICE) *Messages_DebugServicePath { + return &Messages_DebugServicePath{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": Service}, @@ -57366,9 +57580,9 @@ func (n *Messages) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE) * } } -// DebugService returns from MessagesAny the path struct for its child "debug-service". -func (n *MessagesAny) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE) *Messages_DebugServiceAny { - return &Messages_DebugServiceAny{ +// DebugService returns from MessagesPathAny the path struct for its child "debug-service". +func (n *MessagesPathAny) DebugService(Service E_OpenconfigMessages_DEBUG_SERVICE) *Messages_DebugServicePathAny { + return &Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": Service}, @@ -57377,9 +57591,9 @@ func (n *MessagesAny) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE } } -// Message returns from Messages the path struct for its child "message". -func (n *Messages) Message() *Messages_Message { - return &Messages_Message{ +// Message returns from MessagesPath the path struct for its child "message". +func (n *MessagesPath) Message() *Messages_MessagePath { + return &Messages_MessagePath{ NodePath: ygot.NewNodePath( []string{"state", "message"}, map[string]interface{}{}, @@ -57388,9 +57602,9 @@ func (n *Messages) Message() *Messages_Message { } } -// Message returns from MessagesAny the path struct for its child "message". -func (n *MessagesAny) Message() *Messages_MessageAny { - return &Messages_MessageAny{ +// Message returns from MessagesPathAny the path struct for its child "message". +func (n *MessagesPathAny) Message() *Messages_MessagePathAny { + return &Messages_MessagePathAny{ NodePath: ygot.NewNodePath( []string{"state", "message"}, map[string]interface{}{}, @@ -57399,165 +57613,165 @@ func (n *MessagesAny) Message() *Messages_MessageAny { } } -// Severity returns from Messages the path struct for its child "severity". -func (n *Messages) Severity() *Messages_Severity { - return &Messages_Severity{ +// Severity returns from MessagesPath the path struct for its child "severity". +func (n *MessagesPath) Severity() *Messages_SeverityPath { + return &Messages_SeverityPath{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// Severity returns from MessagesAny the path struct for its child "severity". -func (n *MessagesAny) Severity() *Messages_SeverityAny { - return &Messages_SeverityAny{ +// Severity returns from MessagesPathAny the path struct for its child "severity". +func (n *MessagesPathAny) Severity() *Messages_SeverityPathAny { + return &Messages_SeverityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// Messages_DebugService represents the /openconfig-messages/messages/debug-entries/debug-service YANG schema element. -type Messages_DebugService struct { +// Messages_DebugServicePath represents the /openconfig-messages/messages/debug-entries/debug-service YANG schema element. +type Messages_DebugServicePath struct { *ygot.NodePath } -// Messages_DebugServiceAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service YANG schema element. -type Messages_DebugServiceAny struct { +// Messages_DebugServicePathAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service YANG schema element. +type Messages_DebugServicePathAny struct { *ygot.NodePath } -// Messages_DebugService_Enabled represents the /openconfig-messages/messages/debug-entries/debug-service/state/enabled YANG schema element. -type Messages_DebugService_Enabled struct { +// Messages_DebugService_EnabledPath represents the /openconfig-messages/messages/debug-entries/debug-service/config/enabled YANG schema element. +type Messages_DebugService_EnabledPath struct { *ygot.NodePath } -// Messages_DebugService_EnabledAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service/state/enabled YANG schema element. -type Messages_DebugService_EnabledAny struct { +// Messages_DebugService_EnabledPathAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service/config/enabled YANG schema element. +type Messages_DebugService_EnabledPathAny struct { *ygot.NodePath } -// Messages_DebugService_Service represents the /openconfig-messages/messages/debug-entries/debug-service/state/service YANG schema element. -type Messages_DebugService_Service struct { +// Messages_DebugService_ServicePath represents the /openconfig-messages/messages/debug-entries/debug-service/config/service YANG schema element. +type Messages_DebugService_ServicePath struct { *ygot.NodePath } -// Messages_DebugService_ServiceAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service/state/service YANG schema element. -type Messages_DebugService_ServiceAny struct { +// Messages_DebugService_ServicePathAny represents the wildcard version of the /openconfig-messages/messages/debug-entries/debug-service/config/service YANG schema element. +type Messages_DebugService_ServicePathAny struct { *ygot.NodePath } -// Enabled returns from Messages_DebugService the path struct for its child "enabled". -func (n *Messages_DebugService) Enabled() *Messages_DebugService_Enabled { - return &Messages_DebugService_Enabled{ +// Enabled returns from Messages_DebugServicePath the path struct for its child "enabled". +func (n *Messages_DebugServicePath) Enabled() *Messages_DebugService_EnabledPath { + return &Messages_DebugService_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from Messages_DebugServiceAny the path struct for its child "enabled". -func (n *Messages_DebugServiceAny) Enabled() *Messages_DebugService_EnabledAny { - return &Messages_DebugService_EnabledAny{ +// Enabled returns from Messages_DebugServicePathAny the path struct for its child "enabled". +func (n *Messages_DebugServicePathAny) Enabled() *Messages_DebugService_EnabledPathAny { + return &Messages_DebugService_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Service returns from Messages_DebugService the path struct for its child "service". -func (n *Messages_DebugService) Service() *Messages_DebugService_Service { - return &Messages_DebugService_Service{ +// Service returns from Messages_DebugServicePath the path struct for its child "service". +func (n *Messages_DebugServicePath) Service() *Messages_DebugService_ServicePath { + return &Messages_DebugService_ServicePath{ NodePath: ygot.NewNodePath( - []string{"state", "service"}, + []string{"config", "service"}, map[string]interface{}{}, n, ), } } -// Service returns from Messages_DebugServiceAny the path struct for its child "service". -func (n *Messages_DebugServiceAny) Service() *Messages_DebugService_ServiceAny { - return &Messages_DebugService_ServiceAny{ +// Service returns from Messages_DebugServicePathAny the path struct for its child "service". +func (n *Messages_DebugServicePathAny) Service() *Messages_DebugService_ServicePathAny { + return &Messages_DebugService_ServicePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "service"}, + []string{"config", "service"}, map[string]interface{}{}, n, ), } } -// Messages_Message represents the /openconfig-messages/messages/state/message YANG schema element. -type Messages_Message struct { +// Messages_MessagePath represents the /openconfig-messages/messages/state/message YANG schema element. +type Messages_MessagePath struct { *ygot.NodePath } -// Messages_MessageAny represents the wildcard version of the /openconfig-messages/messages/state/message YANG schema element. -type Messages_MessageAny struct { +// Messages_MessagePathAny represents the wildcard version of the /openconfig-messages/messages/state/message YANG schema element. +type Messages_MessagePathAny struct { *ygot.NodePath } -// Messages_Message_AppName represents the /openconfig-messages/messages/state/message/app-name YANG schema element. -type Messages_Message_AppName struct { +// Messages_Message_AppNamePath represents the /openconfig-messages/messages/state/message/app-name YANG schema element. +type Messages_Message_AppNamePath struct { *ygot.NodePath } -// Messages_Message_AppNameAny represents the wildcard version of the /openconfig-messages/messages/state/message/app-name YANG schema element. -type Messages_Message_AppNameAny struct { +// Messages_Message_AppNamePathAny represents the wildcard version of the /openconfig-messages/messages/state/message/app-name YANG schema element. +type Messages_Message_AppNamePathAny struct { *ygot.NodePath } -// Messages_Message_Msg represents the /openconfig-messages/messages/state/message/msg YANG schema element. -type Messages_Message_Msg struct { +// Messages_Message_MsgPath represents the /openconfig-messages/messages/state/message/msg YANG schema element. +type Messages_Message_MsgPath struct { *ygot.NodePath } -// Messages_Message_MsgAny represents the wildcard version of the /openconfig-messages/messages/state/message/msg YANG schema element. -type Messages_Message_MsgAny struct { +// Messages_Message_MsgPathAny represents the wildcard version of the /openconfig-messages/messages/state/message/msg YANG schema element. +type Messages_Message_MsgPathAny struct { *ygot.NodePath } -// Messages_Message_Msgid represents the /openconfig-messages/messages/state/message/msgid YANG schema element. -type Messages_Message_Msgid struct { +// Messages_Message_MsgidPath represents the /openconfig-messages/messages/state/message/msgid YANG schema element. +type Messages_Message_MsgidPath struct { *ygot.NodePath } -// Messages_Message_MsgidAny represents the wildcard version of the /openconfig-messages/messages/state/message/msgid YANG schema element. -type Messages_Message_MsgidAny struct { +// Messages_Message_MsgidPathAny represents the wildcard version of the /openconfig-messages/messages/state/message/msgid YANG schema element. +type Messages_Message_MsgidPathAny struct { *ygot.NodePath } -// Messages_Message_Priority represents the /openconfig-messages/messages/state/message/priority YANG schema element. -type Messages_Message_Priority struct { +// Messages_Message_PriorityPath represents the /openconfig-messages/messages/state/message/priority YANG schema element. +type Messages_Message_PriorityPath struct { *ygot.NodePath } -// Messages_Message_PriorityAny represents the wildcard version of the /openconfig-messages/messages/state/message/priority YANG schema element. -type Messages_Message_PriorityAny struct { +// Messages_Message_PriorityPathAny represents the wildcard version of the /openconfig-messages/messages/state/message/priority YANG schema element. +type Messages_Message_PriorityPathAny struct { *ygot.NodePath } -// Messages_Message_Procid represents the /openconfig-messages/messages/state/message/procid YANG schema element. -type Messages_Message_Procid struct { +// Messages_Message_ProcidPath represents the /openconfig-messages/messages/state/message/procid YANG schema element. +type Messages_Message_ProcidPath struct { *ygot.NodePath } -// Messages_Message_ProcidAny represents the wildcard version of the /openconfig-messages/messages/state/message/procid YANG schema element. -type Messages_Message_ProcidAny struct { +// Messages_Message_ProcidPathAny represents the wildcard version of the /openconfig-messages/messages/state/message/procid YANG schema element. +type Messages_Message_ProcidPathAny struct { *ygot.NodePath } -// AppName returns from Messages_Message the path struct for its child "app-name". -func (n *Messages_Message) AppName() *Messages_Message_AppName { - return &Messages_Message_AppName{ +// AppName returns from Messages_MessagePath the path struct for its child "app-name". +func (n *Messages_MessagePath) AppName() *Messages_Message_AppNamePath { + return &Messages_Message_AppNamePath{ NodePath: ygot.NewNodePath( []string{"app-name"}, map[string]interface{}{}, @@ -57566,9 +57780,9 @@ func (n *Messages_Message) AppName() *Messages_Message_AppName { } } -// AppName returns from Messages_MessageAny the path struct for its child "app-name". -func (n *Messages_MessageAny) AppName() *Messages_Message_AppNameAny { - return &Messages_Message_AppNameAny{ +// AppName returns from Messages_MessagePathAny the path struct for its child "app-name". +func (n *Messages_MessagePathAny) AppName() *Messages_Message_AppNamePathAny { + return &Messages_Message_AppNamePathAny{ NodePath: ygot.NewNodePath( []string{"app-name"}, map[string]interface{}{}, @@ -57577,9 +57791,9 @@ func (n *Messages_MessageAny) AppName() *Messages_Message_AppNameAny { } } -// Msg returns from Messages_Message the path struct for its child "msg". -func (n *Messages_Message) Msg() *Messages_Message_Msg { - return &Messages_Message_Msg{ +// Msg returns from Messages_MessagePath the path struct for its child "msg". +func (n *Messages_MessagePath) Msg() *Messages_Message_MsgPath { + return &Messages_Message_MsgPath{ NodePath: ygot.NewNodePath( []string{"msg"}, map[string]interface{}{}, @@ -57588,9 +57802,9 @@ func (n *Messages_Message) Msg() *Messages_Message_Msg { } } -// Msg returns from Messages_MessageAny the path struct for its child "msg". -func (n *Messages_MessageAny) Msg() *Messages_Message_MsgAny { - return &Messages_Message_MsgAny{ +// Msg returns from Messages_MessagePathAny the path struct for its child "msg". +func (n *Messages_MessagePathAny) Msg() *Messages_Message_MsgPathAny { + return &Messages_Message_MsgPathAny{ NodePath: ygot.NewNodePath( []string{"msg"}, map[string]interface{}{}, @@ -57599,9 +57813,9 @@ func (n *Messages_MessageAny) Msg() *Messages_Message_MsgAny { } } -// Msgid returns from Messages_Message the path struct for its child "msgid". -func (n *Messages_Message) Msgid() *Messages_Message_Msgid { - return &Messages_Message_Msgid{ +// Msgid returns from Messages_MessagePath the path struct for its child "msgid". +func (n *Messages_MessagePath) Msgid() *Messages_Message_MsgidPath { + return &Messages_Message_MsgidPath{ NodePath: ygot.NewNodePath( []string{"msgid"}, map[string]interface{}{}, @@ -57610,9 +57824,9 @@ func (n *Messages_Message) Msgid() *Messages_Message_Msgid { } } -// Msgid returns from Messages_MessageAny the path struct for its child "msgid". -func (n *Messages_MessageAny) Msgid() *Messages_Message_MsgidAny { - return &Messages_Message_MsgidAny{ +// Msgid returns from Messages_MessagePathAny the path struct for its child "msgid". +func (n *Messages_MessagePathAny) Msgid() *Messages_Message_MsgidPathAny { + return &Messages_Message_MsgidPathAny{ NodePath: ygot.NewNodePath( []string{"msgid"}, map[string]interface{}{}, @@ -57621,9 +57835,9 @@ func (n *Messages_MessageAny) Msgid() *Messages_Message_MsgidAny { } } -// Priority returns from Messages_Message the path struct for its child "priority". -func (n *Messages_Message) Priority() *Messages_Message_Priority { - return &Messages_Message_Priority{ +// Priority returns from Messages_MessagePath the path struct for its child "priority". +func (n *Messages_MessagePath) Priority() *Messages_Message_PriorityPath { + return &Messages_Message_PriorityPath{ NodePath: ygot.NewNodePath( []string{"priority"}, map[string]interface{}{}, @@ -57632,9 +57846,9 @@ func (n *Messages_Message) Priority() *Messages_Message_Priority { } } -// Priority returns from Messages_MessageAny the path struct for its child "priority". -func (n *Messages_MessageAny) Priority() *Messages_Message_PriorityAny { - return &Messages_Message_PriorityAny{ +// Priority returns from Messages_MessagePathAny the path struct for its child "priority". +func (n *Messages_MessagePathAny) Priority() *Messages_Message_PriorityPathAny { + return &Messages_Message_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"priority"}, map[string]interface{}{}, @@ -57643,9 +57857,9 @@ func (n *Messages_MessageAny) Priority() *Messages_Message_PriorityAny { } } -// Procid returns from Messages_Message the path struct for its child "procid". -func (n *Messages_Message) Procid() *Messages_Message_Procid { - return &Messages_Message_Procid{ +// Procid returns from Messages_MessagePath the path struct for its child "procid". +func (n *Messages_MessagePath) Procid() *Messages_Message_ProcidPath { + return &Messages_Message_ProcidPath{ NodePath: ygot.NewNodePath( []string{"procid"}, map[string]interface{}{}, @@ -57654,9 +57868,9 @@ func (n *Messages_Message) Procid() *Messages_Message_Procid { } } -// Procid returns from Messages_MessageAny the path struct for its child "procid". -func (n *Messages_MessageAny) Procid() *Messages_Message_ProcidAny { - return &Messages_Message_ProcidAny{ +// Procid returns from Messages_MessagePathAny the path struct for its child "procid". +func (n *Messages_MessagePathAny) Procid() *Messages_Message_ProcidPathAny { + return &Messages_Message_ProcidPathAny{ NodePath: ygot.NewNodePath( []string{"procid"}, map[string]interface{}{}, @@ -57665,99 +57879,99 @@ func (n *Messages_MessageAny) Procid() *Messages_Message_ProcidAny { } } -// NetworkInstance represents the /openconfig-network-instance/network-instances/network-instance YANG schema element. -type NetworkInstance struct { +// NetworkInstancePath represents the /openconfig-network-instance/network-instances/network-instance YANG schema element. +type NetworkInstancePath struct { *ygot.NodePath } -// NetworkInstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance YANG schema element. -type NetworkInstanceAny struct { +// NetworkInstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance YANG schema element. +type NetworkInstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Description represents the /openconfig-network-instance/network-instances/network-instance/state/description YANG schema element. -type NetworkInstance_Description struct { +// NetworkInstance_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/config/description YANG schema element. +type NetworkInstance_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/description YANG schema element. -type NetworkInstance_DescriptionAny struct { +// NetworkInstance_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/description YANG schema element. +type NetworkInstance_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Enabled represents the /openconfig-network-instance/network-instances/network-instance/state/enabled YANG schema element. -type NetworkInstance_Enabled struct { +// NetworkInstance_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/config/enabled YANG schema element. +type NetworkInstance_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/enabled YANG schema element. -type NetworkInstance_EnabledAny struct { +// NetworkInstance_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/enabled YANG schema element. +type NetworkInstance_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_EnabledAddressFamilies represents the /openconfig-network-instance/network-instances/network-instance/state/enabled-address-families YANG schema element. -type NetworkInstance_EnabledAddressFamilies struct { +// NetworkInstance_EnabledAddressFamiliesPath represents the /openconfig-network-instance/network-instances/network-instance/config/enabled-address-families YANG schema element. +type NetworkInstance_EnabledAddressFamiliesPath struct { *ygot.NodePath } -// NetworkInstance_EnabledAddressFamiliesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/enabled-address-families YANG schema element. -type NetworkInstance_EnabledAddressFamiliesAny struct { +// NetworkInstance_EnabledAddressFamiliesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/enabled-address-families YANG schema element. +type NetworkInstance_EnabledAddressFamiliesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mtu represents the /openconfig-network-instance/network-instances/network-instance/state/mtu YANG schema element. -type NetworkInstance_Mtu struct { +// NetworkInstance_MtuPath represents the /openconfig-network-instance/network-instances/network-instance/config/mtu YANG schema element. +type NetworkInstance_MtuPath struct { *ygot.NodePath } -// NetworkInstance_MtuAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/mtu YANG schema element. -type NetworkInstance_MtuAny struct { +// NetworkInstance_MtuPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/mtu YANG schema element. +type NetworkInstance_MtuPathAny struct { *ygot.NodePath } -// NetworkInstance_Name represents the /openconfig-network-instance/network-instances/network-instance/state/name YANG schema element. -type NetworkInstance_Name struct { +// NetworkInstance_NamePath represents the /openconfig-network-instance/network-instances/network-instance/config/name YANG schema element. +type NetworkInstance_NamePath struct { *ygot.NodePath } -// NetworkInstance_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/name YANG schema element. -type NetworkInstance_NameAny struct { +// NetworkInstance_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/name YANG schema element. +type NetworkInstance_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_RouteDistinguisher represents the /openconfig-network-instance/network-instances/network-instance/state/route-distinguisher YANG schema element. -type NetworkInstance_RouteDistinguisher struct { +// NetworkInstance_RouteDistinguisherPath represents the /openconfig-network-instance/network-instances/network-instance/config/route-distinguisher YANG schema element. +type NetworkInstance_RouteDistinguisherPath struct { *ygot.NodePath } -// NetworkInstance_RouteDistinguisherAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/route-distinguisher YANG schema element. -type NetworkInstance_RouteDistinguisherAny struct { +// NetworkInstance_RouteDistinguisherPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/route-distinguisher YANG schema element. +type NetworkInstance_RouteDistinguisherPathAny struct { *ygot.NodePath } -// NetworkInstance_RouterId represents the /openconfig-network-instance/network-instances/network-instance/state/router-id YANG schema element. -type NetworkInstance_RouterId struct { +// NetworkInstance_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/config/router-id YANG schema element. +type NetworkInstance_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/router-id YANG schema element. -type NetworkInstance_RouterIdAny struct { +// NetworkInstance_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/router-id YANG schema element. +type NetworkInstance_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Type represents the /openconfig-network-instance/network-instances/network-instance/state/type YANG schema element. -type NetworkInstance_Type struct { +// NetworkInstance_TypePath represents the /openconfig-network-instance/network-instances/network-instance/config/type YANG schema element. +type NetworkInstance_TypePath struct { *ygot.NodePath } -// NetworkInstance_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/state/type YANG schema element. -type NetworkInstance_TypeAny struct { +// NetworkInstance_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/config/type YANG schema element. +type NetworkInstance_TypePathAny struct { *ygot.NodePath } -// Afts returns from NetworkInstance the path struct for its child "afts". -func (n *NetworkInstance) Afts() *NetworkInstance_Afts { - return &NetworkInstance_Afts{ +// Afts returns from NetworkInstancePath the path struct for its child "afts". +func (n *NetworkInstancePath) Afts() *NetworkInstance_AftsPath { + return &NetworkInstance_AftsPath{ NodePath: ygot.NewNodePath( []string{"afts"}, map[string]interface{}{}, @@ -57766,9 +57980,9 @@ func (n *NetworkInstance) Afts() *NetworkInstance_Afts { } } -// Afts returns from NetworkInstanceAny the path struct for its child "afts". -func (n *NetworkInstanceAny) Afts() *NetworkInstance_AftsAny { - return &NetworkInstance_AftsAny{ +// Afts returns from NetworkInstancePathAny the path struct for its child "afts". +func (n *NetworkInstancePathAny) Afts() *NetworkInstance_AftsPathAny { + return &NetworkInstance_AftsPathAny{ NodePath: ygot.NewNodePath( []string{"afts"}, map[string]interface{}{}, @@ -57777,9 +57991,9 @@ func (n *NetworkInstanceAny) Afts() *NetworkInstance_AftsAny { } } -// ConnectionPointAny returns from NetworkInstance the path struct for its child "connection-point". -func (n *NetworkInstance) ConnectionPointAny() *NetworkInstance_ConnectionPointAny { - return &NetworkInstance_ConnectionPointAny{ +// ConnectionPointAny returns from NetworkInstancePath the path struct for its child "connection-point". +func (n *NetworkInstancePath) ConnectionPointAny() *NetworkInstance_ConnectionPointPathAny { + return &NetworkInstance_ConnectionPointPathAny{ NodePath: ygot.NewNodePath( []string{"connection-points", "connection-point"}, map[string]interface{}{"connection-point-id": "*"}, @@ -57788,9 +58002,9 @@ func (n *NetworkInstance) ConnectionPointAny() *NetworkInstance_ConnectionPointA } } -// ConnectionPointAny returns from NetworkInstanceAny the path struct for its child "connection-point". -func (n *NetworkInstanceAny) ConnectionPointAny() *NetworkInstance_ConnectionPointAny { - return &NetworkInstance_ConnectionPointAny{ +// ConnectionPointAny returns from NetworkInstancePathAny the path struct for its child "connection-point". +func (n *NetworkInstancePathAny) ConnectionPointAny() *NetworkInstance_ConnectionPointPathAny { + return &NetworkInstance_ConnectionPointPathAny{ NodePath: ygot.NewNodePath( []string{"connection-points", "connection-point"}, map[string]interface{}{"connection-point-id": "*"}, @@ -57799,9 +58013,9 @@ func (n *NetworkInstanceAny) ConnectionPointAny() *NetworkInstance_ConnectionPoi } } -// ConnectionPoint returns from NetworkInstance the path struct for its child "connection-point". -func (n *NetworkInstance) ConnectionPoint(ConnectionPointId string) *NetworkInstance_ConnectionPoint { - return &NetworkInstance_ConnectionPoint{ +// ConnectionPoint returns from NetworkInstancePath the path struct for its child "connection-point". +func (n *NetworkInstancePath) ConnectionPoint(ConnectionPointId string) *NetworkInstance_ConnectionPointPath { + return &NetworkInstance_ConnectionPointPath{ NodePath: ygot.NewNodePath( []string{"connection-points", "connection-point"}, map[string]interface{}{"connection-point-id": ConnectionPointId}, @@ -57810,9 +58024,9 @@ func (n *NetworkInstance) ConnectionPoint(ConnectionPointId string) *NetworkInst } } -// ConnectionPoint returns from NetworkInstanceAny the path struct for its child "connection-point". -func (n *NetworkInstanceAny) ConnectionPoint(ConnectionPointId string) *NetworkInstance_ConnectionPointAny { - return &NetworkInstance_ConnectionPointAny{ +// ConnectionPoint returns from NetworkInstancePathAny the path struct for its child "connection-point". +func (n *NetworkInstancePathAny) ConnectionPoint(ConnectionPointId string) *NetworkInstance_ConnectionPointPathAny { + return &NetworkInstance_ConnectionPointPathAny{ NodePath: ygot.NewNodePath( []string{"connection-points", "connection-point"}, map[string]interface{}{"connection-point-id": ConnectionPointId}, @@ -57821,75 +58035,75 @@ func (n *NetworkInstanceAny) ConnectionPoint(ConnectionPointId string) *NetworkI } } -// Description returns from NetworkInstance the path struct for its child "description". -func (n *NetworkInstance) Description() *NetworkInstance_Description { - return &NetworkInstance_Description{ +// Description returns from NetworkInstancePath the path struct for its child "description". +func (n *NetworkInstancePath) Description() *NetworkInstance_DescriptionPath { + return &NetworkInstance_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstanceAny the path struct for its child "description". -func (n *NetworkInstanceAny) Description() *NetworkInstance_DescriptionAny { - return &NetworkInstance_DescriptionAny{ +// Description returns from NetworkInstancePathAny the path struct for its child "description". +func (n *NetworkInstancePathAny) Description() *NetworkInstance_DescriptionPathAny { + return &NetworkInstance_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance the path struct for its child "enabled". -func (n *NetworkInstance) Enabled() *NetworkInstance_Enabled { - return &NetworkInstance_Enabled{ +// Enabled returns from NetworkInstancePath the path struct for its child "enabled". +func (n *NetworkInstancePath) Enabled() *NetworkInstance_EnabledPath { + return &NetworkInstance_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstanceAny the path struct for its child "enabled". -func (n *NetworkInstanceAny) Enabled() *NetworkInstance_EnabledAny { - return &NetworkInstance_EnabledAny{ +// Enabled returns from NetworkInstancePathAny the path struct for its child "enabled". +func (n *NetworkInstancePathAny) Enabled() *NetworkInstance_EnabledPathAny { + return &NetworkInstance_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// EnabledAddressFamilies returns from NetworkInstance the path struct for its child "enabled-address-families". -func (n *NetworkInstance) EnabledAddressFamilies() *NetworkInstance_EnabledAddressFamilies { - return &NetworkInstance_EnabledAddressFamilies{ +// EnabledAddressFamilies returns from NetworkInstancePath the path struct for its child "enabled-address-families". +func (n *NetworkInstancePath) EnabledAddressFamilies() *NetworkInstance_EnabledAddressFamiliesPath { + return &NetworkInstance_EnabledAddressFamiliesPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled-address-families"}, + []string{"config", "enabled-address-families"}, map[string]interface{}{}, n, ), } } -// EnabledAddressFamilies returns from NetworkInstanceAny the path struct for its child "enabled-address-families". -func (n *NetworkInstanceAny) EnabledAddressFamilies() *NetworkInstance_EnabledAddressFamiliesAny { - return &NetworkInstance_EnabledAddressFamiliesAny{ +// EnabledAddressFamilies returns from NetworkInstancePathAny the path struct for its child "enabled-address-families". +func (n *NetworkInstancePathAny) EnabledAddressFamilies() *NetworkInstance_EnabledAddressFamiliesPathAny { + return &NetworkInstance_EnabledAddressFamiliesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled-address-families"}, + []string{"config", "enabled-address-families"}, map[string]interface{}{}, n, ), } } -// Encapsulation returns from NetworkInstance the path struct for its child "encapsulation". -func (n *NetworkInstance) Encapsulation() *NetworkInstance_Encapsulation { - return &NetworkInstance_Encapsulation{ +// Encapsulation returns from NetworkInstancePath the path struct for its child "encapsulation". +func (n *NetworkInstancePath) Encapsulation() *NetworkInstance_EncapsulationPath { + return &NetworkInstance_EncapsulationPath{ NodePath: ygot.NewNodePath( []string{"encapsulation"}, map[string]interface{}{}, @@ -57898,9 +58112,9 @@ func (n *NetworkInstance) Encapsulation() *NetworkInstance_Encapsulation { } } -// Encapsulation returns from NetworkInstanceAny the path struct for its child "encapsulation". -func (n *NetworkInstanceAny) Encapsulation() *NetworkInstance_EncapsulationAny { - return &NetworkInstance_EncapsulationAny{ +// Encapsulation returns from NetworkInstancePathAny the path struct for its child "encapsulation". +func (n *NetworkInstancePathAny) Encapsulation() *NetworkInstance_EncapsulationPathAny { + return &NetworkInstance_EncapsulationPathAny{ NodePath: ygot.NewNodePath( []string{"encapsulation"}, map[string]interface{}{}, @@ -57909,9 +58123,9 @@ func (n *NetworkInstanceAny) Encapsulation() *NetworkInstance_EncapsulationAny { } } -// Fdb returns from NetworkInstance the path struct for its child "fdb". -func (n *NetworkInstance) Fdb() *NetworkInstance_Fdb { - return &NetworkInstance_Fdb{ +// Fdb returns from NetworkInstancePath the path struct for its child "fdb". +func (n *NetworkInstancePath) Fdb() *NetworkInstance_FdbPath { + return &NetworkInstance_FdbPath{ NodePath: ygot.NewNodePath( []string{"fdb"}, map[string]interface{}{}, @@ -57920,9 +58134,9 @@ func (n *NetworkInstance) Fdb() *NetworkInstance_Fdb { } } -// Fdb returns from NetworkInstanceAny the path struct for its child "fdb". -func (n *NetworkInstanceAny) Fdb() *NetworkInstance_FdbAny { - return &NetworkInstance_FdbAny{ +// Fdb returns from NetworkInstancePathAny the path struct for its child "fdb". +func (n *NetworkInstancePathAny) Fdb() *NetworkInstance_FdbPathAny { + return &NetworkInstance_FdbPathAny{ NodePath: ygot.NewNodePath( []string{"fdb"}, map[string]interface{}{}, @@ -57931,9 +58145,9 @@ func (n *NetworkInstanceAny) Fdb() *NetworkInstance_FdbAny { } } -// InterInstancePolicies returns from NetworkInstance the path struct for its child "inter-instance-policies". -func (n *NetworkInstance) InterInstancePolicies() *NetworkInstance_InterInstancePolicies { - return &NetworkInstance_InterInstancePolicies{ +// InterInstancePolicies returns from NetworkInstancePath the path struct for its child "inter-instance-policies". +func (n *NetworkInstancePath) InterInstancePolicies() *NetworkInstance_InterInstancePoliciesPath { + return &NetworkInstance_InterInstancePoliciesPath{ NodePath: ygot.NewNodePath( []string{"inter-instance-policies"}, map[string]interface{}{}, @@ -57942,9 +58156,9 @@ func (n *NetworkInstance) InterInstancePolicies() *NetworkInstance_InterInstance } } -// InterInstancePolicies returns from NetworkInstanceAny the path struct for its child "inter-instance-policies". -func (n *NetworkInstanceAny) InterInstancePolicies() *NetworkInstance_InterInstancePoliciesAny { - return &NetworkInstance_InterInstancePoliciesAny{ +// InterInstancePolicies returns from NetworkInstancePathAny the path struct for its child "inter-instance-policies". +func (n *NetworkInstancePathAny) InterInstancePolicies() *NetworkInstance_InterInstancePoliciesPathAny { + return &NetworkInstance_InterInstancePoliciesPathAny{ NodePath: ygot.NewNodePath( []string{"inter-instance-policies"}, map[string]interface{}{}, @@ -57953,9 +58167,9 @@ func (n *NetworkInstanceAny) InterInstancePolicies() *NetworkInstance_InterInsta } } -// InterfaceAny returns from NetworkInstance the path struct for its child "interface". -func (n *NetworkInstance) InterfaceAny() *NetworkInstance_InterfaceAny { - return &NetworkInstance_InterfaceAny{ +// InterfaceAny returns from NetworkInstancePath the path struct for its child "interface". +func (n *NetworkInstancePath) InterfaceAny() *NetworkInstance_InterfacePathAny { + return &NetworkInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -57964,9 +58178,9 @@ func (n *NetworkInstance) InterfaceAny() *NetworkInstance_InterfaceAny { } } -// InterfaceAny returns from NetworkInstanceAny the path struct for its child "interface". -func (n *NetworkInstanceAny) InterfaceAny() *NetworkInstance_InterfaceAny { - return &NetworkInstance_InterfaceAny{ +// InterfaceAny returns from NetworkInstancePathAny the path struct for its child "interface". +func (n *NetworkInstancePathAny) InterfaceAny() *NetworkInstance_InterfacePathAny { + return &NetworkInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -57975,9 +58189,9 @@ func (n *NetworkInstanceAny) InterfaceAny() *NetworkInstance_InterfaceAny { } } -// Interface returns from NetworkInstance the path struct for its child "interface". -func (n *NetworkInstance) Interface(Id string) *NetworkInstance_Interface { - return &NetworkInstance_Interface{ +// Interface returns from NetworkInstancePath the path struct for its child "interface". +func (n *NetworkInstancePath) Interface(Id string) *NetworkInstance_InterfacePath { + return &NetworkInstance_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -57986,9 +58200,9 @@ func (n *NetworkInstance) Interface(Id string) *NetworkInstance_Interface { } } -// Interface returns from NetworkInstanceAny the path struct for its child "interface". -func (n *NetworkInstanceAny) Interface(Id string) *NetworkInstance_InterfaceAny { - return &NetworkInstance_InterfaceAny{ +// Interface returns from NetworkInstancePathAny the path struct for its child "interface". +func (n *NetworkInstancePathAny) Interface(Id string) *NetworkInstance_InterfacePathAny { + return &NetworkInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -57997,9 +58211,9 @@ func (n *NetworkInstanceAny) Interface(Id string) *NetworkInstance_InterfaceAny } } -// Mpls returns from NetworkInstance the path struct for its child "mpls". -func (n *NetworkInstance) Mpls() *NetworkInstance_Mpls { - return &NetworkInstance_Mpls{ +// Mpls returns from NetworkInstancePath the path struct for its child "mpls". +func (n *NetworkInstancePath) Mpls() *NetworkInstance_MplsPath { + return &NetworkInstance_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -58008,9 +58222,9 @@ func (n *NetworkInstance) Mpls() *NetworkInstance_Mpls { } } -// Mpls returns from NetworkInstanceAny the path struct for its child "mpls". -func (n *NetworkInstanceAny) Mpls() *NetworkInstance_MplsAny { - return &NetworkInstance_MplsAny{ +// Mpls returns from NetworkInstancePathAny the path struct for its child "mpls". +func (n *NetworkInstancePathAny) Mpls() *NetworkInstance_MplsPathAny { + return &NetworkInstance_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -58019,53 +58233,53 @@ func (n *NetworkInstanceAny) Mpls() *NetworkInstance_MplsAny { } } -// Mtu returns from NetworkInstance the path struct for its child "mtu". -func (n *NetworkInstance) Mtu() *NetworkInstance_Mtu { - return &NetworkInstance_Mtu{ +// Mtu returns from NetworkInstancePath the path struct for its child "mtu". +func (n *NetworkInstancePath) Mtu() *NetworkInstance_MtuPath { + return &NetworkInstance_MtuPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Mtu returns from NetworkInstanceAny the path struct for its child "mtu". -func (n *NetworkInstanceAny) Mtu() *NetworkInstance_MtuAny { - return &NetworkInstance_MtuAny{ +// Mtu returns from NetworkInstancePathAny the path struct for its child "mtu". +func (n *NetworkInstancePathAny) Mtu() *NetworkInstance_MtuPathAny { + return &NetworkInstance_MtuPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu"}, + []string{"config", "mtu"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance the path struct for its child "name". -func (n *NetworkInstance) Name() *NetworkInstance_Name { - return &NetworkInstance_Name{ +// Name returns from NetworkInstancePath the path struct for its child "name". +func (n *NetworkInstancePath) Name() *NetworkInstance_NamePath { + return &NetworkInstance_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstanceAny the path struct for its child "name". -func (n *NetworkInstanceAny) Name() *NetworkInstance_NameAny { - return &NetworkInstance_NameAny{ +// Name returns from NetworkInstancePathAny the path struct for its child "name". +func (n *NetworkInstancePathAny) Name() *NetworkInstance_NamePathAny { + return &NetworkInstance_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PolicyForwarding returns from NetworkInstance the path struct for its child "policy-forwarding". -func (n *NetworkInstance) PolicyForwarding() *NetworkInstance_PolicyForwarding { - return &NetworkInstance_PolicyForwarding{ +// PolicyForwarding returns from NetworkInstancePath the path struct for its child "policy-forwarding". +func (n *NetworkInstancePath) PolicyForwarding() *NetworkInstance_PolicyForwardingPath { + return &NetworkInstance_PolicyForwardingPath{ NodePath: ygot.NewNodePath( []string{"policy-forwarding"}, map[string]interface{}{}, @@ -58074,9 +58288,9 @@ func (n *NetworkInstance) PolicyForwarding() *NetworkInstance_PolicyForwarding { } } -// PolicyForwarding returns from NetworkInstanceAny the path struct for its child "policy-forwarding". -func (n *NetworkInstanceAny) PolicyForwarding() *NetworkInstance_PolicyForwardingAny { - return &NetworkInstance_PolicyForwardingAny{ +// PolicyForwarding returns from NetworkInstancePathAny the path struct for its child "policy-forwarding". +func (n *NetworkInstancePathAny) PolicyForwarding() *NetworkInstance_PolicyForwardingPathAny { + return &NetworkInstance_PolicyForwardingPathAny{ NodePath: ygot.NewNodePath( []string{"policy-forwarding"}, map[string]interface{}{}, @@ -58085,9 +58299,9 @@ func (n *NetworkInstanceAny) PolicyForwarding() *NetworkInstance_PolicyForwardin } } -// ProtocolAny returns from NetworkInstance the path struct for its child "protocol". -func (n *NetworkInstance) ProtocolAny() *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAny returns from NetworkInstancePath the path struct for its child "protocol". +func (n *NetworkInstancePath) ProtocolAny() *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": "*", "name": "*"}, @@ -58096,9 +58310,9 @@ func (n *NetworkInstance) ProtocolAny() *NetworkInstance_ProtocolAny { } } -// ProtocolAny returns from NetworkInstanceAny the path struct for its child "protocol". -func (n *NetworkInstanceAny) ProtocolAny() *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAny returns from NetworkInstancePathAny the path struct for its child "protocol". +func (n *NetworkInstancePathAny) ProtocolAny() *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": "*", "name": "*"}, @@ -58107,9 +58321,9 @@ func (n *NetworkInstanceAny) ProtocolAny() *NetworkInstance_ProtocolAny { } } -// ProtocolAnyName returns from NetworkInstance the path struct for its child "protocol". -func (n *NetworkInstance) ProtocolAnyName(Identifier oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAnyName returns from NetworkInstancePath the path struct for its child "protocol". +func (n *NetworkInstancePath) ProtocolAnyName(Identifier E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": Identifier, "name": "*"}, @@ -58118,9 +58332,9 @@ func (n *NetworkInstance) ProtocolAnyName(Identifier oc.E_OpenconfigPolicyTypes_ } } -// ProtocolAnyName returns from NetworkInstanceAny the path struct for its child "protocol". -func (n *NetworkInstanceAny) ProtocolAnyName(Identifier oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAnyName returns from NetworkInstancePathAny the path struct for its child "protocol". +func (n *NetworkInstancePathAny) ProtocolAnyName(Identifier E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": Identifier, "name": "*"}, @@ -58129,9 +58343,9 @@ func (n *NetworkInstanceAny) ProtocolAnyName(Identifier oc.E_OpenconfigPolicyTyp } } -// ProtocolAnyIdentifier returns from NetworkInstance the path struct for its child "protocol". -func (n *NetworkInstance) ProtocolAnyIdentifier(Name string) *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAnyIdentifier returns from NetworkInstancePath the path struct for its child "protocol". +func (n *NetworkInstancePath) ProtocolAnyIdentifier(Name string) *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": "*", "name": Name}, @@ -58140,9 +58354,9 @@ func (n *NetworkInstance) ProtocolAnyIdentifier(Name string) *NetworkInstance_Pr } } -// ProtocolAnyIdentifier returns from NetworkInstanceAny the path struct for its child "protocol". -func (n *NetworkInstanceAny) ProtocolAnyIdentifier(Name string) *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// ProtocolAnyIdentifier returns from NetworkInstancePathAny the path struct for its child "protocol". +func (n *NetworkInstancePathAny) ProtocolAnyIdentifier(Name string) *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": "*", "name": Name}, @@ -58151,9 +58365,9 @@ func (n *NetworkInstanceAny) ProtocolAnyIdentifier(Name string) *NetworkInstance } } -// Protocol returns from NetworkInstance the path struct for its child "protocol". -func (n *NetworkInstance) Protocol(Identifier oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, Name string) *NetworkInstance_Protocol { - return &NetworkInstance_Protocol{ +// Protocol returns from NetworkInstancePath the path struct for its child "protocol". +func (n *NetworkInstancePath) Protocol(Identifier E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, Name string) *NetworkInstance_ProtocolPath { + return &NetworkInstance_ProtocolPath{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": Identifier, "name": Name}, @@ -58162,9 +58376,9 @@ func (n *NetworkInstance) Protocol(Identifier oc.E_OpenconfigPolicyTypes_INSTALL } } -// Protocol returns from NetworkInstanceAny the path struct for its child "protocol". -func (n *NetworkInstanceAny) Protocol(Identifier oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, Name string) *NetworkInstance_ProtocolAny { - return &NetworkInstance_ProtocolAny{ +// Protocol returns from NetworkInstancePathAny the path struct for its child "protocol". +func (n *NetworkInstancePathAny) Protocol(Identifier E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, Name string) *NetworkInstance_ProtocolPathAny { + return &NetworkInstance_ProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"protocols", "protocol"}, map[string]interface{}{"identifier": Identifier, "name": Name}, @@ -58173,31 +58387,31 @@ func (n *NetworkInstanceAny) Protocol(Identifier oc.E_OpenconfigPolicyTypes_INST } } -// RouteDistinguisher returns from NetworkInstance the path struct for its child "route-distinguisher". -func (n *NetworkInstance) RouteDistinguisher() *NetworkInstance_RouteDistinguisher { - return &NetworkInstance_RouteDistinguisher{ +// RouteDistinguisher returns from NetworkInstancePath the path struct for its child "route-distinguisher". +func (n *NetworkInstancePath) RouteDistinguisher() *NetworkInstance_RouteDistinguisherPath { + return &NetworkInstance_RouteDistinguisherPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-distinguisher"}, + []string{"config", "route-distinguisher"}, map[string]interface{}{}, n, ), } } -// RouteDistinguisher returns from NetworkInstanceAny the path struct for its child "route-distinguisher". -func (n *NetworkInstanceAny) RouteDistinguisher() *NetworkInstance_RouteDistinguisherAny { - return &NetworkInstance_RouteDistinguisherAny{ +// RouteDistinguisher returns from NetworkInstancePathAny the path struct for its child "route-distinguisher". +func (n *NetworkInstancePathAny) RouteDistinguisher() *NetworkInstance_RouteDistinguisherPathAny { + return &NetworkInstance_RouteDistinguisherPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-distinguisher"}, + []string{"config", "route-distinguisher"}, map[string]interface{}{}, n, ), } } -// RouteLimitAny returns from NetworkInstance the path struct for its child "route-limit". -func (n *NetworkInstance) RouteLimitAny() *NetworkInstance_RouteLimitAny { - return &NetworkInstance_RouteLimitAny{ +// RouteLimitAny returns from NetworkInstancePath the path struct for its child "route-limit". +func (n *NetworkInstancePath) RouteLimitAny() *NetworkInstance_RouteLimitPathAny { + return &NetworkInstance_RouteLimitPathAny{ NodePath: ygot.NewNodePath( []string{"route-limits", "route-limit"}, map[string]interface{}{"afi": "*"}, @@ -58206,9 +58420,9 @@ func (n *NetworkInstance) RouteLimitAny() *NetworkInstance_RouteLimitAny { } } -// RouteLimitAny returns from NetworkInstanceAny the path struct for its child "route-limit". -func (n *NetworkInstanceAny) RouteLimitAny() *NetworkInstance_RouteLimitAny { - return &NetworkInstance_RouteLimitAny{ +// RouteLimitAny returns from NetworkInstancePathAny the path struct for its child "route-limit". +func (n *NetworkInstancePathAny) RouteLimitAny() *NetworkInstance_RouteLimitPathAny { + return &NetworkInstance_RouteLimitPathAny{ NodePath: ygot.NewNodePath( []string{"route-limits", "route-limit"}, map[string]interface{}{"afi": "*"}, @@ -58217,9 +58431,9 @@ func (n *NetworkInstanceAny) RouteLimitAny() *NetworkInstance_RouteLimitAny { } } -// RouteLimit returns from NetworkInstance the path struct for its child "route-limit". -func (n *NetworkInstance) RouteLimit(Afi oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_RouteLimit { - return &NetworkInstance_RouteLimit{ +// RouteLimit returns from NetworkInstancePath the path struct for its child "route-limit". +func (n *NetworkInstancePath) RouteLimit(Afi E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_RouteLimitPath { + return &NetworkInstance_RouteLimitPath{ NodePath: ygot.NewNodePath( []string{"route-limits", "route-limit"}, map[string]interface{}{"afi": Afi}, @@ -58228,9 +58442,9 @@ func (n *NetworkInstance) RouteLimit(Afi oc.E_OpenconfigTypes_ADDRESS_FAMILY) *N } } -// RouteLimit returns from NetworkInstanceAny the path struct for its child "route-limit". -func (n *NetworkInstanceAny) RouteLimit(Afi oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_RouteLimitAny { - return &NetworkInstance_RouteLimitAny{ +// RouteLimit returns from NetworkInstancePathAny the path struct for its child "route-limit". +func (n *NetworkInstancePathAny) RouteLimit(Afi E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_RouteLimitPathAny { + return &NetworkInstance_RouteLimitPathAny{ NodePath: ygot.NewNodePath( []string{"route-limits", "route-limit"}, map[string]interface{}{"afi": Afi}, @@ -58239,31 +58453,31 @@ func (n *NetworkInstanceAny) RouteLimit(Afi oc.E_OpenconfigTypes_ADDRESS_FAMILY) } } -// RouterId returns from NetworkInstance the path struct for its child "router-id". -func (n *NetworkInstance) RouterId() *NetworkInstance_RouterId { - return &NetworkInstance_RouterId{ +// RouterId returns from NetworkInstancePath the path struct for its child "router-id". +func (n *NetworkInstancePath) RouterId() *NetworkInstance_RouterIdPath { + return &NetworkInstance_RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// RouterId returns from NetworkInstanceAny the path struct for its child "router-id". -func (n *NetworkInstanceAny) RouterId() *NetworkInstance_RouterIdAny { - return &NetworkInstance_RouterIdAny{ +// RouterId returns from NetworkInstancePathAny the path struct for its child "router-id". +func (n *NetworkInstancePathAny) RouterId() *NetworkInstance_RouterIdPathAny { + return &NetworkInstance_RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// SegmentRouting returns from NetworkInstance the path struct for its child "segment-routing". -func (n *NetworkInstance) SegmentRouting() *NetworkInstance_SegmentRouting { - return &NetworkInstance_SegmentRouting{ +// SegmentRouting returns from NetworkInstancePath the path struct for its child "segment-routing". +func (n *NetworkInstancePath) SegmentRouting() *NetworkInstance_SegmentRoutingPath { + return &NetworkInstance_SegmentRoutingPath{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -58272,9 +58486,9 @@ func (n *NetworkInstance) SegmentRouting() *NetworkInstance_SegmentRouting { } } -// SegmentRouting returns from NetworkInstanceAny the path struct for its child "segment-routing". -func (n *NetworkInstanceAny) SegmentRouting() *NetworkInstance_SegmentRoutingAny { - return &NetworkInstance_SegmentRoutingAny{ +// SegmentRouting returns from NetworkInstancePathAny the path struct for its child "segment-routing". +func (n *NetworkInstancePathAny) SegmentRouting() *NetworkInstance_SegmentRoutingPathAny { + return &NetworkInstance_SegmentRoutingPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -58283,9 +58497,9 @@ func (n *NetworkInstanceAny) SegmentRouting() *NetworkInstance_SegmentRoutingAny } } -// TableAny returns from NetworkInstance the path struct for its child "table". -func (n *NetworkInstance) TableAny() *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAny returns from NetworkInstancePath the path struct for its child "table". +func (n *NetworkInstancePath) TableAny() *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": "*", "address-family": "*"}, @@ -58294,9 +58508,9 @@ func (n *NetworkInstance) TableAny() *NetworkInstance_TableAny { } } -// TableAny returns from NetworkInstanceAny the path struct for its child "table". -func (n *NetworkInstanceAny) TableAny() *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAny returns from NetworkInstancePathAny the path struct for its child "table". +func (n *NetworkInstancePathAny) TableAny() *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": "*", "address-family": "*"}, @@ -58305,9 +58519,9 @@ func (n *NetworkInstanceAny) TableAny() *NetworkInstance_TableAny { } } -// TableAnyAddressFamily returns from NetworkInstance the path struct for its child "table". -func (n *NetworkInstance) TableAnyAddressFamily(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAnyAddressFamily returns from NetworkInstancePath the path struct for its child "table". +func (n *NetworkInstancePath) TableAnyAddressFamily(Protocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": Protocol, "address-family": "*"}, @@ -58316,9 +58530,9 @@ func (n *NetworkInstance) TableAnyAddressFamily(Protocol oc.E_OpenconfigPolicyTy } } -// TableAnyAddressFamily returns from NetworkInstanceAny the path struct for its child "table". -func (n *NetworkInstanceAny) TableAnyAddressFamily(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAnyAddressFamily returns from NetworkInstancePathAny the path struct for its child "table". +func (n *NetworkInstancePathAny) TableAnyAddressFamily(Protocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": Protocol, "address-family": "*"}, @@ -58327,9 +58541,9 @@ func (n *NetworkInstanceAny) TableAnyAddressFamily(Protocol oc.E_OpenconfigPolic } } -// TableAnyProtocol returns from NetworkInstance the path struct for its child "table". -func (n *NetworkInstance) TableAnyProtocol(AddressFamily oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAnyProtocol returns from NetworkInstancePath the path struct for its child "table". +func (n *NetworkInstancePath) TableAnyProtocol(AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": "*", "address-family": AddressFamily}, @@ -58338,9 +58552,9 @@ func (n *NetworkInstance) TableAnyProtocol(AddressFamily oc.E_OpenconfigTypes_AD } } -// TableAnyProtocol returns from NetworkInstanceAny the path struct for its child "table". -func (n *NetworkInstanceAny) TableAnyProtocol(AddressFamily oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// TableAnyProtocol returns from NetworkInstancePathAny the path struct for its child "table". +func (n *NetworkInstancePathAny) TableAnyProtocol(AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": "*", "address-family": AddressFamily}, @@ -58349,9 +58563,9 @@ func (n *NetworkInstanceAny) TableAnyProtocol(AddressFamily oc.E_OpenconfigTypes } } -// Table returns from NetworkInstance the path struct for its child "table". -func (n *NetworkInstance) Table(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, AddressFamily oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_Table { - return &NetworkInstance_Table{ +// Table returns from NetworkInstancePath the path struct for its child "table". +func (n *NetworkInstancePath) Table(Protocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TablePath { + return &NetworkInstance_TablePath{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": Protocol, "address-family": AddressFamily}, @@ -58360,9 +58574,9 @@ func (n *NetworkInstance) Table(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_PROT } } -// Table returns from NetworkInstanceAny the path struct for its child "table". -func (n *NetworkInstanceAny) Table(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, AddressFamily oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TableAny { - return &NetworkInstance_TableAny{ +// Table returns from NetworkInstancePathAny the path struct for its child "table". +func (n *NetworkInstancePathAny) Table(Protocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE, AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TablePathAny { + return &NetworkInstance_TablePathAny{ NodePath: ygot.NewNodePath( []string{"tables", "table"}, map[string]interface{}{"protocol": Protocol, "address-family": AddressFamily}, @@ -58371,9 +58585,9 @@ func (n *NetworkInstanceAny) Table(Protocol oc.E_OpenconfigPolicyTypes_INSTALL_P } } -// TableConnectionAny returns from NetworkInstance the path struct for its child "table-connection". -func (n *NetworkInstance) TableConnectionAny() *NetworkInstance_TableConnectionAny { - return &NetworkInstance_TableConnectionAny{ +// TableConnectionAny returns from NetworkInstancePath the path struct for its child "table-connection". +func (n *NetworkInstancePath) TableConnectionAny() *NetworkInstance_TableConnectionPathAny { + return &NetworkInstance_TableConnectionPathAny{ NodePath: ygot.NewNodePath( []string{"table-connections", "table-connection"}, map[string]interface{}{"src-protocol": "*", "dst-protocol": "*", "address-family": "*"}, @@ -58382,9 +58596,9 @@ func (n *NetworkInstance) TableConnectionAny() *NetworkInstance_TableConnectionA } } -// TableConnectionAny returns from NetworkInstanceAny the path struct for its child "table-connection". -func (n *NetworkInstanceAny) TableConnectionAny() *NetworkInstance_TableConnectionAny { - return &NetworkInstance_TableConnectionAny{ +// TableConnectionAny returns from NetworkInstancePathAny the path struct for its child "table-connection". +func (n *NetworkInstancePathAny) TableConnectionAny() *NetworkInstance_TableConnectionPathAny { + return &NetworkInstance_TableConnectionPathAny{ NodePath: ygot.NewNodePath( []string{"table-connections", "table-connection"}, map[string]interface{}{"src-protocol": "*", "dst-protocol": "*", "address-family": "*"}, @@ -58393,49 +58607,49 @@ func (n *NetworkInstanceAny) TableConnectionAny() *NetworkInstance_TableConnecti } } -// WithSrcProtocol sets NetworkInstance_TableConnectionAny's key "src-protocol" to the specified value. -func (n *NetworkInstance_TableConnectionAny) WithSrcProtocol(SrcProtocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableConnectionAny { +// WithSrcProtocol sets NetworkInstance_TableConnectionPathAny's key "src-protocol" to the specified value. +func (n *NetworkInstance_TableConnectionPathAny) WithSrcProtocol(SrcProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableConnectionPathAny { ygot.ModifyKey(n.NodePath, "src-protocol", SrcProtocol) return n } -// WithDstProtocol sets NetworkInstance_TableConnectionAny's key "dst-protocol" to the specified value. -func (n *NetworkInstance_TableConnectionAny) WithDstProtocol(DstProtocol oc.E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableConnectionAny { +// WithDstProtocol sets NetworkInstance_TableConnectionPathAny's key "dst-protocol" to the specified value. +func (n *NetworkInstance_TableConnectionPathAny) WithDstProtocol(DstProtocol E_OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE) *NetworkInstance_TableConnectionPathAny { ygot.ModifyKey(n.NodePath, "dst-protocol", DstProtocol) return n } -// WithAddressFamily sets NetworkInstance_TableConnectionAny's key "address-family" to the specified value. -func (n *NetworkInstance_TableConnectionAny) WithAddressFamily(AddressFamily oc.E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TableConnectionAny { +// WithAddressFamily sets NetworkInstance_TableConnectionPathAny's key "address-family" to the specified value. +func (n *NetworkInstance_TableConnectionPathAny) WithAddressFamily(AddressFamily E_OpenconfigTypes_ADDRESS_FAMILY) *NetworkInstance_TableConnectionPathAny { ygot.ModifyKey(n.NodePath, "address-family", AddressFamily) return n } -// Type returns from NetworkInstance the path struct for its child "type". -func (n *NetworkInstance) Type() *NetworkInstance_Type { - return &NetworkInstance_Type{ +// Type returns from NetworkInstancePath the path struct for its child "type". +func (n *NetworkInstancePath) Type() *NetworkInstance_TypePath { + return &NetworkInstance_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from NetworkInstanceAny the path struct for its child "type". -func (n *NetworkInstanceAny) Type() *NetworkInstance_TypeAny { - return &NetworkInstance_TypeAny{ +// Type returns from NetworkInstancePathAny the path struct for its child "type". +func (n *NetworkInstancePathAny) Type() *NetworkInstance_TypePathAny { + return &NetworkInstance_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// VlanAny returns from NetworkInstance the path struct for its child "vlan". -func (n *NetworkInstance) VlanAny() *NetworkInstance_VlanAny { - return &NetworkInstance_VlanAny{ +// VlanAny returns from NetworkInstancePath the path struct for its child "vlan". +func (n *NetworkInstancePath) VlanAny() *NetworkInstance_VlanPathAny { + return &NetworkInstance_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"vlans", "vlan"}, map[string]interface{}{"vlan-id": "*"}, @@ -58444,9 +58658,9 @@ func (n *NetworkInstance) VlanAny() *NetworkInstance_VlanAny { } } -// VlanAny returns from NetworkInstanceAny the path struct for its child "vlan". -func (n *NetworkInstanceAny) VlanAny() *NetworkInstance_VlanAny { - return &NetworkInstance_VlanAny{ +// VlanAny returns from NetworkInstancePathAny the path struct for its child "vlan". +func (n *NetworkInstancePathAny) VlanAny() *NetworkInstance_VlanPathAny { + return &NetworkInstance_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"vlans", "vlan"}, map[string]interface{}{"vlan-id": "*"}, @@ -58455,9 +58669,9 @@ func (n *NetworkInstanceAny) VlanAny() *NetworkInstance_VlanAny { } } -// Vlan returns from NetworkInstance the path struct for its child "vlan". -func (n *NetworkInstance) Vlan(VlanId uint16) *NetworkInstance_Vlan { - return &NetworkInstance_Vlan{ +// Vlan returns from NetworkInstancePath the path struct for its child "vlan". +func (n *NetworkInstancePath) Vlan(VlanId uint16) *NetworkInstance_VlanPath { + return &NetworkInstance_VlanPath{ NodePath: ygot.NewNodePath( []string{"vlans", "vlan"}, map[string]interface{}{"vlan-id": VlanId}, @@ -58466,9 +58680,9 @@ func (n *NetworkInstance) Vlan(VlanId uint16) *NetworkInstance_Vlan { } } -// Vlan returns from NetworkInstanceAny the path struct for its child "vlan". -func (n *NetworkInstanceAny) Vlan(VlanId uint16) *NetworkInstance_VlanAny { - return &NetworkInstance_VlanAny{ +// Vlan returns from NetworkInstancePathAny the path struct for its child "vlan". +func (n *NetworkInstancePathAny) Vlan(VlanId uint16) *NetworkInstance_VlanPathAny { + return &NetworkInstance_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"vlans", "vlan"}, map[string]interface{}{"vlan-id": VlanId}, @@ -58477,19 +58691,19 @@ func (n *NetworkInstanceAny) Vlan(VlanId uint16) *NetworkInstance_VlanAny { } } -// NetworkInstance_Afts represents the /openconfig-network-instance/network-instances/network-instance/afts YANG schema element. -type NetworkInstance_Afts struct { +// NetworkInstance_AftsPath represents the /openconfig-network-instance/network-instances/network-instance/afts YANG schema element. +type NetworkInstance_AftsPath struct { *ygot.NodePath } -// NetworkInstance_AftsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts YANG schema element. -type NetworkInstance_AftsAny struct { +// NetworkInstance_AftsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts YANG schema element. +type NetworkInstance_AftsPathAny struct { *ygot.NodePath } -// Ipv4EntryAny returns from NetworkInstance_Afts the path struct for its child "ipv4-entry". -func (n *NetworkInstance_Afts) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4EntryAny { - return &NetworkInstance_Afts_Ipv4EntryAny{ +// Ipv4EntryAny returns from NetworkInstance_AftsPath the path struct for its child "ipv4-entry". +func (n *NetworkInstance_AftsPath) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4EntryPathAny { + return &NetworkInstance_Afts_Ipv4EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast", "ipv4-entry"}, map[string]interface{}{"prefix": "*"}, @@ -58498,9 +58712,9 @@ func (n *NetworkInstance_Afts) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4EntryAny } } -// Ipv4EntryAny returns from NetworkInstance_AftsAny the path struct for its child "ipv4-entry". -func (n *NetworkInstance_AftsAny) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4EntryAny { - return &NetworkInstance_Afts_Ipv4EntryAny{ +// Ipv4EntryAny returns from NetworkInstance_AftsPathAny the path struct for its child "ipv4-entry". +func (n *NetworkInstance_AftsPathAny) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4EntryPathAny { + return &NetworkInstance_Afts_Ipv4EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast", "ipv4-entry"}, map[string]interface{}{"prefix": "*"}, @@ -58509,9 +58723,9 @@ func (n *NetworkInstance_AftsAny) Ipv4EntryAny() *NetworkInstance_Afts_Ipv4Entry } } -// Ipv4Entry returns from NetworkInstance_Afts the path struct for its child "ipv4-entry". -func (n *NetworkInstance_Afts) Ipv4Entry(Prefix string) *NetworkInstance_Afts_Ipv4Entry { - return &NetworkInstance_Afts_Ipv4Entry{ +// Ipv4Entry returns from NetworkInstance_AftsPath the path struct for its child "ipv4-entry". +func (n *NetworkInstance_AftsPath) Ipv4Entry(Prefix string) *NetworkInstance_Afts_Ipv4EntryPath { + return &NetworkInstance_Afts_Ipv4EntryPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast", "ipv4-entry"}, map[string]interface{}{"prefix": Prefix}, @@ -58520,9 +58734,9 @@ func (n *NetworkInstance_Afts) Ipv4Entry(Prefix string) *NetworkInstance_Afts_Ip } } -// Ipv4Entry returns from NetworkInstance_AftsAny the path struct for its child "ipv4-entry". -func (n *NetworkInstance_AftsAny) Ipv4Entry(Prefix string) *NetworkInstance_Afts_Ipv4EntryAny { - return &NetworkInstance_Afts_Ipv4EntryAny{ +// Ipv4Entry returns from NetworkInstance_AftsPathAny the path struct for its child "ipv4-entry". +func (n *NetworkInstance_AftsPathAny) Ipv4Entry(Prefix string) *NetworkInstance_Afts_Ipv4EntryPathAny { + return &NetworkInstance_Afts_Ipv4EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast", "ipv4-entry"}, map[string]interface{}{"prefix": Prefix}, @@ -58531,9 +58745,9 @@ func (n *NetworkInstance_AftsAny) Ipv4Entry(Prefix string) *NetworkInstance_Afts } } -// Ipv6EntryAny returns from NetworkInstance_Afts the path struct for its child "ipv6-entry". -func (n *NetworkInstance_Afts) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6EntryAny { - return &NetworkInstance_Afts_Ipv6EntryAny{ +// Ipv6EntryAny returns from NetworkInstance_AftsPath the path struct for its child "ipv6-entry". +func (n *NetworkInstance_AftsPath) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6EntryPathAny { + return &NetworkInstance_Afts_Ipv6EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast", "ipv6-entry"}, map[string]interface{}{"prefix": "*"}, @@ -58542,9 +58756,9 @@ func (n *NetworkInstance_Afts) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6EntryAny } } -// Ipv6EntryAny returns from NetworkInstance_AftsAny the path struct for its child "ipv6-entry". -func (n *NetworkInstance_AftsAny) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6EntryAny { - return &NetworkInstance_Afts_Ipv6EntryAny{ +// Ipv6EntryAny returns from NetworkInstance_AftsPathAny the path struct for its child "ipv6-entry". +func (n *NetworkInstance_AftsPathAny) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6EntryPathAny { + return &NetworkInstance_Afts_Ipv6EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast", "ipv6-entry"}, map[string]interface{}{"prefix": "*"}, @@ -58553,9 +58767,9 @@ func (n *NetworkInstance_AftsAny) Ipv6EntryAny() *NetworkInstance_Afts_Ipv6Entry } } -// Ipv6Entry returns from NetworkInstance_Afts the path struct for its child "ipv6-entry". -func (n *NetworkInstance_Afts) Ipv6Entry(Prefix string) *NetworkInstance_Afts_Ipv6Entry { - return &NetworkInstance_Afts_Ipv6Entry{ +// Ipv6Entry returns from NetworkInstance_AftsPath the path struct for its child "ipv6-entry". +func (n *NetworkInstance_AftsPath) Ipv6Entry(Prefix string) *NetworkInstance_Afts_Ipv6EntryPath { + return &NetworkInstance_Afts_Ipv6EntryPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast", "ipv6-entry"}, map[string]interface{}{"prefix": Prefix}, @@ -58564,9 +58778,9 @@ func (n *NetworkInstance_Afts) Ipv6Entry(Prefix string) *NetworkInstance_Afts_Ip } } -// Ipv6Entry returns from NetworkInstance_AftsAny the path struct for its child "ipv6-entry". -func (n *NetworkInstance_AftsAny) Ipv6Entry(Prefix string) *NetworkInstance_Afts_Ipv6EntryAny { - return &NetworkInstance_Afts_Ipv6EntryAny{ +// Ipv6Entry returns from NetworkInstance_AftsPathAny the path struct for its child "ipv6-entry". +func (n *NetworkInstance_AftsPathAny) Ipv6Entry(Prefix string) *NetworkInstance_Afts_Ipv6EntryPathAny { + return &NetworkInstance_Afts_Ipv6EntryPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast", "ipv6-entry"}, map[string]interface{}{"prefix": Prefix}, @@ -58575,9 +58789,9 @@ func (n *NetworkInstance_AftsAny) Ipv6Entry(Prefix string) *NetworkInstance_Afts } } -// LabelEntryAny returns from NetworkInstance_Afts the path struct for its child "label-entry". -func (n *NetworkInstance_Afts) LabelEntryAny() *NetworkInstance_Afts_LabelEntryAny { - return &NetworkInstance_Afts_LabelEntryAny{ +// LabelEntryAny returns from NetworkInstance_AftsPath the path struct for its child "label-entry". +func (n *NetworkInstance_AftsPath) LabelEntryAny() *NetworkInstance_Afts_LabelEntryPathAny { + return &NetworkInstance_Afts_LabelEntryPathAny{ NodePath: ygot.NewNodePath( []string{"mpls", "label-entry"}, map[string]interface{}{"label": "*"}, @@ -58586,9 +58800,9 @@ func (n *NetworkInstance_Afts) LabelEntryAny() *NetworkInstance_Afts_LabelEntryA } } -// LabelEntryAny returns from NetworkInstance_AftsAny the path struct for its child "label-entry". -func (n *NetworkInstance_AftsAny) LabelEntryAny() *NetworkInstance_Afts_LabelEntryAny { - return &NetworkInstance_Afts_LabelEntryAny{ +// LabelEntryAny returns from NetworkInstance_AftsPathAny the path struct for its child "label-entry". +func (n *NetworkInstance_AftsPathAny) LabelEntryAny() *NetworkInstance_Afts_LabelEntryPathAny { + return &NetworkInstance_Afts_LabelEntryPathAny{ NodePath: ygot.NewNodePath( []string{"mpls", "label-entry"}, map[string]interface{}{"label": "*"}, @@ -58597,9 +58811,9 @@ func (n *NetworkInstance_AftsAny) LabelEntryAny() *NetworkInstance_Afts_LabelEnt } } -// LabelEntry returns from NetworkInstance_Afts the path struct for its child "label-entry". -func (n *NetworkInstance_Afts) LabelEntry(Label oc.NetworkInstance_Afts_LabelEntry_Label_Union) *NetworkInstance_Afts_LabelEntry { - return &NetworkInstance_Afts_LabelEntry{ +// LabelEntry returns from NetworkInstance_AftsPath the path struct for its child "label-entry". +func (n *NetworkInstance_AftsPath) LabelEntry(Label NetworkInstance_Afts_LabelEntry_Label_Union) *NetworkInstance_Afts_LabelEntryPath { + return &NetworkInstance_Afts_LabelEntryPath{ NodePath: ygot.NewNodePath( []string{"mpls", "label-entry"}, map[string]interface{}{"label": Label}, @@ -58608,9 +58822,9 @@ func (n *NetworkInstance_Afts) LabelEntry(Label oc.NetworkInstance_Afts_LabelEnt } } -// LabelEntry returns from NetworkInstance_AftsAny the path struct for its child "label-entry". -func (n *NetworkInstance_AftsAny) LabelEntry(Label oc.NetworkInstance_Afts_LabelEntry_Label_Union) *NetworkInstance_Afts_LabelEntryAny { - return &NetworkInstance_Afts_LabelEntryAny{ +// LabelEntry returns from NetworkInstance_AftsPathAny the path struct for its child "label-entry". +func (n *NetworkInstance_AftsPathAny) LabelEntry(Label NetworkInstance_Afts_LabelEntry_Label_Union) *NetworkInstance_Afts_LabelEntryPathAny { + return &NetworkInstance_Afts_LabelEntryPathAny{ NodePath: ygot.NewNodePath( []string{"mpls", "label-entry"}, map[string]interface{}{"label": Label}, @@ -58619,9 +58833,9 @@ func (n *NetworkInstance_AftsAny) LabelEntry(Label oc.NetworkInstance_Afts_Label } } -// MacEntryAny returns from NetworkInstance_Afts the path struct for its child "mac-entry". -func (n *NetworkInstance_Afts) MacEntryAny() *NetworkInstance_Afts_MacEntryAny { - return &NetworkInstance_Afts_MacEntryAny{ +// MacEntryAny returns from NetworkInstance_AftsPath the path struct for its child "mac-entry". +func (n *NetworkInstance_AftsPath) MacEntryAny() *NetworkInstance_Afts_MacEntryPathAny { + return &NetworkInstance_Afts_MacEntryPathAny{ NodePath: ygot.NewNodePath( []string{"ethernet", "mac-entry"}, map[string]interface{}{"mac-address": "*"}, @@ -58630,9 +58844,9 @@ func (n *NetworkInstance_Afts) MacEntryAny() *NetworkInstance_Afts_MacEntryAny { } } -// MacEntryAny returns from NetworkInstance_AftsAny the path struct for its child "mac-entry". -func (n *NetworkInstance_AftsAny) MacEntryAny() *NetworkInstance_Afts_MacEntryAny { - return &NetworkInstance_Afts_MacEntryAny{ +// MacEntryAny returns from NetworkInstance_AftsPathAny the path struct for its child "mac-entry". +func (n *NetworkInstance_AftsPathAny) MacEntryAny() *NetworkInstance_Afts_MacEntryPathAny { + return &NetworkInstance_Afts_MacEntryPathAny{ NodePath: ygot.NewNodePath( []string{"ethernet", "mac-entry"}, map[string]interface{}{"mac-address": "*"}, @@ -58641,9 +58855,9 @@ func (n *NetworkInstance_AftsAny) MacEntryAny() *NetworkInstance_Afts_MacEntryAn } } -// MacEntry returns from NetworkInstance_Afts the path struct for its child "mac-entry". -func (n *NetworkInstance_Afts) MacEntry(MacAddress string) *NetworkInstance_Afts_MacEntry { - return &NetworkInstance_Afts_MacEntry{ +// MacEntry returns from NetworkInstance_AftsPath the path struct for its child "mac-entry". +func (n *NetworkInstance_AftsPath) MacEntry(MacAddress string) *NetworkInstance_Afts_MacEntryPath { + return &NetworkInstance_Afts_MacEntryPath{ NodePath: ygot.NewNodePath( []string{"ethernet", "mac-entry"}, map[string]interface{}{"mac-address": MacAddress}, @@ -58652,9 +58866,9 @@ func (n *NetworkInstance_Afts) MacEntry(MacAddress string) *NetworkInstance_Afts } } -// MacEntry returns from NetworkInstance_AftsAny the path struct for its child "mac-entry". -func (n *NetworkInstance_AftsAny) MacEntry(MacAddress string) *NetworkInstance_Afts_MacEntryAny { - return &NetworkInstance_Afts_MacEntryAny{ +// MacEntry returns from NetworkInstance_AftsPathAny the path struct for its child "mac-entry". +func (n *NetworkInstance_AftsPathAny) MacEntry(MacAddress string) *NetworkInstance_Afts_MacEntryPathAny { + return &NetworkInstance_Afts_MacEntryPathAny{ NodePath: ygot.NewNodePath( []string{"ethernet", "mac-entry"}, map[string]interface{}{"mac-address": MacAddress}, @@ -58663,9 +58877,9 @@ func (n *NetworkInstance_AftsAny) MacEntry(MacAddress string) *NetworkInstance_A } } -// NextHopAny returns from NetworkInstance_Afts the path struct for its child "next-hop". -func (n *NetworkInstance_Afts) NextHopAny() *NetworkInstance_Afts_NextHopAny { - return &NetworkInstance_Afts_NextHopAny{ +// NextHopAny returns from NetworkInstance_AftsPath the path struct for its child "next-hop". +func (n *NetworkInstance_AftsPath) NextHopAny() *NetworkInstance_Afts_NextHopPathAny { + return &NetworkInstance_Afts_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -58674,9 +58888,9 @@ func (n *NetworkInstance_Afts) NextHopAny() *NetworkInstance_Afts_NextHopAny { } } -// NextHopAny returns from NetworkInstance_AftsAny the path struct for its child "next-hop". -func (n *NetworkInstance_AftsAny) NextHopAny() *NetworkInstance_Afts_NextHopAny { - return &NetworkInstance_Afts_NextHopAny{ +// NextHopAny returns from NetworkInstance_AftsPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_AftsPathAny) NextHopAny() *NetworkInstance_Afts_NextHopPathAny { + return &NetworkInstance_Afts_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -58685,9 +58899,9 @@ func (n *NetworkInstance_AftsAny) NextHopAny() *NetworkInstance_Afts_NextHopAny } } -// NextHop returns from NetworkInstance_Afts the path struct for its child "next-hop". -func (n *NetworkInstance_Afts) NextHop(Index uint64) *NetworkInstance_Afts_NextHop { - return &NetworkInstance_Afts_NextHop{ +// NextHop returns from NetworkInstance_AftsPath the path struct for its child "next-hop". +func (n *NetworkInstance_AftsPath) NextHop(Index uint64) *NetworkInstance_Afts_NextHopPath { + return &NetworkInstance_Afts_NextHopPath{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -58696,9 +58910,9 @@ func (n *NetworkInstance_Afts) NextHop(Index uint64) *NetworkInstance_Afts_NextH } } -// NextHop returns from NetworkInstance_AftsAny the path struct for its child "next-hop". -func (n *NetworkInstance_AftsAny) NextHop(Index uint64) *NetworkInstance_Afts_NextHopAny { - return &NetworkInstance_Afts_NextHopAny{ +// NextHop returns from NetworkInstance_AftsPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_AftsPathAny) NextHop(Index uint64) *NetworkInstance_Afts_NextHopPathAny { + return &NetworkInstance_Afts_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -58707,9 +58921,9 @@ func (n *NetworkInstance_AftsAny) NextHop(Index uint64) *NetworkInstance_Afts_Ne } } -// NextHopGroupAny returns from NetworkInstance_Afts the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts) NextHopGroupAny() *NetworkInstance_Afts_NextHopGroupAny { - return &NetworkInstance_Afts_NextHopGroupAny{ +// NextHopGroupAny returns from NetworkInstance_AftsPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_AftsPath) NextHopGroupAny() *NetworkInstance_Afts_NextHopGroupPathAny { + return &NetworkInstance_Afts_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"next-hop-groups", "next-hop-group"}, map[string]interface{}{"id": "*"}, @@ -58718,9 +58932,9 @@ func (n *NetworkInstance_Afts) NextHopGroupAny() *NetworkInstance_Afts_NextHopGr } } -// NextHopGroupAny returns from NetworkInstance_AftsAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_AftsAny) NextHopGroupAny() *NetworkInstance_Afts_NextHopGroupAny { - return &NetworkInstance_Afts_NextHopGroupAny{ +// NextHopGroupAny returns from NetworkInstance_AftsPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_AftsPathAny) NextHopGroupAny() *NetworkInstance_Afts_NextHopGroupPathAny { + return &NetworkInstance_Afts_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"next-hop-groups", "next-hop-group"}, map[string]interface{}{"id": "*"}, @@ -58729,9 +58943,9 @@ func (n *NetworkInstance_AftsAny) NextHopGroupAny() *NetworkInstance_Afts_NextHo } } -// NextHopGroup returns from NetworkInstance_Afts the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts) NextHopGroup(Id uint64) *NetworkInstance_Afts_NextHopGroup { - return &NetworkInstance_Afts_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_AftsPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_AftsPath) NextHopGroup(Id uint64) *NetworkInstance_Afts_NextHopGroupPath { + return &NetworkInstance_Afts_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"next-hop-groups", "next-hop-group"}, map[string]interface{}{"id": Id}, @@ -58740,9 +58954,9 @@ func (n *NetworkInstance_Afts) NextHopGroup(Id uint64) *NetworkInstance_Afts_Nex } } -// NextHopGroup returns from NetworkInstance_AftsAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_AftsAny) NextHopGroup(Id uint64) *NetworkInstance_Afts_NextHopGroupAny { - return &NetworkInstance_Afts_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_AftsPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_AftsPathAny) NextHopGroup(Id uint64) *NetworkInstance_Afts_NextHopGroupPathAny { + return &NetworkInstance_Afts_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"next-hop-groups", "next-hop-group"}, map[string]interface{}{"id": Id}, @@ -58751,9 +58965,9 @@ func (n *NetworkInstance_AftsAny) NextHopGroup(Id uint64) *NetworkInstance_Afts_ } } -// PolicyForwardingEntryAny returns from NetworkInstance_Afts the path struct for its child "policy-forwarding-entry". -func (n *NetworkInstance_Afts) PolicyForwardingEntryAny() *NetworkInstance_Afts_PolicyForwardingEntryAny { - return &NetworkInstance_Afts_PolicyForwardingEntryAny{ +// PolicyForwardingEntryAny returns from NetworkInstance_AftsPath the path struct for its child "policy-forwarding-entry". +func (n *NetworkInstance_AftsPath) PolicyForwardingEntryAny() *NetworkInstance_Afts_PolicyForwardingEntryPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntryPathAny{ NodePath: ygot.NewNodePath( []string{"policy-forwarding", "policy-forwarding-entry"}, map[string]interface{}{"index": "*"}, @@ -58762,9 +58976,9 @@ func (n *NetworkInstance_Afts) PolicyForwardingEntryAny() *NetworkInstance_Afts_ } } -// PolicyForwardingEntryAny returns from NetworkInstance_AftsAny the path struct for its child "policy-forwarding-entry". -func (n *NetworkInstance_AftsAny) PolicyForwardingEntryAny() *NetworkInstance_Afts_PolicyForwardingEntryAny { - return &NetworkInstance_Afts_PolicyForwardingEntryAny{ +// PolicyForwardingEntryAny returns from NetworkInstance_AftsPathAny the path struct for its child "policy-forwarding-entry". +func (n *NetworkInstance_AftsPathAny) PolicyForwardingEntryAny() *NetworkInstance_Afts_PolicyForwardingEntryPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntryPathAny{ NodePath: ygot.NewNodePath( []string{"policy-forwarding", "policy-forwarding-entry"}, map[string]interface{}{"index": "*"}, @@ -58773,9 +58987,9 @@ func (n *NetworkInstance_AftsAny) PolicyForwardingEntryAny() *NetworkInstance_Af } } -// PolicyForwardingEntry returns from NetworkInstance_Afts the path struct for its child "policy-forwarding-entry". -func (n *NetworkInstance_Afts) PolicyForwardingEntry(Index uint64) *NetworkInstance_Afts_PolicyForwardingEntry { - return &NetworkInstance_Afts_PolicyForwardingEntry{ +// PolicyForwardingEntry returns from NetworkInstance_AftsPath the path struct for its child "policy-forwarding-entry". +func (n *NetworkInstance_AftsPath) PolicyForwardingEntry(Index uint64) *NetworkInstance_Afts_PolicyForwardingEntryPath { + return &NetworkInstance_Afts_PolicyForwardingEntryPath{ NodePath: ygot.NewNodePath( []string{"policy-forwarding", "policy-forwarding-entry"}, map[string]interface{}{"index": Index}, @@ -58784,9 +58998,9 @@ func (n *NetworkInstance_Afts) PolicyForwardingEntry(Index uint64) *NetworkInsta } } -// PolicyForwardingEntry returns from NetworkInstance_AftsAny the path struct for its child "policy-forwarding-entry". -func (n *NetworkInstance_AftsAny) PolicyForwardingEntry(Index uint64) *NetworkInstance_Afts_PolicyForwardingEntryAny { - return &NetworkInstance_Afts_PolicyForwardingEntryAny{ +// PolicyForwardingEntry returns from NetworkInstance_AftsPathAny the path struct for its child "policy-forwarding-entry". +func (n *NetworkInstance_AftsPathAny) PolicyForwardingEntry(Index uint64) *NetworkInstance_Afts_PolicyForwardingEntryPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntryPathAny{ NodePath: ygot.NewNodePath( []string{"policy-forwarding", "policy-forwarding-entry"}, map[string]interface{}{"index": Index}, @@ -58795,79 +59009,79 @@ func (n *NetworkInstance_AftsAny) PolicyForwardingEntry(Index uint64) *NetworkIn } } -// NetworkInstance_Afts_Ipv4Entry represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry YANG schema element. -type NetworkInstance_Afts_Ipv4Entry struct { +// NetworkInstance_Afts_Ipv4EntryPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry YANG schema element. +type NetworkInstance_Afts_Ipv4EntryPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4EntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry YANG schema element. -type NetworkInstance_Afts_Ipv4EntryAny struct { +// NetworkInstance_Afts_Ipv4EntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry YANG schema element. +type NetworkInstance_Afts_Ipv4EntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_DecapsulateHeader represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/decapsulate-header YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_DecapsulateHeader struct { +// NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/decapsulate-header YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/decapsulate-header YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderAny struct { +// NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/decapsulate-header YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_NextHopGroup struct { +// NetworkInstance_Afts_Ipv4Entry_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_NextHopGroupAny struct { +// NetworkInstance_Afts_Ipv4Entry_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_OctetsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_OctetsForwarded struct { +// NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_OctetsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_OctetsForwardedAny struct { +// NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_OriginProtocol represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_OriginProtocol struct { +// NetworkInstance_Afts_Ipv4Entry_OriginProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_OriginProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_OriginProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_OriginProtocolAny struct { +// NetworkInstance_Afts_Ipv4Entry_OriginProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_OriginProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_PacketsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_PacketsForwarded struct { +// NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_PacketsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_PacketsForwardedAny struct { +// NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_Prefix represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/prefix YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_Prefix struct { +// NetworkInstance_Afts_Ipv4Entry_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/config/prefix YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv4Entry_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/state/prefix YANG schema element. -type NetworkInstance_Afts_Ipv4Entry_PrefixAny struct { +// NetworkInstance_Afts_Ipv4Entry_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv4-unicast/ipv4-entry/config/prefix YANG schema element. +type NetworkInstance_Afts_Ipv4Entry_PrefixPathAny struct { *ygot.NodePath } -// DecapsulateHeader returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "decapsulate-header". -func (n *NetworkInstance_Afts_Ipv4Entry) DecapsulateHeader() *NetworkInstance_Afts_Ipv4Entry_DecapsulateHeader { - return &NetworkInstance_Afts_Ipv4Entry_DecapsulateHeader{ +// DecapsulateHeader returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "decapsulate-header". +func (n *NetworkInstance_Afts_Ipv4EntryPath) DecapsulateHeader() *NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPath { + return &NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPath{ NodePath: ygot.NewNodePath( []string{"state", "decapsulate-header"}, map[string]interface{}{}, @@ -58876,9 +59090,9 @@ func (n *NetworkInstance_Afts_Ipv4Entry) DecapsulateHeader() *NetworkInstance_Af } } -// DecapsulateHeader returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "decapsulate-header". -func (n *NetworkInstance_Afts_Ipv4EntryAny) DecapsulateHeader() *NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderAny { - return &NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderAny{ +// DecapsulateHeader returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "decapsulate-header". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) DecapsulateHeader() *NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPathAny { + return &NetworkInstance_Afts_Ipv4Entry_DecapsulateHeaderPathAny{ NodePath: ygot.NewNodePath( []string{"state", "decapsulate-header"}, map[string]interface{}{}, @@ -58887,9 +59101,9 @@ func (n *NetworkInstance_Afts_Ipv4EntryAny) DecapsulateHeader() *NetworkInstance } } -// NextHopGroup returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_Ipv4Entry) NextHopGroup() *NetworkInstance_Afts_Ipv4Entry_NextHopGroup { - return &NetworkInstance_Afts_Ipv4Entry_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_Ipv4EntryPath) NextHopGroup() *NetworkInstance_Afts_Ipv4Entry_NextHopGroupPath { + return &NetworkInstance_Afts_Ipv4Entry_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -58898,9 +59112,9 @@ func (n *NetworkInstance_Afts_Ipv4Entry) NextHopGroup() *NetworkInstance_Afts_Ip } } -// NextHopGroup returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_Ipv4EntryAny) NextHopGroup() *NetworkInstance_Afts_Ipv4Entry_NextHopGroupAny { - return &NetworkInstance_Afts_Ipv4Entry_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) NextHopGroup() *NetworkInstance_Afts_Ipv4Entry_NextHopGroupPathAny { + return &NetworkInstance_Afts_Ipv4Entry_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -58909,9 +59123,9 @@ func (n *NetworkInstance_Afts_Ipv4EntryAny) NextHopGroup() *NetworkInstance_Afts } } -// OctetsForwarded returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_Ipv4Entry) OctetsForwarded() *NetworkInstance_Afts_Ipv4Entry_OctetsForwarded { - return &NetworkInstance_Afts_Ipv4Entry_OctetsForwarded{ +// OctetsForwarded returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_Ipv4EntryPath) OctetsForwarded() *NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPath { + return &NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -58920,9 +59134,9 @@ func (n *NetworkInstance_Afts_Ipv4Entry) OctetsForwarded() *NetworkInstance_Afts } } -// OctetsForwarded returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_Ipv4EntryAny) OctetsForwarded() *NetworkInstance_Afts_Ipv4Entry_OctetsForwardedAny { - return &NetworkInstance_Afts_Ipv4Entry_OctetsForwardedAny{ +// OctetsForwarded returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) OctetsForwarded() *NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPathAny { + return &NetworkInstance_Afts_Ipv4Entry_OctetsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -58931,9 +59145,9 @@ func (n *NetworkInstance_Afts_Ipv4EntryAny) OctetsForwarded() *NetworkInstance_A } } -// OriginProtocol returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_Ipv4Entry) OriginProtocol() *NetworkInstance_Afts_Ipv4Entry_OriginProtocol { - return &NetworkInstance_Afts_Ipv4Entry_OriginProtocol{ +// OriginProtocol returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_Ipv4EntryPath) OriginProtocol() *NetworkInstance_Afts_Ipv4Entry_OriginProtocolPath { + return &NetworkInstance_Afts_Ipv4Entry_OriginProtocolPath{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -58942,9 +59156,9 @@ func (n *NetworkInstance_Afts_Ipv4Entry) OriginProtocol() *NetworkInstance_Afts_ } } -// OriginProtocol returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_Ipv4EntryAny) OriginProtocol() *NetworkInstance_Afts_Ipv4Entry_OriginProtocolAny { - return &NetworkInstance_Afts_Ipv4Entry_OriginProtocolAny{ +// OriginProtocol returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) OriginProtocol() *NetworkInstance_Afts_Ipv4Entry_OriginProtocolPathAny { + return &NetworkInstance_Afts_Ipv4Entry_OriginProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -58953,9 +59167,9 @@ func (n *NetworkInstance_Afts_Ipv4EntryAny) OriginProtocol() *NetworkInstance_Af } } -// PacketsForwarded returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_Ipv4Entry) PacketsForwarded() *NetworkInstance_Afts_Ipv4Entry_PacketsForwarded { - return &NetworkInstance_Afts_Ipv4Entry_PacketsForwarded{ +// PacketsForwarded returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_Ipv4EntryPath) PacketsForwarded() *NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPath { + return &NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -58964,9 +59178,9 @@ func (n *NetworkInstance_Afts_Ipv4Entry) PacketsForwarded() *NetworkInstance_Aft } } -// PacketsForwarded returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_Ipv4EntryAny) PacketsForwarded() *NetworkInstance_Afts_Ipv4Entry_PacketsForwardedAny { - return &NetworkInstance_Afts_Ipv4Entry_PacketsForwardedAny{ +// PacketsForwarded returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) PacketsForwarded() *NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPathAny { + return &NetworkInstance_Afts_Ipv4Entry_PacketsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -58975,101 +59189,101 @@ func (n *NetworkInstance_Afts_Ipv4EntryAny) PacketsForwarded() *NetworkInstance_ } } -// Prefix returns from NetworkInstance_Afts_Ipv4Entry the path struct for its child "prefix". -func (n *NetworkInstance_Afts_Ipv4Entry) Prefix() *NetworkInstance_Afts_Ipv4Entry_Prefix { - return &NetworkInstance_Afts_Ipv4Entry_Prefix{ +// Prefix returns from NetworkInstance_Afts_Ipv4EntryPath the path struct for its child "prefix". +func (n *NetworkInstance_Afts_Ipv4EntryPath) Prefix() *NetworkInstance_Afts_Ipv4Entry_PrefixPath { + return &NetworkInstance_Afts_Ipv4Entry_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Afts_Ipv4EntryAny the path struct for its child "prefix". -func (n *NetworkInstance_Afts_Ipv4EntryAny) Prefix() *NetworkInstance_Afts_Ipv4Entry_PrefixAny { - return &NetworkInstance_Afts_Ipv4Entry_PrefixAny{ +// Prefix returns from NetworkInstance_Afts_Ipv4EntryPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Afts_Ipv4EntryPathAny) Prefix() *NetworkInstance_Afts_Ipv4Entry_PrefixPathAny { + return &NetworkInstance_Afts_Ipv4Entry_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Afts_Ipv6Entry represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry YANG schema element. -type NetworkInstance_Afts_Ipv6Entry struct { +// NetworkInstance_Afts_Ipv6EntryPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry YANG schema element. +type NetworkInstance_Afts_Ipv6EntryPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6EntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry YANG schema element. -type NetworkInstance_Afts_Ipv6EntryAny struct { +// NetworkInstance_Afts_Ipv6EntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry YANG schema element. +type NetworkInstance_Afts_Ipv6EntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_DecapsulateHeader represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/decapsulate-header YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_DecapsulateHeader struct { +// NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/decapsulate-header YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/decapsulate-header YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderAny struct { +// NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/decapsulate-header YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_NextHopGroup struct { +// NetworkInstance_Afts_Ipv6Entry_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_NextHopGroupAny struct { +// NetworkInstance_Afts_Ipv6Entry_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_OctetsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_OctetsForwarded struct { +// NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_OctetsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_OctetsForwardedAny struct { +// NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_OriginProtocol represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_OriginProtocol struct { +// NetworkInstance_Afts_Ipv6Entry_OriginProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_OriginProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_OriginProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_OriginProtocolAny struct { +// NetworkInstance_Afts_Ipv6Entry_OriginProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_OriginProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_PacketsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_PacketsForwarded struct { +// NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_PacketsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_PacketsForwardedAny struct { +// NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_Prefix represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/prefix YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_Prefix struct { +// NetworkInstance_Afts_Ipv6Entry_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/config/prefix YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Afts_Ipv6Entry_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/state/prefix YANG schema element. -type NetworkInstance_Afts_Ipv6Entry_PrefixAny struct { +// NetworkInstance_Afts_Ipv6Entry_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ipv6-unicast/ipv6-entry/config/prefix YANG schema element. +type NetworkInstance_Afts_Ipv6Entry_PrefixPathAny struct { *ygot.NodePath } -// DecapsulateHeader returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "decapsulate-header". -func (n *NetworkInstance_Afts_Ipv6Entry) DecapsulateHeader() *NetworkInstance_Afts_Ipv6Entry_DecapsulateHeader { - return &NetworkInstance_Afts_Ipv6Entry_DecapsulateHeader{ +// DecapsulateHeader returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "decapsulate-header". +func (n *NetworkInstance_Afts_Ipv6EntryPath) DecapsulateHeader() *NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPath { + return &NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPath{ NodePath: ygot.NewNodePath( []string{"state", "decapsulate-header"}, map[string]interface{}{}, @@ -59078,9 +59292,9 @@ func (n *NetworkInstance_Afts_Ipv6Entry) DecapsulateHeader() *NetworkInstance_Af } } -// DecapsulateHeader returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "decapsulate-header". -func (n *NetworkInstance_Afts_Ipv6EntryAny) DecapsulateHeader() *NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderAny { - return &NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderAny{ +// DecapsulateHeader returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "decapsulate-header". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) DecapsulateHeader() *NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPathAny { + return &NetworkInstance_Afts_Ipv6Entry_DecapsulateHeaderPathAny{ NodePath: ygot.NewNodePath( []string{"state", "decapsulate-header"}, map[string]interface{}{}, @@ -59089,9 +59303,9 @@ func (n *NetworkInstance_Afts_Ipv6EntryAny) DecapsulateHeader() *NetworkInstance } } -// NextHopGroup returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_Ipv6Entry) NextHopGroup() *NetworkInstance_Afts_Ipv6Entry_NextHopGroup { - return &NetworkInstance_Afts_Ipv6Entry_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_Ipv6EntryPath) NextHopGroup() *NetworkInstance_Afts_Ipv6Entry_NextHopGroupPath { + return &NetworkInstance_Afts_Ipv6Entry_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59100,9 +59314,9 @@ func (n *NetworkInstance_Afts_Ipv6Entry) NextHopGroup() *NetworkInstance_Afts_Ip } } -// NextHopGroup returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_Ipv6EntryAny) NextHopGroup() *NetworkInstance_Afts_Ipv6Entry_NextHopGroupAny { - return &NetworkInstance_Afts_Ipv6Entry_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) NextHopGroup() *NetworkInstance_Afts_Ipv6Entry_NextHopGroupPathAny { + return &NetworkInstance_Afts_Ipv6Entry_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59111,9 +59325,9 @@ func (n *NetworkInstance_Afts_Ipv6EntryAny) NextHopGroup() *NetworkInstance_Afts } } -// OctetsForwarded returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_Ipv6Entry) OctetsForwarded() *NetworkInstance_Afts_Ipv6Entry_OctetsForwarded { - return &NetworkInstance_Afts_Ipv6Entry_OctetsForwarded{ +// OctetsForwarded returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_Ipv6EntryPath) OctetsForwarded() *NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPath { + return &NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59122,9 +59336,9 @@ func (n *NetworkInstance_Afts_Ipv6Entry) OctetsForwarded() *NetworkInstance_Afts } } -// OctetsForwarded returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_Ipv6EntryAny) OctetsForwarded() *NetworkInstance_Afts_Ipv6Entry_OctetsForwardedAny { - return &NetworkInstance_Afts_Ipv6Entry_OctetsForwardedAny{ +// OctetsForwarded returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) OctetsForwarded() *NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPathAny { + return &NetworkInstance_Afts_Ipv6Entry_OctetsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59133,9 +59347,9 @@ func (n *NetworkInstance_Afts_Ipv6EntryAny) OctetsForwarded() *NetworkInstance_A } } -// OriginProtocol returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_Ipv6Entry) OriginProtocol() *NetworkInstance_Afts_Ipv6Entry_OriginProtocol { - return &NetworkInstance_Afts_Ipv6Entry_OriginProtocol{ +// OriginProtocol returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_Ipv6EntryPath) OriginProtocol() *NetworkInstance_Afts_Ipv6Entry_OriginProtocolPath { + return &NetworkInstance_Afts_Ipv6Entry_OriginProtocolPath{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -59144,9 +59358,9 @@ func (n *NetworkInstance_Afts_Ipv6Entry) OriginProtocol() *NetworkInstance_Afts_ } } -// OriginProtocol returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_Ipv6EntryAny) OriginProtocol() *NetworkInstance_Afts_Ipv6Entry_OriginProtocolAny { - return &NetworkInstance_Afts_Ipv6Entry_OriginProtocolAny{ +// OriginProtocol returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) OriginProtocol() *NetworkInstance_Afts_Ipv6Entry_OriginProtocolPathAny { + return &NetworkInstance_Afts_Ipv6Entry_OriginProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -59155,9 +59369,9 @@ func (n *NetworkInstance_Afts_Ipv6EntryAny) OriginProtocol() *NetworkInstance_Af } } -// PacketsForwarded returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_Ipv6Entry) PacketsForwarded() *NetworkInstance_Afts_Ipv6Entry_PacketsForwarded { - return &NetworkInstance_Afts_Ipv6Entry_PacketsForwarded{ +// PacketsForwarded returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_Ipv6EntryPath) PacketsForwarded() *NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPath { + return &NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59166,9 +59380,9 @@ func (n *NetworkInstance_Afts_Ipv6Entry) PacketsForwarded() *NetworkInstance_Aft } } -// PacketsForwarded returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_Ipv6EntryAny) PacketsForwarded() *NetworkInstance_Afts_Ipv6Entry_PacketsForwardedAny { - return &NetworkInstance_Afts_Ipv6Entry_PacketsForwardedAny{ +// PacketsForwarded returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) PacketsForwarded() *NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPathAny { + return &NetworkInstance_Afts_Ipv6Entry_PacketsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59177,113 +59391,113 @@ func (n *NetworkInstance_Afts_Ipv6EntryAny) PacketsForwarded() *NetworkInstance_ } } -// Prefix returns from NetworkInstance_Afts_Ipv6Entry the path struct for its child "prefix". -func (n *NetworkInstance_Afts_Ipv6Entry) Prefix() *NetworkInstance_Afts_Ipv6Entry_Prefix { - return &NetworkInstance_Afts_Ipv6Entry_Prefix{ +// Prefix returns from NetworkInstance_Afts_Ipv6EntryPath the path struct for its child "prefix". +func (n *NetworkInstance_Afts_Ipv6EntryPath) Prefix() *NetworkInstance_Afts_Ipv6Entry_PrefixPath { + return &NetworkInstance_Afts_Ipv6Entry_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Afts_Ipv6EntryAny the path struct for its child "prefix". -func (n *NetworkInstance_Afts_Ipv6EntryAny) Prefix() *NetworkInstance_Afts_Ipv6Entry_PrefixAny { - return &NetworkInstance_Afts_Ipv6Entry_PrefixAny{ +// Prefix returns from NetworkInstance_Afts_Ipv6EntryPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Afts_Ipv6EntryPathAny) Prefix() *NetworkInstance_Afts_Ipv6Entry_PrefixPathAny { + return &NetworkInstance_Afts_Ipv6Entry_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Afts_LabelEntry represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry YANG schema element. -type NetworkInstance_Afts_LabelEntry struct { +// NetworkInstance_Afts_LabelEntryPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry YANG schema element. +type NetworkInstance_Afts_LabelEntryPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry YANG schema element. -type NetworkInstance_Afts_LabelEntryAny struct { +// NetworkInstance_Afts_LabelEntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry YANG schema element. +type NetworkInstance_Afts_LabelEntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_Label represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/label YANG schema element. -type NetworkInstance_Afts_LabelEntry_Label struct { +// NetworkInstance_Afts_LabelEntry_LabelPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/config/label YANG schema element. +type NetworkInstance_Afts_LabelEntry_LabelPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_LabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/label YANG schema element. -type NetworkInstance_Afts_LabelEntry_LabelAny struct { +// NetworkInstance_Afts_LabelEntry_LabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/config/label YANG schema element. +type NetworkInstance_Afts_LabelEntry_LabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_LabelEntry_NextHopGroup struct { +// NetworkInstance_Afts_LabelEntry_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_LabelEntry_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_LabelEntry_NextHopGroupAny struct { +// NetworkInstance_Afts_LabelEntry_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_LabelEntry_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_OctetsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_LabelEntry_OctetsForwarded struct { +// NetworkInstance_Afts_LabelEntry_OctetsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_LabelEntry_OctetsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_OctetsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_LabelEntry_OctetsForwardedAny struct { +// NetworkInstance_Afts_LabelEntry_OctetsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_LabelEntry_OctetsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_PacketsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_LabelEntry_PacketsForwarded struct { +// NetworkInstance_Afts_LabelEntry_PacketsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_LabelEntry_PacketsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_PacketsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_LabelEntry_PacketsForwardedAny struct { +// NetworkInstance_Afts_LabelEntry_PacketsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_LabelEntry_PacketsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStack represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/popped-mpls-label-stack YANG schema element. -type NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStack struct { +// NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPath represents the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/popped-mpls-label-stack YANG schema element. +type NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPath struct { *ygot.NodePath } -// NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/popped-mpls-label-stack YANG schema element. -type NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackAny struct { +// NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/mpls/label-entry/state/popped-mpls-label-stack YANG schema element. +type NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPathAny struct { *ygot.NodePath } -// Label returns from NetworkInstance_Afts_LabelEntry the path struct for its child "label". -func (n *NetworkInstance_Afts_LabelEntry) Label() *NetworkInstance_Afts_LabelEntry_Label { - return &NetworkInstance_Afts_LabelEntry_Label{ +// Label returns from NetworkInstance_Afts_LabelEntryPath the path struct for its child "label". +func (n *NetworkInstance_Afts_LabelEntryPath) Label() *NetworkInstance_Afts_LabelEntry_LabelPath { + return &NetworkInstance_Afts_LabelEntry_LabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "label"}, + []string{"config", "label"}, map[string]interface{}{}, n, ), } } -// Label returns from NetworkInstance_Afts_LabelEntryAny the path struct for its child "label". -func (n *NetworkInstance_Afts_LabelEntryAny) Label() *NetworkInstance_Afts_LabelEntry_LabelAny { - return &NetworkInstance_Afts_LabelEntry_LabelAny{ +// Label returns from NetworkInstance_Afts_LabelEntryPathAny the path struct for its child "label". +func (n *NetworkInstance_Afts_LabelEntryPathAny) Label() *NetworkInstance_Afts_LabelEntry_LabelPathAny { + return &NetworkInstance_Afts_LabelEntry_LabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "label"}, + []string{"config", "label"}, map[string]interface{}{}, n, ), } } -// NextHopGroup returns from NetworkInstance_Afts_LabelEntry the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_LabelEntry) NextHopGroup() *NetworkInstance_Afts_LabelEntry_NextHopGroup { - return &NetworkInstance_Afts_LabelEntry_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_LabelEntryPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_LabelEntryPath) NextHopGroup() *NetworkInstance_Afts_LabelEntry_NextHopGroupPath { + return &NetworkInstance_Afts_LabelEntry_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59292,9 +59506,9 @@ func (n *NetworkInstance_Afts_LabelEntry) NextHopGroup() *NetworkInstance_Afts_L } } -// NextHopGroup returns from NetworkInstance_Afts_LabelEntryAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_LabelEntryAny) NextHopGroup() *NetworkInstance_Afts_LabelEntry_NextHopGroupAny { - return &NetworkInstance_Afts_LabelEntry_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_LabelEntryPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_LabelEntryPathAny) NextHopGroup() *NetworkInstance_Afts_LabelEntry_NextHopGroupPathAny { + return &NetworkInstance_Afts_LabelEntry_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59303,9 +59517,9 @@ func (n *NetworkInstance_Afts_LabelEntryAny) NextHopGroup() *NetworkInstance_Aft } } -// OctetsForwarded returns from NetworkInstance_Afts_LabelEntry the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_LabelEntry) OctetsForwarded() *NetworkInstance_Afts_LabelEntry_OctetsForwarded { - return &NetworkInstance_Afts_LabelEntry_OctetsForwarded{ +// OctetsForwarded returns from NetworkInstance_Afts_LabelEntryPath the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_LabelEntryPath) OctetsForwarded() *NetworkInstance_Afts_LabelEntry_OctetsForwardedPath { + return &NetworkInstance_Afts_LabelEntry_OctetsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59314,9 +59528,9 @@ func (n *NetworkInstance_Afts_LabelEntry) OctetsForwarded() *NetworkInstance_Aft } } -// OctetsForwarded returns from NetworkInstance_Afts_LabelEntryAny the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_LabelEntryAny) OctetsForwarded() *NetworkInstance_Afts_LabelEntry_OctetsForwardedAny { - return &NetworkInstance_Afts_LabelEntry_OctetsForwardedAny{ +// OctetsForwarded returns from NetworkInstance_Afts_LabelEntryPathAny the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_LabelEntryPathAny) OctetsForwarded() *NetworkInstance_Afts_LabelEntry_OctetsForwardedPathAny { + return &NetworkInstance_Afts_LabelEntry_OctetsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59325,9 +59539,9 @@ func (n *NetworkInstance_Afts_LabelEntryAny) OctetsForwarded() *NetworkInstance_ } } -// PacketsForwarded returns from NetworkInstance_Afts_LabelEntry the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_LabelEntry) PacketsForwarded() *NetworkInstance_Afts_LabelEntry_PacketsForwarded { - return &NetworkInstance_Afts_LabelEntry_PacketsForwarded{ +// PacketsForwarded returns from NetworkInstance_Afts_LabelEntryPath the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_LabelEntryPath) PacketsForwarded() *NetworkInstance_Afts_LabelEntry_PacketsForwardedPath { + return &NetworkInstance_Afts_LabelEntry_PacketsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59336,9 +59550,9 @@ func (n *NetworkInstance_Afts_LabelEntry) PacketsForwarded() *NetworkInstance_Af } } -// PacketsForwarded returns from NetworkInstance_Afts_LabelEntryAny the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_LabelEntryAny) PacketsForwarded() *NetworkInstance_Afts_LabelEntry_PacketsForwardedAny { - return &NetworkInstance_Afts_LabelEntry_PacketsForwardedAny{ +// PacketsForwarded returns from NetworkInstance_Afts_LabelEntryPathAny the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_LabelEntryPathAny) PacketsForwarded() *NetworkInstance_Afts_LabelEntry_PacketsForwardedPathAny { + return &NetworkInstance_Afts_LabelEntry_PacketsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59347,9 +59561,9 @@ func (n *NetworkInstance_Afts_LabelEntryAny) PacketsForwarded() *NetworkInstance } } -// PoppedMplsLabelStack returns from NetworkInstance_Afts_LabelEntry the path struct for its child "popped-mpls-label-stack". -func (n *NetworkInstance_Afts_LabelEntry) PoppedMplsLabelStack() *NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStack { - return &NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStack{ +// PoppedMplsLabelStack returns from NetworkInstance_Afts_LabelEntryPath the path struct for its child "popped-mpls-label-stack". +func (n *NetworkInstance_Afts_LabelEntryPath) PoppedMplsLabelStack() *NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPath { + return &NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPath{ NodePath: ygot.NewNodePath( []string{"state", "popped-mpls-label-stack"}, map[string]interface{}{}, @@ -59358,9 +59572,9 @@ func (n *NetworkInstance_Afts_LabelEntry) PoppedMplsLabelStack() *NetworkInstanc } } -// PoppedMplsLabelStack returns from NetworkInstance_Afts_LabelEntryAny the path struct for its child "popped-mpls-label-stack". -func (n *NetworkInstance_Afts_LabelEntryAny) PoppedMplsLabelStack() *NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackAny { - return &NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackAny{ +// PoppedMplsLabelStack returns from NetworkInstance_Afts_LabelEntryPathAny the path struct for its child "popped-mpls-label-stack". +func (n *NetworkInstance_Afts_LabelEntryPathAny) PoppedMplsLabelStack() *NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPathAny { + return &NetworkInstance_Afts_LabelEntry_PoppedMplsLabelStackPathAny{ NodePath: ygot.NewNodePath( []string{"state", "popped-mpls-label-stack"}, map[string]interface{}{}, @@ -59369,81 +59583,81 @@ func (n *NetworkInstance_Afts_LabelEntryAny) PoppedMplsLabelStack() *NetworkInst } } -// NetworkInstance_Afts_MacEntry represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry YANG schema element. -type NetworkInstance_Afts_MacEntry struct { +// NetworkInstance_Afts_MacEntryPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry YANG schema element. +type NetworkInstance_Afts_MacEntryPath struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry YANG schema element. -type NetworkInstance_Afts_MacEntryAny struct { +// NetworkInstance_Afts_MacEntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry YANG schema element. +type NetworkInstance_Afts_MacEntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_MacAddress represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/mac-address YANG schema element. -type NetworkInstance_Afts_MacEntry_MacAddress struct { +// NetworkInstance_Afts_MacEntry_MacAddressPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/config/mac-address YANG schema element. +type NetworkInstance_Afts_MacEntry_MacAddressPath struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_MacAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/mac-address YANG schema element. -type NetworkInstance_Afts_MacEntry_MacAddressAny struct { +// NetworkInstance_Afts_MacEntry_MacAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/config/mac-address YANG schema element. +type NetworkInstance_Afts_MacEntry_MacAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_MacEntry_NextHopGroup struct { +// NetworkInstance_Afts_MacEntry_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_MacEntry_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_MacEntry_NextHopGroupAny struct { +// NetworkInstance_Afts_MacEntry_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_MacEntry_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_OctetsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_MacEntry_OctetsForwarded struct { +// NetworkInstance_Afts_MacEntry_OctetsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_MacEntry_OctetsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_OctetsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_MacEntry_OctetsForwardedAny struct { +// NetworkInstance_Afts_MacEntry_OctetsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_MacEntry_OctetsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_PacketsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_MacEntry_PacketsForwarded struct { +// NetworkInstance_Afts_MacEntry_PacketsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_MacEntry_PacketsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_MacEntry_PacketsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_MacEntry_PacketsForwardedAny struct { +// NetworkInstance_Afts_MacEntry_PacketsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/ethernet/mac-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_MacEntry_PacketsForwardedPathAny struct { *ygot.NodePath } -// MacAddress returns from NetworkInstance_Afts_MacEntry the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_MacEntry) MacAddress() *NetworkInstance_Afts_MacEntry_MacAddress { - return &NetworkInstance_Afts_MacEntry_MacAddress{ +// MacAddress returns from NetworkInstance_Afts_MacEntryPath the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_MacEntryPath) MacAddress() *NetworkInstance_Afts_MacEntry_MacAddressPath { + return &NetworkInstance_Afts_MacEntry_MacAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// MacAddress returns from NetworkInstance_Afts_MacEntryAny the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_MacEntryAny) MacAddress() *NetworkInstance_Afts_MacEntry_MacAddressAny { - return &NetworkInstance_Afts_MacEntry_MacAddressAny{ +// MacAddress returns from NetworkInstance_Afts_MacEntryPathAny the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_MacEntryPathAny) MacAddress() *NetworkInstance_Afts_MacEntry_MacAddressPathAny { + return &NetworkInstance_Afts_MacEntry_MacAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// NextHopGroup returns from NetworkInstance_Afts_MacEntry the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_MacEntry) NextHopGroup() *NetworkInstance_Afts_MacEntry_NextHopGroup { - return &NetworkInstance_Afts_MacEntry_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_MacEntryPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_MacEntryPath) NextHopGroup() *NetworkInstance_Afts_MacEntry_NextHopGroupPath { + return &NetworkInstance_Afts_MacEntry_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59452,9 +59666,9 @@ func (n *NetworkInstance_Afts_MacEntry) NextHopGroup() *NetworkInstance_Afts_Mac } } -// NextHopGroup returns from NetworkInstance_Afts_MacEntryAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_MacEntryAny) NextHopGroup() *NetworkInstance_Afts_MacEntry_NextHopGroupAny { - return &NetworkInstance_Afts_MacEntry_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_MacEntryPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_MacEntryPathAny) NextHopGroup() *NetworkInstance_Afts_MacEntry_NextHopGroupPathAny { + return &NetworkInstance_Afts_MacEntry_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -59463,9 +59677,9 @@ func (n *NetworkInstance_Afts_MacEntryAny) NextHopGroup() *NetworkInstance_Afts_ } } -// OctetsForwarded returns from NetworkInstance_Afts_MacEntry the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_MacEntry) OctetsForwarded() *NetworkInstance_Afts_MacEntry_OctetsForwarded { - return &NetworkInstance_Afts_MacEntry_OctetsForwarded{ +// OctetsForwarded returns from NetworkInstance_Afts_MacEntryPath the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_MacEntryPath) OctetsForwarded() *NetworkInstance_Afts_MacEntry_OctetsForwardedPath { + return &NetworkInstance_Afts_MacEntry_OctetsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59474,9 +59688,9 @@ func (n *NetworkInstance_Afts_MacEntry) OctetsForwarded() *NetworkInstance_Afts_ } } -// OctetsForwarded returns from NetworkInstance_Afts_MacEntryAny the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_MacEntryAny) OctetsForwarded() *NetworkInstance_Afts_MacEntry_OctetsForwardedAny { - return &NetworkInstance_Afts_MacEntry_OctetsForwardedAny{ +// OctetsForwarded returns from NetworkInstance_Afts_MacEntryPathAny the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_MacEntryPathAny) OctetsForwarded() *NetworkInstance_Afts_MacEntry_OctetsForwardedPathAny { + return &NetworkInstance_Afts_MacEntry_OctetsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -59485,9 +59699,9 @@ func (n *NetworkInstance_Afts_MacEntryAny) OctetsForwarded() *NetworkInstance_Af } } -// PacketsForwarded returns from NetworkInstance_Afts_MacEntry the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_MacEntry) PacketsForwarded() *NetworkInstance_Afts_MacEntry_PacketsForwarded { - return &NetworkInstance_Afts_MacEntry_PacketsForwarded{ +// PacketsForwarded returns from NetworkInstance_Afts_MacEntryPath the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_MacEntryPath) PacketsForwarded() *NetworkInstance_Afts_MacEntry_PacketsForwardedPath { + return &NetworkInstance_Afts_MacEntry_PacketsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59496,9 +59710,9 @@ func (n *NetworkInstance_Afts_MacEntry) PacketsForwarded() *NetworkInstance_Afts } } -// PacketsForwarded returns from NetworkInstance_Afts_MacEntryAny the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_MacEntryAny) PacketsForwarded() *NetworkInstance_Afts_MacEntry_PacketsForwardedAny { - return &NetworkInstance_Afts_MacEntry_PacketsForwardedAny{ +// PacketsForwarded returns from NetworkInstance_Afts_MacEntryPathAny the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_MacEntryPathAny) PacketsForwarded() *NetworkInstance_Afts_MacEntry_PacketsForwardedPathAny { + return &NetworkInstance_Afts_MacEntry_PacketsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -59507,89 +59721,89 @@ func (n *NetworkInstance_Afts_MacEntryAny) PacketsForwarded() *NetworkInstance_A } } -// NetworkInstance_Afts_NextHop represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop YANG schema element. -type NetworkInstance_Afts_NextHop struct { +// NetworkInstance_Afts_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop YANG schema element. +type NetworkInstance_Afts_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop YANG schema element. -type NetworkInstance_Afts_NextHopAny struct { +// NetworkInstance_Afts_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop YANG schema element. +type NetworkInstance_Afts_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_EncapsulateHeader represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/encapsulate-header YANG schema element. -type NetworkInstance_Afts_NextHop_EncapsulateHeader struct { +// NetworkInstance_Afts_NextHop_EncapsulateHeaderPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/encapsulate-header YANG schema element. +type NetworkInstance_Afts_NextHop_EncapsulateHeaderPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_EncapsulateHeaderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/encapsulate-header YANG schema element. -type NetworkInstance_Afts_NextHop_EncapsulateHeaderAny struct { +// NetworkInstance_Afts_NextHop_EncapsulateHeaderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/encapsulate-header YANG schema element. +type NetworkInstance_Afts_NextHop_EncapsulateHeaderPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_Index represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Afts_NextHop_Index struct { +// NetworkInstance_Afts_NextHop_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Afts_NextHop_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Afts_NextHop_IndexAny struct { +// NetworkInstance_Afts_NextHop_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Afts_NextHop_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_IpAddress represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/ip-address YANG schema element. -type NetworkInstance_Afts_NextHop_IpAddress struct { +// NetworkInstance_Afts_NextHop_IpAddressPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/ip-address YANG schema element. +type NetworkInstance_Afts_NextHop_IpAddressPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_IpAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/ip-address YANG schema element. -type NetworkInstance_Afts_NextHop_IpAddressAny struct { +// NetworkInstance_Afts_NextHop_IpAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/ip-address YANG schema element. +type NetworkInstance_Afts_NextHop_IpAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_LspName represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/lsp-name YANG schema element. -type NetworkInstance_Afts_NextHop_LspName struct { +// NetworkInstance_Afts_NextHop_LspNamePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/lsp-name YANG schema element. +type NetworkInstance_Afts_NextHop_LspNamePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_LspNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/lsp-name YANG schema element. -type NetworkInstance_Afts_NextHop_LspNameAny struct { +// NetworkInstance_Afts_NextHop_LspNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/lsp-name YANG schema element. +type NetworkInstance_Afts_NextHop_LspNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_MacAddress represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/mac-address YANG schema element. -type NetworkInstance_Afts_NextHop_MacAddress struct { +// NetworkInstance_Afts_NextHop_MacAddressPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/mac-address YANG schema element. +type NetworkInstance_Afts_NextHop_MacAddressPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_MacAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/mac-address YANG schema element. -type NetworkInstance_Afts_NextHop_MacAddressAny struct { +// NetworkInstance_Afts_NextHop_MacAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/mac-address YANG schema element. +type NetworkInstance_Afts_NextHop_MacAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_OriginProtocol represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_NextHop_OriginProtocol struct { +// NetworkInstance_Afts_NextHop_OriginProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_NextHop_OriginProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_OriginProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/origin-protocol YANG schema element. -type NetworkInstance_Afts_NextHop_OriginProtocolAny struct { +// NetworkInstance_Afts_NextHop_OriginProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/origin-protocol YANG schema element. +type NetworkInstance_Afts_NextHop_OriginProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_PushedMplsLabelStack represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. -type NetworkInstance_Afts_NextHop_PushedMplsLabelStack struct { +// NetworkInstance_Afts_NextHop_PushedMplsLabelStackPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. +type NetworkInstance_Afts_NextHop_PushedMplsLabelStackPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_PushedMplsLabelStackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. -type NetworkInstance_Afts_NextHop_PushedMplsLabelStackAny struct { +// NetworkInstance_Afts_NextHop_PushedMplsLabelStackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. +type NetworkInstance_Afts_NextHop_PushedMplsLabelStackPathAny struct { *ygot.NodePath } -// EncapsulateHeader returns from NetworkInstance_Afts_NextHop the path struct for its child "encapsulate-header". -func (n *NetworkInstance_Afts_NextHop) EncapsulateHeader() *NetworkInstance_Afts_NextHop_EncapsulateHeader { - return &NetworkInstance_Afts_NextHop_EncapsulateHeader{ +// EncapsulateHeader returns from NetworkInstance_Afts_NextHopPath the path struct for its child "encapsulate-header". +func (n *NetworkInstance_Afts_NextHopPath) EncapsulateHeader() *NetworkInstance_Afts_NextHop_EncapsulateHeaderPath { + return &NetworkInstance_Afts_NextHop_EncapsulateHeaderPath{ NodePath: ygot.NewNodePath( []string{"state", "encapsulate-header"}, map[string]interface{}{}, @@ -59598,9 +59812,9 @@ func (n *NetworkInstance_Afts_NextHop) EncapsulateHeader() *NetworkInstance_Afts } } -// EncapsulateHeader returns from NetworkInstance_Afts_NextHopAny the path struct for its child "encapsulate-header". -func (n *NetworkInstance_Afts_NextHopAny) EncapsulateHeader() *NetworkInstance_Afts_NextHop_EncapsulateHeaderAny { - return &NetworkInstance_Afts_NextHop_EncapsulateHeaderAny{ +// EncapsulateHeader returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "encapsulate-header". +func (n *NetworkInstance_Afts_NextHopPathAny) EncapsulateHeader() *NetworkInstance_Afts_NextHop_EncapsulateHeaderPathAny { + return &NetworkInstance_Afts_NextHop_EncapsulateHeaderPathAny{ NodePath: ygot.NewNodePath( []string{"state", "encapsulate-header"}, map[string]interface{}{}, @@ -59609,31 +59823,31 @@ func (n *NetworkInstance_Afts_NextHopAny) EncapsulateHeader() *NetworkInstance_A } } -// Index returns from NetworkInstance_Afts_NextHop the path struct for its child "index". -func (n *NetworkInstance_Afts_NextHop) Index() *NetworkInstance_Afts_NextHop_Index { - return &NetworkInstance_Afts_NextHop_Index{ +// Index returns from NetworkInstance_Afts_NextHopPath the path struct for its child "index". +func (n *NetworkInstance_Afts_NextHopPath) Index() *NetworkInstance_Afts_NextHop_IndexPath { + return &NetworkInstance_Afts_NextHop_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Afts_NextHopAny the path struct for its child "index". -func (n *NetworkInstance_Afts_NextHopAny) Index() *NetworkInstance_Afts_NextHop_IndexAny { - return &NetworkInstance_Afts_NextHop_IndexAny{ +// Index returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "index". +func (n *NetworkInstance_Afts_NextHopPathAny) Index() *NetworkInstance_Afts_NextHop_IndexPathAny { + return &NetworkInstance_Afts_NextHop_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Afts_NextHop the path struct for its child "interface-ref". -func (n *NetworkInstance_Afts_NextHop) InterfaceRef() *NetworkInstance_Afts_NextHop_InterfaceRef { - return &NetworkInstance_Afts_NextHop_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Afts_NextHopPath the path struct for its child "interface-ref". +func (n *NetworkInstance_Afts_NextHopPath) InterfaceRef() *NetworkInstance_Afts_NextHop_InterfaceRefPath { + return &NetworkInstance_Afts_NextHop_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -59642,9 +59856,9 @@ func (n *NetworkInstance_Afts_NextHop) InterfaceRef() *NetworkInstance_Afts_Next } } -// InterfaceRef returns from NetworkInstance_Afts_NextHopAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Afts_NextHopAny) InterfaceRef() *NetworkInstance_Afts_NextHop_InterfaceRefAny { - return &NetworkInstance_Afts_NextHop_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Afts_NextHopPathAny) InterfaceRef() *NetworkInstance_Afts_NextHop_InterfaceRefPathAny { + return &NetworkInstance_Afts_NextHop_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -59653,9 +59867,9 @@ func (n *NetworkInstance_Afts_NextHopAny) InterfaceRef() *NetworkInstance_Afts_N } } -// IpAddress returns from NetworkInstance_Afts_NextHop the path struct for its child "ip-address". -func (n *NetworkInstance_Afts_NextHop) IpAddress() *NetworkInstance_Afts_NextHop_IpAddress { - return &NetworkInstance_Afts_NextHop_IpAddress{ +// IpAddress returns from NetworkInstance_Afts_NextHopPath the path struct for its child "ip-address". +func (n *NetworkInstance_Afts_NextHopPath) IpAddress() *NetworkInstance_Afts_NextHop_IpAddressPath { + return &NetworkInstance_Afts_NextHop_IpAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ip-address"}, map[string]interface{}{}, @@ -59664,9 +59878,9 @@ func (n *NetworkInstance_Afts_NextHop) IpAddress() *NetworkInstance_Afts_NextHop } } -// IpAddress returns from NetworkInstance_Afts_NextHopAny the path struct for its child "ip-address". -func (n *NetworkInstance_Afts_NextHopAny) IpAddress() *NetworkInstance_Afts_NextHop_IpAddressAny { - return &NetworkInstance_Afts_NextHop_IpAddressAny{ +// IpAddress returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "ip-address". +func (n *NetworkInstance_Afts_NextHopPathAny) IpAddress() *NetworkInstance_Afts_NextHop_IpAddressPathAny { + return &NetworkInstance_Afts_NextHop_IpAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ip-address"}, map[string]interface{}{}, @@ -59675,9 +59889,9 @@ func (n *NetworkInstance_Afts_NextHopAny) IpAddress() *NetworkInstance_Afts_Next } } -// LspName returns from NetworkInstance_Afts_NextHop the path struct for its child "lsp-name". -func (n *NetworkInstance_Afts_NextHop) LspName() *NetworkInstance_Afts_NextHop_LspName { - return &NetworkInstance_Afts_NextHop_LspName{ +// LspName returns from NetworkInstance_Afts_NextHopPath the path struct for its child "lsp-name". +func (n *NetworkInstance_Afts_NextHopPath) LspName() *NetworkInstance_Afts_NextHop_LspNamePath { + return &NetworkInstance_Afts_NextHop_LspNamePath{ NodePath: ygot.NewNodePath( []string{"state", "lsp-name"}, map[string]interface{}{}, @@ -59686,9 +59900,9 @@ func (n *NetworkInstance_Afts_NextHop) LspName() *NetworkInstance_Afts_NextHop_L } } -// LspName returns from NetworkInstance_Afts_NextHopAny the path struct for its child "lsp-name". -func (n *NetworkInstance_Afts_NextHopAny) LspName() *NetworkInstance_Afts_NextHop_LspNameAny { - return &NetworkInstance_Afts_NextHop_LspNameAny{ +// LspName returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "lsp-name". +func (n *NetworkInstance_Afts_NextHopPathAny) LspName() *NetworkInstance_Afts_NextHop_LspNamePathAny { + return &NetworkInstance_Afts_NextHop_LspNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "lsp-name"}, map[string]interface{}{}, @@ -59697,9 +59911,9 @@ func (n *NetworkInstance_Afts_NextHopAny) LspName() *NetworkInstance_Afts_NextHo } } -// MacAddress returns from NetworkInstance_Afts_NextHop the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_NextHop) MacAddress() *NetworkInstance_Afts_NextHop_MacAddress { - return &NetworkInstance_Afts_NextHop_MacAddress{ +// MacAddress returns from NetworkInstance_Afts_NextHopPath the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_NextHopPath) MacAddress() *NetworkInstance_Afts_NextHop_MacAddressPath { + return &NetworkInstance_Afts_NextHop_MacAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "mac-address"}, map[string]interface{}{}, @@ -59708,9 +59922,9 @@ func (n *NetworkInstance_Afts_NextHop) MacAddress() *NetworkInstance_Afts_NextHo } } -// MacAddress returns from NetworkInstance_Afts_NextHopAny the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_NextHopAny) MacAddress() *NetworkInstance_Afts_NextHop_MacAddressAny { - return &NetworkInstance_Afts_NextHop_MacAddressAny{ +// MacAddress returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_NextHopPathAny) MacAddress() *NetworkInstance_Afts_NextHop_MacAddressPathAny { + return &NetworkInstance_Afts_NextHop_MacAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mac-address"}, map[string]interface{}{}, @@ -59719,9 +59933,9 @@ func (n *NetworkInstance_Afts_NextHopAny) MacAddress() *NetworkInstance_Afts_Nex } } -// OriginProtocol returns from NetworkInstance_Afts_NextHop the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_NextHop) OriginProtocol() *NetworkInstance_Afts_NextHop_OriginProtocol { - return &NetworkInstance_Afts_NextHop_OriginProtocol{ +// OriginProtocol returns from NetworkInstance_Afts_NextHopPath the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_NextHopPath) OriginProtocol() *NetworkInstance_Afts_NextHop_OriginProtocolPath { + return &NetworkInstance_Afts_NextHop_OriginProtocolPath{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -59730,9 +59944,9 @@ func (n *NetworkInstance_Afts_NextHop) OriginProtocol() *NetworkInstance_Afts_Ne } } -// OriginProtocol returns from NetworkInstance_Afts_NextHopAny the path struct for its child "origin-protocol". -func (n *NetworkInstance_Afts_NextHopAny) OriginProtocol() *NetworkInstance_Afts_NextHop_OriginProtocolAny { - return &NetworkInstance_Afts_NextHop_OriginProtocolAny{ +// OriginProtocol returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "origin-protocol". +func (n *NetworkInstance_Afts_NextHopPathAny) OriginProtocol() *NetworkInstance_Afts_NextHop_OriginProtocolPathAny { + return &NetworkInstance_Afts_NextHop_OriginProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -59741,9 +59955,9 @@ func (n *NetworkInstance_Afts_NextHopAny) OriginProtocol() *NetworkInstance_Afts } } -// PushedMplsLabelStack returns from NetworkInstance_Afts_NextHop the path struct for its child "pushed-mpls-label-stack". -func (n *NetworkInstance_Afts_NextHop) PushedMplsLabelStack() *NetworkInstance_Afts_NextHop_PushedMplsLabelStack { - return &NetworkInstance_Afts_NextHop_PushedMplsLabelStack{ +// PushedMplsLabelStack returns from NetworkInstance_Afts_NextHopPath the path struct for its child "pushed-mpls-label-stack". +func (n *NetworkInstance_Afts_NextHopPath) PushedMplsLabelStack() *NetworkInstance_Afts_NextHop_PushedMplsLabelStackPath { + return &NetworkInstance_Afts_NextHop_PushedMplsLabelStackPath{ NodePath: ygot.NewNodePath( []string{"state", "pushed-mpls-label-stack"}, map[string]interface{}{}, @@ -59752,9 +59966,9 @@ func (n *NetworkInstance_Afts_NextHop) PushedMplsLabelStack() *NetworkInstance_A } } -// PushedMplsLabelStack returns from NetworkInstance_Afts_NextHopAny the path struct for its child "pushed-mpls-label-stack". -func (n *NetworkInstance_Afts_NextHopAny) PushedMplsLabelStack() *NetworkInstance_Afts_NextHop_PushedMplsLabelStackAny { - return &NetworkInstance_Afts_NextHop_PushedMplsLabelStackAny{ +// PushedMplsLabelStack returns from NetworkInstance_Afts_NextHopPathAny the path struct for its child "pushed-mpls-label-stack". +func (n *NetworkInstance_Afts_NextHopPathAny) PushedMplsLabelStack() *NetworkInstance_Afts_NextHop_PushedMplsLabelStackPathAny { + return &NetworkInstance_Afts_NextHop_PushedMplsLabelStackPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pushed-mpls-label-stack"}, map[string]interface{}{}, @@ -59763,49 +59977,49 @@ func (n *NetworkInstance_Afts_NextHopAny) PushedMplsLabelStack() *NetworkInstanc } } -// NetworkInstance_Afts_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroup struct { +// NetworkInstance_Afts_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroupAny struct { +// NetworkInstance_Afts_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_BackupNextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/backup-next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroup_BackupNextHopGroup struct { +// NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/backup-next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/backup-next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupAny struct { +// NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/backup-next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Color represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/color YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Color struct { +// NetworkInstance_Afts_NextHopGroup_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/color YANG schema element. +type NetworkInstance_Afts_NextHopGroup_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/color YANG schema element. -type NetworkInstance_Afts_NextHopGroup_ColorAny struct { +// NetworkInstance_Afts_NextHopGroup_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/color YANG schema element. +type NetworkInstance_Afts_NextHopGroup_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Id represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Id struct { +// NetworkInstance_Afts_NextHopGroup_IdPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_IdPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_IdAny struct { +// NetworkInstance_Afts_NextHopGroup_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_IdPathAny struct { *ygot.NodePath } -// BackupNextHopGroup returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "backup-next-hop-group". -func (n *NetworkInstance_Afts_NextHopGroup) BackupNextHopGroup() *NetworkInstance_Afts_NextHopGroup_BackupNextHopGroup { - return &NetworkInstance_Afts_NextHopGroup_BackupNextHopGroup{ +// BackupNextHopGroup returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "backup-next-hop-group". +func (n *NetworkInstance_Afts_NextHopGroupPath) BackupNextHopGroup() *NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPath { + return &NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "backup-next-hop-group"}, map[string]interface{}{}, @@ -59814,9 +60028,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) BackupNextHopGroup() *NetworkInstanc } } -// BackupNextHopGroup returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "backup-next-hop-group". -func (n *NetworkInstance_Afts_NextHopGroupAny) BackupNextHopGroup() *NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupAny { - return &NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupAny{ +// BackupNextHopGroup returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "backup-next-hop-group". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) BackupNextHopGroup() *NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPathAny { + return &NetworkInstance_Afts_NextHopGroup_BackupNextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "backup-next-hop-group"}, map[string]interface{}{}, @@ -59825,9 +60039,9 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) BackupNextHopGroup() *NetworkInst } } -// Color returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "color". -func (n *NetworkInstance_Afts_NextHopGroup) Color() *NetworkInstance_Afts_NextHopGroup_Color { - return &NetworkInstance_Afts_NextHopGroup_Color{ +// Color returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "color". +func (n *NetworkInstance_Afts_NextHopGroupPath) Color() *NetworkInstance_Afts_NextHopGroup_ColorPath { + return &NetworkInstance_Afts_NextHopGroup_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -59836,9 +60050,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) Color() *NetworkInstance_Afts_NextHo } } -// Color returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "color". -func (n *NetworkInstance_Afts_NextHopGroupAny) Color() *NetworkInstance_Afts_NextHopGroup_ColorAny { - return &NetworkInstance_Afts_NextHopGroup_ColorAny{ +// Color returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "color". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) Color() *NetworkInstance_Afts_NextHopGroup_ColorPathAny { + return &NetworkInstance_Afts_NextHopGroup_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -59847,9 +60061,9 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) Color() *NetworkInstance_Afts_Nex } } -// ConditionAny returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "condition". -func (n *NetworkInstance_Afts_NextHopGroup) ConditionAny() *NetworkInstance_Afts_NextHopGroup_ConditionAny { - return &NetworkInstance_Afts_NextHopGroup_ConditionAny{ +// ConditionAny returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "condition". +func (n *NetworkInstance_Afts_NextHopGroupPath) ConditionAny() *NetworkInstance_Afts_NextHopGroup_ConditionPathAny { + return &NetworkInstance_Afts_NextHopGroup_ConditionPathAny{ NodePath: ygot.NewNodePath( []string{"conditional", "condition"}, map[string]interface{}{"id": "*"}, @@ -59858,9 +60072,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) ConditionAny() *NetworkInstance_Afts } } -// ConditionAny returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "condition". -func (n *NetworkInstance_Afts_NextHopGroupAny) ConditionAny() *NetworkInstance_Afts_NextHopGroup_ConditionAny { - return &NetworkInstance_Afts_NextHopGroup_ConditionAny{ +// ConditionAny returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "condition". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) ConditionAny() *NetworkInstance_Afts_NextHopGroup_ConditionPathAny { + return &NetworkInstance_Afts_NextHopGroup_ConditionPathAny{ NodePath: ygot.NewNodePath( []string{"conditional", "condition"}, map[string]interface{}{"id": "*"}, @@ -59869,9 +60083,9 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) ConditionAny() *NetworkInstance_A } } -// Condition returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "condition". -func (n *NetworkInstance_Afts_NextHopGroup) Condition(Id uint64) *NetworkInstance_Afts_NextHopGroup_Condition { - return &NetworkInstance_Afts_NextHopGroup_Condition{ +// Condition returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "condition". +func (n *NetworkInstance_Afts_NextHopGroupPath) Condition(Id uint64) *NetworkInstance_Afts_NextHopGroup_ConditionPath { + return &NetworkInstance_Afts_NextHopGroup_ConditionPath{ NodePath: ygot.NewNodePath( []string{"conditional", "condition"}, map[string]interface{}{"id": Id}, @@ -59880,9 +60094,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) Condition(Id uint64) *NetworkInstanc } } -// Condition returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "condition". -func (n *NetworkInstance_Afts_NextHopGroupAny) Condition(Id uint64) *NetworkInstance_Afts_NextHopGroup_ConditionAny { - return &NetworkInstance_Afts_NextHopGroup_ConditionAny{ +// Condition returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "condition". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) Condition(Id uint64) *NetworkInstance_Afts_NextHopGroup_ConditionPathAny { + return &NetworkInstance_Afts_NextHopGroup_ConditionPathAny{ NodePath: ygot.NewNodePath( []string{"conditional", "condition"}, map[string]interface{}{"id": Id}, @@ -59891,31 +60105,31 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) Condition(Id uint64) *NetworkInst } } -// Id returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroup) Id() *NetworkInstance_Afts_NextHopGroup_Id { - return &NetworkInstance_Afts_NextHopGroup_Id{ +// Id returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroupPath) Id() *NetworkInstance_Afts_NextHopGroup_IdPath { + return &NetworkInstance_Afts_NextHopGroup_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroupAny) Id() *NetworkInstance_Afts_NextHopGroup_IdAny { - return &NetworkInstance_Afts_NextHopGroup_IdAny{ +// Id returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) Id() *NetworkInstance_Afts_NextHopGroup_IdPathAny { + return &NetworkInstance_Afts_NextHopGroup_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// NextHopAny returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "next-hop". -func (n *NetworkInstance_Afts_NextHopGroup) NextHopAny() *NetworkInstance_Afts_NextHopGroup_NextHopAny { - return &NetworkInstance_Afts_NextHopGroup_NextHopAny{ +// NextHopAny returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "next-hop". +func (n *NetworkInstance_Afts_NextHopGroupPath) NextHopAny() *NetworkInstance_Afts_NextHopGroup_NextHopPathAny { + return &NetworkInstance_Afts_NextHopGroup_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -59924,9 +60138,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) NextHopAny() *NetworkInstance_Afts_N } } -// NextHopAny returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "next-hop". -func (n *NetworkInstance_Afts_NextHopGroupAny) NextHopAny() *NetworkInstance_Afts_NextHopGroup_NextHopAny { - return &NetworkInstance_Afts_NextHopGroup_NextHopAny{ +// NextHopAny returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) NextHopAny() *NetworkInstance_Afts_NextHopGroup_NextHopPathAny { + return &NetworkInstance_Afts_NextHopGroup_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -59935,9 +60149,9 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) NextHopAny() *NetworkInstance_Aft } } -// NextHop returns from NetworkInstance_Afts_NextHopGroup the path struct for its child "next-hop". -func (n *NetworkInstance_Afts_NextHopGroup) NextHop(Index uint64) *NetworkInstance_Afts_NextHopGroup_NextHop { - return &NetworkInstance_Afts_NextHopGroup_NextHop{ +// NextHop returns from NetworkInstance_Afts_NextHopGroupPath the path struct for its child "next-hop". +func (n *NetworkInstance_Afts_NextHopGroupPath) NextHop(Index uint64) *NetworkInstance_Afts_NextHopGroup_NextHopPath { + return &NetworkInstance_Afts_NextHopGroup_NextHopPath{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -59946,9 +60160,9 @@ func (n *NetworkInstance_Afts_NextHopGroup) NextHop(Index uint64) *NetworkInstan } } -// NextHop returns from NetworkInstance_Afts_NextHopGroupAny the path struct for its child "next-hop". -func (n *NetworkInstance_Afts_NextHopGroupAny) NextHop(Index uint64) *NetworkInstance_Afts_NextHopGroup_NextHopAny { - return &NetworkInstance_Afts_NextHopGroup_NextHopAny{ +// NextHop returns from NetworkInstance_Afts_NextHopGroupPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Afts_NextHopGroupPathAny) NextHop(Index uint64) *NetworkInstance_Afts_NextHopGroup_NextHopPathAny { + return &NetworkInstance_Afts_NextHopGroup_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -59957,49 +60171,49 @@ func (n *NetworkInstance_Afts_NextHopGroupAny) NextHop(Index uint64) *NetworkIns } } -// NetworkInstance_Afts_NextHopGroup_Condition represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition struct { +// NetworkInstance_Afts_NextHopGroup_ConditionPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition YANG schema element. +type NetworkInstance_Afts_NextHopGroup_ConditionPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_ConditionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition YANG schema element. -type NetworkInstance_Afts_NextHopGroup_ConditionAny struct { +// NetworkInstance_Afts_NextHopGroup_ConditionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition YANG schema element. +type NetworkInstance_Afts_NextHopGroup_ConditionPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_Dscp represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/dscp YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_Dscp struct { +// NetworkInstance_Afts_NextHopGroup_Condition_DscpPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/dscp YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_DscpPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_DscpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/dscp YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_DscpAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_DscpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/dscp YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_DscpPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_Id represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_Id struct { +// NetworkInstance_Afts_NextHopGroup_Condition_IdPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_IdPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_IdAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroup struct { +// NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPathAny struct { *ygot.NodePath } -// Dscp returns from NetworkInstance_Afts_NextHopGroup_Condition the path struct for its child "dscp". -func (n *NetworkInstance_Afts_NextHopGroup_Condition) Dscp() *NetworkInstance_Afts_NextHopGroup_Condition_Dscp { - return &NetworkInstance_Afts_NextHopGroup_Condition_Dscp{ +// Dscp returns from NetworkInstance_Afts_NextHopGroup_ConditionPath the path struct for its child "dscp". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPath) Dscp() *NetworkInstance_Afts_NextHopGroup_Condition_DscpPath { + return &NetworkInstance_Afts_NextHopGroup_Condition_DscpPath{ NodePath: ygot.NewNodePath( []string{"state", "dscp"}, map[string]interface{}{}, @@ -60008,9 +60222,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition) Dscp() *NetworkInstance_Af } } -// Dscp returns from NetworkInstance_Afts_NextHopGroup_ConditionAny the path struct for its child "dscp". -func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) Dscp() *NetworkInstance_Afts_NextHopGroup_Condition_DscpAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_DscpAny{ +// Dscp returns from NetworkInstance_Afts_NextHopGroup_ConditionPathAny the path struct for its child "dscp". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPathAny) Dscp() *NetworkInstance_Afts_NextHopGroup_Condition_DscpPathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_DscpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dscp"}, map[string]interface{}{}, @@ -60019,31 +60233,31 @@ func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) Dscp() *NetworkInstance } } -// Id returns from NetworkInstance_Afts_NextHopGroup_Condition the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroup_Condition) Id() *NetworkInstance_Afts_NextHopGroup_Condition_Id { - return &NetworkInstance_Afts_NextHopGroup_Condition_Id{ +// Id returns from NetworkInstance_Afts_NextHopGroup_ConditionPath the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPath) Id() *NetworkInstance_Afts_NextHopGroup_Condition_IdPath { + return &NetworkInstance_Afts_NextHopGroup_Condition_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Afts_NextHopGroup_ConditionAny the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) Id() *NetworkInstance_Afts_NextHopGroup_Condition_IdAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_IdAny{ +// Id returns from NetworkInstance_Afts_NextHopGroup_ConditionPathAny the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPathAny) Id() *NetworkInstance_Afts_NextHopGroup_Condition_IdPathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// InputInterfaceAny returns from NetworkInstance_Afts_NextHopGroup_Condition the path struct for its child "input-interface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition) InputInterfaceAny() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny{ +// InputInterfaceAny returns from NetworkInstance_Afts_NextHopGroup_ConditionPath the path struct for its child "input-interface". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPath) InputInterfaceAny() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"input-interfaces", "input-interface"}, map[string]interface{}{"id": "*"}, @@ -60052,9 +60266,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition) InputInterfaceAny() *Netwo } } -// InputInterfaceAny returns from NetworkInstance_Afts_NextHopGroup_ConditionAny the path struct for its child "input-interface". -func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) InputInterfaceAny() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny{ +// InputInterfaceAny returns from NetworkInstance_Afts_NextHopGroup_ConditionPathAny the path struct for its child "input-interface". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPathAny) InputInterfaceAny() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"input-interfaces", "input-interface"}, map[string]interface{}{"id": "*"}, @@ -60063,9 +60277,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) InputInterfaceAny() *Ne } } -// InputInterface returns from NetworkInstance_Afts_NextHopGroup_Condition the path struct for its child "input-interface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition) InputInterface(Id string) *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface{ +// InputInterface returns from NetworkInstance_Afts_NextHopGroup_ConditionPath the path struct for its child "input-interface". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPath) InputInterface(Id string) *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath{ NodePath: ygot.NewNodePath( []string{"input-interfaces", "input-interface"}, map[string]interface{}{"id": Id}, @@ -60074,9 +60288,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition) InputInterface(Id string) } } -// InputInterface returns from NetworkInstance_Afts_NextHopGroup_ConditionAny the path struct for its child "input-interface". -func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) InputInterface(Id string) *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny{ +// InputInterface returns from NetworkInstance_Afts_NextHopGroup_ConditionPathAny the path struct for its child "input-interface". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPathAny) InputInterface(Id string) *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"input-interfaces", "input-interface"}, map[string]interface{}{"id": Id}, @@ -60085,9 +60299,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) InputInterface(Id strin } } -// NextHopGroup returns from NetworkInstance_Afts_NextHopGroup_Condition the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_NextHopGroup_Condition) NextHopGroup() *NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroup { - return &NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_NextHopGroup_ConditionPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPath) NextHopGroup() *NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPath { + return &NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -60096,9 +60310,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition) NextHopGroup() *NetworkIns } } -// NextHopGroup returns from NetworkInstance_Afts_NextHopGroup_ConditionAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) NextHopGroup() *NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_NextHopGroup_ConditionPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_NextHopGroup_ConditionPathAny) NextHopGroup() *NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -60107,71 +60321,71 @@ func (n *NetworkInstance_Afts_NextHopGroup_ConditionAny) NextHopGroup() *Network } } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Id represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Id struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/id YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/config/id YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Interface represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/interface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Interface struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/interface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/interface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfaceAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/interface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/subinterface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Subinterface struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/subinterface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/subinterface YANG schema element. -type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfaceAny struct { +// NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/conditional/condition/input-interfaces/input-interface/state/subinterface YANG schema element. +type NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePathAny struct { *ygot.NodePath } -// Id returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterface the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface) Id() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Id { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Id{ +// Id returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath) Id() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPath { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny the path struct for its child "id". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny) Id() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdAny{ +// Id returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny the path struct for its child "id". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny) Id() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterface the path struct for its child "interface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface) Interface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Interface { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Interface{ +// Interface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath the path struct for its child "interface". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath) Interface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePath { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -60180,9 +60394,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface) Interface() } } -// Interface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny the path struct for its child "interface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny) Interface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfaceAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfaceAny{ +// Interface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny the path struct for its child "interface". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny) Interface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -60191,9 +60405,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny) Interfac } } -// Subinterface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterface the path struct for its child "subinterface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface) Subinterface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Subinterface { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_Subinterface{ +// Subinterface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath the path struct for its child "subinterface". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePath) Subinterface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePath { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -60202,9 +60416,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface) Subinterfac } } -// Subinterface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny the path struct for its child "subinterface". -func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny) Subinterface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfaceAny { - return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfacePathAny) Subinterface() *NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePathAny { + return &NetworkInstance_Afts_NextHopGroup_Condition_InputInterface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -60213,61 +60427,61 @@ func (n *NetworkInstance_Afts_NextHopGroup_Condition_InputInterfaceAny) Subinter } } -// NetworkInstance_Afts_NextHopGroup_NextHop represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHop struct { +// NetworkInstance_Afts_NextHopGroup_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHopAny struct { +// NetworkInstance_Afts_NextHopGroup_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_NextHop_Index represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHop_Index struct { +// NetworkInstance_Afts_NextHopGroup_NextHop_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHop_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_NextHop_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHop_IndexAny struct { +// NetworkInstance_Afts_NextHopGroup_NextHop_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHop_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_NextHop_Weight represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/weight YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHop_Weight struct { +// NetworkInstance_Afts_NextHopGroup_NextHop_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/weight YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHop_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHopGroup_NextHop_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/weight YANG schema element. -type NetworkInstance_Afts_NextHopGroup_NextHop_WeightAny struct { +// NetworkInstance_Afts_NextHopGroup_NextHop_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hop-groups/next-hop-group/next-hops/next-hop/state/weight YANG schema element. +type NetworkInstance_Afts_NextHopGroup_NextHop_WeightPathAny struct { *ygot.NodePath } -// Index returns from NetworkInstance_Afts_NextHopGroup_NextHop the path struct for its child "index". -func (n *NetworkInstance_Afts_NextHopGroup_NextHop) Index() *NetworkInstance_Afts_NextHopGroup_NextHop_Index { - return &NetworkInstance_Afts_NextHopGroup_NextHop_Index{ +// Index returns from NetworkInstance_Afts_NextHopGroup_NextHopPath the path struct for its child "index". +func (n *NetworkInstance_Afts_NextHopGroup_NextHopPath) Index() *NetworkInstance_Afts_NextHopGroup_NextHop_IndexPath { + return &NetworkInstance_Afts_NextHopGroup_NextHop_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Afts_NextHopGroup_NextHopAny the path struct for its child "index". -func (n *NetworkInstance_Afts_NextHopGroup_NextHopAny) Index() *NetworkInstance_Afts_NextHopGroup_NextHop_IndexAny { - return &NetworkInstance_Afts_NextHopGroup_NextHop_IndexAny{ +// Index returns from NetworkInstance_Afts_NextHopGroup_NextHopPathAny the path struct for its child "index". +func (n *NetworkInstance_Afts_NextHopGroup_NextHopPathAny) Index() *NetworkInstance_Afts_NextHopGroup_NextHop_IndexPathAny { + return &NetworkInstance_Afts_NextHopGroup_NextHop_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Weight returns from NetworkInstance_Afts_NextHopGroup_NextHop the path struct for its child "weight". -func (n *NetworkInstance_Afts_NextHopGroup_NextHop) Weight() *NetworkInstance_Afts_NextHopGroup_NextHop_Weight { - return &NetworkInstance_Afts_NextHopGroup_NextHop_Weight{ +// Weight returns from NetworkInstance_Afts_NextHopGroup_NextHopPath the path struct for its child "weight". +func (n *NetworkInstance_Afts_NextHopGroup_NextHopPath) Weight() *NetworkInstance_Afts_NextHopGroup_NextHop_WeightPath { + return &NetworkInstance_Afts_NextHopGroup_NextHop_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -60276,9 +60490,9 @@ func (n *NetworkInstance_Afts_NextHopGroup_NextHop) Weight() *NetworkInstance_Af } } -// Weight returns from NetworkInstance_Afts_NextHopGroup_NextHopAny the path struct for its child "weight". -func (n *NetworkInstance_Afts_NextHopGroup_NextHopAny) Weight() *NetworkInstance_Afts_NextHopGroup_NextHop_WeightAny { - return &NetworkInstance_Afts_NextHopGroup_NextHop_WeightAny{ +// Weight returns from NetworkInstance_Afts_NextHopGroup_NextHopPathAny the path struct for its child "weight". +func (n *NetworkInstance_Afts_NextHopGroup_NextHopPathAny) Weight() *NetworkInstance_Afts_NextHopGroup_NextHop_WeightPathAny { + return &NetworkInstance_Afts_NextHopGroup_NextHop_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -60287,411 +60501,411 @@ func (n *NetworkInstance_Afts_NextHopGroup_NextHopAny) Weight() *NetworkInstance } } -// NetworkInstance_Afts_NextHop_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRef struct { +// NetworkInstance_Afts_NextHop_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRefAny struct { +// NetworkInstance_Afts_NextHop_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRef_Interface struct { +// NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRef_Subinterface struct { +// NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Afts_NextHop_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Afts_NextHop_InterfaceRef) Interface() *NetworkInstance_Afts_NextHop_InterfaceRef_Interface { - return &NetworkInstance_Afts_NextHop_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Afts_NextHop_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Afts_NextHop_InterfaceRefPath) Interface() *NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePath { + return &NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Afts_NextHop_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Afts_NextHop_InterfaceRefAny) Interface() *NetworkInstance_Afts_NextHop_InterfaceRef_InterfaceAny { - return &NetworkInstance_Afts_NextHop_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Afts_NextHop_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Afts_NextHop_InterfaceRefPathAny) Interface() *NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Afts_NextHop_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Afts_NextHop_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Afts_NextHop_InterfaceRef) Subinterface() *NetworkInstance_Afts_NextHop_InterfaceRef_Subinterface { - return &NetworkInstance_Afts_NextHop_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Afts_NextHop_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Afts_NextHop_InterfaceRefPath) Subinterface() *NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Afts_NextHop_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Afts_NextHop_InterfaceRefAny) Subinterface() *NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Afts_NextHop_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Afts_NextHop_InterfaceRefPathAny) Subinterface() *NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Afts_NextHop_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Afts_PolicyForwardingEntry represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry struct { +// NetworkInstance_Afts_PolicyForwardingEntryPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntryPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntryAny struct { +// NetworkInstance_Afts_PolicyForwardingEntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_Index represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/index YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_Index struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/index YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/index YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IndexAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/index YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpDscp represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-dscp YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpDscp struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-dscp YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpDscpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-dscp YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpDscpAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-dscp YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpPrefix represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-prefix YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpPrefix struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-prefix YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-prefix YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-prefix YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpProtocol represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-protocol YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpProtocol struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-protocol YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/ip-protocol YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/ip-protocol YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_L4DstPort represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/l4-dst-port YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_L4DstPort struct { +// NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/l4-dst-port YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/l4-dst-port YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/l4-dst-port YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPort represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/l4-src-port YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPort struct { +// NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/l4-src-port YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/l4-src-port YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/l4-src-port YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MacAddress represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mac-address YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MacAddress struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mac-address YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MacAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mac-address YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MacAddressAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mac-address YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MplsLabel represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mpls-label YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MplsLabel struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mpls-label YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mpls-label YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mpls-label YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MplsTc represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mpls-tc YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MplsTc struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mpls-tc YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_MplsTcAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/mpls-tc YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_MplsTcAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/config/mpls-tc YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroup represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroup struct { +// NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/next-hop-group YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/next-hop-group YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwarded struct { +// NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/octets-forwarded YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/octets-forwarded YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPathAny struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwarded represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwarded struct { +// NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPath represents the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPath struct { *ygot.NodePath } -// NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/packets-forwarded YANG schema element. -type NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedAny struct { +// NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/afts/policy-forwarding/policy-forwarding-entry/state/packets-forwarded YANG schema element. +type NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPathAny struct { *ygot.NodePath } -// Index returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "index". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) Index() *NetworkInstance_Afts_PolicyForwardingEntry_Index { - return &NetworkInstance_Afts_PolicyForwardingEntry_Index{ +// Index returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "index". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) Index() *NetworkInstance_Afts_PolicyForwardingEntry_IndexPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "index". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) Index() *NetworkInstance_Afts_PolicyForwardingEntry_IndexAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_IndexAny{ +// Index returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "index". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) Index() *NetworkInstance_Afts_PolicyForwardingEntry_IndexPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// IpDscp returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "ip-dscp". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) IpDscp() *NetworkInstance_Afts_PolicyForwardingEntry_IpDscp { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpDscp{ +// IpDscp returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "ip-dscp". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) IpDscp() *NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip-dscp"}, + []string{"config", "ip-dscp"}, map[string]interface{}{}, n, ), } } -// IpDscp returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "ip-dscp". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) IpDscp() *NetworkInstance_Afts_PolicyForwardingEntry_IpDscpAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpDscpAny{ +// IpDscp returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "ip-dscp". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) IpDscp() *NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpDscpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip-dscp"}, + []string{"config", "ip-dscp"}, map[string]interface{}{}, n, ), } } -// IpPrefix returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "ip-prefix". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) IpPrefix() *NetworkInstance_Afts_PolicyForwardingEntry_IpPrefix { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpPrefix{ +// IpPrefix returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "ip-prefix". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) IpPrefix() *NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip-prefix"}, + []string{"config", "ip-prefix"}, map[string]interface{}{}, n, ), } } -// IpPrefix returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "ip-prefix". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) IpPrefix() *NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixAny{ +// IpPrefix returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "ip-prefix". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) IpPrefix() *NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpPrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip-prefix"}, + []string{"config", "ip-prefix"}, map[string]interface{}{}, n, ), } } -// IpProtocol returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "ip-protocol". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) IpProtocol() *NetworkInstance_Afts_PolicyForwardingEntry_IpProtocol { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpProtocol{ +// IpProtocol returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "ip-protocol". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) IpProtocol() *NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip-protocol"}, + []string{"config", "ip-protocol"}, map[string]interface{}{}, n, ), } } -// IpProtocol returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "ip-protocol". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) IpProtocol() *NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolAny{ +// IpProtocol returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "ip-protocol". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) IpProtocol() *NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_IpProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip-protocol"}, + []string{"config", "ip-protocol"}, map[string]interface{}{}, n, ), } } -// L4DstPort returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "l4-dst-port". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) L4DstPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4DstPort { - return &NetworkInstance_Afts_PolicyForwardingEntry_L4DstPort{ +// L4DstPort returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "l4-dst-port". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) L4DstPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "l4-dst-port"}, + []string{"config", "l4-dst-port"}, map[string]interface{}{}, n, ), } } -// L4DstPort returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "l4-dst-port". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) L4DstPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortAny{ +// L4DstPort returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "l4-dst-port". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) L4DstPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_L4DstPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "l4-dst-port"}, + []string{"config", "l4-dst-port"}, map[string]interface{}{}, n, ), } } -// L4SrcPort returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "l4-src-port". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) L4SrcPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPort { - return &NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPort{ +// L4SrcPort returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "l4-src-port". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) L4SrcPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "l4-src-port"}, + []string{"config", "l4-src-port"}, map[string]interface{}{}, n, ), } } -// L4SrcPort returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "l4-src-port". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) L4SrcPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortAny{ +// L4SrcPort returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "l4-src-port". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) L4SrcPort() *NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_L4SrcPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "l4-src-port"}, + []string{"config", "l4-src-port"}, map[string]interface{}{}, n, ), } } -// MacAddress returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) MacAddress() *NetworkInstance_Afts_PolicyForwardingEntry_MacAddress { - return &NetworkInstance_Afts_PolicyForwardingEntry_MacAddress{ +// MacAddress returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) MacAddress() *NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// MacAddress returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "mac-address". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) MacAddress() *NetworkInstance_Afts_PolicyForwardingEntry_MacAddressAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_MacAddressAny{ +// MacAddress returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "mac-address". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) MacAddress() *NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_MacAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// MplsLabel returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "mpls-label". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) MplsLabel() *NetworkInstance_Afts_PolicyForwardingEntry_MplsLabel { - return &NetworkInstance_Afts_PolicyForwardingEntry_MplsLabel{ +// MplsLabel returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "mpls-label". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) MplsLabel() *NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label"}, + []string{"config", "mpls-label"}, map[string]interface{}{}, n, ), } } -// MplsLabel returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "mpls-label". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) MplsLabel() *NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelAny{ +// MplsLabel returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "mpls-label". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) MplsLabel() *NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_MplsLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label"}, + []string{"config", "mpls-label"}, map[string]interface{}{}, n, ), } } -// MplsTc returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "mpls-tc". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) MplsTc() *NetworkInstance_Afts_PolicyForwardingEntry_MplsTc { - return &NetworkInstance_Afts_PolicyForwardingEntry_MplsTc{ +// MplsTc returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "mpls-tc". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) MplsTc() *NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-tc"}, + []string{"config", "mpls-tc"}, map[string]interface{}{}, n, ), } } -// MplsTc returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "mpls-tc". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) MplsTc() *NetworkInstance_Afts_PolicyForwardingEntry_MplsTcAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_MplsTcAny{ +// MplsTc returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "mpls-tc". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) MplsTc() *NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_MplsTcPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-tc"}, + []string{"config", "mpls-tc"}, map[string]interface{}{}, n, ), } } -// NextHopGroup returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) NextHopGroup() *NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroup { - return &NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroup{ +// NextHopGroup returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) NextHopGroup() *NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -60700,9 +60914,9 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntry) NextHopGroup() *NetworkInst } } -// NextHopGroup returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "next-hop-group". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) NextHopGroup() *NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupAny{ +// NextHopGroup returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "next-hop-group". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) NextHopGroup() *NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_NextHopGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop-group"}, map[string]interface{}{}, @@ -60711,9 +60925,9 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) NextHopGroup() *NetworkI } } -// OctetsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) OctetsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwarded { - return &NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwarded{ +// OctetsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) OctetsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -60722,9 +60936,9 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntry) OctetsForwarded() *NetworkI } } -// OctetsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "octets-forwarded". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) OctetsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedAny{ +// OctetsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "octets-forwarded". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) OctetsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_OctetsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "octets-forwarded"}, map[string]interface{}{}, @@ -60733,9 +60947,9 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) OctetsForwarded() *Netwo } } -// PacketsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntry the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_PolicyForwardingEntry) PacketsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwarded { - return &NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwarded{ +// PacketsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryPath the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPath) PacketsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPath { + return &NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPath{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -60744,9 +60958,9 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntry) PacketsForwarded() *Network } } -// PacketsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryAny the path struct for its child "packets-forwarded". -func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) PacketsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedAny { - return &NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedAny{ +// PacketsForwarded returns from NetworkInstance_Afts_PolicyForwardingEntryPathAny the path struct for its child "packets-forwarded". +func (n *NetworkInstance_Afts_PolicyForwardingEntryPathAny) PacketsForwarded() *NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPathAny { + return &NetworkInstance_Afts_PolicyForwardingEntry_PacketsForwardedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "packets-forwarded"}, map[string]interface{}{}, @@ -60755,51 +60969,51 @@ func (n *NetworkInstance_Afts_PolicyForwardingEntryAny) PacketsForwarded() *Netw } } -// NetworkInstance_ConnectionPoint represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point YANG schema element. -type NetworkInstance_ConnectionPoint struct { +// NetworkInstance_ConnectionPointPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point YANG schema element. +type NetworkInstance_ConnectionPointPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point YANG schema element. -type NetworkInstance_ConnectionPointAny struct { +// NetworkInstance_ConnectionPointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point YANG schema element. +type NetworkInstance_ConnectionPointPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_ConnectionPointId represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/state/connection-point-id YANG schema element. -type NetworkInstance_ConnectionPoint_ConnectionPointId struct { +// NetworkInstance_ConnectionPoint_ConnectionPointIdPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/config/connection-point-id YANG schema element. +type NetworkInstance_ConnectionPoint_ConnectionPointIdPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_ConnectionPointIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/state/connection-point-id YANG schema element. -type NetworkInstance_ConnectionPoint_ConnectionPointIdAny struct { +// NetworkInstance_ConnectionPoint_ConnectionPointIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/config/connection-point-id YANG schema element. +type NetworkInstance_ConnectionPoint_ConnectionPointIdPathAny struct { *ygot.NodePath } -// ConnectionPointId returns from NetworkInstance_ConnectionPoint the path struct for its child "connection-point-id". -func (n *NetworkInstance_ConnectionPoint) ConnectionPointId() *NetworkInstance_ConnectionPoint_ConnectionPointId { - return &NetworkInstance_ConnectionPoint_ConnectionPointId{ +// ConnectionPointId returns from NetworkInstance_ConnectionPointPath the path struct for its child "connection-point-id". +func (n *NetworkInstance_ConnectionPointPath) ConnectionPointId() *NetworkInstance_ConnectionPoint_ConnectionPointIdPath { + return &NetworkInstance_ConnectionPoint_ConnectionPointIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "connection-point-id"}, + []string{"config", "connection-point-id"}, map[string]interface{}{}, n, ), } } -// ConnectionPointId returns from NetworkInstance_ConnectionPointAny the path struct for its child "connection-point-id". -func (n *NetworkInstance_ConnectionPointAny) ConnectionPointId() *NetworkInstance_ConnectionPoint_ConnectionPointIdAny { - return &NetworkInstance_ConnectionPoint_ConnectionPointIdAny{ +// ConnectionPointId returns from NetworkInstance_ConnectionPointPathAny the path struct for its child "connection-point-id". +func (n *NetworkInstance_ConnectionPointPathAny) ConnectionPointId() *NetworkInstance_ConnectionPoint_ConnectionPointIdPathAny { + return &NetworkInstance_ConnectionPoint_ConnectionPointIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "connection-point-id"}, + []string{"config", "connection-point-id"}, map[string]interface{}{}, n, ), } } -// EndpointAny returns from NetworkInstance_ConnectionPoint the path struct for its child "endpoint". -func (n *NetworkInstance_ConnectionPoint) EndpointAny() *NetworkInstance_ConnectionPoint_EndpointAny { - return &NetworkInstance_ConnectionPoint_EndpointAny{ +// EndpointAny returns from NetworkInstance_ConnectionPointPath the path struct for its child "endpoint". +func (n *NetworkInstance_ConnectionPointPath) EndpointAny() *NetworkInstance_ConnectionPoint_EndpointPathAny { + return &NetworkInstance_ConnectionPoint_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"endpoints", "endpoint"}, map[string]interface{}{"endpoint-id": "*"}, @@ -60808,9 +61022,9 @@ func (n *NetworkInstance_ConnectionPoint) EndpointAny() *NetworkInstance_Connect } } -// EndpointAny returns from NetworkInstance_ConnectionPointAny the path struct for its child "endpoint". -func (n *NetworkInstance_ConnectionPointAny) EndpointAny() *NetworkInstance_ConnectionPoint_EndpointAny { - return &NetworkInstance_ConnectionPoint_EndpointAny{ +// EndpointAny returns from NetworkInstance_ConnectionPointPathAny the path struct for its child "endpoint". +func (n *NetworkInstance_ConnectionPointPathAny) EndpointAny() *NetworkInstance_ConnectionPoint_EndpointPathAny { + return &NetworkInstance_ConnectionPoint_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"endpoints", "endpoint"}, map[string]interface{}{"endpoint-id": "*"}, @@ -60819,9 +61033,9 @@ func (n *NetworkInstance_ConnectionPointAny) EndpointAny() *NetworkInstance_Conn } } -// Endpoint returns from NetworkInstance_ConnectionPoint the path struct for its child "endpoint". -func (n *NetworkInstance_ConnectionPoint) Endpoint(EndpointId string) *NetworkInstance_ConnectionPoint_Endpoint { - return &NetworkInstance_ConnectionPoint_Endpoint{ +// Endpoint returns from NetworkInstance_ConnectionPointPath the path struct for its child "endpoint". +func (n *NetworkInstance_ConnectionPointPath) Endpoint(EndpointId string) *NetworkInstance_ConnectionPoint_EndpointPath { + return &NetworkInstance_ConnectionPoint_EndpointPath{ NodePath: ygot.NewNodePath( []string{"endpoints", "endpoint"}, map[string]interface{}{"endpoint-id": EndpointId}, @@ -60830,9 +61044,9 @@ func (n *NetworkInstance_ConnectionPoint) Endpoint(EndpointId string) *NetworkIn } } -// Endpoint returns from NetworkInstance_ConnectionPointAny the path struct for its child "endpoint". -func (n *NetworkInstance_ConnectionPointAny) Endpoint(EndpointId string) *NetworkInstance_ConnectionPoint_EndpointAny { - return &NetworkInstance_ConnectionPoint_EndpointAny{ +// Endpoint returns from NetworkInstance_ConnectionPointPathAny the path struct for its child "endpoint". +func (n *NetworkInstance_ConnectionPointPathAny) Endpoint(EndpointId string) *NetworkInstance_ConnectionPoint_EndpointPathAny { + return &NetworkInstance_ConnectionPoint_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"endpoints", "endpoint"}, map[string]interface{}{"endpoint-id": EndpointId}, @@ -60841,59 +61055,59 @@ func (n *NetworkInstance_ConnectionPointAny) Endpoint(EndpointId string) *Networ } } -// NetworkInstance_ConnectionPoint_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint struct { +// NetworkInstance_ConnectionPoint_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint YANG schema element. +type NetworkInstance_ConnectionPoint_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint YANG schema element. -type NetworkInstance_ConnectionPoint_EndpointAny struct { +// NetworkInstance_ConnectionPoint_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint YANG schema element. +type NetworkInstance_ConnectionPoint_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Active represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/active YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Active struct { +// NetworkInstance_ConnectionPoint_Endpoint_ActivePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/active YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_ActivePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_ActiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/active YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_ActiveAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_ActivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/active YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_ActivePathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_EndpointId represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/endpoint-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_EndpointId struct { +// NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/endpoint-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_EndpointIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/endpoint-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_EndpointIdAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/endpoint-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Precedence represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/precedence YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Precedence struct { +// NetworkInstance_ConnectionPoint_Endpoint_PrecedencePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/precedence YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_PrecedencePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_PrecedenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/precedence YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_PrecedenceAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_PrecedencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/precedence YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_PrecedencePathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Type represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/type YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Type struct { +// NetworkInstance_ConnectionPoint_Endpoint_TypePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/type YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_TypePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/state/type YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_TypeAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/config/type YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_TypePathAny struct { *ygot.NodePath } -// Active returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "active". -func (n *NetworkInstance_ConnectionPoint_Endpoint) Active() *NetworkInstance_ConnectionPoint_Endpoint_Active { - return &NetworkInstance_ConnectionPoint_Endpoint_Active{ +// Active returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "active". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) Active() *NetworkInstance_ConnectionPoint_Endpoint_ActivePath { + return &NetworkInstance_ConnectionPoint_Endpoint_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -60902,9 +61116,9 @@ func (n *NetworkInstance_ConnectionPoint_Endpoint) Active() *NetworkInstance_Con } } -// Active returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "active". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) Active() *NetworkInstance_ConnectionPoint_Endpoint_ActiveAny { - return &NetworkInstance_ConnectionPoint_Endpoint_ActiveAny{ +// Active returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "active". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) Active() *NetworkInstance_ConnectionPoint_Endpoint_ActivePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -60913,31 +61127,31 @@ func (n *NetworkInstance_ConnectionPoint_EndpointAny) Active() *NetworkInstance_ } } -// EndpointId returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "endpoint-id". -func (n *NetworkInstance_ConnectionPoint_Endpoint) EndpointId() *NetworkInstance_ConnectionPoint_Endpoint_EndpointId { - return &NetworkInstance_ConnectionPoint_Endpoint_EndpointId{ +// EndpointId returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "endpoint-id". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) EndpointId() *NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPath { + return &NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "endpoint-id"}, + []string{"config", "endpoint-id"}, map[string]interface{}{}, n, ), } } -// EndpointId returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "endpoint-id". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) EndpointId() *NetworkInstance_ConnectionPoint_Endpoint_EndpointIdAny { - return &NetworkInstance_ConnectionPoint_Endpoint_EndpointIdAny{ +// EndpointId returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "endpoint-id". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) EndpointId() *NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_EndpointIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "endpoint-id"}, + []string{"config", "endpoint-id"}, map[string]interface{}{}, n, ), } } -// Local returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "local". -func (n *NetworkInstance_ConnectionPoint_Endpoint) Local() *NetworkInstance_ConnectionPoint_Endpoint_Local { - return &NetworkInstance_ConnectionPoint_Endpoint_Local{ +// Local returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "local". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) Local() *NetworkInstance_ConnectionPoint_Endpoint_LocalPath { + return &NetworkInstance_ConnectionPoint_Endpoint_LocalPath{ NodePath: ygot.NewNodePath( []string{"local"}, map[string]interface{}{}, @@ -60946,9 +61160,9 @@ func (n *NetworkInstance_ConnectionPoint_Endpoint) Local() *NetworkInstance_Conn } } -// Local returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "local". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) Local() *NetworkInstance_ConnectionPoint_Endpoint_LocalAny { - return &NetworkInstance_ConnectionPoint_Endpoint_LocalAny{ +// Local returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "local". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) Local() *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny{ NodePath: ygot.NewNodePath( []string{"local"}, map[string]interface{}{}, @@ -60957,31 +61171,31 @@ func (n *NetworkInstance_ConnectionPoint_EndpointAny) Local() *NetworkInstance_C } } -// Precedence returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "precedence". -func (n *NetworkInstance_ConnectionPoint_Endpoint) Precedence() *NetworkInstance_ConnectionPoint_Endpoint_Precedence { - return &NetworkInstance_ConnectionPoint_Endpoint_Precedence{ +// Precedence returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "precedence". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) Precedence() *NetworkInstance_ConnectionPoint_Endpoint_PrecedencePath { + return &NetworkInstance_ConnectionPoint_Endpoint_PrecedencePath{ NodePath: ygot.NewNodePath( - []string{"state", "precedence"}, + []string{"config", "precedence"}, map[string]interface{}{}, n, ), } } -// Precedence returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "precedence". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) Precedence() *NetworkInstance_ConnectionPoint_Endpoint_PrecedenceAny { - return &NetworkInstance_ConnectionPoint_Endpoint_PrecedenceAny{ +// Precedence returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "precedence". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) Precedence() *NetworkInstance_ConnectionPoint_Endpoint_PrecedencePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_PrecedencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "precedence"}, + []string{"config", "precedence"}, map[string]interface{}{}, n, ), } } -// Remote returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "remote". -func (n *NetworkInstance_ConnectionPoint_Endpoint) Remote() *NetworkInstance_ConnectionPoint_Endpoint_Remote { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote{ +// Remote returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "remote". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) Remote() *NetworkInstance_ConnectionPoint_Endpoint_RemotePath { + return &NetworkInstance_ConnectionPoint_Endpoint_RemotePath{ NodePath: ygot.NewNodePath( []string{"remote"}, map[string]interface{}{}, @@ -60990,9 +61204,9 @@ func (n *NetworkInstance_ConnectionPoint_Endpoint) Remote() *NetworkInstance_Con } } -// Remote returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "remote". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) Remote() *NetworkInstance_ConnectionPoint_Endpoint_RemoteAny { - return &NetworkInstance_ConnectionPoint_Endpoint_RemoteAny{ +// Remote returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "remote". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) Remote() *NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny{ NodePath: ygot.NewNodePath( []string{"remote"}, map[string]interface{}{}, @@ -61001,497 +61215,497 @@ func (n *NetworkInstance_ConnectionPoint_EndpointAny) Remote() *NetworkInstance_ } } -// Type returns from NetworkInstance_ConnectionPoint_Endpoint the path struct for its child "type". -func (n *NetworkInstance_ConnectionPoint_Endpoint) Type() *NetworkInstance_ConnectionPoint_Endpoint_Type { - return &NetworkInstance_ConnectionPoint_Endpoint_Type{ +// Type returns from NetworkInstance_ConnectionPoint_EndpointPath the path struct for its child "type". +func (n *NetworkInstance_ConnectionPoint_EndpointPath) Type() *NetworkInstance_ConnectionPoint_Endpoint_TypePath { + return &NetworkInstance_ConnectionPoint_Endpoint_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from NetworkInstance_ConnectionPoint_EndpointAny the path struct for its child "type". -func (n *NetworkInstance_ConnectionPoint_EndpointAny) Type() *NetworkInstance_ConnectionPoint_Endpoint_TypeAny { - return &NetworkInstance_ConnectionPoint_Endpoint_TypeAny{ +// Type returns from NetworkInstance_ConnectionPoint_EndpointPathAny the path struct for its child "type". +func (n *NetworkInstance_ConnectionPoint_EndpointPathAny) Type() *NetworkInstance_ConnectionPoint_Endpoint_TypePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_ConnectionPoint_Endpoint_Local represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local struct { +// NetworkInstance_ConnectionPoint_Endpoint_LocalPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_LocalPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_LocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_LocalAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_Interface represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/interface YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_Interface struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/interface YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/interface YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_InterfaceAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/interface YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteId represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteId struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffset represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-label-block-offset YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffset struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-label-block-offset YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-label-block-offset YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-label-block-offset YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSize represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-label-block-size YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSize struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-label-block-size YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/site-label-block-size YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizeAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/site-label-block-size YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/subinterface YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_Subinterface struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/subinterface YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/state/subinterface YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfaceAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/local/config/subinterface YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_ConnectionPoint_Endpoint_Local the path struct for its child "interface". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Local) Interface() *NetworkInstance_ConnectionPoint_Endpoint_Local_Interface { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_Interface{ +// Interface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPath the path struct for its child "interface". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPath) Interface() *NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePath { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalAny the path struct for its child "interface". -func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalAny) Interface() *NetworkInstance_ConnectionPoint_Endpoint_Local_InterfaceAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_InterfaceAny{ +// Interface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny the path struct for its child "interface". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny) Interface() *NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_Local the path struct for its child "site-id". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Local) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteId { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteId{ +// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPath the path struct for its child "site-id". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPath) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPath { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "site-id"}, + []string{"config", "site-id"}, map[string]interface{}{}, n, ), } } -// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_LocalAny the path struct for its child "site-id". -func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalAny) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdAny{ +// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny the path struct for its child "site-id". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "site-id"}, + []string{"config", "site-id"}, map[string]interface{}{}, n, ), } } -// SiteLabelBlockOffset returns from NetworkInstance_ConnectionPoint_Endpoint_Local the path struct for its child "site-label-block-offset". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Local) SiteLabelBlockOffset() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffset { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffset{ +// SiteLabelBlockOffset returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPath the path struct for its child "site-label-block-offset". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPath) SiteLabelBlockOffset() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPath { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPath{ NodePath: ygot.NewNodePath( - []string{"state", "site-label-block-offset"}, + []string{"config", "site-label-block-offset"}, map[string]interface{}{}, n, ), } } -// SiteLabelBlockOffset returns from NetworkInstance_ConnectionPoint_Endpoint_LocalAny the path struct for its child "site-label-block-offset". -func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalAny) SiteLabelBlockOffset() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetAny{ +// SiteLabelBlockOffset returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny the path struct for its child "site-label-block-offset". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny) SiteLabelBlockOffset() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockOffsetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "site-label-block-offset"}, + []string{"config", "site-label-block-offset"}, map[string]interface{}{}, n, ), } } -// SiteLabelBlockSize returns from NetworkInstance_ConnectionPoint_Endpoint_Local the path struct for its child "site-label-block-size". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Local) SiteLabelBlockSize() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSize { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSize{ +// SiteLabelBlockSize returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPath the path struct for its child "site-label-block-size". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPath) SiteLabelBlockSize() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePath { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePath{ NodePath: ygot.NewNodePath( - []string{"state", "site-label-block-size"}, + []string{"config", "site-label-block-size"}, map[string]interface{}{}, n, ), } } -// SiteLabelBlockSize returns from NetworkInstance_ConnectionPoint_Endpoint_LocalAny the path struct for its child "site-label-block-size". -func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalAny) SiteLabelBlockSize() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizeAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizeAny{ +// SiteLabelBlockSize returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny the path struct for its child "site-label-block-size". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny) SiteLabelBlockSize() *NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SiteLabelBlockSizePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "site-label-block-size"}, + []string{"config", "site-label-block-size"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_ConnectionPoint_Endpoint_Local the path struct for its child "subinterface". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Local) Subinterface() *NetworkInstance_ConnectionPoint_Endpoint_Local_Subinterface { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_Subinterface{ +// Subinterface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPath the path struct for its child "subinterface". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPath) Subinterface() *NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePath { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalAny the path struct for its child "subinterface". -func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalAny) Subinterface() *NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfaceAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_ConnectionPoint_Endpoint_LocalPathAny) Subinterface() *NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Local_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_ConnectionPoint_Endpoint_Remote represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote struct { +// NetworkInstance_ConnectionPoint_Endpoint_RemotePath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_RemotePath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_RemoteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_RemoteAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystem represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/remote-system YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystem struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/remote-system YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/remote-system YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/remote-system YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteId represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/site-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteId struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/site-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/site-id YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/site-id YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPathAny struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifier represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/virtual-circuit-identifier YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifier struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/virtual-circuit-identifier YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPath struct { *ygot.NodePath } -// NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/state/virtual-circuit-identifier YANG schema element. -type NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierAny struct { +// NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/connection-points/connection-point/endpoints/endpoint/remote/config/virtual-circuit-identifier YANG schema element. +type NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPathAny struct { *ygot.NodePath } -// RemoteSystem returns from NetworkInstance_ConnectionPoint_Endpoint_Remote the path struct for its child "remote-system". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Remote) RemoteSystem() *NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystem { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystem{ +// RemoteSystem returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePath the path struct for its child "remote-system". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePath) RemoteSystem() *NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPath { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-system"}, + []string{"config", "remote-system"}, map[string]interface{}{}, n, ), } } -// RemoteSystem returns from NetworkInstance_ConnectionPoint_Endpoint_RemoteAny the path struct for its child "remote-system". -func (n *NetworkInstance_ConnectionPoint_Endpoint_RemoteAny) RemoteSystem() *NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemAny{ +// RemoteSystem returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny the path struct for its child "remote-system". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny) RemoteSystem() *NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_RemoteSystemPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-system"}, + []string{"config", "remote-system"}, map[string]interface{}{}, n, ), } } -// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_Remote the path struct for its child "site-id". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Remote) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteId { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteId{ +// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePath the path struct for its child "site-id". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePath) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPath { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "site-id"}, + []string{"config", "site-id"}, map[string]interface{}{}, n, ), } } -// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_RemoteAny the path struct for its child "site-id". -func (n *NetworkInstance_ConnectionPoint_Endpoint_RemoteAny) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdAny{ +// SiteId returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny the path struct for its child "site-id". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny) SiteId() *NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_SiteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "site-id"}, + []string{"config", "site-id"}, map[string]interface{}{}, n, ), } } -// VirtualCircuitIdentifier returns from NetworkInstance_ConnectionPoint_Endpoint_Remote the path struct for its child "virtual-circuit-identifier". -func (n *NetworkInstance_ConnectionPoint_Endpoint_Remote) VirtualCircuitIdentifier() *NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifier { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifier{ +// VirtualCircuitIdentifier returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePath the path struct for its child "virtual-circuit-identifier". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePath) VirtualCircuitIdentifier() *NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPath { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPath{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-circuit-identifier"}, + []string{"config", "virtual-circuit-identifier"}, map[string]interface{}{}, n, ), } } -// VirtualCircuitIdentifier returns from NetworkInstance_ConnectionPoint_Endpoint_RemoteAny the path struct for its child "virtual-circuit-identifier". -func (n *NetworkInstance_ConnectionPoint_Endpoint_RemoteAny) VirtualCircuitIdentifier() *NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierAny { - return &NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierAny{ +// VirtualCircuitIdentifier returns from NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny the path struct for its child "virtual-circuit-identifier". +func (n *NetworkInstance_ConnectionPoint_Endpoint_RemotePathAny) VirtualCircuitIdentifier() *NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPathAny { + return &NetworkInstance_ConnectionPoint_Endpoint_Remote_VirtualCircuitIdentifierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "virtual-circuit-identifier"}, + []string{"config", "virtual-circuit-identifier"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Encapsulation represents the /openconfig-network-instance/network-instances/network-instance/encapsulation YANG schema element. -type NetworkInstance_Encapsulation struct { +// NetworkInstance_EncapsulationPath represents the /openconfig-network-instance/network-instances/network-instance/encapsulation YANG schema element. +type NetworkInstance_EncapsulationPath struct { *ygot.NodePath } -// NetworkInstance_EncapsulationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation YANG schema element. -type NetworkInstance_EncapsulationAny struct { +// NetworkInstance_EncapsulationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation YANG schema element. +type NetworkInstance_EncapsulationPathAny struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_ControlWord represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/control-word YANG schema element. -type NetworkInstance_Encapsulation_ControlWord struct { +// NetworkInstance_Encapsulation_ControlWordPath represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/control-word YANG schema element. +type NetworkInstance_Encapsulation_ControlWordPath struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_ControlWordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/control-word YANG schema element. -type NetworkInstance_Encapsulation_ControlWordAny struct { +// NetworkInstance_Encapsulation_ControlWordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/control-word YANG schema element. +type NetworkInstance_Encapsulation_ControlWordPathAny struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_EncapsulationType represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/encapsulation-type YANG schema element. -type NetworkInstance_Encapsulation_EncapsulationType struct { +// NetworkInstance_Encapsulation_EncapsulationTypePath represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/encapsulation-type YANG schema element. +type NetworkInstance_Encapsulation_EncapsulationTypePath struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_EncapsulationTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/encapsulation-type YANG schema element. -type NetworkInstance_Encapsulation_EncapsulationTypeAny struct { +// NetworkInstance_Encapsulation_EncapsulationTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/encapsulation-type YANG schema element. +type NetworkInstance_Encapsulation_EncapsulationTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_LabelAllocationMode represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/label-allocation-mode YANG schema element. -type NetworkInstance_Encapsulation_LabelAllocationMode struct { +// NetworkInstance_Encapsulation_LabelAllocationModePath represents the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/label-allocation-mode YANG schema element. +type NetworkInstance_Encapsulation_LabelAllocationModePath struct { *ygot.NodePath } -// NetworkInstance_Encapsulation_LabelAllocationModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/state/label-allocation-mode YANG schema element. -type NetworkInstance_Encapsulation_LabelAllocationModeAny struct { +// NetworkInstance_Encapsulation_LabelAllocationModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/encapsulation/config/label-allocation-mode YANG schema element. +type NetworkInstance_Encapsulation_LabelAllocationModePathAny struct { *ygot.NodePath } -// ControlWord returns from NetworkInstance_Encapsulation the path struct for its child "control-word". -func (n *NetworkInstance_Encapsulation) ControlWord() *NetworkInstance_Encapsulation_ControlWord { - return &NetworkInstance_Encapsulation_ControlWord{ +// ControlWord returns from NetworkInstance_EncapsulationPath the path struct for its child "control-word". +func (n *NetworkInstance_EncapsulationPath) ControlWord() *NetworkInstance_Encapsulation_ControlWordPath { + return &NetworkInstance_Encapsulation_ControlWordPath{ NodePath: ygot.NewNodePath( - []string{"state", "control-word"}, + []string{"config", "control-word"}, map[string]interface{}{}, n, ), } } -// ControlWord returns from NetworkInstance_EncapsulationAny the path struct for its child "control-word". -func (n *NetworkInstance_EncapsulationAny) ControlWord() *NetworkInstance_Encapsulation_ControlWordAny { - return &NetworkInstance_Encapsulation_ControlWordAny{ +// ControlWord returns from NetworkInstance_EncapsulationPathAny the path struct for its child "control-word". +func (n *NetworkInstance_EncapsulationPathAny) ControlWord() *NetworkInstance_Encapsulation_ControlWordPathAny { + return &NetworkInstance_Encapsulation_ControlWordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "control-word"}, + []string{"config", "control-word"}, map[string]interface{}{}, n, ), } } -// EncapsulationType returns from NetworkInstance_Encapsulation the path struct for its child "encapsulation-type". -func (n *NetworkInstance_Encapsulation) EncapsulationType() *NetworkInstance_Encapsulation_EncapsulationType { - return &NetworkInstance_Encapsulation_EncapsulationType{ +// EncapsulationType returns from NetworkInstance_EncapsulationPath the path struct for its child "encapsulation-type". +func (n *NetworkInstance_EncapsulationPath) EncapsulationType() *NetworkInstance_Encapsulation_EncapsulationTypePath { + return &NetworkInstance_Encapsulation_EncapsulationTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "encapsulation-type"}, + []string{"config", "encapsulation-type"}, map[string]interface{}{}, n, ), } } -// EncapsulationType returns from NetworkInstance_EncapsulationAny the path struct for its child "encapsulation-type". -func (n *NetworkInstance_EncapsulationAny) EncapsulationType() *NetworkInstance_Encapsulation_EncapsulationTypeAny { - return &NetworkInstance_Encapsulation_EncapsulationTypeAny{ +// EncapsulationType returns from NetworkInstance_EncapsulationPathAny the path struct for its child "encapsulation-type". +func (n *NetworkInstance_EncapsulationPathAny) EncapsulationType() *NetworkInstance_Encapsulation_EncapsulationTypePathAny { + return &NetworkInstance_Encapsulation_EncapsulationTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "encapsulation-type"}, + []string{"config", "encapsulation-type"}, map[string]interface{}{}, n, ), } } -// LabelAllocationMode returns from NetworkInstance_Encapsulation the path struct for its child "label-allocation-mode". -func (n *NetworkInstance_Encapsulation) LabelAllocationMode() *NetworkInstance_Encapsulation_LabelAllocationMode { - return &NetworkInstance_Encapsulation_LabelAllocationMode{ +// LabelAllocationMode returns from NetworkInstance_EncapsulationPath the path struct for its child "label-allocation-mode". +func (n *NetworkInstance_EncapsulationPath) LabelAllocationMode() *NetworkInstance_Encapsulation_LabelAllocationModePath { + return &NetworkInstance_Encapsulation_LabelAllocationModePath{ NodePath: ygot.NewNodePath( - []string{"state", "label-allocation-mode"}, + []string{"config", "label-allocation-mode"}, map[string]interface{}{}, n, ), } } -// LabelAllocationMode returns from NetworkInstance_EncapsulationAny the path struct for its child "label-allocation-mode". -func (n *NetworkInstance_EncapsulationAny) LabelAllocationMode() *NetworkInstance_Encapsulation_LabelAllocationModeAny { - return &NetworkInstance_Encapsulation_LabelAllocationModeAny{ +// LabelAllocationMode returns from NetworkInstance_EncapsulationPathAny the path struct for its child "label-allocation-mode". +func (n *NetworkInstance_EncapsulationPathAny) LabelAllocationMode() *NetworkInstance_Encapsulation_LabelAllocationModePathAny { + return &NetworkInstance_Encapsulation_LabelAllocationModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "label-allocation-mode"}, + []string{"config", "label-allocation-mode"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Fdb represents the /openconfig-network-instance/network-instances/network-instance/fdb YANG schema element. -type NetworkInstance_Fdb struct { +// NetworkInstance_FdbPath represents the /openconfig-network-instance/network-instances/network-instance/fdb YANG schema element. +type NetworkInstance_FdbPath struct { *ygot.NodePath } -// NetworkInstance_FdbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb YANG schema element. -type NetworkInstance_FdbAny struct { +// NetworkInstance_FdbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb YANG schema element. +type NetworkInstance_FdbPathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacAgingTime represents the /openconfig-network-instance/network-instances/network-instance/fdb/state/mac-aging-time YANG schema element. -type NetworkInstance_Fdb_MacAgingTime struct { +// NetworkInstance_Fdb_MacAgingTimePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/config/mac-aging-time YANG schema element. +type NetworkInstance_Fdb_MacAgingTimePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacAgingTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/state/mac-aging-time YANG schema element. -type NetworkInstance_Fdb_MacAgingTimeAny struct { +// NetworkInstance_Fdb_MacAgingTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/config/mac-aging-time YANG schema element. +type NetworkInstance_Fdb_MacAgingTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacLearning represents the /openconfig-network-instance/network-instances/network-instance/fdb/state/mac-learning YANG schema element. -type NetworkInstance_Fdb_MacLearning struct { +// NetworkInstance_Fdb_MacLearningPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/config/mac-learning YANG schema element. +type NetworkInstance_Fdb_MacLearningPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacLearningAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/state/mac-learning YANG schema element. -type NetworkInstance_Fdb_MacLearningAny struct { +// NetworkInstance_Fdb_MacLearningPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/config/mac-learning YANG schema element. +type NetworkInstance_Fdb_MacLearningPathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MaximumEntries represents the /openconfig-network-instance/network-instances/network-instance/fdb/state/maximum-entries YANG schema element. -type NetworkInstance_Fdb_MaximumEntries struct { +// NetworkInstance_Fdb_MaximumEntriesPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/config/maximum-entries YANG schema element. +type NetworkInstance_Fdb_MaximumEntriesPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MaximumEntriesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/state/maximum-entries YANG schema element. -type NetworkInstance_Fdb_MaximumEntriesAny struct { +// NetworkInstance_Fdb_MaximumEntriesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/config/maximum-entries YANG schema element. +type NetworkInstance_Fdb_MaximumEntriesPathAny struct { *ygot.NodePath } -// MacAgingTime returns from NetworkInstance_Fdb the path struct for its child "mac-aging-time". -func (n *NetworkInstance_Fdb) MacAgingTime() *NetworkInstance_Fdb_MacAgingTime { - return &NetworkInstance_Fdb_MacAgingTime{ +// MacAgingTime returns from NetworkInstance_FdbPath the path struct for its child "mac-aging-time". +func (n *NetworkInstance_FdbPath) MacAgingTime() *NetworkInstance_Fdb_MacAgingTimePath { + return &NetworkInstance_Fdb_MacAgingTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-aging-time"}, + []string{"config", "mac-aging-time"}, map[string]interface{}{}, n, ), } } -// MacAgingTime returns from NetworkInstance_FdbAny the path struct for its child "mac-aging-time". -func (n *NetworkInstance_FdbAny) MacAgingTime() *NetworkInstance_Fdb_MacAgingTimeAny { - return &NetworkInstance_Fdb_MacAgingTimeAny{ +// MacAgingTime returns from NetworkInstance_FdbPathAny the path struct for its child "mac-aging-time". +func (n *NetworkInstance_FdbPathAny) MacAgingTime() *NetworkInstance_Fdb_MacAgingTimePathAny { + return &NetworkInstance_Fdb_MacAgingTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-aging-time"}, + []string{"config", "mac-aging-time"}, map[string]interface{}{}, n, ), } } -// MacLearning returns from NetworkInstance_Fdb the path struct for its child "mac-learning". -func (n *NetworkInstance_Fdb) MacLearning() *NetworkInstance_Fdb_MacLearning { - return &NetworkInstance_Fdb_MacLearning{ +// MacLearning returns from NetworkInstance_FdbPath the path struct for its child "mac-learning". +func (n *NetworkInstance_FdbPath) MacLearning() *NetworkInstance_Fdb_MacLearningPath { + return &NetworkInstance_Fdb_MacLearningPath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-learning"}, + []string{"config", "mac-learning"}, map[string]interface{}{}, n, ), } } -// MacLearning returns from NetworkInstance_FdbAny the path struct for its child "mac-learning". -func (n *NetworkInstance_FdbAny) MacLearning() *NetworkInstance_Fdb_MacLearningAny { - return &NetworkInstance_Fdb_MacLearningAny{ +// MacLearning returns from NetworkInstance_FdbPathAny the path struct for its child "mac-learning". +func (n *NetworkInstance_FdbPathAny) MacLearning() *NetworkInstance_Fdb_MacLearningPathAny { + return &NetworkInstance_Fdb_MacLearningPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-learning"}, + []string{"config", "mac-learning"}, map[string]interface{}{}, n, ), } } -// MacTable returns from NetworkInstance_Fdb the path struct for its child "mac-table". -func (n *NetworkInstance_Fdb) MacTable() *NetworkInstance_Fdb_MacTable { - return &NetworkInstance_Fdb_MacTable{ +// MacTable returns from NetworkInstance_FdbPath the path struct for its child "mac-table". +func (n *NetworkInstance_FdbPath) MacTable() *NetworkInstance_Fdb_MacTablePath { + return &NetworkInstance_Fdb_MacTablePath{ NodePath: ygot.NewNodePath( []string{"mac-table"}, map[string]interface{}{}, @@ -61500,9 +61714,9 @@ func (n *NetworkInstance_Fdb) MacTable() *NetworkInstance_Fdb_MacTable { } } -// MacTable returns from NetworkInstance_FdbAny the path struct for its child "mac-table". -func (n *NetworkInstance_FdbAny) MacTable() *NetworkInstance_Fdb_MacTableAny { - return &NetworkInstance_Fdb_MacTableAny{ +// MacTable returns from NetworkInstance_FdbPathAny the path struct for its child "mac-table". +func (n *NetworkInstance_FdbPathAny) MacTable() *NetworkInstance_Fdb_MacTablePathAny { + return &NetworkInstance_Fdb_MacTablePathAny{ NodePath: ygot.NewNodePath( []string{"mac-table"}, map[string]interface{}{}, @@ -61511,41 +61725,41 @@ func (n *NetworkInstance_FdbAny) MacTable() *NetworkInstance_Fdb_MacTableAny { } } -// MaximumEntries returns from NetworkInstance_Fdb the path struct for its child "maximum-entries". -func (n *NetworkInstance_Fdb) MaximumEntries() *NetworkInstance_Fdb_MaximumEntries { - return &NetworkInstance_Fdb_MaximumEntries{ +// MaximumEntries returns from NetworkInstance_FdbPath the path struct for its child "maximum-entries". +func (n *NetworkInstance_FdbPath) MaximumEntries() *NetworkInstance_Fdb_MaximumEntriesPath { + return &NetworkInstance_Fdb_MaximumEntriesPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-entries"}, + []string{"config", "maximum-entries"}, map[string]interface{}{}, n, ), } } -// MaximumEntries returns from NetworkInstance_FdbAny the path struct for its child "maximum-entries". -func (n *NetworkInstance_FdbAny) MaximumEntries() *NetworkInstance_Fdb_MaximumEntriesAny { - return &NetworkInstance_Fdb_MaximumEntriesAny{ +// MaximumEntries returns from NetworkInstance_FdbPathAny the path struct for its child "maximum-entries". +func (n *NetworkInstance_FdbPathAny) MaximumEntries() *NetworkInstance_Fdb_MaximumEntriesPathAny { + return &NetworkInstance_Fdb_MaximumEntriesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-entries"}, + []string{"config", "maximum-entries"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Fdb_MacTable represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table YANG schema element. -type NetworkInstance_Fdb_MacTable struct { +// NetworkInstance_Fdb_MacTablePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table YANG schema element. +type NetworkInstance_Fdb_MacTablePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table YANG schema element. -type NetworkInstance_Fdb_MacTableAny struct { +// NetworkInstance_Fdb_MacTablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table YANG schema element. +type NetworkInstance_Fdb_MacTablePathAny struct { *ygot.NodePath } -// EntryAny returns from NetworkInstance_Fdb_MacTable the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTable) EntryAny() *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAny returns from NetworkInstance_Fdb_MacTablePath the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePath) EntryAny() *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": "*", "vlan": "*"}, @@ -61554,9 +61768,9 @@ func (n *NetworkInstance_Fdb_MacTable) EntryAny() *NetworkInstance_Fdb_MacTable_ } } -// EntryAny returns from NetworkInstance_Fdb_MacTableAny the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTableAny) EntryAny() *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAny returns from NetworkInstance_Fdb_MacTablePathAny the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePathAny) EntryAny() *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": "*", "vlan": "*"}, @@ -61565,9 +61779,9 @@ func (n *NetworkInstance_Fdb_MacTableAny) EntryAny() *NetworkInstance_Fdb_MacTab } } -// EntryAnyVlan returns from NetworkInstance_Fdb_MacTable the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTable) EntryAnyVlan(MacAddress string) *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAnyVlan returns from NetworkInstance_Fdb_MacTablePath the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePath) EntryAnyVlan(MacAddress string) *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": MacAddress, "vlan": "*"}, @@ -61576,9 +61790,9 @@ func (n *NetworkInstance_Fdb_MacTable) EntryAnyVlan(MacAddress string) *NetworkI } } -// EntryAnyVlan returns from NetworkInstance_Fdb_MacTableAny the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTableAny) EntryAnyVlan(MacAddress string) *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAnyVlan returns from NetworkInstance_Fdb_MacTablePathAny the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePathAny) EntryAnyVlan(MacAddress string) *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": MacAddress, "vlan": "*"}, @@ -61587,9 +61801,9 @@ func (n *NetworkInstance_Fdb_MacTableAny) EntryAnyVlan(MacAddress string) *Netwo } } -// EntryAnyMacAddress returns from NetworkInstance_Fdb_MacTable the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTable) EntryAnyMacAddress(Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAnyMacAddress returns from NetworkInstance_Fdb_MacTablePath the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePath) EntryAnyMacAddress(Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": "*", "vlan": Vlan}, @@ -61598,9 +61812,9 @@ func (n *NetworkInstance_Fdb_MacTable) EntryAnyMacAddress(Vlan uint16) *NetworkI } } -// EntryAnyMacAddress returns from NetworkInstance_Fdb_MacTableAny the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTableAny) EntryAnyMacAddress(Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// EntryAnyMacAddress returns from NetworkInstance_Fdb_MacTablePathAny the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePathAny) EntryAnyMacAddress(Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": "*", "vlan": Vlan}, @@ -61609,9 +61823,9 @@ func (n *NetworkInstance_Fdb_MacTableAny) EntryAnyMacAddress(Vlan uint16) *Netwo } } -// Entry returns from NetworkInstance_Fdb_MacTable the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTable) Entry(MacAddress string, Vlan uint16) *NetworkInstance_Fdb_MacTable_Entry { - return &NetworkInstance_Fdb_MacTable_Entry{ +// Entry returns from NetworkInstance_Fdb_MacTablePath the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePath) Entry(MacAddress string, Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryPath { + return &NetworkInstance_Fdb_MacTable_EntryPath{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": MacAddress, "vlan": Vlan}, @@ -61620,9 +61834,9 @@ func (n *NetworkInstance_Fdb_MacTable) Entry(MacAddress string, Vlan uint16) *Ne } } -// Entry returns from NetworkInstance_Fdb_MacTableAny the path struct for its child "entry". -func (n *NetworkInstance_Fdb_MacTableAny) Entry(MacAddress string, Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryAny { - return &NetworkInstance_Fdb_MacTable_EntryAny{ +// Entry returns from NetworkInstance_Fdb_MacTablePathAny the path struct for its child "entry". +func (n *NetworkInstance_Fdb_MacTablePathAny) Entry(MacAddress string, Vlan uint16) *NetworkInstance_Fdb_MacTable_EntryPathAny { + return &NetworkInstance_Fdb_MacTable_EntryPathAny{ NodePath: ygot.NewNodePath( []string{"entries", "entry"}, map[string]interface{}{"mac-address": MacAddress, "vlan": Vlan}, @@ -61631,59 +61845,59 @@ func (n *NetworkInstance_Fdb_MacTableAny) Entry(MacAddress string, Vlan uint16) } } -// NetworkInstance_Fdb_MacTable_Entry represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry struct { +// NetworkInstance_Fdb_MacTable_EntryPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry YANG schema element. +type NetworkInstance_Fdb_MacTable_EntryPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_EntryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry YANG schema element. -type NetworkInstance_Fdb_MacTable_EntryAny struct { +// NetworkInstance_Fdb_MacTable_EntryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry YANG schema element. +type NetworkInstance_Fdb_MacTable_EntryPathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Age represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/age YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Age struct { +// NetworkInstance_Fdb_MacTable_Entry_AgePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/age YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_AgePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_AgeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/age YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_AgeAny struct { +// NetworkInstance_Fdb_MacTable_Entry_AgePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/age YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_AgePathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_EntryType represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/entry-type YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_EntryType struct { +// NetworkInstance_Fdb_MacTable_Entry_EntryTypePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/entry-type YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_EntryTypePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_EntryTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/entry-type YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_EntryTypeAny struct { +// NetworkInstance_Fdb_MacTable_Entry_EntryTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/entry-type YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_EntryTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_MacAddress represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/mac-address YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_MacAddress struct { +// NetworkInstance_Fdb_MacTable_Entry_MacAddressPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/config/mac-address YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_MacAddressPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_MacAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/mac-address YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_MacAddressAny struct { +// NetworkInstance_Fdb_MacTable_Entry_MacAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/config/mac-address YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_MacAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Vlan represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/vlan YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Vlan struct { +// NetworkInstance_Fdb_MacTable_Entry_VlanPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/config/vlan YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_VlanPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_VlanAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/state/vlan YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_VlanAny struct { +// NetworkInstance_Fdb_MacTable_Entry_VlanPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/config/vlan YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_VlanPathAny struct { *ygot.NodePath } -// Age returns from NetworkInstance_Fdb_MacTable_Entry the path struct for its child "age". -func (n *NetworkInstance_Fdb_MacTable_Entry) Age() *NetworkInstance_Fdb_MacTable_Entry_Age { - return &NetworkInstance_Fdb_MacTable_Entry_Age{ +// Age returns from NetworkInstance_Fdb_MacTable_EntryPath the path struct for its child "age". +func (n *NetworkInstance_Fdb_MacTable_EntryPath) Age() *NetworkInstance_Fdb_MacTable_Entry_AgePath { + return &NetworkInstance_Fdb_MacTable_Entry_AgePath{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -61692,9 +61906,9 @@ func (n *NetworkInstance_Fdb_MacTable_Entry) Age() *NetworkInstance_Fdb_MacTable } } -// Age returns from NetworkInstance_Fdb_MacTable_EntryAny the path struct for its child "age". -func (n *NetworkInstance_Fdb_MacTable_EntryAny) Age() *NetworkInstance_Fdb_MacTable_Entry_AgeAny { - return &NetworkInstance_Fdb_MacTable_Entry_AgeAny{ +// Age returns from NetworkInstance_Fdb_MacTable_EntryPathAny the path struct for its child "age". +func (n *NetworkInstance_Fdb_MacTable_EntryPathAny) Age() *NetworkInstance_Fdb_MacTable_Entry_AgePathAny { + return &NetworkInstance_Fdb_MacTable_Entry_AgePathAny{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -61703,9 +61917,9 @@ func (n *NetworkInstance_Fdb_MacTable_EntryAny) Age() *NetworkInstance_Fdb_MacTa } } -// EntryType returns from NetworkInstance_Fdb_MacTable_Entry the path struct for its child "entry-type". -func (n *NetworkInstance_Fdb_MacTable_Entry) EntryType() *NetworkInstance_Fdb_MacTable_Entry_EntryType { - return &NetworkInstance_Fdb_MacTable_Entry_EntryType{ +// EntryType returns from NetworkInstance_Fdb_MacTable_EntryPath the path struct for its child "entry-type". +func (n *NetworkInstance_Fdb_MacTable_EntryPath) EntryType() *NetworkInstance_Fdb_MacTable_Entry_EntryTypePath { + return &NetworkInstance_Fdb_MacTable_Entry_EntryTypePath{ NodePath: ygot.NewNodePath( []string{"state", "entry-type"}, map[string]interface{}{}, @@ -61714,9 +61928,9 @@ func (n *NetworkInstance_Fdb_MacTable_Entry) EntryType() *NetworkInstance_Fdb_Ma } } -// EntryType returns from NetworkInstance_Fdb_MacTable_EntryAny the path struct for its child "entry-type". -func (n *NetworkInstance_Fdb_MacTable_EntryAny) EntryType() *NetworkInstance_Fdb_MacTable_Entry_EntryTypeAny { - return &NetworkInstance_Fdb_MacTable_Entry_EntryTypeAny{ +// EntryType returns from NetworkInstance_Fdb_MacTable_EntryPathAny the path struct for its child "entry-type". +func (n *NetworkInstance_Fdb_MacTable_EntryPathAny) EntryType() *NetworkInstance_Fdb_MacTable_Entry_EntryTypePathAny { + return &NetworkInstance_Fdb_MacTable_Entry_EntryTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "entry-type"}, map[string]interface{}{}, @@ -61725,9 +61939,9 @@ func (n *NetworkInstance_Fdb_MacTable_EntryAny) EntryType() *NetworkInstance_Fdb } } -// Interface returns from NetworkInstance_Fdb_MacTable_Entry the path struct for its child "interface". -func (n *NetworkInstance_Fdb_MacTable_Entry) Interface() *NetworkInstance_Fdb_MacTable_Entry_Interface { - return &NetworkInstance_Fdb_MacTable_Entry_Interface{ +// Interface returns from NetworkInstance_Fdb_MacTable_EntryPath the path struct for its child "interface". +func (n *NetworkInstance_Fdb_MacTable_EntryPath) Interface() *NetworkInstance_Fdb_MacTable_Entry_InterfacePath { + return &NetworkInstance_Fdb_MacTable_Entry_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interface"}, map[string]interface{}{}, @@ -61736,9 +61950,9 @@ func (n *NetworkInstance_Fdb_MacTable_Entry) Interface() *NetworkInstance_Fdb_Ma } } -// Interface returns from NetworkInstance_Fdb_MacTable_EntryAny the path struct for its child "interface". -func (n *NetworkInstance_Fdb_MacTable_EntryAny) Interface() *NetworkInstance_Fdb_MacTable_Entry_InterfaceAny { - return &NetworkInstance_Fdb_MacTable_Entry_InterfaceAny{ +// Interface returns from NetworkInstance_Fdb_MacTable_EntryPathAny the path struct for its child "interface". +func (n *NetworkInstance_Fdb_MacTable_EntryPathAny) Interface() *NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny { + return &NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface"}, map[string]interface{}{}, @@ -61747,63 +61961,63 @@ func (n *NetworkInstance_Fdb_MacTable_EntryAny) Interface() *NetworkInstance_Fdb } } -// MacAddress returns from NetworkInstance_Fdb_MacTable_Entry the path struct for its child "mac-address". -func (n *NetworkInstance_Fdb_MacTable_Entry) MacAddress() *NetworkInstance_Fdb_MacTable_Entry_MacAddress { - return &NetworkInstance_Fdb_MacTable_Entry_MacAddress{ +// MacAddress returns from NetworkInstance_Fdb_MacTable_EntryPath the path struct for its child "mac-address". +func (n *NetworkInstance_Fdb_MacTable_EntryPath) MacAddress() *NetworkInstance_Fdb_MacTable_Entry_MacAddressPath { + return &NetworkInstance_Fdb_MacTable_Entry_MacAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// MacAddress returns from NetworkInstance_Fdb_MacTable_EntryAny the path struct for its child "mac-address". -func (n *NetworkInstance_Fdb_MacTable_EntryAny) MacAddress() *NetworkInstance_Fdb_MacTable_Entry_MacAddressAny { - return &NetworkInstance_Fdb_MacTable_Entry_MacAddressAny{ +// MacAddress returns from NetworkInstance_Fdb_MacTable_EntryPathAny the path struct for its child "mac-address". +func (n *NetworkInstance_Fdb_MacTable_EntryPathAny) MacAddress() *NetworkInstance_Fdb_MacTable_Entry_MacAddressPathAny { + return &NetworkInstance_Fdb_MacTable_Entry_MacAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mac-address"}, + []string{"config", "mac-address"}, map[string]interface{}{}, n, ), } } -// Vlan returns from NetworkInstance_Fdb_MacTable_Entry the path struct for its child "vlan". -func (n *NetworkInstance_Fdb_MacTable_Entry) Vlan() *NetworkInstance_Fdb_MacTable_Entry_Vlan { - return &NetworkInstance_Fdb_MacTable_Entry_Vlan{ +// Vlan returns from NetworkInstance_Fdb_MacTable_EntryPath the path struct for its child "vlan". +func (n *NetworkInstance_Fdb_MacTable_EntryPath) Vlan() *NetworkInstance_Fdb_MacTable_Entry_VlanPath { + return &NetworkInstance_Fdb_MacTable_Entry_VlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// Vlan returns from NetworkInstance_Fdb_MacTable_EntryAny the path struct for its child "vlan". -func (n *NetworkInstance_Fdb_MacTable_EntryAny) Vlan() *NetworkInstance_Fdb_MacTable_Entry_VlanAny { - return &NetworkInstance_Fdb_MacTable_Entry_VlanAny{ +// Vlan returns from NetworkInstance_Fdb_MacTable_EntryPathAny the path struct for its child "vlan". +func (n *NetworkInstance_Fdb_MacTable_EntryPathAny) Vlan() *NetworkInstance_Fdb_MacTable_Entry_VlanPathAny { + return &NetworkInstance_Fdb_MacTable_Entry_VlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Fdb_MacTable_Entry_Interface represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface struct { +// NetworkInstance_Fdb_MacTable_Entry_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_InterfaceAny struct { +// NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny struct { *ygot.NodePath } -// InterfaceRef returns from NetworkInstance_Fdb_MacTable_Entry_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Fdb_MacTable_Entry_Interface) InterfaceRef() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Fdb_MacTable_Entry_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Fdb_MacTable_Entry_InterfacePath) InterfaceRef() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -61812,9 +62026,9 @@ func (n *NetworkInstance_Fdb_MacTable_Entry_Interface) InterfaceRef() *NetworkIn } } -// InterfaceRef returns from NetworkInstance_Fdb_MacTable_Entry_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Fdb_MacTable_Entry_InterfaceAny) InterfaceRef() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Fdb_MacTable_Entry_InterfacePathAny) InterfaceRef() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -61823,93 +62037,93 @@ func (n *NetworkInstance_Fdb_MacTable_Entry_InterfaceAny) InterfaceRef() *Networ } } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/fdb/mac-table/entries/entry/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef) Interface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Interface { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath) Interface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny) Interface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef) Subinterface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Fdb_MacTable_Entry_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_InterInstancePolicies represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies YANG schema element. -type NetworkInstance_InterInstancePolicies struct { +// NetworkInstance_InterInstancePoliciesPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies YANG schema element. +type NetworkInstance_InterInstancePoliciesPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePoliciesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies YANG schema element. -type NetworkInstance_InterInstancePoliciesAny struct { +// NetworkInstance_InterInstancePoliciesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies YANG schema element. +type NetworkInstance_InterInstancePoliciesPathAny struct { *ygot.NodePath } -// ApplyPolicy returns from NetworkInstance_InterInstancePolicies the path struct for its child "apply-policy". -func (n *NetworkInstance_InterInstancePolicies) ApplyPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy{ +// ApplyPolicy returns from NetworkInstance_InterInstancePoliciesPath the path struct for its child "apply-policy". +func (n *NetworkInstance_InterInstancePoliciesPath) ApplyPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicyPath { + return &NetworkInstance_InterInstancePolicies_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -61918,9 +62132,9 @@ func (n *NetworkInstance_InterInstancePolicies) ApplyPolicy() *NetworkInstance_I } } -// ApplyPolicy returns from NetworkInstance_InterInstancePoliciesAny the path struct for its child "apply-policy". -func (n *NetworkInstance_InterInstancePoliciesAny) ApplyPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicyAny { - return &NetworkInstance_InterInstancePolicies_ApplyPolicyAny{ +// ApplyPolicy returns from NetworkInstance_InterInstancePoliciesPathAny the path struct for its child "apply-policy". +func (n *NetworkInstance_InterInstancePoliciesPathAny) ApplyPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny { + return &NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -61929,295 +62143,295 @@ func (n *NetworkInstance_InterInstancePoliciesAny) ApplyPolicy() *NetworkInstanc } } -// NetworkInstance_InterInstancePolicies_ApplyPolicy represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicyPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicyAny struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicy struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyAny struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicy struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicy struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyAny struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicy struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyAny struct { +// NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/inter-instance-policies/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicy the path struct for its child "default-export-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicy) DefaultExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicy { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPath) DefaultExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPath { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyAny) DefaultExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyAny { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny) DefaultExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPathAny { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicy) DefaultImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicy { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPath) DefaultImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPath { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyAny) DefaultImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyAny { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny) DefaultImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicy the path struct for its child "export-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicy) ExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicy { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPath the path struct for its child "export-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPath) ExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPath { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyAny the path struct for its child "export-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyAny) ExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyAny { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny) ExportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPathAny { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicy) ImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicy { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPath) ImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPath { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyAny) ImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyAny { - return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_InterInstancePolicies_ApplyPolicyPathAny) ImportPolicy() *NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPathAny { + return &NetworkInstance_InterInstancePolicies_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Interface represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface YANG schema element. -type NetworkInstance_Interface struct { +// NetworkInstance_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface YANG schema element. +type NetworkInstance_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface YANG schema element. -type NetworkInstance_InterfaceAny struct { +// NetworkInstance_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface YANG schema element. +type NetworkInstance_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Interface_AssociatedAddressFamilies represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/associated-address-families YANG schema element. -type NetworkInstance_Interface_AssociatedAddressFamilies struct { +// NetworkInstance_Interface_AssociatedAddressFamiliesPath represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/associated-address-families YANG schema element. +type NetworkInstance_Interface_AssociatedAddressFamiliesPath struct { *ygot.NodePath } -// NetworkInstance_Interface_AssociatedAddressFamiliesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/associated-address-families YANG schema element. -type NetworkInstance_Interface_AssociatedAddressFamiliesAny struct { +// NetworkInstance_Interface_AssociatedAddressFamiliesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/associated-address-families YANG schema element. +type NetworkInstance_Interface_AssociatedAddressFamiliesPathAny struct { *ygot.NodePath } -// NetworkInstance_Interface_Id represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/id YANG schema element. -type NetworkInstance_Interface_Id struct { +// NetworkInstance_Interface_IdPath represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/id YANG schema element. +type NetworkInstance_Interface_IdPath struct { *ygot.NodePath } -// NetworkInstance_Interface_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/id YANG schema element. -type NetworkInstance_Interface_IdAny struct { +// NetworkInstance_Interface_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/id YANG schema element. +type NetworkInstance_Interface_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Interface_Interface represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/interface YANG schema element. -type NetworkInstance_Interface_Interface struct { +// NetworkInstance_Interface_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/interface YANG schema element. +type NetworkInstance_Interface_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Interface_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/interface YANG schema element. -type NetworkInstance_Interface_InterfaceAny struct { +// NetworkInstance_Interface_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/interface YANG schema element. +type NetworkInstance_Interface_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Interface_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/subinterface YANG schema element. -type NetworkInstance_Interface_Subinterface struct { +// NetworkInstance_Interface_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/subinterface YANG schema element. +type NetworkInstance_Interface_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Interface_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/state/subinterface YANG schema element. -type NetworkInstance_Interface_SubinterfaceAny struct { +// NetworkInstance_Interface_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/interfaces/interface/config/subinterface YANG schema element. +type NetworkInstance_Interface_SubinterfacePathAny struct { *ygot.NodePath } -// AssociatedAddressFamilies returns from NetworkInstance_Interface the path struct for its child "associated-address-families". -func (n *NetworkInstance_Interface) AssociatedAddressFamilies() *NetworkInstance_Interface_AssociatedAddressFamilies { - return &NetworkInstance_Interface_AssociatedAddressFamilies{ +// AssociatedAddressFamilies returns from NetworkInstance_InterfacePath the path struct for its child "associated-address-families". +func (n *NetworkInstance_InterfacePath) AssociatedAddressFamilies() *NetworkInstance_Interface_AssociatedAddressFamiliesPath { + return &NetworkInstance_Interface_AssociatedAddressFamiliesPath{ NodePath: ygot.NewNodePath( - []string{"state", "associated-address-families"}, + []string{"config", "associated-address-families"}, map[string]interface{}{}, n, ), } } -// AssociatedAddressFamilies returns from NetworkInstance_InterfaceAny the path struct for its child "associated-address-families". -func (n *NetworkInstance_InterfaceAny) AssociatedAddressFamilies() *NetworkInstance_Interface_AssociatedAddressFamiliesAny { - return &NetworkInstance_Interface_AssociatedAddressFamiliesAny{ +// AssociatedAddressFamilies returns from NetworkInstance_InterfacePathAny the path struct for its child "associated-address-families". +func (n *NetworkInstance_InterfacePathAny) AssociatedAddressFamilies() *NetworkInstance_Interface_AssociatedAddressFamiliesPathAny { + return &NetworkInstance_Interface_AssociatedAddressFamiliesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "associated-address-families"}, + []string{"config", "associated-address-families"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Interface the path struct for its child "id". -func (n *NetworkInstance_Interface) Id() *NetworkInstance_Interface_Id { - return &NetworkInstance_Interface_Id{ +// Id returns from NetworkInstance_InterfacePath the path struct for its child "id". +func (n *NetworkInstance_InterfacePath) Id() *NetworkInstance_Interface_IdPath { + return &NetworkInstance_Interface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_InterfaceAny the path struct for its child "id". -func (n *NetworkInstance_InterfaceAny) Id() *NetworkInstance_Interface_IdAny { - return &NetworkInstance_Interface_IdAny{ +// Id returns from NetworkInstance_InterfacePathAny the path struct for its child "id". +func (n *NetworkInstance_InterfacePathAny) Id() *NetworkInstance_Interface_IdPathAny { + return &NetworkInstance_Interface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Interface the path struct for its child "interface". -func (n *NetworkInstance_Interface) Interface() *NetworkInstance_Interface_Interface { - return &NetworkInstance_Interface_Interface{ +// Interface returns from NetworkInstance_InterfacePath the path struct for its child "interface". +func (n *NetworkInstance_InterfacePath) Interface() *NetworkInstance_Interface_InterfacePath { + return &NetworkInstance_Interface_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_InterfaceAny the path struct for its child "interface". -func (n *NetworkInstance_InterfaceAny) Interface() *NetworkInstance_Interface_InterfaceAny { - return &NetworkInstance_Interface_InterfaceAny{ +// Interface returns from NetworkInstance_InterfacePathAny the path struct for its child "interface". +func (n *NetworkInstance_InterfacePathAny) Interface() *NetworkInstance_Interface_InterfacePathAny { + return &NetworkInstance_Interface_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Interface the path struct for its child "subinterface". -func (n *NetworkInstance_Interface) Subinterface() *NetworkInstance_Interface_Subinterface { - return &NetworkInstance_Interface_Subinterface{ +// Subinterface returns from NetworkInstance_InterfacePath the path struct for its child "subinterface". +func (n *NetworkInstance_InterfacePath) Subinterface() *NetworkInstance_Interface_SubinterfacePath { + return &NetworkInstance_Interface_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_InterfaceAny the path struct for its child "subinterface". -func (n *NetworkInstance_InterfaceAny) Subinterface() *NetworkInstance_Interface_SubinterfaceAny { - return &NetworkInstance_Interface_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_InterfacePathAny the path struct for its child "subinterface". +func (n *NetworkInstance_InterfacePathAny) Subinterface() *NetworkInstance_Interface_SubinterfacePathAny { + return &NetworkInstance_Interface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls represents the /openconfig-network-instance/network-instances/network-instance/mpls YANG schema element. -type NetworkInstance_Mpls struct { +// NetworkInstance_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls YANG schema element. +type NetworkInstance_MplsPath struct { *ygot.NodePath } -// NetworkInstance_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls YANG schema element. -type NetworkInstance_MplsAny struct { +// NetworkInstance_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls YANG schema element. +type NetworkInstance_MplsPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Mpls the path struct for its child "global". -func (n *NetworkInstance_Mpls) Global() *NetworkInstance_Mpls_Global { - return &NetworkInstance_Mpls_Global{ +// Global returns from NetworkInstance_MplsPath the path struct for its child "global". +func (n *NetworkInstance_MplsPath) Global() *NetworkInstance_Mpls_GlobalPath { + return &NetworkInstance_Mpls_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -62226,9 +62440,9 @@ func (n *NetworkInstance_Mpls) Global() *NetworkInstance_Mpls_Global { } } -// Global returns from NetworkInstance_MplsAny the path struct for its child "global". -func (n *NetworkInstance_MplsAny) Global() *NetworkInstance_Mpls_GlobalAny { - return &NetworkInstance_Mpls_GlobalAny{ +// Global returns from NetworkInstance_MplsPathAny the path struct for its child "global". +func (n *NetworkInstance_MplsPathAny) Global() *NetworkInstance_Mpls_GlobalPathAny { + return &NetworkInstance_Mpls_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -62237,9 +62451,9 @@ func (n *NetworkInstance_MplsAny) Global() *NetworkInstance_Mpls_GlobalAny { } } -// InterfaceAny returns from NetworkInstance_Mpls the path struct for its child "interface". -func (n *NetworkInstance_Mpls) InterfaceAny() *NetworkInstance_Mpls_InterfaceAny { - return &NetworkInstance_Mpls_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_MplsPath the path struct for its child "interface". +func (n *NetworkInstance_MplsPath) InterfaceAny() *NetworkInstance_Mpls_InterfacePathAny { + return &NetworkInstance_Mpls_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"te-interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -62248,9 +62462,9 @@ func (n *NetworkInstance_Mpls) InterfaceAny() *NetworkInstance_Mpls_InterfaceAny } } -// InterfaceAny returns from NetworkInstance_MplsAny the path struct for its child "interface". -func (n *NetworkInstance_MplsAny) InterfaceAny() *NetworkInstance_Mpls_InterfaceAny { - return &NetworkInstance_Mpls_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_MplsPathAny the path struct for its child "interface". +func (n *NetworkInstance_MplsPathAny) InterfaceAny() *NetworkInstance_Mpls_InterfacePathAny { + return &NetworkInstance_Mpls_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"te-interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -62259,9 +62473,9 @@ func (n *NetworkInstance_MplsAny) InterfaceAny() *NetworkInstance_Mpls_Interface } } -// Interface returns from NetworkInstance_Mpls the path struct for its child "interface". -func (n *NetworkInstance_Mpls) Interface(InterfaceId string) *NetworkInstance_Mpls_Interface { - return &NetworkInstance_Mpls_Interface{ +// Interface returns from NetworkInstance_MplsPath the path struct for its child "interface". +func (n *NetworkInstance_MplsPath) Interface(InterfaceId string) *NetworkInstance_Mpls_InterfacePath { + return &NetworkInstance_Mpls_InterfacePath{ NodePath: ygot.NewNodePath( []string{"te-interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -62270,9 +62484,9 @@ func (n *NetworkInstance_Mpls) Interface(InterfaceId string) *NetworkInstance_Mp } } -// Interface returns from NetworkInstance_MplsAny the path struct for its child "interface". -func (n *NetworkInstance_MplsAny) Interface(InterfaceId string) *NetworkInstance_Mpls_InterfaceAny { - return &NetworkInstance_Mpls_InterfaceAny{ +// Interface returns from NetworkInstance_MplsPathAny the path struct for its child "interface". +func (n *NetworkInstance_MplsPathAny) Interface(InterfaceId string) *NetworkInstance_Mpls_InterfacePathAny { + return &NetworkInstance_Mpls_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"te-interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -62281,9 +62495,9 @@ func (n *NetworkInstance_MplsAny) Interface(InterfaceId string) *NetworkInstance } } -// Lsps returns from NetworkInstance_Mpls the path struct for its child "lsps". -func (n *NetworkInstance_Mpls) Lsps() *NetworkInstance_Mpls_Lsps { - return &NetworkInstance_Mpls_Lsps{ +// Lsps returns from NetworkInstance_MplsPath the path struct for its child "lsps". +func (n *NetworkInstance_MplsPath) Lsps() *NetworkInstance_Mpls_LspsPath { + return &NetworkInstance_Mpls_LspsPath{ NodePath: ygot.NewNodePath( []string{"lsps"}, map[string]interface{}{}, @@ -62292,9 +62506,9 @@ func (n *NetworkInstance_Mpls) Lsps() *NetworkInstance_Mpls_Lsps { } } -// Lsps returns from NetworkInstance_MplsAny the path struct for its child "lsps". -func (n *NetworkInstance_MplsAny) Lsps() *NetworkInstance_Mpls_LspsAny { - return &NetworkInstance_Mpls_LspsAny{ +// Lsps returns from NetworkInstance_MplsPathAny the path struct for its child "lsps". +func (n *NetworkInstance_MplsPathAny) Lsps() *NetworkInstance_Mpls_LspsPathAny { + return &NetworkInstance_Mpls_LspsPathAny{ NodePath: ygot.NewNodePath( []string{"lsps"}, map[string]interface{}{}, @@ -62303,9 +62517,9 @@ func (n *NetworkInstance_MplsAny) Lsps() *NetworkInstance_Mpls_LspsAny { } } -// SignalingProtocols returns from NetworkInstance_Mpls the path struct for its child "signaling-protocols". -func (n *NetworkInstance_Mpls) SignalingProtocols() *NetworkInstance_Mpls_SignalingProtocols { - return &NetworkInstance_Mpls_SignalingProtocols{ +// SignalingProtocols returns from NetworkInstance_MplsPath the path struct for its child "signaling-protocols". +func (n *NetworkInstance_MplsPath) SignalingProtocols() *NetworkInstance_Mpls_SignalingProtocolsPath { + return &NetworkInstance_Mpls_SignalingProtocolsPath{ NodePath: ygot.NewNodePath( []string{"signaling-protocols"}, map[string]interface{}{}, @@ -62314,9 +62528,9 @@ func (n *NetworkInstance_Mpls) SignalingProtocols() *NetworkInstance_Mpls_Signal } } -// SignalingProtocols returns from NetworkInstance_MplsAny the path struct for its child "signaling-protocols". -func (n *NetworkInstance_MplsAny) SignalingProtocols() *NetworkInstance_Mpls_SignalingProtocolsAny { - return &NetworkInstance_Mpls_SignalingProtocolsAny{ +// SignalingProtocols returns from NetworkInstance_MplsPathAny the path struct for its child "signaling-protocols". +func (n *NetworkInstance_MplsPathAny) SignalingProtocols() *NetworkInstance_Mpls_SignalingProtocolsPathAny { + return &NetworkInstance_Mpls_SignalingProtocolsPathAny{ NodePath: ygot.NewNodePath( []string{"signaling-protocols"}, map[string]interface{}{}, @@ -62325,9 +62539,9 @@ func (n *NetworkInstance_MplsAny) SignalingProtocols() *NetworkInstance_Mpls_Sig } } -// TeGlobalAttributes returns from NetworkInstance_Mpls the path struct for its child "te-global-attributes". -func (n *NetworkInstance_Mpls) TeGlobalAttributes() *NetworkInstance_Mpls_TeGlobalAttributes { - return &NetworkInstance_Mpls_TeGlobalAttributes{ +// TeGlobalAttributes returns from NetworkInstance_MplsPath the path struct for its child "te-global-attributes". +func (n *NetworkInstance_MplsPath) TeGlobalAttributes() *NetworkInstance_Mpls_TeGlobalAttributesPath { + return &NetworkInstance_Mpls_TeGlobalAttributesPath{ NodePath: ygot.NewNodePath( []string{"te-global-attributes"}, map[string]interface{}{}, @@ -62336,9 +62550,9 @@ func (n *NetworkInstance_Mpls) TeGlobalAttributes() *NetworkInstance_Mpls_TeGlob } } -// TeGlobalAttributes returns from NetworkInstance_MplsAny the path struct for its child "te-global-attributes". -func (n *NetworkInstance_MplsAny) TeGlobalAttributes() *NetworkInstance_Mpls_TeGlobalAttributesAny { - return &NetworkInstance_Mpls_TeGlobalAttributesAny{ +// TeGlobalAttributes returns from NetworkInstance_MplsPathAny the path struct for its child "te-global-attributes". +func (n *NetworkInstance_MplsPathAny) TeGlobalAttributes() *NetworkInstance_Mpls_TeGlobalAttributesPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"te-global-attributes"}, map[string]interface{}{}, @@ -62347,49 +62561,49 @@ func (n *NetworkInstance_MplsAny) TeGlobalAttributes() *NetworkInstance_Mpls_TeG } } -// NetworkInstance_Mpls_Global represents the /openconfig-network-instance/network-instances/network-instance/mpls/global YANG schema element. -type NetworkInstance_Mpls_Global struct { +// NetworkInstance_Mpls_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global YANG schema element. +type NetworkInstance_Mpls_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global YANG schema element. -type NetworkInstance_Mpls_GlobalAny struct { +// NetworkInstance_Mpls_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global YANG schema element. +type NetworkInstance_Mpls_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_NullLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/null-label YANG schema element. -type NetworkInstance_Mpls_Global_NullLabel struct { +// NetworkInstance_Mpls_Global_NullLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/null-label YANG schema element. +type NetworkInstance_Mpls_Global_NullLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_NullLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/null-label YANG schema element. -type NetworkInstance_Mpls_Global_NullLabelAny struct { +// NetworkInstance_Mpls_Global_NullLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/null-label YANG schema element. +type NetworkInstance_Mpls_Global_NullLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_PwEncapsulation represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/pw-encapsulation YANG schema element. -type NetworkInstance_Mpls_Global_PwEncapsulation struct { +// NetworkInstance_Mpls_Global_PwEncapsulationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/pw-encapsulation YANG schema element. +type NetworkInstance_Mpls_Global_PwEncapsulationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_PwEncapsulationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/pw-encapsulation YANG schema element. -type NetworkInstance_Mpls_Global_PwEncapsulationAny struct { +// NetworkInstance_Mpls_Global_PwEncapsulationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/pw-encapsulation YANG schema element. +type NetworkInstance_Mpls_Global_PwEncapsulationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_TtlPropagation represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/ttl-propagation YANG schema element. -type NetworkInstance_Mpls_Global_TtlPropagation struct { +// NetworkInstance_Mpls_Global_TtlPropagationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/ttl-propagation YANG schema element. +type NetworkInstance_Mpls_Global_TtlPropagationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_TtlPropagationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/state/ttl-propagation YANG schema element. -type NetworkInstance_Mpls_Global_TtlPropagationAny struct { +// NetworkInstance_Mpls_Global_TtlPropagationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/config/ttl-propagation YANG schema element. +type NetworkInstance_Mpls_Global_TtlPropagationPathAny struct { *ygot.NodePath } -// InterfaceAny returns from NetworkInstance_Mpls_Global the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Global) InterfaceAny() *NetworkInstance_Mpls_Global_InterfaceAny { - return &NetworkInstance_Mpls_Global_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_GlobalPath) InterfaceAny() *NetworkInstance_Mpls_Global_InterfacePathAny { + return &NetworkInstance_Mpls_Global_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -62398,9 +62612,9 @@ func (n *NetworkInstance_Mpls_Global) InterfaceAny() *NetworkInstance_Mpls_Globa } } -// InterfaceAny returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_GlobalAny) InterfaceAny() *NetworkInstance_Mpls_Global_InterfaceAny { - return &NetworkInstance_Mpls_Global_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_GlobalPathAny) InterfaceAny() *NetworkInstance_Mpls_Global_InterfacePathAny { + return &NetworkInstance_Mpls_Global_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -62409,9 +62623,9 @@ func (n *NetworkInstance_Mpls_GlobalAny) InterfaceAny() *NetworkInstance_Mpls_Gl } } -// Interface returns from NetworkInstance_Mpls_Global the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Global) Interface(InterfaceId string) *NetworkInstance_Mpls_Global_Interface { - return &NetworkInstance_Mpls_Global_Interface{ +// Interface returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_GlobalPath) Interface(InterfaceId string) *NetworkInstance_Mpls_Global_InterfacePath { + return &NetworkInstance_Mpls_Global_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -62420,9 +62634,9 @@ func (n *NetworkInstance_Mpls_Global) Interface(InterfaceId string) *NetworkInst } } -// Interface returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_GlobalAny) Interface(InterfaceId string) *NetworkInstance_Mpls_Global_InterfaceAny { - return &NetworkInstance_Mpls_Global_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_GlobalPathAny) Interface(InterfaceId string) *NetworkInstance_Mpls_Global_InterfacePathAny { + return &NetworkInstance_Mpls_Global_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -62431,53 +62645,53 @@ func (n *NetworkInstance_Mpls_GlobalAny) Interface(InterfaceId string) *NetworkI } } -// NullLabel returns from NetworkInstance_Mpls_Global the path struct for its child "null-label". -func (n *NetworkInstance_Mpls_Global) NullLabel() *NetworkInstance_Mpls_Global_NullLabel { - return &NetworkInstance_Mpls_Global_NullLabel{ +// NullLabel returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "null-label". +func (n *NetworkInstance_Mpls_GlobalPath) NullLabel() *NetworkInstance_Mpls_Global_NullLabelPath { + return &NetworkInstance_Mpls_Global_NullLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "null-label"}, + []string{"config", "null-label"}, map[string]interface{}{}, n, ), } } -// NullLabel returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "null-label". -func (n *NetworkInstance_Mpls_GlobalAny) NullLabel() *NetworkInstance_Mpls_Global_NullLabelAny { - return &NetworkInstance_Mpls_Global_NullLabelAny{ +// NullLabel returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "null-label". +func (n *NetworkInstance_Mpls_GlobalPathAny) NullLabel() *NetworkInstance_Mpls_Global_NullLabelPathAny { + return &NetworkInstance_Mpls_Global_NullLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "null-label"}, + []string{"config", "null-label"}, map[string]interface{}{}, n, ), } } -// PwEncapsulation returns from NetworkInstance_Mpls_Global the path struct for its child "pw-encapsulation". -func (n *NetworkInstance_Mpls_Global) PwEncapsulation() *NetworkInstance_Mpls_Global_PwEncapsulation { - return &NetworkInstance_Mpls_Global_PwEncapsulation{ +// PwEncapsulation returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "pw-encapsulation". +func (n *NetworkInstance_Mpls_GlobalPath) PwEncapsulation() *NetworkInstance_Mpls_Global_PwEncapsulationPath { + return &NetworkInstance_Mpls_Global_PwEncapsulationPath{ NodePath: ygot.NewNodePath( - []string{"state", "pw-encapsulation"}, + []string{"config", "pw-encapsulation"}, map[string]interface{}{}, n, ), } } -// PwEncapsulation returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "pw-encapsulation". -func (n *NetworkInstance_Mpls_GlobalAny) PwEncapsulation() *NetworkInstance_Mpls_Global_PwEncapsulationAny { - return &NetworkInstance_Mpls_Global_PwEncapsulationAny{ +// PwEncapsulation returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "pw-encapsulation". +func (n *NetworkInstance_Mpls_GlobalPathAny) PwEncapsulation() *NetworkInstance_Mpls_Global_PwEncapsulationPathAny { + return &NetworkInstance_Mpls_Global_PwEncapsulationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "pw-encapsulation"}, + []string{"config", "pw-encapsulation"}, map[string]interface{}{}, n, ), } } -// ReservedLabelBlockAny returns from NetworkInstance_Mpls_Global the path struct for its child "reserved-label-block". -func (n *NetworkInstance_Mpls_Global) ReservedLabelBlockAny() *NetworkInstance_Mpls_Global_ReservedLabelBlockAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlockAny{ +// ReservedLabelBlockAny returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "reserved-label-block". +func (n *NetworkInstance_Mpls_GlobalPath) ReservedLabelBlockAny() *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny{ NodePath: ygot.NewNodePath( []string{"reserved-label-blocks", "reserved-label-block"}, map[string]interface{}{"local-id": "*"}, @@ -62486,9 +62700,9 @@ func (n *NetworkInstance_Mpls_Global) ReservedLabelBlockAny() *NetworkInstance_M } } -// ReservedLabelBlockAny returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "reserved-label-block". -func (n *NetworkInstance_Mpls_GlobalAny) ReservedLabelBlockAny() *NetworkInstance_Mpls_Global_ReservedLabelBlockAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlockAny{ +// ReservedLabelBlockAny returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "reserved-label-block". +func (n *NetworkInstance_Mpls_GlobalPathAny) ReservedLabelBlockAny() *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny{ NodePath: ygot.NewNodePath( []string{"reserved-label-blocks", "reserved-label-block"}, map[string]interface{}{"local-id": "*"}, @@ -62497,9 +62711,9 @@ func (n *NetworkInstance_Mpls_GlobalAny) ReservedLabelBlockAny() *NetworkInstanc } } -// ReservedLabelBlock returns from NetworkInstance_Mpls_Global the path struct for its child "reserved-label-block". -func (n *NetworkInstance_Mpls_Global) ReservedLabelBlock(LocalId string) *NetworkInstance_Mpls_Global_ReservedLabelBlock { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock{ +// ReservedLabelBlock returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "reserved-label-block". +func (n *NetworkInstance_Mpls_GlobalPath) ReservedLabelBlock(LocalId string) *NetworkInstance_Mpls_Global_ReservedLabelBlockPath { + return &NetworkInstance_Mpls_Global_ReservedLabelBlockPath{ NodePath: ygot.NewNodePath( []string{"reserved-label-blocks", "reserved-label-block"}, map[string]interface{}{"local-id": LocalId}, @@ -62508,9 +62722,9 @@ func (n *NetworkInstance_Mpls_Global) ReservedLabelBlock(LocalId string) *Networ } } -// ReservedLabelBlock returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "reserved-label-block". -func (n *NetworkInstance_Mpls_GlobalAny) ReservedLabelBlock(LocalId string) *NetworkInstance_Mpls_Global_ReservedLabelBlockAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlockAny{ +// ReservedLabelBlock returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "reserved-label-block". +func (n *NetworkInstance_Mpls_GlobalPathAny) ReservedLabelBlock(LocalId string) *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny{ NodePath: ygot.NewNodePath( []string{"reserved-label-blocks", "reserved-label-block"}, map[string]interface{}{"local-id": LocalId}, @@ -62519,83 +62733,83 @@ func (n *NetworkInstance_Mpls_GlobalAny) ReservedLabelBlock(LocalId string) *Net } } -// TtlPropagation returns from NetworkInstance_Mpls_Global the path struct for its child "ttl-propagation". -func (n *NetworkInstance_Mpls_Global) TtlPropagation() *NetworkInstance_Mpls_Global_TtlPropagation { - return &NetworkInstance_Mpls_Global_TtlPropagation{ +// TtlPropagation returns from NetworkInstance_Mpls_GlobalPath the path struct for its child "ttl-propagation". +func (n *NetworkInstance_Mpls_GlobalPath) TtlPropagation() *NetworkInstance_Mpls_Global_TtlPropagationPath { + return &NetworkInstance_Mpls_Global_TtlPropagationPath{ NodePath: ygot.NewNodePath( - []string{"state", "ttl-propagation"}, + []string{"config", "ttl-propagation"}, map[string]interface{}{}, n, ), } } -// TtlPropagation returns from NetworkInstance_Mpls_GlobalAny the path struct for its child "ttl-propagation". -func (n *NetworkInstance_Mpls_GlobalAny) TtlPropagation() *NetworkInstance_Mpls_Global_TtlPropagationAny { - return &NetworkInstance_Mpls_Global_TtlPropagationAny{ +// TtlPropagation returns from NetworkInstance_Mpls_GlobalPathAny the path struct for its child "ttl-propagation". +func (n *NetworkInstance_Mpls_GlobalPathAny) TtlPropagation() *NetworkInstance_Mpls_Global_TtlPropagationPathAny { + return &NetworkInstance_Mpls_Global_TtlPropagationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ttl-propagation"}, + []string{"config", "ttl-propagation"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Global_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_Global_Interface struct { +// NetworkInstance_Mpls_Global_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_Global_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_Global_InterfaceAny struct { +// NetworkInstance_Mpls_Global_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_Global_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceId struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceIdAny struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_MplsEnabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/state/mpls-enabled YANG schema element. -type NetworkInstance_Mpls_Global_Interface_MplsEnabled struct { +// NetworkInstance_Mpls_Global_Interface_MplsEnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/config/mpls-enabled YANG schema element. +type NetworkInstance_Mpls_Global_Interface_MplsEnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_MplsEnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/state/mpls-enabled YANG schema element. -type NetworkInstance_Mpls_Global_Interface_MplsEnabledAny struct { +// NetworkInstance_Mpls_Global_Interface_MplsEnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/config/mpls-enabled YANG schema element. +type NetworkInstance_Mpls_Global_Interface_MplsEnabledPathAny struct { *ygot.NodePath } -// InterfaceId returns from NetworkInstance_Mpls_Global_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_Global_Interface) InterfaceId() *NetworkInstance_Mpls_Global_Interface_InterfaceId { - return &NetworkInstance_Mpls_Global_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_Global_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_Global_InterfacePath) InterfaceId() *NetworkInstance_Mpls_Global_Interface_InterfaceIdPath { + return &NetworkInstance_Mpls_Global_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_Global_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_Global_InterfaceAny) InterfaceId() *NetworkInstance_Mpls_Global_Interface_InterfaceIdAny { - return &NetworkInstance_Mpls_Global_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_Global_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_Global_InterfacePathAny) InterfaceId() *NetworkInstance_Mpls_Global_Interface_InterfaceIdPathAny { + return &NetworkInstance_Mpls_Global_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Mpls_Global_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_Global_Interface) InterfaceRef() *NetworkInstance_Mpls_Global_Interface_InterfaceRef { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_Global_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_Global_InterfacePath) InterfaceRef() *NetworkInstance_Mpls_Global_Interface_InterfaceRefPath { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -62604,9 +62818,9 @@ func (n *NetworkInstance_Mpls_Global_Interface) InterfaceRef() *NetworkInstance_ } } -// InterfaceRef returns from NetworkInstance_Mpls_Global_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_Global_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls_Global_Interface_InterfaceRefAny { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_Global_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_Global_InterfacePathAny) InterfaceRef() *NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -62615,283 +62829,283 @@ func (n *NetworkInstance_Mpls_Global_InterfaceAny) InterfaceRef() *NetworkInstan } } -// MplsEnabled returns from NetworkInstance_Mpls_Global_Interface the path struct for its child "mpls-enabled". -func (n *NetworkInstance_Mpls_Global_Interface) MplsEnabled() *NetworkInstance_Mpls_Global_Interface_MplsEnabled { - return &NetworkInstance_Mpls_Global_Interface_MplsEnabled{ +// MplsEnabled returns from NetworkInstance_Mpls_Global_InterfacePath the path struct for its child "mpls-enabled". +func (n *NetworkInstance_Mpls_Global_InterfacePath) MplsEnabled() *NetworkInstance_Mpls_Global_Interface_MplsEnabledPath { + return &NetworkInstance_Mpls_Global_Interface_MplsEnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-enabled"}, + []string{"config", "mpls-enabled"}, map[string]interface{}{}, n, ), } } -// MplsEnabled returns from NetworkInstance_Mpls_Global_InterfaceAny the path struct for its child "mpls-enabled". -func (n *NetworkInstance_Mpls_Global_InterfaceAny) MplsEnabled() *NetworkInstance_Mpls_Global_Interface_MplsEnabledAny { - return &NetworkInstance_Mpls_Global_Interface_MplsEnabledAny{ +// MplsEnabled returns from NetworkInstance_Mpls_Global_InterfacePathAny the path struct for its child "mpls-enabled". +func (n *NetworkInstance_Mpls_Global_InterfacePathAny) MplsEnabled() *NetworkInstance_Mpls_Global_Interface_MplsEnabledPathAny { + return &NetworkInstance_Mpls_Global_Interface_MplsEnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-enabled"}, + []string{"config", "mpls-enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Global_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRef struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRefAny struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRef) Interface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_Interface { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefPath) Interface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefAny) Interface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRef) Subinterface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_Global_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_Global_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Global_ReservedLabelBlock represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlockPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlockPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlockAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlockAny struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalId represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/local-id YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalId struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/local-id YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/local-id YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdAny struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/local-id YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBound represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/lower-bound YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBound struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/lower-bound YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/lower-bound YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundAny struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/lower-bound YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBound represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/upper-bound YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBound struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/upper-bound YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/state/upper-bound YANG schema element. -type NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundAny struct { +// NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/global/reserved-label-blocks/reserved-label-block/config/upper-bound YANG schema element. +type NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPathAny struct { *ygot.NodePath } -// LocalId returns from NetworkInstance_Mpls_Global_ReservedLabelBlock the path struct for its child "local-id". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlock) LocalId() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalId { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalId{ +// LocalId returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPath the path struct for its child "local-id". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPath) LocalId() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPath { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// LocalId returns from NetworkInstance_Mpls_Global_ReservedLabelBlockAny the path struct for its child "local-id". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockAny) LocalId() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdAny{ +// LocalId returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny the path struct for its child "local-id". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny) LocalId() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LocalIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// LowerBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlock the path struct for its child "lower-bound". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlock) LowerBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBound { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBound{ +// LowerBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPath the path struct for its child "lower-bound". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPath) LowerBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPath { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPath{ NodePath: ygot.NewNodePath( - []string{"state", "lower-bound"}, + []string{"config", "lower-bound"}, map[string]interface{}{}, n, ), } } -// LowerBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockAny the path struct for its child "lower-bound". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockAny) LowerBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundAny{ +// LowerBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny the path struct for its child "lower-bound". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny) LowerBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_LowerBoundPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lower-bound"}, + []string{"config", "lower-bound"}, map[string]interface{}{}, n, ), } } -// UpperBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlock the path struct for its child "upper-bound". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlock) UpperBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBound { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBound{ +// UpperBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPath the path struct for its child "upper-bound". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPath) UpperBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPath { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPath{ NodePath: ygot.NewNodePath( - []string{"state", "upper-bound"}, + []string{"config", "upper-bound"}, map[string]interface{}{}, n, ), } } -// UpperBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockAny the path struct for its child "upper-bound". -func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockAny) UpperBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundAny { - return &NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundAny{ +// UpperBound returns from NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny the path struct for its child "upper-bound". +func (n *NetworkInstance_Mpls_Global_ReservedLabelBlockPathAny) UpperBound() *NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPathAny { + return &NetworkInstance_Mpls_Global_ReservedLabelBlock_UpperBoundPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "upper-bound"}, + []string{"config", "upper-bound"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_Interface struct { +// NetworkInstance_Mpls_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_InterfaceAny struct { +// NetworkInstance_Mpls_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/admin-group YANG schema element. -type NetworkInstance_Mpls_Interface_AdminGroup struct { +// NetworkInstance_Mpls_Interface_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/admin-group YANG schema element. +type NetworkInstance_Mpls_Interface_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/admin-group YANG schema element. -type NetworkInstance_Mpls_Interface_AdminGroupAny struct { +// NetworkInstance_Mpls_Interface_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/admin-group YANG schema element. +type NetworkInstance_Mpls_Interface_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceId struct { +// NetworkInstance_Mpls_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceIdAny struct { +// NetworkInstance_Mpls_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_SrlgMembership represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/srlg-membership YANG schema element. -type NetworkInstance_Mpls_Interface_SrlgMembership struct { +// NetworkInstance_Mpls_Interface_SrlgMembershipPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/srlg-membership YANG schema element. +type NetworkInstance_Mpls_Interface_SrlgMembershipPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_SrlgMembershipAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/srlg-membership YANG schema element. -type NetworkInstance_Mpls_Interface_SrlgMembershipAny struct { +// NetworkInstance_Mpls_Interface_SrlgMembershipPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/srlg-membership YANG schema element. +type NetworkInstance_Mpls_Interface_SrlgMembershipPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_TeMetric represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/te-metric YANG schema element. -type NetworkInstance_Mpls_Interface_TeMetric struct { +// NetworkInstance_Mpls_Interface_TeMetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/te-metric YANG schema element. +type NetworkInstance_Mpls_Interface_TeMetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_TeMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/state/te-metric YANG schema element. -type NetworkInstance_Mpls_Interface_TeMetricAny struct { +// NetworkInstance_Mpls_Interface_TeMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/config/te-metric YANG schema element. +type NetworkInstance_Mpls_Interface_TeMetricPathAny struct { *ygot.NodePath } -// AdminGroup returns from NetworkInstance_Mpls_Interface the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_Interface) AdminGroup() *NetworkInstance_Mpls_Interface_AdminGroup { - return &NetworkInstance_Mpls_Interface_AdminGroup{ +// AdminGroup returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_InterfacePath) AdminGroup() *NetworkInstance_Mpls_Interface_AdminGroupPath { + return &NetworkInstance_Mpls_Interface_AdminGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-group"}, + []string{"config", "admin-group"}, map[string]interface{}{}, n, ), } } -// AdminGroup returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_InterfaceAny) AdminGroup() *NetworkInstance_Mpls_Interface_AdminGroupAny { - return &NetworkInstance_Mpls_Interface_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_InterfacePathAny) AdminGroup() *NetworkInstance_Mpls_Interface_AdminGroupPathAny { + return &NetworkInstance_Mpls_Interface_AdminGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-group"}, + []string{"config", "admin-group"}, map[string]interface{}{}, n, ), } } -// IgpFloodingBandwidth returns from NetworkInstance_Mpls_Interface the path struct for its child "igp-flooding-bandwidth". -func (n *NetworkInstance_Mpls_Interface) IgpFloodingBandwidth() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth{ +// IgpFloodingBandwidth returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "igp-flooding-bandwidth". +func (n *NetworkInstance_Mpls_InterfacePath) IgpFloodingBandwidth() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath{ NodePath: ygot.NewNodePath( []string{"igp-flooding-bandwidth"}, map[string]interface{}{}, @@ -62900,9 +63114,9 @@ func (n *NetworkInstance_Mpls_Interface) IgpFloodingBandwidth() *NetworkInstance } } -// IgpFloodingBandwidth returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "igp-flooding-bandwidth". -func (n *NetworkInstance_Mpls_InterfaceAny) IgpFloodingBandwidth() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny{ +// IgpFloodingBandwidth returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "igp-flooding-bandwidth". +func (n *NetworkInstance_Mpls_InterfacePathAny) IgpFloodingBandwidth() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"igp-flooding-bandwidth"}, map[string]interface{}{}, @@ -62911,31 +63125,31 @@ func (n *NetworkInstance_Mpls_InterfaceAny) IgpFloodingBandwidth() *NetworkInsta } } -// InterfaceId returns from NetworkInstance_Mpls_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_Interface) InterfaceId() *NetworkInstance_Mpls_Interface_InterfaceId { - return &NetworkInstance_Mpls_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_InterfacePath) InterfaceId() *NetworkInstance_Mpls_Interface_InterfaceIdPath { + return &NetworkInstance_Mpls_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_InterfaceAny) InterfaceId() *NetworkInstance_Mpls_Interface_InterfaceIdAny { - return &NetworkInstance_Mpls_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_InterfacePathAny) InterfaceId() *NetworkInstance_Mpls_Interface_InterfaceIdPathAny { + return &NetworkInstance_Mpls_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Mpls_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_Interface) InterfaceRef() *NetworkInstance_Mpls_Interface_InterfaceRef { - return &NetworkInstance_Mpls_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_InterfacePath) InterfaceRef() *NetworkInstance_Mpls_Interface_InterfaceRefPath { + return &NetworkInstance_Mpls_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -62944,9 +63158,9 @@ func (n *NetworkInstance_Mpls_Interface) InterfaceRef() *NetworkInstance_Mpls_In } } -// InterfaceRef returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls_Interface_InterfaceRefAny { - return &NetworkInstance_Mpls_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_InterfacePathAny) InterfaceRef() *NetworkInstance_Mpls_Interface_InterfaceRefPathAny { + return &NetworkInstance_Mpls_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -62955,339 +63169,339 @@ func (n *NetworkInstance_Mpls_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls } } -// SrlgMembership returns from NetworkInstance_Mpls_Interface the path struct for its child "srlg-membership". -func (n *NetworkInstance_Mpls_Interface) SrlgMembership() *NetworkInstance_Mpls_Interface_SrlgMembership { - return &NetworkInstance_Mpls_Interface_SrlgMembership{ +// SrlgMembership returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "srlg-membership". +func (n *NetworkInstance_Mpls_InterfacePath) SrlgMembership() *NetworkInstance_Mpls_Interface_SrlgMembershipPath { + return &NetworkInstance_Mpls_Interface_SrlgMembershipPath{ NodePath: ygot.NewNodePath( - []string{"state", "srlg-membership"}, + []string{"config", "srlg-membership"}, map[string]interface{}{}, n, ), } } -// SrlgMembership returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "srlg-membership". -func (n *NetworkInstance_Mpls_InterfaceAny) SrlgMembership() *NetworkInstance_Mpls_Interface_SrlgMembershipAny { - return &NetworkInstance_Mpls_Interface_SrlgMembershipAny{ +// SrlgMembership returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "srlg-membership". +func (n *NetworkInstance_Mpls_InterfacePathAny) SrlgMembership() *NetworkInstance_Mpls_Interface_SrlgMembershipPathAny { + return &NetworkInstance_Mpls_Interface_SrlgMembershipPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "srlg-membership"}, + []string{"config", "srlg-membership"}, map[string]interface{}{}, n, ), } } -// TeMetric returns from NetworkInstance_Mpls_Interface the path struct for its child "te-metric". -func (n *NetworkInstance_Mpls_Interface) TeMetric() *NetworkInstance_Mpls_Interface_TeMetric { - return &NetworkInstance_Mpls_Interface_TeMetric{ +// TeMetric returns from NetworkInstance_Mpls_InterfacePath the path struct for its child "te-metric". +func (n *NetworkInstance_Mpls_InterfacePath) TeMetric() *NetworkInstance_Mpls_Interface_TeMetricPath { + return &NetworkInstance_Mpls_Interface_TeMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "te-metric"}, + []string{"config", "te-metric"}, map[string]interface{}{}, n, ), } } -// TeMetric returns from NetworkInstance_Mpls_InterfaceAny the path struct for its child "te-metric". -func (n *NetworkInstance_Mpls_InterfaceAny) TeMetric() *NetworkInstance_Mpls_Interface_TeMetricAny { - return &NetworkInstance_Mpls_Interface_TeMetricAny{ +// TeMetric returns from NetworkInstance_Mpls_InterfacePathAny the path struct for its child "te-metric". +func (n *NetworkInstance_Mpls_InterfacePathAny) TeMetric() *NetworkInstance_Mpls_Interface_TeMetricPathAny { + return &NetworkInstance_Mpls_Interface_TeMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "te-metric"}, + []string{"config", "te-metric"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentage represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/delta-percentage YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentage struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/delta-percentage YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentageAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/delta-percentage YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentageAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/delta-percentage YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholds represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/down-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholds struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/down-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/down-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/down-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecification represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/threshold-specification YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecification struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/threshold-specification YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/threshold-specification YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/threshold-specification YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdType represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/threshold-type YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdType struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/threshold-type YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/threshold-type YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypeAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/threshold-type YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholds represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/up-down-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholds struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/up-down-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/up-down-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/up-down-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholds represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/up-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholds struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/up-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/state/up-thresholds YANG schema element. -type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsAny struct { +// NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/igp-flooding-bandwidth/config/up-thresholds YANG schema element. +type NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPathAny struct { *ygot.NodePath } -// DeltaPercentage returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "delta-percentage". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) DeltaPercentage() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentage { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentage{ +// DeltaPercentage returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "delta-percentage". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) DeltaPercentage() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePath{ NodePath: ygot.NewNodePath( - []string{"state", "delta-percentage"}, + []string{"config", "delta-percentage"}, map[string]interface{}{}, n, ), } } -// DeltaPercentage returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "delta-percentage". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) DeltaPercentage() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentageAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentageAny{ +// DeltaPercentage returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "delta-percentage". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) DeltaPercentage() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DeltaPercentagePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "delta-percentage"}, + []string{"config", "delta-percentage"}, map[string]interface{}{}, n, ), } } -// DownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "down-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) DownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholds { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholds{ +// DownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "down-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) DownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "down-thresholds"}, + []string{"config", "down-thresholds"}, map[string]interface{}{}, n, ), } } -// DownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "down-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) DownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsAny{ +// DownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "down-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) DownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_DownThresholdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "down-thresholds"}, + []string{"config", "down-thresholds"}, map[string]interface{}{}, n, ), } } -// ThresholdSpecification returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "threshold-specification". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) ThresholdSpecification() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecification { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecification{ +// ThresholdSpecification returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "threshold-specification". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) ThresholdSpecification() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPath{ NodePath: ygot.NewNodePath( - []string{"state", "threshold-specification"}, + []string{"config", "threshold-specification"}, map[string]interface{}{}, n, ), } } -// ThresholdSpecification returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "threshold-specification". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) ThresholdSpecification() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationAny{ +// ThresholdSpecification returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "threshold-specification". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) ThresholdSpecification() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdSpecificationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "threshold-specification"}, + []string{"config", "threshold-specification"}, map[string]interface{}{}, n, ), } } -// ThresholdType returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "threshold-type". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) ThresholdType() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdType { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdType{ +// ThresholdType returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "threshold-type". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) ThresholdType() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "threshold-type"}, + []string{"config", "threshold-type"}, map[string]interface{}{}, n, ), } } -// ThresholdType returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "threshold-type". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) ThresholdType() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypeAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypeAny{ +// ThresholdType returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "threshold-type". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) ThresholdType() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_ThresholdTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "threshold-type"}, + []string{"config", "threshold-type"}, map[string]interface{}{}, n, ), } } -// UpDownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "up-down-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) UpDownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholds { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholds{ +// UpDownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "up-down-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) UpDownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "up-down-thresholds"}, + []string{"config", "up-down-thresholds"}, map[string]interface{}{}, n, ), } } -// UpDownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "up-down-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) UpDownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsAny{ +// UpDownThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "up-down-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) UpDownThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpDownThresholdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "up-down-thresholds"}, + []string{"config", "up-down-thresholds"}, map[string]interface{}{}, n, ), } } -// UpThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidth the path struct for its child "up-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth) UpThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholds { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholds{ +// UpThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath the path struct for its child "up-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPath) UpThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPath { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPath{ NodePath: ygot.NewNodePath( - []string{"state", "up-thresholds"}, + []string{"config", "up-thresholds"}, map[string]interface{}{}, n, ), } } -// UpThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny the path struct for its child "up-thresholds". -func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthAny) UpThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsAny { - return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsAny{ +// UpThresholds returns from NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny the path struct for its child "up-thresholds". +func (n *NetworkInstance_Mpls_Interface_IgpFloodingBandwidthPathAny) UpThresholds() *NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPathAny { + return &NetworkInstance_Mpls_Interface_IgpFloodingBandwidth_UpThresholdsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "up-thresholds"}, + []string{"config", "up-thresholds"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRef struct { +// NetworkInstance_Mpls_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRefAny struct { +// NetworkInstance_Mpls_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Interface_InterfaceRef) Interface() *NetworkInstance_Mpls_Interface_InterfaceRef_Interface { - return &NetworkInstance_Mpls_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_Interface_InterfaceRefPath) Interface() *NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Mpls_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_Interface_InterfaceRefAny) Interface() *NetworkInstance_Mpls_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_Interface_InterfaceRef) Subinterface() *NetworkInstance_Mpls_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps YANG schema element. -type NetworkInstance_Mpls_Lsps struct { +// NetworkInstance_Mpls_LspsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps YANG schema element. +type NetworkInstance_Mpls_LspsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_LspsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps YANG schema element. -type NetworkInstance_Mpls_LspsAny struct { +// NetworkInstance_Mpls_LspsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps YANG schema element. +type NetworkInstance_Mpls_LspsPathAny struct { *ygot.NodePath } -// ConstrainedPath returns from NetworkInstance_Mpls_Lsps the path struct for its child "constrained-path". -func (n *NetworkInstance_Mpls_Lsps) ConstrainedPath() *NetworkInstance_Mpls_Lsps_ConstrainedPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath{ +// ConstrainedPath returns from NetworkInstance_Mpls_LspsPath the path struct for its child "constrained-path". +func (n *NetworkInstance_Mpls_LspsPath) ConstrainedPath() *NetworkInstance_Mpls_Lsps_ConstrainedPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPathPath{ NodePath: ygot.NewNodePath( []string{"constrained-path"}, map[string]interface{}{}, @@ -63296,9 +63510,9 @@ func (n *NetworkInstance_Mpls_Lsps) ConstrainedPath() *NetworkInstance_Mpls_Lsps } } -// ConstrainedPath returns from NetworkInstance_Mpls_LspsAny the path struct for its child "constrained-path". -func (n *NetworkInstance_Mpls_LspsAny) ConstrainedPath() *NetworkInstance_Mpls_Lsps_ConstrainedPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPathAny{ +// ConstrainedPath returns from NetworkInstance_Mpls_LspsPathAny the path struct for its child "constrained-path". +func (n *NetworkInstance_Mpls_LspsPathAny) ConstrainedPath() *NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny{ NodePath: ygot.NewNodePath( []string{"constrained-path"}, map[string]interface{}{}, @@ -63307,9 +63521,9 @@ func (n *NetworkInstance_Mpls_LspsAny) ConstrainedPath() *NetworkInstance_Mpls_L } } -// StaticLspAny returns from NetworkInstance_Mpls_Lsps the path struct for its child "static-lsp". -func (n *NetworkInstance_Mpls_Lsps) StaticLspAny() *NetworkInstance_Mpls_Lsps_StaticLspAny { - return &NetworkInstance_Mpls_Lsps_StaticLspAny{ +// StaticLspAny returns from NetworkInstance_Mpls_LspsPath the path struct for its child "static-lsp". +func (n *NetworkInstance_Mpls_LspsPath) StaticLspAny() *NetworkInstance_Mpls_Lsps_StaticLspPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLspPathAny{ NodePath: ygot.NewNodePath( []string{"static-lsps", "static-lsp"}, map[string]interface{}{"name": "*"}, @@ -63318,9 +63532,9 @@ func (n *NetworkInstance_Mpls_Lsps) StaticLspAny() *NetworkInstance_Mpls_Lsps_St } } -// StaticLspAny returns from NetworkInstance_Mpls_LspsAny the path struct for its child "static-lsp". -func (n *NetworkInstance_Mpls_LspsAny) StaticLspAny() *NetworkInstance_Mpls_Lsps_StaticLspAny { - return &NetworkInstance_Mpls_Lsps_StaticLspAny{ +// StaticLspAny returns from NetworkInstance_Mpls_LspsPathAny the path struct for its child "static-lsp". +func (n *NetworkInstance_Mpls_LspsPathAny) StaticLspAny() *NetworkInstance_Mpls_Lsps_StaticLspPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLspPathAny{ NodePath: ygot.NewNodePath( []string{"static-lsps", "static-lsp"}, map[string]interface{}{"name": "*"}, @@ -63329,9 +63543,9 @@ func (n *NetworkInstance_Mpls_LspsAny) StaticLspAny() *NetworkInstance_Mpls_Lsps } } -// StaticLsp returns from NetworkInstance_Mpls_Lsps the path struct for its child "static-lsp". -func (n *NetworkInstance_Mpls_Lsps) StaticLsp(Name string) *NetworkInstance_Mpls_Lsps_StaticLsp { - return &NetworkInstance_Mpls_Lsps_StaticLsp{ +// StaticLsp returns from NetworkInstance_Mpls_LspsPath the path struct for its child "static-lsp". +func (n *NetworkInstance_Mpls_LspsPath) StaticLsp(Name string) *NetworkInstance_Mpls_Lsps_StaticLspPath { + return &NetworkInstance_Mpls_Lsps_StaticLspPath{ NodePath: ygot.NewNodePath( []string{"static-lsps", "static-lsp"}, map[string]interface{}{"name": Name}, @@ -63340,9 +63554,9 @@ func (n *NetworkInstance_Mpls_Lsps) StaticLsp(Name string) *NetworkInstance_Mpls } } -// StaticLsp returns from NetworkInstance_Mpls_LspsAny the path struct for its child "static-lsp". -func (n *NetworkInstance_Mpls_LspsAny) StaticLsp(Name string) *NetworkInstance_Mpls_Lsps_StaticLspAny { - return &NetworkInstance_Mpls_Lsps_StaticLspAny{ +// StaticLsp returns from NetworkInstance_Mpls_LspsPathAny the path struct for its child "static-lsp". +func (n *NetworkInstance_Mpls_LspsPathAny) StaticLsp(Name string) *NetworkInstance_Mpls_Lsps_StaticLspPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLspPathAny{ NodePath: ygot.NewNodePath( []string{"static-lsps", "static-lsp"}, map[string]interface{}{"name": Name}, @@ -63351,9 +63565,9 @@ func (n *NetworkInstance_Mpls_LspsAny) StaticLsp(Name string) *NetworkInstance_M } } -// UnconstrainedPath returns from NetworkInstance_Mpls_Lsps the path struct for its child "unconstrained-path". -func (n *NetworkInstance_Mpls_Lsps) UnconstrainedPath() *NetworkInstance_Mpls_Lsps_UnconstrainedPath { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPath{ +// UnconstrainedPath returns from NetworkInstance_Mpls_LspsPath the path struct for its child "unconstrained-path". +func (n *NetworkInstance_Mpls_LspsPath) UnconstrainedPath() *NetworkInstance_Mpls_Lsps_UnconstrainedPathPath { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPathPath{ NodePath: ygot.NewNodePath( []string{"unconstrained-path"}, map[string]interface{}{}, @@ -63362,9 +63576,9 @@ func (n *NetworkInstance_Mpls_Lsps) UnconstrainedPath() *NetworkInstance_Mpls_Ls } } -// UnconstrainedPath returns from NetworkInstance_Mpls_LspsAny the path struct for its child "unconstrained-path". -func (n *NetworkInstance_Mpls_LspsAny) UnconstrainedPath() *NetworkInstance_Mpls_Lsps_UnconstrainedPathAny { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPathAny{ +// UnconstrainedPath returns from NetworkInstance_Mpls_LspsPathAny the path struct for its child "unconstrained-path". +func (n *NetworkInstance_Mpls_LspsPathAny) UnconstrainedPath() *NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny{ NodePath: ygot.NewNodePath( []string{"unconstrained-path"}, map[string]interface{}{}, @@ -63373,19 +63587,19 @@ func (n *NetworkInstance_Mpls_LspsAny) UnconstrainedPath() *NetworkInstance_Mpls } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny struct { *ygot.NodePath } -// NamedExplicitPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath the path struct for its child "named-explicit-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) NamedExplicitPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny{ +// NamedExplicitPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPath the path struct for its child "named-explicit-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPath) NamedExplicitPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny{ NodePath: ygot.NewNodePath( []string{"named-explicit-paths", "named-explicit-path"}, map[string]interface{}{"name": "*"}, @@ -63394,9 +63608,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) NamedExplicitPathAny() *Netw } } -// NamedExplicitPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathAny the path struct for its child "named-explicit-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) NamedExplicitPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny{ +// NamedExplicitPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny the path struct for its child "named-explicit-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny) NamedExplicitPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny{ NodePath: ygot.NewNodePath( []string{"named-explicit-paths", "named-explicit-path"}, map[string]interface{}{"name": "*"}, @@ -63405,9 +63619,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) NamedExplicitPathAny() *N } } -// NamedExplicitPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath the path struct for its child "named-explicit-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) NamedExplicitPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath{ +// NamedExplicitPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPath the path struct for its child "named-explicit-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPath) NamedExplicitPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath{ NodePath: ygot.NewNodePath( []string{"named-explicit-paths", "named-explicit-path"}, map[string]interface{}{"name": Name}, @@ -63416,9 +63630,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) NamedExplicitPath(Name strin } } -// NamedExplicitPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPathAny the path struct for its child "named-explicit-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) NamedExplicitPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny{ +// NamedExplicitPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny the path struct for its child "named-explicit-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny) NamedExplicitPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny{ NodePath: ygot.NewNodePath( []string{"named-explicit-paths", "named-explicit-path"}, map[string]interface{}{"name": Name}, @@ -63427,9 +63641,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) NamedExplicitPath(Name st } } -// TunnelAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath the path struct for its child "tunnel". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) TunnelAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny{ +// TunnelAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPath the path struct for its child "tunnel". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPath) TunnelAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"name": "*"}, @@ -63438,9 +63652,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) TunnelAny() *NetworkInstance } } -// TunnelAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathAny the path struct for its child "tunnel". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) TunnelAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny{ +// TunnelAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny the path struct for its child "tunnel". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny) TunnelAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"name": "*"}, @@ -63449,9 +63663,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) TunnelAny() *NetworkInsta } } -// Tunnel returns from NetworkInstance_Mpls_Lsps_ConstrainedPath the path struct for its child "tunnel". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) Tunnel(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel{ +// Tunnel returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPath the path struct for its child "tunnel". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPath) Tunnel(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"name": Name}, @@ -63460,9 +63674,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath) Tunnel(Name string) *Network } } -// Tunnel returns from NetworkInstance_Mpls_Lsps_ConstrainedPathAny the path struct for its child "tunnel". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) Tunnel(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny{ +// Tunnel returns from NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny the path struct for its child "tunnel". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathPathAny) Tunnel(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"name": Name}, @@ -63471,49 +63685,49 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPathAny) Tunnel(Name string) *Netw } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_Name struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequired represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/sid-protection-required YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequired struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/sid-protection-required YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/sid-protection-required YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/sid-protection-required YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionMode represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/sid-selection-mode YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionMode struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/sid-selection-mode YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/state/sid-selection-mode YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/config/sid-selection-mode YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePathAny struct { *ygot.NodePath } -// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) ExplicitRouteObjectAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny{ +// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath) ExplicitRouteObjectAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": "*"}, @@ -63522,9 +63736,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) ExplicitRo } } -// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) ExplicitRouteObjectAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny{ +// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny) ExplicitRouteObjectAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": "*"}, @@ -63533,9 +63747,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) Explici } } -// ExplicitRouteObject returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) ExplicitRouteObject(Index uint8) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject{ +// ExplicitRouteObject returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath) ExplicitRouteObject(Index uint8) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": Index}, @@ -63544,9 +63758,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) ExplicitRo } } -// ExplicitRouteObject returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) ExplicitRouteObject(Index uint8) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny{ +// ExplicitRouteObject returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny) ExplicitRouteObject(Index uint8) *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": Index}, @@ -63555,393 +63769,393 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) Explici } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_Name { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_Name{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NameAny{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// SidProtectionRequired returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath the path struct for its child "sid-protection-required". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) SidProtectionRequired() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequired { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequired{ +// SidProtectionRequired returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath the path struct for its child "sid-protection-required". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath) SidProtectionRequired() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPath{ NodePath: ygot.NewNodePath( - []string{"state", "sid-protection-required"}, + []string{"config", "sid-protection-required"}, map[string]interface{}{}, n, ), } } -// SidProtectionRequired returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny the path struct for its child "sid-protection-required". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) SidProtectionRequired() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredAny{ +// SidProtectionRequired returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny the path struct for its child "sid-protection-required". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny) SidProtectionRequired() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidProtectionRequiredPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sid-protection-required"}, + []string{"config", "sid-protection-required"}, map[string]interface{}{}, n, ), } } -// SidSelectionMode returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath the path struct for its child "sid-selection-mode". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath) SidSelectionMode() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionMode { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionMode{ +// SidSelectionMode returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath the path struct for its child "sid-selection-mode". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPath) SidSelectionMode() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePath{ NodePath: ygot.NewNodePath( - []string{"state", "sid-selection-mode"}, + []string{"config", "sid-selection-mode"}, map[string]interface{}{}, n, ), } } -// SidSelectionMode returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny the path struct for its child "sid-selection-mode". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathAny) SidSelectionMode() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModeAny{ +// SidSelectionMode returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny the path struct for its child "sid-selection-mode". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPathPathAny) SidSelectionMode() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_SidSelectionModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sid-selection-mode"}, + []string{"config", "sid-selection-mode"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Address represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/address YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Address struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/address YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/address YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/address YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopType represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/hop-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopType struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/hop-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/hop-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/hop-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Index represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Index struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/index YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/named-explicit-paths/named-explicit-path/explicit-route-objects/explicit-route-object/config/index YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject the path struct for its child "address". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject) Address() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Address { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Address{ +// Address returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath the path struct for its child "address". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath) Address() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny the path struct for its child "address". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny) Address() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressAny{ +// Address returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny the path struct for its child "address". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny) Address() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// HopType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject the path struct for its child "hop-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject) HopType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopType { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopType{ +// HopType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath the path struct for its child "hop-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath) HopType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "hop-type"}, + []string{"config", "hop-type"}, map[string]interface{}{}, n, ), } } -// HopType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny the path struct for its child "hop-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny) HopType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypeAny{ +// HopType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny the path struct for its child "hop-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny) HopType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_HopTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hop-type"}, + []string{"config", "hop-type"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject the path struct for its child "index". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject) Index() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Index { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_Index{ +// Index returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath the path struct for its child "index". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPath) Index() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny the path struct for its child "index". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectAny) Index() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexAny{ +// Index returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny the path struct for its child "index". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObjectPathAny) Index() *NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_NamedExplicitPath_ExplicitRouteObject_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatus represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/admin-status YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatus struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/admin-status YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/admin-status YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/admin-status YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGenerated represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/auto-generated YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGenerated struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/auto-generated YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/auto-generated YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/auto-generated YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Description represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/description YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Description struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/description YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/description YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/description YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Metric represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Metric struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricType represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/metric-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricType struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/metric-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/metric-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/metric-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Name struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatus represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/oper-status YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatus struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/oper-status YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/oper-status YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/oper-status YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Preference represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Preference struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferenceAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequested represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/protection-style-requested YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequested struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/protection-style-requested YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/protection-style-requested YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/protection-style-requested YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimer represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/reoptimize-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimer struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/reoptimize-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/reoptimize-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/reoptimize-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Role represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/role YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Role struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/role YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RoleAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/role YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RoleAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/role YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligible represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/shortcut-eligible YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligible struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/shortcut-eligible YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligibleAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/shortcut-eligible YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligibleAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/shortcut-eligible YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocol represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/signaling-protocol YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocol struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/signaling-protocol YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/signaling-protocol YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/signaling-protocol YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemption represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/soft-preemption YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemption struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/soft-preemption YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/soft-preemption YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/soft-preemption YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Source represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/source YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Source struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/source YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/source YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourceAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/source YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Type represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Type struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/config/type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePathAny struct { *ygot.NodePath } -// AdminStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "admin-status". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) AdminStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatus { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatus{ +// AdminStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "admin-status". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) AdminStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-status"}, + []string{"config", "admin-status"}, map[string]interface{}{}, n, ), } } -// AdminStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "admin-status". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) AdminStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusAny{ +// AdminStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "admin-status". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) AdminStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AdminStatusPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-status"}, + []string{"config", "admin-status"}, map[string]interface{}{}, n, ), } } -// AutoGenerated returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "auto-generated". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) AutoGenerated() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGenerated { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGenerated{ +// AutoGenerated returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "auto-generated". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) AutoGenerated() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPath{ NodePath: ygot.NewNodePath( []string{"state", "auto-generated"}, map[string]interface{}{}, @@ -63950,9 +64164,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) AutoGenerated() *Netw } } -// AutoGenerated returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "auto-generated". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) AutoGenerated() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedAny{ +// AutoGenerated returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "auto-generated". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) AutoGenerated() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_AutoGeneratedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auto-generated"}, map[string]interface{}{}, @@ -63961,9 +64175,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) AutoGenerated() *N } } -// Bandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Bandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth{ +// Bandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Bandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"bandwidth"}, map[string]interface{}{}, @@ -63972,9 +64186,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Bandwidth() *NetworkI } } -// Bandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Bandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Bandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth"}, map[string]interface{}{}, @@ -63983,9 +64197,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Bandwidth() *Netwo } } -// Counters returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "counters". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Counters() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters{ +// Counters returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "counters". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Counters() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -63994,9 +64208,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Counters() *NetworkIn } } -// Counters returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "counters". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Counters() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny{ +// Counters returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "counters". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Counters() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -64005,119 +64219,119 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Counters() *Networ } } -// Description returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "description". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Description() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Description { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Description{ +// Description returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "description". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Description() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "description". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Description() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionAny{ +// Description returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "description". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Description() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriority{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityAny{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_HoldPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Metric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Metric { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Metric{ +// Metric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Metric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Metric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricAny{ +// Metric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Metric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// MetricType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "metric-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) MetricType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricType { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricType{ +// MetricType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "metric-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) MetricType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "metric-type"}, + []string{"config", "metric-type"}, map[string]interface{}{}, n, ), } } -// MetricType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "metric-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) MetricType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypeAny{ +// MetricType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "metric-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) MetricType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_MetricTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric-type"}, + []string{"config", "metric-type"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Name { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Name{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NameAny{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// OperStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "oper-status". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) OperStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatus { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatus{ +// OperStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "oper-status". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) OperStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -64126,9 +64340,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) OperStatus() *Network } } -// OperStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "oper-status". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) OperStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusAny{ +// OperStatus returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "oper-status". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) OperStatus() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_OperStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oper-status"}, map[string]interface{}{}, @@ -64137,9 +64351,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) OperStatus() *Netw } } -// P2PTunnelAttributes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "p2p-tunnel-attributes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) P2PTunnelAttributes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes{ +// P2PTunnelAttributes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "p2p-tunnel-attributes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) P2PTunnelAttributes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath{ NodePath: ygot.NewNodePath( []string{"p2p-tunnel-attributes"}, map[string]interface{}{}, @@ -64148,9 +64362,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) P2PTunnelAttributes() } } -// P2PTunnelAttributes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "p2p-tunnel-attributes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) P2PTunnelAttributes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny{ +// P2PTunnelAttributes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "p2p-tunnel-attributes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) P2PTunnelAttributes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-tunnel-attributes"}, map[string]interface{}{}, @@ -64159,75 +64373,75 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) P2PTunnelAttribute } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Preference { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Preference{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePath{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferenceAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferenceAny{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_PreferencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// ProtectionStyleRequested returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "protection-style-requested". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) ProtectionStyleRequested() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequested { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequested{ +// ProtectionStyleRequested returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "protection-style-requested". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) ProtectionStyleRequested() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPath{ NodePath: ygot.NewNodePath( - []string{"state", "protection-style-requested"}, + []string{"config", "protection-style-requested"}, map[string]interface{}{}, n, ), } } -// ProtectionStyleRequested returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "protection-style-requested". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) ProtectionStyleRequested() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedAny{ +// ProtectionStyleRequested returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "protection-style-requested". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) ProtectionStyleRequested() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ProtectionStyleRequestedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protection-style-requested"}, + []string{"config", "protection-style-requested"}, map[string]interface{}{}, n, ), } } -// ReoptimizeTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "reoptimize-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) ReoptimizeTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimer { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimer{ +// ReoptimizeTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "reoptimize-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) ReoptimizeTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "reoptimize-timer"}, + []string{"config", "reoptimize-timer"}, map[string]interface{}{}, n, ), } } -// ReoptimizeTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "reoptimize-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) ReoptimizeTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerAny{ +// ReoptimizeTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "reoptimize-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) ReoptimizeTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ReoptimizeTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "reoptimize-timer"}, + []string{"config", "reoptimize-timer"}, map[string]interface{}{}, n, ), } } -// Role returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "role". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Role() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Role { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Role{ +// Role returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "role". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Role() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePath{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -64236,9 +64450,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Role() *NetworkInstan } } -// Role returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "role". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Role() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RoleAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RoleAny{ +// Role returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "role". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Role() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_RolePathAny{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -64247,181 +64461,181 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Role() *NetworkIns } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriority{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// ShortcutEligible returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "shortcut-eligible". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) ShortcutEligible() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligible { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligible{ +// ShortcutEligible returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "shortcut-eligible". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) ShortcutEligible() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePath{ NodePath: ygot.NewNodePath( - []string{"state", "shortcut-eligible"}, + []string{"config", "shortcut-eligible"}, map[string]interface{}{}, n, ), } } -// ShortcutEligible returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "shortcut-eligible". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) ShortcutEligible() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligibleAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligibleAny{ +// ShortcutEligible returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "shortcut-eligible". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) ShortcutEligible() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_ShortcutEligiblePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "shortcut-eligible"}, + []string{"config", "shortcut-eligible"}, map[string]interface{}{}, n, ), } } -// SignalingProtocol returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "signaling-protocol". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) SignalingProtocol() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocol { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocol{ +// SignalingProtocol returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "signaling-protocol". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) SignalingProtocol() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "signaling-protocol"}, + []string{"config", "signaling-protocol"}, map[string]interface{}{}, n, ), } } -// SignalingProtocol returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "signaling-protocol". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) SignalingProtocol() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolAny{ +// SignalingProtocol returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "signaling-protocol". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) SignalingProtocol() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SignalingProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "signaling-protocol"}, + []string{"config", "signaling-protocol"}, map[string]interface{}{}, n, ), } } -// SoftPreemption returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "soft-preemption". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) SoftPreemption() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemption { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemption{ +// SoftPreemption returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "soft-preemption". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) SoftPreemption() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "soft-preemption"}, + []string{"config", "soft-preemption"}, map[string]interface{}{}, n, ), } } -// SoftPreemption returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "soft-preemption". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) SoftPreemption() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionAny{ +// SoftPreemption returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "soft-preemption". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) SoftPreemption() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SoftPreemptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "soft-preemption"}, + []string{"config", "soft-preemption"}, map[string]interface{}{}, n, ), } } -// Source returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "source". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Source() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Source { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Source{ +// Source returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "source". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Source() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePath{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// Source returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "source". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Source() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourceAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourceAny{ +// Source returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "source". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Source() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_SourcePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// Type returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel the path struct for its child "type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel) Type() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Type { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Type{ +// Type returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath the path struct for its child "type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPath) Type() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny the path struct for its child "type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelAny) Type() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypeAny{ +// Type returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny the path struct for its child "type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_TunnelPathAny) Type() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/set-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidth struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/config/set-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/set-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/config/set-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/signaled-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidth struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/signaled-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/signaled-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/signaled-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationType represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/specification-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationType struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/config/specification-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/state/specification-type YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/config/specification-type YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePathAny struct { *ygot.NodePath } -// AutoBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth the path struct for its child "auto-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) AutoBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth{ +// AutoBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath the path struct for its child "auto-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath) AutoBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath{ NodePath: ygot.NewNodePath( []string{"auto-bandwidth"}, map[string]interface{}{}, @@ -64430,9 +64644,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) AutoBandwid } } -// AutoBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny the path struct for its child "auto-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) AutoBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny{ +// AutoBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny the path struct for its child "auto-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny) AutoBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"auto-bandwidth"}, map[string]interface{}{}, @@ -64441,31 +64655,31 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) AutoBand } } -// SetBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth the path struct for its child "set-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) SetBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidth { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidth{ +// SetBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath the path struct for its child "set-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath) SetBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-bandwidth"}, + []string{"config", "set-bandwidth"}, map[string]interface{}{}, n, ), } } -// SetBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny the path struct for its child "set-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) SetBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthAny{ +// SetBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny the path struct for its child "set-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny) SetBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SetBandwidthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-bandwidth"}, + []string{"config", "set-bandwidth"}, map[string]interface{}{}, n, ), } } -// SignaledBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth the path struct for its child "signaled-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) SignaledBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidth { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidth{ +// SignaledBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath the path struct for its child "signaled-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath) SignaledBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "signaled-bandwidth"}, map[string]interface{}{}, @@ -64474,9 +64688,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) SignaledBan } } -// SignaledBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny the path struct for its child "signaled-bandwidth". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) SignaledBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthAny{ +// SignaledBandwidth returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny the path struct for its child "signaled-bandwidth". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny) SignaledBandwidth() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SignaledBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "signaled-bandwidth"}, map[string]interface{}{}, @@ -64485,167 +64699,167 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) Signaled } } -// SpecificationType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth the path struct for its child "specification-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth) SpecificationType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationType { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationType{ +// SpecificationType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath the path struct for its child "specification-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPath) SpecificationType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "specification-type"}, + []string{"config", "specification-type"}, map[string]interface{}{}, n, ), } } -// SpecificationType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny the path struct for its child "specification-type". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthAny) SpecificationType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypeAny{ +// SpecificationType returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny the path struct for its child "specification-type". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_BandwidthPathAny) SpecificationType() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_SpecificationTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "specification-type"}, + []string{"config", "specification-type"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/adjust-interval YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustInterval struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/adjust-interval YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/adjust-interval YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/adjust-interval YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThreshold represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/adjust-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThreshold struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/adjust-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/adjust-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/adjust-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Enabled struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBw represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/interval-high-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBw struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/interval-high-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/interval-high-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/interval-high-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBw represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/max-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBw struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/max-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/max-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/max-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBw represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/min-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBw struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/min-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/state/min-bw YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/config/min-bw YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPathAny struct { *ygot.NodePath } -// AdjustInterval returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "adjust-interval". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) AdjustInterval() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustInterval { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustInterval{ +// AdjustInterval returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "adjust-interval". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) AdjustInterval() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "adjust-interval"}, + []string{"config", "adjust-interval"}, map[string]interface{}{}, n, ), } } -// AdjustInterval returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "adjust-interval". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) AdjustInterval() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalAny{ +// AdjustInterval returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "adjust-interval". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) AdjustInterval() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "adjust-interval"}, + []string{"config", "adjust-interval"}, map[string]interface{}{}, n, ), } } -// AdjustThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "adjust-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) AdjustThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThreshold { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThreshold{ +// AdjustThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "adjust-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) AdjustThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "adjust-threshold"}, + []string{"config", "adjust-threshold"}, map[string]interface{}{}, n, ), } } -// AdjustThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "adjust-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) AdjustThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdAny{ +// AdjustThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "adjust-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) AdjustThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_AdjustThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "adjust-threshold"}, + []string{"config", "adjust-threshold"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Enabled { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Enabled{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// IntervalHighBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "interval-high-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) IntervalHighBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBw { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBw{ +// IntervalHighBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "interval-high-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) IntervalHighBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPath{ NodePath: ygot.NewNodePath( []string{"state", "interval-high-bw"}, map[string]interface{}{}, @@ -64654,9 +64868,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// IntervalHighBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "interval-high-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) IntervalHighBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwAny{ +// IntervalHighBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "interval-high-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) IntervalHighBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_IntervalHighBwPathAny{ NodePath: ygot.NewNodePath( []string{"state", "interval-high-bw"}, map[string]interface{}{}, @@ -64665,53 +64879,53 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// MaxBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "max-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) MaxBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBw { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBw{ +// MaxBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "max-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) MaxBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-bw"}, + []string{"config", "max-bw"}, map[string]interface{}{}, n, ), } } -// MaxBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "max-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) MaxBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwAny{ +// MaxBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "max-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) MaxBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MaxBwPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-bw"}, + []string{"config", "max-bw"}, map[string]interface{}{}, n, ), } } -// MinBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "min-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) MinBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBw { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBw{ +// MinBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "min-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) MinBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPath{ NodePath: ygot.NewNodePath( - []string{"state", "min-bw"}, + []string{"config", "min-bw"}, map[string]interface{}{}, n, ), } } -// MinBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "min-bw". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) MinBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwAny{ +// MinBw returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "min-bw". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) MinBw() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_MinBwPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "min-bw"}, + []string{"config", "min-bw"}, map[string]interface{}{}, n, ), } } -// Overflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "overflow". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) Overflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow{ +// Overflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "overflow". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) Overflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath{ NodePath: ygot.NewNodePath( []string{"overflow"}, map[string]interface{}{}, @@ -64720,9 +64934,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// Overflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "overflow". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) Overflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny{ +// Overflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "overflow". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) Overflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny{ NodePath: ygot.NewNodePath( []string{"overflow"}, map[string]interface{}{}, @@ -64731,9 +64945,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// Underflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth the path struct for its child "underflow". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth) Underflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow{ +// Underflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath the path struct for its child "underflow". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPath) Underflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath{ NodePath: ygot.NewNodePath( []string{"underflow"}, map[string]interface{}{}, @@ -64742,9 +64956,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// Underflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny the path struct for its child "underflow". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthAny) Underflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny{ +// Underflow returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny the path struct for its child "underflow". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidthPathAny) Underflow() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny{ NodePath: ygot.NewNodePath( []string{"underflow"}, map[string]interface{}{}, @@ -64753,301 +64967,301 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidt } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_Enabled struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThreshold represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/overflow-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThreshold struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/overflow-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/overflow-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/overflow-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCount represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/trigger-event-count YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCount struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/trigger-event-count YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/state/trigger-event-count YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/overflow/config/trigger-event-count YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_Enabled { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_Enabled{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// OverflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow the path struct for its child "overflow-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow) OverflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThreshold { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThreshold{ +// OverflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath the path struct for its child "overflow-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath) OverflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "overflow-threshold"}, + []string{"config", "overflow-threshold"}, map[string]interface{}{}, n, ), } } -// OverflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny the path struct for its child "overflow-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny) OverflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdAny{ +// OverflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny the path struct for its child "overflow-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny) OverflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_OverflowThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "overflow-threshold"}, + []string{"config", "overflow-threshold"}, map[string]interface{}{}, n, ), } } -// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow the path struct for its child "trigger-event-count". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCount { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCount{ +// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath the path struct for its child "trigger-event-count". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPath) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPath{ NodePath: ygot.NewNodePath( - []string{"state", "trigger-event-count"}, + []string{"config", "trigger-event-count"}, map[string]interface{}{}, n, ), } } -// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny the path struct for its child "trigger-event-count". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowAny) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountAny{ +// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny the path struct for its child "trigger-event-count". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_OverflowPathAny) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Overflow_TriggerEventCountPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trigger-event-count"}, + []string{"config", "trigger-event-count"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_Enabled struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/enabled YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/enabled YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCount represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/trigger-event-count YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCount struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/trigger-event-count YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/trigger-event-count YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/trigger-event-count YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThreshold represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/underflow-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThreshold struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/underflow-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/state/underflow-threshold YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/bandwidth/auto-bandwidth/underflow/config/underflow-threshold YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_Enabled { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_Enabled{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny) Enabled() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow the path struct for its child "trigger-event-count". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCount { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCount{ +// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath the path struct for its child "trigger-event-count". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPath{ NodePath: ygot.NewNodePath( - []string{"state", "trigger-event-count"}, + []string{"config", "trigger-event-count"}, map[string]interface{}{}, n, ), } } -// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny the path struct for its child "trigger-event-count". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountAny{ +// TriggerEventCount returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny the path struct for its child "trigger-event-count". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny) TriggerEventCount() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_TriggerEventCountPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trigger-event-count"}, + []string{"config", "trigger-event-count"}, map[string]interface{}{}, n, ), } } -// UnderflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow the path struct for its child "underflow-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow) UnderflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThreshold { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThreshold{ +// UnderflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath the path struct for its child "underflow-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPath) UnderflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "underflow-threshold"}, + []string{"config", "underflow-threshold"}, map[string]interface{}{}, n, ), } } -// UnderflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny the path struct for its child "underflow-threshold". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowAny) UnderflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdAny{ +// UnderflowThreshold returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny the path struct for its child "underflow-threshold". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_UnderflowPathAny) UnderflowThreshold() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Bandwidth_AutoBandwidth_Underflow_UnderflowThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "underflow-threshold"}, + []string{"config", "underflow-threshold"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Bytes represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/bytes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Bytes struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/bytes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/bytes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/bytes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/current-path-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTime struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/current-path-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/current-path-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/current-path-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/next-reoptimization-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTime struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/next-reoptimization-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/next-reoptimization-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/next-reoptimization-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/online-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTime struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/online-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/online-time YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimeAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/online-time YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Packets represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/packets YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Packets struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/packets YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/packets YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/packets YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChanges represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/path-changes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChanges struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/path-changes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/path-changes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/path-changes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChanges represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/state-changes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChanges struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/state-changes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/state-changes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/state/counters/state-changes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPathAny struct { *ygot.NodePath } -// Bytes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "bytes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) Bytes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Bytes { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Bytes{ +// Bytes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "bytes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) Bytes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPath{ NodePath: ygot.NewNodePath( []string{"bytes"}, map[string]interface{}{}, @@ -65056,9 +65270,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) Bytes() *Net } } -// Bytes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "bytes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) Bytes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesAny{ +// Bytes returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "bytes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) Bytes() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_BytesPathAny{ NodePath: ygot.NewNodePath( []string{"bytes"}, map[string]interface{}{}, @@ -65067,9 +65281,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) Bytes() * } } -// CurrentPathTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "current-path-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) CurrentPathTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTime { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTime{ +// CurrentPathTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "current-path-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) CurrentPathTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePath{ NodePath: ygot.NewNodePath( []string{"current-path-time"}, map[string]interface{}{}, @@ -65078,9 +65292,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) CurrentPathT } } -// CurrentPathTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "current-path-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) CurrentPathTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimeAny{ +// CurrentPathTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "current-path-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) CurrentPathTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_CurrentPathTimePathAny{ NodePath: ygot.NewNodePath( []string{"current-path-time"}, map[string]interface{}{}, @@ -65089,9 +65303,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) CurrentPa } } -// NextReoptimizationTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "next-reoptimization-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) NextReoptimizationTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTime { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTime{ +// NextReoptimizationTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "next-reoptimization-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) NextReoptimizationTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePath{ NodePath: ygot.NewNodePath( []string{"next-reoptimization-time"}, map[string]interface{}{}, @@ -65100,9 +65314,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) NextReoptimi } } -// NextReoptimizationTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "next-reoptimization-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) NextReoptimizationTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimeAny{ +// NextReoptimizationTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "next-reoptimization-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) NextReoptimizationTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_NextReoptimizationTimePathAny{ NodePath: ygot.NewNodePath( []string{"next-reoptimization-time"}, map[string]interface{}{}, @@ -65111,9 +65325,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) NextReopt } } -// OnlineTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "online-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) OnlineTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTime { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTime{ +// OnlineTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "online-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) OnlineTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePath{ NodePath: ygot.NewNodePath( []string{"online-time"}, map[string]interface{}{}, @@ -65122,9 +65336,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) OnlineTime() } } -// OnlineTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "online-time". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) OnlineTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimeAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimeAny{ +// OnlineTime returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "online-time". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) OnlineTime() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_OnlineTimePathAny{ NodePath: ygot.NewNodePath( []string{"online-time"}, map[string]interface{}{}, @@ -65133,9 +65347,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) OnlineTim } } -// Packets returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "packets". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) Packets() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Packets { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_Packets{ +// Packets returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "packets". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) Packets() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPath{ NodePath: ygot.NewNodePath( []string{"packets"}, map[string]interface{}{}, @@ -65144,9 +65358,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) Packets() *N } } -// Packets returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "packets". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) Packets() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsAny{ +// Packets returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "packets". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) Packets() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PacketsPathAny{ NodePath: ygot.NewNodePath( []string{"packets"}, map[string]interface{}{}, @@ -65155,9 +65369,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) Packets() } } -// PathChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "path-changes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) PathChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChanges { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChanges{ +// PathChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "path-changes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) PathChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPath{ NodePath: ygot.NewNodePath( []string{"path-changes"}, map[string]interface{}{}, @@ -65166,9 +65380,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) PathChanges( } } -// PathChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "path-changes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) PathChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesAny{ +// PathChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "path-changes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) PathChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_PathChangesPathAny{ NodePath: ygot.NewNodePath( []string{"path-changes"}, map[string]interface{}{}, @@ -65177,9 +65391,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) PathChang } } -// StateChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters the path struct for its child "state-changes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) StateChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChanges { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChanges{ +// StateChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath the path struct for its child "state-changes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPath) StateChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPath{ NodePath: ygot.NewNodePath( []string{"state-changes"}, map[string]interface{}{}, @@ -65188,9 +65402,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters) StateChanges } } -// StateChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny the path struct for its child "state-changes". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) StateChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesAny{ +// StateChanges returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny the path struct for its child "state-changes". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersPathAny) StateChanges() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_Counters_StateChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state-changes"}, map[string]interface{}{}, @@ -65199,51 +65413,51 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_CountersAny) StateChan } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_Destination represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/state/destination YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_Destination struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/config/destination YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/state/destination YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/config/destination YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPathAny struct { *ygot.NodePath } -// Destination returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes the path struct for its child "destination". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) Destination() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_Destination { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_Destination{ +// Destination returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath the path struct for its child "destination". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath) Destination() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination"}, + []string{"config", "destination"}, map[string]interface{}{}, n, ), } } -// Destination returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny the path struct for its child "destination". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny) Destination() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationAny{ +// Destination returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny the path struct for its child "destination". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny) Destination() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_DestinationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination"}, + []string{"config", "destination"}, map[string]interface{}{}, n, ), } } -// P2PPrimaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes the path struct for its child "p2p-primary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P2PPrimaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny{ +// P2PPrimaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath the path struct for its child "p2p-primary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath) P2PPrimaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-primary-path", "p2p-primary-path"}, map[string]interface{}{"name": "*"}, @@ -65252,9 +65466,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P } } -// P2PPrimaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny the path struct for its child "p2p-primary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny) P2PPrimaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny{ +// P2PPrimaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny the path struct for its child "p2p-primary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny) P2PPrimaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-primary-path", "p2p-primary-path"}, map[string]interface{}{"name": "*"}, @@ -65263,9 +65477,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny } } -// P2PPrimaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes the path struct for its child "p2p-primary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P2PPrimaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath{ +// P2PPrimaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath the path struct for its child "p2p-primary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath) P2PPrimaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath{ NodePath: ygot.NewNodePath( []string{"p2p-primary-path", "p2p-primary-path"}, map[string]interface{}{"name": Name}, @@ -65274,9 +65488,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P } } -// P2PPrimaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny the path struct for its child "p2p-primary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny) P2PPrimaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny{ +// P2PPrimaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny the path struct for its child "p2p-primary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny) P2PPrimaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-primary-path", "p2p-primary-path"}, map[string]interface{}{"name": Name}, @@ -65285,9 +65499,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny } } -// P2PSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes the path struct for its child "p2p-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P2PSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny{ +// P2PSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath the path struct for its child "p2p-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath) P2PSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-secondary-paths", "p2p-secondary-path"}, map[string]interface{}{"name": "*"}, @@ -65296,9 +65510,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P } } -// P2PSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny the path struct for its child "p2p-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny) P2PSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny{ +// P2PSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny the path struct for its child "p2p-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny) P2PSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-secondary-paths", "p2p-secondary-path"}, map[string]interface{}{"name": "*"}, @@ -65307,9 +65521,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny } } -// P2PSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes the path struct for its child "p2p-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P2PSecondaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath{ +// P2PSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath the path struct for its child "p2p-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPath) P2PSecondaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath{ NodePath: ygot.NewNodePath( []string{"p2p-secondary-paths", "p2p-secondary-path"}, map[string]interface{}{"name": Name}, @@ -65318,9 +65532,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes) P } } -// P2PSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny the path struct for its child "p2p-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny) P2PSecondaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny{ +// P2PSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny the path struct for its child "p2p-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesPathAny) P2PSecondaryPath(Name string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"p2p-secondary-paths", "p2p-secondary-path"}, map[string]interface{}{"name": Name}, @@ -65329,149 +65543,149 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributesAny } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessions represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/associated-rsvp-sessions YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessions struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/associated-rsvp-sessions YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/associated-rsvp-sessions YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/associated-rsvp-sessions YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetric represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetric struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreaker represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-tiebreaker YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreaker struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/cspf-tiebreaker YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/cspf-tiebreaker YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/cspf-tiebreaker YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathName represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/explicit-path-name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathName struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/explicit-path-name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/explicit-path-name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/explicit-path-name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Name struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethod represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/path-computation-method YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethod struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/path-computation-method YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/path-computation-method YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/path-computation-method YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServer represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/path-computation-server YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServer struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/path-computation-server YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/path-computation-server YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/path-computation-server YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Preference represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Preference struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferenceAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimer represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/retry-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimer struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/retry-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/retry-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/retry-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetric represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/spf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetric struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/spf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/spf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/spf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspf represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/use-cspf YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspf struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/use-cspf YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/state/use-cspf YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/config/use-cspf YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPathAny struct { *ygot.NodePath } -// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "admin-groups". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups{ +// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "admin-groups". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath{ NodePath: ygot.NewNodePath( []string{"admin-groups"}, map[string]interface{}{}, @@ -65480,9 +65694,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "admin-groups". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny{ +// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "admin-groups". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny{ NodePath: ygot.NewNodePath( []string{"admin-groups"}, map[string]interface{}{}, @@ -65491,9 +65705,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "associated-rsvp-sessions". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessions { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessions{ +// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "associated-rsvp-sessions". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPath{ NodePath: ygot.NewNodePath( []string{"state", "associated-rsvp-sessions"}, map[string]interface{}{}, @@ -65502,9 +65716,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "associated-rsvp-sessions". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsAny{ +// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "associated-rsvp-sessions". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AssociatedRsvpSessionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "associated-rsvp-sessions"}, map[string]interface{}{}, @@ -65513,9 +65727,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CandidateSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "candidate-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) CandidateSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny{ +// CandidateSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "candidate-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) CandidateSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"candidate-secondary-paths", "candidate-secondary-path"}, map[string]interface{}{"secondary-path": "*"}, @@ -65524,9 +65738,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CandidateSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "candidate-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) CandidateSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny{ +// CandidateSecondaryPathAny returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "candidate-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) CandidateSecondaryPathAny() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"candidate-secondary-paths", "candidate-secondary-path"}, map[string]interface{}{"secondary-path": "*"}, @@ -65535,9 +65749,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CandidateSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "candidate-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) CandidateSecondaryPath(SecondaryPath string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath{ +// CandidateSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "candidate-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) CandidateSecondaryPath(SecondaryPath string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath{ NodePath: ygot.NewNodePath( []string{"candidate-secondary-paths", "candidate-secondary-path"}, map[string]interface{}{"secondary-path": SecondaryPath}, @@ -65546,9 +65760,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CandidateSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "candidate-secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) CandidateSecondaryPath(SecondaryPath string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny{ +// CandidateSecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "candidate-secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) CandidateSecondaryPath(SecondaryPath string) *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny{ NodePath: ygot.NewNodePath( []string{"candidate-secondary-paths", "candidate-secondary-path"}, map[string]interface{}{"secondary-path": SecondaryPath}, @@ -65557,9 +65771,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "cspf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetric { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetric{ +// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "cspf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPath{ NodePath: ygot.NewNodePath( []string{"state", "cspf-metric"}, map[string]interface{}{}, @@ -65568,9 +65782,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "cspf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricAny{ +// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "cspf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfMetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cspf-metric"}, map[string]interface{}{}, @@ -65579,207 +65793,207 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "cspf-tiebreaker". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreaker { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreaker{ +// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "cspf-tiebreaker". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPath{ NodePath: ygot.NewNodePath( - []string{"state", "cspf-tiebreaker"}, + []string{"config", "cspf-tiebreaker"}, map[string]interface{}{}, n, ), } } -// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "cspf-tiebreaker". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerAny{ +// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "cspf-tiebreaker". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CspfTiebreakerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cspf-tiebreaker"}, + []string{"config", "cspf-tiebreaker"}, map[string]interface{}{}, n, ), } } -// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "explicit-path-name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathName { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathName{ +// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "explicit-path-name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "explicit-path-name"}, + []string{"config", "explicit-path-name"}, map[string]interface{}{}, n, ), } } -// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "explicit-path-name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNameAny{ +// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "explicit-path-name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_ExplicitPathNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "explicit-path-name"}, + []string{"config", "explicit-path-name"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriority{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityAny{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_HoldPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Name { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Name{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NameAny{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "path-computation-method". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethod { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethod{ +// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "path-computation-method". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPath{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-method"}, + []string{"config", "path-computation-method"}, map[string]interface{}{}, n, ), } } -// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "path-computation-method". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodAny{ +// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "path-computation-method". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationMethodPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-method"}, + []string{"config", "path-computation-method"}, map[string]interface{}{}, n, ), } } -// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "path-computation-server". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServer { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServer{ +// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "path-computation-server". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPath{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-server"}, + []string{"config", "path-computation-server"}, map[string]interface{}{}, n, ), } } -// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "path-computation-server". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerAny{ +// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "path-computation-server". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PathComputationServerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-server"}, + []string{"config", "path-computation-server"}, map[string]interface{}{}, n, ), } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Preference { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_Preference{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePath{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferenceAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferenceAny{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_PreferencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "retry-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimer { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimer{ +// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "retry-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "retry-timer"}, + []string{"config", "retry-timer"}, map[string]interface{}{}, n, ), } } -// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "retry-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerAny{ +// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "retry-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_RetryTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "retry-timer"}, + []string{"config", "retry-timer"}, map[string]interface{}{}, n, ), } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriority{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "spf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetric { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetric{ +// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "spf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPath{ NodePath: ygot.NewNodePath( []string{"state", "spf-metric"}, map[string]interface{}{}, @@ -65788,9 +66002,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "spf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricAny{ +// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "spf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_SpfMetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "spf-metric"}, map[string]interface{}{}, @@ -65799,177 +66013,177 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath the path struct for its child "use-cspf". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspf { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspf{ +// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath the path struct for its child "use-cspf". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPath) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPath{ NodePath: ygot.NewNodePath( - []string{"state", "use-cspf"}, + []string{"config", "use-cspf"}, map[string]interface{}{}, n, ), } } -// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny the path struct for its child "use-cspf". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathAny) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfAny{ +// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny the path struct for its child "use-cspf". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPathPathAny) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_UseCspfPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "use-cspf"}, + []string{"config", "use-cspf"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/exclude-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/exclude-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/exclude-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/exclude-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/include-all-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/include-all-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/include-all-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/include-all-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/include-any-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/include-any-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/state/include-any-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/admin-groups/config/include-any-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPathAny struct { *ygot.NodePath } -// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups the path struct for its child "exclude-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroup{ +// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath the path struct for its child "exclude-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "exclude-group"}, + []string{"config", "exclude-group"}, map[string]interface{}{}, n, ), } } -// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny the path struct for its child "exclude-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupAny{ +// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny the path struct for its child "exclude-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_ExcludeGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "exclude-group"}, + []string{"config", "exclude-group"}, map[string]interface{}{}, n, ), } } -// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups the path struct for its child "include-all-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroup{ +// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath the path struct for its child "include-all-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "include-all-group"}, + []string{"config", "include-all-group"}, map[string]interface{}{}, n, ), } } -// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny the path struct for its child "include-all-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupAny{ +// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny the path struct for its child "include-all-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAllGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "include-all-group"}, + []string{"config", "include-all-group"}, map[string]interface{}{}, n, ), } } -// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups the path struct for its child "include-any-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroup{ +// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath the path struct for its child "include-any-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPath) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "include-any-group"}, + []string{"config", "include-any-group"}, map[string]interface{}{}, n, ), } } -// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny the path struct for its child "include-any-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsAny) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupAny{ +// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny the path struct for its child "include-any-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroupsPathAny) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_AdminGroups_IncludeAnyGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "include-any-group"}, + []string{"config", "include-any-group"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Active represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/active YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Active struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/active YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/active YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActiveAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/active YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Priority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Priority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/config/priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/config/priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/config/secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/state/secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-primary-path/p2p-primary-path/candidate-secondary-paths/candidate-secondary-path/config/secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPathAny struct { *ygot.NodePath } -// Active returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath the path struct for its child "active". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath) Active() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Active { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Active{ +// Active returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath the path struct for its child "active". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath) Active() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -65978,9 +66192,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// Active returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny the path struct for its child "active". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny) Active() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActiveAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActiveAny{ +// Active returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny the path struct for its child "active". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny) Active() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -65989,193 +66203,193 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// Priority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath the path struct for its child "priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath) Priority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Priority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_Priority{ +// Priority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath the path struct for its child "priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath) Priority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny the path struct for its child "priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny) Priority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityAny{ +// Priority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny the path struct for its child "priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny) Priority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// SecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath the path struct for its child "secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath) SecondaryPath() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPath { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPath{ +// SecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath the path struct for its child "secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPath) SecondaryPath() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPath{ NodePath: ygot.NewNodePath( - []string{"state", "secondary-path"}, + []string{"config", "secondary-path"}, map[string]interface{}{}, n, ), } } -// SecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny the path struct for its child "secondary-path". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathAny) SecondaryPath() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathAny{ +// SecondaryPath returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny the path struct for its child "secondary-path". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPathPathAny) SecondaryPath() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PPrimaryPath_CandidateSecondaryPath_SecondaryPathPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "secondary-path"}, + []string{"config", "secondary-path"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessions represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/associated-rsvp-sessions YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessions struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/associated-rsvp-sessions YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/associated-rsvp-sessions YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/associated-rsvp-sessions YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetric represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetric struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreaker represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-tiebreaker YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreaker struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/cspf-tiebreaker YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/cspf-tiebreaker YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/cspf-tiebreaker YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathName represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/explicit-path-name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathName struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/explicit-path-name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/explicit-path-name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/explicit-path-name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/hold-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/hold-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Name struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NameAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethod represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/path-computation-method YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethod struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/path-computation-method YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/path-computation-method YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/path-computation-method YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServer represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/path-computation-server YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServer struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/path-computation-server YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/path-computation-server YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/path-computation-server YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Preference represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Preference struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/preference YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferenceAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/preference YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimer represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/retry-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimer struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/retry-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/retry-timer YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/retry-timer YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriority struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/setup-priority YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/setup-priority YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetric represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/spf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetric struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/spf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/spf-metric YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/spf-metric YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspf represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/use-cspf YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspf struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/use-cspf YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/state/use-cspf YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/config/use-cspf YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPathAny struct { *ygot.NodePath } -// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "admin-groups". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups{ +// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "admin-groups". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath{ NodePath: ygot.NewNodePath( []string{"admin-groups"}, map[string]interface{}{}, @@ -66184,9 +66398,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "admin-groups". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny{ +// AdminGroups returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "admin-groups". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) AdminGroups() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny{ NodePath: ygot.NewNodePath( []string{"admin-groups"}, map[string]interface{}{}, @@ -66195,9 +66409,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "associated-rsvp-sessions". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessions { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessions{ +// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "associated-rsvp-sessions". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPath{ NodePath: ygot.NewNodePath( []string{"state", "associated-rsvp-sessions"}, map[string]interface{}{}, @@ -66206,9 +66420,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "associated-rsvp-sessions". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsAny{ +// AssociatedRsvpSessions returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "associated-rsvp-sessions". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) AssociatedRsvpSessions() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AssociatedRsvpSessionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "associated-rsvp-sessions"}, map[string]interface{}{}, @@ -66217,9 +66431,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "cspf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetric { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetric{ +// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "cspf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPath{ NodePath: ygot.NewNodePath( []string{"state", "cspf-metric"}, map[string]interface{}{}, @@ -66228,9 +66442,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "cspf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricAny{ +// CspfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "cspf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) CspfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfMetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cspf-metric"}, map[string]interface{}{}, @@ -66239,207 +66453,207 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "cspf-tiebreaker". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreaker { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreaker{ +// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "cspf-tiebreaker". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPath{ NodePath: ygot.NewNodePath( - []string{"state", "cspf-tiebreaker"}, + []string{"config", "cspf-tiebreaker"}, map[string]interface{}{}, n, ), } } -// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "cspf-tiebreaker". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerAny{ +// CspfTiebreaker returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "cspf-tiebreaker". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) CspfTiebreaker() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_CspfTiebreakerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cspf-tiebreaker"}, + []string{"config", "cspf-tiebreaker"}, map[string]interface{}{}, n, ), } } -// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "explicit-path-name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathName { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathName{ +// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "explicit-path-name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "explicit-path-name"}, + []string{"config", "explicit-path-name"}, map[string]interface{}{}, n, ), } } -// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "explicit-path-name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNameAny{ +// ExplicitPathName returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "explicit-path-name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) ExplicitPathName() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_ExplicitPathNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "explicit-path-name"}, + []string{"config", "explicit-path-name"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriority{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "hold-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityAny{ +// HoldPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "hold-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) HoldPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_HoldPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-priority"}, + []string{"config", "hold-priority"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Name { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Name{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NameAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NameAny{ +// Name returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) Name() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "path-computation-method". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethod { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethod{ +// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "path-computation-method". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPath{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-method"}, + []string{"config", "path-computation-method"}, map[string]interface{}{}, n, ), } } -// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "path-computation-method". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodAny{ +// PathComputationMethod returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "path-computation-method". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) PathComputationMethod() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationMethodPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-method"}, + []string{"config", "path-computation-method"}, map[string]interface{}{}, n, ), } } -// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "path-computation-server". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServer { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServer{ +// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "path-computation-server". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPath{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-server"}, + []string{"config", "path-computation-server"}, map[string]interface{}{}, n, ), } } -// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "path-computation-server". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerAny{ +// PathComputationServer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "path-computation-server". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) PathComputationServer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PathComputationServerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "path-computation-server"}, + []string{"config", "path-computation-server"}, map[string]interface{}{}, n, ), } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Preference { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_Preference{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePath{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "preference". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferenceAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferenceAny{ +// Preference returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "preference". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) Preference() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_PreferencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "preference"}, + []string{"config", "preference"}, map[string]interface{}{}, n, ), } } -// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "retry-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimer { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimer{ +// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "retry-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "retry-timer"}, + []string{"config", "retry-timer"}, map[string]interface{}{}, n, ), } } -// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "retry-timer". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerAny{ +// RetryTimer returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "retry-timer". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) RetryTimer() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_RetryTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "retry-timer"}, + []string{"config", "retry-timer"}, map[string]interface{}{}, n, ), } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriority { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriority{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) SetupPriority() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "setup-priority"}, + []string{"config", "setup-priority"}, map[string]interface{}{}, n, ), } } -// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "spf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetric { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetric{ +// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "spf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPath{ NodePath: ygot.NewNodePath( []string{"state", "spf-metric"}, map[string]interface{}{}, @@ -66448,9 +66662,9 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "spf-metric". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricAny{ +// SpfMetric returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "spf-metric". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) SpfMetric() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_SpfMetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "spf-metric"}, map[string]interface{}{}, @@ -66459,157 +66673,157 @@ func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2 } } -// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath the path struct for its child "use-cspf". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspf { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspf{ +// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath the path struct for its child "use-cspf". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPath) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPath{ NodePath: ygot.NewNodePath( - []string{"state", "use-cspf"}, + []string{"config", "use-cspf"}, map[string]interface{}{}, n, ), } } -// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny the path struct for its child "use-cspf". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathAny) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfAny{ +// UseCspf returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny the path struct for its child "use-cspf". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPathPathAny) UseCspf() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_UseCspfPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "use-cspf"}, + []string{"config", "use-cspf"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/exclude-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/exclude-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/exclude-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/exclude-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/include-all-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/include-all-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/include-all-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/include-all-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/include-any-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroup struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/include-any-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/state/include-any-group YANG schema element. -type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupAny struct { +// NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/constrained-path/tunnels/tunnel/p2p-tunnel-attributes/p2p-secondary-paths/p2p-secondary-path/admin-groups/config/include-any-group YANG schema element. +type NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPathAny struct { *ygot.NodePath } -// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups the path struct for its child "exclude-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroup{ +// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath the path struct for its child "exclude-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "exclude-group"}, + []string{"config", "exclude-group"}, map[string]interface{}{}, n, ), } } -// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny the path struct for its child "exclude-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupAny{ +// ExcludeGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny the path struct for its child "exclude-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny) ExcludeGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_ExcludeGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "exclude-group"}, + []string{"config", "exclude-group"}, map[string]interface{}{}, n, ), } } -// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups the path struct for its child "include-all-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroup{ +// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath the path struct for its child "include-all-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "include-all-group"}, + []string{"config", "include-all-group"}, map[string]interface{}{}, n, ), } } -// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny the path struct for its child "include-all-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupAny{ +// IncludeAllGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny the path struct for its child "include-all-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny) IncludeAllGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAllGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "include-all-group"}, + []string{"config", "include-all-group"}, map[string]interface{}{}, n, ), } } -// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups the path struct for its child "include-any-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroup { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroup{ +// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath the path struct for its child "include-any-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPath) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPath { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "include-any-group"}, + []string{"config", "include-any-group"}, map[string]interface{}{}, n, ), } } -// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny the path struct for its child "include-any-group". -func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsAny) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupAny { - return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupAny{ +// IncludeAnyGroup returns from NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny the path struct for its child "include-any-group". +func (n *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroupsPathAny) IncludeAnyGroup() *NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPathAny { + return &NetworkInstance_Mpls_Lsps_ConstrainedPath_Tunnel_P2PTunnelAttributes_P2PSecondaryPath_AdminGroups_IncludeAnyGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "include-any-group"}, + []string{"config", "include-any-group"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_StaticLsp represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp struct { +// NetworkInstance_Mpls_Lsps_StaticLspPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLspPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLspAny struct { +// NetworkInstance_Mpls_Lsps_StaticLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLspPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Name struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/state/name YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_NameAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/config/name YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_NamePathAny struct { *ygot.NodePath } -// Egress returns from NetworkInstance_Mpls_Lsps_StaticLsp the path struct for its child "egress". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Egress() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress{ +// Egress returns from NetworkInstance_Mpls_Lsps_StaticLspPath the path struct for its child "egress". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPath) Egress() *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath{ NodePath: ygot.NewNodePath( []string{"egress"}, map[string]interface{}{}, @@ -66618,9 +66832,9 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Egress() *NetworkInstance_Mpls_Lsp } } -// Egress returns from NetworkInstance_Mpls_Lsps_StaticLspAny the path struct for its child "egress". -func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Egress() *NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny{ +// Egress returns from NetworkInstance_Mpls_Lsps_StaticLspPathAny the path struct for its child "egress". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPathAny) Egress() *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny{ NodePath: ygot.NewNodePath( []string{"egress"}, map[string]interface{}{}, @@ -66629,9 +66843,9 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Egress() *NetworkInstance_Mpls_ } } -// Ingress returns from NetworkInstance_Mpls_Lsps_StaticLsp the path struct for its child "ingress". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Ingress() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress{ +// Ingress returns from NetworkInstance_Mpls_Lsps_StaticLspPath the path struct for its child "ingress". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPath) Ingress() *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath{ NodePath: ygot.NewNodePath( []string{"ingress"}, map[string]interface{}{}, @@ -66640,9 +66854,9 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Ingress() *NetworkInstance_Mpls_Ls } } -// Ingress returns from NetworkInstance_Mpls_Lsps_StaticLspAny the path struct for its child "ingress". -func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Ingress() *NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny{ +// Ingress returns from NetworkInstance_Mpls_Lsps_StaticLspPathAny the path struct for its child "ingress". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPathAny) Ingress() *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny{ NodePath: ygot.NewNodePath( []string{"ingress"}, map[string]interface{}{}, @@ -66651,31 +66865,31 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Ingress() *NetworkInstance_Mpls } } -// Name returns from NetworkInstance_Mpls_Lsps_StaticLsp the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Name() *NetworkInstance_Mpls_Lsps_StaticLsp_Name { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Name{ +// Name returns from NetworkInstance_Mpls_Lsps_StaticLspPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPath) Name() *NetworkInstance_Mpls_Lsps_StaticLsp_NamePath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_Lsps_StaticLspAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Name() *NetworkInstance_Mpls_Lsps_StaticLsp_NameAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_NameAny{ +// Name returns from NetworkInstance_Mpls_Lsps_StaticLspPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPathAny) Name() *NetworkInstance_Mpls_Lsps_StaticLsp_NamePathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Transit returns from NetworkInstance_Mpls_Lsps_StaticLsp the path struct for its child "transit". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Transit() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit{ +// Transit returns from NetworkInstance_Mpls_Lsps_StaticLspPath the path struct for its child "transit". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPath) Transit() *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath{ NodePath: ygot.NewNodePath( []string{"transit"}, map[string]interface{}{}, @@ -66684,9 +66898,9 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLsp) Transit() *NetworkInstance_Mpls_Ls } } -// Transit returns from NetworkInstance_Mpls_Lsps_StaticLspAny the path struct for its child "transit". -func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Transit() *NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny{ +// Transit returns from NetworkInstance_Mpls_Lsps_StaticLspPathAny the path struct for its child "transit". +func (n *NetworkInstance_Mpls_Lsps_StaticLspPathAny) Transit() *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny{ NodePath: ygot.NewNodePath( []string{"transit"}, map[string]interface{}{}, @@ -66695,337 +66909,337 @@ func (n *NetworkInstance_Mpls_Lsps_StaticLspAny) Transit() *NetworkInstance_Mpls } } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHop represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHop struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/egress/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPathAny struct { *ygot.NodePath } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Egress the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Egress) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabel{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelAny{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_IncomingLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_Egress the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Egress) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHop { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHop{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopAny{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Egress the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Egress) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabel{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPath) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelAny{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_EgressPathAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Egress_PushLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHop represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHop struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/ingress/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPathAny struct { *ygot.NodePath } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Ingress the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabel{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelAny{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_IncomingLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_Ingress the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHop { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHop{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopAny{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Ingress the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabel{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPath) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelAny{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_IngressPathAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Ingress_PushLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/incoming-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/incoming-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHop represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHop struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/next-hop YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/next-hop YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabel struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/state/push-label YANG schema element. -type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelAny struct { +// NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/static-lsps/static-lsp/transit/config/push-label YANG schema element. +type NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPathAny struct { *ygot.NodePath } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Transit the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Transit) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabel{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny the path struct for its child "incoming-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelAny{ +// IncomingLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny the path struct for its child "incoming-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny) IncomingLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_IncomingLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "incoming-label"}, + []string{"config", "incoming-label"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_Transit the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Transit) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHop { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHop{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny the path struct for its child "next-hop". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopAny{ +// NextHop returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny) NextHop() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_Transit the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_Transit) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabel { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabel{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPath) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPath { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny the path struct for its child "push-label". -func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelAny { - return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelAny{ +// PushLabel returns from NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny the path struct for its child "push-label". +func (n *NetworkInstance_Mpls_Lsps_StaticLsp_TransitPathAny) PushLabel() *NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPathAny { + return &NetworkInstance_Mpls_Lsps_StaticLsp_Transit_PushLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "push-label"}, + []string{"config", "push-label"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_Lsps_UnconstrainedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPath struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPathPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPathPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_UnconstrainedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPathAny struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny struct { *ygot.NodePath } -// PathSetupProtocol returns from NetworkInstance_Mpls_Lsps_UnconstrainedPath the path struct for its child "path-setup-protocol". -func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath) PathSetupProtocol() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol{ +// PathSetupProtocol returns from NetworkInstance_Mpls_Lsps_UnconstrainedPathPath the path struct for its child "path-setup-protocol". +func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPathPath) PathSetupProtocol() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath{ NodePath: ygot.NewNodePath( []string{"path-setup-protocol"}, map[string]interface{}{}, @@ -67034,9 +67248,9 @@ func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath) PathSetupProtocol() *Netwo } } -// PathSetupProtocol returns from NetworkInstance_Mpls_Lsps_UnconstrainedPathAny the path struct for its child "path-setup-protocol". -func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPathAny) PathSetupProtocol() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny{ +// PathSetupProtocol returns from NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny the path struct for its child "path-setup-protocol". +func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPathPathAny) PathSetupProtocol() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"path-setup-protocol"}, map[string]interface{}{}, @@ -67045,19 +67259,19 @@ func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPathAny) PathSetupProtocol() *Ne } } -// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny struct { *ygot.NodePath } -// Ldp returns from NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol the path struct for its child "ldp". -func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol) Ldp() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_Ldp { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_Ldp{ +// Ldp returns from NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath the path struct for its child "ldp". +func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPath) Ldp() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPath { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPath{ NodePath: ygot.NewNodePath( []string{"ldp"}, map[string]interface{}{}, @@ -67066,9 +67280,9 @@ func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol) Ldp() *N } } -// Ldp returns from NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny the path struct for its child "ldp". -func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny) Ldp() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpAny { - return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpAny{ +// Ldp returns from NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny the path struct for its child "ldp". +func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolPathAny) Ldp() *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPathAny { + return &NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPathAny{ NodePath: ygot.NewNodePath( []string{"ldp"}, map[string]interface{}{}, @@ -67077,29 +67291,29 @@ func (n *NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocolAny) Ldp() } } -// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_Ldp represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol/ldp YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_Ldp struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol/ldp YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol/ldp YANG schema element. -type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpAny struct { +// NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/lsps/unconstrained-path/path-setup-protocol/ldp YANG schema element. +type NetworkInstance_Mpls_Lsps_UnconstrainedPath_PathSetupProtocol_LdpPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols struct { +// NetworkInstance_Mpls_SignalingProtocolsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols YANG schema element. +type NetworkInstance_Mpls_SignalingProtocolsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocolsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols YANG schema element. -type NetworkInstance_Mpls_SignalingProtocolsAny struct { +// NetworkInstance_Mpls_SignalingProtocolsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols YANG schema element. +type NetworkInstance_Mpls_SignalingProtocolsPathAny struct { *ygot.NodePath } -// Ldp returns from NetworkInstance_Mpls_SignalingProtocols the path struct for its child "ldp". -func (n *NetworkInstance_Mpls_SignalingProtocols) Ldp() *NetworkInstance_Mpls_SignalingProtocols_Ldp { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp{ +// Ldp returns from NetworkInstance_Mpls_SignalingProtocolsPath the path struct for its child "ldp". +func (n *NetworkInstance_Mpls_SignalingProtocolsPath) Ldp() *NetworkInstance_Mpls_SignalingProtocols_LdpPath { + return &NetworkInstance_Mpls_SignalingProtocols_LdpPath{ NodePath: ygot.NewNodePath( []string{"ldp"}, map[string]interface{}{}, @@ -67108,9 +67322,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols) Ldp() *NetworkInstance_Mpls_Si } } -// Ldp returns from NetworkInstance_Mpls_SignalingProtocolsAny the path struct for its child "ldp". -func (n *NetworkInstance_Mpls_SignalingProtocolsAny) Ldp() *NetworkInstance_Mpls_SignalingProtocols_LdpAny { - return &NetworkInstance_Mpls_SignalingProtocols_LdpAny{ +// Ldp returns from NetworkInstance_Mpls_SignalingProtocolsPathAny the path struct for its child "ldp". +func (n *NetworkInstance_Mpls_SignalingProtocolsPathAny) Ldp() *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_LdpPathAny{ NodePath: ygot.NewNodePath( []string{"ldp"}, map[string]interface{}{}, @@ -67119,9 +67333,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocolsAny) Ldp() *NetworkInstance_Mpls } } -// RsvpTe returns from NetworkInstance_Mpls_SignalingProtocols the path struct for its child "rsvp-te". -func (n *NetworkInstance_Mpls_SignalingProtocols) RsvpTe() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe{ +// RsvpTe returns from NetworkInstance_Mpls_SignalingProtocolsPath the path struct for its child "rsvp-te". +func (n *NetworkInstance_Mpls_SignalingProtocolsPath) RsvpTe() *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTePath{ NodePath: ygot.NewNodePath( []string{"rsvp-te"}, map[string]interface{}{}, @@ -67130,9 +67344,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols) RsvpTe() *NetworkInstance_Mpls } } -// RsvpTe returns from NetworkInstance_Mpls_SignalingProtocolsAny the path struct for its child "rsvp-te". -func (n *NetworkInstance_Mpls_SignalingProtocolsAny) RsvpTe() *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny{ +// RsvpTe returns from NetworkInstance_Mpls_SignalingProtocolsPathAny the path struct for its child "rsvp-te". +func (n *NetworkInstance_Mpls_SignalingProtocolsPathAny) RsvpTe() *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny{ NodePath: ygot.NewNodePath( []string{"rsvp-te"}, map[string]interface{}{}, @@ -67141,9 +67355,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocolsAny) RsvpTe() *NetworkInstance_M } } -// SegmentRouting returns from NetworkInstance_Mpls_SignalingProtocols the path struct for its child "segment-routing". -func (n *NetworkInstance_Mpls_SignalingProtocols) SegmentRouting() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting{ +// SegmentRouting returns from NetworkInstance_Mpls_SignalingProtocolsPath the path struct for its child "segment-routing". +func (n *NetworkInstance_Mpls_SignalingProtocolsPath) SegmentRouting() *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -67152,9 +67366,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols) SegmentRouting() *NetworkInsta } } -// SegmentRouting returns from NetworkInstance_Mpls_SignalingProtocolsAny the path struct for its child "segment-routing". -func (n *NetworkInstance_Mpls_SignalingProtocolsAny) SegmentRouting() *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny{ +// SegmentRouting returns from NetworkInstance_Mpls_SignalingProtocolsPathAny the path struct for its child "segment-routing". +func (n *NetworkInstance_Mpls_SignalingProtocolsPathAny) SegmentRouting() *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -67163,19 +67377,19 @@ func (n *NetworkInstance_Mpls_SignalingProtocolsAny) SegmentRouting() *NetworkIn } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp struct { +// NetworkInstance_Mpls_SignalingProtocols_LdpPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_LdpPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_LdpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_LdpAny struct { +// NetworkInstance_Mpls_SignalingProtocols_LdpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_LdpPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "global". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Global() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global{ +// Global returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "global". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) Global() *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -67184,9 +67398,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Global() *NetworkInstance_ } } -// Global returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "global". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Global() *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny{ +// Global returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "global". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) Global() *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -67195,9 +67409,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Global() *NetworkInstan } } -// InterfaceAttributes returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "interface-attributes". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) InterfaceAttributes() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes{ +// InterfaceAttributes returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "interface-attributes". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) InterfaceAttributes() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath{ NodePath: ygot.NewNodePath( []string{"interface-attributes"}, map[string]interface{}{}, @@ -67206,9 +67420,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) InterfaceAttributes() *Net } } -// InterfaceAttributes returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "interface-attributes". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) InterfaceAttributes() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny{ +// InterfaceAttributes returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "interface-attributes". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) InterfaceAttributes() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes"}, map[string]interface{}{}, @@ -67217,9 +67431,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) InterfaceAttributes() * } } -// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": "*", "label-space-id": "*"}, @@ -67228,9 +67442,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAny() *NetworkInst } } -// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": "*", "label-space-id": "*"}, @@ -67239,9 +67453,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAny() *NetworkI } } -// NeighborAnyLabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAnyLabelSpaceId(LsrId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAnyLabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) NeighborAnyLabelSpaceId(LsrId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": LsrId, "label-space-id": "*"}, @@ -67250,9 +67464,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAnyLabelSpaceId(Ls } } -// NeighborAnyLabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAnyLabelSpaceId(LsrId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAnyLabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) NeighborAnyLabelSpaceId(LsrId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": LsrId, "label-space-id": "*"}, @@ -67261,9 +67475,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAnyLabelSpaceId } } -// NeighborAnyLsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAnyLsrId(LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAnyLsrId returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) NeighborAnyLsrId(LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": "*", "label-space-id": LabelSpaceId}, @@ -67272,9 +67486,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) NeighborAnyLsrId(LabelSpac } } -// NeighborAnyLsrId returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAnyLsrId(LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// NeighborAnyLsrId returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) NeighborAnyLsrId(LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": "*", "label-space-id": LabelSpaceId}, @@ -67283,9 +67497,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) NeighborAnyLsrId(LabelS } } -// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Neighbor(LsrId string, LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor{ +// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) Neighbor(LsrId string, LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": LsrId, "label-space-id": LabelSpaceId}, @@ -67294,9 +67508,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Neighbor(LsrId string, Lab } } -// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Neighbor(LsrId string, LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny{ +// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) Neighbor(LsrId string, LabelSpaceId uint16) *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"lsr-id": LsrId, "label-space-id": LabelSpaceId}, @@ -67305,9 +67519,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Neighbor(LsrId string, } } -// Targeted returns from NetworkInstance_Mpls_SignalingProtocols_Ldp the path struct for its child "targeted". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Targeted() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted{ +// Targeted returns from NetworkInstance_Mpls_SignalingProtocols_LdpPath the path struct for its child "targeted". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPath) Targeted() *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath{ NodePath: ygot.NewNodePath( []string{"targeted"}, map[string]interface{}{}, @@ -67316,9 +67530,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp) Targeted() *NetworkInstanc } } -// Targeted returns from NetworkInstance_Mpls_SignalingProtocols_LdpAny the path struct for its child "targeted". -func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Targeted() *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny{ +// Targeted returns from NetworkInstance_Mpls_SignalingProtocols_LdpPathAny the path struct for its child "targeted". +func (n *NetworkInstance_Mpls_SignalingProtocols_LdpPathAny) Targeted() *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny{ NodePath: ygot.NewNodePath( []string{"targeted"}, map[string]interface{}{}, @@ -67327,29 +67541,29 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_LdpAny) Targeted() *NetworkInst } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/state/lsr-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrId struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/config/lsr-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/state/lsr-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/config/lsr-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPathAny struct { *ygot.NodePath } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -67358,9 +67572,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global) Authentication() *N } } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -67369,9 +67583,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny) Authentication() } } -// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global the path struct for its child "graceful-restart". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -67380,9 +67594,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global) GracefulRestart() * } } -// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -67391,349 +67605,349 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny) GracefulRestart( } } -// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global the path struct for its child "lsr-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrId { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrId{ +// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath the path struct for its child "lsr-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPath) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsr-id"}, + []string{"config", "lsr-id"}, map[string]interface{}{}, n, ), } } -// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny the path struct for its child "lsr-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalAny) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdAny{ +// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny the path struct for its child "lsr-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_GlobalPathAny) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_LsrIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsr-id"}, + []string{"config", "lsr-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKey represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKey struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_Enable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_Enable struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePathAny struct { *ygot.NodePath } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKey { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKey{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyAny{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_AuthenticationKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_Enable { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_Enable{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPath) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnableAny{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_AuthenticationPathAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_Authentication_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_Enabled struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/forwarding-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/forwarding-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/forwarding-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/forwarding-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/helper-enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnable struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/helper-enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/helper-enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/helper-enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/reconnect-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/reconnect-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/reconnect-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/reconnect-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/recovery-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/recovery-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/state/recovery-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/global/graceful-restart/config/recovery-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_Enabled { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// ForwardingHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart the path struct for its child "forwarding-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart) ForwardingHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtime{ +// ForwardingHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath the path struct for its child "forwarding-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath) ForwardingHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePath{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-holdtime"}, + []string{"config", "forwarding-holdtime"}, map[string]interface{}{}, n, ), } } -// ForwardingHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny the path struct for its child "forwarding-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny) ForwardingHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimeAny{ +// ForwardingHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny the path struct for its child "forwarding-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny) ForwardingHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ForwardingHoldtimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-holdtime"}, + []string{"config", "forwarding-holdtime"}, map[string]interface{}{}, n, ), } } -// HelperEnable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart the path struct for its child "helper-enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart) HelperEnable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnable { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnable{ +// HelperEnable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath the path struct for its child "helper-enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath) HelperEnable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-enable"}, + []string{"config", "helper-enable"}, map[string]interface{}{}, n, ), } } -// HelperEnable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny the path struct for its child "helper-enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny) HelperEnable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnableAny{ +// HelperEnable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny the path struct for its child "helper-enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny) HelperEnable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_HelperEnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-enable"}, + []string{"config", "helper-enable"}, map[string]interface{}{}, n, ), } } -// ReconnectTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart the path struct for its child "reconnect-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart) ReconnectTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTime{ +// ReconnectTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath the path struct for its child "reconnect-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath) ReconnectTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "reconnect-time"}, + []string{"config", "reconnect-time"}, map[string]interface{}{}, n, ), } } -// ReconnectTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny the path struct for its child "reconnect-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny) ReconnectTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimeAny{ +// ReconnectTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny the path struct for its child "reconnect-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny) ReconnectTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_ReconnectTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "reconnect-time"}, + []string{"config", "reconnect-time"}, map[string]interface{}{}, n, ), } } -// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart the path struct for its child "recovery-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTime{ +// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath the path struct for its child "recovery-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPath) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "recovery-time"}, + []string{"config", "recovery-time"}, map[string]interface{}{}, n, ), } } -// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny the path struct for its child "recovery-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartAny) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimeAny{ +// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny the path struct for its child "recovery-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestartPathAny) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Global_GracefulRestart_RecoveryTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "recovery-time"}, + []string{"config", "recovery-time"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPathAny struct { *ygot.NodePath } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtime{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimeAny{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloHoldtimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -67742,9 +67956,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) Interf } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -67753,9 +67967,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) Int } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPath) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -67764,9 +67978,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes) Interf } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesPathAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -67775,49 +67989,49 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributesAny) Int } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceId struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny{ +// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": "*"}, @@ -67826,9 +68040,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny{ +// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": "*"}, @@ -67837,9 +68051,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) AddressFamily(AfiName oc.E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily{ +// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) AddressFamily(AfiName E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": AfiName}, @@ -67848,9 +68062,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) AddressFamily(AfiName oc.E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) AddressFamily(AfiName E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": AfiName}, @@ -67859,9 +68073,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) Counters() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_Counters { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_Counters{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) Counters() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -67870,9 +68084,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersAny{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -67881,75 +68095,75 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtime{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimeAny{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloHoldtimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceId { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePath) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -67958,9 +68172,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_InterfacePathAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -67969,197 +68183,197 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interfa } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiName represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/state/afi-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiName struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/config/afi-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/state/afi-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNameAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/config/afi-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_Enabled struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/address-families/address-family/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily the path struct for its child "afi-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiName { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiName{ +// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath the path struct for its child "afi-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny the path struct for its child "afi-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNameAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNameAny{ +// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_Enabled { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_Enabled{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPath) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamilyPathAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_AddressFamily_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_Counters represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_Counters struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_InterfaceAttributes_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/state/label-space-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceId struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/config/label-space-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/state/label-space-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/config/label-space-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/state/lsr-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrId struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/config/lsr-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/state/lsr-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/config/lsr-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPathAny struct { *ygot.NodePath } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -68168,9 +68382,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) Authentication() } } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -68179,9 +68393,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) Authentication } } -// HelloAdjacencyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) HelloAdjacencyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": "*", "local-address": "*"}, @@ -68190,9 +68404,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAny } } -// HelloAdjacencyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacencyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) HelloAdjacencyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": "*", "local-address": "*"}, @@ -68201,9 +68415,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacency } } -// HelloAdjacencyAnyLocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAnyLocalAddress(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAnyLocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) HelloAdjacencyAnyLocalAddress(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": RemoteAddress, "local-address": "*"}, @@ -68212,9 +68426,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAny } } -// HelloAdjacencyAnyLocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacencyAnyLocalAddress(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAnyLocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) HelloAdjacencyAnyLocalAddress(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": RemoteAddress, "local-address": "*"}, @@ -68223,9 +68437,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacency } } -// HelloAdjacencyAnyRemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAnyRemoteAddress(LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAnyRemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) HelloAdjacencyAnyRemoteAddress(LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": "*", "local-address": LocalAddress}, @@ -68234,9 +68448,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacencyAny } } -// HelloAdjacencyAnyRemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacencyAnyRemoteAddress(LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacencyAnyRemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) HelloAdjacencyAnyRemoteAddress(LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": "*", "local-address": LocalAddress}, @@ -68245,9 +68459,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacency } } -// HelloAdjacency returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacency(RemoteAddress string, LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency{ +// HelloAdjacency returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) HelloAdjacency(RemoteAddress string, LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": RemoteAddress, "local-address": LocalAddress}, @@ -68256,9 +68470,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) HelloAdjacency(Re } } -// HelloAdjacency returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "hello-adjacency". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacency(RemoteAddress string, LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny{ +// HelloAdjacency returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "hello-adjacency". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) HelloAdjacency(RemoteAddress string, LocalAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"hello-adjacencies", "hello-adjacency"}, map[string]interface{}{"remote-address": RemoteAddress, "local-address": LocalAddress}, @@ -68267,197 +68481,197 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) HelloAdjacency } } -// LabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "label-space-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) LabelSpaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceId { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceId{ +// LabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "label-space-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) LabelSpaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "label-space-id"}, + []string{"config", "label-space-id"}, map[string]interface{}{}, n, ), } } -// LabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "label-space-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) LabelSpaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdAny{ +// LabelSpaceId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "label-space-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) LabelSpaceId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LabelSpaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "label-space-id"}, + []string{"config", "label-space-id"}, map[string]interface{}{}, n, ), } } -// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor the path struct for its child "lsr-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrId { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrId{ +// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath the path struct for its child "lsr-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPath) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsr-id"}, + []string{"config", "lsr-id"}, map[string]interface{}{}, n, ), } } -// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny the path struct for its child "lsr-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborAny) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdAny{ +// LsrId returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny the path struct for its child "lsr-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_NeighborPathAny) LsrId() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_LsrIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsr-id"}, + []string{"config", "lsr-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKey represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKey struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_Enable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_Enable struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePathAny struct { *ygot.NodePath } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKey { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKey{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyAny{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_AuthenticationKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_Enable { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_Enable{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPath) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnableAny{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_AuthenticationPathAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_Authentication_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyType represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/adjacency-type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyType struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/adjacency-type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/adjacency-type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/adjacency-type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDropped represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-dropped YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDropped struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-dropped YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-dropped YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-dropped YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceived represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-received YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceived struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-received YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-received YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/hello-received YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClear represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/last-clear YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClear struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/last-clear YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/last-clear YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/last-clear YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/local-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/local-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/local-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/local-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/remote-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/remote-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/remote-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/state/remote-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPathAny struct { *ygot.NodePath } -// AdjacencyType returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "adjacency-type". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) AdjacencyType() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyType { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyType{ +// AdjacencyType returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "adjacency-type". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) AdjacencyType() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePath{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-type"}, map[string]interface{}{}, @@ -68466,9 +68680,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) Ad } } -// AdjacencyType returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "adjacency-type". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) AdjacencyType() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypeAny{ +// AdjacencyType returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "adjacency-type". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) AdjacencyType() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_AdjacencyTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-type"}, map[string]interface{}{}, @@ -68477,9 +68691,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// HelloDropped returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "hello-dropped". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) HelloDropped() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDropped { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDropped{ +// HelloDropped returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "hello-dropped". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) HelloDropped() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "hello-dropped"}, map[string]interface{}{}, @@ -68488,9 +68702,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) He } } -// HelloDropped returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "hello-dropped". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) HelloDropped() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedAny{ +// HelloDropped returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "hello-dropped". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) HelloDropped() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloDroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hello-dropped"}, map[string]interface{}{}, @@ -68499,9 +68713,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath{ NodePath: ygot.NewNodePath( []string{"hello-holdtime"}, map[string]interface{}{}, @@ -68510,9 +68724,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) He } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny{ NodePath: ygot.NewNodePath( []string{"hello-holdtime"}, map[string]interface{}{}, @@ -68521,9 +68735,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// HelloReceived returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "hello-received". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) HelloReceived() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceived { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceived{ +// HelloReceived returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "hello-received". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) HelloReceived() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "hello-received"}, map[string]interface{}{}, @@ -68532,9 +68746,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) He } } -// HelloReceived returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "hello-received". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) HelloReceived() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedAny{ +// HelloReceived returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "hello-received". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) HelloReceived() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hello-received"}, map[string]interface{}{}, @@ -68543,9 +68757,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -68554,9 +68768,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) In } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -68565,9 +68779,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// LastClear returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "last-clear". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) LastClear() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClear { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClear{ +// LastClear returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "last-clear". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) LastClear() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPath{ NodePath: ygot.NewNodePath( []string{"state", "last-clear"}, map[string]interface{}{}, @@ -68576,9 +68790,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) La } } -// LastClear returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "last-clear". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) LastClear() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearAny{ +// LastClear returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "last-clear". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) LastClear() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-clear"}, map[string]interface{}{}, @@ -68587,9 +68801,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "local-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddress { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddress{ +// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "local-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-address"}, map[string]interface{}{}, @@ -68598,9 +68812,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) Lo } } -// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "local-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressAny{ +// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "local-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_LocalAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-address"}, map[string]interface{}{}, @@ -68609,9 +68823,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency the path struct for its child "remote-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddress { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddress{ +// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath the path struct for its child "remote-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPath) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -68620,9 +68834,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency) Re } } -// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny the path struct for its child "remote-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressAny{ +// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny the path struct for its child "remote-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyPathAny) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_RemoteAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -68631,59 +68845,59 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacencyAny) } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Adjacent represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/adjacent YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Adjacent struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/adjacent YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/adjacent YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/adjacent YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpiration represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/hello-expiration YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpiration struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/hello-expiration YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/hello-expiration YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/hello-expiration YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Negotiated represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/negotiated YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Negotiated struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/negotiated YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/negotiated YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/negotiated YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHello represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/next-hello YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHello struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/next-hello YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/next-hello YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/hello-holdtime/state/next-hello YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPathAny struct { *ygot.NodePath } -// Adjacent returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime the path struct for its child "adjacent". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime) Adjacent() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Adjacent { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Adjacent{ +// Adjacent returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath the path struct for its child "adjacent". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath) Adjacent() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPath{ NodePath: ygot.NewNodePath( []string{"state", "adjacent"}, map[string]interface{}{}, @@ -68692,9 +68906,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// Adjacent returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny the path struct for its child "adjacent". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny) Adjacent() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentAny{ +// Adjacent returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny the path struct for its child "adjacent". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny) Adjacent() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_AdjacentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacent"}, map[string]interface{}{}, @@ -68703,9 +68917,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// HelloExpiration returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime the path struct for its child "hello-expiration". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime) HelloExpiration() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpiration { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpiration{ +// HelloExpiration returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath the path struct for its child "hello-expiration". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath) HelloExpiration() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPath{ NodePath: ygot.NewNodePath( []string{"state", "hello-expiration"}, map[string]interface{}{}, @@ -68714,9 +68928,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// HelloExpiration returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny the path struct for its child "hello-expiration". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny) HelloExpiration() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationAny{ +// HelloExpiration returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny the path struct for its child "hello-expiration". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny) HelloExpiration() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_HelloExpirationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hello-expiration"}, map[string]interface{}{}, @@ -68725,9 +68939,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// Negotiated returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime the path struct for its child "negotiated". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime) Negotiated() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Negotiated { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_Negotiated{ +// Negotiated returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath the path struct for its child "negotiated". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath) Negotiated() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPath{ NodePath: ygot.NewNodePath( []string{"state", "negotiated"}, map[string]interface{}{}, @@ -68736,9 +68950,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// Negotiated returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny the path struct for its child "negotiated". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny) Negotiated() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedAny{ +// Negotiated returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny the path struct for its child "negotiated". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny) Negotiated() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NegotiatedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "negotiated"}, map[string]interface{}{}, @@ -68747,9 +68961,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// NextHello returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime the path struct for its child "next-hello". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime) NextHello() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHello { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHello{ +// NextHello returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath the path struct for its child "next-hello". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePath) NextHello() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hello"}, map[string]interface{}{}, @@ -68758,9 +68972,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// NextHello returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny the path struct for its child "next-hello". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimeAny) NextHello() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloAny{ +// NextHello returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny the path struct for its child "next-hello". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtimePathAny) NextHello() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_HelloHoldtime_NextHelloPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hello"}, map[string]interface{}{}, @@ -68769,39 +68983,39 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Hel } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/neighbors/neighbor/hello-adjacencies/hello-adjacency/interface-ref/state/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -68810,9 +69024,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Int } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -68821,9 +69035,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Int } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -68832,9 +69046,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Int } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -68843,49 +69057,49 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Neighbor_HelloAdjacency_Int } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAccept represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-accept YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAccept struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-accept YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-accept YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-accept YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPathAny struct { *ygot.NodePath } -// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny{ +// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": "*"}, @@ -68894,9 +69108,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) AddressFamilyAny( } } -// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny{ +// AddressFamilyAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny) AddressFamilyAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": "*"}, @@ -68905,9 +69119,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) AddressFamilyA } } -// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) AddressFamily(AfiName oc.E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily{ +// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath) AddressFamily(AfiName E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": AfiName}, @@ -68916,9 +69130,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) AddressFamily(Afi } } -// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny the path struct for its child "address-family". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) AddressFamily(AfiName oc.E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny the path struct for its child "address-family". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny) AddressFamily(AfiName E_OpenconfigMplsLdp_MplsLdpAfi) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"address-families", "address-family"}, map[string]interface{}{"afi-name": AfiName}, @@ -68927,117 +69141,117 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) AddressFamily( } } -// HelloAccept returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted the path struct for its child "hello-accept". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) HelloAccept() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAccept { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAccept{ +// HelloAccept returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath the path struct for its child "hello-accept". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath) HelloAccept() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-accept"}, + []string{"config", "hello-accept"}, map[string]interface{}{}, n, ), } } -// HelloAccept returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny the path struct for its child "hello-accept". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) HelloAccept() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptAny{ +// HelloAccept returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny the path struct for its child "hello-accept". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny) HelloAccept() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloAcceptPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-accept"}, + []string{"config", "hello-accept"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtime{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimeAny{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloHoldtimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_TargetedPathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiName represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/state/afi-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiName struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/config/afi-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/state/afi-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNameAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/config/afi-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily the path struct for its child "afi-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiName { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiName{ +// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath the path struct for its child "afi-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny the path struct for its child "afi-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNameAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNameAny{ +// AfiName returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny) AfiName() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// TargetAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily the path struct for its child "target". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily) TargetAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny{ +// TargetAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath the path struct for its child "target". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath) TargetAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"remote-address": "*"}, @@ -69046,9 +69260,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily) Tar } } -// TargetAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny the path struct for its child "target". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny) TargetAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny{ +// TargetAny returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny the path struct for its child "target". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny) TargetAny() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"remote-address": "*"}, @@ -69057,9 +69271,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny) } } -// Target returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily the path struct for its child "target". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily) Target(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target{ +// Target returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath the path struct for its child "target". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPath) Target(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"remote-address": RemoteAddress}, @@ -69068,9 +69282,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily) Tar } } -// Target returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny the path struct for its child "target". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny) Target(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny{ +// Target returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny the path struct for its child "target". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyPathAny) Target(RemoteAddress string) *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"remote-address": RemoteAddress}, @@ -69079,189 +69293,189 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamilyAny) } } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_Enabled represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_Enabled struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/enabled YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/enabled YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtime struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/hello-holdtime YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/hello-holdtime YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/local-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/local-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/local-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/local-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/remote-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/remote-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/state/remote-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/ldp/targeted/address-families/address-family/targets/target/config/remote-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_Enabled { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_Enabled{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny the path struct for its child "enabled". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledAny{ +// Enabled returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny) Enabled() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtime { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtime{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny the path struct for its child "hello-holdtime". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimeAny{ +// HelloHoldtime returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny the path struct for its child "hello-holdtime". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny) HelloHoldtime() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloHoldtimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-holdtime"}, + []string{"config", "hello-holdtime"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target the path struct for its child "local-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddress { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddress{ +// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath the path struct for its child "local-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny the path struct for its child "local-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressAny{ +// LocalAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny the path struct for its child "local-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny) LocalAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_LocalAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target the path struct for its child "remote-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddress { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddress{ +// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath the path struct for its child "remote-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPath) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-address"}, + []string{"config", "remote-address"}, map[string]interface{}{}, n, ), } } -// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny the path struct for its child "remote-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetAny) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressAny{ +// RemoteAddress returns from NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny the path struct for its child "remote-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_TargetPathAny) RemoteAddress() *NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_Ldp_Targeted_AddressFamily_Target_RemoteAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-address"}, + []string{"config", "remote-address"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "global". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Global() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global{ +// Global returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "global". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) Global() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -69270,9 +69484,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Global() *NetworkInstan } } -// Global returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "global". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Global() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny{ +// Global returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "global". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) Global() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -69281,9 +69495,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Global() *NetworkIns } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -69292,9 +69506,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) InterfaceAny() *Network } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -69303,9 +69517,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) InterfaceAny() *Netw } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -69314,9 +69528,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Interface(InterfaceId s } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interface-attributes", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -69325,9 +69539,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Interface(InterfaceI } } -// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny{ +// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"address": "*"}, @@ -69336,9 +69550,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) NeighborAny() *NetworkI } } -// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny{ +// NeighborAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) NeighborAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"address": "*"}, @@ -69347,9 +69561,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) NeighborAny() *Netwo } } -// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Neighbor(Address string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor{ +// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) Neighbor(Address string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"address": Address}, @@ -69358,9 +69572,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Neighbor(Address string } } -// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Neighbor(Address string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny{ +// Neighbor returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) Neighbor(Address string) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"address": Address}, @@ -69369,9 +69583,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Neighbor(Address str } } -// SessionAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "session". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) SessionAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny{ +// SessionAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "session". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) SessionAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny{ NodePath: ygot.NewNodePath( []string{"sessions", "session"}, map[string]interface{}{"local-index": "*"}, @@ -69380,9 +69594,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) SessionAny() *NetworkIn } } -// SessionAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "session". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) SessionAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny{ +// SessionAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "session". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) SessionAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny{ NodePath: ygot.NewNodePath( []string{"sessions", "session"}, map[string]interface{}{"local-index": "*"}, @@ -69391,9 +69605,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) SessionAny() *Networ } } -// Session returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe the path struct for its child "session". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Session(LocalIndex uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session{ +// Session returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePath the path struct for its child "session". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePath) Session(LocalIndex uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath{ NodePath: ygot.NewNodePath( []string{"sessions", "session"}, map[string]interface{}{"local-index": LocalIndex}, @@ -69402,9 +69616,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe) Session(LocalIndex uint } } -// Session returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny the path struct for its child "session". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Session(LocalIndex uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny{ +// Session returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny the path struct for its child "session". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTePathAny) Session(LocalIndex uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny{ NodePath: ygot.NewNodePath( []string{"sessions", "session"}, map[string]interface{}{"local-index": LocalIndex}, @@ -69413,19 +69627,19 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTeAny) Session(LocalIndex u } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny struct { *ygot.NodePath } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -69434,9 +69648,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) Counters() *Netw } } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -69445,9 +69659,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) Counters() *N } } -// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global the path struct for its child "graceful-restart". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -69456,9 +69670,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) GracefulRestart( } } -// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny) GracefulRestart() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -69467,9 +69681,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) GracefulResta } } -// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global the path struct for its child "hellos". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos{ +// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath the path struct for its child "hellos". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath{ NodePath: ygot.NewNodePath( []string{"hellos"}, map[string]interface{}{}, @@ -69478,9 +69692,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) Hellos() *Networ } } -// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny the path struct for its child "hellos". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny{ +// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny the path struct for its child "hellos". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny{ NodePath: ygot.NewNodePath( []string{"hellos"}, map[string]interface{}{}, @@ -69489,9 +69703,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) Hellos() *Net } } -// SoftPreemption returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global the path struct for its child "soft-preemption". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) SoftPreemption() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption{ +// SoftPreemption returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath the path struct for its child "soft-preemption". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPath) SoftPreemption() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath{ NodePath: ygot.NewNodePath( []string{"soft-preemption"}, map[string]interface{}{}, @@ -69500,9 +69714,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global) SoftPreemption() } } -// SoftPreemption returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny the path struct for its child "soft-preemption". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) SoftPreemption() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny{ +// SoftPreemption returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny the path struct for its child "soft-preemption". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalPathAny) SoftPreemption() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny{ NodePath: ygot.NewNodePath( []string{"soft-preemption"}, map[string]interface{}{}, @@ -69511,229 +69725,229 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_GlobalAny) SoftPreemptio } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/in-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/out-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeouts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/path-timeouts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeouts struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/path-timeouts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/path-timeouts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/path-timeouts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/rate-limited-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/rate-limited-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/rate-limited-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/rate-limited-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeouts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/reservation-timeouts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeouts struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/reservation-timeouts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/reservation-timeouts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/reservation-timeouts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPathAny struct { *ygot.NodePath } -// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "errors". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors{ +// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "errors". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath{ NodePath: ygot.NewNodePath( []string{"errors"}, map[string]interface{}{}, @@ -69742,9 +69956,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) Errors( } } -// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "errors". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny{ +// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "errors". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"errors"}, map[string]interface{}{}, @@ -69753,9 +69967,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) Erro } } -// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessages{ +// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-ack-messages"}, map[string]interface{}{}, @@ -69764,9 +69978,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InAckMe } } -// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesAny{ +// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InAckMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-ack-messages"}, map[string]interface{}{}, @@ -69775,9 +69989,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InAc } } -// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessages{ +// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-hello-messages"}, map[string]interface{}{}, @@ -69786,9 +70000,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InHello } } -// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesAny{ +// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InHelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-hello-messages"}, map[string]interface{}{}, @@ -69797,9 +70011,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InHe } } -// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessages{ +// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-error-messages"}, map[string]interface{}{}, @@ -69808,9 +70022,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathE } } -// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesAny{ +// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-error-messages"}, map[string]interface{}{}, @@ -69819,9 +70033,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPa } } -// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessages{ +// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-messages"}, map[string]interface{}{}, @@ -69830,9 +70044,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathM } } -// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesAny{ +// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-messages"}, map[string]interface{}{}, @@ -69841,9 +70055,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPa } } -// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessages{ +// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-tear-messages"}, map[string]interface{}{}, @@ -69852,9 +70066,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InPathT } } -// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesAny{ +// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InPathTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-tear-messages"}, map[string]interface{}{}, @@ -69863,9 +70077,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InPa } } -// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessages{ +// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-error-messages"}, map[string]interface{}{}, @@ -69874,9 +70088,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReser } } -// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesAny{ +// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-error-messages"}, map[string]interface{}{}, @@ -69885,9 +70099,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InRe } } -// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessages{ +// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-messages"}, map[string]interface{}{}, @@ -69896,9 +70110,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReser } } -// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesAny{ +// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-messages"}, map[string]interface{}{}, @@ -69907,9 +70121,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InRe } } -// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessages{ +// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-tear-messages"}, map[string]interface{}{}, @@ -69918,9 +70132,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InReser } } -// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesAny{ +// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InReservationTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-tear-messages"}, map[string]interface{}{}, @@ -69929,9 +70143,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InRe } } -// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "in-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessages{ +// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "in-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-srefresh-messages"}, map[string]interface{}{}, @@ -69940,9 +70154,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) InSrefr } } -// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "in-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesAny{ +// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "in-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_InSrefreshMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-srefresh-messages"}, map[string]interface{}{}, @@ -69951,9 +70165,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) InSr } } -// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessages{ +// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-ack-messages"}, map[string]interface{}{}, @@ -69962,9 +70176,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutAckM } } -// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesAny{ +// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutAckMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-ack-messages"}, map[string]interface{}{}, @@ -69973,9 +70187,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutA } } -// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessages{ +// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-hello-messages"}, map[string]interface{}{}, @@ -69984,9 +70198,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutHell } } -// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesAny{ +// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutHelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-hello-messages"}, map[string]interface{}{}, @@ -69995,9 +70209,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutH } } -// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessages{ +// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-error-messages"}, map[string]interface{}{}, @@ -70006,9 +70220,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPath } } -// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesAny{ +// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-error-messages"}, map[string]interface{}{}, @@ -70017,9 +70231,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutP } } -// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessages{ +// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-messages"}, map[string]interface{}{}, @@ -70028,9 +70242,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPath } } -// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesAny{ +// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-messages"}, map[string]interface{}{}, @@ -70039,9 +70253,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutP } } -// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessages{ +// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-tear-messages"}, map[string]interface{}{}, @@ -70050,9 +70264,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutPath } } -// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesAny{ +// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutPathTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-tear-messages"}, map[string]interface{}{}, @@ -70061,9 +70275,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutP } } -// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessages{ +// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-error-messages"}, map[string]interface{}{}, @@ -70072,9 +70286,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutRese } } -// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesAny{ +// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-error-messages"}, map[string]interface{}{}, @@ -70083,9 +70297,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutR } } -// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessages{ +// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-messages"}, map[string]interface{}{}, @@ -70094,9 +70308,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutRese } } -// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesAny{ +// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-messages"}, map[string]interface{}{}, @@ -70105,9 +70319,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutR } } -// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessages{ +// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-tear-messages"}, map[string]interface{}{}, @@ -70116,9 +70330,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutRese } } -// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesAny{ +// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutReservationTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-tear-messages"}, map[string]interface{}{}, @@ -70127,9 +70341,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutR } } -// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "out-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessages{ +// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "out-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-srefresh-messages"}, map[string]interface{}{}, @@ -70138,9 +70352,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) OutSref } } -// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "out-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesAny{ +// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "out-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_OutSrefreshMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-srefresh-messages"}, map[string]interface{}{}, @@ -70149,9 +70363,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) OutS } } -// PathTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "path-timeouts". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) PathTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeouts { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeouts{ +// PathTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "path-timeouts". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) PathTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPath{ NodePath: ygot.NewNodePath( []string{"path-timeouts"}, map[string]interface{}{}, @@ -70160,9 +70374,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) PathTim } } -// PathTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "path-timeouts". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) PathTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsAny{ +// PathTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "path-timeouts". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) PathTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_PathTimeoutsPathAny{ NodePath: ygot.NewNodePath( []string{"path-timeouts"}, map[string]interface{}{}, @@ -70171,9 +70385,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) Path } } -// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "rate-limited-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessages{ +// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "rate-limited-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPath{ NodePath: ygot.NewNodePath( []string{"rate-limited-messages"}, map[string]interface{}{}, @@ -70182,9 +70396,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) RateLim } } -// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "rate-limited-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesAny{ +// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "rate-limited-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_RateLimitedMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"rate-limited-messages"}, map[string]interface{}{}, @@ -70193,9 +70407,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) Rate } } -// ReservationTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters the path struct for its child "reservation-timeouts". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) ReservationTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeouts { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeouts{ +// ReservationTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath the path struct for its child "reservation-timeouts". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPath) ReservationTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPath{ NodePath: ygot.NewNodePath( []string{"reservation-timeouts"}, map[string]interface{}{}, @@ -70204,9 +70418,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters) Reserva } } -// ReservationTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny the path struct for its child "reservation-timeouts". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) ReservationTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsAny{ +// ReservationTimeouts returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny the path struct for its child "reservation-timeouts". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersPathAny) ReservationTimeouts() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ReservationTimeoutsPathAny{ NodePath: ygot.NewNodePath( []string{"reservation-timeouts"}, map[string]interface{}{}, @@ -70215,119 +70429,119 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_CountersAny) Rese } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFail represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/authentication-fail YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFail struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/authentication-fail YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/authentication-fail YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/authentication-fail YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksum represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-checksum YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksum struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-checksum YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-checksum YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-checksum YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormat represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-format YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormat struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-format YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-format YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-format YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLength represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-length YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLength struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-length YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-length YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/bad-packet-length YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrder represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/out-of-order YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrder struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/out-of-order YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/out-of-order YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/out-of-order YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNack represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/received-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNack struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/received-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/received-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/received-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailure represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-failure YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailure struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-failure YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailureAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-failure YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailureAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-failure YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFull represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-queue-full YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFull struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-queue-full YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-queue-full YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/transmit-queue-full YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAck represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-ack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAck struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-ack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-ack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-ack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNack represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNack struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/state/counters/errors/unknown-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPathAny struct { *ygot.NodePath } -// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "authentication-fail". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFail { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFail{ +// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "authentication-fail". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPath{ NodePath: ygot.NewNodePath( []string{"authentication-fail"}, map[string]interface{}{}, @@ -70336,9 +70550,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "authentication-fail". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailAny{ +// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "authentication-fail". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_AuthenticationFailPathAny{ NodePath: ygot.NewNodePath( []string{"authentication-fail"}, map[string]interface{}{}, @@ -70347,9 +70561,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "bad-checksum". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksum { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksum{ +// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "bad-checksum". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPath{ NodePath: ygot.NewNodePath( []string{"bad-checksum"}, map[string]interface{}{}, @@ -70358,9 +70572,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "bad-checksum". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumAny{ +// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "bad-checksum". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadChecksumPathAny{ NodePath: ygot.NewNodePath( []string{"bad-checksum"}, map[string]interface{}{}, @@ -70369,9 +70583,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "bad-packet-format". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormat { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormat{ +// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "bad-packet-format". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPath{ NodePath: ygot.NewNodePath( []string{"bad-packet-format"}, map[string]interface{}{}, @@ -70380,9 +70594,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "bad-packet-format". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatAny{ +// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "bad-packet-format". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketFormatPathAny{ NodePath: ygot.NewNodePath( []string{"bad-packet-format"}, map[string]interface{}{}, @@ -70391,9 +70605,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "bad-packet-length". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLength { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLength{ +// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "bad-packet-length". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPath{ NodePath: ygot.NewNodePath( []string{"bad-packet-length"}, map[string]interface{}{}, @@ -70402,9 +70616,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "bad-packet-length". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthAny{ +// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "bad-packet-length". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_BadPacketLengthPathAny{ NodePath: ygot.NewNodePath( []string{"bad-packet-length"}, map[string]interface{}{}, @@ -70413,9 +70627,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "out-of-order". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrder { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrder{ +// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "out-of-order". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPath{ NodePath: ygot.NewNodePath( []string{"out-of-order"}, map[string]interface{}{}, @@ -70424,9 +70638,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "out-of-order". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderAny{ +// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "out-of-order". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_OutOfOrderPathAny{ NodePath: ygot.NewNodePath( []string{"out-of-order"}, map[string]interface{}{}, @@ -70435,9 +70649,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "received-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNack { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNack{ +// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "received-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPath{ NodePath: ygot.NewNodePath( []string{"received-nack"}, map[string]interface{}{}, @@ -70446,9 +70660,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "received-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackAny{ +// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "received-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_ReceivedNackPathAny{ NodePath: ygot.NewNodePath( []string{"received-nack"}, map[string]interface{}{}, @@ -70457,9 +70671,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "transmit-failure". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailure { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailure{ +// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "transmit-failure". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePath{ NodePath: ygot.NewNodePath( []string{"transmit-failure"}, map[string]interface{}{}, @@ -70468,9 +70682,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "transmit-failure". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailureAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailureAny{ +// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "transmit-failure". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitFailurePathAny{ NodePath: ygot.NewNodePath( []string{"transmit-failure"}, map[string]interface{}{}, @@ -70479,9 +70693,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "transmit-queue-full". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFull { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFull{ +// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "transmit-queue-full". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPath{ NodePath: ygot.NewNodePath( []string{"transmit-queue-full"}, map[string]interface{}{}, @@ -70490,9 +70704,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "transmit-queue-full". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullAny{ +// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "transmit-queue-full". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_TransmitQueueFullPathAny{ NodePath: ygot.NewNodePath( []string{"transmit-queue-full"}, map[string]interface{}{}, @@ -70501,9 +70715,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "unknown-ack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAck { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAck{ +// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "unknown-ack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPath{ NodePath: ygot.NewNodePath( []string{"unknown-ack"}, map[string]interface{}{}, @@ -70512,9 +70726,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "unknown-ack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckAny{ +// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "unknown-ack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownAckPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-ack"}, map[string]interface{}{}, @@ -70523,9 +70737,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors the path struct for its child "unknown-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNack { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNack{ +// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath the path struct for its child "unknown-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPath) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPath{ NodePath: ygot.NewNodePath( []string{"unknown-nack"}, map[string]interface{}{}, @@ -70534,9 +70748,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors) } } -// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny the path struct for its child "unknown-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAny) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackAny{ +// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny the path struct for its child "unknown-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsPathAny) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_Errors_UnknownNackPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-nack"}, map[string]interface{}{}, @@ -70545,293 +70759,293 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Counters_ErrorsAn } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_Enable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_Enable struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/recovery-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTime struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/recovery-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/recovery-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/recovery-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTime represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTime struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_Enable { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_Enable{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnableAny{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart the path struct for its child "recovery-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTime { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTime{ +// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath the path struct for its child "recovery-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "recovery-time"}, + []string{"config", "recovery-time"}, map[string]interface{}{}, n, ), } } -// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny the path struct for its child "recovery-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimeAny{ +// RecoveryTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny the path struct for its child "recovery-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny) RecoveryTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RecoveryTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "recovery-time"}, + []string{"config", "recovery-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart the path struct for its child "restart-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart) RestartTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTime { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTime{ +// RestartTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath the path struct for its child "restart-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPath) RestartTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny the path struct for its child "restart-time". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartAny) RestartTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimeAny{ +// RestartTime returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestartPathAny) RestartTime() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReduction represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReduction struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/config/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/hellos/config/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPathAny struct { *ygot.NodePath } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReduction { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReduction{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPath) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPath{ NodePath: ygot.NewNodePath( - []string{"state", "refresh-reduction"}, + []string{"config", "refresh-reduction"}, map[string]interface{}{}, n, ), } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionAny{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_HellosPathAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_Hellos_RefreshReductionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "refresh-reduction"}, + []string{"config", "refresh-reduction"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_Enable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_Enable struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeout represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/state/soft-preemption-timeout YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeout struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/config/soft-preemption-timeout YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/state/soft-preemption-timeout YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/global/soft-preemption/config/soft-preemption-timeout YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPathAny struct { *ygot.NodePath } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_Enable { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_Enable{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnableAny{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// SoftPreemptionTimeout returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption the path struct for its child "soft-preemption-timeout". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption) SoftPreemptionTimeout() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeout { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeout{ +// SoftPreemptionTimeout returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath the path struct for its child "soft-preemption-timeout". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPath) SoftPreemptionTimeout() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPath{ NodePath: ygot.NewNodePath( - []string{"state", "soft-preemption-timeout"}, + []string{"config", "soft-preemption-timeout"}, map[string]interface{}{}, n, ), } } -// SoftPreemptionTimeout returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny the path struct for its child "soft-preemption-timeout". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionAny) SoftPreemptionTimeout() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutAny{ +// SoftPreemptionTimeout returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny the path struct for its child "soft-preemption-timeout". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemptionPathAny) SoftPreemptionTimeout() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Global_SoftPreemption_SoftPreemptionTimeoutPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "soft-preemption-timeout"}, + []string{"config", "soft-preemption-timeout"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceId struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/max-link-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidth struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/max-link-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/max-link-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/max-link-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPathAny struct { *ygot.NodePath } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Authentication() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) Authentication() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -70840,9 +71054,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Authenticatio } } -// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "authentication". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny{ +// Authentication returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "authentication". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) Authentication() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -70851,9 +71065,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Authentica } } -// BandwidthReservationAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "bandwidth-reservation". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) BandwidthReservationAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny{ +// BandwidthReservationAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "bandwidth-reservation". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) BandwidthReservationAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-reservations", "bandwidth-reservation"}, map[string]interface{}{"priority": "*"}, @@ -70862,9 +71076,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) BandwidthRese } } -// BandwidthReservationAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "bandwidth-reservation". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) BandwidthReservationAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny{ +// BandwidthReservationAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "bandwidth-reservation". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) BandwidthReservationAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-reservations", "bandwidth-reservation"}, map[string]interface{}{"priority": "*"}, @@ -70873,9 +71087,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) BandwidthR } } -// BandwidthReservation returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "bandwidth-reservation". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) BandwidthReservation(Priority oc.NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority_Union) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation{ +// BandwidthReservation returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "bandwidth-reservation". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) BandwidthReservation(Priority NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority_Union) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath{ NodePath: ygot.NewNodePath( []string{"bandwidth-reservations", "bandwidth-reservation"}, map[string]interface{}{"priority": Priority}, @@ -70884,9 +71098,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) BandwidthRese } } -// BandwidthReservation returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "bandwidth-reservation". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) BandwidthReservation(Priority oc.NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority_Union) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny{ +// BandwidthReservation returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "bandwidth-reservation". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) BandwidthReservation(Priority NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority_Union) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-reservations", "bandwidth-reservation"}, map[string]interface{}{"priority": Priority}, @@ -70895,9 +71109,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) BandwidthR } } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -70906,9 +71120,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Counters() *N } } -// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "counters". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny{ +// Counters returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "counters". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) Counters() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -70917,9 +71131,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Counters() } } -// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "hellos". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos{ +// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "hellos". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath{ NodePath: ygot.NewNodePath( []string{"hellos"}, map[string]interface{}{}, @@ -70928,9 +71142,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Hellos() *Net } } -// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "hellos". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny{ +// Hellos returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "hellos". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) Hellos() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny{ NodePath: ygot.NewNodePath( []string{"hellos"}, map[string]interface{}{}, @@ -70939,31 +71153,31 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Hellos() * } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceId { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -70972,9 +71186,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) InterfaceRef( } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -70983,9 +71197,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) InterfaceR } } -// MaxLinkBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) MaxLinkBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidth { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidth{ +// MaxLinkBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) MaxLinkBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "max-link-bandwidth"}, map[string]interface{}{}, @@ -70994,9 +71208,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) MaxLinkBandwi } } -// MaxLinkBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) MaxLinkBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthAny{ +// MaxLinkBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) MaxLinkBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_MaxLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-link-bandwidth"}, map[string]interface{}{}, @@ -71005,9 +71219,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) MaxLinkBan } } -// Protection returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "protection". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Protection() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection{ +// Protection returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "protection". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) Protection() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath{ NodePath: ygot.NewNodePath( []string{"protection"}, map[string]interface{}{}, @@ -71016,9 +71230,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Protection() } } -// Protection returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "protection". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Protection() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny{ +// Protection returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "protection". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) Protection() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny{ NodePath: ygot.NewNodePath( []string{"protection"}, map[string]interface{}{}, @@ -71027,9 +71241,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Protection } } -// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface the path struct for its child "subscription". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription{ +// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath the path struct for its child "subscription". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePath) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath{ NodePath: ygot.NewNodePath( []string{"subscription"}, map[string]interface{}{}, @@ -71038,9 +71252,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface) Subscription( } } -// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny the path struct for its child "subscription". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny{ +// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny the path struct for its child "subscription". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfacePathAny) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny{ NodePath: ygot.NewNodePath( []string{"subscription"}, map[string]interface{}{}, @@ -71049,143 +71263,143 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_InterfaceAny) Subscripti } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKey represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKey struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/config/authentication-key YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_Enable represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_Enable struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/state/enable YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnableAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/authentication/config/enable YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePathAny struct { *ygot.NodePath } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKey { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKey{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny the path struct for its child "authentication-key". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyAny{ +// AuthenticationKey returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny the path struct for its child "authentication-key". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny) AuthenticationKey() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_AuthenticationKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-key"}, + []string{"config", "authentication-key"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_Enable { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_Enable{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPath) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny the path struct for its child "enable". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnableAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnableAny{ +// Enable returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny the path struct for its child "enable". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_AuthenticationPathAny) Enable() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Authentication_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCount represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/active-reservations-count YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCount struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/active-reservations-count YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/active-reservations-count YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/active-reservations-count YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/available-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidth struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/available-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/available-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/available-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMark represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/highwater-mark YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMark struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/highwater-mark YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/highwater-mark YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/highwater-mark YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/priority YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/priority YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/priority YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/priority YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/reserved-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidth struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/reserved-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/reserved-bandwidth YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/bandwidth-reservations/bandwidth-reservation/state/reserved-bandwidth YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPathAny struct { *ygot.NodePath } -// ActiveReservationsCount returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation the path struct for its child "active-reservations-count". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation) ActiveReservationsCount() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCount { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCount{ +// ActiveReservationsCount returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath the path struct for its child "active-reservations-count". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath) ActiveReservationsCount() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPath{ NodePath: ygot.NewNodePath( []string{"state", "active-reservations-count"}, map[string]interface{}{}, @@ -71194,9 +71408,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// ActiveReservationsCount returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny the path struct for its child "active-reservations-count". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny) ActiveReservationsCount() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountAny{ +// ActiveReservationsCount returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny the path struct for its child "active-reservations-count". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny) ActiveReservationsCount() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ActiveReservationsCountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-reservations-count"}, map[string]interface{}{}, @@ -71205,9 +71419,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// AvailableBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation) AvailableBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidth { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidth{ +// AvailableBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath) AvailableBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "available-bandwidth"}, map[string]interface{}{}, @@ -71216,9 +71430,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// AvailableBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny) AvailableBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthAny{ +// AvailableBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny) AvailableBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_AvailableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "available-bandwidth"}, map[string]interface{}{}, @@ -71227,9 +71441,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// HighwaterMark returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation the path struct for its child "highwater-mark". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation) HighwaterMark() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMark { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMark{ +// HighwaterMark returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath the path struct for its child "highwater-mark". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath) HighwaterMark() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPath{ NodePath: ygot.NewNodePath( []string{"state", "highwater-mark"}, map[string]interface{}{}, @@ -71238,9 +71452,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// HighwaterMark returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny the path struct for its child "highwater-mark". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny) HighwaterMark() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkAny{ +// HighwaterMark returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny the path struct for its child "highwater-mark". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny) HighwaterMark() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_HighwaterMarkPathAny{ NodePath: ygot.NewNodePath( []string{"state", "highwater-mark"}, map[string]interface{}{}, @@ -71249,9 +71463,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// Priority returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation the path struct for its child "priority". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation) Priority() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_Priority{ +// Priority returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath the path struct for its child "priority". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath) Priority() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -71260,9 +71474,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// Priority returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny the path struct for its child "priority". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny) Priority() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityAny{ +// Priority returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny the path struct for its child "priority". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny) Priority() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -71271,9 +71485,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// ReservedBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation the path struct for its child "reserved-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation) ReservedBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidth { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidth{ +// ReservedBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath the path struct for its child "reserved-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPath) ReservedBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "reserved-bandwidth"}, map[string]interface{}{}, @@ -71282,9 +71496,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// ReservedBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny the path struct for its child "reserved-bandwidth". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationAny) ReservedBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthAny{ +// ReservedBandwidth returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny the path struct for its child "reserved-bandwidth". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservationPathAny) ReservedBandwidth() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReservation_ReservedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reserved-bandwidth"}, map[string]interface{}{}, @@ -71293,209 +71507,209 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_BandwidthReser } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/in-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-ack-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-ack-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-hello-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-hello-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-path-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-error-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-error-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-tear-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-reservation-tear-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-srefresh-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/out-srefresh-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessages represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/rate-limited-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessages struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/rate-limited-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/rate-limited-messages YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/rate-limited-messages YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPathAny struct { *ygot.NodePath } -// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "errors". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors{ +// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "errors". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath{ NodePath: ygot.NewNodePath( []string{"errors"}, map[string]interface{}{}, @@ -71504,9 +71718,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) Erro } } -// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "errors". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny{ +// Errors returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "errors". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) Errors() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"errors"}, map[string]interface{}{}, @@ -71515,9 +71729,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) E } } -// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessages{ +// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-ack-messages"}, map[string]interface{}{}, @@ -71526,9 +71740,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InAc } } -// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesAny{ +// InAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InAckMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-ack-messages"}, map[string]interface{}{}, @@ -71537,9 +71751,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessages{ +// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-hello-messages"}, map[string]interface{}{}, @@ -71548,9 +71762,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InHe } } -// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesAny{ +// InHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InHelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-hello-messages"}, map[string]interface{}{}, @@ -71559,9 +71773,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessages{ +// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-error-messages"}, map[string]interface{}{}, @@ -71570,9 +71784,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPa } } -// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesAny{ +// InPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-error-messages"}, map[string]interface{}{}, @@ -71581,9 +71795,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessages{ +// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-messages"}, map[string]interface{}{}, @@ -71592,9 +71806,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPa } } -// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesAny{ +// InPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-messages"}, map[string]interface{}{}, @@ -71603,9 +71817,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessages{ +// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-path-tear-messages"}, map[string]interface{}{}, @@ -71614,9 +71828,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InPa } } -// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesAny{ +// InPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InPathTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-path-tear-messages"}, map[string]interface{}{}, @@ -71625,9 +71839,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessages{ +// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-error-messages"}, map[string]interface{}{}, @@ -71636,9 +71850,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InRe } } -// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesAny{ +// InReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-error-messages"}, map[string]interface{}{}, @@ -71647,9 +71861,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessages{ +// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-messages"}, map[string]interface{}{}, @@ -71658,9 +71872,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InRe } } -// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesAny{ +// InReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-messages"}, map[string]interface{}{}, @@ -71669,9 +71883,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessages{ +// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-reservation-tear-messages"}, map[string]interface{}{}, @@ -71680,9 +71894,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InRe } } -// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesAny{ +// InReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InReservationTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-reservation-tear-messages"}, map[string]interface{}{}, @@ -71691,9 +71905,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "in-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessages{ +// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "in-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPath{ NodePath: ygot.NewNodePath( []string{"in-srefresh-messages"}, map[string]interface{}{}, @@ -71702,9 +71916,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) InSr } } -// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "in-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesAny{ +// InSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "in-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) InSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_InSrefreshMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"in-srefresh-messages"}, map[string]interface{}{}, @@ -71713,9 +71927,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) I } } -// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessages{ +// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-ack-messages"}, map[string]interface{}{}, @@ -71724,9 +71938,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutA } } -// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-ack-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesAny{ +// OutAckMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-ack-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutAckMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutAckMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-ack-messages"}, map[string]interface{}{}, @@ -71735,9 +71949,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessages{ +// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-hello-messages"}, map[string]interface{}{}, @@ -71746,9 +71960,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutH } } -// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-hello-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesAny{ +// OutHelloMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-hello-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutHelloMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutHelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-hello-messages"}, map[string]interface{}{}, @@ -71757,9 +71971,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessages{ +// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-error-messages"}, map[string]interface{}{}, @@ -71768,9 +71982,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutP } } -// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-path-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesAny{ +// OutPathErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-path-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutPathErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-error-messages"}, map[string]interface{}{}, @@ -71779,9 +71993,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessages{ +// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-messages"}, map[string]interface{}{}, @@ -71790,9 +72004,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutP } } -// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-path-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesAny{ +// OutPathMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-path-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutPathMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-messages"}, map[string]interface{}{}, @@ -71801,9 +72015,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessages{ +// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-path-tear-messages"}, map[string]interface{}{}, @@ -71812,9 +72026,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutP } } -// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-path-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesAny{ +// OutPathTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-path-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutPathTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutPathTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-path-tear-messages"}, map[string]interface{}{}, @@ -71823,9 +72037,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessages{ +// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-error-messages"}, map[string]interface{}{}, @@ -71834,9 +72048,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutR } } -// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-reservation-error-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesAny{ +// OutReservationErrorMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-reservation-error-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutReservationErrorMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationErrorMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-error-messages"}, map[string]interface{}{}, @@ -71845,9 +72059,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessages{ +// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-messages"}, map[string]interface{}{}, @@ -71856,9 +72070,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutR } } -// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-reservation-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesAny{ +// OutReservationMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-reservation-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutReservationMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-messages"}, map[string]interface{}{}, @@ -71867,9 +72081,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessages{ +// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-reservation-tear-messages"}, map[string]interface{}{}, @@ -71878,9 +72092,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutR } } -// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-reservation-tear-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesAny{ +// OutReservationTearMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-reservation-tear-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutReservationTearMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutReservationTearMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-reservation-tear-messages"}, map[string]interface{}{}, @@ -71889,9 +72103,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "out-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessages{ +// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "out-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPath{ NodePath: ygot.NewNodePath( []string{"out-srefresh-messages"}, map[string]interface{}{}, @@ -71900,9 +72114,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) OutS } } -// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "out-srefresh-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesAny{ +// OutSrefreshMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "out-srefresh-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) OutSrefreshMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_OutSrefreshMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"out-srefresh-messages"}, map[string]interface{}{}, @@ -71911,9 +72125,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) O } } -// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters the path struct for its child "rate-limited-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessages { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessages{ +// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath the path struct for its child "rate-limited-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPath) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPath{ NodePath: ygot.NewNodePath( []string{"rate-limited-messages"}, map[string]interface{}{}, @@ -71922,9 +72136,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters) Rate } } -// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny the path struct for its child "rate-limited-messages". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesAny{ +// RateLimitedMessages returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny the path struct for its child "rate-limited-messages". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersPathAny) RateLimitedMessages() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_RateLimitedMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"rate-limited-messages"}, map[string]interface{}{}, @@ -71933,119 +72147,119 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_CountersAny) R } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFail represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/authentication-fail YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFail struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/authentication-fail YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/authentication-fail YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/authentication-fail YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksum represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-checksum YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksum struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-checksum YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-checksum YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-checksum YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormat represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-format YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormat struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-format YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-format YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-format YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLength represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-length YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLength struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-length YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-length YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/bad-packet-length YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrder represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/out-of-order YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrder struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/out-of-order YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/out-of-order YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/out-of-order YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNack represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/received-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNack struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/received-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/received-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/received-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailure represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-failure YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailure struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-failure YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailureAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-failure YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailureAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-failure YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFull represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-queue-full YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFull struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-queue-full YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-queue-full YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/transmit-queue-full YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAck represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-ack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAck struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-ack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-ack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-ack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNack represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNack struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-nack YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/state/counters/errors/unknown-nack YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPathAny struct { *ygot.NodePath } -// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "authentication-fail". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFail { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFail{ +// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "authentication-fail". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPath{ NodePath: ygot.NewNodePath( []string{"authentication-fail"}, map[string]interface{}{}, @@ -72054,9 +72268,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "authentication-fail". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailAny{ +// AuthenticationFail returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "authentication-fail". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) AuthenticationFail() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_AuthenticationFailPathAny{ NodePath: ygot.NewNodePath( []string{"authentication-fail"}, map[string]interface{}{}, @@ -72065,9 +72279,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "bad-checksum". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksum { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksum{ +// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "bad-checksum". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPath{ NodePath: ygot.NewNodePath( []string{"bad-checksum"}, map[string]interface{}{}, @@ -72076,9 +72290,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "bad-checksum". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumAny{ +// BadChecksum returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "bad-checksum". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) BadChecksum() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadChecksumPathAny{ NodePath: ygot.NewNodePath( []string{"bad-checksum"}, map[string]interface{}{}, @@ -72087,9 +72301,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "bad-packet-format". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormat { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormat{ +// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "bad-packet-format". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPath{ NodePath: ygot.NewNodePath( []string{"bad-packet-format"}, map[string]interface{}{}, @@ -72098,9 +72312,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "bad-packet-format". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatAny{ +// BadPacketFormat returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "bad-packet-format". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) BadPacketFormat() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketFormatPathAny{ NodePath: ygot.NewNodePath( []string{"bad-packet-format"}, map[string]interface{}{}, @@ -72109,9 +72323,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "bad-packet-length". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLength { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLength{ +// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "bad-packet-length". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPath{ NodePath: ygot.NewNodePath( []string{"bad-packet-length"}, map[string]interface{}{}, @@ -72120,9 +72334,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "bad-packet-length". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthAny{ +// BadPacketLength returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "bad-packet-length". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) BadPacketLength() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_BadPacketLengthPathAny{ NodePath: ygot.NewNodePath( []string{"bad-packet-length"}, map[string]interface{}{}, @@ -72131,9 +72345,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "out-of-order". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrder { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrder{ +// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "out-of-order". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPath{ NodePath: ygot.NewNodePath( []string{"out-of-order"}, map[string]interface{}{}, @@ -72142,9 +72356,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "out-of-order". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderAny{ +// OutOfOrder returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "out-of-order". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) OutOfOrder() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_OutOfOrderPathAny{ NodePath: ygot.NewNodePath( []string{"out-of-order"}, map[string]interface{}{}, @@ -72153,9 +72367,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "received-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNack { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNack{ +// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "received-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPath{ NodePath: ygot.NewNodePath( []string{"received-nack"}, map[string]interface{}{}, @@ -72164,9 +72378,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "received-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackAny{ +// ReceivedNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "received-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) ReceivedNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_ReceivedNackPathAny{ NodePath: ygot.NewNodePath( []string{"received-nack"}, map[string]interface{}{}, @@ -72175,9 +72389,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "transmit-failure". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailure { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailure{ +// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "transmit-failure". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePath{ NodePath: ygot.NewNodePath( []string{"transmit-failure"}, map[string]interface{}{}, @@ -72186,9 +72400,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "transmit-failure". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailureAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailureAny{ +// TransmitFailure returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "transmit-failure". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) TransmitFailure() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitFailurePathAny{ NodePath: ygot.NewNodePath( []string{"transmit-failure"}, map[string]interface{}{}, @@ -72197,9 +72411,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "transmit-queue-full". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFull { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFull{ +// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "transmit-queue-full". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPath{ NodePath: ygot.NewNodePath( []string{"transmit-queue-full"}, map[string]interface{}{}, @@ -72208,9 +72422,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "transmit-queue-full". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullAny{ +// TransmitQueueFull returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "transmit-queue-full". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) TransmitQueueFull() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_TransmitQueueFullPathAny{ NodePath: ygot.NewNodePath( []string{"transmit-queue-full"}, map[string]interface{}{}, @@ -72219,9 +72433,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "unknown-ack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAck { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAck{ +// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "unknown-ack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPath{ NodePath: ygot.NewNodePath( []string{"unknown-ack"}, map[string]interface{}{}, @@ -72230,9 +72444,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "unknown-ack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckAny{ +// UnknownAck returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "unknown-ack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) UnknownAck() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownAckPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-ack"}, map[string]interface{}{}, @@ -72241,9 +72455,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors the path struct for its child "unknown-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNack { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNack{ +// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath the path struct for its child "unknown-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPath) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPath{ NodePath: ygot.NewNodePath( []string{"unknown-nack"}, map[string]interface{}{}, @@ -72252,9 +72466,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny the path struct for its child "unknown-nack". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsAny) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackAny{ +// UnknownNack returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny the path struct for its child "unknown-nack". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_ErrorsPathAny) UnknownNack() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Errors_UnknownNackPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-nack"}, map[string]interface{}{}, @@ -72263,261 +72477,261 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Counters_Error } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/state/hello-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/config/hello-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReduction represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReduction struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/config/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/hellos/config/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPathAny struct { *ygot.NodePath } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloInterval { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloInterval{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny) HelloInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReduction { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReduction{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPath) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPath{ NodePath: ygot.NewNodePath( - []string{"state", "refresh-reduction"}, + []string{"config", "refresh-reduction"}, map[string]interface{}{}, n, ), } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionAny{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_HellosPathAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Hellos_RefreshReductionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "refresh-reduction"}, + []string{"config", "refresh-reduction"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef) Interface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath) Interface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeInterval represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/state/bypass-optimize-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeInterval struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/config/bypass-optimize-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/state/bypass-optimize-interval YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/config/bypass-optimize-interval YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequested represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/state/link-protection-style-requested YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequested struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/config/link-protection-style-requested YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/state/link-protection-style-requested YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/protection/config/link-protection-style-requested YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPathAny struct { *ygot.NodePath } -// BypassOptimizeInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection the path struct for its child "bypass-optimize-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection) BypassOptimizeInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeInterval { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeInterval{ +// BypassOptimizeInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath the path struct for its child "bypass-optimize-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath) BypassOptimizeInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "bypass-optimize-interval"}, + []string{"config", "bypass-optimize-interval"}, map[string]interface{}{}, n, ), } } -// BypassOptimizeInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny the path struct for its child "bypass-optimize-interval". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny) BypassOptimizeInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalAny{ +// BypassOptimizeInterval returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny the path struct for its child "bypass-optimize-interval". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny) BypassOptimizeInterval() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_BypassOptimizeIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bypass-optimize-interval"}, + []string{"config", "bypass-optimize-interval"}, map[string]interface{}{}, n, ), } } -// LinkProtectionStyleRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection the path struct for its child "link-protection-style-requested". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection) LinkProtectionStyleRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequested { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequested{ +// LinkProtectionStyleRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath the path struct for its child "link-protection-style-requested". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPath) LinkProtectionStyleRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPath{ NodePath: ygot.NewNodePath( - []string{"state", "link-protection-style-requested"}, + []string{"config", "link-protection-style-requested"}, map[string]interface{}{}, n, ), } } -// LinkProtectionStyleRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny the path struct for its child "link-protection-style-requested". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionAny) LinkProtectionStyleRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedAny{ +// LinkProtectionStyleRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny the path struct for its child "link-protection-style-requested". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_ProtectionPathAny) LinkProtectionStyleRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Protection_LinkProtectionStyleRequestedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-protection-style-requested"}, + []string{"config", "link-protection-style-requested"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBw represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/calculated-absolute-subscription-bw YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBw struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/calculated-absolute-subscription-bw YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/calculated-absolute-subscription-bw YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/calculated-absolute-subscription-bw YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_Subscription represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/subscription YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_Subscription struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/config/subscription YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/state/subscription YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/interface-attributes/interface/subscription/config/subscription YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPathAny struct { *ygot.NodePath } -// CalculatedAbsoluteSubscriptionBw returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription the path struct for its child "calculated-absolute-subscription-bw". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription) CalculatedAbsoluteSubscriptionBw() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBw { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBw{ +// CalculatedAbsoluteSubscriptionBw returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath the path struct for its child "calculated-absolute-subscription-bw". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath) CalculatedAbsoluteSubscriptionBw() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPath{ NodePath: ygot.NewNodePath( []string{"state", "calculated-absolute-subscription-bw"}, map[string]interface{}{}, @@ -72526,9 +72740,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription) } } -// CalculatedAbsoluteSubscriptionBw returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny the path struct for its child "calculated-absolute-subscription-bw". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny) CalculatedAbsoluteSubscriptionBw() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwAny{ +// CalculatedAbsoluteSubscriptionBw returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny the path struct for its child "calculated-absolute-subscription-bw". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny) CalculatedAbsoluteSubscriptionBw() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_CalculatedAbsoluteSubscriptionBwPathAny{ NodePath: ygot.NewNodePath( []string{"state", "calculated-absolute-subscription-bw"}, map[string]interface{}{}, @@ -72537,81 +72751,81 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAn } } -// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription the path struct for its child "subscription". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_Subscription { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_Subscription{ +// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath the path struct for its child "subscription". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPath) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "subscription"}, + []string{"config", "subscription"}, map[string]interface{}{}, n, ), } } -// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny the path struct for its child "subscription". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionAny) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionAny{ +// Subscription returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny the path struct for its child "subscription". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_SubscriptionPathAny) Subscription() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Interface_Subscription_SubscriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subscription"}, + []string{"config", "subscription"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_Address represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_Address struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/detected-interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterface struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/detected-interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/detected-interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/detected-interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatus represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/neighbor-status YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatus struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/neighbor-status YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/neighbor-status YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/neighbor-status YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReduction represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReduction struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/refresh-reduction YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/neighbors/neighbor/state/refresh-reduction YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor the path struct for its child "address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_Address { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_Address{ +// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath the path struct for its child "address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -72620,9 +72834,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) Address() *Net } } -// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny the path struct for its child "address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressAny{ +// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny the path struct for its child "address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -72631,9 +72845,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) Address() * } } -// DetectedInterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor the path struct for its child "detected-interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) DetectedInterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterface { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterface{ +// DetectedInterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath the path struct for its child "detected-interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath) DetectedInterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "detected-interface"}, map[string]interface{}{}, @@ -72642,9 +72856,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) DetectedInterf } } -// DetectedInterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny the path struct for its child "detected-interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) DetectedInterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfaceAny{ +// DetectedInterface returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny the path struct for its child "detected-interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny) DetectedInterface() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_DetectedInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "detected-interface"}, map[string]interface{}{}, @@ -72653,9 +72867,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) DetectedInt } } -// NeighborStatus returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor the path struct for its child "neighbor-status". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) NeighborStatus() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatus { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatus{ +// NeighborStatus returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath the path struct for its child "neighbor-status". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath) NeighborStatus() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-status"}, map[string]interface{}{}, @@ -72664,9 +72878,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) NeighborStatus } } -// NeighborStatus returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny the path struct for its child "neighbor-status". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) NeighborStatus() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusAny{ +// NeighborStatus returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny the path struct for its child "neighbor-status". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny) NeighborStatus() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_NeighborStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-status"}, map[string]interface{}{}, @@ -72675,9 +72889,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) NeighborSta } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReduction { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReduction{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPath) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPath{ NodePath: ygot.NewNodePath( []string{"state", "refresh-reduction"}, map[string]interface{}{}, @@ -72686,9 +72900,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor) RefreshReducti } } -// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny the path struct for its child "refresh-reduction". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionAny{ +// RefreshReduction returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny the path struct for its child "refresh-reduction". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborPathAny) RefreshReduction() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Neighbor_RefreshReductionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "refresh-reduction"}, map[string]interface{}{}, @@ -72697,129 +72911,129 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_NeighborAny) RefreshRedu } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/destination-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/destination-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/destination-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/destination-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelIn represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-in YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelIn struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-in YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-in YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-in YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOut represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-out YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOut struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-out YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-out YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/label-out YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndex represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/local-index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndex struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/local-index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/local-index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/local-index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/lsp-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspId struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/lsp-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/lsp-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/lsp-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequested represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/protection-requested YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequested struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/protection-requested YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/protection-requested YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/protection-requested YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionName represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/session-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionName struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/session-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/session-name YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNameAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/session-name YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/source-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddress struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/source-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/source-address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/source-address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Status represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/status YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Status struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/status YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/status YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/status YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/tunnel-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelId struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/tunnel-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/tunnel-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/tunnel-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Type represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Type struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePathAny struct { *ygot.NodePath } -// DestinationAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "destination-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) DestinationAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddress { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddress{ +// DestinationAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "destination-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) DestinationAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "destination-address"}, map[string]interface{}{}, @@ -72828,9 +73042,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) DestinationAddr } } -// DestinationAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "destination-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) DestinationAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressAny{ +// DestinationAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "destination-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) DestinationAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_DestinationAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "destination-address"}, map[string]interface{}{}, @@ -72839,9 +73053,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) DestinationA } } -// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ExplicitRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny{ +// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) ExplicitRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": "*"}, @@ -72850,9 +73064,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ExplicitRouteOb } } -// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ExplicitRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny{ +// ExplicitRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) ExplicitRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": "*"}, @@ -72861,9 +73075,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ExplicitRout } } -// ExplicitRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ExplicitRouteObject(Index uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject{ +// ExplicitRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) ExplicitRouteObject(Index uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": Index}, @@ -72872,9 +73086,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ExplicitRouteOb } } -// ExplicitRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "explicit-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ExplicitRouteObject(Index uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny{ +// ExplicitRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "explicit-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) ExplicitRouteObject(Index uint64) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"explicit-route-objects", "explicit-route-object"}, map[string]interface{}{"index": Index}, @@ -72883,9 +73097,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ExplicitRout } } -// LabelIn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "label-in". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LabelIn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelIn { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelIn{ +// LabelIn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "label-in". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) LabelIn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPath{ NodePath: ygot.NewNodePath( []string{"state", "label-in"}, map[string]interface{}{}, @@ -72894,9 +73108,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LabelIn() *Netw } } -// LabelIn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "label-in". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LabelIn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInAny{ +// LabelIn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "label-in". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) LabelIn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelInPathAny{ NodePath: ygot.NewNodePath( []string{"state", "label-in"}, map[string]interface{}{}, @@ -72905,9 +73119,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LabelIn() *N } } -// LabelOut returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "label-out". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LabelOut() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOut { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOut{ +// LabelOut returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "label-out". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) LabelOut() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPath{ NodePath: ygot.NewNodePath( []string{"state", "label-out"}, map[string]interface{}{}, @@ -72916,9 +73130,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LabelOut() *Net } } -// LabelOut returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "label-out". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LabelOut() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutAny{ +// LabelOut returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "label-out". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) LabelOut() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LabelOutPathAny{ NodePath: ygot.NewNodePath( []string{"state", "label-out"}, map[string]interface{}{}, @@ -72927,9 +73141,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LabelOut() * } } -// LocalIndex returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "local-index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LocalIndex() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndex { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndex{ +// LocalIndex returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "local-index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) LocalIndex() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "local-index"}, map[string]interface{}{}, @@ -72938,9 +73152,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LocalIndex() *N } } -// LocalIndex returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "local-index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LocalIndex() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexAny{ +// LocalIndex returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "local-index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) LocalIndex() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LocalIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-index"}, map[string]interface{}{}, @@ -72949,9 +73163,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LocalIndex() } } -// LspId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "lsp-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LspId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspId { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspId{ +// LspId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "lsp-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) LspId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPath{ NodePath: ygot.NewNodePath( []string{"state", "lsp-id"}, map[string]interface{}{}, @@ -72960,9 +73174,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) LspId() *Networ } } -// LspId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "lsp-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LspId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdAny{ +// LspId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "lsp-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) LspId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_LspIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "lsp-id"}, map[string]interface{}{}, @@ -72971,9 +73185,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) LspId() *Net } } -// ProtectionRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "protection-requested". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ProtectionRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequested { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequested{ +// ProtectionRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "protection-requested". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) ProtectionRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPath{ NodePath: ygot.NewNodePath( []string{"state", "protection-requested"}, map[string]interface{}{}, @@ -72982,9 +73196,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) ProtectionReque } } -// ProtectionRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "protection-requested". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ProtectionRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedAny{ +// ProtectionRequested returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "protection-requested". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) ProtectionRequested() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ProtectionRequestedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "protection-requested"}, map[string]interface{}{}, @@ -72993,9 +73207,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) ProtectionRe } } -// RecordRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "record-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) RecordRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny{ +// RecordRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "record-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) RecordRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"record-route-objects", "record-route-object"}, map[string]interface{}{"index": "*"}, @@ -73004,9 +73218,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) RecordRouteObje } } -// RecordRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "record-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) RecordRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny{ +// RecordRouteObjectAny returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "record-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) RecordRouteObjectAny() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"record-route-objects", "record-route-object"}, map[string]interface{}{"index": "*"}, @@ -73015,9 +73229,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) RecordRouteO } } -// RecordRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "record-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) RecordRouteObject(Index uint8) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject{ +// RecordRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "record-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) RecordRouteObject(Index uint8) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath{ NodePath: ygot.NewNodePath( []string{"record-route-objects", "record-route-object"}, map[string]interface{}{"index": Index}, @@ -73026,9 +73240,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) RecordRouteObje } } -// RecordRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "record-route-object". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) RecordRouteObject(Index uint8) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny{ +// RecordRouteObject returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "record-route-object". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) RecordRouteObject(Index uint8) *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny{ NodePath: ygot.NewNodePath( []string{"record-route-objects", "record-route-object"}, map[string]interface{}{"index": Index}, @@ -73037,9 +73251,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) RecordRouteO } } -// SenderTspec returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "sender-tspec". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SenderTspec() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec{ +// SenderTspec returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "sender-tspec". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) SenderTspec() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath{ NodePath: ygot.NewNodePath( []string{"state", "sender-tspec"}, map[string]interface{}{}, @@ -73048,9 +73262,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SenderTspec() * } } -// SenderTspec returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "sender-tspec". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SenderTspec() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny{ +// SenderTspec returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "sender-tspec". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) SenderTspec() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sender-tspec"}, map[string]interface{}{}, @@ -73059,9 +73273,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SenderTspec( } } -// SessionName returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "session-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SessionName() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionName { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionName{ +// SessionName returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "session-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) SessionName() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePath{ NodePath: ygot.NewNodePath( []string{"state", "session-name"}, map[string]interface{}{}, @@ -73070,9 +73284,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SessionName() * } } -// SessionName returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "session-name". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SessionName() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNameAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNameAny{ +// SessionName returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "session-name". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) SessionName() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SessionNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "session-name"}, map[string]interface{}{}, @@ -73081,9 +73295,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SessionName( } } -// SourceAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "source-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SourceAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddress { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddress{ +// SourceAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "source-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) SourceAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "source-address"}, map[string]interface{}{}, @@ -73092,9 +73306,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) SourceAddress() } } -// SourceAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "source-address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SourceAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressAny{ +// SourceAddress returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "source-address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) SourceAddress() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SourceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "source-address"}, map[string]interface{}{}, @@ -73103,9 +73317,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) SourceAddres } } -// Status returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "status". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) Status() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Status { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Status{ +// Status returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "status". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) Status() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPath{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -73114,9 +73328,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) Status() *Netwo } } -// Status returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "status". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) Status() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusAny{ +// Status returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "status". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) Status() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_StatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "status"}, map[string]interface{}{}, @@ -73125,9 +73339,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) Status() *Ne } } -// TunnelId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "tunnel-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) TunnelId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelId { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelId{ +// TunnelId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "tunnel-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) TunnelId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPath{ NodePath: ygot.NewNodePath( []string{"state", "tunnel-id"}, map[string]interface{}{}, @@ -73136,9 +73350,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) TunnelId() *Net } } -// TunnelId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "tunnel-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) TunnelId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdAny{ +// TunnelId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "tunnel-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) TunnelId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TunnelIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tunnel-id"}, map[string]interface{}{}, @@ -73147,9 +73361,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) TunnelId() * } } -// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session the path struct for its child "type". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Type { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_Type{ +// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath the path struct for its child "type". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPath) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -73158,9 +73372,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session) Type() *Network } } -// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny the path struct for its child "type". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypeAny{ +// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny the path struct for its child "type". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionPathAny) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -73169,89 +73383,89 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_SessionAny) Type() *Netw } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Asn represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/asn YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Asn struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/asn YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/asn YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/asn YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Index represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Index struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceId struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefix represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/ip-prefix YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefix struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/ip-prefix YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/ip-prefix YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/ip-prefix YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Label represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Label struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Loose represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/loose YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Loose struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/loose YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LooseAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/loose YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LooseAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/loose YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Type represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Type struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/type YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/explicit-route-objects/explicit-route-object/state/type YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePathAny struct { *ygot.NodePath } -// Asn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "asn". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) Asn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Asn { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Asn{ +// Asn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "asn". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) Asn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPath{ NodePath: ygot.NewNodePath( []string{"state", "asn"}, map[string]interface{}{}, @@ -73260,9 +73474,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Asn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "asn". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) Asn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnAny{ +// Asn returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "asn". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) Asn() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_AsnPathAny{ NodePath: ygot.NewNodePath( []string{"state", "asn"}, map[string]interface{}{}, @@ -73271,9 +73485,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Index { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Index{ +// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -73282,9 +73496,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexAny{ +// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -73293,9 +73507,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceId { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "interface-id"}, map[string]interface{}{}, @@ -73304,9 +73518,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface-id"}, map[string]interface{}{}, @@ -73315,9 +73529,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// IpPrefix returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "ip-prefix". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) IpPrefix() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefix { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefix{ +// IpPrefix returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "ip-prefix". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) IpPrefix() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "ip-prefix"}, map[string]interface{}{}, @@ -73326,9 +73540,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// IpPrefix returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "ip-prefix". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) IpPrefix() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixAny{ +// IpPrefix returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "ip-prefix". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) IpPrefix() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_IpPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ip-prefix"}, map[string]interface{}{}, @@ -73337,9 +73551,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Label returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "label". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) Label() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Label { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Label{ +// Label returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "label". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) Label() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPath{ NodePath: ygot.NewNodePath( []string{"state", "label"}, map[string]interface{}{}, @@ -73348,9 +73562,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Label returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "label". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) Label() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelAny{ +// Label returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "label". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) Label() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LabelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "label"}, map[string]interface{}{}, @@ -73359,9 +73573,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Loose returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "loose". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) Loose() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Loose { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Loose{ +// Loose returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "loose". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) Loose() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePath{ NodePath: ygot.NewNodePath( []string{"state", "loose"}, map[string]interface{}{}, @@ -73370,9 +73584,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Loose returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "loose". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) Loose() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LooseAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LooseAny{ +// Loose returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "loose". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) Loose() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_LoosePathAny{ NodePath: ygot.NewNodePath( []string{"state", "loose"}, map[string]interface{}{}, @@ -73381,9 +73595,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject the path struct for its child "type". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Type { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_Type{ +// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath the path struct for its child "type". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPath) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -73392,9 +73606,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny the path struct for its child "type". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectAny) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypeAny{ +// Type returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny the path struct for its child "type". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObjectPathAny) Type() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObject_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -73403,59 +73617,59 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_ExplicitRouteObj } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Address represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Address struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/address YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/address YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Index represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Index struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/index YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/index YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlags represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-flags YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlags struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-flags YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-flags YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-flags YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabel struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/record-route-objects/record-route-object/state/reported-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject the path struct for its child "address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Address { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Address{ +// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath the path struct for its child "address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -73464,9 +73678,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny the path struct for its child "address". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressAny{ +// Address returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny the path struct for its child "address". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny) Address() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -73475,9 +73689,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject the path struct for its child "index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Index { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_Index{ +// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath the path struct for its child "index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -73486,9 +73700,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny the path struct for its child "index". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexAny{ +// Index returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny the path struct for its child "index". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny) Index() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -73497,9 +73711,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// ReportedFlags returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject the path struct for its child "reported-flags". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject) ReportedFlags() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlags { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlags{ +// ReportedFlags returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath the path struct for its child "reported-flags". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath) ReportedFlags() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "reported-flags"}, map[string]interface{}{}, @@ -73508,9 +73722,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// ReportedFlags returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny the path struct for its child "reported-flags". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny) ReportedFlags() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsAny{ +// ReportedFlags returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny the path struct for its child "reported-flags". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny) ReportedFlags() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedFlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reported-flags"}, map[string]interface{}{}, @@ -73519,9 +73733,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// ReportedLabel returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject the path struct for its child "reported-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject) ReportedLabel() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabel { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabel{ +// ReportedLabel returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath the path struct for its child "reported-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPath) ReportedLabel() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPath{ NodePath: ygot.NewNodePath( []string{"state", "reported-label"}, map[string]interface{}{}, @@ -73530,9 +73744,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// ReportedLabel returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny the path struct for its child "reported-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectAny) ReportedLabel() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelAny{ +// ReportedLabel returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny the path struct for its child "reported-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjectPathAny) ReportedLabel() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObject_ReportedLabelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reported-label"}, map[string]interface{}{}, @@ -73541,49 +73755,49 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_RecordRouteObjec } } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRate represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/peak-data-rate YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRate struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/peak-data-rate YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/peak-data-rate YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRateAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/peak-data-rate YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Rate represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/rate YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Rate struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/rate YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/rate YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RateAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/rate YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Size represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/size YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Size struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/size YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/size YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizeAny struct { +// NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/rsvp-te/sessions/session/state/sender-tspec/size YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePathAny struct { *ygot.NodePath } -// PeakDataRate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec the path struct for its child "peak-data-rate". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) PeakDataRate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRate { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRate{ +// PeakDataRate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath the path struct for its child "peak-data-rate". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath) PeakDataRate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePath{ NodePath: ygot.NewNodePath( []string{"peak-data-rate"}, map[string]interface{}{}, @@ -73592,9 +73806,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) Pea } } -// PeakDataRate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny the path struct for its child "peak-data-rate". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) PeakDataRate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRateAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRateAny{ +// PeakDataRate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny the path struct for its child "peak-data-rate". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny) PeakDataRate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_PeakDataRatePathAny{ NodePath: ygot.NewNodePath( []string{"peak-data-rate"}, map[string]interface{}{}, @@ -73603,9 +73817,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) } } -// Rate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec the path struct for its child "rate". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) Rate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Rate { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Rate{ +// Rate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath the path struct for its child "rate". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath) Rate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePath{ NodePath: ygot.NewNodePath( []string{"rate"}, map[string]interface{}{}, @@ -73614,9 +73828,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) Rat } } -// Rate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny the path struct for its child "rate". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) Rate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RateAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RateAny{ +// Rate returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny the path struct for its child "rate". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny) Rate() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_RatePathAny{ NodePath: ygot.NewNodePath( []string{"rate"}, map[string]interface{}{}, @@ -73625,9 +73839,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) } } -// Size returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec the path struct for its child "size". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) Size() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Size { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_Size{ +// Size returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath the path struct for its child "size". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPath) Size() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePath { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePath{ NodePath: ygot.NewNodePath( []string{"size"}, map[string]interface{}{}, @@ -73636,9 +73850,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec) Siz } } -// Size returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny the path struct for its child "size". -func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) Size() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizeAny { - return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizeAny{ +// Size returns from NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny the path struct for its child "size". +func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecPathAny) Size() *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspec_SizePathAny{ NodePath: ygot.NewNodePath( []string{"size"}, map[string]interface{}{}, @@ -73647,19 +73861,19 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_RsvpTe_Session_SenderTspecAny) } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny struct { *ygot.NodePath } -// AggregateSidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting the path struct for its child "aggregate-sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) AggregateSidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny{ +// AggregateSidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath the path struct for its child "aggregate-sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath) AggregateSidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"aggregate-sid-counters", "aggregate-sid-counter"}, map[string]interface{}{"mpls-label": "*"}, @@ -73668,9 +73882,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) AggregateSidCou } } -// AggregateSidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny the path struct for its child "aggregate-sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) AggregateSidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny{ +// AggregateSidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny the path struct for its child "aggregate-sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny) AggregateSidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"aggregate-sid-counters", "aggregate-sid-counter"}, map[string]interface{}{"mpls-label": "*"}, @@ -73679,9 +73893,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) AggregateSid } } -// AggregateSidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting the path struct for its child "aggregate-sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) AggregateSidCounter(MplsLabel oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter{ +// AggregateSidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath the path struct for its child "aggregate-sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath) AggregateSidCounter(MplsLabel NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath{ NodePath: ygot.NewNodePath( []string{"aggregate-sid-counters", "aggregate-sid-counter"}, map[string]interface{}{"mpls-label": MplsLabel}, @@ -73690,9 +73904,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) AggregateSidCou } } -// AggregateSidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny the path struct for its child "aggregate-sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) AggregateSidCounter(MplsLabel oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny{ +// AggregateSidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny the path struct for its child "aggregate-sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny) AggregateSidCounter(MplsLabel NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"aggregate-sid-counters", "aggregate-sid-counter"}, map[string]interface{}{"mpls-label": MplsLabel}, @@ -73701,9 +73915,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) AggregateSid } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -73712,9 +73926,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) InterfaceAny() } } -// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny) InterfaceAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -73723,9 +73937,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) InterfaceAny } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPath) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -73734,9 +73948,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting) Interface(Inter } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingPathAny) Interface(InterfaceId string) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -73745,69 +73959,69 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRoutingAny) Interface(In } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/mpls-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/mpls-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/mpls-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/mpls-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/aggregate-sid-counters/aggregate-sid-counter/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPathAny struct { *ygot.NodePath } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctets{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -73816,9 +74030,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsAny{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -73827,9 +74041,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPkts{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -73838,9 +74052,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsAny{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -73849,9 +74063,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter the path struct for its child "mpls-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabel{ +// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath the path struct for its child "mpls-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-label"}, map[string]interface{}{}, @@ -73860,9 +74074,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny the path struct for its child "mpls-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelAny{ +// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny the path struct for its child "mpls-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_MplsLabelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-label"}, map[string]interface{}{}, @@ -73871,9 +74085,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctets{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -73882,9 +74096,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsAny{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -73893,9 +74107,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPkts{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPath) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -73904,9 +74118,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsAny{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounterPathAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCounter_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -73915,69 +74129,69 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_AggregateSidCoun } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceId struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPathAny struct { *ygot.NodePath } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctets{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -73986,9 +74200,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InOct } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsAny{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -73997,9 +74211,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) In } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPkts{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74008,9 +74222,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InPkt } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsAny{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74019,31 +74233,31 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) In } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceId { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) InterfaceId() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -74052,9 +74266,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) Inter } } -// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) InterfaceRef() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -74063,9 +74277,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) In } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctets{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74074,9 +74288,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) OutOc } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsAny{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74085,9 +74299,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) Ou } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPkts{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74096,9 +74310,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) OutPk } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsAny{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74107,9 +74321,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) Ou } } -// SidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) SidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny{ +// SidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) SidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"sid-counters", "sid-counter"}, map[string]interface{}{"mpls-label": "*"}, @@ -74118,9 +74332,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) SidCo } } -// SidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) SidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny{ +// SidCounterAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) SidCounterAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"sid-counters", "sid-counter"}, map[string]interface{}{"mpls-label": "*"}, @@ -74129,9 +74343,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) Si } } -// SidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface the path struct for its child "sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) SidCounter(MplsLabel oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter{ +// SidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath the path struct for its child "sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePath) SidCounter(MplsLabel NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath{ NodePath: ygot.NewNodePath( []string{"sid-counters", "sid-counter"}, map[string]interface{}{"mpls-label": MplsLabel}, @@ -74140,9 +74354,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface) SidCo } } -// SidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny the path struct for its child "sid-counter". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) SidCounter(MplsLabel oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny{ +// SidCounter returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny the path struct for its child "sid-counter". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfacePathAny) SidCounter(MplsLabel NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny{ NodePath: ygot.NewNodePath( []string{"sid-counters", "sid-counter"}, map[string]interface{}{"mpls-label": MplsLabel}, @@ -74151,143 +74365,143 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_InterfaceAny) Si } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef) Interface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Interface { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath) Interface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/mpls-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/mpls-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/mpls-label YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/mpls-label YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPathAny struct { *ygot.NodePath } -// ForwardingClassAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "forwarding-class". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) ForwardingClassAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny{ +// ForwardingClassAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "forwarding-class". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) ForwardingClassAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny{ NodePath: ygot.NewNodePath( []string{"forwarding-classes", "forwarding-class"}, map[string]interface{}{"exp": "*"}, @@ -74296,9 +74510,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// ForwardingClassAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "forwarding-class". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) ForwardingClassAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny{ +// ForwardingClassAny returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "forwarding-class". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) ForwardingClassAny() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny{ NodePath: ygot.NewNodePath( []string{"forwarding-classes", "forwarding-class"}, map[string]interface{}{"exp": "*"}, @@ -74307,9 +74521,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// ForwardingClass returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "forwarding-class". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) ForwardingClass(Exp uint8) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass{ +// ForwardingClass returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "forwarding-class". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) ForwardingClass(Exp uint8) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath{ NodePath: ygot.NewNodePath( []string{"forwarding-classes", "forwarding-class"}, map[string]interface{}{"exp": Exp}, @@ -74318,9 +74532,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// ForwardingClass returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "forwarding-class". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) ForwardingClass(Exp uint8) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny{ +// ForwardingClass returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "forwarding-class". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) ForwardingClass(Exp uint8) *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny{ NodePath: ygot.NewNodePath( []string{"forwarding-classes", "forwarding-class"}, map[string]interface{}{"exp": Exp}, @@ -74329,9 +74543,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctets{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -74340,9 +74554,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsAny{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -74351,9 +74565,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPkts{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74362,9 +74576,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsAny{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74373,9 +74587,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "mpls-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel{ +// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "mpls-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-label"}, map[string]interface{}{}, @@ -74384,9 +74598,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "mpls-label". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelAny{ +// MplsLabel returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "mpls-label". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) MplsLabel() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-label"}, map[string]interface{}{}, @@ -74395,9 +74609,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctets{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74406,9 +74620,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsAny{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74417,9 +74631,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPkts{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPath) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74428,9 +74642,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsAny{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounterPathAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74439,69 +74653,69 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_Exp represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/exp YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_Exp struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/exp YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/exp YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/exp YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/in-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctets struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-octets YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-octets YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPkts struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-pkts YANG schema element. -type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsAny struct { +// NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/signaling-protocols/segment-routing/interfaces/interface/sid-counters/sid-counter/forwarding-classes/forwarding-class/state/out-pkts YANG schema element. +type NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPathAny struct { *ygot.NodePath } -// Exp returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass the path struct for its child "exp". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass) Exp() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_Exp { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_Exp{ +// Exp returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath the path struct for its child "exp". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath) Exp() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPath{ NodePath: ygot.NewNodePath( []string{"state", "exp"}, map[string]interface{}{}, @@ -74510,9 +74724,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// Exp returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny the path struct for its child "exp". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny) Exp() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpAny{ +// Exp returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny the path struct for its child "exp". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny) Exp() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_ExpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "exp"}, map[string]interface{}{}, @@ -74521,9 +74735,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctets{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -74532,9 +74746,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny the path struct for its child "in-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsAny{ +// InOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny the path struct for its child "in-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny) InOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-octets"}, map[string]interface{}{}, @@ -74543,9 +74757,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPkts{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74554,9 +74768,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny the path struct for its child "in-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsAny{ +// InPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny the path struct for its child "in-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny) InPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pkts"}, map[string]interface{}{}, @@ -74565,9 +74779,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctets { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctets{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74576,9 +74790,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny the path struct for its child "out-octets". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsAny{ +// OutOctets returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny) OutOctets() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-octets"}, map[string]interface{}{}, @@ -74587,9 +74801,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPkts { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPkts{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPath) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPath { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74598,9 +74812,9 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny the path struct for its child "out-pkts". -func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsAny { - return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsAny{ +// OutPkts returns from NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClassPathAny) OutPkts() *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPathAny { + return &NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_ForwardingClass_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-pkts"}, map[string]interface{}{}, @@ -74609,19 +74823,19 @@ func (n *NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCou } } -// NetworkInstance_Mpls_TeGlobalAttributes represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes struct { +// NetworkInstance_Mpls_TeGlobalAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributesAny struct { +// NetworkInstance_Mpls_TeGlobalAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributesPathAny struct { *ygot.NodePath } -// AdminGroupAny returns from NetworkInstance_Mpls_TeGlobalAttributes the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_TeGlobalAttributes) AdminGroupAny() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny{ +// AdminGroupAny returns from NetworkInstance_Mpls_TeGlobalAttributesPath the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPath) AdminGroupAny() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"mpls-admin-groups", "admin-group"}, map[string]interface{}{"admin-group-name": "*"}, @@ -74630,9 +74844,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes) AdminGroupAny() *NetworkInstan } } -// AdminGroupAny returns from NetworkInstance_Mpls_TeGlobalAttributesAny the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) AdminGroupAny() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny{ +// AdminGroupAny returns from NetworkInstance_Mpls_TeGlobalAttributesPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPathAny) AdminGroupAny() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"mpls-admin-groups", "admin-group"}, map[string]interface{}{"admin-group-name": "*"}, @@ -74641,9 +74855,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) AdminGroupAny() *NetworkIns } } -// AdminGroup returns from NetworkInstance_Mpls_TeGlobalAttributes the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_TeGlobalAttributes) AdminGroup(AdminGroupName string) *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup{ +// AdminGroup returns from NetworkInstance_Mpls_TeGlobalAttributesPath the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPath) AdminGroup(AdminGroupName string) *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"mpls-admin-groups", "admin-group"}, map[string]interface{}{"admin-group-name": AdminGroupName}, @@ -74652,9 +74866,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes) AdminGroup(AdminGroupName stri } } -// AdminGroup returns from NetworkInstance_Mpls_TeGlobalAttributesAny the path struct for its child "admin-group". -func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) AdminGroup(AdminGroupName string) *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Mpls_TeGlobalAttributesPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPathAny) AdminGroup(AdminGroupName string) *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"mpls-admin-groups", "admin-group"}, map[string]interface{}{"admin-group-name": AdminGroupName}, @@ -74663,9 +74877,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) AdminGroup(AdminGroupName s } } -// SrlgAny returns from NetworkInstance_Mpls_TeGlobalAttributes the path struct for its child "srlg". -func (n *NetworkInstance_Mpls_TeGlobalAttributes) SrlgAny() *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny{ +// SrlgAny returns from NetworkInstance_Mpls_TeGlobalAttributesPath the path struct for its child "srlg". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPath) SrlgAny() *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"srlgs", "srlg"}, map[string]interface{}{"name": "*"}, @@ -74674,9 +74888,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes) SrlgAny() *NetworkInstance_Mpl } } -// SrlgAny returns from NetworkInstance_Mpls_TeGlobalAttributesAny the path struct for its child "srlg". -func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) SrlgAny() *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny{ +// SrlgAny returns from NetworkInstance_Mpls_TeGlobalAttributesPathAny the path struct for its child "srlg". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPathAny) SrlgAny() *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"srlgs", "srlg"}, map[string]interface{}{"name": "*"}, @@ -74685,9 +74899,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) SrlgAny() *NetworkInstance_ } } -// Srlg returns from NetworkInstance_Mpls_TeGlobalAttributes the path struct for its child "srlg". -func (n *NetworkInstance_Mpls_TeGlobalAttributes) Srlg(Name string) *NetworkInstance_Mpls_TeGlobalAttributes_Srlg { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg{ +// Srlg returns from NetworkInstance_Mpls_TeGlobalAttributesPath the path struct for its child "srlg". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPath) Srlg(Name string) *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath{ NodePath: ygot.NewNodePath( []string{"srlgs", "srlg"}, map[string]interface{}{"name": Name}, @@ -74696,9 +74910,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes) Srlg(Name string) *NetworkInst } } -// Srlg returns from NetworkInstance_Mpls_TeGlobalAttributesAny the path struct for its child "srlg". -func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) Srlg(Name string) *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny{ +// Srlg returns from NetworkInstance_Mpls_TeGlobalAttributesPathAny the path struct for its child "srlg". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPathAny) Srlg(Name string) *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"srlgs", "srlg"}, map[string]interface{}{"name": Name}, @@ -74707,9 +74921,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) Srlg(Name string) *NetworkI } } -// TeLspTimers returns from NetworkInstance_Mpls_TeGlobalAttributes the path struct for its child "te-lsp-timers". -func (n *NetworkInstance_Mpls_TeGlobalAttributes) TeLspTimers() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers{ +// TeLspTimers returns from NetworkInstance_Mpls_TeGlobalAttributesPath the path struct for its child "te-lsp-timers". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPath) TeLspTimers() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath{ NodePath: ygot.NewNodePath( []string{"te-lsp-timers"}, map[string]interface{}{}, @@ -74718,9 +74932,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes) TeLspTimers() *NetworkInstance } } -// TeLspTimers returns from NetworkInstance_Mpls_TeGlobalAttributesAny the path struct for its child "te-lsp-timers". -func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) TeLspTimers() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny{ +// TeLspTimers returns from NetworkInstance_Mpls_TeGlobalAttributesPathAny the path struct for its child "te-lsp-timers". +func (n *NetworkInstance_Mpls_TeGlobalAttributesPathAny) TeLspTimers() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny{ NodePath: ygot.NewNodePath( []string{"te-lsp-timers"}, map[string]interface{}{}, @@ -74729,177 +74943,177 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributesAny) TeLspTimers() *NetworkInsta } } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupName represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/state/admin-group-name YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupName struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/config/admin-group-name YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/state/admin-group-name YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNameAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/config/admin-group-name YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPosition represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/state/bit-position YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPosition struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/config/bit-position YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/state/bit-position YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/mpls-admin-groups/admin-group/config/bit-position YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPathAny struct { *ygot.NodePath } -// AdminGroupName returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup the path struct for its child "admin-group-name". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup) AdminGroupName() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupName { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupName{ +// AdminGroupName returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath the path struct for its child "admin-group-name". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath) AdminGroupName() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePath { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-group-name"}, + []string{"config", "admin-group-name"}, map[string]interface{}{}, n, ), } } -// AdminGroupName returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny the path struct for its child "admin-group-name". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny) AdminGroupName() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNameAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNameAny{ +// AdminGroupName returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny the path struct for its child "admin-group-name". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny) AdminGroupName() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_AdminGroupNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-group-name"}, + []string{"config", "admin-group-name"}, map[string]interface{}{}, n, ), } } -// BitPosition returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup the path struct for its child "bit-position". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup) BitPosition() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPosition { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPosition{ +// BitPosition returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath the path struct for its child "bit-position". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPath) BitPosition() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPath{ NodePath: ygot.NewNodePath( - []string{"state", "bit-position"}, + []string{"config", "bit-position"}, map[string]interface{}{}, n, ), } } -// BitPosition returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny the path struct for its child "bit-position". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupAny) BitPosition() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionAny{ +// BitPosition returns from NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny the path struct for its child "bit-position". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroupPathAny) BitPosition() *NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_AdminGroup_BitPositionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bit-position"}, + []string{"config", "bit-position"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg struct { +// NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Cost represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/cost YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Cost struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/cost YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/cost YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/cost YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingType represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/flooding-type YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingType struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/flooding-type YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/flooding-type YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypeAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/flooding-type YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Name represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/name YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Name struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/name YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/name YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NameAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/name YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Value represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/value YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Value struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/value YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/state/value YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValueAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/config/value YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePathAny struct { *ygot.NodePath } -// Cost returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "cost". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) Cost() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Cost { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Cost{ +// Cost returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "cost". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) Cost() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPath{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Cost returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "cost". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) Cost() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostAny{ +// Cost returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "cost". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) Cost() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_CostPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// FloodingType returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "flooding-type". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) FloodingType() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingType { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingType{ +// FloodingType returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "flooding-type". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) FloodingType() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "flooding-type"}, + []string{"config", "flooding-type"}, map[string]interface{}{}, n, ), } } -// FloodingType returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "flooding-type". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) FloodingType() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypeAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypeAny{ +// FloodingType returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "flooding-type". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) FloodingType() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_FloodingTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "flooding-type"}, + []string{"config", "flooding-type"}, map[string]interface{}{}, n, ), } } -// MembersListAny returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "members-list". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) MembersListAny() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny{ +// MembersListAny returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "members-list". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) MembersListAny() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny{ NodePath: ygot.NewNodePath( []string{"static-srlg-members", "members-list"}, map[string]interface{}{"from-address": "*"}, @@ -74908,9 +75122,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) MembersListAny() *Network } } -// MembersListAny returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "members-list". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) MembersListAny() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny{ +// MembersListAny returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "members-list". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) MembersListAny() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny{ NodePath: ygot.NewNodePath( []string{"static-srlg-members", "members-list"}, map[string]interface{}{"from-address": "*"}, @@ -74919,9 +75133,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) MembersListAny() *Netw } } -// MembersList returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "members-list". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) MembersList(FromAddress string) *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList{ +// MembersList returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "members-list". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) MembersList(FromAddress string) *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath{ NodePath: ygot.NewNodePath( []string{"static-srlg-members", "members-list"}, map[string]interface{}{"from-address": FromAddress}, @@ -74930,9 +75144,9 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) MembersList(FromAddress s } } -// MembersList returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "members-list". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) MembersList(FromAddress string) *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny{ +// MembersList returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "members-list". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) MembersList(FromAddress string) *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny{ NodePath: ygot.NewNodePath( []string{"static-srlg-members", "members-list"}, map[string]interface{}{"from-address": FromAddress}, @@ -74941,243 +75155,243 @@ func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) MembersList(FromAddres } } -// Name returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "name". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) Name() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Name { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Name{ +// Name returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "name". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) Name() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "name". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) Name() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NameAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NameAny{ +// Name returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "name". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) Name() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Value returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg the path struct for its child "value". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg) Value() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Value { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_Value{ +// Value returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath the path struct for its child "value". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPath) Value() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePath{ NodePath: ygot.NewNodePath( - []string{"state", "value"}, + []string{"config", "value"}, map[string]interface{}{}, n, ), } } -// Value returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny the path struct for its child "value". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgAny) Value() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValueAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValueAny{ +// Value returns from NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny the path struct for its child "value". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_SrlgPathAny) Value() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_ValuePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "value"}, + []string{"config", "value"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/state/from-address YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddress struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/config/from-address YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/state/from-address YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/config/from-address YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddress represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/state/to-address YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddress struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/config/to-address YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/state/to-address YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/srlgs/srlg/static-srlg-members/members-list/config/to-address YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPathAny struct { *ygot.NodePath } -// FromAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList the path struct for its child "from-address". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList) FromAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddress { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddress{ +// FromAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath the path struct for its child "from-address". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath) FromAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "from-address"}, + []string{"config", "from-address"}, map[string]interface{}{}, n, ), } } -// FromAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny the path struct for its child "from-address". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny) FromAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressAny{ +// FromAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny the path struct for its child "from-address". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny) FromAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_FromAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "from-address"}, + []string{"config", "from-address"}, map[string]interface{}{}, n, ), } } -// ToAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList the path struct for its child "to-address". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList) ToAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddress { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddress{ +// ToAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath the path struct for its child "to-address". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPath) ToAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "to-address"}, + []string{"config", "to-address"}, map[string]interface{}{}, n, ), } } -// ToAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny the path struct for its child "to-address". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListAny) ToAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressAny{ +// ToAddress returns from NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny the path struct for its child "to-address". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersListPathAny) ToAddress() *NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_Srlg_MembersList_ToAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "to-address"}, + []string{"config", "to-address"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelay represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/cleanup-delay YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelay struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/cleanup-delay YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/cleanup-delay YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/cleanup-delay YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelay represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/install-delay YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelay struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/install-delay YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/install-delay YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/install-delay YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimer represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/reoptimize-timer YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimer struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPath represents the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/reoptimize-timer YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPath struct { *ygot.NodePath } -// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/state/reoptimize-timer YANG schema element. -type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerAny struct { +// NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/mpls/te-global-attributes/te-lsp-timers/config/reoptimize-timer YANG schema element. +type NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPathAny struct { *ygot.NodePath } -// CleanupDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers the path struct for its child "cleanup-delay". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers) CleanupDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelay { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelay{ +// CleanupDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath the path struct for its child "cleanup-delay". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath) CleanupDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "cleanup-delay"}, + []string{"config", "cleanup-delay"}, map[string]interface{}{}, n, ), } } -// CleanupDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny the path struct for its child "cleanup-delay". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny) CleanupDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayAny{ +// CleanupDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny the path struct for its child "cleanup-delay". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny) CleanupDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_CleanupDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cleanup-delay"}, + []string{"config", "cleanup-delay"}, map[string]interface{}{}, n, ), } } -// InstallDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers the path struct for its child "install-delay". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers) InstallDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelay { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelay{ +// InstallDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath the path struct for its child "install-delay". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath) InstallDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "install-delay"}, + []string{"config", "install-delay"}, map[string]interface{}{}, n, ), } } -// InstallDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny the path struct for its child "install-delay". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny) InstallDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayAny{ +// InstallDelay returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny the path struct for its child "install-delay". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny) InstallDelay() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_InstallDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "install-delay"}, + []string{"config", "install-delay"}, map[string]interface{}{}, n, ), } } -// ReoptimizeTimer returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers the path struct for its child "reoptimize-timer". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers) ReoptimizeTimer() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimer { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimer{ +// ReoptimizeTimer returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath the path struct for its child "reoptimize-timer". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPath) ReoptimizeTimer() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPath { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "reoptimize-timer"}, + []string{"config", "reoptimize-timer"}, map[string]interface{}{}, n, ), } } -// ReoptimizeTimer returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny the path struct for its child "reoptimize-timer". -func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersAny) ReoptimizeTimer() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerAny { - return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerAny{ +// ReoptimizeTimer returns from NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny the path struct for its child "reoptimize-timer". +func (n *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimersPathAny) ReoptimizeTimer() *NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPathAny { + return &NetworkInstance_Mpls_TeGlobalAttributes_TeLspTimers_ReoptimizeTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "reoptimize-timer"}, + []string{"config", "reoptimize-timer"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding YANG schema element. -type NetworkInstance_PolicyForwarding struct { +// NetworkInstance_PolicyForwardingPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding YANG schema element. +type NetworkInstance_PolicyForwardingPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwardingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding YANG schema element. -type NetworkInstance_PolicyForwardingAny struct { +// NetworkInstance_PolicyForwardingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding YANG schema element. +type NetworkInstance_PolicyForwardingPathAny struct { *ygot.NodePath } -// InterfaceAny returns from NetworkInstance_PolicyForwarding the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwarding) InterfaceAny() *NetworkInstance_PolicyForwarding_InterfaceAny { - return &NetworkInstance_PolicyForwarding_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_PolicyForwardingPath the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwardingPath) InterfaceAny() *NetworkInstance_PolicyForwarding_InterfacePathAny { + return &NetworkInstance_PolicyForwarding_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -75186,9 +75400,9 @@ func (n *NetworkInstance_PolicyForwarding) InterfaceAny() *NetworkInstance_Polic } } -// InterfaceAny returns from NetworkInstance_PolicyForwardingAny the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwardingAny) InterfaceAny() *NetworkInstance_PolicyForwarding_InterfaceAny { - return &NetworkInstance_PolicyForwarding_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwardingPathAny) InterfaceAny() *NetworkInstance_PolicyForwarding_InterfacePathAny { + return &NetworkInstance_PolicyForwarding_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -75197,9 +75411,9 @@ func (n *NetworkInstance_PolicyForwardingAny) InterfaceAny() *NetworkInstance_Po } } -// Interface returns from NetworkInstance_PolicyForwarding the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwarding) Interface(InterfaceId string) *NetworkInstance_PolicyForwarding_Interface { - return &NetworkInstance_PolicyForwarding_Interface{ +// Interface returns from NetworkInstance_PolicyForwardingPath the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwardingPath) Interface(InterfaceId string) *NetworkInstance_PolicyForwarding_InterfacePath { + return &NetworkInstance_PolicyForwarding_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -75208,9 +75422,9 @@ func (n *NetworkInstance_PolicyForwarding) Interface(InterfaceId string) *Networ } } -// Interface returns from NetworkInstance_PolicyForwardingAny the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwardingAny) Interface(InterfaceId string) *NetworkInstance_PolicyForwarding_InterfaceAny { - return &NetworkInstance_PolicyForwarding_InterfaceAny{ +// Interface returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwardingPathAny) Interface(InterfaceId string) *NetworkInstance_PolicyForwarding_InterfacePathAny { + return &NetworkInstance_PolicyForwarding_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -75219,9 +75433,9 @@ func (n *NetworkInstance_PolicyForwardingAny) Interface(InterfaceId string) *Net } } -// PathSelectionGroupAny returns from NetworkInstance_PolicyForwarding the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwarding) PathSelectionGroupAny() *NetworkInstance_PolicyForwarding_PathSelectionGroupAny { - return &NetworkInstance_PolicyForwarding_PathSelectionGroupAny{ +// PathSelectionGroupAny returns from NetworkInstance_PolicyForwardingPath the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwardingPath) PathSelectionGroupAny() *NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny { + return &NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny{ NodePath: ygot.NewNodePath( []string{"path-selection-groups", "path-selection-group"}, map[string]interface{}{"group-id": "*"}, @@ -75230,9 +75444,9 @@ func (n *NetworkInstance_PolicyForwarding) PathSelectionGroupAny() *NetworkInsta } } -// PathSelectionGroupAny returns from NetworkInstance_PolicyForwardingAny the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwardingAny) PathSelectionGroupAny() *NetworkInstance_PolicyForwarding_PathSelectionGroupAny { - return &NetworkInstance_PolicyForwarding_PathSelectionGroupAny{ +// PathSelectionGroupAny returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwardingPathAny) PathSelectionGroupAny() *NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny { + return &NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny{ NodePath: ygot.NewNodePath( []string{"path-selection-groups", "path-selection-group"}, map[string]interface{}{"group-id": "*"}, @@ -75241,9 +75455,9 @@ func (n *NetworkInstance_PolicyForwardingAny) PathSelectionGroupAny() *NetworkIn } } -// PathSelectionGroup returns from NetworkInstance_PolicyForwarding the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwarding) PathSelectionGroup(GroupId string) *NetworkInstance_PolicyForwarding_PathSelectionGroup { - return &NetworkInstance_PolicyForwarding_PathSelectionGroup{ +// PathSelectionGroup returns from NetworkInstance_PolicyForwardingPath the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwardingPath) PathSelectionGroup(GroupId string) *NetworkInstance_PolicyForwarding_PathSelectionGroupPath { + return &NetworkInstance_PolicyForwarding_PathSelectionGroupPath{ NodePath: ygot.NewNodePath( []string{"path-selection-groups", "path-selection-group"}, map[string]interface{}{"group-id": GroupId}, @@ -75252,9 +75466,9 @@ func (n *NetworkInstance_PolicyForwarding) PathSelectionGroup(GroupId string) *N } } -// PathSelectionGroup returns from NetworkInstance_PolicyForwardingAny the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwardingAny) PathSelectionGroup(GroupId string) *NetworkInstance_PolicyForwarding_PathSelectionGroupAny { - return &NetworkInstance_PolicyForwarding_PathSelectionGroupAny{ +// PathSelectionGroup returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwardingPathAny) PathSelectionGroup(GroupId string) *NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny { + return &NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny{ NodePath: ygot.NewNodePath( []string{"path-selection-groups", "path-selection-group"}, map[string]interface{}{"group-id": GroupId}, @@ -75263,9 +75477,9 @@ func (n *NetworkInstance_PolicyForwardingAny) PathSelectionGroup(GroupId string) } } -// PolicyAny returns from NetworkInstance_PolicyForwarding the path struct for its child "policy". -func (n *NetworkInstance_PolicyForwarding) PolicyAny() *NetworkInstance_PolicyForwarding_PolicyAny { - return &NetworkInstance_PolicyForwarding_PolicyAny{ +// PolicyAny returns from NetworkInstance_PolicyForwardingPath the path struct for its child "policy". +func (n *NetworkInstance_PolicyForwardingPath) PolicyAny() *NetworkInstance_PolicyForwarding_PolicyPathAny { + return &NetworkInstance_PolicyForwarding_PolicyPathAny{ NodePath: ygot.NewNodePath( []string{"policies", "policy"}, map[string]interface{}{"policy-id": "*"}, @@ -75274,9 +75488,9 @@ func (n *NetworkInstance_PolicyForwarding) PolicyAny() *NetworkInstance_PolicyFo } } -// PolicyAny returns from NetworkInstance_PolicyForwardingAny the path struct for its child "policy". -func (n *NetworkInstance_PolicyForwardingAny) PolicyAny() *NetworkInstance_PolicyForwarding_PolicyAny { - return &NetworkInstance_PolicyForwarding_PolicyAny{ +// PolicyAny returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "policy". +func (n *NetworkInstance_PolicyForwardingPathAny) PolicyAny() *NetworkInstance_PolicyForwarding_PolicyPathAny { + return &NetworkInstance_PolicyForwarding_PolicyPathAny{ NodePath: ygot.NewNodePath( []string{"policies", "policy"}, map[string]interface{}{"policy-id": "*"}, @@ -75285,9 +75499,9 @@ func (n *NetworkInstance_PolicyForwardingAny) PolicyAny() *NetworkInstance_Polic } } -// Policy returns from NetworkInstance_PolicyForwarding the path struct for its child "policy". -func (n *NetworkInstance_PolicyForwarding) Policy(PolicyId string) *NetworkInstance_PolicyForwarding_Policy { - return &NetworkInstance_PolicyForwarding_Policy{ +// Policy returns from NetworkInstance_PolicyForwardingPath the path struct for its child "policy". +func (n *NetworkInstance_PolicyForwardingPath) Policy(PolicyId string) *NetworkInstance_PolicyForwarding_PolicyPath { + return &NetworkInstance_PolicyForwarding_PolicyPath{ NodePath: ygot.NewNodePath( []string{"policies", "policy"}, map[string]interface{}{"policy-id": PolicyId}, @@ -75296,9 +75510,9 @@ func (n *NetworkInstance_PolicyForwarding) Policy(PolicyId string) *NetworkInsta } } -// Policy returns from NetworkInstance_PolicyForwardingAny the path struct for its child "policy". -func (n *NetworkInstance_PolicyForwardingAny) Policy(PolicyId string) *NetworkInstance_PolicyForwarding_PolicyAny { - return &NetworkInstance_PolicyForwarding_PolicyAny{ +// Policy returns from NetworkInstance_PolicyForwardingPathAny the path struct for its child "policy". +func (n *NetworkInstance_PolicyForwardingPathAny) Policy(PolicyId string) *NetworkInstance_PolicyForwarding_PolicyPathAny { + return &NetworkInstance_PolicyForwarding_PolicyPathAny{ NodePath: ygot.NewNodePath( []string{"policies", "policy"}, map[string]interface{}{"policy-id": PolicyId}, @@ -75307,83 +75521,83 @@ func (n *NetworkInstance_PolicyForwardingAny) Policy(PolicyId string) *NetworkIn } } -// NetworkInstance_PolicyForwarding_Interface represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface YANG schema element. -type NetworkInstance_PolicyForwarding_Interface struct { +// NetworkInstance_PolicyForwarding_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface YANG schema element. +type NetworkInstance_PolicyForwarding_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface YANG schema element. -type NetworkInstance_PolicyForwarding_InterfaceAny struct { +// NetworkInstance_PolicyForwarding_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface YANG schema element. +type NetworkInstance_PolicyForwarding_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicy represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/state/apply-forwarding-policy YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicy struct { +// NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/config/apply-forwarding-policy YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/state/apply-forwarding-policy YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyAny struct { +// NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/config/apply-forwarding-policy YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceId struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceIdAny struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// ApplyForwardingPolicy returns from NetworkInstance_PolicyForwarding_Interface the path struct for its child "apply-forwarding-policy". -func (n *NetworkInstance_PolicyForwarding_Interface) ApplyForwardingPolicy() *NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicy { - return &NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicy{ +// ApplyForwardingPolicy returns from NetworkInstance_PolicyForwarding_InterfacePath the path struct for its child "apply-forwarding-policy". +func (n *NetworkInstance_PolicyForwarding_InterfacePath) ApplyForwardingPolicy() *NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPath { + return &NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "apply-forwarding-policy"}, + []string{"config", "apply-forwarding-policy"}, map[string]interface{}{}, n, ), } } -// ApplyForwardingPolicy returns from NetworkInstance_PolicyForwarding_InterfaceAny the path struct for its child "apply-forwarding-policy". -func (n *NetworkInstance_PolicyForwarding_InterfaceAny) ApplyForwardingPolicy() *NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyAny { - return &NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyAny{ +// ApplyForwardingPolicy returns from NetworkInstance_PolicyForwarding_InterfacePathAny the path struct for its child "apply-forwarding-policy". +func (n *NetworkInstance_PolicyForwarding_InterfacePathAny) ApplyForwardingPolicy() *NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPathAny { + return &NetworkInstance_PolicyForwarding_Interface_ApplyForwardingPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "apply-forwarding-policy"}, + []string{"config", "apply-forwarding-policy"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_PolicyForwarding_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_PolicyForwarding_Interface) InterfaceId() *NetworkInstance_PolicyForwarding_Interface_InterfaceId { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_PolicyForwarding_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_PolicyForwarding_InterfacePath) InterfaceId() *NetworkInstance_PolicyForwarding_Interface_InterfaceIdPath { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_PolicyForwarding_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_PolicyForwarding_InterfaceAny) InterfaceId() *NetworkInstance_PolicyForwarding_Interface_InterfaceIdAny { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_PolicyForwarding_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_PolicyForwarding_InterfacePathAny) InterfaceId() *NetworkInstance_PolicyForwarding_Interface_InterfaceIdPathAny { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_PolicyForwarding_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_PolicyForwarding_Interface) InterfaceRef() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_PolicyForwarding_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_PolicyForwarding_InterfacePath) InterfaceRef() *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -75392,9 +75606,9 @@ func (n *NetworkInstance_PolicyForwarding_Interface) InterfaceRef() *NetworkInst } } -// InterfaceRef returns from NetworkInstance_PolicyForwarding_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_PolicyForwarding_InterfaceAny) InterfaceRef() *NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_PolicyForwarding_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_PolicyForwarding_InterfacePathAny) InterfaceRef() *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -75403,199 +75617,199 @@ func (n *NetworkInstance_PolicyForwarding_InterfaceAny) InterfaceRef() *NetworkI } } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRef struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Interface struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRef) Interface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Interface { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath) Interface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny) Interface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRef) Subinterface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_PolicyForwarding_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_PolicyForwarding_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_PathSelectionGroup represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroup struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroupPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroupPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PathSelectionGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroupAny struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupId represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/state/group-id YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupId struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/config/group-id YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/state/group-id YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdAny struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/config/group-id YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLsp represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/state/mpls-lsp YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLsp struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/config/mpls-lsp YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/state/mpls-lsp YANG schema element. -type NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspAny struct { +// NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/path-selection-groups/path-selection-group/config/mpls-lsp YANG schema element. +type NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPathAny struct { *ygot.NodePath } -// GroupId returns from NetworkInstance_PolicyForwarding_PathSelectionGroup the path struct for its child "group-id". -func (n *NetworkInstance_PolicyForwarding_PathSelectionGroup) GroupId() *NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupId { - return &NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupId{ +// GroupId returns from NetworkInstance_PolicyForwarding_PathSelectionGroupPath the path struct for its child "group-id". +func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupPath) GroupId() *NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPath { + return &NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "group-id"}, + []string{"config", "group-id"}, map[string]interface{}{}, n, ), } } -// GroupId returns from NetworkInstance_PolicyForwarding_PathSelectionGroupAny the path struct for its child "group-id". -func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupAny) GroupId() *NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdAny { - return &NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdAny{ +// GroupId returns from NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny the path struct for its child "group-id". +func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny) GroupId() *NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPathAny { + return &NetworkInstance_PolicyForwarding_PathSelectionGroup_GroupIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "group-id"}, + []string{"config", "group-id"}, map[string]interface{}{}, n, ), } } -// MplsLsp returns from NetworkInstance_PolicyForwarding_PathSelectionGroup the path struct for its child "mpls-lsp". -func (n *NetworkInstance_PolicyForwarding_PathSelectionGroup) MplsLsp() *NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLsp { - return &NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLsp{ +// MplsLsp returns from NetworkInstance_PolicyForwarding_PathSelectionGroupPath the path struct for its child "mpls-lsp". +func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupPath) MplsLsp() *NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPath { + return &NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-lsp"}, + []string{"config", "mpls-lsp"}, map[string]interface{}{}, n, ), } } -// MplsLsp returns from NetworkInstance_PolicyForwarding_PathSelectionGroupAny the path struct for its child "mpls-lsp". -func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupAny) MplsLsp() *NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspAny { - return &NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspAny{ +// MplsLsp returns from NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny the path struct for its child "mpls-lsp". +func (n *NetworkInstance_PolicyForwarding_PathSelectionGroupPathAny) MplsLsp() *NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPathAny { + return &NetworkInstance_PolicyForwarding_PathSelectionGroup_MplsLspPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-lsp"}, + []string{"config", "mpls-lsp"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy YANG schema element. -type NetworkInstance_PolicyForwarding_Policy struct { +// NetworkInstance_PolicyForwarding_PolicyPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy YANG schema element. +type NetworkInstance_PolicyForwarding_PolicyPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_PolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy YANG schema element. -type NetworkInstance_PolicyForwarding_PolicyAny struct { +// NetworkInstance_PolicyForwarding_PolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy YANG schema element. +type NetworkInstance_PolicyForwarding_PolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_PolicyId represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/state/policy-id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_PolicyId struct { +// NetworkInstance_PolicyForwarding_Policy_PolicyIdPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/config/policy-id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_PolicyIdPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_PolicyIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/state/policy-id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_PolicyIdAny struct { +// NetworkInstance_PolicyForwarding_Policy_PolicyIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/config/policy-id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_PolicyIdPathAny struct { *ygot.NodePath } -// PolicyId returns from NetworkInstance_PolicyForwarding_Policy the path struct for its child "policy-id". -func (n *NetworkInstance_PolicyForwarding_Policy) PolicyId() *NetworkInstance_PolicyForwarding_Policy_PolicyId { - return &NetworkInstance_PolicyForwarding_Policy_PolicyId{ +// PolicyId returns from NetworkInstance_PolicyForwarding_PolicyPath the path struct for its child "policy-id". +func (n *NetworkInstance_PolicyForwarding_PolicyPath) PolicyId() *NetworkInstance_PolicyForwarding_Policy_PolicyIdPath { + return &NetworkInstance_PolicyForwarding_Policy_PolicyIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "policy-id"}, + []string{"config", "policy-id"}, map[string]interface{}{}, n, ), } } -// PolicyId returns from NetworkInstance_PolicyForwarding_PolicyAny the path struct for its child "policy-id". -func (n *NetworkInstance_PolicyForwarding_PolicyAny) PolicyId() *NetworkInstance_PolicyForwarding_Policy_PolicyIdAny { - return &NetworkInstance_PolicyForwarding_Policy_PolicyIdAny{ +// PolicyId returns from NetworkInstance_PolicyForwarding_PolicyPathAny the path struct for its child "policy-id". +func (n *NetworkInstance_PolicyForwarding_PolicyPathAny) PolicyId() *NetworkInstance_PolicyForwarding_Policy_PolicyIdPathAny { + return &NetworkInstance_PolicyForwarding_Policy_PolicyIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "policy-id"}, + []string{"config", "policy-id"}, map[string]interface{}{}, n, ), } } -// RuleAny returns from NetworkInstance_PolicyForwarding_Policy the path struct for its child "rule". -func (n *NetworkInstance_PolicyForwarding_Policy) RuleAny() *NetworkInstance_PolicyForwarding_Policy_RuleAny { - return &NetworkInstance_PolicyForwarding_Policy_RuleAny{ +// RuleAny returns from NetworkInstance_PolicyForwarding_PolicyPath the path struct for its child "rule". +func (n *NetworkInstance_PolicyForwarding_PolicyPath) RuleAny() *NetworkInstance_PolicyForwarding_Policy_RulePathAny { + return &NetworkInstance_PolicyForwarding_Policy_RulePathAny{ NodePath: ygot.NewNodePath( []string{"rules", "rule"}, map[string]interface{}{"sequence-id": "*"}, @@ -75604,9 +75818,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy) RuleAny() *NetworkInstance_Pol } } -// RuleAny returns from NetworkInstance_PolicyForwarding_PolicyAny the path struct for its child "rule". -func (n *NetworkInstance_PolicyForwarding_PolicyAny) RuleAny() *NetworkInstance_PolicyForwarding_Policy_RuleAny { - return &NetworkInstance_PolicyForwarding_Policy_RuleAny{ +// RuleAny returns from NetworkInstance_PolicyForwarding_PolicyPathAny the path struct for its child "rule". +func (n *NetworkInstance_PolicyForwarding_PolicyPathAny) RuleAny() *NetworkInstance_PolicyForwarding_Policy_RulePathAny { + return &NetworkInstance_PolicyForwarding_Policy_RulePathAny{ NodePath: ygot.NewNodePath( []string{"rules", "rule"}, map[string]interface{}{"sequence-id": "*"}, @@ -75615,9 +75829,9 @@ func (n *NetworkInstance_PolicyForwarding_PolicyAny) RuleAny() *NetworkInstance_ } } -// Rule returns from NetworkInstance_PolicyForwarding_Policy the path struct for its child "rule". -func (n *NetworkInstance_PolicyForwarding_Policy) Rule(SequenceId uint32) *NetworkInstance_PolicyForwarding_Policy_Rule { - return &NetworkInstance_PolicyForwarding_Policy_Rule{ +// Rule returns from NetworkInstance_PolicyForwarding_PolicyPath the path struct for its child "rule". +func (n *NetworkInstance_PolicyForwarding_PolicyPath) Rule(SequenceId uint32) *NetworkInstance_PolicyForwarding_Policy_RulePath { + return &NetworkInstance_PolicyForwarding_Policy_RulePath{ NodePath: ygot.NewNodePath( []string{"rules", "rule"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -75626,9 +75840,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy) Rule(SequenceId uint32) *Netwo } } -// Rule returns from NetworkInstance_PolicyForwarding_PolicyAny the path struct for its child "rule". -func (n *NetworkInstance_PolicyForwarding_PolicyAny) Rule(SequenceId uint32) *NetworkInstance_PolicyForwarding_Policy_RuleAny { - return &NetworkInstance_PolicyForwarding_Policy_RuleAny{ +// Rule returns from NetworkInstance_PolicyForwarding_PolicyPathAny the path struct for its child "rule". +func (n *NetworkInstance_PolicyForwarding_PolicyPathAny) Rule(SequenceId uint32) *NetworkInstance_PolicyForwarding_Policy_RulePathAny { + return &NetworkInstance_PolicyForwarding_Policy_RulePathAny{ NodePath: ygot.NewNodePath( []string{"rules", "rule"}, map[string]interface{}{"sequence-id": SequenceId}, @@ -75637,49 +75851,49 @@ func (n *NetworkInstance_PolicyForwarding_PolicyAny) Rule(SequenceId uint32) *Ne } } -// NetworkInstance_PolicyForwarding_Policy_Rule represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule struct { +// NetworkInstance_PolicyForwarding_Policy_RulePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_RulePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_RuleAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_RuleAny struct { +// NetworkInstance_PolicyForwarding_Policy_RulePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_RulePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctets represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-octets YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctets struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-octets YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-octets YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-octets YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPkts represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-pkts YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPkts struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-pkts YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-pkts YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/matched-pkts YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_SequenceId represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/sequence-id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_SequenceId struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/config/sequence-id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/state/sequence-id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/config/sequence-id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPathAny struct { *ygot.NodePath } -// Action returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "action". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Action() *NetworkInstance_PolicyForwarding_Policy_Rule_Action { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action{ +// Action returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "action". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) Action() *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath{ NodePath: ygot.NewNodePath( []string{"action"}, map[string]interface{}{}, @@ -75688,9 +75902,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Action() *NetworkInstance } } -// Action returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "action". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Action() *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny{ +// Action returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "action". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) Action() *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny{ NodePath: ygot.NewNodePath( []string{"action"}, map[string]interface{}{}, @@ -75699,9 +75913,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Action() *NetworkInsta } } -// Ipv4 returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "ipv4". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Ipv4() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4{ +// Ipv4 returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "ipv4". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) Ipv4() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -75710,9 +75924,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Ipv4() *NetworkInstance_P } } -// Ipv4 returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "ipv4". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Ipv4() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any{ +// Ipv4 returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "ipv4". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) Ipv4() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny{ NodePath: ygot.NewNodePath( []string{"ipv4"}, map[string]interface{}{}, @@ -75721,9 +75935,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Ipv4() *NetworkInstanc } } -// Ipv6 returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "ipv6". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Ipv6() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6{ +// Ipv6 returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "ipv6". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) Ipv6() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -75732,9 +75946,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Ipv6() *NetworkInstance_P } } -// Ipv6 returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "ipv6". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Ipv6() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any{ +// Ipv6 returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "ipv6". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) Ipv6() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny{ NodePath: ygot.NewNodePath( []string{"ipv6"}, map[string]interface{}{}, @@ -75743,9 +75957,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Ipv6() *NetworkInstanc } } -// L2 returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "l2". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) L2() *NetworkInstance_PolicyForwarding_Policy_Rule_L2 { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2{ +// L2 returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "l2". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) L2() *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2Path{ NodePath: ygot.NewNodePath( []string{"l2"}, map[string]interface{}{}, @@ -75754,9 +75968,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) L2() *NetworkInstance_Pol } } -// L2 returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "l2". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) L2() *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2Any{ +// L2 returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "l2". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) L2() *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny{ NodePath: ygot.NewNodePath( []string{"l2"}, map[string]interface{}{}, @@ -75765,9 +75979,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) L2() *NetworkInstance_ } } -// MatchedOctets returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "matched-octets". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) MatchedOctets() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctets { - return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctets{ +// MatchedOctets returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "matched-octets". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) MatchedOctets() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -75776,9 +75990,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) MatchedOctets() *NetworkI } } -// MatchedOctets returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "matched-octets". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) MatchedOctets() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsAny{ +// MatchedOctets returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "matched-octets". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) MatchedOctets() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-octets"}, map[string]interface{}{}, @@ -75787,9 +76001,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) MatchedOctets() *Netwo } } -// MatchedPkts returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "matched-pkts". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) MatchedPkts() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPkts { - return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPkts{ +// MatchedPkts returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "matched-pkts". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) MatchedPkts() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPath{ NodePath: ygot.NewNodePath( []string{"state", "matched-pkts"}, map[string]interface{}{}, @@ -75798,9 +76012,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) MatchedPkts() *NetworkIns } } -// MatchedPkts returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "matched-pkts". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) MatchedPkts() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsAny{ +// MatchedPkts returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "matched-pkts". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) MatchedPkts() *NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_MatchedPktsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "matched-pkts"}, map[string]interface{}{}, @@ -75809,31 +76023,31 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) MatchedPkts() *Network } } -// SequenceId returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "sequence-id". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) SequenceId() *NetworkInstance_PolicyForwarding_Policy_Rule_SequenceId { - return &NetworkInstance_PolicyForwarding_Policy_Rule_SequenceId{ +// SequenceId returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "sequence-id". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) SequenceId() *NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "sequence-id"}, + []string{"config", "sequence-id"}, map[string]interface{}{}, n, ), } } -// SequenceId returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "sequence-id". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) SequenceId() *NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdAny{ +// SequenceId returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "sequence-id". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) SequenceId() *NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_SequenceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sequence-id"}, + []string{"config", "sequence-id"}, map[string]interface{}{}, n, ), } } -// Transport returns from NetworkInstance_PolicyForwarding_Policy_Rule the path struct for its child "transport". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Transport() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport{ +// Transport returns from NetworkInstance_PolicyForwarding_Policy_RulePath the path struct for its child "transport". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePath) Transport() *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -75842,9 +76056,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule) Transport() *NetworkInsta } } -// Transport returns from NetworkInstance_PolicyForwarding_Policy_RuleAny the path struct for its child "transport". -func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Transport() *NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny{ +// Transport returns from NetworkInstance_PolicyForwarding_Policy_RulePathAny the path struct for its child "transport". +func (n *NetworkInstance_PolicyForwarding_Policy_RulePathAny) Transport() *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -75853,113 +76067,113 @@ func (n *NetworkInstance_PolicyForwarding_Policy_RuleAny) Transport() *NetworkIn } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGre represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/decapsulate-gre YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGre struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/decapsulate-gre YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/decapsulate-gre YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGreAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/decapsulate-gre YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_Discard represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/discard YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_Discard struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/discard YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/discard YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/discard YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstance represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/network-instance YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstance struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/network-instance YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/network-instance YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstanceAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/network-instance YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHop represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/next-hop YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHop struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/next-hop YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/next-hop YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/next-hop YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroup represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/path-selection-group YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroup struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/path-selection-group YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/state/path-selection-group YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/config/path-selection-group YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPathAny struct { *ygot.NodePath } -// DecapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "decapsulate-gre". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) DecapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGre { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGre{ +// DecapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "decapsulate-gre". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) DecapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePath{ NodePath: ygot.NewNodePath( - []string{"state", "decapsulate-gre"}, + []string{"config", "decapsulate-gre"}, map[string]interface{}{}, n, ), } } -// DecapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "decapsulate-gre". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) DecapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGreAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGreAny{ +// DecapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "decapsulate-gre". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) DecapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DecapsulateGrePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "decapsulate-gre"}, + []string{"config", "decapsulate-gre"}, map[string]interface{}{}, n, ), } } -// Discard returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "discard". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) Discard() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_Discard { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_Discard{ +// Discard returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "discard". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) Discard() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPath{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// Discard returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "discard". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) Discard() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardAny{ +// Discard returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "discard". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) Discard() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_DiscardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// EncapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "encapsulate-gre". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) EncapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre{ +// EncapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "encapsulate-gre". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) EncapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath{ NodePath: ygot.NewNodePath( []string{"encapsulate-gre"}, map[string]interface{}{}, @@ -75968,9 +76182,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) EncapsulateGre() * } } -// EncapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "encapsulate-gre". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) EncapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny{ +// EncapsulateGre returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "encapsulate-gre". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) EncapsulateGre() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny{ NodePath: ygot.NewNodePath( []string{"encapsulate-gre"}, map[string]interface{}{}, @@ -75979,117 +76193,117 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) EncapsulateGre( } } -// NetworkInstance returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "network-instance". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) NetworkInstance() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstance { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstance{ +// NetworkInstance returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "network-instance". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) NetworkInstance() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePath{ NodePath: ygot.NewNodePath( - []string{"state", "network-instance"}, + []string{"config", "network-instance"}, map[string]interface{}{}, n, ), } } -// NetworkInstance returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "network-instance". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) NetworkInstance() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstanceAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstanceAny{ +// NetworkInstance returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "network-instance". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) NetworkInstance() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NetworkInstancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "network-instance"}, + []string{"config", "network-instance"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "next-hop". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) NextHop() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHop { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHop{ +// NextHop returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "next-hop". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) NextHop() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "next-hop". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) NextHop() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopAny{ +// NextHop returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) NextHop() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// PathSelectionGroup returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action) PathSelectionGroup() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroup { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroup{ +// PathSelectionGroup returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPath) PathSelectionGroup() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "path-selection-group"}, + []string{"config", "path-selection-group"}, map[string]interface{}{}, n, ), } } -// PathSelectionGroup returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny the path struct for its child "path-selection-group". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionAny) PathSelectionGroup() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupAny{ +// PathSelectionGroup returns from NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny the path struct for its child "path-selection-group". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_ActionPathAny) PathSelectionGroup() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_PathSelectionGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "path-selection-group"}, + []string{"config", "path-selection-group"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefix represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/state/identifying-prefix YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefix struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/config/identifying-prefix YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/state/identifying-prefix YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/config/identifying-prefix YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPathAny struct { *ygot.NodePath } -// IdentifyingPrefix returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre the path struct for its child "identifying-prefix". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre) IdentifyingPrefix() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefix { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefix{ +// IdentifyingPrefix returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath the path struct for its child "identifying-prefix". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath) IdentifyingPrefix() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "identifying-prefix"}, + []string{"config", "identifying-prefix"}, map[string]interface{}{}, n, ), } } -// IdentifyingPrefix returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny the path struct for its child "identifying-prefix". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny) IdentifyingPrefix() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixAny{ +// IdentifyingPrefix returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny the path struct for its child "identifying-prefix". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny) IdentifyingPrefix() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_IdentifyingPrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "identifying-prefix"}, + []string{"config", "identifying-prefix"}, map[string]interface{}{}, n, ), } } -// TargetAny returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre the path struct for its child "target". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre) TargetAny() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny{ +// TargetAny returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath the path struct for its child "target". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath) TargetAny() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"id": "*"}, @@ -76098,9 +76312,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre) Tar } } -// TargetAny returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny the path struct for its child "target". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny) TargetAny() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny{ +// TargetAny returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny the path struct for its child "target". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny) TargetAny() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"id": "*"}, @@ -76109,9 +76323,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny) } } -// Target returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre the path struct for its child "target". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre) Target(Id string) *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target{ +// Target returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath the path struct for its child "target". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePath) Target(Id string) *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"id": Id}, @@ -76120,9 +76334,9 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre) Tar } } -// Target returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny the path struct for its child "target". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny) Target(Id string) *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny{ +// Target returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny the path struct for its child "target". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGrePathAny) Target(Id string) *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny{ NodePath: ygot.NewNodePath( []string{"targets", "target"}, map[string]interface{}{"id": Id}, @@ -76131,877 +76345,877 @@ func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGreAny) } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Destination represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/destination YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Destination struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/destination YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/destination YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/destination YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Id represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Id struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/id YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/id YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtl represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/ip-ttl YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtl struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/ip-ttl YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/ip-ttl YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/ip-ttl YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Source represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/source YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Source struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/source YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/state/source YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourceAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/action/encapsulate-gre/targets/target/config/source YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePathAny struct { *ygot.NodePath } -// Destination returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target the path struct for its child "destination". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target) Destination() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Destination { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Destination{ +// Destination returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath the path struct for its child "destination". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath) Destination() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination"}, + []string{"config", "destination"}, map[string]interface{}{}, n, ), } } -// Destination returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny the path struct for its child "destination". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny) Destination() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationAny{ +// Destination returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny the path struct for its child "destination". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny) Destination() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_DestinationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination"}, + []string{"config", "destination"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target the path struct for its child "id". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target) Id() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Id { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Id{ +// Id returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath the path struct for its child "id". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath) Id() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny the path struct for its child "id". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny) Id() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdAny{ +// Id returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny the path struct for its child "id". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny) Id() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// IpTtl returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target the path struct for its child "ip-ttl". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target) IpTtl() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtl { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtl{ +// IpTtl returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath the path struct for its child "ip-ttl". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath) IpTtl() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip-ttl"}, + []string{"config", "ip-ttl"}, map[string]interface{}{}, n, ), } } -// IpTtl returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny the path struct for its child "ip-ttl". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny) IpTtl() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlAny{ +// IpTtl returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny the path struct for its child "ip-ttl". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny) IpTtl() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_IpTtlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip-ttl"}, + []string{"config", "ip-ttl"}, map[string]interface{}{}, n, ), } } -// Source returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target the path struct for its child "source". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target) Source() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Source { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_Source{ +// Source returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath the path struct for its child "source". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPath) Source() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePath{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// Source returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny the path struct for its child "source". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetAny) Source() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourceAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourceAny{ +// Source returns from NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny the path struct for its child "source". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_TargetPathAny) Source() *NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Action_EncapsulateGre_Target_SourcePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddress represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/destination-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddress struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/destination-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/destination-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/destination-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Dscp represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/dscp YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Dscp struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/dscp YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/dscp YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/dscp YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimit represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/hop-limit YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimit struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/hop-limit YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/hop-limit YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/hop-limit YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Protocol represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/protocol YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Protocol struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/protocol YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/protocol YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/protocol YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddress represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/source-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddress struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/source-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/state/source-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv4/config/source-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPathAny struct { *ygot.NodePath } -// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 the path struct for its child "destination-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddress { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddress{ +// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path the path struct for its child "destination-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any the path struct for its child "destination-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressAny{ +// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny the path struct for its child "destination-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DestinationAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 the path struct for its child "dscp". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Dscp { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Dscp{ +// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path the path struct for its child "dscp". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPath{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, map[string]interface{}{}, n, ), } } -// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any the path struct for its child "dscp". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpAny{ +// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny the path struct for its child "dscp". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_DscpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 the path struct for its child "hop-limit". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimit { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimit{ +// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path the path struct for its child "hop-limit". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "hop-limit"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any the path struct for its child "hop-limit". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitAny{ +// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny the path struct for its child "hop-limit". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_HopLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "hop-limit"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 the path struct for its child "protocol". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Protocol { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_Protocol{ +// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path the path struct for its child "protocol". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any the path struct for its child "protocol". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolAny{ +// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny the path struct for its child "protocol". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_ProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4 the path struct for its child "source-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddress { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddress{ +// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path the path struct for its child "source-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Path) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any the path struct for its child "source-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4Any) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressAny{ +// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny the path struct for its child "source-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4PathAny) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv4_SourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddress represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/destination-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddress struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/destination-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/destination-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/destination-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabel represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/destination-flow-label YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabel struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/destination-flow-label YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/destination-flow-label YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/destination-flow-label YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Dscp represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/dscp YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Dscp struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/dscp YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/dscp YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/dscp YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimit represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/hop-limit YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimit struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/hop-limit YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/hop-limit YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/hop-limit YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Protocol represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/protocol YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Protocol struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/protocol YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/protocol YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/protocol YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddress represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/source-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddress struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/source-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/source-address YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/source-address YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabel represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/source-flow-label YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabel struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/source-flow-label YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/state/source-flow-label YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/ipv6/config/source-flow-label YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPathAny struct { *ygot.NodePath } -// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "destination-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddress { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddress{ +// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "destination-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "destination-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressAny{ +// DestinationAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "destination-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) DestinationAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-address"}, + []string{"config", "destination-address"}, map[string]interface{}{}, n, ), } } -// DestinationFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "destination-flow-label". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) DestinationFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabel { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabel{ +// DestinationFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "destination-flow-label". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) DestinationFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-flow-label"}, + []string{"config", "destination-flow-label"}, map[string]interface{}{}, n, ), } } -// DestinationFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "destination-flow-label". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) DestinationFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelAny{ +// DestinationFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "destination-flow-label". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) DestinationFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DestinationFlowLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-flow-label"}, + []string{"config", "destination-flow-label"}, map[string]interface{}{}, n, ), } } -// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "dscp". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Dscp { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Dscp{ +// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "dscp". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPath{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, map[string]interface{}{}, n, ), } } -// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "dscp". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpAny{ +// Dscp returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "dscp". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) Dscp() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_DscpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dscp"}, + []string{"config", "dscp"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "hop-limit". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimit { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimit{ +// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "hop-limit". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "hop-limit"}, map[string]interface{}{}, n, ), } } -// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "hop-limit". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitAny{ +// HopLimit returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "hop-limit". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) HopLimit() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_HopLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hop-limit"}, + []string{"config", "hop-limit"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "protocol". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Protocol { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_Protocol{ +// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "protocol". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "protocol". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolAny{ +// Protocol returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "protocol". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) Protocol() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_ProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "source-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddress { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddress{ +// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "source-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "source-address". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressAny{ +// SourceAddress returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "source-address". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) SourceAddress() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6 the path struct for its child "source-flow-label". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6) SourceFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabel { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabel{ +// SourceFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path the path struct for its child "source-flow-label". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Path) SourceFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-flow-label"}, + []string{"config", "source-flow-label"}, map[string]interface{}{}, n, ), } } -// SourceFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any the path struct for its child "source-flow-label". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6Any) SourceFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelAny{ +// SourceFlowLabel returns from NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny the path struct for its child "source-flow-label". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6PathAny) SourceFlowLabel() *NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Ipv6_SourceFlowLabelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-flow-label"}, + []string{"config", "source-flow-label"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2 represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2 struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2Path represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2Path struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2 YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2Any struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2 YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMac represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/destination-mac YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMac struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/destination-mac YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/destination-mac YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/destination-mac YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMask represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/destination-mac-mask YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMask struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/destination-mac-mask YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/destination-mac-mask YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/destination-mac-mask YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_Ethertype represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/ethertype YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_Ethertype struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/ethertype YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/ethertype YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypeAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/ethertype YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMac represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/source-mac YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMac struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/source-mac YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/source-mac YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/source-mac YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMask represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/source-mac-mask YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMask struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/source-mac-mask YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/state/source-mac-mask YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/l2/config/source-mac-mask YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPathAny struct { *ygot.NodePath } -// DestinationMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2 the path struct for its child "destination-mac". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2) DestinationMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMac { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMac{ +// DestinationMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Path the path struct for its child "destination-mac". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path) DestinationMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac"}, + []string{"config", "destination-mac"}, map[string]interface{}{}, n, ), } } -// DestinationMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Any the path struct for its child "destination-mac". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any) DestinationMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacAny{ +// DestinationMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny the path struct for its child "destination-mac". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny) DestinationMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac"}, + []string{"config", "destination-mac"}, map[string]interface{}{}, n, ), } } -// DestinationMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2 the path struct for its child "destination-mac-mask". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2) DestinationMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMask { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMask{ +// DestinationMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Path the path struct for its child "destination-mac-mask". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path) DestinationMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac-mask"}, + []string{"config", "destination-mac-mask"}, map[string]interface{}{}, n, ), } } -// DestinationMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Any the path struct for its child "destination-mac-mask". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any) DestinationMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskAny{ +// DestinationMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny the path struct for its child "destination-mac-mask". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny) DestinationMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_DestinationMacMaskPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-mac-mask"}, + []string{"config", "destination-mac-mask"}, map[string]interface{}{}, n, ), } } -// Ethertype returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2 the path struct for its child "ethertype". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2) Ethertype() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_Ethertype { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_Ethertype{ +// Ethertype returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Path the path struct for its child "ethertype". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path) Ethertype() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePath{ NodePath: ygot.NewNodePath( - []string{"state", "ethertype"}, + []string{"config", "ethertype"}, map[string]interface{}{}, n, ), } } -// Ethertype returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Any the path struct for its child "ethertype". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any) Ethertype() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypeAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypeAny{ +// Ethertype returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny the path struct for its child "ethertype". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny) Ethertype() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_EthertypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ethertype"}, + []string{"config", "ethertype"}, map[string]interface{}{}, n, ), } } -// SourceMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2 the path struct for its child "source-mac". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2) SourceMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMac { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMac{ +// SourceMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Path the path struct for its child "source-mac". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path) SourceMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-mac"}, + []string{"config", "source-mac"}, map[string]interface{}{}, n, ), } } -// SourceMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Any the path struct for its child "source-mac". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any) SourceMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacAny{ +// SourceMac returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny the path struct for its child "source-mac". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny) SourceMac() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-mac"}, + []string{"config", "source-mac"}, map[string]interface{}{}, n, ), } } -// SourceMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2 the path struct for its child "source-mac-mask". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2) SourceMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMask { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMask{ +// SourceMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Path the path struct for its child "source-mac-mask". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Path) SourceMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-mac-mask"}, + []string{"config", "source-mac-mask"}, map[string]interface{}{}, n, ), } } -// SourceMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2Any the path struct for its child "source-mac-mask". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2Any) SourceMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskAny{ +// SourceMacMask returns from NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny the path struct for its child "source-mac-mask". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_L2PathAny) SourceMacMask() *NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_L2_SourceMacMaskPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-mac-mask"}, + []string{"config", "source-mac-mask"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPort represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/destination-port YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPort struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/destination-port YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/destination-port YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/destination-port YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePort represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/source-port YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePort struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/source-port YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/source-port YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/source-port YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPathAny struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlags represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/tcp-flags YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlags struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPath represents the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/tcp-flags YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPath struct { *ygot.NodePath } -// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/state/tcp-flags YANG schema element. -type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsAny struct { +// NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/policy-forwarding/policies/policy/rules/rule/transport/config/tcp-flags YANG schema element. +type NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPathAny struct { *ygot.NodePath } -// DestinationPort returns from NetworkInstance_PolicyForwarding_Policy_Rule_Transport the path struct for its child "destination-port". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Transport) DestinationPort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPort { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPort{ +// DestinationPort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath the path struct for its child "destination-port". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath) DestinationPort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "destination-port"}, + []string{"config", "destination-port"}, map[string]interface{}{}, n, ), } } -// DestinationPort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny the path struct for its child "destination-port". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny) DestinationPort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortAny{ +// DestinationPort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny the path struct for its child "destination-port". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny) DestinationPort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_DestinationPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "destination-port"}, + []string{"config", "destination-port"}, map[string]interface{}{}, n, ), } } -// SourcePort returns from NetworkInstance_PolicyForwarding_Policy_Rule_Transport the path struct for its child "source-port". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Transport) SourcePort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePort { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePort{ +// SourcePort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath the path struct for its child "source-port". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath) SourcePort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-port"}, + []string{"config", "source-port"}, map[string]interface{}{}, n, ), } } -// SourcePort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny the path struct for its child "source-port". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny) SourcePort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortAny{ +// SourcePort returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny the path struct for its child "source-port". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny) SourcePort() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_SourcePortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-port"}, + []string{"config", "source-port"}, map[string]interface{}{}, n, ), } } -// TcpFlags returns from NetworkInstance_PolicyForwarding_Policy_Rule_Transport the path struct for its child "tcp-flags". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_Transport) TcpFlags() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlags { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlags{ +// TcpFlags returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath the path struct for its child "tcp-flags". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPath) TcpFlags() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPath { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPath{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-flags"}, + []string{"config", "tcp-flags"}, map[string]interface{}{}, n, ), } } -// TcpFlags returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny the path struct for its child "tcp-flags". -func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportAny) TcpFlags() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsAny { - return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsAny{ +// TcpFlags returns from NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny the path struct for its child "tcp-flags". +func (n *NetworkInstance_PolicyForwarding_Policy_Rule_TransportPathAny) TcpFlags() *NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPathAny { + return &NetworkInstance_PolicyForwarding_Policy_Rule_Transport_TcpFlagsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-flags"}, + []string{"config", "tcp-flags"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol YANG schema element. -type NetworkInstance_Protocol struct { +// NetworkInstance_ProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol YANG schema element. +type NetworkInstance_ProtocolPath struct { *ygot.NodePath } -// NetworkInstance_ProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol YANG schema element. -type NetworkInstance_ProtocolAny struct { +// NetworkInstance_ProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol YANG schema element. +type NetworkInstance_ProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_DefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/default-metric YANG schema element. -type NetworkInstance_Protocol_DefaultMetric struct { +// NetworkInstance_Protocol_DefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/default-metric YANG schema element. +type NetworkInstance_Protocol_DefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_DefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/default-metric YANG schema element. -type NetworkInstance_Protocol_DefaultMetricAny struct { +// NetworkInstance_Protocol_DefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/default-metric YANG schema element. +type NetworkInstance_Protocol_DefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/enabled YANG schema element. -type NetworkInstance_Protocol_Enabled struct { +// NetworkInstance_Protocol_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/enabled YANG schema element. +type NetworkInstance_Protocol_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/enabled YANG schema element. -type NetworkInstance_Protocol_EnabledAny struct { +// NetworkInstance_Protocol_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/enabled YANG schema element. +type NetworkInstance_Protocol_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Identifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/identifier YANG schema element. -type NetworkInstance_Protocol_Identifier struct { +// NetworkInstance_Protocol_IdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/identifier YANG schema element. +type NetworkInstance_Protocol_IdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_IdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/identifier YANG schema element. -type NetworkInstance_Protocol_IdentifierAny struct { +// NetworkInstance_Protocol_IdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/identifier YANG schema element. +type NetworkInstance_Protocol_IdentifierPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Name represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/name YANG schema element. -type NetworkInstance_Protocol_Name struct { +// NetworkInstance_Protocol_NamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/name YANG schema element. +type NetworkInstance_Protocol_NamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/state/name YANG schema element. -type NetworkInstance_Protocol_NameAny struct { +// NetworkInstance_Protocol_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/config/name YANG schema element. +type NetworkInstance_Protocol_NamePathAny struct { *ygot.NodePath } -// AggregateAny returns from NetworkInstance_Protocol the path struct for its child "aggregate". -func (n *NetworkInstance_Protocol) AggregateAny() *NetworkInstance_Protocol_AggregateAny { - return &NetworkInstance_Protocol_AggregateAny{ +// AggregateAny returns from NetworkInstance_ProtocolPath the path struct for its child "aggregate". +func (n *NetworkInstance_ProtocolPath) AggregateAny() *NetworkInstance_Protocol_AggregatePathAny { + return &NetworkInstance_Protocol_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": "*"}, @@ -77010,9 +77224,9 @@ func (n *NetworkInstance_Protocol) AggregateAny() *NetworkInstance_Protocol_Aggr } } -// AggregateAny returns from NetworkInstance_ProtocolAny the path struct for its child "aggregate". -func (n *NetworkInstance_ProtocolAny) AggregateAny() *NetworkInstance_Protocol_AggregateAny { - return &NetworkInstance_Protocol_AggregateAny{ +// AggregateAny returns from NetworkInstance_ProtocolPathAny the path struct for its child "aggregate". +func (n *NetworkInstance_ProtocolPathAny) AggregateAny() *NetworkInstance_Protocol_AggregatePathAny { + return &NetworkInstance_Protocol_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": "*"}, @@ -77021,9 +77235,9 @@ func (n *NetworkInstance_ProtocolAny) AggregateAny() *NetworkInstance_Protocol_A } } -// Aggregate returns from NetworkInstance_Protocol the path struct for its child "aggregate". -func (n *NetworkInstance_Protocol) Aggregate(Prefix string) *NetworkInstance_Protocol_Aggregate { - return &NetworkInstance_Protocol_Aggregate{ +// Aggregate returns from NetworkInstance_ProtocolPath the path struct for its child "aggregate". +func (n *NetworkInstance_ProtocolPath) Aggregate(Prefix string) *NetworkInstance_Protocol_AggregatePath { + return &NetworkInstance_Protocol_AggregatePath{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": Prefix}, @@ -77032,9 +77246,9 @@ func (n *NetworkInstance_Protocol) Aggregate(Prefix string) *NetworkInstance_Pro } } -// Aggregate returns from NetworkInstance_ProtocolAny the path struct for its child "aggregate". -func (n *NetworkInstance_ProtocolAny) Aggregate(Prefix string) *NetworkInstance_Protocol_AggregateAny { - return &NetworkInstance_Protocol_AggregateAny{ +// Aggregate returns from NetworkInstance_ProtocolPathAny the path struct for its child "aggregate". +func (n *NetworkInstance_ProtocolPathAny) Aggregate(Prefix string) *NetworkInstance_Protocol_AggregatePathAny { + return &NetworkInstance_Protocol_AggregatePathAny{ NodePath: ygot.NewNodePath( []string{"local-aggregates", "aggregate"}, map[string]interface{}{"prefix": Prefix}, @@ -77043,9 +77257,9 @@ func (n *NetworkInstance_ProtocolAny) Aggregate(Prefix string) *NetworkInstance_ } } -// Bgp returns from NetworkInstance_Protocol the path struct for its child "bgp". -func (n *NetworkInstance_Protocol) Bgp() *NetworkInstance_Protocol_Bgp { - return &NetworkInstance_Protocol_Bgp{ +// Bgp returns from NetworkInstance_ProtocolPath the path struct for its child "bgp". +func (n *NetworkInstance_ProtocolPath) Bgp() *NetworkInstance_Protocol_BgpPath { + return &NetworkInstance_Protocol_BgpPath{ NodePath: ygot.NewNodePath( []string{"bgp"}, map[string]interface{}{}, @@ -77054,9 +77268,9 @@ func (n *NetworkInstance_Protocol) Bgp() *NetworkInstance_Protocol_Bgp { } } -// Bgp returns from NetworkInstance_ProtocolAny the path struct for its child "bgp". -func (n *NetworkInstance_ProtocolAny) Bgp() *NetworkInstance_Protocol_BgpAny { - return &NetworkInstance_Protocol_BgpAny{ +// Bgp returns from NetworkInstance_ProtocolPathAny the path struct for its child "bgp". +func (n *NetworkInstance_ProtocolPathAny) Bgp() *NetworkInstance_Protocol_BgpPathAny { + return &NetworkInstance_Protocol_BgpPathAny{ NodePath: ygot.NewNodePath( []string{"bgp"}, map[string]interface{}{}, @@ -77065,75 +77279,75 @@ func (n *NetworkInstance_ProtocolAny) Bgp() *NetworkInstance_Protocol_BgpAny { } } -// DefaultMetric returns from NetworkInstance_Protocol the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol) DefaultMetric() *NetworkInstance_Protocol_DefaultMetric { - return &NetworkInstance_Protocol_DefaultMetric{ +// DefaultMetric returns from NetworkInstance_ProtocolPath the path struct for its child "default-metric". +func (n *NetworkInstance_ProtocolPath) DefaultMetric() *NetworkInstance_Protocol_DefaultMetricPath { + return &NetworkInstance_Protocol_DefaultMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-metric"}, + []string{"config", "default-metric"}, map[string]interface{}{}, n, ), } } -// DefaultMetric returns from NetworkInstance_ProtocolAny the path struct for its child "default-metric". -func (n *NetworkInstance_ProtocolAny) DefaultMetric() *NetworkInstance_Protocol_DefaultMetricAny { - return &NetworkInstance_Protocol_DefaultMetricAny{ +// DefaultMetric returns from NetworkInstance_ProtocolPathAny the path struct for its child "default-metric". +func (n *NetworkInstance_ProtocolPathAny) DefaultMetric() *NetworkInstance_Protocol_DefaultMetricPathAny { + return &NetworkInstance_Protocol_DefaultMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-metric"}, + []string{"config", "default-metric"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol the path struct for its child "enabled". -func (n *NetworkInstance_Protocol) Enabled() *NetworkInstance_Protocol_Enabled { - return &NetworkInstance_Protocol_Enabled{ +// Enabled returns from NetworkInstance_ProtocolPath the path struct for its child "enabled". +func (n *NetworkInstance_ProtocolPath) Enabled() *NetworkInstance_Protocol_EnabledPath { + return &NetworkInstance_Protocol_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_ProtocolAny the path struct for its child "enabled". -func (n *NetworkInstance_ProtocolAny) Enabled() *NetworkInstance_Protocol_EnabledAny { - return &NetworkInstance_Protocol_EnabledAny{ +// Enabled returns from NetworkInstance_ProtocolPathAny the path struct for its child "enabled". +func (n *NetworkInstance_ProtocolPathAny) Enabled() *NetworkInstance_Protocol_EnabledPathAny { + return &NetworkInstance_Protocol_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Identifier returns from NetworkInstance_Protocol the path struct for its child "identifier". -func (n *NetworkInstance_Protocol) Identifier() *NetworkInstance_Protocol_Identifier { - return &NetworkInstance_Protocol_Identifier{ +// Identifier returns from NetworkInstance_ProtocolPath the path struct for its child "identifier". +func (n *NetworkInstance_ProtocolPath) Identifier() *NetworkInstance_Protocol_IdentifierPath { + return &NetworkInstance_Protocol_IdentifierPath{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// Identifier returns from NetworkInstance_ProtocolAny the path struct for its child "identifier". -func (n *NetworkInstance_ProtocolAny) Identifier() *NetworkInstance_Protocol_IdentifierAny { - return &NetworkInstance_Protocol_IdentifierAny{ +// Identifier returns from NetworkInstance_ProtocolPathAny the path struct for its child "identifier". +func (n *NetworkInstance_ProtocolPathAny) Identifier() *NetworkInstance_Protocol_IdentifierPathAny { + return &NetworkInstance_Protocol_IdentifierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// Igmp returns from NetworkInstance_Protocol the path struct for its child "igmp". -func (n *NetworkInstance_Protocol) Igmp() *NetworkInstance_Protocol_Igmp { - return &NetworkInstance_Protocol_Igmp{ +// Igmp returns from NetworkInstance_ProtocolPath the path struct for its child "igmp". +func (n *NetworkInstance_ProtocolPath) Igmp() *NetworkInstance_Protocol_IgmpPath { + return &NetworkInstance_Protocol_IgmpPath{ NodePath: ygot.NewNodePath( []string{"igmp"}, map[string]interface{}{}, @@ -77142,9 +77356,9 @@ func (n *NetworkInstance_Protocol) Igmp() *NetworkInstance_Protocol_Igmp { } } -// Igmp returns from NetworkInstance_ProtocolAny the path struct for its child "igmp". -func (n *NetworkInstance_ProtocolAny) Igmp() *NetworkInstance_Protocol_IgmpAny { - return &NetworkInstance_Protocol_IgmpAny{ +// Igmp returns from NetworkInstance_ProtocolPathAny the path struct for its child "igmp". +func (n *NetworkInstance_ProtocolPathAny) Igmp() *NetworkInstance_Protocol_IgmpPathAny { + return &NetworkInstance_Protocol_IgmpPathAny{ NodePath: ygot.NewNodePath( []string{"igmp"}, map[string]interface{}{}, @@ -77153,9 +77367,9 @@ func (n *NetworkInstance_ProtocolAny) Igmp() *NetworkInstance_Protocol_IgmpAny { } } -// Isis returns from NetworkInstance_Protocol the path struct for its child "isis". -func (n *NetworkInstance_Protocol) Isis() *NetworkInstance_Protocol_Isis { - return &NetworkInstance_Protocol_Isis{ +// Isis returns from NetworkInstance_ProtocolPath the path struct for its child "isis". +func (n *NetworkInstance_ProtocolPath) Isis() *NetworkInstance_Protocol_IsisPath { + return &NetworkInstance_Protocol_IsisPath{ NodePath: ygot.NewNodePath( []string{"isis"}, map[string]interface{}{}, @@ -77164,9 +77378,9 @@ func (n *NetworkInstance_Protocol) Isis() *NetworkInstance_Protocol_Isis { } } -// Isis returns from NetworkInstance_ProtocolAny the path struct for its child "isis". -func (n *NetworkInstance_ProtocolAny) Isis() *NetworkInstance_Protocol_IsisAny { - return &NetworkInstance_Protocol_IsisAny{ +// Isis returns from NetworkInstance_ProtocolPathAny the path struct for its child "isis". +func (n *NetworkInstance_ProtocolPathAny) Isis() *NetworkInstance_Protocol_IsisPathAny { + return &NetworkInstance_Protocol_IsisPathAny{ NodePath: ygot.NewNodePath( []string{"isis"}, map[string]interface{}{}, @@ -77175,31 +77389,31 @@ func (n *NetworkInstance_ProtocolAny) Isis() *NetworkInstance_Protocol_IsisAny { } } -// Name returns from NetworkInstance_Protocol the path struct for its child "name". -func (n *NetworkInstance_Protocol) Name() *NetworkInstance_Protocol_Name { - return &NetworkInstance_Protocol_Name{ +// Name returns from NetworkInstance_ProtocolPath the path struct for its child "name". +func (n *NetworkInstance_ProtocolPath) Name() *NetworkInstance_Protocol_NamePath { + return &NetworkInstance_Protocol_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_ProtocolAny the path struct for its child "name". -func (n *NetworkInstance_ProtocolAny) Name() *NetworkInstance_Protocol_NameAny { - return &NetworkInstance_Protocol_NameAny{ +// Name returns from NetworkInstance_ProtocolPathAny the path struct for its child "name". +func (n *NetworkInstance_ProtocolPathAny) Name() *NetworkInstance_Protocol_NamePathAny { + return &NetworkInstance_Protocol_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Ospfv2 returns from NetworkInstance_Protocol the path struct for its child "ospfv2". -func (n *NetworkInstance_Protocol) Ospfv2() *NetworkInstance_Protocol_Ospfv2 { - return &NetworkInstance_Protocol_Ospfv2{ +// Ospfv2 returns from NetworkInstance_ProtocolPath the path struct for its child "ospfv2". +func (n *NetworkInstance_ProtocolPath) Ospfv2() *NetworkInstance_Protocol_Ospfv2Path { + return &NetworkInstance_Protocol_Ospfv2Path{ NodePath: ygot.NewNodePath( []string{"ospfv2"}, map[string]interface{}{}, @@ -77208,9 +77422,9 @@ func (n *NetworkInstance_Protocol) Ospfv2() *NetworkInstance_Protocol_Ospfv2 { } } -// Ospfv2 returns from NetworkInstance_ProtocolAny the path struct for its child "ospfv2". -func (n *NetworkInstance_ProtocolAny) Ospfv2() *NetworkInstance_Protocol_Ospfv2Any { - return &NetworkInstance_Protocol_Ospfv2Any{ +// Ospfv2 returns from NetworkInstance_ProtocolPathAny the path struct for its child "ospfv2". +func (n *NetworkInstance_ProtocolPathAny) Ospfv2() *NetworkInstance_Protocol_Ospfv2PathAny { + return &NetworkInstance_Protocol_Ospfv2PathAny{ NodePath: ygot.NewNodePath( []string{"ospfv2"}, map[string]interface{}{}, @@ -77219,9 +77433,9 @@ func (n *NetworkInstance_ProtocolAny) Ospfv2() *NetworkInstance_Protocol_Ospfv2A } } -// Pim returns from NetworkInstance_Protocol the path struct for its child "pim". -func (n *NetworkInstance_Protocol) Pim() *NetworkInstance_Protocol_Pim { - return &NetworkInstance_Protocol_Pim{ +// Pim returns from NetworkInstance_ProtocolPath the path struct for its child "pim". +func (n *NetworkInstance_ProtocolPath) Pim() *NetworkInstance_Protocol_PimPath { + return &NetworkInstance_Protocol_PimPath{ NodePath: ygot.NewNodePath( []string{"pim"}, map[string]interface{}{}, @@ -77230,9 +77444,9 @@ func (n *NetworkInstance_Protocol) Pim() *NetworkInstance_Protocol_Pim { } } -// Pim returns from NetworkInstance_ProtocolAny the path struct for its child "pim". -func (n *NetworkInstance_ProtocolAny) Pim() *NetworkInstance_Protocol_PimAny { - return &NetworkInstance_Protocol_PimAny{ +// Pim returns from NetworkInstance_ProtocolPathAny the path struct for its child "pim". +func (n *NetworkInstance_ProtocolPathAny) Pim() *NetworkInstance_Protocol_PimPathAny { + return &NetworkInstance_Protocol_PimPathAny{ NodePath: ygot.NewNodePath( []string{"pim"}, map[string]interface{}{}, @@ -77241,9 +77455,9 @@ func (n *NetworkInstance_ProtocolAny) Pim() *NetworkInstance_Protocol_PimAny { } } -// StaticAny returns from NetworkInstance_Protocol the path struct for its child "static". -func (n *NetworkInstance_Protocol) StaticAny() *NetworkInstance_Protocol_StaticAny { - return &NetworkInstance_Protocol_StaticAny{ +// StaticAny returns from NetworkInstance_ProtocolPath the path struct for its child "static". +func (n *NetworkInstance_ProtocolPath) StaticAny() *NetworkInstance_Protocol_StaticPathAny { + return &NetworkInstance_Protocol_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": "*"}, @@ -77252,9 +77466,9 @@ func (n *NetworkInstance_Protocol) StaticAny() *NetworkInstance_Protocol_StaticA } } -// StaticAny returns from NetworkInstance_ProtocolAny the path struct for its child "static". -func (n *NetworkInstance_ProtocolAny) StaticAny() *NetworkInstance_Protocol_StaticAny { - return &NetworkInstance_Protocol_StaticAny{ +// StaticAny returns from NetworkInstance_ProtocolPathAny the path struct for its child "static". +func (n *NetworkInstance_ProtocolPathAny) StaticAny() *NetworkInstance_Protocol_StaticPathAny { + return &NetworkInstance_Protocol_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": "*"}, @@ -77263,9 +77477,9 @@ func (n *NetworkInstance_ProtocolAny) StaticAny() *NetworkInstance_Protocol_Stat } } -// Static returns from NetworkInstance_Protocol the path struct for its child "static". -func (n *NetworkInstance_Protocol) Static(Prefix string) *NetworkInstance_Protocol_Static { - return &NetworkInstance_Protocol_Static{ +// Static returns from NetworkInstance_ProtocolPath the path struct for its child "static". +func (n *NetworkInstance_ProtocolPath) Static(Prefix string) *NetworkInstance_Protocol_StaticPath { + return &NetworkInstance_Protocol_StaticPath{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": Prefix}, @@ -77274,9 +77488,9 @@ func (n *NetworkInstance_Protocol) Static(Prefix string) *NetworkInstance_Protoc } } -// Static returns from NetworkInstance_ProtocolAny the path struct for its child "static". -func (n *NetworkInstance_ProtocolAny) Static(Prefix string) *NetworkInstance_Protocol_StaticAny { - return &NetworkInstance_Protocol_StaticAny{ +// Static returns from NetworkInstance_ProtocolPathAny the path struct for its child "static". +func (n *NetworkInstance_ProtocolPathAny) Static(Prefix string) *NetworkInstance_Protocol_StaticPathAny { + return &NetworkInstance_Protocol_StaticPathAny{ NodePath: ygot.NewNodePath( []string{"static-routes", "static"}, map[string]interface{}{"prefix": Prefix}, @@ -77285,157 +77499,157 @@ func (n *NetworkInstance_ProtocolAny) Static(Prefix string) *NetworkInstance_Pro } } -// NetworkInstance_Protocol_Aggregate represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate YANG schema element. -type NetworkInstance_Protocol_Aggregate struct { +// NetworkInstance_Protocol_AggregatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate YANG schema element. +type NetworkInstance_Protocol_AggregatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_AggregateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate YANG schema element. -type NetworkInstance_Protocol_AggregateAny struct { +// NetworkInstance_Protocol_AggregatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate YANG schema element. +type NetworkInstance_Protocol_AggregatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_Description represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/description YANG schema element. -type NetworkInstance_Protocol_Aggregate_Description struct { +// NetworkInstance_Protocol_Aggregate_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/description YANG schema element. +type NetworkInstance_Protocol_Aggregate_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/description YANG schema element. -type NetworkInstance_Protocol_Aggregate_DescriptionAny struct { +// NetworkInstance_Protocol_Aggregate_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/description YANG schema element. +type NetworkInstance_Protocol_Aggregate_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_Discard represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/discard YANG schema element. -type NetworkInstance_Protocol_Aggregate_Discard struct { +// NetworkInstance_Protocol_Aggregate_DiscardPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/discard YANG schema element. +type NetworkInstance_Protocol_Aggregate_DiscardPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_DiscardAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/discard YANG schema element. -type NetworkInstance_Protocol_Aggregate_DiscardAny struct { +// NetworkInstance_Protocol_Aggregate_DiscardPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/discard YANG schema element. +type NetworkInstance_Protocol_Aggregate_DiscardPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/prefix YANG schema element. -type NetworkInstance_Protocol_Aggregate_Prefix struct { +// NetworkInstance_Protocol_Aggregate_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/prefix YANG schema element. +type NetworkInstance_Protocol_Aggregate_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/prefix YANG schema element. -type NetworkInstance_Protocol_Aggregate_PrefixAny struct { +// NetworkInstance_Protocol_Aggregate_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/prefix YANG schema element. +type NetworkInstance_Protocol_Aggregate_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_SetTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/set-tag YANG schema element. -type NetworkInstance_Protocol_Aggregate_SetTag struct { +// NetworkInstance_Protocol_Aggregate_SetTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/set-tag YANG schema element. +type NetworkInstance_Protocol_Aggregate_SetTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Aggregate_SetTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/state/set-tag YANG schema element. -type NetworkInstance_Protocol_Aggregate_SetTagAny struct { +// NetworkInstance_Protocol_Aggregate_SetTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/local-aggregates/aggregate/config/set-tag YANG schema element. +type NetworkInstance_Protocol_Aggregate_SetTagPathAny struct { *ygot.NodePath } -// Description returns from NetworkInstance_Protocol_Aggregate the path struct for its child "description". -func (n *NetworkInstance_Protocol_Aggregate) Description() *NetworkInstance_Protocol_Aggregate_Description { - return &NetworkInstance_Protocol_Aggregate_Description{ +// Description returns from NetworkInstance_Protocol_AggregatePath the path struct for its child "description". +func (n *NetworkInstance_Protocol_AggregatePath) Description() *NetworkInstance_Protocol_Aggregate_DescriptionPath { + return &NetworkInstance_Protocol_Aggregate_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_AggregateAny the path struct for its child "description". -func (n *NetworkInstance_Protocol_AggregateAny) Description() *NetworkInstance_Protocol_Aggregate_DescriptionAny { - return &NetworkInstance_Protocol_Aggregate_DescriptionAny{ +// Description returns from NetworkInstance_Protocol_AggregatePathAny the path struct for its child "description". +func (n *NetworkInstance_Protocol_AggregatePathAny) Description() *NetworkInstance_Protocol_Aggregate_DescriptionPathAny { + return &NetworkInstance_Protocol_Aggregate_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Discard returns from NetworkInstance_Protocol_Aggregate the path struct for its child "discard". -func (n *NetworkInstance_Protocol_Aggregate) Discard() *NetworkInstance_Protocol_Aggregate_Discard { - return &NetworkInstance_Protocol_Aggregate_Discard{ +// Discard returns from NetworkInstance_Protocol_AggregatePath the path struct for its child "discard". +func (n *NetworkInstance_Protocol_AggregatePath) Discard() *NetworkInstance_Protocol_Aggregate_DiscardPath { + return &NetworkInstance_Protocol_Aggregate_DiscardPath{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// Discard returns from NetworkInstance_Protocol_AggregateAny the path struct for its child "discard". -func (n *NetworkInstance_Protocol_AggregateAny) Discard() *NetworkInstance_Protocol_Aggregate_DiscardAny { - return &NetworkInstance_Protocol_Aggregate_DiscardAny{ +// Discard returns from NetworkInstance_Protocol_AggregatePathAny the path struct for its child "discard". +func (n *NetworkInstance_Protocol_AggregatePathAny) Discard() *NetworkInstance_Protocol_Aggregate_DiscardPathAny { + return &NetworkInstance_Protocol_Aggregate_DiscardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "discard"}, + []string{"config", "discard"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_Aggregate the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Aggregate) Prefix() *NetworkInstance_Protocol_Aggregate_Prefix { - return &NetworkInstance_Protocol_Aggregate_Prefix{ +// Prefix returns from NetworkInstance_Protocol_AggregatePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_AggregatePath) Prefix() *NetworkInstance_Protocol_Aggregate_PrefixPath { + return &NetworkInstance_Protocol_Aggregate_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_AggregateAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_AggregateAny) Prefix() *NetworkInstance_Protocol_Aggregate_PrefixAny { - return &NetworkInstance_Protocol_Aggregate_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_AggregatePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_AggregatePathAny) Prefix() *NetworkInstance_Protocol_Aggregate_PrefixPathAny { + return &NetworkInstance_Protocol_Aggregate_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// SetTag returns from NetworkInstance_Protocol_Aggregate the path struct for its child "set-tag". -func (n *NetworkInstance_Protocol_Aggregate) SetTag() *NetworkInstance_Protocol_Aggregate_SetTag { - return &NetworkInstance_Protocol_Aggregate_SetTag{ +// SetTag returns from NetworkInstance_Protocol_AggregatePath the path struct for its child "set-tag". +func (n *NetworkInstance_Protocol_AggregatePath) SetTag() *NetworkInstance_Protocol_Aggregate_SetTagPath { + return &NetworkInstance_Protocol_Aggregate_SetTagPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// SetTag returns from NetworkInstance_Protocol_AggregateAny the path struct for its child "set-tag". -func (n *NetworkInstance_Protocol_AggregateAny) SetTag() *NetworkInstance_Protocol_Aggregate_SetTagAny { - return &NetworkInstance_Protocol_Aggregate_SetTagAny{ +// SetTag returns from NetworkInstance_Protocol_AggregatePathAny the path struct for its child "set-tag". +func (n *NetworkInstance_Protocol_AggregatePathAny) SetTag() *NetworkInstance_Protocol_Aggregate_SetTagPathAny { + return &NetworkInstance_Protocol_Aggregate_SetTagPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp YANG schema element. -type NetworkInstance_Protocol_Bgp struct { +// NetworkInstance_Protocol_BgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp YANG schema element. +type NetworkInstance_Protocol_BgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_BgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp YANG schema element. -type NetworkInstance_Protocol_BgpAny struct { +// NetworkInstance_Protocol_BgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp YANG schema element. +type NetworkInstance_Protocol_BgpPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Protocol_Bgp the path struct for its child "global". -func (n *NetworkInstance_Protocol_Bgp) Global() *NetworkInstance_Protocol_Bgp_Global { - return &NetworkInstance_Protocol_Bgp_Global{ +// Global returns from NetworkInstance_Protocol_BgpPath the path struct for its child "global". +func (n *NetworkInstance_Protocol_BgpPath) Global() *NetworkInstance_Protocol_Bgp_GlobalPath { + return &NetworkInstance_Protocol_Bgp_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -77444,9 +77658,9 @@ func (n *NetworkInstance_Protocol_Bgp) Global() *NetworkInstance_Protocol_Bgp_Gl } } -// Global returns from NetworkInstance_Protocol_BgpAny the path struct for its child "global". -func (n *NetworkInstance_Protocol_BgpAny) Global() *NetworkInstance_Protocol_Bgp_GlobalAny { - return &NetworkInstance_Protocol_Bgp_GlobalAny{ +// Global returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "global". +func (n *NetworkInstance_Protocol_BgpPathAny) Global() *NetworkInstance_Protocol_Bgp_GlobalPathAny { + return &NetworkInstance_Protocol_Bgp_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -77455,9 +77669,9 @@ func (n *NetworkInstance_Protocol_BgpAny) Global() *NetworkInstance_Protocol_Bgp } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp) NeighborAny() *NetworkInstance_Protocol_Bgp_NeighborAny { - return &NetworkInstance_Protocol_Bgp_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_BgpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_BgpPath) NeighborAny() *NetworkInstance_Protocol_Bgp_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -77466,9 +77680,9 @@ func (n *NetworkInstance_Protocol_Bgp) NeighborAny() *NetworkInstance_Protocol_B } } -// NeighborAny returns from NetworkInstance_Protocol_BgpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_BgpAny) NeighborAny() *NetworkInstance_Protocol_Bgp_NeighborAny { - return &NetworkInstance_Protocol_Bgp_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_BgpPathAny) NeighborAny() *NetworkInstance_Protocol_Bgp_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -77477,9 +77691,9 @@ func (n *NetworkInstance_Protocol_BgpAny) NeighborAny() *NetworkInstance_Protoco } } -// Neighbor returns from NetworkInstance_Protocol_Bgp the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Neighbor { - return &NetworkInstance_Protocol_Bgp_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_BgpPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_BgpPath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_NeighborPath { + return &NetworkInstance_Protocol_Bgp_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -77488,9 +77702,9 @@ func (n *NetworkInstance_Protocol_Bgp) Neighbor(NeighborAddress string) *Network } } -// Neighbor returns from NetworkInstance_Protocol_BgpAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_BgpAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_NeighborAny { - return &NetworkInstance_Protocol_Bgp_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_BgpPathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -77499,9 +77713,9 @@ func (n *NetworkInstance_Protocol_BgpAny) Neighbor(NeighborAddress string) *Netw } } -// PeerGroupAny returns from NetworkInstance_Protocol_Bgp the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp) PeerGroupAny() *NetworkInstance_Protocol_Bgp_PeerGroupAny { - return &NetworkInstance_Protocol_Bgp_PeerGroupAny{ +// PeerGroupAny returns from NetworkInstance_Protocol_BgpPath the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_BgpPath) PeerGroupAny() *NetworkInstance_Protocol_Bgp_PeerGroupPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": "*"}, @@ -77510,9 +77724,9 @@ func (n *NetworkInstance_Protocol_Bgp) PeerGroupAny() *NetworkInstance_Protocol_ } } -// PeerGroupAny returns from NetworkInstance_Protocol_BgpAny the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_BgpAny) PeerGroupAny() *NetworkInstance_Protocol_Bgp_PeerGroupAny { - return &NetworkInstance_Protocol_Bgp_PeerGroupAny{ +// PeerGroupAny returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_BgpPathAny) PeerGroupAny() *NetworkInstance_Protocol_Bgp_PeerGroupPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": "*"}, @@ -77521,9 +77735,9 @@ func (n *NetworkInstance_Protocol_BgpAny) PeerGroupAny() *NetworkInstance_Protoc } } -// PeerGroup returns from NetworkInstance_Protocol_Bgp the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp) PeerGroup(PeerGroupName string) *NetworkInstance_Protocol_Bgp_PeerGroup { - return &NetworkInstance_Protocol_Bgp_PeerGroup{ +// PeerGroup returns from NetworkInstance_Protocol_BgpPath the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_BgpPath) PeerGroup(PeerGroupName string) *NetworkInstance_Protocol_Bgp_PeerGroupPath { + return &NetworkInstance_Protocol_Bgp_PeerGroupPath{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": PeerGroupName}, @@ -77532,9 +77746,9 @@ func (n *NetworkInstance_Protocol_Bgp) PeerGroup(PeerGroupName string) *NetworkI } } -// PeerGroup returns from NetworkInstance_Protocol_BgpAny the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_BgpAny) PeerGroup(PeerGroupName string) *NetworkInstance_Protocol_Bgp_PeerGroupAny { - return &NetworkInstance_Protocol_Bgp_PeerGroupAny{ +// PeerGroup returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_BgpPathAny) PeerGroup(PeerGroupName string) *NetworkInstance_Protocol_Bgp_PeerGroupPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"peer-groups", "peer-group"}, map[string]interface{}{"peer-group-name": PeerGroupName}, @@ -77543,9 +77757,9 @@ func (n *NetworkInstance_Protocol_BgpAny) PeerGroup(PeerGroupName string) *Netwo } } -// Rib returns from NetworkInstance_Protocol_Bgp the path struct for its child "rib". -func (n *NetworkInstance_Protocol_Bgp) Rib() *NetworkInstance_Protocol_Bgp_Rib { - return &NetworkInstance_Protocol_Bgp_Rib{ +// Rib returns from NetworkInstance_Protocol_BgpPath the path struct for its child "rib". +func (n *NetworkInstance_Protocol_BgpPath) Rib() *NetworkInstance_Protocol_Bgp_RibPath { + return &NetworkInstance_Protocol_Bgp_RibPath{ NodePath: ygot.NewNodePath( []string{"rib"}, map[string]interface{}{}, @@ -77554,9 +77768,9 @@ func (n *NetworkInstance_Protocol_Bgp) Rib() *NetworkInstance_Protocol_Bgp_Rib { } } -// Rib returns from NetworkInstance_Protocol_BgpAny the path struct for its child "rib". -func (n *NetworkInstance_Protocol_BgpAny) Rib() *NetworkInstance_Protocol_Bgp_RibAny { - return &NetworkInstance_Protocol_Bgp_RibAny{ +// Rib returns from NetworkInstance_Protocol_BgpPathAny the path struct for its child "rib". +func (n *NetworkInstance_Protocol_BgpPathAny) Rib() *NetworkInstance_Protocol_Bgp_RibPathAny { + return &NetworkInstance_Protocol_Bgp_RibPathAny{ NodePath: ygot.NewNodePath( []string{"rib"}, map[string]interface{}{}, @@ -77565,59 +77779,59 @@ func (n *NetworkInstance_Protocol_BgpAny) Rib() *NetworkInstance_Protocol_Bgp_Ri } } -// NetworkInstance_Protocol_Bgp_Global represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global YANG schema element. -type NetworkInstance_Protocol_Bgp_Global struct { +// NetworkInstance_Protocol_Bgp_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global YANG schema element. +type NetworkInstance_Protocol_Bgp_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global YANG schema element. -type NetworkInstance_Protocol_Bgp_GlobalAny struct { +// NetworkInstance_Protocol_Bgp_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global YANG schema element. +type NetworkInstance_Protocol_Bgp_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_As represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_As struct { +// NetworkInstance_Protocol_Bgp_Global_AsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/config/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/config/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouterId struct { +// NetworkInstance_Protocol_Bgp_Global_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/config/router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouterIdAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/config/router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_TotalPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_TotalPaths struct { +// NetworkInstance_Protocol_Bgp_Global_TotalPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_TotalPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_TotalPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_TotalPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_TotalPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_TotalPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_TotalPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_TotalPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_TotalPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_TotalPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Global) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -77626,9 +77840,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) AfiSafiAny() *NetworkInstance_Prot } } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -77637,9 +77851,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) AfiSafiAny() *NetworkInstance_P } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Global) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Global_AfiSafi { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -77648,9 +77862,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) AfiSafi(AfiSafiName oc.E_Openconfi } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafiAny{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -77659,31 +77873,31 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) AfiSafi(AfiSafiName oc.E_Openco } } -// As returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_Global) As() *NetworkInstance_Protocol_Bgp_Global_As { - return &NetworkInstance_Protocol_Bgp_Global_As{ +// As returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) As() *NetworkInstance_Protocol_Bgp_Global_AsPath { + return &NetworkInstance_Protocol_Bgp_Global_AsPath{ NodePath: ygot.NewNodePath( - []string{"state", "as"}, + []string{"config", "as"}, map[string]interface{}{}, n, ), } } -// As returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) As() *NetworkInstance_Protocol_Bgp_Global_AsAny { - return &NetworkInstance_Protocol_Bgp_Global_AsAny{ +// As returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) As() *NetworkInstance_Protocol_Bgp_Global_AsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "as"}, + []string{"config", "as"}, map[string]interface{}{}, n, ), } } -// Confederation returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "confederation". -func (n *NetworkInstance_Protocol_Bgp_Global) Confederation() *NetworkInstance_Protocol_Bgp_Global_Confederation { - return &NetworkInstance_Protocol_Bgp_Global_Confederation{ +// Confederation returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "confederation". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) Confederation() *NetworkInstance_Protocol_Bgp_Global_ConfederationPath { + return &NetworkInstance_Protocol_Bgp_Global_ConfederationPath{ NodePath: ygot.NewNodePath( []string{"confederation"}, map[string]interface{}{}, @@ -77692,9 +77906,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) Confederation() *NetworkInstance_P } } -// Confederation returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "confederation". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) Confederation() *NetworkInstance_Protocol_Bgp_Global_ConfederationAny { - return &NetworkInstance_Protocol_Bgp_Global_ConfederationAny{ +// Confederation returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "confederation". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) Confederation() *NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny { + return &NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny{ NodePath: ygot.NewNodePath( []string{"confederation"}, map[string]interface{}{}, @@ -77703,9 +77917,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) Confederation() *NetworkInstanc } } -// DefaultRouteDistance returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "default-route-distance". -func (n *NetworkInstance_Protocol_Bgp_Global) DefaultRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance{ +// DefaultRouteDistance returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "default-route-distance". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) DefaultRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath{ NodePath: ygot.NewNodePath( []string{"default-route-distance"}, map[string]interface{}{}, @@ -77714,9 +77928,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) DefaultRouteDistance() *NetworkIns } } -// DefaultRouteDistance returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "default-route-distance". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DefaultRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny{ +// DefaultRouteDistance returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "default-route-distance". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) DefaultRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny{ NodePath: ygot.NewNodePath( []string{"default-route-distance"}, map[string]interface{}{}, @@ -77725,9 +77939,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DefaultRouteDistance() *Network } } -// DynamicNeighborPrefixAny returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "dynamic-neighbor-prefix". -func (n *NetworkInstance_Protocol_Bgp_Global) DynamicNeighborPrefixAny() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefixAny returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "dynamic-neighbor-prefix". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) DynamicNeighborPrefixAny() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": "*"}, @@ -77736,9 +77950,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) DynamicNeighborPrefixAny() *Networ } } -// DynamicNeighborPrefixAny returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "dynamic-neighbor-prefix". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DynamicNeighborPrefixAny() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefixAny returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "dynamic-neighbor-prefix". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) DynamicNeighborPrefixAny() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": "*"}, @@ -77747,9 +77961,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DynamicNeighborPrefixAny() *Net } } -// DynamicNeighborPrefix returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "dynamic-neighbor-prefix". -func (n *NetworkInstance_Protocol_Bgp_Global) DynamicNeighborPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix{ +// DynamicNeighborPrefix returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "dynamic-neighbor-prefix". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) DynamicNeighborPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -77758,9 +77972,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) DynamicNeighborPrefix(Prefix strin } } -// DynamicNeighborPrefix returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "dynamic-neighbor-prefix". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DynamicNeighborPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny{ +// DynamicNeighborPrefix returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "dynamic-neighbor-prefix". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) DynamicNeighborPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"dynamic-neighbor-prefixes", "dynamic-neighbor-prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -77769,9 +77983,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) DynamicNeighborPrefix(Prefix st } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Global) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -77780,9 +77994,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) GracefulRestart() *NetworkInstance } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -77791,9 +78005,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) GracefulRestart() *NetworkInsta } } -// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "route-selection-options". -func (n *NetworkInstance_Protocol_Bgp_Global) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions{ +// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "route-selection-options". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -77802,9 +78016,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) RouteSelectionOptions() *NetworkIn } } -// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "route-selection-options". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny{ +// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "route-selection-options". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -77813,31 +78027,31 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) RouteSelectionOptions() *Networ } } -// RouterId returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Bgp_Global) RouterId() *NetworkInstance_Protocol_Bgp_Global_RouterId { - return &NetworkInstance_Protocol_Bgp_Global_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) RouterId() *NetworkInstance_Protocol_Bgp_Global_RouterIdPath { + return &NetworkInstance_Protocol_Bgp_Global_RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// RouterId returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) RouterId() *NetworkInstance_Protocol_Bgp_Global_RouterIdAny { - return &NetworkInstance_Protocol_Bgp_Global_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) RouterId() *NetworkInstance_Protocol_Bgp_Global_RouterIdPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_Global) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_TotalPaths { - return &NetworkInstance_Protocol_Bgp_Global_TotalPaths{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_TotalPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -77846,9 +78060,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) TotalPaths() *NetworkInstance_Prot } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_TotalPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_TotalPathsAny{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_TotalPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -77857,9 +78071,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) TotalPaths() *NetworkInstance_P } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_TotalPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_TotalPrefixes{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -77868,9 +78082,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) TotalPrefixes() *NetworkInstance_P } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_TotalPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_TotalPrefixesAny{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -77879,9 +78093,9 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) TotalPrefixes() *NetworkInstanc } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Global the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Global) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_GlobalPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_GlobalPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -77890,9 +78104,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global) UseMultiplePaths() *NetworkInstanc } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_GlobalAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_GlobalAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_GlobalPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_GlobalPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -77901,59 +78115,59 @@ func (n *NetworkInstance_Protocol_Bgp_GlobalAny) UseMultiplePaths() *NetworkInst } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafiAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiName struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNameAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Enabled struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPaths struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPathAny struct { *ygot.NodePath } -// AddPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) AddPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) AddPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -77962,9 +78176,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) AddPaths() *NetworkInstanc } } -// AddPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) AddPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) AddPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -77973,53 +78187,53 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) AddPaths() *NetworkInst } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) AfiSafiName() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiName { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiName{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) AfiSafiName() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNameAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Enabled { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -78028,9 +78242,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) GracefulRestart() *Network } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -78039,9 +78253,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) GracefulRestart() *Netw } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -78050,9 +78264,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv4LabeledUnicast() *Netw } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -78061,9 +78275,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv4LabeledUnicast() *N } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -78072,9 +78286,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv4Unicast() *NetworkInst } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -78083,9 +78297,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv4Unicast() *NetworkI } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -78094,9 +78308,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv6LabeledUnicast() *Netw } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -78105,9 +78319,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv6LabeledUnicast() *N } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -78116,9 +78330,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) Ipv6Unicast() *NetworkInst } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -78127,9 +78341,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) Ipv6Unicast() *NetworkI } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -78138,9 +78352,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L2VpnEvpn() *NetworkInstan } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -78149,9 +78363,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L2VpnEvpn() *NetworkIns } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -78160,9 +78374,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L2VpnVpls() *NetworkInstan } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -78171,9 +78385,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L2VpnVpls() *NetworkIns } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -78182,9 +78396,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv4Multicast() *Netw } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -78193,9 +78407,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv4Multicast() *N } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -78204,9 +78418,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv4Unicast() *Networ } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -78215,9 +78429,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv4Unicast() *Net } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -78226,9 +78440,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv6Multicast() *Netw } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -78237,9 +78451,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv6Multicast() *N } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -78248,9 +78462,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) L3VpnIpv6Unicast() *Networ } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -78259,9 +78473,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) L3VpnIpv6Unicast() *Net } } -// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "route-selection-options". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions{ +// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "route-selection-options". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -78270,9 +78484,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) RouteSelectionOptions() *N } } -// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "route-selection-options". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny{ +// RouteSelectionOptions returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "route-selection-options". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) RouteSelectionOptions() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"route-selection-options"}, map[string]interface{}{}, @@ -78281,9 +78495,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) RouteSelectionOptions() } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4 { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -78292,9 +78506,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) SrtePolicyIpv4() *NetworkI } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -78303,9 +78517,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) SrtePolicyIpv4() *Netwo } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6 { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -78314,9 +78528,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) SrtePolicyIpv6() *NetworkI } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -78325,9 +78539,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) SrtePolicyIpv6() *Netwo } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPaths { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPaths{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -78336,9 +78550,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) TotalPaths() *NetworkInsta } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsAny{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) TotalPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -78347,9 +78561,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) TotalPaths() *NetworkIn } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixes{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -78358,9 +78572,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) TotalPrefixes() *NetworkIn } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesAny{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -78369,9 +78583,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) TotalPrefixes() *Networ } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -78380,9 +78594,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi) UseMultiplePaths() *Networ } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -78391,199 +78605,199 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafiAny) UseMultiplePaths() *Net } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Receive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Receive struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceiveAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Send represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Send struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMax represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMax struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths) Receive() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Receive { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Receive{ +// Receive returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath) Receive() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny) Receive() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceiveAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny) Receive() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths) Send() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Send { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_Send{ +// Send returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath) Send() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny) Send() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendAny{ +// Send returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny) Send() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths) SendMax() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMax { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMax{ +// SendMax returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPath) SendMax() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsAny) SendMax() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPathsPathAny) SendMax() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78592,9 +78806,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78603,167 +78817,167 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78772,9 +78986,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78783,179 +78997,179 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny) PrefixLimit } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78964,9 +79178,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -78975,167 +79189,167 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79144,9 +79358,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79155,179 +79369,179 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny) PrefixLimit } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79336,9 +79550,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn) PrefixLimit() *N } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79347,157 +79561,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpnAny) PrefixLimit() } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79506,9 +79720,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls) PrefixLimit() *N } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79517,157 +79731,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVplsAny) PrefixLimit() } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79676,9 +79890,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79687,157 +79901,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4MulticastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79846,9 +80060,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast) PrefixLim } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -79857,157 +80071,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4UnicastAny) Prefix } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80016,9 +80230,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80027,157 +80241,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6MulticastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80186,9 +80400,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast) PrefixLim } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80197,359 +80411,359 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6UnicastAny) Prefix } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/advertise-inactive-routes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/advertise-inactive-routes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/advertise-inactive-routes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/advertise-inactive-routes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/always-compare-med YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/always-compare-med YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/always-compare-med YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/always-compare-med YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/enable-aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/enable-aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/enable-aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/enable-aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/external-compare-router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/external-compare-router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/external-compare-router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/external-compare-router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-as-path-length YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-as-path-length YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-as-path-length YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-as-path-length YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny struct { *ygot.NodePath } -// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "advertise-inactive-routes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutes{ +// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "advertise-inactive-routes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "advertise-inactive-routes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesAny{ +// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "advertise-inactive-routes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "always-compare-med". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMed{ +// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "always-compare-med". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPath{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "always-compare-med". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedAny{ +// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "always-compare-med". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_AlwaysCompareMedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "enable-aigp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigp{ +// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "enable-aigp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "enable-aigp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpAny{ +// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "enable-aigp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_EnableAigpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "external-compare-router-id". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterId{ +// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "external-compare-router-id". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "external-compare-router-id". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdAny{ +// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "external-compare-router-id". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_ExternalCompareRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "ignore-as-path-length". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLength{ +// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "ignore-as-path-length". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "ignore-as-path-length". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthAny{ +// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "ignore-as-path-length". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreAsPathLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions the path struct for its child "ignore-next-hop-igp-metric". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetric{ +// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath the path struct for its child "ignore-next-hop-igp-metric". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPath) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny the path struct for its child "ignore-next-hop-igp-metric". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsAny) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricAny{ +// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny the path struct for its child "ignore-next-hop-igp-metric". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptionsPathAny) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4 struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80558,9 +80772,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4) PrefixLimit } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80569,157 +80783,157 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4Any) PrefixLi } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6 struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80728,9 +80942,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6) PrefixLimit } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -80739,167 +80953,167 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6Any) PrefixLi } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -80908,9 +81122,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths) Ebgp() *N } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -80919,31 +81133,31 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny) Ebgp() } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths) Ibgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPath) Ibgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -80952,9 +81166,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths) Ibgp() *N } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny) Ibgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsPathAny) Ibgp() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -80963,707 +81177,707 @@ func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePathsAny) Ibgp() } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_EbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_IbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_Confederation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_Confederation struct { +// NetworkInstance_Protocol_Bgp_Global_ConfederationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_ConfederationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_ConfederationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_ConfederationAny struct { +// NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_Confederation_Identifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/state/identifier YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_Confederation_Identifier struct { +// NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/config/identifier YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/state/identifier YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierAny struct { +// NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/config/identifier YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/state/member-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAs struct { +// NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/config/member-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/state/member-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsAny struct { +// NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/confederation/config/member-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPathAny struct { *ygot.NodePath } -// Identifier returns from NetworkInstance_Protocol_Bgp_Global_Confederation the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Bgp_Global_Confederation) Identifier() *NetworkInstance_Protocol_Bgp_Global_Confederation_Identifier { - return &NetworkInstance_Protocol_Bgp_Global_Confederation_Identifier{ +// Identifier returns from NetworkInstance_Protocol_Bgp_Global_ConfederationPath the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationPath) Identifier() *NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPath { + return &NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPath{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// Identifier returns from NetworkInstance_Protocol_Bgp_Global_ConfederationAny the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationAny) Identifier() *NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierAny { - return &NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierAny{ +// Identifier returns from NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny) Identifier() *NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPathAny { + return &NetworkInstance_Protocol_Bgp_Global_Confederation_IdentifierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// MemberAs returns from NetworkInstance_Protocol_Bgp_Global_Confederation the path struct for its child "member-as". -func (n *NetworkInstance_Protocol_Bgp_Global_Confederation) MemberAs() *NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAs { - return &NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAs{ +// MemberAs returns from NetworkInstance_Protocol_Bgp_Global_ConfederationPath the path struct for its child "member-as". +func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationPath) MemberAs() *NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPath { + return &NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "member-as"}, + []string{"config", "member-as"}, map[string]interface{}{}, n, ), } } -// MemberAs returns from NetworkInstance_Protocol_Bgp_Global_ConfederationAny the path struct for its child "member-as". -func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationAny) MemberAs() *NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsAny { - return &NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsAny{ +// MemberAs returns from NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny the path struct for its child "member-as". +func (n *NetworkInstance_Protocol_Bgp_Global_ConfederationPathAny) MemberAs() *NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_Confederation_MemberAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "member-as"}, + []string{"config", "member-as"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/state/external-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistance struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/config/external-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/state/external-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/config/external-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/state/internal-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistance struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/config/internal-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/state/internal-route-distance YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny struct { +// NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/default-route-distance/config/internal-route-distance YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny struct { *ygot.NodePath } -// ExternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance the path struct for its child "external-route-distance". -func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance) ExternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistance { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistance{ +// ExternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath the path struct for its child "external-route-distance". +func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath) ExternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePath{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-distance"}, + []string{"config", "external-route-distance"}, map[string]interface{}{}, n, ), } } -// ExternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny the path struct for its child "external-route-distance". -func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny) ExternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistanceAny{ +// ExternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny the path struct for its child "external-route-distance". +func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny) ExternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_ExternalRouteDistancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-distance"}, + []string{"config", "external-route-distance"}, map[string]interface{}{}, n, ), } } -// InternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance the path struct for its child "internal-route-distance". -func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance) InternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistance { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistance{ +// InternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath the path struct for its child "internal-route-distance". +func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePath) InternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePath{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-distance"}, + []string{"config", "internal-route-distance"}, map[string]interface{}{}, n, ), } } -// InternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny the path struct for its child "internal-route-distance". -func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistanceAny) InternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny { - return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistanceAny{ +// InternalRouteDistance returns from NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny the path struct for its child "internal-route-distance". +func (n *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistancePathAny) InternalRouteDistance() *NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny { + return &NetworkInstance_Protocol_Bgp_Global_DefaultRouteDistance_InternalRouteDistancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-distance"}, + []string{"config", "internal-route-distance"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroup struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupAny struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_Prefix struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/dynamic-neighbor-prefixes/dynamic-neighbor-prefix/config/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPathAny struct { *ygot.NodePath } -// PeerGroup returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix) PeerGroup() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroup { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroup{ +// PeerGroup returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath) PeerGroup() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPath { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny) PeerGroup() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupAny { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupAny{ +// PeerGroup returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny) PeerGroup() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PeerGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix) Prefix() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_Prefix { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPath) Prefix() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixAny) Prefix() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefixPathAny) Prefix() *NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Global_DynamicNeighborPrefix_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnly represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnly struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyAny struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTime struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimeAny struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTime struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimeAny struct { +// NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestart the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestart) HelperOnly() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnly { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnly{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath) HelperOnly() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPath { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny) HelperOnly() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyAny { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny) HelperOnly() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPathAny { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestart the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestart) RestartTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTime { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTime{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath) RestartTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePath { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny) RestartTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimeAny { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimeAny{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny) RestartTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePathAny { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestart the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestart) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTime { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPath) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePath { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimeAny { - return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_Global_GracefulRestartPathAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePathAny { + return &NetworkInstance_Protocol_Bgp_Global_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/advertise-inactive-routes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/advertise-inactive-routes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/advertise-inactive-routes YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/advertise-inactive-routes YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/always-compare-med YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMed struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/always-compare-med YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/always-compare-med YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/always-compare-med YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/enable-aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigp struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/enable-aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/enable-aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/enable-aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/external-compare-router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/external-compare-router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/external-compare-router-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/external-compare-router-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/ignore-as-path-length YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/ignore-as-path-length YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/ignore-as-path-length YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/ignore-as-path-length YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/state/ignore-next-hop-igp-metric YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny struct { +// NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/route-selection-options/config/ignore-next-hop-igp-metric YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny struct { *ygot.NodePath } -// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "advertise-inactive-routes". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutes{ +// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "advertise-inactive-routes". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "advertise-inactive-routes". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesAny{ +// AdvertiseInactiveRoutes returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "advertise-inactive-routes". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) AdvertiseInactiveRoutes() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AdvertiseInactiveRoutesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-inactive-routes"}, + []string{"config", "advertise-inactive-routes"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "always-compare-med". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMed { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMed{ +// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "always-compare-med". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPath{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "always-compare-med". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedAny{ +// AlwaysCompareMed returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "always-compare-med". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) AlwaysCompareMed() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_AlwaysCompareMedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "always-compare-med"}, + []string{"config", "always-compare-med"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "enable-aigp". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigp { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigp{ +// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "enable-aigp". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "enable-aigp". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpAny{ +// EnableAigp returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "enable-aigp". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) EnableAigp() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_EnableAigpPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-aigp"}, + []string{"config", "enable-aigp"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "external-compare-router-id". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterId{ +// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "external-compare-router-id". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "external-compare-router-id". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdAny{ +// ExternalCompareRouterId returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "external-compare-router-id". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) ExternalCompareRouterId() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_ExternalCompareRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-compare-router-id"}, + []string{"config", "external-compare-router-id"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "ignore-as-path-length". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLength{ +// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "ignore-as-path-length". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "ignore-as-path-length". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthAny{ +// IgnoreAsPathLength returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "ignore-as-path-length". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) IgnoreAsPathLength() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreAsPathLengthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-as-path-length"}, + []string{"config", "ignore-as-path-length"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions the path struct for its child "ignore-next-hop-igp-metric". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetric{ +// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath the path struct for its child "ignore-next-hop-igp-metric". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPath) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny the path struct for its child "ignore-next-hop-igp-metric". -func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsAny) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny { - return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricAny{ +// IgnoreNextHopIgpMetric returns from NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny the path struct for its child "ignore-next-hop-igp-metric". +func (n *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptionsPathAny) IgnoreNextHopIgpMetric() *NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny { + return &NetworkInstance_Protocol_Bgp_Global_RouteSelectionOptions_IgnoreNextHopIgpMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-next-hop-igp-metric"}, + []string{"config", "ignore-next-hop-igp-metric"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -81672,9 +81886,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths) Ebgp() *NetworkIn } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -81683,31 +81897,31 @@ func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny) Ebgp() *Networ } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths) Ibgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPath) Ibgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -81716,9 +81930,9 @@ func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths) Ibgp() *NetworkIn } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny) Ibgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsPathAny) Ibgp() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -81727,295 +81941,295 @@ func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePathsAny) Ibgp() *Networ } } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_EbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/global/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_IbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Global_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor struct { +// NetworkInstance_Protocol_Bgp_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_NeighborAny struct { +// NetworkInstance_Protocol_Bgp_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AuthPassword represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AuthPassword struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Description represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/description YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Description struct { +// NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/description YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/description YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_DescriptionAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/description YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfigured represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfigured struct { +// NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/dynamically-configured YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/established-transitions YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitions struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/established-transitions YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/established-transitions YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/established-transitions YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LastEstablished represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/last-established YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LastEstablished struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/last-established YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/last-established YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/last-established YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LocalAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/local-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LocalAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/local-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LocalAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/local-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LocalAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/local-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerGroup struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerType struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_PeerTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/peer-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_PeerTypeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/peer-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/remove-private-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/remove-private-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/remove-private-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/remove-private-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDamping represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/route-flap-damping YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDamping struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/route-flap-damping YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/route-flap-damping YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/route-flap-damping YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SendCommunity represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/send-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SendCommunity struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/send-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/send-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/config/send-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SessionState represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/session-state YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SessionState struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/session-state YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SessionStateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/session-state YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SessionStateAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/session-state YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilities represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilities struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/supported-capabilities YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -82024,9 +82238,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) AfiSafiAny() *NetworkInstance_Pr } } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -82035,9 +82249,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AfiSafiAny() *NetworkInstance } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -82046,9 +82260,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) AfiSafi(AfiSafiName oc.E_Opencon } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -82057,9 +82271,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AfiSafi(AfiSafiName oc.E_Open } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -82068,9 +82282,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) ApplyPolicy() *NetworkInstance_P } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -82079,9 +82293,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) ApplyPolicy() *NetworkInstanc } } -// AsPathOptions returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "as-path-options". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) AsPathOptions() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions{ +// AsPathOptions returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "as-path-options". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) AsPathOptions() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -82090,9 +82304,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) AsPathOptions() *NetworkInstance } } -// AsPathOptions returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "as-path-options". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AsPathOptions() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny{ +// AsPathOptions returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "as-path-options". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) AsPathOptions() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -82101,53 +82315,53 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AsPathOptions() *NetworkInsta } } -// AuthPassword returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) AuthPassword() *NetworkInstance_Protocol_Bgp_Neighbor_AuthPassword { - return &NetworkInstance_Protocol_Bgp_Neighbor_AuthPassword{ +// AuthPassword returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) AuthPassword() *NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) AuthPassword() *NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordAny{ +// AuthPassword returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) AuthPassword() *NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "description". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Description() *NetworkInstance_Protocol_Bgp_Neighbor_Description { - return &NetworkInstance_Protocol_Bgp_Neighbor_Description{ +// Description returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "description". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Description() *NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "description". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Description() *NetworkInstance_Protocol_Bgp_Neighbor_DescriptionAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_DescriptionAny{ +// Description returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "description". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Description() *NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// DynamicallyConfigured returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "dynamically-configured". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) DynamicallyConfigured() *NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfigured { - return &NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfigured{ +// DynamicallyConfigured returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "dynamically-configured". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) DynamicallyConfigured() *NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPath{ NodePath: ygot.NewNodePath( []string{"state", "dynamically-configured"}, map[string]interface{}{}, @@ -82156,9 +82370,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) DynamicallyConfigured() *Network } } -// DynamicallyConfigured returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "dynamically-configured". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) DynamicallyConfigured() *NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredAny{ +// DynamicallyConfigured returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "dynamically-configured". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) DynamicallyConfigured() *NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_DynamicallyConfiguredPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dynamically-configured"}, map[string]interface{}{}, @@ -82167,9 +82381,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) DynamicallyConfigured() *Netw } } -// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "ebgp-multihop". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) EbgpMultihop() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop{ +// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "ebgp-multihop". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) EbgpMultihop() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -82178,9 +82392,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) EbgpMultihop() *NetworkInstance_ } } -// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "ebgp-multihop". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) EbgpMultihop() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny{ +// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "ebgp-multihop". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) EbgpMultihop() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -82189,31 +82403,31 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) EbgpMultihop() *NetworkInstan } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// ErrorHandling returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "error-handling". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) ErrorHandling() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling{ +// ErrorHandling returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "error-handling". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) ErrorHandling() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -82222,9 +82436,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) ErrorHandling() *NetworkInstance } } -// ErrorHandling returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "error-handling". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) ErrorHandling() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny{ +// ErrorHandling returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "error-handling". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) ErrorHandling() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -82233,9 +82447,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) ErrorHandling() *NetworkInsta } } -// EstablishedTransitions returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "established-transitions". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) EstablishedTransitions() *NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitions { - return &NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitions{ +// EstablishedTransitions returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "established-transitions". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) EstablishedTransitions() *NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "established-transitions"}, map[string]interface{}{}, @@ -82244,9 +82458,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) EstablishedTransitions() *Networ } } -// EstablishedTransitions returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "established-transitions". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) EstablishedTransitions() *NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsAny{ +// EstablishedTransitions returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "established-transitions". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) EstablishedTransitions() *NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_EstablishedTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "established-transitions"}, map[string]interface{}{}, @@ -82255,9 +82469,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) EstablishedTransitions() *Net } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -82266,9 +82480,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) GracefulRestart() *NetworkInstan } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -82277,9 +82491,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) GracefulRestart() *NetworkIns } } -// LastEstablished returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "last-established". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) LastEstablished() *NetworkInstance_Protocol_Bgp_Neighbor_LastEstablished { - return &NetworkInstance_Protocol_Bgp_Neighbor_LastEstablished{ +// LastEstablished returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "last-established". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) LastEstablished() *NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-established"}, map[string]interface{}{}, @@ -82288,9 +82502,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) LastEstablished() *NetworkInstan } } -// LastEstablished returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "last-established". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) LastEstablished() *NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedAny{ +// LastEstablished returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "last-established". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) LastEstablished() *NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_LastEstablishedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-established"}, map[string]interface{}{}, @@ -82299,31 +82513,31 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) LastEstablished() *NetworkIns } } -// LocalAs returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "local-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) LocalAs() *NetworkInstance_Protocol_Bgp_Neighbor_LocalAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_LocalAs{ +// LocalAs returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "local-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) LocalAs() *NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LocalAs returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "local-as". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) LocalAs() *NetworkInstance_Protocol_Bgp_Neighbor_LocalAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_LocalAsAny{ +// LocalAs returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "local-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) LocalAs() *NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_LocalAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LoggingOptions returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "logging-options". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) LoggingOptions() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions { - return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions{ +// LoggingOptions returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "logging-options". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) LoggingOptions() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -82332,9 +82546,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) LoggingOptions() *NetworkInstanc } } -// LoggingOptions returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "logging-options". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) LoggingOptions() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny{ +// LoggingOptions returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "logging-options". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) LoggingOptions() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -82343,9 +82557,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) LoggingOptions() *NetworkInst } } -// Messages returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "messages". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Messages() *NetworkInstance_Protocol_Bgp_Neighbor_Messages { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages{ +// Messages returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "messages". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Messages() *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath{ NodePath: ygot.NewNodePath( []string{"state", "messages"}, map[string]interface{}{}, @@ -82354,9 +82568,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) Messages() *NetworkInstance_Prot } } -// Messages returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "messages". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Messages() *NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny{ +// Messages returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "messages". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Messages() *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "messages"}, map[string]interface{}{}, @@ -82365,97 +82579,97 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Messages() *NetworkInstance_P } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-address"}, + []string{"config", "neighbor-address"}, map[string]interface{}{}, n, ), } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-address"}, + []string{"config", "neighbor-address"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "peer-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) PeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_PeerAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerAs{ +// PeerAs returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "peer-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) PeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "peer-as". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) PeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_PeerAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerAsAny{ +// PeerAs returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "peer-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) PeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) PeerGroup() *NetworkInstance_Protocol_Bgp_Neighbor_PeerGroup { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerGroup{ +// PeerGroup returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) PeerGroup() *NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerGroup returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "peer-group". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) PeerGroup() *NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupAny{ +// PeerGroup returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "peer-group". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) PeerGroup() *NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerGroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group"}, + []string{"config", "peer-group"}, map[string]interface{}{}, n, ), } } -// PeerType returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "peer-type". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) PeerType() *NetworkInstance_Protocol_Bgp_Neighbor_PeerType { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerType{ +// PeerType returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "peer-type". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) PeerType() *NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// PeerType returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "peer-type". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) PeerType() *NetworkInstance_Protocol_Bgp_Neighbor_PeerTypeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_PeerTypeAny{ +// PeerType returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "peer-type". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) PeerType() *NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_PeerTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// Queues returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "queues". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Queues() *NetworkInstance_Protocol_Bgp_Neighbor_Queues { - return &NetworkInstance_Protocol_Bgp_Neighbor_Queues{ +// Queues returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "queues". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Queues() *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath{ NodePath: ygot.NewNodePath( []string{"state", "queues"}, map[string]interface{}{}, @@ -82464,9 +82678,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) Queues() *NetworkInstance_Protoc } } -// Queues returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "queues". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Queues() *NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny{ +// Queues returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "queues". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Queues() *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "queues"}, map[string]interface{}{}, @@ -82475,53 +82689,53 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Queues() *NetworkInstance_Pro } } -// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "remove-private-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAs{ +// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "remove-private-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "remove-private-as". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsAny{ +// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "remove-private-as". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_RemovePrivateAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "route-flap-damping". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDamping { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDamping{ +// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "route-flap-damping". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "route-flap-damping". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingAny{ +// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "route-flap-damping". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteFlapDampingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteReflector returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "route-reflector". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) RouteReflector() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector{ +// RouteReflector returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "route-reflector". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) RouteReflector() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -82530,9 +82744,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) RouteReflector() *NetworkInstanc } } -// RouteReflector returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "route-reflector". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) RouteReflector() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny{ +// RouteReflector returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "route-reflector". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) RouteReflector() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -82541,31 +82755,31 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) RouteReflector() *NetworkInst } } -// SendCommunity returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "send-community". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) SendCommunity() *NetworkInstance_Protocol_Bgp_Neighbor_SendCommunity { - return &NetworkInstance_Protocol_Bgp_Neighbor_SendCommunity{ +// SendCommunity returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "send-community". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) SendCommunity() *NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SendCommunity returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "send-community". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) SendCommunity() *NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityAny{ +// SendCommunity returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "send-community". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) SendCommunity() *NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_SendCommunityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SessionState returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "session-state". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) SessionState() *NetworkInstance_Protocol_Bgp_Neighbor_SessionState { - return &NetworkInstance_Protocol_Bgp_Neighbor_SessionState{ +// SessionState returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "session-state". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) SessionState() *NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePath{ NodePath: ygot.NewNodePath( []string{"state", "session-state"}, map[string]interface{}{}, @@ -82574,9 +82788,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) SessionState() *NetworkInstance_ } } -// SessionState returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "session-state". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) SessionState() *NetworkInstance_Protocol_Bgp_Neighbor_SessionStateAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_SessionStateAny{ +// SessionState returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "session-state". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) SessionState() *NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_SessionStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "session-state"}, map[string]interface{}{}, @@ -82585,9 +82799,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) SessionState() *NetworkInstan } } -// SupportedCapabilities returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "supported-capabilities". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) SupportedCapabilities() *NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilities { - return &NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilities{ +// SupportedCapabilities returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "supported-capabilities". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) SupportedCapabilities() *NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPath{ NodePath: ygot.NewNodePath( []string{"state", "supported-capabilities"}, map[string]interface{}{}, @@ -82596,9 +82810,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) SupportedCapabilities() *Network } } -// SupportedCapabilities returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "supported-capabilities". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) SupportedCapabilities() *NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesAny{ +// SupportedCapabilities returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "supported-capabilities". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) SupportedCapabilities() *NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_SupportedCapabilitiesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "supported-capabilities"}, map[string]interface{}{}, @@ -82607,9 +82821,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) SupportedCapabilities() *Netw } } -// Timers returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Timers() *NetworkInstance_Protocol_Bgp_Neighbor_Timers { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers{ +// Timers returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Timers() *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -82618,9 +82832,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) Timers() *NetworkInstance_Protoc } } -// Timers returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Timers() *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Timers() *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -82629,9 +82843,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Timers() *NetworkInstance_Pro } } -// Transport returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) Transport() *NetworkInstance_Protocol_Bgp_Neighbor_Transport { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport{ +// Transport returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) Transport() *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -82640,9 +82854,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) Transport() *NetworkInstance_Pro } } -// Transport returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Transport() *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_TransportAny{ +// Transport returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) Transport() *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -82651,9 +82865,9 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) Transport() *NetworkInstance_ } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Neighbor the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Neighbor) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_NeighborPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_NeighborPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -82662,9 +82876,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor) UseMultiplePaths() *NetworkInsta } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_NeighborAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_NeighborAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_NeighborPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_NeighborPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -82673,49 +82887,49 @@ func (n *NetworkInstance_Protocol_Bgp_NeighborAny) UseMultiplePaths() *NetworkIn } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Active represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Active struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActiveAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/active YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiName struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNameAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// Active returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "active". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Active() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Active { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Active{ +// Active returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "active". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Active() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -82724,9 +82938,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Active() *NetworkInstanc } } -// Active returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "active". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Active() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActiveAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActiveAny{ +// Active returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "active". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Active() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -82735,9 +82949,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Active() *NetworkInst } } -// AddPaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) AddPaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) AddPaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -82746,9 +82960,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) AddPaths() *NetworkInsta } } -// AddPaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) AddPaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) AddPaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -82757,31 +82971,31 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) AddPaths() *NetworkIn } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) AfiSafiName() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiName { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiName{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) AfiSafiName() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNameAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -82790,9 +83004,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) ApplyPolicy() *NetworkIn } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -82801,31 +83015,31 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) ApplyPolicy() *Networ } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -82834,9 +83048,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) GracefulRestart() *Netwo } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -82845,9 +83059,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) GracefulRestart() *Ne } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -82856,9 +83070,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv4LabeledUnicast() *Ne } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -82867,9 +83081,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv4LabeledUnicast() } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -82878,9 +83092,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv4Unicast() *NetworkIn } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -82889,9 +83103,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv4Unicast() *Networ } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -82900,9 +83114,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv6LabeledUnicast() *Ne } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -82911,9 +83125,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv6LabeledUnicast() } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -82922,9 +83136,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Ipv6Unicast() *NetworkIn } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -82933,9 +83147,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Ipv6Unicast() *Networ } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -82944,9 +83158,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L2VpnEvpn() *NetworkInst } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -82955,9 +83169,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L2VpnEvpn() *NetworkI } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -82966,9 +83180,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L2VpnVpls() *NetworkInst } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -82977,9 +83191,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L2VpnVpls() *NetworkI } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -82988,9 +83202,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv4Multicast() *Ne } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -82999,9 +83213,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Multicast() } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -83010,9 +83224,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv4Unicast() *Netw } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -83021,9 +83235,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv4Unicast() *N } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -83032,9 +83246,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv6Multicast() *Ne } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -83043,9 +83257,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Multicast() } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -83054,9 +83268,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) L3VpnIpv6Unicast() *Netw } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -83065,9 +83279,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) L3VpnIpv6Unicast() *N } } -// Prefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Prefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes{ +// Prefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) Prefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "prefixes"}, map[string]interface{}{}, @@ -83076,9 +83290,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) Prefixes() *NetworkInsta } } -// Prefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Prefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny{ +// Prefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) Prefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefixes"}, map[string]interface{}{}, @@ -83087,9 +83301,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) Prefixes() *NetworkIn } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -83098,9 +83312,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) SrtePolicyIpv4() *Networ } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -83109,9 +83323,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv4() *Net } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -83120,9 +83334,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) SrtePolicyIpv6() *Networ } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -83131,9 +83345,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) SrtePolicyIpv6() *Net } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -83142,9 +83356,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi) UseMultiplePaths() *Netw } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -83153,325 +83367,325 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafiAny) UseMultiplePaths() *N } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Receive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Receive struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Send represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Send struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMax represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMax struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths) Receive() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Receive { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Receive{ +// Receive returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath) Receive() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny) Receive() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny) Receive() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths) Send() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Send { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_Send{ +// Send returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath) Send() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny) Send() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendAny{ +// Send returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny) Send() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths) SendMax() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMax { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMax{ +// SendMax returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPath) SendMax() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsAny) SendMax() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPathsPathAny) SendMax() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPath) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicyPathAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/advertised YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Received struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/graceful-restart/state/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny struct { *ygot.NodePath } -// Advertised returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "advertised". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart) Advertised() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Advertised{ +// Advertised returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "advertised". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath) Advertised() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPath{ NodePath: ygot.NewNodePath( []string{"state", "advertised"}, map[string]interface{}{}, @@ -83480,9 +83694,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart) Advertis } } -// Advertised returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "advertised". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny) Advertised() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedAny{ +// Advertised returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "advertised". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Advertised() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_AdvertisedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "advertised"}, map[string]interface{}{}, @@ -83491,31 +83705,31 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny) Adver } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Received { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_Received{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPath) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -83524,9 +83738,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart) Received } } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartPathAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestart_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -83535,19 +83749,19 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_GracefulRestartAny) Recei } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83556,9 +83770,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast) Prefi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83567,167 +83781,167 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicastAny) Pr } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83736,9 +83950,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast) PrefixLimit( } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83747,179 +83961,179 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) PrefixLim } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83928,9 +84142,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast) Prefi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -83939,167 +84153,167 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicastAny) Pr } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84108,9 +84322,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast) PrefixLimit( } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84119,179 +84333,179 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) PrefixLim } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84300,9 +84514,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84311,157 +84525,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpnAny) PrefixLimit } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84470,9 +84684,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84481,157 +84695,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVplsAny) PrefixLimit } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84640,9 +84854,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast) Prefi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84651,157 +84865,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4MulticastAny) Pr } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84810,9 +85024,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84821,157 +85035,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4UnicastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84980,9 +85194,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast) Prefi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -84991,157 +85205,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6MulticastAny) Pr } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85150,9 +85364,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast) PrefixL } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85161,197 +85375,197 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6UnicastAny) Pref } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Installed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Installed struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/installed YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Received struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/received-pre-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Sent struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/state/prefixes/sent YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny struct { *ygot.NodePath } -// Installed returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "installed". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Installed() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Installed { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Installed{ +// Installed returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "installed". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath) Installed() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPath{ NodePath: ygot.NewNodePath( []string{"installed"}, map[string]interface{}{}, @@ -85360,9 +85574,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Installed() *Ne } } -// Installed returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "installed". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Installed() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledAny{ +// Installed returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "installed". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny) Installed() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_InstalledPathAny{ NodePath: ygot.NewNodePath( []string{"installed"}, map[string]interface{}{}, @@ -85371,9 +85585,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Installed() } } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Received { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Received{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -85382,9 +85596,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Received() *Net } } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -85393,9 +85607,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Received() * } } -// ReceivedPrePolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "received-pre-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) ReceivedPrePolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicy{ +// ReceivedPrePolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "received-pre-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath) ReceivedPrePolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPath{ NodePath: ygot.NewNodePath( []string{"received-pre-policy"}, map[string]interface{}{}, @@ -85404,9 +85618,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) ReceivedPrePoli } } -// ReceivedPrePolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "received-pre-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) ReceivedPrePolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyAny{ +// ReceivedPrePolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "received-pre-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny) ReceivedPrePolicy() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_ReceivedPrePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"received-pre-policy"}, map[string]interface{}{}, @@ -85415,9 +85629,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) ReceivedPreP } } -// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Sent { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_Sent{ +// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPath) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPath{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -85426,9 +85640,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes) Sent() *Network } } -// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentAny{ +// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesPathAny) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_Prefixes_SentPathAny{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -85437,19 +85651,19 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_PrefixesAny) Sent() *Netw } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85458,9 +85672,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4) PrefixLim } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85469,157 +85683,157 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4Any) Prefix } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85628,9 +85842,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6) PrefixLim } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -85639,167 +85853,167 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6Any) Prefix } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -85808,9 +86022,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths) Ebgp() } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -85819,421 +86033,421 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Ebgp } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicy struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicy { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPath) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicyPathAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/allow-own-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/allow-own-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/allow-own-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/allow-own-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/disable-peer-as-filter YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/disable-peer-as-filter YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/disable-peer-as-filter YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/disable-peer-as-filter YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/replace-peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/replace-peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/state/replace-peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/as-path-options/config/replace-peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny struct { *ygot.NodePath } -// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions the path struct for its child "allow-own-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions) AllowOwnAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAs{ +// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath the path struct for its child "allow-own-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath) AllowOwnAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny the path struct for its child "allow-own-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny) AllowOwnAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsAny{ +// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "allow-own-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny) AllowOwnAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_AllowOwnAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions the path struct for its child "disable-peer-as-filter". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilter{ +// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath the path struct for its child "disable-peer-as-filter". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny the path struct for its child "disable-peer-as-filter". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterAny{ +// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "disable-peer-as-filter". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_DisablePeerAsFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions the path struct for its child "replace-peer-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAs{ +// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath the path struct for its child "replace-peer-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPath) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny the path struct for its child "replace-peer-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsAny) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsAny{ +// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny the path struct for its child "replace-peer-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptionsPathAny) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_AsPathOptions_ReplacePeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtl represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/state/multihop-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtl struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/config/multihop-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/state/multihop-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/ebgp-multihop/config/multihop-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop the path struct for its child "multihop-ttl". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop) MultihopTtl() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtl { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtl{ +// MultihopTtl returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath the path struct for its child "multihop-ttl". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPath) MultihopTtl() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPath{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny the path struct for its child "multihop-ttl". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopAny) MultihopTtl() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlAny{ +// MultihopTtl returns from NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny the path struct for its child "multihop-ttl". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihopPathAny) MultihopTtl() *NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_EbgpMultihop_MultihopTtlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/erroneous-update-messages YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdraw represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/treat-as-withdraw YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdraw struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/config/treat-as-withdraw YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/state/treat-as-withdraw YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/error-handling/config/treat-as-withdraw YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny struct { *ygot.NodePath } -// ErroneousUpdateMessages returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling the path struct for its child "erroneous-update-messages". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling) ErroneousUpdateMessages() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessages{ +// ErroneousUpdateMessages returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath the path struct for its child "erroneous-update-messages". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath) ErroneousUpdateMessages() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPath{ NodePath: ygot.NewNodePath( []string{"state", "erroneous-update-messages"}, map[string]interface{}{}, @@ -86242,9 +86456,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling) ErroneousUpdateMes } } -// ErroneousUpdateMessages returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny the path struct for its child "erroneous-update-messages". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny) ErroneousUpdateMessages() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesAny{ +// ErroneousUpdateMessages returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny the path struct for its child "erroneous-update-messages". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny) ErroneousUpdateMessages() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_ErroneousUpdateMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "erroneous-update-messages"}, map[string]interface{}{}, @@ -86253,165 +86467,165 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny) ErroneousUpdate } } -// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling the path struct for its child "treat-as-withdraw". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdraw { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdraw{ +// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath the path struct for its child "treat-as-withdraw". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPath) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPath{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny the path struct for its child "treat-as-withdraw". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingAny) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawAny{ +// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny the path struct for its child "treat-as-withdraw". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandlingPathAny) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_ErrorHandling_TreatAsWithdrawPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnly represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnly struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestarting represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestarting struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/local-restarting YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Mode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Mode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/mode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestarting represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestarting struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/peer-restarting YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) HelperOnly() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnly { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnly{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) HelperOnly() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) HelperOnly() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) HelperOnly() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// LocalRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "local-restarting". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) LocalRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestarting { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestarting{ +// LocalRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "local-restarting". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) LocalRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPath{ NodePath: ygot.NewNodePath( []string{"state", "local-restarting"}, map[string]interface{}{}, @@ -86420,9 +86634,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) LocalRestarting( } } -// LocalRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "local-restarting". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) LocalRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingAny{ +// LocalRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "local-restarting". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) LocalRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_LocalRestartingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-restarting"}, map[string]interface{}{}, @@ -86431,9 +86645,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) LocalRestarti } } -// Mode returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) Mode() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Mode { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_Mode{ +// Mode returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) Mode() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePath{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -86442,9 +86656,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) Mode() *NetworkI } } -// Mode returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) Mode() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModeAny{ +// Mode returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) Mode() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_ModePathAny{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -86453,9 +86667,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) Mode() *Netwo } } -// PeerRestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "peer-restart-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) PeerRestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTime{ +// PeerRestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "peer-restart-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) PeerRestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePath{ NodePath: ygot.NewNodePath( []string{"state", "peer-restart-time"}, map[string]interface{}{}, @@ -86464,9 +86678,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) PeerRestartTime( } } -// PeerRestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "peer-restart-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) PeerRestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimeAny{ +// PeerRestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "peer-restart-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) PeerRestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "peer-restart-time"}, map[string]interface{}{}, @@ -86475,9 +86689,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) PeerRestartTi } } -// PeerRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "peer-restarting". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) PeerRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestarting { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestarting{ +// PeerRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "peer-restarting". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) PeerRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPath{ NodePath: ygot.NewNodePath( []string{"state", "peer-restarting"}, map[string]interface{}{}, @@ -86486,9 +86700,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) PeerRestarting() } } -// PeerRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "peer-restarting". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) PeerRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingAny{ +// PeerRestarting returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "peer-restarting". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) PeerRestarting() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_PeerRestartingPathAny{ NodePath: ygot.NewNodePath( []string{"state", "peer-restarting"}, map[string]interface{}{}, @@ -86497,105 +86711,105 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) PeerRestartin } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) RestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTime{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) RestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) RestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimeAny{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) RestartTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPath) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestartPathAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options/state/log-neighbor-state-changes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options/config/log-neighbor-state-changes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options/state/log-neighbor-state-changes YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/logging-options/config/log-neighbor-state-changes YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny struct { *ygot.NodePath } -// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions the path struct for its child "log-neighbor-state-changes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges { - return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChanges{ +// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath the path struct for its child "log-neighbor-state-changes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPath) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny the path struct for its child "log-neighbor-state-changes". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsAny) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesAny{ +// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny the path struct for its child "log-neighbor-state-changes". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptionsPathAny) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_LoggingOptions_LogNeighborStateChangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages struct { +// NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny struct { *ygot.NodePath } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages) Received() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath) Received() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -86604,9 +86818,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages) Received() *NetworkInst } } -// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny) Received() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -86615,9 +86829,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny) Received() *NetworkI } } -// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent{ +// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPath) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -86626,9 +86840,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages) Sent() *NetworkInstance } } -// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny{ +// Sent returns from NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesPathAny) Sent() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -86637,69 +86851,69 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_MessagesAny) Sent() *NetworkInsta } } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATION represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATION struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/NOTIFICATION YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATE represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATE struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/UPDATE YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-code YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-error-subcode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/received/last-notification-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny struct { *ygot.NodePath } -// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received the path struct for its child "NOTIFICATION". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATION { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATION{ +// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "NOTIFICATION". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPath{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -86708,9 +86922,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) NOTIFICATION() } } -// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "NOTIFICATION". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONAny{ +// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "NOTIFICATION". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_NOTIFICATIONPathAny{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -86719,9 +86933,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) NOTIFICATIO } } -// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received the path struct for its child "UPDATE". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATE { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATE{ +// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "UPDATE". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPath{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -86730,9 +86944,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) UPDATE() *Netw } } -// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "UPDATE". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEAny{ +// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "UPDATE". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_UPDATEPathAny{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -86741,9 +86955,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) UPDATE() *N } } -// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-error-code". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCode { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCode{ +// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-error-code". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -86752,9 +86966,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificati } } -// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-error-code". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodeAny{ +// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-error-code". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorCodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -86763,9 +86977,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotific } } -// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-error-subcode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcode{ +// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-error-subcode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -86774,9 +86988,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificati } } -// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-error-subcode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodeAny{ +// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-error-subcode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationErrorSubcodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -86785,9 +86999,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotific } } -// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received the path struct for its child "last-notification-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTime{ +// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath the path struct for its child "last-notification-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPath) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePath{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -86796,9 +87010,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received) LastNotificati } } -// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny the path struct for its child "last-notification-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimeAny{ +// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny the path struct for its child "last-notification-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedPathAny) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Received_LastNotificationTimePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -86807,69 +87021,69 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_ReceivedAny) LastNotific } } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATION represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATION struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/NOTIFICATION YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATE represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATE struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/UPDATE YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-code YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-error-subcode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/messages/sent/last-notification-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny struct { *ygot.NodePath } -// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent the path struct for its child "NOTIFICATION". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATION { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATION{ +// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath the path struct for its child "NOTIFICATION". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPath{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -86878,9 +87092,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) NOTIFICATION() *Ne } } -// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny the path struct for its child "NOTIFICATION". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONAny{ +// NOTIFICATION returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny the path struct for its child "NOTIFICATION". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny) NOTIFICATION() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_NOTIFICATIONPathAny{ NodePath: ygot.NewNodePath( []string{"NOTIFICATION"}, map[string]interface{}{}, @@ -86889,9 +87103,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) NOTIFICATION() } } -// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent the path struct for its child "UPDATE". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATE { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATE{ +// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath the path struct for its child "UPDATE". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPath{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -86900,9 +87114,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) UPDATE() *NetworkI } } -// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny the path struct for its child "UPDATE". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEAny{ +// UPDATE returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny the path struct for its child "UPDATE". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny) UPDATE() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_UPDATEPathAny{ NodePath: ygot.NewNodePath( []string{"UPDATE"}, map[string]interface{}{}, @@ -86911,9 +87125,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) UPDATE() *Netwo } } -// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-error-code". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCode{ +// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-error-code". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -86922,9 +87136,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationEr } } -// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-error-code". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodeAny{ +// LastNotificationErrorCode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-error-code". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny) LastNotificationErrorCode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorCodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-code"}, map[string]interface{}{}, @@ -86933,9 +87147,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificatio } } -// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-error-subcode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcode{ +// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-error-subcode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePath{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -86944,9 +87158,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationEr } } -// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-error-subcode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodeAny{ +// LastNotificationErrorSubcode returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-error-subcode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny) LastNotificationErrorSubcode() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationErrorSubcodePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-error-subcode"}, map[string]interface{}{}, @@ -86955,9 +87169,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificatio } } -// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent the path struct for its child "last-notification-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTime{ +// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath the path struct for its child "last-notification-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPath) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePath{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -86966,9 +87180,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent) LastNotificationTi } } -// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny the path struct for its child "last-notification-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimeAny{ +// LastNotificationTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny the path struct for its child "last-notification-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentPathAny) LastNotificationTime() *NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Messages_Sent_LastNotificationTimePathAny{ NodePath: ygot.NewNodePath( []string{"last-notification-time"}, map[string]interface{}{}, @@ -86977,39 +87191,39 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Messages_SentAny) LastNotificatio } } -// NetworkInstance_Protocol_Bgp_Neighbor_Queues represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Queues struct { +// NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Queues_Input represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/input YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Queues_Input struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/input YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/input YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/input YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Queues_Output represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/output YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Queues_Output struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/output YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/output YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/state/queues/output YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPathAny struct { *ygot.NodePath } -// Input returns from NetworkInstance_Protocol_Bgp_Neighbor_Queues the path struct for its child "input". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Queues) Input() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_Input { - return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_Input{ +// Input returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath the path struct for its child "input". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath) Input() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPath{ NodePath: ygot.NewNodePath( []string{"input"}, map[string]interface{}{}, @@ -87018,9 +87232,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Queues) Input() *NetworkInstance_ } } -// Input returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny the path struct for its child "input". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny) Input() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputAny{ +// Input returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny the path struct for its child "input". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny) Input() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_InputPathAny{ NodePath: ygot.NewNodePath( []string{"input"}, map[string]interface{}{}, @@ -87029,9 +87243,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny) Input() *NetworkInstan } } -// Output returns from NetworkInstance_Protocol_Bgp_Neighbor_Queues the path struct for its child "output". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Queues) Output() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_Output { - return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_Output{ +// Output returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath the path struct for its child "output". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPath) Output() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPath{ NodePath: ygot.NewNodePath( []string{"output"}, map[string]interface{}{}, @@ -87040,9 +87254,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Queues) Output() *NetworkInstance } } -// Output returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny the path struct for its child "output". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny) Output() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputAny{ +// Output returns from NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny the path struct for its child "output". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesPathAny) Output() *NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Queues_OutputPathAny{ NodePath: ygot.NewNodePath( []string{"output"}, map[string]interface{}{}, @@ -87051,231 +87265,231 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_QueuesAny) Output() *NetworkInsta } } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClient represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/state/route-reflector-client YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClient struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/config/route-reflector-client YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/state/route-reflector-client YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/config/route-reflector-client YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/state/route-reflector-cluster-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterId struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/config/route-reflector-cluster-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/state/route-reflector-cluster-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/route-reflector/config/route-reflector-cluster-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny struct { *ygot.NodePath } -// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector the path struct for its child "route-reflector-client". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClient { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClient{ +// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath the path struct for its child "route-reflector-client". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny the path struct for its child "route-reflector-client". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientAny{ +// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny the path struct for its child "route-reflector-client". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector the path struct for its child "route-reflector-cluster-id". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterId { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterId{ +// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath the path struct for its child "route-reflector-cluster-id". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPath) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny the path struct for its child "route-reflector-cluster-id". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorAny) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdAny{ +// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny the path struct for its child "route-reflector-cluster-id". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflectorPathAny) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_RouteReflector_RouteReflectorClusterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers struct { +// NetworkInstance_Protocol_Bgp_Neighbor_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_TimersAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetry represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/connect-retry YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetry struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/connect-retry YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/connect-retry YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/connect-retry YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/keepalive-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveInterval struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/keepalive-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/keepalive-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/keepalive-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/minimum-advertisement-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementInterval struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/minimum-advertisement-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/minimum-advertisement-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/config/minimum-advertisement-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTime struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/timers/state/negotiated-hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny struct { *ygot.NodePath } -// ConnectRetry returns from NetworkInstance_Protocol_Bgp_Neighbor_Timers the path struct for its child "connect-retry". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) ConnectRetry() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetry { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetry{ +// ConnectRetry returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPath the path struct for its child "connect-retry". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath) ConnectRetry() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPath{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// ConnectRetry returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersAny the path struct for its child "connect-retry". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) ConnectRetry() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryAny{ +// ConnectRetry returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny the path struct for its child "connect-retry". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny) ConnectRetry() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_ConnectRetryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Timers the path struct for its child "hold-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) HoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTime{ +// HoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPath the path struct for its child "hold-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath) HoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersAny the path struct for its child "hold-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) HoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimeAny{ +// HoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny the path struct for its child "hold-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny) HoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_HoldTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_Timers the path struct for its child "keepalive-interval". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveInterval { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveInterval{ +// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPath the path struct for its child "keepalive-interval". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersAny the path struct for its child "keepalive-interval". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalAny{ +// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny the path struct for its child "keepalive-interval". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_KeepaliveIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_Timers the path struct for its child "minimum-advertisement-interval". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementInterval { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementInterval{ +// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPath the path struct for its child "minimum-advertisement-interval". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersAny the path struct for its child "minimum-advertisement-interval". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalAny{ +// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny the path struct for its child "minimum-advertisement-interval". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_MinimumAdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// NegotiatedHoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_Timers the path struct for its child "negotiated-hold-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) NegotiatedHoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTime { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTime{ +// NegotiatedHoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPath the path struct for its child "negotiated-hold-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPath) NegotiatedHoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-hold-time"}, map[string]interface{}{}, @@ -87284,9 +87498,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Timers) NegotiatedHoldTime() *Net } } -// NegotiatedHoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersAny the path struct for its child "negotiated-hold-time". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) NegotiatedHoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimeAny{ +// NegotiatedHoldTime returns from NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny the path struct for its child "negotiated-hold-time". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersPathAny) NegotiatedHoldTime() *NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Timers_NegotiatedHoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "negotiated-hold-time"}, map[string]interface{}{}, @@ -87295,111 +87509,111 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_TimersAny) NegotiatedHoldTime() * } } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport struct { +// NetworkInstance_Protocol_Bgp_Neighbor_TransportPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_TransportPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_TransportAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_TransportAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddress struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/local-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/local-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPort represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPort struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/local-port YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscovery represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/mtu-discovery YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscovery struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/mtu-discovery YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/mtu-discovery YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/mtu-discovery YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveMode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/passive-mode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveMode struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/passive-mode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/passive-mode YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModeAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/passive-mode YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddress struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePort represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePort struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/remote-port YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/tcp-mss YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMss struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/tcp-mss YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/state/tcp-mss YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/transport/config/tcp-mss YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPathAny struct { *ygot.NodePath } -// LocalAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "local-address". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) LocalAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddress { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddress{ +// LocalAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "local-address". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) LocalAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "local-address". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) LocalAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressAny{ +// LocalAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "local-address". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) LocalAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalPort returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "local-port". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) LocalPort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPort { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPort{ +// LocalPort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "local-port". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) LocalPort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPath{ NodePath: ygot.NewNodePath( []string{"state", "local-port"}, map[string]interface{}{}, @@ -87408,9 +87622,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) LocalPort() *NetworkIn } } -// LocalPort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "local-port". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) LocalPort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortAny{ +// LocalPort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "local-port". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) LocalPort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_LocalPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-port"}, map[string]interface{}{}, @@ -87419,53 +87633,53 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) LocalPort() *Networ } } -// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "mtu-discovery". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) MtuDiscovery() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscovery { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscovery{ +// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "mtu-discovery". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) MtuDiscovery() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "mtu-discovery". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) MtuDiscovery() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryAny{ +// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "mtu-discovery". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) MtuDiscovery() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_MtuDiscoveryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "passive-mode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) PassiveMode() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveMode { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveMode{ +// PassiveMode returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "passive-mode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) PassiveMode() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "passive-mode". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) PassiveMode() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModeAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModeAny{ +// PassiveMode returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "passive-mode". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) PassiveMode() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_PassiveModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// RemoteAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "remote-address". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) RemoteAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddress { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddress{ +// RemoteAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "remote-address". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) RemoteAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -87474,9 +87688,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) RemoteAddress() *Netwo } } -// RemoteAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "remote-address". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) RemoteAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressAny{ +// RemoteAddress returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "remote-address". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) RemoteAddress() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemoteAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-address"}, map[string]interface{}{}, @@ -87485,9 +87699,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) RemoteAddress() *Ne } } -// RemotePort returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "remote-port". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) RemotePort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePort { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePort{ +// RemotePort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "remote-port". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) RemotePort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-port"}, map[string]interface{}{}, @@ -87496,9 +87710,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) RemotePort() *NetworkI } } -// RemotePort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "remote-port". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) RemotePort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortAny{ +// RemotePort returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "remote-port". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) RemotePort() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_RemotePortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-port"}, map[string]interface{}{}, @@ -87507,51 +87721,51 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) RemotePort() *Netwo } } -// TcpMss returns from NetworkInstance_Protocol_Bgp_Neighbor_Transport the path struct for its child "tcp-mss". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_Transport) TcpMss() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMss { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMss{ +// TcpMss returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPath the path struct for its child "tcp-mss". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPath) TcpMss() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPath{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportAny the path struct for its child "tcp-mss". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportAny) TcpMss() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssAny{ +// TcpMss returns from NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny the path struct for its child "tcp-mss". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_TransportPathAny) TcpMss() *NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_Transport_TcpMssPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -87560,9 +87774,9 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths) Ebgp() *Network } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -87571,193 +87785,193 @@ func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny) Ebgp() *Netw } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/neighbors/neighbor/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_Neighbor_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup struct { +// NetworkInstance_Protocol_Bgp_PeerGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroupAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AuthPassword represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AuthPassword struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Description represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/description YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Description struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/description YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/description YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/description YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_LocalAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/local-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LocalAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/local-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/local-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/local-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-group-name YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupName struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-group-name YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-group-name YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNameAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-group-name YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-type YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerType struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-type YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/peer-type YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypeAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/peer-type YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/remove-private-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/remove-private-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/remove-private-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/remove-private-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDamping represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/route-flap-damping YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDamping struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/route-flap-damping YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/route-flap-damping YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/route-flap-damping YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunity represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/send-community YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunity struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/send-community YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/send-community YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/config/send-community YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/state/total-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AfiSafiAny() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) AfiSafiAny() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -87766,9 +87980,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AfiSafiAny() *NetworkInstance_P } } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -87777,9 +87991,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AfiSafiAny() *NetworkInstanc } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -87788,9 +88002,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AfiSafi(AfiSafiName oc.E_Openco } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -87799,9 +88013,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AfiSafi(AfiSafiName oc.E_Ope } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -87810,9 +88024,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) ApplyPolicy() *NetworkInstance_ } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -87821,9 +88035,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) ApplyPolicy() *NetworkInstan } } -// AsPathOptions returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "as-path-options". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AsPathOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions{ +// AsPathOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "as-path-options". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) AsPathOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -87832,9 +88046,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AsPathOptions() *NetworkInstanc } } -// AsPathOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "as-path-options". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AsPathOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny{ +// AsPathOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "as-path-options". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) AsPathOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"as-path-options"}, map[string]interface{}{}, @@ -87843,53 +88057,53 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AsPathOptions() *NetworkInst } } -// AuthPassword returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) AuthPassword() *NetworkInstance_Protocol_Bgp_PeerGroup_AuthPassword { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AuthPassword{ +// AuthPassword returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) AuthPassword() *NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) AuthPassword() *NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordAny{ +// AuthPassword returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) AuthPassword() *NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "description". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) Description() *NetworkInstance_Protocol_Bgp_PeerGroup_Description { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Description{ +// Description returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "description". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) Description() *NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "description". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) Description() *NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionAny{ +// Description returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "description". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) Description() *NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "ebgp-multihop". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) EbgpMultihop() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop{ +// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "ebgp-multihop". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) EbgpMultihop() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -87898,9 +88112,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) EbgpMultihop() *NetworkInstance } } -// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "ebgp-multihop". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) EbgpMultihop() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny{ +// EbgpMultihop returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "ebgp-multihop". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) EbgpMultihop() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp-multihop"}, map[string]interface{}{}, @@ -87909,9 +88123,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) EbgpMultihop() *NetworkInsta } } -// ErrorHandling returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "error-handling". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) ErrorHandling() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling{ +// ErrorHandling returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "error-handling". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) ErrorHandling() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -87920,9 +88134,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) ErrorHandling() *NetworkInstanc } } -// ErrorHandling returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "error-handling". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) ErrorHandling() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny{ +// ErrorHandling returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "error-handling". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) ErrorHandling() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny{ NodePath: ygot.NewNodePath( []string{"error-handling"}, map[string]interface{}{}, @@ -87931,9 +88145,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) ErrorHandling() *NetworkInst } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -87942,9 +88156,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) GracefulRestart() *NetworkInsta } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -87953,31 +88167,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) GracefulRestart() *NetworkIn } } -// LocalAs returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "local-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) LocalAs() *NetworkInstance_Protocol_Bgp_PeerGroup_LocalAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LocalAs{ +// LocalAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "local-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) LocalAs() *NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LocalAs returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "local-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) LocalAs() *NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsAny{ +// LocalAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "local-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) LocalAs() *NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LocalAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-as"}, + []string{"config", "local-as"}, map[string]interface{}{}, n, ), } } -// LoggingOptions returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "logging-options". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) LoggingOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions{ +// LoggingOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "logging-options". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) LoggingOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -87986,9 +88200,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) LoggingOptions() *NetworkInstan } } -// LoggingOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "logging-options". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) LoggingOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny{ +// LoggingOptions returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "logging-options". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) LoggingOptions() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"logging-options"}, map[string]interface{}{}, @@ -87997,119 +88211,119 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) LoggingOptions() *NetworkIns } } -// PeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "peer-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) PeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerAs{ +// PeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "peer-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) PeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "peer-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) PeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsAny{ +// PeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "peer-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) PeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-as"}, + []string{"config", "peer-as"}, map[string]interface{}{}, n, ), } } -// PeerGroupName returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "peer-group-name". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) PeerGroupName() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupName { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupName{ +// PeerGroupName returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "peer-group-name". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) PeerGroupName() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group-name"}, + []string{"config", "peer-group-name"}, map[string]interface{}{}, n, ), } } -// PeerGroupName returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "peer-group-name". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) PeerGroupName() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNameAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNameAny{ +// PeerGroupName returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "peer-group-name". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) PeerGroupName() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerGroupNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-group-name"}, + []string{"config", "peer-group-name"}, map[string]interface{}{}, n, ), } } -// PeerType returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "peer-type". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) PeerType() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerType { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerType{ +// PeerType returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "peer-type". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) PeerType() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// PeerType returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "peer-type". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) PeerType() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypeAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypeAny{ +// PeerType returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "peer-type". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) PeerType() *NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_PeerTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "peer-type"}, + []string{"config", "peer-type"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "remove-private-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAs{ +// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "remove-private-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "remove-private-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsAny{ +// RemovePrivateAs returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "remove-private-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) RemovePrivateAs() *NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RemovePrivateAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remove-private-as"}, + []string{"config", "remove-private-as"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "route-flap-damping". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDamping { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDamping{ +// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "route-flap-damping". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "route-flap-damping". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingAny{ +// RouteFlapDamping returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "route-flap-damping". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) RouteFlapDamping() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteFlapDampingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-flap-damping"}, + []string{"config", "route-flap-damping"}, map[string]interface{}{}, n, ), } } -// RouteReflector returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "route-reflector". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) RouteReflector() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector{ +// RouteReflector returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "route-reflector". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) RouteReflector() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -88118,9 +88332,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) RouteReflector() *NetworkInstan } } -// RouteReflector returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "route-reflector". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) RouteReflector() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny{ +// RouteReflector returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "route-reflector". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) RouteReflector() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny{ NodePath: ygot.NewNodePath( []string{"route-reflector"}, map[string]interface{}{}, @@ -88129,31 +88343,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) RouteReflector() *NetworkIns } } -// SendCommunity returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "send-community". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) SendCommunity() *NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunity { - return &NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunity{ +// SendCommunity returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "send-community". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) SendCommunity() *NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// SendCommunity returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "send-community". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) SendCommunity() *NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityAny{ +// SendCommunity returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "send-community". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) SendCommunity() *NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_SendCommunityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-community"}, + []string{"config", "send-community"}, map[string]interface{}{}, n, ), } } -// Timers returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) Timers() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers{ +// Timers returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) Timers() *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -88162,9 +88376,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) Timers() *NetworkInstance_Proto } } -// Timers returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) Timers() *NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) Timers() *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -88173,9 +88387,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) Timers() *NetworkInstance_Pr } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) TotalPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPaths{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) TotalPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPath{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -88184,9 +88398,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) TotalPaths() *NetworkInstance_P } } -// TotalPaths returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "total-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) TotalPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsAny{ +// TotalPaths returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "total-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) TotalPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPathsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-paths"}, map[string]interface{}{}, @@ -88195,9 +88409,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) TotalPaths() *NetworkInstanc } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) TotalPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixes{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) TotalPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPath{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -88206,9 +88420,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) TotalPrefixes() *NetworkInstanc } } -// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "total-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesAny{ +// TotalPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "total-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) TotalPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TotalPrefixesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total-prefixes"}, map[string]interface{}{}, @@ -88217,9 +88431,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) TotalPrefixes() *NetworkInst } } -// Transport returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) Transport() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport{ +// Transport returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) Transport() *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -88228,9 +88442,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) Transport() *NetworkInstance_Pr } } -// Transport returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) Transport() *NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny{ +// Transport returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) Transport() *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -88239,9 +88453,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) Transport() *NetworkInstance } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroup the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroupPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -88250,9 +88464,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup) UseMultiplePaths() *NetworkInst } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroupAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroupPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroupPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -88261,39 +88475,39 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroupAny) UseMultiplePaths() *NetworkI } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiName struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNameAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPathAny struct { *ygot.NodePath } -// AddPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) AddPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) AddPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -88302,9 +88516,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) AddPaths() *NetworkInst } } -// AddPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "add-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) AddPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny{ +// AddPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "add-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) AddPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny{ NodePath: ygot.NewNodePath( []string{"add-paths"}, map[string]interface{}{}, @@ -88313,31 +88527,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) AddPaths() *NetworkI } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) AfiSafiName() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiName { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiName{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) AfiSafiName() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNameAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-safi-name"}, + []string{"config", "afi-safi-name"}, map[string]interface{}{}, n, ), } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -88346,9 +88560,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) ApplyPolicy() *NetworkI } } -// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "apply-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny{ +// ApplyPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "apply-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) ApplyPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"apply-policy"}, map[string]interface{}{}, @@ -88357,31 +88571,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) ApplyPolicy() *Netwo } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -88390,9 +88604,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) GracefulRestart() *Netw } } -// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) GracefulRestart() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -88401,9 +88615,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) GracefulRestart() *N } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -88412,9 +88626,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv4LabeledUnicast() *N } } -// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv4-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny{ +// Ipv4LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv4-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) Ipv4LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-labeled-unicast"}, map[string]interface{}{}, @@ -88423,9 +88637,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv4LabeledUnicast() } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -88434,9 +88648,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv4Unicast() *NetworkI } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -88445,9 +88659,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv4Unicast() *Netwo } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -88456,9 +88670,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv6LabeledUnicast() *N } } -// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv6-labeled-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny{ +// Ipv6LabeledUnicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv6-labeled-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) Ipv6LabeledUnicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-labeled-unicast"}, map[string]interface{}{}, @@ -88467,9 +88681,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv6LabeledUnicast() } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -88478,9 +88692,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) Ipv6Unicast() *NetworkI } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -88489,9 +88703,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) Ipv6Unicast() *Netwo } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -88500,9 +88714,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L2VpnEvpn() *NetworkIns } } -// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l2vpn-evpn". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny{ +// L2VpnEvpn returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l2vpn-evpn". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L2VpnEvpn() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-evpn"}, map[string]interface{}{}, @@ -88511,9 +88725,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L2VpnEvpn() *Network } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L2VpnVpls() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L2VpnVpls() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -88522,9 +88736,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L2VpnVpls() *NetworkIns } } -// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l2vpn-vpls". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny{ +// L2VpnVpls returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l2vpn-vpls". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L2VpnVpls() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny{ NodePath: ygot.NewNodePath( []string{"l2vpn-vpls"}, map[string]interface{}{}, @@ -88533,9 +88747,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L2VpnVpls() *Network } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -88544,9 +88758,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv4Multicast() *N } } -// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv4-multicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny{ +// L3VpnIpv4Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-multicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv4Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-multicast"}, map[string]interface{}{}, @@ -88555,9 +88769,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Multicast() } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -88566,9 +88780,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv4Unicast() *Net } } -// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny{ +// L3VpnIpv4Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv4Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv4-unicast"}, map[string]interface{}{}, @@ -88577,9 +88791,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv4Unicast() * } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -88588,9 +88802,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv6Multicast() *N } } -// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv6-multicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny{ +// L3VpnIpv6Multicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-multicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv6Multicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-multicast"}, map[string]interface{}{}, @@ -88599,9 +88813,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Multicast() } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -88610,9 +88824,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) L3VpnIpv6Unicast() *Net } } -// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "l3vpn-ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny{ +// L3VpnIpv6Unicast returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "l3vpn-ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) L3VpnIpv6Unicast() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"l3vpn-ipv6-unicast"}, map[string]interface{}{}, @@ -88621,9 +88835,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) L3VpnIpv6Unicast() * } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -88632,9 +88846,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) SrtePolicyIpv4() *Netwo } } -// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "srte-policy-ipv4". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any{ +// SrtePolicyIpv4 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "srte-policy-ipv4". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) SrtePolicyIpv4() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv4"}, map[string]interface{}{}, @@ -88643,9 +88857,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv4() *Ne } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -88654,9 +88868,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) SrtePolicyIpv6() *Netwo } } -// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "srte-policy-ipv6". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any{ +// SrtePolicyIpv6 returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "srte-policy-ipv6". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) SrtePolicyIpv6() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny{ NodePath: ygot.NewNodePath( []string{"srte-policy-ipv6"}, map[string]interface{}{}, @@ -88665,9 +88879,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) SrtePolicyIpv6() *Ne } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPath) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -88676,9 +88890,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi) UseMultiplePaths() *Net } } -// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny the path struct for its child "use-multiple-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny{ +// UseMultiplePaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny the path struct for its child "use-multiple-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiPathAny) UseMultiplePaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny{ NodePath: ygot.NewNodePath( []string{"use-multiple-paths"}, map[string]interface{}{}, @@ -88687,337 +88901,337 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafiAny) UseMultiplePaths() * } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/eligible-prefix-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/eligible-prefix-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Receive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Receive struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/receive YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/receive YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Send represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Send struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMax represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMax struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/state/send-max YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/add-paths/config/send-max YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny struct { *ygot.NodePath } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicy{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "eligible-prefix-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyAny{ +// EligiblePrefixPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "eligible-prefix-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny) EligiblePrefixPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_EligiblePrefixPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "eligible-prefix-policy"}, + []string{"config", "eligible-prefix-policy"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths) Receive() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Receive { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Receive{ +// Receive returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath) Receive() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePath{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Receive returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "receive". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny) Receive() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceiveAny{ +// Receive returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "receive". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny) Receive() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_ReceivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "receive"}, + []string{"config", "receive"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths) Send() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Send { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_Send{ +// Send returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath) Send() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPath{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// Send returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "send". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny) Send() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendAny{ +// Send returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "send". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny) Send() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send"}, + []string{"config", "send"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths) SendMax() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMax { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMax{ +// SendMax returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPath) SendMax() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPath{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// SendMax returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny the path struct for its child "send-max". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsAny) SendMax() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxAny{ +// SendMax returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny the path struct for its child "send-max". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPathsPathAny) SendMax() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_AddPaths_SendMaxPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-max"}, + []string{"config", "send-max"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPath) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicyPathAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89026,9 +89240,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast) Pref } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89037,167 +89251,167 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicastAny) P } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89206,9 +89420,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast) PrefixLimit } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89217,179 +89431,179 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) PrefixLi } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89398,9 +89612,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast) Pref } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89409,167 +89623,167 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicastAny) P } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6LabeledUnicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/state/send-default-route YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/config/send-default-route YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89578,9 +89792,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast) PrefixLimit } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89589,179 +89803,179 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) PrefixLi } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoute{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPath) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePath{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny the path struct for its child "send-default-route". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRouteAny{ +// SendDefaultRoute returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny the path struct for its child "send-default-route". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6UnicastPathAny) SendDefaultRoute() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_SendDefaultRoutePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "send-default-route"}, + []string{"config", "send-default-route"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_Ipv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89770,9 +89984,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89781,157 +89995,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpnAny) PrefixLimi } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnEvpn_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89940,9 +90154,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls) PrefixLimit() } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -89951,157 +90165,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVplsAny) PrefixLimi } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-vpls/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L2VpnVpls_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90110,9 +90324,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast) Pref } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90121,157 +90335,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4MulticastAny) P } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90280,9 +90494,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast) Prefix } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90291,157 +90505,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4UnicastAny) Pre } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv4Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90450,9 +90664,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast) Pref } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90461,157 +90675,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6MulticastAny) P } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-multicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Multicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPath) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90620,9 +90834,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast) Prefix } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastPathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90631,157 +90845,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6UnicastAny) Pre } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_L3VpnIpv6Unicast_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4 YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90790,9 +91004,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4) PrefixLi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90801,157 +91015,157 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4Any) Prefi } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv4/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv4_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6 YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny struct { *ygot.NodePath } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6 the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Path) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90960,9 +91174,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6) PrefixLi } } -// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any the path struct for its child "prefix-limit". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny{ +// PrefixLimit returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny the path struct for its child "prefix-limit". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6PathAny) PrefixLimit() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-limit"}, map[string]interface{}{}, @@ -90971,167 +91185,167 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6Any) Prefi } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/max-prefixes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/max-prefixes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/prevent-teardown YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/prevent-teardown YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/restart-timer YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/restart-timer YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/state/warning-threshold-pct YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/srte-policy-ipv6/prefix-limit/config/warning-threshold-pct YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny struct { *ygot.NodePath } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixes{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "max-prefixes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesAny{ +// MaxPrefixes returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "max-prefixes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) MaxPrefixes() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_MaxPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-prefixes"}, + []string{"config", "max-prefixes"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardown{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPath{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "prevent-teardown". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownAny{ +// PreventTeardown returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "prevent-teardown". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) PreventTeardown() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_PreventTeardownPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prevent-teardown"}, + []string{"config", "prevent-teardown"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimer{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "restart-timer". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerAny{ +// RestartTimer returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "restart-timer". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) RestartTimer() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_RestartTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-timer"}, + []string{"config", "restart-timer"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPct{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPath) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny the path struct for its child "warning-threshold-pct". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctAny{ +// WarningThresholdPct returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny the path struct for its child "warning-threshold-pct". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimitPathAny) WarningThresholdPct() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_SrtePolicyIpv6_PrefixLimit_WarningThresholdPctPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-threshold-pct"}, + []string{"config", "warning-threshold-pct"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -91140,9 +91354,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ebgp() } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -91151,31 +91365,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ebg } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPath) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -91184,9 +91398,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths) Ibgp() } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsPathAny) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -91195,1035 +91409,1035 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePathsAny) Ibg } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_EbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_IbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AfiSafi_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/default-export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/default-export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/export-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/export-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicy struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/apply-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicy{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "default-export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyAny{ +// DefaultExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "default-export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny) DefaultExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-export-policy"}, + []string{"config", "default-export-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicy{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "export-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyAny{ +// ExportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "export-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny) ExportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ExportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "export-policy"}, + []string{"config", "export-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicy { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPath) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicyPathAny) ImportPolicy() *NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ApplyPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/allow-own-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/allow-own-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/allow-own-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/allow-own-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/disable-peer-as-filter YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/disable-peer-as-filter YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/disable-peer-as-filter YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/disable-peer-as-filter YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/replace-peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/replace-peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/state/replace-peer-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/as-path-options/config/replace-peer-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny struct { *ygot.NodePath } -// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions the path struct for its child "allow-own-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions) AllowOwnAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAs{ +// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "allow-own-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath) AllowOwnAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "allow-own-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny) AllowOwnAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsAny{ +// AllowOwnAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "allow-own-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny) AllowOwnAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_AllowOwnAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-own-as"}, + []string{"config", "allow-own-as"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions the path struct for its child "disable-peer-as-filter". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilter{ +// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "disable-peer-as-filter". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "disable-peer-as-filter". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterAny{ +// DisablePeerAsFilter returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "disable-peer-as-filter". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny) DisablePeerAsFilter() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_DisablePeerAsFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "disable-peer-as-filter"}, + []string{"config", "disable-peer-as-filter"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions the path struct for its child "replace-peer-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAs{ +// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath the path struct for its child "replace-peer-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPath) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny the path struct for its child "replace-peer-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsAny) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsAny{ +// ReplacePeerAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny the path struct for its child "replace-peer-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptionsPathAny) ReplacePeerAs() *NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_AsPathOptions_ReplacePeerAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "replace-peer-as"}, + []string{"config", "replace-peer-as"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtl represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/state/multihop-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtl struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/config/multihop-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/state/multihop-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/ebgp-multihop/config/multihop-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop the path struct for its child "multihop-ttl". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop) MultihopTtl() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtl { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtl{ +// MultihopTtl returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath the path struct for its child "multihop-ttl". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPath) MultihopTtl() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPath{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// MultihopTtl returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny the path struct for its child "multihop-ttl". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopAny) MultihopTtl() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlAny{ +// MultihopTtl returns from NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny the path struct for its child "multihop-ttl". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihopPathAny) MultihopTtl() *NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_EbgpMultihop_MultihopTtlPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multihop-ttl"}, + []string{"config", "multihop-ttl"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling/state/treat-as-withdraw YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling/config/treat-as-withdraw YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling/state/treat-as-withdraw YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/error-handling/config/treat-as-withdraw YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny struct { *ygot.NodePath } -// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling the path struct for its child "treat-as-withdraw". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdraw{ +// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath the path struct for its child "treat-as-withdraw". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPath) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPath{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny the path struct for its child "treat-as-withdraw". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingAny) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawAny{ +// TreatAsWithdraw returns from NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny the path struct for its child "treat-as-withdraw". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandlingPathAny) TreatAsWithdraw() *NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_ErrorHandling_TreatAsWithdrawPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "treat-as-withdraw"}, + []string{"config", "treat-as-withdraw"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnly represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnly struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTime struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/restart-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimeAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/restart-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTime struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/state/stale-routes-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/graceful-restart/config/stale-routes-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart) HelperOnly() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnly { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnly{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath) HelperOnly() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny) HelperOnly() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny) HelperOnly() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart) RestartTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTime { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTime{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath) RestartTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// RestartTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny the path struct for its child "restart-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny) RestartTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimeAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimeAny{ +// RestartTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "restart-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny) RestartTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_RestartTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "restart-time"}, + []string{"config", "restart-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTime { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTime{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPath) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny the path struct for its child "stale-routes-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimeAny{ +// StaleRoutesTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny the path struct for its child "stale-routes-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestartPathAny) StaleRoutesTime() *NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_GracefulRestart_StaleRoutesTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "stale-routes-time"}, + []string{"config", "stale-routes-time"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options/state/log-neighbor-state-changes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options/config/log-neighbor-state-changes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options/state/log-neighbor-state-changes YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/logging-options/config/log-neighbor-state-changes YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny struct { *ygot.NodePath } -// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions the path struct for its child "log-neighbor-state-changes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChanges{ +// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath the path struct for its child "log-neighbor-state-changes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPath) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny the path struct for its child "log-neighbor-state-changes". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsAny) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesAny{ +// LogNeighborStateChanges returns from NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny the path struct for its child "log-neighbor-state-changes". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptionsPathAny) LogNeighborStateChanges() *NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_LoggingOptions_LogNeighborStateChangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-neighbor-state-changes"}, + []string{"config", "log-neighbor-state-changes"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClient represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-client YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClient struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-client YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-client YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-client YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-cluster-id YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-cluster-id YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/state/route-reflector-cluster-id YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/route-reflector/config/route-reflector-cluster-id YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny struct { *ygot.NodePath } -// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector the path struct for its child "route-reflector-client". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClient { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClient{ +// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath the path struct for its child "route-reflector-client". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny the path struct for its child "route-reflector-client". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientAny{ +// RouteReflectorClient returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny the path struct for its child "route-reflector-client". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny) RouteReflectorClient() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClientPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-client"}, + []string{"config", "route-reflector-client"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector the path struct for its child "route-reflector-cluster-id". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterId{ +// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath the path struct for its child "route-reflector-cluster-id". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPath) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny the path struct for its child "route-reflector-cluster-id". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorAny) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdAny{ +// RouteReflectorClusterId returns from NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny the path struct for its child "route-reflector-cluster-id". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflectorPathAny) RouteReflectorClusterId() *NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_RouteReflector_RouteReflectorClusterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "route-reflector-cluster-id"}, + []string{"config", "route-reflector-cluster-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetry represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/connect-retry YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetry struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/connect-retry YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/connect-retry YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/connect-retry YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTime struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/hold-time YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimeAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/hold-time YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/keepalive-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveInterval struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/keepalive-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/keepalive-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/keepalive-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/minimum-advertisement-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementInterval struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/minimum-advertisement-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/state/minimum-advertisement-interval YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/timers/config/minimum-advertisement-interval YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny struct { *ygot.NodePath } -// ConnectRetry returns from NetworkInstance_Protocol_Bgp_PeerGroup_Timers the path struct for its child "connect-retry". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Timers) ConnectRetry() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetry { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetry{ +// ConnectRetry returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath the path struct for its child "connect-retry". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath) ConnectRetry() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPath{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// ConnectRetry returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny the path struct for its child "connect-retry". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny) ConnectRetry() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryAny{ +// ConnectRetry returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny the path struct for its child "connect-retry". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny) ConnectRetry() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_ConnectRetryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "connect-retry"}, + []string{"config", "connect-retry"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_Timers the path struct for its child "hold-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Timers) HoldTime() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTime { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTime{ +// HoldTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath the path struct for its child "hold-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath) HoldTime() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny the path struct for its child "hold-time". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny) HoldTime() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimeAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimeAny{ +// HoldTime returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny the path struct for its child "hold-time". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny) HoldTime() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_HoldTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-time"}, + []string{"config", "hold-time"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_Timers the path struct for its child "keepalive-interval". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Timers) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveInterval { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveInterval{ +// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath the path struct for its child "keepalive-interval". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny the path struct for its child "keepalive-interval". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalAny{ +// KeepaliveInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny the path struct for its child "keepalive-interval". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny) KeepaliveInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_KeepaliveIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "keepalive-interval"}, + []string{"config", "keepalive-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_Timers the path struct for its child "minimum-advertisement-interval". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Timers) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementInterval { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementInterval{ +// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath the path struct for its child "minimum-advertisement-interval". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPath) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny the path struct for its child "minimum-advertisement-interval". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersAny) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalAny{ +// MinimumAdvertisementInterval returns from NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny the path struct for its child "minimum-advertisement-interval". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TimersPathAny) MinimumAdvertisementInterval() *NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Timers_MinimumAdvertisementIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "minimum-advertisement-interval"}, + []string{"config", "minimum-advertisement-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/local-address YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddress struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/local-address YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/local-address YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/local-address YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscovery represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/mtu-discovery YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscovery struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/mtu-discovery YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/mtu-discovery YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/mtu-discovery YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveMode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/passive-mode YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveMode struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/passive-mode YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/passive-mode YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModeAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/passive-mode YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/tcp-mss YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMss struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/tcp-mss YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/state/tcp-mss YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/transport/config/tcp-mss YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPathAny struct { *ygot.NodePath } -// LocalAddress returns from NetworkInstance_Protocol_Bgp_PeerGroup_Transport the path struct for its child "local-address". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Transport) LocalAddress() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddress { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddress{ +// LocalAddress returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath the path struct for its child "local-address". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath) LocalAddress() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// LocalAddress returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny the path struct for its child "local-address". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny) LocalAddress() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressAny{ +// LocalAddress returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny the path struct for its child "local-address". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny) LocalAddress() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_LocalAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-address"}, + []string{"config", "local-address"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_PeerGroup_Transport the path struct for its child "mtu-discovery". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Transport) MtuDiscovery() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscovery { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscovery{ +// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath the path struct for its child "mtu-discovery". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath) MtuDiscovery() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPath{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny the path struct for its child "mtu-discovery". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny) MtuDiscovery() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryAny{ +// MtuDiscovery returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny the path struct for its child "mtu-discovery". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny) MtuDiscovery() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_MtuDiscoveryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mtu-discovery"}, + []string{"config", "mtu-discovery"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from NetworkInstance_Protocol_Bgp_PeerGroup_Transport the path struct for its child "passive-mode". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Transport) PassiveMode() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveMode { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveMode{ +// PassiveMode returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath the path struct for its child "passive-mode". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath) PassiveMode() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// PassiveMode returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny the path struct for its child "passive-mode". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny) PassiveMode() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModeAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModeAny{ +// PassiveMode returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny the path struct for its child "passive-mode". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny) PassiveMode() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_PassiveModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive-mode"}, + []string{"config", "passive-mode"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from NetworkInstance_Protocol_Bgp_PeerGroup_Transport the path struct for its child "tcp-mss". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_Transport) TcpMss() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMss { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMss{ +// TcpMss returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath the path struct for its child "tcp-mss". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPath) TcpMss() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPath{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// TcpMss returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny the path struct for its child "tcp-mss". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportAny) TcpMss() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssAny{ +// TcpMss returns from NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny the path struct for its child "tcp-mss". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_TransportPathAny) TcpMss() *NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_Transport_TcpMssPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tcp-mss"}, + []string{"config", "tcp-mss"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Enabled struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/state/enabled YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/config/enabled YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny struct { *ygot.NodePath } -// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -92232,9 +92446,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths) Ebgp() *Networ } } -// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "ebgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny{ +// Ebgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "ebgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny) Ebgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ebgp"}, map[string]interface{}{}, @@ -92243,31 +92457,31 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny) Ebgp() *Net } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Enabled { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny) Enabled() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPath) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -92276,9 +92490,9 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths) Ibgp() *Networ } } -// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny the path struct for its child "ibgp". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny{ +// Ibgp returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny the path struct for its child "ibgp". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsPathAny) Ibgp() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny{ NodePath: ygot.NewNodePath( []string{"ibgp"}, map[string]interface{}{}, @@ -92287,135 +92501,135 @@ func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePathsAny) Ibgp() *Net } } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/allow-multiple-as YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/allow-multiple-as YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ebgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny struct { *ygot.NodePath } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAs{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPath{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny the path struct for its child "allow-multiple-as". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsAny{ +// AllowMultipleAs returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny the path struct for its child "allow-multiple-as". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny) AllowMultipleAs() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_AllowMultipleAsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allow-multiple-as"}, + []string{"config", "allow-multiple-as"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_EbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ebgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/state/maximum-paths YANG schema element. -type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny struct { +// NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/peer-groups/peer-group/use-multiple-paths/ibgp/config/maximum-paths YANG schema element. +type NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny struct { *ygot.NodePath } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPaths{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPath) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny the path struct for its child "maximum-paths". -func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny { - return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsAny{ +// MaximumPaths returns from NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny the path struct for its child "maximum-paths". +func (n *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_IbgpPathAny) MaximumPaths() *NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny { + return &NetworkInstance_Protocol_Bgp_PeerGroup_UseMultiplePaths_Ibgp_MaximumPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-paths"}, + []string{"config", "maximum-paths"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Bgp_Rib represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib struct { +// NetworkInstance_Protocol_Bgp_RibPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib YANG schema element. +type NetworkInstance_Protocol_Bgp_RibPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_RibAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib YANG schema element. -type NetworkInstance_Protocol_Bgp_RibAny struct { +// NetworkInstance_Protocol_Bgp_RibPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib YANG schema element. +type NetworkInstance_Protocol_Bgp_RibPathAny struct { *ygot.NodePath } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Rib) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_RibPath) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -92424,9 +92638,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) AfiSafiAny() *NetworkInstance_Protoco } } -// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_RibAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny{ +// AfiSafiAny returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) AfiSafiAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": "*"}, @@ -92435,9 +92649,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) AfiSafiAny() *NetworkInstance_Prot } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_Rib) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_RibPath) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -92446,9 +92660,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) AfiSafi(AfiSafiName oc.E_OpenconfigBg } } -// AfiSafi returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "afi-safi". -func (n *NetworkInstance_Protocol_Bgp_RibAny) AfiSafi(AfiSafiName oc.E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny{ +// AfiSafi returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "afi-safi". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) AfiSafi(AfiSafiName E_OpenconfigBgpTypes_AFI_SAFI_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safis", "afi-safi"}, map[string]interface{}{"afi-safi-name": AfiSafiName}, @@ -92457,9 +92671,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) AfiSafi(AfiSafiName oc.E_Openconfi } } -// AttrSetAny returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "attr-set". -func (n *NetworkInstance_Protocol_Bgp_Rib) AttrSetAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSetAny{ +// AttrSetAny returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "attr-set". +func (n *NetworkInstance_Protocol_Bgp_RibPath) AttrSetAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": "*"}, @@ -92468,9 +92682,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) AttrSetAny() *NetworkInstance_Protoco } } -// AttrSetAny returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "attr-set". -func (n *NetworkInstance_Protocol_Bgp_RibAny) AttrSetAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSetAny{ +// AttrSetAny returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "attr-set". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) AttrSetAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": "*"}, @@ -92479,9 +92693,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) AttrSetAny() *NetworkInstance_Prot } } -// AttrSet returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "attr-set". -func (n *NetworkInstance_Protocol_Bgp_Rib) AttrSet(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet{ +// AttrSet returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "attr-set". +func (n *NetworkInstance_Protocol_Bgp_RibPath) AttrSet(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSetPath{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": Index}, @@ -92490,9 +92704,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) AttrSet(Index uint64) *NetworkInstanc } } -// AttrSet returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "attr-set". -func (n *NetworkInstance_Protocol_Bgp_RibAny) AttrSet(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSetAny{ +// AttrSet returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "attr-set". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) AttrSet(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny{ NodePath: ygot.NewNodePath( []string{"attr-sets", "attr-set"}, map[string]interface{}{"index": Index}, @@ -92501,9 +92715,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) AttrSet(Index uint64) *NetworkInst } } -// CommunityAny returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_Rib) CommunityAny() *NetworkInstance_Protocol_Bgp_Rib_CommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_CommunityAny{ +// CommunityAny returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_RibPath) CommunityAny() *NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": "*"}, @@ -92512,9 +92726,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) CommunityAny() *NetworkInstance_Proto } } -// CommunityAny returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_RibAny) CommunityAny() *NetworkInstance_Protocol_Bgp_Rib_CommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_CommunityAny{ +// CommunityAny returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) CommunityAny() *NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": "*"}, @@ -92523,9 +92737,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) CommunityAny() *NetworkInstance_Pr } } -// Community returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_Rib) Community(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_Community { - return &NetworkInstance_Protocol_Bgp_Rib_Community{ +// Community returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_RibPath) Community(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_CommunityPath { + return &NetworkInstance_Protocol_Bgp_Rib_CommunityPath{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": Index}, @@ -92534,9 +92748,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) Community(Index uint64) *NetworkInsta } } -// Community returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_RibAny) Community(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_CommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_CommunityAny{ +// Community returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) Community(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"communities", "community"}, map[string]interface{}{"index": Index}, @@ -92545,9 +92759,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) Community(Index uint64) *NetworkIn } } -// ExtCommunityAny returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_Rib) ExtCommunityAny() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny{ +// ExtCommunityAny returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_RibPath) ExtCommunityAny() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": "*"}, @@ -92556,9 +92770,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) ExtCommunityAny() *NetworkInstance_Pr } } -// ExtCommunityAny returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_RibAny) ExtCommunityAny() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny{ +// ExtCommunityAny returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) ExtCommunityAny() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": "*"}, @@ -92567,9 +92781,9 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) ExtCommunityAny() *NetworkInstance } } -// ExtCommunity returns from NetworkInstance_Protocol_Bgp_Rib the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_Rib) ExtCommunity(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity{ +// ExtCommunity returns from NetworkInstance_Protocol_Bgp_RibPath the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_RibPath) ExtCommunity(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": Index}, @@ -92578,9 +92792,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib) ExtCommunity(Index uint64) *NetworkIn } } -// ExtCommunity returns from NetworkInstance_Protocol_Bgp_RibAny the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_RibAny) ExtCommunity(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny{ +// ExtCommunity returns from NetworkInstance_Protocol_Bgp_RibPathAny the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_RibPathAny) ExtCommunity(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"ext-communities", "ext-community"}, map[string]interface{}{"index": Index}, @@ -92589,29 +92803,29 @@ func (n *NetworkInstance_Protocol_Bgp_RibAny) ExtCommunity(Index uint64) *Networ } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiName struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNameAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/state/afi-safi-name YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePathAny struct { *ygot.NodePath } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) AfiSafiName() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiName { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiName{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath) AfiSafiName() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePath{ NodePath: ygot.NewNodePath( []string{"state", "afi-safi-name"}, map[string]interface{}{}, @@ -92620,9 +92834,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) AfiSafiName() *NetworkInstanc } } -// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny the path struct for its child "afi-safi-name". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNameAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNameAny{ +// AfiSafiName returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny the path struct for its child "afi-safi-name". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny) AfiSafiName() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_AfiSafiNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "afi-safi-name"}, map[string]interface{}{}, @@ -92631,9 +92845,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) AfiSafiName() *NetworkInst } } -// Ipv4SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi the path struct for its child "ipv4-srte-policy". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv4SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy{ +// Ipv4SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath the path struct for its child "ipv4-srte-policy". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath) Ipv4SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath{ NodePath: ygot.NewNodePath( []string{"ipv4-srte-policy"}, map[string]interface{}{}, @@ -92642,9 +92856,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv4SrtePolicy() *NetworkInst } } -// Ipv4SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny the path struct for its child "ipv4-srte-policy". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv4SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny{ +// Ipv4SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv4-srte-policy". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny) Ipv4SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-srte-policy"}, map[string]interface{}{}, @@ -92653,9 +92867,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv4SrtePolicy() *NetworkI } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -92664,9 +92878,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv4Unicast() *NetworkInstanc } } -// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny the path struct for its child "ipv4-unicast". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny{ +// Ipv4Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv4-unicast". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny) Ipv4Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-unicast"}, map[string]interface{}{}, @@ -92675,9 +92889,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv4Unicast() *NetworkInst } } -// Ipv6SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi the path struct for its child "ipv6-srte-policy". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv6SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy{ +// Ipv6SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath the path struct for its child "ipv6-srte-policy". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath) Ipv6SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath{ NodePath: ygot.NewNodePath( []string{"ipv6-srte-policy"}, map[string]interface{}{}, @@ -92686,9 +92900,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv6SrtePolicy() *NetworkInst } } -// Ipv6SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny the path struct for its child "ipv6-srte-policy". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv6SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny{ +// Ipv6SrtePolicy returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv6-srte-policy". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny) Ipv6SrtePolicy() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-srte-policy"}, map[string]interface{}{}, @@ -92697,9 +92911,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv6SrtePolicy() *NetworkI } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPath) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -92708,9 +92922,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi) Ipv6Unicast() *NetworkInstanc } } -// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny the path struct for its child "ipv6-unicast". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny{ +// Ipv6Unicast returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny the path struct for its child "ipv6-unicast". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiPathAny) Ipv6Unicast() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-unicast"}, map[string]interface{}{}, @@ -92719,19 +92933,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafiAny) Ipv6Unicast() *NetworkInst } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny struct { *ygot.NodePath } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -92740,9 +92954,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) LocRib() *Netw } } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -92751,9 +92965,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) LocRib() *N } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -92762,9 +92976,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) NeighborAny() } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -92773,9 +92987,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) NeighborAny } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -92784,9 +92998,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy) Neighbor(Neigh } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyPathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -92795,19 +93009,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicyAny) Neighbor(Ne } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -92816,9 +93030,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib) RouteAn } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -92827,127 +93041,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRibAny) Rout } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -92956,9 +93170,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) A } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -92967,9 +93181,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -92978,9 +93192,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) C } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -92989,9 +93203,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -93000,9 +93214,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) C } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -93011,9 +93225,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -93022,9 +93236,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) E } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -93033,9 +93247,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -93044,9 +93258,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) E } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -93055,9 +93269,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -93066,9 +93280,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) I } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -93077,9 +93291,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -93088,9 +93302,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) L } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -93099,9 +93313,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -93110,9 +93324,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) P } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -93121,9 +93335,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -93132,9 +93346,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) U } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -93143,9 +93357,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -93154,9 +93368,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) U } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -93165,9 +93379,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -93176,9 +93390,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route) V } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -93187,89 +93401,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_RouteAny } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -93278,9 +93492,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -93289,9 +93503,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -93300,9 +93514,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -93311,9 +93525,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -93322,9 +93536,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -93333,9 +93547,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -93344,9 +93558,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -93355,9 +93569,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -93366,9 +93580,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -93377,9 +93591,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -93388,9 +93602,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -93399,9 +93613,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -93410,9 +93624,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -93421,29 +93635,29 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_LocRib_Route_Un } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -93452,9 +93666,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRi } } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -93463,9 +93677,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) Ad } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -93474,9 +93688,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRi } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -93485,9 +93699,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) Ad } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -93496,9 +93710,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRi } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -93507,9 +93721,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) Ad } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -93518,9 +93732,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) AdjRi } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -93529,9 +93743,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) Ad } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -93540,9 +93754,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor) Neigh } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -93551,19 +93765,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_NeighborAny) Ne } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -93572,9 +93786,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -93583,137 +93797,137 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -93722,9 +93936,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -93733,9 +93947,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -93744,9 +93958,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -93755,9 +93969,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -93766,9 +93980,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -93777,9 +93991,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -93788,9 +94002,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -93799,9 +94013,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -93810,9 +94024,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -93821,9 +94035,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -93832,9 +94046,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -93843,9 +94057,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -93854,9 +94068,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -93865,9 +94079,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -93876,9 +94090,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -93887,9 +94101,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -93898,9 +94112,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -93909,9 +94123,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -93920,9 +94134,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -93931,9 +94145,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -93942,9 +94156,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -93953,9 +94167,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -93964,9 +94178,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -93975,89 +94189,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -94066,9 +94280,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -94077,9 +94291,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -94088,9 +94302,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -94099,9 +94313,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -94110,9 +94324,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -94121,9 +94335,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -94132,9 +94346,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -94143,9 +94357,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -94154,9 +94368,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -94165,9 +94379,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -94176,9 +94390,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -94187,9 +94401,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -94198,9 +94412,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -94209,19 +94423,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -94230,9 +94444,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -94241,127 +94455,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -94370,9 +94584,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -94381,9 +94595,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -94392,9 +94606,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -94403,9 +94617,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -94414,9 +94628,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -94425,9 +94639,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -94436,9 +94650,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -94447,9 +94661,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -94458,9 +94672,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -94469,9 +94683,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -94480,9 +94694,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -94491,9 +94705,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -94502,9 +94716,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -94513,9 +94727,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -94524,9 +94738,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -94535,9 +94749,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -94546,9 +94760,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -94557,9 +94771,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -94568,9 +94782,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -94579,9 +94793,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -94590,9 +94804,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -94601,89 +94815,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -94692,9 +94906,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -94703,9 +94917,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -94714,9 +94928,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -94725,9 +94939,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -94736,9 +94950,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -94747,9 +94961,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -94758,9 +94972,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -94769,9 +94983,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -94780,9 +94994,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -94791,9 +95005,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -94802,9 +95016,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -94813,9 +95027,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -94824,9 +95038,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -94835,19 +95049,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -94856,9 +95070,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -94867,127 +95081,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -94996,9 +95210,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -95007,9 +95221,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -95018,9 +95232,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -95029,9 +95243,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -95040,9 +95254,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -95051,9 +95265,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -95062,9 +95276,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -95073,9 +95287,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -95084,9 +95298,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -95095,9 +95309,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -95106,9 +95320,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -95117,9 +95331,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -95128,9 +95342,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -95139,9 +95353,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -95150,9 +95364,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -95161,9 +95375,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -95172,9 +95386,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -95183,9 +95397,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -95194,9 +95408,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -95205,9 +95419,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -95216,9 +95430,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -95227,89 +95441,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -95318,9 +95532,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -95329,9 +95543,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -95340,9 +95554,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -95351,9 +95565,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -95362,9 +95576,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -95373,9 +95587,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -95384,9 +95598,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -95395,9 +95609,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -95406,9 +95620,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -95417,9 +95631,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -95428,9 +95642,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -95439,9 +95653,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -95450,9 +95664,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -95461,19 +95675,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -95482,9 +95696,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -95493,127 +95707,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -95622,9 +95836,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -95633,9 +95847,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -95644,9 +95858,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -95655,9 +95869,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -95666,9 +95880,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -95677,9 +95891,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -95688,9 +95902,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -95699,9 +95913,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -95710,9 +95924,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -95721,9 +95935,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -95732,9 +95946,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -95743,9 +95957,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -95754,9 +95968,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -95765,9 +95979,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -95776,9 +95990,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -95787,9 +96001,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -95798,9 +96012,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -95809,9 +96023,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -95820,9 +96034,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -95831,9 +96045,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -95842,9 +96056,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -95853,89 +96067,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -95944,9 +96158,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -95955,9 +96169,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -95966,9 +96180,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -95977,9 +96191,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -95988,9 +96202,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -95999,9 +96213,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -96010,9 +96224,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -96021,9 +96235,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -96032,9 +96246,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -96043,9 +96257,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -96054,9 +96268,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -96065,9 +96279,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -96076,9 +96290,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -96087,19 +96301,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny struct { *ygot.NodePath } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -96108,9 +96322,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) LocRib() *Network } } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -96119,9 +96333,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) LocRib() *Netw } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -96130,9 +96344,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) NeighborAny() *Ne } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -96141,9 +96355,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) NeighborAny() } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -96152,9 +96366,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast) Neighbor(Neighbor } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastPathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -96163,19 +96377,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4UnicastAny) Neighbor(Neigh } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -96184,9 +96398,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib) RouteAny() } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -96195,127 +96409,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRibAny) RouteAn } } -// WithPrefix sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "prefix" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithPrefix sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "prefix" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "prefix", Prefix) return n } -// WithOrigin sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "origin" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithOrigin(Origin oc.NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin_Union) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithOrigin sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "origin" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithOrigin(Origin NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin_Union) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "origin", Origin) return n } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -96324,9 +96538,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Attr } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -96335,9 +96549,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) A } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -96346,9 +96560,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Comm } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -96357,9 +96571,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) C } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -96368,9 +96582,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ExtC } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -96379,9 +96593,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) E } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -96390,9 +96604,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Inva } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -96401,9 +96615,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) I } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -96412,9 +96626,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Last } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -96423,9 +96637,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) L } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Origin{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -96434,9 +96648,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Orig } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginAny{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -96445,9 +96659,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) O } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -96456,9 +96670,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Path } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -96467,9 +96681,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) P } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -96478,9 +96692,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Pref } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -96489,9 +96703,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) P } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -96500,9 +96714,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Unkn } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -96511,9 +96725,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) U } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -96522,9 +96736,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Unkn } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -96533,9 +96747,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) U } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -96544,9 +96758,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route) Vali } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -96555,89 +96769,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_RouteAny) V } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -96646,9 +96860,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -96657,9 +96871,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -96668,9 +96882,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -96679,9 +96893,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -96690,9 +96904,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -96701,9 +96915,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -96712,9 +96926,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -96723,9 +96937,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -96734,9 +96948,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -96745,9 +96959,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -96756,9 +96970,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -96767,9 +96981,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -96778,9 +96992,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -96789,29 +97003,29 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_LocRib_Route_Unkno } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -96820,9 +97034,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibIn } } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -96831,9 +97045,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRi } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -96842,9 +97056,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibIn } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -96853,9 +97067,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRi } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -96864,9 +97078,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOu } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -96875,9 +97089,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRi } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -96886,9 +97100,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) AdjRibOu } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -96897,9 +97111,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) AdjRi } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -96908,9 +97122,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor) Neighbor } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -96919,19 +97133,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_NeighborAny) Neigh } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -96940,9 +97154,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -96951,9 +97165,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -96962,9 +97176,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -96973,9 +97187,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -96984,9 +97198,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -96995,9 +97209,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -97006,9 +97220,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPostPathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -97017,109 +97231,109 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -97128,9 +97342,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -97139,9 +97353,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -97150,9 +97364,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -97161,9 +97375,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -97172,9 +97386,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -97183,9 +97397,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -97194,9 +97408,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -97205,9 +97419,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -97216,9 +97430,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -97227,9 +97441,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -97238,9 +97452,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -97249,9 +97463,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -97260,9 +97474,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -97271,9 +97485,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -97282,9 +97496,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -97293,9 +97507,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -97304,9 +97518,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -97315,9 +97529,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -97326,9 +97540,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -97337,9 +97551,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -97348,9 +97562,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -97359,89 +97573,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -97450,9 +97664,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -97461,9 +97675,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -97472,9 +97686,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -97483,9 +97697,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -97494,9 +97708,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -97505,9 +97719,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -97516,9 +97730,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -97527,9 +97741,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -97538,9 +97752,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -97549,9 +97763,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -97560,9 +97774,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -97571,9 +97785,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -97582,9 +97796,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -97593,19 +97807,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -97614,9 +97828,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -97625,9 +97839,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -97636,9 +97850,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -97647,9 +97861,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -97658,9 +97872,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -97669,9 +97883,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -97680,9 +97894,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPreAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPrePathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -97691,99 +97905,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -97792,9 +98006,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -97803,9 +98017,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -97814,9 +98028,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -97825,9 +98039,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -97836,9 +98050,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -97847,9 +98061,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -97858,9 +98072,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -97869,9 +98083,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -97880,9 +98094,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -97891,9 +98105,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -97902,9 +98116,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -97913,9 +98127,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -97924,9 +98138,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -97935,9 +98149,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -97946,9 +98160,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -97957,9 +98171,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -97968,9 +98182,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -97979,9 +98193,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -97990,9 +98204,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -98001,89 +98215,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -98092,9 +98306,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -98103,9 +98317,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -98114,9 +98328,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -98125,9 +98339,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -98136,9 +98350,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -98147,9 +98361,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -98158,9 +98372,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -98169,9 +98383,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -98180,9 +98394,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -98191,9 +98405,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -98202,9 +98416,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -98213,9 +98427,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -98224,9 +98438,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -98235,19 +98449,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -98256,9 +98470,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -98267,9 +98481,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -98278,9 +98492,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -98289,9 +98503,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -98300,9 +98514,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -98311,9 +98525,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -98322,9 +98536,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPostPathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -98333,99 +98547,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -98434,9 +98648,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -98445,9 +98659,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -98456,9 +98670,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -98467,9 +98681,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -98478,9 +98692,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -98489,9 +98703,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -98500,9 +98714,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -98511,9 +98725,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -98522,9 +98736,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -98533,9 +98747,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -98544,9 +98758,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -98555,9 +98769,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -98566,9 +98780,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -98577,9 +98791,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -98588,9 +98802,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -98599,9 +98813,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -98610,9 +98824,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -98621,9 +98835,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -98632,9 +98846,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -98643,89 +98857,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -98734,9 +98948,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -98745,9 +98959,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -98756,9 +98970,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -98767,9 +98981,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -98778,9 +98992,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -98789,9 +99003,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -98800,9 +99014,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -98811,9 +99025,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -98822,9 +99036,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -98833,9 +99047,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -98844,9 +99058,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -98855,9 +99069,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -98866,9 +99080,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -98877,19 +99091,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -98898,9 +99112,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -98909,9 +99123,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -98920,9 +99134,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -98931,9 +99145,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -98942,9 +99156,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -98953,9 +99167,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -98964,9 +99178,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPrePathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -98975,99 +99189,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -99076,9 +99290,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -99087,9 +99301,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -99098,9 +99312,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -99109,9 +99323,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -99120,9 +99334,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -99131,9 +99345,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -99142,9 +99356,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -99153,9 +99367,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -99164,9 +99378,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -99175,9 +99389,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -99186,9 +99400,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -99197,9 +99411,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -99208,9 +99422,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -99219,9 +99433,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -99230,9 +99444,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -99241,9 +99455,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -99252,9 +99466,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -99263,9 +99477,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -99274,9 +99488,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -99285,89 +99499,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv4-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -99376,9 +99590,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -99387,9 +99601,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -99398,9 +99612,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -99409,9 +99623,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -99420,9 +99634,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -99431,9 +99645,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -99442,9 +99656,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -99453,9 +99667,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -99464,9 +99678,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -99475,9 +99689,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -99486,9 +99700,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -99497,9 +99711,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -99508,9 +99722,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -99519,19 +99733,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv4Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny struct { *ygot.NodePath } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -99540,9 +99754,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) LocRib() *Netw } } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -99551,9 +99765,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) LocRib() *N } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -99562,9 +99776,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) NeighborAny() } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -99573,9 +99787,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) NeighborAny } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -99584,9 +99798,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy) Neighbor(Neigh } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyPathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -99595,19 +99809,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicyAny) Neighbor(Ne } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -99616,9 +99830,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib) RouteAn } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -99627,127 +99841,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRibAny) Rout } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -99756,9 +99970,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) A } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -99767,9 +99981,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -99778,9 +99992,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) C } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -99789,9 +100003,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -99800,9 +100014,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) C } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -99811,9 +100025,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -99822,9 +100036,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) E } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -99833,9 +100047,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -99844,9 +100058,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) E } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -99855,9 +100069,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -99866,9 +100080,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) I } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -99877,9 +100091,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -99888,9 +100102,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) L } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -99899,9 +100113,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -99910,9 +100124,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) P } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -99921,9 +100135,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -99932,9 +100146,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) U } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -99943,9 +100157,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -99954,9 +100168,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) U } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -99965,9 +100179,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -99976,9 +100190,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route) V } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -99987,89 +100201,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_RouteAny } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -100078,9 +100292,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -100089,9 +100303,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -100100,9 +100314,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -100111,9 +100325,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -100122,9 +100336,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -100133,9 +100347,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -100144,9 +100358,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -100155,9 +100369,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -100166,9 +100380,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -100177,9 +100391,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -100188,9 +100402,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -100199,9 +100413,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -100210,9 +100424,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -100221,29 +100435,29 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_LocRib_Route_Un } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -100252,9 +100466,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRi } } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -100263,9 +100477,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) Ad } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -100274,9 +100488,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRi } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -100285,9 +100499,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) Ad } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -100296,9 +100510,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRi } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -100307,9 +100521,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) Ad } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -100318,9 +100532,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) AdjRi } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -100329,9 +100543,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) Ad } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -100340,9 +100554,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor) Neigh } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -100351,19 +100565,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_NeighborAny) Ne } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -100372,9 +100586,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -100383,137 +100597,137 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -100522,9 +100736,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -100533,9 +100747,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -100544,9 +100758,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -100555,9 +100769,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -100566,9 +100780,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -100577,9 +100791,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -100588,9 +100802,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -100599,9 +100813,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -100610,9 +100824,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -100621,9 +100835,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -100632,9 +100846,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -100643,9 +100857,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -100654,9 +100868,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -100665,9 +100879,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -100676,9 +100890,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -100687,9 +100901,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -100698,9 +100912,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -100709,9 +100923,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -100720,9 +100934,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -100731,9 +100945,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -100742,9 +100956,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -100753,9 +100967,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -100764,9 +100978,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -100775,89 +100989,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -100866,9 +101080,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -100877,9 +101091,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -100888,9 +101102,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -100899,9 +101113,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -100910,9 +101124,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -100921,9 +101135,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -100932,9 +101146,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -100943,9 +101157,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -100954,9 +101168,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -100965,9 +101179,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -100976,9 +101190,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -100987,9 +101201,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -100998,9 +101212,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -101009,19 +101223,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -101030,9 +101244,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -101041,127 +101255,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -101170,9 +101384,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -101181,9 +101395,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -101192,9 +101406,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -101203,9 +101417,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -101214,9 +101428,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -101225,9 +101439,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -101236,9 +101450,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -101247,9 +101461,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -101258,9 +101472,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -101269,9 +101483,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -101280,9 +101494,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -101291,9 +101505,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -101302,9 +101516,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -101313,9 +101527,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -101324,9 +101538,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -101335,9 +101549,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -101346,9 +101560,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -101357,9 +101571,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -101368,9 +101582,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -101379,9 +101593,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -101390,9 +101604,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -101401,89 +101615,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -101492,9 +101706,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -101503,9 +101717,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -101514,9 +101728,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -101525,9 +101739,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -101536,9 +101750,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -101547,9 +101761,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -101558,9 +101772,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -101569,9 +101783,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -101580,9 +101794,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -101591,9 +101805,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -101602,9 +101816,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -101613,9 +101827,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -101624,9 +101838,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -101635,19 +101849,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -101656,9 +101870,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -101667,127 +101881,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -101796,9 +102010,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -101807,9 +102021,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -101818,9 +102032,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -101829,9 +102043,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -101840,9 +102054,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -101851,9 +102065,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -101862,9 +102076,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -101873,9 +102087,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -101884,9 +102098,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -101895,9 +102109,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -101906,9 +102120,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -101917,9 +102131,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -101928,9 +102142,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -101939,9 +102153,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -101950,9 +102164,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -101961,9 +102175,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -101972,9 +102186,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -101983,9 +102197,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -101994,9 +102208,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -102005,9 +102219,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -102016,9 +102230,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -102027,89 +102241,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -102118,9 +102332,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -102129,9 +102343,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -102140,9 +102354,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -102151,9 +102365,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -102162,9 +102376,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -102173,9 +102387,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -102184,9 +102398,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -102195,9 +102409,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -102206,9 +102420,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -102217,9 +102431,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -102228,9 +102442,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -102239,9 +102453,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -102250,9 +102464,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -102261,19 +102475,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -102282,9 +102496,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"path-id": "*", "endpoint": "*", "color": "*"}, @@ -102293,127 +102507,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "endpoint" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithEndpoint sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "endpoint" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "endpoint", Endpoint) return n } -// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny's key "color" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny { +// WithColor sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny's key "color" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) WithColor(Color uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny { ygot.ModifyKey(n.NodePath, "color", Color) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/color YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -102422,9 +102636,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -102433,9 +102647,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Color{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -102444,9 +102658,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "color". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorAny{ +// Color returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "color". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Color() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -102455,9 +102669,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -102466,9 +102680,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -102477,9 +102691,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -102488,9 +102702,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -102499,9 +102713,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -102510,9 +102724,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -102521,9 +102735,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -102532,9 +102746,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -102543,9 +102757,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -102554,9 +102768,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -102565,9 +102779,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -102576,9 +102790,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -102587,9 +102801,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -102598,9 +102812,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -102609,9 +102823,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -102620,9 +102834,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -102631,9 +102845,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -102642,9 +102856,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -102653,89 +102867,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-srte-policy/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -102744,9 +102958,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -102755,9 +102969,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -102766,9 +102980,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -102777,9 +102991,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -102788,9 +103002,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -102799,9 +103013,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -102810,9 +103024,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -102821,9 +103035,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -102832,9 +103046,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -102843,9 +103057,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -102854,9 +103068,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -102865,9 +103079,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -102876,9 +103090,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -102887,19 +103101,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6SrtePolicy_Neighbor_AdjRib } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny struct { *ygot.NodePath } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -102908,9 +103122,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) LocRib() *Network } } -// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "loc-rib". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny{ +// LocRib returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "loc-rib". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) LocRib() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny{ NodePath: ygot.NewNodePath( []string{"loc-rib"}, map[string]interface{}{}, @@ -102919,9 +103133,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) LocRib() *Netw } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -102930,9 +103144,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) NeighborAny() *Ne } } -// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) NeighborAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -102941,9 +103155,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) NeighborAny() } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -102952,9 +103166,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast) Neighbor(Neighbor } } -// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastPathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -102963,19 +103177,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6UnicastAny) Neighbor(Neigh } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -102984,9 +103198,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib) RouteAny() } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "origin": "*", "path-id": "*"}, @@ -102995,127 +103209,127 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRibAny) RouteAn } } -// WithPrefix sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "prefix" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithPrefix sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "prefix" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithPrefix(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "prefix", Prefix) return n } -// WithOrigin sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "origin" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithOrigin(Origin oc.NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin_Union) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithOrigin sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "origin" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithOrigin(Origin NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin_Union) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "origin", Origin) return n } -// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny's key "path-id" to the specified value. -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny { +// WithPathId sets NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny's key "path-id" to the specified value. +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) WithPathId(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny { ygot.ModifyKey(n.NodePath, "path-id", PathId) return n } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -103124,9 +103338,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Attr } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -103135,9 +103349,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) A } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -103146,9 +103360,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Comm } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -103157,9 +103371,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) C } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -103168,9 +103382,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ExtC } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -103179,9 +103393,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) E } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -103190,9 +103404,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Inva } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -103201,9 +103415,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) I } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -103212,9 +103426,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Last } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -103223,9 +103437,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) L } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Origin{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -103234,9 +103448,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Orig } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginAny{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -103245,9 +103459,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) O } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -103256,9 +103470,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Path } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -103267,9 +103481,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) P } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -103278,9 +103492,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Pref } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -103289,9 +103503,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) P } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -103300,9 +103514,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Unkn } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -103311,9 +103525,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) U } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -103322,9 +103536,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Unkn } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -103333,9 +103547,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) U } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -103344,9 +103558,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route) Vali } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -103355,89 +103569,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_RouteAny) V } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/loc-rib/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -103446,9 +103660,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -103457,9 +103671,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -103468,9 +103682,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -103479,9 +103693,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -103490,9 +103704,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -103501,9 +103715,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -103512,9 +103726,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -103523,9 +103737,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -103534,9 +103748,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -103545,9 +103759,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -103556,9 +103770,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -103567,9 +103781,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -103578,9 +103792,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -103589,29 +103803,29 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_LocRib_Route_Unkno } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -103620,9 +103834,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibIn } } -// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-in-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny{ +// AdjRibInPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-in-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibInPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-post"}, map[string]interface{}{}, @@ -103631,9 +103845,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRi } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -103642,9 +103856,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibIn } } -// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-in-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny{ +// AdjRibInPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-in-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibInPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-in-pre"}, map[string]interface{}{}, @@ -103653,9 +103867,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRi } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -103664,9 +103878,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOu } } -// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-out-post". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny{ +// AdjRibOutPost returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-out-post". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibOutPost() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-post"}, map[string]interface{}{}, @@ -103675,9 +103889,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRi } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -103686,9 +103900,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) AdjRibOu } } -// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "adj-rib-out-pre". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny{ +// AdjRibOutPre returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "adj-rib-out-pre". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) AdjRibOutPre() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny{ NodePath: ygot.NewNodePath( []string{"adj-rib-out-pre"}, map[string]interface{}{}, @@ -103697,9 +103911,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) AdjRi } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -103708,9 +103922,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor) Neighbor } } -// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -103719,19 +103933,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_NeighborAny) Neigh } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -103740,9 +103954,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -103751,9 +103965,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -103762,9 +103976,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -103773,9 +103987,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -103784,9 +103998,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -103795,9 +104009,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -103806,9 +104020,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPostPathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -103817,109 +104031,109 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/best-path YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -103928,9 +104142,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -103939,9 +104153,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPath{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPath{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -103950,9 +104164,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "best-path". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathAny{ +// BestPath returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "best-path". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) BestPath() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_BestPathPathAny{ NodePath: ygot.NewNodePath( []string{"state", "best-path"}, map[string]interface{}{}, @@ -103961,9 +104175,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -103972,9 +104186,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -103983,9 +104197,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -103994,9 +104208,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -104005,9 +104219,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -104016,9 +104230,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -104027,9 +104241,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -104038,9 +104252,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -104049,9 +104263,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -104060,9 +104274,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -104071,9 +104285,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -104082,9 +104296,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -104093,9 +104307,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -104104,9 +104318,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -104115,9 +104329,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -104126,9 +104340,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -104137,9 +104351,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -104148,9 +104362,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -104159,89 +104373,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -104250,9 +104464,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -104261,9 +104475,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -104272,9 +104486,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -104283,9 +104497,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -104294,9 +104508,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -104305,9 +104519,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -104316,9 +104530,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -104327,9 +104541,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -104338,9 +104552,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -104349,9 +104563,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -104360,9 +104574,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -104371,9 +104585,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -104382,9 +104596,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -104393,19 +104607,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -104414,9 +104628,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -104425,9 +104639,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -104436,9 +104650,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -104447,9 +104661,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -104458,9 +104672,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -104469,9 +104683,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -104480,9 +104694,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPreAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPrePathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -104491,99 +104705,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -104592,9 +104806,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -104603,9 +104817,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -104614,9 +104828,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -104625,9 +104839,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -104636,9 +104850,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -104647,9 +104861,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -104658,9 +104872,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -104669,9 +104883,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -104680,9 +104894,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -104691,9 +104905,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -104702,9 +104916,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -104713,9 +104927,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -104724,9 +104938,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -104735,9 +104949,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -104746,9 +104960,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -104757,9 +104971,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -104768,9 +104982,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -104779,9 +104993,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -104790,9 +105004,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -104801,89 +105015,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-in-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -104892,9 +105106,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -104903,9 +105117,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -104914,9 +105128,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -104925,9 +105139,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -104936,9 +105150,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -104947,9 +105161,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -104958,9 +105172,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -104969,9 +105183,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -104980,9 +105194,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -104991,9 +105205,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -105002,9 +105216,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -105013,9 +105227,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -105024,9 +105238,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -105035,19 +105249,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibInP } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -105056,9 +105270,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -105067,9 +105281,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -105078,9 +105292,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -105089,9 +105303,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -105100,9 +105314,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -105111,9 +105325,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -105122,9 +105336,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPostPathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -105133,99 +105347,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -105234,9 +105448,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -105245,9 +105459,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -105256,9 +105470,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -105267,9 +105481,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -105278,9 +105492,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -105289,9 +105503,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -105300,9 +105514,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -105311,9 +105525,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -105322,9 +105536,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -105333,9 +105547,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -105344,9 +105558,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -105355,9 +105569,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -105366,9 +105580,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -105377,9 +105591,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -105388,9 +105602,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -105399,9 +105613,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -105410,9 +105624,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -105421,9 +105635,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -105432,9 +105646,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -105443,89 +105657,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-post/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -105534,9 +105748,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -105545,9 +105759,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -105556,9 +105770,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -105567,9 +105781,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -105578,9 +105792,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -105589,9 +105803,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -105600,9 +105814,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -105611,9 +105825,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -105622,9 +105836,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -105633,9 +105847,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -105644,9 +105858,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -105655,9 +105869,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -105666,9 +105880,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPost_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -105677,19 +105891,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny struct { *ygot.NodePath } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -105698,9 +105912,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": "*"}, @@ -105709,9 +105923,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -105720,9 +105934,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPathId(Prefix string) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": "*"}, @@ -105731,9 +105945,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -105742,9 +105956,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// RouteAnyPrefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) RouteAnyPrefix(PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": "*", "path-id": PathId}, @@ -105753,9 +105967,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePath) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -105764,9 +105978,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny the path struct for its child "route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPreAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny{ +// Route returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny the path struct for its child "route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPrePathAny) Route(Prefix string, PathId uint32) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny{ NodePath: ygot.NewNodePath( []string{"routes", "route"}, map[string]interface{}{"prefix": Prefix, "path-id": PathId}, @@ -105775,99 +105989,99 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/attr-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/ext-community-index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/invalid-reason YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/last-modified YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/path-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/prefix YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/state/valid-route YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny struct { *ygot.NodePath } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndex{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -105876,9 +106090,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "attr-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexAny{ +// AttrIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "attr-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) AttrIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_AttrIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-index"}, map[string]interface{}{}, @@ -105887,9 +106101,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndex{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -105898,9 +106112,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexAny{ +// CommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) CommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_CommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community-index"}, map[string]interface{}{}, @@ -105909,9 +106123,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndex{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -105920,9 +106134,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "ext-community-index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexAny{ +// ExtCommunityIndex returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "ext-community-index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ExtCommunityIndex() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ExtCommunityIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community-index"}, map[string]interface{}{}, @@ -105931,9 +106145,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReason{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -105942,9 +106156,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) InvalidReason() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -105953,9 +106167,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModified{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPath{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -105964,9 +106178,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "last-modified". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedAny{ +// LastModified returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "last-modified". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) LastModified() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_LastModifiedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-modified"}, map[string]interface{}{}, @@ -105975,9 +106189,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathId{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPath{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -105986,9 +106200,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "path-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdAny{ +// PathId returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "path-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) PathId() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PathIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "path-id"}, map[string]interface{}{}, @@ -105997,9 +106211,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -106008,9 +106222,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) Prefix() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -106019,9 +106233,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -106030,9 +106244,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttributeAny returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttributeAny() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": "*"}, @@ -106041,9 +106255,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -106052,9 +106266,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "unknown-attribute". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny{ +// UnknownAttribute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "unknown-attribute". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) UnknownAttribute(AttrType uint8) *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny{ NodePath: ygot.NewNodePath( []string{"unknown-attributes", "unknown-attribute"}, map[string]interface{}{"attr-type": AttrType}, @@ -106063,9 +106277,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoute{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePath) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePath{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -106074,9 +106288,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny the path struct for its child "valid-route". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RouteAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRouteAny{ +// ValidRoute returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny the path struct for its child "valid-route". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_RoutePathAny) ValidRoute() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_ValidRoutePathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid-route"}, map[string]interface{}{}, @@ -106085,89 +106299,89 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-len YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/attr-value YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/extended YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/optional YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/partial YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/afi-safis/afi-safi/ipv6-unicast/neighbors/neighbor/adj-rib-out-pre/routes/route/unknown-attributes/unknown-attribute/state/transitive YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny struct { *ygot.NodePath } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLen{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPath{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -106176,9 +106390,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-len". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenAny{ +// AttrLen returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-len". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrLen() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrLenPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-len"}, map[string]interface{}{}, @@ -106187,9 +106401,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrType{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -106198,9 +106412,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypeAny{ +// AttrType returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrType() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-type"}, map[string]interface{}{}, @@ -106209,9 +106423,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValue{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePath{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -106220,9 +106434,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "attr-value". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValueAny{ +// AttrValue returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "attr-value". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) AttrValue() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_AttrValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "attr-value"}, map[string]interface{}{}, @@ -106231,9 +106445,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Extended{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPath{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -106242,9 +106456,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "extended". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedAny{ +// Extended returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "extended". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Extended() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_ExtendedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended"}, map[string]interface{}{}, @@ -106253,9 +106467,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Optional{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPath{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -106264,9 +106478,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "optional". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalAny{ +// Optional returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "optional". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Optional() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_OptionalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional"}, map[string]interface{}{}, @@ -106275,9 +106489,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Partial{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPath{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -106286,9 +106500,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "partial". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialAny{ +// Partial returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "partial". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Partial() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_PartialPathAny{ NodePath: ygot.NewNodePath( []string{"state", "partial"}, map[string]interface{}{}, @@ -106297,9 +106511,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_Transitive{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePath) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePath{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -106308,9 +106522,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny the path struct for its child "transitive". -func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributeAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny { - return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitiveAny{ +// Transitive returns from NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny the path struct for its child "transitive". +func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttributePathAny) Transitive() *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOutPre_Route_UnknownAttribute_TransitivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "transitive"}, map[string]interface{}{}, @@ -106319,109 +106533,109 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AfiSafi_Ipv6Unicast_Neighbor_AdjRibOut } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSetPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSetPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSetAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aigp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aigp struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/aigp YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregate represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregate struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregateAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/atomic-aggregate YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterList represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterList struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/cluster-list YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Index represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Index struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPref represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPref struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/local-pref YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Med represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/med YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Med struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/med YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/med YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/med YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHop struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/next-hop YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Origin represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Origin struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/origin YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorId struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/state/originator-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPathAny struct { *ygot.NodePath } -// Aggregator returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "aggregator". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Aggregator() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator{ +// Aggregator returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "aggregator". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) Aggregator() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath{ NodePath: ygot.NewNodePath( []string{"aggregator"}, map[string]interface{}{}, @@ -106430,9 +106644,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Aggregator() *NetworkInstance } } -// Aggregator returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "aggregator". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Aggregator() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny{ +// Aggregator returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "aggregator". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) Aggregator() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny{ NodePath: ygot.NewNodePath( []string{"aggregator"}, map[string]interface{}{}, @@ -106441,9 +106655,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Aggregator() *NetworkInsta } } -// Aigp returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "aigp". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Aigp() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aigp { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aigp{ +// Aigp returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "aigp". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) Aigp() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPath{ NodePath: ygot.NewNodePath( []string{"state", "aigp"}, map[string]interface{}{}, @@ -106452,9 +106666,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Aigp() *NetworkInstance_Proto } } -// Aigp returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "aigp". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Aigp() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpAny{ +// Aigp returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "aigp". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) Aigp() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AigpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "aigp"}, map[string]interface{}{}, @@ -106463,9 +106677,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Aigp() *NetworkInstance_Pr } } -// AtomicAggregate returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "atomic-aggregate". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) AtomicAggregate() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregate { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregate{ +// AtomicAggregate returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "atomic-aggregate". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) AtomicAggregate() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePath{ NodePath: ygot.NewNodePath( []string{"state", "atomic-aggregate"}, map[string]interface{}{}, @@ -106474,9 +106688,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) AtomicAggregate() *NetworkIns } } -// AtomicAggregate returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "atomic-aggregate". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) AtomicAggregate() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregateAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregateAny{ +// AtomicAggregate returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "atomic-aggregate". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) AtomicAggregate() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AtomicAggregatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "atomic-aggregate"}, map[string]interface{}{}, @@ -106485,9 +106699,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) AtomicAggregate() *Network } } -// ClusterList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "cluster-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) ClusterList() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterList { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterList{ +// ClusterList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "cluster-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) ClusterList() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPath{ NodePath: ygot.NewNodePath( []string{"state", "cluster-list"}, map[string]interface{}{}, @@ -106496,9 +106710,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) ClusterList() *NetworkInstanc } } -// ClusterList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "cluster-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) ClusterList() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListAny{ +// ClusterList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "cluster-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) ClusterList() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_ClusterListPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cluster-list"}, map[string]interface{}{}, @@ -106507,9 +106721,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) ClusterList() *NetworkInst } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Index { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Index{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -106518,9 +106732,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Index() *NetworkInstance_Prot } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexAny{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -106529,9 +106743,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Index() *NetworkInstance_P } } -// LocalPref returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "local-pref". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) LocalPref() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPref { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPref{ +// LocalPref returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "local-pref". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) LocalPref() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPath{ NodePath: ygot.NewNodePath( []string{"state", "local-pref"}, map[string]interface{}{}, @@ -106540,9 +106754,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) LocalPref() *NetworkInstance_ } } -// LocalPref returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "local-pref". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) LocalPref() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefAny{ +// LocalPref returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "local-pref". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) LocalPref() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_LocalPrefPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-pref"}, map[string]interface{}{}, @@ -106551,9 +106765,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) LocalPref() *NetworkInstan } } -// Med returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "med". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Med() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Med { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Med{ +// Med returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "med". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) Med() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPath{ NodePath: ygot.NewNodePath( []string{"state", "med"}, map[string]interface{}{}, @@ -106562,9 +106776,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Med() *NetworkInstance_Protoc } } -// Med returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "med". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Med() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedAny{ +// Med returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "med". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) Med() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_MedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "med"}, map[string]interface{}{}, @@ -106573,9 +106787,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Med() *NetworkInstance_Pro } } -// NextHop returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) NextHop() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHop { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHop{ +// NextHop returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) NextHop() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPath{ NodePath: ygot.NewNodePath( []string{"state", "next-hop"}, map[string]interface{}{}, @@ -106584,9 +106798,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) NextHop() *NetworkInstance_Pr } } -// NextHop returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) NextHop() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopAny{ +// NextHop returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) NextHop() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"state", "next-hop"}, map[string]interface{}{}, @@ -106595,9 +106809,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) NextHop() *NetworkInstance } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Origin() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Origin { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Origin{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) Origin() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPath{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -106606,9 +106820,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) Origin() *NetworkInstance_Pro } } -// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "origin". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginAny{ +// Origin returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "origin". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) Origin() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin"}, map[string]interface{}{}, @@ -106617,9 +106831,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) Origin() *NetworkInstance_ } } -// OriginatorId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "originator-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) OriginatorId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorId { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorId{ +// OriginatorId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "originator-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) OriginatorId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPath{ NodePath: ygot.NewNodePath( []string{"state", "originator-id"}, map[string]interface{}{}, @@ -106628,9 +106842,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) OriginatorId() *NetworkInstan } } -// OriginatorId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "originator-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) OriginatorId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdAny{ +// OriginatorId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "originator-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) OriginatorId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_OriginatorIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "originator-id"}, map[string]interface{}{}, @@ -106639,9 +106853,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) OriginatorId() *NetworkIns } } -// TunnelEncapsulation returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet the path struct for its child "tunnel-encapsulation". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) TunnelEncapsulation() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation{ +// TunnelEncapsulation returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPath the path struct for its child "tunnel-encapsulation". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPath) TunnelEncapsulation() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath{ NodePath: ygot.NewNodePath( []string{"tunnel-encapsulation"}, map[string]interface{}{}, @@ -106650,9 +106864,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet) TunnelEncapsulation() *Networ } } -// TunnelEncapsulation returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetAny the path struct for its child "tunnel-encapsulation". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) TunnelEncapsulation() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny{ +// TunnelEncapsulation returns from NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny the path struct for its child "tunnel-encapsulation". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetPathAny) TunnelEncapsulation() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny{ NodePath: ygot.NewNodePath( []string{"tunnel-encapsulation"}, map[string]interface{}{}, @@ -106661,49 +106875,49 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSetAny) TunnelEncapsulation() *Net } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_Address struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4 struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Any struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/aggregator/state/as4 YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4PathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator the path struct for its child "address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_Address { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_Address{ +// Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath) Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -106712,9 +106926,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) Address() *Network } } -// Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressAny{ +// Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny) Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -106723,9 +106937,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) Address() *Netw } } -// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As{ +// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPath{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -106734,9 +106948,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) As() *NetworkInsta } } -// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsAny{ +// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_AsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -106745,9 +106959,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) As() *NetworkIn } } -// As4 returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator the path struct for its child "as4". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) As4() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4 { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4{ +// As4 returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath the path struct for its child "as4". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPath) As4() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Path { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Path{ NodePath: ygot.NewNodePath( []string{"state", "as4"}, map[string]interface{}{}, @@ -106756,9 +106970,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator) As4() *NetworkInst } } -// As4 returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny the path struct for its child "as4". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) As4() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Any { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4Any{ +// As4 returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny the path struct for its child "as4". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorPathAny) As4() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4PathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_Aggregator_As4PathAny{ NodePath: ygot.NewNodePath( []string{"state", "as4"}, map[string]interface{}{}, @@ -106767,39 +106981,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AggregatorAny) As4() *NetworkI } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Member represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Member struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/member YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Type struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as4-path/as4-segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePathAny struct { *ygot.NodePath } -// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment the path struct for its child "member". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Member { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Member{ +// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath the path struct for its child "member". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPath{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -106808,9 +107022,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment) Member() *NetworkI } } -// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny the path struct for its child "member". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberAny{ +// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny the path struct for its child "member". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -106819,9 +107033,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny) Member() *Netwo } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Type { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_Type{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPath) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -106830,9 +107044,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment) Type() *NetworkIns } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypeAny{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentPathAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4Segment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -106841,39 +107055,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_As4SegmentAny) Type() *Network } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Member represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Member struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/member YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Type struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/as-path/as-segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePathAny struct { *ygot.NodePath } -// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment the path struct for its child "member". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Member { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Member{ +// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath the path struct for its child "member". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPath{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -106882,9 +107096,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment) Member() *NetworkIn } } -// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny the path struct for its child "member". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberAny{ +// Member returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny the path struct for its child "member". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny) Member() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_MemberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "member"}, map[string]interface{}{}, @@ -106893,9 +107107,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny) Member() *Networ } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Type { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_Type{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPath) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -106904,9 +107118,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment) Type() *NetworkInst } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypeAny{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentPathAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -106915,19 +107129,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_AsSegmentAny) Type() *NetworkI } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny struct { *ygot.NodePath } -// TunnelAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation the path struct for its child "tunnel". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation) TunnelAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// TunnelAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath the path struct for its child "tunnel". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath) TunnelAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": "*"}, @@ -106936,9 +107150,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation) TunnelAny } } -// TunnelAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny the path struct for its child "tunnel". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny) TunnelAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// TunnelAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny the path struct for its child "tunnel". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny) TunnelAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": "*"}, @@ -106947,9 +107161,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny) Tunnel } } -// Tunnel returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation the path struct for its child "tunnel". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation) Tunnel(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel{ +// Tunnel returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath the path struct for its child "tunnel". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPath) Tunnel(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": Type}, @@ -106958,9 +107172,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation) Tunnel(Ty } } -// Tunnel returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny the path struct for its child "tunnel". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny) Tunnel(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny{ +// Tunnel returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny the path struct for its child "tunnel". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationPathAny) Tunnel(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny{ NodePath: ygot.NewNodePath( []string{"tunnels", "tunnel"}, map[string]interface{}{"type": Type}, @@ -106969,29 +107183,29 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulationAny) Tunnel } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny struct { *ygot.NodePath } -// SubtlvAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) SubtlvAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) SubtlvAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -107000,9 +107214,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Su } } -// SubtlvAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) SubtlvAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) SubtlvAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -107011,9 +107225,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) } } -// Subtlv returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Subtlv(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) Subtlv(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -107022,9 +107236,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Su } } -// Subtlv returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Subtlv(Type oc.E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) Subtlv(Type E_OpenconfigRibBgpTypes_TUNNEL_ENCAPSULATION_SUBTLV_TYPE) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -107033,9 +107247,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Type{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPath) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107044,9 +107258,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel) Ty } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypeAny{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelPathAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107055,59 +107269,59 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_TunnelAny) } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/binding-sid YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/colors YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/preference YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny struct { *ygot.NodePath } -// BindingSid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "binding-sid". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) BindingSid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSid{ +// BindingSid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "binding-sid". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) BindingSid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPath{ NodePath: ygot.NewNodePath( []string{"state", "binding-sid"}, map[string]interface{}{}, @@ -107116,9 +107330,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// BindingSid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "binding-sid". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) BindingSid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidAny{ +// BindingSid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "binding-sid". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) BindingSid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_BindingSidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "binding-sid"}, map[string]interface{}{}, @@ -107127,9 +107341,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Colors returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "colors". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Colors() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Colors{ +// Colors returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "colors". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Colors() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPath{ NodePath: ygot.NewNodePath( []string{"state", "colors"}, map[string]interface{}{}, @@ -107138,9 +107352,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Colors returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "colors". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Colors() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsAny{ +// Colors returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "colors". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Colors() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_ColorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "colors"}, map[string]interface{}{}, @@ -107149,9 +107363,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Preference returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "preference". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Preference() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Preference{ +// Preference returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "preference". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Preference() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePath{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -107160,9 +107374,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Preference returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "preference". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Preference() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferenceAny{ +// Preference returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "preference". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Preference() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_PreferencePathAny{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -107171,9 +107385,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteEndpointAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "remote-endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpointAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpointAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "remote-endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) RemoteEndpointAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": "*"}, @@ -107182,9 +107396,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteEndpointAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "remote-endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpointAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpointAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "remote-endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) RemoteEndpointAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": "*"}, @@ -107193,9 +107407,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteEndpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "remote-endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) RemoteEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint{ +// RemoteEndpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "remote-endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) RemoteEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": Endpoint}, @@ -107204,9 +107418,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteEndpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "remote-endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) RemoteEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny{ +// RemoteEndpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "remote-endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) RemoteEndpoint(Endpoint string) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny{ NodePath: ygot.NewNodePath( []string{"remote-endpoints", "remote-endpoint"}, map[string]interface{}{"endpoint": Endpoint}, @@ -107215,9 +107429,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentListAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "segment-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentListAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentListAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "segment-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) SegmentListAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": "*"}, @@ -107226,9 +107440,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentListAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "segment-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentListAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentListAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "segment-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) SegmentListAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": "*"}, @@ -107237,9 +107451,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "segment-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) SegmentList(InstanceId uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList{ +// SegmentList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "segment-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) SegmentList(InstanceId uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": InstanceId}, @@ -107248,9 +107462,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "segment-list". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) SegmentList(InstanceId uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny{ +// SegmentList returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "segment-list". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) SegmentList(InstanceId uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"instance-id": InstanceId}, @@ -107259,9 +107473,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPath) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107270,9 +107484,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_SubtlvPathAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107281,39 +107495,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/as YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/remote-endpoints/remote-endpoint/state/endpoint YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny struct { *ygot.NodePath } -// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_As{ +// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPath{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -107322,9 +107536,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny the path struct for its child "as". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsAny{ +// As returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny the path struct for its child "as". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny) As() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_AsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "as"}, map[string]interface{}{}, @@ -107333,9 +107547,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_Endpoint{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPath) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -107344,9 +107558,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny the path struct for its child "endpoint". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointAny{ +// Endpoint returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny the path struct for its child "endpoint". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpointPathAny) Endpoint() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_RemoteEndpoint_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -107355,39 +107569,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/instance-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/state/weight YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny struct { *ygot.NodePath } -// InstanceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) InstanceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceId{ +// InstanceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) InstanceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -107396,9 +107610,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// InstanceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) InstanceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdAny{ +// InstanceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) InstanceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -107407,9 +107621,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "segment". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) SegmentAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// SegmentAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "segment". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) SegmentAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": "*"}, @@ -107418,9 +107632,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// SegmentAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "segment". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) SegmentAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// SegmentAny returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "segment". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) SegmentAny() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": "*"}, @@ -107429,9 +107643,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Segment returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "segment". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Segment(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment{ +// Segment returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "segment". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) Segment(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": Index}, @@ -107440,9 +107654,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Segment returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "segment". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Segment(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny{ +// Segment returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "segment". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) Segment(Index uint64) *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"segments", "segment"}, map[string]interface{}{"index": Index}, @@ -107451,9 +107665,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Weight returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList) Weight() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Weight{ +// Weight returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPath) Weight() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -107462,9 +107676,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Weight returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListAny) Weight() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentListPathAny) Weight() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -107473,129 +107687,129 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-interface-id YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/local-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-bos YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-tc YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/mpls-ttl YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/remote-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/sid YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny struct { +// NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/attr-sets/attr-set/tunnel-encapsulation/tunnels/tunnel/subtlvs/subtlv/segment-lists/segment-list/segments/segment/state/type YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny struct { *ygot.NodePath } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Index{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107604,9 +107818,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexAny{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Index() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107615,9 +107829,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalInterfaceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-interface-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalInterfaceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceId{ +// LocalInterfaceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-interface-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalInterfaceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "local-interface-id"}, map[string]interface{}{}, @@ -107626,9 +107840,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalInterfaceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-interface-id". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalInterfaceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdAny{ +// LocalInterfaceId returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-interface-id". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalInterfaceId() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalInterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-interface-id"}, map[string]interface{}{}, @@ -107637,9 +107851,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-ipv4-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4Address{ +// LocalIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-ipv4-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-address"}, map[string]interface{}{}, @@ -107648,9 +107862,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-ipv4-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressAny{ +// LocalIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-ipv4-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv4AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-address"}, map[string]interface{}{}, @@ -107659,9 +107873,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "local-ipv6-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) LocalIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6Address{ +// LocalIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "local-ipv6-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) LocalIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-address"}, map[string]interface{}{}, @@ -107670,9 +107884,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// LocalIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "local-ipv6-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) LocalIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressAny{ +// LocalIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "local-ipv6-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) LocalIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_LocalIpv6AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-address"}, map[string]interface{}{}, @@ -107681,9 +107895,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsBos returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-bos". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsBos() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBos{ +// MplsBos returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-bos". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsBos() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-bos"}, map[string]interface{}{}, @@ -107692,9 +107906,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsBos returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-bos". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsBos() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosAny{ +// MplsBos returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-bos". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsBos() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsBosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-bos"}, map[string]interface{}{}, @@ -107703,9 +107917,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsTc returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-tc". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsTc() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTc{ +// MplsTc returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-tc". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsTc() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -107714,9 +107928,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsTc returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-tc". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsTc() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcAny{ +// MplsTc returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-tc". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsTc() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTcPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -107725,9 +107939,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsTtl returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "mpls-ttl". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) MplsTtl() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtl{ +// MplsTtl returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "mpls-ttl". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) MplsTtl() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -107736,9 +107950,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// MplsTtl returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "mpls-ttl". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) MplsTtl() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlAny{ +// MplsTtl returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "mpls-ttl". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) MplsTtl() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_MplsTtlPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -107747,9 +107961,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "remote-ipv4-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) RemoteIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4Address{ +// RemoteIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "remote-ipv4-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) RemoteIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv4-address"}, map[string]interface{}{}, @@ -107758,9 +107972,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "remote-ipv4-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) RemoteIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressAny{ +// RemoteIpv4Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "remote-ipv4-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) RemoteIpv4Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv4AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv4-address"}, map[string]interface{}{}, @@ -107769,9 +107983,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "remote-ipv6-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) RemoteIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6Address{ +// RemoteIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "remote-ipv6-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) RemoteIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv6-address"}, map[string]interface{}{}, @@ -107780,9 +107994,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// RemoteIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "remote-ipv6-address". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) RemoteIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressAny{ +// RemoteIpv6Address returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "remote-ipv6-address". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) RemoteIpv6Address() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_RemoteIpv6AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-ipv6-address"}, map[string]interface{}{}, @@ -107791,9 +108005,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Sid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "sid". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Sid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Sid{ +// Sid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "sid". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Sid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPath{ NodePath: ygot.NewNodePath( []string{"state", "sid"}, map[string]interface{}{}, @@ -107802,9 +108016,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Sid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "sid". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Sid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidAny{ +// Sid returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "sid". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Sid() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_SidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid"}, map[string]interface{}{}, @@ -107813,9 +108027,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_Type{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPath) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107824,9 +108038,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny { - return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypeAny{ +// Type returns from NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_SegmentPathAny) Type() *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny { + return &NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Subtlv_SegmentList_Segment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -107835,39 +108049,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_AttrSet_TunnelEncapsulation_Tunnel_Sub } } -// NetworkInstance_Protocol_Bgp_Rib_Community represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_Community struct { +// NetworkInstance_Protocol_Bgp_Rib_CommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_CommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_CommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_CommunityAny struct { +// NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_Community_Community represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_Community_Community struct { +// NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_Community_CommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_Community_CommunityAny struct { +// NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_Community_Index represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_Community_Index struct { +// NetworkInstance_Protocol_Bgp_Rib_Community_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_Community_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_Community_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_Community_IndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_Community_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/communities/community/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_Community_IndexPathAny struct { *ygot.NodePath } -// Community returns from NetworkInstance_Protocol_Bgp_Rib_Community the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_Rib_Community) Community() *NetworkInstance_Protocol_Bgp_Rib_Community_Community { - return &NetworkInstance_Protocol_Bgp_Rib_Community_Community{ +// Community returns from NetworkInstance_Protocol_Bgp_Rib_CommunityPath the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityPath) Community() *NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPath { + return &NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPath{ NodePath: ygot.NewNodePath( []string{"state", "community"}, map[string]interface{}{}, @@ -107876,9 +108090,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_Community) Community() *NetworkInstanc } } -// Community returns from NetworkInstance_Protocol_Bgp_Rib_CommunityAny the path struct for its child "community". -func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityAny) Community() *NetworkInstance_Protocol_Bgp_Rib_Community_CommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_Community_CommunityAny{ +// Community returns from NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny the path struct for its child "community". +func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny) Community() *NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_Community_CommunityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "community"}, map[string]interface{}{}, @@ -107887,9 +108101,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityAny) Community() *NetworkInst } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_Community the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_Community) Index() *NetworkInstance_Protocol_Bgp_Rib_Community_Index { - return &NetworkInstance_Protocol_Bgp_Rib_Community_Index{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_CommunityPath the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityPath) Index() *NetworkInstance_Protocol_Bgp_Rib_Community_IndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_Community_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107898,9 +108112,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_Community) Index() *NetworkInstance_Pr } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_CommunityAny the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityAny) Index() *NetworkInstance_Protocol_Bgp_Rib_Community_IndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_Community_IndexAny{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityPathAny) Index() *NetworkInstance_Protocol_Bgp_Rib_Community_IndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_Community_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107909,39 +108123,39 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_CommunityAny) Index() *NetworkInstance } } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunity represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunity struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityAny struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/ext-community YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_Index represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_Index struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/index YANG schema element. -type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexAny struct { +// NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/bgp/rib/ext-communities/ext-community/state/index YANG schema element. +type NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPathAny struct { *ygot.NodePath } -// ExtCommunity returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunity the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity) ExtCommunity() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunity { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunity{ +// ExtCommunity returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath) ExtCommunity() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPath { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPath{ NodePath: ygot.NewNodePath( []string{"state", "ext-community"}, map[string]interface{}{}, @@ -107950,9 +108164,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity) ExtCommunity() *NetworkI } } -// ExtCommunity returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny the path struct for its child "ext-community". -func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny) ExtCommunity() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityAny { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityAny{ +// ExtCommunity returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny the path struct for its child "ext-community". +func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny) ExtCommunity() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_ExtCommunityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ext-community"}, map[string]interface{}{}, @@ -107961,9 +108175,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny) ExtCommunity() *Netwo } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunity the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity) Index() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_Index { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_Index{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPath) Index() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPath { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107972,9 +108186,9 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity) Index() *NetworkInstance } } -// Index returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny the path struct for its child "index". -func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny) Index() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexAny { - return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexAny{ +// Index returns from NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny the path struct for its child "index". +func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityPathAny) Index() *NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPathAny { + return &NetworkInstance_Protocol_Bgp_Rib_ExtCommunity_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -107983,19 +108197,19 @@ func (n *NetworkInstance_Protocol_Bgp_Rib_ExtCommunityAny) Index() *NetworkInsta } } -// NetworkInstance_Protocol_Igmp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp YANG schema element. -type NetworkInstance_Protocol_Igmp struct { +// NetworkInstance_Protocol_IgmpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp YANG schema element. +type NetworkInstance_Protocol_IgmpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_IgmpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp YANG schema element. -type NetworkInstance_Protocol_IgmpAny struct { +// NetworkInstance_Protocol_IgmpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp YANG schema element. +type NetworkInstance_Protocol_IgmpPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Protocol_Igmp the path struct for its child "global". -func (n *NetworkInstance_Protocol_Igmp) Global() *NetworkInstance_Protocol_Igmp_Global { - return &NetworkInstance_Protocol_Igmp_Global{ +// Global returns from NetworkInstance_Protocol_IgmpPath the path struct for its child "global". +func (n *NetworkInstance_Protocol_IgmpPath) Global() *NetworkInstance_Protocol_Igmp_GlobalPath { + return &NetworkInstance_Protocol_Igmp_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -108004,9 +108218,9 @@ func (n *NetworkInstance_Protocol_Igmp) Global() *NetworkInstance_Protocol_Igmp_ } } -// Global returns from NetworkInstance_Protocol_IgmpAny the path struct for its child "global". -func (n *NetworkInstance_Protocol_IgmpAny) Global() *NetworkInstance_Protocol_Igmp_GlobalAny { - return &NetworkInstance_Protocol_Igmp_GlobalAny{ +// Global returns from NetworkInstance_Protocol_IgmpPathAny the path struct for its child "global". +func (n *NetworkInstance_Protocol_IgmpPathAny) Global() *NetworkInstance_Protocol_Igmp_GlobalPathAny { + return &NetworkInstance_Protocol_Igmp_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -108015,9 +108229,9 @@ func (n *NetworkInstance_Protocol_IgmpAny) Global() *NetworkInstance_Protocol_Ig } } -// InterfaceAny returns from NetworkInstance_Protocol_Igmp the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Igmp) InterfaceAny() *NetworkInstance_Protocol_Igmp_InterfaceAny { - return &NetworkInstance_Protocol_Igmp_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_IgmpPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IgmpPath) InterfaceAny() *NetworkInstance_Protocol_Igmp_InterfacePathAny { + return &NetworkInstance_Protocol_Igmp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -108026,9 +108240,9 @@ func (n *NetworkInstance_Protocol_Igmp) InterfaceAny() *NetworkInstance_Protocol } } -// InterfaceAny returns from NetworkInstance_Protocol_IgmpAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_IgmpAny) InterfaceAny() *NetworkInstance_Protocol_Igmp_InterfaceAny { - return &NetworkInstance_Protocol_Igmp_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_IgmpPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IgmpPathAny) InterfaceAny() *NetworkInstance_Protocol_Igmp_InterfacePathAny { + return &NetworkInstance_Protocol_Igmp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -108037,9 +108251,9 @@ func (n *NetworkInstance_Protocol_IgmpAny) InterfaceAny() *NetworkInstance_Proto } } -// Interface returns from NetworkInstance_Protocol_Igmp the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Igmp) Interface(InterfaceId string) *NetworkInstance_Protocol_Igmp_Interface { - return &NetworkInstance_Protocol_Igmp_Interface{ +// Interface returns from NetworkInstance_Protocol_IgmpPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IgmpPath) Interface(InterfaceId string) *NetworkInstance_Protocol_Igmp_InterfacePath { + return &NetworkInstance_Protocol_Igmp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -108048,9 +108262,9 @@ func (n *NetworkInstance_Protocol_Igmp) Interface(InterfaceId string) *NetworkIn } } -// Interface returns from NetworkInstance_Protocol_IgmpAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_IgmpAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Igmp_InterfaceAny { - return &NetworkInstance_Protocol_Igmp_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_IgmpPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IgmpPathAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Igmp_InterfacePathAny { + return &NetworkInstance_Protocol_Igmp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -108059,19 +108273,19 @@ func (n *NetworkInstance_Protocol_IgmpAny) Interface(InterfaceId string) *Networ } } -// NetworkInstance_Protocol_Igmp_Global represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global YANG schema element. -type NetworkInstance_Protocol_Igmp_Global struct { +// NetworkInstance_Protocol_Igmp_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global YANG schema element. +type NetworkInstance_Protocol_Igmp_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global YANG schema element. -type NetworkInstance_Protocol_Igmp_GlobalAny struct { +// NetworkInstance_Protocol_Igmp_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global YANG schema element. +type NetworkInstance_Protocol_Igmp_GlobalPathAny struct { *ygot.NodePath } -// Ssm returns from NetworkInstance_Protocol_Igmp_Global the path struct for its child "ssm". -func (n *NetworkInstance_Protocol_Igmp_Global) Ssm() *NetworkInstance_Protocol_Igmp_Global_Ssm { - return &NetworkInstance_Protocol_Igmp_Global_Ssm{ +// Ssm returns from NetworkInstance_Protocol_Igmp_GlobalPath the path struct for its child "ssm". +func (n *NetworkInstance_Protocol_Igmp_GlobalPath) Ssm() *NetworkInstance_Protocol_Igmp_Global_SsmPath { + return &NetworkInstance_Protocol_Igmp_Global_SsmPath{ NodePath: ygot.NewNodePath( []string{"ssm"}, map[string]interface{}{}, @@ -108080,9 +108294,9 @@ func (n *NetworkInstance_Protocol_Igmp_Global) Ssm() *NetworkInstance_Protocol_I } } -// Ssm returns from NetworkInstance_Protocol_Igmp_GlobalAny the path struct for its child "ssm". -func (n *NetworkInstance_Protocol_Igmp_GlobalAny) Ssm() *NetworkInstance_Protocol_Igmp_Global_SsmAny { - return &NetworkInstance_Protocol_Igmp_Global_SsmAny{ +// Ssm returns from NetworkInstance_Protocol_Igmp_GlobalPathAny the path struct for its child "ssm". +func (n *NetworkInstance_Protocol_Igmp_GlobalPathAny) Ssm() *NetworkInstance_Protocol_Igmp_Global_SsmPathAny { + return &NetworkInstance_Protocol_Igmp_Global_SsmPathAny{ NodePath: ygot.NewNodePath( []string{"ssm"}, map[string]interface{}{}, @@ -108091,19 +108305,19 @@ func (n *NetworkInstance_Protocol_Igmp_GlobalAny) Ssm() *NetworkInstance_Protoco } } -// NetworkInstance_Protocol_Igmp_Global_Ssm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm struct { +// NetworkInstance_Protocol_Igmp_Global_SsmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_SsmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_SsmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_SsmAny struct { +// NetworkInstance_Protocol_Igmp_Global_SsmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_SsmPathAny struct { *ygot.NodePath } -// MappingAny returns from NetworkInstance_Protocol_Igmp_Global_Ssm the path struct for its child "mapping". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm) MappingAny() *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny{ +// MappingAny returns from NetworkInstance_Protocol_Igmp_Global_SsmPath the path struct for its child "mapping". +func (n *NetworkInstance_Protocol_Igmp_Global_SsmPath) MappingAny() *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny{ NodePath: ygot.NewNodePath( []string{"mappings", "mapping"}, map[string]interface{}{"source": "*"}, @@ -108112,9 +108326,9 @@ func (n *NetworkInstance_Protocol_Igmp_Global_Ssm) MappingAny() *NetworkInstance } } -// MappingAny returns from NetworkInstance_Protocol_Igmp_Global_SsmAny the path struct for its child "mapping". -func (n *NetworkInstance_Protocol_Igmp_Global_SsmAny) MappingAny() *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny{ +// MappingAny returns from NetworkInstance_Protocol_Igmp_Global_SsmPathAny the path struct for its child "mapping". +func (n *NetworkInstance_Protocol_Igmp_Global_SsmPathAny) MappingAny() *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny{ NodePath: ygot.NewNodePath( []string{"mappings", "mapping"}, map[string]interface{}{"source": "*"}, @@ -108123,9 +108337,9 @@ func (n *NetworkInstance_Protocol_Igmp_Global_SsmAny) MappingAny() *NetworkInsta } } -// Mapping returns from NetworkInstance_Protocol_Igmp_Global_Ssm the path struct for its child "mapping". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm) Mapping(Source string) *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping{ +// Mapping returns from NetworkInstance_Protocol_Igmp_Global_SsmPath the path struct for its child "mapping". +func (n *NetworkInstance_Protocol_Igmp_Global_SsmPath) Mapping(Source string) *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath{ NodePath: ygot.NewNodePath( []string{"mappings", "mapping"}, map[string]interface{}{"source": Source}, @@ -108134,9 +108348,9 @@ func (n *NetworkInstance_Protocol_Igmp_Global_Ssm) Mapping(Source string) *Netwo } } -// Mapping returns from NetworkInstance_Protocol_Igmp_Global_SsmAny the path struct for its child "mapping". -func (n *NetworkInstance_Protocol_Igmp_Global_SsmAny) Mapping(Source string) *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny{ +// Mapping returns from NetworkInstance_Protocol_Igmp_Global_SsmPathAny the path struct for its child "mapping". +func (n *NetworkInstance_Protocol_Igmp_Global_SsmPathAny) Mapping(Source string) *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny{ NodePath: ygot.NewNodePath( []string{"mappings", "mapping"}, map[string]interface{}{"source": Source}, @@ -108145,153 +108359,153 @@ func (n *NetworkInstance_Protocol_Igmp_Global_SsmAny) Mapping(Source string) *Ne } } -// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_Source represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/state/source YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_Source struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/config/source YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/state/source YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourceAny struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/config/source YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/state/ssm-ranges YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRanges struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/config/ssm-ranges YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/state/ssm-ranges YANG schema element. -type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesAny struct { +// NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/global/ssm/mappings/mapping/config/ssm-ranges YANG schema element. +type NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPathAny struct { *ygot.NodePath } -// Source returns from NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping the path struct for its child "source". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping) Source() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_Source { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_Source{ +// Source returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath the path struct for its child "source". +func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath) Source() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePath { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePath{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// Source returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny the path struct for its child "source". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny) Source() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourceAny { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourceAny{ +// Source returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny the path struct for its child "source". +func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny) Source() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePathAny { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SourcePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source"}, + []string{"config", "source"}, map[string]interface{}{}, n, ), } } -// SsmRanges returns from NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping the path struct for its child "ssm-ranges". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping) SsmRanges() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRanges { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRanges{ +// SsmRanges returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath the path struct for its child "ssm-ranges". +func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPath) SsmRanges() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPath { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "ssm-ranges"}, + []string{"config", "ssm-ranges"}, map[string]interface{}{}, n, ), } } -// SsmRanges returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny the path struct for its child "ssm-ranges". -func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingAny) SsmRanges() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesAny { - return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesAny{ +// SsmRanges returns from NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny the path struct for its child "ssm-ranges". +func (n *NetworkInstance_Protocol_Igmp_Global_Ssm_MappingPathAny) SsmRanges() *NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPathAny { + return &NetworkInstance_Protocol_Igmp_Global_Ssm_Mapping_SsmRangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ssm-ranges"}, + []string{"config", "ssm-ranges"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Igmp_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface struct { +// NetworkInstance_Protocol_Igmp_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Igmp_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Igmp_InterfaceAny struct { +// NetworkInstance_Protocol_Igmp_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Igmp_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Enabled struct { +// NetworkInstance_Protocol_Igmp_Interface_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_EnabledAny struct { +// NetworkInstance_Protocol_Igmp_Interface_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_FilterPrefixes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/filter-prefixes YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_FilterPrefixes struct { +// NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/filter-prefixes YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/filter-prefixes YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesAny struct { +// NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/filter-prefixes YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceId struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceIdAny struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_QueryExpires represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-expires YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_QueryExpires struct { +// NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-expires YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_QueryExpiresAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-expires YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_QueryExpiresAny struct { +// NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-expires YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_QueryInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-interval YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_QueryInterval struct { +// NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/query-interval YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_QueryIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/query-interval YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_QueryIntervalAny struct { +// NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/query-interval YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Version represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/version YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Version struct { +// NetworkInstance_Protocol_Igmp_Interface_VersionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/version YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_VersionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_VersionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/state/version YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_VersionAny struct { +// NetworkInstance_Protocol_Igmp_Interface_VersionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/config/version YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_VersionPathAny struct { *ygot.NodePath } -// Counters returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Igmp_Interface) Counters() *NetworkInstance_Protocol_Igmp_Interface_Counters { - return &NetworkInstance_Protocol_Igmp_Interface_Counters{ +// Counters returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) Counters() *NetworkInstance_Protocol_Igmp_Interface_CountersPath { + return &NetworkInstance_Protocol_Igmp_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"counters"}, map[string]interface{}{}, @@ -108300,9 +108514,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface) Counters() *NetworkInstance_Pr } } -// Counters returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Counters() *NetworkInstance_Protocol_Igmp_Interface_CountersAny { - return &NetworkInstance_Protocol_Igmp_Interface_CountersAny{ +// Counters returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) Counters() *NetworkInstance_Protocol_Igmp_Interface_CountersPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"counters"}, map[string]interface{}{}, @@ -108311,53 +108525,53 @@ func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Counters() *NetworkInstance } } -// Enabled returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Igmp_Interface) Enabled() *NetworkInstance_Protocol_Igmp_Interface_Enabled { - return &NetworkInstance_Protocol_Igmp_Interface_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) Enabled() *NetworkInstance_Protocol_Igmp_Interface_EnabledPath { + return &NetworkInstance_Protocol_Igmp_Interface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Enabled() *NetworkInstance_Protocol_Igmp_Interface_EnabledAny { - return &NetworkInstance_Protocol_Igmp_Interface_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) Enabled() *NetworkInstance_Protocol_Igmp_Interface_EnabledPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// FilterPrefixes returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "filter-prefixes". -func (n *NetworkInstance_Protocol_Igmp_Interface) FilterPrefixes() *NetworkInstance_Protocol_Igmp_Interface_FilterPrefixes { - return &NetworkInstance_Protocol_Igmp_Interface_FilterPrefixes{ +// FilterPrefixes returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "filter-prefixes". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) FilterPrefixes() *NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPath { + return &NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "filter-prefixes"}, + []string{"config", "filter-prefixes"}, map[string]interface{}{}, n, ), } } -// FilterPrefixes returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "filter-prefixes". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) FilterPrefixes() *NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesAny { - return &NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesAny{ +// FilterPrefixes returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "filter-prefixes". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) FilterPrefixes() *NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_FilterPrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "filter-prefixes"}, + []string{"config", "filter-prefixes"}, map[string]interface{}{}, n, ), } } -// GroupAny returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_Interface) GroupAny() *NetworkInstance_Protocol_Igmp_Interface_GroupAny { - return &NetworkInstance_Protocol_Igmp_Interface_GroupAny{ +// GroupAny returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) GroupAny() *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"membership-groups", "group"}, map[string]interface{}{"group": "*"}, @@ -108366,9 +108580,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface) GroupAny() *NetworkInstance_Pr } } -// GroupAny returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) GroupAny() *NetworkInstance_Protocol_Igmp_Interface_GroupAny { - return &NetworkInstance_Protocol_Igmp_Interface_GroupAny{ +// GroupAny returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) GroupAny() *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"membership-groups", "group"}, map[string]interface{}{"group": "*"}, @@ -108377,9 +108591,9 @@ func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) GroupAny() *NetworkInstance } } -// Group returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_Interface) Group(Group string) *NetworkInstance_Protocol_Igmp_Interface_Group { - return &NetworkInstance_Protocol_Igmp_Interface_Group{ +// Group returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) Group(Group string) *NetworkInstance_Protocol_Igmp_Interface_GroupPath { + return &NetworkInstance_Protocol_Igmp_Interface_GroupPath{ NodePath: ygot.NewNodePath( []string{"membership-groups", "group"}, map[string]interface{}{"group": Group}, @@ -108388,9 +108602,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface) Group(Group string) *NetworkIn } } -// Group returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Group(Group string) *NetworkInstance_Protocol_Igmp_Interface_GroupAny { - return &NetworkInstance_Protocol_Igmp_Interface_GroupAny{ +// Group returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) Group(Group string) *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"membership-groups", "group"}, map[string]interface{}{"group": Group}, @@ -108399,31 +108613,31 @@ func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Group(Group string) *Networ } } -// InterfaceId returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Igmp_Interface) InterfaceId() *NetworkInstance_Protocol_Igmp_Interface_InterfaceId { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) InterfaceId() *NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPath { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) InterfaceId() *NetworkInstance_Protocol_Igmp_Interface_InterfaceIdAny { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) InterfaceId() *NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Igmp_Interface) InterfaceRef() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) InterfaceRef() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -108432,9 +108646,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface) InterfaceRef() *NetworkInstanc } } -// InterfaceRef returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) InterfaceRef() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) InterfaceRef() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -108443,9 +108657,9 @@ func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) InterfaceRef() *NetworkInst } } -// QueryExpires returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "query-expires". -func (n *NetworkInstance_Protocol_Igmp_Interface) QueryExpires() *NetworkInstance_Protocol_Igmp_Interface_QueryExpires { - return &NetworkInstance_Protocol_Igmp_Interface_QueryExpires{ +// QueryExpires returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "query-expires". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) QueryExpires() *NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPath { + return &NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPath{ NodePath: ygot.NewNodePath( []string{"state", "query-expires"}, map[string]interface{}{}, @@ -108454,9 +108668,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface) QueryExpires() *NetworkInstanc } } -// QueryExpires returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "query-expires". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) QueryExpires() *NetworkInstance_Protocol_Igmp_Interface_QueryExpiresAny { - return &NetworkInstance_Protocol_Igmp_Interface_QueryExpiresAny{ +// QueryExpires returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "query-expires". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) QueryExpires() *NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_QueryExpiresPathAny{ NodePath: ygot.NewNodePath( []string{"state", "query-expires"}, map[string]interface{}{}, @@ -108465,63 +108679,63 @@ func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) QueryExpires() *NetworkInst } } -// QueryInterval returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "query-interval". -func (n *NetworkInstance_Protocol_Igmp_Interface) QueryInterval() *NetworkInstance_Protocol_Igmp_Interface_QueryInterval { - return &NetworkInstance_Protocol_Igmp_Interface_QueryInterval{ +// QueryInterval returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "query-interval". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) QueryInterval() *NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPath { + return &NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "query-interval"}, + []string{"config", "query-interval"}, map[string]interface{}{}, n, ), } } -// QueryInterval returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "query-interval". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) QueryInterval() *NetworkInstance_Protocol_Igmp_Interface_QueryIntervalAny { - return &NetworkInstance_Protocol_Igmp_Interface_QueryIntervalAny{ +// QueryInterval returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "query-interval". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) QueryInterval() *NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_QueryIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "query-interval"}, + []string{"config", "query-interval"}, map[string]interface{}{}, n, ), } } -// Version returns from NetworkInstance_Protocol_Igmp_Interface the path struct for its child "version". -func (n *NetworkInstance_Protocol_Igmp_Interface) Version() *NetworkInstance_Protocol_Igmp_Interface_Version { - return &NetworkInstance_Protocol_Igmp_Interface_Version{ +// Version returns from NetworkInstance_Protocol_Igmp_InterfacePath the path struct for its child "version". +func (n *NetworkInstance_Protocol_Igmp_InterfacePath) Version() *NetworkInstance_Protocol_Igmp_Interface_VersionPath { + return &NetworkInstance_Protocol_Igmp_Interface_VersionPath{ NodePath: ygot.NewNodePath( - []string{"state", "version"}, + []string{"config", "version"}, map[string]interface{}{}, n, ), } } -// Version returns from NetworkInstance_Protocol_Igmp_InterfaceAny the path struct for its child "version". -func (n *NetworkInstance_Protocol_Igmp_InterfaceAny) Version() *NetworkInstance_Protocol_Igmp_Interface_VersionAny { - return &NetworkInstance_Protocol_Igmp_Interface_VersionAny{ +// Version returns from NetworkInstance_Protocol_Igmp_InterfacePathAny the path struct for its child "version". +func (n *NetworkInstance_Protocol_Igmp_InterfacePathAny) Version() *NetworkInstance_Protocol_Igmp_Interface_VersionPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_VersionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "version"}, + []string{"config", "version"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Igmp_Interface_Counters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters struct { +// NetworkInstance_Protocol_Igmp_Interface_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_CountersAny struct { +// NetworkInstance_Protocol_Igmp_Interface_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_CountersPathAny struct { *ygot.NodePath } -// Queries returns from NetworkInstance_Protocol_Igmp_Interface_Counters the path struct for its child "queries". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters) Queries() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries{ +// Queries returns from NetworkInstance_Protocol_Igmp_Interface_CountersPath the path struct for its child "queries". +func (n *NetworkInstance_Protocol_Igmp_Interface_CountersPath) Queries() *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath{ NodePath: ygot.NewNodePath( []string{"queries"}, map[string]interface{}{}, @@ -108530,9 +108744,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters) Queries() *NetworkIns } } -// Queries returns from NetworkInstance_Protocol_Igmp_Interface_CountersAny the path struct for its child "queries". -func (n *NetworkInstance_Protocol_Igmp_Interface_CountersAny) Queries() *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny{ +// Queries returns from NetworkInstance_Protocol_Igmp_Interface_CountersPathAny the path struct for its child "queries". +func (n *NetworkInstance_Protocol_Igmp_Interface_CountersPathAny) Queries() *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny{ NodePath: ygot.NewNodePath( []string{"queries"}, map[string]interface{}{}, @@ -108541,9 +108755,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_CountersAny) Queries() *Network } } -// Reports returns from NetworkInstance_Protocol_Igmp_Interface_Counters the path struct for its child "reports". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters) Reports() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports{ +// Reports returns from NetworkInstance_Protocol_Igmp_Interface_CountersPath the path struct for its child "reports". +func (n *NetworkInstance_Protocol_Igmp_Interface_CountersPath) Reports() *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath{ NodePath: ygot.NewNodePath( []string{"reports"}, map[string]interface{}{}, @@ -108552,9 +108766,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters) Reports() *NetworkIns } } -// Reports returns from NetworkInstance_Protocol_Igmp_Interface_CountersAny the path struct for its child "reports". -func (n *NetworkInstance_Protocol_Igmp_Interface_CountersAny) Reports() *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny{ +// Reports returns from NetworkInstance_Protocol_Igmp_Interface_CountersPathAny the path struct for its child "reports". +func (n *NetworkInstance_Protocol_Igmp_Interface_CountersPathAny) Reports() *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny{ NodePath: ygot.NewNodePath( []string{"reports"}, map[string]interface{}{}, @@ -108563,19 +108777,19 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_CountersAny) Reports() *Network } } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny struct { *ygot.NodePath } -// Received returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries the path struct for its child "received". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries) Received() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received{ +// Received returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath) Received() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -108584,9 +108798,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries) Received() *N } } -// Received returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny) Received() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny) Received() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"received"}, map[string]interface{}{}, @@ -108595,9 +108809,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny) Received() } } -// Sent returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries) Sent() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent{ +// Sent returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPath) Sent() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -108606,9 +108820,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries) Sent() *Netwo } } -// Sent returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny) Sent() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny{ +// Sent returns from NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesPathAny) Sent() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny{ NodePath: ygot.NewNodePath( []string{"sent"}, map[string]interface{}{}, @@ -108617,49 +108831,49 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_QueriesAny) Sent() *Ne } } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/received/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3PathAny struct { *ygot.NodePath } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Path{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108668,9 +108882,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V1() } } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1Any{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V1PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108679,9 +108893,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Path{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108690,9 +108904,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V2() } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2Any{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V2PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108701,9 +108915,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPath) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Path{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108712,9 +108926,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received) V3() } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3Any{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedPathAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Received_V3PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108723,49 +108937,49 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_ReceivedAny) V } } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/queries/sent/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3PathAny struct { *ygot.NodePath } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Path{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108774,9 +108988,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V1() *Ne } } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1Any{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V1PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108785,9 +108999,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V1() } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Path{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108796,9 +109010,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V2() *Ne } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2Any{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V2PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108807,9 +109021,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V2() } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPath) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Path{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108818,9 +109032,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent) V3() *Ne } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3Any{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentPathAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_Sent_V3PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108829,49 +109043,49 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Queries_SentAny) V3() } } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v1 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v1 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v2 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v2 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3 struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v3 YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Any struct { +// NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/counters/reports/state/v3 YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3PathAny struct { *ygot.NodePath } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Reports the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Path{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108880,9 +109094,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V1() *Network } } -// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny the path struct for its child "v1". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1Any{ +// V1 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny the path struct for its child "v1". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny) V1() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V1PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v1"}, map[string]interface{}{}, @@ -108891,9 +109105,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V1() *Netw } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Reports the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Path{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108902,9 +109116,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V2() *Network } } -// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny the path struct for its child "v2". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2Any{ +// V2 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny the path struct for its child "v2". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny) V2() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V2PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v2"}, map[string]interface{}{}, @@ -108913,9 +109127,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V2() *Netw } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_Reports the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3 { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPath) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Path { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Path{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108924,9 +109138,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports) V3() *Network } } -// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny the path struct for its child "v3". -func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Any { - return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3Any{ +// V3 returns from NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny the path struct for its child "v3". +func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsPathAny) V3() *NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3PathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Counters_Reports_V3PathAny{ NodePath: ygot.NewNodePath( []string{"state", "v3"}, map[string]interface{}{}, @@ -108935,49 +109149,49 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Counters_ReportsAny) V3() *Netw } } -// NetworkInstance_Protocol_Igmp_Interface_Group represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group struct { +// NetworkInstance_Protocol_Igmp_Interface_GroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_GroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_GroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_GroupAny struct { +// NetworkInstance_Protocol_Igmp_Interface_GroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_GroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_Group represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/group YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_Group struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_GroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/group YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_GroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_GroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/group YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_GroupAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_GroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/group YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_GroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_Reporter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/reporter YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_Reporter struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/reporter YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_ReporterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/reporter YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_ReporterAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/reporter YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_Source represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/source YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_Source struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_SourcePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/source YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_SourcePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_Group_SourceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/source YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_Group_SourceAny struct { +// NetworkInstance_Protocol_Igmp_Interface_Group_SourcePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/membership-groups/group/state/source YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_Group_SourcePathAny struct { *ygot.NodePath } -// Group returns from NetworkInstance_Protocol_Igmp_Interface_Group the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Group() *NetworkInstance_Protocol_Igmp_Interface_Group_Group { - return &NetworkInstance_Protocol_Igmp_Interface_Group_Group{ +// Group returns from NetworkInstance_Protocol_Igmp_Interface_GroupPath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPath) Group() *NetworkInstance_Protocol_Igmp_Interface_Group_GroupPath { + return &NetworkInstance_Protocol_Igmp_Interface_Group_GroupPath{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -108986,9 +109200,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Group() *NetworkInstance } } -// Group returns from NetworkInstance_Protocol_Igmp_Interface_GroupAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Group() *NetworkInstance_Protocol_Igmp_Interface_Group_GroupAny { - return &NetworkInstance_Protocol_Igmp_Interface_Group_GroupAny{ +// Group returns from NetworkInstance_Protocol_Igmp_Interface_GroupPathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny) Group() *NetworkInstance_Protocol_Igmp_Interface_Group_GroupPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Group_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -108997,9 +109211,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Group() *NetworkInsta } } -// Reporter returns from NetworkInstance_Protocol_Igmp_Interface_Group the path struct for its child "reporter". -func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Reporter() *NetworkInstance_Protocol_Igmp_Interface_Group_Reporter { - return &NetworkInstance_Protocol_Igmp_Interface_Group_Reporter{ +// Reporter returns from NetworkInstance_Protocol_Igmp_Interface_GroupPath the path struct for its child "reporter". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPath) Reporter() *NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPath { + return &NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPath{ NodePath: ygot.NewNodePath( []string{"state", "reporter"}, map[string]interface{}{}, @@ -109008,9 +109222,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Reporter() *NetworkInsta } } -// Reporter returns from NetworkInstance_Protocol_Igmp_Interface_GroupAny the path struct for its child "reporter". -func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Reporter() *NetworkInstance_Protocol_Igmp_Interface_Group_ReporterAny { - return &NetworkInstance_Protocol_Igmp_Interface_Group_ReporterAny{ +// Reporter returns from NetworkInstance_Protocol_Igmp_Interface_GroupPathAny the path struct for its child "reporter". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny) Reporter() *NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Group_ReporterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reporter"}, map[string]interface{}{}, @@ -109019,9 +109233,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Reporter() *NetworkIn } } -// Source returns from NetworkInstance_Protocol_Igmp_Interface_Group the path struct for its child "source". -func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Source() *NetworkInstance_Protocol_Igmp_Interface_Group_Source { - return &NetworkInstance_Protocol_Igmp_Interface_Group_Source{ +// Source returns from NetworkInstance_Protocol_Igmp_Interface_GroupPath the path struct for its child "source". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPath) Source() *NetworkInstance_Protocol_Igmp_Interface_Group_SourcePath { + return &NetworkInstance_Protocol_Igmp_Interface_Group_SourcePath{ NodePath: ygot.NewNodePath( []string{"state", "source"}, map[string]interface{}{}, @@ -109030,9 +109244,9 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_Group) Source() *NetworkInstanc } } -// Source returns from NetworkInstance_Protocol_Igmp_Interface_GroupAny the path struct for its child "source". -func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Source() *NetworkInstance_Protocol_Igmp_Interface_Group_SourceAny { - return &NetworkInstance_Protocol_Igmp_Interface_Group_SourceAny{ +// Source returns from NetworkInstance_Protocol_Igmp_Interface_GroupPathAny the path struct for its child "source". +func (n *NetworkInstance_Protocol_Igmp_Interface_GroupPathAny) Source() *NetworkInstance_Protocol_Igmp_Interface_Group_SourcePathAny { + return &NetworkInstance_Protocol_Igmp_Interface_Group_SourcePathAny{ NodePath: ygot.NewNodePath( []string{"state", "source"}, map[string]interface{}{}, @@ -109041,93 +109255,93 @@ func (n *NetworkInstance_Protocol_Igmp_Interface_GroupAny) Source() *NetworkInst } } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/igmp/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef) Interface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Interface { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath) Interface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny) Interface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef) Subinterface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Igmp_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Protocol_Igmp_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis YANG schema element. -type NetworkInstance_Protocol_Isis struct { +// NetworkInstance_Protocol_IsisPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis YANG schema element. +type NetworkInstance_Protocol_IsisPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_IsisAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis YANG schema element. -type NetworkInstance_Protocol_IsisAny struct { +// NetworkInstance_Protocol_IsisPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis YANG schema element. +type NetworkInstance_Protocol_IsisPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Protocol_Isis the path struct for its child "global". -func (n *NetworkInstance_Protocol_Isis) Global() *NetworkInstance_Protocol_Isis_Global { - return &NetworkInstance_Protocol_Isis_Global{ +// Global returns from NetworkInstance_Protocol_IsisPath the path struct for its child "global". +func (n *NetworkInstance_Protocol_IsisPath) Global() *NetworkInstance_Protocol_Isis_GlobalPath { + return &NetworkInstance_Protocol_Isis_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -109136,9 +109350,9 @@ func (n *NetworkInstance_Protocol_Isis) Global() *NetworkInstance_Protocol_Isis_ } } -// Global returns from NetworkInstance_Protocol_IsisAny the path struct for its child "global". -func (n *NetworkInstance_Protocol_IsisAny) Global() *NetworkInstance_Protocol_Isis_GlobalAny { - return &NetworkInstance_Protocol_Isis_GlobalAny{ +// Global returns from NetworkInstance_Protocol_IsisPathAny the path struct for its child "global". +func (n *NetworkInstance_Protocol_IsisPathAny) Global() *NetworkInstance_Protocol_Isis_GlobalPathAny { + return &NetworkInstance_Protocol_Isis_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -109147,9 +109361,9 @@ func (n *NetworkInstance_Protocol_IsisAny) Global() *NetworkInstance_Protocol_Is } } -// InterfaceAny returns from NetworkInstance_Protocol_Isis the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Isis) InterfaceAny() *NetworkInstance_Protocol_Isis_InterfaceAny { - return &NetworkInstance_Protocol_Isis_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_IsisPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IsisPath) InterfaceAny() *NetworkInstance_Protocol_Isis_InterfacePathAny { + return &NetworkInstance_Protocol_Isis_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -109158,9 +109372,9 @@ func (n *NetworkInstance_Protocol_Isis) InterfaceAny() *NetworkInstance_Protocol } } -// InterfaceAny returns from NetworkInstance_Protocol_IsisAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_IsisAny) InterfaceAny() *NetworkInstance_Protocol_Isis_InterfaceAny { - return &NetworkInstance_Protocol_Isis_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_IsisPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IsisPathAny) InterfaceAny() *NetworkInstance_Protocol_Isis_InterfacePathAny { + return &NetworkInstance_Protocol_Isis_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -109169,9 +109383,9 @@ func (n *NetworkInstance_Protocol_IsisAny) InterfaceAny() *NetworkInstance_Proto } } -// Interface returns from NetworkInstance_Protocol_Isis the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Isis) Interface(InterfaceId string) *NetworkInstance_Protocol_Isis_Interface { - return &NetworkInstance_Protocol_Isis_Interface{ +// Interface returns from NetworkInstance_Protocol_IsisPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IsisPath) Interface(InterfaceId string) *NetworkInstance_Protocol_Isis_InterfacePath { + return &NetworkInstance_Protocol_Isis_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -109180,9 +109394,9 @@ func (n *NetworkInstance_Protocol_Isis) Interface(InterfaceId string) *NetworkIn } } -// Interface returns from NetworkInstance_Protocol_IsisAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_IsisAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Isis_InterfaceAny { - return &NetworkInstance_Protocol_Isis_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_IsisPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_IsisPathAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Isis_InterfacePathAny { + return &NetworkInstance_Protocol_Isis_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -109191,9 +109405,9 @@ func (n *NetworkInstance_Protocol_IsisAny) Interface(InterfaceId string) *Networ } } -// LevelAny returns from NetworkInstance_Protocol_Isis the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis) LevelAny() *NetworkInstance_Protocol_Isis_LevelAny { - return &NetworkInstance_Protocol_Isis_LevelAny{ +// LevelAny returns from NetworkInstance_Protocol_IsisPath the path struct for its child "level". +func (n *NetworkInstance_Protocol_IsisPath) LevelAny() *NetworkInstance_Protocol_Isis_LevelPathAny { + return &NetworkInstance_Protocol_Isis_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": "*"}, @@ -109202,9 +109416,9 @@ func (n *NetworkInstance_Protocol_Isis) LevelAny() *NetworkInstance_Protocol_Isi } } -// LevelAny returns from NetworkInstance_Protocol_IsisAny the path struct for its child "level". -func (n *NetworkInstance_Protocol_IsisAny) LevelAny() *NetworkInstance_Protocol_Isis_LevelAny { - return &NetworkInstance_Protocol_Isis_LevelAny{ +// LevelAny returns from NetworkInstance_Protocol_IsisPathAny the path struct for its child "level". +func (n *NetworkInstance_Protocol_IsisPathAny) LevelAny() *NetworkInstance_Protocol_Isis_LevelPathAny { + return &NetworkInstance_Protocol_Isis_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": "*"}, @@ -109213,9 +109427,9 @@ func (n *NetworkInstance_Protocol_IsisAny) LevelAny() *NetworkInstance_Protocol_ } } -// Level returns from NetworkInstance_Protocol_Isis the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_Level { - return &NetworkInstance_Protocol_Isis_Level{ +// Level returns from NetworkInstance_Protocol_IsisPath the path struct for its child "level". +func (n *NetworkInstance_Protocol_IsisPath) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_LevelPath { + return &NetworkInstance_Protocol_Isis_LevelPath{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": LevelNumber}, @@ -109224,9 +109438,9 @@ func (n *NetworkInstance_Protocol_Isis) Level(LevelNumber uint8) *NetworkInstanc } } -// Level returns from NetworkInstance_Protocol_IsisAny the path struct for its child "level". -func (n *NetworkInstance_Protocol_IsisAny) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_LevelAny { - return &NetworkInstance_Protocol_Isis_LevelAny{ +// Level returns from NetworkInstance_Protocol_IsisPathAny the path struct for its child "level". +func (n *NetworkInstance_Protocol_IsisPathAny) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_LevelPathAny { + return &NetworkInstance_Protocol_Isis_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": LevelNumber}, @@ -109235,109 +109449,109 @@ func (n *NetworkInstance_Protocol_IsisAny) Level(LevelNumber uint8) *NetworkInst } } -// NetworkInstance_Protocol_Isis_Global represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global YANG schema element. -type NetworkInstance_Protocol_Isis_Global struct { +// NetworkInstance_Protocol_Isis_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global YANG schema element. +type NetworkInstance_Protocol_Isis_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global YANG schema element. -type NetworkInstance_Protocol_Isis_GlobalAny struct { +// NetworkInstance_Protocol_Isis_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global YANG schema element. +type NetworkInstance_Protocol_Isis_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_AuthenticationCheck represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/authentication-check YANG schema element. -type NetworkInstance_Protocol_Isis_Global_AuthenticationCheck struct { +// NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/authentication-check YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_AuthenticationCheckAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/authentication-check YANG schema element. -type NetworkInstance_Protocol_Isis_Global_AuthenticationCheckAny struct { +// NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/authentication-check YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_FastFlooding represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/fast-flooding YANG schema element. -type NetworkInstance_Protocol_Isis_Global_FastFlooding struct { +// NetworkInstance_Protocol_Isis_Global_FastFloodingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/fast-flooding YANG schema element. +type NetworkInstance_Protocol_Isis_Global_FastFloodingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_FastFloodingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/fast-flooding YANG schema element. -type NetworkInstance_Protocol_Isis_Global_FastFloodingAny struct { +// NetworkInstance_Protocol_Isis_Global_FastFloodingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/fast-flooding YANG schema element. +type NetworkInstance_Protocol_Isis_Global_FastFloodingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_IidTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/iid-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Global_IidTlv struct { +// NetworkInstance_Protocol_Isis_Global_IidTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/iid-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Global_IidTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_IidTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/iid-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Global_IidTlvAny struct { +// NetworkInstance_Protocol_Isis_Global_IidTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/iid-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Global_IidTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Instance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Instance struct { +// NetworkInstance_Protocol_Isis_Global_InstancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InstancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InstanceAny struct { +// NetworkInstance_Protocol_Isis_Global_InstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LevelCapability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/level-capability YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LevelCapability struct { +// NetworkInstance_Protocol_Isis_Global_LevelCapabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/level-capability YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LevelCapabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LevelCapabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/level-capability YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LevelCapabilityAny struct { +// NetworkInstance_Protocol_Isis_Global_LevelCapabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/level-capability YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LevelCapabilityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_MaxEcmpPaths represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/max-ecmp-paths YANG schema element. -type NetworkInstance_Protocol_Isis_Global_MaxEcmpPaths struct { +// NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/max-ecmp-paths YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/max-ecmp-paths YANG schema element. -type NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsAny struct { +// NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/max-ecmp-paths YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_MaximumAreaAddresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/maximum-area-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Global_MaximumAreaAddresses struct { +// NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/maximum-area-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/maximum-area-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesAny struct { +// NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/maximum-area-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Net represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/net YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Net struct { +// NetworkInstance_Protocol_Isis_Global_NetPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/net YANG schema element. +type NetworkInstance_Protocol_Isis_Global_NetPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_NetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/net YANG schema element. -type NetworkInstance_Protocol_Isis_Global_NetAny struct { +// NetworkInstance_Protocol_Isis_Global_NetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/net YANG schema element. +type NetworkInstance_Protocol_Isis_Global_NetPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_PoiTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/poi-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Global_PoiTlv struct { +// NetworkInstance_Protocol_Isis_Global_PoiTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/poi-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Global_PoiTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_PoiTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/state/poi-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Global_PoiTlvAny struct { +// NetworkInstance_Protocol_Isis_Global_PoiTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/config/poi-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Global_PoiTlvPathAny struct { *ygot.NodePath } -// AfAny returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Global) AfAny() *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) AfAny() *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -109346,9 +109560,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) AfAny() *NetworkInstance_Protocol } } -// AfAny returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAny() *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) AfAny() *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -109357,9 +109571,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAny() *NetworkInstance_Proto } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Global) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -109368,9 +109582,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) AfAnySafiName(AfiName oc.E_Openco } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -109379,9 +109593,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAnySafiName(AfiName oc.E_Ope } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Global) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -109390,9 +109604,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) AfAnyAfiName(SafiName oc.E_Openco } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -109401,9 +109615,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfAnyAfiName(SafiName oc.E_Ope } } -// Af returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Global) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_Af { - return &NetworkInstance_Protocol_Isis_Global_Af{ +// Af returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPath { + return &NetworkInstance_Protocol_Isis_Global_AfPath{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -109412,9 +109626,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Af(AfiName oc.E_OpenconfigIsisTyp } } -// Af returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfAny { - return &NetworkInstance_Protocol_Isis_Global_AfAny{ +// Af returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -109423,9 +109637,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Af(AfiName oc.E_OpenconfigIsis } } -// AfiAny returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "afi". -func (n *NetworkInstance_Protocol_Isis_Global) AfiAny() *NetworkInstance_Protocol_Isis_Global_AfiAny { - return &NetworkInstance_Protocol_Isis_Global_AfiAny{ +// AfiAny returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "afi". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) AfiAny() *NetworkInstance_Protocol_Isis_Global_AfiPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfiPathAny{ NodePath: ygot.NewNodePath( []string{"igp-shortcuts", "afi"}, map[string]interface{}{"afi-name": "*"}, @@ -109434,9 +109648,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) AfiAny() *NetworkInstance_Protoco } } -// AfiAny returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "afi". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfiAny() *NetworkInstance_Protocol_Isis_Global_AfiAny { - return &NetworkInstance_Protocol_Isis_Global_AfiAny{ +// AfiAny returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "afi". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) AfiAny() *NetworkInstance_Protocol_Isis_Global_AfiPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfiPathAny{ NodePath: ygot.NewNodePath( []string{"igp-shortcuts", "afi"}, map[string]interface{}{"afi-name": "*"}, @@ -109445,9 +109659,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) AfiAny() *NetworkInstance_Prot } } -// Afi returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "afi". -func (n *NetworkInstance_Protocol_Isis_Global) Afi(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_Afi { - return &NetworkInstance_Protocol_Isis_Global_Afi{ +// Afi returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "afi". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Afi(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfiPath { + return &NetworkInstance_Protocol_Isis_Global_AfiPath{ NodePath: ygot.NewNodePath( []string{"igp-shortcuts", "afi"}, map[string]interface{}{"afi-name": AfiName}, @@ -109456,9 +109670,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Afi(AfiName oc.E_OpenconfigIsisTy } } -// Afi returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "afi". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Afi(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfiAny { - return &NetworkInstance_Protocol_Isis_Global_AfiAny{ +// Afi returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "afi". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Afi(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Global_AfiPathAny { + return &NetworkInstance_Protocol_Isis_Global_AfiPathAny{ NodePath: ygot.NewNodePath( []string{"igp-shortcuts", "afi"}, map[string]interface{}{"afi-name": AfiName}, @@ -109467,53 +109681,53 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Afi(AfiName oc.E_OpenconfigIsi } } -// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "authentication-check". -func (n *NetworkInstance_Protocol_Isis_Global) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Global_AuthenticationCheck { - return &NetworkInstance_Protocol_Isis_Global_AuthenticationCheck{ +// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "authentication-check". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPath { + return &NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-check"}, + []string{"config", "authentication-check"}, map[string]interface{}{}, n, ), } } -// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "authentication-check". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Global_AuthenticationCheckAny { - return &NetworkInstance_Protocol_Isis_Global_AuthenticationCheckAny{ +// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "authentication-check". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPathAny { + return &NetworkInstance_Protocol_Isis_Global_AuthenticationCheckPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-check"}, + []string{"config", "authentication-check"}, map[string]interface{}{}, n, ), } } -// FastFlooding returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "fast-flooding". -func (n *NetworkInstance_Protocol_Isis_Global) FastFlooding() *NetworkInstance_Protocol_Isis_Global_FastFlooding { - return &NetworkInstance_Protocol_Isis_Global_FastFlooding{ +// FastFlooding returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "fast-flooding". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) FastFlooding() *NetworkInstance_Protocol_Isis_Global_FastFloodingPath { + return &NetworkInstance_Protocol_Isis_Global_FastFloodingPath{ NodePath: ygot.NewNodePath( - []string{"state", "fast-flooding"}, + []string{"config", "fast-flooding"}, map[string]interface{}{}, n, ), } } -// FastFlooding returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "fast-flooding". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) FastFlooding() *NetworkInstance_Protocol_Isis_Global_FastFloodingAny { - return &NetworkInstance_Protocol_Isis_Global_FastFloodingAny{ +// FastFlooding returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "fast-flooding". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) FastFlooding() *NetworkInstance_Protocol_Isis_Global_FastFloodingPathAny { + return &NetworkInstance_Protocol_Isis_Global_FastFloodingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "fast-flooding"}, + []string{"config", "fast-flooding"}, map[string]interface{}{}, n, ), } } -// GracefulRestart returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Isis_Global) GracefulRestart() *NetworkInstance_Protocol_Isis_Global_GracefulRestart { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) GracefulRestart() *NetworkInstance_Protocol_Isis_Global_GracefulRestartPath { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -109522,9 +109736,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) GracefulRestart() *NetworkInstanc } } -// GracefulRestart returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) GracefulRestart() *NetworkInstance_Protocol_Isis_Global_GracefulRestartAny { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) GracefulRestart() *NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -109533,53 +109747,53 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) GracefulRestart() *NetworkInst } } -// IidTlv returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "iid-tlv". -func (n *NetworkInstance_Protocol_Isis_Global) IidTlv() *NetworkInstance_Protocol_Isis_Global_IidTlv { - return &NetworkInstance_Protocol_Isis_Global_IidTlv{ +// IidTlv returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "iid-tlv". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) IidTlv() *NetworkInstance_Protocol_Isis_Global_IidTlvPath { + return &NetworkInstance_Protocol_Isis_Global_IidTlvPath{ NodePath: ygot.NewNodePath( - []string{"state", "iid-tlv"}, + []string{"config", "iid-tlv"}, map[string]interface{}{}, n, ), } } -// IidTlv returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "iid-tlv". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) IidTlv() *NetworkInstance_Protocol_Isis_Global_IidTlvAny { - return &NetworkInstance_Protocol_Isis_Global_IidTlvAny{ +// IidTlv returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "iid-tlv". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) IidTlv() *NetworkInstance_Protocol_Isis_Global_IidTlvPathAny { + return &NetworkInstance_Protocol_Isis_Global_IidTlvPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "iid-tlv"}, + []string{"config", "iid-tlv"}, map[string]interface{}{}, n, ), } } -// Instance returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Global) Instance() *NetworkInstance_Protocol_Isis_Global_Instance { - return &NetworkInstance_Protocol_Isis_Global_Instance{ +// Instance returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Instance() *NetworkInstance_Protocol_Isis_Global_InstancePath { + return &NetworkInstance_Protocol_Isis_Global_InstancePath{ NodePath: ygot.NewNodePath( - []string{"state", "instance"}, + []string{"config", "instance"}, map[string]interface{}{}, n, ), } } -// Instance returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Instance() *NetworkInstance_Protocol_Isis_Global_InstanceAny { - return &NetworkInstance_Protocol_Isis_Global_InstanceAny{ +// Instance returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Instance() *NetworkInstance_Protocol_Isis_Global_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Global_InstancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "instance"}, + []string{"config", "instance"}, map[string]interface{}{}, n, ), } } -// InterLevelPropagationPolicies returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "inter-level-propagation-policies". -func (n *NetworkInstance_Protocol_Isis_Global) InterLevelPropagationPolicies() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies{ +// InterLevelPropagationPolicies returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "inter-level-propagation-policies". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) InterLevelPropagationPolicies() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath{ NodePath: ygot.NewNodePath( []string{"inter-level-propagation-policies"}, map[string]interface{}{}, @@ -109588,9 +109802,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) InterLevelPropagationPolicies() * } } -// InterLevelPropagationPolicies returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "inter-level-propagation-policies". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) InterLevelPropagationPolicies() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny{ +// InterLevelPropagationPolicies returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "inter-level-propagation-policies". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) InterLevelPropagationPolicies() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny{ NodePath: ygot.NewNodePath( []string{"inter-level-propagation-policies"}, map[string]interface{}{}, @@ -109599,31 +109813,31 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) InterLevelPropagationPolicies( } } -// LevelCapability returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "level-capability". -func (n *NetworkInstance_Protocol_Isis_Global) LevelCapability() *NetworkInstance_Protocol_Isis_Global_LevelCapability { - return &NetworkInstance_Protocol_Isis_Global_LevelCapability{ +// LevelCapability returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "level-capability". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) LevelCapability() *NetworkInstance_Protocol_Isis_Global_LevelCapabilityPath { + return &NetworkInstance_Protocol_Isis_Global_LevelCapabilityPath{ NodePath: ygot.NewNodePath( - []string{"state", "level-capability"}, + []string{"config", "level-capability"}, map[string]interface{}{}, n, ), } } -// LevelCapability returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "level-capability". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) LevelCapability() *NetworkInstance_Protocol_Isis_Global_LevelCapabilityAny { - return &NetworkInstance_Protocol_Isis_Global_LevelCapabilityAny{ +// LevelCapability returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "level-capability". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) LevelCapability() *NetworkInstance_Protocol_Isis_Global_LevelCapabilityPathAny { + return &NetworkInstance_Protocol_Isis_Global_LevelCapabilityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "level-capability"}, + []string{"config", "level-capability"}, map[string]interface{}{}, n, ), } } -// LspBit returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "lsp-bit". -func (n *NetworkInstance_Protocol_Isis_Global) LspBit() *NetworkInstance_Protocol_Isis_Global_LspBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit{ +// LspBit returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "lsp-bit". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) LspBit() *NetworkInstance_Protocol_Isis_Global_LspBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBitPath{ NodePath: ygot.NewNodePath( []string{"lsp-bit"}, map[string]interface{}{}, @@ -109632,9 +109846,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) LspBit() *NetworkInstance_Protoco } } -// LspBit returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "lsp-bit". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) LspBit() *NetworkInstance_Protocol_Isis_Global_LspBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBitAny{ +// LspBit returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "lsp-bit". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) LspBit() *NetworkInstance_Protocol_Isis_Global_LspBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBitPathAny{ NodePath: ygot.NewNodePath( []string{"lsp-bit"}, map[string]interface{}{}, @@ -109643,53 +109857,53 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) LspBit() *NetworkInstance_Prot } } -// MaxEcmpPaths returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "max-ecmp-paths". -func (n *NetworkInstance_Protocol_Isis_Global) MaxEcmpPaths() *NetworkInstance_Protocol_Isis_Global_MaxEcmpPaths { - return &NetworkInstance_Protocol_Isis_Global_MaxEcmpPaths{ +// MaxEcmpPaths returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "max-ecmp-paths". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) MaxEcmpPaths() *NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPath { + return &NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-ecmp-paths"}, + []string{"config", "max-ecmp-paths"}, map[string]interface{}{}, n, ), } } -// MaxEcmpPaths returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "max-ecmp-paths". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) MaxEcmpPaths() *NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsAny { - return &NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsAny{ +// MaxEcmpPaths returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "max-ecmp-paths". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) MaxEcmpPaths() *NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPathAny { + return &NetworkInstance_Protocol_Isis_Global_MaxEcmpPathsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-ecmp-paths"}, + []string{"config", "max-ecmp-paths"}, map[string]interface{}{}, n, ), } } -// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "maximum-area-addresses". -func (n *NetworkInstance_Protocol_Isis_Global) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Global_MaximumAreaAddresses { - return &NetworkInstance_Protocol_Isis_Global_MaximumAreaAddresses{ +// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "maximum-area-addresses". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPath { + return &NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-area-addresses"}, + []string{"config", "maximum-area-addresses"}, map[string]interface{}{}, n, ), } } -// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "maximum-area-addresses". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesAny { - return &NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesAny{ +// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "maximum-area-addresses". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPathAny { + return &NetworkInstance_Protocol_Isis_Global_MaximumAreaAddressesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-area-addresses"}, + []string{"config", "maximum-area-addresses"}, map[string]interface{}{}, n, ), } } -// Mpls returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Isis_Global) Mpls() *NetworkInstance_Protocol_Isis_Global_Mpls { - return &NetworkInstance_Protocol_Isis_Global_Mpls{ +// Mpls returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Mpls() *NetworkInstance_Protocol_Isis_Global_MplsPath { + return &NetworkInstance_Protocol_Isis_Global_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -109698,9 +109912,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Mpls() *NetworkInstance_Protocol_ } } -// Mpls returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Mpls() *NetworkInstance_Protocol_Isis_Global_MplsAny { - return &NetworkInstance_Protocol_Isis_Global_MplsAny{ +// Mpls returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Mpls() *NetworkInstance_Protocol_Isis_Global_MplsPathAny { + return &NetworkInstance_Protocol_Isis_Global_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -109709,31 +109923,31 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Mpls() *NetworkInstance_Protoc } } -// Net returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "net". -func (n *NetworkInstance_Protocol_Isis_Global) Net() *NetworkInstance_Protocol_Isis_Global_Net { - return &NetworkInstance_Protocol_Isis_Global_Net{ +// Net returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "net". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Net() *NetworkInstance_Protocol_Isis_Global_NetPath { + return &NetworkInstance_Protocol_Isis_Global_NetPath{ NodePath: ygot.NewNodePath( - []string{"state", "net"}, + []string{"config", "net"}, map[string]interface{}{}, n, ), } } -// Net returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "net". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Net() *NetworkInstance_Protocol_Isis_Global_NetAny { - return &NetworkInstance_Protocol_Isis_Global_NetAny{ +// Net returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "net". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Net() *NetworkInstance_Protocol_Isis_Global_NetPathAny { + return &NetworkInstance_Protocol_Isis_Global_NetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "net"}, + []string{"config", "net"}, map[string]interface{}{}, n, ), } } -// Nsr returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "nsr". -func (n *NetworkInstance_Protocol_Isis_Global) Nsr() *NetworkInstance_Protocol_Isis_Global_Nsr { - return &NetworkInstance_Protocol_Isis_Global_Nsr{ +// Nsr returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "nsr". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Nsr() *NetworkInstance_Protocol_Isis_Global_NsrPath { + return &NetworkInstance_Protocol_Isis_Global_NsrPath{ NodePath: ygot.NewNodePath( []string{"nsr"}, map[string]interface{}{}, @@ -109742,9 +109956,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Nsr() *NetworkInstance_Protocol_I } } -// Nsr returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "nsr". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Nsr() *NetworkInstance_Protocol_Isis_Global_NsrAny { - return &NetworkInstance_Protocol_Isis_Global_NsrAny{ +// Nsr returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "nsr". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Nsr() *NetworkInstance_Protocol_Isis_Global_NsrPathAny { + return &NetworkInstance_Protocol_Isis_Global_NsrPathAny{ NodePath: ygot.NewNodePath( []string{"nsr"}, map[string]interface{}{}, @@ -109753,31 +109967,31 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Nsr() *NetworkInstance_Protoco } } -// PoiTlv returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "poi-tlv". -func (n *NetworkInstance_Protocol_Isis_Global) PoiTlv() *NetworkInstance_Protocol_Isis_Global_PoiTlv { - return &NetworkInstance_Protocol_Isis_Global_PoiTlv{ +// PoiTlv returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "poi-tlv". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) PoiTlv() *NetworkInstance_Protocol_Isis_Global_PoiTlvPath { + return &NetworkInstance_Protocol_Isis_Global_PoiTlvPath{ NodePath: ygot.NewNodePath( - []string{"state", "poi-tlv"}, + []string{"config", "poi-tlv"}, map[string]interface{}{}, n, ), } } -// PoiTlv returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "poi-tlv". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) PoiTlv() *NetworkInstance_Protocol_Isis_Global_PoiTlvAny { - return &NetworkInstance_Protocol_Isis_Global_PoiTlvAny{ +// PoiTlv returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "poi-tlv". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) PoiTlv() *NetworkInstance_Protocol_Isis_Global_PoiTlvPathAny { + return &NetworkInstance_Protocol_Isis_Global_PoiTlvPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "poi-tlv"}, + []string{"config", "poi-tlv"}, map[string]interface{}{}, n, ), } } -// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "reference-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Global) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth { - return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth{ +// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "reference-bandwidth". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath { + return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath{ NodePath: ygot.NewNodePath( []string{"reference-bandwidth"}, map[string]interface{}{}, @@ -109786,9 +110000,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) ReferenceBandwidth() *NetworkInst } } -// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "reference-bandwidth". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny { - return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny{ +// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "reference-bandwidth". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"reference-bandwidth"}, map[string]interface{}{}, @@ -109797,9 +110011,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) ReferenceBandwidth() *NetworkI } } -// SegmentRouting returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "segment-routing". -func (n *NetworkInstance_Protocol_Isis_Global) SegmentRouting() *NetworkInstance_Protocol_Isis_Global_SegmentRouting { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting{ +// SegmentRouting returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "segment-routing". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) SegmentRouting() *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath { + return &NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -109808,9 +110022,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) SegmentRouting() *NetworkInstance } } -// SegmentRouting returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "segment-routing". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) SegmentRouting() *NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny { - return &NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny{ +// SegmentRouting returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "segment-routing". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) SegmentRouting() *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny { + return &NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -109819,9 +110033,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) SegmentRouting() *NetworkInsta } } -// Timers returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_Global) Timers() *NetworkInstance_Protocol_Isis_Global_Timers { - return &NetworkInstance_Protocol_Isis_Global_Timers{ +// Timers returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Timers() *NetworkInstance_Protocol_Isis_Global_TimersPath { + return &NetworkInstance_Protocol_Isis_Global_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -109830,9 +110044,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Timers() *NetworkInstance_Protoco } } -// Timers returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Timers() *NetworkInstance_Protocol_Isis_Global_TimersAny { - return &NetworkInstance_Protocol_Isis_Global_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Timers() *NetworkInstance_Protocol_Isis_Global_TimersPathAny { + return &NetworkInstance_Protocol_Isis_Global_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -109841,9 +110055,9 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Timers() *NetworkInstance_Prot } } -// Transport returns from NetworkInstance_Protocol_Isis_Global the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Isis_Global) Transport() *NetworkInstance_Protocol_Isis_Global_Transport { - return &NetworkInstance_Protocol_Isis_Global_Transport{ +// Transport returns from NetworkInstance_Protocol_Isis_GlobalPath the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Isis_GlobalPath) Transport() *NetworkInstance_Protocol_Isis_Global_TransportPath { + return &NetworkInstance_Protocol_Isis_Global_TransportPath{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -109852,9 +110066,9 @@ func (n *NetworkInstance_Protocol_Isis_Global) Transport() *NetworkInstance_Prot } } -// Transport returns from NetworkInstance_Protocol_Isis_GlobalAny the path struct for its child "transport". -func (n *NetworkInstance_Protocol_Isis_GlobalAny) Transport() *NetworkInstance_Protocol_Isis_Global_TransportAny { - return &NetworkInstance_Protocol_Isis_Global_TransportAny{ +// Transport returns from NetworkInstance_Protocol_Isis_GlobalPathAny the path struct for its child "transport". +func (n *NetworkInstance_Protocol_Isis_GlobalPathAny) Transport() *NetworkInstance_Protocol_Isis_Global_TransportPathAny { + return &NetworkInstance_Protocol_Isis_Global_TransportPathAny{ NodePath: ygot.NewNodePath( []string{"transport"}, map[string]interface{}{}, @@ -109863,125 +110077,125 @@ func (n *NetworkInstance_Protocol_Isis_GlobalAny) Transport() *NetworkInstance_P } } -// NetworkInstance_Protocol_Isis_Global_Af represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af struct { +// NetworkInstance_Protocol_Isis_Global_AfPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AfPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_AfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Global_AfAny struct { +// NetworkInstance_Protocol_Isis_Global_AfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AfPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_AfiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_AfiName struct { +// NetworkInstance_Protocol_Isis_Global_Af_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_AfiNameAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_Af_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_Metric struct { +// NetworkInstance_Protocol_Isis_Global_Af_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MetricAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_SafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_SafiName struct { +// NetworkInstance_Protocol_Isis_Global_Af_SafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_SafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_SafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_SafiNameAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_SafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_SafiNamePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_Af the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_AfiName { - return &NetworkInstance_Protocol_Isis_Global_Af_AfiName{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfPath the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfPath) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_AfiNamePath { + return &NetworkInstance_Protocol_Isis_Global_Af_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfAny the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_AfAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_AfiNameAny { - return &NetworkInstance_Protocol_Isis_Global_Af_AfiNameAny{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfPathAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_AfiNamePathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Af the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Af) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_Enabled { - return &NetworkInstance_Protocol_Isis_Global_Af_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_AfPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_AfPath) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_Af_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_AfAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_AfAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_Af_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_AfPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_AfPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Isis_Global_Af the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Global_Af) Metric() *NetworkInstance_Protocol_Isis_Global_Af_Metric { - return &NetworkInstance_Protocol_Isis_Global_Af_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Global_AfPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Global_AfPath) Metric() *NetworkInstance_Protocol_Isis_Global_Af_MetricPath { + return &NetworkInstance_Protocol_Isis_Global_Af_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Isis_Global_AfAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Global_AfAny) Metric() *NetworkInstance_Protocol_Isis_Global_Af_MetricAny { - return &NetworkInstance_Protocol_Isis_Global_Af_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Global_AfPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Global_AfPathAny) Metric() *NetworkInstance_Protocol_Isis_Global_Af_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Global_Af the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Global_Af) MultiTopology() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Global_AfPath the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Global_AfPath) MultiTopology() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath{ NodePath: ygot.NewNodePath( []string{"multi-topology"}, map[string]interface{}{}, @@ -109990,9 +110204,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Af) MultiTopology() *NetworkInstan } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Global_AfAny the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Global_AfAny) MultiTopology() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Global_AfPathAny the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Global_AfPathAny) MultiTopology() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny{ NodePath: ygot.NewNodePath( []string{"multi-topology"}, map[string]interface{}{}, @@ -110001,93 +110215,93 @@ func (n *NetworkInstance_Protocol_Isis_Global_AfAny) MultiTopology() *NetworkIns } } -// SafiName returns from NetworkInstance_Protocol_Isis_Global_Af the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_SafiName { - return &NetworkInstance_Protocol_Isis_Global_Af_SafiName{ +// SafiName returns from NetworkInstance_Protocol_Isis_Global_AfPath the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfPath) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_SafiNamePath { + return &NetworkInstance_Protocol_Isis_Global_Af_SafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Global_AfAny the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Global_AfAny) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_SafiNameAny { - return &NetworkInstance_Protocol_Isis_Global_Af_SafiNameAny{ +// SafiName returns from NetworkInstance_Protocol_Isis_Global_AfPathAny the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfPathAny) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_SafiNamePathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_SafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiName struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNameAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiName struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNameAny struct { +// NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/afi-safi/af/multi-topology/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopology the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiName { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiName{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePath { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNameAny { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNameAny{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopology the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_Enabled { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPath{ NodePath: ygot.NewNodePath( []string{"state", "enabled"}, map[string]interface{}{}, @@ -110096,9 +110310,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology) Enabled() *Netwo } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_EnabledPathAny{ NodePath: ygot.NewNodePath( []string{"state", "enabled"}, map[string]interface{}{}, @@ -110107,189 +110321,189 @@ func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny) Enabled() *Ne } } -// SafiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopology the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiName { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiName{ +// SafiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPath) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePath { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyAny) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNameAny { - return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNameAny{ +// SafiName returns from NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Global_Af_MultiTopologyPathAny) SafiName() *NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePathAny { + return &NetworkInstance_Protocol_Isis_Global_Af_MultiTopology_SafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Afi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Afi struct { +// NetworkInstance_Protocol_Isis_Global_AfiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AfiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_AfiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi YANG schema element. -type NetworkInstance_Protocol_Isis_Global_AfiAny struct { +// NetworkInstance_Protocol_Isis_Global_AfiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi YANG schema element. +type NetworkInstance_Protocol_Isis_Global_AfiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Afi_AfiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Afi_AfiName struct { +// NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Afi_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Afi_AfiNameAny struct { +// NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Afi_NhType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/state/nh-type YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Afi_NhType struct { +// NetworkInstance_Protocol_Isis_Global_Afi_NhTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/config/nh-type YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Afi_NhTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Afi_NhTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/state/nh-type YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Afi_NhTypeAny struct { +// NetworkInstance_Protocol_Isis_Global_Afi_NhTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/igp-shortcuts/afi/config/nh-type YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Afi_NhTypePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_Afi the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_Afi) AfiName() *NetworkInstance_Protocol_Isis_Global_Afi_AfiName { - return &NetworkInstance_Protocol_Isis_Global_Afi_AfiName{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfiPath the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfiPath) AfiName() *NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePath { + return &NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfiAny the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Global_AfiAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Afi_AfiNameAny { - return &NetworkInstance_Protocol_Isis_Global_Afi_AfiNameAny{ +// AfiName returns from NetworkInstance_Protocol_Isis_Global_AfiPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Global_AfiPathAny) AfiName() *NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePathAny { + return &NetworkInstance_Protocol_Isis_Global_Afi_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// NhType returns from NetworkInstance_Protocol_Isis_Global_Afi the path struct for its child "nh-type". -func (n *NetworkInstance_Protocol_Isis_Global_Afi) NhType() *NetworkInstance_Protocol_Isis_Global_Afi_NhType { - return &NetworkInstance_Protocol_Isis_Global_Afi_NhType{ +// NhType returns from NetworkInstance_Protocol_Isis_Global_AfiPath the path struct for its child "nh-type". +func (n *NetworkInstance_Protocol_Isis_Global_AfiPath) NhType() *NetworkInstance_Protocol_Isis_Global_Afi_NhTypePath { + return &NetworkInstance_Protocol_Isis_Global_Afi_NhTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "nh-type"}, + []string{"config", "nh-type"}, map[string]interface{}{}, n, ), } } -// NhType returns from NetworkInstance_Protocol_Isis_Global_AfiAny the path struct for its child "nh-type". -func (n *NetworkInstance_Protocol_Isis_Global_AfiAny) NhType() *NetworkInstance_Protocol_Isis_Global_Afi_NhTypeAny { - return &NetworkInstance_Protocol_Isis_Global_Afi_NhTypeAny{ +// NhType returns from NetworkInstance_Protocol_Isis_Global_AfiPathAny the path struct for its child "nh-type". +func (n *NetworkInstance_Protocol_Isis_Global_AfiPathAny) NhType() *NetworkInstance_Protocol_Isis_Global_Afi_NhTypePathAny { + return &NetworkInstance_Protocol_Isis_Global_Afi_NhTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "nh-type"}, + []string{"config", "nh-type"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestart struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestartAny struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnly represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnly struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyAny struct { +// NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestart) Enabled() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Isis_Global_GracefulRestart the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestart) HelperOnly() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnly { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnly{ +// HelperOnly returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartPath the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartPath) HelperOnly() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPath { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartAny the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartAny) HelperOnly() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyAny { - return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Isis_Global_GracefulRestartPathAny) HelperOnly() *NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPathAny { + return &NetworkInstance_Protocol_Isis_Global_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny struct { *ygot.NodePath } -// Level1ToLevel2 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies the path struct for its child "level1-to-level2". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies) Level1ToLevel2() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2 { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2{ +// Level1ToLevel2 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath the path struct for its child "level1-to-level2". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath) Level1ToLevel2() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path{ NodePath: ygot.NewNodePath( []string{"level1-to-level2"}, map[string]interface{}{}, @@ -110298,9 +110512,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies) Lev } } -// Level1ToLevel2 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny the path struct for its child "level1-to-level2". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny) Level1ToLevel2() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any{ +// Level1ToLevel2 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny the path struct for its child "level1-to-level2". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny) Level1ToLevel2() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny{ NodePath: ygot.NewNodePath( []string{"level1-to-level2"}, map[string]interface{}{}, @@ -110309,9 +110523,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny) } } -// Level2ToLevel1 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies the path struct for its child "level2-to-level1". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies) Level2ToLevel1() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1 { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1{ +// Level2ToLevel1 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath the path struct for its child "level2-to-level1". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPath) Level2ToLevel1() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path{ NodePath: ygot.NewNodePath( []string{"level2-to-level1"}, map[string]interface{}{}, @@ -110320,9 +110534,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies) Lev } } -// Level2ToLevel1 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny the path struct for its child "level2-to-level1". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny) Level2ToLevel1() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any{ +// Level2ToLevel1 returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny the path struct for its child "level2-to-level1". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesPathAny) Level2ToLevel1() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny{ NodePath: ygot.NewNodePath( []string{"level2-to-level1"}, map[string]interface{}{}, @@ -110331,167 +110545,167 @@ func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPoliciesAny) } } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2 YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2 struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2 YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2 YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2 YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicy struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyAny struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level1-to-level2/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2 the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicy { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2 the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicy { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Path) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPath { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2Any) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyAny { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2PathAny) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level1ToLevel2_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1 YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1 struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1 YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1 YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1 YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicy struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyAny struct { +// NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/inter-level-propagation-policies/level2-to-level1/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPathAny struct { *ygot.NodePath } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1 the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicy { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1 the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicy { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Path) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPath { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1Any) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyAny { - return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1PathAny) ImportPolicy() *NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Isis_Global_InterLevelPropagationPolicies_Level2ToLevel1_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_LspBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBitPathAny struct { *ygot.NodePath } -// AttachedBit returns from NetworkInstance_Protocol_Isis_Global_LspBit the path struct for its child "attached-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit) AttachedBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit{ +// AttachedBit returns from NetworkInstance_Protocol_Isis_Global_LspBitPath the path struct for its child "attached-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBitPath) AttachedBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath{ NodePath: ygot.NewNodePath( []string{"attached-bit"}, map[string]interface{}{}, @@ -110500,9 +110714,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit) AttachedBit() *NetworkInst } } -// AttachedBit returns from NetworkInstance_Protocol_Isis_Global_LspBitAny the path struct for its child "attached-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBitAny) AttachedBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny{ +// AttachedBit returns from NetworkInstance_Protocol_Isis_Global_LspBitPathAny the path struct for its child "attached-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBitPathAny) AttachedBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny{ NodePath: ygot.NewNodePath( []string{"attached-bit"}, map[string]interface{}{}, @@ -110511,9 +110725,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBitAny) AttachedBit() *NetworkI } } -// OverloadBit returns from NetworkInstance_Protocol_Isis_Global_LspBit the path struct for its child "overload-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit) OverloadBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit{ +// OverloadBit returns from NetworkInstance_Protocol_Isis_Global_LspBitPath the path struct for its child "overload-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBitPath) OverloadBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath{ NodePath: ygot.NewNodePath( []string{"overload-bit"}, map[string]interface{}{}, @@ -110522,9 +110736,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit) OverloadBit() *NetworkInst } } -// OverloadBit returns from NetworkInstance_Protocol_Isis_Global_LspBitAny the path struct for its child "overload-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBitAny) OverloadBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny{ +// OverloadBit returns from NetworkInstance_Protocol_Isis_Global_LspBitPathAny the path struct for its child "overload-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBitPathAny) OverloadBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny{ NodePath: ygot.NewNodePath( []string{"overload-bit"}, map[string]interface{}{}, @@ -110533,145 +110747,145 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBitAny) OverloadBit() *NetworkI } } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/state/ignore-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/config/ignore-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/state/ignore-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/config/ignore-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/state/suppress-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/config/suppress-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/state/suppress-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/attached-bit/config/suppress-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPathAny struct { *ygot.NodePath } -// IgnoreBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit the path struct for its child "ignore-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit) IgnoreBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBit{ +// IgnoreBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath the path struct for its child "ignore-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath) IgnoreBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPath{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-bit"}, + []string{"config", "ignore-bit"}, map[string]interface{}{}, n, ), } } -// IgnoreBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny the path struct for its child "ignore-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny) IgnoreBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitAny{ +// IgnoreBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny the path struct for its child "ignore-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny) IgnoreBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_IgnoreBitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ignore-bit"}, + []string{"config", "ignore-bit"}, map[string]interface{}{}, n, ), } } -// SuppressBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit the path struct for its child "suppress-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit) SuppressBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBit{ +// SuppressBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath the path struct for its child "suppress-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPath) SuppressBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPath{ NodePath: ygot.NewNodePath( - []string{"state", "suppress-bit"}, + []string{"config", "suppress-bit"}, map[string]interface{}{}, n, ), } } -// SuppressBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny the path struct for its child "suppress-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitAny) SuppressBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitAny{ +// SuppressBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny the path struct for its child "suppress-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBitPathAny) SuppressBit() *NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_AttachedBit_SuppressBitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "suppress-bit"}, + []string{"config", "suppress-bit"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/advertise-high-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetric struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/advertise-high-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/advertise-high-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/advertise-high-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/set-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBit struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/set-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/set-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/set-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBoot represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/set-bit-on-boot YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBoot struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/set-bit-on-boot YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/state/set-bit-on-boot YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/config/set-bit-on-boot YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPathAny struct { *ygot.NodePath } -// AdvertiseHighMetric returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit the path struct for its child "advertise-high-metric". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) AdvertiseHighMetric() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetric { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetric{ +// AdvertiseHighMetric returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath the path struct for its child "advertise-high-metric". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath) AdvertiseHighMetric() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-high-metric"}, + []string{"config", "advertise-high-metric"}, map[string]interface{}{}, n, ), } } -// AdvertiseHighMetric returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny the path struct for its child "advertise-high-metric". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) AdvertiseHighMetric() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricAny{ +// AdvertiseHighMetric returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny the path struct for its child "advertise-high-metric". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny) AdvertiseHighMetric() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_AdvertiseHighMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "advertise-high-metric"}, + []string{"config", "advertise-high-metric"}, map[string]interface{}{}, n, ), } } -// ResetTriggerAny returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) ResetTriggerAny() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny{ +// ResetTriggerAny returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath) ResetTriggerAny() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny{ NodePath: ygot.NewNodePath( []string{"reset-triggers", "reset-trigger"}, map[string]interface{}{"reset-trigger": "*"}, @@ -110680,9 +110894,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) ResetTriggerAn } } -// ResetTriggerAny returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) ResetTriggerAny() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny{ +// ResetTriggerAny returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny) ResetTriggerAny() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny{ NodePath: ygot.NewNodePath( []string{"reset-triggers", "reset-trigger"}, map[string]interface{}{"reset-trigger": "*"}, @@ -110691,9 +110905,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) ResetTrigge } } -// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) ResetTrigger(ResetTrigger oc.E_OpenconfigIsisTypes_OVERLOAD_RESET_TRIGGER_TYPE) *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger{ +// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath) ResetTrigger(ResetTrigger E_OpenconfigIsisTypes_OVERLOAD_RESET_TRIGGER_TYPE) *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath{ NodePath: ygot.NewNodePath( []string{"reset-triggers", "reset-trigger"}, map[string]interface{}{"reset-trigger": ResetTrigger}, @@ -110702,9 +110916,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) ResetTrigger(R } } -// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) ResetTrigger(ResetTrigger oc.E_OpenconfigIsisTypes_OVERLOAD_RESET_TRIGGER_TYPE) *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny{ +// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny) ResetTrigger(ResetTrigger E_OpenconfigIsisTypes_OVERLOAD_RESET_TRIGGER_TYPE) *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny{ NodePath: ygot.NewNodePath( []string{"reset-triggers", "reset-trigger"}, map[string]interface{}{"reset-trigger": ResetTrigger}, @@ -110713,137 +110927,137 @@ func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) ResetTrigge } } -// SetBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit the path struct for its child "set-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) SetBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBit { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBit{ +// SetBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath the path struct for its child "set-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath) SetBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-bit"}, + []string{"config", "set-bit"}, map[string]interface{}{}, n, ), } } -// SetBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny the path struct for its child "set-bit". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) SetBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitAny{ +// SetBit returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny the path struct for its child "set-bit". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny) SetBit() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-bit"}, + []string{"config", "set-bit"}, map[string]interface{}{}, n, ), } } -// SetBitOnBoot returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit the path struct for its child "set-bit-on-boot". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit) SetBitOnBoot() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBoot { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBoot{ +// SetBitOnBoot returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath the path struct for its child "set-bit-on-boot". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPath) SetBitOnBoot() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-bit-on-boot"}, + []string{"config", "set-bit-on-boot"}, map[string]interface{}{}, n, ), } } -// SetBitOnBoot returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny the path struct for its child "set-bit-on-boot". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitAny) SetBitOnBoot() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootAny{ +// SetBitOnBoot returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny the path struct for its child "set-bit-on-boot". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBitPathAny) SetBitOnBoot() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_SetBitOnBootPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-bit-on-boot"}, + []string{"config", "set-bit-on-boot"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_Delay struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/config/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/config/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTrigger represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/state/reset-trigger YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTrigger struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/config/reset-trigger YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/state/reset-trigger YANG schema element. -type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerAny struct { +// NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/lsp-bit/overload-bit/reset-triggers/reset-trigger/config/reset-trigger YANG schema element. +type NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPathAny struct { *ygot.NodePath } -// Delay returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger) Delay() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_Delay { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath) Delay() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "delay"}, + []string{"config", "delay"}, map[string]interface{}{}, n, ), } } -// Delay returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny) Delay() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny) Delay() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_DelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "delay"}, + []string{"config", "delay"}, map[string]interface{}{}, n, ), } } -// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger) ResetTrigger() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTrigger { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTrigger{ +// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPath) ResetTrigger() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPath { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPath{ NodePath: ygot.NewNodePath( - []string{"state", "reset-trigger"}, + []string{"config", "reset-trigger"}, map[string]interface{}{}, n, ), } } -// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny the path struct for its child "reset-trigger". -func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerAny) ResetTrigger() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerAny { - return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerAny{ +// ResetTrigger returns from NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny the path struct for its child "reset-trigger". +func (n *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTriggerPathAny) ResetTrigger() *NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPathAny { + return &NetworkInstance_Protocol_Isis_Global_LspBit_OverloadBit_ResetTrigger_ResetTriggerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "reset-trigger"}, + []string{"config", "reset-trigger"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Mpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls struct { +// NetworkInstance_Protocol_Isis_Global_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls YANG schema element. -type NetworkInstance_Protocol_Isis_Global_MplsAny struct { +// NetworkInstance_Protocol_Isis_Global_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls YANG schema element. +type NetworkInstance_Protocol_Isis_Global_MplsPathAny struct { *ygot.NodePath } -// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Global_Mpls the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Isis_Global_Mpls) IgpLdpSync() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync{ +// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Global_MplsPath the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Isis_Global_MplsPath) IgpLdpSync() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -110852,9 +111066,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Mpls) IgpLdpSync() *NetworkInstanc } } -// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Global_MplsAny the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Isis_Global_MplsAny) IgpLdpSync() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny{ +// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Global_MplsPathAny the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Isis_Global_MplsPathAny) IgpLdpSync() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -110863,303 +111077,303 @@ func (n *NetworkInstance_Protocol_Isis_Global_MplsAny) IgpLdpSync() *NetworkInst } } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelay struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny struct { +// NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync) Enabled() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_Enabled { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath) Enabled() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelay { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelay{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPath) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncAny) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny { - return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSyncPathAny) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny { + return &NetworkInstance_Protocol_Isis_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Nsr represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Nsr struct { +// NetworkInstance_Protocol_Isis_Global_NsrPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr YANG schema element. +type NetworkInstance_Protocol_Isis_Global_NsrPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_NsrAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr YANG schema element. -type NetworkInstance_Protocol_Isis_Global_NsrAny struct { +// NetworkInstance_Protocol_Isis_Global_NsrPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr YANG schema element. +type NetworkInstance_Protocol_Isis_Global_NsrPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Nsr_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Nsr_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Nsr_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Nsr_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/nsr/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_Nsr the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_Nsr) Enabled() *NetworkInstance_Protocol_Isis_Global_Nsr_Enabled { - return &NetworkInstance_Protocol_Isis_Global_Nsr_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_NsrPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_NsrPath) Enabled() *NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_NsrAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_NsrAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Nsr_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_Nsr_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_NsrPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_NsrPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_Nsr_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth struct { +// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth/state/reference-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidth struct { +// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth/config/reference-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth/state/reference-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/reference-bandwidth/config/reference-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPathAny struct { *ygot.NodePath } -// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth the path struct for its child "reference-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidth { - return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidth{ +// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath the path struct for its child "reference-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPath) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPath { + return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPath{ NodePath: ygot.NewNodePath( - []string{"state", "reference-bandwidth"}, + []string{"config", "reference-bandwidth"}, map[string]interface{}{}, n, ), } } -// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny the path struct for its child "reference-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthAny) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthAny { - return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthAny{ +// ReferenceBandwidth returns from NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny the path struct for its child "reference-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidthPathAny) ReferenceBandwidth() *NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Global_ReferenceBandwidth_ReferenceBandwidthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "reference-bandwidth"}, + []string{"config", "reference-bandwidth"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_Enabled struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srgb represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/srgb YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srgb struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/srgb YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/srgb YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbAny struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/srgb YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srlb represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/srlb YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srlb struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/srlb YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/state/srlb YANG schema element. -type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbAny struct { +// NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/segment-routing/config/srlb YANG schema element. +type NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_SegmentRouting the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRouting) Enabled() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_Enabled { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath) Enabled() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPath { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny) Enabled() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledAny { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny) Enabled() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Srgb returns from NetworkInstance_Protocol_Isis_Global_SegmentRouting the path struct for its child "srgb". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRouting) Srgb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srgb { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srgb{ +// Srgb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath the path struct for its child "srgb". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath) Srgb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPath { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPath{ NodePath: ygot.NewNodePath( - []string{"state", "srgb"}, + []string{"config", "srgb"}, map[string]interface{}{}, n, ), } } -// Srgb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny the path struct for its child "srgb". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny) Srgb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbAny { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbAny{ +// Srgb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny the path struct for its child "srgb". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny) Srgb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPathAny { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrgbPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "srgb"}, + []string{"config", "srgb"}, map[string]interface{}{}, n, ), } } -// Srlb returns from NetworkInstance_Protocol_Isis_Global_SegmentRouting the path struct for its child "srlb". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRouting) Srlb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srlb { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_Srlb{ +// Srlb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath the path struct for its child "srlb". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPath) Srlb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPath { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPath{ NodePath: ygot.NewNodePath( - []string{"state", "srlb"}, + []string{"config", "srlb"}, map[string]interface{}{}, n, ), } } -// Srlb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny the path struct for its child "srlb". -func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingAny) Srlb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbAny { - return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbAny{ +// Srlb returns from NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny the path struct for its child "srlb". +func (n *NetworkInstance_Protocol_Isis_Global_SegmentRoutingPathAny) Srlb() *NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPathAny { + return &NetworkInstance_Protocol_Isis_Global_SegmentRouting_SrlbPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "srlb"}, + []string{"config", "srlb"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers struct { +// NetworkInstance_Protocol_Isis_Global_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Global_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Global_TimersAny struct { +// NetworkInstance_Protocol_Isis_Global_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Global_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/state/lsp-lifetime-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/config/lsp-lifetime-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/state/lsp-lifetime-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/config/lsp-lifetime-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/state/lsp-refresh-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/config/lsp-refresh-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/state/lsp-refresh-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/config/lsp-refresh-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPathAny struct { *ygot.NodePath } -// LspGeneration returns from NetworkInstance_Protocol_Isis_Global_Timers the path struct for its child "lsp-generation". -func (n *NetworkInstance_Protocol_Isis_Global_Timers) LspGeneration() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration{ +// LspGeneration returns from NetworkInstance_Protocol_Isis_Global_TimersPath the path struct for its child "lsp-generation". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPath) LspGeneration() *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath{ NodePath: ygot.NewNodePath( []string{"lsp-generation"}, map[string]interface{}{}, @@ -111168,9 +111382,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers) LspGeneration() *NetworkIn } } -// LspGeneration returns from NetworkInstance_Protocol_Isis_Global_TimersAny the path struct for its child "lsp-generation". -func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) LspGeneration() *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny{ +// LspGeneration returns from NetworkInstance_Protocol_Isis_Global_TimersPathAny the path struct for its child "lsp-generation". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPathAny) LspGeneration() *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny{ NodePath: ygot.NewNodePath( []string{"lsp-generation"}, map[string]interface{}{}, @@ -111179,53 +111393,53 @@ func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) LspGeneration() *Networ } } -// LspLifetimeInterval returns from NetworkInstance_Protocol_Isis_Global_Timers the path struct for its child "lsp-lifetime-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers) LspLifetimeInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeInterval{ +// LspLifetimeInterval returns from NetworkInstance_Protocol_Isis_Global_TimersPath the path struct for its child "lsp-lifetime-interval". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPath) LspLifetimeInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-lifetime-interval"}, + []string{"config", "lsp-lifetime-interval"}, map[string]interface{}{}, n, ), } } -// LspLifetimeInterval returns from NetworkInstance_Protocol_Isis_Global_TimersAny the path struct for its child "lsp-lifetime-interval". -func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) LspLifetimeInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalAny{ +// LspLifetimeInterval returns from NetworkInstance_Protocol_Isis_Global_TimersPathAny the path struct for its child "lsp-lifetime-interval". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPathAny) LspLifetimeInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspLifetimeIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-lifetime-interval"}, + []string{"config", "lsp-lifetime-interval"}, map[string]interface{}{}, n, ), } } -// LspRefreshInterval returns from NetworkInstance_Protocol_Isis_Global_Timers the path struct for its child "lsp-refresh-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers) LspRefreshInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshInterval{ +// LspRefreshInterval returns from NetworkInstance_Protocol_Isis_Global_TimersPath the path struct for its child "lsp-refresh-interval". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPath) LspRefreshInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-refresh-interval"}, + []string{"config", "lsp-refresh-interval"}, map[string]interface{}{}, n, ), } } -// LspRefreshInterval returns from NetworkInstance_Protocol_Isis_Global_TimersAny the path struct for its child "lsp-refresh-interval". -func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) LspRefreshInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalAny{ +// LspRefreshInterval returns from NetworkInstance_Protocol_Isis_Global_TimersPathAny the path struct for its child "lsp-refresh-interval". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPathAny) LspRefreshInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspRefreshIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-refresh-interval"}, + []string{"config", "lsp-refresh-interval"}, map[string]interface{}{}, n, ), } } -// Spf returns from NetworkInstance_Protocol_Isis_Global_Timers the path struct for its child "spf". -func (n *NetworkInstance_Protocol_Isis_Global_Timers) Spf() *NetworkInstance_Protocol_Isis_Global_Timers_Spf { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf{ +// Spf returns from NetworkInstance_Protocol_Isis_Global_TimersPath the path struct for its child "spf". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPath) Spf() *NetworkInstance_Protocol_Isis_Global_Timers_SpfPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_SpfPath{ NodePath: ygot.NewNodePath( []string{"spf"}, map[string]interface{}{}, @@ -111234,9 +111448,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers) Spf() *NetworkInstance_Pro } } -// Spf returns from NetworkInstance_Protocol_Isis_Global_TimersAny the path struct for its child "spf". -func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) Spf() *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_SpfAny{ +// Spf returns from NetworkInstance_Protocol_Isis_Global_TimersPathAny the path struct for its child "spf". +func (n *NetworkInstance_Protocol_Isis_Global_TimersPathAny) Spf() *NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny{ NodePath: ygot.NewNodePath( []string{"spf"}, map[string]interface{}{}, @@ -111245,59 +111459,59 @@ func (n *NetworkInstance_Protocol_Isis_Global_TimersAny) Spf() *NetworkInstance_ } } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/adaptive-timer YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimer struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/adaptive-timer YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/adaptive-timer YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/adaptive-timer YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-first-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-first-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-first-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-first-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-max-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-max-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-max-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-max-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-second-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-second-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/state/lsp-second-wait-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/lsp-generation/config/lsp-second-wait-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPathAny struct { *ygot.NodePath } -// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration the path struct for its child "adaptive-timer". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimer { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimer{ +// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath the path struct for its child "adaptive-timer". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPath{ NodePath: ygot.NewNodePath( []string{"state", "adaptive-timer"}, map[string]interface{}{}, @@ -111306,9 +111520,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration) AdaptiveTime } } -// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny the path struct for its child "adaptive-timer". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerAny{ +// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny the path struct for its child "adaptive-timer". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_AdaptiveTimerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "adaptive-timer"}, map[string]interface{}{}, @@ -111317,125 +111531,125 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny) AdaptiveT } } -// LspFirstWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration the path struct for its child "lsp-first-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration) LspFirstWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitInterval{ +// LspFirstWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath the path struct for its child "lsp-first-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath) LspFirstWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-first-wait-interval"}, + []string{"config", "lsp-first-wait-interval"}, map[string]interface{}{}, n, ), } } -// LspFirstWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny the path struct for its child "lsp-first-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny) LspFirstWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalAny{ +// LspFirstWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny the path struct for its child "lsp-first-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny) LspFirstWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspFirstWaitIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-first-wait-interval"}, + []string{"config", "lsp-first-wait-interval"}, map[string]interface{}{}, n, ), } } -// LspMaxWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration the path struct for its child "lsp-max-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration) LspMaxWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitInterval{ +// LspMaxWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath the path struct for its child "lsp-max-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath) LspMaxWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-max-wait-interval"}, + []string{"config", "lsp-max-wait-interval"}, map[string]interface{}{}, n, ), } } -// LspMaxWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny the path struct for its child "lsp-max-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny) LspMaxWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalAny{ +// LspMaxWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny the path struct for its child "lsp-max-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny) LspMaxWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspMaxWaitIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-max-wait-interval"}, + []string{"config", "lsp-max-wait-interval"}, map[string]interface{}{}, n, ), } } -// LspSecondWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration the path struct for its child "lsp-second-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration) LspSecondWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitInterval{ +// LspSecondWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath the path struct for its child "lsp-second-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPath) LspSecondWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-second-wait-interval"}, + []string{"config", "lsp-second-wait-interval"}, map[string]interface{}{}, n, ), } } -// LspSecondWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny the path struct for its child "lsp-second-wait-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationAny) LspSecondWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalAny{ +// LspSecondWaitInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny the path struct for its child "lsp-second-wait-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_LspGenerationPathAny) LspSecondWaitInterval() *NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_LspGeneration_LspSecondWaitIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-second-wait-interval"}, + []string{"config", "lsp-second-wait-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf struct { +// NetworkInstance_Protocol_Isis_Global_Timers_SpfPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_SpfPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_SpfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_SpfAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/adaptive-timer YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimer struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/adaptive-timer YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/adaptive-timer YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/adaptive-timer YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-first-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-first-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-first-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-first-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-hold-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-hold-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-hold-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-hold-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-second-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondInterval struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-second-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/state/spf-second-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalAny struct { +// NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/timers/spf/config/spf-second-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPathAny struct { *ygot.NodePath } -// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_Spf the path struct for its child "adaptive-timer". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_Spf) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimer { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimer{ +// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPath the path struct for its child "adaptive-timer". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPath) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPath{ NodePath: ygot.NewNodePath( []string{"state", "adaptive-timer"}, map[string]interface{}{}, @@ -111444,9 +111658,9 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers_Spf) AdaptiveTimer() *Netwo } } -// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfAny the path struct for its child "adaptive-timer". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerAny{ +// AdaptiveTimer returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny the path struct for its child "adaptive-timer". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny) AdaptiveTimer() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_AdaptiveTimerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "adaptive-timer"}, map[string]interface{}{}, @@ -111455,177 +111669,177 @@ func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny) AdaptiveTimer() *Ne } } -// SpfFirstInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_Spf the path struct for its child "spf-first-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_Spf) SpfFirstInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstInterval{ +// SpfFirstInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPath the path struct for its child "spf-first-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPath) SpfFirstInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "spf-first-interval"}, + []string{"config", "spf-first-interval"}, map[string]interface{}{}, n, ), } } -// SpfFirstInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfAny the path struct for its child "spf-first-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny) SpfFirstInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalAny{ +// SpfFirstInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny the path struct for its child "spf-first-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny) SpfFirstInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfFirstIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "spf-first-interval"}, + []string{"config", "spf-first-interval"}, map[string]interface{}{}, n, ), } } -// SpfHoldInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_Spf the path struct for its child "spf-hold-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_Spf) SpfHoldInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldInterval{ +// SpfHoldInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPath the path struct for its child "spf-hold-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPath) SpfHoldInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "spf-hold-interval"}, + []string{"config", "spf-hold-interval"}, map[string]interface{}{}, n, ), } } -// SpfHoldInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfAny the path struct for its child "spf-hold-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny) SpfHoldInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalAny{ +// SpfHoldInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny the path struct for its child "spf-hold-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny) SpfHoldInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfHoldIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "spf-hold-interval"}, + []string{"config", "spf-hold-interval"}, map[string]interface{}{}, n, ), } } -// SpfSecondInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_Spf the path struct for its child "spf-second-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_Spf) SpfSecondInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondInterval { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondInterval{ +// SpfSecondInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPath the path struct for its child "spf-second-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPath) SpfSecondInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPath { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "spf-second-interval"}, + []string{"config", "spf-second-interval"}, map[string]interface{}{}, n, ), } } -// SpfSecondInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfAny the path struct for its child "spf-second-interval". -func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfAny) SpfSecondInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalAny { - return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalAny{ +// SpfSecondInterval returns from NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny the path struct for its child "spf-second-interval". +func (n *NetworkInstance_Protocol_Isis_Global_Timers_SpfPathAny) SpfSecondInterval() *NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Global_Timers_Spf_SpfSecondIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "spf-second-interval"}, + []string{"config", "spf-second-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Global_Transport represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Transport struct { +// NetworkInstance_Protocol_Isis_Global_TransportPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport YANG schema element. +type NetworkInstance_Protocol_Isis_Global_TransportPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_TransportAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport YANG schema element. -type NetworkInstance_Protocol_Isis_Global_TransportAny struct { +// NetworkInstance_Protocol_Isis_Global_TransportPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport YANG schema element. +type NetworkInstance_Protocol_Isis_Global_TransportPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSize represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport/state/lsp-mtu-size YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSize struct { +// NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport/config/lsp-mtu-size YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport/state/lsp-mtu-size YANG schema element. -type NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizeAny struct { +// NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/global/transport/config/lsp-mtu-size YANG schema element. +type NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePathAny struct { *ygot.NodePath } -// LspMtuSize returns from NetworkInstance_Protocol_Isis_Global_Transport the path struct for its child "lsp-mtu-size". -func (n *NetworkInstance_Protocol_Isis_Global_Transport) LspMtuSize() *NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSize { - return &NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSize{ +// LspMtuSize returns from NetworkInstance_Protocol_Isis_Global_TransportPath the path struct for its child "lsp-mtu-size". +func (n *NetworkInstance_Protocol_Isis_Global_TransportPath) LspMtuSize() *NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePath { + return &NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-mtu-size"}, + []string{"config", "lsp-mtu-size"}, map[string]interface{}{}, n, ), } } -// LspMtuSize returns from NetworkInstance_Protocol_Isis_Global_TransportAny the path struct for its child "lsp-mtu-size". -func (n *NetworkInstance_Protocol_Isis_Global_TransportAny) LspMtuSize() *NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizeAny { - return &NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizeAny{ +// LspMtuSize returns from NetworkInstance_Protocol_Isis_Global_TransportPathAny the path struct for its child "lsp-mtu-size". +func (n *NetworkInstance_Protocol_Isis_Global_TransportPathAny) LspMtuSize() *NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePathAny { + return &NetworkInstance_Protocol_Isis_Global_Transport_LspMtuSizePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-mtu-size"}, + []string{"config", "lsp-mtu-size"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Isis_Interface struct { +// NetworkInstance_Protocol_Isis_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Isis_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Isis_InterfaceAny struct { +// NetworkInstance_Protocol_Isis_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Isis_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/circuit-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitType struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/circuit-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/circuit-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitTypeAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/circuit-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Enabled struct { +// NetworkInstance_Protocol_Isis_Interface_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Interface_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_HelloPadding represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/hello-padding YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_HelloPadding struct { +// NetworkInstance_Protocol_Isis_Interface_HelloPaddingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/hello-padding YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_HelloPaddingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_HelloPaddingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/hello-padding YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_HelloPaddingAny struct { +// NetworkInstance_Protocol_Isis_Interface_HelloPaddingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/hello-padding YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_HelloPaddingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceId struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Passive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/passive YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Passive struct { +// NetworkInstance_Protocol_Isis_Interface_PassivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/passive YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_PassivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_PassiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/state/passive YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_PassiveAny struct { +// NetworkInstance_Protocol_Isis_Interface_PassivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/config/passive YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_PassivePathAny struct { *ygot.NodePath } -// AfAny returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface) AfAny() *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) AfAny() *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -111634,9 +111848,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) AfAny() *NetworkInstance_Proto } } -// AfAny returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAny() *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) AfAny() *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -111645,9 +111859,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAny() *NetworkInstance_Pr } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -111656,9 +111870,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) AfAnySafiName(AfiName oc.E_Ope } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -111667,9 +111881,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAnySafiName(AfiName oc.E_ } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -111678,9 +111892,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) AfAnyAfiName(SafiName oc.E_Ope } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -111689,9 +111903,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) AfAnyAfiName(SafiName oc.E_ } } -// Af returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Af { - return &NetworkInstance_Protocol_Isis_Interface_Af{ +// Af returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPath { + return &NetworkInstance_Protocol_Isis_Interface_AfPath{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -111700,9 +111914,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Af(AfiName oc.E_OpenconfigIsis } } -// Af returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_AfAny{ +// Af returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -111711,9 +111925,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Af(AfiName oc.E_OpenconfigI } } -// Authentication returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_Interface) Authentication() *NetworkInstance_Protocol_Isis_Interface_Authentication { - return &NetworkInstance_Protocol_Isis_Interface_Authentication{ +// Authentication returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Authentication() *NetworkInstance_Protocol_Isis_Interface_AuthenticationPath { + return &NetworkInstance_Protocol_Isis_Interface_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -111722,9 +111936,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Authentication() *NetworkInsta } } -// Authentication returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Authentication() *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny { - return &NetworkInstance_Protocol_Isis_Interface_AuthenticationAny{ +// Authentication returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Authentication() *NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -111733,9 +111947,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Authentication() *NetworkIn } } -// Bfd returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "bfd". -func (n *NetworkInstance_Protocol_Isis_Interface) Bfd() *NetworkInstance_Protocol_Isis_Interface_Bfd { - return &NetworkInstance_Protocol_Isis_Interface_Bfd{ +// Bfd returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "bfd". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Bfd() *NetworkInstance_Protocol_Isis_Interface_BfdPath { + return &NetworkInstance_Protocol_Isis_Interface_BfdPath{ NodePath: ygot.NewNodePath( []string{"bfd"}, map[string]interface{}{}, @@ -111744,9 +111958,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Bfd() *NetworkInstance_Protoco } } -// Bfd returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "bfd". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Bfd() *NetworkInstance_Protocol_Isis_Interface_BfdAny { - return &NetworkInstance_Protocol_Isis_Interface_BfdAny{ +// Bfd returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "bfd". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Bfd() *NetworkInstance_Protocol_Isis_Interface_BfdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_BfdPathAny{ NodePath: ygot.NewNodePath( []string{"bfd"}, map[string]interface{}{}, @@ -111755,9 +111969,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Bfd() *NetworkInstance_Prot } } -// CircuitCounters returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "circuit-counters". -func (n *NetworkInstance_Protocol_Isis_Interface) CircuitCounters() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters{ +// CircuitCounters returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "circuit-counters". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) CircuitCounters() *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath{ NodePath: ygot.NewNodePath( []string{"circuit-counters"}, map[string]interface{}{}, @@ -111766,9 +111980,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) CircuitCounters() *NetworkInst } } -// CircuitCounters returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "circuit-counters". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) CircuitCounters() *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny{ +// CircuitCounters returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "circuit-counters". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) CircuitCounters() *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny{ NodePath: ygot.NewNodePath( []string{"circuit-counters"}, map[string]interface{}{}, @@ -111777,97 +111991,97 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) CircuitCounters() *NetworkI } } -// CircuitType returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "circuit-type". -func (n *NetworkInstance_Protocol_Isis_Interface) CircuitType() *NetworkInstance_Protocol_Isis_Interface_CircuitType { - return &NetworkInstance_Protocol_Isis_Interface_CircuitType{ +// CircuitType returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "circuit-type". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) CircuitType() *NetworkInstance_Protocol_Isis_Interface_CircuitTypePath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "circuit-type"}, + []string{"config", "circuit-type"}, map[string]interface{}{}, n, ), } } -// CircuitType returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "circuit-type". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) CircuitType() *NetworkInstance_Protocol_Isis_Interface_CircuitTypeAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitTypeAny{ +// CircuitType returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "circuit-type". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) CircuitType() *NetworkInstance_Protocol_Isis_Interface_CircuitTypePathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "circuit-type"}, + []string{"config", "circuit-type"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface) Enabled() *NetworkInstance_Protocol_Isis_Interface_Enabled { - return &NetworkInstance_Protocol_Isis_Interface_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Enabled() *NetworkInstance_Protocol_Isis_Interface_EnabledPath { + return &NetworkInstance_Protocol_Isis_Interface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_EnabledAny { - return &NetworkInstance_Protocol_Isis_Interface_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Interface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelloPadding returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "hello-padding". -func (n *NetworkInstance_Protocol_Isis_Interface) HelloPadding() *NetworkInstance_Protocol_Isis_Interface_HelloPadding { - return &NetworkInstance_Protocol_Isis_Interface_HelloPadding{ +// HelloPadding returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "hello-padding". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) HelloPadding() *NetworkInstance_Protocol_Isis_Interface_HelloPaddingPath { + return &NetworkInstance_Protocol_Isis_Interface_HelloPaddingPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-padding"}, + []string{"config", "hello-padding"}, map[string]interface{}{}, n, ), } } -// HelloPadding returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "hello-padding". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) HelloPadding() *NetworkInstance_Protocol_Isis_Interface_HelloPaddingAny { - return &NetworkInstance_Protocol_Isis_Interface_HelloPaddingAny{ +// HelloPadding returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "hello-padding". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) HelloPadding() *NetworkInstance_Protocol_Isis_Interface_HelloPaddingPathAny { + return &NetworkInstance_Protocol_Isis_Interface_HelloPaddingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-padding"}, + []string{"config", "hello-padding"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Isis_Interface) InterfaceId() *NetworkInstance_Protocol_Isis_Interface_InterfaceId { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) InterfaceId() *NetworkInstance_Protocol_Isis_Interface_InterfaceIdPath { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) InterfaceId() *NetworkInstance_Protocol_Isis_Interface_InterfaceIdAny { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) InterfaceId() *NetworkInstance_Protocol_Isis_Interface_InterfaceIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Isis_Interface) InterfaceRef() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) InterfaceRef() *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -111876,9 +112090,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) InterfaceRef() *NetworkInstanc } } -// InterfaceRef returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) InterfaceRef() *NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) InterfaceRef() *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -111887,9 +112101,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) InterfaceRef() *NetworkInst } } -// LevelAny returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis_Interface) LevelAny() *NetworkInstance_Protocol_Isis_Interface_LevelAny { - return &NetworkInstance_Protocol_Isis_Interface_LevelAny{ +// LevelAny returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "level". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) LevelAny() *NetworkInstance_Protocol_Isis_Interface_LevelPathAny { + return &NetworkInstance_Protocol_Isis_Interface_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": "*"}, @@ -111898,9 +112112,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) LevelAny() *NetworkInstance_Pr } } -// LevelAny returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) LevelAny() *NetworkInstance_Protocol_Isis_Interface_LevelAny { - return &NetworkInstance_Protocol_Isis_Interface_LevelAny{ +// LevelAny returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "level". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) LevelAny() *NetworkInstance_Protocol_Isis_Interface_LevelPathAny { + return &NetworkInstance_Protocol_Isis_Interface_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": "*"}, @@ -111909,9 +112123,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) LevelAny() *NetworkInstance } } -// Level returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis_Interface) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_Interface_Level { - return &NetworkInstance_Protocol_Isis_Interface_Level{ +// Level returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "level". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_Interface_LevelPath { + return &NetworkInstance_Protocol_Isis_Interface_LevelPath{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": LevelNumber}, @@ -111920,9 +112134,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Level(LevelNumber uint8) *Netw } } -// Level returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "level". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_Interface_LevelAny { - return &NetworkInstance_Protocol_Isis_Interface_LevelAny{ +// Level returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "level". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Level(LevelNumber uint8) *NetworkInstance_Protocol_Isis_Interface_LevelPathAny { + return &NetworkInstance_Protocol_Isis_Interface_LevelPathAny{ NodePath: ygot.NewNodePath( []string{"levels", "level"}, map[string]interface{}{"level-number": LevelNumber}, @@ -111931,9 +112145,9 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Level(LevelNumber uint8) *N } } -// Mpls returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Isis_Interface) Mpls() *NetworkInstance_Protocol_Isis_Interface_Mpls { - return &NetworkInstance_Protocol_Isis_Interface_Mpls{ +// Mpls returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Mpls() *NetworkInstance_Protocol_Isis_Interface_MplsPath { + return &NetworkInstance_Protocol_Isis_Interface_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -111942,9 +112156,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Mpls() *NetworkInstance_Protoc } } -// Mpls returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Mpls() *NetworkInstance_Protocol_Isis_Interface_MplsAny { - return &NetworkInstance_Protocol_Isis_Interface_MplsAny{ +// Mpls returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Mpls() *NetworkInstance_Protocol_Isis_Interface_MplsPathAny { + return &NetworkInstance_Protocol_Isis_Interface_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -111953,31 +112167,31 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Mpls() *NetworkInstance_Pro } } -// Passive returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Isis_Interface) Passive() *NetworkInstance_Protocol_Isis_Interface_Passive { - return &NetworkInstance_Protocol_Isis_Interface_Passive{ +// Passive returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Passive() *NetworkInstance_Protocol_Isis_Interface_PassivePath { + return &NetworkInstance_Protocol_Isis_Interface_PassivePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Passive returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Passive() *NetworkInstance_Protocol_Isis_Interface_PassiveAny { - return &NetworkInstance_Protocol_Isis_Interface_PassiveAny{ +// Passive returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Passive() *NetworkInstance_Protocol_Isis_Interface_PassivePathAny { + return &NetworkInstance_Protocol_Isis_Interface_PassivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Timers returns from NetworkInstance_Protocol_Isis_Interface the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_Interface) Timers() *NetworkInstance_Protocol_Isis_Interface_Timers { - return &NetworkInstance_Protocol_Isis_Interface_Timers{ +// Timers returns from NetworkInstance_Protocol_Isis_InterfacePath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_InterfacePath) Timers() *NetworkInstance_Protocol_Isis_Interface_TimersPath { + return &NetworkInstance_Protocol_Isis_Interface_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -111986,9 +112200,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface) Timers() *NetworkInstance_Prot } } -// Timers returns from NetworkInstance_Protocol_Isis_InterfaceAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Timers() *NetworkInstance_Protocol_Isis_Interface_TimersAny { - return &NetworkInstance_Protocol_Isis_Interface_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Isis_InterfacePathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_InterfacePathAny) Timers() *NetworkInstance_Protocol_Isis_Interface_TimersPathAny { + return &NetworkInstance_Protocol_Isis_Interface_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -111997,157 +112211,157 @@ func (n *NetworkInstance_Protocol_Isis_InterfaceAny) Timers() *NetworkInstance_P } } -// NetworkInstance_Protocol_Isis_Interface_Af represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af struct { +// NetworkInstance_Protocol_Isis_Interface_AfPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_AfPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_AfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_AfAny struct { +// NetworkInstance_Protocol_Isis_Interface_AfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_AfPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_AfiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_AfiName struct { +// NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_AfiNameAny struct { +// NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_Enabled struct { +// NetworkInstance_Protocol_Isis_Interface_Af_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Interface_Af_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_SafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_SafiName struct { +// NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Af_SafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Af_SafiNameAny struct { +// NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Protocol_Isis_Interface_Af the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Af) AfiName() *NetworkInstance_Protocol_Isis_Interface_Af_AfiName { - return &NetworkInstance_Protocol_Isis_Interface_Af_AfiName{ +// AfiName returns from NetworkInstance_Protocol_Isis_Interface_AfPath the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPath) AfiName() *NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePath { + return &NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Protocol_Isis_Interface_AfAny the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_AfAny) AfiName() *NetworkInstance_Protocol_Isis_Interface_Af_AfiNameAny { - return &NetworkInstance_Protocol_Isis_Interface_Af_AfiNameAny{ +// AfiName returns from NetworkInstance_Protocol_Isis_Interface_AfPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPathAny) AfiName() *NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Af_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Af the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Af) Enabled() *NetworkInstance_Protocol_Isis_Interface_Af_Enabled { - return &NetworkInstance_Protocol_Isis_Interface_Af_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_AfPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPath) Enabled() *NetworkInstance_Protocol_Isis_Interface_Af_EnabledPath { + return &NetworkInstance_Protocol_Isis_Interface_Af_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_AfAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_AfAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Af_EnabledAny { - return &NetworkInstance_Protocol_Isis_Interface_Af_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_AfPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPathAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Af_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Af_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Interface_Af the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Af) SafiName() *NetworkInstance_Protocol_Isis_Interface_Af_SafiName { - return &NetworkInstance_Protocol_Isis_Interface_Af_SafiName{ +// SafiName returns from NetworkInstance_Protocol_Isis_Interface_AfPath the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPath) SafiName() *NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePath { + return &NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Interface_AfAny the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_AfAny) SafiName() *NetworkInstance_Protocol_Isis_Interface_Af_SafiNameAny { - return &NetworkInstance_Protocol_Isis_Interface_Af_SafiNameAny{ +// SafiName returns from NetworkInstance_Protocol_Isis_Interface_AfPathAny the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_AfPathAny) SafiName() *NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Af_SafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Authentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication struct { +// NetworkInstance_Protocol_Isis_Interface_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_AuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/state/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthentication struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/config/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/state/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/config/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPathAny struct { *ygot.NodePath } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Authentication the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_Authentication) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthentication { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthentication{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPath the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPath) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-authentication"}, + []string{"config", "hello-authentication"}, map[string]interface{}{}, n, ), } } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationAny the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationAny{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_HelloAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-authentication"}, + []string{"config", "hello-authentication"}, map[string]interface{}{}, n, ), } } -// Key returns from NetworkInstance_Protocol_Isis_Interface_Authentication the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Interface_Authentication) Key() *NetworkInstance_Protocol_Isis_Interface_Authentication_Key { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_Key{ +// Key returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPath the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPath) Key() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -112156,9 +112370,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Authentication) Key() *NetworkI } } -// Key returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationAny the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny) Key() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny{ +// Key returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny) Key() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -112167,9 +112381,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny) Key() *Netwo } } -// Keychain returns from NetworkInstance_Protocol_Isis_Interface_Authentication the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Interface_Authentication) Keychain() *NetworkInstance_Protocol_Isis_Interface_Authentication_Keychain { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_Keychain{ +// Keychain returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPath the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPath) Keychain() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPath { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPath{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -112178,9 +112392,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Authentication) Keychain() *Net } } -// Keychain returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationAny the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny) Keychain() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainAny { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainAny{ +// Keychain returns from NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationPathAny) Keychain() *NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPathAny{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -112189,203 +112403,203 @@ func (n *NetworkInstance_Protocol_Isis_Interface_AuthenticationAny) Keychain() * } } -// NetworkInstance_Protocol_Isis_Interface_Authentication_Key represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_Key struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPassword represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPassword struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordAny struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPathAny struct { *ygot.NodePath } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Authentication_Key the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Interface_Authentication_Key) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPassword { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPassword{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPath) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPath { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyAny) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordAny { - return &NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordAny{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Interface_Authentication_KeyPathAny) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Authentication_Key_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Authentication_Keychain represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_Keychain struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainAny struct { +// NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Authentication_KeychainPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Bfd represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Bfd struct { +// NetworkInstance_Protocol_Isis_Interface_BfdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_BfdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_BfdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_BfdAny struct { +// NetworkInstance_Protocol_Isis_Interface_BfdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_BfdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd/state/bfd-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlv struct { +// NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd/config/bfd-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd/state/bfd-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvAny struct { +// NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/bfd/config/bfd-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPathAny struct { *ygot.NodePath } -// BfdTlv returns from NetworkInstance_Protocol_Isis_Interface_Bfd the path struct for its child "bfd-tlv". -func (n *NetworkInstance_Protocol_Isis_Interface_Bfd) BfdTlv() *NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlv { - return &NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlv{ +// BfdTlv returns from NetworkInstance_Protocol_Isis_Interface_BfdPath the path struct for its child "bfd-tlv". +func (n *NetworkInstance_Protocol_Isis_Interface_BfdPath) BfdTlv() *NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPath { + return &NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPath{ NodePath: ygot.NewNodePath( - []string{"state", "bfd-tlv"}, + []string{"config", "bfd-tlv"}, map[string]interface{}{}, n, ), } } -// BfdTlv returns from NetworkInstance_Protocol_Isis_Interface_BfdAny the path struct for its child "bfd-tlv". -func (n *NetworkInstance_Protocol_Isis_Interface_BfdAny) BfdTlv() *NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvAny { - return &NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvAny{ +// BfdTlv returns from NetworkInstance_Protocol_Isis_Interface_BfdPathAny the path struct for its child "bfd-tlv". +func (n *NetworkInstance_Protocol_Isis_Interface_BfdPathAny) BfdTlv() *NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Bfd_BfdTlvPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bfd-tlv"}, + []string{"config", "bfd-tlv"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChanges struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-number YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumber struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-number YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-number YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/adj-number YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFails represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFails struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFails represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-type-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFails struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-type-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-type-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/auth-type-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatches represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/id-field-len-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatches struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/id-field-len-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/id-field-len-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/id-field-len-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFails represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/init-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFails struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/init-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/init-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/init-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/lan-dis-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChanges struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/lan-dis-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/lan-dis-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/lan-dis-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatches represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/max-area-address-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatches struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/max-area-address-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/max-area-address-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/max-area-address-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdj represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/rejected-adj YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdj struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/rejected-adj YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/rejected-adj YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjAny struct { +// NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/circuit-counters/state/rejected-adj YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPathAny struct { *ygot.NodePath } -// AdjChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "adj-changes". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AdjChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChanges { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChanges{ +// AdjChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "adj-changes". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) AdjChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "adj-changes"}, map[string]interface{}{}, @@ -112394,9 +112608,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AdjChanges() * } } -// AdjChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "adj-changes". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AdjChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesAny{ +// AdjChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "adj-changes". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) AdjChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "adj-changes"}, map[string]interface{}{}, @@ -112405,9 +112619,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AdjChanges( } } -// AdjNumber returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "adj-number". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AdjNumber() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumber { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumber{ +// AdjNumber returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "adj-number". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) AdjNumber() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "adj-number"}, map[string]interface{}{}, @@ -112416,9 +112630,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AdjNumber() *N } } -// AdjNumber returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "adj-number". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AdjNumber() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberAny{ +// AdjNumber returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "adj-number". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) AdjNumber() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AdjNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "adj-number"}, map[string]interface{}{}, @@ -112427,9 +112641,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AdjNumber() } } -// AuthFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "auth-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AuthFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFails { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFails{ +// AuthFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "auth-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) AuthFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPath{ NodePath: ygot.NewNodePath( []string{"state", "auth-fails"}, map[string]interface{}{}, @@ -112438,9 +112652,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AuthFails() *N } } -// AuthFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "auth-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AuthFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsAny{ +// AuthFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "auth-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) AuthFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthFailsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auth-fails"}, map[string]interface{}{}, @@ -112449,9 +112663,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AuthFails() } } -// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "auth-type-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AuthTypeFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFails { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFails{ +// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "auth-type-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) AuthTypeFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPath{ NodePath: ygot.NewNodePath( []string{"state", "auth-type-fails"}, map[string]interface{}{}, @@ -112460,9 +112674,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) AuthTypeFails( } } -// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "auth-type-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AuthTypeFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsAny{ +// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "auth-type-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) AuthTypeFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_AuthTypeFailsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auth-type-fails"}, map[string]interface{}{}, @@ -112471,9 +112685,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) AuthTypeFai } } -// IdFieldLenMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "id-field-len-mismatches". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) IdFieldLenMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatches { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatches{ +// IdFieldLenMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "id-field-len-mismatches". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) IdFieldLenMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPath{ NodePath: ygot.NewNodePath( []string{"state", "id-field-len-mismatches"}, map[string]interface{}{}, @@ -112482,9 +112696,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) IdFieldLenMism } } -// IdFieldLenMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "id-field-len-mismatches". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) IdFieldLenMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesAny{ +// IdFieldLenMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "id-field-len-mismatches". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) IdFieldLenMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_IdFieldLenMismatchesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id-field-len-mismatches"}, map[string]interface{}{}, @@ -112493,9 +112707,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) IdFieldLenM } } -// InitFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "init-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) InitFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFails { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFails{ +// InitFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "init-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) InitFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPath{ NodePath: ygot.NewNodePath( []string{"state", "init-fails"}, map[string]interface{}{}, @@ -112504,9 +112718,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) InitFails() *N } } -// InitFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "init-fails". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) InitFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsAny{ +// InitFails returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "init-fails". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) InitFails() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_InitFailsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "init-fails"}, map[string]interface{}{}, @@ -112515,9 +112729,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) InitFails() } } -// LanDisChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "lan-dis-changes". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) LanDisChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChanges { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChanges{ +// LanDisChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "lan-dis-changes". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) LanDisChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "lan-dis-changes"}, map[string]interface{}{}, @@ -112526,9 +112740,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) LanDisChanges( } } -// LanDisChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "lan-dis-changes". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) LanDisChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesAny{ +// LanDisChanges returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "lan-dis-changes". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) LanDisChanges() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_LanDisChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "lan-dis-changes"}, map[string]interface{}{}, @@ -112537,9 +112751,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) LanDisChang } } -// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "max-area-address-mismatches". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatches { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatches{ +// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "max-area-address-mismatches". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPath{ NodePath: ygot.NewNodePath( []string{"state", "max-area-address-mismatches"}, map[string]interface{}{}, @@ -112548,9 +112762,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) MaxAreaAddress } } -// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "max-area-address-mismatches". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesAny{ +// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "max-area-address-mismatches". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_MaxAreaAddressMismatchesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-area-address-mismatches"}, map[string]interface{}{}, @@ -112559,9 +112773,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) MaxAreaAddr } } -// RejectedAdj returns from NetworkInstance_Protocol_Isis_Interface_CircuitCounters the path struct for its child "rejected-adj". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) RejectedAdj() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdj { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdj{ +// RejectedAdj returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath the path struct for its child "rejected-adj". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPath) RejectedAdj() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPath { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPath{ NodePath: ygot.NewNodePath( []string{"state", "rejected-adj"}, map[string]interface{}{}, @@ -112570,9 +112784,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCounters) RejectedAdj() } } -// RejectedAdj returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny the path struct for its child "rejected-adj". -func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) RejectedAdj() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjAny { - return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjAny{ +// RejectedAdj returns from NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny the path struct for its child "rejected-adj". +func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersPathAny) RejectedAdj() *NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPathAny { + return &NetworkInstance_Protocol_Isis_Interface_CircuitCounters_RejectedAdjPathAny{ NodePath: ygot.NewNodePath( []string{"state", "rejected-adj"}, map[string]interface{}{}, @@ -112581,133 +112795,133 @@ func (n *NetworkInstance_Protocol_Isis_Interface_CircuitCountersAny) RejectedAdj } } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRef struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRef) Interface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Interface { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath) Interface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny) Interface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRef) Subinterface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Isis_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Protocol_Isis_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Level represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level struct { +// NetworkInstance_Protocol_Isis_Interface_LevelPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_LevelPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_LevelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_LevelAny struct { +// NetworkInstance_Protocol_Isis_Interface_LevelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_LevelPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Enabled struct { +// NetworkInstance_Protocol_Isis_Interface_Level_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_LevelNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/level-number YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_LevelNumber struct { +// NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/level-number YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/level-number YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/level-number YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Passive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/passive YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Passive struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PassivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/passive YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PassivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PassiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/passive YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PassiveAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PassivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/passive YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PassivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Priority struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/config/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PriorityPathAny struct { *ygot.NodePath } -// AdjacencyAny returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "adjacency". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) AdjacencyAny() *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny{ +// AdjacencyAny returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "adjacency". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) AdjacencyAny() *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"adjacencies", "adjacency"}, map[string]interface{}{"system-id": "*"}, @@ -112716,9 +112930,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) AdjacencyAny() *NetworkI } } -// AdjacencyAny returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "adjacency". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AdjacencyAny() *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny{ +// AdjacencyAny returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "adjacency". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) AdjacencyAny() *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"adjacencies", "adjacency"}, map[string]interface{}{"system-id": "*"}, @@ -112727,9 +112941,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AdjacencyAny() *Netwo } } -// Adjacency returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "adjacency". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Adjacency(SystemId string) *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency{ +// Adjacency returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "adjacency". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Adjacency(SystemId string) *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath{ NodePath: ygot.NewNodePath( []string{"adjacencies", "adjacency"}, map[string]interface{}{"system-id": SystemId}, @@ -112738,9 +112952,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) Adjacency(SystemId strin } } -// Adjacency returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "adjacency". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Adjacency(SystemId string) *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny{ +// Adjacency returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "adjacency". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Adjacency(SystemId string) *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny{ NodePath: ygot.NewNodePath( []string{"adjacencies", "adjacency"}, map[string]interface{}{"system-id": SystemId}, @@ -112749,9 +112963,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Adjacency(SystemId st } } -// AfAny returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAny() *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) AfAny() *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -112760,9 +112974,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAny() *NetworkInstance } } -// AfAny returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAny() *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAny returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) AfAny() *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": "*"}, @@ -112771,9 +112985,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAny() *NetworkInsta } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -112782,9 +112996,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAnySafiName(AfiName oc } } -// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAnySafiName(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAnySafiName returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) AfAnySafiName(AfiName E_OpenconfigIsisTypes_AFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": "*"}, @@ -112793,9 +113007,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAnySafiName(AfiName } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -112804,9 +113018,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) AfAnyAfiName(SafiName oc } } -// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAnyAfiName(SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// AfAnyAfiName returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) AfAnyAfiName(SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": "*", "safi-name": SafiName}, @@ -112815,9 +113029,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) AfAnyAfiName(SafiName } } -// Af returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_Af { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af{ +// Af returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPath{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -112826,9 +113040,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) Af(AfiName oc.E_Openconf } } -// Af returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "af". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Af(AfiName oc.E_OpenconfigIsisTypes_AFI_TYPE, SafiName oc.E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_AfAny{ +// Af returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "af". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Af(AfiName E_OpenconfigIsisTypes_AFI_TYPE, SafiName E_OpenconfigIsisTypes_SAFI_TYPE) *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny{ NodePath: ygot.NewNodePath( []string{"afi-safi", "af"}, map[string]interface{}{"afi-name": AfiName, "safi-name": SafiName}, @@ -112837,31 +113051,31 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Af(AfiName oc.E_Openc } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_Enabled { - return &NetworkInstance_Protocol_Isis_Interface_Level_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_EnabledPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_EnabledAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath{ NodePath: ygot.NewNodePath( []string{"hello-authentication"}, map[string]interface{}{}, @@ -112870,9 +113084,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) HelloAuthentication() *N } } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"hello-authentication"}, map[string]interface{}{}, @@ -112881,31 +113095,31 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) HelloAuthentication() } } -// LevelNumber returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "level-number". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) LevelNumber() *NetworkInstance_Protocol_Isis_Interface_Level_LevelNumber { - return &NetworkInstance_Protocol_Isis_Interface_Level_LevelNumber{ +// LevelNumber returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "level-number". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) LevelNumber() *NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPath{ NodePath: ygot.NewNodePath( - []string{"state", "level-number"}, + []string{"config", "level-number"}, map[string]interface{}{}, n, ), } } -// LevelNumber returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "level-number". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) LevelNumber() *NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberAny{ +// LevelNumber returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "level-number". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) LevelNumber() *NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_LevelNumberPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "level-number"}, + []string{"config", "level-number"}, map[string]interface{}{}, n, ), } } -// PacketCounters returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "packet-counters". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) PacketCounters() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters{ +// PacketCounters returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "packet-counters". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) PacketCounters() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath{ NodePath: ygot.NewNodePath( []string{"packet-counters"}, map[string]interface{}{}, @@ -112914,9 +113128,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) PacketCounters() *Networ } } -// PacketCounters returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "packet-counters". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) PacketCounters() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny{ +// PacketCounters returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "packet-counters". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) PacketCounters() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny{ NodePath: ygot.NewNodePath( []string{"packet-counters"}, map[string]interface{}{}, @@ -112925,53 +113139,53 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) PacketCounters() *Net } } -// Passive returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Passive() *NetworkInstance_Protocol_Isis_Interface_Level_Passive { - return &NetworkInstance_Protocol_Isis_Interface_Level_Passive{ +// Passive returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Passive() *NetworkInstance_Protocol_Isis_Interface_Level_PassivePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PassivePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Passive returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Passive() *NetworkInstance_Protocol_Isis_Interface_Level_PassiveAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PassiveAny{ +// Passive returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Passive() *NetworkInstance_Protocol_Isis_Interface_Level_PassivePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PassivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Priority returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_Priority { - return &NetworkInstance_Protocol_Isis_Interface_Level_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_PriorityPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_PriorityAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Timers returns from NetworkInstance_Protocol_Isis_Interface_Level the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_Interface_Level) Timers() *NetworkInstance_Protocol_Isis_Interface_Level_Timers { - return &NetworkInstance_Protocol_Isis_Interface_Level_Timers{ +// Timers returns from NetworkInstance_Protocol_Isis_Interface_LevelPath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPath) Timers() *NetworkInstance_Protocol_Isis_Interface_Level_TimersPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -112980,9 +113194,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level) Timers() *NetworkInstanc } } -// Timers returns from NetworkInstance_Protocol_Isis_Interface_LevelAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Timers() *NetworkInstance_Protocol_Isis_Interface_Level_TimersAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Isis_Interface_LevelPathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Isis_Interface_LevelPathAny) Timers() *NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -112991,219 +113205,219 @@ func (n *NetworkInstance_Protocol_Isis_Interface_LevelAny) Timers() *NetworkInst } } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency struct { +// NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyState represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyState struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStateAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyType struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypeAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/adjacency-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/area-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddress struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/area-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/area-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/area-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/dis-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/dis-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/dis-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/dis-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/local-extended-circuit-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/local-extended-circuit-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/local-extended-circuit-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/local-extended-circuit-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopology represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopology struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-circuit-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitType struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-circuit-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-circuit-type YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypeAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-circuit-type YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-extended-circuit-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-extended-circuit-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-extended-circuit-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-extended-circuit-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4Address struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv4-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv4-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6Address struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv6-address YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-ipv6-address YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-snpa YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpa struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-snpa YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-snpa YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/neighbor-snpa YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Nlpid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Nlpid struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Priority struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/remaining-hold-time YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTime struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/remaining-hold-time YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/remaining-hold-time YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimeAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/remaining-hold-time YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatus represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-status YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatus struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-status YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-status YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-status YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupport represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-support YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupport struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-support YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-support YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-support YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-suppress YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppress struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-suppress YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-suppress YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/restart-suppress YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Topology represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/topology YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Topology struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/topology YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/topology YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/topology YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/up-time YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTime struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/up-time YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/up-time YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimeAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/adjacencies/adjacency/state/up-time YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePathAny struct { *ygot.NodePath } -// AdjacencyState returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AdjacencyState() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyState { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyState{ +// AdjacencyState returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) AdjacencyState() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePath{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -113212,9 +113426,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AdjacencyState } } -// AdjacencyState returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AdjacencyState() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStateAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStateAny{ +// AdjacencyState returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) AdjacencyState() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -113223,9 +113437,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AdjacencySt } } -// AdjacencyType returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "adjacency-type". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AdjacencyType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyType { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyType{ +// AdjacencyType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "adjacency-type". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) AdjacencyType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePath{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-type"}, map[string]interface{}{}, @@ -113234,9 +113448,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AdjacencyType( } } -// AdjacencyType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "adjacency-type". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AdjacencyType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypeAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypeAny{ +// AdjacencyType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "adjacency-type". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) AdjacencyType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AdjacencyTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-type"}, map[string]interface{}{}, @@ -113245,9 +113459,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AdjacencyTy } } -// AreaAddress returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "area-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AreaAddress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddress { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddress{ +// AreaAddress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "area-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) AreaAddress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "area-address"}, map[string]interface{}{}, @@ -113256,9 +113470,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) AreaAddress() } } -// AreaAddress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "area-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AreaAddress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressAny{ +// AreaAddress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "area-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) AreaAddress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_AreaAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "area-address"}, map[string]interface{}{}, @@ -113267,9 +113481,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) AreaAddress } } -// DisSystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "dis-system-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) DisSystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemId{ +// DisSystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "dis-system-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) DisSystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "dis-system-id"}, map[string]interface{}{}, @@ -113278,9 +113492,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) DisSystemId() } } -// DisSystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "dis-system-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) DisSystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdAny{ +// DisSystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "dis-system-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) DisSystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_DisSystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dis-system-id"}, map[string]interface{}{}, @@ -113289,9 +113503,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) DisSystemId } } -// LocalExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "local-extended-circuit-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) LocalExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitId{ +// LocalExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "local-extended-circuit-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) LocalExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPath{ NodePath: ygot.NewNodePath( []string{"state", "local-extended-circuit-id"}, map[string]interface{}{}, @@ -113300,9 +113514,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) LocalExtendedC } } -// LocalExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "local-extended-circuit-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) LocalExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdAny{ +// LocalExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "local-extended-circuit-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) LocalExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_LocalExtendedCircuitIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-extended-circuit-id"}, map[string]interface{}{}, @@ -113311,9 +113525,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) LocalExtend } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) MultiTopology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopology { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopology{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) MultiTopology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPath{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology"}, map[string]interface{}{}, @@ -113322,9 +113536,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) MultiTopology( } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) MultiTopology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyAny{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) MultiTopology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_MultiTopologyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology"}, map[string]interface{}{}, @@ -113333,9 +113547,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) MultiTopolo } } -// NeighborCircuitType returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "neighbor-circuit-type". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborCircuitType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitType { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitType{ +// NeighborCircuitType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "neighbor-circuit-type". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) NeighborCircuitType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-circuit-type"}, map[string]interface{}{}, @@ -113344,9 +113558,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborCircui } } -// NeighborCircuitType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "neighbor-circuit-type". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborCircuitType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypeAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypeAny{ +// NeighborCircuitType returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "neighbor-circuit-type". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) NeighborCircuitType() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborCircuitTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-circuit-type"}, map[string]interface{}{}, @@ -113355,9 +113569,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborCir } } -// NeighborExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "neighbor-extended-circuit-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitId{ +// NeighborExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "neighbor-extended-circuit-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) NeighborExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-extended-circuit-id"}, map[string]interface{}{}, @@ -113366,9 +113580,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborExtend } } -// NeighborExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "neighbor-extended-circuit-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdAny{ +// NeighborExtendedCircuitId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "neighbor-extended-circuit-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) NeighborExtendedCircuitId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborExtendedCircuitIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-extended-circuit-id"}, map[string]interface{}{}, @@ -113377,9 +113591,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborExt } } -// NeighborIpv4Address returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "neighbor-ipv4-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborIpv4Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4Address { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4Address{ +// NeighborIpv4Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "neighbor-ipv4-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) NeighborIpv4Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-ipv4-address"}, map[string]interface{}{}, @@ -113388,9 +113602,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborIpv4Ad } } -// NeighborIpv4Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "neighbor-ipv4-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborIpv4Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressAny{ +// NeighborIpv4Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "neighbor-ipv4-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) NeighborIpv4Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv4AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-ipv4-address"}, map[string]interface{}{}, @@ -113399,9 +113613,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborIpv } } -// NeighborIpv6Address returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "neighbor-ipv6-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborIpv6Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6Address { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6Address{ +// NeighborIpv6Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "neighbor-ipv6-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) NeighborIpv6Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-ipv6-address"}, map[string]interface{}{}, @@ -113410,9 +113624,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborIpv6Ad } } -// NeighborIpv6Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "neighbor-ipv6-address". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborIpv6Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressAny{ +// NeighborIpv6Address returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "neighbor-ipv6-address". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) NeighborIpv6Address() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborIpv6AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-ipv6-address"}, map[string]interface{}{}, @@ -113421,9 +113635,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborIpv } } -// NeighborSnpa returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "neighbor-snpa". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborSnpa() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpa { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpa{ +// NeighborSnpa returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "neighbor-snpa". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) NeighborSnpa() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-snpa"}, map[string]interface{}{}, @@ -113432,9 +113646,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) NeighborSnpa() } } -// NeighborSnpa returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "neighbor-snpa". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborSnpa() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaAny{ +// NeighborSnpa returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "neighbor-snpa". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) NeighborSnpa() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NeighborSnpaPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-snpa"}, map[string]interface{}{}, @@ -113443,9 +113657,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) NeighborSnp } } -// Nlpid returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Nlpid() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Nlpid { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Nlpid{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) Nlpid() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPath{ NodePath: ygot.NewNodePath( []string{"state", "nlpid"}, map[string]interface{}{}, @@ -113454,9 +113668,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Nlpid() *Netwo } } -// Nlpid returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Nlpid() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidAny{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) Nlpid() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_NlpidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "nlpid"}, map[string]interface{}{}, @@ -113465,9 +113679,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Nlpid() *Ne } } -// Priority returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Priority { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -113476,9 +113690,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Priority() *Ne } } -// Priority returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) Priority() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -113487,9 +113701,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Priority() } } -// RemainingHoldTime returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "remaining-hold-time". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RemainingHoldTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTime { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTime{ +// RemainingHoldTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "remaining-hold-time". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) RemainingHoldTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "remaining-hold-time"}, map[string]interface{}{}, @@ -113498,9 +113712,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RemainingHoldT } } -// RemainingHoldTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "remaining-hold-time". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RemainingHoldTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimeAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimeAny{ +// RemainingHoldTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "remaining-hold-time". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) RemainingHoldTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RemainingHoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remaining-hold-time"}, map[string]interface{}{}, @@ -113509,9 +113723,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RemainingHo } } -// RestartStatus returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "restart-status". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartStatus() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatus { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatus{ +// RestartStatus returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "restart-status". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) RestartStatus() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPath{ NodePath: ygot.NewNodePath( []string{"state", "restart-status"}, map[string]interface{}{}, @@ -113520,9 +113734,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartStatus( } } -// RestartStatus returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "restart-status". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartStatus() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusAny{ +// RestartStatus returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "restart-status". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) RestartStatus() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartStatusPathAny{ NodePath: ygot.NewNodePath( []string{"state", "restart-status"}, map[string]interface{}{}, @@ -113531,9 +113745,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartStat } } -// RestartSupport returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "restart-support". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartSupport() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupport { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupport{ +// RestartSupport returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "restart-support". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) RestartSupport() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPath{ NodePath: ygot.NewNodePath( []string{"state", "restart-support"}, map[string]interface{}{}, @@ -113542,9 +113756,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartSupport } } -// RestartSupport returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "restart-support". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartSupport() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportAny{ +// RestartSupport returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "restart-support". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) RestartSupport() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSupportPathAny{ NodePath: ygot.NewNodePath( []string{"state", "restart-support"}, map[string]interface{}{}, @@ -113553,9 +113767,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartSupp } } -// RestartSuppress returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "restart-suppress". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartSuppress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppress { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppress{ +// RestartSuppress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "restart-suppress". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) RestartSuppress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPath{ NodePath: ygot.NewNodePath( []string{"state", "restart-suppress"}, map[string]interface{}{}, @@ -113564,9 +113778,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) RestartSuppres } } -// RestartSuppress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "restart-suppress". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartSuppress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressAny{ +// RestartSuppress returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "restart-suppress". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) RestartSuppress() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_RestartSuppressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "restart-suppress"}, map[string]interface{}{}, @@ -113575,9 +113789,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) RestartSupp } } -// SystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) SystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) SystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -113586,9 +113800,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) SystemId() *Ne } } -// SystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) SystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) SystemId() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -113597,9 +113811,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) SystemId() } } -// Topology returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Topology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Topology { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_Topology{ +// Topology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) Topology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPath{ NodePath: ygot.NewNodePath( []string{"state", "topology"}, map[string]interface{}{}, @@ -113608,9 +113822,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) Topology() *Ne } } -// Topology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Topology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyAny{ +// Topology returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) Topology() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_TopologyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "topology"}, map[string]interface{}{}, @@ -113619,9 +113833,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) Topology() } } -// UpTime returns from NetworkInstance_Protocol_Isis_Interface_Level_Adjacency the path struct for its child "up-time". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) UpTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTime { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTime{ +// UpTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath the path struct for its child "up-time". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPath) UpTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePath{ NodePath: ygot.NewNodePath( []string{"state", "up-time"}, map[string]interface{}{}, @@ -113630,9 +113844,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency) UpTime() *Netw } } -// UpTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny the path struct for its child "up-time". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) UpTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimeAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimeAny{ +// UpTime returns from NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny the path struct for its child "up-time". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyPathAny) UpTime() *NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Adjacency_UpTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-time"}, map[string]interface{}{}, @@ -113641,147 +113855,147 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AdjacencyAny) UpTime() *N } } -// NetworkInstance_Protocol_Isis_Interface_Level_Af represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af struct { +// NetworkInstance_Protocol_Isis_Interface_Level_AfPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_AfPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_AfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_AfAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiName struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/afi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNameAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/afi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_Enabled struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_Metric struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiName represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiName struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/state/safi-name YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNameAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/config/safi-name YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePathAny struct { *ygot.NodePath } -// AfiName returns from NetworkInstance_Protocol_Isis_Interface_Level_Af the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) AfiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiName { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiName{ +// AfiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPath the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPath) AfiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// AfiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfAny the path struct for its child "afi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) AfiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNameAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNameAny{ +// AfiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny the path struct for its child "afi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny) AfiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_AfiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi-name"}, + []string{"config", "afi-name"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Level_Af the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_Af_Enabled { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPath) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Level_AfAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Isis_Interface_Level_Af the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) Metric() *NetworkInstance_Protocol_Isis_Interface_Level_Af_Metric { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPath) Metric() *NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Isis_Interface_Level_AfAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) Metric() *NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny) Metric() *NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Interface_Level_Af the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) SafiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiName { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiName{ +// SafiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPath the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPath) SafiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// SafiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfAny the path struct for its child "safi-name". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) SafiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNameAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNameAny{ +// SafiName returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny the path struct for its child "safi-name". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny) SafiName() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SafiNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "safi-name"}, + []string{"config", "safi-name"}, map[string]interface{}{}, n, ), } } -// SegmentRouting returns from NetworkInstance_Protocol_Isis_Interface_Level_Af the path struct for its child "segment-routing". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) SegmentRouting() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting{ +// SegmentRouting returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPath the path struct for its child "segment-routing". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPath) SegmentRouting() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -113790,9 +114004,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af) SegmentRouting() *Net } } -// SegmentRouting returns from NetworkInstance_Protocol_Isis_Interface_Level_AfAny the path struct for its child "segment-routing". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) SegmentRouting() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny{ +// SegmentRouting returns from NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny the path struct for its child "segment-routing". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfPathAny) SegmentRouting() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing"}, map[string]interface{}{}, @@ -113801,19 +114015,19 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_AfAny) SegmentRouting() * } } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny struct { *ygot.NodePath } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": "*", "sid-id": "*"}, @@ -113822,9 +114036,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Adjace } } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": "*", "sid-id": "*"}, @@ -113833,9 +114047,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Adj } } -// AdjacencySidAnySidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) AdjacencySidAnySidId(Neighbor string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAnySidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) AdjacencySidAnySidId(Neighbor string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": Neighbor, "sid-id": "*"}, @@ -113844,9 +114058,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Adjace } } -// AdjacencySidAnySidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) AdjacencySidAnySidId(Neighbor string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAnySidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) AdjacencySidAnySidId(Neighbor string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": Neighbor, "sid-id": "*"}, @@ -113855,9 +114069,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Adj } } -// AdjacencySidAnyNeighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) AdjacencySidAnyNeighbor(SidId oc.NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAnyNeighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) AdjacencySidAnyNeighbor(SidId NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": "*", "sid-id": SidId}, @@ -113866,9 +114080,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Adjace } } -// AdjacencySidAnyNeighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) AdjacencySidAnyNeighbor(SidId oc.NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySidAnyNeighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) AdjacencySidAnyNeighbor(SidId NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": "*", "sid-id": SidId}, @@ -113877,9 +114091,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Adj } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) AdjacencySid(Neighbor string, SidId oc.NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) AdjacencySid(Neighbor string, SidId NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": Neighbor, "sid-id": SidId}, @@ -113888,9 +114102,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Adjace } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) AdjacencySid(Neighbor string, SidId oc.NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) AdjacencySid(Neighbor string, SidId NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId_Union) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"neighbor": Neighbor, "sid-id": SidId}, @@ -113899,9 +114113,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Adj } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) PrefixSidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) PrefixSidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"prefix": "*"}, @@ -113910,9 +114124,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Prefix } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"prefix": "*"}, @@ -113921,9 +114135,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Pre } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) PrefixSid(Prefix string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPath) PrefixSid(Prefix string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"prefix": Prefix}, @@ -113932,9 +114146,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting) Prefix } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) PrefixSid(Prefix string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingPathAny) PrefixSid(Prefix string) *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"prefix": Prefix}, @@ -113943,69 +114157,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRoutingAny) Pre } } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocal represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/allocated-dynamic-local YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocal struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/allocated-dynamic-local YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/allocated-dynamic-local YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/allocated-dynamic-local YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Group represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/group YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Group struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/group YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/group YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/group YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Neighbor struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligible represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/protection-eligible YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligible struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/protection-eligible YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligibleAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/protection-eligible YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligibleAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/protection-eligible YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/sid-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/sid-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/state/sid-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/adjacency-sids/adjacency-sid/config/sid-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPathAny struct { *ygot.NodePath } -// AllocatedDynamicLocal returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid the path struct for its child "allocated-dynamic-local". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid) AllocatedDynamicLocal() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocal { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocal{ +// AllocatedDynamicLocal returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath the path struct for its child "allocated-dynamic-local". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath) AllocatedDynamicLocal() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPath{ NodePath: ygot.NewNodePath( []string{"state", "allocated-dynamic-local"}, map[string]interface{}{}, @@ -114014,9 +114228,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_Adjacen } } -// AllocatedDynamicLocal returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny the path struct for its child "allocated-dynamic-local". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny) AllocatedDynamicLocal() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalAny{ +// AllocatedDynamicLocal returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny the path struct for its child "allocated-dynamic-local". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny) AllocatedDynamicLocal() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_AllocatedDynamicLocalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "allocated-dynamic-local"}, map[string]interface{}{}, @@ -114025,245 +114239,245 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_Adjacen } } -// Group returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid the path struct for its child "group". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid) Group() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Group { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Group{ +// Group returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath) Group() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPath{ NodePath: ygot.NewNodePath( - []string{"state", "group"}, + []string{"config", "group"}, map[string]interface{}{}, n, ), } } -// Group returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny) Group() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupAny{ +// Group returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny) Group() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_GroupPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "group"}, + []string{"config", "group"}, map[string]interface{}{}, n, ), } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid) Neighbor() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Neighbor { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath) Neighbor() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPath{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor"}, + []string{"config", "neighbor"}, map[string]interface{}{}, n, ), } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny) Neighbor() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny) Neighbor() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_NeighborPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor"}, + []string{"config", "neighbor"}, map[string]interface{}{}, n, ), } } -// ProtectionEligible returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid the path struct for its child "protection-eligible". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid) ProtectionEligible() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligible { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligible{ +// ProtectionEligible returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath the path struct for its child "protection-eligible". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath) ProtectionEligible() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePath{ NodePath: ygot.NewNodePath( - []string{"state", "protection-eligible"}, + []string{"config", "protection-eligible"}, map[string]interface{}{}, n, ), } } -// ProtectionEligible returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny the path struct for its child "protection-eligible". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny) ProtectionEligible() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligibleAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligibleAny{ +// ProtectionEligible returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny the path struct for its child "protection-eligible". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny) ProtectionEligible() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_ProtectionEligiblePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protection-eligible"}, + []string{"config", "protection-eligible"}, map[string]interface{}{}, n, ), } } -// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid the path struct for its child "sid-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidId{ +// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath the path struct for its child "sid-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPath) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "sid-id"}, + []string{"config", "sid-id"}, map[string]interface{}{}, n, ), } } -// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny the path struct for its child "sid-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidAny) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdAny{ +// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny the path struct for its child "sid-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySidPathAny) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_AdjacencySid_SidIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sid-id"}, + []string{"config", "sid-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/label-options YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptions struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/label-options YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/label-options YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/label-options YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_Prefix struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/sid-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidId struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/sid-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/state/sid-id YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/afi-safi/af/segment-routing/prefix-sids/prefix-sid/config/sid-id YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPathAny struct { *ygot.NodePath } -// LabelOptions returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid the path struct for its child "label-options". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid) LabelOptions() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptions { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptions{ +// LabelOptions returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath the path struct for its child "label-options". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath) LabelOptions() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPath{ NodePath: ygot.NewNodePath( - []string{"state", "label-options"}, + []string{"config", "label-options"}, map[string]interface{}{}, n, ), } } -// LabelOptions returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny the path struct for its child "label-options". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny) LabelOptions() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsAny{ +// LabelOptions returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny the path struct for its child "label-options". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny) LabelOptions() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_LabelOptionsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "label-options"}, + []string{"config", "label-options"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid) Prefix() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_Prefix { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath) Prefix() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny) Prefix() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny) Prefix() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid the path struct for its child "sid-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidId { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidId{ +// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath the path struct for its child "sid-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPath) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "sid-id"}, + []string{"config", "sid-id"}, map[string]interface{}{}, n, ), } } -// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny the path struct for its child "sid-id". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidAny) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdAny{ +// SidId returns from NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny the path struct for its child "sid-id". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSidPathAny) SidId() *NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Af_SegmentRouting_PrefixSid_SidIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "sid-id"}, + []string{"config", "sid-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/state/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthentication struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/config/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/state/hello-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/config/hello-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPathAny struct { *ygot.NodePath } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthentication { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthentication{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-authentication"}, + []string{"config", "hello-authentication"}, map[string]interface{}{}, n, ), } } -// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny the path struct for its child "hello-authentication". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationAny{ +// HelloAuthentication returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny the path struct for its child "hello-authentication". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny) HelloAuthentication() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_HelloAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-authentication"}, + []string{"config", "hello-authentication"}, map[string]interface{}{}, n, ), } } -// Key returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication) Key() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key{ +// Key returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath) Key() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -114272,9 +114486,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication) Key( } } -// Key returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny) Key() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny{ +// Key returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny) Key() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -114283,9 +114497,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny) K } } -// Keychain returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication) Keychain() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Keychain { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Keychain{ +// Keychain returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPath) Keychain() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPath{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -114294,9 +114508,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication) Keyc } } -// Keychain returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny) Keychain() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainAny{ +// Keychain returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationPathAny) Keychain() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPathAny{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -114305,71 +114519,71 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthenticationAny) K } } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPassword represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPassword struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPathAny struct { *ygot.NodePath } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPassword { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPassword{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPath) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyAny) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordAny{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeyPathAny) AuthPassword() *NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Key_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Keychain represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_Keychain struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/hello-authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_HelloAuthentication_KeychainPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny struct { *ygot.NodePath } -// Csnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "csnp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Csnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp{ +// Csnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "csnp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Csnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath{ NodePath: ygot.NewNodePath( []string{"csnp"}, map[string]interface{}{}, @@ -114378,9 +114592,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Csnp() *N } } -// Csnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "csnp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Csnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny{ +// Csnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "csnp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Csnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny{ NodePath: ygot.NewNodePath( []string{"csnp"}, map[string]interface{}{}, @@ -114389,9 +114603,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Csnp() } } -// Esh returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "esh". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Esh() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh{ +// Esh returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "esh". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Esh() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath{ NodePath: ygot.NewNodePath( []string{"esh"}, map[string]interface{}{}, @@ -114400,9 +114614,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Esh() *Ne } } -// Esh returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "esh". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Esh() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny{ +// Esh returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "esh". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Esh() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny{ NodePath: ygot.NewNodePath( []string{"esh"}, map[string]interface{}{}, @@ -114411,9 +114625,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Esh() } } -// Iih returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "iih". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Iih() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih{ +// Iih returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "iih". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Iih() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath{ NodePath: ygot.NewNodePath( []string{"iih"}, map[string]interface{}{}, @@ -114422,9 +114636,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Iih() *Ne } } -// Iih returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "iih". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Iih() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny{ +// Iih returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "iih". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Iih() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny{ NodePath: ygot.NewNodePath( []string{"iih"}, map[string]interface{}{}, @@ -114433,9 +114647,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Iih() } } -// Ish returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "ish". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Ish() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish{ +// Ish returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "ish". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Ish() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath{ NodePath: ygot.NewNodePath( []string{"ish"}, map[string]interface{}{}, @@ -114444,9 +114658,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Ish() *Ne } } -// Ish returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "ish". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Ish() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny{ +// Ish returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "ish". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Ish() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny{ NodePath: ygot.NewNodePath( []string{"ish"}, map[string]interface{}{}, @@ -114455,9 +114669,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Ish() } } -// Lsp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Lsp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp{ +// Lsp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Lsp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath{ NodePath: ygot.NewNodePath( []string{"lsp"}, map[string]interface{}{}, @@ -114466,9 +114680,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Lsp() *Ne } } -// Lsp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Lsp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny{ +// Lsp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Lsp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny{ NodePath: ygot.NewNodePath( []string{"lsp"}, map[string]interface{}{}, @@ -114477,9 +114691,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Lsp() } } -// Psnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "psnp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Psnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp{ +// Psnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "psnp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Psnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath{ NodePath: ygot.NewNodePath( []string{"psnp"}, map[string]interface{}{}, @@ -114488,9 +114702,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Psnp() *N } } -// Psnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "psnp". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Psnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny{ +// Psnp returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "psnp". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Psnp() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny{ NodePath: ygot.NewNodePath( []string{"psnp"}, map[string]interface{}{}, @@ -114499,9 +114713,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Psnp() } } -// Unknown returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters the path struct for its child "unknown". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Unknown() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown{ +// Unknown returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath the path struct for its child "unknown". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPath) Unknown() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath{ NodePath: ygot.NewNodePath( []string{"unknown"}, map[string]interface{}{}, @@ -114510,9 +114724,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters) Unknown() } } -// Unknown returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny the path struct for its child "unknown". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Unknown() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny{ +// Unknown returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny the path struct for its child "unknown". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersPathAny) Unknown() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny{ NodePath: ygot.NewNodePath( []string{"unknown"}, map[string]interface{}{}, @@ -114521,69 +114735,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCountersAny) Unknow } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/csnp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114592,9 +114806,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Drop } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114603,9 +114817,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) D } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114614,9 +114828,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Proc } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114625,9 +114839,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) P } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114636,9 +114850,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Rece } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114647,9 +114861,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) R } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -114658,9 +114872,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Retr } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -114669,9 +114883,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) R } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -114680,9 +114894,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp) Sent } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Csnp_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -114691,69 +114905,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_CsnpAny) S } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/esh/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114762,9 +114976,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Dropp } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114773,9 +114987,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Dr } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114784,9 +114998,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Proce } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114795,9 +115009,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Pr } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114806,9 +115020,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Recei } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114817,9 +115031,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Re } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -114828,9 +115042,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Retra } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -114839,9 +115053,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Re } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -114850,9 +115064,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh) Sent( } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Esh_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -114861,69 +115075,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_EshAny) Se } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/iih/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114932,9 +115146,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Dropp } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -114943,9 +115157,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Dr } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114954,9 +115168,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Proce } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -114965,9 +115179,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Pr } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114976,9 +115190,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Recei } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -114987,9 +115201,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Re } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -114998,9 +115212,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Retra } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115009,9 +115223,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Re } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115020,9 +115234,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih) Sent( } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Iih_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115031,69 +115245,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IihAny) Se } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/ish/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115102,9 +115316,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Dropp } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115113,9 +115327,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Dr } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115124,9 +115338,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Proce } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115135,9 +115349,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Pr } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115146,9 +115360,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Recei } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115157,9 +115371,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Re } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115168,9 +115382,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Retra } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115179,9 +115393,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Re } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115190,9 +115404,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish) Sent( } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Ish_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115201,69 +115415,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_IshAny) Se } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/lsp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115272,9 +115486,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Dropp } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115283,9 +115497,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Dr } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115294,9 +115508,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Proce } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115305,9 +115519,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Pr } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115316,9 +115530,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Recei } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115327,9 +115541,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Re } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115338,9 +115552,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Retra } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115349,9 +115563,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Re } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115360,9 +115574,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp) Sent( } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Lsp_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115371,69 +115585,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_LspAny) Se } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/psnp/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115442,9 +115656,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Drop } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115453,9 +115667,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) D } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115464,9 +115678,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Proc } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115475,9 +115689,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) P } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115486,9 +115700,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Rece } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115497,9 +115711,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) R } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115508,9 +115722,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Retr } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115519,9 +115733,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) R } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115530,9 +115744,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp) Sent } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Psnp_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115541,69 +115755,69 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_PsnpAny) S } } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Dropped represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Dropped struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/dropped YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/dropped YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Processed represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Processed struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/processed YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/processed YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Received represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Received struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/received YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/received YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Retransmit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Retransmit struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/retransmit YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/retransmit YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Sent represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Sent struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/sent YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/packet-counters/unknown/state/sent YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPathAny struct { *ygot.NodePath } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Dropped { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Dropped{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPath{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115612,9 +115826,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) D } } -// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny the path struct for its child "dropped". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedAny{ +// Dropped returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny the path struct for its child "dropped". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny) Dropped() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_DroppedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dropped"}, map[string]interface{}{}, @@ -115623,9 +115837,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Processed { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Processed{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPath{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115634,9 +115848,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) P } } -// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny the path struct for its child "processed". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedAny{ +// Processed returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny the path struct for its child "processed". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny) Processed() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ProcessedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "processed"}, map[string]interface{}{}, @@ -115645,9 +115859,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Received { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Received{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115656,9 +115870,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) R } } -// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny the path struct for its child "received". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedAny{ +// Received returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny the path struct for its child "received". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny) Received() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_ReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received"}, map[string]interface{}{}, @@ -115667,9 +115881,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Retransmit { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Retransmit{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPath{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115678,9 +115892,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) R } } -// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny the path struct for its child "retransmit". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitAny{ +// Retransmit returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny the path struct for its child "retransmit". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny) Retransmit() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_RetransmitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retransmit"}, map[string]interface{}{}, @@ -115689,9 +115903,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Sent { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_Sent{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPath) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPath{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115700,9 +115914,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown) S } } -// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny the path struct for its child "sent". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentAny{ +// Sent returns from NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny the path struct for its child "sent". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownPathAny) Sent() *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_Unknown_SentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent"}, map[string]interface{}{}, @@ -115711,93 +115925,93 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Level_PacketCounters_UnknownAny } } -// NetworkInstance_Protocol_Isis_Interface_Level_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Timers struct { +// NetworkInstance_Protocol_Isis_Interface_Level_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_TimersAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloInterval struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/state/hello-multiplier YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplier struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/config/hello-multiplier YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/state/hello-multiplier YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierAny struct { +// NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/levels/level/timers/config/hello-multiplier YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPathAny struct { *ygot.NodePath } -// HelloInterval returns from NetworkInstance_Protocol_Isis_Interface_Level_Timers the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Timers) HelloInterval() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloInterval { - return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloInterval{ +// HelloInterval returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersPath) HelloInterval() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersAny) HelloInterval() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny) HelloInterval() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloMultiplier returns from NetworkInstance_Protocol_Isis_Interface_Level_Timers the path struct for its child "hello-multiplier". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_Timers) HelloMultiplier() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplier { - return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplier{ +// HelloMultiplier returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersPath the path struct for its child "hello-multiplier". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersPath) HelloMultiplier() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPath { + return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-multiplier"}, + []string{"config", "hello-multiplier"}, map[string]interface{}{}, n, ), } } -// HelloMultiplier returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersAny the path struct for its child "hello-multiplier". -func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersAny) HelloMultiplier() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierAny { - return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierAny{ +// HelloMultiplier returns from NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny the path struct for its child "hello-multiplier". +func (n *NetworkInstance_Protocol_Isis_Interface_Level_TimersPathAny) HelloMultiplier() *NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Level_Timers_HelloMultiplierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-multiplier"}, + []string{"config", "hello-multiplier"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Mpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls struct { +// NetworkInstance_Protocol_Isis_Interface_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_MplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_MplsAny struct { +// NetworkInstance_Protocol_Isis_Interface_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_MplsPathAny struct { *ygot.NodePath } -// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Interface_Mpls the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Isis_Interface_Mpls) IgpLdpSync() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync{ +// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Interface_MplsPath the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Isis_Interface_MplsPath) IgpLdpSync() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -115806,9 +116020,9 @@ func (n *NetworkInstance_Protocol_Isis_Interface_Mpls) IgpLdpSync() *NetworkInst } } -// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Interface_MplsAny the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Isis_Interface_MplsAny) IgpLdpSync() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny{ +// IgpLdpSync returns from NetworkInstance_Protocol_Isis_Interface_MplsPathAny the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Isis_Interface_MplsPathAny) IgpLdpSync() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -115817,207 +116031,207 @@ func (n *NetworkInstance_Protocol_Isis_Interface_MplsAny) IgpLdpSync() *NetworkI } } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_Enabled struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelay struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny struct { +// NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync) Enabled() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_Enabled { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath) Enabled() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPath { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledAny { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny) Enabled() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelay { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelay{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPath) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncAny) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny { - return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSyncPathAny) PostSessionUpDelay() *NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Interface_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Timers struct { +// NetworkInstance_Protocol_Isis_Interface_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_TimersAny struct { +// NetworkInstance_Protocol_Isis_Interface_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Timers_CsnpInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/state/csnp-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Timers_CsnpInterval struct { +// NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/config/csnp-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/state/csnp-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalAny struct { +// NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/config/csnp-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/state/lsp-pacing-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingInterval struct { +// NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/config/lsp-pacing-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/state/lsp-pacing-interval YANG schema element. -type NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalAny struct { +// NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/interfaces/interface/timers/config/lsp-pacing-interval YANG schema element. +type NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPathAny struct { *ygot.NodePath } -// CsnpInterval returns from NetworkInstance_Protocol_Isis_Interface_Timers the path struct for its child "csnp-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_Timers) CsnpInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_CsnpInterval { - return &NetworkInstance_Protocol_Isis_Interface_Timers_CsnpInterval{ +// CsnpInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersPath the path struct for its child "csnp-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_TimersPath) CsnpInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPath { + return &NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "csnp-interval"}, + []string{"config", "csnp-interval"}, map[string]interface{}{}, n, ), } } -// CsnpInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersAny the path struct for its child "csnp-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_TimersAny) CsnpInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalAny { - return &NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalAny{ +// CsnpInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersPathAny the path struct for its child "csnp-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_TimersPathAny) CsnpInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Timers_CsnpIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "csnp-interval"}, + []string{"config", "csnp-interval"}, map[string]interface{}{}, n, ), } } -// LspPacingInterval returns from NetworkInstance_Protocol_Isis_Interface_Timers the path struct for its child "lsp-pacing-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_Timers) LspPacingInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingInterval { - return &NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingInterval{ +// LspPacingInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersPath the path struct for its child "lsp-pacing-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_TimersPath) LspPacingInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPath { + return &NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-pacing-interval"}, + []string{"config", "lsp-pacing-interval"}, map[string]interface{}{}, n, ), } } -// LspPacingInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersAny the path struct for its child "lsp-pacing-interval". -func (n *NetworkInstance_Protocol_Isis_Interface_TimersAny) LspPacingInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalAny { - return &NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalAny{ +// LspPacingInterval returns from NetworkInstance_Protocol_Isis_Interface_TimersPathAny the path struct for its child "lsp-pacing-interval". +func (n *NetworkInstance_Protocol_Isis_Interface_TimersPathAny) LspPacingInterval() *NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPathAny { + return &NetworkInstance_Protocol_Isis_Interface_Timers_LspPacingIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-pacing-interval"}, + []string{"config", "lsp-pacing-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Level represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level YANG schema element. -type NetworkInstance_Protocol_Isis_Level struct { +// NetworkInstance_Protocol_Isis_LevelPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level YANG schema element. +type NetworkInstance_Protocol_Isis_LevelPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_LevelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level YANG schema element. -type NetworkInstance_Protocol_Isis_LevelAny struct { +// NetworkInstance_Protocol_Isis_LevelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level YANG schema element. +type NetworkInstance_Protocol_Isis_LevelPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_AuthenticationCheck represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/authentication-check YANG schema element. -type NetworkInstance_Protocol_Isis_Level_AuthenticationCheck struct { +// NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/authentication-check YANG schema element. +type NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_AuthenticationCheckAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/authentication-check YANG schema element. -type NetworkInstance_Protocol_Isis_Level_AuthenticationCheckAny struct { +// NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/authentication-check YANG schema element. +type NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Enabled struct { +// NetworkInstance_Protocol_Isis_Level_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Level_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Level_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Level_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Level_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_LevelNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/level-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_LevelNumber struct { +// NetworkInstance_Protocol_Isis_Level_LevelNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/level-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_LevelNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_LevelNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/level-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_LevelNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_LevelNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/level-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_LevelNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_MetricStyle represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/metric-style YANG schema element. -type NetworkInstance_Protocol_Isis_Level_MetricStyle struct { +// NetworkInstance_Protocol_Isis_Level_MetricStylePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/metric-style YANG schema element. +type NetworkInstance_Protocol_Isis_Level_MetricStylePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_MetricStyleAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/state/metric-style YANG schema element. -type NetworkInstance_Protocol_Isis_Level_MetricStyleAny struct { +// NetworkInstance_Protocol_Isis_Level_MetricStylePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/config/metric-style YANG schema element. +type NetworkInstance_Protocol_Isis_Level_MetricStylePathAny struct { *ygot.NodePath } -// Authentication returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_Level) Authentication() *NetworkInstance_Protocol_Isis_Level_Authentication { - return &NetworkInstance_Protocol_Isis_Level_Authentication{ +// Authentication returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_LevelPath) Authentication() *NetworkInstance_Protocol_Isis_Level_AuthenticationPath { + return &NetworkInstance_Protocol_Isis_Level_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -116026,9 +116240,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) Authentication() *NetworkInstance_ } } -// Authentication returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_LevelAny) Authentication() *NetworkInstance_Protocol_Isis_Level_AuthenticationAny { - return &NetworkInstance_Protocol_Isis_Level_AuthenticationAny{ +// Authentication returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) Authentication() *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -116037,75 +116251,75 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) Authentication() *NetworkInstan } } -// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "authentication-check". -func (n *NetworkInstance_Protocol_Isis_Level) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Level_AuthenticationCheck { - return &NetworkInstance_Protocol_Isis_Level_AuthenticationCheck{ +// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "authentication-check". +func (n *NetworkInstance_Protocol_Isis_LevelPath) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPath { + return &NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-check"}, + []string{"config", "authentication-check"}, map[string]interface{}{}, n, ), } } -// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "authentication-check". -func (n *NetworkInstance_Protocol_Isis_LevelAny) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Level_AuthenticationCheckAny { - return &NetworkInstance_Protocol_Isis_Level_AuthenticationCheckAny{ +// AuthenticationCheck returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "authentication-check". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) AuthenticationCheck() *NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPathAny { + return &NetworkInstance_Protocol_Isis_Level_AuthenticationCheckPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-check"}, + []string{"config", "authentication-check"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Level) Enabled() *NetworkInstance_Protocol_Isis_Level_Enabled { - return &NetworkInstance_Protocol_Isis_Level_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_LevelPath) Enabled() *NetworkInstance_Protocol_Isis_Level_EnabledPath { + return &NetworkInstance_Protocol_Isis_Level_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_LevelAny) Enabled() *NetworkInstance_Protocol_Isis_Level_EnabledAny { - return &NetworkInstance_Protocol_Isis_Level_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) Enabled() *NetworkInstance_Protocol_Isis_Level_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Level_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// LevelNumber returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "level-number". -func (n *NetworkInstance_Protocol_Isis_Level) LevelNumber() *NetworkInstance_Protocol_Isis_Level_LevelNumber { - return &NetworkInstance_Protocol_Isis_Level_LevelNumber{ +// LevelNumber returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "level-number". +func (n *NetworkInstance_Protocol_Isis_LevelPath) LevelNumber() *NetworkInstance_Protocol_Isis_Level_LevelNumberPath { + return &NetworkInstance_Protocol_Isis_Level_LevelNumberPath{ NodePath: ygot.NewNodePath( - []string{"state", "level-number"}, + []string{"config", "level-number"}, map[string]interface{}{}, n, ), } } -// LevelNumber returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "level-number". -func (n *NetworkInstance_Protocol_Isis_LevelAny) LevelNumber() *NetworkInstance_Protocol_Isis_Level_LevelNumberAny { - return &NetworkInstance_Protocol_Isis_Level_LevelNumberAny{ +// LevelNumber returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "level-number". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) LevelNumber() *NetworkInstance_Protocol_Isis_Level_LevelNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_LevelNumberPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "level-number"}, + []string{"config", "level-number"}, map[string]interface{}{}, n, ), } } -// LspAny returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_Level) LspAny() *NetworkInstance_Protocol_Isis_Level_LspAny { - return &NetworkInstance_Protocol_Isis_Level_LspAny{ +// LspAny returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_LevelPath) LspAny() *NetworkInstance_Protocol_Isis_Level_LspPathAny { + return &NetworkInstance_Protocol_Isis_Level_LspPathAny{ NodePath: ygot.NewNodePath( []string{"link-state-database", "lsp"}, map[string]interface{}{"lsp-id": "*"}, @@ -116114,9 +116328,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) LspAny() *NetworkInstance_Protocol } } -// LspAny returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_LevelAny) LspAny() *NetworkInstance_Protocol_Isis_Level_LspAny { - return &NetworkInstance_Protocol_Isis_Level_LspAny{ +// LspAny returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) LspAny() *NetworkInstance_Protocol_Isis_Level_LspPathAny { + return &NetworkInstance_Protocol_Isis_Level_LspPathAny{ NodePath: ygot.NewNodePath( []string{"link-state-database", "lsp"}, map[string]interface{}{"lsp-id": "*"}, @@ -116125,9 +116339,9 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) LspAny() *NetworkInstance_Proto } } -// Lsp returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_Level) Lsp(LspId string) *NetworkInstance_Protocol_Isis_Level_Lsp { - return &NetworkInstance_Protocol_Isis_Level_Lsp{ +// Lsp returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_LevelPath) Lsp(LspId string) *NetworkInstance_Protocol_Isis_Level_LspPath { + return &NetworkInstance_Protocol_Isis_Level_LspPath{ NodePath: ygot.NewNodePath( []string{"link-state-database", "lsp"}, map[string]interface{}{"lsp-id": LspId}, @@ -116136,9 +116350,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) Lsp(LspId string) *NetworkInstance } } -// Lsp returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "lsp". -func (n *NetworkInstance_Protocol_Isis_LevelAny) Lsp(LspId string) *NetworkInstance_Protocol_Isis_Level_LspAny { - return &NetworkInstance_Protocol_Isis_Level_LspAny{ +// Lsp returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "lsp". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) Lsp(LspId string) *NetworkInstance_Protocol_Isis_Level_LspPathAny { + return &NetworkInstance_Protocol_Isis_Level_LspPathAny{ NodePath: ygot.NewNodePath( []string{"link-state-database", "lsp"}, map[string]interface{}{"lsp-id": LspId}, @@ -116147,31 +116361,31 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) Lsp(LspId string) *NetworkInsta } } -// MetricStyle returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "metric-style". -func (n *NetworkInstance_Protocol_Isis_Level) MetricStyle() *NetworkInstance_Protocol_Isis_Level_MetricStyle { - return &NetworkInstance_Protocol_Isis_Level_MetricStyle{ +// MetricStyle returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "metric-style". +func (n *NetworkInstance_Protocol_Isis_LevelPath) MetricStyle() *NetworkInstance_Protocol_Isis_Level_MetricStylePath { + return &NetworkInstance_Protocol_Isis_Level_MetricStylePath{ NodePath: ygot.NewNodePath( - []string{"state", "metric-style"}, + []string{"config", "metric-style"}, map[string]interface{}{}, n, ), } } -// MetricStyle returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "metric-style". -func (n *NetworkInstance_Protocol_Isis_LevelAny) MetricStyle() *NetworkInstance_Protocol_Isis_Level_MetricStyleAny { - return &NetworkInstance_Protocol_Isis_Level_MetricStyleAny{ +// MetricStyle returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "metric-style". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) MetricStyle() *NetworkInstance_Protocol_Isis_Level_MetricStylePathAny { + return &NetworkInstance_Protocol_Isis_Level_MetricStylePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric-style"}, + []string{"config", "metric-style"}, map[string]interface{}{}, n, ), } } -// RoutePreference returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "route-preference". -func (n *NetworkInstance_Protocol_Isis_Level) RoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference { - return &NetworkInstance_Protocol_Isis_Level_RoutePreference{ +// RoutePreference returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "route-preference". +func (n *NetworkInstance_Protocol_Isis_LevelPath) RoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreferencePath { + return &NetworkInstance_Protocol_Isis_Level_RoutePreferencePath{ NodePath: ygot.NewNodePath( []string{"route-preference"}, map[string]interface{}{}, @@ -116180,9 +116394,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) RoutePreference() *NetworkInstance } } -// RoutePreference returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "route-preference". -func (n *NetworkInstance_Protocol_Isis_LevelAny) RoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny { - return &NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny{ +// RoutePreference returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "route-preference". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) RoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny { + return &NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny{ NodePath: ygot.NewNodePath( []string{"route-preference"}, map[string]interface{}{}, @@ -116191,9 +116405,9 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) RoutePreference() *NetworkInsta } } -// SystemLevelCounters returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "system-level-counters". -func (n *NetworkInstance_Protocol_Isis_Level) SystemLevelCounters() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters{ +// SystemLevelCounters returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "system-level-counters". +func (n *NetworkInstance_Protocol_Isis_LevelPath) SystemLevelCounters() *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath{ NodePath: ygot.NewNodePath( []string{"system-level-counters"}, map[string]interface{}{}, @@ -116202,9 +116416,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) SystemLevelCounters() *NetworkInst } } -// SystemLevelCounters returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "system-level-counters". -func (n *NetworkInstance_Protocol_Isis_LevelAny) SystemLevelCounters() *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny{ +// SystemLevelCounters returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "system-level-counters". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) SystemLevelCounters() *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny{ NodePath: ygot.NewNodePath( []string{"system-level-counters"}, map[string]interface{}{}, @@ -116213,9 +116427,9 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) SystemLevelCounters() *NetworkI } } -// TrafficEngineering returns from NetworkInstance_Protocol_Isis_Level the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Isis_Level) TrafficEngineering() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering{ +// TrafficEngineering returns from NetworkInstance_Protocol_Isis_LevelPath the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Isis_LevelPath) TrafficEngineering() *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath{ NodePath: ygot.NewNodePath( []string{"traffic-engineering"}, map[string]interface{}{}, @@ -116224,9 +116438,9 @@ func (n *NetworkInstance_Protocol_Isis_Level) TrafficEngineering() *NetworkInsta } } -// TrafficEngineering returns from NetworkInstance_Protocol_Isis_LevelAny the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Isis_LevelAny) TrafficEngineering() *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny{ +// TrafficEngineering returns from NetworkInstance_Protocol_Isis_LevelPathAny the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Isis_LevelPathAny) TrafficEngineering() *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny{ NodePath: ygot.NewNodePath( []string{"traffic-engineering"}, map[string]interface{}{}, @@ -116235,71 +116449,71 @@ func (n *NetworkInstance_Protocol_Isis_LevelAny) TrafficEngineering() *NetworkIn } } -// NetworkInstance_Protocol_Isis_Level_Authentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication struct { +// NetworkInstance_Protocol_Isis_Level_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_AuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/csnp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthentication struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/csnp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/csnp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/csnp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/lsp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthentication struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/lsp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/lsp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/lsp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/psnp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthentication struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/psnp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/state/psnp-authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/config/psnp-authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPathAny struct { *ygot.NodePath } -// CsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_Authentication the path struct for its child "csnp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication) CsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthentication { - return &NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthentication{ +// CsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPath the path struct for its child "csnp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPath) CsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "csnp-authentication"}, + []string{"config", "csnp-authentication"}, map[string]interface{}{}, n, ), } } -// CsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationAny the path struct for its child "csnp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) CsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationAny{ +// CsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny the path struct for its child "csnp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny) CsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_CsnpAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "csnp-authentication"}, + []string{"config", "csnp-authentication"}, map[string]interface{}{}, n, ), } } -// Key returns from NetworkInstance_Protocol_Isis_Level_Authentication the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication) Key() *NetworkInstance_Protocol_Isis_Level_Authentication_Key { - return &NetworkInstance_Protocol_Isis_Level_Authentication_Key{ +// Key returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPath the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPath) Key() *NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -116308,9 +116522,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Authentication) Key() *NetworkInsta } } -// Key returns from NetworkInstance_Protocol_Isis_Level_AuthenticationAny the path struct for its child "key". -func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) Key() *NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny{ +// Key returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny the path struct for its child "key". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny) Key() *NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny{ NodePath: ygot.NewNodePath( []string{"key"}, map[string]interface{}{}, @@ -116319,9 +116533,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) Key() *NetworkIn } } -// Keychain returns from NetworkInstance_Protocol_Isis_Level_Authentication the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication) Keychain() *NetworkInstance_Protocol_Isis_Level_Authentication_Keychain { - return &NetworkInstance_Protocol_Isis_Level_Authentication_Keychain{ +// Keychain returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPath the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPath) Keychain() *NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPath{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -116330,9 +116544,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Authentication) Keychain() *Network } } -// Keychain returns from NetworkInstance_Protocol_Isis_Level_AuthenticationAny the path struct for its child "keychain". -func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) Keychain() *NetworkInstance_Protocol_Isis_Level_Authentication_KeychainAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_KeychainAny{ +// Keychain returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny the path struct for its child "keychain". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny) Keychain() *NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPathAny{ NodePath: ygot.NewNodePath( []string{"keychain"}, map[string]interface{}{}, @@ -116341,235 +116555,235 @@ func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) Keychain() *Netw } } -// LspAuthentication returns from NetworkInstance_Protocol_Isis_Level_Authentication the path struct for its child "lsp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication) LspAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthentication { - return &NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthentication{ +// LspAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPath the path struct for its child "lsp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPath) LspAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-authentication"}, + []string{"config", "lsp-authentication"}, map[string]interface{}{}, n, ), } } -// LspAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationAny the path struct for its child "lsp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) LspAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationAny{ +// LspAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny the path struct for its child "lsp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny) LspAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_LspAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "lsp-authentication"}, + []string{"config", "lsp-authentication"}, map[string]interface{}{}, n, ), } } -// PsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_Authentication the path struct for its child "psnp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication) PsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthentication { - return &NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthentication{ +// PsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPath the path struct for its child "psnp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPath) PsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "psnp-authentication"}, + []string{"config", "psnp-authentication"}, map[string]interface{}{}, n, ), } } -// PsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationAny the path struct for its child "psnp-authentication". -func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationAny) PsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationAny{ +// PsnpAuthentication returns from NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny the path struct for its child "psnp-authentication". +func (n *NetworkInstance_Protocol_Isis_Level_AuthenticationPathAny) PsnpAuthentication() *NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_PsnpAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "psnp-authentication"}, + []string{"config", "psnp-authentication"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Level_Authentication_Key represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_Key struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPassword represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPassword struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key/state/auth-password YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/key/config/auth-password YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPathAny struct { *ygot.NodePath } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Level_Authentication_Key the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication_Key) AuthPassword() *NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPassword { - return &NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPassword{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Level_Authentication_KeyPath) AuthPassword() *NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPath { + return &NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// AuthPassword returns from NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny the path struct for its child "auth-password". -func (n *NetworkInstance_Protocol_Isis_Level_Authentication_KeyAny) AuthPassword() *NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordAny { - return &NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordAny{ +// AuthPassword returns from NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny the path struct for its child "auth-password". +func (n *NetworkInstance_Protocol_Isis_Level_Authentication_KeyPathAny) AuthPassword() *NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPathAny { + return &NetworkInstance_Protocol_Isis_Level_Authentication_Key_AuthPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-password"}, + []string{"config", "auth-password"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Level_Authentication_Keychain represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_Keychain struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Authentication_KeychainAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/keychain YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Authentication_KeychainAny struct { +// NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/authentication/keychain YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Authentication_KeychainPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp struct { +// NetworkInstance_Protocol_Isis_Level_LspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_LspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_LspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_LspAny struct { +// NetworkInstance_Protocol_Isis_Level_LspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_LspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Checksum represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/checksum YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Checksum struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/checksum YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/checksum YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/checksum YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_IdLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/id-length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_IdLength struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/id-length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/id-length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/id-length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_IsType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/is-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_IsType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/is-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_IsTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/is-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_IsTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/is-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_LspId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/lsp-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_LspId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/lsp-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_LspIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/lsp-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_LspIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/lsp-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/maximum-area-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddresses struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/maximum-area-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/maximum-area-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/maximum-area-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_PduLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_PduLength struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_PduType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_PduType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_PduTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_PduTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/pdu-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/remaining-lifetime YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetime struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/remaining-lifetime YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/remaining-lifetime YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/remaining-lifetime YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/sequence-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/sequence-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/sequence-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/sequence-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Version represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Version struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_VersionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_VersionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_VersionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_VersionAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_VersionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_VersionPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Version2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version2 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Version2 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Version2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version2 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Version2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Version2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version2 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Version2Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Version2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/state/version2 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Version2PathAny struct { *ygot.NodePath } -// Checksum returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "checksum". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Checksum() *NetworkInstance_Protocol_Isis_Level_Lsp_Checksum { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Checksum{ +// Checksum returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "checksum". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) Checksum() *NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPath{ NodePath: ygot.NewNodePath( []string{"state", "checksum"}, map[string]interface{}{}, @@ -116578,9 +116792,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Checksum() *NetworkInstance_Pr } } -// Checksum returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "checksum". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Checksum() *NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumAny{ +// Checksum returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "checksum". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) Checksum() *NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_ChecksumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "checksum"}, map[string]interface{}{}, @@ -116589,9 +116803,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Checksum() *NetworkInstance } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -116600,9 +116814,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Flags() *NetworkInstance_Proto } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -116611,9 +116825,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Flags() *NetworkInstance_Pr } } -// IdLength returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "id-length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) IdLength() *NetworkInstance_Protocol_Isis_Level_Lsp_IdLength { - return &NetworkInstance_Protocol_Isis_Level_Lsp_IdLength{ +// IdLength returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "id-length". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) IdLength() *NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "id-length"}, map[string]interface{}{}, @@ -116622,9 +116836,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) IdLength() *NetworkInstance_Pr } } -// IdLength returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "id-length". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) IdLength() *NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthAny{ +// IdLength returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "id-length". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) IdLength() *NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_IdLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id-length"}, map[string]interface{}{}, @@ -116633,9 +116847,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) IdLength() *NetworkInstance } } -// IsType returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "is-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) IsType() *NetworkInstance_Protocol_Isis_Level_Lsp_IsType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_IsType{ +// IsType returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "is-type". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) IsType() *NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePath{ NodePath: ygot.NewNodePath( []string{"state", "is-type"}, map[string]interface{}{}, @@ -116644,9 +116858,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) IsType() *NetworkInstance_Prot } } -// IsType returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "is-type". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) IsType() *NetworkInstance_Protocol_Isis_Level_Lsp_IsTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_IsTypeAny{ +// IsType returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "is-type". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) IsType() *NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_IsTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "is-type"}, map[string]interface{}{}, @@ -116655,9 +116869,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) IsType() *NetworkInstance_P } } -// LspId returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "lsp-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) LspId() *NetworkInstance_Protocol_Isis_Level_Lsp_LspId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_LspId{ +// LspId returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "lsp-id". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) LspId() *NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPath{ NodePath: ygot.NewNodePath( []string{"state", "lsp-id"}, map[string]interface{}{}, @@ -116666,9 +116880,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) LspId() *NetworkInstance_Proto } } -// LspId returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "lsp-id". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) LspId() *NetworkInstance_Protocol_Isis_Level_Lsp_LspIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_LspIdAny{ +// LspId returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "lsp-id". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) LspId() *NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_LspIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "lsp-id"}, map[string]interface{}{}, @@ -116677,9 +116891,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) LspId() *NetworkInstance_Pr } } -// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "maximum-area-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddresses { - return &NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddresses{ +// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "maximum-area-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPath{ NodePath: ygot.NewNodePath( []string{"state", "maximum-area-addresses"}, map[string]interface{}{}, @@ -116688,9 +116902,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) MaximumAreaAddresses() *Networ } } -// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "maximum-area-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesAny{ +// MaximumAreaAddresses returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "maximum-area-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) MaximumAreaAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_MaximumAreaAddressesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "maximum-area-addresses"}, map[string]interface{}{}, @@ -116699,9 +116913,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) MaximumAreaAddresses() *Net } } -// PduLength returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "pdu-length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) PduLength() *NetworkInstance_Protocol_Isis_Level_Lsp_PduLength { - return &NetworkInstance_Protocol_Isis_Level_Lsp_PduLength{ +// PduLength returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "pdu-length". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) PduLength() *NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "pdu-length"}, map[string]interface{}{}, @@ -116710,9 +116924,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) PduLength() *NetworkInstance_P } } -// PduLength returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "pdu-length". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) PduLength() *NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthAny{ +// PduLength returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "pdu-length". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) PduLength() *NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_PduLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pdu-length"}, map[string]interface{}{}, @@ -116721,9 +116935,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) PduLength() *NetworkInstanc } } -// PduType returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "pdu-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) PduType() *NetworkInstance_Protocol_Isis_Level_Lsp_PduType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_PduType{ +// PduType returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "pdu-type". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) PduType() *NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePath{ NodePath: ygot.NewNodePath( []string{"state", "pdu-type"}, map[string]interface{}{}, @@ -116732,9 +116946,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) PduType() *NetworkInstance_Pro } } -// PduType returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "pdu-type". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) PduType() *NetworkInstance_Protocol_Isis_Level_Lsp_PduTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_PduTypeAny{ +// PduType returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "pdu-type". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) PduType() *NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_PduTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "pdu-type"}, map[string]interface{}{}, @@ -116743,9 +116957,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) PduType() *NetworkInstance_ } } -// RemainingLifetime returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "remaining-lifetime". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) RemainingLifetime() *NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetime { - return &NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetime{ +// RemainingLifetime returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "remaining-lifetime". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) RemainingLifetime() *NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePath{ NodePath: ygot.NewNodePath( []string{"state", "remaining-lifetime"}, map[string]interface{}{}, @@ -116754,9 +116968,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) RemainingLifetime() *NetworkIn } } -// RemainingLifetime returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "remaining-lifetime". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) RemainingLifetime() *NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimeAny{ +// RemainingLifetime returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "remaining-lifetime". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) RemainingLifetime() *NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_RemainingLifetimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remaining-lifetime"}, map[string]interface{}{}, @@ -116765,9 +116979,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) RemainingLifetime() *Networ } } -// SequenceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "sequence-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) SequenceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumber{ +// SequenceNumber returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "sequence-number". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) SequenceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "sequence-number"}, map[string]interface{}{}, @@ -116776,9 +116990,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) SequenceNumber() *NetworkInsta } } -// SequenceNumber returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "sequence-number". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) SequenceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberAny{ +// SequenceNumber returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "sequence-number". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) SequenceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_SequenceNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sequence-number"}, map[string]interface{}{}, @@ -116787,9 +117001,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) SequenceNumber() *NetworkIn } } -// TlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "tlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) TlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny{ +// TlvAny returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) TlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"tlvs", "tlv"}, map[string]interface{}{"type": "*"}, @@ -116798,9 +117012,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) TlvAny() *NetworkInstance_Prot } } -// TlvAny returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "tlv". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) TlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny{ +// TlvAny returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) TlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"tlvs", "tlv"}, map[string]interface{}{"type": "*"}, @@ -116809,9 +117023,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) TlvAny() *NetworkInstance_P } } -// Tlv returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "tlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Tlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_TLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv{ +// Tlv returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) Tlv(Type E_OpenconfigIsisLsdbTypes_ISIS_TLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath{ NodePath: ygot.NewNodePath( []string{"tlvs", "tlv"}, map[string]interface{}{"type": Type}, @@ -116820,9 +117034,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Tlv(Type oc.E_OpenconfigIsisLs } } -// Tlv returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "tlv". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Tlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_TLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny{ +// Tlv returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) Tlv(Type E_OpenconfigIsisLsdbTypes_ISIS_TLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"tlvs", "tlv"}, map[string]interface{}{"type": Type}, @@ -116831,9 +117045,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Tlv(Type oc.E_OpenconfigIsi } } -// UndefinedTlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "undefined-tlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) UndefinedTlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny{ +// UndefinedTlvAny returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "undefined-tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) UndefinedTlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-tlvs", "undefined-tlv"}, map[string]interface{}{"type": "*"}, @@ -116842,9 +117056,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) UndefinedTlvAny() *NetworkInst } } -// UndefinedTlvAny returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "undefined-tlv". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) UndefinedTlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny{ +// UndefinedTlvAny returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "undefined-tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) UndefinedTlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-tlvs", "undefined-tlv"}, map[string]interface{}{"type": "*"}, @@ -116853,9 +117067,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) UndefinedTlvAny() *NetworkI } } -// UndefinedTlv returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "undefined-tlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) UndefinedTlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv{ +// UndefinedTlv returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "undefined-tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) UndefinedTlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-tlvs", "undefined-tlv"}, map[string]interface{}{"type": Type}, @@ -116864,9 +117078,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) UndefinedTlv(Type uint8) *Netw } } -// UndefinedTlv returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "undefined-tlv". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) UndefinedTlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny{ +// UndefinedTlv returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "undefined-tlv". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) UndefinedTlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-tlvs", "undefined-tlv"}, map[string]interface{}{"type": Type}, @@ -116875,9 +117089,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) UndefinedTlv(Type uint8) *N } } -// Version returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "version". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Version() *NetworkInstance_Protocol_Isis_Level_Lsp_Version { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Version{ +// Version returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "version". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) Version() *NetworkInstance_Protocol_Isis_Level_Lsp_VersionPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_VersionPath{ NodePath: ygot.NewNodePath( []string{"state", "version"}, map[string]interface{}{}, @@ -116886,9 +117100,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Version() *NetworkInstance_Pro } } -// Version returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "version". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Version() *NetworkInstance_Protocol_Isis_Level_Lsp_VersionAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_VersionAny{ +// Version returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "version". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) Version() *NetworkInstance_Protocol_Isis_Level_Lsp_VersionPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_VersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "version"}, map[string]interface{}{}, @@ -116897,9 +117111,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Version() *NetworkInstance_ } } -// Version2 returns from NetworkInstance_Protocol_Isis_Level_Lsp the path struct for its child "version2". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Version2() *NetworkInstance_Protocol_Isis_Level_Lsp_Version2 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Version2{ +// Version2 returns from NetworkInstance_Protocol_Isis_Level_LspPath the path struct for its child "version2". +func (n *NetworkInstance_Protocol_Isis_Level_LspPath) Version2() *NetworkInstance_Protocol_Isis_Level_Lsp_Version2Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Version2Path{ NodePath: ygot.NewNodePath( []string{"state", "version2"}, map[string]interface{}{}, @@ -116908,9 +117122,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp) Version2() *NetworkInstance_Pr } } -// Version2 returns from NetworkInstance_Protocol_Isis_Level_LspAny the path struct for its child "version2". -func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Version2() *NetworkInstance_Protocol_Isis_Level_Lsp_Version2Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Version2Any{ +// Version2 returns from NetworkInstance_Protocol_Isis_Level_LspPathAny the path struct for its child "version2". +func (n *NetworkInstance_Protocol_Isis_Level_LspPathAny) Version2() *NetworkInstance_Protocol_Isis_Level_Lsp_Version2PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Version2PathAny{ NodePath: ygot.NewNodePath( []string{"state", "version2"}, map[string]interface{}{}, @@ -116919,29 +117133,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_LspAny) Version2() *NetworkInstance } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePathAny struct { *ygot.NodePath } -// AreaAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "area-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) AreaAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress{ +// AreaAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "area-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) AreaAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath{ NodePath: ygot.NewNodePath( []string{"area-address"}, map[string]interface{}{}, @@ -116950,9 +117164,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) AreaAddress() *NetworkInst } } -// AreaAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "area-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) AreaAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny{ +// AreaAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "area-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) AreaAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny{ NodePath: ygot.NewNodePath( []string{"area-address"}, map[string]interface{}{}, @@ -116961,9 +117175,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) AreaAddress() *NetworkI } } -// Authentication returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Authentication() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication{ +// Authentication returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Authentication() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -116972,9 +117186,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Authentication() *NetworkI } } -// Authentication returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "authentication". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Authentication() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny{ +// Authentication returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "authentication". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Authentication() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -116983,9 +117197,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Authentication() *Netwo } } -// CapabilityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) CapabilityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny{ +// CapabilityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) CapabilityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"router-capabilities", "capability"}, map[string]interface{}{"instance-number": "*"}, @@ -116994,9 +117208,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) CapabilityAny() *NetworkIn } } -// CapabilityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) CapabilityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny{ +// CapabilityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) CapabilityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"router-capabilities", "capability"}, map[string]interface{}{"instance-number": "*"}, @@ -117005,9 +117219,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) CapabilityAny() *Networ } } -// Capability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Capability(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability{ +// Capability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Capability(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath{ NodePath: ygot.NewNodePath( []string{"router-capabilities", "capability"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117016,9 +117230,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Capability(InstanceNumber } } -// Capability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Capability(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny{ +// Capability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Capability(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"router-capabilities", "capability"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117027,9 +117241,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Capability(InstanceNumb } } -// ExtendedIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "extended-ipv4-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) ExtendedIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability{ +// ExtendedIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "extended-ipv4-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) ExtendedIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath{ NodePath: ygot.NewNodePath( []string{"extended-ipv4-reachability"}, map[string]interface{}{}, @@ -117038,9 +117252,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) ExtendedIpv4Reachability() } } -// ExtendedIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "extended-ipv4-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) ExtendedIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny{ +// ExtendedIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "extended-ipv4-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) ExtendedIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"extended-ipv4-reachability"}, map[string]interface{}{}, @@ -117049,9 +117263,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) ExtendedIpv4Reachabilit } } -// ExtendedIsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "extended-is-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) ExtendedIsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability{ +// ExtendedIsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "extended-is-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) ExtendedIsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath{ NodePath: ygot.NewNodePath( []string{"extended-is-reachability"}, map[string]interface{}{}, @@ -117060,9 +117274,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) ExtendedIsReachability() * } } -// ExtendedIsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "extended-is-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) ExtendedIsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny{ +// ExtendedIsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "extended-is-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) ExtendedIsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"extended-is-reachability"}, map[string]interface{}{}, @@ -117071,9 +117285,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) ExtendedIsReachability( } } -// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "hostname". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname{ +// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "hostname". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath{ NodePath: ygot.NewNodePath( []string{"hostname"}, map[string]interface{}{}, @@ -117082,9 +117296,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Hostname() *NetworkInstanc } } -// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "hostname". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny{ +// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "hostname". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny{ NodePath: ygot.NewNodePath( []string{"hostname"}, map[string]interface{}{}, @@ -117093,9 +117307,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Hostname() *NetworkInst } } -// InstanceIdAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) InstanceIdAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny{ +// InstanceIdAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) InstanceIdAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"instance-ids", "instance-id"}, map[string]interface{}{"instance-id": "*"}, @@ -117104,9 +117318,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) InstanceIdAny() *NetworkIn } } -// InstanceIdAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) InstanceIdAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny{ +// InstanceIdAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) InstanceIdAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"instance-ids", "instance-id"}, map[string]interface{}{"instance-id": "*"}, @@ -117115,9 +117329,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) InstanceIdAny() *Networ } } -// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) InstanceId(InstanceId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId{ +// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) InstanceId(InstanceId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath{ NodePath: ygot.NewNodePath( []string{"instance-ids", "instance-id"}, map[string]interface{}{"instance-id": InstanceId}, @@ -117126,9 +117340,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) InstanceId(InstanceId uint } } -// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) InstanceId(InstanceId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny{ +// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) InstanceId(InstanceId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"instance-ids", "instance-id"}, map[string]interface{}{"instance-id": InstanceId}, @@ -117137,9 +117351,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) InstanceId(InstanceId u } } -// Ipv4ExternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-external-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4ExternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability{ +// Ipv4ExternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-external-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4ExternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath{ NodePath: ygot.NewNodePath( []string{"ipv4-external-reachability"}, map[string]interface{}{}, @@ -117148,9 +117362,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4ExternalReachability() } } -// Ipv4ExternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-external-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4ExternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny{ +// Ipv4ExternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-external-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4ExternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-external-reachability"}, map[string]interface{}{}, @@ -117159,9 +117373,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4ExternalReachabilit } } -// Ipv4InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-interface-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses{ +// Ipv4InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-interface-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-addresses"}, map[string]interface{}{}, @@ -117170,9 +117384,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4InterfaceAddresses() * } } -// Ipv4InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-interface-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny{ +// Ipv4InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-interface-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-addresses"}, map[string]interface{}{}, @@ -117181,9 +117395,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4InterfaceAddresses( } } -// Ipv4InternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-internal-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4InternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability{ +// Ipv4InternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-internal-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4InternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath{ NodePath: ygot.NewNodePath( []string{"ipv4-internal-reachability"}, map[string]interface{}{}, @@ -117192,9 +117406,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4InternalReachability() } } -// Ipv4InternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-internal-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4InternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny{ +// Ipv4InternalReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-internal-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4InternalReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-internal-reachability"}, map[string]interface{}{}, @@ -117203,9 +117417,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4InternalReachabilit } } -// Ipv4SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny{ +// Ipv4SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-srlgs", "ipv4-srlg"}, map[string]interface{}{"instance-number": "*"}, @@ -117214,9 +117428,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4SrlgAny() *NetworkInst } } -// Ipv4SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny{ +// Ipv4SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-srlgs", "ipv4-srlg"}, map[string]interface{}{"instance-number": "*"}, @@ -117225,9 +117439,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4SrlgAny() *NetworkI } } -// Ipv4Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg{ +// Ipv4Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath{ NodePath: ygot.NewNodePath( []string{"ipv4-srlgs", "ipv4-srlg"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117236,9 +117450,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4Srlg(InstanceNumber ui } } -// Ipv4Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny{ +// Ipv4Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-srlgs", "ipv4-srlg"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117247,9 +117461,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4Srlg(InstanceNumber } } -// Ipv4TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv4-te-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId{ +// Ipv4TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv4-te-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv4TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv4-te-router-id"}, map[string]interface{}{}, @@ -117258,9 +117472,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv4TeRouterId() *NetworkI } } -// Ipv4TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv4-te-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny{ +// Ipv4TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv4-te-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv4TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-te-router-id"}, map[string]interface{}{}, @@ -117269,9 +117483,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv4TeRouterId() *Netwo } } -// Ipv6InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv6-interface-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses{ +// Ipv6InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv6-interface-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv6InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-addresses"}, map[string]interface{}{}, @@ -117280,9 +117494,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6InterfaceAddresses() * } } -// Ipv6InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv6-interface-addresses". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny{ +// Ipv6InterfaceAddresses returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv6-interface-addresses". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv6InterfaceAddresses() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-addresses"}, map[string]interface{}{}, @@ -117291,9 +117505,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6InterfaceAddresses( } } -// Ipv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv6-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability{ +// Ipv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv6-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath{ NodePath: ygot.NewNodePath( []string{"ipv6-reachability"}, map[string]interface{}{}, @@ -117302,9 +117516,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6Reachability() *Networ } } -// Ipv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv6-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny{ +// Ipv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv6-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-reachability"}, map[string]interface{}{}, @@ -117313,9 +117527,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6Reachability() *Net } } -// Ipv6SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv6-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny{ +// Ipv6SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv6-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv6SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-srlgs", "ipv6-srlg"}, map[string]interface{}{"instance-number": "*"}, @@ -117324,9 +117538,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6SrlgAny() *NetworkInst } } -// Ipv6SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv6-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny{ +// Ipv6SrlgAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv6-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv6SrlgAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-srlgs", "ipv6-srlg"}, map[string]interface{}{"instance-number": "*"}, @@ -117335,9 +117549,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6SrlgAny() *NetworkI } } -// Ipv6Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv6-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg{ +// Ipv6Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv6-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv6Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath{ NodePath: ygot.NewNodePath( []string{"ipv6-srlgs", "ipv6-srlg"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117346,9 +117560,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6Srlg(InstanceNumber ui } } -// Ipv6Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv6-srlg". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny{ +// Ipv6Srlg returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv6-srlg". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv6Srlg(InstanceNumber uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-srlgs", "ipv6-srlg"}, map[string]interface{}{"instance-number": InstanceNumber}, @@ -117357,9 +117571,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6Srlg(InstanceNumber } } -// Ipv6TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "ipv6-te-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId{ +// Ipv6TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "ipv6-te-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Ipv6TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv6-te-router-id"}, map[string]interface{}{}, @@ -117368,9 +117582,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Ipv6TeRouterId() *NetworkI } } -// Ipv6TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "ipv6-te-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny{ +// Ipv6TeRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "ipv6-te-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Ipv6TeRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-te-router-id"}, map[string]interface{}{}, @@ -117379,9 +117593,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Ipv6TeRouterId() *Netwo } } -// IsAliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "is-alias-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsAliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId{ +// IsAliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "is-alias-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) IsAliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath{ NodePath: ygot.NewNodePath( []string{"is-alias-id"}, map[string]interface{}{}, @@ -117390,9 +117604,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsAliasId() *NetworkInstan } } -// IsAliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "is-alias-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsAliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny{ +// IsAliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "is-alias-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) IsAliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny{ NodePath: ygot.NewNodePath( []string{"is-alias-id"}, map[string]interface{}{}, @@ -117401,9 +117615,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsAliasId() *NetworkIns } } -// IsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "is-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability{ +// IsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "is-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) IsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath{ NodePath: ygot.NewNodePath( []string{"is-reachability"}, map[string]interface{}{}, @@ -117412,9 +117626,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsReachability() *NetworkI } } -// IsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "is-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny{ +// IsReachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "is-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) IsReachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"is-reachability"}, map[string]interface{}{}, @@ -117423,9 +117637,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsReachability() *Netwo } } -// IsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "isis-neighbor-attribute". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute{ +// IsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "isis-neighbor-attribute". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) IsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath{ NodePath: ygot.NewNodePath( []string{"isis-neighbor-attribute"}, map[string]interface{}{}, @@ -117434,9 +117648,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) IsisNeighborAttribute() *N } } -// IsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "isis-neighbor-attribute". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny{ +// IsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "isis-neighbor-attribute". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) IsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny{ NodePath: ygot.NewNodePath( []string{"isis-neighbor-attribute"}, map[string]interface{}{}, @@ -117445,9 +117659,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) IsisNeighborAttribute() } } -// LspBufferSize returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "lsp-buffer-size". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) LspBufferSize() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize{ +// LspBufferSize returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "lsp-buffer-size". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) LspBufferSize() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath{ NodePath: ygot.NewNodePath( []string{"lsp-buffer-size"}, map[string]interface{}{}, @@ -117456,9 +117670,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) LspBufferSize() *NetworkIn } } -// LspBufferSize returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "lsp-buffer-size". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) LspBufferSize() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny{ +// LspBufferSize returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "lsp-buffer-size". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) LspBufferSize() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny{ NodePath: ygot.NewNodePath( []string{"lsp-buffer-size"}, map[string]interface{}{}, @@ -117467,9 +117681,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) LspBufferSize() *Networ } } -// MtIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "mt-ipv4-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability{ +// MtIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "mt-ipv4-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) MtIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath{ NodePath: ygot.NewNodePath( []string{"mt-ipv4-reachability"}, map[string]interface{}{}, @@ -117478,9 +117692,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIpv4Reachability() *Netw } } -// MtIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "mt-ipv4-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny{ +// MtIpv4Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "mt-ipv4-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) MtIpv4Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"mt-ipv4-reachability"}, map[string]interface{}{}, @@ -117489,9 +117703,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIpv4Reachability() *N } } -// MtIpv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "mt-ipv6-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIpv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability{ +// MtIpv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "mt-ipv6-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) MtIpv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath{ NodePath: ygot.NewNodePath( []string{"mt-ipv6-reachability"}, map[string]interface{}{}, @@ -117500,9 +117714,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIpv6Reachability() *Netw } } -// MtIpv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "mt-ipv6-reachability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIpv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny{ +// MtIpv6Reachability returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "mt-ipv6-reachability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) MtIpv6Reachability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny{ NodePath: ygot.NewNodePath( []string{"mt-ipv6-reachability"}, map[string]interface{}{}, @@ -117511,9 +117725,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIpv6Reachability() *N } } -// MtIsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "mt-isis-neighbor-attribute". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute{ +// MtIsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "mt-isis-neighbor-attribute". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) MtIsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath{ NodePath: ygot.NewNodePath( []string{"mt-isis-neighbor-attribute"}, map[string]interface{}{}, @@ -117522,9 +117736,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIsisNeighborAttribute() } } -// MtIsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "mt-isis-neighbor-attribute". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny{ +// MtIsisNeighborAttribute returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "mt-isis-neighbor-attribute". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) MtIsisNeighborAttribute() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny{ NodePath: ygot.NewNodePath( []string{"mt-isis-neighbor-attribute"}, map[string]interface{}{}, @@ -117533,9 +117747,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIsisNeighborAttribute } } -// MtIsn returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "mt-isn". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIsn() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn{ +// MtIsn returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "mt-isn". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) MtIsn() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath{ NodePath: ygot.NewNodePath( []string{"mt-isn"}, map[string]interface{}{}, @@ -117544,9 +117758,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MtIsn() *NetworkInstance_P } } -// MtIsn returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "mt-isn". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIsn() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny{ +// MtIsn returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "mt-isn". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) MtIsn() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny{ NodePath: ygot.NewNodePath( []string{"mt-isn"}, map[string]interface{}{}, @@ -117555,9 +117769,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MtIsn() *NetworkInstanc } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MultiTopology() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) MultiTopology() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath{ NodePath: ygot.NewNodePath( []string{"multi-topology"}, map[string]interface{}{}, @@ -117566,9 +117780,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) MultiTopology() *NetworkIn } } -// MultiTopology returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "multi-topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MultiTopology() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny{ +// MultiTopology returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "multi-topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) MultiTopology() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny{ NodePath: ygot.NewNodePath( []string{"multi-topology"}, map[string]interface{}{}, @@ -117577,9 +117791,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) MultiTopology() *Networ } } -// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath{ NodePath: ygot.NewNodePath( []string{"nlpid"}, map[string]interface{}{}, @@ -117588,9 +117802,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Nlpid() *NetworkInstance_P } } -// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny{ NodePath: ygot.NewNodePath( []string{"nlpid"}, map[string]interface{}{}, @@ -117599,9 +117813,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Nlpid() *NetworkInstanc } } -// PurgeOi returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "purge-oi". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) PurgeOi() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi{ +// PurgeOi returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "purge-oi". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) PurgeOi() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath{ NodePath: ygot.NewNodePath( []string{"purge-oi"}, map[string]interface{}{}, @@ -117610,9 +117824,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) PurgeOi() *NetworkInstance } } -// PurgeOi returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "purge-oi". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) PurgeOi() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny{ +// PurgeOi returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "purge-oi". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) PurgeOi() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny{ NodePath: ygot.NewNodePath( []string{"purge-oi"}, map[string]interface{}{}, @@ -117621,9 +117835,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) PurgeOi() *NetworkInsta } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -117632,9 +117846,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv) Type() *NetworkInstance_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -117643,29 +117857,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_TlvAny) Type() *NetworkInstance } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/area-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -117674,9 +117888,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress) Address() *Net } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -117685,39 +117899,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AreaAddressAny) Address() * } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKey represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKey struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/authentication-key YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/authentication-key YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/authentication-key YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/crypto-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/crypto-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/crypto-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/authentication/state/crypto-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePathAny struct { *ygot.NodePath } -// AuthenticationKey returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication the path struct for its child "authentication-key". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication) AuthenticationKey() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKey { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKey{ +// AuthenticationKey returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath the path struct for its child "authentication-key". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath) AuthenticationKey() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPath{ NodePath: ygot.NewNodePath( []string{"state", "authentication-key"}, map[string]interface{}{}, @@ -117726,9 +117940,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication) Authenticat } } -// AuthenticationKey returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny the path struct for its child "authentication-key". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny) AuthenticationKey() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyAny{ +// AuthenticationKey returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny the path struct for its child "authentication-key". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny) AuthenticationKey() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_AuthenticationKeyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "authentication-key"}, map[string]interface{}{}, @@ -117737,9 +117951,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny) Authenti } } -// CryptoType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication the path struct for its child "crypto-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication) CryptoType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoType{ +// CryptoType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath the path struct for its child "crypto-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPath) CryptoType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePath{ NodePath: ygot.NewNodePath( []string{"state", "crypto-type"}, map[string]interface{}{}, @@ -117748,9 +117962,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication) CryptoType( } } -// CryptoType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny the path struct for its child "crypto-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny) CryptoType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypeAny{ +// CryptoType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny the path struct for its child "crypto-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationPathAny) CryptoType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Authentication_CryptoTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "crypto-type"}, map[string]interface{}{}, @@ -117759,49 +117973,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_AuthenticationAny) CryptoTy } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -117810,9 +118024,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) Flags() *Networ } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -117821,9 +118035,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) Flags() *Net } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumber{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -117832,9 +118046,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) InstanceNumber( } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberAny{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_InstanceNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -117843,9 +118057,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) InstanceNumb } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -117854,9 +118068,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) RouterId() *Net } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -117865,9 +118079,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) RouterId() * } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -117876,9 +118090,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) SubtlvAny() *Ne } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -117887,9 +118101,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) SubtlvAny() } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -117898,9 +118112,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) Subtlv(Type oc. } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -117909,9 +118123,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) Subtlv(Type } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -117920,9 +118134,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) UndefinedSubtlv } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -117931,9 +118145,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) UndefinedSub } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -117942,9 +118156,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability) UndefinedSubtlv } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityPathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -117953,29 +118167,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_CapabilityAny) UndefinedSub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePathAny struct { *ygot.NodePath } -// SegmentRoutingAlgorithms returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv the path struct for its child "segment-routing-algorithms". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) SegmentRoutingAlgorithms() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms{ +// SegmentRoutingAlgorithms returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath the path struct for its child "segment-routing-algorithms". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath) SegmentRoutingAlgorithms() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath{ NodePath: ygot.NewNodePath( []string{"segment-routing-algorithms"}, map[string]interface{}{}, @@ -117984,9 +118198,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) SegmentR } } -// SegmentRoutingAlgorithms returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny the path struct for its child "segment-routing-algorithms". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) SegmentRoutingAlgorithms() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny{ +// SegmentRoutingAlgorithms returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny the path struct for its child "segment-routing-algorithms". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny) SegmentRoutingAlgorithms() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing-algorithms"}, map[string]interface{}{}, @@ -117995,9 +118209,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) Segme } } -// SegmentRoutingCapability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv the path struct for its child "segment-routing-capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) SegmentRoutingCapability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability{ +// SegmentRoutingCapability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath the path struct for its child "segment-routing-capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath) SegmentRoutingCapability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath{ NodePath: ygot.NewNodePath( []string{"segment-routing-capability"}, map[string]interface{}{}, @@ -118006,9 +118220,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) SegmentR } } -// SegmentRoutingCapability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny the path struct for its child "segment-routing-capability". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) SegmentRoutingCapability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny{ +// SegmentRoutingCapability returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny the path struct for its child "segment-routing-capability". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny) SegmentRoutingCapability() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing-capability"}, map[string]interface{}{}, @@ -118017,9 +118231,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) Segme } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118028,9 +118242,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv) Type() * } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118039,29 +118253,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_SubtlvAny) Type( } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_Algorithm struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-algorithms/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_Algorithm { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPath) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -118070,9 +118284,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithmsPathAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingAlgorithms_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -118081,29 +118295,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -118112,9 +118326,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -118123,9 +118337,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// SrgbDescriptorAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability the path struct for its child "srgb-descriptor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability) SrgbDescriptorAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny{ +// SrgbDescriptorAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath the path struct for its child "srgb-descriptor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath) SrgbDescriptorAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny{ NodePath: ygot.NewNodePath( []string{"srgb-descriptors", "srgb-descriptor"}, map[string]interface{}{"range": "*"}, @@ -118134,9 +118348,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// SrgbDescriptorAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny the path struct for its child "srgb-descriptor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny) SrgbDescriptorAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny{ +// SrgbDescriptorAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny the path struct for its child "srgb-descriptor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny) SrgbDescriptorAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny{ NodePath: ygot.NewNodePath( []string{"srgb-descriptors", "srgb-descriptor"}, map[string]interface{}{"range": "*"}, @@ -118145,9 +118359,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// SrgbDescriptor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability the path struct for its child "srgb-descriptor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability) SrgbDescriptor(Range uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor{ +// SrgbDescriptor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath the path struct for its child "srgb-descriptor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPath) SrgbDescriptor(Range uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath{ NodePath: ygot.NewNodePath( []string{"srgb-descriptors", "srgb-descriptor"}, map[string]interface{}{"range": Range}, @@ -118156,9 +118370,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// SrgbDescriptor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny the path struct for its child "srgb-descriptor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityAny) SrgbDescriptor(Range uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny{ +// SrgbDescriptor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny the path struct for its child "srgb-descriptor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapabilityPathAny) SrgbDescriptor(Range uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny{ NodePath: ygot.NewNodePath( []string{"srgb-descriptors", "srgb-descriptor"}, map[string]interface{}{"range": Range}, @@ -118167,39 +118381,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Label represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/label YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Label struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/label YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/label YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/label YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Range represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/range YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Range struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/range YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/range YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/subtlvs/subtlv/segment-routing-capability/srgb-descriptors/srgb-descriptor/state/range YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePathAny struct { *ygot.NodePath } -// Label returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor the path struct for its child "label". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor) Label() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Label { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Label{ +// Label returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath the path struct for its child "label". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath) Label() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPath{ NodePath: ygot.NewNodePath( []string{"state", "label"}, map[string]interface{}{}, @@ -118208,9 +118422,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// Label returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny the path struct for its child "label". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny) Label() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelAny{ +// Label returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny the path struct for its child "label". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny) Label() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_LabelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "label"}, map[string]interface{}{}, @@ -118219,9 +118433,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// Range returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor the path struct for its child "range". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor) Range() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Range { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_Range{ +// Range returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath the path struct for its child "range". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPath) Range() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePath{ NodePath: ygot.NewNodePath( []string{"state", "range"}, map[string]interface{}{}, @@ -118230,9 +118444,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// Range returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny the path struct for its child "range". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorAny) Range() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangeAny{ +// Range returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny the path struct for its child "range". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptorPathAny) Range() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRoutingCapability_SrgbDescriptor_RangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "range"}, map[string]interface{}{}, @@ -118241,49 +118455,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_Subtlv_SegmentRo } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/router-capabilities/capability/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -118292,9 +118506,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -118303,9 +118517,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvA } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118314,9 +118528,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118325,9 +118539,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvA } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -118336,9 +118550,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv) } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -118347,19 +118561,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Capability_UndefinedSubtlvA } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -118368,9 +118582,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability) P } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -118379,9 +118593,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPath) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -118390,9 +118604,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability) P } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityPathAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -118401,59 +118615,59 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4ReachabilityAny } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -118462,9 +118676,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -118473,9 +118687,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -118484,9 +118698,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -118495,9 +118709,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBit{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPath{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -118506,9 +118720,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitAny{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -118517,9 +118731,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -118528,9 +118742,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -118539,9 +118753,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -118550,9 +118764,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -118561,9 +118775,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -118572,9 +118786,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -118583,9 +118797,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -118594,9 +118808,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -118605,9 +118819,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -118616,9 +118830,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -118627,29 +118841,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -118658,9 +118872,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -118669,9 +118883,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -118680,9 +118894,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -118691,9 +118905,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -118702,9 +118916,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -118713,9 +118927,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -118724,9 +118938,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -118735,9 +118949,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -118746,9 +118960,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -118757,9 +118971,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -118768,9 +118982,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -118779,9 +118993,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -118790,9 +119004,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -118801,9 +119015,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118812,9 +119026,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118823,39 +119037,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -118864,9 +119078,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -118875,9 +119089,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118886,9 +119100,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_FlagsPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118897,39 +119111,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -118938,9 +119152,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -118949,9 +119163,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118960,9 +119174,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -118971,39 +119185,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -119012,9 +119226,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -119023,9 +119237,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -119034,9 +119248,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -119045,49 +119259,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -119096,9 +119310,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -119107,9 +119321,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -119118,9 +119332,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -119129,9 +119343,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -119140,9 +119354,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -119151,29 +119365,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny struct { *ygot.NodePath } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPath) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -119182,9 +119396,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_TagPathAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -119193,29 +119407,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny struct { *ygot.NodePath } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64 the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Path) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -119224,9 +119438,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64Any) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64PathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -119235,49 +119449,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -119286,9 +119500,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -119297,9 +119511,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -119308,9 +119522,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -119319,9 +119533,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -119330,9 +119544,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -119341,19 +119555,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIpv4Reachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny struct { *ygot.NodePath } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -119362,9 +119576,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability) Nei } } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -119373,9 +119587,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny) } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPath) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -119384,9 +119598,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability) Nei } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityPathAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -119395,29 +119609,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachabilityAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPathAny struct { *ygot.NodePath } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -119426,9 +119640,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -119437,9 +119651,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -119448,9 +119662,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -119459,9 +119673,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -119470,9 +119684,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_NeighborPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -119481,39 +119695,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Id represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Id struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPathAny struct { *ygot.NodePath } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Id { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Id{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -119522,9 +119736,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdAny{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -119533,9 +119747,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -119544,9 +119758,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -119555,9 +119769,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -119566,9 +119780,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -119577,9 +119791,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -119588,9 +119802,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -119599,9 +119813,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -119610,9 +119824,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -119621,9 +119835,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -119632,9 +119846,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstanceAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_InstancePathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -119643,29 +119857,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePathAny struct { *ygot.NodePath } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -119674,9 +119888,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -119685,9 +119899,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -119696,9 +119910,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -119707,9 +119921,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -119718,9 +119932,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -119729,9 +119943,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -119740,9 +119954,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -119751,9 +119965,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -119762,9 +119976,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -119773,9 +119987,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -119784,9 +119998,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -119795,9 +120009,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -119806,9 +120020,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -119817,9 +120031,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -119828,9 +120042,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -119839,9 +120053,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -119850,9 +120064,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -119861,9 +120075,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -119872,9 +120086,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -119883,9 +120097,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -119894,9 +120108,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -119905,9 +120119,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -119916,9 +120130,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -119927,9 +120141,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -119938,9 +120152,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -119949,9 +120163,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -119960,9 +120174,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -119971,9 +120185,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -119982,9 +120196,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -119993,9 +120207,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -120004,9 +120218,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -120015,9 +120229,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -120026,9 +120240,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -120037,9 +120251,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -120048,9 +120262,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -120059,9 +120273,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -120070,9 +120284,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -120081,9 +120295,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -120092,9 +120306,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -120103,9 +120317,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -120114,9 +120328,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -120125,9 +120339,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -120136,9 +120350,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -120147,9 +120361,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -120158,9 +120372,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -120169,9 +120383,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -120180,9 +120394,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -120191,9 +120405,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -120202,9 +120416,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -120213,9 +120427,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -120224,9 +120438,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -120235,9 +120449,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -120246,9 +120460,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -120257,9 +120471,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -120268,9 +120482,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -120279,9 +120493,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPath) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -120290,9 +120504,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_SubtlvPathAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -120301,49 +120515,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -120352,9 +120566,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -120363,9 +120577,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -120374,9 +120588,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -120385,9 +120599,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -120396,9 +120610,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -120407,29 +120621,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny struct { *ygot.NodePath } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -120438,9 +120652,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroupPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -120449,39 +120663,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -120490,9 +120704,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -120501,9 +120715,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -120512,9 +120726,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -120523,29 +120737,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny struct { *ygot.NodePath } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -120554,9 +120768,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -120565,9 +120779,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -120576,9 +120790,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -120587,9 +120801,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -120598,9 +120812,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -120609,39 +120823,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -120650,9 +120864,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -120661,9 +120875,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -120672,9 +120886,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -120683,29 +120897,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -120714,9 +120928,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -120725,29 +120939,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120756,9 +120970,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120767,29 +120981,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120798,9 +121012,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120809,29 +121023,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120840,9 +121054,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120851,29 +121065,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120882,9 +121096,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -120893,59 +121107,59 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -120954,9 +121168,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -120965,9 +121179,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -120976,9 +121190,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -120987,9 +121201,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -120998,9 +121212,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -121009,9 +121223,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -121020,9 +121234,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -121031,29 +121245,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny struct { *ygot.NodePath } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPath) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -121062,9 +121276,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributesPathAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -121073,39 +121287,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121114,9 +121328,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121125,9 +121339,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -121136,9 +121350,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -121147,29 +121361,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny struct { *ygot.NodePath } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -121178,9 +121392,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -121189,39 +121403,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Local represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Local struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Remote represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Remote struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemoteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemoteAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePathAny struct { *ygot.NodePath } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Local { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Local{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPath{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -121230,9 +121444,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalAny{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_LocalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -121241,9 +121455,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Remote { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_Remote{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPath) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePath{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -121252,9 +121466,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemoteAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemoteAny{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkIdPathAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkId_RemotePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -121263,39 +121477,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121304,9 +121518,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121315,9 +121529,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -121326,9 +121540,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLossPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -121337,29 +121551,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny struct { *ygot.NodePath } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121368,9 +121582,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypeAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121379,29 +121593,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121410,9 +121624,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121421,29 +121635,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121452,9 +121666,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121463,49 +121677,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121514,9 +121728,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -121525,9 +121739,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -121536,9 +121750,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -121547,9 +121761,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -121558,9 +121772,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -121569,29 +121783,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121600,9 +121814,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121611,39 +121825,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Priority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121652,9 +121866,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121663,9 +121877,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Priority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPath) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -121674,9 +121888,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -121685,29 +121899,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -121716,9 +121930,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -121727,39 +121941,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny struct { *ygot.NodePath } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -121768,9 +121982,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -121779,9 +121993,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121790,9 +122004,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121801,39 +122015,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121842,9 +122056,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -121853,9 +122067,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121864,9 +122078,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121875,49 +122089,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/extended-is-reachability/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -121926,9 +122140,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -121937,9 +122151,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121948,9 +122162,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -121959,9 +122173,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -121970,9 +122184,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neighbor_Instance_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -121981,29 +122195,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_ExtendedIsReachability_Neig } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_Hostname represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname/state/hostname YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_Hostname struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname/state/hostname YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname/state/hostname YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnameAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/hostname/state/hostname YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePathAny struct { *ygot.NodePath } -// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname the path struct for its child "hostname". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_Hostname { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_Hostname{ +// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath the path struct for its child "hostname". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePath) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePath{ NodePath: ygot.NewNodePath( []string{"state", "hostname"}, map[string]interface{}{}, @@ -122012,9 +122226,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname) Hostname() *Netwo } } -// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny the path struct for its child "hostname". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnameAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnameAny{ +// Hostname returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny the path struct for its child "hostname". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnamePathAny) Hostname() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Hostname_HostnamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "hostname"}, map[string]interface{}{}, @@ -122023,39 +122237,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_HostnameAny) Hostname() *Ne } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/instance-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/instance-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/instance-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/instance-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/topology-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/topology-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/topology-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/instance-ids/instance-id/state/topology-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPathAny struct { *ygot.NodePath } -// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId) InstanceId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceId{ +// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath) InstanceId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -122064,9 +122278,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId) InstanceId() *N } } -// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny the path struct for its child "instance-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny) InstanceId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdAny{ +// InstanceId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny the path struct for its child "instance-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny) InstanceId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_InstanceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-id"}, map[string]interface{}{}, @@ -122075,9 +122289,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny) InstanceId() } } -// TopologyId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId the path struct for its child "topology-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId) TopologyId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyId{ +// TopologyId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath the path struct for its child "topology-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPath) TopologyId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPath{ NodePath: ygot.NewNodePath( []string{"state", "topology-id"}, map[string]interface{}{}, @@ -122086,9 +122300,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId) TopologyId() *N } } -// TopologyId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny the path struct for its child "topology-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny) TopologyId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdAny{ +// TopologyId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny the path struct for its child "topology-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdPathAny) TopologyId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceId_TopologyIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "topology-id"}, map[string]interface{}{}, @@ -122097,19 +122311,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_InstanceIdAny) TopologyId() } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -122118,9 +122332,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability) P } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -122129,9 +122343,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPath) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -122140,9 +122354,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability) P } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityPathAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -122151,39 +122365,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachabilityAny } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -122192,9 +122406,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -122203,9 +122417,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -122214,9 +122428,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -122225,9 +122439,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -122236,9 +122450,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -122247,9 +122461,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -122258,9 +122472,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -122269,9 +122483,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -122280,9 +122494,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -122291,9 +122505,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -122302,9 +122516,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -122313,39 +122527,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122354,9 +122568,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122365,9 +122579,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122376,9 +122590,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122387,39 +122601,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122428,9 +122642,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122439,9 +122653,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122450,9 +122664,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_DelayMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122461,39 +122675,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122502,9 +122716,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122513,9 +122727,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122524,9 +122738,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ErrorMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122535,39 +122749,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-external-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122576,9 +122790,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122587,9 +122801,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122598,9 +122812,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Prefix_ExpenseMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122609,29 +122823,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4ExternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-interface-addresses/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -122640,9 +122854,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses) Add } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddresses_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -122651,19 +122865,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InterfaceAddressesAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -122672,9 +122886,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability) P } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -122683,9 +122897,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPath) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -122694,9 +122908,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability) P } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityPathAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -122705,39 +122919,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachabilityAny } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -122746,9 +122960,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -122757,9 +122971,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -122768,9 +122982,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -122779,9 +122993,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -122790,9 +123004,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -122801,9 +123015,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -122812,9 +123026,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -122823,9 +123037,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -122834,9 +123048,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -122845,9 +123059,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -122856,9 +123070,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -122867,39 +123081,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122908,9 +123122,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122919,9 +123133,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122930,9 +123144,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -122941,39 +123155,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122982,9 +123196,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -122993,9 +123207,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123004,9 +123218,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_DelayMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123015,39 +123229,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123056,9 +123270,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123067,9 +123281,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123078,9 +123292,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ErrorMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123089,39 +123303,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-internal-reachability/prefixes/prefix/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123130,9 +123344,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123141,9 +123355,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123152,9 +123366,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Prefix_ExpenseMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123163,89 +123377,89 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4InternalReachability_Pr } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/psn-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/psn-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/psn-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/psn-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/srlg-value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValue struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/srlg-value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/srlg-value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/srlg-value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-srlgs/ipv4-srlg/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123254,9 +123468,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Flags() *NetworkI } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -123265,9 +123479,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Flags() *Netwo } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumber{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -123276,9 +123490,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) InstanceNumber() } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberAny{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_InstanceNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -123287,9 +123501,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) InstanceNumber } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddress{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ipv4-interface-address"}, map[string]interface{}{}, @@ -123298,9 +123512,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Ipv4InterfaceAddr } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressAny{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ipv4-interface-address"}, map[string]interface{}{}, @@ -123309,9 +123523,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Ipv4InterfaceA } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddress{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ipv4-neighbor-address"}, map[string]interface{}{}, @@ -123320,9 +123534,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) Ipv4NeighborAddre } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressAny{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_Ipv4NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ipv4-neighbor-address"}, map[string]interface{}{}, @@ -123331,9 +123545,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) Ipv4NeighborAd } } -// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "psn-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumber{ +// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "psn-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "psn-number"}, map[string]interface{}{}, @@ -123342,9 +123556,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) PsnNumber() *Netw } } -// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "psn-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberAny{ +// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "psn-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_PsnNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "psn-number"}, map[string]interface{}{}, @@ -123353,9 +123567,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) PsnNumber() *N } } -// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "srlg-value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValue { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValue{ +// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "srlg-value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePath{ NodePath: ygot.NewNodePath( []string{"state", "srlg-value"}, map[string]interface{}{}, @@ -123364,9 +123578,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) SrlgValue() *Netw } } -// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "srlg-value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValueAny{ +// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "srlg-value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SrlgValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "srlg-value"}, map[string]interface{}{}, @@ -123375,9 +123589,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) SrlgValue() *N } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -123386,9 +123600,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg) SystemId() *Netwo } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4Srlg_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -123397,29 +123611,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4SrlgAny) SystemId() *Ne } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv4-te-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -123428,9 +123642,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId) RouterId() } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -123439,29 +123653,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv4TeRouterIdAny) RouterId } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-interface-addresses/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -123470,9 +123684,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses) Add } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddresses_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -123481,19 +123695,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6InterfaceAddressesAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -123502,9 +123716,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability) PrefixAny } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*"}, @@ -123513,9 +123727,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny) Prefix } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPath) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -123524,9 +123738,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability) Prefix(Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityPathAny) Prefix(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix}, @@ -123535,69 +123749,69 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6ReachabilityAny) Prefix } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123606,9 +123820,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Me } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -123617,9 +123831,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -123628,9 +123842,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Pr } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -123639,9 +123853,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBit{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPath{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -123650,9 +123864,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) SB } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitAny{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -123661,9 +123875,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -123672,9 +123886,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Su } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -123683,9 +123897,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -123694,9 +123908,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Su } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -123705,9 +123919,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -123716,9 +123930,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Un } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -123727,9 +123941,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -123738,9 +123952,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Un } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -123749,9 +123963,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -123760,9 +123974,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) Up } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -123771,9 +123985,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix the path struct for its child "x-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBit{ +// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath the path struct for its child "x-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPath) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPath{ NodePath: ygot.NewNodePath( []string{"state", "x-bit"}, map[string]interface{}{}, @@ -123782,9 +123996,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix) XB } } -// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny the path struct for its child "x-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitAny{ +// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny the path struct for its child "x-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixPathAny) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_XBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "x-bit"}, map[string]interface{}{}, @@ -123793,29 +124007,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_PrefixAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -123824,9 +124038,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -123835,9 +124049,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -123846,9 +124060,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -123857,9 +124071,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -123868,9 +124082,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -123879,9 +124093,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -123890,9 +124104,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -123901,9 +124115,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -123912,9 +124126,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -123923,9 +124137,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -123934,9 +124148,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -123945,9 +124159,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -123956,9 +124170,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -123967,9 +124181,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -123978,9 +124192,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -123989,39 +124203,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124030,9 +124244,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124041,9 +124255,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124052,9 +124266,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_FlagsPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Flags_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124063,39 +124277,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124104,9 +124318,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124115,9 +124329,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124126,9 +124340,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124137,39 +124351,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124178,9 +124392,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124189,9 +124403,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124200,9 +124414,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124211,49 +124425,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -124262,9 +124476,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -124273,9 +124487,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124284,9 +124498,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124295,9 +124509,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -124306,9 +124520,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -124317,29 +124531,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny struct { *ygot.NodePath } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPath) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Path{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -124348,9 +124562,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32Any{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_TagPathAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -124359,29 +124573,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny struct { *ygot.NodePath } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64 the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Path) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Path{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -124390,9 +124604,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64Any) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64PathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -124401,49 +124615,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -124452,9 +124666,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -124463,9 +124677,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124474,9 +124688,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -124485,9 +124699,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -124496,9 +124710,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -124507,89 +124721,89 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Reachability_Prefix_Und } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/instance-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/instance-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/psn-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumber struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/psn-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/psn-number YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/psn-number YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/srlg-value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValue struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/srlg-value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/srlg-value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/srlg-value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-srlgs/ipv6-srlg/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124598,9 +124812,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Flags() *NetworkI } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -124609,9 +124823,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Flags() *Netwo } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumber{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -124620,9 +124834,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) InstanceNumber() } } -// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "instance-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberAny{ +// InstanceNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "instance-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) InstanceNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_InstanceNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "instance-number"}, map[string]interface{}{}, @@ -124631,9 +124845,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) InstanceNumber } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddress{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ipv6-interface-address"}, map[string]interface{}{}, @@ -124642,9 +124856,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Ipv6InterfaceAddr } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressAny{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ipv6-interface-address"}, map[string]interface{}{}, @@ -124653,9 +124867,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Ipv6InterfaceA } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddress{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ipv6-neighbor-address"}, map[string]interface{}{}, @@ -124664,9 +124878,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) Ipv6NeighborAddre } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressAny{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_Ipv6NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ipv6-neighbor-address"}, map[string]interface{}{}, @@ -124675,9 +124889,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) Ipv6NeighborAd } } -// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "psn-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumber { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumber{ +// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "psn-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "psn-number"}, map[string]interface{}{}, @@ -124686,9 +124900,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) PsnNumber() *Netw } } -// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "psn-number". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberAny{ +// PsnNumber returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "psn-number". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) PsnNumber() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_PsnNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "psn-number"}, map[string]interface{}{}, @@ -124697,9 +124911,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) PsnNumber() *N } } -// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "srlg-value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValue { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValue{ +// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "srlg-value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePath{ NodePath: ygot.NewNodePath( []string{"state", "srlg-value"}, map[string]interface{}{}, @@ -124708,9 +124922,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) SrlgValue() *Netw } } -// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "srlg-value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValueAny{ +// SrlgValue returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "srlg-value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) SrlgValue() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SrlgValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "srlg-value"}, map[string]interface{}{}, @@ -124719,9 +124933,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) SrlgValue() *N } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -124730,9 +124944,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg) SystemId() *Netwo } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6Srlg_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -124741,29 +124955,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6SrlgAny) SystemId() *Ne } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/ipv6-te-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124772,9 +124986,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId) RouterId() } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -124783,29 +124997,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Ipv6TeRouterIdAny) RouterId } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id/state/alias-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id/state/alias-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id/state/alias-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-alias-id/state/alias-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPathAny struct { *ygot.NodePath } -// AliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId the path struct for its child "alias-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId) AliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasId{ +// AliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath the path struct for its child "alias-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPath) AliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPath{ NodePath: ygot.NewNodePath( []string{"state", "alias-id"}, map[string]interface{}{}, @@ -124814,9 +125028,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId) AliasId() *Netwo } } -// AliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny the path struct for its child "alias-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny) AliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdAny{ +// AliasId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny the path struct for its child "alias-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdPathAny) AliasId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasId_AliasIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "alias-id"}, map[string]interface{}{}, @@ -124825,19 +125039,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsAliasIdAny) AliasId() *Ne } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny struct { *ygot.NodePath } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -124846,9 +125060,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability) NeighborAny } } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -124857,9 +125071,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny) Neighbor } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPath) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -124868,9 +125082,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability) Neighbor(Sy } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityPathAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -124879,29 +125093,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachabilityAny) Neighbor } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPathAny struct { *ygot.NodePath } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -124910,9 +125124,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) De } } -// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny the path struct for its child "default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny{ +// DefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny the path struct for its child "default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny) DefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"default-metric"}, map[string]interface{}{}, @@ -124921,9 +125135,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -124932,9 +125146,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) De } } -// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny the path struct for its child "delay-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny{ +// DelayMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny the path struct for its child "delay-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny) DelayMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny{ NodePath: ygot.NewNodePath( []string{"delay-metric"}, map[string]interface{}{}, @@ -124943,9 +125157,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -124954,9 +125168,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) Er } } -// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny the path struct for its child "error-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny{ +// ErrorMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny the path struct for its child "error-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny) ErrorMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny{ NodePath: ygot.NewNodePath( []string{"error-metric"}, map[string]interface{}{}, @@ -124965,9 +125179,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -124976,9 +125190,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) Ex } } -// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny the path struct for its child "expense-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny{ +// ExpenseMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny the path struct for its child "expense-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny) ExpenseMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny{ NodePath: ygot.NewNodePath( []string{"expense-metric"}, map[string]interface{}{}, @@ -124987,9 +125201,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -124998,9 +125212,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor) Sy } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -125009,39 +125223,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_NeighborAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125050,9 +125264,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Def } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125061,9 +125275,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Def } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125072,9 +125286,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Def } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125083,39 +125297,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Def } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/delay-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125124,9 +125338,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Del } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125135,9 +125349,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Del } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125146,9 +125360,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Del } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_DelayMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125157,39 +125371,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Del } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/error-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125198,9 +125412,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Err } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125209,9 +125423,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Err } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125220,9 +125434,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Err } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ErrorMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125231,39 +125445,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Err } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/is-reachability/neighbors/neighbor/expense-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125272,9 +125486,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Exp } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -125283,9 +125497,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Exp } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125294,9 +125508,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Exp } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_ExpenseMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125305,19 +125519,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsReachability_Neighbor_Exp } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny struct { *ygot.NodePath } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -125326,9 +125540,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute) Neig } } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": "*"}, @@ -125337,9 +125551,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny) N } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePath) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -125348,9 +125562,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute) Neig } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributePathAny) Neighbor(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"system-id": SystemId}, @@ -125359,29 +125573,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttributeAny) N } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPathAny struct { *ygot.NodePath } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -125390,9 +125604,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -125401,9 +125615,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -125412,9 +125626,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -125423,9 +125637,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -125434,9 +125648,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_NeighborPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -125445,39 +125659,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Id represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Id struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPathAny struct { *ygot.NodePath } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Id { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Id{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -125486,9 +125700,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdAny{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -125497,9 +125711,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125508,9 +125722,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -125519,9 +125733,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -125530,9 +125744,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -125541,9 +125755,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -125552,9 +125766,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -125563,9 +125777,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -125574,9 +125788,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -125585,9 +125799,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -125596,9 +125810,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstanceAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_InstancePathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -125607,29 +125821,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny struct { *ygot.NodePath } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -125638,9 +125852,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -125649,9 +125863,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -125660,9 +125874,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -125671,9 +125885,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -125682,9 +125896,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -125693,9 +125907,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -125704,9 +125918,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -125715,9 +125929,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -125726,9 +125940,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -125737,9 +125951,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -125748,9 +125962,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -125759,9 +125973,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -125770,9 +125984,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -125781,9 +125995,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -125792,9 +126006,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -125803,9 +126017,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -125814,9 +126028,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -125825,9 +126039,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -125836,9 +126050,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -125847,9 +126061,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -125858,9 +126072,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -125869,9 +126083,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -125880,9 +126094,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -125891,9 +126105,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -125902,9 +126116,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -125913,9 +126127,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -125924,9 +126138,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -125935,9 +126149,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -125946,9 +126160,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -125957,9 +126171,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -125968,9 +126182,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -125979,9 +126193,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -125990,9 +126204,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -126001,9 +126215,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -126012,9 +126226,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -126023,9 +126237,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -126034,9 +126248,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -126045,9 +126259,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -126056,9 +126270,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -126067,9 +126281,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -126078,9 +126292,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -126089,9 +126303,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -126100,9 +126314,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -126111,9 +126325,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -126122,9 +126336,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -126133,9 +126347,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -126144,9 +126358,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -126155,9 +126369,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -126166,9 +126380,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -126177,9 +126391,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -126188,9 +126402,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -126199,9 +126413,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -126210,9 +126424,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -126221,9 +126435,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -126232,9 +126446,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -126243,9 +126457,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPath) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -126254,9 +126468,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -126265,49 +126479,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -126316,9 +126530,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -126327,9 +126541,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -126338,9 +126552,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -126349,9 +126563,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -126360,9 +126574,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -126371,29 +126585,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny struct { *ygot.NodePath } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -126402,9 +126616,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -126413,39 +126627,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -126454,9 +126668,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -126465,9 +126679,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -126476,9 +126690,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -126487,29 +126701,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny struct { *ygot.NodePath } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -126518,9 +126732,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -126529,9 +126743,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -126540,9 +126754,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -126551,9 +126765,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -126562,9 +126776,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -126573,39 +126787,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -126614,9 +126828,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -126625,9 +126839,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -126636,9 +126850,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -126647,29 +126861,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -126678,9 +126892,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -126689,29 +126903,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126720,9 +126934,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126731,29 +126945,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126762,9 +126976,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126773,29 +126987,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126804,9 +127018,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126815,29 +127029,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126846,9 +127060,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -126857,59 +127071,59 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -126918,9 +127132,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -126929,9 +127143,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -126940,9 +127154,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -126951,9 +127165,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -126962,9 +127176,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -126973,9 +127187,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -126984,9 +127198,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -126995,29 +127209,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny struct { *ygot.NodePath } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -127026,9 +127240,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -127037,39 +127251,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127078,9 +127292,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127089,9 +127303,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -127100,9 +127314,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -127111,29 +127325,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny struct { *ygot.NodePath } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -127142,9 +127356,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -127153,39 +127367,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny struct { *ygot.NodePath } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -127194,9 +127408,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -127205,9 +127419,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -127216,9 +127430,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -127227,39 +127441,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127268,9 +127482,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127279,9 +127493,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -127290,9 +127504,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -127301,29 +127515,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny struct { *ygot.NodePath } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127332,9 +127546,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127343,29 +127557,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127374,9 +127588,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127385,29 +127599,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127416,9 +127630,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127427,49 +127641,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127478,9 +127692,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -127489,9 +127703,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -127500,9 +127714,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -127511,9 +127725,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -127522,9 +127736,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -127533,29 +127747,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127564,9 +127778,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127575,39 +127789,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127616,9 +127830,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127627,9 +127841,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -127638,9 +127852,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -127649,29 +127863,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -127680,9 +127894,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -127691,39 +127905,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny struct { *ygot.NodePath } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -127732,9 +127946,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -127743,9 +127957,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127754,9 +127968,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127765,39 +127979,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127806,9 +128020,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -127817,9 +128031,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127828,9 +128042,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127839,49 +128053,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -127890,9 +128104,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -127901,9 +128115,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127912,9 +128126,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -127923,9 +128137,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -127934,9 +128148,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -127945,29 +128159,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_IsisNeighborAttribute_Neigh } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_Size represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size/state/size YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_Size struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size/state/size YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size/state/size YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/lsp-buffer-size/state/size YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePathAny struct { *ygot.NodePath } -// Size returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize the path struct for its child "size". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize) Size() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_Size { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_Size{ +// Size returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath the path struct for its child "size". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePath) Size() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePath{ NodePath: ygot.NewNodePath( []string{"state", "size"}, map[string]interface{}{}, @@ -127976,9 +128190,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize) Size() *Netw } } -// Size returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny the path struct for its child "size". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny) Size() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizeAny{ +// Size returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny the path struct for its child "size". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizePathAny) Size() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSize_SizePathAny{ NodePath: ygot.NewNodePath( []string{"state", "size"}, map[string]interface{}{}, @@ -127987,19 +128201,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_LspBufferSizeAny) Size() *N } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": "*", "prefix": "*"}, @@ -128008,9 +128222,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixA } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": "*", "prefix": "*"}, @@ -128019,9 +128233,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) Pref } } -// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": MtId, "prefix": "*"}, @@ -128030,9 +128244,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixA } } -// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": MtId, "prefix": "*"}, @@ -128041,9 +128255,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) Pref } } -// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": "*", "prefix": Prefix}, @@ -128052,9 +128266,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) PrefixA } } -// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": "*", "prefix": Prefix}, @@ -128063,9 +128277,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) Pref } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) Prefix(MtId uint16, Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPath) Prefix(MtId uint16, Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": MtId, "prefix": Prefix}, @@ -128074,9 +128288,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability) Prefix( } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) Prefix(MtId uint16, Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityPathAny) Prefix(MtId uint16, Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"mt-id": MtId, "prefix": Prefix}, @@ -128085,69 +128299,69 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4ReachabilityAny) Pref } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -128156,9 +128370,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -128167,9 +128381,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtId{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -128178,9 +128392,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdAny{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_MtIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -128189,9 +128403,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -128200,9 +128414,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -128211,9 +128425,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBit{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPath{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -128222,9 +128436,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitAny{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -128233,9 +128447,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -128244,9 +128458,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -128255,9 +128469,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -128266,9 +128480,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -128277,9 +128491,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -128288,9 +128502,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -128299,9 +128513,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -128310,9 +128524,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -128321,9 +128535,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -128332,9 +128546,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix) } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -128343,29 +128557,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_PrefixAn } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -128374,9 +128588,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -128385,9 +128599,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -128396,9 +128610,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -128407,9 +128621,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -128418,9 +128632,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -128429,9 +128643,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -128440,9 +128654,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -128451,9 +128665,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -128462,9 +128676,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -128473,9 +128687,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -128484,9 +128698,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -128495,9 +128709,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -128506,9 +128720,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -128517,9 +128731,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128528,9 +128742,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128539,39 +128753,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -128580,9 +128794,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -128591,9 +128805,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128602,9 +128816,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_FlagsPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Flags_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128613,39 +128827,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -128654,9 +128868,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -128665,9 +128879,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128676,9 +128890,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128687,39 +128901,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -128728,9 +128942,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -128739,9 +128953,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128750,9 +128964,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -128761,49 +128975,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -128812,9 +129026,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -128823,9 +129037,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -128834,9 +129048,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -128845,9 +129059,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -128856,9 +129070,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -128867,29 +129081,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny struct { *ygot.NodePath } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPath) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Path{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -128898,9 +129112,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32Any{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_TagPathAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag_Tag32PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -128909,29 +129123,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny struct { *ygot.NodePath } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64 the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Path) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Path{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -128940,9 +129154,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64Any) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64PathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_Subtlv_Tag64_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -128951,49 +129165,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv4-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -129002,9 +129216,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -129013,9 +129227,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129024,9 +129238,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129035,9 +129249,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -129046,9 +129260,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -129057,19 +129271,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv4Reachability_Prefix_U } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny struct { *ygot.NodePath } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*", "mt-id": "*"}, @@ -129078,9 +129292,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixA } } -// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny) PrefixAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*", "mt-id": "*"}, @@ -129089,9 +129303,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) Pref } } -// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix, "mt-id": "*"}, @@ -129100,9 +129314,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixA } } -// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny) PrefixAnyMtId(Prefix string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix, "mt-id": "*"}, @@ -129111,9 +129325,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) Pref } } -// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*", "mt-id": MtId}, @@ -129122,9 +129336,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) PrefixA } } -// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// PrefixAnyPrefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny) PrefixAnyPrefix(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": "*", "mt-id": MtId}, @@ -129133,9 +129347,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) Pref } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) Prefix(Prefix string, MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPath) Prefix(Prefix string, MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix, "mt-id": MtId}, @@ -129144,9 +129358,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability) Prefix( } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) Prefix(Prefix string, MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityPathAny) Prefix(Prefix string, MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"prefix": Prefix, "mt-id": MtId}, @@ -129155,79 +129369,79 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6ReachabilityAny) Pref } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Prefix struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/s-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDown represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDown struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/up-down YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/state/x-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -129236,9 +129450,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -129247,9 +129461,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtId{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -129258,9 +129472,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdAny{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_MtIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -129269,9 +129483,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Prefix { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -129280,9 +129494,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) Prefix() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -129291,9 +129505,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBit{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPath{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -129302,9 +129516,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "s-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitAny{ +// SBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "s-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) SBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "s-bit"}, map[string]interface{}{}, @@ -129313,9 +129527,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -129324,9 +129538,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -129335,9 +129549,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -129346,9 +129560,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -129357,9 +129571,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -129368,9 +129582,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -129379,9 +129593,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -129390,9 +129604,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -129401,9 +129615,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDown { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDown{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPath{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -129412,9 +129626,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "up-down". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownAny{ +// UpDown returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "up-down". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) UpDown() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UpDownPathAny{ NodePath: ygot.NewNodePath( []string{"state", "up-down"}, map[string]interface{}{}, @@ -129423,9 +129637,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix the path struct for its child "x-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBit{ +// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath the path struct for its child "x-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPath) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPath{ NodePath: ygot.NewNodePath( []string{"state", "x-bit"}, map[string]interface{}{}, @@ -129434,9 +129648,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix) } } -// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny the path struct for its child "x-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAny) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitAny{ +// XBit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny the path struct for its child "x-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixPathAny) XBit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_XBitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "x-bit"}, map[string]interface{}{}, @@ -129445,29 +129659,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_PrefixAn } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -129476,9 +129690,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"flags"}, map[string]interface{}{}, @@ -129487,9 +129701,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -129498,9 +129712,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "ipv4-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny{ +// Ipv4SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv4-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Ipv4SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-source-router-id"}, map[string]interface{}{}, @@ -129509,9 +129723,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -129520,9 +129734,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "ipv6-source-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny{ +// Ipv6SourceRouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "ipv6-source-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Ipv6SourceRouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-source-router-id"}, map[string]interface{}{}, @@ -129531,9 +129745,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -129542,9 +129756,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) PrefixSidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": "*"}, @@ -129553,9 +129767,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -129564,9 +129778,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) PrefixSid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sids", "prefix-sid"}, map[string]interface{}{"value": Value}, @@ -129575,9 +129789,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -129586,9 +129800,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "tag". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny{ +// Tag returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "tag". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Tag() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny{ NodePath: ygot.NewNodePath( []string{"tag"}, map[string]interface{}{}, @@ -129597,9 +129811,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -129608,9 +129822,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"tag64"}, map[string]interface{}{}, @@ -129619,9 +129833,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129630,9 +129844,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129641,39 +129855,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/flags/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -129682,9 +129896,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -129693,9 +129907,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129704,9 +129918,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_FlagsPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Flags_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129715,39 +129929,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv4-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -129756,9 +129970,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -129767,9 +129981,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129778,9 +129992,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv4SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129789,39 +130003,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/ipv6-source-router-id/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny struct { *ygot.NodePath } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -129830,9 +130044,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) RouterId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -129841,9 +130055,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129852,9 +130066,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterIdPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Ipv6SourceRouterId_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -129863,49 +130077,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/prefix-sids/prefix-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -129914,9 +130128,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Algorithm() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -129925,9 +130139,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -129936,9 +130150,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -129947,9 +130161,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -129958,9 +130172,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_PrefixSid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -129969,29 +130183,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag/state/tag32 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny struct { *ygot.NodePath } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPath) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Path{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -130000,9 +130214,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny the path struct for its child "tag32". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32Any{ +// Tag32 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny the path struct for its child "tag32". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_TagPathAny) Tag32() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag_Tag32PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag32"}, map[string]interface{}{}, @@ -130011,29 +130225,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64 struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Any struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/subtlvs/subtlv/tag64/state/tag64 YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny struct { *ygot.NodePath } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64 the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64 { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Path) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Path { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Path{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -130042,9 +130256,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any the path struct for its child "tag64". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64Any) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Any { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64Any{ +// Tag64 returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny the path struct for its child "tag64". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64PathAny) Tag64() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_Subtlv_Tag64_Tag64PathAny{ NodePath: ygot.NewNodePath( []string{"state", "tag64"}, map[string]interface{}{}, @@ -130053,49 +130267,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_S } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-ipv6-reachability/prefixes/prefix/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -130104,9 +130318,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -130115,9 +130329,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -130126,9 +130340,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -130137,9 +130351,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -130148,9 +130362,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -130159,19 +130373,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIpv6Reachability_Prefix_U } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny struct { *ygot.NodePath } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": "*"}, @@ -130180,9 +130394,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) Ne } } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": "*"}, @@ -130191,9 +130405,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) } } -// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": "*"}, @@ -130202,9 +130416,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) Ne } } -// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": "*"}, @@ -130213,9 +130427,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) } } -// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": SystemId}, @@ -130224,9 +130438,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) Ne } } -// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": SystemId}, @@ -130235,9 +130449,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePath) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": SystemId}, @@ -130246,9 +130460,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute) Ne } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributePathAny) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": SystemId}, @@ -130257,39 +130471,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttributeAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPathAny struct { *ygot.NodePath } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -130298,9 +130512,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -130309,9 +130523,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -130320,9 +130534,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -130331,9 +130545,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtId{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -130342,9 +130556,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdAny{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_MtIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -130353,9 +130567,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -130364,9 +130578,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_NeighborPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -130375,39 +130589,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Id represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Id struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPathAny struct { *ygot.NodePath } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Id { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Id{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -130416,9 +130630,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdAny{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -130427,9 +130641,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -130438,9 +130652,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -130449,9 +130663,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -130460,9 +130674,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -130471,9 +130685,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -130482,9 +130696,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -130493,9 +130707,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -130504,9 +130718,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -130515,9 +130729,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -130526,9 +130740,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstanceAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_InstancePathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -130537,29 +130751,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny struct { *ygot.NodePath } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -130568,9 +130782,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -130579,9 +130793,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -130590,9 +130804,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -130601,9 +130815,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -130612,9 +130826,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -130623,9 +130837,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -130634,9 +130848,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -130645,9 +130859,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -130656,9 +130870,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -130667,9 +130881,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -130678,9 +130892,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -130689,9 +130903,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -130700,9 +130914,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -130711,9 +130925,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -130722,9 +130936,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -130733,9 +130947,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -130744,9 +130958,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -130755,9 +130969,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -130766,9 +130980,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -130777,9 +130991,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -130788,9 +131002,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -130799,9 +131013,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -130810,9 +131024,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -130821,9 +131035,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -130832,9 +131046,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -130843,9 +131057,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -130854,9 +131068,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -130865,9 +131079,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -130876,9 +131090,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -130887,9 +131101,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -130898,9 +131112,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -130909,9 +131123,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -130920,9 +131134,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -130931,9 +131145,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -130942,9 +131156,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -130953,9 +131167,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -130964,9 +131178,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -130975,9 +131189,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -130986,9 +131200,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -130997,9 +131211,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -131008,9 +131222,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -131019,9 +131233,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -131030,9 +131244,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -131041,9 +131255,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -131052,9 +131266,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -131063,9 +131277,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -131074,9 +131288,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -131085,9 +131299,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -131096,9 +131310,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -131107,9 +131321,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -131118,9 +131332,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -131129,9 +131343,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -131140,9 +131354,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -131151,9 +131365,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -131162,9 +131376,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -131173,9 +131387,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPath) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -131184,9 +131398,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_SubtlvPathAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -131195,49 +131409,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -131246,9 +131460,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -131257,9 +131471,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -131268,9 +131482,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -131279,9 +131493,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -131290,9 +131504,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -131301,29 +131515,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny struct { *ygot.NodePath } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -131332,9 +131546,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroupPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -131343,39 +131557,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -131384,9 +131598,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -131395,9 +131609,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -131406,9 +131620,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -131417,29 +131631,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny struct { *ygot.NodePath } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -131448,9 +131662,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -131459,9 +131673,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -131470,9 +131684,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -131481,9 +131695,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -131492,9 +131706,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -131503,39 +131717,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -131544,9 +131758,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -131555,9 +131769,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -131566,9 +131780,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -131577,29 +131791,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -131608,9 +131822,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -131619,29 +131833,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131650,9 +131864,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131661,29 +131875,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131692,9 +131906,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131703,29 +131917,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131734,9 +131948,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131745,29 +131959,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131776,9 +131990,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -131787,59 +132001,59 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -131848,9 +132062,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -131859,9 +132073,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -131870,9 +132084,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -131881,9 +132095,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -131892,9 +132106,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -131903,9 +132117,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -131914,9 +132128,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -131925,29 +132139,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny struct { *ygot.NodePath } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPath) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -131956,9 +132170,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributesPathAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -131967,39 +132181,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132008,9 +132222,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132019,9 +132233,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -132030,9 +132244,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -132041,29 +132255,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny struct { *ygot.NodePath } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -132072,9 +132286,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -132083,39 +132297,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny struct { *ygot.NodePath } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Local{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPath{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -132124,9 +132338,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalAny{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_LocalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -132135,9 +132349,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_Remote{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPath) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePath{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -132146,9 +132360,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemoteAny{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkIdPathAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkId_RemotePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -132157,39 +132371,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132198,9 +132412,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132209,9 +132423,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -132220,9 +132434,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLossPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -132231,29 +132445,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny struct { *ygot.NodePath } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132262,9 +132476,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypeAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132273,29 +132487,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132304,9 +132518,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132315,29 +132529,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132346,9 +132560,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132357,49 +132571,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132408,9 +132622,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -132419,9 +132633,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -132430,9 +132644,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -132441,9 +132655,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -132452,9 +132666,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -132463,29 +132677,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132494,9 +132708,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132505,39 +132719,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132546,9 +132760,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132557,9 +132771,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPath) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -132568,9 +132782,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -132579,29 +132793,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -132610,9 +132824,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -132621,39 +132835,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny struct { *ygot.NodePath } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -132662,9 +132876,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -132673,9 +132887,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132684,9 +132898,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132695,39 +132909,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132736,9 +132950,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -132747,9 +132961,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132758,9 +132972,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132769,49 +132983,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isis-neighbor-attribute/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -132820,9 +133034,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -132831,9 +133045,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132842,9 +133056,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -132853,9 +133067,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -132864,9 +133078,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Neighbor_Instance_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -132875,19 +133089,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsisNeighborAttribute_Nei } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny struct { *ygot.NodePath } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": "*"}, @@ -132896,9 +133110,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAny() *Netwo } } -// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny) NeighborAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": "*"}, @@ -132907,9 +133121,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAny() *Ne } } -// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": "*"}, @@ -132918,9 +133132,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAnySystemId( } } -// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAnySystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny) NeighborAnySystemId(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": "*"}, @@ -132929,9 +133143,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAnySystem } } -// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": SystemId}, @@ -132940,9 +133154,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) NeighborAnyMtId(Syst } } -// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// NeighborAnyMtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny) NeighborAnyMtId(SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": "*", "system-id": SystemId}, @@ -132951,9 +133165,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) NeighborAnyMtId(S } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPath) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": SystemId}, @@ -132962,9 +133176,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn) Neighbor(MtId uint16 } } -// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnPathAny) Neighbor(MtId uint16, SystemId string) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"mt-id": MtId, "system-id": SystemId}, @@ -132973,39 +133187,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsnAny) Neighbor(MtId uin } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/state/system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPathAny struct { *ygot.NodePath } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -133014,9 +133228,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) InstanceAny } } -// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny{ +// InstanceAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny) InstanceAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": "*"}, @@ -133025,9 +133239,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) Instance } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -133036,9 +133250,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) Instance(Id } } -// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny the path struct for its child "instance". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny{ +// Instance returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny the path struct for its child "instance". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny) Instance(Id uint64) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny{ NodePath: ygot.NewNodePath( []string{"instances", "instance"}, map[string]interface{}{"id": Id}, @@ -133047,9 +133261,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) Instance } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtId{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -133058,9 +133272,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) MtId() *Net } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdAny{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_MtIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -133069,9 +133283,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) MtId() * } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemId{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPath) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -133080,9 +133294,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor) SystemId() } } -// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny the path struct for its child "system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdAny{ +// SystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny the path struct for its child "system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborPathAny) SystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_SystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id"}, map[string]interface{}{}, @@ -133091,39 +133305,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_NeighborAny) SystemId } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Id represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Id struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPathAny struct { *ygot.NodePath } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Id { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Id{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -133132,9 +133346,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Id } } -// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdAny{ +// Id returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) Id() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -133143,9 +133357,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -133154,9 +133368,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Me } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -133165,9 +133379,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -133176,9 +133390,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Su } } -// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny{ +// SubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) SubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": "*"}, @@ -133187,9 +133401,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -133198,9 +133412,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Su } } -// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) Subtlv(Type oc.E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny{ +// Subtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) Subtlv(Type E_OpenconfigIsisLsdbTypes_ISIS_SUBTLV_TYPE) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"subtlvs", "subtlv"}, map[string]interface{}{"type": Type}, @@ -133209,9 +133423,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -133220,9 +133434,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Un } } -// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlvAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) UndefinedSubtlvAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": "*"}, @@ -133231,9 +133445,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePath) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -133242,9 +133456,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance) Un } } -// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny the path struct for its child "undefined-subtlv". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny{ +// UndefinedSubtlv returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny the path struct for its child "undefined-subtlv". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstancePathAny) UndefinedSubtlv(Type uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"undefined-subtlvs", "undefined-subtlv"}, map[string]interface{}{"type": Type}, @@ -133253,29 +133467,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_InstanceAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePathAny struct { *ygot.NodePath } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -133284,9 +133498,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) AdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -133295,9 +133509,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -133306,9 +133520,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) AdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sids", "adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -133317,9 +133531,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -133328,9 +133542,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"admin-group"}, map[string]interface{}{}, @@ -133339,9 +133553,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -133350,9 +133564,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "available-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny{ +// AvailableBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "available-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) AvailableBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"available-bandwidth"}, map[string]interface{}{}, @@ -133361,9 +133575,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -133372,9 +133586,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) BandwidthConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": "*"}, @@ -133383,9 +133597,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -133394,9 +133608,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "bandwidth-constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny{ +// BandwidthConstraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "bandwidth-constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) BandwidthConstraint(ModelId uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"bandwidth-constraints", "bandwidth-constraint"}, map[string]interface{}{"model-id": ModelId}, @@ -133405,9 +133619,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -133416,9 +133630,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"extended-admin-group"}, map[string]interface{}{}, @@ -133427,9 +133641,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -133438,9 +133652,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny{ +// Ipv4InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) Ipv4InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-interface-address"}, map[string]interface{}{}, @@ -133449,9 +133663,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -133460,9 +133674,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "ipv4-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny{ +// Ipv4NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv4-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) Ipv4NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-neighbor-address"}, map[string]interface{}{}, @@ -133471,9 +133685,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -133482,9 +133696,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-interface-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny{ +// Ipv6InterfaceAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-interface-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) Ipv6InterfaceAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-interface-address"}, map[string]interface{}{}, @@ -133493,9 +133707,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -133504,9 +133718,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "ipv6-neighbor-address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny{ +// Ipv6NeighborAddress returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "ipv6-neighbor-address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) Ipv6NeighborAddress() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"ipv6-neighbor-address"}, map[string]interface{}{}, @@ -133515,9 +133729,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -133526,9 +133740,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySidAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LanAdjacencySidAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": "*"}, @@ -133537,9 +133751,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -133548,9 +133762,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "lan-adjacency-sid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny{ +// LanAdjacencySid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "lan-adjacency-sid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LanAdjacencySid(Value uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"lan-adjacency-sids", "lan-adjacency-sid"}, map[string]interface{}{"value": Value}, @@ -133559,9 +133773,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -133570,9 +133784,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny{ +// LinkAttributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkAttributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny{ NodePath: ygot.NewNodePath( []string{"link-attributes"}, map[string]interface{}{}, @@ -133581,9 +133795,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -133592,9 +133806,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny{ +// LinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay"}, map[string]interface{}{}, @@ -133603,9 +133817,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -133614,9 +133828,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-delay-variation". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny{ +// LinkDelayVariation returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-delay-variation". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkDelayVariation() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny{ NodePath: ygot.NewNodePath( []string{"link-delay-variation"}, map[string]interface{}{}, @@ -133625,9 +133839,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -133636,9 +133850,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"link-id"}, map[string]interface{}{}, @@ -133647,9 +133861,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -133658,9 +133872,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"link-loss"}, map[string]interface{}{}, @@ -133669,9 +133883,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -133680,9 +133894,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "link-protection-type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny{ +// LinkProtectionType returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "link-protection-type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) LinkProtectionType() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny{ NodePath: ygot.NewNodePath( []string{"link-protection-type"}, map[string]interface{}{}, @@ -133691,9 +133905,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -133702,9 +133916,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "max-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny{ +// MaxLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) MaxLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-link-bandwidth"}, map[string]interface{}{}, @@ -133713,9 +133927,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -133724,9 +133938,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "max-reservable-link-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny{ +// MaxReservableLinkBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "max-reservable-link-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) MaxReservableLinkBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"max-reservable-link-bandwidth"}, map[string]interface{}{}, @@ -133735,9 +133949,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -133746,9 +133960,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "min-max-link-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny{ +// MinMaxLinkDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "min-max-link-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) MinMaxLinkDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny{ NodePath: ygot.NewNodePath( []string{"min-max-link-delay"}, map[string]interface{}{}, @@ -133757,9 +133971,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -133768,9 +133982,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "residual-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny{ +// ResidualBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "residual-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) ResidualBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"residual-bandwidth"}, map[string]interface{}{}, @@ -133779,9 +133993,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -133790,9 +134004,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriorityAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) SetupPriorityAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": "*"}, @@ -133801,9 +134015,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -133812,9 +134026,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "setup-priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny{ +// SetupPriority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "setup-priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) SetupPriority(Priority uint8) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidth", "setup-priority"}, map[string]interface{}{"priority": Priority}, @@ -133823,9 +134037,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -133834,9 +134048,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "te-default-metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny{ +// TeDefaultMetric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "te-default-metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) TeDefaultMetric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny{ NodePath: ygot.NewNodePath( []string{"te-default-metric"}, map[string]interface{}{}, @@ -133845,9 +134059,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -133856,9 +134070,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -133867,9 +134081,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -133878,9 +134092,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "unconstrained-lsp". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny{ +// UnconstrainedLsp returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "unconstrained-lsp". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) UnconstrainedLsp() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny{ NodePath: ygot.NewNodePath( []string{"unconstrained-lsp"}, map[string]interface{}{}, @@ -133889,9 +134103,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPath) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -133900,9 +134114,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny the path struct for its child "utilized-bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny{ +// UtilizedBandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny the path struct for its child "utilized-bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_SubtlvPathAny) UtilizedBandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"utilized-bandwidth"}, map[string]interface{}{}, @@ -133911,49 +134125,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/adjacency-sids/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -133962,9 +134176,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -133973,9 +134187,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -133984,9 +134198,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -133995,9 +134209,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -134006,9 +134220,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -134017,29 +134231,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/admin-group/state/admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny struct { *ygot.NodePath } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPath) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -134048,9 +134262,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroupPathAny) AdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AdminGroup_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-group"}, map[string]interface{}{}, @@ -134059,39 +134273,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/available-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -134100,9 +134314,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -134111,9 +134325,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -134122,9 +134336,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_AvailableBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -134133,29 +134347,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/state/model-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny struct { *ygot.NodePath } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -134164,9 +134378,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// ConstraintAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ConstraintAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": "*"}, @@ -134175,9 +134389,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -134186,9 +134400,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "constraint". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny{ +// Constraint returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "constraint". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) Constraint(ConstraintId uint32) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny{ NodePath: ygot.NewNodePath( []string{"constraints", "constraint"}, map[string]interface{}{"constraint-id": ConstraintId}, @@ -134197,9 +134411,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelId{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPath) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPath{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -134208,9 +134422,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny the path struct for its child "model-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdAny{ +// ModelId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny the path struct for its child "model-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraintPathAny) ModelId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ModelIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "model-id"}, map[string]interface{}{}, @@ -134219,39 +134433,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/bandwidth-constraints/bandwidth-constraint/constraints/constraint/state/constraint-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -134260,9 +134474,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -134271,9 +134485,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintId{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPath) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPath{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -134282,9 +134496,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny the path struct for its child "constraint-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdAny{ +// ConstraintId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny the path struct for its child "constraint-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_ConstraintPathAny) ConstraintId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_BandwidthConstraint_Constraint_ConstraintIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "constraint-id"}, map[string]interface{}{}, @@ -134293,29 +134507,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/extended-admin-group/state/extended-admin-group YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny struct { *ygot.NodePath } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroup{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPath) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPath{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -134324,9 +134538,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny the path struct for its child "extended-admin-group". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupAny{ +// ExtendedAdminGroup returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny the path struct for its child "extended-admin-group". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroupPathAny) ExtendedAdminGroup() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ExtendedAdminGroup_ExtendedAdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "extended-admin-group"}, map[string]interface{}{}, @@ -134335,29 +134549,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134366,9 +134580,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134377,29 +134591,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv4-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134408,9 +134622,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv4NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134419,29 +134633,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-interface-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134450,9 +134664,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6InterfaceAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134461,29 +134675,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/ipv6-neighbor-address/state/address YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_Address{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPath) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134492,9 +134706,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddressPathAny) Address() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_Ipv6NeighborAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -134503,59 +134717,59 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/flags YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/neighbor-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/lan-adjacency-sids/lan-adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Flags{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPath{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -134564,9 +134778,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "flags". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsAny{ +// Flags returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "flags". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Flags() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_FlagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "flags"}, map[string]interface{}{}, @@ -134575,9 +134789,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborId{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -134586,9 +134800,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "neighbor-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdAny{ +// NeighborId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "neighbor-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) NeighborId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_NeighborIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-id"}, map[string]interface{}{}, @@ -134597,9 +134811,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -134608,9 +134822,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -134619,9 +134833,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPath) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -134630,9 +134844,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LanAdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -134641,29 +134855,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-attributes/state/local-protection YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny struct { *ygot.NodePath } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtection{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPath) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPath{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -134672,9 +134886,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny the path struct for its child "local-protection". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionAny{ +// LocalProtection returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny the path struct for its child "local-protection". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributesPathAny) LocalProtection() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkAttributes_LocalProtectionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-protection"}, map[string]interface{}{}, @@ -134683,39 +134897,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -134724,9 +134938,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -134735,9 +134949,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -134746,9 +134960,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelay_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -134757,29 +134971,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-delay-variation/state/delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny struct { *ygot.NodePath } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_Delay{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPath) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPath{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -134788,9 +135002,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny the path struct for its child "delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayAny{ +// Delay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny the path struct for its child "delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariationPathAny) Delay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkDelayVariation_DelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "delay"}, map[string]interface{}{}, @@ -134799,39 +135013,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Local represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Local struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/local YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Remote represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Remote struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemoteAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemoteAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-id/state/remote YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePathAny struct { *ygot.NodePath } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Local { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Local{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPath{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -134840,9 +135054,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "local". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalAny{ +// Local returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "local". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny) Local() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_LocalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local"}, map[string]interface{}{}, @@ -134851,9 +135065,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Remote { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_Remote{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPath) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePath{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -134862,9 +135076,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny the path struct for its child "remote". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemoteAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemoteAny{ +// Remote returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny the path struct for its child "remote". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkIdPathAny) Remote() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkId_RemotePathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote"}, map[string]interface{}{}, @@ -134873,39 +135087,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-loss/state/link-loss YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -134914,9 +135128,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -134925,9 +135139,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLoss{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPath) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPath{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -134936,9 +135150,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny the path struct for its child "link-loss". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossAny{ +// LinkLoss returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny the path struct for its child "link-loss". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLossPathAny) LinkLoss() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkLoss_LinkLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-loss"}, map[string]interface{}{}, @@ -134947,29 +135161,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/link-protection-type/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny struct { *ygot.NodePath } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -134978,9 +135192,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypeAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionTypePathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_LinkProtectionType_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -134989,29 +135203,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135020,9 +135234,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135031,29 +135245,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/max-reservable-link-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135062,9 +135276,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MaxReservableLinkBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135073,49 +135287,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/a-bit YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/max-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/min-max-link-delay/state/min-delay YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny struct { *ygot.NodePath } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABit{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPath{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -135124,9 +135338,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "a-bit". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitAny{ +// ABit returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "a-bit". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) ABit() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_ABitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "a-bit"}, map[string]interface{}{}, @@ -135135,9 +135349,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelay{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -135146,9 +135360,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "max-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayAny{ +// MaxDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "max-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MaxDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MaxDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-delay"}, map[string]interface{}{}, @@ -135157,9 +135371,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelay{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPath) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -135168,9 +135382,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny the path struct for its child "min-delay". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayAny{ +// MinDelay returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny the path struct for its child "min-delay". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelayPathAny) MinDelay() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_MinMaxLinkDelay_MinDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "min-delay"}, map[string]interface{}{}, @@ -135179,29 +135393,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/residual-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135210,9 +135424,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_ResidualBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135221,39 +135435,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Priority struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unreserved-bandwidth/setup-priority/state/priority YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135262,9 +135476,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135273,9 +135487,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Priority { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_Priority{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPath) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -135284,9 +135498,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriorityPathAny) Priority() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_SetupPriority_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -135295,29 +135509,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/te-default-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPath) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -135326,9 +135540,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetricPathAny) Metric() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_TeDefaultMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -135337,39 +135551,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/unconstrained-lsp/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny struct { *ygot.NodePath } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Count{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPath{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -135378,9 +135592,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountAny{ +// Count returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Count() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_CountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "count"}, map[string]interface{}{}, @@ -135389,9 +135603,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135400,9 +135614,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLspPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UnconstrainedLsp_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135411,39 +135625,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/bandwidth YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/subtlvs/subtlv/utilized-bandwidth/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny struct { *ygot.NodePath } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Bandwidth{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135452,9 +135666,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "bandwidth". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthAny{ +// Bandwidth returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "bandwidth". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Bandwidth() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_BandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bandwidth"}, map[string]interface{}{}, @@ -135463,9 +135677,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135474,9 +135688,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidthPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Subtlv_UtilizedBandwidth_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135485,49 +135699,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Sub } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/mt-isn/neighbors/neighbor/instances/instance/undefined-subtlvs/undefined-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -135536,9 +135750,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -135547,9 +135761,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135558,9 +135772,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135569,9 +135783,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -135580,9 +135794,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_UndefinedSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -135591,19 +135805,19 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MtIsn_Neighbor_Instance_Und } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny struct { *ygot.NodePath } -// TopologyAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology) TopologyAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny{ +// TopologyAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath) TopologyAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny{ NodePath: ygot.NewNodePath( []string{"topologies", "topology"}, map[string]interface{}{"mt-id": "*"}, @@ -135612,9 +135826,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology) TopologyAny( } } -// TopologyAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny) TopologyAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny{ +// TopologyAny returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny) TopologyAny() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny{ NodePath: ygot.NewNodePath( []string{"topologies", "topology"}, map[string]interface{}{"mt-id": "*"}, @@ -135623,9 +135837,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny) TopologyA } } -// Topology returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology) Topology(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology{ +// Topology returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPath) Topology(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath{ NodePath: ygot.NewNodePath( []string{"topologies", "topology"}, map[string]interface{}{"mt-id": MtId}, @@ -135634,9 +135848,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology) Topology(MtI } } -// Topology returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny the path struct for its child "topology". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny) Topology(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny{ +// Topology returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny the path struct for its child "topology". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyPathAny) Topology(MtId uint16) *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny{ NodePath: ygot.NewNodePath( []string{"topologies", "topology"}, map[string]interface{}{"mt-id": MtId}, @@ -135645,39 +135859,39 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopologyAny) Topology( } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_Attributes represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_Attributes struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/attributes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/attributes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/mt-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/multi-topology/topologies/topology/state/mt-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPathAny struct { *ygot.NodePath } -// Attributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology the path struct for its child "attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology) Attributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_Attributes { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_Attributes{ +// Attributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath the path struct for its child "attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath) Attributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPath{ NodePath: ygot.NewNodePath( []string{"state", "attributes"}, map[string]interface{}{}, @@ -135686,9 +135900,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology) Att } } -// Attributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny the path struct for its child "attributes". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny) Attributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesAny{ +// Attributes returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny the path struct for its child "attributes". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny) Attributes() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_AttributesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attributes"}, map[string]interface{}{}, @@ -135697,9 +135911,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny) } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtId{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPath) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -135708,9 +135922,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology) MtI } } -// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny the path struct for its child "mt-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdAny{ +// MtId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny the path struct for its child "mt-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyPathAny) MtId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_Topology_MtIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mt-id"}, map[string]interface{}{}, @@ -135719,29 +135933,29 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_MultiTopology_TopologyAny) } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_Nlpid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid/state/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_Nlpid struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid/state/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid/state/nlpid YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/nlpid/state/nlpid YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPathAny struct { *ygot.NodePath } -// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_Nlpid { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_Nlpid{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPath) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPath{ NodePath: ygot.NewNodePath( []string{"state", "nlpid"}, map[string]interface{}{}, @@ -135750,9 +135964,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid) Nlpid() *NetworkInst } } -// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny the path struct for its child "nlpid". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidAny{ +// Nlpid returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny the path struct for its child "nlpid". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidPathAny) Nlpid() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_Nlpid_NlpidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "nlpid"}, map[string]interface{}{}, @@ -135761,49 +135975,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_NlpidAny) Nlpid() *NetworkI } } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/received-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/received-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/received-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/received-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/source-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemId struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/source-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/source-system-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/source-system-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCount represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/system-id-count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCount struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/system-id-count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/system-id-count YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/tlvs/tlv/purge-oi/state/system-id-count YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPathAny struct { *ygot.NodePath } -// ReceivedSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi the path struct for its child "received-system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) ReceivedSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemId{ +// ReceivedSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath the path struct for its child "received-system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath) ReceivedSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "received-system-id"}, map[string]interface{}{}, @@ -135812,9 +136026,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) ReceivedSystemId() } } -// ReceivedSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny the path struct for its child "received-system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) ReceivedSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdAny{ +// ReceivedSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny the path struct for its child "received-system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny) ReceivedSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_ReceivedSystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "received-system-id"}, map[string]interface{}{}, @@ -135823,9 +136037,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) ReceivedSystemI } } -// SourceSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi the path struct for its child "source-system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) SourceSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemId { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemId{ +// SourceSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath the path struct for its child "source-system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath) SourceSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPath{ NodePath: ygot.NewNodePath( []string{"state", "source-system-id"}, map[string]interface{}{}, @@ -135834,9 +136048,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) SourceSystemId() * } } -// SourceSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny the path struct for its child "source-system-id". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) SourceSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdAny{ +// SourceSystemId returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny the path struct for its child "source-system-id". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny) SourceSystemId() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SourceSystemIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "source-system-id"}, map[string]interface{}{}, @@ -135845,9 +136059,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) SourceSystemId( } } -// SystemIdCount returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi the path struct for its child "system-id-count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) SystemIdCount() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCount { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCount{ +// SystemIdCount returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath the path struct for its child "system-id-count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPath) SystemIdCount() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPath{ NodePath: ygot.NewNodePath( []string{"state", "system-id-count"}, map[string]interface{}{}, @@ -135856,9 +136070,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi) SystemIdCount() *N } } -// SystemIdCount returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny the path struct for its child "system-id-count". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) SystemIdCount() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountAny{ +// SystemIdCount returns from NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny the path struct for its child "system-id-count". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiPathAny) SystemIdCount() *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOi_SystemIdCountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-id-count"}, map[string]interface{}{}, @@ -135867,49 +136081,49 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_Tlv_PurgeOiAny) SystemIdCount() } } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Length struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Type struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypeAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Value struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValueAny struct { +// NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/link-state-database/lsp/undefined-tlvs/undefined-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Length { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Length{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -135918,9 +136132,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Length() *Network } } -// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny) Length() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -135929,9 +136143,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Length() *Netw } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Type { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Type{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135940,9 +136154,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Type() *NetworkIn } } -// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypeAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny) Type() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -135951,9 +136165,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Type() *Networ } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Value { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_Value{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPath) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePath { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -135962,9 +136176,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv) Value() *NetworkI } } -// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValueAny { - return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvPathAny) Value() *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePathAny { + return &NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -135973,223 +136187,223 @@ func (n *NetworkInstance_Protocol_Isis_Level_Lsp_UndefinedTlvAny) Value() *Netwo } } -// NetworkInstance_Protocol_Isis_Level_RoutePreference represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreference struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreferencePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreferencePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreference represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/state/external-route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreference struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/config/external-route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/state/external-route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferenceAny struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/config/external-route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreference represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/state/internal-route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreference struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/config/internal-route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/state/internal-route-preference YANG schema element. -type NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferenceAny struct { +// NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/route-preference/config/internal-route-preference YANG schema element. +type NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePathAny struct { *ygot.NodePath } -// ExternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreference the path struct for its child "external-route-preference". -func (n *NetworkInstance_Protocol_Isis_Level_RoutePreference) ExternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreference { - return &NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreference{ +// ExternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferencePath the path struct for its child "external-route-preference". +func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferencePath) ExternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePath { + return &NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePath{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-preference"}, + []string{"config", "external-route-preference"}, map[string]interface{}{}, n, ), } } -// ExternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny the path struct for its child "external-route-preference". -func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny) ExternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferenceAny { - return &NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferenceAny{ +// ExternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny the path struct for its child "external-route-preference". +func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny) ExternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePathAny { + return &NetworkInstance_Protocol_Isis_Level_RoutePreference_ExternalRoutePreferencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "external-route-preference"}, + []string{"config", "external-route-preference"}, map[string]interface{}{}, n, ), } } -// InternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreference the path struct for its child "internal-route-preference". -func (n *NetworkInstance_Protocol_Isis_Level_RoutePreference) InternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreference { - return &NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreference{ +// InternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferencePath the path struct for its child "internal-route-preference". +func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferencePath) InternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePath { + return &NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePath{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-preference"}, + []string{"config", "internal-route-preference"}, map[string]interface{}{}, n, ), } } -// InternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny the path struct for its child "internal-route-preference". -func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferenceAny) InternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferenceAny { - return &NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferenceAny{ +// InternalRoutePreference returns from NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny the path struct for its child "internal-route-preference". +func (n *NetworkInstance_Protocol_Isis_Level_RoutePreferencePathAny) InternalRoutePreference() *NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePathAny { + return &NetworkInstance_Protocol_Isis_Level_RoutePreference_InternalRoutePreferencePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "internal-route-preference"}, + []string{"config", "internal-route-preference"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFails represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFails struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFails represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-type-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFails struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-type-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-type-fails YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/auth-type-fails YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLsps represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/corrupted-lsps YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLsps struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/corrupted-lsps YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/corrupted-lsps YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/corrupted-lsps YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloads represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/database-overloads YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloads struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/database-overloads YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/database-overloads YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/database-overloads YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNums represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/exceed-max-seq-nums YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNums struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/exceed-max-seq-nums YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/exceed-max-seq-nums YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/exceed-max-seq-nums YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatch represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/id-len-mismatch YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatch struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/id-len-mismatch YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/id-len-mismatch YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/id-len-mismatch YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrors represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/lsp-errors YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrors struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/lsp-errors YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/lsp-errors YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/lsp-errors YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreas represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/manual-address-drop-from-areas YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreas struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/manual-address-drop-from-areas YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/manual-address-drop-from-areas YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/manual-address-drop-from-areas YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatches represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/max-area-address-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatches struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/max-area-address-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/max-area-address-mismatches YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/max-area-address-mismatches YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/own-lsp-purges YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurges struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/own-lsp-purges YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/own-lsp-purges YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/own-lsp-purges YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/part-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChanges struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/part-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/part-changes YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/part-changes YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkips represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/seq-num-skips YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkips struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/seq-num-skips YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/seq-num-skips YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/seq-num-skips YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRuns represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/spf-runs YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRuns struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/spf-runs YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/spf-runs YANG schema element. -type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsAny struct { +// NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/system-level-counters/state/spf-runs YANG schema element. +type NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPathAny struct { *ygot.NodePath } -// AuthFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "auth-fails". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) AuthFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFails { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFails{ +// AuthFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "auth-fails". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) AuthFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPath{ NodePath: ygot.NewNodePath( []string{"state", "auth-fails"}, map[string]interface{}{}, @@ -136198,9 +136412,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) AuthFails() *N } } -// AuthFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "auth-fails". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) AuthFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsAny{ +// AuthFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "auth-fails". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) AuthFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthFailsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auth-fails"}, map[string]interface{}{}, @@ -136209,9 +136423,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) AuthFails() } } -// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "auth-type-fails". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) AuthTypeFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFails { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFails{ +// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "auth-type-fails". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) AuthTypeFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPath{ NodePath: ygot.NewNodePath( []string{"state", "auth-type-fails"}, map[string]interface{}{}, @@ -136220,9 +136434,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) AuthTypeFails( } } -// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "auth-type-fails". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) AuthTypeFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsAny{ +// AuthTypeFails returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "auth-type-fails". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) AuthTypeFails() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_AuthTypeFailsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auth-type-fails"}, map[string]interface{}{}, @@ -136231,9 +136445,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) AuthTypeFai } } -// CorruptedLsps returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "corrupted-lsps". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) CorruptedLsps() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLsps { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLsps{ +// CorruptedLsps returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "corrupted-lsps". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) CorruptedLsps() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPath{ NodePath: ygot.NewNodePath( []string{"state", "corrupted-lsps"}, map[string]interface{}{}, @@ -136242,9 +136456,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) CorruptedLsps( } } -// CorruptedLsps returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "corrupted-lsps". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) CorruptedLsps() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsAny{ +// CorruptedLsps returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "corrupted-lsps". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) CorruptedLsps() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_CorruptedLspsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "corrupted-lsps"}, map[string]interface{}{}, @@ -136253,9 +136467,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) CorruptedLs } } -// DatabaseOverloads returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "database-overloads". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) DatabaseOverloads() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloads { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloads{ +// DatabaseOverloads returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "database-overloads". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) DatabaseOverloads() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPath{ NodePath: ygot.NewNodePath( []string{"state", "database-overloads"}, map[string]interface{}{}, @@ -136264,9 +136478,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) DatabaseOverlo } } -// DatabaseOverloads returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "database-overloads". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) DatabaseOverloads() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsAny{ +// DatabaseOverloads returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "database-overloads". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) DatabaseOverloads() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_DatabaseOverloadsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "database-overloads"}, map[string]interface{}{}, @@ -136275,9 +136489,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) DatabaseOve } } -// ExceedMaxSeqNums returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "exceed-max-seq-nums". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) ExceedMaxSeqNums() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNums { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNums{ +// ExceedMaxSeqNums returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "exceed-max-seq-nums". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) ExceedMaxSeqNums() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPath{ NodePath: ygot.NewNodePath( []string{"state", "exceed-max-seq-nums"}, map[string]interface{}{}, @@ -136286,9 +136500,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) ExceedMaxSeqNu } } -// ExceedMaxSeqNums returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "exceed-max-seq-nums". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) ExceedMaxSeqNums() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsAny{ +// ExceedMaxSeqNums returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "exceed-max-seq-nums". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) ExceedMaxSeqNums() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ExceedMaxSeqNumsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "exceed-max-seq-nums"}, map[string]interface{}{}, @@ -136297,9 +136511,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) ExceedMaxSe } } -// IdLenMismatch returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "id-len-mismatch". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) IdLenMismatch() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatch { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatch{ +// IdLenMismatch returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "id-len-mismatch". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) IdLenMismatch() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPath{ NodePath: ygot.NewNodePath( []string{"state", "id-len-mismatch"}, map[string]interface{}{}, @@ -136308,9 +136522,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) IdLenMismatch( } } -// IdLenMismatch returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "id-len-mismatch". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) IdLenMismatch() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchAny{ +// IdLenMismatch returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "id-len-mismatch". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) IdLenMismatch() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_IdLenMismatchPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id-len-mismatch"}, map[string]interface{}{}, @@ -136319,9 +136533,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) IdLenMismat } } -// LspErrors returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "lsp-errors". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) LspErrors() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrors { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrors{ +// LspErrors returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "lsp-errors". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) LspErrors() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "lsp-errors"}, map[string]interface{}{}, @@ -136330,9 +136544,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) LspErrors() *N } } -// LspErrors returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "lsp-errors". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) LspErrors() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsAny{ +// LspErrors returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "lsp-errors". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) LspErrors() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_LspErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "lsp-errors"}, map[string]interface{}{}, @@ -136341,9 +136555,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) LspErrors() } } -// ManualAddressDropFromAreas returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "manual-address-drop-from-areas". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) ManualAddressDropFromAreas() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreas { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreas{ +// ManualAddressDropFromAreas returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "manual-address-drop-from-areas". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) ManualAddressDropFromAreas() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPath{ NodePath: ygot.NewNodePath( []string{"state", "manual-address-drop-from-areas"}, map[string]interface{}{}, @@ -136352,9 +136566,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) ManualAddressD } } -// ManualAddressDropFromAreas returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "manual-address-drop-from-areas". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) ManualAddressDropFromAreas() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasAny{ +// ManualAddressDropFromAreas returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "manual-address-drop-from-areas". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) ManualAddressDropFromAreas() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_ManualAddressDropFromAreasPathAny{ NodePath: ygot.NewNodePath( []string{"state", "manual-address-drop-from-areas"}, map[string]interface{}{}, @@ -136363,9 +136577,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) ManualAddre } } -// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "max-area-address-mismatches". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatches { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatches{ +// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "max-area-address-mismatches". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPath{ NodePath: ygot.NewNodePath( []string{"state", "max-area-address-mismatches"}, map[string]interface{}{}, @@ -136374,9 +136588,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) MaxAreaAddress } } -// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "max-area-address-mismatches". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesAny{ +// MaxAreaAddressMismatches returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "max-area-address-mismatches". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) MaxAreaAddressMismatches() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_MaxAreaAddressMismatchesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "max-area-address-mismatches"}, map[string]interface{}{}, @@ -136385,9 +136599,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) MaxAreaAddr } } -// OwnLspPurges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "own-lsp-purges". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) OwnLspPurges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurges { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurges{ +// OwnLspPurges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "own-lsp-purges". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) OwnLspPurges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPath{ NodePath: ygot.NewNodePath( []string{"state", "own-lsp-purges"}, map[string]interface{}{}, @@ -136396,9 +136610,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) OwnLspPurges() } } -// OwnLspPurges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "own-lsp-purges". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) OwnLspPurges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesAny{ +// OwnLspPurges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "own-lsp-purges". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) OwnLspPurges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_OwnLspPurgesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "own-lsp-purges"}, map[string]interface{}{}, @@ -136407,9 +136621,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) OwnLspPurge } } -// PartChanges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "part-changes". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) PartChanges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChanges { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChanges{ +// PartChanges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "part-changes". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) PartChanges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "part-changes"}, map[string]interface{}{}, @@ -136418,9 +136632,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) PartChanges() } } -// PartChanges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "part-changes". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) PartChanges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesAny{ +// PartChanges returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "part-changes". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) PartChanges() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_PartChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "part-changes"}, map[string]interface{}{}, @@ -136429,9 +136643,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) PartChanges } } -// SeqNumSkips returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "seq-num-skips". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) SeqNumSkips() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkips { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkips{ +// SeqNumSkips returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "seq-num-skips". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) SeqNumSkips() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPath{ NodePath: ygot.NewNodePath( []string{"state", "seq-num-skips"}, map[string]interface{}{}, @@ -136440,9 +136654,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) SeqNumSkips() } } -// SeqNumSkips returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "seq-num-skips". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) SeqNumSkips() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsAny{ +// SeqNumSkips returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "seq-num-skips". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) SeqNumSkips() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SeqNumSkipsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "seq-num-skips"}, map[string]interface{}{}, @@ -136451,9 +136665,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) SeqNumSkips } } -// SpfRuns returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCounters the path struct for its child "spf-runs". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) SpfRuns() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRuns { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRuns{ +// SpfRuns returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath the path struct for its child "spf-runs". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPath) SpfRuns() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPath { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPath{ NodePath: ygot.NewNodePath( []string{"state", "spf-runs"}, map[string]interface{}{}, @@ -136462,9 +136676,9 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters) SpfRuns() *Net } } -// SpfRuns returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny the path struct for its child "spf-runs". -func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) SpfRuns() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsAny { - return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsAny{ +// SpfRuns returns from NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny the path struct for its child "spf-runs". +func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersPathAny) SpfRuns() *NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPathAny { + return &NetworkInstance_Protocol_Isis_Level_SystemLevelCounters_SpfRunsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "spf-runs"}, map[string]interface{}{}, @@ -136473,125 +136687,125 @@ func (n *NetworkInstance_Protocol_Isis_Level_SystemLevelCountersAny) SpfRuns() * } } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Enabled struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/enabled YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledAny struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/enabled YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/ipv4-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterId struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/ipv4-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/ipv4-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/ipv4-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/ipv6-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterId struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/ipv6-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/state/ipv6-router-id YANG schema element. -type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdAny struct { +// NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/isis/levels/level/traffic-engineering/config/ipv6-router-id YANG schema element. +type NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineering the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineering) Enabled() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Enabled { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath) Enabled() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPath { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny) Enabled() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledAny { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny) Enabled() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPathAny { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Ipv4RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineering the path struct for its child "ipv4-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineering) Ipv4RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterId { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterId{ +// Ipv4RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath the path struct for its child "ipv4-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath) Ipv4RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv4-router-id"}, + []string{"config", "ipv4-router-id"}, map[string]interface{}{}, n, ), } } -// Ipv4RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny the path struct for its child "ipv4-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny) Ipv4RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdAny{ +// Ipv4RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny the path struct for its child "ipv4-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny) Ipv4RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv4RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv4-router-id"}, + []string{"config", "ipv4-router-id"}, map[string]interface{}{}, n, ), } } -// Ipv6RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineering the path struct for its child "ipv6-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineering) Ipv6RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterId { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterId{ +// Ipv6RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath the path struct for its child "ipv6-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPath) Ipv6RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPath { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-router-id"}, + []string{"config", "ipv6-router-id"}, map[string]interface{}{}, n, ), } } -// Ipv6RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny the path struct for its child "ipv6-router-id". -func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringAny) Ipv6RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdAny { - return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdAny{ +// Ipv6RouterId returns from NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny the path struct for its child "ipv6-router-id". +func (n *NetworkInstance_Protocol_Isis_Level_TrafficEngineeringPathAny) Ipv6RouterId() *NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPathAny { + return &NetworkInstance_Protocol_Isis_Level_TrafficEngineering_Ipv6RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-router-id"}, + []string{"config", "ipv6-router-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2 represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2 YANG schema element. -type NetworkInstance_Protocol_Ospfv2 struct { +// NetworkInstance_Protocol_Ospfv2Path represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2 YANG schema element. +type NetworkInstance_Protocol_Ospfv2Path struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2Any represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2 YANG schema element. -type NetworkInstance_Protocol_Ospfv2Any struct { +// NetworkInstance_Protocol_Ospfv2PathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2 YANG schema element. +type NetworkInstance_Protocol_Ospfv2PathAny struct { *ygot.NodePath } -// AreaAny returns from NetworkInstance_Protocol_Ospfv2 the path struct for its child "area". -func (n *NetworkInstance_Protocol_Ospfv2) AreaAny() *NetworkInstance_Protocol_Ospfv2_AreaAny { - return &NetworkInstance_Protocol_Ospfv2_AreaAny{ +// AreaAny returns from NetworkInstance_Protocol_Ospfv2Path the path struct for its child "area". +func (n *NetworkInstance_Protocol_Ospfv2Path) AreaAny() *NetworkInstance_Protocol_Ospfv2_AreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_AreaPathAny{ NodePath: ygot.NewNodePath( []string{"areas", "area"}, map[string]interface{}{"identifier": "*"}, @@ -136600,9 +136814,9 @@ func (n *NetworkInstance_Protocol_Ospfv2) AreaAny() *NetworkInstance_Protocol_Os } } -// AreaAny returns from NetworkInstance_Protocol_Ospfv2Any the path struct for its child "area". -func (n *NetworkInstance_Protocol_Ospfv2Any) AreaAny() *NetworkInstance_Protocol_Ospfv2_AreaAny { - return &NetworkInstance_Protocol_Ospfv2_AreaAny{ +// AreaAny returns from NetworkInstance_Protocol_Ospfv2PathAny the path struct for its child "area". +func (n *NetworkInstance_Protocol_Ospfv2PathAny) AreaAny() *NetworkInstance_Protocol_Ospfv2_AreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_AreaPathAny{ NodePath: ygot.NewNodePath( []string{"areas", "area"}, map[string]interface{}{"identifier": "*"}, @@ -136611,9 +136825,9 @@ func (n *NetworkInstance_Protocol_Ospfv2Any) AreaAny() *NetworkInstance_Protocol } } -// Area returns from NetworkInstance_Protocol_Ospfv2 the path struct for its child "area". -func (n *NetworkInstance_Protocol_Ospfv2) Area(Identifier oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Area { - return &NetworkInstance_Protocol_Ospfv2_Area{ +// Area returns from NetworkInstance_Protocol_Ospfv2Path the path struct for its child "area". +func (n *NetworkInstance_Protocol_Ospfv2Path) Area(Identifier NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_AreaPath { + return &NetworkInstance_Protocol_Ospfv2_AreaPath{ NodePath: ygot.NewNodePath( []string{"areas", "area"}, map[string]interface{}{"identifier": Identifier}, @@ -136622,9 +136836,9 @@ func (n *NetworkInstance_Protocol_Ospfv2) Area(Identifier oc.NetworkInstance_Pro } } -// Area returns from NetworkInstance_Protocol_Ospfv2Any the path struct for its child "area". -func (n *NetworkInstance_Protocol_Ospfv2Any) Area(Identifier oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_AreaAny { - return &NetworkInstance_Protocol_Ospfv2_AreaAny{ +// Area returns from NetworkInstance_Protocol_Ospfv2PathAny the path struct for its child "area". +func (n *NetworkInstance_Protocol_Ospfv2PathAny) Area(Identifier NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_AreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_AreaPathAny{ NodePath: ygot.NewNodePath( []string{"areas", "area"}, map[string]interface{}{"identifier": Identifier}, @@ -136633,9 +136847,9 @@ func (n *NetworkInstance_Protocol_Ospfv2Any) Area(Identifier oc.NetworkInstance_ } } -// Global returns from NetworkInstance_Protocol_Ospfv2 the path struct for its child "global". -func (n *NetworkInstance_Protocol_Ospfv2) Global() *NetworkInstance_Protocol_Ospfv2_Global { - return &NetworkInstance_Protocol_Ospfv2_Global{ +// Global returns from NetworkInstance_Protocol_Ospfv2Path the path struct for its child "global". +func (n *NetworkInstance_Protocol_Ospfv2Path) Global() *NetworkInstance_Protocol_Ospfv2_GlobalPath { + return &NetworkInstance_Protocol_Ospfv2_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -136644,9 +136858,9 @@ func (n *NetworkInstance_Protocol_Ospfv2) Global() *NetworkInstance_Protocol_Osp } } -// Global returns from NetworkInstance_Protocol_Ospfv2Any the path struct for its child "global". -func (n *NetworkInstance_Protocol_Ospfv2Any) Global() *NetworkInstance_Protocol_Ospfv2_GlobalAny { - return &NetworkInstance_Protocol_Ospfv2_GlobalAny{ +// Global returns from NetworkInstance_Protocol_Ospfv2PathAny the path struct for its child "global". +func (n *NetworkInstance_Protocol_Ospfv2PathAny) Global() *NetworkInstance_Protocol_Ospfv2_GlobalPathAny { + return &NetworkInstance_Protocol_Ospfv2_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -136655,51 +136869,51 @@ func (n *NetworkInstance_Protocol_Ospfv2Any) Global() *NetworkInstance_Protocol_ } } -// NetworkInstance_Protocol_Ospfv2_Area represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area struct { +// NetworkInstance_Protocol_Ospfv2_AreaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_AreaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_AreaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_AreaAny struct { +// NetworkInstance_Protocol_Ospfv2_AreaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_AreaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Identifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/state/identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Identifier struct { +// NetworkInstance_Protocol_Ospfv2_Area_IdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/config/identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_IdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_IdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/state/identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_IdentifierAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_IdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/config/identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_IdentifierPathAny struct { *ygot.NodePath } -// Identifier returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_Identifier { - return &NetworkInstance_Protocol_Ospfv2_Area_Identifier{ +// Identifier returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_IdentifierPath { + return &NetworkInstance_Protocol_Ospfv2_Area_IdentifierPath{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// Identifier returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_IdentifierAny { - return &NetworkInstance_Protocol_Ospfv2_Area_IdentifierAny{ +// Identifier returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_IdentifierPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_IdentifierPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "identifier"}, + []string{"config", "identifier"}, map[string]interface{}{}, n, ), } } -// InterfaceAny returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_Area) InterfaceAny() *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) InterfaceAny() *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -136708,9 +136922,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) InterfaceAny() *NetworkInstance_P } } -// InterfaceAny returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) InterfaceAny() *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) InterfaceAny() *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -136719,9 +136933,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) InterfaceAny() *NetworkInstanc } } -// Interface returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_Area) Interface(Id string) *NetworkInstance_Protocol_Ospfv2_Area_Interface { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface{ +// Interface returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) Interface(Id string) *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath { + return &NetworkInstance_Protocol_Ospfv2_Area_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -136730,9 +136944,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) Interface(Id string) *NetworkInst } } -// Interface returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Interface(Id string) *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) Interface(Id string) *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -136741,9 +136955,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Interface(Id string) *NetworkI } } -// Lsdb returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "lsdb". -func (n *NetworkInstance_Protocol_Ospfv2_Area) Lsdb() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb{ +// Lsdb returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "lsdb". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) Lsdb() *NetworkInstance_Protocol_Ospfv2_Area_LsdbPath { + return &NetworkInstance_Protocol_Ospfv2_Area_LsdbPath{ NodePath: ygot.NewNodePath( []string{"lsdb"}, map[string]interface{}{}, @@ -136752,9 +136966,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) Lsdb() *NetworkInstance_Protocol_ } } -// Lsdb returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "lsdb". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Lsdb() *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny { - return &NetworkInstance_Protocol_Ospfv2_Area_LsdbAny{ +// Lsdb returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "lsdb". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) Lsdb() *NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny{ NodePath: ygot.NewNodePath( []string{"lsdb"}, map[string]interface{}{}, @@ -136763,9 +136977,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Lsdb() *NetworkInstance_Protoc } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_Area) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_Mpls { - return &NetworkInstance_Protocol_Ospfv2_Area_Mpls{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_MplsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -136774,9 +136988,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) Mpls() *NetworkInstance_Protocol_ } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_MplsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_MplsAny{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -136785,9 +136999,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) Mpls() *NetworkInstance_Protoc } } -// VirtualLinkAny returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "virtual-link". -func (n *NetworkInstance_Protocol_Ospfv2_Area) VirtualLinkAny() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny{ +// VirtualLinkAny returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "virtual-link". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) VirtualLinkAny() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny{ NodePath: ygot.NewNodePath( []string{"virtual-links", "virtual-link"}, map[string]interface{}{"remote-router-id": "*"}, @@ -136796,9 +137010,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) VirtualLinkAny() *NetworkInstance } } -// VirtualLinkAny returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "virtual-link". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) VirtualLinkAny() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny{ +// VirtualLinkAny returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "virtual-link". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) VirtualLinkAny() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny{ NodePath: ygot.NewNodePath( []string{"virtual-links", "virtual-link"}, map[string]interface{}{"remote-router-id": "*"}, @@ -136807,9 +137021,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) VirtualLinkAny() *NetworkInsta } } -// VirtualLink returns from NetworkInstance_Protocol_Ospfv2_Area the path struct for its child "virtual-link". -func (n *NetworkInstance_Protocol_Ospfv2_Area) VirtualLink(RemoteRouterId string) *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink{ +// VirtualLink returns from NetworkInstance_Protocol_Ospfv2_AreaPath the path struct for its child "virtual-link". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPath) VirtualLink(RemoteRouterId string) *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath{ NodePath: ygot.NewNodePath( []string{"virtual-links", "virtual-link"}, map[string]interface{}{"remote-router-id": RemoteRouterId}, @@ -136818,9 +137032,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area) VirtualLink(RemoteRouterId string } } -// VirtualLink returns from NetworkInstance_Protocol_Ospfv2_AreaAny the path struct for its child "virtual-link". -func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) VirtualLink(RemoteRouterId string) *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny{ +// VirtualLink returns from NetworkInstance_Protocol_Ospfv2_AreaPathAny the path struct for its child "virtual-link". +func (n *NetworkInstance_Protocol_Ospfv2_AreaPathAny) VirtualLink(RemoteRouterId string) *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny{ NodePath: ygot.NewNodePath( []string{"virtual-links", "virtual-link"}, map[string]interface{}{"remote-router-id": RemoteRouterId}, @@ -136829,165 +137043,165 @@ func (n *NetworkInstance_Protocol_Ospfv2_AreaAny) VirtualLink(RemoteRouterId str } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface struct { +// NetworkInstance_Protocol_Ospfv2_Area_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/authentication-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/authentication-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/authentication-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/authentication-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetwork represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/hide-network YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetwork struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/hide-network YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/hide-network YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/hide-network YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Id represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Id struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_IdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimary represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/multi-area-adjacency-primary YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimary struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/multi-area-adjacency-primary YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/multi-area-adjacency-primary YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/multi-area-adjacency-primary YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/network-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/network-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/network-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/network-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Passive represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/passive YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Passive struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/passive YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_PassiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/passive YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_PassiveAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/passive YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Priority struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/config/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPathAny struct { *ygot.NodePath } -// AuthenticationType returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "authentication-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) AuthenticationType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationType { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationType{ +// AuthenticationType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "authentication-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) AuthenticationType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-type"}, + []string{"config", "authentication-type"}, map[string]interface{}{}, n, ), } } -// AuthenticationType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "authentication-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) AuthenticationType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypeAny{ +// AuthenticationType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "authentication-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) AuthenticationType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_AuthenticationTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-type"}, + []string{"config", "authentication-type"}, map[string]interface{}{}, n, ), } } -// HideNetwork returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "hide-network". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) HideNetwork() *NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetwork { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetwork{ +// HideNetwork returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "hide-network". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) HideNetwork() *NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPath{ NodePath: ygot.NewNodePath( - []string{"state", "hide-network"}, + []string{"config", "hide-network"}, map[string]interface{}{}, n, ), } } -// HideNetwork returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "hide-network". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) HideNetwork() *NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkAny{ +// HideNetwork returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "hide-network". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) HideNetwork() *NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_HideNetworkPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hide-network"}, + []string{"config", "hide-network"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Id() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Id { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Id{ +// Id returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Id() *NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Id() *NetworkInstance_Protocol_Ospfv2_Area_Interface_IdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_IdAny{ +// Id returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Id() *NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) InterfaceRef() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) InterfaceRef() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -136996,9 +137210,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) InterfaceRef() *Network } } -// InterfaceRef returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) InterfaceRef() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) InterfaceRef() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -137007,9 +137221,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) InterfaceRef() *Netw } } -// LsaFilter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "lsa-filter". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) LsaFilter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter{ +// LsaFilter returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "lsa-filter". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) LsaFilter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath{ NodePath: ygot.NewNodePath( []string{"lsa-filter"}, map[string]interface{}{}, @@ -137018,9 +137232,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) LsaFilter() *NetworkIns } } -// LsaFilter returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "lsa-filter". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) LsaFilter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny{ +// LsaFilter returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "lsa-filter". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) LsaFilter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny{ NodePath: ygot.NewNodePath( []string{"lsa-filter"}, map[string]interface{}{}, @@ -137029,31 +137243,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) LsaFilter() *Network } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -137062,9 +137276,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Mpls() *NetworkInstance } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -137073,31 +137287,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Mpls() *NetworkInsta } } -// MultiAreaAdjacencyPrimary returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "multi-area-adjacency-primary". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) MultiAreaAdjacencyPrimary() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimary { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimary{ +// MultiAreaAdjacencyPrimary returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "multi-area-adjacency-primary". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) MultiAreaAdjacencyPrimary() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPath{ NodePath: ygot.NewNodePath( - []string{"state", "multi-area-adjacency-primary"}, + []string{"config", "multi-area-adjacency-primary"}, map[string]interface{}{}, n, ), } } -// MultiAreaAdjacencyPrimary returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "multi-area-adjacency-primary". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) MultiAreaAdjacencyPrimary() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryAny{ +// MultiAreaAdjacencyPrimary returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "multi-area-adjacency-primary". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) MultiAreaAdjacencyPrimary() *NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_MultiAreaAdjacencyPrimaryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multi-area-adjacency-primary"}, + []string{"config", "multi-area-adjacency-primary"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) NeighborAny() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) NeighborAny() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"router-id": "*"}, @@ -137106,9 +137320,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) NeighborAny() *NetworkI } } -// NeighborAny returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) NeighborAny() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) NeighborAny() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"router-id": "*"}, @@ -137117,9 +137331,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) NeighborAny() *Netwo } } -// Neighbor returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Neighbor(RouterId string) *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Neighbor(RouterId string) *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"router-id": RouterId}, @@ -137128,9 +137342,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Neighbor(RouterId strin } } -// Neighbor returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Neighbor(RouterId string) *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Neighbor(RouterId string) *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"router-id": RouterId}, @@ -137139,75 +137353,75 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Neighbor(RouterId st } } -// NetworkType returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "network-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) NetworkType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkType { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkType{ +// NetworkType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "network-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) NetworkType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "network-type"}, + []string{"config", "network-type"}, map[string]interface{}{}, n, ), } } -// NetworkType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "network-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) NetworkType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypeAny{ +// NetworkType returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "network-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) NetworkType() *NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_NetworkTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "network-type"}, + []string{"config", "network-type"}, map[string]interface{}{}, n, ), } } -// Passive returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Passive() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Passive { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Passive{ +// Passive returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Passive() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePath{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Passive returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "passive". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Passive() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PassiveAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PassiveAny{ +// Passive returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "passive". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Passive() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PassivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "passive"}, + []string{"config", "passive"}, map[string]interface{}{}, n, ), } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Priority { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Priority{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_PriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "priority"}, + []string{"config", "priority"}, map[string]interface{}{}, n, ), } } -// Timers returns from NetworkInstance_Protocol_Ospfv2_Area_Interface the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Timers() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers{ +// Timers returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePath) Timers() *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -137216,9 +137430,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface) Timers() *NetworkInstan } } -// Timers returns from NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Timers() *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfacePathAny) Timers() *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -137227,145 +137441,145 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_InterfaceAny) Timers() *NetworkIns } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef) Interface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Interface { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath) Interface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny) Interface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef) Subinterface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_All represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter/state/all YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_All struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter/config/all YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter/state/all YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/lsa-filter/config/all YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPathAny struct { *ygot.NodePath } -// All returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter the path struct for its child "all". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter) All() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_All { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_All{ +// All returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath the path struct for its child "all". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPath) All() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPath{ NodePath: ygot.NewNodePath( - []string{"state", "all"}, + []string{"config", "all"}, map[string]interface{}{}, n, ), } } -// All returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny the path struct for its child "all". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterAny) All() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllAny{ +// All returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny the path struct for its child "all". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilterPathAny) All() *NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_LsaFilter_AllPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "all"}, + []string{"config", "all"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/state/traffic-engineering-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/config/traffic-engineering-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/state/traffic-engineering-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/config/traffic-engineering-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPathAny struct { *ygot.NodePath } -// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync{ +// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -137374,9 +137588,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls) IgpLdpSync() *Netw } } -// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny{ +// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -137385,115 +137599,115 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny) IgpLdpSync() *N } } -// TrafficEngineeringMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls the path struct for its child "traffic-engineering-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls) TrafficEngineeringMetric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetric { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetric{ +// TrafficEngineeringMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath the path struct for its child "traffic-engineering-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPath) TrafficEngineeringMetric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-metric"}, + []string{"config", "traffic-engineering-metric"}, map[string]interface{}{}, n, ), } } -// TrafficEngineeringMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny the path struct for its child "traffic-engineering-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsAny) TrafficEngineeringMetric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricAny{ +// TrafficEngineeringMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny the path struct for its child "traffic-engineering-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_MplsPathAny) TrafficEngineeringMetric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_TrafficEngineeringMetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-metric"}, + []string{"config", "traffic-engineering-metric"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Enabled struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelay struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Synchronized represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/synchronized YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Synchronized struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/synchronized YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/synchronized YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/mpls/igp-ldp-sync/state/synchronized YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync) Enabled() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Enabled { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath) Enabled() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelay { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelay{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayAny{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_PostSessionUpDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// Synchronized returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync the path struct for its child "synchronized". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync) Synchronized() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Synchronized { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_Synchronized{ +// Synchronized returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath the path struct for its child "synchronized". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPath) Synchronized() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPath{ NodePath: ygot.NewNodePath( []string{"state", "synchronized"}, map[string]interface{}{}, @@ -137502,9 +137716,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync) Synchro } } -// Synchronized returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny the path struct for its child "synchronized". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny) Synchronized() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedAny{ +// Synchronized returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny the path struct for its child "synchronized". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncPathAny) Synchronized() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSync_SynchronizedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "synchronized"}, map[string]interface{}{}, @@ -137513,129 +137727,129 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Mpls_IgpLdpSyncAny) Sync } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyState represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyState struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStateAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/backup-designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/backup-designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/backup-designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/backup-designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/dead-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTime struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/dead-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/dead-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/dead-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/last-established-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTime struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/last-established-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/last-established-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/last-established-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/config/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/config/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilities represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/optional-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilities struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/optional-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/optional-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/optional-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Priority struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/retranmission-queue-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLength struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/retranmission-queue-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/retranmission-queue-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/retranmission-queue-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/config/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/config/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/state-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChanges struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/state-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/state-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/neighbors/neighbor/state/state-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPathAny struct { *ygot.NodePath } -// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyState { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyState{ +// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePath{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -137644,9 +137858,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) AdjacencyState } } -// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStateAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStateAny{ +// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_AdjacencyStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -137655,9 +137869,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) AdjacencySt } } -// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "backup-designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouter{ +// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "backup-designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "backup-designated-router"}, map[string]interface{}{}, @@ -137666,9 +137880,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) BackupDesignat } } -// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "backup-designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterAny{ +// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "backup-designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_BackupDesignatedRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "backup-designated-router"}, map[string]interface{}{}, @@ -137677,9 +137891,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) BackupDesig } } -// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "dead-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTime { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTime{ +// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "dead-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePath{ NodePath: ygot.NewNodePath( []string{"state", "dead-time"}, map[string]interface{}{}, @@ -137688,9 +137902,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) DeadTime() *Ne } } -// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "dead-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimeAny{ +// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "dead-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DeadTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "dead-time"}, map[string]interface{}{}, @@ -137699,9 +137913,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) DeadTime() } } -// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouter{ +// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-router"}, map[string]interface{}{}, @@ -137710,9 +137924,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) DesignatedRout } } -// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterAny{ +// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_DesignatedRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-router"}, map[string]interface{}{}, @@ -137721,9 +137935,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) DesignatedR } } -// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "last-established-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTime { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTime{ +// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "last-established-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePath{ NodePath: ygot.NewNodePath( []string{"state", "last-established-time"}, map[string]interface{}{}, @@ -137732,9 +137946,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) LastEstablishe } } -// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "last-established-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimeAny{ +// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "last-established-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_LastEstablishedTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-established-time"}, map[string]interface{}{}, @@ -137743,31 +137957,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) LastEstabli } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "optional-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilities { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilities{ +// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "optional-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPath{ NodePath: ygot.NewNodePath( []string{"state", "optional-capabilities"}, map[string]interface{}{}, @@ -137776,9 +137990,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) OptionalCapabi } } -// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "optional-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesAny{ +// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "optional-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_OptionalCapabilitiesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional-capabilities"}, map[string]interface{}{}, @@ -137787,9 +138001,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) OptionalCap } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Priority { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_Priority{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -137798,9 +138012,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) Priority() *Ne } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -137809,9 +138023,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) Priority() } } -// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "retranmission-queue-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLength { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLength{ +// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "retranmission-queue-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "retranmission-queue-length"}, map[string]interface{}{}, @@ -137820,9 +138034,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) RetranmissionQ } } -// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "retranmission-queue-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthAny{ +// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "retranmission-queue-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RetranmissionQueueLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retranmission-queue-length"}, map[string]interface{}{}, @@ -137831,31 +138045,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) Retranmissi } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterId { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor the path struct for its child "state-changes". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChanges { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChanges{ +// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath the path struct for its child "state-changes". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPath) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "state-changes"}, map[string]interface{}{}, @@ -137864,9 +138078,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor) StateChanges() } } -// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny the path struct for its child "state-changes". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesAny{ +// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny the path struct for its child "state-changes". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborPathAny) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Neighbor_StateChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "state-changes"}, map[string]interface{}{}, @@ -137875,135 +138089,135 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_NeighborAny) StateChange } } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/dead-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadInterval struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/dead-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/dead-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/dead-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloInterval struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/retransmission-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionInterval struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/retransmission-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/state/retransmission-interval YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/interfaces/interface/timers/config/retransmission-interval YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPathAny struct { *ygot.NodePath } -// DeadInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers the path struct for its child "dead-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers) DeadInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadInterval { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadInterval{ +// DeadInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath the path struct for its child "dead-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath) DeadInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "dead-interval"}, + []string{"config", "dead-interval"}, map[string]interface{}{}, n, ), } } -// DeadInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny the path struct for its child "dead-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny) DeadInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalAny{ +// DeadInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny the path struct for its child "dead-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny) DeadInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_DeadIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dead-interval"}, + []string{"config", "dead-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers) HelloInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloInterval { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloInterval{ +// HelloInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath) HelloInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny) HelloInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny) HelloInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// RetransmissionInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers the path struct for its child "retransmission-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers) RetransmissionInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionInterval { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionInterval{ +// RetransmissionInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath the path struct for its child "retransmission-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPath) RetransmissionInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "retransmission-interval"}, + []string{"config", "retransmission-interval"}, map[string]interface{}{}, n, ), } } -// RetransmissionInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny the path struct for its child "retransmission-interval". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersAny) RetransmissionInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalAny{ +// RetransmissionInterval returns from NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny the path struct for its child "retransmission-interval". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Interface_TimersPathAny) RetransmissionInterval() *NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Interface_Timers_RetransmissionIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "retransmission-interval"}, + []string{"config", "retransmission-interval"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb struct { +// NetworkInstance_Protocol_Ospfv2_Area_LsdbPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_LsdbPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_LsdbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_LsdbAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_Identifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/state/identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_Identifier struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/state/identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/state/identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/state/identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPathAny struct { *ygot.NodePath } -// Identifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_Identifier { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_Identifier{ +// Identifier returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPath the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPath) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPath{ NodePath: ygot.NewNodePath( []string{"state", "identifier"}, map[string]interface{}{}, @@ -138012,9 +138226,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) Identifier() *NetworkInstanc } } -// Identifier returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbAny the path struct for its child "identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierAny{ +// Identifier returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny the path struct for its child "identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny) Identifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_IdentifierPathAny{ NodePath: ygot.NewNodePath( []string{"state", "identifier"}, map[string]interface{}{}, @@ -138023,9 +138237,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) Identifier() *NetworkInst } } -// LsaTypeAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb the path struct for its child "lsa-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) LsaTypeAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny{ +// LsaTypeAny returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPath the path struct for its child "lsa-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPath) LsaTypeAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny{ NodePath: ygot.NewNodePath( []string{"lsa-types", "lsa-type"}, map[string]interface{}{"type": "*"}, @@ -138034,9 +138248,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) LsaTypeAny() *NetworkInstanc } } -// LsaTypeAny returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbAny the path struct for its child "lsa-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) LsaTypeAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny{ +// LsaTypeAny returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny the path struct for its child "lsa-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny) LsaTypeAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny{ NodePath: ygot.NewNodePath( []string{"lsa-types", "lsa-type"}, map[string]interface{}{"type": "*"}, @@ -138045,9 +138259,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) LsaTypeAny() *NetworkInst } } -// LsaType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb the path struct for its child "lsa-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) LsaType(Type oc.E_OpenconfigOspfTypes_OSPF_LSA_TYPE) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType{ +// LsaType returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPath the path struct for its child "lsa-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPath) LsaType(Type E_OpenconfigOspfTypes_OSPF_LSA_TYPE) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath{ NodePath: ygot.NewNodePath( []string{"lsa-types", "lsa-type"}, map[string]interface{}{"type": Type}, @@ -138056,9 +138270,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb) LsaType(Type oc.E_Openconfig } } -// LsaType returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbAny the path struct for its child "lsa-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) LsaType(Type oc.E_OpenconfigOspfTypes_OSPF_LSA_TYPE) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny{ +// LsaType returns from NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny the path struct for its child "lsa-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbPathAny) LsaType(Type E_OpenconfigOspfTypes_OSPF_LSA_TYPE) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny{ NodePath: ygot.NewNodePath( []string{"lsa-types", "lsa-type"}, map[string]interface{}{"type": Type}, @@ -138067,29 +138281,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_LsdbAny) LsaType(Type oc.E_Opencon } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePathAny struct { *ygot.NodePath } -// LsaAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType the path struct for its child "lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) LsaAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny{ +// LsaAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath the path struct for its child "lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath) LsaAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny{ NodePath: ygot.NewNodePath( []string{"lsas", "lsa"}, map[string]interface{}{"link-state-id": "*"}, @@ -138098,9 +138312,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) LsaAny() *NetworkIns } } -// LsaAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny the path struct for its child "lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) LsaAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny{ +// LsaAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny the path struct for its child "lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny) LsaAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny{ NodePath: ygot.NewNodePath( []string{"lsas", "lsa"}, map[string]interface{}{"link-state-id": "*"}, @@ -138109,9 +138323,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) LsaAny() *Network } } -// Lsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType the path struct for its child "lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) Lsa(LinkStateId string) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa{ +// Lsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath the path struct for its child "lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath) Lsa(LinkStateId string) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath{ NodePath: ygot.NewNodePath( []string{"lsas", "lsa"}, map[string]interface{}{"link-state-id": LinkStateId}, @@ -138120,9 +138334,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) Lsa(LinkStateId stri } } -// Lsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny the path struct for its child "lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) Lsa(LinkStateId string) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny{ +// Lsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny the path struct for its child "lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny) Lsa(LinkStateId string) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny{ NodePath: ygot.NewNodePath( []string{"lsas", "lsa"}, map[string]interface{}{"link-state-id": LinkStateId}, @@ -138131,9 +138345,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) Lsa(LinkStateId s } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -138142,9 +138356,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType) Type() *NetworkInsta } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypePathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -138153,69 +138367,69 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaTypeAny) Type() *NetworkIn } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/advertising-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/advertising-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/advertising-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/advertising-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Age represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/age YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Age struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/age YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/age YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/age YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Checksum represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/checksum YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Checksum struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/checksum YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/checksum YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/checksum YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/link-state-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/link-state-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/link-state-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/link-state-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumber represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/sequence-number YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumber struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/sequence-number YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/sequence-number YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/state/sequence-number YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPathAny struct { *ygot.NodePath } -// AdvertisingRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "advertising-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) AdvertisingRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouter{ +// AdvertisingRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "advertising-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) AdvertisingRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "advertising-router"}, map[string]interface{}{}, @@ -138224,9 +138438,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) AdvertisingRoute } } -// AdvertisingRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "advertising-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) AdvertisingRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterAny{ +// AdvertisingRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "advertising-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) AdvertisingRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AdvertisingRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "advertising-router"}, map[string]interface{}{}, @@ -138235,9 +138449,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) AdvertisingRo } } -// Age returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "age". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) Age() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Age { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Age{ +// Age returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "age". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) Age() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePath{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -138246,9 +138460,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) Age() *NetworkIn } } -// Age returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "age". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) Age() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgeAny{ +// Age returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "age". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) Age() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AgePathAny{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -138257,9 +138471,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) Age() *Networ } } -// AsExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "as-external-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) AsExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa{ +// AsExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "as-external-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) AsExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath{ NodePath: ygot.NewNodePath( []string{"as-external-lsa"}, map[string]interface{}{}, @@ -138268,9 +138482,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) AsExternalLsa() } } -// AsExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "as-external-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) AsExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny{ +// AsExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "as-external-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) AsExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny{ NodePath: ygot.NewNodePath( []string{"as-external-lsa"}, map[string]interface{}{}, @@ -138279,9 +138493,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) AsExternalLsa } } -// Checksum returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "checksum". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) Checksum() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Checksum { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_Checksum{ +// Checksum returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "checksum". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) Checksum() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPath{ NodePath: ygot.NewNodePath( []string{"state", "checksum"}, map[string]interface{}{}, @@ -138290,9 +138504,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) Checksum() *Netw } } -// Checksum returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "checksum". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) Checksum() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumAny{ +// Checksum returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "checksum". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) Checksum() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_ChecksumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "checksum"}, map[string]interface{}{}, @@ -138301,9 +138515,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) Checksum() *N } } -// LinkStateId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "link-state-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) LinkStateId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateId{ +// LinkStateId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "link-state-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) LinkStateId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPath{ NodePath: ygot.NewNodePath( []string{"state", "link-state-id"}, map[string]interface{}{}, @@ -138312,9 +138526,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) LinkStateId() *N } } -// LinkStateId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "link-state-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) LinkStateId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdAny{ +// LinkStateId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "link-state-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) LinkStateId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_LinkStateIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-state-id"}, map[string]interface{}{}, @@ -138323,9 +138537,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) LinkStateId() } } -// NetworkLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "network-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) NetworkLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa{ +// NetworkLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "network-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) NetworkLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath{ NodePath: ygot.NewNodePath( []string{"network-lsa"}, map[string]interface{}{}, @@ -138334,9 +138548,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) NetworkLsa() *Ne } } -// NetworkLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "network-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) NetworkLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny{ +// NetworkLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "network-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) NetworkLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny{ NodePath: ygot.NewNodePath( []string{"network-lsa"}, map[string]interface{}{}, @@ -138345,9 +138559,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) NetworkLsa() } } -// NssaExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "nssa-external-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) NssaExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa{ +// NssaExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "nssa-external-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) NssaExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath{ NodePath: ygot.NewNodePath( []string{"nssa-external-lsa"}, map[string]interface{}{}, @@ -138356,9 +138570,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) NssaExternalLsa( } } -// NssaExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "nssa-external-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) NssaExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny{ +// NssaExternalLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "nssa-external-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) NssaExternalLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny{ NodePath: ygot.NewNodePath( []string{"nssa-external-lsa"}, map[string]interface{}{}, @@ -138367,9 +138581,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) NssaExternalL } } -// OpaqueLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "opaque-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) OpaqueLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa{ +// OpaqueLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "opaque-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) OpaqueLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath{ NodePath: ygot.NewNodePath( []string{"opaque-lsa"}, map[string]interface{}{}, @@ -138378,9 +138592,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) OpaqueLsa() *Net } } -// OpaqueLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "opaque-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) OpaqueLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny{ +// OpaqueLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "opaque-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) OpaqueLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny{ NodePath: ygot.NewNodePath( []string{"opaque-lsa"}, map[string]interface{}{}, @@ -138389,9 +138603,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) OpaqueLsa() * } } -// RouterLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "router-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) RouterLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa{ +// RouterLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "router-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) RouterLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath{ NodePath: ygot.NewNodePath( []string{"router-lsa"}, map[string]interface{}{}, @@ -138400,9 +138614,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) RouterLsa() *Net } } -// RouterLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "router-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) RouterLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny{ +// RouterLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "router-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) RouterLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny{ NodePath: ygot.NewNodePath( []string{"router-lsa"}, map[string]interface{}{}, @@ -138411,9 +138625,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) RouterLsa() * } } -// SequenceNumber returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "sequence-number". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) SequenceNumber() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumber { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumber{ +// SequenceNumber returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "sequence-number". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) SequenceNumber() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPath{ NodePath: ygot.NewNodePath( []string{"state", "sequence-number"}, map[string]interface{}{}, @@ -138422,9 +138636,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) SequenceNumber() } } -// SequenceNumber returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "sequence-number". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) SequenceNumber() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberAny{ +// SequenceNumber returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "sequence-number". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) SequenceNumber() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SequenceNumberPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sequence-number"}, map[string]interface{}{}, @@ -138433,9 +138647,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) SequenceNumbe } } -// SummaryLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa the path struct for its child "summary-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) SummaryLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa{ +// SummaryLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath the path struct for its child "summary-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPath) SummaryLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath{ NodePath: ygot.NewNodePath( []string{"summary-lsa"}, map[string]interface{}{}, @@ -138444,9 +138658,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa) SummaryLsa() *Ne } } -// SummaryLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny the path struct for its child "summary-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) SummaryLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny{ +// SummaryLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny the path struct for its child "summary-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaPathAny) SummaryLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny{ NodePath: ygot.NewNodePath( []string{"summary-lsa"}, map[string]interface{}{}, @@ -138455,69 +138669,69 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_LsaAny) SummaryLsa() } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTag struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Mask represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Mask struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/state/metric-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePathAny struct { *ygot.NodePath } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTag { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTag{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPath{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138526,9 +138740,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Ex } } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagAny{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ExternalRouteTagPathAny{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138537,9 +138751,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddress{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138548,9 +138762,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Fo } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressAny{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_ForwardingAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138559,9 +138773,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Mask { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Mask{ +// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPath{ NodePath: ygot.NewNodePath( []string{"state", "mask"}, map[string]interface{}{}, @@ -138570,9 +138784,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Ma } } -// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskAny{ +// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MaskPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mask"}, map[string]interface{}{}, @@ -138581,9 +138795,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -138592,9 +138806,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Me } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -138603,9 +138817,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "metric-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricType{ +// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "metric-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePath{ NodePath: ygot.NewNodePath( []string{"state", "metric-type"}, map[string]interface{}{}, @@ -138614,9 +138828,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Me } } -// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "metric-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypeAny{ +// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "metric-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_MetricTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric-type"}, map[string]interface{}{}, @@ -138625,9 +138839,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -138636,9 +138850,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Ty } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -138647,9 +138861,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPath) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -138658,9 +138872,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa) Ty } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaPathAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -138669,59 +138883,59 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsaAny) } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTag struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Tos represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Tos struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/as-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPathAny struct { *ygot.NodePath } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTag { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTag{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPath{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138730,9 +138944,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagAny{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ExternalRouteTagPathAny{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138741,9 +138955,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddress{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138752,9 +138966,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressAny{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_ForwardingAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138763,9 +138977,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -138774,9 +138988,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -138785,9 +138999,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Tos { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_Tos{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePath) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPath{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -138796,9 +139010,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServiceAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosAny{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfServicePathAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_TypeOfService_TosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -138807,39 +139021,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_AsExternalLsa_Typ } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/attached-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/attached-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/attached-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/attached-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMask represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/network-mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMask struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/network-mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/network-mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/network-lsa/state/network-mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPathAny struct { *ygot.NodePath } -// AttachedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa the path struct for its child "attached-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa) AttachedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouter{ +// AttachedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath the path struct for its child "attached-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath) AttachedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "attached-router"}, map[string]interface{}{}, @@ -138848,9 +139062,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa) Attac } } -// AttachedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny the path struct for its child "attached-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny) AttachedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterAny{ +// AttachedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny the path struct for its child "attached-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny) AttachedRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_AttachedRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attached-router"}, map[string]interface{}{}, @@ -138859,9 +139073,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny) At } } -// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa the path struct for its child "network-mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMask { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMask{ +// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath the path struct for its child "network-mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPath) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPath{ NodePath: ygot.NewNodePath( []string{"state", "network-mask"}, map[string]interface{}{}, @@ -138870,9 +139084,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa) Netwo } } -// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny the path struct for its child "network-mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskAny{ +// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny the path struct for its child "network-mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaPathAny) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsa_NetworkMaskPathAny{ NodePath: ygot.NewNodePath( []string{"state", "network-mask"}, map[string]interface{}{}, @@ -138881,79 +139095,79 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NetworkLsaAny) Ne } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTag struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Mask represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Mask struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/metric-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Propagate represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/propagate YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Propagate struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/propagate YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/propagate YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagateAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/state/propagate YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePathAny struct { *ygot.NodePath } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTag { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTag{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPath{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138962,9 +139176,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagAny{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ExternalRouteTagPathAny{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -138973,9 +139187,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddress{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138984,9 +139198,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressAny{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_ForwardingAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -138995,9 +139209,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Mask { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Mask{ +// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPath{ NodePath: ygot.NewNodePath( []string{"state", "mask"}, map[string]interface{}{}, @@ -139006,9 +139220,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskAny{ +// Mask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) Mask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MaskPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mask"}, map[string]interface{}{}, @@ -139017,9 +139231,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -139028,9 +139242,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -139039,9 +139253,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "metric-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricType{ +// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "metric-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePath{ NodePath: ygot.NewNodePath( []string{"state", "metric-type"}, map[string]interface{}{}, @@ -139050,9 +139264,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "metric-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypeAny{ +// MetricType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "metric-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) MetricType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_MetricTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric-type"}, map[string]interface{}{}, @@ -139061,9 +139275,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// Propagate returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "propagate". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) Propagate() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Propagate { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_Propagate{ +// Propagate returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "propagate". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) Propagate() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePath{ NodePath: ygot.NewNodePath( []string{"state", "propagate"}, map[string]interface{}{}, @@ -139072,9 +139286,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// Propagate returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "propagate". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) Propagate() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagateAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagateAny{ +// Propagate returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "propagate". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) Propagate() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_PropagatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "propagate"}, map[string]interface{}{}, @@ -139083,9 +139297,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -139094,9 +139308,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -139105,9 +139319,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPath) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -139116,9 +139330,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa) } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaPathAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -139127,59 +139341,59 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsaAn } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTag struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/external-route-tag YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/forwarding-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Tos represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Tos struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/nssa-external-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPathAny struct { *ygot.NodePath } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTag { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTag{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPath{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -139188,9 +139402,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny the path struct for its child "external-route-tag". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagAny{ +// ExternalRouteTag returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny the path struct for its child "external-route-tag". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny) ExternalRouteTag() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ExternalRouteTagPathAny{ NodePath: ygot.NewNodePath( []string{"state", "external-route-tag"}, map[string]interface{}{}, @@ -139199,9 +139413,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddress{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -139210,9 +139424,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny the path struct for its child "forwarding-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressAny{ +// ForwardingAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny the path struct for its child "forwarding-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny) ForwardingAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_ForwardingAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forwarding-address"}, map[string]interface{}{}, @@ -139221,9 +139435,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -139232,9 +139446,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -139243,9 +139457,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Tos { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_Tos{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePath) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPath{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -139254,9 +139468,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServiceAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosAny{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfServicePathAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_TypeOfService_TosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -139265,39 +139479,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_NssaExternalLsa_T } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Scope represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/scope YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Scope struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/scope YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/scope YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/scope YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePathAny struct { *ygot.NodePath } -// ExtendedLink returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "extended-link". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) ExtendedLink() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink{ +// ExtendedLink returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "extended-link". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) ExtendedLink() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath{ NodePath: ygot.NewNodePath( []string{"extended-link"}, map[string]interface{}{}, @@ -139306,9 +139520,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Extend } } -// ExtendedLink returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "extended-link". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) ExtendedLink() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny{ +// ExtendedLink returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "extended-link". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) ExtendedLink() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny{ NodePath: ygot.NewNodePath( []string{"extended-link"}, map[string]interface{}{}, @@ -139317,9 +139531,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Ext } } -// ExtendedPrefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "extended-prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) ExtendedPrefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix{ +// ExtendedPrefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "extended-prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) ExtendedPrefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath{ NodePath: ygot.NewNodePath( []string{"extended-prefix"}, map[string]interface{}{}, @@ -139328,9 +139542,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Extend } } -// ExtendedPrefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "extended-prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) ExtendedPrefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny{ +// ExtendedPrefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "extended-prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) ExtendedPrefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny{ NodePath: ygot.NewNodePath( []string{"extended-prefix"}, map[string]interface{}{}, @@ -139339,9 +139553,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Ext } } -// GraceLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "grace-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) GraceLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa{ +// GraceLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "grace-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) GraceLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPath{ NodePath: ygot.NewNodePath( []string{"grace-lsa"}, map[string]interface{}{}, @@ -139350,9 +139564,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) GraceL } } -// GraceLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "grace-lsa". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) GraceLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaAny{ +// GraceLsa returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "grace-lsa". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) GraceLsa() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPathAny{ NodePath: ygot.NewNodePath( []string{"grace-lsa"}, map[string]interface{}{}, @@ -139361,9 +139575,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Gra } } -// RouterInformation returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "router-information". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) RouterInformation() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation{ +// RouterInformation returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "router-information". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) RouterInformation() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPath{ NodePath: ygot.NewNodePath( []string{"router-information"}, map[string]interface{}{}, @@ -139372,9 +139586,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Router } } -// RouterInformation returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "router-information". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) RouterInformation() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationAny{ +// RouterInformation returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "router-information". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) RouterInformation() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPathAny{ NodePath: ygot.NewNodePath( []string{"router-information"}, map[string]interface{}{}, @@ -139383,9 +139597,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Rou } } -// Scope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "scope". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Scope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Scope { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Scope{ +// Scope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "scope". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) Scope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePath{ NodePath: ygot.NewNodePath( []string{"state", "scope"}, map[string]interface{}{}, @@ -139394,9 +139608,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Scope( } } -// Scope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "scope". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Scope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopeAny{ +// Scope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "scope". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) Scope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ScopePathAny{ NodePath: ygot.NewNodePath( []string{"state", "scope"}, map[string]interface{}{}, @@ -139405,9 +139619,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Sco } } -// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering{ +// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPath{ NodePath: ygot.NewNodePath( []string{"traffic-engineering"}, map[string]interface{}{}, @@ -139416,9 +139630,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Traffi } } -// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringAny{ +// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPathAny{ NodePath: ygot.NewNodePath( []string{"traffic-engineering"}, map[string]interface{}{}, @@ -139427,9 +139641,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Tra } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139438,9 +139652,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Type() } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139449,9 +139663,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Typ } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -139460,9 +139674,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa) Unknow } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -139471,49 +139685,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsaAny) Unk } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkData represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-data YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkData struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-data YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-data YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-data YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/state/link-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePathAny struct { *ygot.NodePath } -// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink the path struct for its child "link-data". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkData { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkData{ +// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath the path struct for its child "link-data". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPath{ NodePath: ygot.NewNodePath( []string{"state", "link-data"}, map[string]interface{}{}, @@ -139522,9 +139736,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny the path struct for its child "link-data". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataAny{ +// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny the path struct for its child "link-data". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkDataPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-data"}, map[string]interface{}{}, @@ -139533,9 +139747,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -139544,9 +139758,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -139555,9 +139769,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink the path struct for its child "link-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkType{ +// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath the path struct for its child "link-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPath) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePath{ NodePath: ygot.NewNodePath( []string{"state", "link-type"}, map[string]interface{}{}, @@ -139566,9 +139780,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny the path struct for its child "link-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkAny) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypeAny{ +// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny the path struct for its child "link-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLinkPathAny) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_LinkTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-type"}, map[string]interface{}{}, @@ -139577,29 +139791,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePathAny struct { *ygot.NodePath } -// AdjacencySid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv) AdjacencySid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid{ +// AdjacencySid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath) AdjacencySid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath{ NodePath: ygot.NewNodePath( []string{"adjacency-sid"}, map[string]interface{}{}, @@ -139608,9 +139822,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// AdjacencySid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny the path struct for its child "adjacency-sid". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny) AdjacencySid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny{ +// AdjacencySid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny the path struct for its child "adjacency-sid". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny) AdjacencySid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny{ NodePath: ygot.NewNodePath( []string{"adjacency-sid"}, map[string]interface{}{}, @@ -139619,9 +139833,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139630,9 +139844,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139641,9 +139855,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -139652,9 +139866,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -139663,79 +139877,79 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Backup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/backup YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Backup struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/backup YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/backup YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/backup YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Group represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/group YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Group struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/group YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/group YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/group YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifier struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValue struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Weight struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/weight YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/adjacency-sid/state/weight YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPathAny struct { *ygot.NodePath } -// Backup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "backup". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) Backup() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Backup { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Backup{ +// Backup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "backup". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) Backup() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPath{ NodePath: ygot.NewNodePath( []string{"state", "backup"}, map[string]interface{}{}, @@ -139744,9 +139958,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Backup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "backup". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) Backup() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupAny{ +// Backup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "backup". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) Backup() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_BackupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "backup"}, map[string]interface{}{}, @@ -139755,9 +139969,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Group returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) Group() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Group { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Group{ +// Group returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) Group() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPath{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -139766,9 +139980,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Group returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) Group() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupAny{ +// Group returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) Group() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -139777,9 +139991,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifier { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifier{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPath{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -139788,9 +140002,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierAny{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_MultiTopologyIdentifierPathAny{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -139799,9 +140013,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "sid-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidType{ +// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "sid-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-type"}, map[string]interface{}{}, @@ -139810,9 +140024,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "sid-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypeAny{ +// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "sid-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-type"}, map[string]interface{}{}, @@ -139821,9 +140035,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValue { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValue{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -139832,9 +140046,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValueAny{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_SidValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -139843,9 +140057,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Weight { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_Weight{ +// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPath) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -139854,9 +140068,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidAny) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySidPathAny) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_AdjacencySid_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -139865,49 +140079,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-link/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -139916,9 +140130,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -139927,9 +140141,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139938,9 +140152,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -139949,9 +140163,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -139960,9 +140174,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedLink_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -139971,79 +140185,79 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/address-family YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamily struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/address-family YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/address-family YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/address-family YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Attached represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/attached YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Attached struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/attached YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/attached YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/attached YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Node represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/node YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Node struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/node YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/node YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/node YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Prefix struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLength struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/prefix-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/route-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/route-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/route-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/state/route-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePathAny struct { *ygot.NodePath } -// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "address-family". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamily { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamily{ +// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "address-family". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPath{ NodePath: ygot.NewNodePath( []string{"state", "address-family"}, map[string]interface{}{}, @@ -140052,9 +140266,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "address-family". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "address-family". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address-family"}, map[string]interface{}{}, @@ -140063,9 +140277,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Attached returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "attached". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) Attached() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Attached { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Attached{ +// Attached returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "attached". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) Attached() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPath{ NodePath: ygot.NewNodePath( []string{"state", "attached"}, map[string]interface{}{}, @@ -140074,9 +140288,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Attached returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "attached". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) Attached() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedAny{ +// Attached returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "attached". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) Attached() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_AttachedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "attached"}, map[string]interface{}{}, @@ -140085,9 +140299,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Node returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "node". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) Node() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Node { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Node{ +// Node returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "node". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) Node() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePath{ NodePath: ygot.NewNodePath( []string{"state", "node"}, map[string]interface{}{}, @@ -140096,9 +140310,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Node returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "node". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) Node() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodeAny{ +// Node returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "node". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) Node() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_NodePathAny{ NodePath: ygot.NewNodePath( []string{"state", "node"}, map[string]interface{}{}, @@ -140107,9 +140321,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Prefix { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -140118,9 +140332,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -140129,9 +140343,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "prefix-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLength { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLength{ +// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "prefix-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix-length"}, map[string]interface{}{}, @@ -140140,9 +140354,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "prefix-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthAny{ +// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "prefix-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix-length"}, map[string]interface{}{}, @@ -140151,9 +140365,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RouteType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix the path struct for its child "route-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix) RouteType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteType{ +// RouteType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath the path struct for its child "route-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPath) RouteType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePath{ NodePath: ygot.NewNodePath( []string{"state", "route-type"}, map[string]interface{}{}, @@ -140162,9 +140376,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RouteType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny the path struct for its child "route-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixAny) RouteType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypeAny{ +// RouteType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny the path struct for its child "route-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefixPathAny) RouteType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_RouteTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "route-type"}, map[string]interface{}{}, @@ -140173,29 +140387,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePathAny struct { *ygot.NodePath } -// ExtendedPrefixRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv the path struct for its child "extended-prefix-range". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv) ExtendedPrefixRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange{ +// ExtendedPrefixRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath the path struct for its child "extended-prefix-range". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath) ExtendedPrefixRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath{ NodePath: ygot.NewNodePath( []string{"extended-prefix-range"}, map[string]interface{}{}, @@ -140204,9 +140418,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// ExtendedPrefixRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny the path struct for its child "extended-prefix-range". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny) ExtendedPrefixRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny{ +// ExtendedPrefixRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny the path struct for its child "extended-prefix-range". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny) ExtendedPrefixRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny{ NodePath: ygot.NewNodePath( []string{"extended-prefix-range"}, map[string]interface{}{}, @@ -140215,9 +140429,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixSid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv) PrefixSid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid{ +// PrefixSid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath) PrefixSid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath{ NodePath: ygot.NewNodePath( []string{"prefix-sid"}, map[string]interface{}{}, @@ -140226,9 +140440,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixSid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny the path struct for its child "prefix-sid". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny) PrefixSid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny{ +// PrefixSid returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny the path struct for its child "prefix-sid". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny) PrefixSid() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sid"}, map[string]interface{}{}, @@ -140237,9 +140451,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv the path struct for its child "sid-label-binding". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding{ +// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath the path struct for its child "sid-label-binding". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath{ NodePath: ygot.NewNodePath( []string{"sid-label-binding"}, map[string]interface{}{}, @@ -140248,9 +140462,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny the path struct for its child "sid-label-binding". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny{ +// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny the path struct for its child "sid-label-binding". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny{ NodePath: ygot.NewNodePath( []string{"sid-label-binding"}, map[string]interface{}{}, @@ -140259,9 +140473,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -140270,9 +140484,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -140281,9 +140495,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -140292,9 +140506,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -140303,69 +140517,69 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/address-family YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamily struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/address-family YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/address-family YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/address-family YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterArea represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/inter-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterArea struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/inter-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/inter-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/inter-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_Prefix struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLength struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/prefix-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSize represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/range-size YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSize struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/range-size YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/range-size YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/extended-prefix-range/state/range-size YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePathAny struct { *ygot.NodePath } -// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange the path struct for its child "address-family". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamily { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamily{ +// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath the path struct for its child "address-family". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPath{ NodePath: ygot.NewNodePath( []string{"state", "address-family"}, map[string]interface{}{}, @@ -140374,9 +140588,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny the path struct for its child "address-family". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny the path struct for its child "address-family". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny) AddressFamily() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address-family"}, map[string]interface{}{}, @@ -140385,9 +140599,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// InterArea returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange the path struct for its child "inter-area". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange) InterArea() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterArea { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterArea{ +// InterArea returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath the path struct for its child "inter-area". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath) InterArea() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPath{ NodePath: ygot.NewNodePath( []string{"state", "inter-area"}, map[string]interface{}{}, @@ -140396,9 +140610,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// InterArea returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny the path struct for its child "inter-area". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny) InterArea() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaAny{ +// InterArea returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny the path struct for its child "inter-area". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny) InterArea() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_InterAreaPathAny{ NodePath: ygot.NewNodePath( []string{"state", "inter-area"}, map[string]interface{}{}, @@ -140407,9 +140621,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_Prefix { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_Prefix{ +// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -140418,9 +140632,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny) Prefix() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix"}, map[string]interface{}{}, @@ -140429,9 +140643,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange the path struct for its child "prefix-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLength { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLength{ +// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath the path struct for its child "prefix-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "prefix-length"}, map[string]interface{}{}, @@ -140440,9 +140654,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny the path struct for its child "prefix-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthAny{ +// PrefixLength returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny the path struct for its child "prefix-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny) PrefixLength() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_PrefixLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "prefix-length"}, map[string]interface{}{}, @@ -140451,9 +140665,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange the path struct for its child "range-size". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSize { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSize{ +// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath the path struct for its child "range-size". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePath) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePath{ NodePath: ygot.NewNodePath( []string{"state", "range-size"}, map[string]interface{}{}, @@ -140462,9 +140676,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny the path struct for its child "range-size". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangeAny) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizeAny{ +// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny the path struct for its child "range-size". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRangePathAny) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_ExtendedPrefixRange_RangeSizePathAny{ NodePath: ygot.NewNodePath( []string{"state", "range-size"}, map[string]interface{}{}, @@ -140473,99 +140687,99 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_Algorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_Algorithm struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/algorithm YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/algorithm YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNull represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/explicit-null YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNull struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/explicit-null YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/explicit-null YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/explicit-null YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/mapping-server YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServer struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/mapping-server YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/mapping-server YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/mapping-server YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifier struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhp represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/no-php YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhp struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/no-php YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/no-php YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/no-php YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScope represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-scope YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScope struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-scope YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-scope YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-scope YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValue struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/prefix-sid/state/sid-value-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePathAny struct { *ygot.NodePath } -// Algorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) Algorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_Algorithm { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_Algorithm{ +// Algorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) Algorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPath{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -140574,9 +140788,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Algorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "algorithm". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) Algorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmAny{ +// Algorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "algorithm". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) Algorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_AlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"state", "algorithm"}, map[string]interface{}{}, @@ -140585,9 +140799,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// ExplicitNull returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "explicit-null". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) ExplicitNull() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNull { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNull{ +// ExplicitNull returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "explicit-null". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) ExplicitNull() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPath{ NodePath: ygot.NewNodePath( []string{"state", "explicit-null"}, map[string]interface{}{}, @@ -140596,9 +140810,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// ExplicitNull returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "explicit-null". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) ExplicitNull() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullAny{ +// ExplicitNull returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "explicit-null". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) ExplicitNull() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_ExplicitNullPathAny{ NodePath: ygot.NewNodePath( []string{"state", "explicit-null"}, map[string]interface{}{}, @@ -140607,9 +140821,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MappingServer returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "mapping-server". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) MappingServer() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServer { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServer{ +// MappingServer returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "mapping-server". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) MappingServer() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPath{ NodePath: ygot.NewNodePath( []string{"state", "mapping-server"}, map[string]interface{}{}, @@ -140618,9 +140832,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MappingServer returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "mapping-server". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) MappingServer() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerAny{ +// MappingServer returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "mapping-server". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) MappingServer() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MappingServerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mapping-server"}, map[string]interface{}{}, @@ -140629,9 +140843,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifier { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifier{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPath{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -140640,9 +140854,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierAny{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_MultiTopologyIdentifierPathAny{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -140651,9 +140865,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NoPhp returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "no-php". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) NoPhp() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhp { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhp{ +// NoPhp returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "no-php". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) NoPhp() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPath{ NodePath: ygot.NewNodePath( []string{"state", "no-php"}, map[string]interface{}{}, @@ -140662,9 +140876,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NoPhp returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "no-php". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) NoPhp() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpAny{ +// NoPhp returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "no-php". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) NoPhp() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_NoPhpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "no-php"}, map[string]interface{}{}, @@ -140673,9 +140887,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidScope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "sid-scope". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) SidScope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScope { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScope{ +// SidScope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "sid-scope". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) SidScope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-scope"}, map[string]interface{}{}, @@ -140684,9 +140898,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidScope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "sid-scope". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) SidScope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopeAny{ +// SidScope returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "sid-scope". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) SidScope() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidScopePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-scope"}, map[string]interface{}{}, @@ -140695,9 +140909,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValue { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValue{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -140706,9 +140920,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueAny{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -140717,9 +140931,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValueType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid the path struct for its child "sid-value-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid) SidValueType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueType{ +// SidValueType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath the path struct for its child "sid-value-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPath) SidValueType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-value-type"}, map[string]interface{}{}, @@ -140728,9 +140942,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValueType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny the path struct for its child "sid-value-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidAny) SidValueType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypeAny{ +// SidValueType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny the path struct for its child "sid-value-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSidPathAny) SidValueType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_PrefixSid_SidValueTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-value-type"}, map[string]interface{}{}, @@ -140739,49 +140953,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Mirroring represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/mirroring YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Mirroring struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/mirroring YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/mirroring YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/mirroring YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifier represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifier struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/multi-topology-identifier YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/multi-topology-identifier YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Weight represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/weight YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Weight struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/weight YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/weight YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/state/weight YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPathAny struct { *ygot.NodePath } -// Mirroring returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding the path struct for its child "mirroring". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding) Mirroring() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Mirroring { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Mirroring{ +// Mirroring returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath the path struct for its child "mirroring". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath) Mirroring() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPath{ NodePath: ygot.NewNodePath( []string{"state", "mirroring"}, map[string]interface{}{}, @@ -140790,9 +141004,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Mirroring returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny the path struct for its child "mirroring". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny) Mirroring() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringAny{ +// Mirroring returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny the path struct for its child "mirroring". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny) Mirroring() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MirroringPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mirroring"}, map[string]interface{}{}, @@ -140801,9 +141015,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifier { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifier{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPath{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -140812,9 +141026,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny the path struct for its child "multi-topology-identifier". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierAny{ +// MultiTopologyIdentifier returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny the path struct for its child "multi-topology-identifier". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny) MultiTopologyIdentifier() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_MultiTopologyIdentifierPathAny{ NodePath: ygot.NewNodePath( []string{"state", "multi-topology-identifier"}, map[string]interface{}{}, @@ -140823,9 +141037,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Weight { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Weight{ +// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPath) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -140834,9 +141048,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny the path struct for its child "weight". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingAny) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightAny{ +// Weight returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny the path struct for its child "weight". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBindingPathAny) Weight() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -140845,29 +141059,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePathAny struct { *ygot.NodePath } -// EroMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv the path struct for its child "ero-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv) EroMetric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric{ +// EroMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath the path struct for its child "ero-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath) EroMetric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath{ NodePath: ygot.NewNodePath( []string{"ero-metric"}, map[string]interface{}{}, @@ -140876,9 +141090,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// EroMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny the path struct for its child "ero-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny) EroMetric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny{ +// EroMetric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny the path struct for its child "ero-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny) EroMetric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny{ NodePath: ygot.NewNodePath( []string{"ero-metric"}, map[string]interface{}{}, @@ -140887,9 +141101,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// EroPath returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv the path struct for its child "ero-path". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv) EroPath() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath{ +// EroPath returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath the path struct for its child "ero-path". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath) EroPath() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPath{ NodePath: ygot.NewNodePath( []string{"ero-path"}, map[string]interface{}{}, @@ -140898,9 +141112,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// EroPath returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny the path struct for its child "ero-path". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny) EroPath() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathAny{ +// EroPath returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny the path struct for its child "ero-path". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny) EroPath() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPathAny{ NodePath: ygot.NewNodePath( []string{"ero-path"}, map[string]interface{}{}, @@ -140909,9 +141123,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv the path struct for its child "sid-label-binding". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding{ +// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath the path struct for its child "sid-label-binding". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath{ NodePath: ygot.NewNodePath( []string{"sid-label-binding"}, map[string]interface{}{}, @@ -140920,9 +141134,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny the path struct for its child "sid-label-binding". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny{ +// SidLabelBinding returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny the path struct for its child "sid-label-binding". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny) SidLabelBinding() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny{ NodePath: ygot.NewNodePath( []string{"sid-label-binding"}, map[string]interface{}{}, @@ -140931,9 +141145,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -140942,9 +141156,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -140953,29 +141167,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-metric/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -140984,9 +141198,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetricPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroMetric_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -140995,49 +141209,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPathPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Loose represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/loose YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Loose struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/loose YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LooseAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/loose YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LooseAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/loose YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePathAny struct { *ygot.NodePath } -// Ipv4Segment returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment the path struct for its child "ipv4-segment". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment) Ipv4Segment() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment{ +// Ipv4Segment returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath the path struct for its child "ipv4-segment". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath) Ipv4Segment() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath{ NodePath: ygot.NewNodePath( []string{"ipv4-segment"}, map[string]interface{}{}, @@ -141046,9 +141260,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Ipv4Segment returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny the path struct for its child "ipv4-segment". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny) Ipv4Segment() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny{ +// Ipv4Segment returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny the path struct for its child "ipv4-segment". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny) Ipv4Segment() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny{ NodePath: ygot.NewNodePath( []string{"ipv4-segment"}, map[string]interface{}{}, @@ -141057,9 +141271,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Loose returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment the path struct for its child "loose". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment) Loose() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Loose { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Loose{ +// Loose returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath the path struct for its child "loose". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath) Loose() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePath{ NodePath: ygot.NewNodePath( []string{"state", "loose"}, map[string]interface{}{}, @@ -141068,9 +141282,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Loose returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny the path struct for its child "loose". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny) Loose() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LooseAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LooseAny{ +// Loose returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny the path struct for its child "loose". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny) Loose() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_LoosePathAny{ NodePath: ygot.NewNodePath( []string{"state", "loose"}, map[string]interface{}{}, @@ -141079,9 +141293,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141090,9 +141304,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141101,9 +141315,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnnumberedHop returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment the path struct for its child "unnumbered-hop". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment) UnnumberedHop() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop{ +// UnnumberedHop returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath the path struct for its child "unnumbered-hop". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPath) UnnumberedHop() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath{ NodePath: ygot.NewNodePath( []string{"unnumbered-hop"}, map[string]interface{}{}, @@ -141112,9 +141326,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// UnnumberedHop returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny the path struct for its child "unnumbered-hop". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentAny) UnnumberedHop() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny{ +// UnnumberedHop returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny the path struct for its child "unnumbered-hop". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_SegmentPathAny) UnnumberedHop() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny{ NodePath: ygot.NewNodePath( []string{"unnumbered-hop"}, map[string]interface{}{}, @@ -141123,29 +141337,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment/state/address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_Address struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment/state/address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment/state/address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/ipv4-segment/state/address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment the path struct for its child "address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_Address { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_Address{ +// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPath) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -141154,9 +141368,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentAny) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressAny{ +// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4SegmentPathAny) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_Ipv4Segment_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -141165,39 +141379,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/interface-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/interface-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/ero-path/segments/segment/unnumbered-hop/state/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPathAny struct { *ygot.NodePath } -// InterfaceId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop) InterfaceId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceId{ +// InterfaceId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath) InterfaceId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "interface-id"}, map[string]interface{}{}, @@ -141206,9 +141420,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// InterfaceId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny) InterfaceId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny) InterfaceId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface-id"}, map[string]interface{}{}, @@ -141217,9 +141431,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPath) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPath{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -141228,9 +141442,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHopPathAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_EroPath_Segment_UnnumberedHop_RouterIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "router-id"}, map[string]interface{}{}, @@ -141239,39 +141453,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValue struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/sid-label-binding/tlvs/tlv/sid-label-binding/state/sid-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePathAny struct { *ygot.NodePath } -// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding the path struct for its child "sid-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidType{ +// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath the path struct for its child "sid-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-type"}, map[string]interface{}{}, @@ -141280,9 +141494,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny the path struct for its child "sid-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypeAny{ +// SidType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny the path struct for its child "sid-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny) SidType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-type"}, map[string]interface{}{}, @@ -141291,9 +141505,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValue { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValue{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPath) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePath{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -141302,9 +141516,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny the path struct for its child "sid-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValueAny{ +// SidValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny the path struct for its child "sid-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBindingPathAny) SidValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_SidLabelBinding_Tlv_SidLabelBinding_SidValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "sid-value"}, map[string]interface{}{}, @@ -141313,49 +141527,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/extended-prefix/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -141364,9 +141578,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -141375,9 +141589,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141386,9 +141600,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141397,9 +141611,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -141408,9 +141622,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_ExtendedPrefix_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -141419,69 +141633,69 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Extende } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/ip-interface-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/ip-interface-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/ip-interface-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/ip-interface-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Period represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/period YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Period struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/period YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/period YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/period YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Reason represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/reason YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Reason struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/reason YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/reason YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/reason YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePathAny struct { *ygot.NodePath } -// IpInterfaceAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv the path struct for its child "ip-interface-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv) IpInterfaceAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddress{ +// IpInterfaceAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath the path struct for its child "ip-interface-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath) IpInterfaceAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ip-interface-address"}, map[string]interface{}{}, @@ -141490,9 +141704,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// IpInterfaceAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny the path struct for its child "ip-interface-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny) IpInterfaceAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressAny{ +// IpInterfaceAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny the path struct for its child "ip-interface-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny) IpInterfaceAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_IpInterfaceAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ip-interface-address"}, map[string]interface{}{}, @@ -141501,9 +141715,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Period returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv the path struct for its child "period". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv) Period() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Period { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Period{ +// Period returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath the path struct for its child "period". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath) Period() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPath{ NodePath: ygot.NewNodePath( []string{"state", "period"}, map[string]interface{}{}, @@ -141512,9 +141726,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Period returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny the path struct for its child "period". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny) Period() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodAny{ +// Period returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny the path struct for its child "period". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny) Period() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_PeriodPathAny{ NodePath: ygot.NewNodePath( []string{"state", "period"}, map[string]interface{}{}, @@ -141523,9 +141737,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Reason returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv the path struct for its child "reason". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv) Reason() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Reason { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Reason{ +// Reason returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath the path struct for its child "reason". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath) Reason() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "reason"}, map[string]interface{}{}, @@ -141534,9 +141748,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Reason returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny the path struct for its child "reason". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny) Reason() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonAny{ +// Reason returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny the path struct for its child "reason". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny) Reason() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_ReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reason"}, map[string]interface{}{}, @@ -141545,9 +141759,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141556,9 +141770,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141567,9 +141781,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -141578,9 +141792,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -141589,49 +141803,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/grace-lsa/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -141640,9 +141854,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -141651,9 +141865,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141662,9 +141876,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141673,9 +141887,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -141684,9 +141898,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLsa_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -141695,39 +141909,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_GraceLs } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePathAny struct { *ygot.NodePath } -// InformationalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "informational-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) InformationalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities{ +// InformationalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "informational-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) InformationalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath{ NodePath: ygot.NewNodePath( []string{"informational-capabilities"}, map[string]interface{}{}, @@ -141736,9 +141950,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// InformationalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "informational-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) InformationalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny{ +// InformationalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "informational-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) InformationalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny{ NodePath: ygot.NewNodePath( []string{"informational-capabilities"}, map[string]interface{}{}, @@ -141747,9 +141961,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NodeAdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "node-administrative-tags". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) NodeAdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags{ +// NodeAdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "node-administrative-tags". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) NodeAdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath{ NodePath: ygot.NewNodePath( []string{"node-administrative-tags"}, map[string]interface{}{}, @@ -141758,9 +141972,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NodeAdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "node-administrative-tags". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) NodeAdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny{ +// NodeAdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "node-administrative-tags". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) NodeAdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny{ NodePath: ygot.NewNodePath( []string{"node-administrative-tags"}, map[string]interface{}{}, @@ -141769,9 +141983,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SegmentRoutingAlgorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "segment-routing-algorithm". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) SegmentRoutingAlgorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm{ +// SegmentRoutingAlgorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "segment-routing-algorithm". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) SegmentRoutingAlgorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath{ NodePath: ygot.NewNodePath( []string{"segment-routing-algorithm"}, map[string]interface{}{}, @@ -141780,9 +141994,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SegmentRoutingAlgorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "segment-routing-algorithm". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) SegmentRoutingAlgorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny{ +// SegmentRoutingAlgorithm returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "segment-routing-algorithm". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) SegmentRoutingAlgorithm() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing-algorithm"}, map[string]interface{}{}, @@ -141791,9 +142005,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SegmentRoutingSidLabelRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "segment-routing-sid-label-range". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) SegmentRoutingSidLabelRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange{ +// SegmentRoutingSidLabelRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "segment-routing-sid-label-range". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) SegmentRoutingSidLabelRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePath{ NodePath: ygot.NewNodePath( []string{"segment-routing-sid-label-range"}, map[string]interface{}{}, @@ -141802,9 +142016,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SegmentRoutingSidLabelRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "segment-routing-sid-label-range". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) SegmentRoutingSidLabelRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangeAny{ +// SegmentRoutingSidLabelRange returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "segment-routing-sid-label-range". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) SegmentRoutingSidLabelRange() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePathAny{ NodePath: ygot.NewNodePath( []string{"segment-routing-sid-label-range"}, map[string]interface{}{}, @@ -141813,9 +142027,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141824,9 +142038,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -141835,9 +142049,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -141846,9 +142060,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -141857,79 +142071,79 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTe represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/experimental-te YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTe struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/experimental-te YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/experimental-te YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/experimental-te YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapable represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-capable YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapable struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-capable YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-capable YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapableAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-capable YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelper represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-helper YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelper struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-helper YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-helper YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/graceful-restart-helper YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLan represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/point-to-point-over-lan YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLan struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/point-to-point-over-lan YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/point-to-point-over-lan YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/point-to-point-over-lan YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/stub-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/stub-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/stub-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/stub-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineering represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineering struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/informational-capabilities/state/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPathAny struct { *ygot.NodePath } -// ExperimentalTe returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "experimental-te". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) ExperimentalTe() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTe { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTe{ +// ExperimentalTe returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "experimental-te". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) ExperimentalTe() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePath{ NodePath: ygot.NewNodePath( []string{"state", "experimental-te"}, map[string]interface{}{}, @@ -141938,9 +142152,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// ExperimentalTe returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "experimental-te". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) ExperimentalTe() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTeAny{ +// ExperimentalTe returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "experimental-te". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) ExperimentalTe() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_ExperimentalTePathAny{ NodePath: ygot.NewNodePath( []string{"state", "experimental-te"}, map[string]interface{}{}, @@ -141949,9 +142163,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// GracefulRestartCapable returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "graceful-restart-capable". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) GracefulRestartCapable() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapable { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapable{ +// GracefulRestartCapable returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "graceful-restart-capable". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) GracefulRestartCapable() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePath{ NodePath: ygot.NewNodePath( []string{"state", "graceful-restart-capable"}, map[string]interface{}{}, @@ -141960,9 +142174,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// GracefulRestartCapable returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "graceful-restart-capable". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) GracefulRestartCapable() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapableAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapableAny{ +// GracefulRestartCapable returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "graceful-restart-capable". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) GracefulRestartCapable() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartCapablePathAny{ NodePath: ygot.NewNodePath( []string{"state", "graceful-restart-capable"}, map[string]interface{}{}, @@ -141971,9 +142185,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// GracefulRestartHelper returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "graceful-restart-helper". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) GracefulRestartHelper() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelper { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelper{ +// GracefulRestartHelper returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "graceful-restart-helper". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) GracefulRestartHelper() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPath{ NodePath: ygot.NewNodePath( []string{"state", "graceful-restart-helper"}, map[string]interface{}{}, @@ -141982,9 +142196,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// GracefulRestartHelper returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "graceful-restart-helper". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) GracefulRestartHelper() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperAny{ +// GracefulRestartHelper returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "graceful-restart-helper". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) GracefulRestartHelper() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_GracefulRestartHelperPathAny{ NodePath: ygot.NewNodePath( []string{"state", "graceful-restart-helper"}, map[string]interface{}{}, @@ -141993,9 +142207,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// PointToPointOverLan returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "point-to-point-over-lan". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) PointToPointOverLan() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLan { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLan{ +// PointToPointOverLan returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "point-to-point-over-lan". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) PointToPointOverLan() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPath{ NodePath: ygot.NewNodePath( []string{"state", "point-to-point-over-lan"}, map[string]interface{}{}, @@ -142004,9 +142218,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// PointToPointOverLan returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "point-to-point-over-lan". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) PointToPointOverLan() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanAny{ +// PointToPointOverLan returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "point-to-point-over-lan". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) PointToPointOverLan() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_PointToPointOverLanPathAny{ NodePath: ygot.NewNodePath( []string{"state", "point-to-point-over-lan"}, map[string]interface{}{}, @@ -142015,9 +142229,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// StubRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "stub-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) StubRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouter{ +// StubRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "stub-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) StubRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "stub-router"}, map[string]interface{}{}, @@ -142026,9 +142240,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// StubRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "stub-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) StubRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterAny{ +// StubRouter returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "stub-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) StubRouter() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_StubRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "stub-router"}, map[string]interface{}{}, @@ -142037,9 +142251,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineering { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineering{ +// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPath) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPath{ NodePath: ygot.NewNodePath( []string{"state", "traffic-engineering"}, map[string]interface{}{}, @@ -142048,9 +142262,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny the path struct for its child "traffic-engineering". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesAny) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringAny{ +// TrafficEngineering returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny the path struct for its child "traffic-engineering". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilitiesPathAny) TrafficEngineering() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_InformationalCapabilities_TrafficEngineeringPathAny{ NodePath: ygot.NewNodePath( []string{"state", "traffic-engineering"}, map[string]interface{}{}, @@ -142059,29 +142273,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTags represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags/state/administrative-tags YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTags struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags/state/administrative-tags YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags/state/administrative-tags YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/node-administrative-tags/state/administrative-tags YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPathAny struct { *ygot.NodePath } -// AdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags the path struct for its child "administrative-tags". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags) AdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTags { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTags{ +// AdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath the path struct for its child "administrative-tags". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPath) AdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPath{ NodePath: ygot.NewNodePath( []string{"state", "administrative-tags"}, map[string]interface{}{}, @@ -142090,9 +142304,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// AdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny the path struct for its child "administrative-tags". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsAny) AdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsAny{ +// AdministrativeTags returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny the path struct for its child "administrative-tags". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTagsPathAny) AdministrativeTags() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_NodeAdministrativeTags_AdministrativeTagsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "administrative-tags"}, map[string]interface{}{}, @@ -142101,29 +142315,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithms represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm/state/supported-algorithms YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithms struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm/state/supported-algorithms YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm/state/supported-algorithms YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-algorithm/state/supported-algorithms YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPathAny struct { *ygot.NodePath } -// SupportedAlgorithms returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm the path struct for its child "supported-algorithms". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm) SupportedAlgorithms() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithms { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithms{ +// SupportedAlgorithms returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath the path struct for its child "supported-algorithms". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPath) SupportedAlgorithms() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPath{ NodePath: ygot.NewNodePath( []string{"state", "supported-algorithms"}, map[string]interface{}{}, @@ -142132,9 +142346,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SupportedAlgorithms returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny the path struct for its child "supported-algorithms". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmAny) SupportedAlgorithms() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsAny{ +// SupportedAlgorithms returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny the path struct for its child "supported-algorithms". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithmPathAny) SupportedAlgorithms() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingAlgorithm_SupportedAlgorithmsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "supported-algorithms"}, map[string]interface{}{}, @@ -142143,49 +142357,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRangePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSize represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/range-size YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSize struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/range-size YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/range-size YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/range-size YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePathAny struct { *ygot.NodePath } -// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv the path struct for its child "range-size". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSize { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSize{ +// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath the path struct for its child "range-size". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePath{ NodePath: ygot.NewNodePath( []string{"state", "range-size"}, map[string]interface{}{}, @@ -142194,9 +142408,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny the path struct for its child "range-size". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizeAny{ +// RangeSize returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny the path struct for its child "range-size". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny) RangeSize() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_RangeSizePathAny{ NodePath: ygot.NewNodePath( []string{"state", "range-size"}, map[string]interface{}{}, @@ -142205,9 +142419,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SidLabel returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv the path struct for its child "sid-label". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv) SidLabel() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel{ +// SidLabel returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath the path struct for its child "sid-label". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath) SidLabel() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath{ NodePath: ygot.NewNodePath( []string{"sid-label"}, map[string]interface{}{}, @@ -142216,9 +142430,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// SidLabel returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny the path struct for its child "sid-label". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny) SidLabel() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny{ +// SidLabel returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny the path struct for its child "sid-label". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny) SidLabel() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny{ NodePath: ygot.NewNodePath( []string{"sid-label"}, map[string]interface{}{}, @@ -142227,9 +142441,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142238,9 +142452,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142249,9 +142463,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -142260,9 +142474,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -142271,39 +142485,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/entry-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/entry-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/entry-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/entry-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/first-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValue struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/first-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/first-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/sid-label/state/first-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePathAny struct { *ygot.NodePath } -// EntryType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel the path struct for its child "entry-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel) EntryType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryType{ +// EntryType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath the path struct for its child "entry-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath) EntryType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePath{ NodePath: ygot.NewNodePath( []string{"state", "entry-type"}, map[string]interface{}{}, @@ -142312,9 +142526,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// EntryType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny the path struct for its child "entry-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny) EntryType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypeAny{ +// EntryType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny the path struct for its child "entry-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny) EntryType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_EntryTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "entry-type"}, map[string]interface{}{}, @@ -142323,9 +142537,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// FirstValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel the path struct for its child "first-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel) FirstValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValue { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValue{ +// FirstValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath the path struct for its child "first-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPath) FirstValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePath{ NodePath: ygot.NewNodePath( []string{"state", "first-value"}, map[string]interface{}{}, @@ -142334,9 +142548,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// FirstValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny the path struct for its child "first-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelAny) FirstValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValueAny{ +// FirstValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny the path struct for its child "first-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabelPathAny) FirstValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_SidLabel_FirstValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "first-value"}, map[string]interface{}{}, @@ -142345,49 +142559,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/segment-routing-sid-label-range/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -142396,9 +142610,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -142407,9 +142621,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142418,9 +142632,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142429,9 +142643,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -142440,9 +142654,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_SegmentRoutingSidLabelRange_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -142451,49 +142665,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/router-information/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -142502,9 +142716,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -142513,9 +142727,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142524,9 +142738,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142535,9 +142749,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -142546,9 +142760,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterInformation_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -142557,39 +142771,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_RouterI } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineeringPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePathAny struct { *ygot.NodePath } -// Link returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv the path struct for its child "link". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv) Link() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link{ +// Link returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath the path struct for its child "link". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath) Link() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPath{ NodePath: ygot.NewNodePath( []string{"link"}, map[string]interface{}{}, @@ -142598,9 +142812,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Link returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny the path struct for its child "link". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny) Link() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkAny{ +// Link returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny the path struct for its child "link". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny) Link() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPathAny{ NodePath: ygot.NewNodePath( []string{"link"}, map[string]interface{}{}, @@ -142609,9 +142823,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NodeAttribute returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv the path struct for its child "node-attribute". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv) NodeAttribute() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute{ +// NodeAttribute returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath the path struct for its child "node-attribute". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath) NodeAttribute() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePath{ NodePath: ygot.NewNodePath( []string{"node-attribute"}, map[string]interface{}{}, @@ -142620,9 +142834,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NodeAttribute returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny the path struct for its child "node-attribute". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny) NodeAttribute() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributeAny{ +// NodeAttribute returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny the path struct for its child "node-attribute". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny) NodeAttribute() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePathAny{ NodePath: ygot.NewNodePath( []string{"node-attribute"}, map[string]interface{}{}, @@ -142631,9 +142845,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// RouterAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv the path struct for its child "router-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv) RouterAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress{ +// RouterAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath the path struct for its child "router-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath) RouterAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath{ NodePath: ygot.NewNodePath( []string{"router-address"}, map[string]interface{}{}, @@ -142642,9 +142856,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// RouterAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny the path struct for its child "router-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny) RouterAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny{ +// RouterAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny the path struct for its child "router-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny) RouterAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny{ NodePath: ygot.NewNodePath( []string{"router-address"}, map[string]interface{}{}, @@ -142653,9 +142867,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142664,9 +142878,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -142675,9 +142889,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPath) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -142686,9 +142900,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny the path struct for its child "unknown-tlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny{ +// UnknownTlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny the path struct for its child "unknown-tlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_TlvPathAny) UnknownTlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-tlv"}, map[string]interface{}{}, @@ -142697,129 +142911,129 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_LinkPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/link-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/local-ip-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/local-ip-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/local-ip-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/local-ip-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidth struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-reservable-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidth struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-reservable-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-reservable-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/maximum-reservable-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/remote-ip-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/remote-ip-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/remote-ip-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/remote-ip-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownType struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValue represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValue struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/state/unknown-value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePathAny struct { *ygot.NodePath } -// AdminGroupAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) AdminGroupAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny{ +// AdminGroupAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) AdminGroupAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"administrative-groups", "admin-group"}, map[string]interface{}{"bit-index": "*"}, @@ -142828,9 +143042,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// AdminGroupAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) AdminGroupAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny{ +// AdminGroupAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) AdminGroupAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"administrative-groups", "admin-group"}, map[string]interface{}{"bit-index": "*"}, @@ -142839,9 +143053,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// AdminGroup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) AdminGroup(BitIndex uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup{ +// AdminGroup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) AdminGroup(BitIndex uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath{ NodePath: ygot.NewNodePath( []string{"administrative-groups", "admin-group"}, map[string]interface{}{"bit-index": BitIndex}, @@ -142850,9 +143064,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// AdminGroup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "admin-group". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) AdminGroup(BitIndex uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny{ +// AdminGroup returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "admin-group". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) AdminGroup(BitIndex uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny{ NodePath: ygot.NewNodePath( []string{"administrative-groups", "admin-group"}, map[string]interface{}{"bit-index": BitIndex}, @@ -142861,9 +143075,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -142872,9 +143086,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -142883,9 +143097,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "link-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkType{ +// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "link-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePath{ NodePath: ygot.NewNodePath( []string{"state", "link-type"}, map[string]interface{}{}, @@ -142894,9 +143108,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "link-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypeAny{ +// LinkType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "link-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) LinkType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LinkTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-type"}, map[string]interface{}{}, @@ -142905,9 +143119,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LocalIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "local-ip-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) LocalIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddress{ +// LocalIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "local-ip-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) LocalIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ip-address"}, map[string]interface{}{}, @@ -142916,9 +143130,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LocalIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "local-ip-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) LocalIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressAny{ +// LocalIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "local-ip-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) LocalIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_LocalIpAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ip-address"}, map[string]interface{}{}, @@ -142927,9 +143141,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// MaximumBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "maximum-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) MaximumBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidth { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidth{ +// MaximumBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "maximum-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) MaximumBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "maximum-bandwidth"}, map[string]interface{}{}, @@ -142938,9 +143152,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// MaximumBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "maximum-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) MaximumBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthAny{ +// MaximumBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "maximum-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) MaximumBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "maximum-bandwidth"}, map[string]interface{}{}, @@ -142949,9 +143163,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// MaximumReservableBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "maximum-reservable-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) MaximumReservableBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidth { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidth{ +// MaximumReservableBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "maximum-reservable-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) MaximumReservableBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "maximum-reservable-bandwidth"}, map[string]interface{}{}, @@ -142960,9 +143174,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// MaximumReservableBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "maximum-reservable-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) MaximumReservableBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthAny{ +// MaximumReservableBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "maximum-reservable-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) MaximumReservableBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MaximumReservableBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "maximum-reservable-bandwidth"}, map[string]interface{}{}, @@ -142971,9 +143185,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -142982,9 +143196,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -142993,9 +143207,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// RemoteIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "remote-ip-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) RemoteIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddress { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddress{ +// RemoteIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "remote-ip-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) RemoteIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "remote-ip-address"}, map[string]interface{}{}, @@ -143004,9 +143218,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// RemoteIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "remote-ip-address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) RemoteIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressAny{ +// RemoteIpAddress returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "remote-ip-address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) RemoteIpAddress() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_RemoteIpAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "remote-ip-address"}, map[string]interface{}{}, @@ -143015,9 +143229,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143026,9 +143240,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143037,9 +143251,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "unknown-subtlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv{ +// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "unknown-subtlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-subtlv"}, map[string]interface{}{}, @@ -143048,9 +143262,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "unknown-subtlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny{ +// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "unknown-subtlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-subtlv"}, map[string]interface{}{}, @@ -143059,9 +143273,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "unknown-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) UnknownType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownType { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownType{ +// UnknownType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "unknown-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) UnknownType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePath{ NodePath: ygot.NewNodePath( []string{"state", "unknown-type"}, map[string]interface{}{}, @@ -143070,9 +143284,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "unknown-type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) UnknownType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypeAny{ +// UnknownType returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "unknown-type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) UnknownType() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "unknown-type"}, map[string]interface{}{}, @@ -143081,9 +143295,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "unknown-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) UnknownValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValue { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValue{ +// UnknownValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "unknown-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) UnknownValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePath{ NodePath: ygot.NewNodePath( []string{"state", "unknown-value"}, map[string]interface{}{}, @@ -143092,9 +143306,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "unknown-value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) UnknownValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValueAny{ +// UnknownValue returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "unknown-value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) UnknownValue() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "unknown-value"}, map[string]interface{}{}, @@ -143103,9 +143317,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidthAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) UnreservedBandwidthAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny{ +// UnreservedBandwidthAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) UnreservedBandwidthAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidths", "unreserved-bandwidth"}, map[string]interface{}{"priority": "*"}, @@ -143114,9 +143328,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidthAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) UnreservedBandwidthAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny{ +// UnreservedBandwidthAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) UnreservedBandwidthAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidths", "unreserved-bandwidth"}, map[string]interface{}{"priority": "*"}, @@ -143125,9 +143339,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv) UnreservedBandwidth(Priority uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth{ +// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPath) UnreservedBandwidth(Priority uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidths", "unreserved-bandwidth"}, map[string]interface{}{"priority": Priority}, @@ -143136,9 +143350,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvAny) UnreservedBandwidth(Priority uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny{ +// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlvPathAny) UnreservedBandwidth(Priority uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"unreserved-bandwidths", "unreserved-bandwidth"}, map[string]interface{}{"priority": Priority}, @@ -143147,39 +143361,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndex represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/bit-index YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndex struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/bit-index YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/bit-index YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/bit-index YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_Set represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/set YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_Set struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/set YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/set YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/administrative-groups/admin-group/state/set YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPathAny struct { *ygot.NodePath } -// BitIndex returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup the path struct for its child "bit-index". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup) BitIndex() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndex { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndex{ +// BitIndex returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath the path struct for its child "bit-index". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath) BitIndex() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPath{ NodePath: ygot.NewNodePath( []string{"state", "bit-index"}, map[string]interface{}{}, @@ -143188,9 +143402,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// BitIndex returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny the path struct for its child "bit-index". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny) BitIndex() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexAny{ +// BitIndex returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny the path struct for its child "bit-index". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny) BitIndex() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_BitIndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bit-index"}, map[string]interface{}{}, @@ -143199,9 +143413,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Set returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup the path struct for its child "set". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup) Set() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_Set { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_Set{ +// Set returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath the path struct for its child "set". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPath) Set() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPath{ NodePath: ygot.NewNodePath( []string{"state", "set"}, map[string]interface{}{}, @@ -143210,9 +143424,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Set returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny the path struct for its child "set". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupAny) Set() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetAny{ +// Set returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny the path struct for its child "set". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroupPathAny) Set() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_AdminGroup_SetPathAny{ NodePath: ygot.NewNodePath( []string{"state", "set"}, map[string]interface{}{}, @@ -143221,49 +143435,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143272,9 +143486,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143283,9 +143497,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143294,9 +143508,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143305,9 +143519,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143316,9 +143530,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnknownSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143327,39 +143541,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_Priority struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidth represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/unreserved-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidth struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/unreserved-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/unreserved-bandwidth YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/link/sub-tlvs/sub-tlv/unreserved-bandwidths/unreserved-bandwidth/state/unreserved-bandwidth YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPathAny struct { *ygot.NodePath } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_Priority { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_Priority{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -143368,9 +143582,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -143379,9 +143593,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth) UnreservedBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidth { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidth{ +// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPath) UnreservedBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPath{ NodePath: ygot.NewNodePath( []string{"state", "unreserved-bandwidth"}, map[string]interface{}{}, @@ -143390,9 +143604,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny the path struct for its child "unreserved-bandwidth". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthAny) UnreservedBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthAny{ +// UnreservedBandwidth returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny the path struct for its child "unreserved-bandwidth". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidthPathAny) UnreservedBandwidth() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_Link_SubTlv_UnreservedBandwidth_UnreservedBandwidthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "unreserved-bandwidth"}, map[string]interface{}{}, @@ -143401,59 +143615,59 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttributePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4Addresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv4-addresses YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4Addresses struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv4-addresses YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv4-addresses YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv4-addresses YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6Addresses represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv6-addresses YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6Addresses struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv6-addresses YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv6-addresses YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/local-ipv6-addresses YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePathAny struct { *ygot.NodePath } -// LocalIpv4Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv the path struct for its child "local-ipv4-addresses". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv) LocalIpv4Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4Addresses { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4Addresses{ +// LocalIpv4Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath the path struct for its child "local-ipv4-addresses". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath) LocalIpv4Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-addresses"}, map[string]interface{}{}, @@ -143462,9 +143676,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LocalIpv4Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny the path struct for its child "local-ipv4-addresses". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny) LocalIpv4Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesAny{ +// LocalIpv4Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny the path struct for its child "local-ipv4-addresses". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny) LocalIpv4Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv4AddressesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv4-addresses"}, map[string]interface{}{}, @@ -143473,9 +143687,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LocalIpv6Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv the path struct for its child "local-ipv6-addresses". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv) LocalIpv6Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6Addresses { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6Addresses{ +// LocalIpv6Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath the path struct for its child "local-ipv6-addresses". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath) LocalIpv6Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPath{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-addresses"}, map[string]interface{}{}, @@ -143484,9 +143698,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// LocalIpv6Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny the path struct for its child "local-ipv6-addresses". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny) LocalIpv6Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesAny{ +// LocalIpv6Addresses returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny the path struct for its child "local-ipv6-addresses". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny) LocalIpv6Addresses() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_LocalIpv6AddressesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "local-ipv6-addresses"}, map[string]interface{}{}, @@ -143495,9 +143709,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143506,9 +143720,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143517,9 +143731,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv the path struct for its child "unknown-subtlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv{ +// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath the path struct for its child "unknown-subtlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPath) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath{ NodePath: ygot.NewNodePath( []string{"unknown-subtlv"}, map[string]interface{}{}, @@ -143528,9 +143742,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny the path struct for its child "unknown-subtlv". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvAny) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny{ +// UnknownSubtlv returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny the path struct for its child "unknown-subtlv". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlvPathAny) UnknownSubtlv() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny{ NodePath: ygot.NewNodePath( []string{"unknown-subtlv"}, map[string]interface{}{}, @@ -143539,49 +143753,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/node-attribute/sub-tlvs/sub-tlv/unknown-subtlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143590,9 +143804,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143601,9 +143815,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143612,9 +143826,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143623,9 +143837,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143634,9 +143848,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_NodeAttribute_SubTlv_UnknownSubtlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143645,29 +143859,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address/state/address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_Address struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address/state/address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address/state/address YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/router-address/state/address YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress the path struct for its child "address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_Address { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_Address{ +// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPath) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -143676,9 +143890,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressAny) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressAny{ +// Address returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddressPathAny) Address() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_RouterAddress_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -143687,49 +143901,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/traffic-engineering/tlvs/tlv/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143738,9 +143952,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143749,9 +143963,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143760,9 +143974,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143771,9 +143985,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143782,9 +143996,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_TrafficEngineering_Tlv_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143793,49 +144007,49 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Traffic } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Length represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Length struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Value represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Value struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/value YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValueAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/opaque-lsa/unknown-tlv/state/value YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePathAny struct { *ygot.NodePath } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Length { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Length{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPath{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143844,9 +144058,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny the path struct for its child "length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthAny{ +// Length returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny the path struct for its child "length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny) Length() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_LengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "length"}, map[string]interface{}{}, @@ -143855,9 +144069,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143866,9 +144080,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -143877,9 +144091,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Value { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_Value{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPath) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143888,9 +144102,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny the path struct for its child "value". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValueAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValueAny{ +// Value returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny the path struct for its child "value". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlvPathAny) Value() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_UnknownTlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -143899,79 +144113,79 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_OpaqueLsa_Unknown } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkData represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-data YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkData struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-data YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-data YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-data YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkId struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/link-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinks represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-links YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinks struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-links YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-links YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-links YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetrics represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-tos-metrics YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetrics struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-tos-metrics YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-tos-metrics YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/number-tos-metrics YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Type represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Type struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/state/type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePathAny struct { *ygot.NodePath } -// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "link-data". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkData { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkData{ +// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "link-data". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPath{ NodePath: ygot.NewNodePath( []string{"state", "link-data"}, map[string]interface{}{}, @@ -143980,9 +144194,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) LinkDa } } -// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "link-data". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataAny{ +// LinkData returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "link-data". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) LinkData() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkDataPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-data"}, map[string]interface{}{}, @@ -143991,9 +144205,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Lin } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkId { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkId{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPath{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -144002,9 +144216,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) LinkId } } -// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "link-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdAny{ +// LinkId returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "link-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) LinkId() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_LinkIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-id"}, map[string]interface{}{}, @@ -144013,9 +144227,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Lin } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144024,9 +144238,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Metric } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144035,9 +144249,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Met } } -// NumberLinks returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "number-links". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) NumberLinks() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinks { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinks{ +// NumberLinks returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "number-links". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) NumberLinks() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPath{ NodePath: ygot.NewNodePath( []string{"state", "number-links"}, map[string]interface{}{}, @@ -144046,9 +144260,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Number } } -// NumberLinks returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "number-links". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) NumberLinks() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksAny{ +// NumberLinks returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "number-links". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) NumberLinks() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberLinksPathAny{ NodePath: ygot.NewNodePath( []string{"state", "number-links"}, map[string]interface{}{}, @@ -144057,9 +144271,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Num } } -// NumberTosMetrics returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "number-tos-metrics". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) NumberTosMetrics() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetrics { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetrics{ +// NumberTosMetrics returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "number-tos-metrics". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) NumberTosMetrics() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPath{ NodePath: ygot.NewNodePath( []string{"state", "number-tos-metrics"}, map[string]interface{}{}, @@ -144068,9 +144282,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Number } } -// NumberTosMetrics returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "number-tos-metrics". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) NumberTosMetrics() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsAny{ +// NumberTosMetrics returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "number-tos-metrics". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) NumberTosMetrics() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_NumberTosMetricsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "number-tos-metrics"}, map[string]interface{}{}, @@ -144079,9 +144293,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Num } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Type { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_Type{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -144090,9 +144304,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) Type() } } -// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "type". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeAny{ +// Type returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "type". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) Type() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -144101,9 +144315,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Typ } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -144112,9 +144326,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) TypeOf } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -144123,9 +144337,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Typ } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPath) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -144134,9 +144348,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa) TypeOf } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaPathAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -144145,39 +144359,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsaAny) Typ } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Tos represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Tos struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/router-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144186,9 +144400,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfS } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144197,9 +144411,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfS } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Tos { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_Tos{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePath) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPath{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -144208,9 +144422,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfS } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServiceAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosAny{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfServicePathAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfService_TosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -144219,29 +144433,29 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_RouterLsa_TypeOfS } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMask represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/state/network-mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMask struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/state/network-mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/state/network-mask YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/state/network-mask YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPathAny struct { *ygot.NodePath } -// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa the path struct for its child "network-mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMask { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMask{ +// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath the path struct for its child "network-mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPath{ NodePath: ygot.NewNodePath( []string{"state", "network-mask"}, map[string]interface{}{}, @@ -144250,9 +144464,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) Netwo } } -// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny the path struct for its child "network-mask". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskAny{ +// NetworkMask returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny the path struct for its child "network-mask". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny) NetworkMask() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_NetworkMaskPathAny{ NodePath: ygot.NewNodePath( []string{"state", "network-mask"}, map[string]interface{}{}, @@ -144261,9 +144475,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) Ne } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -144272,9 +144486,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) TypeO } } -// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny{ +// TypeOfServiceAny returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny) TypeOfServiceAny() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": "*"}, @@ -144283,9 +144497,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) Ty } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPath) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -144294,9 +144508,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa) TypeO } } -// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny the path struct for its child "type-of-service". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny{ +// TypeOfService returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny the path struct for its child "type-of-service". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaPathAny) TypeOfService(Tos uint8) *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny{ NodePath: ygot.NewNodePath( []string{"types-of-service", "type-of-service"}, map[string]interface{}{"tos": Tos}, @@ -144305,39 +144519,39 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsaAny) Ty } } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Metric struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Tos represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Tos struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/tos YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/lsdb/lsa-types/lsa-type/lsas/lsa/summary-lsa/types-of-service/type-of-service/state/tos YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPathAny struct { *ygot.NodePath } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Metric { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Metric{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPath{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144346,9 +144560,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOf } } -// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny) Metric() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_MetricPathAny{ NodePath: ygot.NewNodePath( []string{"state", "metric"}, map[string]interface{}{}, @@ -144357,9 +144571,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOf } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Tos { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_Tos{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePath) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPath{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -144368,9 +144582,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOf } } -// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny the path struct for its child "tos". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServiceAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosAny{ +// Tos returns from NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny the path struct for its child "tos". +func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfServicePathAny) Tos() *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOfService_TosPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tos"}, map[string]interface{}{}, @@ -144379,161 +144593,161 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_Lsdb_LsaType_Lsa_SummaryLsa_TypeOf } } -// NetworkInstance_Protocol_Ospfv2_Area_Mpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Mpls struct { +// NetworkInstance_Protocol_Ospfv2_Area_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_MplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_MplsAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls/state/traffic-engineering-enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabled struct { +// NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls/config/traffic-engineering-enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls/state/traffic-engineering-enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/mpls/config/traffic-engineering-enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPathAny struct { *ygot.NodePath } -// TrafficEngineeringEnabled returns from NetworkInstance_Protocol_Ospfv2_Area_Mpls the path struct for its child "traffic-engineering-enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Area_Mpls) TrafficEngineeringEnabled() *NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabled { - return &NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabled{ +// TrafficEngineeringEnabled returns from NetworkInstance_Protocol_Ospfv2_Area_MplsPath the path struct for its child "traffic-engineering-enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Area_MplsPath) TrafficEngineeringEnabled() *NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPath { + return &NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-enabled"}, + []string{"config", "traffic-engineering-enabled"}, map[string]interface{}{}, n, ), } } -// TrafficEngineeringEnabled returns from NetworkInstance_Protocol_Ospfv2_Area_MplsAny the path struct for its child "traffic-engineering-enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Area_MplsAny) TrafficEngineeringEnabled() *NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledAny { - return &NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledAny{ +// TrafficEngineeringEnabled returns from NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny the path struct for its child "traffic-engineering-enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Area_MplsPathAny) TrafficEngineeringEnabled() *NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_Mpls_TrafficEngineeringEnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-enabled"}, + []string{"config", "traffic-engineering-enabled"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyState represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyState struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStateAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/adjacency-state YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStateAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/adjacency-state YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/backup-designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/backup-designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/backup-designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/backup-designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/dead-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTime struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/dead-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/dead-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/dead-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouter struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/designated-router YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/designated-router YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTime represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/last-established-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTime struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/last-established-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/last-established-time YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimeAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/last-established-time YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilities represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/optional-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilities struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/optional-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/optional-capabilities YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/optional-capabilities YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_Priority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_Priority struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/priority YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/priority YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/remote-router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterId struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/config/remote-router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/remote-router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/config/remote-router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLength represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/retranmission-queue-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLength struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/retranmission-queue-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/retranmission-queue-length YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/retranmission-queue-length YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/state-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChanges struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/state-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/state-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesAny struct { +// NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/areas/area/virtual-links/virtual-link/state/state-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPathAny struct { *ygot.NodePath } -// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyState { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyState{ +// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePath{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -144542,9 +144756,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) AdjacencyState() *Net } } -// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "adjacency-state". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStateAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStateAny{ +// AdjacencyState returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "adjacency-state". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) AdjacencyState() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_AdjacencyStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "adjacency-state"}, map[string]interface{}{}, @@ -144553,9 +144767,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) AdjacencyState() * } } -// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "backup-designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouter{ +// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "backup-designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "backup-designated-router"}, map[string]interface{}{}, @@ -144564,9 +144778,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) BackupDesignatedRoute } } -// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "backup-designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterAny{ +// BackupDesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "backup-designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) BackupDesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_BackupDesignatedRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "backup-designated-router"}, map[string]interface{}{}, @@ -144575,9 +144789,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) BackupDesignatedRo } } -// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "dead-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTime { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTime{ +// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "dead-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePath{ NodePath: ygot.NewNodePath( []string{"state", "dead-time"}, map[string]interface{}{}, @@ -144586,9 +144800,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) DeadTime() *NetworkIn } } -// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "dead-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimeAny{ +// DeadTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "dead-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) DeadTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DeadTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "dead-time"}, map[string]interface{}{}, @@ -144597,9 +144811,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) DeadTime() *Networ } } -// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouter { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouter{ +// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-router"}, map[string]interface{}{}, @@ -144608,9 +144822,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) DesignatedRouter() *N } } -// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "designated-router". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterAny{ +// DesignatedRouter returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "designated-router". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) DesignatedRouter() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_DesignatedRouterPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-router"}, map[string]interface{}{}, @@ -144619,9 +144833,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) DesignatedRouter() } } -// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "last-established-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTime { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTime{ +// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "last-established-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePath{ NodePath: ygot.NewNodePath( []string{"state", "last-established-time"}, map[string]interface{}{}, @@ -144630,9 +144844,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) LastEstablishedTime() } } -// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "last-established-time". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimeAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimeAny{ +// LastEstablishedTime returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "last-established-time". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) LastEstablishedTime() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_LastEstablishedTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-established-time"}, map[string]interface{}{}, @@ -144641,9 +144855,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) LastEstablishedTim } } -// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "optional-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilities { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilities{ +// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "optional-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPath{ NodePath: ygot.NewNodePath( []string{"state", "optional-capabilities"}, map[string]interface{}{}, @@ -144652,9 +144866,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) OptionalCapabilities( } } -// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "optional-capabilities". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesAny{ +// OptionalCapabilities returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "optional-capabilities". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) OptionalCapabilities() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_OptionalCapabilitiesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optional-capabilities"}, map[string]interface{}{}, @@ -144663,9 +144877,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) OptionalCapabiliti } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) Priority() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_Priority { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_Priority{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) Priority() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -144674,9 +144888,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) Priority() *NetworkIn } } -// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "priority". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityAny{ +// Priority returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "priority". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) Priority() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "priority"}, map[string]interface{}{}, @@ -144685,31 +144899,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) Priority() *Networ } } -// RemoteRouterId returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "remote-router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) RemoteRouterId() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterId { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterId{ +// RemoteRouterId returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "remote-router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) RemoteRouterId() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-router-id"}, + []string{"config", "remote-router-id"}, map[string]interface{}{}, n, ), } } -// RemoteRouterId returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "remote-router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) RemoteRouterId() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdAny{ +// RemoteRouterId returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "remote-router-id". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) RemoteRouterId() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RemoteRouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-router-id"}, + []string{"config", "remote-router-id"}, map[string]interface{}{}, n, ), } } -// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "retranmission-queue-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLength { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLength{ +// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "retranmission-queue-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPath{ NodePath: ygot.NewNodePath( []string{"state", "retranmission-queue-length"}, map[string]interface{}{}, @@ -144718,9 +144932,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) RetranmissionQueueLen } } -// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "retranmission-queue-length". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthAny{ +// RetranmissionQueueLength returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "retranmission-queue-length". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) RetranmissionQueueLength() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_RetranmissionQueueLengthPathAny{ NodePath: ygot.NewNodePath( []string{"state", "retranmission-queue-length"}, map[string]interface{}{}, @@ -144729,9 +144943,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) RetranmissionQueue } } -// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLink the path struct for its child "state-changes". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChanges { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChanges{ +// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath the path struct for its child "state-changes". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPath) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPath { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "state-changes"}, map[string]interface{}{}, @@ -144740,9 +144954,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink) StateChanges() *Netwo } } -// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny the path struct for its child "state-changes". -func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesAny { - return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesAny{ +// StateChanges returns from NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny the path struct for its child "state-changes". +func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkPathAny) StateChanges() *NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Area_VirtualLink_StateChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "state-changes"}, map[string]interface{}{}, @@ -144751,69 +144965,69 @@ func (n *NetworkInstance_Protocol_Ospfv2_Area_VirtualLinkAny) StateChanges() *Ne } } -// NetworkInstance_Protocol_Ospfv2_Global represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global struct { +// NetworkInstance_Protocol_Ospfv2_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global YANG schema element. +type NetworkInstance_Protocol_Ospfv2_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global YANG schema element. -type NetworkInstance_Protocol_Ospfv2_GlobalAny struct { +// NetworkInstance_Protocol_Ospfv2_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global YANG schema element. +type NetworkInstance_Protocol_Ospfv2_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworks represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/hide-transit-only-networks YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworks struct { +// NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/hide-transit-only-networks YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/hide-transit-only-networks YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/hide-transit-only-networks YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_IgpShortcuts represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/igp-shortcuts YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_IgpShortcuts struct { +// NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/igp-shortcuts YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/igp-shortcuts YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/igp-shortcuts YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/log-adjacency-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChanges struct { +// NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/log-adjacency-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/log-adjacency-changes YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/log-adjacency-changes YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_RouterId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_RouterId struct { +// NetworkInstance_Protocol_Ospfv2_Global_RouterIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_RouterIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_RouterIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/router-id YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_RouterIdAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_RouterIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/router-id YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_RouterIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostMode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/summary-route-cost-mode YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostMode struct { +// NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/summary-route-cost-mode YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/state/summary-route-cost-mode YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModeAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/config/summary-route-cost-mode YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePathAny struct { *ygot.NodePath } -// GracefulRestart returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Ospfv2_Global) GracefulRestart() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart{ +// GracefulRestart returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) GracefulRestart() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -144822,9 +145036,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) GracefulRestart() *NetworkInsta } } -// GracefulRestart returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "graceful-restart". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) GracefulRestart() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny{ +// GracefulRestart returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "graceful-restart". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) GracefulRestart() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny{ NodePath: ygot.NewNodePath( []string{"graceful-restart"}, map[string]interface{}{}, @@ -144833,53 +145047,53 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) GracefulRestart() *NetworkIn } } -// HideTransitOnlyNetworks returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "hide-transit-only-networks". -func (n *NetworkInstance_Protocol_Ospfv2_Global) HideTransitOnlyNetworks() *NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworks { - return &NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworks{ +// HideTransitOnlyNetworks returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "hide-transit-only-networks". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) HideTransitOnlyNetworks() *NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPath { + return &NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPath{ NodePath: ygot.NewNodePath( - []string{"state", "hide-transit-only-networks"}, + []string{"config", "hide-transit-only-networks"}, map[string]interface{}{}, n, ), } } -// HideTransitOnlyNetworks returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "hide-transit-only-networks". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) HideTransitOnlyNetworks() *NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksAny { - return &NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksAny{ +// HideTransitOnlyNetworks returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "hide-transit-only-networks". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) HideTransitOnlyNetworks() *NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_HideTransitOnlyNetworksPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hide-transit-only-networks"}, + []string{"config", "hide-transit-only-networks"}, map[string]interface{}{}, n, ), } } -// IgpShortcuts returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "igp-shortcuts". -func (n *NetworkInstance_Protocol_Ospfv2_Global) IgpShortcuts() *NetworkInstance_Protocol_Ospfv2_Global_IgpShortcuts { - return &NetworkInstance_Protocol_Ospfv2_Global_IgpShortcuts{ +// IgpShortcuts returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "igp-shortcuts". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) IgpShortcuts() *NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPath { + return &NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPath{ NodePath: ygot.NewNodePath( - []string{"state", "igp-shortcuts"}, + []string{"config", "igp-shortcuts"}, map[string]interface{}{}, n, ), } } -// IgpShortcuts returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "igp-shortcuts". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) IgpShortcuts() *NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsAny { - return &NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsAny{ +// IgpShortcuts returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "igp-shortcuts". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) IgpShortcuts() *NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_IgpShortcutsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "igp-shortcuts"}, + []string{"config", "igp-shortcuts"}, map[string]interface{}{}, n, ), } } -// InterAreaPropagationPolicyAny returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAny() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAny returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) InterAreaPropagationPolicyAny() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": "*", "dst-area": "*"}, @@ -144888,9 +145102,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAny() } } -// InterAreaPropagationPolicyAny returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAny() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAny returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) InterAreaPropagationPolicyAny() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": "*", "dst-area": "*"}, @@ -144899,9 +145113,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAn } } -// InterAreaPropagationPolicyAnyDstArea returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAnyDstArea(SrcArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAnyDstArea returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) InterAreaPropagationPolicyAnyDstArea(SrcArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": SrcArea, "dst-area": "*"}, @@ -144910,9 +145124,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAnyDs } } -// InterAreaPropagationPolicyAnyDstArea returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAnyDstArea(SrcArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAnyDstArea returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) InterAreaPropagationPolicyAnyDstArea(SrcArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": SrcArea, "dst-area": "*"}, @@ -144921,9 +145135,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAn } } -// InterAreaPropagationPolicyAnySrcArea returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAnySrcArea(DstArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAnySrcArea returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) InterAreaPropagationPolicyAnySrcArea(DstArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": "*", "dst-area": DstArea}, @@ -144932,9 +145146,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicyAnySr } } -// InterAreaPropagationPolicyAnySrcArea returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAnySrcArea(DstArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicyAnySrcArea returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) InterAreaPropagationPolicyAnySrcArea(DstArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": "*", "dst-area": DstArea}, @@ -144943,9 +145157,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicyAn } } -// InterAreaPropagationPolicy returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicy(SrcArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union, DstArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy{ +// InterAreaPropagationPolicy returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) InterAreaPropagationPolicy(SrcArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union, DstArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": SrcArea, "dst-area": DstArea}, @@ -144954,9 +145168,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) InterAreaPropagationPolicy(SrcA } } -// InterAreaPropagationPolicy returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "inter-area-propagation-policy". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicy(SrcArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union, DstArea oc.NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny{ +// InterAreaPropagationPolicy returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "inter-area-propagation-policy". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) InterAreaPropagationPolicy(SrcArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union, DstArea NetworkInstance_Protocol_Ospfv2_Area_Identifier_Union) *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny{ NodePath: ygot.NewNodePath( []string{"inter-area-propagation-policies", "inter-area-propagation-policy"}, map[string]interface{}{"src-area": SrcArea, "dst-area": DstArea}, @@ -144965,31 +145179,31 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) InterAreaPropagationPolicy(S } } -// LogAdjacencyChanges returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "log-adjacency-changes". -func (n *NetworkInstance_Protocol_Ospfv2_Global) LogAdjacencyChanges() *NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChanges { - return &NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChanges{ +// LogAdjacencyChanges returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "log-adjacency-changes". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) LogAdjacencyChanges() *NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPath { + return &NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "log-adjacency-changes"}, + []string{"config", "log-adjacency-changes"}, map[string]interface{}{}, n, ), } } -// LogAdjacencyChanges returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "log-adjacency-changes". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) LogAdjacencyChanges() *NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesAny { - return &NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesAny{ +// LogAdjacencyChanges returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "log-adjacency-changes". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) LogAdjacencyChanges() *NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_LogAdjacencyChangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "log-adjacency-changes"}, + []string{"config", "log-adjacency-changes"}, map[string]interface{}{}, n, ), } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_Global) Mpls() *NetworkInstance_Protocol_Ospfv2_Global_Mpls { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) Mpls() *NetworkInstance_Protocol_Ospfv2_Global_MplsPath { + return &NetworkInstance_Protocol_Ospfv2_Global_MplsPath{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -144998,9 +145212,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) Mpls() *NetworkInstance_Protoco } } -// Mpls returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "mpls". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Global_MplsAny { - return &NetworkInstance_Protocol_Ospfv2_Global_MplsAny{ +// Mpls returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "mpls". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) Mpls() *NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny{ NodePath: ygot.NewNodePath( []string{"mpls"}, map[string]interface{}{}, @@ -145009,53 +145223,53 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) Mpls() *NetworkInstance_Prot } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_Global) RouterId() *NetworkInstance_Protocol_Ospfv2_Global_RouterId { - return &NetworkInstance_Protocol_Ospfv2_Global_RouterId{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) RouterId() *NetworkInstance_Protocol_Ospfv2_Global_RouterIdPath { + return &NetworkInstance_Protocol_Ospfv2_Global_RouterIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// RouterId returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "router-id". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Global_RouterIdAny { - return &NetworkInstance_Protocol_Ospfv2_Global_RouterIdAny{ +// RouterId returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "router-id". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) RouterId() *NetworkInstance_Protocol_Ospfv2_Global_RouterIdPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_RouterIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "router-id"}, + []string{"config", "router-id"}, map[string]interface{}{}, n, ), } } -// SummaryRouteCostMode returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "summary-route-cost-mode". -func (n *NetworkInstance_Protocol_Ospfv2_Global) SummaryRouteCostMode() *NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostMode { - return &NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostMode{ +// SummaryRouteCostMode returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "summary-route-cost-mode". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) SummaryRouteCostMode() *NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePath { + return &NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePath{ NodePath: ygot.NewNodePath( - []string{"state", "summary-route-cost-mode"}, + []string{"config", "summary-route-cost-mode"}, map[string]interface{}{}, n, ), } } -// SummaryRouteCostMode returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "summary-route-cost-mode". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) SummaryRouteCostMode() *NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModeAny { - return &NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModeAny{ +// SummaryRouteCostMode returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "summary-route-cost-mode". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) SummaryRouteCostMode() *NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_SummaryRouteCostModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "summary-route-cost-mode"}, + []string{"config", "summary-route-cost-mode"}, map[string]interface{}{}, n, ), } } -// Timers returns from NetworkInstance_Protocol_Ospfv2_Global the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Ospfv2_Global) Timers() *NetworkInstance_Protocol_Ospfv2_Global_Timers { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers{ +// Timers returns from NetworkInstance_Protocol_Ospfv2_GlobalPath the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPath) Timers() *NetworkInstance_Protocol_Ospfv2_Global_TimersPath { + return &NetworkInstance_Protocol_Ospfv2_Global_TimersPath{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -145064,9 +145278,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global) Timers() *NetworkInstance_Proto } } -// Timers returns from NetworkInstance_Protocol_Ospfv2_GlobalAny the path struct for its child "timers". -func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) Timers() *NetworkInstance_Protocol_Ospfv2_Global_TimersAny { - return &NetworkInstance_Protocol_Ospfv2_Global_TimersAny{ +// Timers returns from NetworkInstance_Protocol_Ospfv2_GlobalPathAny the path struct for its child "timers". +func (n *NetworkInstance_Protocol_Ospfv2_GlobalPathAny) Timers() *NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny{ NodePath: ygot.NewNodePath( []string{"timers"}, map[string]interface{}{}, @@ -145075,241 +145289,241 @@ func (n *NetworkInstance_Protocol_Ospfv2_GlobalAny) Timers() *NetworkInstance_Pr } } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_Enabled struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnly represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnly struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/state/helper-only YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/graceful-restart/config/helper-only YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_Enabled { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPath { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledAny { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart) HelperOnly() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnly { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnly{ +// HelperOnly returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPath) HelperOnly() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPath { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// HelperOnly returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny the path struct for its child "helper-only". -func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartAny) HelperOnly() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyAny{ +// HelperOnly returns from NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny the path struct for its child "helper-only". +func (n *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestartPathAny) HelperOnly() *NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_GracefulRestart_HelperOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-only"}, + []string{"config", "helper-only"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicy struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/default-import-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/default-import-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstArea represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/dst-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstArea struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/dst-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/dst-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/dst-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicy struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/import-policy YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/import-policy YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcArea represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/src-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcArea struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/src-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/state/src-area YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/inter-area-propagation-policies/inter-area-propagation-policy/config/src-area YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPathAny struct { *ygot.NodePath } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy) DefaultImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicy { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath) DefaultImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPath { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny) DefaultImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny) DefaultImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DstArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy the path struct for its child "dst-area". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy) DstArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstArea { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstArea{ +// DstArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath the path struct for its child "dst-area". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath) DstArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPath { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPath{ NodePath: ygot.NewNodePath( - []string{"state", "dst-area"}, + []string{"config", "dst-area"}, map[string]interface{}{}, n, ), } } -// DstArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny the path struct for its child "dst-area". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny) DstArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaAny{ +// DstArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny the path struct for its child "dst-area". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny) DstArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_DstAreaPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dst-area"}, + []string{"config", "dst-area"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy) ImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicy { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicy{ +// ImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath) ImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPath { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny the path struct for its child "import-policy". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny) ImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyAny{ +// ImportPolicy returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny) ImportPolicy() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// SrcArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy the path struct for its child "src-area". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy) SrcArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcArea { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcArea{ +// SrcArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath the path struct for its child "src-area". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPath) SrcArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPath { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPath{ NodePath: ygot.NewNodePath( - []string{"state", "src-area"}, + []string{"config", "src-area"}, map[string]interface{}{}, n, ), } } -// SrcArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny the path struct for its child "src-area". -func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyAny) SrcArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaAny { - return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaAny{ +// SrcArea returns from NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny the path struct for its child "src-area". +func (n *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicyPathAny) SrcArea() *NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_InterAreaPropagationPolicy_SrcAreaPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "src-area"}, + []string{"config", "src-area"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls struct { +// NetworkInstance_Protocol_Ospfv2_Global_MplsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_MplsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_MplsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_MplsAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensions represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/state/traffic-engineering-extensions YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensions struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/config/traffic-engineering-extensions YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/state/traffic-engineering-extensions YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/config/traffic-engineering-extensions YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPathAny struct { *ygot.NodePath } -// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync{ +// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Global_MplsPath the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsPath) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -145318,9 +145532,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls) IgpLdpSync() *NetworkInsta } } -// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Global_MplsAny the path struct for its child "igp-ldp-sync". -func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsAny) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny{ +// IgpLdpSync returns from NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny the path struct for its child "igp-ldp-sync". +func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny) IgpLdpSync() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny{ NodePath: ygot.NewNodePath( []string{"igp-ldp-sync"}, map[string]interface{}{}, @@ -145329,115 +145543,115 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsAny) IgpLdpSync() *NetworkIn } } -// TrafficEngineeringExtensions returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls the path struct for its child "traffic-engineering-extensions". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls) TrafficEngineeringExtensions() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensions { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensions{ +// TrafficEngineeringExtensions returns from NetworkInstance_Protocol_Ospfv2_Global_MplsPath the path struct for its child "traffic-engineering-extensions". +func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsPath) TrafficEngineeringExtensions() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPath{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-extensions"}, + []string{"config", "traffic-engineering-extensions"}, map[string]interface{}{}, n, ), } } -// TrafficEngineeringExtensions returns from NetworkInstance_Protocol_Ospfv2_Global_MplsAny the path struct for its child "traffic-engineering-extensions". -func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsAny) TrafficEngineeringExtensions() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsAny{ +// TrafficEngineeringExtensions returns from NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny the path struct for its child "traffic-engineering-extensions". +func (n *NetworkInstance_Protocol_Ospfv2_Global_MplsPathAny) TrafficEngineeringExtensions() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_TrafficEngineeringExtensionsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "traffic-engineering-extensions"}, + []string{"config", "traffic-engineering-extensions"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_Enabled struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/state/enabled YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/config/enabled YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelay struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/state/post-session-up-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/mpls/igp-ldp-sync/config/post-session-up-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny struct { *ygot.NodePath } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_Enabled { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny) Enabled() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelay { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelay{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPath) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny the path struct for its child "post-session-up-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncAny) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayAny{ +// PostSessionUpDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny the path struct for its child "post-session-up-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSyncPathAny) PostSessionUpDelay() *NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Mpls_IgpLdpSync_PostSessionUpDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "post-session-up-delay"}, + []string{"config", "post-session-up-delay"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Global_Timers represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers struct { +// NetworkInstance_Protocol_Ospfv2_Global_TimersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_TimersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_TimersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_TimersAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny struct { *ygot.NodePath } -// LsaGeneration returns from NetworkInstance_Protocol_Ospfv2_Global_Timers the path struct for its child "lsa-generation". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) LsaGeneration() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration{ +// LsaGeneration returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPath the path struct for its child "lsa-generation". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPath) LsaGeneration() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath{ NodePath: ygot.NewNodePath( []string{"lsa-generation"}, map[string]interface{}{}, @@ -145446,9 +145660,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) LsaGeneration() *Network } } -// LsaGeneration returns from NetworkInstance_Protocol_Ospfv2_Global_TimersAny the path struct for its child "lsa-generation". -func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) LsaGeneration() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny{ +// LsaGeneration returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny the path struct for its child "lsa-generation". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny) LsaGeneration() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny{ NodePath: ygot.NewNodePath( []string{"lsa-generation"}, map[string]interface{}{}, @@ -145457,9 +145671,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) LsaGeneration() *Netw } } -// MaxMetric returns from NetworkInstance_Protocol_Ospfv2_Global_Timers the path struct for its child "max-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) MaxMetric() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric{ +// MaxMetric returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPath the path struct for its child "max-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPath) MaxMetric() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath{ NodePath: ygot.NewNodePath( []string{"max-metric"}, map[string]interface{}{}, @@ -145468,9 +145682,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) MaxMetric() *NetworkInst } } -// MaxMetric returns from NetworkInstance_Protocol_Ospfv2_Global_TimersAny the path struct for its child "max-metric". -func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) MaxMetric() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny{ +// MaxMetric returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny the path struct for its child "max-metric". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny) MaxMetric() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny{ NodePath: ygot.NewNodePath( []string{"max-metric"}, map[string]interface{}{}, @@ -145479,9 +145693,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) MaxMetric() *NetworkI } } -// Spf returns from NetworkInstance_Protocol_Ospfv2_Global_Timers the path struct for its child "spf". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) Spf() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf{ +// Spf returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPath the path struct for its child "spf". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPath) Spf() *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath{ NodePath: ygot.NewNodePath( []string{"spf"}, map[string]interface{}{}, @@ -145490,9 +145704,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers) Spf() *NetworkInstance_P } } -// Spf returns from NetworkInstance_Protocol_Ospfv2_Global_TimersAny the path struct for its child "spf". -func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) Spf() *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny{ +// Spf returns from NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny the path struct for its child "spf". +func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersPathAny) Spf() *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny{ NodePath: ygot.NewNodePath( []string{"spf"}, map[string]interface{}{}, @@ -145501,93 +145715,93 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_TimersAny) Spf() *NetworkInstanc } } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/initial-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelay struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/config/initial-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/initial-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/config/initial-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/maximum-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelay struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/config/maximum-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/maximum-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/config/maximum-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/timer-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerType struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/timer-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/timer-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/lsa-generation/state/timer-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePathAny struct { *ygot.NodePath } -// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration the path struct for its child "initial-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelay { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelay{ +// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath the path struct for its child "initial-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "initial-delay"}, + []string{"config", "initial-delay"}, map[string]interface{}{}, n, ), } } -// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny the path struct for its child "initial-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayAny{ +// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny the path struct for its child "initial-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_InitialDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "initial-delay"}, + []string{"config", "initial-delay"}, map[string]interface{}{}, n, ), } } -// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration the path struct for its child "maximum-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelay { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelay{ +// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath the path struct for its child "maximum-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-delay"}, + []string{"config", "maximum-delay"}, map[string]interface{}{}, n, ), } } -// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny the path struct for its child "maximum-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayAny{ +// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny the path struct for its child "maximum-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_MaximumDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-delay"}, + []string{"config", "maximum-delay"}, map[string]interface{}{}, n, ), } } -// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration the path struct for its child "timer-type". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerType { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerType{ +// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath the path struct for its child "timer-type". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPath) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePath{ NodePath: ygot.NewNodePath( []string{"state", "timer-type"}, map[string]interface{}{}, @@ -145596,9 +145810,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration) TimerType( } } -// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny the path struct for its child "timer-type". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypeAny{ +// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny the path struct for its child "timer-type". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationPathAny) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGeneration_TimerTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "timer-type"}, map[string]interface{}{}, @@ -145607,231 +145821,231 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_LsaGenerationAny) TimerTy } } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Include represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/include YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Include struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/include YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/include YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludeAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/include YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Set represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/set YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Set struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/set YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/set YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/set YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Timeout represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/timeout YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Timeout struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/timeout YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/timeout YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/timeout YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Trigger represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/trigger YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Trigger struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/trigger YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/state/trigger YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/max-metric/config/trigger YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPathAny struct { *ygot.NodePath } -// Include returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric the path struct for its child "include". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric) Include() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Include { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Include{ +// Include returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath the path struct for its child "include". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath) Include() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePath{ NodePath: ygot.NewNodePath( - []string{"state", "include"}, + []string{"config", "include"}, map[string]interface{}{}, n, ), } } -// Include returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny the path struct for its child "include". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny) Include() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludeAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludeAny{ +// Include returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny the path struct for its child "include". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny) Include() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_IncludePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "include"}, + []string{"config", "include"}, map[string]interface{}{}, n, ), } } -// Set returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric the path struct for its child "set". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric) Set() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Set { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Set{ +// Set returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath the path struct for its child "set". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath) Set() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPath{ NodePath: ygot.NewNodePath( - []string{"state", "set"}, + []string{"config", "set"}, map[string]interface{}{}, n, ), } } -// Set returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny the path struct for its child "set". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny) Set() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetAny{ +// Set returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny the path struct for its child "set". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny) Set() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_SetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set"}, + []string{"config", "set"}, map[string]interface{}{}, n, ), } } -// Timeout returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric the path struct for its child "timeout". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric) Timeout() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Timeout { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Timeout{ +// Timeout returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath the path struct for its child "timeout". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath) Timeout() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPath{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// Timeout returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny the path struct for its child "timeout". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny) Timeout() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutAny{ +// Timeout returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny the path struct for its child "timeout". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny) Timeout() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TimeoutPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// Trigger returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric the path struct for its child "trigger". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric) Trigger() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Trigger { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_Trigger{ +// Trigger returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath the path struct for its child "trigger". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPath) Trigger() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPath{ NodePath: ygot.NewNodePath( - []string{"state", "trigger"}, + []string{"config", "trigger"}, map[string]interface{}{}, n, ), } } -// Trigger returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny the path struct for its child "trigger". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricAny) Trigger() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerAny{ +// Trigger returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny the path struct for its child "trigger". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetricPathAny) Trigger() *NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_MaxMetric_TriggerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trigger"}, + []string{"config", "trigger"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/initial-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelay struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/config/initial-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/initial-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/config/initial-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelay represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/maximum-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelay struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/config/maximum-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/maximum-delay YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/config/maximum-delay YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerType represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/timer-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerType struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/timer-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/timer-type YANG schema element. -type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypeAny struct { +// NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/ospfv2/global/timers/spf/state/timer-type YANG schema element. +type NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePathAny struct { *ygot.NodePath } -// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf the path struct for its child "initial-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelay { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelay{ +// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath the path struct for its child "initial-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "initial-delay"}, + []string{"config", "initial-delay"}, map[string]interface{}{}, n, ), } } -// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny the path struct for its child "initial-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayAny{ +// InitialDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny the path struct for its child "initial-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny) InitialDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_InitialDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "initial-delay"}, + []string{"config", "initial-delay"}, map[string]interface{}{}, n, ), } } -// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf the path struct for its child "maximum-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelay { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelay{ +// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath the path struct for its child "maximum-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-delay"}, + []string{"config", "maximum-delay"}, map[string]interface{}{}, n, ), } } -// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny the path struct for its child "maximum-delay". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayAny{ +// MaximumDelay returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny the path struct for its child "maximum-delay". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny) MaximumDelay() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_MaximumDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum-delay"}, + []string{"config", "maximum-delay"}, map[string]interface{}{}, n, ), } } -// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf the path struct for its child "timer-type". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerType { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerType{ +// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath the path struct for its child "timer-type". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPath) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePath { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePath{ NodePath: ygot.NewNodePath( []string{"state", "timer-type"}, map[string]interface{}{}, @@ -145840,9 +146054,9 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf) TimerType() *Network } } -// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny the path struct for its child "timer-type". -func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypeAny { - return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypeAny{ +// TimerType returns from NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny the path struct for its child "timer-type". +func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfPathAny) TimerType() *NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePathAny { + return &NetworkInstance_Protocol_Ospfv2_Global_Timers_Spf_TimerTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "timer-type"}, map[string]interface{}{}, @@ -145851,19 +146065,19 @@ func (n *NetworkInstance_Protocol_Ospfv2_Global_Timers_SpfAny) TimerType() *Netw } } -// NetworkInstance_Protocol_Pim represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim YANG schema element. -type NetworkInstance_Protocol_Pim struct { +// NetworkInstance_Protocol_PimPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim YANG schema element. +type NetworkInstance_Protocol_PimPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_PimAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim YANG schema element. -type NetworkInstance_Protocol_PimAny struct { +// NetworkInstance_Protocol_PimPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim YANG schema element. +type NetworkInstance_Protocol_PimPathAny struct { *ygot.NodePath } -// Global returns from NetworkInstance_Protocol_Pim the path struct for its child "global". -func (n *NetworkInstance_Protocol_Pim) Global() *NetworkInstance_Protocol_Pim_Global { - return &NetworkInstance_Protocol_Pim_Global{ +// Global returns from NetworkInstance_Protocol_PimPath the path struct for its child "global". +func (n *NetworkInstance_Protocol_PimPath) Global() *NetworkInstance_Protocol_Pim_GlobalPath { + return &NetworkInstance_Protocol_Pim_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -145872,9 +146086,9 @@ func (n *NetworkInstance_Protocol_Pim) Global() *NetworkInstance_Protocol_Pim_Gl } } -// Global returns from NetworkInstance_Protocol_PimAny the path struct for its child "global". -func (n *NetworkInstance_Protocol_PimAny) Global() *NetworkInstance_Protocol_Pim_GlobalAny { - return &NetworkInstance_Protocol_Pim_GlobalAny{ +// Global returns from NetworkInstance_Protocol_PimPathAny the path struct for its child "global". +func (n *NetworkInstance_Protocol_PimPathAny) Global() *NetworkInstance_Protocol_Pim_GlobalPathAny { + return &NetworkInstance_Protocol_Pim_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -145883,9 +146097,9 @@ func (n *NetworkInstance_Protocol_PimAny) Global() *NetworkInstance_Protocol_Pim } } -// InterfaceAny returns from NetworkInstance_Protocol_Pim the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Pim) InterfaceAny() *NetworkInstance_Protocol_Pim_InterfaceAny { - return &NetworkInstance_Protocol_Pim_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_PimPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_PimPath) InterfaceAny() *NetworkInstance_Protocol_Pim_InterfacePathAny { + return &NetworkInstance_Protocol_Pim_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -145894,9 +146108,9 @@ func (n *NetworkInstance_Protocol_Pim) InterfaceAny() *NetworkInstance_Protocol_ } } -// InterfaceAny returns from NetworkInstance_Protocol_PimAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_PimAny) InterfaceAny() *NetworkInstance_Protocol_Pim_InterfaceAny { - return &NetworkInstance_Protocol_Pim_InterfaceAny{ +// InterfaceAny returns from NetworkInstance_Protocol_PimPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_PimPathAny) InterfaceAny() *NetworkInstance_Protocol_Pim_InterfacePathAny { + return &NetworkInstance_Protocol_Pim_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": "*"}, @@ -145905,9 +146119,9 @@ func (n *NetworkInstance_Protocol_PimAny) InterfaceAny() *NetworkInstance_Protoc } } -// Interface returns from NetworkInstance_Protocol_Pim the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Pim) Interface(InterfaceId string) *NetworkInstance_Protocol_Pim_Interface { - return &NetworkInstance_Protocol_Pim_Interface{ +// Interface returns from NetworkInstance_Protocol_PimPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_PimPath) Interface(InterfaceId string) *NetworkInstance_Protocol_Pim_InterfacePath { + return &NetworkInstance_Protocol_Pim_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -145916,9 +146130,9 @@ func (n *NetworkInstance_Protocol_Pim) Interface(InterfaceId string) *NetworkIns } } -// Interface returns from NetworkInstance_Protocol_PimAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_PimAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Pim_InterfaceAny { - return &NetworkInstance_Protocol_Pim_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_PimPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_PimPathAny) Interface(InterfaceId string) *NetworkInstance_Protocol_Pim_InterfacePathAny { + return &NetworkInstance_Protocol_Pim_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"interface-id": InterfaceId}, @@ -145927,29 +146141,29 @@ func (n *NetworkInstance_Protocol_PimAny) Interface(InterfaceId string) *Network } } -// NetworkInstance_Protocol_Pim_Global represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global YANG schema element. -type NetworkInstance_Protocol_Pim_Global struct { +// NetworkInstance_Protocol_Pim_GlobalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global YANG schema element. +type NetworkInstance_Protocol_Pim_GlobalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_GlobalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global YANG schema element. -type NetworkInstance_Protocol_Pim_GlobalAny struct { +// NetworkInstance_Protocol_Pim_GlobalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global YANG schema element. +type NetworkInstance_Protocol_Pim_GlobalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_NeighborCount represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/neighbor-count YANG schema element. -type NetworkInstance_Protocol_Pim_Global_NeighborCount struct { +// NetworkInstance_Protocol_Pim_Global_NeighborCountPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/neighbor-count YANG schema element. +type NetworkInstance_Protocol_Pim_Global_NeighborCountPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_NeighborCountAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/neighbor-count YANG schema element. -type NetworkInstance_Protocol_Pim_Global_NeighborCountAny struct { +// NetworkInstance_Protocol_Pim_Global_NeighborCountPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/neighbor-count YANG schema element. +type NetworkInstance_Protocol_Pim_Global_NeighborCountPathAny struct { *ygot.NodePath } -// Counters returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Pim_Global) Counters() *NetworkInstance_Protocol_Pim_Global_Counters { - return &NetworkInstance_Protocol_Pim_Global_Counters{ +// Counters returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) Counters() *NetworkInstance_Protocol_Pim_Global_CountersPath { + return &NetworkInstance_Protocol_Pim_Global_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -145958,9 +146172,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) Counters() *NetworkInstance_Protoc } } -// Counters returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) Counters() *NetworkInstance_Protocol_Pim_Global_CountersAny { - return &NetworkInstance_Protocol_Pim_Global_CountersAny{ +// Counters returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) Counters() *NetworkInstance_Protocol_Pim_Global_CountersPathAny { + return &NetworkInstance_Protocol_Pim_Global_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -145969,9 +146183,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) Counters() *NetworkInstance_Pro } } -// NeighborCount returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "neighbor-count". -func (n *NetworkInstance_Protocol_Pim_Global) NeighborCount() *NetworkInstance_Protocol_Pim_Global_NeighborCount { - return &NetworkInstance_Protocol_Pim_Global_NeighborCount{ +// NeighborCount returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "neighbor-count". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) NeighborCount() *NetworkInstance_Protocol_Pim_Global_NeighborCountPath { + return &NetworkInstance_Protocol_Pim_Global_NeighborCountPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-count"}, map[string]interface{}{}, @@ -145980,9 +146194,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) NeighborCount() *NetworkInstance_P } } -// NeighborCount returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "neighbor-count". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) NeighborCount() *NetworkInstance_Protocol_Pim_Global_NeighborCountAny { - return &NetworkInstance_Protocol_Pim_Global_NeighborCountAny{ +// NeighborCount returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "neighbor-count". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) NeighborCount() *NetworkInstance_Protocol_Pim_Global_NeighborCountPathAny { + return &NetworkInstance_Protocol_Pim_Global_NeighborCountPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-count"}, map[string]interface{}{}, @@ -145991,9 +146205,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) NeighborCount() *NetworkInstanc } } -// RendezvousPointAny returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "rendezvous-point". -func (n *NetworkInstance_Protocol_Pim_Global) RendezvousPointAny() *NetworkInstance_Protocol_Pim_Global_RendezvousPointAny { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPointAny{ +// RendezvousPointAny returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "rendezvous-point". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) RendezvousPointAny() *NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny{ NodePath: ygot.NewNodePath( []string{"rendezvous-points", "rendezvous-point"}, map[string]interface{}{"address": "*"}, @@ -146002,9 +146216,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) RendezvousPointAny() *NetworkInsta } } -// RendezvousPointAny returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "rendezvous-point". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) RendezvousPointAny() *NetworkInstance_Protocol_Pim_Global_RendezvousPointAny { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPointAny{ +// RendezvousPointAny returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "rendezvous-point". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) RendezvousPointAny() *NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny{ NodePath: ygot.NewNodePath( []string{"rendezvous-points", "rendezvous-point"}, map[string]interface{}{"address": "*"}, @@ -146013,9 +146227,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) RendezvousPointAny() *NetworkIn } } -// RendezvousPoint returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "rendezvous-point". -func (n *NetworkInstance_Protocol_Pim_Global) RendezvousPoint(Address string) *NetworkInstance_Protocol_Pim_Global_RendezvousPoint { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint{ +// RendezvousPoint returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "rendezvous-point". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) RendezvousPoint(Address string) *NetworkInstance_Protocol_Pim_Global_RendezvousPointPath { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPointPath{ NodePath: ygot.NewNodePath( []string{"rendezvous-points", "rendezvous-point"}, map[string]interface{}{"address": Address}, @@ -146024,9 +146238,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) RendezvousPoint(Address string) *N } } -// RendezvousPoint returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "rendezvous-point". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) RendezvousPoint(Address string) *NetworkInstance_Protocol_Pim_Global_RendezvousPointAny { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPointAny{ +// RendezvousPoint returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "rendezvous-point". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) RendezvousPoint(Address string) *NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny{ NodePath: ygot.NewNodePath( []string{"rendezvous-points", "rendezvous-point"}, map[string]interface{}{"address": Address}, @@ -146035,9 +146249,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) RendezvousPoint(Address string) } } -// SourceAny returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "source". -func (n *NetworkInstance_Protocol_Pim_Global) SourceAny() *NetworkInstance_Protocol_Pim_Global_SourceAny { - return &NetworkInstance_Protocol_Pim_Global_SourceAny{ +// SourceAny returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "source". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) SourceAny() *NetworkInstance_Protocol_Pim_Global_SourcePathAny { + return &NetworkInstance_Protocol_Pim_Global_SourcePathAny{ NodePath: ygot.NewNodePath( []string{"sources-joined", "source"}, map[string]interface{}{"address": "*"}, @@ -146046,9 +146260,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) SourceAny() *NetworkInstance_Proto } } -// SourceAny returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "source". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) SourceAny() *NetworkInstance_Protocol_Pim_Global_SourceAny { - return &NetworkInstance_Protocol_Pim_Global_SourceAny{ +// SourceAny returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "source". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) SourceAny() *NetworkInstance_Protocol_Pim_Global_SourcePathAny { + return &NetworkInstance_Protocol_Pim_Global_SourcePathAny{ NodePath: ygot.NewNodePath( []string{"sources-joined", "source"}, map[string]interface{}{"address": "*"}, @@ -146057,9 +146271,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) SourceAny() *NetworkInstance_Pr } } -// Source returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "source". -func (n *NetworkInstance_Protocol_Pim_Global) Source(Address string) *NetworkInstance_Protocol_Pim_Global_Source { - return &NetworkInstance_Protocol_Pim_Global_Source{ +// Source returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "source". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) Source(Address string) *NetworkInstance_Protocol_Pim_Global_SourcePath { + return &NetworkInstance_Protocol_Pim_Global_SourcePath{ NodePath: ygot.NewNodePath( []string{"sources-joined", "source"}, map[string]interface{}{"address": Address}, @@ -146068,9 +146282,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) Source(Address string) *NetworkIns } } -// Source returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "source". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) Source(Address string) *NetworkInstance_Protocol_Pim_Global_SourceAny { - return &NetworkInstance_Protocol_Pim_Global_SourceAny{ +// Source returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "source". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) Source(Address string) *NetworkInstance_Protocol_Pim_Global_SourcePathAny { + return &NetworkInstance_Protocol_Pim_Global_SourcePathAny{ NodePath: ygot.NewNodePath( []string{"sources-joined", "source"}, map[string]interface{}{"address": Address}, @@ -146079,9 +146293,9 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) Source(Address string) *Network } } -// Ssm returns from NetworkInstance_Protocol_Pim_Global the path struct for its child "ssm". -func (n *NetworkInstance_Protocol_Pim_Global) Ssm() *NetworkInstance_Protocol_Pim_Global_Ssm { - return &NetworkInstance_Protocol_Pim_Global_Ssm{ +// Ssm returns from NetworkInstance_Protocol_Pim_GlobalPath the path struct for its child "ssm". +func (n *NetworkInstance_Protocol_Pim_GlobalPath) Ssm() *NetworkInstance_Protocol_Pim_Global_SsmPath { + return &NetworkInstance_Protocol_Pim_Global_SsmPath{ NodePath: ygot.NewNodePath( []string{"ssm"}, map[string]interface{}{}, @@ -146090,9 +146304,9 @@ func (n *NetworkInstance_Protocol_Pim_Global) Ssm() *NetworkInstance_Protocol_Pi } } -// Ssm returns from NetworkInstance_Protocol_Pim_GlobalAny the path struct for its child "ssm". -func (n *NetworkInstance_Protocol_Pim_GlobalAny) Ssm() *NetworkInstance_Protocol_Pim_Global_SsmAny { - return &NetworkInstance_Protocol_Pim_Global_SsmAny{ +// Ssm returns from NetworkInstance_Protocol_Pim_GlobalPathAny the path struct for its child "ssm". +func (n *NetworkInstance_Protocol_Pim_GlobalPathAny) Ssm() *NetworkInstance_Protocol_Pim_Global_SsmPathAny { + return &NetworkInstance_Protocol_Pim_Global_SsmPathAny{ NodePath: ygot.NewNodePath( []string{"ssm"}, map[string]interface{}{}, @@ -146101,49 +146315,49 @@ func (n *NetworkInstance_Protocol_Pim_GlobalAny) Ssm() *NetworkInstance_Protocol } } -// NetworkInstance_Protocol_Pim_Global_Counters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters struct { +// NetworkInstance_Protocol_Pim_Global_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters YANG schema element. +type NetworkInstance_Protocol_Pim_Global_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters YANG schema element. -type NetworkInstance_Protocol_Pim_Global_CountersAny struct { +// NetworkInstance_Protocol_Pim_Global_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters YANG schema element. +type NetworkInstance_Protocol_Pim_Global_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/bootstrap-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessages struct { +// NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/bootstrap-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/bootstrap-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesAny struct { +// NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/bootstrap-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_HelloMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/hello-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_HelloMessages struct { +// NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/hello-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/hello-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesAny struct { +// NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/hello-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/join-prune-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessages struct { +// NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/join-prune-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/join-prune-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesAny struct { +// NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/state/counters/join-prune-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPathAny struct { *ygot.NodePath } -// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Global_Counters the path struct for its child "bootstrap-messages". -func (n *NetworkInstance_Protocol_Pim_Global_Counters) BootstrapMessages() *NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessages { - return &NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessages{ +// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPath the path struct for its child "bootstrap-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPath) BootstrapMessages() *NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPath { + return &NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPath{ NodePath: ygot.NewNodePath( []string{"bootstrap-messages"}, map[string]interface{}{}, @@ -146152,9 +146366,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Counters) BootstrapMessages() *Netw } } -// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Global_CountersAny the path struct for its child "bootstrap-messages". -func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) BootstrapMessages() *NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesAny { - return &NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesAny{ +// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPathAny the path struct for its child "bootstrap-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPathAny) BootstrapMessages() *NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Global_Counters_BootstrapMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"bootstrap-messages"}, map[string]interface{}{}, @@ -146163,9 +146377,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) BootstrapMessages() *N } } -// HelloMessages returns from NetworkInstance_Protocol_Pim_Global_Counters the path struct for its child "hello-messages". -func (n *NetworkInstance_Protocol_Pim_Global_Counters) HelloMessages() *NetworkInstance_Protocol_Pim_Global_Counters_HelloMessages { - return &NetworkInstance_Protocol_Pim_Global_Counters_HelloMessages{ +// HelloMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPath the path struct for its child "hello-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPath) HelloMessages() *NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPath { + return &NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"hello-messages"}, map[string]interface{}{}, @@ -146174,9 +146388,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Counters) HelloMessages() *NetworkI } } -// HelloMessages returns from NetworkInstance_Protocol_Pim_Global_CountersAny the path struct for its child "hello-messages". -func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) HelloMessages() *NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesAny { - return &NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesAny{ +// HelloMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPathAny the path struct for its child "hello-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPathAny) HelloMessages() *NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Global_Counters_HelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"hello-messages"}, map[string]interface{}{}, @@ -146185,9 +146399,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) HelloMessages() *Netwo } } -// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Global_Counters the path struct for its child "join-prune-messages". -func (n *NetworkInstance_Protocol_Pim_Global_Counters) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessages { - return &NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessages{ +// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPath the path struct for its child "join-prune-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPath) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPath { + return &NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPath{ NodePath: ygot.NewNodePath( []string{"join-prune-messages"}, map[string]interface{}{}, @@ -146196,9 +146410,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Counters) JoinPruneMessages() *Netw } } -// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Global_CountersAny the path struct for its child "join-prune-messages". -func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesAny { - return &NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesAny{ +// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Global_CountersPathAny the path struct for its child "join-prune-messages". +func (n *NetworkInstance_Protocol_Pim_Global_CountersPathAny) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Global_Counters_JoinPruneMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"join-prune-messages"}, map[string]interface{}{}, @@ -146207,123 +146421,123 @@ func (n *NetworkInstance_Protocol_Pim_Global_CountersAny) JoinPruneMessages() *N } } -// NetworkInstance_Protocol_Pim_Global_RendezvousPoint represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPoint struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPointPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPointPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_RendezvousPointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPointAny struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/state/address YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_Address struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/config/address YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/state/address YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressAny struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/config/address YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroups represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/state/multicast-groups YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroups struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/config/multicast-groups YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/state/multicast-groups YANG schema element. -type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsAny struct { +// NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/rendezvous-points/rendezvous-point/config/multicast-groups YANG schema element. +type NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Pim_Global_RendezvousPoint the path struct for its child "address". -func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPoint) Address() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_Address { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_Address{ +// Address returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointPath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointPath) Address() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPath { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointAny) Address() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressAny { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressAny{ +// Address returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny) Address() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPathAny { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// MulticastGroups returns from NetworkInstance_Protocol_Pim_Global_RendezvousPoint the path struct for its child "multicast-groups". -func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPoint) MulticastGroups() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroups { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroups{ +// MulticastGroups returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointPath the path struct for its child "multicast-groups". +func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointPath) MulticastGroups() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPath { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPath{ NodePath: ygot.NewNodePath( - []string{"state", "multicast-groups"}, + []string{"config", "multicast-groups"}, map[string]interface{}{}, n, ), } } -// MulticastGroups returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointAny the path struct for its child "multicast-groups". -func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointAny) MulticastGroups() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsAny { - return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsAny{ +// MulticastGroups returns from NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny the path struct for its child "multicast-groups". +func (n *NetworkInstance_Protocol_Pim_Global_RendezvousPointPathAny) MulticastGroups() *NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPathAny { + return &NetworkInstance_Protocol_Pim_Global_RendezvousPoint_MulticastGroupsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "multicast-groups"}, + []string{"config", "multicast-groups"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Pim_Global_Source represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source struct { +// NetworkInstance_Protocol_Pim_Global_SourcePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source YANG schema element. +type NetworkInstance_Protocol_Pim_Global_SourcePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_SourceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source YANG schema element. -type NetworkInstance_Protocol_Pim_Global_SourceAny struct { +// NetworkInstance_Protocol_Pim_Global_SourcePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source YANG schema element. +type NetworkInstance_Protocol_Pim_Global_SourcePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_Address represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/address YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_Address struct { +// NetworkInstance_Protocol_Pim_Global_Source_AddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/address YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_AddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_AddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/address YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_AddressAny struct { +// NetworkInstance_Protocol_Pim_Global_Source_AddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/address YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_AddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_Group represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/group YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_Group struct { +// NetworkInstance_Protocol_Pim_Global_Source_GroupPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/group YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_GroupPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_GroupAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/group YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_GroupAny struct { +// NetworkInstance_Protocol_Pim_Global_Source_GroupPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/group YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_GroupPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/upstream-interface-id YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceId struct { +// NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/upstream-interface-id YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/upstream-interface-id YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdAny struct { +// NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/sources-joined/source/state/upstream-interface-id YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPathAny struct { *ygot.NodePath } -// Address returns from NetworkInstance_Protocol_Pim_Global_Source the path struct for its child "address". -func (n *NetworkInstance_Protocol_Pim_Global_Source) Address() *NetworkInstance_Protocol_Pim_Global_Source_Address { - return &NetworkInstance_Protocol_Pim_Global_Source_Address{ +// Address returns from NetworkInstance_Protocol_Pim_Global_SourcePath the path struct for its child "address". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePath) Address() *NetworkInstance_Protocol_Pim_Global_Source_AddressPath { + return &NetworkInstance_Protocol_Pim_Global_Source_AddressPath{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -146332,9 +146546,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Source) Address() *NetworkInstance_ } } -// Address returns from NetworkInstance_Protocol_Pim_Global_SourceAny the path struct for its child "address". -func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) Address() *NetworkInstance_Protocol_Pim_Global_Source_AddressAny { - return &NetworkInstance_Protocol_Pim_Global_Source_AddressAny{ +// Address returns from NetworkInstance_Protocol_Pim_Global_SourcePathAny the path struct for its child "address". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePathAny) Address() *NetworkInstance_Protocol_Pim_Global_Source_AddressPathAny { + return &NetworkInstance_Protocol_Pim_Global_Source_AddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "address"}, map[string]interface{}{}, @@ -146343,9 +146557,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) Address() *NetworkInstan } } -// Group returns from NetworkInstance_Protocol_Pim_Global_Source the path struct for its child "group". -func (n *NetworkInstance_Protocol_Pim_Global_Source) Group() *NetworkInstance_Protocol_Pim_Global_Source_Group { - return &NetworkInstance_Protocol_Pim_Global_Source_Group{ +// Group returns from NetworkInstance_Protocol_Pim_Global_SourcePath the path struct for its child "group". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePath) Group() *NetworkInstance_Protocol_Pim_Global_Source_GroupPath { + return &NetworkInstance_Protocol_Pim_Global_Source_GroupPath{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -146354,9 +146568,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Source) Group() *NetworkInstance_Pr } } -// Group returns from NetworkInstance_Protocol_Pim_Global_SourceAny the path struct for its child "group". -func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) Group() *NetworkInstance_Protocol_Pim_Global_Source_GroupAny { - return &NetworkInstance_Protocol_Pim_Global_Source_GroupAny{ +// Group returns from NetworkInstance_Protocol_Pim_Global_SourcePathAny the path struct for its child "group". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePathAny) Group() *NetworkInstance_Protocol_Pim_Global_Source_GroupPathAny { + return &NetworkInstance_Protocol_Pim_Global_Source_GroupPathAny{ NodePath: ygot.NewNodePath( []string{"state", "group"}, map[string]interface{}{}, @@ -146365,9 +146579,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) Group() *NetworkInstance } } -// UpstreamInterfaceId returns from NetworkInstance_Protocol_Pim_Global_Source the path struct for its child "upstream-interface-id". -func (n *NetworkInstance_Protocol_Pim_Global_Source) UpstreamInterfaceId() *NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceId { - return &NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceId{ +// UpstreamInterfaceId returns from NetworkInstance_Protocol_Pim_Global_SourcePath the path struct for its child "upstream-interface-id". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePath) UpstreamInterfaceId() *NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPath { + return &NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "upstream-interface-id"}, map[string]interface{}{}, @@ -146376,9 +146590,9 @@ func (n *NetworkInstance_Protocol_Pim_Global_Source) UpstreamInterfaceId() *Netw } } -// UpstreamInterfaceId returns from NetworkInstance_Protocol_Pim_Global_SourceAny the path struct for its child "upstream-interface-id". -func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) UpstreamInterfaceId() *NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdAny { - return &NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdAny{ +// UpstreamInterfaceId returns from NetworkInstance_Protocol_Pim_Global_SourcePathAny the path struct for its child "upstream-interface-id". +func (n *NetworkInstance_Protocol_Pim_Global_SourcePathAny) UpstreamInterfaceId() *NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPathAny { + return &NetworkInstance_Protocol_Pim_Global_Source_UpstreamInterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "upstream-interface-id"}, map[string]interface{}{}, @@ -146387,195 +146601,195 @@ func (n *NetworkInstance_Protocol_Pim_Global_SourceAny) UpstreamInterfaceId() *N } } -// NetworkInstance_Protocol_Pim_Global_Ssm represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Ssm struct { +// NetworkInstance_Protocol_Pim_Global_SsmPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm YANG schema element. +type NetworkInstance_Protocol_Pim_Global_SsmPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_SsmAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm YANG schema element. -type NetworkInstance_Protocol_Pim_Global_SsmAny struct { +// NetworkInstance_Protocol_Pim_Global_SsmPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm YANG schema element. +type NetworkInstance_Protocol_Pim_Global_SsmPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Ssm_SsmRanges represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm/state/ssm-ranges YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Ssm_SsmRanges struct { +// NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm/config/ssm-ranges YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm/state/ssm-ranges YANG schema element. -type NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesAny struct { +// NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/global/ssm/config/ssm-ranges YANG schema element. +type NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPathAny struct { *ygot.NodePath } -// SsmRanges returns from NetworkInstance_Protocol_Pim_Global_Ssm the path struct for its child "ssm-ranges". -func (n *NetworkInstance_Protocol_Pim_Global_Ssm) SsmRanges() *NetworkInstance_Protocol_Pim_Global_Ssm_SsmRanges { - return &NetworkInstance_Protocol_Pim_Global_Ssm_SsmRanges{ +// SsmRanges returns from NetworkInstance_Protocol_Pim_Global_SsmPath the path struct for its child "ssm-ranges". +func (n *NetworkInstance_Protocol_Pim_Global_SsmPath) SsmRanges() *NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPath { + return &NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPath{ NodePath: ygot.NewNodePath( - []string{"state", "ssm-ranges"}, + []string{"config", "ssm-ranges"}, map[string]interface{}{}, n, ), } } -// SsmRanges returns from NetworkInstance_Protocol_Pim_Global_SsmAny the path struct for its child "ssm-ranges". -func (n *NetworkInstance_Protocol_Pim_Global_SsmAny) SsmRanges() *NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesAny { - return &NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesAny{ +// SsmRanges returns from NetworkInstance_Protocol_Pim_Global_SsmPathAny the path struct for its child "ssm-ranges". +func (n *NetworkInstance_Protocol_Pim_Global_SsmPathAny) SsmRanges() *NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPathAny { + return &NetworkInstance_Protocol_Pim_Global_Ssm_SsmRangesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ssm-ranges"}, + []string{"config", "ssm-ranges"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Pim_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Pim_Interface struct { +// NetworkInstance_Protocol_Pim_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Pim_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface YANG schema element. -type NetworkInstance_Protocol_Pim_InterfaceAny struct { +// NetworkInstance_Protocol_Pim_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface YANG schema element. +type NetworkInstance_Protocol_Pim_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_BorderRouter represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/border-router YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_BorderRouter struct { +// NetworkInstance_Protocol_Pim_Interface_BorderRouterPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/border-router YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_BorderRouterPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_BorderRouterAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/border-router YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_BorderRouterAny struct { +// NetworkInstance_Protocol_Pim_Interface_BorderRouterPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/border-router YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_BorderRouterPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_BsrBorder represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/bsr-border YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_BsrBorder struct { +// NetworkInstance_Protocol_Pim_Interface_BsrBorderPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/bsr-border YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_BsrBorderPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_BsrBorderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/bsr-border YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_BsrBorderAny struct { +// NetworkInstance_Protocol_Pim_Interface_BsrBorderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/bsr-border YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_BsrBorderPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_DeadTimer represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/dead-timer YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_DeadTimer struct { +// NetworkInstance_Protocol_Pim_Interface_DeadTimerPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/dead-timer YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_DeadTimerPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_DeadTimerAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/dead-timer YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_DeadTimerAny struct { +// NetworkInstance_Protocol_Pim_Interface_DeadTimerPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/dead-timer YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_DeadTimerPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_DrPriority represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/dr-priority YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_DrPriority struct { +// NetworkInstance_Protocol_Pim_Interface_DrPriorityPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/dr-priority YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_DrPriorityPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_DrPriorityAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/dr-priority YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_DrPriorityAny struct { +// NetworkInstance_Protocol_Pim_Interface_DrPriorityPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/dr-priority YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_DrPriorityPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Enabled represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Enabled struct { +// NetworkInstance_Protocol_Pim_Interface_EnabledPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_EnabledPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_EnabledAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/enabled YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_EnabledAny struct { +// NetworkInstance_Protocol_Pim_Interface_EnabledPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/enabled YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_EnabledPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_HelloInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_HelloInterval struct { +// NetworkInstance_Protocol_Pim_Interface_HelloIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_HelloIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_HelloIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/hello-interval YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_HelloIntervalAny struct { +// NetworkInstance_Protocol_Pim_Interface_HelloIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/hello-interval YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_HelloIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceId represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceId struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceIdPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceIdPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/interface-id YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceIdAny struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/interface-id YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceIdPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_JoinPruneInterval represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/join-prune-interval YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_JoinPruneInterval struct { +// NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/join-prune-interval YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/join-prune-interval YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalAny struct { +// NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/join-prune-interval YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Mode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/mode YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Mode struct { +// NetworkInstance_Protocol_Pim_Interface_ModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/mode YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_ModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_ModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/mode YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_ModeAny struct { +// NetworkInstance_Protocol_Pim_Interface_ModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/config/mode YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_ModePathAny struct { *ygot.NodePath } -// BorderRouter returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "border-router". -func (n *NetworkInstance_Protocol_Pim_Interface) BorderRouter() *NetworkInstance_Protocol_Pim_Interface_BorderRouter { - return &NetworkInstance_Protocol_Pim_Interface_BorderRouter{ +// BorderRouter returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "border-router". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) BorderRouter() *NetworkInstance_Protocol_Pim_Interface_BorderRouterPath { + return &NetworkInstance_Protocol_Pim_Interface_BorderRouterPath{ NodePath: ygot.NewNodePath( - []string{"state", "border-router"}, + []string{"config", "border-router"}, map[string]interface{}{}, n, ), } } -// BorderRouter returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "border-router". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) BorderRouter() *NetworkInstance_Protocol_Pim_Interface_BorderRouterAny { - return &NetworkInstance_Protocol_Pim_Interface_BorderRouterAny{ +// BorderRouter returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "border-router". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) BorderRouter() *NetworkInstance_Protocol_Pim_Interface_BorderRouterPathAny { + return &NetworkInstance_Protocol_Pim_Interface_BorderRouterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "border-router"}, + []string{"config", "border-router"}, map[string]interface{}{}, n, ), } } -// BsrBorder returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "bsr-border". -func (n *NetworkInstance_Protocol_Pim_Interface) BsrBorder() *NetworkInstance_Protocol_Pim_Interface_BsrBorder { - return &NetworkInstance_Protocol_Pim_Interface_BsrBorder{ +// BsrBorder returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "bsr-border". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) BsrBorder() *NetworkInstance_Protocol_Pim_Interface_BsrBorderPath { + return &NetworkInstance_Protocol_Pim_Interface_BsrBorderPath{ NodePath: ygot.NewNodePath( - []string{"state", "bsr-border"}, + []string{"config", "bsr-border"}, map[string]interface{}{}, n, ), } } -// BsrBorder returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "bsr-border". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) BsrBorder() *NetworkInstance_Protocol_Pim_Interface_BsrBorderAny { - return &NetworkInstance_Protocol_Pim_Interface_BsrBorderAny{ +// BsrBorder returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "bsr-border". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) BsrBorder() *NetworkInstance_Protocol_Pim_Interface_BsrBorderPathAny { + return &NetworkInstance_Protocol_Pim_Interface_BsrBorderPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bsr-border"}, + []string{"config", "bsr-border"}, map[string]interface{}{}, n, ), } } -// Counters returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Pim_Interface) Counters() *NetworkInstance_Protocol_Pim_Interface_Counters { - return &NetworkInstance_Protocol_Pim_Interface_Counters{ +// Counters returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) Counters() *NetworkInstance_Protocol_Pim_Interface_CountersPath { + return &NetworkInstance_Protocol_Pim_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -146584,9 +146798,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface) Counters() *NetworkInstance_Pro } } -// Counters returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "counters". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Counters() *NetworkInstance_Protocol_Pim_Interface_CountersAny { - return &NetworkInstance_Protocol_Pim_Interface_CountersAny{ +// Counters returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "counters". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) Counters() *NetworkInstance_Protocol_Pim_Interface_CountersPathAny { + return &NetworkInstance_Protocol_Pim_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -146595,119 +146809,119 @@ func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Counters() *NetworkInstance_ } } -// DeadTimer returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "dead-timer". -func (n *NetworkInstance_Protocol_Pim_Interface) DeadTimer() *NetworkInstance_Protocol_Pim_Interface_DeadTimer { - return &NetworkInstance_Protocol_Pim_Interface_DeadTimer{ +// DeadTimer returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "dead-timer". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) DeadTimer() *NetworkInstance_Protocol_Pim_Interface_DeadTimerPath { + return &NetworkInstance_Protocol_Pim_Interface_DeadTimerPath{ NodePath: ygot.NewNodePath( - []string{"state", "dead-timer"}, + []string{"config", "dead-timer"}, map[string]interface{}{}, n, ), } } -// DeadTimer returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "dead-timer". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) DeadTimer() *NetworkInstance_Protocol_Pim_Interface_DeadTimerAny { - return &NetworkInstance_Protocol_Pim_Interface_DeadTimerAny{ +// DeadTimer returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "dead-timer". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) DeadTimer() *NetworkInstance_Protocol_Pim_Interface_DeadTimerPathAny { + return &NetworkInstance_Protocol_Pim_Interface_DeadTimerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dead-timer"}, + []string{"config", "dead-timer"}, map[string]interface{}{}, n, ), } } -// DrPriority returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "dr-priority". -func (n *NetworkInstance_Protocol_Pim_Interface) DrPriority() *NetworkInstance_Protocol_Pim_Interface_DrPriority { - return &NetworkInstance_Protocol_Pim_Interface_DrPriority{ +// DrPriority returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "dr-priority". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) DrPriority() *NetworkInstance_Protocol_Pim_Interface_DrPriorityPath { + return &NetworkInstance_Protocol_Pim_Interface_DrPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "dr-priority"}, + []string{"config", "dr-priority"}, map[string]interface{}{}, n, ), } } -// DrPriority returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "dr-priority". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) DrPriority() *NetworkInstance_Protocol_Pim_Interface_DrPriorityAny { - return &NetworkInstance_Protocol_Pim_Interface_DrPriorityAny{ +// DrPriority returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "dr-priority". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) DrPriority() *NetworkInstance_Protocol_Pim_Interface_DrPriorityPathAny { + return &NetworkInstance_Protocol_Pim_Interface_DrPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dr-priority"}, + []string{"config", "dr-priority"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Pim_Interface) Enabled() *NetworkInstance_Protocol_Pim_Interface_Enabled { - return &NetworkInstance_Protocol_Pim_Interface_Enabled{ +// Enabled returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) Enabled() *NetworkInstance_Protocol_Pim_Interface_EnabledPath { + return &NetworkInstance_Protocol_Pim_Interface_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "enabled". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Enabled() *NetworkInstance_Protocol_Pim_Interface_EnabledAny { - return &NetworkInstance_Protocol_Pim_Interface_EnabledAny{ +// Enabled returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "enabled". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) Enabled() *NetworkInstance_Protocol_Pim_Interface_EnabledPathAny { + return &NetworkInstance_Protocol_Pim_Interface_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Pim_Interface) HelloInterval() *NetworkInstance_Protocol_Pim_Interface_HelloInterval { - return &NetworkInstance_Protocol_Pim_Interface_HelloInterval{ +// HelloInterval returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) HelloInterval() *NetworkInstance_Protocol_Pim_Interface_HelloIntervalPath { + return &NetworkInstance_Protocol_Pim_Interface_HelloIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// HelloInterval returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "hello-interval". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) HelloInterval() *NetworkInstance_Protocol_Pim_Interface_HelloIntervalAny { - return &NetworkInstance_Protocol_Pim_Interface_HelloIntervalAny{ +// HelloInterval returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "hello-interval". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) HelloInterval() *NetworkInstance_Protocol_Pim_Interface_HelloIntervalPathAny { + return &NetworkInstance_Protocol_Pim_Interface_HelloIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-interval"}, + []string{"config", "hello-interval"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Pim_Interface) InterfaceId() *NetworkInstance_Protocol_Pim_Interface_InterfaceId { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceId{ +// InterfaceId returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) InterfaceId() *NetworkInstance_Protocol_Pim_Interface_InterfaceIdPath { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "interface-id". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) InterfaceId() *NetworkInstance_Protocol_Pim_Interface_InterfaceIdAny { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceIdAny{ +// InterfaceId returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "interface-id". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) InterfaceId() *NetworkInstance_Protocol_Pim_Interface_InterfaceIdPathAny { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Pim_Interface) InterfaceRef() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) InterfaceRef() *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -146716,9 +146930,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface) InterfaceRef() *NetworkInstance } } -// InterfaceRef returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) InterfaceRef() *NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) InterfaceRef() *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -146727,53 +146941,53 @@ func (n *NetworkInstance_Protocol_Pim_InterfaceAny) InterfaceRef() *NetworkInsta } } -// JoinPruneInterval returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "join-prune-interval". -func (n *NetworkInstance_Protocol_Pim_Interface) JoinPruneInterval() *NetworkInstance_Protocol_Pim_Interface_JoinPruneInterval { - return &NetworkInstance_Protocol_Pim_Interface_JoinPruneInterval{ +// JoinPruneInterval returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "join-prune-interval". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) JoinPruneInterval() *NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPath { + return &NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPath{ NodePath: ygot.NewNodePath( - []string{"state", "join-prune-interval"}, + []string{"config", "join-prune-interval"}, map[string]interface{}{}, n, ), } } -// JoinPruneInterval returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "join-prune-interval". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) JoinPruneInterval() *NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalAny { - return &NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalAny{ +// JoinPruneInterval returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "join-prune-interval". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) JoinPruneInterval() *NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPathAny { + return &NetworkInstance_Protocol_Pim_Interface_JoinPruneIntervalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "join-prune-interval"}, + []string{"config", "join-prune-interval"}, map[string]interface{}{}, n, ), } } -// Mode returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Pim_Interface) Mode() *NetworkInstance_Protocol_Pim_Interface_Mode { - return &NetworkInstance_Protocol_Pim_Interface_Mode{ +// Mode returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) Mode() *NetworkInstance_Protocol_Pim_Interface_ModePath { + return &NetworkInstance_Protocol_Pim_Interface_ModePath{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Mode returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Mode() *NetworkInstance_Protocol_Pim_Interface_ModeAny { - return &NetworkInstance_Protocol_Pim_Interface_ModeAny{ +// Mode returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) Mode() *NetworkInstance_Protocol_Pim_Interface_ModePathAny { + return &NetworkInstance_Protocol_Pim_Interface_ModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Pim_Interface) NeighborAny() *NetworkInstance_Protocol_Pim_Interface_NeighborAny { - return &NetworkInstance_Protocol_Pim_Interface_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) NeighborAny() *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Pim_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -146782,9 +146996,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface) NeighborAny() *NetworkInstance_ } } -// NeighborAny returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) NeighborAny() *NetworkInstance_Protocol_Pim_Interface_NeighborAny { - return &NetworkInstance_Protocol_Pim_Interface_NeighborAny{ +// NeighborAny returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) NeighborAny() *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Pim_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": "*"}, @@ -146793,9 +147007,9 @@ func (n *NetworkInstance_Protocol_Pim_InterfaceAny) NeighborAny() *NetworkInstan } } -// Neighbor returns from NetworkInstance_Protocol_Pim_Interface the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Pim_Interface) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Pim_Interface_Neighbor { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor{ +// Neighbor returns from NetworkInstance_Protocol_Pim_InterfacePath the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Pim_InterfacePath) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Pim_Interface_NeighborPath { + return &NetworkInstance_Protocol_Pim_Interface_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -146804,9 +147018,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface) Neighbor(NeighborAddress string } } -// Neighbor returns from NetworkInstance_Protocol_Pim_InterfaceAny the path struct for its child "neighbor". -func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Pim_Interface_NeighborAny { - return &NetworkInstance_Protocol_Pim_Interface_NeighborAny{ +// Neighbor returns from NetworkInstance_Protocol_Pim_InterfacePathAny the path struct for its child "neighbor". +func (n *NetworkInstance_Protocol_Pim_InterfacePathAny) Neighbor(NeighborAddress string) *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny { + return &NetworkInstance_Protocol_Pim_Interface_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"neighbor-address": NeighborAddress}, @@ -146815,49 +147029,49 @@ func (n *NetworkInstance_Protocol_Pim_InterfaceAny) Neighbor(NeighborAddress str } } -// NetworkInstance_Protocol_Pim_Interface_Counters represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters struct { +// NetworkInstance_Protocol_Pim_Interface_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_CountersPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_CountersAny struct { +// NetworkInstance_Protocol_Pim_Interface_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/bootstrap-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessages struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/bootstrap-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/bootstrap-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesAny struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/bootstrap-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/hello-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessages struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/hello-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/hello-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesAny struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/hello-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessages represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/join-prune-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessages struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/join-prune-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/join-prune-messages YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesAny struct { +// NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/state/counters/join-prune-messages YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPathAny struct { *ygot.NodePath } -// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Interface_Counters the path struct for its child "bootstrap-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_Counters) BootstrapMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessages { - return &NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessages{ +// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPath the path struct for its child "bootstrap-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPath) BootstrapMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPath { + return &NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPath{ NodePath: ygot.NewNodePath( []string{"bootstrap-messages"}, map[string]interface{}{}, @@ -146866,9 +147080,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Counters) BootstrapMessages() *N } } -// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersAny the path struct for its child "bootstrap-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) BootstrapMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesAny { - return &NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesAny{ +// BootstrapMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPathAny the path struct for its child "bootstrap-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPathAny) BootstrapMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Counters_BootstrapMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"bootstrap-messages"}, map[string]interface{}{}, @@ -146877,9 +147091,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) BootstrapMessages() } } -// HelloMessages returns from NetworkInstance_Protocol_Pim_Interface_Counters the path struct for its child "hello-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_Counters) HelloMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessages { - return &NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessages{ +// HelloMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPath the path struct for its child "hello-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPath) HelloMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPath { + return &NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPath{ NodePath: ygot.NewNodePath( []string{"hello-messages"}, map[string]interface{}{}, @@ -146888,9 +147102,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Counters) HelloMessages() *Netwo } } -// HelloMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersAny the path struct for its child "hello-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) HelloMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesAny { - return &NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesAny{ +// HelloMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPathAny the path struct for its child "hello-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPathAny) HelloMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Counters_HelloMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"hello-messages"}, map[string]interface{}{}, @@ -146899,9 +147113,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) HelloMessages() *Ne } } -// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Interface_Counters the path struct for its child "join-prune-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_Counters) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessages { - return &NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessages{ +// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPath the path struct for its child "join-prune-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPath) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPath { + return &NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPath{ NodePath: ygot.NewNodePath( []string{"join-prune-messages"}, map[string]interface{}{}, @@ -146910,9 +147124,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Counters) JoinPruneMessages() *N } } -// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersAny the path struct for its child "join-prune-messages". -func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesAny { - return &NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesAny{ +// JoinPruneMessages returns from NetworkInstance_Protocol_Pim_Interface_CountersPathAny the path struct for its child "join-prune-messages". +func (n *NetworkInstance_Protocol_Pim_Interface_CountersPathAny) JoinPruneMessages() *NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Counters_JoinPruneMessagesPathAny{ NodePath: ygot.NewNodePath( []string{"join-prune-messages"}, map[string]interface{}{}, @@ -146921,143 +147135,143 @@ func (n *NetworkInstance_Protocol_Pim_Interface_CountersAny) JoinPruneMessages() } } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRef struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Interface struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Subinterface struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRef) Interface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Interface { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath) Interface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePath { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny) Interface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfaceAny { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny) Interface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRef) Subinterface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Subinterface { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPath) Subinterface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefAny) Subinterface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Pim_Interface_InterfaceRefPathAny) Subinterface() *NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Protocol_Pim_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Pim_Interface_Neighbor represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor struct { +// NetworkInstance_Protocol_Pim_Interface_NeighborPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_NeighborPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_NeighborAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_NeighborAny struct { +// NetworkInstance_Protocol_Pim_Interface_NeighborPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_NeighborPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/dr-address YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddress struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/dr-address YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/dr-address YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressAny struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/dr-address YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_Mode represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/mode YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_Mode struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/mode YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_ModeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/mode YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_ModeAny struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/mode YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddress represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddress struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-address YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressAny struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-address YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablished represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-established YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablished struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-established YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-established YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedAny struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-established YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpires represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-expires YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpires struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-expires YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-expires YANG schema element. -type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresAny struct { +// NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/pim/interfaces/interface/neighbors/neighbor/state/neighbor-expires YANG schema element. +type NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPathAny struct { *ygot.NodePath } -// DrAddress returns from NetworkInstance_Protocol_Pim_Interface_Neighbor the path struct for its child "dr-address". -func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) DrAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddress { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddress{ +// DrAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborPath the path struct for its child "dr-address". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPath) DrAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPath { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "dr-address"}, map[string]interface{}{}, @@ -147066,9 +147280,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) DrAddress() *NetworkIn } } -// DrAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborAny the path struct for its child "dr-address". -func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) DrAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressAny { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressAny{ +// DrAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborPathAny the path struct for its child "dr-address". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny) DrAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_DrAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "dr-address"}, map[string]interface{}{}, @@ -147077,9 +147291,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) DrAddress() *Networ } } -// Mode returns from NetworkInstance_Protocol_Pim_Interface_Neighbor the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) Mode() *NetworkInstance_Protocol_Pim_Interface_Neighbor_Mode { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_Mode{ +// Mode returns from NetworkInstance_Protocol_Pim_Interface_NeighborPath the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPath) Mode() *NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePath { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePath{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -147088,9 +147302,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) Mode() *NetworkInstanc } } -// Mode returns from NetworkInstance_Protocol_Pim_Interface_NeighborAny the path struct for its child "mode". -func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) Mode() *NetworkInstance_Protocol_Pim_Interface_Neighbor_ModeAny { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_ModeAny{ +// Mode returns from NetworkInstance_Protocol_Pim_Interface_NeighborPathAny the path struct for its child "mode". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny) Mode() *NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePathAny { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_ModePathAny{ NodePath: ygot.NewNodePath( []string{"state", "mode"}, map[string]interface{}{}, @@ -147099,9 +147313,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) Mode() *NetworkInst } } -// NeighborAddress returns from NetworkInstance_Protocol_Pim_Interface_Neighbor the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddress { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddress{ +// NeighborAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborPath the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPath) NeighborAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPath { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -147110,9 +147324,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborAddress() *Net } } -// NeighborAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborAny the path struct for its child "neighbor-address". -func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressAny { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressAny{ +// NeighborAddress returns from NetworkInstance_Protocol_Pim_Interface_NeighborPathAny the path struct for its child "neighbor-address". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny) NeighborAddress() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-address"}, map[string]interface{}{}, @@ -147121,9 +147335,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborAddress() * } } -// NeighborEstablished returns from NetworkInstance_Protocol_Pim_Interface_Neighbor the path struct for its child "neighbor-established". -func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborEstablished() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablished { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablished{ +// NeighborEstablished returns from NetworkInstance_Protocol_Pim_Interface_NeighborPath the path struct for its child "neighbor-established". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPath) NeighborEstablished() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPath { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-established"}, map[string]interface{}{}, @@ -147132,9 +147346,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborEstablished() } } -// NeighborEstablished returns from NetworkInstance_Protocol_Pim_Interface_NeighborAny the path struct for its child "neighbor-established". -func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborEstablished() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedAny { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedAny{ +// NeighborEstablished returns from NetworkInstance_Protocol_Pim_Interface_NeighborPathAny the path struct for its child "neighbor-established". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny) NeighborEstablished() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborEstablishedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-established"}, map[string]interface{}{}, @@ -147143,9 +147357,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborEstablished } } -// NeighborExpires returns from NetworkInstance_Protocol_Pim_Interface_Neighbor the path struct for its child "neighbor-expires". -func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborExpires() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpires { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpires{ +// NeighborExpires returns from NetworkInstance_Protocol_Pim_Interface_NeighborPath the path struct for its child "neighbor-expires". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPath) NeighborExpires() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPath { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPath{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-expires"}, map[string]interface{}{}, @@ -147154,9 +147368,9 @@ func (n *NetworkInstance_Protocol_Pim_Interface_Neighbor) NeighborExpires() *Net } } -// NeighborExpires returns from NetworkInstance_Protocol_Pim_Interface_NeighborAny the path struct for its child "neighbor-expires". -func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborExpires() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresAny { - return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresAny{ +// NeighborExpires returns from NetworkInstance_Protocol_Pim_Interface_NeighborPathAny the path struct for its child "neighbor-expires". +func (n *NetworkInstance_Protocol_Pim_Interface_NeighborPathAny) NeighborExpires() *NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPathAny { + return &NetworkInstance_Protocol_Pim_Interface_Neighbor_NeighborExpiresPathAny{ NodePath: ygot.NewNodePath( []string{"state", "neighbor-expires"}, map[string]interface{}{}, @@ -147165,71 +147379,71 @@ func (n *NetworkInstance_Protocol_Pim_Interface_NeighborAny) NeighborExpires() * } } -// NetworkInstance_Protocol_Static represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static YANG schema element. -type NetworkInstance_Protocol_Static struct { +// NetworkInstance_Protocol_StaticPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static YANG schema element. +type NetworkInstance_Protocol_StaticPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_StaticAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static YANG schema element. -type NetworkInstance_Protocol_StaticAny struct { +// NetworkInstance_Protocol_StaticPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static YANG schema element. +type NetworkInstance_Protocol_StaticPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_Description represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/description YANG schema element. -type NetworkInstance_Protocol_Static_Description struct { +// NetworkInstance_Protocol_Static_DescriptionPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/description YANG schema element. +type NetworkInstance_Protocol_Static_DescriptionPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_DescriptionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/description YANG schema element. -type NetworkInstance_Protocol_Static_DescriptionAny struct { +// NetworkInstance_Protocol_Static_DescriptionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/description YANG schema element. +type NetworkInstance_Protocol_Static_DescriptionPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_Prefix represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/prefix YANG schema element. -type NetworkInstance_Protocol_Static_Prefix struct { +// NetworkInstance_Protocol_Static_PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/prefix YANG schema element. +type NetworkInstance_Protocol_Static_PrefixPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/prefix YANG schema element. -type NetworkInstance_Protocol_Static_PrefixAny struct { +// NetworkInstance_Protocol_Static_PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/prefix YANG schema element. +type NetworkInstance_Protocol_Static_PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_SetTag represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/set-tag YANG schema element. -type NetworkInstance_Protocol_Static_SetTag struct { +// NetworkInstance_Protocol_Static_SetTagPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/set-tag YANG schema element. +type NetworkInstance_Protocol_Static_SetTagPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_SetTagAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/state/set-tag YANG schema element. -type NetworkInstance_Protocol_Static_SetTagAny struct { +// NetworkInstance_Protocol_Static_SetTagPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/config/set-tag YANG schema element. +type NetworkInstance_Protocol_Static_SetTagPathAny struct { *ygot.NodePath } -// Description returns from NetworkInstance_Protocol_Static the path struct for its child "description". -func (n *NetworkInstance_Protocol_Static) Description() *NetworkInstance_Protocol_Static_Description { - return &NetworkInstance_Protocol_Static_Description{ +// Description returns from NetworkInstance_Protocol_StaticPath the path struct for its child "description". +func (n *NetworkInstance_Protocol_StaticPath) Description() *NetworkInstance_Protocol_Static_DescriptionPath { + return &NetworkInstance_Protocol_Static_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from NetworkInstance_Protocol_StaticAny the path struct for its child "description". -func (n *NetworkInstance_Protocol_StaticAny) Description() *NetworkInstance_Protocol_Static_DescriptionAny { - return &NetworkInstance_Protocol_Static_DescriptionAny{ +// Description returns from NetworkInstance_Protocol_StaticPathAny the path struct for its child "description". +func (n *NetworkInstance_Protocol_StaticPathAny) Description() *NetworkInstance_Protocol_Static_DescriptionPathAny { + return &NetworkInstance_Protocol_Static_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// NextHopAny returns from NetworkInstance_Protocol_Static the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Static) NextHopAny() *NetworkInstance_Protocol_Static_NextHopAny { - return &NetworkInstance_Protocol_Static_NextHopAny{ +// NextHopAny returns from NetworkInstance_Protocol_StaticPath the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_StaticPath) NextHopAny() *NetworkInstance_Protocol_Static_NextHopPathAny { + return &NetworkInstance_Protocol_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -147238,9 +147452,9 @@ func (n *NetworkInstance_Protocol_Static) NextHopAny() *NetworkInstance_Protocol } } -// NextHopAny returns from NetworkInstance_Protocol_StaticAny the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_StaticAny) NextHopAny() *NetworkInstance_Protocol_Static_NextHopAny { - return &NetworkInstance_Protocol_Static_NextHopAny{ +// NextHopAny returns from NetworkInstance_Protocol_StaticPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_StaticPathAny) NextHopAny() *NetworkInstance_Protocol_Static_NextHopPathAny { + return &NetworkInstance_Protocol_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -147249,9 +147463,9 @@ func (n *NetworkInstance_Protocol_StaticAny) NextHopAny() *NetworkInstance_Proto } } -// NextHop returns from NetworkInstance_Protocol_Static the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Static) NextHop(Index string) *NetworkInstance_Protocol_Static_NextHop { - return &NetworkInstance_Protocol_Static_NextHop{ +// NextHop returns from NetworkInstance_Protocol_StaticPath the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_StaticPath) NextHop(Index string) *NetworkInstance_Protocol_Static_NextHopPath { + return &NetworkInstance_Protocol_Static_NextHopPath{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -147260,9 +147474,9 @@ func (n *NetworkInstance_Protocol_Static) NextHop(Index string) *NetworkInstance } } -// NextHop returns from NetworkInstance_Protocol_StaticAny the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_StaticAny) NextHop(Index string) *NetworkInstance_Protocol_Static_NextHopAny { - return &NetworkInstance_Protocol_Static_NextHopAny{ +// NextHop returns from NetworkInstance_Protocol_StaticPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_StaticPathAny) NextHop(Index string) *NetworkInstance_Protocol_Static_NextHopPathAny { + return &NetworkInstance_Protocol_Static_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -147271,125 +147485,125 @@ func (n *NetworkInstance_Protocol_StaticAny) NextHop(Index string) *NetworkInsta } } -// Prefix returns from NetworkInstance_Protocol_Static the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_Static) Prefix() *NetworkInstance_Protocol_Static_Prefix { - return &NetworkInstance_Protocol_Static_Prefix{ +// Prefix returns from NetworkInstance_Protocol_StaticPath the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_StaticPath) Prefix() *NetworkInstance_Protocol_Static_PrefixPath { + return &NetworkInstance_Protocol_Static_PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// Prefix returns from NetworkInstance_Protocol_StaticAny the path struct for its child "prefix". -func (n *NetworkInstance_Protocol_StaticAny) Prefix() *NetworkInstance_Protocol_Static_PrefixAny { - return &NetworkInstance_Protocol_Static_PrefixAny{ +// Prefix returns from NetworkInstance_Protocol_StaticPathAny the path struct for its child "prefix". +func (n *NetworkInstance_Protocol_StaticPathAny) Prefix() *NetworkInstance_Protocol_Static_PrefixPathAny { + return &NetworkInstance_Protocol_Static_PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix"}, + []string{"config", "prefix"}, map[string]interface{}{}, n, ), } } -// SetTag returns from NetworkInstance_Protocol_Static the path struct for its child "set-tag". -func (n *NetworkInstance_Protocol_Static) SetTag() *NetworkInstance_Protocol_Static_SetTag { - return &NetworkInstance_Protocol_Static_SetTag{ +// SetTag returns from NetworkInstance_Protocol_StaticPath the path struct for its child "set-tag". +func (n *NetworkInstance_Protocol_StaticPath) SetTag() *NetworkInstance_Protocol_Static_SetTagPath { + return &NetworkInstance_Protocol_Static_SetTagPath{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// SetTag returns from NetworkInstance_Protocol_StaticAny the path struct for its child "set-tag". -func (n *NetworkInstance_Protocol_StaticAny) SetTag() *NetworkInstance_Protocol_Static_SetTagAny { - return &NetworkInstance_Protocol_Static_SetTagAny{ +// SetTag returns from NetworkInstance_Protocol_StaticPathAny the path struct for its child "set-tag". +func (n *NetworkInstance_Protocol_StaticPathAny) SetTag() *NetworkInstance_Protocol_Static_SetTagPathAny { + return &NetworkInstance_Protocol_Static_SetTagPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "set-tag"}, + []string{"config", "set-tag"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Static_NextHop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop YANG schema element. -type NetworkInstance_Protocol_Static_NextHop struct { +// NetworkInstance_Protocol_Static_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop YANG schema element. +type NetworkInstance_Protocol_Static_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop YANG schema element. -type NetworkInstance_Protocol_Static_NextHopAny struct { +// NetworkInstance_Protocol_Static_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop YANG schema element. +type NetworkInstance_Protocol_Static_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_Index represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_Index struct { +// NetworkInstance_Protocol_Static_NextHop_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_IndexPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_IndexAny struct { +// NetworkInstance_Protocol_Static_NextHop_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/index YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_Metric represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/metric YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_Metric struct { +// NetworkInstance_Protocol_Static_NextHop_MetricPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/metric YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_MetricPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_MetricAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/metric YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_MetricAny struct { +// NetworkInstance_Protocol_Static_NextHop_MetricPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/metric YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_MetricPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_NextHop represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/next-hop YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_NextHop struct { +// NetworkInstance_Protocol_Static_NextHop_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/next-hop YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/next-hop YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_NextHopAny struct { +// NetworkInstance_Protocol_Static_NextHop_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/next-hop YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_Recurse represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/recurse YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_Recurse struct { +// NetworkInstance_Protocol_Static_NextHop_RecursePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/recurse YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_RecursePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_RecurseAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/state/recurse YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_RecurseAny struct { +// NetworkInstance_Protocol_Static_NextHop_RecursePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/config/recurse YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_RecursePathAny struct { *ygot.NodePath } -// Index returns from NetworkInstance_Protocol_Static_NextHop the path struct for its child "index". -func (n *NetworkInstance_Protocol_Static_NextHop) Index() *NetworkInstance_Protocol_Static_NextHop_Index { - return &NetworkInstance_Protocol_Static_NextHop_Index{ +// Index returns from NetworkInstance_Protocol_Static_NextHopPath the path struct for its child "index". +func (n *NetworkInstance_Protocol_Static_NextHopPath) Index() *NetworkInstance_Protocol_Static_NextHop_IndexPath { + return &NetworkInstance_Protocol_Static_NextHop_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from NetworkInstance_Protocol_Static_NextHopAny the path struct for its child "index". -func (n *NetworkInstance_Protocol_Static_NextHopAny) Index() *NetworkInstance_Protocol_Static_NextHop_IndexAny { - return &NetworkInstance_Protocol_Static_NextHop_IndexAny{ +// Index returns from NetworkInstance_Protocol_Static_NextHopPathAny the path struct for its child "index". +func (n *NetworkInstance_Protocol_Static_NextHopPathAny) Index() *NetworkInstance_Protocol_Static_NextHop_IndexPathAny { + return &NetworkInstance_Protocol_Static_NextHop_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from NetworkInstance_Protocol_Static_NextHop the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Static_NextHop) InterfaceRef() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_Protocol_Static_NextHopPath the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Static_NextHopPath) InterfaceRef() *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -147398,9 +147612,9 @@ func (n *NetworkInstance_Protocol_Static_NextHop) InterfaceRef() *NetworkInstanc } } -// InterfaceRef returns from NetworkInstance_Protocol_Static_NextHopAny the path struct for its child "interface-ref". -func (n *NetworkInstance_Protocol_Static_NextHopAny) InterfaceRef() *NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_Protocol_Static_NextHopPathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_Protocol_Static_NextHopPathAny) InterfaceRef() *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -147409,263 +147623,263 @@ func (n *NetworkInstance_Protocol_Static_NextHopAny) InterfaceRef() *NetworkInst } } -// Metric returns from NetworkInstance_Protocol_Static_NextHop the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Static_NextHop) Metric() *NetworkInstance_Protocol_Static_NextHop_Metric { - return &NetworkInstance_Protocol_Static_NextHop_Metric{ +// Metric returns from NetworkInstance_Protocol_Static_NextHopPath the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Static_NextHopPath) Metric() *NetworkInstance_Protocol_Static_NextHop_MetricPath { + return &NetworkInstance_Protocol_Static_NextHop_MetricPath{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// Metric returns from NetworkInstance_Protocol_Static_NextHopAny the path struct for its child "metric". -func (n *NetworkInstance_Protocol_Static_NextHopAny) Metric() *NetworkInstance_Protocol_Static_NextHop_MetricAny { - return &NetworkInstance_Protocol_Static_NextHop_MetricAny{ +// Metric returns from NetworkInstance_Protocol_Static_NextHopPathAny the path struct for its child "metric". +func (n *NetworkInstance_Protocol_Static_NextHopPathAny) Metric() *NetworkInstance_Protocol_Static_NextHop_MetricPathAny { + return &NetworkInstance_Protocol_Static_NextHop_MetricPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metric"}, + []string{"config", "metric"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Protocol_Static_NextHop the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Static_NextHop) NextHop() *NetworkInstance_Protocol_Static_NextHop_NextHop { - return &NetworkInstance_Protocol_Static_NextHop_NextHop{ +// NextHop returns from NetworkInstance_Protocol_Static_NextHopPath the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_Static_NextHopPath) NextHop() *NetworkInstance_Protocol_Static_NextHop_NextHopPath { + return &NetworkInstance_Protocol_Static_NextHop_NextHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// NextHop returns from NetworkInstance_Protocol_Static_NextHopAny the path struct for its child "next-hop". -func (n *NetworkInstance_Protocol_Static_NextHopAny) NextHop() *NetworkInstance_Protocol_Static_NextHop_NextHopAny { - return &NetworkInstance_Protocol_Static_NextHop_NextHopAny{ +// NextHop returns from NetworkInstance_Protocol_Static_NextHopPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_Protocol_Static_NextHopPathAny) NextHop() *NetworkInstance_Protocol_Static_NextHop_NextHopPathAny { + return &NetworkInstance_Protocol_Static_NextHop_NextHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "next-hop"}, + []string{"config", "next-hop"}, map[string]interface{}{}, n, ), } } -// Recurse returns from NetworkInstance_Protocol_Static_NextHop the path struct for its child "recurse". -func (n *NetworkInstance_Protocol_Static_NextHop) Recurse() *NetworkInstance_Protocol_Static_NextHop_Recurse { - return &NetworkInstance_Protocol_Static_NextHop_Recurse{ +// Recurse returns from NetworkInstance_Protocol_Static_NextHopPath the path struct for its child "recurse". +func (n *NetworkInstance_Protocol_Static_NextHopPath) Recurse() *NetworkInstance_Protocol_Static_NextHop_RecursePath { + return &NetworkInstance_Protocol_Static_NextHop_RecursePath{ NodePath: ygot.NewNodePath( - []string{"state", "recurse"}, + []string{"config", "recurse"}, map[string]interface{}{}, n, ), } } -// Recurse returns from NetworkInstance_Protocol_Static_NextHopAny the path struct for its child "recurse". -func (n *NetworkInstance_Protocol_Static_NextHopAny) Recurse() *NetworkInstance_Protocol_Static_NextHop_RecurseAny { - return &NetworkInstance_Protocol_Static_NextHop_RecurseAny{ +// Recurse returns from NetworkInstance_Protocol_Static_NextHopPathAny the path struct for its child "recurse". +func (n *NetworkInstance_Protocol_Static_NextHopPathAny) Recurse() *NetworkInstance_Protocol_Static_NextHop_RecursePathAny { + return &NetworkInstance_Protocol_Static_NextHop_RecursePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "recurse"}, + []string{"config", "recurse"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRef struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Interface struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfaceAny struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/config/interface YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Subinterface struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/protocols/protocol/static-routes/static/next-hops/next-hop/interface-ref/config/subinterface YANG schema element. +type NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRef) Interface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Interface { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath) Interface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePath { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny) Interface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfaceAny { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny) Interface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePathAny { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRef) Subinterface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Subinterface { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPath) Subinterface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePath { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefAny) Subinterface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_Protocol_Static_NextHop_InterfaceRefPathAny) Subinterface() *NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_Protocol_Static_NextHop_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_RouteLimit represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit YANG schema element. -type NetworkInstance_RouteLimit struct { +// NetworkInstance_RouteLimitPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit YANG schema element. +type NetworkInstance_RouteLimitPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimitAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit YANG schema element. -type NetworkInstance_RouteLimitAny struct { +// NetworkInstance_RouteLimitPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit YANG schema element. +type NetworkInstance_RouteLimitPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_Afi represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/afi YANG schema element. -type NetworkInstance_RouteLimit_Afi struct { +// NetworkInstance_RouteLimit_AfiPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/afi YANG schema element. +type NetworkInstance_RouteLimit_AfiPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_AfiAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/afi YANG schema element. -type NetworkInstance_RouteLimit_AfiAny struct { +// NetworkInstance_RouteLimit_AfiPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/afi YANG schema element. +type NetworkInstance_RouteLimit_AfiPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_AlarmThreshold represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/alarm-threshold YANG schema element. -type NetworkInstance_RouteLimit_AlarmThreshold struct { +// NetworkInstance_RouteLimit_AlarmThresholdPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/alarm-threshold YANG schema element. +type NetworkInstance_RouteLimit_AlarmThresholdPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_AlarmThresholdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/alarm-threshold YANG schema element. -type NetworkInstance_RouteLimit_AlarmThresholdAny struct { +// NetworkInstance_RouteLimit_AlarmThresholdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/alarm-threshold YANG schema element. +type NetworkInstance_RouteLimit_AlarmThresholdPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_InstalledRoutes represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/installed-routes YANG schema element. -type NetworkInstance_RouteLimit_InstalledRoutes struct { +// NetworkInstance_RouteLimit_InstalledRoutesPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/installed-routes YANG schema element. +type NetworkInstance_RouteLimit_InstalledRoutesPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_InstalledRoutesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/installed-routes YANG schema element. -type NetworkInstance_RouteLimit_InstalledRoutesAny struct { +// NetworkInstance_RouteLimit_InstalledRoutesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/installed-routes YANG schema element. +type NetworkInstance_RouteLimit_InstalledRoutesPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_Maximum represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/maximum YANG schema element. -type NetworkInstance_RouteLimit_Maximum struct { +// NetworkInstance_RouteLimit_MaximumPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/maximum YANG schema element. +type NetworkInstance_RouteLimit_MaximumPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_MaximumAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/maximum YANG schema element. -type NetworkInstance_RouteLimit_MaximumAny struct { +// NetworkInstance_RouteLimit_MaximumPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/maximum YANG schema element. +type NetworkInstance_RouteLimit_MaximumPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_ThresholdExceeded represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/threshold-exceeded YANG schema element. -type NetworkInstance_RouteLimit_ThresholdExceeded struct { +// NetworkInstance_RouteLimit_ThresholdExceededPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/threshold-exceeded YANG schema element. +type NetworkInstance_RouteLimit_ThresholdExceededPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_ThresholdExceededAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/threshold-exceeded YANG schema element. -type NetworkInstance_RouteLimit_ThresholdExceededAny struct { +// NetworkInstance_RouteLimit_ThresholdExceededPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/threshold-exceeded YANG schema element. +type NetworkInstance_RouteLimit_ThresholdExceededPathAny struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_WarningOnly represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/warning-only YANG schema element. -type NetworkInstance_RouteLimit_WarningOnly struct { +// NetworkInstance_RouteLimit_WarningOnlyPath represents the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/warning-only YANG schema element. +type NetworkInstance_RouteLimit_WarningOnlyPath struct { *ygot.NodePath } -// NetworkInstance_RouteLimit_WarningOnlyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/state/warning-only YANG schema element. -type NetworkInstance_RouteLimit_WarningOnlyAny struct { +// NetworkInstance_RouteLimit_WarningOnlyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/route-limits/route-limit/config/warning-only YANG schema element. +type NetworkInstance_RouteLimit_WarningOnlyPathAny struct { *ygot.NodePath } -// Afi returns from NetworkInstance_RouteLimit the path struct for its child "afi". -func (n *NetworkInstance_RouteLimit) Afi() *NetworkInstance_RouteLimit_Afi { - return &NetworkInstance_RouteLimit_Afi{ +// Afi returns from NetworkInstance_RouteLimitPath the path struct for its child "afi". +func (n *NetworkInstance_RouteLimitPath) Afi() *NetworkInstance_RouteLimit_AfiPath { + return &NetworkInstance_RouteLimit_AfiPath{ NodePath: ygot.NewNodePath( - []string{"state", "afi"}, + []string{"config", "afi"}, map[string]interface{}{}, n, ), } } -// Afi returns from NetworkInstance_RouteLimitAny the path struct for its child "afi". -func (n *NetworkInstance_RouteLimitAny) Afi() *NetworkInstance_RouteLimit_AfiAny { - return &NetworkInstance_RouteLimit_AfiAny{ +// Afi returns from NetworkInstance_RouteLimitPathAny the path struct for its child "afi". +func (n *NetworkInstance_RouteLimitPathAny) Afi() *NetworkInstance_RouteLimit_AfiPathAny { + return &NetworkInstance_RouteLimit_AfiPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "afi"}, + []string{"config", "afi"}, map[string]interface{}{}, n, ), } } -// AlarmThreshold returns from NetworkInstance_RouteLimit the path struct for its child "alarm-threshold". -func (n *NetworkInstance_RouteLimit) AlarmThreshold() *NetworkInstance_RouteLimit_AlarmThreshold { - return &NetworkInstance_RouteLimit_AlarmThreshold{ +// AlarmThreshold returns from NetworkInstance_RouteLimitPath the path struct for its child "alarm-threshold". +func (n *NetworkInstance_RouteLimitPath) AlarmThreshold() *NetworkInstance_RouteLimit_AlarmThresholdPath { + return &NetworkInstance_RouteLimit_AlarmThresholdPath{ NodePath: ygot.NewNodePath( - []string{"state", "alarm-threshold"}, + []string{"config", "alarm-threshold"}, map[string]interface{}{}, n, ), } } -// AlarmThreshold returns from NetworkInstance_RouteLimitAny the path struct for its child "alarm-threshold". -func (n *NetworkInstance_RouteLimitAny) AlarmThreshold() *NetworkInstance_RouteLimit_AlarmThresholdAny { - return &NetworkInstance_RouteLimit_AlarmThresholdAny{ +// AlarmThreshold returns from NetworkInstance_RouteLimitPathAny the path struct for its child "alarm-threshold". +func (n *NetworkInstance_RouteLimitPathAny) AlarmThreshold() *NetworkInstance_RouteLimit_AlarmThresholdPathAny { + return &NetworkInstance_RouteLimit_AlarmThresholdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "alarm-threshold"}, + []string{"config", "alarm-threshold"}, map[string]interface{}{}, n, ), } } -// InstalledRoutes returns from NetworkInstance_RouteLimit the path struct for its child "installed-routes". -func (n *NetworkInstance_RouteLimit) InstalledRoutes() *NetworkInstance_RouteLimit_InstalledRoutes { - return &NetworkInstance_RouteLimit_InstalledRoutes{ +// InstalledRoutes returns from NetworkInstance_RouteLimitPath the path struct for its child "installed-routes". +func (n *NetworkInstance_RouteLimitPath) InstalledRoutes() *NetworkInstance_RouteLimit_InstalledRoutesPath { + return &NetworkInstance_RouteLimit_InstalledRoutesPath{ NodePath: ygot.NewNodePath( []string{"state", "installed-routes"}, map[string]interface{}{}, @@ -147674,9 +147888,9 @@ func (n *NetworkInstance_RouteLimit) InstalledRoutes() *NetworkInstance_RouteLim } } -// InstalledRoutes returns from NetworkInstance_RouteLimitAny the path struct for its child "installed-routes". -func (n *NetworkInstance_RouteLimitAny) InstalledRoutes() *NetworkInstance_RouteLimit_InstalledRoutesAny { - return &NetworkInstance_RouteLimit_InstalledRoutesAny{ +// InstalledRoutes returns from NetworkInstance_RouteLimitPathAny the path struct for its child "installed-routes". +func (n *NetworkInstance_RouteLimitPathAny) InstalledRoutes() *NetworkInstance_RouteLimit_InstalledRoutesPathAny { + return &NetworkInstance_RouteLimit_InstalledRoutesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "installed-routes"}, map[string]interface{}{}, @@ -147685,31 +147899,31 @@ func (n *NetworkInstance_RouteLimitAny) InstalledRoutes() *NetworkInstance_Route } } -// Maximum returns from NetworkInstance_RouteLimit the path struct for its child "maximum". -func (n *NetworkInstance_RouteLimit) Maximum() *NetworkInstance_RouteLimit_Maximum { - return &NetworkInstance_RouteLimit_Maximum{ +// Maximum returns from NetworkInstance_RouteLimitPath the path struct for its child "maximum". +func (n *NetworkInstance_RouteLimitPath) Maximum() *NetworkInstance_RouteLimit_MaximumPath { + return &NetworkInstance_RouteLimit_MaximumPath{ NodePath: ygot.NewNodePath( - []string{"state", "maximum"}, + []string{"config", "maximum"}, map[string]interface{}{}, n, ), } } -// Maximum returns from NetworkInstance_RouteLimitAny the path struct for its child "maximum". -func (n *NetworkInstance_RouteLimitAny) Maximum() *NetworkInstance_RouteLimit_MaximumAny { - return &NetworkInstance_RouteLimit_MaximumAny{ +// Maximum returns from NetworkInstance_RouteLimitPathAny the path struct for its child "maximum". +func (n *NetworkInstance_RouteLimitPathAny) Maximum() *NetworkInstance_RouteLimit_MaximumPathAny { + return &NetworkInstance_RouteLimit_MaximumPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "maximum"}, + []string{"config", "maximum"}, map[string]interface{}{}, n, ), } } -// ThresholdExceeded returns from NetworkInstance_RouteLimit the path struct for its child "threshold-exceeded". -func (n *NetworkInstance_RouteLimit) ThresholdExceeded() *NetworkInstance_RouteLimit_ThresholdExceeded { - return &NetworkInstance_RouteLimit_ThresholdExceeded{ +// ThresholdExceeded returns from NetworkInstance_RouteLimitPath the path struct for its child "threshold-exceeded". +func (n *NetworkInstance_RouteLimitPath) ThresholdExceeded() *NetworkInstance_RouteLimit_ThresholdExceededPath { + return &NetworkInstance_RouteLimit_ThresholdExceededPath{ NodePath: ygot.NewNodePath( []string{"state", "threshold-exceeded"}, map[string]interface{}{}, @@ -147718,9 +147932,9 @@ func (n *NetworkInstance_RouteLimit) ThresholdExceeded() *NetworkInstance_RouteL } } -// ThresholdExceeded returns from NetworkInstance_RouteLimitAny the path struct for its child "threshold-exceeded". -func (n *NetworkInstance_RouteLimitAny) ThresholdExceeded() *NetworkInstance_RouteLimit_ThresholdExceededAny { - return &NetworkInstance_RouteLimit_ThresholdExceededAny{ +// ThresholdExceeded returns from NetworkInstance_RouteLimitPathAny the path struct for its child "threshold-exceeded". +func (n *NetworkInstance_RouteLimitPathAny) ThresholdExceeded() *NetworkInstance_RouteLimit_ThresholdExceededPathAny { + return &NetworkInstance_RouteLimit_ThresholdExceededPathAny{ NodePath: ygot.NewNodePath( []string{"state", "threshold-exceeded"}, map[string]interface{}{}, @@ -147729,41 +147943,41 @@ func (n *NetworkInstance_RouteLimitAny) ThresholdExceeded() *NetworkInstance_Rou } } -// WarningOnly returns from NetworkInstance_RouteLimit the path struct for its child "warning-only". -func (n *NetworkInstance_RouteLimit) WarningOnly() *NetworkInstance_RouteLimit_WarningOnly { - return &NetworkInstance_RouteLimit_WarningOnly{ +// WarningOnly returns from NetworkInstance_RouteLimitPath the path struct for its child "warning-only". +func (n *NetworkInstance_RouteLimitPath) WarningOnly() *NetworkInstance_RouteLimit_WarningOnlyPath { + return &NetworkInstance_RouteLimit_WarningOnlyPath{ NodePath: ygot.NewNodePath( - []string{"state", "warning-only"}, + []string{"config", "warning-only"}, map[string]interface{}{}, n, ), } } -// WarningOnly returns from NetworkInstance_RouteLimitAny the path struct for its child "warning-only". -func (n *NetworkInstance_RouteLimitAny) WarningOnly() *NetworkInstance_RouteLimit_WarningOnlyAny { - return &NetworkInstance_RouteLimit_WarningOnlyAny{ +// WarningOnly returns from NetworkInstance_RouteLimitPathAny the path struct for its child "warning-only". +func (n *NetworkInstance_RouteLimitPathAny) WarningOnly() *NetworkInstance_RouteLimit_WarningOnlyPathAny { + return &NetworkInstance_RouteLimit_WarningOnlyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "warning-only"}, + []string{"config", "warning-only"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_SegmentRouting represents the /openconfig-network-instance/network-instances/network-instance/segment-routing YANG schema element. -type NetworkInstance_SegmentRouting struct { +// NetworkInstance_SegmentRoutingPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing YANG schema element. +type NetworkInstance_SegmentRoutingPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRoutingAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing YANG schema element. -type NetworkInstance_SegmentRoutingAny struct { +// NetworkInstance_SegmentRoutingPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing YANG schema element. +type NetworkInstance_SegmentRoutingPathAny struct { *ygot.NodePath } -// SrgbAny returns from NetworkInstance_SegmentRouting the path struct for its child "srgb". -func (n *NetworkInstance_SegmentRouting) SrgbAny() *NetworkInstance_SegmentRouting_SrgbAny { - return &NetworkInstance_SegmentRouting_SrgbAny{ +// SrgbAny returns from NetworkInstance_SegmentRoutingPath the path struct for its child "srgb". +func (n *NetworkInstance_SegmentRoutingPath) SrgbAny() *NetworkInstance_SegmentRouting_SrgbPathAny { + return &NetworkInstance_SegmentRouting_SrgbPathAny{ NodePath: ygot.NewNodePath( []string{"srgbs", "srgb"}, map[string]interface{}{"local-id": "*"}, @@ -147772,9 +147986,9 @@ func (n *NetworkInstance_SegmentRouting) SrgbAny() *NetworkInstance_SegmentRouti } } -// SrgbAny returns from NetworkInstance_SegmentRoutingAny the path struct for its child "srgb". -func (n *NetworkInstance_SegmentRoutingAny) SrgbAny() *NetworkInstance_SegmentRouting_SrgbAny { - return &NetworkInstance_SegmentRouting_SrgbAny{ +// SrgbAny returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "srgb". +func (n *NetworkInstance_SegmentRoutingPathAny) SrgbAny() *NetworkInstance_SegmentRouting_SrgbPathAny { + return &NetworkInstance_SegmentRouting_SrgbPathAny{ NodePath: ygot.NewNodePath( []string{"srgbs", "srgb"}, map[string]interface{}{"local-id": "*"}, @@ -147783,9 +147997,9 @@ func (n *NetworkInstance_SegmentRoutingAny) SrgbAny() *NetworkInstance_SegmentRo } } -// Srgb returns from NetworkInstance_SegmentRouting the path struct for its child "srgb". -func (n *NetworkInstance_SegmentRouting) Srgb(LocalId string) *NetworkInstance_SegmentRouting_Srgb { - return &NetworkInstance_SegmentRouting_Srgb{ +// Srgb returns from NetworkInstance_SegmentRoutingPath the path struct for its child "srgb". +func (n *NetworkInstance_SegmentRoutingPath) Srgb(LocalId string) *NetworkInstance_SegmentRouting_SrgbPath { + return &NetworkInstance_SegmentRouting_SrgbPath{ NodePath: ygot.NewNodePath( []string{"srgbs", "srgb"}, map[string]interface{}{"local-id": LocalId}, @@ -147794,9 +148008,9 @@ func (n *NetworkInstance_SegmentRouting) Srgb(LocalId string) *NetworkInstance_S } } -// Srgb returns from NetworkInstance_SegmentRoutingAny the path struct for its child "srgb". -func (n *NetworkInstance_SegmentRoutingAny) Srgb(LocalId string) *NetworkInstance_SegmentRouting_SrgbAny { - return &NetworkInstance_SegmentRouting_SrgbAny{ +// Srgb returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "srgb". +func (n *NetworkInstance_SegmentRoutingPathAny) Srgb(LocalId string) *NetworkInstance_SegmentRouting_SrgbPathAny { + return &NetworkInstance_SegmentRouting_SrgbPathAny{ NodePath: ygot.NewNodePath( []string{"srgbs", "srgb"}, map[string]interface{}{"local-id": LocalId}, @@ -147805,9 +148019,9 @@ func (n *NetworkInstance_SegmentRoutingAny) Srgb(LocalId string) *NetworkInstanc } } -// SrlbAny returns from NetworkInstance_SegmentRouting the path struct for its child "srlb". -func (n *NetworkInstance_SegmentRouting) SrlbAny() *NetworkInstance_SegmentRouting_SrlbAny { - return &NetworkInstance_SegmentRouting_SrlbAny{ +// SrlbAny returns from NetworkInstance_SegmentRoutingPath the path struct for its child "srlb". +func (n *NetworkInstance_SegmentRoutingPath) SrlbAny() *NetworkInstance_SegmentRouting_SrlbPathAny { + return &NetworkInstance_SegmentRouting_SrlbPathAny{ NodePath: ygot.NewNodePath( []string{"srlbs", "srlb"}, map[string]interface{}{"local-id": "*"}, @@ -147816,9 +148030,9 @@ func (n *NetworkInstance_SegmentRouting) SrlbAny() *NetworkInstance_SegmentRouti } } -// SrlbAny returns from NetworkInstance_SegmentRoutingAny the path struct for its child "srlb". -func (n *NetworkInstance_SegmentRoutingAny) SrlbAny() *NetworkInstance_SegmentRouting_SrlbAny { - return &NetworkInstance_SegmentRouting_SrlbAny{ +// SrlbAny returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "srlb". +func (n *NetworkInstance_SegmentRoutingPathAny) SrlbAny() *NetworkInstance_SegmentRouting_SrlbPathAny { + return &NetworkInstance_SegmentRouting_SrlbPathAny{ NodePath: ygot.NewNodePath( []string{"srlbs", "srlb"}, map[string]interface{}{"local-id": "*"}, @@ -147827,9 +148041,9 @@ func (n *NetworkInstance_SegmentRoutingAny) SrlbAny() *NetworkInstance_SegmentRo } } -// Srlb returns from NetworkInstance_SegmentRouting the path struct for its child "srlb". -func (n *NetworkInstance_SegmentRouting) Srlb(LocalId string) *NetworkInstance_SegmentRouting_Srlb { - return &NetworkInstance_SegmentRouting_Srlb{ +// Srlb returns from NetworkInstance_SegmentRoutingPath the path struct for its child "srlb". +func (n *NetworkInstance_SegmentRoutingPath) Srlb(LocalId string) *NetworkInstance_SegmentRouting_SrlbPath { + return &NetworkInstance_SegmentRouting_SrlbPath{ NodePath: ygot.NewNodePath( []string{"srlbs", "srlb"}, map[string]interface{}{"local-id": LocalId}, @@ -147838,9 +148052,9 @@ func (n *NetworkInstance_SegmentRouting) Srlb(LocalId string) *NetworkInstance_S } } -// Srlb returns from NetworkInstance_SegmentRoutingAny the path struct for its child "srlb". -func (n *NetworkInstance_SegmentRoutingAny) Srlb(LocalId string) *NetworkInstance_SegmentRouting_SrlbAny { - return &NetworkInstance_SegmentRouting_SrlbAny{ +// Srlb returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "srlb". +func (n *NetworkInstance_SegmentRoutingPathAny) Srlb(LocalId string) *NetworkInstance_SegmentRouting_SrlbPathAny { + return &NetworkInstance_SegmentRouting_SrlbPathAny{ NodePath: ygot.NewNodePath( []string{"srlbs", "srlb"}, map[string]interface{}{"local-id": LocalId}, @@ -147849,9 +148063,9 @@ func (n *NetworkInstance_SegmentRoutingAny) Srlb(LocalId string) *NetworkInstanc } } -// TePolicyAny returns from NetworkInstance_SegmentRouting the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRouting) TePolicyAny() *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAny returns from NetworkInstance_SegmentRoutingPath the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPath) TePolicyAny() *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": "*", "endpoint": "*"}, @@ -147860,9 +148074,9 @@ func (n *NetworkInstance_SegmentRouting) TePolicyAny() *NetworkInstance_SegmentR } } -// TePolicyAny returns from NetworkInstance_SegmentRoutingAny the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRoutingAny) TePolicyAny() *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAny returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPathAny) TePolicyAny() *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": "*", "endpoint": "*"}, @@ -147871,9 +148085,9 @@ func (n *NetworkInstance_SegmentRoutingAny) TePolicyAny() *NetworkInstance_Segme } } -// TePolicyAnyEndpoint returns from NetworkInstance_SegmentRouting the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRouting) TePolicyAnyEndpoint(Color uint32) *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAnyEndpoint returns from NetworkInstance_SegmentRoutingPath the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPath) TePolicyAnyEndpoint(Color uint32) *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": Color, "endpoint": "*"}, @@ -147882,9 +148096,9 @@ func (n *NetworkInstance_SegmentRouting) TePolicyAnyEndpoint(Color uint32) *Netw } } -// TePolicyAnyEndpoint returns from NetworkInstance_SegmentRoutingAny the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRoutingAny) TePolicyAnyEndpoint(Color uint32) *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAnyEndpoint returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPathAny) TePolicyAnyEndpoint(Color uint32) *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": Color, "endpoint": "*"}, @@ -147893,9 +148107,9 @@ func (n *NetworkInstance_SegmentRoutingAny) TePolicyAnyEndpoint(Color uint32) *N } } -// TePolicyAnyColor returns from NetworkInstance_SegmentRouting the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRouting) TePolicyAnyColor(Endpoint string) *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAnyColor returns from NetworkInstance_SegmentRoutingPath the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPath) TePolicyAnyColor(Endpoint string) *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": "*", "endpoint": Endpoint}, @@ -147904,9 +148118,9 @@ func (n *NetworkInstance_SegmentRouting) TePolicyAnyColor(Endpoint string) *Netw } } -// TePolicyAnyColor returns from NetworkInstance_SegmentRoutingAny the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRoutingAny) TePolicyAnyColor(Endpoint string) *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicyAnyColor returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPathAny) TePolicyAnyColor(Endpoint string) *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": "*", "endpoint": Endpoint}, @@ -147915,9 +148129,9 @@ func (n *NetworkInstance_SegmentRoutingAny) TePolicyAnyColor(Endpoint string) *N } } -// TePolicy returns from NetworkInstance_SegmentRouting the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRouting) TePolicy(Color uint32, Endpoint string) *NetworkInstance_SegmentRouting_TePolicy { - return &NetworkInstance_SegmentRouting_TePolicy{ +// TePolicy returns from NetworkInstance_SegmentRoutingPath the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPath) TePolicy(Color uint32, Endpoint string) *NetworkInstance_SegmentRouting_TePolicyPath { + return &NetworkInstance_SegmentRouting_TePolicyPath{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": Color, "endpoint": Endpoint}, @@ -147926,9 +148140,9 @@ func (n *NetworkInstance_SegmentRouting) TePolicy(Color uint32, Endpoint string) } } -// TePolicy returns from NetworkInstance_SegmentRoutingAny the path struct for its child "te-policy". -func (n *NetworkInstance_SegmentRoutingAny) TePolicy(Color uint32, Endpoint string) *NetworkInstance_SegmentRouting_TePolicyAny { - return &NetworkInstance_SegmentRouting_TePolicyAny{ +// TePolicy returns from NetworkInstance_SegmentRoutingPathAny the path struct for its child "te-policy". +func (n *NetworkInstance_SegmentRoutingPathAny) TePolicy(Color uint32, Endpoint string) *NetworkInstance_SegmentRouting_TePolicyPathAny { + return &NetworkInstance_SegmentRouting_TePolicyPathAny{ NodePath: ygot.NewNodePath( []string{"te-policies", "te-policy"}, map[string]interface{}{"color": Color, "endpoint": Endpoint}, @@ -147937,167 +148151,167 @@ func (n *NetworkInstance_SegmentRoutingAny) TePolicy(Color uint32, Endpoint stri } } -// NetworkInstance_SegmentRouting_Srgb represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb YANG schema element. -type NetworkInstance_SegmentRouting_Srgb struct { +// NetworkInstance_SegmentRouting_SrgbPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb YANG schema element. +type NetworkInstance_SegmentRouting_SrgbPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_SrgbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb YANG schema element. -type NetworkInstance_SegmentRouting_SrgbAny struct { +// NetworkInstance_SegmentRouting_SrgbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb YANG schema element. +type NetworkInstance_SegmentRouting_SrgbPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_DataplaneType represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/dataplane-type YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_DataplaneType struct { +// NetworkInstance_SegmentRouting_Srgb_DataplaneTypePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/dataplane-type YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_DataplaneTypePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_DataplaneTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/dataplane-type YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_DataplaneTypeAny struct { +// NetworkInstance_SegmentRouting_Srgb_DataplaneTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/dataplane-type YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_DataplaneTypePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_Ipv6Prefixes represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/ipv6-prefixes YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_Ipv6Prefixes struct { +// NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/ipv6-prefixes YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/ipv6-prefixes YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesAny struct { +// NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/ipv6-prefixes YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_LocalId represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/local-id YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_LocalId struct { +// NetworkInstance_SegmentRouting_Srgb_LocalIdPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/local-id YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_LocalIdPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_LocalIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/local-id YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_LocalIdAny struct { +// NetworkInstance_SegmentRouting_Srgb_LocalIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/local-id YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_LocalIdPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocks represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/mpls-label-blocks YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocks struct { +// NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/mpls-label-blocks YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/mpls-label-blocks YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksAny struct { +// NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/config/mpls-label-blocks YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_Size represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/size YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_Size struct { +// NetworkInstance_SegmentRouting_Srgb_SizePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/size YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_SizePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_SizeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/size YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_SizeAny struct { +// NetworkInstance_SegmentRouting_Srgb_SizePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/size YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_SizePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_Used represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/used YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_Used struct { +// NetworkInstance_SegmentRouting_Srgb_UsedPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/used YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_UsedPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srgb_UsedAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/used YANG schema element. -type NetworkInstance_SegmentRouting_Srgb_UsedAny struct { +// NetworkInstance_SegmentRouting_Srgb_UsedPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srgbs/srgb/state/used YANG schema element. +type NetworkInstance_SegmentRouting_Srgb_UsedPathAny struct { *ygot.NodePath } -// DataplaneType returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "dataplane-type". -func (n *NetworkInstance_SegmentRouting_Srgb) DataplaneType() *NetworkInstance_SegmentRouting_Srgb_DataplaneType { - return &NetworkInstance_SegmentRouting_Srgb_DataplaneType{ +// DataplaneType returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "dataplane-type". +func (n *NetworkInstance_SegmentRouting_SrgbPath) DataplaneType() *NetworkInstance_SegmentRouting_Srgb_DataplaneTypePath { + return &NetworkInstance_SegmentRouting_Srgb_DataplaneTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "dataplane-type"}, + []string{"config", "dataplane-type"}, map[string]interface{}{}, n, ), } } -// DataplaneType returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "dataplane-type". -func (n *NetworkInstance_SegmentRouting_SrgbAny) DataplaneType() *NetworkInstance_SegmentRouting_Srgb_DataplaneTypeAny { - return &NetworkInstance_SegmentRouting_Srgb_DataplaneTypeAny{ +// DataplaneType returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "dataplane-type". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) DataplaneType() *NetworkInstance_SegmentRouting_Srgb_DataplaneTypePathAny { + return &NetworkInstance_SegmentRouting_Srgb_DataplaneTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dataplane-type"}, + []string{"config", "dataplane-type"}, map[string]interface{}{}, n, ), } } -// Ipv6Prefixes returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "ipv6-prefixes". -func (n *NetworkInstance_SegmentRouting_Srgb) Ipv6Prefixes() *NetworkInstance_SegmentRouting_Srgb_Ipv6Prefixes { - return &NetworkInstance_SegmentRouting_Srgb_Ipv6Prefixes{ +// Ipv6Prefixes returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "ipv6-prefixes". +func (n *NetworkInstance_SegmentRouting_SrgbPath) Ipv6Prefixes() *NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPath { + return &NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-prefixes"}, + []string{"config", "ipv6-prefixes"}, map[string]interface{}{}, n, ), } } -// Ipv6Prefixes returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "ipv6-prefixes". -func (n *NetworkInstance_SegmentRouting_SrgbAny) Ipv6Prefixes() *NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesAny { - return &NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesAny{ +// Ipv6Prefixes returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "ipv6-prefixes". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) Ipv6Prefixes() *NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPathAny { + return &NetworkInstance_SegmentRouting_Srgb_Ipv6PrefixesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-prefixes"}, + []string{"config", "ipv6-prefixes"}, map[string]interface{}{}, n, ), } } -// LocalId returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "local-id". -func (n *NetworkInstance_SegmentRouting_Srgb) LocalId() *NetworkInstance_SegmentRouting_Srgb_LocalId { - return &NetworkInstance_SegmentRouting_Srgb_LocalId{ +// LocalId returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "local-id". +func (n *NetworkInstance_SegmentRouting_SrgbPath) LocalId() *NetworkInstance_SegmentRouting_Srgb_LocalIdPath { + return &NetworkInstance_SegmentRouting_Srgb_LocalIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// LocalId returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "local-id". -func (n *NetworkInstance_SegmentRouting_SrgbAny) LocalId() *NetworkInstance_SegmentRouting_Srgb_LocalIdAny { - return &NetworkInstance_SegmentRouting_Srgb_LocalIdAny{ +// LocalId returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "local-id". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) LocalId() *NetworkInstance_SegmentRouting_Srgb_LocalIdPathAny { + return &NetworkInstance_SegmentRouting_Srgb_LocalIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// MplsLabelBlocks returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "mpls-label-blocks". -func (n *NetworkInstance_SegmentRouting_Srgb) MplsLabelBlocks() *NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocks { - return &NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocks{ +// MplsLabelBlocks returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "mpls-label-blocks". +func (n *NetworkInstance_SegmentRouting_SrgbPath) MplsLabelBlocks() *NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPath { + return &NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label-blocks"}, + []string{"config", "mpls-label-blocks"}, map[string]interface{}{}, n, ), } } -// MplsLabelBlocks returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "mpls-label-blocks". -func (n *NetworkInstance_SegmentRouting_SrgbAny) MplsLabelBlocks() *NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksAny { - return &NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksAny{ +// MplsLabelBlocks returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "mpls-label-blocks". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) MplsLabelBlocks() *NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPathAny { + return &NetworkInstance_SegmentRouting_Srgb_MplsLabelBlocksPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label-blocks"}, + []string{"config", "mpls-label-blocks"}, map[string]interface{}{}, n, ), } } -// Size returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "size". -func (n *NetworkInstance_SegmentRouting_Srgb) Size() *NetworkInstance_SegmentRouting_Srgb_Size { - return &NetworkInstance_SegmentRouting_Srgb_Size{ +// Size returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "size". +func (n *NetworkInstance_SegmentRouting_SrgbPath) Size() *NetworkInstance_SegmentRouting_Srgb_SizePath { + return &NetworkInstance_SegmentRouting_Srgb_SizePath{ NodePath: ygot.NewNodePath( []string{"state", "size"}, map[string]interface{}{}, @@ -148106,9 +148320,9 @@ func (n *NetworkInstance_SegmentRouting_Srgb) Size() *NetworkInstance_SegmentRou } } -// Size returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "size". -func (n *NetworkInstance_SegmentRouting_SrgbAny) Size() *NetworkInstance_SegmentRouting_Srgb_SizeAny { - return &NetworkInstance_SegmentRouting_Srgb_SizeAny{ +// Size returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "size". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) Size() *NetworkInstance_SegmentRouting_Srgb_SizePathAny { + return &NetworkInstance_SegmentRouting_Srgb_SizePathAny{ NodePath: ygot.NewNodePath( []string{"state", "size"}, map[string]interface{}{}, @@ -148117,9 +148331,9 @@ func (n *NetworkInstance_SegmentRouting_SrgbAny) Size() *NetworkInstance_Segment } } -// Used returns from NetworkInstance_SegmentRouting_Srgb the path struct for its child "used". -func (n *NetworkInstance_SegmentRouting_Srgb) Used() *NetworkInstance_SegmentRouting_Srgb_Used { - return &NetworkInstance_SegmentRouting_Srgb_Used{ +// Used returns from NetworkInstance_SegmentRouting_SrgbPath the path struct for its child "used". +func (n *NetworkInstance_SegmentRouting_SrgbPath) Used() *NetworkInstance_SegmentRouting_Srgb_UsedPath { + return &NetworkInstance_SegmentRouting_Srgb_UsedPath{ NodePath: ygot.NewNodePath( []string{"state", "used"}, map[string]interface{}{}, @@ -148128,9 +148342,9 @@ func (n *NetworkInstance_SegmentRouting_Srgb) Used() *NetworkInstance_SegmentRou } } -// Used returns from NetworkInstance_SegmentRouting_SrgbAny the path struct for its child "used". -func (n *NetworkInstance_SegmentRouting_SrgbAny) Used() *NetworkInstance_SegmentRouting_Srgb_UsedAny { - return &NetworkInstance_SegmentRouting_Srgb_UsedAny{ +// Used returns from NetworkInstance_SegmentRouting_SrgbPathAny the path struct for its child "used". +func (n *NetworkInstance_SegmentRouting_SrgbPathAny) Used() *NetworkInstance_SegmentRouting_Srgb_UsedPathAny { + return &NetworkInstance_SegmentRouting_Srgb_UsedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "used"}, map[string]interface{}{}, @@ -148139,227 +148353,227 @@ func (n *NetworkInstance_SegmentRouting_SrgbAny) Used() *NetworkInstance_Segment } } -// NetworkInstance_SegmentRouting_Srlb represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb YANG schema element. -type NetworkInstance_SegmentRouting_Srlb struct { +// NetworkInstance_SegmentRouting_SrlbPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb YANG schema element. +type NetworkInstance_SegmentRouting_SrlbPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_SrlbAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb YANG schema element. -type NetworkInstance_SegmentRouting_SrlbAny struct { +// NetworkInstance_SegmentRouting_SrlbPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb YANG schema element. +type NetworkInstance_SegmentRouting_SrlbPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_DataplaneType represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/dataplane-type YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_DataplaneType struct { +// NetworkInstance_SegmentRouting_Srlb_DataplaneTypePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/dataplane-type YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_DataplaneTypePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_DataplaneTypeAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/dataplane-type YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_DataplaneTypeAny struct { +// NetworkInstance_SegmentRouting_Srlb_DataplaneTypePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/dataplane-type YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_DataplaneTypePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_Ipv6Prefix represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/ipv6-prefix YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_Ipv6Prefix struct { +// NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/ipv6-prefix YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/ipv6-prefix YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixAny struct { +// NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/ipv6-prefix YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_LocalId represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/local-id YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_LocalId struct { +// NetworkInstance_SegmentRouting_Srlb_LocalIdPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/local-id YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_LocalIdPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_LocalIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/local-id YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_LocalIdAny struct { +// NetworkInstance_SegmentRouting_Srlb_LocalIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/local-id YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_LocalIdPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_MplsLabelBlock represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/mpls-label-block YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_MplsLabelBlock struct { +// NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/mpls-label-block YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/state/mpls-label-block YANG schema element. -type NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockAny struct { +// NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/srlbs/srlb/config/mpls-label-block YANG schema element. +type NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPathAny struct { *ygot.NodePath } -// DataplaneType returns from NetworkInstance_SegmentRouting_Srlb the path struct for its child "dataplane-type". -func (n *NetworkInstance_SegmentRouting_Srlb) DataplaneType() *NetworkInstance_SegmentRouting_Srlb_DataplaneType { - return &NetworkInstance_SegmentRouting_Srlb_DataplaneType{ +// DataplaneType returns from NetworkInstance_SegmentRouting_SrlbPath the path struct for its child "dataplane-type". +func (n *NetworkInstance_SegmentRouting_SrlbPath) DataplaneType() *NetworkInstance_SegmentRouting_Srlb_DataplaneTypePath { + return &NetworkInstance_SegmentRouting_Srlb_DataplaneTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "dataplane-type"}, + []string{"config", "dataplane-type"}, map[string]interface{}{}, n, ), } } -// DataplaneType returns from NetworkInstance_SegmentRouting_SrlbAny the path struct for its child "dataplane-type". -func (n *NetworkInstance_SegmentRouting_SrlbAny) DataplaneType() *NetworkInstance_SegmentRouting_Srlb_DataplaneTypeAny { - return &NetworkInstance_SegmentRouting_Srlb_DataplaneTypeAny{ +// DataplaneType returns from NetworkInstance_SegmentRouting_SrlbPathAny the path struct for its child "dataplane-type". +func (n *NetworkInstance_SegmentRouting_SrlbPathAny) DataplaneType() *NetworkInstance_SegmentRouting_Srlb_DataplaneTypePathAny { + return &NetworkInstance_SegmentRouting_Srlb_DataplaneTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dataplane-type"}, + []string{"config", "dataplane-type"}, map[string]interface{}{}, n, ), } } -// Ipv6Prefix returns from NetworkInstance_SegmentRouting_Srlb the path struct for its child "ipv6-prefix". -func (n *NetworkInstance_SegmentRouting_Srlb) Ipv6Prefix() *NetworkInstance_SegmentRouting_Srlb_Ipv6Prefix { - return &NetworkInstance_SegmentRouting_Srlb_Ipv6Prefix{ +// Ipv6Prefix returns from NetworkInstance_SegmentRouting_SrlbPath the path struct for its child "ipv6-prefix". +func (n *NetworkInstance_SegmentRouting_SrlbPath) Ipv6Prefix() *NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPath { + return &NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-prefix"}, + []string{"config", "ipv6-prefix"}, map[string]interface{}{}, n, ), } } -// Ipv6Prefix returns from NetworkInstance_SegmentRouting_SrlbAny the path struct for its child "ipv6-prefix". -func (n *NetworkInstance_SegmentRouting_SrlbAny) Ipv6Prefix() *NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixAny { - return &NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixAny{ +// Ipv6Prefix returns from NetworkInstance_SegmentRouting_SrlbPathAny the path struct for its child "ipv6-prefix". +func (n *NetworkInstance_SegmentRouting_SrlbPathAny) Ipv6Prefix() *NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPathAny { + return &NetworkInstance_SegmentRouting_Srlb_Ipv6PrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-prefix"}, + []string{"config", "ipv6-prefix"}, map[string]interface{}{}, n, ), } } -// LocalId returns from NetworkInstance_SegmentRouting_Srlb the path struct for its child "local-id". -func (n *NetworkInstance_SegmentRouting_Srlb) LocalId() *NetworkInstance_SegmentRouting_Srlb_LocalId { - return &NetworkInstance_SegmentRouting_Srlb_LocalId{ +// LocalId returns from NetworkInstance_SegmentRouting_SrlbPath the path struct for its child "local-id". +func (n *NetworkInstance_SegmentRouting_SrlbPath) LocalId() *NetworkInstance_SegmentRouting_Srlb_LocalIdPath { + return &NetworkInstance_SegmentRouting_Srlb_LocalIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// LocalId returns from NetworkInstance_SegmentRouting_SrlbAny the path struct for its child "local-id". -func (n *NetworkInstance_SegmentRouting_SrlbAny) LocalId() *NetworkInstance_SegmentRouting_Srlb_LocalIdAny { - return &NetworkInstance_SegmentRouting_Srlb_LocalIdAny{ +// LocalId returns from NetworkInstance_SegmentRouting_SrlbPathAny the path struct for its child "local-id". +func (n *NetworkInstance_SegmentRouting_SrlbPathAny) LocalId() *NetworkInstance_SegmentRouting_Srlb_LocalIdPathAny { + return &NetworkInstance_SegmentRouting_Srlb_LocalIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "local-id"}, + []string{"config", "local-id"}, map[string]interface{}{}, n, ), } } -// MplsLabelBlock returns from NetworkInstance_SegmentRouting_Srlb the path struct for its child "mpls-label-block". -func (n *NetworkInstance_SegmentRouting_Srlb) MplsLabelBlock() *NetworkInstance_SegmentRouting_Srlb_MplsLabelBlock { - return &NetworkInstance_SegmentRouting_Srlb_MplsLabelBlock{ +// MplsLabelBlock returns from NetworkInstance_SegmentRouting_SrlbPath the path struct for its child "mpls-label-block". +func (n *NetworkInstance_SegmentRouting_SrlbPath) MplsLabelBlock() *NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPath { + return &NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPath{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label-block"}, + []string{"config", "mpls-label-block"}, map[string]interface{}{}, n, ), } } -// MplsLabelBlock returns from NetworkInstance_SegmentRouting_SrlbAny the path struct for its child "mpls-label-block". -func (n *NetworkInstance_SegmentRouting_SrlbAny) MplsLabelBlock() *NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockAny { - return &NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockAny{ +// MplsLabelBlock returns from NetworkInstance_SegmentRouting_SrlbPathAny the path struct for its child "mpls-label-block". +func (n *NetworkInstance_SegmentRouting_SrlbPathAny) MplsLabelBlock() *NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPathAny { + return &NetworkInstance_SegmentRouting_Srlb_MplsLabelBlockPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mpls-label-block"}, + []string{"config", "mpls-label-block"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_SegmentRouting_TePolicy represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy struct { +// NetworkInstance_SegmentRouting_TePolicyPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy YANG schema element. +type NetworkInstance_SegmentRouting_TePolicyPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy YANG schema element. -type NetworkInstance_SegmentRouting_TePolicyAny struct { +// NetworkInstance_SegmentRouting_TePolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy YANG schema element. +type NetworkInstance_SegmentRouting_TePolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Active represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Active struct { +// NetworkInstance_SegmentRouting_TePolicy_ActivePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActivePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ActiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ActiveAny struct { +// NetworkInstance_SegmentRouting_TePolicy_ActivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActivePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ActiveSince represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-since YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ActiveSince struct { +// NetworkInstance_SegmentRouting_TePolicy_ActiveSincePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-since YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActiveSincePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ActiveSinceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-since YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ActiveSinceAny struct { +// NetworkInstance_SegmentRouting_TePolicy_ActiveSincePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-since YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActiveSincePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ActiveTransitions represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-transitions YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ActiveTransitions struct { +// NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-transitions YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-transitions YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/active-transitions YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Bsid represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/bsid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Bsid struct { +// NetworkInstance_SegmentRouting_TePolicy_BsidPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/bsid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_BsidPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_BsidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/bsid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_BsidAny struct { +// NetworkInstance_SegmentRouting_TePolicy_BsidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/bsid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_BsidPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Color represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/color YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Color struct { +// NetworkInstance_SegmentRouting_TePolicy_ColorPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/color YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ColorPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_ColorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/color YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_ColorAny struct { +// NetworkInstance_SegmentRouting_TePolicy_ColorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/color YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_ColorPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Endpoint represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/endpoint YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Endpoint struct { +// NetworkInstance_SegmentRouting_TePolicy_EndpointPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/endpoint YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_EndpointPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_EndpointAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/endpoint YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_EndpointAny struct { +// NetworkInstance_SegmentRouting_TePolicy_EndpointPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/endpoint YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_EndpointPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Name represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/name YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Name struct { +// NetworkInstance_SegmentRouting_TePolicy_NamePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/name YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_NamePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/name YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_NameAny struct { +// NetworkInstance_SegmentRouting_TePolicy_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/name YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_NamePathAny struct { *ygot.NodePath } -// Active returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "active". -func (n *NetworkInstance_SegmentRouting_TePolicy) Active() *NetworkInstance_SegmentRouting_TePolicy_Active { - return &NetworkInstance_SegmentRouting_TePolicy_Active{ +// Active returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "active". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Active() *NetworkInstance_SegmentRouting_TePolicy_ActivePath { + return &NetworkInstance_SegmentRouting_TePolicy_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -148368,9 +148582,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Active() *NetworkInstance_Segm } } -// Active returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "active". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Active() *NetworkInstance_SegmentRouting_TePolicy_ActiveAny { - return &NetworkInstance_SegmentRouting_TePolicy_ActiveAny{ +// Active returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "active". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Active() *NetworkInstance_SegmentRouting_TePolicy_ActivePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -148379,9 +148593,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Active() *NetworkInstance_S } } -// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "active-since". -func (n *NetworkInstance_SegmentRouting_TePolicy) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_ActiveSince { - return &NetworkInstance_SegmentRouting_TePolicy_ActiveSince{ +// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "active-since". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_ActiveSincePath { + return &NetworkInstance_SegmentRouting_TePolicy_ActiveSincePath{ NodePath: ygot.NewNodePath( []string{"state", "active-since"}, map[string]interface{}{}, @@ -148390,9 +148604,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) ActiveSince() *NetworkInstance } } -// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "active-since". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_ActiveSinceAny { - return &NetworkInstance_SegmentRouting_TePolicy_ActiveSinceAny{ +// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "active-since". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_ActiveSincePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_ActiveSincePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-since"}, map[string]interface{}{}, @@ -148401,9 +148615,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) ActiveSince() *NetworkInsta } } -// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "active-transitions". -func (n *NetworkInstance_SegmentRouting_TePolicy) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_ActiveTransitions { - return &NetworkInstance_SegmentRouting_TePolicy_ActiveTransitions{ +// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "active-transitions". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPath { + return &NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "active-transitions"}, map[string]interface{}{}, @@ -148412,9 +148626,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) ActiveTransitions() *NetworkIn } } -// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "active-transitions". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsAny { - return &NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsAny{ +// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "active-transitions". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_ActiveTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-transitions"}, map[string]interface{}{}, @@ -148423,9 +148637,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) ActiveTransitions() *Networ } } -// Bsid returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "bsid". -func (n *NetworkInstance_SegmentRouting_TePolicy) Bsid() *NetworkInstance_SegmentRouting_TePolicy_Bsid { - return &NetworkInstance_SegmentRouting_TePolicy_Bsid{ +// Bsid returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "bsid". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Bsid() *NetworkInstance_SegmentRouting_TePolicy_BsidPath { + return &NetworkInstance_SegmentRouting_TePolicy_BsidPath{ NodePath: ygot.NewNodePath( []string{"state", "bsid"}, map[string]interface{}{}, @@ -148434,9 +148648,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Bsid() *NetworkInstance_Segmen } } -// Bsid returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "bsid". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Bsid() *NetworkInstance_SegmentRouting_TePolicy_BsidAny { - return &NetworkInstance_SegmentRouting_TePolicy_BsidAny{ +// Bsid returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "bsid". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Bsid() *NetworkInstance_SegmentRouting_TePolicy_BsidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_BsidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bsid"}, map[string]interface{}{}, @@ -148445,9 +148659,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Bsid() *NetworkInstance_Seg } } -// CandidatePathAny returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "candidate-path". -func (n *NetworkInstance_SegmentRouting_TePolicy) CandidatePathAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny{ +// CandidatePathAny returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "candidate-path". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) CandidatePathAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny{ NodePath: ygot.NewNodePath( []string{"candidate-paths", "candidate-path"}, map[string]interface{}{"protocol-origin": "*", "originator-asn": "*", "originator-addr": "*", "discriminator": "*"}, @@ -148456,9 +148670,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) CandidatePathAny() *NetworkIns } } -// CandidatePathAny returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "candidate-path". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) CandidatePathAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny{ +// CandidatePathAny returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "candidate-path". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) CandidatePathAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny{ NodePath: ygot.NewNodePath( []string{"candidate-paths", "candidate-path"}, map[string]interface{}{"protocol-origin": "*", "originator-asn": "*", "originator-addr": "*", "discriminator": "*"}, @@ -148467,33 +148681,33 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) CandidatePathAny() *Network } } -// WithProtocolOrigin sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny's key "protocol-origin" to the specified value. -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) WithProtocolOrigin(ProtocolOrigin oc.E_OpenconfigSrtePolicy_SrteProtocolType) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { +// WithProtocolOrigin sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny's key "protocol-origin" to the specified value. +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) WithProtocolOrigin(ProtocolOrigin E_OpenconfigSrtePolicy_SrteProtocolType) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { ygot.ModifyKey(n.NodePath, "protocol-origin", ProtocolOrigin) return n } -// WithOriginatorAsn sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny's key "originator-asn" to the specified value. -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) WithOriginatorAsn(OriginatorAsn uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { +// WithOriginatorAsn sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny's key "originator-asn" to the specified value. +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) WithOriginatorAsn(OriginatorAsn uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { ygot.ModifyKey(n.NodePath, "originator-asn", OriginatorAsn) return n } -// WithOriginatorAddr sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny's key "originator-addr" to the specified value. -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) WithOriginatorAddr(OriginatorAddr string) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { +// WithOriginatorAddr sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny's key "originator-addr" to the specified value. +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) WithOriginatorAddr(OriginatorAddr string) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { ygot.ModifyKey(n.NodePath, "originator-addr", OriginatorAddr) return n } -// WithDiscriminator sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny's key "discriminator" to the specified value. -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) WithDiscriminator(Discriminator uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny { +// WithDiscriminator sets NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny's key "discriminator" to the specified value. +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) WithDiscriminator(Discriminator uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny { ygot.ModifyKey(n.NodePath, "discriminator", Discriminator) return n } -// Color returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "color". -func (n *NetworkInstance_SegmentRouting_TePolicy) Color() *NetworkInstance_SegmentRouting_TePolicy_Color { - return &NetworkInstance_SegmentRouting_TePolicy_Color{ +// Color returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "color". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Color() *NetworkInstance_SegmentRouting_TePolicy_ColorPath { + return &NetworkInstance_SegmentRouting_TePolicy_ColorPath{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -148502,9 +148716,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Color() *NetworkInstance_Segme } } -// Color returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "color". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Color() *NetworkInstance_SegmentRouting_TePolicy_ColorAny { - return &NetworkInstance_SegmentRouting_TePolicy_ColorAny{ +// Color returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "color". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Color() *NetworkInstance_SegmentRouting_TePolicy_ColorPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_ColorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "color"}, map[string]interface{}{}, @@ -148513,9 +148727,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Color() *NetworkInstance_Se } } -// Counters returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicy) Counters() *NetworkInstance_SegmentRouting_TePolicy_Counters { - return &NetworkInstance_SegmentRouting_TePolicy_Counters{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Counters() *NetworkInstance_SegmentRouting_TePolicy_CountersPath { + return &NetworkInstance_SegmentRouting_TePolicy_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -148524,9 +148738,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Counters() *NetworkInstance_Se } } -// Counters returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CountersAny { - return &NetworkInstance_SegmentRouting_TePolicy_CountersAny{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -148535,9 +148749,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Counters() *NetworkInstance } } -// Endpoint returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "endpoint". -func (n *NetworkInstance_SegmentRouting_TePolicy) Endpoint() *NetworkInstance_SegmentRouting_TePolicy_Endpoint { - return &NetworkInstance_SegmentRouting_TePolicy_Endpoint{ +// Endpoint returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "endpoint". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Endpoint() *NetworkInstance_SegmentRouting_TePolicy_EndpointPath { + return &NetworkInstance_SegmentRouting_TePolicy_EndpointPath{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -148546,9 +148760,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Endpoint() *NetworkInstance_Se } } -// Endpoint returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "endpoint". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Endpoint() *NetworkInstance_SegmentRouting_TePolicy_EndpointAny { - return &NetworkInstance_SegmentRouting_TePolicy_EndpointAny{ +// Endpoint returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "endpoint". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Endpoint() *NetworkInstance_SegmentRouting_TePolicy_EndpointPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_EndpointPathAny{ NodePath: ygot.NewNodePath( []string{"state", "endpoint"}, map[string]interface{}{}, @@ -148557,9 +148771,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Endpoint() *NetworkInstance } } -// Name returns from NetworkInstance_SegmentRouting_TePolicy the path struct for its child "name". -func (n *NetworkInstance_SegmentRouting_TePolicy) Name() *NetworkInstance_SegmentRouting_TePolicy_Name { - return &NetworkInstance_SegmentRouting_TePolicy_Name{ +// Name returns from NetworkInstance_SegmentRouting_TePolicyPath the path struct for its child "name". +func (n *NetworkInstance_SegmentRouting_TePolicyPath) Name() *NetworkInstance_SegmentRouting_TePolicy_NamePath { + return &NetworkInstance_SegmentRouting_TePolicy_NamePath{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -148568,9 +148782,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy) Name() *NetworkInstance_Segmen } } -// Name returns from NetworkInstance_SegmentRouting_TePolicyAny the path struct for its child "name". -func (n *NetworkInstance_SegmentRouting_TePolicyAny) Name() *NetworkInstance_SegmentRouting_TePolicy_NameAny { - return &NetworkInstance_SegmentRouting_TePolicy_NameAny{ +// Name returns from NetworkInstance_SegmentRouting_TePolicyPathAny the path struct for its child "name". +func (n *NetworkInstance_SegmentRouting_TePolicyPathAny) Name() *NetworkInstance_SegmentRouting_TePolicy_NamePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_NamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -148579,129 +148793,129 @@ func (n *NetworkInstance_SegmentRouting_TePolicyAny) Name() *NetworkInstance_Seg } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Active represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Active struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSince represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-since YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSince struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-since YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSinceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-since YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSinceAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-since YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitions represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-transitions YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitions struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-transitions YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-transitions YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/active-transitions YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Discriminator represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/discriminator YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Discriminator struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/discriminator YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/discriminator YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/discriminator YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Enlp represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/enlp YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Enlp struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/enlp YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/enlp YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/enlp YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Name represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/name YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Name struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/name YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/name YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NameAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/name YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddr represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-addr YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddr struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-addr YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-addr YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-addr YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsn represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-asn YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsn struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-asn YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-asn YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/originator-asn YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Preference represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/preference YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Preference struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/preference YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferenceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/preference YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferenceAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/preference YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOrigin represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/protocol-origin YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOrigin struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/protocol-origin YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/protocol-origin YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/protocol-origin YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Valid represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/valid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Valid struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/valid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/valid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/state/valid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPathAny struct { *ygot.NodePath } -// Active returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "active". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Active() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Active { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Active{ +// Active returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "active". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Active() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePath{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -148710,9 +148924,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Active() *Networ } } -// Active returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "active". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Active() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveAny{ +// Active returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "active". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Active() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActivePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active"}, map[string]interface{}{}, @@ -148721,9 +148935,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Active() *Net } } -// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "active-since". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSince { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSince{ +// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "active-since". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePath{ NodePath: ygot.NewNodePath( []string{"state", "active-since"}, map[string]interface{}{}, @@ -148732,9 +148946,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ActiveSince() *N } } -// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "active-since". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSinceAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSinceAny{ +// ActiveSince returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "active-since". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) ActiveSince() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveSincePathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-since"}, map[string]interface{}{}, @@ -148743,9 +148957,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ActiveSince() } } -// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "active-transitions". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitions { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitions{ +// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "active-transitions". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "active-transitions"}, map[string]interface{}{}, @@ -148754,9 +148968,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ActiveTransition } } -// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "active-transitions". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsAny{ +// ActiveTransitions returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "active-transitions". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) ActiveTransitions() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ActiveTransitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "active-transitions"}, map[string]interface{}{}, @@ -148765,9 +148979,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ActiveTransit } } -// Discriminator returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "discriminator". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Discriminator() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Discriminator { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Discriminator{ +// Discriminator returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "discriminator". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Discriminator() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPath{ NodePath: ygot.NewNodePath( []string{"state", "discriminator"}, map[string]interface{}{}, @@ -148776,9 +148990,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Discriminator() } } -// Discriminator returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "discriminator". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Discriminator() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorAny{ +// Discriminator returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "discriminator". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Discriminator() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_DiscriminatorPathAny{ NodePath: ygot.NewNodePath( []string{"state", "discriminator"}, map[string]interface{}{}, @@ -148787,9 +149001,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Discriminator } } -// Enlp returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "enlp". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Enlp() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Enlp { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Enlp{ +// Enlp returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "enlp". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Enlp() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPath{ NodePath: ygot.NewNodePath( []string{"state", "enlp"}, map[string]interface{}{}, @@ -148798,9 +149012,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Enlp() *NetworkI } } -// Enlp returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "enlp". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Enlp() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpAny{ +// Enlp returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "enlp". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Enlp() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_EnlpPathAny{ NodePath: ygot.NewNodePath( []string{"state", "enlp"}, map[string]interface{}{}, @@ -148809,9 +149023,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Enlp() *Netwo } } -// Name returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "name". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Name() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Name { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Name{ +// Name returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "name". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Name() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePath{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -148820,9 +149034,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Name() *NetworkI } } -// Name returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "name". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Name() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NameAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NameAny{ +// Name returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "name". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Name() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_NamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -148831,9 +149045,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Name() *Netwo } } -// OriginatorAddr returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "originator-addr". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) OriginatorAddr() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddr { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddr{ +// OriginatorAddr returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "originator-addr". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) OriginatorAddr() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPath{ NodePath: ygot.NewNodePath( []string{"state", "originator-addr"}, map[string]interface{}{}, @@ -148842,9 +149056,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) OriginatorAddr() } } -// OriginatorAddr returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "originator-addr". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) OriginatorAddr() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrAny{ +// OriginatorAddr returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "originator-addr". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) OriginatorAddr() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAddrPathAny{ NodePath: ygot.NewNodePath( []string{"state", "originator-addr"}, map[string]interface{}{}, @@ -148853,9 +149067,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) OriginatorAdd } } -// OriginatorAsn returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "originator-asn". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) OriginatorAsn() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsn { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsn{ +// OriginatorAsn returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "originator-asn". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) OriginatorAsn() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPath{ NodePath: ygot.NewNodePath( []string{"state", "originator-asn"}, map[string]interface{}{}, @@ -148864,9 +149078,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) OriginatorAsn() } } -// OriginatorAsn returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "originator-asn". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) OriginatorAsn() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnAny{ +// OriginatorAsn returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "originator-asn". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) OriginatorAsn() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_OriginatorAsnPathAny{ NodePath: ygot.NewNodePath( []string{"state", "originator-asn"}, map[string]interface{}{}, @@ -148875,9 +149089,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) OriginatorAsn } } -// Preference returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "preference". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Preference() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Preference { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Preference{ +// Preference returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "preference". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Preference() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePath{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -148886,9 +149100,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Preference() *Ne } } -// Preference returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "preference". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Preference() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferenceAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferenceAny{ +// Preference returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "preference". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Preference() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_PreferencePathAny{ NodePath: ygot.NewNodePath( []string{"state", "preference"}, map[string]interface{}{}, @@ -148897,9 +149111,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Preference() } } -// ProtocolOrigin returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "protocol-origin". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ProtocolOrigin() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOrigin { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOrigin{ +// ProtocolOrigin returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "protocol-origin". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) ProtocolOrigin() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPath{ NodePath: ygot.NewNodePath( []string{"state", "protocol-origin"}, map[string]interface{}{}, @@ -148908,9 +149122,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) ProtocolOrigin() } } -// ProtocolOrigin returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "protocol-origin". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ProtocolOrigin() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginAny{ +// ProtocolOrigin returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "protocol-origin". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) ProtocolOrigin() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ProtocolOriginPathAny{ NodePath: ygot.NewNodePath( []string{"state", "protocol-origin"}, map[string]interface{}{}, @@ -148919,9 +149133,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) ProtocolOrigi } } -// SegmentListAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "segment-list". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) SegmentListAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny{ +// SegmentListAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "segment-list". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) SegmentListAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"id": "*"}, @@ -148930,9 +149144,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) SegmentListAny() } } -// SegmentListAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "segment-list". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) SegmentListAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny{ +// SegmentListAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "segment-list". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) SegmentListAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"id": "*"}, @@ -148941,9 +149155,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) SegmentListAn } } -// SegmentList returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "segment-list". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) SegmentList(Id uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList{ +// SegmentList returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "segment-list". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) SegmentList(Id uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"id": Id}, @@ -148952,9 +149166,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) SegmentList(Id u } } -// SegmentList returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "segment-list". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) SegmentList(Id uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny{ +// SegmentList returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "segment-list". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) SegmentList(Id uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny{ NodePath: ygot.NewNodePath( []string{"segment-lists", "segment-list"}, map[string]interface{}{"id": Id}, @@ -148963,9 +149177,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) SegmentList(I } } -// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath the path struct for its child "valid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Valid { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_Valid{ +// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath the path struct for its child "valid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPath) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPath{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -148974,9 +149188,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath) Valid() *Network } } -// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny the path struct for its child "valid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidAny{ +// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny the path struct for its child "valid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathPathAny) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_ValidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -148985,59 +149199,59 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePathAny) Valid() *Netw } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Id represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/id YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Id struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/id YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/id YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/id YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReason represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/invalid-reason YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReason struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/invalid-reason YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/invalid-reason YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/invalid-reason YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Valid represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/valid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Valid struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/valid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/valid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/valid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Weight represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/weight YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Weight struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/weight YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/weight YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/weight YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPathAny struct { *ygot.NodePath } -// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -149046,9 +149260,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Coun } } -// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -149057,9 +149271,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) C } } -// Id returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "id". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Id() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Id { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Id{ +// Id returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "id". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) Id() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -149068,9 +149282,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Id() } } -// Id returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "id". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) Id() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdAny{ +// Id returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "id". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) Id() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -149079,9 +149293,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) I } } -// InvalidReason returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "invalid-reason". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) InvalidReason() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReason { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReason{ +// InvalidReason returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "invalid-reason". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) InvalidReason() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPath{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -149090,9 +149304,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Inva } } -// InvalidReason returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "invalid-reason". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) InvalidReason() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonAny{ +// InvalidReason returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "invalid-reason". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) InvalidReason() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_InvalidReasonPathAny{ NodePath: ygot.NewNodePath( []string{"state", "invalid-reason"}, map[string]interface{}{}, @@ -149101,9 +149315,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) I } } -// NextHopAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "next-hop". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) NextHopAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny{ +// NextHopAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "next-hop". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) NextHopAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -149112,9 +149326,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Next } } -// NextHopAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "next-hop". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) NextHopAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny{ +// NextHopAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) NextHopAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": "*"}, @@ -149123,9 +149337,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) N } } -// NextHop returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "next-hop". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) NextHop(Index uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop{ +// NextHop returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "next-hop". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) NextHop(Index uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -149134,9 +149348,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Next } } -// NextHop returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "next-hop". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) NextHop(Index uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny{ +// NextHop returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "next-hop". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) NextHop(Index uint32) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny{ NodePath: ygot.NewNodePath( []string{"next-hops", "next-hop"}, map[string]interface{}{"index": Index}, @@ -149145,9 +149359,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) N } } -// SidAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "sid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) SidAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny{ +// SidAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "sid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) SidAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny{ NodePath: ygot.NewNodePath( []string{"sids", "sid"}, map[string]interface{}{"index": "*"}, @@ -149156,9 +149370,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) SidA } } -// SidAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "sid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) SidAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny{ +// SidAny returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "sid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) SidAny() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny{ NodePath: ygot.NewNodePath( []string{"sids", "sid"}, map[string]interface{}{"index": "*"}, @@ -149167,9 +149381,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) S } } -// Sid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "sid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Sid(Index uint64) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid{ +// Sid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "sid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) Sid(Index uint64) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath{ NodePath: ygot.NewNodePath( []string{"sids", "sid"}, map[string]interface{}{"index": Index}, @@ -149178,9 +149392,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Sid( } } -// Sid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "sid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) Sid(Index uint64) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny{ +// Sid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "sid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) Sid(Index uint64) *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny{ NodePath: ygot.NewNodePath( []string{"sids", "sid"}, map[string]interface{}{"index": Index}, @@ -149189,9 +149403,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) S } } -// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "valid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Valid { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Valid{ +// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "valid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPath{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -149200,9 +149414,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Vali } } -// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "valid". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidAny{ +// Valid returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "valid". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) Valid() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_ValidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -149211,9 +149425,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) V } } -// Weight returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList the path struct for its child "weight". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Weight() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Weight { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Weight{ +// Weight returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath the path struct for its child "weight". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPath) Weight() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPath{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -149222,9 +149436,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList) Weig } } -// Weight returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny the path struct for its child "weight". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) Weight() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightAny{ +// Weight returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny the path struct for its child "weight". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListPathAny) Weight() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_WeightPathAny{ NodePath: ygot.NewNodePath( []string{"state", "weight"}, map[string]interface{}{}, @@ -149233,59 +149447,59 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentListAny) W } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPathAny struct { *ygot.NodePath } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctets { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctets{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -149294,9 +149508,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsAny{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -149305,9 +149519,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPkts { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPkts{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -149316,9 +149530,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsAny{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutLabeledPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -149327,9 +149541,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctets { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctets{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -149338,9 +149552,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsAny{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -149349,9 +149563,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPkts { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPkts{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPath) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -149360,9 +149574,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsAny{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_CountersPathAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -149371,79 +149585,79 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Count } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeader represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/encapsulate-header YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeader struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/encapsulate-header YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/encapsulate-header YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/encapsulate-header YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Index represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Index struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/index YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/index YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/index YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddress represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/ip-address YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddress struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/ip-address YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/ip-address YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/ip-address YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddress represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/mac-address YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddress struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/mac-address YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/mac-address YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/mac-address YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocol represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/origin-protocol YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocol struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/origin-protocol YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/origin-protocol YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/origin-protocol YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStack represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStack struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/pushed-mpls-label-stack YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPathAny struct { *ygot.NodePath } -// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -149452,9 +149666,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "counters". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny{ +// Counters returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "counters". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) Counters() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -149463,9 +149677,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// EncapsulateHeader returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "encapsulate-header". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) EncapsulateHeader() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeader { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeader{ +// EncapsulateHeader returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "encapsulate-header". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) EncapsulateHeader() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPath{ NodePath: ygot.NewNodePath( []string{"state", "encapsulate-header"}, map[string]interface{}{}, @@ -149474,9 +149688,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// EncapsulateHeader returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "encapsulate-header". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) EncapsulateHeader() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderAny{ +// EncapsulateHeader returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "encapsulate-header". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) EncapsulateHeader() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_EncapsulateHeaderPathAny{ NodePath: ygot.NewNodePath( []string{"state", "encapsulate-header"}, map[string]interface{}{}, @@ -149485,9 +149699,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "index". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Index { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Index{ +// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "index". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -149496,9 +149710,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "index". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexAny{ +// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "index". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -149507,9 +149721,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// InterfaceRef returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "interface-ref". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) InterfaceRef() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef{ +// InterfaceRef returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "interface-ref". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) InterfaceRef() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -149518,9 +149732,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// InterfaceRef returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "interface-ref". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) InterfaceRef() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny{ +// InterfaceRef returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "interface-ref". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) InterfaceRef() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -149529,9 +149743,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// IpAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "ip-address". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) IpAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddress { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddress{ +// IpAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "ip-address". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) IpAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "ip-address"}, map[string]interface{}{}, @@ -149540,9 +149754,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// IpAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "ip-address". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) IpAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressAny{ +// IpAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "ip-address". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) IpAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_IpAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ip-address"}, map[string]interface{}{}, @@ -149551,9 +149765,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// MacAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "mac-address". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) MacAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddress { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddress{ +// MacAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "mac-address". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) MacAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "mac-address"}, map[string]interface{}{}, @@ -149562,9 +149776,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// MacAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "mac-address". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) MacAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressAny{ +// MacAddress returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "mac-address". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) MacAddress() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_MacAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mac-address"}, map[string]interface{}{}, @@ -149573,9 +149787,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OriginProtocol returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "origin-protocol". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) OriginProtocol() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocol { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocol{ +// OriginProtocol returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "origin-protocol". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) OriginProtocol() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPath{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -149584,9 +149798,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OriginProtocol returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "origin-protocol". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) OriginProtocol() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolAny{ +// OriginProtocol returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "origin-protocol". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) OriginProtocol() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_OriginProtocolPathAny{ NodePath: ygot.NewNodePath( []string{"state", "origin-protocol"}, map[string]interface{}{}, @@ -149595,9 +149809,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// PushedMplsLabelStack returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop the path struct for its child "pushed-mpls-label-stack". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop) PushedMplsLabelStack() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStack { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStack{ +// PushedMplsLabelStack returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath the path struct for its child "pushed-mpls-label-stack". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPath) PushedMplsLabelStack() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPath{ NodePath: ygot.NewNodePath( []string{"state", "pushed-mpls-label-stack"}, map[string]interface{}{}, @@ -149606,9 +149820,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// PushedMplsLabelStack returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny the path struct for its child "pushed-mpls-label-stack". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopAny) PushedMplsLabelStack() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackAny{ +// PushedMplsLabelStack returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny the path struct for its child "pushed-mpls-label-stack". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHopPathAny) PushedMplsLabelStack() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_PushedMplsLabelStackPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pushed-mpls-label-stack"}, map[string]interface{}{}, @@ -149617,59 +149831,59 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPathAny struct { *ygot.NodePath } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctets { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctets{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -149678,9 +149892,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsAny{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -149689,9 +149903,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPkts { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPkts{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -149700,9 +149914,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsAny{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutLabeledPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -149711,9 +149925,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctets { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctets{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -149722,9 +149936,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsAny{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -149733,9 +149947,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPkts { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPkts{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPath) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -149744,9 +149958,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsAny{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_CountersPathAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -149755,39 +149969,39 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Interface represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Interface struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/interface YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/interface YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfaceAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/interface YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Subinterface represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Subinterface struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfaceAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/next-hops/next-hop/interface-ref/state/subinterface YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef the path struct for its child "interface". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef) Interface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Interface { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Interface{ +// Interface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath the path struct for its child "interface". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath) Interface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -149796,9 +150010,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Interface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny the path struct for its child "interface". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny) Interface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfaceAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfaceAny{ +// Interface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny the path struct for its child "interface". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny) Interface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -149807,9 +150021,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Subinterface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef the path struct for its child "subinterface". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef) Subinterface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Subinterface { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_Subinterface{ +// Subinterface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath the path struct for its child "subinterface". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPath) Subinterface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -149818,9 +150032,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// Subinterface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny the path struct for its child "subinterface". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefAny) Subinterface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfaceAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRefPathAny) Subinterface() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextHop_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "subinterface"}, map[string]interface{}{}, @@ -149829,59 +150043,59 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_NextH } } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Index represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/index YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Index struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/index YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/index YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/index YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTc represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-tc YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTc struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-tc YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-tc YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-tc YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtl represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-ttl YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtl struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-ttl YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-ttl YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/mpls-ttl YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Value represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/value YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Value struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/value YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValueAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/value YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValueAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/candidate-paths/candidate-path/segment-lists/segment-list/sids/sid/state/value YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePathAny struct { *ygot.NodePath } -// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid the path struct for its child "index". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Index { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Index{ +// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath the path struct for its child "index". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -149890,9 +150104,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) } } -// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny the path struct for its child "index". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexAny{ +// Index returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny the path struct for its child "index". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny) Index() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -149901,9 +150115,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAn } } -// MplsTc returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid the path struct for its child "mpls-tc". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) MplsTc() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTc { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTc{ +// MplsTc returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath the path struct for its child "mpls-tc". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath) MplsTc() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -149912,9 +150126,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) } } -// MplsTc returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny the path struct for its child "mpls-tc". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny) MplsTc() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcAny{ +// MplsTc returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny the path struct for its child "mpls-tc". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny) MplsTc() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTcPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-tc"}, map[string]interface{}{}, @@ -149923,9 +150137,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAn } } -// MplsTtl returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid the path struct for its child "mpls-ttl". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) MplsTtl() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtl { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtl{ +// MplsTtl returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath the path struct for its child "mpls-ttl". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath) MplsTtl() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPath{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -149934,9 +150148,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) } } -// MplsTtl returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny the path struct for its child "mpls-ttl". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny) MplsTtl() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlAny{ +// MplsTtl returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny the path struct for its child "mpls-ttl". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny) MplsTtl() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_MplsTtlPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mpls-ttl"}, map[string]interface{}{}, @@ -149945,9 +150159,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAn } } -// Value returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid the path struct for its child "value". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) Value() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Value { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_Value{ +// Value returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath the path struct for its child "value". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPath) Value() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePath { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -149956,9 +150170,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid) } } -// Value returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny the path struct for its child "value". -func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAny) Value() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValueAny { - return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValueAny{ +// Value returns from NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny the path struct for its child "value". +func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidPathAny) Value() *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePathAny { + return &NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_Sid_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -149967,99 +150181,99 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CandidatePath_SegmentList_SidAn } } -// NetworkInstance_SegmentRouting_TePolicy_Counters represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters struct { +// NetworkInstance_SegmentRouting_TePolicy_CountersPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CountersPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_CountersAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_CountersAny struct { +// NetworkInstance_SegmentRouting_TePolicy_CountersPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_CountersPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/in-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-labeled-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctets represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctets struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-octets YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-octets YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPathAny struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutPkts represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutPkts struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPath represents the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPath struct { *ygot.NodePath } -// NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-pkts YANG schema element. -type NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsAny struct { +// NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/segment-routing/te-policies/te-policy/state/counters/out-pkts YANG schema element. +type NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPathAny struct { *ygot.NodePath } -// InLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "in-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctets { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctets{ +// InLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "in-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) InLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-labeled-octets"}, map[string]interface{}{}, @@ -150068,9 +150282,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InLabeledOctets() *Ne } } -// InLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "in-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsAny{ +// InLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "in-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) InLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-labeled-octets"}, map[string]interface{}{}, @@ -150079,9 +150293,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InLabeledOctets() } } -// InLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "in-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPkts { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPkts{ +// InLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "in-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) InLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPath{ NodePath: ygot.NewNodePath( []string{"in-labeled-pkts"}, map[string]interface{}{}, @@ -150090,9 +150304,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InLabeledPkts() *Netw } } -// InLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "in-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsAny{ +// InLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "in-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) InLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InLabeledPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-labeled-pkts"}, map[string]interface{}{}, @@ -150101,9 +150315,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InLabeledPkts() *N } } -// InOctets returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "in-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InOctets { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InOctets{ +// InOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "in-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) InOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPath{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -150112,9 +150326,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InOctets() *NetworkIn } } -// InOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "in-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsAny{ +// InOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "in-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) InOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"in-octets"}, map[string]interface{}{}, @@ -150123,9 +150337,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InOctets() *Networ } } -// InPkts returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "in-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InPkts { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InPkts{ +// InPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "in-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) InPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPath{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -150134,9 +150348,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) InPkts() *NetworkInst } } -// InPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "in-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsAny{ +// InPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "in-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) InPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_InPktsPathAny{ NodePath: ygot.NewNodePath( []string{"in-pkts"}, map[string]interface{}{}, @@ -150145,9 +150359,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) InPkts() *NetworkI } } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctets { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctets{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -150156,9 +150370,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutLabeledOctets() *N } } -// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "out-labeled-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsAny{ +// OutLabeledOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "out-labeled-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) OutLabeledOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-octets"}, map[string]interface{}{}, @@ -150167,9 +150381,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutLabeledOctets() } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPkts { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPkts{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPath{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -150178,9 +150392,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutLabeledPkts() *Net } } -// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "out-labeled-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsAny{ +// OutLabeledPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "out-labeled-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) OutLabeledPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutLabeledPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-labeled-pkts"}, map[string]interface{}{}, @@ -150189,9 +150403,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutLabeledPkts() * } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctets { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctets{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPath{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -150200,9 +150414,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutOctets() *NetworkI } } -// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "out-octets". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsAny{ +// OutOctets returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "out-octets". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) OutOctets() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutOctetsPathAny{ NodePath: ygot.NewNodePath( []string{"out-octets"}, map[string]interface{}{}, @@ -150211,9 +150425,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutOctets() *Netwo } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_Counters the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutPkts { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutPkts{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPath the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPath) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPath { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPath{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -150222,9 +150436,9 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_Counters) OutPkts() *NetworkIns } } -// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersAny the path struct for its child "out-pkts". -func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsAny { - return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsAny{ +// OutPkts returns from NetworkInstance_SegmentRouting_TePolicy_CountersPathAny the path struct for its child "out-pkts". +func (n *NetworkInstance_SegmentRouting_TePolicy_CountersPathAny) OutPkts() *NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPathAny { + return &NetworkInstance_SegmentRouting_TePolicy_Counters_OutPktsPathAny{ NodePath: ygot.NewNodePath( []string{"out-pkts"}, map[string]interface{}{}, @@ -150233,379 +150447,411 @@ func (n *NetworkInstance_SegmentRouting_TePolicy_CountersAny) OutPkts() *Network } } -// NetworkInstance_Table represents the /openconfig-network-instance/network-instances/network-instance/tables/table YANG schema element. -type NetworkInstance_Table struct { +// NetworkInstance_TablePath represents the /openconfig-network-instance/network-instances/network-instance/tables/table YANG schema element. +type NetworkInstance_TablePath struct { *ygot.NodePath } -// NetworkInstance_TableAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table YANG schema element. -type NetworkInstance_TableAny struct { +// NetworkInstance_TablePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table YANG schema element. +type NetworkInstance_TablePathAny struct { *ygot.NodePath } -// NetworkInstance_Table_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/tables/table/state/address-family YANG schema element. -type NetworkInstance_Table_AddressFamily struct { +// NetworkInstance_Table_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/tables/table/config/address-family YANG schema element. +type NetworkInstance_Table_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_Table_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table/state/address-family YANG schema element. -type NetworkInstance_Table_AddressFamilyAny struct { +// NetworkInstance_Table_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table/config/address-family YANG schema element. +type NetworkInstance_Table_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_Table_Protocol represents the /openconfig-network-instance/network-instances/network-instance/tables/table/state/protocol YANG schema element. -type NetworkInstance_Table_Protocol struct { +// NetworkInstance_Table_ProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/tables/table/config/protocol YANG schema element. +type NetworkInstance_Table_ProtocolPath struct { *ygot.NodePath } -// NetworkInstance_Table_ProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table/state/protocol YANG schema element. -type NetworkInstance_Table_ProtocolAny struct { +// NetworkInstance_Table_ProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/tables/table/config/protocol YANG schema element. +type NetworkInstance_Table_ProtocolPathAny struct { *ygot.NodePath } -// AddressFamily returns from NetworkInstance_Table the path struct for its child "address-family". -func (n *NetworkInstance_Table) AddressFamily() *NetworkInstance_Table_AddressFamily { - return &NetworkInstance_Table_AddressFamily{ +// AddressFamily returns from NetworkInstance_TablePath the path struct for its child "address-family". +func (n *NetworkInstance_TablePath) AddressFamily() *NetworkInstance_Table_AddressFamilyPath { + return &NetworkInstance_Table_AddressFamilyPath{ NodePath: ygot.NewNodePath( - []string{"state", "address-family"}, + []string{"config", "address-family"}, map[string]interface{}{}, n, ), } } -// AddressFamily returns from NetworkInstance_TableAny the path struct for its child "address-family". -func (n *NetworkInstance_TableAny) AddressFamily() *NetworkInstance_Table_AddressFamilyAny { - return &NetworkInstance_Table_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_TablePathAny the path struct for its child "address-family". +func (n *NetworkInstance_TablePathAny) AddressFamily() *NetworkInstance_Table_AddressFamilyPathAny { + return &NetworkInstance_Table_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address-family"}, + []string{"config", "address-family"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_Table the path struct for its child "protocol". -func (n *NetworkInstance_Table) Protocol() *NetworkInstance_Table_Protocol { - return &NetworkInstance_Table_Protocol{ +// Protocol returns from NetworkInstance_TablePath the path struct for its child "protocol". +func (n *NetworkInstance_TablePath) Protocol() *NetworkInstance_Table_ProtocolPath { + return &NetworkInstance_Table_ProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// Protocol returns from NetworkInstance_TableAny the path struct for its child "protocol". -func (n *NetworkInstance_TableAny) Protocol() *NetworkInstance_Table_ProtocolAny { - return &NetworkInstance_Table_ProtocolAny{ +// Protocol returns from NetworkInstance_TablePathAny the path struct for its child "protocol". +func (n *NetworkInstance_TablePathAny) Protocol() *NetworkInstance_Table_ProtocolPathAny { + return &NetworkInstance_Table_ProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protocol"}, + []string{"config", "protocol"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_TableConnection represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection YANG schema element. -type NetworkInstance_TableConnection struct { +// NetworkInstance_TableConnectionPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection YANG schema element. +type NetworkInstance_TableConnectionPath struct { + *ygot.NodePath +} + +// NetworkInstance_TableConnectionPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection YANG schema element. +type NetworkInstance_TableConnectionPathAny struct { + *ygot.NodePath +} + +// NetworkInstance_TableConnection_AddressFamilyPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/address-family YANG schema element. +type NetworkInstance_TableConnection_AddressFamilyPath struct { *ygot.NodePath } -// NetworkInstance_TableConnectionAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection YANG schema element. -type NetworkInstance_TableConnectionAny struct { +// NetworkInstance_TableConnection_AddressFamilyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/address-family YANG schema element. +type NetworkInstance_TableConnection_AddressFamilyPathAny struct { *ygot.NodePath } -// NetworkInstance_TableConnection_AddressFamily represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/address-family YANG schema element. -type NetworkInstance_TableConnection_AddressFamily struct { +// NetworkInstance_TableConnection_DefaultImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/default-import-policy YANG schema element. +type NetworkInstance_TableConnection_DefaultImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_TableConnection_AddressFamilyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/address-family YANG schema element. -type NetworkInstance_TableConnection_AddressFamilyAny struct { +// NetworkInstance_TableConnection_DefaultImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/default-import-policy YANG schema element. +type NetworkInstance_TableConnection_DefaultImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_TableConnection_DefaultImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/default-import-policy YANG schema element. -type NetworkInstance_TableConnection_DefaultImportPolicy struct { +// NetworkInstance_TableConnection_DisableMetricPropagationPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/disable-metric-propagation YANG schema element. +type NetworkInstance_TableConnection_DisableMetricPropagationPath struct { *ygot.NodePath } -// NetworkInstance_TableConnection_DefaultImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/default-import-policy YANG schema element. -type NetworkInstance_TableConnection_DefaultImportPolicyAny struct { +// NetworkInstance_TableConnection_DisableMetricPropagationPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/disable-metric-propagation YANG schema element. +type NetworkInstance_TableConnection_DisableMetricPropagationPathAny struct { *ygot.NodePath } -// NetworkInstance_TableConnection_DstProtocol represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/dst-protocol YANG schema element. -type NetworkInstance_TableConnection_DstProtocol struct { +// NetworkInstance_TableConnection_DstProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/dst-protocol YANG schema element. +type NetworkInstance_TableConnection_DstProtocolPath struct { *ygot.NodePath } -// NetworkInstance_TableConnection_DstProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/dst-protocol YANG schema element. -type NetworkInstance_TableConnection_DstProtocolAny struct { +// NetworkInstance_TableConnection_DstProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/dst-protocol YANG schema element. +type NetworkInstance_TableConnection_DstProtocolPathAny struct { *ygot.NodePath } -// NetworkInstance_TableConnection_ImportPolicy represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/import-policy YANG schema element. -type NetworkInstance_TableConnection_ImportPolicy struct { +// NetworkInstance_TableConnection_ImportPolicyPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/import-policy YANG schema element. +type NetworkInstance_TableConnection_ImportPolicyPath struct { *ygot.NodePath } -// NetworkInstance_TableConnection_ImportPolicyAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/import-policy YANG schema element. -type NetworkInstance_TableConnection_ImportPolicyAny struct { +// NetworkInstance_TableConnection_ImportPolicyPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/import-policy YANG schema element. +type NetworkInstance_TableConnection_ImportPolicyPathAny struct { *ygot.NodePath } -// NetworkInstance_TableConnection_SrcProtocol represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/src-protocol YANG schema element. -type NetworkInstance_TableConnection_SrcProtocol struct { +// NetworkInstance_TableConnection_SrcProtocolPath represents the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/src-protocol YANG schema element. +type NetworkInstance_TableConnection_SrcProtocolPath struct { *ygot.NodePath } -// NetworkInstance_TableConnection_SrcProtocolAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/state/src-protocol YANG schema element. -type NetworkInstance_TableConnection_SrcProtocolAny struct { +// NetworkInstance_TableConnection_SrcProtocolPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/table-connections/table-connection/config/src-protocol YANG schema element. +type NetworkInstance_TableConnection_SrcProtocolPathAny struct { *ygot.NodePath } -// AddressFamily returns from NetworkInstance_TableConnection the path struct for its child "address-family". -func (n *NetworkInstance_TableConnection) AddressFamily() *NetworkInstance_TableConnection_AddressFamily { - return &NetworkInstance_TableConnection_AddressFamily{ +// AddressFamily returns from NetworkInstance_TableConnectionPath the path struct for its child "address-family". +func (n *NetworkInstance_TableConnectionPath) AddressFamily() *NetworkInstance_TableConnection_AddressFamilyPath { + return &NetworkInstance_TableConnection_AddressFamilyPath{ NodePath: ygot.NewNodePath( - []string{"state", "address-family"}, + []string{"config", "address-family"}, map[string]interface{}{}, n, ), } } -// AddressFamily returns from NetworkInstance_TableConnectionAny the path struct for its child "address-family". -func (n *NetworkInstance_TableConnectionAny) AddressFamily() *NetworkInstance_TableConnection_AddressFamilyAny { - return &NetworkInstance_TableConnection_AddressFamilyAny{ +// AddressFamily returns from NetworkInstance_TableConnectionPathAny the path struct for its child "address-family". +func (n *NetworkInstance_TableConnectionPathAny) AddressFamily() *NetworkInstance_TableConnection_AddressFamilyPathAny { + return &NetworkInstance_TableConnection_AddressFamilyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address-family"}, + []string{"config", "address-family"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_TableConnection the path struct for its child "default-import-policy". -func (n *NetworkInstance_TableConnection) DefaultImportPolicy() *NetworkInstance_TableConnection_DefaultImportPolicy { - return &NetworkInstance_TableConnection_DefaultImportPolicy{ +// DefaultImportPolicy returns from NetworkInstance_TableConnectionPath the path struct for its child "default-import-policy". +func (n *NetworkInstance_TableConnectionPath) DefaultImportPolicy() *NetworkInstance_TableConnection_DefaultImportPolicyPath { + return &NetworkInstance_TableConnection_DefaultImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DefaultImportPolicy returns from NetworkInstance_TableConnectionAny the path struct for its child "default-import-policy". -func (n *NetworkInstance_TableConnectionAny) DefaultImportPolicy() *NetworkInstance_TableConnection_DefaultImportPolicyAny { - return &NetworkInstance_TableConnection_DefaultImportPolicyAny{ +// DefaultImportPolicy returns from NetworkInstance_TableConnectionPathAny the path struct for its child "default-import-policy". +func (n *NetworkInstance_TableConnectionPathAny) DefaultImportPolicy() *NetworkInstance_TableConnection_DefaultImportPolicyPathAny { + return &NetworkInstance_TableConnection_DefaultImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "default-import-policy"}, + []string{"config", "default-import-policy"}, map[string]interface{}{}, n, ), } } -// DstProtocol returns from NetworkInstance_TableConnection the path struct for its child "dst-protocol". -func (n *NetworkInstance_TableConnection) DstProtocol() *NetworkInstance_TableConnection_DstProtocol { - return &NetworkInstance_TableConnection_DstProtocol{ +// DisableMetricPropagation returns from NetworkInstance_TableConnectionPath the path struct for its child "disable-metric-propagation". +func (n *NetworkInstance_TableConnectionPath) DisableMetricPropagation() *NetworkInstance_TableConnection_DisableMetricPropagationPath { + return &NetworkInstance_TableConnection_DisableMetricPropagationPath{ NodePath: ygot.NewNodePath( - []string{"state", "dst-protocol"}, + []string{"config", "disable-metric-propagation"}, map[string]interface{}{}, n, ), } } -// DstProtocol returns from NetworkInstance_TableConnectionAny the path struct for its child "dst-protocol". -func (n *NetworkInstance_TableConnectionAny) DstProtocol() *NetworkInstance_TableConnection_DstProtocolAny { - return &NetworkInstance_TableConnection_DstProtocolAny{ +// DisableMetricPropagation returns from NetworkInstance_TableConnectionPathAny the path struct for its child "disable-metric-propagation". +func (n *NetworkInstance_TableConnectionPathAny) DisableMetricPropagation() *NetworkInstance_TableConnection_DisableMetricPropagationPathAny { + return &NetworkInstance_TableConnection_DisableMetricPropagationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "dst-protocol"}, + []string{"config", "disable-metric-propagation"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_TableConnection the path struct for its child "import-policy". -func (n *NetworkInstance_TableConnection) ImportPolicy() *NetworkInstance_TableConnection_ImportPolicy { - return &NetworkInstance_TableConnection_ImportPolicy{ +// DstProtocol returns from NetworkInstance_TableConnectionPath the path struct for its child "dst-protocol". +func (n *NetworkInstance_TableConnectionPath) DstProtocol() *NetworkInstance_TableConnection_DstProtocolPath { + return &NetworkInstance_TableConnection_DstProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "dst-protocol"}, map[string]interface{}{}, n, ), } } -// ImportPolicy returns from NetworkInstance_TableConnectionAny the path struct for its child "import-policy". -func (n *NetworkInstance_TableConnectionAny) ImportPolicy() *NetworkInstance_TableConnection_ImportPolicyAny { - return &NetworkInstance_TableConnection_ImportPolicyAny{ +// DstProtocol returns from NetworkInstance_TableConnectionPathAny the path struct for its child "dst-protocol". +func (n *NetworkInstance_TableConnectionPathAny) DstProtocol() *NetworkInstance_TableConnection_DstProtocolPathAny { + return &NetworkInstance_TableConnection_DstProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "import-policy"}, + []string{"config", "dst-protocol"}, map[string]interface{}{}, n, ), } } -// SrcProtocol returns from NetworkInstance_TableConnection the path struct for its child "src-protocol". -func (n *NetworkInstance_TableConnection) SrcProtocol() *NetworkInstance_TableConnection_SrcProtocol { - return &NetworkInstance_TableConnection_SrcProtocol{ +// ImportPolicy returns from NetworkInstance_TableConnectionPath the path struct for its child "import-policy". +func (n *NetworkInstance_TableConnectionPath) ImportPolicy() *NetworkInstance_TableConnection_ImportPolicyPath { + return &NetworkInstance_TableConnection_ImportPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "src-protocol"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// SrcProtocol returns from NetworkInstance_TableConnectionAny the path struct for its child "src-protocol". -func (n *NetworkInstance_TableConnectionAny) SrcProtocol() *NetworkInstance_TableConnection_SrcProtocolAny { - return &NetworkInstance_TableConnection_SrcProtocolAny{ +// ImportPolicy returns from NetworkInstance_TableConnectionPathAny the path struct for its child "import-policy". +func (n *NetworkInstance_TableConnectionPathAny) ImportPolicy() *NetworkInstance_TableConnection_ImportPolicyPathAny { + return &NetworkInstance_TableConnection_ImportPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "src-protocol"}, + []string{"config", "import-policy"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Vlan represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan YANG schema element. -type NetworkInstance_Vlan struct { +// SrcProtocol returns from NetworkInstance_TableConnectionPath the path struct for its child "src-protocol". +func (n *NetworkInstance_TableConnectionPath) SrcProtocol() *NetworkInstance_TableConnection_SrcProtocolPath { + return &NetworkInstance_TableConnection_SrcProtocolPath{ + NodePath: ygot.NewNodePath( + []string{"config", "src-protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// SrcProtocol returns from NetworkInstance_TableConnectionPathAny the path struct for its child "src-protocol". +func (n *NetworkInstance_TableConnectionPathAny) SrcProtocol() *NetworkInstance_TableConnection_SrcProtocolPathAny { + return &NetworkInstance_TableConnection_SrcProtocolPathAny{ + NodePath: ygot.NewNodePath( + []string{"config", "src-protocol"}, + map[string]interface{}{}, + n, + ), + } +} + +// NetworkInstance_VlanPath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan YANG schema element. +type NetworkInstance_VlanPath struct { *ygot.NodePath } -// NetworkInstance_VlanAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan YANG schema element. -type NetworkInstance_VlanAny struct { +// NetworkInstance_VlanPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan YANG schema element. +type NetworkInstance_VlanPathAny struct { *ygot.NodePath } -// NetworkInstance_Vlan_Name represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/name YANG schema element. -type NetworkInstance_Vlan_Name struct { +// NetworkInstance_Vlan_NamePath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/name YANG schema element. +type NetworkInstance_Vlan_NamePath struct { *ygot.NodePath } -// NetworkInstance_Vlan_NameAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/name YANG schema element. -type NetworkInstance_Vlan_NameAny struct { +// NetworkInstance_Vlan_NamePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/name YANG schema element. +type NetworkInstance_Vlan_NamePathAny struct { *ygot.NodePath } -// NetworkInstance_Vlan_Status represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/status YANG schema element. -type NetworkInstance_Vlan_Status struct { +// NetworkInstance_Vlan_StatusPath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/status YANG schema element. +type NetworkInstance_Vlan_StatusPath struct { *ygot.NodePath } -// NetworkInstance_Vlan_StatusAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/status YANG schema element. -type NetworkInstance_Vlan_StatusAny struct { +// NetworkInstance_Vlan_StatusPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/status YANG schema element. +type NetworkInstance_Vlan_StatusPathAny struct { *ygot.NodePath } -// NetworkInstance_Vlan_VlanId represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/vlan-id YANG schema element. -type NetworkInstance_Vlan_VlanId struct { +// NetworkInstance_Vlan_VlanIdPath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/vlan-id YANG schema element. +type NetworkInstance_Vlan_VlanIdPath struct { *ygot.NodePath } -// NetworkInstance_Vlan_VlanIdAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/state/vlan-id YANG schema element. -type NetworkInstance_Vlan_VlanIdAny struct { +// NetworkInstance_Vlan_VlanIdPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/config/vlan-id YANG schema element. +type NetworkInstance_Vlan_VlanIdPathAny struct { *ygot.NodePath } -// Name returns from NetworkInstance_Vlan the path struct for its child "name". -func (n *NetworkInstance_Vlan) Name() *NetworkInstance_Vlan_Name { - return &NetworkInstance_Vlan_Name{ +// Name returns from NetworkInstance_VlanPath the path struct for its child "name". +func (n *NetworkInstance_VlanPath) Name() *NetworkInstance_Vlan_NamePath { + return &NetworkInstance_Vlan_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from NetworkInstance_VlanAny the path struct for its child "name". -func (n *NetworkInstance_VlanAny) Name() *NetworkInstance_Vlan_NameAny { - return &NetworkInstance_Vlan_NameAny{ +// Name returns from NetworkInstance_VlanPathAny the path struct for its child "name". +func (n *NetworkInstance_VlanPathAny) Name() *NetworkInstance_Vlan_NamePathAny { + return &NetworkInstance_Vlan_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Status returns from NetworkInstance_Vlan the path struct for its child "status". -func (n *NetworkInstance_Vlan) Status() *NetworkInstance_Vlan_Status { - return &NetworkInstance_Vlan_Status{ +// Status returns from NetworkInstance_VlanPath the path struct for its child "status". +func (n *NetworkInstance_VlanPath) Status() *NetworkInstance_Vlan_StatusPath { + return &NetworkInstance_Vlan_StatusPath{ NodePath: ygot.NewNodePath( - []string{"state", "status"}, + []string{"config", "status"}, map[string]interface{}{}, n, ), } } -// Status returns from NetworkInstance_VlanAny the path struct for its child "status". -func (n *NetworkInstance_VlanAny) Status() *NetworkInstance_Vlan_StatusAny { - return &NetworkInstance_Vlan_StatusAny{ +// Status returns from NetworkInstance_VlanPathAny the path struct for its child "status". +func (n *NetworkInstance_VlanPathAny) Status() *NetworkInstance_Vlan_StatusPathAny { + return &NetworkInstance_Vlan_StatusPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "status"}, + []string{"config", "status"}, map[string]interface{}{}, n, ), } } -// VlanId returns from NetworkInstance_Vlan the path struct for its child "vlan-id". -func (n *NetworkInstance_Vlan) VlanId() *NetworkInstance_Vlan_VlanId { - return &NetworkInstance_Vlan_VlanId{ +// VlanId returns from NetworkInstance_VlanPath the path struct for its child "vlan-id". +func (n *NetworkInstance_VlanPath) VlanId() *NetworkInstance_Vlan_VlanIdPath { + return &NetworkInstance_Vlan_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from NetworkInstance_VlanAny the path struct for its child "vlan-id". -func (n *NetworkInstance_VlanAny) VlanId() *NetworkInstance_Vlan_VlanIdAny { - return &NetworkInstance_Vlan_VlanIdAny{ +// VlanId returns from NetworkInstance_VlanPathAny the path struct for its child "vlan-id". +func (n *NetworkInstance_VlanPathAny) VlanId() *NetworkInstance_Vlan_VlanIdPathAny { + return &NetworkInstance_Vlan_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// NetworkInstance_Vlan_Member represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member YANG schema element. -type NetworkInstance_Vlan_Member struct { +// NetworkInstance_Vlan_MemberPath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member YANG schema element. +type NetworkInstance_Vlan_MemberPath struct { *ygot.NodePath } -// NetworkInstance_Vlan_MemberAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member YANG schema element. -type NetworkInstance_Vlan_MemberAny struct { +// NetworkInstance_Vlan_MemberPathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member YANG schema element. +type NetworkInstance_Vlan_MemberPathAny struct { *ygot.NodePath } -// NetworkInstance_Vlan_Member_Interface represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member/state/interface YANG schema element. -type NetworkInstance_Vlan_Member_Interface struct { +// NetworkInstance_Vlan_Member_InterfacePath represents the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member/state/interface YANG schema element. +type NetworkInstance_Vlan_Member_InterfacePath struct { *ygot.NodePath } -// NetworkInstance_Vlan_Member_InterfaceAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member/state/interface YANG schema element. -type NetworkInstance_Vlan_Member_InterfaceAny struct { +// NetworkInstance_Vlan_Member_InterfacePathAny represents the wildcard version of the /openconfig-network-instance/network-instances/network-instance/vlans/vlan/members/member/state/interface YANG schema element. +type NetworkInstance_Vlan_Member_InterfacePathAny struct { *ygot.NodePath } -// Interface returns from NetworkInstance_Vlan_Member the path struct for its child "interface". -func (n *NetworkInstance_Vlan_Member) Interface() *NetworkInstance_Vlan_Member_Interface { - return &NetworkInstance_Vlan_Member_Interface{ +// Interface returns from NetworkInstance_Vlan_MemberPath the path struct for its child "interface". +func (n *NetworkInstance_Vlan_MemberPath) Interface() *NetworkInstance_Vlan_Member_InterfacePath { + return &NetworkInstance_Vlan_Member_InterfacePath{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -150614,9 +150860,9 @@ func (n *NetworkInstance_Vlan_Member) Interface() *NetworkInstance_Vlan_Member_I } } -// Interface returns from NetworkInstance_Vlan_MemberAny the path struct for its child "interface". -func (n *NetworkInstance_Vlan_MemberAny) Interface() *NetworkInstance_Vlan_Member_InterfaceAny { - return &NetworkInstance_Vlan_Member_InterfaceAny{ +// Interface returns from NetworkInstance_Vlan_MemberPathAny the path struct for its child "interface". +func (n *NetworkInstance_Vlan_MemberPathAny) Interface() *NetworkInstance_Vlan_Member_InterfacePathAny { + return &NetworkInstance_Vlan_Member_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"state", "interface"}, map[string]interface{}{}, @@ -150625,19 +150871,19 @@ func (n *NetworkInstance_Vlan_MemberAny) Interface() *NetworkInstance_Vlan_Membe } } -// OpticalAmplifier represents the /openconfig-optical-amplifier/optical-amplifier YANG schema element. -type OpticalAmplifier struct { +// OpticalAmplifierPath represents the /openconfig-optical-amplifier/optical-amplifier YANG schema element. +type OpticalAmplifierPath struct { *ygot.NodePath } -// OpticalAmplifierAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier YANG schema element. -type OpticalAmplifierAny struct { +// OpticalAmplifierPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier YANG schema element. +type OpticalAmplifierPathAny struct { *ygot.NodePath } -// AmplifierAny returns from OpticalAmplifier the path struct for its child "amplifier". -func (n *OpticalAmplifier) AmplifierAny() *OpticalAmplifier_AmplifierAny { - return &OpticalAmplifier_AmplifierAny{ +// AmplifierAny returns from OpticalAmplifierPath the path struct for its child "amplifier". +func (n *OpticalAmplifierPath) AmplifierAny() *OpticalAmplifier_AmplifierPathAny { + return &OpticalAmplifier_AmplifierPathAny{ NodePath: ygot.NewNodePath( []string{"amplifiers", "amplifier"}, map[string]interface{}{"name": "*"}, @@ -150646,9 +150892,9 @@ func (n *OpticalAmplifier) AmplifierAny() *OpticalAmplifier_AmplifierAny { } } -// AmplifierAny returns from OpticalAmplifierAny the path struct for its child "amplifier". -func (n *OpticalAmplifierAny) AmplifierAny() *OpticalAmplifier_AmplifierAny { - return &OpticalAmplifier_AmplifierAny{ +// AmplifierAny returns from OpticalAmplifierPathAny the path struct for its child "amplifier". +func (n *OpticalAmplifierPathAny) AmplifierAny() *OpticalAmplifier_AmplifierPathAny { + return &OpticalAmplifier_AmplifierPathAny{ NodePath: ygot.NewNodePath( []string{"amplifiers", "amplifier"}, map[string]interface{}{"name": "*"}, @@ -150657,9 +150903,9 @@ func (n *OpticalAmplifierAny) AmplifierAny() *OpticalAmplifier_AmplifierAny { } } -// Amplifier returns from OpticalAmplifier the path struct for its child "amplifier". -func (n *OpticalAmplifier) Amplifier(Name string) *OpticalAmplifier_Amplifier { - return &OpticalAmplifier_Amplifier{ +// Amplifier returns from OpticalAmplifierPath the path struct for its child "amplifier". +func (n *OpticalAmplifierPath) Amplifier(Name string) *OpticalAmplifier_AmplifierPath { + return &OpticalAmplifier_AmplifierPath{ NodePath: ygot.NewNodePath( []string{"amplifiers", "amplifier"}, map[string]interface{}{"name": Name}, @@ -150668,9 +150914,9 @@ func (n *OpticalAmplifier) Amplifier(Name string) *OpticalAmplifier_Amplifier { } } -// Amplifier returns from OpticalAmplifierAny the path struct for its child "amplifier". -func (n *OpticalAmplifierAny) Amplifier(Name string) *OpticalAmplifier_AmplifierAny { - return &OpticalAmplifier_AmplifierAny{ +// Amplifier returns from OpticalAmplifierPathAny the path struct for its child "amplifier". +func (n *OpticalAmplifierPathAny) Amplifier(Name string) *OpticalAmplifier_AmplifierPathAny { + return &OpticalAmplifier_AmplifierPathAny{ NodePath: ygot.NewNodePath( []string{"amplifiers", "amplifier"}, map[string]interface{}{"name": Name}, @@ -150679,9 +150925,9 @@ func (n *OpticalAmplifierAny) Amplifier(Name string) *OpticalAmplifier_Amplifier } } -// SupervisoryChannelAny returns from OpticalAmplifier the path struct for its child "supervisory-channel". -func (n *OpticalAmplifier) SupervisoryChannelAny() *OpticalAmplifier_SupervisoryChannelAny { - return &OpticalAmplifier_SupervisoryChannelAny{ +// SupervisoryChannelAny returns from OpticalAmplifierPath the path struct for its child "supervisory-channel". +func (n *OpticalAmplifierPath) SupervisoryChannelAny() *OpticalAmplifier_SupervisoryChannelPathAny { + return &OpticalAmplifier_SupervisoryChannelPathAny{ NodePath: ygot.NewNodePath( []string{"supervisory-channels", "supervisory-channel"}, map[string]interface{}{"interface": "*"}, @@ -150690,9 +150936,9 @@ func (n *OpticalAmplifier) SupervisoryChannelAny() *OpticalAmplifier_Supervisory } } -// SupervisoryChannelAny returns from OpticalAmplifierAny the path struct for its child "supervisory-channel". -func (n *OpticalAmplifierAny) SupervisoryChannelAny() *OpticalAmplifier_SupervisoryChannelAny { - return &OpticalAmplifier_SupervisoryChannelAny{ +// SupervisoryChannelAny returns from OpticalAmplifierPathAny the path struct for its child "supervisory-channel". +func (n *OpticalAmplifierPathAny) SupervisoryChannelAny() *OpticalAmplifier_SupervisoryChannelPathAny { + return &OpticalAmplifier_SupervisoryChannelPathAny{ NodePath: ygot.NewNodePath( []string{"supervisory-channels", "supervisory-channel"}, map[string]interface{}{"interface": "*"}, @@ -150701,9 +150947,9 @@ func (n *OpticalAmplifierAny) SupervisoryChannelAny() *OpticalAmplifier_Supervis } } -// SupervisoryChannel returns from OpticalAmplifier the path struct for its child "supervisory-channel". -func (n *OpticalAmplifier) SupervisoryChannel(Interface string) *OpticalAmplifier_SupervisoryChannel { - return &OpticalAmplifier_SupervisoryChannel{ +// SupervisoryChannel returns from OpticalAmplifierPath the path struct for its child "supervisory-channel". +func (n *OpticalAmplifierPath) SupervisoryChannel(Interface string) *OpticalAmplifier_SupervisoryChannelPath { + return &OpticalAmplifier_SupervisoryChannelPath{ NodePath: ygot.NewNodePath( []string{"supervisory-channels", "supervisory-channel"}, map[string]interface{}{"interface": Interface}, @@ -150712,9 +150958,9 @@ func (n *OpticalAmplifier) SupervisoryChannel(Interface string) *OpticalAmplifie } } -// SupervisoryChannel returns from OpticalAmplifierAny the path struct for its child "supervisory-channel". -func (n *OpticalAmplifierAny) SupervisoryChannel(Interface string) *OpticalAmplifier_SupervisoryChannelAny { - return &OpticalAmplifier_SupervisoryChannelAny{ +// SupervisoryChannel returns from OpticalAmplifierPathAny the path struct for its child "supervisory-channel". +func (n *OpticalAmplifierPathAny) SupervisoryChannel(Interface string) *OpticalAmplifier_SupervisoryChannelPathAny { + return &OpticalAmplifier_SupervisoryChannelPathAny{ NodePath: ygot.NewNodePath( []string{"supervisory-channels", "supervisory-channel"}, map[string]interface{}{"interface": Interface}, @@ -150723,169 +150969,169 @@ func (n *OpticalAmplifierAny) SupervisoryChannel(Interface string) *OpticalAmpli } } -// OpticalAmplifier_Amplifier represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier YANG schema element. -type OpticalAmplifier_Amplifier struct { +// OpticalAmplifier_AmplifierPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier YANG schema element. +type OpticalAmplifier_AmplifierPath struct { *ygot.NodePath } -// OpticalAmplifier_AmplifierAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier YANG schema element. -type OpticalAmplifier_AmplifierAny struct { +// OpticalAmplifier_AmplifierPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier YANG schema element. +type OpticalAmplifier_AmplifierPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_AmpMode represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/amp-mode YANG schema element. -type OpticalAmplifier_Amplifier_AmpMode struct { +// OpticalAmplifier_Amplifier_AmpModePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/amp-mode YANG schema element. +type OpticalAmplifier_Amplifier_AmpModePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_AmpModeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/amp-mode YANG schema element. -type OpticalAmplifier_Amplifier_AmpModeAny struct { +// OpticalAmplifier_Amplifier_AmpModePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/amp-mode YANG schema element. +type OpticalAmplifier_Amplifier_AmpModePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_Component represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/component YANG schema element. -type OpticalAmplifier_Amplifier_Component struct { +// OpticalAmplifier_Amplifier_ComponentPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/component YANG schema element. +type OpticalAmplifier_Amplifier_ComponentPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ComponentAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/component YANG schema element. -type OpticalAmplifier_Amplifier_ComponentAny struct { +// OpticalAmplifier_Amplifier_ComponentPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/component YANG schema element. +type OpticalAmplifier_Amplifier_ComponentPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_EgressPort represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/egress-port YANG schema element. -type OpticalAmplifier_Amplifier_EgressPort struct { +// OpticalAmplifier_Amplifier_EgressPortPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/egress-port YANG schema element. +type OpticalAmplifier_Amplifier_EgressPortPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_EgressPortAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/egress-port YANG schema element. -type OpticalAmplifier_Amplifier_EgressPortAny struct { +// OpticalAmplifier_Amplifier_EgressPortPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/egress-port YANG schema element. +type OpticalAmplifier_Amplifier_EgressPortPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_Enabled represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/enabled YANG schema element. -type OpticalAmplifier_Amplifier_Enabled struct { +// OpticalAmplifier_Amplifier_EnabledPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/enabled YANG schema element. +type OpticalAmplifier_Amplifier_EnabledPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_EnabledAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/enabled YANG schema element. -type OpticalAmplifier_Amplifier_EnabledAny struct { +// OpticalAmplifier_Amplifier_EnabledPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/enabled YANG schema element. +type OpticalAmplifier_Amplifier_EnabledPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_FiberTypeProfile represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/fiber-type-profile YANG schema element. -type OpticalAmplifier_Amplifier_FiberTypeProfile struct { +// OpticalAmplifier_Amplifier_FiberTypeProfilePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/fiber-type-profile YANG schema element. +type OpticalAmplifier_Amplifier_FiberTypeProfilePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_FiberTypeProfileAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/fiber-type-profile YANG schema element. -type OpticalAmplifier_Amplifier_FiberTypeProfileAny struct { +// OpticalAmplifier_Amplifier_FiberTypeProfilePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/fiber-type-profile YANG schema element. +type OpticalAmplifier_Amplifier_FiberTypeProfilePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_GainRange represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/gain-range YANG schema element. -type OpticalAmplifier_Amplifier_GainRange struct { +// OpticalAmplifier_Amplifier_GainRangePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/gain-range YANG schema element. +type OpticalAmplifier_Amplifier_GainRangePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_GainRangeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/gain-range YANG schema element. -type OpticalAmplifier_Amplifier_GainRangeAny struct { +// OpticalAmplifier_Amplifier_GainRangePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/gain-range YANG schema element. +type OpticalAmplifier_Amplifier_GainRangePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_IngressPort represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/ingress-port YANG schema element. -type OpticalAmplifier_Amplifier_IngressPort struct { +// OpticalAmplifier_Amplifier_IngressPortPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/ingress-port YANG schema element. +type OpticalAmplifier_Amplifier_IngressPortPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_IngressPortAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/ingress-port YANG schema element. -type OpticalAmplifier_Amplifier_IngressPortAny struct { +// OpticalAmplifier_Amplifier_IngressPortPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/ingress-port YANG schema element. +type OpticalAmplifier_Amplifier_IngressPortPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MaxGain represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/max-gain YANG schema element. -type OpticalAmplifier_Amplifier_MaxGain struct { +// OpticalAmplifier_Amplifier_MaxGainPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/max-gain YANG schema element. +type OpticalAmplifier_Amplifier_MaxGainPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MaxGainAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/max-gain YANG schema element. -type OpticalAmplifier_Amplifier_MaxGainAny struct { +// OpticalAmplifier_Amplifier_MaxGainPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/max-gain YANG schema element. +type OpticalAmplifier_Amplifier_MaxGainPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MaxOutputPower represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/max-output-power YANG schema element. -type OpticalAmplifier_Amplifier_MaxOutputPower struct { +// OpticalAmplifier_Amplifier_MaxOutputPowerPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/max-output-power YANG schema element. +type OpticalAmplifier_Amplifier_MaxOutputPowerPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MaxOutputPowerAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/max-output-power YANG schema element. -type OpticalAmplifier_Amplifier_MaxOutputPowerAny struct { +// OpticalAmplifier_Amplifier_MaxOutputPowerPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/max-output-power YANG schema element. +type OpticalAmplifier_Amplifier_MaxOutputPowerPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MinGain represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/min-gain YANG schema element. -type OpticalAmplifier_Amplifier_MinGain struct { +// OpticalAmplifier_Amplifier_MinGainPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/min-gain YANG schema element. +type OpticalAmplifier_Amplifier_MinGainPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_MinGainAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/min-gain YANG schema element. -type OpticalAmplifier_Amplifier_MinGainAny struct { +// OpticalAmplifier_Amplifier_MinGainPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/min-gain YANG schema element. +type OpticalAmplifier_Amplifier_MinGainPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_Name represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/name YANG schema element. -type OpticalAmplifier_Amplifier_Name struct { +// OpticalAmplifier_Amplifier_NamePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/name YANG schema element. +type OpticalAmplifier_Amplifier_NamePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_NameAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/name YANG schema element. -type OpticalAmplifier_Amplifier_NameAny struct { +// OpticalAmplifier_Amplifier_NamePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/name YANG schema element. +type OpticalAmplifier_Amplifier_NamePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetGain represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-gain YANG schema element. -type OpticalAmplifier_Amplifier_TargetGain struct { +// OpticalAmplifier_Amplifier_TargetGainPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-gain YANG schema element. +type OpticalAmplifier_Amplifier_TargetGainPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetGainAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-gain YANG schema element. -type OpticalAmplifier_Amplifier_TargetGainAny struct { +// OpticalAmplifier_Amplifier_TargetGainPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-gain YANG schema element. +type OpticalAmplifier_Amplifier_TargetGainPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetGainTilt represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-gain-tilt YANG schema element. -type OpticalAmplifier_Amplifier_TargetGainTilt struct { +// OpticalAmplifier_Amplifier_TargetGainTiltPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-gain-tilt YANG schema element. +type OpticalAmplifier_Amplifier_TargetGainTiltPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetGainTiltAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-gain-tilt YANG schema element. -type OpticalAmplifier_Amplifier_TargetGainTiltAny struct { +// OpticalAmplifier_Amplifier_TargetGainTiltPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-gain-tilt YANG schema element. +type OpticalAmplifier_Amplifier_TargetGainTiltPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetOutputPower represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-output-power YANG schema element. -type OpticalAmplifier_Amplifier_TargetOutputPower struct { +// OpticalAmplifier_Amplifier_TargetOutputPowerPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-output-power YANG schema element. +type OpticalAmplifier_Amplifier_TargetOutputPowerPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TargetOutputPowerAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/target-output-power YANG schema element. -type OpticalAmplifier_Amplifier_TargetOutputPowerAny struct { +// OpticalAmplifier_Amplifier_TargetOutputPowerPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/target-output-power YANG schema element. +type OpticalAmplifier_Amplifier_TargetOutputPowerPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_Type represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/type YANG schema element. -type OpticalAmplifier_Amplifier_Type struct { +// OpticalAmplifier_Amplifier_TypePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/type YANG schema element. +type OpticalAmplifier_Amplifier_TypePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_TypeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/type YANG schema element. -type OpticalAmplifier_Amplifier_TypeAny struct { +// OpticalAmplifier_Amplifier_TypePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/config/type YANG schema element. +type OpticalAmplifier_Amplifier_TypePathAny struct { *ygot.NodePath } -// ActualGain returns from OpticalAmplifier_Amplifier the path struct for its child "actual-gain". -func (n *OpticalAmplifier_Amplifier) ActualGain() *OpticalAmplifier_Amplifier_ActualGain { - return &OpticalAmplifier_Amplifier_ActualGain{ +// ActualGain returns from OpticalAmplifier_AmplifierPath the path struct for its child "actual-gain". +func (n *OpticalAmplifier_AmplifierPath) ActualGain() *OpticalAmplifier_Amplifier_ActualGainPath { + return &OpticalAmplifier_Amplifier_ActualGainPath{ NodePath: ygot.NewNodePath( []string{"state", "actual-gain"}, map[string]interface{}{}, @@ -150894,9 +151140,9 @@ func (n *OpticalAmplifier_Amplifier) ActualGain() *OpticalAmplifier_Amplifier_Ac } } -// ActualGain returns from OpticalAmplifier_AmplifierAny the path struct for its child "actual-gain". -func (n *OpticalAmplifier_AmplifierAny) ActualGain() *OpticalAmplifier_Amplifier_ActualGainAny { - return &OpticalAmplifier_Amplifier_ActualGainAny{ +// ActualGain returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "actual-gain". +func (n *OpticalAmplifier_AmplifierPathAny) ActualGain() *OpticalAmplifier_Amplifier_ActualGainPathAny { + return &OpticalAmplifier_Amplifier_ActualGainPathAny{ NodePath: ygot.NewNodePath( []string{"state", "actual-gain"}, map[string]interface{}{}, @@ -150905,9 +151151,9 @@ func (n *OpticalAmplifier_AmplifierAny) ActualGain() *OpticalAmplifier_Amplifier } } -// ActualGainTilt returns from OpticalAmplifier_Amplifier the path struct for its child "actual-gain-tilt". -func (n *OpticalAmplifier_Amplifier) ActualGainTilt() *OpticalAmplifier_Amplifier_ActualGainTilt { - return &OpticalAmplifier_Amplifier_ActualGainTilt{ +// ActualGainTilt returns from OpticalAmplifier_AmplifierPath the path struct for its child "actual-gain-tilt". +func (n *OpticalAmplifier_AmplifierPath) ActualGainTilt() *OpticalAmplifier_Amplifier_ActualGainTiltPath { + return &OpticalAmplifier_Amplifier_ActualGainTiltPath{ NodePath: ygot.NewNodePath( []string{"state", "actual-gain-tilt"}, map[string]interface{}{}, @@ -150916,9 +151162,9 @@ func (n *OpticalAmplifier_Amplifier) ActualGainTilt() *OpticalAmplifier_Amplifie } } -// ActualGainTilt returns from OpticalAmplifier_AmplifierAny the path struct for its child "actual-gain-tilt". -func (n *OpticalAmplifier_AmplifierAny) ActualGainTilt() *OpticalAmplifier_Amplifier_ActualGainTiltAny { - return &OpticalAmplifier_Amplifier_ActualGainTiltAny{ +// ActualGainTilt returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "actual-gain-tilt". +func (n *OpticalAmplifier_AmplifierPathAny) ActualGainTilt() *OpticalAmplifier_Amplifier_ActualGainTiltPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTiltPathAny{ NodePath: ygot.NewNodePath( []string{"state", "actual-gain-tilt"}, map[string]interface{}{}, @@ -150927,31 +151173,31 @@ func (n *OpticalAmplifier_AmplifierAny) ActualGainTilt() *OpticalAmplifier_Ampli } } -// AmpMode returns from OpticalAmplifier_Amplifier the path struct for its child "amp-mode". -func (n *OpticalAmplifier_Amplifier) AmpMode() *OpticalAmplifier_Amplifier_AmpMode { - return &OpticalAmplifier_Amplifier_AmpMode{ +// AmpMode returns from OpticalAmplifier_AmplifierPath the path struct for its child "amp-mode". +func (n *OpticalAmplifier_AmplifierPath) AmpMode() *OpticalAmplifier_Amplifier_AmpModePath { + return &OpticalAmplifier_Amplifier_AmpModePath{ NodePath: ygot.NewNodePath( - []string{"state", "amp-mode"}, + []string{"config", "amp-mode"}, map[string]interface{}{}, n, ), } } -// AmpMode returns from OpticalAmplifier_AmplifierAny the path struct for its child "amp-mode". -func (n *OpticalAmplifier_AmplifierAny) AmpMode() *OpticalAmplifier_Amplifier_AmpModeAny { - return &OpticalAmplifier_Amplifier_AmpModeAny{ +// AmpMode returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "amp-mode". +func (n *OpticalAmplifier_AmplifierPathAny) AmpMode() *OpticalAmplifier_Amplifier_AmpModePathAny { + return &OpticalAmplifier_Amplifier_AmpModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "amp-mode"}, + []string{"config", "amp-mode"}, map[string]interface{}{}, n, ), } } -// Component returns from OpticalAmplifier_Amplifier the path struct for its child "component". -func (n *OpticalAmplifier_Amplifier) Component() *OpticalAmplifier_Amplifier_Component { - return &OpticalAmplifier_Amplifier_Component{ +// Component returns from OpticalAmplifier_AmplifierPath the path struct for its child "component". +func (n *OpticalAmplifier_AmplifierPath) Component() *OpticalAmplifier_Amplifier_ComponentPath { + return &OpticalAmplifier_Amplifier_ComponentPath{ NodePath: ygot.NewNodePath( []string{"state", "component"}, map[string]interface{}{}, @@ -150960,9 +151206,9 @@ func (n *OpticalAmplifier_Amplifier) Component() *OpticalAmplifier_Amplifier_Com } } -// Component returns from OpticalAmplifier_AmplifierAny the path struct for its child "component". -func (n *OpticalAmplifier_AmplifierAny) Component() *OpticalAmplifier_Amplifier_ComponentAny { - return &OpticalAmplifier_Amplifier_ComponentAny{ +// Component returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "component". +func (n *OpticalAmplifier_AmplifierPathAny) Component() *OpticalAmplifier_Amplifier_ComponentPathAny { + return &OpticalAmplifier_Amplifier_ComponentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "component"}, map[string]interface{}{}, @@ -150971,9 +151217,9 @@ func (n *OpticalAmplifier_AmplifierAny) Component() *OpticalAmplifier_Amplifier_ } } -// EgressPort returns from OpticalAmplifier_Amplifier the path struct for its child "egress-port". -func (n *OpticalAmplifier_Amplifier) EgressPort() *OpticalAmplifier_Amplifier_EgressPort { - return &OpticalAmplifier_Amplifier_EgressPort{ +// EgressPort returns from OpticalAmplifier_AmplifierPath the path struct for its child "egress-port". +func (n *OpticalAmplifier_AmplifierPath) EgressPort() *OpticalAmplifier_Amplifier_EgressPortPath { + return &OpticalAmplifier_Amplifier_EgressPortPath{ NodePath: ygot.NewNodePath( []string{"state", "egress-port"}, map[string]interface{}{}, @@ -150982,9 +151228,9 @@ func (n *OpticalAmplifier_Amplifier) EgressPort() *OpticalAmplifier_Amplifier_Eg } } -// EgressPort returns from OpticalAmplifier_AmplifierAny the path struct for its child "egress-port". -func (n *OpticalAmplifier_AmplifierAny) EgressPort() *OpticalAmplifier_Amplifier_EgressPortAny { - return &OpticalAmplifier_Amplifier_EgressPortAny{ +// EgressPort returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "egress-port". +func (n *OpticalAmplifier_AmplifierPathAny) EgressPort() *OpticalAmplifier_Amplifier_EgressPortPathAny { + return &OpticalAmplifier_Amplifier_EgressPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "egress-port"}, map[string]interface{}{}, @@ -150993,75 +151239,75 @@ func (n *OpticalAmplifier_AmplifierAny) EgressPort() *OpticalAmplifier_Amplifier } } -// Enabled returns from OpticalAmplifier_Amplifier the path struct for its child "enabled". -func (n *OpticalAmplifier_Amplifier) Enabled() *OpticalAmplifier_Amplifier_Enabled { - return &OpticalAmplifier_Amplifier_Enabled{ +// Enabled returns from OpticalAmplifier_AmplifierPath the path struct for its child "enabled". +func (n *OpticalAmplifier_AmplifierPath) Enabled() *OpticalAmplifier_Amplifier_EnabledPath { + return &OpticalAmplifier_Amplifier_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from OpticalAmplifier_AmplifierAny the path struct for its child "enabled". -func (n *OpticalAmplifier_AmplifierAny) Enabled() *OpticalAmplifier_Amplifier_EnabledAny { - return &OpticalAmplifier_Amplifier_EnabledAny{ +// Enabled returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "enabled". +func (n *OpticalAmplifier_AmplifierPathAny) Enabled() *OpticalAmplifier_Amplifier_EnabledPathAny { + return &OpticalAmplifier_Amplifier_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// FiberTypeProfile returns from OpticalAmplifier_Amplifier the path struct for its child "fiber-type-profile". -func (n *OpticalAmplifier_Amplifier) FiberTypeProfile() *OpticalAmplifier_Amplifier_FiberTypeProfile { - return &OpticalAmplifier_Amplifier_FiberTypeProfile{ +// FiberTypeProfile returns from OpticalAmplifier_AmplifierPath the path struct for its child "fiber-type-profile". +func (n *OpticalAmplifier_AmplifierPath) FiberTypeProfile() *OpticalAmplifier_Amplifier_FiberTypeProfilePath { + return &OpticalAmplifier_Amplifier_FiberTypeProfilePath{ NodePath: ygot.NewNodePath( - []string{"state", "fiber-type-profile"}, + []string{"config", "fiber-type-profile"}, map[string]interface{}{}, n, ), } } -// FiberTypeProfile returns from OpticalAmplifier_AmplifierAny the path struct for its child "fiber-type-profile". -func (n *OpticalAmplifier_AmplifierAny) FiberTypeProfile() *OpticalAmplifier_Amplifier_FiberTypeProfileAny { - return &OpticalAmplifier_Amplifier_FiberTypeProfileAny{ +// FiberTypeProfile returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "fiber-type-profile". +func (n *OpticalAmplifier_AmplifierPathAny) FiberTypeProfile() *OpticalAmplifier_Amplifier_FiberTypeProfilePathAny { + return &OpticalAmplifier_Amplifier_FiberTypeProfilePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "fiber-type-profile"}, + []string{"config", "fiber-type-profile"}, map[string]interface{}{}, n, ), } } -// GainRange returns from OpticalAmplifier_Amplifier the path struct for its child "gain-range". -func (n *OpticalAmplifier_Amplifier) GainRange() *OpticalAmplifier_Amplifier_GainRange { - return &OpticalAmplifier_Amplifier_GainRange{ +// GainRange returns from OpticalAmplifier_AmplifierPath the path struct for its child "gain-range". +func (n *OpticalAmplifier_AmplifierPath) GainRange() *OpticalAmplifier_Amplifier_GainRangePath { + return &OpticalAmplifier_Amplifier_GainRangePath{ NodePath: ygot.NewNodePath( - []string{"state", "gain-range"}, + []string{"config", "gain-range"}, map[string]interface{}{}, n, ), } } -// GainRange returns from OpticalAmplifier_AmplifierAny the path struct for its child "gain-range". -func (n *OpticalAmplifier_AmplifierAny) GainRange() *OpticalAmplifier_Amplifier_GainRangeAny { - return &OpticalAmplifier_Amplifier_GainRangeAny{ +// GainRange returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "gain-range". +func (n *OpticalAmplifier_AmplifierPathAny) GainRange() *OpticalAmplifier_Amplifier_GainRangePathAny { + return &OpticalAmplifier_Amplifier_GainRangePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "gain-range"}, + []string{"config", "gain-range"}, map[string]interface{}{}, n, ), } } -// IngressPort returns from OpticalAmplifier_Amplifier the path struct for its child "ingress-port". -func (n *OpticalAmplifier_Amplifier) IngressPort() *OpticalAmplifier_Amplifier_IngressPort { - return &OpticalAmplifier_Amplifier_IngressPort{ +// IngressPort returns from OpticalAmplifier_AmplifierPath the path struct for its child "ingress-port". +func (n *OpticalAmplifier_AmplifierPath) IngressPort() *OpticalAmplifier_Amplifier_IngressPortPath { + return &OpticalAmplifier_Amplifier_IngressPortPath{ NodePath: ygot.NewNodePath( []string{"state", "ingress-port"}, map[string]interface{}{}, @@ -151070,9 +151316,9 @@ func (n *OpticalAmplifier_Amplifier) IngressPort() *OpticalAmplifier_Amplifier_I } } -// IngressPort returns from OpticalAmplifier_AmplifierAny the path struct for its child "ingress-port". -func (n *OpticalAmplifier_AmplifierAny) IngressPort() *OpticalAmplifier_Amplifier_IngressPortAny { - return &OpticalAmplifier_Amplifier_IngressPortAny{ +// IngressPort returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "ingress-port". +func (n *OpticalAmplifier_AmplifierPathAny) IngressPort() *OpticalAmplifier_Amplifier_IngressPortPathAny { + return &OpticalAmplifier_Amplifier_IngressPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ingress-port"}, map[string]interface{}{}, @@ -151081,9 +151327,9 @@ func (n *OpticalAmplifier_AmplifierAny) IngressPort() *OpticalAmplifier_Amplifie } } -// InputPowerCBand returns from OpticalAmplifier_Amplifier the path struct for its child "input-power-c-band". -func (n *OpticalAmplifier_Amplifier) InputPowerCBand() *OpticalAmplifier_Amplifier_InputPowerCBand { - return &OpticalAmplifier_Amplifier_InputPowerCBand{ +// InputPowerCBand returns from OpticalAmplifier_AmplifierPath the path struct for its child "input-power-c-band". +func (n *OpticalAmplifier_AmplifierPath) InputPowerCBand() *OpticalAmplifier_Amplifier_InputPowerCBandPath { + return &OpticalAmplifier_Amplifier_InputPowerCBandPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power-c-band"}, map[string]interface{}{}, @@ -151092,9 +151338,9 @@ func (n *OpticalAmplifier_Amplifier) InputPowerCBand() *OpticalAmplifier_Amplifi } } -// InputPowerCBand returns from OpticalAmplifier_AmplifierAny the path struct for its child "input-power-c-band". -func (n *OpticalAmplifier_AmplifierAny) InputPowerCBand() *OpticalAmplifier_Amplifier_InputPowerCBandAny { - return &OpticalAmplifier_Amplifier_InputPowerCBandAny{ +// InputPowerCBand returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "input-power-c-band". +func (n *OpticalAmplifier_AmplifierPathAny) InputPowerCBand() *OpticalAmplifier_Amplifier_InputPowerCBandPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBandPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power-c-band"}, map[string]interface{}{}, @@ -151103,9 +151349,9 @@ func (n *OpticalAmplifier_AmplifierAny) InputPowerCBand() *OpticalAmplifier_Ampl } } -// InputPowerLBand returns from OpticalAmplifier_Amplifier the path struct for its child "input-power-l-band". -func (n *OpticalAmplifier_Amplifier) InputPowerLBand() *OpticalAmplifier_Amplifier_InputPowerLBand { - return &OpticalAmplifier_Amplifier_InputPowerLBand{ +// InputPowerLBand returns from OpticalAmplifier_AmplifierPath the path struct for its child "input-power-l-band". +func (n *OpticalAmplifier_AmplifierPath) InputPowerLBand() *OpticalAmplifier_Amplifier_InputPowerLBandPath { + return &OpticalAmplifier_Amplifier_InputPowerLBandPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power-l-band"}, map[string]interface{}{}, @@ -151114,9 +151360,9 @@ func (n *OpticalAmplifier_Amplifier) InputPowerLBand() *OpticalAmplifier_Amplifi } } -// InputPowerLBand returns from OpticalAmplifier_AmplifierAny the path struct for its child "input-power-l-band". -func (n *OpticalAmplifier_AmplifierAny) InputPowerLBand() *OpticalAmplifier_Amplifier_InputPowerLBandAny { - return &OpticalAmplifier_Amplifier_InputPowerLBandAny{ +// InputPowerLBand returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "input-power-l-band". +func (n *OpticalAmplifier_AmplifierPathAny) InputPowerLBand() *OpticalAmplifier_Amplifier_InputPowerLBandPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBandPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power-l-band"}, map[string]interface{}{}, @@ -151125,9 +151371,9 @@ func (n *OpticalAmplifier_AmplifierAny) InputPowerLBand() *OpticalAmplifier_Ampl } } -// InputPowerTotal returns from OpticalAmplifier_Amplifier the path struct for its child "input-power-total". -func (n *OpticalAmplifier_Amplifier) InputPowerTotal() *OpticalAmplifier_Amplifier_InputPowerTotal { - return &OpticalAmplifier_Amplifier_InputPowerTotal{ +// InputPowerTotal returns from OpticalAmplifier_AmplifierPath the path struct for its child "input-power-total". +func (n *OpticalAmplifier_AmplifierPath) InputPowerTotal() *OpticalAmplifier_Amplifier_InputPowerTotalPath { + return &OpticalAmplifier_Amplifier_InputPowerTotalPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power-total"}, map[string]interface{}{}, @@ -151136,9 +151382,9 @@ func (n *OpticalAmplifier_Amplifier) InputPowerTotal() *OpticalAmplifier_Amplifi } } -// InputPowerTotal returns from OpticalAmplifier_AmplifierAny the path struct for its child "input-power-total". -func (n *OpticalAmplifier_AmplifierAny) InputPowerTotal() *OpticalAmplifier_Amplifier_InputPowerTotalAny { - return &OpticalAmplifier_Amplifier_InputPowerTotalAny{ +// InputPowerTotal returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "input-power-total". +func (n *OpticalAmplifier_AmplifierPathAny) InputPowerTotal() *OpticalAmplifier_Amplifier_InputPowerTotalPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power-total"}, map[string]interface{}{}, @@ -151147,9 +151393,9 @@ func (n *OpticalAmplifier_AmplifierAny) InputPowerTotal() *OpticalAmplifier_Ampl } } -// LaserBiasCurrent returns from OpticalAmplifier_Amplifier the path struct for its child "laser-bias-current". -func (n *OpticalAmplifier_Amplifier) LaserBiasCurrent() *OpticalAmplifier_Amplifier_LaserBiasCurrent { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent{ +// LaserBiasCurrent returns from OpticalAmplifier_AmplifierPath the path struct for its child "laser-bias-current". +func (n *OpticalAmplifier_AmplifierPath) LaserBiasCurrent() *OpticalAmplifier_Amplifier_LaserBiasCurrentPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrentPath{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -151158,9 +151404,9 @@ func (n *OpticalAmplifier_Amplifier) LaserBiasCurrent() *OpticalAmplifier_Amplif } } -// LaserBiasCurrent returns from OpticalAmplifier_AmplifierAny the path struct for its child "laser-bias-current". -func (n *OpticalAmplifier_AmplifierAny) LaserBiasCurrent() *OpticalAmplifier_Amplifier_LaserBiasCurrentAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrentAny{ +// LaserBiasCurrent returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "laser-bias-current". +func (n *OpticalAmplifier_AmplifierPathAny) LaserBiasCurrent() *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -151169,97 +151415,97 @@ func (n *OpticalAmplifier_AmplifierAny) LaserBiasCurrent() *OpticalAmplifier_Amp } } -// MaxGain returns from OpticalAmplifier_Amplifier the path struct for its child "max-gain". -func (n *OpticalAmplifier_Amplifier) MaxGain() *OpticalAmplifier_Amplifier_MaxGain { - return &OpticalAmplifier_Amplifier_MaxGain{ +// MaxGain returns from OpticalAmplifier_AmplifierPath the path struct for its child "max-gain". +func (n *OpticalAmplifier_AmplifierPath) MaxGain() *OpticalAmplifier_Amplifier_MaxGainPath { + return &OpticalAmplifier_Amplifier_MaxGainPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-gain"}, + []string{"config", "max-gain"}, map[string]interface{}{}, n, ), } } -// MaxGain returns from OpticalAmplifier_AmplifierAny the path struct for its child "max-gain". -func (n *OpticalAmplifier_AmplifierAny) MaxGain() *OpticalAmplifier_Amplifier_MaxGainAny { - return &OpticalAmplifier_Amplifier_MaxGainAny{ +// MaxGain returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "max-gain". +func (n *OpticalAmplifier_AmplifierPathAny) MaxGain() *OpticalAmplifier_Amplifier_MaxGainPathAny { + return &OpticalAmplifier_Amplifier_MaxGainPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-gain"}, + []string{"config", "max-gain"}, map[string]interface{}{}, n, ), } } -// MaxOutputPower returns from OpticalAmplifier_Amplifier the path struct for its child "max-output-power". -func (n *OpticalAmplifier_Amplifier) MaxOutputPower() *OpticalAmplifier_Amplifier_MaxOutputPower { - return &OpticalAmplifier_Amplifier_MaxOutputPower{ +// MaxOutputPower returns from OpticalAmplifier_AmplifierPath the path struct for its child "max-output-power". +func (n *OpticalAmplifier_AmplifierPath) MaxOutputPower() *OpticalAmplifier_Amplifier_MaxOutputPowerPath { + return &OpticalAmplifier_Amplifier_MaxOutputPowerPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-output-power"}, + []string{"config", "max-output-power"}, map[string]interface{}{}, n, ), } } -// MaxOutputPower returns from OpticalAmplifier_AmplifierAny the path struct for its child "max-output-power". -func (n *OpticalAmplifier_AmplifierAny) MaxOutputPower() *OpticalAmplifier_Amplifier_MaxOutputPowerAny { - return &OpticalAmplifier_Amplifier_MaxOutputPowerAny{ +// MaxOutputPower returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "max-output-power". +func (n *OpticalAmplifier_AmplifierPathAny) MaxOutputPower() *OpticalAmplifier_Amplifier_MaxOutputPowerPathAny { + return &OpticalAmplifier_Amplifier_MaxOutputPowerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-output-power"}, + []string{"config", "max-output-power"}, map[string]interface{}{}, n, ), } } -// MinGain returns from OpticalAmplifier_Amplifier the path struct for its child "min-gain". -func (n *OpticalAmplifier_Amplifier) MinGain() *OpticalAmplifier_Amplifier_MinGain { - return &OpticalAmplifier_Amplifier_MinGain{ +// MinGain returns from OpticalAmplifier_AmplifierPath the path struct for its child "min-gain". +func (n *OpticalAmplifier_AmplifierPath) MinGain() *OpticalAmplifier_Amplifier_MinGainPath { + return &OpticalAmplifier_Amplifier_MinGainPath{ NodePath: ygot.NewNodePath( - []string{"state", "min-gain"}, + []string{"config", "min-gain"}, map[string]interface{}{}, n, ), } } -// MinGain returns from OpticalAmplifier_AmplifierAny the path struct for its child "min-gain". -func (n *OpticalAmplifier_AmplifierAny) MinGain() *OpticalAmplifier_Amplifier_MinGainAny { - return &OpticalAmplifier_Amplifier_MinGainAny{ +// MinGain returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "min-gain". +func (n *OpticalAmplifier_AmplifierPathAny) MinGain() *OpticalAmplifier_Amplifier_MinGainPathAny { + return &OpticalAmplifier_Amplifier_MinGainPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "min-gain"}, + []string{"config", "min-gain"}, map[string]interface{}{}, n, ), } } -// Name returns from OpticalAmplifier_Amplifier the path struct for its child "name". -func (n *OpticalAmplifier_Amplifier) Name() *OpticalAmplifier_Amplifier_Name { - return &OpticalAmplifier_Amplifier_Name{ +// Name returns from OpticalAmplifier_AmplifierPath the path struct for its child "name". +func (n *OpticalAmplifier_AmplifierPath) Name() *OpticalAmplifier_Amplifier_NamePath { + return &OpticalAmplifier_Amplifier_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from OpticalAmplifier_AmplifierAny the path struct for its child "name". -func (n *OpticalAmplifier_AmplifierAny) Name() *OpticalAmplifier_Amplifier_NameAny { - return &OpticalAmplifier_Amplifier_NameAny{ +// Name returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "name". +func (n *OpticalAmplifier_AmplifierPathAny) Name() *OpticalAmplifier_Amplifier_NamePathAny { + return &OpticalAmplifier_Amplifier_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// OpticalReturnLoss returns from OpticalAmplifier_Amplifier the path struct for its child "optical-return-loss". -func (n *OpticalAmplifier_Amplifier) OpticalReturnLoss() *OpticalAmplifier_Amplifier_OpticalReturnLoss { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss{ +// OpticalReturnLoss returns from OpticalAmplifier_AmplifierPath the path struct for its child "optical-return-loss". +func (n *OpticalAmplifier_AmplifierPath) OpticalReturnLoss() *OpticalAmplifier_Amplifier_OpticalReturnLossPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLossPath{ NodePath: ygot.NewNodePath( []string{"state", "optical-return-loss"}, map[string]interface{}{}, @@ -151268,9 +151514,9 @@ func (n *OpticalAmplifier_Amplifier) OpticalReturnLoss() *OpticalAmplifier_Ampli } } -// OpticalReturnLoss returns from OpticalAmplifier_AmplifierAny the path struct for its child "optical-return-loss". -func (n *OpticalAmplifier_AmplifierAny) OpticalReturnLoss() *OpticalAmplifier_Amplifier_OpticalReturnLossAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLossAny{ +// OpticalReturnLoss returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "optical-return-loss". +func (n *OpticalAmplifier_AmplifierPathAny) OpticalReturnLoss() *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLossPathAny{ NodePath: ygot.NewNodePath( []string{"state", "optical-return-loss"}, map[string]interface{}{}, @@ -151279,9 +151525,9 @@ func (n *OpticalAmplifier_AmplifierAny) OpticalReturnLoss() *OpticalAmplifier_Am } } -// OutputPowerCBand returns from OpticalAmplifier_Amplifier the path struct for its child "output-power-c-band". -func (n *OpticalAmplifier_Amplifier) OutputPowerCBand() *OpticalAmplifier_Amplifier_OutputPowerCBand { - return &OpticalAmplifier_Amplifier_OutputPowerCBand{ +// OutputPowerCBand returns from OpticalAmplifier_AmplifierPath the path struct for its child "output-power-c-band". +func (n *OpticalAmplifier_AmplifierPath) OutputPowerCBand() *OpticalAmplifier_Amplifier_OutputPowerCBandPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBandPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power-c-band"}, map[string]interface{}{}, @@ -151290,9 +151536,9 @@ func (n *OpticalAmplifier_Amplifier) OutputPowerCBand() *OpticalAmplifier_Amplif } } -// OutputPowerCBand returns from OpticalAmplifier_AmplifierAny the path struct for its child "output-power-c-band". -func (n *OpticalAmplifier_AmplifierAny) OutputPowerCBand() *OpticalAmplifier_Amplifier_OutputPowerCBandAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBandAny{ +// OutputPowerCBand returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "output-power-c-band". +func (n *OpticalAmplifier_AmplifierPathAny) OutputPowerCBand() *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBandPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power-c-band"}, map[string]interface{}{}, @@ -151301,9 +151547,9 @@ func (n *OpticalAmplifier_AmplifierAny) OutputPowerCBand() *OpticalAmplifier_Amp } } -// OutputPowerLBand returns from OpticalAmplifier_Amplifier the path struct for its child "output-power-l-band". -func (n *OpticalAmplifier_Amplifier) OutputPowerLBand() *OpticalAmplifier_Amplifier_OutputPowerLBand { - return &OpticalAmplifier_Amplifier_OutputPowerLBand{ +// OutputPowerLBand returns from OpticalAmplifier_AmplifierPath the path struct for its child "output-power-l-band". +func (n *OpticalAmplifier_AmplifierPath) OutputPowerLBand() *OpticalAmplifier_Amplifier_OutputPowerLBandPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBandPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power-l-band"}, map[string]interface{}{}, @@ -151312,9 +151558,9 @@ func (n *OpticalAmplifier_Amplifier) OutputPowerLBand() *OpticalAmplifier_Amplif } } -// OutputPowerLBand returns from OpticalAmplifier_AmplifierAny the path struct for its child "output-power-l-band". -func (n *OpticalAmplifier_AmplifierAny) OutputPowerLBand() *OpticalAmplifier_Amplifier_OutputPowerLBandAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBandAny{ +// OutputPowerLBand returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "output-power-l-band". +func (n *OpticalAmplifier_AmplifierPathAny) OutputPowerLBand() *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBandPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power-l-band"}, map[string]interface{}{}, @@ -151323,9 +151569,9 @@ func (n *OpticalAmplifier_AmplifierAny) OutputPowerLBand() *OpticalAmplifier_Amp } } -// OutputPowerTotal returns from OpticalAmplifier_Amplifier the path struct for its child "output-power-total". -func (n *OpticalAmplifier_Amplifier) OutputPowerTotal() *OpticalAmplifier_Amplifier_OutputPowerTotal { - return &OpticalAmplifier_Amplifier_OutputPowerTotal{ +// OutputPowerTotal returns from OpticalAmplifier_AmplifierPath the path struct for its child "output-power-total". +func (n *OpticalAmplifier_AmplifierPath) OutputPowerTotal() *OpticalAmplifier_Amplifier_OutputPowerTotalPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotalPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power-total"}, map[string]interface{}{}, @@ -151334,9 +151580,9 @@ func (n *OpticalAmplifier_Amplifier) OutputPowerTotal() *OpticalAmplifier_Amplif } } -// OutputPowerTotal returns from OpticalAmplifier_AmplifierAny the path struct for its child "output-power-total". -func (n *OpticalAmplifier_AmplifierAny) OutputPowerTotal() *OpticalAmplifier_Amplifier_OutputPowerTotalAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotalAny{ +// OutputPowerTotal returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "output-power-total". +func (n *OpticalAmplifier_AmplifierPathAny) OutputPowerTotal() *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power-total"}, map[string]interface{}{}, @@ -151345,177 +151591,177 @@ func (n *OpticalAmplifier_AmplifierAny) OutputPowerTotal() *OpticalAmplifier_Amp } } -// TargetGain returns from OpticalAmplifier_Amplifier the path struct for its child "target-gain". -func (n *OpticalAmplifier_Amplifier) TargetGain() *OpticalAmplifier_Amplifier_TargetGain { - return &OpticalAmplifier_Amplifier_TargetGain{ +// TargetGain returns from OpticalAmplifier_AmplifierPath the path struct for its child "target-gain". +func (n *OpticalAmplifier_AmplifierPath) TargetGain() *OpticalAmplifier_Amplifier_TargetGainPath { + return &OpticalAmplifier_Amplifier_TargetGainPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-gain"}, + []string{"config", "target-gain"}, map[string]interface{}{}, n, ), } } -// TargetGain returns from OpticalAmplifier_AmplifierAny the path struct for its child "target-gain". -func (n *OpticalAmplifier_AmplifierAny) TargetGain() *OpticalAmplifier_Amplifier_TargetGainAny { - return &OpticalAmplifier_Amplifier_TargetGainAny{ +// TargetGain returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "target-gain". +func (n *OpticalAmplifier_AmplifierPathAny) TargetGain() *OpticalAmplifier_Amplifier_TargetGainPathAny { + return &OpticalAmplifier_Amplifier_TargetGainPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-gain"}, + []string{"config", "target-gain"}, map[string]interface{}{}, n, ), } } -// TargetGainTilt returns from OpticalAmplifier_Amplifier the path struct for its child "target-gain-tilt". -func (n *OpticalAmplifier_Amplifier) TargetGainTilt() *OpticalAmplifier_Amplifier_TargetGainTilt { - return &OpticalAmplifier_Amplifier_TargetGainTilt{ +// TargetGainTilt returns from OpticalAmplifier_AmplifierPath the path struct for its child "target-gain-tilt". +func (n *OpticalAmplifier_AmplifierPath) TargetGainTilt() *OpticalAmplifier_Amplifier_TargetGainTiltPath { + return &OpticalAmplifier_Amplifier_TargetGainTiltPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-gain-tilt"}, + []string{"config", "target-gain-tilt"}, map[string]interface{}{}, n, ), } } -// TargetGainTilt returns from OpticalAmplifier_AmplifierAny the path struct for its child "target-gain-tilt". -func (n *OpticalAmplifier_AmplifierAny) TargetGainTilt() *OpticalAmplifier_Amplifier_TargetGainTiltAny { - return &OpticalAmplifier_Amplifier_TargetGainTiltAny{ +// TargetGainTilt returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "target-gain-tilt". +func (n *OpticalAmplifier_AmplifierPathAny) TargetGainTilt() *OpticalAmplifier_Amplifier_TargetGainTiltPathAny { + return &OpticalAmplifier_Amplifier_TargetGainTiltPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-gain-tilt"}, + []string{"config", "target-gain-tilt"}, map[string]interface{}{}, n, ), } } -// TargetOutputPower returns from OpticalAmplifier_Amplifier the path struct for its child "target-output-power". -func (n *OpticalAmplifier_Amplifier) TargetOutputPower() *OpticalAmplifier_Amplifier_TargetOutputPower { - return &OpticalAmplifier_Amplifier_TargetOutputPower{ +// TargetOutputPower returns from OpticalAmplifier_AmplifierPath the path struct for its child "target-output-power". +func (n *OpticalAmplifier_AmplifierPath) TargetOutputPower() *OpticalAmplifier_Amplifier_TargetOutputPowerPath { + return &OpticalAmplifier_Amplifier_TargetOutputPowerPath{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// TargetOutputPower returns from OpticalAmplifier_AmplifierAny the path struct for its child "target-output-power". -func (n *OpticalAmplifier_AmplifierAny) TargetOutputPower() *OpticalAmplifier_Amplifier_TargetOutputPowerAny { - return &OpticalAmplifier_Amplifier_TargetOutputPowerAny{ +// TargetOutputPower returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "target-output-power". +func (n *OpticalAmplifier_AmplifierPathAny) TargetOutputPower() *OpticalAmplifier_Amplifier_TargetOutputPowerPathAny { + return &OpticalAmplifier_Amplifier_TargetOutputPowerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "target-output-power"}, + []string{"config", "target-output-power"}, map[string]interface{}{}, n, ), } } -// Type returns from OpticalAmplifier_Amplifier the path struct for its child "type". -func (n *OpticalAmplifier_Amplifier) Type() *OpticalAmplifier_Amplifier_Type { - return &OpticalAmplifier_Amplifier_Type{ +// Type returns from OpticalAmplifier_AmplifierPath the path struct for its child "type". +func (n *OpticalAmplifier_AmplifierPath) Type() *OpticalAmplifier_Amplifier_TypePath { + return &OpticalAmplifier_Amplifier_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from OpticalAmplifier_AmplifierAny the path struct for its child "type". -func (n *OpticalAmplifier_AmplifierAny) Type() *OpticalAmplifier_Amplifier_TypeAny { - return &OpticalAmplifier_Amplifier_TypeAny{ +// Type returns from OpticalAmplifier_AmplifierPathAny the path struct for its child "type". +func (n *OpticalAmplifier_AmplifierPathAny) Type() *OpticalAmplifier_Amplifier_TypePathAny { + return &OpticalAmplifier_Amplifier_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// OpticalAmplifier_Amplifier_ActualGain represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain struct { +// OpticalAmplifier_Amplifier_ActualGainPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainAny struct { +// OpticalAmplifier_Amplifier_ActualGainPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/avg YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_Avg struct { +// OpticalAmplifier_Amplifier_ActualGain_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/avg YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/avg YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_AvgAny struct { +// OpticalAmplifier_Amplifier_ActualGain_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/avg YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/instant YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_Instant struct { +// OpticalAmplifier_Amplifier_ActualGain_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/instant YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/instant YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_InstantAny struct { +// OpticalAmplifier_Amplifier_ActualGain_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/instant YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/interval YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_Interval struct { +// OpticalAmplifier_Amplifier_ActualGain_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/interval YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/interval YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_IntervalAny struct { +// OpticalAmplifier_Amplifier_ActualGain_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/interval YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_Max struct { +// OpticalAmplifier_Amplifier_ActualGain_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MaxAny struct { +// OpticalAmplifier_Amplifier_ActualGain_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MaxTime struct { +// OpticalAmplifier_Amplifier_ActualGain_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_ActualGain_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/max-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_Min struct { +// OpticalAmplifier_Amplifier_ActualGain_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MinAny struct { +// OpticalAmplifier_Amplifier_ActualGain_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MinTime struct { +// OpticalAmplifier_Amplifier_ActualGain_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGain_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGain_MinTimeAny struct { +// OpticalAmplifier_Amplifier_ActualGain_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain/min-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGain_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_ActualGain) Avg() *OpticalAmplifier_Amplifier_ActualGain_Avg { - return &OpticalAmplifier_Amplifier_ActualGain_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) Avg() *OpticalAmplifier_Amplifier_ActualGain_AvgPath { + return &OpticalAmplifier_Amplifier_ActualGain_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -151524,9 +151770,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) Avg() *OpticalAmplifier_Amplifie } } -// Avg returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) Avg() *OpticalAmplifier_Amplifier_ActualGain_AvgAny { - return &OpticalAmplifier_Amplifier_ActualGain_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) Avg() *OpticalAmplifier_Amplifier_ActualGain_AvgPathAny { + return &OpticalAmplifier_Amplifier_ActualGain_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -151535,9 +151781,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) Avg() *OpticalAmplifier_Ampli } } -// Instant returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_ActualGain) Instant() *OpticalAmplifier_Amplifier_ActualGain_Instant { - return &OpticalAmplifier_Amplifier_ActualGain_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) Instant() *OpticalAmplifier_Amplifier_ActualGain_InstantPath { + return &OpticalAmplifier_Amplifier_ActualGain_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -151546,9 +151792,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) Instant() *OpticalAmplifier_Ampl } } -// Instant returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) Instant() *OpticalAmplifier_Amplifier_ActualGain_InstantAny { - return &OpticalAmplifier_Amplifier_ActualGain_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) Instant() *OpticalAmplifier_Amplifier_ActualGain_InstantPathAny { + return &OpticalAmplifier_Amplifier_ActualGain_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -151557,9 +151803,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) Instant() *OpticalAmplifier_A } } -// Interval returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_ActualGain) Interval() *OpticalAmplifier_Amplifier_ActualGain_Interval { - return &OpticalAmplifier_Amplifier_ActualGain_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) Interval() *OpticalAmplifier_Amplifier_ActualGain_IntervalPath { + return &OpticalAmplifier_Amplifier_ActualGain_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -151568,9 +151814,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) Interval() *OpticalAmplifier_Amp } } -// Interval returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) Interval() *OpticalAmplifier_Amplifier_ActualGain_IntervalAny { - return &OpticalAmplifier_Amplifier_ActualGain_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) Interval() *OpticalAmplifier_Amplifier_ActualGain_IntervalPathAny { + return &OpticalAmplifier_Amplifier_ActualGain_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -151579,9 +151825,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) Interval() *OpticalAmplifier_ } } -// Max returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_ActualGain) Max() *OpticalAmplifier_Amplifier_ActualGain_Max { - return &OpticalAmplifier_Amplifier_ActualGain_Max{ +// Max returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) Max() *OpticalAmplifier_Amplifier_ActualGain_MaxPath { + return &OpticalAmplifier_Amplifier_ActualGain_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -151590,9 +151836,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) Max() *OpticalAmplifier_Amplifie } } -// Max returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) Max() *OpticalAmplifier_Amplifier_ActualGain_MaxAny { - return &OpticalAmplifier_Amplifier_ActualGain_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) Max() *OpticalAmplifier_Amplifier_ActualGain_MaxPathAny { + return &OpticalAmplifier_Amplifier_ActualGain_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -151601,9 +151847,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) Max() *OpticalAmplifier_Ampli } } -// MaxTime returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_ActualGain) MaxTime() *OpticalAmplifier_Amplifier_ActualGain_MaxTime { - return &OpticalAmplifier_Amplifier_ActualGain_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) MaxTime() *OpticalAmplifier_Amplifier_ActualGain_MaxTimePath { + return &OpticalAmplifier_Amplifier_ActualGain_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -151612,9 +151858,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) MaxTime() *OpticalAmplifier_Ampl } } -// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) MaxTime() *OpticalAmplifier_Amplifier_ActualGain_MaxTimeAny { - return &OpticalAmplifier_Amplifier_ActualGain_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) MaxTime() *OpticalAmplifier_Amplifier_ActualGain_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_ActualGain_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -151623,9 +151869,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) MaxTime() *OpticalAmplifier_A } } -// Min returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_ActualGain) Min() *OpticalAmplifier_Amplifier_ActualGain_Min { - return &OpticalAmplifier_Amplifier_ActualGain_Min{ +// Min returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) Min() *OpticalAmplifier_Amplifier_ActualGain_MinPath { + return &OpticalAmplifier_Amplifier_ActualGain_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -151634,9 +151880,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) Min() *OpticalAmplifier_Amplifie } } -// Min returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) Min() *OpticalAmplifier_Amplifier_ActualGain_MinAny { - return &OpticalAmplifier_Amplifier_ActualGain_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) Min() *OpticalAmplifier_Amplifier_ActualGain_MinPathAny { + return &OpticalAmplifier_Amplifier_ActualGain_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -151645,9 +151891,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) Min() *OpticalAmplifier_Ampli } } -// MinTime returns from OpticalAmplifier_Amplifier_ActualGain the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_ActualGain) MinTime() *OpticalAmplifier_Amplifier_ActualGain_MinTime { - return &OpticalAmplifier_Amplifier_ActualGain_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_ActualGainPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_ActualGainPath) MinTime() *OpticalAmplifier_Amplifier_ActualGain_MinTimePath { + return &OpticalAmplifier_Amplifier_ActualGain_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -151656,9 +151902,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGain) MinTime() *OpticalAmplifier_Ampl } } -// MinTime returns from OpticalAmplifier_Amplifier_ActualGainAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_ActualGainAny) MinTime() *OpticalAmplifier_Amplifier_ActualGain_MinTimeAny { - return &OpticalAmplifier_Amplifier_ActualGain_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_ActualGainPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_ActualGainPathAny) MinTime() *OpticalAmplifier_Amplifier_ActualGain_MinTimePathAny { + return &OpticalAmplifier_Amplifier_ActualGain_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -151667,89 +151913,89 @@ func (n *OpticalAmplifier_Amplifier_ActualGainAny) MinTime() *OpticalAmplifier_A } } -// OpticalAmplifier_Amplifier_ActualGainTilt represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt struct { +// OpticalAmplifier_Amplifier_ActualGainTiltPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTiltPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTiltAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTiltAny struct { +// OpticalAmplifier_Amplifier_ActualGainTiltPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTiltPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/avg YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_Avg struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/avg YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/avg YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_AvgAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/avg YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/instant YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_Instant struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/instant YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/instant YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_InstantAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/instant YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/interval YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_Interval struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/interval YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/interval YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_IntervalAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/interval YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_Max struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MaxAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MaxTime struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/max-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_Min struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MinAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MinTime struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_ActualGainTilt_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min-time YANG schema element. -type OpticalAmplifier_Amplifier_ActualGainTilt_MinTimeAny struct { +// OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/actual-gain-tilt/min-time YANG schema element. +type OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Avg() *OpticalAmplifier_Amplifier_ActualGainTilt_Avg { - return &OpticalAmplifier_Amplifier_ActualGainTilt_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) Avg() *OpticalAmplifier_Amplifier_ActualGainTilt_AvgPath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -151758,9 +152004,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Avg() *OpticalAmplifier_Ampl } } -// Avg returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Avg() *OpticalAmplifier_Amplifier_ActualGainTilt_AvgAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) Avg() *OpticalAmplifier_Amplifier_ActualGainTilt_AvgPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -151769,9 +152015,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Avg() *OpticalAmplifier_A } } -// Instant returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Instant() *OpticalAmplifier_Amplifier_ActualGainTilt_Instant { - return &OpticalAmplifier_Amplifier_ActualGainTilt_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) Instant() *OpticalAmplifier_Amplifier_ActualGainTilt_InstantPath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -151780,9 +152026,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Instant() *OpticalAmplifier_ } } -// Instant returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Instant() *OpticalAmplifier_Amplifier_ActualGainTilt_InstantAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) Instant() *OpticalAmplifier_Amplifier_ActualGainTilt_InstantPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -151791,9 +152037,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Instant() *OpticalAmplifi } } -// Interval returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Interval() *OpticalAmplifier_Amplifier_ActualGainTilt_Interval { - return &OpticalAmplifier_Amplifier_ActualGainTilt_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) Interval() *OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -151802,9 +152048,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Interval() *OpticalAmplifier } } -// Interval returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Interval() *OpticalAmplifier_Amplifier_ActualGainTilt_IntervalAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) Interval() *OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -151813,9 +152059,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Interval() *OpticalAmplif } } -// Max returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Max() *OpticalAmplifier_Amplifier_ActualGainTilt_Max { - return &OpticalAmplifier_Amplifier_ActualGainTilt_Max{ +// Max returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) Max() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxPath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -151824,9 +152070,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Max() *OpticalAmplifier_Ampl } } -// Max returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Max() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) Max() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -151835,9 +152081,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Max() *OpticalAmplifier_A } } -// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) MaxTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxTime { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) MaxTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -151846,9 +152092,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) MaxTime() *OpticalAmplifier_ } } -// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) MaxTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimeAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) MaxTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -151857,9 +152103,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) MaxTime() *OpticalAmplifi } } -// Min returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Min() *OpticalAmplifier_Amplifier_ActualGainTilt_Min { - return &OpticalAmplifier_Amplifier_ActualGainTilt_Min{ +// Min returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) Min() *OpticalAmplifier_Amplifier_ActualGainTilt_MinPath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -151868,9 +152114,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) Min() *OpticalAmplifier_Ampl } } -// Min returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Min() *OpticalAmplifier_Amplifier_ActualGainTilt_MinAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) Min() *OpticalAmplifier_Amplifier_ActualGainTilt_MinPathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -151879,9 +152125,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) Min() *OpticalAmplifier_A } } -// MinTime returns from OpticalAmplifier_Amplifier_ActualGainTilt the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_ActualGainTilt) MinTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MinTime { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_ActualGainTiltPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPath) MinTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePath { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -151890,9 +152136,9 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTilt) MinTime() *OpticalAmplifier_ } } -// MinTime returns from OpticalAmplifier_Amplifier_ActualGainTiltAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) MinTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MinTimeAny { - return &OpticalAmplifier_Amplifier_ActualGainTilt_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_ActualGainTiltPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_ActualGainTiltPathAny) MinTime() *OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePathAny { + return &OpticalAmplifier_Amplifier_ActualGainTilt_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -151901,89 +152147,89 @@ func (n *OpticalAmplifier_Amplifier_ActualGainTiltAny) MinTime() *OpticalAmplifi } } -// OpticalAmplifier_Amplifier_InputPowerCBand represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand struct { +// OpticalAmplifier_Amplifier_InputPowerCBandPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBandPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBandAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBandAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBandPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBandPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_Avg struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_AvgAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_Instant struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_InstantAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_Interval struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_IntervalAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_Max struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MaxAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MaxTime struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_Min struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MinAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MinTime struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerCBand_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerCBand_MinTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-c-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Avg() *OpticalAmplifier_Amplifier_InputPowerCBand_Avg { - return &OpticalAmplifier_Amplifier_InputPowerCBand_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) Avg() *OpticalAmplifier_Amplifier_InputPowerCBand_AvgPath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -151992,9 +152238,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Avg() *OpticalAmplifier_Amp } } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Avg() *OpticalAmplifier_Amplifier_InputPowerCBand_AvgAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) Avg() *OpticalAmplifier_Amplifier_InputPowerCBand_AvgPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152003,9 +152249,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Avg() *OpticalAmplifier_ } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Instant() *OpticalAmplifier_Amplifier_InputPowerCBand_Instant { - return &OpticalAmplifier_Amplifier_InputPowerCBand_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) Instant() *OpticalAmplifier_Amplifier_InputPowerCBand_InstantPath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152014,9 +152260,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Instant() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Instant() *OpticalAmplifier_Amplifier_InputPowerCBand_InstantAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) Instant() *OpticalAmplifier_Amplifier_InputPowerCBand_InstantPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152025,9 +152271,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Instant() *OpticalAmplif } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Interval() *OpticalAmplifier_Amplifier_InputPowerCBand_Interval { - return &OpticalAmplifier_Amplifier_InputPowerCBand_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) Interval() *OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152036,9 +152282,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Interval() *OpticalAmplifie } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Interval() *OpticalAmplifier_Amplifier_InputPowerCBand_IntervalAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) Interval() *OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152047,9 +152293,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Interval() *OpticalAmpli } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Max() *OpticalAmplifier_Amplifier_InputPowerCBand_Max { - return &OpticalAmplifier_Amplifier_InputPowerCBand_Max{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) Max() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxPath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152058,9 +152304,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Max() *OpticalAmplifier_Amp } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Max() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) Max() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152069,9 +152315,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Max() *OpticalAmplifier_ } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) MaxTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxTime { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) MaxTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152080,9 +152326,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) MaxTime() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152091,9 +152337,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) MaxTime() *OpticalAmplif } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Min() *OpticalAmplifier_Amplifier_InputPowerCBand_Min { - return &OpticalAmplifier_Amplifier_InputPowerCBand_Min{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) Min() *OpticalAmplifier_Amplifier_InputPowerCBand_MinPath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152102,9 +152348,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) Min() *OpticalAmplifier_Amp } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Min() *OpticalAmplifier_Amplifier_InputPowerCBand_MinAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) Min() *OpticalAmplifier_Amplifier_InputPowerCBand_MinPathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152113,9 +152359,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) Min() *OpticalAmplifier_ } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerCBand the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerCBand) MinTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MinTime { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerCBandPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPath) MinTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePath { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152124,9 +152370,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBand) MinTime() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerCBandAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MinTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerCBand_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerCBandPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerCBandPathAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerCBand_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152135,89 +152381,89 @@ func (n *OpticalAmplifier_Amplifier_InputPowerCBandAny) MinTime() *OpticalAmplif } } -// OpticalAmplifier_Amplifier_InputPowerLBand represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand struct { +// OpticalAmplifier_Amplifier_InputPowerLBandPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBandPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBandAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBandAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBandPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBandPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_Avg struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_AvgAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_Instant struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_InstantAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_Interval struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_IntervalAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_Max struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MaxAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MaxTime struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_Min struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MinAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MinTime struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerLBand_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerLBand_MinTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-l-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Avg() *OpticalAmplifier_Amplifier_InputPowerLBand_Avg { - return &OpticalAmplifier_Amplifier_InputPowerLBand_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) Avg() *OpticalAmplifier_Amplifier_InputPowerLBand_AvgPath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152226,9 +152472,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Avg() *OpticalAmplifier_Amp } } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Avg() *OpticalAmplifier_Amplifier_InputPowerLBand_AvgAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) Avg() *OpticalAmplifier_Amplifier_InputPowerLBand_AvgPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152237,9 +152483,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Avg() *OpticalAmplifier_ } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Instant() *OpticalAmplifier_Amplifier_InputPowerLBand_Instant { - return &OpticalAmplifier_Amplifier_InputPowerLBand_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) Instant() *OpticalAmplifier_Amplifier_InputPowerLBand_InstantPath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152248,9 +152494,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Instant() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Instant() *OpticalAmplifier_Amplifier_InputPowerLBand_InstantAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) Instant() *OpticalAmplifier_Amplifier_InputPowerLBand_InstantPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152259,9 +152505,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Instant() *OpticalAmplif } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Interval() *OpticalAmplifier_Amplifier_InputPowerLBand_Interval { - return &OpticalAmplifier_Amplifier_InputPowerLBand_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) Interval() *OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152270,9 +152516,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Interval() *OpticalAmplifie } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Interval() *OpticalAmplifier_Amplifier_InputPowerLBand_IntervalAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) Interval() *OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152281,9 +152527,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Interval() *OpticalAmpli } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Max() *OpticalAmplifier_Amplifier_InputPowerLBand_Max { - return &OpticalAmplifier_Amplifier_InputPowerLBand_Max{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) Max() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxPath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152292,9 +152538,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Max() *OpticalAmplifier_Amp } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Max() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) Max() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152303,9 +152549,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Max() *OpticalAmplifier_ } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) MaxTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxTime { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) MaxTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152314,9 +152560,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) MaxTime() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152325,9 +152571,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) MaxTime() *OpticalAmplif } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Min() *OpticalAmplifier_Amplifier_InputPowerLBand_Min { - return &OpticalAmplifier_Amplifier_InputPowerLBand_Min{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) Min() *OpticalAmplifier_Amplifier_InputPowerLBand_MinPath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152336,9 +152582,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) Min() *OpticalAmplifier_Amp } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Min() *OpticalAmplifier_Amplifier_InputPowerLBand_MinAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) Min() *OpticalAmplifier_Amplifier_InputPowerLBand_MinPathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152347,9 +152593,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) Min() *OpticalAmplifier_ } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerLBand the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerLBand) MinTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MinTime { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerLBandPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPath) MinTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePath { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152358,9 +152604,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBand) MinTime() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerLBandAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MinTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerLBand_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerLBandPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerLBandPathAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerLBand_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152369,89 +152615,89 @@ func (n *OpticalAmplifier_Amplifier_InputPowerLBandAny) MinTime() *OpticalAmplif } } -// OpticalAmplifier_Amplifier_InputPowerTotal represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal struct { +// OpticalAmplifier_Amplifier_InputPowerTotalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotalAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_Avg struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/avg YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_AvgAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/avg YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_Instant struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/instant YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_InstantAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/instant YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_Interval struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/interval YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_IntervalAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/interval YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_Max struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MaxAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MaxTime struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/max-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_Min struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MinAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MinTime struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_InputPowerTotal_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min-time YANG schema element. -type OpticalAmplifier_Amplifier_InputPowerTotal_MinTimeAny struct { +// OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/input-power-total/min-time YANG schema element. +type OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Avg() *OpticalAmplifier_Amplifier_InputPowerTotal_Avg { - return &OpticalAmplifier_Amplifier_InputPowerTotal_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) Avg() *OpticalAmplifier_Amplifier_InputPowerTotal_AvgPath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152460,9 +152706,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Avg() *OpticalAmplifier_Amp } } -// Avg returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Avg() *OpticalAmplifier_Amplifier_InputPowerTotal_AvgAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) Avg() *OpticalAmplifier_Amplifier_InputPowerTotal_AvgPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152471,9 +152717,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Avg() *OpticalAmplifier_ } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Instant() *OpticalAmplifier_Amplifier_InputPowerTotal_Instant { - return &OpticalAmplifier_Amplifier_InputPowerTotal_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) Instant() *OpticalAmplifier_Amplifier_InputPowerTotal_InstantPath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152482,9 +152728,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Instant() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Instant() *OpticalAmplifier_Amplifier_InputPowerTotal_InstantAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) Instant() *OpticalAmplifier_Amplifier_InputPowerTotal_InstantPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152493,9 +152739,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Instant() *OpticalAmplif } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Interval() *OpticalAmplifier_Amplifier_InputPowerTotal_Interval { - return &OpticalAmplifier_Amplifier_InputPowerTotal_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) Interval() *OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152504,9 +152750,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Interval() *OpticalAmplifie } } -// Interval returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Interval() *OpticalAmplifier_Amplifier_InputPowerTotal_IntervalAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) Interval() *OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152515,9 +152761,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Interval() *OpticalAmpli } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Max() *OpticalAmplifier_Amplifier_InputPowerTotal_Max { - return &OpticalAmplifier_Amplifier_InputPowerTotal_Max{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) Max() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxPath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152526,9 +152772,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Max() *OpticalAmplifier_Amp } } -// Max returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Max() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) Max() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152537,9 +152783,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Max() *OpticalAmplifier_ } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) MaxTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxTime { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) MaxTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152548,9 +152794,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) MaxTime() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) MaxTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152559,9 +152805,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) MaxTime() *OpticalAmplif } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Min() *OpticalAmplifier_Amplifier_InputPowerTotal_Min { - return &OpticalAmplifier_Amplifier_InputPowerTotal_Min{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) Min() *OpticalAmplifier_Amplifier_InputPowerTotal_MinPath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152570,9 +152816,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) Min() *OpticalAmplifier_Amp } } -// Min returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Min() *OpticalAmplifier_Amplifier_InputPowerTotal_MinAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) Min() *OpticalAmplifier_Amplifier_InputPowerTotal_MinPathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152581,9 +152827,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) Min() *OpticalAmplifier_ } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerTotal the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerTotal) MinTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MinTime { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerTotalPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPath) MinTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePath { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152592,9 +152838,9 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotal) MinTime() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_InputPowerTotalAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MinTimeAny { - return &OpticalAmplifier_Amplifier_InputPowerTotal_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_InputPowerTotalPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_InputPowerTotalPathAny) MinTime() *OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePathAny { + return &OpticalAmplifier_Amplifier_InputPowerTotal_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152603,89 +152849,89 @@ func (n *OpticalAmplifier_Amplifier_InputPowerTotalAny) MinTime() *OpticalAmplif } } -// OpticalAmplifier_Amplifier_LaserBiasCurrent represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrentPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrentPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrentAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrentAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/avg YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_Avg struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/avg YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/avg YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/avg YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/instant YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_Instant struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/instant YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/instant YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/instant YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/interval YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_Interval struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/interval YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/interval YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/interval YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_Max struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max-time YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTime struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max-time YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max-time YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/max-time YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_Min struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min-time YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTime struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min-time YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min-time YANG schema element. -type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimeAny struct { +// OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/laser-bias-current/min-time YANG schema element. +type OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Avg() *OpticalAmplifier_Amplifier_LaserBiasCurrent_Avg { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) Avg() *OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152694,9 +152940,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Avg() *OpticalAmplifier_Am } } -// Avg returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Avg() *OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) Avg() *OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152705,9 +152951,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Avg() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Instant() *OpticalAmplifier_Amplifier_LaserBiasCurrent_Instant { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) Instant() *OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152716,9 +152962,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Instant() *OpticalAmplifie } } -// Instant returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Instant() *OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) Instant() *OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152727,9 +152973,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Instant() *OpticalAmpli } } -// Interval returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Interval() *OpticalAmplifier_Amplifier_LaserBiasCurrent_Interval { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) Interval() *OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152738,9 +152984,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Interval() *OpticalAmplifi } } -// Interval returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Interval() *OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) Interval() *OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152749,9 +152995,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Interval() *OpticalAmpl } } -// Max returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Max() *OpticalAmplifier_Amplifier_LaserBiasCurrent_Max { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_Max{ +// Max returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) Max() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152760,9 +153006,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Max() *OpticalAmplifier_Am } } -// Max returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Max() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) Max() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152771,9 +153017,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Max() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) MaxTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTime { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) MaxTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152782,9 +153028,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) MaxTime() *OpticalAmplifie } } -// MaxTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) MaxTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimeAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) MaxTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -152793,9 +153039,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) MaxTime() *OpticalAmpli } } -// Min returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Min() *OpticalAmplifier_Amplifier_LaserBiasCurrent_Min { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_Min{ +// Min returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) Min() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152804,9 +153050,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) Min() *OpticalAmplifier_Am } } -// Min returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Min() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) Min() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -152815,9 +153061,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) Min() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrent the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) MinTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTime { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPath) MinTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePath { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152826,9 +153072,9 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrent) MinTime() *OpticalAmplifie } } -// MinTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) MinTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimeAny { - return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentPathAny) MinTime() *OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePathAny { + return &OpticalAmplifier_Amplifier_LaserBiasCurrent_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -152837,89 +153083,89 @@ func (n *OpticalAmplifier_Amplifier_LaserBiasCurrentAny) MinTime() *OpticalAmpli } } -// OpticalAmplifier_Amplifier_OpticalReturnLoss represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss struct { +// OpticalAmplifier_Amplifier_OpticalReturnLossPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLossPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLossAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLossAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLossPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLossPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/avg YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_Avg struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/avg YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/avg YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/avg YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/instant YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_Instant struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/instant YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/instant YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/instant YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/interval YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_Interval struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/interval YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/interval YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/interval YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_Max struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTime struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_Min struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTime struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimeAny struct { +// OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/optical-return-loss/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Avg() *OpticalAmplifier_Amplifier_OpticalReturnLoss_Avg { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) Avg() *OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152928,9 +153174,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Avg() *OpticalAmplifier_A } } -// Avg returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Avg() *OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) Avg() *OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -152939,9 +153185,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Avg() *OpticalAmplifie } } -// Instant returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Instant() *OpticalAmplifier_Amplifier_OpticalReturnLoss_Instant { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) Instant() *OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152950,9 +153196,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Instant() *OpticalAmplifi } } -// Instant returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Instant() *OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) Instant() *OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -152961,9 +153207,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Instant() *OpticalAmpl } } -// Interval returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Interval() *OpticalAmplifier_Amplifier_OpticalReturnLoss_Interval { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) Interval() *OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152972,9 +153218,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Interval() *OpticalAmplif } } -// Interval returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Interval() *OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) Interval() *OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -152983,9 +153229,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Interval() *OpticalAmp } } -// Max returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Max() *OpticalAmplifier_Amplifier_OpticalReturnLoss_Max { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_Max{ +// Max returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) Max() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -152994,9 +153240,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Max() *OpticalAmplifier_A } } -// Max returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Max() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) Max() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153005,9 +153251,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Max() *OpticalAmplifie } } -// MaxTime returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) MaxTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTime { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) MaxTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153016,9 +153262,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) MaxTime() *OpticalAmplifi } } -// MaxTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) MaxTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimeAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) MaxTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153027,9 +153273,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) MaxTime() *OpticalAmpl } } -// Min returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Min() *OpticalAmplifier_Amplifier_OpticalReturnLoss_Min { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_Min{ +// Min returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) Min() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153038,9 +153284,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) Min() *OpticalAmplifier_A } } -// Min returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Min() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) Min() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153049,9 +153295,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) Min() *OpticalAmplifie } } -// MinTime returns from OpticalAmplifier_Amplifier_OpticalReturnLoss the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) MinTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTime { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPath) MinTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePath { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153060,9 +153306,9 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLoss) MinTime() *OpticalAmplifi } } -// MinTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) MinTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimeAny { - return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_OpticalReturnLossPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OpticalReturnLossPathAny) MinTime() *OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePathAny { + return &OpticalAmplifier_Amplifier_OpticalReturnLoss_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153071,89 +153317,89 @@ func (n *OpticalAmplifier_Amplifier_OpticalReturnLossAny) MinTime() *OpticalAmpl } } -// OpticalAmplifier_Amplifier_OutputPowerCBand represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand struct { +// OpticalAmplifier_Amplifier_OutputPowerCBandPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBandPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBandAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBandAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBandPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBandPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_Avg struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_AvgAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_Instant struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_InstantAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_Interval struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_Max struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTime struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_Min struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MinAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MinTime struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-c-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Avg() *OpticalAmplifier_Amplifier_OutputPowerCBand_Avg { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) Avg() *OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153162,9 +153408,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Avg() *OpticalAmplifier_Am } } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerCBand_AvgAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153173,9 +153419,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Avg() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Instant() *OpticalAmplifier_Amplifier_OutputPowerCBand_Instant { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) Instant() *OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153184,9 +153430,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Instant() *OpticalAmplifie } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerCBand_InstantAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153195,9 +153441,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Instant() *OpticalAmpli } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Interval() *OpticalAmplifier_Amplifier_OutputPowerCBand_Interval { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) Interval() *OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153206,9 +153452,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Interval() *OpticalAmplifi } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153217,9 +153463,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Interval() *OpticalAmpl } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Max() *OpticalAmplifier_Amplifier_OutputPowerCBand_Max { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_Max{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) Max() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153228,9 +153474,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Max() *OpticalAmplifier_Am } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Max() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) Max() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153239,9 +153485,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Max() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTime { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153250,9 +153496,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) MaxTime() *OpticalAmplifie } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153261,9 +153507,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) MaxTime() *OpticalAmpli } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Min() *OpticalAmplifier_Amplifier_OutputPowerCBand_Min { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_Min{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) Min() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinPath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153272,9 +153518,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) Min() *OpticalAmplifier_Am } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Min() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) Min() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153283,9 +153529,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) Min() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerCBand the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) MinTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinTime { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPath) MinTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153294,9 +153540,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBand) MinTime() *OpticalAmplifie } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerCBandPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerCBandPathAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerCBand_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153305,89 +153551,89 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerCBandAny) MinTime() *OpticalAmpli } } -// OpticalAmplifier_Amplifier_OutputPowerLBand represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand struct { +// OpticalAmplifier_Amplifier_OutputPowerLBandPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBandPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBandAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBandAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBandPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBandPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_Avg struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_AvgAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_Instant struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_InstantAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_Interval struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_Max struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTime struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_Min struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MinAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MinTime struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-l-band/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Avg() *OpticalAmplifier_Amplifier_OutputPowerLBand_Avg { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) Avg() *OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153396,9 +153642,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Avg() *OpticalAmplifier_Am } } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerLBand_AvgAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153407,9 +153653,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Avg() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Instant() *OpticalAmplifier_Amplifier_OutputPowerLBand_Instant { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) Instant() *OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153418,9 +153664,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Instant() *OpticalAmplifie } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerLBand_InstantAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153429,9 +153675,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Instant() *OpticalAmpli } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Interval() *OpticalAmplifier_Amplifier_OutputPowerLBand_Interval { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) Interval() *OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153440,9 +153686,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Interval() *OpticalAmplifi } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153451,9 +153697,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Interval() *OpticalAmpl } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Max() *OpticalAmplifier_Amplifier_OutputPowerLBand_Max { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_Max{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) Max() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153462,9 +153708,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Max() *OpticalAmplifier_Am } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Max() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) Max() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153473,9 +153719,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Max() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTime { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153484,9 +153730,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) MaxTime() *OpticalAmplifie } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153495,9 +153741,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) MaxTime() *OpticalAmpli } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Min() *OpticalAmplifier_Amplifier_OutputPowerLBand_Min { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_Min{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) Min() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinPath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153506,9 +153752,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) Min() *OpticalAmplifier_Am } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Min() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) Min() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153517,9 +153763,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) Min() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerLBand the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) MinTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinTime { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPath) MinTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153528,9 +153774,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBand) MinTime() *OpticalAmplifie } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerLBandPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerLBandPathAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerLBand_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153539,89 +153785,89 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerLBandAny) MinTime() *OpticalAmpli } } -// OpticalAmplifier_Amplifier_OutputPowerTotal represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal struct { +// OpticalAmplifier_Amplifier_OutputPowerTotalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotalAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_Avg represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_Avg struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/avg YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_AvgAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/avg YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_Instant represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_Instant struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/instant YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_InstantAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/instant YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_Interval represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_Interval struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/interval YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/interval YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_Max represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_Max struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTime struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/max-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_Min represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_Min struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MinAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MinTime struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min-time YANG schema element. -type OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimeAny struct { +// OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/amplifiers/amplifier/state/output-power-total/min-time YANG schema element. +type OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Avg() *OpticalAmplifier_Amplifier_OutputPowerTotal_Avg { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_Avg{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) Avg() *OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153630,9 +153876,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Avg() *OpticalAmplifier_Am } } -// Avg returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "avg". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerTotal_AvgAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_AvgAny{ +// Avg returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) Avg() *OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -153641,9 +153887,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Avg() *OpticalAmplifier } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Instant() *OpticalAmplifier_Amplifier_OutputPowerTotal_Instant { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_Instant{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) Instant() *OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153652,9 +153898,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Instant() *OpticalAmplifie } } -// Instant returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "instant". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerTotal_InstantAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_InstantAny{ +// Instant returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) Instant() *OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -153663,9 +153909,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Instant() *OpticalAmpli } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Interval() *OpticalAmplifier_Amplifier_OutputPowerTotal_Interval { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_Interval{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) Interval() *OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153674,9 +153920,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Interval() *OpticalAmplifi } } -// Interval returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "interval". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalAny{ +// Interval returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) Interval() *OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -153685,9 +153931,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Interval() *OpticalAmpl } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Max() *OpticalAmplifier_Amplifier_OutputPowerTotal_Max { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_Max{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) Max() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153696,9 +153942,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Max() *OpticalAmplifier_Am } } -// Max returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "max". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Max() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxAny{ +// Max returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "max". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) Max() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -153707,9 +153953,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Max() *OpticalAmplifier } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTime { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTime{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153718,9 +153964,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) MaxTime() *OpticalAmplifie } } -// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "max-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) MaxTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -153729,9 +153975,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) MaxTime() *OpticalAmpli } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Min() *OpticalAmplifier_Amplifier_OutputPowerTotal_Min { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_Min{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) Min() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinPath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153740,9 +153986,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) Min() *OpticalAmplifier_Am } } -// Min returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "min". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Min() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinAny{ +// Min returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "min". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) Min() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinPathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -153751,9 +153997,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) Min() *OpticalAmplifier } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerTotal the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) MinTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinTime { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinTime{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalPath the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPath) MinTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePath { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153762,9 +154008,9 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotal) MinTime() *OpticalAmplifie } } -// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalAny the path struct for its child "min-time". -func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimeAny { - return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimeAny{ +// MinTime returns from OpticalAmplifier_Amplifier_OutputPowerTotalPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_Amplifier_OutputPowerTotalPathAny) MinTime() *OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePathAny { + return &OpticalAmplifier_Amplifier_OutputPowerTotal_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -153773,39 +154019,39 @@ func (n *OpticalAmplifier_Amplifier_OutputPowerTotalAny) MinTime() *OpticalAmpli } } -// OpticalAmplifier_SupervisoryChannel represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel YANG schema element. -type OpticalAmplifier_SupervisoryChannel struct { +// OpticalAmplifier_SupervisoryChannelPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel YANG schema element. +type OpticalAmplifier_SupervisoryChannelPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannelAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel YANG schema element. -type OpticalAmplifier_SupervisoryChannelAny struct { +// OpticalAmplifier_SupervisoryChannelPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel YANG schema element. +type OpticalAmplifier_SupervisoryChannelPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_Interface represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/interface YANG schema element. -type OpticalAmplifier_SupervisoryChannel_Interface struct { +// OpticalAmplifier_SupervisoryChannel_InterfacePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/config/interface YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InterfacePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InterfaceAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/interface YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InterfaceAny struct { +// OpticalAmplifier_SupervisoryChannel_InterfacePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/config/interface YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InterfacePathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputFrequency represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-frequency YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputFrequency struct { +// OpticalAmplifier_SupervisoryChannel_OutputFrequencyPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-frequency YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputFrequencyPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputFrequencyAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-frequency YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputFrequencyAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputFrequencyPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-frequency YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputFrequencyPathAny struct { *ygot.NodePath } -// InputPower returns from OpticalAmplifier_SupervisoryChannel the path struct for its child "input-power". -func (n *OpticalAmplifier_SupervisoryChannel) InputPower() *OpticalAmplifier_SupervisoryChannel_InputPower { - return &OpticalAmplifier_SupervisoryChannel_InputPower{ +// InputPower returns from OpticalAmplifier_SupervisoryChannelPath the path struct for its child "input-power". +func (n *OpticalAmplifier_SupervisoryChannelPath) InputPower() *OpticalAmplifier_SupervisoryChannel_InputPowerPath { + return &OpticalAmplifier_SupervisoryChannel_InputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -153814,9 +154060,9 @@ func (n *OpticalAmplifier_SupervisoryChannel) InputPower() *OpticalAmplifier_Sup } } -// InputPower returns from OpticalAmplifier_SupervisoryChannelAny the path struct for its child "input-power". -func (n *OpticalAmplifier_SupervisoryChannelAny) InputPower() *OpticalAmplifier_SupervisoryChannel_InputPowerAny { - return &OpticalAmplifier_SupervisoryChannel_InputPowerAny{ +// InputPower returns from OpticalAmplifier_SupervisoryChannelPathAny the path struct for its child "input-power". +func (n *OpticalAmplifier_SupervisoryChannelPathAny) InputPower() *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "input-power"}, map[string]interface{}{}, @@ -153825,31 +154071,31 @@ func (n *OpticalAmplifier_SupervisoryChannelAny) InputPower() *OpticalAmplifier_ } } -// Interface returns from OpticalAmplifier_SupervisoryChannel the path struct for its child "interface". -func (n *OpticalAmplifier_SupervisoryChannel) Interface() *OpticalAmplifier_SupervisoryChannel_Interface { - return &OpticalAmplifier_SupervisoryChannel_Interface{ +// Interface returns from OpticalAmplifier_SupervisoryChannelPath the path struct for its child "interface". +func (n *OpticalAmplifier_SupervisoryChannelPath) Interface() *OpticalAmplifier_SupervisoryChannel_InterfacePath { + return &OpticalAmplifier_SupervisoryChannel_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from OpticalAmplifier_SupervisoryChannelAny the path struct for its child "interface". -func (n *OpticalAmplifier_SupervisoryChannelAny) Interface() *OpticalAmplifier_SupervisoryChannel_InterfaceAny { - return &OpticalAmplifier_SupervisoryChannel_InterfaceAny{ +// Interface returns from OpticalAmplifier_SupervisoryChannelPathAny the path struct for its child "interface". +func (n *OpticalAmplifier_SupervisoryChannelPathAny) Interface() *OpticalAmplifier_SupervisoryChannel_InterfacePathAny { + return &OpticalAmplifier_SupervisoryChannel_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// LaserBiasCurrent returns from OpticalAmplifier_SupervisoryChannel the path struct for its child "laser-bias-current". -func (n *OpticalAmplifier_SupervisoryChannel) LaserBiasCurrent() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent{ +// LaserBiasCurrent returns from OpticalAmplifier_SupervisoryChannelPath the path struct for its child "laser-bias-current". +func (n *OpticalAmplifier_SupervisoryChannelPath) LaserBiasCurrent() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -153858,9 +154104,9 @@ func (n *OpticalAmplifier_SupervisoryChannel) LaserBiasCurrent() *OpticalAmplifi } } -// LaserBiasCurrent returns from OpticalAmplifier_SupervisoryChannelAny the path struct for its child "laser-bias-current". -func (n *OpticalAmplifier_SupervisoryChannelAny) LaserBiasCurrent() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny{ +// LaserBiasCurrent returns from OpticalAmplifier_SupervisoryChannelPathAny the path struct for its child "laser-bias-current". +func (n *OpticalAmplifier_SupervisoryChannelPathAny) LaserBiasCurrent() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "laser-bias-current"}, map[string]interface{}{}, @@ -153869,9 +154115,9 @@ func (n *OpticalAmplifier_SupervisoryChannelAny) LaserBiasCurrent() *OpticalAmpl } } -// OutputFrequency returns from OpticalAmplifier_SupervisoryChannel the path struct for its child "output-frequency". -func (n *OpticalAmplifier_SupervisoryChannel) OutputFrequency() *OpticalAmplifier_SupervisoryChannel_OutputFrequency { - return &OpticalAmplifier_SupervisoryChannel_OutputFrequency{ +// OutputFrequency returns from OpticalAmplifier_SupervisoryChannelPath the path struct for its child "output-frequency". +func (n *OpticalAmplifier_SupervisoryChannelPath) OutputFrequency() *OpticalAmplifier_SupervisoryChannel_OutputFrequencyPath { + return &OpticalAmplifier_SupervisoryChannel_OutputFrequencyPath{ NodePath: ygot.NewNodePath( []string{"state", "output-frequency"}, map[string]interface{}{}, @@ -153880,9 +154126,9 @@ func (n *OpticalAmplifier_SupervisoryChannel) OutputFrequency() *OpticalAmplifie } } -// OutputFrequency returns from OpticalAmplifier_SupervisoryChannelAny the path struct for its child "output-frequency". -func (n *OpticalAmplifier_SupervisoryChannelAny) OutputFrequency() *OpticalAmplifier_SupervisoryChannel_OutputFrequencyAny { - return &OpticalAmplifier_SupervisoryChannel_OutputFrequencyAny{ +// OutputFrequency returns from OpticalAmplifier_SupervisoryChannelPathAny the path struct for its child "output-frequency". +func (n *OpticalAmplifier_SupervisoryChannelPathAny) OutputFrequency() *OpticalAmplifier_SupervisoryChannel_OutputFrequencyPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputFrequencyPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-frequency"}, map[string]interface{}{}, @@ -153891,9 +154137,9 @@ func (n *OpticalAmplifier_SupervisoryChannelAny) OutputFrequency() *OpticalAmpli } } -// OutputPower returns from OpticalAmplifier_SupervisoryChannel the path struct for its child "output-power". -func (n *OpticalAmplifier_SupervisoryChannel) OutputPower() *OpticalAmplifier_SupervisoryChannel_OutputPower { - return &OpticalAmplifier_SupervisoryChannel_OutputPower{ +// OutputPower returns from OpticalAmplifier_SupervisoryChannelPath the path struct for its child "output-power". +func (n *OpticalAmplifier_SupervisoryChannelPath) OutputPower() *OpticalAmplifier_SupervisoryChannel_OutputPowerPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPowerPath{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -153902,9 +154148,9 @@ func (n *OpticalAmplifier_SupervisoryChannel) OutputPower() *OpticalAmplifier_Su } } -// OutputPower returns from OpticalAmplifier_SupervisoryChannelAny the path struct for its child "output-power". -func (n *OpticalAmplifier_SupervisoryChannelAny) OutputPower() *OpticalAmplifier_SupervisoryChannel_OutputPowerAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPowerAny{ +// OutputPower returns from OpticalAmplifier_SupervisoryChannelPathAny the path struct for its child "output-power". +func (n *OpticalAmplifier_SupervisoryChannelPathAny) OutputPower() *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "output-power"}, map[string]interface{}{}, @@ -153913,89 +154159,89 @@ func (n *OpticalAmplifier_SupervisoryChannelAny) OutputPower() *OpticalAmplifier } } -// OpticalAmplifier_SupervisoryChannel_InputPower represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower struct { +// OpticalAmplifier_SupervisoryChannel_InputPowerPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPowerPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPowerAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPowerAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPowerPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPowerPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_Avg represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_Avg struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_AvgAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_Instant represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_Instant struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_InstantAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_Interval represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_Interval struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_IntervalAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_Max represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_Max struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MaxAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MaxTime struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_Min represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_Min struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MinAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MinTime struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_InputPower_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_InputPower_MinTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/input-power/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Avg() *OpticalAmplifier_SupervisoryChannel_InputPower_Avg { - return &OpticalAmplifier_SupervisoryChannel_InputPower_Avg{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) Avg() *OpticalAmplifier_SupervisoryChannel_InputPower_AvgPath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154004,9 +154250,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Avg() *OpticalAmplifier } } -// Avg returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Avg() *OpticalAmplifier_SupervisoryChannel_InputPower_AvgAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_AvgAny{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) Avg() *OpticalAmplifier_SupervisoryChannel_InputPower_AvgPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154015,9 +154261,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Avg() *OpticalAmplif } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Instant() *OpticalAmplifier_SupervisoryChannel_InputPower_Instant { - return &OpticalAmplifier_SupervisoryChannel_InputPower_Instant{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) Instant() *OpticalAmplifier_SupervisoryChannel_InputPower_InstantPath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154026,9 +154272,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Instant() *OpticalAmpli } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Instant() *OpticalAmplifier_SupervisoryChannel_InputPower_InstantAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_InstantAny{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) Instant() *OpticalAmplifier_SupervisoryChannel_InputPower_InstantPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154037,9 +154283,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Instant() *OpticalAm } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Interval() *OpticalAmplifier_SupervisoryChannel_InputPower_Interval { - return &OpticalAmplifier_SupervisoryChannel_InputPower_Interval{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) Interval() *OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154048,9 +154294,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Interval() *OpticalAmpl } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Interval() *OpticalAmplifier_SupervisoryChannel_InputPower_IntervalAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_IntervalAny{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) Interval() *OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154059,9 +154305,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Interval() *OpticalA } } -// Max returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Max() *OpticalAmplifier_SupervisoryChannel_InputPower_Max { - return &OpticalAmplifier_SupervisoryChannel_InputPower_Max{ +// Max returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) Max() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxPath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154070,9 +154316,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Max() *OpticalAmplifier } } -// Max returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Max() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxAny{ +// Max returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) Max() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154081,9 +154327,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Max() *OpticalAmplif } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) MaxTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxTime { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxTime{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) MaxTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154092,9 +154338,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) MaxTime() *OpticalAmpli } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimeAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154103,9 +154349,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) MaxTime() *OpticalAm } } -// Min returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Min() *OpticalAmplifier_SupervisoryChannel_InputPower_Min { - return &OpticalAmplifier_SupervisoryChannel_InputPower_Min{ +// Min returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) Min() *OpticalAmplifier_SupervisoryChannel_InputPower_MinPath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154114,9 +154360,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) Min() *OpticalAmplifier } } -// Min returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Min() *OpticalAmplifier_SupervisoryChannel_InputPower_MinAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MinAny{ +// Min returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) Min() *OpticalAmplifier_SupervisoryChannel_InputPower_MinPathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154125,9 +154371,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) Min() *OpticalAmplif } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_InputPower the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_InputPower) MinTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MinTime { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MinTime{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerPath the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPath) MinTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePath { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154136,9 +154382,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPower) MinTime() *OpticalAmpli } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerAny the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) MinTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MinTimeAny { - return &OpticalAmplifier_SupervisoryChannel_InputPower_MinTimeAny{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_InputPowerPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_InputPowerPathAny) MinTime() *OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_InputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154147,89 +154393,89 @@ func (n *OpticalAmplifier_SupervisoryChannel_InputPowerAny) MinTime() *OpticalAm } } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Avg represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Avg struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Instant represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Instant struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Interval represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Interval struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Max represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Max struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTime struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Min represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Min struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTime struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/laser-bias-current/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Avg() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Avg { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Avg{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) Avg() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154238,9 +154484,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Avg() *OpticalAmp } } -// Avg returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Avg() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgAny{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) Avg() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154249,9 +154495,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Avg() *Optical } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Instant() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Instant { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Instant{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) Instant() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154260,9 +154506,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Instant() *Optica } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Instant() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantAny{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) Instant() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154271,9 +154517,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Instant() *Opt } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Interval() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Interval { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Interval{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) Interval() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154282,9 +154528,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Interval() *Optic } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Interval() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalAny{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) Interval() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154293,9 +154539,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Interval() *Op } } -// Max returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Max() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Max { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Max{ +// Max returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) Max() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154304,9 +154550,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Max() *OpticalAmp } } -// Max returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Max() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxAny{ +// Max returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) Max() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154315,9 +154561,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Max() *Optical } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) MaxTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTime { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTime{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) MaxTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154326,9 +154572,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) MaxTime() *Optica } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimeAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154337,9 +154583,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) MaxTime() *Opt } } -// Min returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Min() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Min { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_Min{ +// Min returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) Min() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154348,9 +154594,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) Min() *OpticalAmp } } -// Min returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Min() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinAny{ +// Min returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) Min() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154359,9 +154605,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) Min() *Optical } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) MinTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTime { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTime{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPath) MinTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePath { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154370,9 +154616,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent) MinTime() *Optica } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) MinTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimeAny { - return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimeAny{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentPathAny) MinTime() *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_LaserBiasCurrent_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154381,89 +154627,89 @@ func (n *OpticalAmplifier_SupervisoryChannel_LaserBiasCurrentAny) MinTime() *Opt } } -// OpticalAmplifier_SupervisoryChannel_OutputPower represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower struct { +// OpticalAmplifier_SupervisoryChannel_OutputPowerPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPowerPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPowerAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPowerAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_Avg represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_Avg struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_AvgAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/avg YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_AvgAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/avg YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_Instant represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_Instant struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_InstantAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/instant YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_InstantAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/instant YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_Interval represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_Interval struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/interval YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/interval YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_Max represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_Max struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTime struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/max-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_Min represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_Min struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MinPath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MinPath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MinAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MinAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MinPathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MinPathAny struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MinTime represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MinTime struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePath represents the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePath struct { *ygot.NodePath } -// OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimeAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min-time YANG schema element. -type OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimeAny struct { +// OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePathAny represents the wildcard version of the /openconfig-optical-amplifier/optical-amplifier/supervisory-channels/supervisory-channel/state/output-power/min-time YANG schema element. +type OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Avg() *OpticalAmplifier_SupervisoryChannel_OutputPower_Avg { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_Avg{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) Avg() *OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154472,9 +154718,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Avg() *OpticalAmplifie } } -// Avg returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "avg". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Avg() *OpticalAmplifier_SupervisoryChannel_OutputPower_AvgAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_AvgAny{ +// Avg returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "avg". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) Avg() *OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -154483,9 +154729,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Avg() *OpticalAmpli } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Instant() *OpticalAmplifier_SupervisoryChannel_OutputPower_Instant { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_Instant{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) Instant() *OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154494,9 +154740,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Instant() *OpticalAmpl } } -// Instant returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "instant". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Instant() *OpticalAmplifier_SupervisoryChannel_OutputPower_InstantAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_InstantAny{ +// Instant returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "instant". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) Instant() *OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -154505,9 +154751,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Instant() *OpticalA } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Interval() *OpticalAmplifier_SupervisoryChannel_OutputPower_Interval { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_Interval{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) Interval() *OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154516,9 +154762,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Interval() *OpticalAmp } } -// Interval returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "interval". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Interval() *OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalAny{ +// Interval returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "interval". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) Interval() *OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -154527,9 +154773,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Interval() *Optical } } -// Max returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Max() *OpticalAmplifier_SupervisoryChannel_OutputPower_Max { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_Max{ +// Max returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) Max() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154538,9 +154784,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Max() *OpticalAmplifie } } -// Max returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "max". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Max() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxAny{ +// Max returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "max". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) Max() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -154549,9 +154795,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Max() *OpticalAmpli } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) MaxTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTime { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTime{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) MaxTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154560,9 +154806,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) MaxTime() *OpticalAmpl } } -// MaxTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "max-time". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimeAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimeAny{ +// MaxTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "max-time". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) MaxTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -154571,9 +154817,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) MaxTime() *OpticalA } } -// Min returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Min() *OpticalAmplifier_SupervisoryChannel_OutputPower_Min { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_Min{ +// Min returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) Min() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinPath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154582,9 +154828,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) Min() *OpticalAmplifie } } -// Min returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "min". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Min() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinAny{ +// Min returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "min". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) Min() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinPathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -154593,9 +154839,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) Min() *OpticalAmpli } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_OutputPower the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) MinTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinTime { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinTime{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPath the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPath) MinTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePath { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154604,9 +154850,9 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPower) MinTime() *OpticalAmpl } } -// MinTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerAny the path struct for its child "min-time". -func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) MinTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimeAny { - return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimeAny{ +// MinTime returns from OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny the path struct for its child "min-time". +func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerPathAny) MinTime() *OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePathAny { + return &OpticalAmplifier_SupervisoryChannel_OutputPower_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -154615,19 +154861,19 @@ func (n *OpticalAmplifier_SupervisoryChannel_OutputPowerAny) MinTime() *OpticalA } } -// RelayAgent represents the /openconfig-relay-agent/relay-agent YANG schema element. -type RelayAgent struct { +// RelayAgentPath represents the /openconfig-relay-agent/relay-agent YANG schema element. +type RelayAgentPath struct { *ygot.NodePath } -// RelayAgentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent YANG schema element. -type RelayAgentAny struct { +// RelayAgentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent YANG schema element. +type RelayAgentPathAny struct { *ygot.NodePath } -// Dhcp returns from RelayAgent the path struct for its child "dhcp". -func (n *RelayAgent) Dhcp() *RelayAgent_Dhcp { - return &RelayAgent_Dhcp{ +// Dhcp returns from RelayAgentPath the path struct for its child "dhcp". +func (n *RelayAgentPath) Dhcp() *RelayAgent_DhcpPath { + return &RelayAgent_DhcpPath{ NodePath: ygot.NewNodePath( []string{"dhcp"}, map[string]interface{}{}, @@ -154636,9 +154882,9 @@ func (n *RelayAgent) Dhcp() *RelayAgent_Dhcp { } } -// Dhcp returns from RelayAgentAny the path struct for its child "dhcp". -func (n *RelayAgentAny) Dhcp() *RelayAgent_DhcpAny { - return &RelayAgent_DhcpAny{ +// Dhcp returns from RelayAgentPathAny the path struct for its child "dhcp". +func (n *RelayAgentPathAny) Dhcp() *RelayAgent_DhcpPathAny { + return &RelayAgent_DhcpPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp"}, map[string]interface{}{}, @@ -154647,9 +154893,9 @@ func (n *RelayAgentAny) Dhcp() *RelayAgent_DhcpAny { } } -// Dhcpv6 returns from RelayAgent the path struct for its child "dhcpv6". -func (n *RelayAgent) Dhcpv6() *RelayAgent_Dhcpv6 { - return &RelayAgent_Dhcpv6{ +// Dhcpv6 returns from RelayAgentPath the path struct for its child "dhcpv6". +func (n *RelayAgentPath) Dhcpv6() *RelayAgent_Dhcpv6Path { + return &RelayAgent_Dhcpv6Path{ NodePath: ygot.NewNodePath( []string{"dhcpv6"}, map[string]interface{}{}, @@ -154658,9 +154904,9 @@ func (n *RelayAgent) Dhcpv6() *RelayAgent_Dhcpv6 { } } -// Dhcpv6 returns from RelayAgentAny the path struct for its child "dhcpv6". -func (n *RelayAgentAny) Dhcpv6() *RelayAgent_Dhcpv6Any { - return &RelayAgent_Dhcpv6Any{ +// Dhcpv6 returns from RelayAgentPathAny the path struct for its child "dhcpv6". +func (n *RelayAgentPathAny) Dhcpv6() *RelayAgent_Dhcpv6PathAny { + return &RelayAgent_Dhcpv6PathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6"}, map[string]interface{}{}, @@ -154669,29 +154915,29 @@ func (n *RelayAgentAny) Dhcpv6() *RelayAgent_Dhcpv6Any { } } -// RelayAgent_Dhcp represents the /openconfig-relay-agent/relay-agent/dhcp YANG schema element. -type RelayAgent_Dhcp struct { +// RelayAgent_DhcpPath represents the /openconfig-relay-agent/relay-agent/dhcp YANG schema element. +type RelayAgent_DhcpPath struct { *ygot.NodePath } -// RelayAgent_DhcpAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp YANG schema element. -type RelayAgent_DhcpAny struct { +// RelayAgent_DhcpPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp YANG schema element. +type RelayAgent_DhcpPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_EnableRelayAgent represents the /openconfig-relay-agent/relay-agent/dhcp/state/enable-relay-agent YANG schema element. -type RelayAgent_Dhcp_EnableRelayAgent struct { +// RelayAgent_Dhcp_EnableRelayAgentPath represents the /openconfig-relay-agent/relay-agent/dhcp/config/enable-relay-agent YANG schema element. +type RelayAgent_Dhcp_EnableRelayAgentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_EnableRelayAgentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/state/enable-relay-agent YANG schema element. -type RelayAgent_Dhcp_EnableRelayAgentAny struct { +// RelayAgent_Dhcp_EnableRelayAgentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/config/enable-relay-agent YANG schema element. +type RelayAgent_Dhcp_EnableRelayAgentPathAny struct { *ygot.NodePath } -// AgentInformationOption returns from RelayAgent_Dhcp the path struct for its child "agent-information-option". -func (n *RelayAgent_Dhcp) AgentInformationOption() *RelayAgent_Dhcp_AgentInformationOption { - return &RelayAgent_Dhcp_AgentInformationOption{ +// AgentInformationOption returns from RelayAgent_DhcpPath the path struct for its child "agent-information-option". +func (n *RelayAgent_DhcpPath) AgentInformationOption() *RelayAgent_Dhcp_AgentInformationOptionPath { + return &RelayAgent_Dhcp_AgentInformationOptionPath{ NodePath: ygot.NewNodePath( []string{"agent-information-option"}, map[string]interface{}{}, @@ -154700,9 +154946,9 @@ func (n *RelayAgent_Dhcp) AgentInformationOption() *RelayAgent_Dhcp_AgentInforma } } -// AgentInformationOption returns from RelayAgent_DhcpAny the path struct for its child "agent-information-option". -func (n *RelayAgent_DhcpAny) AgentInformationOption() *RelayAgent_Dhcp_AgentInformationOptionAny { - return &RelayAgent_Dhcp_AgentInformationOptionAny{ +// AgentInformationOption returns from RelayAgent_DhcpPathAny the path struct for its child "agent-information-option". +func (n *RelayAgent_DhcpPathAny) AgentInformationOption() *RelayAgent_Dhcp_AgentInformationOptionPathAny { + return &RelayAgent_Dhcp_AgentInformationOptionPathAny{ NodePath: ygot.NewNodePath( []string{"agent-information-option"}, map[string]interface{}{}, @@ -154711,31 +154957,31 @@ func (n *RelayAgent_DhcpAny) AgentInformationOption() *RelayAgent_Dhcp_AgentInfo } } -// EnableRelayAgent returns from RelayAgent_Dhcp the path struct for its child "enable-relay-agent". -func (n *RelayAgent_Dhcp) EnableRelayAgent() *RelayAgent_Dhcp_EnableRelayAgent { - return &RelayAgent_Dhcp_EnableRelayAgent{ +// EnableRelayAgent returns from RelayAgent_DhcpPath the path struct for its child "enable-relay-agent". +func (n *RelayAgent_DhcpPath) EnableRelayAgent() *RelayAgent_Dhcp_EnableRelayAgentPath { + return &RelayAgent_Dhcp_EnableRelayAgentPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-relay-agent"}, + []string{"config", "enable-relay-agent"}, map[string]interface{}{}, n, ), } } -// EnableRelayAgent returns from RelayAgent_DhcpAny the path struct for its child "enable-relay-agent". -func (n *RelayAgent_DhcpAny) EnableRelayAgent() *RelayAgent_Dhcp_EnableRelayAgentAny { - return &RelayAgent_Dhcp_EnableRelayAgentAny{ +// EnableRelayAgent returns from RelayAgent_DhcpPathAny the path struct for its child "enable-relay-agent". +func (n *RelayAgent_DhcpPathAny) EnableRelayAgent() *RelayAgent_Dhcp_EnableRelayAgentPathAny { + return &RelayAgent_Dhcp_EnableRelayAgentPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-relay-agent"}, + []string{"config", "enable-relay-agent"}, map[string]interface{}{}, n, ), } } -// InterfaceAny returns from RelayAgent_Dhcp the path struct for its child "interface". -func (n *RelayAgent_Dhcp) InterfaceAny() *RelayAgent_Dhcp_InterfaceAny { - return &RelayAgent_Dhcp_InterfaceAny{ +// InterfaceAny returns from RelayAgent_DhcpPath the path struct for its child "interface". +func (n *RelayAgent_DhcpPath) InterfaceAny() *RelayAgent_Dhcp_InterfacePathAny { + return &RelayAgent_Dhcp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -154744,9 +154990,9 @@ func (n *RelayAgent_Dhcp) InterfaceAny() *RelayAgent_Dhcp_InterfaceAny { } } -// InterfaceAny returns from RelayAgent_DhcpAny the path struct for its child "interface". -func (n *RelayAgent_DhcpAny) InterfaceAny() *RelayAgent_Dhcp_InterfaceAny { - return &RelayAgent_Dhcp_InterfaceAny{ +// InterfaceAny returns from RelayAgent_DhcpPathAny the path struct for its child "interface". +func (n *RelayAgent_DhcpPathAny) InterfaceAny() *RelayAgent_Dhcp_InterfacePathAny { + return &RelayAgent_Dhcp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -154755,9 +155001,9 @@ func (n *RelayAgent_DhcpAny) InterfaceAny() *RelayAgent_Dhcp_InterfaceAny { } } -// Interface returns from RelayAgent_Dhcp the path struct for its child "interface". -func (n *RelayAgent_Dhcp) Interface(Id string) *RelayAgent_Dhcp_Interface { - return &RelayAgent_Dhcp_Interface{ +// Interface returns from RelayAgent_DhcpPath the path struct for its child "interface". +func (n *RelayAgent_DhcpPath) Interface(Id string) *RelayAgent_Dhcp_InterfacePath { + return &RelayAgent_Dhcp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -154766,9 +155012,9 @@ func (n *RelayAgent_Dhcp) Interface(Id string) *RelayAgent_Dhcp_Interface { } } -// Interface returns from RelayAgent_DhcpAny the path struct for its child "interface". -func (n *RelayAgent_DhcpAny) Interface(Id string) *RelayAgent_Dhcp_InterfaceAny { - return &RelayAgent_Dhcp_InterfaceAny{ +// Interface returns from RelayAgent_DhcpPathAny the path struct for its child "interface". +func (n *RelayAgent_DhcpPathAny) Interface(Id string) *RelayAgent_Dhcp_InterfacePathAny { + return &RelayAgent_Dhcp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -154777,91 +155023,91 @@ func (n *RelayAgent_DhcpAny) Interface(Id string) *RelayAgent_Dhcp_InterfaceAny } } -// RelayAgent_Dhcp_AgentInformationOption represents the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option YANG schema element. -type RelayAgent_Dhcp_AgentInformationOption struct { +// RelayAgent_Dhcp_AgentInformationOptionPath represents the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option YANG schema element. +type RelayAgent_Dhcp_AgentInformationOptionPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_AgentInformationOptionAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option YANG schema element. -type RelayAgent_Dhcp_AgentInformationOptionAny struct { +// RelayAgent_Dhcp_AgentInformationOptionPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option YANG schema element. +type RelayAgent_Dhcp_AgentInformationOptionPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_AgentInformationOption_Enable represents the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option/state/enable YANG schema element. -type RelayAgent_Dhcp_AgentInformationOption_Enable struct { +// RelayAgent_Dhcp_AgentInformationOption_EnablePath represents the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option/config/enable YANG schema element. +type RelayAgent_Dhcp_AgentInformationOption_EnablePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_AgentInformationOption_EnableAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option/state/enable YANG schema element. -type RelayAgent_Dhcp_AgentInformationOption_EnableAny struct { +// RelayAgent_Dhcp_AgentInformationOption_EnablePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/agent-information-option/config/enable YANG schema element. +type RelayAgent_Dhcp_AgentInformationOption_EnablePathAny struct { *ygot.NodePath } -// Enable returns from RelayAgent_Dhcp_AgentInformationOption the path struct for its child "enable". -func (n *RelayAgent_Dhcp_AgentInformationOption) Enable() *RelayAgent_Dhcp_AgentInformationOption_Enable { - return &RelayAgent_Dhcp_AgentInformationOption_Enable{ +// Enable returns from RelayAgent_Dhcp_AgentInformationOptionPath the path struct for its child "enable". +func (n *RelayAgent_Dhcp_AgentInformationOptionPath) Enable() *RelayAgent_Dhcp_AgentInformationOption_EnablePath { + return &RelayAgent_Dhcp_AgentInformationOption_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from RelayAgent_Dhcp_AgentInformationOptionAny the path struct for its child "enable". -func (n *RelayAgent_Dhcp_AgentInformationOptionAny) Enable() *RelayAgent_Dhcp_AgentInformationOption_EnableAny { - return &RelayAgent_Dhcp_AgentInformationOption_EnableAny{ +// Enable returns from RelayAgent_Dhcp_AgentInformationOptionPathAny the path struct for its child "enable". +func (n *RelayAgent_Dhcp_AgentInformationOptionPathAny) Enable() *RelayAgent_Dhcp_AgentInformationOption_EnablePathAny { + return &RelayAgent_Dhcp_AgentInformationOption_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// RelayAgent_Dhcp_Interface represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface YANG schema element. -type RelayAgent_Dhcp_Interface struct { +// RelayAgent_Dhcp_InterfacePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface YANG schema element. +type RelayAgent_Dhcp_InterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_InterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface YANG schema element. -type RelayAgent_Dhcp_InterfaceAny struct { +// RelayAgent_Dhcp_InterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface YANG schema element. +type RelayAgent_Dhcp_InterfacePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Enable represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/enable YANG schema element. -type RelayAgent_Dhcp_Interface_Enable struct { +// RelayAgent_Dhcp_Interface_EnablePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/enable YANG schema element. +type RelayAgent_Dhcp_Interface_EnablePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_EnableAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/enable YANG schema element. -type RelayAgent_Dhcp_Interface_EnableAny struct { +// RelayAgent_Dhcp_Interface_EnablePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/enable YANG schema element. +type RelayAgent_Dhcp_Interface_EnablePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_HelperAddress represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/helper-address YANG schema element. -type RelayAgent_Dhcp_Interface_HelperAddress struct { +// RelayAgent_Dhcp_Interface_HelperAddressPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/helper-address YANG schema element. +type RelayAgent_Dhcp_Interface_HelperAddressPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_HelperAddressAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/helper-address YANG schema element. -type RelayAgent_Dhcp_Interface_HelperAddressAny struct { +// RelayAgent_Dhcp_Interface_HelperAddressPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/helper-address YANG schema element. +type RelayAgent_Dhcp_Interface_HelperAddressPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Id represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/id YANG schema element. -type RelayAgent_Dhcp_Interface_Id struct { +// RelayAgent_Dhcp_Interface_IdPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/id YANG schema element. +type RelayAgent_Dhcp_Interface_IdPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_IdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/id YANG schema element. -type RelayAgent_Dhcp_Interface_IdAny struct { +// RelayAgent_Dhcp_Interface_IdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/config/id YANG schema element. +type RelayAgent_Dhcp_Interface_IdPathAny struct { *ygot.NodePath } -// AgentInformationOption returns from RelayAgent_Dhcp_Interface the path struct for its child "agent-information-option". -func (n *RelayAgent_Dhcp_Interface) AgentInformationOption() *RelayAgent_Dhcp_Interface_AgentInformationOption { - return &RelayAgent_Dhcp_Interface_AgentInformationOption{ +// AgentInformationOption returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "agent-information-option". +func (n *RelayAgent_Dhcp_InterfacePath) AgentInformationOption() *RelayAgent_Dhcp_Interface_AgentInformationOptionPath { + return &RelayAgent_Dhcp_Interface_AgentInformationOptionPath{ NodePath: ygot.NewNodePath( []string{"agent-information-option"}, map[string]interface{}{}, @@ -154870,9 +155116,9 @@ func (n *RelayAgent_Dhcp_Interface) AgentInformationOption() *RelayAgent_Dhcp_In } } -// AgentInformationOption returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "agent-information-option". -func (n *RelayAgent_Dhcp_InterfaceAny) AgentInformationOption() *RelayAgent_Dhcp_Interface_AgentInformationOptionAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOptionAny{ +// AgentInformationOption returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "agent-information-option". +func (n *RelayAgent_Dhcp_InterfacePathAny) AgentInformationOption() *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny{ NodePath: ygot.NewNodePath( []string{"agent-information-option"}, map[string]interface{}{}, @@ -154881,9 +155127,9 @@ func (n *RelayAgent_Dhcp_InterfaceAny) AgentInformationOption() *RelayAgent_Dhcp } } -// Counters returns from RelayAgent_Dhcp_Interface the path struct for its child "counters". -func (n *RelayAgent_Dhcp_Interface) Counters() *RelayAgent_Dhcp_Interface_Counters { - return &RelayAgent_Dhcp_Interface_Counters{ +// Counters returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "counters". +func (n *RelayAgent_Dhcp_InterfacePath) Counters() *RelayAgent_Dhcp_Interface_CountersPath { + return &RelayAgent_Dhcp_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -154892,9 +155138,9 @@ func (n *RelayAgent_Dhcp_Interface) Counters() *RelayAgent_Dhcp_Interface_Counte } } -// Counters returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "counters". -func (n *RelayAgent_Dhcp_InterfaceAny) Counters() *RelayAgent_Dhcp_Interface_CountersAny { - return &RelayAgent_Dhcp_Interface_CountersAny{ +// Counters returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "counters". +func (n *RelayAgent_Dhcp_InterfacePathAny) Counters() *RelayAgent_Dhcp_Interface_CountersPathAny { + return &RelayAgent_Dhcp_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -154903,75 +155149,75 @@ func (n *RelayAgent_Dhcp_InterfaceAny) Counters() *RelayAgent_Dhcp_Interface_Cou } } -// Enable returns from RelayAgent_Dhcp_Interface the path struct for its child "enable". -func (n *RelayAgent_Dhcp_Interface) Enable() *RelayAgent_Dhcp_Interface_Enable { - return &RelayAgent_Dhcp_Interface_Enable{ +// Enable returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "enable". +func (n *RelayAgent_Dhcp_InterfacePath) Enable() *RelayAgent_Dhcp_Interface_EnablePath { + return &RelayAgent_Dhcp_Interface_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "enable". -func (n *RelayAgent_Dhcp_InterfaceAny) Enable() *RelayAgent_Dhcp_Interface_EnableAny { - return &RelayAgent_Dhcp_Interface_EnableAny{ +// Enable returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "enable". +func (n *RelayAgent_Dhcp_InterfacePathAny) Enable() *RelayAgent_Dhcp_Interface_EnablePathAny { + return &RelayAgent_Dhcp_Interface_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// HelperAddress returns from RelayAgent_Dhcp_Interface the path struct for its child "helper-address". -func (n *RelayAgent_Dhcp_Interface) HelperAddress() *RelayAgent_Dhcp_Interface_HelperAddress { - return &RelayAgent_Dhcp_Interface_HelperAddress{ +// HelperAddress returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "helper-address". +func (n *RelayAgent_Dhcp_InterfacePath) HelperAddress() *RelayAgent_Dhcp_Interface_HelperAddressPath { + return &RelayAgent_Dhcp_Interface_HelperAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-address"}, + []string{"config", "helper-address"}, map[string]interface{}{}, n, ), } } -// HelperAddress returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "helper-address". -func (n *RelayAgent_Dhcp_InterfaceAny) HelperAddress() *RelayAgent_Dhcp_Interface_HelperAddressAny { - return &RelayAgent_Dhcp_Interface_HelperAddressAny{ +// HelperAddress returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "helper-address". +func (n *RelayAgent_Dhcp_InterfacePathAny) HelperAddress() *RelayAgent_Dhcp_Interface_HelperAddressPathAny { + return &RelayAgent_Dhcp_Interface_HelperAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-address"}, + []string{"config", "helper-address"}, map[string]interface{}{}, n, ), } } -// Id returns from RelayAgent_Dhcp_Interface the path struct for its child "id". -func (n *RelayAgent_Dhcp_Interface) Id() *RelayAgent_Dhcp_Interface_Id { - return &RelayAgent_Dhcp_Interface_Id{ +// Id returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "id". +func (n *RelayAgent_Dhcp_InterfacePath) Id() *RelayAgent_Dhcp_Interface_IdPath { + return &RelayAgent_Dhcp_Interface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "id". -func (n *RelayAgent_Dhcp_InterfaceAny) Id() *RelayAgent_Dhcp_Interface_IdAny { - return &RelayAgent_Dhcp_Interface_IdAny{ +// Id returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "id". +func (n *RelayAgent_Dhcp_InterfacePathAny) Id() *RelayAgent_Dhcp_Interface_IdPathAny { + return &RelayAgent_Dhcp_Interface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from RelayAgent_Dhcp_Interface the path struct for its child "interface-ref". -func (n *RelayAgent_Dhcp_Interface) InterfaceRef() *RelayAgent_Dhcp_Interface_InterfaceRef { - return &RelayAgent_Dhcp_Interface_InterfaceRef{ +// InterfaceRef returns from RelayAgent_Dhcp_InterfacePath the path struct for its child "interface-ref". +func (n *RelayAgent_Dhcp_InterfacePath) InterfaceRef() *RelayAgent_Dhcp_Interface_InterfaceRefPath { + return &RelayAgent_Dhcp_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -154980,9 +155226,9 @@ func (n *RelayAgent_Dhcp_Interface) InterfaceRef() *RelayAgent_Dhcp_Interface_In } } -// InterfaceRef returns from RelayAgent_Dhcp_InterfaceAny the path struct for its child "interface-ref". -func (n *RelayAgent_Dhcp_InterfaceAny) InterfaceRef() *RelayAgent_Dhcp_Interface_InterfaceRefAny { - return &RelayAgent_Dhcp_Interface_InterfaceRefAny{ +// InterfaceRef returns from RelayAgent_Dhcp_InterfacePathAny the path struct for its child "interface-ref". +func (n *RelayAgent_Dhcp_InterfacePathAny) InterfaceRef() *RelayAgent_Dhcp_Interface_InterfaceRefPathAny { + return &RelayAgent_Dhcp_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -154991,135 +155237,135 @@ func (n *RelayAgent_Dhcp_InterfaceAny) InterfaceRef() *RelayAgent_Dhcp_Interface } } -// RelayAgent_Dhcp_Interface_AgentInformationOption represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption struct { +// RelayAgent_Dhcp_Interface_AgentInformationOptionPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOptionPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOptionAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOptionAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitId represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/circuit-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitId struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/circuit-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/circuit-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/circuit-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_Enable represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/enable YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_Enable struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/enable YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_EnableAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/enable YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_EnableAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/enable YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteId represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/remote-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteId struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/remote-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/remote-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/config/remote-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitId represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-circuit-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitId struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-circuit-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-circuit-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-circuit-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteId represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-remote-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteId struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-remote-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-remote-id YANG schema element. -type RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdAny struct { +// RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/agent-information-option/state/sent-remote-id YANG schema element. +type RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPathAny struct { *ygot.NodePath } -// CircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOption the path struct for its child "circuit-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) CircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitId { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitId{ +// CircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPath the path struct for its child "circuit-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPath) CircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPath { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "circuit-id"}, + []string{"config", "circuit-id"}, map[string]interface{}{}, n, ), } } -// CircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionAny the path struct for its child "circuit-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) CircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdAny{ +// CircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny the path struct for its child "circuit-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny) CircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_CircuitIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "circuit-id"}, + []string{"config", "circuit-id"}, map[string]interface{}{}, n, ), } } -// Enable returns from RelayAgent_Dhcp_Interface_AgentInformationOption the path struct for its child "enable". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) Enable() *RelayAgent_Dhcp_Interface_AgentInformationOption_Enable { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_Enable{ +// Enable returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPath the path struct for its child "enable". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPath) Enable() *RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePath { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from RelayAgent_Dhcp_Interface_AgentInformationOptionAny the path struct for its child "enable". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) Enable() *RelayAgent_Dhcp_Interface_AgentInformationOption_EnableAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_EnableAny{ +// Enable returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny the path struct for its child "enable". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny) Enable() *RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// RemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOption the path struct for its child "remote-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) RemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteId { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteId{ +// RemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPath the path struct for its child "remote-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPath) RemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPath { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-id"}, + []string{"config", "remote-id"}, map[string]interface{}{}, n, ), } } -// RemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionAny the path struct for its child "remote-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) RemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdAny{ +// RemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny the path struct for its child "remote-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny) RemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_RemoteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-id"}, + []string{"config", "remote-id"}, map[string]interface{}{}, n, ), } } -// SentCircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOption the path struct for its child "sent-circuit-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) SentCircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitId { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitId{ +// SentCircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPath the path struct for its child "sent-circuit-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPath) SentCircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPath { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sent-circuit-id"}, map[string]interface{}{}, @@ -155128,9 +155374,9 @@ func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) SentCircuitId() *Rela } } -// SentCircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionAny the path struct for its child "sent-circuit-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) SentCircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdAny{ +// SentCircuitId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny the path struct for its child "sent-circuit-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny) SentCircuitId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentCircuitIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent-circuit-id"}, map[string]interface{}{}, @@ -155139,9 +155385,9 @@ func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) SentCircuitId() *R } } -// SentRemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOption the path struct for its child "sent-remote-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) SentRemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteId { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteId{ +// SentRemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPath the path struct for its child "sent-remote-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPath) SentRemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPath { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sent-remote-id"}, map[string]interface{}{}, @@ -155150,9 +155396,9 @@ func (n *RelayAgent_Dhcp_Interface_AgentInformationOption) SentRemoteId() *Relay } } -// SentRemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionAny the path struct for its child "sent-remote-id". -func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) SentRemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdAny { - return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdAny{ +// SentRemoteId returns from RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny the path struct for its child "sent-remote-id". +func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionPathAny) SentRemoteId() *RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPathAny { + return &RelayAgent_Dhcp_Interface_AgentInformationOption_SentRemoteIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent-remote-id"}, map[string]interface{}{}, @@ -155161,159 +155407,159 @@ func (n *RelayAgent_Dhcp_Interface_AgentInformationOptionAny) SentRemoteId() *Re } } -// RelayAgent_Dhcp_Interface_Counters represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters YANG schema element. -type RelayAgent_Dhcp_Interface_Counters struct { +// RelayAgent_Dhcp_Interface_CountersPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters YANG schema element. +type RelayAgent_Dhcp_Interface_CountersPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_CountersAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters YANG schema element. -type RelayAgent_Dhcp_Interface_CountersAny struct { +// RelayAgent_Dhcp_Interface_CountersPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters YANG schema element. +type RelayAgent_Dhcp_Interface_CountersPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootreplySent represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootreply-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootreplySent struct { +// RelayAgent_Dhcp_Interface_Counters_BootreplySentPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootreply-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootreplySentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootreplySentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootreply-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootreplySentAny struct { +// RelayAgent_Dhcp_Interface_Counters_BootreplySentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootreply-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootreplySentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootrequestReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootrequestReceived struct { +// RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootrequestSent represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootrequestSent struct { +// RelayAgent_Dhcp_Interface_Counters_BootrequestSentPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootrequestSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_BootrequestSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_BootrequestSentAny struct { +// RelayAgent_Dhcp_Interface_Counters_BootrequestSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/bootrequest-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_BootrequestSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpAckSent represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-ack-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpAckSent struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-ack-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpAckSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-ack-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpAckSentAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-ack-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-decline-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceived struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-decline-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-decline-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-decline-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-discover-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceived struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-discover-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-discover-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-discover-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpInformReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-inform-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpInformReceived struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-inform-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-inform-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-inform-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpNackSent represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-nack-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpNackSent struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-nack-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpNackSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-nack-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpNackSentAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-nack-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpOfferSent represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-offer-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpOfferSent struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-offer-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-offer-sent YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-offer-sent YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-release-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceived struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-release-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-release-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-release-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceived represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-request-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceived struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-request-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-request-received YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedAny struct { +// RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/dhcp-request-received YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_InvalidOpcode represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-opcode YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_InvalidOpcode struct { +// RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-opcode YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_InvalidOpcodeAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-opcode YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_InvalidOpcodeAny struct { +// RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-opcode YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_InvalidOptions represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-options YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_InvalidOptions struct { +// RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-options YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_InvalidOptionsAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-options YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_InvalidOptionsAny struct { +// RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/invalid-options YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_TotalDropped represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/total-dropped YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_TotalDropped struct { +// RelayAgent_Dhcp_Interface_Counters_TotalDroppedPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/total-dropped YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_TotalDroppedPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_Counters_TotalDroppedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/total-dropped YANG schema element. -type RelayAgent_Dhcp_Interface_Counters_TotalDroppedAny struct { +// RelayAgent_Dhcp_Interface_Counters_TotalDroppedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/state/counters/total-dropped YANG schema element. +type RelayAgent_Dhcp_Interface_Counters_TotalDroppedPathAny struct { *ygot.NodePath } -// BootreplySent returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "bootreply-sent". -func (n *RelayAgent_Dhcp_Interface_Counters) BootreplySent() *RelayAgent_Dhcp_Interface_Counters_BootreplySent { - return &RelayAgent_Dhcp_Interface_Counters_BootreplySent{ +// BootreplySent returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "bootreply-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPath) BootreplySent() *RelayAgent_Dhcp_Interface_Counters_BootreplySentPath { + return &RelayAgent_Dhcp_Interface_Counters_BootreplySentPath{ NodePath: ygot.NewNodePath( []string{"bootreply-sent"}, map[string]interface{}{}, @@ -155322,9 +155568,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) BootreplySent() *RelayAgent_Dhcp_In } } -// BootreplySent returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "bootreply-sent". -func (n *RelayAgent_Dhcp_Interface_CountersAny) BootreplySent() *RelayAgent_Dhcp_Interface_Counters_BootreplySentAny { - return &RelayAgent_Dhcp_Interface_Counters_BootreplySentAny{ +// BootreplySent returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "bootreply-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) BootreplySent() *RelayAgent_Dhcp_Interface_Counters_BootreplySentPathAny { + return &RelayAgent_Dhcp_Interface_Counters_BootreplySentPathAny{ NodePath: ygot.NewNodePath( []string{"bootreply-sent"}, map[string]interface{}{}, @@ -155333,9 +155579,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) BootreplySent() *RelayAgent_Dhcp } } -// BootrequestReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "bootrequest-received". -func (n *RelayAgent_Dhcp_Interface_Counters) BootrequestReceived() *RelayAgent_Dhcp_Interface_Counters_BootrequestReceived { - return &RelayAgent_Dhcp_Interface_Counters_BootrequestReceived{ +// BootrequestReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "bootrequest-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) BootrequestReceived() *RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPath{ NodePath: ygot.NewNodePath( []string{"bootrequest-received"}, map[string]interface{}{}, @@ -155344,9 +155590,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) BootrequestReceived() *RelayAgent_D } } -// BootrequestReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "bootrequest-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) BootrequestReceived() *RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedAny{ +// BootrequestReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "bootrequest-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) BootrequestReceived() *RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_BootrequestReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"bootrequest-received"}, map[string]interface{}{}, @@ -155355,9 +155601,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) BootrequestReceived() *RelayAgen } } -// BootrequestSent returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "bootrequest-sent". -func (n *RelayAgent_Dhcp_Interface_Counters) BootrequestSent() *RelayAgent_Dhcp_Interface_Counters_BootrequestSent { - return &RelayAgent_Dhcp_Interface_Counters_BootrequestSent{ +// BootrequestSent returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "bootrequest-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPath) BootrequestSent() *RelayAgent_Dhcp_Interface_Counters_BootrequestSentPath { + return &RelayAgent_Dhcp_Interface_Counters_BootrequestSentPath{ NodePath: ygot.NewNodePath( []string{"bootrequest-sent"}, map[string]interface{}{}, @@ -155366,9 +155612,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) BootrequestSent() *RelayAgent_Dhcp_ } } -// BootrequestSent returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "bootrequest-sent". -func (n *RelayAgent_Dhcp_Interface_CountersAny) BootrequestSent() *RelayAgent_Dhcp_Interface_Counters_BootrequestSentAny { - return &RelayAgent_Dhcp_Interface_Counters_BootrequestSentAny{ +// BootrequestSent returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "bootrequest-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) BootrequestSent() *RelayAgent_Dhcp_Interface_Counters_BootrequestSentPathAny { + return &RelayAgent_Dhcp_Interface_Counters_BootrequestSentPathAny{ NodePath: ygot.NewNodePath( []string{"bootrequest-sent"}, map[string]interface{}{}, @@ -155377,9 +155623,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) BootrequestSent() *RelayAgent_Dh } } -// DhcpAckSent returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-ack-sent". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpAckSent() *RelayAgent_Dhcp_Interface_Counters_DhcpAckSent { - return &RelayAgent_Dhcp_Interface_Counters_DhcpAckSent{ +// DhcpAckSent returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-ack-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpAckSent() *RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPath{ NodePath: ygot.NewNodePath( []string{"dhcp-ack-sent"}, map[string]interface{}{}, @@ -155388,9 +155634,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpAckSent() *RelayAgent_Dhcp_Inte } } -// DhcpAckSent returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-ack-sent". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpAckSent() *RelayAgent_Dhcp_Interface_Counters_DhcpAckSentAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpAckSentAny{ +// DhcpAckSent returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-ack-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpAckSent() *RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpAckSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-ack-sent"}, map[string]interface{}{}, @@ -155399,9 +155645,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpAckSent() *RelayAgent_Dhcp_I } } -// DhcpDeclineReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-decline-received". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpDeclineReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceived { - return &RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceived{ +// DhcpDeclineReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-decline-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpDeclineReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcp-decline-received"}, map[string]interface{}{}, @@ -155410,9 +155656,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpDeclineReceived() *RelayAgent_D } } -// DhcpDeclineReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-decline-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpDeclineReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedAny{ +// DhcpDeclineReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-decline-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpDeclineReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpDeclineReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-decline-received"}, map[string]interface{}{}, @@ -155421,9 +155667,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpDeclineReceived() *RelayAgen } } -// DhcpDiscoverReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-discover-received". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpDiscoverReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceived { - return &RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceived{ +// DhcpDiscoverReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-discover-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpDiscoverReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcp-discover-received"}, map[string]interface{}{}, @@ -155432,9 +155678,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpDiscoverReceived() *RelayAgent_ } } -// DhcpDiscoverReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-discover-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpDiscoverReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedAny{ +// DhcpDiscoverReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-discover-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpDiscoverReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpDiscoverReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-discover-received"}, map[string]interface{}{}, @@ -155443,9 +155689,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpDiscoverReceived() *RelayAge } } -// DhcpInformReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-inform-received". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpInformReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpInformReceived { - return &RelayAgent_Dhcp_Interface_Counters_DhcpInformReceived{ +// DhcpInformReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-inform-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpInformReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcp-inform-received"}, map[string]interface{}{}, @@ -155454,9 +155700,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpInformReceived() *RelayAgent_Dh } } -// DhcpInformReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-inform-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpInformReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedAny{ +// DhcpInformReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-inform-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpInformReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpInformReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-inform-received"}, map[string]interface{}{}, @@ -155465,9 +155711,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpInformReceived() *RelayAgent } } -// DhcpNackSent returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-nack-sent". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpNackSent() *RelayAgent_Dhcp_Interface_Counters_DhcpNackSent { - return &RelayAgent_Dhcp_Interface_Counters_DhcpNackSent{ +// DhcpNackSent returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-nack-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpNackSent() *RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPath{ NodePath: ygot.NewNodePath( []string{"dhcp-nack-sent"}, map[string]interface{}{}, @@ -155476,9 +155722,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpNackSent() *RelayAgent_Dhcp_Int } } -// DhcpNackSent returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-nack-sent". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpNackSent() *RelayAgent_Dhcp_Interface_Counters_DhcpNackSentAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpNackSentAny{ +// DhcpNackSent returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-nack-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpNackSent() *RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpNackSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-nack-sent"}, map[string]interface{}{}, @@ -155487,9 +155733,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpNackSent() *RelayAgent_Dhcp_ } } -// DhcpOfferSent returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-offer-sent". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpOfferSent() *RelayAgent_Dhcp_Interface_Counters_DhcpOfferSent { - return &RelayAgent_Dhcp_Interface_Counters_DhcpOfferSent{ +// DhcpOfferSent returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-offer-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpOfferSent() *RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPath{ NodePath: ygot.NewNodePath( []string{"dhcp-offer-sent"}, map[string]interface{}{}, @@ -155498,9 +155744,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpOfferSent() *RelayAgent_Dhcp_In } } -// DhcpOfferSent returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-offer-sent". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpOfferSent() *RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentAny{ +// DhcpOfferSent returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-offer-sent". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpOfferSent() *RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpOfferSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-offer-sent"}, map[string]interface{}{}, @@ -155509,9 +155755,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpOfferSent() *RelayAgent_Dhcp } } -// DhcpReleaseReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-release-received". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpReleaseReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceived { - return &RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceived{ +// DhcpReleaseReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-release-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpReleaseReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcp-release-received"}, map[string]interface{}{}, @@ -155520,9 +155766,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpReleaseReceived() *RelayAgent_D } } -// DhcpReleaseReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-release-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpReleaseReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedAny{ +// DhcpReleaseReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-release-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpReleaseReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpReleaseReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-release-received"}, map[string]interface{}{}, @@ -155531,9 +155777,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpReleaseReceived() *RelayAgen } } -// DhcpRequestReceived returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "dhcp-request-received". -func (n *RelayAgent_Dhcp_Interface_Counters) DhcpRequestReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceived { - return &RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceived{ +// DhcpRequestReceived returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "dhcp-request-received". +func (n *RelayAgent_Dhcp_Interface_CountersPath) DhcpRequestReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPath { + return &RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcp-request-received"}, map[string]interface{}{}, @@ -155542,9 +155788,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) DhcpRequestReceived() *RelayAgent_D } } -// DhcpRequestReceived returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "dhcp-request-received". -func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpRequestReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedAny { - return &RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedAny{ +// DhcpRequestReceived returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "dhcp-request-received". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) DhcpRequestReceived() *RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_DhcpRequestReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcp-request-received"}, map[string]interface{}{}, @@ -155553,9 +155799,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) DhcpRequestReceived() *RelayAgen } } -// InvalidOpcode returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "invalid-opcode". -func (n *RelayAgent_Dhcp_Interface_Counters) InvalidOpcode() *RelayAgent_Dhcp_Interface_Counters_InvalidOpcode { - return &RelayAgent_Dhcp_Interface_Counters_InvalidOpcode{ +// InvalidOpcode returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "invalid-opcode". +func (n *RelayAgent_Dhcp_Interface_CountersPath) InvalidOpcode() *RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePath { + return &RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePath{ NodePath: ygot.NewNodePath( []string{"invalid-opcode"}, map[string]interface{}{}, @@ -155564,9 +155810,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) InvalidOpcode() *RelayAgent_Dhcp_In } } -// InvalidOpcode returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "invalid-opcode". -func (n *RelayAgent_Dhcp_Interface_CountersAny) InvalidOpcode() *RelayAgent_Dhcp_Interface_Counters_InvalidOpcodeAny { - return &RelayAgent_Dhcp_Interface_Counters_InvalidOpcodeAny{ +// InvalidOpcode returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "invalid-opcode". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) InvalidOpcode() *RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePathAny { + return &RelayAgent_Dhcp_Interface_Counters_InvalidOpcodePathAny{ NodePath: ygot.NewNodePath( []string{"invalid-opcode"}, map[string]interface{}{}, @@ -155575,9 +155821,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) InvalidOpcode() *RelayAgent_Dhcp } } -// InvalidOptions returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "invalid-options". -func (n *RelayAgent_Dhcp_Interface_Counters) InvalidOptions() *RelayAgent_Dhcp_Interface_Counters_InvalidOptions { - return &RelayAgent_Dhcp_Interface_Counters_InvalidOptions{ +// InvalidOptions returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "invalid-options". +func (n *RelayAgent_Dhcp_Interface_CountersPath) InvalidOptions() *RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPath { + return &RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPath{ NodePath: ygot.NewNodePath( []string{"invalid-options"}, map[string]interface{}{}, @@ -155586,9 +155832,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) InvalidOptions() *RelayAgent_Dhcp_I } } -// InvalidOptions returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "invalid-options". -func (n *RelayAgent_Dhcp_Interface_CountersAny) InvalidOptions() *RelayAgent_Dhcp_Interface_Counters_InvalidOptionsAny { - return &RelayAgent_Dhcp_Interface_Counters_InvalidOptionsAny{ +// InvalidOptions returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "invalid-options". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) InvalidOptions() *RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPathAny { + return &RelayAgent_Dhcp_Interface_Counters_InvalidOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"invalid-options"}, map[string]interface{}{}, @@ -155597,9 +155843,9 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) InvalidOptions() *RelayAgent_Dhc } } -// TotalDropped returns from RelayAgent_Dhcp_Interface_Counters the path struct for its child "total-dropped". -func (n *RelayAgent_Dhcp_Interface_Counters) TotalDropped() *RelayAgent_Dhcp_Interface_Counters_TotalDropped { - return &RelayAgent_Dhcp_Interface_Counters_TotalDropped{ +// TotalDropped returns from RelayAgent_Dhcp_Interface_CountersPath the path struct for its child "total-dropped". +func (n *RelayAgent_Dhcp_Interface_CountersPath) TotalDropped() *RelayAgent_Dhcp_Interface_Counters_TotalDroppedPath { + return &RelayAgent_Dhcp_Interface_Counters_TotalDroppedPath{ NodePath: ygot.NewNodePath( []string{"total-dropped"}, map[string]interface{}{}, @@ -155608,9 +155854,9 @@ func (n *RelayAgent_Dhcp_Interface_Counters) TotalDropped() *RelayAgent_Dhcp_Int } } -// TotalDropped returns from RelayAgent_Dhcp_Interface_CountersAny the path struct for its child "total-dropped". -func (n *RelayAgent_Dhcp_Interface_CountersAny) TotalDropped() *RelayAgent_Dhcp_Interface_Counters_TotalDroppedAny { - return &RelayAgent_Dhcp_Interface_Counters_TotalDroppedAny{ +// TotalDropped returns from RelayAgent_Dhcp_Interface_CountersPathAny the path struct for its child "total-dropped". +func (n *RelayAgent_Dhcp_Interface_CountersPathAny) TotalDropped() *RelayAgent_Dhcp_Interface_Counters_TotalDroppedPathAny { + return &RelayAgent_Dhcp_Interface_Counters_TotalDroppedPathAny{ NodePath: ygot.NewNodePath( []string{"total-dropped"}, map[string]interface{}{}, @@ -155619,125 +155865,125 @@ func (n *RelayAgent_Dhcp_Interface_CountersAny) TotalDropped() *RelayAgent_Dhcp_ } } -// RelayAgent_Dhcp_Interface_InterfaceRef represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRef struct { +// RelayAgent_Dhcp_Interface_InterfaceRefPath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRefPath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRefAny struct { +// RelayAgent_Dhcp_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_InterfaceRef_Interface represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/state/interface YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRef_Interface struct { +// RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/config/interface YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/state/interface YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRef_InterfaceAny struct { +// RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/config/interface YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_InterfaceRef_Subinterface represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRef_Subinterface struct { +// RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfaceAny struct { +// RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcp/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from RelayAgent_Dhcp_Interface_InterfaceRef the path struct for its child "interface". -func (n *RelayAgent_Dhcp_Interface_InterfaceRef) Interface() *RelayAgent_Dhcp_Interface_InterfaceRef_Interface { - return &RelayAgent_Dhcp_Interface_InterfaceRef_Interface{ +// Interface returns from RelayAgent_Dhcp_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *RelayAgent_Dhcp_Interface_InterfaceRefPath) Interface() *RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePath { + return &RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from RelayAgent_Dhcp_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *RelayAgent_Dhcp_Interface_InterfaceRefAny) Interface() *RelayAgent_Dhcp_Interface_InterfaceRef_InterfaceAny { - return &RelayAgent_Dhcp_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from RelayAgent_Dhcp_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *RelayAgent_Dhcp_Interface_InterfaceRefPathAny) Interface() *RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePathAny { + return &RelayAgent_Dhcp_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RelayAgent_Dhcp_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *RelayAgent_Dhcp_Interface_InterfaceRef) Subinterface() *RelayAgent_Dhcp_Interface_InterfaceRef_Subinterface { - return &RelayAgent_Dhcp_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from RelayAgent_Dhcp_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *RelayAgent_Dhcp_Interface_InterfaceRefPath) Subinterface() *RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePath { + return &RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RelayAgent_Dhcp_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *RelayAgent_Dhcp_Interface_InterfaceRefAny) Subinterface() *RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfaceAny { - return &RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from RelayAgent_Dhcp_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *RelayAgent_Dhcp_Interface_InterfaceRefPathAny) Subinterface() *RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePathAny { + return &RelayAgent_Dhcp_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// RelayAgent_Dhcpv6 represents the /openconfig-relay-agent/relay-agent/dhcpv6 YANG schema element. -type RelayAgent_Dhcpv6 struct { +// RelayAgent_Dhcpv6Path represents the /openconfig-relay-agent/relay-agent/dhcpv6 YANG schema element. +type RelayAgent_Dhcpv6Path struct { *ygot.NodePath } -// RelayAgent_Dhcpv6Any represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6 YANG schema element. -type RelayAgent_Dhcpv6Any struct { +// RelayAgent_Dhcpv6PathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6 YANG schema element. +type RelayAgent_Dhcpv6PathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_EnableRelayAgent represents the /openconfig-relay-agent/relay-agent/dhcpv6/state/enable-relay-agent YANG schema element. -type RelayAgent_Dhcpv6_EnableRelayAgent struct { +// RelayAgent_Dhcpv6_EnableRelayAgentPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/config/enable-relay-agent YANG schema element. +type RelayAgent_Dhcpv6_EnableRelayAgentPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_EnableRelayAgentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/state/enable-relay-agent YANG schema element. -type RelayAgent_Dhcpv6_EnableRelayAgentAny struct { +// RelayAgent_Dhcpv6_EnableRelayAgentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/config/enable-relay-agent YANG schema element. +type RelayAgent_Dhcpv6_EnableRelayAgentPathAny struct { *ygot.NodePath } -// EnableRelayAgent returns from RelayAgent_Dhcpv6 the path struct for its child "enable-relay-agent". -func (n *RelayAgent_Dhcpv6) EnableRelayAgent() *RelayAgent_Dhcpv6_EnableRelayAgent { - return &RelayAgent_Dhcpv6_EnableRelayAgent{ +// EnableRelayAgent returns from RelayAgent_Dhcpv6Path the path struct for its child "enable-relay-agent". +func (n *RelayAgent_Dhcpv6Path) EnableRelayAgent() *RelayAgent_Dhcpv6_EnableRelayAgentPath { + return &RelayAgent_Dhcpv6_EnableRelayAgentPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-relay-agent"}, + []string{"config", "enable-relay-agent"}, map[string]interface{}{}, n, ), } } -// EnableRelayAgent returns from RelayAgent_Dhcpv6Any the path struct for its child "enable-relay-agent". -func (n *RelayAgent_Dhcpv6Any) EnableRelayAgent() *RelayAgent_Dhcpv6_EnableRelayAgentAny { - return &RelayAgent_Dhcpv6_EnableRelayAgentAny{ +// EnableRelayAgent returns from RelayAgent_Dhcpv6PathAny the path struct for its child "enable-relay-agent". +func (n *RelayAgent_Dhcpv6PathAny) EnableRelayAgent() *RelayAgent_Dhcpv6_EnableRelayAgentPathAny { + return &RelayAgent_Dhcpv6_EnableRelayAgentPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-relay-agent"}, + []string{"config", "enable-relay-agent"}, map[string]interface{}{}, n, ), } } -// InterfaceAny returns from RelayAgent_Dhcpv6 the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6) InterfaceAny() *RelayAgent_Dhcpv6_InterfaceAny { - return &RelayAgent_Dhcpv6_InterfaceAny{ +// InterfaceAny returns from RelayAgent_Dhcpv6Path the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6Path) InterfaceAny() *RelayAgent_Dhcpv6_InterfacePathAny { + return &RelayAgent_Dhcpv6_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -155746,9 +155992,9 @@ func (n *RelayAgent_Dhcpv6) InterfaceAny() *RelayAgent_Dhcpv6_InterfaceAny { } } -// InterfaceAny returns from RelayAgent_Dhcpv6Any the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6Any) InterfaceAny() *RelayAgent_Dhcpv6_InterfaceAny { - return &RelayAgent_Dhcpv6_InterfaceAny{ +// InterfaceAny returns from RelayAgent_Dhcpv6PathAny the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6PathAny) InterfaceAny() *RelayAgent_Dhcpv6_InterfacePathAny { + return &RelayAgent_Dhcpv6_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": "*"}, @@ -155757,9 +156003,9 @@ func (n *RelayAgent_Dhcpv6Any) InterfaceAny() *RelayAgent_Dhcpv6_InterfaceAny { } } -// Interface returns from RelayAgent_Dhcpv6 the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6) Interface(Id string) *RelayAgent_Dhcpv6_Interface { - return &RelayAgent_Dhcpv6_Interface{ +// Interface returns from RelayAgent_Dhcpv6Path the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6Path) Interface(Id string) *RelayAgent_Dhcpv6_InterfacePath { + return &RelayAgent_Dhcpv6_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -155768,9 +156014,9 @@ func (n *RelayAgent_Dhcpv6) Interface(Id string) *RelayAgent_Dhcpv6_Interface { } } -// Interface returns from RelayAgent_Dhcpv6Any the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6Any) Interface(Id string) *RelayAgent_Dhcpv6_InterfaceAny { - return &RelayAgent_Dhcpv6_InterfaceAny{ +// Interface returns from RelayAgent_Dhcpv6PathAny the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6PathAny) Interface(Id string) *RelayAgent_Dhcpv6_InterfacePathAny { + return &RelayAgent_Dhcpv6_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"id": Id}, @@ -155779,9 +156025,9 @@ func (n *RelayAgent_Dhcpv6Any) Interface(Id string) *RelayAgent_Dhcpv6_Interface } } -// Options returns from RelayAgent_Dhcpv6 the path struct for its child "options". -func (n *RelayAgent_Dhcpv6) Options() *RelayAgent_Dhcpv6_Options { - return &RelayAgent_Dhcpv6_Options{ +// Options returns from RelayAgent_Dhcpv6Path the path struct for its child "options". +func (n *RelayAgent_Dhcpv6Path) Options() *RelayAgent_Dhcpv6_OptionsPath { + return &RelayAgent_Dhcpv6_OptionsPath{ NodePath: ygot.NewNodePath( []string{"options"}, map[string]interface{}{}, @@ -155790,9 +156036,9 @@ func (n *RelayAgent_Dhcpv6) Options() *RelayAgent_Dhcpv6_Options { } } -// Options returns from RelayAgent_Dhcpv6Any the path struct for its child "options". -func (n *RelayAgent_Dhcpv6Any) Options() *RelayAgent_Dhcpv6_OptionsAny { - return &RelayAgent_Dhcpv6_OptionsAny{ +// Options returns from RelayAgent_Dhcpv6PathAny the path struct for its child "options". +func (n *RelayAgent_Dhcpv6PathAny) Options() *RelayAgent_Dhcpv6_OptionsPathAny { + return &RelayAgent_Dhcpv6_OptionsPathAny{ NodePath: ygot.NewNodePath( []string{"options"}, map[string]interface{}{}, @@ -155801,49 +156047,49 @@ func (n *RelayAgent_Dhcpv6Any) Options() *RelayAgent_Dhcpv6_OptionsAny { } } -// RelayAgent_Dhcpv6_Interface represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface YANG schema element. -type RelayAgent_Dhcpv6_Interface struct { +// RelayAgent_Dhcpv6_InterfacePath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface YANG schema element. +type RelayAgent_Dhcpv6_InterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_InterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface YANG schema element. -type RelayAgent_Dhcpv6_InterfaceAny struct { +// RelayAgent_Dhcpv6_InterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface YANG schema element. +type RelayAgent_Dhcpv6_InterfacePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Enable represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/enable YANG schema element. -type RelayAgent_Dhcpv6_Interface_Enable struct { +// RelayAgent_Dhcpv6_Interface_EnablePath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/enable YANG schema element. +type RelayAgent_Dhcpv6_Interface_EnablePath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_EnableAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/enable YANG schema element. -type RelayAgent_Dhcpv6_Interface_EnableAny struct { +// RelayAgent_Dhcpv6_Interface_EnablePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/enable YANG schema element. +type RelayAgent_Dhcpv6_Interface_EnablePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_HelperAddress represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/helper-address YANG schema element. -type RelayAgent_Dhcpv6_Interface_HelperAddress struct { +// RelayAgent_Dhcpv6_Interface_HelperAddressPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/helper-address YANG schema element. +type RelayAgent_Dhcpv6_Interface_HelperAddressPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_HelperAddressAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/helper-address YANG schema element. -type RelayAgent_Dhcpv6_Interface_HelperAddressAny struct { +// RelayAgent_Dhcpv6_Interface_HelperAddressPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/helper-address YANG schema element. +type RelayAgent_Dhcpv6_Interface_HelperAddressPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Id represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Id struct { +// RelayAgent_Dhcpv6_Interface_IdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/id YANG schema element. +type RelayAgent_Dhcpv6_Interface_IdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_IdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/id YANG schema element. -type RelayAgent_Dhcpv6_Interface_IdAny struct { +// RelayAgent_Dhcpv6_Interface_IdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/config/id YANG schema element. +type RelayAgent_Dhcpv6_Interface_IdPathAny struct { *ygot.NodePath } -// Counters returns from RelayAgent_Dhcpv6_Interface the path struct for its child "counters". -func (n *RelayAgent_Dhcpv6_Interface) Counters() *RelayAgent_Dhcpv6_Interface_Counters { - return &RelayAgent_Dhcpv6_Interface_Counters{ +// Counters returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "counters". +func (n *RelayAgent_Dhcpv6_InterfacePath) Counters() *RelayAgent_Dhcpv6_Interface_CountersPath { + return &RelayAgent_Dhcpv6_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -155852,9 +156098,9 @@ func (n *RelayAgent_Dhcpv6_Interface) Counters() *RelayAgent_Dhcpv6_Interface_Co } } -// Counters returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "counters". -func (n *RelayAgent_Dhcpv6_InterfaceAny) Counters() *RelayAgent_Dhcpv6_Interface_CountersAny { - return &RelayAgent_Dhcpv6_Interface_CountersAny{ +// Counters returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "counters". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) Counters() *RelayAgent_Dhcpv6_Interface_CountersPathAny { + return &RelayAgent_Dhcpv6_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -155863,75 +156109,75 @@ func (n *RelayAgent_Dhcpv6_InterfaceAny) Counters() *RelayAgent_Dhcpv6_Interface } } -// Enable returns from RelayAgent_Dhcpv6_Interface the path struct for its child "enable". -func (n *RelayAgent_Dhcpv6_Interface) Enable() *RelayAgent_Dhcpv6_Interface_Enable { - return &RelayAgent_Dhcpv6_Interface_Enable{ +// Enable returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "enable". +func (n *RelayAgent_Dhcpv6_InterfacePath) Enable() *RelayAgent_Dhcpv6_Interface_EnablePath { + return &RelayAgent_Dhcpv6_Interface_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "enable". -func (n *RelayAgent_Dhcpv6_InterfaceAny) Enable() *RelayAgent_Dhcpv6_Interface_EnableAny { - return &RelayAgent_Dhcpv6_Interface_EnableAny{ +// Enable returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "enable". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) Enable() *RelayAgent_Dhcpv6_Interface_EnablePathAny { + return &RelayAgent_Dhcpv6_Interface_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// HelperAddress returns from RelayAgent_Dhcpv6_Interface the path struct for its child "helper-address". -func (n *RelayAgent_Dhcpv6_Interface) HelperAddress() *RelayAgent_Dhcpv6_Interface_HelperAddress { - return &RelayAgent_Dhcpv6_Interface_HelperAddress{ +// HelperAddress returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "helper-address". +func (n *RelayAgent_Dhcpv6_InterfacePath) HelperAddress() *RelayAgent_Dhcpv6_Interface_HelperAddressPath { + return &RelayAgent_Dhcpv6_Interface_HelperAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "helper-address"}, + []string{"config", "helper-address"}, map[string]interface{}{}, n, ), } } -// HelperAddress returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "helper-address". -func (n *RelayAgent_Dhcpv6_InterfaceAny) HelperAddress() *RelayAgent_Dhcpv6_Interface_HelperAddressAny { - return &RelayAgent_Dhcpv6_Interface_HelperAddressAny{ +// HelperAddress returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "helper-address". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) HelperAddress() *RelayAgent_Dhcpv6_Interface_HelperAddressPathAny { + return &RelayAgent_Dhcpv6_Interface_HelperAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "helper-address"}, + []string{"config", "helper-address"}, map[string]interface{}{}, n, ), } } -// Id returns from RelayAgent_Dhcpv6_Interface the path struct for its child "id". -func (n *RelayAgent_Dhcpv6_Interface) Id() *RelayAgent_Dhcpv6_Interface_Id { - return &RelayAgent_Dhcpv6_Interface_Id{ +// Id returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "id". +func (n *RelayAgent_Dhcpv6_InterfacePath) Id() *RelayAgent_Dhcpv6_Interface_IdPath { + return &RelayAgent_Dhcpv6_Interface_IdPath{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// Id returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "id". -func (n *RelayAgent_Dhcpv6_InterfaceAny) Id() *RelayAgent_Dhcpv6_Interface_IdAny { - return &RelayAgent_Dhcpv6_Interface_IdAny{ +// Id returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "id". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) Id() *RelayAgent_Dhcpv6_Interface_IdPathAny { + return &RelayAgent_Dhcpv6_Interface_IdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "id"}, + []string{"config", "id"}, map[string]interface{}{}, n, ), } } -// InterfaceRef returns from RelayAgent_Dhcpv6_Interface the path struct for its child "interface-ref". -func (n *RelayAgent_Dhcpv6_Interface) InterfaceRef() *RelayAgent_Dhcpv6_Interface_InterfaceRef { - return &RelayAgent_Dhcpv6_Interface_InterfaceRef{ +// InterfaceRef returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "interface-ref". +func (n *RelayAgent_Dhcpv6_InterfacePath) InterfaceRef() *RelayAgent_Dhcpv6_Interface_InterfaceRefPath { + return &RelayAgent_Dhcpv6_Interface_InterfaceRefPath{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -155940,9 +156186,9 @@ func (n *RelayAgent_Dhcpv6_Interface) InterfaceRef() *RelayAgent_Dhcpv6_Interfac } } -// InterfaceRef returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "interface-ref". -func (n *RelayAgent_Dhcpv6_InterfaceAny) InterfaceRef() *RelayAgent_Dhcpv6_Interface_InterfaceRefAny { - return &RelayAgent_Dhcpv6_Interface_InterfaceRefAny{ +// InterfaceRef returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "interface-ref". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) InterfaceRef() *RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny { + return &RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny{ NodePath: ygot.NewNodePath( []string{"interface-ref"}, map[string]interface{}{}, @@ -155951,9 +156197,9 @@ func (n *RelayAgent_Dhcpv6_InterfaceAny) InterfaceRef() *RelayAgent_Dhcpv6_Inter } } -// Options returns from RelayAgent_Dhcpv6_Interface the path struct for its child "options". -func (n *RelayAgent_Dhcpv6_Interface) Options() *RelayAgent_Dhcpv6_Interface_Options { - return &RelayAgent_Dhcpv6_Interface_Options{ +// Options returns from RelayAgent_Dhcpv6_InterfacePath the path struct for its child "options". +func (n *RelayAgent_Dhcpv6_InterfacePath) Options() *RelayAgent_Dhcpv6_Interface_OptionsPath { + return &RelayAgent_Dhcpv6_Interface_OptionsPath{ NodePath: ygot.NewNodePath( []string{"options"}, map[string]interface{}{}, @@ -155962,9 +156208,9 @@ func (n *RelayAgent_Dhcpv6_Interface) Options() *RelayAgent_Dhcpv6_Interface_Opt } } -// Options returns from RelayAgent_Dhcpv6_InterfaceAny the path struct for its child "options". -func (n *RelayAgent_Dhcpv6_InterfaceAny) Options() *RelayAgent_Dhcpv6_Interface_OptionsAny { - return &RelayAgent_Dhcpv6_Interface_OptionsAny{ +// Options returns from RelayAgent_Dhcpv6_InterfacePathAny the path struct for its child "options". +func (n *RelayAgent_Dhcpv6_InterfacePathAny) Options() *RelayAgent_Dhcpv6_Interface_OptionsPathAny { + return &RelayAgent_Dhcpv6_Interface_OptionsPathAny{ NodePath: ygot.NewNodePath( []string{"options"}, map[string]interface{}{}, @@ -155973,169 +156219,169 @@ func (n *RelayAgent_Dhcpv6_InterfaceAny) Options() *RelayAgent_Dhcpv6_Interface_ } } -// RelayAgent_Dhcpv6_Interface_Counters represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters struct { +// RelayAgent_Dhcpv6_Interface_CountersPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters YANG schema element. +type RelayAgent_Dhcpv6_Interface_CountersPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_CountersAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters YANG schema element. -type RelayAgent_Dhcpv6_Interface_CountersAny struct { +// RelayAgent_Dhcpv6_Interface_CountersPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters YANG schema element. +type RelayAgent_Dhcpv6_Interface_CountersPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSent represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-adverstise-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSent struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-adverstise-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-adverstise-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-adverstise-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-confirm-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-confirm-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-confirm-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-confirm-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-decline-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-decline-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-decline-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-decline-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-info-request-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-info-request-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-info-request-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-info-request-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-rebind-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-rebind-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-rebind-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-rebind-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSent represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reconfigure-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSent struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reconfigure-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reconfigure-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reconfigure-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSent represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-forw-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSent struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-forw-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-forw-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-forw-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-reply-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-reply-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-reply-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-relay-reply-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-release-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-release-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-release-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-release-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySent represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reply-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySent struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reply-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reply-sent YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-reply-sent YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-request-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-request-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-request-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-request-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceived represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-solicit-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceived struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-solicit-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-solicit-received YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/dhcpv6-solicit-received YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcode represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-opcode YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcode struct { +// RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-opcode YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodeAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-opcode YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodeAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-opcode YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_InvalidOptions represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-options YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_InvalidOptions struct { +// RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-options YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-options YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/invalid-options YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_TotalDropped represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/total-dropped YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_TotalDropped struct { +// RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/total-dropped YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/total-dropped YANG schema element. -type RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedAny struct { +// RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/state/counters/total-dropped YANG schema element. +type RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPathAny struct { *ygot.NodePath } -// Dhcpv6AdverstiseSent returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-adverstise-sent". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6AdverstiseSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSent { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSent{ +// Dhcpv6AdverstiseSent returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-adverstise-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6AdverstiseSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-adverstise-sent"}, map[string]interface{}{}, @@ -156144,9 +156390,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6AdverstiseSent() *RelayAgen } } -// Dhcpv6AdverstiseSent returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-adverstise-sent". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6AdverstiseSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentAny{ +// Dhcpv6AdverstiseSent returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-adverstise-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6AdverstiseSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6AdverstiseSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-adverstise-sent"}, map[string]interface{}{}, @@ -156155,9 +156401,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6AdverstiseSent() *RelayA } } -// Dhcpv6ConfirmReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-confirm-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ConfirmReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceived{ +// Dhcpv6ConfirmReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-confirm-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6ConfirmReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-confirm-received"}, map[string]interface{}{}, @@ -156166,9 +156412,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ConfirmReceived() *RelayAge } } -// Dhcpv6ConfirmReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-confirm-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ConfirmReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedAny{ +// Dhcpv6ConfirmReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-confirm-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6ConfirmReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ConfirmReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-confirm-received"}, map[string]interface{}{}, @@ -156177,9 +156423,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ConfirmReceived() *Relay } } -// Dhcpv6DeclineReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-decline-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6DeclineReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceived{ +// Dhcpv6DeclineReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-decline-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6DeclineReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-decline-received"}, map[string]interface{}{}, @@ -156188,9 +156434,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6DeclineReceived() *RelayAge } } -// Dhcpv6DeclineReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-decline-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6DeclineReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedAny{ +// Dhcpv6DeclineReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-decline-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6DeclineReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6DeclineReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-decline-received"}, map[string]interface{}{}, @@ -156199,9 +156445,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6DeclineReceived() *Relay } } -// Dhcpv6InfoRequestReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-info-request-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6InfoRequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceived{ +// Dhcpv6InfoRequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-info-request-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6InfoRequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-info-request-received"}, map[string]interface{}{}, @@ -156210,9 +156456,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6InfoRequestReceived() *Rela } } -// Dhcpv6InfoRequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-info-request-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6InfoRequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedAny{ +// Dhcpv6InfoRequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-info-request-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6InfoRequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6InfoRequestReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-info-request-received"}, map[string]interface{}{}, @@ -156221,9 +156467,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6InfoRequestReceived() *R } } -// Dhcpv6RebindReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-rebind-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RebindReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceived{ +// Dhcpv6RebindReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-rebind-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6RebindReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-rebind-received"}, map[string]interface{}{}, @@ -156232,9 +156478,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RebindReceived() *RelayAgen } } -// Dhcpv6RebindReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-rebind-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RebindReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedAny{ +// Dhcpv6RebindReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-rebind-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6RebindReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RebindReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-rebind-received"}, map[string]interface{}{}, @@ -156243,9 +156489,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RebindReceived() *RelayA } } -// Dhcpv6ReconfigureSent returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-reconfigure-sent". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReconfigureSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSent { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSent{ +// Dhcpv6ReconfigureSent returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-reconfigure-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6ReconfigureSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-reconfigure-sent"}, map[string]interface{}{}, @@ -156254,9 +156500,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReconfigureSent() *RelayAge } } -// Dhcpv6ReconfigureSent returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-reconfigure-sent". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReconfigureSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentAny{ +// Dhcpv6ReconfigureSent returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-reconfigure-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6ReconfigureSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReconfigureSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-reconfigure-sent"}, map[string]interface{}{}, @@ -156265,9 +156511,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReconfigureSent() *Relay } } -// Dhcpv6RelayForwSent returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-relay-forw-sent". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RelayForwSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSent { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSent{ +// Dhcpv6RelayForwSent returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-relay-forw-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6RelayForwSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-relay-forw-sent"}, map[string]interface{}{}, @@ -156276,9 +156522,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RelayForwSent() *RelayAgent } } -// Dhcpv6RelayForwSent returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-relay-forw-sent". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RelayForwSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentAny{ +// Dhcpv6RelayForwSent returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-relay-forw-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6RelayForwSent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayForwSentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-relay-forw-sent"}, map[string]interface{}{}, @@ -156287,9 +156533,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RelayForwSent() *RelayAg } } -// Dhcpv6RelayReplyReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-relay-reply-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RelayReplyReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceived{ +// Dhcpv6RelayReplyReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-relay-reply-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6RelayReplyReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-relay-reply-received"}, map[string]interface{}{}, @@ -156298,9 +156544,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RelayReplyReceived() *Relay } } -// Dhcpv6RelayReplyReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-relay-reply-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RelayReplyReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedAny{ +// Dhcpv6RelayReplyReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-relay-reply-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6RelayReplyReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RelayReplyReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-relay-reply-received"}, map[string]interface{}{}, @@ -156309,9 +156555,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RelayReplyReceived() *Re } } -// Dhcpv6ReleaseReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-release-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReleaseReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceived{ +// Dhcpv6ReleaseReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-release-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6ReleaseReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-release-received"}, map[string]interface{}{}, @@ -156320,9 +156566,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReleaseReceived() *RelayAge } } -// Dhcpv6ReleaseReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-release-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReleaseReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedAny{ +// Dhcpv6ReleaseReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-release-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6ReleaseReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReleaseReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-release-received"}, map[string]interface{}{}, @@ -156331,9 +156577,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReleaseReceived() *Relay } } -// Dhcpv6ReplySent returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-reply-sent". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReplySent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySent { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySent{ +// Dhcpv6ReplySent returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-reply-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6ReplySent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-reply-sent"}, map[string]interface{}{}, @@ -156342,9 +156588,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6ReplySent() *RelayAgent_Dhc } } -// Dhcpv6ReplySent returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-reply-sent". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReplySent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentAny{ +// Dhcpv6ReplySent returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-reply-sent". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6ReplySent() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6ReplySentPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-reply-sent"}, map[string]interface{}{}, @@ -156353,9 +156599,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6ReplySent() *RelayAgent_ } } -// Dhcpv6RequestReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-request-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceived{ +// Dhcpv6RequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-request-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6RequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-request-received"}, map[string]interface{}{}, @@ -156364,9 +156610,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6RequestReceived() *RelayAge } } -// Dhcpv6RequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-request-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedAny{ +// Dhcpv6RequestReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-request-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6RequestReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6RequestReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-request-received"}, map[string]interface{}{}, @@ -156375,9 +156621,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6RequestReceived() *Relay } } -// Dhcpv6SolicitReceived returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "dhcpv6-solicit-received". -func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6SolicitReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceived { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceived{ +// Dhcpv6SolicitReceived returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "dhcpv6-solicit-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) Dhcpv6SolicitReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPath{ NodePath: ygot.NewNodePath( []string{"dhcpv6-solicit-received"}, map[string]interface{}{}, @@ -156386,9 +156632,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) Dhcpv6SolicitReceived() *RelayAge } } -// Dhcpv6SolicitReceived returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "dhcpv6-solicit-received". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6SolicitReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedAny{ +// Dhcpv6SolicitReceived returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "dhcpv6-solicit-received". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) Dhcpv6SolicitReceived() *RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_Dhcpv6SolicitReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"dhcpv6-solicit-received"}, map[string]interface{}{}, @@ -156397,9 +156643,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) Dhcpv6SolicitReceived() *Relay } } -// InvalidOpcode returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "invalid-opcode". -func (n *RelayAgent_Dhcpv6_Interface_Counters) InvalidOpcode() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcode { - return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcode{ +// InvalidOpcode returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "invalid-opcode". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) InvalidOpcode() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePath { + return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePath{ NodePath: ygot.NewNodePath( []string{"invalid-opcode"}, map[string]interface{}{}, @@ -156408,9 +156654,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) InvalidOpcode() *RelayAgent_Dhcpv } } -// InvalidOpcode returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "invalid-opcode". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) InvalidOpcode() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodeAny { - return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodeAny{ +// InvalidOpcode returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "invalid-opcode". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) InvalidOpcode() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOpcodePathAny{ NodePath: ygot.NewNodePath( []string{"invalid-opcode"}, map[string]interface{}{}, @@ -156419,9 +156665,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) InvalidOpcode() *RelayAgent_Dh } } -// InvalidOptions returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "invalid-options". -func (n *RelayAgent_Dhcpv6_Interface_Counters) InvalidOptions() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOptions { - return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOptions{ +// InvalidOptions returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "invalid-options". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) InvalidOptions() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPath { + return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPath{ NodePath: ygot.NewNodePath( []string{"invalid-options"}, map[string]interface{}{}, @@ -156430,9 +156676,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) InvalidOptions() *RelayAgent_Dhcp } } -// InvalidOptions returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "invalid-options". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) InvalidOptions() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsAny { - return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsAny{ +// InvalidOptions returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "invalid-options". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) InvalidOptions() *RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_InvalidOptionsPathAny{ NodePath: ygot.NewNodePath( []string{"invalid-options"}, map[string]interface{}{}, @@ -156441,9 +156687,9 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) InvalidOptions() *RelayAgent_D } } -// TotalDropped returns from RelayAgent_Dhcpv6_Interface_Counters the path struct for its child "total-dropped". -func (n *RelayAgent_Dhcpv6_Interface_Counters) TotalDropped() *RelayAgent_Dhcpv6_Interface_Counters_TotalDropped { - return &RelayAgent_Dhcpv6_Interface_Counters_TotalDropped{ +// TotalDropped returns from RelayAgent_Dhcpv6_Interface_CountersPath the path struct for its child "total-dropped". +func (n *RelayAgent_Dhcpv6_Interface_CountersPath) TotalDropped() *RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPath { + return &RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPath{ NodePath: ygot.NewNodePath( []string{"total-dropped"}, map[string]interface{}{}, @@ -156452,9 +156698,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Counters) TotalDropped() *RelayAgent_Dhcpv6 } } -// TotalDropped returns from RelayAgent_Dhcpv6_Interface_CountersAny the path struct for its child "total-dropped". -func (n *RelayAgent_Dhcpv6_Interface_CountersAny) TotalDropped() *RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedAny { - return &RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedAny{ +// TotalDropped returns from RelayAgent_Dhcpv6_Interface_CountersPathAny the path struct for its child "total-dropped". +func (n *RelayAgent_Dhcpv6_Interface_CountersPathAny) TotalDropped() *RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPathAny { + return &RelayAgent_Dhcpv6_Interface_Counters_TotalDroppedPathAny{ NodePath: ygot.NewNodePath( []string{"total-dropped"}, map[string]interface{}{}, @@ -156463,241 +156709,241 @@ func (n *RelayAgent_Dhcpv6_Interface_CountersAny) TotalDropped() *RelayAgent_Dhc } } -// RelayAgent_Dhcpv6_Interface_InterfaceRef represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRef struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRefPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRefPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_InterfaceRefAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRefAny struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_InterfaceRef_Interface represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/state/interface YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRef_Interface struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/config/interface YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/state/interface YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfaceAny struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/config/interface YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_InterfaceRef_Subinterface represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRef_Subinterface struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfaceAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/state/subinterface YANG schema element. -type RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfaceAny struct { +// RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/interface-ref/config/subinterface YANG schema element. +type RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from RelayAgent_Dhcpv6_Interface_InterfaceRef the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6_Interface_InterfaceRef) Interface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_Interface { - return &RelayAgent_Dhcpv6_Interface_InterfaceRef_Interface{ +// Interface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefPath the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefPath) Interface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePath { + return &RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefAny the path struct for its child "interface". -func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefAny) Interface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfaceAny { - return &RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfaceAny{ +// Interface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny the path struct for its child "interface". +func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny) Interface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePathAny { + return &RelayAgent_Dhcpv6_Interface_InterfaceRef_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RelayAgent_Dhcpv6_Interface_InterfaceRef the path struct for its child "subinterface". -func (n *RelayAgent_Dhcpv6_Interface_InterfaceRef) Subinterface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_Subinterface { - return &RelayAgent_Dhcpv6_Interface_InterfaceRef_Subinterface{ +// Subinterface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefPath the path struct for its child "subinterface". +func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefPath) Subinterface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePath { + return &RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefAny the path struct for its child "subinterface". -func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefAny) Subinterface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfaceAny { - return &RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfaceAny{ +// Subinterface returns from RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny the path struct for its child "subinterface". +func (n *RelayAgent_Dhcpv6_Interface_InterfaceRefPathAny) Subinterface() *RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePathAny { + return &RelayAgent_Dhcpv6_Interface_InterfaceRef_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// RelayAgent_Dhcpv6_Interface_Options represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options struct { +// RelayAgent_Dhcpv6_Interface_OptionsPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options YANG schema element. +type RelayAgent_Dhcpv6_Interface_OptionsPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_OptionsAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options YANG schema element. -type RelayAgent_Dhcpv6_Interface_OptionsAny struct { +// RelayAgent_Dhcpv6_Interface_OptionsPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options YANG schema element. +type RelayAgent_Dhcpv6_Interface_OptionsPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/enable-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceId struct { +// RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/enable-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/enable-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/enable-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_EnableRemoteId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/enable-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_EnableRemoteId struct { +// RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/enable-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/enable-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/enable-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_InterfaceId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_InterfaceId struct { +// RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_InterfaceIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_InterfaceIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_RemoteId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_RemoteId struct { +// RelayAgent_Dhcpv6_Interface_Options_RemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_RemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_RemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_RemoteIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_RemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/config/remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_RemoteIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_SentInterfaceId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_SentInterfaceId struct { +// RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_SentRemoteId represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_SentRemoteId struct { +// RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdAny struct { +// RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/interfaces/interface/options/state/sent-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPathAny struct { *ygot.NodePath } -// EnableInterfaceId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "enable-interface-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) EnableInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceId { - return &RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceId{ +// EnableInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "enable-interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) EnableInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-interface-id"}, + []string{"config", "enable-interface-id"}, map[string]interface{}{}, n, ), } } -// EnableInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "enable-interface-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) EnableInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdAny{ +// EnableInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "enable-interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) EnableInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_EnableInterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-interface-id"}, + []string{"config", "enable-interface-id"}, map[string]interface{}{}, n, ), } } -// EnableRemoteId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "enable-remote-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) EnableRemoteId() *RelayAgent_Dhcpv6_Interface_Options_EnableRemoteId { - return &RelayAgent_Dhcpv6_Interface_Options_EnableRemoteId{ +// EnableRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "enable-remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) EnableRemoteId() *RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-remote-id"}, + []string{"config", "enable-remote-id"}, map[string]interface{}{}, n, ), } } -// EnableRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "enable-remote-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) EnableRemoteId() *RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdAny{ +// EnableRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "enable-remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) EnableRemoteId() *RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_EnableRemoteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-remote-id"}, + []string{"config", "enable-remote-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "interface-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) InterfaceId() *RelayAgent_Dhcpv6_Interface_Options_InterfaceId { - return &RelayAgent_Dhcpv6_Interface_Options_InterfaceId{ +// InterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) InterfaceId() *RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// InterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "interface-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) InterfaceId() *RelayAgent_Dhcpv6_Interface_Options_InterfaceIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_InterfaceIdAny{ +// InterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) InterfaceId() *RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_InterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface-id"}, + []string{"config", "interface-id"}, map[string]interface{}{}, n, ), } } -// RemoteId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "remote-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) RemoteId() *RelayAgent_Dhcpv6_Interface_Options_RemoteId { - return &RelayAgent_Dhcpv6_Interface_Options_RemoteId{ +// RemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) RemoteId() *RelayAgent_Dhcpv6_Interface_Options_RemoteIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_RemoteIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-id"}, + []string{"config", "remote-id"}, map[string]interface{}{}, n, ), } } -// RemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "remote-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) RemoteId() *RelayAgent_Dhcpv6_Interface_Options_RemoteIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_RemoteIdAny{ +// RemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) RemoteId() *RelayAgent_Dhcpv6_Interface_Options_RemoteIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_RemoteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-id"}, + []string{"config", "remote-id"}, map[string]interface{}{}, n, ), } } -// SentInterfaceId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "sent-interface-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) SentInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_SentInterfaceId { - return &RelayAgent_Dhcpv6_Interface_Options_SentInterfaceId{ +// SentInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "sent-interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) SentInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sent-interface-id"}, map[string]interface{}{}, @@ -156706,9 +156952,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Options) SentInterfaceId() *RelayAgent_Dhcp } } -// SentInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "sent-interface-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) SentInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdAny{ +// SentInterfaceId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "sent-interface-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) SentInterfaceId() *RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_SentInterfaceIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent-interface-id"}, map[string]interface{}{}, @@ -156717,9 +156963,9 @@ func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) SentInterfaceId() *RelayAgent_D } } -// SentRemoteId returns from RelayAgent_Dhcpv6_Interface_Options the path struct for its child "sent-remote-id". -func (n *RelayAgent_Dhcpv6_Interface_Options) SentRemoteId() *RelayAgent_Dhcpv6_Interface_Options_SentRemoteId { - return &RelayAgent_Dhcpv6_Interface_Options_SentRemoteId{ +// SentRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPath the path struct for its child "sent-remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPath) SentRemoteId() *RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPath { + return &RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPath{ NodePath: ygot.NewNodePath( []string{"state", "sent-remote-id"}, map[string]interface{}{}, @@ -156728,9 +156974,9 @@ func (n *RelayAgent_Dhcpv6_Interface_Options) SentRemoteId() *RelayAgent_Dhcpv6_ } } -// SentRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsAny the path struct for its child "sent-remote-id". -func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) SentRemoteId() *RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdAny { - return &RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdAny{ +// SentRemoteId returns from RelayAgent_Dhcpv6_Interface_OptionsPathAny the path struct for its child "sent-remote-id". +func (n *RelayAgent_Dhcpv6_Interface_OptionsPathAny) SentRemoteId() *RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPathAny { + return &RelayAgent_Dhcpv6_Interface_Options_SentRemoteIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "sent-remote-id"}, map[string]interface{}{}, @@ -156739,312 +156985,93 @@ func (n *RelayAgent_Dhcpv6_Interface_OptionsAny) SentRemoteId() *RelayAgent_Dhcp } } -// RelayAgent_Dhcpv6_Options represents the /openconfig-relay-agent/relay-agent/dhcpv6/options YANG schema element. -type RelayAgent_Dhcpv6_Options struct { +// RelayAgent_Dhcpv6_OptionsPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/options YANG schema element. +type RelayAgent_Dhcpv6_OptionsPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_OptionsAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options YANG schema element. -type RelayAgent_Dhcpv6_OptionsAny struct { +// RelayAgent_Dhcpv6_OptionsPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options YANG schema element. +type RelayAgent_Dhcpv6_OptionsPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Options_EnableInterfaceId represents the /openconfig-relay-agent/relay-agent/dhcpv6/options/state/enable-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Options_EnableInterfaceId struct { +// RelayAgent_Dhcpv6_Options_EnableInterfaceIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/options/config/enable-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Options_EnableInterfaceIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Options_EnableInterfaceIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options/state/enable-interface-id YANG schema element. -type RelayAgent_Dhcpv6_Options_EnableInterfaceIdAny struct { +// RelayAgent_Dhcpv6_Options_EnableInterfaceIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options/config/enable-interface-id YANG schema element. +type RelayAgent_Dhcpv6_Options_EnableInterfaceIdPathAny struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Options_EnableRemoteId represents the /openconfig-relay-agent/relay-agent/dhcpv6/options/state/enable-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Options_EnableRemoteId struct { +// RelayAgent_Dhcpv6_Options_EnableRemoteIdPath represents the /openconfig-relay-agent/relay-agent/dhcpv6/options/config/enable-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Options_EnableRemoteIdPath struct { *ygot.NodePath } -// RelayAgent_Dhcpv6_Options_EnableRemoteIdAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options/state/enable-remote-id YANG schema element. -type RelayAgent_Dhcpv6_Options_EnableRemoteIdAny struct { +// RelayAgent_Dhcpv6_Options_EnableRemoteIdPathAny represents the wildcard version of the /openconfig-relay-agent/relay-agent/dhcpv6/options/config/enable-remote-id YANG schema element. +type RelayAgent_Dhcpv6_Options_EnableRemoteIdPathAny struct { *ygot.NodePath } -// EnableInterfaceId returns from RelayAgent_Dhcpv6_Options the path struct for its child "enable-interface-id". -func (n *RelayAgent_Dhcpv6_Options) EnableInterfaceId() *RelayAgent_Dhcpv6_Options_EnableInterfaceId { - return &RelayAgent_Dhcpv6_Options_EnableInterfaceId{ - NodePath: ygot.NewNodePath( - []string{"state", "enable-interface-id"}, - map[string]interface{}{}, - n, - ), - } -} - -// EnableInterfaceId returns from RelayAgent_Dhcpv6_OptionsAny the path struct for its child "enable-interface-id". -func (n *RelayAgent_Dhcpv6_OptionsAny) EnableInterfaceId() *RelayAgent_Dhcpv6_Options_EnableInterfaceIdAny { - return &RelayAgent_Dhcpv6_Options_EnableInterfaceIdAny{ - NodePath: ygot.NewNodePath( - []string{"state", "enable-interface-id"}, - map[string]interface{}{}, - n, - ), - } -} - -// EnableRemoteId returns from RelayAgent_Dhcpv6_Options the path struct for its child "enable-remote-id". -func (n *RelayAgent_Dhcpv6_Options) EnableRemoteId() *RelayAgent_Dhcpv6_Options_EnableRemoteId { - return &RelayAgent_Dhcpv6_Options_EnableRemoteId{ - NodePath: ygot.NewNodePath( - []string{"state", "enable-remote-id"}, - map[string]interface{}{}, - n, - ), - } -} - -// EnableRemoteId returns from RelayAgent_Dhcpv6_OptionsAny the path struct for its child "enable-remote-id". -func (n *RelayAgent_Dhcpv6_OptionsAny) EnableRemoteId() *RelayAgent_Dhcpv6_Options_EnableRemoteIdAny { - return &RelayAgent_Dhcpv6_Options_EnableRemoteIdAny{ +// EnableInterfaceId returns from RelayAgent_Dhcpv6_OptionsPath the path struct for its child "enable-interface-id". +func (n *RelayAgent_Dhcpv6_OptionsPath) EnableInterfaceId() *RelayAgent_Dhcpv6_Options_EnableInterfaceIdPath { + return &RelayAgent_Dhcpv6_Options_EnableInterfaceIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-remote-id"}, + []string{"config", "enable-interface-id"}, map[string]interface{}{}, n, ), } } -// Root represents the /root YANG schema element. -type Root struct { - *ygot.DeviceRootBase -} - -// DeviceRoot returns a new path object from which YANG paths can be constructed. -func DeviceRoot(id string) *Root { - return &Root{ygot.NewDeviceRootBase(id)} -} - -// Acl returns from Root the path struct for its child "acl". -func (n *Root) Acl() *Acl { - return &Acl{ +// EnableInterfaceId returns from RelayAgent_Dhcpv6_OptionsPathAny the path struct for its child "enable-interface-id". +func (n *RelayAgent_Dhcpv6_OptionsPathAny) EnableInterfaceId() *RelayAgent_Dhcpv6_Options_EnableInterfaceIdPathAny { + return &RelayAgent_Dhcpv6_Options_EnableInterfaceIdPathAny{ NodePath: ygot.NewNodePath( - []string{"acl"}, + []string{"config", "enable-interface-id"}, map[string]interface{}{}, n, ), } } -// Aps returns from Root the path struct for its child "aps". -func (n *Root) Aps() *Aps { - return &Aps{ +// EnableRemoteId returns from RelayAgent_Dhcpv6_OptionsPath the path struct for its child "enable-remote-id". +func (n *RelayAgent_Dhcpv6_OptionsPath) EnableRemoteId() *RelayAgent_Dhcpv6_Options_EnableRemoteIdPath { + return &RelayAgent_Dhcpv6_Options_EnableRemoteIdPath{ NodePath: ygot.NewNodePath( - []string{"aps"}, + []string{"config", "enable-remote-id"}, map[string]interface{}{}, n, ), } } -// Bgp returns from Root the path struct for its child "bgp". -func (n *Root) Bgp() *Bgp { - return &Bgp{ +// EnableRemoteId returns from RelayAgent_Dhcpv6_OptionsPathAny the path struct for its child "enable-remote-id". +func (n *RelayAgent_Dhcpv6_OptionsPathAny) EnableRemoteId() *RelayAgent_Dhcpv6_Options_EnableRemoteIdPathAny { + return &RelayAgent_Dhcpv6_Options_EnableRemoteIdPathAny{ NodePath: ygot.NewNodePath( - []string{"bgp"}, + []string{"config", "enable-remote-id"}, map[string]interface{}{}, n, ), } } -// ComponentAny returns from Root the path struct for its child "component". -func (n *Root) ComponentAny() *ComponentAny { - return &ComponentAny{ - NodePath: ygot.NewNodePath( - []string{"components", "component"}, - map[string]interface{}{"name": "*"}, - n, - ), - } -} - -// Component returns from Root the path struct for its child "component". -func (n *Root) Component(Name string) *Component { - return &Component{ - NodePath: ygot.NewNodePath( - []string{"components", "component"}, - map[string]interface{}{"name": Name}, - n, - ), - } -} - -// InterfaceAny returns from Root the path struct for its child "interface". -func (n *Root) InterfaceAny() *InterfaceAny { - return &InterfaceAny{ - NodePath: ygot.NewNodePath( - []string{"interfaces", "interface"}, - map[string]interface{}{"name": "*"}, - n, - ), - } -} - -// Interface returns from Root the path struct for its child "interface". -func (n *Root) Interface(Name string) *Interface { - return &Interface{ - NodePath: ygot.NewNodePath( - []string{"interfaces", "interface"}, - map[string]interface{}{"name": Name}, - n, - ), - } -} - -// Lacp returns from Root the path struct for its child "lacp". -func (n *Root) Lacp() *Lacp { - return &Lacp{ - NodePath: ygot.NewNodePath( - []string{"lacp"}, - map[string]interface{}{}, - n, - ), - } -} - -// Lldp returns from Root the path struct for its child "lldp". -func (n *Root) Lldp() *Lldp { - return &Lldp{ - NodePath: ygot.NewNodePath( - []string{"lldp"}, - map[string]interface{}{}, - n, - ), - } -} - -// LocalRoutes returns from Root the path struct for its child "local-routes". -func (n *Root) LocalRoutes() *LocalRoutes { - return &LocalRoutes{ - NodePath: ygot.NewNodePath( - []string{"local-routes"}, - map[string]interface{}{}, - n, - ), - } -} - -// Messages returns from Root the path struct for its child "messages". -func (n *Root) Messages() *Messages { - return &Messages{ - NodePath: ygot.NewNodePath( - []string{"messages"}, - map[string]interface{}{}, - n, - ), - } -} - -// NetworkInstanceAny returns from Root the path struct for its child "network-instance". -func (n *Root) NetworkInstanceAny() *NetworkInstanceAny { - return &NetworkInstanceAny{ - NodePath: ygot.NewNodePath( - []string{"network-instances", "network-instance"}, - map[string]interface{}{"name": "*"}, - n, - ), - } -} - -// NetworkInstance returns from Root the path struct for its child "network-instance". -func (n *Root) NetworkInstance(Name string) *NetworkInstance { - return &NetworkInstance{ - NodePath: ygot.NewNodePath( - []string{"network-instances", "network-instance"}, - map[string]interface{}{"name": Name}, - n, - ), - } -} - -// OpticalAmplifier returns from Root the path struct for its child "optical-amplifier". -func (n *Root) OpticalAmplifier() *OpticalAmplifier { - return &OpticalAmplifier{ - NodePath: ygot.NewNodePath( - []string{"optical-amplifier"}, - map[string]interface{}{}, - n, - ), - } -} - -// RelayAgent returns from Root the path struct for its child "relay-agent". -func (n *Root) RelayAgent() *RelayAgent { - return &RelayAgent{ - NodePath: ygot.NewNodePath( - []string{"relay-agent"}, - map[string]interface{}{}, - n, - ), - } -} - -// RoutingPolicy returns from Root the path struct for its child "routing-policy". -func (n *Root) RoutingPolicy() *RoutingPolicy { - return &RoutingPolicy{ - NodePath: ygot.NewNodePath( - []string{"routing-policy"}, - map[string]interface{}{}, - n, - ), - } -} - -// Stp returns from Root the path struct for its child "stp". -func (n *Root) Stp() *Stp { - return &Stp{ - NodePath: ygot.NewNodePath( - []string{"stp"}, - map[string]interface{}{}, - n, - ), - } -} - -// System returns from Root the path struct for its child "system". -func (n *Root) System() *System { - return &System{ - NodePath: ygot.NewNodePath( - []string{"system"}, - map[string]interface{}{}, - n, - ), - } -} - -// TerminalDevice returns from Root the path struct for its child "terminal-device". -func (n *Root) TerminalDevice() *TerminalDevice { - return &TerminalDevice{ - NodePath: ygot.NewNodePath( - []string{"terminal-device"}, - map[string]interface{}{}, - n, - ), - } -} - -// RoutingPolicy represents the /openconfig-routing-policy/routing-policy YANG schema element. -type RoutingPolicy struct { +// RoutingPolicyPath represents the /openconfig-routing-policy/routing-policy YANG schema element. +type RoutingPolicyPath struct { *ygot.NodePath } -// RoutingPolicyAny represents the wildcard version of the /openconfig-routing-policy/routing-policy YANG schema element. -type RoutingPolicyAny struct { +// RoutingPolicyPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy YANG schema element. +type RoutingPolicyPathAny struct { *ygot.NodePath } -// DefinedSets returns from RoutingPolicy the path struct for its child "defined-sets". -func (n *RoutingPolicy) DefinedSets() *RoutingPolicy_DefinedSets { - return &RoutingPolicy_DefinedSets{ +// DefinedSets returns from RoutingPolicyPath the path struct for its child "defined-sets". +func (n *RoutingPolicyPath) DefinedSets() *RoutingPolicy_DefinedSetsPath { + return &RoutingPolicy_DefinedSetsPath{ NodePath: ygot.NewNodePath( []string{"defined-sets"}, map[string]interface{}{}, @@ -157053,9 +157080,9 @@ func (n *RoutingPolicy) DefinedSets() *RoutingPolicy_DefinedSets { } } -// DefinedSets returns from RoutingPolicyAny the path struct for its child "defined-sets". -func (n *RoutingPolicyAny) DefinedSets() *RoutingPolicy_DefinedSetsAny { - return &RoutingPolicy_DefinedSetsAny{ +// DefinedSets returns from RoutingPolicyPathAny the path struct for its child "defined-sets". +func (n *RoutingPolicyPathAny) DefinedSets() *RoutingPolicy_DefinedSetsPathAny { + return &RoutingPolicy_DefinedSetsPathAny{ NodePath: ygot.NewNodePath( []string{"defined-sets"}, map[string]interface{}{}, @@ -157064,9 +157091,9 @@ func (n *RoutingPolicyAny) DefinedSets() *RoutingPolicy_DefinedSetsAny { } } -// PolicyDefinitionAny returns from RoutingPolicy the path struct for its child "policy-definition". -func (n *RoutingPolicy) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinitionAny { - return &RoutingPolicy_PolicyDefinitionAny{ +// PolicyDefinitionAny returns from RoutingPolicyPath the path struct for its child "policy-definition". +func (n *RoutingPolicyPath) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinitionPathAny { + return &RoutingPolicy_PolicyDefinitionPathAny{ NodePath: ygot.NewNodePath( []string{"policy-definitions", "policy-definition"}, map[string]interface{}{"name": "*"}, @@ -157075,9 +157102,9 @@ func (n *RoutingPolicy) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinitionAny } } -// PolicyDefinitionAny returns from RoutingPolicyAny the path struct for its child "policy-definition". -func (n *RoutingPolicyAny) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinitionAny { - return &RoutingPolicy_PolicyDefinitionAny{ +// PolicyDefinitionAny returns from RoutingPolicyPathAny the path struct for its child "policy-definition". +func (n *RoutingPolicyPathAny) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinitionPathAny { + return &RoutingPolicy_PolicyDefinitionPathAny{ NodePath: ygot.NewNodePath( []string{"policy-definitions", "policy-definition"}, map[string]interface{}{"name": "*"}, @@ -157086,9 +157113,9 @@ func (n *RoutingPolicyAny) PolicyDefinitionAny() *RoutingPolicy_PolicyDefinition } } -// PolicyDefinition returns from RoutingPolicy the path struct for its child "policy-definition". -func (n *RoutingPolicy) PolicyDefinition(Name string) *RoutingPolicy_PolicyDefinition { - return &RoutingPolicy_PolicyDefinition{ +// PolicyDefinition returns from RoutingPolicyPath the path struct for its child "policy-definition". +func (n *RoutingPolicyPath) PolicyDefinition(Name string) *RoutingPolicy_PolicyDefinitionPath { + return &RoutingPolicy_PolicyDefinitionPath{ NodePath: ygot.NewNodePath( []string{"policy-definitions", "policy-definition"}, map[string]interface{}{"name": Name}, @@ -157097,9 +157124,9 @@ func (n *RoutingPolicy) PolicyDefinition(Name string) *RoutingPolicy_PolicyDefin } } -// PolicyDefinition returns from RoutingPolicyAny the path struct for its child "policy-definition". -func (n *RoutingPolicyAny) PolicyDefinition(Name string) *RoutingPolicy_PolicyDefinitionAny { - return &RoutingPolicy_PolicyDefinitionAny{ +// PolicyDefinition returns from RoutingPolicyPathAny the path struct for its child "policy-definition". +func (n *RoutingPolicyPathAny) PolicyDefinition(Name string) *RoutingPolicy_PolicyDefinitionPathAny { + return &RoutingPolicy_PolicyDefinitionPathAny{ NodePath: ygot.NewNodePath( []string{"policy-definitions", "policy-definition"}, map[string]interface{}{"name": Name}, @@ -157108,19 +157135,19 @@ func (n *RoutingPolicyAny) PolicyDefinition(Name string) *RoutingPolicy_PolicyDe } } -// RoutingPolicy_DefinedSets represents the /openconfig-routing-policy/routing-policy/defined-sets YANG schema element. -type RoutingPolicy_DefinedSets struct { +// RoutingPolicy_DefinedSetsPath represents the /openconfig-routing-policy/routing-policy/defined-sets YANG schema element. +type RoutingPolicy_DefinedSetsPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSetsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets YANG schema element. -type RoutingPolicy_DefinedSetsAny struct { +// RoutingPolicy_DefinedSetsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets YANG schema element. +type RoutingPolicy_DefinedSetsPathAny struct { *ygot.NodePath } -// NeighborSetAny returns from RoutingPolicy_DefinedSets the path struct for its child "neighbor-set". -func (n *RoutingPolicy_DefinedSets) NeighborSetAny() *RoutingPolicy_DefinedSets_NeighborSetAny { - return &RoutingPolicy_DefinedSets_NeighborSetAny{ +// NeighborSetAny returns from RoutingPolicy_DefinedSetsPath the path struct for its child "neighbor-set". +func (n *RoutingPolicy_DefinedSetsPath) NeighborSetAny() *RoutingPolicy_DefinedSets_NeighborSetPathAny { + return &RoutingPolicy_DefinedSets_NeighborSetPathAny{ NodePath: ygot.NewNodePath( []string{"neighbor-sets", "neighbor-set"}, map[string]interface{}{"name": "*"}, @@ -157129,9 +157156,9 @@ func (n *RoutingPolicy_DefinedSets) NeighborSetAny() *RoutingPolicy_DefinedSets_ } } -// NeighborSetAny returns from RoutingPolicy_DefinedSetsAny the path struct for its child "neighbor-set". -func (n *RoutingPolicy_DefinedSetsAny) NeighborSetAny() *RoutingPolicy_DefinedSets_NeighborSetAny { - return &RoutingPolicy_DefinedSets_NeighborSetAny{ +// NeighborSetAny returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "neighbor-set". +func (n *RoutingPolicy_DefinedSetsPathAny) NeighborSetAny() *RoutingPolicy_DefinedSets_NeighborSetPathAny { + return &RoutingPolicy_DefinedSets_NeighborSetPathAny{ NodePath: ygot.NewNodePath( []string{"neighbor-sets", "neighbor-set"}, map[string]interface{}{"name": "*"}, @@ -157140,9 +157167,9 @@ func (n *RoutingPolicy_DefinedSetsAny) NeighborSetAny() *RoutingPolicy_DefinedSe } } -// NeighborSet returns from RoutingPolicy_DefinedSets the path struct for its child "neighbor-set". -func (n *RoutingPolicy_DefinedSets) NeighborSet(Name string) *RoutingPolicy_DefinedSets_NeighborSet { - return &RoutingPolicy_DefinedSets_NeighborSet{ +// NeighborSet returns from RoutingPolicy_DefinedSetsPath the path struct for its child "neighbor-set". +func (n *RoutingPolicy_DefinedSetsPath) NeighborSet(Name string) *RoutingPolicy_DefinedSets_NeighborSetPath { + return &RoutingPolicy_DefinedSets_NeighborSetPath{ NodePath: ygot.NewNodePath( []string{"neighbor-sets", "neighbor-set"}, map[string]interface{}{"name": Name}, @@ -157151,9 +157178,9 @@ func (n *RoutingPolicy_DefinedSets) NeighborSet(Name string) *RoutingPolicy_Defi } } -// NeighborSet returns from RoutingPolicy_DefinedSetsAny the path struct for its child "neighbor-set". -func (n *RoutingPolicy_DefinedSetsAny) NeighborSet(Name string) *RoutingPolicy_DefinedSets_NeighborSetAny { - return &RoutingPolicy_DefinedSets_NeighborSetAny{ +// NeighborSet returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "neighbor-set". +func (n *RoutingPolicy_DefinedSetsPathAny) NeighborSet(Name string) *RoutingPolicy_DefinedSets_NeighborSetPathAny { + return &RoutingPolicy_DefinedSets_NeighborSetPathAny{ NodePath: ygot.NewNodePath( []string{"neighbor-sets", "neighbor-set"}, map[string]interface{}{"name": Name}, @@ -157162,9 +157189,9 @@ func (n *RoutingPolicy_DefinedSetsAny) NeighborSet(Name string) *RoutingPolicy_D } } -// PrefixSetAny returns from RoutingPolicy_DefinedSets the path struct for its child "prefix-set". -func (n *RoutingPolicy_DefinedSets) PrefixSetAny() *RoutingPolicy_DefinedSets_PrefixSetAny { - return &RoutingPolicy_DefinedSets_PrefixSetAny{ +// PrefixSetAny returns from RoutingPolicy_DefinedSetsPath the path struct for its child "prefix-set". +func (n *RoutingPolicy_DefinedSetsPath) PrefixSetAny() *RoutingPolicy_DefinedSets_PrefixSetPathAny { + return &RoutingPolicy_DefinedSets_PrefixSetPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sets", "prefix-set"}, map[string]interface{}{"name": "*"}, @@ -157173,9 +157200,9 @@ func (n *RoutingPolicy_DefinedSets) PrefixSetAny() *RoutingPolicy_DefinedSets_Pr } } -// PrefixSetAny returns from RoutingPolicy_DefinedSetsAny the path struct for its child "prefix-set". -func (n *RoutingPolicy_DefinedSetsAny) PrefixSetAny() *RoutingPolicy_DefinedSets_PrefixSetAny { - return &RoutingPolicy_DefinedSets_PrefixSetAny{ +// PrefixSetAny returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "prefix-set". +func (n *RoutingPolicy_DefinedSetsPathAny) PrefixSetAny() *RoutingPolicy_DefinedSets_PrefixSetPathAny { + return &RoutingPolicy_DefinedSets_PrefixSetPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sets", "prefix-set"}, map[string]interface{}{"name": "*"}, @@ -157184,9 +157211,9 @@ func (n *RoutingPolicy_DefinedSetsAny) PrefixSetAny() *RoutingPolicy_DefinedSets } } -// PrefixSet returns from RoutingPolicy_DefinedSets the path struct for its child "prefix-set". -func (n *RoutingPolicy_DefinedSets) PrefixSet(Name string) *RoutingPolicy_DefinedSets_PrefixSet { - return &RoutingPolicy_DefinedSets_PrefixSet{ +// PrefixSet returns from RoutingPolicy_DefinedSetsPath the path struct for its child "prefix-set". +func (n *RoutingPolicy_DefinedSetsPath) PrefixSet(Name string) *RoutingPolicy_DefinedSets_PrefixSetPath { + return &RoutingPolicy_DefinedSets_PrefixSetPath{ NodePath: ygot.NewNodePath( []string{"prefix-sets", "prefix-set"}, map[string]interface{}{"name": Name}, @@ -157195,9 +157222,9 @@ func (n *RoutingPolicy_DefinedSets) PrefixSet(Name string) *RoutingPolicy_Define } } -// PrefixSet returns from RoutingPolicy_DefinedSetsAny the path struct for its child "prefix-set". -func (n *RoutingPolicy_DefinedSetsAny) PrefixSet(Name string) *RoutingPolicy_DefinedSets_PrefixSetAny { - return &RoutingPolicy_DefinedSets_PrefixSetAny{ +// PrefixSet returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "prefix-set". +func (n *RoutingPolicy_DefinedSetsPathAny) PrefixSet(Name string) *RoutingPolicy_DefinedSets_PrefixSetPathAny { + return &RoutingPolicy_DefinedSets_PrefixSetPathAny{ NodePath: ygot.NewNodePath( []string{"prefix-sets", "prefix-set"}, map[string]interface{}{"name": Name}, @@ -157206,9 +157233,9 @@ func (n *RoutingPolicy_DefinedSetsAny) PrefixSet(Name string) *RoutingPolicy_Def } } -// TagSetAny returns from RoutingPolicy_DefinedSets the path struct for its child "tag-set". -func (n *RoutingPolicy_DefinedSets) TagSetAny() *RoutingPolicy_DefinedSets_TagSetAny { - return &RoutingPolicy_DefinedSets_TagSetAny{ +// TagSetAny returns from RoutingPolicy_DefinedSetsPath the path struct for its child "tag-set". +func (n *RoutingPolicy_DefinedSetsPath) TagSetAny() *RoutingPolicy_DefinedSets_TagSetPathAny { + return &RoutingPolicy_DefinedSets_TagSetPathAny{ NodePath: ygot.NewNodePath( []string{"tag-sets", "tag-set"}, map[string]interface{}{"name": "*"}, @@ -157217,9 +157244,9 @@ func (n *RoutingPolicy_DefinedSets) TagSetAny() *RoutingPolicy_DefinedSets_TagSe } } -// TagSetAny returns from RoutingPolicy_DefinedSetsAny the path struct for its child "tag-set". -func (n *RoutingPolicy_DefinedSetsAny) TagSetAny() *RoutingPolicy_DefinedSets_TagSetAny { - return &RoutingPolicy_DefinedSets_TagSetAny{ +// TagSetAny returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "tag-set". +func (n *RoutingPolicy_DefinedSetsPathAny) TagSetAny() *RoutingPolicy_DefinedSets_TagSetPathAny { + return &RoutingPolicy_DefinedSets_TagSetPathAny{ NodePath: ygot.NewNodePath( []string{"tag-sets", "tag-set"}, map[string]interface{}{"name": "*"}, @@ -157228,9 +157255,9 @@ func (n *RoutingPolicy_DefinedSetsAny) TagSetAny() *RoutingPolicy_DefinedSets_Ta } } -// TagSet returns from RoutingPolicy_DefinedSets the path struct for its child "tag-set". -func (n *RoutingPolicy_DefinedSets) TagSet(Name string) *RoutingPolicy_DefinedSets_TagSet { - return &RoutingPolicy_DefinedSets_TagSet{ +// TagSet returns from RoutingPolicy_DefinedSetsPath the path struct for its child "tag-set". +func (n *RoutingPolicy_DefinedSetsPath) TagSet(Name string) *RoutingPolicy_DefinedSets_TagSetPath { + return &RoutingPolicy_DefinedSets_TagSetPath{ NodePath: ygot.NewNodePath( []string{"tag-sets", "tag-set"}, map[string]interface{}{"name": Name}, @@ -157239,9 +157266,9 @@ func (n *RoutingPolicy_DefinedSets) TagSet(Name string) *RoutingPolicy_DefinedSe } } -// TagSet returns from RoutingPolicy_DefinedSetsAny the path struct for its child "tag-set". -func (n *RoutingPolicy_DefinedSetsAny) TagSet(Name string) *RoutingPolicy_DefinedSets_TagSetAny { - return &RoutingPolicy_DefinedSets_TagSetAny{ +// TagSet returns from RoutingPolicy_DefinedSetsPathAny the path struct for its child "tag-set". +func (n *RoutingPolicy_DefinedSetsPathAny) TagSet(Name string) *RoutingPolicy_DefinedSets_TagSetPathAny { + return &RoutingPolicy_DefinedSets_TagSetPathAny{ NodePath: ygot.NewNodePath( []string{"tag-sets", "tag-set"}, map[string]interface{}{"name": Name}, @@ -157250,157 +157277,157 @@ func (n *RoutingPolicy_DefinedSetsAny) TagSet(Name string) *RoutingPolicy_Define } } -// RoutingPolicy_DefinedSets_NeighborSet represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSet struct { +// RoutingPolicy_DefinedSets_NeighborSetPath represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSetPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_NeighborSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSetAny struct { +// RoutingPolicy_DefinedSets_NeighborSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_NeighborSet_Address represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/state/address YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSet_Address struct { +// RoutingPolicy_DefinedSets_NeighborSet_AddressPath represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/config/address YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSet_AddressPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_NeighborSet_AddressAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/state/address YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSet_AddressAny struct { +// RoutingPolicy_DefinedSets_NeighborSet_AddressPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/config/address YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSet_AddressPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_NeighborSet_Name represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSet_Name struct { +// RoutingPolicy_DefinedSets_NeighborSet_NamePath represents the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSet_NamePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_NeighborSet_NameAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_NeighborSet_NameAny struct { +// RoutingPolicy_DefinedSets_NeighborSet_NamePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/neighbor-sets/neighbor-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_NeighborSet_NamePathAny struct { *ygot.NodePath } -// Address returns from RoutingPolicy_DefinedSets_NeighborSet the path struct for its child "address". -func (n *RoutingPolicy_DefinedSets_NeighborSet) Address() *RoutingPolicy_DefinedSets_NeighborSet_Address { - return &RoutingPolicy_DefinedSets_NeighborSet_Address{ +// Address returns from RoutingPolicy_DefinedSets_NeighborSetPath the path struct for its child "address". +func (n *RoutingPolicy_DefinedSets_NeighborSetPath) Address() *RoutingPolicy_DefinedSets_NeighborSet_AddressPath { + return &RoutingPolicy_DefinedSets_NeighborSet_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from RoutingPolicy_DefinedSets_NeighborSetAny the path struct for its child "address". -func (n *RoutingPolicy_DefinedSets_NeighborSetAny) Address() *RoutingPolicy_DefinedSets_NeighborSet_AddressAny { - return &RoutingPolicy_DefinedSets_NeighborSet_AddressAny{ +// Address returns from RoutingPolicy_DefinedSets_NeighborSetPathAny the path struct for its child "address". +func (n *RoutingPolicy_DefinedSets_NeighborSetPathAny) Address() *RoutingPolicy_DefinedSets_NeighborSet_AddressPathAny { + return &RoutingPolicy_DefinedSets_NeighborSet_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_DefinedSets_NeighborSet the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_NeighborSet) Name() *RoutingPolicy_DefinedSets_NeighborSet_Name { - return &RoutingPolicy_DefinedSets_NeighborSet_Name{ +// Name returns from RoutingPolicy_DefinedSets_NeighborSetPath the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_NeighborSetPath) Name() *RoutingPolicy_DefinedSets_NeighborSet_NamePath { + return &RoutingPolicy_DefinedSets_NeighborSet_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_DefinedSets_NeighborSetAny the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_NeighborSetAny) Name() *RoutingPolicy_DefinedSets_NeighborSet_NameAny { - return &RoutingPolicy_DefinedSets_NeighborSet_NameAny{ +// Name returns from RoutingPolicy_DefinedSets_NeighborSetPathAny the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_NeighborSetPathAny) Name() *RoutingPolicy_DefinedSets_NeighborSet_NamePathAny { + return &RoutingPolicy_DefinedSets_NeighborSet_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_DefinedSets_PrefixSet represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet struct { +// RoutingPolicy_DefinedSets_PrefixSetPath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSetPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSetAny struct { +// RoutingPolicy_DefinedSets_PrefixSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Mode represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/state/mode YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Mode struct { +// RoutingPolicy_DefinedSets_PrefixSet_ModePath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/config/mode YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_ModePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_ModeAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/state/mode YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_ModeAny struct { +// RoutingPolicy_DefinedSets_PrefixSet_ModePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/config/mode YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_ModePathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Name represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Name struct { +// RoutingPolicy_DefinedSets_PrefixSet_NamePath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_NamePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_NameAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_NameAny struct { +// RoutingPolicy_DefinedSets_PrefixSet_NamePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_NamePathAny struct { *ygot.NodePath } -// Mode returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "mode". -func (n *RoutingPolicy_DefinedSets_PrefixSet) Mode() *RoutingPolicy_DefinedSets_PrefixSet_Mode { - return &RoutingPolicy_DefinedSets_PrefixSet_Mode{ +// Mode returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "mode". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) Mode() *RoutingPolicy_DefinedSets_PrefixSet_ModePath { + return &RoutingPolicy_DefinedSets_PrefixSet_ModePath{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Mode returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "mode". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) Mode() *RoutingPolicy_DefinedSets_PrefixSet_ModeAny { - return &RoutingPolicy_DefinedSets_PrefixSet_ModeAny{ +// Mode returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "mode". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) Mode() *RoutingPolicy_DefinedSets_PrefixSet_ModePathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_ModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mode"}, + []string{"config", "mode"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_PrefixSet) Name() *RoutingPolicy_DefinedSets_PrefixSet_Name { - return &RoutingPolicy_DefinedSets_PrefixSet_Name{ +// Name returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) Name() *RoutingPolicy_DefinedSets_PrefixSet_NamePath { + return &RoutingPolicy_DefinedSets_PrefixSet_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) Name() *RoutingPolicy_DefinedSets_PrefixSet_NameAny { - return &RoutingPolicy_DefinedSets_PrefixSet_NameAny{ +// Name returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) Name() *RoutingPolicy_DefinedSets_PrefixSet_NamePathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PrefixAny returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAny() *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAny returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) PrefixAny() *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": "*", "masklength-range": "*"}, @@ -157409,9 +157436,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAny() *RoutingPolicy_Defined } } -// PrefixAny returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAny() *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAny returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) PrefixAny() *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": "*", "masklength-range": "*"}, @@ -157420,9 +157447,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAny() *RoutingPolicy_Defi } } -// PrefixAnyMasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAnyMasklengthRange(IpPrefix string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAnyMasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) PrefixAnyMasklengthRange(IpPrefix string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": IpPrefix, "masklength-range": "*"}, @@ -157431,9 +157458,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAnyMasklengthRange(IpPrefix } } -// PrefixAnyMasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAnyMasklengthRange(IpPrefix string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAnyMasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) PrefixAnyMasklengthRange(IpPrefix string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": IpPrefix, "masklength-range": "*"}, @@ -157442,9 +157469,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAnyMasklengthRange(IpPref } } -// PrefixAnyIpPrefix returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAnyIpPrefix(MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAnyIpPrefix returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) PrefixAnyIpPrefix(MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": "*", "masklength-range": MasklengthRange}, @@ -157453,9 +157480,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSet) PrefixAnyIpPrefix(MasklengthRange } } -// PrefixAnyIpPrefix returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAnyIpPrefix(MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// PrefixAnyIpPrefix returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) PrefixAnyIpPrefix(MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": "*", "masklength-range": MasklengthRange}, @@ -157464,9 +157491,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSetAny) PrefixAnyIpPrefix(MasklengthRan } } -// Prefix returns from RoutingPolicy_DefinedSets_PrefixSet the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet) Prefix(IpPrefix string, MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_Prefix { - return &RoutingPolicy_DefinedSets_PrefixSet_Prefix{ +// Prefix returns from RoutingPolicy_DefinedSets_PrefixSetPath the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPath) Prefix(IpPrefix string, MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPath { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPath{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": IpPrefix, "masklength-range": MasklengthRange}, @@ -157475,9 +157502,9 @@ func (n *RoutingPolicy_DefinedSets_PrefixSet) Prefix(IpPrefix string, Masklength } } -// Prefix returns from RoutingPolicy_DefinedSets_PrefixSetAny the path struct for its child "prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSetAny) Prefix(IpPrefix string, MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_PrefixAny{ +// Prefix returns from RoutingPolicy_DefinedSets_PrefixSetPathAny the path struct for its child "prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSetPathAny) Prefix(IpPrefix string, MasklengthRange string) *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny{ NodePath: ygot.NewNodePath( []string{"prefixes", "prefix"}, map[string]interface{}{"ip-prefix": IpPrefix, "masklength-range": MasklengthRange}, @@ -157486,199 +157513,199 @@ func (n *RoutingPolicy_DefinedSets_PrefixSetAny) Prefix(IpPrefix string, Masklen } } -// RoutingPolicy_DefinedSets_PrefixSet_Prefix represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Prefix struct { +// RoutingPolicy_DefinedSets_PrefixSet_PrefixPath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_PrefixPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_PrefixAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_PrefixAny struct { +// RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefix represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/state/ip-prefix YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefix struct { +// RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/config/ip-prefix YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/state/ip-prefix YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixAny struct { +// RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/config/ip-prefix YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRange represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/state/masklength-range YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRange struct { +// RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePath represents the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/config/masklength-range YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangeAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/state/masklength-range YANG schema element. -type RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangeAny struct { +// RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/prefix-sets/prefix-set/prefixes/prefix/config/masklength-range YANG schema element. +type RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePathAny struct { *ygot.NodePath } -// IpPrefix returns from RoutingPolicy_DefinedSets_PrefixSet_Prefix the path struct for its child "ip-prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet_Prefix) IpPrefix() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefix { - return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefix{ +// IpPrefix returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixPath the path struct for its child "ip-prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixPath) IpPrefix() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPath { + return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPath{ NodePath: ygot.NewNodePath( - []string{"state", "ip-prefix"}, + []string{"config", "ip-prefix"}, map[string]interface{}{}, n, ), } } -// IpPrefix returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixAny the path struct for its child "ip-prefix". -func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny) IpPrefix() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixAny { - return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixAny{ +// IpPrefix returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny the path struct for its child "ip-prefix". +func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny) IpPrefix() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_IpPrefixPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ip-prefix"}, + []string{"config", "ip-prefix"}, map[string]interface{}{}, n, ), } } -// MasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSet_Prefix the path struct for its child "masklength-range". -func (n *RoutingPolicy_DefinedSets_PrefixSet_Prefix) MasklengthRange() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRange { - return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRange{ +// MasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixPath the path struct for its child "masklength-range". +func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixPath) MasklengthRange() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePath { + return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePath{ NodePath: ygot.NewNodePath( - []string{"state", "masklength-range"}, + []string{"config", "masklength-range"}, map[string]interface{}{}, n, ), } } -// MasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixAny the path struct for its child "masklength-range". -func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixAny) MasklengthRange() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangeAny { - return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangeAny{ +// MasklengthRange returns from RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny the path struct for its child "masklength-range". +func (n *RoutingPolicy_DefinedSets_PrefixSet_PrefixPathAny) MasklengthRange() *RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePathAny { + return &RoutingPolicy_DefinedSets_PrefixSet_Prefix_MasklengthRangePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "masklength-range"}, + []string{"config", "masklength-range"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_DefinedSets_TagSet represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set YANG schema element. -type RoutingPolicy_DefinedSets_TagSet struct { +// RoutingPolicy_DefinedSets_TagSetPath represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set YANG schema element. +type RoutingPolicy_DefinedSets_TagSetPath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_TagSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set YANG schema element. -type RoutingPolicy_DefinedSets_TagSetAny struct { +// RoutingPolicy_DefinedSets_TagSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set YANG schema element. +type RoutingPolicy_DefinedSets_TagSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_TagSet_Name represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_TagSet_Name struct { +// RoutingPolicy_DefinedSets_TagSet_NamePath represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_TagSet_NamePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_TagSet_NameAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/state/name YANG schema element. -type RoutingPolicy_DefinedSets_TagSet_NameAny struct { +// RoutingPolicy_DefinedSets_TagSet_NamePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/config/name YANG schema element. +type RoutingPolicy_DefinedSets_TagSet_NamePathAny struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_TagSet_TagValue represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/state/tag-value YANG schema element. -type RoutingPolicy_DefinedSets_TagSet_TagValue struct { +// RoutingPolicy_DefinedSets_TagSet_TagValuePath represents the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/config/tag-value YANG schema element. +type RoutingPolicy_DefinedSets_TagSet_TagValuePath struct { *ygot.NodePath } -// RoutingPolicy_DefinedSets_TagSet_TagValueAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/state/tag-value YANG schema element. -type RoutingPolicy_DefinedSets_TagSet_TagValueAny struct { +// RoutingPolicy_DefinedSets_TagSet_TagValuePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/defined-sets/tag-sets/tag-set/config/tag-value YANG schema element. +type RoutingPolicy_DefinedSets_TagSet_TagValuePathAny struct { *ygot.NodePath } -// Name returns from RoutingPolicy_DefinedSets_TagSet the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_TagSet) Name() *RoutingPolicy_DefinedSets_TagSet_Name { - return &RoutingPolicy_DefinedSets_TagSet_Name{ +// Name returns from RoutingPolicy_DefinedSets_TagSetPath the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_TagSetPath) Name() *RoutingPolicy_DefinedSets_TagSet_NamePath { + return &RoutingPolicy_DefinedSets_TagSet_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_DefinedSets_TagSetAny the path struct for its child "name". -func (n *RoutingPolicy_DefinedSets_TagSetAny) Name() *RoutingPolicy_DefinedSets_TagSet_NameAny { - return &RoutingPolicy_DefinedSets_TagSet_NameAny{ +// Name returns from RoutingPolicy_DefinedSets_TagSetPathAny the path struct for its child "name". +func (n *RoutingPolicy_DefinedSets_TagSetPathAny) Name() *RoutingPolicy_DefinedSets_TagSet_NamePathAny { + return &RoutingPolicy_DefinedSets_TagSet_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// TagValue returns from RoutingPolicy_DefinedSets_TagSet the path struct for its child "tag-value". -func (n *RoutingPolicy_DefinedSets_TagSet) TagValue() *RoutingPolicy_DefinedSets_TagSet_TagValue { - return &RoutingPolicy_DefinedSets_TagSet_TagValue{ +// TagValue returns from RoutingPolicy_DefinedSets_TagSetPath the path struct for its child "tag-value". +func (n *RoutingPolicy_DefinedSets_TagSetPath) TagValue() *RoutingPolicy_DefinedSets_TagSet_TagValuePath { + return &RoutingPolicy_DefinedSets_TagSet_TagValuePath{ NodePath: ygot.NewNodePath( - []string{"state", "tag-value"}, + []string{"config", "tag-value"}, map[string]interface{}{}, n, ), } } -// TagValue returns from RoutingPolicy_DefinedSets_TagSetAny the path struct for its child "tag-value". -func (n *RoutingPolicy_DefinedSets_TagSetAny) TagValue() *RoutingPolicy_DefinedSets_TagSet_TagValueAny { - return &RoutingPolicy_DefinedSets_TagSet_TagValueAny{ +// TagValue returns from RoutingPolicy_DefinedSets_TagSetPathAny the path struct for its child "tag-value". +func (n *RoutingPolicy_DefinedSets_TagSetPathAny) TagValue() *RoutingPolicy_DefinedSets_TagSet_TagValuePathAny { + return &RoutingPolicy_DefinedSets_TagSet_TagValuePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tag-value"}, + []string{"config", "tag-value"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition YANG schema element. -type RoutingPolicy_PolicyDefinition struct { +// RoutingPolicy_PolicyDefinitionPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition YANG schema element. +type RoutingPolicy_PolicyDefinitionPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinitionAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition YANG schema element. -type RoutingPolicy_PolicyDefinitionAny struct { +// RoutingPolicy_PolicyDefinitionPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition YANG schema element. +type RoutingPolicy_PolicyDefinitionPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Name represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/state/name YANG schema element. -type RoutingPolicy_PolicyDefinition_Name struct { +// RoutingPolicy_PolicyDefinition_NamePath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/config/name YANG schema element. +type RoutingPolicy_PolicyDefinition_NamePath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_NameAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/state/name YANG schema element. -type RoutingPolicy_PolicyDefinition_NameAny struct { +// RoutingPolicy_PolicyDefinition_NamePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/config/name YANG schema element. +type RoutingPolicy_PolicyDefinition_NamePathAny struct { *ygot.NodePath } -// Name returns from RoutingPolicy_PolicyDefinition the path struct for its child "name". -func (n *RoutingPolicy_PolicyDefinition) Name() *RoutingPolicy_PolicyDefinition_Name { - return &RoutingPolicy_PolicyDefinition_Name{ +// Name returns from RoutingPolicy_PolicyDefinitionPath the path struct for its child "name". +func (n *RoutingPolicy_PolicyDefinitionPath) Name() *RoutingPolicy_PolicyDefinition_NamePath { + return &RoutingPolicy_PolicyDefinition_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_PolicyDefinitionAny the path struct for its child "name". -func (n *RoutingPolicy_PolicyDefinitionAny) Name() *RoutingPolicy_PolicyDefinition_NameAny { - return &RoutingPolicy_PolicyDefinition_NameAny{ +// Name returns from RoutingPolicy_PolicyDefinitionPathAny the path struct for its child "name". +func (n *RoutingPolicy_PolicyDefinitionPathAny) Name() *RoutingPolicy_PolicyDefinition_NamePathAny { + return &RoutingPolicy_PolicyDefinition_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// StatementAny returns from RoutingPolicy_PolicyDefinition the path struct for its child "statement". -func (n *RoutingPolicy_PolicyDefinition) StatementAny() *RoutingPolicy_PolicyDefinition_StatementAny { - return &RoutingPolicy_PolicyDefinition_StatementAny{ +// StatementAny returns from RoutingPolicy_PolicyDefinitionPath the path struct for its child "statement". +func (n *RoutingPolicy_PolicyDefinitionPath) StatementAny() *RoutingPolicy_PolicyDefinition_StatementPathAny { + return &RoutingPolicy_PolicyDefinition_StatementPathAny{ NodePath: ygot.NewNodePath( []string{"statements", "statement"}, map[string]interface{}{"name": "*"}, @@ -157687,9 +157714,9 @@ func (n *RoutingPolicy_PolicyDefinition) StatementAny() *RoutingPolicy_PolicyDef } } -// StatementAny returns from RoutingPolicy_PolicyDefinitionAny the path struct for its child "statement". -func (n *RoutingPolicy_PolicyDefinitionAny) StatementAny() *RoutingPolicy_PolicyDefinition_StatementAny { - return &RoutingPolicy_PolicyDefinition_StatementAny{ +// StatementAny returns from RoutingPolicy_PolicyDefinitionPathAny the path struct for its child "statement". +func (n *RoutingPolicy_PolicyDefinitionPathAny) StatementAny() *RoutingPolicy_PolicyDefinition_StatementPathAny { + return &RoutingPolicy_PolicyDefinition_StatementPathAny{ NodePath: ygot.NewNodePath( []string{"statements", "statement"}, map[string]interface{}{"name": "*"}, @@ -157698,9 +157725,9 @@ func (n *RoutingPolicy_PolicyDefinitionAny) StatementAny() *RoutingPolicy_Policy } } -// Statement returns from RoutingPolicy_PolicyDefinition the path struct for its child "statement". -func (n *RoutingPolicy_PolicyDefinition) Statement(Name string) *RoutingPolicy_PolicyDefinition_Statement { - return &RoutingPolicy_PolicyDefinition_Statement{ +// Statement returns from RoutingPolicy_PolicyDefinitionPath the path struct for its child "statement". +func (n *RoutingPolicy_PolicyDefinitionPath) Statement(Name string) *RoutingPolicy_PolicyDefinition_StatementPath { + return &RoutingPolicy_PolicyDefinition_StatementPath{ NodePath: ygot.NewNodePath( []string{"statements", "statement"}, map[string]interface{}{"name": Name}, @@ -157709,9 +157736,9 @@ func (n *RoutingPolicy_PolicyDefinition) Statement(Name string) *RoutingPolicy_P } } -// Statement returns from RoutingPolicy_PolicyDefinitionAny the path struct for its child "statement". -func (n *RoutingPolicy_PolicyDefinitionAny) Statement(Name string) *RoutingPolicy_PolicyDefinition_StatementAny { - return &RoutingPolicy_PolicyDefinition_StatementAny{ +// Statement returns from RoutingPolicy_PolicyDefinitionPathAny the path struct for its child "statement". +func (n *RoutingPolicy_PolicyDefinitionPathAny) Statement(Name string) *RoutingPolicy_PolicyDefinition_StatementPathAny { + return &RoutingPolicy_PolicyDefinition_StatementPathAny{ NodePath: ygot.NewNodePath( []string{"statements", "statement"}, map[string]interface{}{"name": Name}, @@ -157720,29 +157747,29 @@ func (n *RoutingPolicy_PolicyDefinitionAny) Statement(Name string) *RoutingPolic } } -// RoutingPolicy_PolicyDefinition_Statement represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement struct { +// RoutingPolicy_PolicyDefinition_StatementPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement YANG schema element. +type RoutingPolicy_PolicyDefinition_StatementPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_StatementAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement YANG schema element. -type RoutingPolicy_PolicyDefinition_StatementAny struct { +// RoutingPolicy_PolicyDefinition_StatementPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement YANG schema element. +type RoutingPolicy_PolicyDefinition_StatementPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Name represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/state/name YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Name struct { +// RoutingPolicy_PolicyDefinition_Statement_NamePath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/config/name YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_NamePath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_NameAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/state/name YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_NameAny struct { +// RoutingPolicy_PolicyDefinition_Statement_NamePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/config/name YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_NamePathAny struct { *ygot.NodePath } -// Actions returns from RoutingPolicy_PolicyDefinition_Statement the path struct for its child "actions". -func (n *RoutingPolicy_PolicyDefinition_Statement) Actions() *RoutingPolicy_PolicyDefinition_Statement_Actions { - return &RoutingPolicy_PolicyDefinition_Statement_Actions{ +// Actions returns from RoutingPolicy_PolicyDefinition_StatementPath the path struct for its child "actions". +func (n *RoutingPolicy_PolicyDefinition_StatementPath) Actions() *RoutingPolicy_PolicyDefinition_Statement_ActionsPath { + return &RoutingPolicy_PolicyDefinition_Statement_ActionsPath{ NodePath: ygot.NewNodePath( []string{"actions"}, map[string]interface{}{}, @@ -157751,9 +157778,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement) Actions() *RoutingPolicy_Poli } } -// Actions returns from RoutingPolicy_PolicyDefinition_StatementAny the path struct for its child "actions". -func (n *RoutingPolicy_PolicyDefinition_StatementAny) Actions() *RoutingPolicy_PolicyDefinition_Statement_ActionsAny { - return &RoutingPolicy_PolicyDefinition_Statement_ActionsAny{ +// Actions returns from RoutingPolicy_PolicyDefinition_StatementPathAny the path struct for its child "actions". +func (n *RoutingPolicy_PolicyDefinition_StatementPathAny) Actions() *RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny{ NodePath: ygot.NewNodePath( []string{"actions"}, map[string]interface{}{}, @@ -157762,9 +157789,9 @@ func (n *RoutingPolicy_PolicyDefinition_StatementAny) Actions() *RoutingPolicy_P } } -// Conditions returns from RoutingPolicy_PolicyDefinition_Statement the path struct for its child "conditions". -func (n *RoutingPolicy_PolicyDefinition_Statement) Conditions() *RoutingPolicy_PolicyDefinition_Statement_Conditions { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions{ +// Conditions returns from RoutingPolicy_PolicyDefinition_StatementPath the path struct for its child "conditions". +func (n *RoutingPolicy_PolicyDefinition_StatementPath) Conditions() *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath { + return &RoutingPolicy_PolicyDefinition_Statement_ConditionsPath{ NodePath: ygot.NewNodePath( []string{"conditions"}, map[string]interface{}{}, @@ -157773,9 +157800,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement) Conditions() *RoutingPolicy_P } } -// Conditions returns from RoutingPolicy_PolicyDefinition_StatementAny the path struct for its child "conditions". -func (n *RoutingPolicy_PolicyDefinition_StatementAny) Conditions() *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny { - return &RoutingPolicy_PolicyDefinition_Statement_ConditionsAny{ +// Conditions returns from RoutingPolicy_PolicyDefinition_StatementPathAny the path struct for its child "conditions". +func (n *RoutingPolicy_PolicyDefinition_StatementPathAny) Conditions() *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny{ NodePath: ygot.NewNodePath( []string{"conditions"}, map[string]interface{}{}, @@ -157784,147 +157811,147 @@ func (n *RoutingPolicy_PolicyDefinition_StatementAny) Conditions() *RoutingPolic } } -// Name returns from RoutingPolicy_PolicyDefinition_Statement the path struct for its child "name". -func (n *RoutingPolicy_PolicyDefinition_Statement) Name() *RoutingPolicy_PolicyDefinition_Statement_Name { - return &RoutingPolicy_PolicyDefinition_Statement_Name{ +// Name returns from RoutingPolicy_PolicyDefinition_StatementPath the path struct for its child "name". +func (n *RoutingPolicy_PolicyDefinition_StatementPath) Name() *RoutingPolicy_PolicyDefinition_Statement_NamePath { + return &RoutingPolicy_PolicyDefinition_Statement_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from RoutingPolicy_PolicyDefinition_StatementAny the path struct for its child "name". -func (n *RoutingPolicy_PolicyDefinition_StatementAny) Name() *RoutingPolicy_PolicyDefinition_Statement_NameAny { - return &RoutingPolicy_PolicyDefinition_Statement_NameAny{ +// Name returns from RoutingPolicy_PolicyDefinition_StatementPathAny the path struct for its child "name". +func (n *RoutingPolicy_PolicyDefinition_StatementPathAny) Name() *RoutingPolicy_PolicyDefinition_Statement_NamePathAny { + return &RoutingPolicy_PolicyDefinition_Statement_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition_Statement_Actions represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Actions struct { +// RoutingPolicy_PolicyDefinition_Statement_ActionsPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_ActionsPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_ActionsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_ActionsAny struct { +// RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResult represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions/state/policy-result YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResult struct { +// RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions/config/policy-result YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions/state/policy-result YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/actions/config/policy-result YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPathAny struct { *ygot.NodePath } -// PolicyResult returns from RoutingPolicy_PolicyDefinition_Statement_Actions the path struct for its child "policy-result". -func (n *RoutingPolicy_PolicyDefinition_Statement_Actions) PolicyResult() *RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResult { - return &RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResult{ +// PolicyResult returns from RoutingPolicy_PolicyDefinition_Statement_ActionsPath the path struct for its child "policy-result". +func (n *RoutingPolicy_PolicyDefinition_Statement_ActionsPath) PolicyResult() *RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPath { + return &RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPath{ NodePath: ygot.NewNodePath( - []string{"state", "policy-result"}, + []string{"config", "policy-result"}, map[string]interface{}{}, n, ), } } -// PolicyResult returns from RoutingPolicy_PolicyDefinition_Statement_ActionsAny the path struct for its child "policy-result". -func (n *RoutingPolicy_PolicyDefinition_Statement_ActionsAny) PolicyResult() *RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultAny { - return &RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultAny{ +// PolicyResult returns from RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny the path struct for its child "policy-result". +func (n *RoutingPolicy_PolicyDefinition_Statement_ActionsPathAny) PolicyResult() *RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Actions_PolicyResultPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "policy-result"}, + []string{"config", "policy-result"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition_Statement_Conditions represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions struct { +// RoutingPolicy_PolicyDefinition_Statement_ConditionsPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_ConditionsPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_ConditionsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_ConditionsAny struct { +// RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicy represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/state/call-policy YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicy struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/config/call-policy YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/state/call-policy YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/config/call-policy YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEq represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/state/install-protocol-eq YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEq struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/config/install-protocol-eq YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/state/install-protocol-eq YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/config/install-protocol-eq YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPathAny struct { *ygot.NodePath } -// CallPolicy returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "call-policy". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) CallPolicy() *RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicy { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicy{ +// CallPolicy returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "call-policy". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) CallPolicy() *RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPath{ NodePath: ygot.NewNodePath( - []string{"state", "call-policy"}, + []string{"config", "call-policy"}, map[string]interface{}{}, n, ), } } -// CallPolicy returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "call-policy". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) CallPolicy() *RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyAny{ +// CallPolicy returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "call-policy". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) CallPolicy() *RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_CallPolicyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "call-policy"}, + []string{"config", "call-policy"}, map[string]interface{}{}, n, ), } } -// InstallProtocolEq returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "install-protocol-eq". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) InstallProtocolEq() *RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEq { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEq{ +// InstallProtocolEq returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "install-protocol-eq". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) InstallProtocolEq() *RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPath{ NodePath: ygot.NewNodePath( - []string{"state", "install-protocol-eq"}, + []string{"config", "install-protocol-eq"}, map[string]interface{}{}, n, ), } } -// InstallProtocolEq returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "install-protocol-eq". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) InstallProtocolEq() *RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqAny{ +// InstallProtocolEq returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "install-protocol-eq". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) InstallProtocolEq() *RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_InstallProtocolEqPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "install-protocol-eq"}, + []string{"config", "install-protocol-eq"}, map[string]interface{}{}, n, ), } } -// MatchInterface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "match-interface". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchInterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface{ +// MatchInterface returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "match-interface". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) MatchInterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath{ NodePath: ygot.NewNodePath( []string{"match-interface"}, map[string]interface{}{}, @@ -157933,9 +157960,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchInterface() * } } -// MatchInterface returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "match-interface". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchInterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny{ +// MatchInterface returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "match-interface". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) MatchInterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny{ NodePath: ygot.NewNodePath( []string{"match-interface"}, map[string]interface{}{}, @@ -157944,9 +157971,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchInterface( } } -// MatchNeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "match-neighbor-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchNeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet{ +// MatchNeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "match-neighbor-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) MatchNeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath{ NodePath: ygot.NewNodePath( []string{"match-neighbor-set"}, map[string]interface{}{}, @@ -157955,9 +157982,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchNeighborSet() } } -// MatchNeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "match-neighbor-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchNeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny{ +// MatchNeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "match-neighbor-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) MatchNeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny{ NodePath: ygot.NewNodePath( []string{"match-neighbor-set"}, map[string]interface{}{}, @@ -157966,9 +157993,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchNeighborSe } } -// MatchPrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "match-prefix-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchPrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet{ +// MatchPrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "match-prefix-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) MatchPrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath{ NodePath: ygot.NewNodePath( []string{"match-prefix-set"}, map[string]interface{}{}, @@ -157977,9 +158004,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchPrefixSet() * } } -// MatchPrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "match-prefix-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchPrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny{ +// MatchPrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "match-prefix-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) MatchPrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny{ NodePath: ygot.NewNodePath( []string{"match-prefix-set"}, map[string]interface{}{}, @@ -157988,9 +158015,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchPrefixSet( } } -// MatchTagSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions the path struct for its child "match-tag-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchTagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet{ +// MatchTagSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPath the path struct for its child "match-tag-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPath) MatchTagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath{ NodePath: ygot.NewNodePath( []string{"match-tag-set"}, map[string]interface{}{}, @@ -157999,9 +158026,9 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions) MatchTagSet() *Rou } } -// MatchTagSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsAny the path struct for its child "match-tag-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchTagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny{ +// MatchTagSet returns from RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny the path struct for its child "match-tag-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsPathAny) MatchTagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny{ NodePath: ygot.NewNodePath( []string{"match-tag-set"}, map[string]interface{}{}, @@ -158010,315 +158037,315 @@ func (n *RoutingPolicy_PolicyDefinition_Statement_ConditionsAny) MatchTagSet() * } } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Interface represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/state/interface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Interface struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/config/interface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfaceAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/state/interface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfaceAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/config/interface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Subinterface represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/state/subinterface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Subinterface struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/config/subinterface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfaceAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/state/subinterface YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfaceAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-interface/config/subinterface YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePathAny struct { *ygot.NodePath } -// Interface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface the path struct for its child "interface". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface) Interface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Interface { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Interface{ +// Interface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath the path struct for its child "interface". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath) Interface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Interface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny the path struct for its child "interface". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny) Interface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfaceAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfaceAny{ +// Interface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny the path struct for its child "interface". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny) Interface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_InterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "interface"}, + []string{"config", "interface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface the path struct for its child "subinterface". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface) Subinterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Subinterface { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_Subinterface{ +// Subinterface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath the path struct for its child "subinterface". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePath) Subinterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePath{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// Subinterface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny the path struct for its child "subinterface". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfaceAny) Subinterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfaceAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfaceAny{ +// Subinterface returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny the path struct for its child "subinterface". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterfacePathAny) Subinterface() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchInterface_SubinterfacePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "subinterface"}, + []string{"config", "subinterface"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptions represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptions struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/state/neighbor-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/config/neighbor-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/state/neighbor-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-neighbor-set/config/neighbor-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPathAny struct { *ygot.NodePath } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptions { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptions{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPath{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsAny{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_MatchSetOptionsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// NeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet the path struct for its child "neighbor-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet) NeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSet{ +// NeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath the path struct for its child "neighbor-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPath) NeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPath{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-set"}, + []string{"config", "neighbor-set"}, map[string]interface{}{}, n, ), } } -// NeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny the path struct for its child "neighbor-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetAny) NeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetAny{ +// NeighborSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny the path struct for its child "neighbor-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSetPathAny) NeighborSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchNeighborSet_NeighborSetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "neighbor-set"}, + []string{"config", "neighbor-set"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptions represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptions struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/state/prefix-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/config/prefix-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/state/prefix-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-prefix-set/config/prefix-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPathAny struct { *ygot.NodePath } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptions { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptions{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPath{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsAny{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_MatchSetOptionsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// PrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet the path struct for its child "prefix-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet) PrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSet{ +// PrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath the path struct for its child "prefix-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPath) PrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-set"}, + []string{"config", "prefix-set"}, map[string]interface{}{}, n, ), } } -// PrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny the path struct for its child "prefix-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetAny) PrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetAny{ +// PrefixSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny the path struct for its child "prefix-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSetPathAny) PrefixSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchPrefixSet_PrefixSetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefix-set"}, + []string{"config", "prefix-set"}, map[string]interface{}{}, n, ), } } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptions represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptions struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/state/match-set-options YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/config/match-set-options YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPathAny struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSet represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/state/tag-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSet struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPath represents the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/config/tag-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPath struct { *ygot.NodePath } -// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/state/tag-set YANG schema element. -type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetAny struct { +// RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPathAny represents the wildcard version of the /openconfig-routing-policy/routing-policy/policy-definitions/policy-definition/statements/statement/conditions/match-tag-set/config/tag-set YANG schema element. +type RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPathAny struct { *ygot.NodePath } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptions { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptions{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPath{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny the path struct for its child "match-set-options". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsAny{ +// MatchSetOptions returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny the path struct for its child "match-set-options". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny) MatchSetOptions() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_MatchSetOptionsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "match-set-options"}, + []string{"config", "match-set-options"}, map[string]interface{}{}, n, ), } } -// TagSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet the path struct for its child "tag-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet) TagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSet { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSet{ +// TagSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath the path struct for its child "tag-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPath) TagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPath { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPath{ NodePath: ygot.NewNodePath( - []string{"state", "tag-set"}, + []string{"config", "tag-set"}, map[string]interface{}{}, n, ), } } -// TagSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny the path struct for its child "tag-set". -func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetAny) TagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetAny { - return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetAny{ +// TagSet returns from RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny the path struct for its child "tag-set". +func (n *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSetPathAny) TagSet() *RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPathAny { + return &RoutingPolicy_PolicyDefinition_Statement_Conditions_MatchTagSet_TagSetPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tag-set"}, + []string{"config", "tag-set"}, map[string]interface{}{}, n, ), } } -// Stp represents the /openconfig-spanning-tree/stp YANG schema element. -type Stp struct { +// StpPath represents the /openconfig-spanning-tree/stp YANG schema element. +type StpPath struct { *ygot.NodePath } -// StpAny represents the wildcard version of the /openconfig-spanning-tree/stp YANG schema element. -type StpAny struct { +// StpPathAny represents the wildcard version of the /openconfig-spanning-tree/stp YANG schema element. +type StpPathAny struct { *ygot.NodePath } -// Global returns from Stp the path struct for its child "global". -func (n *Stp) Global() *Stp_Global { - return &Stp_Global{ +// Global returns from StpPath the path struct for its child "global". +func (n *StpPath) Global() *Stp_GlobalPath { + return &Stp_GlobalPath{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -158327,9 +158354,9 @@ func (n *Stp) Global() *Stp_Global { } } -// Global returns from StpAny the path struct for its child "global". -func (n *StpAny) Global() *Stp_GlobalAny { - return &Stp_GlobalAny{ +// Global returns from StpPathAny the path struct for its child "global". +func (n *StpPathAny) Global() *Stp_GlobalPathAny { + return &Stp_GlobalPathAny{ NodePath: ygot.NewNodePath( []string{"global"}, map[string]interface{}{}, @@ -158338,9 +158365,9 @@ func (n *StpAny) Global() *Stp_GlobalAny { } } -// InterfaceAny returns from Stp the path struct for its child "interface". -func (n *Stp) InterfaceAny() *Stp_InterfaceAny { - return &Stp_InterfaceAny{ +// InterfaceAny returns from StpPath the path struct for its child "interface". +func (n *StpPath) InterfaceAny() *Stp_InterfacePathAny { + return &Stp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -158349,9 +158376,9 @@ func (n *Stp) InterfaceAny() *Stp_InterfaceAny { } } -// InterfaceAny returns from StpAny the path struct for its child "interface". -func (n *StpAny) InterfaceAny() *Stp_InterfaceAny { - return &Stp_InterfaceAny{ +// InterfaceAny returns from StpPathAny the path struct for its child "interface". +func (n *StpPathAny) InterfaceAny() *Stp_InterfacePathAny { + return &Stp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -158360,9 +158387,9 @@ func (n *StpAny) InterfaceAny() *Stp_InterfaceAny { } } -// Interface returns from Stp the path struct for its child "interface". -func (n *Stp) Interface(Name string) *Stp_Interface { - return &Stp_Interface{ +// Interface returns from StpPath the path struct for its child "interface". +func (n *StpPath) Interface(Name string) *Stp_InterfacePath { + return &Stp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -158371,9 +158398,9 @@ func (n *Stp) Interface(Name string) *Stp_Interface { } } -// Interface returns from StpAny the path struct for its child "interface". -func (n *StpAny) Interface(Name string) *Stp_InterfaceAny { - return &Stp_InterfaceAny{ +// Interface returns from StpPathAny the path struct for its child "interface". +func (n *StpPathAny) Interface(Name string) *Stp_InterfacePathAny { + return &Stp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -158382,9 +158409,9 @@ func (n *StpAny) Interface(Name string) *Stp_InterfaceAny { } } -// Mstp returns from Stp the path struct for its child "mstp". -func (n *Stp) Mstp() *Stp_Mstp { - return &Stp_Mstp{ +// Mstp returns from StpPath the path struct for its child "mstp". +func (n *StpPath) Mstp() *Stp_MstpPath { + return &Stp_MstpPath{ NodePath: ygot.NewNodePath( []string{"mstp"}, map[string]interface{}{}, @@ -158393,9 +158420,9 @@ func (n *Stp) Mstp() *Stp_Mstp { } } -// Mstp returns from StpAny the path struct for its child "mstp". -func (n *StpAny) Mstp() *Stp_MstpAny { - return &Stp_MstpAny{ +// Mstp returns from StpPathAny the path struct for its child "mstp". +func (n *StpPathAny) Mstp() *Stp_MstpPathAny { + return &Stp_MstpPathAny{ NodePath: ygot.NewNodePath( []string{"mstp"}, map[string]interface{}{}, @@ -158404,9 +158431,9 @@ func (n *StpAny) Mstp() *Stp_MstpAny { } } -// Rstp returns from Stp the path struct for its child "rstp". -func (n *Stp) Rstp() *Stp_Rstp { - return &Stp_Rstp{ +// Rstp returns from StpPath the path struct for its child "rstp". +func (n *StpPath) Rstp() *Stp_RstpPath { + return &Stp_RstpPath{ NodePath: ygot.NewNodePath( []string{"rstp"}, map[string]interface{}{}, @@ -158415,9 +158442,9 @@ func (n *Stp) Rstp() *Stp_Rstp { } } -// Rstp returns from StpAny the path struct for its child "rstp". -func (n *StpAny) Rstp() *Stp_RstpAny { - return &Stp_RstpAny{ +// Rstp returns from StpPathAny the path struct for its child "rstp". +func (n *StpPathAny) Rstp() *Stp_RstpPathAny { + return &Stp_RstpPathAny{ NodePath: ygot.NewNodePath( []string{"rstp"}, map[string]interface{}{}, @@ -158426,9 +158453,9 @@ func (n *StpAny) Rstp() *Stp_RstpAny { } } -// VlanAny returns from Stp the path struct for its child "vlan". -func (n *Stp) VlanAny() *Stp_VlanAny { - return &Stp_VlanAny{ +// VlanAny returns from StpPath the path struct for its child "vlan". +func (n *StpPath) VlanAny() *Stp_VlanPathAny { + return &Stp_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"rapid-pvst", "vlan"}, map[string]interface{}{"vlan-id": "*"}, @@ -158437,9 +158464,9 @@ func (n *Stp) VlanAny() *Stp_VlanAny { } } -// VlanAny returns from StpAny the path struct for its child "vlan". -func (n *StpAny) VlanAny() *Stp_VlanAny { - return &Stp_VlanAny{ +// VlanAny returns from StpPathAny the path struct for its child "vlan". +func (n *StpPathAny) VlanAny() *Stp_VlanPathAny { + return &Stp_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"rapid-pvst", "vlan"}, map[string]interface{}{"vlan-id": "*"}, @@ -158448,9 +158475,9 @@ func (n *StpAny) VlanAny() *Stp_VlanAny { } } -// Vlan returns from Stp the path struct for its child "vlan". -func (n *Stp) Vlan(VlanId uint16) *Stp_Vlan { - return &Stp_Vlan{ +// Vlan returns from StpPath the path struct for its child "vlan". +func (n *StpPath) Vlan(VlanId uint16) *Stp_VlanPath { + return &Stp_VlanPath{ NodePath: ygot.NewNodePath( []string{"rapid-pvst", "vlan"}, map[string]interface{}{"vlan-id": VlanId}, @@ -158459,9 +158486,9 @@ func (n *Stp) Vlan(VlanId uint16) *Stp_Vlan { } } -// Vlan returns from StpAny the path struct for its child "vlan". -func (n *StpAny) Vlan(VlanId uint16) *Stp_VlanAny { - return &Stp_VlanAny{ +// Vlan returns from StpPathAny the path struct for its child "vlan". +func (n *StpPathAny) Vlan(VlanId uint16) *Stp_VlanPathAny { + return &Stp_VlanPathAny{ NodePath: ygot.NewNodePath( []string{"rapid-pvst", "vlan"}, map[string]interface{}{"vlan-id": VlanId}, @@ -158470,635 +158497,635 @@ func (n *StpAny) Vlan(VlanId uint16) *Stp_VlanAny { } } -// Stp_Global represents the /openconfig-spanning-tree/stp/global YANG schema element. -type Stp_Global struct { +// Stp_GlobalPath represents the /openconfig-spanning-tree/stp/global YANG schema element. +type Stp_GlobalPath struct { *ygot.NodePath } -// Stp_GlobalAny represents the wildcard version of the /openconfig-spanning-tree/stp/global YANG schema element. -type Stp_GlobalAny struct { +// Stp_GlobalPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global YANG schema element. +type Stp_GlobalPathAny struct { *ygot.NodePath } -// Stp_Global_BpduFilter represents the /openconfig-spanning-tree/stp/global/state/bpdu-filter YANG schema element. -type Stp_Global_BpduFilter struct { +// Stp_Global_BpduFilterPath represents the /openconfig-spanning-tree/stp/global/config/bpdu-filter YANG schema element. +type Stp_Global_BpduFilterPath struct { *ygot.NodePath } -// Stp_Global_BpduFilterAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/bpdu-filter YANG schema element. -type Stp_Global_BpduFilterAny struct { +// Stp_Global_BpduFilterPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/bpdu-filter YANG schema element. +type Stp_Global_BpduFilterPathAny struct { *ygot.NodePath } -// Stp_Global_BpduGuard represents the /openconfig-spanning-tree/stp/global/state/bpdu-guard YANG schema element. -type Stp_Global_BpduGuard struct { +// Stp_Global_BpduGuardPath represents the /openconfig-spanning-tree/stp/global/config/bpdu-guard YANG schema element. +type Stp_Global_BpduGuardPath struct { *ygot.NodePath } -// Stp_Global_BpduGuardAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/bpdu-guard YANG schema element. -type Stp_Global_BpduGuardAny struct { +// Stp_Global_BpduGuardPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/bpdu-guard YANG schema element. +type Stp_Global_BpduGuardPathAny struct { *ygot.NodePath } -// Stp_Global_BpduguardTimeoutRecovery represents the /openconfig-spanning-tree/stp/global/state/bpduguard-timeout-recovery YANG schema element. -type Stp_Global_BpduguardTimeoutRecovery struct { +// Stp_Global_BpduguardTimeoutRecoveryPath represents the /openconfig-spanning-tree/stp/global/config/bpduguard-timeout-recovery YANG schema element. +type Stp_Global_BpduguardTimeoutRecoveryPath struct { *ygot.NodePath } -// Stp_Global_BpduguardTimeoutRecoveryAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/bpduguard-timeout-recovery YANG schema element. -type Stp_Global_BpduguardTimeoutRecoveryAny struct { +// Stp_Global_BpduguardTimeoutRecoveryPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/bpduguard-timeout-recovery YANG schema element. +type Stp_Global_BpduguardTimeoutRecoveryPathAny struct { *ygot.NodePath } -// Stp_Global_BridgeAssurance represents the /openconfig-spanning-tree/stp/global/state/bridge-assurance YANG schema element. -type Stp_Global_BridgeAssurance struct { +// Stp_Global_BridgeAssurancePath represents the /openconfig-spanning-tree/stp/global/config/bridge-assurance YANG schema element. +type Stp_Global_BridgeAssurancePath struct { *ygot.NodePath } -// Stp_Global_BridgeAssuranceAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/bridge-assurance YANG schema element. -type Stp_Global_BridgeAssuranceAny struct { +// Stp_Global_BridgeAssurancePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/bridge-assurance YANG schema element. +type Stp_Global_BridgeAssurancePathAny struct { *ygot.NodePath } -// Stp_Global_EnabledProtocol represents the /openconfig-spanning-tree/stp/global/state/enabled-protocol YANG schema element. -type Stp_Global_EnabledProtocol struct { +// Stp_Global_EnabledProtocolPath represents the /openconfig-spanning-tree/stp/global/config/enabled-protocol YANG schema element. +type Stp_Global_EnabledProtocolPath struct { *ygot.NodePath } -// Stp_Global_EnabledProtocolAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/enabled-protocol YANG schema element. -type Stp_Global_EnabledProtocolAny struct { +// Stp_Global_EnabledProtocolPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/enabled-protocol YANG schema element. +type Stp_Global_EnabledProtocolPathAny struct { *ygot.NodePath } -// Stp_Global_EtherchannelMisconfigGuard represents the /openconfig-spanning-tree/stp/global/state/etherchannel-misconfig-guard YANG schema element. -type Stp_Global_EtherchannelMisconfigGuard struct { +// Stp_Global_EtherchannelMisconfigGuardPath represents the /openconfig-spanning-tree/stp/global/config/etherchannel-misconfig-guard YANG schema element. +type Stp_Global_EtherchannelMisconfigGuardPath struct { *ygot.NodePath } -// Stp_Global_EtherchannelMisconfigGuardAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/etherchannel-misconfig-guard YANG schema element. -type Stp_Global_EtherchannelMisconfigGuardAny struct { +// Stp_Global_EtherchannelMisconfigGuardPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/etherchannel-misconfig-guard YANG schema element. +type Stp_Global_EtherchannelMisconfigGuardPathAny struct { *ygot.NodePath } -// Stp_Global_LoopGuard represents the /openconfig-spanning-tree/stp/global/state/loop-guard YANG schema element. -type Stp_Global_LoopGuard struct { +// Stp_Global_LoopGuardPath represents the /openconfig-spanning-tree/stp/global/config/loop-guard YANG schema element. +type Stp_Global_LoopGuardPath struct { *ygot.NodePath } -// Stp_Global_LoopGuardAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/state/loop-guard YANG schema element. -type Stp_Global_LoopGuardAny struct { +// Stp_Global_LoopGuardPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/global/config/loop-guard YANG schema element. +type Stp_Global_LoopGuardPathAny struct { *ygot.NodePath } -// BpduFilter returns from Stp_Global the path struct for its child "bpdu-filter". -func (n *Stp_Global) BpduFilter() *Stp_Global_BpduFilter { - return &Stp_Global_BpduFilter{ +// BpduFilter returns from Stp_GlobalPath the path struct for its child "bpdu-filter". +func (n *Stp_GlobalPath) BpduFilter() *Stp_Global_BpduFilterPath { + return &Stp_Global_BpduFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-filter"}, + []string{"config", "bpdu-filter"}, map[string]interface{}{}, n, ), } } -// BpduFilter returns from Stp_GlobalAny the path struct for its child "bpdu-filter". -func (n *Stp_GlobalAny) BpduFilter() *Stp_Global_BpduFilterAny { - return &Stp_Global_BpduFilterAny{ +// BpduFilter returns from Stp_GlobalPathAny the path struct for its child "bpdu-filter". +func (n *Stp_GlobalPathAny) BpduFilter() *Stp_Global_BpduFilterPathAny { + return &Stp_Global_BpduFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-filter"}, + []string{"config", "bpdu-filter"}, map[string]interface{}{}, n, ), } } -// BpduGuard returns from Stp_Global the path struct for its child "bpdu-guard". -func (n *Stp_Global) BpduGuard() *Stp_Global_BpduGuard { - return &Stp_Global_BpduGuard{ +// BpduGuard returns from Stp_GlobalPath the path struct for its child "bpdu-guard". +func (n *Stp_GlobalPath) BpduGuard() *Stp_Global_BpduGuardPath { + return &Stp_Global_BpduGuardPath{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-guard"}, + []string{"config", "bpdu-guard"}, map[string]interface{}{}, n, ), } } -// BpduGuard returns from Stp_GlobalAny the path struct for its child "bpdu-guard". -func (n *Stp_GlobalAny) BpduGuard() *Stp_Global_BpduGuardAny { - return &Stp_Global_BpduGuardAny{ +// BpduGuard returns from Stp_GlobalPathAny the path struct for its child "bpdu-guard". +func (n *Stp_GlobalPathAny) BpduGuard() *Stp_Global_BpduGuardPathAny { + return &Stp_Global_BpduGuardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-guard"}, + []string{"config", "bpdu-guard"}, map[string]interface{}{}, n, ), } } -// BpduguardTimeoutRecovery returns from Stp_Global the path struct for its child "bpduguard-timeout-recovery". -func (n *Stp_Global) BpduguardTimeoutRecovery() *Stp_Global_BpduguardTimeoutRecovery { - return &Stp_Global_BpduguardTimeoutRecovery{ +// BpduguardTimeoutRecovery returns from Stp_GlobalPath the path struct for its child "bpduguard-timeout-recovery". +func (n *Stp_GlobalPath) BpduguardTimeoutRecovery() *Stp_Global_BpduguardTimeoutRecoveryPath { + return &Stp_Global_BpduguardTimeoutRecoveryPath{ NodePath: ygot.NewNodePath( - []string{"state", "bpduguard-timeout-recovery"}, + []string{"config", "bpduguard-timeout-recovery"}, map[string]interface{}{}, n, ), } } -// BpduguardTimeoutRecovery returns from Stp_GlobalAny the path struct for its child "bpduguard-timeout-recovery". -func (n *Stp_GlobalAny) BpduguardTimeoutRecovery() *Stp_Global_BpduguardTimeoutRecoveryAny { - return &Stp_Global_BpduguardTimeoutRecoveryAny{ +// BpduguardTimeoutRecovery returns from Stp_GlobalPathAny the path struct for its child "bpduguard-timeout-recovery". +func (n *Stp_GlobalPathAny) BpduguardTimeoutRecovery() *Stp_Global_BpduguardTimeoutRecoveryPathAny { + return &Stp_Global_BpduguardTimeoutRecoveryPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bpduguard-timeout-recovery"}, + []string{"config", "bpduguard-timeout-recovery"}, map[string]interface{}{}, n, ), } } -// BridgeAssurance returns from Stp_Global the path struct for its child "bridge-assurance". -func (n *Stp_Global) BridgeAssurance() *Stp_Global_BridgeAssurance { - return &Stp_Global_BridgeAssurance{ +// BridgeAssurance returns from Stp_GlobalPath the path struct for its child "bridge-assurance". +func (n *Stp_GlobalPath) BridgeAssurance() *Stp_Global_BridgeAssurancePath { + return &Stp_Global_BridgeAssurancePath{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-assurance"}, + []string{"config", "bridge-assurance"}, map[string]interface{}{}, n, ), } } -// BridgeAssurance returns from Stp_GlobalAny the path struct for its child "bridge-assurance". -func (n *Stp_GlobalAny) BridgeAssurance() *Stp_Global_BridgeAssuranceAny { - return &Stp_Global_BridgeAssuranceAny{ +// BridgeAssurance returns from Stp_GlobalPathAny the path struct for its child "bridge-assurance". +func (n *Stp_GlobalPathAny) BridgeAssurance() *Stp_Global_BridgeAssurancePathAny { + return &Stp_Global_BridgeAssurancePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-assurance"}, + []string{"config", "bridge-assurance"}, map[string]interface{}{}, n, ), } } -// EnabledProtocol returns from Stp_Global the path struct for its child "enabled-protocol". -func (n *Stp_Global) EnabledProtocol() *Stp_Global_EnabledProtocol { - return &Stp_Global_EnabledProtocol{ +// EnabledProtocol returns from Stp_GlobalPath the path struct for its child "enabled-protocol". +func (n *Stp_GlobalPath) EnabledProtocol() *Stp_Global_EnabledProtocolPath { + return &Stp_Global_EnabledProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled-protocol"}, + []string{"config", "enabled-protocol"}, map[string]interface{}{}, n, ), } } -// EnabledProtocol returns from Stp_GlobalAny the path struct for its child "enabled-protocol". -func (n *Stp_GlobalAny) EnabledProtocol() *Stp_Global_EnabledProtocolAny { - return &Stp_Global_EnabledProtocolAny{ +// EnabledProtocol returns from Stp_GlobalPathAny the path struct for its child "enabled-protocol". +func (n *Stp_GlobalPathAny) EnabledProtocol() *Stp_Global_EnabledProtocolPathAny { + return &Stp_Global_EnabledProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled-protocol"}, + []string{"config", "enabled-protocol"}, map[string]interface{}{}, n, ), } } -// EtherchannelMisconfigGuard returns from Stp_Global the path struct for its child "etherchannel-misconfig-guard". -func (n *Stp_Global) EtherchannelMisconfigGuard() *Stp_Global_EtherchannelMisconfigGuard { - return &Stp_Global_EtherchannelMisconfigGuard{ +// EtherchannelMisconfigGuard returns from Stp_GlobalPath the path struct for its child "etherchannel-misconfig-guard". +func (n *Stp_GlobalPath) EtherchannelMisconfigGuard() *Stp_Global_EtherchannelMisconfigGuardPath { + return &Stp_Global_EtherchannelMisconfigGuardPath{ NodePath: ygot.NewNodePath( - []string{"state", "etherchannel-misconfig-guard"}, + []string{"config", "etherchannel-misconfig-guard"}, map[string]interface{}{}, n, ), } } -// EtherchannelMisconfigGuard returns from Stp_GlobalAny the path struct for its child "etherchannel-misconfig-guard". -func (n *Stp_GlobalAny) EtherchannelMisconfigGuard() *Stp_Global_EtherchannelMisconfigGuardAny { - return &Stp_Global_EtherchannelMisconfigGuardAny{ +// EtherchannelMisconfigGuard returns from Stp_GlobalPathAny the path struct for its child "etherchannel-misconfig-guard". +func (n *Stp_GlobalPathAny) EtherchannelMisconfigGuard() *Stp_Global_EtherchannelMisconfigGuardPathAny { + return &Stp_Global_EtherchannelMisconfigGuardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "etherchannel-misconfig-guard"}, + []string{"config", "etherchannel-misconfig-guard"}, map[string]interface{}{}, n, ), } } -// LoopGuard returns from Stp_Global the path struct for its child "loop-guard". -func (n *Stp_Global) LoopGuard() *Stp_Global_LoopGuard { - return &Stp_Global_LoopGuard{ +// LoopGuard returns from Stp_GlobalPath the path struct for its child "loop-guard". +func (n *Stp_GlobalPath) LoopGuard() *Stp_Global_LoopGuardPath { + return &Stp_Global_LoopGuardPath{ NodePath: ygot.NewNodePath( - []string{"state", "loop-guard"}, + []string{"config", "loop-guard"}, map[string]interface{}{}, n, ), } } -// LoopGuard returns from Stp_GlobalAny the path struct for its child "loop-guard". -func (n *Stp_GlobalAny) LoopGuard() *Stp_Global_LoopGuardAny { - return &Stp_Global_LoopGuardAny{ +// LoopGuard returns from Stp_GlobalPathAny the path struct for its child "loop-guard". +func (n *Stp_GlobalPathAny) LoopGuard() *Stp_Global_LoopGuardPathAny { + return &Stp_Global_LoopGuardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "loop-guard"}, + []string{"config", "loop-guard"}, map[string]interface{}{}, n, ), } } -// Stp_Interface represents the /openconfig-spanning-tree/stp/interfaces/interface YANG schema element. -type Stp_Interface struct { +// Stp_InterfacePath represents the /openconfig-spanning-tree/stp/interfaces/interface YANG schema element. +type Stp_InterfacePath struct { *ygot.NodePath } -// Stp_InterfaceAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface YANG schema element. -type Stp_InterfaceAny struct { +// Stp_InterfacePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface YANG schema element. +type Stp_InterfacePathAny struct { *ygot.NodePath } -// Stp_Interface_BpduFilter represents the /openconfig-spanning-tree/stp/interfaces/interface/state/bpdu-filter YANG schema element. -type Stp_Interface_BpduFilter struct { +// Stp_Interface_BpduFilterPath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/bpdu-filter YANG schema element. +type Stp_Interface_BpduFilterPath struct { *ygot.NodePath } -// Stp_Interface_BpduFilterAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/bpdu-filter YANG schema element. -type Stp_Interface_BpduFilterAny struct { +// Stp_Interface_BpduFilterPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/bpdu-filter YANG schema element. +type Stp_Interface_BpduFilterPathAny struct { *ygot.NodePath } -// Stp_Interface_BpduGuard represents the /openconfig-spanning-tree/stp/interfaces/interface/state/bpdu-guard YANG schema element. -type Stp_Interface_BpduGuard struct { +// Stp_Interface_BpduGuardPath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/bpdu-guard YANG schema element. +type Stp_Interface_BpduGuardPath struct { *ygot.NodePath } -// Stp_Interface_BpduGuardAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/bpdu-guard YANG schema element. -type Stp_Interface_BpduGuardAny struct { +// Stp_Interface_BpduGuardPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/bpdu-guard YANG schema element. +type Stp_Interface_BpduGuardPathAny struct { *ygot.NodePath } -// Stp_Interface_EdgePort represents the /openconfig-spanning-tree/stp/interfaces/interface/state/edge-port YANG schema element. -type Stp_Interface_EdgePort struct { +// Stp_Interface_EdgePortPath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/edge-port YANG schema element. +type Stp_Interface_EdgePortPath struct { *ygot.NodePath } -// Stp_Interface_EdgePortAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/edge-port YANG schema element. -type Stp_Interface_EdgePortAny struct { +// Stp_Interface_EdgePortPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/edge-port YANG schema element. +type Stp_Interface_EdgePortPathAny struct { *ygot.NodePath } -// Stp_Interface_Guard represents the /openconfig-spanning-tree/stp/interfaces/interface/state/guard YANG schema element. -type Stp_Interface_Guard struct { +// Stp_Interface_GuardPath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/guard YANG schema element. +type Stp_Interface_GuardPath struct { *ygot.NodePath } -// Stp_Interface_GuardAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/guard YANG schema element. -type Stp_Interface_GuardAny struct { +// Stp_Interface_GuardPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/guard YANG schema element. +type Stp_Interface_GuardPathAny struct { *ygot.NodePath } -// Stp_Interface_LinkType represents the /openconfig-spanning-tree/stp/interfaces/interface/state/link-type YANG schema element. -type Stp_Interface_LinkType struct { +// Stp_Interface_LinkTypePath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/link-type YANG schema element. +type Stp_Interface_LinkTypePath struct { *ygot.NodePath } -// Stp_Interface_LinkTypeAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/link-type YANG schema element. -type Stp_Interface_LinkTypeAny struct { +// Stp_Interface_LinkTypePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/link-type YANG schema element. +type Stp_Interface_LinkTypePathAny struct { *ygot.NodePath } -// Stp_Interface_Name represents the /openconfig-spanning-tree/stp/interfaces/interface/state/name YANG schema element. -type Stp_Interface_Name struct { +// Stp_Interface_NamePath represents the /openconfig-spanning-tree/stp/interfaces/interface/config/name YANG schema element. +type Stp_Interface_NamePath struct { *ygot.NodePath } -// Stp_Interface_NameAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/state/name YANG schema element. -type Stp_Interface_NameAny struct { +// Stp_Interface_NamePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/interfaces/interface/config/name YANG schema element. +type Stp_Interface_NamePathAny struct { *ygot.NodePath } -// BpduFilter returns from Stp_Interface the path struct for its child "bpdu-filter". -func (n *Stp_Interface) BpduFilter() *Stp_Interface_BpduFilter { - return &Stp_Interface_BpduFilter{ +// BpduFilter returns from Stp_InterfacePath the path struct for its child "bpdu-filter". +func (n *Stp_InterfacePath) BpduFilter() *Stp_Interface_BpduFilterPath { + return &Stp_Interface_BpduFilterPath{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-filter"}, + []string{"config", "bpdu-filter"}, map[string]interface{}{}, n, ), } } -// BpduFilter returns from Stp_InterfaceAny the path struct for its child "bpdu-filter". -func (n *Stp_InterfaceAny) BpduFilter() *Stp_Interface_BpduFilterAny { - return &Stp_Interface_BpduFilterAny{ +// BpduFilter returns from Stp_InterfacePathAny the path struct for its child "bpdu-filter". +func (n *Stp_InterfacePathAny) BpduFilter() *Stp_Interface_BpduFilterPathAny { + return &Stp_Interface_BpduFilterPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-filter"}, + []string{"config", "bpdu-filter"}, map[string]interface{}{}, n, ), } } -// BpduGuard returns from Stp_Interface the path struct for its child "bpdu-guard". -func (n *Stp_Interface) BpduGuard() *Stp_Interface_BpduGuard { - return &Stp_Interface_BpduGuard{ +// BpduGuard returns from Stp_InterfacePath the path struct for its child "bpdu-guard". +func (n *Stp_InterfacePath) BpduGuard() *Stp_Interface_BpduGuardPath { + return &Stp_Interface_BpduGuardPath{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-guard"}, + []string{"config", "bpdu-guard"}, map[string]interface{}{}, n, ), } } -// BpduGuard returns from Stp_InterfaceAny the path struct for its child "bpdu-guard". -func (n *Stp_InterfaceAny) BpduGuard() *Stp_Interface_BpduGuardAny { - return &Stp_Interface_BpduGuardAny{ +// BpduGuard returns from Stp_InterfacePathAny the path struct for its child "bpdu-guard". +func (n *Stp_InterfacePathAny) BpduGuard() *Stp_Interface_BpduGuardPathAny { + return &Stp_Interface_BpduGuardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bpdu-guard"}, + []string{"config", "bpdu-guard"}, map[string]interface{}{}, n, ), } } -// EdgePort returns from Stp_Interface the path struct for its child "edge-port". -func (n *Stp_Interface) EdgePort() *Stp_Interface_EdgePort { - return &Stp_Interface_EdgePort{ +// EdgePort returns from Stp_InterfacePath the path struct for its child "edge-port". +func (n *Stp_InterfacePath) EdgePort() *Stp_Interface_EdgePortPath { + return &Stp_Interface_EdgePortPath{ NodePath: ygot.NewNodePath( - []string{"state", "edge-port"}, + []string{"config", "edge-port"}, map[string]interface{}{}, n, ), } } -// EdgePort returns from Stp_InterfaceAny the path struct for its child "edge-port". -func (n *Stp_InterfaceAny) EdgePort() *Stp_Interface_EdgePortAny { - return &Stp_Interface_EdgePortAny{ +// EdgePort returns from Stp_InterfacePathAny the path struct for its child "edge-port". +func (n *Stp_InterfacePathAny) EdgePort() *Stp_Interface_EdgePortPathAny { + return &Stp_Interface_EdgePortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "edge-port"}, + []string{"config", "edge-port"}, map[string]interface{}{}, n, ), } } -// Guard returns from Stp_Interface the path struct for its child "guard". -func (n *Stp_Interface) Guard() *Stp_Interface_Guard { - return &Stp_Interface_Guard{ +// Guard returns from Stp_InterfacePath the path struct for its child "guard". +func (n *Stp_InterfacePath) Guard() *Stp_Interface_GuardPath { + return &Stp_Interface_GuardPath{ NodePath: ygot.NewNodePath( - []string{"state", "guard"}, + []string{"config", "guard"}, map[string]interface{}{}, n, ), } } -// Guard returns from Stp_InterfaceAny the path struct for its child "guard". -func (n *Stp_InterfaceAny) Guard() *Stp_Interface_GuardAny { - return &Stp_Interface_GuardAny{ +// Guard returns from Stp_InterfacePathAny the path struct for its child "guard". +func (n *Stp_InterfacePathAny) Guard() *Stp_Interface_GuardPathAny { + return &Stp_Interface_GuardPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "guard"}, + []string{"config", "guard"}, map[string]interface{}{}, n, ), } } -// LinkType returns from Stp_Interface the path struct for its child "link-type". -func (n *Stp_Interface) LinkType() *Stp_Interface_LinkType { - return &Stp_Interface_LinkType{ +// LinkType returns from Stp_InterfacePath the path struct for its child "link-type". +func (n *Stp_InterfacePath) LinkType() *Stp_Interface_LinkTypePath { + return &Stp_Interface_LinkTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "link-type"}, + []string{"config", "link-type"}, map[string]interface{}{}, n, ), } } -// LinkType returns from Stp_InterfaceAny the path struct for its child "link-type". -func (n *Stp_InterfaceAny) LinkType() *Stp_Interface_LinkTypeAny { - return &Stp_Interface_LinkTypeAny{ +// LinkType returns from Stp_InterfacePathAny the path struct for its child "link-type". +func (n *Stp_InterfacePathAny) LinkType() *Stp_Interface_LinkTypePathAny { + return &Stp_Interface_LinkTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "link-type"}, + []string{"config", "link-type"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_Interface the path struct for its child "name". -func (n *Stp_Interface) Name() *Stp_Interface_Name { - return &Stp_Interface_Name{ +// Name returns from Stp_InterfacePath the path struct for its child "name". +func (n *Stp_InterfacePath) Name() *Stp_Interface_NamePath { + return &Stp_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_InterfaceAny the path struct for its child "name". -func (n *Stp_InterfaceAny) Name() *Stp_Interface_NameAny { - return &Stp_Interface_NameAny{ +// Name returns from Stp_InterfacePathAny the path struct for its child "name". +func (n *Stp_InterfacePathAny) Name() *Stp_Interface_NamePathAny { + return &Stp_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Stp_Mstp represents the /openconfig-spanning-tree/stp/mstp YANG schema element. -type Stp_Mstp struct { +// Stp_MstpPath represents the /openconfig-spanning-tree/stp/mstp YANG schema element. +type Stp_MstpPath struct { *ygot.NodePath } -// Stp_MstpAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp YANG schema element. -type Stp_MstpAny struct { +// Stp_MstpPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp YANG schema element. +type Stp_MstpPathAny struct { *ygot.NodePath } -// Stp_Mstp_ForwardingDelay represents the /openconfig-spanning-tree/stp/mstp/state/forwarding-delay YANG schema element. -type Stp_Mstp_ForwardingDelay struct { +// Stp_Mstp_ForwardingDelayPath represents the /openconfig-spanning-tree/stp/mstp/config/forwarding-delay YANG schema element. +type Stp_Mstp_ForwardingDelayPath struct { *ygot.NodePath } -// Stp_Mstp_ForwardingDelayAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/forwarding-delay YANG schema element. -type Stp_Mstp_ForwardingDelayAny struct { +// Stp_Mstp_ForwardingDelayPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/forwarding-delay YANG schema element. +type Stp_Mstp_ForwardingDelayPathAny struct { *ygot.NodePath } -// Stp_Mstp_HelloTime represents the /openconfig-spanning-tree/stp/mstp/state/hello-time YANG schema element. -type Stp_Mstp_HelloTime struct { +// Stp_Mstp_HelloTimePath represents the /openconfig-spanning-tree/stp/mstp/config/hello-time YANG schema element. +type Stp_Mstp_HelloTimePath struct { *ygot.NodePath } -// Stp_Mstp_HelloTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/hello-time YANG schema element. -type Stp_Mstp_HelloTimeAny struct { +// Stp_Mstp_HelloTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/hello-time YANG schema element. +type Stp_Mstp_HelloTimePathAny struct { *ygot.NodePath } -// Stp_Mstp_HoldCount represents the /openconfig-spanning-tree/stp/mstp/state/hold-count YANG schema element. -type Stp_Mstp_HoldCount struct { +// Stp_Mstp_HoldCountPath represents the /openconfig-spanning-tree/stp/mstp/config/hold-count YANG schema element. +type Stp_Mstp_HoldCountPath struct { *ygot.NodePath } -// Stp_Mstp_HoldCountAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/hold-count YANG schema element. -type Stp_Mstp_HoldCountAny struct { +// Stp_Mstp_HoldCountPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/hold-count YANG schema element. +type Stp_Mstp_HoldCountPathAny struct { *ygot.NodePath } -// Stp_Mstp_MaxAge represents the /openconfig-spanning-tree/stp/mstp/state/max-age YANG schema element. -type Stp_Mstp_MaxAge struct { +// Stp_Mstp_MaxAgePath represents the /openconfig-spanning-tree/stp/mstp/config/max-age YANG schema element. +type Stp_Mstp_MaxAgePath struct { *ygot.NodePath } -// Stp_Mstp_MaxAgeAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/max-age YANG schema element. -type Stp_Mstp_MaxAgeAny struct { +// Stp_Mstp_MaxAgePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/max-age YANG schema element. +type Stp_Mstp_MaxAgePathAny struct { *ygot.NodePath } -// Stp_Mstp_MaxHop represents the /openconfig-spanning-tree/stp/mstp/state/max-hop YANG schema element. -type Stp_Mstp_MaxHop struct { +// Stp_Mstp_MaxHopPath represents the /openconfig-spanning-tree/stp/mstp/config/max-hop YANG schema element. +type Stp_Mstp_MaxHopPath struct { *ygot.NodePath } -// Stp_Mstp_MaxHopAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/max-hop YANG schema element. -type Stp_Mstp_MaxHopAny struct { +// Stp_Mstp_MaxHopPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/max-hop YANG schema element. +type Stp_Mstp_MaxHopPathAny struct { *ygot.NodePath } -// Stp_Mstp_Name represents the /openconfig-spanning-tree/stp/mstp/state/name YANG schema element. -type Stp_Mstp_Name struct { +// Stp_Mstp_NamePath represents the /openconfig-spanning-tree/stp/mstp/config/name YANG schema element. +type Stp_Mstp_NamePath struct { *ygot.NodePath } -// Stp_Mstp_NameAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/name YANG schema element. -type Stp_Mstp_NameAny struct { +// Stp_Mstp_NamePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/name YANG schema element. +type Stp_Mstp_NamePathAny struct { *ygot.NodePath } -// Stp_Mstp_Revision represents the /openconfig-spanning-tree/stp/mstp/state/revision YANG schema element. -type Stp_Mstp_Revision struct { +// Stp_Mstp_RevisionPath represents the /openconfig-spanning-tree/stp/mstp/config/revision YANG schema element. +type Stp_Mstp_RevisionPath struct { *ygot.NodePath } -// Stp_Mstp_RevisionAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/state/revision YANG schema element. -type Stp_Mstp_RevisionAny struct { +// Stp_Mstp_RevisionPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/config/revision YANG schema element. +type Stp_Mstp_RevisionPathAny struct { *ygot.NodePath } -// ForwardingDelay returns from Stp_Mstp the path struct for its child "forwarding-delay". -func (n *Stp_Mstp) ForwardingDelay() *Stp_Mstp_ForwardingDelay { - return &Stp_Mstp_ForwardingDelay{ +// ForwardingDelay returns from Stp_MstpPath the path struct for its child "forwarding-delay". +func (n *Stp_MstpPath) ForwardingDelay() *Stp_Mstp_ForwardingDelayPath { + return &Stp_Mstp_ForwardingDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// ForwardingDelay returns from Stp_MstpAny the path struct for its child "forwarding-delay". -func (n *Stp_MstpAny) ForwardingDelay() *Stp_Mstp_ForwardingDelayAny { - return &Stp_Mstp_ForwardingDelayAny{ +// ForwardingDelay returns from Stp_MstpPathAny the path struct for its child "forwarding-delay". +func (n *Stp_MstpPathAny) ForwardingDelay() *Stp_Mstp_ForwardingDelayPathAny { + return &Stp_Mstp_ForwardingDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_Mstp the path struct for its child "hello-time". -func (n *Stp_Mstp) HelloTime() *Stp_Mstp_HelloTime { - return &Stp_Mstp_HelloTime{ +// HelloTime returns from Stp_MstpPath the path struct for its child "hello-time". +func (n *Stp_MstpPath) HelloTime() *Stp_Mstp_HelloTimePath { + return &Stp_Mstp_HelloTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_MstpAny the path struct for its child "hello-time". -func (n *Stp_MstpAny) HelloTime() *Stp_Mstp_HelloTimeAny { - return &Stp_Mstp_HelloTimeAny{ +// HelloTime returns from Stp_MstpPathAny the path struct for its child "hello-time". +func (n *Stp_MstpPathAny) HelloTime() *Stp_Mstp_HelloTimePathAny { + return &Stp_Mstp_HelloTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_Mstp the path struct for its child "hold-count". -func (n *Stp_Mstp) HoldCount() *Stp_Mstp_HoldCount { - return &Stp_Mstp_HoldCount{ +// HoldCount returns from Stp_MstpPath the path struct for its child "hold-count". +func (n *Stp_MstpPath) HoldCount() *Stp_Mstp_HoldCountPath { + return &Stp_Mstp_HoldCountPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_MstpAny the path struct for its child "hold-count". -func (n *Stp_MstpAny) HoldCount() *Stp_Mstp_HoldCountAny { - return &Stp_Mstp_HoldCountAny{ +// HoldCount returns from Stp_MstpPathAny the path struct for its child "hold-count". +func (n *Stp_MstpPathAny) HoldCount() *Stp_Mstp_HoldCountPathAny { + return &Stp_Mstp_HoldCountPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// MaxAge returns from Stp_Mstp the path struct for its child "max-age". -func (n *Stp_Mstp) MaxAge() *Stp_Mstp_MaxAge { - return &Stp_Mstp_MaxAge{ +// MaxAge returns from Stp_MstpPath the path struct for its child "max-age". +func (n *Stp_MstpPath) MaxAge() *Stp_Mstp_MaxAgePath { + return &Stp_Mstp_MaxAgePath{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// MaxAge returns from Stp_MstpAny the path struct for its child "max-age". -func (n *Stp_MstpAny) MaxAge() *Stp_Mstp_MaxAgeAny { - return &Stp_Mstp_MaxAgeAny{ +// MaxAge returns from Stp_MstpPathAny the path struct for its child "max-age". +func (n *Stp_MstpPathAny) MaxAge() *Stp_Mstp_MaxAgePathAny { + return &Stp_Mstp_MaxAgePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// MaxHop returns from Stp_Mstp the path struct for its child "max-hop". -func (n *Stp_Mstp) MaxHop() *Stp_Mstp_MaxHop { - return &Stp_Mstp_MaxHop{ +// MaxHop returns from Stp_MstpPath the path struct for its child "max-hop". +func (n *Stp_MstpPath) MaxHop() *Stp_Mstp_MaxHopPath { + return &Stp_Mstp_MaxHopPath{ NodePath: ygot.NewNodePath( - []string{"state", "max-hop"}, + []string{"config", "max-hop"}, map[string]interface{}{}, n, ), } } -// MaxHop returns from Stp_MstpAny the path struct for its child "max-hop". -func (n *Stp_MstpAny) MaxHop() *Stp_Mstp_MaxHopAny { - return &Stp_Mstp_MaxHopAny{ +// MaxHop returns from Stp_MstpPathAny the path struct for its child "max-hop". +func (n *Stp_MstpPathAny) MaxHop() *Stp_Mstp_MaxHopPathAny { + return &Stp_Mstp_MaxHopPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-hop"}, + []string{"config", "max-hop"}, map[string]interface{}{}, n, ), } } -// MstInstanceAny returns from Stp_Mstp the path struct for its child "mst-instance". -func (n *Stp_Mstp) MstInstanceAny() *Stp_Mstp_MstInstanceAny { - return &Stp_Mstp_MstInstanceAny{ +// MstInstanceAny returns from Stp_MstpPath the path struct for its child "mst-instance". +func (n *Stp_MstpPath) MstInstanceAny() *Stp_Mstp_MstInstancePathAny { + return &Stp_Mstp_MstInstancePathAny{ NodePath: ygot.NewNodePath( []string{"mst-instances", "mst-instance"}, map[string]interface{}{"mst-id": "*"}, @@ -159107,9 +159134,9 @@ func (n *Stp_Mstp) MstInstanceAny() *Stp_Mstp_MstInstanceAny { } } -// MstInstanceAny returns from Stp_MstpAny the path struct for its child "mst-instance". -func (n *Stp_MstpAny) MstInstanceAny() *Stp_Mstp_MstInstanceAny { - return &Stp_Mstp_MstInstanceAny{ +// MstInstanceAny returns from Stp_MstpPathAny the path struct for its child "mst-instance". +func (n *Stp_MstpPathAny) MstInstanceAny() *Stp_Mstp_MstInstancePathAny { + return &Stp_Mstp_MstInstancePathAny{ NodePath: ygot.NewNodePath( []string{"mst-instances", "mst-instance"}, map[string]interface{}{"mst-id": "*"}, @@ -159118,9 +159145,9 @@ func (n *Stp_MstpAny) MstInstanceAny() *Stp_Mstp_MstInstanceAny { } } -// MstInstance returns from Stp_Mstp the path struct for its child "mst-instance". -func (n *Stp_Mstp) MstInstance(MstId uint16) *Stp_Mstp_MstInstance { - return &Stp_Mstp_MstInstance{ +// MstInstance returns from Stp_MstpPath the path struct for its child "mst-instance". +func (n *Stp_MstpPath) MstInstance(MstId uint16) *Stp_Mstp_MstInstancePath { + return &Stp_Mstp_MstInstancePath{ NodePath: ygot.NewNodePath( []string{"mst-instances", "mst-instance"}, map[string]interface{}{"mst-id": MstId}, @@ -159129,9 +159156,9 @@ func (n *Stp_Mstp) MstInstance(MstId uint16) *Stp_Mstp_MstInstance { } } -// MstInstance returns from Stp_MstpAny the path struct for its child "mst-instance". -func (n *Stp_MstpAny) MstInstance(MstId uint16) *Stp_Mstp_MstInstanceAny { - return &Stp_Mstp_MstInstanceAny{ +// MstInstance returns from Stp_MstpPathAny the path struct for its child "mst-instance". +func (n *Stp_MstpPathAny) MstInstance(MstId uint16) *Stp_Mstp_MstInstancePathAny { + return &Stp_Mstp_MstInstancePathAny{ NodePath: ygot.NewNodePath( []string{"mst-instances", "mst-instance"}, map[string]interface{}{"mst-id": MstId}, @@ -159140,173 +159167,173 @@ func (n *Stp_MstpAny) MstInstance(MstId uint16) *Stp_Mstp_MstInstanceAny { } } -// Name returns from Stp_Mstp the path struct for its child "name". -func (n *Stp_Mstp) Name() *Stp_Mstp_Name { - return &Stp_Mstp_Name{ +// Name returns from Stp_MstpPath the path struct for its child "name". +func (n *Stp_MstpPath) Name() *Stp_Mstp_NamePath { + return &Stp_Mstp_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_MstpAny the path struct for its child "name". -func (n *Stp_MstpAny) Name() *Stp_Mstp_NameAny { - return &Stp_Mstp_NameAny{ +// Name returns from Stp_MstpPathAny the path struct for its child "name". +func (n *Stp_MstpPathAny) Name() *Stp_Mstp_NamePathAny { + return &Stp_Mstp_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Revision returns from Stp_Mstp the path struct for its child "revision". -func (n *Stp_Mstp) Revision() *Stp_Mstp_Revision { - return &Stp_Mstp_Revision{ +// Revision returns from Stp_MstpPath the path struct for its child "revision". +func (n *Stp_MstpPath) Revision() *Stp_Mstp_RevisionPath { + return &Stp_Mstp_RevisionPath{ NodePath: ygot.NewNodePath( - []string{"state", "revision"}, + []string{"config", "revision"}, map[string]interface{}{}, n, ), } } -// Revision returns from Stp_MstpAny the path struct for its child "revision". -func (n *Stp_MstpAny) Revision() *Stp_Mstp_RevisionAny { - return &Stp_Mstp_RevisionAny{ +// Revision returns from Stp_MstpPathAny the path struct for its child "revision". +func (n *Stp_MstpPathAny) Revision() *Stp_Mstp_RevisionPathAny { + return &Stp_Mstp_RevisionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "revision"}, + []string{"config", "revision"}, map[string]interface{}{}, n, ), } } -// Stp_Mstp_MstInstance represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance YANG schema element. -type Stp_Mstp_MstInstance struct { +// Stp_Mstp_MstInstancePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance YANG schema element. +type Stp_Mstp_MstInstancePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstanceAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance YANG schema element. -type Stp_Mstp_MstInstanceAny struct { +// Stp_Mstp_MstInstancePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance YANG schema element. +type Stp_Mstp_MstInstancePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_BridgeAddress represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-address YANG schema element. -type Stp_Mstp_MstInstance_BridgeAddress struct { +// Stp_Mstp_MstInstance_BridgeAddressPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-address YANG schema element. +type Stp_Mstp_MstInstance_BridgeAddressPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_BridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-address YANG schema element. -type Stp_Mstp_MstInstance_BridgeAddressAny struct { +// Stp_Mstp_MstInstance_BridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-address YANG schema element. +type Stp_Mstp_MstInstance_BridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_BridgePriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-priority YANG schema element. -type Stp_Mstp_MstInstance_BridgePriority struct { +// Stp_Mstp_MstInstance_BridgePriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/bridge-priority YANG schema element. +type Stp_Mstp_MstInstance_BridgePriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_BridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/bridge-priority YANG schema element. -type Stp_Mstp_MstInstance_BridgePriorityAny struct { +// Stp_Mstp_MstInstance_BridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/bridge-priority YANG schema element. +type Stp_Mstp_MstInstance_BridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-address YANG schema element. -type Stp_Mstp_MstInstance_DesignatedRootAddress struct { +// Stp_Mstp_MstInstance_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-address YANG schema element. +type Stp_Mstp_MstInstance_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-address YANG schema element. -type Stp_Mstp_MstInstance_DesignatedRootAddressAny struct { +// Stp_Mstp_MstInstance_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-address YANG schema element. +type Stp_Mstp_MstInstance_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-priority YANG schema element. -type Stp_Mstp_MstInstance_DesignatedRootPriority struct { +// Stp_Mstp_MstInstance_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-priority YANG schema element. +type Stp_Mstp_MstInstance_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-priority YANG schema element. -type Stp_Mstp_MstInstance_DesignatedRootPriorityAny struct { +// Stp_Mstp_MstInstance_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/designated-root-priority YANG schema element. +type Stp_Mstp_MstInstance_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_HoldTime represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/hold-time YANG schema element. -type Stp_Mstp_MstInstance_HoldTime struct { +// Stp_Mstp_MstInstance_HoldTimePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/hold-time YANG schema element. +type Stp_Mstp_MstInstance_HoldTimePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_HoldTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/hold-time YANG schema element. -type Stp_Mstp_MstInstance_HoldTimeAny struct { +// Stp_Mstp_MstInstance_HoldTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/hold-time YANG schema element. +type Stp_Mstp_MstInstance_HoldTimePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_LastTopologyChange represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/last-topology-change YANG schema element. -type Stp_Mstp_MstInstance_LastTopologyChange struct { +// Stp_Mstp_MstInstance_LastTopologyChangePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/last-topology-change YANG schema element. +type Stp_Mstp_MstInstance_LastTopologyChangePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_LastTopologyChangeAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/last-topology-change YANG schema element. -type Stp_Mstp_MstInstance_LastTopologyChangeAny struct { +// Stp_Mstp_MstInstance_LastTopologyChangePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/last-topology-change YANG schema element. +type Stp_Mstp_MstInstance_LastTopologyChangePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_MstId represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/mst-id YANG schema element. -type Stp_Mstp_MstInstance_MstId struct { +// Stp_Mstp_MstInstance_MstIdPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/mst-id YANG schema element. +type Stp_Mstp_MstInstance_MstIdPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_MstIdAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/mst-id YANG schema element. -type Stp_Mstp_MstInstance_MstIdAny struct { +// Stp_Mstp_MstInstance_MstIdPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/mst-id YANG schema element. +type Stp_Mstp_MstInstance_MstIdPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_RootCost represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-cost YANG schema element. -type Stp_Mstp_MstInstance_RootCost struct { +// Stp_Mstp_MstInstance_RootCostPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-cost YANG schema element. +type Stp_Mstp_MstInstance_RootCostPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_RootCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-cost YANG schema element. -type Stp_Mstp_MstInstance_RootCostAny struct { +// Stp_Mstp_MstInstance_RootCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-cost YANG schema element. +type Stp_Mstp_MstInstance_RootCostPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_RootPort represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-port YANG schema element. -type Stp_Mstp_MstInstance_RootPort struct { +// Stp_Mstp_MstInstance_RootPortPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-port YANG schema element. +type Stp_Mstp_MstInstance_RootPortPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_RootPortAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-port YANG schema element. -type Stp_Mstp_MstInstance_RootPortAny struct { +// Stp_Mstp_MstInstance_RootPortPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/root-port YANG schema element. +type Stp_Mstp_MstInstance_RootPortPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_TopologyChanges represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/topology-changes YANG schema element. -type Stp_Mstp_MstInstance_TopologyChanges struct { +// Stp_Mstp_MstInstance_TopologyChangesPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/topology-changes YANG schema element. +type Stp_Mstp_MstInstance_TopologyChangesPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_TopologyChangesAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/topology-changes YANG schema element. -type Stp_Mstp_MstInstance_TopologyChangesAny struct { +// Stp_Mstp_MstInstance_TopologyChangesPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/topology-changes YANG schema element. +type Stp_Mstp_MstInstance_TopologyChangesPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Vlan represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/vlan YANG schema element. -type Stp_Mstp_MstInstance_Vlan struct { +// Stp_Mstp_MstInstance_VlanPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/vlan YANG schema element. +type Stp_Mstp_MstInstance_VlanPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_VlanAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/state/vlan YANG schema element. -type Stp_Mstp_MstInstance_VlanAny struct { +// Stp_Mstp_MstInstance_VlanPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/config/vlan YANG schema element. +type Stp_Mstp_MstInstance_VlanPathAny struct { *ygot.NodePath } -// BridgeAddress returns from Stp_Mstp_MstInstance the path struct for its child "bridge-address". -func (n *Stp_Mstp_MstInstance) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAddress { - return &Stp_Mstp_MstInstance_BridgeAddress{ +// BridgeAddress returns from Stp_Mstp_MstInstancePath the path struct for its child "bridge-address". +func (n *Stp_Mstp_MstInstancePath) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAddressPath { + return &Stp_Mstp_MstInstance_BridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -159315,9 +159342,9 @@ func (n *Stp_Mstp_MstInstance) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAddre } } -// BridgeAddress returns from Stp_Mstp_MstInstanceAny the path struct for its child "bridge-address". -func (n *Stp_Mstp_MstInstanceAny) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAddressAny { - return &Stp_Mstp_MstInstance_BridgeAddressAny{ +// BridgeAddress returns from Stp_Mstp_MstInstancePathAny the path struct for its child "bridge-address". +func (n *Stp_Mstp_MstInstancePathAny) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAddressPathAny { + return &Stp_Mstp_MstInstance_BridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -159326,31 +159353,31 @@ func (n *Stp_Mstp_MstInstanceAny) BridgeAddress() *Stp_Mstp_MstInstance_BridgeAd } } -// BridgePriority returns from Stp_Mstp_MstInstance the path struct for its child "bridge-priority". -func (n *Stp_Mstp_MstInstance) BridgePriority() *Stp_Mstp_MstInstance_BridgePriority { - return &Stp_Mstp_MstInstance_BridgePriority{ +// BridgePriority returns from Stp_Mstp_MstInstancePath the path struct for its child "bridge-priority". +func (n *Stp_Mstp_MstInstancePath) BridgePriority() *Stp_Mstp_MstInstance_BridgePriorityPath { + return &Stp_Mstp_MstInstance_BridgePriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// BridgePriority returns from Stp_Mstp_MstInstanceAny the path struct for its child "bridge-priority". -func (n *Stp_Mstp_MstInstanceAny) BridgePriority() *Stp_Mstp_MstInstance_BridgePriorityAny { - return &Stp_Mstp_MstInstance_BridgePriorityAny{ +// BridgePriority returns from Stp_Mstp_MstInstancePathAny the path struct for its child "bridge-priority". +func (n *Stp_Mstp_MstInstancePathAny) BridgePriority() *Stp_Mstp_MstInstance_BridgePriorityPathAny { + return &Stp_Mstp_MstInstance_BridgePriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// DesignatedRootAddress returns from Stp_Mstp_MstInstance the path struct for its child "designated-root-address". -func (n *Stp_Mstp_MstInstance) DesignatedRootAddress() *Stp_Mstp_MstInstance_DesignatedRootAddress { - return &Stp_Mstp_MstInstance_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_Mstp_MstInstancePath the path struct for its child "designated-root-address". +func (n *Stp_Mstp_MstInstancePath) DesignatedRootAddress() *Stp_Mstp_MstInstance_DesignatedRootAddressPath { + return &Stp_Mstp_MstInstance_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -159359,9 +159386,9 @@ func (n *Stp_Mstp_MstInstance) DesignatedRootAddress() *Stp_Mstp_MstInstance_Des } } -// DesignatedRootAddress returns from Stp_Mstp_MstInstanceAny the path struct for its child "designated-root-address". -func (n *Stp_Mstp_MstInstanceAny) DesignatedRootAddress() *Stp_Mstp_MstInstance_DesignatedRootAddressAny { - return &Stp_Mstp_MstInstance_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_Mstp_MstInstancePathAny the path struct for its child "designated-root-address". +func (n *Stp_Mstp_MstInstancePathAny) DesignatedRootAddress() *Stp_Mstp_MstInstance_DesignatedRootAddressPathAny { + return &Stp_Mstp_MstInstance_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -159370,9 +159397,9 @@ func (n *Stp_Mstp_MstInstanceAny) DesignatedRootAddress() *Stp_Mstp_MstInstance_ } } -// DesignatedRootPriority returns from Stp_Mstp_MstInstance the path struct for its child "designated-root-priority". -func (n *Stp_Mstp_MstInstance) DesignatedRootPriority() *Stp_Mstp_MstInstance_DesignatedRootPriority { - return &Stp_Mstp_MstInstance_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_Mstp_MstInstancePath the path struct for its child "designated-root-priority". +func (n *Stp_Mstp_MstInstancePath) DesignatedRootPriority() *Stp_Mstp_MstInstance_DesignatedRootPriorityPath { + return &Stp_Mstp_MstInstance_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -159381,9 +159408,9 @@ func (n *Stp_Mstp_MstInstance) DesignatedRootPriority() *Stp_Mstp_MstInstance_De } } -// DesignatedRootPriority returns from Stp_Mstp_MstInstanceAny the path struct for its child "designated-root-priority". -func (n *Stp_Mstp_MstInstanceAny) DesignatedRootPriority() *Stp_Mstp_MstInstance_DesignatedRootPriorityAny { - return &Stp_Mstp_MstInstance_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_Mstp_MstInstancePathAny the path struct for its child "designated-root-priority". +func (n *Stp_Mstp_MstInstancePathAny) DesignatedRootPriority() *Stp_Mstp_MstInstance_DesignatedRootPriorityPathAny { + return &Stp_Mstp_MstInstance_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -159392,9 +159419,9 @@ func (n *Stp_Mstp_MstInstanceAny) DesignatedRootPriority() *Stp_Mstp_MstInstance } } -// HoldTime returns from Stp_Mstp_MstInstance the path struct for its child "hold-time". -func (n *Stp_Mstp_MstInstance) HoldTime() *Stp_Mstp_MstInstance_HoldTime { - return &Stp_Mstp_MstInstance_HoldTime{ +// HoldTime returns from Stp_Mstp_MstInstancePath the path struct for its child "hold-time". +func (n *Stp_Mstp_MstInstancePath) HoldTime() *Stp_Mstp_MstInstance_HoldTimePath { + return &Stp_Mstp_MstInstance_HoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -159403,9 +159430,9 @@ func (n *Stp_Mstp_MstInstance) HoldTime() *Stp_Mstp_MstInstance_HoldTime { } } -// HoldTime returns from Stp_Mstp_MstInstanceAny the path struct for its child "hold-time". -func (n *Stp_Mstp_MstInstanceAny) HoldTime() *Stp_Mstp_MstInstance_HoldTimeAny { - return &Stp_Mstp_MstInstance_HoldTimeAny{ +// HoldTime returns from Stp_Mstp_MstInstancePathAny the path struct for its child "hold-time". +func (n *Stp_Mstp_MstInstancePathAny) HoldTime() *Stp_Mstp_MstInstance_HoldTimePathAny { + return &Stp_Mstp_MstInstance_HoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -159414,9 +159441,9 @@ func (n *Stp_Mstp_MstInstanceAny) HoldTime() *Stp_Mstp_MstInstance_HoldTimeAny { } } -// InterfaceAny returns from Stp_Mstp_MstInstance the path struct for its child "interface". -func (n *Stp_Mstp_MstInstance) InterfaceAny() *Stp_Mstp_MstInstance_InterfaceAny { - return &Stp_Mstp_MstInstance_InterfaceAny{ +// InterfaceAny returns from Stp_Mstp_MstInstancePath the path struct for its child "interface". +func (n *Stp_Mstp_MstInstancePath) InterfaceAny() *Stp_Mstp_MstInstance_InterfacePathAny { + return &Stp_Mstp_MstInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -159425,9 +159452,9 @@ func (n *Stp_Mstp_MstInstance) InterfaceAny() *Stp_Mstp_MstInstance_InterfaceAny } } -// InterfaceAny returns from Stp_Mstp_MstInstanceAny the path struct for its child "interface". -func (n *Stp_Mstp_MstInstanceAny) InterfaceAny() *Stp_Mstp_MstInstance_InterfaceAny { - return &Stp_Mstp_MstInstance_InterfaceAny{ +// InterfaceAny returns from Stp_Mstp_MstInstancePathAny the path struct for its child "interface". +func (n *Stp_Mstp_MstInstancePathAny) InterfaceAny() *Stp_Mstp_MstInstance_InterfacePathAny { + return &Stp_Mstp_MstInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -159436,9 +159463,9 @@ func (n *Stp_Mstp_MstInstanceAny) InterfaceAny() *Stp_Mstp_MstInstance_Interface } } -// Interface returns from Stp_Mstp_MstInstance the path struct for its child "interface". -func (n *Stp_Mstp_MstInstance) Interface(Name string) *Stp_Mstp_MstInstance_Interface { - return &Stp_Mstp_MstInstance_Interface{ +// Interface returns from Stp_Mstp_MstInstancePath the path struct for its child "interface". +func (n *Stp_Mstp_MstInstancePath) Interface(Name string) *Stp_Mstp_MstInstance_InterfacePath { + return &Stp_Mstp_MstInstance_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -159447,9 +159474,9 @@ func (n *Stp_Mstp_MstInstance) Interface(Name string) *Stp_Mstp_MstInstance_Inte } } -// Interface returns from Stp_Mstp_MstInstanceAny the path struct for its child "interface". -func (n *Stp_Mstp_MstInstanceAny) Interface(Name string) *Stp_Mstp_MstInstance_InterfaceAny { - return &Stp_Mstp_MstInstance_InterfaceAny{ +// Interface returns from Stp_Mstp_MstInstancePathAny the path struct for its child "interface". +func (n *Stp_Mstp_MstInstancePathAny) Interface(Name string) *Stp_Mstp_MstInstance_InterfacePathAny { + return &Stp_Mstp_MstInstance_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -159458,9 +159485,9 @@ func (n *Stp_Mstp_MstInstanceAny) Interface(Name string) *Stp_Mstp_MstInstance_I } } -// LastTopologyChange returns from Stp_Mstp_MstInstance the path struct for its child "last-topology-change". -func (n *Stp_Mstp_MstInstance) LastTopologyChange() *Stp_Mstp_MstInstance_LastTopologyChange { - return &Stp_Mstp_MstInstance_LastTopologyChange{ +// LastTopologyChange returns from Stp_Mstp_MstInstancePath the path struct for its child "last-topology-change". +func (n *Stp_Mstp_MstInstancePath) LastTopologyChange() *Stp_Mstp_MstInstance_LastTopologyChangePath { + return &Stp_Mstp_MstInstance_LastTopologyChangePath{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -159469,9 +159496,9 @@ func (n *Stp_Mstp_MstInstance) LastTopologyChange() *Stp_Mstp_MstInstance_LastTo } } -// LastTopologyChange returns from Stp_Mstp_MstInstanceAny the path struct for its child "last-topology-change". -func (n *Stp_Mstp_MstInstanceAny) LastTopologyChange() *Stp_Mstp_MstInstance_LastTopologyChangeAny { - return &Stp_Mstp_MstInstance_LastTopologyChangeAny{ +// LastTopologyChange returns from Stp_Mstp_MstInstancePathAny the path struct for its child "last-topology-change". +func (n *Stp_Mstp_MstInstancePathAny) LastTopologyChange() *Stp_Mstp_MstInstance_LastTopologyChangePathAny { + return &Stp_Mstp_MstInstance_LastTopologyChangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -159480,31 +159507,31 @@ func (n *Stp_Mstp_MstInstanceAny) LastTopologyChange() *Stp_Mstp_MstInstance_Las } } -// MstId returns from Stp_Mstp_MstInstance the path struct for its child "mst-id". -func (n *Stp_Mstp_MstInstance) MstId() *Stp_Mstp_MstInstance_MstId { - return &Stp_Mstp_MstInstance_MstId{ +// MstId returns from Stp_Mstp_MstInstancePath the path struct for its child "mst-id". +func (n *Stp_Mstp_MstInstancePath) MstId() *Stp_Mstp_MstInstance_MstIdPath { + return &Stp_Mstp_MstInstance_MstIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "mst-id"}, + []string{"config", "mst-id"}, map[string]interface{}{}, n, ), } } -// MstId returns from Stp_Mstp_MstInstanceAny the path struct for its child "mst-id". -func (n *Stp_Mstp_MstInstanceAny) MstId() *Stp_Mstp_MstInstance_MstIdAny { - return &Stp_Mstp_MstInstance_MstIdAny{ +// MstId returns from Stp_Mstp_MstInstancePathAny the path struct for its child "mst-id". +func (n *Stp_Mstp_MstInstancePathAny) MstId() *Stp_Mstp_MstInstance_MstIdPathAny { + return &Stp_Mstp_MstInstance_MstIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mst-id"}, + []string{"config", "mst-id"}, map[string]interface{}{}, n, ), } } -// RootCost returns from Stp_Mstp_MstInstance the path struct for its child "root-cost". -func (n *Stp_Mstp_MstInstance) RootCost() *Stp_Mstp_MstInstance_RootCost { - return &Stp_Mstp_MstInstance_RootCost{ +// RootCost returns from Stp_Mstp_MstInstancePath the path struct for its child "root-cost". +func (n *Stp_Mstp_MstInstancePath) RootCost() *Stp_Mstp_MstInstance_RootCostPath { + return &Stp_Mstp_MstInstance_RootCostPath{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -159513,9 +159540,9 @@ func (n *Stp_Mstp_MstInstance) RootCost() *Stp_Mstp_MstInstance_RootCost { } } -// RootCost returns from Stp_Mstp_MstInstanceAny the path struct for its child "root-cost". -func (n *Stp_Mstp_MstInstanceAny) RootCost() *Stp_Mstp_MstInstance_RootCostAny { - return &Stp_Mstp_MstInstance_RootCostAny{ +// RootCost returns from Stp_Mstp_MstInstancePathAny the path struct for its child "root-cost". +func (n *Stp_Mstp_MstInstancePathAny) RootCost() *Stp_Mstp_MstInstance_RootCostPathAny { + return &Stp_Mstp_MstInstance_RootCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -159524,9 +159551,9 @@ func (n *Stp_Mstp_MstInstanceAny) RootCost() *Stp_Mstp_MstInstance_RootCostAny { } } -// RootPort returns from Stp_Mstp_MstInstance the path struct for its child "root-port". -func (n *Stp_Mstp_MstInstance) RootPort() *Stp_Mstp_MstInstance_RootPort { - return &Stp_Mstp_MstInstance_RootPort{ +// RootPort returns from Stp_Mstp_MstInstancePath the path struct for its child "root-port". +func (n *Stp_Mstp_MstInstancePath) RootPort() *Stp_Mstp_MstInstance_RootPortPath { + return &Stp_Mstp_MstInstance_RootPortPath{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -159535,9 +159562,9 @@ func (n *Stp_Mstp_MstInstance) RootPort() *Stp_Mstp_MstInstance_RootPort { } } -// RootPort returns from Stp_Mstp_MstInstanceAny the path struct for its child "root-port". -func (n *Stp_Mstp_MstInstanceAny) RootPort() *Stp_Mstp_MstInstance_RootPortAny { - return &Stp_Mstp_MstInstance_RootPortAny{ +// RootPort returns from Stp_Mstp_MstInstancePathAny the path struct for its child "root-port". +func (n *Stp_Mstp_MstInstancePathAny) RootPort() *Stp_Mstp_MstInstance_RootPortPathAny { + return &Stp_Mstp_MstInstance_RootPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -159546,9 +159573,9 @@ func (n *Stp_Mstp_MstInstanceAny) RootPort() *Stp_Mstp_MstInstance_RootPortAny { } } -// TopologyChanges returns from Stp_Mstp_MstInstance the path struct for its child "topology-changes". -func (n *Stp_Mstp_MstInstance) TopologyChanges() *Stp_Mstp_MstInstance_TopologyChanges { - return &Stp_Mstp_MstInstance_TopologyChanges{ +// TopologyChanges returns from Stp_Mstp_MstInstancePath the path struct for its child "topology-changes". +func (n *Stp_Mstp_MstInstancePath) TopologyChanges() *Stp_Mstp_MstInstance_TopologyChangesPath { + return &Stp_Mstp_MstInstance_TopologyChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -159557,9 +159584,9 @@ func (n *Stp_Mstp_MstInstance) TopologyChanges() *Stp_Mstp_MstInstance_TopologyC } } -// TopologyChanges returns from Stp_Mstp_MstInstanceAny the path struct for its child "topology-changes". -func (n *Stp_Mstp_MstInstanceAny) TopologyChanges() *Stp_Mstp_MstInstance_TopologyChangesAny { - return &Stp_Mstp_MstInstance_TopologyChangesAny{ +// TopologyChanges returns from Stp_Mstp_MstInstancePathAny the path struct for its child "topology-changes". +func (n *Stp_Mstp_MstInstancePathAny) TopologyChanges() *Stp_Mstp_MstInstance_TopologyChangesPathAny { + return &Stp_Mstp_MstInstance_TopologyChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -159568,203 +159595,203 @@ func (n *Stp_Mstp_MstInstanceAny) TopologyChanges() *Stp_Mstp_MstInstance_Topolo } } -// Vlan returns from Stp_Mstp_MstInstance the path struct for its child "vlan". -func (n *Stp_Mstp_MstInstance) Vlan() *Stp_Mstp_MstInstance_Vlan { - return &Stp_Mstp_MstInstance_Vlan{ +// Vlan returns from Stp_Mstp_MstInstancePath the path struct for its child "vlan". +func (n *Stp_Mstp_MstInstancePath) Vlan() *Stp_Mstp_MstInstance_VlanPath { + return &Stp_Mstp_MstInstance_VlanPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// Vlan returns from Stp_Mstp_MstInstanceAny the path struct for its child "vlan". -func (n *Stp_Mstp_MstInstanceAny) Vlan() *Stp_Mstp_MstInstance_VlanAny { - return &Stp_Mstp_MstInstance_VlanAny{ +// Vlan returns from Stp_Mstp_MstInstancePathAny the path struct for its child "vlan". +func (n *Stp_Mstp_MstInstancePathAny) Vlan() *Stp_Mstp_MstInstance_VlanPathAny { + return &Stp_Mstp_MstInstance_VlanPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan"}, + []string{"config", "vlan"}, map[string]interface{}{}, n, ), } } -// Stp_Mstp_MstInstance_Interface represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface YANG schema element. -type Stp_Mstp_MstInstance_Interface struct { +// Stp_Mstp_MstInstance_InterfacePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface YANG schema element. +type Stp_Mstp_MstInstance_InterfacePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_InterfaceAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface YANG schema element. -type Stp_Mstp_MstInstance_InterfaceAny struct { +// Stp_Mstp_MstInstance_InterfacePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface YANG schema element. +type Stp_Mstp_MstInstance_InterfacePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Cost represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/cost YANG schema element. -type Stp_Mstp_MstInstance_Interface_Cost struct { +// Stp_Mstp_MstInstance_Interface_CostPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/cost YANG schema element. +type Stp_Mstp_MstInstance_Interface_CostPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_CostAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/cost YANG schema element. -type Stp_Mstp_MstInstance_Interface_CostAny struct { +// Stp_Mstp_MstInstance_Interface_CostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/cost YANG schema element. +type Stp_Mstp_MstInstance_Interface_CostPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddress represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddress struct { +// Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedBridgePriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedBridgePriority struct { +// Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedCost represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedCost struct { +// Stp_Mstp_MstInstance_Interface_DesignatedCostPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedCostPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedCostAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedCostPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedPortNum represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedPortNum struct { +// Stp_Mstp_MstInstance_Interface_DesignatedPortNumPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedPortNumPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedPortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedPortNumAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedPortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedPortNumPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedPortPriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedPortPriority struct { +// Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedRootAddress struct { +// Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedRootAddressAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedRootPriority struct { +// Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityAny struct { +// Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_ForwardTransisitions represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Mstp_MstInstance_Interface_ForwardTransisitions struct { +// Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_ForwardTransisitionsAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Mstp_MstInstance_Interface_ForwardTransisitionsAny struct { +// Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Name represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/name YANG schema element. -type Stp_Mstp_MstInstance_Interface_Name struct { +// Stp_Mstp_MstInstance_Interface_NamePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/name YANG schema element. +type Stp_Mstp_MstInstance_Interface_NamePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_NameAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/name YANG schema element. -type Stp_Mstp_MstInstance_Interface_NameAny struct { +// Stp_Mstp_MstInstance_Interface_NamePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/name YANG schema element. +type Stp_Mstp_MstInstance_Interface_NamePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortNum represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-num YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortNum struct { +// Stp_Mstp_MstInstance_Interface_PortNumPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-num YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortNumPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-num YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortNumAny struct { +// Stp_Mstp_MstInstance_Interface_PortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-num YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortNumPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortPriority represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortPriority struct { +// Stp_Mstp_MstInstance_Interface_PortPriorityPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/port-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortPriorityPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-priority YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortPriorityAny struct { +// Stp_Mstp_MstInstance_Interface_PortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/config/port-priority YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortPriorityPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortState represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-state YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortState struct { +// Stp_Mstp_MstInstance_Interface_PortStatePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-state YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortStatePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_PortStateAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-state YANG schema element. -type Stp_Mstp_MstInstance_Interface_PortStateAny struct { +// Stp_Mstp_MstInstance_Interface_PortStatePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/port-state YANG schema element. +type Stp_Mstp_MstInstance_Interface_PortStatePathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Role represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/role YANG schema element. -type Stp_Mstp_MstInstance_Interface_Role struct { +// Stp_Mstp_MstInstance_Interface_RolePath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/role YANG schema element. +type Stp_Mstp_MstInstance_Interface_RolePath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_RoleAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/role YANG schema element. -type Stp_Mstp_MstInstance_Interface_RoleAny struct { +// Stp_Mstp_MstInstance_Interface_RolePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/role YANG schema element. +type Stp_Mstp_MstInstance_Interface_RolePathAny struct { *ygot.NodePath } -// Cost returns from Stp_Mstp_MstInstance_Interface the path struct for its child "cost". -func (n *Stp_Mstp_MstInstance_Interface) Cost() *Stp_Mstp_MstInstance_Interface_Cost { - return &Stp_Mstp_MstInstance_Interface_Cost{ +// Cost returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "cost". +func (n *Stp_Mstp_MstInstance_InterfacePath) Cost() *Stp_Mstp_MstInstance_Interface_CostPath { + return &Stp_Mstp_MstInstance_Interface_CostPath{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Cost returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "cost". -func (n *Stp_Mstp_MstInstance_InterfaceAny) Cost() *Stp_Mstp_MstInstance_Interface_CostAny { - return &Stp_Mstp_MstInstance_Interface_CostAny{ +// Cost returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "cost". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) Cost() *Stp_Mstp_MstInstance_Interface_CostPathAny { + return &Stp_Mstp_MstInstance_Interface_CostPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Counters returns from Stp_Mstp_MstInstance_Interface the path struct for its child "counters". -func (n *Stp_Mstp_MstInstance_Interface) Counters() *Stp_Mstp_MstInstance_Interface_Counters { - return &Stp_Mstp_MstInstance_Interface_Counters{ +// Counters returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "counters". +func (n *Stp_Mstp_MstInstance_InterfacePath) Counters() *Stp_Mstp_MstInstance_Interface_CountersPath { + return &Stp_Mstp_MstInstance_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -159773,9 +159800,9 @@ func (n *Stp_Mstp_MstInstance_Interface) Counters() *Stp_Mstp_MstInstance_Interf } } -// Counters returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "counters". -func (n *Stp_Mstp_MstInstance_InterfaceAny) Counters() *Stp_Mstp_MstInstance_Interface_CountersAny { - return &Stp_Mstp_MstInstance_Interface_CountersAny{ +// Counters returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "counters". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) Counters() *Stp_Mstp_MstInstance_Interface_CountersPathAny { + return &Stp_Mstp_MstInstance_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -159784,9 +159811,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) Counters() *Stp_Mstp_MstInstance_Int } } -// DesignatedBridgeAddress returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-bridge-address". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedBridgeAddress() *Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddress { - return &Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddress{ +// DesignatedBridgeAddress returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-bridge-address". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedBridgeAddress() *Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -159795,9 +159822,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedBridgeAddress() *Stp_Mstp_Mst } } -// DesignatedBridgeAddress returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-bridge-address". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedBridgeAddress() *Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressAny{ +// DesignatedBridgeAddress returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-bridge-address". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedBridgeAddress() *Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedBridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -159806,9 +159833,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedBridgeAddress() *Stp_Mstp_ } } -// DesignatedBridgePriority returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-bridge-priority". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedBridgePriority() *Stp_Mstp_MstInstance_Interface_DesignatedBridgePriority { - return &Stp_Mstp_MstInstance_Interface_DesignatedBridgePriority{ +// DesignatedBridgePriority returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-bridge-priority". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedBridgePriority() *Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -159817,9 +159844,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedBridgePriority() *Stp_Mstp_Ms } } -// DesignatedBridgePriority returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-bridge-priority". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedBridgePriority() *Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityAny{ +// DesignatedBridgePriority returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-bridge-priority". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedBridgePriority() *Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedBridgePriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -159828,9 +159855,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedBridgePriority() *Stp_Mstp } } -// DesignatedCost returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-cost". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedCost() *Stp_Mstp_MstInstance_Interface_DesignatedCost { - return &Stp_Mstp_MstInstance_Interface_DesignatedCost{ +// DesignatedCost returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-cost". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedCost() *Stp_Mstp_MstInstance_Interface_DesignatedCostPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedCostPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -159839,9 +159866,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedCost() *Stp_Mstp_MstInstance_ } } -// DesignatedCost returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-cost". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedCost() *Stp_Mstp_MstInstance_Interface_DesignatedCostAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedCostAny{ +// DesignatedCost returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-cost". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedCost() *Stp_Mstp_MstInstance_Interface_DesignatedCostPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -159850,9 +159877,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedCost() *Stp_Mstp_MstInstan } } -// DesignatedPortNum returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-port-num". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedPortNum() *Stp_Mstp_MstInstance_Interface_DesignatedPortNum { - return &Stp_Mstp_MstInstance_Interface_DesignatedPortNum{ +// DesignatedPortNum returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-port-num". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedPortNum() *Stp_Mstp_MstInstance_Interface_DesignatedPortNumPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedPortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -159861,9 +159888,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedPortNum() *Stp_Mstp_MstInstan } } -// DesignatedPortNum returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-port-num". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedPortNum() *Stp_Mstp_MstInstance_Interface_DesignatedPortNumAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedPortNumAny{ +// DesignatedPortNum returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-port-num". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedPortNum() *Stp_Mstp_MstInstance_Interface_DesignatedPortNumPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedPortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -159872,9 +159899,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedPortNum() *Stp_Mstp_MstIns } } -// DesignatedPortPriority returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-port-priority". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedPortPriority() *Stp_Mstp_MstInstance_Interface_DesignatedPortPriority { - return &Stp_Mstp_MstInstance_Interface_DesignatedPortPriority{ +// DesignatedPortPriority returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-port-priority". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedPortPriority() *Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -159883,9 +159910,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedPortPriority() *Stp_Mstp_MstI } } -// DesignatedPortPriority returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-port-priority". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedPortPriority() *Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityAny{ +// DesignatedPortPriority returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-port-priority". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedPortPriority() *Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedPortPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -159894,9 +159921,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedPortPriority() *Stp_Mstp_M } } -// DesignatedRootAddress returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-root-address". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedRootAddress() *Stp_Mstp_MstInstance_Interface_DesignatedRootAddress { - return &Stp_Mstp_MstInstance_Interface_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-root-address". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedRootAddress() *Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -159905,9 +159932,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedRootAddress() *Stp_Mstp_MstIn } } -// DesignatedRootAddress returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-root-address". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedRootAddress() *Stp_Mstp_MstInstance_Interface_DesignatedRootAddressAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-root-address". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedRootAddress() *Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -159916,9 +159943,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedRootAddress() *Stp_Mstp_Ms } } -// DesignatedRootPriority returns from Stp_Mstp_MstInstance_Interface the path struct for its child "designated-root-priority". -func (n *Stp_Mstp_MstInstance_Interface) DesignatedRootPriority() *Stp_Mstp_MstInstance_Interface_DesignatedRootPriority { - return &Stp_Mstp_MstInstance_Interface_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "designated-root-priority". +func (n *Stp_Mstp_MstInstance_InterfacePath) DesignatedRootPriority() *Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPath { + return &Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -159927,9 +159954,9 @@ func (n *Stp_Mstp_MstInstance_Interface) DesignatedRootPriority() *Stp_Mstp_MstI } } -// DesignatedRootPriority returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "designated-root-priority". -func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedRootPriority() *Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityAny { - return &Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "designated-root-priority". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) DesignatedRootPriority() *Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPathAny { + return &Stp_Mstp_MstInstance_Interface_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -159938,9 +159965,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) DesignatedRootPriority() *Stp_Mstp_M } } -// ForwardTransisitions returns from Stp_Mstp_MstInstance_Interface the path struct for its child "forward-transisitions". -func (n *Stp_Mstp_MstInstance_Interface) ForwardTransisitions() *Stp_Mstp_MstInstance_Interface_ForwardTransisitions { - return &Stp_Mstp_MstInstance_Interface_ForwardTransisitions{ +// ForwardTransisitions returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "forward-transisitions". +func (n *Stp_Mstp_MstInstance_InterfacePath) ForwardTransisitions() *Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPath { + return &Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -159949,9 +159976,9 @@ func (n *Stp_Mstp_MstInstance_Interface) ForwardTransisitions() *Stp_Mstp_MstIns } } -// ForwardTransisitions returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "forward-transisitions". -func (n *Stp_Mstp_MstInstance_InterfaceAny) ForwardTransisitions() *Stp_Mstp_MstInstance_Interface_ForwardTransisitionsAny { - return &Stp_Mstp_MstInstance_Interface_ForwardTransisitionsAny{ +// ForwardTransisitions returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "forward-transisitions". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) ForwardTransisitions() *Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPathAny { + return &Stp_Mstp_MstInstance_Interface_ForwardTransisitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -159960,31 +159987,31 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) ForwardTransisitions() *Stp_Mstp_Mst } } -// Name returns from Stp_Mstp_MstInstance_Interface the path struct for its child "name". -func (n *Stp_Mstp_MstInstance_Interface) Name() *Stp_Mstp_MstInstance_Interface_Name { - return &Stp_Mstp_MstInstance_Interface_Name{ +// Name returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "name". +func (n *Stp_Mstp_MstInstance_InterfacePath) Name() *Stp_Mstp_MstInstance_Interface_NamePath { + return &Stp_Mstp_MstInstance_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "name". -func (n *Stp_Mstp_MstInstance_InterfaceAny) Name() *Stp_Mstp_MstInstance_Interface_NameAny { - return &Stp_Mstp_MstInstance_Interface_NameAny{ +// Name returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "name". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) Name() *Stp_Mstp_MstInstance_Interface_NamePathAny { + return &Stp_Mstp_MstInstance_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PortNum returns from Stp_Mstp_MstInstance_Interface the path struct for its child "port-num". -func (n *Stp_Mstp_MstInstance_Interface) PortNum() *Stp_Mstp_MstInstance_Interface_PortNum { - return &Stp_Mstp_MstInstance_Interface_PortNum{ +// PortNum returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "port-num". +func (n *Stp_Mstp_MstInstance_InterfacePath) PortNum() *Stp_Mstp_MstInstance_Interface_PortNumPath { + return &Stp_Mstp_MstInstance_Interface_PortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -159993,9 +160020,9 @@ func (n *Stp_Mstp_MstInstance_Interface) PortNum() *Stp_Mstp_MstInstance_Interfa } } -// PortNum returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "port-num". -func (n *Stp_Mstp_MstInstance_InterfaceAny) PortNum() *Stp_Mstp_MstInstance_Interface_PortNumAny { - return &Stp_Mstp_MstInstance_Interface_PortNumAny{ +// PortNum returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "port-num". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) PortNum() *Stp_Mstp_MstInstance_Interface_PortNumPathAny { + return &Stp_Mstp_MstInstance_Interface_PortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -160004,31 +160031,31 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) PortNum() *Stp_Mstp_MstInstance_Inte } } -// PortPriority returns from Stp_Mstp_MstInstance_Interface the path struct for its child "port-priority". -func (n *Stp_Mstp_MstInstance_Interface) PortPriority() *Stp_Mstp_MstInstance_Interface_PortPriority { - return &Stp_Mstp_MstInstance_Interface_PortPriority{ +// PortPriority returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "port-priority". +func (n *Stp_Mstp_MstInstance_InterfacePath) PortPriority() *Stp_Mstp_MstInstance_Interface_PortPriorityPath { + return &Stp_Mstp_MstInstance_Interface_PortPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortPriority returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "port-priority". -func (n *Stp_Mstp_MstInstance_InterfaceAny) PortPriority() *Stp_Mstp_MstInstance_Interface_PortPriorityAny { - return &Stp_Mstp_MstInstance_Interface_PortPriorityAny{ +// PortPriority returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "port-priority". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) PortPriority() *Stp_Mstp_MstInstance_Interface_PortPriorityPathAny { + return &Stp_Mstp_MstInstance_Interface_PortPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortState returns from Stp_Mstp_MstInstance_Interface the path struct for its child "port-state". -func (n *Stp_Mstp_MstInstance_Interface) PortState() *Stp_Mstp_MstInstance_Interface_PortState { - return &Stp_Mstp_MstInstance_Interface_PortState{ +// PortState returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "port-state". +func (n *Stp_Mstp_MstInstance_InterfacePath) PortState() *Stp_Mstp_MstInstance_Interface_PortStatePath { + return &Stp_Mstp_MstInstance_Interface_PortStatePath{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -160037,9 +160064,9 @@ func (n *Stp_Mstp_MstInstance_Interface) PortState() *Stp_Mstp_MstInstance_Inter } } -// PortState returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "port-state". -func (n *Stp_Mstp_MstInstance_InterfaceAny) PortState() *Stp_Mstp_MstInstance_Interface_PortStateAny { - return &Stp_Mstp_MstInstance_Interface_PortStateAny{ +// PortState returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "port-state". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) PortState() *Stp_Mstp_MstInstance_Interface_PortStatePathAny { + return &Stp_Mstp_MstInstance_Interface_PortStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -160048,9 +160075,9 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) PortState() *Stp_Mstp_MstInstance_In } } -// Role returns from Stp_Mstp_MstInstance_Interface the path struct for its child "role". -func (n *Stp_Mstp_MstInstance_Interface) Role() *Stp_Mstp_MstInstance_Interface_Role { - return &Stp_Mstp_MstInstance_Interface_Role{ +// Role returns from Stp_Mstp_MstInstance_InterfacePath the path struct for its child "role". +func (n *Stp_Mstp_MstInstance_InterfacePath) Role() *Stp_Mstp_MstInstance_Interface_RolePath { + return &Stp_Mstp_MstInstance_Interface_RolePath{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -160059,9 +160086,9 @@ func (n *Stp_Mstp_MstInstance_Interface) Role() *Stp_Mstp_MstInstance_Interface_ } } -// Role returns from Stp_Mstp_MstInstance_InterfaceAny the path struct for its child "role". -func (n *Stp_Mstp_MstInstance_InterfaceAny) Role() *Stp_Mstp_MstInstance_Interface_RoleAny { - return &Stp_Mstp_MstInstance_Interface_RoleAny{ +// Role returns from Stp_Mstp_MstInstance_InterfacePathAny the path struct for its child "role". +func (n *Stp_Mstp_MstInstance_InterfacePathAny) Role() *Stp_Mstp_MstInstance_Interface_RolePathAny { + return &Stp_Mstp_MstInstance_Interface_RolePathAny{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -160070,39 +160097,39 @@ func (n *Stp_Mstp_MstInstance_InterfaceAny) Role() *Stp_Mstp_MstInstance_Interfa } } -// Stp_Mstp_MstInstance_Interface_Counters represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters YANG schema element. -type Stp_Mstp_MstInstance_Interface_Counters struct { +// Stp_Mstp_MstInstance_Interface_CountersPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters YANG schema element. +type Stp_Mstp_MstInstance_Interface_CountersPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_CountersAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters YANG schema element. -type Stp_Mstp_MstInstance_Interface_CountersAny struct { +// Stp_Mstp_MstInstance_Interface_CountersPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters YANG schema element. +type Stp_Mstp_MstInstance_Interface_CountersPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Counters_BpduReceived represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Mstp_MstInstance_Interface_Counters_BpduReceived struct { +// Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedAny struct { +// Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPathAny struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Counters_BpduSent represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Mstp_MstInstance_Interface_Counters_BpduSent struct { +// Stp_Mstp_MstInstance_Interface_Counters_BpduSentPath represents the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Mstp_MstInstance_Interface_Counters_BpduSentPath struct { *ygot.NodePath } -// Stp_Mstp_MstInstance_Interface_Counters_BpduSentAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Mstp_MstInstance_Interface_Counters_BpduSentAny struct { +// Stp_Mstp_MstInstance_Interface_Counters_BpduSentPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/mstp/mst-instances/mst-instance/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Mstp_MstInstance_Interface_Counters_BpduSentPathAny struct { *ygot.NodePath } -// BpduReceived returns from Stp_Mstp_MstInstance_Interface_Counters the path struct for its child "bpdu-received". -func (n *Stp_Mstp_MstInstance_Interface_Counters) BpduReceived() *Stp_Mstp_MstInstance_Interface_Counters_BpduReceived { - return &Stp_Mstp_MstInstance_Interface_Counters_BpduReceived{ +// BpduReceived returns from Stp_Mstp_MstInstance_Interface_CountersPath the path struct for its child "bpdu-received". +func (n *Stp_Mstp_MstInstance_Interface_CountersPath) BpduReceived() *Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPath { + return &Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPath{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -160111,9 +160138,9 @@ func (n *Stp_Mstp_MstInstance_Interface_Counters) BpduReceived() *Stp_Mstp_MstIn } } -// BpduReceived returns from Stp_Mstp_MstInstance_Interface_CountersAny the path struct for its child "bpdu-received". -func (n *Stp_Mstp_MstInstance_Interface_CountersAny) BpduReceived() *Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedAny { - return &Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedAny{ +// BpduReceived returns from Stp_Mstp_MstInstance_Interface_CountersPathAny the path struct for its child "bpdu-received". +func (n *Stp_Mstp_MstInstance_Interface_CountersPathAny) BpduReceived() *Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPathAny { + return &Stp_Mstp_MstInstance_Interface_Counters_BpduReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -160122,9 +160149,9 @@ func (n *Stp_Mstp_MstInstance_Interface_CountersAny) BpduReceived() *Stp_Mstp_Ms } } -// BpduSent returns from Stp_Mstp_MstInstance_Interface_Counters the path struct for its child "bpdu-sent". -func (n *Stp_Mstp_MstInstance_Interface_Counters) BpduSent() *Stp_Mstp_MstInstance_Interface_Counters_BpduSent { - return &Stp_Mstp_MstInstance_Interface_Counters_BpduSent{ +// BpduSent returns from Stp_Mstp_MstInstance_Interface_CountersPath the path struct for its child "bpdu-sent". +func (n *Stp_Mstp_MstInstance_Interface_CountersPath) BpduSent() *Stp_Mstp_MstInstance_Interface_Counters_BpduSentPath { + return &Stp_Mstp_MstInstance_Interface_Counters_BpduSentPath{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -160133,9 +160160,9 @@ func (n *Stp_Mstp_MstInstance_Interface_Counters) BpduSent() *Stp_Mstp_MstInstan } } -// BpduSent returns from Stp_Mstp_MstInstance_Interface_CountersAny the path struct for its child "bpdu-sent". -func (n *Stp_Mstp_MstInstance_Interface_CountersAny) BpduSent() *Stp_Mstp_MstInstance_Interface_Counters_BpduSentAny { - return &Stp_Mstp_MstInstance_Interface_Counters_BpduSentAny{ +// BpduSent returns from Stp_Mstp_MstInstance_Interface_CountersPathAny the path struct for its child "bpdu-sent". +func (n *Stp_Mstp_MstInstance_Interface_CountersPathAny) BpduSent() *Stp_Mstp_MstInstance_Interface_Counters_BpduSentPathAny { + return &Stp_Mstp_MstInstance_Interface_Counters_BpduSentPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -160144,149 +160171,149 @@ func (n *Stp_Mstp_MstInstance_Interface_CountersAny) BpduSent() *Stp_Mstp_MstIns } } -// Stp_Rstp represents the /openconfig-spanning-tree/stp/rstp YANG schema element. -type Stp_Rstp struct { +// Stp_RstpPath represents the /openconfig-spanning-tree/stp/rstp YANG schema element. +type Stp_RstpPath struct { *ygot.NodePath } -// Stp_RstpAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp YANG schema element. -type Stp_RstpAny struct { +// Stp_RstpPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp YANG schema element. +type Stp_RstpPathAny struct { *ygot.NodePath } -// Stp_Rstp_BridgeAddress represents the /openconfig-spanning-tree/stp/rstp/state/bridge-address YANG schema element. -type Stp_Rstp_BridgeAddress struct { +// Stp_Rstp_BridgeAddressPath represents the /openconfig-spanning-tree/stp/rstp/state/bridge-address YANG schema element. +type Stp_Rstp_BridgeAddressPath struct { *ygot.NodePath } -// Stp_Rstp_BridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/bridge-address YANG schema element. -type Stp_Rstp_BridgeAddressAny struct { +// Stp_Rstp_BridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/bridge-address YANG schema element. +type Stp_Rstp_BridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Rstp_BridgePriority represents the /openconfig-spanning-tree/stp/rstp/state/bridge-priority YANG schema element. -type Stp_Rstp_BridgePriority struct { +// Stp_Rstp_BridgePriorityPath represents the /openconfig-spanning-tree/stp/rstp/config/bridge-priority YANG schema element. +type Stp_Rstp_BridgePriorityPath struct { *ygot.NodePath } -// Stp_Rstp_BridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/bridge-priority YANG schema element. -type Stp_Rstp_BridgePriorityAny struct { +// Stp_Rstp_BridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/config/bridge-priority YANG schema element. +type Stp_Rstp_BridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/rstp/state/designated-root-address YANG schema element. -type Stp_Rstp_DesignatedRootAddress struct { +// Stp_Rstp_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/rstp/state/designated-root-address YANG schema element. +type Stp_Rstp_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Rstp_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/designated-root-address YANG schema element. -type Stp_Rstp_DesignatedRootAddressAny struct { +// Stp_Rstp_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/designated-root-address YANG schema element. +type Stp_Rstp_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Rstp_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/rstp/state/designated-root-priority YANG schema element. -type Stp_Rstp_DesignatedRootPriority struct { +// Stp_Rstp_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/rstp/state/designated-root-priority YANG schema element. +type Stp_Rstp_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Rstp_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/designated-root-priority YANG schema element. -type Stp_Rstp_DesignatedRootPriorityAny struct { +// Stp_Rstp_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/designated-root-priority YANG schema element. +type Stp_Rstp_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_ForwardingDelay represents the /openconfig-spanning-tree/stp/rstp/state/forwarding-delay YANG schema element. -type Stp_Rstp_ForwardingDelay struct { +// Stp_Rstp_ForwardingDelayPath represents the /openconfig-spanning-tree/stp/rstp/config/forwarding-delay YANG schema element. +type Stp_Rstp_ForwardingDelayPath struct { *ygot.NodePath } -// Stp_Rstp_ForwardingDelayAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/forwarding-delay YANG schema element. -type Stp_Rstp_ForwardingDelayAny struct { +// Stp_Rstp_ForwardingDelayPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/config/forwarding-delay YANG schema element. +type Stp_Rstp_ForwardingDelayPathAny struct { *ygot.NodePath } -// Stp_Rstp_HelloTime represents the /openconfig-spanning-tree/stp/rstp/state/hello-time YANG schema element. -type Stp_Rstp_HelloTime struct { +// Stp_Rstp_HelloTimePath represents the /openconfig-spanning-tree/stp/rstp/config/hello-time YANG schema element. +type Stp_Rstp_HelloTimePath struct { *ygot.NodePath } -// Stp_Rstp_HelloTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/hello-time YANG schema element. -type Stp_Rstp_HelloTimeAny struct { +// Stp_Rstp_HelloTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/config/hello-time YANG schema element. +type Stp_Rstp_HelloTimePathAny struct { *ygot.NodePath } -// Stp_Rstp_HoldCount represents the /openconfig-spanning-tree/stp/rstp/state/hold-count YANG schema element. -type Stp_Rstp_HoldCount struct { +// Stp_Rstp_HoldCountPath represents the /openconfig-spanning-tree/stp/rstp/config/hold-count YANG schema element. +type Stp_Rstp_HoldCountPath struct { *ygot.NodePath } -// Stp_Rstp_HoldCountAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/hold-count YANG schema element. -type Stp_Rstp_HoldCountAny struct { +// Stp_Rstp_HoldCountPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/config/hold-count YANG schema element. +type Stp_Rstp_HoldCountPathAny struct { *ygot.NodePath } -// Stp_Rstp_HoldTime represents the /openconfig-spanning-tree/stp/rstp/state/hold-time YANG schema element. -type Stp_Rstp_HoldTime struct { +// Stp_Rstp_HoldTimePath represents the /openconfig-spanning-tree/stp/rstp/state/hold-time YANG schema element. +type Stp_Rstp_HoldTimePath struct { *ygot.NodePath } -// Stp_Rstp_HoldTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/hold-time YANG schema element. -type Stp_Rstp_HoldTimeAny struct { +// Stp_Rstp_HoldTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/hold-time YANG schema element. +type Stp_Rstp_HoldTimePathAny struct { *ygot.NodePath } -// Stp_Rstp_LastTopologyChange represents the /openconfig-spanning-tree/stp/rstp/state/last-topology-change YANG schema element. -type Stp_Rstp_LastTopologyChange struct { +// Stp_Rstp_LastTopologyChangePath represents the /openconfig-spanning-tree/stp/rstp/state/last-topology-change YANG schema element. +type Stp_Rstp_LastTopologyChangePath struct { *ygot.NodePath } -// Stp_Rstp_LastTopologyChangeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/last-topology-change YANG schema element. -type Stp_Rstp_LastTopologyChangeAny struct { +// Stp_Rstp_LastTopologyChangePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/last-topology-change YANG schema element. +type Stp_Rstp_LastTopologyChangePathAny struct { *ygot.NodePath } -// Stp_Rstp_MaxAge represents the /openconfig-spanning-tree/stp/rstp/state/max-age YANG schema element. -type Stp_Rstp_MaxAge struct { +// Stp_Rstp_MaxAgePath represents the /openconfig-spanning-tree/stp/rstp/config/max-age YANG schema element. +type Stp_Rstp_MaxAgePath struct { *ygot.NodePath } -// Stp_Rstp_MaxAgeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/max-age YANG schema element. -type Stp_Rstp_MaxAgeAny struct { +// Stp_Rstp_MaxAgePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/config/max-age YANG schema element. +type Stp_Rstp_MaxAgePathAny struct { *ygot.NodePath } -// Stp_Rstp_RootCost represents the /openconfig-spanning-tree/stp/rstp/state/root-cost YANG schema element. -type Stp_Rstp_RootCost struct { +// Stp_Rstp_RootCostPath represents the /openconfig-spanning-tree/stp/rstp/state/root-cost YANG schema element. +type Stp_Rstp_RootCostPath struct { *ygot.NodePath } -// Stp_Rstp_RootCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/root-cost YANG schema element. -type Stp_Rstp_RootCostAny struct { +// Stp_Rstp_RootCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/root-cost YANG schema element. +type Stp_Rstp_RootCostPathAny struct { *ygot.NodePath } -// Stp_Rstp_RootPort represents the /openconfig-spanning-tree/stp/rstp/state/root-port YANG schema element. -type Stp_Rstp_RootPort struct { +// Stp_Rstp_RootPortPath represents the /openconfig-spanning-tree/stp/rstp/state/root-port YANG schema element. +type Stp_Rstp_RootPortPath struct { *ygot.NodePath } -// Stp_Rstp_RootPortAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/root-port YANG schema element. -type Stp_Rstp_RootPortAny struct { +// Stp_Rstp_RootPortPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/root-port YANG schema element. +type Stp_Rstp_RootPortPathAny struct { *ygot.NodePath } -// Stp_Rstp_TopologyChanges represents the /openconfig-spanning-tree/stp/rstp/state/topology-changes YANG schema element. -type Stp_Rstp_TopologyChanges struct { +// Stp_Rstp_TopologyChangesPath represents the /openconfig-spanning-tree/stp/rstp/state/topology-changes YANG schema element. +type Stp_Rstp_TopologyChangesPath struct { *ygot.NodePath } -// Stp_Rstp_TopologyChangesAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/topology-changes YANG schema element. -type Stp_Rstp_TopologyChangesAny struct { +// Stp_Rstp_TopologyChangesPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/state/topology-changes YANG schema element. +type Stp_Rstp_TopologyChangesPathAny struct { *ygot.NodePath } -// BridgeAddress returns from Stp_Rstp the path struct for its child "bridge-address". -func (n *Stp_Rstp) BridgeAddress() *Stp_Rstp_BridgeAddress { - return &Stp_Rstp_BridgeAddress{ +// BridgeAddress returns from Stp_RstpPath the path struct for its child "bridge-address". +func (n *Stp_RstpPath) BridgeAddress() *Stp_Rstp_BridgeAddressPath { + return &Stp_Rstp_BridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -160295,9 +160322,9 @@ func (n *Stp_Rstp) BridgeAddress() *Stp_Rstp_BridgeAddress { } } -// BridgeAddress returns from Stp_RstpAny the path struct for its child "bridge-address". -func (n *Stp_RstpAny) BridgeAddress() *Stp_Rstp_BridgeAddressAny { - return &Stp_Rstp_BridgeAddressAny{ +// BridgeAddress returns from Stp_RstpPathAny the path struct for its child "bridge-address". +func (n *Stp_RstpPathAny) BridgeAddress() *Stp_Rstp_BridgeAddressPathAny { + return &Stp_Rstp_BridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -160306,31 +160333,31 @@ func (n *Stp_RstpAny) BridgeAddress() *Stp_Rstp_BridgeAddressAny { } } -// BridgePriority returns from Stp_Rstp the path struct for its child "bridge-priority". -func (n *Stp_Rstp) BridgePriority() *Stp_Rstp_BridgePriority { - return &Stp_Rstp_BridgePriority{ +// BridgePriority returns from Stp_RstpPath the path struct for its child "bridge-priority". +func (n *Stp_RstpPath) BridgePriority() *Stp_Rstp_BridgePriorityPath { + return &Stp_Rstp_BridgePriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// BridgePriority returns from Stp_RstpAny the path struct for its child "bridge-priority". -func (n *Stp_RstpAny) BridgePriority() *Stp_Rstp_BridgePriorityAny { - return &Stp_Rstp_BridgePriorityAny{ +// BridgePriority returns from Stp_RstpPathAny the path struct for its child "bridge-priority". +func (n *Stp_RstpPathAny) BridgePriority() *Stp_Rstp_BridgePriorityPathAny { + return &Stp_Rstp_BridgePriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// DesignatedRootAddress returns from Stp_Rstp the path struct for its child "designated-root-address". -func (n *Stp_Rstp) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddress { - return &Stp_Rstp_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_RstpPath the path struct for its child "designated-root-address". +func (n *Stp_RstpPath) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddressPath { + return &Stp_Rstp_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -160339,9 +160366,9 @@ func (n *Stp_Rstp) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddress { } } -// DesignatedRootAddress returns from Stp_RstpAny the path struct for its child "designated-root-address". -func (n *Stp_RstpAny) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddressAny { - return &Stp_Rstp_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_RstpPathAny the path struct for its child "designated-root-address". +func (n *Stp_RstpPathAny) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddressPathAny { + return &Stp_Rstp_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -160350,9 +160377,9 @@ func (n *Stp_RstpAny) DesignatedRootAddress() *Stp_Rstp_DesignatedRootAddressAny } } -// DesignatedRootPriority returns from Stp_Rstp the path struct for its child "designated-root-priority". -func (n *Stp_Rstp) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriority { - return &Stp_Rstp_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_RstpPath the path struct for its child "designated-root-priority". +func (n *Stp_RstpPath) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriorityPath { + return &Stp_Rstp_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -160361,9 +160388,9 @@ func (n *Stp_Rstp) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriority { } } -// DesignatedRootPriority returns from Stp_RstpAny the path struct for its child "designated-root-priority". -func (n *Stp_RstpAny) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriorityAny { - return &Stp_Rstp_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_RstpPathAny the path struct for its child "designated-root-priority". +func (n *Stp_RstpPathAny) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriorityPathAny { + return &Stp_Rstp_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -160372,75 +160399,75 @@ func (n *Stp_RstpAny) DesignatedRootPriority() *Stp_Rstp_DesignatedRootPriorityA } } -// ForwardingDelay returns from Stp_Rstp the path struct for its child "forwarding-delay". -func (n *Stp_Rstp) ForwardingDelay() *Stp_Rstp_ForwardingDelay { - return &Stp_Rstp_ForwardingDelay{ +// ForwardingDelay returns from Stp_RstpPath the path struct for its child "forwarding-delay". +func (n *Stp_RstpPath) ForwardingDelay() *Stp_Rstp_ForwardingDelayPath { + return &Stp_Rstp_ForwardingDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// ForwardingDelay returns from Stp_RstpAny the path struct for its child "forwarding-delay". -func (n *Stp_RstpAny) ForwardingDelay() *Stp_Rstp_ForwardingDelayAny { - return &Stp_Rstp_ForwardingDelayAny{ +// ForwardingDelay returns from Stp_RstpPathAny the path struct for its child "forwarding-delay". +func (n *Stp_RstpPathAny) ForwardingDelay() *Stp_Rstp_ForwardingDelayPathAny { + return &Stp_Rstp_ForwardingDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_Rstp the path struct for its child "hello-time". -func (n *Stp_Rstp) HelloTime() *Stp_Rstp_HelloTime { - return &Stp_Rstp_HelloTime{ +// HelloTime returns from Stp_RstpPath the path struct for its child "hello-time". +func (n *Stp_RstpPath) HelloTime() *Stp_Rstp_HelloTimePath { + return &Stp_Rstp_HelloTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_RstpAny the path struct for its child "hello-time". -func (n *Stp_RstpAny) HelloTime() *Stp_Rstp_HelloTimeAny { - return &Stp_Rstp_HelloTimeAny{ +// HelloTime returns from Stp_RstpPathAny the path struct for its child "hello-time". +func (n *Stp_RstpPathAny) HelloTime() *Stp_Rstp_HelloTimePathAny { + return &Stp_Rstp_HelloTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_Rstp the path struct for its child "hold-count". -func (n *Stp_Rstp) HoldCount() *Stp_Rstp_HoldCount { - return &Stp_Rstp_HoldCount{ +// HoldCount returns from Stp_RstpPath the path struct for its child "hold-count". +func (n *Stp_RstpPath) HoldCount() *Stp_Rstp_HoldCountPath { + return &Stp_Rstp_HoldCountPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_RstpAny the path struct for its child "hold-count". -func (n *Stp_RstpAny) HoldCount() *Stp_Rstp_HoldCountAny { - return &Stp_Rstp_HoldCountAny{ +// HoldCount returns from Stp_RstpPathAny the path struct for its child "hold-count". +func (n *Stp_RstpPathAny) HoldCount() *Stp_Rstp_HoldCountPathAny { + return &Stp_Rstp_HoldCountPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Stp_Rstp the path struct for its child "hold-time". -func (n *Stp_Rstp) HoldTime() *Stp_Rstp_HoldTime { - return &Stp_Rstp_HoldTime{ +// HoldTime returns from Stp_RstpPath the path struct for its child "hold-time". +func (n *Stp_RstpPath) HoldTime() *Stp_Rstp_HoldTimePath { + return &Stp_Rstp_HoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -160449,9 +160476,9 @@ func (n *Stp_Rstp) HoldTime() *Stp_Rstp_HoldTime { } } -// HoldTime returns from Stp_RstpAny the path struct for its child "hold-time". -func (n *Stp_RstpAny) HoldTime() *Stp_Rstp_HoldTimeAny { - return &Stp_Rstp_HoldTimeAny{ +// HoldTime returns from Stp_RstpPathAny the path struct for its child "hold-time". +func (n *Stp_RstpPathAny) HoldTime() *Stp_Rstp_HoldTimePathAny { + return &Stp_Rstp_HoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -160460,9 +160487,9 @@ func (n *Stp_RstpAny) HoldTime() *Stp_Rstp_HoldTimeAny { } } -// InterfaceAny returns from Stp_Rstp the path struct for its child "interface". -func (n *Stp_Rstp) InterfaceAny() *Stp_Rstp_InterfaceAny { - return &Stp_Rstp_InterfaceAny{ +// InterfaceAny returns from Stp_RstpPath the path struct for its child "interface". +func (n *Stp_RstpPath) InterfaceAny() *Stp_Rstp_InterfacePathAny { + return &Stp_Rstp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -160471,9 +160498,9 @@ func (n *Stp_Rstp) InterfaceAny() *Stp_Rstp_InterfaceAny { } } -// InterfaceAny returns from Stp_RstpAny the path struct for its child "interface". -func (n *Stp_RstpAny) InterfaceAny() *Stp_Rstp_InterfaceAny { - return &Stp_Rstp_InterfaceAny{ +// InterfaceAny returns from Stp_RstpPathAny the path struct for its child "interface". +func (n *Stp_RstpPathAny) InterfaceAny() *Stp_Rstp_InterfacePathAny { + return &Stp_Rstp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -160482,9 +160509,9 @@ func (n *Stp_RstpAny) InterfaceAny() *Stp_Rstp_InterfaceAny { } } -// Interface returns from Stp_Rstp the path struct for its child "interface". -func (n *Stp_Rstp) Interface(Name string) *Stp_Rstp_Interface { - return &Stp_Rstp_Interface{ +// Interface returns from Stp_RstpPath the path struct for its child "interface". +func (n *Stp_RstpPath) Interface(Name string) *Stp_Rstp_InterfacePath { + return &Stp_Rstp_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -160493,9 +160520,9 @@ func (n *Stp_Rstp) Interface(Name string) *Stp_Rstp_Interface { } } -// Interface returns from Stp_RstpAny the path struct for its child "interface". -func (n *Stp_RstpAny) Interface(Name string) *Stp_Rstp_InterfaceAny { - return &Stp_Rstp_InterfaceAny{ +// Interface returns from Stp_RstpPathAny the path struct for its child "interface". +func (n *Stp_RstpPathAny) Interface(Name string) *Stp_Rstp_InterfacePathAny { + return &Stp_Rstp_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -160504,9 +160531,9 @@ func (n *Stp_RstpAny) Interface(Name string) *Stp_Rstp_InterfaceAny { } } -// LastTopologyChange returns from Stp_Rstp the path struct for its child "last-topology-change". -func (n *Stp_Rstp) LastTopologyChange() *Stp_Rstp_LastTopologyChange { - return &Stp_Rstp_LastTopologyChange{ +// LastTopologyChange returns from Stp_RstpPath the path struct for its child "last-topology-change". +func (n *Stp_RstpPath) LastTopologyChange() *Stp_Rstp_LastTopologyChangePath { + return &Stp_Rstp_LastTopologyChangePath{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -160515,9 +160542,9 @@ func (n *Stp_Rstp) LastTopologyChange() *Stp_Rstp_LastTopologyChange { } } -// LastTopologyChange returns from Stp_RstpAny the path struct for its child "last-topology-change". -func (n *Stp_RstpAny) LastTopologyChange() *Stp_Rstp_LastTopologyChangeAny { - return &Stp_Rstp_LastTopologyChangeAny{ +// LastTopologyChange returns from Stp_RstpPathAny the path struct for its child "last-topology-change". +func (n *Stp_RstpPathAny) LastTopologyChange() *Stp_Rstp_LastTopologyChangePathAny { + return &Stp_Rstp_LastTopologyChangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -160526,31 +160553,31 @@ func (n *Stp_RstpAny) LastTopologyChange() *Stp_Rstp_LastTopologyChangeAny { } } -// MaxAge returns from Stp_Rstp the path struct for its child "max-age". -func (n *Stp_Rstp) MaxAge() *Stp_Rstp_MaxAge { - return &Stp_Rstp_MaxAge{ +// MaxAge returns from Stp_RstpPath the path struct for its child "max-age". +func (n *Stp_RstpPath) MaxAge() *Stp_Rstp_MaxAgePath { + return &Stp_Rstp_MaxAgePath{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// MaxAge returns from Stp_RstpAny the path struct for its child "max-age". -func (n *Stp_RstpAny) MaxAge() *Stp_Rstp_MaxAgeAny { - return &Stp_Rstp_MaxAgeAny{ +// MaxAge returns from Stp_RstpPathAny the path struct for its child "max-age". +func (n *Stp_RstpPathAny) MaxAge() *Stp_Rstp_MaxAgePathAny { + return &Stp_Rstp_MaxAgePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// RootCost returns from Stp_Rstp the path struct for its child "root-cost". -func (n *Stp_Rstp) RootCost() *Stp_Rstp_RootCost { - return &Stp_Rstp_RootCost{ +// RootCost returns from Stp_RstpPath the path struct for its child "root-cost". +func (n *Stp_RstpPath) RootCost() *Stp_Rstp_RootCostPath { + return &Stp_Rstp_RootCostPath{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -160559,9 +160586,9 @@ func (n *Stp_Rstp) RootCost() *Stp_Rstp_RootCost { } } -// RootCost returns from Stp_RstpAny the path struct for its child "root-cost". -func (n *Stp_RstpAny) RootCost() *Stp_Rstp_RootCostAny { - return &Stp_Rstp_RootCostAny{ +// RootCost returns from Stp_RstpPathAny the path struct for its child "root-cost". +func (n *Stp_RstpPathAny) RootCost() *Stp_Rstp_RootCostPathAny { + return &Stp_Rstp_RootCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -160570,9 +160597,9 @@ func (n *Stp_RstpAny) RootCost() *Stp_Rstp_RootCostAny { } } -// RootPort returns from Stp_Rstp the path struct for its child "root-port". -func (n *Stp_Rstp) RootPort() *Stp_Rstp_RootPort { - return &Stp_Rstp_RootPort{ +// RootPort returns from Stp_RstpPath the path struct for its child "root-port". +func (n *Stp_RstpPath) RootPort() *Stp_Rstp_RootPortPath { + return &Stp_Rstp_RootPortPath{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -160581,9 +160608,9 @@ func (n *Stp_Rstp) RootPort() *Stp_Rstp_RootPort { } } -// RootPort returns from Stp_RstpAny the path struct for its child "root-port". -func (n *Stp_RstpAny) RootPort() *Stp_Rstp_RootPortAny { - return &Stp_Rstp_RootPortAny{ +// RootPort returns from Stp_RstpPathAny the path struct for its child "root-port". +func (n *Stp_RstpPathAny) RootPort() *Stp_Rstp_RootPortPathAny { + return &Stp_Rstp_RootPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -160592,9 +160619,9 @@ func (n *Stp_RstpAny) RootPort() *Stp_Rstp_RootPortAny { } } -// TopologyChanges returns from Stp_Rstp the path struct for its child "topology-changes". -func (n *Stp_Rstp) TopologyChanges() *Stp_Rstp_TopologyChanges { - return &Stp_Rstp_TopologyChanges{ +// TopologyChanges returns from Stp_RstpPath the path struct for its child "topology-changes". +func (n *Stp_RstpPath) TopologyChanges() *Stp_Rstp_TopologyChangesPath { + return &Stp_Rstp_TopologyChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -160603,9 +160630,9 @@ func (n *Stp_Rstp) TopologyChanges() *Stp_Rstp_TopologyChanges { } } -// TopologyChanges returns from Stp_RstpAny the path struct for its child "topology-changes". -func (n *Stp_RstpAny) TopologyChanges() *Stp_Rstp_TopologyChangesAny { - return &Stp_Rstp_TopologyChangesAny{ +// TopologyChanges returns from Stp_RstpPathAny the path struct for its child "topology-changes". +func (n *Stp_RstpPathAny) TopologyChanges() *Stp_Rstp_TopologyChangesPathAny { + return &Stp_Rstp_TopologyChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -160614,181 +160641,181 @@ func (n *Stp_RstpAny) TopologyChanges() *Stp_Rstp_TopologyChangesAny { } } -// Stp_Rstp_Interface represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface YANG schema element. -type Stp_Rstp_Interface struct { +// Stp_Rstp_InterfacePath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface YANG schema element. +type Stp_Rstp_InterfacePath struct { *ygot.NodePath } -// Stp_Rstp_InterfaceAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface YANG schema element. -type Stp_Rstp_InterfaceAny struct { +// Stp_Rstp_InterfacePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface YANG schema element. +type Stp_Rstp_InterfacePathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_Cost represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/cost YANG schema element. -type Stp_Rstp_Interface_Cost struct { +// Stp_Rstp_Interface_CostPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/cost YANG schema element. +type Stp_Rstp_Interface_CostPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_CostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/cost YANG schema element. -type Stp_Rstp_Interface_CostAny struct { +// Stp_Rstp_Interface_CostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/cost YANG schema element. +type Stp_Rstp_Interface_CostPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedBridgeAddress represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Rstp_Interface_DesignatedBridgeAddress struct { +// Stp_Rstp_Interface_DesignatedBridgeAddressPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Rstp_Interface_DesignatedBridgeAddressPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedBridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Rstp_Interface_DesignatedBridgeAddressAny struct { +// Stp_Rstp_Interface_DesignatedBridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Rstp_Interface_DesignatedBridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedBridgePriority represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedBridgePriority struct { +// Stp_Rstp_Interface_DesignatedBridgePriorityPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedBridgePriorityPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedBridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedBridgePriorityAny struct { +// Stp_Rstp_Interface_DesignatedBridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedBridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedCost represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Rstp_Interface_DesignatedCost struct { +// Stp_Rstp_Interface_DesignatedCostPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Rstp_Interface_DesignatedCostPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Rstp_Interface_DesignatedCostAny struct { +// Stp_Rstp_Interface_DesignatedCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Rstp_Interface_DesignatedCostPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedPortNum represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Rstp_Interface_DesignatedPortNum struct { +// Stp_Rstp_Interface_DesignatedPortNumPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Rstp_Interface_DesignatedPortNumPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedPortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Rstp_Interface_DesignatedPortNumAny struct { +// Stp_Rstp_Interface_DesignatedPortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Rstp_Interface_DesignatedPortNumPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedPortPriority represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedPortPriority struct { +// Stp_Rstp_Interface_DesignatedPortPriorityPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedPortPriorityPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedPortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedPortPriorityAny struct { +// Stp_Rstp_Interface_DesignatedPortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedPortPriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Rstp_Interface_DesignatedRootAddress struct { +// Stp_Rstp_Interface_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Rstp_Interface_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Rstp_Interface_DesignatedRootAddressAny struct { +// Stp_Rstp_Interface_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Rstp_Interface_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedRootPriority struct { +// Stp_Rstp_Interface_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Rstp_Interface_DesignatedRootPriorityAny struct { +// Stp_Rstp_Interface_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Rstp_Interface_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_ForwardTransisitions represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Rstp_Interface_ForwardTransisitions struct { +// Stp_Rstp_Interface_ForwardTransisitionsPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Rstp_Interface_ForwardTransisitionsPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_ForwardTransisitionsAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Rstp_Interface_ForwardTransisitionsAny struct { +// Stp_Rstp_Interface_ForwardTransisitionsPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Rstp_Interface_ForwardTransisitionsPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_Name represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/name YANG schema element. -type Stp_Rstp_Interface_Name struct { +// Stp_Rstp_Interface_NamePath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/name YANG schema element. +type Stp_Rstp_Interface_NamePath struct { *ygot.NodePath } -// Stp_Rstp_Interface_NameAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/name YANG schema element. -type Stp_Rstp_Interface_NameAny struct { +// Stp_Rstp_Interface_NamePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/name YANG schema element. +type Stp_Rstp_Interface_NamePathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortNum represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-num YANG schema element. -type Stp_Rstp_Interface_PortNum struct { +// Stp_Rstp_Interface_PortNumPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-num YANG schema element. +type Stp_Rstp_Interface_PortNumPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-num YANG schema element. -type Stp_Rstp_Interface_PortNumAny struct { +// Stp_Rstp_Interface_PortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-num YANG schema element. +type Stp_Rstp_Interface_PortNumPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortPriority represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-priority YANG schema element. -type Stp_Rstp_Interface_PortPriority struct { +// Stp_Rstp_Interface_PortPriorityPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/port-priority YANG schema element. +type Stp_Rstp_Interface_PortPriorityPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-priority YANG schema element. -type Stp_Rstp_Interface_PortPriorityAny struct { +// Stp_Rstp_Interface_PortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/config/port-priority YANG schema element. +type Stp_Rstp_Interface_PortPriorityPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortState represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-state YANG schema element. -type Stp_Rstp_Interface_PortState struct { +// Stp_Rstp_Interface_PortStatePath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-state YANG schema element. +type Stp_Rstp_Interface_PortStatePath struct { *ygot.NodePath } -// Stp_Rstp_Interface_PortStateAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-state YANG schema element. -type Stp_Rstp_Interface_PortStateAny struct { +// Stp_Rstp_Interface_PortStatePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/port-state YANG schema element. +type Stp_Rstp_Interface_PortStatePathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_Role represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/role YANG schema element. -type Stp_Rstp_Interface_Role struct { +// Stp_Rstp_Interface_RolePath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/role YANG schema element. +type Stp_Rstp_Interface_RolePath struct { *ygot.NodePath } -// Stp_Rstp_Interface_RoleAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/role YANG schema element. -type Stp_Rstp_Interface_RoleAny struct { +// Stp_Rstp_Interface_RolePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/role YANG schema element. +type Stp_Rstp_Interface_RolePathAny struct { *ygot.NodePath } -// Cost returns from Stp_Rstp_Interface the path struct for its child "cost". -func (n *Stp_Rstp_Interface) Cost() *Stp_Rstp_Interface_Cost { - return &Stp_Rstp_Interface_Cost{ +// Cost returns from Stp_Rstp_InterfacePath the path struct for its child "cost". +func (n *Stp_Rstp_InterfacePath) Cost() *Stp_Rstp_Interface_CostPath { + return &Stp_Rstp_Interface_CostPath{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Cost returns from Stp_Rstp_InterfaceAny the path struct for its child "cost". -func (n *Stp_Rstp_InterfaceAny) Cost() *Stp_Rstp_Interface_CostAny { - return &Stp_Rstp_Interface_CostAny{ +// Cost returns from Stp_Rstp_InterfacePathAny the path struct for its child "cost". +func (n *Stp_Rstp_InterfacePathAny) Cost() *Stp_Rstp_Interface_CostPathAny { + return &Stp_Rstp_Interface_CostPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Counters returns from Stp_Rstp_Interface the path struct for its child "counters". -func (n *Stp_Rstp_Interface) Counters() *Stp_Rstp_Interface_Counters { - return &Stp_Rstp_Interface_Counters{ +// Counters returns from Stp_Rstp_InterfacePath the path struct for its child "counters". +func (n *Stp_Rstp_InterfacePath) Counters() *Stp_Rstp_Interface_CountersPath { + return &Stp_Rstp_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -160797,9 +160824,9 @@ func (n *Stp_Rstp_Interface) Counters() *Stp_Rstp_Interface_Counters { } } -// Counters returns from Stp_Rstp_InterfaceAny the path struct for its child "counters". -func (n *Stp_Rstp_InterfaceAny) Counters() *Stp_Rstp_Interface_CountersAny { - return &Stp_Rstp_Interface_CountersAny{ +// Counters returns from Stp_Rstp_InterfacePathAny the path struct for its child "counters". +func (n *Stp_Rstp_InterfacePathAny) Counters() *Stp_Rstp_Interface_CountersPathAny { + return &Stp_Rstp_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -160808,9 +160835,9 @@ func (n *Stp_Rstp_InterfaceAny) Counters() *Stp_Rstp_Interface_CountersAny { } } -// DesignatedBridgeAddress returns from Stp_Rstp_Interface the path struct for its child "designated-bridge-address". -func (n *Stp_Rstp_Interface) DesignatedBridgeAddress() *Stp_Rstp_Interface_DesignatedBridgeAddress { - return &Stp_Rstp_Interface_DesignatedBridgeAddress{ +// DesignatedBridgeAddress returns from Stp_Rstp_InterfacePath the path struct for its child "designated-bridge-address". +func (n *Stp_Rstp_InterfacePath) DesignatedBridgeAddress() *Stp_Rstp_Interface_DesignatedBridgeAddressPath { + return &Stp_Rstp_Interface_DesignatedBridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -160819,9 +160846,9 @@ func (n *Stp_Rstp_Interface) DesignatedBridgeAddress() *Stp_Rstp_Interface_Desig } } -// DesignatedBridgeAddress returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-bridge-address". -func (n *Stp_Rstp_InterfaceAny) DesignatedBridgeAddress() *Stp_Rstp_Interface_DesignatedBridgeAddressAny { - return &Stp_Rstp_Interface_DesignatedBridgeAddressAny{ +// DesignatedBridgeAddress returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-bridge-address". +func (n *Stp_Rstp_InterfacePathAny) DesignatedBridgeAddress() *Stp_Rstp_Interface_DesignatedBridgeAddressPathAny { + return &Stp_Rstp_Interface_DesignatedBridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -160830,9 +160857,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedBridgeAddress() *Stp_Rstp_Interface_De } } -// DesignatedBridgePriority returns from Stp_Rstp_Interface the path struct for its child "designated-bridge-priority". -func (n *Stp_Rstp_Interface) DesignatedBridgePriority() *Stp_Rstp_Interface_DesignatedBridgePriority { - return &Stp_Rstp_Interface_DesignatedBridgePriority{ +// DesignatedBridgePriority returns from Stp_Rstp_InterfacePath the path struct for its child "designated-bridge-priority". +func (n *Stp_Rstp_InterfacePath) DesignatedBridgePriority() *Stp_Rstp_Interface_DesignatedBridgePriorityPath { + return &Stp_Rstp_Interface_DesignatedBridgePriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -160841,9 +160868,9 @@ func (n *Stp_Rstp_Interface) DesignatedBridgePriority() *Stp_Rstp_Interface_Desi } } -// DesignatedBridgePriority returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-bridge-priority". -func (n *Stp_Rstp_InterfaceAny) DesignatedBridgePriority() *Stp_Rstp_Interface_DesignatedBridgePriorityAny { - return &Stp_Rstp_Interface_DesignatedBridgePriorityAny{ +// DesignatedBridgePriority returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-bridge-priority". +func (n *Stp_Rstp_InterfacePathAny) DesignatedBridgePriority() *Stp_Rstp_Interface_DesignatedBridgePriorityPathAny { + return &Stp_Rstp_Interface_DesignatedBridgePriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -160852,9 +160879,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedBridgePriority() *Stp_Rstp_Interface_D } } -// DesignatedCost returns from Stp_Rstp_Interface the path struct for its child "designated-cost". -func (n *Stp_Rstp_Interface) DesignatedCost() *Stp_Rstp_Interface_DesignatedCost { - return &Stp_Rstp_Interface_DesignatedCost{ +// DesignatedCost returns from Stp_Rstp_InterfacePath the path struct for its child "designated-cost". +func (n *Stp_Rstp_InterfacePath) DesignatedCost() *Stp_Rstp_Interface_DesignatedCostPath { + return &Stp_Rstp_Interface_DesignatedCostPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -160863,9 +160890,9 @@ func (n *Stp_Rstp_Interface) DesignatedCost() *Stp_Rstp_Interface_DesignatedCost } } -// DesignatedCost returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-cost". -func (n *Stp_Rstp_InterfaceAny) DesignatedCost() *Stp_Rstp_Interface_DesignatedCostAny { - return &Stp_Rstp_Interface_DesignatedCostAny{ +// DesignatedCost returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-cost". +func (n *Stp_Rstp_InterfacePathAny) DesignatedCost() *Stp_Rstp_Interface_DesignatedCostPathAny { + return &Stp_Rstp_Interface_DesignatedCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -160874,9 +160901,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedCost() *Stp_Rstp_Interface_DesignatedC } } -// DesignatedPortNum returns from Stp_Rstp_Interface the path struct for its child "designated-port-num". -func (n *Stp_Rstp_Interface) DesignatedPortNum() *Stp_Rstp_Interface_DesignatedPortNum { - return &Stp_Rstp_Interface_DesignatedPortNum{ +// DesignatedPortNum returns from Stp_Rstp_InterfacePath the path struct for its child "designated-port-num". +func (n *Stp_Rstp_InterfacePath) DesignatedPortNum() *Stp_Rstp_Interface_DesignatedPortNumPath { + return &Stp_Rstp_Interface_DesignatedPortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -160885,9 +160912,9 @@ func (n *Stp_Rstp_Interface) DesignatedPortNum() *Stp_Rstp_Interface_DesignatedP } } -// DesignatedPortNum returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-port-num". -func (n *Stp_Rstp_InterfaceAny) DesignatedPortNum() *Stp_Rstp_Interface_DesignatedPortNumAny { - return &Stp_Rstp_Interface_DesignatedPortNumAny{ +// DesignatedPortNum returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-port-num". +func (n *Stp_Rstp_InterfacePathAny) DesignatedPortNum() *Stp_Rstp_Interface_DesignatedPortNumPathAny { + return &Stp_Rstp_Interface_DesignatedPortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -160896,9 +160923,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedPortNum() *Stp_Rstp_Interface_Designat } } -// DesignatedPortPriority returns from Stp_Rstp_Interface the path struct for its child "designated-port-priority". -func (n *Stp_Rstp_Interface) DesignatedPortPriority() *Stp_Rstp_Interface_DesignatedPortPriority { - return &Stp_Rstp_Interface_DesignatedPortPriority{ +// DesignatedPortPriority returns from Stp_Rstp_InterfacePath the path struct for its child "designated-port-priority". +func (n *Stp_Rstp_InterfacePath) DesignatedPortPriority() *Stp_Rstp_Interface_DesignatedPortPriorityPath { + return &Stp_Rstp_Interface_DesignatedPortPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -160907,9 +160934,9 @@ func (n *Stp_Rstp_Interface) DesignatedPortPriority() *Stp_Rstp_Interface_Design } } -// DesignatedPortPriority returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-port-priority". -func (n *Stp_Rstp_InterfaceAny) DesignatedPortPriority() *Stp_Rstp_Interface_DesignatedPortPriorityAny { - return &Stp_Rstp_Interface_DesignatedPortPriorityAny{ +// DesignatedPortPriority returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-port-priority". +func (n *Stp_Rstp_InterfacePathAny) DesignatedPortPriority() *Stp_Rstp_Interface_DesignatedPortPriorityPathAny { + return &Stp_Rstp_Interface_DesignatedPortPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -160918,9 +160945,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedPortPriority() *Stp_Rstp_Interface_Des } } -// DesignatedRootAddress returns from Stp_Rstp_Interface the path struct for its child "designated-root-address". -func (n *Stp_Rstp_Interface) DesignatedRootAddress() *Stp_Rstp_Interface_DesignatedRootAddress { - return &Stp_Rstp_Interface_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_Rstp_InterfacePath the path struct for its child "designated-root-address". +func (n *Stp_Rstp_InterfacePath) DesignatedRootAddress() *Stp_Rstp_Interface_DesignatedRootAddressPath { + return &Stp_Rstp_Interface_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -160929,9 +160956,9 @@ func (n *Stp_Rstp_Interface) DesignatedRootAddress() *Stp_Rstp_Interface_Designa } } -// DesignatedRootAddress returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-root-address". -func (n *Stp_Rstp_InterfaceAny) DesignatedRootAddress() *Stp_Rstp_Interface_DesignatedRootAddressAny { - return &Stp_Rstp_Interface_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-root-address". +func (n *Stp_Rstp_InterfacePathAny) DesignatedRootAddress() *Stp_Rstp_Interface_DesignatedRootAddressPathAny { + return &Stp_Rstp_Interface_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -160940,9 +160967,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedRootAddress() *Stp_Rstp_Interface_Desi } } -// DesignatedRootPriority returns from Stp_Rstp_Interface the path struct for its child "designated-root-priority". -func (n *Stp_Rstp_Interface) DesignatedRootPriority() *Stp_Rstp_Interface_DesignatedRootPriority { - return &Stp_Rstp_Interface_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_Rstp_InterfacePath the path struct for its child "designated-root-priority". +func (n *Stp_Rstp_InterfacePath) DesignatedRootPriority() *Stp_Rstp_Interface_DesignatedRootPriorityPath { + return &Stp_Rstp_Interface_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -160951,9 +160978,9 @@ func (n *Stp_Rstp_Interface) DesignatedRootPriority() *Stp_Rstp_Interface_Design } } -// DesignatedRootPriority returns from Stp_Rstp_InterfaceAny the path struct for its child "designated-root-priority". -func (n *Stp_Rstp_InterfaceAny) DesignatedRootPriority() *Stp_Rstp_Interface_DesignatedRootPriorityAny { - return &Stp_Rstp_Interface_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_Rstp_InterfacePathAny the path struct for its child "designated-root-priority". +func (n *Stp_Rstp_InterfacePathAny) DesignatedRootPriority() *Stp_Rstp_Interface_DesignatedRootPriorityPathAny { + return &Stp_Rstp_Interface_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -160962,9 +160989,9 @@ func (n *Stp_Rstp_InterfaceAny) DesignatedRootPriority() *Stp_Rstp_Interface_Des } } -// ForwardTransisitions returns from Stp_Rstp_Interface the path struct for its child "forward-transisitions". -func (n *Stp_Rstp_Interface) ForwardTransisitions() *Stp_Rstp_Interface_ForwardTransisitions { - return &Stp_Rstp_Interface_ForwardTransisitions{ +// ForwardTransisitions returns from Stp_Rstp_InterfacePath the path struct for its child "forward-transisitions". +func (n *Stp_Rstp_InterfacePath) ForwardTransisitions() *Stp_Rstp_Interface_ForwardTransisitionsPath { + return &Stp_Rstp_Interface_ForwardTransisitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -160973,9 +161000,9 @@ func (n *Stp_Rstp_Interface) ForwardTransisitions() *Stp_Rstp_Interface_ForwardT } } -// ForwardTransisitions returns from Stp_Rstp_InterfaceAny the path struct for its child "forward-transisitions". -func (n *Stp_Rstp_InterfaceAny) ForwardTransisitions() *Stp_Rstp_Interface_ForwardTransisitionsAny { - return &Stp_Rstp_Interface_ForwardTransisitionsAny{ +// ForwardTransisitions returns from Stp_Rstp_InterfacePathAny the path struct for its child "forward-transisitions". +func (n *Stp_Rstp_InterfacePathAny) ForwardTransisitions() *Stp_Rstp_Interface_ForwardTransisitionsPathAny { + return &Stp_Rstp_Interface_ForwardTransisitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -160984,31 +161011,31 @@ func (n *Stp_Rstp_InterfaceAny) ForwardTransisitions() *Stp_Rstp_Interface_Forwa } } -// Name returns from Stp_Rstp_Interface the path struct for its child "name". -func (n *Stp_Rstp_Interface) Name() *Stp_Rstp_Interface_Name { - return &Stp_Rstp_Interface_Name{ +// Name returns from Stp_Rstp_InterfacePath the path struct for its child "name". +func (n *Stp_Rstp_InterfacePath) Name() *Stp_Rstp_Interface_NamePath { + return &Stp_Rstp_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_Rstp_InterfaceAny the path struct for its child "name". -func (n *Stp_Rstp_InterfaceAny) Name() *Stp_Rstp_Interface_NameAny { - return &Stp_Rstp_Interface_NameAny{ +// Name returns from Stp_Rstp_InterfacePathAny the path struct for its child "name". +func (n *Stp_Rstp_InterfacePathAny) Name() *Stp_Rstp_Interface_NamePathAny { + return &Stp_Rstp_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PortNum returns from Stp_Rstp_Interface the path struct for its child "port-num". -func (n *Stp_Rstp_Interface) PortNum() *Stp_Rstp_Interface_PortNum { - return &Stp_Rstp_Interface_PortNum{ +// PortNum returns from Stp_Rstp_InterfacePath the path struct for its child "port-num". +func (n *Stp_Rstp_InterfacePath) PortNum() *Stp_Rstp_Interface_PortNumPath { + return &Stp_Rstp_Interface_PortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -161017,9 +161044,9 @@ func (n *Stp_Rstp_Interface) PortNum() *Stp_Rstp_Interface_PortNum { } } -// PortNum returns from Stp_Rstp_InterfaceAny the path struct for its child "port-num". -func (n *Stp_Rstp_InterfaceAny) PortNum() *Stp_Rstp_Interface_PortNumAny { - return &Stp_Rstp_Interface_PortNumAny{ +// PortNum returns from Stp_Rstp_InterfacePathAny the path struct for its child "port-num". +func (n *Stp_Rstp_InterfacePathAny) PortNum() *Stp_Rstp_Interface_PortNumPathAny { + return &Stp_Rstp_Interface_PortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -161028,31 +161055,31 @@ func (n *Stp_Rstp_InterfaceAny) PortNum() *Stp_Rstp_Interface_PortNumAny { } } -// PortPriority returns from Stp_Rstp_Interface the path struct for its child "port-priority". -func (n *Stp_Rstp_Interface) PortPriority() *Stp_Rstp_Interface_PortPriority { - return &Stp_Rstp_Interface_PortPriority{ +// PortPriority returns from Stp_Rstp_InterfacePath the path struct for its child "port-priority". +func (n *Stp_Rstp_InterfacePath) PortPriority() *Stp_Rstp_Interface_PortPriorityPath { + return &Stp_Rstp_Interface_PortPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortPriority returns from Stp_Rstp_InterfaceAny the path struct for its child "port-priority". -func (n *Stp_Rstp_InterfaceAny) PortPriority() *Stp_Rstp_Interface_PortPriorityAny { - return &Stp_Rstp_Interface_PortPriorityAny{ +// PortPriority returns from Stp_Rstp_InterfacePathAny the path struct for its child "port-priority". +func (n *Stp_Rstp_InterfacePathAny) PortPriority() *Stp_Rstp_Interface_PortPriorityPathAny { + return &Stp_Rstp_Interface_PortPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortState returns from Stp_Rstp_Interface the path struct for its child "port-state". -func (n *Stp_Rstp_Interface) PortState() *Stp_Rstp_Interface_PortState { - return &Stp_Rstp_Interface_PortState{ +// PortState returns from Stp_Rstp_InterfacePath the path struct for its child "port-state". +func (n *Stp_Rstp_InterfacePath) PortState() *Stp_Rstp_Interface_PortStatePath { + return &Stp_Rstp_Interface_PortStatePath{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -161061,9 +161088,9 @@ func (n *Stp_Rstp_Interface) PortState() *Stp_Rstp_Interface_PortState { } } -// PortState returns from Stp_Rstp_InterfaceAny the path struct for its child "port-state". -func (n *Stp_Rstp_InterfaceAny) PortState() *Stp_Rstp_Interface_PortStateAny { - return &Stp_Rstp_Interface_PortStateAny{ +// PortState returns from Stp_Rstp_InterfacePathAny the path struct for its child "port-state". +func (n *Stp_Rstp_InterfacePathAny) PortState() *Stp_Rstp_Interface_PortStatePathAny { + return &Stp_Rstp_Interface_PortStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -161072,9 +161099,9 @@ func (n *Stp_Rstp_InterfaceAny) PortState() *Stp_Rstp_Interface_PortStateAny { } } -// Role returns from Stp_Rstp_Interface the path struct for its child "role". -func (n *Stp_Rstp_Interface) Role() *Stp_Rstp_Interface_Role { - return &Stp_Rstp_Interface_Role{ +// Role returns from Stp_Rstp_InterfacePath the path struct for its child "role". +func (n *Stp_Rstp_InterfacePath) Role() *Stp_Rstp_Interface_RolePath { + return &Stp_Rstp_Interface_RolePath{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -161083,9 +161110,9 @@ func (n *Stp_Rstp_Interface) Role() *Stp_Rstp_Interface_Role { } } -// Role returns from Stp_Rstp_InterfaceAny the path struct for its child "role". -func (n *Stp_Rstp_InterfaceAny) Role() *Stp_Rstp_Interface_RoleAny { - return &Stp_Rstp_Interface_RoleAny{ +// Role returns from Stp_Rstp_InterfacePathAny the path struct for its child "role". +func (n *Stp_Rstp_InterfacePathAny) Role() *Stp_Rstp_Interface_RolePathAny { + return &Stp_Rstp_Interface_RolePathAny{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -161094,39 +161121,39 @@ func (n *Stp_Rstp_InterfaceAny) Role() *Stp_Rstp_Interface_RoleAny { } } -// Stp_Rstp_Interface_Counters represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters YANG schema element. -type Stp_Rstp_Interface_Counters struct { +// Stp_Rstp_Interface_CountersPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters YANG schema element. +type Stp_Rstp_Interface_CountersPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_CountersAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters YANG schema element. -type Stp_Rstp_Interface_CountersAny struct { +// Stp_Rstp_Interface_CountersPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters YANG schema element. +type Stp_Rstp_Interface_CountersPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_Counters_BpduReceived represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Rstp_Interface_Counters_BpduReceived struct { +// Stp_Rstp_Interface_Counters_BpduReceivedPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Rstp_Interface_Counters_BpduReceivedPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_Counters_BpduReceivedAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Rstp_Interface_Counters_BpduReceivedAny struct { +// Stp_Rstp_Interface_Counters_BpduReceivedPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Rstp_Interface_Counters_BpduReceivedPathAny struct { *ygot.NodePath } -// Stp_Rstp_Interface_Counters_BpduSent represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Rstp_Interface_Counters_BpduSent struct { +// Stp_Rstp_Interface_Counters_BpduSentPath represents the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Rstp_Interface_Counters_BpduSentPath struct { *ygot.NodePath } -// Stp_Rstp_Interface_Counters_BpduSentAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Rstp_Interface_Counters_BpduSentAny struct { +// Stp_Rstp_Interface_Counters_BpduSentPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rstp/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Rstp_Interface_Counters_BpduSentPathAny struct { *ygot.NodePath } -// BpduReceived returns from Stp_Rstp_Interface_Counters the path struct for its child "bpdu-received". -func (n *Stp_Rstp_Interface_Counters) BpduReceived() *Stp_Rstp_Interface_Counters_BpduReceived { - return &Stp_Rstp_Interface_Counters_BpduReceived{ +// BpduReceived returns from Stp_Rstp_Interface_CountersPath the path struct for its child "bpdu-received". +func (n *Stp_Rstp_Interface_CountersPath) BpduReceived() *Stp_Rstp_Interface_Counters_BpduReceivedPath { + return &Stp_Rstp_Interface_Counters_BpduReceivedPath{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -161135,9 +161162,9 @@ func (n *Stp_Rstp_Interface_Counters) BpduReceived() *Stp_Rstp_Interface_Counter } } -// BpduReceived returns from Stp_Rstp_Interface_CountersAny the path struct for its child "bpdu-received". -func (n *Stp_Rstp_Interface_CountersAny) BpduReceived() *Stp_Rstp_Interface_Counters_BpduReceivedAny { - return &Stp_Rstp_Interface_Counters_BpduReceivedAny{ +// BpduReceived returns from Stp_Rstp_Interface_CountersPathAny the path struct for its child "bpdu-received". +func (n *Stp_Rstp_Interface_CountersPathAny) BpduReceived() *Stp_Rstp_Interface_Counters_BpduReceivedPathAny { + return &Stp_Rstp_Interface_Counters_BpduReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -161146,9 +161173,9 @@ func (n *Stp_Rstp_Interface_CountersAny) BpduReceived() *Stp_Rstp_Interface_Coun } } -// BpduSent returns from Stp_Rstp_Interface_Counters the path struct for its child "bpdu-sent". -func (n *Stp_Rstp_Interface_Counters) BpduSent() *Stp_Rstp_Interface_Counters_BpduSent { - return &Stp_Rstp_Interface_Counters_BpduSent{ +// BpduSent returns from Stp_Rstp_Interface_CountersPath the path struct for its child "bpdu-sent". +func (n *Stp_Rstp_Interface_CountersPath) BpduSent() *Stp_Rstp_Interface_Counters_BpduSentPath { + return &Stp_Rstp_Interface_Counters_BpduSentPath{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -161157,9 +161184,9 @@ func (n *Stp_Rstp_Interface_Counters) BpduSent() *Stp_Rstp_Interface_Counters_Bp } } -// BpduSent returns from Stp_Rstp_Interface_CountersAny the path struct for its child "bpdu-sent". -func (n *Stp_Rstp_Interface_CountersAny) BpduSent() *Stp_Rstp_Interface_Counters_BpduSentAny { - return &Stp_Rstp_Interface_Counters_BpduSentAny{ +// BpduSent returns from Stp_Rstp_Interface_CountersPathAny the path struct for its child "bpdu-sent". +func (n *Stp_Rstp_Interface_CountersPathAny) BpduSent() *Stp_Rstp_Interface_Counters_BpduSentPathAny { + return &Stp_Rstp_Interface_Counters_BpduSentPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -161168,159 +161195,159 @@ func (n *Stp_Rstp_Interface_CountersAny) BpduSent() *Stp_Rstp_Interface_Counters } } -// Stp_Vlan represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan YANG schema element. -type Stp_Vlan struct { +// Stp_VlanPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan YANG schema element. +type Stp_VlanPath struct { *ygot.NodePath } -// Stp_VlanAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan YANG schema element. -type Stp_VlanAny struct { +// Stp_VlanPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan YANG schema element. +type Stp_VlanPathAny struct { *ygot.NodePath } -// Stp_Vlan_BridgeAddress represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-address YANG schema element. -type Stp_Vlan_BridgeAddress struct { +// Stp_Vlan_BridgeAddressPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-address YANG schema element. +type Stp_Vlan_BridgeAddressPath struct { *ygot.NodePath } -// Stp_Vlan_BridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-address YANG schema element. -type Stp_Vlan_BridgeAddressAny struct { +// Stp_Vlan_BridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-address YANG schema element. +type Stp_Vlan_BridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Vlan_BridgePriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-priority YANG schema element. -type Stp_Vlan_BridgePriority struct { +// Stp_Vlan_BridgePriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/bridge-priority YANG schema element. +type Stp_Vlan_BridgePriorityPath struct { *ygot.NodePath } -// Stp_Vlan_BridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/bridge-priority YANG schema element. -type Stp_Vlan_BridgePriorityAny struct { +// Stp_Vlan_BridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/bridge-priority YANG schema element. +type Stp_Vlan_BridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-address YANG schema element. -type Stp_Vlan_DesignatedRootAddress struct { +// Stp_Vlan_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-address YANG schema element. +type Stp_Vlan_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Vlan_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-address YANG schema element. -type Stp_Vlan_DesignatedRootAddressAny struct { +// Stp_Vlan_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-address YANG schema element. +type Stp_Vlan_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Vlan_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-priority YANG schema element. -type Stp_Vlan_DesignatedRootPriority struct { +// Stp_Vlan_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-priority YANG schema element. +type Stp_Vlan_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Vlan_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-priority YANG schema element. -type Stp_Vlan_DesignatedRootPriorityAny struct { +// Stp_Vlan_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/designated-root-priority YANG schema element. +type Stp_Vlan_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_ForwardingDelay represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/forwarding-delay YANG schema element. -type Stp_Vlan_ForwardingDelay struct { +// Stp_Vlan_ForwardingDelayPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/forwarding-delay YANG schema element. +type Stp_Vlan_ForwardingDelayPath struct { *ygot.NodePath } -// Stp_Vlan_ForwardingDelayAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/forwarding-delay YANG schema element. -type Stp_Vlan_ForwardingDelayAny struct { +// Stp_Vlan_ForwardingDelayPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/forwarding-delay YANG schema element. +type Stp_Vlan_ForwardingDelayPathAny struct { *ygot.NodePath } -// Stp_Vlan_HelloTime represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hello-time YANG schema element. -type Stp_Vlan_HelloTime struct { +// Stp_Vlan_HelloTimePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/hello-time YANG schema element. +type Stp_Vlan_HelloTimePath struct { *ygot.NodePath } -// Stp_Vlan_HelloTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hello-time YANG schema element. -type Stp_Vlan_HelloTimeAny struct { +// Stp_Vlan_HelloTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/hello-time YANG schema element. +type Stp_Vlan_HelloTimePathAny struct { *ygot.NodePath } -// Stp_Vlan_HoldCount represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-count YANG schema element. -type Stp_Vlan_HoldCount struct { +// Stp_Vlan_HoldCountPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/hold-count YANG schema element. +type Stp_Vlan_HoldCountPath struct { *ygot.NodePath } -// Stp_Vlan_HoldCountAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-count YANG schema element. -type Stp_Vlan_HoldCountAny struct { +// Stp_Vlan_HoldCountPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/hold-count YANG schema element. +type Stp_Vlan_HoldCountPathAny struct { *ygot.NodePath } -// Stp_Vlan_HoldTime represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-time YANG schema element. -type Stp_Vlan_HoldTime struct { +// Stp_Vlan_HoldTimePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-time YANG schema element. +type Stp_Vlan_HoldTimePath struct { *ygot.NodePath } -// Stp_Vlan_HoldTimeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-time YANG schema element. -type Stp_Vlan_HoldTimeAny struct { +// Stp_Vlan_HoldTimePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/hold-time YANG schema element. +type Stp_Vlan_HoldTimePathAny struct { *ygot.NodePath } -// Stp_Vlan_LastTopologyChange represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/last-topology-change YANG schema element. -type Stp_Vlan_LastTopologyChange struct { +// Stp_Vlan_LastTopologyChangePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/last-topology-change YANG schema element. +type Stp_Vlan_LastTopologyChangePath struct { *ygot.NodePath } -// Stp_Vlan_LastTopologyChangeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/last-topology-change YANG schema element. -type Stp_Vlan_LastTopologyChangeAny struct { +// Stp_Vlan_LastTopologyChangePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/last-topology-change YANG schema element. +type Stp_Vlan_LastTopologyChangePathAny struct { *ygot.NodePath } -// Stp_Vlan_MaxAge represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/max-age YANG schema element. -type Stp_Vlan_MaxAge struct { +// Stp_Vlan_MaxAgePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/max-age YANG schema element. +type Stp_Vlan_MaxAgePath struct { *ygot.NodePath } -// Stp_Vlan_MaxAgeAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/max-age YANG schema element. -type Stp_Vlan_MaxAgeAny struct { +// Stp_Vlan_MaxAgePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/max-age YANG schema element. +type Stp_Vlan_MaxAgePathAny struct { *ygot.NodePath } -// Stp_Vlan_RootCost represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-cost YANG schema element. -type Stp_Vlan_RootCost struct { +// Stp_Vlan_RootCostPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-cost YANG schema element. +type Stp_Vlan_RootCostPath struct { *ygot.NodePath } -// Stp_Vlan_RootCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-cost YANG schema element. -type Stp_Vlan_RootCostAny struct { +// Stp_Vlan_RootCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-cost YANG schema element. +type Stp_Vlan_RootCostPathAny struct { *ygot.NodePath } -// Stp_Vlan_RootPort represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-port YANG schema element. -type Stp_Vlan_RootPort struct { +// Stp_Vlan_RootPortPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-port YANG schema element. +type Stp_Vlan_RootPortPath struct { *ygot.NodePath } -// Stp_Vlan_RootPortAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-port YANG schema element. -type Stp_Vlan_RootPortAny struct { +// Stp_Vlan_RootPortPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/root-port YANG schema element. +type Stp_Vlan_RootPortPathAny struct { *ygot.NodePath } -// Stp_Vlan_TopologyChanges represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/topology-changes YANG schema element. -type Stp_Vlan_TopologyChanges struct { +// Stp_Vlan_TopologyChangesPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/topology-changes YANG schema element. +type Stp_Vlan_TopologyChangesPath struct { *ygot.NodePath } -// Stp_Vlan_TopologyChangesAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/topology-changes YANG schema element. -type Stp_Vlan_TopologyChangesAny struct { +// Stp_Vlan_TopologyChangesPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/topology-changes YANG schema element. +type Stp_Vlan_TopologyChangesPathAny struct { *ygot.NodePath } -// Stp_Vlan_VlanId represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/vlan-id YANG schema element. -type Stp_Vlan_VlanId struct { +// Stp_Vlan_VlanIdPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/vlan-id YANG schema element. +type Stp_Vlan_VlanIdPath struct { *ygot.NodePath } -// Stp_Vlan_VlanIdAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/state/vlan-id YANG schema element. -type Stp_Vlan_VlanIdAny struct { +// Stp_Vlan_VlanIdPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/config/vlan-id YANG schema element. +type Stp_Vlan_VlanIdPathAny struct { *ygot.NodePath } -// BridgeAddress returns from Stp_Vlan the path struct for its child "bridge-address". -func (n *Stp_Vlan) BridgeAddress() *Stp_Vlan_BridgeAddress { - return &Stp_Vlan_BridgeAddress{ +// BridgeAddress returns from Stp_VlanPath the path struct for its child "bridge-address". +func (n *Stp_VlanPath) BridgeAddress() *Stp_Vlan_BridgeAddressPath { + return &Stp_Vlan_BridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -161329,9 +161356,9 @@ func (n *Stp_Vlan) BridgeAddress() *Stp_Vlan_BridgeAddress { } } -// BridgeAddress returns from Stp_VlanAny the path struct for its child "bridge-address". -func (n *Stp_VlanAny) BridgeAddress() *Stp_Vlan_BridgeAddressAny { - return &Stp_Vlan_BridgeAddressAny{ +// BridgeAddress returns from Stp_VlanPathAny the path struct for its child "bridge-address". +func (n *Stp_VlanPathAny) BridgeAddress() *Stp_Vlan_BridgeAddressPathAny { + return &Stp_Vlan_BridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "bridge-address"}, map[string]interface{}{}, @@ -161340,31 +161367,31 @@ func (n *Stp_VlanAny) BridgeAddress() *Stp_Vlan_BridgeAddressAny { } } -// BridgePriority returns from Stp_Vlan the path struct for its child "bridge-priority". -func (n *Stp_Vlan) BridgePriority() *Stp_Vlan_BridgePriority { - return &Stp_Vlan_BridgePriority{ +// BridgePriority returns from Stp_VlanPath the path struct for its child "bridge-priority". +func (n *Stp_VlanPath) BridgePriority() *Stp_Vlan_BridgePriorityPath { + return &Stp_Vlan_BridgePriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// BridgePriority returns from Stp_VlanAny the path struct for its child "bridge-priority". -func (n *Stp_VlanAny) BridgePriority() *Stp_Vlan_BridgePriorityAny { - return &Stp_Vlan_BridgePriorityAny{ +// BridgePriority returns from Stp_VlanPathAny the path struct for its child "bridge-priority". +func (n *Stp_VlanPathAny) BridgePriority() *Stp_Vlan_BridgePriorityPathAny { + return &Stp_Vlan_BridgePriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "bridge-priority"}, + []string{"config", "bridge-priority"}, map[string]interface{}{}, n, ), } } -// DesignatedRootAddress returns from Stp_Vlan the path struct for its child "designated-root-address". -func (n *Stp_Vlan) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddress { - return &Stp_Vlan_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_VlanPath the path struct for its child "designated-root-address". +func (n *Stp_VlanPath) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddressPath { + return &Stp_Vlan_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -161373,9 +161400,9 @@ func (n *Stp_Vlan) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddress { } } -// DesignatedRootAddress returns from Stp_VlanAny the path struct for its child "designated-root-address". -func (n *Stp_VlanAny) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddressAny { - return &Stp_Vlan_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_VlanPathAny the path struct for its child "designated-root-address". +func (n *Stp_VlanPathAny) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddressPathAny { + return &Stp_Vlan_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -161384,9 +161411,9 @@ func (n *Stp_VlanAny) DesignatedRootAddress() *Stp_Vlan_DesignatedRootAddressAny } } -// DesignatedRootPriority returns from Stp_Vlan the path struct for its child "designated-root-priority". -func (n *Stp_Vlan) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriority { - return &Stp_Vlan_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_VlanPath the path struct for its child "designated-root-priority". +func (n *Stp_VlanPath) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriorityPath { + return &Stp_Vlan_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -161395,9 +161422,9 @@ func (n *Stp_Vlan) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriority { } } -// DesignatedRootPriority returns from Stp_VlanAny the path struct for its child "designated-root-priority". -func (n *Stp_VlanAny) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriorityAny { - return &Stp_Vlan_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_VlanPathAny the path struct for its child "designated-root-priority". +func (n *Stp_VlanPathAny) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriorityPathAny { + return &Stp_Vlan_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -161406,75 +161433,75 @@ func (n *Stp_VlanAny) DesignatedRootPriority() *Stp_Vlan_DesignatedRootPriorityA } } -// ForwardingDelay returns from Stp_Vlan the path struct for its child "forwarding-delay". -func (n *Stp_Vlan) ForwardingDelay() *Stp_Vlan_ForwardingDelay { - return &Stp_Vlan_ForwardingDelay{ +// ForwardingDelay returns from Stp_VlanPath the path struct for its child "forwarding-delay". +func (n *Stp_VlanPath) ForwardingDelay() *Stp_Vlan_ForwardingDelayPath { + return &Stp_Vlan_ForwardingDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// ForwardingDelay returns from Stp_VlanAny the path struct for its child "forwarding-delay". -func (n *Stp_VlanAny) ForwardingDelay() *Stp_Vlan_ForwardingDelayAny { - return &Stp_Vlan_ForwardingDelayAny{ +// ForwardingDelay returns from Stp_VlanPathAny the path struct for its child "forwarding-delay". +func (n *Stp_VlanPathAny) ForwardingDelay() *Stp_Vlan_ForwardingDelayPathAny { + return &Stp_Vlan_ForwardingDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "forwarding-delay"}, + []string{"config", "forwarding-delay"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_Vlan the path struct for its child "hello-time". -func (n *Stp_Vlan) HelloTime() *Stp_Vlan_HelloTime { - return &Stp_Vlan_HelloTime{ +// HelloTime returns from Stp_VlanPath the path struct for its child "hello-time". +func (n *Stp_VlanPath) HelloTime() *Stp_Vlan_HelloTimePath { + return &Stp_Vlan_HelloTimePath{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HelloTime returns from Stp_VlanAny the path struct for its child "hello-time". -func (n *Stp_VlanAny) HelloTime() *Stp_Vlan_HelloTimeAny { - return &Stp_Vlan_HelloTimeAny{ +// HelloTime returns from Stp_VlanPathAny the path struct for its child "hello-time". +func (n *Stp_VlanPathAny) HelloTime() *Stp_Vlan_HelloTimePathAny { + return &Stp_Vlan_HelloTimePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hello-time"}, + []string{"config", "hello-time"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_Vlan the path struct for its child "hold-count". -func (n *Stp_Vlan) HoldCount() *Stp_Vlan_HoldCount { - return &Stp_Vlan_HoldCount{ +// HoldCount returns from Stp_VlanPath the path struct for its child "hold-count". +func (n *Stp_VlanPath) HoldCount() *Stp_Vlan_HoldCountPath { + return &Stp_Vlan_HoldCountPath{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// HoldCount returns from Stp_VlanAny the path struct for its child "hold-count". -func (n *Stp_VlanAny) HoldCount() *Stp_Vlan_HoldCountAny { - return &Stp_Vlan_HoldCountAny{ +// HoldCount returns from Stp_VlanPathAny the path struct for its child "hold-count". +func (n *Stp_VlanPathAny) HoldCount() *Stp_Vlan_HoldCountPathAny { + return &Stp_Vlan_HoldCountPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hold-count"}, + []string{"config", "hold-count"}, map[string]interface{}{}, n, ), } } -// HoldTime returns from Stp_Vlan the path struct for its child "hold-time". -func (n *Stp_Vlan) HoldTime() *Stp_Vlan_HoldTime { - return &Stp_Vlan_HoldTime{ +// HoldTime returns from Stp_VlanPath the path struct for its child "hold-time". +func (n *Stp_VlanPath) HoldTime() *Stp_Vlan_HoldTimePath { + return &Stp_Vlan_HoldTimePath{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -161483,9 +161510,9 @@ func (n *Stp_Vlan) HoldTime() *Stp_Vlan_HoldTime { } } -// HoldTime returns from Stp_VlanAny the path struct for its child "hold-time". -func (n *Stp_VlanAny) HoldTime() *Stp_Vlan_HoldTimeAny { - return &Stp_Vlan_HoldTimeAny{ +// HoldTime returns from Stp_VlanPathAny the path struct for its child "hold-time". +func (n *Stp_VlanPathAny) HoldTime() *Stp_Vlan_HoldTimePathAny { + return &Stp_Vlan_HoldTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "hold-time"}, map[string]interface{}{}, @@ -161494,9 +161521,9 @@ func (n *Stp_VlanAny) HoldTime() *Stp_Vlan_HoldTimeAny { } } -// InterfaceAny returns from Stp_Vlan the path struct for its child "interface". -func (n *Stp_Vlan) InterfaceAny() *Stp_Vlan_InterfaceAny { - return &Stp_Vlan_InterfaceAny{ +// InterfaceAny returns from Stp_VlanPath the path struct for its child "interface". +func (n *Stp_VlanPath) InterfaceAny() *Stp_Vlan_InterfacePathAny { + return &Stp_Vlan_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -161505,9 +161532,9 @@ func (n *Stp_Vlan) InterfaceAny() *Stp_Vlan_InterfaceAny { } } -// InterfaceAny returns from Stp_VlanAny the path struct for its child "interface". -func (n *Stp_VlanAny) InterfaceAny() *Stp_Vlan_InterfaceAny { - return &Stp_Vlan_InterfaceAny{ +// InterfaceAny returns from Stp_VlanPathAny the path struct for its child "interface". +func (n *Stp_VlanPathAny) InterfaceAny() *Stp_Vlan_InterfacePathAny { + return &Stp_Vlan_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": "*"}, @@ -161516,9 +161543,9 @@ func (n *Stp_VlanAny) InterfaceAny() *Stp_Vlan_InterfaceAny { } } -// Interface returns from Stp_Vlan the path struct for its child "interface". -func (n *Stp_Vlan) Interface(Name string) *Stp_Vlan_Interface { - return &Stp_Vlan_Interface{ +// Interface returns from Stp_VlanPath the path struct for its child "interface". +func (n *Stp_VlanPath) Interface(Name string) *Stp_Vlan_InterfacePath { + return &Stp_Vlan_InterfacePath{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -161527,9 +161554,9 @@ func (n *Stp_Vlan) Interface(Name string) *Stp_Vlan_Interface { } } -// Interface returns from Stp_VlanAny the path struct for its child "interface". -func (n *Stp_VlanAny) Interface(Name string) *Stp_Vlan_InterfaceAny { - return &Stp_Vlan_InterfaceAny{ +// Interface returns from Stp_VlanPathAny the path struct for its child "interface". +func (n *Stp_VlanPathAny) Interface(Name string) *Stp_Vlan_InterfacePathAny { + return &Stp_Vlan_InterfacePathAny{ NodePath: ygot.NewNodePath( []string{"interfaces", "interface"}, map[string]interface{}{"name": Name}, @@ -161538,9 +161565,9 @@ func (n *Stp_VlanAny) Interface(Name string) *Stp_Vlan_InterfaceAny { } } -// LastTopologyChange returns from Stp_Vlan the path struct for its child "last-topology-change". -func (n *Stp_Vlan) LastTopologyChange() *Stp_Vlan_LastTopologyChange { - return &Stp_Vlan_LastTopologyChange{ +// LastTopologyChange returns from Stp_VlanPath the path struct for its child "last-topology-change". +func (n *Stp_VlanPath) LastTopologyChange() *Stp_Vlan_LastTopologyChangePath { + return &Stp_Vlan_LastTopologyChangePath{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -161549,9 +161576,9 @@ func (n *Stp_Vlan) LastTopologyChange() *Stp_Vlan_LastTopologyChange { } } -// LastTopologyChange returns from Stp_VlanAny the path struct for its child "last-topology-change". -func (n *Stp_VlanAny) LastTopologyChange() *Stp_Vlan_LastTopologyChangeAny { - return &Stp_Vlan_LastTopologyChangeAny{ +// LastTopologyChange returns from Stp_VlanPathAny the path struct for its child "last-topology-change". +func (n *Stp_VlanPathAny) LastTopologyChange() *Stp_Vlan_LastTopologyChangePathAny { + return &Stp_Vlan_LastTopologyChangePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-topology-change"}, map[string]interface{}{}, @@ -161560,31 +161587,31 @@ func (n *Stp_VlanAny) LastTopologyChange() *Stp_Vlan_LastTopologyChangeAny { } } -// MaxAge returns from Stp_Vlan the path struct for its child "max-age". -func (n *Stp_Vlan) MaxAge() *Stp_Vlan_MaxAge { - return &Stp_Vlan_MaxAge{ +// MaxAge returns from Stp_VlanPath the path struct for its child "max-age". +func (n *Stp_VlanPath) MaxAge() *Stp_Vlan_MaxAgePath { + return &Stp_Vlan_MaxAgePath{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// MaxAge returns from Stp_VlanAny the path struct for its child "max-age". -func (n *Stp_VlanAny) MaxAge() *Stp_Vlan_MaxAgeAny { - return &Stp_Vlan_MaxAgeAny{ +// MaxAge returns from Stp_VlanPathAny the path struct for its child "max-age". +func (n *Stp_VlanPathAny) MaxAge() *Stp_Vlan_MaxAgePathAny { + return &Stp_Vlan_MaxAgePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "max-age"}, + []string{"config", "max-age"}, map[string]interface{}{}, n, ), } } -// RootCost returns from Stp_Vlan the path struct for its child "root-cost". -func (n *Stp_Vlan) RootCost() *Stp_Vlan_RootCost { - return &Stp_Vlan_RootCost{ +// RootCost returns from Stp_VlanPath the path struct for its child "root-cost". +func (n *Stp_VlanPath) RootCost() *Stp_Vlan_RootCostPath { + return &Stp_Vlan_RootCostPath{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -161593,9 +161620,9 @@ func (n *Stp_Vlan) RootCost() *Stp_Vlan_RootCost { } } -// RootCost returns from Stp_VlanAny the path struct for its child "root-cost". -func (n *Stp_VlanAny) RootCost() *Stp_Vlan_RootCostAny { - return &Stp_Vlan_RootCostAny{ +// RootCost returns from Stp_VlanPathAny the path struct for its child "root-cost". +func (n *Stp_VlanPathAny) RootCost() *Stp_Vlan_RootCostPathAny { + return &Stp_Vlan_RootCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-cost"}, map[string]interface{}{}, @@ -161604,9 +161631,9 @@ func (n *Stp_VlanAny) RootCost() *Stp_Vlan_RootCostAny { } } -// RootPort returns from Stp_Vlan the path struct for its child "root-port". -func (n *Stp_Vlan) RootPort() *Stp_Vlan_RootPort { - return &Stp_Vlan_RootPort{ +// RootPort returns from Stp_VlanPath the path struct for its child "root-port". +func (n *Stp_VlanPath) RootPort() *Stp_Vlan_RootPortPath { + return &Stp_Vlan_RootPortPath{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -161615,9 +161642,9 @@ func (n *Stp_Vlan) RootPort() *Stp_Vlan_RootPort { } } -// RootPort returns from Stp_VlanAny the path struct for its child "root-port". -func (n *Stp_VlanAny) RootPort() *Stp_Vlan_RootPortAny { - return &Stp_Vlan_RootPortAny{ +// RootPort returns from Stp_VlanPathAny the path struct for its child "root-port". +func (n *Stp_VlanPathAny) RootPort() *Stp_Vlan_RootPortPathAny { + return &Stp_Vlan_RootPortPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-port"}, map[string]interface{}{}, @@ -161626,9 +161653,9 @@ func (n *Stp_VlanAny) RootPort() *Stp_Vlan_RootPortAny { } } -// TopologyChanges returns from Stp_Vlan the path struct for its child "topology-changes". -func (n *Stp_Vlan) TopologyChanges() *Stp_Vlan_TopologyChanges { - return &Stp_Vlan_TopologyChanges{ +// TopologyChanges returns from Stp_VlanPath the path struct for its child "topology-changes". +func (n *Stp_VlanPath) TopologyChanges() *Stp_Vlan_TopologyChangesPath { + return &Stp_Vlan_TopologyChangesPath{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -161637,9 +161664,9 @@ func (n *Stp_Vlan) TopologyChanges() *Stp_Vlan_TopologyChanges { } } -// TopologyChanges returns from Stp_VlanAny the path struct for its child "topology-changes". -func (n *Stp_VlanAny) TopologyChanges() *Stp_Vlan_TopologyChangesAny { - return &Stp_Vlan_TopologyChangesAny{ +// TopologyChanges returns from Stp_VlanPathAny the path struct for its child "topology-changes". +func (n *Stp_VlanPathAny) TopologyChanges() *Stp_Vlan_TopologyChangesPathAny { + return &Stp_Vlan_TopologyChangesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "topology-changes"}, map[string]interface{}{}, @@ -161648,203 +161675,203 @@ func (n *Stp_VlanAny) TopologyChanges() *Stp_Vlan_TopologyChangesAny { } } -// VlanId returns from Stp_Vlan the path struct for its child "vlan-id". -func (n *Stp_Vlan) VlanId() *Stp_Vlan_VlanId { - return &Stp_Vlan_VlanId{ +// VlanId returns from Stp_VlanPath the path struct for its child "vlan-id". +func (n *Stp_VlanPath) VlanId() *Stp_Vlan_VlanIdPath { + return &Stp_Vlan_VlanIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// VlanId returns from Stp_VlanAny the path struct for its child "vlan-id". -func (n *Stp_VlanAny) VlanId() *Stp_Vlan_VlanIdAny { - return &Stp_Vlan_VlanIdAny{ +// VlanId returns from Stp_VlanPathAny the path struct for its child "vlan-id". +func (n *Stp_VlanPathAny) VlanId() *Stp_Vlan_VlanIdPathAny { + return &Stp_Vlan_VlanIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "vlan-id"}, + []string{"config", "vlan-id"}, map[string]interface{}{}, n, ), } } -// Stp_Vlan_Interface represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface YANG schema element. -type Stp_Vlan_Interface struct { +// Stp_Vlan_InterfacePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface YANG schema element. +type Stp_Vlan_InterfacePath struct { *ygot.NodePath } -// Stp_Vlan_InterfaceAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface YANG schema element. -type Stp_Vlan_InterfaceAny struct { +// Stp_Vlan_InterfacePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface YANG schema element. +type Stp_Vlan_InterfacePathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_Cost represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/cost YANG schema element. -type Stp_Vlan_Interface_Cost struct { +// Stp_Vlan_Interface_CostPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/cost YANG schema element. +type Stp_Vlan_Interface_CostPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_CostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/cost YANG schema element. -type Stp_Vlan_Interface_CostAny struct { +// Stp_Vlan_Interface_CostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/cost YANG schema element. +type Stp_Vlan_Interface_CostPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedBridgeAddress represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Vlan_Interface_DesignatedBridgeAddress struct { +// Stp_Vlan_Interface_DesignatedBridgeAddressPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Vlan_Interface_DesignatedBridgeAddressPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedBridgeAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-address YANG schema element. -type Stp_Vlan_Interface_DesignatedBridgeAddressAny struct { +// Stp_Vlan_Interface_DesignatedBridgeAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-address YANG schema element. +type Stp_Vlan_Interface_DesignatedBridgeAddressPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedBridgePriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedBridgePriority struct { +// Stp_Vlan_Interface_DesignatedBridgePriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedBridgePriorityPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedBridgePriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedBridgePriorityAny struct { +// Stp_Vlan_Interface_DesignatedBridgePriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-bridge-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedBridgePriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedCost represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Vlan_Interface_DesignatedCost struct { +// Stp_Vlan_Interface_DesignatedCostPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Vlan_Interface_DesignatedCostPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedCostAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-cost YANG schema element. -type Stp_Vlan_Interface_DesignatedCostAny struct { +// Stp_Vlan_Interface_DesignatedCostPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-cost YANG schema element. +type Stp_Vlan_Interface_DesignatedCostPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedPortNum represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Vlan_Interface_DesignatedPortNum struct { +// Stp_Vlan_Interface_DesignatedPortNumPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Vlan_Interface_DesignatedPortNumPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedPortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-num YANG schema element. -type Stp_Vlan_Interface_DesignatedPortNumAny struct { +// Stp_Vlan_Interface_DesignatedPortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-num YANG schema element. +type Stp_Vlan_Interface_DesignatedPortNumPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedPortPriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedPortPriority struct { +// Stp_Vlan_Interface_DesignatedPortPriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedPortPriorityPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedPortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedPortPriorityAny struct { +// Stp_Vlan_Interface_DesignatedPortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-port-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedPortPriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedRootAddress represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Vlan_Interface_DesignatedRootAddress struct { +// Stp_Vlan_Interface_DesignatedRootAddressPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Vlan_Interface_DesignatedRootAddressPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedRootAddressAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-address YANG schema element. -type Stp_Vlan_Interface_DesignatedRootAddressAny struct { +// Stp_Vlan_Interface_DesignatedRootAddressPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-address YANG schema element. +type Stp_Vlan_Interface_DesignatedRootAddressPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedRootPriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedRootPriority struct { +// Stp_Vlan_Interface_DesignatedRootPriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedRootPriorityPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_DesignatedRootPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-priority YANG schema element. -type Stp_Vlan_Interface_DesignatedRootPriorityAny struct { +// Stp_Vlan_Interface_DesignatedRootPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/designated-root-priority YANG schema element. +type Stp_Vlan_Interface_DesignatedRootPriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_ForwardTransisitions represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Vlan_Interface_ForwardTransisitions struct { +// Stp_Vlan_Interface_ForwardTransisitionsPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Vlan_Interface_ForwardTransisitionsPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_ForwardTransisitionsAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/forward-transisitions YANG schema element. -type Stp_Vlan_Interface_ForwardTransisitionsAny struct { +// Stp_Vlan_Interface_ForwardTransisitionsPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/forward-transisitions YANG schema element. +type Stp_Vlan_Interface_ForwardTransisitionsPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_Name represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/name YANG schema element. -type Stp_Vlan_Interface_Name struct { +// Stp_Vlan_Interface_NamePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/name YANG schema element. +type Stp_Vlan_Interface_NamePath struct { *ygot.NodePath } -// Stp_Vlan_Interface_NameAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/name YANG schema element. -type Stp_Vlan_Interface_NameAny struct { +// Stp_Vlan_Interface_NamePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/name YANG schema element. +type Stp_Vlan_Interface_NamePathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortNum represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-num YANG schema element. -type Stp_Vlan_Interface_PortNum struct { +// Stp_Vlan_Interface_PortNumPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-num YANG schema element. +type Stp_Vlan_Interface_PortNumPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortNumAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-num YANG schema element. -type Stp_Vlan_Interface_PortNumAny struct { +// Stp_Vlan_Interface_PortNumPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-num YANG schema element. +type Stp_Vlan_Interface_PortNumPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortPriority represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-priority YANG schema element. -type Stp_Vlan_Interface_PortPriority struct { +// Stp_Vlan_Interface_PortPriorityPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/port-priority YANG schema element. +type Stp_Vlan_Interface_PortPriorityPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortPriorityAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-priority YANG schema element. -type Stp_Vlan_Interface_PortPriorityAny struct { +// Stp_Vlan_Interface_PortPriorityPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/config/port-priority YANG schema element. +type Stp_Vlan_Interface_PortPriorityPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortState represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-state YANG schema element. -type Stp_Vlan_Interface_PortState struct { +// Stp_Vlan_Interface_PortStatePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-state YANG schema element. +type Stp_Vlan_Interface_PortStatePath struct { *ygot.NodePath } -// Stp_Vlan_Interface_PortStateAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-state YANG schema element. -type Stp_Vlan_Interface_PortStateAny struct { +// Stp_Vlan_Interface_PortStatePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/port-state YANG schema element. +type Stp_Vlan_Interface_PortStatePathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_Role represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/role YANG schema element. -type Stp_Vlan_Interface_Role struct { +// Stp_Vlan_Interface_RolePath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/role YANG schema element. +type Stp_Vlan_Interface_RolePath struct { *ygot.NodePath } -// Stp_Vlan_Interface_RoleAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/role YANG schema element. -type Stp_Vlan_Interface_RoleAny struct { +// Stp_Vlan_Interface_RolePathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/role YANG schema element. +type Stp_Vlan_Interface_RolePathAny struct { *ygot.NodePath } -// Cost returns from Stp_Vlan_Interface the path struct for its child "cost". -func (n *Stp_Vlan_Interface) Cost() *Stp_Vlan_Interface_Cost { - return &Stp_Vlan_Interface_Cost{ +// Cost returns from Stp_Vlan_InterfacePath the path struct for its child "cost". +func (n *Stp_Vlan_InterfacePath) Cost() *Stp_Vlan_Interface_CostPath { + return &Stp_Vlan_Interface_CostPath{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Cost returns from Stp_Vlan_InterfaceAny the path struct for its child "cost". -func (n *Stp_Vlan_InterfaceAny) Cost() *Stp_Vlan_Interface_CostAny { - return &Stp_Vlan_Interface_CostAny{ +// Cost returns from Stp_Vlan_InterfacePathAny the path struct for its child "cost". +func (n *Stp_Vlan_InterfacePathAny) Cost() *Stp_Vlan_Interface_CostPathAny { + return &Stp_Vlan_Interface_CostPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "cost"}, + []string{"config", "cost"}, map[string]interface{}{}, n, ), } } -// Counters returns from Stp_Vlan_Interface the path struct for its child "counters". -func (n *Stp_Vlan_Interface) Counters() *Stp_Vlan_Interface_Counters { - return &Stp_Vlan_Interface_Counters{ +// Counters returns from Stp_Vlan_InterfacePath the path struct for its child "counters". +func (n *Stp_Vlan_InterfacePath) Counters() *Stp_Vlan_Interface_CountersPath { + return &Stp_Vlan_Interface_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -161853,9 +161880,9 @@ func (n *Stp_Vlan_Interface) Counters() *Stp_Vlan_Interface_Counters { } } -// Counters returns from Stp_Vlan_InterfaceAny the path struct for its child "counters". -func (n *Stp_Vlan_InterfaceAny) Counters() *Stp_Vlan_Interface_CountersAny { - return &Stp_Vlan_Interface_CountersAny{ +// Counters returns from Stp_Vlan_InterfacePathAny the path struct for its child "counters". +func (n *Stp_Vlan_InterfacePathAny) Counters() *Stp_Vlan_Interface_CountersPathAny { + return &Stp_Vlan_Interface_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -161864,9 +161891,9 @@ func (n *Stp_Vlan_InterfaceAny) Counters() *Stp_Vlan_Interface_CountersAny { } } -// DesignatedBridgeAddress returns from Stp_Vlan_Interface the path struct for its child "designated-bridge-address". -func (n *Stp_Vlan_Interface) DesignatedBridgeAddress() *Stp_Vlan_Interface_DesignatedBridgeAddress { - return &Stp_Vlan_Interface_DesignatedBridgeAddress{ +// DesignatedBridgeAddress returns from Stp_Vlan_InterfacePath the path struct for its child "designated-bridge-address". +func (n *Stp_Vlan_InterfacePath) DesignatedBridgeAddress() *Stp_Vlan_Interface_DesignatedBridgeAddressPath { + return &Stp_Vlan_Interface_DesignatedBridgeAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -161875,9 +161902,9 @@ func (n *Stp_Vlan_Interface) DesignatedBridgeAddress() *Stp_Vlan_Interface_Desig } } -// DesignatedBridgeAddress returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-bridge-address". -func (n *Stp_Vlan_InterfaceAny) DesignatedBridgeAddress() *Stp_Vlan_Interface_DesignatedBridgeAddressAny { - return &Stp_Vlan_Interface_DesignatedBridgeAddressAny{ +// DesignatedBridgeAddress returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-bridge-address". +func (n *Stp_Vlan_InterfacePathAny) DesignatedBridgeAddress() *Stp_Vlan_Interface_DesignatedBridgeAddressPathAny { + return &Stp_Vlan_Interface_DesignatedBridgeAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-address"}, map[string]interface{}{}, @@ -161886,9 +161913,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedBridgeAddress() *Stp_Vlan_Interface_De } } -// DesignatedBridgePriority returns from Stp_Vlan_Interface the path struct for its child "designated-bridge-priority". -func (n *Stp_Vlan_Interface) DesignatedBridgePriority() *Stp_Vlan_Interface_DesignatedBridgePriority { - return &Stp_Vlan_Interface_DesignatedBridgePriority{ +// DesignatedBridgePriority returns from Stp_Vlan_InterfacePath the path struct for its child "designated-bridge-priority". +func (n *Stp_Vlan_InterfacePath) DesignatedBridgePriority() *Stp_Vlan_Interface_DesignatedBridgePriorityPath { + return &Stp_Vlan_Interface_DesignatedBridgePriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -161897,9 +161924,9 @@ func (n *Stp_Vlan_Interface) DesignatedBridgePriority() *Stp_Vlan_Interface_Desi } } -// DesignatedBridgePriority returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-bridge-priority". -func (n *Stp_Vlan_InterfaceAny) DesignatedBridgePriority() *Stp_Vlan_Interface_DesignatedBridgePriorityAny { - return &Stp_Vlan_Interface_DesignatedBridgePriorityAny{ +// DesignatedBridgePriority returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-bridge-priority". +func (n *Stp_Vlan_InterfacePathAny) DesignatedBridgePriority() *Stp_Vlan_Interface_DesignatedBridgePriorityPathAny { + return &Stp_Vlan_Interface_DesignatedBridgePriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-bridge-priority"}, map[string]interface{}{}, @@ -161908,9 +161935,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedBridgePriority() *Stp_Vlan_Interface_D } } -// DesignatedCost returns from Stp_Vlan_Interface the path struct for its child "designated-cost". -func (n *Stp_Vlan_Interface) DesignatedCost() *Stp_Vlan_Interface_DesignatedCost { - return &Stp_Vlan_Interface_DesignatedCost{ +// DesignatedCost returns from Stp_Vlan_InterfacePath the path struct for its child "designated-cost". +func (n *Stp_Vlan_InterfacePath) DesignatedCost() *Stp_Vlan_Interface_DesignatedCostPath { + return &Stp_Vlan_Interface_DesignatedCostPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -161919,9 +161946,9 @@ func (n *Stp_Vlan_Interface) DesignatedCost() *Stp_Vlan_Interface_DesignatedCost } } -// DesignatedCost returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-cost". -func (n *Stp_Vlan_InterfaceAny) DesignatedCost() *Stp_Vlan_Interface_DesignatedCostAny { - return &Stp_Vlan_Interface_DesignatedCostAny{ +// DesignatedCost returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-cost". +func (n *Stp_Vlan_InterfacePathAny) DesignatedCost() *Stp_Vlan_Interface_DesignatedCostPathAny { + return &Stp_Vlan_Interface_DesignatedCostPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-cost"}, map[string]interface{}{}, @@ -161930,9 +161957,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedCost() *Stp_Vlan_Interface_DesignatedC } } -// DesignatedPortNum returns from Stp_Vlan_Interface the path struct for its child "designated-port-num". -func (n *Stp_Vlan_Interface) DesignatedPortNum() *Stp_Vlan_Interface_DesignatedPortNum { - return &Stp_Vlan_Interface_DesignatedPortNum{ +// DesignatedPortNum returns from Stp_Vlan_InterfacePath the path struct for its child "designated-port-num". +func (n *Stp_Vlan_InterfacePath) DesignatedPortNum() *Stp_Vlan_Interface_DesignatedPortNumPath { + return &Stp_Vlan_Interface_DesignatedPortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -161941,9 +161968,9 @@ func (n *Stp_Vlan_Interface) DesignatedPortNum() *Stp_Vlan_Interface_DesignatedP } } -// DesignatedPortNum returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-port-num". -func (n *Stp_Vlan_InterfaceAny) DesignatedPortNum() *Stp_Vlan_Interface_DesignatedPortNumAny { - return &Stp_Vlan_Interface_DesignatedPortNumAny{ +// DesignatedPortNum returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-port-num". +func (n *Stp_Vlan_InterfacePathAny) DesignatedPortNum() *Stp_Vlan_Interface_DesignatedPortNumPathAny { + return &Stp_Vlan_Interface_DesignatedPortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-num"}, map[string]interface{}{}, @@ -161952,9 +161979,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedPortNum() *Stp_Vlan_Interface_Designat } } -// DesignatedPortPriority returns from Stp_Vlan_Interface the path struct for its child "designated-port-priority". -func (n *Stp_Vlan_Interface) DesignatedPortPriority() *Stp_Vlan_Interface_DesignatedPortPriority { - return &Stp_Vlan_Interface_DesignatedPortPriority{ +// DesignatedPortPriority returns from Stp_Vlan_InterfacePath the path struct for its child "designated-port-priority". +func (n *Stp_Vlan_InterfacePath) DesignatedPortPriority() *Stp_Vlan_Interface_DesignatedPortPriorityPath { + return &Stp_Vlan_Interface_DesignatedPortPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -161963,9 +161990,9 @@ func (n *Stp_Vlan_Interface) DesignatedPortPriority() *Stp_Vlan_Interface_Design } } -// DesignatedPortPriority returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-port-priority". -func (n *Stp_Vlan_InterfaceAny) DesignatedPortPriority() *Stp_Vlan_Interface_DesignatedPortPriorityAny { - return &Stp_Vlan_Interface_DesignatedPortPriorityAny{ +// DesignatedPortPriority returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-port-priority". +func (n *Stp_Vlan_InterfacePathAny) DesignatedPortPriority() *Stp_Vlan_Interface_DesignatedPortPriorityPathAny { + return &Stp_Vlan_Interface_DesignatedPortPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-port-priority"}, map[string]interface{}{}, @@ -161974,9 +162001,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedPortPriority() *Stp_Vlan_Interface_Des } } -// DesignatedRootAddress returns from Stp_Vlan_Interface the path struct for its child "designated-root-address". -func (n *Stp_Vlan_Interface) DesignatedRootAddress() *Stp_Vlan_Interface_DesignatedRootAddress { - return &Stp_Vlan_Interface_DesignatedRootAddress{ +// DesignatedRootAddress returns from Stp_Vlan_InterfacePath the path struct for its child "designated-root-address". +func (n *Stp_Vlan_InterfacePath) DesignatedRootAddress() *Stp_Vlan_Interface_DesignatedRootAddressPath { + return &Stp_Vlan_Interface_DesignatedRootAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -161985,9 +162012,9 @@ func (n *Stp_Vlan_Interface) DesignatedRootAddress() *Stp_Vlan_Interface_Designa } } -// DesignatedRootAddress returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-root-address". -func (n *Stp_Vlan_InterfaceAny) DesignatedRootAddress() *Stp_Vlan_Interface_DesignatedRootAddressAny { - return &Stp_Vlan_Interface_DesignatedRootAddressAny{ +// DesignatedRootAddress returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-root-address". +func (n *Stp_Vlan_InterfacePathAny) DesignatedRootAddress() *Stp_Vlan_Interface_DesignatedRootAddressPathAny { + return &Stp_Vlan_Interface_DesignatedRootAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-address"}, map[string]interface{}{}, @@ -161996,9 +162023,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedRootAddress() *Stp_Vlan_Interface_Desi } } -// DesignatedRootPriority returns from Stp_Vlan_Interface the path struct for its child "designated-root-priority". -func (n *Stp_Vlan_Interface) DesignatedRootPriority() *Stp_Vlan_Interface_DesignatedRootPriority { - return &Stp_Vlan_Interface_DesignatedRootPriority{ +// DesignatedRootPriority returns from Stp_Vlan_InterfacePath the path struct for its child "designated-root-priority". +func (n *Stp_Vlan_InterfacePath) DesignatedRootPriority() *Stp_Vlan_Interface_DesignatedRootPriorityPath { + return &Stp_Vlan_Interface_DesignatedRootPriorityPath{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -162007,9 +162034,9 @@ func (n *Stp_Vlan_Interface) DesignatedRootPriority() *Stp_Vlan_Interface_Design } } -// DesignatedRootPriority returns from Stp_Vlan_InterfaceAny the path struct for its child "designated-root-priority". -func (n *Stp_Vlan_InterfaceAny) DesignatedRootPriority() *Stp_Vlan_Interface_DesignatedRootPriorityAny { - return &Stp_Vlan_Interface_DesignatedRootPriorityAny{ +// DesignatedRootPriority returns from Stp_Vlan_InterfacePathAny the path struct for its child "designated-root-priority". +func (n *Stp_Vlan_InterfacePathAny) DesignatedRootPriority() *Stp_Vlan_Interface_DesignatedRootPriorityPathAny { + return &Stp_Vlan_Interface_DesignatedRootPriorityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "designated-root-priority"}, map[string]interface{}{}, @@ -162018,9 +162045,9 @@ func (n *Stp_Vlan_InterfaceAny) DesignatedRootPriority() *Stp_Vlan_Interface_Des } } -// ForwardTransisitions returns from Stp_Vlan_Interface the path struct for its child "forward-transisitions". -func (n *Stp_Vlan_Interface) ForwardTransisitions() *Stp_Vlan_Interface_ForwardTransisitions { - return &Stp_Vlan_Interface_ForwardTransisitions{ +// ForwardTransisitions returns from Stp_Vlan_InterfacePath the path struct for its child "forward-transisitions". +func (n *Stp_Vlan_InterfacePath) ForwardTransisitions() *Stp_Vlan_Interface_ForwardTransisitionsPath { + return &Stp_Vlan_Interface_ForwardTransisitionsPath{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -162029,9 +162056,9 @@ func (n *Stp_Vlan_Interface) ForwardTransisitions() *Stp_Vlan_Interface_ForwardT } } -// ForwardTransisitions returns from Stp_Vlan_InterfaceAny the path struct for its child "forward-transisitions". -func (n *Stp_Vlan_InterfaceAny) ForwardTransisitions() *Stp_Vlan_Interface_ForwardTransisitionsAny { - return &Stp_Vlan_Interface_ForwardTransisitionsAny{ +// ForwardTransisitions returns from Stp_Vlan_InterfacePathAny the path struct for its child "forward-transisitions". +func (n *Stp_Vlan_InterfacePathAny) ForwardTransisitions() *Stp_Vlan_Interface_ForwardTransisitionsPathAny { + return &Stp_Vlan_Interface_ForwardTransisitionsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "forward-transisitions"}, map[string]interface{}{}, @@ -162040,31 +162067,31 @@ func (n *Stp_Vlan_InterfaceAny) ForwardTransisitions() *Stp_Vlan_Interface_Forwa } } -// Name returns from Stp_Vlan_Interface the path struct for its child "name". -func (n *Stp_Vlan_Interface) Name() *Stp_Vlan_Interface_Name { - return &Stp_Vlan_Interface_Name{ +// Name returns from Stp_Vlan_InterfacePath the path struct for its child "name". +func (n *Stp_Vlan_InterfacePath) Name() *Stp_Vlan_Interface_NamePath { + return &Stp_Vlan_Interface_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from Stp_Vlan_InterfaceAny the path struct for its child "name". -func (n *Stp_Vlan_InterfaceAny) Name() *Stp_Vlan_Interface_NameAny { - return &Stp_Vlan_Interface_NameAny{ +// Name returns from Stp_Vlan_InterfacePathAny the path struct for its child "name". +func (n *Stp_Vlan_InterfacePathAny) Name() *Stp_Vlan_Interface_NamePathAny { + return &Stp_Vlan_Interface_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// PortNum returns from Stp_Vlan_Interface the path struct for its child "port-num". -func (n *Stp_Vlan_Interface) PortNum() *Stp_Vlan_Interface_PortNum { - return &Stp_Vlan_Interface_PortNum{ +// PortNum returns from Stp_Vlan_InterfacePath the path struct for its child "port-num". +func (n *Stp_Vlan_InterfacePath) PortNum() *Stp_Vlan_Interface_PortNumPath { + return &Stp_Vlan_Interface_PortNumPath{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -162073,9 +162100,9 @@ func (n *Stp_Vlan_Interface) PortNum() *Stp_Vlan_Interface_PortNum { } } -// PortNum returns from Stp_Vlan_InterfaceAny the path struct for its child "port-num". -func (n *Stp_Vlan_InterfaceAny) PortNum() *Stp_Vlan_Interface_PortNumAny { - return &Stp_Vlan_Interface_PortNumAny{ +// PortNum returns from Stp_Vlan_InterfacePathAny the path struct for its child "port-num". +func (n *Stp_Vlan_InterfacePathAny) PortNum() *Stp_Vlan_Interface_PortNumPathAny { + return &Stp_Vlan_Interface_PortNumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-num"}, map[string]interface{}{}, @@ -162084,31 +162111,31 @@ func (n *Stp_Vlan_InterfaceAny) PortNum() *Stp_Vlan_Interface_PortNumAny { } } -// PortPriority returns from Stp_Vlan_Interface the path struct for its child "port-priority". -func (n *Stp_Vlan_Interface) PortPriority() *Stp_Vlan_Interface_PortPriority { - return &Stp_Vlan_Interface_PortPriority{ +// PortPriority returns from Stp_Vlan_InterfacePath the path struct for its child "port-priority". +func (n *Stp_Vlan_InterfacePath) PortPriority() *Stp_Vlan_Interface_PortPriorityPath { + return &Stp_Vlan_Interface_PortPriorityPath{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortPriority returns from Stp_Vlan_InterfaceAny the path struct for its child "port-priority". -func (n *Stp_Vlan_InterfaceAny) PortPriority() *Stp_Vlan_Interface_PortPriorityAny { - return &Stp_Vlan_Interface_PortPriorityAny{ +// PortPriority returns from Stp_Vlan_InterfacePathAny the path struct for its child "port-priority". +func (n *Stp_Vlan_InterfacePathAny) PortPriority() *Stp_Vlan_Interface_PortPriorityPathAny { + return &Stp_Vlan_Interface_PortPriorityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port-priority"}, + []string{"config", "port-priority"}, map[string]interface{}{}, n, ), } } -// PortState returns from Stp_Vlan_Interface the path struct for its child "port-state". -func (n *Stp_Vlan_Interface) PortState() *Stp_Vlan_Interface_PortState { - return &Stp_Vlan_Interface_PortState{ +// PortState returns from Stp_Vlan_InterfacePath the path struct for its child "port-state". +func (n *Stp_Vlan_InterfacePath) PortState() *Stp_Vlan_Interface_PortStatePath { + return &Stp_Vlan_Interface_PortStatePath{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -162117,9 +162144,9 @@ func (n *Stp_Vlan_Interface) PortState() *Stp_Vlan_Interface_PortState { } } -// PortState returns from Stp_Vlan_InterfaceAny the path struct for its child "port-state". -func (n *Stp_Vlan_InterfaceAny) PortState() *Stp_Vlan_Interface_PortStateAny { - return &Stp_Vlan_Interface_PortStateAny{ +// PortState returns from Stp_Vlan_InterfacePathAny the path struct for its child "port-state". +func (n *Stp_Vlan_InterfacePathAny) PortState() *Stp_Vlan_Interface_PortStatePathAny { + return &Stp_Vlan_Interface_PortStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-state"}, map[string]interface{}{}, @@ -162128,9 +162155,9 @@ func (n *Stp_Vlan_InterfaceAny) PortState() *Stp_Vlan_Interface_PortStateAny { } } -// Role returns from Stp_Vlan_Interface the path struct for its child "role". -func (n *Stp_Vlan_Interface) Role() *Stp_Vlan_Interface_Role { - return &Stp_Vlan_Interface_Role{ +// Role returns from Stp_Vlan_InterfacePath the path struct for its child "role". +func (n *Stp_Vlan_InterfacePath) Role() *Stp_Vlan_Interface_RolePath { + return &Stp_Vlan_Interface_RolePath{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -162139,9 +162166,9 @@ func (n *Stp_Vlan_Interface) Role() *Stp_Vlan_Interface_Role { } } -// Role returns from Stp_Vlan_InterfaceAny the path struct for its child "role". -func (n *Stp_Vlan_InterfaceAny) Role() *Stp_Vlan_Interface_RoleAny { - return &Stp_Vlan_Interface_RoleAny{ +// Role returns from Stp_Vlan_InterfacePathAny the path struct for its child "role". +func (n *Stp_Vlan_InterfacePathAny) Role() *Stp_Vlan_Interface_RolePathAny { + return &Stp_Vlan_Interface_RolePathAny{ NodePath: ygot.NewNodePath( []string{"state", "role"}, map[string]interface{}{}, @@ -162150,39 +162177,39 @@ func (n *Stp_Vlan_InterfaceAny) Role() *Stp_Vlan_Interface_RoleAny { } } -// Stp_Vlan_Interface_Counters represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters YANG schema element. -type Stp_Vlan_Interface_Counters struct { +// Stp_Vlan_Interface_CountersPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters YANG schema element. +type Stp_Vlan_Interface_CountersPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_CountersAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters YANG schema element. -type Stp_Vlan_Interface_CountersAny struct { +// Stp_Vlan_Interface_CountersPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters YANG schema element. +type Stp_Vlan_Interface_CountersPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_Counters_BpduReceived represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Vlan_Interface_Counters_BpduReceived struct { +// Stp_Vlan_Interface_Counters_BpduReceivedPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Vlan_Interface_Counters_BpduReceivedPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_Counters_BpduReceivedAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-received YANG schema element. -type Stp_Vlan_Interface_Counters_BpduReceivedAny struct { +// Stp_Vlan_Interface_Counters_BpduReceivedPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-received YANG schema element. +type Stp_Vlan_Interface_Counters_BpduReceivedPathAny struct { *ygot.NodePath } -// Stp_Vlan_Interface_Counters_BpduSent represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Vlan_Interface_Counters_BpduSent struct { +// Stp_Vlan_Interface_Counters_BpduSentPath represents the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Vlan_Interface_Counters_BpduSentPath struct { *ygot.NodePath } -// Stp_Vlan_Interface_Counters_BpduSentAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-sent YANG schema element. -type Stp_Vlan_Interface_Counters_BpduSentAny struct { +// Stp_Vlan_Interface_Counters_BpduSentPathAny represents the wildcard version of the /openconfig-spanning-tree/stp/rapid-pvst/vlan/interfaces/interface/state/counters/bpdu-sent YANG schema element. +type Stp_Vlan_Interface_Counters_BpduSentPathAny struct { *ygot.NodePath } -// BpduReceived returns from Stp_Vlan_Interface_Counters the path struct for its child "bpdu-received". -func (n *Stp_Vlan_Interface_Counters) BpduReceived() *Stp_Vlan_Interface_Counters_BpduReceived { - return &Stp_Vlan_Interface_Counters_BpduReceived{ +// BpduReceived returns from Stp_Vlan_Interface_CountersPath the path struct for its child "bpdu-received". +func (n *Stp_Vlan_Interface_CountersPath) BpduReceived() *Stp_Vlan_Interface_Counters_BpduReceivedPath { + return &Stp_Vlan_Interface_Counters_BpduReceivedPath{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -162191,9 +162218,9 @@ func (n *Stp_Vlan_Interface_Counters) BpduReceived() *Stp_Vlan_Interface_Counter } } -// BpduReceived returns from Stp_Vlan_Interface_CountersAny the path struct for its child "bpdu-received". -func (n *Stp_Vlan_Interface_CountersAny) BpduReceived() *Stp_Vlan_Interface_Counters_BpduReceivedAny { - return &Stp_Vlan_Interface_Counters_BpduReceivedAny{ +// BpduReceived returns from Stp_Vlan_Interface_CountersPathAny the path struct for its child "bpdu-received". +func (n *Stp_Vlan_Interface_CountersPathAny) BpduReceived() *Stp_Vlan_Interface_Counters_BpduReceivedPathAny { + return &Stp_Vlan_Interface_Counters_BpduReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-received"}, map[string]interface{}{}, @@ -162202,9 +162229,9 @@ func (n *Stp_Vlan_Interface_CountersAny) BpduReceived() *Stp_Vlan_Interface_Coun } } -// BpduSent returns from Stp_Vlan_Interface_Counters the path struct for its child "bpdu-sent". -func (n *Stp_Vlan_Interface_Counters) BpduSent() *Stp_Vlan_Interface_Counters_BpduSent { - return &Stp_Vlan_Interface_Counters_BpduSent{ +// BpduSent returns from Stp_Vlan_Interface_CountersPath the path struct for its child "bpdu-sent". +func (n *Stp_Vlan_Interface_CountersPath) BpduSent() *Stp_Vlan_Interface_Counters_BpduSentPath { + return &Stp_Vlan_Interface_Counters_BpduSentPath{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -162213,9 +162240,9 @@ func (n *Stp_Vlan_Interface_Counters) BpduSent() *Stp_Vlan_Interface_Counters_Bp } } -// BpduSent returns from Stp_Vlan_Interface_CountersAny the path struct for its child "bpdu-sent". -func (n *Stp_Vlan_Interface_CountersAny) BpduSent() *Stp_Vlan_Interface_Counters_BpduSentAny { - return &Stp_Vlan_Interface_Counters_BpduSentAny{ +// BpduSent returns from Stp_Vlan_Interface_CountersPathAny the path struct for its child "bpdu-sent". +func (n *Stp_Vlan_Interface_CountersPathAny) BpduSent() *Stp_Vlan_Interface_Counters_BpduSentPathAny { + return &Stp_Vlan_Interface_Counters_BpduSentPathAny{ NodePath: ygot.NewNodePath( []string{"bpdu-sent"}, map[string]interface{}{}, @@ -162224,79 +162251,79 @@ func (n *Stp_Vlan_Interface_CountersAny) BpduSent() *Stp_Vlan_Interface_Counters } } -// System represents the /openconfig-system/system YANG schema element. -type System struct { +// SystemPath represents the /openconfig-system/system YANG schema element. +type SystemPath struct { *ygot.NodePath } -// SystemAny represents the wildcard version of the /openconfig-system/system YANG schema element. -type SystemAny struct { +// SystemPathAny represents the wildcard version of the /openconfig-system/system YANG schema element. +type SystemPathAny struct { *ygot.NodePath } -// System_BootTime represents the /openconfig-system/system/state/boot-time YANG schema element. -type System_BootTime struct { +// System_BootTimePath represents the /openconfig-system/system/state/boot-time YANG schema element. +type System_BootTimePath struct { *ygot.NodePath } -// System_BootTimeAny represents the wildcard version of the /openconfig-system/system/state/boot-time YANG schema element. -type System_BootTimeAny struct { +// System_BootTimePathAny represents the wildcard version of the /openconfig-system/system/state/boot-time YANG schema element. +type System_BootTimePathAny struct { *ygot.NodePath } -// System_CurrentDatetime represents the /openconfig-system/system/state/current-datetime YANG schema element. -type System_CurrentDatetime struct { +// System_CurrentDatetimePath represents the /openconfig-system/system/state/current-datetime YANG schema element. +type System_CurrentDatetimePath struct { *ygot.NodePath } -// System_CurrentDatetimeAny represents the wildcard version of the /openconfig-system/system/state/current-datetime YANG schema element. -type System_CurrentDatetimeAny struct { +// System_CurrentDatetimePathAny represents the wildcard version of the /openconfig-system/system/state/current-datetime YANG schema element. +type System_CurrentDatetimePathAny struct { *ygot.NodePath } -// System_DomainName represents the /openconfig-system/system/state/domain-name YANG schema element. -type System_DomainName struct { +// System_DomainNamePath represents the /openconfig-system/system/config/domain-name YANG schema element. +type System_DomainNamePath struct { *ygot.NodePath } -// System_DomainNameAny represents the wildcard version of the /openconfig-system/system/state/domain-name YANG schema element. -type System_DomainNameAny struct { +// System_DomainNamePathAny represents the wildcard version of the /openconfig-system/system/config/domain-name YANG schema element. +type System_DomainNamePathAny struct { *ygot.NodePath } -// System_Hostname represents the /openconfig-system/system/state/hostname YANG schema element. -type System_Hostname struct { +// System_HostnamePath represents the /openconfig-system/system/config/hostname YANG schema element. +type System_HostnamePath struct { *ygot.NodePath } -// System_HostnameAny represents the wildcard version of the /openconfig-system/system/state/hostname YANG schema element. -type System_HostnameAny struct { +// System_HostnamePathAny represents the wildcard version of the /openconfig-system/system/config/hostname YANG schema element. +type System_HostnamePathAny struct { *ygot.NodePath } -// System_LoginBanner represents the /openconfig-system/system/state/login-banner YANG schema element. -type System_LoginBanner struct { +// System_LoginBannerPath represents the /openconfig-system/system/config/login-banner YANG schema element. +type System_LoginBannerPath struct { *ygot.NodePath } -// System_LoginBannerAny represents the wildcard version of the /openconfig-system/system/state/login-banner YANG schema element. -type System_LoginBannerAny struct { +// System_LoginBannerPathAny represents the wildcard version of the /openconfig-system/system/config/login-banner YANG schema element. +type System_LoginBannerPathAny struct { *ygot.NodePath } -// System_MotdBanner represents the /openconfig-system/system/state/motd-banner YANG schema element. -type System_MotdBanner struct { +// System_MotdBannerPath represents the /openconfig-system/system/config/motd-banner YANG schema element. +type System_MotdBannerPath struct { *ygot.NodePath } -// System_MotdBannerAny represents the wildcard version of the /openconfig-system/system/state/motd-banner YANG schema element. -type System_MotdBannerAny struct { +// System_MotdBannerPathAny represents the wildcard version of the /openconfig-system/system/config/motd-banner YANG schema element. +type System_MotdBannerPathAny struct { *ygot.NodePath } -// Aaa returns from System the path struct for its child "aaa". -func (n *System) Aaa() *System_Aaa { - return &System_Aaa{ +// Aaa returns from SystemPath the path struct for its child "aaa". +func (n *SystemPath) Aaa() *System_AaaPath { + return &System_AaaPath{ NodePath: ygot.NewNodePath( []string{"aaa"}, map[string]interface{}{}, @@ -162305,9 +162332,9 @@ func (n *System) Aaa() *System_Aaa { } } -// Aaa returns from SystemAny the path struct for its child "aaa". -func (n *SystemAny) Aaa() *System_AaaAny { - return &System_AaaAny{ +// Aaa returns from SystemPathAny the path struct for its child "aaa". +func (n *SystemPathAny) Aaa() *System_AaaPathAny { + return &System_AaaPathAny{ NodePath: ygot.NewNodePath( []string{"aaa"}, map[string]interface{}{}, @@ -162316,9 +162343,9 @@ func (n *SystemAny) Aaa() *System_AaaAny { } } -// AlarmAny returns from System the path struct for its child "alarm". -func (n *System) AlarmAny() *System_AlarmAny { - return &System_AlarmAny{ +// AlarmAny returns from SystemPath the path struct for its child "alarm". +func (n *SystemPath) AlarmAny() *System_AlarmPathAny { + return &System_AlarmPathAny{ NodePath: ygot.NewNodePath( []string{"alarms", "alarm"}, map[string]interface{}{"id": "*"}, @@ -162327,9 +162354,9 @@ func (n *System) AlarmAny() *System_AlarmAny { } } -// AlarmAny returns from SystemAny the path struct for its child "alarm". -func (n *SystemAny) AlarmAny() *System_AlarmAny { - return &System_AlarmAny{ +// AlarmAny returns from SystemPathAny the path struct for its child "alarm". +func (n *SystemPathAny) AlarmAny() *System_AlarmPathAny { + return &System_AlarmPathAny{ NodePath: ygot.NewNodePath( []string{"alarms", "alarm"}, map[string]interface{}{"id": "*"}, @@ -162338,9 +162365,9 @@ func (n *SystemAny) AlarmAny() *System_AlarmAny { } } -// Alarm returns from System the path struct for its child "alarm". -func (n *System) Alarm(Id string) *System_Alarm { - return &System_Alarm{ +// Alarm returns from SystemPath the path struct for its child "alarm". +func (n *SystemPath) Alarm(Id string) *System_AlarmPath { + return &System_AlarmPath{ NodePath: ygot.NewNodePath( []string{"alarms", "alarm"}, map[string]interface{}{"id": Id}, @@ -162349,9 +162376,9 @@ func (n *System) Alarm(Id string) *System_Alarm { } } -// Alarm returns from SystemAny the path struct for its child "alarm". -func (n *SystemAny) Alarm(Id string) *System_AlarmAny { - return &System_AlarmAny{ +// Alarm returns from SystemPathAny the path struct for its child "alarm". +func (n *SystemPathAny) Alarm(Id string) *System_AlarmPathAny { + return &System_AlarmPathAny{ NodePath: ygot.NewNodePath( []string{"alarms", "alarm"}, map[string]interface{}{"id": Id}, @@ -162360,9 +162387,9 @@ func (n *SystemAny) Alarm(Id string) *System_AlarmAny { } } -// BootTime returns from System the path struct for its child "boot-time". -func (n *System) BootTime() *System_BootTime { - return &System_BootTime{ +// BootTime returns from SystemPath the path struct for its child "boot-time". +func (n *SystemPath) BootTime() *System_BootTimePath { + return &System_BootTimePath{ NodePath: ygot.NewNodePath( []string{"state", "boot-time"}, map[string]interface{}{}, @@ -162371,9 +162398,9 @@ func (n *System) BootTime() *System_BootTime { } } -// BootTime returns from SystemAny the path struct for its child "boot-time". -func (n *SystemAny) BootTime() *System_BootTimeAny { - return &System_BootTimeAny{ +// BootTime returns from SystemPathAny the path struct for its child "boot-time". +func (n *SystemPathAny) BootTime() *System_BootTimePathAny { + return &System_BootTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "boot-time"}, map[string]interface{}{}, @@ -162382,9 +162409,9 @@ func (n *SystemAny) BootTime() *System_BootTimeAny { } } -// Clock returns from System the path struct for its child "clock". -func (n *System) Clock() *System_Clock { - return &System_Clock{ +// Clock returns from SystemPath the path struct for its child "clock". +func (n *SystemPath) Clock() *System_ClockPath { + return &System_ClockPath{ NodePath: ygot.NewNodePath( []string{"clock"}, map[string]interface{}{}, @@ -162393,9 +162420,9 @@ func (n *System) Clock() *System_Clock { } } -// Clock returns from SystemAny the path struct for its child "clock". -func (n *SystemAny) Clock() *System_ClockAny { - return &System_ClockAny{ +// Clock returns from SystemPathAny the path struct for its child "clock". +func (n *SystemPathAny) Clock() *System_ClockPathAny { + return &System_ClockPathAny{ NodePath: ygot.NewNodePath( []string{"clock"}, map[string]interface{}{}, @@ -162404,9 +162431,9 @@ func (n *SystemAny) Clock() *System_ClockAny { } } -// CpuAny returns from System the path struct for its child "cpu". -func (n *System) CpuAny() *System_CpuAny { - return &System_CpuAny{ +// CpuAny returns from SystemPath the path struct for its child "cpu". +func (n *SystemPath) CpuAny() *System_CpuPathAny { + return &System_CpuPathAny{ NodePath: ygot.NewNodePath( []string{"cpus", "cpu"}, map[string]interface{}{"index": "*"}, @@ -162415,9 +162442,9 @@ func (n *System) CpuAny() *System_CpuAny { } } -// CpuAny returns from SystemAny the path struct for its child "cpu". -func (n *SystemAny) CpuAny() *System_CpuAny { - return &System_CpuAny{ +// CpuAny returns from SystemPathAny the path struct for its child "cpu". +func (n *SystemPathAny) CpuAny() *System_CpuPathAny { + return &System_CpuPathAny{ NodePath: ygot.NewNodePath( []string{"cpus", "cpu"}, map[string]interface{}{"index": "*"}, @@ -162426,9 +162453,9 @@ func (n *SystemAny) CpuAny() *System_CpuAny { } } -// Cpu returns from System the path struct for its child "cpu". -func (n *System) Cpu(Index oc.System_Cpu_Index_Union) *System_Cpu { - return &System_Cpu{ +// Cpu returns from SystemPath the path struct for its child "cpu". +func (n *SystemPath) Cpu(Index System_Cpu_Index_Union) *System_CpuPath { + return &System_CpuPath{ NodePath: ygot.NewNodePath( []string{"cpus", "cpu"}, map[string]interface{}{"index": Index}, @@ -162437,9 +162464,9 @@ func (n *System) Cpu(Index oc.System_Cpu_Index_Union) *System_Cpu { } } -// Cpu returns from SystemAny the path struct for its child "cpu". -func (n *SystemAny) Cpu(Index oc.System_Cpu_Index_Union) *System_CpuAny { - return &System_CpuAny{ +// Cpu returns from SystemPathAny the path struct for its child "cpu". +func (n *SystemPathAny) Cpu(Index System_Cpu_Index_Union) *System_CpuPathAny { + return &System_CpuPathAny{ NodePath: ygot.NewNodePath( []string{"cpus", "cpu"}, map[string]interface{}{"index": Index}, @@ -162448,9 +162475,9 @@ func (n *SystemAny) Cpu(Index oc.System_Cpu_Index_Union) *System_CpuAny { } } -// CurrentDatetime returns from System the path struct for its child "current-datetime". -func (n *System) CurrentDatetime() *System_CurrentDatetime { - return &System_CurrentDatetime{ +// CurrentDatetime returns from SystemPath the path struct for its child "current-datetime". +func (n *SystemPath) CurrentDatetime() *System_CurrentDatetimePath { + return &System_CurrentDatetimePath{ NodePath: ygot.NewNodePath( []string{"state", "current-datetime"}, map[string]interface{}{}, @@ -162459,9 +162486,9 @@ func (n *System) CurrentDatetime() *System_CurrentDatetime { } } -// CurrentDatetime returns from SystemAny the path struct for its child "current-datetime". -func (n *SystemAny) CurrentDatetime() *System_CurrentDatetimeAny { - return &System_CurrentDatetimeAny{ +// CurrentDatetime returns from SystemPathAny the path struct for its child "current-datetime". +func (n *SystemPathAny) CurrentDatetime() *System_CurrentDatetimePathAny { + return &System_CurrentDatetimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "current-datetime"}, map[string]interface{}{}, @@ -162470,9 +162497,9 @@ func (n *SystemAny) CurrentDatetime() *System_CurrentDatetimeAny { } } -// Dns returns from System the path struct for its child "dns". -func (n *System) Dns() *System_Dns { - return &System_Dns{ +// Dns returns from SystemPath the path struct for its child "dns". +func (n *SystemPath) Dns() *System_DnsPath { + return &System_DnsPath{ NodePath: ygot.NewNodePath( []string{"dns"}, map[string]interface{}{}, @@ -162481,9 +162508,9 @@ func (n *System) Dns() *System_Dns { } } -// Dns returns from SystemAny the path struct for its child "dns". -func (n *SystemAny) Dns() *System_DnsAny { - return &System_DnsAny{ +// Dns returns from SystemPathAny the path struct for its child "dns". +func (n *SystemPathAny) Dns() *System_DnsPathAny { + return &System_DnsPathAny{ NodePath: ygot.NewNodePath( []string{"dns"}, map[string]interface{}{}, @@ -162492,31 +162519,31 @@ func (n *SystemAny) Dns() *System_DnsAny { } } -// DomainName returns from System the path struct for its child "domain-name". -func (n *System) DomainName() *System_DomainName { - return &System_DomainName{ +// DomainName returns from SystemPath the path struct for its child "domain-name". +func (n *SystemPath) DomainName() *System_DomainNamePath { + return &System_DomainNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "domain-name"}, + []string{"config", "domain-name"}, map[string]interface{}{}, n, ), } } -// DomainName returns from SystemAny the path struct for its child "domain-name". -func (n *SystemAny) DomainName() *System_DomainNameAny { - return &System_DomainNameAny{ +// DomainName returns from SystemPathAny the path struct for its child "domain-name". +func (n *SystemPathAny) DomainName() *System_DomainNamePathAny { + return &System_DomainNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "domain-name"}, + []string{"config", "domain-name"}, map[string]interface{}{}, n, ), } } -// GrpcServer returns from System the path struct for its child "grpc-server". -func (n *System) GrpcServer() *System_GrpcServer { - return &System_GrpcServer{ +// GrpcServer returns from SystemPath the path struct for its child "grpc-server". +func (n *SystemPath) GrpcServer() *System_GrpcServerPath { + return &System_GrpcServerPath{ NodePath: ygot.NewNodePath( []string{"grpc-server"}, map[string]interface{}{}, @@ -162525,9 +162552,9 @@ func (n *System) GrpcServer() *System_GrpcServer { } } -// GrpcServer returns from SystemAny the path struct for its child "grpc-server". -func (n *SystemAny) GrpcServer() *System_GrpcServerAny { - return &System_GrpcServerAny{ +// GrpcServer returns from SystemPathAny the path struct for its child "grpc-server". +func (n *SystemPathAny) GrpcServer() *System_GrpcServerPathAny { + return &System_GrpcServerPathAny{ NodePath: ygot.NewNodePath( []string{"grpc-server"}, map[string]interface{}{}, @@ -162536,31 +162563,31 @@ func (n *SystemAny) GrpcServer() *System_GrpcServerAny { } } -// Hostname returns from System the path struct for its child "hostname". -func (n *System) Hostname() *System_Hostname { - return &System_Hostname{ +// Hostname returns from SystemPath the path struct for its child "hostname". +func (n *SystemPath) Hostname() *System_HostnamePath { + return &System_HostnamePath{ NodePath: ygot.NewNodePath( - []string{"state", "hostname"}, + []string{"config", "hostname"}, map[string]interface{}{}, n, ), } } -// Hostname returns from SystemAny the path struct for its child "hostname". -func (n *SystemAny) Hostname() *System_HostnameAny { - return &System_HostnameAny{ +// Hostname returns from SystemPathAny the path struct for its child "hostname". +func (n *SystemPathAny) Hostname() *System_HostnamePathAny { + return &System_HostnamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hostname"}, + []string{"config", "hostname"}, map[string]interface{}{}, n, ), } } -// License returns from System the path struct for its child "license". -func (n *System) License() *System_License { - return &System_License{ +// License returns from SystemPath the path struct for its child "license". +func (n *SystemPath) License() *System_LicensePath { + return &System_LicensePath{ NodePath: ygot.NewNodePath( []string{"license"}, map[string]interface{}{}, @@ -162569,9 +162596,9 @@ func (n *System) License() *System_License { } } -// License returns from SystemAny the path struct for its child "license". -func (n *SystemAny) License() *System_LicenseAny { - return &System_LicenseAny{ +// License returns from SystemPathAny the path struct for its child "license". +func (n *SystemPathAny) License() *System_LicensePathAny { + return &System_LicensePathAny{ NodePath: ygot.NewNodePath( []string{"license"}, map[string]interface{}{}, @@ -162580,9 +162607,9 @@ func (n *SystemAny) License() *System_LicenseAny { } } -// Logging returns from System the path struct for its child "logging". -func (n *System) Logging() *System_Logging { - return &System_Logging{ +// Logging returns from SystemPath the path struct for its child "logging". +func (n *SystemPath) Logging() *System_LoggingPath { + return &System_LoggingPath{ NodePath: ygot.NewNodePath( []string{"logging"}, map[string]interface{}{}, @@ -162591,9 +162618,9 @@ func (n *System) Logging() *System_Logging { } } -// Logging returns from SystemAny the path struct for its child "logging". -func (n *SystemAny) Logging() *System_LoggingAny { - return &System_LoggingAny{ +// Logging returns from SystemPathAny the path struct for its child "logging". +func (n *SystemPathAny) Logging() *System_LoggingPathAny { + return &System_LoggingPathAny{ NodePath: ygot.NewNodePath( []string{"logging"}, map[string]interface{}{}, @@ -162602,31 +162629,31 @@ func (n *SystemAny) Logging() *System_LoggingAny { } } -// LoginBanner returns from System the path struct for its child "login-banner". -func (n *System) LoginBanner() *System_LoginBanner { - return &System_LoginBanner{ +// LoginBanner returns from SystemPath the path struct for its child "login-banner". +func (n *SystemPath) LoginBanner() *System_LoginBannerPath { + return &System_LoginBannerPath{ NodePath: ygot.NewNodePath( - []string{"state", "login-banner"}, + []string{"config", "login-banner"}, map[string]interface{}{}, n, ), } } -// LoginBanner returns from SystemAny the path struct for its child "login-banner". -func (n *SystemAny) LoginBanner() *System_LoginBannerAny { - return &System_LoginBannerAny{ +// LoginBanner returns from SystemPathAny the path struct for its child "login-banner". +func (n *SystemPathAny) LoginBanner() *System_LoginBannerPathAny { + return &System_LoginBannerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "login-banner"}, + []string{"config", "login-banner"}, map[string]interface{}{}, n, ), } } -// Memory returns from System the path struct for its child "memory". -func (n *System) Memory() *System_Memory { - return &System_Memory{ +// Memory returns from SystemPath the path struct for its child "memory". +func (n *SystemPath) Memory() *System_MemoryPath { + return &System_MemoryPath{ NodePath: ygot.NewNodePath( []string{"memory"}, map[string]interface{}{}, @@ -162635,9 +162662,9 @@ func (n *System) Memory() *System_Memory { } } -// Memory returns from SystemAny the path struct for its child "memory". -func (n *SystemAny) Memory() *System_MemoryAny { - return &System_MemoryAny{ +// Memory returns from SystemPathAny the path struct for its child "memory". +func (n *SystemPathAny) Memory() *System_MemoryPathAny { + return &System_MemoryPathAny{ NodePath: ygot.NewNodePath( []string{"memory"}, map[string]interface{}{}, @@ -162646,9 +162673,9 @@ func (n *SystemAny) Memory() *System_MemoryAny { } } -// Messages returns from System the path struct for its child "messages". -func (n *System) Messages() *System_Messages { - return &System_Messages{ +// Messages returns from SystemPath the path struct for its child "messages". +func (n *SystemPath) Messages() *System_MessagesPath { + return &System_MessagesPath{ NodePath: ygot.NewNodePath( []string{"messages"}, map[string]interface{}{}, @@ -162657,9 +162684,9 @@ func (n *System) Messages() *System_Messages { } } -// Messages returns from SystemAny the path struct for its child "messages". -func (n *SystemAny) Messages() *System_MessagesAny { - return &System_MessagesAny{ +// Messages returns from SystemPathAny the path struct for its child "messages". +func (n *SystemPathAny) Messages() *System_MessagesPathAny { + return &System_MessagesPathAny{ NodePath: ygot.NewNodePath( []string{"messages"}, map[string]interface{}{}, @@ -162668,31 +162695,31 @@ func (n *SystemAny) Messages() *System_MessagesAny { } } -// MotdBanner returns from System the path struct for its child "motd-banner". -func (n *System) MotdBanner() *System_MotdBanner { - return &System_MotdBanner{ +// MotdBanner returns from SystemPath the path struct for its child "motd-banner". +func (n *SystemPath) MotdBanner() *System_MotdBannerPath { + return &System_MotdBannerPath{ NodePath: ygot.NewNodePath( - []string{"state", "motd-banner"}, + []string{"config", "motd-banner"}, map[string]interface{}{}, n, ), } } -// MotdBanner returns from SystemAny the path struct for its child "motd-banner". -func (n *SystemAny) MotdBanner() *System_MotdBannerAny { - return &System_MotdBannerAny{ +// MotdBanner returns from SystemPathAny the path struct for its child "motd-banner". +func (n *SystemPathAny) MotdBanner() *System_MotdBannerPathAny { + return &System_MotdBannerPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "motd-banner"}, + []string{"config", "motd-banner"}, map[string]interface{}{}, n, ), } } -// Ntp returns from System the path struct for its child "ntp". -func (n *System) Ntp() *System_Ntp { - return &System_Ntp{ +// Ntp returns from SystemPath the path struct for its child "ntp". +func (n *SystemPath) Ntp() *System_NtpPath { + return &System_NtpPath{ NodePath: ygot.NewNodePath( []string{"ntp"}, map[string]interface{}{}, @@ -162701,9 +162728,9 @@ func (n *System) Ntp() *System_Ntp { } } -// Ntp returns from SystemAny the path struct for its child "ntp". -func (n *SystemAny) Ntp() *System_NtpAny { - return &System_NtpAny{ +// Ntp returns from SystemPathAny the path struct for its child "ntp". +func (n *SystemPathAny) Ntp() *System_NtpPathAny { + return &System_NtpPathAny{ NodePath: ygot.NewNodePath( []string{"ntp"}, map[string]interface{}{}, @@ -162712,9 +162739,9 @@ func (n *SystemAny) Ntp() *System_NtpAny { } } -// ProcessAny returns from System the path struct for its child "process". -func (n *System) ProcessAny() *System_ProcessAny { - return &System_ProcessAny{ +// ProcessAny returns from SystemPath the path struct for its child "process". +func (n *SystemPath) ProcessAny() *System_ProcessPathAny { + return &System_ProcessPathAny{ NodePath: ygot.NewNodePath( []string{"processes", "process"}, map[string]interface{}{"pid": "*"}, @@ -162723,9 +162750,9 @@ func (n *System) ProcessAny() *System_ProcessAny { } } -// ProcessAny returns from SystemAny the path struct for its child "process". -func (n *SystemAny) ProcessAny() *System_ProcessAny { - return &System_ProcessAny{ +// ProcessAny returns from SystemPathAny the path struct for its child "process". +func (n *SystemPathAny) ProcessAny() *System_ProcessPathAny { + return &System_ProcessPathAny{ NodePath: ygot.NewNodePath( []string{"processes", "process"}, map[string]interface{}{"pid": "*"}, @@ -162734,9 +162761,9 @@ func (n *SystemAny) ProcessAny() *System_ProcessAny { } } -// Process returns from System the path struct for its child "process". -func (n *System) Process(Pid uint64) *System_Process { - return &System_Process{ +// Process returns from SystemPath the path struct for its child "process". +func (n *SystemPath) Process(Pid uint64) *System_ProcessPath { + return &System_ProcessPath{ NodePath: ygot.NewNodePath( []string{"processes", "process"}, map[string]interface{}{"pid": Pid}, @@ -162745,9 +162772,9 @@ func (n *System) Process(Pid uint64) *System_Process { } } -// Process returns from SystemAny the path struct for its child "process". -func (n *SystemAny) Process(Pid uint64) *System_ProcessAny { - return &System_ProcessAny{ +// Process returns from SystemPathAny the path struct for its child "process". +func (n *SystemPathAny) Process(Pid uint64) *System_ProcessPathAny { + return &System_ProcessPathAny{ NodePath: ygot.NewNodePath( []string{"processes", "process"}, map[string]interface{}{"pid": Pid}, @@ -162756,9 +162783,9 @@ func (n *SystemAny) Process(Pid uint64) *System_ProcessAny { } } -// SshServer returns from System the path struct for its child "ssh-server". -func (n *System) SshServer() *System_SshServer { - return &System_SshServer{ +// SshServer returns from SystemPath the path struct for its child "ssh-server". +func (n *SystemPath) SshServer() *System_SshServerPath { + return &System_SshServerPath{ NodePath: ygot.NewNodePath( []string{"ssh-server"}, map[string]interface{}{}, @@ -162767,9 +162794,9 @@ func (n *System) SshServer() *System_SshServer { } } -// SshServer returns from SystemAny the path struct for its child "ssh-server". -func (n *SystemAny) SshServer() *System_SshServerAny { - return &System_SshServerAny{ +// SshServer returns from SystemPathAny the path struct for its child "ssh-server". +func (n *SystemPathAny) SshServer() *System_SshServerPathAny { + return &System_SshServerPathAny{ NodePath: ygot.NewNodePath( []string{"ssh-server"}, map[string]interface{}{}, @@ -162778,9 +162805,9 @@ func (n *SystemAny) SshServer() *System_SshServerAny { } } -// TelnetServer returns from System the path struct for its child "telnet-server". -func (n *System) TelnetServer() *System_TelnetServer { - return &System_TelnetServer{ +// TelnetServer returns from SystemPath the path struct for its child "telnet-server". +func (n *SystemPath) TelnetServer() *System_TelnetServerPath { + return &System_TelnetServerPath{ NodePath: ygot.NewNodePath( []string{"telnet-server"}, map[string]interface{}{}, @@ -162789,9 +162816,9 @@ func (n *System) TelnetServer() *System_TelnetServer { } } -// TelnetServer returns from SystemAny the path struct for its child "telnet-server". -func (n *SystemAny) TelnetServer() *System_TelnetServerAny { - return &System_TelnetServerAny{ +// TelnetServer returns from SystemPathAny the path struct for its child "telnet-server". +func (n *SystemPathAny) TelnetServer() *System_TelnetServerPathAny { + return &System_TelnetServerPathAny{ NodePath: ygot.NewNodePath( []string{"telnet-server"}, map[string]interface{}{}, @@ -162800,19 +162827,19 @@ func (n *SystemAny) TelnetServer() *System_TelnetServerAny { } } -// System_Aaa represents the /openconfig-system/system/aaa YANG schema element. -type System_Aaa struct { +// System_AaaPath represents the /openconfig-system/system/aaa YANG schema element. +type System_AaaPath struct { *ygot.NodePath } -// System_AaaAny represents the wildcard version of the /openconfig-system/system/aaa YANG schema element. -type System_AaaAny struct { +// System_AaaPathAny represents the wildcard version of the /openconfig-system/system/aaa YANG schema element. +type System_AaaPathAny struct { *ygot.NodePath } -// Accounting returns from System_Aaa the path struct for its child "accounting". -func (n *System_Aaa) Accounting() *System_Aaa_Accounting { - return &System_Aaa_Accounting{ +// Accounting returns from System_AaaPath the path struct for its child "accounting". +func (n *System_AaaPath) Accounting() *System_Aaa_AccountingPath { + return &System_Aaa_AccountingPath{ NodePath: ygot.NewNodePath( []string{"accounting"}, map[string]interface{}{}, @@ -162821,9 +162848,9 @@ func (n *System_Aaa) Accounting() *System_Aaa_Accounting { } } -// Accounting returns from System_AaaAny the path struct for its child "accounting". -func (n *System_AaaAny) Accounting() *System_Aaa_AccountingAny { - return &System_Aaa_AccountingAny{ +// Accounting returns from System_AaaPathAny the path struct for its child "accounting". +func (n *System_AaaPathAny) Accounting() *System_Aaa_AccountingPathAny { + return &System_Aaa_AccountingPathAny{ NodePath: ygot.NewNodePath( []string{"accounting"}, map[string]interface{}{}, @@ -162832,9 +162859,9 @@ func (n *System_AaaAny) Accounting() *System_Aaa_AccountingAny { } } -// Authentication returns from System_Aaa the path struct for its child "authentication". -func (n *System_Aaa) Authentication() *System_Aaa_Authentication { - return &System_Aaa_Authentication{ +// Authentication returns from System_AaaPath the path struct for its child "authentication". +func (n *System_AaaPath) Authentication() *System_Aaa_AuthenticationPath { + return &System_Aaa_AuthenticationPath{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -162843,9 +162870,9 @@ func (n *System_Aaa) Authentication() *System_Aaa_Authentication { } } -// Authentication returns from System_AaaAny the path struct for its child "authentication". -func (n *System_AaaAny) Authentication() *System_Aaa_AuthenticationAny { - return &System_Aaa_AuthenticationAny{ +// Authentication returns from System_AaaPathAny the path struct for its child "authentication". +func (n *System_AaaPathAny) Authentication() *System_Aaa_AuthenticationPathAny { + return &System_Aaa_AuthenticationPathAny{ NodePath: ygot.NewNodePath( []string{"authentication"}, map[string]interface{}{}, @@ -162854,9 +162881,9 @@ func (n *System_AaaAny) Authentication() *System_Aaa_AuthenticationAny { } } -// Authorization returns from System_Aaa the path struct for its child "authorization". -func (n *System_Aaa) Authorization() *System_Aaa_Authorization { - return &System_Aaa_Authorization{ +// Authorization returns from System_AaaPath the path struct for its child "authorization". +func (n *System_AaaPath) Authorization() *System_Aaa_AuthorizationPath { + return &System_Aaa_AuthorizationPath{ NodePath: ygot.NewNodePath( []string{"authorization"}, map[string]interface{}{}, @@ -162865,9 +162892,9 @@ func (n *System_Aaa) Authorization() *System_Aaa_Authorization { } } -// Authorization returns from System_AaaAny the path struct for its child "authorization". -func (n *System_AaaAny) Authorization() *System_Aaa_AuthorizationAny { - return &System_Aaa_AuthorizationAny{ +// Authorization returns from System_AaaPathAny the path struct for its child "authorization". +func (n *System_AaaPathAny) Authorization() *System_Aaa_AuthorizationPathAny { + return &System_Aaa_AuthorizationPathAny{ NodePath: ygot.NewNodePath( []string{"authorization"}, map[string]interface{}{}, @@ -162876,9 +162903,9 @@ func (n *System_AaaAny) Authorization() *System_Aaa_AuthorizationAny { } } -// ServerGroupAny returns from System_Aaa the path struct for its child "server-group". -func (n *System_Aaa) ServerGroupAny() *System_Aaa_ServerGroupAny { - return &System_Aaa_ServerGroupAny{ +// ServerGroupAny returns from System_AaaPath the path struct for its child "server-group". +func (n *System_AaaPath) ServerGroupAny() *System_Aaa_ServerGroupPathAny { + return &System_Aaa_ServerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"server-groups", "server-group"}, map[string]interface{}{"name": "*"}, @@ -162887,9 +162914,9 @@ func (n *System_Aaa) ServerGroupAny() *System_Aaa_ServerGroupAny { } } -// ServerGroupAny returns from System_AaaAny the path struct for its child "server-group". -func (n *System_AaaAny) ServerGroupAny() *System_Aaa_ServerGroupAny { - return &System_Aaa_ServerGroupAny{ +// ServerGroupAny returns from System_AaaPathAny the path struct for its child "server-group". +func (n *System_AaaPathAny) ServerGroupAny() *System_Aaa_ServerGroupPathAny { + return &System_Aaa_ServerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"server-groups", "server-group"}, map[string]interface{}{"name": "*"}, @@ -162898,9 +162925,9 @@ func (n *System_AaaAny) ServerGroupAny() *System_Aaa_ServerGroupAny { } } -// ServerGroup returns from System_Aaa the path struct for its child "server-group". -func (n *System_Aaa) ServerGroup(Name string) *System_Aaa_ServerGroup { - return &System_Aaa_ServerGroup{ +// ServerGroup returns from System_AaaPath the path struct for its child "server-group". +func (n *System_AaaPath) ServerGroup(Name string) *System_Aaa_ServerGroupPath { + return &System_Aaa_ServerGroupPath{ NodePath: ygot.NewNodePath( []string{"server-groups", "server-group"}, map[string]interface{}{"name": Name}, @@ -162909,9 +162936,9 @@ func (n *System_Aaa) ServerGroup(Name string) *System_Aaa_ServerGroup { } } -// ServerGroup returns from System_AaaAny the path struct for its child "server-group". -func (n *System_AaaAny) ServerGroup(Name string) *System_Aaa_ServerGroupAny { - return &System_Aaa_ServerGroupAny{ +// ServerGroup returns from System_AaaPathAny the path struct for its child "server-group". +func (n *System_AaaPathAny) ServerGroup(Name string) *System_Aaa_ServerGroupPathAny { + return &System_Aaa_ServerGroupPathAny{ NodePath: ygot.NewNodePath( []string{"server-groups", "server-group"}, map[string]interface{}{"name": Name}, @@ -162920,51 +162947,51 @@ func (n *System_AaaAny) ServerGroup(Name string) *System_Aaa_ServerGroupAny { } } -// System_Aaa_Accounting represents the /openconfig-system/system/aaa/accounting YANG schema element. -type System_Aaa_Accounting struct { +// System_Aaa_AccountingPath represents the /openconfig-system/system/aaa/accounting YANG schema element. +type System_Aaa_AccountingPath struct { *ygot.NodePath } -// System_Aaa_AccountingAny represents the wildcard version of the /openconfig-system/system/aaa/accounting YANG schema element. -type System_Aaa_AccountingAny struct { +// System_Aaa_AccountingPathAny represents the wildcard version of the /openconfig-system/system/aaa/accounting YANG schema element. +type System_Aaa_AccountingPathAny struct { *ygot.NodePath } -// System_Aaa_Accounting_AccountingMethod represents the /openconfig-system/system/aaa/accounting/state/accounting-method YANG schema element. -type System_Aaa_Accounting_AccountingMethod struct { +// System_Aaa_Accounting_AccountingMethodPath represents the /openconfig-system/system/aaa/accounting/config/accounting-method YANG schema element. +type System_Aaa_Accounting_AccountingMethodPath struct { *ygot.NodePath } -// System_Aaa_Accounting_AccountingMethodAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/state/accounting-method YANG schema element. -type System_Aaa_Accounting_AccountingMethodAny struct { +// System_Aaa_Accounting_AccountingMethodPathAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/config/accounting-method YANG schema element. +type System_Aaa_Accounting_AccountingMethodPathAny struct { *ygot.NodePath } -// AccountingMethod returns from System_Aaa_Accounting the path struct for its child "accounting-method". -func (n *System_Aaa_Accounting) AccountingMethod() *System_Aaa_Accounting_AccountingMethod { - return &System_Aaa_Accounting_AccountingMethod{ +// AccountingMethod returns from System_Aaa_AccountingPath the path struct for its child "accounting-method". +func (n *System_Aaa_AccountingPath) AccountingMethod() *System_Aaa_Accounting_AccountingMethodPath { + return &System_Aaa_Accounting_AccountingMethodPath{ NodePath: ygot.NewNodePath( - []string{"state", "accounting-method"}, + []string{"config", "accounting-method"}, map[string]interface{}{}, n, ), } } -// AccountingMethod returns from System_Aaa_AccountingAny the path struct for its child "accounting-method". -func (n *System_Aaa_AccountingAny) AccountingMethod() *System_Aaa_Accounting_AccountingMethodAny { - return &System_Aaa_Accounting_AccountingMethodAny{ +// AccountingMethod returns from System_Aaa_AccountingPathAny the path struct for its child "accounting-method". +func (n *System_Aaa_AccountingPathAny) AccountingMethod() *System_Aaa_Accounting_AccountingMethodPathAny { + return &System_Aaa_Accounting_AccountingMethodPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "accounting-method"}, + []string{"config", "accounting-method"}, map[string]interface{}{}, n, ), } } -// EventAny returns from System_Aaa_Accounting the path struct for its child "event". -func (n *System_Aaa_Accounting) EventAny() *System_Aaa_Accounting_EventAny { - return &System_Aaa_Accounting_EventAny{ +// EventAny returns from System_Aaa_AccountingPath the path struct for its child "event". +func (n *System_Aaa_AccountingPath) EventAny() *System_Aaa_Accounting_EventPathAny { + return &System_Aaa_Accounting_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": "*"}, @@ -162973,9 +163000,9 @@ func (n *System_Aaa_Accounting) EventAny() *System_Aaa_Accounting_EventAny { } } -// EventAny returns from System_Aaa_AccountingAny the path struct for its child "event". -func (n *System_Aaa_AccountingAny) EventAny() *System_Aaa_Accounting_EventAny { - return &System_Aaa_Accounting_EventAny{ +// EventAny returns from System_Aaa_AccountingPathAny the path struct for its child "event". +func (n *System_Aaa_AccountingPathAny) EventAny() *System_Aaa_Accounting_EventPathAny { + return &System_Aaa_Accounting_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": "*"}, @@ -162984,9 +163011,9 @@ func (n *System_Aaa_AccountingAny) EventAny() *System_Aaa_Accounting_EventAny { } } -// Event returns from System_Aaa_Accounting the path struct for its child "event". -func (n *System_Aaa_Accounting) Event(EventType oc.E_OpenconfigAaaTypes_AAA_ACCOUNTING_EVENT_TYPE) *System_Aaa_Accounting_Event { - return &System_Aaa_Accounting_Event{ +// Event returns from System_Aaa_AccountingPath the path struct for its child "event". +func (n *System_Aaa_AccountingPath) Event(EventType E_OpenconfigAaaTypes_AAA_ACCOUNTING_EVENT_TYPE) *System_Aaa_Accounting_EventPath { + return &System_Aaa_Accounting_EventPath{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": EventType}, @@ -162995,9 +163022,9 @@ func (n *System_Aaa_Accounting) Event(EventType oc.E_OpenconfigAaaTypes_AAA_ACCO } } -// Event returns from System_Aaa_AccountingAny the path struct for its child "event". -func (n *System_Aaa_AccountingAny) Event(EventType oc.E_OpenconfigAaaTypes_AAA_ACCOUNTING_EVENT_TYPE) *System_Aaa_Accounting_EventAny { - return &System_Aaa_Accounting_EventAny{ +// Event returns from System_Aaa_AccountingPathAny the path struct for its child "event". +func (n *System_Aaa_AccountingPathAny) Event(EventType E_OpenconfigAaaTypes_AAA_ACCOUNTING_EVENT_TYPE) *System_Aaa_Accounting_EventPathAny { + return &System_Aaa_Accounting_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": EventType}, @@ -163006,103 +163033,103 @@ func (n *System_Aaa_AccountingAny) Event(EventType oc.E_OpenconfigAaaTypes_AAA_A } } -// System_Aaa_Accounting_Event represents the /openconfig-system/system/aaa/accounting/events/event YANG schema element. -type System_Aaa_Accounting_Event struct { +// System_Aaa_Accounting_EventPath represents the /openconfig-system/system/aaa/accounting/events/event YANG schema element. +type System_Aaa_Accounting_EventPath struct { *ygot.NodePath } -// System_Aaa_Accounting_EventAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event YANG schema element. -type System_Aaa_Accounting_EventAny struct { +// System_Aaa_Accounting_EventPathAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event YANG schema element. +type System_Aaa_Accounting_EventPathAny struct { *ygot.NodePath } -// System_Aaa_Accounting_Event_EventType represents the /openconfig-system/system/aaa/accounting/events/event/state/event-type YANG schema element. -type System_Aaa_Accounting_Event_EventType struct { +// System_Aaa_Accounting_Event_EventTypePath represents the /openconfig-system/system/aaa/accounting/events/event/config/event-type YANG schema element. +type System_Aaa_Accounting_Event_EventTypePath struct { *ygot.NodePath } -// System_Aaa_Accounting_Event_EventTypeAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event/state/event-type YANG schema element. -type System_Aaa_Accounting_Event_EventTypeAny struct { +// System_Aaa_Accounting_Event_EventTypePathAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event/config/event-type YANG schema element. +type System_Aaa_Accounting_Event_EventTypePathAny struct { *ygot.NodePath } -// System_Aaa_Accounting_Event_Record represents the /openconfig-system/system/aaa/accounting/events/event/state/record YANG schema element. -type System_Aaa_Accounting_Event_Record struct { +// System_Aaa_Accounting_Event_RecordPath represents the /openconfig-system/system/aaa/accounting/events/event/config/record YANG schema element. +type System_Aaa_Accounting_Event_RecordPath struct { *ygot.NodePath } -// System_Aaa_Accounting_Event_RecordAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event/state/record YANG schema element. -type System_Aaa_Accounting_Event_RecordAny struct { +// System_Aaa_Accounting_Event_RecordPathAny represents the wildcard version of the /openconfig-system/system/aaa/accounting/events/event/config/record YANG schema element. +type System_Aaa_Accounting_Event_RecordPathAny struct { *ygot.NodePath } -// EventType returns from System_Aaa_Accounting_Event the path struct for its child "event-type". -func (n *System_Aaa_Accounting_Event) EventType() *System_Aaa_Accounting_Event_EventType { - return &System_Aaa_Accounting_Event_EventType{ +// EventType returns from System_Aaa_Accounting_EventPath the path struct for its child "event-type". +func (n *System_Aaa_Accounting_EventPath) EventType() *System_Aaa_Accounting_Event_EventTypePath { + return &System_Aaa_Accounting_Event_EventTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "event-type"}, + []string{"config", "event-type"}, map[string]interface{}{}, n, ), } } -// EventType returns from System_Aaa_Accounting_EventAny the path struct for its child "event-type". -func (n *System_Aaa_Accounting_EventAny) EventType() *System_Aaa_Accounting_Event_EventTypeAny { - return &System_Aaa_Accounting_Event_EventTypeAny{ +// EventType returns from System_Aaa_Accounting_EventPathAny the path struct for its child "event-type". +func (n *System_Aaa_Accounting_EventPathAny) EventType() *System_Aaa_Accounting_Event_EventTypePathAny { + return &System_Aaa_Accounting_Event_EventTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "event-type"}, + []string{"config", "event-type"}, map[string]interface{}{}, n, ), } } -// Record returns from System_Aaa_Accounting_Event the path struct for its child "record". -func (n *System_Aaa_Accounting_Event) Record() *System_Aaa_Accounting_Event_Record { - return &System_Aaa_Accounting_Event_Record{ +// Record returns from System_Aaa_Accounting_EventPath the path struct for its child "record". +func (n *System_Aaa_Accounting_EventPath) Record() *System_Aaa_Accounting_Event_RecordPath { + return &System_Aaa_Accounting_Event_RecordPath{ NodePath: ygot.NewNodePath( - []string{"state", "record"}, + []string{"config", "record"}, map[string]interface{}{}, n, ), } } -// Record returns from System_Aaa_Accounting_EventAny the path struct for its child "record". -func (n *System_Aaa_Accounting_EventAny) Record() *System_Aaa_Accounting_Event_RecordAny { - return &System_Aaa_Accounting_Event_RecordAny{ +// Record returns from System_Aaa_Accounting_EventPathAny the path struct for its child "record". +func (n *System_Aaa_Accounting_EventPathAny) Record() *System_Aaa_Accounting_Event_RecordPathAny { + return &System_Aaa_Accounting_Event_RecordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "record"}, + []string{"config", "record"}, map[string]interface{}{}, n, ), } } -// System_Aaa_Authentication represents the /openconfig-system/system/aaa/authentication YANG schema element. -type System_Aaa_Authentication struct { +// System_Aaa_AuthenticationPath represents the /openconfig-system/system/aaa/authentication YANG schema element. +type System_Aaa_AuthenticationPath struct { *ygot.NodePath } -// System_Aaa_AuthenticationAny represents the wildcard version of the /openconfig-system/system/aaa/authentication YANG schema element. -type System_Aaa_AuthenticationAny struct { +// System_Aaa_AuthenticationPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication YANG schema element. +type System_Aaa_AuthenticationPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_AuthenticationMethod represents the /openconfig-system/system/aaa/authentication/state/authentication-method YANG schema element. -type System_Aaa_Authentication_AuthenticationMethod struct { +// System_Aaa_Authentication_AuthenticationMethodPath represents the /openconfig-system/system/aaa/authentication/config/authentication-method YANG schema element. +type System_Aaa_Authentication_AuthenticationMethodPath struct { *ygot.NodePath } -// System_Aaa_Authentication_AuthenticationMethodAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/state/authentication-method YANG schema element. -type System_Aaa_Authentication_AuthenticationMethodAny struct { +// System_Aaa_Authentication_AuthenticationMethodPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/config/authentication-method YANG schema element. +type System_Aaa_Authentication_AuthenticationMethodPathAny struct { *ygot.NodePath } -// AdminUser returns from System_Aaa_Authentication the path struct for its child "admin-user". -func (n *System_Aaa_Authentication) AdminUser() *System_Aaa_Authentication_AdminUser { - return &System_Aaa_Authentication_AdminUser{ +// AdminUser returns from System_Aaa_AuthenticationPath the path struct for its child "admin-user". +func (n *System_Aaa_AuthenticationPath) AdminUser() *System_Aaa_Authentication_AdminUserPath { + return &System_Aaa_Authentication_AdminUserPath{ NodePath: ygot.NewNodePath( []string{"admin-user"}, map[string]interface{}{}, @@ -163111,9 +163138,9 @@ func (n *System_Aaa_Authentication) AdminUser() *System_Aaa_Authentication_Admin } } -// AdminUser returns from System_Aaa_AuthenticationAny the path struct for its child "admin-user". -func (n *System_Aaa_AuthenticationAny) AdminUser() *System_Aaa_Authentication_AdminUserAny { - return &System_Aaa_Authentication_AdminUserAny{ +// AdminUser returns from System_Aaa_AuthenticationPathAny the path struct for its child "admin-user". +func (n *System_Aaa_AuthenticationPathAny) AdminUser() *System_Aaa_Authentication_AdminUserPathAny { + return &System_Aaa_Authentication_AdminUserPathAny{ NodePath: ygot.NewNodePath( []string{"admin-user"}, map[string]interface{}{}, @@ -163122,31 +163149,31 @@ func (n *System_Aaa_AuthenticationAny) AdminUser() *System_Aaa_Authentication_Ad } } -// AuthenticationMethod returns from System_Aaa_Authentication the path struct for its child "authentication-method". -func (n *System_Aaa_Authentication) AuthenticationMethod() *System_Aaa_Authentication_AuthenticationMethod { - return &System_Aaa_Authentication_AuthenticationMethod{ +// AuthenticationMethod returns from System_Aaa_AuthenticationPath the path struct for its child "authentication-method". +func (n *System_Aaa_AuthenticationPath) AuthenticationMethod() *System_Aaa_Authentication_AuthenticationMethodPath { + return &System_Aaa_Authentication_AuthenticationMethodPath{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-method"}, + []string{"config", "authentication-method"}, map[string]interface{}{}, n, ), } } -// AuthenticationMethod returns from System_Aaa_AuthenticationAny the path struct for its child "authentication-method". -func (n *System_Aaa_AuthenticationAny) AuthenticationMethod() *System_Aaa_Authentication_AuthenticationMethodAny { - return &System_Aaa_Authentication_AuthenticationMethodAny{ +// AuthenticationMethod returns from System_Aaa_AuthenticationPathAny the path struct for its child "authentication-method". +func (n *System_Aaa_AuthenticationPathAny) AuthenticationMethod() *System_Aaa_Authentication_AuthenticationMethodPathAny { + return &System_Aaa_Authentication_AuthenticationMethodPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authentication-method"}, + []string{"config", "authentication-method"}, map[string]interface{}{}, n, ), } } -// UserAny returns from System_Aaa_Authentication the path struct for its child "user". -func (n *System_Aaa_Authentication) UserAny() *System_Aaa_Authentication_UserAny { - return &System_Aaa_Authentication_UserAny{ +// UserAny returns from System_Aaa_AuthenticationPath the path struct for its child "user". +func (n *System_Aaa_AuthenticationPath) UserAny() *System_Aaa_Authentication_UserPathAny { + return &System_Aaa_Authentication_UserPathAny{ NodePath: ygot.NewNodePath( []string{"users", "user"}, map[string]interface{}{"username": "*"}, @@ -163155,9 +163182,9 @@ func (n *System_Aaa_Authentication) UserAny() *System_Aaa_Authentication_UserAny } } -// UserAny returns from System_Aaa_AuthenticationAny the path struct for its child "user". -func (n *System_Aaa_AuthenticationAny) UserAny() *System_Aaa_Authentication_UserAny { - return &System_Aaa_Authentication_UserAny{ +// UserAny returns from System_Aaa_AuthenticationPathAny the path struct for its child "user". +func (n *System_Aaa_AuthenticationPathAny) UserAny() *System_Aaa_Authentication_UserPathAny { + return &System_Aaa_Authentication_UserPathAny{ NodePath: ygot.NewNodePath( []string{"users", "user"}, map[string]interface{}{"username": "*"}, @@ -163166,9 +163193,9 @@ func (n *System_Aaa_AuthenticationAny) UserAny() *System_Aaa_Authentication_User } } -// User returns from System_Aaa_Authentication the path struct for its child "user". -func (n *System_Aaa_Authentication) User(Username string) *System_Aaa_Authentication_User { - return &System_Aaa_Authentication_User{ +// User returns from System_Aaa_AuthenticationPath the path struct for its child "user". +func (n *System_Aaa_AuthenticationPath) User(Username string) *System_Aaa_Authentication_UserPath { + return &System_Aaa_Authentication_UserPath{ NodePath: ygot.NewNodePath( []string{"users", "user"}, map[string]interface{}{"username": Username}, @@ -163177,9 +163204,9 @@ func (n *System_Aaa_Authentication) User(Username string) *System_Aaa_Authentica } } -// User returns from System_Aaa_AuthenticationAny the path struct for its child "user". -func (n *System_Aaa_AuthenticationAny) User(Username string) *System_Aaa_Authentication_UserAny { - return &System_Aaa_Authentication_UserAny{ +// User returns from System_Aaa_AuthenticationPathAny the path struct for its child "user". +func (n *System_Aaa_AuthenticationPathAny) User(Username string) *System_Aaa_Authentication_UserPathAny { + return &System_Aaa_Authentication_UserPathAny{ NodePath: ygot.NewNodePath( []string{"users", "user"}, map[string]interface{}{"username": Username}, @@ -163188,93 +163215,93 @@ func (n *System_Aaa_AuthenticationAny) User(Username string) *System_Aaa_Authent } } -// System_Aaa_Authentication_AdminUser represents the /openconfig-system/system/aaa/authentication/admin-user YANG schema element. -type System_Aaa_Authentication_AdminUser struct { +// System_Aaa_Authentication_AdminUserPath represents the /openconfig-system/system/aaa/authentication/admin-user YANG schema element. +type System_Aaa_Authentication_AdminUserPath struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUserAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user YANG schema element. -type System_Aaa_Authentication_AdminUserAny struct { +// System_Aaa_Authentication_AdminUserPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user YANG schema element. +type System_Aaa_Authentication_AdminUserPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminPassword represents the /openconfig-system/system/aaa/authentication/admin-user/state/admin-password YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminPassword struct { +// System_Aaa_Authentication_AdminUser_AdminPasswordPath represents the /openconfig-system/system/aaa/authentication/admin-user/config/admin-password YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminPasswordPath struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminPasswordAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/state/admin-password YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminPasswordAny struct { +// System_Aaa_Authentication_AdminUser_AdminPasswordPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/config/admin-password YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminPasswordPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminPasswordHashed represents the /openconfig-system/system/aaa/authentication/admin-user/state/admin-password-hashed YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminPasswordHashed struct { +// System_Aaa_Authentication_AdminUser_AdminPasswordHashedPath represents the /openconfig-system/system/aaa/authentication/admin-user/config/admin-password-hashed YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminPasswordHashedPath struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminPasswordHashedAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/state/admin-password-hashed YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminPasswordHashedAny struct { +// System_Aaa_Authentication_AdminUser_AdminPasswordHashedPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/config/admin-password-hashed YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminPasswordHashedPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminUsername represents the /openconfig-system/system/aaa/authentication/admin-user/state/admin-username YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminUsername struct { +// System_Aaa_Authentication_AdminUser_AdminUsernamePath represents the /openconfig-system/system/aaa/authentication/admin-user/state/admin-username YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminUsernamePath struct { *ygot.NodePath } -// System_Aaa_Authentication_AdminUser_AdminUsernameAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/state/admin-username YANG schema element. -type System_Aaa_Authentication_AdminUser_AdminUsernameAny struct { +// System_Aaa_Authentication_AdminUser_AdminUsernamePathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/admin-user/state/admin-username YANG schema element. +type System_Aaa_Authentication_AdminUser_AdminUsernamePathAny struct { *ygot.NodePath } -// AdminPassword returns from System_Aaa_Authentication_AdminUser the path struct for its child "admin-password". -func (n *System_Aaa_Authentication_AdminUser) AdminPassword() *System_Aaa_Authentication_AdminUser_AdminPassword { - return &System_Aaa_Authentication_AdminUser_AdminPassword{ +// AdminPassword returns from System_Aaa_Authentication_AdminUserPath the path struct for its child "admin-password". +func (n *System_Aaa_Authentication_AdminUserPath) AdminPassword() *System_Aaa_Authentication_AdminUser_AdminPasswordPath { + return &System_Aaa_Authentication_AdminUser_AdminPasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-password"}, + []string{"config", "admin-password"}, map[string]interface{}{}, n, ), } } -// AdminPassword returns from System_Aaa_Authentication_AdminUserAny the path struct for its child "admin-password". -func (n *System_Aaa_Authentication_AdminUserAny) AdminPassword() *System_Aaa_Authentication_AdminUser_AdminPasswordAny { - return &System_Aaa_Authentication_AdminUser_AdminPasswordAny{ +// AdminPassword returns from System_Aaa_Authentication_AdminUserPathAny the path struct for its child "admin-password". +func (n *System_Aaa_Authentication_AdminUserPathAny) AdminPassword() *System_Aaa_Authentication_AdminUser_AdminPasswordPathAny { + return &System_Aaa_Authentication_AdminUser_AdminPasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-password"}, + []string{"config", "admin-password"}, map[string]interface{}{}, n, ), } } -// AdminPasswordHashed returns from System_Aaa_Authentication_AdminUser the path struct for its child "admin-password-hashed". -func (n *System_Aaa_Authentication_AdminUser) AdminPasswordHashed() *System_Aaa_Authentication_AdminUser_AdminPasswordHashed { - return &System_Aaa_Authentication_AdminUser_AdminPasswordHashed{ +// AdminPasswordHashed returns from System_Aaa_Authentication_AdminUserPath the path struct for its child "admin-password-hashed". +func (n *System_Aaa_Authentication_AdminUserPath) AdminPasswordHashed() *System_Aaa_Authentication_AdminUser_AdminPasswordHashedPath { + return &System_Aaa_Authentication_AdminUser_AdminPasswordHashedPath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-password-hashed"}, + []string{"config", "admin-password-hashed"}, map[string]interface{}{}, n, ), } } -// AdminPasswordHashed returns from System_Aaa_Authentication_AdminUserAny the path struct for its child "admin-password-hashed". -func (n *System_Aaa_Authentication_AdminUserAny) AdminPasswordHashed() *System_Aaa_Authentication_AdminUser_AdminPasswordHashedAny { - return &System_Aaa_Authentication_AdminUser_AdminPasswordHashedAny{ +// AdminPasswordHashed returns from System_Aaa_Authentication_AdminUserPathAny the path struct for its child "admin-password-hashed". +func (n *System_Aaa_Authentication_AdminUserPathAny) AdminPasswordHashed() *System_Aaa_Authentication_AdminUser_AdminPasswordHashedPathAny { + return &System_Aaa_Authentication_AdminUser_AdminPasswordHashedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-password-hashed"}, + []string{"config", "admin-password-hashed"}, map[string]interface{}{}, n, ), } } -// AdminUsername returns from System_Aaa_Authentication_AdminUser the path struct for its child "admin-username". -func (n *System_Aaa_Authentication_AdminUser) AdminUsername() *System_Aaa_Authentication_AdminUser_AdminUsername { - return &System_Aaa_Authentication_AdminUser_AdminUsername{ +// AdminUsername returns from System_Aaa_Authentication_AdminUserPath the path struct for its child "admin-username". +func (n *System_Aaa_Authentication_AdminUserPath) AdminUsername() *System_Aaa_Authentication_AdminUser_AdminUsernamePath { + return &System_Aaa_Authentication_AdminUser_AdminUsernamePath{ NodePath: ygot.NewNodePath( []string{"state", "admin-username"}, map[string]interface{}{}, @@ -163283,9 +163310,9 @@ func (n *System_Aaa_Authentication_AdminUser) AdminUsername() *System_Aaa_Authen } } -// AdminUsername returns from System_Aaa_Authentication_AdminUserAny the path struct for its child "admin-username". -func (n *System_Aaa_Authentication_AdminUserAny) AdminUsername() *System_Aaa_Authentication_AdminUser_AdminUsernameAny { - return &System_Aaa_Authentication_AdminUser_AdminUsernameAny{ +// AdminUsername returns from System_Aaa_Authentication_AdminUserPathAny the path struct for its child "admin-username". +func (n *System_Aaa_Authentication_AdminUserPathAny) AdminUsername() *System_Aaa_Authentication_AdminUser_AdminUsernamePathAny { + return &System_Aaa_Authentication_AdminUser_AdminUsernamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "admin-username"}, map[string]interface{}{}, @@ -163294,221 +163321,221 @@ func (n *System_Aaa_Authentication_AdminUserAny) AdminUsername() *System_Aaa_Aut } } -// System_Aaa_Authentication_User represents the /openconfig-system/system/aaa/authentication/users/user YANG schema element. -type System_Aaa_Authentication_User struct { +// System_Aaa_Authentication_UserPath represents the /openconfig-system/system/aaa/authentication/users/user YANG schema element. +type System_Aaa_Authentication_UserPath struct { *ygot.NodePath } -// System_Aaa_Authentication_UserAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user YANG schema element. -type System_Aaa_Authentication_UserAny struct { +// System_Aaa_Authentication_UserPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user YANG schema element. +type System_Aaa_Authentication_UserPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_User_Password represents the /openconfig-system/system/aaa/authentication/users/user/state/password YANG schema element. -type System_Aaa_Authentication_User_Password struct { +// System_Aaa_Authentication_User_PasswordPath represents the /openconfig-system/system/aaa/authentication/users/user/config/password YANG schema element. +type System_Aaa_Authentication_User_PasswordPath struct { *ygot.NodePath } -// System_Aaa_Authentication_User_PasswordAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/state/password YANG schema element. -type System_Aaa_Authentication_User_PasswordAny struct { +// System_Aaa_Authentication_User_PasswordPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/config/password YANG schema element. +type System_Aaa_Authentication_User_PasswordPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_User_PasswordHashed represents the /openconfig-system/system/aaa/authentication/users/user/state/password-hashed YANG schema element. -type System_Aaa_Authentication_User_PasswordHashed struct { +// System_Aaa_Authentication_User_PasswordHashedPath represents the /openconfig-system/system/aaa/authentication/users/user/config/password-hashed YANG schema element. +type System_Aaa_Authentication_User_PasswordHashedPath struct { *ygot.NodePath } -// System_Aaa_Authentication_User_PasswordHashedAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/state/password-hashed YANG schema element. -type System_Aaa_Authentication_User_PasswordHashedAny struct { +// System_Aaa_Authentication_User_PasswordHashedPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/config/password-hashed YANG schema element. +type System_Aaa_Authentication_User_PasswordHashedPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_User_Role represents the /openconfig-system/system/aaa/authentication/users/user/state/role YANG schema element. -type System_Aaa_Authentication_User_Role struct { +// System_Aaa_Authentication_User_RolePath represents the /openconfig-system/system/aaa/authentication/users/user/config/role YANG schema element. +type System_Aaa_Authentication_User_RolePath struct { *ygot.NodePath } -// System_Aaa_Authentication_User_RoleAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/state/role YANG schema element. -type System_Aaa_Authentication_User_RoleAny struct { +// System_Aaa_Authentication_User_RolePathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/config/role YANG schema element. +type System_Aaa_Authentication_User_RolePathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_User_SshKey represents the /openconfig-system/system/aaa/authentication/users/user/state/ssh-key YANG schema element. -type System_Aaa_Authentication_User_SshKey struct { +// System_Aaa_Authentication_User_SshKeyPath represents the /openconfig-system/system/aaa/authentication/users/user/config/ssh-key YANG schema element. +type System_Aaa_Authentication_User_SshKeyPath struct { *ygot.NodePath } -// System_Aaa_Authentication_User_SshKeyAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/state/ssh-key YANG schema element. -type System_Aaa_Authentication_User_SshKeyAny struct { +// System_Aaa_Authentication_User_SshKeyPathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/config/ssh-key YANG schema element. +type System_Aaa_Authentication_User_SshKeyPathAny struct { *ygot.NodePath } -// System_Aaa_Authentication_User_Username represents the /openconfig-system/system/aaa/authentication/users/user/state/username YANG schema element. -type System_Aaa_Authentication_User_Username struct { +// System_Aaa_Authentication_User_UsernamePath represents the /openconfig-system/system/aaa/authentication/users/user/config/username YANG schema element. +type System_Aaa_Authentication_User_UsernamePath struct { *ygot.NodePath } -// System_Aaa_Authentication_User_UsernameAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/state/username YANG schema element. -type System_Aaa_Authentication_User_UsernameAny struct { +// System_Aaa_Authentication_User_UsernamePathAny represents the wildcard version of the /openconfig-system/system/aaa/authentication/users/user/config/username YANG schema element. +type System_Aaa_Authentication_User_UsernamePathAny struct { *ygot.NodePath } -// Password returns from System_Aaa_Authentication_User the path struct for its child "password". -func (n *System_Aaa_Authentication_User) Password() *System_Aaa_Authentication_User_Password { - return &System_Aaa_Authentication_User_Password{ +// Password returns from System_Aaa_Authentication_UserPath the path struct for its child "password". +func (n *System_Aaa_Authentication_UserPath) Password() *System_Aaa_Authentication_User_PasswordPath { + return &System_Aaa_Authentication_User_PasswordPath{ NodePath: ygot.NewNodePath( - []string{"state", "password"}, + []string{"config", "password"}, map[string]interface{}{}, n, ), } } -// Password returns from System_Aaa_Authentication_UserAny the path struct for its child "password". -func (n *System_Aaa_Authentication_UserAny) Password() *System_Aaa_Authentication_User_PasswordAny { - return &System_Aaa_Authentication_User_PasswordAny{ +// Password returns from System_Aaa_Authentication_UserPathAny the path struct for its child "password". +func (n *System_Aaa_Authentication_UserPathAny) Password() *System_Aaa_Authentication_User_PasswordPathAny { + return &System_Aaa_Authentication_User_PasswordPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "password"}, + []string{"config", "password"}, map[string]interface{}{}, n, ), } } -// PasswordHashed returns from System_Aaa_Authentication_User the path struct for its child "password-hashed". -func (n *System_Aaa_Authentication_User) PasswordHashed() *System_Aaa_Authentication_User_PasswordHashed { - return &System_Aaa_Authentication_User_PasswordHashed{ +// PasswordHashed returns from System_Aaa_Authentication_UserPath the path struct for its child "password-hashed". +func (n *System_Aaa_Authentication_UserPath) PasswordHashed() *System_Aaa_Authentication_User_PasswordHashedPath { + return &System_Aaa_Authentication_User_PasswordHashedPath{ NodePath: ygot.NewNodePath( - []string{"state", "password-hashed"}, + []string{"config", "password-hashed"}, map[string]interface{}{}, n, ), } } -// PasswordHashed returns from System_Aaa_Authentication_UserAny the path struct for its child "password-hashed". -func (n *System_Aaa_Authentication_UserAny) PasswordHashed() *System_Aaa_Authentication_User_PasswordHashedAny { - return &System_Aaa_Authentication_User_PasswordHashedAny{ +// PasswordHashed returns from System_Aaa_Authentication_UserPathAny the path struct for its child "password-hashed". +func (n *System_Aaa_Authentication_UserPathAny) PasswordHashed() *System_Aaa_Authentication_User_PasswordHashedPathAny { + return &System_Aaa_Authentication_User_PasswordHashedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "password-hashed"}, + []string{"config", "password-hashed"}, map[string]interface{}{}, n, ), } } -// Role returns from System_Aaa_Authentication_User the path struct for its child "role". -func (n *System_Aaa_Authentication_User) Role() *System_Aaa_Authentication_User_Role { - return &System_Aaa_Authentication_User_Role{ +// Role returns from System_Aaa_Authentication_UserPath the path struct for its child "role". +func (n *System_Aaa_Authentication_UserPath) Role() *System_Aaa_Authentication_User_RolePath { + return &System_Aaa_Authentication_User_RolePath{ NodePath: ygot.NewNodePath( - []string{"state", "role"}, + []string{"config", "role"}, map[string]interface{}{}, n, ), } } -// Role returns from System_Aaa_Authentication_UserAny the path struct for its child "role". -func (n *System_Aaa_Authentication_UserAny) Role() *System_Aaa_Authentication_User_RoleAny { - return &System_Aaa_Authentication_User_RoleAny{ +// Role returns from System_Aaa_Authentication_UserPathAny the path struct for its child "role". +func (n *System_Aaa_Authentication_UserPathAny) Role() *System_Aaa_Authentication_User_RolePathAny { + return &System_Aaa_Authentication_User_RolePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "role"}, + []string{"config", "role"}, map[string]interface{}{}, n, ), } } -// SshKey returns from System_Aaa_Authentication_User the path struct for its child "ssh-key". -func (n *System_Aaa_Authentication_User) SshKey() *System_Aaa_Authentication_User_SshKey { - return &System_Aaa_Authentication_User_SshKey{ +// SshKey returns from System_Aaa_Authentication_UserPath the path struct for its child "ssh-key". +func (n *System_Aaa_Authentication_UserPath) SshKey() *System_Aaa_Authentication_User_SshKeyPath { + return &System_Aaa_Authentication_User_SshKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "ssh-key"}, + []string{"config", "ssh-key"}, map[string]interface{}{}, n, ), } } -// SshKey returns from System_Aaa_Authentication_UserAny the path struct for its child "ssh-key". -func (n *System_Aaa_Authentication_UserAny) SshKey() *System_Aaa_Authentication_User_SshKeyAny { - return &System_Aaa_Authentication_User_SshKeyAny{ +// SshKey returns from System_Aaa_Authentication_UserPathAny the path struct for its child "ssh-key". +func (n *System_Aaa_Authentication_UserPathAny) SshKey() *System_Aaa_Authentication_User_SshKeyPathAny { + return &System_Aaa_Authentication_User_SshKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ssh-key"}, + []string{"config", "ssh-key"}, map[string]interface{}{}, n, ), } } -// Username returns from System_Aaa_Authentication_User the path struct for its child "username". -func (n *System_Aaa_Authentication_User) Username() *System_Aaa_Authentication_User_Username { - return &System_Aaa_Authentication_User_Username{ +// Username returns from System_Aaa_Authentication_UserPath the path struct for its child "username". +func (n *System_Aaa_Authentication_UserPath) Username() *System_Aaa_Authentication_User_UsernamePath { + return &System_Aaa_Authentication_User_UsernamePath{ NodePath: ygot.NewNodePath( - []string{"state", "username"}, + []string{"config", "username"}, map[string]interface{}{}, n, ), } } -// Username returns from System_Aaa_Authentication_UserAny the path struct for its child "username". -func (n *System_Aaa_Authentication_UserAny) Username() *System_Aaa_Authentication_User_UsernameAny { - return &System_Aaa_Authentication_User_UsernameAny{ +// Username returns from System_Aaa_Authentication_UserPathAny the path struct for its child "username". +func (n *System_Aaa_Authentication_UserPathAny) Username() *System_Aaa_Authentication_User_UsernamePathAny { + return &System_Aaa_Authentication_User_UsernamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "username"}, + []string{"config", "username"}, map[string]interface{}{}, n, ), } } -// System_Aaa_Authorization represents the /openconfig-system/system/aaa/authorization YANG schema element. -type System_Aaa_Authorization struct { +// System_Aaa_AuthorizationPath represents the /openconfig-system/system/aaa/authorization YANG schema element. +type System_Aaa_AuthorizationPath struct { *ygot.NodePath } -// System_Aaa_AuthorizationAny represents the wildcard version of the /openconfig-system/system/aaa/authorization YANG schema element. -type System_Aaa_AuthorizationAny struct { +// System_Aaa_AuthorizationPathAny represents the wildcard version of the /openconfig-system/system/aaa/authorization YANG schema element. +type System_Aaa_AuthorizationPathAny struct { *ygot.NodePath } -// System_Aaa_Authorization_AuthorizationMethod represents the /openconfig-system/system/aaa/authorization/state/authorization-method YANG schema element. -type System_Aaa_Authorization_AuthorizationMethod struct { +// System_Aaa_Authorization_AuthorizationMethodPath represents the /openconfig-system/system/aaa/authorization/config/authorization-method YANG schema element. +type System_Aaa_Authorization_AuthorizationMethodPath struct { *ygot.NodePath } -// System_Aaa_Authorization_AuthorizationMethodAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/state/authorization-method YANG schema element. -type System_Aaa_Authorization_AuthorizationMethodAny struct { +// System_Aaa_Authorization_AuthorizationMethodPathAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/config/authorization-method YANG schema element. +type System_Aaa_Authorization_AuthorizationMethodPathAny struct { *ygot.NodePath } -// AuthorizationMethod returns from System_Aaa_Authorization the path struct for its child "authorization-method". -func (n *System_Aaa_Authorization) AuthorizationMethod() *System_Aaa_Authorization_AuthorizationMethod { - return &System_Aaa_Authorization_AuthorizationMethod{ +// AuthorizationMethod returns from System_Aaa_AuthorizationPath the path struct for its child "authorization-method". +func (n *System_Aaa_AuthorizationPath) AuthorizationMethod() *System_Aaa_Authorization_AuthorizationMethodPath { + return &System_Aaa_Authorization_AuthorizationMethodPath{ NodePath: ygot.NewNodePath( - []string{"state", "authorization-method"}, + []string{"config", "authorization-method"}, map[string]interface{}{}, n, ), } } -// AuthorizationMethod returns from System_Aaa_AuthorizationAny the path struct for its child "authorization-method". -func (n *System_Aaa_AuthorizationAny) AuthorizationMethod() *System_Aaa_Authorization_AuthorizationMethodAny { - return &System_Aaa_Authorization_AuthorizationMethodAny{ +// AuthorizationMethod returns from System_Aaa_AuthorizationPathAny the path struct for its child "authorization-method". +func (n *System_Aaa_AuthorizationPathAny) AuthorizationMethod() *System_Aaa_Authorization_AuthorizationMethodPathAny { + return &System_Aaa_Authorization_AuthorizationMethodPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "authorization-method"}, + []string{"config", "authorization-method"}, map[string]interface{}{}, n, ), } } -// EventAny returns from System_Aaa_Authorization the path struct for its child "event". -func (n *System_Aaa_Authorization) EventAny() *System_Aaa_Authorization_EventAny { - return &System_Aaa_Authorization_EventAny{ +// EventAny returns from System_Aaa_AuthorizationPath the path struct for its child "event". +func (n *System_Aaa_AuthorizationPath) EventAny() *System_Aaa_Authorization_EventPathAny { + return &System_Aaa_Authorization_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": "*"}, @@ -163517,9 +163544,9 @@ func (n *System_Aaa_Authorization) EventAny() *System_Aaa_Authorization_EventAny } } -// EventAny returns from System_Aaa_AuthorizationAny the path struct for its child "event". -func (n *System_Aaa_AuthorizationAny) EventAny() *System_Aaa_Authorization_EventAny { - return &System_Aaa_Authorization_EventAny{ +// EventAny returns from System_Aaa_AuthorizationPathAny the path struct for its child "event". +func (n *System_Aaa_AuthorizationPathAny) EventAny() *System_Aaa_Authorization_EventPathAny { + return &System_Aaa_Authorization_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": "*"}, @@ -163528,9 +163555,9 @@ func (n *System_Aaa_AuthorizationAny) EventAny() *System_Aaa_Authorization_Event } } -// Event returns from System_Aaa_Authorization the path struct for its child "event". -func (n *System_Aaa_Authorization) Event(EventType oc.E_OpenconfigAaaTypes_AAA_AUTHORIZATION_EVENT_TYPE) *System_Aaa_Authorization_Event { - return &System_Aaa_Authorization_Event{ +// Event returns from System_Aaa_AuthorizationPath the path struct for its child "event". +func (n *System_Aaa_AuthorizationPath) Event(EventType E_OpenconfigAaaTypes_AAA_AUTHORIZATION_EVENT_TYPE) *System_Aaa_Authorization_EventPath { + return &System_Aaa_Authorization_EventPath{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": EventType}, @@ -163539,9 +163566,9 @@ func (n *System_Aaa_Authorization) Event(EventType oc.E_OpenconfigAaaTypes_AAA_A } } -// Event returns from System_Aaa_AuthorizationAny the path struct for its child "event". -func (n *System_Aaa_AuthorizationAny) Event(EventType oc.E_OpenconfigAaaTypes_AAA_AUTHORIZATION_EVENT_TYPE) *System_Aaa_Authorization_EventAny { - return &System_Aaa_Authorization_EventAny{ +// Event returns from System_Aaa_AuthorizationPathAny the path struct for its child "event". +func (n *System_Aaa_AuthorizationPathAny) Event(EventType E_OpenconfigAaaTypes_AAA_AUTHORIZATION_EVENT_TYPE) *System_Aaa_Authorization_EventPathAny { + return &System_Aaa_Authorization_EventPathAny{ NodePath: ygot.NewNodePath( []string{"events", "event"}, map[string]interface{}{"event-type": EventType}, @@ -163550,103 +163577,103 @@ func (n *System_Aaa_AuthorizationAny) Event(EventType oc.E_OpenconfigAaaTypes_AA } } -// System_Aaa_Authorization_Event represents the /openconfig-system/system/aaa/authorization/events/event YANG schema element. -type System_Aaa_Authorization_Event struct { +// System_Aaa_Authorization_EventPath represents the /openconfig-system/system/aaa/authorization/events/event YANG schema element. +type System_Aaa_Authorization_EventPath struct { *ygot.NodePath } -// System_Aaa_Authorization_EventAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/events/event YANG schema element. -type System_Aaa_Authorization_EventAny struct { +// System_Aaa_Authorization_EventPathAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/events/event YANG schema element. +type System_Aaa_Authorization_EventPathAny struct { *ygot.NodePath } -// System_Aaa_Authorization_Event_EventType represents the /openconfig-system/system/aaa/authorization/events/event/state/event-type YANG schema element. -type System_Aaa_Authorization_Event_EventType struct { +// System_Aaa_Authorization_Event_EventTypePath represents the /openconfig-system/system/aaa/authorization/events/event/config/event-type YANG schema element. +type System_Aaa_Authorization_Event_EventTypePath struct { *ygot.NodePath } -// System_Aaa_Authorization_Event_EventTypeAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/events/event/state/event-type YANG schema element. -type System_Aaa_Authorization_Event_EventTypeAny struct { +// System_Aaa_Authorization_Event_EventTypePathAny represents the wildcard version of the /openconfig-system/system/aaa/authorization/events/event/config/event-type YANG schema element. +type System_Aaa_Authorization_Event_EventTypePathAny struct { *ygot.NodePath } -// EventType returns from System_Aaa_Authorization_Event the path struct for its child "event-type". -func (n *System_Aaa_Authorization_Event) EventType() *System_Aaa_Authorization_Event_EventType { - return &System_Aaa_Authorization_Event_EventType{ +// EventType returns from System_Aaa_Authorization_EventPath the path struct for its child "event-type". +func (n *System_Aaa_Authorization_EventPath) EventType() *System_Aaa_Authorization_Event_EventTypePath { + return &System_Aaa_Authorization_Event_EventTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "event-type"}, + []string{"config", "event-type"}, map[string]interface{}{}, n, ), } } -// EventType returns from System_Aaa_Authorization_EventAny the path struct for its child "event-type". -func (n *System_Aaa_Authorization_EventAny) EventType() *System_Aaa_Authorization_Event_EventTypeAny { - return &System_Aaa_Authorization_Event_EventTypeAny{ +// EventType returns from System_Aaa_Authorization_EventPathAny the path struct for its child "event-type". +func (n *System_Aaa_Authorization_EventPathAny) EventType() *System_Aaa_Authorization_Event_EventTypePathAny { + return &System_Aaa_Authorization_Event_EventTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "event-type"}, + []string{"config", "event-type"}, map[string]interface{}{}, n, ), } } -// System_Aaa_ServerGroup represents the /openconfig-system/system/aaa/server-groups/server-group YANG schema element. -type System_Aaa_ServerGroup struct { +// System_Aaa_ServerGroupPath represents the /openconfig-system/system/aaa/server-groups/server-group YANG schema element. +type System_Aaa_ServerGroupPath struct { *ygot.NodePath } -// System_Aaa_ServerGroupAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group YANG schema element. -type System_Aaa_ServerGroupAny struct { +// System_Aaa_ServerGroupPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group YANG schema element. +type System_Aaa_ServerGroupPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Name represents the /openconfig-system/system/aaa/server-groups/server-group/state/name YANG schema element. -type System_Aaa_ServerGroup_Name struct { +// System_Aaa_ServerGroup_NamePath represents the /openconfig-system/system/aaa/server-groups/server-group/config/name YANG schema element. +type System_Aaa_ServerGroup_NamePath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_NameAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/state/name YANG schema element. -type System_Aaa_ServerGroup_NameAny struct { +// System_Aaa_ServerGroup_NamePathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/config/name YANG schema element. +type System_Aaa_ServerGroup_NamePathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Type represents the /openconfig-system/system/aaa/server-groups/server-group/state/type YANG schema element. -type System_Aaa_ServerGroup_Type struct { +// System_Aaa_ServerGroup_TypePath represents the /openconfig-system/system/aaa/server-groups/server-group/config/type YANG schema element. +type System_Aaa_ServerGroup_TypePath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_TypeAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/state/type YANG schema element. -type System_Aaa_ServerGroup_TypeAny struct { +// System_Aaa_ServerGroup_TypePathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/config/type YANG schema element. +type System_Aaa_ServerGroup_TypePathAny struct { *ygot.NodePath } -// Name returns from System_Aaa_ServerGroup the path struct for its child "name". -func (n *System_Aaa_ServerGroup) Name() *System_Aaa_ServerGroup_Name { - return &System_Aaa_ServerGroup_Name{ +// Name returns from System_Aaa_ServerGroupPath the path struct for its child "name". +func (n *System_Aaa_ServerGroupPath) Name() *System_Aaa_ServerGroup_NamePath { + return &System_Aaa_ServerGroup_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from System_Aaa_ServerGroupAny the path struct for its child "name". -func (n *System_Aaa_ServerGroupAny) Name() *System_Aaa_ServerGroup_NameAny { - return &System_Aaa_ServerGroup_NameAny{ +// Name returns from System_Aaa_ServerGroupPathAny the path struct for its child "name". +func (n *System_Aaa_ServerGroupPathAny) Name() *System_Aaa_ServerGroup_NamePathAny { + return &System_Aaa_ServerGroup_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// ServerAny returns from System_Aaa_ServerGroup the path struct for its child "server". -func (n *System_Aaa_ServerGroup) ServerAny() *System_Aaa_ServerGroup_ServerAny { - return &System_Aaa_ServerGroup_ServerAny{ +// ServerAny returns from System_Aaa_ServerGroupPath the path struct for its child "server". +func (n *System_Aaa_ServerGroupPath) ServerAny() *System_Aaa_ServerGroup_ServerPathAny { + return &System_Aaa_ServerGroup_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -163655,9 +163682,9 @@ func (n *System_Aaa_ServerGroup) ServerAny() *System_Aaa_ServerGroup_ServerAny { } } -// ServerAny returns from System_Aaa_ServerGroupAny the path struct for its child "server". -func (n *System_Aaa_ServerGroupAny) ServerAny() *System_Aaa_ServerGroup_ServerAny { - return &System_Aaa_ServerGroup_ServerAny{ +// ServerAny returns from System_Aaa_ServerGroupPathAny the path struct for its child "server". +func (n *System_Aaa_ServerGroupPathAny) ServerAny() *System_Aaa_ServerGroup_ServerPathAny { + return &System_Aaa_ServerGroup_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -163666,9 +163693,9 @@ func (n *System_Aaa_ServerGroupAny) ServerAny() *System_Aaa_ServerGroup_ServerAn } } -// Server returns from System_Aaa_ServerGroup the path struct for its child "server". -func (n *System_Aaa_ServerGroup) Server(Address string) *System_Aaa_ServerGroup_Server { - return &System_Aaa_ServerGroup_Server{ +// Server returns from System_Aaa_ServerGroupPath the path struct for its child "server". +func (n *System_Aaa_ServerGroupPath) Server(Address string) *System_Aaa_ServerGroup_ServerPath { + return &System_Aaa_ServerGroup_ServerPath{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -163677,9 +163704,9 @@ func (n *System_Aaa_ServerGroup) Server(Address string) *System_Aaa_ServerGroup_ } } -// Server returns from System_Aaa_ServerGroupAny the path struct for its child "server". -func (n *System_Aaa_ServerGroupAny) Server(Address string) *System_Aaa_ServerGroup_ServerAny { - return &System_Aaa_ServerGroup_ServerAny{ +// Server returns from System_Aaa_ServerGroupPathAny the path struct for its child "server". +func (n *System_Aaa_ServerGroupPathAny) Server(Address string) *System_Aaa_ServerGroup_ServerPathAny { + return &System_Aaa_ServerGroup_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -163688,173 +163715,173 @@ func (n *System_Aaa_ServerGroupAny) Server(Address string) *System_Aaa_ServerGro } } -// Type returns from System_Aaa_ServerGroup the path struct for its child "type". -func (n *System_Aaa_ServerGroup) Type() *System_Aaa_ServerGroup_Type { - return &System_Aaa_ServerGroup_Type{ +// Type returns from System_Aaa_ServerGroupPath the path struct for its child "type". +func (n *System_Aaa_ServerGroupPath) Type() *System_Aaa_ServerGroup_TypePath { + return &System_Aaa_ServerGroup_TypePath{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// Type returns from System_Aaa_ServerGroupAny the path struct for its child "type". -func (n *System_Aaa_ServerGroupAny) Type() *System_Aaa_ServerGroup_TypeAny { - return &System_Aaa_ServerGroup_TypeAny{ +// Type returns from System_Aaa_ServerGroupPathAny the path struct for its child "type". +func (n *System_Aaa_ServerGroupPathAny) Type() *System_Aaa_ServerGroup_TypePathAny { + return &System_Aaa_ServerGroup_TypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "type"}, + []string{"config", "type"}, map[string]interface{}{}, n, ), } } -// System_Aaa_ServerGroup_Server represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server YANG schema element. -type System_Aaa_ServerGroup_Server struct { +// System_Aaa_ServerGroup_ServerPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server YANG schema element. +type System_Aaa_ServerGroup_ServerPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_ServerAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server YANG schema element. -type System_Aaa_ServerGroup_ServerAny struct { +// System_Aaa_ServerGroup_ServerPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server YANG schema element. +type System_Aaa_ServerGroup_ServerPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Address represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/address YANG schema element. -type System_Aaa_ServerGroup_Server_Address struct { +// System_Aaa_ServerGroup_Server_AddressPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/address YANG schema element. +type System_Aaa_ServerGroup_Server_AddressPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_AddressAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/address YANG schema element. -type System_Aaa_ServerGroup_Server_AddressAny struct { +// System_Aaa_ServerGroup_Server_AddressPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/address YANG schema element. +type System_Aaa_ServerGroup_Server_AddressPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionAborts represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-aborts YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionAborts struct { +// System_Aaa_ServerGroup_Server_ConnectionAbortsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-aborts YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionAbortsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionAbortsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-aborts YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionAbortsAny struct { +// System_Aaa_ServerGroup_Server_ConnectionAbortsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-aborts YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionAbortsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionCloses represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-closes YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionCloses struct { +// System_Aaa_ServerGroup_Server_ConnectionClosesPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-closes YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionClosesPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionClosesAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-closes YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionClosesAny struct { +// System_Aaa_ServerGroup_Server_ConnectionClosesPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-closes YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionClosesPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionFailures represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-failures YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionFailures struct { +// System_Aaa_ServerGroup_Server_ConnectionFailuresPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-failures YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionFailuresPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionFailuresAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-failures YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionFailuresAny struct { +// System_Aaa_ServerGroup_Server_ConnectionFailuresPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-failures YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionFailuresPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionOpens represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-opens YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionOpens struct { +// System_Aaa_ServerGroup_Server_ConnectionOpensPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-opens YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionOpensPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionOpensAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-opens YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionOpensAny struct { +// System_Aaa_ServerGroup_Server_ConnectionOpensPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-opens YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionOpensPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionTimeouts represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-timeouts YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionTimeouts struct { +// System_Aaa_ServerGroup_Server_ConnectionTimeoutsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-timeouts YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionTimeoutsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ConnectionTimeoutsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-timeouts YANG schema element. -type System_Aaa_ServerGroup_Server_ConnectionTimeoutsAny struct { +// System_Aaa_ServerGroup_Server_ConnectionTimeoutsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/connection-timeouts YANG schema element. +type System_Aaa_ServerGroup_Server_ConnectionTimeoutsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ErrorsReceived represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/errors-received YANG schema element. -type System_Aaa_ServerGroup_Server_ErrorsReceived struct { +// System_Aaa_ServerGroup_Server_ErrorsReceivedPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/errors-received YANG schema element. +type System_Aaa_ServerGroup_Server_ErrorsReceivedPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_ErrorsReceivedAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/errors-received YANG schema element. -type System_Aaa_ServerGroup_Server_ErrorsReceivedAny struct { +// System_Aaa_ServerGroup_Server_ErrorsReceivedPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/errors-received YANG schema element. +type System_Aaa_ServerGroup_Server_ErrorsReceivedPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_MessagesReceived represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-received YANG schema element. -type System_Aaa_ServerGroup_Server_MessagesReceived struct { +// System_Aaa_ServerGroup_Server_MessagesReceivedPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-received YANG schema element. +type System_Aaa_ServerGroup_Server_MessagesReceivedPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_MessagesReceivedAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-received YANG schema element. -type System_Aaa_ServerGroup_Server_MessagesReceivedAny struct { +// System_Aaa_ServerGroup_Server_MessagesReceivedPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-received YANG schema element. +type System_Aaa_ServerGroup_Server_MessagesReceivedPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_MessagesSent represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-sent YANG schema element. -type System_Aaa_ServerGroup_Server_MessagesSent struct { +// System_Aaa_ServerGroup_Server_MessagesSentPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-sent YANG schema element. +type System_Aaa_ServerGroup_Server_MessagesSentPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_MessagesSentAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-sent YANG schema element. -type System_Aaa_ServerGroup_Server_MessagesSentAny struct { +// System_Aaa_ServerGroup_Server_MessagesSentPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/messages-sent YANG schema element. +type System_Aaa_ServerGroup_Server_MessagesSentPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Name represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/name YANG schema element. -type System_Aaa_ServerGroup_Server_Name struct { +// System_Aaa_ServerGroup_Server_NamePath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/name YANG schema element. +type System_Aaa_ServerGroup_Server_NamePath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_NameAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/name YANG schema element. -type System_Aaa_ServerGroup_Server_NameAny struct { +// System_Aaa_ServerGroup_Server_NamePathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/name YANG schema element. +type System_Aaa_ServerGroup_Server_NamePathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Timeout represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/timeout YANG schema element. -type System_Aaa_ServerGroup_Server_Timeout struct { +// System_Aaa_ServerGroup_Server_TimeoutPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/timeout YANG schema element. +type System_Aaa_ServerGroup_Server_TimeoutPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_TimeoutAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/state/timeout YANG schema element. -type System_Aaa_ServerGroup_Server_TimeoutAny struct { +// System_Aaa_ServerGroup_Server_TimeoutPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/config/timeout YANG schema element. +type System_Aaa_ServerGroup_Server_TimeoutPathAny struct { *ygot.NodePath } -// Address returns from System_Aaa_ServerGroup_Server the path struct for its child "address". -func (n *System_Aaa_ServerGroup_Server) Address() *System_Aaa_ServerGroup_Server_Address { - return &System_Aaa_ServerGroup_Server_Address{ +// Address returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "address". +func (n *System_Aaa_ServerGroup_ServerPath) Address() *System_Aaa_ServerGroup_Server_AddressPath { + return &System_Aaa_ServerGroup_Server_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "address". -func (n *System_Aaa_ServerGroup_ServerAny) Address() *System_Aaa_ServerGroup_Server_AddressAny { - return &System_Aaa_ServerGroup_Server_AddressAny{ +// Address returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "address". +func (n *System_Aaa_ServerGroup_ServerPathAny) Address() *System_Aaa_ServerGroup_Server_AddressPathAny { + return &System_Aaa_ServerGroup_Server_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// ConnectionAborts returns from System_Aaa_ServerGroup_Server the path struct for its child "connection-aborts". -func (n *System_Aaa_ServerGroup_Server) ConnectionAborts() *System_Aaa_ServerGroup_Server_ConnectionAborts { - return &System_Aaa_ServerGroup_Server_ConnectionAborts{ +// ConnectionAborts returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "connection-aborts". +func (n *System_Aaa_ServerGroup_ServerPath) ConnectionAborts() *System_Aaa_ServerGroup_Server_ConnectionAbortsPath { + return &System_Aaa_ServerGroup_Server_ConnectionAbortsPath{ NodePath: ygot.NewNodePath( []string{"state", "connection-aborts"}, map[string]interface{}{}, @@ -163863,9 +163890,9 @@ func (n *System_Aaa_ServerGroup_Server) ConnectionAborts() *System_Aaa_ServerGro } } -// ConnectionAborts returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "connection-aborts". -func (n *System_Aaa_ServerGroup_ServerAny) ConnectionAborts() *System_Aaa_ServerGroup_Server_ConnectionAbortsAny { - return &System_Aaa_ServerGroup_Server_ConnectionAbortsAny{ +// ConnectionAborts returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "connection-aborts". +func (n *System_Aaa_ServerGroup_ServerPathAny) ConnectionAborts() *System_Aaa_ServerGroup_Server_ConnectionAbortsPathAny { + return &System_Aaa_ServerGroup_Server_ConnectionAbortsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "connection-aborts"}, map[string]interface{}{}, @@ -163874,9 +163901,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ConnectionAborts() *System_Aaa_Server } } -// ConnectionCloses returns from System_Aaa_ServerGroup_Server the path struct for its child "connection-closes". -func (n *System_Aaa_ServerGroup_Server) ConnectionCloses() *System_Aaa_ServerGroup_Server_ConnectionCloses { - return &System_Aaa_ServerGroup_Server_ConnectionCloses{ +// ConnectionCloses returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "connection-closes". +func (n *System_Aaa_ServerGroup_ServerPath) ConnectionCloses() *System_Aaa_ServerGroup_Server_ConnectionClosesPath { + return &System_Aaa_ServerGroup_Server_ConnectionClosesPath{ NodePath: ygot.NewNodePath( []string{"state", "connection-closes"}, map[string]interface{}{}, @@ -163885,9 +163912,9 @@ func (n *System_Aaa_ServerGroup_Server) ConnectionCloses() *System_Aaa_ServerGro } } -// ConnectionCloses returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "connection-closes". -func (n *System_Aaa_ServerGroup_ServerAny) ConnectionCloses() *System_Aaa_ServerGroup_Server_ConnectionClosesAny { - return &System_Aaa_ServerGroup_Server_ConnectionClosesAny{ +// ConnectionCloses returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "connection-closes". +func (n *System_Aaa_ServerGroup_ServerPathAny) ConnectionCloses() *System_Aaa_ServerGroup_Server_ConnectionClosesPathAny { + return &System_Aaa_ServerGroup_Server_ConnectionClosesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "connection-closes"}, map[string]interface{}{}, @@ -163896,9 +163923,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ConnectionCloses() *System_Aaa_Server } } -// ConnectionFailures returns from System_Aaa_ServerGroup_Server the path struct for its child "connection-failures". -func (n *System_Aaa_ServerGroup_Server) ConnectionFailures() *System_Aaa_ServerGroup_Server_ConnectionFailures { - return &System_Aaa_ServerGroup_Server_ConnectionFailures{ +// ConnectionFailures returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "connection-failures". +func (n *System_Aaa_ServerGroup_ServerPath) ConnectionFailures() *System_Aaa_ServerGroup_Server_ConnectionFailuresPath { + return &System_Aaa_ServerGroup_Server_ConnectionFailuresPath{ NodePath: ygot.NewNodePath( []string{"state", "connection-failures"}, map[string]interface{}{}, @@ -163907,9 +163934,9 @@ func (n *System_Aaa_ServerGroup_Server) ConnectionFailures() *System_Aaa_ServerG } } -// ConnectionFailures returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "connection-failures". -func (n *System_Aaa_ServerGroup_ServerAny) ConnectionFailures() *System_Aaa_ServerGroup_Server_ConnectionFailuresAny { - return &System_Aaa_ServerGroup_Server_ConnectionFailuresAny{ +// ConnectionFailures returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "connection-failures". +func (n *System_Aaa_ServerGroup_ServerPathAny) ConnectionFailures() *System_Aaa_ServerGroup_Server_ConnectionFailuresPathAny { + return &System_Aaa_ServerGroup_Server_ConnectionFailuresPathAny{ NodePath: ygot.NewNodePath( []string{"state", "connection-failures"}, map[string]interface{}{}, @@ -163918,9 +163945,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ConnectionFailures() *System_Aaa_Serv } } -// ConnectionOpens returns from System_Aaa_ServerGroup_Server the path struct for its child "connection-opens". -func (n *System_Aaa_ServerGroup_Server) ConnectionOpens() *System_Aaa_ServerGroup_Server_ConnectionOpens { - return &System_Aaa_ServerGroup_Server_ConnectionOpens{ +// ConnectionOpens returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "connection-opens". +func (n *System_Aaa_ServerGroup_ServerPath) ConnectionOpens() *System_Aaa_ServerGroup_Server_ConnectionOpensPath { + return &System_Aaa_ServerGroup_Server_ConnectionOpensPath{ NodePath: ygot.NewNodePath( []string{"state", "connection-opens"}, map[string]interface{}{}, @@ -163929,9 +163956,9 @@ func (n *System_Aaa_ServerGroup_Server) ConnectionOpens() *System_Aaa_ServerGrou } } -// ConnectionOpens returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "connection-opens". -func (n *System_Aaa_ServerGroup_ServerAny) ConnectionOpens() *System_Aaa_ServerGroup_Server_ConnectionOpensAny { - return &System_Aaa_ServerGroup_Server_ConnectionOpensAny{ +// ConnectionOpens returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "connection-opens". +func (n *System_Aaa_ServerGroup_ServerPathAny) ConnectionOpens() *System_Aaa_ServerGroup_Server_ConnectionOpensPathAny { + return &System_Aaa_ServerGroup_Server_ConnectionOpensPathAny{ NodePath: ygot.NewNodePath( []string{"state", "connection-opens"}, map[string]interface{}{}, @@ -163940,9 +163967,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ConnectionOpens() *System_Aaa_ServerG } } -// ConnectionTimeouts returns from System_Aaa_ServerGroup_Server the path struct for its child "connection-timeouts". -func (n *System_Aaa_ServerGroup_Server) ConnectionTimeouts() *System_Aaa_ServerGroup_Server_ConnectionTimeouts { - return &System_Aaa_ServerGroup_Server_ConnectionTimeouts{ +// ConnectionTimeouts returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "connection-timeouts". +func (n *System_Aaa_ServerGroup_ServerPath) ConnectionTimeouts() *System_Aaa_ServerGroup_Server_ConnectionTimeoutsPath { + return &System_Aaa_ServerGroup_Server_ConnectionTimeoutsPath{ NodePath: ygot.NewNodePath( []string{"state", "connection-timeouts"}, map[string]interface{}{}, @@ -163951,9 +163978,9 @@ func (n *System_Aaa_ServerGroup_Server) ConnectionTimeouts() *System_Aaa_ServerG } } -// ConnectionTimeouts returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "connection-timeouts". -func (n *System_Aaa_ServerGroup_ServerAny) ConnectionTimeouts() *System_Aaa_ServerGroup_Server_ConnectionTimeoutsAny { - return &System_Aaa_ServerGroup_Server_ConnectionTimeoutsAny{ +// ConnectionTimeouts returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "connection-timeouts". +func (n *System_Aaa_ServerGroup_ServerPathAny) ConnectionTimeouts() *System_Aaa_ServerGroup_Server_ConnectionTimeoutsPathAny { + return &System_Aaa_ServerGroup_Server_ConnectionTimeoutsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "connection-timeouts"}, map[string]interface{}{}, @@ -163962,9 +163989,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ConnectionTimeouts() *System_Aaa_Serv } } -// ErrorsReceived returns from System_Aaa_ServerGroup_Server the path struct for its child "errors-received". -func (n *System_Aaa_ServerGroup_Server) ErrorsReceived() *System_Aaa_ServerGroup_Server_ErrorsReceived { - return &System_Aaa_ServerGroup_Server_ErrorsReceived{ +// ErrorsReceived returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "errors-received". +func (n *System_Aaa_ServerGroup_ServerPath) ErrorsReceived() *System_Aaa_ServerGroup_Server_ErrorsReceivedPath { + return &System_Aaa_ServerGroup_Server_ErrorsReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "errors-received"}, map[string]interface{}{}, @@ -163973,9 +164000,9 @@ func (n *System_Aaa_ServerGroup_Server) ErrorsReceived() *System_Aaa_ServerGroup } } -// ErrorsReceived returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "errors-received". -func (n *System_Aaa_ServerGroup_ServerAny) ErrorsReceived() *System_Aaa_ServerGroup_Server_ErrorsReceivedAny { - return &System_Aaa_ServerGroup_Server_ErrorsReceivedAny{ +// ErrorsReceived returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "errors-received". +func (n *System_Aaa_ServerGroup_ServerPathAny) ErrorsReceived() *System_Aaa_ServerGroup_Server_ErrorsReceivedPathAny { + return &System_Aaa_ServerGroup_Server_ErrorsReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "errors-received"}, map[string]interface{}{}, @@ -163984,9 +164011,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) ErrorsReceived() *System_Aaa_ServerGr } } -// MessagesReceived returns from System_Aaa_ServerGroup_Server the path struct for its child "messages-received". -func (n *System_Aaa_ServerGroup_Server) MessagesReceived() *System_Aaa_ServerGroup_Server_MessagesReceived { - return &System_Aaa_ServerGroup_Server_MessagesReceived{ +// MessagesReceived returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "messages-received". +func (n *System_Aaa_ServerGroup_ServerPath) MessagesReceived() *System_Aaa_ServerGroup_Server_MessagesReceivedPath { + return &System_Aaa_ServerGroup_Server_MessagesReceivedPath{ NodePath: ygot.NewNodePath( []string{"state", "messages-received"}, map[string]interface{}{}, @@ -163995,9 +164022,9 @@ func (n *System_Aaa_ServerGroup_Server) MessagesReceived() *System_Aaa_ServerGro } } -// MessagesReceived returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "messages-received". -func (n *System_Aaa_ServerGroup_ServerAny) MessagesReceived() *System_Aaa_ServerGroup_Server_MessagesReceivedAny { - return &System_Aaa_ServerGroup_Server_MessagesReceivedAny{ +// MessagesReceived returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "messages-received". +func (n *System_Aaa_ServerGroup_ServerPathAny) MessagesReceived() *System_Aaa_ServerGroup_Server_MessagesReceivedPathAny { + return &System_Aaa_ServerGroup_Server_MessagesReceivedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "messages-received"}, map[string]interface{}{}, @@ -164006,9 +164033,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) MessagesReceived() *System_Aaa_Server } } -// MessagesSent returns from System_Aaa_ServerGroup_Server the path struct for its child "messages-sent". -func (n *System_Aaa_ServerGroup_Server) MessagesSent() *System_Aaa_ServerGroup_Server_MessagesSent { - return &System_Aaa_ServerGroup_Server_MessagesSent{ +// MessagesSent returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "messages-sent". +func (n *System_Aaa_ServerGroup_ServerPath) MessagesSent() *System_Aaa_ServerGroup_Server_MessagesSentPath { + return &System_Aaa_ServerGroup_Server_MessagesSentPath{ NodePath: ygot.NewNodePath( []string{"state", "messages-sent"}, map[string]interface{}{}, @@ -164017,9 +164044,9 @@ func (n *System_Aaa_ServerGroup_Server) MessagesSent() *System_Aaa_ServerGroup_S } } -// MessagesSent returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "messages-sent". -func (n *System_Aaa_ServerGroup_ServerAny) MessagesSent() *System_Aaa_ServerGroup_Server_MessagesSentAny { - return &System_Aaa_ServerGroup_Server_MessagesSentAny{ +// MessagesSent returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "messages-sent". +func (n *System_Aaa_ServerGroup_ServerPathAny) MessagesSent() *System_Aaa_ServerGroup_Server_MessagesSentPathAny { + return &System_Aaa_ServerGroup_Server_MessagesSentPathAny{ NodePath: ygot.NewNodePath( []string{"state", "messages-sent"}, map[string]interface{}{}, @@ -164028,31 +164055,31 @@ func (n *System_Aaa_ServerGroup_ServerAny) MessagesSent() *System_Aaa_ServerGrou } } -// Name returns from System_Aaa_ServerGroup_Server the path struct for its child "name". -func (n *System_Aaa_ServerGroup_Server) Name() *System_Aaa_ServerGroup_Server_Name { - return &System_Aaa_ServerGroup_Server_Name{ +// Name returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "name". +func (n *System_Aaa_ServerGroup_ServerPath) Name() *System_Aaa_ServerGroup_Server_NamePath { + return &System_Aaa_ServerGroup_Server_NamePath{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Name returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "name". -func (n *System_Aaa_ServerGroup_ServerAny) Name() *System_Aaa_ServerGroup_Server_NameAny { - return &System_Aaa_ServerGroup_Server_NameAny{ +// Name returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "name". +func (n *System_Aaa_ServerGroup_ServerPathAny) Name() *System_Aaa_ServerGroup_Server_NamePathAny { + return &System_Aaa_ServerGroup_Server_NamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "name"}, + []string{"config", "name"}, map[string]interface{}{}, n, ), } } -// Radius returns from System_Aaa_ServerGroup_Server the path struct for its child "radius". -func (n *System_Aaa_ServerGroup_Server) Radius() *System_Aaa_ServerGroup_Server_Radius { - return &System_Aaa_ServerGroup_Server_Radius{ +// Radius returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "radius". +func (n *System_Aaa_ServerGroup_ServerPath) Radius() *System_Aaa_ServerGroup_Server_RadiusPath { + return &System_Aaa_ServerGroup_Server_RadiusPath{ NodePath: ygot.NewNodePath( []string{"radius"}, map[string]interface{}{}, @@ -164061,9 +164088,9 @@ func (n *System_Aaa_ServerGroup_Server) Radius() *System_Aaa_ServerGroup_Server_ } } -// Radius returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "radius". -func (n *System_Aaa_ServerGroup_ServerAny) Radius() *System_Aaa_ServerGroup_Server_RadiusAny { - return &System_Aaa_ServerGroup_Server_RadiusAny{ +// Radius returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "radius". +func (n *System_Aaa_ServerGroup_ServerPathAny) Radius() *System_Aaa_ServerGroup_Server_RadiusPathAny { + return &System_Aaa_ServerGroup_Server_RadiusPathAny{ NodePath: ygot.NewNodePath( []string{"radius"}, map[string]interface{}{}, @@ -164072,9 +164099,9 @@ func (n *System_Aaa_ServerGroup_ServerAny) Radius() *System_Aaa_ServerGroup_Serv } } -// Tacacs returns from System_Aaa_ServerGroup_Server the path struct for its child "tacacs". -func (n *System_Aaa_ServerGroup_Server) Tacacs() *System_Aaa_ServerGroup_Server_Tacacs { - return &System_Aaa_ServerGroup_Server_Tacacs{ +// Tacacs returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "tacacs". +func (n *System_Aaa_ServerGroup_ServerPath) Tacacs() *System_Aaa_ServerGroup_Server_TacacsPath { + return &System_Aaa_ServerGroup_Server_TacacsPath{ NodePath: ygot.NewNodePath( []string{"tacacs"}, map[string]interface{}{}, @@ -164083,9 +164110,9 @@ func (n *System_Aaa_ServerGroup_Server) Tacacs() *System_Aaa_ServerGroup_Server_ } } -// Tacacs returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "tacacs". -func (n *System_Aaa_ServerGroup_ServerAny) Tacacs() *System_Aaa_ServerGroup_Server_TacacsAny { - return &System_Aaa_ServerGroup_Server_TacacsAny{ +// Tacacs returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "tacacs". +func (n *System_Aaa_ServerGroup_ServerPathAny) Tacacs() *System_Aaa_ServerGroup_Server_TacacsPathAny { + return &System_Aaa_ServerGroup_Server_TacacsPathAny{ NodePath: ygot.NewNodePath( []string{"tacacs"}, map[string]interface{}{}, @@ -164094,135 +164121,135 @@ func (n *System_Aaa_ServerGroup_ServerAny) Tacacs() *System_Aaa_ServerGroup_Serv } } -// Timeout returns from System_Aaa_ServerGroup_Server the path struct for its child "timeout". -func (n *System_Aaa_ServerGroup_Server) Timeout() *System_Aaa_ServerGroup_Server_Timeout { - return &System_Aaa_ServerGroup_Server_Timeout{ +// Timeout returns from System_Aaa_ServerGroup_ServerPath the path struct for its child "timeout". +func (n *System_Aaa_ServerGroup_ServerPath) Timeout() *System_Aaa_ServerGroup_Server_TimeoutPath { + return &System_Aaa_ServerGroup_Server_TimeoutPath{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// Timeout returns from System_Aaa_ServerGroup_ServerAny the path struct for its child "timeout". -func (n *System_Aaa_ServerGroup_ServerAny) Timeout() *System_Aaa_ServerGroup_Server_TimeoutAny { - return &System_Aaa_ServerGroup_Server_TimeoutAny{ +// Timeout returns from System_Aaa_ServerGroup_ServerPathAny the path struct for its child "timeout". +func (n *System_Aaa_ServerGroup_ServerPathAny) Timeout() *System_Aaa_ServerGroup_Server_TimeoutPathAny { + return &System_Aaa_ServerGroup_Server_TimeoutPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// System_Aaa_ServerGroup_Server_Radius represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius YANG schema element. -type System_Aaa_ServerGroup_Server_Radius struct { +// System_Aaa_ServerGroup_Server_RadiusPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius YANG schema element. +type System_Aaa_ServerGroup_Server_RadiusPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_RadiusAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius YANG schema element. -type System_Aaa_ServerGroup_Server_RadiusAny struct { +// System_Aaa_ServerGroup_Server_RadiusPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius YANG schema element. +type System_Aaa_ServerGroup_Server_RadiusPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_AcctPort represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/acct-port YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_AcctPort struct { +// System_Aaa_ServerGroup_Server_Radius_AcctPortPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/acct-port YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_AcctPortPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_AcctPortAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/acct-port YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_AcctPortAny struct { +// System_Aaa_ServerGroup_Server_Radius_AcctPortPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/acct-port YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_AcctPortPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_AuthPort represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/auth-port YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_AuthPort struct { +// System_Aaa_ServerGroup_Server_Radius_AuthPortPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/auth-port YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_AuthPortPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_AuthPortAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/auth-port YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_AuthPortAny struct { +// System_Aaa_ServerGroup_Server_Radius_AuthPortPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/auth-port YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_AuthPortPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_RetransmitAttempts represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/retransmit-attempts YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_RetransmitAttempts struct { +// System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/retransmit-attempts YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/retransmit-attempts YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsAny struct { +// System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/retransmit-attempts YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_SecretKey represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/secret-key YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_SecretKey struct { +// System_Aaa_ServerGroup_Server_Radius_SecretKeyPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/secret-key YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_SecretKeyPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_SecretKeyAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/secret-key YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_SecretKeyAny struct { +// System_Aaa_ServerGroup_Server_Radius_SecretKeyPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/secret-key YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_SecretKeyPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_SourceAddress represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/source-address YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_SourceAddress struct { +// System_Aaa_ServerGroup_Server_Radius_SourceAddressPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/source-address YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_SourceAddressPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_SourceAddressAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/source-address YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_SourceAddressAny struct { +// System_Aaa_ServerGroup_Server_Radius_SourceAddressPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/config/source-address YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_SourceAddressPathAny struct { *ygot.NodePath } -// AcctPort returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "acct-port". -func (n *System_Aaa_ServerGroup_Server_Radius) AcctPort() *System_Aaa_ServerGroup_Server_Radius_AcctPort { - return &System_Aaa_ServerGroup_Server_Radius_AcctPort{ +// AcctPort returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "acct-port". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) AcctPort() *System_Aaa_ServerGroup_Server_Radius_AcctPortPath { + return &System_Aaa_ServerGroup_Server_Radius_AcctPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "acct-port"}, + []string{"config", "acct-port"}, map[string]interface{}{}, n, ), } } -// AcctPort returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "acct-port". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) AcctPort() *System_Aaa_ServerGroup_Server_Radius_AcctPortAny { - return &System_Aaa_ServerGroup_Server_Radius_AcctPortAny{ +// AcctPort returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "acct-port". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) AcctPort() *System_Aaa_ServerGroup_Server_Radius_AcctPortPathAny { + return &System_Aaa_ServerGroup_Server_Radius_AcctPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "acct-port"}, + []string{"config", "acct-port"}, map[string]interface{}{}, n, ), } } -// AuthPort returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "auth-port". -func (n *System_Aaa_ServerGroup_Server_Radius) AuthPort() *System_Aaa_ServerGroup_Server_Radius_AuthPort { - return &System_Aaa_ServerGroup_Server_Radius_AuthPort{ +// AuthPort returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "auth-port". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) AuthPort() *System_Aaa_ServerGroup_Server_Radius_AuthPortPath { + return &System_Aaa_ServerGroup_Server_Radius_AuthPortPath{ NodePath: ygot.NewNodePath( - []string{"state", "auth-port"}, + []string{"config", "auth-port"}, map[string]interface{}{}, n, ), } } -// AuthPort returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "auth-port". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) AuthPort() *System_Aaa_ServerGroup_Server_Radius_AuthPortAny { - return &System_Aaa_ServerGroup_Server_Radius_AuthPortAny{ +// AuthPort returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "auth-port". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) AuthPort() *System_Aaa_ServerGroup_Server_Radius_AuthPortPathAny { + return &System_Aaa_ServerGroup_Server_Radius_AuthPortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "auth-port"}, + []string{"config", "auth-port"}, map[string]interface{}{}, n, ), } } -// Counters returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "counters". -func (n *System_Aaa_ServerGroup_Server_Radius) Counters() *System_Aaa_ServerGroup_Server_Radius_Counters { - return &System_Aaa_ServerGroup_Server_Radius_Counters{ +// Counters returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "counters". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) Counters() *System_Aaa_ServerGroup_Server_Radius_CountersPath { + return &System_Aaa_ServerGroup_Server_Radius_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -164231,9 +164258,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius) Counters() *System_Aaa_ServerGrou } } -// Counters returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "counters". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) Counters() *System_Aaa_ServerGroup_Server_Radius_CountersAny { - return &System_Aaa_ServerGroup_Server_Radius_CountersAny{ +// Counters returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "counters". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) Counters() *System_Aaa_ServerGroup_Server_Radius_CountersPathAny { + return &System_Aaa_ServerGroup_Server_Radius_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -164242,125 +164269,125 @@ func (n *System_Aaa_ServerGroup_Server_RadiusAny) Counters() *System_Aaa_ServerG } } -// RetransmitAttempts returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "retransmit-attempts". -func (n *System_Aaa_ServerGroup_Server_Radius) RetransmitAttempts() *System_Aaa_ServerGroup_Server_Radius_RetransmitAttempts { - return &System_Aaa_ServerGroup_Server_Radius_RetransmitAttempts{ +// RetransmitAttempts returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "retransmit-attempts". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) RetransmitAttempts() *System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPath { + return &System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPath{ NodePath: ygot.NewNodePath( - []string{"state", "retransmit-attempts"}, + []string{"config", "retransmit-attempts"}, map[string]interface{}{}, n, ), } } -// RetransmitAttempts returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "retransmit-attempts". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) RetransmitAttempts() *System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsAny { - return &System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsAny{ +// RetransmitAttempts returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "retransmit-attempts". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) RetransmitAttempts() *System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPathAny { + return &System_Aaa_ServerGroup_Server_Radius_RetransmitAttemptsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "retransmit-attempts"}, + []string{"config", "retransmit-attempts"}, map[string]interface{}{}, n, ), } } -// SecretKey returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "secret-key". -func (n *System_Aaa_ServerGroup_Server_Radius) SecretKey() *System_Aaa_ServerGroup_Server_Radius_SecretKey { - return &System_Aaa_ServerGroup_Server_Radius_SecretKey{ +// SecretKey returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "secret-key". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) SecretKey() *System_Aaa_ServerGroup_Server_Radius_SecretKeyPath { + return &System_Aaa_ServerGroup_Server_Radius_SecretKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "secret-key"}, + []string{"config", "secret-key"}, map[string]interface{}{}, n, ), } } -// SecretKey returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "secret-key". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) SecretKey() *System_Aaa_ServerGroup_Server_Radius_SecretKeyAny { - return &System_Aaa_ServerGroup_Server_Radius_SecretKeyAny{ +// SecretKey returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "secret-key". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) SecretKey() *System_Aaa_ServerGroup_Server_Radius_SecretKeyPathAny { + return &System_Aaa_ServerGroup_Server_Radius_SecretKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "secret-key"}, + []string{"config", "secret-key"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from System_Aaa_ServerGroup_Server_Radius the path struct for its child "source-address". -func (n *System_Aaa_ServerGroup_Server_Radius) SourceAddress() *System_Aaa_ServerGroup_Server_Radius_SourceAddress { - return &System_Aaa_ServerGroup_Server_Radius_SourceAddress{ +// SourceAddress returns from System_Aaa_ServerGroup_Server_RadiusPath the path struct for its child "source-address". +func (n *System_Aaa_ServerGroup_Server_RadiusPath) SourceAddress() *System_Aaa_ServerGroup_Server_Radius_SourceAddressPath { + return &System_Aaa_ServerGroup_Server_Radius_SourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from System_Aaa_ServerGroup_Server_RadiusAny the path struct for its child "source-address". -func (n *System_Aaa_ServerGroup_Server_RadiusAny) SourceAddress() *System_Aaa_ServerGroup_Server_Radius_SourceAddressAny { - return &System_Aaa_ServerGroup_Server_Radius_SourceAddressAny{ +// SourceAddress returns from System_Aaa_ServerGroup_Server_RadiusPathAny the path struct for its child "source-address". +func (n *System_Aaa_ServerGroup_Server_RadiusPathAny) SourceAddress() *System_Aaa_ServerGroup_Server_Radius_SourceAddressPathAny { + return &System_Aaa_ServerGroup_Server_Radius_SourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// System_Aaa_ServerGroup_Server_Radius_Counters represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters struct { +// System_Aaa_ServerGroup_Server_Radius_CountersPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_CountersPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_CountersAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_CountersAny struct { +// System_Aaa_ServerGroup_Server_Radius_CountersPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_CountersPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_AccessAccepts represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-accepts YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_AccessAccepts struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-accepts YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-accepts YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsAny struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-accepts YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejects represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-rejects YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejects struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-rejects YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-rejects YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsAny struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/access-rejects YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequests represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/retried-access-requests YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequests struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/retried-access-requests YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/retried-access-requests YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsAny struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/retried-access-requests YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequests represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/timeout-access-requests YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequests struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/timeout-access-requests YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/timeout-access-requests YANG schema element. -type System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsAny struct { +// System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/radius/state/counters/timeout-access-requests YANG schema element. +type System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPathAny struct { *ygot.NodePath } -// AccessAccepts returns from System_Aaa_ServerGroup_Server_Radius_Counters the path struct for its child "access-accepts". -func (n *System_Aaa_ServerGroup_Server_Radius_Counters) AccessAccepts() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessAccepts { - return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessAccepts{ +// AccessAccepts returns from System_Aaa_ServerGroup_Server_Radius_CountersPath the path struct for its child "access-accepts". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPath) AccessAccepts() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPath { + return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPath{ NodePath: ygot.NewNodePath( []string{"access-accepts"}, map[string]interface{}{}, @@ -164369,9 +164396,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_Counters) AccessAccepts() *System_ } } -// AccessAccepts returns from System_Aaa_ServerGroup_Server_Radius_CountersAny the path struct for its child "access-accepts". -func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) AccessAccepts() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsAny { - return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsAny{ +// AccessAccepts returns from System_Aaa_ServerGroup_Server_Radius_CountersPathAny the path struct for its child "access-accepts". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPathAny) AccessAccepts() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPathAny { + return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessAcceptsPathAny{ NodePath: ygot.NewNodePath( []string{"access-accepts"}, map[string]interface{}{}, @@ -164380,9 +164407,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) AccessAccepts() *Syst } } -// AccessRejects returns from System_Aaa_ServerGroup_Server_Radius_Counters the path struct for its child "access-rejects". -func (n *System_Aaa_ServerGroup_Server_Radius_Counters) AccessRejects() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejects { - return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejects{ +// AccessRejects returns from System_Aaa_ServerGroup_Server_Radius_CountersPath the path struct for its child "access-rejects". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPath) AccessRejects() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPath { + return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPath{ NodePath: ygot.NewNodePath( []string{"access-rejects"}, map[string]interface{}{}, @@ -164391,9 +164418,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_Counters) AccessRejects() *System_ } } -// AccessRejects returns from System_Aaa_ServerGroup_Server_Radius_CountersAny the path struct for its child "access-rejects". -func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) AccessRejects() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsAny { - return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsAny{ +// AccessRejects returns from System_Aaa_ServerGroup_Server_Radius_CountersPathAny the path struct for its child "access-rejects". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPathAny) AccessRejects() *System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPathAny { + return &System_Aaa_ServerGroup_Server_Radius_Counters_AccessRejectsPathAny{ NodePath: ygot.NewNodePath( []string{"access-rejects"}, map[string]interface{}{}, @@ -164402,9 +164429,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) AccessRejects() *Syst } } -// RetriedAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_Counters the path struct for its child "retried-access-requests". -func (n *System_Aaa_ServerGroup_Server_Radius_Counters) RetriedAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequests { - return &System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequests{ +// RetriedAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersPath the path struct for its child "retried-access-requests". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPath) RetriedAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPath { + return &System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPath{ NodePath: ygot.NewNodePath( []string{"retried-access-requests"}, map[string]interface{}{}, @@ -164413,9 +164440,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_Counters) RetriedAccessRequests() } } -// RetriedAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersAny the path struct for its child "retried-access-requests". -func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) RetriedAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsAny { - return &System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsAny{ +// RetriedAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersPathAny the path struct for its child "retried-access-requests". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPathAny) RetriedAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPathAny { + return &System_Aaa_ServerGroup_Server_Radius_Counters_RetriedAccessRequestsPathAny{ NodePath: ygot.NewNodePath( []string{"retried-access-requests"}, map[string]interface{}{}, @@ -164424,9 +164451,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) RetriedAccessRequests } } -// TimeoutAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_Counters the path struct for its child "timeout-access-requests". -func (n *System_Aaa_ServerGroup_Server_Radius_Counters) TimeoutAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequests { - return &System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequests{ +// TimeoutAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersPath the path struct for its child "timeout-access-requests". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPath) TimeoutAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPath { + return &System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPath{ NodePath: ygot.NewNodePath( []string{"timeout-access-requests"}, map[string]interface{}{}, @@ -164435,9 +164462,9 @@ func (n *System_Aaa_ServerGroup_Server_Radius_Counters) TimeoutAccessRequests() } } -// TimeoutAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersAny the path struct for its child "timeout-access-requests". -func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) TimeoutAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsAny { - return &System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsAny{ +// TimeoutAccessRequests returns from System_Aaa_ServerGroup_Server_Radius_CountersPathAny the path struct for its child "timeout-access-requests". +func (n *System_Aaa_ServerGroup_Server_Radius_CountersPathAny) TimeoutAccessRequests() *System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPathAny { + return &System_Aaa_ServerGroup_Server_Radius_Counters_TimeoutAccessRequestsPathAny{ NodePath: ygot.NewNodePath( []string{"timeout-access-requests"}, map[string]interface{}{}, @@ -164446,185 +164473,185 @@ func (n *System_Aaa_ServerGroup_Server_Radius_CountersAny) TimeoutAccessRequests } } -// System_Aaa_ServerGroup_Server_Tacacs represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs struct { +// System_Aaa_ServerGroup_Server_TacacsPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs YANG schema element. +type System_Aaa_ServerGroup_Server_TacacsPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_TacacsAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs YANG schema element. -type System_Aaa_ServerGroup_Server_TacacsAny struct { +// System_Aaa_ServerGroup_Server_TacacsPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs YANG schema element. +type System_Aaa_ServerGroup_Server_TacacsPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_Port represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/port YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_Port struct { +// System_Aaa_ServerGroup_Server_Tacacs_PortPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/port YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_PortPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_PortAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/port YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_PortAny struct { +// System_Aaa_ServerGroup_Server_Tacacs_PortPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/port YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_PortPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_SecretKey represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/secret-key YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_SecretKey struct { +// System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/secret-key YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_SecretKeyAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/secret-key YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_SecretKeyAny struct { +// System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/secret-key YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPathAny struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_SourceAddress represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/source-address YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_SourceAddress struct { +// System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPath represents the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/source-address YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPath struct { *ygot.NodePath } -// System_Aaa_ServerGroup_Server_Tacacs_SourceAddressAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/state/source-address YANG schema element. -type System_Aaa_ServerGroup_Server_Tacacs_SourceAddressAny struct { +// System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPathAny represents the wildcard version of the /openconfig-system/system/aaa/server-groups/server-group/servers/server/tacacs/config/source-address YANG schema element. +type System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPathAny struct { *ygot.NodePath } -// Port returns from System_Aaa_ServerGroup_Server_Tacacs the path struct for its child "port". -func (n *System_Aaa_ServerGroup_Server_Tacacs) Port() *System_Aaa_ServerGroup_Server_Tacacs_Port { - return &System_Aaa_ServerGroup_Server_Tacacs_Port{ +// Port returns from System_Aaa_ServerGroup_Server_TacacsPath the path struct for its child "port". +func (n *System_Aaa_ServerGroup_Server_TacacsPath) Port() *System_Aaa_ServerGroup_Server_Tacacs_PortPath { + return &System_Aaa_ServerGroup_Server_Tacacs_PortPath{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// Port returns from System_Aaa_ServerGroup_Server_TacacsAny the path struct for its child "port". -func (n *System_Aaa_ServerGroup_Server_TacacsAny) Port() *System_Aaa_ServerGroup_Server_Tacacs_PortAny { - return &System_Aaa_ServerGroup_Server_Tacacs_PortAny{ +// Port returns from System_Aaa_ServerGroup_Server_TacacsPathAny the path struct for its child "port". +func (n *System_Aaa_ServerGroup_Server_TacacsPathAny) Port() *System_Aaa_ServerGroup_Server_Tacacs_PortPathAny { + return &System_Aaa_ServerGroup_Server_Tacacs_PortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// SecretKey returns from System_Aaa_ServerGroup_Server_Tacacs the path struct for its child "secret-key". -func (n *System_Aaa_ServerGroup_Server_Tacacs) SecretKey() *System_Aaa_ServerGroup_Server_Tacacs_SecretKey { - return &System_Aaa_ServerGroup_Server_Tacacs_SecretKey{ +// SecretKey returns from System_Aaa_ServerGroup_Server_TacacsPath the path struct for its child "secret-key". +func (n *System_Aaa_ServerGroup_Server_TacacsPath) SecretKey() *System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPath { + return &System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPath{ NodePath: ygot.NewNodePath( - []string{"state", "secret-key"}, + []string{"config", "secret-key"}, map[string]interface{}{}, n, ), } } -// SecretKey returns from System_Aaa_ServerGroup_Server_TacacsAny the path struct for its child "secret-key". -func (n *System_Aaa_ServerGroup_Server_TacacsAny) SecretKey() *System_Aaa_ServerGroup_Server_Tacacs_SecretKeyAny { - return &System_Aaa_ServerGroup_Server_Tacacs_SecretKeyAny{ +// SecretKey returns from System_Aaa_ServerGroup_Server_TacacsPathAny the path struct for its child "secret-key". +func (n *System_Aaa_ServerGroup_Server_TacacsPathAny) SecretKey() *System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPathAny { + return &System_Aaa_ServerGroup_Server_Tacacs_SecretKeyPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "secret-key"}, + []string{"config", "secret-key"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from System_Aaa_ServerGroup_Server_Tacacs the path struct for its child "source-address". -func (n *System_Aaa_ServerGroup_Server_Tacacs) SourceAddress() *System_Aaa_ServerGroup_Server_Tacacs_SourceAddress { - return &System_Aaa_ServerGroup_Server_Tacacs_SourceAddress{ +// SourceAddress returns from System_Aaa_ServerGroup_Server_TacacsPath the path struct for its child "source-address". +func (n *System_Aaa_ServerGroup_Server_TacacsPath) SourceAddress() *System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPath { + return &System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from System_Aaa_ServerGroup_Server_TacacsAny the path struct for its child "source-address". -func (n *System_Aaa_ServerGroup_Server_TacacsAny) SourceAddress() *System_Aaa_ServerGroup_Server_Tacacs_SourceAddressAny { - return &System_Aaa_ServerGroup_Server_Tacacs_SourceAddressAny{ +// SourceAddress returns from System_Aaa_ServerGroup_Server_TacacsPathAny the path struct for its child "source-address". +func (n *System_Aaa_ServerGroup_Server_TacacsPathAny) SourceAddress() *System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPathAny { + return &System_Aaa_ServerGroup_Server_Tacacs_SourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// System_Alarm represents the /openconfig-system/system/alarms/alarm YANG schema element. -type System_Alarm struct { +// System_AlarmPath represents the /openconfig-system/system/alarms/alarm YANG schema element. +type System_AlarmPath struct { *ygot.NodePath } -// System_AlarmAny represents the wildcard version of the /openconfig-system/system/alarms/alarm YANG schema element. -type System_AlarmAny struct { +// System_AlarmPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm YANG schema element. +type System_AlarmPathAny struct { *ygot.NodePath } -// System_Alarm_Id represents the /openconfig-system/system/alarms/alarm/state/id YANG schema element. -type System_Alarm_Id struct { +// System_Alarm_IdPath represents the /openconfig-system/system/alarms/alarm/state/id YANG schema element. +type System_Alarm_IdPath struct { *ygot.NodePath } -// System_Alarm_IdAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/id YANG schema element. -type System_Alarm_IdAny struct { +// System_Alarm_IdPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/id YANG schema element. +type System_Alarm_IdPathAny struct { *ygot.NodePath } -// System_Alarm_Resource represents the /openconfig-system/system/alarms/alarm/state/resource YANG schema element. -type System_Alarm_Resource struct { +// System_Alarm_ResourcePath represents the /openconfig-system/system/alarms/alarm/state/resource YANG schema element. +type System_Alarm_ResourcePath struct { *ygot.NodePath } -// System_Alarm_ResourceAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/resource YANG schema element. -type System_Alarm_ResourceAny struct { +// System_Alarm_ResourcePathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/resource YANG schema element. +type System_Alarm_ResourcePathAny struct { *ygot.NodePath } -// System_Alarm_Severity represents the /openconfig-system/system/alarms/alarm/state/severity YANG schema element. -type System_Alarm_Severity struct { +// System_Alarm_SeverityPath represents the /openconfig-system/system/alarms/alarm/state/severity YANG schema element. +type System_Alarm_SeverityPath struct { *ygot.NodePath } -// System_Alarm_SeverityAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/severity YANG schema element. -type System_Alarm_SeverityAny struct { +// System_Alarm_SeverityPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/severity YANG schema element. +type System_Alarm_SeverityPathAny struct { *ygot.NodePath } -// System_Alarm_Text represents the /openconfig-system/system/alarms/alarm/state/text YANG schema element. -type System_Alarm_Text struct { +// System_Alarm_TextPath represents the /openconfig-system/system/alarms/alarm/state/text YANG schema element. +type System_Alarm_TextPath struct { *ygot.NodePath } -// System_Alarm_TextAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/text YANG schema element. -type System_Alarm_TextAny struct { +// System_Alarm_TextPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/text YANG schema element. +type System_Alarm_TextPathAny struct { *ygot.NodePath } -// System_Alarm_TimeCreated represents the /openconfig-system/system/alarms/alarm/state/time-created YANG schema element. -type System_Alarm_TimeCreated struct { +// System_Alarm_TimeCreatedPath represents the /openconfig-system/system/alarms/alarm/state/time-created YANG schema element. +type System_Alarm_TimeCreatedPath struct { *ygot.NodePath } -// System_Alarm_TimeCreatedAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/time-created YANG schema element. -type System_Alarm_TimeCreatedAny struct { +// System_Alarm_TimeCreatedPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/time-created YANG schema element. +type System_Alarm_TimeCreatedPathAny struct { *ygot.NodePath } -// System_Alarm_TypeId represents the /openconfig-system/system/alarms/alarm/state/type-id YANG schema element. -type System_Alarm_TypeId struct { +// System_Alarm_TypeIdPath represents the /openconfig-system/system/alarms/alarm/state/type-id YANG schema element. +type System_Alarm_TypeIdPath struct { *ygot.NodePath } -// System_Alarm_TypeIdAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/type-id YANG schema element. -type System_Alarm_TypeIdAny struct { +// System_Alarm_TypeIdPathAny represents the wildcard version of the /openconfig-system/system/alarms/alarm/state/type-id YANG schema element. +type System_Alarm_TypeIdPathAny struct { *ygot.NodePath } -// Id returns from System_Alarm the path struct for its child "id". -func (n *System_Alarm) Id() *System_Alarm_Id { - return &System_Alarm_Id{ +// Id returns from System_AlarmPath the path struct for its child "id". +func (n *System_AlarmPath) Id() *System_Alarm_IdPath { + return &System_Alarm_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -164633,9 +164660,9 @@ func (n *System_Alarm) Id() *System_Alarm_Id { } } -// Id returns from System_AlarmAny the path struct for its child "id". -func (n *System_AlarmAny) Id() *System_Alarm_IdAny { - return &System_Alarm_IdAny{ +// Id returns from System_AlarmPathAny the path struct for its child "id". +func (n *System_AlarmPathAny) Id() *System_Alarm_IdPathAny { + return &System_Alarm_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -164644,9 +164671,9 @@ func (n *System_AlarmAny) Id() *System_Alarm_IdAny { } } -// Resource returns from System_Alarm the path struct for its child "resource". -func (n *System_Alarm) Resource() *System_Alarm_Resource { - return &System_Alarm_Resource{ +// Resource returns from System_AlarmPath the path struct for its child "resource". +func (n *System_AlarmPath) Resource() *System_Alarm_ResourcePath { + return &System_Alarm_ResourcePath{ NodePath: ygot.NewNodePath( []string{"state", "resource"}, map[string]interface{}{}, @@ -164655,9 +164682,9 @@ func (n *System_Alarm) Resource() *System_Alarm_Resource { } } -// Resource returns from System_AlarmAny the path struct for its child "resource". -func (n *System_AlarmAny) Resource() *System_Alarm_ResourceAny { - return &System_Alarm_ResourceAny{ +// Resource returns from System_AlarmPathAny the path struct for its child "resource". +func (n *System_AlarmPathAny) Resource() *System_Alarm_ResourcePathAny { + return &System_Alarm_ResourcePathAny{ NodePath: ygot.NewNodePath( []string{"state", "resource"}, map[string]interface{}{}, @@ -164666,9 +164693,9 @@ func (n *System_AlarmAny) Resource() *System_Alarm_ResourceAny { } } -// Severity returns from System_Alarm the path struct for its child "severity". -func (n *System_Alarm) Severity() *System_Alarm_Severity { - return &System_Alarm_Severity{ +// Severity returns from System_AlarmPath the path struct for its child "severity". +func (n *System_AlarmPath) Severity() *System_Alarm_SeverityPath { + return &System_Alarm_SeverityPath{ NodePath: ygot.NewNodePath( []string{"state", "severity"}, map[string]interface{}{}, @@ -164677,9 +164704,9 @@ func (n *System_Alarm) Severity() *System_Alarm_Severity { } } -// Severity returns from System_AlarmAny the path struct for its child "severity". -func (n *System_AlarmAny) Severity() *System_Alarm_SeverityAny { - return &System_Alarm_SeverityAny{ +// Severity returns from System_AlarmPathAny the path struct for its child "severity". +func (n *System_AlarmPathAny) Severity() *System_Alarm_SeverityPathAny { + return &System_Alarm_SeverityPathAny{ NodePath: ygot.NewNodePath( []string{"state", "severity"}, map[string]interface{}{}, @@ -164688,9 +164715,9 @@ func (n *System_AlarmAny) Severity() *System_Alarm_SeverityAny { } } -// Text returns from System_Alarm the path struct for its child "text". -func (n *System_Alarm) Text() *System_Alarm_Text { - return &System_Alarm_Text{ +// Text returns from System_AlarmPath the path struct for its child "text". +func (n *System_AlarmPath) Text() *System_Alarm_TextPath { + return &System_Alarm_TextPath{ NodePath: ygot.NewNodePath( []string{"state", "text"}, map[string]interface{}{}, @@ -164699,9 +164726,9 @@ func (n *System_Alarm) Text() *System_Alarm_Text { } } -// Text returns from System_AlarmAny the path struct for its child "text". -func (n *System_AlarmAny) Text() *System_Alarm_TextAny { - return &System_Alarm_TextAny{ +// Text returns from System_AlarmPathAny the path struct for its child "text". +func (n *System_AlarmPathAny) Text() *System_Alarm_TextPathAny { + return &System_Alarm_TextPathAny{ NodePath: ygot.NewNodePath( []string{"state", "text"}, map[string]interface{}{}, @@ -164710,9 +164737,9 @@ func (n *System_AlarmAny) Text() *System_Alarm_TextAny { } } -// TimeCreated returns from System_Alarm the path struct for its child "time-created". -func (n *System_Alarm) TimeCreated() *System_Alarm_TimeCreated { - return &System_Alarm_TimeCreated{ +// TimeCreated returns from System_AlarmPath the path struct for its child "time-created". +func (n *System_AlarmPath) TimeCreated() *System_Alarm_TimeCreatedPath { + return &System_Alarm_TimeCreatedPath{ NodePath: ygot.NewNodePath( []string{"state", "time-created"}, map[string]interface{}{}, @@ -164721,9 +164748,9 @@ func (n *System_Alarm) TimeCreated() *System_Alarm_TimeCreated { } } -// TimeCreated returns from System_AlarmAny the path struct for its child "time-created". -func (n *System_AlarmAny) TimeCreated() *System_Alarm_TimeCreatedAny { - return &System_Alarm_TimeCreatedAny{ +// TimeCreated returns from System_AlarmPathAny the path struct for its child "time-created". +func (n *System_AlarmPathAny) TimeCreated() *System_Alarm_TimeCreatedPathAny { + return &System_Alarm_TimeCreatedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "time-created"}, map[string]interface{}{}, @@ -164732,9 +164759,9 @@ func (n *System_AlarmAny) TimeCreated() *System_Alarm_TimeCreatedAny { } } -// TypeId returns from System_Alarm the path struct for its child "type-id". -func (n *System_Alarm) TypeId() *System_Alarm_TypeId { - return &System_Alarm_TypeId{ +// TypeId returns from System_AlarmPath the path struct for its child "type-id". +func (n *System_AlarmPath) TypeId() *System_Alarm_TypeIdPath { + return &System_Alarm_TypeIdPath{ NodePath: ygot.NewNodePath( []string{"state", "type-id"}, map[string]interface{}{}, @@ -164743,9 +164770,9 @@ func (n *System_Alarm) TypeId() *System_Alarm_TypeId { } } -// TypeId returns from System_AlarmAny the path struct for its child "type-id". -func (n *System_AlarmAny) TypeId() *System_Alarm_TypeIdAny { - return &System_Alarm_TypeIdAny{ +// TypeId returns from System_AlarmPathAny the path struct for its child "type-id". +func (n *System_AlarmPathAny) TypeId() *System_Alarm_TypeIdPathAny { + return &System_Alarm_TypeIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "type-id"}, map[string]interface{}{}, @@ -164754,71 +164781,71 @@ func (n *System_AlarmAny) TypeId() *System_Alarm_TypeIdAny { } } -// System_Clock represents the /openconfig-system/system/clock YANG schema element. -type System_Clock struct { +// System_ClockPath represents the /openconfig-system/system/clock YANG schema element. +type System_ClockPath struct { *ygot.NodePath } -// System_ClockAny represents the wildcard version of the /openconfig-system/system/clock YANG schema element. -type System_ClockAny struct { +// System_ClockPathAny represents the wildcard version of the /openconfig-system/system/clock YANG schema element. +type System_ClockPathAny struct { *ygot.NodePath } -// System_Clock_TimezoneName represents the /openconfig-system/system/clock/state/timezone-name YANG schema element. -type System_Clock_TimezoneName struct { +// System_Clock_TimezoneNamePath represents the /openconfig-system/system/clock/config/timezone-name YANG schema element. +type System_Clock_TimezoneNamePath struct { *ygot.NodePath } -// System_Clock_TimezoneNameAny represents the wildcard version of the /openconfig-system/system/clock/state/timezone-name YANG schema element. -type System_Clock_TimezoneNameAny struct { +// System_Clock_TimezoneNamePathAny represents the wildcard version of the /openconfig-system/system/clock/config/timezone-name YANG schema element. +type System_Clock_TimezoneNamePathAny struct { *ygot.NodePath } -// TimezoneName returns from System_Clock the path struct for its child "timezone-name". -func (n *System_Clock) TimezoneName() *System_Clock_TimezoneName { - return &System_Clock_TimezoneName{ +// TimezoneName returns from System_ClockPath the path struct for its child "timezone-name". +func (n *System_ClockPath) TimezoneName() *System_Clock_TimezoneNamePath { + return &System_Clock_TimezoneNamePath{ NodePath: ygot.NewNodePath( - []string{"state", "timezone-name"}, + []string{"config", "timezone-name"}, map[string]interface{}{}, n, ), } } -// TimezoneName returns from System_ClockAny the path struct for its child "timezone-name". -func (n *System_ClockAny) TimezoneName() *System_Clock_TimezoneNameAny { - return &System_Clock_TimezoneNameAny{ +// TimezoneName returns from System_ClockPathAny the path struct for its child "timezone-name". +func (n *System_ClockPathAny) TimezoneName() *System_Clock_TimezoneNamePathAny { + return &System_Clock_TimezoneNamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "timezone-name"}, + []string{"config", "timezone-name"}, map[string]interface{}{}, n, ), } } -// System_Cpu represents the /openconfig-system/system/cpus/cpu YANG schema element. -type System_Cpu struct { +// System_CpuPath represents the /openconfig-system/system/cpus/cpu YANG schema element. +type System_CpuPath struct { *ygot.NodePath } -// System_CpuAny represents the wildcard version of the /openconfig-system/system/cpus/cpu YANG schema element. -type System_CpuAny struct { +// System_CpuPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu YANG schema element. +type System_CpuPathAny struct { *ygot.NodePath } -// System_Cpu_Index represents the /openconfig-system/system/cpus/cpu/state/index YANG schema element. -type System_Cpu_Index struct { +// System_Cpu_IndexPath represents the /openconfig-system/system/cpus/cpu/state/index YANG schema element. +type System_Cpu_IndexPath struct { *ygot.NodePath } -// System_Cpu_IndexAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/index YANG schema element. -type System_Cpu_IndexAny struct { +// System_Cpu_IndexPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/index YANG schema element. +type System_Cpu_IndexPathAny struct { *ygot.NodePath } -// HardwareInterrupt returns from System_Cpu the path struct for its child "hardware-interrupt". -func (n *System_Cpu) HardwareInterrupt() *System_Cpu_HardwareInterrupt { - return &System_Cpu_HardwareInterrupt{ +// HardwareInterrupt returns from System_CpuPath the path struct for its child "hardware-interrupt". +func (n *System_CpuPath) HardwareInterrupt() *System_Cpu_HardwareInterruptPath { + return &System_Cpu_HardwareInterruptPath{ NodePath: ygot.NewNodePath( []string{"state", "hardware-interrupt"}, map[string]interface{}{}, @@ -164827,9 +164854,9 @@ func (n *System_Cpu) HardwareInterrupt() *System_Cpu_HardwareInterrupt { } } -// HardwareInterrupt returns from System_CpuAny the path struct for its child "hardware-interrupt". -func (n *System_CpuAny) HardwareInterrupt() *System_Cpu_HardwareInterruptAny { - return &System_Cpu_HardwareInterruptAny{ +// HardwareInterrupt returns from System_CpuPathAny the path struct for its child "hardware-interrupt". +func (n *System_CpuPathAny) HardwareInterrupt() *System_Cpu_HardwareInterruptPathAny { + return &System_Cpu_HardwareInterruptPathAny{ NodePath: ygot.NewNodePath( []string{"state", "hardware-interrupt"}, map[string]interface{}{}, @@ -164838,9 +164865,9 @@ func (n *System_CpuAny) HardwareInterrupt() *System_Cpu_HardwareInterruptAny { } } -// Idle returns from System_Cpu the path struct for its child "idle". -func (n *System_Cpu) Idle() *System_Cpu_Idle { - return &System_Cpu_Idle{ +// Idle returns from System_CpuPath the path struct for its child "idle". +func (n *System_CpuPath) Idle() *System_Cpu_IdlePath { + return &System_Cpu_IdlePath{ NodePath: ygot.NewNodePath( []string{"state", "idle"}, map[string]interface{}{}, @@ -164849,9 +164876,9 @@ func (n *System_Cpu) Idle() *System_Cpu_Idle { } } -// Idle returns from System_CpuAny the path struct for its child "idle". -func (n *System_CpuAny) Idle() *System_Cpu_IdleAny { - return &System_Cpu_IdleAny{ +// Idle returns from System_CpuPathAny the path struct for its child "idle". +func (n *System_CpuPathAny) Idle() *System_Cpu_IdlePathAny { + return &System_Cpu_IdlePathAny{ NodePath: ygot.NewNodePath( []string{"state", "idle"}, map[string]interface{}{}, @@ -164860,9 +164887,9 @@ func (n *System_CpuAny) Idle() *System_Cpu_IdleAny { } } -// Index returns from System_Cpu the path struct for its child "index". -func (n *System_Cpu) Index() *System_Cpu_Index { - return &System_Cpu_Index{ +// Index returns from System_CpuPath the path struct for its child "index". +func (n *System_CpuPath) Index() *System_Cpu_IndexPath { + return &System_Cpu_IndexPath{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -164871,9 +164898,9 @@ func (n *System_Cpu) Index() *System_Cpu_Index { } } -// Index returns from System_CpuAny the path struct for its child "index". -func (n *System_CpuAny) Index() *System_Cpu_IndexAny { - return &System_Cpu_IndexAny{ +// Index returns from System_CpuPathAny the path struct for its child "index". +func (n *System_CpuPathAny) Index() *System_Cpu_IndexPathAny { + return &System_Cpu_IndexPathAny{ NodePath: ygot.NewNodePath( []string{"state", "index"}, map[string]interface{}{}, @@ -164882,9 +164909,9 @@ func (n *System_CpuAny) Index() *System_Cpu_IndexAny { } } -// Kernel returns from System_Cpu the path struct for its child "kernel". -func (n *System_Cpu) Kernel() *System_Cpu_Kernel { - return &System_Cpu_Kernel{ +// Kernel returns from System_CpuPath the path struct for its child "kernel". +func (n *System_CpuPath) Kernel() *System_Cpu_KernelPath { + return &System_Cpu_KernelPath{ NodePath: ygot.NewNodePath( []string{"state", "kernel"}, map[string]interface{}{}, @@ -164893,9 +164920,9 @@ func (n *System_Cpu) Kernel() *System_Cpu_Kernel { } } -// Kernel returns from System_CpuAny the path struct for its child "kernel". -func (n *System_CpuAny) Kernel() *System_Cpu_KernelAny { - return &System_Cpu_KernelAny{ +// Kernel returns from System_CpuPathAny the path struct for its child "kernel". +func (n *System_CpuPathAny) Kernel() *System_Cpu_KernelPathAny { + return &System_Cpu_KernelPathAny{ NodePath: ygot.NewNodePath( []string{"state", "kernel"}, map[string]interface{}{}, @@ -164904,9 +164931,9 @@ func (n *System_CpuAny) Kernel() *System_Cpu_KernelAny { } } -// Nice returns from System_Cpu the path struct for its child "nice". -func (n *System_Cpu) Nice() *System_Cpu_Nice { - return &System_Cpu_Nice{ +// Nice returns from System_CpuPath the path struct for its child "nice". +func (n *System_CpuPath) Nice() *System_Cpu_NicePath { + return &System_Cpu_NicePath{ NodePath: ygot.NewNodePath( []string{"state", "nice"}, map[string]interface{}{}, @@ -164915,9 +164942,9 @@ func (n *System_Cpu) Nice() *System_Cpu_Nice { } } -// Nice returns from System_CpuAny the path struct for its child "nice". -func (n *System_CpuAny) Nice() *System_Cpu_NiceAny { - return &System_Cpu_NiceAny{ +// Nice returns from System_CpuPathAny the path struct for its child "nice". +func (n *System_CpuPathAny) Nice() *System_Cpu_NicePathAny { + return &System_Cpu_NicePathAny{ NodePath: ygot.NewNodePath( []string{"state", "nice"}, map[string]interface{}{}, @@ -164926,9 +164953,9 @@ func (n *System_CpuAny) Nice() *System_Cpu_NiceAny { } } -// SoftwareInterrupt returns from System_Cpu the path struct for its child "software-interrupt". -func (n *System_Cpu) SoftwareInterrupt() *System_Cpu_SoftwareInterrupt { - return &System_Cpu_SoftwareInterrupt{ +// SoftwareInterrupt returns from System_CpuPath the path struct for its child "software-interrupt". +func (n *System_CpuPath) SoftwareInterrupt() *System_Cpu_SoftwareInterruptPath { + return &System_Cpu_SoftwareInterruptPath{ NodePath: ygot.NewNodePath( []string{"state", "software-interrupt"}, map[string]interface{}{}, @@ -164937,9 +164964,9 @@ func (n *System_Cpu) SoftwareInterrupt() *System_Cpu_SoftwareInterrupt { } } -// SoftwareInterrupt returns from System_CpuAny the path struct for its child "software-interrupt". -func (n *System_CpuAny) SoftwareInterrupt() *System_Cpu_SoftwareInterruptAny { - return &System_Cpu_SoftwareInterruptAny{ +// SoftwareInterrupt returns from System_CpuPathAny the path struct for its child "software-interrupt". +func (n *System_CpuPathAny) SoftwareInterrupt() *System_Cpu_SoftwareInterruptPathAny { + return &System_Cpu_SoftwareInterruptPathAny{ NodePath: ygot.NewNodePath( []string{"state", "software-interrupt"}, map[string]interface{}{}, @@ -164948,9 +164975,9 @@ func (n *System_CpuAny) SoftwareInterrupt() *System_Cpu_SoftwareInterruptAny { } } -// Total returns from System_Cpu the path struct for its child "total". -func (n *System_Cpu) Total() *System_Cpu_Total { - return &System_Cpu_Total{ +// Total returns from System_CpuPath the path struct for its child "total". +func (n *System_CpuPath) Total() *System_Cpu_TotalPath { + return &System_Cpu_TotalPath{ NodePath: ygot.NewNodePath( []string{"state", "total"}, map[string]interface{}{}, @@ -164959,9 +164986,9 @@ func (n *System_Cpu) Total() *System_Cpu_Total { } } -// Total returns from System_CpuAny the path struct for its child "total". -func (n *System_CpuAny) Total() *System_Cpu_TotalAny { - return &System_Cpu_TotalAny{ +// Total returns from System_CpuPathAny the path struct for its child "total". +func (n *System_CpuPathAny) Total() *System_Cpu_TotalPathAny { + return &System_Cpu_TotalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "total"}, map[string]interface{}{}, @@ -164970,9 +164997,9 @@ func (n *System_CpuAny) Total() *System_Cpu_TotalAny { } } -// User returns from System_Cpu the path struct for its child "user". -func (n *System_Cpu) User() *System_Cpu_User { - return &System_Cpu_User{ +// User returns from System_CpuPath the path struct for its child "user". +func (n *System_CpuPath) User() *System_Cpu_UserPath { + return &System_Cpu_UserPath{ NodePath: ygot.NewNodePath( []string{"state", "user"}, map[string]interface{}{}, @@ -164981,9 +165008,9 @@ func (n *System_Cpu) User() *System_Cpu_User { } } -// User returns from System_CpuAny the path struct for its child "user". -func (n *System_CpuAny) User() *System_Cpu_UserAny { - return &System_Cpu_UserAny{ +// User returns from System_CpuPathAny the path struct for its child "user". +func (n *System_CpuPathAny) User() *System_Cpu_UserPathAny { + return &System_Cpu_UserPathAny{ NodePath: ygot.NewNodePath( []string{"state", "user"}, map[string]interface{}{}, @@ -164992,9 +165019,9 @@ func (n *System_CpuAny) User() *System_Cpu_UserAny { } } -// Wait returns from System_Cpu the path struct for its child "wait". -func (n *System_Cpu) Wait() *System_Cpu_Wait { - return &System_Cpu_Wait{ +// Wait returns from System_CpuPath the path struct for its child "wait". +func (n *System_CpuPath) Wait() *System_Cpu_WaitPath { + return &System_Cpu_WaitPath{ NodePath: ygot.NewNodePath( []string{"state", "wait"}, map[string]interface{}{}, @@ -165003,9 +165030,9 @@ func (n *System_Cpu) Wait() *System_Cpu_Wait { } } -// Wait returns from System_CpuAny the path struct for its child "wait". -func (n *System_CpuAny) Wait() *System_Cpu_WaitAny { - return &System_Cpu_WaitAny{ +// Wait returns from System_CpuPathAny the path struct for its child "wait". +func (n *System_CpuPathAny) Wait() *System_Cpu_WaitPathAny { + return &System_Cpu_WaitPathAny{ NodePath: ygot.NewNodePath( []string{"state", "wait"}, map[string]interface{}{}, @@ -165014,89 +165041,89 @@ func (n *System_CpuAny) Wait() *System_Cpu_WaitAny { } } -// System_Cpu_HardwareInterrupt represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt YANG schema element. -type System_Cpu_HardwareInterrupt struct { +// System_Cpu_HardwareInterruptPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt YANG schema element. +type System_Cpu_HardwareInterruptPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterruptAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt YANG schema element. -type System_Cpu_HardwareInterruptAny struct { +// System_Cpu_HardwareInterruptPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt YANG schema element. +type System_Cpu_HardwareInterruptPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_Avg represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/avg YANG schema element. -type System_Cpu_HardwareInterrupt_Avg struct { +// System_Cpu_HardwareInterrupt_AvgPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/avg YANG schema element. +type System_Cpu_HardwareInterrupt_AvgPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/avg YANG schema element. -type System_Cpu_HardwareInterrupt_AvgAny struct { +// System_Cpu_HardwareInterrupt_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/avg YANG schema element. +type System_Cpu_HardwareInterrupt_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_Instant represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/instant YANG schema element. -type System_Cpu_HardwareInterrupt_Instant struct { +// System_Cpu_HardwareInterrupt_InstantPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/instant YANG schema element. +type System_Cpu_HardwareInterrupt_InstantPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/instant YANG schema element. -type System_Cpu_HardwareInterrupt_InstantAny struct { +// System_Cpu_HardwareInterrupt_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/instant YANG schema element. +type System_Cpu_HardwareInterrupt_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_Interval represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/interval YANG schema element. -type System_Cpu_HardwareInterrupt_Interval struct { +// System_Cpu_HardwareInterrupt_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/interval YANG schema element. +type System_Cpu_HardwareInterrupt_IntervalPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/interval YANG schema element. -type System_Cpu_HardwareInterrupt_IntervalAny struct { +// System_Cpu_HardwareInterrupt_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/interval YANG schema element. +type System_Cpu_HardwareInterrupt_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_Max represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max YANG schema element. -type System_Cpu_HardwareInterrupt_Max struct { +// System_Cpu_HardwareInterrupt_MaxPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max YANG schema element. +type System_Cpu_HardwareInterrupt_MaxPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max YANG schema element. -type System_Cpu_HardwareInterrupt_MaxAny struct { +// System_Cpu_HardwareInterrupt_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max YANG schema element. +type System_Cpu_HardwareInterrupt_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MaxTime represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max-time YANG schema element. -type System_Cpu_HardwareInterrupt_MaxTime struct { +// System_Cpu_HardwareInterrupt_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max-time YANG schema element. +type System_Cpu_HardwareInterrupt_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max-time YANG schema element. -type System_Cpu_HardwareInterrupt_MaxTimeAny struct { +// System_Cpu_HardwareInterrupt_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/max-time YANG schema element. +type System_Cpu_HardwareInterrupt_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_Min represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min YANG schema element. -type System_Cpu_HardwareInterrupt_Min struct { +// System_Cpu_HardwareInterrupt_MinPath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min YANG schema element. +type System_Cpu_HardwareInterrupt_MinPath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min YANG schema element. -type System_Cpu_HardwareInterrupt_MinAny struct { +// System_Cpu_HardwareInterrupt_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min YANG schema element. +type System_Cpu_HardwareInterrupt_MinPathAny struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MinTime represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min-time YANG schema element. -type System_Cpu_HardwareInterrupt_MinTime struct { +// System_Cpu_HardwareInterrupt_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min-time YANG schema element. +type System_Cpu_HardwareInterrupt_MinTimePath struct { *ygot.NodePath } -// System_Cpu_HardwareInterrupt_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min-time YANG schema element. -type System_Cpu_HardwareInterrupt_MinTimeAny struct { +// System_Cpu_HardwareInterrupt_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/hardware-interrupt/min-time YANG schema element. +type System_Cpu_HardwareInterrupt_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_HardwareInterrupt the path struct for its child "avg". -func (n *System_Cpu_HardwareInterrupt) Avg() *System_Cpu_HardwareInterrupt_Avg { - return &System_Cpu_HardwareInterrupt_Avg{ +// Avg returns from System_Cpu_HardwareInterruptPath the path struct for its child "avg". +func (n *System_Cpu_HardwareInterruptPath) Avg() *System_Cpu_HardwareInterrupt_AvgPath { + return &System_Cpu_HardwareInterrupt_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165105,9 +165132,9 @@ func (n *System_Cpu_HardwareInterrupt) Avg() *System_Cpu_HardwareInterrupt_Avg { } } -// Avg returns from System_Cpu_HardwareInterruptAny the path struct for its child "avg". -func (n *System_Cpu_HardwareInterruptAny) Avg() *System_Cpu_HardwareInterrupt_AvgAny { - return &System_Cpu_HardwareInterrupt_AvgAny{ +// Avg returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "avg". +func (n *System_Cpu_HardwareInterruptPathAny) Avg() *System_Cpu_HardwareInterrupt_AvgPathAny { + return &System_Cpu_HardwareInterrupt_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165116,9 +165143,9 @@ func (n *System_Cpu_HardwareInterruptAny) Avg() *System_Cpu_HardwareInterrupt_Av } } -// Instant returns from System_Cpu_HardwareInterrupt the path struct for its child "instant". -func (n *System_Cpu_HardwareInterrupt) Instant() *System_Cpu_HardwareInterrupt_Instant { - return &System_Cpu_HardwareInterrupt_Instant{ +// Instant returns from System_Cpu_HardwareInterruptPath the path struct for its child "instant". +func (n *System_Cpu_HardwareInterruptPath) Instant() *System_Cpu_HardwareInterrupt_InstantPath { + return &System_Cpu_HardwareInterrupt_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165127,9 +165154,9 @@ func (n *System_Cpu_HardwareInterrupt) Instant() *System_Cpu_HardwareInterrupt_I } } -// Instant returns from System_Cpu_HardwareInterruptAny the path struct for its child "instant". -func (n *System_Cpu_HardwareInterruptAny) Instant() *System_Cpu_HardwareInterrupt_InstantAny { - return &System_Cpu_HardwareInterrupt_InstantAny{ +// Instant returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "instant". +func (n *System_Cpu_HardwareInterruptPathAny) Instant() *System_Cpu_HardwareInterrupt_InstantPathAny { + return &System_Cpu_HardwareInterrupt_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165138,9 +165165,9 @@ func (n *System_Cpu_HardwareInterruptAny) Instant() *System_Cpu_HardwareInterrup } } -// Interval returns from System_Cpu_HardwareInterrupt the path struct for its child "interval". -func (n *System_Cpu_HardwareInterrupt) Interval() *System_Cpu_HardwareInterrupt_Interval { - return &System_Cpu_HardwareInterrupt_Interval{ +// Interval returns from System_Cpu_HardwareInterruptPath the path struct for its child "interval". +func (n *System_Cpu_HardwareInterruptPath) Interval() *System_Cpu_HardwareInterrupt_IntervalPath { + return &System_Cpu_HardwareInterrupt_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165149,9 +165176,9 @@ func (n *System_Cpu_HardwareInterrupt) Interval() *System_Cpu_HardwareInterrupt_ } } -// Interval returns from System_Cpu_HardwareInterruptAny the path struct for its child "interval". -func (n *System_Cpu_HardwareInterruptAny) Interval() *System_Cpu_HardwareInterrupt_IntervalAny { - return &System_Cpu_HardwareInterrupt_IntervalAny{ +// Interval returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "interval". +func (n *System_Cpu_HardwareInterruptPathAny) Interval() *System_Cpu_HardwareInterrupt_IntervalPathAny { + return &System_Cpu_HardwareInterrupt_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165160,9 +165187,9 @@ func (n *System_Cpu_HardwareInterruptAny) Interval() *System_Cpu_HardwareInterru } } -// Max returns from System_Cpu_HardwareInterrupt the path struct for its child "max". -func (n *System_Cpu_HardwareInterrupt) Max() *System_Cpu_HardwareInterrupt_Max { - return &System_Cpu_HardwareInterrupt_Max{ +// Max returns from System_Cpu_HardwareInterruptPath the path struct for its child "max". +func (n *System_Cpu_HardwareInterruptPath) Max() *System_Cpu_HardwareInterrupt_MaxPath { + return &System_Cpu_HardwareInterrupt_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165171,9 +165198,9 @@ func (n *System_Cpu_HardwareInterrupt) Max() *System_Cpu_HardwareInterrupt_Max { } } -// Max returns from System_Cpu_HardwareInterruptAny the path struct for its child "max". -func (n *System_Cpu_HardwareInterruptAny) Max() *System_Cpu_HardwareInterrupt_MaxAny { - return &System_Cpu_HardwareInterrupt_MaxAny{ +// Max returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "max". +func (n *System_Cpu_HardwareInterruptPathAny) Max() *System_Cpu_HardwareInterrupt_MaxPathAny { + return &System_Cpu_HardwareInterrupt_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165182,9 +165209,9 @@ func (n *System_Cpu_HardwareInterruptAny) Max() *System_Cpu_HardwareInterrupt_Ma } } -// MaxTime returns from System_Cpu_HardwareInterrupt the path struct for its child "max-time". -func (n *System_Cpu_HardwareInterrupt) MaxTime() *System_Cpu_HardwareInterrupt_MaxTime { - return &System_Cpu_HardwareInterrupt_MaxTime{ +// MaxTime returns from System_Cpu_HardwareInterruptPath the path struct for its child "max-time". +func (n *System_Cpu_HardwareInterruptPath) MaxTime() *System_Cpu_HardwareInterrupt_MaxTimePath { + return &System_Cpu_HardwareInterrupt_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165193,9 +165220,9 @@ func (n *System_Cpu_HardwareInterrupt) MaxTime() *System_Cpu_HardwareInterrupt_M } } -// MaxTime returns from System_Cpu_HardwareInterruptAny the path struct for its child "max-time". -func (n *System_Cpu_HardwareInterruptAny) MaxTime() *System_Cpu_HardwareInterrupt_MaxTimeAny { - return &System_Cpu_HardwareInterrupt_MaxTimeAny{ +// MaxTime returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "max-time". +func (n *System_Cpu_HardwareInterruptPathAny) MaxTime() *System_Cpu_HardwareInterrupt_MaxTimePathAny { + return &System_Cpu_HardwareInterrupt_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165204,9 +165231,9 @@ func (n *System_Cpu_HardwareInterruptAny) MaxTime() *System_Cpu_HardwareInterrup } } -// Min returns from System_Cpu_HardwareInterrupt the path struct for its child "min". -func (n *System_Cpu_HardwareInterrupt) Min() *System_Cpu_HardwareInterrupt_Min { - return &System_Cpu_HardwareInterrupt_Min{ +// Min returns from System_Cpu_HardwareInterruptPath the path struct for its child "min". +func (n *System_Cpu_HardwareInterruptPath) Min() *System_Cpu_HardwareInterrupt_MinPath { + return &System_Cpu_HardwareInterrupt_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165215,9 +165242,9 @@ func (n *System_Cpu_HardwareInterrupt) Min() *System_Cpu_HardwareInterrupt_Min { } } -// Min returns from System_Cpu_HardwareInterruptAny the path struct for its child "min". -func (n *System_Cpu_HardwareInterruptAny) Min() *System_Cpu_HardwareInterrupt_MinAny { - return &System_Cpu_HardwareInterrupt_MinAny{ +// Min returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "min". +func (n *System_Cpu_HardwareInterruptPathAny) Min() *System_Cpu_HardwareInterrupt_MinPathAny { + return &System_Cpu_HardwareInterrupt_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165226,9 +165253,9 @@ func (n *System_Cpu_HardwareInterruptAny) Min() *System_Cpu_HardwareInterrupt_Mi } } -// MinTime returns from System_Cpu_HardwareInterrupt the path struct for its child "min-time". -func (n *System_Cpu_HardwareInterrupt) MinTime() *System_Cpu_HardwareInterrupt_MinTime { - return &System_Cpu_HardwareInterrupt_MinTime{ +// MinTime returns from System_Cpu_HardwareInterruptPath the path struct for its child "min-time". +func (n *System_Cpu_HardwareInterruptPath) MinTime() *System_Cpu_HardwareInterrupt_MinTimePath { + return &System_Cpu_HardwareInterrupt_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165237,9 +165264,9 @@ func (n *System_Cpu_HardwareInterrupt) MinTime() *System_Cpu_HardwareInterrupt_M } } -// MinTime returns from System_Cpu_HardwareInterruptAny the path struct for its child "min-time". -func (n *System_Cpu_HardwareInterruptAny) MinTime() *System_Cpu_HardwareInterrupt_MinTimeAny { - return &System_Cpu_HardwareInterrupt_MinTimeAny{ +// MinTime returns from System_Cpu_HardwareInterruptPathAny the path struct for its child "min-time". +func (n *System_Cpu_HardwareInterruptPathAny) MinTime() *System_Cpu_HardwareInterrupt_MinTimePathAny { + return &System_Cpu_HardwareInterrupt_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165248,89 +165275,89 @@ func (n *System_Cpu_HardwareInterruptAny) MinTime() *System_Cpu_HardwareInterrup } } -// System_Cpu_Idle represents the /openconfig-system/system/cpus/cpu/state/idle YANG schema element. -type System_Cpu_Idle struct { +// System_Cpu_IdlePath represents the /openconfig-system/system/cpus/cpu/state/idle YANG schema element. +type System_Cpu_IdlePath struct { *ygot.NodePath } -// System_Cpu_IdleAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle YANG schema element. -type System_Cpu_IdleAny struct { +// System_Cpu_IdlePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle YANG schema element. +type System_Cpu_IdlePathAny struct { *ygot.NodePath } -// System_Cpu_Idle_Avg represents the /openconfig-system/system/cpus/cpu/state/idle/avg YANG schema element. -type System_Cpu_Idle_Avg struct { +// System_Cpu_Idle_AvgPath represents the /openconfig-system/system/cpus/cpu/state/idle/avg YANG schema element. +type System_Cpu_Idle_AvgPath struct { *ygot.NodePath } -// System_Cpu_Idle_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/avg YANG schema element. -type System_Cpu_Idle_AvgAny struct { +// System_Cpu_Idle_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/avg YANG schema element. +type System_Cpu_Idle_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_Idle_Instant represents the /openconfig-system/system/cpus/cpu/state/idle/instant YANG schema element. -type System_Cpu_Idle_Instant struct { +// System_Cpu_Idle_InstantPath represents the /openconfig-system/system/cpus/cpu/state/idle/instant YANG schema element. +type System_Cpu_Idle_InstantPath struct { *ygot.NodePath } -// System_Cpu_Idle_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/instant YANG schema element. -type System_Cpu_Idle_InstantAny struct { +// System_Cpu_Idle_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/instant YANG schema element. +type System_Cpu_Idle_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_Idle_Interval represents the /openconfig-system/system/cpus/cpu/state/idle/interval YANG schema element. -type System_Cpu_Idle_Interval struct { +// System_Cpu_Idle_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/idle/interval YANG schema element. +type System_Cpu_Idle_IntervalPath struct { *ygot.NodePath } -// System_Cpu_Idle_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/interval YANG schema element. -type System_Cpu_Idle_IntervalAny struct { +// System_Cpu_Idle_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/interval YANG schema element. +type System_Cpu_Idle_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_Idle_Max represents the /openconfig-system/system/cpus/cpu/state/idle/max YANG schema element. -type System_Cpu_Idle_Max struct { +// System_Cpu_Idle_MaxPath represents the /openconfig-system/system/cpus/cpu/state/idle/max YANG schema element. +type System_Cpu_Idle_MaxPath struct { *ygot.NodePath } -// System_Cpu_Idle_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/max YANG schema element. -type System_Cpu_Idle_MaxAny struct { +// System_Cpu_Idle_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/max YANG schema element. +type System_Cpu_Idle_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_Idle_MaxTime represents the /openconfig-system/system/cpus/cpu/state/idle/max-time YANG schema element. -type System_Cpu_Idle_MaxTime struct { +// System_Cpu_Idle_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/idle/max-time YANG schema element. +type System_Cpu_Idle_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_Idle_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/max-time YANG schema element. -type System_Cpu_Idle_MaxTimeAny struct { +// System_Cpu_Idle_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/max-time YANG schema element. +type System_Cpu_Idle_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_Idle_Min represents the /openconfig-system/system/cpus/cpu/state/idle/min YANG schema element. -type System_Cpu_Idle_Min struct { +// System_Cpu_Idle_MinPath represents the /openconfig-system/system/cpus/cpu/state/idle/min YANG schema element. +type System_Cpu_Idle_MinPath struct { *ygot.NodePath } -// System_Cpu_Idle_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/min YANG schema element. -type System_Cpu_Idle_MinAny struct { +// System_Cpu_Idle_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/min YANG schema element. +type System_Cpu_Idle_MinPathAny struct { *ygot.NodePath } -// System_Cpu_Idle_MinTime represents the /openconfig-system/system/cpus/cpu/state/idle/min-time YANG schema element. -type System_Cpu_Idle_MinTime struct { +// System_Cpu_Idle_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/idle/min-time YANG schema element. +type System_Cpu_Idle_MinTimePath struct { *ygot.NodePath } -// System_Cpu_Idle_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/min-time YANG schema element. -type System_Cpu_Idle_MinTimeAny struct { +// System_Cpu_Idle_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/idle/min-time YANG schema element. +type System_Cpu_Idle_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_Idle the path struct for its child "avg". -func (n *System_Cpu_Idle) Avg() *System_Cpu_Idle_Avg { - return &System_Cpu_Idle_Avg{ +// Avg returns from System_Cpu_IdlePath the path struct for its child "avg". +func (n *System_Cpu_IdlePath) Avg() *System_Cpu_Idle_AvgPath { + return &System_Cpu_Idle_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165339,9 +165366,9 @@ func (n *System_Cpu_Idle) Avg() *System_Cpu_Idle_Avg { } } -// Avg returns from System_Cpu_IdleAny the path struct for its child "avg". -func (n *System_Cpu_IdleAny) Avg() *System_Cpu_Idle_AvgAny { - return &System_Cpu_Idle_AvgAny{ +// Avg returns from System_Cpu_IdlePathAny the path struct for its child "avg". +func (n *System_Cpu_IdlePathAny) Avg() *System_Cpu_Idle_AvgPathAny { + return &System_Cpu_Idle_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165350,9 +165377,9 @@ func (n *System_Cpu_IdleAny) Avg() *System_Cpu_Idle_AvgAny { } } -// Instant returns from System_Cpu_Idle the path struct for its child "instant". -func (n *System_Cpu_Idle) Instant() *System_Cpu_Idle_Instant { - return &System_Cpu_Idle_Instant{ +// Instant returns from System_Cpu_IdlePath the path struct for its child "instant". +func (n *System_Cpu_IdlePath) Instant() *System_Cpu_Idle_InstantPath { + return &System_Cpu_Idle_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165361,9 +165388,9 @@ func (n *System_Cpu_Idle) Instant() *System_Cpu_Idle_Instant { } } -// Instant returns from System_Cpu_IdleAny the path struct for its child "instant". -func (n *System_Cpu_IdleAny) Instant() *System_Cpu_Idle_InstantAny { - return &System_Cpu_Idle_InstantAny{ +// Instant returns from System_Cpu_IdlePathAny the path struct for its child "instant". +func (n *System_Cpu_IdlePathAny) Instant() *System_Cpu_Idle_InstantPathAny { + return &System_Cpu_Idle_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165372,9 +165399,9 @@ func (n *System_Cpu_IdleAny) Instant() *System_Cpu_Idle_InstantAny { } } -// Interval returns from System_Cpu_Idle the path struct for its child "interval". -func (n *System_Cpu_Idle) Interval() *System_Cpu_Idle_Interval { - return &System_Cpu_Idle_Interval{ +// Interval returns from System_Cpu_IdlePath the path struct for its child "interval". +func (n *System_Cpu_IdlePath) Interval() *System_Cpu_Idle_IntervalPath { + return &System_Cpu_Idle_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165383,9 +165410,9 @@ func (n *System_Cpu_Idle) Interval() *System_Cpu_Idle_Interval { } } -// Interval returns from System_Cpu_IdleAny the path struct for its child "interval". -func (n *System_Cpu_IdleAny) Interval() *System_Cpu_Idle_IntervalAny { - return &System_Cpu_Idle_IntervalAny{ +// Interval returns from System_Cpu_IdlePathAny the path struct for its child "interval". +func (n *System_Cpu_IdlePathAny) Interval() *System_Cpu_Idle_IntervalPathAny { + return &System_Cpu_Idle_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165394,9 +165421,9 @@ func (n *System_Cpu_IdleAny) Interval() *System_Cpu_Idle_IntervalAny { } } -// Max returns from System_Cpu_Idle the path struct for its child "max". -func (n *System_Cpu_Idle) Max() *System_Cpu_Idle_Max { - return &System_Cpu_Idle_Max{ +// Max returns from System_Cpu_IdlePath the path struct for its child "max". +func (n *System_Cpu_IdlePath) Max() *System_Cpu_Idle_MaxPath { + return &System_Cpu_Idle_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165405,9 +165432,9 @@ func (n *System_Cpu_Idle) Max() *System_Cpu_Idle_Max { } } -// Max returns from System_Cpu_IdleAny the path struct for its child "max". -func (n *System_Cpu_IdleAny) Max() *System_Cpu_Idle_MaxAny { - return &System_Cpu_Idle_MaxAny{ +// Max returns from System_Cpu_IdlePathAny the path struct for its child "max". +func (n *System_Cpu_IdlePathAny) Max() *System_Cpu_Idle_MaxPathAny { + return &System_Cpu_Idle_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165416,9 +165443,9 @@ func (n *System_Cpu_IdleAny) Max() *System_Cpu_Idle_MaxAny { } } -// MaxTime returns from System_Cpu_Idle the path struct for its child "max-time". -func (n *System_Cpu_Idle) MaxTime() *System_Cpu_Idle_MaxTime { - return &System_Cpu_Idle_MaxTime{ +// MaxTime returns from System_Cpu_IdlePath the path struct for its child "max-time". +func (n *System_Cpu_IdlePath) MaxTime() *System_Cpu_Idle_MaxTimePath { + return &System_Cpu_Idle_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165427,9 +165454,9 @@ func (n *System_Cpu_Idle) MaxTime() *System_Cpu_Idle_MaxTime { } } -// MaxTime returns from System_Cpu_IdleAny the path struct for its child "max-time". -func (n *System_Cpu_IdleAny) MaxTime() *System_Cpu_Idle_MaxTimeAny { - return &System_Cpu_Idle_MaxTimeAny{ +// MaxTime returns from System_Cpu_IdlePathAny the path struct for its child "max-time". +func (n *System_Cpu_IdlePathAny) MaxTime() *System_Cpu_Idle_MaxTimePathAny { + return &System_Cpu_Idle_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165438,9 +165465,9 @@ func (n *System_Cpu_IdleAny) MaxTime() *System_Cpu_Idle_MaxTimeAny { } } -// Min returns from System_Cpu_Idle the path struct for its child "min". -func (n *System_Cpu_Idle) Min() *System_Cpu_Idle_Min { - return &System_Cpu_Idle_Min{ +// Min returns from System_Cpu_IdlePath the path struct for its child "min". +func (n *System_Cpu_IdlePath) Min() *System_Cpu_Idle_MinPath { + return &System_Cpu_Idle_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165449,9 +165476,9 @@ func (n *System_Cpu_Idle) Min() *System_Cpu_Idle_Min { } } -// Min returns from System_Cpu_IdleAny the path struct for its child "min". -func (n *System_Cpu_IdleAny) Min() *System_Cpu_Idle_MinAny { - return &System_Cpu_Idle_MinAny{ +// Min returns from System_Cpu_IdlePathAny the path struct for its child "min". +func (n *System_Cpu_IdlePathAny) Min() *System_Cpu_Idle_MinPathAny { + return &System_Cpu_Idle_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165460,9 +165487,9 @@ func (n *System_Cpu_IdleAny) Min() *System_Cpu_Idle_MinAny { } } -// MinTime returns from System_Cpu_Idle the path struct for its child "min-time". -func (n *System_Cpu_Idle) MinTime() *System_Cpu_Idle_MinTime { - return &System_Cpu_Idle_MinTime{ +// MinTime returns from System_Cpu_IdlePath the path struct for its child "min-time". +func (n *System_Cpu_IdlePath) MinTime() *System_Cpu_Idle_MinTimePath { + return &System_Cpu_Idle_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165471,9 +165498,9 @@ func (n *System_Cpu_Idle) MinTime() *System_Cpu_Idle_MinTime { } } -// MinTime returns from System_Cpu_IdleAny the path struct for its child "min-time". -func (n *System_Cpu_IdleAny) MinTime() *System_Cpu_Idle_MinTimeAny { - return &System_Cpu_Idle_MinTimeAny{ +// MinTime returns from System_Cpu_IdlePathAny the path struct for its child "min-time". +func (n *System_Cpu_IdlePathAny) MinTime() *System_Cpu_Idle_MinTimePathAny { + return &System_Cpu_Idle_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165482,89 +165509,89 @@ func (n *System_Cpu_IdleAny) MinTime() *System_Cpu_Idle_MinTimeAny { } } -// System_Cpu_Kernel represents the /openconfig-system/system/cpus/cpu/state/kernel YANG schema element. -type System_Cpu_Kernel struct { +// System_Cpu_KernelPath represents the /openconfig-system/system/cpus/cpu/state/kernel YANG schema element. +type System_Cpu_KernelPath struct { *ygot.NodePath } -// System_Cpu_KernelAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel YANG schema element. -type System_Cpu_KernelAny struct { +// System_Cpu_KernelPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel YANG schema element. +type System_Cpu_KernelPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_Avg represents the /openconfig-system/system/cpus/cpu/state/kernel/avg YANG schema element. -type System_Cpu_Kernel_Avg struct { +// System_Cpu_Kernel_AvgPath represents the /openconfig-system/system/cpus/cpu/state/kernel/avg YANG schema element. +type System_Cpu_Kernel_AvgPath struct { *ygot.NodePath } -// System_Cpu_Kernel_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/avg YANG schema element. -type System_Cpu_Kernel_AvgAny struct { +// System_Cpu_Kernel_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/avg YANG schema element. +type System_Cpu_Kernel_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_Instant represents the /openconfig-system/system/cpus/cpu/state/kernel/instant YANG schema element. -type System_Cpu_Kernel_Instant struct { +// System_Cpu_Kernel_InstantPath represents the /openconfig-system/system/cpus/cpu/state/kernel/instant YANG schema element. +type System_Cpu_Kernel_InstantPath struct { *ygot.NodePath } -// System_Cpu_Kernel_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/instant YANG schema element. -type System_Cpu_Kernel_InstantAny struct { +// System_Cpu_Kernel_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/instant YANG schema element. +type System_Cpu_Kernel_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_Interval represents the /openconfig-system/system/cpus/cpu/state/kernel/interval YANG schema element. -type System_Cpu_Kernel_Interval struct { +// System_Cpu_Kernel_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/kernel/interval YANG schema element. +type System_Cpu_Kernel_IntervalPath struct { *ygot.NodePath } -// System_Cpu_Kernel_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/interval YANG schema element. -type System_Cpu_Kernel_IntervalAny struct { +// System_Cpu_Kernel_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/interval YANG schema element. +type System_Cpu_Kernel_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_Max represents the /openconfig-system/system/cpus/cpu/state/kernel/max YANG schema element. -type System_Cpu_Kernel_Max struct { +// System_Cpu_Kernel_MaxPath represents the /openconfig-system/system/cpus/cpu/state/kernel/max YANG schema element. +type System_Cpu_Kernel_MaxPath struct { *ygot.NodePath } -// System_Cpu_Kernel_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/max YANG schema element. -type System_Cpu_Kernel_MaxAny struct { +// System_Cpu_Kernel_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/max YANG schema element. +type System_Cpu_Kernel_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_MaxTime represents the /openconfig-system/system/cpus/cpu/state/kernel/max-time YANG schema element. -type System_Cpu_Kernel_MaxTime struct { +// System_Cpu_Kernel_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/kernel/max-time YANG schema element. +type System_Cpu_Kernel_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_Kernel_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/max-time YANG schema element. -type System_Cpu_Kernel_MaxTimeAny struct { +// System_Cpu_Kernel_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/max-time YANG schema element. +type System_Cpu_Kernel_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_Min represents the /openconfig-system/system/cpus/cpu/state/kernel/min YANG schema element. -type System_Cpu_Kernel_Min struct { +// System_Cpu_Kernel_MinPath represents the /openconfig-system/system/cpus/cpu/state/kernel/min YANG schema element. +type System_Cpu_Kernel_MinPath struct { *ygot.NodePath } -// System_Cpu_Kernel_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/min YANG schema element. -type System_Cpu_Kernel_MinAny struct { +// System_Cpu_Kernel_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/min YANG schema element. +type System_Cpu_Kernel_MinPathAny struct { *ygot.NodePath } -// System_Cpu_Kernel_MinTime represents the /openconfig-system/system/cpus/cpu/state/kernel/min-time YANG schema element. -type System_Cpu_Kernel_MinTime struct { +// System_Cpu_Kernel_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/kernel/min-time YANG schema element. +type System_Cpu_Kernel_MinTimePath struct { *ygot.NodePath } -// System_Cpu_Kernel_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/min-time YANG schema element. -type System_Cpu_Kernel_MinTimeAny struct { +// System_Cpu_Kernel_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/kernel/min-time YANG schema element. +type System_Cpu_Kernel_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_Kernel the path struct for its child "avg". -func (n *System_Cpu_Kernel) Avg() *System_Cpu_Kernel_Avg { - return &System_Cpu_Kernel_Avg{ +// Avg returns from System_Cpu_KernelPath the path struct for its child "avg". +func (n *System_Cpu_KernelPath) Avg() *System_Cpu_Kernel_AvgPath { + return &System_Cpu_Kernel_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165573,9 +165600,9 @@ func (n *System_Cpu_Kernel) Avg() *System_Cpu_Kernel_Avg { } } -// Avg returns from System_Cpu_KernelAny the path struct for its child "avg". -func (n *System_Cpu_KernelAny) Avg() *System_Cpu_Kernel_AvgAny { - return &System_Cpu_Kernel_AvgAny{ +// Avg returns from System_Cpu_KernelPathAny the path struct for its child "avg". +func (n *System_Cpu_KernelPathAny) Avg() *System_Cpu_Kernel_AvgPathAny { + return &System_Cpu_Kernel_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165584,9 +165611,9 @@ func (n *System_Cpu_KernelAny) Avg() *System_Cpu_Kernel_AvgAny { } } -// Instant returns from System_Cpu_Kernel the path struct for its child "instant". -func (n *System_Cpu_Kernel) Instant() *System_Cpu_Kernel_Instant { - return &System_Cpu_Kernel_Instant{ +// Instant returns from System_Cpu_KernelPath the path struct for its child "instant". +func (n *System_Cpu_KernelPath) Instant() *System_Cpu_Kernel_InstantPath { + return &System_Cpu_Kernel_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165595,9 +165622,9 @@ func (n *System_Cpu_Kernel) Instant() *System_Cpu_Kernel_Instant { } } -// Instant returns from System_Cpu_KernelAny the path struct for its child "instant". -func (n *System_Cpu_KernelAny) Instant() *System_Cpu_Kernel_InstantAny { - return &System_Cpu_Kernel_InstantAny{ +// Instant returns from System_Cpu_KernelPathAny the path struct for its child "instant". +func (n *System_Cpu_KernelPathAny) Instant() *System_Cpu_Kernel_InstantPathAny { + return &System_Cpu_Kernel_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165606,9 +165633,9 @@ func (n *System_Cpu_KernelAny) Instant() *System_Cpu_Kernel_InstantAny { } } -// Interval returns from System_Cpu_Kernel the path struct for its child "interval". -func (n *System_Cpu_Kernel) Interval() *System_Cpu_Kernel_Interval { - return &System_Cpu_Kernel_Interval{ +// Interval returns from System_Cpu_KernelPath the path struct for its child "interval". +func (n *System_Cpu_KernelPath) Interval() *System_Cpu_Kernel_IntervalPath { + return &System_Cpu_Kernel_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165617,9 +165644,9 @@ func (n *System_Cpu_Kernel) Interval() *System_Cpu_Kernel_Interval { } } -// Interval returns from System_Cpu_KernelAny the path struct for its child "interval". -func (n *System_Cpu_KernelAny) Interval() *System_Cpu_Kernel_IntervalAny { - return &System_Cpu_Kernel_IntervalAny{ +// Interval returns from System_Cpu_KernelPathAny the path struct for its child "interval". +func (n *System_Cpu_KernelPathAny) Interval() *System_Cpu_Kernel_IntervalPathAny { + return &System_Cpu_Kernel_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165628,9 +165655,9 @@ func (n *System_Cpu_KernelAny) Interval() *System_Cpu_Kernel_IntervalAny { } } -// Max returns from System_Cpu_Kernel the path struct for its child "max". -func (n *System_Cpu_Kernel) Max() *System_Cpu_Kernel_Max { - return &System_Cpu_Kernel_Max{ +// Max returns from System_Cpu_KernelPath the path struct for its child "max". +func (n *System_Cpu_KernelPath) Max() *System_Cpu_Kernel_MaxPath { + return &System_Cpu_Kernel_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165639,9 +165666,9 @@ func (n *System_Cpu_Kernel) Max() *System_Cpu_Kernel_Max { } } -// Max returns from System_Cpu_KernelAny the path struct for its child "max". -func (n *System_Cpu_KernelAny) Max() *System_Cpu_Kernel_MaxAny { - return &System_Cpu_Kernel_MaxAny{ +// Max returns from System_Cpu_KernelPathAny the path struct for its child "max". +func (n *System_Cpu_KernelPathAny) Max() *System_Cpu_Kernel_MaxPathAny { + return &System_Cpu_Kernel_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165650,9 +165677,9 @@ func (n *System_Cpu_KernelAny) Max() *System_Cpu_Kernel_MaxAny { } } -// MaxTime returns from System_Cpu_Kernel the path struct for its child "max-time". -func (n *System_Cpu_Kernel) MaxTime() *System_Cpu_Kernel_MaxTime { - return &System_Cpu_Kernel_MaxTime{ +// MaxTime returns from System_Cpu_KernelPath the path struct for its child "max-time". +func (n *System_Cpu_KernelPath) MaxTime() *System_Cpu_Kernel_MaxTimePath { + return &System_Cpu_Kernel_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165661,9 +165688,9 @@ func (n *System_Cpu_Kernel) MaxTime() *System_Cpu_Kernel_MaxTime { } } -// MaxTime returns from System_Cpu_KernelAny the path struct for its child "max-time". -func (n *System_Cpu_KernelAny) MaxTime() *System_Cpu_Kernel_MaxTimeAny { - return &System_Cpu_Kernel_MaxTimeAny{ +// MaxTime returns from System_Cpu_KernelPathAny the path struct for its child "max-time". +func (n *System_Cpu_KernelPathAny) MaxTime() *System_Cpu_Kernel_MaxTimePathAny { + return &System_Cpu_Kernel_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165672,9 +165699,9 @@ func (n *System_Cpu_KernelAny) MaxTime() *System_Cpu_Kernel_MaxTimeAny { } } -// Min returns from System_Cpu_Kernel the path struct for its child "min". -func (n *System_Cpu_Kernel) Min() *System_Cpu_Kernel_Min { - return &System_Cpu_Kernel_Min{ +// Min returns from System_Cpu_KernelPath the path struct for its child "min". +func (n *System_Cpu_KernelPath) Min() *System_Cpu_Kernel_MinPath { + return &System_Cpu_Kernel_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165683,9 +165710,9 @@ func (n *System_Cpu_Kernel) Min() *System_Cpu_Kernel_Min { } } -// Min returns from System_Cpu_KernelAny the path struct for its child "min". -func (n *System_Cpu_KernelAny) Min() *System_Cpu_Kernel_MinAny { - return &System_Cpu_Kernel_MinAny{ +// Min returns from System_Cpu_KernelPathAny the path struct for its child "min". +func (n *System_Cpu_KernelPathAny) Min() *System_Cpu_Kernel_MinPathAny { + return &System_Cpu_Kernel_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165694,9 +165721,9 @@ func (n *System_Cpu_KernelAny) Min() *System_Cpu_Kernel_MinAny { } } -// MinTime returns from System_Cpu_Kernel the path struct for its child "min-time". -func (n *System_Cpu_Kernel) MinTime() *System_Cpu_Kernel_MinTime { - return &System_Cpu_Kernel_MinTime{ +// MinTime returns from System_Cpu_KernelPath the path struct for its child "min-time". +func (n *System_Cpu_KernelPath) MinTime() *System_Cpu_Kernel_MinTimePath { + return &System_Cpu_Kernel_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165705,9 +165732,9 @@ func (n *System_Cpu_Kernel) MinTime() *System_Cpu_Kernel_MinTime { } } -// MinTime returns from System_Cpu_KernelAny the path struct for its child "min-time". -func (n *System_Cpu_KernelAny) MinTime() *System_Cpu_Kernel_MinTimeAny { - return &System_Cpu_Kernel_MinTimeAny{ +// MinTime returns from System_Cpu_KernelPathAny the path struct for its child "min-time". +func (n *System_Cpu_KernelPathAny) MinTime() *System_Cpu_Kernel_MinTimePathAny { + return &System_Cpu_Kernel_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165716,89 +165743,89 @@ func (n *System_Cpu_KernelAny) MinTime() *System_Cpu_Kernel_MinTimeAny { } } -// System_Cpu_Nice represents the /openconfig-system/system/cpus/cpu/state/nice YANG schema element. -type System_Cpu_Nice struct { +// System_Cpu_NicePath represents the /openconfig-system/system/cpus/cpu/state/nice YANG schema element. +type System_Cpu_NicePath struct { *ygot.NodePath } -// System_Cpu_NiceAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice YANG schema element. -type System_Cpu_NiceAny struct { +// System_Cpu_NicePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice YANG schema element. +type System_Cpu_NicePathAny struct { *ygot.NodePath } -// System_Cpu_Nice_Avg represents the /openconfig-system/system/cpus/cpu/state/nice/avg YANG schema element. -type System_Cpu_Nice_Avg struct { +// System_Cpu_Nice_AvgPath represents the /openconfig-system/system/cpus/cpu/state/nice/avg YANG schema element. +type System_Cpu_Nice_AvgPath struct { *ygot.NodePath } -// System_Cpu_Nice_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/avg YANG schema element. -type System_Cpu_Nice_AvgAny struct { +// System_Cpu_Nice_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/avg YANG schema element. +type System_Cpu_Nice_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_Nice_Instant represents the /openconfig-system/system/cpus/cpu/state/nice/instant YANG schema element. -type System_Cpu_Nice_Instant struct { +// System_Cpu_Nice_InstantPath represents the /openconfig-system/system/cpus/cpu/state/nice/instant YANG schema element. +type System_Cpu_Nice_InstantPath struct { *ygot.NodePath } -// System_Cpu_Nice_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/instant YANG schema element. -type System_Cpu_Nice_InstantAny struct { +// System_Cpu_Nice_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/instant YANG schema element. +type System_Cpu_Nice_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_Nice_Interval represents the /openconfig-system/system/cpus/cpu/state/nice/interval YANG schema element. -type System_Cpu_Nice_Interval struct { +// System_Cpu_Nice_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/nice/interval YANG schema element. +type System_Cpu_Nice_IntervalPath struct { *ygot.NodePath } -// System_Cpu_Nice_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/interval YANG schema element. -type System_Cpu_Nice_IntervalAny struct { +// System_Cpu_Nice_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/interval YANG schema element. +type System_Cpu_Nice_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_Nice_Max represents the /openconfig-system/system/cpus/cpu/state/nice/max YANG schema element. -type System_Cpu_Nice_Max struct { +// System_Cpu_Nice_MaxPath represents the /openconfig-system/system/cpus/cpu/state/nice/max YANG schema element. +type System_Cpu_Nice_MaxPath struct { *ygot.NodePath } -// System_Cpu_Nice_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/max YANG schema element. -type System_Cpu_Nice_MaxAny struct { +// System_Cpu_Nice_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/max YANG schema element. +type System_Cpu_Nice_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_Nice_MaxTime represents the /openconfig-system/system/cpus/cpu/state/nice/max-time YANG schema element. -type System_Cpu_Nice_MaxTime struct { +// System_Cpu_Nice_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/nice/max-time YANG schema element. +type System_Cpu_Nice_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_Nice_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/max-time YANG schema element. -type System_Cpu_Nice_MaxTimeAny struct { +// System_Cpu_Nice_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/max-time YANG schema element. +type System_Cpu_Nice_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_Nice_Min represents the /openconfig-system/system/cpus/cpu/state/nice/min YANG schema element. -type System_Cpu_Nice_Min struct { +// System_Cpu_Nice_MinPath represents the /openconfig-system/system/cpus/cpu/state/nice/min YANG schema element. +type System_Cpu_Nice_MinPath struct { *ygot.NodePath } -// System_Cpu_Nice_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/min YANG schema element. -type System_Cpu_Nice_MinAny struct { +// System_Cpu_Nice_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/min YANG schema element. +type System_Cpu_Nice_MinPathAny struct { *ygot.NodePath } -// System_Cpu_Nice_MinTime represents the /openconfig-system/system/cpus/cpu/state/nice/min-time YANG schema element. -type System_Cpu_Nice_MinTime struct { +// System_Cpu_Nice_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/nice/min-time YANG schema element. +type System_Cpu_Nice_MinTimePath struct { *ygot.NodePath } -// System_Cpu_Nice_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/min-time YANG schema element. -type System_Cpu_Nice_MinTimeAny struct { +// System_Cpu_Nice_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/nice/min-time YANG schema element. +type System_Cpu_Nice_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_Nice the path struct for its child "avg". -func (n *System_Cpu_Nice) Avg() *System_Cpu_Nice_Avg { - return &System_Cpu_Nice_Avg{ +// Avg returns from System_Cpu_NicePath the path struct for its child "avg". +func (n *System_Cpu_NicePath) Avg() *System_Cpu_Nice_AvgPath { + return &System_Cpu_Nice_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165807,9 +165834,9 @@ func (n *System_Cpu_Nice) Avg() *System_Cpu_Nice_Avg { } } -// Avg returns from System_Cpu_NiceAny the path struct for its child "avg". -func (n *System_Cpu_NiceAny) Avg() *System_Cpu_Nice_AvgAny { - return &System_Cpu_Nice_AvgAny{ +// Avg returns from System_Cpu_NicePathAny the path struct for its child "avg". +func (n *System_Cpu_NicePathAny) Avg() *System_Cpu_Nice_AvgPathAny { + return &System_Cpu_Nice_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -165818,9 +165845,9 @@ func (n *System_Cpu_NiceAny) Avg() *System_Cpu_Nice_AvgAny { } } -// Instant returns from System_Cpu_Nice the path struct for its child "instant". -func (n *System_Cpu_Nice) Instant() *System_Cpu_Nice_Instant { - return &System_Cpu_Nice_Instant{ +// Instant returns from System_Cpu_NicePath the path struct for its child "instant". +func (n *System_Cpu_NicePath) Instant() *System_Cpu_Nice_InstantPath { + return &System_Cpu_Nice_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165829,9 +165856,9 @@ func (n *System_Cpu_Nice) Instant() *System_Cpu_Nice_Instant { } } -// Instant returns from System_Cpu_NiceAny the path struct for its child "instant". -func (n *System_Cpu_NiceAny) Instant() *System_Cpu_Nice_InstantAny { - return &System_Cpu_Nice_InstantAny{ +// Instant returns from System_Cpu_NicePathAny the path struct for its child "instant". +func (n *System_Cpu_NicePathAny) Instant() *System_Cpu_Nice_InstantPathAny { + return &System_Cpu_Nice_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -165840,9 +165867,9 @@ func (n *System_Cpu_NiceAny) Instant() *System_Cpu_Nice_InstantAny { } } -// Interval returns from System_Cpu_Nice the path struct for its child "interval". -func (n *System_Cpu_Nice) Interval() *System_Cpu_Nice_Interval { - return &System_Cpu_Nice_Interval{ +// Interval returns from System_Cpu_NicePath the path struct for its child "interval". +func (n *System_Cpu_NicePath) Interval() *System_Cpu_Nice_IntervalPath { + return &System_Cpu_Nice_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165851,9 +165878,9 @@ func (n *System_Cpu_Nice) Interval() *System_Cpu_Nice_Interval { } } -// Interval returns from System_Cpu_NiceAny the path struct for its child "interval". -func (n *System_Cpu_NiceAny) Interval() *System_Cpu_Nice_IntervalAny { - return &System_Cpu_Nice_IntervalAny{ +// Interval returns from System_Cpu_NicePathAny the path struct for its child "interval". +func (n *System_Cpu_NicePathAny) Interval() *System_Cpu_Nice_IntervalPathAny { + return &System_Cpu_Nice_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -165862,9 +165889,9 @@ func (n *System_Cpu_NiceAny) Interval() *System_Cpu_Nice_IntervalAny { } } -// Max returns from System_Cpu_Nice the path struct for its child "max". -func (n *System_Cpu_Nice) Max() *System_Cpu_Nice_Max { - return &System_Cpu_Nice_Max{ +// Max returns from System_Cpu_NicePath the path struct for its child "max". +func (n *System_Cpu_NicePath) Max() *System_Cpu_Nice_MaxPath { + return &System_Cpu_Nice_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165873,9 +165900,9 @@ func (n *System_Cpu_Nice) Max() *System_Cpu_Nice_Max { } } -// Max returns from System_Cpu_NiceAny the path struct for its child "max". -func (n *System_Cpu_NiceAny) Max() *System_Cpu_Nice_MaxAny { - return &System_Cpu_Nice_MaxAny{ +// Max returns from System_Cpu_NicePathAny the path struct for its child "max". +func (n *System_Cpu_NicePathAny) Max() *System_Cpu_Nice_MaxPathAny { + return &System_Cpu_Nice_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -165884,9 +165911,9 @@ func (n *System_Cpu_NiceAny) Max() *System_Cpu_Nice_MaxAny { } } -// MaxTime returns from System_Cpu_Nice the path struct for its child "max-time". -func (n *System_Cpu_Nice) MaxTime() *System_Cpu_Nice_MaxTime { - return &System_Cpu_Nice_MaxTime{ +// MaxTime returns from System_Cpu_NicePath the path struct for its child "max-time". +func (n *System_Cpu_NicePath) MaxTime() *System_Cpu_Nice_MaxTimePath { + return &System_Cpu_Nice_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165895,9 +165922,9 @@ func (n *System_Cpu_Nice) MaxTime() *System_Cpu_Nice_MaxTime { } } -// MaxTime returns from System_Cpu_NiceAny the path struct for its child "max-time". -func (n *System_Cpu_NiceAny) MaxTime() *System_Cpu_Nice_MaxTimeAny { - return &System_Cpu_Nice_MaxTimeAny{ +// MaxTime returns from System_Cpu_NicePathAny the path struct for its child "max-time". +func (n *System_Cpu_NicePathAny) MaxTime() *System_Cpu_Nice_MaxTimePathAny { + return &System_Cpu_Nice_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -165906,9 +165933,9 @@ func (n *System_Cpu_NiceAny) MaxTime() *System_Cpu_Nice_MaxTimeAny { } } -// Min returns from System_Cpu_Nice the path struct for its child "min". -func (n *System_Cpu_Nice) Min() *System_Cpu_Nice_Min { - return &System_Cpu_Nice_Min{ +// Min returns from System_Cpu_NicePath the path struct for its child "min". +func (n *System_Cpu_NicePath) Min() *System_Cpu_Nice_MinPath { + return &System_Cpu_Nice_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165917,9 +165944,9 @@ func (n *System_Cpu_Nice) Min() *System_Cpu_Nice_Min { } } -// Min returns from System_Cpu_NiceAny the path struct for its child "min". -func (n *System_Cpu_NiceAny) Min() *System_Cpu_Nice_MinAny { - return &System_Cpu_Nice_MinAny{ +// Min returns from System_Cpu_NicePathAny the path struct for its child "min". +func (n *System_Cpu_NicePathAny) Min() *System_Cpu_Nice_MinPathAny { + return &System_Cpu_Nice_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -165928,9 +165955,9 @@ func (n *System_Cpu_NiceAny) Min() *System_Cpu_Nice_MinAny { } } -// MinTime returns from System_Cpu_Nice the path struct for its child "min-time". -func (n *System_Cpu_Nice) MinTime() *System_Cpu_Nice_MinTime { - return &System_Cpu_Nice_MinTime{ +// MinTime returns from System_Cpu_NicePath the path struct for its child "min-time". +func (n *System_Cpu_NicePath) MinTime() *System_Cpu_Nice_MinTimePath { + return &System_Cpu_Nice_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165939,9 +165966,9 @@ func (n *System_Cpu_Nice) MinTime() *System_Cpu_Nice_MinTime { } } -// MinTime returns from System_Cpu_NiceAny the path struct for its child "min-time". -func (n *System_Cpu_NiceAny) MinTime() *System_Cpu_Nice_MinTimeAny { - return &System_Cpu_Nice_MinTimeAny{ +// MinTime returns from System_Cpu_NicePathAny the path struct for its child "min-time". +func (n *System_Cpu_NicePathAny) MinTime() *System_Cpu_Nice_MinTimePathAny { + return &System_Cpu_Nice_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -165950,89 +165977,89 @@ func (n *System_Cpu_NiceAny) MinTime() *System_Cpu_Nice_MinTimeAny { } } -// System_Cpu_SoftwareInterrupt represents the /openconfig-system/system/cpus/cpu/state/software-interrupt YANG schema element. -type System_Cpu_SoftwareInterrupt struct { +// System_Cpu_SoftwareInterruptPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt YANG schema element. +type System_Cpu_SoftwareInterruptPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterruptAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt YANG schema element. -type System_Cpu_SoftwareInterruptAny struct { +// System_Cpu_SoftwareInterruptPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt YANG schema element. +type System_Cpu_SoftwareInterruptPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_Avg represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/avg YANG schema element. -type System_Cpu_SoftwareInterrupt_Avg struct { +// System_Cpu_SoftwareInterrupt_AvgPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/avg YANG schema element. +type System_Cpu_SoftwareInterrupt_AvgPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/avg YANG schema element. -type System_Cpu_SoftwareInterrupt_AvgAny struct { +// System_Cpu_SoftwareInterrupt_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/avg YANG schema element. +type System_Cpu_SoftwareInterrupt_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_Instant represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/instant YANG schema element. -type System_Cpu_SoftwareInterrupt_Instant struct { +// System_Cpu_SoftwareInterrupt_InstantPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/instant YANG schema element. +type System_Cpu_SoftwareInterrupt_InstantPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/instant YANG schema element. -type System_Cpu_SoftwareInterrupt_InstantAny struct { +// System_Cpu_SoftwareInterrupt_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/instant YANG schema element. +type System_Cpu_SoftwareInterrupt_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_Interval represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/interval YANG schema element. -type System_Cpu_SoftwareInterrupt_Interval struct { +// System_Cpu_SoftwareInterrupt_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/interval YANG schema element. +type System_Cpu_SoftwareInterrupt_IntervalPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/interval YANG schema element. -type System_Cpu_SoftwareInterrupt_IntervalAny struct { +// System_Cpu_SoftwareInterrupt_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/interval YANG schema element. +type System_Cpu_SoftwareInterrupt_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_Max represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/max YANG schema element. -type System_Cpu_SoftwareInterrupt_Max struct { +// System_Cpu_SoftwareInterrupt_MaxPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/max YANG schema element. +type System_Cpu_SoftwareInterrupt_MaxPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/max YANG schema element. -type System_Cpu_SoftwareInterrupt_MaxAny struct { +// System_Cpu_SoftwareInterrupt_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/max YANG schema element. +type System_Cpu_SoftwareInterrupt_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MaxTime represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/max-time YANG schema element. -type System_Cpu_SoftwareInterrupt_MaxTime struct { +// System_Cpu_SoftwareInterrupt_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/max-time YANG schema element. +type System_Cpu_SoftwareInterrupt_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/max-time YANG schema element. -type System_Cpu_SoftwareInterrupt_MaxTimeAny struct { +// System_Cpu_SoftwareInterrupt_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/max-time YANG schema element. +type System_Cpu_SoftwareInterrupt_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_Min represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/min YANG schema element. -type System_Cpu_SoftwareInterrupt_Min struct { +// System_Cpu_SoftwareInterrupt_MinPath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/min YANG schema element. +type System_Cpu_SoftwareInterrupt_MinPath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/min YANG schema element. -type System_Cpu_SoftwareInterrupt_MinAny struct { +// System_Cpu_SoftwareInterrupt_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/min YANG schema element. +type System_Cpu_SoftwareInterrupt_MinPathAny struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MinTime represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/min-time YANG schema element. -type System_Cpu_SoftwareInterrupt_MinTime struct { +// System_Cpu_SoftwareInterrupt_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/software-interrupt/min-time YANG schema element. +type System_Cpu_SoftwareInterrupt_MinTimePath struct { *ygot.NodePath } -// System_Cpu_SoftwareInterrupt_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/min-time YANG schema element. -type System_Cpu_SoftwareInterrupt_MinTimeAny struct { +// System_Cpu_SoftwareInterrupt_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/software-interrupt/min-time YANG schema element. +type System_Cpu_SoftwareInterrupt_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_SoftwareInterrupt the path struct for its child "avg". -func (n *System_Cpu_SoftwareInterrupt) Avg() *System_Cpu_SoftwareInterrupt_Avg { - return &System_Cpu_SoftwareInterrupt_Avg{ +// Avg returns from System_Cpu_SoftwareInterruptPath the path struct for its child "avg". +func (n *System_Cpu_SoftwareInterruptPath) Avg() *System_Cpu_SoftwareInterrupt_AvgPath { + return &System_Cpu_SoftwareInterrupt_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166041,9 +166068,9 @@ func (n *System_Cpu_SoftwareInterrupt) Avg() *System_Cpu_SoftwareInterrupt_Avg { } } -// Avg returns from System_Cpu_SoftwareInterruptAny the path struct for its child "avg". -func (n *System_Cpu_SoftwareInterruptAny) Avg() *System_Cpu_SoftwareInterrupt_AvgAny { - return &System_Cpu_SoftwareInterrupt_AvgAny{ +// Avg returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "avg". +func (n *System_Cpu_SoftwareInterruptPathAny) Avg() *System_Cpu_SoftwareInterrupt_AvgPathAny { + return &System_Cpu_SoftwareInterrupt_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166052,9 +166079,9 @@ func (n *System_Cpu_SoftwareInterruptAny) Avg() *System_Cpu_SoftwareInterrupt_Av } } -// Instant returns from System_Cpu_SoftwareInterrupt the path struct for its child "instant". -func (n *System_Cpu_SoftwareInterrupt) Instant() *System_Cpu_SoftwareInterrupt_Instant { - return &System_Cpu_SoftwareInterrupt_Instant{ +// Instant returns from System_Cpu_SoftwareInterruptPath the path struct for its child "instant". +func (n *System_Cpu_SoftwareInterruptPath) Instant() *System_Cpu_SoftwareInterrupt_InstantPath { + return &System_Cpu_SoftwareInterrupt_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166063,9 +166090,9 @@ func (n *System_Cpu_SoftwareInterrupt) Instant() *System_Cpu_SoftwareInterrupt_I } } -// Instant returns from System_Cpu_SoftwareInterruptAny the path struct for its child "instant". -func (n *System_Cpu_SoftwareInterruptAny) Instant() *System_Cpu_SoftwareInterrupt_InstantAny { - return &System_Cpu_SoftwareInterrupt_InstantAny{ +// Instant returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "instant". +func (n *System_Cpu_SoftwareInterruptPathAny) Instant() *System_Cpu_SoftwareInterrupt_InstantPathAny { + return &System_Cpu_SoftwareInterrupt_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166074,9 +166101,9 @@ func (n *System_Cpu_SoftwareInterruptAny) Instant() *System_Cpu_SoftwareInterrup } } -// Interval returns from System_Cpu_SoftwareInterrupt the path struct for its child "interval". -func (n *System_Cpu_SoftwareInterrupt) Interval() *System_Cpu_SoftwareInterrupt_Interval { - return &System_Cpu_SoftwareInterrupt_Interval{ +// Interval returns from System_Cpu_SoftwareInterruptPath the path struct for its child "interval". +func (n *System_Cpu_SoftwareInterruptPath) Interval() *System_Cpu_SoftwareInterrupt_IntervalPath { + return &System_Cpu_SoftwareInterrupt_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166085,9 +166112,9 @@ func (n *System_Cpu_SoftwareInterrupt) Interval() *System_Cpu_SoftwareInterrupt_ } } -// Interval returns from System_Cpu_SoftwareInterruptAny the path struct for its child "interval". -func (n *System_Cpu_SoftwareInterruptAny) Interval() *System_Cpu_SoftwareInterrupt_IntervalAny { - return &System_Cpu_SoftwareInterrupt_IntervalAny{ +// Interval returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "interval". +func (n *System_Cpu_SoftwareInterruptPathAny) Interval() *System_Cpu_SoftwareInterrupt_IntervalPathAny { + return &System_Cpu_SoftwareInterrupt_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166096,9 +166123,9 @@ func (n *System_Cpu_SoftwareInterruptAny) Interval() *System_Cpu_SoftwareInterru } } -// Max returns from System_Cpu_SoftwareInterrupt the path struct for its child "max". -func (n *System_Cpu_SoftwareInterrupt) Max() *System_Cpu_SoftwareInterrupt_Max { - return &System_Cpu_SoftwareInterrupt_Max{ +// Max returns from System_Cpu_SoftwareInterruptPath the path struct for its child "max". +func (n *System_Cpu_SoftwareInterruptPath) Max() *System_Cpu_SoftwareInterrupt_MaxPath { + return &System_Cpu_SoftwareInterrupt_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166107,9 +166134,9 @@ func (n *System_Cpu_SoftwareInterrupt) Max() *System_Cpu_SoftwareInterrupt_Max { } } -// Max returns from System_Cpu_SoftwareInterruptAny the path struct for its child "max". -func (n *System_Cpu_SoftwareInterruptAny) Max() *System_Cpu_SoftwareInterrupt_MaxAny { - return &System_Cpu_SoftwareInterrupt_MaxAny{ +// Max returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "max". +func (n *System_Cpu_SoftwareInterruptPathAny) Max() *System_Cpu_SoftwareInterrupt_MaxPathAny { + return &System_Cpu_SoftwareInterrupt_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166118,9 +166145,9 @@ func (n *System_Cpu_SoftwareInterruptAny) Max() *System_Cpu_SoftwareInterrupt_Ma } } -// MaxTime returns from System_Cpu_SoftwareInterrupt the path struct for its child "max-time". -func (n *System_Cpu_SoftwareInterrupt) MaxTime() *System_Cpu_SoftwareInterrupt_MaxTime { - return &System_Cpu_SoftwareInterrupt_MaxTime{ +// MaxTime returns from System_Cpu_SoftwareInterruptPath the path struct for its child "max-time". +func (n *System_Cpu_SoftwareInterruptPath) MaxTime() *System_Cpu_SoftwareInterrupt_MaxTimePath { + return &System_Cpu_SoftwareInterrupt_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166129,9 +166156,9 @@ func (n *System_Cpu_SoftwareInterrupt) MaxTime() *System_Cpu_SoftwareInterrupt_M } } -// MaxTime returns from System_Cpu_SoftwareInterruptAny the path struct for its child "max-time". -func (n *System_Cpu_SoftwareInterruptAny) MaxTime() *System_Cpu_SoftwareInterrupt_MaxTimeAny { - return &System_Cpu_SoftwareInterrupt_MaxTimeAny{ +// MaxTime returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "max-time". +func (n *System_Cpu_SoftwareInterruptPathAny) MaxTime() *System_Cpu_SoftwareInterrupt_MaxTimePathAny { + return &System_Cpu_SoftwareInterrupt_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166140,9 +166167,9 @@ func (n *System_Cpu_SoftwareInterruptAny) MaxTime() *System_Cpu_SoftwareInterrup } } -// Min returns from System_Cpu_SoftwareInterrupt the path struct for its child "min". -func (n *System_Cpu_SoftwareInterrupt) Min() *System_Cpu_SoftwareInterrupt_Min { - return &System_Cpu_SoftwareInterrupt_Min{ +// Min returns from System_Cpu_SoftwareInterruptPath the path struct for its child "min". +func (n *System_Cpu_SoftwareInterruptPath) Min() *System_Cpu_SoftwareInterrupt_MinPath { + return &System_Cpu_SoftwareInterrupt_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166151,9 +166178,9 @@ func (n *System_Cpu_SoftwareInterrupt) Min() *System_Cpu_SoftwareInterrupt_Min { } } -// Min returns from System_Cpu_SoftwareInterruptAny the path struct for its child "min". -func (n *System_Cpu_SoftwareInterruptAny) Min() *System_Cpu_SoftwareInterrupt_MinAny { - return &System_Cpu_SoftwareInterrupt_MinAny{ +// Min returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "min". +func (n *System_Cpu_SoftwareInterruptPathAny) Min() *System_Cpu_SoftwareInterrupt_MinPathAny { + return &System_Cpu_SoftwareInterrupt_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166162,9 +166189,9 @@ func (n *System_Cpu_SoftwareInterruptAny) Min() *System_Cpu_SoftwareInterrupt_Mi } } -// MinTime returns from System_Cpu_SoftwareInterrupt the path struct for its child "min-time". -func (n *System_Cpu_SoftwareInterrupt) MinTime() *System_Cpu_SoftwareInterrupt_MinTime { - return &System_Cpu_SoftwareInterrupt_MinTime{ +// MinTime returns from System_Cpu_SoftwareInterruptPath the path struct for its child "min-time". +func (n *System_Cpu_SoftwareInterruptPath) MinTime() *System_Cpu_SoftwareInterrupt_MinTimePath { + return &System_Cpu_SoftwareInterrupt_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166173,9 +166200,9 @@ func (n *System_Cpu_SoftwareInterrupt) MinTime() *System_Cpu_SoftwareInterrupt_M } } -// MinTime returns from System_Cpu_SoftwareInterruptAny the path struct for its child "min-time". -func (n *System_Cpu_SoftwareInterruptAny) MinTime() *System_Cpu_SoftwareInterrupt_MinTimeAny { - return &System_Cpu_SoftwareInterrupt_MinTimeAny{ +// MinTime returns from System_Cpu_SoftwareInterruptPathAny the path struct for its child "min-time". +func (n *System_Cpu_SoftwareInterruptPathAny) MinTime() *System_Cpu_SoftwareInterrupt_MinTimePathAny { + return &System_Cpu_SoftwareInterrupt_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166184,89 +166211,89 @@ func (n *System_Cpu_SoftwareInterruptAny) MinTime() *System_Cpu_SoftwareInterrup } } -// System_Cpu_Total represents the /openconfig-system/system/cpus/cpu/state/total YANG schema element. -type System_Cpu_Total struct { +// System_Cpu_TotalPath represents the /openconfig-system/system/cpus/cpu/state/total YANG schema element. +type System_Cpu_TotalPath struct { *ygot.NodePath } -// System_Cpu_TotalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total YANG schema element. -type System_Cpu_TotalAny struct { +// System_Cpu_TotalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total YANG schema element. +type System_Cpu_TotalPathAny struct { *ygot.NodePath } -// System_Cpu_Total_Avg represents the /openconfig-system/system/cpus/cpu/state/total/avg YANG schema element. -type System_Cpu_Total_Avg struct { +// System_Cpu_Total_AvgPath represents the /openconfig-system/system/cpus/cpu/state/total/avg YANG schema element. +type System_Cpu_Total_AvgPath struct { *ygot.NodePath } -// System_Cpu_Total_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/avg YANG schema element. -type System_Cpu_Total_AvgAny struct { +// System_Cpu_Total_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/avg YANG schema element. +type System_Cpu_Total_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_Total_Instant represents the /openconfig-system/system/cpus/cpu/state/total/instant YANG schema element. -type System_Cpu_Total_Instant struct { +// System_Cpu_Total_InstantPath represents the /openconfig-system/system/cpus/cpu/state/total/instant YANG schema element. +type System_Cpu_Total_InstantPath struct { *ygot.NodePath } -// System_Cpu_Total_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/instant YANG schema element. -type System_Cpu_Total_InstantAny struct { +// System_Cpu_Total_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/instant YANG schema element. +type System_Cpu_Total_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_Total_Interval represents the /openconfig-system/system/cpus/cpu/state/total/interval YANG schema element. -type System_Cpu_Total_Interval struct { +// System_Cpu_Total_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/total/interval YANG schema element. +type System_Cpu_Total_IntervalPath struct { *ygot.NodePath } -// System_Cpu_Total_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/interval YANG schema element. -type System_Cpu_Total_IntervalAny struct { +// System_Cpu_Total_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/interval YANG schema element. +type System_Cpu_Total_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_Total_Max represents the /openconfig-system/system/cpus/cpu/state/total/max YANG schema element. -type System_Cpu_Total_Max struct { +// System_Cpu_Total_MaxPath represents the /openconfig-system/system/cpus/cpu/state/total/max YANG schema element. +type System_Cpu_Total_MaxPath struct { *ygot.NodePath } -// System_Cpu_Total_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/max YANG schema element. -type System_Cpu_Total_MaxAny struct { +// System_Cpu_Total_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/max YANG schema element. +type System_Cpu_Total_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_Total_MaxTime represents the /openconfig-system/system/cpus/cpu/state/total/max-time YANG schema element. -type System_Cpu_Total_MaxTime struct { +// System_Cpu_Total_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/total/max-time YANG schema element. +type System_Cpu_Total_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_Total_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/max-time YANG schema element. -type System_Cpu_Total_MaxTimeAny struct { +// System_Cpu_Total_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/max-time YANG schema element. +type System_Cpu_Total_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_Total_Min represents the /openconfig-system/system/cpus/cpu/state/total/min YANG schema element. -type System_Cpu_Total_Min struct { +// System_Cpu_Total_MinPath represents the /openconfig-system/system/cpus/cpu/state/total/min YANG schema element. +type System_Cpu_Total_MinPath struct { *ygot.NodePath } -// System_Cpu_Total_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/min YANG schema element. -type System_Cpu_Total_MinAny struct { +// System_Cpu_Total_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/min YANG schema element. +type System_Cpu_Total_MinPathAny struct { *ygot.NodePath } -// System_Cpu_Total_MinTime represents the /openconfig-system/system/cpus/cpu/state/total/min-time YANG schema element. -type System_Cpu_Total_MinTime struct { +// System_Cpu_Total_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/total/min-time YANG schema element. +type System_Cpu_Total_MinTimePath struct { *ygot.NodePath } -// System_Cpu_Total_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/min-time YANG schema element. -type System_Cpu_Total_MinTimeAny struct { +// System_Cpu_Total_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/total/min-time YANG schema element. +type System_Cpu_Total_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_Total the path struct for its child "avg". -func (n *System_Cpu_Total) Avg() *System_Cpu_Total_Avg { - return &System_Cpu_Total_Avg{ +// Avg returns from System_Cpu_TotalPath the path struct for its child "avg". +func (n *System_Cpu_TotalPath) Avg() *System_Cpu_Total_AvgPath { + return &System_Cpu_Total_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166275,9 +166302,9 @@ func (n *System_Cpu_Total) Avg() *System_Cpu_Total_Avg { } } -// Avg returns from System_Cpu_TotalAny the path struct for its child "avg". -func (n *System_Cpu_TotalAny) Avg() *System_Cpu_Total_AvgAny { - return &System_Cpu_Total_AvgAny{ +// Avg returns from System_Cpu_TotalPathAny the path struct for its child "avg". +func (n *System_Cpu_TotalPathAny) Avg() *System_Cpu_Total_AvgPathAny { + return &System_Cpu_Total_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166286,9 +166313,9 @@ func (n *System_Cpu_TotalAny) Avg() *System_Cpu_Total_AvgAny { } } -// Instant returns from System_Cpu_Total the path struct for its child "instant". -func (n *System_Cpu_Total) Instant() *System_Cpu_Total_Instant { - return &System_Cpu_Total_Instant{ +// Instant returns from System_Cpu_TotalPath the path struct for its child "instant". +func (n *System_Cpu_TotalPath) Instant() *System_Cpu_Total_InstantPath { + return &System_Cpu_Total_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166297,9 +166324,9 @@ func (n *System_Cpu_Total) Instant() *System_Cpu_Total_Instant { } } -// Instant returns from System_Cpu_TotalAny the path struct for its child "instant". -func (n *System_Cpu_TotalAny) Instant() *System_Cpu_Total_InstantAny { - return &System_Cpu_Total_InstantAny{ +// Instant returns from System_Cpu_TotalPathAny the path struct for its child "instant". +func (n *System_Cpu_TotalPathAny) Instant() *System_Cpu_Total_InstantPathAny { + return &System_Cpu_Total_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166308,9 +166335,9 @@ func (n *System_Cpu_TotalAny) Instant() *System_Cpu_Total_InstantAny { } } -// Interval returns from System_Cpu_Total the path struct for its child "interval". -func (n *System_Cpu_Total) Interval() *System_Cpu_Total_Interval { - return &System_Cpu_Total_Interval{ +// Interval returns from System_Cpu_TotalPath the path struct for its child "interval". +func (n *System_Cpu_TotalPath) Interval() *System_Cpu_Total_IntervalPath { + return &System_Cpu_Total_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166319,9 +166346,9 @@ func (n *System_Cpu_Total) Interval() *System_Cpu_Total_Interval { } } -// Interval returns from System_Cpu_TotalAny the path struct for its child "interval". -func (n *System_Cpu_TotalAny) Interval() *System_Cpu_Total_IntervalAny { - return &System_Cpu_Total_IntervalAny{ +// Interval returns from System_Cpu_TotalPathAny the path struct for its child "interval". +func (n *System_Cpu_TotalPathAny) Interval() *System_Cpu_Total_IntervalPathAny { + return &System_Cpu_Total_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166330,9 +166357,9 @@ func (n *System_Cpu_TotalAny) Interval() *System_Cpu_Total_IntervalAny { } } -// Max returns from System_Cpu_Total the path struct for its child "max". -func (n *System_Cpu_Total) Max() *System_Cpu_Total_Max { - return &System_Cpu_Total_Max{ +// Max returns from System_Cpu_TotalPath the path struct for its child "max". +func (n *System_Cpu_TotalPath) Max() *System_Cpu_Total_MaxPath { + return &System_Cpu_Total_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166341,9 +166368,9 @@ func (n *System_Cpu_Total) Max() *System_Cpu_Total_Max { } } -// Max returns from System_Cpu_TotalAny the path struct for its child "max". -func (n *System_Cpu_TotalAny) Max() *System_Cpu_Total_MaxAny { - return &System_Cpu_Total_MaxAny{ +// Max returns from System_Cpu_TotalPathAny the path struct for its child "max". +func (n *System_Cpu_TotalPathAny) Max() *System_Cpu_Total_MaxPathAny { + return &System_Cpu_Total_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166352,9 +166379,9 @@ func (n *System_Cpu_TotalAny) Max() *System_Cpu_Total_MaxAny { } } -// MaxTime returns from System_Cpu_Total the path struct for its child "max-time". -func (n *System_Cpu_Total) MaxTime() *System_Cpu_Total_MaxTime { - return &System_Cpu_Total_MaxTime{ +// MaxTime returns from System_Cpu_TotalPath the path struct for its child "max-time". +func (n *System_Cpu_TotalPath) MaxTime() *System_Cpu_Total_MaxTimePath { + return &System_Cpu_Total_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166363,9 +166390,9 @@ func (n *System_Cpu_Total) MaxTime() *System_Cpu_Total_MaxTime { } } -// MaxTime returns from System_Cpu_TotalAny the path struct for its child "max-time". -func (n *System_Cpu_TotalAny) MaxTime() *System_Cpu_Total_MaxTimeAny { - return &System_Cpu_Total_MaxTimeAny{ +// MaxTime returns from System_Cpu_TotalPathAny the path struct for its child "max-time". +func (n *System_Cpu_TotalPathAny) MaxTime() *System_Cpu_Total_MaxTimePathAny { + return &System_Cpu_Total_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166374,9 +166401,9 @@ func (n *System_Cpu_TotalAny) MaxTime() *System_Cpu_Total_MaxTimeAny { } } -// Min returns from System_Cpu_Total the path struct for its child "min". -func (n *System_Cpu_Total) Min() *System_Cpu_Total_Min { - return &System_Cpu_Total_Min{ +// Min returns from System_Cpu_TotalPath the path struct for its child "min". +func (n *System_Cpu_TotalPath) Min() *System_Cpu_Total_MinPath { + return &System_Cpu_Total_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166385,9 +166412,9 @@ func (n *System_Cpu_Total) Min() *System_Cpu_Total_Min { } } -// Min returns from System_Cpu_TotalAny the path struct for its child "min". -func (n *System_Cpu_TotalAny) Min() *System_Cpu_Total_MinAny { - return &System_Cpu_Total_MinAny{ +// Min returns from System_Cpu_TotalPathAny the path struct for its child "min". +func (n *System_Cpu_TotalPathAny) Min() *System_Cpu_Total_MinPathAny { + return &System_Cpu_Total_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166396,9 +166423,9 @@ func (n *System_Cpu_TotalAny) Min() *System_Cpu_Total_MinAny { } } -// MinTime returns from System_Cpu_Total the path struct for its child "min-time". -func (n *System_Cpu_Total) MinTime() *System_Cpu_Total_MinTime { - return &System_Cpu_Total_MinTime{ +// MinTime returns from System_Cpu_TotalPath the path struct for its child "min-time". +func (n *System_Cpu_TotalPath) MinTime() *System_Cpu_Total_MinTimePath { + return &System_Cpu_Total_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166407,9 +166434,9 @@ func (n *System_Cpu_Total) MinTime() *System_Cpu_Total_MinTime { } } -// MinTime returns from System_Cpu_TotalAny the path struct for its child "min-time". -func (n *System_Cpu_TotalAny) MinTime() *System_Cpu_Total_MinTimeAny { - return &System_Cpu_Total_MinTimeAny{ +// MinTime returns from System_Cpu_TotalPathAny the path struct for its child "min-time". +func (n *System_Cpu_TotalPathAny) MinTime() *System_Cpu_Total_MinTimePathAny { + return &System_Cpu_Total_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166418,89 +166445,89 @@ func (n *System_Cpu_TotalAny) MinTime() *System_Cpu_Total_MinTimeAny { } } -// System_Cpu_User represents the /openconfig-system/system/cpus/cpu/state/user YANG schema element. -type System_Cpu_User struct { +// System_Cpu_UserPath represents the /openconfig-system/system/cpus/cpu/state/user YANG schema element. +type System_Cpu_UserPath struct { *ygot.NodePath } -// System_Cpu_UserAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user YANG schema element. -type System_Cpu_UserAny struct { +// System_Cpu_UserPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user YANG schema element. +type System_Cpu_UserPathAny struct { *ygot.NodePath } -// System_Cpu_User_Avg represents the /openconfig-system/system/cpus/cpu/state/user/avg YANG schema element. -type System_Cpu_User_Avg struct { +// System_Cpu_User_AvgPath represents the /openconfig-system/system/cpus/cpu/state/user/avg YANG schema element. +type System_Cpu_User_AvgPath struct { *ygot.NodePath } -// System_Cpu_User_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/avg YANG schema element. -type System_Cpu_User_AvgAny struct { +// System_Cpu_User_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/avg YANG schema element. +type System_Cpu_User_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_User_Instant represents the /openconfig-system/system/cpus/cpu/state/user/instant YANG schema element. -type System_Cpu_User_Instant struct { +// System_Cpu_User_InstantPath represents the /openconfig-system/system/cpus/cpu/state/user/instant YANG schema element. +type System_Cpu_User_InstantPath struct { *ygot.NodePath } -// System_Cpu_User_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/instant YANG schema element. -type System_Cpu_User_InstantAny struct { +// System_Cpu_User_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/instant YANG schema element. +type System_Cpu_User_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_User_Interval represents the /openconfig-system/system/cpus/cpu/state/user/interval YANG schema element. -type System_Cpu_User_Interval struct { +// System_Cpu_User_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/user/interval YANG schema element. +type System_Cpu_User_IntervalPath struct { *ygot.NodePath } -// System_Cpu_User_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/interval YANG schema element. -type System_Cpu_User_IntervalAny struct { +// System_Cpu_User_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/interval YANG schema element. +type System_Cpu_User_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_User_Max represents the /openconfig-system/system/cpus/cpu/state/user/max YANG schema element. -type System_Cpu_User_Max struct { +// System_Cpu_User_MaxPath represents the /openconfig-system/system/cpus/cpu/state/user/max YANG schema element. +type System_Cpu_User_MaxPath struct { *ygot.NodePath } -// System_Cpu_User_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/max YANG schema element. -type System_Cpu_User_MaxAny struct { +// System_Cpu_User_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/max YANG schema element. +type System_Cpu_User_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_User_MaxTime represents the /openconfig-system/system/cpus/cpu/state/user/max-time YANG schema element. -type System_Cpu_User_MaxTime struct { +// System_Cpu_User_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/user/max-time YANG schema element. +type System_Cpu_User_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_User_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/max-time YANG schema element. -type System_Cpu_User_MaxTimeAny struct { +// System_Cpu_User_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/max-time YANG schema element. +type System_Cpu_User_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_User_Min represents the /openconfig-system/system/cpus/cpu/state/user/min YANG schema element. -type System_Cpu_User_Min struct { +// System_Cpu_User_MinPath represents the /openconfig-system/system/cpus/cpu/state/user/min YANG schema element. +type System_Cpu_User_MinPath struct { *ygot.NodePath } -// System_Cpu_User_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/min YANG schema element. -type System_Cpu_User_MinAny struct { +// System_Cpu_User_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/min YANG schema element. +type System_Cpu_User_MinPathAny struct { *ygot.NodePath } -// System_Cpu_User_MinTime represents the /openconfig-system/system/cpus/cpu/state/user/min-time YANG schema element. -type System_Cpu_User_MinTime struct { +// System_Cpu_User_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/user/min-time YANG schema element. +type System_Cpu_User_MinTimePath struct { *ygot.NodePath } -// System_Cpu_User_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/min-time YANG schema element. -type System_Cpu_User_MinTimeAny struct { +// System_Cpu_User_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/user/min-time YANG schema element. +type System_Cpu_User_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_User the path struct for its child "avg". -func (n *System_Cpu_User) Avg() *System_Cpu_User_Avg { - return &System_Cpu_User_Avg{ +// Avg returns from System_Cpu_UserPath the path struct for its child "avg". +func (n *System_Cpu_UserPath) Avg() *System_Cpu_User_AvgPath { + return &System_Cpu_User_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166509,9 +166536,9 @@ func (n *System_Cpu_User) Avg() *System_Cpu_User_Avg { } } -// Avg returns from System_Cpu_UserAny the path struct for its child "avg". -func (n *System_Cpu_UserAny) Avg() *System_Cpu_User_AvgAny { - return &System_Cpu_User_AvgAny{ +// Avg returns from System_Cpu_UserPathAny the path struct for its child "avg". +func (n *System_Cpu_UserPathAny) Avg() *System_Cpu_User_AvgPathAny { + return &System_Cpu_User_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166520,9 +166547,9 @@ func (n *System_Cpu_UserAny) Avg() *System_Cpu_User_AvgAny { } } -// Instant returns from System_Cpu_User the path struct for its child "instant". -func (n *System_Cpu_User) Instant() *System_Cpu_User_Instant { - return &System_Cpu_User_Instant{ +// Instant returns from System_Cpu_UserPath the path struct for its child "instant". +func (n *System_Cpu_UserPath) Instant() *System_Cpu_User_InstantPath { + return &System_Cpu_User_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166531,9 +166558,9 @@ func (n *System_Cpu_User) Instant() *System_Cpu_User_Instant { } } -// Instant returns from System_Cpu_UserAny the path struct for its child "instant". -func (n *System_Cpu_UserAny) Instant() *System_Cpu_User_InstantAny { - return &System_Cpu_User_InstantAny{ +// Instant returns from System_Cpu_UserPathAny the path struct for its child "instant". +func (n *System_Cpu_UserPathAny) Instant() *System_Cpu_User_InstantPathAny { + return &System_Cpu_User_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166542,9 +166569,9 @@ func (n *System_Cpu_UserAny) Instant() *System_Cpu_User_InstantAny { } } -// Interval returns from System_Cpu_User the path struct for its child "interval". -func (n *System_Cpu_User) Interval() *System_Cpu_User_Interval { - return &System_Cpu_User_Interval{ +// Interval returns from System_Cpu_UserPath the path struct for its child "interval". +func (n *System_Cpu_UserPath) Interval() *System_Cpu_User_IntervalPath { + return &System_Cpu_User_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166553,9 +166580,9 @@ func (n *System_Cpu_User) Interval() *System_Cpu_User_Interval { } } -// Interval returns from System_Cpu_UserAny the path struct for its child "interval". -func (n *System_Cpu_UserAny) Interval() *System_Cpu_User_IntervalAny { - return &System_Cpu_User_IntervalAny{ +// Interval returns from System_Cpu_UserPathAny the path struct for its child "interval". +func (n *System_Cpu_UserPathAny) Interval() *System_Cpu_User_IntervalPathAny { + return &System_Cpu_User_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166564,9 +166591,9 @@ func (n *System_Cpu_UserAny) Interval() *System_Cpu_User_IntervalAny { } } -// Max returns from System_Cpu_User the path struct for its child "max". -func (n *System_Cpu_User) Max() *System_Cpu_User_Max { - return &System_Cpu_User_Max{ +// Max returns from System_Cpu_UserPath the path struct for its child "max". +func (n *System_Cpu_UserPath) Max() *System_Cpu_User_MaxPath { + return &System_Cpu_User_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166575,9 +166602,9 @@ func (n *System_Cpu_User) Max() *System_Cpu_User_Max { } } -// Max returns from System_Cpu_UserAny the path struct for its child "max". -func (n *System_Cpu_UserAny) Max() *System_Cpu_User_MaxAny { - return &System_Cpu_User_MaxAny{ +// Max returns from System_Cpu_UserPathAny the path struct for its child "max". +func (n *System_Cpu_UserPathAny) Max() *System_Cpu_User_MaxPathAny { + return &System_Cpu_User_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166586,9 +166613,9 @@ func (n *System_Cpu_UserAny) Max() *System_Cpu_User_MaxAny { } } -// MaxTime returns from System_Cpu_User the path struct for its child "max-time". -func (n *System_Cpu_User) MaxTime() *System_Cpu_User_MaxTime { - return &System_Cpu_User_MaxTime{ +// MaxTime returns from System_Cpu_UserPath the path struct for its child "max-time". +func (n *System_Cpu_UserPath) MaxTime() *System_Cpu_User_MaxTimePath { + return &System_Cpu_User_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166597,9 +166624,9 @@ func (n *System_Cpu_User) MaxTime() *System_Cpu_User_MaxTime { } } -// MaxTime returns from System_Cpu_UserAny the path struct for its child "max-time". -func (n *System_Cpu_UserAny) MaxTime() *System_Cpu_User_MaxTimeAny { - return &System_Cpu_User_MaxTimeAny{ +// MaxTime returns from System_Cpu_UserPathAny the path struct for its child "max-time". +func (n *System_Cpu_UserPathAny) MaxTime() *System_Cpu_User_MaxTimePathAny { + return &System_Cpu_User_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166608,9 +166635,9 @@ func (n *System_Cpu_UserAny) MaxTime() *System_Cpu_User_MaxTimeAny { } } -// Min returns from System_Cpu_User the path struct for its child "min". -func (n *System_Cpu_User) Min() *System_Cpu_User_Min { - return &System_Cpu_User_Min{ +// Min returns from System_Cpu_UserPath the path struct for its child "min". +func (n *System_Cpu_UserPath) Min() *System_Cpu_User_MinPath { + return &System_Cpu_User_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166619,9 +166646,9 @@ func (n *System_Cpu_User) Min() *System_Cpu_User_Min { } } -// Min returns from System_Cpu_UserAny the path struct for its child "min". -func (n *System_Cpu_UserAny) Min() *System_Cpu_User_MinAny { - return &System_Cpu_User_MinAny{ +// Min returns from System_Cpu_UserPathAny the path struct for its child "min". +func (n *System_Cpu_UserPathAny) Min() *System_Cpu_User_MinPathAny { + return &System_Cpu_User_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166630,9 +166657,9 @@ func (n *System_Cpu_UserAny) Min() *System_Cpu_User_MinAny { } } -// MinTime returns from System_Cpu_User the path struct for its child "min-time". -func (n *System_Cpu_User) MinTime() *System_Cpu_User_MinTime { - return &System_Cpu_User_MinTime{ +// MinTime returns from System_Cpu_UserPath the path struct for its child "min-time". +func (n *System_Cpu_UserPath) MinTime() *System_Cpu_User_MinTimePath { + return &System_Cpu_User_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166641,9 +166668,9 @@ func (n *System_Cpu_User) MinTime() *System_Cpu_User_MinTime { } } -// MinTime returns from System_Cpu_UserAny the path struct for its child "min-time". -func (n *System_Cpu_UserAny) MinTime() *System_Cpu_User_MinTimeAny { - return &System_Cpu_User_MinTimeAny{ +// MinTime returns from System_Cpu_UserPathAny the path struct for its child "min-time". +func (n *System_Cpu_UserPathAny) MinTime() *System_Cpu_User_MinTimePathAny { + return &System_Cpu_User_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166652,89 +166679,89 @@ func (n *System_Cpu_UserAny) MinTime() *System_Cpu_User_MinTimeAny { } } -// System_Cpu_Wait represents the /openconfig-system/system/cpus/cpu/state/wait YANG schema element. -type System_Cpu_Wait struct { +// System_Cpu_WaitPath represents the /openconfig-system/system/cpus/cpu/state/wait YANG schema element. +type System_Cpu_WaitPath struct { *ygot.NodePath } -// System_Cpu_WaitAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait YANG schema element. -type System_Cpu_WaitAny struct { +// System_Cpu_WaitPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait YANG schema element. +type System_Cpu_WaitPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_Avg represents the /openconfig-system/system/cpus/cpu/state/wait/avg YANG schema element. -type System_Cpu_Wait_Avg struct { +// System_Cpu_Wait_AvgPath represents the /openconfig-system/system/cpus/cpu/state/wait/avg YANG schema element. +type System_Cpu_Wait_AvgPath struct { *ygot.NodePath } -// System_Cpu_Wait_AvgAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/avg YANG schema element. -type System_Cpu_Wait_AvgAny struct { +// System_Cpu_Wait_AvgPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/avg YANG schema element. +type System_Cpu_Wait_AvgPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_Instant represents the /openconfig-system/system/cpus/cpu/state/wait/instant YANG schema element. -type System_Cpu_Wait_Instant struct { +// System_Cpu_Wait_InstantPath represents the /openconfig-system/system/cpus/cpu/state/wait/instant YANG schema element. +type System_Cpu_Wait_InstantPath struct { *ygot.NodePath } -// System_Cpu_Wait_InstantAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/instant YANG schema element. -type System_Cpu_Wait_InstantAny struct { +// System_Cpu_Wait_InstantPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/instant YANG schema element. +type System_Cpu_Wait_InstantPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_Interval represents the /openconfig-system/system/cpus/cpu/state/wait/interval YANG schema element. -type System_Cpu_Wait_Interval struct { +// System_Cpu_Wait_IntervalPath represents the /openconfig-system/system/cpus/cpu/state/wait/interval YANG schema element. +type System_Cpu_Wait_IntervalPath struct { *ygot.NodePath } -// System_Cpu_Wait_IntervalAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/interval YANG schema element. -type System_Cpu_Wait_IntervalAny struct { +// System_Cpu_Wait_IntervalPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/interval YANG schema element. +type System_Cpu_Wait_IntervalPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_Max represents the /openconfig-system/system/cpus/cpu/state/wait/max YANG schema element. -type System_Cpu_Wait_Max struct { +// System_Cpu_Wait_MaxPath represents the /openconfig-system/system/cpus/cpu/state/wait/max YANG schema element. +type System_Cpu_Wait_MaxPath struct { *ygot.NodePath } -// System_Cpu_Wait_MaxAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/max YANG schema element. -type System_Cpu_Wait_MaxAny struct { +// System_Cpu_Wait_MaxPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/max YANG schema element. +type System_Cpu_Wait_MaxPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_MaxTime represents the /openconfig-system/system/cpus/cpu/state/wait/max-time YANG schema element. -type System_Cpu_Wait_MaxTime struct { +// System_Cpu_Wait_MaxTimePath represents the /openconfig-system/system/cpus/cpu/state/wait/max-time YANG schema element. +type System_Cpu_Wait_MaxTimePath struct { *ygot.NodePath } -// System_Cpu_Wait_MaxTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/max-time YANG schema element. -type System_Cpu_Wait_MaxTimeAny struct { +// System_Cpu_Wait_MaxTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/max-time YANG schema element. +type System_Cpu_Wait_MaxTimePathAny struct { *ygot.NodePath } -// System_Cpu_Wait_Min represents the /openconfig-system/system/cpus/cpu/state/wait/min YANG schema element. -type System_Cpu_Wait_Min struct { +// System_Cpu_Wait_MinPath represents the /openconfig-system/system/cpus/cpu/state/wait/min YANG schema element. +type System_Cpu_Wait_MinPath struct { *ygot.NodePath } -// System_Cpu_Wait_MinAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/min YANG schema element. -type System_Cpu_Wait_MinAny struct { +// System_Cpu_Wait_MinPathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/min YANG schema element. +type System_Cpu_Wait_MinPathAny struct { *ygot.NodePath } -// System_Cpu_Wait_MinTime represents the /openconfig-system/system/cpus/cpu/state/wait/min-time YANG schema element. -type System_Cpu_Wait_MinTime struct { +// System_Cpu_Wait_MinTimePath represents the /openconfig-system/system/cpus/cpu/state/wait/min-time YANG schema element. +type System_Cpu_Wait_MinTimePath struct { *ygot.NodePath } -// System_Cpu_Wait_MinTimeAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/min-time YANG schema element. -type System_Cpu_Wait_MinTimeAny struct { +// System_Cpu_Wait_MinTimePathAny represents the wildcard version of the /openconfig-system/system/cpus/cpu/state/wait/min-time YANG schema element. +type System_Cpu_Wait_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from System_Cpu_Wait the path struct for its child "avg". -func (n *System_Cpu_Wait) Avg() *System_Cpu_Wait_Avg { - return &System_Cpu_Wait_Avg{ +// Avg returns from System_Cpu_WaitPath the path struct for its child "avg". +func (n *System_Cpu_WaitPath) Avg() *System_Cpu_Wait_AvgPath { + return &System_Cpu_Wait_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166743,9 +166770,9 @@ func (n *System_Cpu_Wait) Avg() *System_Cpu_Wait_Avg { } } -// Avg returns from System_Cpu_WaitAny the path struct for its child "avg". -func (n *System_Cpu_WaitAny) Avg() *System_Cpu_Wait_AvgAny { - return &System_Cpu_Wait_AvgAny{ +// Avg returns from System_Cpu_WaitPathAny the path struct for its child "avg". +func (n *System_Cpu_WaitPathAny) Avg() *System_Cpu_Wait_AvgPathAny { + return &System_Cpu_Wait_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -166754,9 +166781,9 @@ func (n *System_Cpu_WaitAny) Avg() *System_Cpu_Wait_AvgAny { } } -// Instant returns from System_Cpu_Wait the path struct for its child "instant". -func (n *System_Cpu_Wait) Instant() *System_Cpu_Wait_Instant { - return &System_Cpu_Wait_Instant{ +// Instant returns from System_Cpu_WaitPath the path struct for its child "instant". +func (n *System_Cpu_WaitPath) Instant() *System_Cpu_Wait_InstantPath { + return &System_Cpu_Wait_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166765,9 +166792,9 @@ func (n *System_Cpu_Wait) Instant() *System_Cpu_Wait_Instant { } } -// Instant returns from System_Cpu_WaitAny the path struct for its child "instant". -func (n *System_Cpu_WaitAny) Instant() *System_Cpu_Wait_InstantAny { - return &System_Cpu_Wait_InstantAny{ +// Instant returns from System_Cpu_WaitPathAny the path struct for its child "instant". +func (n *System_Cpu_WaitPathAny) Instant() *System_Cpu_Wait_InstantPathAny { + return &System_Cpu_Wait_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -166776,9 +166803,9 @@ func (n *System_Cpu_WaitAny) Instant() *System_Cpu_Wait_InstantAny { } } -// Interval returns from System_Cpu_Wait the path struct for its child "interval". -func (n *System_Cpu_Wait) Interval() *System_Cpu_Wait_Interval { - return &System_Cpu_Wait_Interval{ +// Interval returns from System_Cpu_WaitPath the path struct for its child "interval". +func (n *System_Cpu_WaitPath) Interval() *System_Cpu_Wait_IntervalPath { + return &System_Cpu_Wait_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166787,9 +166814,9 @@ func (n *System_Cpu_Wait) Interval() *System_Cpu_Wait_Interval { } } -// Interval returns from System_Cpu_WaitAny the path struct for its child "interval". -func (n *System_Cpu_WaitAny) Interval() *System_Cpu_Wait_IntervalAny { - return &System_Cpu_Wait_IntervalAny{ +// Interval returns from System_Cpu_WaitPathAny the path struct for its child "interval". +func (n *System_Cpu_WaitPathAny) Interval() *System_Cpu_Wait_IntervalPathAny { + return &System_Cpu_Wait_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -166798,9 +166825,9 @@ func (n *System_Cpu_WaitAny) Interval() *System_Cpu_Wait_IntervalAny { } } -// Max returns from System_Cpu_Wait the path struct for its child "max". -func (n *System_Cpu_Wait) Max() *System_Cpu_Wait_Max { - return &System_Cpu_Wait_Max{ +// Max returns from System_Cpu_WaitPath the path struct for its child "max". +func (n *System_Cpu_WaitPath) Max() *System_Cpu_Wait_MaxPath { + return &System_Cpu_Wait_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166809,9 +166836,9 @@ func (n *System_Cpu_Wait) Max() *System_Cpu_Wait_Max { } } -// Max returns from System_Cpu_WaitAny the path struct for its child "max". -func (n *System_Cpu_WaitAny) Max() *System_Cpu_Wait_MaxAny { - return &System_Cpu_Wait_MaxAny{ +// Max returns from System_Cpu_WaitPathAny the path struct for its child "max". +func (n *System_Cpu_WaitPathAny) Max() *System_Cpu_Wait_MaxPathAny { + return &System_Cpu_Wait_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -166820,9 +166847,9 @@ func (n *System_Cpu_WaitAny) Max() *System_Cpu_Wait_MaxAny { } } -// MaxTime returns from System_Cpu_Wait the path struct for its child "max-time". -func (n *System_Cpu_Wait) MaxTime() *System_Cpu_Wait_MaxTime { - return &System_Cpu_Wait_MaxTime{ +// MaxTime returns from System_Cpu_WaitPath the path struct for its child "max-time". +func (n *System_Cpu_WaitPath) MaxTime() *System_Cpu_Wait_MaxTimePath { + return &System_Cpu_Wait_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166831,9 +166858,9 @@ func (n *System_Cpu_Wait) MaxTime() *System_Cpu_Wait_MaxTime { } } -// MaxTime returns from System_Cpu_WaitAny the path struct for its child "max-time". -func (n *System_Cpu_WaitAny) MaxTime() *System_Cpu_Wait_MaxTimeAny { - return &System_Cpu_Wait_MaxTimeAny{ +// MaxTime returns from System_Cpu_WaitPathAny the path struct for its child "max-time". +func (n *System_Cpu_WaitPathAny) MaxTime() *System_Cpu_Wait_MaxTimePathAny { + return &System_Cpu_Wait_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -166842,9 +166869,9 @@ func (n *System_Cpu_WaitAny) MaxTime() *System_Cpu_Wait_MaxTimeAny { } } -// Min returns from System_Cpu_Wait the path struct for its child "min". -func (n *System_Cpu_Wait) Min() *System_Cpu_Wait_Min { - return &System_Cpu_Wait_Min{ +// Min returns from System_Cpu_WaitPath the path struct for its child "min". +func (n *System_Cpu_WaitPath) Min() *System_Cpu_Wait_MinPath { + return &System_Cpu_Wait_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166853,9 +166880,9 @@ func (n *System_Cpu_Wait) Min() *System_Cpu_Wait_Min { } } -// Min returns from System_Cpu_WaitAny the path struct for its child "min". -func (n *System_Cpu_WaitAny) Min() *System_Cpu_Wait_MinAny { - return &System_Cpu_Wait_MinAny{ +// Min returns from System_Cpu_WaitPathAny the path struct for its child "min". +func (n *System_Cpu_WaitPathAny) Min() *System_Cpu_Wait_MinPathAny { + return &System_Cpu_Wait_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -166864,9 +166891,9 @@ func (n *System_Cpu_WaitAny) Min() *System_Cpu_Wait_MinAny { } } -// MinTime returns from System_Cpu_Wait the path struct for its child "min-time". -func (n *System_Cpu_Wait) MinTime() *System_Cpu_Wait_MinTime { - return &System_Cpu_Wait_MinTime{ +// MinTime returns from System_Cpu_WaitPath the path struct for its child "min-time". +func (n *System_Cpu_WaitPath) MinTime() *System_Cpu_Wait_MinTimePath { + return &System_Cpu_Wait_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166875,9 +166902,9 @@ func (n *System_Cpu_Wait) MinTime() *System_Cpu_Wait_MinTime { } } -// MinTime returns from System_Cpu_WaitAny the path struct for its child "min-time". -func (n *System_Cpu_WaitAny) MinTime() *System_Cpu_Wait_MinTimeAny { - return &System_Cpu_Wait_MinTimeAny{ +// MinTime returns from System_Cpu_WaitPathAny the path struct for its child "min-time". +func (n *System_Cpu_WaitPathAny) MinTime() *System_Cpu_Wait_MinTimePathAny { + return &System_Cpu_Wait_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -166886,29 +166913,29 @@ func (n *System_Cpu_WaitAny) MinTime() *System_Cpu_Wait_MinTimeAny { } } -// System_Dns represents the /openconfig-system/system/dns YANG schema element. -type System_Dns struct { +// System_DnsPath represents the /openconfig-system/system/dns YANG schema element. +type System_DnsPath struct { *ygot.NodePath } -// System_DnsAny represents the wildcard version of the /openconfig-system/system/dns YANG schema element. -type System_DnsAny struct { +// System_DnsPathAny represents the wildcard version of the /openconfig-system/system/dns YANG schema element. +type System_DnsPathAny struct { *ygot.NodePath } -// System_Dns_Search represents the /openconfig-system/system/dns/state/search YANG schema element. -type System_Dns_Search struct { +// System_Dns_SearchPath represents the /openconfig-system/system/dns/config/search YANG schema element. +type System_Dns_SearchPath struct { *ygot.NodePath } -// System_Dns_SearchAny represents the wildcard version of the /openconfig-system/system/dns/state/search YANG schema element. -type System_Dns_SearchAny struct { +// System_Dns_SearchPathAny represents the wildcard version of the /openconfig-system/system/dns/config/search YANG schema element. +type System_Dns_SearchPathAny struct { *ygot.NodePath } -// HostEntryAny returns from System_Dns the path struct for its child "host-entry". -func (n *System_Dns) HostEntryAny() *System_Dns_HostEntryAny { - return &System_Dns_HostEntryAny{ +// HostEntryAny returns from System_DnsPath the path struct for its child "host-entry". +func (n *System_DnsPath) HostEntryAny() *System_Dns_HostEntryPathAny { + return &System_Dns_HostEntryPathAny{ NodePath: ygot.NewNodePath( []string{"host-entries", "host-entry"}, map[string]interface{}{"hostname": "*"}, @@ -166917,9 +166944,9 @@ func (n *System_Dns) HostEntryAny() *System_Dns_HostEntryAny { } } -// HostEntryAny returns from System_DnsAny the path struct for its child "host-entry". -func (n *System_DnsAny) HostEntryAny() *System_Dns_HostEntryAny { - return &System_Dns_HostEntryAny{ +// HostEntryAny returns from System_DnsPathAny the path struct for its child "host-entry". +func (n *System_DnsPathAny) HostEntryAny() *System_Dns_HostEntryPathAny { + return &System_Dns_HostEntryPathAny{ NodePath: ygot.NewNodePath( []string{"host-entries", "host-entry"}, map[string]interface{}{"hostname": "*"}, @@ -166928,9 +166955,9 @@ func (n *System_DnsAny) HostEntryAny() *System_Dns_HostEntryAny { } } -// HostEntry returns from System_Dns the path struct for its child "host-entry". -func (n *System_Dns) HostEntry(Hostname string) *System_Dns_HostEntry { - return &System_Dns_HostEntry{ +// HostEntry returns from System_DnsPath the path struct for its child "host-entry". +func (n *System_DnsPath) HostEntry(Hostname string) *System_Dns_HostEntryPath { + return &System_Dns_HostEntryPath{ NodePath: ygot.NewNodePath( []string{"host-entries", "host-entry"}, map[string]interface{}{"hostname": Hostname}, @@ -166939,9 +166966,9 @@ func (n *System_Dns) HostEntry(Hostname string) *System_Dns_HostEntry { } } -// HostEntry returns from System_DnsAny the path struct for its child "host-entry". -func (n *System_DnsAny) HostEntry(Hostname string) *System_Dns_HostEntryAny { - return &System_Dns_HostEntryAny{ +// HostEntry returns from System_DnsPathAny the path struct for its child "host-entry". +func (n *System_DnsPathAny) HostEntry(Hostname string) *System_Dns_HostEntryPathAny { + return &System_Dns_HostEntryPathAny{ NodePath: ygot.NewNodePath( []string{"host-entries", "host-entry"}, map[string]interface{}{"hostname": Hostname}, @@ -166950,31 +166977,31 @@ func (n *System_DnsAny) HostEntry(Hostname string) *System_Dns_HostEntryAny { } } -// Search returns from System_Dns the path struct for its child "search". -func (n *System_Dns) Search() *System_Dns_Search { - return &System_Dns_Search{ +// Search returns from System_DnsPath the path struct for its child "search". +func (n *System_DnsPath) Search() *System_Dns_SearchPath { + return &System_Dns_SearchPath{ NodePath: ygot.NewNodePath( - []string{"state", "search"}, + []string{"config", "search"}, map[string]interface{}{}, n, ), } } -// Search returns from System_DnsAny the path struct for its child "search". -func (n *System_DnsAny) Search() *System_Dns_SearchAny { - return &System_Dns_SearchAny{ +// Search returns from System_DnsPathAny the path struct for its child "search". +func (n *System_DnsPathAny) Search() *System_Dns_SearchPathAny { + return &System_Dns_SearchPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "search"}, + []string{"config", "search"}, map[string]interface{}{}, n, ), } } -// ServerAny returns from System_Dns the path struct for its child "server". -func (n *System_Dns) ServerAny() *System_Dns_ServerAny { - return &System_Dns_ServerAny{ +// ServerAny returns from System_DnsPath the path struct for its child "server". +func (n *System_DnsPath) ServerAny() *System_Dns_ServerPathAny { + return &System_Dns_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -166983,9 +167010,9 @@ func (n *System_Dns) ServerAny() *System_Dns_ServerAny { } } -// ServerAny returns from System_DnsAny the path struct for its child "server". -func (n *System_DnsAny) ServerAny() *System_Dns_ServerAny { - return &System_Dns_ServerAny{ +// ServerAny returns from System_DnsPathAny the path struct for its child "server". +func (n *System_DnsPathAny) ServerAny() *System_Dns_ServerPathAny { + return &System_Dns_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -166994,9 +167021,9 @@ func (n *System_DnsAny) ServerAny() *System_Dns_ServerAny { } } -// Server returns from System_Dns the path struct for its child "server". -func (n *System_Dns) Server(Address string) *System_Dns_Server { - return &System_Dns_Server{ +// Server returns from System_DnsPath the path struct for its child "server". +func (n *System_DnsPath) Server(Address string) *System_Dns_ServerPath { + return &System_Dns_ServerPath{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -167005,9 +167032,9 @@ func (n *System_Dns) Server(Address string) *System_Dns_Server { } } -// Server returns from System_DnsAny the path struct for its child "server". -func (n *System_DnsAny) Server(Address string) *System_Dns_ServerAny { - return &System_Dns_ServerAny{ +// Server returns from System_DnsPathAny the path struct for its child "server". +func (n *System_DnsPathAny) Server(Address string) *System_Dns_ServerPathAny { + return &System_Dns_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -167016,433 +167043,433 @@ func (n *System_DnsAny) Server(Address string) *System_Dns_ServerAny { } } -// System_Dns_HostEntry represents the /openconfig-system/system/dns/host-entries/host-entry YANG schema element. -type System_Dns_HostEntry struct { +// System_Dns_HostEntryPath represents the /openconfig-system/system/dns/host-entries/host-entry YANG schema element. +type System_Dns_HostEntryPath struct { *ygot.NodePath } -// System_Dns_HostEntryAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry YANG schema element. -type System_Dns_HostEntryAny struct { +// System_Dns_HostEntryPathAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry YANG schema element. +type System_Dns_HostEntryPathAny struct { *ygot.NodePath } -// System_Dns_HostEntry_Alias represents the /openconfig-system/system/dns/host-entries/host-entry/state/alias YANG schema element. -type System_Dns_HostEntry_Alias struct { +// System_Dns_HostEntry_AliasPath represents the /openconfig-system/system/dns/host-entries/host-entry/config/alias YANG schema element. +type System_Dns_HostEntry_AliasPath struct { *ygot.NodePath } -// System_Dns_HostEntry_AliasAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/state/alias YANG schema element. -type System_Dns_HostEntry_AliasAny struct { +// System_Dns_HostEntry_AliasPathAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/config/alias YANG schema element. +type System_Dns_HostEntry_AliasPathAny struct { *ygot.NodePath } -// System_Dns_HostEntry_Hostname represents the /openconfig-system/system/dns/host-entries/host-entry/state/hostname YANG schema element. -type System_Dns_HostEntry_Hostname struct { +// System_Dns_HostEntry_HostnamePath represents the /openconfig-system/system/dns/host-entries/host-entry/config/hostname YANG schema element. +type System_Dns_HostEntry_HostnamePath struct { *ygot.NodePath } -// System_Dns_HostEntry_HostnameAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/state/hostname YANG schema element. -type System_Dns_HostEntry_HostnameAny struct { +// System_Dns_HostEntry_HostnamePathAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/config/hostname YANG schema element. +type System_Dns_HostEntry_HostnamePathAny struct { *ygot.NodePath } -// System_Dns_HostEntry_Ipv4Address represents the /openconfig-system/system/dns/host-entries/host-entry/state/ipv4-address YANG schema element. -type System_Dns_HostEntry_Ipv4Address struct { +// System_Dns_HostEntry_Ipv4AddressPath represents the /openconfig-system/system/dns/host-entries/host-entry/config/ipv4-address YANG schema element. +type System_Dns_HostEntry_Ipv4AddressPath struct { *ygot.NodePath } -// System_Dns_HostEntry_Ipv4AddressAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/state/ipv4-address YANG schema element. -type System_Dns_HostEntry_Ipv4AddressAny struct { +// System_Dns_HostEntry_Ipv4AddressPathAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/config/ipv4-address YANG schema element. +type System_Dns_HostEntry_Ipv4AddressPathAny struct { *ygot.NodePath } -// System_Dns_HostEntry_Ipv6Address represents the /openconfig-system/system/dns/host-entries/host-entry/state/ipv6-address YANG schema element. -type System_Dns_HostEntry_Ipv6Address struct { +// System_Dns_HostEntry_Ipv6AddressPath represents the /openconfig-system/system/dns/host-entries/host-entry/config/ipv6-address YANG schema element. +type System_Dns_HostEntry_Ipv6AddressPath struct { *ygot.NodePath } -// System_Dns_HostEntry_Ipv6AddressAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/state/ipv6-address YANG schema element. -type System_Dns_HostEntry_Ipv6AddressAny struct { +// System_Dns_HostEntry_Ipv6AddressPathAny represents the wildcard version of the /openconfig-system/system/dns/host-entries/host-entry/config/ipv6-address YANG schema element. +type System_Dns_HostEntry_Ipv6AddressPathAny struct { *ygot.NodePath } -// Alias returns from System_Dns_HostEntry the path struct for its child "alias". -func (n *System_Dns_HostEntry) Alias() *System_Dns_HostEntry_Alias { - return &System_Dns_HostEntry_Alias{ +// Alias returns from System_Dns_HostEntryPath the path struct for its child "alias". +func (n *System_Dns_HostEntryPath) Alias() *System_Dns_HostEntry_AliasPath { + return &System_Dns_HostEntry_AliasPath{ NodePath: ygot.NewNodePath( - []string{"state", "alias"}, + []string{"config", "alias"}, map[string]interface{}{}, n, ), } } -// Alias returns from System_Dns_HostEntryAny the path struct for its child "alias". -func (n *System_Dns_HostEntryAny) Alias() *System_Dns_HostEntry_AliasAny { - return &System_Dns_HostEntry_AliasAny{ +// Alias returns from System_Dns_HostEntryPathAny the path struct for its child "alias". +func (n *System_Dns_HostEntryPathAny) Alias() *System_Dns_HostEntry_AliasPathAny { + return &System_Dns_HostEntry_AliasPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "alias"}, + []string{"config", "alias"}, map[string]interface{}{}, n, ), } } -// Hostname returns from System_Dns_HostEntry the path struct for its child "hostname". -func (n *System_Dns_HostEntry) Hostname() *System_Dns_HostEntry_Hostname { - return &System_Dns_HostEntry_Hostname{ +// Hostname returns from System_Dns_HostEntryPath the path struct for its child "hostname". +func (n *System_Dns_HostEntryPath) Hostname() *System_Dns_HostEntry_HostnamePath { + return &System_Dns_HostEntry_HostnamePath{ NodePath: ygot.NewNodePath( - []string{"state", "hostname"}, + []string{"config", "hostname"}, map[string]interface{}{}, n, ), } } -// Hostname returns from System_Dns_HostEntryAny the path struct for its child "hostname". -func (n *System_Dns_HostEntryAny) Hostname() *System_Dns_HostEntry_HostnameAny { - return &System_Dns_HostEntry_HostnameAny{ +// Hostname returns from System_Dns_HostEntryPathAny the path struct for its child "hostname". +func (n *System_Dns_HostEntryPathAny) Hostname() *System_Dns_HostEntry_HostnamePathAny { + return &System_Dns_HostEntry_HostnamePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "hostname"}, + []string{"config", "hostname"}, map[string]interface{}{}, n, ), } } -// Ipv4Address returns from System_Dns_HostEntry the path struct for its child "ipv4-address". -func (n *System_Dns_HostEntry) Ipv4Address() *System_Dns_HostEntry_Ipv4Address { - return &System_Dns_HostEntry_Ipv4Address{ +// Ipv4Address returns from System_Dns_HostEntryPath the path struct for its child "ipv4-address". +func (n *System_Dns_HostEntryPath) Ipv4Address() *System_Dns_HostEntry_Ipv4AddressPath { + return &System_Dns_HostEntry_Ipv4AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv4-address"}, + []string{"config", "ipv4-address"}, map[string]interface{}{}, n, ), } } -// Ipv4Address returns from System_Dns_HostEntryAny the path struct for its child "ipv4-address". -func (n *System_Dns_HostEntryAny) Ipv4Address() *System_Dns_HostEntry_Ipv4AddressAny { - return &System_Dns_HostEntry_Ipv4AddressAny{ +// Ipv4Address returns from System_Dns_HostEntryPathAny the path struct for its child "ipv4-address". +func (n *System_Dns_HostEntryPathAny) Ipv4Address() *System_Dns_HostEntry_Ipv4AddressPathAny { + return &System_Dns_HostEntry_Ipv4AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv4-address"}, + []string{"config", "ipv4-address"}, map[string]interface{}{}, n, ), } } -// Ipv6Address returns from System_Dns_HostEntry the path struct for its child "ipv6-address". -func (n *System_Dns_HostEntry) Ipv6Address() *System_Dns_HostEntry_Ipv6Address { - return &System_Dns_HostEntry_Ipv6Address{ +// Ipv6Address returns from System_Dns_HostEntryPath the path struct for its child "ipv6-address". +func (n *System_Dns_HostEntryPath) Ipv6Address() *System_Dns_HostEntry_Ipv6AddressPath { + return &System_Dns_HostEntry_Ipv6AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-address"}, + []string{"config", "ipv6-address"}, map[string]interface{}{}, n, ), } } -// Ipv6Address returns from System_Dns_HostEntryAny the path struct for its child "ipv6-address". -func (n *System_Dns_HostEntryAny) Ipv6Address() *System_Dns_HostEntry_Ipv6AddressAny { - return &System_Dns_HostEntry_Ipv6AddressAny{ +// Ipv6Address returns from System_Dns_HostEntryPathAny the path struct for its child "ipv6-address". +func (n *System_Dns_HostEntryPathAny) Ipv6Address() *System_Dns_HostEntry_Ipv6AddressPathAny { + return &System_Dns_HostEntry_Ipv6AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ipv6-address"}, + []string{"config", "ipv6-address"}, map[string]interface{}{}, n, ), } } -// System_Dns_Server represents the /openconfig-system/system/dns/servers/server YANG schema element. -type System_Dns_Server struct { +// System_Dns_ServerPath represents the /openconfig-system/system/dns/servers/server YANG schema element. +type System_Dns_ServerPath struct { *ygot.NodePath } -// System_Dns_ServerAny represents the wildcard version of the /openconfig-system/system/dns/servers/server YANG schema element. -type System_Dns_ServerAny struct { +// System_Dns_ServerPathAny represents the wildcard version of the /openconfig-system/system/dns/servers/server YANG schema element. +type System_Dns_ServerPathAny struct { *ygot.NodePath } -// System_Dns_Server_Address represents the /openconfig-system/system/dns/servers/server/state/address YANG schema element. -type System_Dns_Server_Address struct { +// System_Dns_Server_AddressPath represents the /openconfig-system/system/dns/servers/server/config/address YANG schema element. +type System_Dns_Server_AddressPath struct { *ygot.NodePath } -// System_Dns_Server_AddressAny represents the wildcard version of the /openconfig-system/system/dns/servers/server/state/address YANG schema element. -type System_Dns_Server_AddressAny struct { +// System_Dns_Server_AddressPathAny represents the wildcard version of the /openconfig-system/system/dns/servers/server/config/address YANG schema element. +type System_Dns_Server_AddressPathAny struct { *ygot.NodePath } -// System_Dns_Server_Port represents the /openconfig-system/system/dns/servers/server/state/port YANG schema element. -type System_Dns_Server_Port struct { +// System_Dns_Server_PortPath represents the /openconfig-system/system/dns/servers/server/config/port YANG schema element. +type System_Dns_Server_PortPath struct { *ygot.NodePath } -// System_Dns_Server_PortAny represents the wildcard version of the /openconfig-system/system/dns/servers/server/state/port YANG schema element. -type System_Dns_Server_PortAny struct { +// System_Dns_Server_PortPathAny represents the wildcard version of the /openconfig-system/system/dns/servers/server/config/port YANG schema element. +type System_Dns_Server_PortPathAny struct { *ygot.NodePath } -// Address returns from System_Dns_Server the path struct for its child "address". -func (n *System_Dns_Server) Address() *System_Dns_Server_Address { - return &System_Dns_Server_Address{ +// Address returns from System_Dns_ServerPath the path struct for its child "address". +func (n *System_Dns_ServerPath) Address() *System_Dns_Server_AddressPath { + return &System_Dns_Server_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from System_Dns_ServerAny the path struct for its child "address". -func (n *System_Dns_ServerAny) Address() *System_Dns_Server_AddressAny { - return &System_Dns_Server_AddressAny{ +// Address returns from System_Dns_ServerPathAny the path struct for its child "address". +func (n *System_Dns_ServerPathAny) Address() *System_Dns_Server_AddressPathAny { + return &System_Dns_Server_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Port returns from System_Dns_Server the path struct for its child "port". -func (n *System_Dns_Server) Port() *System_Dns_Server_Port { - return &System_Dns_Server_Port{ +// Port returns from System_Dns_ServerPath the path struct for its child "port". +func (n *System_Dns_ServerPath) Port() *System_Dns_Server_PortPath { + return &System_Dns_Server_PortPath{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// Port returns from System_Dns_ServerAny the path struct for its child "port". -func (n *System_Dns_ServerAny) Port() *System_Dns_Server_PortAny { - return &System_Dns_Server_PortAny{ +// Port returns from System_Dns_ServerPathAny the path struct for its child "port". +func (n *System_Dns_ServerPathAny) Port() *System_Dns_Server_PortPathAny { + return &System_Dns_Server_PortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// System_GrpcServer represents the /openconfig-system/system/grpc-server YANG schema element. -type System_GrpcServer struct { +// System_GrpcServerPath represents the /openconfig-system/system/grpc-server YANG schema element. +type System_GrpcServerPath struct { *ygot.NodePath } -// System_GrpcServerAny represents the wildcard version of the /openconfig-system/system/grpc-server YANG schema element. -type System_GrpcServerAny struct { +// System_GrpcServerPathAny represents the wildcard version of the /openconfig-system/system/grpc-server YANG schema element. +type System_GrpcServerPathAny struct { *ygot.NodePath } -// System_GrpcServer_CertificateId represents the /openconfig-system/system/grpc-server/state/certificate-id YANG schema element. -type System_GrpcServer_CertificateId struct { +// System_GrpcServer_CertificateIdPath represents the /openconfig-system/system/grpc-server/config/certificate-id YANG schema element. +type System_GrpcServer_CertificateIdPath struct { *ygot.NodePath } -// System_GrpcServer_CertificateIdAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/certificate-id YANG schema element. -type System_GrpcServer_CertificateIdAny struct { +// System_GrpcServer_CertificateIdPathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/certificate-id YANG schema element. +type System_GrpcServer_CertificateIdPathAny struct { *ygot.NodePath } -// System_GrpcServer_Enable represents the /openconfig-system/system/grpc-server/state/enable YANG schema element. -type System_GrpcServer_Enable struct { +// System_GrpcServer_EnablePath represents the /openconfig-system/system/grpc-server/config/enable YANG schema element. +type System_GrpcServer_EnablePath struct { *ygot.NodePath } -// System_GrpcServer_EnableAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/enable YANG schema element. -type System_GrpcServer_EnableAny struct { +// System_GrpcServer_EnablePathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/enable YANG schema element. +type System_GrpcServer_EnablePathAny struct { *ygot.NodePath } -// System_GrpcServer_ListenAddresses represents the /openconfig-system/system/grpc-server/state/listen-addresses YANG schema element. -type System_GrpcServer_ListenAddresses struct { +// System_GrpcServer_ListenAddressesPath represents the /openconfig-system/system/grpc-server/config/listen-addresses YANG schema element. +type System_GrpcServer_ListenAddressesPath struct { *ygot.NodePath } -// System_GrpcServer_ListenAddressesAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/listen-addresses YANG schema element. -type System_GrpcServer_ListenAddressesAny struct { +// System_GrpcServer_ListenAddressesPathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/listen-addresses YANG schema element. +type System_GrpcServer_ListenAddressesPathAny struct { *ygot.NodePath } -// System_GrpcServer_MetadataAuthentication represents the /openconfig-system/system/grpc-server/state/metadata-authentication YANG schema element. -type System_GrpcServer_MetadataAuthentication struct { +// System_GrpcServer_MetadataAuthenticationPath represents the /openconfig-system/system/grpc-server/config/metadata-authentication YANG schema element. +type System_GrpcServer_MetadataAuthenticationPath struct { *ygot.NodePath } -// System_GrpcServer_MetadataAuthenticationAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/metadata-authentication YANG schema element. -type System_GrpcServer_MetadataAuthenticationAny struct { +// System_GrpcServer_MetadataAuthenticationPathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/metadata-authentication YANG schema element. +type System_GrpcServer_MetadataAuthenticationPathAny struct { *ygot.NodePath } -// System_GrpcServer_Port represents the /openconfig-system/system/grpc-server/state/port YANG schema element. -type System_GrpcServer_Port struct { +// System_GrpcServer_PortPath represents the /openconfig-system/system/grpc-server/config/port YANG schema element. +type System_GrpcServer_PortPath struct { *ygot.NodePath } -// System_GrpcServer_PortAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/port YANG schema element. -type System_GrpcServer_PortAny struct { +// System_GrpcServer_PortPathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/port YANG schema element. +type System_GrpcServer_PortPathAny struct { *ygot.NodePath } -// System_GrpcServer_TransportSecurity represents the /openconfig-system/system/grpc-server/state/transport-security YANG schema element. -type System_GrpcServer_TransportSecurity struct { +// System_GrpcServer_TransportSecurityPath represents the /openconfig-system/system/grpc-server/config/transport-security YANG schema element. +type System_GrpcServer_TransportSecurityPath struct { *ygot.NodePath } -// System_GrpcServer_TransportSecurityAny represents the wildcard version of the /openconfig-system/system/grpc-server/state/transport-security YANG schema element. -type System_GrpcServer_TransportSecurityAny struct { +// System_GrpcServer_TransportSecurityPathAny represents the wildcard version of the /openconfig-system/system/grpc-server/config/transport-security YANG schema element. +type System_GrpcServer_TransportSecurityPathAny struct { *ygot.NodePath } -// CertificateId returns from System_GrpcServer the path struct for its child "certificate-id". -func (n *System_GrpcServer) CertificateId() *System_GrpcServer_CertificateId { - return &System_GrpcServer_CertificateId{ +// CertificateId returns from System_GrpcServerPath the path struct for its child "certificate-id". +func (n *System_GrpcServerPath) CertificateId() *System_GrpcServer_CertificateIdPath { + return &System_GrpcServer_CertificateIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "certificate-id"}, + []string{"config", "certificate-id"}, map[string]interface{}{}, n, ), } } -// CertificateId returns from System_GrpcServerAny the path struct for its child "certificate-id". -func (n *System_GrpcServerAny) CertificateId() *System_GrpcServer_CertificateIdAny { - return &System_GrpcServer_CertificateIdAny{ +// CertificateId returns from System_GrpcServerPathAny the path struct for its child "certificate-id". +func (n *System_GrpcServerPathAny) CertificateId() *System_GrpcServer_CertificateIdPathAny { + return &System_GrpcServer_CertificateIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "certificate-id"}, + []string{"config", "certificate-id"}, map[string]interface{}{}, n, ), } } -// Enable returns from System_GrpcServer the path struct for its child "enable". -func (n *System_GrpcServer) Enable() *System_GrpcServer_Enable { - return &System_GrpcServer_Enable{ +// Enable returns from System_GrpcServerPath the path struct for its child "enable". +func (n *System_GrpcServerPath) Enable() *System_GrpcServer_EnablePath { + return &System_GrpcServer_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from System_GrpcServerAny the path struct for its child "enable". -func (n *System_GrpcServerAny) Enable() *System_GrpcServer_EnableAny { - return &System_GrpcServer_EnableAny{ +// Enable returns from System_GrpcServerPathAny the path struct for its child "enable". +func (n *System_GrpcServerPathAny) Enable() *System_GrpcServer_EnablePathAny { + return &System_GrpcServer_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// ListenAddresses returns from System_GrpcServer the path struct for its child "listen-addresses". -func (n *System_GrpcServer) ListenAddresses() *System_GrpcServer_ListenAddresses { - return &System_GrpcServer_ListenAddresses{ +// ListenAddresses returns from System_GrpcServerPath the path struct for its child "listen-addresses". +func (n *System_GrpcServerPath) ListenAddresses() *System_GrpcServer_ListenAddressesPath { + return &System_GrpcServer_ListenAddressesPath{ NodePath: ygot.NewNodePath( - []string{"state", "listen-addresses"}, + []string{"config", "listen-addresses"}, map[string]interface{}{}, n, ), } } -// ListenAddresses returns from System_GrpcServerAny the path struct for its child "listen-addresses". -func (n *System_GrpcServerAny) ListenAddresses() *System_GrpcServer_ListenAddressesAny { - return &System_GrpcServer_ListenAddressesAny{ +// ListenAddresses returns from System_GrpcServerPathAny the path struct for its child "listen-addresses". +func (n *System_GrpcServerPathAny) ListenAddresses() *System_GrpcServer_ListenAddressesPathAny { + return &System_GrpcServer_ListenAddressesPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "listen-addresses"}, + []string{"config", "listen-addresses"}, map[string]interface{}{}, n, ), } } -// MetadataAuthentication returns from System_GrpcServer the path struct for its child "metadata-authentication". -func (n *System_GrpcServer) MetadataAuthentication() *System_GrpcServer_MetadataAuthentication { - return &System_GrpcServer_MetadataAuthentication{ +// MetadataAuthentication returns from System_GrpcServerPath the path struct for its child "metadata-authentication". +func (n *System_GrpcServerPath) MetadataAuthentication() *System_GrpcServer_MetadataAuthenticationPath { + return &System_GrpcServer_MetadataAuthenticationPath{ NodePath: ygot.NewNodePath( - []string{"state", "metadata-authentication"}, + []string{"config", "metadata-authentication"}, map[string]interface{}{}, n, ), } } -// MetadataAuthentication returns from System_GrpcServerAny the path struct for its child "metadata-authentication". -func (n *System_GrpcServerAny) MetadataAuthentication() *System_GrpcServer_MetadataAuthenticationAny { - return &System_GrpcServer_MetadataAuthenticationAny{ +// MetadataAuthentication returns from System_GrpcServerPathAny the path struct for its child "metadata-authentication". +func (n *System_GrpcServerPathAny) MetadataAuthentication() *System_GrpcServer_MetadataAuthenticationPathAny { + return &System_GrpcServer_MetadataAuthenticationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "metadata-authentication"}, + []string{"config", "metadata-authentication"}, map[string]interface{}{}, n, ), } } -// Port returns from System_GrpcServer the path struct for its child "port". -func (n *System_GrpcServer) Port() *System_GrpcServer_Port { - return &System_GrpcServer_Port{ +// Port returns from System_GrpcServerPath the path struct for its child "port". +func (n *System_GrpcServerPath) Port() *System_GrpcServer_PortPath { + return &System_GrpcServer_PortPath{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// Port returns from System_GrpcServerAny the path struct for its child "port". -func (n *System_GrpcServerAny) Port() *System_GrpcServer_PortAny { - return &System_GrpcServer_PortAny{ +// Port returns from System_GrpcServerPathAny the path struct for its child "port". +func (n *System_GrpcServerPathAny) Port() *System_GrpcServer_PortPathAny { + return &System_GrpcServer_PortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// TransportSecurity returns from System_GrpcServer the path struct for its child "transport-security". -func (n *System_GrpcServer) TransportSecurity() *System_GrpcServer_TransportSecurity { - return &System_GrpcServer_TransportSecurity{ +// TransportSecurity returns from System_GrpcServerPath the path struct for its child "transport-security". +func (n *System_GrpcServerPath) TransportSecurity() *System_GrpcServer_TransportSecurityPath { + return &System_GrpcServer_TransportSecurityPath{ NodePath: ygot.NewNodePath( - []string{"state", "transport-security"}, + []string{"config", "transport-security"}, map[string]interface{}{}, n, ), } } -// TransportSecurity returns from System_GrpcServerAny the path struct for its child "transport-security". -func (n *System_GrpcServerAny) TransportSecurity() *System_GrpcServer_TransportSecurityAny { - return &System_GrpcServer_TransportSecurityAny{ +// TransportSecurity returns from System_GrpcServerPathAny the path struct for its child "transport-security". +func (n *System_GrpcServerPathAny) TransportSecurity() *System_GrpcServer_TransportSecurityPathAny { + return &System_GrpcServer_TransportSecurityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "transport-security"}, + []string{"config", "transport-security"}, map[string]interface{}{}, n, ), } } -// System_License represents the /openconfig-system/system/license YANG schema element. -type System_License struct { +// System_LicensePath represents the /openconfig-system/system/license YANG schema element. +type System_LicensePath struct { *ygot.NodePath } -// System_LicenseAny represents the wildcard version of the /openconfig-system/system/license YANG schema element. -type System_LicenseAny struct { +// System_LicensePathAny represents the wildcard version of the /openconfig-system/system/license YANG schema element. +type System_LicensePathAny struct { *ygot.NodePath } -// LicenseAny returns from System_License the path struct for its child "license". -func (n *System_License) LicenseAny() *System_License_LicenseAny { - return &System_License_LicenseAny{ +// LicenseAny returns from System_LicensePath the path struct for its child "license". +func (n *System_LicensePath) LicenseAny() *System_License_LicensePathAny { + return &System_License_LicensePathAny{ NodePath: ygot.NewNodePath( []string{"licenses", "license"}, map[string]interface{}{"license-id": "*"}, @@ -167451,9 +167478,9 @@ func (n *System_License) LicenseAny() *System_License_LicenseAny { } } -// LicenseAny returns from System_LicenseAny the path struct for its child "license". -func (n *System_LicenseAny) LicenseAny() *System_License_LicenseAny { - return &System_License_LicenseAny{ +// LicenseAny returns from System_LicensePathAny the path struct for its child "license". +func (n *System_LicensePathAny) LicenseAny() *System_License_LicensePathAny { + return &System_License_LicensePathAny{ NodePath: ygot.NewNodePath( []string{"licenses", "license"}, map[string]interface{}{"license-id": "*"}, @@ -167462,9 +167489,9 @@ func (n *System_LicenseAny) LicenseAny() *System_License_LicenseAny { } } -// License returns from System_License the path struct for its child "license". -func (n *System_License) License(LicenseId string) *System_License_License { - return &System_License_License{ +// License returns from System_LicensePath the path struct for its child "license". +func (n *System_LicensePath) License(LicenseId string) *System_License_LicensePath { + return &System_License_LicensePath{ NodePath: ygot.NewNodePath( []string{"licenses", "license"}, map[string]interface{}{"license-id": LicenseId}, @@ -167473,9 +167500,9 @@ func (n *System_License) License(LicenseId string) *System_License_License { } } -// License returns from System_LicenseAny the path struct for its child "license". -func (n *System_LicenseAny) License(LicenseId string) *System_License_LicenseAny { - return &System_License_LicenseAny{ +// License returns from System_LicensePathAny the path struct for its child "license". +func (n *System_LicensePathAny) License(LicenseId string) *System_License_LicensePathAny { + return &System_License_LicensePathAny{ NodePath: ygot.NewNodePath( []string{"licenses", "license"}, map[string]interface{}{"license-id": LicenseId}, @@ -167484,131 +167511,131 @@ func (n *System_LicenseAny) License(LicenseId string) *System_License_LicenseAny } } -// System_License_License represents the /openconfig-system/system/license/licenses/license YANG schema element. -type System_License_License struct { +// System_License_LicensePath represents the /openconfig-system/system/license/licenses/license YANG schema element. +type System_License_LicensePath struct { *ygot.NodePath } -// System_License_LicenseAny represents the wildcard version of the /openconfig-system/system/license/licenses/license YANG schema element. -type System_License_LicenseAny struct { +// System_License_LicensePathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license YANG schema element. +type System_License_LicensePathAny struct { *ygot.NodePath } -// System_License_License_Active represents the /openconfig-system/system/license/licenses/license/state/active YANG schema element. -type System_License_License_Active struct { +// System_License_License_ActivePath represents the /openconfig-system/system/license/licenses/license/config/active YANG schema element. +type System_License_License_ActivePath struct { *ygot.NodePath } -// System_License_License_ActiveAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/active YANG schema element. -type System_License_License_ActiveAny struct { +// System_License_License_ActivePathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/config/active YANG schema element. +type System_License_License_ActivePathAny struct { *ygot.NodePath } -// System_License_License_Description represents the /openconfig-system/system/license/licenses/license/state/description YANG schema element. -type System_License_License_Description struct { +// System_License_License_DescriptionPath represents the /openconfig-system/system/license/licenses/license/state/description YANG schema element. +type System_License_License_DescriptionPath struct { *ygot.NodePath } -// System_License_License_DescriptionAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/description YANG schema element. -type System_License_License_DescriptionAny struct { +// System_License_License_DescriptionPathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/description YANG schema element. +type System_License_License_DescriptionPathAny struct { *ygot.NodePath } -// System_License_License_ExpirationDate represents the /openconfig-system/system/license/licenses/license/state/expiration-date YANG schema element. -type System_License_License_ExpirationDate struct { +// System_License_License_ExpirationDatePath represents the /openconfig-system/system/license/licenses/license/state/expiration-date YANG schema element. +type System_License_License_ExpirationDatePath struct { *ygot.NodePath } -// System_License_License_ExpirationDateAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/expiration-date YANG schema element. -type System_License_License_ExpirationDateAny struct { +// System_License_License_ExpirationDatePathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/expiration-date YANG schema element. +type System_License_License_ExpirationDatePathAny struct { *ygot.NodePath } -// System_License_License_Expired represents the /openconfig-system/system/license/licenses/license/state/expired YANG schema element. -type System_License_License_Expired struct { +// System_License_License_ExpiredPath represents the /openconfig-system/system/license/licenses/license/state/expired YANG schema element. +type System_License_License_ExpiredPath struct { *ygot.NodePath } -// System_License_License_ExpiredAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/expired YANG schema element. -type System_License_License_ExpiredAny struct { +// System_License_License_ExpiredPathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/expired YANG schema element. +type System_License_License_ExpiredPathAny struct { *ygot.NodePath } -// System_License_License_InUse represents the /openconfig-system/system/license/licenses/license/state/in-use YANG schema element. -type System_License_License_InUse struct { +// System_License_License_InUsePath represents the /openconfig-system/system/license/licenses/license/state/in-use YANG schema element. +type System_License_License_InUsePath struct { *ygot.NodePath } -// System_License_License_InUseAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/in-use YANG schema element. -type System_License_License_InUseAny struct { +// System_License_License_InUsePathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/in-use YANG schema element. +type System_License_License_InUsePathAny struct { *ygot.NodePath } -// System_License_License_IssueDate represents the /openconfig-system/system/license/licenses/license/state/issue-date YANG schema element. -type System_License_License_IssueDate struct { +// System_License_License_IssueDatePath represents the /openconfig-system/system/license/licenses/license/state/issue-date YANG schema element. +type System_License_License_IssueDatePath struct { *ygot.NodePath } -// System_License_License_IssueDateAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/issue-date YANG schema element. -type System_License_License_IssueDateAny struct { +// System_License_License_IssueDatePathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/issue-date YANG schema element. +type System_License_License_IssueDatePathAny struct { *ygot.NodePath } -// System_License_License_LicenseData represents the /openconfig-system/system/license/licenses/license/state/license-data YANG schema element. -type System_License_License_LicenseData struct { +// System_License_License_LicenseDataPath represents the /openconfig-system/system/license/licenses/license/config/license-data YANG schema element. +type System_License_License_LicenseDataPath struct { *ygot.NodePath } -// System_License_License_LicenseDataAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/license-data YANG schema element. -type System_License_License_LicenseDataAny struct { +// System_License_License_LicenseDataPathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/config/license-data YANG schema element. +type System_License_License_LicenseDataPathAny struct { *ygot.NodePath } -// System_License_License_LicenseId represents the /openconfig-system/system/license/licenses/license/state/license-id YANG schema element. -type System_License_License_LicenseId struct { +// System_License_License_LicenseIdPath represents the /openconfig-system/system/license/licenses/license/config/license-id YANG schema element. +type System_License_License_LicenseIdPath struct { *ygot.NodePath } -// System_License_License_LicenseIdAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/license-id YANG schema element. -type System_License_License_LicenseIdAny struct { +// System_License_License_LicenseIdPathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/config/license-id YANG schema element. +type System_License_License_LicenseIdPathAny struct { *ygot.NodePath } -// System_License_License_Valid represents the /openconfig-system/system/license/licenses/license/state/valid YANG schema element. -type System_License_License_Valid struct { +// System_License_License_ValidPath represents the /openconfig-system/system/license/licenses/license/state/valid YANG schema element. +type System_License_License_ValidPath struct { *ygot.NodePath } -// System_License_License_ValidAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/valid YANG schema element. -type System_License_License_ValidAny struct { +// System_License_License_ValidPathAny represents the wildcard version of the /openconfig-system/system/license/licenses/license/state/valid YANG schema element. +type System_License_License_ValidPathAny struct { *ygot.NodePath } -// Active returns from System_License_License the path struct for its child "active". -func (n *System_License_License) Active() *System_License_License_Active { - return &System_License_License_Active{ +// Active returns from System_License_LicensePath the path struct for its child "active". +func (n *System_License_LicensePath) Active() *System_License_License_ActivePath { + return &System_License_License_ActivePath{ NodePath: ygot.NewNodePath( - []string{"state", "active"}, + []string{"config", "active"}, map[string]interface{}{}, n, ), } } -// Active returns from System_License_LicenseAny the path struct for its child "active". -func (n *System_License_LicenseAny) Active() *System_License_License_ActiveAny { - return &System_License_License_ActiveAny{ +// Active returns from System_License_LicensePathAny the path struct for its child "active". +func (n *System_License_LicensePathAny) Active() *System_License_License_ActivePathAny { + return &System_License_License_ActivePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "active"}, + []string{"config", "active"}, map[string]interface{}{}, n, ), } } -// Description returns from System_License_License the path struct for its child "description". -func (n *System_License_License) Description() *System_License_License_Description { - return &System_License_License_Description{ +// Description returns from System_License_LicensePath the path struct for its child "description". +func (n *System_License_LicensePath) Description() *System_License_License_DescriptionPath { + return &System_License_License_DescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -167617,9 +167644,9 @@ func (n *System_License_License) Description() *System_License_License_Descripti } } -// Description returns from System_License_LicenseAny the path struct for its child "description". -func (n *System_License_LicenseAny) Description() *System_License_License_DescriptionAny { - return &System_License_License_DescriptionAny{ +// Description returns from System_License_LicensePathAny the path struct for its child "description". +func (n *System_License_LicensePathAny) Description() *System_License_License_DescriptionPathAny { + return &System_License_License_DescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -167628,9 +167655,9 @@ func (n *System_License_LicenseAny) Description() *System_License_License_Descri } } -// ExpirationDate returns from System_License_License the path struct for its child "expiration-date". -func (n *System_License_License) ExpirationDate() *System_License_License_ExpirationDate { - return &System_License_License_ExpirationDate{ +// ExpirationDate returns from System_License_LicensePath the path struct for its child "expiration-date". +func (n *System_License_LicensePath) ExpirationDate() *System_License_License_ExpirationDatePath { + return &System_License_License_ExpirationDatePath{ NodePath: ygot.NewNodePath( []string{"state", "expiration-date"}, map[string]interface{}{}, @@ -167639,9 +167666,9 @@ func (n *System_License_License) ExpirationDate() *System_License_License_Expira } } -// ExpirationDate returns from System_License_LicenseAny the path struct for its child "expiration-date". -func (n *System_License_LicenseAny) ExpirationDate() *System_License_License_ExpirationDateAny { - return &System_License_License_ExpirationDateAny{ +// ExpirationDate returns from System_License_LicensePathAny the path struct for its child "expiration-date". +func (n *System_License_LicensePathAny) ExpirationDate() *System_License_License_ExpirationDatePathAny { + return &System_License_License_ExpirationDatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "expiration-date"}, map[string]interface{}{}, @@ -167650,9 +167677,9 @@ func (n *System_License_LicenseAny) ExpirationDate() *System_License_License_Exp } } -// Expired returns from System_License_License the path struct for its child "expired". -func (n *System_License_License) Expired() *System_License_License_Expired { - return &System_License_License_Expired{ +// Expired returns from System_License_LicensePath the path struct for its child "expired". +func (n *System_License_LicensePath) Expired() *System_License_License_ExpiredPath { + return &System_License_License_ExpiredPath{ NodePath: ygot.NewNodePath( []string{"state", "expired"}, map[string]interface{}{}, @@ -167661,9 +167688,9 @@ func (n *System_License_License) Expired() *System_License_License_Expired { } } -// Expired returns from System_License_LicenseAny the path struct for its child "expired". -func (n *System_License_LicenseAny) Expired() *System_License_License_ExpiredAny { - return &System_License_License_ExpiredAny{ +// Expired returns from System_License_LicensePathAny the path struct for its child "expired". +func (n *System_License_LicensePathAny) Expired() *System_License_License_ExpiredPathAny { + return &System_License_License_ExpiredPathAny{ NodePath: ygot.NewNodePath( []string{"state", "expired"}, map[string]interface{}{}, @@ -167672,9 +167699,9 @@ func (n *System_License_LicenseAny) Expired() *System_License_License_ExpiredAny } } -// InUse returns from System_License_License the path struct for its child "in-use". -func (n *System_License_License) InUse() *System_License_License_InUse { - return &System_License_License_InUse{ +// InUse returns from System_License_LicensePath the path struct for its child "in-use". +func (n *System_License_LicensePath) InUse() *System_License_License_InUsePath { + return &System_License_License_InUsePath{ NodePath: ygot.NewNodePath( []string{"state", "in-use"}, map[string]interface{}{}, @@ -167683,9 +167710,9 @@ func (n *System_License_License) InUse() *System_License_License_InUse { } } -// InUse returns from System_License_LicenseAny the path struct for its child "in-use". -func (n *System_License_LicenseAny) InUse() *System_License_License_InUseAny { - return &System_License_License_InUseAny{ +// InUse returns from System_License_LicensePathAny the path struct for its child "in-use". +func (n *System_License_LicensePathAny) InUse() *System_License_License_InUsePathAny { + return &System_License_License_InUsePathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-use"}, map[string]interface{}{}, @@ -167694,9 +167721,9 @@ func (n *System_License_LicenseAny) InUse() *System_License_License_InUseAny { } } -// IssueDate returns from System_License_License the path struct for its child "issue-date". -func (n *System_License_License) IssueDate() *System_License_License_IssueDate { - return &System_License_License_IssueDate{ +// IssueDate returns from System_License_LicensePath the path struct for its child "issue-date". +func (n *System_License_LicensePath) IssueDate() *System_License_License_IssueDatePath { + return &System_License_License_IssueDatePath{ NodePath: ygot.NewNodePath( []string{"state", "issue-date"}, map[string]interface{}{}, @@ -167705,9 +167732,9 @@ func (n *System_License_License) IssueDate() *System_License_License_IssueDate { } } -// IssueDate returns from System_License_LicenseAny the path struct for its child "issue-date". -func (n *System_License_LicenseAny) IssueDate() *System_License_License_IssueDateAny { - return &System_License_License_IssueDateAny{ +// IssueDate returns from System_License_LicensePathAny the path struct for its child "issue-date". +func (n *System_License_LicensePathAny) IssueDate() *System_License_License_IssueDatePathAny { + return &System_License_License_IssueDatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "issue-date"}, map[string]interface{}{}, @@ -167716,53 +167743,53 @@ func (n *System_License_LicenseAny) IssueDate() *System_License_License_IssueDat } } -// LicenseData returns from System_License_License the path struct for its child "license-data". -func (n *System_License_License) LicenseData() *System_License_License_LicenseData { - return &System_License_License_LicenseData{ +// LicenseData returns from System_License_LicensePath the path struct for its child "license-data". +func (n *System_License_LicensePath) LicenseData() *System_License_License_LicenseDataPath { + return &System_License_License_LicenseDataPath{ NodePath: ygot.NewNodePath( - []string{"state", "license-data"}, + []string{"config", "license-data"}, map[string]interface{}{}, n, ), } } -// LicenseData returns from System_License_LicenseAny the path struct for its child "license-data". -func (n *System_License_LicenseAny) LicenseData() *System_License_License_LicenseDataAny { - return &System_License_License_LicenseDataAny{ +// LicenseData returns from System_License_LicensePathAny the path struct for its child "license-data". +func (n *System_License_LicensePathAny) LicenseData() *System_License_License_LicenseDataPathAny { + return &System_License_License_LicenseDataPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "license-data"}, + []string{"config", "license-data"}, map[string]interface{}{}, n, ), } } -// LicenseId returns from System_License_License the path struct for its child "license-id". -func (n *System_License_License) LicenseId() *System_License_License_LicenseId { - return &System_License_License_LicenseId{ +// LicenseId returns from System_License_LicensePath the path struct for its child "license-id". +func (n *System_License_LicensePath) LicenseId() *System_License_License_LicenseIdPath { + return &System_License_License_LicenseIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "license-id"}, + []string{"config", "license-id"}, map[string]interface{}{}, n, ), } } -// LicenseId returns from System_License_LicenseAny the path struct for its child "license-id". -func (n *System_License_LicenseAny) LicenseId() *System_License_License_LicenseIdAny { - return &System_License_License_LicenseIdAny{ +// LicenseId returns from System_License_LicensePathAny the path struct for its child "license-id". +func (n *System_License_LicensePathAny) LicenseId() *System_License_License_LicenseIdPathAny { + return &System_License_License_LicenseIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "license-id"}, + []string{"config", "license-id"}, map[string]interface{}{}, n, ), } } -// Valid returns from System_License_License the path struct for its child "valid". -func (n *System_License_License) Valid() *System_License_License_Valid { - return &System_License_License_Valid{ +// Valid returns from System_License_LicensePath the path struct for its child "valid". +func (n *System_License_LicensePath) Valid() *System_License_License_ValidPath { + return &System_License_License_ValidPath{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -167771,9 +167798,9 @@ func (n *System_License_License) Valid() *System_License_License_Valid { } } -// Valid returns from System_License_LicenseAny the path struct for its child "valid". -func (n *System_License_LicenseAny) Valid() *System_License_License_ValidAny { - return &System_License_License_ValidAny{ +// Valid returns from System_License_LicensePathAny the path struct for its child "valid". +func (n *System_License_LicensePathAny) Valid() *System_License_License_ValidPathAny { + return &System_License_License_ValidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "valid"}, map[string]interface{}{}, @@ -167782,19 +167809,19 @@ func (n *System_License_LicenseAny) Valid() *System_License_License_ValidAny { } } -// System_Logging represents the /openconfig-system/system/logging YANG schema element. -type System_Logging struct { +// System_LoggingPath represents the /openconfig-system/system/logging YANG schema element. +type System_LoggingPath struct { *ygot.NodePath } -// System_LoggingAny represents the wildcard version of the /openconfig-system/system/logging YANG schema element. -type System_LoggingAny struct { +// System_LoggingPathAny represents the wildcard version of the /openconfig-system/system/logging YANG schema element. +type System_LoggingPathAny struct { *ygot.NodePath } -// Console returns from System_Logging the path struct for its child "console". -func (n *System_Logging) Console() *System_Logging_Console { - return &System_Logging_Console{ +// Console returns from System_LoggingPath the path struct for its child "console". +func (n *System_LoggingPath) Console() *System_Logging_ConsolePath { + return &System_Logging_ConsolePath{ NodePath: ygot.NewNodePath( []string{"console"}, map[string]interface{}{}, @@ -167803,9 +167830,9 @@ func (n *System_Logging) Console() *System_Logging_Console { } } -// Console returns from System_LoggingAny the path struct for its child "console". -func (n *System_LoggingAny) Console() *System_Logging_ConsoleAny { - return &System_Logging_ConsoleAny{ +// Console returns from System_LoggingPathAny the path struct for its child "console". +func (n *System_LoggingPathAny) Console() *System_Logging_ConsolePathAny { + return &System_Logging_ConsolePathAny{ NodePath: ygot.NewNodePath( []string{"console"}, map[string]interface{}{}, @@ -167814,9 +167841,9 @@ func (n *System_LoggingAny) Console() *System_Logging_ConsoleAny { } } -// RemoteServerAny returns from System_Logging the path struct for its child "remote-server". -func (n *System_Logging) RemoteServerAny() *System_Logging_RemoteServerAny { - return &System_Logging_RemoteServerAny{ +// RemoteServerAny returns from System_LoggingPath the path struct for its child "remote-server". +func (n *System_LoggingPath) RemoteServerAny() *System_Logging_RemoteServerPathAny { + return &System_Logging_RemoteServerPathAny{ NodePath: ygot.NewNodePath( []string{"remote-servers", "remote-server"}, map[string]interface{}{"host": "*"}, @@ -167825,9 +167852,9 @@ func (n *System_Logging) RemoteServerAny() *System_Logging_RemoteServerAny { } } -// RemoteServerAny returns from System_LoggingAny the path struct for its child "remote-server". -func (n *System_LoggingAny) RemoteServerAny() *System_Logging_RemoteServerAny { - return &System_Logging_RemoteServerAny{ +// RemoteServerAny returns from System_LoggingPathAny the path struct for its child "remote-server". +func (n *System_LoggingPathAny) RemoteServerAny() *System_Logging_RemoteServerPathAny { + return &System_Logging_RemoteServerPathAny{ NodePath: ygot.NewNodePath( []string{"remote-servers", "remote-server"}, map[string]interface{}{"host": "*"}, @@ -167836,9 +167863,9 @@ func (n *System_LoggingAny) RemoteServerAny() *System_Logging_RemoteServerAny { } } -// RemoteServer returns from System_Logging the path struct for its child "remote-server". -func (n *System_Logging) RemoteServer(Host string) *System_Logging_RemoteServer { - return &System_Logging_RemoteServer{ +// RemoteServer returns from System_LoggingPath the path struct for its child "remote-server". +func (n *System_LoggingPath) RemoteServer(Host string) *System_Logging_RemoteServerPath { + return &System_Logging_RemoteServerPath{ NodePath: ygot.NewNodePath( []string{"remote-servers", "remote-server"}, map[string]interface{}{"host": Host}, @@ -167847,9 +167874,9 @@ func (n *System_Logging) RemoteServer(Host string) *System_Logging_RemoteServer } } -// RemoteServer returns from System_LoggingAny the path struct for its child "remote-server". -func (n *System_LoggingAny) RemoteServer(Host string) *System_Logging_RemoteServerAny { - return &System_Logging_RemoteServerAny{ +// RemoteServer returns from System_LoggingPathAny the path struct for its child "remote-server". +func (n *System_LoggingPathAny) RemoteServer(Host string) *System_Logging_RemoteServerPathAny { + return &System_Logging_RemoteServerPathAny{ NodePath: ygot.NewNodePath( []string{"remote-servers", "remote-server"}, map[string]interface{}{"host": Host}, @@ -167858,19 +167885,19 @@ func (n *System_LoggingAny) RemoteServer(Host string) *System_Logging_RemoteServ } } -// System_Logging_Console represents the /openconfig-system/system/logging/console YANG schema element. -type System_Logging_Console struct { +// System_Logging_ConsolePath represents the /openconfig-system/system/logging/console YANG schema element. +type System_Logging_ConsolePath struct { *ygot.NodePath } -// System_Logging_ConsoleAny represents the wildcard version of the /openconfig-system/system/logging/console YANG schema element. -type System_Logging_ConsoleAny struct { +// System_Logging_ConsolePathAny represents the wildcard version of the /openconfig-system/system/logging/console YANG schema element. +type System_Logging_ConsolePathAny struct { *ygot.NodePath } -// SelectorAny returns from System_Logging_Console the path struct for its child "selector". -func (n *System_Logging_Console) SelectorAny() *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAny returns from System_Logging_ConsolePath the path struct for its child "selector". +func (n *System_Logging_ConsolePath) SelectorAny() *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": "*"}, @@ -167879,9 +167906,9 @@ func (n *System_Logging_Console) SelectorAny() *System_Logging_Console_SelectorA } } -// SelectorAny returns from System_Logging_ConsoleAny the path struct for its child "selector". -func (n *System_Logging_ConsoleAny) SelectorAny() *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAny returns from System_Logging_ConsolePathAny the path struct for its child "selector". +func (n *System_Logging_ConsolePathAny) SelectorAny() *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": "*"}, @@ -167890,9 +167917,9 @@ func (n *System_Logging_ConsoleAny) SelectorAny() *System_Logging_Console_Select } } -// SelectorAnySeverity returns from System_Logging_Console the path struct for its child "selector". -func (n *System_Logging_Console) SelectorAnySeverity(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAnySeverity returns from System_Logging_ConsolePath the path struct for its child "selector". +func (n *System_Logging_ConsolePath) SelectorAnySeverity(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": "*"}, @@ -167901,9 +167928,9 @@ func (n *System_Logging_Console) SelectorAnySeverity(Facility oc.E_OpenconfigSys } } -// SelectorAnySeverity returns from System_Logging_ConsoleAny the path struct for its child "selector". -func (n *System_Logging_ConsoleAny) SelectorAnySeverity(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAnySeverity returns from System_Logging_ConsolePathAny the path struct for its child "selector". +func (n *System_Logging_ConsolePathAny) SelectorAnySeverity(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": "*"}, @@ -167912,9 +167939,9 @@ func (n *System_Logging_ConsoleAny) SelectorAnySeverity(Facility oc.E_Openconfig } } -// SelectorAnyFacility returns from System_Logging_Console the path struct for its child "selector". -func (n *System_Logging_Console) SelectorAnyFacility(Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAnyFacility returns from System_Logging_ConsolePath the path struct for its child "selector". +func (n *System_Logging_ConsolePath) SelectorAnyFacility(Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": Severity}, @@ -167923,9 +167950,9 @@ func (n *System_Logging_Console) SelectorAnyFacility(Severity oc.E_OpenconfigSys } } -// SelectorAnyFacility returns from System_Logging_ConsoleAny the path struct for its child "selector". -func (n *System_Logging_ConsoleAny) SelectorAnyFacility(Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// SelectorAnyFacility returns from System_Logging_ConsolePathAny the path struct for its child "selector". +func (n *System_Logging_ConsolePathAny) SelectorAnyFacility(Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": Severity}, @@ -167934,9 +167961,9 @@ func (n *System_Logging_ConsoleAny) SelectorAnyFacility(Severity oc.E_Openconfig } } -// Selector returns from System_Logging_Console the path struct for its child "selector". -func (n *System_Logging_Console) Selector(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_Selector { - return &System_Logging_Console_Selector{ +// Selector returns from System_Logging_ConsolePath the path struct for its child "selector". +func (n *System_Logging_ConsolePath) Selector(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorPath { + return &System_Logging_Console_SelectorPath{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": Severity}, @@ -167945,9 +167972,9 @@ func (n *System_Logging_Console) Selector(Facility oc.E_OpenconfigSystemLogging_ } } -// Selector returns from System_Logging_ConsoleAny the path struct for its child "selector". -func (n *System_Logging_ConsoleAny) Selector(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorAny { - return &System_Logging_Console_SelectorAny{ +// Selector returns from System_Logging_ConsolePathAny the path struct for its child "selector". +func (n *System_Logging_ConsolePathAny) Selector(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_Console_SelectorPathAny { + return &System_Logging_Console_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": Severity}, @@ -167956,167 +167983,167 @@ func (n *System_Logging_ConsoleAny) Selector(Facility oc.E_OpenconfigSystemLoggi } } -// System_Logging_Console_Selector represents the /openconfig-system/system/logging/console/selectors/selector YANG schema element. -type System_Logging_Console_Selector struct { +// System_Logging_Console_SelectorPath represents the /openconfig-system/system/logging/console/selectors/selector YANG schema element. +type System_Logging_Console_SelectorPath struct { *ygot.NodePath } -// System_Logging_Console_SelectorAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector YANG schema element. -type System_Logging_Console_SelectorAny struct { +// System_Logging_Console_SelectorPathAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector YANG schema element. +type System_Logging_Console_SelectorPathAny struct { *ygot.NodePath } -// System_Logging_Console_Selector_Facility represents the /openconfig-system/system/logging/console/selectors/selector/state/facility YANG schema element. -type System_Logging_Console_Selector_Facility struct { +// System_Logging_Console_Selector_FacilityPath represents the /openconfig-system/system/logging/console/selectors/selector/config/facility YANG schema element. +type System_Logging_Console_Selector_FacilityPath struct { *ygot.NodePath } -// System_Logging_Console_Selector_FacilityAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector/state/facility YANG schema element. -type System_Logging_Console_Selector_FacilityAny struct { +// System_Logging_Console_Selector_FacilityPathAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector/config/facility YANG schema element. +type System_Logging_Console_Selector_FacilityPathAny struct { *ygot.NodePath } -// System_Logging_Console_Selector_Severity represents the /openconfig-system/system/logging/console/selectors/selector/state/severity YANG schema element. -type System_Logging_Console_Selector_Severity struct { +// System_Logging_Console_Selector_SeverityPath represents the /openconfig-system/system/logging/console/selectors/selector/config/severity YANG schema element. +type System_Logging_Console_Selector_SeverityPath struct { *ygot.NodePath } -// System_Logging_Console_Selector_SeverityAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector/state/severity YANG schema element. -type System_Logging_Console_Selector_SeverityAny struct { +// System_Logging_Console_Selector_SeverityPathAny represents the wildcard version of the /openconfig-system/system/logging/console/selectors/selector/config/severity YANG schema element. +type System_Logging_Console_Selector_SeverityPathAny struct { *ygot.NodePath } -// Facility returns from System_Logging_Console_Selector the path struct for its child "facility". -func (n *System_Logging_Console_Selector) Facility() *System_Logging_Console_Selector_Facility { - return &System_Logging_Console_Selector_Facility{ +// Facility returns from System_Logging_Console_SelectorPath the path struct for its child "facility". +func (n *System_Logging_Console_SelectorPath) Facility() *System_Logging_Console_Selector_FacilityPath { + return &System_Logging_Console_Selector_FacilityPath{ NodePath: ygot.NewNodePath( - []string{"state", "facility"}, + []string{"config", "facility"}, map[string]interface{}{}, n, ), } } -// Facility returns from System_Logging_Console_SelectorAny the path struct for its child "facility". -func (n *System_Logging_Console_SelectorAny) Facility() *System_Logging_Console_Selector_FacilityAny { - return &System_Logging_Console_Selector_FacilityAny{ +// Facility returns from System_Logging_Console_SelectorPathAny the path struct for its child "facility". +func (n *System_Logging_Console_SelectorPathAny) Facility() *System_Logging_Console_Selector_FacilityPathAny { + return &System_Logging_Console_Selector_FacilityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "facility"}, + []string{"config", "facility"}, map[string]interface{}{}, n, ), } } -// Severity returns from System_Logging_Console_Selector the path struct for its child "severity". -func (n *System_Logging_Console_Selector) Severity() *System_Logging_Console_Selector_Severity { - return &System_Logging_Console_Selector_Severity{ +// Severity returns from System_Logging_Console_SelectorPath the path struct for its child "severity". +func (n *System_Logging_Console_SelectorPath) Severity() *System_Logging_Console_Selector_SeverityPath { + return &System_Logging_Console_Selector_SeverityPath{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// Severity returns from System_Logging_Console_SelectorAny the path struct for its child "severity". -func (n *System_Logging_Console_SelectorAny) Severity() *System_Logging_Console_Selector_SeverityAny { - return &System_Logging_Console_Selector_SeverityAny{ +// Severity returns from System_Logging_Console_SelectorPathAny the path struct for its child "severity". +func (n *System_Logging_Console_SelectorPathAny) Severity() *System_Logging_Console_Selector_SeverityPathAny { + return &System_Logging_Console_Selector_SeverityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// System_Logging_RemoteServer represents the /openconfig-system/system/logging/remote-servers/remote-server YANG schema element. -type System_Logging_RemoteServer struct { +// System_Logging_RemoteServerPath represents the /openconfig-system/system/logging/remote-servers/remote-server YANG schema element. +type System_Logging_RemoteServerPath struct { *ygot.NodePath } -// System_Logging_RemoteServerAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server YANG schema element. -type System_Logging_RemoteServerAny struct { +// System_Logging_RemoteServerPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server YANG schema element. +type System_Logging_RemoteServerPathAny struct { *ygot.NodePath } -// System_Logging_RemoteServer_Host represents the /openconfig-system/system/logging/remote-servers/remote-server/state/host YANG schema element. -type System_Logging_RemoteServer_Host struct { +// System_Logging_RemoteServer_HostPath represents the /openconfig-system/system/logging/remote-servers/remote-server/config/host YANG schema element. +type System_Logging_RemoteServer_HostPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_HostAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/state/host YANG schema element. -type System_Logging_RemoteServer_HostAny struct { +// System_Logging_RemoteServer_HostPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/config/host YANG schema element. +type System_Logging_RemoteServer_HostPathAny struct { *ygot.NodePath } -// System_Logging_RemoteServer_RemotePort represents the /openconfig-system/system/logging/remote-servers/remote-server/state/remote-port YANG schema element. -type System_Logging_RemoteServer_RemotePort struct { +// System_Logging_RemoteServer_RemotePortPath represents the /openconfig-system/system/logging/remote-servers/remote-server/config/remote-port YANG schema element. +type System_Logging_RemoteServer_RemotePortPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_RemotePortAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/state/remote-port YANG schema element. -type System_Logging_RemoteServer_RemotePortAny struct { +// System_Logging_RemoteServer_RemotePortPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/config/remote-port YANG schema element. +type System_Logging_RemoteServer_RemotePortPathAny struct { *ygot.NodePath } -// System_Logging_RemoteServer_SourceAddress represents the /openconfig-system/system/logging/remote-servers/remote-server/state/source-address YANG schema element. -type System_Logging_RemoteServer_SourceAddress struct { +// System_Logging_RemoteServer_SourceAddressPath represents the /openconfig-system/system/logging/remote-servers/remote-server/config/source-address YANG schema element. +type System_Logging_RemoteServer_SourceAddressPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_SourceAddressAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/state/source-address YANG schema element. -type System_Logging_RemoteServer_SourceAddressAny struct { +// System_Logging_RemoteServer_SourceAddressPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/config/source-address YANG schema element. +type System_Logging_RemoteServer_SourceAddressPathAny struct { *ygot.NodePath } -// Host returns from System_Logging_RemoteServer the path struct for its child "host". -func (n *System_Logging_RemoteServer) Host() *System_Logging_RemoteServer_Host { - return &System_Logging_RemoteServer_Host{ +// Host returns from System_Logging_RemoteServerPath the path struct for its child "host". +func (n *System_Logging_RemoteServerPath) Host() *System_Logging_RemoteServer_HostPath { + return &System_Logging_RemoteServer_HostPath{ NodePath: ygot.NewNodePath( - []string{"state", "host"}, + []string{"config", "host"}, map[string]interface{}{}, n, ), } } -// Host returns from System_Logging_RemoteServerAny the path struct for its child "host". -func (n *System_Logging_RemoteServerAny) Host() *System_Logging_RemoteServer_HostAny { - return &System_Logging_RemoteServer_HostAny{ +// Host returns from System_Logging_RemoteServerPathAny the path struct for its child "host". +func (n *System_Logging_RemoteServerPathAny) Host() *System_Logging_RemoteServer_HostPathAny { + return &System_Logging_RemoteServer_HostPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "host"}, + []string{"config", "host"}, map[string]interface{}{}, n, ), } } -// RemotePort returns from System_Logging_RemoteServer the path struct for its child "remote-port". -func (n *System_Logging_RemoteServer) RemotePort() *System_Logging_RemoteServer_RemotePort { - return &System_Logging_RemoteServer_RemotePort{ +// RemotePort returns from System_Logging_RemoteServerPath the path struct for its child "remote-port". +func (n *System_Logging_RemoteServerPath) RemotePort() *System_Logging_RemoteServer_RemotePortPath { + return &System_Logging_RemoteServer_RemotePortPath{ NodePath: ygot.NewNodePath( - []string{"state", "remote-port"}, + []string{"config", "remote-port"}, map[string]interface{}{}, n, ), } } -// RemotePort returns from System_Logging_RemoteServerAny the path struct for its child "remote-port". -func (n *System_Logging_RemoteServerAny) RemotePort() *System_Logging_RemoteServer_RemotePortAny { - return &System_Logging_RemoteServer_RemotePortAny{ +// RemotePort returns from System_Logging_RemoteServerPathAny the path struct for its child "remote-port". +func (n *System_Logging_RemoteServerPathAny) RemotePort() *System_Logging_RemoteServer_RemotePortPathAny { + return &System_Logging_RemoteServer_RemotePortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "remote-port"}, + []string{"config", "remote-port"}, map[string]interface{}{}, n, ), } } -// SelectorAny returns from System_Logging_RemoteServer the path struct for its child "selector". -func (n *System_Logging_RemoteServer) SelectorAny() *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAny returns from System_Logging_RemoteServerPath the path struct for its child "selector". +func (n *System_Logging_RemoteServerPath) SelectorAny() *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": "*"}, @@ -168125,9 +168152,9 @@ func (n *System_Logging_RemoteServer) SelectorAny() *System_Logging_RemoteServer } } -// SelectorAny returns from System_Logging_RemoteServerAny the path struct for its child "selector". -func (n *System_Logging_RemoteServerAny) SelectorAny() *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAny returns from System_Logging_RemoteServerPathAny the path struct for its child "selector". +func (n *System_Logging_RemoteServerPathAny) SelectorAny() *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": "*"}, @@ -168136,9 +168163,9 @@ func (n *System_Logging_RemoteServerAny) SelectorAny() *System_Logging_RemoteSer } } -// SelectorAnySeverity returns from System_Logging_RemoteServer the path struct for its child "selector". -func (n *System_Logging_RemoteServer) SelectorAnySeverity(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAnySeverity returns from System_Logging_RemoteServerPath the path struct for its child "selector". +func (n *System_Logging_RemoteServerPath) SelectorAnySeverity(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": "*"}, @@ -168147,9 +168174,9 @@ func (n *System_Logging_RemoteServer) SelectorAnySeverity(Facility oc.E_Openconf } } -// SelectorAnySeverity returns from System_Logging_RemoteServerAny the path struct for its child "selector". -func (n *System_Logging_RemoteServerAny) SelectorAnySeverity(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAnySeverity returns from System_Logging_RemoteServerPathAny the path struct for its child "selector". +func (n *System_Logging_RemoteServerPathAny) SelectorAnySeverity(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY) *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": "*"}, @@ -168158,9 +168185,9 @@ func (n *System_Logging_RemoteServerAny) SelectorAnySeverity(Facility oc.E_Openc } } -// SelectorAnyFacility returns from System_Logging_RemoteServer the path struct for its child "selector". -func (n *System_Logging_RemoteServer) SelectorAnyFacility(Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAnyFacility returns from System_Logging_RemoteServerPath the path struct for its child "selector". +func (n *System_Logging_RemoteServerPath) SelectorAnyFacility(Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": Severity}, @@ -168169,9 +168196,9 @@ func (n *System_Logging_RemoteServer) SelectorAnyFacility(Severity oc.E_Openconf } } -// SelectorAnyFacility returns from System_Logging_RemoteServerAny the path struct for its child "selector". -func (n *System_Logging_RemoteServerAny) SelectorAnyFacility(Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// SelectorAnyFacility returns from System_Logging_RemoteServerPathAny the path struct for its child "selector". +func (n *System_Logging_RemoteServerPathAny) SelectorAnyFacility(Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": "*", "severity": Severity}, @@ -168180,9 +168207,9 @@ func (n *System_Logging_RemoteServerAny) SelectorAnyFacility(Severity oc.E_Openc } } -// Selector returns from System_Logging_RemoteServer the path struct for its child "selector". -func (n *System_Logging_RemoteServer) Selector(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_Selector { - return &System_Logging_RemoteServer_Selector{ +// Selector returns from System_Logging_RemoteServerPath the path struct for its child "selector". +func (n *System_Logging_RemoteServerPath) Selector(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorPath { + return &System_Logging_RemoteServer_SelectorPath{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": Severity}, @@ -168191,9 +168218,9 @@ func (n *System_Logging_RemoteServer) Selector(Facility oc.E_OpenconfigSystemLog } } -// Selector returns from System_Logging_RemoteServerAny the path struct for its child "selector". -func (n *System_Logging_RemoteServerAny) Selector(Facility oc.E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity oc.E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorAny { - return &System_Logging_RemoteServer_SelectorAny{ +// Selector returns from System_Logging_RemoteServerPathAny the path struct for its child "selector". +func (n *System_Logging_RemoteServerPathAny) Selector(Facility E_OpenconfigSystemLogging_SYSLOG_FACILITY, Severity E_OpenconfigSystemLogging_SyslogSeverity) *System_Logging_RemoteServer_SelectorPathAny { + return &System_Logging_RemoteServer_SelectorPathAny{ NodePath: ygot.NewNodePath( []string{"selectors", "selector"}, map[string]interface{}{"facility": Facility, "severity": Severity}, @@ -168202,135 +168229,135 @@ func (n *System_Logging_RemoteServerAny) Selector(Facility oc.E_OpenconfigSystem } } -// SourceAddress returns from System_Logging_RemoteServer the path struct for its child "source-address". -func (n *System_Logging_RemoteServer) SourceAddress() *System_Logging_RemoteServer_SourceAddress { - return &System_Logging_RemoteServer_SourceAddress{ +// SourceAddress returns from System_Logging_RemoteServerPath the path struct for its child "source-address". +func (n *System_Logging_RemoteServerPath) SourceAddress() *System_Logging_RemoteServer_SourceAddressPath { + return &System_Logging_RemoteServer_SourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// SourceAddress returns from System_Logging_RemoteServerAny the path struct for its child "source-address". -func (n *System_Logging_RemoteServerAny) SourceAddress() *System_Logging_RemoteServer_SourceAddressAny { - return &System_Logging_RemoteServer_SourceAddressAny{ +// SourceAddress returns from System_Logging_RemoteServerPathAny the path struct for its child "source-address". +func (n *System_Logging_RemoteServerPathAny) SourceAddress() *System_Logging_RemoteServer_SourceAddressPathAny { + return &System_Logging_RemoteServer_SourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "source-address"}, + []string{"config", "source-address"}, map[string]interface{}{}, n, ), } } -// System_Logging_RemoteServer_Selector represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector YANG schema element. -type System_Logging_RemoteServer_Selector struct { +// System_Logging_RemoteServer_SelectorPath represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector YANG schema element. +type System_Logging_RemoteServer_SelectorPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_SelectorAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector YANG schema element. -type System_Logging_RemoteServer_SelectorAny struct { +// System_Logging_RemoteServer_SelectorPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector YANG schema element. +type System_Logging_RemoteServer_SelectorPathAny struct { *ygot.NodePath } -// System_Logging_RemoteServer_Selector_Facility represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/state/facility YANG schema element. -type System_Logging_RemoteServer_Selector_Facility struct { +// System_Logging_RemoteServer_Selector_FacilityPath represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/config/facility YANG schema element. +type System_Logging_RemoteServer_Selector_FacilityPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_Selector_FacilityAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/state/facility YANG schema element. -type System_Logging_RemoteServer_Selector_FacilityAny struct { +// System_Logging_RemoteServer_Selector_FacilityPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/config/facility YANG schema element. +type System_Logging_RemoteServer_Selector_FacilityPathAny struct { *ygot.NodePath } -// System_Logging_RemoteServer_Selector_Severity represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/state/severity YANG schema element. -type System_Logging_RemoteServer_Selector_Severity struct { +// System_Logging_RemoteServer_Selector_SeverityPath represents the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/config/severity YANG schema element. +type System_Logging_RemoteServer_Selector_SeverityPath struct { *ygot.NodePath } -// System_Logging_RemoteServer_Selector_SeverityAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/state/severity YANG schema element. -type System_Logging_RemoteServer_Selector_SeverityAny struct { +// System_Logging_RemoteServer_Selector_SeverityPathAny represents the wildcard version of the /openconfig-system/system/logging/remote-servers/remote-server/selectors/selector/config/severity YANG schema element. +type System_Logging_RemoteServer_Selector_SeverityPathAny struct { *ygot.NodePath } -// Facility returns from System_Logging_RemoteServer_Selector the path struct for its child "facility". -func (n *System_Logging_RemoteServer_Selector) Facility() *System_Logging_RemoteServer_Selector_Facility { - return &System_Logging_RemoteServer_Selector_Facility{ +// Facility returns from System_Logging_RemoteServer_SelectorPath the path struct for its child "facility". +func (n *System_Logging_RemoteServer_SelectorPath) Facility() *System_Logging_RemoteServer_Selector_FacilityPath { + return &System_Logging_RemoteServer_Selector_FacilityPath{ NodePath: ygot.NewNodePath( - []string{"state", "facility"}, + []string{"config", "facility"}, map[string]interface{}{}, n, ), } } -// Facility returns from System_Logging_RemoteServer_SelectorAny the path struct for its child "facility". -func (n *System_Logging_RemoteServer_SelectorAny) Facility() *System_Logging_RemoteServer_Selector_FacilityAny { - return &System_Logging_RemoteServer_Selector_FacilityAny{ +// Facility returns from System_Logging_RemoteServer_SelectorPathAny the path struct for its child "facility". +func (n *System_Logging_RemoteServer_SelectorPathAny) Facility() *System_Logging_RemoteServer_Selector_FacilityPathAny { + return &System_Logging_RemoteServer_Selector_FacilityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "facility"}, + []string{"config", "facility"}, map[string]interface{}{}, n, ), } } -// Severity returns from System_Logging_RemoteServer_Selector the path struct for its child "severity". -func (n *System_Logging_RemoteServer_Selector) Severity() *System_Logging_RemoteServer_Selector_Severity { - return &System_Logging_RemoteServer_Selector_Severity{ +// Severity returns from System_Logging_RemoteServer_SelectorPath the path struct for its child "severity". +func (n *System_Logging_RemoteServer_SelectorPath) Severity() *System_Logging_RemoteServer_Selector_SeverityPath { + return &System_Logging_RemoteServer_Selector_SeverityPath{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// Severity returns from System_Logging_RemoteServer_SelectorAny the path struct for its child "severity". -func (n *System_Logging_RemoteServer_SelectorAny) Severity() *System_Logging_RemoteServer_Selector_SeverityAny { - return &System_Logging_RemoteServer_Selector_SeverityAny{ +// Severity returns from System_Logging_RemoteServer_SelectorPathAny the path struct for its child "severity". +func (n *System_Logging_RemoteServer_SelectorPathAny) Severity() *System_Logging_RemoteServer_Selector_SeverityPathAny { + return &System_Logging_RemoteServer_Selector_SeverityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// System_Memory represents the /openconfig-system/system/memory YANG schema element. -type System_Memory struct { +// System_MemoryPath represents the /openconfig-system/system/memory YANG schema element. +type System_MemoryPath struct { *ygot.NodePath } -// System_MemoryAny represents the wildcard version of the /openconfig-system/system/memory YANG schema element. -type System_MemoryAny struct { +// System_MemoryPathAny represents the wildcard version of the /openconfig-system/system/memory YANG schema element. +type System_MemoryPathAny struct { *ygot.NodePath } -// System_Memory_Physical represents the /openconfig-system/system/memory/state/physical YANG schema element. -type System_Memory_Physical struct { +// System_Memory_PhysicalPath represents the /openconfig-system/system/memory/state/physical YANG schema element. +type System_Memory_PhysicalPath struct { *ygot.NodePath } -// System_Memory_PhysicalAny represents the wildcard version of the /openconfig-system/system/memory/state/physical YANG schema element. -type System_Memory_PhysicalAny struct { +// System_Memory_PhysicalPathAny represents the wildcard version of the /openconfig-system/system/memory/state/physical YANG schema element. +type System_Memory_PhysicalPathAny struct { *ygot.NodePath } -// System_Memory_Reserved represents the /openconfig-system/system/memory/state/reserved YANG schema element. -type System_Memory_Reserved struct { +// System_Memory_ReservedPath represents the /openconfig-system/system/memory/state/reserved YANG schema element. +type System_Memory_ReservedPath struct { *ygot.NodePath } -// System_Memory_ReservedAny represents the wildcard version of the /openconfig-system/system/memory/state/reserved YANG schema element. -type System_Memory_ReservedAny struct { +// System_Memory_ReservedPathAny represents the wildcard version of the /openconfig-system/system/memory/state/reserved YANG schema element. +type System_Memory_ReservedPathAny struct { *ygot.NodePath } -// Physical returns from System_Memory the path struct for its child "physical". -func (n *System_Memory) Physical() *System_Memory_Physical { - return &System_Memory_Physical{ +// Physical returns from System_MemoryPath the path struct for its child "physical". +func (n *System_MemoryPath) Physical() *System_Memory_PhysicalPath { + return &System_Memory_PhysicalPath{ NodePath: ygot.NewNodePath( []string{"state", "physical"}, map[string]interface{}{}, @@ -168339,9 +168366,9 @@ func (n *System_Memory) Physical() *System_Memory_Physical { } } -// Physical returns from System_MemoryAny the path struct for its child "physical". -func (n *System_MemoryAny) Physical() *System_Memory_PhysicalAny { - return &System_Memory_PhysicalAny{ +// Physical returns from System_MemoryPathAny the path struct for its child "physical". +func (n *System_MemoryPathAny) Physical() *System_Memory_PhysicalPathAny { + return &System_Memory_PhysicalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "physical"}, map[string]interface{}{}, @@ -168350,9 +168377,9 @@ func (n *System_MemoryAny) Physical() *System_Memory_PhysicalAny { } } -// Reserved returns from System_Memory the path struct for its child "reserved". -func (n *System_Memory) Reserved() *System_Memory_Reserved { - return &System_Memory_Reserved{ +// Reserved returns from System_MemoryPath the path struct for its child "reserved". +func (n *System_MemoryPath) Reserved() *System_Memory_ReservedPath { + return &System_Memory_ReservedPath{ NodePath: ygot.NewNodePath( []string{"state", "reserved"}, map[string]interface{}{}, @@ -168361,9 +168388,9 @@ func (n *System_Memory) Reserved() *System_Memory_Reserved { } } -// Reserved returns from System_MemoryAny the path struct for its child "reserved". -func (n *System_MemoryAny) Reserved() *System_Memory_ReservedAny { - return &System_Memory_ReservedAny{ +// Reserved returns from System_MemoryPathAny the path struct for its child "reserved". +func (n *System_MemoryPathAny) Reserved() *System_Memory_ReservedPathAny { + return &System_Memory_ReservedPathAny{ NodePath: ygot.NewNodePath( []string{"state", "reserved"}, map[string]interface{}{}, @@ -168372,29 +168399,29 @@ func (n *System_MemoryAny) Reserved() *System_Memory_ReservedAny { } } -// System_Messages represents the /openconfig-system/system/messages YANG schema element. -type System_Messages struct { +// System_MessagesPath represents the /openconfig-system/system/messages YANG schema element. +type System_MessagesPath struct { *ygot.NodePath } -// System_MessagesAny represents the wildcard version of the /openconfig-system/system/messages YANG schema element. -type System_MessagesAny struct { +// System_MessagesPathAny represents the wildcard version of the /openconfig-system/system/messages YANG schema element. +type System_MessagesPathAny struct { *ygot.NodePath } -// System_Messages_Severity represents the /openconfig-system/system/messages/state/severity YANG schema element. -type System_Messages_Severity struct { +// System_Messages_SeverityPath represents the /openconfig-system/system/messages/config/severity YANG schema element. +type System_Messages_SeverityPath struct { *ygot.NodePath } -// System_Messages_SeverityAny represents the wildcard version of the /openconfig-system/system/messages/state/severity YANG schema element. -type System_Messages_SeverityAny struct { +// System_Messages_SeverityPathAny represents the wildcard version of the /openconfig-system/system/messages/config/severity YANG schema element. +type System_Messages_SeverityPathAny struct { *ygot.NodePath } -// DebugServiceAny returns from System_Messages the path struct for its child "debug-service". -func (n *System_Messages) DebugServiceAny() *System_Messages_DebugServiceAny { - return &System_Messages_DebugServiceAny{ +// DebugServiceAny returns from System_MessagesPath the path struct for its child "debug-service". +func (n *System_MessagesPath) DebugServiceAny() *System_Messages_DebugServicePathAny { + return &System_Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": "*"}, @@ -168403,9 +168430,9 @@ func (n *System_Messages) DebugServiceAny() *System_Messages_DebugServiceAny { } } -// DebugServiceAny returns from System_MessagesAny the path struct for its child "debug-service". -func (n *System_MessagesAny) DebugServiceAny() *System_Messages_DebugServiceAny { - return &System_Messages_DebugServiceAny{ +// DebugServiceAny returns from System_MessagesPathAny the path struct for its child "debug-service". +func (n *System_MessagesPathAny) DebugServiceAny() *System_Messages_DebugServicePathAny { + return &System_Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": "*"}, @@ -168414,9 +168441,9 @@ func (n *System_MessagesAny) DebugServiceAny() *System_Messages_DebugServiceAny } } -// DebugService returns from System_Messages the path struct for its child "debug-service". -func (n *System_Messages) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE) *System_Messages_DebugService { - return &System_Messages_DebugService{ +// DebugService returns from System_MessagesPath the path struct for its child "debug-service". +func (n *System_MessagesPath) DebugService(Service E_OpenconfigMessages_DEBUG_SERVICE) *System_Messages_DebugServicePath { + return &System_Messages_DebugServicePath{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": Service}, @@ -168425,9 +168452,9 @@ func (n *System_Messages) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SER } } -// DebugService returns from System_MessagesAny the path struct for its child "debug-service". -func (n *System_MessagesAny) DebugService(Service oc.E_OpenconfigMessages_DEBUG_SERVICE) *System_Messages_DebugServiceAny { - return &System_Messages_DebugServiceAny{ +// DebugService returns from System_MessagesPathAny the path struct for its child "debug-service". +func (n *System_MessagesPathAny) DebugService(Service E_OpenconfigMessages_DEBUG_SERVICE) *System_Messages_DebugServicePathAny { + return &System_Messages_DebugServicePathAny{ NodePath: ygot.NewNodePath( []string{"debug-entries", "debug-service"}, map[string]interface{}{"service": Service}, @@ -168436,9 +168463,9 @@ func (n *System_MessagesAny) DebugService(Service oc.E_OpenconfigMessages_DEBUG_ } } -// Message returns from System_Messages the path struct for its child "message". -func (n *System_Messages) Message() *System_Messages_Message { - return &System_Messages_Message{ +// Message returns from System_MessagesPath the path struct for its child "message". +func (n *System_MessagesPath) Message() *System_Messages_MessagePath { + return &System_Messages_MessagePath{ NodePath: ygot.NewNodePath( []string{"state", "message"}, map[string]interface{}{}, @@ -168447,9 +168474,9 @@ func (n *System_Messages) Message() *System_Messages_Message { } } -// Message returns from System_MessagesAny the path struct for its child "message". -func (n *System_MessagesAny) Message() *System_Messages_MessageAny { - return &System_Messages_MessageAny{ +// Message returns from System_MessagesPathAny the path struct for its child "message". +func (n *System_MessagesPathAny) Message() *System_Messages_MessagePathAny { + return &System_Messages_MessagePathAny{ NodePath: ygot.NewNodePath( []string{"state", "message"}, map[string]interface{}{}, @@ -168458,165 +168485,165 @@ func (n *System_MessagesAny) Message() *System_Messages_MessageAny { } } -// Severity returns from System_Messages the path struct for its child "severity". -func (n *System_Messages) Severity() *System_Messages_Severity { - return &System_Messages_Severity{ +// Severity returns from System_MessagesPath the path struct for its child "severity". +func (n *System_MessagesPath) Severity() *System_Messages_SeverityPath { + return &System_Messages_SeverityPath{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// Severity returns from System_MessagesAny the path struct for its child "severity". -func (n *System_MessagesAny) Severity() *System_Messages_SeverityAny { - return &System_Messages_SeverityAny{ +// Severity returns from System_MessagesPathAny the path struct for its child "severity". +func (n *System_MessagesPathAny) Severity() *System_Messages_SeverityPathAny { + return &System_Messages_SeverityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "severity"}, + []string{"config", "severity"}, map[string]interface{}{}, n, ), } } -// System_Messages_DebugService represents the /openconfig-system/system/messages/debug-entries/debug-service YANG schema element. -type System_Messages_DebugService struct { +// System_Messages_DebugServicePath represents the /openconfig-system/system/messages/debug-entries/debug-service YANG schema element. +type System_Messages_DebugServicePath struct { *ygot.NodePath } -// System_Messages_DebugServiceAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service YANG schema element. -type System_Messages_DebugServiceAny struct { +// System_Messages_DebugServicePathAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service YANG schema element. +type System_Messages_DebugServicePathAny struct { *ygot.NodePath } -// System_Messages_DebugService_Enabled represents the /openconfig-system/system/messages/debug-entries/debug-service/state/enabled YANG schema element. -type System_Messages_DebugService_Enabled struct { +// System_Messages_DebugService_EnabledPath represents the /openconfig-system/system/messages/debug-entries/debug-service/config/enabled YANG schema element. +type System_Messages_DebugService_EnabledPath struct { *ygot.NodePath } -// System_Messages_DebugService_EnabledAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service/state/enabled YANG schema element. -type System_Messages_DebugService_EnabledAny struct { +// System_Messages_DebugService_EnabledPathAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service/config/enabled YANG schema element. +type System_Messages_DebugService_EnabledPathAny struct { *ygot.NodePath } -// System_Messages_DebugService_Service represents the /openconfig-system/system/messages/debug-entries/debug-service/state/service YANG schema element. -type System_Messages_DebugService_Service struct { +// System_Messages_DebugService_ServicePath represents the /openconfig-system/system/messages/debug-entries/debug-service/config/service YANG schema element. +type System_Messages_DebugService_ServicePath struct { *ygot.NodePath } -// System_Messages_DebugService_ServiceAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service/state/service YANG schema element. -type System_Messages_DebugService_ServiceAny struct { +// System_Messages_DebugService_ServicePathAny represents the wildcard version of the /openconfig-system/system/messages/debug-entries/debug-service/config/service YANG schema element. +type System_Messages_DebugService_ServicePathAny struct { *ygot.NodePath } -// Enabled returns from System_Messages_DebugService the path struct for its child "enabled". -func (n *System_Messages_DebugService) Enabled() *System_Messages_DebugService_Enabled { - return &System_Messages_DebugService_Enabled{ +// Enabled returns from System_Messages_DebugServicePath the path struct for its child "enabled". +func (n *System_Messages_DebugServicePath) Enabled() *System_Messages_DebugService_EnabledPath { + return &System_Messages_DebugService_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from System_Messages_DebugServiceAny the path struct for its child "enabled". -func (n *System_Messages_DebugServiceAny) Enabled() *System_Messages_DebugService_EnabledAny { - return &System_Messages_DebugService_EnabledAny{ +// Enabled returns from System_Messages_DebugServicePathAny the path struct for its child "enabled". +func (n *System_Messages_DebugServicePathAny) Enabled() *System_Messages_DebugService_EnabledPathAny { + return &System_Messages_DebugService_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Service returns from System_Messages_DebugService the path struct for its child "service". -func (n *System_Messages_DebugService) Service() *System_Messages_DebugService_Service { - return &System_Messages_DebugService_Service{ +// Service returns from System_Messages_DebugServicePath the path struct for its child "service". +func (n *System_Messages_DebugServicePath) Service() *System_Messages_DebugService_ServicePath { + return &System_Messages_DebugService_ServicePath{ NodePath: ygot.NewNodePath( - []string{"state", "service"}, + []string{"config", "service"}, map[string]interface{}{}, n, ), } } -// Service returns from System_Messages_DebugServiceAny the path struct for its child "service". -func (n *System_Messages_DebugServiceAny) Service() *System_Messages_DebugService_ServiceAny { - return &System_Messages_DebugService_ServiceAny{ +// Service returns from System_Messages_DebugServicePathAny the path struct for its child "service". +func (n *System_Messages_DebugServicePathAny) Service() *System_Messages_DebugService_ServicePathAny { + return &System_Messages_DebugService_ServicePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "service"}, + []string{"config", "service"}, map[string]interface{}{}, n, ), } } -// System_Messages_Message represents the /openconfig-system/system/messages/state/message YANG schema element. -type System_Messages_Message struct { +// System_Messages_MessagePath represents the /openconfig-system/system/messages/state/message YANG schema element. +type System_Messages_MessagePath struct { *ygot.NodePath } -// System_Messages_MessageAny represents the wildcard version of the /openconfig-system/system/messages/state/message YANG schema element. -type System_Messages_MessageAny struct { +// System_Messages_MessagePathAny represents the wildcard version of the /openconfig-system/system/messages/state/message YANG schema element. +type System_Messages_MessagePathAny struct { *ygot.NodePath } -// System_Messages_Message_AppName represents the /openconfig-system/system/messages/state/message/app-name YANG schema element. -type System_Messages_Message_AppName struct { +// System_Messages_Message_AppNamePath represents the /openconfig-system/system/messages/state/message/app-name YANG schema element. +type System_Messages_Message_AppNamePath struct { *ygot.NodePath } -// System_Messages_Message_AppNameAny represents the wildcard version of the /openconfig-system/system/messages/state/message/app-name YANG schema element. -type System_Messages_Message_AppNameAny struct { +// System_Messages_Message_AppNamePathAny represents the wildcard version of the /openconfig-system/system/messages/state/message/app-name YANG schema element. +type System_Messages_Message_AppNamePathAny struct { *ygot.NodePath } -// System_Messages_Message_Msg represents the /openconfig-system/system/messages/state/message/msg YANG schema element. -type System_Messages_Message_Msg struct { +// System_Messages_Message_MsgPath represents the /openconfig-system/system/messages/state/message/msg YANG schema element. +type System_Messages_Message_MsgPath struct { *ygot.NodePath } -// System_Messages_Message_MsgAny represents the wildcard version of the /openconfig-system/system/messages/state/message/msg YANG schema element. -type System_Messages_Message_MsgAny struct { +// System_Messages_Message_MsgPathAny represents the wildcard version of the /openconfig-system/system/messages/state/message/msg YANG schema element. +type System_Messages_Message_MsgPathAny struct { *ygot.NodePath } -// System_Messages_Message_Msgid represents the /openconfig-system/system/messages/state/message/msgid YANG schema element. -type System_Messages_Message_Msgid struct { +// System_Messages_Message_MsgidPath represents the /openconfig-system/system/messages/state/message/msgid YANG schema element. +type System_Messages_Message_MsgidPath struct { *ygot.NodePath } -// System_Messages_Message_MsgidAny represents the wildcard version of the /openconfig-system/system/messages/state/message/msgid YANG schema element. -type System_Messages_Message_MsgidAny struct { +// System_Messages_Message_MsgidPathAny represents the wildcard version of the /openconfig-system/system/messages/state/message/msgid YANG schema element. +type System_Messages_Message_MsgidPathAny struct { *ygot.NodePath } -// System_Messages_Message_Priority represents the /openconfig-system/system/messages/state/message/priority YANG schema element. -type System_Messages_Message_Priority struct { +// System_Messages_Message_PriorityPath represents the /openconfig-system/system/messages/state/message/priority YANG schema element. +type System_Messages_Message_PriorityPath struct { *ygot.NodePath } -// System_Messages_Message_PriorityAny represents the wildcard version of the /openconfig-system/system/messages/state/message/priority YANG schema element. -type System_Messages_Message_PriorityAny struct { +// System_Messages_Message_PriorityPathAny represents the wildcard version of the /openconfig-system/system/messages/state/message/priority YANG schema element. +type System_Messages_Message_PriorityPathAny struct { *ygot.NodePath } -// System_Messages_Message_Procid represents the /openconfig-system/system/messages/state/message/procid YANG schema element. -type System_Messages_Message_Procid struct { +// System_Messages_Message_ProcidPath represents the /openconfig-system/system/messages/state/message/procid YANG schema element. +type System_Messages_Message_ProcidPath struct { *ygot.NodePath } -// System_Messages_Message_ProcidAny represents the wildcard version of the /openconfig-system/system/messages/state/message/procid YANG schema element. -type System_Messages_Message_ProcidAny struct { +// System_Messages_Message_ProcidPathAny represents the wildcard version of the /openconfig-system/system/messages/state/message/procid YANG schema element. +type System_Messages_Message_ProcidPathAny struct { *ygot.NodePath } -// AppName returns from System_Messages_Message the path struct for its child "app-name". -func (n *System_Messages_Message) AppName() *System_Messages_Message_AppName { - return &System_Messages_Message_AppName{ +// AppName returns from System_Messages_MessagePath the path struct for its child "app-name". +func (n *System_Messages_MessagePath) AppName() *System_Messages_Message_AppNamePath { + return &System_Messages_Message_AppNamePath{ NodePath: ygot.NewNodePath( []string{"app-name"}, map[string]interface{}{}, @@ -168625,9 +168652,9 @@ func (n *System_Messages_Message) AppName() *System_Messages_Message_AppName { } } -// AppName returns from System_Messages_MessageAny the path struct for its child "app-name". -func (n *System_Messages_MessageAny) AppName() *System_Messages_Message_AppNameAny { - return &System_Messages_Message_AppNameAny{ +// AppName returns from System_Messages_MessagePathAny the path struct for its child "app-name". +func (n *System_Messages_MessagePathAny) AppName() *System_Messages_Message_AppNamePathAny { + return &System_Messages_Message_AppNamePathAny{ NodePath: ygot.NewNodePath( []string{"app-name"}, map[string]interface{}{}, @@ -168636,9 +168663,9 @@ func (n *System_Messages_MessageAny) AppName() *System_Messages_Message_AppNameA } } -// Msg returns from System_Messages_Message the path struct for its child "msg". -func (n *System_Messages_Message) Msg() *System_Messages_Message_Msg { - return &System_Messages_Message_Msg{ +// Msg returns from System_Messages_MessagePath the path struct for its child "msg". +func (n *System_Messages_MessagePath) Msg() *System_Messages_Message_MsgPath { + return &System_Messages_Message_MsgPath{ NodePath: ygot.NewNodePath( []string{"msg"}, map[string]interface{}{}, @@ -168647,9 +168674,9 @@ func (n *System_Messages_Message) Msg() *System_Messages_Message_Msg { } } -// Msg returns from System_Messages_MessageAny the path struct for its child "msg". -func (n *System_Messages_MessageAny) Msg() *System_Messages_Message_MsgAny { - return &System_Messages_Message_MsgAny{ +// Msg returns from System_Messages_MessagePathAny the path struct for its child "msg". +func (n *System_Messages_MessagePathAny) Msg() *System_Messages_Message_MsgPathAny { + return &System_Messages_Message_MsgPathAny{ NodePath: ygot.NewNodePath( []string{"msg"}, map[string]interface{}{}, @@ -168658,9 +168685,9 @@ func (n *System_Messages_MessageAny) Msg() *System_Messages_Message_MsgAny { } } -// Msgid returns from System_Messages_Message the path struct for its child "msgid". -func (n *System_Messages_Message) Msgid() *System_Messages_Message_Msgid { - return &System_Messages_Message_Msgid{ +// Msgid returns from System_Messages_MessagePath the path struct for its child "msgid". +func (n *System_Messages_MessagePath) Msgid() *System_Messages_Message_MsgidPath { + return &System_Messages_Message_MsgidPath{ NodePath: ygot.NewNodePath( []string{"msgid"}, map[string]interface{}{}, @@ -168669,9 +168696,9 @@ func (n *System_Messages_Message) Msgid() *System_Messages_Message_Msgid { } } -// Msgid returns from System_Messages_MessageAny the path struct for its child "msgid". -func (n *System_Messages_MessageAny) Msgid() *System_Messages_Message_MsgidAny { - return &System_Messages_Message_MsgidAny{ +// Msgid returns from System_Messages_MessagePathAny the path struct for its child "msgid". +func (n *System_Messages_MessagePathAny) Msgid() *System_Messages_Message_MsgidPathAny { + return &System_Messages_Message_MsgidPathAny{ NodePath: ygot.NewNodePath( []string{"msgid"}, map[string]interface{}{}, @@ -168680,9 +168707,9 @@ func (n *System_Messages_MessageAny) Msgid() *System_Messages_Message_MsgidAny { } } -// Priority returns from System_Messages_Message the path struct for its child "priority". -func (n *System_Messages_Message) Priority() *System_Messages_Message_Priority { - return &System_Messages_Message_Priority{ +// Priority returns from System_Messages_MessagePath the path struct for its child "priority". +func (n *System_Messages_MessagePath) Priority() *System_Messages_Message_PriorityPath { + return &System_Messages_Message_PriorityPath{ NodePath: ygot.NewNodePath( []string{"priority"}, map[string]interface{}{}, @@ -168691,9 +168718,9 @@ func (n *System_Messages_Message) Priority() *System_Messages_Message_Priority { } } -// Priority returns from System_Messages_MessageAny the path struct for its child "priority". -func (n *System_Messages_MessageAny) Priority() *System_Messages_Message_PriorityAny { - return &System_Messages_Message_PriorityAny{ +// Priority returns from System_Messages_MessagePathAny the path struct for its child "priority". +func (n *System_Messages_MessagePathAny) Priority() *System_Messages_Message_PriorityPathAny { + return &System_Messages_Message_PriorityPathAny{ NodePath: ygot.NewNodePath( []string{"priority"}, map[string]interface{}{}, @@ -168702,9 +168729,9 @@ func (n *System_Messages_MessageAny) Priority() *System_Messages_Message_Priorit } } -// Procid returns from System_Messages_Message the path struct for its child "procid". -func (n *System_Messages_Message) Procid() *System_Messages_Message_Procid { - return &System_Messages_Message_Procid{ +// Procid returns from System_Messages_MessagePath the path struct for its child "procid". +func (n *System_Messages_MessagePath) Procid() *System_Messages_Message_ProcidPath { + return &System_Messages_Message_ProcidPath{ NodePath: ygot.NewNodePath( []string{"procid"}, map[string]interface{}{}, @@ -168713,9 +168740,9 @@ func (n *System_Messages_Message) Procid() *System_Messages_Message_Procid { } } -// Procid returns from System_Messages_MessageAny the path struct for its child "procid". -func (n *System_Messages_MessageAny) Procid() *System_Messages_Message_ProcidAny { - return &System_Messages_Message_ProcidAny{ +// Procid returns from System_Messages_MessagePathAny the path struct for its child "procid". +func (n *System_Messages_MessagePathAny) Procid() *System_Messages_Message_ProcidPathAny { + return &System_Messages_Message_ProcidPathAny{ NodePath: ygot.NewNodePath( []string{"procid"}, map[string]interface{}{}, @@ -168724,59 +168751,59 @@ func (n *System_Messages_MessageAny) Procid() *System_Messages_Message_ProcidAny } } -// System_Ntp represents the /openconfig-system/system/ntp YANG schema element. -type System_Ntp struct { +// System_NtpPath represents the /openconfig-system/system/ntp YANG schema element. +type System_NtpPath struct { *ygot.NodePath } -// System_NtpAny represents the wildcard version of the /openconfig-system/system/ntp YANG schema element. -type System_NtpAny struct { +// System_NtpPathAny represents the wildcard version of the /openconfig-system/system/ntp YANG schema element. +type System_NtpPathAny struct { *ygot.NodePath } -// System_Ntp_AuthMismatch represents the /openconfig-system/system/ntp/state/auth-mismatch YANG schema element. -type System_Ntp_AuthMismatch struct { +// System_Ntp_AuthMismatchPath represents the /openconfig-system/system/ntp/state/auth-mismatch YANG schema element. +type System_Ntp_AuthMismatchPath struct { *ygot.NodePath } -// System_Ntp_AuthMismatchAny represents the wildcard version of the /openconfig-system/system/ntp/state/auth-mismatch YANG schema element. -type System_Ntp_AuthMismatchAny struct { +// System_Ntp_AuthMismatchPathAny represents the wildcard version of the /openconfig-system/system/ntp/state/auth-mismatch YANG schema element. +type System_Ntp_AuthMismatchPathAny struct { *ygot.NodePath } -// System_Ntp_EnableNtpAuth represents the /openconfig-system/system/ntp/state/enable-ntp-auth YANG schema element. -type System_Ntp_EnableNtpAuth struct { +// System_Ntp_EnableNtpAuthPath represents the /openconfig-system/system/ntp/config/enable-ntp-auth YANG schema element. +type System_Ntp_EnableNtpAuthPath struct { *ygot.NodePath } -// System_Ntp_EnableNtpAuthAny represents the wildcard version of the /openconfig-system/system/ntp/state/enable-ntp-auth YANG schema element. -type System_Ntp_EnableNtpAuthAny struct { +// System_Ntp_EnableNtpAuthPathAny represents the wildcard version of the /openconfig-system/system/ntp/config/enable-ntp-auth YANG schema element. +type System_Ntp_EnableNtpAuthPathAny struct { *ygot.NodePath } -// System_Ntp_Enabled represents the /openconfig-system/system/ntp/state/enabled YANG schema element. -type System_Ntp_Enabled struct { +// System_Ntp_EnabledPath represents the /openconfig-system/system/ntp/config/enabled YANG schema element. +type System_Ntp_EnabledPath struct { *ygot.NodePath } -// System_Ntp_EnabledAny represents the wildcard version of the /openconfig-system/system/ntp/state/enabled YANG schema element. -type System_Ntp_EnabledAny struct { +// System_Ntp_EnabledPathAny represents the wildcard version of the /openconfig-system/system/ntp/config/enabled YANG schema element. +type System_Ntp_EnabledPathAny struct { *ygot.NodePath } -// System_Ntp_NtpSourceAddress represents the /openconfig-system/system/ntp/state/ntp-source-address YANG schema element. -type System_Ntp_NtpSourceAddress struct { +// System_Ntp_NtpSourceAddressPath represents the /openconfig-system/system/ntp/config/ntp-source-address YANG schema element. +type System_Ntp_NtpSourceAddressPath struct { *ygot.NodePath } -// System_Ntp_NtpSourceAddressAny represents the wildcard version of the /openconfig-system/system/ntp/state/ntp-source-address YANG schema element. -type System_Ntp_NtpSourceAddressAny struct { +// System_Ntp_NtpSourceAddressPathAny represents the wildcard version of the /openconfig-system/system/ntp/config/ntp-source-address YANG schema element. +type System_Ntp_NtpSourceAddressPathAny struct { *ygot.NodePath } -// AuthMismatch returns from System_Ntp the path struct for its child "auth-mismatch". -func (n *System_Ntp) AuthMismatch() *System_Ntp_AuthMismatch { - return &System_Ntp_AuthMismatch{ +// AuthMismatch returns from System_NtpPath the path struct for its child "auth-mismatch". +func (n *System_NtpPath) AuthMismatch() *System_Ntp_AuthMismatchPath { + return &System_Ntp_AuthMismatchPath{ NodePath: ygot.NewNodePath( []string{"state", "auth-mismatch"}, map[string]interface{}{}, @@ -168785,9 +168812,9 @@ func (n *System_Ntp) AuthMismatch() *System_Ntp_AuthMismatch { } } -// AuthMismatch returns from System_NtpAny the path struct for its child "auth-mismatch". -func (n *System_NtpAny) AuthMismatch() *System_Ntp_AuthMismatchAny { - return &System_Ntp_AuthMismatchAny{ +// AuthMismatch returns from System_NtpPathAny the path struct for its child "auth-mismatch". +func (n *System_NtpPathAny) AuthMismatch() *System_Ntp_AuthMismatchPathAny { + return &System_Ntp_AuthMismatchPathAny{ NodePath: ygot.NewNodePath( []string{"state", "auth-mismatch"}, map[string]interface{}{}, @@ -168796,53 +168823,53 @@ func (n *System_NtpAny) AuthMismatch() *System_Ntp_AuthMismatchAny { } } -// EnableNtpAuth returns from System_Ntp the path struct for its child "enable-ntp-auth". -func (n *System_Ntp) EnableNtpAuth() *System_Ntp_EnableNtpAuth { - return &System_Ntp_EnableNtpAuth{ +// EnableNtpAuth returns from System_NtpPath the path struct for its child "enable-ntp-auth". +func (n *System_NtpPath) EnableNtpAuth() *System_Ntp_EnableNtpAuthPath { + return &System_Ntp_EnableNtpAuthPath{ NodePath: ygot.NewNodePath( - []string{"state", "enable-ntp-auth"}, + []string{"config", "enable-ntp-auth"}, map[string]interface{}{}, n, ), } } -// EnableNtpAuth returns from System_NtpAny the path struct for its child "enable-ntp-auth". -func (n *System_NtpAny) EnableNtpAuth() *System_Ntp_EnableNtpAuthAny { - return &System_Ntp_EnableNtpAuthAny{ +// EnableNtpAuth returns from System_NtpPathAny the path struct for its child "enable-ntp-auth". +func (n *System_NtpPathAny) EnableNtpAuth() *System_Ntp_EnableNtpAuthPathAny { + return &System_Ntp_EnableNtpAuthPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable-ntp-auth"}, + []string{"config", "enable-ntp-auth"}, map[string]interface{}{}, n, ), } } -// Enabled returns from System_Ntp the path struct for its child "enabled". -func (n *System_Ntp) Enabled() *System_Ntp_Enabled { - return &System_Ntp_Enabled{ +// Enabled returns from System_NtpPath the path struct for its child "enabled". +func (n *System_NtpPath) Enabled() *System_Ntp_EnabledPath { + return &System_Ntp_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from System_NtpAny the path struct for its child "enabled". -func (n *System_NtpAny) Enabled() *System_Ntp_EnabledAny { - return &System_Ntp_EnabledAny{ +// Enabled returns from System_NtpPathAny the path struct for its child "enabled". +func (n *System_NtpPathAny) Enabled() *System_Ntp_EnabledPathAny { + return &System_Ntp_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NtpKeyAny returns from System_Ntp the path struct for its child "ntp-key". -func (n *System_Ntp) NtpKeyAny() *System_Ntp_NtpKeyAny { - return &System_Ntp_NtpKeyAny{ +// NtpKeyAny returns from System_NtpPath the path struct for its child "ntp-key". +func (n *System_NtpPath) NtpKeyAny() *System_Ntp_NtpKeyPathAny { + return &System_Ntp_NtpKeyPathAny{ NodePath: ygot.NewNodePath( []string{"ntp-keys", "ntp-key"}, map[string]interface{}{"key-id": "*"}, @@ -168851,9 +168878,9 @@ func (n *System_Ntp) NtpKeyAny() *System_Ntp_NtpKeyAny { } } -// NtpKeyAny returns from System_NtpAny the path struct for its child "ntp-key". -func (n *System_NtpAny) NtpKeyAny() *System_Ntp_NtpKeyAny { - return &System_Ntp_NtpKeyAny{ +// NtpKeyAny returns from System_NtpPathAny the path struct for its child "ntp-key". +func (n *System_NtpPathAny) NtpKeyAny() *System_Ntp_NtpKeyPathAny { + return &System_Ntp_NtpKeyPathAny{ NodePath: ygot.NewNodePath( []string{"ntp-keys", "ntp-key"}, map[string]interface{}{"key-id": "*"}, @@ -168862,9 +168889,9 @@ func (n *System_NtpAny) NtpKeyAny() *System_Ntp_NtpKeyAny { } } -// NtpKey returns from System_Ntp the path struct for its child "ntp-key". -func (n *System_Ntp) NtpKey(KeyId uint16) *System_Ntp_NtpKey { - return &System_Ntp_NtpKey{ +// NtpKey returns from System_NtpPath the path struct for its child "ntp-key". +func (n *System_NtpPath) NtpKey(KeyId uint16) *System_Ntp_NtpKeyPath { + return &System_Ntp_NtpKeyPath{ NodePath: ygot.NewNodePath( []string{"ntp-keys", "ntp-key"}, map[string]interface{}{"key-id": KeyId}, @@ -168873,9 +168900,9 @@ func (n *System_Ntp) NtpKey(KeyId uint16) *System_Ntp_NtpKey { } } -// NtpKey returns from System_NtpAny the path struct for its child "ntp-key". -func (n *System_NtpAny) NtpKey(KeyId uint16) *System_Ntp_NtpKeyAny { - return &System_Ntp_NtpKeyAny{ +// NtpKey returns from System_NtpPathAny the path struct for its child "ntp-key". +func (n *System_NtpPathAny) NtpKey(KeyId uint16) *System_Ntp_NtpKeyPathAny { + return &System_Ntp_NtpKeyPathAny{ NodePath: ygot.NewNodePath( []string{"ntp-keys", "ntp-key"}, map[string]interface{}{"key-id": KeyId}, @@ -168884,31 +168911,31 @@ func (n *System_NtpAny) NtpKey(KeyId uint16) *System_Ntp_NtpKeyAny { } } -// NtpSourceAddress returns from System_Ntp the path struct for its child "ntp-source-address". -func (n *System_Ntp) NtpSourceAddress() *System_Ntp_NtpSourceAddress { - return &System_Ntp_NtpSourceAddress{ +// NtpSourceAddress returns from System_NtpPath the path struct for its child "ntp-source-address". +func (n *System_NtpPath) NtpSourceAddress() *System_Ntp_NtpSourceAddressPath { + return &System_Ntp_NtpSourceAddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "ntp-source-address"}, + []string{"config", "ntp-source-address"}, map[string]interface{}{}, n, ), } } -// NtpSourceAddress returns from System_NtpAny the path struct for its child "ntp-source-address". -func (n *System_NtpAny) NtpSourceAddress() *System_Ntp_NtpSourceAddressAny { - return &System_Ntp_NtpSourceAddressAny{ +// NtpSourceAddress returns from System_NtpPathAny the path struct for its child "ntp-source-address". +func (n *System_NtpPathAny) NtpSourceAddress() *System_Ntp_NtpSourceAddressPathAny { + return &System_Ntp_NtpSourceAddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "ntp-source-address"}, + []string{"config", "ntp-source-address"}, map[string]interface{}{}, n, ), } } -// ServerAny returns from System_Ntp the path struct for its child "server". -func (n *System_Ntp) ServerAny() *System_Ntp_ServerAny { - return &System_Ntp_ServerAny{ +// ServerAny returns from System_NtpPath the path struct for its child "server". +func (n *System_NtpPath) ServerAny() *System_Ntp_ServerPathAny { + return &System_Ntp_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -168917,9 +168944,9 @@ func (n *System_Ntp) ServerAny() *System_Ntp_ServerAny { } } -// ServerAny returns from System_NtpAny the path struct for its child "server". -func (n *System_NtpAny) ServerAny() *System_Ntp_ServerAny { - return &System_Ntp_ServerAny{ +// ServerAny returns from System_NtpPathAny the path struct for its child "server". +func (n *System_NtpPathAny) ServerAny() *System_Ntp_ServerPathAny { + return &System_Ntp_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": "*"}, @@ -168928,9 +168955,9 @@ func (n *System_NtpAny) ServerAny() *System_Ntp_ServerAny { } } -// Server returns from System_Ntp the path struct for its child "server". -func (n *System_Ntp) Server(Address string) *System_Ntp_Server { - return &System_Ntp_Server{ +// Server returns from System_NtpPath the path struct for its child "server". +func (n *System_NtpPath) Server(Address string) *System_Ntp_ServerPath { + return &System_Ntp_ServerPath{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -168939,9 +168966,9 @@ func (n *System_Ntp) Server(Address string) *System_Ntp_Server { } } -// Server returns from System_NtpAny the path struct for its child "server". -func (n *System_NtpAny) Server(Address string) *System_Ntp_ServerAny { - return &System_Ntp_ServerAny{ +// Server returns from System_NtpPathAny the path struct for its child "server". +func (n *System_NtpPathAny) Server(Address string) *System_Ntp_ServerPathAny { + return &System_Ntp_ServerPathAny{ NodePath: ygot.NewNodePath( []string{"servers", "server"}, map[string]interface{}{"address": Address}, @@ -168950,301 +168977,301 @@ func (n *System_NtpAny) Server(Address string) *System_Ntp_ServerAny { } } -// System_Ntp_NtpKey represents the /openconfig-system/system/ntp/ntp-keys/ntp-key YANG schema element. -type System_Ntp_NtpKey struct { +// System_Ntp_NtpKeyPath represents the /openconfig-system/system/ntp/ntp-keys/ntp-key YANG schema element. +type System_Ntp_NtpKeyPath struct { *ygot.NodePath } -// System_Ntp_NtpKeyAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key YANG schema element. -type System_Ntp_NtpKeyAny struct { +// System_Ntp_NtpKeyPathAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key YANG schema element. +type System_Ntp_NtpKeyPathAny struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyId represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-id YANG schema element. -type System_Ntp_NtpKey_KeyId struct { +// System_Ntp_NtpKey_KeyIdPath represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-id YANG schema element. +type System_Ntp_NtpKey_KeyIdPath struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyIdAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-id YANG schema element. -type System_Ntp_NtpKey_KeyIdAny struct { +// System_Ntp_NtpKey_KeyIdPathAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-id YANG schema element. +type System_Ntp_NtpKey_KeyIdPathAny struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyType represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-type YANG schema element. -type System_Ntp_NtpKey_KeyType struct { +// System_Ntp_NtpKey_KeyTypePath represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-type YANG schema element. +type System_Ntp_NtpKey_KeyTypePath struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyTypeAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-type YANG schema element. -type System_Ntp_NtpKey_KeyTypeAny struct { +// System_Ntp_NtpKey_KeyTypePathAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-type YANG schema element. +type System_Ntp_NtpKey_KeyTypePathAny struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyValue represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-value YANG schema element. -type System_Ntp_NtpKey_KeyValue struct { +// System_Ntp_NtpKey_KeyValuePath represents the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-value YANG schema element. +type System_Ntp_NtpKey_KeyValuePath struct { *ygot.NodePath } -// System_Ntp_NtpKey_KeyValueAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/state/key-value YANG schema element. -type System_Ntp_NtpKey_KeyValueAny struct { +// System_Ntp_NtpKey_KeyValuePathAny represents the wildcard version of the /openconfig-system/system/ntp/ntp-keys/ntp-key/config/key-value YANG schema element. +type System_Ntp_NtpKey_KeyValuePathAny struct { *ygot.NodePath } -// KeyId returns from System_Ntp_NtpKey the path struct for its child "key-id". -func (n *System_Ntp_NtpKey) KeyId() *System_Ntp_NtpKey_KeyId { - return &System_Ntp_NtpKey_KeyId{ +// KeyId returns from System_Ntp_NtpKeyPath the path struct for its child "key-id". +func (n *System_Ntp_NtpKeyPath) KeyId() *System_Ntp_NtpKey_KeyIdPath { + return &System_Ntp_NtpKey_KeyIdPath{ NodePath: ygot.NewNodePath( - []string{"state", "key-id"}, + []string{"config", "key-id"}, map[string]interface{}{}, n, ), } } -// KeyId returns from System_Ntp_NtpKeyAny the path struct for its child "key-id". -func (n *System_Ntp_NtpKeyAny) KeyId() *System_Ntp_NtpKey_KeyIdAny { - return &System_Ntp_NtpKey_KeyIdAny{ +// KeyId returns from System_Ntp_NtpKeyPathAny the path struct for its child "key-id". +func (n *System_Ntp_NtpKeyPathAny) KeyId() *System_Ntp_NtpKey_KeyIdPathAny { + return &System_Ntp_NtpKey_KeyIdPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "key-id"}, + []string{"config", "key-id"}, map[string]interface{}{}, n, ), } } -// KeyType returns from System_Ntp_NtpKey the path struct for its child "key-type". -func (n *System_Ntp_NtpKey) KeyType() *System_Ntp_NtpKey_KeyType { - return &System_Ntp_NtpKey_KeyType{ +// KeyType returns from System_Ntp_NtpKeyPath the path struct for its child "key-type". +func (n *System_Ntp_NtpKeyPath) KeyType() *System_Ntp_NtpKey_KeyTypePath { + return &System_Ntp_NtpKey_KeyTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "key-type"}, + []string{"config", "key-type"}, map[string]interface{}{}, n, ), } } -// KeyType returns from System_Ntp_NtpKeyAny the path struct for its child "key-type". -func (n *System_Ntp_NtpKeyAny) KeyType() *System_Ntp_NtpKey_KeyTypeAny { - return &System_Ntp_NtpKey_KeyTypeAny{ +// KeyType returns from System_Ntp_NtpKeyPathAny the path struct for its child "key-type". +func (n *System_Ntp_NtpKeyPathAny) KeyType() *System_Ntp_NtpKey_KeyTypePathAny { + return &System_Ntp_NtpKey_KeyTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "key-type"}, + []string{"config", "key-type"}, map[string]interface{}{}, n, ), } } -// KeyValue returns from System_Ntp_NtpKey the path struct for its child "key-value". -func (n *System_Ntp_NtpKey) KeyValue() *System_Ntp_NtpKey_KeyValue { - return &System_Ntp_NtpKey_KeyValue{ +// KeyValue returns from System_Ntp_NtpKeyPath the path struct for its child "key-value". +func (n *System_Ntp_NtpKeyPath) KeyValue() *System_Ntp_NtpKey_KeyValuePath { + return &System_Ntp_NtpKey_KeyValuePath{ NodePath: ygot.NewNodePath( - []string{"state", "key-value"}, + []string{"config", "key-value"}, map[string]interface{}{}, n, ), } } -// KeyValue returns from System_Ntp_NtpKeyAny the path struct for its child "key-value". -func (n *System_Ntp_NtpKeyAny) KeyValue() *System_Ntp_NtpKey_KeyValueAny { - return &System_Ntp_NtpKey_KeyValueAny{ +// KeyValue returns from System_Ntp_NtpKeyPathAny the path struct for its child "key-value". +func (n *System_Ntp_NtpKeyPathAny) KeyValue() *System_Ntp_NtpKey_KeyValuePathAny { + return &System_Ntp_NtpKey_KeyValuePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "key-value"}, + []string{"config", "key-value"}, map[string]interface{}{}, n, ), } } -// System_Ntp_Server represents the /openconfig-system/system/ntp/servers/server YANG schema element. -type System_Ntp_Server struct { +// System_Ntp_ServerPath represents the /openconfig-system/system/ntp/servers/server YANG schema element. +type System_Ntp_ServerPath struct { *ygot.NodePath } -// System_Ntp_ServerAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server YANG schema element. -type System_Ntp_ServerAny struct { +// System_Ntp_ServerPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server YANG schema element. +type System_Ntp_ServerPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Address represents the /openconfig-system/system/ntp/servers/server/state/address YANG schema element. -type System_Ntp_Server_Address struct { +// System_Ntp_Server_AddressPath represents the /openconfig-system/system/ntp/servers/server/config/address YANG schema element. +type System_Ntp_Server_AddressPath struct { *ygot.NodePath } -// System_Ntp_Server_AddressAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/address YANG schema element. -type System_Ntp_Server_AddressAny struct { +// System_Ntp_Server_AddressPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/address YANG schema element. +type System_Ntp_Server_AddressPathAny struct { *ygot.NodePath } -// System_Ntp_Server_AssociationType represents the /openconfig-system/system/ntp/servers/server/state/association-type YANG schema element. -type System_Ntp_Server_AssociationType struct { +// System_Ntp_Server_AssociationTypePath represents the /openconfig-system/system/ntp/servers/server/config/association-type YANG schema element. +type System_Ntp_Server_AssociationTypePath struct { *ygot.NodePath } -// System_Ntp_Server_AssociationTypeAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/association-type YANG schema element. -type System_Ntp_Server_AssociationTypeAny struct { +// System_Ntp_Server_AssociationTypePathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/association-type YANG schema element. +type System_Ntp_Server_AssociationTypePathAny struct { *ygot.NodePath } -// System_Ntp_Server_Iburst represents the /openconfig-system/system/ntp/servers/server/state/iburst YANG schema element. -type System_Ntp_Server_Iburst struct { +// System_Ntp_Server_IburstPath represents the /openconfig-system/system/ntp/servers/server/config/iburst YANG schema element. +type System_Ntp_Server_IburstPath struct { *ygot.NodePath } -// System_Ntp_Server_IburstAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/iburst YANG schema element. -type System_Ntp_Server_IburstAny struct { +// System_Ntp_Server_IburstPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/iburst YANG schema element. +type System_Ntp_Server_IburstPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Offset represents the /openconfig-system/system/ntp/servers/server/state/offset YANG schema element. -type System_Ntp_Server_Offset struct { +// System_Ntp_Server_OffsetPath represents the /openconfig-system/system/ntp/servers/server/state/offset YANG schema element. +type System_Ntp_Server_OffsetPath struct { *ygot.NodePath } -// System_Ntp_Server_OffsetAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/offset YANG schema element. -type System_Ntp_Server_OffsetAny struct { +// System_Ntp_Server_OffsetPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/offset YANG schema element. +type System_Ntp_Server_OffsetPathAny struct { *ygot.NodePath } -// System_Ntp_Server_PollInterval represents the /openconfig-system/system/ntp/servers/server/state/poll-interval YANG schema element. -type System_Ntp_Server_PollInterval struct { +// System_Ntp_Server_PollIntervalPath represents the /openconfig-system/system/ntp/servers/server/state/poll-interval YANG schema element. +type System_Ntp_Server_PollIntervalPath struct { *ygot.NodePath } -// System_Ntp_Server_PollIntervalAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/poll-interval YANG schema element. -type System_Ntp_Server_PollIntervalAny struct { +// System_Ntp_Server_PollIntervalPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/poll-interval YANG schema element. +type System_Ntp_Server_PollIntervalPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Port represents the /openconfig-system/system/ntp/servers/server/state/port YANG schema element. -type System_Ntp_Server_Port struct { +// System_Ntp_Server_PortPath represents the /openconfig-system/system/ntp/servers/server/config/port YANG schema element. +type System_Ntp_Server_PortPath struct { *ygot.NodePath } -// System_Ntp_Server_PortAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/port YANG schema element. -type System_Ntp_Server_PortAny struct { +// System_Ntp_Server_PortPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/port YANG schema element. +type System_Ntp_Server_PortPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Prefer represents the /openconfig-system/system/ntp/servers/server/state/prefer YANG schema element. -type System_Ntp_Server_Prefer struct { +// System_Ntp_Server_PreferPath represents the /openconfig-system/system/ntp/servers/server/config/prefer YANG schema element. +type System_Ntp_Server_PreferPath struct { *ygot.NodePath } -// System_Ntp_Server_PreferAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/prefer YANG schema element. -type System_Ntp_Server_PreferAny struct { +// System_Ntp_Server_PreferPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/prefer YANG schema element. +type System_Ntp_Server_PreferPathAny struct { *ygot.NodePath } -// System_Ntp_Server_RootDelay represents the /openconfig-system/system/ntp/servers/server/state/root-delay YANG schema element. -type System_Ntp_Server_RootDelay struct { +// System_Ntp_Server_RootDelayPath represents the /openconfig-system/system/ntp/servers/server/state/root-delay YANG schema element. +type System_Ntp_Server_RootDelayPath struct { *ygot.NodePath } -// System_Ntp_Server_RootDelayAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/root-delay YANG schema element. -type System_Ntp_Server_RootDelayAny struct { +// System_Ntp_Server_RootDelayPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/root-delay YANG schema element. +type System_Ntp_Server_RootDelayPathAny struct { *ygot.NodePath } -// System_Ntp_Server_RootDispersion represents the /openconfig-system/system/ntp/servers/server/state/root-dispersion YANG schema element. -type System_Ntp_Server_RootDispersion struct { +// System_Ntp_Server_RootDispersionPath represents the /openconfig-system/system/ntp/servers/server/state/root-dispersion YANG schema element. +type System_Ntp_Server_RootDispersionPath struct { *ygot.NodePath } -// System_Ntp_Server_RootDispersionAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/root-dispersion YANG schema element. -type System_Ntp_Server_RootDispersionAny struct { +// System_Ntp_Server_RootDispersionPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/root-dispersion YANG schema element. +type System_Ntp_Server_RootDispersionPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Stratum represents the /openconfig-system/system/ntp/servers/server/state/stratum YANG schema element. -type System_Ntp_Server_Stratum struct { +// System_Ntp_Server_StratumPath represents the /openconfig-system/system/ntp/servers/server/state/stratum YANG schema element. +type System_Ntp_Server_StratumPath struct { *ygot.NodePath } -// System_Ntp_Server_StratumAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/stratum YANG schema element. -type System_Ntp_Server_StratumAny struct { +// System_Ntp_Server_StratumPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/stratum YANG schema element. +type System_Ntp_Server_StratumPathAny struct { *ygot.NodePath } -// System_Ntp_Server_Version represents the /openconfig-system/system/ntp/servers/server/state/version YANG schema element. -type System_Ntp_Server_Version struct { +// System_Ntp_Server_VersionPath represents the /openconfig-system/system/ntp/servers/server/config/version YANG schema element. +type System_Ntp_Server_VersionPath struct { *ygot.NodePath } -// System_Ntp_Server_VersionAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/state/version YANG schema element. -type System_Ntp_Server_VersionAny struct { +// System_Ntp_Server_VersionPathAny represents the wildcard version of the /openconfig-system/system/ntp/servers/server/config/version YANG schema element. +type System_Ntp_Server_VersionPathAny struct { *ygot.NodePath } -// Address returns from System_Ntp_Server the path struct for its child "address". -func (n *System_Ntp_Server) Address() *System_Ntp_Server_Address { - return &System_Ntp_Server_Address{ +// Address returns from System_Ntp_ServerPath the path struct for its child "address". +func (n *System_Ntp_ServerPath) Address() *System_Ntp_Server_AddressPath { + return &System_Ntp_Server_AddressPath{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// Address returns from System_Ntp_ServerAny the path struct for its child "address". -func (n *System_Ntp_ServerAny) Address() *System_Ntp_Server_AddressAny { - return &System_Ntp_Server_AddressAny{ +// Address returns from System_Ntp_ServerPathAny the path struct for its child "address". +func (n *System_Ntp_ServerPathAny) Address() *System_Ntp_Server_AddressPathAny { + return &System_Ntp_Server_AddressPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "address"}, + []string{"config", "address"}, map[string]interface{}{}, n, ), } } -// AssociationType returns from System_Ntp_Server the path struct for its child "association-type". -func (n *System_Ntp_Server) AssociationType() *System_Ntp_Server_AssociationType { - return &System_Ntp_Server_AssociationType{ +// AssociationType returns from System_Ntp_ServerPath the path struct for its child "association-type". +func (n *System_Ntp_ServerPath) AssociationType() *System_Ntp_Server_AssociationTypePath { + return &System_Ntp_Server_AssociationTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "association-type"}, + []string{"config", "association-type"}, map[string]interface{}{}, n, ), } } -// AssociationType returns from System_Ntp_ServerAny the path struct for its child "association-type". -func (n *System_Ntp_ServerAny) AssociationType() *System_Ntp_Server_AssociationTypeAny { - return &System_Ntp_Server_AssociationTypeAny{ +// AssociationType returns from System_Ntp_ServerPathAny the path struct for its child "association-type". +func (n *System_Ntp_ServerPathAny) AssociationType() *System_Ntp_Server_AssociationTypePathAny { + return &System_Ntp_Server_AssociationTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "association-type"}, + []string{"config", "association-type"}, map[string]interface{}{}, n, ), } } -// Iburst returns from System_Ntp_Server the path struct for its child "iburst". -func (n *System_Ntp_Server) Iburst() *System_Ntp_Server_Iburst { - return &System_Ntp_Server_Iburst{ +// Iburst returns from System_Ntp_ServerPath the path struct for its child "iburst". +func (n *System_Ntp_ServerPath) Iburst() *System_Ntp_Server_IburstPath { + return &System_Ntp_Server_IburstPath{ NodePath: ygot.NewNodePath( - []string{"state", "iburst"}, + []string{"config", "iburst"}, map[string]interface{}{}, n, ), } } -// Iburst returns from System_Ntp_ServerAny the path struct for its child "iburst". -func (n *System_Ntp_ServerAny) Iburst() *System_Ntp_Server_IburstAny { - return &System_Ntp_Server_IburstAny{ +// Iburst returns from System_Ntp_ServerPathAny the path struct for its child "iburst". +func (n *System_Ntp_ServerPathAny) Iburst() *System_Ntp_Server_IburstPathAny { + return &System_Ntp_Server_IburstPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "iburst"}, + []string{"config", "iburst"}, map[string]interface{}{}, n, ), } } -// Offset returns from System_Ntp_Server the path struct for its child "offset". -func (n *System_Ntp_Server) Offset() *System_Ntp_Server_Offset { - return &System_Ntp_Server_Offset{ +// Offset returns from System_Ntp_ServerPath the path struct for its child "offset". +func (n *System_Ntp_ServerPath) Offset() *System_Ntp_Server_OffsetPath { + return &System_Ntp_Server_OffsetPath{ NodePath: ygot.NewNodePath( []string{"state", "offset"}, map[string]interface{}{}, @@ -169253,9 +169280,9 @@ func (n *System_Ntp_Server) Offset() *System_Ntp_Server_Offset { } } -// Offset returns from System_Ntp_ServerAny the path struct for its child "offset". -func (n *System_Ntp_ServerAny) Offset() *System_Ntp_Server_OffsetAny { - return &System_Ntp_Server_OffsetAny{ +// Offset returns from System_Ntp_ServerPathAny the path struct for its child "offset". +func (n *System_Ntp_ServerPathAny) Offset() *System_Ntp_Server_OffsetPathAny { + return &System_Ntp_Server_OffsetPathAny{ NodePath: ygot.NewNodePath( []string{"state", "offset"}, map[string]interface{}{}, @@ -169264,9 +169291,9 @@ func (n *System_Ntp_ServerAny) Offset() *System_Ntp_Server_OffsetAny { } } -// PollInterval returns from System_Ntp_Server the path struct for its child "poll-interval". -func (n *System_Ntp_Server) PollInterval() *System_Ntp_Server_PollInterval { - return &System_Ntp_Server_PollInterval{ +// PollInterval returns from System_Ntp_ServerPath the path struct for its child "poll-interval". +func (n *System_Ntp_ServerPath) PollInterval() *System_Ntp_Server_PollIntervalPath { + return &System_Ntp_Server_PollIntervalPath{ NodePath: ygot.NewNodePath( []string{"state", "poll-interval"}, map[string]interface{}{}, @@ -169275,9 +169302,9 @@ func (n *System_Ntp_Server) PollInterval() *System_Ntp_Server_PollInterval { } } -// PollInterval returns from System_Ntp_ServerAny the path struct for its child "poll-interval". -func (n *System_Ntp_ServerAny) PollInterval() *System_Ntp_Server_PollIntervalAny { - return &System_Ntp_Server_PollIntervalAny{ +// PollInterval returns from System_Ntp_ServerPathAny the path struct for its child "poll-interval". +func (n *System_Ntp_ServerPathAny) PollInterval() *System_Ntp_Server_PollIntervalPathAny { + return &System_Ntp_Server_PollIntervalPathAny{ NodePath: ygot.NewNodePath( []string{"state", "poll-interval"}, map[string]interface{}{}, @@ -169286,53 +169313,53 @@ func (n *System_Ntp_ServerAny) PollInterval() *System_Ntp_Server_PollIntervalAny } } -// Port returns from System_Ntp_Server the path struct for its child "port". -func (n *System_Ntp_Server) Port() *System_Ntp_Server_Port { - return &System_Ntp_Server_Port{ +// Port returns from System_Ntp_ServerPath the path struct for its child "port". +func (n *System_Ntp_ServerPath) Port() *System_Ntp_Server_PortPath { + return &System_Ntp_Server_PortPath{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// Port returns from System_Ntp_ServerAny the path struct for its child "port". -func (n *System_Ntp_ServerAny) Port() *System_Ntp_Server_PortAny { - return &System_Ntp_Server_PortAny{ +// Port returns from System_Ntp_ServerPathAny the path struct for its child "port". +func (n *System_Ntp_ServerPathAny) Port() *System_Ntp_Server_PortPathAny { + return &System_Ntp_Server_PortPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "port"}, + []string{"config", "port"}, map[string]interface{}{}, n, ), } } -// Prefer returns from System_Ntp_Server the path struct for its child "prefer". -func (n *System_Ntp_Server) Prefer() *System_Ntp_Server_Prefer { - return &System_Ntp_Server_Prefer{ +// Prefer returns from System_Ntp_ServerPath the path struct for its child "prefer". +func (n *System_Ntp_ServerPath) Prefer() *System_Ntp_Server_PreferPath { + return &System_Ntp_Server_PreferPath{ NodePath: ygot.NewNodePath( - []string{"state", "prefer"}, + []string{"config", "prefer"}, map[string]interface{}{}, n, ), } } -// Prefer returns from System_Ntp_ServerAny the path struct for its child "prefer". -func (n *System_Ntp_ServerAny) Prefer() *System_Ntp_Server_PreferAny { - return &System_Ntp_Server_PreferAny{ +// Prefer returns from System_Ntp_ServerPathAny the path struct for its child "prefer". +func (n *System_Ntp_ServerPathAny) Prefer() *System_Ntp_Server_PreferPathAny { + return &System_Ntp_Server_PreferPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "prefer"}, + []string{"config", "prefer"}, map[string]interface{}{}, n, ), } } -// RootDelay returns from System_Ntp_Server the path struct for its child "root-delay". -func (n *System_Ntp_Server) RootDelay() *System_Ntp_Server_RootDelay { - return &System_Ntp_Server_RootDelay{ +// RootDelay returns from System_Ntp_ServerPath the path struct for its child "root-delay". +func (n *System_Ntp_ServerPath) RootDelay() *System_Ntp_Server_RootDelayPath { + return &System_Ntp_Server_RootDelayPath{ NodePath: ygot.NewNodePath( []string{"state", "root-delay"}, map[string]interface{}{}, @@ -169341,9 +169368,9 @@ func (n *System_Ntp_Server) RootDelay() *System_Ntp_Server_RootDelay { } } -// RootDelay returns from System_Ntp_ServerAny the path struct for its child "root-delay". -func (n *System_Ntp_ServerAny) RootDelay() *System_Ntp_Server_RootDelayAny { - return &System_Ntp_Server_RootDelayAny{ +// RootDelay returns from System_Ntp_ServerPathAny the path struct for its child "root-delay". +func (n *System_Ntp_ServerPathAny) RootDelay() *System_Ntp_Server_RootDelayPathAny { + return &System_Ntp_Server_RootDelayPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-delay"}, map[string]interface{}{}, @@ -169352,9 +169379,9 @@ func (n *System_Ntp_ServerAny) RootDelay() *System_Ntp_Server_RootDelayAny { } } -// RootDispersion returns from System_Ntp_Server the path struct for its child "root-dispersion". -func (n *System_Ntp_Server) RootDispersion() *System_Ntp_Server_RootDispersion { - return &System_Ntp_Server_RootDispersion{ +// RootDispersion returns from System_Ntp_ServerPath the path struct for its child "root-dispersion". +func (n *System_Ntp_ServerPath) RootDispersion() *System_Ntp_Server_RootDispersionPath { + return &System_Ntp_Server_RootDispersionPath{ NodePath: ygot.NewNodePath( []string{"state", "root-dispersion"}, map[string]interface{}{}, @@ -169363,9 +169390,9 @@ func (n *System_Ntp_Server) RootDispersion() *System_Ntp_Server_RootDispersion { } } -// RootDispersion returns from System_Ntp_ServerAny the path struct for its child "root-dispersion". -func (n *System_Ntp_ServerAny) RootDispersion() *System_Ntp_Server_RootDispersionAny { - return &System_Ntp_Server_RootDispersionAny{ +// RootDispersion returns from System_Ntp_ServerPathAny the path struct for its child "root-dispersion". +func (n *System_Ntp_ServerPathAny) RootDispersion() *System_Ntp_Server_RootDispersionPathAny { + return &System_Ntp_Server_RootDispersionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "root-dispersion"}, map[string]interface{}{}, @@ -169374,9 +169401,9 @@ func (n *System_Ntp_ServerAny) RootDispersion() *System_Ntp_Server_RootDispersio } } -// Stratum returns from System_Ntp_Server the path struct for its child "stratum". -func (n *System_Ntp_Server) Stratum() *System_Ntp_Server_Stratum { - return &System_Ntp_Server_Stratum{ +// Stratum returns from System_Ntp_ServerPath the path struct for its child "stratum". +func (n *System_Ntp_ServerPath) Stratum() *System_Ntp_Server_StratumPath { + return &System_Ntp_Server_StratumPath{ NodePath: ygot.NewNodePath( []string{"state", "stratum"}, map[string]interface{}{}, @@ -169385,9 +169412,9 @@ func (n *System_Ntp_Server) Stratum() *System_Ntp_Server_Stratum { } } -// Stratum returns from System_Ntp_ServerAny the path struct for its child "stratum". -func (n *System_Ntp_ServerAny) Stratum() *System_Ntp_Server_StratumAny { - return &System_Ntp_Server_StratumAny{ +// Stratum returns from System_Ntp_ServerPathAny the path struct for its child "stratum". +func (n *System_Ntp_ServerPathAny) Stratum() *System_Ntp_Server_StratumPathAny { + return &System_Ntp_Server_StratumPathAny{ NodePath: ygot.NewNodePath( []string{"state", "stratum"}, map[string]interface{}{}, @@ -169396,131 +169423,131 @@ func (n *System_Ntp_ServerAny) Stratum() *System_Ntp_Server_StratumAny { } } -// Version returns from System_Ntp_Server the path struct for its child "version". -func (n *System_Ntp_Server) Version() *System_Ntp_Server_Version { - return &System_Ntp_Server_Version{ +// Version returns from System_Ntp_ServerPath the path struct for its child "version". +func (n *System_Ntp_ServerPath) Version() *System_Ntp_Server_VersionPath { + return &System_Ntp_Server_VersionPath{ NodePath: ygot.NewNodePath( - []string{"state", "version"}, + []string{"config", "version"}, map[string]interface{}{}, n, ), } } -// Version returns from System_Ntp_ServerAny the path struct for its child "version". -func (n *System_Ntp_ServerAny) Version() *System_Ntp_Server_VersionAny { - return &System_Ntp_Server_VersionAny{ +// Version returns from System_Ntp_ServerPathAny the path struct for its child "version". +func (n *System_Ntp_ServerPathAny) Version() *System_Ntp_Server_VersionPathAny { + return &System_Ntp_Server_VersionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "version"}, + []string{"config", "version"}, map[string]interface{}{}, n, ), } } -// System_Process represents the /openconfig-system/system/processes/process YANG schema element. -type System_Process struct { +// System_ProcessPath represents the /openconfig-system/system/processes/process YANG schema element. +type System_ProcessPath struct { *ygot.NodePath } -// System_ProcessAny represents the wildcard version of the /openconfig-system/system/processes/process YANG schema element. -type System_ProcessAny struct { +// System_ProcessPathAny represents the wildcard version of the /openconfig-system/system/processes/process YANG schema element. +type System_ProcessPathAny struct { *ygot.NodePath } -// System_Process_Args represents the /openconfig-system/system/processes/process/state/args YANG schema element. -type System_Process_Args struct { +// System_Process_ArgsPath represents the /openconfig-system/system/processes/process/state/args YANG schema element. +type System_Process_ArgsPath struct { *ygot.NodePath } -// System_Process_ArgsAny represents the wildcard version of the /openconfig-system/system/processes/process/state/args YANG schema element. -type System_Process_ArgsAny struct { +// System_Process_ArgsPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/args YANG schema element. +type System_Process_ArgsPathAny struct { *ygot.NodePath } -// System_Process_CpuUsageSystem represents the /openconfig-system/system/processes/process/state/cpu-usage-system YANG schema element. -type System_Process_CpuUsageSystem struct { +// System_Process_CpuUsageSystemPath represents the /openconfig-system/system/processes/process/state/cpu-usage-system YANG schema element. +type System_Process_CpuUsageSystemPath struct { *ygot.NodePath } -// System_Process_CpuUsageSystemAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-usage-system YANG schema element. -type System_Process_CpuUsageSystemAny struct { +// System_Process_CpuUsageSystemPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-usage-system YANG schema element. +type System_Process_CpuUsageSystemPathAny struct { *ygot.NodePath } -// System_Process_CpuUsageUser represents the /openconfig-system/system/processes/process/state/cpu-usage-user YANG schema element. -type System_Process_CpuUsageUser struct { +// System_Process_CpuUsageUserPath represents the /openconfig-system/system/processes/process/state/cpu-usage-user YANG schema element. +type System_Process_CpuUsageUserPath struct { *ygot.NodePath } -// System_Process_CpuUsageUserAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-usage-user YANG schema element. -type System_Process_CpuUsageUserAny struct { +// System_Process_CpuUsageUserPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-usage-user YANG schema element. +type System_Process_CpuUsageUserPathAny struct { *ygot.NodePath } -// System_Process_CpuUtilization represents the /openconfig-system/system/processes/process/state/cpu-utilization YANG schema element. -type System_Process_CpuUtilization struct { +// System_Process_CpuUtilizationPath represents the /openconfig-system/system/processes/process/state/cpu-utilization YANG schema element. +type System_Process_CpuUtilizationPath struct { *ygot.NodePath } -// System_Process_CpuUtilizationAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-utilization YANG schema element. -type System_Process_CpuUtilizationAny struct { +// System_Process_CpuUtilizationPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/cpu-utilization YANG schema element. +type System_Process_CpuUtilizationPathAny struct { *ygot.NodePath } -// System_Process_MemoryUsage represents the /openconfig-system/system/processes/process/state/memory-usage YANG schema element. -type System_Process_MemoryUsage struct { +// System_Process_MemoryUsagePath represents the /openconfig-system/system/processes/process/state/memory-usage YANG schema element. +type System_Process_MemoryUsagePath struct { *ygot.NodePath } -// System_Process_MemoryUsageAny represents the wildcard version of the /openconfig-system/system/processes/process/state/memory-usage YANG schema element. -type System_Process_MemoryUsageAny struct { +// System_Process_MemoryUsagePathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/memory-usage YANG schema element. +type System_Process_MemoryUsagePathAny struct { *ygot.NodePath } -// System_Process_MemoryUtilization represents the /openconfig-system/system/processes/process/state/memory-utilization YANG schema element. -type System_Process_MemoryUtilization struct { +// System_Process_MemoryUtilizationPath represents the /openconfig-system/system/processes/process/state/memory-utilization YANG schema element. +type System_Process_MemoryUtilizationPath struct { *ygot.NodePath } -// System_Process_MemoryUtilizationAny represents the wildcard version of the /openconfig-system/system/processes/process/state/memory-utilization YANG schema element. -type System_Process_MemoryUtilizationAny struct { +// System_Process_MemoryUtilizationPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/memory-utilization YANG schema element. +type System_Process_MemoryUtilizationPathAny struct { *ygot.NodePath } -// System_Process_Name represents the /openconfig-system/system/processes/process/state/name YANG schema element. -type System_Process_Name struct { +// System_Process_NamePath represents the /openconfig-system/system/processes/process/state/name YANG schema element. +type System_Process_NamePath struct { *ygot.NodePath } -// System_Process_NameAny represents the wildcard version of the /openconfig-system/system/processes/process/state/name YANG schema element. -type System_Process_NameAny struct { +// System_Process_NamePathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/name YANG schema element. +type System_Process_NamePathAny struct { *ygot.NodePath } -// System_Process_Pid represents the /openconfig-system/system/processes/process/state/pid YANG schema element. -type System_Process_Pid struct { +// System_Process_PidPath represents the /openconfig-system/system/processes/process/state/pid YANG schema element. +type System_Process_PidPath struct { *ygot.NodePath } -// System_Process_PidAny represents the wildcard version of the /openconfig-system/system/processes/process/state/pid YANG schema element. -type System_Process_PidAny struct { +// System_Process_PidPathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/pid YANG schema element. +type System_Process_PidPathAny struct { *ygot.NodePath } -// System_Process_StartTime represents the /openconfig-system/system/processes/process/state/start-time YANG schema element. -type System_Process_StartTime struct { +// System_Process_StartTimePath represents the /openconfig-system/system/processes/process/state/start-time YANG schema element. +type System_Process_StartTimePath struct { *ygot.NodePath } -// System_Process_StartTimeAny represents the wildcard version of the /openconfig-system/system/processes/process/state/start-time YANG schema element. -type System_Process_StartTimeAny struct { +// System_Process_StartTimePathAny represents the wildcard version of the /openconfig-system/system/processes/process/state/start-time YANG schema element. +type System_Process_StartTimePathAny struct { *ygot.NodePath } -// Args returns from System_Process the path struct for its child "args". -func (n *System_Process) Args() *System_Process_Args { - return &System_Process_Args{ +// Args returns from System_ProcessPath the path struct for its child "args". +func (n *System_ProcessPath) Args() *System_Process_ArgsPath { + return &System_Process_ArgsPath{ NodePath: ygot.NewNodePath( []string{"state", "args"}, map[string]interface{}{}, @@ -169529,9 +169556,9 @@ func (n *System_Process) Args() *System_Process_Args { } } -// Args returns from System_ProcessAny the path struct for its child "args". -func (n *System_ProcessAny) Args() *System_Process_ArgsAny { - return &System_Process_ArgsAny{ +// Args returns from System_ProcessPathAny the path struct for its child "args". +func (n *System_ProcessPathAny) Args() *System_Process_ArgsPathAny { + return &System_Process_ArgsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "args"}, map[string]interface{}{}, @@ -169540,9 +169567,9 @@ func (n *System_ProcessAny) Args() *System_Process_ArgsAny { } } -// CpuUsageSystem returns from System_Process the path struct for its child "cpu-usage-system". -func (n *System_Process) CpuUsageSystem() *System_Process_CpuUsageSystem { - return &System_Process_CpuUsageSystem{ +// CpuUsageSystem returns from System_ProcessPath the path struct for its child "cpu-usage-system". +func (n *System_ProcessPath) CpuUsageSystem() *System_Process_CpuUsageSystemPath { + return &System_Process_CpuUsageSystemPath{ NodePath: ygot.NewNodePath( []string{"state", "cpu-usage-system"}, map[string]interface{}{}, @@ -169551,9 +169578,9 @@ func (n *System_Process) CpuUsageSystem() *System_Process_CpuUsageSystem { } } -// CpuUsageSystem returns from System_ProcessAny the path struct for its child "cpu-usage-system". -func (n *System_ProcessAny) CpuUsageSystem() *System_Process_CpuUsageSystemAny { - return &System_Process_CpuUsageSystemAny{ +// CpuUsageSystem returns from System_ProcessPathAny the path struct for its child "cpu-usage-system". +func (n *System_ProcessPathAny) CpuUsageSystem() *System_Process_CpuUsageSystemPathAny { + return &System_Process_CpuUsageSystemPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cpu-usage-system"}, map[string]interface{}{}, @@ -169562,9 +169589,9 @@ func (n *System_ProcessAny) CpuUsageSystem() *System_Process_CpuUsageSystemAny { } } -// CpuUsageUser returns from System_Process the path struct for its child "cpu-usage-user". -func (n *System_Process) CpuUsageUser() *System_Process_CpuUsageUser { - return &System_Process_CpuUsageUser{ +// CpuUsageUser returns from System_ProcessPath the path struct for its child "cpu-usage-user". +func (n *System_ProcessPath) CpuUsageUser() *System_Process_CpuUsageUserPath { + return &System_Process_CpuUsageUserPath{ NodePath: ygot.NewNodePath( []string{"state", "cpu-usage-user"}, map[string]interface{}{}, @@ -169573,9 +169600,9 @@ func (n *System_Process) CpuUsageUser() *System_Process_CpuUsageUser { } } -// CpuUsageUser returns from System_ProcessAny the path struct for its child "cpu-usage-user". -func (n *System_ProcessAny) CpuUsageUser() *System_Process_CpuUsageUserAny { - return &System_Process_CpuUsageUserAny{ +// CpuUsageUser returns from System_ProcessPathAny the path struct for its child "cpu-usage-user". +func (n *System_ProcessPathAny) CpuUsageUser() *System_Process_CpuUsageUserPathAny { + return &System_Process_CpuUsageUserPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cpu-usage-user"}, map[string]interface{}{}, @@ -169584,9 +169611,9 @@ func (n *System_ProcessAny) CpuUsageUser() *System_Process_CpuUsageUserAny { } } -// CpuUtilization returns from System_Process the path struct for its child "cpu-utilization". -func (n *System_Process) CpuUtilization() *System_Process_CpuUtilization { - return &System_Process_CpuUtilization{ +// CpuUtilization returns from System_ProcessPath the path struct for its child "cpu-utilization". +func (n *System_ProcessPath) CpuUtilization() *System_Process_CpuUtilizationPath { + return &System_Process_CpuUtilizationPath{ NodePath: ygot.NewNodePath( []string{"state", "cpu-utilization"}, map[string]interface{}{}, @@ -169595,9 +169622,9 @@ func (n *System_Process) CpuUtilization() *System_Process_CpuUtilization { } } -// CpuUtilization returns from System_ProcessAny the path struct for its child "cpu-utilization". -func (n *System_ProcessAny) CpuUtilization() *System_Process_CpuUtilizationAny { - return &System_Process_CpuUtilizationAny{ +// CpuUtilization returns from System_ProcessPathAny the path struct for its child "cpu-utilization". +func (n *System_ProcessPathAny) CpuUtilization() *System_Process_CpuUtilizationPathAny { + return &System_Process_CpuUtilizationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "cpu-utilization"}, map[string]interface{}{}, @@ -169606,9 +169633,9 @@ func (n *System_ProcessAny) CpuUtilization() *System_Process_CpuUtilizationAny { } } -// MemoryUsage returns from System_Process the path struct for its child "memory-usage". -func (n *System_Process) MemoryUsage() *System_Process_MemoryUsage { - return &System_Process_MemoryUsage{ +// MemoryUsage returns from System_ProcessPath the path struct for its child "memory-usage". +func (n *System_ProcessPath) MemoryUsage() *System_Process_MemoryUsagePath { + return &System_Process_MemoryUsagePath{ NodePath: ygot.NewNodePath( []string{"state", "memory-usage"}, map[string]interface{}{}, @@ -169617,9 +169644,9 @@ func (n *System_Process) MemoryUsage() *System_Process_MemoryUsage { } } -// MemoryUsage returns from System_ProcessAny the path struct for its child "memory-usage". -func (n *System_ProcessAny) MemoryUsage() *System_Process_MemoryUsageAny { - return &System_Process_MemoryUsageAny{ +// MemoryUsage returns from System_ProcessPathAny the path struct for its child "memory-usage". +func (n *System_ProcessPathAny) MemoryUsage() *System_Process_MemoryUsagePathAny { + return &System_Process_MemoryUsagePathAny{ NodePath: ygot.NewNodePath( []string{"state", "memory-usage"}, map[string]interface{}{}, @@ -169628,9 +169655,9 @@ func (n *System_ProcessAny) MemoryUsage() *System_Process_MemoryUsageAny { } } -// MemoryUtilization returns from System_Process the path struct for its child "memory-utilization". -func (n *System_Process) MemoryUtilization() *System_Process_MemoryUtilization { - return &System_Process_MemoryUtilization{ +// MemoryUtilization returns from System_ProcessPath the path struct for its child "memory-utilization". +func (n *System_ProcessPath) MemoryUtilization() *System_Process_MemoryUtilizationPath { + return &System_Process_MemoryUtilizationPath{ NodePath: ygot.NewNodePath( []string{"state", "memory-utilization"}, map[string]interface{}{}, @@ -169639,9 +169666,9 @@ func (n *System_Process) MemoryUtilization() *System_Process_MemoryUtilization { } } -// MemoryUtilization returns from System_ProcessAny the path struct for its child "memory-utilization". -func (n *System_ProcessAny) MemoryUtilization() *System_Process_MemoryUtilizationAny { - return &System_Process_MemoryUtilizationAny{ +// MemoryUtilization returns from System_ProcessPathAny the path struct for its child "memory-utilization". +func (n *System_ProcessPathAny) MemoryUtilization() *System_Process_MemoryUtilizationPathAny { + return &System_Process_MemoryUtilizationPathAny{ NodePath: ygot.NewNodePath( []string{"state", "memory-utilization"}, map[string]interface{}{}, @@ -169650,9 +169677,9 @@ func (n *System_ProcessAny) MemoryUtilization() *System_Process_MemoryUtilizatio } } -// Name returns from System_Process the path struct for its child "name". -func (n *System_Process) Name() *System_Process_Name { - return &System_Process_Name{ +// Name returns from System_ProcessPath the path struct for its child "name". +func (n *System_ProcessPath) Name() *System_Process_NamePath { + return &System_Process_NamePath{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -169661,9 +169688,9 @@ func (n *System_Process) Name() *System_Process_Name { } } -// Name returns from System_ProcessAny the path struct for its child "name". -func (n *System_ProcessAny) Name() *System_Process_NameAny { - return &System_Process_NameAny{ +// Name returns from System_ProcessPathAny the path struct for its child "name". +func (n *System_ProcessPathAny) Name() *System_Process_NamePathAny { + return &System_Process_NamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "name"}, map[string]interface{}{}, @@ -169672,9 +169699,9 @@ func (n *System_ProcessAny) Name() *System_Process_NameAny { } } -// Pid returns from System_Process the path struct for its child "pid". -func (n *System_Process) Pid() *System_Process_Pid { - return &System_Process_Pid{ +// Pid returns from System_ProcessPath the path struct for its child "pid". +func (n *System_ProcessPath) Pid() *System_Process_PidPath { + return &System_Process_PidPath{ NodePath: ygot.NewNodePath( []string{"state", "pid"}, map[string]interface{}{}, @@ -169683,9 +169710,9 @@ func (n *System_Process) Pid() *System_Process_Pid { } } -// Pid returns from System_ProcessAny the path struct for its child "pid". -func (n *System_ProcessAny) Pid() *System_Process_PidAny { - return &System_Process_PidAny{ +// Pid returns from System_ProcessPathAny the path struct for its child "pid". +func (n *System_ProcessPathAny) Pid() *System_Process_PidPathAny { + return &System_Process_PidPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pid"}, map[string]interface{}{}, @@ -169694,9 +169721,9 @@ func (n *System_ProcessAny) Pid() *System_Process_PidAny { } } -// StartTime returns from System_Process the path struct for its child "start-time". -func (n *System_Process) StartTime() *System_Process_StartTime { - return &System_Process_StartTime{ +// StartTime returns from System_ProcessPath the path struct for its child "start-time". +func (n *System_ProcessPath) StartTime() *System_Process_StartTimePath { + return &System_Process_StartTimePath{ NodePath: ygot.NewNodePath( []string{"state", "start-time"}, map[string]interface{}{}, @@ -169705,9 +169732,9 @@ func (n *System_Process) StartTime() *System_Process_StartTime { } } -// StartTime returns from System_ProcessAny the path struct for its child "start-time". -func (n *System_ProcessAny) StartTime() *System_Process_StartTimeAny { - return &System_Process_StartTimeAny{ +// StartTime returns from System_ProcessPathAny the path struct for its child "start-time". +func (n *System_ProcessPathAny) StartTime() *System_Process_StartTimePathAny { + return &System_Process_StartTimePathAny{ NodePath: ygot.NewNodePath( []string{"state", "start-time"}, map[string]interface{}{}, @@ -169716,327 +169743,327 @@ func (n *System_ProcessAny) StartTime() *System_Process_StartTimeAny { } } -// System_SshServer represents the /openconfig-system/system/ssh-server YANG schema element. -type System_SshServer struct { +// System_SshServerPath represents the /openconfig-system/system/ssh-server YANG schema element. +type System_SshServerPath struct { *ygot.NodePath } -// System_SshServerAny represents the wildcard version of the /openconfig-system/system/ssh-server YANG schema element. -type System_SshServerAny struct { +// System_SshServerPathAny represents the wildcard version of the /openconfig-system/system/ssh-server YANG schema element. +type System_SshServerPathAny struct { *ygot.NodePath } -// System_SshServer_Enable represents the /openconfig-system/system/ssh-server/state/enable YANG schema element. -type System_SshServer_Enable struct { +// System_SshServer_EnablePath represents the /openconfig-system/system/ssh-server/config/enable YANG schema element. +type System_SshServer_EnablePath struct { *ygot.NodePath } -// System_SshServer_EnableAny represents the wildcard version of the /openconfig-system/system/ssh-server/state/enable YANG schema element. -type System_SshServer_EnableAny struct { +// System_SshServer_EnablePathAny represents the wildcard version of the /openconfig-system/system/ssh-server/config/enable YANG schema element. +type System_SshServer_EnablePathAny struct { *ygot.NodePath } -// System_SshServer_ProtocolVersion represents the /openconfig-system/system/ssh-server/state/protocol-version YANG schema element. -type System_SshServer_ProtocolVersion struct { +// System_SshServer_ProtocolVersionPath represents the /openconfig-system/system/ssh-server/config/protocol-version YANG schema element. +type System_SshServer_ProtocolVersionPath struct { *ygot.NodePath } -// System_SshServer_ProtocolVersionAny represents the wildcard version of the /openconfig-system/system/ssh-server/state/protocol-version YANG schema element. -type System_SshServer_ProtocolVersionAny struct { +// System_SshServer_ProtocolVersionPathAny represents the wildcard version of the /openconfig-system/system/ssh-server/config/protocol-version YANG schema element. +type System_SshServer_ProtocolVersionPathAny struct { *ygot.NodePath } -// System_SshServer_RateLimit represents the /openconfig-system/system/ssh-server/state/rate-limit YANG schema element. -type System_SshServer_RateLimit struct { +// System_SshServer_RateLimitPath represents the /openconfig-system/system/ssh-server/config/rate-limit YANG schema element. +type System_SshServer_RateLimitPath struct { *ygot.NodePath } -// System_SshServer_RateLimitAny represents the wildcard version of the /openconfig-system/system/ssh-server/state/rate-limit YANG schema element. -type System_SshServer_RateLimitAny struct { +// System_SshServer_RateLimitPathAny represents the wildcard version of the /openconfig-system/system/ssh-server/config/rate-limit YANG schema element. +type System_SshServer_RateLimitPathAny struct { *ygot.NodePath } -// System_SshServer_SessionLimit represents the /openconfig-system/system/ssh-server/state/session-limit YANG schema element. -type System_SshServer_SessionLimit struct { +// System_SshServer_SessionLimitPath represents the /openconfig-system/system/ssh-server/config/session-limit YANG schema element. +type System_SshServer_SessionLimitPath struct { *ygot.NodePath } -// System_SshServer_SessionLimitAny represents the wildcard version of the /openconfig-system/system/ssh-server/state/session-limit YANG schema element. -type System_SshServer_SessionLimitAny struct { +// System_SshServer_SessionLimitPathAny represents the wildcard version of the /openconfig-system/system/ssh-server/config/session-limit YANG schema element. +type System_SshServer_SessionLimitPathAny struct { *ygot.NodePath } -// System_SshServer_Timeout represents the /openconfig-system/system/ssh-server/state/timeout YANG schema element. -type System_SshServer_Timeout struct { +// System_SshServer_TimeoutPath represents the /openconfig-system/system/ssh-server/config/timeout YANG schema element. +type System_SshServer_TimeoutPath struct { *ygot.NodePath } -// System_SshServer_TimeoutAny represents the wildcard version of the /openconfig-system/system/ssh-server/state/timeout YANG schema element. -type System_SshServer_TimeoutAny struct { +// System_SshServer_TimeoutPathAny represents the wildcard version of the /openconfig-system/system/ssh-server/config/timeout YANG schema element. +type System_SshServer_TimeoutPathAny struct { *ygot.NodePath } -// Enable returns from System_SshServer the path struct for its child "enable". -func (n *System_SshServer) Enable() *System_SshServer_Enable { - return &System_SshServer_Enable{ +// Enable returns from System_SshServerPath the path struct for its child "enable". +func (n *System_SshServerPath) Enable() *System_SshServer_EnablePath { + return &System_SshServer_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from System_SshServerAny the path struct for its child "enable". -func (n *System_SshServerAny) Enable() *System_SshServer_EnableAny { - return &System_SshServer_EnableAny{ +// Enable returns from System_SshServerPathAny the path struct for its child "enable". +func (n *System_SshServerPathAny) Enable() *System_SshServer_EnablePathAny { + return &System_SshServer_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// ProtocolVersion returns from System_SshServer the path struct for its child "protocol-version". -func (n *System_SshServer) ProtocolVersion() *System_SshServer_ProtocolVersion { - return &System_SshServer_ProtocolVersion{ +// ProtocolVersion returns from System_SshServerPath the path struct for its child "protocol-version". +func (n *System_SshServerPath) ProtocolVersion() *System_SshServer_ProtocolVersionPath { + return &System_SshServer_ProtocolVersionPath{ NodePath: ygot.NewNodePath( - []string{"state", "protocol-version"}, + []string{"config", "protocol-version"}, map[string]interface{}{}, n, ), } } -// ProtocolVersion returns from System_SshServerAny the path struct for its child "protocol-version". -func (n *System_SshServerAny) ProtocolVersion() *System_SshServer_ProtocolVersionAny { - return &System_SshServer_ProtocolVersionAny{ +// ProtocolVersion returns from System_SshServerPathAny the path struct for its child "protocol-version". +func (n *System_SshServerPathAny) ProtocolVersion() *System_SshServer_ProtocolVersionPathAny { + return &System_SshServer_ProtocolVersionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "protocol-version"}, + []string{"config", "protocol-version"}, map[string]interface{}{}, n, ), } } -// RateLimit returns from System_SshServer the path struct for its child "rate-limit". -func (n *System_SshServer) RateLimit() *System_SshServer_RateLimit { - return &System_SshServer_RateLimit{ +// RateLimit returns from System_SshServerPath the path struct for its child "rate-limit". +func (n *System_SshServerPath) RateLimit() *System_SshServer_RateLimitPath { + return &System_SshServer_RateLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "rate-limit"}, + []string{"config", "rate-limit"}, map[string]interface{}{}, n, ), } } -// RateLimit returns from System_SshServerAny the path struct for its child "rate-limit". -func (n *System_SshServerAny) RateLimit() *System_SshServer_RateLimitAny { - return &System_SshServer_RateLimitAny{ +// RateLimit returns from System_SshServerPathAny the path struct for its child "rate-limit". +func (n *System_SshServerPathAny) RateLimit() *System_SshServer_RateLimitPathAny { + return &System_SshServer_RateLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "rate-limit"}, + []string{"config", "rate-limit"}, map[string]interface{}{}, n, ), } } -// SessionLimit returns from System_SshServer the path struct for its child "session-limit". -func (n *System_SshServer) SessionLimit() *System_SshServer_SessionLimit { - return &System_SshServer_SessionLimit{ +// SessionLimit returns from System_SshServerPath the path struct for its child "session-limit". +func (n *System_SshServerPath) SessionLimit() *System_SshServer_SessionLimitPath { + return &System_SshServer_SessionLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "session-limit"}, + []string{"config", "session-limit"}, map[string]interface{}{}, n, ), } } -// SessionLimit returns from System_SshServerAny the path struct for its child "session-limit". -func (n *System_SshServerAny) SessionLimit() *System_SshServer_SessionLimitAny { - return &System_SshServer_SessionLimitAny{ +// SessionLimit returns from System_SshServerPathAny the path struct for its child "session-limit". +func (n *System_SshServerPathAny) SessionLimit() *System_SshServer_SessionLimitPathAny { + return &System_SshServer_SessionLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "session-limit"}, + []string{"config", "session-limit"}, map[string]interface{}{}, n, ), } } -// Timeout returns from System_SshServer the path struct for its child "timeout". -func (n *System_SshServer) Timeout() *System_SshServer_Timeout { - return &System_SshServer_Timeout{ +// Timeout returns from System_SshServerPath the path struct for its child "timeout". +func (n *System_SshServerPath) Timeout() *System_SshServer_TimeoutPath { + return &System_SshServer_TimeoutPath{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// Timeout returns from System_SshServerAny the path struct for its child "timeout". -func (n *System_SshServerAny) Timeout() *System_SshServer_TimeoutAny { - return &System_SshServer_TimeoutAny{ +// Timeout returns from System_SshServerPathAny the path struct for its child "timeout". +func (n *System_SshServerPathAny) Timeout() *System_SshServer_TimeoutPathAny { + return &System_SshServer_TimeoutPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// System_TelnetServer represents the /openconfig-system/system/telnet-server YANG schema element. -type System_TelnetServer struct { +// System_TelnetServerPath represents the /openconfig-system/system/telnet-server YANG schema element. +type System_TelnetServerPath struct { *ygot.NodePath } -// System_TelnetServerAny represents the wildcard version of the /openconfig-system/system/telnet-server YANG schema element. -type System_TelnetServerAny struct { +// System_TelnetServerPathAny represents the wildcard version of the /openconfig-system/system/telnet-server YANG schema element. +type System_TelnetServerPathAny struct { *ygot.NodePath } -// System_TelnetServer_Enable represents the /openconfig-system/system/telnet-server/state/enable YANG schema element. -type System_TelnetServer_Enable struct { +// System_TelnetServer_EnablePath represents the /openconfig-system/system/telnet-server/config/enable YANG schema element. +type System_TelnetServer_EnablePath struct { *ygot.NodePath } -// System_TelnetServer_EnableAny represents the wildcard version of the /openconfig-system/system/telnet-server/state/enable YANG schema element. -type System_TelnetServer_EnableAny struct { +// System_TelnetServer_EnablePathAny represents the wildcard version of the /openconfig-system/system/telnet-server/config/enable YANG schema element. +type System_TelnetServer_EnablePathAny struct { *ygot.NodePath } -// System_TelnetServer_RateLimit represents the /openconfig-system/system/telnet-server/state/rate-limit YANG schema element. -type System_TelnetServer_RateLimit struct { +// System_TelnetServer_RateLimitPath represents the /openconfig-system/system/telnet-server/config/rate-limit YANG schema element. +type System_TelnetServer_RateLimitPath struct { *ygot.NodePath } -// System_TelnetServer_RateLimitAny represents the wildcard version of the /openconfig-system/system/telnet-server/state/rate-limit YANG schema element. -type System_TelnetServer_RateLimitAny struct { +// System_TelnetServer_RateLimitPathAny represents the wildcard version of the /openconfig-system/system/telnet-server/config/rate-limit YANG schema element. +type System_TelnetServer_RateLimitPathAny struct { *ygot.NodePath } -// System_TelnetServer_SessionLimit represents the /openconfig-system/system/telnet-server/state/session-limit YANG schema element. -type System_TelnetServer_SessionLimit struct { +// System_TelnetServer_SessionLimitPath represents the /openconfig-system/system/telnet-server/config/session-limit YANG schema element. +type System_TelnetServer_SessionLimitPath struct { *ygot.NodePath } -// System_TelnetServer_SessionLimitAny represents the wildcard version of the /openconfig-system/system/telnet-server/state/session-limit YANG schema element. -type System_TelnetServer_SessionLimitAny struct { +// System_TelnetServer_SessionLimitPathAny represents the wildcard version of the /openconfig-system/system/telnet-server/config/session-limit YANG schema element. +type System_TelnetServer_SessionLimitPathAny struct { *ygot.NodePath } -// System_TelnetServer_Timeout represents the /openconfig-system/system/telnet-server/state/timeout YANG schema element. -type System_TelnetServer_Timeout struct { +// System_TelnetServer_TimeoutPath represents the /openconfig-system/system/telnet-server/config/timeout YANG schema element. +type System_TelnetServer_TimeoutPath struct { *ygot.NodePath } -// System_TelnetServer_TimeoutAny represents the wildcard version of the /openconfig-system/system/telnet-server/state/timeout YANG schema element. -type System_TelnetServer_TimeoutAny struct { +// System_TelnetServer_TimeoutPathAny represents the wildcard version of the /openconfig-system/system/telnet-server/config/timeout YANG schema element. +type System_TelnetServer_TimeoutPathAny struct { *ygot.NodePath } -// Enable returns from System_TelnetServer the path struct for its child "enable". -func (n *System_TelnetServer) Enable() *System_TelnetServer_Enable { - return &System_TelnetServer_Enable{ +// Enable returns from System_TelnetServerPath the path struct for its child "enable". +func (n *System_TelnetServerPath) Enable() *System_TelnetServer_EnablePath { + return &System_TelnetServer_EnablePath{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// Enable returns from System_TelnetServerAny the path struct for its child "enable". -func (n *System_TelnetServerAny) Enable() *System_TelnetServer_EnableAny { - return &System_TelnetServer_EnableAny{ +// Enable returns from System_TelnetServerPathAny the path struct for its child "enable". +func (n *System_TelnetServerPathAny) Enable() *System_TelnetServer_EnablePathAny { + return &System_TelnetServer_EnablePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enable"}, + []string{"config", "enable"}, map[string]interface{}{}, n, ), } } -// RateLimit returns from System_TelnetServer the path struct for its child "rate-limit". -func (n *System_TelnetServer) RateLimit() *System_TelnetServer_RateLimit { - return &System_TelnetServer_RateLimit{ +// RateLimit returns from System_TelnetServerPath the path struct for its child "rate-limit". +func (n *System_TelnetServerPath) RateLimit() *System_TelnetServer_RateLimitPath { + return &System_TelnetServer_RateLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "rate-limit"}, + []string{"config", "rate-limit"}, map[string]interface{}{}, n, ), } } -// RateLimit returns from System_TelnetServerAny the path struct for its child "rate-limit". -func (n *System_TelnetServerAny) RateLimit() *System_TelnetServer_RateLimitAny { - return &System_TelnetServer_RateLimitAny{ +// RateLimit returns from System_TelnetServerPathAny the path struct for its child "rate-limit". +func (n *System_TelnetServerPathAny) RateLimit() *System_TelnetServer_RateLimitPathAny { + return &System_TelnetServer_RateLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "rate-limit"}, + []string{"config", "rate-limit"}, map[string]interface{}{}, n, ), } } -// SessionLimit returns from System_TelnetServer the path struct for its child "session-limit". -func (n *System_TelnetServer) SessionLimit() *System_TelnetServer_SessionLimit { - return &System_TelnetServer_SessionLimit{ +// SessionLimit returns from System_TelnetServerPath the path struct for its child "session-limit". +func (n *System_TelnetServerPath) SessionLimit() *System_TelnetServer_SessionLimitPath { + return &System_TelnetServer_SessionLimitPath{ NodePath: ygot.NewNodePath( - []string{"state", "session-limit"}, + []string{"config", "session-limit"}, map[string]interface{}{}, n, ), } } -// SessionLimit returns from System_TelnetServerAny the path struct for its child "session-limit". -func (n *System_TelnetServerAny) SessionLimit() *System_TelnetServer_SessionLimitAny { - return &System_TelnetServer_SessionLimitAny{ +// SessionLimit returns from System_TelnetServerPathAny the path struct for its child "session-limit". +func (n *System_TelnetServerPathAny) SessionLimit() *System_TelnetServer_SessionLimitPathAny { + return &System_TelnetServer_SessionLimitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "session-limit"}, + []string{"config", "session-limit"}, map[string]interface{}{}, n, ), } } -// Timeout returns from System_TelnetServer the path struct for its child "timeout". -func (n *System_TelnetServer) Timeout() *System_TelnetServer_Timeout { - return &System_TelnetServer_Timeout{ +// Timeout returns from System_TelnetServerPath the path struct for its child "timeout". +func (n *System_TelnetServerPath) Timeout() *System_TelnetServer_TimeoutPath { + return &System_TelnetServer_TimeoutPath{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// Timeout returns from System_TelnetServerAny the path struct for its child "timeout". -func (n *System_TelnetServerAny) Timeout() *System_TelnetServer_TimeoutAny { - return &System_TelnetServer_TimeoutAny{ +// Timeout returns from System_TelnetServerPathAny the path struct for its child "timeout". +func (n *System_TelnetServerPathAny) Timeout() *System_TelnetServer_TimeoutPathAny { + return &System_TelnetServer_TimeoutPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "timeout"}, + []string{"config", "timeout"}, map[string]interface{}{}, n, ), } } -// TerminalDevice represents the /openconfig-terminal-device/terminal-device YANG schema element. -type TerminalDevice struct { +// TerminalDevicePath represents the /openconfig-terminal-device/terminal-device YANG schema element. +type TerminalDevicePath struct { *ygot.NodePath } -// TerminalDeviceAny represents the wildcard version of the /openconfig-terminal-device/terminal-device YANG schema element. -type TerminalDeviceAny struct { +// TerminalDevicePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device YANG schema element. +type TerminalDevicePathAny struct { *ygot.NodePath } -// ChannelAny returns from TerminalDevice the path struct for its child "channel". -func (n *TerminalDevice) ChannelAny() *TerminalDevice_ChannelAny { - return &TerminalDevice_ChannelAny{ +// ChannelAny returns from TerminalDevicePath the path struct for its child "channel". +func (n *TerminalDevicePath) ChannelAny() *TerminalDevice_ChannelPathAny { + return &TerminalDevice_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channels", "channel"}, map[string]interface{}{"index": "*"}, @@ -170045,9 +170072,9 @@ func (n *TerminalDevice) ChannelAny() *TerminalDevice_ChannelAny { } } -// ChannelAny returns from TerminalDeviceAny the path struct for its child "channel". -func (n *TerminalDeviceAny) ChannelAny() *TerminalDevice_ChannelAny { - return &TerminalDevice_ChannelAny{ +// ChannelAny returns from TerminalDevicePathAny the path struct for its child "channel". +func (n *TerminalDevicePathAny) ChannelAny() *TerminalDevice_ChannelPathAny { + return &TerminalDevice_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channels", "channel"}, map[string]interface{}{"index": "*"}, @@ -170056,9 +170083,9 @@ func (n *TerminalDeviceAny) ChannelAny() *TerminalDevice_ChannelAny { } } -// Channel returns from TerminalDevice the path struct for its child "channel". -func (n *TerminalDevice) Channel(Index uint32) *TerminalDevice_Channel { - return &TerminalDevice_Channel{ +// Channel returns from TerminalDevicePath the path struct for its child "channel". +func (n *TerminalDevicePath) Channel(Index uint32) *TerminalDevice_ChannelPath { + return &TerminalDevice_ChannelPath{ NodePath: ygot.NewNodePath( []string{"logical-channels", "channel"}, map[string]interface{}{"index": Index}, @@ -170067,9 +170094,9 @@ func (n *TerminalDevice) Channel(Index uint32) *TerminalDevice_Channel { } } -// Channel returns from TerminalDeviceAny the path struct for its child "channel". -func (n *TerminalDeviceAny) Channel(Index uint32) *TerminalDevice_ChannelAny { - return &TerminalDevice_ChannelAny{ +// Channel returns from TerminalDevicePathAny the path struct for its child "channel". +func (n *TerminalDevicePathAny) Channel(Index uint32) *TerminalDevice_ChannelPathAny { + return &TerminalDevice_ChannelPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channels", "channel"}, map[string]interface{}{"index": Index}, @@ -170078,9 +170105,9 @@ func (n *TerminalDeviceAny) Channel(Index uint32) *TerminalDevice_ChannelAny { } } -// ModeAny returns from TerminalDevice the path struct for its child "mode". -func (n *TerminalDevice) ModeAny() *TerminalDevice_ModeAny { - return &TerminalDevice_ModeAny{ +// ModeAny returns from TerminalDevicePath the path struct for its child "mode". +func (n *TerminalDevicePath) ModeAny() *TerminalDevice_ModePathAny { + return &TerminalDevice_ModePathAny{ NodePath: ygot.NewNodePath( []string{"operational-modes", "mode"}, map[string]interface{}{"mode-id": "*"}, @@ -170089,9 +170116,9 @@ func (n *TerminalDevice) ModeAny() *TerminalDevice_ModeAny { } } -// ModeAny returns from TerminalDeviceAny the path struct for its child "mode". -func (n *TerminalDeviceAny) ModeAny() *TerminalDevice_ModeAny { - return &TerminalDevice_ModeAny{ +// ModeAny returns from TerminalDevicePathAny the path struct for its child "mode". +func (n *TerminalDevicePathAny) ModeAny() *TerminalDevice_ModePathAny { + return &TerminalDevice_ModePathAny{ NodePath: ygot.NewNodePath( []string{"operational-modes", "mode"}, map[string]interface{}{"mode-id": "*"}, @@ -170100,9 +170127,9 @@ func (n *TerminalDeviceAny) ModeAny() *TerminalDevice_ModeAny { } } -// Mode returns from TerminalDevice the path struct for its child "mode". -func (n *TerminalDevice) Mode(ModeId uint16) *TerminalDevice_Mode { - return &TerminalDevice_Mode{ +// Mode returns from TerminalDevicePath the path struct for its child "mode". +func (n *TerminalDevicePath) Mode(ModeId uint16) *TerminalDevice_ModePath { + return &TerminalDevice_ModePath{ NodePath: ygot.NewNodePath( []string{"operational-modes", "mode"}, map[string]interface{}{"mode-id": ModeId}, @@ -170111,9 +170138,9 @@ func (n *TerminalDevice) Mode(ModeId uint16) *TerminalDevice_Mode { } } -// Mode returns from TerminalDeviceAny the path struct for its child "mode". -func (n *TerminalDeviceAny) Mode(ModeId uint16) *TerminalDevice_ModeAny { - return &TerminalDevice_ModeAny{ +// Mode returns from TerminalDevicePathAny the path struct for its child "mode". +func (n *TerminalDevicePathAny) Mode(ModeId uint16) *TerminalDevice_ModePathAny { + return &TerminalDevice_ModePathAny{ NodePath: ygot.NewNodePath( []string{"operational-modes", "mode"}, map[string]interface{}{"mode-id": ModeId}, @@ -170122,131 +170149,131 @@ func (n *TerminalDeviceAny) Mode(ModeId uint16) *TerminalDevice_ModeAny { } } -// TerminalDevice_Channel represents the /openconfig-terminal-device/terminal-device/logical-channels/channel YANG schema element. -type TerminalDevice_Channel struct { +// TerminalDevice_ChannelPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel YANG schema element. +type TerminalDevice_ChannelPath struct { *ygot.NodePath } -// TerminalDevice_ChannelAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel YANG schema element. -type TerminalDevice_ChannelAny struct { +// TerminalDevice_ChannelPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel YANG schema element. +type TerminalDevice_ChannelPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_AdminState represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/admin-state YANG schema element. -type TerminalDevice_Channel_AdminState struct { +// TerminalDevice_Channel_AdminStatePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/admin-state YANG schema element. +type TerminalDevice_Channel_AdminStatePath struct { *ygot.NodePath } -// TerminalDevice_Channel_AdminStateAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/admin-state YANG schema element. -type TerminalDevice_Channel_AdminStateAny struct { +// TerminalDevice_Channel_AdminStatePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/admin-state YANG schema element. +type TerminalDevice_Channel_AdminStatePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Description represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/description YANG schema element. -type TerminalDevice_Channel_Description struct { +// TerminalDevice_Channel_DescriptionPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/description YANG schema element. +type TerminalDevice_Channel_DescriptionPath struct { *ygot.NodePath } -// TerminalDevice_Channel_DescriptionAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/description YANG schema element. -type TerminalDevice_Channel_DescriptionAny struct { +// TerminalDevice_Channel_DescriptionPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/description YANG schema element. +type TerminalDevice_Channel_DescriptionPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Index represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/index YANG schema element. -type TerminalDevice_Channel_Index struct { +// TerminalDevice_Channel_IndexPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/index YANG schema element. +type TerminalDevice_Channel_IndexPath struct { *ygot.NodePath } -// TerminalDevice_Channel_IndexAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/index YANG schema element. -type TerminalDevice_Channel_IndexAny struct { +// TerminalDevice_Channel_IndexPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/index YANG schema element. +type TerminalDevice_Channel_IndexPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_LinkState represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/link-state YANG schema element. -type TerminalDevice_Channel_LinkState struct { +// TerminalDevice_Channel_LinkStatePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/link-state YANG schema element. +type TerminalDevice_Channel_LinkStatePath struct { *ygot.NodePath } -// TerminalDevice_Channel_LinkStateAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/link-state YANG schema element. -type TerminalDevice_Channel_LinkStateAny struct { +// TerminalDevice_Channel_LinkStatePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/link-state YANG schema element. +type TerminalDevice_Channel_LinkStatePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_LogicalChannelType represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/logical-channel-type YANG schema element. -type TerminalDevice_Channel_LogicalChannelType struct { +// TerminalDevice_Channel_LogicalChannelTypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/logical-channel-type YANG schema element. +type TerminalDevice_Channel_LogicalChannelTypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_LogicalChannelTypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/logical-channel-type YANG schema element. -type TerminalDevice_Channel_LogicalChannelTypeAny struct { +// TerminalDevice_Channel_LogicalChannelTypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/logical-channel-type YANG schema element. +type TerminalDevice_Channel_LogicalChannelTypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_LoopbackMode represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/loopback-mode YANG schema element. -type TerminalDevice_Channel_LoopbackMode struct { +// TerminalDevice_Channel_LoopbackModePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/loopback-mode YANG schema element. +type TerminalDevice_Channel_LoopbackModePath struct { *ygot.NodePath } -// TerminalDevice_Channel_LoopbackModeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/loopback-mode YANG schema element. -type TerminalDevice_Channel_LoopbackModeAny struct { +// TerminalDevice_Channel_LoopbackModePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/loopback-mode YANG schema element. +type TerminalDevice_Channel_LoopbackModePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_RateClass represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/rate-class YANG schema element. -type TerminalDevice_Channel_RateClass struct { +// TerminalDevice_Channel_RateClassPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/rate-class YANG schema element. +type TerminalDevice_Channel_RateClassPath struct { *ygot.NodePath } -// TerminalDevice_Channel_RateClassAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/rate-class YANG schema element. -type TerminalDevice_Channel_RateClassAny struct { +// TerminalDevice_Channel_RateClassPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/rate-class YANG schema element. +type TerminalDevice_Channel_RateClassPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_TestSignal represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/test-signal YANG schema element. -type TerminalDevice_Channel_TestSignal struct { +// TerminalDevice_Channel_TestSignalPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/test-signal YANG schema element. +type TerminalDevice_Channel_TestSignalPath struct { *ygot.NodePath } -// TerminalDevice_Channel_TestSignalAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/test-signal YANG schema element. -type TerminalDevice_Channel_TestSignalAny struct { +// TerminalDevice_Channel_TestSignalPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/test-signal YANG schema element. +type TerminalDevice_Channel_TestSignalPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_TribProtocol represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/trib-protocol YANG schema element. -type TerminalDevice_Channel_TribProtocol struct { +// TerminalDevice_Channel_TribProtocolPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/trib-protocol YANG schema element. +type TerminalDevice_Channel_TribProtocolPath struct { *ygot.NodePath } -// TerminalDevice_Channel_TribProtocolAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/state/trib-protocol YANG schema element. -type TerminalDevice_Channel_TribProtocolAny struct { +// TerminalDevice_Channel_TribProtocolPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/config/trib-protocol YANG schema element. +type TerminalDevice_Channel_TribProtocolPathAny struct { *ygot.NodePath } -// AdminState returns from TerminalDevice_Channel the path struct for its child "admin-state". -func (n *TerminalDevice_Channel) AdminState() *TerminalDevice_Channel_AdminState { - return &TerminalDevice_Channel_AdminState{ +// AdminState returns from TerminalDevice_ChannelPath the path struct for its child "admin-state". +func (n *TerminalDevice_ChannelPath) AdminState() *TerminalDevice_Channel_AdminStatePath { + return &TerminalDevice_Channel_AdminStatePath{ NodePath: ygot.NewNodePath( - []string{"state", "admin-state"}, + []string{"config", "admin-state"}, map[string]interface{}{}, n, ), } } -// AdminState returns from TerminalDevice_ChannelAny the path struct for its child "admin-state". -func (n *TerminalDevice_ChannelAny) AdminState() *TerminalDevice_Channel_AdminStateAny { - return &TerminalDevice_Channel_AdminStateAny{ +// AdminState returns from TerminalDevice_ChannelPathAny the path struct for its child "admin-state". +func (n *TerminalDevice_ChannelPathAny) AdminState() *TerminalDevice_Channel_AdminStatePathAny { + return &TerminalDevice_Channel_AdminStatePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "admin-state"}, + []string{"config", "admin-state"}, map[string]interface{}{}, n, ), } } -// AssignmentAny returns from TerminalDevice_Channel the path struct for its child "assignment". -func (n *TerminalDevice_Channel) AssignmentAny() *TerminalDevice_Channel_AssignmentAny { - return &TerminalDevice_Channel_AssignmentAny{ +// AssignmentAny returns from TerminalDevice_ChannelPath the path struct for its child "assignment". +func (n *TerminalDevice_ChannelPath) AssignmentAny() *TerminalDevice_Channel_AssignmentPathAny { + return &TerminalDevice_Channel_AssignmentPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channel-assignments", "assignment"}, map[string]interface{}{"index": "*"}, @@ -170255,9 +170282,9 @@ func (n *TerminalDevice_Channel) AssignmentAny() *TerminalDevice_Channel_Assignm } } -// AssignmentAny returns from TerminalDevice_ChannelAny the path struct for its child "assignment". -func (n *TerminalDevice_ChannelAny) AssignmentAny() *TerminalDevice_Channel_AssignmentAny { - return &TerminalDevice_Channel_AssignmentAny{ +// AssignmentAny returns from TerminalDevice_ChannelPathAny the path struct for its child "assignment". +func (n *TerminalDevice_ChannelPathAny) AssignmentAny() *TerminalDevice_Channel_AssignmentPathAny { + return &TerminalDevice_Channel_AssignmentPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channel-assignments", "assignment"}, map[string]interface{}{"index": "*"}, @@ -170266,9 +170293,9 @@ func (n *TerminalDevice_ChannelAny) AssignmentAny() *TerminalDevice_Channel_Assi } } -// Assignment returns from TerminalDevice_Channel the path struct for its child "assignment". -func (n *TerminalDevice_Channel) Assignment(Index uint32) *TerminalDevice_Channel_Assignment { - return &TerminalDevice_Channel_Assignment{ +// Assignment returns from TerminalDevice_ChannelPath the path struct for its child "assignment". +func (n *TerminalDevice_ChannelPath) Assignment(Index uint32) *TerminalDevice_Channel_AssignmentPath { + return &TerminalDevice_Channel_AssignmentPath{ NodePath: ygot.NewNodePath( []string{"logical-channel-assignments", "assignment"}, map[string]interface{}{"index": Index}, @@ -170277,9 +170304,9 @@ func (n *TerminalDevice_Channel) Assignment(Index uint32) *TerminalDevice_Channe } } -// Assignment returns from TerminalDevice_ChannelAny the path struct for its child "assignment". -func (n *TerminalDevice_ChannelAny) Assignment(Index uint32) *TerminalDevice_Channel_AssignmentAny { - return &TerminalDevice_Channel_AssignmentAny{ +// Assignment returns from TerminalDevice_ChannelPathAny the path struct for its child "assignment". +func (n *TerminalDevice_ChannelPathAny) Assignment(Index uint32) *TerminalDevice_Channel_AssignmentPathAny { + return &TerminalDevice_Channel_AssignmentPathAny{ NodePath: ygot.NewNodePath( []string{"logical-channel-assignments", "assignment"}, map[string]interface{}{"index": Index}, @@ -170288,31 +170315,31 @@ func (n *TerminalDevice_ChannelAny) Assignment(Index uint32) *TerminalDevice_Cha } } -// Description returns from TerminalDevice_Channel the path struct for its child "description". -func (n *TerminalDevice_Channel) Description() *TerminalDevice_Channel_Description { - return &TerminalDevice_Channel_Description{ +// Description returns from TerminalDevice_ChannelPath the path struct for its child "description". +func (n *TerminalDevice_ChannelPath) Description() *TerminalDevice_Channel_DescriptionPath { + return &TerminalDevice_Channel_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from TerminalDevice_ChannelAny the path struct for its child "description". -func (n *TerminalDevice_ChannelAny) Description() *TerminalDevice_Channel_DescriptionAny { - return &TerminalDevice_Channel_DescriptionAny{ +// Description returns from TerminalDevice_ChannelPathAny the path struct for its child "description". +func (n *TerminalDevice_ChannelPathAny) Description() *TerminalDevice_Channel_DescriptionPathAny { + return &TerminalDevice_Channel_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Ethernet returns from TerminalDevice_Channel the path struct for its child "ethernet". -func (n *TerminalDevice_Channel) Ethernet() *TerminalDevice_Channel_Ethernet { - return &TerminalDevice_Channel_Ethernet{ +// Ethernet returns from TerminalDevice_ChannelPath the path struct for its child "ethernet". +func (n *TerminalDevice_ChannelPath) Ethernet() *TerminalDevice_Channel_EthernetPath { + return &TerminalDevice_Channel_EthernetPath{ NodePath: ygot.NewNodePath( []string{"ethernet"}, map[string]interface{}{}, @@ -170321,9 +170348,9 @@ func (n *TerminalDevice_Channel) Ethernet() *TerminalDevice_Channel_Ethernet { } } -// Ethernet returns from TerminalDevice_ChannelAny the path struct for its child "ethernet". -func (n *TerminalDevice_ChannelAny) Ethernet() *TerminalDevice_Channel_EthernetAny { - return &TerminalDevice_Channel_EthernetAny{ +// Ethernet returns from TerminalDevice_ChannelPathAny the path struct for its child "ethernet". +func (n *TerminalDevice_ChannelPathAny) Ethernet() *TerminalDevice_Channel_EthernetPathAny { + return &TerminalDevice_Channel_EthernetPathAny{ NodePath: ygot.NewNodePath( []string{"ethernet"}, map[string]interface{}{}, @@ -170332,31 +170359,31 @@ func (n *TerminalDevice_ChannelAny) Ethernet() *TerminalDevice_Channel_EthernetA } } -// Index returns from TerminalDevice_Channel the path struct for its child "index". -func (n *TerminalDevice_Channel) Index() *TerminalDevice_Channel_Index { - return &TerminalDevice_Channel_Index{ +// Index returns from TerminalDevice_ChannelPath the path struct for its child "index". +func (n *TerminalDevice_ChannelPath) Index() *TerminalDevice_Channel_IndexPath { + return &TerminalDevice_Channel_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from TerminalDevice_ChannelAny the path struct for its child "index". -func (n *TerminalDevice_ChannelAny) Index() *TerminalDevice_Channel_IndexAny { - return &TerminalDevice_Channel_IndexAny{ +// Index returns from TerminalDevice_ChannelPathAny the path struct for its child "index". +func (n *TerminalDevice_ChannelPathAny) Index() *TerminalDevice_Channel_IndexPathAny { + return &TerminalDevice_Channel_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Ingress returns from TerminalDevice_Channel the path struct for its child "ingress". -func (n *TerminalDevice_Channel) Ingress() *TerminalDevice_Channel_Ingress { - return &TerminalDevice_Channel_Ingress{ +// Ingress returns from TerminalDevice_ChannelPath the path struct for its child "ingress". +func (n *TerminalDevice_ChannelPath) Ingress() *TerminalDevice_Channel_IngressPath { + return &TerminalDevice_Channel_IngressPath{ NodePath: ygot.NewNodePath( []string{"ingress"}, map[string]interface{}{}, @@ -170365,9 +170392,9 @@ func (n *TerminalDevice_Channel) Ingress() *TerminalDevice_Channel_Ingress { } } -// Ingress returns from TerminalDevice_ChannelAny the path struct for its child "ingress". -func (n *TerminalDevice_ChannelAny) Ingress() *TerminalDevice_Channel_IngressAny { - return &TerminalDevice_Channel_IngressAny{ +// Ingress returns from TerminalDevice_ChannelPathAny the path struct for its child "ingress". +func (n *TerminalDevice_ChannelPathAny) Ingress() *TerminalDevice_Channel_IngressPathAny { + return &TerminalDevice_Channel_IngressPathAny{ NodePath: ygot.NewNodePath( []string{"ingress"}, map[string]interface{}{}, @@ -170376,9 +170403,9 @@ func (n *TerminalDevice_ChannelAny) Ingress() *TerminalDevice_Channel_IngressAny } } -// LinkState returns from TerminalDevice_Channel the path struct for its child "link-state". -func (n *TerminalDevice_Channel) LinkState() *TerminalDevice_Channel_LinkState { - return &TerminalDevice_Channel_LinkState{ +// LinkState returns from TerminalDevice_ChannelPath the path struct for its child "link-state". +func (n *TerminalDevice_ChannelPath) LinkState() *TerminalDevice_Channel_LinkStatePath { + return &TerminalDevice_Channel_LinkStatePath{ NodePath: ygot.NewNodePath( []string{"state", "link-state"}, map[string]interface{}{}, @@ -170387,9 +170414,9 @@ func (n *TerminalDevice_Channel) LinkState() *TerminalDevice_Channel_LinkState { } } -// LinkState returns from TerminalDevice_ChannelAny the path struct for its child "link-state". -func (n *TerminalDevice_ChannelAny) LinkState() *TerminalDevice_Channel_LinkStateAny { - return &TerminalDevice_Channel_LinkStateAny{ +// LinkState returns from TerminalDevice_ChannelPathAny the path struct for its child "link-state". +func (n *TerminalDevice_ChannelPathAny) LinkState() *TerminalDevice_Channel_LinkStatePathAny { + return &TerminalDevice_Channel_LinkStatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "link-state"}, map[string]interface{}{}, @@ -170398,53 +170425,53 @@ func (n *TerminalDevice_ChannelAny) LinkState() *TerminalDevice_Channel_LinkStat } } -// LogicalChannelType returns from TerminalDevice_Channel the path struct for its child "logical-channel-type". -func (n *TerminalDevice_Channel) LogicalChannelType() *TerminalDevice_Channel_LogicalChannelType { - return &TerminalDevice_Channel_LogicalChannelType{ +// LogicalChannelType returns from TerminalDevice_ChannelPath the path struct for its child "logical-channel-type". +func (n *TerminalDevice_ChannelPath) LogicalChannelType() *TerminalDevice_Channel_LogicalChannelTypePath { + return &TerminalDevice_Channel_LogicalChannelTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "logical-channel-type"}, + []string{"config", "logical-channel-type"}, map[string]interface{}{}, n, ), } } -// LogicalChannelType returns from TerminalDevice_ChannelAny the path struct for its child "logical-channel-type". -func (n *TerminalDevice_ChannelAny) LogicalChannelType() *TerminalDevice_Channel_LogicalChannelTypeAny { - return &TerminalDevice_Channel_LogicalChannelTypeAny{ +// LogicalChannelType returns from TerminalDevice_ChannelPathAny the path struct for its child "logical-channel-type". +func (n *TerminalDevice_ChannelPathAny) LogicalChannelType() *TerminalDevice_Channel_LogicalChannelTypePathAny { + return &TerminalDevice_Channel_LogicalChannelTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "logical-channel-type"}, + []string{"config", "logical-channel-type"}, map[string]interface{}{}, n, ), } } -// LoopbackMode returns from TerminalDevice_Channel the path struct for its child "loopback-mode". -func (n *TerminalDevice_Channel) LoopbackMode() *TerminalDevice_Channel_LoopbackMode { - return &TerminalDevice_Channel_LoopbackMode{ +// LoopbackMode returns from TerminalDevice_ChannelPath the path struct for its child "loopback-mode". +func (n *TerminalDevice_ChannelPath) LoopbackMode() *TerminalDevice_Channel_LoopbackModePath { + return &TerminalDevice_Channel_LoopbackModePath{ NodePath: ygot.NewNodePath( - []string{"state", "loopback-mode"}, + []string{"config", "loopback-mode"}, map[string]interface{}{}, n, ), } } -// LoopbackMode returns from TerminalDevice_ChannelAny the path struct for its child "loopback-mode". -func (n *TerminalDevice_ChannelAny) LoopbackMode() *TerminalDevice_Channel_LoopbackModeAny { - return &TerminalDevice_Channel_LoopbackModeAny{ +// LoopbackMode returns from TerminalDevice_ChannelPathAny the path struct for its child "loopback-mode". +func (n *TerminalDevice_ChannelPathAny) LoopbackMode() *TerminalDevice_Channel_LoopbackModePathAny { + return &TerminalDevice_Channel_LoopbackModePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "loopback-mode"}, + []string{"config", "loopback-mode"}, map[string]interface{}{}, n, ), } } -// Otn returns from TerminalDevice_Channel the path struct for its child "otn". -func (n *TerminalDevice_Channel) Otn() *TerminalDevice_Channel_Otn { - return &TerminalDevice_Channel_Otn{ +// Otn returns from TerminalDevice_ChannelPath the path struct for its child "otn". +func (n *TerminalDevice_ChannelPath) Otn() *TerminalDevice_Channel_OtnPath { + return &TerminalDevice_Channel_OtnPath{ NodePath: ygot.NewNodePath( []string{"otn"}, map[string]interface{}{}, @@ -170453,9 +170480,9 @@ func (n *TerminalDevice_Channel) Otn() *TerminalDevice_Channel_Otn { } } -// Otn returns from TerminalDevice_ChannelAny the path struct for its child "otn". -func (n *TerminalDevice_ChannelAny) Otn() *TerminalDevice_Channel_OtnAny { - return &TerminalDevice_Channel_OtnAny{ +// Otn returns from TerminalDevice_ChannelPathAny the path struct for its child "otn". +func (n *TerminalDevice_ChannelPathAny) Otn() *TerminalDevice_Channel_OtnPathAny { + return &TerminalDevice_Channel_OtnPathAny{ NodePath: ygot.NewNodePath( []string{"otn"}, map[string]interface{}{}, @@ -170464,605 +170491,605 @@ func (n *TerminalDevice_ChannelAny) Otn() *TerminalDevice_Channel_OtnAny { } } -// RateClass returns from TerminalDevice_Channel the path struct for its child "rate-class". -func (n *TerminalDevice_Channel) RateClass() *TerminalDevice_Channel_RateClass { - return &TerminalDevice_Channel_RateClass{ +// RateClass returns from TerminalDevice_ChannelPath the path struct for its child "rate-class". +func (n *TerminalDevice_ChannelPath) RateClass() *TerminalDevice_Channel_RateClassPath { + return &TerminalDevice_Channel_RateClassPath{ NodePath: ygot.NewNodePath( - []string{"state", "rate-class"}, + []string{"config", "rate-class"}, map[string]interface{}{}, n, ), } } -// RateClass returns from TerminalDevice_ChannelAny the path struct for its child "rate-class". -func (n *TerminalDevice_ChannelAny) RateClass() *TerminalDevice_Channel_RateClassAny { - return &TerminalDevice_Channel_RateClassAny{ +// RateClass returns from TerminalDevice_ChannelPathAny the path struct for its child "rate-class". +func (n *TerminalDevice_ChannelPathAny) RateClass() *TerminalDevice_Channel_RateClassPathAny { + return &TerminalDevice_Channel_RateClassPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "rate-class"}, + []string{"config", "rate-class"}, map[string]interface{}{}, n, ), } } -// TestSignal returns from TerminalDevice_Channel the path struct for its child "test-signal". -func (n *TerminalDevice_Channel) TestSignal() *TerminalDevice_Channel_TestSignal { - return &TerminalDevice_Channel_TestSignal{ +// TestSignal returns from TerminalDevice_ChannelPath the path struct for its child "test-signal". +func (n *TerminalDevice_ChannelPath) TestSignal() *TerminalDevice_Channel_TestSignalPath { + return &TerminalDevice_Channel_TestSignalPath{ NodePath: ygot.NewNodePath( - []string{"state", "test-signal"}, + []string{"config", "test-signal"}, map[string]interface{}{}, n, ), } } -// TestSignal returns from TerminalDevice_ChannelAny the path struct for its child "test-signal". -func (n *TerminalDevice_ChannelAny) TestSignal() *TerminalDevice_Channel_TestSignalAny { - return &TerminalDevice_Channel_TestSignalAny{ +// TestSignal returns from TerminalDevice_ChannelPathAny the path struct for its child "test-signal". +func (n *TerminalDevice_ChannelPathAny) TestSignal() *TerminalDevice_Channel_TestSignalPathAny { + return &TerminalDevice_Channel_TestSignalPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "test-signal"}, + []string{"config", "test-signal"}, map[string]interface{}{}, n, ), } } -// TribProtocol returns from TerminalDevice_Channel the path struct for its child "trib-protocol". -func (n *TerminalDevice_Channel) TribProtocol() *TerminalDevice_Channel_TribProtocol { - return &TerminalDevice_Channel_TribProtocol{ +// TribProtocol returns from TerminalDevice_ChannelPath the path struct for its child "trib-protocol". +func (n *TerminalDevice_ChannelPath) TribProtocol() *TerminalDevice_Channel_TribProtocolPath { + return &TerminalDevice_Channel_TribProtocolPath{ NodePath: ygot.NewNodePath( - []string{"state", "trib-protocol"}, + []string{"config", "trib-protocol"}, map[string]interface{}{}, n, ), } } -// TribProtocol returns from TerminalDevice_ChannelAny the path struct for its child "trib-protocol". -func (n *TerminalDevice_ChannelAny) TribProtocol() *TerminalDevice_Channel_TribProtocolAny { - return &TerminalDevice_Channel_TribProtocolAny{ +// TribProtocol returns from TerminalDevice_ChannelPathAny the path struct for its child "trib-protocol". +func (n *TerminalDevice_ChannelPathAny) TribProtocol() *TerminalDevice_Channel_TribProtocolPathAny { + return &TerminalDevice_Channel_TribProtocolPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "trib-protocol"}, + []string{"config", "trib-protocol"}, map[string]interface{}{}, n, ), } } -// TerminalDevice_Channel_Assignment represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment YANG schema element. -type TerminalDevice_Channel_Assignment struct { +// TerminalDevice_Channel_AssignmentPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment YANG schema element. +type TerminalDevice_Channel_AssignmentPath struct { *ygot.NodePath } -// TerminalDevice_Channel_AssignmentAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment YANG schema element. -type TerminalDevice_Channel_AssignmentAny struct { +// TerminalDevice_Channel_AssignmentPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment YANG schema element. +type TerminalDevice_Channel_AssignmentPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_Allocation represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/allocation YANG schema element. -type TerminalDevice_Channel_Assignment_Allocation struct { +// TerminalDevice_Channel_Assignment_AllocationPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/allocation YANG schema element. +type TerminalDevice_Channel_Assignment_AllocationPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_AllocationAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/allocation YANG schema element. -type TerminalDevice_Channel_Assignment_AllocationAny struct { +// TerminalDevice_Channel_Assignment_AllocationPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/allocation YANG schema element. +type TerminalDevice_Channel_Assignment_AllocationPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_AssignmentType represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/assignment-type YANG schema element. -type TerminalDevice_Channel_Assignment_AssignmentType struct { +// TerminalDevice_Channel_Assignment_AssignmentTypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/assignment-type YANG schema element. +type TerminalDevice_Channel_Assignment_AssignmentTypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_AssignmentTypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/assignment-type YANG schema element. -type TerminalDevice_Channel_Assignment_AssignmentTypeAny struct { +// TerminalDevice_Channel_Assignment_AssignmentTypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/assignment-type YANG schema element. +type TerminalDevice_Channel_Assignment_AssignmentTypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_Description represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/description YANG schema element. -type TerminalDevice_Channel_Assignment_Description struct { +// TerminalDevice_Channel_Assignment_DescriptionPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/description YANG schema element. +type TerminalDevice_Channel_Assignment_DescriptionPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_DescriptionAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/description YANG schema element. -type TerminalDevice_Channel_Assignment_DescriptionAny struct { +// TerminalDevice_Channel_Assignment_DescriptionPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/description YANG schema element. +type TerminalDevice_Channel_Assignment_DescriptionPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_Index represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/index YANG schema element. -type TerminalDevice_Channel_Assignment_Index struct { +// TerminalDevice_Channel_Assignment_IndexPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/index YANG schema element. +type TerminalDevice_Channel_Assignment_IndexPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_IndexAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/index YANG schema element. -type TerminalDevice_Channel_Assignment_IndexAny struct { +// TerminalDevice_Channel_Assignment_IndexPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/index YANG schema element. +type TerminalDevice_Channel_Assignment_IndexPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_LogicalChannel represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/logical-channel YANG schema element. -type TerminalDevice_Channel_Assignment_LogicalChannel struct { +// TerminalDevice_Channel_Assignment_LogicalChannelPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/logical-channel YANG schema element. +type TerminalDevice_Channel_Assignment_LogicalChannelPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_LogicalChannelAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/logical-channel YANG schema element. -type TerminalDevice_Channel_Assignment_LogicalChannelAny struct { +// TerminalDevice_Channel_Assignment_LogicalChannelPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/logical-channel YANG schema element. +type TerminalDevice_Channel_Assignment_LogicalChannelPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_Mapping represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/mapping YANG schema element. -type TerminalDevice_Channel_Assignment_Mapping struct { +// TerminalDevice_Channel_Assignment_MappingPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/mapping YANG schema element. +type TerminalDevice_Channel_Assignment_MappingPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_MappingAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/mapping YANG schema element. -type TerminalDevice_Channel_Assignment_MappingAny struct { +// TerminalDevice_Channel_Assignment_MappingPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/mapping YANG schema element. +type TerminalDevice_Channel_Assignment_MappingPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_OpticalChannel represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/optical-channel YANG schema element. -type TerminalDevice_Channel_Assignment_OpticalChannel struct { +// TerminalDevice_Channel_Assignment_OpticalChannelPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/optical-channel YANG schema element. +type TerminalDevice_Channel_Assignment_OpticalChannelPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_OpticalChannelAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/optical-channel YANG schema element. -type TerminalDevice_Channel_Assignment_OpticalChannelAny struct { +// TerminalDevice_Channel_Assignment_OpticalChannelPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/optical-channel YANG schema element. +type TerminalDevice_Channel_Assignment_OpticalChannelPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_TributarySlotIndex represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/tributary-slot-index YANG schema element. -type TerminalDevice_Channel_Assignment_TributarySlotIndex struct { +// TerminalDevice_Channel_Assignment_TributarySlotIndexPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/tributary-slot-index YANG schema element. +type TerminalDevice_Channel_Assignment_TributarySlotIndexPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Assignment_TributarySlotIndexAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/state/tributary-slot-index YANG schema element. -type TerminalDevice_Channel_Assignment_TributarySlotIndexAny struct { +// TerminalDevice_Channel_Assignment_TributarySlotIndexPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/logical-channel-assignments/assignment/config/tributary-slot-index YANG schema element. +type TerminalDevice_Channel_Assignment_TributarySlotIndexPathAny struct { *ygot.NodePath } -// Allocation returns from TerminalDevice_Channel_Assignment the path struct for its child "allocation". -func (n *TerminalDevice_Channel_Assignment) Allocation() *TerminalDevice_Channel_Assignment_Allocation { - return &TerminalDevice_Channel_Assignment_Allocation{ +// Allocation returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "allocation". +func (n *TerminalDevice_Channel_AssignmentPath) Allocation() *TerminalDevice_Channel_Assignment_AllocationPath { + return &TerminalDevice_Channel_Assignment_AllocationPath{ NodePath: ygot.NewNodePath( - []string{"state", "allocation"}, + []string{"config", "allocation"}, map[string]interface{}{}, n, ), } } -// Allocation returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "allocation". -func (n *TerminalDevice_Channel_AssignmentAny) Allocation() *TerminalDevice_Channel_Assignment_AllocationAny { - return &TerminalDevice_Channel_Assignment_AllocationAny{ +// Allocation returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "allocation". +func (n *TerminalDevice_Channel_AssignmentPathAny) Allocation() *TerminalDevice_Channel_Assignment_AllocationPathAny { + return &TerminalDevice_Channel_Assignment_AllocationPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "allocation"}, + []string{"config", "allocation"}, map[string]interface{}{}, n, ), } } -// AssignmentType returns from TerminalDevice_Channel_Assignment the path struct for its child "assignment-type". -func (n *TerminalDevice_Channel_Assignment) AssignmentType() *TerminalDevice_Channel_Assignment_AssignmentType { - return &TerminalDevice_Channel_Assignment_AssignmentType{ +// AssignmentType returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "assignment-type". +func (n *TerminalDevice_Channel_AssignmentPath) AssignmentType() *TerminalDevice_Channel_Assignment_AssignmentTypePath { + return &TerminalDevice_Channel_Assignment_AssignmentTypePath{ NodePath: ygot.NewNodePath( - []string{"state", "assignment-type"}, + []string{"config", "assignment-type"}, map[string]interface{}{}, n, ), } } -// AssignmentType returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "assignment-type". -func (n *TerminalDevice_Channel_AssignmentAny) AssignmentType() *TerminalDevice_Channel_Assignment_AssignmentTypeAny { - return &TerminalDevice_Channel_Assignment_AssignmentTypeAny{ +// AssignmentType returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "assignment-type". +func (n *TerminalDevice_Channel_AssignmentPathAny) AssignmentType() *TerminalDevice_Channel_Assignment_AssignmentTypePathAny { + return &TerminalDevice_Channel_Assignment_AssignmentTypePathAny{ NodePath: ygot.NewNodePath( - []string{"state", "assignment-type"}, + []string{"config", "assignment-type"}, map[string]interface{}{}, n, ), } } -// Description returns from TerminalDevice_Channel_Assignment the path struct for its child "description". -func (n *TerminalDevice_Channel_Assignment) Description() *TerminalDevice_Channel_Assignment_Description { - return &TerminalDevice_Channel_Assignment_Description{ +// Description returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "description". +func (n *TerminalDevice_Channel_AssignmentPath) Description() *TerminalDevice_Channel_Assignment_DescriptionPath { + return &TerminalDevice_Channel_Assignment_DescriptionPath{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Description returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "description". -func (n *TerminalDevice_Channel_AssignmentAny) Description() *TerminalDevice_Channel_Assignment_DescriptionAny { - return &TerminalDevice_Channel_Assignment_DescriptionAny{ +// Description returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "description". +func (n *TerminalDevice_Channel_AssignmentPathAny) Description() *TerminalDevice_Channel_Assignment_DescriptionPathAny { + return &TerminalDevice_Channel_Assignment_DescriptionPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "description"}, + []string{"config", "description"}, map[string]interface{}{}, n, ), } } -// Index returns from TerminalDevice_Channel_Assignment the path struct for its child "index". -func (n *TerminalDevice_Channel_Assignment) Index() *TerminalDevice_Channel_Assignment_Index { - return &TerminalDevice_Channel_Assignment_Index{ +// Index returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "index". +func (n *TerminalDevice_Channel_AssignmentPath) Index() *TerminalDevice_Channel_Assignment_IndexPath { + return &TerminalDevice_Channel_Assignment_IndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// Index returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "index". -func (n *TerminalDevice_Channel_AssignmentAny) Index() *TerminalDevice_Channel_Assignment_IndexAny { - return &TerminalDevice_Channel_Assignment_IndexAny{ +// Index returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "index". +func (n *TerminalDevice_Channel_AssignmentPathAny) Index() *TerminalDevice_Channel_Assignment_IndexPathAny { + return &TerminalDevice_Channel_Assignment_IndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "index"}, + []string{"config", "index"}, map[string]interface{}{}, n, ), } } -// LogicalChannel returns from TerminalDevice_Channel_Assignment the path struct for its child "logical-channel". -func (n *TerminalDevice_Channel_Assignment) LogicalChannel() *TerminalDevice_Channel_Assignment_LogicalChannel { - return &TerminalDevice_Channel_Assignment_LogicalChannel{ +// LogicalChannel returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "logical-channel". +func (n *TerminalDevice_Channel_AssignmentPath) LogicalChannel() *TerminalDevice_Channel_Assignment_LogicalChannelPath { + return &TerminalDevice_Channel_Assignment_LogicalChannelPath{ NodePath: ygot.NewNodePath( - []string{"state", "logical-channel"}, + []string{"config", "logical-channel"}, map[string]interface{}{}, n, ), } } -// LogicalChannel returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "logical-channel". -func (n *TerminalDevice_Channel_AssignmentAny) LogicalChannel() *TerminalDevice_Channel_Assignment_LogicalChannelAny { - return &TerminalDevice_Channel_Assignment_LogicalChannelAny{ +// LogicalChannel returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "logical-channel". +func (n *TerminalDevice_Channel_AssignmentPathAny) LogicalChannel() *TerminalDevice_Channel_Assignment_LogicalChannelPathAny { + return &TerminalDevice_Channel_Assignment_LogicalChannelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "logical-channel"}, + []string{"config", "logical-channel"}, map[string]interface{}{}, n, ), } } -// Mapping returns from TerminalDevice_Channel_Assignment the path struct for its child "mapping". -func (n *TerminalDevice_Channel_Assignment) Mapping() *TerminalDevice_Channel_Assignment_Mapping { - return &TerminalDevice_Channel_Assignment_Mapping{ +// Mapping returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "mapping". +func (n *TerminalDevice_Channel_AssignmentPath) Mapping() *TerminalDevice_Channel_Assignment_MappingPath { + return &TerminalDevice_Channel_Assignment_MappingPath{ NodePath: ygot.NewNodePath( - []string{"state", "mapping"}, + []string{"config", "mapping"}, map[string]interface{}{}, n, ), } } -// Mapping returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "mapping". -func (n *TerminalDevice_Channel_AssignmentAny) Mapping() *TerminalDevice_Channel_Assignment_MappingAny { - return &TerminalDevice_Channel_Assignment_MappingAny{ +// Mapping returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "mapping". +func (n *TerminalDevice_Channel_AssignmentPathAny) Mapping() *TerminalDevice_Channel_Assignment_MappingPathAny { + return &TerminalDevice_Channel_Assignment_MappingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "mapping"}, + []string{"config", "mapping"}, map[string]interface{}{}, n, ), } } -// OpticalChannel returns from TerminalDevice_Channel_Assignment the path struct for its child "optical-channel". -func (n *TerminalDevice_Channel_Assignment) OpticalChannel() *TerminalDevice_Channel_Assignment_OpticalChannel { - return &TerminalDevice_Channel_Assignment_OpticalChannel{ +// OpticalChannel returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "optical-channel". +func (n *TerminalDevice_Channel_AssignmentPath) OpticalChannel() *TerminalDevice_Channel_Assignment_OpticalChannelPath { + return &TerminalDevice_Channel_Assignment_OpticalChannelPath{ NodePath: ygot.NewNodePath( - []string{"state", "optical-channel"}, + []string{"config", "optical-channel"}, map[string]interface{}{}, n, ), } } -// OpticalChannel returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "optical-channel". -func (n *TerminalDevice_Channel_AssignmentAny) OpticalChannel() *TerminalDevice_Channel_Assignment_OpticalChannelAny { - return &TerminalDevice_Channel_Assignment_OpticalChannelAny{ +// OpticalChannel returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "optical-channel". +func (n *TerminalDevice_Channel_AssignmentPathAny) OpticalChannel() *TerminalDevice_Channel_Assignment_OpticalChannelPathAny { + return &TerminalDevice_Channel_Assignment_OpticalChannelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "optical-channel"}, + []string{"config", "optical-channel"}, map[string]interface{}{}, n, ), } } -// TributarySlotIndex returns from TerminalDevice_Channel_Assignment the path struct for its child "tributary-slot-index". -func (n *TerminalDevice_Channel_Assignment) TributarySlotIndex() *TerminalDevice_Channel_Assignment_TributarySlotIndex { - return &TerminalDevice_Channel_Assignment_TributarySlotIndex{ +// TributarySlotIndex returns from TerminalDevice_Channel_AssignmentPath the path struct for its child "tributary-slot-index". +func (n *TerminalDevice_Channel_AssignmentPath) TributarySlotIndex() *TerminalDevice_Channel_Assignment_TributarySlotIndexPath { + return &TerminalDevice_Channel_Assignment_TributarySlotIndexPath{ NodePath: ygot.NewNodePath( - []string{"state", "tributary-slot-index"}, + []string{"config", "tributary-slot-index"}, map[string]interface{}{}, n, ), } } -// TributarySlotIndex returns from TerminalDevice_Channel_AssignmentAny the path struct for its child "tributary-slot-index". -func (n *TerminalDevice_Channel_AssignmentAny) TributarySlotIndex() *TerminalDevice_Channel_Assignment_TributarySlotIndexAny { - return &TerminalDevice_Channel_Assignment_TributarySlotIndexAny{ +// TributarySlotIndex returns from TerminalDevice_Channel_AssignmentPathAny the path struct for its child "tributary-slot-index". +func (n *TerminalDevice_Channel_AssignmentPathAny) TributarySlotIndex() *TerminalDevice_Channel_Assignment_TributarySlotIndexPathAny { + return &TerminalDevice_Channel_Assignment_TributarySlotIndexPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tributary-slot-index"}, + []string{"config", "tributary-slot-index"}, map[string]interface{}{}, n, ), } } -// TerminalDevice_Channel_Ethernet represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet YANG schema element. -type TerminalDevice_Channel_Ethernet struct { +// TerminalDevice_Channel_EthernetPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet YANG schema element. +type TerminalDevice_Channel_EthernetPath struct { *ygot.NodePath } -// TerminalDevice_Channel_EthernetAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet YANG schema element. -type TerminalDevice_Channel_EthernetAny struct { +// TerminalDevice_Channel_EthernetPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet YANG schema element. +type TerminalDevice_Channel_EthernetPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_AlsDelay represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/als-delay YANG schema element. -type TerminalDevice_Channel_Ethernet_AlsDelay struct { +// TerminalDevice_Channel_Ethernet_AlsDelayPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/config/als-delay YANG schema element. +type TerminalDevice_Channel_Ethernet_AlsDelayPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_AlsDelayAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/als-delay YANG schema element. -type TerminalDevice_Channel_Ethernet_AlsDelayAny struct { +// TerminalDevice_Channel_Ethernet_AlsDelayPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/config/als-delay YANG schema element. +type TerminalDevice_Channel_Ethernet_AlsDelayPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_ClientAls represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/client-als YANG schema element. -type TerminalDevice_Channel_Ethernet_ClientAls struct { +// TerminalDevice_Channel_Ethernet_ClientAlsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/config/client-als YANG schema element. +type TerminalDevice_Channel_Ethernet_ClientAlsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_ClientAlsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/client-als YANG schema element. -type TerminalDevice_Channel_Ethernet_ClientAlsAny struct { +// TerminalDevice_Channel_Ethernet_ClientAlsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/config/client-als YANG schema element. +type TerminalDevice_Channel_Ethernet_ClientAlsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_In_8021QFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-8021q-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_In_8021QFrames struct { +// TerminalDevice_Channel_Ethernet_In_8021QFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-8021q-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_In_8021QFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_In_8021QFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-8021q-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_In_8021QFramesAny struct { +// TerminalDevice_Channel_Ethernet_In_8021QFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-8021q-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_In_8021QFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InBlockErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-block-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InBlockErrors struct { +// TerminalDevice_Channel_Ethernet_InBlockErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-block-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InBlockErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InBlockErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-block-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InBlockErrorsAny struct { +// TerminalDevice_Channel_Ethernet_InBlockErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-block-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InBlockErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InCrcErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-crc-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InCrcErrors struct { +// TerminalDevice_Channel_Ethernet_InCrcErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-crc-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InCrcErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InCrcErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-crc-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InCrcErrorsAny struct { +// TerminalDevice_Channel_Ethernet_InCrcErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-crc-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InCrcErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InFragmentFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-fragment-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InFragmentFrames struct { +// TerminalDevice_Channel_Ethernet_InFragmentFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-fragment-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InFragmentFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InFragmentFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-fragment-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InFragmentFramesAny struct { +// TerminalDevice_Channel_Ethernet_InFragmentFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-fragment-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InFragmentFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InJabberFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-jabber-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InJabberFrames struct { +// TerminalDevice_Channel_Ethernet_InJabberFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-jabber-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InJabberFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InJabberFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-jabber-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InJabberFramesAny struct { +// TerminalDevice_Channel_Ethernet_InJabberFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-jabber-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InJabberFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InMacControlFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-control-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InMacControlFrames struct { +// TerminalDevice_Channel_Ethernet_InMacControlFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-control-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InMacControlFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InMacControlFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-control-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InMacControlFramesAny struct { +// TerminalDevice_Channel_Ethernet_InMacControlFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-control-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InMacControlFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InMacPauseFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-pause-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InMacPauseFrames struct { +// TerminalDevice_Channel_Ethernet_InMacPauseFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-pause-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InMacPauseFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InMacPauseFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-pause-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InMacPauseFramesAny struct { +// TerminalDevice_Channel_Ethernet_InMacPauseFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-mac-pause-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InMacPauseFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InOversizeFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-oversize-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InOversizeFrames struct { +// TerminalDevice_Channel_Ethernet_InOversizeFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-oversize-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InOversizeFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InOversizeFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-oversize-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InOversizeFramesAny struct { +// TerminalDevice_Channel_Ethernet_InOversizeFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-oversize-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InOversizeFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsBipErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-bip-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsBipErrors struct { +// TerminalDevice_Channel_Ethernet_InPcsBipErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-bip-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsBipErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsBipErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-bip-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsBipErrorsAny struct { +// TerminalDevice_Channel_Ethernet_InPcsBipErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-bip-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsBipErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsErroredSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-errored-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsErroredSeconds struct { +// TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-errored-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsErroredSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-errored-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsErroredSecondsAny struct { +// TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-errored-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-severely-errored-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSeconds struct { +// TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-severely-errored-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-severely-errored-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsAny struct { +// TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-severely-errored-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsUnavailableSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-unavailable-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsUnavailableSeconds struct { +// TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-unavailable-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-unavailable-seconds YANG schema element. -type TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsAny struct { +// TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-pcs-unavailable-seconds YANG schema element. +type TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InUndersizeFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-undersize-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InUndersizeFrames struct { +// TerminalDevice_Channel_Ethernet_InUndersizeFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-undersize-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InUndersizeFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_InUndersizeFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-undersize-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_InUndersizeFramesAny struct { +// TerminalDevice_Channel_Ethernet_InUndersizeFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/in-undersize-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_InUndersizeFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Out_8021QFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-8021q-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_Out_8021QFrames struct { +// TerminalDevice_Channel_Ethernet_Out_8021QFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-8021q-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_Out_8021QFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Out_8021QFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-8021q-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_Out_8021QFramesAny struct { +// TerminalDevice_Channel_Ethernet_Out_8021QFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-8021q-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_Out_8021QFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutBlockErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-block-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutBlockErrors struct { +// TerminalDevice_Channel_Ethernet_OutBlockErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-block-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutBlockErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutBlockErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-block-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutBlockErrorsAny struct { +// TerminalDevice_Channel_Ethernet_OutBlockErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-block-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutBlockErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutCrcErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-crc-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutCrcErrors struct { +// TerminalDevice_Channel_Ethernet_OutCrcErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-crc-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutCrcErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutCrcErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-crc-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutCrcErrorsAny struct { +// TerminalDevice_Channel_Ethernet_OutCrcErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-crc-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutCrcErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutMacControlFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-control-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_OutMacControlFrames struct { +// TerminalDevice_Channel_Ethernet_OutMacControlFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-control-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_OutMacControlFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutMacControlFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-control-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_OutMacControlFramesAny struct { +// TerminalDevice_Channel_Ethernet_OutMacControlFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-control-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_OutMacControlFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutMacPauseFrames represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-pause-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_OutMacPauseFrames struct { +// TerminalDevice_Channel_Ethernet_OutMacPauseFramesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-pause-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_OutMacPauseFramesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutMacPauseFramesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-pause-frames YANG schema element. -type TerminalDevice_Channel_Ethernet_OutMacPauseFramesAny struct { +// TerminalDevice_Channel_Ethernet_OutMacPauseFramesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-mac-pause-frames YANG schema element. +type TerminalDevice_Channel_Ethernet_OutMacPauseFramesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutPcsBipErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-pcs-bip-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutPcsBipErrors struct { +// TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-pcs-bip-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_OutPcsBipErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-pcs-bip-errors YANG schema element. -type TerminalDevice_Channel_Ethernet_OutPcsBipErrorsAny struct { +// TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/state/out-pcs-bip-errors YANG schema element. +type TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPathAny struct { *ygot.NodePath } -// AlsDelay returns from TerminalDevice_Channel_Ethernet the path struct for its child "als-delay". -func (n *TerminalDevice_Channel_Ethernet) AlsDelay() *TerminalDevice_Channel_Ethernet_AlsDelay { - return &TerminalDevice_Channel_Ethernet_AlsDelay{ +// AlsDelay returns from TerminalDevice_Channel_EthernetPath the path struct for its child "als-delay". +func (n *TerminalDevice_Channel_EthernetPath) AlsDelay() *TerminalDevice_Channel_Ethernet_AlsDelayPath { + return &TerminalDevice_Channel_Ethernet_AlsDelayPath{ NodePath: ygot.NewNodePath( - []string{"state", "als-delay"}, + []string{"config", "als-delay"}, map[string]interface{}{}, n, ), } } -// AlsDelay returns from TerminalDevice_Channel_EthernetAny the path struct for its child "als-delay". -func (n *TerminalDevice_Channel_EthernetAny) AlsDelay() *TerminalDevice_Channel_Ethernet_AlsDelayAny { - return &TerminalDevice_Channel_Ethernet_AlsDelayAny{ +// AlsDelay returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "als-delay". +func (n *TerminalDevice_Channel_EthernetPathAny) AlsDelay() *TerminalDevice_Channel_Ethernet_AlsDelayPathAny { + return &TerminalDevice_Channel_Ethernet_AlsDelayPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "als-delay"}, + []string{"config", "als-delay"}, map[string]interface{}{}, n, ), } } -// ClientAls returns from TerminalDevice_Channel_Ethernet the path struct for its child "client-als". -func (n *TerminalDevice_Channel_Ethernet) ClientAls() *TerminalDevice_Channel_Ethernet_ClientAls { - return &TerminalDevice_Channel_Ethernet_ClientAls{ +// ClientAls returns from TerminalDevice_Channel_EthernetPath the path struct for its child "client-als". +func (n *TerminalDevice_Channel_EthernetPath) ClientAls() *TerminalDevice_Channel_Ethernet_ClientAlsPath { + return &TerminalDevice_Channel_Ethernet_ClientAlsPath{ NodePath: ygot.NewNodePath( - []string{"state", "client-als"}, + []string{"config", "client-als"}, map[string]interface{}{}, n, ), } } -// ClientAls returns from TerminalDevice_Channel_EthernetAny the path struct for its child "client-als". -func (n *TerminalDevice_Channel_EthernetAny) ClientAls() *TerminalDevice_Channel_Ethernet_ClientAlsAny { - return &TerminalDevice_Channel_Ethernet_ClientAlsAny{ +// ClientAls returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "client-als". +func (n *TerminalDevice_Channel_EthernetPathAny) ClientAls() *TerminalDevice_Channel_Ethernet_ClientAlsPathAny { + return &TerminalDevice_Channel_Ethernet_ClientAlsPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "client-als"}, + []string{"config", "client-als"}, map[string]interface{}{}, n, ), } } -// In_8021QFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-8021q-frames". -func (n *TerminalDevice_Channel_Ethernet) In_8021QFrames() *TerminalDevice_Channel_Ethernet_In_8021QFrames { - return &TerminalDevice_Channel_Ethernet_In_8021QFrames{ +// In_8021QFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-8021q-frames". +func (n *TerminalDevice_Channel_EthernetPath) In_8021QFrames() *TerminalDevice_Channel_Ethernet_In_8021QFramesPath { + return &TerminalDevice_Channel_Ethernet_In_8021QFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-8021q-frames"}, map[string]interface{}{}, @@ -171071,9 +171098,9 @@ func (n *TerminalDevice_Channel_Ethernet) In_8021QFrames() *TerminalDevice_Chann } } -// In_8021QFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-8021q-frames". -func (n *TerminalDevice_Channel_EthernetAny) In_8021QFrames() *TerminalDevice_Channel_Ethernet_In_8021QFramesAny { - return &TerminalDevice_Channel_Ethernet_In_8021QFramesAny{ +// In_8021QFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-8021q-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) In_8021QFrames() *TerminalDevice_Channel_Ethernet_In_8021QFramesPathAny { + return &TerminalDevice_Channel_Ethernet_In_8021QFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-8021q-frames"}, map[string]interface{}{}, @@ -171082,9 +171109,9 @@ func (n *TerminalDevice_Channel_EthernetAny) In_8021QFrames() *TerminalDevice_Ch } } -// InBlockErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-block-errors". -func (n *TerminalDevice_Channel_Ethernet) InBlockErrors() *TerminalDevice_Channel_Ethernet_InBlockErrors { - return &TerminalDevice_Channel_Ethernet_InBlockErrors{ +// InBlockErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-block-errors". +func (n *TerminalDevice_Channel_EthernetPath) InBlockErrors() *TerminalDevice_Channel_Ethernet_InBlockErrorsPath { + return &TerminalDevice_Channel_Ethernet_InBlockErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-block-errors"}, map[string]interface{}{}, @@ -171093,9 +171120,9 @@ func (n *TerminalDevice_Channel_Ethernet) InBlockErrors() *TerminalDevice_Channe } } -// InBlockErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-block-errors". -func (n *TerminalDevice_Channel_EthernetAny) InBlockErrors() *TerminalDevice_Channel_Ethernet_InBlockErrorsAny { - return &TerminalDevice_Channel_Ethernet_InBlockErrorsAny{ +// InBlockErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-block-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) InBlockErrors() *TerminalDevice_Channel_Ethernet_InBlockErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_InBlockErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-block-errors"}, map[string]interface{}{}, @@ -171104,9 +171131,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InBlockErrors() *TerminalDevice_Cha } } -// InCrcErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-crc-errors". -func (n *TerminalDevice_Channel_Ethernet) InCrcErrors() *TerminalDevice_Channel_Ethernet_InCrcErrors { - return &TerminalDevice_Channel_Ethernet_InCrcErrors{ +// InCrcErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-crc-errors". +func (n *TerminalDevice_Channel_EthernetPath) InCrcErrors() *TerminalDevice_Channel_Ethernet_InCrcErrorsPath { + return &TerminalDevice_Channel_Ethernet_InCrcErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-crc-errors"}, map[string]interface{}{}, @@ -171115,9 +171142,9 @@ func (n *TerminalDevice_Channel_Ethernet) InCrcErrors() *TerminalDevice_Channel_ } } -// InCrcErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-crc-errors". -func (n *TerminalDevice_Channel_EthernetAny) InCrcErrors() *TerminalDevice_Channel_Ethernet_InCrcErrorsAny { - return &TerminalDevice_Channel_Ethernet_InCrcErrorsAny{ +// InCrcErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-crc-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) InCrcErrors() *TerminalDevice_Channel_Ethernet_InCrcErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_InCrcErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-crc-errors"}, map[string]interface{}{}, @@ -171126,9 +171153,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InCrcErrors() *TerminalDevice_Chann } } -// InFragmentFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-fragment-frames". -func (n *TerminalDevice_Channel_Ethernet) InFragmentFrames() *TerminalDevice_Channel_Ethernet_InFragmentFrames { - return &TerminalDevice_Channel_Ethernet_InFragmentFrames{ +// InFragmentFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-fragment-frames". +func (n *TerminalDevice_Channel_EthernetPath) InFragmentFrames() *TerminalDevice_Channel_Ethernet_InFragmentFramesPath { + return &TerminalDevice_Channel_Ethernet_InFragmentFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-fragment-frames"}, map[string]interface{}{}, @@ -171137,9 +171164,9 @@ func (n *TerminalDevice_Channel_Ethernet) InFragmentFrames() *TerminalDevice_Cha } } -// InFragmentFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-fragment-frames". -func (n *TerminalDevice_Channel_EthernetAny) InFragmentFrames() *TerminalDevice_Channel_Ethernet_InFragmentFramesAny { - return &TerminalDevice_Channel_Ethernet_InFragmentFramesAny{ +// InFragmentFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-fragment-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InFragmentFrames() *TerminalDevice_Channel_Ethernet_InFragmentFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InFragmentFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-fragment-frames"}, map[string]interface{}{}, @@ -171148,9 +171175,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InFragmentFrames() *TerminalDevice_ } } -// InJabberFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-jabber-frames". -func (n *TerminalDevice_Channel_Ethernet) InJabberFrames() *TerminalDevice_Channel_Ethernet_InJabberFrames { - return &TerminalDevice_Channel_Ethernet_InJabberFrames{ +// InJabberFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-jabber-frames". +func (n *TerminalDevice_Channel_EthernetPath) InJabberFrames() *TerminalDevice_Channel_Ethernet_InJabberFramesPath { + return &TerminalDevice_Channel_Ethernet_InJabberFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-jabber-frames"}, map[string]interface{}{}, @@ -171159,9 +171186,9 @@ func (n *TerminalDevice_Channel_Ethernet) InJabberFrames() *TerminalDevice_Chann } } -// InJabberFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-jabber-frames". -func (n *TerminalDevice_Channel_EthernetAny) InJabberFrames() *TerminalDevice_Channel_Ethernet_InJabberFramesAny { - return &TerminalDevice_Channel_Ethernet_InJabberFramesAny{ +// InJabberFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-jabber-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InJabberFrames() *TerminalDevice_Channel_Ethernet_InJabberFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InJabberFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-jabber-frames"}, map[string]interface{}{}, @@ -171170,9 +171197,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InJabberFrames() *TerminalDevice_Ch } } -// InMacControlFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-mac-control-frames". -func (n *TerminalDevice_Channel_Ethernet) InMacControlFrames() *TerminalDevice_Channel_Ethernet_InMacControlFrames { - return &TerminalDevice_Channel_Ethernet_InMacControlFrames{ +// InMacControlFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-mac-control-frames". +func (n *TerminalDevice_Channel_EthernetPath) InMacControlFrames() *TerminalDevice_Channel_Ethernet_InMacControlFramesPath { + return &TerminalDevice_Channel_Ethernet_InMacControlFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-mac-control-frames"}, map[string]interface{}{}, @@ -171181,9 +171208,9 @@ func (n *TerminalDevice_Channel_Ethernet) InMacControlFrames() *TerminalDevice_C } } -// InMacControlFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-mac-control-frames". -func (n *TerminalDevice_Channel_EthernetAny) InMacControlFrames() *TerminalDevice_Channel_Ethernet_InMacControlFramesAny { - return &TerminalDevice_Channel_Ethernet_InMacControlFramesAny{ +// InMacControlFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-mac-control-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InMacControlFrames() *TerminalDevice_Channel_Ethernet_InMacControlFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InMacControlFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-mac-control-frames"}, map[string]interface{}{}, @@ -171192,9 +171219,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InMacControlFrames() *TerminalDevic } } -// InMacPauseFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-mac-pause-frames". -func (n *TerminalDevice_Channel_Ethernet) InMacPauseFrames() *TerminalDevice_Channel_Ethernet_InMacPauseFrames { - return &TerminalDevice_Channel_Ethernet_InMacPauseFrames{ +// InMacPauseFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-mac-pause-frames". +func (n *TerminalDevice_Channel_EthernetPath) InMacPauseFrames() *TerminalDevice_Channel_Ethernet_InMacPauseFramesPath { + return &TerminalDevice_Channel_Ethernet_InMacPauseFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-mac-pause-frames"}, map[string]interface{}{}, @@ -171203,9 +171230,9 @@ func (n *TerminalDevice_Channel_Ethernet) InMacPauseFrames() *TerminalDevice_Cha } } -// InMacPauseFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-mac-pause-frames". -func (n *TerminalDevice_Channel_EthernetAny) InMacPauseFrames() *TerminalDevice_Channel_Ethernet_InMacPauseFramesAny { - return &TerminalDevice_Channel_Ethernet_InMacPauseFramesAny{ +// InMacPauseFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-mac-pause-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InMacPauseFrames() *TerminalDevice_Channel_Ethernet_InMacPauseFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InMacPauseFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-mac-pause-frames"}, map[string]interface{}{}, @@ -171214,9 +171241,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InMacPauseFrames() *TerminalDevice_ } } -// InOversizeFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-oversize-frames". -func (n *TerminalDevice_Channel_Ethernet) InOversizeFrames() *TerminalDevice_Channel_Ethernet_InOversizeFrames { - return &TerminalDevice_Channel_Ethernet_InOversizeFrames{ +// InOversizeFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-oversize-frames". +func (n *TerminalDevice_Channel_EthernetPath) InOversizeFrames() *TerminalDevice_Channel_Ethernet_InOversizeFramesPath { + return &TerminalDevice_Channel_Ethernet_InOversizeFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-oversize-frames"}, map[string]interface{}{}, @@ -171225,9 +171252,9 @@ func (n *TerminalDevice_Channel_Ethernet) InOversizeFrames() *TerminalDevice_Cha } } -// InOversizeFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-oversize-frames". -func (n *TerminalDevice_Channel_EthernetAny) InOversizeFrames() *TerminalDevice_Channel_Ethernet_InOversizeFramesAny { - return &TerminalDevice_Channel_Ethernet_InOversizeFramesAny{ +// InOversizeFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-oversize-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InOversizeFrames() *TerminalDevice_Channel_Ethernet_InOversizeFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InOversizeFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-oversize-frames"}, map[string]interface{}{}, @@ -171236,9 +171263,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InOversizeFrames() *TerminalDevice_ } } -// InPcsBipErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-pcs-bip-errors". -func (n *TerminalDevice_Channel_Ethernet) InPcsBipErrors() *TerminalDevice_Channel_Ethernet_InPcsBipErrors { - return &TerminalDevice_Channel_Ethernet_InPcsBipErrors{ +// InPcsBipErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-pcs-bip-errors". +func (n *TerminalDevice_Channel_EthernetPath) InPcsBipErrors() *TerminalDevice_Channel_Ethernet_InPcsBipErrorsPath { + return &TerminalDevice_Channel_Ethernet_InPcsBipErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-bip-errors"}, map[string]interface{}{}, @@ -171247,9 +171274,9 @@ func (n *TerminalDevice_Channel_Ethernet) InPcsBipErrors() *TerminalDevice_Chann } } -// InPcsBipErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-pcs-bip-errors". -func (n *TerminalDevice_Channel_EthernetAny) InPcsBipErrors() *TerminalDevice_Channel_Ethernet_InPcsBipErrorsAny { - return &TerminalDevice_Channel_Ethernet_InPcsBipErrorsAny{ +// InPcsBipErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-pcs-bip-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) InPcsBipErrors() *TerminalDevice_Channel_Ethernet_InPcsBipErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_InPcsBipErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-bip-errors"}, map[string]interface{}{}, @@ -171258,9 +171285,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InPcsBipErrors() *TerminalDevice_Ch } } -// InPcsErroredSeconds returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-pcs-errored-seconds". -func (n *TerminalDevice_Channel_Ethernet) InPcsErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsErroredSeconds { - return &TerminalDevice_Channel_Ethernet_InPcsErroredSeconds{ +// InPcsErroredSeconds returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-pcs-errored-seconds". +func (n *TerminalDevice_Channel_EthernetPath) InPcsErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPath { + return &TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-errored-seconds"}, map[string]interface{}{}, @@ -171269,9 +171296,9 @@ func (n *TerminalDevice_Channel_Ethernet) InPcsErroredSeconds() *TerminalDevice_ } } -// InPcsErroredSeconds returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-pcs-errored-seconds". -func (n *TerminalDevice_Channel_EthernetAny) InPcsErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsErroredSecondsAny { - return &TerminalDevice_Channel_Ethernet_InPcsErroredSecondsAny{ +// InPcsErroredSeconds returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-pcs-errored-seconds". +func (n *TerminalDevice_Channel_EthernetPathAny) InPcsErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPathAny { + return &TerminalDevice_Channel_Ethernet_InPcsErroredSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-errored-seconds"}, map[string]interface{}{}, @@ -171280,9 +171307,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InPcsErroredSeconds() *TerminalDevi } } -// InPcsSeverelyErroredSeconds returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-pcs-severely-errored-seconds". -func (n *TerminalDevice_Channel_Ethernet) InPcsSeverelyErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSeconds { - return &TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSeconds{ +// InPcsSeverelyErroredSeconds returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-pcs-severely-errored-seconds". +func (n *TerminalDevice_Channel_EthernetPath) InPcsSeverelyErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPath { + return &TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-severely-errored-seconds"}, map[string]interface{}{}, @@ -171291,9 +171318,9 @@ func (n *TerminalDevice_Channel_Ethernet) InPcsSeverelyErroredSeconds() *Termina } } -// InPcsSeverelyErroredSeconds returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-pcs-severely-errored-seconds". -func (n *TerminalDevice_Channel_EthernetAny) InPcsSeverelyErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsAny { - return &TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsAny{ +// InPcsSeverelyErroredSeconds returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-pcs-severely-errored-seconds". +func (n *TerminalDevice_Channel_EthernetPathAny) InPcsSeverelyErroredSeconds() *TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPathAny { + return &TerminalDevice_Channel_Ethernet_InPcsSeverelyErroredSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-severely-errored-seconds"}, map[string]interface{}{}, @@ -171302,9 +171329,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InPcsSeverelyErroredSeconds() *Term } } -// InPcsUnavailableSeconds returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-pcs-unavailable-seconds". -func (n *TerminalDevice_Channel_Ethernet) InPcsUnavailableSeconds() *TerminalDevice_Channel_Ethernet_InPcsUnavailableSeconds { - return &TerminalDevice_Channel_Ethernet_InPcsUnavailableSeconds{ +// InPcsUnavailableSeconds returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-pcs-unavailable-seconds". +func (n *TerminalDevice_Channel_EthernetPath) InPcsUnavailableSeconds() *TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPath { + return &TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-unavailable-seconds"}, map[string]interface{}{}, @@ -171313,9 +171340,9 @@ func (n *TerminalDevice_Channel_Ethernet) InPcsUnavailableSeconds() *TerminalDev } } -// InPcsUnavailableSeconds returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-pcs-unavailable-seconds". -func (n *TerminalDevice_Channel_EthernetAny) InPcsUnavailableSeconds() *TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsAny { - return &TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsAny{ +// InPcsUnavailableSeconds returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-pcs-unavailable-seconds". +func (n *TerminalDevice_Channel_EthernetPathAny) InPcsUnavailableSeconds() *TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPathAny { + return &TerminalDevice_Channel_Ethernet_InPcsUnavailableSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-pcs-unavailable-seconds"}, map[string]interface{}{}, @@ -171324,9 +171351,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InPcsUnavailableSeconds() *Terminal } } -// InUndersizeFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "in-undersize-frames". -func (n *TerminalDevice_Channel_Ethernet) InUndersizeFrames() *TerminalDevice_Channel_Ethernet_InUndersizeFrames { - return &TerminalDevice_Channel_Ethernet_InUndersizeFrames{ +// InUndersizeFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "in-undersize-frames". +func (n *TerminalDevice_Channel_EthernetPath) InUndersizeFrames() *TerminalDevice_Channel_Ethernet_InUndersizeFramesPath { + return &TerminalDevice_Channel_Ethernet_InUndersizeFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "in-undersize-frames"}, map[string]interface{}{}, @@ -171335,9 +171362,9 @@ func (n *TerminalDevice_Channel_Ethernet) InUndersizeFrames() *TerminalDevice_Ch } } -// InUndersizeFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "in-undersize-frames". -func (n *TerminalDevice_Channel_EthernetAny) InUndersizeFrames() *TerminalDevice_Channel_Ethernet_InUndersizeFramesAny { - return &TerminalDevice_Channel_Ethernet_InUndersizeFramesAny{ +// InUndersizeFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "in-undersize-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) InUndersizeFrames() *TerminalDevice_Channel_Ethernet_InUndersizeFramesPathAny { + return &TerminalDevice_Channel_Ethernet_InUndersizeFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "in-undersize-frames"}, map[string]interface{}{}, @@ -171346,9 +171373,9 @@ func (n *TerminalDevice_Channel_EthernetAny) InUndersizeFrames() *TerminalDevice } } -// Lldp returns from TerminalDevice_Channel_Ethernet the path struct for its child "lldp". -func (n *TerminalDevice_Channel_Ethernet) Lldp() *TerminalDevice_Channel_Ethernet_Lldp { - return &TerminalDevice_Channel_Ethernet_Lldp{ +// Lldp returns from TerminalDevice_Channel_EthernetPath the path struct for its child "lldp". +func (n *TerminalDevice_Channel_EthernetPath) Lldp() *TerminalDevice_Channel_Ethernet_LldpPath { + return &TerminalDevice_Channel_Ethernet_LldpPath{ NodePath: ygot.NewNodePath( []string{"lldp"}, map[string]interface{}{}, @@ -171357,9 +171384,9 @@ func (n *TerminalDevice_Channel_Ethernet) Lldp() *TerminalDevice_Channel_Etherne } } -// Lldp returns from TerminalDevice_Channel_EthernetAny the path struct for its child "lldp". -func (n *TerminalDevice_Channel_EthernetAny) Lldp() *TerminalDevice_Channel_Ethernet_LldpAny { - return &TerminalDevice_Channel_Ethernet_LldpAny{ +// Lldp returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "lldp". +func (n *TerminalDevice_Channel_EthernetPathAny) Lldp() *TerminalDevice_Channel_Ethernet_LldpPathAny { + return &TerminalDevice_Channel_Ethernet_LldpPathAny{ NodePath: ygot.NewNodePath( []string{"lldp"}, map[string]interface{}{}, @@ -171368,9 +171395,9 @@ func (n *TerminalDevice_Channel_EthernetAny) Lldp() *TerminalDevice_Channel_Ethe } } -// Out_8021QFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-8021q-frames". -func (n *TerminalDevice_Channel_Ethernet) Out_8021QFrames() *TerminalDevice_Channel_Ethernet_Out_8021QFrames { - return &TerminalDevice_Channel_Ethernet_Out_8021QFrames{ +// Out_8021QFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-8021q-frames". +func (n *TerminalDevice_Channel_EthernetPath) Out_8021QFrames() *TerminalDevice_Channel_Ethernet_Out_8021QFramesPath { + return &TerminalDevice_Channel_Ethernet_Out_8021QFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "out-8021q-frames"}, map[string]interface{}{}, @@ -171379,9 +171406,9 @@ func (n *TerminalDevice_Channel_Ethernet) Out_8021QFrames() *TerminalDevice_Chan } } -// Out_8021QFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-8021q-frames". -func (n *TerminalDevice_Channel_EthernetAny) Out_8021QFrames() *TerminalDevice_Channel_Ethernet_Out_8021QFramesAny { - return &TerminalDevice_Channel_Ethernet_Out_8021QFramesAny{ +// Out_8021QFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-8021q-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) Out_8021QFrames() *TerminalDevice_Channel_Ethernet_Out_8021QFramesPathAny { + return &TerminalDevice_Channel_Ethernet_Out_8021QFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-8021q-frames"}, map[string]interface{}{}, @@ -171390,9 +171417,9 @@ func (n *TerminalDevice_Channel_EthernetAny) Out_8021QFrames() *TerminalDevice_C } } -// OutBlockErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-block-errors". -func (n *TerminalDevice_Channel_Ethernet) OutBlockErrors() *TerminalDevice_Channel_Ethernet_OutBlockErrors { - return &TerminalDevice_Channel_Ethernet_OutBlockErrors{ +// OutBlockErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-block-errors". +func (n *TerminalDevice_Channel_EthernetPath) OutBlockErrors() *TerminalDevice_Channel_Ethernet_OutBlockErrorsPath { + return &TerminalDevice_Channel_Ethernet_OutBlockErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-block-errors"}, map[string]interface{}{}, @@ -171401,9 +171428,9 @@ func (n *TerminalDevice_Channel_Ethernet) OutBlockErrors() *TerminalDevice_Chann } } -// OutBlockErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-block-errors". -func (n *TerminalDevice_Channel_EthernetAny) OutBlockErrors() *TerminalDevice_Channel_Ethernet_OutBlockErrorsAny { - return &TerminalDevice_Channel_Ethernet_OutBlockErrorsAny{ +// OutBlockErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-block-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) OutBlockErrors() *TerminalDevice_Channel_Ethernet_OutBlockErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_OutBlockErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-block-errors"}, map[string]interface{}{}, @@ -171412,9 +171439,9 @@ func (n *TerminalDevice_Channel_EthernetAny) OutBlockErrors() *TerminalDevice_Ch } } -// OutCrcErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-crc-errors". -func (n *TerminalDevice_Channel_Ethernet) OutCrcErrors() *TerminalDevice_Channel_Ethernet_OutCrcErrors { - return &TerminalDevice_Channel_Ethernet_OutCrcErrors{ +// OutCrcErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-crc-errors". +func (n *TerminalDevice_Channel_EthernetPath) OutCrcErrors() *TerminalDevice_Channel_Ethernet_OutCrcErrorsPath { + return &TerminalDevice_Channel_Ethernet_OutCrcErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-crc-errors"}, map[string]interface{}{}, @@ -171423,9 +171450,9 @@ func (n *TerminalDevice_Channel_Ethernet) OutCrcErrors() *TerminalDevice_Channel } } -// OutCrcErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-crc-errors". -func (n *TerminalDevice_Channel_EthernetAny) OutCrcErrors() *TerminalDevice_Channel_Ethernet_OutCrcErrorsAny { - return &TerminalDevice_Channel_Ethernet_OutCrcErrorsAny{ +// OutCrcErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-crc-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) OutCrcErrors() *TerminalDevice_Channel_Ethernet_OutCrcErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_OutCrcErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-crc-errors"}, map[string]interface{}{}, @@ -171434,9 +171461,9 @@ func (n *TerminalDevice_Channel_EthernetAny) OutCrcErrors() *TerminalDevice_Chan } } -// OutMacControlFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-mac-control-frames". -func (n *TerminalDevice_Channel_Ethernet) OutMacControlFrames() *TerminalDevice_Channel_Ethernet_OutMacControlFrames { - return &TerminalDevice_Channel_Ethernet_OutMacControlFrames{ +// OutMacControlFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-mac-control-frames". +func (n *TerminalDevice_Channel_EthernetPath) OutMacControlFrames() *TerminalDevice_Channel_Ethernet_OutMacControlFramesPath { + return &TerminalDevice_Channel_Ethernet_OutMacControlFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "out-mac-control-frames"}, map[string]interface{}{}, @@ -171445,9 +171472,9 @@ func (n *TerminalDevice_Channel_Ethernet) OutMacControlFrames() *TerminalDevice_ } } -// OutMacControlFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-mac-control-frames". -func (n *TerminalDevice_Channel_EthernetAny) OutMacControlFrames() *TerminalDevice_Channel_Ethernet_OutMacControlFramesAny { - return &TerminalDevice_Channel_Ethernet_OutMacControlFramesAny{ +// OutMacControlFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-mac-control-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) OutMacControlFrames() *TerminalDevice_Channel_Ethernet_OutMacControlFramesPathAny { + return &TerminalDevice_Channel_Ethernet_OutMacControlFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-mac-control-frames"}, map[string]interface{}{}, @@ -171456,9 +171483,9 @@ func (n *TerminalDevice_Channel_EthernetAny) OutMacControlFrames() *TerminalDevi } } -// OutMacPauseFrames returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-mac-pause-frames". -func (n *TerminalDevice_Channel_Ethernet) OutMacPauseFrames() *TerminalDevice_Channel_Ethernet_OutMacPauseFrames { - return &TerminalDevice_Channel_Ethernet_OutMacPauseFrames{ +// OutMacPauseFrames returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-mac-pause-frames". +func (n *TerminalDevice_Channel_EthernetPath) OutMacPauseFrames() *TerminalDevice_Channel_Ethernet_OutMacPauseFramesPath { + return &TerminalDevice_Channel_Ethernet_OutMacPauseFramesPath{ NodePath: ygot.NewNodePath( []string{"state", "out-mac-pause-frames"}, map[string]interface{}{}, @@ -171467,9 +171494,9 @@ func (n *TerminalDevice_Channel_Ethernet) OutMacPauseFrames() *TerminalDevice_Ch } } -// OutMacPauseFrames returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-mac-pause-frames". -func (n *TerminalDevice_Channel_EthernetAny) OutMacPauseFrames() *TerminalDevice_Channel_Ethernet_OutMacPauseFramesAny { - return &TerminalDevice_Channel_Ethernet_OutMacPauseFramesAny{ +// OutMacPauseFrames returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-mac-pause-frames". +func (n *TerminalDevice_Channel_EthernetPathAny) OutMacPauseFrames() *TerminalDevice_Channel_Ethernet_OutMacPauseFramesPathAny { + return &TerminalDevice_Channel_Ethernet_OutMacPauseFramesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-mac-pause-frames"}, map[string]interface{}{}, @@ -171478,9 +171505,9 @@ func (n *TerminalDevice_Channel_EthernetAny) OutMacPauseFrames() *TerminalDevice } } -// OutPcsBipErrors returns from TerminalDevice_Channel_Ethernet the path struct for its child "out-pcs-bip-errors". -func (n *TerminalDevice_Channel_Ethernet) OutPcsBipErrors() *TerminalDevice_Channel_Ethernet_OutPcsBipErrors { - return &TerminalDevice_Channel_Ethernet_OutPcsBipErrors{ +// OutPcsBipErrors returns from TerminalDevice_Channel_EthernetPath the path struct for its child "out-pcs-bip-errors". +func (n *TerminalDevice_Channel_EthernetPath) OutPcsBipErrors() *TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPath { + return &TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "out-pcs-bip-errors"}, map[string]interface{}{}, @@ -171489,9 +171516,9 @@ func (n *TerminalDevice_Channel_Ethernet) OutPcsBipErrors() *TerminalDevice_Chan } } -// OutPcsBipErrors returns from TerminalDevice_Channel_EthernetAny the path struct for its child "out-pcs-bip-errors". -func (n *TerminalDevice_Channel_EthernetAny) OutPcsBipErrors() *TerminalDevice_Channel_Ethernet_OutPcsBipErrorsAny { - return &TerminalDevice_Channel_Ethernet_OutPcsBipErrorsAny{ +// OutPcsBipErrors returns from TerminalDevice_Channel_EthernetPathAny the path struct for its child "out-pcs-bip-errors". +func (n *TerminalDevice_Channel_EthernetPathAny) OutPcsBipErrors() *TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPathAny { + return &TerminalDevice_Channel_Ethernet_OutPcsBipErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "out-pcs-bip-errors"}, map[string]interface{}{}, @@ -171500,39 +171527,39 @@ func (n *TerminalDevice_Channel_EthernetAny) OutPcsBipErrors() *TerminalDevice_C } } -// TerminalDevice_Channel_Ethernet_Lldp represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp struct { +// TerminalDevice_Channel_Ethernet_LldpPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp YANG schema element. +type TerminalDevice_Channel_Ethernet_LldpPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_LldpAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp YANG schema element. -type TerminalDevice_Channel_Ethernet_LldpAny struct { +// TerminalDevice_Channel_Ethernet_LldpPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp YANG schema element. +type TerminalDevice_Channel_Ethernet_LldpPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Enabled represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/enabled YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Enabled struct { +// TerminalDevice_Channel_Ethernet_Lldp_EnabledPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/config/enabled YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_EnabledPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_EnabledAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/enabled YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_EnabledAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_EnabledPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/config/enabled YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_EnabledPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Snooping represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/snooping YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Snooping struct { +// TerminalDevice_Channel_Ethernet_Lldp_SnoopingPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/config/snooping YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_SnoopingPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_SnoopingAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/snooping YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_SnoopingAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_SnoopingPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/config/snooping YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_SnoopingPathAny struct { *ygot.NodePath } -// Counters returns from TerminalDevice_Channel_Ethernet_Lldp the path struct for its child "counters". -func (n *TerminalDevice_Channel_Ethernet_Lldp) Counters() *TerminalDevice_Channel_Ethernet_Lldp_Counters { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters{ +// Counters returns from TerminalDevice_Channel_Ethernet_LldpPath the path struct for its child "counters". +func (n *TerminalDevice_Channel_Ethernet_LldpPath) Counters() *TerminalDevice_Channel_Ethernet_Lldp_CountersPath { + return &TerminalDevice_Channel_Ethernet_Lldp_CountersPath{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -171541,9 +171568,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp) Counters() *TerminalDevice_Channe } } -// Counters returns from TerminalDevice_Channel_Ethernet_LldpAny the path struct for its child "counters". -func (n *TerminalDevice_Channel_Ethernet_LldpAny) Counters() *TerminalDevice_Channel_Ethernet_Lldp_CountersAny { - return &TerminalDevice_Channel_Ethernet_Lldp_CountersAny{ +// Counters returns from TerminalDevice_Channel_Ethernet_LldpPathAny the path struct for its child "counters". +func (n *TerminalDevice_Channel_Ethernet_LldpPathAny) Counters() *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny{ NodePath: ygot.NewNodePath( []string{"state", "counters"}, map[string]interface{}{}, @@ -171552,31 +171579,31 @@ func (n *TerminalDevice_Channel_Ethernet_LldpAny) Counters() *TerminalDevice_Cha } } -// Enabled returns from TerminalDevice_Channel_Ethernet_Lldp the path struct for its child "enabled". -func (n *TerminalDevice_Channel_Ethernet_Lldp) Enabled() *TerminalDevice_Channel_Ethernet_Lldp_Enabled { - return &TerminalDevice_Channel_Ethernet_Lldp_Enabled{ +// Enabled returns from TerminalDevice_Channel_Ethernet_LldpPath the path struct for its child "enabled". +func (n *TerminalDevice_Channel_Ethernet_LldpPath) Enabled() *TerminalDevice_Channel_Ethernet_Lldp_EnabledPath { + return &TerminalDevice_Channel_Ethernet_Lldp_EnabledPath{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// Enabled returns from TerminalDevice_Channel_Ethernet_LldpAny the path struct for its child "enabled". -func (n *TerminalDevice_Channel_Ethernet_LldpAny) Enabled() *TerminalDevice_Channel_Ethernet_Lldp_EnabledAny { - return &TerminalDevice_Channel_Ethernet_Lldp_EnabledAny{ +// Enabled returns from TerminalDevice_Channel_Ethernet_LldpPathAny the path struct for its child "enabled". +func (n *TerminalDevice_Channel_Ethernet_LldpPathAny) Enabled() *TerminalDevice_Channel_Ethernet_Lldp_EnabledPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_EnabledPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "enabled"}, + []string{"config", "enabled"}, map[string]interface{}{}, n, ), } } -// NeighborAny returns from TerminalDevice_Channel_Ethernet_Lldp the path struct for its child "neighbor". -func (n *TerminalDevice_Channel_Ethernet_Lldp) NeighborAny() *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny { - return &TerminalDevice_Channel_Ethernet_Lldp_NeighborAny{ +// NeighborAny returns from TerminalDevice_Channel_Ethernet_LldpPath the path struct for its child "neighbor". +func (n *TerminalDevice_Channel_Ethernet_LldpPath) NeighborAny() *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": "*"}, @@ -171585,9 +171612,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp) NeighborAny() *TerminalDevice_Cha } } -// NeighborAny returns from TerminalDevice_Channel_Ethernet_LldpAny the path struct for its child "neighbor". -func (n *TerminalDevice_Channel_Ethernet_LldpAny) NeighborAny() *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny { - return &TerminalDevice_Channel_Ethernet_Lldp_NeighborAny{ +// NeighborAny returns from TerminalDevice_Channel_Ethernet_LldpPathAny the path struct for its child "neighbor". +func (n *TerminalDevice_Channel_Ethernet_LldpPathAny) NeighborAny() *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": "*"}, @@ -171596,9 +171623,9 @@ func (n *TerminalDevice_Channel_Ethernet_LldpAny) NeighborAny() *TerminalDevice_ } } -// Neighbor returns from TerminalDevice_Channel_Ethernet_Lldp the path struct for its child "neighbor". -func (n *TerminalDevice_Channel_Ethernet_Lldp) Neighbor(Id string) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor{ +// Neighbor returns from TerminalDevice_Channel_Ethernet_LldpPath the path struct for its child "neighbor". +func (n *TerminalDevice_Channel_Ethernet_LldpPath) Neighbor(Id string) *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath { + return &TerminalDevice_Channel_Ethernet_Lldp_NeighborPath{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": Id}, @@ -171607,9 +171634,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp) Neighbor(Id string) *TerminalDevi } } -// Neighbor returns from TerminalDevice_Channel_Ethernet_LldpAny the path struct for its child "neighbor". -func (n *TerminalDevice_Channel_Ethernet_LldpAny) Neighbor(Id string) *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny { - return &TerminalDevice_Channel_Ethernet_Lldp_NeighborAny{ +// Neighbor returns from TerminalDevice_Channel_Ethernet_LldpPathAny the path struct for its child "neighbor". +func (n *TerminalDevice_Channel_Ethernet_LldpPathAny) Neighbor(Id string) *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny{ NodePath: ygot.NewNodePath( []string{"neighbors", "neighbor"}, map[string]interface{}{"id": Id}, @@ -171618,121 +171645,121 @@ func (n *TerminalDevice_Channel_Ethernet_LldpAny) Neighbor(Id string) *TerminalD } } -// Snooping returns from TerminalDevice_Channel_Ethernet_Lldp the path struct for its child "snooping". -func (n *TerminalDevice_Channel_Ethernet_Lldp) Snooping() *TerminalDevice_Channel_Ethernet_Lldp_Snooping { - return &TerminalDevice_Channel_Ethernet_Lldp_Snooping{ +// Snooping returns from TerminalDevice_Channel_Ethernet_LldpPath the path struct for its child "snooping". +func (n *TerminalDevice_Channel_Ethernet_LldpPath) Snooping() *TerminalDevice_Channel_Ethernet_Lldp_SnoopingPath { + return &TerminalDevice_Channel_Ethernet_Lldp_SnoopingPath{ NodePath: ygot.NewNodePath( - []string{"state", "snooping"}, + []string{"config", "snooping"}, map[string]interface{}{}, n, ), } } -// Snooping returns from TerminalDevice_Channel_Ethernet_LldpAny the path struct for its child "snooping". -func (n *TerminalDevice_Channel_Ethernet_LldpAny) Snooping() *TerminalDevice_Channel_Ethernet_Lldp_SnoopingAny { - return &TerminalDevice_Channel_Ethernet_Lldp_SnoopingAny{ +// Snooping returns from TerminalDevice_Channel_Ethernet_LldpPathAny the path struct for its child "snooping". +func (n *TerminalDevice_Channel_Ethernet_LldpPathAny) Snooping() *TerminalDevice_Channel_Ethernet_Lldp_SnoopingPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_SnoopingPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "snooping"}, + []string{"config", "snooping"}, map[string]interface{}{}, n, ), } } -// TerminalDevice_Channel_Ethernet_Lldp_Counters represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters struct { +// TerminalDevice_Channel_Ethernet_Lldp_CountersPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_CountersPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_CountersAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_CountersAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscard represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-discard YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscard struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-discard YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-discard YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-discard YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorIn represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-in YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorIn struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-in YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-in YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-in YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOut represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-out YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOut struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-out YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-out YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-error-out YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameIn represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-in YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameIn struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-in YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-in YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-in YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOut represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-out YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOut struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-out YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-out YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/frame-out YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClear represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/last-clear YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClear struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/last-clear YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/last-clear YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/last-clear YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscard represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-discard YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscard struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-discard YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-discard YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-discard YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknown represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-unknown YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknown struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-unknown YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-unknown YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/state/counters/tlv-unknown YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPathAny struct { *ygot.NodePath } -// FrameDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "frame-discard". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscard { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscard{ +// FrameDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "frame-discard". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) FrameDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPath{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -171741,9 +171768,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameDiscard() *Terminal } } -// FrameDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "frame-discard". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardAny{ +// FrameDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "frame-discard". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) FrameDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"frame-discard"}, map[string]interface{}{}, @@ -171752,9 +171779,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameDiscard() *Termi } } -// FrameErrorIn returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "frame-error-in". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameErrorIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorIn { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorIn{ +// FrameErrorIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "frame-error-in". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) FrameErrorIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPath{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -171763,9 +171790,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameErrorIn() *Terminal } } -// FrameErrorIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "frame-error-in". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameErrorIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInAny{ +// FrameErrorIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "frame-error-in". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) FrameErrorIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-error-in"}, map[string]interface{}{}, @@ -171774,9 +171801,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameErrorIn() *Termi } } -// FrameErrorOut returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "frame-error-out". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameErrorOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOut { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOut{ +// FrameErrorOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "frame-error-out". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) FrameErrorOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPath{ NodePath: ygot.NewNodePath( []string{"frame-error-out"}, map[string]interface{}{}, @@ -171785,9 +171812,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameErrorOut() *Termina } } -// FrameErrorOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "frame-error-out". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameErrorOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutAny{ +// FrameErrorOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "frame-error-out". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) FrameErrorOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameErrorOutPathAny{ NodePath: ygot.NewNodePath( []string{"frame-error-out"}, map[string]interface{}{}, @@ -171796,9 +171823,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameErrorOut() *Term } } -// FrameIn returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "frame-in". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameIn { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameIn{ +// FrameIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "frame-in". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) FrameIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPath{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -171807,9 +171834,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameIn() *TerminalDevic } } -// FrameIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "frame-in". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInAny{ +// FrameIn returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "frame-in". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) FrameIn() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameInPathAny{ NodePath: ygot.NewNodePath( []string{"frame-in"}, map[string]interface{}{}, @@ -171818,9 +171845,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameIn() *TerminalDe } } -// FrameOut returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "frame-out". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOut { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOut{ +// FrameOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "frame-out". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) FrameOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPath{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -171829,9 +171856,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) FrameOut() *TerminalDevi } } -// FrameOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "frame-out". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutAny{ +// FrameOut returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "frame-out". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) FrameOut() *TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_FrameOutPathAny{ NodePath: ygot.NewNodePath( []string{"frame-out"}, map[string]interface{}{}, @@ -171840,9 +171867,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) FrameOut() *TerminalD } } -// LastClear returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "last-clear". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) LastClear() *TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClear { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClear{ +// LastClear returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "last-clear". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) LastClear() *TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPath{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -171851,9 +171878,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) LastClear() *TerminalDev } } -// LastClear returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "last-clear". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) LastClear() *TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearAny{ +// LastClear returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "last-clear". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) LastClear() *TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_LastClearPathAny{ NodePath: ygot.NewNodePath( []string{"last-clear"}, map[string]interface{}{}, @@ -171862,9 +171889,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) LastClear() *Terminal } } -// TlvDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "tlv-discard". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) TlvDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscard { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscard{ +// TlvDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "tlv-discard". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) TlvDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPath{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -171873,9 +171900,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) TlvDiscard() *TerminalDe } } -// TlvDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "tlv-discard". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) TlvDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardAny{ +// TlvDiscard returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "tlv-discard". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) TlvDiscard() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvDiscardPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-discard"}, map[string]interface{}{}, @@ -171884,9 +171911,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) TlvDiscard() *Termina } } -// TlvUnknown returns from TerminalDevice_Channel_Ethernet_Lldp_Counters the path struct for its child "tlv-unknown". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) TlvUnknown() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknown { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknown{ +// TlvUnknown returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPath the path struct for its child "tlv-unknown". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPath) TlvUnknown() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPath{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -171895,9 +171922,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Counters) TlvUnknown() *TerminalDe } } -// TlvUnknown returns from TerminalDevice_Channel_Ethernet_Lldp_CountersAny the path struct for its child "tlv-unknown". -func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) TlvUnknown() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownAny{ +// TlvUnknown returns from TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny the path struct for its child "tlv-unknown". +func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersPathAny) TlvUnknown() *TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Counters_TlvUnknownPathAny{ NodePath: ygot.NewNodePath( []string{"tlv-unknown"}, map[string]interface{}{}, @@ -171906,149 +171933,149 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_CountersAny) TlvUnknown() *Termina } } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor struct { +// TerminalDevice_Channel_Ethernet_Lldp_NeighborPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_NeighborPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_NeighborAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_NeighborAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Age represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/age YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Age struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/age YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/age YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/age YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisId represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisId struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdType represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdType struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/chassis-id-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Id represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Id struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdate represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/last-update YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdate struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/last-update YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdateAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/last-update YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdateAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/last-update YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddress represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddress struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressType represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressType struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/management-address-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescription represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-description YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescription struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-description YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-description YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-description YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortId represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortId struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdType represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdType struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id-type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/port-id-type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescription represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-description YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescription struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-description YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-description YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-description YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemName represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-name YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemName struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-name YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNameAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-name YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNameAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/system-name YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Ttl represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/ttl YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Ttl struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/ttl YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/ttl YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/state/ttl YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPathAny struct { *ygot.NodePath } -// Age returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "age". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Age() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Age { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Age{ +// Age returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "age". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) Age() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePath{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -172057,9 +172084,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Age() *TerminalDevice_Ch } } -// Age returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "age". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Age() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgeAny{ +// Age returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "age". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) Age() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_AgePathAny{ NodePath: ygot.NewNodePath( []string{"state", "age"}, map[string]interface{}{}, @@ -172068,9 +172095,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Age() *TerminalDevice } } -// ChassisId returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "chassis-id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ChassisId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisId { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisId{ +// ChassisId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "chassis-id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) ChassisId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPath{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id"}, map[string]interface{}{}, @@ -172079,9 +172106,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ChassisId() *TerminalDev } } -// ChassisId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "chassis-id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ChassisId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdAny{ +// ChassisId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "chassis-id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) ChassisId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id"}, map[string]interface{}{}, @@ -172090,9 +172117,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ChassisId() *Terminal } } -// ChassisIdType returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "chassis-id-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ChassisIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdType { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdType{ +// ChassisIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "chassis-id-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) ChassisIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePath{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id-type"}, map[string]interface{}{}, @@ -172101,9 +172128,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ChassisIdType() *Termina } } -// ChassisIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "chassis-id-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ChassisIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypeAny{ +// ChassisIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "chassis-id-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) ChassisIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ChassisIdTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "chassis-id-type"}, map[string]interface{}{}, @@ -172112,9 +172139,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ChassisIdType() *Term } } -// Id returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Id() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Id { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Id{ +// Id returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) Id() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPath{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -172123,9 +172150,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Id() *TerminalDevice_Cha } } -// Id returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Id() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdAny{ +// Id returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) Id() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_IdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "id"}, map[string]interface{}{}, @@ -172134,9 +172161,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Id() *TerminalDevice_ } } -// LastUpdate returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "last-update". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) LastUpdate() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdate { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdate{ +// LastUpdate returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "last-update". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) LastUpdate() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePath{ NodePath: ygot.NewNodePath( []string{"state", "last-update"}, map[string]interface{}{}, @@ -172145,9 +172172,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) LastUpdate() *TerminalDe } } -// LastUpdate returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "last-update". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) LastUpdate() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdateAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdateAny{ +// LastUpdate returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "last-update". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) LastUpdate() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_LastUpdatePathAny{ NodePath: ygot.NewNodePath( []string{"state", "last-update"}, map[string]interface{}{}, @@ -172156,9 +172183,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) LastUpdate() *Termina } } -// ManagementAddress returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "management-address". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ManagementAddress() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddress { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddress{ +// ManagementAddress returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "management-address". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) ManagementAddress() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPath{ NodePath: ygot.NewNodePath( []string{"state", "management-address"}, map[string]interface{}{}, @@ -172167,9 +172194,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ManagementAddress() *Ter } } -// ManagementAddress returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "management-address". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ManagementAddress() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressAny{ +// ManagementAddress returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "management-address". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) ManagementAddress() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressPathAny{ NodePath: ygot.NewNodePath( []string{"state", "management-address"}, map[string]interface{}{}, @@ -172178,9 +172205,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ManagementAddress() * } } -// ManagementAddressType returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "management-address-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ManagementAddressType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressType { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressType{ +// ManagementAddressType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "management-address-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) ManagementAddressType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePath{ NodePath: ygot.NewNodePath( []string{"state", "management-address-type"}, map[string]interface{}{}, @@ -172189,9 +172216,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) ManagementAddressType() } } -// ManagementAddressType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "management-address-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ManagementAddressType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypeAny{ +// ManagementAddressType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "management-address-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) ManagementAddressType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_ManagementAddressTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "management-address-type"}, map[string]interface{}{}, @@ -172200,9 +172227,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) ManagementAddressType } } -// PortDescription returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "port-description". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescription { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescription{ +// PortDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "port-description". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) PortDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "port-description"}, map[string]interface{}{}, @@ -172211,9 +172238,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortDescription() *Termi } } -// PortDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "port-description". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionAny{ +// PortDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "port-description". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) PortDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortDescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-description"}, map[string]interface{}{}, @@ -172222,9 +172249,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortDescription() *Te } } -// PortId returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "port-id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortId { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortId{ +// PortId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "port-id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) PortId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPath{ NodePath: ygot.NewNodePath( []string{"state", "port-id"}, map[string]interface{}{}, @@ -172233,9 +172260,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortId() *TerminalDevice } } -// PortId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "port-id". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdAny{ +// PortId returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "port-id". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) PortId() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-id"}, map[string]interface{}{}, @@ -172244,9 +172271,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortId() *TerminalDev } } -// PortIdType returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "port-id-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdType { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdType{ +// PortIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "port-id-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) PortIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePath{ NodePath: ygot.NewNodePath( []string{"state", "port-id-type"}, map[string]interface{}{}, @@ -172255,9 +172282,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) PortIdType() *TerminalDe } } -// PortIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "port-id-type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypeAny{ +// PortIdType returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "port-id-type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) PortIdType() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_PortIdTypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "port-id-type"}, map[string]interface{}{}, @@ -172266,9 +172293,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) PortIdType() *Termina } } -// SystemDescription returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "system-description". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) SystemDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescription { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescription{ +// SystemDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "system-description". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) SystemDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "system-description"}, map[string]interface{}{}, @@ -172277,9 +172304,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) SystemDescription() *Ter } } -// SystemDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "system-description". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) SystemDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionAny{ +// SystemDescription returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "system-description". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) SystemDescription() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemDescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-description"}, map[string]interface{}{}, @@ -172288,9 +172315,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) SystemDescription() * } } -// SystemName returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "system-name". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) SystemName() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemName { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemName{ +// SystemName returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "system-name". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) SystemName() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePath{ NodePath: ygot.NewNodePath( []string{"state", "system-name"}, map[string]interface{}{}, @@ -172299,9 +172326,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) SystemName() *TerminalDe } } -// SystemName returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "system-name". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) SystemName() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNameAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNameAny{ +// SystemName returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "system-name". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) SystemName() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_SystemNamePathAny{ NodePath: ygot.NewNodePath( []string{"state", "system-name"}, map[string]interface{}{}, @@ -172310,9 +172337,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) SystemName() *Termina } } -// TlvAny returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "tlv". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) TlvAny() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny{ +// TlvAny returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "tlv". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) TlvAny() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"custom-tlvs", "tlv"}, map[string]interface{}{"type": "*", "oui": "*", "oui-subtype": "*"}, @@ -172321,9 +172348,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) TlvAny() *TerminalDevice } } -// TlvAny returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "tlv". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) TlvAny() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny{ +// TlvAny returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "tlv". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) TlvAny() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny{ NodePath: ygot.NewNodePath( []string{"custom-tlvs", "tlv"}, map[string]interface{}{"type": "*", "oui": "*", "oui-subtype": "*"}, @@ -172332,27 +172359,27 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) TlvAny() *TerminalDev } } -// WithType sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny's key "type" to the specified value. -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) WithType(Type int32) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny { +// WithType sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny's key "type" to the specified value. +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) WithType(Type int32) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "type", Type) return n } -// WithOui sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny's key "oui" to the specified value. -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) WithOui(Oui string) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny { +// WithOui sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny's key "oui" to the specified value. +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) WithOui(Oui string) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "oui", Oui) return n } -// WithOuiSubtype sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny's key "oui-subtype" to the specified value. -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) WithOuiSubtype(OuiSubtype string) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny { +// WithOuiSubtype sets TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny's key "oui-subtype" to the specified value. +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) WithOuiSubtype(OuiSubtype string) *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny { ygot.ModifyKey(n.NodePath, "oui-subtype", OuiSubtype) return n } -// Ttl returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor the path struct for its child "ttl". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Ttl() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Ttl { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Ttl{ +// Ttl returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPath the path struct for its child "ttl". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPath) Ttl() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPath{ NodePath: ygot.NewNodePath( []string{"state", "ttl"}, map[string]interface{}{}, @@ -172361,9 +172388,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor) Ttl() *TerminalDevice_Ch } } -// Ttl returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborAny the path struct for its child "ttl". -func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Ttl() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlAny{ +// Ttl returns from TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny the path struct for its child "ttl". +func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborPathAny) Ttl() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TtlPathAny{ NodePath: ygot.NewNodePath( []string{"state", "ttl"}, map[string]interface{}{}, @@ -172372,59 +172399,59 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_NeighborAny) Ttl() *TerminalDevice } } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Oui represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Oui struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtype represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtype struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/oui-subtype YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Type represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Type struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypeAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/type YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Value represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Value struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValueAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. -type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValueAny struct { +// TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ethernet/lldp/neighbors/neighbor/custom-tlvs/tlv/state/value YANG schema element. +type TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePathAny struct { *ygot.NodePath } -// Oui returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv the path struct for its child "oui". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Oui() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Oui { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Oui{ +// Oui returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath the path struct for its child "oui". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath) Oui() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPath{ NodePath: ygot.NewNodePath( []string{"state", "oui"}, map[string]interface{}{}, @@ -172433,9 +172460,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Oui() *TerminalDevic } } -// Oui returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny the path struct for its child "oui". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Oui() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiAny{ +// Oui returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny the path struct for its child "oui". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) Oui() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiPathAny{ NodePath: ygot.NewNodePath( []string{"state", "oui"}, map[string]interface{}{}, @@ -172444,9 +172471,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Oui() *TerminalDe } } -// OuiSubtype returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv the path struct for its child "oui-subtype". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) OuiSubtype() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtype { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtype{ +// OuiSubtype returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath the path struct for its child "oui-subtype". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath) OuiSubtype() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePath{ NodePath: ygot.NewNodePath( []string{"state", "oui-subtype"}, map[string]interface{}{}, @@ -172455,9 +172482,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) OuiSubtype() *Termin } } -// OuiSubtype returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny the path struct for its child "oui-subtype". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) OuiSubtype() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypeAny{ +// OuiSubtype returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny the path struct for its child "oui-subtype". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) OuiSubtype() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_OuiSubtypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "oui-subtype"}, map[string]interface{}{}, @@ -172466,9 +172493,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) OuiSubtype() *Ter } } -// Type returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv the path struct for its child "type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Type() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Type { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Type{ +// Type returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath the path struct for its child "type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath) Type() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePath{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -172477,9 +172504,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Type() *TerminalDevi } } -// Type returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny the path struct for its child "type". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Type() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypeAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypeAny{ +// Type returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny the path struct for its child "type". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) Type() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_TypePathAny{ NodePath: ygot.NewNodePath( []string{"state", "type"}, map[string]interface{}{}, @@ -172488,9 +172515,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Type() *TerminalD } } -// Value returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv the path struct for its child "value". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Value() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Value { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_Value{ +// Value returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath the path struct for its child "value". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPath) Value() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePath { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePath{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -172499,9 +172526,9 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv) Value() *TerminalDev } } -// Value returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny the path struct for its child "value". -func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Value() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValueAny { - return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValueAny{ +// Value returns from TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny the path struct for its child "value". +func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvPathAny) Value() *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePathAny { + return &TerminalDevice_Channel_Ethernet_Lldp_Neighbor_Tlv_ValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "value"}, map[string]interface{}{}, @@ -172510,253 +172537,253 @@ func (n *TerminalDevice_Channel_Ethernet_Lldp_Neighbor_TlvAny) Value() *Terminal } } -// TerminalDevice_Channel_Ingress represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress YANG schema element. -type TerminalDevice_Channel_Ingress struct { +// TerminalDevice_Channel_IngressPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress YANG schema element. +type TerminalDevice_Channel_IngressPath struct { *ygot.NodePath } -// TerminalDevice_Channel_IngressAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress YANG schema element. -type TerminalDevice_Channel_IngressAny struct { +// TerminalDevice_Channel_IngressPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress YANG schema element. +type TerminalDevice_Channel_IngressPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ingress_PhysicalChannel represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/state/physical-channel YANG schema element. -type TerminalDevice_Channel_Ingress_PhysicalChannel struct { +// TerminalDevice_Channel_Ingress_PhysicalChannelPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/config/physical-channel YANG schema element. +type TerminalDevice_Channel_Ingress_PhysicalChannelPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ingress_PhysicalChannelAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/state/physical-channel YANG schema element. -type TerminalDevice_Channel_Ingress_PhysicalChannelAny struct { +// TerminalDevice_Channel_Ingress_PhysicalChannelPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/config/physical-channel YANG schema element. +type TerminalDevice_Channel_Ingress_PhysicalChannelPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Ingress_Transceiver represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/state/transceiver YANG schema element. -type TerminalDevice_Channel_Ingress_Transceiver struct { +// TerminalDevice_Channel_Ingress_TransceiverPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/config/transceiver YANG schema element. +type TerminalDevice_Channel_Ingress_TransceiverPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Ingress_TransceiverAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/state/transceiver YANG schema element. -type TerminalDevice_Channel_Ingress_TransceiverAny struct { +// TerminalDevice_Channel_Ingress_TransceiverPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/ingress/config/transceiver YANG schema element. +type TerminalDevice_Channel_Ingress_TransceiverPathAny struct { *ygot.NodePath } -// PhysicalChannel returns from TerminalDevice_Channel_Ingress the path struct for its child "physical-channel". -func (n *TerminalDevice_Channel_Ingress) PhysicalChannel() *TerminalDevice_Channel_Ingress_PhysicalChannel { - return &TerminalDevice_Channel_Ingress_PhysicalChannel{ +// PhysicalChannel returns from TerminalDevice_Channel_IngressPath the path struct for its child "physical-channel". +func (n *TerminalDevice_Channel_IngressPath) PhysicalChannel() *TerminalDevice_Channel_Ingress_PhysicalChannelPath { + return &TerminalDevice_Channel_Ingress_PhysicalChannelPath{ NodePath: ygot.NewNodePath( - []string{"state", "physical-channel"}, + []string{"config", "physical-channel"}, map[string]interface{}{}, n, ), } } -// PhysicalChannel returns from TerminalDevice_Channel_IngressAny the path struct for its child "physical-channel". -func (n *TerminalDevice_Channel_IngressAny) PhysicalChannel() *TerminalDevice_Channel_Ingress_PhysicalChannelAny { - return &TerminalDevice_Channel_Ingress_PhysicalChannelAny{ +// PhysicalChannel returns from TerminalDevice_Channel_IngressPathAny the path struct for its child "physical-channel". +func (n *TerminalDevice_Channel_IngressPathAny) PhysicalChannel() *TerminalDevice_Channel_Ingress_PhysicalChannelPathAny { + return &TerminalDevice_Channel_Ingress_PhysicalChannelPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "physical-channel"}, + []string{"config", "physical-channel"}, map[string]interface{}{}, n, ), } } -// Transceiver returns from TerminalDevice_Channel_Ingress the path struct for its child "transceiver". -func (n *TerminalDevice_Channel_Ingress) Transceiver() *TerminalDevice_Channel_Ingress_Transceiver { - return &TerminalDevice_Channel_Ingress_Transceiver{ +// Transceiver returns from TerminalDevice_Channel_IngressPath the path struct for its child "transceiver". +func (n *TerminalDevice_Channel_IngressPath) Transceiver() *TerminalDevice_Channel_Ingress_TransceiverPath { + return &TerminalDevice_Channel_Ingress_TransceiverPath{ NodePath: ygot.NewNodePath( - []string{"state", "transceiver"}, + []string{"config", "transceiver"}, map[string]interface{}{}, n, ), } } -// Transceiver returns from TerminalDevice_Channel_IngressAny the path struct for its child "transceiver". -func (n *TerminalDevice_Channel_IngressAny) Transceiver() *TerminalDevice_Channel_Ingress_TransceiverAny { - return &TerminalDevice_Channel_Ingress_TransceiverAny{ +// Transceiver returns from TerminalDevice_Channel_IngressPathAny the path struct for its child "transceiver". +func (n *TerminalDevice_Channel_IngressPathAny) Transceiver() *TerminalDevice_Channel_Ingress_TransceiverPathAny { + return &TerminalDevice_Channel_Ingress_TransceiverPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "transceiver"}, + []string{"config", "transceiver"}, map[string]interface{}{}, n, ), } } -// TerminalDevice_Channel_Otn represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn YANG schema element. -type TerminalDevice_Channel_Otn struct { +// TerminalDevice_Channel_OtnPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn YANG schema element. +type TerminalDevice_Channel_OtnPath struct { *ygot.NodePath } -// TerminalDevice_Channel_OtnAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn YANG schema element. -type TerminalDevice_Channel_OtnAny struct { +// TerminalDevice_Channel_OtnPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn YANG schema element. +type TerminalDevice_Channel_OtnPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_BackgroundBlockErrors represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/background-block-errors YANG schema element. -type TerminalDevice_Channel_Otn_BackgroundBlockErrors struct { +// TerminalDevice_Channel_Otn_BackgroundBlockErrorsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/background-block-errors YANG schema element. +type TerminalDevice_Channel_Otn_BackgroundBlockErrorsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_BackgroundBlockErrorsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/background-block-errors YANG schema element. -type TerminalDevice_Channel_Otn_BackgroundBlockErrorsAny struct { +// TerminalDevice_Channel_Otn_BackgroundBlockErrorsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/background-block-errors YANG schema element. +type TerminalDevice_Channel_Otn_BackgroundBlockErrorsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_CodeViolations represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/code-violations YANG schema element. -type TerminalDevice_Channel_Otn_CodeViolations struct { +// TerminalDevice_Channel_Otn_CodeViolationsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/code-violations YANG schema element. +type TerminalDevice_Channel_Otn_CodeViolationsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_CodeViolationsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/code-violations YANG schema element. -type TerminalDevice_Channel_Otn_CodeViolationsAny struct { +// TerminalDevice_Channel_Otn_CodeViolationsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/code-violations YANG schema element. +type TerminalDevice_Channel_Otn_CodeViolationsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_ErroredBlocks represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-blocks YANG schema element. -type TerminalDevice_Channel_Otn_ErroredBlocks struct { +// TerminalDevice_Channel_Otn_ErroredBlocksPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-blocks YANG schema element. +type TerminalDevice_Channel_Otn_ErroredBlocksPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_ErroredBlocksAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-blocks YANG schema element. -type TerminalDevice_Channel_Otn_ErroredBlocksAny struct { +// TerminalDevice_Channel_Otn_ErroredBlocksPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-blocks YANG schema element. +type TerminalDevice_Channel_Otn_ErroredBlocksPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_ErroredSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-seconds YANG schema element. -type TerminalDevice_Channel_Otn_ErroredSeconds struct { +// TerminalDevice_Channel_Otn_ErroredSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-seconds YANG schema element. +type TerminalDevice_Channel_Otn_ErroredSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_ErroredSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-seconds YANG schema element. -type TerminalDevice_Channel_Otn_ErroredSecondsAny struct { +// TerminalDevice_Channel_Otn_ErroredSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/errored-seconds YANG schema element. +type TerminalDevice_Channel_Otn_ErroredSecondsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecCorrectedBits represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bits YANG schema element. -type TerminalDevice_Channel_Otn_FecCorrectedBits struct { +// TerminalDevice_Channel_Otn_FecCorrectedBitsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bits YANG schema element. +type TerminalDevice_Channel_Otn_FecCorrectedBitsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecCorrectedBitsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bits YANG schema element. -type TerminalDevice_Channel_Otn_FecCorrectedBitsAny struct { +// TerminalDevice_Channel_Otn_FecCorrectedBitsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bits YANG schema element. +type TerminalDevice_Channel_Otn_FecCorrectedBitsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecCorrectedBytes represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bytes YANG schema element. -type TerminalDevice_Channel_Otn_FecCorrectedBytes struct { +// TerminalDevice_Channel_Otn_FecCorrectedBytesPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bytes YANG schema element. +type TerminalDevice_Channel_Otn_FecCorrectedBytesPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecCorrectedBytesAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bytes YANG schema element. -type TerminalDevice_Channel_Otn_FecCorrectedBytesAny struct { +// TerminalDevice_Channel_Otn_FecCorrectedBytesPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-corrected-bytes YANG schema element. +type TerminalDevice_Channel_Otn_FecCorrectedBytesPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecUncorrectableBlocks represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-blocks YANG schema element. -type TerminalDevice_Channel_Otn_FecUncorrectableBlocks struct { +// TerminalDevice_Channel_Otn_FecUncorrectableBlocksPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-blocks YANG schema element. +type TerminalDevice_Channel_Otn_FecUncorrectableBlocksPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecUncorrectableBlocksAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-blocks YANG schema element. -type TerminalDevice_Channel_Otn_FecUncorrectableBlocksAny struct { +// TerminalDevice_Channel_Otn_FecUncorrectableBlocksPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-blocks YANG schema element. +type TerminalDevice_Channel_Otn_FecUncorrectableBlocksPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecUncorrectableWords represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-words YANG schema element. -type TerminalDevice_Channel_Otn_FecUncorrectableWords struct { +// TerminalDevice_Channel_Otn_FecUncorrectableWordsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-words YANG schema element. +type TerminalDevice_Channel_Otn_FecUncorrectableWordsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_FecUncorrectableWordsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-words YANG schema element. -type TerminalDevice_Channel_Otn_FecUncorrectableWordsAny struct { +// TerminalDevice_Channel_Otn_FecUncorrectableWordsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/fec-uncorrectable-words YANG schema element. +type TerminalDevice_Channel_Otn_FecUncorrectableWordsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_RdiMsg represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/rdi-msg YANG schema element. -type TerminalDevice_Channel_Otn_RdiMsg struct { +// TerminalDevice_Channel_Otn_RdiMsgPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/rdi-msg YANG schema element. +type TerminalDevice_Channel_Otn_RdiMsgPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_RdiMsgAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/rdi-msg YANG schema element. -type TerminalDevice_Channel_Otn_RdiMsgAny struct { +// TerminalDevice_Channel_Otn_RdiMsgPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/rdi-msg YANG schema element. +type TerminalDevice_Channel_Otn_RdiMsgPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_SeverelyErroredSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/severely-errored-seconds YANG schema element. -type TerminalDevice_Channel_Otn_SeverelyErroredSeconds struct { +// TerminalDevice_Channel_Otn_SeverelyErroredSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/severely-errored-seconds YANG schema element. +type TerminalDevice_Channel_Otn_SeverelyErroredSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_SeverelyErroredSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/severely-errored-seconds YANG schema element. -type TerminalDevice_Channel_Otn_SeverelyErroredSecondsAny struct { +// TerminalDevice_Channel_Otn_SeverelyErroredSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/severely-errored-seconds YANG schema element. +type TerminalDevice_Channel_Otn_SeverelyErroredSecondsPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TributarySlotGranularity represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tributary-slot-granularity YANG schema element. -type TerminalDevice_Channel_Otn_TributarySlotGranularity struct { +// TerminalDevice_Channel_Otn_TributarySlotGranularityPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tributary-slot-granularity YANG schema element. +type TerminalDevice_Channel_Otn_TributarySlotGranularityPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TributarySlotGranularityAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tributary-slot-granularity YANG schema element. -type TerminalDevice_Channel_Otn_TributarySlotGranularityAny struct { +// TerminalDevice_Channel_Otn_TributarySlotGranularityPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tributary-slot-granularity YANG schema element. +type TerminalDevice_Channel_Otn_TributarySlotGranularityPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgAuto represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-auto YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgAuto struct { +// TerminalDevice_Channel_Otn_TtiMsgAutoPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-auto YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgAutoPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgAutoAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-auto YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgAutoAny struct { +// TerminalDevice_Channel_Otn_TtiMsgAutoPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-auto YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgAutoPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgExpected represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-expected YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgExpected struct { +// TerminalDevice_Channel_Otn_TtiMsgExpectedPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-expected YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgExpectedPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgExpectedAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-expected YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgExpectedAny struct { +// TerminalDevice_Channel_Otn_TtiMsgExpectedPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-expected YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgExpectedPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgRecv represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-recv YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgRecv struct { +// TerminalDevice_Channel_Otn_TtiMsgRecvPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-recv YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgRecvPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgRecvAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-recv YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgRecvAny struct { +// TerminalDevice_Channel_Otn_TtiMsgRecvPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-recv YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgRecvPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgTransmit represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-transmit YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgTransmit struct { +// TerminalDevice_Channel_Otn_TtiMsgTransmitPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-transmit YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgTransmitPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_TtiMsgTransmitAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/tti-msg-transmit YANG schema element. -type TerminalDevice_Channel_Otn_TtiMsgTransmitAny struct { +// TerminalDevice_Channel_Otn_TtiMsgTransmitPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/config/tti-msg-transmit YANG schema element. +type TerminalDevice_Channel_Otn_TtiMsgTransmitPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_UnavailableSeconds represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/unavailable-seconds YANG schema element. -type TerminalDevice_Channel_Otn_UnavailableSeconds struct { +// TerminalDevice_Channel_Otn_UnavailableSecondsPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/unavailable-seconds YANG schema element. +type TerminalDevice_Channel_Otn_UnavailableSecondsPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_UnavailableSecondsAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/unavailable-seconds YANG schema element. -type TerminalDevice_Channel_Otn_UnavailableSecondsAny struct { +// TerminalDevice_Channel_Otn_UnavailableSecondsPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/unavailable-seconds YANG schema element. +type TerminalDevice_Channel_Otn_UnavailableSecondsPathAny struct { *ygot.NodePath } -// BackgroundBlockErrors returns from TerminalDevice_Channel_Otn the path struct for its child "background-block-errors". -func (n *TerminalDevice_Channel_Otn) BackgroundBlockErrors() *TerminalDevice_Channel_Otn_BackgroundBlockErrors { - return &TerminalDevice_Channel_Otn_BackgroundBlockErrors{ +// BackgroundBlockErrors returns from TerminalDevice_Channel_OtnPath the path struct for its child "background-block-errors". +func (n *TerminalDevice_Channel_OtnPath) BackgroundBlockErrors() *TerminalDevice_Channel_Otn_BackgroundBlockErrorsPath { + return &TerminalDevice_Channel_Otn_BackgroundBlockErrorsPath{ NodePath: ygot.NewNodePath( []string{"state", "background-block-errors"}, map[string]interface{}{}, @@ -172765,9 +172792,9 @@ func (n *TerminalDevice_Channel_Otn) BackgroundBlockErrors() *TerminalDevice_Cha } } -// BackgroundBlockErrors returns from TerminalDevice_Channel_OtnAny the path struct for its child "background-block-errors". -func (n *TerminalDevice_Channel_OtnAny) BackgroundBlockErrors() *TerminalDevice_Channel_Otn_BackgroundBlockErrorsAny { - return &TerminalDevice_Channel_Otn_BackgroundBlockErrorsAny{ +// BackgroundBlockErrors returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "background-block-errors". +func (n *TerminalDevice_Channel_OtnPathAny) BackgroundBlockErrors() *TerminalDevice_Channel_Otn_BackgroundBlockErrorsPathAny { + return &TerminalDevice_Channel_Otn_BackgroundBlockErrorsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "background-block-errors"}, map[string]interface{}{}, @@ -172776,9 +172803,9 @@ func (n *TerminalDevice_Channel_OtnAny) BackgroundBlockErrors() *TerminalDevice_ } } -// CodeViolations returns from TerminalDevice_Channel_Otn the path struct for its child "code-violations". -func (n *TerminalDevice_Channel_Otn) CodeViolations() *TerminalDevice_Channel_Otn_CodeViolations { - return &TerminalDevice_Channel_Otn_CodeViolations{ +// CodeViolations returns from TerminalDevice_Channel_OtnPath the path struct for its child "code-violations". +func (n *TerminalDevice_Channel_OtnPath) CodeViolations() *TerminalDevice_Channel_Otn_CodeViolationsPath { + return &TerminalDevice_Channel_Otn_CodeViolationsPath{ NodePath: ygot.NewNodePath( []string{"state", "code-violations"}, map[string]interface{}{}, @@ -172787,9 +172814,9 @@ func (n *TerminalDevice_Channel_Otn) CodeViolations() *TerminalDevice_Channel_Ot } } -// CodeViolations returns from TerminalDevice_Channel_OtnAny the path struct for its child "code-violations". -func (n *TerminalDevice_Channel_OtnAny) CodeViolations() *TerminalDevice_Channel_Otn_CodeViolationsAny { - return &TerminalDevice_Channel_Otn_CodeViolationsAny{ +// CodeViolations returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "code-violations". +func (n *TerminalDevice_Channel_OtnPathAny) CodeViolations() *TerminalDevice_Channel_Otn_CodeViolationsPathAny { + return &TerminalDevice_Channel_Otn_CodeViolationsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "code-violations"}, map[string]interface{}{}, @@ -172798,9 +172825,9 @@ func (n *TerminalDevice_Channel_OtnAny) CodeViolations() *TerminalDevice_Channel } } -// ErroredBlocks returns from TerminalDevice_Channel_Otn the path struct for its child "errored-blocks". -func (n *TerminalDevice_Channel_Otn) ErroredBlocks() *TerminalDevice_Channel_Otn_ErroredBlocks { - return &TerminalDevice_Channel_Otn_ErroredBlocks{ +// ErroredBlocks returns from TerminalDevice_Channel_OtnPath the path struct for its child "errored-blocks". +func (n *TerminalDevice_Channel_OtnPath) ErroredBlocks() *TerminalDevice_Channel_Otn_ErroredBlocksPath { + return &TerminalDevice_Channel_Otn_ErroredBlocksPath{ NodePath: ygot.NewNodePath( []string{"state", "errored-blocks"}, map[string]interface{}{}, @@ -172809,9 +172836,9 @@ func (n *TerminalDevice_Channel_Otn) ErroredBlocks() *TerminalDevice_Channel_Otn } } -// ErroredBlocks returns from TerminalDevice_Channel_OtnAny the path struct for its child "errored-blocks". -func (n *TerminalDevice_Channel_OtnAny) ErroredBlocks() *TerminalDevice_Channel_Otn_ErroredBlocksAny { - return &TerminalDevice_Channel_Otn_ErroredBlocksAny{ +// ErroredBlocks returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "errored-blocks". +func (n *TerminalDevice_Channel_OtnPathAny) ErroredBlocks() *TerminalDevice_Channel_Otn_ErroredBlocksPathAny { + return &TerminalDevice_Channel_Otn_ErroredBlocksPathAny{ NodePath: ygot.NewNodePath( []string{"state", "errored-blocks"}, map[string]interface{}{}, @@ -172820,9 +172847,9 @@ func (n *TerminalDevice_Channel_OtnAny) ErroredBlocks() *TerminalDevice_Channel_ } } -// ErroredSeconds returns from TerminalDevice_Channel_Otn the path struct for its child "errored-seconds". -func (n *TerminalDevice_Channel_Otn) ErroredSeconds() *TerminalDevice_Channel_Otn_ErroredSeconds { - return &TerminalDevice_Channel_Otn_ErroredSeconds{ +// ErroredSeconds returns from TerminalDevice_Channel_OtnPath the path struct for its child "errored-seconds". +func (n *TerminalDevice_Channel_OtnPath) ErroredSeconds() *TerminalDevice_Channel_Otn_ErroredSecondsPath { + return &TerminalDevice_Channel_Otn_ErroredSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "errored-seconds"}, map[string]interface{}{}, @@ -172831,9 +172858,9 @@ func (n *TerminalDevice_Channel_Otn) ErroredSeconds() *TerminalDevice_Channel_Ot } } -// ErroredSeconds returns from TerminalDevice_Channel_OtnAny the path struct for its child "errored-seconds". -func (n *TerminalDevice_Channel_OtnAny) ErroredSeconds() *TerminalDevice_Channel_Otn_ErroredSecondsAny { - return &TerminalDevice_Channel_Otn_ErroredSecondsAny{ +// ErroredSeconds returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "errored-seconds". +func (n *TerminalDevice_Channel_OtnPathAny) ErroredSeconds() *TerminalDevice_Channel_Otn_ErroredSecondsPathAny { + return &TerminalDevice_Channel_Otn_ErroredSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "errored-seconds"}, map[string]interface{}{}, @@ -172842,9 +172869,9 @@ func (n *TerminalDevice_Channel_OtnAny) ErroredSeconds() *TerminalDevice_Channel } } -// Esnr returns from TerminalDevice_Channel_Otn the path struct for its child "esnr". -func (n *TerminalDevice_Channel_Otn) Esnr() *TerminalDevice_Channel_Otn_Esnr { - return &TerminalDevice_Channel_Otn_Esnr{ +// Esnr returns from TerminalDevice_Channel_OtnPath the path struct for its child "esnr". +func (n *TerminalDevice_Channel_OtnPath) Esnr() *TerminalDevice_Channel_Otn_EsnrPath { + return &TerminalDevice_Channel_Otn_EsnrPath{ NodePath: ygot.NewNodePath( []string{"state", "esnr"}, map[string]interface{}{}, @@ -172853,9 +172880,9 @@ func (n *TerminalDevice_Channel_Otn) Esnr() *TerminalDevice_Channel_Otn_Esnr { } } -// Esnr returns from TerminalDevice_Channel_OtnAny the path struct for its child "esnr". -func (n *TerminalDevice_Channel_OtnAny) Esnr() *TerminalDevice_Channel_Otn_EsnrAny { - return &TerminalDevice_Channel_Otn_EsnrAny{ +// Esnr returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "esnr". +func (n *TerminalDevice_Channel_OtnPathAny) Esnr() *TerminalDevice_Channel_Otn_EsnrPathAny { + return &TerminalDevice_Channel_Otn_EsnrPathAny{ NodePath: ygot.NewNodePath( []string{"state", "esnr"}, map[string]interface{}{}, @@ -172864,9 +172891,9 @@ func (n *TerminalDevice_Channel_OtnAny) Esnr() *TerminalDevice_Channel_Otn_EsnrA } } -// FecCorrectedBits returns from TerminalDevice_Channel_Otn the path struct for its child "fec-corrected-bits". -func (n *TerminalDevice_Channel_Otn) FecCorrectedBits() *TerminalDevice_Channel_Otn_FecCorrectedBits { - return &TerminalDevice_Channel_Otn_FecCorrectedBits{ +// FecCorrectedBits returns from TerminalDevice_Channel_OtnPath the path struct for its child "fec-corrected-bits". +func (n *TerminalDevice_Channel_OtnPath) FecCorrectedBits() *TerminalDevice_Channel_Otn_FecCorrectedBitsPath { + return &TerminalDevice_Channel_Otn_FecCorrectedBitsPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bits"}, map[string]interface{}{}, @@ -172875,9 +172902,9 @@ func (n *TerminalDevice_Channel_Otn) FecCorrectedBits() *TerminalDevice_Channel_ } } -// FecCorrectedBits returns from TerminalDevice_Channel_OtnAny the path struct for its child "fec-corrected-bits". -func (n *TerminalDevice_Channel_OtnAny) FecCorrectedBits() *TerminalDevice_Channel_Otn_FecCorrectedBitsAny { - return &TerminalDevice_Channel_Otn_FecCorrectedBitsAny{ +// FecCorrectedBits returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "fec-corrected-bits". +func (n *TerminalDevice_Channel_OtnPathAny) FecCorrectedBits() *TerminalDevice_Channel_Otn_FecCorrectedBitsPathAny { + return &TerminalDevice_Channel_Otn_FecCorrectedBitsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bits"}, map[string]interface{}{}, @@ -172886,9 +172913,9 @@ func (n *TerminalDevice_Channel_OtnAny) FecCorrectedBits() *TerminalDevice_Chann } } -// FecCorrectedBytes returns from TerminalDevice_Channel_Otn the path struct for its child "fec-corrected-bytes". -func (n *TerminalDevice_Channel_Otn) FecCorrectedBytes() *TerminalDevice_Channel_Otn_FecCorrectedBytes { - return &TerminalDevice_Channel_Otn_FecCorrectedBytes{ +// FecCorrectedBytes returns from TerminalDevice_Channel_OtnPath the path struct for its child "fec-corrected-bytes". +func (n *TerminalDevice_Channel_OtnPath) FecCorrectedBytes() *TerminalDevice_Channel_Otn_FecCorrectedBytesPath { + return &TerminalDevice_Channel_Otn_FecCorrectedBytesPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bytes"}, map[string]interface{}{}, @@ -172897,9 +172924,9 @@ func (n *TerminalDevice_Channel_Otn) FecCorrectedBytes() *TerminalDevice_Channel } } -// FecCorrectedBytes returns from TerminalDevice_Channel_OtnAny the path struct for its child "fec-corrected-bytes". -func (n *TerminalDevice_Channel_OtnAny) FecCorrectedBytes() *TerminalDevice_Channel_Otn_FecCorrectedBytesAny { - return &TerminalDevice_Channel_Otn_FecCorrectedBytesAny{ +// FecCorrectedBytes returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "fec-corrected-bytes". +func (n *TerminalDevice_Channel_OtnPathAny) FecCorrectedBytes() *TerminalDevice_Channel_Otn_FecCorrectedBytesPathAny { + return &TerminalDevice_Channel_Otn_FecCorrectedBytesPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-corrected-bytes"}, map[string]interface{}{}, @@ -172908,9 +172935,9 @@ func (n *TerminalDevice_Channel_OtnAny) FecCorrectedBytes() *TerminalDevice_Chan } } -// FecUncorrectableBlocks returns from TerminalDevice_Channel_Otn the path struct for its child "fec-uncorrectable-blocks". -func (n *TerminalDevice_Channel_Otn) FecUncorrectableBlocks() *TerminalDevice_Channel_Otn_FecUncorrectableBlocks { - return &TerminalDevice_Channel_Otn_FecUncorrectableBlocks{ +// FecUncorrectableBlocks returns from TerminalDevice_Channel_OtnPath the path struct for its child "fec-uncorrectable-blocks". +func (n *TerminalDevice_Channel_OtnPath) FecUncorrectableBlocks() *TerminalDevice_Channel_Otn_FecUncorrectableBlocksPath { + return &TerminalDevice_Channel_Otn_FecUncorrectableBlocksPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-blocks"}, map[string]interface{}{}, @@ -172919,9 +172946,9 @@ func (n *TerminalDevice_Channel_Otn) FecUncorrectableBlocks() *TerminalDevice_Ch } } -// FecUncorrectableBlocks returns from TerminalDevice_Channel_OtnAny the path struct for its child "fec-uncorrectable-blocks". -func (n *TerminalDevice_Channel_OtnAny) FecUncorrectableBlocks() *TerminalDevice_Channel_Otn_FecUncorrectableBlocksAny { - return &TerminalDevice_Channel_Otn_FecUncorrectableBlocksAny{ +// FecUncorrectableBlocks returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "fec-uncorrectable-blocks". +func (n *TerminalDevice_Channel_OtnPathAny) FecUncorrectableBlocks() *TerminalDevice_Channel_Otn_FecUncorrectableBlocksPathAny { + return &TerminalDevice_Channel_Otn_FecUncorrectableBlocksPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-blocks"}, map[string]interface{}{}, @@ -172930,9 +172957,9 @@ func (n *TerminalDevice_Channel_OtnAny) FecUncorrectableBlocks() *TerminalDevice } } -// FecUncorrectableWords returns from TerminalDevice_Channel_Otn the path struct for its child "fec-uncorrectable-words". -func (n *TerminalDevice_Channel_Otn) FecUncorrectableWords() *TerminalDevice_Channel_Otn_FecUncorrectableWords { - return &TerminalDevice_Channel_Otn_FecUncorrectableWords{ +// FecUncorrectableWords returns from TerminalDevice_Channel_OtnPath the path struct for its child "fec-uncorrectable-words". +func (n *TerminalDevice_Channel_OtnPath) FecUncorrectableWords() *TerminalDevice_Channel_Otn_FecUncorrectableWordsPath { + return &TerminalDevice_Channel_Otn_FecUncorrectableWordsPath{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-words"}, map[string]interface{}{}, @@ -172941,9 +172968,9 @@ func (n *TerminalDevice_Channel_Otn) FecUncorrectableWords() *TerminalDevice_Cha } } -// FecUncorrectableWords returns from TerminalDevice_Channel_OtnAny the path struct for its child "fec-uncorrectable-words". -func (n *TerminalDevice_Channel_OtnAny) FecUncorrectableWords() *TerminalDevice_Channel_Otn_FecUncorrectableWordsAny { - return &TerminalDevice_Channel_Otn_FecUncorrectableWordsAny{ +// FecUncorrectableWords returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "fec-uncorrectable-words". +func (n *TerminalDevice_Channel_OtnPathAny) FecUncorrectableWords() *TerminalDevice_Channel_Otn_FecUncorrectableWordsPathAny { + return &TerminalDevice_Channel_Otn_FecUncorrectableWordsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "fec-uncorrectable-words"}, map[string]interface{}{}, @@ -172952,9 +172979,9 @@ func (n *TerminalDevice_Channel_OtnAny) FecUncorrectableWords() *TerminalDevice_ } } -// PostFecBer returns from TerminalDevice_Channel_Otn the path struct for its child "post-fec-ber". -func (n *TerminalDevice_Channel_Otn) PostFecBer() *TerminalDevice_Channel_Otn_PostFecBer { - return &TerminalDevice_Channel_Otn_PostFecBer{ +// PostFecBer returns from TerminalDevice_Channel_OtnPath the path struct for its child "post-fec-ber". +func (n *TerminalDevice_Channel_OtnPath) PostFecBer() *TerminalDevice_Channel_Otn_PostFecBerPath { + return &TerminalDevice_Channel_Otn_PostFecBerPath{ NodePath: ygot.NewNodePath( []string{"state", "post-fec-ber"}, map[string]interface{}{}, @@ -172963,9 +172990,9 @@ func (n *TerminalDevice_Channel_Otn) PostFecBer() *TerminalDevice_Channel_Otn_Po } } -// PostFecBer returns from TerminalDevice_Channel_OtnAny the path struct for its child "post-fec-ber". -func (n *TerminalDevice_Channel_OtnAny) PostFecBer() *TerminalDevice_Channel_Otn_PostFecBerAny { - return &TerminalDevice_Channel_Otn_PostFecBerAny{ +// PostFecBer returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "post-fec-ber". +func (n *TerminalDevice_Channel_OtnPathAny) PostFecBer() *TerminalDevice_Channel_Otn_PostFecBerPathAny { + return &TerminalDevice_Channel_Otn_PostFecBerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "post-fec-ber"}, map[string]interface{}{}, @@ -172974,9 +173001,9 @@ func (n *TerminalDevice_Channel_OtnAny) PostFecBer() *TerminalDevice_Channel_Otn } } -// PreFecBer returns from TerminalDevice_Channel_Otn the path struct for its child "pre-fec-ber". -func (n *TerminalDevice_Channel_Otn) PreFecBer() *TerminalDevice_Channel_Otn_PreFecBer { - return &TerminalDevice_Channel_Otn_PreFecBer{ +// PreFecBer returns from TerminalDevice_Channel_OtnPath the path struct for its child "pre-fec-ber". +func (n *TerminalDevice_Channel_OtnPath) PreFecBer() *TerminalDevice_Channel_Otn_PreFecBerPath { + return &TerminalDevice_Channel_Otn_PreFecBerPath{ NodePath: ygot.NewNodePath( []string{"state", "pre-fec-ber"}, map[string]interface{}{}, @@ -172985,9 +173012,9 @@ func (n *TerminalDevice_Channel_Otn) PreFecBer() *TerminalDevice_Channel_Otn_Pre } } -// PreFecBer returns from TerminalDevice_Channel_OtnAny the path struct for its child "pre-fec-ber". -func (n *TerminalDevice_Channel_OtnAny) PreFecBer() *TerminalDevice_Channel_Otn_PreFecBerAny { - return &TerminalDevice_Channel_Otn_PreFecBerAny{ +// PreFecBer returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "pre-fec-ber". +func (n *TerminalDevice_Channel_OtnPathAny) PreFecBer() *TerminalDevice_Channel_Otn_PreFecBerPathAny { + return &TerminalDevice_Channel_Otn_PreFecBerPathAny{ NodePath: ygot.NewNodePath( []string{"state", "pre-fec-ber"}, map[string]interface{}{}, @@ -172996,9 +173023,9 @@ func (n *TerminalDevice_Channel_OtnAny) PreFecBer() *TerminalDevice_Channel_Otn_ } } -// QValue returns from TerminalDevice_Channel_Otn the path struct for its child "q-value". -func (n *TerminalDevice_Channel_Otn) QValue() *TerminalDevice_Channel_Otn_QValue { - return &TerminalDevice_Channel_Otn_QValue{ +// QValue returns from TerminalDevice_Channel_OtnPath the path struct for its child "q-value". +func (n *TerminalDevice_Channel_OtnPath) QValue() *TerminalDevice_Channel_Otn_QValuePath { + return &TerminalDevice_Channel_Otn_QValuePath{ NodePath: ygot.NewNodePath( []string{"state", "q-value"}, map[string]interface{}{}, @@ -173007,9 +173034,9 @@ func (n *TerminalDevice_Channel_Otn) QValue() *TerminalDevice_Channel_Otn_QValue } } -// QValue returns from TerminalDevice_Channel_OtnAny the path struct for its child "q-value". -func (n *TerminalDevice_Channel_OtnAny) QValue() *TerminalDevice_Channel_Otn_QValueAny { - return &TerminalDevice_Channel_Otn_QValueAny{ +// QValue returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "q-value". +func (n *TerminalDevice_Channel_OtnPathAny) QValue() *TerminalDevice_Channel_Otn_QValuePathAny { + return &TerminalDevice_Channel_Otn_QValuePathAny{ NodePath: ygot.NewNodePath( []string{"state", "q-value"}, map[string]interface{}{}, @@ -173018,9 +173045,9 @@ func (n *TerminalDevice_Channel_OtnAny) QValue() *TerminalDevice_Channel_Otn_QVa } } -// RdiMsg returns from TerminalDevice_Channel_Otn the path struct for its child "rdi-msg". -func (n *TerminalDevice_Channel_Otn) RdiMsg() *TerminalDevice_Channel_Otn_RdiMsg { - return &TerminalDevice_Channel_Otn_RdiMsg{ +// RdiMsg returns from TerminalDevice_Channel_OtnPath the path struct for its child "rdi-msg". +func (n *TerminalDevice_Channel_OtnPath) RdiMsg() *TerminalDevice_Channel_Otn_RdiMsgPath { + return &TerminalDevice_Channel_Otn_RdiMsgPath{ NodePath: ygot.NewNodePath( []string{"state", "rdi-msg"}, map[string]interface{}{}, @@ -173029,9 +173056,9 @@ func (n *TerminalDevice_Channel_Otn) RdiMsg() *TerminalDevice_Channel_Otn_RdiMsg } } -// RdiMsg returns from TerminalDevice_Channel_OtnAny the path struct for its child "rdi-msg". -func (n *TerminalDevice_Channel_OtnAny) RdiMsg() *TerminalDevice_Channel_Otn_RdiMsgAny { - return &TerminalDevice_Channel_Otn_RdiMsgAny{ +// RdiMsg returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "rdi-msg". +func (n *TerminalDevice_Channel_OtnPathAny) RdiMsg() *TerminalDevice_Channel_Otn_RdiMsgPathAny { + return &TerminalDevice_Channel_Otn_RdiMsgPathAny{ NodePath: ygot.NewNodePath( []string{"state", "rdi-msg"}, map[string]interface{}{}, @@ -173040,9 +173067,9 @@ func (n *TerminalDevice_Channel_OtnAny) RdiMsg() *TerminalDevice_Channel_Otn_Rdi } } -// SeverelyErroredSeconds returns from TerminalDevice_Channel_Otn the path struct for its child "severely-errored-seconds". -func (n *TerminalDevice_Channel_Otn) SeverelyErroredSeconds() *TerminalDevice_Channel_Otn_SeverelyErroredSeconds { - return &TerminalDevice_Channel_Otn_SeverelyErroredSeconds{ +// SeverelyErroredSeconds returns from TerminalDevice_Channel_OtnPath the path struct for its child "severely-errored-seconds". +func (n *TerminalDevice_Channel_OtnPath) SeverelyErroredSeconds() *TerminalDevice_Channel_Otn_SeverelyErroredSecondsPath { + return &TerminalDevice_Channel_Otn_SeverelyErroredSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "severely-errored-seconds"}, map[string]interface{}{}, @@ -173051,9 +173078,9 @@ func (n *TerminalDevice_Channel_Otn) SeverelyErroredSeconds() *TerminalDevice_Ch } } -// SeverelyErroredSeconds returns from TerminalDevice_Channel_OtnAny the path struct for its child "severely-errored-seconds". -func (n *TerminalDevice_Channel_OtnAny) SeverelyErroredSeconds() *TerminalDevice_Channel_Otn_SeverelyErroredSecondsAny { - return &TerminalDevice_Channel_Otn_SeverelyErroredSecondsAny{ +// SeverelyErroredSeconds returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "severely-errored-seconds". +func (n *TerminalDevice_Channel_OtnPathAny) SeverelyErroredSeconds() *TerminalDevice_Channel_Otn_SeverelyErroredSecondsPathAny { + return &TerminalDevice_Channel_Otn_SeverelyErroredSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "severely-errored-seconds"}, map[string]interface{}{}, @@ -173062,75 +173089,75 @@ func (n *TerminalDevice_Channel_OtnAny) SeverelyErroredSeconds() *TerminalDevice } } -// TributarySlotGranularity returns from TerminalDevice_Channel_Otn the path struct for its child "tributary-slot-granularity". -func (n *TerminalDevice_Channel_Otn) TributarySlotGranularity() *TerminalDevice_Channel_Otn_TributarySlotGranularity { - return &TerminalDevice_Channel_Otn_TributarySlotGranularity{ +// TributarySlotGranularity returns from TerminalDevice_Channel_OtnPath the path struct for its child "tributary-slot-granularity". +func (n *TerminalDevice_Channel_OtnPath) TributarySlotGranularity() *TerminalDevice_Channel_Otn_TributarySlotGranularityPath { + return &TerminalDevice_Channel_Otn_TributarySlotGranularityPath{ NodePath: ygot.NewNodePath( - []string{"state", "tributary-slot-granularity"}, + []string{"config", "tributary-slot-granularity"}, map[string]interface{}{}, n, ), } } -// TributarySlotGranularity returns from TerminalDevice_Channel_OtnAny the path struct for its child "tributary-slot-granularity". -func (n *TerminalDevice_Channel_OtnAny) TributarySlotGranularity() *TerminalDevice_Channel_Otn_TributarySlotGranularityAny { - return &TerminalDevice_Channel_Otn_TributarySlotGranularityAny{ +// TributarySlotGranularity returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "tributary-slot-granularity". +func (n *TerminalDevice_Channel_OtnPathAny) TributarySlotGranularity() *TerminalDevice_Channel_Otn_TributarySlotGranularityPathAny { + return &TerminalDevice_Channel_Otn_TributarySlotGranularityPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tributary-slot-granularity"}, + []string{"config", "tributary-slot-granularity"}, map[string]interface{}{}, n, ), } } -// TtiMsgAuto returns from TerminalDevice_Channel_Otn the path struct for its child "tti-msg-auto". -func (n *TerminalDevice_Channel_Otn) TtiMsgAuto() *TerminalDevice_Channel_Otn_TtiMsgAuto { - return &TerminalDevice_Channel_Otn_TtiMsgAuto{ +// TtiMsgAuto returns from TerminalDevice_Channel_OtnPath the path struct for its child "tti-msg-auto". +func (n *TerminalDevice_Channel_OtnPath) TtiMsgAuto() *TerminalDevice_Channel_Otn_TtiMsgAutoPath { + return &TerminalDevice_Channel_Otn_TtiMsgAutoPath{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-auto"}, + []string{"config", "tti-msg-auto"}, map[string]interface{}{}, n, ), } } -// TtiMsgAuto returns from TerminalDevice_Channel_OtnAny the path struct for its child "tti-msg-auto". -func (n *TerminalDevice_Channel_OtnAny) TtiMsgAuto() *TerminalDevice_Channel_Otn_TtiMsgAutoAny { - return &TerminalDevice_Channel_Otn_TtiMsgAutoAny{ +// TtiMsgAuto returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "tti-msg-auto". +func (n *TerminalDevice_Channel_OtnPathAny) TtiMsgAuto() *TerminalDevice_Channel_Otn_TtiMsgAutoPathAny { + return &TerminalDevice_Channel_Otn_TtiMsgAutoPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-auto"}, + []string{"config", "tti-msg-auto"}, map[string]interface{}{}, n, ), } } -// TtiMsgExpected returns from TerminalDevice_Channel_Otn the path struct for its child "tti-msg-expected". -func (n *TerminalDevice_Channel_Otn) TtiMsgExpected() *TerminalDevice_Channel_Otn_TtiMsgExpected { - return &TerminalDevice_Channel_Otn_TtiMsgExpected{ +// TtiMsgExpected returns from TerminalDevice_Channel_OtnPath the path struct for its child "tti-msg-expected". +func (n *TerminalDevice_Channel_OtnPath) TtiMsgExpected() *TerminalDevice_Channel_Otn_TtiMsgExpectedPath { + return &TerminalDevice_Channel_Otn_TtiMsgExpectedPath{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-expected"}, + []string{"config", "tti-msg-expected"}, map[string]interface{}{}, n, ), } } -// TtiMsgExpected returns from TerminalDevice_Channel_OtnAny the path struct for its child "tti-msg-expected". -func (n *TerminalDevice_Channel_OtnAny) TtiMsgExpected() *TerminalDevice_Channel_Otn_TtiMsgExpectedAny { - return &TerminalDevice_Channel_Otn_TtiMsgExpectedAny{ +// TtiMsgExpected returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "tti-msg-expected". +func (n *TerminalDevice_Channel_OtnPathAny) TtiMsgExpected() *TerminalDevice_Channel_Otn_TtiMsgExpectedPathAny { + return &TerminalDevice_Channel_Otn_TtiMsgExpectedPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-expected"}, + []string{"config", "tti-msg-expected"}, map[string]interface{}{}, n, ), } } -// TtiMsgRecv returns from TerminalDevice_Channel_Otn the path struct for its child "tti-msg-recv". -func (n *TerminalDevice_Channel_Otn) TtiMsgRecv() *TerminalDevice_Channel_Otn_TtiMsgRecv { - return &TerminalDevice_Channel_Otn_TtiMsgRecv{ +// TtiMsgRecv returns from TerminalDevice_Channel_OtnPath the path struct for its child "tti-msg-recv". +func (n *TerminalDevice_Channel_OtnPath) TtiMsgRecv() *TerminalDevice_Channel_Otn_TtiMsgRecvPath { + return &TerminalDevice_Channel_Otn_TtiMsgRecvPath{ NodePath: ygot.NewNodePath( []string{"state", "tti-msg-recv"}, map[string]interface{}{}, @@ -173139,9 +173166,9 @@ func (n *TerminalDevice_Channel_Otn) TtiMsgRecv() *TerminalDevice_Channel_Otn_Tt } } -// TtiMsgRecv returns from TerminalDevice_Channel_OtnAny the path struct for its child "tti-msg-recv". -func (n *TerminalDevice_Channel_OtnAny) TtiMsgRecv() *TerminalDevice_Channel_Otn_TtiMsgRecvAny { - return &TerminalDevice_Channel_Otn_TtiMsgRecvAny{ +// TtiMsgRecv returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "tti-msg-recv". +func (n *TerminalDevice_Channel_OtnPathAny) TtiMsgRecv() *TerminalDevice_Channel_Otn_TtiMsgRecvPathAny { + return &TerminalDevice_Channel_Otn_TtiMsgRecvPathAny{ NodePath: ygot.NewNodePath( []string{"state", "tti-msg-recv"}, map[string]interface{}{}, @@ -173150,31 +173177,31 @@ func (n *TerminalDevice_Channel_OtnAny) TtiMsgRecv() *TerminalDevice_Channel_Otn } } -// TtiMsgTransmit returns from TerminalDevice_Channel_Otn the path struct for its child "tti-msg-transmit". -func (n *TerminalDevice_Channel_Otn) TtiMsgTransmit() *TerminalDevice_Channel_Otn_TtiMsgTransmit { - return &TerminalDevice_Channel_Otn_TtiMsgTransmit{ +// TtiMsgTransmit returns from TerminalDevice_Channel_OtnPath the path struct for its child "tti-msg-transmit". +func (n *TerminalDevice_Channel_OtnPath) TtiMsgTransmit() *TerminalDevice_Channel_Otn_TtiMsgTransmitPath { + return &TerminalDevice_Channel_Otn_TtiMsgTransmitPath{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-transmit"}, + []string{"config", "tti-msg-transmit"}, map[string]interface{}{}, n, ), } } -// TtiMsgTransmit returns from TerminalDevice_Channel_OtnAny the path struct for its child "tti-msg-transmit". -func (n *TerminalDevice_Channel_OtnAny) TtiMsgTransmit() *TerminalDevice_Channel_Otn_TtiMsgTransmitAny { - return &TerminalDevice_Channel_Otn_TtiMsgTransmitAny{ +// TtiMsgTransmit returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "tti-msg-transmit". +func (n *TerminalDevice_Channel_OtnPathAny) TtiMsgTransmit() *TerminalDevice_Channel_Otn_TtiMsgTransmitPathAny { + return &TerminalDevice_Channel_Otn_TtiMsgTransmitPathAny{ NodePath: ygot.NewNodePath( - []string{"state", "tti-msg-transmit"}, + []string{"config", "tti-msg-transmit"}, map[string]interface{}{}, n, ), } } -// UnavailableSeconds returns from TerminalDevice_Channel_Otn the path struct for its child "unavailable-seconds". -func (n *TerminalDevice_Channel_Otn) UnavailableSeconds() *TerminalDevice_Channel_Otn_UnavailableSeconds { - return &TerminalDevice_Channel_Otn_UnavailableSeconds{ +// UnavailableSeconds returns from TerminalDevice_Channel_OtnPath the path struct for its child "unavailable-seconds". +func (n *TerminalDevice_Channel_OtnPath) UnavailableSeconds() *TerminalDevice_Channel_Otn_UnavailableSecondsPath { + return &TerminalDevice_Channel_Otn_UnavailableSecondsPath{ NodePath: ygot.NewNodePath( []string{"state", "unavailable-seconds"}, map[string]interface{}{}, @@ -173183,9 +173210,9 @@ func (n *TerminalDevice_Channel_Otn) UnavailableSeconds() *TerminalDevice_Channe } } -// UnavailableSeconds returns from TerminalDevice_Channel_OtnAny the path struct for its child "unavailable-seconds". -func (n *TerminalDevice_Channel_OtnAny) UnavailableSeconds() *TerminalDevice_Channel_Otn_UnavailableSecondsAny { - return &TerminalDevice_Channel_Otn_UnavailableSecondsAny{ +// UnavailableSeconds returns from TerminalDevice_Channel_OtnPathAny the path struct for its child "unavailable-seconds". +func (n *TerminalDevice_Channel_OtnPathAny) UnavailableSeconds() *TerminalDevice_Channel_Otn_UnavailableSecondsPathAny { + return &TerminalDevice_Channel_Otn_UnavailableSecondsPathAny{ NodePath: ygot.NewNodePath( []string{"state", "unavailable-seconds"}, map[string]interface{}{}, @@ -173194,89 +173221,89 @@ func (n *TerminalDevice_Channel_OtnAny) UnavailableSeconds() *TerminalDevice_Cha } } -// TerminalDevice_Channel_Otn_Esnr represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr YANG schema element. -type TerminalDevice_Channel_Otn_Esnr struct { +// TerminalDevice_Channel_Otn_EsnrPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr YANG schema element. +type TerminalDevice_Channel_Otn_EsnrPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_EsnrAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr YANG schema element. -type TerminalDevice_Channel_Otn_EsnrAny struct { +// TerminalDevice_Channel_Otn_EsnrPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr YANG schema element. +type TerminalDevice_Channel_Otn_EsnrPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_Avg represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/avg YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_Avg struct { +// TerminalDevice_Channel_Otn_Esnr_AvgPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/avg YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_AvgPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_AvgAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/avg YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_AvgAny struct { +// TerminalDevice_Channel_Otn_Esnr_AvgPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/avg YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_AvgPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_Instant represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/instant YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_Instant struct { +// TerminalDevice_Channel_Otn_Esnr_InstantPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/instant YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_InstantPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_InstantAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/instant YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_InstantAny struct { +// TerminalDevice_Channel_Otn_Esnr_InstantPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/instant YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_InstantPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_Interval represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/interval YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_Interval struct { +// TerminalDevice_Channel_Otn_Esnr_IntervalPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/interval YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_IntervalPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_IntervalAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/interval YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_IntervalAny struct { +// TerminalDevice_Channel_Otn_Esnr_IntervalPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/interval YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_IntervalPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_Max represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_Max struct { +// TerminalDevice_Channel_Otn_Esnr_MaxPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MaxPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MaxAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MaxAny struct { +// TerminalDevice_Channel_Otn_Esnr_MaxPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MaxPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MaxTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max-time YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MaxTime struct { +// TerminalDevice_Channel_Otn_Esnr_MaxTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max-time YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MaxTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MaxTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max-time YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MaxTimeAny struct { +// TerminalDevice_Channel_Otn_Esnr_MaxTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/max-time YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MaxTimePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_Min represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_Min struct { +// TerminalDevice_Channel_Otn_Esnr_MinPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MinPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MinAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MinAny struct { +// TerminalDevice_Channel_Otn_Esnr_MinPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MinPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MinTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min-time YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MinTime struct { +// TerminalDevice_Channel_Otn_Esnr_MinTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min-time YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MinTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_Esnr_MinTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min-time YANG schema element. -type TerminalDevice_Channel_Otn_Esnr_MinTimeAny struct { +// TerminalDevice_Channel_Otn_Esnr_MinTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/esnr/min-time YANG schema element. +type TerminalDevice_Channel_Otn_Esnr_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_Esnr) Avg() *TerminalDevice_Channel_Otn_Esnr_Avg { - return &TerminalDevice_Channel_Otn_Esnr_Avg{ +// Avg returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_EsnrPath) Avg() *TerminalDevice_Channel_Otn_Esnr_AvgPath { + return &TerminalDevice_Channel_Otn_Esnr_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173285,9 +173312,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) Avg() *TerminalDevice_Channel_Otn_Esnr } } -// Avg returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_EsnrAny) Avg() *TerminalDevice_Channel_Otn_Esnr_AvgAny { - return &TerminalDevice_Channel_Otn_Esnr_AvgAny{ +// Avg returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) Avg() *TerminalDevice_Channel_Otn_Esnr_AvgPathAny { + return &TerminalDevice_Channel_Otn_Esnr_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173296,9 +173323,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) Avg() *TerminalDevice_Channel_Otn_E } } -// Instant returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_Esnr) Instant() *TerminalDevice_Channel_Otn_Esnr_Instant { - return &TerminalDevice_Channel_Otn_Esnr_Instant{ +// Instant returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_EsnrPath) Instant() *TerminalDevice_Channel_Otn_Esnr_InstantPath { + return &TerminalDevice_Channel_Otn_Esnr_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173307,9 +173334,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) Instant() *TerminalDevice_Channel_Otn_ } } -// Instant returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_EsnrAny) Instant() *TerminalDevice_Channel_Otn_Esnr_InstantAny { - return &TerminalDevice_Channel_Otn_Esnr_InstantAny{ +// Instant returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) Instant() *TerminalDevice_Channel_Otn_Esnr_InstantPathAny { + return &TerminalDevice_Channel_Otn_Esnr_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173318,9 +173345,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) Instant() *TerminalDevice_Channel_O } } -// Interval returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_Esnr) Interval() *TerminalDevice_Channel_Otn_Esnr_Interval { - return &TerminalDevice_Channel_Otn_Esnr_Interval{ +// Interval returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_EsnrPath) Interval() *TerminalDevice_Channel_Otn_Esnr_IntervalPath { + return &TerminalDevice_Channel_Otn_Esnr_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173329,9 +173356,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) Interval() *TerminalDevice_Channel_Otn } } -// Interval returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_EsnrAny) Interval() *TerminalDevice_Channel_Otn_Esnr_IntervalAny { - return &TerminalDevice_Channel_Otn_Esnr_IntervalAny{ +// Interval returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) Interval() *TerminalDevice_Channel_Otn_Esnr_IntervalPathAny { + return &TerminalDevice_Channel_Otn_Esnr_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173340,9 +173367,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) Interval() *TerminalDevice_Channel_ } } -// Max returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_Esnr) Max() *TerminalDevice_Channel_Otn_Esnr_Max { - return &TerminalDevice_Channel_Otn_Esnr_Max{ +// Max returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_EsnrPath) Max() *TerminalDevice_Channel_Otn_Esnr_MaxPath { + return &TerminalDevice_Channel_Otn_Esnr_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173351,9 +173378,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) Max() *TerminalDevice_Channel_Otn_Esnr } } -// Max returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_EsnrAny) Max() *TerminalDevice_Channel_Otn_Esnr_MaxAny { - return &TerminalDevice_Channel_Otn_Esnr_MaxAny{ +// Max returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) Max() *TerminalDevice_Channel_Otn_Esnr_MaxPathAny { + return &TerminalDevice_Channel_Otn_Esnr_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173362,9 +173389,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) Max() *TerminalDevice_Channel_Otn_E } } -// MaxTime returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_Esnr) MaxTime() *TerminalDevice_Channel_Otn_Esnr_MaxTime { - return &TerminalDevice_Channel_Otn_Esnr_MaxTime{ +// MaxTime returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_EsnrPath) MaxTime() *TerminalDevice_Channel_Otn_Esnr_MaxTimePath { + return &TerminalDevice_Channel_Otn_Esnr_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173373,9 +173400,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) MaxTime() *TerminalDevice_Channel_Otn_ } } -// MaxTime returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_EsnrAny) MaxTime() *TerminalDevice_Channel_Otn_Esnr_MaxTimeAny { - return &TerminalDevice_Channel_Otn_Esnr_MaxTimeAny{ +// MaxTime returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) MaxTime() *TerminalDevice_Channel_Otn_Esnr_MaxTimePathAny { + return &TerminalDevice_Channel_Otn_Esnr_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173384,9 +173411,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) MaxTime() *TerminalDevice_Channel_O } } -// Min returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_Esnr) Min() *TerminalDevice_Channel_Otn_Esnr_Min { - return &TerminalDevice_Channel_Otn_Esnr_Min{ +// Min returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_EsnrPath) Min() *TerminalDevice_Channel_Otn_Esnr_MinPath { + return &TerminalDevice_Channel_Otn_Esnr_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173395,9 +173422,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) Min() *TerminalDevice_Channel_Otn_Esnr } } -// Min returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_EsnrAny) Min() *TerminalDevice_Channel_Otn_Esnr_MinAny { - return &TerminalDevice_Channel_Otn_Esnr_MinAny{ +// Min returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) Min() *TerminalDevice_Channel_Otn_Esnr_MinPathAny { + return &TerminalDevice_Channel_Otn_Esnr_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173406,9 +173433,9 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) Min() *TerminalDevice_Channel_Otn_E } } -// MinTime returns from TerminalDevice_Channel_Otn_Esnr the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_Esnr) MinTime() *TerminalDevice_Channel_Otn_Esnr_MinTime { - return &TerminalDevice_Channel_Otn_Esnr_MinTime{ +// MinTime returns from TerminalDevice_Channel_Otn_EsnrPath the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_EsnrPath) MinTime() *TerminalDevice_Channel_Otn_Esnr_MinTimePath { + return &TerminalDevice_Channel_Otn_Esnr_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173417,9 +173444,9 @@ func (n *TerminalDevice_Channel_Otn_Esnr) MinTime() *TerminalDevice_Channel_Otn_ } } -// MinTime returns from TerminalDevice_Channel_Otn_EsnrAny the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_EsnrAny) MinTime() *TerminalDevice_Channel_Otn_Esnr_MinTimeAny { - return &TerminalDevice_Channel_Otn_Esnr_MinTimeAny{ +// MinTime returns from TerminalDevice_Channel_Otn_EsnrPathAny the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_EsnrPathAny) MinTime() *TerminalDevice_Channel_Otn_Esnr_MinTimePathAny { + return &TerminalDevice_Channel_Otn_Esnr_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173428,89 +173455,89 @@ func (n *TerminalDevice_Channel_Otn_EsnrAny) MinTime() *TerminalDevice_Channel_O } } -// TerminalDevice_Channel_Otn_PostFecBer represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer struct { +// TerminalDevice_Channel_Otn_PostFecBerPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBerPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBerAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBerAny struct { +// TerminalDevice_Channel_Otn_PostFecBerPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBerPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_Avg represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/avg YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_Avg struct { +// TerminalDevice_Channel_Otn_PostFecBer_AvgPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/avg YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_AvgPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_AvgAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/avg YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_AvgAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_AvgPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/avg YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_AvgPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_Instant represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/instant YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_Instant struct { +// TerminalDevice_Channel_Otn_PostFecBer_InstantPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/instant YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_InstantPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_InstantAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/instant YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_InstantAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_InstantPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/instant YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_InstantPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_Interval represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/interval YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_Interval struct { +// TerminalDevice_Channel_Otn_PostFecBer_IntervalPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/interval YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_IntervalPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_IntervalAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/interval YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_IntervalAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_IntervalPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/interval YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_IntervalPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_Max represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_Max struct { +// TerminalDevice_Channel_Otn_PostFecBer_MaxPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MaxPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MaxAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MaxAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_MaxPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MaxPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MaxTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max-time YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MaxTime struct { +// TerminalDevice_Channel_Otn_PostFecBer_MaxTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max-time YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MaxTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MaxTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max-time YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MaxTimeAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_MaxTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/max-time YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MaxTimePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_Min represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_Min struct { +// TerminalDevice_Channel_Otn_PostFecBer_MinPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MinPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MinAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MinAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_MinPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MinPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MinTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min-time YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MinTime struct { +// TerminalDevice_Channel_Otn_PostFecBer_MinTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min-time YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MinTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PostFecBer_MinTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min-time YANG schema element. -type TerminalDevice_Channel_Otn_PostFecBer_MinTimeAny struct { +// TerminalDevice_Channel_Otn_PostFecBer_MinTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/post-fec-ber/min-time YANG schema element. +type TerminalDevice_Channel_Otn_PostFecBer_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_PostFecBer) Avg() *TerminalDevice_Channel_Otn_PostFecBer_Avg { - return &TerminalDevice_Channel_Otn_PostFecBer_Avg{ +// Avg returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) Avg() *TerminalDevice_Channel_Otn_PostFecBer_AvgPath { + return &TerminalDevice_Channel_Otn_PostFecBer_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173519,9 +173546,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) Avg() *TerminalDevice_Channel_Ot } } -// Avg returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Avg() *TerminalDevice_Channel_Otn_PostFecBer_AvgAny { - return &TerminalDevice_Channel_Otn_PostFecBer_AvgAny{ +// Avg returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) Avg() *TerminalDevice_Channel_Otn_PostFecBer_AvgPathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173530,9 +173557,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Avg() *TerminalDevice_Channel } } -// Instant returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_PostFecBer) Instant() *TerminalDevice_Channel_Otn_PostFecBer_Instant { - return &TerminalDevice_Channel_Otn_PostFecBer_Instant{ +// Instant returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) Instant() *TerminalDevice_Channel_Otn_PostFecBer_InstantPath { + return &TerminalDevice_Channel_Otn_PostFecBer_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173541,9 +173568,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) Instant() *TerminalDevice_Channe } } -// Instant returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Instant() *TerminalDevice_Channel_Otn_PostFecBer_InstantAny { - return &TerminalDevice_Channel_Otn_PostFecBer_InstantAny{ +// Instant returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) Instant() *TerminalDevice_Channel_Otn_PostFecBer_InstantPathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173552,9 +173579,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Instant() *TerminalDevice_Cha } } -// Interval returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_PostFecBer) Interval() *TerminalDevice_Channel_Otn_PostFecBer_Interval { - return &TerminalDevice_Channel_Otn_PostFecBer_Interval{ +// Interval returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) Interval() *TerminalDevice_Channel_Otn_PostFecBer_IntervalPath { + return &TerminalDevice_Channel_Otn_PostFecBer_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173563,9 +173590,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) Interval() *TerminalDevice_Chann } } -// Interval returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Interval() *TerminalDevice_Channel_Otn_PostFecBer_IntervalAny { - return &TerminalDevice_Channel_Otn_PostFecBer_IntervalAny{ +// Interval returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) Interval() *TerminalDevice_Channel_Otn_PostFecBer_IntervalPathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173574,9 +173601,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Interval() *TerminalDevice_Ch } } -// Max returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_PostFecBer) Max() *TerminalDevice_Channel_Otn_PostFecBer_Max { - return &TerminalDevice_Channel_Otn_PostFecBer_Max{ +// Max returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) Max() *TerminalDevice_Channel_Otn_PostFecBer_MaxPath { + return &TerminalDevice_Channel_Otn_PostFecBer_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173585,9 +173612,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) Max() *TerminalDevice_Channel_Ot } } -// Max returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Max() *TerminalDevice_Channel_Otn_PostFecBer_MaxAny { - return &TerminalDevice_Channel_Otn_PostFecBer_MaxAny{ +// Max returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) Max() *TerminalDevice_Channel_Otn_PostFecBer_MaxPathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173596,9 +173623,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Max() *TerminalDevice_Channel } } -// MaxTime returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_PostFecBer) MaxTime() *TerminalDevice_Channel_Otn_PostFecBer_MaxTime { - return &TerminalDevice_Channel_Otn_PostFecBer_MaxTime{ +// MaxTime returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) MaxTime() *TerminalDevice_Channel_Otn_PostFecBer_MaxTimePath { + return &TerminalDevice_Channel_Otn_PostFecBer_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173607,9 +173634,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) MaxTime() *TerminalDevice_Channe } } -// MaxTime returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) MaxTime() *TerminalDevice_Channel_Otn_PostFecBer_MaxTimeAny { - return &TerminalDevice_Channel_Otn_PostFecBer_MaxTimeAny{ +// MaxTime returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) MaxTime() *TerminalDevice_Channel_Otn_PostFecBer_MaxTimePathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173618,9 +173645,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) MaxTime() *TerminalDevice_Cha } } -// Min returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_PostFecBer) Min() *TerminalDevice_Channel_Otn_PostFecBer_Min { - return &TerminalDevice_Channel_Otn_PostFecBer_Min{ +// Min returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) Min() *TerminalDevice_Channel_Otn_PostFecBer_MinPath { + return &TerminalDevice_Channel_Otn_PostFecBer_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173629,9 +173656,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) Min() *TerminalDevice_Channel_Ot } } -// Min returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Min() *TerminalDevice_Channel_Otn_PostFecBer_MinAny { - return &TerminalDevice_Channel_Otn_PostFecBer_MinAny{ +// Min returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) Min() *TerminalDevice_Channel_Otn_PostFecBer_MinPathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173640,9 +173667,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) Min() *TerminalDevice_Channel } } -// MinTime returns from TerminalDevice_Channel_Otn_PostFecBer the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_PostFecBer) MinTime() *TerminalDevice_Channel_Otn_PostFecBer_MinTime { - return &TerminalDevice_Channel_Otn_PostFecBer_MinTime{ +// MinTime returns from TerminalDevice_Channel_Otn_PostFecBerPath the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_PostFecBerPath) MinTime() *TerminalDevice_Channel_Otn_PostFecBer_MinTimePath { + return &TerminalDevice_Channel_Otn_PostFecBer_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173651,9 +173678,9 @@ func (n *TerminalDevice_Channel_Otn_PostFecBer) MinTime() *TerminalDevice_Channe } } -// MinTime returns from TerminalDevice_Channel_Otn_PostFecBerAny the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_PostFecBerAny) MinTime() *TerminalDevice_Channel_Otn_PostFecBer_MinTimeAny { - return &TerminalDevice_Channel_Otn_PostFecBer_MinTimeAny{ +// MinTime returns from TerminalDevice_Channel_Otn_PostFecBerPathAny the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_PostFecBerPathAny) MinTime() *TerminalDevice_Channel_Otn_PostFecBer_MinTimePathAny { + return &TerminalDevice_Channel_Otn_PostFecBer_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173662,89 +173689,89 @@ func (n *TerminalDevice_Channel_Otn_PostFecBerAny) MinTime() *TerminalDevice_Cha } } -// TerminalDevice_Channel_Otn_PreFecBer represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer struct { +// TerminalDevice_Channel_Otn_PreFecBerPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBerPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBerAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBerAny struct { +// TerminalDevice_Channel_Otn_PreFecBerPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBerPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_Avg represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/avg YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_Avg struct { +// TerminalDevice_Channel_Otn_PreFecBer_AvgPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/avg YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_AvgPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_AvgAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/avg YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_AvgAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_AvgPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/avg YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_AvgPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_Instant represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/instant YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_Instant struct { +// TerminalDevice_Channel_Otn_PreFecBer_InstantPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/instant YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_InstantPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_InstantAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/instant YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_InstantAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_InstantPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/instant YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_InstantPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_Interval represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/interval YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_Interval struct { +// TerminalDevice_Channel_Otn_PreFecBer_IntervalPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/interval YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_IntervalPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_IntervalAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/interval YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_IntervalAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_IntervalPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/interval YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_IntervalPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_Max represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_Max struct { +// TerminalDevice_Channel_Otn_PreFecBer_MaxPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MaxPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MaxAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MaxAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_MaxPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MaxPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MaxTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max-time YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MaxTime struct { +// TerminalDevice_Channel_Otn_PreFecBer_MaxTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max-time YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MaxTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MaxTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max-time YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MaxTimeAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_MaxTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/max-time YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MaxTimePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_Min represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_Min struct { +// TerminalDevice_Channel_Otn_PreFecBer_MinPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MinPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MinAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MinAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_MinPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MinPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MinTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min-time YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MinTime struct { +// TerminalDevice_Channel_Otn_PreFecBer_MinTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min-time YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MinTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_PreFecBer_MinTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min-time YANG schema element. -type TerminalDevice_Channel_Otn_PreFecBer_MinTimeAny struct { +// TerminalDevice_Channel_Otn_PreFecBer_MinTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/pre-fec-ber/min-time YANG schema element. +type TerminalDevice_Channel_Otn_PreFecBer_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_PreFecBer) Avg() *TerminalDevice_Channel_Otn_PreFecBer_Avg { - return &TerminalDevice_Channel_Otn_PreFecBer_Avg{ +// Avg returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) Avg() *TerminalDevice_Channel_Otn_PreFecBer_AvgPath { + return &TerminalDevice_Channel_Otn_PreFecBer_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173753,9 +173780,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) Avg() *TerminalDevice_Channel_Otn } } -// Avg returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Avg() *TerminalDevice_Channel_Otn_PreFecBer_AvgAny { - return &TerminalDevice_Channel_Otn_PreFecBer_AvgAny{ +// Avg returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) Avg() *TerminalDevice_Channel_Otn_PreFecBer_AvgPathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173764,9 +173791,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Avg() *TerminalDevice_Channel_ } } -// Instant returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_PreFecBer) Instant() *TerminalDevice_Channel_Otn_PreFecBer_Instant { - return &TerminalDevice_Channel_Otn_PreFecBer_Instant{ +// Instant returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) Instant() *TerminalDevice_Channel_Otn_PreFecBer_InstantPath { + return &TerminalDevice_Channel_Otn_PreFecBer_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173775,9 +173802,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) Instant() *TerminalDevice_Channel } } -// Instant returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Instant() *TerminalDevice_Channel_Otn_PreFecBer_InstantAny { - return &TerminalDevice_Channel_Otn_PreFecBer_InstantAny{ +// Instant returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) Instant() *TerminalDevice_Channel_Otn_PreFecBer_InstantPathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -173786,9 +173813,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Instant() *TerminalDevice_Chan } } -// Interval returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_PreFecBer) Interval() *TerminalDevice_Channel_Otn_PreFecBer_Interval { - return &TerminalDevice_Channel_Otn_PreFecBer_Interval{ +// Interval returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) Interval() *TerminalDevice_Channel_Otn_PreFecBer_IntervalPath { + return &TerminalDevice_Channel_Otn_PreFecBer_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173797,9 +173824,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) Interval() *TerminalDevice_Channe } } -// Interval returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Interval() *TerminalDevice_Channel_Otn_PreFecBer_IntervalAny { - return &TerminalDevice_Channel_Otn_PreFecBer_IntervalAny{ +// Interval returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) Interval() *TerminalDevice_Channel_Otn_PreFecBer_IntervalPathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -173808,9 +173835,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Interval() *TerminalDevice_Cha } } -// Max returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_PreFecBer) Max() *TerminalDevice_Channel_Otn_PreFecBer_Max { - return &TerminalDevice_Channel_Otn_PreFecBer_Max{ +// Max returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) Max() *TerminalDevice_Channel_Otn_PreFecBer_MaxPath { + return &TerminalDevice_Channel_Otn_PreFecBer_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173819,9 +173846,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) Max() *TerminalDevice_Channel_Otn } } -// Max returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Max() *TerminalDevice_Channel_Otn_PreFecBer_MaxAny { - return &TerminalDevice_Channel_Otn_PreFecBer_MaxAny{ +// Max returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) Max() *TerminalDevice_Channel_Otn_PreFecBer_MaxPathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -173830,9 +173857,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Max() *TerminalDevice_Channel_ } } -// MaxTime returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_PreFecBer) MaxTime() *TerminalDevice_Channel_Otn_PreFecBer_MaxTime { - return &TerminalDevice_Channel_Otn_PreFecBer_MaxTime{ +// MaxTime returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) MaxTime() *TerminalDevice_Channel_Otn_PreFecBer_MaxTimePath { + return &TerminalDevice_Channel_Otn_PreFecBer_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173841,9 +173868,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) MaxTime() *TerminalDevice_Channel } } -// MaxTime returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) MaxTime() *TerminalDevice_Channel_Otn_PreFecBer_MaxTimeAny { - return &TerminalDevice_Channel_Otn_PreFecBer_MaxTimeAny{ +// MaxTime returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) MaxTime() *TerminalDevice_Channel_Otn_PreFecBer_MaxTimePathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -173852,9 +173879,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) MaxTime() *TerminalDevice_Chan } } -// Min returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_PreFecBer) Min() *TerminalDevice_Channel_Otn_PreFecBer_Min { - return &TerminalDevice_Channel_Otn_PreFecBer_Min{ +// Min returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) Min() *TerminalDevice_Channel_Otn_PreFecBer_MinPath { + return &TerminalDevice_Channel_Otn_PreFecBer_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173863,9 +173890,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) Min() *TerminalDevice_Channel_Otn } } -// Min returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Min() *TerminalDevice_Channel_Otn_PreFecBer_MinAny { - return &TerminalDevice_Channel_Otn_PreFecBer_MinAny{ +// Min returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) Min() *TerminalDevice_Channel_Otn_PreFecBer_MinPathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -173874,9 +173901,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) Min() *TerminalDevice_Channel_ } } -// MinTime returns from TerminalDevice_Channel_Otn_PreFecBer the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_PreFecBer) MinTime() *TerminalDevice_Channel_Otn_PreFecBer_MinTime { - return &TerminalDevice_Channel_Otn_PreFecBer_MinTime{ +// MinTime returns from TerminalDevice_Channel_Otn_PreFecBerPath the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_PreFecBerPath) MinTime() *TerminalDevice_Channel_Otn_PreFecBer_MinTimePath { + return &TerminalDevice_Channel_Otn_PreFecBer_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173885,9 +173912,9 @@ func (n *TerminalDevice_Channel_Otn_PreFecBer) MinTime() *TerminalDevice_Channel } } -// MinTime returns from TerminalDevice_Channel_Otn_PreFecBerAny the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_PreFecBerAny) MinTime() *TerminalDevice_Channel_Otn_PreFecBer_MinTimeAny { - return &TerminalDevice_Channel_Otn_PreFecBer_MinTimeAny{ +// MinTime returns from TerminalDevice_Channel_Otn_PreFecBerPathAny the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_PreFecBerPathAny) MinTime() *TerminalDevice_Channel_Otn_PreFecBer_MinTimePathAny { + return &TerminalDevice_Channel_Otn_PreFecBer_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -173896,89 +173923,89 @@ func (n *TerminalDevice_Channel_Otn_PreFecBerAny) MinTime() *TerminalDevice_Chan } } -// TerminalDevice_Channel_Otn_QValue represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value YANG schema element. -type TerminalDevice_Channel_Otn_QValue struct { +// TerminalDevice_Channel_Otn_QValuePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value YANG schema element. +type TerminalDevice_Channel_Otn_QValuePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValueAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value YANG schema element. -type TerminalDevice_Channel_Otn_QValueAny struct { +// TerminalDevice_Channel_Otn_QValuePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value YANG schema element. +type TerminalDevice_Channel_Otn_QValuePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_Avg represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/avg YANG schema element. -type TerminalDevice_Channel_Otn_QValue_Avg struct { +// TerminalDevice_Channel_Otn_QValue_AvgPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/avg YANG schema element. +type TerminalDevice_Channel_Otn_QValue_AvgPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_AvgAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/avg YANG schema element. -type TerminalDevice_Channel_Otn_QValue_AvgAny struct { +// TerminalDevice_Channel_Otn_QValue_AvgPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/avg YANG schema element. +type TerminalDevice_Channel_Otn_QValue_AvgPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_Instant represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/instant YANG schema element. -type TerminalDevice_Channel_Otn_QValue_Instant struct { +// TerminalDevice_Channel_Otn_QValue_InstantPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/instant YANG schema element. +type TerminalDevice_Channel_Otn_QValue_InstantPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_InstantAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/instant YANG schema element. -type TerminalDevice_Channel_Otn_QValue_InstantAny struct { +// TerminalDevice_Channel_Otn_QValue_InstantPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/instant YANG schema element. +type TerminalDevice_Channel_Otn_QValue_InstantPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_Interval represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/interval YANG schema element. -type TerminalDevice_Channel_Otn_QValue_Interval struct { +// TerminalDevice_Channel_Otn_QValue_IntervalPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/interval YANG schema element. +type TerminalDevice_Channel_Otn_QValue_IntervalPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_IntervalAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/interval YANG schema element. -type TerminalDevice_Channel_Otn_QValue_IntervalAny struct { +// TerminalDevice_Channel_Otn_QValue_IntervalPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/interval YANG schema element. +type TerminalDevice_Channel_Otn_QValue_IntervalPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_Max represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max YANG schema element. -type TerminalDevice_Channel_Otn_QValue_Max struct { +// TerminalDevice_Channel_Otn_QValue_MaxPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MaxPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MaxAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MaxAny struct { +// TerminalDevice_Channel_Otn_QValue_MaxPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MaxPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MaxTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max-time YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MaxTime struct { +// TerminalDevice_Channel_Otn_QValue_MaxTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max-time YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MaxTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MaxTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max-time YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MaxTimeAny struct { +// TerminalDevice_Channel_Otn_QValue_MaxTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/max-time YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MaxTimePathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_Min represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min YANG schema element. -type TerminalDevice_Channel_Otn_QValue_Min struct { +// TerminalDevice_Channel_Otn_QValue_MinPath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MinPath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MinAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MinAny struct { +// TerminalDevice_Channel_Otn_QValue_MinPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MinPathAny struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MinTime represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min-time YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MinTime struct { +// TerminalDevice_Channel_Otn_QValue_MinTimePath represents the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min-time YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MinTimePath struct { *ygot.NodePath } -// TerminalDevice_Channel_Otn_QValue_MinTimeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min-time YANG schema element. -type TerminalDevice_Channel_Otn_QValue_MinTimeAny struct { +// TerminalDevice_Channel_Otn_QValue_MinTimePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/logical-channels/channel/otn/state/q-value/min-time YANG schema element. +type TerminalDevice_Channel_Otn_QValue_MinTimePathAny struct { *ygot.NodePath } -// Avg returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_QValue) Avg() *TerminalDevice_Channel_Otn_QValue_Avg { - return &TerminalDevice_Channel_Otn_QValue_Avg{ +// Avg returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_QValuePath) Avg() *TerminalDevice_Channel_Otn_QValue_AvgPath { + return &TerminalDevice_Channel_Otn_QValue_AvgPath{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173987,9 +174014,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) Avg() *TerminalDevice_Channel_Otn_QV } } -// Avg returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "avg". -func (n *TerminalDevice_Channel_Otn_QValueAny) Avg() *TerminalDevice_Channel_Otn_QValue_AvgAny { - return &TerminalDevice_Channel_Otn_QValue_AvgAny{ +// Avg returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "avg". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) Avg() *TerminalDevice_Channel_Otn_QValue_AvgPathAny { + return &TerminalDevice_Channel_Otn_QValue_AvgPathAny{ NodePath: ygot.NewNodePath( []string{"avg"}, map[string]interface{}{}, @@ -173998,9 +174025,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) Avg() *TerminalDevice_Channel_Otn } } -// Instant returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_QValue) Instant() *TerminalDevice_Channel_Otn_QValue_Instant { - return &TerminalDevice_Channel_Otn_QValue_Instant{ +// Instant returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_QValuePath) Instant() *TerminalDevice_Channel_Otn_QValue_InstantPath { + return &TerminalDevice_Channel_Otn_QValue_InstantPath{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -174009,9 +174036,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) Instant() *TerminalDevice_Channel_Ot } } -// Instant returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "instant". -func (n *TerminalDevice_Channel_Otn_QValueAny) Instant() *TerminalDevice_Channel_Otn_QValue_InstantAny { - return &TerminalDevice_Channel_Otn_QValue_InstantAny{ +// Instant returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "instant". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) Instant() *TerminalDevice_Channel_Otn_QValue_InstantPathAny { + return &TerminalDevice_Channel_Otn_QValue_InstantPathAny{ NodePath: ygot.NewNodePath( []string{"instant"}, map[string]interface{}{}, @@ -174020,9 +174047,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) Instant() *TerminalDevice_Channel } } -// Interval returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_QValue) Interval() *TerminalDevice_Channel_Otn_QValue_Interval { - return &TerminalDevice_Channel_Otn_QValue_Interval{ +// Interval returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_QValuePath) Interval() *TerminalDevice_Channel_Otn_QValue_IntervalPath { + return &TerminalDevice_Channel_Otn_QValue_IntervalPath{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -174031,9 +174058,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) Interval() *TerminalDevice_Channel_O } } -// Interval returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "interval". -func (n *TerminalDevice_Channel_Otn_QValueAny) Interval() *TerminalDevice_Channel_Otn_QValue_IntervalAny { - return &TerminalDevice_Channel_Otn_QValue_IntervalAny{ +// Interval returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "interval". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) Interval() *TerminalDevice_Channel_Otn_QValue_IntervalPathAny { + return &TerminalDevice_Channel_Otn_QValue_IntervalPathAny{ NodePath: ygot.NewNodePath( []string{"interval"}, map[string]interface{}{}, @@ -174042,9 +174069,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) Interval() *TerminalDevice_Channe } } -// Max returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_QValue) Max() *TerminalDevice_Channel_Otn_QValue_Max { - return &TerminalDevice_Channel_Otn_QValue_Max{ +// Max returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_QValuePath) Max() *TerminalDevice_Channel_Otn_QValue_MaxPath { + return &TerminalDevice_Channel_Otn_QValue_MaxPath{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -174053,9 +174080,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) Max() *TerminalDevice_Channel_Otn_QV } } -// Max returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "max". -func (n *TerminalDevice_Channel_Otn_QValueAny) Max() *TerminalDevice_Channel_Otn_QValue_MaxAny { - return &TerminalDevice_Channel_Otn_QValue_MaxAny{ +// Max returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "max". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) Max() *TerminalDevice_Channel_Otn_QValue_MaxPathAny { + return &TerminalDevice_Channel_Otn_QValue_MaxPathAny{ NodePath: ygot.NewNodePath( []string{"max"}, map[string]interface{}{}, @@ -174064,9 +174091,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) Max() *TerminalDevice_Channel_Otn } } -// MaxTime returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_QValue) MaxTime() *TerminalDevice_Channel_Otn_QValue_MaxTime { - return &TerminalDevice_Channel_Otn_QValue_MaxTime{ +// MaxTime returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_QValuePath) MaxTime() *TerminalDevice_Channel_Otn_QValue_MaxTimePath { + return &TerminalDevice_Channel_Otn_QValue_MaxTimePath{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -174075,9 +174102,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) MaxTime() *TerminalDevice_Channel_Ot } } -// MaxTime returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "max-time". -func (n *TerminalDevice_Channel_Otn_QValueAny) MaxTime() *TerminalDevice_Channel_Otn_QValue_MaxTimeAny { - return &TerminalDevice_Channel_Otn_QValue_MaxTimeAny{ +// MaxTime returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "max-time". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) MaxTime() *TerminalDevice_Channel_Otn_QValue_MaxTimePathAny { + return &TerminalDevice_Channel_Otn_QValue_MaxTimePathAny{ NodePath: ygot.NewNodePath( []string{"max-time"}, map[string]interface{}{}, @@ -174086,9 +174113,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) MaxTime() *TerminalDevice_Channel } } -// Min returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_QValue) Min() *TerminalDevice_Channel_Otn_QValue_Min { - return &TerminalDevice_Channel_Otn_QValue_Min{ +// Min returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_QValuePath) Min() *TerminalDevice_Channel_Otn_QValue_MinPath { + return &TerminalDevice_Channel_Otn_QValue_MinPath{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -174097,9 +174124,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) Min() *TerminalDevice_Channel_Otn_QV } } -// Min returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "min". -func (n *TerminalDevice_Channel_Otn_QValueAny) Min() *TerminalDevice_Channel_Otn_QValue_MinAny { - return &TerminalDevice_Channel_Otn_QValue_MinAny{ +// Min returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "min". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) Min() *TerminalDevice_Channel_Otn_QValue_MinPathAny { + return &TerminalDevice_Channel_Otn_QValue_MinPathAny{ NodePath: ygot.NewNodePath( []string{"min"}, map[string]interface{}{}, @@ -174108,9 +174135,9 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) Min() *TerminalDevice_Channel_Otn } } -// MinTime returns from TerminalDevice_Channel_Otn_QValue the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_QValue) MinTime() *TerminalDevice_Channel_Otn_QValue_MinTime { - return &TerminalDevice_Channel_Otn_QValue_MinTime{ +// MinTime returns from TerminalDevice_Channel_Otn_QValuePath the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_QValuePath) MinTime() *TerminalDevice_Channel_Otn_QValue_MinTimePath { + return &TerminalDevice_Channel_Otn_QValue_MinTimePath{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -174119,9 +174146,9 @@ func (n *TerminalDevice_Channel_Otn_QValue) MinTime() *TerminalDevice_Channel_Ot } } -// MinTime returns from TerminalDevice_Channel_Otn_QValueAny the path struct for its child "min-time". -func (n *TerminalDevice_Channel_Otn_QValueAny) MinTime() *TerminalDevice_Channel_Otn_QValue_MinTimeAny { - return &TerminalDevice_Channel_Otn_QValue_MinTimeAny{ +// MinTime returns from TerminalDevice_Channel_Otn_QValuePathAny the path struct for its child "min-time". +func (n *TerminalDevice_Channel_Otn_QValuePathAny) MinTime() *TerminalDevice_Channel_Otn_QValue_MinTimePathAny { + return &TerminalDevice_Channel_Otn_QValue_MinTimePathAny{ NodePath: ygot.NewNodePath( []string{"min-time"}, map[string]interface{}{}, @@ -174130,49 +174157,49 @@ func (n *TerminalDevice_Channel_Otn_QValueAny) MinTime() *TerminalDevice_Channel } } -// TerminalDevice_Mode represents the /openconfig-terminal-device/terminal-device/operational-modes/mode YANG schema element. -type TerminalDevice_Mode struct { +// TerminalDevice_ModePath represents the /openconfig-terminal-device/terminal-device/operational-modes/mode YANG schema element. +type TerminalDevice_ModePath struct { *ygot.NodePath } -// TerminalDevice_ModeAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode YANG schema element. -type TerminalDevice_ModeAny struct { +// TerminalDevice_ModePathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode YANG schema element. +type TerminalDevice_ModePathAny struct { *ygot.NodePath } -// TerminalDevice_Mode_Description represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/description YANG schema element. -type TerminalDevice_Mode_Description struct { +// TerminalDevice_Mode_DescriptionPath represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/description YANG schema element. +type TerminalDevice_Mode_DescriptionPath struct { *ygot.NodePath } -// TerminalDevice_Mode_DescriptionAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/description YANG schema element. -type TerminalDevice_Mode_DescriptionAny struct { +// TerminalDevice_Mode_DescriptionPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/description YANG schema element. +type TerminalDevice_Mode_DescriptionPathAny struct { *ygot.NodePath } -// TerminalDevice_Mode_ModeId represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/mode-id YANG schema element. -type TerminalDevice_Mode_ModeId struct { +// TerminalDevice_Mode_ModeIdPath represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/mode-id YANG schema element. +type TerminalDevice_Mode_ModeIdPath struct { *ygot.NodePath } -// TerminalDevice_Mode_ModeIdAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/mode-id YANG schema element. -type TerminalDevice_Mode_ModeIdAny struct { +// TerminalDevice_Mode_ModeIdPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/mode-id YANG schema element. +type TerminalDevice_Mode_ModeIdPathAny struct { *ygot.NodePath } -// TerminalDevice_Mode_VendorId represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/vendor-id YANG schema element. -type TerminalDevice_Mode_VendorId struct { +// TerminalDevice_Mode_VendorIdPath represents the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/vendor-id YANG schema element. +type TerminalDevice_Mode_VendorIdPath struct { *ygot.NodePath } -// TerminalDevice_Mode_VendorIdAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/vendor-id YANG schema element. -type TerminalDevice_Mode_VendorIdAny struct { +// TerminalDevice_Mode_VendorIdPathAny represents the wildcard version of the /openconfig-terminal-device/terminal-device/operational-modes/mode/state/vendor-id YANG schema element. +type TerminalDevice_Mode_VendorIdPathAny struct { *ygot.NodePath } -// Description returns from TerminalDevice_Mode the path struct for its child "description". -func (n *TerminalDevice_Mode) Description() *TerminalDevice_Mode_Description { - return &TerminalDevice_Mode_Description{ +// Description returns from TerminalDevice_ModePath the path struct for its child "description". +func (n *TerminalDevice_ModePath) Description() *TerminalDevice_Mode_DescriptionPath { + return &TerminalDevice_Mode_DescriptionPath{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -174181,9 +174208,9 @@ func (n *TerminalDevice_Mode) Description() *TerminalDevice_Mode_Description { } } -// Description returns from TerminalDevice_ModeAny the path struct for its child "description". -func (n *TerminalDevice_ModeAny) Description() *TerminalDevice_Mode_DescriptionAny { - return &TerminalDevice_Mode_DescriptionAny{ +// Description returns from TerminalDevice_ModePathAny the path struct for its child "description". +func (n *TerminalDevice_ModePathAny) Description() *TerminalDevice_Mode_DescriptionPathAny { + return &TerminalDevice_Mode_DescriptionPathAny{ NodePath: ygot.NewNodePath( []string{"state", "description"}, map[string]interface{}{}, @@ -174192,9 +174219,9 @@ func (n *TerminalDevice_ModeAny) Description() *TerminalDevice_Mode_DescriptionA } } -// ModeId returns from TerminalDevice_Mode the path struct for its child "mode-id". -func (n *TerminalDevice_Mode) ModeId() *TerminalDevice_Mode_ModeId { - return &TerminalDevice_Mode_ModeId{ +// ModeId returns from TerminalDevice_ModePath the path struct for its child "mode-id". +func (n *TerminalDevice_ModePath) ModeId() *TerminalDevice_Mode_ModeIdPath { + return &TerminalDevice_Mode_ModeIdPath{ NodePath: ygot.NewNodePath( []string{"state", "mode-id"}, map[string]interface{}{}, @@ -174203,9 +174230,9 @@ func (n *TerminalDevice_Mode) ModeId() *TerminalDevice_Mode_ModeId { } } -// ModeId returns from TerminalDevice_ModeAny the path struct for its child "mode-id". -func (n *TerminalDevice_ModeAny) ModeId() *TerminalDevice_Mode_ModeIdAny { - return &TerminalDevice_Mode_ModeIdAny{ +// ModeId returns from TerminalDevice_ModePathAny the path struct for its child "mode-id". +func (n *TerminalDevice_ModePathAny) ModeId() *TerminalDevice_Mode_ModeIdPathAny { + return &TerminalDevice_Mode_ModeIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "mode-id"}, map[string]interface{}{}, @@ -174214,9 +174241,9 @@ func (n *TerminalDevice_ModeAny) ModeId() *TerminalDevice_Mode_ModeIdAny { } } -// VendorId returns from TerminalDevice_Mode the path struct for its child "vendor-id". -func (n *TerminalDevice_Mode) VendorId() *TerminalDevice_Mode_VendorId { - return &TerminalDevice_Mode_VendorId{ +// VendorId returns from TerminalDevice_ModePath the path struct for its child "vendor-id". +func (n *TerminalDevice_ModePath) VendorId() *TerminalDevice_Mode_VendorIdPath { + return &TerminalDevice_Mode_VendorIdPath{ NodePath: ygot.NewNodePath( []string{"state", "vendor-id"}, map[string]interface{}{}, @@ -174225,9 +174252,9 @@ func (n *TerminalDevice_Mode) VendorId() *TerminalDevice_Mode_VendorId { } } -// VendorId returns from TerminalDevice_ModeAny the path struct for its child "vendor-id". -func (n *TerminalDevice_ModeAny) VendorId() *TerminalDevice_Mode_VendorIdAny { - return &TerminalDevice_Mode_VendorIdAny{ +// VendorId returns from TerminalDevice_ModePathAny the path struct for its child "vendor-id". +func (n *TerminalDevice_ModePathAny) VendorId() *TerminalDevice_Mode_VendorIdPathAny { + return &TerminalDevice_Mode_VendorIdPathAny{ NodePath: ygot.NewNodePath( []string{"state", "vendor-id"}, map[string]interface{}{}, diff --git a/exampleoc/ocpath_augment.go b/exampleoc/ocpath_augment.go new file mode 100644 index 000000000..db2c6317a --- /dev/null +++ b/exampleoc/ocpath_augment.go @@ -0,0 +1,6 @@ +package exampleoc + +func (r *DevicePath) WithName(name string) *DevicePath { + r.PutCustomData("name", name) + return r +} diff --git a/exampleoc/update.sh b/exampleoc/update.sh index a2e4af2f8..15476e7a7 100755 --- a/exampleoc/update.sh +++ b/exampleoc/update.sh @@ -14,6 +14,7 @@ git clone https://github.com/openconfig/public.git mkdir deps cp ../demo/getting_started/yang/{ietf,iana}* deps go run ../generator/generator.go -path=public,deps -output_file=oc.go \ + -generate_path_structs -path_structs_output_file=ocpath.go\ -package_name=exampleoc -generate_fakeroot -fakeroot_name=device -compress_paths=true \ -shorten_enum_leaf_names \ -exclude_modules=ietf-interfaces \ @@ -22,6 +23,7 @@ go run ../generator/generator.go -path=public,deps -output_file=oc.go \ -generate_getters \ -generate_leaf_getters \ -annotations \ + -list_builder_key_threshold=3 \ public/release/models/network-instance/openconfig-network-instance.yang \ public/release/models/optical-transport/openconfig-optical-amplifier.yang \ public/release/models/optical-transport/openconfig-terminal-device.yang \ @@ -41,4 +43,5 @@ go run ../generator/generator.go -path=public,deps -output_file=oc.go \ public/release/models/lldp/openconfig-lldp.yang runsed -i 's/This package was generated by.*/NOTE WELL: This is an example code file that is distributed with ygot.\nIt should not be used within your application, as it WILL change,\nwithout warning. Rather, you should generate structs directly from\nOpenConfig models using the ygot package.\n\nThis package was generated by github.com\/openconfig\/ygot/g' oc.go gofmt -w -s oc.go +gofmt -w -s ocpath.go rm -rf deps public diff --git a/exampleocpath/README.md b/exampleocpath/README.md deleted file mode 100644 index 5ca55e51d..000000000 --- a/exampleocpath/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# OpenConfig ygot Example Go Path Structs - -This directory contains an example generated set of path structs from a subset -of the OpenConfig models. - -This package **WILL** change without warning, and **SHOULD NOT** be imported -into your application. Rather, you should generate bindings directly using the -ygot package. diff --git a/exampleocpath/ocpath_augment.go b/exampleocpath/ocpath_augment.go deleted file mode 100644 index 3b1a7d8a2..000000000 --- a/exampleocpath/ocpath_augment.go +++ /dev/null @@ -1,6 +0,0 @@ -package exampleocpath - -func (r *Root) WithName(name string) *Root { - r.PutCustomData("name", name) - return r -} diff --git a/exampleocpath/update.sh b/exampleocpath/update.sh deleted file mode 100755 index 28f14c385..000000000 --- a/exampleocpath/update.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -# Hack to ensure that if we are running on OS X with a homebrew installed -# GNU sed then we can still run sed. -runsed() { - if hash gsed 2>/dev/null; then - gsed "$@" - else - sed "$@" - fi -} - -git clone https://github.com/openconfig/public.git -mkdir deps -cp ../demo/getting_started/yang/{ietf,iana}* deps -go run ../ypathgen/generator/generator.go -path=public,deps -output_file=ocpath.go \ - -package_name=exampleocpath -fakeroot_name=root \ - -prefer_operational_state=true \ - -shorten_enum_leaf_names \ - -exclude_modules=ietf-interfaces \ - -schema_struct_path=github.com/openconfig/ygot/exampleoc \ - -list_builder_key_threshold=3 \ - public/release/models/network-instance/openconfig-network-instance.yang \ - public/release/models/optical-transport/openconfig-optical-amplifier.yang \ - public/release/models/optical-transport/openconfig-terminal-device.yang \ - public/release/models/optical-transport/openconfig-transport-line-protection.yang \ - public/release/models/platform/openconfig-platform.yang \ - public/release/models/policy/openconfig-routing-policy.yang \ - public/release/models/lacp/openconfig-lacp.yang \ - public/release/models/system/openconfig-system.yang \ - public/release/models/lldp/openconfig-lldp.yang \ - public/release/models/stp/openconfig-spanning-tree.yang \ - public/release/models/interfaces/openconfig-interfaces.yang \ - public/release/models/interfaces/openconfig-if-ip.yang \ - public/release/models/interfaces/openconfig-if-aggregate.yang \ - public/release/models/interfaces/openconfig-if-ethernet.yang \ - public/release/models/interfaces/openconfig-if-ip-ext.yang \ - public/release/models/relay-agent/openconfig-relay-agent.yang -runsed -i 's/This package was generated by.*/NOTE WELL: This is an example code file that is distributed with ygot.\nIt should not be used within your application, as it WILL change,\nwithout warning. Rather, you should generate structs directly from\nOpenConfig models using the ygot package.\n\nThis package was generated by github.com\/openconfig\/ygot/g' ocpath.go -gofmt -w -s ocpath.go -rm -rf deps public diff --git a/generator/generator.go b/generator/generator.go index ed77b3f11..6746cb369 100644 --- a/generator/generator.go +++ b/generator/generator.go @@ -29,6 +29,7 @@ import ( "github.com/openconfig/goyang/pkg/yang" "github.com/openconfig/ygot/genutil" "github.com/openconfig/ygot/ygen" + "github.com/openconfig/ygot/ypathgen" ) const ( @@ -47,34 +48,50 @@ const ( // to a directory. Structs are divided alphabetically and the first character appended to the // base specified in this value - e.g., structs beginning with "A" are stored in {structBaseFnA}.go. structBaseFn = "structs_" + // pathStructsFileFmt is the format string filename (missing index) to + // be used for the path structs when path struct code is output to a directory. + pathStructsFileFmt = "path_structs-%d.go" ) var ( + generateGoStructs = flag.Bool("generate_structs", true, "If true, then Go code for YANG path construction (schema/Go structs) will be generated.") + generatePathStructs = flag.Bool("generate_path_structs", false, "If true, then Go code for YANG path construction (path structs) will be generated.") + ocStructsOutputFile = flag.String("output_file", "", "The file that the generated Go code for manipulating YANG data (schema/Go structs) should be written to. Specify \"-\" for stdout.") + ocPathStructsOutputFile = flag.String("path_structs_output_file", "", "The file that the generated Go code for YANG path construction (path structs) will be generated. Specify \"-\" for stdout.") + pathStructsFileN = flag.Int("path_structs_split_files_count", 0, "The number of files to split the generated path structs into when output_file is specified for generating path structs") + outputDir = flag.String("output_dir", "", "The directory that the generated Go code should be written to. This is common between schema structs and path structs.") + compressPaths = flag.Bool("compress_paths", false, "If set to true, the schema's paths are compressed, according to OpenConfig YANG module conventions. Path structs generation currently only supports compressed paths.") + + // Common flags used for GoStruct and PathStruct generation. yangPaths = flag.String("path", "", "Comma separated list of paths to be recursively searched for included modules or submodules within the defined YANG modules.") - compressPaths = flag.Bool("compress_paths", false, "If set to true, the schema's paths are compressed, according to OpenConfig YANG module conventions.") excludeModules = flag.String("exclude_modules", "", "Comma separated set of module names that should be excluded from code generation this can be used to ensure overlapping namespaces can be ignored.") packageName = flag.String("package_name", "ocstructs", "The name of the Go package that should be generated.") - outputFile = flag.String("output_file", "", "The file that the generated Go code should be written to.") - outputDir = flag.String("output_dir", "", "The directory that the Go package should be written to.") ignoreCircDeps = flag.Bool("ignore_circdeps", false, "If set to true, circular dependencies between submodules are ignored.") - generateFakeRoot = flag.Bool("generate_fakeroot", false, "If set to true, a fake element at the root of the data tree is generated. By default the fake root entity is named Device, its name can be controlled with the fakeroot_name flag.") fakeRootName = flag.String("fakeroot_name", "", "The name of the fake root entity.") - generateSchema = flag.Bool("include_schema", true, "If set to true, the YANG schema will be encoded as JSON and stored in the generated code artefact.") - ygotImportPath = flag.String("ygot_path", genutil.GoDefaultYgotImportPath, "The import path to use for ygot.") - ytypesImportPath = flag.String("ytypes_path", genutil.GoDefaultYtypesImportPath, "The import path to use for ytypes.") - goyangImportPath = flag.String("goyang_path", genutil.GoDefaultGoyangImportPath, "The import path to use for goyang's yang package.") - generateRename = flag.Bool("generate_rename", false, "If set to true, rename methods are generated for lists within the Go code.") - addAnnotations = flag.Bool("annotations", false, "If set to true, metadata annotations are added within the generated structs.") - annotationPrefix = flag.String("annotation_prefix", ygen.DefaultAnnotationPrefix, "String to be appended to each metadata field within the generated structs if annoations is set to true.") - preferOperationalState = flag.Bool("prefer_operational_state", false, "If set to true, state (config false) fields in the YANG schema are preferred over intended config leaves in the generated Go code with compressed schema paths. This flag is only valid for compress_paths=true and exclude_state=false.") - excludeState = flag.Bool("exclude_state", false, "If set to true, state (config false) fields in the YANG schema are not included in the generated Go code.") - generateAppend = flag.Bool("generate_append", false, "If set to true, append methods are generated for YANG lists (Go maps) within the Go code.") - generateGetters = flag.Bool("generate_getters", false, "If set to true, getter methdos that retrieve or create an element are generated for YANG container (Go struct pointer) or list (Go map) fields within the generated code.") - generateDelete = flag.Bool("generate_delete", false, "If set to true, delete methods are generated for YANG lists (Go maps) within the Go code.") - generateLeafGetters = flag.Bool("generate_leaf_getters", false, "If set to true, getters for YANG leaves are generated within the Go code. Caution should be exercised when using leaf getters, since values that are explicitly set to the Go default/zero value are not distinguishable from those that are unset when retrieved via the GetXXX method.") - includeModelData = flag.Bool("include_model_data", false, "If set to true, a slice of gNMI ModelData messages are included in the generated Go code containing the details of the input schemas from which the code was generated.") skipEnumDedup = flag.Bool("skip_enum_deduplication", false, "If set to true, all leaves of type enumeration will have a unique enum output for them, rather than sharing a common type (default behaviour).") + preferOperationalState = flag.Bool("prefer_operational_state", false, "If set to true, state (config false) fields in the YANG schema are preferred over intended config leaves in the generated Go code with compressed schema paths. This flag is only valid for compress_paths=true and exclude_state=false.") shortenEnumLeafNames = flag.Bool("shorten_enum_leaf_names", false, "If also set to true when compress_paths=true, all leaves of type enumeration will by default not be prefixed with the name of its residing module.") + ygotImportPath = flag.String("ygot_path", genutil.GoDefaultYgotImportPath, "The import path to use for ygot.") + + // Flags used for GoStruct generation only. + generateFakeRoot = flag.Bool("generate_fakeroot", false, "If set to true, a fake element at the root of the data tree is generated. By default the fake root entity is named Device, its name can be controlled with the fakeroot_name flag.") + generateSchema = flag.Bool("include_schema", true, "If set to true, the YANG schema will be encoded as JSON and stored in the generated code artefact.") + ytypesImportPath = flag.String("ytypes_path", genutil.GoDefaultYtypesImportPath, "The import path to use for ytypes.") + goyangImportPath = flag.String("goyang_path", genutil.GoDefaultGoyangImportPath, "The import path to use for goyang's yang package.") + generateRename = flag.Bool("generate_rename", false, "If set to true, rename methods are generated for lists within the Go code.") + addAnnotations = flag.Bool("annotations", false, "If set to true, metadata annotations are added within the generated structs.") + annotationPrefix = flag.String("annotation_prefix", ygen.DefaultAnnotationPrefix, "String to be appended to each metadata field within the generated structs if annoations is set to true.") + excludeState = flag.Bool("exclude_state", false, "If set to true, state (config false) fields in the YANG schema are not included in the generated Go code.") + generateAppend = flag.Bool("generate_append", false, "If set to true, append methods are generated for YANG lists (Go maps) within the Go code.") + generateGetters = flag.Bool("generate_getters", false, "If set to true, getter methdos that retrieve or create an element are generated for YANG container (Go struct pointer) or list (Go map) fields within the generated code.") + generateDelete = flag.Bool("generate_delete", false, "If set to true, delete methods are generated for YANG lists (Go maps) within the Go code.") + generateLeafGetters = flag.Bool("generate_leaf_getters", false, "If set to true, getters for YANG leaves are generated within the Go code. Caution should be exercised when using leaf getters, since values that are explicitly set to the Go default/zero value are not distinguishable from those that are unset when retrieved via the GetXXX method.") + includeModelData = flag.Bool("include_model_data", false, "If set to true, a slice of gNMI ModelData messages are included in the generated Go code containing the details of the input schemas from which the code was generated.") + + // Flags used for PathStruct generation only. + schemaStructPath = flag.String("schema_struct_path", "", "The Go import path for the schema structs package. This should be specified if and only if schema structs are not being generated at the same time as path structs.") + listBuilderKeyThreshold = flag.Uint("list_builder_key_threshold", 0, "The threshold equal or over which the path structs' builder API is used for key population. 0 means infinity.") + pathStructSuffix = flag.String("path_struct_suffix", "Path", "The suffix string appended to each generated path struct in order to differentiate their names from their corresponding schema struct names.") ) // writeGoCodeSingleFile takes a ygen.GeneratedGoCode struct and writes the Go code @@ -110,6 +127,14 @@ func writeGoCodeSingleFile(w io.Writer, goCode *ygen.GeneratedGoCode) error { return nil } +// writeGoPathCodeSingleFile takes a ypathgen.GeneratedPathCode struct and writes +// it to a single file to the io.Writer, w, provided as an argument. +// The output includes a package header which is generated. +func writeGoPathCodeSingleFile(w io.Writer, pathCode *ypathgen.GeneratedPathCode) error { + _, err := io.WriteString(w, pathCode.String()) + return err +} + // writeIfNotEmpty writes the string s to b if it has a non-zero length. func writeIfNotEmpty(b io.StringWriter, s string) { if len(s) != 0 { @@ -192,6 +217,31 @@ func writeGoCodeMultipleFiles(dir string, goCode *ygen.GeneratedGoCode) error { return nil } +// writeFiles creates or truncates files in a given base directory and writes +// to them. Keys of the contents map are file names, and values are the +// contents to be written. An error is returned if the base directory does not +// exist. If a file cannot be written, the function aborts with the error, +// leaving an unspecified set of the other input files written with their given +// contents. +func writeFiles(dir string, out map[string]string) error { + for filename, contents := range out { + if len(contents) == 0 { + continue + } + fh := genutil.OpenFile(filepath.Join(dir, filename)) + if fh == nil { + return fmt.Errorf("could not open file %q", filename) + } + if _, err := fh.WriteString(contents); err != nil { + return err + } + // flush & close written files before function finishes. + defer genutil.SyncFile(fh) + } + + return nil +} + // main parses command-line flags to determine the set of YANG modules for // which code generation should be performed, and calls the codegen library // to generate Go code corresponding to their schema. The output is written @@ -205,6 +255,19 @@ func main() { log.Exitln("Error: no input modules specified") } + if !*generateGoStructs && !*generatePathStructs { + log.Exitf("Error: Neither schema structs nor path structs generation is enabled.") + } + + if *generatePathStructs { + if *generateGoStructs && *schemaStructPath != "" { + log.Exitf("Error: provided non-empty schema_struct_path for import by path structs file(s), but schema structs are also to be generated within the same package.") + } + if !*generateGoStructs && *schemaStructPath == "" { + log.Exitf("Error: need to provide schema_struct_path for import by path structs file(s) when schema structs are not being generated at the same time.") + } + } + // Determine the set of paths that should be searched for included // modules. This is supplied by the user as a set of comma-separated // paths, so we split the string. Additionally, for each path @@ -228,70 +291,150 @@ func main() { } } - if *outputFile != "" && *outputDir != "" { - log.Exitf("Error: cannot specify both outputFile (%s) and outputDir (%s)", *outputFile, *outputDir) + if *generateGoStructs { + generateGoStructsSingleFile := *ocStructsOutputFile != "" + generateGoStructsMultipleFiles := *outputDir != "" + if generateGoStructsSingleFile && generateGoStructsMultipleFiles { + log.Exitf("Error: cannot specify both output_file (%s) and output_dir (%s)", *ocStructsOutputFile, *outputDir) + } + if !generateGoStructsSingleFile && !generateGoStructsMultipleFiles { + log.Exitf("Error: Go struct generation requires a specified output file or output directory.") + } + + compressBehaviour, err := genutil.TranslateToCompressBehaviour(*compressPaths, *excludeState, *preferOperationalState) + if err != nil { + log.Exitf("ERROR Generating Code: %v\n", err) + } + + // Perform the code generation. + cg := ygen.NewYANGCodeGenerator(&ygen.GeneratorConfig{ + ParseOptions: ygen.ParseOpts{ + ExcludeModules: modsExcluded, + SkipEnumDeduplication: *skipEnumDedup, + YANGParseOptions: yang.Options{ + IgnoreSubmoduleCircularDependencies: *ignoreCircDeps, + }, + }, + TransformationOptions: ygen.TransformationOpts{ + CompressBehaviour: compressBehaviour, + GenerateFakeRoot: *generateFakeRoot, + FakeRootName: *fakeRootName, + ShortenEnumLeafNames: *shortenEnumLeafNames, + }, + PackageName: *packageName, + GenerateJSONSchema: *generateSchema, + GoOptions: ygen.GoOpts{ + YgotImportPath: *ygotImportPath, + YtypesImportPath: *ytypesImportPath, + GoyangImportPath: *goyangImportPath, + GenerateRenameMethod: *generateRename, + AddAnnotationFields: *addAnnotations, + AnnotationPrefix: *annotationPrefix, + GenerateGetters: *generateGetters, + GenerateDeleteMethod: *generateDelete, + GenerateAppendMethod: *generateAppend, + GenerateLeafGetters: *generateLeafGetters, + IncludeModelData: *includeModelData, + }, + }) + + generatedGoCode, errs := cg.GenerateGoCode(generateModules, includePaths) + if errs != nil { + log.Exitf("ERROR Generating GoStruct Code: %v\n", errs) + } + + switch { + case generateGoStructsSingleFile: + var outfh *os.File + switch *ocStructsOutputFile { + case "-": + // If "-" is the output file name, we output to os.Stdout, otherwise + // we write to the specified file. + outfh = os.Stdout + default: + // Assign the newly created filehandle to the outfh, and ensure + // that it is synced and closed before exit of main. + outfh = genutil.OpenFile(*ocStructsOutputFile) + defer genutil.SyncFile(outfh) + } + + writeGoCodeSingleFile(outfh, generatedGoCode) + case generateGoStructsMultipleFiles: + // Write the Go code to a series of output files. + writeGoCodeMultipleFiles(*outputDir, generatedGoCode) + } + } + + // Generate PathStructs. + if !*generatePathStructs { + return + } + if !*compressPaths { + log.Exitf("Error: path struct generation not supported for uncompressed paths. Please use compressed paths or remove output file flag for path struct generation.") } - compressBehaviour, err := genutil.TranslateToCompressBehaviour(*compressPaths, *excludeState, *preferOperationalState) - if err != nil { - log.Exitf("ERROR Generating Code: %v\n", err) + generatePathStructsSingleFile := *ocPathStructsOutputFile != "" + generatePathStructsMultipleFiles := *outputDir != "" + if generatePathStructsSingleFile && generatePathStructsMultipleFiles { + log.Exitf("Error: cannot specify both path_structs_output_file (%s) and output_dir (%s)", *ocPathStructsOutputFile, *outputDir) + } + if !generatePathStructsSingleFile && !generatePathStructsMultipleFiles { + log.Exitf("Error: path struct generation requires a specified output file or directory.") } // Perform the code generation. - cg := ygen.NewYANGCodeGenerator(&ygen.GeneratorConfig{ - ParseOptions: ygen.ParseOpts{ - ExcludeModules: modsExcluded, - SkipEnumDeduplication: *skipEnumDedup, - YANGParseOptions: yang.Options{ - IgnoreSubmoduleCircularDependencies: *ignoreCircDeps, - }, - }, - TransformationOptions: ygen.TransformationOpts{ - CompressBehaviour: compressBehaviour, - GenerateFakeRoot: *generateFakeRoot, - FakeRootName: *fakeRootName, - ShortenEnumLeafNames: *shortenEnumLeafNames, + pcg := &ypathgen.GenConfig{ + PackageName: *packageName, + GoImports: ypathgen.GoImports{ + SchemaStructPkgPath: *schemaStructPath, + YgotImportPath: *ygotImportPath, }, - PackageName: *packageName, - GenerateJSONSchema: *generateSchema, - GoOptions: ygen.GoOpts{ - YgotImportPath: *ygotImportPath, - YtypesImportPath: *ytypesImportPath, - GoyangImportPath: *goyangImportPath, - GenerateRenameMethod: *generateRename, - AddAnnotationFields: *addAnnotations, - AnnotationPrefix: *annotationPrefix, - GenerateGetters: *generateGetters, - GenerateDeleteMethod: *generateDelete, - GenerateAppendMethod: *generateAppend, - GenerateLeafGetters: *generateLeafGetters, - IncludeModelData: *includeModelData, + PreferOperationalState: *preferOperationalState, + SkipEnumDeduplication: *skipEnumDedup, + ShortenEnumLeafNames: *shortenEnumLeafNames, + FakeRootName: *fakeRootName, + PathStructSuffix: *pathStructSuffix, + ExcludeModules: modsExcluded, + YANGParseOptions: yang.Options{ + IgnoreSubmoduleCircularDependencies: *ignoreCircDeps, }, - }) + GeneratingBinary: genutil.CallerName(), + ListBuilderKeyThreshold: *listBuilderKeyThreshold, + } - generatedGoCode, errs := cg.GenerateGoCode(generateModules, includePaths) + pathCode, _, errs := pcg.GeneratePathCode(generateModules, includePaths) if errs != nil { - log.Exitf("ERROR Generating Code: %v\n", errs) + log.Exitf("ERROR Generating PathStruct Code: %s\n", errs) } - // If no output file is specified, we output to os.Stdout, otherwise - // we write to the specified file. - if *outputFile != "" { + switch { + case generatePathStructsSingleFile: var outfh *os.File - switch *outputFile { - case "": + switch *ocPathStructsOutputFile { + case "-": + // If "-" is the output file name, we output to os.Stdout, otherwise + // we write to the specified file. outfh = os.Stdout default: // Assign the newly created filehandle to the outfh, and ensure // that it is synced and closed before exit of main. - outfh = genutil.OpenFile(*outputFile) + outfh = genutil.OpenFile(*ocPathStructsOutputFile) defer genutil.SyncFile(outfh) } - writeGoCodeSingleFile(outfh, generatedGoCode) - return + writeGoPathCodeSingleFile(outfh, pathCode) + case generatePathStructsMultipleFiles: + out := map[string]string{} + // Split the path struct code into files. + files, err := pathCode.SplitFiles(*pathStructsFileN) + if err != nil { + log.Exitf("Error while splitting path structs code into %d files: %v\n", pathStructsFileN, err) + } + for i, file := range files { + out[fmt.Sprintf(pathStructsFileFmt, i)] = file + } + if err := writeFiles(*outputDir, out); err != nil { + log.Exitf("Error while writing path struct files: %v", err) + } } - - // Write the Go code to a series of output files. - writeGoCodeMultipleFiles(*outputDir, generatedGoCode) } diff --git a/generator/generator_test.go b/generator/generator_test.go index 249eed824..6ce1a8c13 100644 --- a/generator/generator_test.go +++ b/generator/generator_test.go @@ -19,8 +19,10 @@ import ( "strings" "testing" + "github.com/google/go-cmp/cmp" "github.com/kylelemons/godebug/pretty" "github.com/openconfig/ygot/ygen" + "github.com/openconfig/ygot/ypathgen" ) func TestWriteGoCode(t *testing.T) { @@ -176,3 +178,39 @@ func TestMakeOutputSpec(t *testing.T) { } } } + +func TestWritePathCode(t *testing.T) { + tests := []struct { + name string + in *ypathgen.GeneratedPathCode + want string + }{{ + name: "simple", + in: &ypathgen.GeneratedPathCode{ + CommonHeader: "path common header\n", + Structs: []ypathgen.GoPathStructCodeSnippet{{ + PathStructName: "PathStructName", + StructBase: "\nStructDef\n", + ChildConstructors: "\nChildConstructor\n", + }}, + }, + want: `path common header + +StructDef + +ChildConstructor +`, + }} + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + var b strings.Builder + if err := writeGoPathCodeSingleFile(&b, tt.in); err != nil { + t.Fatal(err) + } + if diff := cmp.Diff(tt.want, b.String()); diff != "" { + t.Errorf("diff (-want,+got):\n%s", diff) + } + }) + } +} diff --git a/ypathgen/generator/generator.go b/ypathgen/generator/generator.go deleted file mode 100644 index 576ad51e3..000000000 --- a/ypathgen/generator/generator.go +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright 2019 Google Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// Binary generator generates Go code corresponding to an input YANG schema. -// The input set of YANG modules are read, parsed using Goyang, and handed as -// input to the codegen package which generates the corresponding Go code. -package main - -import ( - "flag" - "io" - "os" - "path/filepath" - "strings" - - log "github.com/golang/glog" - "github.com/openconfig/goyang/pkg/yang" - "github.com/openconfig/ygot/genutil" - "github.com/openconfig/ygot/ypathgen" -) - -var ( - yangPaths = flag.String("path", "", "Comma separated list of paths to be recursively searched for included modules or submodules within the defined YANG modules.") - excludeModules = flag.String("exclude_modules", "", "Comma separated set of module names that should be excluded from code generation this can be used to ensure overlapping namespaces can be ignored.") - packageName = flag.String("package_name", "telemetry", "The name of the Go package that should be generated.") - outputFile = flag.String("output_file", "", "The single file that the Go package should be written to.") - ignoreCircDeps = flag.Bool("ignore_circdeps", false, "If set to true, circular dependencies between submodules are ignored.") - preferOperationalState = flag.Bool("prefer_operational_state", false, "If set to true, state (config false) fields in the YANG schema are preferred over intended config leaves when building paths. This flag is only valid when exclude_state=false.") - fakeRootName = flag.String("fakeroot_name", "device", "The name of the fake root entity. This name will be capitalized for exporting.") - schemaStructPath = flag.String("schema_struct_path", "", "The import path to use for ygen-generated schema structs. This should only be specified if the generated path structs are to reside in a different package.") - ygotImportPath = flag.String("ygot_path", genutil.GoDefaultYgotImportPath, "The import path to use for ygot.") - listBuilderKeyThreshold = flag.Uint("list_builder_key_threshold", 0, "The threshold equal or over which the builder API is used for key population. 0 means infinity.") - skipEnumDedup = flag.Bool("skip_enum_deduplication", false, "If set to true, all leaves of type enumeration will have a unique enum output for them, rather than sharing a common type (default behaviour).") - shortenEnumLeafNames = flag.Bool("shorten_enum_leaf_names", false, "If also set to true when compression is on, all leaves of type enumeration will by default not be prefixed with the name of its residing module.") - pathStructSuffix = flag.String("path_struct_suffix", "Path", "The suffix string appended to each generated path struct in order to differentiate their names from their corresponding schema struct names.") -) - -// writeGoCodeSingleFile takes a ypathgen.GeneratedPathCode struct and writes -// it to a single file to the io.Writer, w, provided as an argument. -// The output includes a package header which is generated. -func writeGoCodeSingleFile(w io.Writer, pathCode *ypathgen.GeneratedPathCode) error { - _, err := io.WriteString(w, pathCode.String()) - return err -} - -// main parses command-line flags to determine the set of YANG modules for -// which code generation should be performed, and calls the codegen library -// to generate Go code corresponding to their schema. The output is written -// to the specified file. -func main() { - flag.Parse() - // Extract the set of modules that code is to be generated for, - // throwing an error if the set is empty. - generateModules := flag.Args() - if len(generateModules) == 0 { - log.Exitln("Error: no input modules specified") - } - - // Determine the set of paths that should be searched for included - // modules. This is supplied by the user as a set of comma-separated - // paths, so we split the string. Additionally, for each path - // specified, we append "..." to ensure that the directory is - // recursively searched. - includePaths := []string{} - if len(*yangPaths) > 0 { - pathParts := strings.Split(*yangPaths, ",") - for _, path := range pathParts { - includePaths = append(includePaths, filepath.Join(path, "...")) - } - } - - // Determine which modules the user has requested to be excluded from - // code generation. - modsExcluded := []string{} - if len(*excludeModules) > 0 { - modParts := strings.Split(*excludeModules, ",") - for _, mod := range modParts { - modsExcluded = append(modsExcluded, mod) - } - } - - if *outputFile == "" { - log.Exitln("Error: outputFile unspecified") - } - - // Perform the code generation. - cg := &ypathgen.GenConfig{ - PackageName: *packageName, - GoImports: ypathgen.GoImports{ - SchemaStructPkgPath: *schemaStructPath, - YgotImportPath: *ygotImportPath, - }, - PreferOperationalState: *preferOperationalState, - SkipEnumDeduplication: *skipEnumDedup, - ShortenEnumLeafNames: *shortenEnumLeafNames, - FakeRootName: *fakeRootName, - PathStructSuffix: *pathStructSuffix, - ExcludeModules: modsExcluded, - YANGParseOptions: yang.Options{ - IgnoreSubmoduleCircularDependencies: *ignoreCircDeps, - }, - GeneratingBinary: genutil.CallerName(), - ListBuilderKeyThreshold: *listBuilderKeyThreshold, - } - - pathCode, _, errs := cg.GeneratePathCode(generateModules, includePaths) - if errs != nil { - log.Exitf("ERROR Generating Code: %s\n", errs) - } - - // If no output file is specified, we output to os.Stdout, otherwise - // we write to the specified file. - var outfh *os.File - switch *outputFile { - case "": - outfh = os.Stdout - default: - // Assign the newly created filehandle to the outfh, and ensure - // that it is synced and closed before exit of main. - outfh = openFile(*outputFile) - defer syncFile(outfh) - } - - writeGoCodeSingleFile(outfh, pathCode) -} - -// openFile opens a file with the supplied name, logging and exiting if it cannot -// be opened. -func openFile(fn string) *os.File { - fileOut, err := os.Create(fn) - if err != nil { - log.Exitf("Error: could not open output file: %v\n", err) - } - return fileOut -} - -// syncFile synchronises the supplied os.File and closes it. -func syncFile(fh *os.File) { - if err := fh.Sync(); err != nil { - log.Exitf("Error: could not sync file output: %v\n", err) - } - - if err := fh.Close(); err != nil { - log.Exitf("Error: could not close output file: %v\n", err) - } -} diff --git a/ypathgen/generator/generator_test.go b/ypathgen/generator/generator_test.go deleted file mode 100644 index 4e03f5212..000000000 --- a/ypathgen/generator/generator_test.go +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright 2017 Google Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package main - -import ( - "strings" - "testing" - - "github.com/google/go-cmp/cmp" - "github.com/openconfig/ygot/ypathgen" -) - -func TestWritePathCode(t *testing.T) { - tests := []struct { - name string - in *ypathgen.GeneratedPathCode - want string - }{{ - name: "simple", - in: &ypathgen.GeneratedPathCode{ - CommonHeader: "path common header\n", - Structs: []ypathgen.GoPathStructCodeSnippet{{ - PathStructName: "PathStructName", - StructBase: "\nStructDef\n", - ChildConstructors: "\nChildConstructor\n", - }}, - }, - want: `path common header - -StructDef - -ChildConstructor -`, - }} - - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - var b strings.Builder - if err := writeGoCodeSingleFile(&b, tt.in); err != nil { - t.Fatal(err) - } - if diff := cmp.Diff(tt.want, b.String()); diff != "" { - t.Errorf("diff (-want,+got):\n%s", diff) - } - }) - } -} diff --git a/ypathgen/path_tests/path_test.go b/ypathgen/path_tests/path_test.go index 5c43dce00..94d87ed78 100644 --- a/ypathgen/path_tests/path_test.go +++ b/ypathgen/path_tests/path_test.go @@ -21,7 +21,6 @@ import ( "github.com/golang/protobuf/proto" "github.com/google/go-cmp/cmp" oc "github.com/openconfig/ygot/exampleoc" - ocp "github.com/openconfig/ygot/exampleocpath" "github.com/openconfig/ygot/ygot" "github.com/openconfig/ygot/ypathgen" ) @@ -86,9 +85,9 @@ func verifyTypesEqual(t *testing.T, target ygot.PathStruct, wild ygot.PathStruct } func TestCustomData(t *testing.T) { - root := ocp.DeviceRoot(deviceId) + root := oc.DeviceRoot(deviceId) p := root.WithName("foo").Interface("eth1").Ethernet().PortSpeed() - verifyPath(t, p, "/interfaces/interface[name=eth1]/ethernet/state/port-speed") + verifyPath(t, p, "/interfaces/interface[name=eth1]/ethernet/config/port-speed") _, customData, _ := ygot.ResolvePath(p) if diff := cmp.Diff(map[string]interface{}{"name": "foo"}, customData); diff != "" { @@ -98,15 +97,15 @@ func TestCustomData(t *testing.T) { // This test shows ways to reduce typing when creating similar paths. func TestManualShortcuts(t *testing.T) { - root := ocp.DeviceRoot(deviceId) + root := oc.DeviceRoot(deviceId) preemptDelay := func(intf string, subintf uint32, ip string) ygot.PathStruct { return root.Interface(intf).Subinterface(subintf).Ipv6().Address(ip).VrrpGroup(1).PreemptDelay() } // defining short helpers - verifyPath(t, preemptDelay("eth1", 1, "1::"), "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1::]/vrrp/vrrp-group[virtual-router-id=1]/state/preempt-delay") - verifyPath(t, preemptDelay("eth1", 2, "2:2:2:2::"), "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=2]/ipv6/addresses/address[ip=2:2:2:2::]/vrrp/vrrp-group[virtual-router-id=1]/state/preempt-delay") - verifyPath(t, preemptDelay("eth2", 2, "::"), "/interfaces/interface[name=eth2]/subinterfaces/subinterface[index=2]/ipv6/addresses/address[ip=::]/vrrp/vrrp-group[virtual-router-id=1]/state/preempt-delay") + verifyPath(t, preemptDelay("eth1", 1, "1::"), "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1::]/vrrp/vrrp-group[virtual-router-id=1]/config/preempt-delay") + verifyPath(t, preemptDelay("eth1", 2, "2:2:2:2::"), "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=2]/ipv6/addresses/address[ip=2:2:2:2::]/vrrp/vrrp-group[virtual-router-id=1]/config/preempt-delay") + verifyPath(t, preemptDelay("eth2", 2, "::"), "/interfaces/interface[name=eth2]/subinterfaces/subinterface[index=2]/ipv6/addresses/address[ip=::]/vrrp/vrrp-group[virtual-router-id=1]/config/preempt-delay") // re-using prefixes intf1 := root.InterfaceAny() @@ -117,73 +116,73 @@ func TestManualShortcuts(t *testing.T) { func TestPathCreation(t *testing.T) { tests := []struct { name string - makePath func(*ocp.Root) ygot.PathStruct + makePath func(*oc.DevicePath) ygot.PathStruct wantPath string }{{ name: "simple", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Stp() }, wantPath: "/stp", }, { name: "simple prefixing", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { stp := root.Stp() return stp.Global() }, wantPath: "/stp/global", }, { name: "simple chain", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Stp().Global() }, wantPath: "/stp/global", }, { name: "simple chain with leaf", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Stp().Global().EnabledProtocol() }, - wantPath: "/stp/global/state/enabled-protocol", + wantPath: "/stp/global/config/enabled-protocol", }, { name: "simple list", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Ethernet().PortSpeed() }, - wantPath: "/interfaces/interface[name=eth1]/ethernet/state/port-speed", + wantPath: "/interfaces/interface[name=eth1]/ethernet/config/port-speed", }, { name: "chain with multiple lists", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", + wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", }, { name: "fakeroot", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root }, wantPath: "/", }, { name: "identity ref key", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.NetworkInstance("DEFAULT").Protocol(oc.OpenconfigPolicyTypes_INSTALL_PROTOCOL_TYPE_BGP, "15169").Enabled() }, - wantPath: "/network-instances/network-instance[name=DEFAULT]/protocols/protocol[identifier=BGP][name=15169]/state/enabled", + wantPath: "/network-instances/network-instance[name=DEFAULT]/protocols/protocol[identifier=BGP][name=15169]/config/enabled", }, { name: "enumeration key", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.NetworkInstance("DEFAULT").Mpls().SignalingProtocols().Ldp().InterfaceAttributes().Interface("eth1").AddressFamily(oc.OpenconfigMplsLdp_MplsLdpAfi_IPV4).AfiName() }, - wantPath: "/network-instances/network-instance[name=DEFAULT]/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface[interface-id=eth1]/address-families/address-family[afi-name=IPV4]/state/afi-name", + wantPath: "/network-instances/network-instance[name=DEFAULT]/mpls/signaling-protocols/ldp/interface-attributes/interfaces/interface[interface-id=eth1]/address-families/address-family[afi-name=IPV4]/config/afi-name", }, { name: "union key (uint32 value)", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { label100 := &oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union_Uint32{100} return root.NetworkInstance("RED").Mpls().SignalingProtocols().SegmentRouting().Interface("eth1").SidCounter(label100).InOctets() }, wantPath: "/network-instances/network-instance[name=RED]/mpls/signaling-protocols/segment-routing/interfaces/interface[interface-id=eth1]/sid-counters/sid-counter[mpls-label=100]/state/in-octets", }, { name: "union key (enum value)", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { implicitNull := oc.SidCounter_MplsLabel_IMPLICIT_NULL iNullInUnion := &oc.NetworkInstance_Mpls_SignalingProtocols_SegmentRouting_Interface_SidCounter_MplsLabel_Union_E_SidCounter_MplsLabel{implicitNull} return root.NetworkInstance("RED").Mpls().SignalingProtocols().SegmentRouting().Interface("eth1").SidCounter(iNullInUnion).InOctets() @@ -191,43 +190,43 @@ func TestPathCreation(t *testing.T) { wantPath: "/network-instances/network-instance[name=RED]/mpls/signaling-protocols/segment-routing/interfaces/interface[interface-id=eth1]/sid-counters/sid-counter[mpls-label=IMPLICIT_NULL]/state/in-octets", }, { name: "Builder API constructor", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny() }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=*][oui=*][oui-subtype=*]", }, { name: "Builder API constructor going beyond the list", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().Value() }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=*][oui=*][oui-subtype=*]/state/value", }, { name: "Builder API builder for type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().WithType(3) }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=3][oui=*][oui-subtype=*]", }, { name: "Builder API builder for oui", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().WithOui("bar") }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=*][oui=bar][oui-subtype=*]", }, { name: "Builder API builder for subtype", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().WithOuiSubtype("baz").Value() }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=*][oui=*][oui-subtype=baz]/state/value", }, { name: "Builder API builder for type and oui", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().WithType(3).WithOui("bar") }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=3][oui=bar][oui-subtype=*]", }, { name: "Builder API builder for type and oui and oui-subtype", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Lldp().Interface("foo").Neighbor("mars").TlvAny().WithOui("bar").WithType(3).WithOuiSubtype("baz") }, wantPath: "/lldp/interfaces/interface[name=foo]/neighbors/neighbor[id=mars]/custom-tlvs/tlv[type=3][oui=bar][oui-subtype=baz]", @@ -235,7 +234,7 @@ func TestPathCreation(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - verifyPath(t, tt.makePath(ocp.DeviceRoot(deviceId)), tt.wantPath) + verifyPath(t, tt.makePath(oc.DeviceRoot(deviceId)), tt.wantPath) }) } } @@ -243,152 +242,152 @@ func TestPathCreation(t *testing.T) { func TestWildcardPathCreation(t *testing.T) { tests := []struct { name string - makePath func(*ocp.Root) ygot.PathStruct + makePath func(*oc.DevicePath) ygot.PathStruct wantPath string - makeWildPath func(*ocp.Root) ygot.PathStruct + makeWildPath func(*oc.DevicePath) ygot.PathStruct wantWildPath string bothAreWildcard bool }{{ name: "check interface wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1") }, wantPath: "/interfaces/interface[name=eth1]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny() }, wantWildPath: "/interfaces/interface[name=*]", }, { name: "check 2nd-level wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1) }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1) }, wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]", }, { name: "check 2nd-level wildcard type with different path", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1) }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").SubinterfaceAny() }, wantWildPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=*]", }, { name: "check 2nd-level wildcard type with multiple wildcards", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").SubinterfaceAny() }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=*]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().SubinterfaceAny() }, wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=*]", bothAreWildcard: true, }, { name: "check 3rd-level wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6() }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6() }, wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6", }, { name: "check 4th-level wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().Address("1:2:3:4::") }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6().Address("1:2:3:4::") }, wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]", }, { name: "check 5th-level wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2) }, wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2) }, wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]", }, { name: "check 6th-level leaf wildcard type", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", + wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", }, { name: "check 6th-level leaf wildcard type in a different path", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + wantPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().AddressAny().VrrpGroup(2).PreemptDelay() }, - wantWildPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", + wantWildPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", }, { name: "check 6th-level leaf wildcard types are same between different paths", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + wantPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Interface("eth1").Subinterface(1).Ipv6().AddressAny().VrrpGroup(2).PreemptDelay() }, - wantWildPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", + wantWildPath: "/interfaces/interface[name=eth1]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", bothAreWildcard: true, }, { name: "check 6th-level leaf wildcard type for multiple wildcards", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().Subinterface(1).Ipv6().Address("1:2:3:4::").VrrpGroup(2).PreemptDelay() }, - wantPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/state/preempt-delay", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + wantPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=1]/ipv6/addresses/address[ip=1:2:3:4::]/vrrp/vrrp-group[virtual-router-id=2]/config/preempt-delay", + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.InterfaceAny().SubinterfaceAny().Ipv6().AddressAny().VrrpGroupAny().PreemptDelay() }, - wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=*]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=*]/state/preempt-delay", + wantWildPath: "/interfaces/interface[name=*]/subinterfaces/subinterface[index=*]/ipv6/addresses/address[ip=*]/vrrp/vrrp-group[virtual-router-id=*]/config/preempt-delay", bothAreWildcard: true, }, { name: "multi-keyed wildcarding", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSet("foo", oc.OpenconfigAcl_ACL_TYPE_ACL_IPV4) }, wantPath: "/acl/acl-sets/acl-set[name=foo][type=ACL_IPV4]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSetAny() }, wantWildPath: "/acl/acl-sets/acl-set[name=*][type=*]", }, { name: "multi-keyed wildcarding: AnyName", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSetAny() }, wantPath: "/acl/acl-sets/acl-set[name=*][type=*]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSetAnyName(oc.OpenconfigAcl_ACL_TYPE_ACL_IPV4) }, wantWildPath: "/acl/acl-sets/acl-set[name=*][type=ACL_IPV4]", bothAreWildcard: true, }, { name: "multi-keyed wildcarding: AnyType", - makePath: func(root *ocp.Root) ygot.PathStruct { + makePath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSetAny() }, wantPath: "/acl/acl-sets/acl-set[name=*][type=*]", - makeWildPath: func(root *ocp.Root) ygot.PathStruct { + makeWildPath: func(root *oc.DevicePath) ygot.PathStruct { return root.Acl().AclSetAnyType("foo") }, wantWildPath: "/acl/acl-sets/acl-set[name=foo][type=*]", @@ -397,7 +396,7 @@ func TestWildcardPathCreation(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - device := ocp.DeviceRoot(deviceId) + device := oc.DeviceRoot(deviceId) target := tt.makePath(device) verifyPath(t, target, tt.wantPath)